From c97e2f048ec0d946aced9e434095f0b781d8c510 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 2 Nov 2022 13:02:44 -0500 Subject: [PATCH 001/160] update to view functions for stable cadence --- contracts/epochs/FlowClusterQC.cdc | 119 ++++---- contracts/epochs/FlowEpoch.cdc | 458 +++++++++++------------------ 2 files changed, 228 insertions(+), 349 deletions(-) diff --git a/contracts/epochs/FlowClusterQC.cdc b/contracts/epochs/FlowClusterQC.cdc index b4d85d4ac..d5bc14e60 100644 --- a/contracts/epochs/FlowClusterQC.cdc +++ b/contracts/epochs/FlowClusterQC.cdc @@ -22,7 +22,7 @@ import Crypto -access(all) contract FlowClusterQC { +pub contract FlowClusterQC { // ================================================================================ // CONTRACT VARIABLES @@ -30,7 +30,7 @@ access(all) contract FlowClusterQC { /// Indicates whether votes are currently being collected. /// If false, no node operator will be able to submit votes - access(all) var inProgress: Bool + pub var inProgress: Bool /// The collection node clusters for the current epoch access(account) var clusters: [Cluster] @@ -53,21 +53,21 @@ access(all) contract FlowClusterQC { // ================================================================================ /// Canonical paths for admin and voter resources - access(all) let AdminStoragePath: StoragePath - access(all) let VoterStoragePath: StoragePath + pub let AdminStoragePath: StoragePath + pub let VoterStoragePath: StoragePath /// Represents a collection node cluster for a given epoch. - access(all) struct Cluster { + pub struct Cluster { /// The index of the cluster within the cluster array. This uniquely identifies /// a cluster for a given epoch - access(all) let index: UInt16 + pub let index: UInt16 /// Weights for each nodeID in the cluster - access(all) let nodeWeights: {String: UInt64} + pub let nodeWeights: {String: UInt64} /// The total node weight of all the nodes in the cluster - access(all) let totalWeight: UInt64 + pub let totalWeight: UInt64 /// Votes that nodes claim at the beginning of each EpochSetup phase /// Key is node ID from the identity table contract @@ -77,10 +77,10 @@ access(all) contract FlowClusterQC { /// adds their signature and message, then adds it back to this vote list. /// If a node has voted, their `signature` and `message` field will be non-`nil` /// If a node hasn't voted, their `signature` and `message` field will be `nil` - access(all) var generatedVotes: {String: Vote} + pub var generatedVotes: {String: Vote} /// Tracks each unique vote and how much combined weight has been sent for the vote - access(all) var uniqueVoteMessageTotalWeights: {String: UInt64} + pub var uniqueVoteMessageTotalWeights: {String: UInt64} init(index: UInt16, nodeWeights: {String: UInt64}) { self.index = index @@ -96,15 +96,15 @@ access(all) contract FlowClusterQC { } /// Returns the number of nodes in the cluster - access(all) fun size(): UInt16 { + pub fun size(): UInt16 { return UInt16(self.nodeWeights.length) } /// Returns the minimum sum of vote weight required in order to be able to generate a /// valid quorum certificate for this cluster. - access(all) view fun voteThreshold(): UInt64 { - if self.totalWeight == 0 { - return 0 + pub view fun voteThreshold(): UInt64 { + if self.totalWeight == 0 as UInt64 { + return 0 as UInt64 } let floorOneThird = self.totalWeight / UInt64(3) // integer division, includes floor @@ -127,7 +127,7 @@ access(all) contract FlowClusterQC { /// Then this cluster's QC generation is considered complete and this method returns /// the vote message that reached quorum /// If no vote is found to reach quorum, then `nil` is returned - access(all) view fun isComplete(): String? { + pub view fun isComplete(): String? { for message in self.uniqueVoteMessageTotalWeights.keys { if self.uniqueVoteMessageTotalWeights[message]! >= self.voteThreshold() { return message @@ -138,7 +138,7 @@ access(all) contract FlowClusterQC { /// Generates the Quorum Certificate for this cluster /// If the cluster is not complete, this returns `nil` - access(all) fun generateQuorumCertificate(): ClusterQC? { + pub fun generateQuorumCertificate(): ClusterQC? { // Only generate the QC if the voting is complete for this cluster if let quorumMessage = self.isComplete() { @@ -189,24 +189,24 @@ access(all) contract FlowClusterQC { /// `Vote` represents a vote from one collection node. /// It simply contains strings with the signed message /// the hex encoded message itself. Votes are aggregated to build quorum certificates - access(all) struct Vote { + pub struct Vote { /// The node ID from the staking contract - access(all) var nodeID: String + pub var nodeID: String /// The signed message from the node (using the nodes `stakingKey`) - access(all) var signature: String? + pub(set) var signature: String? /// The hex-encoded message for the vote - access(all) var message: String? + pub(set) var message: String? /// The index of the cluster that this vote (and node) is in - access(all) let clusterIndex: UInt16 + pub let clusterIndex: UInt16 /// The weight of the vote (and node) - access(all) let weight: UInt64 + pub let weight: UInt64 - view init(nodeID: String, clusterIndex: UInt16, voteWeight: UInt64) { + init(nodeID: String, clusterIndex: UInt16, voteWeight: UInt64) { pre { nodeID.length == 64: "Voter ID must be a valid length node ID" } @@ -216,44 +216,36 @@ access(all) contract FlowClusterQC { self.clusterIndex = clusterIndex self.weight = voteWeight } - - access(all) fun setSignature(_ signature: String) { - self.signature = signature - } - - access(all) fun setMessage(_ message: String) { - self.message = message - } } /// Represents the quorum certificate for a specific cluster /// and all the nodes/votes in the cluster - access(all) struct ClusterQC { + pub struct ClusterQC { /// The index of the qc in the cluster record - access(all) let index: UInt16 + pub let index: UInt16 /// The vote signatures from all the nodes in the cluster - access(all) var voteSignatures: [String] + pub var voteSignatures: [String] /// The vote message from all the valid voters in the cluster - access(all) var voteMessage: String + pub var voteMessage: String /// The node IDs that correspond to each vote - access(all) var voterIDs: [String] + pub var voterIDs: [String] - view init(index: UInt16, signatures: [String], message: String, voterIDs: [String]) { + init(index: UInt16, signatures: [String], message: String, voterIDs: [String]) { self.index = index self.voteSignatures = signatures self.voteMessage = message self.voterIDs = voterIDs } - access(all) fun addSignature(_ signature: String) { + pub fun addSignature(_ signature: String) { self.voteSignatures.append(signature) } - access(all) fun addVoterID(_ voterID: String) { + pub fun addVoterID(_ voterID: String) { self.voterIDs.append(voterID) } } @@ -261,13 +253,13 @@ access(all) contract FlowClusterQC { /// The Voter resource is generated for each collection node after they register. /// Each resource instance is good for all future potential epochs, but will /// only be valid if the node operator has been confirmed as a collector node for the next epoch. - access(all) resource Voter { + pub resource Voter { /// The nodeID of the voter (from the staking contract) - access(all) let nodeID: String + pub let nodeID: String /// The staking key of the node (from the staking contract) - access(all) var stakingKey: String + pub var stakingKey: String init(nodeID: String, stakingKey: String) { pre { @@ -279,12 +271,17 @@ access(all) contract FlowClusterQC { FlowClusterQC.voterClaimed[nodeID] = true } + // If the voter resource is destroyed, a new one could potentially be claimed + destroy () { + FlowClusterQC.voterClaimed[self.nodeID] = nil + } + /// Submits the given vote. Can be called only once per epoch /// /// Params: voteSignature: Signed `voteMessage` with the nodes `stakingKey` /// voteMessage: Hex-encoded message /// - access(all) fun vote(voteSignature: String, voteMessage: String) { + pub fun vote(voteSignature: String, voteMessage: String) { pre { FlowClusterQC.inProgress: "Voting phase is not in progress" voteSignature.length > 0: "Vote signature must not be empty" @@ -321,8 +318,8 @@ access(all) contract FlowClusterQC { let vote = cluster.getGeneratedVote(nodeId: self.nodeID)! // Set the signature and message fields - vote.setSignature(voteSignature) - vote.setMessage(voteMessage) + vote.signature = voteSignature + vote.message = voteMessage // Set the new total weight for the vote let totalWeight = cluster.getUniqueVoteMessageTotalWeight(vote: voteMessage) ?? 0 @@ -339,21 +336,21 @@ access(all) contract FlowClusterQC { /// Interface that only contains operations that are part /// of the regular automated functioning of the epoch process /// These are accessed by the `FlowEpoch` contract through a capability - access(all) resource interface EpochOperations { - access(all) fun createVoter(nodeID: String, stakingKey: String): @Voter - access(all) fun startVoting(clusters: [Cluster]) - access(all) fun stopVoting() - access(all) fun forceStopVoting() + pub resource interface EpochOperations { + pub fun createVoter(nodeID: String, stakingKey: String): @Voter + pub fun startVoting(clusters: [Cluster]) + pub fun stopVoting() + pub fun forceStopVoting() } /// The Admin resource provides the ability to create to Voter resource objects, /// begin voting, and end voting for an epoch - access(all) resource Admin: EpochOperations { + pub resource Admin: EpochOperations { /// Creates a new Voter resource for a collection node /// This function will be publicly accessible in the FlowEpoch /// contract, which will restrict the creation to only collector nodes - access(all) fun createVoter(nodeID: String, stakingKey: String): @Voter { + pub fun createVoter(nodeID: String, stakingKey: String): @Voter { return <-create Voter(nodeID: nodeID, stakingKey: stakingKey) } @@ -363,7 +360,7 @@ access(all) contract FlowClusterQC { /// transitioning to the Epoch Setup Phase. /// /// CAUTION: calling this erases the votes for the current/previous epoch. - access(all) fun startVoting(clusters: [Cluster]) { + pub fun startVoting(clusters: [Cluster]) { FlowClusterQC.inProgress = true FlowClusterQC.clusters = clusters @@ -383,7 +380,7 @@ access(all) contract FlowClusterQC { /// Stops voting for the current epoch. Can only be called once a 2/3 /// majority of each cluster has submitted a vote. - access(all) fun stopVoting() { + pub fun stopVoting() { pre { FlowClusterQC.votingCompleted(): "Voting must be complete before it can be stopped" } @@ -392,25 +389,25 @@ access(all) contract FlowClusterQC { /// Force a stop of the voting period /// Should only be used if the protocol halts and needs to be reset - access(all) fun forceStopVoting() { + pub fun forceStopVoting() { FlowClusterQC.inProgress = false } } /// Returns a boolean telling if the voter is registered for the current voting phase - access(all) view fun voterIsRegistered(_ nodeID: String): Bool { + pub view fun voterIsRegistered(_ nodeID: String): Bool { return FlowClusterQC.nodeCluster[nodeID] != nil } /// Returns a boolean telling if the node has claimed their `Voter` resource object /// The object can only be claimed once, but if the node destroys their `Voter` object, /// It could be claimed again - access(all) view fun voterIsClaimed(_ nodeID: String): Bool { + pub view fun voterIsClaimed(_ nodeID: String): Bool { return FlowClusterQC.voterClaimed[nodeID] != nil } /// Returns whether this voter has successfully submitted a vote for this epoch. - access(all) view fun nodeHasVoted(_ nodeID: String): Bool { + pub view fun nodeHasVoted(_ nodeID: String): Bool { // Get the cluster that this node belongs to if let clusterIndex = FlowClusterQC.nodeCluster[nodeID] { @@ -427,12 +424,12 @@ access(all) contract FlowClusterQC { } /// Gets all of the collector clusters for the current epoch - access(all) view fun getClusters(): [Cluster] { + pub view fun getClusters(): [Cluster] { return self.clusters } /// Returns true if we have collected enough votes for all clusters. - access(all) view fun votingCompleted(): Bool { + pub view fun votingCompleted(): Bool { for cluster in FlowClusterQC.clusters { if cluster.isComplete() == nil { return false @@ -451,6 +448,6 @@ access(all) contract FlowClusterQC { self.voterClaimed = {} self.nodeCluster = {} - self.account.storage.save(<-create Admin(), to: self.AdminStoragePath) + self.account.save(<-create Admin(), to: self.AdminStoragePath) } } \ No newline at end of file diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index d7919f307..73066e1b8 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -1,13 +1,13 @@ import FungibleToken from "FungibleToken" -import FlowToken from "FlowToken" -import FlowIDTableStaking from "FlowIDTableStaking" -import FlowClusterQC from "FlowClusterQC" -import FlowDKG from "FlowDKG" -import FlowFees from "FlowFees" +import FlowToken from 0xFLOWTOKENADDRESS +import FlowIDTableStaking from 0xFLOWIDTABLESTAKINGADDRESS +import FlowClusterQC from 0xQCADDRESS +import FlowDKG from 0xDKGADDRESS +import FlowFees from 0xFLOWFEESADDRESS // The top-level smart contract managing the lifecycle of epochs. In Flow, -// epochs are the smallest unit of time where the identity table (the set of -// network operators) is static. Operators may only leave or join the network +// epochs are the smallest unit of time where the identity table (the set of +// network operators) is static. Operators may only leave or join the network // at epoch boundaries. Operators may be ejected during an epoch for various // misdemeanours, but they remain in the identity table until the epoch ends. // @@ -19,10 +19,10 @@ import FlowFees from "FlowFees" // // 1) STAKING PHASE // Node operators are able to submit staking requests for the NEXT epoch during -// this phase. At the end of this phase, the Epoch smart contract resolves the -// outstanding staking requests and determines the identity table for the next -// epoch. The Epoch smart contract emits the EpochSetup service event containing -// the identity table for the next epoch, which initiates the transition to the +// this phase. At the end of this phase, the Epoch smart contract resolves the +// outstanding staking requests and determines the identity table for the next +// epoch. The Epoch smart contract emits the EpochSetup service event containing +// the identity table for the next epoch, which initiates the transition to the // Epoch Setup Phase. // // 2) SETUP PHASE @@ -40,54 +40,27 @@ import FlowFees from "FlowFees" // indicates that the participants in the next epoch failed to complete the set up // procedure, which is a critical failure and will cause the chain to halt. -access(all) contract FlowEpoch { +pub contract FlowEpoch { - access(all) enum EpochPhase: UInt8 { - access(all) case STAKINGAUCTION - access(all) case EPOCHSETUP - access(all) case EPOCHCOMMIT + pub enum EpochPhase: UInt8 { + pub case STAKINGAUCTION + pub case EPOCHSETUP + pub case EPOCHCOMMIT } - access(all) enum NodeRole: UInt8 { - access(all) case NONE - access(all) case Collector - access(all) case Consensus - access(all) case Execution - access(all) case Verification - access(all) case Access + pub enum NodeRole: UInt8 { + pub case NONE + pub case Collector + pub case Consensus + pub case Execution + pub case Verification + pub case Access } - /// The Epoch Start service event is emitted when the contract transitions - /// to a new epoch in the staking auction phase. - access(all) event EpochStart ( - - /// The counter for the current epoch that is beginning - counter: UInt64, - - /// The first view (inclusive) of the current epoch. - firstView: UInt64, - - /// The last view (inclusive) of the current epoch's staking auction. - stakingAuctionEndView: UInt64, - - /// The last view (inclusive) of the current epoch. - finalView: UInt64, - - /// Total FLOW staked by all nodes and delegators for the current epoch. - totalStaked: UFix64, - - /// Total supply of all FLOW for the current epoch - /// Includes the rewards that will be paid for the previous epoch - totalFlowSupply: UFix64, - - /// The total rewards that will be paid out at the end of the current epoch. - totalRewards: UFix64, - ) - /// The Epoch Setup service event is emitted when we transition to the Epoch Setup /// phase. It contains the finalized identity table for the upcoming epoch. - access(all) event EpochSetup( - + pub event EpochSetup( + /// The counter for the upcoming epoch. Must be one greater than the /// counter for the current epoch. counter: UInt64, @@ -109,34 +82,29 @@ access(all) contract FlowEpoch { /// cluster, with their weights and votes collectorClusters: [FlowClusterQC.Cluster], - /// The source of randomness to seed the leader selection algorithm with + /// The source of randomness to seed the leader selection algorithm with /// for the upcoming epoch. randomSource: String, /// The deadlines of each phase in the DKG protocol to be completed in the upcoming - /// EpochSetup phase. Deadlines are specified in terms of a consensus view number. - /// When a DKG participant observes a finalized and sealed block with view greater - /// than the given deadline, it can safely transition to the next phase. + /// EpochSetup phase. Deadlines are specified in terms of a consensus view number. + /// When a DKG participant observes a finalized and sealed block with view greater + /// than the given deadline, it can safely transition to the next phase. DKGPhase1FinalView: UInt64, DKGPhase2FinalView: UInt64, - DKGPhase3FinalView: UInt64, - - /// The target duration for the upcoming epoch, in seconds - targetDuration: UInt64, - /// The target end time for the upcoming epoch, specified in second-precision Unix time - targetEndTime: UInt64 + DKGPhase3FinalView: UInt64 ) /// The EpochCommit service event is emitted when we transition from the Epoch /// Committed phase. It is emitted only when all preparation for the upcoming epoch /// has been completed - access(all) event EpochCommit ( + pub event EpochCommit( /// The counter for the upcoming epoch. Must be equal to the counter in the /// previous EpochSetup event. counter: UInt64, - /// The result of the QC aggregation process. Each element contains + /// The result of the QC aggregation process. Each element contains /// all the nodes and votes received for a particular cluster /// QC stands for quorum certificate that each cluster generates. clusterQCs: [FlowClusterQC.ClusterQC], @@ -144,48 +112,48 @@ access(all) contract FlowEpoch { /// The resulting public keys from the DKG process, encoded as by the flow-go /// crypto library, then hex-encoded. /// Group public key is the first element, followed by the individual keys - dkgPubKeys: [String] + dkgPubKeys: [String], ) /// Contains specific metadata about a particular epoch /// All historical epoch metadata is stored permanently - access(all) struct EpochMetadata { + pub struct EpochMetadata { /// The identifier for the epoch - access(all) let counter: UInt64 + pub let counter: UInt64 /// The seed used for generating the epoch setup - access(all) let seed: String + pub let seed: String /// The first view of this epoch - access(all) let startView: UInt64 + pub let startView: UInt64 /// The last view of this epoch - access(all) let endView: UInt64 + pub let endView: UInt64 /// The last view of the staking auction - access(all) let stakingEndView: UInt64 + pub let stakingEndView: UInt64 /// The total rewards that are paid out for the epoch - access(all) var totalRewards: UFix64 + pub var totalRewards: UFix64 /// The reward amounts that are paid to each individual node and its delegators - access(all) var rewardAmounts: [FlowIDTableStaking.RewardsBreakdown] + pub var rewardAmounts: [FlowIDTableStaking.RewardsBreakdown] /// Tracks if rewards have been paid for this epoch - access(all) var rewardsPaid: Bool + pub var rewardsPaid: Bool /// The organization of collector node IDs into clusters /// determined by a round robin sorting algorithm - access(all) let collectorClusters: [FlowClusterQC.Cluster] + pub let collectorClusters: [FlowClusterQC.Cluster] /// The Quorum Certificates from the ClusterQC contract - access(all) var clusterQCs: [FlowClusterQC.ClusterQC] + pub var clusterQCs: [FlowClusterQC.ClusterQC] /// The public keys associated with the Distributed Key Generation /// process that consensus nodes participate in /// Group key is the last element at index: length - 1 - access(all) var dkgKeys: [String] + pub var dkgKeys: [String] init(counter: UInt64, seed: String, @@ -210,10 +178,6 @@ access(all) contract FlowEpoch { self.dkgKeys = dkgKeys } - access(account) fun copy(): EpochMetadata { - return self - } - access(account) fun setTotalRewards(_ newRewards: UFix64) { self.totalRewards = newRewards } @@ -224,7 +188,7 @@ access(all) contract FlowEpoch { access(account) fun setRewardsPaid(_ rewardsPaid: Bool) { self.rewardsPaid = rewardsPaid - } + } access(account) fun setClusterQCs(qcs: [FlowClusterQC.ClusterQC]) { self.clusterQCs = qcs @@ -236,42 +200,22 @@ access(all) contract FlowEpoch { } /// Metadata that is managed and can be changed by the Admin/// - access(all) struct Config { + pub struct Config { /// The number of views in an entire epoch - access(all) var numViewsInEpoch: UInt64 - - access(all) fun setNumViewsInEpoch(_ views: UInt64) { - self.numViewsInEpoch = views - } + pub(set) var numViewsInEpoch: UInt64 /// The number of views in the staking auction - access(all) var numViewsInStakingAuction: UInt64 - - access(all) fun setNumViewsInStakingAuction(_ views: UInt64) { - self.numViewsInStakingAuction = views - } - + pub(set) var numViewsInStakingAuction: UInt64 + /// The number of views in each dkg phase - access(all) var numViewsInDKGPhase: UInt64 - - access(all) fun setNumViewsInDKGPhase(_ views: UInt64) { - self.numViewsInDKGPhase = views - } + pub(set) var numViewsInDKGPhase: UInt64 /// The number of collector clusters in each epoch - access(all) var numCollectorClusters: UInt16 - - access(all) fun setNumCollectorClusters(_ numClusters: UInt16) { - self.numCollectorClusters = numClusters - } + pub(set) var numCollectorClusters: UInt16 /// Tracks the rate at which the rewards payout increases every epoch /// This value is multiplied by the FLOW total supply to get the next payout - access(all) var FLOWsupplyIncreasePercentage: UFix64 - - access(all) fun setFLOWsupplyIncreasePercentage(_ percentage: UFix64) { - self.FLOWsupplyIncreasePercentage = percentage - } + pub(set) var FLOWsupplyIncreasePercentage: UFix64 init(numViewsInEpoch: UInt64, numViewsInStakingAuction: UInt64, numViewsInDKGPhase: UInt64, numCollectorClusters: UInt16, FLOWsupplyIncreasePercentage: UFix64) { self.numViewsInEpoch = numViewsInEpoch @@ -282,34 +226,6 @@ access(all) contract FlowEpoch { } } - /// Configuration for epoch timing. - /// Each epoch is assigned a target end time when it is setup (within the EpochSetup event). - /// The configuration defines a reference epoch counter and timestamp, which defines - /// all future target end times. If `targetEpochCounter` is an upcoming epoch, then - /// its target end time is given by: - /// - /// targetEndTime = refTimestamp + duration * (targetEpochCounter-refCounter) - /// - access(all) struct EpochTimingConfig { - /// The duration of each epoch, in seconds - access(all) let duration: UInt64 - /// The counter of the reference epoch - access(all) let refCounter: UInt64 - /// The end time of the reference epoch, specified in second-precision Unix time - access(all) let refTimestamp: UInt64 - - /// Compute target switchover time based on offset from reference counter/switchover. - access(all) fun getTargetEndTimeForEpoch(_ targetEpochCounter: UInt64): UInt64 { - return self.refTimestamp + self.duration * (targetEpochCounter-self.refCounter) - } - - init(duration: UInt64, refCounter: UInt64, refTimestamp: UInt64) { - self.duration = duration - self.refCounter = refCounter - self.refTimestamp = refTimestamp - } - } - /// Holds the `FlowEpoch.Config` struct with the configurable metadata access(contract) let configurableMetadata: Config @@ -323,25 +239,23 @@ access(all) contract FlowEpoch { /// or nil if it isn't found /// Epoch Metadata is stored in account storage so the growing dictionary /// does not have to be loaded every time the contract is loaded - access(all) fun getEpochMetadata(_ epochCounter: UInt64): EpochMetadata? { - if let metadataDictionary = self.account.storage.borrow<&{UInt64: EpochMetadata}>(from: self.metadataStoragePath) { - if let metadataRef = metadataDictionary[epochCounter] { - return metadataRef.copy() - } + pub fun getEpochMetadata(_ epochCounter: UInt64): EpochMetadata? { + if let metadataDictionary = self.account.borrow<&{UInt64: EpochMetadata}>(from: self.metadataStoragePath) { + return metadataDictionary[epochCounter] } return nil } /// Saves a modified EpochMetadata struct to the metadata in account storage - /// + /// access(contract) fun saveEpochMetadata(_ newMetadata: EpochMetadata) { pre { - self.currentEpochCounter == 0 || - (newMetadata.counter >= self.currentEpochCounter - 1 && + self.currentEpochCounter == (0 as UInt64) || + (newMetadata.counter >= self.currentEpochCounter - (1 as UInt64) && newMetadata.counter <= self.proposedEpochCounter()): "Cannot modify epoch metadata from epochs after the proposed epoch or before the previous epoch" } - if let metadataDictionary = self.account.storage.borrow(from: self.metadataStoragePath) { + if let metadataDictionary = self.account.borrow<&{UInt64: EpochMetadata}>(from: self.metadataStoragePath) { if let metadata = metadataDictionary[newMetadata.counter] { assert ( metadata.counter == newMetadata.counter, @@ -353,23 +267,23 @@ access(all) contract FlowEpoch { } /// The counter, or ID, of the current epoch - access(all) var currentEpochCounter: UInt64 + pub var currentEpochCounter: UInt64 /// The current phase that the epoch is in - access(all) var currentEpochPhase: EpochPhase + pub var currentEpochPhase: EpochPhase /// Path where the `FlowEpoch.Admin` resource is stored - access(all) let adminStoragePath: StoragePath + pub let adminStoragePath: StoragePath /// Path where the `FlowEpoch.Heartbeat` resource is stored - access(all) let heartbeatStoragePath: StoragePath + pub let heartbeatStoragePath: StoragePath /// Path where the `{UInt64: EpochMetadata}` dictionary is stored - access(all) let metadataStoragePath: StoragePath + pub let metadataStoragePath: StoragePath /// Resource that can update some of the contract fields - access(all) resource Admin { - access(all) fun updateEpochViews(_ newEpochViews: UInt64) { + pub resource Admin { + pub fun updateEpochViews(_ newEpochViews: UInt64) { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only update fields during the staking auction" FlowEpoch.isValidPhaseConfiguration(FlowEpoch.configurableMetadata.numViewsInStakingAuction, @@ -377,10 +291,10 @@ access(all) contract FlowEpoch { newEpochViews): "New Epoch Views must be greater than the sum of staking and DKG Phase views" } - FlowEpoch.configurableMetadata.setNumViewsInEpoch(newEpochViews) + FlowEpoch.configurableMetadata.numViewsInEpoch = newEpochViews } - access(all) fun updateAuctionViews(_ newAuctionViews: UInt64) { + pub fun updateAuctionViews(_ newAuctionViews: UInt64) { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only update fields during the staking auction" FlowEpoch.isValidPhaseConfiguration(newAuctionViews, @@ -388,10 +302,10 @@ access(all) contract FlowEpoch { FlowEpoch.configurableMetadata.numViewsInEpoch): "Epoch Views must be greater than the sum of new staking and DKG Phase views" } - FlowEpoch.configurableMetadata.setNumViewsInStakingAuction(newAuctionViews) + FlowEpoch.configurableMetadata.numViewsInStakingAuction = newAuctionViews } - access(all) fun updateDKGPhaseViews(_ newPhaseViews: UInt64) { + pub fun updateDKGPhaseViews(_ newPhaseViews: UInt64) { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only update fields during the staking auction" FlowEpoch.isValidPhaseConfiguration(FlowEpoch.configurableMetadata.numViewsInStakingAuction, @@ -399,38 +313,30 @@ access(all) contract FlowEpoch { FlowEpoch.configurableMetadata.numViewsInEpoch): "Epoch Views must be greater than the sum of staking and new DKG Phase views" } - FlowEpoch.configurableMetadata.setNumViewsInDKGPhase(newPhaseViews) - } - - access(all) fun updateEpochTimingConfig(_ newConfig: EpochTimingConfig) { - pre { - FlowEpoch.currentEpochCounter >= newConfig.refCounter: "Reference epoch must be before next epoch" - } - FlowEpoch.account.storage.load(from: /storage/flowEpochTimingConfig) - FlowEpoch.account.storage.save(newConfig, to: /storage/flowEpochTimingConfig) + FlowEpoch.configurableMetadata.numViewsInDKGPhase = newPhaseViews } - access(all) fun updateNumCollectorClusters(_ newNumClusters: UInt16) { + pub fun updateNumCollectorClusters(_ newNumClusters: UInt16) { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only update fields during the staking auction" } - FlowEpoch.configurableMetadata.setNumCollectorClusters(newNumClusters) + FlowEpoch.configurableMetadata.numCollectorClusters = newNumClusters } - access(all) fun updateFLOWSupplyIncreasePercentage(_ newPercentage: UFix64) { + pub fun updateFLOWSupplyIncreasePercentage(_ newPercentage: UFix64) { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only update fields during the staking auction" - newPercentage <= 1.0: "New value must be between zero and one" + newPercentage <= 1.0 as UFix64: "New value must be between zero and one" } - FlowEpoch.configurableMetadata.setFLOWsupplyIncreasePercentage(newPercentage) + FlowEpoch.configurableMetadata.FLOWsupplyIncreasePercentage = newPercentage } // Enable or disable automatic rewards calculations and payments - access(all) fun updateAutomaticRewardsEnabled(_ enabled: Bool) { - FlowEpoch.account.storage.load(from: /storage/flowAutomaticRewardsEnabled) - FlowEpoch.account.storage.save(enabled, to: /storage/flowAutomaticRewardsEnabled) + pub fun updateAutomaticRewardsEnabled(_ enabled: Bool) { + FlowEpoch.account.load(from: /storage/flowAutomaticRewardsEnabled) + FlowEpoch.account.save(enabled, to: /storage/flowAutomaticRewardsEnabled) } /// Ends the currently active epoch and starts a new one with the provided configuration. @@ -438,7 +344,7 @@ access(all) contract FlowEpoch { /// This function is used during sporks - since the consensus view is reset, and the protocol is /// bootstrapped with a new initial state snapshot, this initializes FlowEpoch with the first epoch /// of the new spork, as defined in that snapshot. - access(all) fun resetEpoch( + pub fun resetEpoch( currentEpochCounter: UInt64, randomSource: String, startView: UInt64, @@ -492,12 +398,12 @@ access(all) contract FlowEpoch { /// Resource that is controlled by the protocol and is used /// to change the current phase of the epoch or reset the epoch if needed - /// - access(all) resource Heartbeat { + /// + pub resource Heartbeat { /// Function that is called every block to advance the epoch /// and change phase if the required conditions have been met - access(all) fun advanceBlock() { + pub fun advanceBlock() { switch FlowEpoch.currentEpochPhase { case EpochPhase.STAKINGAUCTION: @@ -514,13 +420,13 @@ access(all) contract FlowEpoch { } case EpochPhase.EPOCHSETUP: if FlowClusterQC.votingCompleted() && (FlowDKG.dkgCompleted() != nil) { - self.calculateAndSetRewards() self.startEpochCommit() } case EpochPhase.EPOCHCOMMIT: let currentBlock = getCurrentBlock() let currentEpochMetadata = FlowEpoch.getEpochMetadata(FlowEpoch.currentEpochCounter)! if currentBlock.view >= currentEpochMetadata.endView { + self.calculateAndSetRewards() self.endEpoch() } default: @@ -530,26 +436,19 @@ access(all) contract FlowEpoch { /// Calls `FlowEpoch` functions to end the staking auction phase /// and start the Epoch Setup phase - access(all) fun endStakingAuction() { + pub fun endStakingAuction() { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only end staking auction during the staking auction" } - let proposedNodeIDs = FlowEpoch.endStakingAuction() + FlowEpoch.endStakingAuction() - /// random source must be a hex string of 32 characters (i.e 16 bytes or 128 bits) - var randomSource = String.encodeHex(revertibleRandom().toBigEndianBytes()) - assert ( - randomSource.length == 32, - message: "Random source must be a hex string of 32 characters" - ) - - FlowEpoch.startEpochSetup(proposedNodeIDs: proposedNodeIDs, randomSource: randomSource) + FlowEpoch.startEpochSetup(randomSource: unsafeRandom().toString()) } /// Calls `FlowEpoch` functions to end the Epoch Setup phase /// and start the Epoch Setup Phase - access(all) fun startEpochCommit() { + pub fun startEpochCommit() { pre { FlowEpoch.currentEpochPhase == EpochPhase.EPOCHSETUP: "Can only end Epoch Setup during Epoch Setup" } @@ -559,7 +458,7 @@ access(all) contract FlowEpoch { /// Calls `FlowEpoch` functions to end the Epoch Commit phase /// and start the Staking Auction phase of a new epoch - access(all) fun endEpoch() { + pub fun endEpoch() { pre { FlowEpoch.currentEpochPhase == EpochPhase.EPOCHCOMMIT: "Can only end epoch during Epoch Commit" } @@ -569,11 +468,11 @@ access(all) contract FlowEpoch { /// Needs to be called before the epoch is over /// Calculates rewards for the current epoch and stores them in epoch metadata - access(all) fun calculateAndSetRewards() { + pub fun calculateAndSetRewards() { FlowEpoch.calculateAndSetRewards() } - access(all) fun payRewardsForPreviousEpoch() { + pub fun payRewardsForPreviousEpoch() { FlowEpoch.payRewardsForPreviousEpoch() } } @@ -626,10 +525,10 @@ access(all) contract FlowEpoch { /// Pays rewards to the nodes and delegators of the previous epoch access(account) fun payRewardsForPreviousEpoch() { - if let previousEpochMetadata = self.getEpochMetadata(self.currentEpochCounter - 1) { + if let previousEpochMetadata = self.getEpochMetadata(self.currentEpochCounter - (1 as UInt64)) { if !previousEpochMetadata.rewardsPaid { let summary = FlowIDTableStaking.EpochRewardsSummary(totalRewards: previousEpochMetadata.totalRewards, breakdown: previousEpochMetadata.rewardAmounts) - self.borrowStakingAdmin().payRewards(forEpochCounter: previousEpochMetadata.counter, rewardsSummary: summary) + self.borrowStakingAdmin().payRewards(summary) previousEpochMetadata.setRewardsPaid(true) self.saveEpochMetadata(previousEpochMetadata) } @@ -648,35 +547,25 @@ access(all) contract FlowEpoch { self.borrowDKGAdmin().endDKG() } - self.borrowStakingAdmin().moveTokens(newEpochCounter: self.proposedEpochCounter()) + self.borrowStakingAdmin().moveTokens() self.currentEpochPhase = EpochPhase.STAKINGAUCTION // Update the epoch counters self.currentEpochCounter = self.proposedEpochCounter() - - let previousEpochMetadata = self.getEpochMetadata(self.currentEpochCounter - 1)! - let newEpochMetadata = self.getEpochMetadata(self.currentEpochCounter)! - - emit EpochStart ( - counter: self.currentEpochCounter, - firstView: newEpochMetadata.startView, - stakingAuctionEndView: newEpochMetadata.stakingEndView, - finalView: newEpochMetadata.endView, - totalStaked: FlowIDTableStaking.getTotalStaked(), - totalFlowSupply: FlowToken.totalSupply + previousEpochMetadata.totalRewards, - totalRewards: FlowIDTableStaking.getEpochTokenPayout(), - ) } /// Ends the staking Auction with all the proposed nodes approved - access(account) fun endStakingAuction(): [String] { - return self.borrowStakingAdmin().endStakingAuction() + access(account) fun endStakingAuction() { + self.borrowStakingAdmin().endStakingAuction() } /// Starts the EpochSetup phase and emits the epoch setup event /// This has to be called directly after `endStakingAuction` - access(account) fun startEpochSetup(proposedNodeIDs: [String], randomSource: String) { + access(account) fun startEpochSetup(randomSource: String) { + + // Get all the nodes that are proposed for the next epoch + let ids = FlowIDTableStaking.getProposedNodeIDs() // Holds the node Information of all the approved nodes var nodeInfoArray: [FlowIDTableStaking.NodeInfo] = [] @@ -690,7 +579,7 @@ access(all) contract FlowEpoch { // Get NodeInfo for all the nodes // Get all the collector and consensus nodes // to initialize the QC and DKG - for id in proposedNodeIDs { + for id in ids { let nodeInfo = FlowIDTableStaking.NodeInfo(nodeID: id) nodeInfoArray.append(nodeInfo) @@ -703,7 +592,7 @@ access(all) contract FlowEpoch { consensusNodeIDs.append(nodeInfo.id) } } - + // Organize the collector nodes into clusters let collectorClusters = self.createCollectorClusters(nodeIDs: collectorNodeIDs) @@ -715,38 +604,31 @@ access(all) contract FlowEpoch { let currentEpochMetadata = self.getEpochMetadata(self.currentEpochCounter)! - // Initialize the metadata for the next epoch + // Initialze the metadata for the next epoch // QC and DKG metadata will be filled in later let proposedEpochMetadata = EpochMetadata(counter: self.proposedEpochCounter(), seed: randomSource, startView: currentEpochMetadata.endView + UInt64(1), endView: currentEpochMetadata.endView + self.configurableMetadata.numViewsInEpoch, stakingEndView: currentEpochMetadata.endView + self.configurableMetadata.numViewsInStakingAuction, - totalRewards: 0.0, + totalRewards: 0.0 as UFix64, collectorClusters: collectorClusters, clusterQCs: [], dkgKeys: []) - // Compute the target end time for the next epoch - let timingConfig = self.getEpochTimingConfig() - let proposedTargetDuration = timingConfig.duration - let proposedTargetEndTime = timingConfig.getTargetEndTimeForEpoch(self.proposedEpochCounter()) - self.saveEpochMetadata(proposedEpochMetadata) self.currentEpochPhase = EpochPhase.EPOCHSETUP emit EpochSetup(counter: proposedEpochMetadata.counter, - nodeInfo: nodeInfoArray, + nodeInfo: nodeInfoArray, firstView: proposedEpochMetadata.startView, finalView: proposedEpochMetadata.endView, collectorClusters: collectorClusters, randomSource: randomSource, DKGPhase1FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + self.configurableMetadata.numViewsInDKGPhase - 1 as UInt64, DKGPhase2FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + (2 as UInt64 * self.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, - DKGPhase3FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + (3 as UInt64 * self.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, - targetDuration: proposedTargetDuration, - targetEndTime: proposedTargetEndTime) + DKGPhase3FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + (3 as UInt64 * self.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64) } /// Ends the EpochSetup phase when the QC and DKG are completed @@ -793,36 +675,36 @@ access(all) contract FlowEpoch { } /// Borrow a reference to the FlowIDTableStaking Admin resource - access(contract) view fun borrowStakingAdmin(): &FlowIDTableStaking.Admin { - let adminCapability = self.account.storage.copy(from: /storage/flowStakingAdminEpochOperations) + access(contract) fun borrowStakingAdmin(): &FlowIDTableStaking.Admin{FlowIDTableStaking.EpochOperations} { + let adminCapability = self.account.copy(from: /storage/flowStakingAdminEpochOperations) ?? panic("Could not get capability from account storage") // borrow a reference to the staking admin object - let adminRef = adminCapability.borrow<&FlowIDTableStaking.Admin>() + let adminRef = adminCapability.borrow<&FlowIDTableStaking.Admin{FlowIDTableStaking.EpochOperations}>() ?? panic("Could not borrow reference to staking admin") return adminRef } /// Borrow a reference to the ClusterQCs Admin resource - access(contract) fun borrowClusterQCAdmin(): &FlowClusterQC.Admin { - let adminCapability = self.account.storage.copy(from: /storage/flowQCAdminEpochOperations) + access(contract) fun borrowClusterQCAdmin(): &FlowClusterQC.Admin{FlowClusterQC.EpochOperations} { + let adminCapability = self.account.copy(from: /storage/flowQCAdminEpochOperations) ?? panic("Could not get capability from account storage") // borrow a reference to the QC admin object - let adminRef = adminCapability.borrow<&FlowClusterQC.Admin>() + let adminRef = adminCapability.borrow<&FlowClusterQC.Admin{FlowClusterQC.EpochOperations}>() ?? panic("Could not borrow reference to QC admin") return adminRef } /// Borrow a reference to the DKG Admin resource - access(contract) fun borrowDKGAdmin(): &FlowDKG.Admin { - let adminCapability = self.account.storage.copy(from: /storage/flowDKGAdminEpochOperations) + access(contract) fun borrowDKGAdmin(): &FlowDKG.Admin{FlowDKG.EpochOperations} { + let adminCapability = self.account.copy(from: /storage/flowDKGAdminEpochOperations) ?? panic("Could not get capability from account storage") // borrow a reference to the dkg admin object - let adminRef = adminCapability.borrow<&FlowDKG.Admin>() + let adminRef = adminCapability.borrow<&FlowDKG.Admin{FlowDKG.EpochOperations}>() ?? panic("Could not borrow reference to dkg admin") return adminRef @@ -830,13 +712,13 @@ access(all) contract FlowEpoch { /// Makes sure the set of phase lengths (in views) are valid. /// Sub-phases cannot be greater than the full epoch length. - access(all) view fun isValidPhaseConfiguration(_ auctionLen: UInt64, _ dkgPhaseLen: UInt64, _ epochLen: UInt64): Bool { - return (auctionLen + (3*dkgPhaseLen)) < epochLen + pub view fun isValidPhaseConfiguration(_ auctionLen: UInt64, _ dkgPhaseLen: UInt64, _ epochLen: UInt64): Bool { + return (auctionLen + ((3 as UInt64)*dkgPhaseLen)) < epochLen } /// Randomizes the list of collector node ID and uses a round robin algorithm /// to assign all collector nodes to equal sized clusters - access(all) fun createCollectorClusters(nodeIDs: [String]): [FlowClusterQC.Cluster] { + pub fun createCollectorClusters(nodeIDs: [String]): [FlowClusterQC.Cluster] { pre { UInt16(nodeIDs.length) >= self.configurableMetadata.numCollectorClusters: "Cannot have less collector nodes than clusters" } @@ -848,7 +730,7 @@ access(all) contract FlowEpoch { let nodeWeightsDictionary: [{String: UInt64}] = [] while clusterIndex < self.configurableMetadata.numCollectorClusters { nodeWeightsDictionary.append({}) - clusterIndex = clusterIndex + 1 + clusterIndex = clusterIndex + 1 as UInt16 } clusterIndex = 0 @@ -857,9 +739,9 @@ access(all) contract FlowEpoch { let nodeInfo = FlowIDTableStaking.NodeInfo(nodeID: id) nodeWeightsDictionary[clusterIndex][id] = nodeInfo.initialWeight - + // Advance to the next cluster, or back to the first if we have gotten to the last one - clusterIndex = clusterIndex + 1 + clusterIndex = clusterIndex + 1 as UInt16 if clusterIndex == self.configurableMetadata.numCollectorClusters { clusterIndex = 0 } @@ -870,26 +752,27 @@ access(all) contract FlowEpoch { clusterIndex = 0 while clusterIndex < self.configurableMetadata.numCollectorClusters { clusters.append(FlowClusterQC.Cluster(index: clusterIndex, nodeWeights: nodeWeightsDictionary[clusterIndex]!)) - clusterIndex = clusterIndex + 1 + clusterIndex = clusterIndex + 1 as UInt16 } return clusters } - - /// A function to generate a random permutation of arr[] + + /// A function to generate a random permutation of arr[] /// using the fisher yates shuffling algorithm - access(all) fun randomize(_ array: [String]): [String] { + pub fun randomize(_ array: [String]): [String] { var i = array.length - 1 - // Start from the last element and swap one by one. We don't - // need to run for the first element that's why i > 0 + // Start from the last element and swap one by one. We don't + // need to run for the first element that's why i > 0 while i > 0 - { - // Pick a random index from 0 to i - var randomIndex = revertibleRandom(modulo: UInt32(i + 1)) - - // Swap arr[i] with the element at random index + { + // Pick a random index from 0 to i + var randomNum = unsafeRandom() + var randomIndex = randomNum % UInt64(i + 1) + + // Swap arr[i] with the element at random index var temp = array[i] array[i] = array[randomIndex] array[randomIndex] = temp @@ -902,7 +785,7 @@ access(all) contract FlowEpoch { /// Collector nodes call this function to get their QC Voter resource /// in order to participate the the QC generation for their cluster - access(all) fun getClusterQCVoter(nodeStaker: &FlowIDTableStaking.NodeStaker): @FlowClusterQC.Voter { + pub fun getClusterQCVoter(nodeStaker: &FlowIDTableStaking.NodeStaker): @FlowClusterQC.Voter { let nodeInfo = FlowIDTableStaking.NodeInfo(nodeID: nodeStaker.id) assert ( @@ -916,7 +799,7 @@ access(all) contract FlowEpoch { /// Consensus nodes call this function to get their DKG Participant resource /// in order to participate in the DKG for the next epoch - access(all) fun getDKGParticipant(nodeStaker: &FlowIDTableStaking.NodeStaker): @FlowDKG.Participant { + pub fun getDKGParticipant(nodeStaker: &FlowIDTableStaking.NodeStaker): @FlowDKG.Participant { let nodeInfo = FlowIDTableStaking.NodeInfo(nodeID: nodeStaker.id) assert ( @@ -929,24 +812,17 @@ access(all) contract FlowEpoch { } /// Returns the metadata that is able to be configured by the admin - access(all) view fun getConfigMetadata(): Config { + pub view fun getConfigMetadata(): Config { return self.configurableMetadata } - /// Returns the config for epoch timing, which can be configured by the admin. - /// Conceptually, this should be part of `Config`, however it was added later in an - /// upgrade which requires new fields be specified separately from existing structs. - access(all) fun getEpochTimingConfig(): EpochTimingConfig { - return self.account.storage.copy(from: /storage/flowEpochTimingConfig)! - } - /// The proposed Epoch counter is always the current counter plus 1 - access(all) view fun proposedEpochCounter(): UInt64 { + pub view fun proposedEpochCounter(): UInt64 { return self.currentEpochCounter + 1 as UInt64 } - access(all) fun automaticRewardsEnabled(): Bool { - return self.account.storage.copy(from: /storage/flowAutomaticRewardsEnabled) ?? false + pub view fun automaticRewardsEnabled(): Bool { + return self.account.copy(from: /storage/flowAutomaticRewardsEnabled) ?? false } /// Gets the current amount of bonus tokens left to be destroyed @@ -956,15 +832,15 @@ access(all) contract FlowEpoch { /// so they are not included in that calculation /// Eventually, all the bonus tokens will be destroyed and /// this will not be needed anymore - access(all) fun getBonusTokens(): UFix64 { - return self.account.storage.copy(from: /storage/FlowBonusTokenAmount) + pub fun getBonusTokens(): UFix64 { + return self.account.copy(from: /storage/FlowBonusTokenAmount) ?? 0.0 } init (currentEpochCounter: UInt64, - numViewsInEpoch: UInt64, - numViewsInStakingAuction: UInt64, - numViewsInDKGPhase: UInt64, + numViewsInEpoch: UInt64, + numViewsInStakingAuction: UInt64, + numViewsInDKGPhase: UInt64, numCollectorClusters: UInt16, FLOWsupplyIncreasePercentage: UFix64, randomSource: String, @@ -981,14 +857,7 @@ access(all) contract FlowEpoch { numViewsInDKGPhase: numViewsInDKGPhase, numCollectorClusters: numCollectorClusters, FLOWsupplyIncreasePercentage: FLOWsupplyIncreasePercentage) - - // Set a reasonable default for the epoch timing config targeting 1 block per second - let defaultEpochTimingConfig = EpochTimingConfig( - duration: numViewsInEpoch, - refCounter: currentEpochCounter, - refTimestamp: UInt64(getCurrentBlock().timestamp)+numViewsInEpoch) - FlowEpoch.account.storage.save(defaultEpochTimingConfig, to: /storage/flowEpochTimingConfig) - + self.currentEpochCounter = currentEpochCounter self.currentEpochPhase = EpochPhase.STAKINGAUCTION self.adminStoragePath = /storage/flowEpochAdmin @@ -997,28 +866,40 @@ access(all) contract FlowEpoch { let epochMetadata: {UInt64: EpochMetadata} = {} - self.account.storage.save(epochMetadata, to: self.metadataStoragePath) + self.account.save(epochMetadata, to: self.metadataStoragePath) - self.account.storage.save(<-create Admin(), to: self.adminStoragePath) - self.account.storage.save(<-create Heartbeat(), to: self.heartbeatStoragePath) + self.account.save(<-create Admin(), to: self.adminStoragePath) + self.account.save(<-create Heartbeat(), to: self.heartbeatStoragePath) // Create a private capability to the staking admin and store it in a different path // On Mainnet and Testnet, the Admin resources are stored in the service account, rather than here. // As a default, we store both the admin resources, and the capabilities linking to those resources, in the same account. // This ensures that this constructor produces a state which is compatible with the system chunk // so that newly created networks are functional without additional resource manipulation. - let stakingAdminCapability = self.account.capabilities.storage.issue<&FlowIDTableStaking.Admin>(FlowIDTableStaking.StakingAdminStoragePath) - self.account.storage.save>(stakingAdminCapability, to: /storage/flowStakingAdminEpochOperations) + let stakingAdminCapability = self.account.link<&FlowIDTableStaking.Admin{FlowIDTableStaking.EpochOperations}>( + /private/flowStakingAdminEpochOperations, + target: FlowIDTableStaking.StakingAdminStoragePath + ) ?? panic("Could not link Flow staking admin capability") + + self.account.save>(stakingAdminCapability, to: /storage/flowStakingAdminEpochOperations) // Create a private capability to the qc admin // and store it in a different path - let qcAdminCapability = self.account.capabilities.storage.issue<&FlowClusterQC.Admin>(FlowClusterQC.AdminStoragePath) - self.account.storage.save>(qcAdminCapability, to: /storage/flowQCAdminEpochOperations) + let qcAdminCapability = self.account.link<&FlowClusterQC.Admin{FlowClusterQC.EpochOperations}>( + /private/flowQCAdminEpochOperations, + target: FlowClusterQC.AdminStoragePath + ) ?? panic("Could not link Flow QC admin capability") + + self.account.save>(qcAdminCapability, to: /storage/flowQCAdminEpochOperations) // Create a private capability to the dkg admin // and store it in a different path - let dkgAdminCapability = self.account.capabilities.storage.issue<&FlowDKG.Admin>(FlowDKG.AdminStoragePath) - self.account.storage.save>(dkgAdminCapability, to: /storage/flowDKGAdminEpochOperations) + let dkgAdminCapability = self.account.link<&FlowDKG.Admin{FlowDKG.EpochOperations}>( + /private/flowDKGAdminEpochOperations, + target: FlowDKG.AdminStoragePath + ) ?? panic("Could not link Flow DKG admin capability") + + self.account.save>(dkgAdminCapability, to: /storage/flowDKGAdminEpochOperations) self.borrowStakingAdmin().startStakingAuction() @@ -1027,8 +908,8 @@ access(all) contract FlowEpoch { let firstEpochMetadata = EpochMetadata(counter: self.currentEpochCounter, seed: randomSource, startView: currentBlock.view, - endView: currentBlock.view + self.configurableMetadata.numViewsInEpoch - 1, - stakingEndView: currentBlock.view + self.configurableMetadata.numViewsInStakingAuction - 1, + endView: currentBlock.view + self.configurableMetadata.numViewsInEpoch - (1 as UInt64), + stakingEndView: currentBlock.view + self.configurableMetadata.numViewsInStakingAuction - (1 as UInt64), totalRewards: FlowIDTableStaking.getEpochTokenPayout(), collectorClusters: collectorClusters, clusterQCs: clusterQCs, @@ -1037,3 +918,4 @@ access(all) contract FlowEpoch { self.saveEpochMetadata(firstEpochMetadata) } } + \ No newline at end of file From e39f87c4b75e2821fd7e882e73feab2707b6d9e6 Mon Sep 17 00:00:00 2001 From: Daniel Sainati Date: Wed, 5 Jul 2023 15:58:33 -0400 Subject: [PATCH 002/160] Update to newest Stable Cadence Preview (#371) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * update to view functions for stable cadence * remove unreachable code * update templates to Stable Cadence * update to Stable Cadence preview 4 * update for stable cadence * fix parse error --------- Co-authored-by: Josh Hannan Co-authored-by: Bastian Müller --- contracts/FlowContractAudits.cdc | 231 +++ contracts/FlowFees.cdc | 64 +- contracts/FlowServiceAccount.cdc | 70 +- contracts/FlowStorageFees.cdc | 53 +- contracts/FlowToken.cdc | 173 +- contracts/NodeVersionBeacon.cdc | 93 +- contracts/StakingProxy.cdc | 10 +- contracts/epochs/FlowClusterQC.cdc | 92 +- contracts/epochs/FlowEpoch.cdc | 132 +- lib/go/contracts/go.mod | 69 +- lib/go/contracts/go.sum | 2279 ++---------------------- lib/go/templates/go.mod | 56 +- lib/go/templates/go.sum | 2669 ++-------------------------- 13 files changed, 858 insertions(+), 5133 deletions(-) create mode 100644 contracts/FlowContractAudits.cdc diff --git a/contracts/FlowContractAudits.cdc b/contracts/FlowContractAudits.cdc new file mode 100644 index 000000000..eab49da7f --- /dev/null +++ b/contracts/FlowContractAudits.cdc @@ -0,0 +1,231 @@ +/// This contract was used to manage audits and approvals +/// for deployment to Flow mainnet before permissionless deployment +/// was enabled in June 2022. It is no longer used, but is still +/// deployed to the Service Account, so it is documented here +/// for reference + +access(all) contract FlowContractAudits { + + // Event that is emitted when a new Auditor resource is created + access(all) event AuditorCreated() + + // Event that is emitted when a new contract audit voucher is created + access(all) event VoucherCreated(address: Address?, recurrent: Bool, expiryBlockHeight: UInt64?, codeHash: String) + + // Event that is emitted when a contract audit voucher is used + access(all) event VoucherUsed(address: Address, key: String, recurrent: Bool, expiryBlockHeight: UInt64?) + + // Event that is emitted when a contract audit voucher is removed + access(all) event VoucherRemoved(key: String, recurrent: Bool, expiryBlockHeight: UInt64?) + + // Dictionary of all vouchers + access(contract) var vouchers: {String: AuditVoucher} + + // The storage path for the admin resource + access(all) let AdminStoragePath: StoragePath + + // The storage Path for auditors' AuditorProxy + access(all) let AuditorProxyStoragePath: StoragePath + + // The public path for auditors' AuditorProxy capability + access(all) let AuditorProxyPublicPath: PublicPath + + // Single audit voucher that is used for contract deployment + access(all) struct AuditVoucher { + + // Address of the account the voucher is intended for + // If nil, the contract can be deployed to any account + access(all) let address: Address? + + // If false, the voucher will be removed after first use + access(all) let recurrent: Bool + + // If non-nil, the voucher won't be valid after the expiry block height + access(all) let expiryBlockHeight: UInt64? + + // Hash of contract code + access(all) let codeHash: String + + init(address: Address?, recurrent: Bool, expiryBlockHeight: UInt64?, codeHash: String) { + self.address = address + self.recurrent = recurrent + self.expiryBlockHeight = expiryBlockHeight + self.codeHash = codeHash + } + } + + // Returns all current vouchers + access(all) fun getAllVouchers(): {String: AuditVoucher} { + return self.vouchers + } + + // Get the associated dictionary key for given address and codeHash + access(all) fun generateVoucherKey(address: Address?, codeHash: String): String { + if address != nil { + return address!.toString().concat("-").concat(codeHash) + } + return "any-".concat(codeHash) + } + + access(all) fun hashContractCode(_ code: String): String { + return String.encodeHex(HashAlgorithm.SHA3_256.hash(code.utf8)) + } + + // Auditors can create new vouchers and remove them + access(all) resource Auditor { + + // Create new voucher with contract code + access(all) fun addVoucher(address: Address?, recurrent: Bool, expiryOffset: UInt64?, code: String) { + let codeHash = FlowContractAudits.hashContractCode(code) + self.addVoucherHashed(address: address, recurrent: recurrent, expiryOffset: expiryOffset, codeHash: codeHash) + } + + // Create new voucher with hashed contract code + access(all) fun addVoucherHashed(address: Address?, recurrent: Bool, expiryOffset: UInt64?, codeHash: String) { + + // calculate expiry block height based on expiryOffset + var expiryBlockHeight: UInt64? = nil + if expiryOffset != nil { + expiryBlockHeight = getCurrentBlock().height + expiryOffset! + } + + let key = FlowContractAudits.generateVoucherKey(address: address, codeHash: codeHash) + + // if a voucher with the same key exists, remove it first + FlowContractAudits.deleteVoucher(key) + + let voucher = AuditVoucher(address: address, recurrent: recurrent, expiryBlockHeight: expiryBlockHeight, codeHash: codeHash) + + FlowContractAudits.vouchers.insert(key: key, voucher) + + emit VoucherCreated(address: address, recurrent: recurrent, expiryBlockHeight: expiryBlockHeight, codeHash: codeHash) + } + + // Remove a voucher with given key + access(all) fun deleteVoucher(key: String) { + FlowContractAudits.deleteVoucher(key) + } + } + + // Used by admin to set the Auditor capability + access(all) resource interface AuditorProxyPublic { + access(all) fun setAuditorCapability(_ cap: Capability<&Auditor>) + } + + // The auditor account will have audit access through AuditorProxy + // This enables the admin account to revoke access + // See https://docs.onflow.org/cadence/design-patterns/#capability-revocation + access(all) resource AuditorProxy: AuditorProxyPublic { + access(self) var auditorCapability: Capability<&Auditor>? + + access(all) fun setAuditorCapability(_ cap: Capability<&Auditor>) { + self.auditorCapability = cap + } + + access(all) fun addVoucher(address: Address?, recurrent: Bool, expiryOffset: UInt64?, code: String) { + self.auditorCapability!.borrow()!.addVoucher(address: address, recurrent: recurrent, expiryOffset: expiryOffset, code: code) + } + + access(all) fun addVoucherHashed(address: Address?, recurrent: Bool, expiryOffset: UInt64?, codeHash: String) { + self.auditorCapability!.borrow()!.addVoucherHashed(address: address, recurrent: recurrent, expiryOffset: expiryOffset, codeHash: codeHash) + } + + access(all) fun deleteVoucher(key: String) { + self.auditorCapability!.borrow()!.deleteVoucher(key: key) + } + + init() { + self.auditorCapability = nil + } + + } + + // Can be called by anyone but needs a capability to function + access(all) fun createAuditorProxy(): @AuditorProxy { + return <- create AuditorProxy() + } + + access(all) resource Administrator { + + // Creates new Auditor + access(all) fun createNewAuditor(): @Auditor { + emit AuditorCreated() + return <-create Auditor() + } + + // Checks all vouchers and removes expired ones + access(all) fun cleanupExpiredVouchers() { + for key in FlowContractAudits.vouchers.keys { + let v = FlowContractAudits.vouchers[key]! + if v.expiryBlockHeight != nil { + if getCurrentBlock().height > v.expiryBlockHeight! { + FlowContractAudits.deleteVoucher(key) + } + } + } + } + + // For testing + access(all) fun useVoucherForDeploy(address: Address, code: String): Bool { + return FlowContractAudits.useVoucherForDeploy(address: address, code: code) + } + } + + // This function will be called by the FVM on contract deploy/update + access(contract) fun useVoucherForDeploy(address: Address, code: String): Bool { + let codeHash = FlowContractAudits.hashContractCode(code) + var key = FlowContractAudits.generateVoucherKey(address: address, codeHash: codeHash) + + // first check for voucher based on target account + // if not found check for any account + if !FlowContractAudits.vouchers.containsKey(key) { + key = FlowContractAudits.generateVoucherKey(address: nil, codeHash: codeHash) + if !FlowContractAudits.vouchers.containsKey(key) { + return false + } + } + + let v = FlowContractAudits.vouchers[key]! + + // ensure contract code matches the voucher + if v.codeHash != codeHash { + return false + } + + // if expiryBlockHeight is set, check the current block height + // and remove/expire the voucher if not within the acceptable range + if v.expiryBlockHeight != nil { + if getCurrentBlock().height > v.expiryBlockHeight! { + FlowContractAudits.deleteVoucher(key) + return false + } + } + + // remove the voucher if not recurrent + if !v.recurrent { + FlowContractAudits.deleteVoucher(key) + } + + emit VoucherUsed(address: address, key: key, recurrent: v.recurrent, expiryBlockHeight: v.expiryBlockHeight) + return true + } + + // Helper function to remove a voucher with given key + access(contract) fun deleteVoucher(_ key: String) { + let v = FlowContractAudits.vouchers.remove(key: key) + if v != nil { + emit VoucherRemoved(key: key, recurrent: v!.recurrent, expiryBlockHeight: v!.expiryBlockHeight) + } + } + + init() { + self.vouchers = {} + + self.AdminStoragePath = /storage/flowContractAuditVouchersAdmin + self.AuditorProxyStoragePath = /storage/flowContractAuditVouchersAuditorProxy + self.AuditorProxyPublicPath = /public/flowContractAuditVouchersAuditorProxy + + let admin <- create Administrator() + self.account.save(<-admin, to: self.AdminStoragePath) + } +} \ No newline at end of file diff --git a/contracts/FlowFees.cdc b/contracts/FlowFees.cdc index 31c03c514..468725d93 100644 --- a/contracts/FlowFees.cdc +++ b/contracts/FlowFees.cdc @@ -1,6 +1,6 @@ import FungibleToken from "FungibleToken" -import FlowToken from "FlowToken" -import FlowStorageFees from "FlowStorageFees" +import FlowToken from 0xFLOWTOKENADDRESS +import FlowStorageFees from 0xFLOWSTORAGEFEESADDRESS access(all) contract FlowFees { @@ -19,7 +19,7 @@ access(all) contract FlowFees { // Private vault with public deposit function access(self) var vault: @FlowToken.Vault - access(all) fun deposit(from: @{FungibleToken.Vault}) { + access(all) fun deposit(from: @FungibleToken.Vault) { let from <- from as! @FlowToken.Vault let balance = from.balance self.vault.deposit(from: <-from) @@ -35,7 +35,7 @@ access(all) contract FlowFees { // withdraw // // Allows the administrator to withdraw tokens from the fee vault - access(all) fun withdrawTokensFromFeeVault(amount: UFix64): @{FungibleToken.Vault} { + access(all) fun withdrawTokensFromFeeVault(amount: UFix64): @FungibleToken.Vault { let vault <- FlowFees.vault.withdraw(amount: amount) emit TokensWithdrawn(amount: amount) return <-vault @@ -75,10 +75,10 @@ access(all) contract FlowFees { access(all) struct VerifyPayerBalanceResult { // True if the payer has sufficient balance for the transaction execution to continue access(all) let canExecuteTransaction: Bool - // The minimum payer balance required for the transaction execution to continue. + // The minimum payer balance required for the transaction execution to continue. // This value is defined by verifyPayersBalanceForTransactionExecution. access(all) let requiredBalance: UFix64 - // The maximum transaction fees (inclusion fees + execution fees) the transaction can incur + // The maximum transaction fees (inclusion fees + execution fees) the transaction can incur // (if all available execution effort is used) access(all) let maximumTransactionFees: UFix64 @@ -95,12 +95,12 @@ access(all) contract FlowFees { // and returns the maximum possible transaction fees. // (according to the inclusion effort and maximum execution effort of the transaction). // - // The requiredBalance balance is defined as the minimum account balance + + // The requiredBalance balance is defined as the minimum account balance + // maximum transaction fees (inclusion fees + execution fees at max execution effort). access(all) fun verifyPayersBalanceForTransactionExecution( - _ payerAcct: auth(BorrowValue) &Account, - inclusionEffort: UFix64, - maxExecutionEffort: UFix64 + _ payerAcct: AuthAccount, + inclusionEffort: UFix64, + maxExecutionEffort: UFix64, ): VerifyPayerBalanceResult { // Get the maximum fees required for the transaction. var maxTransactionFee = self.computeFees(inclusionEffort: inclusionEffort, executionEffort: maxExecutionEffort) @@ -111,21 +111,21 @@ access(all) contract FlowFees { if minimumRequiredBalance == UFix64(0) { // If the required balance is zero exit early. return VerifyPayerBalanceResult( - canExecuteTransaction: true, + canExecuteTransaction: true, requiredBalance: minimumRequiredBalance, - maximumTransactionFees: maxTransactionFee + maximumTransactionFees: maxTransactionFee, ) } - + // Get the balance of the payers default vault. // In the edge case where the payer doesnt have a vault, treat the balance as 0. var balance = 0.0 - if let tokenVault = payerAcct.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) { + if let tokenVault = payerAcct.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) { balance = tokenVault.balance } return VerifyPayerBalanceResult( - // The transaction can be executed it the payers balance is greater than the minimum required balance. + // The transaction can be executed it the payers balance is greater than the minimum required balance. canExecuteTransaction: balance >= minimumRequiredBalance, requiredBalance: minimumRequiredBalance, maximumTransactionFees: maxTransactionFee) @@ -133,28 +133,28 @@ access(all) contract FlowFees { /// Called when a transaction is submitted to deduct the fee /// from the AuthAccount that submitted it - access(all) fun deductTransactionFee(_ acct: auth(BorrowValue) &Account, inclusionEffort: UFix64, executionEffort: UFix64) { + access(all) fun deductTransactionFee(_ acct: AuthAccount, inclusionEffort: UFix64, executionEffort: UFix64) { var feeAmount = self.computeFees(inclusionEffort: inclusionEffort, executionEffort: executionEffort) if feeAmount == UFix64(0) { - // If there are no fees to deduct, do not continue, + // If there are no fees to deduct, do not continue, // so that there are no unnecessarily emitted events return } - let tokenVault = acct.storage.borrow(from: /storage/flowTokenVault) + let tokenVault = acct.borrow(from: /storage/flowTokenVault) ?? panic("Unable to borrow reference to the default token vault") - + if feeAmount > tokenVault.balance { - // In the future this code path will never be reached, + // In the future this code path will never be reached, // as payers that are under account minimum balance will not have their transactions included in a collection // // Currently this is not used to fail the transaction (as that is the responsibility of the minimum account balance logic), - // But is used to reduce the balance of the vault to 0.0, if the vault has less available balance than the transaction fees. + // But is used to reduce the balance of the vault to 0.0, if the vault has less available balance than the transaction fees. feeAmount = tokenVault.balance } - + let feeVault <- tokenVault.withdraw(amount: feeAmount) self.vault.deposit(from: <-feeVault) @@ -162,31 +162,31 @@ access(all) contract FlowFees { emit FeesDeducted(amount: feeAmount, inclusionEffort: inclusionEffort, executionEffort: executionEffort) } - access(all) view fun getFeeParameters(): FeeParameters { - return self.account.storage.copy(from: /storage/FlowTxFeeParameters) ?? panic("Error getting tx fee parameters. They need to be initialized first!") + access(all) fun getFeeParameters(): FeeParameters { + return self.account.copy(from: /storage/FlowTxFeeParameters) ?? panic("Error getting tx fee parameters. They need to be initialized first!") } access(self) fun setFeeParameters(_ feeParameters: FeeParameters) { // empty storage before writing new FeeParameters to it - self.account.storage.load(from: /storage/FlowTxFeeParameters) - self.account.storage.save(feeParameters,to: /storage/FlowTxFeeParameters) + self.account.load(from: /storage/FlowTxFeeParameters) + self.account.save(feeParameters,to: /storage/FlowTxFeeParameters) emit FeeParametersChanged(surgeFactor: feeParameters.surgeFactor, inclusionEffortCost: feeParameters.inclusionEffortCost, executionEffortCost: feeParameters.executionEffortCost) } - + // compute the transaction fees with the current fee parameters and the given inclusionEffort and executionEffort - access(all) view fun computeFees(inclusionEffort: UFix64, executionEffort: UFix64): UFix64 { + access(all) fun computeFees(inclusionEffort: UFix64, executionEffort: UFix64): UFix64 { let params = self.getFeeParameters() - + let totalFees = params.surgeFactor * ( inclusionEffort * params.inclusionEffortCost + executionEffort * params.executionEffortCost ) return totalFees } - init() { + init(adminAccount: AuthAccount) { // Create a new FlowToken Vault and save it in storage - self.vault <- FlowToken.createEmptyVault(vaultType: Type<@FlowToken.Vault>()) as! @FlowToken.Vault + self.vault <- FlowToken.createEmptyVault() as! @FlowToken.Vault let admin <- create Administrator() - self.account.storage.save(<-admin, to: /storage/flowFeesAdmin) + adminAccount.save(<-admin, to: /storage/flowFeesAdmin) } } \ No newline at end of file diff --git a/contracts/FlowServiceAccount.cdc b/contracts/FlowServiceAccount.cdc index c2506047b..0598c5015 100644 --- a/contracts/FlowServiceAccount.cdc +++ b/contracts/FlowServiceAccount.cdc @@ -1,7 +1,7 @@ import FungibleToken from "FungibleToken" -import FlowToken from "FlowToken" -import FlowFees from "FlowFees" -import FlowStorageFees from "FlowStorageFees" +import FlowToken from 0xFLOWTOKENADDRESS +import FlowFees from 0xFLOWFEESADDRESS +import FlowStorageFees from 0xFLOWSTORAGEFEESADDRESS access(all) contract FlowServiceAccount { @@ -25,36 +25,42 @@ access(all) contract FlowServiceAccount { access(contract) var accountCreators: {Address: Bool} /// Initialize an account with a FlowToken Vault and publish capabilities. - access(all) fun initDefaultToken(_ acct: auth(SaveValue, Capabilities) &Account) { + access(all) fun initDefaultToken(_ acct: AuthAccount) { // Create a new FlowToken Vault and save it in storage - acct.storage.save(<-FlowToken.createEmptyVault(vaultType: Type<@FlowToken.Vault>()), to: /storage/flowTokenVault) + acct.save(<-FlowToken.createEmptyVault(), to: /storage/flowTokenVault) // Create a public capability to the Vault that only exposes // the deposit function through the Receiver interface - let receiverCapability = acct.capabilities.storage.issue<&FlowToken.Vault>(/storage/flowTokenVault) - acct.capabilities.publish(receiverCapability, at: /public/flowTokenReceiver) + acct.link<&FlowToken.Vault{FungibleToken.Receiver}>( + /public/flowTokenReceiver, + target: /storage/flowTokenVault + ) // Create a public capability to the Vault that only exposes // the balance field through the Balance interface - let balanceCapability = acct.capabilities.storage.issue<&FlowToken.Vault>(/storage/flowTokenVault) - acct.capabilities.publish(balanceCapability, at: /public/flowTokenBalance) + acct.link<&FlowToken.Vault{FungibleToken.Balance}>( + /public/flowTokenBalance, + target: /storage/flowTokenVault + ) } /// Get the default token balance on an account /// /// Returns 0 if the account has no default balance - access(all) view fun defaultTokenBalance(_ acct: &Account): UFix64 { + access(all) fun defaultTokenBalance(_ acct: PublicAccount): UFix64 { var balance = 0.0 - if let balanceRef = acct.capabilities.borrow<&{FungibleToken.Balance}>(/public/flowTokenBalance) { - balance = balanceRef.balance - } + if let balanceRef = acct + .getCapability(/public/flowTokenBalance) + .borrow<&FlowToken.Vault{FungibleToken.Balance}>(){ + balance = balanceRef.balance + } return balance } /// Return a reference to the default token vault on an account - access(all) view fun defaultTokenVault(_ acct: auth(BorrowValue) &Account): auth(FungibleToken.Withdraw) &FlowToken.Vault { - return acct.storage.borrow(from: /storage/flowTokenVault) + access(all) fun defaultTokenVault(_ acct: AuthAccount): auth(FungibleToken.Withdrawable) &FlowToken.Vault { + return acct.borrow(from: /storage/flowTokenVault) ?? panic("Unable to borrow reference to the default token vault") } @@ -62,7 +68,7 @@ access(all) contract FlowServiceAccount { /// /// Called when a transaction is submitted to deduct the fee /// from the AuthAccount that submitted it - access(all) fun deductTransactionFee(_ acct: auth(BorrowValue) &Account) { + access(all) fun deductTransactionFee(_ acct: AuthAccount) { if self.transactionFee == UFix64(0) { return } @@ -80,11 +86,7 @@ access(all) contract FlowServiceAccount { /// - Deducts the account creation fee from a payer account. /// - Inits the default token. /// - Inits account storage capacity. - access(all) fun setupNewAccount( - newAccount: auth(SaveValue, BorrowValue, Capabilities) &Account, - payer: auth(BorrowValue) &Account - ) { - + access(all) fun setupNewAccount(newAccount: AuthAccount, payer: AuthAccount) { if !FlowServiceAccount.isAccountCreator(payer.address) { panic("Account not authorized to create accounts") } @@ -107,7 +109,7 @@ access(all) contract FlowServiceAccount { } /// Returns true if the given address is permitted to create accounts, false otherwise - access(all) view fun isAccountCreator(_ address: Address): Bool { + access(all) fun isAccountCreator(_ address: Address): Bool { // If account creation is not restricted, then anyone can create an account if !self.isAccountCreationRestricted() { return true @@ -116,31 +118,31 @@ access(all) contract FlowServiceAccount { } /// Is true if new acconts can only be created by approved accounts `self.accountCreators` - access(all) view fun isAccountCreationRestricted(): Bool { - return self.account.storage.copy(from: /storage/isAccountCreationRestricted) ?? false + access(all) fun isAccountCreationRestricted(): Bool { + return self.account.copy(from: /storage/isAccountCreationRestricted) ?? false } // Authorization resource to change the fields of the contract /// Returns all addresses permitted to create accounts - access(all) view fun getAccountCreators(): [Address] { + access(all) fun getAccountCreators(): [Address] { return self.accountCreators.keys } // Gets Execution Effort Weights from the service account's storage - access(all) view fun getExecutionEffortWeights(): {UInt64: UInt64} { - return self.account.storage.copy<{UInt64: UInt64}>(from: /storage/executionEffortWeights) + access(all) fun getExecutionEffortWeights(): {UInt64: UInt64} { + return self.account.copy<{UInt64: UInt64}>(from: /storage/executionEffortWeights) ?? panic("execution effort weights not set yet") } // Gets Execution Memory Weights from the service account's storage - access(all) view fun getExecutionMemoryWeights(): {UInt64: UInt64} { - return self.account.storage.copy<{UInt64: UInt64}>(from: /storage/executionMemoryWeights) + access(all) fun getExecutionMemoryWeights(): {UInt64: UInt64} { + return self.account.copy<{UInt64: UInt64}>(from: /storage/executionMemoryWeights) ?? panic("execution memory weights not set yet") } // Gets Execution Memory Limit from the service account's storage - access(all) view fun getExecutionMemoryLimit(): UInt64 { - return self.account.storage.copy(from: /storage/executionMemoryLimit) + access(all) fun getExecutionMemoryLimit(): UInt64 { + return self.account.copy(from: /storage/executionMemoryLimit) ?? panic("execution memory limit not set yet") } @@ -181,8 +183,8 @@ access(all) contract FlowServiceAccount { access(all) fun setIsAccountCreationRestricted(_ enabled: Bool) { let path = /storage/isAccountCreationRestricted - let oldValue = FlowServiceAccount.account.storage.load(from: path) - FlowServiceAccount.account.storage.save(enabled, to: path) + let oldValue = FlowServiceAccount.account.load(from: path) + FlowServiceAccount.account.save(enabled, to: path) if enabled != oldValue { emit IsAccountCreationRestrictedUpdated(isRestricted: enabled) } @@ -198,6 +200,6 @@ access(all) contract FlowServiceAccount { let admin <- create Administrator() admin.addAccountCreator(self.account.address) - self.account.storage.save(<-admin, to: /storage/flowServiceAdmin) + self.account.save(<-admin, to: /storage/flowServiceAdmin) } } diff --git a/contracts/FlowStorageFees.cdc b/contracts/FlowStorageFees.cdc index 932fde128..fc3db9485 100644 --- a/contracts/FlowStorageFees.cdc +++ b/contracts/FlowStorageFees.cdc @@ -15,7 +15,7 @@ */ import FungibleToken from "FungibleToken" -import FlowToken from "FlowToken" +import FlowToken from 0xFLOWTOKENADDRESS access(all) contract FlowStorageFees { @@ -65,10 +65,10 @@ access(all) contract FlowStorageFees { /// If the account has no default balance it is counted as a balance of 0.0 FLOW access(all) fun calculateAccountCapacity(_ accountAddress: Address): UFix64 { var balance = 0.0 - let acct = getAccount(accountAddress) - - if let balanceRef = acct.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { - balance = balanceRef.balance + if let balanceRef = getAccount(accountAddress) + .getCapability<&FlowToken.Vault{FungibleToken.Balance}>(/public/flowTokenBalance)! + .borrow() { + balance = balanceRef.balance } return self.accountBalanceToAccountStorageCapacity(balance) @@ -92,15 +92,15 @@ access(all) contract FlowStorageFees { let capacities: [UFix64] = [] for accountAddress in accountAddresses { var balance = 0.0 - let acct = getAccount(accountAddress) - - if let balanceRef = acct.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { - if accountAddress == payer { - // if the account is the payer, deduct the maximum possible transaction fees from the balance - balance = balanceRef.balance.saturatingSubtract(maxTxFees) - } else { - balance = balanceRef.balance - } + if let balanceRef = getAccount(accountAddress) + .getCapability<&FlowToken.Vault{FungibleToken.Balance}>(/public/flowTokenBalance)! + .borrow() { + if accountAddress == payer { + // if the account is the payer, deduct the maximum possible transaction fees from the balance + balance = balanceRef.balance.saturatingSubtract(maxTxFees) + } else { + balance = balanceRef.balance + } } capacities.append(self.accountBalanceToAccountStorageCapacity(balance)) @@ -110,7 +110,7 @@ access(all) contract FlowStorageFees { // accountBalanceToAccountStorageCapacity returns the storage capacity // an account would have with given the flow balance of the account. - access(all) view fun accountBalanceToAccountStorageCapacity(_ balance: UFix64): UFix64 { + access(all) fun accountBalanceToAccountStorageCapacity(_ balance: UFix64): UFix64 { // get address token balance if balance < self.minimumStorageReservation { // if < then minimum return 0 @@ -123,15 +123,15 @@ access(all) contract FlowStorageFees { // Amount in Flow tokens // Returns megabytes - access(all) view fun flowToStorageCapacity(_ amount: UFix64): UFix64 { + access(all) fun flowToStorageCapacity(_ amount: UFix64): UFix64 { return amount.saturatingMultiply(FlowStorageFees.storageMegaBytesPerReservedFLOW) } // Amount in megabytes // Returns Flow tokens - access(all) view fun storageCapacityToFlow(_ amount: UFix64): UFix64 { - if FlowStorageFees.storageMegaBytesPerReservedFLOW == 0.0 { - return 0.0 + access(all) fun storageCapacityToFlow(_ amount: UFix64): UFix64 { + if FlowStorageFees.storageMegaBytesPerReservedFLOW == 0.0 as UFix64 { + return 0.0 as UFix64 } // possible loss of precision // putting the result back into `flowToStorageCapacity` might not yield the same result @@ -139,9 +139,9 @@ access(all) contract FlowStorageFees { } // converts storage used from UInt64 Bytes to UFix64 Megabytes. - access(all) view fun convertUInt64StorageBytesToUFix64Megabytes(_ storage: UInt64): UFix64 { + access(all) fun convertUInt64StorageBytesToUFix64Megabytes(_ storage: UInt64): UFix64 { // safe convert UInt64 to UFix64 (without overflow) - let f = UFix64(storage % 100000000) * 0.00000001 + UFix64(storage / 100000000) + let f = UFix64(storage % 100000000 as UInt64) * 0.00000001 as UFix64 + UFix64(storage / 100000000 as UInt64) // decimal point correction. Megabytes to bytes have a conversion of 10^-6 while UFix64 minimum value is 10^-8 let storageMb = f.saturatingMultiply(100.0) return storageMb @@ -155,8 +155,9 @@ access(all) contract FlowStorageFees { //get balance of account let acct = getAccount(accountAddress) var balance = 0.0 - - if let balanceRef = acct.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { + if let balanceRef = acct + .getCapability(/public/flowTokenBalance) + .borrow<&FlowToken.Vault{FungibleToken.Balance}>() { balance = balanceRef.balance } @@ -170,9 +171,9 @@ access(all) contract FlowStorageFees { /// /// The reserved balance of an account is its storage used multiplied by the storage cost per flow token. /// The reserved balance is at least the minimum storage reservation. - access(all) view fun defaultTokenReservedBalance(_ accountAddress: Address): UFix64 { + access(all) fun defaultTokenReservedBalance(_ accountAddress: Address): UFix64 { let acct = getAccount(accountAddress) - var reserved = self.storageCapacityToFlow(self.convertUInt64StorageBytesToUFix64Megabytes(acct.storage.used)) + var reserved = self.storageCapacityToFlow(self.convertUInt64StorageBytesToUFix64Megabytes(acct.storageUsed)) // at least self.minimumStorageReservation should be reserved if reserved < self.minimumStorageReservation { reserved = self.minimumStorageReservation @@ -186,7 +187,7 @@ access(all) contract FlowStorageFees { self.minimumStorageReservation = 0.0 // or 0 kb of minimum storage reservation let admin <- create Administrator() - self.account.storage.save(<-admin, to: /storage/storageFeesAdmin) + self.account.save(<-admin, to: /storage/storageFeesAdmin) } } \ No newline at end of file diff --git a/contracts/FlowToken.cdc b/contracts/FlowToken.cdc index b444a0dc6..4ac56434f 100644 --- a/contracts/FlowToken.cdc +++ b/contracts/FlowToken.cdc @@ -1,12 +1,16 @@ import FungibleToken from "FungibleToken" import MetadataViews from "MetadataViews" import FungibleTokenMetadataViews from "FungibleTokenMetadataViews" +import ViewResolver from "ViewResolver" -access(all) contract FlowToken: FungibleToken { +access(all) contract FlowToken: FungibleToken, ViewResolver { // Total supply of Flow tokens in existence access(all) var totalSupply: UFix64 + // Event that is emitted when the contract is created + access(all) event TokensInitialized(initialSupply: UFix64) + // Event that is emitted when tokens are withdrawn from a Vault access(all) event TokensWithdrawn(amount: UFix64, from: Address?) @@ -16,6 +20,9 @@ access(all) contract FlowToken: FungibleToken { // Event that is emitted when new tokens are minted access(all) event TokensMinted(amount: UFix64) + // Event that is emitted when tokens are destroyed + access(all) event TokensBurned(amount: UFix64) + // Event that is emitted when a new minter resource is created access(all) event MinterCreated(allowedAmount: UFix64) @@ -34,7 +41,7 @@ access(all) contract FlowToken: FungibleToken { // out of thin air. A special Minter resource needs to be defined to mint // new tokens. // - access(all) resource Vault: FungibleToken.Vault { + access(all) resource Vault: FungibleToken.Provider, FungibleToken.Receiver, FungibleToken.Balance, MetadataViews.Resolver { // holds the balance of a users tokens access(all) var balance: UFix64 @@ -44,28 +51,6 @@ access(all) contract FlowToken: FungibleToken { self.balance = balance } - /// Called when a fungible token is burned via the `Burner.burn()` method - access(contract) fun burnCallback() { - if self.balance > 0.0 { - FlowToken.totalSupply = FlowToken.totalSupply - self.balance - } - self.balance = 0.0 - } - - /// getSupportedVaultTypes optionally returns a list of vault types that this receiver accepts - access(all) view fun getSupportedVaultTypes(): {Type: Bool} { - return {self.getType(): true} - } - - access(all) view fun isSupportedVaultType(type: Type): Bool { - if (type == self.getType()) { return true } else { return false } - } - - /// Asks if the amount can be withdrawn from this vault - access(all) view fun isAvailableToWithdraw(amount: UFix64): Bool { - return amount <= self.balance - } - // withdraw // // Function that takes an integer amount as an argument @@ -75,27 +60,9 @@ access(all) contract FlowToken: FungibleToken { // created Vault to the context that called so it can be deposited // elsewhere. // - access(FungibleToken.Withdraw) fun withdraw(amount: UFix64): @{FungibleToken.Vault} { + access(FungibleToken.Withdrawable) fun withdraw(amount: UFix64): @FungibleToken.Vault { self.balance = self.balance - amount - - // If the owner is the staking account, do not emit the contract defined events - // this is to help with the performance of the epoch transition operations - // Either way, event listeners should be paying attention to the - // FungibleToken.Withdrawn events anyway because those contain - // much more comprehensive metadata - // Additionally, these events will eventually be removed from this contract completely - // in favor of the FungibleToken events - if let address = self.owner?.address { - if address != 0xf8d6e0586b0a20c7 && - address != 0xf4527793ee68aede && - address != 0x9eca2b38b18b5dfe && - address != 0x8624b52f9ddcd04a - { - emit TokensWithdrawn(amount: amount, from: address) - } - } else { - emit TokensWithdrawn(amount: amount, from: nil) - } + emit TokensWithdrawn(amount: amount, from: self.owner?.address) return <-create Vault(balance: amount) } @@ -106,39 +73,27 @@ access(all) contract FlowToken: FungibleToken { // It is allowed to destroy the sent Vault because the Vault // was a temporary holder of the tokens. The Vault's balance has // been consumed and therefore can be destroyed. - access(all) fun deposit(from: @{FungibleToken.Vault}) { + access(all) fun deposit(from: @FungibleToken.Vault) { let vault <- from as! @FlowToken.Vault self.balance = self.balance + vault.balance - - // If the owner is the staking account, do not emit the contract defined events - // this is to help with the performance of the epoch transition operations - // Either way, event listeners should be paying attention to the - // FungibleToken.Deposited events anyway because those contain - // much more comprehensive metadata - // Additionally, these events will eventually be removed from this contract completely - // in favor of the FungibleToken events - if let address = self.owner?.address { - if address != 0xf8d6e0586b0a20c7 && - address != 0xf4527793ee68aede && - address != 0x9eca2b38b18b5dfe && - address != 0x8624b52f9ddcd04a - { - emit TokensDeposited(amount: vault.balance, to: address) - } - } else { - emit TokensDeposited(amount: vault.balance, to: nil) - } + emit TokensDeposited(amount: vault.balance, to: self.owner?.address) vault.balance = 0.0 destroy vault } + destroy() { + if self.balance > 0.0 { + FlowToken.totalSupply = FlowToken.totalSupply - self.balance + } + } + /// Get all the Metadata Views implemented by FlowToken /// /// @return An array of Types defining the implemented views. This value will be used by /// developers to know which parameter to pass to the resolveView() method. /// - access(all) view fun getViews(): [Type]{ - return FlowToken.getContractViews(resourceType: nil) + access(all) fun getViews(): [Type]{ + return FlowToken.getViews() } /// Get a Metadata View from FlowToken @@ -147,11 +102,7 @@ access(all) contract FlowToken: FungibleToken { /// @return A structure representing the requested view. /// access(all) fun resolveView(_ view: Type): AnyStruct? { - return FlowToken.resolveContractView(resourceType: nil, viewType: view) - } - - access(all) fun createEmptyVault(): @{FungibleToken.Vault} { - return <-create Vault(balance: 0.0) + return FlowToken.resolveView(view) } } @@ -162,12 +113,11 @@ access(all) contract FlowToken: FungibleToken { // and store the returned Vault in their storage in order to allow their // account to be able to receive deposits of this token type. // - access(all) fun createEmptyVault(vaultType: Type): @FlowToken.Vault { + access(all) fun createEmptyVault(): @FungibleToken.Vault { return <-create Vault(balance: 0.0) } - /// Gets a list of the metadata views that this contract supports - access(all) view fun getContractViews(resourceType: Type?): [Type] { + access(all) fun getViews(): [Type] { return [Type(), Type(), Type(), @@ -179,12 +129,12 @@ access(all) contract FlowToken: FungibleToken { /// @param view: The Type of the desired view. /// @return A structure representing the requested view. /// - access(all) fun resolveContractView(resourceType: Type?, viewType: Type): AnyStruct? { - switch viewType { + access(all) fun resolveView(_ view: Type): AnyStruct? { + switch view { case Type(): return FungibleTokenMetadataViews.FTView( - ftDisplay: self.resolveContractView(resourceType: nil, viewType: Type()) as! FungibleTokenMetadataViews.FTDisplay?, - ftVaultData: self.resolveContractView(resourceType: nil, viewType: Type()) as! FungibleTokenMetadataViews.FTVaultData? + ftDisplay: self.resolveView(Type()) as! FungibleTokenMetadataViews.FTDisplay?, + ftVaultData: self.resolveView(Type()) as! FungibleTokenMetadataViews.FTVaultData? ) case Type(): let media = MetadataViews.Media( @@ -205,16 +155,16 @@ access(all) contract FlowToken: FungibleToken { } ) case Type(): - let vaultRef = FlowToken.account.storage.borrow(from: /storage/flowTokenVault) - ?? panic("Could not borrow reference to the contract's Vault!") return FungibleTokenMetadataViews.FTVaultData( storagePath: /storage/flowTokenVault, receiverPath: /public/flowTokenReceiver, metadataPath: /public/flowTokenBalance, - receiverLinkedType: Type<&{FungibleToken.Receiver, FungibleToken.Vault}>(), - metadataLinkedType: Type<&{FungibleToken.Balance, FungibleToken.Vault}>(), - createEmptyVaultFunction: (fun (): @{FungibleToken.Vault} { - return <-vaultRef.createEmptyVault() + providerPath: /private/flowTokenVault, + receiverLinkedType: Type<&FlowToken.Vault{FungibleToken.Receiver, FungibleToken.Balance, MetadataViews.Resolver}>(), + metadataLinkedType: Type<&FlowToken.Vault{FungibleToken.Balance, MetadataViews.Resolver}>(), + providerLinkedType: Type<&FlowToken.Vault{FungibleToken.Provider}>(), + createEmptyVaultFunction: (fun (): @FungibleToken.Vault { + return <-FlowToken.createEmptyVault() }) ) case Type(): @@ -232,6 +182,15 @@ access(all) contract FlowToken: FungibleToken { emit MinterCreated(allowedAmount: allowedAmount) return <-create Minter(allowedAmount: allowedAmount) } + + // createNewBurner + // + // Function that creates and returns a new burner resource + // + access(all) fun createNewBurner(): @Burner { + emit BurnerCreated() + return <-create Burner() + } } // Minter @@ -264,9 +223,30 @@ access(all) contract FlowToken: FungibleToken { } } + // Burner + // + // Resource object that token admin accounts can hold to burn tokens. + // + access(all) resource Burner { + + // burnTokens + // + // Function that destroys a Vault instance, effectively burning the tokens. + // + // Note: the burned tokens are automatically subtracted from the + // total supply in the Vault destructor. + // + access(all) fun burnTokens(from: @FungibleToken.Vault) { + let vault <- from as! @FlowToken.Vault + let amount = vault.balance + destroy vault + emit TokensBurned(amount: amount) + } + } + /// Gets the Flow Logo XML URI from storage - access(all) view fun getLogoURI(): String { - return FlowToken.account.storage.copy(from: /storage/flowTokenLogoURI) ?? "" + access(all) fun getLogoURI(): String { + return FlowToken.account.copy(from: /storage/flowTokenLogoURI) ?? "" } init() { @@ -276,22 +256,31 @@ access(all) contract FlowToken: FungibleToken { // let vault <- create Vault(balance: self.totalSupply) - self.account.storage.save(<-vault, to: /storage/flowTokenVault) + // Example of how to resolve a metadata view for a Vault + let ftView = vault.resolveView(Type()) + + self.account.save(<-vault, to: /storage/flowTokenVault) // Create a public capability to the stored Vault that only exposes // the `deposit` method through the `Receiver` interface // - let receiverCapability = self.account.capabilities.storage.issue<&FlowToken.Vault>(/storage/flowTokenVault) - self.account.capabilities.publish(receiverCapability, at: /public/flowTokenReceiver) + self.account.link<&FlowToken.Vault{FungibleToken.Receiver, FungibleToken.Balance, MetadataViews.Resolver}>( + /public/flowTokenReceiver, + target: /storage/flowTokenVault + ) // Create a public capability to the stored Vault that only exposes // the `balance` field through the `Balance` interface // - let balanceCapability = self.account.capabilities.storage.issue<&FlowToken.Vault>(/storage/flowTokenVault) - self.account.capabilities.publish(balanceCapability, at: /public/flowTokenBalance) + self.account.link<&FlowToken.Vault{FungibleToken.Balance, MetadataViews.Resolver}>( + /public/flowTokenBalance, + target: /storage/flowTokenVault + ) let admin <- create Administrator() - self.account.storage.save(<-admin, to: /storage/flowTokenAdmin) + self.account.save(<-admin, to: /storage/flowTokenAdmin) + // Emit an event that shows that the contract was initialized + emit TokensInitialized(initialSupply: self.totalSupply) } } diff --git a/contracts/NodeVersionBeacon.cdc b/contracts/NodeVersionBeacon.cdc index 2d982a4b5..cc0686f01 100644 --- a/contracts/NodeVersionBeacon.cdc +++ b/contracts/NodeVersionBeacon.cdc @@ -1,8 +1,8 @@ /// The NodeVersionBeacon contract holds the past and future protocol versions. /// that should be used to execute/handle blocks at aa given block height. -/// +/// /// The service account holds the NodeVersionBeacon.Heartbeat resource -/// which is responsible for emitting the VersionBeacon event. +/// which is responsible for emitting the VersionBeacon event. /// The event contains the current version and all the upcoming versions. /// The event is emitted every time the version table is updated /// or a version boundary is reached. @@ -12,7 +12,7 @@ /// changed if they occur after the current block height + versionUpdateFreezePeriod. /// This is to ensure that nodes have enough time to react to version table changes. /// The versionUpdateFreezePeriod can also be changed by the admin resource, but only if -/// there are no upcoming version boundaries within the current versionUpdateFreezePeriod or +/// there are no upcoming version boundaries within the current versionUpdateFreezePeriod or /// the new versionUpdateFreezePeriod. /// /// The contract itself can be used to query the current version and the next upcoming version. @@ -37,7 +37,7 @@ access(all) contract NodeVersionBeacon { /// Returns version in Semver format (e.g. v..-) /// as a String - access(all) view fun toString(): String { + access(all) fun toString(): String { let semverCoreString = self.major.toString() .concat(".") .concat( @@ -58,49 +58,49 @@ access(all) contract NodeVersionBeacon { /// Returns true if Semver core is greater than /// passed Semver core and false otherwise - access(all) view fun coreGreaterThan(_ other: Semver): Bool { + access(all) fun coreGreaterThan(_ other: Semver): Bool { if (self.major != other.major) { return self.major > other.major } - + if (self.minor != other.minor) { return self.minor > other.minor } if (self.patch != other.patch) { return self.patch > other.patch - } + } return false } /// Returns true if Semver core is greater than or /// equal to passed Semver core and false otherwise - access(all) view fun coreGreaterThanOrEqualTo(_ other: Semver): Bool { + access(all) fun coreGreaterThanOrEqualTo(_ other: Semver): Bool { return self.coreGreaterThan(other) || self.coreEqualTo(other) } /// Returns true if Semver core is less than /// passed Semver core and false otherwise - access(all) view fun coreLessThan(_ other: Semver): Bool { + access(all) fun coreLessThan(_ other: Semver): Bool { return !self.coreGreaterThanOrEqualTo(other) } /// Returns true if Semver core is less than or /// equal to passed Semver core and false otherwise - access(all) view fun coreLessThanOrEqualTo(_ other: Semver): Bool { + access(all) fun coreLessThanOrEqualTo(_ other: Semver): Bool { return !self.coreGreaterThan(other) } /// Returns true if Semver is equal to passed /// Semver core and false otherwise - access(all) view fun coreEqualTo(_ other: Semver): Bool { + access(all) fun coreEqualTo(_ other: Semver): Bool { return self.major == other.major && self.minor == other.minor && self.patch == other.patch } /// Returns true if Semver is *exactly* equal to passed /// Semver and false otherwise - access(all) view fun strictEqualTo(_ other: Semver): Bool { + access(all) fun strictEqualTo(_ other: Semver): Bool { return self.coreEqualTo(other) && self.preRelease == other.preRelease } } @@ -121,7 +121,7 @@ access(all) contract NodeVersionBeacon { } } - /// Returns the zero boundary. Used as a sentinel value + /// Returns the zero boundary. Used as a sentinel value /// for versions before the version beacon contract. /// Simplifies edge case code. /// The zero boundary is at block height 0 and has version v0.0.0. @@ -129,15 +129,15 @@ access(all) contract NodeVersionBeacon { access(all) fun zeroVersionBoundary(): VersionBoundary { let zeroVersion = self.zeroSemver() return VersionBoundary( - blockHeight: 0, - version: zeroVersion + blockHeight: 0, + version: zeroVersion, ) } /// Event emitted when the version table is updated. /// It contains the current version and all the upcoming versions /// sorted by block height. - /// The sequence increases by one each time an event is emitted. + /// The sequence increases by one each time an event is emitted. /// It can be used to verify no events were missed. access(all) event VersionBeacon( versionBoundaries: [VersionBoundary], @@ -155,17 +155,17 @@ access(all) contract NodeVersionBeacon { access(all) let HeartbeatStoragePath: StoragePath /// Block height indexed version boundaries. - access(contract) let versionBoundary: {UInt64: VersionBoundary} - + access(contract) let versionBoundary: {UInt64: VersionBoundary} + /// Sorted Array containing version boundary block heights. access(contract) var versionBoundaryBlockList: [UInt64] /// Index in the versionBoundaryBlockList of the next upcoming version boundary, /// or nil if no upcoming version boundary. access(contract) var firstUpcomingBoundary: UInt64? - - /// versionUpdateFreezePeriod is the number of blocks (past the current one) for which version boundary - /// changes are not allowed. This is to ensure that nodes have enough time to react to + + /// versionUpdateFreezePeriod is the number of blocks (past the current one) for which version boundary + /// changes are not allowed. This is to ensure that nodes have enough time to react to /// version table changes. access(contract) var versionBoundaryFreezePeriod: UInt64 @@ -193,10 +193,10 @@ access(all) contract NodeVersionBeacon { if exists { // this was an update so nothing else needs to be done return - } + } // We have to insert the block height into the ordered list. - // This is an inefficient algorithm, but it is not expected that the list of + // This is an inefficient algorithm, but it is not expected that the list of // upcoming versions will be long. var i = NodeVersionBeacon.versionBoundaryBlockList.length while i > 1 && NodeVersionBeacon.versionBoundaryBlockList[i-1] > versionBoundary.blockHeight { @@ -230,7 +230,7 @@ access(all) contract NodeVersionBeacon { NodeVersionBeacon.versionBoundary.remove(key: blockHeight) // We have to remove the block height from the ordered list. - // This is an inefficient algorithm, but it is not expected that the list of + // This is an inefficient algorithm, but it is not expected that the list of // upcoming versions will be long. var i = NodeVersionBeacon.versionBoundaryBlockList.length - 1 while i > 0 && NodeVersionBeacon.versionBoundaryBlockList[i] > blockHeight { @@ -244,7 +244,7 @@ access(all) contract NodeVersionBeacon { // the index has to be fixed, but you cannot change records before the index // so the only case to be addressed is that the index is pointing off the list, // because the list is now shorter. - if NodeVersionBeacon.firstUpcomingBoundary != nil && + if NodeVersionBeacon.firstUpcomingBoundary != nil && NodeVersionBeacon.firstUpcomingBoundary! >= UInt64(NodeVersionBeacon.versionBoundaryBlockList.length) { NodeVersionBeacon.firstUpcomingBoundary = nil } @@ -264,8 +264,8 @@ access(all) contract NodeVersionBeacon { if NodeVersionBeacon.firstUpcomingBoundary == nil { NodeVersionBeacon.versionBoundaryFreezePeriod = newFreezePeriod return - } - + } + let nextBlockBoundary = NodeVersionBeacon.versionBoundaryBlockList[NodeVersionBeacon.firstUpcomingBoundary!] // Ensure that the we're not currently within the old or new freeze period @@ -277,14 +277,14 @@ access(all) contract NodeVersionBeacon { ) NodeVersionBeacon.versionBoundaryFreezePeriod = newFreezePeriod - + emit NodeVersionBoundaryFreezePeriodChanged(freezePeriod: newFreezePeriod) } } /// Heartbeat resource that emits the version beacon event and keeps track of upcoming versions. /// This resource should always be held only by the service account, - /// because the service account should be the only one emitting the event, + /// because the service account should be the only one emitting the event, /// and only during the system transaction access(all) resource Heartbeat { // heartbeat is called during the system transaction every block. @@ -300,13 +300,13 @@ access(all) contract NodeVersionBeacon { } access(self) fun emitVersionBeaconEvent(versionBoundaries : [VersionBoundary]) { - + emit VersionBeacon(versionBoundaries: versionBoundaries, sequence: NodeVersionBeacon.nextVersionBeaconEventSequence) // After emitting the event increase the event sequence number and set the flag to false // so the event won't be emitted on the next block if there isn't any changes to the table NodeVersionBeacon.nextVersionBeaconEventSequence = NodeVersionBeacon.nextVersionBeaconEventSequence + 1 - + } /// Check if the index pointing to the next version boundary needs to be moved. @@ -317,7 +317,7 @@ access(all) contract NodeVersionBeacon { let currentBlockHeight = getCurrentBlock().height var boundaryIndex = NodeVersionBeacon.firstUpcomingBoundary! - while boundaryIndex < UInt64(NodeVersionBeacon.versionBoundaryBlockList.length) + while boundaryIndex < UInt64(NodeVersionBeacon.versionBoundaryBlockList.length) && NodeVersionBeacon.versionBoundaryBlockList[boundaryIndex] <= currentBlockHeight { boundaryIndex = boundaryIndex + 1 } @@ -330,7 +330,7 @@ access(all) contract NodeVersionBeacon { if boundaryIndex >= UInt64(NodeVersionBeacon.versionBoundaryBlockList.length) { NodeVersionBeacon.firstUpcomingBoundary = nil } else { - NodeVersionBeacon.firstUpcomingBoundary = boundaryIndex + NodeVersionBeacon.firstUpcomingBoundary = boundaryIndex } // If we passed a boundary re-emit the VersionBeacon event @@ -373,20 +373,20 @@ access(all) contract NodeVersionBeacon { } /// Returns the versionBoundaryFreezePeriod - access(all) view fun getVersionBoundaryFreezePeriod(): UInt64 { + access(all) fun getVersionBoundaryFreezePeriod(): UInt64 { return NodeVersionBeacon.versionBoundaryFreezePeriod } /// Returns the sequence number of the next version beacon event /// This can be used to verify that no version beacon events were missed. - access(all) view fun getNextVersionBeaconSequence(): UInt64 { + access(all) fun getNextVersionBeaconSequence(): UInt64 { return self.nextVersionBeaconEventSequence } /// Function that returns the version that was defined at the most /// recent block height boundary. May return zero boundary. access(all) fun getCurrentVersionBoundary(): VersionBoundary { - var current: UInt64 = 0 + var current = 0 as UInt64 // index is never 0 since version 0 is always in the past if let index = NodeVersionBeacon.firstUpcomingBoundary { @@ -412,9 +412,9 @@ access(all) contract NodeVersionBeacon { } /// Checks whether given version was compatible at the given historical block height - access(all) view fun getVersionBoundary(effectiveAtBlockHeight: UInt64): VersionBoundary { + access(all) fun getVersionBoundary(effectiveAtBlockHeight: UInt64): VersionBoundary { let block = self.searchForClosestHistoricalBlockBoundary(blockHeight: effectiveAtBlockHeight) - + return self.versionBoundary[block]! } @@ -423,14 +423,14 @@ access(all) contract NodeVersionBeacon { access(all) let perPage: Int access(all) let totalLength: Int access(all) let values : [VersionBoundary] - - view init(page: Int, perPage: Int, totalLength: Int, values: [VersionBoundary]) { + + init(page: Int, perPage: Int, totalLength: Int, values: [VersionBoundary]) { self.page = page self.perPage = perPage self.totalLength = totalLength self.values = values } - + } /// Returns a page of version boundaries @@ -463,7 +463,7 @@ access(all) contract NodeVersionBeacon { /// Binary search algorithm to find closest value key in versionTable that is <= target value - access(contract) view fun searchForClosestHistoricalBlockBoundary(blockHeight: UInt64): UInt64 { + access(contract) fun searchForClosestHistoricalBlockBoundary(blockHeight: UInt64): UInt64 { // Return last block boundary if target is beyond let length = self.versionBoundaryBlockList.length if blockHeight >= self.versionBoundaryBlockList[length - 1] { @@ -499,9 +499,9 @@ access(all) contract NodeVersionBeacon { self.AdminStoragePath = /storage/NodeVersionBeaconAdmin self.HeartbeatStoragePath = /storage/NodeVersionBeaconHeartbeat - // insert a zero-th version to make the API simpler and more robust + // insert a zero-th version to make the API simpler and more robust let zero = NodeVersionBeacon.zeroVersionBoundary() - + self.versionBoundary = {zero.blockHeight:zero} self.versionBoundaryBlockList = [zero.blockHeight] self.versionBoundaryFreezePeriod = versionUpdateFreezePeriod @@ -511,7 +511,8 @@ access(all) contract NodeVersionBeacon { // emit the event on the first heartbeat to send the zero version self.emitEventOnNextHeartbeat = true - self.account.storage.save(<-create Admin(), to: self.AdminStoragePath) - self.account.storage.save(<-create Heartbeat(), to: self.HeartbeatStoragePath) + self.account.save(<-create Admin(), to: self.AdminStoragePath) + self.account.save(<-create Heartbeat(), to: self.HeartbeatStoragePath) } } + \ No newline at end of file diff --git a/contracts/StakingProxy.cdc b/contracts/StakingProxy.cdc index 1f1c8dc0a..41b42c07d 100644 --- a/contracts/StakingProxy.cdc +++ b/contracts/StakingProxy.cdc @@ -75,7 +75,7 @@ access(all) contract StakingProxy { /// staking helper relationships with them access(all) resource interface NodeStakerProxyHolderPublic { - access(all) fun addStakingProxy(nodeID: String, proxy: {NodeStakerProxy}) + access(all) fun addStakingProxy(nodeID: String, proxy: AnyStruct{NodeStakerProxy}) access(all) fun getNodeInfo(nodeID: String): NodeInfo? } @@ -88,7 +88,7 @@ access(all) contract StakingProxy { /// Maps node IDs to any struct that implements the NodeStakerProxy interface /// allows node operators to work with users with locked tokens /// and with unstaked tokens - access(self) var stakingProxies: {String: {NodeStakerProxy}} + access(self) var stakingProxies: {String: AnyStruct{NodeStakerProxy}} /// Maps node IDs to NodeInfo access(self) var nodeInfo: {String: NodeInfo} @@ -121,7 +121,7 @@ access(all) contract StakingProxy { /// the node operator's NodeInfo to operate a node /// They store their `NodeStakerProxy` here to allow the node /// operator to perform some staking actions also - access(all) fun addStakingProxy(nodeID: String, proxy: {NodeStakerProxy}) { + access(all) fun addStakingProxy(nodeID: String, proxy: AnyStruct{NodeStakerProxy}) { pre { self.stakingProxies[nodeID] == nil } @@ -130,7 +130,7 @@ access(all) contract StakingProxy { /// The node operator can call the removeStakingProxy function /// to remove a staking proxy if it is no longer needed - access(all) fun removeStakingProxy(nodeID: String): {NodeStakerProxy} { + access(all) fun removeStakingProxy(nodeID: String): AnyStruct{NodeStakerProxy} { pre { self.stakingProxies[nodeID] != nil } @@ -140,7 +140,7 @@ access(all) contract StakingProxy { /// Borrow a "reference" to the staking proxy so staking operations /// can be performed with it - access(all) fun borrowStakingProxy(nodeID: String): {NodeStakerProxy}? { + access(all) fun borrowStakingProxy(nodeID: String): AnyStruct{NodeStakerProxy}? { return self.stakingProxies[nodeID] } } diff --git a/contracts/epochs/FlowClusterQC.cdc b/contracts/epochs/FlowClusterQC.cdc index d5bc14e60..63a274f80 100644 --- a/contracts/epochs/FlowClusterQC.cdc +++ b/contracts/epochs/FlowClusterQC.cdc @@ -22,7 +22,7 @@ import Crypto -pub contract FlowClusterQC { +access(all) contract FlowClusterQC { // ================================================================================ // CONTRACT VARIABLES @@ -30,7 +30,7 @@ pub contract FlowClusterQC { /// Indicates whether votes are currently being collected. /// If false, no node operator will be able to submit votes - pub var inProgress: Bool + access(all) var inProgress: Bool /// The collection node clusters for the current epoch access(account) var clusters: [Cluster] @@ -53,21 +53,21 @@ pub contract FlowClusterQC { // ================================================================================ /// Canonical paths for admin and voter resources - pub let AdminStoragePath: StoragePath - pub let VoterStoragePath: StoragePath + access(all) let AdminStoragePath: StoragePath + access(all) let VoterStoragePath: StoragePath /// Represents a collection node cluster for a given epoch. - pub struct Cluster { + access(all) struct Cluster { /// The index of the cluster within the cluster array. This uniquely identifies /// a cluster for a given epoch - pub let index: UInt16 + access(all) let index: UInt16 /// Weights for each nodeID in the cluster - pub let nodeWeights: {String: UInt64} + access(all) let nodeWeights: {String: UInt64} /// The total node weight of all the nodes in the cluster - pub let totalWeight: UInt64 + access(all) let totalWeight: UInt64 /// Votes that nodes claim at the beginning of each EpochSetup phase /// Key is node ID from the identity table contract @@ -77,10 +77,10 @@ pub contract FlowClusterQC { /// adds their signature and message, then adds it back to this vote list. /// If a node has voted, their `signature` and `message` field will be non-`nil` /// If a node hasn't voted, their `signature` and `message` field will be `nil` - pub var generatedVotes: {String: Vote} + access(all) var generatedVotes: {String: Vote} /// Tracks each unique vote and how much combined weight has been sent for the vote - pub var uniqueVoteMessageTotalWeights: {String: UInt64} + access(all) var uniqueVoteMessageTotalWeights: {String: UInt64} init(index: UInt16, nodeWeights: {String: UInt64}) { self.index = index @@ -96,13 +96,13 @@ pub contract FlowClusterQC { } /// Returns the number of nodes in the cluster - pub fun size(): UInt16 { + access(all) fun size(): UInt16 { return UInt16(self.nodeWeights.length) } /// Returns the minimum sum of vote weight required in order to be able to generate a /// valid quorum certificate for this cluster. - pub view fun voteThreshold(): UInt64 { + access(all) view fun voteThreshold(): UInt64 { if self.totalWeight == 0 as UInt64 { return 0 as UInt64 } @@ -127,7 +127,7 @@ pub contract FlowClusterQC { /// Then this cluster's QC generation is considered complete and this method returns /// the vote message that reached quorum /// If no vote is found to reach quorum, then `nil` is returned - pub view fun isComplete(): String? { + access(all) view fun isComplete(): String? { for message in self.uniqueVoteMessageTotalWeights.keys { if self.uniqueVoteMessageTotalWeights[message]! >= self.voteThreshold() { return message @@ -138,7 +138,7 @@ pub contract FlowClusterQC { /// Generates the Quorum Certificate for this cluster /// If the cluster is not complete, this returns `nil` - pub fun generateQuorumCertificate(): ClusterQC? { + access(all) fun generateQuorumCertificate(): ClusterQC? { // Only generate the QC if the voting is complete for this cluster if let quorumMessage = self.isComplete() { @@ -189,22 +189,22 @@ pub contract FlowClusterQC { /// `Vote` represents a vote from one collection node. /// It simply contains strings with the signed message /// the hex encoded message itself. Votes are aggregated to build quorum certificates - pub struct Vote { + access(all) struct Vote { /// The node ID from the staking contract - pub var nodeID: String + access(all) var nodeID: String /// The signed message from the node (using the nodes `stakingKey`) - pub(set) var signature: String? + access(all)var signature: String? /// The hex-encoded message for the vote - pub(set) var message: String? + access(all)var message: String? /// The index of the cluster that this vote (and node) is in - pub let clusterIndex: UInt16 + access(all) let clusterIndex: UInt16 /// The weight of the vote (and node) - pub let weight: UInt64 + access(all) let weight: UInt64 init(nodeID: String, clusterIndex: UInt16, voteWeight: UInt64) { pre { @@ -220,19 +220,19 @@ pub contract FlowClusterQC { /// Represents the quorum certificate for a specific cluster /// and all the nodes/votes in the cluster - pub struct ClusterQC { + access(all) struct ClusterQC { /// The index of the qc in the cluster record - pub let index: UInt16 + access(all) let index: UInt16 /// The vote signatures from all the nodes in the cluster - pub var voteSignatures: [String] + access(all) var voteSignatures: [String] /// The vote message from all the valid voters in the cluster - pub var voteMessage: String + access(all) var voteMessage: String /// The node IDs that correspond to each vote - pub var voterIDs: [String] + access(all) var voterIDs: [String] init(index: UInt16, signatures: [String], message: String, voterIDs: [String]) { self.index = index @@ -241,11 +241,11 @@ pub contract FlowClusterQC { self.voterIDs = voterIDs } - pub fun addSignature(_ signature: String) { + access(all) fun addSignature(_ signature: String) { self.voteSignatures.append(signature) } - pub fun addVoterID(_ voterID: String) { + access(all) fun addVoterID(_ voterID: String) { self.voterIDs.append(voterID) } } @@ -253,13 +253,13 @@ pub contract FlowClusterQC { /// The Voter resource is generated for each collection node after they register. /// Each resource instance is good for all future potential epochs, but will /// only be valid if the node operator has been confirmed as a collector node for the next epoch. - pub resource Voter { + access(all) resource Voter { /// The nodeID of the voter (from the staking contract) - pub let nodeID: String + access(all) let nodeID: String /// The staking key of the node (from the staking contract) - pub var stakingKey: String + access(all) var stakingKey: String init(nodeID: String, stakingKey: String) { pre { @@ -281,7 +281,7 @@ pub contract FlowClusterQC { /// Params: voteSignature: Signed `voteMessage` with the nodes `stakingKey` /// voteMessage: Hex-encoded message /// - pub fun vote(voteSignature: String, voteMessage: String) { + access(all) fun vote(voteSignature: String, voteMessage: String) { pre { FlowClusterQC.inProgress: "Voting phase is not in progress" voteSignature.length > 0: "Vote signature must not be empty" @@ -336,21 +336,21 @@ pub contract FlowClusterQC { /// Interface that only contains operations that are part /// of the regular automated functioning of the epoch process /// These are accessed by the `FlowEpoch` contract through a capability - pub resource interface EpochOperations { - pub fun createVoter(nodeID: String, stakingKey: String): @Voter - pub fun startVoting(clusters: [Cluster]) - pub fun stopVoting() - pub fun forceStopVoting() + access(all) resource interface EpochOperations { + access(all) fun createVoter(nodeID: String, stakingKey: String): @Voter + access(all) fun startVoting(clusters: [Cluster]) + access(all) fun stopVoting() + access(all) fun forceStopVoting() } /// The Admin resource provides the ability to create to Voter resource objects, /// begin voting, and end voting for an epoch - pub resource Admin: EpochOperations { + access(all) resource Admin: EpochOperations { /// Creates a new Voter resource for a collection node /// This function will be publicly accessible in the FlowEpoch /// contract, which will restrict the creation to only collector nodes - pub fun createVoter(nodeID: String, stakingKey: String): @Voter { + access(all) fun createVoter(nodeID: String, stakingKey: String): @Voter { return <-create Voter(nodeID: nodeID, stakingKey: stakingKey) } @@ -360,7 +360,7 @@ pub contract FlowClusterQC { /// transitioning to the Epoch Setup Phase. /// /// CAUTION: calling this erases the votes for the current/previous epoch. - pub fun startVoting(clusters: [Cluster]) { + access(all) fun startVoting(clusters: [Cluster]) { FlowClusterQC.inProgress = true FlowClusterQC.clusters = clusters @@ -380,7 +380,7 @@ pub contract FlowClusterQC { /// Stops voting for the current epoch. Can only be called once a 2/3 /// majority of each cluster has submitted a vote. - pub fun stopVoting() { + access(all) fun stopVoting() { pre { FlowClusterQC.votingCompleted(): "Voting must be complete before it can be stopped" } @@ -389,25 +389,25 @@ pub contract FlowClusterQC { /// Force a stop of the voting period /// Should only be used if the protocol halts and needs to be reset - pub fun forceStopVoting() { + access(all) fun forceStopVoting() { FlowClusterQC.inProgress = false } } /// Returns a boolean telling if the voter is registered for the current voting phase - pub view fun voterIsRegistered(_ nodeID: String): Bool { + access(all) view fun voterIsRegistered(_ nodeID: String): Bool { return FlowClusterQC.nodeCluster[nodeID] != nil } /// Returns a boolean telling if the node has claimed their `Voter` resource object /// The object can only be claimed once, but if the node destroys their `Voter` object, /// It could be claimed again - pub view fun voterIsClaimed(_ nodeID: String): Bool { + access(all) view fun voterIsClaimed(_ nodeID: String): Bool { return FlowClusterQC.voterClaimed[nodeID] != nil } /// Returns whether this voter has successfully submitted a vote for this epoch. - pub view fun nodeHasVoted(_ nodeID: String): Bool { + access(all) view fun nodeHasVoted(_ nodeID: String): Bool { // Get the cluster that this node belongs to if let clusterIndex = FlowClusterQC.nodeCluster[nodeID] { @@ -424,12 +424,12 @@ pub contract FlowClusterQC { } /// Gets all of the collector clusters for the current epoch - pub view fun getClusters(): [Cluster] { + access(all) view fun getClusters(): [Cluster] { return self.clusters } /// Returns true if we have collected enough votes for all clusters. - pub view fun votingCompleted(): Bool { + access(all) view fun votingCompleted(): Bool { for cluster in FlowClusterQC.clusters { if cluster.isComplete() == nil { return false diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 73066e1b8..8ad401028 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -40,26 +40,26 @@ import FlowFees from 0xFLOWFEESADDRESS // indicates that the participants in the next epoch failed to complete the set up // procedure, which is a critical failure and will cause the chain to halt. -pub contract FlowEpoch { +access(all) contract FlowEpoch { - pub enum EpochPhase: UInt8 { - pub case STAKINGAUCTION - pub case EPOCHSETUP - pub case EPOCHCOMMIT + access(all) enum EpochPhase: UInt8 { + access(all) case STAKINGAUCTION + access(all) case EPOCHSETUP + access(all) case EPOCHCOMMIT } - pub enum NodeRole: UInt8 { - pub case NONE - pub case Collector - pub case Consensus - pub case Execution - pub case Verification - pub case Access + access(all) enum NodeRole: UInt8 { + access(all) case NONE + access(all) case Collector + access(all) case Consensus + access(all) case Execution + access(all) case Verification + access(all) case Access } /// The Epoch Setup service event is emitted when we transition to the Epoch Setup /// phase. It contains the finalized identity table for the upcoming epoch. - pub event EpochSetup( + access(all) event EpochSetup( /// The counter for the upcoming epoch. Must be one greater than the /// counter for the current epoch. @@ -98,7 +98,7 @@ pub contract FlowEpoch { /// The EpochCommit service event is emitted when we transition from the Epoch /// Committed phase. It is emitted only when all preparation for the upcoming epoch /// has been completed - pub event EpochCommit( + access(all) event EpochCommit( /// The counter for the upcoming epoch. Must be equal to the counter in the /// previous EpochSetup event. @@ -117,43 +117,43 @@ pub contract FlowEpoch { /// Contains specific metadata about a particular epoch /// All historical epoch metadata is stored permanently - pub struct EpochMetadata { + access(all) struct EpochMetadata { /// The identifier for the epoch - pub let counter: UInt64 + access(all) let counter: UInt64 /// The seed used for generating the epoch setup - pub let seed: String + access(all) let seed: String /// The first view of this epoch - pub let startView: UInt64 + access(all) let startView: UInt64 /// The last view of this epoch - pub let endView: UInt64 + access(all) let endView: UInt64 /// The last view of the staking auction - pub let stakingEndView: UInt64 + access(all) let stakingEndView: UInt64 /// The total rewards that are paid out for the epoch - pub var totalRewards: UFix64 + access(all) var totalRewards: UFix64 /// The reward amounts that are paid to each individual node and its delegators - pub var rewardAmounts: [FlowIDTableStaking.RewardsBreakdown] + access(all) var rewardAmounts: [FlowIDTableStaking.RewardsBreakdown] /// Tracks if rewards have been paid for this epoch - pub var rewardsPaid: Bool + access(all) var rewardsPaid: Bool /// The organization of collector node IDs into clusters /// determined by a round robin sorting algorithm - pub let collectorClusters: [FlowClusterQC.Cluster] + access(all) let collectorClusters: [FlowClusterQC.Cluster] /// The Quorum Certificates from the ClusterQC contract - pub var clusterQCs: [FlowClusterQC.ClusterQC] + access(all) var clusterQCs: [FlowClusterQC.ClusterQC] /// The public keys associated with the Distributed Key Generation /// process that consensus nodes participate in /// Group key is the last element at index: length - 1 - pub var dkgKeys: [String] + access(all) var dkgKeys: [String] init(counter: UInt64, seed: String, @@ -200,22 +200,22 @@ pub contract FlowEpoch { } /// Metadata that is managed and can be changed by the Admin/// - pub struct Config { + access(all) struct Config { /// The number of views in an entire epoch - pub(set) var numViewsInEpoch: UInt64 + access(all)var numViewsInEpoch: UInt64 /// The number of views in the staking auction - pub(set) var numViewsInStakingAuction: UInt64 + access(all)var numViewsInStakingAuction: UInt64 /// The number of views in each dkg phase - pub(set) var numViewsInDKGPhase: UInt64 + access(all)var numViewsInDKGPhase: UInt64 /// The number of collector clusters in each epoch - pub(set) var numCollectorClusters: UInt16 + access(all)var numCollectorClusters: UInt16 /// Tracks the rate at which the rewards payout increases every epoch /// This value is multiplied by the FLOW total supply to get the next payout - pub(set) var FLOWsupplyIncreasePercentage: UFix64 + access(all)var FLOWsupplyIncreasePercentage: UFix64 init(numViewsInEpoch: UInt64, numViewsInStakingAuction: UInt64, numViewsInDKGPhase: UInt64, numCollectorClusters: UInt16, FLOWsupplyIncreasePercentage: UFix64) { self.numViewsInEpoch = numViewsInEpoch @@ -239,7 +239,7 @@ pub contract FlowEpoch { /// or nil if it isn't found /// Epoch Metadata is stored in account storage so the growing dictionary /// does not have to be loaded every time the contract is loaded - pub fun getEpochMetadata(_ epochCounter: UInt64): EpochMetadata? { + access(all) fun getEpochMetadata(_ epochCounter: UInt64): EpochMetadata? { if let metadataDictionary = self.account.borrow<&{UInt64: EpochMetadata}>(from: self.metadataStoragePath) { return metadataDictionary[epochCounter] } @@ -267,23 +267,23 @@ pub contract FlowEpoch { } /// The counter, or ID, of the current epoch - pub var currentEpochCounter: UInt64 + access(all) var currentEpochCounter: UInt64 /// The current phase that the epoch is in - pub var currentEpochPhase: EpochPhase + access(all) var currentEpochPhase: EpochPhase /// Path where the `FlowEpoch.Admin` resource is stored - pub let adminStoragePath: StoragePath + access(all) let adminStoragePath: StoragePath /// Path where the `FlowEpoch.Heartbeat` resource is stored - pub let heartbeatStoragePath: StoragePath + access(all) let heartbeatStoragePath: StoragePath /// Path where the `{UInt64: EpochMetadata}` dictionary is stored - pub let metadataStoragePath: StoragePath + access(all) let metadataStoragePath: StoragePath /// Resource that can update some of the contract fields - pub resource Admin { - pub fun updateEpochViews(_ newEpochViews: UInt64) { + access(all) resource Admin { + access(all) fun updateEpochViews(_ newEpochViews: UInt64) { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only update fields during the staking auction" FlowEpoch.isValidPhaseConfiguration(FlowEpoch.configurableMetadata.numViewsInStakingAuction, @@ -294,7 +294,7 @@ pub contract FlowEpoch { FlowEpoch.configurableMetadata.numViewsInEpoch = newEpochViews } - pub fun updateAuctionViews(_ newAuctionViews: UInt64) { + access(all) fun updateAuctionViews(_ newAuctionViews: UInt64) { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only update fields during the staking auction" FlowEpoch.isValidPhaseConfiguration(newAuctionViews, @@ -305,7 +305,7 @@ pub contract FlowEpoch { FlowEpoch.configurableMetadata.numViewsInStakingAuction = newAuctionViews } - pub fun updateDKGPhaseViews(_ newPhaseViews: UInt64) { + access(all) fun updateDKGPhaseViews(_ newPhaseViews: UInt64) { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only update fields during the staking auction" FlowEpoch.isValidPhaseConfiguration(FlowEpoch.configurableMetadata.numViewsInStakingAuction, @@ -316,7 +316,7 @@ pub contract FlowEpoch { FlowEpoch.configurableMetadata.numViewsInDKGPhase = newPhaseViews } - pub fun updateNumCollectorClusters(_ newNumClusters: UInt16) { + access(all) fun updateNumCollectorClusters(_ newNumClusters: UInt16) { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only update fields during the staking auction" } @@ -324,7 +324,7 @@ pub contract FlowEpoch { FlowEpoch.configurableMetadata.numCollectorClusters = newNumClusters } - pub fun updateFLOWSupplyIncreasePercentage(_ newPercentage: UFix64) { + access(all) fun updateFLOWSupplyIncreasePercentage(_ newPercentage: UFix64) { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only update fields during the staking auction" newPercentage <= 1.0 as UFix64: "New value must be between zero and one" @@ -334,7 +334,7 @@ pub contract FlowEpoch { } // Enable or disable automatic rewards calculations and payments - pub fun updateAutomaticRewardsEnabled(_ enabled: Bool) { + access(all) fun updateAutomaticRewardsEnabled(_ enabled: Bool) { FlowEpoch.account.load(from: /storage/flowAutomaticRewardsEnabled) FlowEpoch.account.save(enabled, to: /storage/flowAutomaticRewardsEnabled) } @@ -344,7 +344,7 @@ pub contract FlowEpoch { /// This function is used during sporks - since the consensus view is reset, and the protocol is /// bootstrapped with a new initial state snapshot, this initializes FlowEpoch with the first epoch /// of the new spork, as defined in that snapshot. - pub fun resetEpoch( + access(all) fun resetEpoch( currentEpochCounter: UInt64, randomSource: String, startView: UInt64, @@ -399,11 +399,11 @@ pub contract FlowEpoch { /// Resource that is controlled by the protocol and is used /// to change the current phase of the epoch or reset the epoch if needed /// - pub resource Heartbeat { + access(all) resource Heartbeat { /// Function that is called every block to advance the epoch /// and change phase if the required conditions have been met - pub fun advanceBlock() { + access(all) fun advanceBlock() { switch FlowEpoch.currentEpochPhase { case EpochPhase.STAKINGAUCTION: @@ -436,7 +436,7 @@ pub contract FlowEpoch { /// Calls `FlowEpoch` functions to end the staking auction phase /// and start the Epoch Setup phase - pub fun endStakingAuction() { + access(all) fun endStakingAuction() { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only end staking auction during the staking auction" } @@ -448,7 +448,7 @@ pub contract FlowEpoch { /// Calls `FlowEpoch` functions to end the Epoch Setup phase /// and start the Epoch Setup Phase - pub fun startEpochCommit() { + access(all) fun startEpochCommit() { pre { FlowEpoch.currentEpochPhase == EpochPhase.EPOCHSETUP: "Can only end Epoch Setup during Epoch Setup" } @@ -458,7 +458,7 @@ pub contract FlowEpoch { /// Calls `FlowEpoch` functions to end the Epoch Commit phase /// and start the Staking Auction phase of a new epoch - pub fun endEpoch() { + access(all) fun endEpoch() { pre { FlowEpoch.currentEpochPhase == EpochPhase.EPOCHCOMMIT: "Can only end epoch during Epoch Commit" } @@ -468,11 +468,11 @@ pub contract FlowEpoch { /// Needs to be called before the epoch is over /// Calculates rewards for the current epoch and stores them in epoch metadata - pub fun calculateAndSetRewards() { + access(all) fun calculateAndSetRewards() { FlowEpoch.calculateAndSetRewards() } - pub fun payRewardsForPreviousEpoch() { + access(all) fun payRewardsForPreviousEpoch() { FlowEpoch.payRewardsForPreviousEpoch() } } @@ -712,13 +712,17 @@ pub contract FlowEpoch { /// Makes sure the set of phase lengths (in views) are valid. /// Sub-phases cannot be greater than the full epoch length. +<<<<<<< HEAD pub view fun isValidPhaseConfiguration(_ auctionLen: UInt64, _ dkgPhaseLen: UInt64, _ epochLen: UInt64): Bool { +======= + access(all) view fun isValidPhaseConfiguration(_ auctionLen: UInt64, _ dkgPhaseLen: UInt64, _ epochLen: UInt64): Bool { +>>>>>>> origin/merge-stable-cadence return (auctionLen + ((3 as UInt64)*dkgPhaseLen)) < epochLen } /// Randomizes the list of collector node ID and uses a round robin algorithm /// to assign all collector nodes to equal sized clusters - pub fun createCollectorClusters(nodeIDs: [String]): [FlowClusterQC.Cluster] { + access(all) fun createCollectorClusters(nodeIDs: [String]): [FlowClusterQC.Cluster] { pre { UInt16(nodeIDs.length) >= self.configurableMetadata.numCollectorClusters: "Cannot have less collector nodes than clusters" } @@ -760,7 +764,7 @@ pub contract FlowEpoch { /// A function to generate a random permutation of arr[] /// using the fisher yates shuffling algorithm - pub fun randomize(_ array: [String]): [String] { + access(all) fun randomize(_ array: [String]): [String] { var i = array.length - 1 @@ -785,7 +789,7 @@ pub contract FlowEpoch { /// Collector nodes call this function to get their QC Voter resource /// in order to participate the the QC generation for their cluster - pub fun getClusterQCVoter(nodeStaker: &FlowIDTableStaking.NodeStaker): @FlowClusterQC.Voter { + access(all) fun getClusterQCVoter(nodeStaker: &FlowIDTableStaking.NodeStaker): @FlowClusterQC.Voter { let nodeInfo = FlowIDTableStaking.NodeInfo(nodeID: nodeStaker.id) assert ( @@ -799,7 +803,7 @@ pub contract FlowEpoch { /// Consensus nodes call this function to get their DKG Participant resource /// in order to participate in the DKG for the next epoch - pub fun getDKGParticipant(nodeStaker: &FlowIDTableStaking.NodeStaker): @FlowDKG.Participant { + access(all) fun getDKGParticipant(nodeStaker: &FlowIDTableStaking.NodeStaker): @FlowDKG.Participant { let nodeInfo = FlowIDTableStaking.NodeInfo(nodeID: nodeStaker.id) assert ( @@ -812,16 +816,28 @@ pub contract FlowEpoch { } /// Returns the metadata that is able to be configured by the admin +<<<<<<< HEAD pub view fun getConfigMetadata(): Config { +======= + access(all) view fun getConfigMetadata(): Config { +>>>>>>> origin/merge-stable-cadence return self.configurableMetadata } /// The proposed Epoch counter is always the current counter plus 1 +<<<<<<< HEAD pub view fun proposedEpochCounter(): UInt64 { return self.currentEpochCounter + 1 as UInt64 } pub view fun automaticRewardsEnabled(): Bool { +======= + access(all) view fun proposedEpochCounter(): UInt64 { + return self.currentEpochCounter + 1 as UInt64 + } + + access(all) view fun automaticRewardsEnabled(): Bool { +>>>>>>> origin/merge-stable-cadence return self.account.copy(from: /storage/flowAutomaticRewardsEnabled) ?? false } @@ -832,7 +848,7 @@ pub contract FlowEpoch { /// so they are not included in that calculation /// Eventually, all the bonus tokens will be destroyed and /// this will not be needed anymore - pub fun getBonusTokens(): UFix64 { + access(all) fun getBonusTokens(): UFix64 { return self.account.copy(from: /storage/FlowBonusTokenAmount) ?? 0.0 } diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 8e83a6de7..bfac28926 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -3,73 +3,40 @@ module github.com/onflow/flow-core-contracts/lib/go/contracts go 1.18 require ( - github.com/kevinburke/go-bindata v3.24.0+incompatible - github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9 - github.com/onflow/flow-ft/lib/go/contracts v1.0.0 - github.com/onflow/flow-nft/lib/go/contracts v1.2.1 - github.com/stretchr/testify v1.8.4 + github.com/kevinburke/go-bindata v3.23.0+incompatible + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230711213910-baad011d2b13 + github.com/onflow/flow-go-sdk v0.41.6 + github.com/onflow/flow-nft/lib/go/contracts v1.1.0 + github.com/stretchr/testify v1.8.2 ) require ( - github.com/SaveTheRbtz/mph v0.1.1-0.20240117162131-4166ec7869bc // indirect - github.com/bits-and-blooms/bitset v1.7.0 // indirect + github.com/bits-and-blooms/bitset v1.5.0 // indirect github.com/btcsuite/btcd/btcec/v2 v2.2.1 // indirect github.com/davecgh/go-spew v1.1.1 // indirect - github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect - github.com/ethereum/go-ethereum v1.13.5 // indirect - github.com/fsnotify/fsnotify v1.6.0 // indirect + github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect + github.com/ethereum/go-ethereum v1.9.13 // indirect github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c // indirect github.com/fxamacker/circlehash v0.3.0 // indirect - github.com/hashicorp/hcl v1.0.0 // indirect - github.com/holiman/uint256 v1.2.3 // indirect - github.com/inconshreveable/mousetrap v1.0.0 // indirect - github.com/k0kubun/pp v3.0.1+incompatible // indirect - github.com/klauspost/cpuid/v2 v2.2.5 // indirect - github.com/kr/pretty v0.3.1 // indirect - github.com/kr/text v0.2.0 // indirect + github.com/go-test/deep v1.1.0 // indirect + github.com/klauspost/cpuid/v2 v2.2.4 // indirect github.com/logrusorgru/aurora/v4 v4.0.0 // indirect - github.com/magiconair/properties v1.8.0 // indirect - github.com/mattn/go-colorable v0.1.13 // indirect - github.com/mattn/go-isatty v0.0.19 // indirect - github.com/mitchellh/mapstructure v1.4.1 // indirect - github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f // indirect - github.com/onflow/cadence v1.0.0-M3 // indirect - github.com/onflow/crypto v0.25.0 // indirect - github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876 // indirect - github.com/onflow/flow-go-sdk v1.0.0-M1 // indirect - github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8 // indirect - github.com/pelletier/go-toml v1.2.0 // indirect + github.com/onflow/atree v0.6.0 // indirect + github.com/onflow/cadence v0.39.12 // indirect + github.com/onflow/flow-go/crypto v0.24.7 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect - github.com/psiemens/sconfig v0.1.0 // indirect github.com/rivo/uniseg v0.4.4 // indirect - github.com/rogpeppe/go-internal v1.9.0 // indirect - github.com/spf13/afero v1.9.2 // indirect - github.com/spf13/cast v1.3.0 // indirect - github.com/spf13/cobra v1.5.0 // indirect - github.com/spf13/jwalterweatherman v1.0.0 // indirect - github.com/spf13/pflag v1.0.5 // indirect - github.com/spf13/viper v1.4.0 // indirect github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c // indirect github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d // indirect github.com/x448/float16 v0.8.4 // indirect github.com/zeebo/blake3 v0.2.3 // indirect - go.opentelemetry.io/otel v1.16.0 // indirect - golang.org/x/crypto v0.17.0 // indirect - golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc // indirect - golang.org/x/sys v0.15.0 // indirect - golang.org/x/text v0.14.0 // indirect + go.opentelemetry.io/otel v1.14.0 // indirect + golang.org/x/crypto v0.7.0 // indirect + golang.org/x/sys v0.6.0 // indirect + golang.org/x/text v0.8.0 // indirect golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect - gonum.org/v1/gonum v0.13.0 // indirect - gopkg.in/yaml.v2 v2.4.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) -// This retraction block retracts version v1.2.3, which was tagged out-of-order. -// Currently go considers v1.2.3 to be the latest version, due to semver ordering, -// despite it being several months old and many revisions behind the tip. -// This retract block is based on https://go.dev/ref/mod#go-mod-file-retract. -retract ( - v1.2.4 // contains retraction only - v1.2.3 // accidentally published with out-of-order tag -) +replace github.com/onflow/flow-ft/lib/go/contracts => ../../../../../flow-ft/lib/go/contracts diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 22231dafb..445cd564e 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1,15 +1,11 @@ -cloud.google.com/go v0.0.0-20170206221025-ce650573d812/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= -cloud.google.com/go v0.43.0/go.mod h1:BOSR3VbTLkk6FDC/TcffxP4NF/FFBGA5ku+jvKOP7pg= cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= -cloud.google.com/go v0.44.3/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= -cloud.google.com/go v0.51.0/go.mod h1:hWtGJ6gnXH+KgDv+V0zFGDvpi07n3z8ZNj3T1RW0Gcw= cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4= cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M= cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc= @@ -19,7 +15,6 @@ cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOY cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY= cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= -cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPTY= cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg= cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8= cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0= @@ -30,1121 +25,99 @@ cloud.google.com/go v0.90.0/go.mod h1:kRX0mNRHe0e2rC6oNakvwQqzyDmg57xJ+SZU1eT2aD cloud.google.com/go v0.93.3/go.mod h1:8utlLll2EF5XMAV15woO4lSbWQlk8rer9aLOfLh7+YI= cloud.google.com/go v0.94.1/go.mod h1:qAlAugsXlC+JWO+Bke5vCtc9ONxjQT3drlTTnAplMW4= cloud.google.com/go v0.97.0/go.mod h1:GF7l59pYBVlXQIBLx3a761cZ41F9bBH3JUlihCt2Udc= -cloud.google.com/go v0.99.0/go.mod h1:w0Xx2nLzqWJPuozYQX+hFfCSI8WioryfRDzkoI/Y2ZA= -cloud.google.com/go v0.100.1/go.mod h1:fs4QogzfH5n2pBXBP9vRiU+eCny7lD2vmFZy79Iuw1U= -cloud.google.com/go v0.100.2/go.mod h1:4Xra9TjzAeYHrl5+oeLlzbM2k3mjVhZh4UqTZ//w99A= -cloud.google.com/go v0.102.0/go.mod h1:oWcCzKlqJ5zgHQt9YsaeTY9KzIvjyy0ArmiBUgpQ+nc= -cloud.google.com/go v0.102.1/go.mod h1:XZ77E9qnTEnrgEOvr4xzfdX5TRo7fB4T2F4O6+34hIU= -cloud.google.com/go v0.104.0/go.mod h1:OO6xxXdJyvuJPcEPBLN9BJPD+jep5G1+2U5B5gkRYtA= -cloud.google.com/go v0.105.0/go.mod h1:PrLgOJNe5nfE9UMxKxgXj4mD3voiP+YQ6gdt6KMFOKM= -cloud.google.com/go v0.107.0/go.mod h1:wpc2eNrD7hXUTy8EKS10jkxpZBjASrORK7goS+3YX2I= -cloud.google.com/go v0.110.0/go.mod h1:SJnCLqQ0FCFGSZMUNUf84MV3Aia54kn7pi8st7tMzaY= -cloud.google.com/go v0.110.2/go.mod h1:k04UEeEtb6ZBRTv3dZz4CeJC3jKGxyhl0sAiVVquxiw= -cloud.google.com/go v0.110.4/go.mod h1:+EYjdK8e5RME/VY/qLCAtuyALQ9q67dvuum8i+H5xsI= -cloud.google.com/go v0.110.6/go.mod h1:+EYjdK8e5RME/VY/qLCAtuyALQ9q67dvuum8i+H5xsI= -cloud.google.com/go v0.110.7/go.mod h1:+EYjdK8e5RME/VY/qLCAtuyALQ9q67dvuum8i+H5xsI= -cloud.google.com/go v0.110.8/go.mod h1:Iz8AkXJf1qmxC3Oxoep8R1T36w8B92yU29PcBhHO5fk= -cloud.google.com/go/accessapproval v1.4.0/go.mod h1:zybIuC3KpDOvotz59lFe5qxRZx6C75OtwbisN56xYB4= -cloud.google.com/go/accessapproval v1.5.0/go.mod h1:HFy3tuiGvMdcd/u+Cu5b9NkO1pEICJ46IR82PoUdplw= -cloud.google.com/go/accessapproval v1.6.0/go.mod h1:R0EiYnwV5fsRFiKZkPHr6mwyk2wxUJ30nL4j2pcFY2E= -cloud.google.com/go/accessapproval v1.7.1/go.mod h1:JYczztsHRMK7NTXb6Xw+dwbs/WnOJxbo/2mTI+Kgg68= -cloud.google.com/go/accessapproval v1.7.2/go.mod h1:/gShiq9/kK/h8T/eEn1BTzalDvk0mZxJlhfw0p+Xuc0= -cloud.google.com/go/accesscontextmanager v1.3.0/go.mod h1:TgCBehyr5gNMz7ZaH9xubp+CE8dkrszb4oK9CWyvD4o= -cloud.google.com/go/accesscontextmanager v1.4.0/go.mod h1:/Kjh7BBu/Gh83sv+K60vN9QE5NJcd80sU33vIe2IFPE= -cloud.google.com/go/accesscontextmanager v1.6.0/go.mod h1:8XCvZWfYw3K/ji0iVnp+6pu7huxoQTLmxAbVjbloTtM= -cloud.google.com/go/accesscontextmanager v1.7.0/go.mod h1:CEGLewx8dwa33aDAZQujl7Dx+uYhS0eay198wB/VumQ= -cloud.google.com/go/accesscontextmanager v1.8.0/go.mod h1:uI+AI/r1oyWK99NN8cQ3UK76AMelMzgZCvJfsi2c+ps= -cloud.google.com/go/accesscontextmanager v1.8.1/go.mod h1:JFJHfvuaTC+++1iL1coPiG1eu5D24db2wXCDWDjIrxo= -cloud.google.com/go/accesscontextmanager v1.8.2/go.mod h1:E6/SCRM30elQJ2PKtFMs2YhfJpZSNcJyejhuzoId4Zk= -cloud.google.com/go/aiplatform v1.22.0/go.mod h1:ig5Nct50bZlzV6NvKaTwmplLLddFx0YReh9WfTO5jKw= -cloud.google.com/go/aiplatform v1.24.0/go.mod h1:67UUvRBKG6GTayHKV8DBv2RtR1t93YRu5B1P3x99mYY= -cloud.google.com/go/aiplatform v1.27.0/go.mod h1:Bvxqtl40l0WImSb04d0hXFU7gDOiq9jQmorivIiWcKg= -cloud.google.com/go/aiplatform v1.35.0/go.mod h1:7MFT/vCaOyZT/4IIFfxH4ErVg/4ku6lKv3w0+tFTgXQ= -cloud.google.com/go/aiplatform v1.36.1/go.mod h1:WTm12vJRPARNvJ+v6P52RDHCNe4AhvjcIZ/9/RRHy/k= -cloud.google.com/go/aiplatform v1.37.0/go.mod h1:IU2Cv29Lv9oCn/9LkFiiuKfwrRTq+QQMbW+hPCxJGZw= -cloud.google.com/go/aiplatform v1.45.0/go.mod h1:Iu2Q7sC7QGhXUeOhAj/oCK9a+ULz1O4AotZiqjQ8MYA= -cloud.google.com/go/aiplatform v1.48.0/go.mod h1:Iu2Q7sC7QGhXUeOhAj/oCK9a+ULz1O4AotZiqjQ8MYA= -cloud.google.com/go/aiplatform v1.50.0/go.mod h1:IRc2b8XAMTa9ZmfJV1BCCQbieWWvDnP1A8znyz5N7y4= -cloud.google.com/go/aiplatform v1.51.0/go.mod h1:IRc2b8XAMTa9ZmfJV1BCCQbieWWvDnP1A8znyz5N7y4= -cloud.google.com/go/aiplatform v1.51.1/go.mod h1:kY3nIMAVQOK2XDqDPHaOuD9e+FdMA6OOpfBjsvaFSOo= -cloud.google.com/go/analytics v0.11.0/go.mod h1:DjEWCu41bVbYcKyvlws9Er60YE4a//bK6mnhWvQeFNI= -cloud.google.com/go/analytics v0.12.0/go.mod h1:gkfj9h6XRf9+TS4bmuhPEShsh3hH8PAZzm/41OOhQd4= -cloud.google.com/go/analytics v0.17.0/go.mod h1:WXFa3WSym4IZ+JiKmavYdJwGG/CvpqiqczmL59bTD9M= -cloud.google.com/go/analytics v0.18.0/go.mod h1:ZkeHGQlcIPkw0R/GW+boWHhCOR43xz9RN/jn7WcqfIE= -cloud.google.com/go/analytics v0.19.0/go.mod h1:k8liqf5/HCnOUkbawNtrWWc+UAzyDlW89doe8TtoDsE= -cloud.google.com/go/analytics v0.21.2/go.mod h1:U8dcUtmDmjrmUTnnnRnI4m6zKn/yaA5N9RlEkYFHpQo= -cloud.google.com/go/analytics v0.21.3/go.mod h1:U8dcUtmDmjrmUTnnnRnI4m6zKn/yaA5N9RlEkYFHpQo= -cloud.google.com/go/analytics v0.21.4/go.mod h1:zZgNCxLCy8b2rKKVfC1YkC2vTrpfZmeRCySM3aUbskA= -cloud.google.com/go/apigateway v1.3.0/go.mod h1:89Z8Bhpmxu6AmUxuVRg/ECRGReEdiP3vQtk4Z1J9rJk= -cloud.google.com/go/apigateway v1.4.0/go.mod h1:pHVY9MKGaH9PQ3pJ4YLzoj6U5FUDeDFBllIz7WmzJoc= -cloud.google.com/go/apigateway v1.5.0/go.mod h1:GpnZR3Q4rR7LVu5951qfXPJCHquZt02jf7xQx7kpqN8= -cloud.google.com/go/apigateway v1.6.1/go.mod h1:ufAS3wpbRjqfZrzpvLC2oh0MFlpRJm2E/ts25yyqmXA= -cloud.google.com/go/apigateway v1.6.2/go.mod h1:CwMC90nnZElorCW63P2pAYm25AtQrHfuOkbRSHj0bT8= -cloud.google.com/go/apigeeconnect v1.3.0/go.mod h1:G/AwXFAKo0gIXkPTVfZDd2qA1TxBXJ3MgMRBQkIi9jc= -cloud.google.com/go/apigeeconnect v1.4.0/go.mod h1:kV4NwOKqjvt2JYR0AoIWo2QGfoRtn/pkS3QlHp0Ni04= -cloud.google.com/go/apigeeconnect v1.5.0/go.mod h1:KFaCqvBRU6idyhSNyn3vlHXc8VMDJdRmwDF6JyFRqZ8= -cloud.google.com/go/apigeeconnect v1.6.1/go.mod h1:C4awq7x0JpLtrlQCr8AzVIzAaYgngRqWf9S5Uhg+wWs= -cloud.google.com/go/apigeeconnect v1.6.2/go.mod h1:s6O0CgXT9RgAxlq3DLXvG8riw8PYYbU/v25jqP3Dy18= -cloud.google.com/go/apigeeregistry v0.4.0/go.mod h1:EUG4PGcsZvxOXAdyEghIdXwAEi/4MEaoqLMLDMIwKXY= -cloud.google.com/go/apigeeregistry v0.5.0/go.mod h1:YR5+s0BVNZfVOUkMa5pAR2xGd0A473vA5M7j247o1wM= -cloud.google.com/go/apigeeregistry v0.6.0/go.mod h1:BFNzW7yQVLZ3yj0TKcwzb8n25CFBri51GVGOEUcgQsc= -cloud.google.com/go/apigeeregistry v0.7.1/go.mod h1:1XgyjZye4Mqtw7T9TsY4NW10U7BojBvG4RMD+vRDrIw= -cloud.google.com/go/apigeeregistry v0.7.2/go.mod h1:9CA2B2+TGsPKtfi3F7/1ncCCsL62NXBRfM6iPoGSM+8= -cloud.google.com/go/apikeys v0.4.0/go.mod h1:XATS/yqZbaBK0HOssf+ALHp8jAlNHUgyfprvNcBIszU= -cloud.google.com/go/apikeys v0.5.0/go.mod h1:5aQfwY4D+ewMMWScd3hm2en3hCj+BROlyrt3ytS7KLI= -cloud.google.com/go/apikeys v0.6.0/go.mod h1:kbpXu5upyiAlGkKrJgQl8A0rKNNJ7dQ377pdroRSSi8= -cloud.google.com/go/appengine v1.4.0/go.mod h1:CS2NhuBuDXM9f+qscZ6V86m1MIIqPj3WC/UoEuR1Sno= -cloud.google.com/go/appengine v1.5.0/go.mod h1:TfasSozdkFI0zeoxW3PTBLiNqRmzraodCWatWI9Dmak= -cloud.google.com/go/appengine v1.6.0/go.mod h1:hg6i0J/BD2cKmDJbaFSYHFyZkgBEfQrDg/X0V5fJn84= -cloud.google.com/go/appengine v1.7.0/go.mod h1:eZqpbHFCqRGa2aCdope7eC0SWLV1j0neb/QnMJVWx6A= -cloud.google.com/go/appengine v1.7.1/go.mod h1:IHLToyb/3fKutRysUlFO0BPt5j7RiQ45nrzEJmKTo6E= -cloud.google.com/go/appengine v1.8.1/go.mod h1:6NJXGLVhZCN9aQ/AEDvmfzKEfoYBlfB80/BHiKVputY= -cloud.google.com/go/appengine v1.8.2/go.mod h1:WMeJV9oZ51pvclqFN2PqHoGnys7rK0rz6s3Mp6yMvDo= -cloud.google.com/go/area120 v0.5.0/go.mod h1:DE/n4mp+iqVyvxHN41Vf1CR602GiHQjFPusMFW6bGR4= -cloud.google.com/go/area120 v0.6.0/go.mod h1:39yFJqWVgm0UZqWTOdqkLhjoC7uFfgXRC8g/ZegeAh0= -cloud.google.com/go/area120 v0.7.0/go.mod h1:a3+8EUD1SX5RUcCs3MY5YasiO1z6yLiNLRiFrykbynY= -cloud.google.com/go/area120 v0.7.1/go.mod h1:j84i4E1RboTWjKtZVWXPqvK5VHQFJRF2c1Nm69pWm9k= -cloud.google.com/go/area120 v0.8.1/go.mod h1:BVfZpGpB7KFVNxPiQBuHkX6Ed0rS51xIgmGyjrAfzsg= -cloud.google.com/go/area120 v0.8.2/go.mod h1:a5qfo+x77SRLXnCynFWPUZhnZGeSgvQ+Y0v1kSItkh4= -cloud.google.com/go/artifactregistry v1.6.0/go.mod h1:IYt0oBPSAGYj/kprzsBjZ/4LnG/zOcHyFHjWPCi6SAQ= -cloud.google.com/go/artifactregistry v1.7.0/go.mod h1:mqTOFOnGZx8EtSqK/ZWcsm/4U8B77rbcLP6ruDU2Ixk= -cloud.google.com/go/artifactregistry v1.8.0/go.mod h1:w3GQXkJX8hiKN0v+at4b0qotwijQbYUqF2GWkZzAhC0= -cloud.google.com/go/artifactregistry v1.9.0/go.mod h1:2K2RqvA2CYvAeARHRkLDhMDJ3OXy26h3XW+3/Jh2uYc= -cloud.google.com/go/artifactregistry v1.11.1/go.mod h1:lLYghw+Itq9SONbCa1YWBoWs1nOucMH0pwXN1rOBZFI= -cloud.google.com/go/artifactregistry v1.11.2/go.mod h1:nLZns771ZGAwVLzTX/7Al6R9ehma4WUEhZGWV6CeQNQ= -cloud.google.com/go/artifactregistry v1.12.0/go.mod h1:o6P3MIvtzTOnmvGagO9v/rOjjA0HmhJ+/6KAXrmYDCI= -cloud.google.com/go/artifactregistry v1.13.0/go.mod h1:uy/LNfoOIivepGhooAUpL1i30Hgee3Cu0l4VTWHUC08= -cloud.google.com/go/artifactregistry v1.14.1/go.mod h1:nxVdG19jTaSTu7yA7+VbWL346r3rIdkZ142BSQqhn5E= -cloud.google.com/go/artifactregistry v1.14.2/go.mod h1:Xk+QbsKEb0ElmyeMfdHAey41B+qBq3q5R5f5xD4XT3U= -cloud.google.com/go/artifactregistry v1.14.3/go.mod h1:A2/E9GXnsyXl7GUvQ/2CjHA+mVRoWAXC0brg2os+kNI= -cloud.google.com/go/asset v1.5.0/go.mod h1:5mfs8UvcM5wHhqtSv8J1CtxxaQq3AdBxxQi2jGW/K4o= -cloud.google.com/go/asset v1.7.0/go.mod h1:YbENsRK4+xTiL+Ofoj5Ckf+O17kJtgp3Y3nn4uzZz5s= -cloud.google.com/go/asset v1.8.0/go.mod h1:mUNGKhiqIdbr8X7KNayoYvyc4HbbFO9URsjbytpUaW0= -cloud.google.com/go/asset v1.9.0/go.mod h1:83MOE6jEJBMqFKadM9NLRcs80Gdw76qGuHn8m3h8oHQ= -cloud.google.com/go/asset v1.10.0/go.mod h1:pLz7uokL80qKhzKr4xXGvBQXnzHn5evJAEAtZiIb0wY= -cloud.google.com/go/asset v1.11.1/go.mod h1:fSwLhbRvC9p9CXQHJ3BgFeQNM4c9x10lqlrdEUYXlJo= -cloud.google.com/go/asset v1.12.0/go.mod h1:h9/sFOa4eDIyKmH6QMpm4eUK3pDojWnUhTgJlk762Hg= -cloud.google.com/go/asset v1.13.0/go.mod h1:WQAMyYek/b7NBpYq/K4KJWcRqzoalEsxz/t/dTk4THw= -cloud.google.com/go/asset v1.14.1/go.mod h1:4bEJ3dnHCqWCDbWJ/6Vn7GVI9LerSi7Rfdi03hd+WTQ= -cloud.google.com/go/asset v1.15.0/go.mod h1:tpKafV6mEut3+vN9ScGvCHXHj7FALFVta+okxFECHcg= -cloud.google.com/go/asset v1.15.1/go.mod h1:yX/amTvFWRpp5rcFq6XbCxzKT8RJUam1UoboE179jU4= -cloud.google.com/go/assuredworkloads v1.5.0/go.mod h1:n8HOZ6pff6re5KYfBXcFvSViQjDwxFkAkmUFffJRbbY= -cloud.google.com/go/assuredworkloads v1.6.0/go.mod h1:yo2YOk37Yc89Rsd5QMVECvjaMKymF9OP+QXWlKXUkXw= -cloud.google.com/go/assuredworkloads v1.7.0/go.mod h1:z/736/oNmtGAyU47reJgGN+KVoYoxeLBoj4XkKYscNI= -cloud.google.com/go/assuredworkloads v1.8.0/go.mod h1:AsX2cqyNCOvEQC8RMPnoc0yEarXQk6WEKkxYfL6kGIo= -cloud.google.com/go/assuredworkloads v1.9.0/go.mod h1:kFuI1P78bplYtT77Tb1hi0FMxM0vVpRC7VVoJC3ZoT0= -cloud.google.com/go/assuredworkloads v1.10.0/go.mod h1:kwdUQuXcedVdsIaKgKTp9t0UJkE5+PAVNhdQm4ZVq2E= -cloud.google.com/go/assuredworkloads v1.11.1/go.mod h1:+F04I52Pgn5nmPG36CWFtxmav6+7Q+c5QyJoL18Lry0= -cloud.google.com/go/assuredworkloads v1.11.2/go.mod h1:O1dfr+oZJMlE6mw0Bp0P1KZSlj5SghMBvTpZqIcUAW4= -cloud.google.com/go/automl v1.5.0/go.mod h1:34EjfoFGMZ5sgJ9EoLsRtdPSNZLcfflJR39VbVNS2M0= -cloud.google.com/go/automl v1.6.0/go.mod h1:ugf8a6Fx+zP0D59WLhqgTDsQI9w07o64uf/Is3Nh5p8= -cloud.google.com/go/automl v1.7.0/go.mod h1:RL9MYCCsJEOmt0Wf3z9uzG0a7adTT1fe+aObgSpkCt8= -cloud.google.com/go/automl v1.8.0/go.mod h1:xWx7G/aPEe/NP+qzYXktoBSDfjO+vnKMGgsApGJJquM= -cloud.google.com/go/automl v1.12.0/go.mod h1:tWDcHDp86aMIuHmyvjuKeeHEGq76lD7ZqfGLN6B0NuU= -cloud.google.com/go/automl v1.13.1/go.mod h1:1aowgAHWYZU27MybSCFiukPO7xnyawv7pt3zK4bheQE= -cloud.google.com/go/automl v1.13.2/go.mod h1:gNY/fUmDEN40sP8amAX3MaXkxcqPIn7F1UIIPZpy4Mg= -cloud.google.com/go/baremetalsolution v0.3.0/go.mod h1:XOrocE+pvK1xFfleEnShBlNAXf+j5blPPxrhjKgnIFc= -cloud.google.com/go/baremetalsolution v0.4.0/go.mod h1:BymplhAadOO/eBa7KewQ0Ppg4A4Wplbn+PsFKRLo0uI= -cloud.google.com/go/baremetalsolution v0.5.0/go.mod h1:dXGxEkmR9BMwxhzBhV0AioD0ULBmuLZI8CdwalUxuss= -cloud.google.com/go/baremetalsolution v1.1.1/go.mod h1:D1AV6xwOksJMV4OSlWHtWuFNZZYujJknMAP4Qa27QIA= -cloud.google.com/go/baremetalsolution v1.2.0/go.mod h1:68wi9AwPYkEWIUT4SvSGS9UJwKzNpshjHsH4lzk8iOw= -cloud.google.com/go/baremetalsolution v1.2.1/go.mod h1:3qKpKIw12RPXStwQXcbhfxVj1dqQGEvcmA+SX/mUR88= -cloud.google.com/go/batch v0.3.0/go.mod h1:TR18ZoAekj1GuirsUsR1ZTKN3FC/4UDnScjT8NXImFE= -cloud.google.com/go/batch v0.4.0/go.mod h1:WZkHnP43R/QCGQsZ+0JyG4i79ranE2u8xvjq/9+STPE= -cloud.google.com/go/batch v0.7.0/go.mod h1:vLZN95s6teRUqRQ4s3RLDsH8PvboqBK+rn1oevL159g= -cloud.google.com/go/batch v1.3.1/go.mod h1:VguXeQKXIYaeeIYbuozUmBR13AfL4SJP7IltNPS+A4A= -cloud.google.com/go/batch v1.4.1/go.mod h1:KdBmDD61K0ovcxoRHGrN6GmOBWeAOyCgKD0Mugx4Fkk= -cloud.google.com/go/batch v1.5.0/go.mod h1:KdBmDD61K0ovcxoRHGrN6GmOBWeAOyCgKD0Mugx4Fkk= -cloud.google.com/go/batch v1.5.1/go.mod h1:RpBuIYLkQu8+CWDk3dFD/t/jOCGuUpkpX+Y0n1Xccs8= -cloud.google.com/go/beyondcorp v0.2.0/go.mod h1:TB7Bd+EEtcw9PCPQhCJtJGjk/7TC6ckmnSFS+xwTfm4= -cloud.google.com/go/beyondcorp v0.3.0/go.mod h1:E5U5lcrcXMsCuoDNyGrpyTm/hn7ne941Jz2vmksAxW8= -cloud.google.com/go/beyondcorp v0.4.0/go.mod h1:3ApA0mbhHx6YImmuubf5pyW8srKnCEPON32/5hj+RmM= -cloud.google.com/go/beyondcorp v0.5.0/go.mod h1:uFqj9X+dSfrheVp7ssLTaRHd2EHqSL4QZmH4e8WXGGU= -cloud.google.com/go/beyondcorp v0.6.1/go.mod h1:YhxDWw946SCbmcWo3fAhw3V4XZMSpQ/VYfcKGAEU8/4= -cloud.google.com/go/beyondcorp v1.0.0/go.mod h1:YhxDWw946SCbmcWo3fAhw3V4XZMSpQ/VYfcKGAEU8/4= -cloud.google.com/go/beyondcorp v1.0.1/go.mod h1:zl/rWWAFVeV+kx+X2Javly7o1EIQThU4WlkynffL/lk= cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= -cloud.google.com/go/bigquery v1.42.0/go.mod h1:8dRTJxhtG+vwBKzE5OseQn/hiydoQN3EedCaOdYmxRA= -cloud.google.com/go/bigquery v1.43.0/go.mod h1:ZMQcXHsl+xmU1z36G2jNGZmKp9zNY5BUua5wDgmNCfw= -cloud.google.com/go/bigquery v1.44.0/go.mod h1:0Y33VqXTEsbamHJvJHdFmtqHvMIY28aK1+dFsvaChGc= -cloud.google.com/go/bigquery v1.47.0/go.mod h1:sA9XOgy0A8vQK9+MWhEQTY6Tix87M/ZurWFIxmF9I/E= -cloud.google.com/go/bigquery v1.48.0/go.mod h1:QAwSz+ipNgfL5jxiaK7weyOhzdoAy1zFm0Nf1fysJac= -cloud.google.com/go/bigquery v1.49.0/go.mod h1:Sv8hMmTFFYBlt/ftw2uN6dFdQPzBlREY9yBh7Oy7/4Q= -cloud.google.com/go/bigquery v1.50.0/go.mod h1:YrleYEh2pSEbgTBZYMJ5SuSr0ML3ypjRB1zgf7pvQLU= -cloud.google.com/go/bigquery v1.52.0/go.mod h1:3b/iXjRQGU4nKa87cXeg6/gogLjO8C6PmuM8i5Bi/u4= -cloud.google.com/go/bigquery v1.53.0/go.mod h1:3b/iXjRQGU4nKa87cXeg6/gogLjO8C6PmuM8i5Bi/u4= -cloud.google.com/go/bigquery v1.55.0/go.mod h1:9Y5I3PN9kQWuid6183JFhOGOW3GcirA5LpsKCUn+2ec= -cloud.google.com/go/bigquery v1.56.0/go.mod h1:KDcsploXTEY7XT3fDQzMUZlpQLHzE4itubHrnmhUrZA= -cloud.google.com/go/bigtable v1.2.0/go.mod h1:JcVAOl45lrTmQfLj7T6TxyMzIN/3FGGcFm+2xVAli2o= -cloud.google.com/go/billing v1.4.0/go.mod h1:g9IdKBEFlItS8bTtlrZdVLWSSdSyFUZKXNS02zKMOZY= -cloud.google.com/go/billing v1.5.0/go.mod h1:mztb1tBc3QekhjSgmpf/CV4LzWXLzCArwpLmP2Gm88s= -cloud.google.com/go/billing v1.6.0/go.mod h1:WoXzguj+BeHXPbKfNWkqVtDdzORazmCjraY+vrxcyvI= -cloud.google.com/go/billing v1.7.0/go.mod h1:q457N3Hbj9lYwwRbnlD7vUpyjq6u5U1RAOArInEiD5Y= -cloud.google.com/go/billing v1.12.0/go.mod h1:yKrZio/eu+okO/2McZEbch17O5CB5NpZhhXG6Z766ss= -cloud.google.com/go/billing v1.13.0/go.mod h1:7kB2W9Xf98hP9Sr12KfECgfGclsH3CQR0R08tnRlRbc= -cloud.google.com/go/billing v1.16.0/go.mod h1:y8vx09JSSJG02k5QxbycNRrN7FGZB6F3CAcgum7jvGA= -cloud.google.com/go/billing v1.17.0/go.mod h1:Z9+vZXEq+HwH7bhJkyI4OQcR6TSbeMrjlpEjO2vzY64= -cloud.google.com/go/billing v1.17.1/go.mod h1:Z9+vZXEq+HwH7bhJkyI4OQcR6TSbeMrjlpEjO2vzY64= -cloud.google.com/go/billing v1.17.2/go.mod h1:u/AdV/3wr3xoRBk5xvUzYMS1IawOAPwQMuHgHMdljDg= -cloud.google.com/go/binaryauthorization v1.1.0/go.mod h1:xwnoWu3Y84jbuHa0zd526MJYmtnVXn0syOjaJgy4+dM= -cloud.google.com/go/binaryauthorization v1.2.0/go.mod h1:86WKkJHtRcv5ViNABtYMhhNWRrD1Vpi//uKEy7aYEfI= -cloud.google.com/go/binaryauthorization v1.3.0/go.mod h1:lRZbKgjDIIQvzYQS1p99A7/U1JqvqeZg0wiI5tp6tg0= -cloud.google.com/go/binaryauthorization v1.4.0/go.mod h1:tsSPQrBd77VLplV70GUhBf/Zm3FsKmgSqgm4UmiDItk= -cloud.google.com/go/binaryauthorization v1.5.0/go.mod h1:OSe4OU1nN/VswXKRBmciKpo9LulY41gch5c68htf3/Q= -cloud.google.com/go/binaryauthorization v1.6.1/go.mod h1:TKt4pa8xhowwffiBmbrbcxijJRZED4zrqnwZ1lKH51U= -cloud.google.com/go/binaryauthorization v1.7.0/go.mod h1:Zn+S6QqTMn6odcMU1zDZCJxPjU2tZPV1oDl45lWY154= -cloud.google.com/go/binaryauthorization v1.7.1/go.mod h1:GTAyfRWYgcbsP3NJogpV3yeunbUIjx2T9xVeYovtURE= -cloud.google.com/go/certificatemanager v1.3.0/go.mod h1:n6twGDvcUBFu9uBgt4eYvvf3sQ6My8jADcOVwHmzadg= -cloud.google.com/go/certificatemanager v1.4.0/go.mod h1:vowpercVFyqs8ABSmrdV+GiFf2H/ch3KyudYQEMM590= -cloud.google.com/go/certificatemanager v1.6.0/go.mod h1:3Hh64rCKjRAX8dXgRAyOcY5vQ/fE1sh8o+Mdd6KPgY8= -cloud.google.com/go/certificatemanager v1.7.1/go.mod h1:iW8J3nG6SaRYImIa+wXQ0g8IgoofDFRp5UMzaNk1UqI= -cloud.google.com/go/certificatemanager v1.7.2/go.mod h1:15SYTDQMd00kdoW0+XY5d9e+JbOPjp24AvF48D8BbcQ= -cloud.google.com/go/channel v1.8.0/go.mod h1:W5SwCXDJsq/rg3tn3oG0LOxpAo6IMxNa09ngphpSlnk= -cloud.google.com/go/channel v1.9.0/go.mod h1:jcu05W0my9Vx4mt3/rEHpfxc9eKi9XwsdDL8yBMbKUk= -cloud.google.com/go/channel v1.11.0/go.mod h1:IdtI0uWGqhEeatSB62VOoJ8FSUhJ9/+iGkJVqp74CGE= -cloud.google.com/go/channel v1.12.0/go.mod h1:VkxCGKASi4Cq7TbXxlaBezonAYpp1GCnKMY6tnMQnLU= -cloud.google.com/go/channel v1.16.0/go.mod h1:eN/q1PFSl5gyu0dYdmxNXscY/4Fi7ABmeHCJNf/oHmc= -cloud.google.com/go/channel v1.17.0/go.mod h1:RpbhJsGi/lXWAUM1eF4IbQGbsfVlg2o8Iiy2/YLfVT0= -cloud.google.com/go/channel v1.17.1/go.mod h1:xqfzcOZAcP4b/hUDH0GkGg1Sd5to6di1HOJn/pi5uBQ= -cloud.google.com/go/cloudbuild v1.3.0/go.mod h1:WequR4ULxlqvMsjDEEEFnOG5ZSRSgWOywXYDb1vPE6U= -cloud.google.com/go/cloudbuild v1.4.0/go.mod h1:5Qwa40LHiOXmz3386FrjrYM93rM/hdRr7b53sySrTqA= -cloud.google.com/go/cloudbuild v1.6.0/go.mod h1:UIbc/w9QCbH12xX+ezUsgblrWv+Cv4Tw83GiSMHOn9M= -cloud.google.com/go/cloudbuild v1.7.0/go.mod h1:zb5tWh2XI6lR9zQmsm1VRA+7OCuve5d8S+zJUul8KTg= -cloud.google.com/go/cloudbuild v1.9.0/go.mod h1:qK1d7s4QlO0VwfYn5YuClDGg2hfmLZEb4wQGAbIgL1s= -cloud.google.com/go/cloudbuild v1.10.1/go.mod h1:lyJg7v97SUIPq4RC2sGsz/9tNczhyv2AjML/ci4ulzU= -cloud.google.com/go/cloudbuild v1.13.0/go.mod h1:lyJg7v97SUIPq4RC2sGsz/9tNczhyv2AjML/ci4ulzU= -cloud.google.com/go/cloudbuild v1.14.0/go.mod h1:lyJg7v97SUIPq4RC2sGsz/9tNczhyv2AjML/ci4ulzU= -cloud.google.com/go/cloudbuild v1.14.1/go.mod h1:K7wGc/3zfvmYWOWwYTgF/d/UVJhS4pu+HAy7PL7mCsU= -cloud.google.com/go/clouddms v1.3.0/go.mod h1:oK6XsCDdW4Ib3jCCBugx+gVjevp2TMXFtgxvPSee3OM= -cloud.google.com/go/clouddms v1.4.0/go.mod h1:Eh7sUGCC+aKry14O1NRljhjyrr0NFC0G2cjwX0cByRk= -cloud.google.com/go/clouddms v1.5.0/go.mod h1:QSxQnhikCLUw13iAbffF2CZxAER3xDGNHjsTAkQJcQA= -cloud.google.com/go/clouddms v1.6.1/go.mod h1:Ygo1vL52Ov4TBZQquhz5fiw2CQ58gvu+PlS6PVXCpZI= -cloud.google.com/go/clouddms v1.7.0/go.mod h1:MW1dC6SOtI/tPNCciTsXtsGNEM0i0OccykPvv3hiYeM= -cloud.google.com/go/clouddms v1.7.1/go.mod h1:o4SR8U95+P7gZ/TX+YbJxehOCsM+fe6/brlrFquiszk= -cloud.google.com/go/cloudtasks v1.5.0/go.mod h1:fD92REy1x5woxkKEkLdvavGnPJGEn8Uic9nWuLzqCpY= -cloud.google.com/go/cloudtasks v1.6.0/go.mod h1:C6Io+sxuke9/KNRkbQpihnW93SWDU3uXt92nu85HkYI= -cloud.google.com/go/cloudtasks v1.7.0/go.mod h1:ImsfdYWwlWNJbdgPIIGJWC+gemEGTBK/SunNQQNCAb4= -cloud.google.com/go/cloudtasks v1.8.0/go.mod h1:gQXUIwCSOI4yPVK7DgTVFiiP0ZW/eQkydWzwVMdHxrI= -cloud.google.com/go/cloudtasks v1.9.0/go.mod h1:w+EyLsVkLWHcOaqNEyvcKAsWp9p29dL6uL9Nst1cI7Y= -cloud.google.com/go/cloudtasks v1.10.0/go.mod h1:NDSoTLkZ3+vExFEWu2UJV1arUyzVDAiZtdWcsUyNwBs= -cloud.google.com/go/cloudtasks v1.11.1/go.mod h1:a9udmnou9KO2iulGscKR0qBYjreuX8oHwpmFsKspEvM= -cloud.google.com/go/cloudtasks v1.12.1/go.mod h1:a9udmnou9KO2iulGscKR0qBYjreuX8oHwpmFsKspEvM= -cloud.google.com/go/cloudtasks v1.12.2/go.mod h1:A7nYkjNlW2gUoROg1kvJrQGhJP/38UaWwsnuBDOBVUk= -cloud.google.com/go/compute v0.1.0/go.mod h1:GAesmwr110a34z04OlxYkATPBEfVhkymfTBXtfbBFow= -cloud.google.com/go/compute v1.3.0/go.mod h1:cCZiE1NHEtai4wiufUhW8I8S1JKkAnhnQJWM7YD99wM= -cloud.google.com/go/compute v1.5.0/go.mod h1:9SMHyhJlzhlkJqrPAc839t2BZFTSk6Jdj6mkzQJeu0M= -cloud.google.com/go/compute v1.6.0/go.mod h1:T29tfhtVbq1wvAPo0E3+7vhgmkOYeXjhFvz/FMzPu0s= -cloud.google.com/go/compute v1.6.1/go.mod h1:g85FgpzFvNULZ+S8AYq87axRKuf2Kh7deLqV/jJ3thU= -cloud.google.com/go/compute v1.7.0/go.mod h1:435lt8av5oL9P3fv1OEzSbSUe+ybHXGMPQHHZWZxy9U= -cloud.google.com/go/compute v1.10.0/go.mod h1:ER5CLbMxl90o2jtNbGSbtfOpQKR0t15FOtRsugnLrlU= -cloud.google.com/go/compute v1.12.0/go.mod h1:e8yNOBcBONZU1vJKCvCoDw/4JQsA0dpM4x/6PIIOocU= -cloud.google.com/go/compute v1.12.1/go.mod h1:e8yNOBcBONZU1vJKCvCoDw/4JQsA0dpM4x/6PIIOocU= -cloud.google.com/go/compute v1.13.0/go.mod h1:5aPTS0cUNMIc1CE546K+Th6weJUNQErARyZtRXDJ8GE= -cloud.google.com/go/compute v1.14.0/go.mod h1:YfLtxrj9sU4Yxv+sXzZkyPjEyPBZfXHUvjxega5vAdo= -cloud.google.com/go/compute v1.15.1/go.mod h1:bjjoF/NtFUrkD/urWfdHaKuOPDR5nWIs63rR+SXhcpA= -cloud.google.com/go/compute v1.18.0/go.mod h1:1X7yHxec2Ga+Ss6jPyjxRxpu2uu7PLgsOVXvgU0yacs= -cloud.google.com/go/compute v1.19.0/go.mod h1:rikpw2y+UMidAe9tISo04EHNOIf42RLYF/q8Bs93scU= -cloud.google.com/go/compute v1.19.1/go.mod h1:6ylj3a05WF8leseCdIf77NK0g1ey+nj5IKd5/kvShxE= -cloud.google.com/go/compute v1.19.3/go.mod h1:qxvISKp/gYnXkSAD1ppcSOveRAmzxicEv/JlizULFrI= -cloud.google.com/go/compute v1.20.1/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM= -cloud.google.com/go/compute v1.21.0/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM= -cloud.google.com/go/compute v1.23.0/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM= -cloud.google.com/go/compute v1.23.1/go.mod h1:CqB3xpmPKKt3OJpW2ndFIXnA9A4xAy/F3Xp1ixncW78= -cloud.google.com/go/compute/metadata v0.1.0/go.mod h1:Z1VN+bulIf6bt4P/C37K4DyZYZEXYonfTBHHFPO/4UU= -cloud.google.com/go/compute/metadata v0.2.0/go.mod h1:zFmK7XCadkQkj6TtorcaGlCW1hT1fIilQDwofLpJ20k= -cloud.google.com/go/compute/metadata v0.2.1/go.mod h1:jgHgmJd2RKBGzXqF5LR2EZMGxBkeanZ9wwa75XHJgOM= -cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA= -cloud.google.com/go/contactcenterinsights v1.3.0/go.mod h1:Eu2oemoePuEFc/xKFPjbTuPSj0fYJcPls9TFlPNnHHY= -cloud.google.com/go/contactcenterinsights v1.4.0/go.mod h1:L2YzkGbPsv+vMQMCADxJoT9YiTTnSEd6fEvCeHTYVck= -cloud.google.com/go/contactcenterinsights v1.6.0/go.mod h1:IIDlT6CLcDoyv79kDv8iWxMSTZhLxSCofVV5W6YFM/w= -cloud.google.com/go/contactcenterinsights v1.9.1/go.mod h1:bsg/R7zGLYMVxFFzfh9ooLTruLRCG9fnzhH9KznHhbM= -cloud.google.com/go/contactcenterinsights v1.10.0/go.mod h1:bsg/R7zGLYMVxFFzfh9ooLTruLRCG9fnzhH9KznHhbM= -cloud.google.com/go/contactcenterinsights v1.11.0/go.mod h1:hutBdImE4XNZ1NV4vbPJKSFOnQruhC5Lj9bZqWMTKiU= -cloud.google.com/go/contactcenterinsights v1.11.1/go.mod h1:FeNP3Kg8iteKM80lMwSk3zZZKVxr+PGnAId6soKuXwE= -cloud.google.com/go/container v1.6.0/go.mod h1:Xazp7GjJSeUYo688S+6J5V+n/t+G5sKBTFkKNudGRxg= -cloud.google.com/go/container v1.7.0/go.mod h1:Dp5AHtmothHGX3DwwIHPgq45Y8KmNsgN3amoYfxVkLo= -cloud.google.com/go/container v1.13.1/go.mod h1:6wgbMPeQRw9rSnKBCAJXnds3Pzj03C4JHamr8asWKy4= -cloud.google.com/go/container v1.14.0/go.mod h1:3AoJMPhHfLDxLvrlVWaK57IXzaPnLaZq63WX59aQBfM= -cloud.google.com/go/container v1.15.0/go.mod h1:ft+9S0WGjAyjDggg5S06DXj+fHJICWg8L7isCQe9pQA= -cloud.google.com/go/container v1.22.1/go.mod h1:lTNExE2R7f+DLbAN+rJiKTisauFCaoDq6NURZ83eVH4= -cloud.google.com/go/container v1.24.0/go.mod h1:lTNExE2R7f+DLbAN+rJiKTisauFCaoDq6NURZ83eVH4= -cloud.google.com/go/container v1.26.0/go.mod h1:YJCmRet6+6jnYYRS000T6k0D0xUXQgBSaJ7VwI8FBj4= -cloud.google.com/go/container v1.26.1/go.mod h1:5smONjPRUxeEpDG7bMKWfDL4sauswqEtnBK1/KKpR04= -cloud.google.com/go/containeranalysis v0.5.1/go.mod h1:1D92jd8gRR/c0fGMlymRgxWD3Qw9C1ff6/T7mLgVL8I= -cloud.google.com/go/containeranalysis v0.6.0/go.mod h1:HEJoiEIu+lEXM+k7+qLCci0h33lX3ZqoYFdmPcoO7s4= -cloud.google.com/go/containeranalysis v0.7.0/go.mod h1:9aUL+/vZ55P2CXfuZjS4UjQ9AgXoSw8Ts6lemfmxBxI= -cloud.google.com/go/containeranalysis v0.9.0/go.mod h1:orbOANbwk5Ejoom+s+DUCTTJ7IBdBQJDcSylAx/on9s= -cloud.google.com/go/containeranalysis v0.10.1/go.mod h1:Ya2jiILITMY68ZLPaogjmOMNkwsDrWBSTyBubGXO7j0= -cloud.google.com/go/containeranalysis v0.11.0/go.mod h1:4n2e99ZwpGxpNcz+YsFT1dfOHPQFGcAC8FN2M2/ne/U= -cloud.google.com/go/containeranalysis v0.11.1/go.mod h1:rYlUOM7nem1OJMKwE1SadufX0JP3wnXj844EtZAwWLY= -cloud.google.com/go/datacatalog v1.3.0/go.mod h1:g9svFY6tuR+j+hrTw3J2dNcmI0dzmSiyOzm8kpLq0a0= -cloud.google.com/go/datacatalog v1.5.0/go.mod h1:M7GPLNQeLfWqeIm3iuiruhPzkt65+Bx8dAKvScX8jvs= -cloud.google.com/go/datacatalog v1.6.0/go.mod h1:+aEyF8JKg+uXcIdAmmaMUmZ3q1b/lKLtXCmXdnc0lbc= -cloud.google.com/go/datacatalog v1.7.0/go.mod h1:9mEl4AuDYWw81UGc41HonIHH7/sn52H0/tc8f8ZbZIE= -cloud.google.com/go/datacatalog v1.8.0/go.mod h1:KYuoVOv9BM8EYz/4eMFxrr4DUKhGIOXxZoKYF5wdISM= -cloud.google.com/go/datacatalog v1.8.1/go.mod h1:RJ58z4rMp3gvETA465Vg+ag8BGgBdnRPEMMSTr5Uv+M= -cloud.google.com/go/datacatalog v1.12.0/go.mod h1:CWae8rFkfp6LzLumKOnmVh4+Zle4A3NXLzVJ1d1mRm0= -cloud.google.com/go/datacatalog v1.13.0/go.mod h1:E4Rj9a5ZtAxcQJlEBTLgMTphfP11/lNaAshpoBgemX8= -cloud.google.com/go/datacatalog v1.14.0/go.mod h1:h0PrGtlihoutNMp/uvwhawLQ9+c63Kz65UFqh49Yo+E= -cloud.google.com/go/datacatalog v1.14.1/go.mod h1:d2CevwTG4yedZilwe+v3E3ZBDRMobQfSG/a6cCCN5R4= -cloud.google.com/go/datacatalog v1.16.0/go.mod h1:d2CevwTG4yedZilwe+v3E3ZBDRMobQfSG/a6cCCN5R4= -cloud.google.com/go/datacatalog v1.17.1/go.mod h1:nCSYFHgtxh2MiEktWIz71s/X+7ds/UT9kp0PC7waCzE= -cloud.google.com/go/datacatalog v1.18.0/go.mod h1:nCSYFHgtxh2MiEktWIz71s/X+7ds/UT9kp0PC7waCzE= -cloud.google.com/go/datacatalog v1.18.1/go.mod h1:TzAWaz+ON1tkNr4MOcak8EBHX7wIRX/gZKM+yTVsv+A= -cloud.google.com/go/dataflow v0.6.0/go.mod h1:9QwV89cGoxjjSR9/r7eFDqqjtvbKxAK2BaYU6PVk9UM= -cloud.google.com/go/dataflow v0.7.0/go.mod h1:PX526vb4ijFMesO1o202EaUmouZKBpjHsTlCtB4parQ= -cloud.google.com/go/dataflow v0.8.0/go.mod h1:Rcf5YgTKPtQyYz8bLYhFoIV/vP39eL7fWNcSOyFfLJE= -cloud.google.com/go/dataflow v0.9.1/go.mod h1:Wp7s32QjYuQDWqJPFFlnBKhkAtiFpMTdg00qGbnIHVw= -cloud.google.com/go/dataflow v0.9.2/go.mod h1:vBfdBZ/ejlTaYIGB3zB4T08UshH70vbtZeMD+urnUSo= -cloud.google.com/go/dataform v0.3.0/go.mod h1:cj8uNliRlHpa6L3yVhDOBrUXH+BPAO1+KFMQQNSThKo= -cloud.google.com/go/dataform v0.4.0/go.mod h1:fwV6Y4Ty2yIFL89huYlEkwUPtS7YZinZbzzj5S9FzCE= -cloud.google.com/go/dataform v0.5.0/go.mod h1:GFUYRe8IBa2hcomWplodVmUx/iTL0FrsauObOM3Ipr0= -cloud.google.com/go/dataform v0.6.0/go.mod h1:QPflImQy33e29VuapFdf19oPbE4aYTJxr31OAPV+ulA= -cloud.google.com/go/dataform v0.7.0/go.mod h1:7NulqnVozfHvWUBpMDfKMUESr+85aJsC/2O0o3jWPDE= -cloud.google.com/go/dataform v0.8.1/go.mod h1:3BhPSiw8xmppbgzeBbmDvmSWlwouuJkXsXsb8UBih9M= -cloud.google.com/go/dataform v0.8.2/go.mod h1:X9RIqDs6NbGPLR80tnYoPNiO1w0wenKTb8PxxlhTMKM= -cloud.google.com/go/datafusion v1.4.0/go.mod h1:1Zb6VN+W6ALo85cXnM1IKiPw+yQMKMhB9TsTSRDo/38= -cloud.google.com/go/datafusion v1.5.0/go.mod h1:Kz+l1FGHB0J+4XF2fud96WMmRiq/wj8N9u007vyXZ2w= -cloud.google.com/go/datafusion v1.6.0/go.mod h1:WBsMF8F1RhSXvVM8rCV3AeyWVxcC2xY6vith3iw3S+8= -cloud.google.com/go/datafusion v1.7.1/go.mod h1:KpoTBbFmoToDExJUso/fcCiguGDk7MEzOWXUsJo0wsI= -cloud.google.com/go/datafusion v1.7.2/go.mod h1:62K2NEC6DRlpNmI43WHMWf9Vg/YvN6QVi8EVwifElI0= -cloud.google.com/go/datalabeling v0.5.0/go.mod h1:TGcJ0G2NzcsXSE/97yWjIZO0bXj0KbVlINXMG9ud42I= -cloud.google.com/go/datalabeling v0.6.0/go.mod h1:WqdISuk/+WIGeMkpw/1q7bK/tFEZxsrFJOJdY2bXvTQ= -cloud.google.com/go/datalabeling v0.7.0/go.mod h1:WPQb1y08RJbmpM3ww0CSUAGweL0SxByuW2E+FU+wXcM= -cloud.google.com/go/datalabeling v0.8.1/go.mod h1:XS62LBSVPbYR54GfYQsPXZjTW8UxCK2fkDciSrpRFdY= -cloud.google.com/go/datalabeling v0.8.2/go.mod h1:cyDvGHuJWu9U/cLDA7d8sb9a0tWLEletStu2sTmg3BE= -cloud.google.com/go/dataplex v1.3.0/go.mod h1:hQuRtDg+fCiFgC8j0zV222HvzFQdRd+SVX8gdmFcZzA= -cloud.google.com/go/dataplex v1.4.0/go.mod h1:X51GfLXEMVJ6UN47ESVqvlsRplbLhcsAt0kZCCKsU0A= -cloud.google.com/go/dataplex v1.5.2/go.mod h1:cVMgQHsmfRoI5KFYq4JtIBEUbYwc3c7tXmIDhRmNNVQ= -cloud.google.com/go/dataplex v1.6.0/go.mod h1:bMsomC/aEJOSpHXdFKFGQ1b0TDPIeL28nJObeO1ppRs= -cloud.google.com/go/dataplex v1.8.1/go.mod h1:7TyrDT6BCdI8/38Uvp0/ZxBslOslP2X2MPDucliyvSE= -cloud.google.com/go/dataplex v1.9.0/go.mod h1:7TyrDT6BCdI8/38Uvp0/ZxBslOslP2X2MPDucliyvSE= -cloud.google.com/go/dataplex v1.9.1/go.mod h1:7TyrDT6BCdI8/38Uvp0/ZxBslOslP2X2MPDucliyvSE= -cloud.google.com/go/dataplex v1.10.1/go.mod h1:1MzmBv8FvjYfc7vDdxhnLFNskikkB+3vl475/XdCDhs= -cloud.google.com/go/dataproc v1.7.0/go.mod h1:CKAlMjII9H90RXaMpSxQ8EU6dQx6iAYNPcYPOkSbi8s= -cloud.google.com/go/dataproc v1.8.0/go.mod h1:5OW+zNAH0pMpw14JVrPONsxMQYMBqJuzORhIBfBn9uI= -cloud.google.com/go/dataproc v1.12.0/go.mod h1:zrF3aX0uV3ikkMz6z4uBbIKyhRITnxvr4i3IjKsKrw4= -cloud.google.com/go/dataproc/v2 v2.0.1/go.mod h1:7Ez3KRHdFGcfY7GcevBbvozX+zyWGcwLJvvAMwCaoZ4= -cloud.google.com/go/dataproc/v2 v2.2.0/go.mod h1:lZR7AQtwZPvmINx5J87DSOOpTfof9LVZju6/Qo4lmcY= -cloud.google.com/go/dataproc/v2 v2.2.1/go.mod h1:QdAJLaBjh+l4PVlVZcmrmhGccosY/omC1qwfQ61Zv/o= -cloud.google.com/go/dataqna v0.5.0/go.mod h1:90Hyk596ft3zUQ8NkFfvICSIfHFh1Bc7C4cK3vbhkeo= -cloud.google.com/go/dataqna v0.6.0/go.mod h1:1lqNpM7rqNLVgWBJyk5NF6Uen2PHym0jtVJonplVsDA= -cloud.google.com/go/dataqna v0.7.0/go.mod h1:Lx9OcIIeqCrw1a6KdO3/5KMP1wAmTc0slZWwP12Qq3c= -cloud.google.com/go/dataqna v0.8.1/go.mod h1:zxZM0Bl6liMePWsHA8RMGAfmTG34vJMapbHAxQ5+WA8= -cloud.google.com/go/dataqna v0.8.2/go.mod h1:KNEqgx8TTmUipnQsScOoDpq/VlXVptUqVMZnt30WAPs= cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= -cloud.google.com/go/datastore v1.10.0/go.mod h1:PC5UzAmDEkAmkfaknstTYbNpgE49HAgW2J1gcgUfmdM= -cloud.google.com/go/datastore v1.11.0/go.mod h1:TvGxBIHCS50u8jzG+AW/ppf87v1of8nwzFNgEZU1D3c= -cloud.google.com/go/datastore v1.12.0/go.mod h1:KjdB88W897MRITkvWWJrg2OUtrR5XVj1EoLgSp6/N70= -cloud.google.com/go/datastore v1.12.1/go.mod h1:KjdB88W897MRITkvWWJrg2OUtrR5XVj1EoLgSp6/N70= -cloud.google.com/go/datastore v1.13.0/go.mod h1:KjdB88W897MRITkvWWJrg2OUtrR5XVj1EoLgSp6/N70= -cloud.google.com/go/datastore v1.14.0/go.mod h1:GAeStMBIt9bPS7jMJA85kgkpsMkvseWWXiaHya9Jes8= -cloud.google.com/go/datastore v1.15.0/go.mod h1:GAeStMBIt9bPS7jMJA85kgkpsMkvseWWXiaHya9Jes8= -cloud.google.com/go/datastream v1.2.0/go.mod h1:i/uTP8/fZwgATHS/XFu0TcNUhuA0twZxxQ3EyCUQMwo= -cloud.google.com/go/datastream v1.3.0/go.mod h1:cqlOX8xlyYF/uxhiKn6Hbv6WjwPPuI9W2M9SAXwaLLQ= -cloud.google.com/go/datastream v1.4.0/go.mod h1:h9dpzScPhDTs5noEMQVWP8Wx8AFBRyS0s8KWPx/9r0g= -cloud.google.com/go/datastream v1.5.0/go.mod h1:6TZMMNPwjUqZHBKPQ1wwXpb0d5VDVPl2/XoS5yi88q4= -cloud.google.com/go/datastream v1.6.0/go.mod h1:6LQSuswqLa7S4rPAOZFVjHIG3wJIjZcZrw8JDEDJuIs= -cloud.google.com/go/datastream v1.7.0/go.mod h1:uxVRMm2elUSPuh65IbZpzJNMbuzkcvu5CjMqVIUHrww= -cloud.google.com/go/datastream v1.9.1/go.mod h1:hqnmr8kdUBmrnk65k5wNRoHSCYksvpdZIcZIEl8h43Q= -cloud.google.com/go/datastream v1.10.0/go.mod h1:hqnmr8kdUBmrnk65k5wNRoHSCYksvpdZIcZIEl8h43Q= -cloud.google.com/go/datastream v1.10.1/go.mod h1:7ngSYwnw95YFyTd5tOGBxHlOZiL+OtpjheqU7t2/s/c= -cloud.google.com/go/deploy v1.4.0/go.mod h1:5Xghikd4VrmMLNaF6FiRFDlHb59VM59YoDQnOUdsH/c= -cloud.google.com/go/deploy v1.5.0/go.mod h1:ffgdD0B89tToyW/U/D2eL0jN2+IEV/3EMuXHA0l4r+s= -cloud.google.com/go/deploy v1.6.0/go.mod h1:f9PTHehG/DjCom3QH0cntOVRm93uGBDt2vKzAPwpXQI= -cloud.google.com/go/deploy v1.8.0/go.mod h1:z3myEJnA/2wnB4sgjqdMfgxCA0EqC3RBTNcVPs93mtQ= -cloud.google.com/go/deploy v1.11.0/go.mod h1:tKuSUV5pXbn67KiubiUNUejqLs4f5cxxiCNCeyl0F2g= -cloud.google.com/go/deploy v1.13.0/go.mod h1:tKuSUV5pXbn67KiubiUNUejqLs4f5cxxiCNCeyl0F2g= -cloud.google.com/go/deploy v1.13.1/go.mod h1:8jeadyLkH9qu9xgO3hVWw8jVr29N1mnW42gRJT8GY6g= -cloud.google.com/go/dialogflow v1.15.0/go.mod h1:HbHDWs33WOGJgn6rfzBW1Kv807BE3O1+xGbn59zZWI4= -cloud.google.com/go/dialogflow v1.16.1/go.mod h1:po6LlzGfK+smoSmTBnbkIZY2w8ffjz/RcGSS+sh1el0= -cloud.google.com/go/dialogflow v1.17.0/go.mod h1:YNP09C/kXA1aZdBgC/VtXX74G/TKn7XVCcVumTflA+8= -cloud.google.com/go/dialogflow v1.18.0/go.mod h1:trO7Zu5YdyEuR+BhSNOqJezyFQ3aUzz0njv7sMx/iek= -cloud.google.com/go/dialogflow v1.19.0/go.mod h1:JVmlG1TwykZDtxtTXujec4tQ+D8SBFMoosgy+6Gn0s0= -cloud.google.com/go/dialogflow v1.29.0/go.mod h1:b+2bzMe+k1s9V+F2jbJwpHPzrnIyHihAdRFMtn2WXuM= -cloud.google.com/go/dialogflow v1.31.0/go.mod h1:cuoUccuL1Z+HADhyIA7dci3N5zUssgpBJmCzI6fNRB4= -cloud.google.com/go/dialogflow v1.32.0/go.mod h1:jG9TRJl8CKrDhMEcvfcfFkkpp8ZhgPz3sBGmAUYJ2qE= -cloud.google.com/go/dialogflow v1.38.0/go.mod h1:L7jnH+JL2mtmdChzAIcXQHXMvQkE3U4hTaNltEuxXn4= -cloud.google.com/go/dialogflow v1.40.0/go.mod h1:L7jnH+JL2mtmdChzAIcXQHXMvQkE3U4hTaNltEuxXn4= -cloud.google.com/go/dialogflow v1.43.0/go.mod h1:pDUJdi4elL0MFmt1REMvFkdsUTYSHq+rTCS8wg0S3+M= -cloud.google.com/go/dialogflow v1.44.0/go.mod h1:pDUJdi4elL0MFmt1REMvFkdsUTYSHq+rTCS8wg0S3+M= -cloud.google.com/go/dialogflow v1.44.1/go.mod h1:n/h+/N2ouKOO+rbe/ZnI186xImpqvCVj2DdsWS/0EAk= -cloud.google.com/go/dlp v1.6.0/go.mod h1:9eyB2xIhpU0sVwUixfBubDoRwP+GjeUoxxeueZmqvmM= -cloud.google.com/go/dlp v1.7.0/go.mod h1:68ak9vCiMBjbasxeVD17hVPxDEck+ExiHavX8kiHG+Q= -cloud.google.com/go/dlp v1.9.0/go.mod h1:qdgmqgTyReTz5/YNSSuueR8pl7hO0o9bQ39ZhtgkWp4= -cloud.google.com/go/dlp v1.10.1/go.mod h1:IM8BWz1iJd8njcNcG0+Kyd9OPnqnRNkDV8j42VT5KOI= -cloud.google.com/go/dlp v1.10.2/go.mod h1:ZbdKIhcnyhILgccwVDzkwqybthh7+MplGC3kZVZsIOQ= -cloud.google.com/go/documentai v1.7.0/go.mod h1:lJvftZB5NRiFSX4moiye1SMxHx0Bc3x1+p9e/RfXYiU= -cloud.google.com/go/documentai v1.8.0/go.mod h1:xGHNEB7CtsnySCNrCFdCyyMz44RhFEEX2Q7UD0c5IhU= -cloud.google.com/go/documentai v1.9.0/go.mod h1:FS5485S8R00U10GhgBC0aNGrJxBP8ZVpEeJ7PQDZd6k= -cloud.google.com/go/documentai v1.10.0/go.mod h1:vod47hKQIPeCfN2QS/jULIvQTugbmdc0ZvxxfQY1bg4= -cloud.google.com/go/documentai v1.16.0/go.mod h1:o0o0DLTEZ+YnJZ+J4wNfTxmDVyrkzFvttBXXtYRMHkM= -cloud.google.com/go/documentai v1.18.0/go.mod h1:F6CK6iUH8J81FehpskRmhLq/3VlwQvb7TvwOceQ2tbs= -cloud.google.com/go/documentai v1.20.0/go.mod h1:yJkInoMcK0qNAEdRnqY/D5asy73tnPe88I1YTZT+a8E= -cloud.google.com/go/documentai v1.22.0/go.mod h1:yJkInoMcK0qNAEdRnqY/D5asy73tnPe88I1YTZT+a8E= -cloud.google.com/go/documentai v1.22.1/go.mod h1:LKs22aDHbJv7ufXuPypzRO7rG3ALLJxzdCXDPutw4Qc= -cloud.google.com/go/documentai v1.23.0/go.mod h1:LKs22aDHbJv7ufXuPypzRO7rG3ALLJxzdCXDPutw4Qc= -cloud.google.com/go/documentai v1.23.2/go.mod h1:Q/wcRT+qnuXOpjAkvOV4A+IeQl04q2/ReT7SSbytLSo= -cloud.google.com/go/domains v0.6.0/go.mod h1:T9Rz3GasrpYk6mEGHh4rymIhjlnIuB4ofT1wTxDeT4Y= -cloud.google.com/go/domains v0.7.0/go.mod h1:PtZeqS1xjnXuRPKE/88Iru/LdfoRyEHYA9nFQf4UKpg= -cloud.google.com/go/domains v0.8.0/go.mod h1:M9i3MMDzGFXsydri9/vW+EWz9sWb4I6WyHqdlAk0idE= -cloud.google.com/go/domains v0.9.1/go.mod h1:aOp1c0MbejQQ2Pjf1iJvnVyT+z6R6s8pX66KaCSDYfE= -cloud.google.com/go/domains v0.9.2/go.mod h1:3YvXGYzZG1Temjbk7EyGCuGGiXHJwVNmwIf+E/cUp5I= -cloud.google.com/go/edgecontainer v0.1.0/go.mod h1:WgkZ9tp10bFxqO8BLPqv2LlfmQF1X8lZqwW4r1BTajk= -cloud.google.com/go/edgecontainer v0.2.0/go.mod h1:RTmLijy+lGpQ7BXuTDa4C4ssxyXT34NIuHIgKuP4s5w= -cloud.google.com/go/edgecontainer v0.3.0/go.mod h1:FLDpP4nykgwwIfcLt6zInhprzw0lEi2P1fjO6Ie0qbc= -cloud.google.com/go/edgecontainer v1.0.0/go.mod h1:cttArqZpBB2q58W/upSG++ooo6EsblxDIolxa3jSjbY= -cloud.google.com/go/edgecontainer v1.1.1/go.mod h1:O5bYcS//7MELQZs3+7mabRqoWQhXCzenBu0R8bz2rwk= -cloud.google.com/go/edgecontainer v1.1.2/go.mod h1:wQRjIzqxEs9e9wrtle4hQPSR1Y51kqN75dgF7UllZZ4= -cloud.google.com/go/errorreporting v0.3.0/go.mod h1:xsP2yaAp+OAW4OIm60An2bbLpqIhKXdWR/tawvl7QzU= -cloud.google.com/go/essentialcontacts v1.3.0/go.mod h1:r+OnHa5jfj90qIfZDO/VztSFqbQan7HV75p8sA+mdGI= -cloud.google.com/go/essentialcontacts v1.4.0/go.mod h1:8tRldvHYsmnBCHdFpvU+GL75oWiBKl80BiqlFh9tp+8= -cloud.google.com/go/essentialcontacts v1.5.0/go.mod h1:ay29Z4zODTuwliK7SnX8E86aUF2CTzdNtvv42niCX0M= -cloud.google.com/go/essentialcontacts v1.6.2/go.mod h1:T2tB6tX+TRak7i88Fb2N9Ok3PvY3UNbUsMag9/BARh4= -cloud.google.com/go/essentialcontacts v1.6.3/go.mod h1:yiPCD7f2TkP82oJEFXFTou8Jl8L6LBRPeBEkTaO0Ggo= -cloud.google.com/go/eventarc v1.7.0/go.mod h1:6ctpF3zTnaQCxUjHUdcfgcA1A2T309+omHZth7gDfmc= -cloud.google.com/go/eventarc v1.8.0/go.mod h1:imbzxkyAU4ubfsaKYdQg04WS1NvncblHEup4kvF+4gw= -cloud.google.com/go/eventarc v1.10.0/go.mod h1:u3R35tmZ9HvswGRBnF48IlYgYeBcPUCjkr4BTdem2Kw= -cloud.google.com/go/eventarc v1.11.0/go.mod h1:PyUjsUKPWoRBCHeOxZd/lbOOjahV41icXyUY5kSTvVY= -cloud.google.com/go/eventarc v1.12.1/go.mod h1:mAFCW6lukH5+IZjkvrEss+jmt2kOdYlN8aMx3sRJiAI= -cloud.google.com/go/eventarc v1.13.0/go.mod h1:mAFCW6lukH5+IZjkvrEss+jmt2kOdYlN8aMx3sRJiAI= -cloud.google.com/go/eventarc v1.13.1/go.mod h1:EqBxmGHFrruIara4FUQ3RHlgfCn7yo1HYsu2Hpt/C3Y= -cloud.google.com/go/filestore v1.3.0/go.mod h1:+qbvHGvXU1HaKX2nD0WEPo92TP/8AQuCVEBXNY9z0+w= -cloud.google.com/go/filestore v1.4.0/go.mod h1:PaG5oDfo9r224f8OYXURtAsY+Fbyq/bLYoINEK8XQAI= -cloud.google.com/go/filestore v1.5.0/go.mod h1:FqBXDWBp4YLHqRnVGveOkHDf8svj9r5+mUDLupOWEDs= -cloud.google.com/go/filestore v1.6.0/go.mod h1:di5unNuss/qfZTw2U9nhFqo8/ZDSc466dre85Kydllg= -cloud.google.com/go/filestore v1.7.1/go.mod h1:y10jsorq40JJnjR/lQ8AfFbbcGlw3g+Dp8oN7i7FjV4= -cloud.google.com/go/filestore v1.7.2/go.mod h1:TYOlyJs25f/omgj+vY7/tIG/E7BX369triSPzE4LdgE= -cloud.google.com/go/firestore v1.9.0/go.mod h1:HMkjKHNTtRyZNiMzu7YAsLr9K3X2udY2AMwDaMEQiiE= -cloud.google.com/go/firestore v1.11.0/go.mod h1:b38dKhgzlmNNGTNZZwe7ZRFEuRab1Hay3/DBsIGKKy4= -cloud.google.com/go/firestore v1.12.0/go.mod h1:b38dKhgzlmNNGTNZZwe7ZRFEuRab1Hay3/DBsIGKKy4= -cloud.google.com/go/firestore v1.13.0/go.mod h1:QojqqOh8IntInDUSTAh0c8ZsPYAr68Ma8c5DWOy8xb8= -cloud.google.com/go/functions v1.6.0/go.mod h1:3H1UA3qiIPRWD7PeZKLvHZ9SaQhR26XIJcC0A5GbvAk= -cloud.google.com/go/functions v1.7.0/go.mod h1:+d+QBcWM+RsrgZfV9xo6KfA1GlzJfxcfZcRPEhDDfzg= -cloud.google.com/go/functions v1.8.0/go.mod h1:RTZ4/HsQjIqIYP9a9YPbU+QFoQsAlYgrwOXJWHn1POY= -cloud.google.com/go/functions v1.9.0/go.mod h1:Y+Dz8yGguzO3PpIjhLTbnqV1CWmgQ5UwtlpzoyquQ08= -cloud.google.com/go/functions v1.10.0/go.mod h1:0D3hEOe3DbEvCXtYOZHQZmD+SzYsi1YbI7dGvHfldXw= -cloud.google.com/go/functions v1.12.0/go.mod h1:AXWGrF3e2C/5ehvwYo/GH6O5s09tOPksiKhz+hH8WkA= -cloud.google.com/go/functions v1.13.0/go.mod h1:EU4O007sQm6Ef/PwRsI8N2umygGqPBS/IZQKBQBcJ3c= -cloud.google.com/go/functions v1.15.1/go.mod h1:P5yNWUTkyU+LvW/S9O6V+V423VZooALQlqoXdoPz5AE= -cloud.google.com/go/functions v1.15.2/go.mod h1:CHAjtcR6OU4XF2HuiVeriEdELNcnvRZSk1Q8RMqy4lE= -cloud.google.com/go/gaming v1.5.0/go.mod h1:ol7rGcxP/qHTRQE/RO4bxkXq+Fix0j6D4LFPzYTIrDM= -cloud.google.com/go/gaming v1.6.0/go.mod h1:YMU1GEvA39Qt3zWGyAVA9bpYz/yAhTvaQ1t2sK4KPUA= -cloud.google.com/go/gaming v1.7.0/go.mod h1:LrB8U7MHdGgFG851iHAfqUdLcKBdQ55hzXy9xBJz0+w= -cloud.google.com/go/gaming v1.8.0/go.mod h1:xAqjS8b7jAVW0KFYeRUxngo9My3f33kFmua++Pi+ggM= -cloud.google.com/go/gaming v1.9.0/go.mod h1:Fc7kEmCObylSWLO334NcO+O9QMDyz+TKC4v1D7X+Bc0= -cloud.google.com/go/gaming v1.10.1/go.mod h1:XQQvtfP8Rb9Rxnxm5wFVpAp9zCQkJi2bLIb7iHGwB3s= -cloud.google.com/go/gkebackup v0.2.0/go.mod h1:XKvv/4LfG829/B8B7xRkk8zRrOEbKtEam6yNfuQNH60= -cloud.google.com/go/gkebackup v0.3.0/go.mod h1:n/E671i1aOQvUxT541aTkCwExO/bTer2HDlj4TsBRAo= -cloud.google.com/go/gkebackup v0.4.0/go.mod h1:byAyBGUwYGEEww7xsbnUTBHIYcOPy/PgUWUtOeRm9Vg= -cloud.google.com/go/gkebackup v1.3.0/go.mod h1:vUDOu++N0U5qs4IhG1pcOnD1Mac79xWy6GoBFlWCWBU= -cloud.google.com/go/gkebackup v1.3.1/go.mod h1:vUDOu++N0U5qs4IhG1pcOnD1Mac79xWy6GoBFlWCWBU= -cloud.google.com/go/gkebackup v1.3.2/go.mod h1:OMZbXzEJloyXMC7gqdSB+EOEQ1AKcpGYvO3s1ec5ixk= -cloud.google.com/go/gkeconnect v0.5.0/go.mod h1:c5lsNAg5EwAy7fkqX/+goqFsU1Da/jQFqArp+wGNr/o= -cloud.google.com/go/gkeconnect v0.6.0/go.mod h1:Mln67KyU/sHJEBY8kFZ0xTeyPtzbq9StAVvEULYK16A= -cloud.google.com/go/gkeconnect v0.7.0/go.mod h1:SNfmVqPkaEi3bF/B3CNZOAYPYdg7sU+obZ+QTky2Myw= -cloud.google.com/go/gkeconnect v0.8.1/go.mod h1:KWiK1g9sDLZqhxB2xEuPV8V9NYzrqTUmQR9shJHpOZw= -cloud.google.com/go/gkeconnect v0.8.2/go.mod h1:6nAVhwchBJYgQCXD2pHBFQNiJNyAd/wyxljpaa6ZPrY= -cloud.google.com/go/gkehub v0.9.0/go.mod h1:WYHN6WG8w9bXU0hqNxt8rm5uxnk8IH+lPY9J2TV7BK0= -cloud.google.com/go/gkehub v0.10.0/go.mod h1:UIPwxI0DsrpsVoWpLB0stwKCP+WFVG9+y977wO+hBH0= -cloud.google.com/go/gkehub v0.11.0/go.mod h1:JOWHlmN+GHyIbuWQPl47/C2RFhnFKH38jH9Ascu3n0E= -cloud.google.com/go/gkehub v0.12.0/go.mod h1:djiIwwzTTBrF5NaXCGv3mf7klpEMcST17VBTVVDcuaw= -cloud.google.com/go/gkehub v0.14.1/go.mod h1:VEXKIJZ2avzrbd7u+zeMtW00Y8ddk/4V9511C9CQGTY= -cloud.google.com/go/gkehub v0.14.2/go.mod h1:iyjYH23XzAxSdhrbmfoQdePnlMj2EWcvnR+tHdBQsCY= -cloud.google.com/go/gkemulticloud v0.3.0/go.mod h1:7orzy7O0S+5kq95e4Hpn7RysVA7dPs8W/GgfUtsPbrA= -cloud.google.com/go/gkemulticloud v0.4.0/go.mod h1:E9gxVBnseLWCk24ch+P9+B2CoDFJZTyIgLKSalC7tuI= -cloud.google.com/go/gkemulticloud v0.5.0/go.mod h1:W0JDkiyi3Tqh0TJr//y19wyb1yf8llHVto2Htf2Ja3Y= -cloud.google.com/go/gkemulticloud v0.6.1/go.mod h1:kbZ3HKyTsiwqKX7Yw56+wUGwwNZViRnxWK2DVknXWfw= -cloud.google.com/go/gkemulticloud v1.0.0/go.mod h1:kbZ3HKyTsiwqKX7Yw56+wUGwwNZViRnxWK2DVknXWfw= -cloud.google.com/go/gkemulticloud v1.0.1/go.mod h1:AcrGoin6VLKT/fwZEYuqvVominLriQBCKmbjtnbMjG8= -cloud.google.com/go/grafeas v0.2.0/go.mod h1:KhxgtF2hb0P191HlY5besjYm6MqTSTj3LSI+M+ByZHc= -cloud.google.com/go/grafeas v0.3.0/go.mod h1:P7hgN24EyONOTMyeJH6DxG4zD7fwiYa5Q6GUgyFSOU8= -cloud.google.com/go/gsuiteaddons v1.3.0/go.mod h1:EUNK/J1lZEZO8yPtykKxLXI6JSVN2rg9bN8SXOa0bgM= -cloud.google.com/go/gsuiteaddons v1.4.0/go.mod h1:rZK5I8hht7u7HxFQcFei0+AtfS9uSushomRlg+3ua1o= -cloud.google.com/go/gsuiteaddons v1.5.0/go.mod h1:TFCClYLd64Eaa12sFVmUyG62tk4mdIsI7pAnSXRkcFo= -cloud.google.com/go/gsuiteaddons v1.6.1/go.mod h1:CodrdOqRZcLp5WOwejHWYBjZvfY0kOphkAKpF/3qdZY= -cloud.google.com/go/gsuiteaddons v1.6.2/go.mod h1:K65m9XSgs8hTF3X9nNTPi8IQueljSdYo9F+Mi+s4MyU= -cloud.google.com/go/iam v0.1.0/go.mod h1:vcUNEa0pEm0qRVpmWepWaFMIAI8/hjB9mO8rNCJtF6c= -cloud.google.com/go/iam v0.3.0/go.mod h1:XzJPvDayI+9zsASAFO68Hk07u3z+f+JrT2xXNdp4bnY= -cloud.google.com/go/iam v0.5.0/go.mod h1:wPU9Vt0P4UmCux7mqtRu6jcpPAb74cP1fh50J3QpkUc= -cloud.google.com/go/iam v0.6.0/go.mod h1:+1AH33ueBne5MzYccyMHtEKqLE4/kJOibtffMHDMFMc= -cloud.google.com/go/iam v0.7.0/go.mod h1:H5Br8wRaDGNc8XP3keLc4unfUUZeyH3Sfl9XpQEYOeg= -cloud.google.com/go/iam v0.8.0/go.mod h1:lga0/y3iH6CX7sYqypWJ33hf7kkfXJag67naqGESjkE= -cloud.google.com/go/iam v0.11.0/go.mod h1:9PiLDanza5D+oWFZiH1uG+RnRCfEGKoyl6yo4cgWZGY= -cloud.google.com/go/iam v0.12.0/go.mod h1:knyHGviacl11zrtZUoDuYpDgLjvr28sLQaG0YB2GYAY= -cloud.google.com/go/iam v0.13.0/go.mod h1:ljOg+rcNfzZ5d6f1nAUJ8ZIxOaZUVoS14bKCtaLZ/D0= -cloud.google.com/go/iam v1.0.1/go.mod h1:yR3tmSL8BcZB4bxByRv2jkSIahVmCtfKZwLYGBalRE8= -cloud.google.com/go/iam v1.1.0/go.mod h1:nxdHjaKfCr7fNYx/HJMM8LgiMugmveWlkatear5gVyk= -cloud.google.com/go/iam v1.1.1/go.mod h1:A5avdyVL2tCppe4unb0951eI9jreack+RJ0/d+KUZOU= -cloud.google.com/go/iam v1.1.2/go.mod h1:A5avdyVL2tCppe4unb0951eI9jreack+RJ0/d+KUZOU= -cloud.google.com/go/iam v1.1.3/go.mod h1:3khUlaBXfPKKe7huYgEpDn6FtgRyMEqbkvBxrQyY5SE= -cloud.google.com/go/iap v1.4.0/go.mod h1:RGFwRJdihTINIe4wZ2iCP0zF/qu18ZwyKxrhMhygBEc= -cloud.google.com/go/iap v1.5.0/go.mod h1:UH/CGgKd4KyohZL5Pt0jSKE4m3FR51qg6FKQ/z/Ix9A= -cloud.google.com/go/iap v1.6.0/go.mod h1:NSuvI9C/j7UdjGjIde7t7HBz+QTwBcapPE07+sSRcLk= -cloud.google.com/go/iap v1.7.0/go.mod h1:beqQx56T9O1G1yNPph+spKpNibDlYIiIixiqsQXxLIo= -cloud.google.com/go/iap v1.7.1/go.mod h1:WapEwPc7ZxGt2jFGB/C/bm+hP0Y6NXzOYGjpPnmMS74= -cloud.google.com/go/iap v1.8.1/go.mod h1:sJCbeqg3mvWLqjZNsI6dfAtbbV1DL2Rl7e1mTyXYREQ= -cloud.google.com/go/iap v1.9.0/go.mod h1:01OFxd1R+NFrg78S+hoPV5PxEzv22HXaNqUUlmNHFuY= -cloud.google.com/go/iap v1.9.1/go.mod h1:SIAkY7cGMLohLSdBR25BuIxO+I4fXJiL06IBL7cy/5Q= -cloud.google.com/go/ids v1.1.0/go.mod h1:WIuwCaYVOzHIj2OhN9HAwvW+DBdmUAdcWlFxRl+KubM= -cloud.google.com/go/ids v1.2.0/go.mod h1:5WXvp4n25S0rA/mQWAg1YEEBBq6/s+7ml1RDCW1IrcY= -cloud.google.com/go/ids v1.3.0/go.mod h1:JBdTYwANikFKaDP6LtW5JAi4gubs57SVNQjemdt6xV4= -cloud.google.com/go/ids v1.4.1/go.mod h1:np41ed8YMU8zOgv53MMMoCntLTn2lF+SUzlM+O3u/jw= -cloud.google.com/go/ids v1.4.2/go.mod h1:3vw8DX6YddRu9BncxuzMyWn0g8+ooUjI2gslJ7FH3vk= -cloud.google.com/go/iot v1.3.0/go.mod h1:r7RGh2B61+B8oz0AGE+J72AhA0G7tdXItODWsaA2oLs= -cloud.google.com/go/iot v1.4.0/go.mod h1:dIDxPOn0UvNDUMD8Ger7FIaTuvMkj+aGk94RPP0iV+g= -cloud.google.com/go/iot v1.5.0/go.mod h1:mpz5259PDl3XJthEmh9+ap0affn/MqNSP4My77Qql9o= -cloud.google.com/go/iot v1.6.0/go.mod h1:IqdAsmE2cTYYNO1Fvjfzo9po179rAtJeVGUvkLN3rLE= -cloud.google.com/go/iot v1.7.1/go.mod h1:46Mgw7ev1k9KqK1ao0ayW9h0lI+3hxeanz+L1zmbbbk= -cloud.google.com/go/iot v1.7.2/go.mod h1:q+0P5zr1wRFpw7/MOgDXrG/HVA+l+cSwdObffkrpnSg= -cloud.google.com/go/kms v1.4.0/go.mod h1:fajBHndQ+6ubNw6Ss2sSd+SWvjL26RNo/dr7uxsnnOA= -cloud.google.com/go/kms v1.5.0/go.mod h1:QJS2YY0eJGBg3mnDfuaCyLauWwBJiHRboYxJ++1xJNg= -cloud.google.com/go/kms v1.6.0/go.mod h1:Jjy850yySiasBUDi6KFUwUv2n1+o7QZFyuUJg6OgjA0= -cloud.google.com/go/kms v1.8.0/go.mod h1:4xFEhYFqvW+4VMELtZyxomGSYtSQKzM178ylFW4jMAg= -cloud.google.com/go/kms v1.9.0/go.mod h1:qb1tPTgfF9RQP8e1wq4cLFErVuTJv7UsSC915J8dh3w= -cloud.google.com/go/kms v1.10.0/go.mod h1:ng3KTUtQQU9bPX3+QGLsflZIHlkbn8amFAMY63m8d24= -cloud.google.com/go/kms v1.10.1/go.mod h1:rIWk/TryCkR59GMC3YtHtXeLzd634lBbKenvyySAyYI= -cloud.google.com/go/kms v1.11.0/go.mod h1:hwdiYC0xjnWsKQQCQQmIQnS9asjYVSK6jtXm+zFqXLM= -cloud.google.com/go/kms v1.12.1/go.mod h1:c9J991h5DTl+kg7gi3MYomh12YEENGrf48ee/N/2CDM= -cloud.google.com/go/kms v1.15.0/go.mod h1:c9J991h5DTl+kg7gi3MYomh12YEENGrf48ee/N/2CDM= -cloud.google.com/go/kms v1.15.2/go.mod h1:3hopT4+7ooWRCjc2DxgnpESFxhIraaI2IpAVUEhbT/w= -cloud.google.com/go/kms v1.15.3/go.mod h1:AJdXqHxS2GlPyduM99s9iGqi2nwbviBbhV/hdmt4iOQ= -cloud.google.com/go/kms v1.15.5/go.mod h1:cU2H5jnp6G2TDpUGZyqTCoy1n16fbubHZjmVXSMtwDI= -cloud.google.com/go/language v1.4.0/go.mod h1:F9dRpNFQmJbkaop6g0JhSBXCNlO90e1KWx5iDdxbWic= -cloud.google.com/go/language v1.6.0/go.mod h1:6dJ8t3B+lUYfStgls25GusK04NLh3eDLQnWM3mdEbhI= -cloud.google.com/go/language v1.7.0/go.mod h1:DJ6dYN/W+SQOjF8e1hLQXMF21AkH2w9wiPzPCJa2MIE= -cloud.google.com/go/language v1.8.0/go.mod h1:qYPVHf7SPoNNiCL2Dr0FfEFNil1qi3pQEyygwpgVKB8= -cloud.google.com/go/language v1.9.0/go.mod h1:Ns15WooPM5Ad/5no/0n81yUetis74g3zrbeJBE+ptUY= -cloud.google.com/go/language v1.10.1/go.mod h1:CPp94nsdVNiQEt1CNjF5WkTcisLiHPyIbMhvR8H2AW0= -cloud.google.com/go/language v1.11.0/go.mod h1:uDx+pFDdAKTY8ehpWbiXyQdz8tDSYLJbQcXsCkjYyvQ= -cloud.google.com/go/language v1.11.1/go.mod h1:Xyid9MG9WOX3utvDbpX7j3tXDmmDooMyMDqgUVpH17U= -cloud.google.com/go/lifesciences v0.5.0/go.mod h1:3oIKy8ycWGPUyZDR/8RNnTOYevhaMLqh5vLUXs9zvT8= -cloud.google.com/go/lifesciences v0.6.0/go.mod h1:ddj6tSX/7BOnhxCSd3ZcETvtNr8NZ6t/iPhY2Tyfu08= -cloud.google.com/go/lifesciences v0.8.0/go.mod h1:lFxiEOMqII6XggGbOnKiyZ7IBwoIqA84ClvoezaA/bo= -cloud.google.com/go/lifesciences v0.9.1/go.mod h1:hACAOd1fFbCGLr/+weUKRAJas82Y4vrL3O5326N//Wc= -cloud.google.com/go/lifesciences v0.9.2/go.mod h1:QHEOO4tDzcSAzeJg7s2qwnLM2ji8IRpQl4p6m5Z9yTA= -cloud.google.com/go/logging v1.6.1/go.mod h1:5ZO0mHHbvm8gEmeEUHrmDlTDSu5imF6MUP9OfilNXBw= -cloud.google.com/go/logging v1.7.0/go.mod h1:3xjP2CjkM3ZkO73aj4ASA5wRPGGCRrPIAeNqVNkzY8M= -cloud.google.com/go/logging v1.8.1/go.mod h1:TJjR+SimHwuC8MZ9cjByQulAMgni+RkXeI3wwctHJEI= -cloud.google.com/go/longrunning v0.1.1/go.mod h1:UUFxuDWkv22EuY93jjmDMFT5GPQKeFVJBIF6QlTqdsE= -cloud.google.com/go/longrunning v0.3.0/go.mod h1:qth9Y41RRSUE69rDcOn6DdK3HfQfsUI0YSmW3iIlLJc= -cloud.google.com/go/longrunning v0.4.1/go.mod h1:4iWDqhBZ70CvZ6BfETbvam3T8FMvLK+eFj0E6AaRQTo= -cloud.google.com/go/longrunning v0.4.2/go.mod h1:OHrnaYyLUV6oqwh0xiS7e5sLQhP1m0QU9R+WhGDMgIQ= -cloud.google.com/go/longrunning v0.5.0/go.mod h1:0JNuqRShmscVAhIACGtskSAWtqtOoPkwP0YF1oVEchc= -cloud.google.com/go/longrunning v0.5.1/go.mod h1:spvimkwdz6SPWKEt/XBij79E9fiTkHSQl/fRUUQJYJc= -cloud.google.com/go/longrunning v0.5.2/go.mod h1:nqo6DQbNV2pXhGDbDMoN2bWz68MjZUzqv2YttZiveCs= -cloud.google.com/go/managedidentities v1.3.0/go.mod h1:UzlW3cBOiPrzucO5qWkNkh0w33KFtBJU281hacNvsdE= -cloud.google.com/go/managedidentities v1.4.0/go.mod h1:NWSBYbEMgqmbZsLIyKvxrYbtqOsxY1ZrGM+9RgDqInM= -cloud.google.com/go/managedidentities v1.5.0/go.mod h1:+dWcZ0JlUmpuxpIDfyP5pP5y0bLdRwOS4Lp7gMni/LA= -cloud.google.com/go/managedidentities v1.6.1/go.mod h1:h/irGhTN2SkZ64F43tfGPMbHnypMbu4RB3yl8YcuEak= -cloud.google.com/go/managedidentities v1.6.2/go.mod h1:5c2VG66eCa0WIq6IylRk3TBW83l161zkFvCj28X7jn8= -cloud.google.com/go/maps v0.1.0/go.mod h1:BQM97WGyfw9FWEmQMpZ5T6cpovXXSd1cGmFma94eubI= -cloud.google.com/go/maps v0.6.0/go.mod h1:o6DAMMfb+aINHz/p/jbcY+mYeXBoZoxTfdSQ8VAJaCw= -cloud.google.com/go/maps v0.7.0/go.mod h1:3GnvVl3cqeSvgMcpRlQidXsPYuDGQ8naBis7MVzpXsY= -cloud.google.com/go/maps v1.3.0/go.mod h1:6mWTUv+WhnOwAgjVsSW2QPPECmW+s3PcRyOa9vgG/5s= -cloud.google.com/go/maps v1.4.0/go.mod h1:6mWTUv+WhnOwAgjVsSW2QPPECmW+s3PcRyOa9vgG/5s= -cloud.google.com/go/maps v1.4.1/go.mod h1:BxSa0BnW1g2U2gNdbq5zikLlHUuHW0GFWh7sgML2kIY= -cloud.google.com/go/mediatranslation v0.5.0/go.mod h1:jGPUhGTybqsPQn91pNXw0xVHfuJ3leR1wj37oU3y1f4= -cloud.google.com/go/mediatranslation v0.6.0/go.mod h1:hHdBCTYNigsBxshbznuIMFNe5QXEowAuNmmC7h8pu5w= -cloud.google.com/go/mediatranslation v0.7.0/go.mod h1:LCnB/gZr90ONOIQLgSXagp8XUW1ODs2UmUMvcgMfI2I= -cloud.google.com/go/mediatranslation v0.8.1/go.mod h1:L/7hBdEYbYHQJhX2sldtTO5SZZ1C1vkapubj0T2aGig= -cloud.google.com/go/mediatranslation v0.8.2/go.mod h1:c9pUaDRLkgHRx3irYE5ZC8tfXGrMYwNZdmDqKMSfFp8= -cloud.google.com/go/memcache v1.4.0/go.mod h1:rTOfiGZtJX1AaFUrOgsMHX5kAzaTQ8azHiuDoTPzNsE= -cloud.google.com/go/memcache v1.5.0/go.mod h1:dk3fCK7dVo0cUU2c36jKb4VqKPS22BTkf81Xq617aWM= -cloud.google.com/go/memcache v1.6.0/go.mod h1:XS5xB0eQZdHtTuTF9Hf8eJkKtR3pVRCcvJwtm68T3rA= -cloud.google.com/go/memcache v1.7.0/go.mod h1:ywMKfjWhNtkQTxrWxCkCFkoPjLHPW6A7WOTVI8xy3LY= -cloud.google.com/go/memcache v1.9.0/go.mod h1:8oEyzXCu+zo9RzlEaEjHl4KkgjlNDaXbCQeQWlzNFJM= -cloud.google.com/go/memcache v1.10.1/go.mod h1:47YRQIarv4I3QS5+hoETgKO40InqzLP6kpNLvyXuyaA= -cloud.google.com/go/memcache v1.10.2/go.mod h1:f9ZzJHLBrmd4BkguIAa/l/Vle6uTHzHokdnzSWOdQ6A= -cloud.google.com/go/metastore v1.5.0/go.mod h1:2ZNrDcQwghfdtCwJ33nM0+GrBGlVuh8rakL3vdPY3XY= -cloud.google.com/go/metastore v1.6.0/go.mod h1:6cyQTls8CWXzk45G55x57DVQ9gWg7RiH65+YgPsNh9s= -cloud.google.com/go/metastore v1.7.0/go.mod h1:s45D0B4IlsINu87/AsWiEVYbLaIMeUSoxlKKDqBGFS8= -cloud.google.com/go/metastore v1.8.0/go.mod h1:zHiMc4ZUpBiM7twCIFQmJ9JMEkDSyZS9U12uf7wHqSI= -cloud.google.com/go/metastore v1.10.0/go.mod h1:fPEnH3g4JJAk+gMRnrAnoqyv2lpUCqJPWOodSaf45Eo= -cloud.google.com/go/metastore v1.11.1/go.mod h1:uZuSo80U3Wd4zi6C22ZZliOUJ3XeM/MlYi/z5OAOWRA= -cloud.google.com/go/metastore v1.12.0/go.mod h1:uZuSo80U3Wd4zi6C22ZZliOUJ3XeM/MlYi/z5OAOWRA= -cloud.google.com/go/metastore v1.13.0/go.mod h1:URDhpG6XLeh5K+Glq0NOt74OfrPKTwS62gEPZzb5SOk= -cloud.google.com/go/metastore v1.13.1/go.mod h1:IbF62JLxuZmhItCppcIfzBBfUFq0DIB9HPDoLgWrVOU= -cloud.google.com/go/monitoring v1.7.0/go.mod h1:HpYse6kkGo//7p6sT0wsIC6IBDET0RhIsnmlA53dvEk= -cloud.google.com/go/monitoring v1.8.0/go.mod h1:E7PtoMJ1kQXWxPjB6mv2fhC5/15jInuulFdYYtlcvT4= -cloud.google.com/go/monitoring v1.12.0/go.mod h1:yx8Jj2fZNEkL/GYZyTLS4ZtZEZN8WtDEiEqG4kLK50w= -cloud.google.com/go/monitoring v1.13.0/go.mod h1:k2yMBAB1H9JT/QETjNkgdCGD9bPF712XiLTVr+cBrpw= -cloud.google.com/go/monitoring v1.15.1/go.mod h1:lADlSAlFdbqQuwwpaImhsJXu1QSdd3ojypXrFSMr2rM= -cloud.google.com/go/monitoring v1.16.0/go.mod h1:Ptp15HgAyM1fNICAojDMoNc/wUmn67mLHQfyqbw+poY= -cloud.google.com/go/monitoring v1.16.1/go.mod h1:6HsxddR+3y9j+o/cMJH6q/KJ/CBTvM/38L/1m7bTRJ4= -cloud.google.com/go/networkconnectivity v1.4.0/go.mod h1:nOl7YL8odKyAOtzNX73/M5/mGZgqqMeryi6UPZTk/rA= -cloud.google.com/go/networkconnectivity v1.5.0/go.mod h1:3GzqJx7uhtlM3kln0+x5wyFvuVH1pIBJjhCpjzSt75o= -cloud.google.com/go/networkconnectivity v1.6.0/go.mod h1:OJOoEXW+0LAxHh89nXd64uGG+FbQoeH8DtxCHVOMlaM= -cloud.google.com/go/networkconnectivity v1.7.0/go.mod h1:RMuSbkdbPwNMQjB5HBWD5MpTBnNm39iAVpC3TmsExt8= -cloud.google.com/go/networkconnectivity v1.10.0/go.mod h1:UP4O4sWXJG13AqrTdQCD9TnLGEbtNRqjuaaA7bNjF5E= -cloud.google.com/go/networkconnectivity v1.11.0/go.mod h1:iWmDD4QF16VCDLXUqvyspJjIEtBR/4zq5hwnY2X3scM= -cloud.google.com/go/networkconnectivity v1.12.1/go.mod h1:PelxSWYM7Sh9/guf8CFhi6vIqf19Ir/sbfZRUwXh92E= -cloud.google.com/go/networkconnectivity v1.13.0/go.mod h1:SAnGPes88pl7QRLUen2HmcBSE9AowVAcdug8c0RSBFk= -cloud.google.com/go/networkconnectivity v1.14.0/go.mod h1:SAnGPes88pl7QRLUen2HmcBSE9AowVAcdug8c0RSBFk= -cloud.google.com/go/networkconnectivity v1.14.1/go.mod h1:LyGPXR742uQcDxZ/wv4EI0Vu5N6NKJ77ZYVnDe69Zug= -cloud.google.com/go/networkmanagement v1.4.0/go.mod h1:Q9mdLLRn60AsOrPc8rs8iNV6OHXaGcDdsIQe1ohekq8= -cloud.google.com/go/networkmanagement v1.5.0/go.mod h1:ZnOeZ/evzUdUsnvRt792H0uYEnHQEMaz+REhhzJRcf4= -cloud.google.com/go/networkmanagement v1.6.0/go.mod h1:5pKPqyXjB/sgtvB5xqOemumoQNB7y95Q7S+4rjSOPYY= -cloud.google.com/go/networkmanagement v1.8.0/go.mod h1:Ho/BUGmtyEqrttTgWEe7m+8vDdK74ibQc+Be0q7Fof0= -cloud.google.com/go/networkmanagement v1.9.0/go.mod h1:UTUaEU9YwbCAhhz3jEOHr+2/K/MrBk2XxOLS89LQzFw= -cloud.google.com/go/networkmanagement v1.9.1/go.mod h1:CCSYgrQQvW73EJawO2QamemYcOb57LvrDdDU51F0mcI= -cloud.google.com/go/networksecurity v0.5.0/go.mod h1:xS6fOCoqpVC5zx15Z/MqkfDwH4+m/61A3ODiDV1xmiQ= -cloud.google.com/go/networksecurity v0.6.0/go.mod h1:Q5fjhTr9WMI5mbpRYEbiexTzROf7ZbDzvzCrNl14nyU= -cloud.google.com/go/networksecurity v0.7.0/go.mod h1:mAnzoxx/8TBSyXEeESMy9OOYwo1v+gZ5eMRnsT5bC8k= -cloud.google.com/go/networksecurity v0.8.0/go.mod h1:B78DkqsxFG5zRSVuwYFRZ9Xz8IcQ5iECsNrPn74hKHU= -cloud.google.com/go/networksecurity v0.9.1/go.mod h1:MCMdxOKQ30wsBI1eI659f9kEp4wuuAueoC9AJKSPWZQ= -cloud.google.com/go/networksecurity v0.9.2/go.mod h1:jG0SeAttWzPMUILEHDUvFYdQTl8L/E/KC8iZDj85lEI= -cloud.google.com/go/notebooks v1.2.0/go.mod h1:9+wtppMfVPUeJ8fIWPOq1UnATHISkGXGqTkxeieQ6UY= -cloud.google.com/go/notebooks v1.3.0/go.mod h1:bFR5lj07DtCPC7YAAJ//vHskFBxA5JzYlH68kXVdk34= -cloud.google.com/go/notebooks v1.4.0/go.mod h1:4QPMngcwmgb6uw7Po99B2xv5ufVoIQ7nOGDyL4P8AgA= -cloud.google.com/go/notebooks v1.5.0/go.mod h1:q8mwhnP9aR8Hpfnrc5iN5IBhrXUy8S2vuYs+kBJ/gu0= -cloud.google.com/go/notebooks v1.7.0/go.mod h1:PVlaDGfJgj1fl1S3dUwhFMXFgfYGhYQt2164xOMONmE= -cloud.google.com/go/notebooks v1.8.0/go.mod h1:Lq6dYKOYOWUCTvw5t2q1gp1lAp0zxAxRycayS0iJcqQ= -cloud.google.com/go/notebooks v1.9.1/go.mod h1:zqG9/gk05JrzgBt4ghLzEepPHNwE5jgPcHZRKhlC1A8= -cloud.google.com/go/notebooks v1.10.0/go.mod h1:SOPYMZnttHxqot0SGSFSkRrwE29eqnKPBJFqgWmiK2k= -cloud.google.com/go/notebooks v1.10.1/go.mod h1:5PdJc2SgAybE76kFQCWrTfJolCOUQXF97e+gteUUA6A= -cloud.google.com/go/optimization v1.1.0/go.mod h1:5po+wfvX5AQlPznyVEZjGJTMr4+CAkJf2XSTQOOl9l4= -cloud.google.com/go/optimization v1.2.0/go.mod h1:Lr7SOHdRDENsh+WXVmQhQTrzdu9ybg0NecjHidBq6xs= -cloud.google.com/go/optimization v1.3.1/go.mod h1:IvUSefKiwd1a5p0RgHDbWCIbDFgKuEdB+fPPuP0IDLI= -cloud.google.com/go/optimization v1.4.1/go.mod h1:j64vZQP7h9bO49m2rVaTVoNM0vEBEN5eKPUPbZyXOrk= -cloud.google.com/go/optimization v1.5.0/go.mod h1:evo1OvTxeBRBu6ydPlrIRizKY/LJKo/drDMMRKqGEUU= -cloud.google.com/go/optimization v1.5.1/go.mod h1:NC0gnUD5MWVAF7XLdoYVPmYYVth93Q6BUzqAq3ZwtV8= -cloud.google.com/go/orchestration v1.3.0/go.mod h1:Sj5tq/JpWiB//X/q3Ngwdl5K7B7Y0KZ7bfv0wL6fqVA= -cloud.google.com/go/orchestration v1.4.0/go.mod h1:6W5NLFWs2TlniBphAViZEVhrXRSMgUGDfW7vrWKvsBk= -cloud.google.com/go/orchestration v1.6.0/go.mod h1:M62Bevp7pkxStDfFfTuCOaXgaaqRAga1yKyoMtEoWPQ= -cloud.google.com/go/orchestration v1.8.1/go.mod h1:4sluRF3wgbYVRqz7zJ1/EUNc90TTprliq9477fGobD8= -cloud.google.com/go/orchestration v1.8.2/go.mod h1:T1cP+6WyTmh6LSZzeUhvGf0uZVmJyTx7t8z7Vg87+A0= -cloud.google.com/go/orgpolicy v1.4.0/go.mod h1:xrSLIV4RePWmP9P3tBl8S93lTmlAxjm06NSm2UTmKvE= -cloud.google.com/go/orgpolicy v1.5.0/go.mod h1:hZEc5q3wzwXJaKrsx5+Ewg0u1LxJ51nNFlext7Tanwc= -cloud.google.com/go/orgpolicy v1.10.0/go.mod h1:w1fo8b7rRqlXlIJbVhOMPrwVljyuW5mqssvBtU18ONc= -cloud.google.com/go/orgpolicy v1.11.0/go.mod h1:2RK748+FtVvnfuynxBzdnyu7sygtoZa1za/0ZfpOs1M= -cloud.google.com/go/orgpolicy v1.11.1/go.mod h1:8+E3jQcpZJQliP+zaFfayC2Pg5bmhuLK755wKhIIUCE= -cloud.google.com/go/orgpolicy v1.11.2/go.mod h1:biRDpNwfyytYnmCRWZWxrKF22Nkz9eNVj9zyaBdpm1o= -cloud.google.com/go/osconfig v1.7.0/go.mod h1:oVHeCeZELfJP7XLxcBGTMBvRO+1nQ5tFG9VQTmYS2Fs= -cloud.google.com/go/osconfig v1.8.0/go.mod h1:EQqZLu5w5XA7eKizepumcvWx+m8mJUhEwiPqWiZeEdg= -cloud.google.com/go/osconfig v1.9.0/go.mod h1:Yx+IeIZJ3bdWmzbQU4fxNl8xsZ4amB+dygAwFPlvnNo= -cloud.google.com/go/osconfig v1.10.0/go.mod h1:uMhCzqC5I8zfD9zDEAfvgVhDS8oIjySWh+l4WK6GnWw= -cloud.google.com/go/osconfig v1.11.0/go.mod h1:aDICxrur2ogRd9zY5ytBLV89KEgT2MKB2L/n6x1ooPw= -cloud.google.com/go/osconfig v1.12.0/go.mod h1:8f/PaYzoS3JMVfdfTubkowZYGmAhUCjjwnjqWI7NVBc= -cloud.google.com/go/osconfig v1.12.1/go.mod h1:4CjBxND0gswz2gfYRCUoUzCm9zCABp91EeTtWXyz0tE= -cloud.google.com/go/osconfig v1.12.2/go.mod h1:eh9GPaMZpI6mEJEuhEjUJmaxvQ3gav+fFEJon1Y8Iw0= -cloud.google.com/go/oslogin v1.4.0/go.mod h1:YdgMXWRaElXz/lDk1Na6Fh5orF7gvmJ0FGLIs9LId4E= -cloud.google.com/go/oslogin v1.5.0/go.mod h1:D260Qj11W2qx/HVF29zBg+0fd6YCSjSqLUkY/qEenQU= -cloud.google.com/go/oslogin v1.6.0/go.mod h1:zOJ1O3+dTU8WPlGEkFSh7qeHPPSoxrcMbbK1Nm2iX70= -cloud.google.com/go/oslogin v1.7.0/go.mod h1:e04SN0xO1UNJ1M5GP0vzVBFicIe4O53FOfcixIqTyXo= -cloud.google.com/go/oslogin v1.9.0/go.mod h1:HNavntnH8nzrn8JCTT5fj18FuJLFJc4NaZJtBnQtKFs= -cloud.google.com/go/oslogin v1.10.1/go.mod h1:x692z7yAue5nE7CsSnoG0aaMbNoRJRXO4sn73R+ZqAs= -cloud.google.com/go/oslogin v1.11.0/go.mod h1:8GMTJs4X2nOAUVJiPGqIWVcDaF0eniEto3xlOxaboXE= -cloud.google.com/go/oslogin v1.11.1/go.mod h1:OhD2icArCVNUxKqtK0mcSmKL7lgr0LVlQz+v9s1ujTg= -cloud.google.com/go/phishingprotection v0.5.0/go.mod h1:Y3HZknsK9bc9dMi+oE8Bim0lczMU6hrX0UpADuMefr0= -cloud.google.com/go/phishingprotection v0.6.0/go.mod h1:9Y3LBLgy0kDTcYET8ZH3bq/7qni15yVUoAxiFxnlSUA= -cloud.google.com/go/phishingprotection v0.7.0/go.mod h1:8qJI4QKHoda/sb/7/YmMQ2omRLSLYSu9bU0EKCNI+Lk= -cloud.google.com/go/phishingprotection v0.8.1/go.mod h1:AxonW7GovcA8qdEk13NfHq9hNx5KPtfxXNeUxTDxB6I= -cloud.google.com/go/phishingprotection v0.8.2/go.mod h1:LhJ91uyVHEYKSKcMGhOa14zMMWfbEdxG032oT6ECbC8= -cloud.google.com/go/policytroubleshooter v1.3.0/go.mod h1:qy0+VwANja+kKrjlQuOzmlvscn4RNsAc0e15GGqfMxg= -cloud.google.com/go/policytroubleshooter v1.4.0/go.mod h1:DZT4BcRw3QoO8ota9xw/LKtPa8lKeCByYeKTIf/vxdE= -cloud.google.com/go/policytroubleshooter v1.5.0/go.mod h1:Rz1WfV+1oIpPdN2VvvuboLVRsB1Hclg3CKQ53j9l8vw= -cloud.google.com/go/policytroubleshooter v1.6.0/go.mod h1:zYqaPTsmfvpjm5ULxAyD/lINQxJ0DDsnWOP/GZ7xzBc= -cloud.google.com/go/policytroubleshooter v1.7.1/go.mod h1:0NaT5v3Ag1M7U5r0GfDCpUFkWd9YqpubBWsQlhanRv0= -cloud.google.com/go/policytroubleshooter v1.8.0/go.mod h1:tmn5Ir5EToWe384EuboTcVQT7nTag2+DuH3uHmKd1HU= -cloud.google.com/go/policytroubleshooter v1.9.0/go.mod h1:+E2Lga7TycpeSTj2FsH4oXxTnrbHJGRlKhVZBLGgU64= -cloud.google.com/go/policytroubleshooter v1.9.1/go.mod h1:MYI8i0bCrL8cW+VHN1PoiBTyNZTstCg2WUw2eVC4c4U= -cloud.google.com/go/privatecatalog v0.5.0/go.mod h1:XgosMUvvPyxDjAVNDYxJ7wBW8//hLDDYmnsNcMGq1K0= -cloud.google.com/go/privatecatalog v0.6.0/go.mod h1:i/fbkZR0hLN29eEWiiwue8Pb+GforiEIBnV9yrRUOKI= -cloud.google.com/go/privatecatalog v0.7.0/go.mod h1:2s5ssIFO69F5csTXcwBP7NPFTZvps26xGzvQ2PQaBYg= -cloud.google.com/go/privatecatalog v0.8.0/go.mod h1:nQ6pfaegeDAq/Q5lrfCQzQLhubPiZhSaNhIgfJlnIXs= -cloud.google.com/go/privatecatalog v0.9.1/go.mod h1:0XlDXW2unJXdf9zFz968Hp35gl/bhF4twwpXZAW50JA= -cloud.google.com/go/privatecatalog v0.9.2/go.mod h1:RMA4ATa8IXfzvjrhhK8J6H4wwcztab+oZph3c6WmtFc= +cloud.google.com/go/kms v1.0.0/go.mod h1:nhUehi+w7zht2XrUfvTRNpxrfayBHqP4lu2NSywui/0= cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= -cloud.google.com/go/pubsub v1.26.0/go.mod h1:QgBH3U/jdJy/ftjPhTkyXNj543Tin1pRYcdcPRnFIRI= -cloud.google.com/go/pubsub v1.27.1/go.mod h1:hQN39ymbV9geqBnfQq6Xf63yNhUAhv9CZhzp5O6qsW0= -cloud.google.com/go/pubsub v1.28.0/go.mod h1:vuXFpwaVoIPQMGXqRyUQigu/AX1S3IWugR9xznmcXX8= -cloud.google.com/go/pubsub v1.30.0/go.mod h1:qWi1OPS0B+b5L+Sg6Gmc9zD1Y+HaM0MdUr7LsupY1P4= -cloud.google.com/go/pubsub v1.32.0/go.mod h1:f+w71I33OMyxf9VpMVcZbnG5KSUkCOUHYpFd5U1GdRc= -cloud.google.com/go/pubsub v1.33.0/go.mod h1:f+w71I33OMyxf9VpMVcZbnG5KSUkCOUHYpFd5U1GdRc= -cloud.google.com/go/pubsublite v1.5.0/go.mod h1:xapqNQ1CuLfGi23Yda/9l4bBCKz/wC3KIJ5gKcxveZg= -cloud.google.com/go/pubsublite v1.6.0/go.mod h1:1eFCS0U11xlOuMFV/0iBqw3zP12kddMeCbj/F3FSj9k= -cloud.google.com/go/pubsublite v1.7.0/go.mod h1:8hVMwRXfDfvGm3fahVbtDbiLePT3gpoiJYJY+vxWxVM= -cloud.google.com/go/pubsublite v1.8.1/go.mod h1:fOLdU4f5xldK4RGJrBMm+J7zMWNj/k4PxwEZXy39QS0= -cloud.google.com/go/recaptchaenterprise v1.3.1/go.mod h1:OdD+q+y4XGeAlxRaMn1Y7/GveP6zmq76byL6tjPE7d4= -cloud.google.com/go/recaptchaenterprise/v2 v2.1.0/go.mod h1:w9yVqajwroDNTfGuhmOjPDN//rZGySaf6PtFVcSCa7o= -cloud.google.com/go/recaptchaenterprise/v2 v2.2.0/go.mod h1:/Zu5jisWGeERrd5HnlS3EUGb/D335f9k51B/FVil0jk= -cloud.google.com/go/recaptchaenterprise/v2 v2.3.0/go.mod h1:O9LwGCjrhGHBQET5CA7dd5NwwNQUErSgEDit1DLNTdo= -cloud.google.com/go/recaptchaenterprise/v2 v2.4.0/go.mod h1:Am3LHfOuBstrLrNCBrlI5sbwx9LBg3te2N6hGvHn2mE= -cloud.google.com/go/recaptchaenterprise/v2 v2.5.0/go.mod h1:O8LzcHXN3rz0j+LBC91jrwI3R+1ZSZEWrfL7XHgNo9U= -cloud.google.com/go/recaptchaenterprise/v2 v2.6.0/go.mod h1:RPauz9jeLtB3JVzg6nCbe12qNoaa8pXc4d/YukAmcnA= -cloud.google.com/go/recaptchaenterprise/v2 v2.7.0/go.mod h1:19wVj/fs5RtYtynAPJdDTb69oW0vNHYDBTbB4NvMD9c= -cloud.google.com/go/recaptchaenterprise/v2 v2.7.2/go.mod h1:kR0KjsJS7Jt1YSyWFkseQ756D45kaYNTlDPPaRAvDBU= -cloud.google.com/go/recaptchaenterprise/v2 v2.8.0/go.mod h1:QuE8EdU9dEnesG8/kG3XuJyNsjEqMlMzg3v3scCJ46c= -cloud.google.com/go/recaptchaenterprise/v2 v2.8.1/go.mod h1:JZYZJOeZjgSSTGP4uz7NlQ4/d1w5hGmksVgM0lbEij0= -cloud.google.com/go/recommendationengine v0.5.0/go.mod h1:E5756pJcVFeVgaQv3WNpImkFP8a+RptV6dDLGPILjvg= -cloud.google.com/go/recommendationengine v0.6.0/go.mod h1:08mq2umu9oIqc7tDy8sx+MNJdLG0fUi3vaSVbztHgJ4= -cloud.google.com/go/recommendationengine v0.7.0/go.mod h1:1reUcE3GIu6MeBz/h5xZJqNLuuVjNg1lmWMPyjatzac= -cloud.google.com/go/recommendationengine v0.8.1/go.mod h1:MrZihWwtFYWDzE6Hz5nKcNz3gLizXVIDI/o3G1DLcrE= -cloud.google.com/go/recommendationengine v0.8.2/go.mod h1:QIybYHPK58qir9CV2ix/re/M//Ty10OxjnnhWdaKS1Y= -cloud.google.com/go/recommender v1.5.0/go.mod h1:jdoeiBIVrJe9gQjwd759ecLJbxCDED4A6p+mqoqDvTg= -cloud.google.com/go/recommender v1.6.0/go.mod h1:+yETpm25mcoiECKh9DEScGzIRyDKpZ0cEhWGo+8bo+c= -cloud.google.com/go/recommender v1.7.0/go.mod h1:XLHs/W+T8olwlGOgfQenXBTbIseGclClff6lhFVe9Bs= -cloud.google.com/go/recommender v1.8.0/go.mod h1:PkjXrTT05BFKwxaUxQmtIlrtj0kph108r02ZZQ5FE70= -cloud.google.com/go/recommender v1.9.0/go.mod h1:PnSsnZY7q+VL1uax2JWkt/UegHssxjUVVCrX52CuEmQ= -cloud.google.com/go/recommender v1.10.1/go.mod h1:XFvrE4Suqn5Cq0Lf+mCP6oBHD/yRMA8XxP5sb7Q7gpA= -cloud.google.com/go/recommender v1.11.0/go.mod h1:kPiRQhPyTJ9kyXPCG6u/dlPLbYfFlkwHNRwdzPVAoII= -cloud.google.com/go/recommender v1.11.1/go.mod h1:sGwFFAyI57v2Hc5LbIj+lTwXipGu9NW015rkaEM5B18= -cloud.google.com/go/redis v1.7.0/go.mod h1:V3x5Jq1jzUcg+UNsRvdmsfuFnit1cfe3Z/PGyq/lm4Y= -cloud.google.com/go/redis v1.8.0/go.mod h1:Fm2szCDavWzBk2cDKxrkmWBqoCiL1+Ctwq7EyqBCA/A= -cloud.google.com/go/redis v1.9.0/go.mod h1:HMYQuajvb2D0LvMgZmLDZW8V5aOC/WxstZHiy4g8OiA= -cloud.google.com/go/redis v1.10.0/go.mod h1:ThJf3mMBQtW18JzGgh41/Wld6vnDDc/F/F35UolRZPM= -cloud.google.com/go/redis v1.11.0/go.mod h1:/X6eicana+BWcUda5PpwZC48o37SiFVTFSs0fWAJ7uQ= -cloud.google.com/go/redis v1.13.1/go.mod h1:VP7DGLpE91M6bcsDdMuyCm2hIpB6Vp2hI090Mfd1tcg= -cloud.google.com/go/redis v1.13.2/go.mod h1:0Hg7pCMXS9uz02q+LoEVl5dNHUkIQv+C/3L76fandSA= -cloud.google.com/go/resourcemanager v1.3.0/go.mod h1:bAtrTjZQFJkiWTPDb1WBjzvc6/kifjj4QBYuKCCoqKA= -cloud.google.com/go/resourcemanager v1.4.0/go.mod h1:MwxuzkumyTX7/a3n37gmsT3py7LIXwrShilPh3P1tR0= -cloud.google.com/go/resourcemanager v1.5.0/go.mod h1:eQoXNAiAvCf5PXxWxXjhKQoTMaUSNrEfg+6qdf/wots= -cloud.google.com/go/resourcemanager v1.6.0/go.mod h1:YcpXGRs8fDzcUl1Xw8uOVmI8JEadvhRIkoXXUNVYcVo= -cloud.google.com/go/resourcemanager v1.7.0/go.mod h1:HlD3m6+bwhzj9XCouqmeiGuni95NTrExfhoSrkC/3EI= -cloud.google.com/go/resourcemanager v1.9.1/go.mod h1:dVCuosgrh1tINZ/RwBufr8lULmWGOkPS8gL5gqyjdT8= -cloud.google.com/go/resourcemanager v1.9.2/go.mod h1:OujkBg1UZg5lX2yIyMo5Vz9O5hf7XQOSV7WxqxxMtQE= -cloud.google.com/go/resourcesettings v1.3.0/go.mod h1:lzew8VfESA5DQ8gdlHwMrqZs1S9V87v3oCnKCWoOuQU= -cloud.google.com/go/resourcesettings v1.4.0/go.mod h1:ldiH9IJpcrlC3VSuCGvjR5of/ezRrOxFtpJoJo5SmXg= -cloud.google.com/go/resourcesettings v1.5.0/go.mod h1:+xJF7QSG6undsQDfsCJyqWXyBwUoJLhetkRMDRnIoXA= -cloud.google.com/go/resourcesettings v1.6.1/go.mod h1:M7mk9PIZrC5Fgsu1kZJci6mpgN8o0IUzVx3eJU3y4Jw= -cloud.google.com/go/resourcesettings v1.6.2/go.mod h1:mJIEDd9MobzunWMeniaMp6tzg4I2GvD3TTmPkc8vBXk= -cloud.google.com/go/retail v1.8.0/go.mod h1:QblKS8waDmNUhghY2TI9O3JLlFk8jybHeV4BF19FrE4= -cloud.google.com/go/retail v1.9.0/go.mod h1:g6jb6mKuCS1QKnH/dpu7isX253absFl6iE92nHwlBUY= -cloud.google.com/go/retail v1.10.0/go.mod h1:2gDk9HsL4HMS4oZwz6daui2/jmKvqShXKQuB2RZ+cCc= -cloud.google.com/go/retail v1.11.0/go.mod h1:MBLk1NaWPmh6iVFSz9MeKG/Psyd7TAgm6y/9L2B4x9Y= -cloud.google.com/go/retail v1.12.0/go.mod h1:UMkelN/0Z8XvKymXFbD4EhFJlYKRx1FGhQkVPU5kF14= -cloud.google.com/go/retail v1.14.1/go.mod h1:y3Wv3Vr2k54dLNIrCzenyKG8g8dhvhncT2NcNjb/6gE= -cloud.google.com/go/retail v1.14.2/go.mod h1:W7rrNRChAEChX336QF7bnMxbsjugcOCPU44i5kbLiL8= -cloud.google.com/go/run v0.2.0/go.mod h1:CNtKsTA1sDcnqqIFR3Pb5Tq0usWxJJvsWOCPldRU3Do= -cloud.google.com/go/run v0.3.0/go.mod h1:TuyY1+taHxTjrD0ZFk2iAR+xyOXEA0ztb7U3UNA0zBo= -cloud.google.com/go/run v0.8.0/go.mod h1:VniEnuBwqjigv0A7ONfQUaEItaiCRVujlMqerPPiktM= -cloud.google.com/go/run v0.9.0/go.mod h1:Wwu+/vvg8Y+JUApMwEDfVfhetv30hCG4ZwDR/IXl2Qg= -cloud.google.com/go/run v1.2.0/go.mod h1:36V1IlDzQ0XxbQjUx6IYbw8H3TJnWvhii963WW3B/bo= -cloud.google.com/go/run v1.3.0/go.mod h1:S/osX/4jIPZGg+ssuqh6GNgg7syixKe3YnprwehzHKU= -cloud.google.com/go/run v1.3.1/go.mod h1:cymddtZOzdwLIAsmS6s+Asl4JoXIDm/K1cpZTxV4Q5s= -cloud.google.com/go/scheduler v1.4.0/go.mod h1:drcJBmxF3aqZJRhmkHQ9b3uSSpQoltBPGPxGAWROx6s= -cloud.google.com/go/scheduler v1.5.0/go.mod h1:ri073ym49NW3AfT6DZi21vLZrG07GXr5p3H1KxN5QlI= -cloud.google.com/go/scheduler v1.6.0/go.mod h1:SgeKVM7MIwPn3BqtcBntpLyrIJftQISRrYB5ZtT+KOk= -cloud.google.com/go/scheduler v1.7.0/go.mod h1:jyCiBqWW956uBjjPMMuX09n3x37mtyPJegEWKxRsn44= -cloud.google.com/go/scheduler v1.8.0/go.mod h1:TCET+Y5Gp1YgHT8py4nlg2Sew8nUHMqcpousDgXJVQc= -cloud.google.com/go/scheduler v1.9.0/go.mod h1:yexg5t+KSmqu+njTIh3b7oYPheFtBWGcbVUYF1GGMIc= -cloud.google.com/go/scheduler v1.10.1/go.mod h1:R63Ldltd47Bs4gnhQkmNDse5w8gBRrhObZ54PxgR2Oo= -cloud.google.com/go/scheduler v1.10.2/go.mod h1:O3jX6HRH5eKCA3FutMw375XHZJudNIKVonSCHv7ropY= -cloud.google.com/go/secretmanager v1.6.0/go.mod h1:awVa/OXF6IiyaU1wQ34inzQNc4ISIDIrId8qE5QGgKA= -cloud.google.com/go/secretmanager v1.8.0/go.mod h1:hnVgi/bN5MYHd3Gt0SPuTPPp5ENina1/LxM+2W9U9J4= -cloud.google.com/go/secretmanager v1.9.0/go.mod h1:b71qH2l1yHmWQHt9LC80akm86mX8AL6X1MA01dW8ht4= -cloud.google.com/go/secretmanager v1.10.0/go.mod h1:MfnrdvKMPNra9aZtQFvBcvRU54hbPD8/HayQdlUgJpU= -cloud.google.com/go/secretmanager v1.11.1/go.mod h1:znq9JlXgTNdBeQk9TBW/FnR/W4uChEKGeqQWAJ8SXFw= -cloud.google.com/go/secretmanager v1.11.2/go.mod h1:MQm4t3deoSub7+WNwiC4/tRYgDBHJgJPvswqQVB1Vss= -cloud.google.com/go/security v1.5.0/go.mod h1:lgxGdyOKKjHL4YG3/YwIL2zLqMFCKs0UbQwgyZmfJl4= -cloud.google.com/go/security v1.7.0/go.mod h1:mZklORHl6Bg7CNnnjLH//0UlAlaXqiG7Lb9PsPXLfD0= -cloud.google.com/go/security v1.8.0/go.mod h1:hAQOwgmaHhztFhiQ41CjDODdWP0+AE1B3sX4OFlq+GU= -cloud.google.com/go/security v1.9.0/go.mod h1:6Ta1bO8LXI89nZnmnsZGp9lVoVWXqsVbIq/t9dzI+2Q= -cloud.google.com/go/security v1.10.0/go.mod h1:QtOMZByJVlibUT2h9afNDWRZ1G96gVywH8T5GUSb9IA= -cloud.google.com/go/security v1.12.0/go.mod h1:rV6EhrpbNHrrxqlvW0BWAIawFWq3X90SduMJdFwtLB8= -cloud.google.com/go/security v1.13.0/go.mod h1:Q1Nvxl1PAgmeW0y3HTt54JYIvUdtcpYKVfIB8AOMZ+0= -cloud.google.com/go/security v1.15.1/go.mod h1:MvTnnbsWnehoizHi09zoiZob0iCHVcL4AUBj76h9fXA= -cloud.google.com/go/security v1.15.2/go.mod h1:2GVE/v1oixIRHDaClVbHuPcZwAqFM28mXuAKCfMgYIg= -cloud.google.com/go/securitycenter v1.13.0/go.mod h1:cv5qNAqjY84FCN6Y9z28WlkKXyWsgLO832YiWwkCWcU= -cloud.google.com/go/securitycenter v1.14.0/go.mod h1:gZLAhtyKv85n52XYWt6RmeBdydyxfPeTrpToDPw4Auc= -cloud.google.com/go/securitycenter v1.15.0/go.mod h1:PeKJ0t8MoFmmXLXWm41JidyzI3PJjd8sXWaVqg43WWk= -cloud.google.com/go/securitycenter v1.16.0/go.mod h1:Q9GMaLQFUD+5ZTabrbujNWLtSLZIZF7SAR0wWECrjdk= -cloud.google.com/go/securitycenter v1.18.1/go.mod h1:0/25gAzCM/9OL9vVx4ChPeM/+DlfGQJDwBy/UC8AKK0= -cloud.google.com/go/securitycenter v1.19.0/go.mod h1:LVLmSg8ZkkyaNy4u7HCIshAngSQ8EcIRREP3xBnyfag= -cloud.google.com/go/securitycenter v1.23.0/go.mod h1:8pwQ4n+Y9WCWM278R8W3nF65QtY172h4S8aXyI9/hsQ= -cloud.google.com/go/securitycenter v1.23.1/go.mod h1:w2HV3Mv/yKhbXKwOCu2i8bCuLtNP1IMHuiYQn4HJq5s= -cloud.google.com/go/servicecontrol v1.4.0/go.mod h1:o0hUSJ1TXJAmi/7fLJAedOovnujSEvjKCAFNXPQ1RaU= -cloud.google.com/go/servicecontrol v1.5.0/go.mod h1:qM0CnXHhyqKVuiZnGKrIurvVImCs8gmqWsDoqe9sU1s= -cloud.google.com/go/servicecontrol v1.10.0/go.mod h1:pQvyvSRh7YzUF2efw7H87V92mxU8FnFDawMClGCNuAA= -cloud.google.com/go/servicecontrol v1.11.0/go.mod h1:kFmTzYzTUIuZs0ycVqRHNaNhgR+UMUpw9n02l/pY+mc= -cloud.google.com/go/servicecontrol v1.11.1/go.mod h1:aSnNNlwEFBY+PWGQ2DoM0JJ/QUXqV5/ZD9DOLB7SnUk= -cloud.google.com/go/servicedirectory v1.4.0/go.mod h1:gH1MUaZCgtP7qQiI+F+A+OpeKF/HQWgtAddhTbhL2bs= -cloud.google.com/go/servicedirectory v1.5.0/go.mod h1:QMKFL0NUySbpZJ1UZs3oFAmdvVxhhxB6eJ/Vlp73dfg= -cloud.google.com/go/servicedirectory v1.6.0/go.mod h1:pUlbnWsLH9c13yGkxCmfumWEPjsRs1RlmJ4pqiNjVL4= -cloud.google.com/go/servicedirectory v1.7.0/go.mod h1:5p/U5oyvgYGYejufvxhgwjL8UVXjkuw7q5XcG10wx1U= -cloud.google.com/go/servicedirectory v1.8.0/go.mod h1:srXodfhY1GFIPvltunswqXpVxFPpZjf8nkKQT7XcXaY= -cloud.google.com/go/servicedirectory v1.9.0/go.mod h1:29je5JjiygNYlmsGz8k6o+OZ8vd4f//bQLtvzkPPT/s= -cloud.google.com/go/servicedirectory v1.10.1/go.mod h1:Xv0YVH8s4pVOwfM/1eMTl0XJ6bzIOSLDt8f8eLaGOxQ= -cloud.google.com/go/servicedirectory v1.11.0/go.mod h1:Xv0YVH8s4pVOwfM/1eMTl0XJ6bzIOSLDt8f8eLaGOxQ= -cloud.google.com/go/servicedirectory v1.11.1/go.mod h1:tJywXimEWzNzw9FvtNjsQxxJ3/41jseeILgwU/QLrGI= -cloud.google.com/go/servicemanagement v1.4.0/go.mod h1:d8t8MDbezI7Z2R1O/wu8oTggo3BI2GKYbdG4y/SJTco= -cloud.google.com/go/servicemanagement v1.5.0/go.mod h1:XGaCRe57kfqu4+lRxaFEAuqmjzF0r+gWHjWqKqBvKFo= -cloud.google.com/go/servicemanagement v1.6.0/go.mod h1:aWns7EeeCOtGEX4OvZUWCCJONRZeFKiptqKf1D0l/Jc= -cloud.google.com/go/servicemanagement v1.8.0/go.mod h1:MSS2TDlIEQD/fzsSGfCdJItQveu9NXnUniTrq/L8LK4= -cloud.google.com/go/serviceusage v1.3.0/go.mod h1:Hya1cozXM4SeSKTAgGXgj97GlqUvF5JaoXacR1JTP/E= -cloud.google.com/go/serviceusage v1.4.0/go.mod h1:SB4yxXSaYVuUBYUml6qklyONXNLt83U0Rb+CXyhjEeU= -cloud.google.com/go/serviceusage v1.5.0/go.mod h1:w8U1JvqUqwJNPEOTQjrMHkw3IaIFLoLsPLvsE3xueec= -cloud.google.com/go/serviceusage v1.6.0/go.mod h1:R5wwQcbOWsyuOfbP9tGdAnCAc6B9DRwPG1xtWMDeuPA= -cloud.google.com/go/shell v1.3.0/go.mod h1:VZ9HmRjZBsjLGXusm7K5Q5lzzByZmJHf1d0IWHEN5X4= -cloud.google.com/go/shell v1.4.0/go.mod h1:HDxPzZf3GkDdhExzD/gs8Grqk+dmYcEjGShZgYa9URw= -cloud.google.com/go/shell v1.6.0/go.mod h1:oHO8QACS90luWgxP3N9iZVuEiSF84zNyLytb+qE2f9A= -cloud.google.com/go/shell v1.7.1/go.mod h1:u1RaM+huXFaTojTbW4g9P5emOrrmLE69KrxqQahKn4g= -cloud.google.com/go/shell v1.7.2/go.mod h1:KqRPKwBV0UyLickMn0+BY1qIyE98kKyI216sH/TuHmc= -cloud.google.com/go/spanner v1.41.0/go.mod h1:MLYDBJR/dY4Wt7ZaMIQ7rXOTLjYrmxLE/5ve9vFfWos= -cloud.google.com/go/spanner v1.44.0/go.mod h1:G8XIgYdOK+Fbcpbs7p2fiprDw4CaZX63whnSMLVBxjk= -cloud.google.com/go/spanner v1.45.0/go.mod h1:FIws5LowYz8YAE1J8fOS7DJup8ff7xJeetWEo5REA2M= -cloud.google.com/go/spanner v1.47.0/go.mod h1:IXsJwVW2j4UKs0eYDqodab6HgGuA1bViSqW4uH9lfUI= -cloud.google.com/go/spanner v1.49.0/go.mod h1:eGj9mQGK8+hkgSVbHNQ06pQ4oS+cyc4tXXd6Dif1KoM= -cloud.google.com/go/spanner v1.50.0/go.mod h1:eGj9mQGK8+hkgSVbHNQ06pQ4oS+cyc4tXXd6Dif1KoM= -cloud.google.com/go/speech v1.6.0/go.mod h1:79tcr4FHCimOp56lwC01xnt/WPJZc4v3gzyT7FoBkCM= -cloud.google.com/go/speech v1.7.0/go.mod h1:KptqL+BAQIhMsj1kOP2la5DSEEerPDuOP/2mmkhHhZQ= -cloud.google.com/go/speech v1.8.0/go.mod h1:9bYIl1/tjsAnMgKGHKmBZzXKEkGgtU+MpdDPTE9f7y0= -cloud.google.com/go/speech v1.9.0/go.mod h1:xQ0jTcmnRFFM2RfX/U+rk6FQNUF6DQlydUSyoooSpco= -cloud.google.com/go/speech v1.14.1/go.mod h1:gEosVRPJ9waG7zqqnsHpYTOoAS4KouMRLDFMekpJ0J0= -cloud.google.com/go/speech v1.15.0/go.mod h1:y6oH7GhqCaZANH7+Oe0BhgIogsNInLlz542tg3VqeYI= -cloud.google.com/go/speech v1.17.1/go.mod h1:8rVNzU43tQvxDaGvqOhpDqgkJTFowBpDvCJ14kGlJYo= -cloud.google.com/go/speech v1.19.0/go.mod h1:8rVNzU43tQvxDaGvqOhpDqgkJTFowBpDvCJ14kGlJYo= -cloud.google.com/go/speech v1.19.1/go.mod h1:WcuaWz/3hOlzPFOVo9DUsblMIHwxP589y6ZMtaG+iAA= cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= -cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo= -cloud.google.com/go/storage v1.22.1/go.mod h1:S8N1cAStu7BOeFfE8KAQzmyyLkK8p/vmRq6kuBTW58Y= -cloud.google.com/go/storage v1.23.0/go.mod h1:vOEEDNFnciUMhBeT6hsJIn3ieU5cFRmzeLgDvXzfIXc= -cloud.google.com/go/storage v1.27.0/go.mod h1:x9DOL8TK/ygDUMieqwfhdpQryTeEkhGKMi80i/iqR2s= -cloud.google.com/go/storage v1.28.1/go.mod h1:Qnisd4CqDdo6BGs2AD5LLnEsmSQ80wQ5ogcBBKhU86Y= -cloud.google.com/go/storage v1.29.0/go.mod h1:4puEjyTKnku6gfKoTfNOU/W+a9JyuVNxjpS5GBrB8h4= -cloud.google.com/go/storage v1.30.1/go.mod h1:NfxhC0UJE1aXSx7CIIbCf7y9HKT7BiccwkR7+P7gN8E= -cloud.google.com/go/storagetransfer v1.5.0/go.mod h1:dxNzUopWy7RQevYFHewchb29POFv3/AaBgnhqzqiK0w= -cloud.google.com/go/storagetransfer v1.6.0/go.mod h1:y77xm4CQV/ZhFZH75PLEXY0ROiS7Gh6pSKrM8dJyg6I= -cloud.google.com/go/storagetransfer v1.7.0/go.mod h1:8Giuj1QNb1kfLAiWM1bN6dHzfdlDAVC9rv9abHot2W4= -cloud.google.com/go/storagetransfer v1.8.0/go.mod h1:JpegsHHU1eXg7lMHkvf+KE5XDJ7EQu0GwNJbbVGanEw= -cloud.google.com/go/storagetransfer v1.10.0/go.mod h1:DM4sTlSmGiNczmV6iZyceIh2dbs+7z2Ayg6YAiQlYfA= -cloud.google.com/go/storagetransfer v1.10.1/go.mod h1:rS7Sy0BtPviWYTTJVWCSV4QrbBitgPeuK4/FKa4IdLs= -cloud.google.com/go/talent v1.1.0/go.mod h1:Vl4pt9jiHKvOgF9KoZo6Kob9oV4lwd/ZD5Cto54zDRw= -cloud.google.com/go/talent v1.2.0/go.mod h1:MoNF9bhFQbiJ6eFD3uSsg0uBALw4n4gaCaEjBw9zo8g= -cloud.google.com/go/talent v1.3.0/go.mod h1:CmcxwJ/PKfRgd1pBjQgU6W3YBwiewmUzQYH5HHmSCmM= -cloud.google.com/go/talent v1.4.0/go.mod h1:ezFtAgVuRf8jRsvyE6EwmbTK5LKciD4KVnHuDEFmOOA= -cloud.google.com/go/talent v1.5.0/go.mod h1:G+ODMj9bsasAEJkQSzO2uHQWXHHXUomArjWQQYkqK6c= -cloud.google.com/go/talent v1.6.2/go.mod h1:CbGvmKCG61mkdjcqTcLOkb2ZN1SrQI8MDyma2l7VD24= -cloud.google.com/go/talent v1.6.3/go.mod h1:xoDO97Qd4AK43rGjJvyBHMskiEf3KulgYzcH6YWOVoo= -cloud.google.com/go/texttospeech v1.4.0/go.mod h1:FX8HQHA6sEpJ7rCMSfXuzBcysDAuWusNNNvN9FELDd8= -cloud.google.com/go/texttospeech v1.5.0/go.mod h1:oKPLhR4n4ZdQqWKURdwxMy0uiTS1xU161C8W57Wkea4= -cloud.google.com/go/texttospeech v1.6.0/go.mod h1:YmwmFT8pj1aBblQOI3TfKmwibnsfvhIBzPXcW4EBovc= -cloud.google.com/go/texttospeech v1.7.1/go.mod h1:m7QfG5IXxeneGqTapXNxv2ItxP/FS0hCZBwXYqucgSk= -cloud.google.com/go/texttospeech v1.7.2/go.mod h1:VYPT6aTOEl3herQjFHYErTlSZJ4vB00Q2ZTmuVgluD4= -cloud.google.com/go/tpu v1.3.0/go.mod h1:aJIManG0o20tfDQlRIej44FcwGGl/cD0oiRyMKG19IQ= -cloud.google.com/go/tpu v1.4.0/go.mod h1:mjZaX8p0VBgllCzF6wcU2ovUXN9TONFLd7iz227X2Xg= -cloud.google.com/go/tpu v1.5.0/go.mod h1:8zVo1rYDFuW2l4yZVY0R0fb/v44xLh3llq7RuV61fPM= -cloud.google.com/go/tpu v1.6.1/go.mod h1:sOdcHVIgDEEOKuqUoi6Fq53MKHJAtOwtz0GuKsWSH3E= -cloud.google.com/go/tpu v1.6.2/go.mod h1:NXh3NDwt71TsPZdtGWgAG5ThDfGd32X1mJ2cMaRlVgU= -cloud.google.com/go/trace v1.3.0/go.mod h1:FFUE83d9Ca57C+K8rDl/Ih8LwOzWIV1krKgxg6N0G28= -cloud.google.com/go/trace v1.4.0/go.mod h1:UG0v8UBqzusp+z63o7FK74SdFE+AXpCLdFb1rshXG+Y= -cloud.google.com/go/trace v1.8.0/go.mod h1:zH7vcsbAhklH8hWFig58HvxcxyQbaIqMarMg9hn5ECA= -cloud.google.com/go/trace v1.9.0/go.mod h1:lOQqpE5IaWY0Ixg7/r2SjixMuc6lfTFeO4QGM4dQWOk= -cloud.google.com/go/trace v1.10.1/go.mod h1:gbtL94KE5AJLH3y+WVpfWILmqgc6dXcqgNXdOPAQTYk= -cloud.google.com/go/trace v1.10.2/go.mod h1:NPXemMi6MToRFcSxRl2uDnu/qAlAQ3oULUphcHGh1vA= -cloud.google.com/go/translate v1.3.0/go.mod h1:gzMUwRjvOqj5i69y/LYLd8RrNQk+hOmIXTi9+nb3Djs= -cloud.google.com/go/translate v1.4.0/go.mod h1:06Dn/ppvLD6WvA5Rhdp029IX2Mi3Mn7fpMRLPvXT5Wg= -cloud.google.com/go/translate v1.5.0/go.mod h1:29YDSYveqqpA1CQFD7NQuP49xymq17RXNaUDdc0mNu0= -cloud.google.com/go/translate v1.6.0/go.mod h1:lMGRudH1pu7I3n3PETiOB2507gf3HnfLV8qlkHZEyos= -cloud.google.com/go/translate v1.7.0/go.mod h1:lMGRudH1pu7I3n3PETiOB2507gf3HnfLV8qlkHZEyos= -cloud.google.com/go/translate v1.8.1/go.mod h1:d1ZH5aaOA0CNhWeXeC8ujd4tdCFw8XoNWRljklu5RHs= -cloud.google.com/go/translate v1.8.2/go.mod h1:d1ZH5aaOA0CNhWeXeC8ujd4tdCFw8XoNWRljklu5RHs= -cloud.google.com/go/translate v1.9.0/go.mod h1:d1ZH5aaOA0CNhWeXeC8ujd4tdCFw8XoNWRljklu5RHs= -cloud.google.com/go/translate v1.9.1/go.mod h1:TWIgDZknq2+JD4iRcojgeDtqGEp154HN/uL6hMvylS8= -cloud.google.com/go/video v1.8.0/go.mod h1:sTzKFc0bUSByE8Yoh8X0mn8bMymItVGPfTuUBUyRgxk= -cloud.google.com/go/video v1.9.0/go.mod h1:0RhNKFRF5v92f8dQt0yhaHrEuH95m068JYOvLZYnJSw= -cloud.google.com/go/video v1.12.0/go.mod h1:MLQew95eTuaNDEGriQdcYn0dTwf9oWiA4uYebxM5kdg= -cloud.google.com/go/video v1.13.0/go.mod h1:ulzkYlYgCp15N2AokzKjy7MQ9ejuynOJdf1tR5lGthk= -cloud.google.com/go/video v1.14.0/go.mod h1:SkgaXwT+lIIAKqWAJfktHT/RbgjSuY6DobxEp0C5yTQ= -cloud.google.com/go/video v1.15.0/go.mod h1:SkgaXwT+lIIAKqWAJfktHT/RbgjSuY6DobxEp0C5yTQ= -cloud.google.com/go/video v1.17.1/go.mod h1:9qmqPqw/Ib2tLqaeHgtakU+l5TcJxCJbhFXM7UJjVzU= -cloud.google.com/go/video v1.19.0/go.mod h1:9qmqPqw/Ib2tLqaeHgtakU+l5TcJxCJbhFXM7UJjVzU= -cloud.google.com/go/video v1.20.0/go.mod h1:U3G3FTnsvAGqglq9LxgqzOiBc/Nt8zis8S+850N2DUM= -cloud.google.com/go/video v1.20.1/go.mod h1:3gJS+iDprnj8SY6pe0SwLeC5BUW80NjhwX7INWEuWGU= -cloud.google.com/go/videointelligence v1.6.0/go.mod h1:w0DIDlVRKtwPCn/C4iwZIJdvC69yInhW0cfi+p546uU= -cloud.google.com/go/videointelligence v1.7.0/go.mod h1:k8pI/1wAhjznARtVT9U1llUaFNPh7muw8QyOUpavru4= -cloud.google.com/go/videointelligence v1.8.0/go.mod h1:dIcCn4gVDdS7yte/w+koiXn5dWVplOZkE+xwG9FgK+M= -cloud.google.com/go/videointelligence v1.9.0/go.mod h1:29lVRMPDYHikk3v8EdPSaL8Ku+eMzDljjuvRs105XoU= -cloud.google.com/go/videointelligence v1.10.0/go.mod h1:LHZngX1liVtUhZvi2uNS0VQuOzNi2TkY1OakiuoUOjU= -cloud.google.com/go/videointelligence v1.11.1/go.mod h1:76xn/8InyQHarjTWsBR058SmlPCwQjgcvoW0aZykOvo= -cloud.google.com/go/videointelligence v1.11.2/go.mod h1:ocfIGYtIVmIcWk1DsSGOoDiXca4vaZQII1C85qtoplc= -cloud.google.com/go/vision v1.2.0/go.mod h1:SmNwgObm5DpFBme2xpyOyasvBc1aPdjvMk2bBk0tKD0= -cloud.google.com/go/vision/v2 v2.2.0/go.mod h1:uCdV4PpN1S0jyCyq8sIM42v2Y6zOLkZs+4R9LrGYwFo= -cloud.google.com/go/vision/v2 v2.3.0/go.mod h1:UO61abBx9QRMFkNBbf1D8B1LXdS2cGiiCRx0vSpZoUo= -cloud.google.com/go/vision/v2 v2.4.0/go.mod h1:VtI579ll9RpVTrdKdkMzckdnwMyX2JILb+MhPqRbPsY= -cloud.google.com/go/vision/v2 v2.5.0/go.mod h1:MmaezXOOE+IWa+cS7OhRRLK2cNv1ZL98zhqFFZaaH2E= -cloud.google.com/go/vision/v2 v2.6.0/go.mod h1:158Hes0MvOS9Z/bDMSFpjwsUrZ5fPrdwuyyvKSGAGMY= -cloud.google.com/go/vision/v2 v2.7.0/go.mod h1:H89VysHy21avemp6xcf9b9JvZHVehWbET0uT/bcuY/0= -cloud.google.com/go/vision/v2 v2.7.2/go.mod h1:jKa8oSYBWhYiXarHPvP4USxYANYUEdEsQrloLjrSwJU= -cloud.google.com/go/vision/v2 v2.7.3/go.mod h1:V0IcLCY7W+hpMKXK1JYE0LV5llEqVmj+UJChjvA1WsM= -cloud.google.com/go/vmmigration v1.2.0/go.mod h1:IRf0o7myyWFSmVR1ItrBSFLFD/rJkfDCUTO4vLlJvsE= -cloud.google.com/go/vmmigration v1.3.0/go.mod h1:oGJ6ZgGPQOFdjHuocGcLqX4lc98YQ7Ygq8YQwHh9A7g= -cloud.google.com/go/vmmigration v1.5.0/go.mod h1:E4YQ8q7/4W9gobHjQg4JJSgXXSgY21nA5r8swQV+Xxc= -cloud.google.com/go/vmmigration v1.6.0/go.mod h1:bopQ/g4z+8qXzichC7GW1w2MjbErL54rk3/C843CjfY= -cloud.google.com/go/vmmigration v1.7.1/go.mod h1:WD+5z7a/IpZ5bKK//YmT9E047AD+rjycCAvyMxGJbro= -cloud.google.com/go/vmmigration v1.7.2/go.mod h1:iA2hVj22sm2LLYXGPT1pB63mXHhrH1m/ruux9TwWLd8= -cloud.google.com/go/vmwareengine v0.1.0/go.mod h1:RsdNEf/8UDvKllXhMz5J40XxDrNJNN4sagiox+OI208= -cloud.google.com/go/vmwareengine v0.2.2/go.mod h1:sKdctNJxb3KLZkE/6Oui94iw/xs9PRNC2wnNLXsHvH8= -cloud.google.com/go/vmwareengine v0.3.0/go.mod h1:wvoyMvNWdIzxMYSpH/R7y2h5h3WFkx6d+1TIsP39WGY= -cloud.google.com/go/vmwareengine v0.4.1/go.mod h1:Px64x+BvjPZwWuc4HdmVhoygcXqEkGHXoa7uyfTgSI0= -cloud.google.com/go/vmwareengine v1.0.0/go.mod h1:Px64x+BvjPZwWuc4HdmVhoygcXqEkGHXoa7uyfTgSI0= -cloud.google.com/go/vmwareengine v1.0.1/go.mod h1:aT3Xsm5sNx0QShk1Jc1B8OddrxAScYLwzVoaiXfdzzk= -cloud.google.com/go/vpcaccess v1.4.0/go.mod h1:aQHVbTWDYUR1EbTApSVvMq1EnT57ppDmQzZ3imqIk4w= -cloud.google.com/go/vpcaccess v1.5.0/go.mod h1:drmg4HLk9NkZpGfCmZ3Tz0Bwnm2+DKqViEpeEpOq0m8= -cloud.google.com/go/vpcaccess v1.6.0/go.mod h1:wX2ILaNhe7TlVa4vC5xce1bCnqE3AeH27RV31lnmZes= -cloud.google.com/go/vpcaccess v1.7.1/go.mod h1:FogoD46/ZU+JUBX9D606X21EnxiszYi2tArQwLY4SXs= -cloud.google.com/go/vpcaccess v1.7.2/go.mod h1:mmg/MnRHv+3e8FJUjeSibVFvQF1cCy2MsFaFqxeY1HU= -cloud.google.com/go/webrisk v1.4.0/go.mod h1:Hn8X6Zr+ziE2aNd8SliSDWpEnSS1u4R9+xXZmFiHmGE= -cloud.google.com/go/webrisk v1.5.0/go.mod h1:iPG6fr52Tv7sGk0H6qUFzmL3HHZev1htXuWDEEsqMTg= -cloud.google.com/go/webrisk v1.6.0/go.mod h1:65sW9V9rOosnc9ZY7A7jsy1zoHS5W9IAXv6dGqhMQMc= -cloud.google.com/go/webrisk v1.7.0/go.mod h1:mVMHgEYH0r337nmt1JyLthzMr6YxwN1aAIEc2fTcq7A= -cloud.google.com/go/webrisk v1.8.0/go.mod h1:oJPDuamzHXgUc+b8SiHRcVInZQuybnvEW72PqTc7sSg= -cloud.google.com/go/webrisk v1.9.1/go.mod h1:4GCmXKcOa2BZcZPn6DCEvE7HypmEJcJkr4mtM+sqYPc= -cloud.google.com/go/webrisk v1.9.2/go.mod h1:pY9kfDgAqxUpDBOrG4w8deLfhvJmejKB0qd/5uQIPBc= -cloud.google.com/go/websecurityscanner v1.3.0/go.mod h1:uImdKm2wyeXQevQJXeh8Uun/Ym1VqworNDlBXQevGMo= -cloud.google.com/go/websecurityscanner v1.4.0/go.mod h1:ebit/Fp0a+FWu5j4JOmJEV8S8CzdTkAS77oDsiSqYWQ= -cloud.google.com/go/websecurityscanner v1.5.0/go.mod h1:Y6xdCPy81yi0SQnDY1xdNTNpfY1oAgXUlcfN3B3eSng= -cloud.google.com/go/websecurityscanner v1.6.1/go.mod h1:Njgaw3rttgRHXzwCB8kgCYqv5/rGpFCsBOvPbYgszpg= -cloud.google.com/go/websecurityscanner v1.6.2/go.mod h1:7YgjuU5tun7Eg2kpKgGnDuEOXWIrh8x8lWrJT4zfmas= -cloud.google.com/go/workflows v1.6.0/go.mod h1:6t9F5h/unJz41YqfBmqSASJSXccBLtD1Vwf+KmJENM0= -cloud.google.com/go/workflows v1.7.0/go.mod h1:JhSrZuVZWuiDfKEFxU0/F1PQjmpnpcoISEXH2bcHC3M= -cloud.google.com/go/workflows v1.8.0/go.mod h1:ysGhmEajwZxGn1OhGOGKsTXc5PyxOc0vfKf5Af+to4M= -cloud.google.com/go/workflows v1.9.0/go.mod h1:ZGkj1aFIOd9c8Gerkjjq7OW7I5+l6cSvT3ujaO/WwSA= -cloud.google.com/go/workflows v1.10.0/go.mod h1:fZ8LmRmZQWacon9UCX1r/g/DfAXx5VcPALq2CxzdePw= -cloud.google.com/go/workflows v1.11.1/go.mod h1:Z+t10G1wF7h8LgdY/EmRcQY8ptBD/nvofaL6FqlET6g= -cloud.google.com/go/workflows v1.12.0/go.mod h1:PYhSk2b6DhZ508tj8HXKaBh+OFe+xdl0dHF/tJdzPQM= -cloud.google.com/go/workflows v1.12.1/go.mod h1:5A95OhD/edtOhQd/O741NSfIMezNTbCwLM1P1tBRGHM= -collectd.org v0.3.0/go.mod h1:A/8DzQBkF6abtvrT2j/AU/4tiBgJWYyh0y/oB/4MlWE= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= -gioui.org v0.0.0-20210308172011-57750fc8a0a6/go.mod h1:RSH6KIUZ0p2xy5zHDxgAM4zumjgTw83q2ge/PI+yyw8= -git.sr.ht/~sbinet/gg v0.3.1/go.mod h1:KGYtlADtqsqANL9ueOFkWymvzUvLMQllU5Ixo+8v3pc= -github.com/AndreasBriese/bbloom v0.0.0-20190306092124-e2d15f34fcf9/go.mod h1:bOvUY6CB00SOBii9/FifXqc0awNKxLFCL/+pkDPuyl8= -github.com/Azure/azure-sdk-for-go/sdk/azcore v0.21.1/go.mod h1:fBF9PQNqB8scdgpZ3ufzaLntG0AG7C1WjPMsiFOmfHM= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0/go.mod h1:uGG2W01BaETf0Ozp+QxxKJdMBNRWPdstHG0Fmdwn1/U= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.6.0/go.mod h1:bjGvMhVMb+EEm3VRNQawDMUyMMjo+S5ewNjflkep/0Q= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.7.0/go.mod h1:bjGvMhVMb+EEm3VRNQawDMUyMMjo+S5ewNjflkep/0Q= -github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0/go.mod h1:+6sju8gk8FRmSajX3Oz4G5Gm7P+mbqE9FVaXXFYTkCM= -github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.3.0/go.mod h1:OQeznEEkTZ9OrhHJoDD8ZDq51FHgXjqtP9z6bEwBq9U= -github.com/Azure/azure-sdk-for-go/sdk/internal v0.8.3/go.mod h1:KLF4gFr6DcKFZwSuH8w8yEK6DpFl3LP5rhdvAb7Yz5I= -github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0/go.mod h1:eWRD7oawr1Mu1sLCawqVc0CUiF43ia3qQMxLscsKQ9w= -github.com/Azure/azure-sdk-for-go/sdk/internal v1.3.0/go.mod h1:okt5dMMTOFjX/aovMlrjvvXoPMBVSPzk9185BT0+eZM= -github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/internal v1.0.0/go.mod h1:ceIuwmxDWptoW3eCqSXlnPsZFKh4X+R38dWPv7GS9Vs= -github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources v1.0.0/go.mod h1:s1tW/At+xHqjNFvWU4G0c0Qv33KOhvbGNj0RCTQDV8s= -github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/armstorage v1.2.0/go.mod h1:c+Lifp3EDEamAkPVzMooRNOK6CZjNSdEnf1A7jsI9u4= -github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v0.3.0/go.mod h1:tPaiy8S5bQ+S5sOiDlINkp7+Ef339+Nz5L5XO+cnOHo= -github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.2.0/go.mod h1:+6KLcKIVgxoBDMqMO/Nvy7bZ9a0nbU3I1DtFQK3YvB4= -github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0/go.mod h1:Vt9sXTKwMyGcOxSmLDMnGPgqsUg7m8pe215qMLrDXw4= -github.com/AzureAD/microsoft-authentication-library-for-go v1.0.0/go.mod h1:kgDmCTgBzIEPFElEF+FK0SdjAor06dRq2Go927dnQ6o= +github.com/Azure/azure-pipeline-go v0.2.1/go.mod h1:UGSo8XybXnIGZ3epmeBw7Jdz+HiUVpqIlpz/HKHylF4= +github.com/Azure/azure-pipeline-go v0.2.2/go.mod h1:4rQ/NZncSvGqNkkOsNpOU1tgoNuIlp9AfUH5G1tvCHc= +github.com/Azure/azure-storage-blob-go v0.7.0/go.mod h1:f9YQKtsG1nMisotuTPpO0tjNuEjKRYAcJU8/ydDI++4= +github.com/Azure/go-autorest/autorest v0.9.0/go.mod h1:xyHB1BMZT0cuDHU7I0+g046+BFDTQ8rEZB0s4Yfa6bI= +github.com/Azure/go-autorest/autorest/adal v0.5.0/go.mod h1:8Z9fGy2MpX0PvDjB1pEgQTmVqjGhiHBW7RJJEciWzS0= +github.com/Azure/go-autorest/autorest/adal v0.8.0/go.mod h1:Z6vX6WXXuyieHAXwMj0S6HY6e6wcHn37qQMBQlvY3lc= +github.com/Azure/go-autorest/autorest/date v0.1.0/go.mod h1:plvfp3oPSKwf2DNjlBjWF/7vwR+cUD/ELuzDCXwHUVA= +github.com/Azure/go-autorest/autorest/date v0.2.0/go.mod h1:vcORJHLJEh643/Ioh9+vPmf1Ij9AEBM5FuBIXLmIy0g= +github.com/Azure/go-autorest/autorest/mocks v0.1.0/go.mod h1:OTyCOPRA2IgIlWxVYxBee2F5Gr4kF2zd2J5cFRaIDN0= +github.com/Azure/go-autorest/autorest/mocks v0.2.0/go.mod h1:OTyCOPRA2IgIlWxVYxBee2F5Gr4kF2zd2J5cFRaIDN0= +github.com/Azure/go-autorest/autorest/mocks v0.3.0/go.mod h1:a8FDP3DYzQ4RYfVAxAN3SVSiiO77gL2j2ronKKP0syM= +github.com/Azure/go-autorest/logger v0.1.0/go.mod h1:oExouG+K6PryycPJfVSxi/koC6LSNgds39diKLz7Vrc= +github.com/Azure/go-autorest/tracing v0.5.0/go.mod h1:r/s2XiOKccPW3HrqB+W0TQzfbtp2fGCgRFtBroKn4Dk= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/BurntSushi/toml v1.1.0/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= -github.com/BurntSushi/toml v1.2.1/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= -github.com/BurntSushi/toml v1.3.2 h1:o7IhLm0Msx3BaB+n3Ag7L8EVlByGnpq14C4YWiu/gL8= -github.com/BurntSushi/toml v1.3.2/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= -github.com/CloudyKit/fastprinter v0.0.0-20170127035650-74b38d55f37a/go.mod h1:EFZQ978U7x8IRnstaskI3IysnWY5Ao3QgZUKOXlsAdw= -github.com/CloudyKit/jet v2.1.3-0.20180809161101-62edd43e4f88+incompatible/go.mod h1:HPYO+50pSWkPoj9Q/eq0aRGByCL6ScRlUmiEX5Zgm+w= -github.com/DATA-DOG/go-sqlmock v1.3.3/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM= -github.com/DataDog/zstd v1.4.5/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= -github.com/GoogleCloudPlatform/cloudsql-proxy v0.0.0-20190129172621-c8b1d7a94ddf/go.mod h1:aJ4qN3TfrelA6NZ6AXsXRfmEVaYin3EDbSPJrKS8OXo= -github.com/HdrHistogram/hdrhistogram-go v1.1.2/go.mod h1:yDgFjdqOqDEKOvasDdhWNXYg9BVp4O+o5f6V/ehm6Oo= -github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c/go.mod h1:X0CRv0ky0k6m906ixxpzmDRLvX58TFUKS2eePweuyxk= -github.com/Joker/hpp v1.0.0/go.mod h1:8x5n+M1Hp5hC0g8okX3sR3vFQwynaX/UgSOM9MeBKzY= -github.com/Joker/jade v1.0.1-0.20190614124447-d475f43051e7/go.mod h1:6E6s8o2AE4KhCrqr6GRJjdC/gNfTdxkIXvuGZZda2VM= -github.com/Microsoft/go-winio v0.6.1/go.mod h1:LRdKpFKfdobln8UmuiYcKPot9D2v6svN5+sAH+4kjUM= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= -github.com/SaveTheRbtz/mph v0.1.1-0.20240117162131-4166ec7869bc h1:DCHzPQOcU/7gwDTWbFQZc5qHMPS1g0xTO56k8NXsv9M= -github.com/SaveTheRbtz/mph v0.1.1-0.20240117162131-4166ec7869bc/go.mod h1:LJM5a3zcIJ/8TmZwlUczvROEJT8ntOdhdG9jjcR1B0I= -github.com/Shopify/goreferrer v0.0.0-20181106222321-ec9c9a553398/go.mod h1:a1uqRtAwp2Xwc6WNPJEufxJ7fx3npB4UV/JOLmbu5I0= +github.com/OneOfOne/xxhash v1.2.5/go.mod h1:eZbhyaAYD41SGSSsnmcpxVoRiQ/MPUTjUdIIOT9Um7Q= github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg= -github.com/StackExchange/wmi v1.2.1/go.mod h1:rcmrprowKIVzvc+NUiLncP2uuArMWLCbu9SBzvHz7e8= -github.com/VictoriaMetrics/fastcache v1.6.0/go.mod h1:0qHz5QP0GMX4pfmMA/zt5RgfNuXJrTP0zS7DqpHGGTw= -github.com/VictoriaMetrics/fastcache v1.12.1/go.mod h1:tX04vaqcNoQeGLD+ra5pU5sWkuxnzWhEzLwhP9w653o= -github.com/aclements/go-gg v0.0.0-20170118225347-6dbb4e4fefb0/go.mod h1:55qNq4vcpkIuHowELi5C8e+1yUHtoLoOUR9QU5j7Tes= -github.com/aclements/go-moremath v0.0.0-20210112150236-f10218a38794/go.mod h1:7e+I0LQFUI9AXWxOfsQROs9xPhoJtbsyWcjJqDd4KPY= -github.com/ajg/form v1.5.1/go.mod h1:uL1WgH+h2mgNtvBq0339dVnzXdBETtL2LeUXaIv25UY= -github.com/ajstarks/deck v0.0.0-20200831202436-30c9fc6549a9/go.mod h1:JynElWSGnm/4RlzPXRlREEwqTHAN3T56Bv2ITsFT3gY= -github.com/ajstarks/deck/generate v0.0.0-20210309230005-c3f852c02e19/go.mod h1:T13YZdzov6OU0A1+RfKZiZN9ca6VeKdBdyDV+BY97Tk= +github.com/VictoriaMetrics/fastcache v1.5.3/go.mod h1:+jv9Ckb+za/P1ZRg/sulP5Ni1v49daAVERr0H3CuscE= +github.com/aead/siphash v1.0.1/go.mod h1:Nywa3cDsYNNK3gaciGTWPwHt0wlpNV15vwmswBAUSII= github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw= -github.com/ajstarks/svgo v0.0.0-20210923152817-c3b6e2f0c527/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw= -github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b/go.mod h1:1KcenG0jGWcpt8ov532z81sp/kMMUG485J2InIOyADM= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= -github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= -github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= -github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= github.com/allegro/bigcache v1.2.1-0.20190218064605-e24eb225f156/go.mod h1:Cb/ax3seSYIx7SuZdm2G2xzfwmv3TPSk2ucNfQESPXM= -github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883/go.mod h1:rCTlJbsFo29Kk6CurOXKm700vrz8f0KW0JNfpkRJY/8= -github.com/andybalholm/brotli v1.0.4/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig= github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= -github.com/apache/arrow/go/arrow v0.0.0-20191024131854-af6fa24be0db/go.mod h1:VTxUBvSJ3s3eHAg65PNgrsn5BtqCRPdmyXh6rAfdxN0= -github.com/apache/arrow/go/v10 v10.0.1/go.mod h1:YvhnlEePVnBS4+0z3fhPfUy7W1Ikj0Ih0vcRo/gZ1M0= -github.com/apache/arrow/go/v11 v11.0.0/go.mod h1:Eg5OsL5H+e299f7u5ssuXsuHQVEGC4xei5aX110hRiI= -github.com/apache/arrow/go/v12 v12.0.0/go.mod h1:d+tV/eHZZ7Dz7RPrFKtPK02tpr+c9/PEd/zm8mDS9Vg= -github.com/apache/thrift v0.16.0/go.mod h1:PHK3hniurgQaNMZYaCLEqXKsYK8upmhPbmdP2FXSqgU= -github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8= -github.com/aws/aws-sdk-go-v2 v1.2.0/go.mod h1:zEQs02YRBw1DjK0PoJv3ygDYOFTre1ejlJWl8FwAuQo= -github.com/aws/aws-sdk-go-v2 v1.21.2/go.mod h1:ErQhvNuEMhJjweavOYhxVkn2RUx7kQXVATHrjKtxIpM= -github.com/aws/aws-sdk-go-v2 v1.23.1/go.mod h1:i1XDttT4rnf6vxc9AuskLc6s7XBee8rlLilKlc03uAA= -github.com/aws/aws-sdk-go-v2/config v1.1.1/go.mod h1:0XsVy9lBI/BCXm+2Tuvt39YmdHwS5unDQmxZOYe8F5Y= -github.com/aws/aws-sdk-go-v2/config v1.18.45/go.mod h1:ZwDUgFnQgsazQTnWfeLWk5GjeqTQTL8lMkoE1UXzxdE= -github.com/aws/aws-sdk-go-v2/config v1.25.5/go.mod h1:Bf4gDvy4ZcFIK0rqDu1wp9wrubNba2DojiPB2rt6nvI= -github.com/aws/aws-sdk-go-v2/credentials v1.1.1/go.mod h1:mM2iIjwl7LULWtS6JCACyInboHirisUUdkBPoTHMOUo= -github.com/aws/aws-sdk-go-v2/credentials v1.13.43/go.mod h1:zWJBz1Yf1ZtX5NGax9ZdNjhhI4rgjfgsyk6vTY1yfVg= -github.com/aws/aws-sdk-go-v2/credentials v1.16.4/go.mod h1:Kdh/okh+//vQ/AjEt81CjvkTo64+/zIE4OewP7RpfXk= -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.0.2/go.mod h1:3hGg3PpiEjHnrkrlasTfxFqUsZ2GCk/fMUn4CbKgSkM= -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.13/go.mod h1:f/Ib/qYjhV2/qdsf79H3QP/eRE4AkVyEf6sk7XfZ1tg= -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.5/go.mod h1:VhnExhw6uXy9QzetvpXDolo1/hjhx4u9qukBGkuUwjs= -github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.43/go.mod h1:auo+PiyLl0n1l8A0e8RIeR8tOzYPfZZH/JNlrJ8igTQ= -github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.4/go.mod h1:xEhvbJcyUf/31yfGSQBe01fukXwXJ0gxDp7rLfymWE0= -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.37/go.mod h1:Qe+2KtKml+FEsQF/DHmDV+xjtche/hwoF75EG4UlHW8= -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.4/go.mod h1:dYvTNAggxDZy6y1AF7YDwXsPuHFy/VNEpEI/2dWK9IU= -github.com/aws/aws-sdk-go-v2/internal/ini v1.3.45/go.mod h1:lD5M20o09/LCuQ2mE62Mb/iSdSlCNuj6H5ci7tW7OsE= -github.com/aws/aws-sdk-go-v2/internal/ini v1.7.1/go.mod h1:6fQQgfuGmw8Al/3M2IgIllycxV7ZW7WCdVSqfBeUiCY= -github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.1/go.mod h1:l9ymW25HOqymeU2m1gbUQ3rUIsTwKs8gYHXkqDQUhiI= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.0.2/go.mod h1:45MfaXZ0cNbeuT0KQ1XJylq8A6+OpVV2E5kvY/Kq+u8= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.37/go.mod h1:vBmDnwWXWxNPFRMmG2m/3MKOe+xEcMDo1tanpaWCcck= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.4/go.mod h1:aYCGNjyUCUelhofxlZyj63srdxWUSsBSGg5l6MCuXuE= -github.com/aws/aws-sdk-go-v2/service/kms v1.26.3/go.mod h1:N3++/sLV97B8Zliz7KRqNcojOX7iMBZWKiuit5FKtH0= -github.com/aws/aws-sdk-go-v2/service/route53 v1.1.1/go.mod h1:rLiOUrPLW/Er5kRcQ7NkwbjlijluLsrIbu/iyl35RO4= -github.com/aws/aws-sdk-go-v2/service/route53 v1.30.2/go.mod h1:TQZBt/WaQy+zTHoW++rnl8JBrmZ0VO6EUbVua1+foCA= -github.com/aws/aws-sdk-go-v2/service/sso v1.1.1/go.mod h1:SuZJxklHxLAXgLTc1iFXbEWkXs7QRTQpCLGaKIprQW0= -github.com/aws/aws-sdk-go-v2/service/sso v1.15.2/go.mod h1:gsL4keucRCgW+xA85ALBpRFfdSLH4kHOVSnLMSuBECo= -github.com/aws/aws-sdk-go-v2/service/sso v1.17.3/go.mod h1:oA6VjNsLll2eVuUoF2D+CMyORgNzPEW/3PyUdq6WQjI= -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.17.3/go.mod h1:a7bHA82fyUXOm+ZSWKU6PIoBxrjSprdLoM8xPYvzYVg= -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.20.1/go.mod h1:hHL974p5auvXlZPIjJTblXJpbkfK4klBczlsEaMCGVY= -github.com/aws/aws-sdk-go-v2/service/sts v1.1.1/go.mod h1:Wi0EBZwiz/K44YliU0EKxqTCJGUfYTWXrrBwkq736bM= -github.com/aws/aws-sdk-go-v2/service/sts v1.23.2/go.mod h1:Eows6e1uQEsc4ZaHANmsPRzAKcVDrcmjjWiih2+HUUQ= -github.com/aws/aws-sdk-go-v2/service/sts v1.25.4/go.mod h1:feTnm2Tk/pJxdX+eooEsxvlvTWBvDm6CasRZ+JOs2IY= -github.com/aws/smithy-go v1.1.0/go.mod h1:EzMw8dbp/YJL4A5/sbhGddag+NPT7q084agLbB9LgIw= -github.com/aws/smithy-go v1.15.0/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA= -github.com/aws/smithy-go v1.17.0/go.mod h1:NukqUGpCZIILqqiV0NIjeFh24kd/FAa4beRb6nbIUPE= -github.com/aymerick/raymond v2.0.3-0.20180322193309-b565731e1464+incompatible/go.mod h1:osfaiScAUVup+UC9Nfq76eWqDhXlp+4UYaA8uhTBO6g= +github.com/aristanetworks/goarista v0.0.0-20170210015632-ea17b1a17847/go.mod h1:D/tb0zPVXnP7fmsLZjtdUhSsumbK/ij54UXjjVgMGxQ= +github.com/aws/aws-sdk-go v1.25.48/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= -github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= -github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= +github.com/bits-and-blooms/bitset v1.5.0 h1:NpE8frKRLGHIcEzkR+gZhiioW1+WbYV6fKwD6ZIpQT8= github.com/bits-and-blooms/bitset v1.5.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= -github.com/bits-and-blooms/bitset v1.7.0 h1:YjAGVd3XmtK9ktAbX8Zg2g2PwLIMjGREZJHlV4j7NEo= -github.com/bits-and-blooms/bitset v1.7.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= -github.com/bmizerany/pat v0.0.0-20170815010413-6226ea591a40/go.mod h1:8rLXio+WjiTceGBHIoTvn60HIbs7Hm7bcHjyrSqYB9c= -github.com/boltdb/bolt v1.3.1/go.mod h1:clJnj/oiGkjum5o1McbSZDSLxVThjynRyGBgiAx27Ps= -github.com/boombuler/barcode v1.0.0/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= -github.com/boombuler/barcode v1.0.1/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= -github.com/btcsuite/btcd/btcec/v2 v2.2.0/go.mod h1:U7MHm051Al6XmscBQ0BoNydpOTsFAn707034b5nY8zU= +github.com/btcsuite/btcd v0.0.0-20171128150713-2e60448ffcc6/go.mod h1:Dmm/EzmjnCiweXmzRIAiUWCInVmPgjkzgv5k4tVyXiQ= +github.com/btcsuite/btcd v0.20.1-beta/go.mod h1:wVuoA8VJLEcwgqHBwHmzLRazpKxTv13Px/pDuV7OomQ= github.com/btcsuite/btcd/btcec/v2 v2.2.1 h1:xP60mv8fvp+0khmrN0zTdPC3cNm24rfeE6lh2R/Yv3E= github.com/btcsuite/btcd/btcec/v2 v2.2.1/go.mod h1:9/CSmJxmuvqzX9Wh2fXMWToLOHhPd11lSPuIupwTkI8= -github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1/go.mod h1:7SFka0XMvUgj3hfZtydOrQY2mwhPclbT2snogU7SQQc= -github.com/bytecodealliance/wasmtime-go/v7 v7.0.0/go.mod h1:bu6fic7trDt20w+LMooX7j3fsOwv4/ln6j8gAdP6vmA= -github.com/c-bata/go-prompt v0.2.2/go.mod h1:VzqtzE2ksDBcdln8G7mk2RX9QyGjH+OVqOCSiVIqS34= -github.com/c-bata/go-prompt v0.2.6/go.mod h1:/LMAke8wD2FsNu9EXNdHxNLbd9MedkPnCdfpU9wwHfY= +github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f/go.mod h1:TdznJufoqS23FtqVCzL0ZqgP5MqXbb4fg/WgDys70nA= +github.com/btcsuite/btcutil v0.0.0-20190425235716-9e5f4b9a998d/go.mod h1:+5NJ2+qvTyV9exUAL/rxXi3DcLg2Ts+ymUAY5y4NvMg= +github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd/go.mod h1:HHNXQzUsZCxOoE+CPiyCTO6x34Zs86zZUiwtpXoGdtg= +github.com/btcsuite/goleveldb v0.0.0-20160330041536-7834afc9e8cd/go.mod h1:F+uVaaLLH7j4eDXPRvw78tMflu7Ie2bzYOH4Y8rRKBY= +github.com/btcsuite/snappy-go v0.0.0-20151229074030-0bdef8d06723/go.mod h1:8woku9dyThutzjeg+3xrA5iCpBRH8XEEg3lh6TiUghc= +github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792/go.mod h1:ghJtEyQwv5/p4Mg4C0fgbePVuGr935/5ddU9Z3TmDRY= +github.com/btcsuite/winsvc v1.0.0/go.mod h1:jsenWakMcC0zFBFurPLEAyrnc/teJEM1O46fmI40EZs= +github.com/bytecodealliance/wasmtime-go v0.22.0/go.mod h1:q320gUxqyI8yB+ZqRuaJOEnGkAnHh6WtJjMaT2CW4wI= +github.com/c-bata/go-prompt v0.2.5/go.mod h1:vFnjEGDIIA/Lib7giyE4E9c50Lvl8j0S+7FVlAwDAVw= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/census-instrumentation/opencensus-proto v0.3.0/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/census-instrumentation/opencensus-proto v0.4.1/go.mod h1:4T9NM4+4Vw91VeyqjLS6ao50K5bOcLKN6Q42XnYaRYw= github.com/cespare/cp v0.1.0/go.mod h1:SOGHArjBr4JWaSDEVpWpo/hNg6RoKrls6Oh40hiwW+s= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= +github.com/cespare/xxhash/v2 v2.0.1-0.20190104013014-3767db7a7e18/go.mod h1:HD5P3vAIAh+Y2GAxg0PrPN1P8WkepXGpjbUPDHJqqKM= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cheekybits/genny v1.0.0/go.mod h1:+tQajlRqAUrPI7DOSpB0XAqZYtQakVtB7wXkRAgjxjQ= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= -github.com/chzyer/logex v1.2.0/go.mod h1:9+9sk7u7pGNWYMkh0hdiL++6OeibzJccyQU4p4MedaY= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= -github.com/chzyer/readline v1.5.0/go.mod h1:x22KAscuvRqlLoK9CsoYsmxoXZMMFVyOl86cAH8qUic= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= -github.com/chzyer/test v0.0.0-20210722231415-061457976a23/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= -github.com/cloudflare/cloudflare-go v0.14.0/go.mod h1:EnwdgGMaFOruiPZRFSgn+TsQ3hQ7C/YWzIGLeu5c304= -github.com/cloudflare/cloudflare-go v0.79.0/go.mod h1:gkHQf9xEubaQPEuerBuoinR9P8bf8a05Lq0X6WKy1Oc= +github.com/cloudflare/cloudflare-go v0.10.2-0.20190916151808-a80f83b9add9/go.mod h1:1MxXX1Ux4x6mqPmjkUgTP1CdXIBXKX7T+Jk9Gxrmx+U= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= -github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= -github.com/cncf/udpa/go v0.0.0-20220112060539-c52dc94e7fbe/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20210805033703-aa0b78936158/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211001041855-01bcc9b48dfe/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20220314180256-7f1daf1720fc/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20230105202645-06c439db220b/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20230310173818-32f1caf87195/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20230428030218-4003588d1b74/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20230607035331-e9ce68804cb4/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cockroachdb/datadriven v1.0.0/go.mod h1:5Ib8Meh+jk1RlHIXej6Pzevx/NLlNvQB9pmSBZErGA4= -github.com/cockroachdb/datadriven v1.0.3-0.20230413201302-be42291fc80f/go.mod h1:a9RdTaap04u637JoCzcUoIcDmvwSUtcUFtT/C3kJlTU= -github.com/cockroachdb/errors v1.6.1/go.mod h1:tm6FTP5G81vwJ5lC0SizQo374JNCOPrHyXGitRJoDqM= -github.com/cockroachdb/errors v1.8.1/go.mod h1:qGwQn6JmZ+oMjuLwjWzUNqblqk0xl4CVV3SQbGwK7Ac= -github.com/cockroachdb/logtags v0.0.0-20190617123548-eb05cc24525f/go.mod h1:i/u985jwjWRlyHXQbwatDASoW0RMlZ/3i9yJHE2xLkI= -github.com/cockroachdb/pebble v0.0.0-20230928194634-aa077af62593/go.mod h1:6hk1eMY/u5t+Cf18q5lFMUA1Rc+Sm5I6Ra1QuPyxXCo= -github.com/cockroachdb/redact v1.0.8/go.mod h1:BVNblN9mBWFyMyqK1k3AAiSxhvhfK2oOZZ2lK+dpvRg= -github.com/cockroachdb/sentry-go v0.6.1-cockroachdb.2/go.mod h1:8BT+cPK6xvFOcRlk0R8eg+OTkcqI6baNH4xAkpiYVvQ= -github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06/go.mod h1:7nc4anLGjupUW/PeY5qiNYsdNXj7zopG+eqsS7To5IQ= -github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0/go.mod h1:4Zcjuz89kmFXt9morQgcfYZAYZ5n8WHjt81YYWIwtTM= -github.com/consensys/bavard v0.1.8-0.20210406032232-f3452dc9b572/go.mod h1:Bpd0/3mZuaj6Sj+PqrmIquiOKy397AKGThQPaGzNXAQ= -github.com/consensys/bavard v0.1.13/go.mod h1:9ItSMtA/dXMAiL7BG6bqW2m3NdSEObYWoH223nGHukI= -github.com/consensys/gnark-crypto v0.4.1-0.20210426202927-39ac3d4b3f1f/go.mod h1:815PAHg3wvysy0SyIqanF8gZ0Y1wjk/hrDHD/iT88+Q= -github.com/consensys/gnark-crypto v0.10.0/go.mod h1:Iq/P3HHl0ElSjsg2E1gsMwhAyxnxoKK5nVyZKd+/KhU= -github.com/consensys/gnark-crypto v0.12.1/go.mod h1:v2Gy7L/4ZRosZ7Ivs+9SfUDr0f5UlG+EM5t7MPHiLuY= -github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= -github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= -github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk= -github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= -github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= -github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= -github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= -github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= -github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= -github.com/crate-crypto/go-ipa v0.0.0-20230601170251-1830d0757c80/go.mod h1:gzbVz57IDJgQ9rLQwfSk696JGWof8ftznEL9GoAv3NI= -github.com/crate-crypto/go-kzg-4844 v0.7.0/go.mod h1:1kMhvPgI0Ky3yIa+9lFySEBUBXkYxeOi8ZF1sYioxhc= -github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= -github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= -github.com/cyberdelia/templates v0.0.0-20141128023046-ca7fffd4298c/go.mod h1:GyV+0YP4qX0UQ7r2MoYZ+AvYDp12OF5yg4q8rGnyNh4= -github.com/dave/astrid v0.0.0-20170323122508-8c2895878b14/go.mod h1:Sth2QfxfATb/nW4EsrSi2KyJmbcniZ8TgTaji17D6ms= -github.com/dave/brenda v1.1.0/go.mod h1:4wCUr6gSlu5/1Tk7akE5X7UorwiQ8Rij0SKH3/BGMOM= -github.com/dave/courtney v0.3.0/go.mod h1:BAv3hA06AYfNUjfjQr+5gc6vxeBVOupLqrColj+QSD8= -github.com/dave/dst v0.27.2/go.mod h1:jHh6EOibnHgcUW3WjKHisiooEkYwqpHLBSX1iOBhEyc= -github.com/dave/gopackages v0.0.0-20170318123100-46e7023ec56e/go.mod h1:i00+b/gKdIDIxuLDFob7ustLAVqhsZRk2qVZrArELGQ= -github.com/dave/jennifer v1.2.0/go.mod h1:fIb+770HOpJ2fmN9EPPKOqm1vMGhB+TwXKMZhrIygKg= -github.com/dave/jennifer v1.5.0/go.mod h1:4MnyiFIlZS3l5tSDn8VnzE6ffAhYBMB2SZntBsZGUok= -github.com/dave/kerr v0.0.0-20170318121727-bc25dd6abe8e/go.mod h1:qZqlPyPvfsDJt+3wHJ1EvSXDuVjFTK0j2p/ca+gtsb8= -github.com/dave/patsy v0.0.0-20210517141501-957256f50cba/go.mod h1:qfR88CgEGLoiqDaE+xxDCi5QA5v4vUoW0UCX2Nd5Tlc= -github.com/dave/rebecca v0.9.1/go.mod h1:N6XYdMD/OKw3lkF3ywh8Z6wPGuwNFDNtWYEMFWEmXBA= +github.com/davecgh/go-spew v0.0.0-20171005155431-ecdeabc65495/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/deckarep/golang-set v1.8.0/go.mod h1:5nI87KwE7wgsBU1F4GKAw2Qod7p5kyS383rP6+o6qqo= -github.com/deckarep/golang-set/v2 v2.1.0/go.mod h1:VAky9rY/yGXJOLEDv3OMci+7wtDpOF4IN+y82NBOac4= +github.com/deckarep/golang-set v0.0.0-20180603214616-504e848d77ea/go.mod h1:93vsz/8Wt4joVM7c2AVqh+YRMiUSc14yDtF28KmMOgQ= github.com/decred/dcrd/crypto/blake256 v1.0.0/go.mod h1:sQl2p6Y26YV+ZOcSTP6thNdn47hh8kt6rqSlvmrXFAc= -github.com/decred/dcrd/crypto/blake256 v1.0.1/go.mod h1:2OfgNZ5wDpcsFmHmCK5gZTPcCXqlm2ArzUIkw9czNJo= +github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 h1:YLtO71vCjJRCBcrPMtQ9nqBsqpA1m5sE92cU+pd5Mcc= github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1/go.mod h1:hyedUtir6IdtD/7lIxGeCxkaw7y45JueMRL4DIyJDKs= -github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 h1:8UrgZ3GkP4i/CLijOJx79Yu+etlyjdBU4sfcs2WYQMs= -github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0/go.mod h1:v57UDF4pDQJcEfFUCRop3lJL149eHGSe9Jvczhzjo/0= -github.com/deepmap/oapi-codegen v1.6.0/go.mod h1:ryDa9AgbELGeB+YEXE1dR53yAjHwFvE9iAUlWl9Al3M= -github.com/deepmap/oapi-codegen v1.8.2/go.mod h1:YLgSKSDv/bZQB7N4ws6luhozi3cEdRktEqrX88CvjIw= -github.com/dgraph-io/badger v1.6.0/go.mod h1:zwt7syl517jmP8s94KqSxTlM6IMsdhYy6psNgSztDR4= github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= -github.com/dgryski/go-bitstream v0.0.0-20180413035011-3522498ce2c8/go.mod h1:VMaSuZ+SZcx/wljOQKvp5srsbCiKDEb6K2wC4+PiBmQ= -github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2/go.mod h1:SqUrOPUnsFjfmXRMNPybcSiG0BgUW2AuFH8PAnS2iTw= github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= -github.com/dlclark/regexp2 v1.4.1-0.20201116162257-a2a8dda75c91/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc= -github.com/dlclark/regexp2 v1.7.0/go.mod h1:DHkYz0B9wPfa6wondMfaivmHpzrQ3v9q8cnmRbL6yW8= -github.com/dnaeon/go-vcr v1.1.0/go.mod h1:M7tiix8f0r6mKKJ3Yq/kqU1OYf3MnfmBWVbPx/yU9ko= -github.com/dnaeon/go-vcr v1.2.0/go.mod h1:R4UdLID7HZT3taECzJs4YgbbH6PIGXB6W/sc5OLb6RQ= -github.com/docker/docker v1.6.2/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= -github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= -github.com/dop251/goja v0.0.0-20211022113120-dc8c55024d06/go.mod h1:R9ET47fwRVRPZnOGvHxxhuZcbrMCuiqOz3Rlrh4KSnk= -github.com/dop251/goja v0.0.0-20220405120441-9037c2b61cbf/go.mod h1:R9ET47fwRVRPZnOGvHxxhuZcbrMCuiqOz3Rlrh4KSnk= -github.com/dop251/goja v0.0.0-20230806174421-c933cf95e127/go.mod h1:QMWlm50DNe14hD7t24KEqZuUdC9sOTy8W6XbCU1mlw4= -github.com/dop251/goja_nodejs v0.0.0-20210225215109-d91c329300e7/go.mod h1:hn7BA7c8pLvoGndExHudxTDKZ84Pyvv+90pbBjbTz0Y= -github.com/dop251/goja_nodejs v0.0.0-20211022123610-8dd9abb0616d/go.mod h1:DngW8aVqWbuLRMHItjPUyqdj+HWPvnQe8V8y1nDpIbM= -github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= -github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= -github.com/eclipse/paho.mqtt.golang v1.2.0/go.mod h1:H9keYFcgq3Qr5OUJm/JZI/i6U7joQ8SYLhZwfeOo6Ts= -github.com/edsrzf/mmap-go v1.0.0/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= -github.com/eknkc/amber v0.0.0-20171010120322-cdade1c07385/go.mod h1:0vRUJqYpeSZifjYj7uP3BG/gKcuzL9xWVV/Y+cK33KM= +github.com/dlclark/regexp2 v1.2.0/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc= +github.com/docker/docker v1.4.2-0.20180625184442-8e610b2b55bf/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= +github.com/dop251/goja v0.0.0-20200219165308-d1232e640a87/go.mod h1:Mw6PkjjMXWbTj+nnj4s3QPXq1jaT0s5pC0iFD4+BOAA= +github.com/edsrzf/mmap-go v0.0.0-20160512033002-935e0e8a636c/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= +github.com/elastic/gosigar v0.8.1-0.20180330100440-37f05ff46ffa/go.mod h1:cdorVVzy1fhmEqmtgqkoE3bYtCfSCkVyjTyCIo22xvs= github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= @@ -1152,122 +125,39 @@ github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5y github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= -github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0= -github.com/envoyproxy/go-control-plane v0.10.2-0.20220325020618-49ff273808a1/go.mod h1:KJwIaB5Mv44NWtYuAOFCVOjcI94vtpEz2JU/D2v6IjE= -github.com/envoyproxy/go-control-plane v0.10.3/go.mod h1:fJJn/j26vwOu972OllsvAgJJM//w9BV6Fxbg2LuVd34= -github.com/envoyproxy/go-control-plane v0.11.0/go.mod h1:VnHyVMpzcLvCFt9yUz1UnCwHLhwx1WguiVDV7pTG/tI= -github.com/envoyproxy/go-control-plane v0.11.1-0.20230524094728-9239064ad72f/go.mod h1:sfYdkwUW4BA3PbKjySwjJy+O4Pu0h62rlqCMHNk+K+Q= -github.com/envoyproxy/go-control-plane v0.11.1/go.mod h1:uhMcXKCQMEJHiAb0w+YGefQLaTEw+YhGluxZkrTmD0g= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= -github.com/envoyproxy/protoc-gen-validate v0.6.7/go.mod h1:dyJXwwfPK2VSqiB9Klm1J6romD608Ba7Hij42vrOBCo= -github.com/envoyproxy/protoc-gen-validate v0.9.1/go.mod h1:OKNgG7TCp5pF4d6XftA0++PMirau2/yoOwVac3AbF2w= -github.com/envoyproxy/protoc-gen-validate v0.10.0/go.mod h1:DRjgyB0I43LtJapqN6NiRwroiAU2PaFuvk/vjgh61ss= -github.com/envoyproxy/protoc-gen-validate v0.10.1/go.mod h1:DRjgyB0I43LtJapqN6NiRwroiAU2PaFuvk/vjgh61ss= -github.com/envoyproxy/protoc-gen-validate v1.0.1/go.mod h1:0vj8bNkYbSTNS2PIyH87KZaeN4x9zpL9Qt8fQC7d+vs= -github.com/envoyproxy/protoc-gen-validate v1.0.2/go.mod h1:GpiZQP3dDbg4JouG/NNS7QWXpgx6x8QiMKdmN72jogE= -github.com/etcd-io/bbolt v1.3.3/go.mod h1:ZF2nL25h33cCyBtcyWeZ2/I3HQOfTP+0PIEvHjkjCrw= -github.com/ethereum/c-kzg-4844 v0.4.0/go.mod h1:VewdlzQmpT5QSrVhbBuGoCdFJkpaJlO1aQputP83wc0= -github.com/ethereum/go-ethereum v1.10.26/go.mod h1:EYFyF19u3ezGLD4RqOkLq+ZCXzYbLoNDdZlMt7kyKFg= -github.com/ethereum/go-ethereum v1.13.5 h1:U6TCRciCqZRe4FPXmy1sMGxTfuk8P7u2UoinF3VbaFk= -github.com/ethereum/go-ethereum v1.13.5/go.mod h1:yMTu38GSuyxaYzQMViqNmQ1s3cE84abZexQmTgenWk0= -github.com/fasthttp-contrib/websocket v0.0.0-20160511215533-1f3b11f56072/go.mod h1:duJ4Jxv5lDcvg4QuQr0oowTf7dz4/CR8NtyCooz9HL8= -github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= -github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk= -github.com/fatih/structs v1.1.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga6PJ7M= -github.com/fjl/gencodec v0.0.0-20220412091415-8bb9e558978c/go.mod h1:AzA8Lj6YtixmJWL+wkKoBGsLWy9gFrAzi4g+5bCKwpY= -github.com/fjl/gencodec v0.0.0-20230517082657-f9840df7b83e/go.mod h1:AzA8Lj6YtixmJWL+wkKoBGsLWy9gFrAzi4g+5bCKwpY= -github.com/fjl/memsize v0.0.0-20190710130421-bcb5799ab5e5/go.mod h1:VvhXpOYNQvB+uIk2RvXzuaQtkQJzzIx6lSBe1xv7hi0= -github.com/flosch/pongo2 v0.0.0-20190707114632-bbf5a6c351f4/go.mod h1:T9YF2M40nIgbVgp3rreNmTged+9HrbNTIQf1PsaIiTA= +github.com/ethereum/go-ethereum v1.9.9/go.mod h1:a9TqabFudpDu1nucId+k9S8R9whYaHnGBLKFouA5EAo= +github.com/ethereum/go-ethereum v1.9.13 h1:rOPqjSngvs1VSYH2H+PMPiWt4VEulvNRbFgqiGqJM3E= +github.com/ethereum/go-ethereum v1.9.13/go.mod h1:qwN9d1GLyDh0N7Ab8bMGd0H9knaji2jOBm2RrMGjXls= +github.com/fatih/color v1.3.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= +github.com/fjl/memsize v0.0.0-20180418122429-ca190fb6ffbc/go.mod h1:VvhXpOYNQvB+uIk2RvXzuaQtkQJzzIx6lSBe1xv7hi0= github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= -github.com/fogleman/gg v1.3.0/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= -github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= -github.com/fsnotify/fsnotify v1.6.0 h1:n+5WquG0fcWoWp6xPWfHdbskMCQaFnG6PfBrh1Ky4HY= -github.com/fsnotify/fsnotify v1.6.0/go.mod h1:sl3t1tCWJFWoRz9R8WJCbQihKKwmorjAbSClcnxKAGw= -github.com/fxamacker/cbor/v2 v2.4.1-0.20220515183430-ad2eae63303f/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= +github.com/fxamacker/cbor/v2 v2.2.1-0.20210927235116-3d6d5d1de29b/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c h1:5tm/Wbs9d9r+qZaUFXk59CWDD0+77PBqDREffYkyi5c= github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= +github.com/fxamacker/circlehash v0.1.0/go.mod h1:3aq3OfVvsWtkWMb6A1owjOQFA+TLsD5FgJflnaQwtMM= github.com/fxamacker/circlehash v0.3.0 h1:XKdvTtIJV9t7DDUtsf0RIpC1OcxZtPbmgIH7ekx28WA= github.com/fxamacker/circlehash v0.3.0/go.mod h1:3aq3OfVvsWtkWMb6A1owjOQFA+TLsD5FgJflnaQwtMM= -github.com/garslo/gogen v0.0.0-20170306192744-1d203ffc1f61/go.mod h1:Q0X6pkwTILDlzrGEckF6HKjXe48EgsY/l7K7vhY4MW8= -github.com/gavv/httpexpect v2.0.0+incompatible/go.mod h1:x+9tiU1YnrOvnB725RkpoLv1M62hOWzwo5OXotisrKc= github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff/go.mod h1:x7DCsMOv1taUwEWCzT4cmDeAkigA5/QCwUodaVOe8Ww= -github.com/gballet/go-verkle v0.0.0-20230607174250-df487255f46b/go.mod h1:CDncRYVRSDqwakm282WEkjfaAj1hxU/v5RXxk5nXOiI= -github.com/getkin/kin-openapi v0.53.0/go.mod h1:7Yn5whZr5kJi6t+kShccXS8ae1APpYTW6yheSwk8Yi4= -github.com/getkin/kin-openapi v0.61.0/go.mod h1:7Yn5whZr5kJi6t+kShccXS8ae1APpYTW6yheSwk8Yi4= -github.com/ghemawat/stream v0.0.0-20171120220530-696b145b53b9/go.mod h1:106OIgooyS7OzLDOpUGgm9fA3bQENb/cFSyyBmMoJDs= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= -github.com/gin-contrib/sse v0.0.0-20190301062529-5545eab6dad3/go.mod h1:VJ0WA2NBN22VlZ2dKZQPAPnyWw5XTlK1KymzLKsr59s= -github.com/gin-gonic/gin v1.4.0/go.mod h1:OW2EZn3DO8Ln9oIKOvM++LBO+5UPHJJDH72/q/3rZdM= -github.com/glycerine/go-unsnap-stream v0.0.0-20180323001048-9f0cb55181dd/go.mod h1:/20jfyN9Y5QPEAprSgKAUr+glWDY39ZiUEAYOEv5dsE= -github.com/glycerine/goconvey v0.0.0-20190410193231-58a59202ab31/go.mod h1:Ogl1Tioa0aV7gstGFO7KhffUsb9M4ydbEbbxpcEDc24= -github.com/go-check/check v0.0.0-20180628173108-788fd7840127/go.mod h1:9ES+weclKsC9YodN5RgxqK/VD9HM9JsCSh7rNhMZE98= -github.com/go-chi/chi/v5 v5.0.0/go.mod h1:BBug9lr0cqtdAhsu6R4AAdvufI0/XBzAQSsUqJpoZOs= -github.com/go-errors/errors v1.0.1/go.mod h1:f4zRHt4oKfwPJE5k8C9vpYG+aDHdBFUsgrm6/TyX73Q= -github.com/go-fonts/dejavu v0.1.0/go.mod h1:4Wt4I4OU2Nq9asgDCteaAaWZOV24E+0/Pwo0gppep4g= -github.com/go-fonts/latin-modern v0.2.0/go.mod h1:rQVLdDMK+mK1xscDwsqM5J8U2jrRa3T0ecnM9pNujks= -github.com/go-fonts/latin-modern v0.3.0/go.mod h1:ysEQXnuT/sCDOAONxC7ImeEDVINbltClhasMAqEtRK0= -github.com/go-fonts/liberation v0.1.1/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= -github.com/go-fonts/liberation v0.2.0/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= -github.com/go-fonts/liberation v0.3.0/go.mod h1:jdJ+cqF+F4SUL2V+qxBth8fvBpBDS7yloUL5Fi8GTGY= -github.com/go-fonts/stix v0.1.0/go.mod h1:w/c1f0ldAUlJmLBvlbkvVXLAD+tAMqobIIQpmnUIzUY= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= -github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= -github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY= -github.com/go-latex/latex v0.0.0-20210118124228-b3d85cf34e07/go.mod h1:CO1AlKB2CSIqUrmQPqA0gdRIlnLEY0gK5JGjh37zN5U= -github.com/go-latex/latex v0.0.0-20210823091927-c0d11ff05a81/go.mod h1:SX0U8uGpxhq9o2S/CELCSUxEWWAuoCUcVCQWv7G2OCk= -github.com/go-latex/latex v0.0.0-20230307184459-12ec69307ad9/go.mod h1:gWuR/CrFDDeVRFQwHPvsv9soJVB/iqymhuZQuJ3a9OM= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= -github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= -github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= -github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= -github.com/go-logr/logr v1.2.3/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= -github.com/go-logr/logr v1.2.4/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= -github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= -github.com/go-martini/martini v0.0.0-20170121215854-22fa46961aab/go.mod h1:/P9AEU963A2AYjv4d1V5eVL1CQbEJq6aCNHDDjibzu8= github.com/go-ole/go-ole v1.2.1/go.mod h1:7FAglXiTm7HKlQRDeOQ6ZNUHidzCWXuZWq/1dTyBNF8= -github.com/go-ole/go-ole v1.2.5/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0= -github.com/go-openapi/jsonpointer v0.19.5/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= -github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= -github.com/go-pdf/fpdf v0.5.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= -github.com/go-pdf/fpdf v0.6.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= -github.com/go-sourcemap/sourcemap v2.1.3+incompatible/go.mod h1:F8jJfvm2KbVjc5NqelyYJmf/v5J0dwNLS2mL4sNA1Jg= -github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= +github.com/go-sourcemap/sourcemap v2.1.2+incompatible/go.mod h1:F8jJfvm2KbVjc5NqelyYJmf/v5J0dwNLS2mL4sNA1Jg= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= -github.com/go-stack/stack v1.8.1/go.mod h1:dcoOX6HbPZSZptuspn9bctJ+N/CnF5gGygcUP3XYfe4= -github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee/go.mod h1:L0fX3K22YWvt/FAX9NnzrNzcI4wNYi9Yku4O0LKYflo= -github.com/gobwas/pool v0.2.0/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6WezmKEw= -github.com/gobwas/ws v1.0.2/go.mod h1:szmBTxLgaFppYjEmNtny/v3w89xOydFnnZMcgRRu/EM= -github.com/goccy/go-json v0.9.11/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= -github.com/goccy/go-json v0.10.2/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= -github.com/gofrs/flock v0.8.1/go.mod h1:F1TvTiK9OcQqauNUHlbJvyl9Qa1QvF/gOUDKA14jxHU= -github.com/gofrs/uuid v3.3.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= -github.com/gogo/googleapis v0.0.0-20180223154316-0cd9801be74a/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s= +github.com/go-test/deep v1.0.5/go.mod h1:QV8Hv/iy04NyLBxAdO9njL0iVPN1S4d/A3NVv1V36o8= +github.com/go-test/deep v1.1.0 h1:WOcxcdHcvdgThNXjw0t76K42FXTU7HpNQWHpA2HHNlg= +github.com/go-test/deep v1.1.0/go.mod h1:5C2ZWiW0ErCdrYzpqxLbTX7MG14M9iiw8DgHncVwcsE= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= -github.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= -github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= -github.com/gogo/protobuf v1.3.1/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= -github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= -github.com/gogo/status v1.1.0/go.mod h1:BFv9nrluPLmrS0EmGVvLaPNmRosr9KapBYd5/hpY1WM= -github.com/golang-jwt/jwt v3.2.1+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I= -github.com/golang-jwt/jwt/v4 v4.2.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= -github.com/golang-jwt/jwt/v4 v4.3.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= -github.com/golang-jwt/jwt/v4 v4.4.3/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0= -github.com/golang-jwt/jwt/v4 v4.5.0/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0= github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= -github.com/golang/geo v0.0.0-20190916061304-5b978397cfec/go.mod h1:QZ0nwyI2jOfgRAoBvP+ab5aRr7c9x7lhGEJrKvBwjWI= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4= -github.com/golang/glog v1.1.0/go.mod h1:pfYeQZ3JWZoXTV5sFc986z3HTpwQs9At6P4ImfuP3NQ= -github.com/golang/glog v1.1.2/go.mod h1:zR+okUeTbrL6EL3xHUDxZuEtGv04p5shwip1+mL/rLQ= -github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= @@ -1279,6 +169,7 @@ github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3K github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.2-0.20190517061210-b285ee9cfc6c/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= @@ -1294,23 +185,10 @@ github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= -github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= -github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= -github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/golangci/lint-1 v0.0.0-20181222135242-d2cdd8c08219/go.mod h1:/X8TswGSh1pIozq4ZwCfxS0WA5JGXguxk94ar/4c87Y= -github.com/gomodule/redigo v1.7.1-0.20190724094224-574c33c3df38/go.mod h1:B4C85qUVwatsJoIUNIfCRsp7qO0iAmpGFZ4EELWSbC4= -github.com/gonum/blas v0.0.0-20181208220705-f22b278b28ac/go.mod h1:P32wAyui1PQ58Oce/KYkOqQv8cVw1zAapXOl+dRFGbc= -github.com/gonum/floats v0.0.0-20181209220543-c233463c7e82/go.mod h1:PxC8OnwL11+aosOB5+iEPoV3picfs8tUpkVd0pDo+Kg= -github.com/gonum/internal v0.0.0-20181124074243-f884aa714029/go.mod h1:Pu4dmpkhSyOzRwuXkOgAvijx4o+4YMUJJo9OvPYMkks= -github.com/gonum/lapack v0.0.0-20181123203213-e4cdc5a0bff9/go.mod h1:XA3DeT6rxh2EAE789SSiSJNqxPaC0aE9J8NTOI0Jo/A= -github.com/gonum/matrix v0.0.0-20181209220409-c518dec07be9/go.mod h1:0EXg4mc1CNP0HCqCz+K4ts155PXIlUywf0wqN+GfPZw= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= -github.com/google/flatbuffers v1.11.0/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= -github.com/google/flatbuffers v2.0.8+incompatible/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= @@ -1323,22 +201,11 @@ github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/ github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE= -github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= -github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/google/go-pkcs11 v0.2.0/go.mod h1:6eQoGcuNJpa7jnd5pMGdkSaQpNDYvPlXWMcjXXThLlY= -github.com/google/go-pkcs11 v0.2.1-0.20230907215043-c6f79328ddf9/go.mod h1:6eQoGcuNJpa7jnd5pMGdkSaQpNDYvPlXWMcjXXThLlY= -github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck= -github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU= -github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= -github.com/google/gofuzz v1.1.1-0.20200604201612-c04b05f3adfa/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/martian/v3 v3.2.1/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= -github.com/google/martian/v3 v3.3.2/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= @@ -1348,421 +215,137 @@ github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hf github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20230207041349-798e818bf904/go.mod h1:uglQLonpP8qtYCYyzA+8c/9qtqgA3qsXGYqCPKARAFg= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= -github.com/google/s2a-go v0.1.0/go.mod h1:OJpEgntRZo8ugHpF9hkoLJbS5dSI20XZeXJ9JVywLlM= -github.com/google/s2a-go v0.1.3/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A= -github.com/google/s2a-go v0.1.4/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A= -github.com/google/s2a-go v0.1.7/go.mod h1:50CgR4k1jNlWBu4UfS4AcfhVe1r6pdZPygJ3R8F0Qdw= -github.com/google/safehtml v0.0.2/go.mod h1:L4KWwDsUJdECRAEpZoBn3O64bQaywRscowZjJAzjHnU= -github.com/google/subcommands v1.2.0/go.mod h1:ZjhPrFU+Olkh9WazFPsl27BQ4UPiG37m3yTrtFlrHVk= -github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.2.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.3.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.4.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/googleapis/enterprise-certificate-proxy v0.0.0-20220520183353-fd19c99a87aa/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= -github.com/googleapis/enterprise-certificate-proxy v0.1.0/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= -github.com/googleapis/enterprise-certificate-proxy v0.2.0/go.mod h1:8C0jb7/mgJe/9KK8Lm7X9ctZC2t60YyIpYEI16jx0Qg= -github.com/googleapis/enterprise-certificate-proxy v0.2.1/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= -github.com/googleapis/enterprise-certificate-proxy v0.2.3/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= -github.com/googleapis/enterprise-certificate-proxy v0.2.4/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= -github.com/googleapis/enterprise-certificate-proxy v0.2.5/go.mod h1:RxW0N9901Cko1VOCW3SXCpWP+mlIEkk2tP7jnHy9a3w= -github.com/googleapis/enterprise-certificate-proxy v0.3.2/go.mod h1:VLSiSSBs/ksPL8kq3OBOQ6WRI2QnaFynd1DCjZ62+V0= -github.com/googleapis/gax-go v0.0.0-20161107002406-da06d194a00e/go.mod h1:SFVmujtThgffbyetf+mdk2eWhX2bMyUtNHzFKcPA9HY= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= github.com/googleapis/gax-go/v2 v2.1.1/go.mod h1:hddJymUZASv3XPyGkUpKj8pPO47Rmb0eJc8R6ouapiM= -github.com/googleapis/gax-go/v2 v2.2.0/go.mod h1:as02EH8zWkzwUoLbBaFeQ+arQaj/OthfcblKl4IGNaM= -github.com/googleapis/gax-go/v2 v2.3.0/go.mod h1:b8LNqSzNabLiUpXKkY7HAR5jr6bIT99EXz9pXxye9YM= -github.com/googleapis/gax-go/v2 v2.4.0/go.mod h1:XOTVJ59hdnfJLIP/dh8n5CGryZR2LxK9wbMD5+iXC6c= -github.com/googleapis/gax-go/v2 v2.5.1/go.mod h1:h6B0KMMFNtI2ddbGJn3T3ZbwkeT6yqEF02fYlzkUCyo= -github.com/googleapis/gax-go/v2 v2.6.0/go.mod h1:1mjbznJAPHFpesgE5ucqfYEscaz5kMdcIDwU/6+DDoY= -github.com/googleapis/gax-go/v2 v2.7.0/go.mod h1:TEop28CZZQ2y+c0VxMUmu1lV+fQx57QpBWsYpwqHJx8= -github.com/googleapis/gax-go/v2 v2.7.1/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= -github.com/googleapis/gax-go/v2 v2.8.0/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= -github.com/googleapis/gax-go/v2 v2.10.0/go.mod h1:4UOEnMCrxsSqQ940WnTiD6qJ63le2ev3xfyagutxiPw= -github.com/googleapis/gax-go/v2 v2.11.0/go.mod h1:DxmR61SGKkGLa2xigwuZIQpkCI2S5iydzRfb3peWZJI= -github.com/googleapis/gax-go/v2 v2.12.0/go.mod h1:y+aIqrI5eb1YGMVJfuV3185Ts/D7qKpsEkdD5+I6QGU= -github.com/googleapis/go-type-adapters v1.0.0/go.mod h1:zHW75FOG2aur7gAO2B+MLby+cLsWGBF62rFAi7WjWO4= -github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= -github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= -github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= -github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= -github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= -github.com/graph-gophers/graphql-go v1.3.0/go.mod h1:9CQHMSxwO4MprSdzoIEobiHpoLtHm77vfxsvsIN5Vuc= -github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= -github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= -github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= +github.com/gorilla/websocket v1.4.1-0.20190629185528-ae1634f6a989/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= +github.com/graph-gophers/graphql-go v0.0.0-20191115155744-f33e81362277/go.mod h1:9CQHMSxwO4MprSdzoIEobiHpoLtHm77vfxsvsIN5Vuc= github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0/go.mod h1:hgWBS7lorOAVIJEQMi4ZsPv9hVvWI6+ch50m39Pf2Ks= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3/go.mod h1:o//XUCC/F+yRGJoPO/VU0GSB0f8Nhgmxx0VIRUvaC0w= -github.com/guptarohit/asciigraph v0.5.5/go.mod h1:dYl5wwK4gNsnFf9Zp+l06rFiDZ5YtXM6x7SRWZ3KGag= -github.com/hashicorp/go-bexpr v0.1.10/go.mod h1:oxlubA2vC/gFVfX1A6JGp7ls7uCDlfJn732ehYYg+g0= -github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= -github.com/hashicorp/go-hclog v0.9.2/go.mod h1:5CU+agLiy3J7N7QjHK5d05KxGsuXiQLrjA0H7acj2lQ= -github.com/hashicorp/go-hclog v1.2.0/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ= -github.com/hashicorp/go-retryablehttp v0.7.4/go.mod h1:Jy/gPYAdjqffZ/yFGCFV2doI5wjtH1ewM9u8iYVjtX8= -github.com/hashicorp/go-version v1.2.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= +github.com/hashicorp/golang-lru v0.0.0-20160813221303-0a025b7e63ad/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= -github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= -github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4= -github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= -github.com/holiman/billy v0.0.0-20230718173358-1c7e68d277a7/go.mod h1:5GuXa7vkL8u9FkFuWdVvfR5ix8hRB7DbOAaYULamFpc= -github.com/holiman/bloomfilter/v2 v2.0.3/go.mod h1:zpoh+gs7qcpqrHr3dB55AMiJwo0iURXE7ZOP9L9hSkA= -github.com/holiman/uint256 v1.2.0/go.mod h1:y4ga/t+u+Xwd7CpDgZESaRcWy0I7XMlTMA25ApIH5Jw= -github.com/holiman/uint256 v1.2.3 h1:K8UWO1HUJpRMXBxbmaY1Y8IAMZC/RsKB+ArEnnK4l5o= -github.com/holiman/uint256 v1.2.3/go.mod h1:SC8Ryt4n+UBbPbIBKaG9zbbDlp4jOru9xFZmPzLUTxw= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= -github.com/huin/goupnp v1.0.3/go.mod h1:ZxNlw5WqJj6wSsRK5+YfflQGXYfccj5VgQsMNixHM7Y= -github.com/huin/goupnp v1.3.0/go.mod h1:gnGPsThkYa7bFi/KWmEysQRf48l2dvR5bxr2OFckNX8= -github.com/huin/goutil v0.0.0-20170803182201-1ca381bf3150/go.mod h1:PpLOETDnJ0o3iZrZfqZzyLl6l7F3c6L1oWn7OICBi6o= -github.com/hydrogen18/memlistener v0.0.0-20141126152155-54553eb933fb/go.mod h1:qEIFzExnS6016fRpRfxrExeVn2gbClQA99gQhnIcdhE= -github.com/iancoleman/strcase v0.2.0/go.mod h1:iwCmte+B7n89clKwxIoIXy/HfoL7AsD47ZCWhYzw7ho= +github.com/huin/goupnp v0.0.0-20161224104101-679507af18f3/go.mod h1:MZ2ZmwcBpvOoJ22IJsc7va19ZwoheaBk43rKg12SKag= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= -github.com/ianlancetaylor/demangle v0.0.0-20220319035150-800ac71e25c2/go.mod h1:aYm2/VgdVmcIU8iMfdMvDMsRAQjcfZSKFby6HOFvi/w= -github.com/imkira/go-interpol v1.1.0/go.mod h1:z0h2/2T3XF8kyEPpRgJ3kmNv+C43p+I/CoI+jC3w2iA= -github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM= -github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= -github.com/influxdata/flux v0.65.1/go.mod h1:J754/zds0vvpfwuq7Gc2wRdVwEodfpCFM7mYlOw2LqY= -github.com/influxdata/influxdb v1.8.3/go.mod h1:JugdFhsvvI8gadxOI6noqNeeBHvWNTbfYGtiAn+2jhI= -github.com/influxdata/influxdb-client-go/v2 v2.4.0/go.mod h1:vLNHdxTJkIf2mSLvGrpj8TCcISApPoXkaxP8g9uRlW8= -github.com/influxdata/influxdb1-client v0.0.0-20220302092344-a9ab5670611c/go.mod h1:qj24IKcXYK6Iy9ceXlo3Tc+vtHo9lIhSX5JddghvEPo= -github.com/influxdata/influxql v1.1.1-0.20200828144457-65d3ef77d385/go.mod h1:gHp9y86a/pxhjJ+zMjNXiQAA197Xk9wLxaz+fGG+kWk= -github.com/influxdata/line-protocol v0.0.0-20180522152040-32c6aa80de5e/go.mod h1:4kt73NQhadE3daL3WhR5EJ/J2ocX0PZzwxQ0gXJ7oFE= -github.com/influxdata/line-protocol v0.0.0-20200327222509-2487e7298839/go.mod h1:xaLFMmpvUxqXtVkUJfg9QmT88cDaCJ3ZKgdZ78oO8Qo= -github.com/influxdata/line-protocol v0.0.0-20210311194329-9aa0e372d097/go.mod h1:xaLFMmpvUxqXtVkUJfg9QmT88cDaCJ3ZKgdZ78oO8Qo= -github.com/influxdata/promql/v2 v2.12.0/go.mod h1:fxOPu+DY0bqCTCECchSRtWfc+0X19ybifQhZoQNF5D8= -github.com/influxdata/roaring v0.4.13-0.20180809181101-fc520f41fab6/go.mod h1:bSgUQ7q5ZLSO+bKBGqJiCBGAl+9DxyW63zLTujjUlOE= -github.com/influxdata/tdigest v0.0.0-20181121200506-bf2b5ad3c0a9/go.mod h1:Js0mqiSBE6Ffsg94weZZ2c+v/ciT8QRHFOap7EKDrR0= -github.com/influxdata/usage-client v0.0.0-20160829180054-6d3895376368/go.mod h1:Wbbw6tYNvwa5dlB6304Sd+82Z3f7PmVZHVKU637d4po= -github.com/iris-contrib/blackfriday v2.0.0+incompatible/go.mod h1:UzZ2bDEoaSGPbkg6SAB4att1aAwTmVIx/5gCVqeyUdI= -github.com/iris-contrib/go.uuid v2.0.0+incompatible/go.mod h1:iz2lgM/1UnEf1kP0L/+fafWORmlnuysV2EMP8MW+qe0= -github.com/iris-contrib/i18n v0.0.0-20171121225848-987a633949d0/go.mod h1:pMCz62A0xJL6I+umB2YTlFRwWXaDFA0jy+5HzGiJjqI= -github.com/iris-contrib/schema v0.0.1/go.mod h1:urYA3uvUNG1TIIjOSCzHr9/LmbQo8LrOcOqfqxa4hXw= -github.com/jackpal/go-nat-pmp v1.0.2/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc= -github.com/jedisct1/go-minisign v0.0.0-20190909160543-45766022959e/go.mod h1:G1CVv03EnqU1wYL2dFwXxW2An0az9JTl/ZsqXQeBlkU= -github.com/jedisct1/go-minisign v0.0.0-20230811132847-661be99b8267/go.mod h1:h1nSAbGFqGVzn6Jyl1R/iCcBUHN4g+gW1u9CoBTrb9E= -github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= -github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= -github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= -github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= -github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= -github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= +github.com/influxdata/influxdb v1.2.3-0.20180221223340-01288bdb0883/go.mod h1:qZna6X/4elxqT3yI9iZYdZrWWdeFOOprn86kgg4+IzY= +github.com/jackpal/go-nat-pmp v1.0.2-0.20160603034137-1fa385a6f458/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc= +github.com/jessevdk/go-flags v0.0.0-20141203071132-1679536dcc89/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= +github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= +github.com/jrick/logrotate v1.0.0/go.mod h1:LNinyqDIJnpAur+b8yyulnQw/wDuN1+BYKlTRt3OuAQ= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= -github.com/jsternberg/zap-logfmt v1.0.0/go.mod h1:uvPs/4X51zdkcm5jXl5SYoN+4RK21K8mysFmDaM/h+o= -github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= -github.com/juju/errors v0.0.0-20181118221551-089d3ea4e4d5/go.mod h1:W54LbzXuIE0boCoNJfwqpmkKJ1O4TCTZMetAt6jGk7Q= -github.com/juju/loggo v0.0.0-20180524022052-584905176618/go.mod h1:vgyd7OREkbtVEN/8IXZe5Ooef3LQePvuBm9UWj6ZL8U= -github.com/juju/testing v0.0.0-20180920084828-472a3e8b2073/go.mod h1:63prj8cnj0tU0S9OHjGJn+b1h0ZghCndfnbQolrYTwA= -github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= -github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= -github.com/jung-kurt/gofpdf v1.0.0/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= +github.com/julienschmidt/httprouter v1.1.1-0.20170430222011-975b5c4c7c21/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= -github.com/jwilder/encoding v0.0.0-20170811194829-b4e1701a28ef/go.mod h1:Ct9fl0F6iIOGgxJ5npU/IUOhOhqlVrGjyIZc8/MagT0= -github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 h1:uC1QfSlInpQF+M0ao65imhwqKnz3Q2z/d8PWZRMQvDM= -github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88/go.mod h1:3w7q1U84EfirKl04SVQ/s7nPm1ZPhiXd34z40TNz36k= github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213/go.mod h1:vNUNkEQ1e29fT/6vq2aBdFsgNPmy8qMdSay1npru+Sw= -github.com/k0kubun/pp v3.0.1+incompatible h1:3tqvf7QgUnZ5tXO6pNAZlrvHgl6DvifjDrd9g2S9Z40= -github.com/k0kubun/pp v3.0.1+incompatible/go.mod h1:GWse8YhT0p8pT4ir3ZgBbfZild3tgzSScAn6HmfYukg= -github.com/k0kubun/pp/v3 v3.2.0/go.mod h1:ODtJQbQcIRfAD3N+theGCV1m/CBxweERz2dapdz1EwA= -github.com/karalabe/usb v0.0.2/go.mod h1:Od972xHfMJowv7NGVDiWVxk2zxnWgjLlJzE+F4F7AGU= -github.com/kataras/golog v0.0.9/go.mod h1:12HJgwBIZFNGL0EJnMRhmvGA0PQGx8VFwrZtM4CqbAk= -github.com/kataras/iris/v12 v12.0.1/go.mod h1:udK4vLQKkdDqMGJJVd/msuMtN6hpYJhg/lSzuxjhO+U= -github.com/kataras/neffos v0.0.10/go.mod h1:ZYmJC07hQPW67eKuzlfY7SO3bC0mw83A3j6im82hfqw= -github.com/kataras/pio v0.0.0-20190103105442-ea782b38602d/go.mod h1:NV88laa9UiiDuX9AhMbDPkGYSPugBOV6yTZB1l2K9Z0= -github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8= +github.com/karalabe/usb v0.0.0-20190919080040-51dc0efba356/go.mod h1:Od972xHfMJowv7NGVDiWVxk2zxnWgjLlJzE+F4F7AGU= +github.com/kevinburke/go-bindata v3.22.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= +github.com/kevinburke/go-bindata v3.23.0+incompatible h1:rqNOXZlqrYhMVVAsQx8wuc+LaA73YcfbQ407wAykyS8= github.com/kevinburke/go-bindata v3.23.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= -github.com/kevinburke/go-bindata v3.24.0+incompatible h1:qajFA3D0pH94OTLU4zcCCKCDgR+Zr2cZK/RPJHDdFoY= -github.com/kevinburke/go-bindata v3.24.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= -github.com/kilic/bls12-381 v0.1.0/go.mod h1:vDTTHJONJ6G+P2R74EhnyotQDTliQDnFEwhdmfzw1ig= -github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= -github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00= -github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= -github.com/klauspost/asmfmt v1.3.2/go.mod h1:AG8TuvYojzulgDAMCnYn50l/5QV3Bs/tp6j0HLHbNSE= -github.com/klauspost/compress v1.4.0/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= -github.com/klauspost/compress v1.8.2/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= -github.com/klauspost/compress v1.9.0/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= -github.com/klauspost/compress v1.15.9/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHUDtV4Yw2GlzU= -github.com/klauspost/compress v1.15.15/go.mod h1:ZcK2JAFqKOpnBlxcLsJzYfrS9X1akm9fHZNnD9+Vo/4= -github.com/klauspost/cpuid v0.0.0-20170728055534-ae7887de9fa5/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= -github.com/klauspost/cpuid v1.2.1/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= -github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= +github.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23/go.mod h1:J+Gs4SYgM6CZQHDETBtE9HaSEkGmuNXF86RwHhHUvq4= github.com/klauspost/cpuid/v2 v2.0.12/go.mod h1:g2LTdtYhdyuGPqyWyv7qRAmj1WBqxuObKfj5c0PQa7c= -github.com/klauspost/cpuid/v2 v2.2.0/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY= -github.com/klauspost/cpuid/v2 v2.2.5 h1:0E5MSMDEoAulmXNFquVs//DdoomxaoTY1kUhbc/qbZg= -github.com/klauspost/cpuid/v2 v2.2.5/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= -github.com/klauspost/crc32 v0.0.0-20161016154125-cb6bfca970f6/go.mod h1:+ZoRqAPRLkC4NPOvfYeR5KNOrY6TD+/sAC3HXPZgDYg= -github.com/klauspost/pgzip v1.0.2-0.20170402124221-0bf5dcad4ada/go.mod h1:Ch1tH69qFZu15pkjo5kYi6mth2Zzwzt50oCQKQE9RUs= +github.com/klauspost/cpuid/v2 v2.2.4 h1:acbojRNwl3o09bUq+yDCtZFc1aiwaAAxtcn8YkZXnvk= +github.com/klauspost/cpuid/v2 v2.2.4/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY= +github.com/konsorten/go-windows-terminal-sequences v1.0.1 h1:mweAR1A6xJ3oS2pRaGiHgQ4OO8tzTaLawm8vnODuwDk= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= +github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= -github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= -github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk= -github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= -github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= -github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= -github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= -github.com/kylelemons/godebug v0.0.0-20170224010052-a616ab194758/go.mod h1:B69LEHPfb2qLo0BaaOLcbitczOKLWTsrBG9LczfCD4k= github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= -github.com/labstack/echo/v4 v4.1.11/go.mod h1:i541M3Fj6f76NZtHSj7TXnyM8n2gaodfvfxNnFqi74g= -github.com/labstack/echo/v4 v4.2.1/go.mod h1:AA49e0DZ8kk5jTOOCKNuPR6oTnBS0dYiM4FW1e6jwpg= -github.com/labstack/gommon v0.3.0/go.mod h1:MULnywXg0yavhxWKc+lOruYdAhDwPK9wf0OL7NoOu+k= -github.com/leanovate/gopter v0.2.9 h1:fQjYxZaynp97ozCzfOyOuAGOU4aU/z37zf/tOujFk7c= -github.com/leanovate/gopter v0.2.9/go.mod h1:U2L/78B+KVFIx2VmW6onHJQzXtFb+p5y3y2Sh+Jxxv8= -github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= +github.com/logrusorgru/aurora v0.0.0-20200102142835-e9ef32dff381/go.mod h1:7rIyQOR62GCctdiQpZ/zOJlFyk6y+94wXzv6RNZgaR4= github.com/logrusorgru/aurora/v4 v4.0.0 h1:sRjfPpun/63iADiSvGGjgA1cAYegEWMPCJdUpJYn9JA= github.com/logrusorgru/aurora/v4 v4.0.0/go.mod h1:lP0iIa2nrnT/qoFXcOZSrZQpJ1o6n2CUf/hyHi2Q4ZQ= -github.com/lyft/protoc-gen-star v0.6.0/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= -github.com/lyft/protoc-gen-star v0.6.1/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= -github.com/lyft/protoc-gen-star/v2 v2.0.1/go.mod h1:RcCdONR2ScXaYnQC5tUzxzlpA3WVYF7/opLeUgcQs/o= -github.com/lyft/protoc-gen-star/v2 v2.0.3/go.mod h1:amey7yeodaJhXSbf/TlLvWiqQfLOSpEk//mLlc+axEk= -github.com/magiconair/properties v1.8.0 h1:LLgXmsheXeRoUOBOjtwPQCWIYqM/LU1ayDtDePerRcY= -github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= -github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= -github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= -github.com/matryer/moq v0.0.0-20190312154309-6cfb0558e1bd/go.mod h1:9ELz6aaclSIGnZBoaSLZ3NAl1VTufbOrXBPvtcy6WiQ= -github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= -github.com/mattn/go-colorable v0.1.2/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= +github.com/mattn/go-colorable v0.1.0/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= github.com/mattn/go-colorable v0.1.7/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= -github.com/mattn/go-colorable v0.1.8/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= -github.com/mattn/go-colorable v0.1.9/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= -github.com/mattn/go-colorable v0.1.12/go.mod h1:u5H1YNBxpqRaxsYJYSkiCWKzEfiAb1Gb520KVy5xxl4= -github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= -github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= -github.com/mattn/go-isatty v0.0.4/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= -github.com/mattn/go-isatty v0.0.7/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= +github.com/mattn/go-ieproxy v0.0.0-20190610004146-91bb50d98149/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= +github.com/mattn/go-ieproxy v0.0.0-20190702010315-6dee0af9227d/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= +github.com/mattn/go-isatty v0.0.5-0.20180830101745-3fb116b82035/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= -github.com/mattn/go-isatty v0.0.9/go.mod h1:YNRxwqDuOph6SZLI9vUUz6OYw3QyUt7WiY2yME+cCiQ= github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84= github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= -github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= -github.com/mattn/go-isatty v0.0.17/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= -github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APPA= -github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= github.com/mattn/go-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= +github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.6/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= -github.com/mattn/go-runewidth v0.0.14/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= -github.com/mattn/go-sqlite3 v1.11.0/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= -github.com/mattn/go-sqlite3 v1.14.5/go.mod h1:WVKg1VTActs4Qso6iwGbiFih2UIHo0ENGwNd0Lj+XmI= -github.com/mattn/go-sqlite3 v1.14.14/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU= -github.com/mattn/go-sqlite3 v1.14.15/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg= -github.com/mattn/go-tty v0.0.0-20180907095812-13ff1204f104/go.mod h1:XPvLUNfbS4fJH25nqRHfWLMa1ONC8Amw+mIA639KxkE= github.com/mattn/go-tty v0.0.3/go.mod h1:ihxohKRERHTVzN+aSVRwACLCeqIoZAWpoICkkvrWyR0= -github.com/mattn/goveralls v0.0.2/go.mod h1:8d1ZMHsd7fW6IRPKQh46F2WRpyib5/X4FOpevwGNQEw= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= -github.com/mediocregopher/mediocre-go-lib v0.0.0-20181029021733-cb65787f37ed/go.mod h1:dSsfyI2zABAdhcbvkXqgxOxrCsbYeHCPgrZkku60dSg= -github.com/mediocregopher/radix/v3 v3.3.0/go.mod h1:EmfVyvspXz1uZEyPBMyGK+kjWiKQGvsUt6O3Pj+LDCQ= -github.com/microcosm-cc/bluemonday v1.0.2/go.mod h1:iVP4YcDBq+n/5fb23BhYFvIMq/leAFZyRl6bYmGDlGc= -github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8/go.mod h1:mC1jAcsrzbxHt8iiaC+zU4b1ylILSosueou12R++wfY= -github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3/go.mod h1:RagcQ7I8IeTMnF8JTXieKnO4Z6JCsikNEzj0DwauVzE= github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db/go.mod h1:l0dey0ia/Uv7NcFFVbCLtqEBQbrT4OCwCSKTEv6enCw= -github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= -github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= -github.com/mitchellh/mapstructure v1.4.1 h1:CpVNEelQCZBooIPDn+AR3NpivK/TIKU8bDxdASFVQag= -github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= -github.com/mitchellh/pointerstructure v1.2.0/go.mod h1:BRAsLI5zgXmw97Lf6s25bs8ohIXc3tViBH44KcwB2g4= -github.com/mmcloughlin/addchain v0.4.0/go.mod h1:A86O+tHqZLMNO4w6ZZ4FlVQEadcoqkyU72HC5wJ4RlU= -github.com/mmcloughlin/profile v0.1.1/go.mod h1:IhHD7q1ooxgwTgjxQYkACGA77oFTDdFVejUS1/tS/qU= -github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= -github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= -github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= -github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= -github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= -github.com/modocache/gover v0.0.0-20171022184752-b58185e213c5/go.mod h1:caMODM3PzxT8aQXRPkAt8xlV/e7d7w8GM5g0fa5F0D8= -github.com/montanaflynn/stats v0.6.6/go.mod h1:etXPPgVO6n31NxCd9KQUMvCM+ve0ruNzt6R8Bnaayow= -github.com/montanaflynn/stats v0.7.0/go.mod h1:etXPPgVO6n31NxCd9KQUMvCM+ve0ruNzt6R8Bnaayow= -github.com/moul/http2curl v1.0.0/go.mod h1:8UbvGypXm98wA/IqH45anm5Y2Z6ep6O31QGOAZ3H0fQ= -github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae/go.mod h1:qAyveg+e4CE+eKJXWVjKXM4ck2QobLqTDytGJbLLhJg= -github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= -github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/naoina/go-stringutil v0.1.0/go.mod h1:XJ2SJL9jCtBh+P9q5btrd/Ylo8XwT/h1USek5+NqSA0= github.com/naoina/toml v0.1.2-0.20170918210437-9fafd6967416/go.mod h1:NBIhNtsFMo3G2szEBne+bO4gS192HuIYRqfvOWb4i1E= -github.com/nats-io/nats.go v1.8.1/go.mod h1:BrFz9vVn0fU3AcH9Vn4Kd7W0NpJ651tD5omQ3M8LwxM= -github.com/nats-io/nkeys v0.0.2/go.mod h1:dab7URMsZm6Z/jp9Z5UGa87Uutgc2mVpXLC4B7TDb/4= -github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= -github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= -github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= -github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY= -github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f h1:Z8/PgTqOgOg02MTRpTBYO2k16FE6z4wEOtaC2WBR9Xo= -github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f/go.mod h1:xvP61FoOs95K7IYdIYRnNcYQGf4nbF/uuJ0tHf4DRuM= -github.com/onflow/cadence v1.0.0-M3 h1:bSydJise9pU4aALloUKv/EWmDLITRlbBpuG8OPBydZM= -github.com/onflow/cadence v1.0.0-M3/go.mod h1:odXGZZ/wGNA5mwT8bC9v8u8EXACHllB2ABSZK65TGL8= -github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= -github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= -github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9 h1:rTemckPWir+N/m1GyhT8jdiETj0RiWc8FiwItE2Nxyg= -github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9/go.mod h1:PZrrCsllIt/Bu4HlJtisXfvDrOt1aLKU5R70vsZHKRc= -github.com/onflow/flow-ft/lib/go/contracts v1.0.0 h1:mToacZ5NWqtlWwk/7RgIl/jeKB/Sy/tIXdw90yKHcV0= -github.com/onflow/flow-ft/lib/go/contracts v1.0.0/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= -github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876 h1:fZj39XxayIL7uvKvonNI3MtQM3wsFJ8oRl/XW/0rn7A= -github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= -github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= -github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= -github.com/onflow/flow-nft/lib/go/contracts v1.2.1 h1:woAAS5z651sDpi7ihAHll8NvRS9uFXIXkL6xR+bKFZY= -github.com/onflow/flow-nft/lib/go/contracts v1.2.1/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= -github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8 h1:BqgQgXktxVFv8erjCaSHpL0CP+pa5M8g655GyF/t4JM= -github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= -github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= -github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= -github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= +github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= +github.com/olekukonko/tablewriter v0.0.2-0.20190409134802-7e037d187b0c/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= +github.com/onflow/atree v0.1.0-beta1.0.20211027184039-559ee654ece9/go.mod h1:+6x071HgCF/0v5hQcaE5qqjc2UqN5gCU8h5Mk6uqpOg= +github.com/onflow/atree v0.6.0 h1:j7nQ2r8npznx4NX39zPpBYHmdy45f4xwoi+dm37Jk7c= +github.com/onflow/atree v0.6.0/go.mod h1:gBHU0M05qCbv9NN0kijLWMgC47gHVNBIp4KmsVFi0tc= +github.com/onflow/cadence v0.20.1/go.mod h1:7mzUvPZUIJztIbr9eTvs+fQjWWHTF8veC+yk4ihcNIA= +github.com/onflow/cadence v0.39.12 h1:bb3UdOe7nClUcaLbxSWGLSIJKuCrivpgxhPow99ikv0= +github.com/onflow/cadence v0.39.12/go.mod h1:OIJLyVBPa339DCBQXBfGaorT4tBjQh9gSKe+ZAIyyh0= +github.com/onflow/flow-go-sdk v0.24.0/go.mod h1:IoptMLPyFXWvyd9yYA6/4EmSeeozl6nJoIv4FaEMg74= +github.com/onflow/flow-go-sdk v0.41.6 h1:x5HhmRDvbCWXRCzHITJxOp0Komq5JJ9zphoR2u6NOCg= +github.com/onflow/flow-go-sdk v0.41.6/go.mod h1:AYypQvn6ecMONhF3M1vBOUX9b4oHKFWkkrw8bO4VEik= +github.com/onflow/flow-go/crypto v0.21.3/go.mod h1:vI6V4CY3R6c4JKBxdcRiR/AnjBfL8OSD97bJc60cLuQ= +github.com/onflow/flow-go/crypto v0.24.7 h1:RCLuB83At4z5wkAyUCF7MYEnPoIIOHghJaODuJyEoW0= +github.com/onflow/flow-go/crypto v0.24.7/go.mod h1:fqCzkIBBMRRkciVrvW21rECKq1oD7Q6u+bCI78lfNX0= +github.com/onflow/flow-nft/lib/go/contracts v1.1.0 h1:rhUDeD27jhLwOqQKI/23008CYfnqXErrJvc4EFRP2a0= +github.com/onflow/flow-nft/lib/go/contracts v1.1.0/go.mod h1:YsvzYng4htDgRB9sa9jxdwoTuuhjK8WYWXTyLkIigZY= +github.com/onflow/flow/protobuf/go/flow v0.2.2/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.10.3/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk= -github.com/onsi/ginkgo v1.13.0/go.mod h1:+REjRxOmWfHCjfv9TTWB1jD1Frx4XydAD3zm1lskyM0= -github.com/onsi/ginkgo v1.14.0/go.mod h1:iSB4RoI2tjJc9BBv4NKIKWKya62Rps+oPG/Lv9klQyY= -github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY= -github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo= -github.com/opentracing/opentracing-go v1.0.2/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= -github.com/opentracing/opentracing-go v1.0.3-0.20180606204148-bd9c31933947/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= +github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= -github.com/paulbellamy/ratecounter v0.2.0/go.mod h1:Hfx1hDpSGoqxkVVpBi/IlYD7kChlfo5C6hzIHwPqfFE= -github.com/pelletier/go-toml v1.2.0 h1:T5zMGML61Wp+FlcbWjRDT7yAxhJNAiPPLOFECq181zc= -github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= -github.com/peterh/liner v1.0.1-0.20180619022028-8c1271fcf47f/go.mod h1:xIteQHvHuaLYG9IFj6mSxM0fCKrs34IrEQUhOYuGPHc= +github.com/pborman/uuid v0.0.0-20170112150404-1b00554d8222/go.mod h1:VyrYX9gd7irzKovcSS6BIIEwPRkP2Wm2m9ufcdFSJ34= github.com/peterh/liner v1.1.1-0.20190123174540-a2c9a5303de7/go.mod h1:CRroGNssyjTd/qIG2FyxByd2S8JEAZXBl4qUrZf8GS0= -github.com/philhofer/fwd v1.0.0/go.mod h1:gk3iGcWd9+svBvR0sR+KPcfE+RNWozjowpeBVG3ZVNU= -github.com/phpdave11/gofpdf v1.4.2/go.mod h1:zpO6xFn9yxo3YLyMvW8HcKWVdbNqgIfOOp2dXMnm1mY= -github.com/phpdave11/gofpdi v1.0.12/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= -github.com/phpdave11/gofpdi v1.0.13/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= -github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= -github.com/pierrec/lz4/v4 v4.1.15/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= -github.com/pingcap/errors v0.11.4/go.mod h1:Oi8TUi2kEtXXLMJk9l1cGmz20kV3TaQ0usTwv5KuLY8= -github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4/go.mod h1:N6UoU20jOqggOuDwUaBQpluzLNDqif3kq9z2wpdYEfQ= -github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8/go.mod h1:HKlIX3XHQyzLZPlr7++PzdhaXEj94dEiJgZDTsxEqUI= -github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI= -github.com/pkg/sftp v1.13.1/go.mod h1:3HaPG6Dq1ILlpPZRO0HVMrsydcdLt6HRDccSgb87qRg= -github.com/pkg/term v0.0.0-20180730021639-bffc007b7fd5/go.mod h1:eCbImbZ95eXtAUIbLAuAVnBnwf83mjf6QIVH8SHYwqQ= -github.com/pkg/term v1.2.0-beta.2/go.mod h1:E25nymQcrSllhX42Ok8MRm1+hyBdHY0dCeiKZ9jpNGw= +github.com/pkg/term v1.1.0/go.mod h1:E25nymQcrSllhX42Ok8MRm1+hyBdHY0dCeiKZ9jpNGw= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/prashantv/gostub v1.1.0/go.mod h1:A5zLQHz7ieHGG7is6LLXLz7I8+3LZzsrV0P1IAHhP5U= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= -github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso= -github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= -github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= -github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0= -github.com/prometheus/client_golang v1.12.0/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.2.1-0.20210607210712-147c58e9608a/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= -github.com/prometheus/client_model v0.3.0/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= -github.com/prometheus/client_model v0.4.0/go.mod h1:oMQmHW1/JoDwqLtg57MGgP/Fb1CJEYF2imWWhWtMkYU= github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= -github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= -github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= -github.com/prometheus/common v0.6.0/go.mod h1:eBmuwkDJBwy6iBfxCBob6t6dR6ENT/y+J+Zk0j9GMYc= -github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= -github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= -github.com/prometheus/common v0.32.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= -github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= -github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= -github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= -github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= -github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= -github.com/protolambda/bls12-381-util v0.0.0-20220416220906-d8552aa452c7/go.mod h1:IToEjHuttnUzwZI5KBSM/LOOW3qLbbrHOEfp3SbECGY= -github.com/psiemens/sconfig v0.1.0 h1:xfWqW+TRpih7mXZIqKYTmpRhlZLQ1kbxV8EjllPv76s= -github.com/psiemens/sconfig v0.1.0/go.mod h1:+MLKqdledP/8G3rOBpknbLh0IclCf4WneJUtS26JB2U= -github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= -github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= -github.com/retailnext/hllpp v1.0.1-0.20180308014038-101a6d2f8b52/go.mod h1:RDpi1RftBQPUCDRw6SmxeaREsAaRKnOclghuzp/WRzc= +github.com/prometheus/tsdb v0.6.2-0.20190402121629-4f204dcbc150/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= github.com/rivo/uniseg v0.4.4 h1:8TfxU8dW6PdqD27gjM8MVNuicgxIjxpm4K7x4jp8sis= github.com/rivo/uniseg v0.4.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= github.com/rjeczalik/notify v0.9.1/go.mod h1:rKwnCoCGeuQnwBtTSPL9Dad03Vh2n40ePRrjvIXnJho= -github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= +github.com/robertkrimen/otto v0.0.0-20170205013659-6a77b7cbc37d/go.mod h1:xvqspoSXJTIpemEonrMDFq6XzwHYYgToXWj5eRX1OtY= github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= -github.com/rogpeppe/go-internal v1.8.1/go.mod h1:JeRgkft04UBgHMgCIwADu4Pn6Mtm5d4nPKWu0nJ5d+o= -github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= -github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= -github.com/rs/cors v1.7.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= -github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= +github.com/rs/cors v0.0.0-20160617231935-a62a804a8a00/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= +github.com/rs/xhandler v0.0.0-20160618193221-ed27b6fd6521/go.mod h1:RvLn4FgxWubrpZHtQLnOf6EwhN2hEMusxZOhcW9H3UQ= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= -github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= -github.com/ruudk/golang-pdf417 v0.0.0-20181029194003-1af4ab5afa58/go.mod h1:6lfFZQK844Gfx8o5WFuvpxWRwnSoipWe/p622j1v06w= -github.com/ruudk/golang-pdf417 v0.0.0-20201230142125-a7e3863a1245/go.mod h1:pQAZKsJ8yyVxGRWYNEm9oFB8ieLgKFnamEyDmSA0BRk= -github.com/ryanuber/columnize v2.1.0+incompatible/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= -github.com/schollz/progressbar/v3 v3.13.1/go.mod h1:xvrbki8kfT1fzWzBT/UZd9L6GA+jdL7HAgq2RFnO6fQ= -github.com/sclevine/agouti v3.0.0+incompatible/go.mod h1:b4WX9W9L1sfQKXeJf1mUTLZKJ48R1S7H23Ji7oFO5Bw= -github.com/segmentio/kafka-go v0.1.0/go.mod h1:X6itGqS9L4jDletMsxZ7Dz+JFWxM6JHfPOCvTvk+EJo= -github.com/segmentio/kafka-go v0.2.0/go.mod h1:X6itGqS9L4jDletMsxZ7Dz+JFWxM6JHfPOCvTvk+EJo= -github.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo= -github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= -github.com/sergi/go-diff v1.2.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= -github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC7eC3UO/RA= +github.com/schollz/progressbar/v3 v3.8.3/go.mod h1:pWnVCjSBZsT2X3nx9HfRdnCDrpbevliMeoEVhStwHko= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= -github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= -github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= -github.com/sirupsen/logrus v1.9.0 h1:trlNQbNUG3OdDrDil03MCb1H2o9nJ1x4/5LYw7byDE0= -github.com/sirupsen/logrus v1.9.0/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= -github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= -github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= -github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= -github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= -github.com/spf13/afero v1.3.3/go.mod h1:5KUK8ByomD5Ti5Artl0RtHeI5pTF7MIDuXL3yY520V4= -github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= -github.com/spf13/afero v1.9.2 h1:j49Hj62F0n+DaZ1dDCvhABaPNSGNkt32oRFxI33IEMw= -github.com/spf13/afero v1.9.2/go.mod h1:iUV7ddyEEZPO5gA3zD4fJt6iStLlL+Lg4m2cihcDf8Y= -github.com/spf13/cast v1.3.0 h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8= -github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= -github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= -github.com/spf13/cobra v0.0.5/go.mod h1:3K3wKZymM7VvHMDS9+Akkh4K60UwM26emMESw8tLCHU= -github.com/spf13/cobra v1.0.0/go.mod h1:/6GTrnGXV9HjY+aR4k0oJ5tcvakLuG6EuKReYlHNrgE= -github.com/spf13/cobra v1.5.0 h1:X+jTBEBqF0bHN+9cSMgmfuvv2VHJ9ezmFNf9Y/XstYU= -github.com/spf13/cobra v1.5.0/go.mod h1:dWXEIy2H428czQCjInthrTRUg7yKbok+2Qi/yBIJoUM= -github.com/spf13/jwalterweatherman v1.0.0 h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk= -github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= -github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= -github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= -github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= -github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s= -github.com/spf13/viper v1.4.0 h1:yXHLWeravcrgGyFSyCgdYpXQ9dR9c/WED3pg1RhxqEU= -github.com/spf13/viper v1.4.0/go.mod h1:PTJ7Z/lr49W6bUbkmS1V3by4uWynFiR9p7+dSq/yZzE= +github.com/spaolacci/murmur3 v1.0.1-0.20190317074736-539464a789e9/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/status-im/keycard-go v0.0.0-20190316090335-8537d3370df4/go.mod h1:RZLeN1LMWmRsyYjvAu+I6Dm9QmlDaIIt+Y+4Kd7Tp+Q= -github.com/status-im/keycard-go v0.2.0/go.mod h1:wlp8ZLbsmrF6g6WjugPAx+IzoLrkdf9+mHxBEeo3Hbg= +github.com/steakknife/bloomfilter v0.0.0-20180922174646-6819c0d2a570/go.mod h1:8OR4w3TdeIHIh1g6EMY5p0gVNOovcWC+1vpc7naMuAw= +github.com/steakknife/hamming v0.0.0-20180906055917-c99c65617cd3/go.mod h1:hpGUWaI9xL8pRQCTXQgocU38Qw1g0Us7n5PxxTwTCYU= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= -github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= -github.com/stretchr/testify v1.2.0/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= @@ -1770,71 +353,31 @@ github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5 github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.7.2/go.mod h1:R6va5+xMeoiuVRoj+gSkQ7d3FALtqAAGI1FQKckRals= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= -github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/stretchr/testify v1.8.2 h1:+h33VjcLVPDHtOdpUCuF+7gSuG3yGIftsP1YvFihtJ8= github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= -github.com/stretchr/testify v1.8.3/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= -github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= -github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= -github.com/supranational/blst v0.3.8-0.20220526154634-513d2456b344/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= -github.com/supranational/blst v0.3.11/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= -github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7/go.mod h1:q4W45IWZaF22tdD+VEXcAWRA037jwmWEB5VWYORlTpc= +github.com/supranational/blst v0.3.4/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= +github.com/syndtr/goleveldb v1.0.1-0.20190923125748-758128399b1d/go.mod h1:9OrXJhf154huy1nPWmuSrkgjPUtUNhA+Zmy+6AESzuA= github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c h1:HelZ2kAFadG0La9d+4htN4HzQ68Bm2iM9qKMSMES6xg= github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c/go.mod h1:JlzghshsemAMDGZLytTFY8C1JQxQPhnatWqNwUXjggo= -github.com/tidwall/pretty v1.2.1/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU= -github.com/tinylib/msgp v1.0.2/go.mod h1:+d+yLhGm8mzTaHzB+wgMYrodPfmZrzkirds8fDWklFE= -github.com/tklauser/go-sysconf v0.3.5/go.mod h1:MkWzOF4RMCshBAMXuhXJs64Rte09mITnppBXY/rYEFI= -github.com/tklauser/go-sysconf v0.3.12/go.mod h1:Ho14jnntGE1fpdOqQEEaiKRpvIavV0hSfmBq8nJbHYI= -github.com/tklauser/numcpus v0.2.2/go.mod h1:x3qojaO3uyYt0i56EW/VUYs7uBvdl2fkfZFu0T9wgjM= -github.com/tklauser/numcpus v0.6.1/go.mod h1:1XfjsgE2zo8GVw7POkMbHENHzVg3GzmoZ9fESEdAacY= -github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d h1:5JInRQbk5UBX8JfUvKh2oYTLMVwj3p6n+wapDDm7hko= github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d/go.mod h1:Nlx5Y115XQvNcIdIy7dZXaNSUpzwBSge4/Ivk93/Yog= github.com/tyler-smith/go-bip39 v1.0.1-0.20181017060643-dbb3b84ba2ef/go.mod h1:sJ5fKU0s6JVwZjjcUEX2zFOnvq0ASQ2K9Zr6cf67kNs= -github.com/tyler-smith/go-bip39 v1.1.0/go.mod h1:gUYDtqQw1JS3ZJ8UWVcGTGqqr6YIN3CWg+kkNaLt55U= -github.com/ugorji/go v1.1.4/go.mod h1:uQMGLiO92mf5W77hV/PUCpI3pbzQx3CRekS0kk+RGrc= -github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljTbGfSG7qAOspJ7OScBnGdDN/yBr0sguwnwf0= -github.com/urfave/cli/v2 v2.3.0/go.mod h1:LJmUH05zAU44vOAcrfzZQKsZbVcdbOG8rtL3/XcUArI= -github.com/urfave/cli/v2 v2.10.2/go.mod h1:f8iq5LtQ/bLxafbdBSLPPNsgaW0l/2fYYEHhAyPlwvo= -github.com/urfave/cli/v2 v2.24.1/go.mod h1:GHupkWPMM0M/sj1a2b4wUrWBPzazNrIjouW6fmdJLxc= -github.com/urfave/cli/v2 v2.25.7/go.mod h1:8qnjx1vcq5s2/wpsqoZFndg2CE5tNFyrTvS6SinrnYQ= -github.com/urfave/negroni v1.0.0/go.mod h1:Meg73S6kFm/4PpbYdq35yYWoCZ9mS/YSx+lKnmiohz4= -github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= -github.com/valyala/fasthttp v1.6.0/go.mod h1:FstJa9V+Pj9vQ7OJie2qMHdwemEDaDiSdBnvPM1Su9w= -github.com/valyala/fasttemplate v1.0.1/go.mod h1:UQGH1tvbgY+Nz5t2n7tXsz52dQxojPUpymEIMZ47gx8= -github.com/valyala/fasttemplate v1.2.1/go.mod h1:KHLXt3tVN2HBp8eijSv/kGJopbvo7S+qRAEEKiv+SiQ= -github.com/valyala/tcplisten v0.0.0-20161114210144-ceec8f93295a/go.mod h1:v3UYOV9WzVtRmSR+PDvWpU/qWl4Wa5LApYYX4ZtKbio= -github.com/willf/bitset v1.1.3/go.mod h1:RjeCKbqT1RxIR/KWY6phxZiaY1IyutSBfGjNPySAYV4= +github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= +github.com/wsddn/go-ecdh v0.0.0-20161211032359-48726bab9208/go.mod h1:IotVbo4F+mw0EzQ08zFqg7pK3FebNXpaMsRy2RT+Ees= github.com/x448/float16 v0.8.4 h1:qLwI1I70+NjRFUR3zs1JPUCgaCXSh3SW62uAKT1mSBM= github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcYsOfg= -github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= -github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ= -github.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y= -github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= -github.com/xlab/treeprint v0.0.0-20180616005107-d6fb6747feb6/go.mod h1:ce1O1j6UtZfjr22oyGxGLbauSBp2YVXpARAosm7dHBg= -github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q= -github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673/go.mod h1:N3UwUGtsrSj3ccvlPHLoLsHnpR27oXr4ZE984MbSER8= -github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0/go.mod h1:/LWChgwKmvncFJFHJ7Gvn9wZArjbV5/FppcK2fKk/tI= -github.com/yudai/gojsondiff v1.0.0/go.mod h1:AY32+k2cwILAkW1fbgxQ5mUmMiZFgLIV+FBNExI05xg= -github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82/go.mod h1:lgjkn3NuSvDfVJdfcVVdX+jpBxNmX4rDAzaS45IcYoM= -github.com/yudai/pp v2.0.1+incompatible/go.mod h1:PuxR/8QJ7cyCkFp/aUDS+JY727OFEZkTdatxwunjIkc= github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= -github.com/yuin/goldmark v1.4.1/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= -github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= github.com/zeebo/assert v1.1.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= -github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ= -github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= +github.com/zeebo/blake3 v0.2.0/go.mod h1:G9pM4qQwjRzF1/v7+vabMj/c5mWpGZ2Wzo3Eb4z0pb4= github.com/zeebo/blake3 v0.2.3 h1:TFoLXsjeXqRNFxSbk35Dk4YtszE/MQQGK10BH4ptoTg= github.com/zeebo/blake3 v0.2.3/go.mod h1:mjJjZpnsyIVtVgTOSpJ9vmRE4wgDeyt2HU3qXvvKCaQ= -github.com/zeebo/pcg v1.0.1 h1:lyqfGeWiv4ahac6ttHs+I5hwtH/+1mrhlCtVNQM2kHo= +github.com/zeebo/pcg v1.0.0/go.mod h1:09F0S9iiKrwn9rlI5yjLkmrug154/YRW6KnnXVDM/l4= github.com/zeebo/pcg v1.0.1/go.mod h1:09F0S9iiKrwn9rlI5yjLkmrug154/YRW6KnnXVDM/l4= -github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= -go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= @@ -1842,56 +385,21 @@ go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= -go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/otel v1.8.0/go.mod h1:2pkj+iMj0o03Y+cW6/m8Y4WkRdYN3AvCXCnzRMp9yvM= -go.opentelemetry.io/otel v1.16.0 h1:Z7GVAX/UkAXPKsy94IU+i6thsQS4nb7LviLpnaNeW8s= -go.opentelemetry.io/otel v1.16.0/go.mod h1:vl0h9NUa1D5s1nv3A5vZOYWn8av4K8Ml6JDeHrT/bx4= -go.opentelemetry.io/otel/metric v1.16.0/go.mod h1:QE47cpOmkwipPiefDwo2wDzwJrlfxxNYodqc4xnGCo4= -go.opentelemetry.io/otel/trace v1.8.0/go.mod h1:0Bt3PXY8w+3pheS3hQUt+wow8b1ojPaTBoTCh2zIFI4= -go.opentelemetry.io/otel/trace v1.16.0/go.mod h1:Yt9vYq1SdNz3xdjZZK7wcXv1qv2pwLkqr2QVwea0ef0= +go.opentelemetry.io/otel v1.14.0 h1:/79Huy8wbf5DnIPhemGB+zEPVwnN6fuQybr/SRXa6hM= +go.opentelemetry.io/otel v1.14.0/go.mod h1:o4buv+dJzx8rohcUeRmWUZhqupFvzWis188WlggnNeU= go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= -go.opentelemetry.io/proto/otlp v0.15.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= -go.opentelemetry.io/proto/otlp v0.19.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= -go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= -go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= -go.uber.org/automaxprocs v1.5.2/go.mod h1:eRbA25aqJrxAbsLO0xy5jVwPt7FQnRgjW+efnwa1WM0= go.uber.org/goleak v1.1.10/go.mod h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A= -go.uber.org/goleak v1.2.1 h1:NBol2c7O1ZokfZ0LEU9K6Whx/KnwvepVetCUhtKja4A= -go.uber.org/goleak v1.2.1/go.mod h1:qlT2yGI9QafXHhZZLxlSuNsMw3FFLxBr+tBRlmO1xH4= -go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= -go.uber.org/zap v1.9.1/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= -go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= -golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/crypto v0.0.0-20170930174604-9419663f5a44/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190909091759-094676da4a83/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20200117160349-530e935923ad/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20200311171314-f7b00557c8c4/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= -golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= -golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= -golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20220314234659-1baeb1ce4c0b/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw= +golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.7.0 h1:AvwMYaRytfdeVt3u6mLaxYtErKYjxA2OXjJ1HHq6t3A= golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= -golang.org/x/crypto v0.9.0/go.mod h1:yrmDGqONDYtNj3tH8X9dzUun2m2lzPa9ngI6/RUPGR0= -golang.org/x/crypto v0.10.0/go.mod h1:o4eNf7Ede1fv+hwOwZsTHl9EsPFO6q6ZvYR8vYfY45I= -golang.org/x/crypto v0.11.0/go.mod h1:xgJhtzW8F9jGdVFWZESrid1U1bjeNy4zgy5cRr/CIio= -golang.org/x/crypto v0.12.0/go.mod h1:NF0Gs7EO5K4qLn+Ylc+fih8BSTeIjAP05siRnAh98yw= -golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliYc= -golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= -golang.org/x/crypto v0.16.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= -golang.org/x/crypto v0.17.0 h1:r8bRNjWL3GshPW3gkd+RpvzWrZAwPS49OmTGZ/uhM4k= -golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -1899,35 +407,15 @@ golang.org/x/exp v0.0.0-20190125153040-c74c464bbbf2/go.mod h1:CJ0aWSM057203Lf6IL golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= -golang.org/x/exp v0.0.0-20191002040644-a1355ae1e2c3/go.mod h1:NOZ3BPKG0ec/BKJQgnvsSFpcKLM5xXVWnvZS97DWHgE= golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= -golang.org/x/exp v0.0.0-20220426173459-3bcf042a4bf5/go.mod h1:lgLbSvA5ygNOMpwM/9anMpWVlVJ7Z+cHWq/eFuinpGE= -golang.org/x/exp v0.0.0-20220827204233-334a2380cb91/go.mod h1:cyybsKvd6eL0RnXn6p/Grxp8F5bW7iYuBgsNCOHpMYE= -golang.org/x/exp v0.0.0-20230321023759-10a507213a29/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= -golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df/go.mod h1:FXUEEKJgO7OQYeo8N01OfiKP8RXMtf6e8aTskBGqWdc= -golang.org/x/exp v0.0.0-20230905200255-921286631fa9/go.mod h1:S2oDrQGGwySpoQPVqRShND87VCbxmc6bL1Yd2oYrm6k= -golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc h1:ao2WRsKSzW6KuUY9IWPwWahcHCgR0s52IfwutMfEbdM= -golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc/go.mod h1:iRJReGqOEeBhDZGkGbynYwcHlctCvnjTYIamk7uXpHI= golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20190910094157-69e4b8554b2a/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20200119044424-58c23975cae1/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20200430140353-33d19683fad8/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20200618115811-c13761719519/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20201208152932-35266b937fa6/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20210216034530-4410531fe030/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20210607152325-775e3b0c77b9/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= -golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= -golang.org/x/image v0.0.0-20211028202545-6944b10bf410/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= -golang.org/x/image v0.0.0-20220302094943-723b81ca9867/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= -golang.org/x/image v0.5.0/go.mod h1:FVC7BI/5Ym8R25iw5OLsgshdUBbT1h5jZTpA+mvAdZ4= -golang.org/x/image v0.6.0/go.mod h1:MXLdDR43H7cDJq5GEGXEVeeNhPgi+YYEQ2pC1byI1x0= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= @@ -1951,38 +439,19 @@ golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.5.0/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= -golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= -golang.org/x/mod v0.6.0-dev.0.20211013180041-c96bc1413d57/go.mod h1:3p9vT2HGsQu2K1YbXdKPJLVgG5VJdoTa1poYQBtP1AY= -golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= -golang.org/x/mod v0.6.0/go.mod h1:4mET923SAdbXp2ki8ey+zGs1SLqsuM2Y0uvdZR/fUNI= -golang.org/x/mod v0.7.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.9.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.10.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.11.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.14.0 h1:dGoOF9QVLYng8IHTm7BAyWqCqSheQ5pYWGhzW00YJr0= -golang.org/x/mod v0.14.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190327091125-710a502c58a2/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190522155817-f3200d17e092/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= -golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= @@ -1993,59 +462,19 @@ golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/ golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20200813134508-3edf25e44fcc/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20201010224723-4f7140c49acb/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210220033124-5f55cee0dc0d/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210610132358-84b48f89b13b/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220325170049-de3da57026de/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220412020605-290c469a71a5/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220607020251-c690dde0001d/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220617184016-355a448f1bc9/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220909164309-bea034e7d591/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= -golang.org/x/net v0.0.0-20221012135044-0b7e1fb9d458/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= -golang.org/x/net v0.0.0-20221014081412-f15817d10f9b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= -golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco= -golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY= -golang.org/x/net v0.4.0/go.mod h1:MBQ8lrhLObU/6UmLb4fmbmk5OcyYmqtbGd/9yIeKjEE= -golang.org/x/net v0.5.0/go.mod h1:DivGGAXEgPSlEBzxGzZI+ZLohi+xUj054jfeKui00ws= -golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= -golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= -golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= -golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= -golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= -golang.org/x/net v0.11.0/go.mod h1:2L/ixqYpgIVXmeoSA/4Lu7BzTG4KIyPIryS4IsOd1oQ= -golang.org/x/net v0.12.0/go.mod h1:zEVYFnQC7m/vmpQFELhcD1EWkZlX69l4oqgmer6hfKA= -golang.org/x/net v0.14.0/go.mod h1:PpSgVXXLK0OxS0F31C1/tv6XNguvCrnXIDrFMspZIUI= -golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk= -golang.org/x/net v0.16.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= -golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= -golang.org/x/net v0.19.0/go.mod h1:CfAk/cbD4CthTvqiEl8NpboMuiuOYsAr/7NOjZJtv1U= -golang.org/x/oauth2 v0.0.0-20170207211851-4464e7848382/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -2061,25 +490,6 @@ golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220608161450-d0670ef3b1eb/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= -golang.org/x/oauth2 v0.0.0-20220622183110-fd043fe589d2/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= -golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.0.0-20221006150949-b44042a4b9c1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.4.0/go.mod h1:RznEsdpjGAINPTOF0UH/t+xJ75L18YO3Ho6Pyn+uRec= -golang.org/x/oauth2 v0.5.0/go.mod h1:9/XBHVqLaWO3/BRHs5jbpYCnOZVjj5V0ndyaAM7KB4I= -golang.org/x/oauth2 v0.6.0/go.mod h1:ycmewcwgD4Rpr3eZJLSB4Kyyljb3qDh40vJ8STE5HKw= -golang.org/x/oauth2 v0.7.0/go.mod h1:hPLQkd9LyjfXTiRohC/41GhcFqxisoUQ99sCUOHO9x4= -golang.org/x/oauth2 v0.8.0/go.mod h1:yr7u4HXZRm1R1kBWqr/xKNqewf0plRYoB7sla+BCIXE= -golang.org/x/oauth2 v0.10.0/go.mod h1:kTpgurOux7LqtuxjuyZa4Gj2gdezIt/jQtGnNFfypQI= -golang.org/x/oauth2 v0.11.0/go.mod h1:LdF7O/8bLR/qWK9DrpXmbHLTouvRHK0SgJl0GmDBchk= -golang.org/x/oauth2 v0.13.0/go.mod h1:/JMhi4ZRXAf4HG9LiNmxvk+45+96RUlVThiH8FzNBn0= -golang.org/x/perf v0.0.0-20230113213139-801c7ef9e5c5/go.mod h1:UBKtEnL8aqnd+0JHqZ+2qoMDwtuy6cYhhKNoHLBiTQc= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -2091,21 +501,9 @@ golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.2.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= -golang.org/x/sync v0.4.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= -golang.org/x/sync v0.5.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181205085412-a5c9d58dba9a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -2115,19 +513,13 @@ golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190712062909-fae7ac547cb7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200107162124-548cf772de50/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -2141,107 +533,39 @@ golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200519105757-fe76b779f299/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200814200057-3d37ad5750ed/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200826173525-f9321e4c35a6/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200909081042-eff7692f9009/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200918174421-af09f7315aff/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201101102859-da207088b7d1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201014080544-cc95f250f6bc/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210304124612-50617c2ba197/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210316164454-77fc1eacc6aa/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210324051608-47abb6519492/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210420205809-ac73e9fd8988/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210616045830-e2b7044e8c71/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211020174200-9d6173849985/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211210111614-af8b64212486/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220502124256-b6088ccd6cba/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220624220833-87e55d714810/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210910150752-751e447fb3d0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210917161153-d61c044b1678/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220829200755-d48e67d00261/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220919091848-fb04ddd9f9c8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.4.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.9.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.10.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= -golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= -golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= -golang.org/x/term v0.3.0/go.mod h1:q750SLmJuPmVoN1blW3UFBPREJfb1KmY3vwxfr+nFDA= -golang.org/x/term v0.4.0/go.mod h1:9P2UbLfCdcvo3p/nzKvsmas4TnlujnuoV9hGgYzW1lQ= -golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= -golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= -golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY= -golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= -golang.org/x/term v0.9.0/go.mod h1:M6DEAAIenWoTxdKrOltXcmDY3rSplQUkrvaDU5FcQyo= -golang.org/x/term v0.10.0/go.mod h1:lpqdcUyK/oCiQxvxVrppt5ggO2KCZ5QblwqPnfZ6d5o= -golang.org/x/term v0.11.0/go.mod h1:zC9APTIj3jG3FdV/Ons+XE1riIZXG4aZ4GTHiPZJPIU= -golang.org/x/term v0.12.0/go.mod h1:owVbMEjm3cBLCHdkQu9b1opXd4ETQWc3BhuQGKgXgvU= -golang.org/x/term v0.13.0/go.mod h1:LTmsnFJwVN6bCy1rVCoS+qHT1HhALEFxKncY3WNNh4U= -golang.org/x/term v0.15.0/go.mod h1:BDl952bC7+uMoWR75FIrCDx79TPU9oHkTZ9yRbYOrX0= +golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -2250,41 +574,19 @@ golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= -golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.5.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.6.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.8.0 h1:57P1ETyNKtuIjB4SRd15iJxuhj8Gc416Y78H3qgMh68= golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= -golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= -golang.org/x/text v0.10.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= -golang.org/x/text v0.11.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= -golang.org/x/text v0.12.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= -golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= -golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= -golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20201208040808-7e3f01d25324/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20220922220347-f3bd1da661af/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.1.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180525024113-a5b4c53f6e8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20181221001348-537d06c36207/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190206041539-40960b6deb8e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190327201419-c70d86f8b7cf/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= @@ -2293,18 +595,15 @@ golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgw golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20190927191325-030b2cf1153e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191108193012-7d206e10da11/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191126055441-b0650ceb63d9/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200108203644-89082a384178/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= @@ -2320,63 +619,31 @@ golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roY golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200828161849-5deb26317202/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201124115921-2c860bdd6e78/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.8-0.20211029000441-d6a9af8af023/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= -golang.org/x/tools v0.1.8/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= -golang.org/x/tools v0.1.9/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= -golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= -golang.org/x/tools v0.2.0/go.mod h1:y4OqIKeOV/fWJetJ8bXPU1sEVniLMIyDAZWeHdV+NTA= -golang.org/x/tools v0.3.0/go.mod h1:/rWhSS2+zyEVwoJf8YAX6L2f0ntZ7Kn/mGgAWcipA5k= -golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= -golang.org/x/tools v0.7.0/go.mod h1:4pg6aUX35JBAogB10C9AtvVL+qowtN4pT3CGSQex14s= -golang.org/x/tools v0.8.0/go.mod h1:JxBZ99ISMI5ViVkT1tr6tdNmXeTrcpVSD3vZ1RsRdN4= -golang.org/x/tools v0.9.1/go.mod h1:owI94Op576fPu3cIGQeHs3joujW/2Oc6MtlxbF5dfNc= -golang.org/x/tools v0.10.0/go.mod h1:UJwyiVBsOA2uwvK/e5OY3GTpDUJriEd+/YlqAwLPmyM= -golang.org/x/tools v0.13.0/go.mod h1:HvlwmtVNQAhOuCjW7xxvovg8wbNq7LwfXh/k7wXUl58= -golang.org/x/tools v0.16.0 h1:GO788SKMRunPIBCXiQyo2AaexLstOrVhuAL5YwsckQM= -golang.org/x/tools v0.16.0/go.mod h1:kYVVN6I1mBNoB1OX+noeBjbRk4IUEPa7JJ+TJMEooJ0= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= -golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= gonum.org/v1/gonum v0.0.0-20180816165407-929014505bf4/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo= -gonum.org/v1/gonum v0.0.0-20181121035319-3f7ecaa7e8ca/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo= -gonum.org/v1/gonum v0.6.0/go.mod h1:9mxDZsDKxgMAuccQkewq682L+0eCu4dCN2yonUJTCLU= gonum.org/v1/gonum v0.6.1/go.mod h1:9mxDZsDKxgMAuccQkewq682L+0eCu4dCN2yonUJTCLU= -gonum.org/v1/gonum v0.8.2/go.mod h1:oe/vMfY3deqTw+1EZJhuvEW2iwGF1bW9wwu7XCu0+v0= -gonum.org/v1/gonum v0.9.3/go.mod h1:TZumC3NeyVQskjXqmyWt4S3bINhy7B4eYwW69EbyX+0= -gonum.org/v1/gonum v0.11.0/go.mod h1:fSG4YDCxxUZQJ7rKsQrj0gMOg00Il0Z96/qMA4bVQhA= -gonum.org/v1/gonum v0.13.0 h1:a0T3bh+7fhRyqeNbiC3qVHYmkiQgit3wnNan/2c0HMM= -gonum.org/v1/gonum v0.13.0/go.mod h1:/WPYRckkfWrhWefxyYTfrTtQR0KH4iyHNuzxqXAKyAU= -gonum.org/v1/netlib v0.0.0-20181029234149-ec6d1f5cefe6/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= gonum.org/v1/netlib v0.0.0-20190313105609-8cb42192e0e0/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= gonum.org/v1/plot v0.0.0-20190515093506-e2840ee46a6b/go.mod h1:Wt8AAjI+ypCyYX3nZBvf6cAIx93T+c/OS2HFAYskSZc= -gonum.org/v1/plot v0.9.0/go.mod h1:3Pcqqmp6RHvJI72kgb8fThyUnav364FOsdDo2aGW5lY= -gonum.org/v1/plot v0.10.0/go.mod h1:JWIHJ7U20drSQb/aDpTetJzfC1KlAPldJLpkSy88dvQ= -gonum.org/v1/plot v0.10.1/go.mod h1:VZW5OlhkL1mysU9vaqNHnsy86inf6Ot+jB3r+BczCEo= -google.golang.org/api v0.0.0-20170206182103-3d017632ea10/go.mod h1:4mhQ8q/RsB7i+udVvVy5NUi08OU8ZlA0gRVgrF7VFY0= google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= @@ -2406,43 +673,7 @@ google.golang.org/api v0.54.0/go.mod h1:7C4bFFOvVDGXjfDTAsgGwDgAxRDeQ4X8NvUedIt6 google.golang.org/api v0.55.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= google.golang.org/api v0.56.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= google.golang.org/api v0.57.0/go.mod h1:dVPlbZyBo2/OjBpmvNdpn2GRm6rPy75jyU7bmhdrMgI= -google.golang.org/api v0.61.0/go.mod h1:xQRti5UdCmoCEqFxcz93fTl338AVqDgyaDRuOZ3hg9I= -google.golang.org/api v0.63.0/go.mod h1:gs4ij2ffTRXwuzzgJl/56BdwJaA194ijkfn++9tDuPo= -google.golang.org/api v0.67.0/go.mod h1:ShHKP8E60yPsKNw/w8w+VYaj9H6buA5UqDp8dhbQZ6g= -google.golang.org/api v0.70.0/go.mod h1:Bs4ZM2HGifEvXwd50TtW70ovgJffJYw2oRCOFU/SkfA= -google.golang.org/api v0.71.0/go.mod h1:4PyU6e6JogV1f9eA4voyrTY2batOLdgZ5qZ5HOCc4j8= -google.golang.org/api v0.74.0/go.mod h1:ZpfMZOVRMywNyvJFeqL9HRWBgAuRfSjJFpe9QtRRyDs= -google.golang.org/api v0.75.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= -google.golang.org/api v0.77.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= -google.golang.org/api v0.78.0/go.mod h1:1Sg78yoMLOhlQTeF+ARBoytAcH1NNyyl390YMy6rKmw= -google.golang.org/api v0.80.0/go.mod h1:xY3nI94gbvBrE0J6NHXhxOmW97HG7Khjkku6AFB3Hyg= -google.golang.org/api v0.84.0/go.mod h1:NTsGnUFJMYROtiquksZHBWtHfeMC7iYthki7Eq3pa8o= -google.golang.org/api v0.85.0/go.mod h1:AqZf8Ep9uZ2pyTvgL+x0D3Zt0eoT9b5E8fmzfu6FO2g= -google.golang.org/api v0.90.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= -google.golang.org/api v0.93.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= -google.golang.org/api v0.95.0/go.mod h1:eADj+UBuxkh5zlrSntJghuNeg8HwQ1w5lTKkuqaETEI= -google.golang.org/api v0.96.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= -google.golang.org/api v0.97.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= -google.golang.org/api v0.98.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= -google.golang.org/api v0.99.0/go.mod h1:1YOf74vkVndF7pG6hIHuINsM7eWwpVTAfNMNiL91A08= -google.golang.org/api v0.100.0/go.mod h1:ZE3Z2+ZOr87Rx7dqFsdRQkRBk36kDtp/h+QpHbB7a70= -google.golang.org/api v0.102.0/go.mod h1:3VFl6/fzoA+qNuS1N1/VfXY4LjoXN/wzeIp7TweWwGo= -google.golang.org/api v0.103.0/go.mod h1:hGtW6nK1AC+d9si/UBhw8Xli+QMOf6xyNAyJw4qU9w0= -google.golang.org/api v0.106.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= -google.golang.org/api v0.107.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= -google.golang.org/api v0.108.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= -google.golang.org/api v0.110.0/go.mod h1:7FC4Vvx1Mooxh8C5HWjzZHcavuS2f6pmJpZx60ca7iI= -google.golang.org/api v0.111.0/go.mod h1:qtFHvU9mhgTJegR31csQ+rwxyUTHOKFqCKWp1J0fdw0= -google.golang.org/api v0.114.0/go.mod h1:ifYI2ZsFK6/uGddGfAD5BMxlnkBqCmqHSDUVi45N5Yg= -google.golang.org/api v0.118.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjYK+5E= -google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= -google.golang.org/api v0.124.0/go.mod h1:xu2HQurE5gi/3t1aFCvhPD781p0a3p11sdunTJ2BlP4= -google.golang.org/api v0.125.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= -google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= -google.golang.org/api v0.128.0/go.mod h1:Y611qgqaE92On/7g65MQgxYul3c0rEB894kniWLY750= -google.golang.org/api v0.139.0/go.mod h1:CVagp6Eekz9CjGZ718Z+sloknzkDJE7Vc1Ckj9+viBk= -google.golang.org/api v0.149.0/go.mod h1:Mwn1B7JTXrzXtnvmzQE2BD6bYZQ8DShKZDZbeN9I7qI= -google.golang.org/api v0.151.0/go.mod h1:ccy+MJ6nrYFgE3WgRx/AMXOxOmU8Q4hSa+jjibzhxcg= +google.golang.org/api v0.58.0/go.mod h1:cAbP2FsxoGVNwtgNAmmn3y5G1TWAiVYRmg4yku3lv+E= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -2450,13 +681,11 @@ google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/genproto v0.0.0-20180518175338-11a468237815/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190716160619-c506a9f90610/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= @@ -2464,7 +693,6 @@ google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvx google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200108215221-bd8f9a0ef82f/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA= @@ -2488,13 +716,10 @@ google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6D google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210108203827-ffc7fda8c3d7/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210226172003-ab064af71705/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210329143202-679c6ae281ee/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= google.golang.org/genproto v0.0.0-20210513213006-bf773b8c8384/go.mod h1:P3QM42oQyzQSnHPnZ/vqoCdDmzH28fzWByN9asMeM8A= google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= @@ -2511,137 +736,12 @@ google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71/go.mod h1:eFjDcFEc google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= google.golang.org/genproto v0.0.0-20210903162649-d08c68adba83/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= google.golang.org/genproto v0.0.0-20210909211513-a8c4777a87af/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210917145530-b395a37504d4/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210921142501-181ce0d877f6/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211221195035-429b39de9b1c/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220126215142-9970aeb2e350/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220207164111-0872dc986b00/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220218161850-94dd64e39d7c/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220222213610-43724f9ea8cf/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220304144024-325a89244dc8/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220310185008-1973136f34c6/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220324131243-acbaeb5b85eb/go.mod h1:hAL49I2IFola2sVEjAn7MEwsja0xp51I0tlGAf9hz4E= -google.golang.org/genproto v0.0.0-20220329172620-7be39ac1afc7/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220413183235-5e96e2839df9/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220414192740-2d67ff6cf2b4/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220421151946-72621c1f0bd3/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220429170224-98d788798c3e/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220502173005-c8bf987b8c21/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220518221133-4f43b3371335/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220523171625-347a074981d8/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220608133413-ed9918b62aac/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220616135557-88e70c0c3a90/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220617124728-180714bec0ad/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220624142145-8cd45d7dbd1f/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220628213854-d9e0b6570c03/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220722212130-b98a9ff5e252/go.mod h1:GkXuJDJ6aQ7lnJcRF+SJVgFdQhypqgl3LB1C9vabdRE= -google.golang.org/genproto v0.0.0-20220801145646-83ce21fca29f/go.mod h1:iHe1svFLAZg9VWz891+QbRMwUv9O/1Ww+/mngYeThbc= -google.golang.org/genproto v0.0.0-20220815135757-37a418bb8959/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220817144833-d7fd3f11b9b1/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220822174746-9e6da59bd2fc/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220829144015-23454907ede3/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220829175752-36a9c930ecbf/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220913154956-18f8339a66a5/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220914142337-ca0e39ece12f/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220915135415-7fd63a7952de/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220916172020-2692e8806bfa/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220919141832-68c03719ef51/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220920201722-2b89144ce006/go.mod h1:ht8XFiar2npT/g4vkk7O0WYS1sHOHbdujxbEp7CJWbw= -google.golang.org/genproto v0.0.0-20220926165614-551eb538f295/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI= -google.golang.org/genproto v0.0.0-20220926220553-6981cbe3cfce/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI= -google.golang.org/genproto v0.0.0-20221010155953-15ba04fc1c0e/go.mod h1:3526vdqwhZAwq4wsRUaVG555sVgsNmIjRtO7t/JH29U= -google.golang.org/genproto v0.0.0-20221014173430-6e2ab493f96b/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= -google.golang.org/genproto v0.0.0-20221014213838-99cd37c6964a/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= -google.golang.org/genproto v0.0.0-20221024153911-1573dae28c9c/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= -google.golang.org/genproto v0.0.0-20221024183307-1bc688fe9f3e/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= -google.golang.org/genproto v0.0.0-20221027153422-115e99e71e1c/go.mod h1:CGI5F/G+E5bKwmfYo09AXuVN4dD894kIKUFmVbP2/Fo= -google.golang.org/genproto v0.0.0-20221109142239-94d6d90a7d66/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221114212237-e4508ebdbee1/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221117204609-8f9c96812029/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221118155620-16455021b5e6/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221201164419-0e50fba7f41c/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221201204527-e3fa12d562f3/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221202195650-67e5cbc046fd/go.mod h1:cTsE614GARnxrLsqKREzmNYJACSWWpAWdNMwnD7c2BE= -google.golang.org/genproto v0.0.0-20221207170731-23e4bf6bdc37/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20221227171554-f9683d7f8bef/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230112194545-e10362b5ecf9/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230113154510-dbe35b8444a5/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230123190316-2c411cf9d197/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230124163310-31e0e69b6fc2/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230125152338-dcaf20b6aeaa/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230127162408-596548ed4efa/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230209215440-0dfe4f8abfcc/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230216225411-c8e22ba71e44/go.mod h1:8B0gmkoRebU8ukX6HP+4wrVQUY1+6PkQ44BSyIlflHA= -google.golang.org/genproto v0.0.0-20230222225845-10f96fb3dbec/go.mod h1:3Dl5ZL0q0isWJt+FVcfpQyirqemEuLAK/iFvg1UP1Hw= -google.golang.org/genproto v0.0.0-20230223222841-637eb2293923/go.mod h1:3Dl5ZL0q0isWJt+FVcfpQyirqemEuLAK/iFvg1UP1Hw= -google.golang.org/genproto v0.0.0-20230303212802-e74f57abe488/go.mod h1:TvhZT5f700eVlTNwND1xoEZQeWTB2RY/65kplwl/bFA= -google.golang.org/genproto v0.0.0-20230306155012-7f2fa6fef1f4/go.mod h1:NWraEVixdDnqcqQ30jipen1STv2r/n24Wb7twVTGR4s= -google.golang.org/genproto v0.0.0-20230320184635-7606e756e683/go.mod h1:NWraEVixdDnqcqQ30jipen1STv2r/n24Wb7twVTGR4s= -google.golang.org/genproto v0.0.0-20230323212658-478b75c54725/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= -google.golang.org/genproto v0.0.0-20230330154414-c0448cd141ea/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= -google.golang.org/genproto v0.0.0-20230331144136-dcfb400f0633/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= -google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= -google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU= -google.golang.org/genproto v0.0.0-20230525234025-438c736192d0/go.mod h1:9ExIQyXL5hZrHzQceCwuSYwZZ5QZBazOcprJ5rgs3lY= -google.golang.org/genproto v0.0.0-20230526161137-0005af68ea54/go.mod h1:zqTuNwFlFRsw5zIts5VnzLQxSRqh+CGOTVMlYbY0Eyk= -google.golang.org/genproto v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:zqTuNwFlFRsw5zIts5VnzLQxSRqh+CGOTVMlYbY0Eyk= -google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:xZnkP7mREFX5MORlOPEzLMr+90PPZQ2QWzrVTWfAq64= -google.golang.org/genproto v0.0.0-20230629202037-9506855d4529/go.mod h1:xZnkP7mREFX5MORlOPEzLMr+90PPZQ2QWzrVTWfAq64= -google.golang.org/genproto v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:O9kGHb51iE/nOGvQaDUuadVYqovW56s5emA88lQnj6Y= -google.golang.org/genproto v0.0.0-20230711160842-782d3b101e98/go.mod h1:S7mY02OqCJTD0E1OiQy1F72PWFB4bZJ87cAtLPYgDR0= -google.golang.org/genproto v0.0.0-20230726155614-23370e0ffb3e/go.mod h1:0ggbjUrZYpy1q+ANUS30SEoGZ53cdfwtbuG7Ptgy108= -google.golang.org/genproto v0.0.0-20230803162519-f966b187b2e5/go.mod h1:oH/ZOT02u4kWEp7oYBGYFFkCdKS/uYR9Z7+0/xuuFp8= -google.golang.org/genproto v0.0.0-20230821184602-ccc8af3d0e93/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4= -google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4= -google.golang.org/genproto v0.0.0-20230913181813-007df8e322eb/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4= -google.golang.org/genproto v0.0.0-20230920204549-e6e6cdab5c13/go.mod h1:CCviP9RmpZ1mxVr8MUjCnSiY09IbAXZxhLE6EhHIdPU= -google.golang.org/genproto v0.0.0-20231002182017-d307bd883b97/go.mod h1:t1VqOqqvce95G3hIDCT5FeO3YUc6Q4Oe24L/+rNMxRk= -google.golang.org/genproto v0.0.0-20231012201019-e917dd12ba7a/go.mod h1:EMfReVxb80Dq1hhioy0sOsY9jCE46YDgHlJ7fWVUWRE= -google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b/go.mod h1:CgAqfJo+Xmu0GwA0411Ht3OU3OntXwsGmrmjI8ioGXI= -google.golang.org/genproto/googleapis/api v0.0.0-20230525234020-1aefcd67740a/go.mod h1:ts19tUU+Z0ZShN1y3aPyq2+O3d5FUNNgT6FtOzmrNn8= -google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20230629202037-9506855d4529/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:mPBs5jNgx2GuQGvFwUvVKqtn6HsUw9nP64BedgvqEsQ= -google.golang.org/genproto/googleapis/api v0.0.0-20230711160842-782d3b101e98/go.mod h1:rsr7RhLuwsDKL7RmgDDCUc6yaGr1iqceVb5Wv6f6YvQ= -google.golang.org/genproto/googleapis/api v0.0.0-20230726155614-23370e0ffb3e/go.mod h1:rsr7RhLuwsDKL7RmgDDCUc6yaGr1iqceVb5Wv6f6YvQ= -google.golang.org/genproto/googleapis/api v0.0.0-20230803162519-f966b187b2e5/go.mod h1:5DZzOUPCLYL3mNkQ0ms0F3EuUNZ7py1Bqeq6sxzI7/Q= -google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d/go.mod h1:KjSP20unUpOx5kyQUFa7k4OJg0qeJ7DEZflGDu2p6Bk= -google.golang.org/genproto/googleapis/api v0.0.0-20230913181813-007df8e322eb/go.mod h1:KjSP20unUpOx5kyQUFa7k4OJg0qeJ7DEZflGDu2p6Bk= -google.golang.org/genproto/googleapis/api v0.0.0-20230920204549-e6e6cdab5c13/go.mod h1:RdyHbowztCGQySiCvQPgWQWgWhGnouTdCflKoDBt32U= -google.golang.org/genproto/googleapis/api v0.0.0-20231002182017-d307bd883b97/go.mod h1:iargEX0SFPm3xcfMI0d1domjg0ZF4Aa0p2awqyxhvF0= -google.golang.org/genproto/googleapis/api v0.0.0-20231012201019-e917dd12ba7a/go.mod h1:SUBoKXbI1Efip18FClrQVGjWcyd0QZd8KkvdP34t7ww= -google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b/go.mod h1:IBQ646DjkDkvUIsVq/cc03FUFQ9wbZu7yE396YcL870= -google.golang.org/genproto/googleapis/bytestream v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:ylj+BE99M198VPbBh6A8d9n3w8fChvyLK3wwBOjXBFA= -google.golang.org/genproto/googleapis/bytestream v0.0.0-20230807174057-1744710a1577/go.mod h1:NjCQG/D8JandXxM57PZbAJL1DCNL6EypA0vPPwfsc7c= -google.golang.org/genproto/googleapis/bytestream v0.0.0-20231030173426-d783a09b4405/go.mod h1:GRUCuLdzVqZte8+Dl/D4N25yLzcGqqWaYkeVOwulFqw= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234015-3fc162c6f38a/go.mod h1:xURIpW9ES5+/GZhnV6beoEtxQrnkRGIfP5VQG2tCBLc= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230629202037-9506855d4529/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:8mL13HKkDa+IuJ8yruA3ci0q+0vsUz4m//+ottjwS5o= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98/go.mod h1:TUfxEVdsvPg18p6AslUXFoLdpED4oBnGwyqk3dV1XzM= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230731190214-cbb8c96f2d6d/go.mod h1:TUfxEVdsvPg18p6AslUXFoLdpED4oBnGwyqk3dV1XzM= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230803162519-f966b187b2e5/go.mod h1:zBEcrKX2ZOcEkHWxBPAIvYUWOKKMIhYcmNiUIu2ji3I= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230920183334-c177e329c48b/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230920204549-e6e6cdab5c13/go.mod h1:KSqppvjFjtoCI+KGd4PELB0qLNxdJHRGqRI09mB6pQA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97/go.mod h1:v7nGkzlmW8P3n/bKmWBn2WpBjpOEx8Q6gMueudAmKfY= -google.golang.org/genproto/googleapis/rpc v0.0.0-20231012201019-e917dd12ba7a/go.mod h1:4cYg8o5yUbm77w8ZX00LhMVNl/YVBFJRYWDc0uYWMs0= -google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b/go.mod h1:swOH3j0KzcDDgGUWr+SNpyTen5YrXjS3eyPzFYKc6lc= -google.golang.org/genproto/googleapis/rpc v0.0.0-20231030173426-d783a09b4405/go.mod h1:67X1fPuzjcrkymZzZV1vvkFeTn2Rvc6lYF9MYFGCcwE= -google.golang.org/grpc v0.0.0-20170208002647-2a6bf6142e96/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= -google.golang.org/grpc v1.12.0/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= +google.golang.org/genproto v0.0.0-20211007155348-82e027067bd4/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= -google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= @@ -2665,29 +765,6 @@ google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQ google.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= google.golang.org/grpc v1.39.1/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.40.1/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.42.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= -google.golang.org/grpc v1.44.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= -google.golang.org/grpc v1.45.0/go.mod h1:lN7owxKUQEqMfSyQikvvk5tf/6zMPsrK+ONuO11+0rQ= -google.golang.org/grpc v1.46.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.46.2/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.47.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.48.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.49.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= -google.golang.org/grpc v1.50.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= -google.golang.org/grpc v1.50.1/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= -google.golang.org/grpc v1.51.0/go.mod h1:wgNDFcnuBGmxLKI/qn4T+m5BtEBYXJPvibbUPsAIPww= -google.golang.org/grpc v1.52.0/go.mod h1:pu6fVzoFb+NBYNAvQL08ic+lvB2IojljRYuun5vorUY= -google.golang.org/grpc v1.52.3/go.mod h1:pu6fVzoFb+NBYNAvQL08ic+lvB2IojljRYuun5vorUY= -google.golang.org/grpc v1.53.0/go.mod h1:OnIrk0ipVdj4N5d9IUoFUx72/VlD7+jUsHwZgwSMQpw= -google.golang.org/grpc v1.54.0/go.mod h1:PUSEXI6iWghWaB6lXM4knEgpJNu2qUcKfDtNci3EC2g= -google.golang.org/grpc v1.55.0/go.mod h1:iYEXKGkEBhg1PjZQvoYEVPTDkHo1/bjTnfwTeGONTY8= -google.golang.org/grpc v1.56.1/go.mod h1:I9bI3vqKfayGqPUAwGdOSu7kt6oIJLixfffKrpXqQ9s= -google.golang.org/grpc v1.56.2/go.mod h1:I9bI3vqKfayGqPUAwGdOSu7kt6oIJLixfffKrpXqQ9s= -google.golang.org/grpc v1.57.0/go.mod h1:Sd+9RMTACXwmub0zcNY2c4arhtrbBYD1AUHI/dt16Mo= -google.golang.org/grpc v1.58.2/go.mod h1:tgX3ZQDlNJGU96V6yHh1T/JeoBQ2TXdr43YbYSsCJk0= -google.golang.org/grpc v1.58.3/go.mod h1:tgX3ZQDlNJGU96V6yHh1T/JeoBQ2TXdr43YbYSsCJk0= -google.golang.org/grpc v1.59.0/go.mod h1:aUPDwccQo6OTjy7Hct4AfBPD1GptF4fyUjIkQ9YtF98= google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= @@ -2702,45 +779,26 @@ google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlba google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.29.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= -google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= -gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= -gopkg.in/go-playground/assert.v1 v1.2.1/go.mod h1:9RXL0bg/zibRAgZUYszZSwO/z8Y/a8bDuhia5mkpMnE= -gopkg.in/go-playground/validator.v8 v8.18.2/go.mod h1:RX2a/7Ha8BgOhfk7j780h4/u/RRjR0eouCJSH80/M2Y= -gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce/go.mod h1:yeKp02qBN3iKW1OzL3MGk2IdtZzaj7SFntXj72NppTA= -gopkg.in/natefinch/lumberjack.v2 v2.0.0/go.mod h1:l0ndWWf7gzL7RNwBG7wST/UCcT4T24xpD6X8LsfU/+k= gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce/go.mod h1:5AcXVHNjg+BDxry382+8OKon8SEWiKktQR07RKPsv1c= -gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= -gopkg.in/src-d/go-billy.v4 v4.3.2/go.mod h1:nDjArDMp+XMs1aFAESLRjfGSgfvoYN0hDfzEk0GjC98= +gopkg.in/olebedev/go-duktape.v3 v3.0.0-20190213234257-ec84240a7772/go.mod h1:uAJfkITjFhyEEuUfm7bsmCZRbW5WRq8s9EY8HZ6hCns= +gopkg.in/olebedev/go-duktape.v3 v3.0.0-20200316214253-d7b0ff38cac9/go.mod h1:uAJfkITjFhyEEuUfm7bsmCZRbW5WRq8s9EY8HZ6hCns= +gopkg.in/sourcemap.v1 v1.0.5/go.mod h1:2RlvNNSMglmRrcvhfuzp4hQHwOtjxlbjX7UPY/GXb78= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= -gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74= +gopkg.in/urfave/cli.v1 v1.20.0/go.mod h1:vuBzUtMdQeixQj8LVd+/98pzhxNGQoyuPBlsXHOQNO0= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= -gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gopkg.in/yaml.v3 v3.0.0/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= @@ -2748,65 +806,8 @@ honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWh honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -honnef.co/go/tools v0.1.3/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las= -lukechampine.com/blake3 v1.1.7/go.mod h1:tkKEOtDkNtklkXtLNEOGNq5tcV90tJiA1vAA12R78LA= -lukechampine.com/blake3 v1.2.1 h1:YuqqRuaqsGV71BV/nm9xlI0MKUv4QC54jQnBChWbGnI= -lukechampine.com/blake3 v1.2.1/go.mod h1:0OFRp7fBtAylGVCO40o87sbupkyIGgbpv1+M1k1LM6k= -lukechampine.com/uint128 v1.1.1/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= -lukechampine.com/uint128 v1.2.0/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= -modernc.org/cc/v3 v3.36.0/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= -modernc.org/cc/v3 v3.36.2/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= -modernc.org/cc/v3 v3.36.3/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= -modernc.org/cc/v3 v3.37.0/go.mod h1:vtL+3mdHx/wcj3iEGz84rQa8vEqR6XM84v5Lcvfph20= -modernc.org/cc/v3 v3.40.0/go.mod h1:/bTg4dnWkSXowUO6ssQKnOV0yMVxDYNIsIrzqTFDGH0= -modernc.org/ccgo/v3 v3.0.0-20220428102840-41399a37e894/go.mod h1:eI31LL8EwEBKPpNpA4bU1/i+sKOwOrQy8D87zWUcRZc= -modernc.org/ccgo/v3 v3.0.0-20220430103911-bc99d88307be/go.mod h1:bwdAnOoaIt8Ax9YdWGjxWsdkPcZyRPHqrOvJxaKAKGw= -modernc.org/ccgo/v3 v3.0.0-20220904174949-82d86e1b6d56/go.mod h1:YSXjPL62P2AMSxBphRHPn7IkzhVHqkvOnRKAKh+W6ZI= -modernc.org/ccgo/v3 v3.16.4/go.mod h1:tGtX0gE9Jn7hdZFeU88slbTh1UtCYKusWOoCJuvkWsQ= -modernc.org/ccgo/v3 v3.16.6/go.mod h1:tGtX0gE9Jn7hdZFeU88slbTh1UtCYKusWOoCJuvkWsQ= -modernc.org/ccgo/v3 v3.16.8/go.mod h1:zNjwkizS+fIFDrDjIAgBSCLkWbJuHF+ar3QRn+Z9aws= -modernc.org/ccgo/v3 v3.16.9/go.mod h1:zNMzC9A9xeNUepy6KuZBbugn3c0Mc9TeiJO4lgvkJDo= -modernc.org/ccgo/v3 v3.16.13-0.20221017192402-261537637ce8/go.mod h1:fUB3Vn0nVPReA+7IG7yZDfjv1TMWjhQP8gCxrFAtL5g= -modernc.org/ccgo/v3 v3.16.13/go.mod h1:2Quk+5YgpImhPjv2Qsob1DnZ/4som1lJTodubIcoUkY= -modernc.org/ccorpus v1.11.6/go.mod h1:2gEUTrWqdpH2pXsmTM1ZkjeSrUWDpjMu2T6m29L/ErQ= -modernc.org/httpfs v1.0.6/go.mod h1:7dosgurJGp0sPaRanU53W4xZYKh14wfzX420oZADeHM= -modernc.org/libc v0.0.0-20220428101251-2d5f3daf273b/go.mod h1:p7Mg4+koNjc8jkqwcoFBJx7tXkpj00G77X7A72jXPXA= -modernc.org/libc v1.16.0/go.mod h1:N4LD6DBE9cf+Dzf9buBlzVJndKr/iJHG97vGLHYnb5A= -modernc.org/libc v1.16.1/go.mod h1:JjJE0eu4yeK7tab2n4S1w8tlWd9MxXLRzheaRnAKymU= -modernc.org/libc v1.16.17/go.mod h1:hYIV5VZczAmGZAnG15Vdngn5HSF5cSkbvfz2B7GRuVU= -modernc.org/libc v1.16.19/go.mod h1:p7Mg4+koNjc8jkqwcoFBJx7tXkpj00G77X7A72jXPXA= -modernc.org/libc v1.17.0/go.mod h1:XsgLldpP4aWlPlsjqKRdHPqCxCjISdHfM/yeWC5GyW0= -modernc.org/libc v1.17.1/go.mod h1:FZ23b+8LjxZs7XtFMbSzL/EhPxNbfZbErxEHc7cbD9s= -modernc.org/libc v1.17.4/go.mod h1:WNg2ZH56rDEwdropAJeZPQkXmDwh+JCA1s/htl6r2fA= -modernc.org/libc v1.18.0/go.mod h1:vj6zehR5bfc98ipowQOM2nIDUZnVew/wNC/2tOGS+q0= -modernc.org/libc v1.20.3/go.mod h1:ZRfIaEkgrYgZDl6pa4W39HgN5G/yDW+NRmNKZBDFrk0= -modernc.org/libc v1.21.4/go.mod h1:przBsL5RDOZajTVslkugzLBj1evTue36jEomFQOoYuI= -modernc.org/libc v1.22.2/go.mod h1:uvQavJ1pZ0hIoC/jfqNoMLURIMhKzINIWypNM17puug= -modernc.org/mathutil v1.2.2/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= -modernc.org/mathutil v1.4.1/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= -modernc.org/mathutil v1.5.0/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= -modernc.org/memory v1.1.1/go.mod h1:/0wo5ibyrQiaoUoH7f9D8dnglAmILJ5/cxZlRECf+Nw= -modernc.org/memory v1.2.0/go.mod h1:/0wo5ibyrQiaoUoH7f9D8dnglAmILJ5/cxZlRECf+Nw= -modernc.org/memory v1.2.1/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= -modernc.org/memory v1.3.0/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= -modernc.org/memory v1.4.0/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= -modernc.org/memory v1.5.0/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= -modernc.org/opt v0.1.1/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0= -modernc.org/opt v0.1.3/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0= -modernc.org/sqlite v1.18.1/go.mod h1:6ho+Gow7oX5V+OiOQ6Tr4xeqbx13UZ6t+Fw9IRUG4d4= -modernc.org/sqlite v1.18.2/go.mod h1:kvrTLEWgxUcHa2GfHBQtanR1H9ht3hTJNtKpzH9k1u0= -modernc.org/strutil v1.1.1/go.mod h1:DE+MQQ/hjKBZS2zNInV5hhcipt5rLPWkmpbGeW5mmdw= -modernc.org/strutil v1.1.3/go.mod h1:MEHNA7PdEnEwLvspRMtWTNnp2nnyvMfkimT1NKNAGbw= -modernc.org/tcl v1.13.1/go.mod h1:XOLfOwzhkljL4itZkK6T72ckMgvj0BDsnKNdZVUOecw= -modernc.org/tcl v1.13.2/go.mod h1:7CLiGIPo1M8Rv1Mitpv5akc2+8fxUd2y2UzC/MfMzy0= -modernc.org/token v1.0.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= -modernc.org/token v1.0.1/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= -modernc.org/token v1.1.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= -modernc.org/z v1.5.1/go.mod h1:eWFB510QWW5Th9YGZT81s+LwvaAs3Q2yr4sP0rmLkv8= -pgregory.net/rapid v0.4.7 h1:MTNRktPuv5FNqOO151TM9mDTa+XHcX6ypYeISDVD14g= pgregory.net/rapid v0.4.7/go.mod h1:UYpPVyjFHzYBGHIxLFoupi8vwk6rXNzRY9OMvVxFIOU= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= -rsc.io/tmplfunc v0.0.3/go.mod h1:AG3sTPzElb1Io3Yg4voV9AGZJuleGAwaVRxL9M49PhA= diff --git a/lib/go/templates/go.mod b/lib/go/templates/go.mod index 5a11266bd..ee8f3cae1 100644 --- a/lib/go/templates/go.mod +++ b/lib/go/templates/go.mod @@ -4,69 +4,55 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.24.0+incompatible - github.com/onflow/cadence v1.0.0-M3 - github.com/onflow/flow-ft/lib/go/templates v1.0.0 - github.com/onflow/flow-go-sdk v1.0.0-M1 - github.com/onflow/flow-nft/lib/go/templates v1.2.0 + github.com/onflow/cadence v0.39.13-stable-cadence + github.com/onflow/flow-go-sdk v0.41.7-stable-cadence github.com/psiemens/sconfig v0.1.0 github.com/spf13/cobra v1.5.0 ) require ( - github.com/SaveTheRbtz/mph v0.1.1-0.20240117162131-4166ec7869bc // indirect - github.com/bits-and-blooms/bitset v1.7.0 // indirect + github.com/SaveTheRbtz/mph v0.1.2 // indirect + github.com/bits-and-blooms/bitset v1.5.0 // indirect github.com/btcsuite/btcd/btcec/v2 v2.2.1 // indirect github.com/davecgh/go-spew v1.1.1 // indirect - github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect - github.com/ethereum/go-ethereum v1.13.5 // indirect - github.com/fsnotify/fsnotify v1.6.0 // indirect + github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect + github.com/ethereum/go-ethereum v1.9.13 // indirect + github.com/fsnotify/fsnotify v1.4.7 // indirect github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c // indirect github.com/fxamacker/circlehash v0.3.0 // indirect + github.com/go-test/deep v1.1.0 // indirect github.com/hashicorp/hcl v1.0.0 // indirect - github.com/holiman/uint256 v1.2.3 // indirect github.com/inconshreveable/mousetrap v1.0.0 // indirect github.com/k0kubun/pp v3.0.1+incompatible // indirect - github.com/klauspost/cpuid/v2 v2.2.5 // indirect - github.com/kr/pretty v0.3.1 // indirect - github.com/kr/text v0.2.0 // indirect + github.com/klauspost/cpuid/v2 v2.2.4 // indirect github.com/logrusorgru/aurora/v4 v4.0.0 // indirect github.com/magiconair/properties v1.8.0 // indirect github.com/mattn/go-colorable v0.1.13 // indirect - github.com/mattn/go-isatty v0.0.19 // indirect - github.com/mitchellh/mapstructure v1.4.1 // indirect - github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f // indirect - github.com/onflow/crypto v0.25.0 // indirect + github.com/mattn/go-isatty v0.0.16 // indirect + github.com/mitchellh/mapstructure v1.1.2 // indirect + github.com/onflow/atree v0.6.0 // indirect + github.com/onflow/flow-go/crypto v0.24.7 // indirect github.com/pelletier/go-toml v1.2.0 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/rivo/uniseg v0.4.4 // indirect - github.com/rogpeppe/go-internal v1.9.0 // indirect - github.com/spf13/afero v1.9.2 // indirect + github.com/spf13/afero v1.1.2 // indirect github.com/spf13/cast v1.3.0 // indirect github.com/spf13/jwalterweatherman v1.0.0 // indirect github.com/spf13/pflag v1.0.5 // indirect github.com/spf13/viper v1.4.0 // indirect - github.com/stretchr/testify v1.8.4 // indirect + github.com/stretchr/testify v1.8.2 // indirect github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c // indirect github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d // indirect github.com/x448/float16 v0.8.4 // indirect github.com/zeebo/blake3 v0.2.3 // indirect - go.opentelemetry.io/otel v1.16.0 // indirect - golang.org/x/crypto v0.16.0 // indirect - golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc // indirect - golang.org/x/sys v0.15.0 // indirect - golang.org/x/text v0.14.0 // indirect + github.com/zeebo/xxh3 v1.0.2 // indirect + go.opentelemetry.io/otel v1.14.0 // indirect + golang.org/x/crypto v0.7.0 // indirect + golang.org/x/exp v0.0.0-20230321023759-10a507213a29 // indirect + golang.org/x/sys v0.6.0 // indirect + golang.org/x/text v0.8.0 // indirect golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect - gonum.org/v1/gonum v0.13.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) - -// This retraction block retracts version v1.2.3, which was tagged out-of-order. -// Currently go considers v1.2.3 to be the latest version, due to semver ordering, -// despite it being several months old and many revisions behind the tip. -// This retract block is based on https://go.dev/ref/mod#go-mod-file-retract. -retract ( - v1.2.4 // contains retraction only - v1.2.3 // accidentally published with out-of-order tag -) diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index d3059cac7..58718103d 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -1,1092 +1,44 @@ -cloud.google.com/go v0.0.0-20170206221025-ce650573d812/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= -cloud.google.com/go v0.43.0/go.mod h1:BOSR3VbTLkk6FDC/TcffxP4NF/FFBGA5ku+jvKOP7pg= -cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= -cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= -cloud.google.com/go v0.44.3/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= -cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= -cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= -cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= -cloud.google.com/go v0.51.0/go.mod h1:hWtGJ6gnXH+KgDv+V0zFGDvpi07n3z8ZNj3T1RW0Gcw= -cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4= -cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M= -cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc= -cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKVk= -cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs= -cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc= -cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY= -cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= -cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= -cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPTY= -cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg= -cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8= -cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0= -cloud.google.com/go v0.83.0/go.mod h1:Z7MJUsANfY0pYPdw0lbnivPx4/vhy/e2FEkSkF7vAVY= -cloud.google.com/go v0.84.0/go.mod h1:RazrYuxIK6Kb7YrzzhPoLmCVzl7Sup4NrbKPg8KHSUM= -cloud.google.com/go v0.87.0/go.mod h1:TpDYlFy7vuLzZMMZ+B6iRiELaY7z/gJPaqbMx6mlWcY= -cloud.google.com/go v0.90.0/go.mod h1:kRX0mNRHe0e2rC6oNakvwQqzyDmg57xJ+SZU1eT2aDQ= -cloud.google.com/go v0.93.3/go.mod h1:8utlLll2EF5XMAV15woO4lSbWQlk8rer9aLOfLh7+YI= -cloud.google.com/go v0.94.1/go.mod h1:qAlAugsXlC+JWO+Bke5vCtc9ONxjQT3drlTTnAplMW4= -cloud.google.com/go v0.97.0/go.mod h1:GF7l59pYBVlXQIBLx3a761cZ41F9bBH3JUlihCt2Udc= -cloud.google.com/go v0.99.0/go.mod h1:w0Xx2nLzqWJPuozYQX+hFfCSI8WioryfRDzkoI/Y2ZA= -cloud.google.com/go v0.100.1/go.mod h1:fs4QogzfH5n2pBXBP9vRiU+eCny7lD2vmFZy79Iuw1U= -cloud.google.com/go v0.100.2/go.mod h1:4Xra9TjzAeYHrl5+oeLlzbM2k3mjVhZh4UqTZ//w99A= -cloud.google.com/go v0.102.0/go.mod h1:oWcCzKlqJ5zgHQt9YsaeTY9KzIvjyy0ArmiBUgpQ+nc= -cloud.google.com/go v0.102.1/go.mod h1:XZ77E9qnTEnrgEOvr4xzfdX5TRo7fB4T2F4O6+34hIU= -cloud.google.com/go v0.104.0/go.mod h1:OO6xxXdJyvuJPcEPBLN9BJPD+jep5G1+2U5B5gkRYtA= -cloud.google.com/go v0.105.0/go.mod h1:PrLgOJNe5nfE9UMxKxgXj4mD3voiP+YQ6gdt6KMFOKM= -cloud.google.com/go v0.107.0/go.mod h1:wpc2eNrD7hXUTy8EKS10jkxpZBjASrORK7goS+3YX2I= -cloud.google.com/go v0.110.0/go.mod h1:SJnCLqQ0FCFGSZMUNUf84MV3Aia54kn7pi8st7tMzaY= -cloud.google.com/go v0.110.2/go.mod h1:k04UEeEtb6ZBRTv3dZz4CeJC3jKGxyhl0sAiVVquxiw= -cloud.google.com/go v0.110.4/go.mod h1:+EYjdK8e5RME/VY/qLCAtuyALQ9q67dvuum8i+H5xsI= -cloud.google.com/go v0.110.6/go.mod h1:+EYjdK8e5RME/VY/qLCAtuyALQ9q67dvuum8i+H5xsI= -cloud.google.com/go v0.110.7/go.mod h1:+EYjdK8e5RME/VY/qLCAtuyALQ9q67dvuum8i+H5xsI= -cloud.google.com/go v0.110.8/go.mod h1:Iz8AkXJf1qmxC3Oxoep8R1T36w8B92yU29PcBhHO5fk= -cloud.google.com/go/accessapproval v1.4.0/go.mod h1:zybIuC3KpDOvotz59lFe5qxRZx6C75OtwbisN56xYB4= -cloud.google.com/go/accessapproval v1.5.0/go.mod h1:HFy3tuiGvMdcd/u+Cu5b9NkO1pEICJ46IR82PoUdplw= -cloud.google.com/go/accessapproval v1.6.0/go.mod h1:R0EiYnwV5fsRFiKZkPHr6mwyk2wxUJ30nL4j2pcFY2E= -cloud.google.com/go/accessapproval v1.7.1/go.mod h1:JYczztsHRMK7NTXb6Xw+dwbs/WnOJxbo/2mTI+Kgg68= -cloud.google.com/go/accessapproval v1.7.2/go.mod h1:/gShiq9/kK/h8T/eEn1BTzalDvk0mZxJlhfw0p+Xuc0= -cloud.google.com/go/accesscontextmanager v1.3.0/go.mod h1:TgCBehyr5gNMz7ZaH9xubp+CE8dkrszb4oK9CWyvD4o= -cloud.google.com/go/accesscontextmanager v1.4.0/go.mod h1:/Kjh7BBu/Gh83sv+K60vN9QE5NJcd80sU33vIe2IFPE= -cloud.google.com/go/accesscontextmanager v1.6.0/go.mod h1:8XCvZWfYw3K/ji0iVnp+6pu7huxoQTLmxAbVjbloTtM= -cloud.google.com/go/accesscontextmanager v1.7.0/go.mod h1:CEGLewx8dwa33aDAZQujl7Dx+uYhS0eay198wB/VumQ= -cloud.google.com/go/accesscontextmanager v1.8.0/go.mod h1:uI+AI/r1oyWK99NN8cQ3UK76AMelMzgZCvJfsi2c+ps= -cloud.google.com/go/accesscontextmanager v1.8.1/go.mod h1:JFJHfvuaTC+++1iL1coPiG1eu5D24db2wXCDWDjIrxo= -cloud.google.com/go/accesscontextmanager v1.8.2/go.mod h1:E6/SCRM30elQJ2PKtFMs2YhfJpZSNcJyejhuzoId4Zk= -cloud.google.com/go/aiplatform v1.22.0/go.mod h1:ig5Nct50bZlzV6NvKaTwmplLLddFx0YReh9WfTO5jKw= -cloud.google.com/go/aiplatform v1.24.0/go.mod h1:67UUvRBKG6GTayHKV8DBv2RtR1t93YRu5B1P3x99mYY= -cloud.google.com/go/aiplatform v1.27.0/go.mod h1:Bvxqtl40l0WImSb04d0hXFU7gDOiq9jQmorivIiWcKg= -cloud.google.com/go/aiplatform v1.35.0/go.mod h1:7MFT/vCaOyZT/4IIFfxH4ErVg/4ku6lKv3w0+tFTgXQ= -cloud.google.com/go/aiplatform v1.36.1/go.mod h1:WTm12vJRPARNvJ+v6P52RDHCNe4AhvjcIZ/9/RRHy/k= -cloud.google.com/go/aiplatform v1.37.0/go.mod h1:IU2Cv29Lv9oCn/9LkFiiuKfwrRTq+QQMbW+hPCxJGZw= -cloud.google.com/go/aiplatform v1.45.0/go.mod h1:Iu2Q7sC7QGhXUeOhAj/oCK9a+ULz1O4AotZiqjQ8MYA= -cloud.google.com/go/aiplatform v1.48.0/go.mod h1:Iu2Q7sC7QGhXUeOhAj/oCK9a+ULz1O4AotZiqjQ8MYA= -cloud.google.com/go/aiplatform v1.50.0/go.mod h1:IRc2b8XAMTa9ZmfJV1BCCQbieWWvDnP1A8znyz5N7y4= -cloud.google.com/go/aiplatform v1.51.0/go.mod h1:IRc2b8XAMTa9ZmfJV1BCCQbieWWvDnP1A8znyz5N7y4= -cloud.google.com/go/aiplatform v1.51.1/go.mod h1:kY3nIMAVQOK2XDqDPHaOuD9e+FdMA6OOpfBjsvaFSOo= -cloud.google.com/go/analytics v0.11.0/go.mod h1:DjEWCu41bVbYcKyvlws9Er60YE4a//bK6mnhWvQeFNI= -cloud.google.com/go/analytics v0.12.0/go.mod h1:gkfj9h6XRf9+TS4bmuhPEShsh3hH8PAZzm/41OOhQd4= -cloud.google.com/go/analytics v0.17.0/go.mod h1:WXFa3WSym4IZ+JiKmavYdJwGG/CvpqiqczmL59bTD9M= -cloud.google.com/go/analytics v0.18.0/go.mod h1:ZkeHGQlcIPkw0R/GW+boWHhCOR43xz9RN/jn7WcqfIE= -cloud.google.com/go/analytics v0.19.0/go.mod h1:k8liqf5/HCnOUkbawNtrWWc+UAzyDlW89doe8TtoDsE= -cloud.google.com/go/analytics v0.21.2/go.mod h1:U8dcUtmDmjrmUTnnnRnI4m6zKn/yaA5N9RlEkYFHpQo= -cloud.google.com/go/analytics v0.21.3/go.mod h1:U8dcUtmDmjrmUTnnnRnI4m6zKn/yaA5N9RlEkYFHpQo= -cloud.google.com/go/analytics v0.21.4/go.mod h1:zZgNCxLCy8b2rKKVfC1YkC2vTrpfZmeRCySM3aUbskA= -cloud.google.com/go/apigateway v1.3.0/go.mod h1:89Z8Bhpmxu6AmUxuVRg/ECRGReEdiP3vQtk4Z1J9rJk= -cloud.google.com/go/apigateway v1.4.0/go.mod h1:pHVY9MKGaH9PQ3pJ4YLzoj6U5FUDeDFBllIz7WmzJoc= -cloud.google.com/go/apigateway v1.5.0/go.mod h1:GpnZR3Q4rR7LVu5951qfXPJCHquZt02jf7xQx7kpqN8= -cloud.google.com/go/apigateway v1.6.1/go.mod h1:ufAS3wpbRjqfZrzpvLC2oh0MFlpRJm2E/ts25yyqmXA= -cloud.google.com/go/apigateway v1.6.2/go.mod h1:CwMC90nnZElorCW63P2pAYm25AtQrHfuOkbRSHj0bT8= -cloud.google.com/go/apigeeconnect v1.3.0/go.mod h1:G/AwXFAKo0gIXkPTVfZDd2qA1TxBXJ3MgMRBQkIi9jc= -cloud.google.com/go/apigeeconnect v1.4.0/go.mod h1:kV4NwOKqjvt2JYR0AoIWo2QGfoRtn/pkS3QlHp0Ni04= -cloud.google.com/go/apigeeconnect v1.5.0/go.mod h1:KFaCqvBRU6idyhSNyn3vlHXc8VMDJdRmwDF6JyFRqZ8= -cloud.google.com/go/apigeeconnect v1.6.1/go.mod h1:C4awq7x0JpLtrlQCr8AzVIzAaYgngRqWf9S5Uhg+wWs= -cloud.google.com/go/apigeeconnect v1.6.2/go.mod h1:s6O0CgXT9RgAxlq3DLXvG8riw8PYYbU/v25jqP3Dy18= -cloud.google.com/go/apigeeregistry v0.4.0/go.mod h1:EUG4PGcsZvxOXAdyEghIdXwAEi/4MEaoqLMLDMIwKXY= -cloud.google.com/go/apigeeregistry v0.5.0/go.mod h1:YR5+s0BVNZfVOUkMa5pAR2xGd0A473vA5M7j247o1wM= -cloud.google.com/go/apigeeregistry v0.6.0/go.mod h1:BFNzW7yQVLZ3yj0TKcwzb8n25CFBri51GVGOEUcgQsc= -cloud.google.com/go/apigeeregistry v0.7.1/go.mod h1:1XgyjZye4Mqtw7T9TsY4NW10U7BojBvG4RMD+vRDrIw= -cloud.google.com/go/apigeeregistry v0.7.2/go.mod h1:9CA2B2+TGsPKtfi3F7/1ncCCsL62NXBRfM6iPoGSM+8= -cloud.google.com/go/apikeys v0.4.0/go.mod h1:XATS/yqZbaBK0HOssf+ALHp8jAlNHUgyfprvNcBIszU= -cloud.google.com/go/apikeys v0.5.0/go.mod h1:5aQfwY4D+ewMMWScd3hm2en3hCj+BROlyrt3ytS7KLI= -cloud.google.com/go/apikeys v0.6.0/go.mod h1:kbpXu5upyiAlGkKrJgQl8A0rKNNJ7dQ377pdroRSSi8= -cloud.google.com/go/appengine v1.4.0/go.mod h1:CS2NhuBuDXM9f+qscZ6V86m1MIIqPj3WC/UoEuR1Sno= -cloud.google.com/go/appengine v1.5.0/go.mod h1:TfasSozdkFI0zeoxW3PTBLiNqRmzraodCWatWI9Dmak= -cloud.google.com/go/appengine v1.6.0/go.mod h1:hg6i0J/BD2cKmDJbaFSYHFyZkgBEfQrDg/X0V5fJn84= -cloud.google.com/go/appengine v1.7.0/go.mod h1:eZqpbHFCqRGa2aCdope7eC0SWLV1j0neb/QnMJVWx6A= -cloud.google.com/go/appengine v1.7.1/go.mod h1:IHLToyb/3fKutRysUlFO0BPt5j7RiQ45nrzEJmKTo6E= -cloud.google.com/go/appengine v1.8.1/go.mod h1:6NJXGLVhZCN9aQ/AEDvmfzKEfoYBlfB80/BHiKVputY= -cloud.google.com/go/appengine v1.8.2/go.mod h1:WMeJV9oZ51pvclqFN2PqHoGnys7rK0rz6s3Mp6yMvDo= -cloud.google.com/go/area120 v0.5.0/go.mod h1:DE/n4mp+iqVyvxHN41Vf1CR602GiHQjFPusMFW6bGR4= -cloud.google.com/go/area120 v0.6.0/go.mod h1:39yFJqWVgm0UZqWTOdqkLhjoC7uFfgXRC8g/ZegeAh0= -cloud.google.com/go/area120 v0.7.0/go.mod h1:a3+8EUD1SX5RUcCs3MY5YasiO1z6yLiNLRiFrykbynY= -cloud.google.com/go/area120 v0.7.1/go.mod h1:j84i4E1RboTWjKtZVWXPqvK5VHQFJRF2c1Nm69pWm9k= -cloud.google.com/go/area120 v0.8.1/go.mod h1:BVfZpGpB7KFVNxPiQBuHkX6Ed0rS51xIgmGyjrAfzsg= -cloud.google.com/go/area120 v0.8.2/go.mod h1:a5qfo+x77SRLXnCynFWPUZhnZGeSgvQ+Y0v1kSItkh4= -cloud.google.com/go/artifactregistry v1.6.0/go.mod h1:IYt0oBPSAGYj/kprzsBjZ/4LnG/zOcHyFHjWPCi6SAQ= -cloud.google.com/go/artifactregistry v1.7.0/go.mod h1:mqTOFOnGZx8EtSqK/ZWcsm/4U8B77rbcLP6ruDU2Ixk= -cloud.google.com/go/artifactregistry v1.8.0/go.mod h1:w3GQXkJX8hiKN0v+at4b0qotwijQbYUqF2GWkZzAhC0= -cloud.google.com/go/artifactregistry v1.9.0/go.mod h1:2K2RqvA2CYvAeARHRkLDhMDJ3OXy26h3XW+3/Jh2uYc= -cloud.google.com/go/artifactregistry v1.11.1/go.mod h1:lLYghw+Itq9SONbCa1YWBoWs1nOucMH0pwXN1rOBZFI= -cloud.google.com/go/artifactregistry v1.11.2/go.mod h1:nLZns771ZGAwVLzTX/7Al6R9ehma4WUEhZGWV6CeQNQ= -cloud.google.com/go/artifactregistry v1.12.0/go.mod h1:o6P3MIvtzTOnmvGagO9v/rOjjA0HmhJ+/6KAXrmYDCI= -cloud.google.com/go/artifactregistry v1.13.0/go.mod h1:uy/LNfoOIivepGhooAUpL1i30Hgee3Cu0l4VTWHUC08= -cloud.google.com/go/artifactregistry v1.14.1/go.mod h1:nxVdG19jTaSTu7yA7+VbWL346r3rIdkZ142BSQqhn5E= -cloud.google.com/go/artifactregistry v1.14.2/go.mod h1:Xk+QbsKEb0ElmyeMfdHAey41B+qBq3q5R5f5xD4XT3U= -cloud.google.com/go/artifactregistry v1.14.3/go.mod h1:A2/E9GXnsyXl7GUvQ/2CjHA+mVRoWAXC0brg2os+kNI= -cloud.google.com/go/asset v1.5.0/go.mod h1:5mfs8UvcM5wHhqtSv8J1CtxxaQq3AdBxxQi2jGW/K4o= -cloud.google.com/go/asset v1.7.0/go.mod h1:YbENsRK4+xTiL+Ofoj5Ckf+O17kJtgp3Y3nn4uzZz5s= -cloud.google.com/go/asset v1.8.0/go.mod h1:mUNGKhiqIdbr8X7KNayoYvyc4HbbFO9URsjbytpUaW0= -cloud.google.com/go/asset v1.9.0/go.mod h1:83MOE6jEJBMqFKadM9NLRcs80Gdw76qGuHn8m3h8oHQ= -cloud.google.com/go/asset v1.10.0/go.mod h1:pLz7uokL80qKhzKr4xXGvBQXnzHn5evJAEAtZiIb0wY= -cloud.google.com/go/asset v1.11.1/go.mod h1:fSwLhbRvC9p9CXQHJ3BgFeQNM4c9x10lqlrdEUYXlJo= -cloud.google.com/go/asset v1.12.0/go.mod h1:h9/sFOa4eDIyKmH6QMpm4eUK3pDojWnUhTgJlk762Hg= -cloud.google.com/go/asset v1.13.0/go.mod h1:WQAMyYek/b7NBpYq/K4KJWcRqzoalEsxz/t/dTk4THw= -cloud.google.com/go/asset v1.14.1/go.mod h1:4bEJ3dnHCqWCDbWJ/6Vn7GVI9LerSi7Rfdi03hd+WTQ= -cloud.google.com/go/asset v1.15.0/go.mod h1:tpKafV6mEut3+vN9ScGvCHXHj7FALFVta+okxFECHcg= -cloud.google.com/go/asset v1.15.1/go.mod h1:yX/amTvFWRpp5rcFq6XbCxzKT8RJUam1UoboE179jU4= -cloud.google.com/go/assuredworkloads v1.5.0/go.mod h1:n8HOZ6pff6re5KYfBXcFvSViQjDwxFkAkmUFffJRbbY= -cloud.google.com/go/assuredworkloads v1.6.0/go.mod h1:yo2YOk37Yc89Rsd5QMVECvjaMKymF9OP+QXWlKXUkXw= -cloud.google.com/go/assuredworkloads v1.7.0/go.mod h1:z/736/oNmtGAyU47reJgGN+KVoYoxeLBoj4XkKYscNI= -cloud.google.com/go/assuredworkloads v1.8.0/go.mod h1:AsX2cqyNCOvEQC8RMPnoc0yEarXQk6WEKkxYfL6kGIo= -cloud.google.com/go/assuredworkloads v1.9.0/go.mod h1:kFuI1P78bplYtT77Tb1hi0FMxM0vVpRC7VVoJC3ZoT0= -cloud.google.com/go/assuredworkloads v1.10.0/go.mod h1:kwdUQuXcedVdsIaKgKTp9t0UJkE5+PAVNhdQm4ZVq2E= -cloud.google.com/go/assuredworkloads v1.11.1/go.mod h1:+F04I52Pgn5nmPG36CWFtxmav6+7Q+c5QyJoL18Lry0= -cloud.google.com/go/assuredworkloads v1.11.2/go.mod h1:O1dfr+oZJMlE6mw0Bp0P1KZSlj5SghMBvTpZqIcUAW4= -cloud.google.com/go/automl v1.5.0/go.mod h1:34EjfoFGMZ5sgJ9EoLsRtdPSNZLcfflJR39VbVNS2M0= -cloud.google.com/go/automl v1.6.0/go.mod h1:ugf8a6Fx+zP0D59WLhqgTDsQI9w07o64uf/Is3Nh5p8= -cloud.google.com/go/automl v1.7.0/go.mod h1:RL9MYCCsJEOmt0Wf3z9uzG0a7adTT1fe+aObgSpkCt8= -cloud.google.com/go/automl v1.8.0/go.mod h1:xWx7G/aPEe/NP+qzYXktoBSDfjO+vnKMGgsApGJJquM= -cloud.google.com/go/automl v1.12.0/go.mod h1:tWDcHDp86aMIuHmyvjuKeeHEGq76lD7ZqfGLN6B0NuU= -cloud.google.com/go/automl v1.13.1/go.mod h1:1aowgAHWYZU27MybSCFiukPO7xnyawv7pt3zK4bheQE= -cloud.google.com/go/automl v1.13.2/go.mod h1:gNY/fUmDEN40sP8amAX3MaXkxcqPIn7F1UIIPZpy4Mg= -cloud.google.com/go/baremetalsolution v0.3.0/go.mod h1:XOrocE+pvK1xFfleEnShBlNAXf+j5blPPxrhjKgnIFc= -cloud.google.com/go/baremetalsolution v0.4.0/go.mod h1:BymplhAadOO/eBa7KewQ0Ppg4A4Wplbn+PsFKRLo0uI= -cloud.google.com/go/baremetalsolution v0.5.0/go.mod h1:dXGxEkmR9BMwxhzBhV0AioD0ULBmuLZI8CdwalUxuss= -cloud.google.com/go/baremetalsolution v1.1.1/go.mod h1:D1AV6xwOksJMV4OSlWHtWuFNZZYujJknMAP4Qa27QIA= -cloud.google.com/go/baremetalsolution v1.2.0/go.mod h1:68wi9AwPYkEWIUT4SvSGS9UJwKzNpshjHsH4lzk8iOw= -cloud.google.com/go/baremetalsolution v1.2.1/go.mod h1:3qKpKIw12RPXStwQXcbhfxVj1dqQGEvcmA+SX/mUR88= -cloud.google.com/go/batch v0.3.0/go.mod h1:TR18ZoAekj1GuirsUsR1ZTKN3FC/4UDnScjT8NXImFE= -cloud.google.com/go/batch v0.4.0/go.mod h1:WZkHnP43R/QCGQsZ+0JyG4i79ranE2u8xvjq/9+STPE= -cloud.google.com/go/batch v0.7.0/go.mod h1:vLZN95s6teRUqRQ4s3RLDsH8PvboqBK+rn1oevL159g= -cloud.google.com/go/batch v1.3.1/go.mod h1:VguXeQKXIYaeeIYbuozUmBR13AfL4SJP7IltNPS+A4A= -cloud.google.com/go/batch v1.4.1/go.mod h1:KdBmDD61K0ovcxoRHGrN6GmOBWeAOyCgKD0Mugx4Fkk= -cloud.google.com/go/batch v1.5.0/go.mod h1:KdBmDD61K0ovcxoRHGrN6GmOBWeAOyCgKD0Mugx4Fkk= -cloud.google.com/go/batch v1.5.1/go.mod h1:RpBuIYLkQu8+CWDk3dFD/t/jOCGuUpkpX+Y0n1Xccs8= -cloud.google.com/go/beyondcorp v0.2.0/go.mod h1:TB7Bd+EEtcw9PCPQhCJtJGjk/7TC6ckmnSFS+xwTfm4= -cloud.google.com/go/beyondcorp v0.3.0/go.mod h1:E5U5lcrcXMsCuoDNyGrpyTm/hn7ne941Jz2vmksAxW8= -cloud.google.com/go/beyondcorp v0.4.0/go.mod h1:3ApA0mbhHx6YImmuubf5pyW8srKnCEPON32/5hj+RmM= -cloud.google.com/go/beyondcorp v0.5.0/go.mod h1:uFqj9X+dSfrheVp7ssLTaRHd2EHqSL4QZmH4e8WXGGU= -cloud.google.com/go/beyondcorp v0.6.1/go.mod h1:YhxDWw946SCbmcWo3fAhw3V4XZMSpQ/VYfcKGAEU8/4= -cloud.google.com/go/beyondcorp v1.0.0/go.mod h1:YhxDWw946SCbmcWo3fAhw3V4XZMSpQ/VYfcKGAEU8/4= -cloud.google.com/go/beyondcorp v1.0.1/go.mod h1:zl/rWWAFVeV+kx+X2Javly7o1EIQThU4WlkynffL/lk= -cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= -cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= -cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= -cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= -cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= -cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= -cloud.google.com/go/bigquery v1.42.0/go.mod h1:8dRTJxhtG+vwBKzE5OseQn/hiydoQN3EedCaOdYmxRA= -cloud.google.com/go/bigquery v1.43.0/go.mod h1:ZMQcXHsl+xmU1z36G2jNGZmKp9zNY5BUua5wDgmNCfw= -cloud.google.com/go/bigquery v1.44.0/go.mod h1:0Y33VqXTEsbamHJvJHdFmtqHvMIY28aK1+dFsvaChGc= -cloud.google.com/go/bigquery v1.47.0/go.mod h1:sA9XOgy0A8vQK9+MWhEQTY6Tix87M/ZurWFIxmF9I/E= -cloud.google.com/go/bigquery v1.48.0/go.mod h1:QAwSz+ipNgfL5jxiaK7weyOhzdoAy1zFm0Nf1fysJac= -cloud.google.com/go/bigquery v1.49.0/go.mod h1:Sv8hMmTFFYBlt/ftw2uN6dFdQPzBlREY9yBh7Oy7/4Q= -cloud.google.com/go/bigquery v1.50.0/go.mod h1:YrleYEh2pSEbgTBZYMJ5SuSr0ML3ypjRB1zgf7pvQLU= -cloud.google.com/go/bigquery v1.52.0/go.mod h1:3b/iXjRQGU4nKa87cXeg6/gogLjO8C6PmuM8i5Bi/u4= -cloud.google.com/go/bigquery v1.53.0/go.mod h1:3b/iXjRQGU4nKa87cXeg6/gogLjO8C6PmuM8i5Bi/u4= -cloud.google.com/go/bigquery v1.55.0/go.mod h1:9Y5I3PN9kQWuid6183JFhOGOW3GcirA5LpsKCUn+2ec= -cloud.google.com/go/bigquery v1.56.0/go.mod h1:KDcsploXTEY7XT3fDQzMUZlpQLHzE4itubHrnmhUrZA= -cloud.google.com/go/bigtable v1.2.0/go.mod h1:JcVAOl45lrTmQfLj7T6TxyMzIN/3FGGcFm+2xVAli2o= -cloud.google.com/go/billing v1.4.0/go.mod h1:g9IdKBEFlItS8bTtlrZdVLWSSdSyFUZKXNS02zKMOZY= -cloud.google.com/go/billing v1.5.0/go.mod h1:mztb1tBc3QekhjSgmpf/CV4LzWXLzCArwpLmP2Gm88s= -cloud.google.com/go/billing v1.6.0/go.mod h1:WoXzguj+BeHXPbKfNWkqVtDdzORazmCjraY+vrxcyvI= -cloud.google.com/go/billing v1.7.0/go.mod h1:q457N3Hbj9lYwwRbnlD7vUpyjq6u5U1RAOArInEiD5Y= -cloud.google.com/go/billing v1.12.0/go.mod h1:yKrZio/eu+okO/2McZEbch17O5CB5NpZhhXG6Z766ss= -cloud.google.com/go/billing v1.13.0/go.mod h1:7kB2W9Xf98hP9Sr12KfECgfGclsH3CQR0R08tnRlRbc= -cloud.google.com/go/billing v1.16.0/go.mod h1:y8vx09JSSJG02k5QxbycNRrN7FGZB6F3CAcgum7jvGA= -cloud.google.com/go/billing v1.17.0/go.mod h1:Z9+vZXEq+HwH7bhJkyI4OQcR6TSbeMrjlpEjO2vzY64= -cloud.google.com/go/billing v1.17.1/go.mod h1:Z9+vZXEq+HwH7bhJkyI4OQcR6TSbeMrjlpEjO2vzY64= -cloud.google.com/go/billing v1.17.2/go.mod h1:u/AdV/3wr3xoRBk5xvUzYMS1IawOAPwQMuHgHMdljDg= -cloud.google.com/go/binaryauthorization v1.1.0/go.mod h1:xwnoWu3Y84jbuHa0zd526MJYmtnVXn0syOjaJgy4+dM= -cloud.google.com/go/binaryauthorization v1.2.0/go.mod h1:86WKkJHtRcv5ViNABtYMhhNWRrD1Vpi//uKEy7aYEfI= -cloud.google.com/go/binaryauthorization v1.3.0/go.mod h1:lRZbKgjDIIQvzYQS1p99A7/U1JqvqeZg0wiI5tp6tg0= -cloud.google.com/go/binaryauthorization v1.4.0/go.mod h1:tsSPQrBd77VLplV70GUhBf/Zm3FsKmgSqgm4UmiDItk= -cloud.google.com/go/binaryauthorization v1.5.0/go.mod h1:OSe4OU1nN/VswXKRBmciKpo9LulY41gch5c68htf3/Q= -cloud.google.com/go/binaryauthorization v1.6.1/go.mod h1:TKt4pa8xhowwffiBmbrbcxijJRZED4zrqnwZ1lKH51U= -cloud.google.com/go/binaryauthorization v1.7.0/go.mod h1:Zn+S6QqTMn6odcMU1zDZCJxPjU2tZPV1oDl45lWY154= -cloud.google.com/go/binaryauthorization v1.7.1/go.mod h1:GTAyfRWYgcbsP3NJogpV3yeunbUIjx2T9xVeYovtURE= -cloud.google.com/go/certificatemanager v1.3.0/go.mod h1:n6twGDvcUBFu9uBgt4eYvvf3sQ6My8jADcOVwHmzadg= -cloud.google.com/go/certificatemanager v1.4.0/go.mod h1:vowpercVFyqs8ABSmrdV+GiFf2H/ch3KyudYQEMM590= -cloud.google.com/go/certificatemanager v1.6.0/go.mod h1:3Hh64rCKjRAX8dXgRAyOcY5vQ/fE1sh8o+Mdd6KPgY8= -cloud.google.com/go/certificatemanager v1.7.1/go.mod h1:iW8J3nG6SaRYImIa+wXQ0g8IgoofDFRp5UMzaNk1UqI= -cloud.google.com/go/certificatemanager v1.7.2/go.mod h1:15SYTDQMd00kdoW0+XY5d9e+JbOPjp24AvF48D8BbcQ= -cloud.google.com/go/channel v1.8.0/go.mod h1:W5SwCXDJsq/rg3tn3oG0LOxpAo6IMxNa09ngphpSlnk= -cloud.google.com/go/channel v1.9.0/go.mod h1:jcu05W0my9Vx4mt3/rEHpfxc9eKi9XwsdDL8yBMbKUk= -cloud.google.com/go/channel v1.11.0/go.mod h1:IdtI0uWGqhEeatSB62VOoJ8FSUhJ9/+iGkJVqp74CGE= -cloud.google.com/go/channel v1.12.0/go.mod h1:VkxCGKASi4Cq7TbXxlaBezonAYpp1GCnKMY6tnMQnLU= -cloud.google.com/go/channel v1.16.0/go.mod h1:eN/q1PFSl5gyu0dYdmxNXscY/4Fi7ABmeHCJNf/oHmc= -cloud.google.com/go/channel v1.17.0/go.mod h1:RpbhJsGi/lXWAUM1eF4IbQGbsfVlg2o8Iiy2/YLfVT0= -cloud.google.com/go/channel v1.17.1/go.mod h1:xqfzcOZAcP4b/hUDH0GkGg1Sd5to6di1HOJn/pi5uBQ= -cloud.google.com/go/cloudbuild v1.3.0/go.mod h1:WequR4ULxlqvMsjDEEEFnOG5ZSRSgWOywXYDb1vPE6U= -cloud.google.com/go/cloudbuild v1.4.0/go.mod h1:5Qwa40LHiOXmz3386FrjrYM93rM/hdRr7b53sySrTqA= -cloud.google.com/go/cloudbuild v1.6.0/go.mod h1:UIbc/w9QCbH12xX+ezUsgblrWv+Cv4Tw83GiSMHOn9M= -cloud.google.com/go/cloudbuild v1.7.0/go.mod h1:zb5tWh2XI6lR9zQmsm1VRA+7OCuve5d8S+zJUul8KTg= -cloud.google.com/go/cloudbuild v1.9.0/go.mod h1:qK1d7s4QlO0VwfYn5YuClDGg2hfmLZEb4wQGAbIgL1s= -cloud.google.com/go/cloudbuild v1.10.1/go.mod h1:lyJg7v97SUIPq4RC2sGsz/9tNczhyv2AjML/ci4ulzU= -cloud.google.com/go/cloudbuild v1.13.0/go.mod h1:lyJg7v97SUIPq4RC2sGsz/9tNczhyv2AjML/ci4ulzU= -cloud.google.com/go/cloudbuild v1.14.0/go.mod h1:lyJg7v97SUIPq4RC2sGsz/9tNczhyv2AjML/ci4ulzU= -cloud.google.com/go/cloudbuild v1.14.1/go.mod h1:K7wGc/3zfvmYWOWwYTgF/d/UVJhS4pu+HAy7PL7mCsU= -cloud.google.com/go/clouddms v1.3.0/go.mod h1:oK6XsCDdW4Ib3jCCBugx+gVjevp2TMXFtgxvPSee3OM= -cloud.google.com/go/clouddms v1.4.0/go.mod h1:Eh7sUGCC+aKry14O1NRljhjyrr0NFC0G2cjwX0cByRk= -cloud.google.com/go/clouddms v1.5.0/go.mod h1:QSxQnhikCLUw13iAbffF2CZxAER3xDGNHjsTAkQJcQA= -cloud.google.com/go/clouddms v1.6.1/go.mod h1:Ygo1vL52Ov4TBZQquhz5fiw2CQ58gvu+PlS6PVXCpZI= -cloud.google.com/go/clouddms v1.7.0/go.mod h1:MW1dC6SOtI/tPNCciTsXtsGNEM0i0OccykPvv3hiYeM= -cloud.google.com/go/clouddms v1.7.1/go.mod h1:o4SR8U95+P7gZ/TX+YbJxehOCsM+fe6/brlrFquiszk= -cloud.google.com/go/cloudtasks v1.5.0/go.mod h1:fD92REy1x5woxkKEkLdvavGnPJGEn8Uic9nWuLzqCpY= -cloud.google.com/go/cloudtasks v1.6.0/go.mod h1:C6Io+sxuke9/KNRkbQpihnW93SWDU3uXt92nu85HkYI= -cloud.google.com/go/cloudtasks v1.7.0/go.mod h1:ImsfdYWwlWNJbdgPIIGJWC+gemEGTBK/SunNQQNCAb4= -cloud.google.com/go/cloudtasks v1.8.0/go.mod h1:gQXUIwCSOI4yPVK7DgTVFiiP0ZW/eQkydWzwVMdHxrI= -cloud.google.com/go/cloudtasks v1.9.0/go.mod h1:w+EyLsVkLWHcOaqNEyvcKAsWp9p29dL6uL9Nst1cI7Y= -cloud.google.com/go/cloudtasks v1.10.0/go.mod h1:NDSoTLkZ3+vExFEWu2UJV1arUyzVDAiZtdWcsUyNwBs= -cloud.google.com/go/cloudtasks v1.11.1/go.mod h1:a9udmnou9KO2iulGscKR0qBYjreuX8oHwpmFsKspEvM= -cloud.google.com/go/cloudtasks v1.12.1/go.mod h1:a9udmnou9KO2iulGscKR0qBYjreuX8oHwpmFsKspEvM= -cloud.google.com/go/cloudtasks v1.12.2/go.mod h1:A7nYkjNlW2gUoROg1kvJrQGhJP/38UaWwsnuBDOBVUk= -cloud.google.com/go/compute v0.1.0/go.mod h1:GAesmwr110a34z04OlxYkATPBEfVhkymfTBXtfbBFow= -cloud.google.com/go/compute v1.3.0/go.mod h1:cCZiE1NHEtai4wiufUhW8I8S1JKkAnhnQJWM7YD99wM= -cloud.google.com/go/compute v1.5.0/go.mod h1:9SMHyhJlzhlkJqrPAc839t2BZFTSk6Jdj6mkzQJeu0M= -cloud.google.com/go/compute v1.6.0/go.mod h1:T29tfhtVbq1wvAPo0E3+7vhgmkOYeXjhFvz/FMzPu0s= -cloud.google.com/go/compute v1.6.1/go.mod h1:g85FgpzFvNULZ+S8AYq87axRKuf2Kh7deLqV/jJ3thU= -cloud.google.com/go/compute v1.7.0/go.mod h1:435lt8av5oL9P3fv1OEzSbSUe+ybHXGMPQHHZWZxy9U= -cloud.google.com/go/compute v1.10.0/go.mod h1:ER5CLbMxl90o2jtNbGSbtfOpQKR0t15FOtRsugnLrlU= -cloud.google.com/go/compute v1.12.0/go.mod h1:e8yNOBcBONZU1vJKCvCoDw/4JQsA0dpM4x/6PIIOocU= -cloud.google.com/go/compute v1.12.1/go.mod h1:e8yNOBcBONZU1vJKCvCoDw/4JQsA0dpM4x/6PIIOocU= -cloud.google.com/go/compute v1.13.0/go.mod h1:5aPTS0cUNMIc1CE546K+Th6weJUNQErARyZtRXDJ8GE= -cloud.google.com/go/compute v1.14.0/go.mod h1:YfLtxrj9sU4Yxv+sXzZkyPjEyPBZfXHUvjxega5vAdo= -cloud.google.com/go/compute v1.15.1/go.mod h1:bjjoF/NtFUrkD/urWfdHaKuOPDR5nWIs63rR+SXhcpA= -cloud.google.com/go/compute v1.18.0/go.mod h1:1X7yHxec2Ga+Ss6jPyjxRxpu2uu7PLgsOVXvgU0yacs= -cloud.google.com/go/compute v1.19.0/go.mod h1:rikpw2y+UMidAe9tISo04EHNOIf42RLYF/q8Bs93scU= -cloud.google.com/go/compute v1.19.1/go.mod h1:6ylj3a05WF8leseCdIf77NK0g1ey+nj5IKd5/kvShxE= -cloud.google.com/go/compute v1.19.3/go.mod h1:qxvISKp/gYnXkSAD1ppcSOveRAmzxicEv/JlizULFrI= -cloud.google.com/go/compute v1.20.1/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM= -cloud.google.com/go/compute v1.21.0/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM= -cloud.google.com/go/compute v1.23.0/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM= -cloud.google.com/go/compute v1.23.1/go.mod h1:CqB3xpmPKKt3OJpW2ndFIXnA9A4xAy/F3Xp1ixncW78= -cloud.google.com/go/compute/metadata v0.1.0/go.mod h1:Z1VN+bulIf6bt4P/C37K4DyZYZEXYonfTBHHFPO/4UU= -cloud.google.com/go/compute/metadata v0.2.0/go.mod h1:zFmK7XCadkQkj6TtorcaGlCW1hT1fIilQDwofLpJ20k= -cloud.google.com/go/compute/metadata v0.2.1/go.mod h1:jgHgmJd2RKBGzXqF5LR2EZMGxBkeanZ9wwa75XHJgOM= -cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA= -cloud.google.com/go/contactcenterinsights v1.3.0/go.mod h1:Eu2oemoePuEFc/xKFPjbTuPSj0fYJcPls9TFlPNnHHY= -cloud.google.com/go/contactcenterinsights v1.4.0/go.mod h1:L2YzkGbPsv+vMQMCADxJoT9YiTTnSEd6fEvCeHTYVck= -cloud.google.com/go/contactcenterinsights v1.6.0/go.mod h1:IIDlT6CLcDoyv79kDv8iWxMSTZhLxSCofVV5W6YFM/w= -cloud.google.com/go/contactcenterinsights v1.9.1/go.mod h1:bsg/R7zGLYMVxFFzfh9ooLTruLRCG9fnzhH9KznHhbM= -cloud.google.com/go/contactcenterinsights v1.10.0/go.mod h1:bsg/R7zGLYMVxFFzfh9ooLTruLRCG9fnzhH9KznHhbM= -cloud.google.com/go/contactcenterinsights v1.11.0/go.mod h1:hutBdImE4XNZ1NV4vbPJKSFOnQruhC5Lj9bZqWMTKiU= -cloud.google.com/go/contactcenterinsights v1.11.1/go.mod h1:FeNP3Kg8iteKM80lMwSk3zZZKVxr+PGnAId6soKuXwE= -cloud.google.com/go/container v1.6.0/go.mod h1:Xazp7GjJSeUYo688S+6J5V+n/t+G5sKBTFkKNudGRxg= -cloud.google.com/go/container v1.7.0/go.mod h1:Dp5AHtmothHGX3DwwIHPgq45Y8KmNsgN3amoYfxVkLo= -cloud.google.com/go/container v1.13.1/go.mod h1:6wgbMPeQRw9rSnKBCAJXnds3Pzj03C4JHamr8asWKy4= -cloud.google.com/go/container v1.14.0/go.mod h1:3AoJMPhHfLDxLvrlVWaK57IXzaPnLaZq63WX59aQBfM= -cloud.google.com/go/container v1.15.0/go.mod h1:ft+9S0WGjAyjDggg5S06DXj+fHJICWg8L7isCQe9pQA= -cloud.google.com/go/container v1.22.1/go.mod h1:lTNExE2R7f+DLbAN+rJiKTisauFCaoDq6NURZ83eVH4= -cloud.google.com/go/container v1.24.0/go.mod h1:lTNExE2R7f+DLbAN+rJiKTisauFCaoDq6NURZ83eVH4= -cloud.google.com/go/container v1.26.0/go.mod h1:YJCmRet6+6jnYYRS000T6k0D0xUXQgBSaJ7VwI8FBj4= -cloud.google.com/go/container v1.26.1/go.mod h1:5smONjPRUxeEpDG7bMKWfDL4sauswqEtnBK1/KKpR04= -cloud.google.com/go/containeranalysis v0.5.1/go.mod h1:1D92jd8gRR/c0fGMlymRgxWD3Qw9C1ff6/T7mLgVL8I= -cloud.google.com/go/containeranalysis v0.6.0/go.mod h1:HEJoiEIu+lEXM+k7+qLCci0h33lX3ZqoYFdmPcoO7s4= -cloud.google.com/go/containeranalysis v0.7.0/go.mod h1:9aUL+/vZ55P2CXfuZjS4UjQ9AgXoSw8Ts6lemfmxBxI= -cloud.google.com/go/containeranalysis v0.9.0/go.mod h1:orbOANbwk5Ejoom+s+DUCTTJ7IBdBQJDcSylAx/on9s= -cloud.google.com/go/containeranalysis v0.10.1/go.mod h1:Ya2jiILITMY68ZLPaogjmOMNkwsDrWBSTyBubGXO7j0= -cloud.google.com/go/containeranalysis v0.11.0/go.mod h1:4n2e99ZwpGxpNcz+YsFT1dfOHPQFGcAC8FN2M2/ne/U= -cloud.google.com/go/containeranalysis v0.11.1/go.mod h1:rYlUOM7nem1OJMKwE1SadufX0JP3wnXj844EtZAwWLY= -cloud.google.com/go/datacatalog v1.3.0/go.mod h1:g9svFY6tuR+j+hrTw3J2dNcmI0dzmSiyOzm8kpLq0a0= -cloud.google.com/go/datacatalog v1.5.0/go.mod h1:M7GPLNQeLfWqeIm3iuiruhPzkt65+Bx8dAKvScX8jvs= -cloud.google.com/go/datacatalog v1.6.0/go.mod h1:+aEyF8JKg+uXcIdAmmaMUmZ3q1b/lKLtXCmXdnc0lbc= -cloud.google.com/go/datacatalog v1.7.0/go.mod h1:9mEl4AuDYWw81UGc41HonIHH7/sn52H0/tc8f8ZbZIE= -cloud.google.com/go/datacatalog v1.8.0/go.mod h1:KYuoVOv9BM8EYz/4eMFxrr4DUKhGIOXxZoKYF5wdISM= -cloud.google.com/go/datacatalog v1.8.1/go.mod h1:RJ58z4rMp3gvETA465Vg+ag8BGgBdnRPEMMSTr5Uv+M= -cloud.google.com/go/datacatalog v1.12.0/go.mod h1:CWae8rFkfp6LzLumKOnmVh4+Zle4A3NXLzVJ1d1mRm0= -cloud.google.com/go/datacatalog v1.13.0/go.mod h1:E4Rj9a5ZtAxcQJlEBTLgMTphfP11/lNaAshpoBgemX8= -cloud.google.com/go/datacatalog v1.14.0/go.mod h1:h0PrGtlihoutNMp/uvwhawLQ9+c63Kz65UFqh49Yo+E= -cloud.google.com/go/datacatalog v1.14.1/go.mod h1:d2CevwTG4yedZilwe+v3E3ZBDRMobQfSG/a6cCCN5R4= -cloud.google.com/go/datacatalog v1.16.0/go.mod h1:d2CevwTG4yedZilwe+v3E3ZBDRMobQfSG/a6cCCN5R4= -cloud.google.com/go/datacatalog v1.17.1/go.mod h1:nCSYFHgtxh2MiEktWIz71s/X+7ds/UT9kp0PC7waCzE= -cloud.google.com/go/datacatalog v1.18.0/go.mod h1:nCSYFHgtxh2MiEktWIz71s/X+7ds/UT9kp0PC7waCzE= -cloud.google.com/go/datacatalog v1.18.1/go.mod h1:TzAWaz+ON1tkNr4MOcak8EBHX7wIRX/gZKM+yTVsv+A= -cloud.google.com/go/dataflow v0.6.0/go.mod h1:9QwV89cGoxjjSR9/r7eFDqqjtvbKxAK2BaYU6PVk9UM= -cloud.google.com/go/dataflow v0.7.0/go.mod h1:PX526vb4ijFMesO1o202EaUmouZKBpjHsTlCtB4parQ= -cloud.google.com/go/dataflow v0.8.0/go.mod h1:Rcf5YgTKPtQyYz8bLYhFoIV/vP39eL7fWNcSOyFfLJE= -cloud.google.com/go/dataflow v0.9.1/go.mod h1:Wp7s32QjYuQDWqJPFFlnBKhkAtiFpMTdg00qGbnIHVw= -cloud.google.com/go/dataflow v0.9.2/go.mod h1:vBfdBZ/ejlTaYIGB3zB4T08UshH70vbtZeMD+urnUSo= -cloud.google.com/go/dataform v0.3.0/go.mod h1:cj8uNliRlHpa6L3yVhDOBrUXH+BPAO1+KFMQQNSThKo= -cloud.google.com/go/dataform v0.4.0/go.mod h1:fwV6Y4Ty2yIFL89huYlEkwUPtS7YZinZbzzj5S9FzCE= -cloud.google.com/go/dataform v0.5.0/go.mod h1:GFUYRe8IBa2hcomWplodVmUx/iTL0FrsauObOM3Ipr0= -cloud.google.com/go/dataform v0.6.0/go.mod h1:QPflImQy33e29VuapFdf19oPbE4aYTJxr31OAPV+ulA= -cloud.google.com/go/dataform v0.7.0/go.mod h1:7NulqnVozfHvWUBpMDfKMUESr+85aJsC/2O0o3jWPDE= -cloud.google.com/go/dataform v0.8.1/go.mod h1:3BhPSiw8xmppbgzeBbmDvmSWlwouuJkXsXsb8UBih9M= -cloud.google.com/go/dataform v0.8.2/go.mod h1:X9RIqDs6NbGPLR80tnYoPNiO1w0wenKTb8PxxlhTMKM= -cloud.google.com/go/datafusion v1.4.0/go.mod h1:1Zb6VN+W6ALo85cXnM1IKiPw+yQMKMhB9TsTSRDo/38= -cloud.google.com/go/datafusion v1.5.0/go.mod h1:Kz+l1FGHB0J+4XF2fud96WMmRiq/wj8N9u007vyXZ2w= -cloud.google.com/go/datafusion v1.6.0/go.mod h1:WBsMF8F1RhSXvVM8rCV3AeyWVxcC2xY6vith3iw3S+8= -cloud.google.com/go/datafusion v1.7.1/go.mod h1:KpoTBbFmoToDExJUso/fcCiguGDk7MEzOWXUsJo0wsI= -cloud.google.com/go/datafusion v1.7.2/go.mod h1:62K2NEC6DRlpNmI43WHMWf9Vg/YvN6QVi8EVwifElI0= -cloud.google.com/go/datalabeling v0.5.0/go.mod h1:TGcJ0G2NzcsXSE/97yWjIZO0bXj0KbVlINXMG9ud42I= -cloud.google.com/go/datalabeling v0.6.0/go.mod h1:WqdISuk/+WIGeMkpw/1q7bK/tFEZxsrFJOJdY2bXvTQ= -cloud.google.com/go/datalabeling v0.7.0/go.mod h1:WPQb1y08RJbmpM3ww0CSUAGweL0SxByuW2E+FU+wXcM= -cloud.google.com/go/datalabeling v0.8.1/go.mod h1:XS62LBSVPbYR54GfYQsPXZjTW8UxCK2fkDciSrpRFdY= -cloud.google.com/go/datalabeling v0.8.2/go.mod h1:cyDvGHuJWu9U/cLDA7d8sb9a0tWLEletStu2sTmg3BE= -cloud.google.com/go/dataplex v1.3.0/go.mod h1:hQuRtDg+fCiFgC8j0zV222HvzFQdRd+SVX8gdmFcZzA= -cloud.google.com/go/dataplex v1.4.0/go.mod h1:X51GfLXEMVJ6UN47ESVqvlsRplbLhcsAt0kZCCKsU0A= -cloud.google.com/go/dataplex v1.5.2/go.mod h1:cVMgQHsmfRoI5KFYq4JtIBEUbYwc3c7tXmIDhRmNNVQ= -cloud.google.com/go/dataplex v1.6.0/go.mod h1:bMsomC/aEJOSpHXdFKFGQ1b0TDPIeL28nJObeO1ppRs= -cloud.google.com/go/dataplex v1.8.1/go.mod h1:7TyrDT6BCdI8/38Uvp0/ZxBslOslP2X2MPDucliyvSE= -cloud.google.com/go/dataplex v1.9.0/go.mod h1:7TyrDT6BCdI8/38Uvp0/ZxBslOslP2X2MPDucliyvSE= -cloud.google.com/go/dataplex v1.9.1/go.mod h1:7TyrDT6BCdI8/38Uvp0/ZxBslOslP2X2MPDucliyvSE= -cloud.google.com/go/dataplex v1.10.1/go.mod h1:1MzmBv8FvjYfc7vDdxhnLFNskikkB+3vl475/XdCDhs= -cloud.google.com/go/dataproc v1.7.0/go.mod h1:CKAlMjII9H90RXaMpSxQ8EU6dQx6iAYNPcYPOkSbi8s= -cloud.google.com/go/dataproc v1.8.0/go.mod h1:5OW+zNAH0pMpw14JVrPONsxMQYMBqJuzORhIBfBn9uI= -cloud.google.com/go/dataproc v1.12.0/go.mod h1:zrF3aX0uV3ikkMz6z4uBbIKyhRITnxvr4i3IjKsKrw4= -cloud.google.com/go/dataproc/v2 v2.0.1/go.mod h1:7Ez3KRHdFGcfY7GcevBbvozX+zyWGcwLJvvAMwCaoZ4= -cloud.google.com/go/dataproc/v2 v2.2.0/go.mod h1:lZR7AQtwZPvmINx5J87DSOOpTfof9LVZju6/Qo4lmcY= -cloud.google.com/go/dataproc/v2 v2.2.1/go.mod h1:QdAJLaBjh+l4PVlVZcmrmhGccosY/omC1qwfQ61Zv/o= -cloud.google.com/go/dataqna v0.5.0/go.mod h1:90Hyk596ft3zUQ8NkFfvICSIfHFh1Bc7C4cK3vbhkeo= -cloud.google.com/go/dataqna v0.6.0/go.mod h1:1lqNpM7rqNLVgWBJyk5NF6Uen2PHym0jtVJonplVsDA= -cloud.google.com/go/dataqna v0.7.0/go.mod h1:Lx9OcIIeqCrw1a6KdO3/5KMP1wAmTc0slZWwP12Qq3c= -cloud.google.com/go/dataqna v0.8.1/go.mod h1:zxZM0Bl6liMePWsHA8RMGAfmTG34vJMapbHAxQ5+WA8= -cloud.google.com/go/dataqna v0.8.2/go.mod h1:KNEqgx8TTmUipnQsScOoDpq/VlXVptUqVMZnt30WAPs= -cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= -cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= -cloud.google.com/go/datastore v1.10.0/go.mod h1:PC5UzAmDEkAmkfaknstTYbNpgE49HAgW2J1gcgUfmdM= -cloud.google.com/go/datastore v1.11.0/go.mod h1:TvGxBIHCS50u8jzG+AW/ppf87v1of8nwzFNgEZU1D3c= -cloud.google.com/go/datastore v1.12.0/go.mod h1:KjdB88W897MRITkvWWJrg2OUtrR5XVj1EoLgSp6/N70= -cloud.google.com/go/datastore v1.12.1/go.mod h1:KjdB88W897MRITkvWWJrg2OUtrR5XVj1EoLgSp6/N70= -cloud.google.com/go/datastore v1.13.0/go.mod h1:KjdB88W897MRITkvWWJrg2OUtrR5XVj1EoLgSp6/N70= -cloud.google.com/go/datastore v1.14.0/go.mod h1:GAeStMBIt9bPS7jMJA85kgkpsMkvseWWXiaHya9Jes8= -cloud.google.com/go/datastore v1.15.0/go.mod h1:GAeStMBIt9bPS7jMJA85kgkpsMkvseWWXiaHya9Jes8= -cloud.google.com/go/datastream v1.2.0/go.mod h1:i/uTP8/fZwgATHS/XFu0TcNUhuA0twZxxQ3EyCUQMwo= -cloud.google.com/go/datastream v1.3.0/go.mod h1:cqlOX8xlyYF/uxhiKn6Hbv6WjwPPuI9W2M9SAXwaLLQ= -cloud.google.com/go/datastream v1.4.0/go.mod h1:h9dpzScPhDTs5noEMQVWP8Wx8AFBRyS0s8KWPx/9r0g= -cloud.google.com/go/datastream v1.5.0/go.mod h1:6TZMMNPwjUqZHBKPQ1wwXpb0d5VDVPl2/XoS5yi88q4= -cloud.google.com/go/datastream v1.6.0/go.mod h1:6LQSuswqLa7S4rPAOZFVjHIG3wJIjZcZrw8JDEDJuIs= -cloud.google.com/go/datastream v1.7.0/go.mod h1:uxVRMm2elUSPuh65IbZpzJNMbuzkcvu5CjMqVIUHrww= -cloud.google.com/go/datastream v1.9.1/go.mod h1:hqnmr8kdUBmrnk65k5wNRoHSCYksvpdZIcZIEl8h43Q= -cloud.google.com/go/datastream v1.10.0/go.mod h1:hqnmr8kdUBmrnk65k5wNRoHSCYksvpdZIcZIEl8h43Q= -cloud.google.com/go/datastream v1.10.1/go.mod h1:7ngSYwnw95YFyTd5tOGBxHlOZiL+OtpjheqU7t2/s/c= -cloud.google.com/go/deploy v1.4.0/go.mod h1:5Xghikd4VrmMLNaF6FiRFDlHb59VM59YoDQnOUdsH/c= -cloud.google.com/go/deploy v1.5.0/go.mod h1:ffgdD0B89tToyW/U/D2eL0jN2+IEV/3EMuXHA0l4r+s= -cloud.google.com/go/deploy v1.6.0/go.mod h1:f9PTHehG/DjCom3QH0cntOVRm93uGBDt2vKzAPwpXQI= -cloud.google.com/go/deploy v1.8.0/go.mod h1:z3myEJnA/2wnB4sgjqdMfgxCA0EqC3RBTNcVPs93mtQ= -cloud.google.com/go/deploy v1.11.0/go.mod h1:tKuSUV5pXbn67KiubiUNUejqLs4f5cxxiCNCeyl0F2g= -cloud.google.com/go/deploy v1.13.0/go.mod h1:tKuSUV5pXbn67KiubiUNUejqLs4f5cxxiCNCeyl0F2g= -cloud.google.com/go/deploy v1.13.1/go.mod h1:8jeadyLkH9qu9xgO3hVWw8jVr29N1mnW42gRJT8GY6g= -cloud.google.com/go/dialogflow v1.15.0/go.mod h1:HbHDWs33WOGJgn6rfzBW1Kv807BE3O1+xGbn59zZWI4= -cloud.google.com/go/dialogflow v1.16.1/go.mod h1:po6LlzGfK+smoSmTBnbkIZY2w8ffjz/RcGSS+sh1el0= -cloud.google.com/go/dialogflow v1.17.0/go.mod h1:YNP09C/kXA1aZdBgC/VtXX74G/TKn7XVCcVumTflA+8= -cloud.google.com/go/dialogflow v1.18.0/go.mod h1:trO7Zu5YdyEuR+BhSNOqJezyFQ3aUzz0njv7sMx/iek= -cloud.google.com/go/dialogflow v1.19.0/go.mod h1:JVmlG1TwykZDtxtTXujec4tQ+D8SBFMoosgy+6Gn0s0= -cloud.google.com/go/dialogflow v1.29.0/go.mod h1:b+2bzMe+k1s9V+F2jbJwpHPzrnIyHihAdRFMtn2WXuM= -cloud.google.com/go/dialogflow v1.31.0/go.mod h1:cuoUccuL1Z+HADhyIA7dci3N5zUssgpBJmCzI6fNRB4= -cloud.google.com/go/dialogflow v1.32.0/go.mod h1:jG9TRJl8CKrDhMEcvfcfFkkpp8ZhgPz3sBGmAUYJ2qE= -cloud.google.com/go/dialogflow v1.38.0/go.mod h1:L7jnH+JL2mtmdChzAIcXQHXMvQkE3U4hTaNltEuxXn4= -cloud.google.com/go/dialogflow v1.40.0/go.mod h1:L7jnH+JL2mtmdChzAIcXQHXMvQkE3U4hTaNltEuxXn4= -cloud.google.com/go/dialogflow v1.43.0/go.mod h1:pDUJdi4elL0MFmt1REMvFkdsUTYSHq+rTCS8wg0S3+M= -cloud.google.com/go/dialogflow v1.44.0/go.mod h1:pDUJdi4elL0MFmt1REMvFkdsUTYSHq+rTCS8wg0S3+M= -cloud.google.com/go/dialogflow v1.44.1/go.mod h1:n/h+/N2ouKOO+rbe/ZnI186xImpqvCVj2DdsWS/0EAk= -cloud.google.com/go/dlp v1.6.0/go.mod h1:9eyB2xIhpU0sVwUixfBubDoRwP+GjeUoxxeueZmqvmM= -cloud.google.com/go/dlp v1.7.0/go.mod h1:68ak9vCiMBjbasxeVD17hVPxDEck+ExiHavX8kiHG+Q= -cloud.google.com/go/dlp v1.9.0/go.mod h1:qdgmqgTyReTz5/YNSSuueR8pl7hO0o9bQ39ZhtgkWp4= -cloud.google.com/go/dlp v1.10.1/go.mod h1:IM8BWz1iJd8njcNcG0+Kyd9OPnqnRNkDV8j42VT5KOI= -cloud.google.com/go/dlp v1.10.2/go.mod h1:ZbdKIhcnyhILgccwVDzkwqybthh7+MplGC3kZVZsIOQ= -cloud.google.com/go/documentai v1.7.0/go.mod h1:lJvftZB5NRiFSX4moiye1SMxHx0Bc3x1+p9e/RfXYiU= -cloud.google.com/go/documentai v1.8.0/go.mod h1:xGHNEB7CtsnySCNrCFdCyyMz44RhFEEX2Q7UD0c5IhU= -cloud.google.com/go/documentai v1.9.0/go.mod h1:FS5485S8R00U10GhgBC0aNGrJxBP8ZVpEeJ7PQDZd6k= -cloud.google.com/go/documentai v1.10.0/go.mod h1:vod47hKQIPeCfN2QS/jULIvQTugbmdc0ZvxxfQY1bg4= -cloud.google.com/go/documentai v1.16.0/go.mod h1:o0o0DLTEZ+YnJZ+J4wNfTxmDVyrkzFvttBXXtYRMHkM= -cloud.google.com/go/documentai v1.18.0/go.mod h1:F6CK6iUH8J81FehpskRmhLq/3VlwQvb7TvwOceQ2tbs= -cloud.google.com/go/documentai v1.20.0/go.mod h1:yJkInoMcK0qNAEdRnqY/D5asy73tnPe88I1YTZT+a8E= -cloud.google.com/go/documentai v1.22.0/go.mod h1:yJkInoMcK0qNAEdRnqY/D5asy73tnPe88I1YTZT+a8E= -cloud.google.com/go/documentai v1.22.1/go.mod h1:LKs22aDHbJv7ufXuPypzRO7rG3ALLJxzdCXDPutw4Qc= -cloud.google.com/go/documentai v1.23.0/go.mod h1:LKs22aDHbJv7ufXuPypzRO7rG3ALLJxzdCXDPutw4Qc= -cloud.google.com/go/documentai v1.23.2/go.mod h1:Q/wcRT+qnuXOpjAkvOV4A+IeQl04q2/ReT7SSbytLSo= -cloud.google.com/go/domains v0.6.0/go.mod h1:T9Rz3GasrpYk6mEGHh4rymIhjlnIuB4ofT1wTxDeT4Y= -cloud.google.com/go/domains v0.7.0/go.mod h1:PtZeqS1xjnXuRPKE/88Iru/LdfoRyEHYA9nFQf4UKpg= -cloud.google.com/go/domains v0.8.0/go.mod h1:M9i3MMDzGFXsydri9/vW+EWz9sWb4I6WyHqdlAk0idE= -cloud.google.com/go/domains v0.9.1/go.mod h1:aOp1c0MbejQQ2Pjf1iJvnVyT+z6R6s8pX66KaCSDYfE= -cloud.google.com/go/domains v0.9.2/go.mod h1:3YvXGYzZG1Temjbk7EyGCuGGiXHJwVNmwIf+E/cUp5I= -cloud.google.com/go/edgecontainer v0.1.0/go.mod h1:WgkZ9tp10bFxqO8BLPqv2LlfmQF1X8lZqwW4r1BTajk= -cloud.google.com/go/edgecontainer v0.2.0/go.mod h1:RTmLijy+lGpQ7BXuTDa4C4ssxyXT34NIuHIgKuP4s5w= -cloud.google.com/go/edgecontainer v0.3.0/go.mod h1:FLDpP4nykgwwIfcLt6zInhprzw0lEi2P1fjO6Ie0qbc= -cloud.google.com/go/edgecontainer v1.0.0/go.mod h1:cttArqZpBB2q58W/upSG++ooo6EsblxDIolxa3jSjbY= -cloud.google.com/go/edgecontainer v1.1.1/go.mod h1:O5bYcS//7MELQZs3+7mabRqoWQhXCzenBu0R8bz2rwk= -cloud.google.com/go/edgecontainer v1.1.2/go.mod h1:wQRjIzqxEs9e9wrtle4hQPSR1Y51kqN75dgF7UllZZ4= -cloud.google.com/go/errorreporting v0.3.0/go.mod h1:xsP2yaAp+OAW4OIm60An2bbLpqIhKXdWR/tawvl7QzU= -cloud.google.com/go/essentialcontacts v1.3.0/go.mod h1:r+OnHa5jfj90qIfZDO/VztSFqbQan7HV75p8sA+mdGI= -cloud.google.com/go/essentialcontacts v1.4.0/go.mod h1:8tRldvHYsmnBCHdFpvU+GL75oWiBKl80BiqlFh9tp+8= -cloud.google.com/go/essentialcontacts v1.5.0/go.mod h1:ay29Z4zODTuwliK7SnX8E86aUF2CTzdNtvv42niCX0M= -cloud.google.com/go/essentialcontacts v1.6.2/go.mod h1:T2tB6tX+TRak7i88Fb2N9Ok3PvY3UNbUsMag9/BARh4= -cloud.google.com/go/essentialcontacts v1.6.3/go.mod h1:yiPCD7f2TkP82oJEFXFTou8Jl8L6LBRPeBEkTaO0Ggo= -cloud.google.com/go/eventarc v1.7.0/go.mod h1:6ctpF3zTnaQCxUjHUdcfgcA1A2T309+omHZth7gDfmc= -cloud.google.com/go/eventarc v1.8.0/go.mod h1:imbzxkyAU4ubfsaKYdQg04WS1NvncblHEup4kvF+4gw= -cloud.google.com/go/eventarc v1.10.0/go.mod h1:u3R35tmZ9HvswGRBnF48IlYgYeBcPUCjkr4BTdem2Kw= -cloud.google.com/go/eventarc v1.11.0/go.mod h1:PyUjsUKPWoRBCHeOxZd/lbOOjahV41icXyUY5kSTvVY= -cloud.google.com/go/eventarc v1.12.1/go.mod h1:mAFCW6lukH5+IZjkvrEss+jmt2kOdYlN8aMx3sRJiAI= -cloud.google.com/go/eventarc v1.13.0/go.mod h1:mAFCW6lukH5+IZjkvrEss+jmt2kOdYlN8aMx3sRJiAI= -cloud.google.com/go/eventarc v1.13.1/go.mod h1:EqBxmGHFrruIara4FUQ3RHlgfCn7yo1HYsu2Hpt/C3Y= -cloud.google.com/go/filestore v1.3.0/go.mod h1:+qbvHGvXU1HaKX2nD0WEPo92TP/8AQuCVEBXNY9z0+w= -cloud.google.com/go/filestore v1.4.0/go.mod h1:PaG5oDfo9r224f8OYXURtAsY+Fbyq/bLYoINEK8XQAI= -cloud.google.com/go/filestore v1.5.0/go.mod h1:FqBXDWBp4YLHqRnVGveOkHDf8svj9r5+mUDLupOWEDs= -cloud.google.com/go/filestore v1.6.0/go.mod h1:di5unNuss/qfZTw2U9nhFqo8/ZDSc466dre85Kydllg= -cloud.google.com/go/filestore v1.7.1/go.mod h1:y10jsorq40JJnjR/lQ8AfFbbcGlw3g+Dp8oN7i7FjV4= -cloud.google.com/go/filestore v1.7.2/go.mod h1:TYOlyJs25f/omgj+vY7/tIG/E7BX369triSPzE4LdgE= -cloud.google.com/go/firestore v1.9.0/go.mod h1:HMkjKHNTtRyZNiMzu7YAsLr9K3X2udY2AMwDaMEQiiE= -cloud.google.com/go/firestore v1.11.0/go.mod h1:b38dKhgzlmNNGTNZZwe7ZRFEuRab1Hay3/DBsIGKKy4= -cloud.google.com/go/firestore v1.12.0/go.mod h1:b38dKhgzlmNNGTNZZwe7ZRFEuRab1Hay3/DBsIGKKy4= -cloud.google.com/go/firestore v1.13.0/go.mod h1:QojqqOh8IntInDUSTAh0c8ZsPYAr68Ma8c5DWOy8xb8= -cloud.google.com/go/functions v1.6.0/go.mod h1:3H1UA3qiIPRWD7PeZKLvHZ9SaQhR26XIJcC0A5GbvAk= -cloud.google.com/go/functions v1.7.0/go.mod h1:+d+QBcWM+RsrgZfV9xo6KfA1GlzJfxcfZcRPEhDDfzg= -cloud.google.com/go/functions v1.8.0/go.mod h1:RTZ4/HsQjIqIYP9a9YPbU+QFoQsAlYgrwOXJWHn1POY= -cloud.google.com/go/functions v1.9.0/go.mod h1:Y+Dz8yGguzO3PpIjhLTbnqV1CWmgQ5UwtlpzoyquQ08= -cloud.google.com/go/functions v1.10.0/go.mod h1:0D3hEOe3DbEvCXtYOZHQZmD+SzYsi1YbI7dGvHfldXw= -cloud.google.com/go/functions v1.12.0/go.mod h1:AXWGrF3e2C/5ehvwYo/GH6O5s09tOPksiKhz+hH8WkA= -cloud.google.com/go/functions v1.13.0/go.mod h1:EU4O007sQm6Ef/PwRsI8N2umygGqPBS/IZQKBQBcJ3c= -cloud.google.com/go/functions v1.15.1/go.mod h1:P5yNWUTkyU+LvW/S9O6V+V423VZooALQlqoXdoPz5AE= -cloud.google.com/go/functions v1.15.2/go.mod h1:CHAjtcR6OU4XF2HuiVeriEdELNcnvRZSk1Q8RMqy4lE= -cloud.google.com/go/gaming v1.5.0/go.mod h1:ol7rGcxP/qHTRQE/RO4bxkXq+Fix0j6D4LFPzYTIrDM= -cloud.google.com/go/gaming v1.6.0/go.mod h1:YMU1GEvA39Qt3zWGyAVA9bpYz/yAhTvaQ1t2sK4KPUA= -cloud.google.com/go/gaming v1.7.0/go.mod h1:LrB8U7MHdGgFG851iHAfqUdLcKBdQ55hzXy9xBJz0+w= -cloud.google.com/go/gaming v1.8.0/go.mod h1:xAqjS8b7jAVW0KFYeRUxngo9My3f33kFmua++Pi+ggM= -cloud.google.com/go/gaming v1.9.0/go.mod h1:Fc7kEmCObylSWLO334NcO+O9QMDyz+TKC4v1D7X+Bc0= -cloud.google.com/go/gaming v1.10.1/go.mod h1:XQQvtfP8Rb9Rxnxm5wFVpAp9zCQkJi2bLIb7iHGwB3s= -cloud.google.com/go/gkebackup v0.2.0/go.mod h1:XKvv/4LfG829/B8B7xRkk8zRrOEbKtEam6yNfuQNH60= -cloud.google.com/go/gkebackup v0.3.0/go.mod h1:n/E671i1aOQvUxT541aTkCwExO/bTer2HDlj4TsBRAo= -cloud.google.com/go/gkebackup v0.4.0/go.mod h1:byAyBGUwYGEEww7xsbnUTBHIYcOPy/PgUWUtOeRm9Vg= -cloud.google.com/go/gkebackup v1.3.0/go.mod h1:vUDOu++N0U5qs4IhG1pcOnD1Mac79xWy6GoBFlWCWBU= -cloud.google.com/go/gkebackup v1.3.1/go.mod h1:vUDOu++N0U5qs4IhG1pcOnD1Mac79xWy6GoBFlWCWBU= -cloud.google.com/go/gkebackup v1.3.2/go.mod h1:OMZbXzEJloyXMC7gqdSB+EOEQ1AKcpGYvO3s1ec5ixk= -cloud.google.com/go/gkeconnect v0.5.0/go.mod h1:c5lsNAg5EwAy7fkqX/+goqFsU1Da/jQFqArp+wGNr/o= -cloud.google.com/go/gkeconnect v0.6.0/go.mod h1:Mln67KyU/sHJEBY8kFZ0xTeyPtzbq9StAVvEULYK16A= -cloud.google.com/go/gkeconnect v0.7.0/go.mod h1:SNfmVqPkaEi3bF/B3CNZOAYPYdg7sU+obZ+QTky2Myw= -cloud.google.com/go/gkeconnect v0.8.1/go.mod h1:KWiK1g9sDLZqhxB2xEuPV8V9NYzrqTUmQR9shJHpOZw= -cloud.google.com/go/gkeconnect v0.8.2/go.mod h1:6nAVhwchBJYgQCXD2pHBFQNiJNyAd/wyxljpaa6ZPrY= -cloud.google.com/go/gkehub v0.9.0/go.mod h1:WYHN6WG8w9bXU0hqNxt8rm5uxnk8IH+lPY9J2TV7BK0= -cloud.google.com/go/gkehub v0.10.0/go.mod h1:UIPwxI0DsrpsVoWpLB0stwKCP+WFVG9+y977wO+hBH0= -cloud.google.com/go/gkehub v0.11.0/go.mod h1:JOWHlmN+GHyIbuWQPl47/C2RFhnFKH38jH9Ascu3n0E= -cloud.google.com/go/gkehub v0.12.0/go.mod h1:djiIwwzTTBrF5NaXCGv3mf7klpEMcST17VBTVVDcuaw= -cloud.google.com/go/gkehub v0.14.1/go.mod h1:VEXKIJZ2avzrbd7u+zeMtW00Y8ddk/4V9511C9CQGTY= -cloud.google.com/go/gkehub v0.14.2/go.mod h1:iyjYH23XzAxSdhrbmfoQdePnlMj2EWcvnR+tHdBQsCY= -cloud.google.com/go/gkemulticloud v0.3.0/go.mod h1:7orzy7O0S+5kq95e4Hpn7RysVA7dPs8W/GgfUtsPbrA= -cloud.google.com/go/gkemulticloud v0.4.0/go.mod h1:E9gxVBnseLWCk24ch+P9+B2CoDFJZTyIgLKSalC7tuI= -cloud.google.com/go/gkemulticloud v0.5.0/go.mod h1:W0JDkiyi3Tqh0TJr//y19wyb1yf8llHVto2Htf2Ja3Y= -cloud.google.com/go/gkemulticloud v0.6.1/go.mod h1:kbZ3HKyTsiwqKX7Yw56+wUGwwNZViRnxWK2DVknXWfw= -cloud.google.com/go/gkemulticloud v1.0.0/go.mod h1:kbZ3HKyTsiwqKX7Yw56+wUGwwNZViRnxWK2DVknXWfw= -cloud.google.com/go/gkemulticloud v1.0.1/go.mod h1:AcrGoin6VLKT/fwZEYuqvVominLriQBCKmbjtnbMjG8= -cloud.google.com/go/grafeas v0.2.0/go.mod h1:KhxgtF2hb0P191HlY5besjYm6MqTSTj3LSI+M+ByZHc= -cloud.google.com/go/grafeas v0.3.0/go.mod h1:P7hgN24EyONOTMyeJH6DxG4zD7fwiYa5Q6GUgyFSOU8= -cloud.google.com/go/gsuiteaddons v1.3.0/go.mod h1:EUNK/J1lZEZO8yPtykKxLXI6JSVN2rg9bN8SXOa0bgM= -cloud.google.com/go/gsuiteaddons v1.4.0/go.mod h1:rZK5I8hht7u7HxFQcFei0+AtfS9uSushomRlg+3ua1o= -cloud.google.com/go/gsuiteaddons v1.5.0/go.mod h1:TFCClYLd64Eaa12sFVmUyG62tk4mdIsI7pAnSXRkcFo= -cloud.google.com/go/gsuiteaddons v1.6.1/go.mod h1:CodrdOqRZcLp5WOwejHWYBjZvfY0kOphkAKpF/3qdZY= -cloud.google.com/go/gsuiteaddons v1.6.2/go.mod h1:K65m9XSgs8hTF3X9nNTPi8IQueljSdYo9F+Mi+s4MyU= -cloud.google.com/go/iam v0.1.0/go.mod h1:vcUNEa0pEm0qRVpmWepWaFMIAI8/hjB9mO8rNCJtF6c= -cloud.google.com/go/iam v0.3.0/go.mod h1:XzJPvDayI+9zsASAFO68Hk07u3z+f+JrT2xXNdp4bnY= -cloud.google.com/go/iam v0.5.0/go.mod h1:wPU9Vt0P4UmCux7mqtRu6jcpPAb74cP1fh50J3QpkUc= -cloud.google.com/go/iam v0.6.0/go.mod h1:+1AH33ueBne5MzYccyMHtEKqLE4/kJOibtffMHDMFMc= -cloud.google.com/go/iam v0.7.0/go.mod h1:H5Br8wRaDGNc8XP3keLc4unfUUZeyH3Sfl9XpQEYOeg= -cloud.google.com/go/iam v0.8.0/go.mod h1:lga0/y3iH6CX7sYqypWJ33hf7kkfXJag67naqGESjkE= -cloud.google.com/go/iam v0.11.0/go.mod h1:9PiLDanza5D+oWFZiH1uG+RnRCfEGKoyl6yo4cgWZGY= -cloud.google.com/go/iam v0.12.0/go.mod h1:knyHGviacl11zrtZUoDuYpDgLjvr28sLQaG0YB2GYAY= -cloud.google.com/go/iam v0.13.0/go.mod h1:ljOg+rcNfzZ5d6f1nAUJ8ZIxOaZUVoS14bKCtaLZ/D0= -cloud.google.com/go/iam v1.0.1/go.mod h1:yR3tmSL8BcZB4bxByRv2jkSIahVmCtfKZwLYGBalRE8= -cloud.google.com/go/iam v1.1.0/go.mod h1:nxdHjaKfCr7fNYx/HJMM8LgiMugmveWlkatear5gVyk= -cloud.google.com/go/iam v1.1.1/go.mod h1:A5avdyVL2tCppe4unb0951eI9jreack+RJ0/d+KUZOU= -cloud.google.com/go/iam v1.1.2/go.mod h1:A5avdyVL2tCppe4unb0951eI9jreack+RJ0/d+KUZOU= -cloud.google.com/go/iam v1.1.3/go.mod h1:3khUlaBXfPKKe7huYgEpDn6FtgRyMEqbkvBxrQyY5SE= -cloud.google.com/go/iap v1.4.0/go.mod h1:RGFwRJdihTINIe4wZ2iCP0zF/qu18ZwyKxrhMhygBEc= -cloud.google.com/go/iap v1.5.0/go.mod h1:UH/CGgKd4KyohZL5Pt0jSKE4m3FR51qg6FKQ/z/Ix9A= -cloud.google.com/go/iap v1.6.0/go.mod h1:NSuvI9C/j7UdjGjIde7t7HBz+QTwBcapPE07+sSRcLk= -cloud.google.com/go/iap v1.7.0/go.mod h1:beqQx56T9O1G1yNPph+spKpNibDlYIiIixiqsQXxLIo= -cloud.google.com/go/iap v1.7.1/go.mod h1:WapEwPc7ZxGt2jFGB/C/bm+hP0Y6NXzOYGjpPnmMS74= -cloud.google.com/go/iap v1.8.1/go.mod h1:sJCbeqg3mvWLqjZNsI6dfAtbbV1DL2Rl7e1mTyXYREQ= -cloud.google.com/go/iap v1.9.0/go.mod h1:01OFxd1R+NFrg78S+hoPV5PxEzv22HXaNqUUlmNHFuY= -cloud.google.com/go/iap v1.9.1/go.mod h1:SIAkY7cGMLohLSdBR25BuIxO+I4fXJiL06IBL7cy/5Q= -cloud.google.com/go/ids v1.1.0/go.mod h1:WIuwCaYVOzHIj2OhN9HAwvW+DBdmUAdcWlFxRl+KubM= -cloud.google.com/go/ids v1.2.0/go.mod h1:5WXvp4n25S0rA/mQWAg1YEEBBq6/s+7ml1RDCW1IrcY= -cloud.google.com/go/ids v1.3.0/go.mod h1:JBdTYwANikFKaDP6LtW5JAi4gubs57SVNQjemdt6xV4= -cloud.google.com/go/ids v1.4.1/go.mod h1:np41ed8YMU8zOgv53MMMoCntLTn2lF+SUzlM+O3u/jw= -cloud.google.com/go/ids v1.4.2/go.mod h1:3vw8DX6YddRu9BncxuzMyWn0g8+ooUjI2gslJ7FH3vk= -cloud.google.com/go/iot v1.3.0/go.mod h1:r7RGh2B61+B8oz0AGE+J72AhA0G7tdXItODWsaA2oLs= -cloud.google.com/go/iot v1.4.0/go.mod h1:dIDxPOn0UvNDUMD8Ger7FIaTuvMkj+aGk94RPP0iV+g= -cloud.google.com/go/iot v1.5.0/go.mod h1:mpz5259PDl3XJthEmh9+ap0affn/MqNSP4My77Qql9o= -cloud.google.com/go/iot v1.6.0/go.mod h1:IqdAsmE2cTYYNO1Fvjfzo9po179rAtJeVGUvkLN3rLE= -cloud.google.com/go/iot v1.7.1/go.mod h1:46Mgw7ev1k9KqK1ao0ayW9h0lI+3hxeanz+L1zmbbbk= -cloud.google.com/go/iot v1.7.2/go.mod h1:q+0P5zr1wRFpw7/MOgDXrG/HVA+l+cSwdObffkrpnSg= -cloud.google.com/go/kms v1.4.0/go.mod h1:fajBHndQ+6ubNw6Ss2sSd+SWvjL26RNo/dr7uxsnnOA= -cloud.google.com/go/kms v1.5.0/go.mod h1:QJS2YY0eJGBg3mnDfuaCyLauWwBJiHRboYxJ++1xJNg= -cloud.google.com/go/kms v1.6.0/go.mod h1:Jjy850yySiasBUDi6KFUwUv2n1+o7QZFyuUJg6OgjA0= -cloud.google.com/go/kms v1.8.0/go.mod h1:4xFEhYFqvW+4VMELtZyxomGSYtSQKzM178ylFW4jMAg= -cloud.google.com/go/kms v1.9.0/go.mod h1:qb1tPTgfF9RQP8e1wq4cLFErVuTJv7UsSC915J8dh3w= -cloud.google.com/go/kms v1.10.0/go.mod h1:ng3KTUtQQU9bPX3+QGLsflZIHlkbn8amFAMY63m8d24= -cloud.google.com/go/kms v1.10.1/go.mod h1:rIWk/TryCkR59GMC3YtHtXeLzd634lBbKenvyySAyYI= -cloud.google.com/go/kms v1.11.0/go.mod h1:hwdiYC0xjnWsKQQCQQmIQnS9asjYVSK6jtXm+zFqXLM= -cloud.google.com/go/kms v1.12.1/go.mod h1:c9J991h5DTl+kg7gi3MYomh12YEENGrf48ee/N/2CDM= -cloud.google.com/go/kms v1.15.0/go.mod h1:c9J991h5DTl+kg7gi3MYomh12YEENGrf48ee/N/2CDM= -cloud.google.com/go/kms v1.15.2/go.mod h1:3hopT4+7ooWRCjc2DxgnpESFxhIraaI2IpAVUEhbT/w= -cloud.google.com/go/kms v1.15.3/go.mod h1:AJdXqHxS2GlPyduM99s9iGqi2nwbviBbhV/hdmt4iOQ= -cloud.google.com/go/kms v1.15.5/go.mod h1:cU2H5jnp6G2TDpUGZyqTCoy1n16fbubHZjmVXSMtwDI= -cloud.google.com/go/language v1.4.0/go.mod h1:F9dRpNFQmJbkaop6g0JhSBXCNlO90e1KWx5iDdxbWic= -cloud.google.com/go/language v1.6.0/go.mod h1:6dJ8t3B+lUYfStgls25GusK04NLh3eDLQnWM3mdEbhI= -cloud.google.com/go/language v1.7.0/go.mod h1:DJ6dYN/W+SQOjF8e1hLQXMF21AkH2w9wiPzPCJa2MIE= -cloud.google.com/go/language v1.8.0/go.mod h1:qYPVHf7SPoNNiCL2Dr0FfEFNil1qi3pQEyygwpgVKB8= -cloud.google.com/go/language v1.9.0/go.mod h1:Ns15WooPM5Ad/5no/0n81yUetis74g3zrbeJBE+ptUY= -cloud.google.com/go/language v1.10.1/go.mod h1:CPp94nsdVNiQEt1CNjF5WkTcisLiHPyIbMhvR8H2AW0= -cloud.google.com/go/language v1.11.0/go.mod h1:uDx+pFDdAKTY8ehpWbiXyQdz8tDSYLJbQcXsCkjYyvQ= -cloud.google.com/go/language v1.11.1/go.mod h1:Xyid9MG9WOX3utvDbpX7j3tXDmmDooMyMDqgUVpH17U= -cloud.google.com/go/lifesciences v0.5.0/go.mod h1:3oIKy8ycWGPUyZDR/8RNnTOYevhaMLqh5vLUXs9zvT8= -cloud.google.com/go/lifesciences v0.6.0/go.mod h1:ddj6tSX/7BOnhxCSd3ZcETvtNr8NZ6t/iPhY2Tyfu08= -cloud.google.com/go/lifesciences v0.8.0/go.mod h1:lFxiEOMqII6XggGbOnKiyZ7IBwoIqA84ClvoezaA/bo= -cloud.google.com/go/lifesciences v0.9.1/go.mod h1:hACAOd1fFbCGLr/+weUKRAJas82Y4vrL3O5326N//Wc= -cloud.google.com/go/lifesciences v0.9.2/go.mod h1:QHEOO4tDzcSAzeJg7s2qwnLM2ji8IRpQl4p6m5Z9yTA= -cloud.google.com/go/logging v1.6.1/go.mod h1:5ZO0mHHbvm8gEmeEUHrmDlTDSu5imF6MUP9OfilNXBw= -cloud.google.com/go/logging v1.7.0/go.mod h1:3xjP2CjkM3ZkO73aj4ASA5wRPGGCRrPIAeNqVNkzY8M= -cloud.google.com/go/logging v1.8.1/go.mod h1:TJjR+SimHwuC8MZ9cjByQulAMgni+RkXeI3wwctHJEI= -cloud.google.com/go/longrunning v0.1.1/go.mod h1:UUFxuDWkv22EuY93jjmDMFT5GPQKeFVJBIF6QlTqdsE= -cloud.google.com/go/longrunning v0.3.0/go.mod h1:qth9Y41RRSUE69rDcOn6DdK3HfQfsUI0YSmW3iIlLJc= -cloud.google.com/go/longrunning v0.4.1/go.mod h1:4iWDqhBZ70CvZ6BfETbvam3T8FMvLK+eFj0E6AaRQTo= -cloud.google.com/go/longrunning v0.4.2/go.mod h1:OHrnaYyLUV6oqwh0xiS7e5sLQhP1m0QU9R+WhGDMgIQ= -cloud.google.com/go/longrunning v0.5.0/go.mod h1:0JNuqRShmscVAhIACGtskSAWtqtOoPkwP0YF1oVEchc= -cloud.google.com/go/longrunning v0.5.1/go.mod h1:spvimkwdz6SPWKEt/XBij79E9fiTkHSQl/fRUUQJYJc= -cloud.google.com/go/longrunning v0.5.2/go.mod h1:nqo6DQbNV2pXhGDbDMoN2bWz68MjZUzqv2YttZiveCs= -cloud.google.com/go/managedidentities v1.3.0/go.mod h1:UzlW3cBOiPrzucO5qWkNkh0w33KFtBJU281hacNvsdE= -cloud.google.com/go/managedidentities v1.4.0/go.mod h1:NWSBYbEMgqmbZsLIyKvxrYbtqOsxY1ZrGM+9RgDqInM= -cloud.google.com/go/managedidentities v1.5.0/go.mod h1:+dWcZ0JlUmpuxpIDfyP5pP5y0bLdRwOS4Lp7gMni/LA= -cloud.google.com/go/managedidentities v1.6.1/go.mod h1:h/irGhTN2SkZ64F43tfGPMbHnypMbu4RB3yl8YcuEak= -cloud.google.com/go/managedidentities v1.6.2/go.mod h1:5c2VG66eCa0WIq6IylRk3TBW83l161zkFvCj28X7jn8= -cloud.google.com/go/maps v0.1.0/go.mod h1:BQM97WGyfw9FWEmQMpZ5T6cpovXXSd1cGmFma94eubI= -cloud.google.com/go/maps v0.6.0/go.mod h1:o6DAMMfb+aINHz/p/jbcY+mYeXBoZoxTfdSQ8VAJaCw= -cloud.google.com/go/maps v0.7.0/go.mod h1:3GnvVl3cqeSvgMcpRlQidXsPYuDGQ8naBis7MVzpXsY= -cloud.google.com/go/maps v1.3.0/go.mod h1:6mWTUv+WhnOwAgjVsSW2QPPECmW+s3PcRyOa9vgG/5s= -cloud.google.com/go/maps v1.4.0/go.mod h1:6mWTUv+WhnOwAgjVsSW2QPPECmW+s3PcRyOa9vgG/5s= -cloud.google.com/go/maps v1.4.1/go.mod h1:BxSa0BnW1g2U2gNdbq5zikLlHUuHW0GFWh7sgML2kIY= -cloud.google.com/go/mediatranslation v0.5.0/go.mod h1:jGPUhGTybqsPQn91pNXw0xVHfuJ3leR1wj37oU3y1f4= -cloud.google.com/go/mediatranslation v0.6.0/go.mod h1:hHdBCTYNigsBxshbznuIMFNe5QXEowAuNmmC7h8pu5w= -cloud.google.com/go/mediatranslation v0.7.0/go.mod h1:LCnB/gZr90ONOIQLgSXagp8XUW1ODs2UmUMvcgMfI2I= -cloud.google.com/go/mediatranslation v0.8.1/go.mod h1:L/7hBdEYbYHQJhX2sldtTO5SZZ1C1vkapubj0T2aGig= -cloud.google.com/go/mediatranslation v0.8.2/go.mod h1:c9pUaDRLkgHRx3irYE5ZC8tfXGrMYwNZdmDqKMSfFp8= -cloud.google.com/go/memcache v1.4.0/go.mod h1:rTOfiGZtJX1AaFUrOgsMHX5kAzaTQ8azHiuDoTPzNsE= -cloud.google.com/go/memcache v1.5.0/go.mod h1:dk3fCK7dVo0cUU2c36jKb4VqKPS22BTkf81Xq617aWM= -cloud.google.com/go/memcache v1.6.0/go.mod h1:XS5xB0eQZdHtTuTF9Hf8eJkKtR3pVRCcvJwtm68T3rA= -cloud.google.com/go/memcache v1.7.0/go.mod h1:ywMKfjWhNtkQTxrWxCkCFkoPjLHPW6A7WOTVI8xy3LY= -cloud.google.com/go/memcache v1.9.0/go.mod h1:8oEyzXCu+zo9RzlEaEjHl4KkgjlNDaXbCQeQWlzNFJM= -cloud.google.com/go/memcache v1.10.1/go.mod h1:47YRQIarv4I3QS5+hoETgKO40InqzLP6kpNLvyXuyaA= -cloud.google.com/go/memcache v1.10.2/go.mod h1:f9ZzJHLBrmd4BkguIAa/l/Vle6uTHzHokdnzSWOdQ6A= -cloud.google.com/go/metastore v1.5.0/go.mod h1:2ZNrDcQwghfdtCwJ33nM0+GrBGlVuh8rakL3vdPY3XY= -cloud.google.com/go/metastore v1.6.0/go.mod h1:6cyQTls8CWXzk45G55x57DVQ9gWg7RiH65+YgPsNh9s= -cloud.google.com/go/metastore v1.7.0/go.mod h1:s45D0B4IlsINu87/AsWiEVYbLaIMeUSoxlKKDqBGFS8= -cloud.google.com/go/metastore v1.8.0/go.mod h1:zHiMc4ZUpBiM7twCIFQmJ9JMEkDSyZS9U12uf7wHqSI= -cloud.google.com/go/metastore v1.10.0/go.mod h1:fPEnH3g4JJAk+gMRnrAnoqyv2lpUCqJPWOodSaf45Eo= -cloud.google.com/go/metastore v1.11.1/go.mod h1:uZuSo80U3Wd4zi6C22ZZliOUJ3XeM/MlYi/z5OAOWRA= -cloud.google.com/go/metastore v1.12.0/go.mod h1:uZuSo80U3Wd4zi6C22ZZliOUJ3XeM/MlYi/z5OAOWRA= -cloud.google.com/go/metastore v1.13.0/go.mod h1:URDhpG6XLeh5K+Glq0NOt74OfrPKTwS62gEPZzb5SOk= -cloud.google.com/go/metastore v1.13.1/go.mod h1:IbF62JLxuZmhItCppcIfzBBfUFq0DIB9HPDoLgWrVOU= -cloud.google.com/go/monitoring v1.7.0/go.mod h1:HpYse6kkGo//7p6sT0wsIC6IBDET0RhIsnmlA53dvEk= -cloud.google.com/go/monitoring v1.8.0/go.mod h1:E7PtoMJ1kQXWxPjB6mv2fhC5/15jInuulFdYYtlcvT4= -cloud.google.com/go/monitoring v1.12.0/go.mod h1:yx8Jj2fZNEkL/GYZyTLS4ZtZEZN8WtDEiEqG4kLK50w= -cloud.google.com/go/monitoring v1.13.0/go.mod h1:k2yMBAB1H9JT/QETjNkgdCGD9bPF712XiLTVr+cBrpw= -cloud.google.com/go/monitoring v1.15.1/go.mod h1:lADlSAlFdbqQuwwpaImhsJXu1QSdd3ojypXrFSMr2rM= -cloud.google.com/go/monitoring v1.16.0/go.mod h1:Ptp15HgAyM1fNICAojDMoNc/wUmn67mLHQfyqbw+poY= -cloud.google.com/go/monitoring v1.16.1/go.mod h1:6HsxddR+3y9j+o/cMJH6q/KJ/CBTvM/38L/1m7bTRJ4= -cloud.google.com/go/networkconnectivity v1.4.0/go.mod h1:nOl7YL8odKyAOtzNX73/M5/mGZgqqMeryi6UPZTk/rA= -cloud.google.com/go/networkconnectivity v1.5.0/go.mod h1:3GzqJx7uhtlM3kln0+x5wyFvuVH1pIBJjhCpjzSt75o= -cloud.google.com/go/networkconnectivity v1.6.0/go.mod h1:OJOoEXW+0LAxHh89nXd64uGG+FbQoeH8DtxCHVOMlaM= -cloud.google.com/go/networkconnectivity v1.7.0/go.mod h1:RMuSbkdbPwNMQjB5HBWD5MpTBnNm39iAVpC3TmsExt8= -cloud.google.com/go/networkconnectivity v1.10.0/go.mod h1:UP4O4sWXJG13AqrTdQCD9TnLGEbtNRqjuaaA7bNjF5E= -cloud.google.com/go/networkconnectivity v1.11.0/go.mod h1:iWmDD4QF16VCDLXUqvyspJjIEtBR/4zq5hwnY2X3scM= -cloud.google.com/go/networkconnectivity v1.12.1/go.mod h1:PelxSWYM7Sh9/guf8CFhi6vIqf19Ir/sbfZRUwXh92E= -cloud.google.com/go/networkconnectivity v1.13.0/go.mod h1:SAnGPes88pl7QRLUen2HmcBSE9AowVAcdug8c0RSBFk= -cloud.google.com/go/networkconnectivity v1.14.0/go.mod h1:SAnGPes88pl7QRLUen2HmcBSE9AowVAcdug8c0RSBFk= -cloud.google.com/go/networkconnectivity v1.14.1/go.mod h1:LyGPXR742uQcDxZ/wv4EI0Vu5N6NKJ77ZYVnDe69Zug= -cloud.google.com/go/networkmanagement v1.4.0/go.mod h1:Q9mdLLRn60AsOrPc8rs8iNV6OHXaGcDdsIQe1ohekq8= -cloud.google.com/go/networkmanagement v1.5.0/go.mod h1:ZnOeZ/evzUdUsnvRt792H0uYEnHQEMaz+REhhzJRcf4= -cloud.google.com/go/networkmanagement v1.6.0/go.mod h1:5pKPqyXjB/sgtvB5xqOemumoQNB7y95Q7S+4rjSOPYY= -cloud.google.com/go/networkmanagement v1.8.0/go.mod h1:Ho/BUGmtyEqrttTgWEe7m+8vDdK74ibQc+Be0q7Fof0= -cloud.google.com/go/networkmanagement v1.9.0/go.mod h1:UTUaEU9YwbCAhhz3jEOHr+2/K/MrBk2XxOLS89LQzFw= -cloud.google.com/go/networkmanagement v1.9.1/go.mod h1:CCSYgrQQvW73EJawO2QamemYcOb57LvrDdDU51F0mcI= -cloud.google.com/go/networksecurity v0.5.0/go.mod h1:xS6fOCoqpVC5zx15Z/MqkfDwH4+m/61A3ODiDV1xmiQ= -cloud.google.com/go/networksecurity v0.6.0/go.mod h1:Q5fjhTr9WMI5mbpRYEbiexTzROf7ZbDzvzCrNl14nyU= -cloud.google.com/go/networksecurity v0.7.0/go.mod h1:mAnzoxx/8TBSyXEeESMy9OOYwo1v+gZ5eMRnsT5bC8k= -cloud.google.com/go/networksecurity v0.8.0/go.mod h1:B78DkqsxFG5zRSVuwYFRZ9Xz8IcQ5iECsNrPn74hKHU= -cloud.google.com/go/networksecurity v0.9.1/go.mod h1:MCMdxOKQ30wsBI1eI659f9kEp4wuuAueoC9AJKSPWZQ= -cloud.google.com/go/networksecurity v0.9.2/go.mod h1:jG0SeAttWzPMUILEHDUvFYdQTl8L/E/KC8iZDj85lEI= -cloud.google.com/go/notebooks v1.2.0/go.mod h1:9+wtppMfVPUeJ8fIWPOq1UnATHISkGXGqTkxeieQ6UY= -cloud.google.com/go/notebooks v1.3.0/go.mod h1:bFR5lj07DtCPC7YAAJ//vHskFBxA5JzYlH68kXVdk34= -cloud.google.com/go/notebooks v1.4.0/go.mod h1:4QPMngcwmgb6uw7Po99B2xv5ufVoIQ7nOGDyL4P8AgA= -cloud.google.com/go/notebooks v1.5.0/go.mod h1:q8mwhnP9aR8Hpfnrc5iN5IBhrXUy8S2vuYs+kBJ/gu0= -cloud.google.com/go/notebooks v1.7.0/go.mod h1:PVlaDGfJgj1fl1S3dUwhFMXFgfYGhYQt2164xOMONmE= -cloud.google.com/go/notebooks v1.8.0/go.mod h1:Lq6dYKOYOWUCTvw5t2q1gp1lAp0zxAxRycayS0iJcqQ= -cloud.google.com/go/notebooks v1.9.1/go.mod h1:zqG9/gk05JrzgBt4ghLzEepPHNwE5jgPcHZRKhlC1A8= -cloud.google.com/go/notebooks v1.10.0/go.mod h1:SOPYMZnttHxqot0SGSFSkRrwE29eqnKPBJFqgWmiK2k= -cloud.google.com/go/notebooks v1.10.1/go.mod h1:5PdJc2SgAybE76kFQCWrTfJolCOUQXF97e+gteUUA6A= -cloud.google.com/go/optimization v1.1.0/go.mod h1:5po+wfvX5AQlPznyVEZjGJTMr4+CAkJf2XSTQOOl9l4= -cloud.google.com/go/optimization v1.2.0/go.mod h1:Lr7SOHdRDENsh+WXVmQhQTrzdu9ybg0NecjHidBq6xs= -cloud.google.com/go/optimization v1.3.1/go.mod h1:IvUSefKiwd1a5p0RgHDbWCIbDFgKuEdB+fPPuP0IDLI= -cloud.google.com/go/optimization v1.4.1/go.mod h1:j64vZQP7h9bO49m2rVaTVoNM0vEBEN5eKPUPbZyXOrk= -cloud.google.com/go/optimization v1.5.0/go.mod h1:evo1OvTxeBRBu6ydPlrIRizKY/LJKo/drDMMRKqGEUU= -cloud.google.com/go/optimization v1.5.1/go.mod h1:NC0gnUD5MWVAF7XLdoYVPmYYVth93Q6BUzqAq3ZwtV8= -cloud.google.com/go/orchestration v1.3.0/go.mod h1:Sj5tq/JpWiB//X/q3Ngwdl5K7B7Y0KZ7bfv0wL6fqVA= -cloud.google.com/go/orchestration v1.4.0/go.mod h1:6W5NLFWs2TlniBphAViZEVhrXRSMgUGDfW7vrWKvsBk= -cloud.google.com/go/orchestration v1.6.0/go.mod h1:M62Bevp7pkxStDfFfTuCOaXgaaqRAga1yKyoMtEoWPQ= -cloud.google.com/go/orchestration v1.8.1/go.mod h1:4sluRF3wgbYVRqz7zJ1/EUNc90TTprliq9477fGobD8= -cloud.google.com/go/orchestration v1.8.2/go.mod h1:T1cP+6WyTmh6LSZzeUhvGf0uZVmJyTx7t8z7Vg87+A0= -cloud.google.com/go/orgpolicy v1.4.0/go.mod h1:xrSLIV4RePWmP9P3tBl8S93lTmlAxjm06NSm2UTmKvE= -cloud.google.com/go/orgpolicy v1.5.0/go.mod h1:hZEc5q3wzwXJaKrsx5+Ewg0u1LxJ51nNFlext7Tanwc= -cloud.google.com/go/orgpolicy v1.10.0/go.mod h1:w1fo8b7rRqlXlIJbVhOMPrwVljyuW5mqssvBtU18ONc= -cloud.google.com/go/orgpolicy v1.11.0/go.mod h1:2RK748+FtVvnfuynxBzdnyu7sygtoZa1za/0ZfpOs1M= -cloud.google.com/go/orgpolicy v1.11.1/go.mod h1:8+E3jQcpZJQliP+zaFfayC2Pg5bmhuLK755wKhIIUCE= -cloud.google.com/go/orgpolicy v1.11.2/go.mod h1:biRDpNwfyytYnmCRWZWxrKF22Nkz9eNVj9zyaBdpm1o= -cloud.google.com/go/osconfig v1.7.0/go.mod h1:oVHeCeZELfJP7XLxcBGTMBvRO+1nQ5tFG9VQTmYS2Fs= -cloud.google.com/go/osconfig v1.8.0/go.mod h1:EQqZLu5w5XA7eKizepumcvWx+m8mJUhEwiPqWiZeEdg= -cloud.google.com/go/osconfig v1.9.0/go.mod h1:Yx+IeIZJ3bdWmzbQU4fxNl8xsZ4amB+dygAwFPlvnNo= -cloud.google.com/go/osconfig v1.10.0/go.mod h1:uMhCzqC5I8zfD9zDEAfvgVhDS8oIjySWh+l4WK6GnWw= -cloud.google.com/go/osconfig v1.11.0/go.mod h1:aDICxrur2ogRd9zY5ytBLV89KEgT2MKB2L/n6x1ooPw= -cloud.google.com/go/osconfig v1.12.0/go.mod h1:8f/PaYzoS3JMVfdfTubkowZYGmAhUCjjwnjqWI7NVBc= -cloud.google.com/go/osconfig v1.12.1/go.mod h1:4CjBxND0gswz2gfYRCUoUzCm9zCABp91EeTtWXyz0tE= -cloud.google.com/go/osconfig v1.12.2/go.mod h1:eh9GPaMZpI6mEJEuhEjUJmaxvQ3gav+fFEJon1Y8Iw0= -cloud.google.com/go/oslogin v1.4.0/go.mod h1:YdgMXWRaElXz/lDk1Na6Fh5orF7gvmJ0FGLIs9LId4E= -cloud.google.com/go/oslogin v1.5.0/go.mod h1:D260Qj11W2qx/HVF29zBg+0fd6YCSjSqLUkY/qEenQU= -cloud.google.com/go/oslogin v1.6.0/go.mod h1:zOJ1O3+dTU8WPlGEkFSh7qeHPPSoxrcMbbK1Nm2iX70= -cloud.google.com/go/oslogin v1.7.0/go.mod h1:e04SN0xO1UNJ1M5GP0vzVBFicIe4O53FOfcixIqTyXo= -cloud.google.com/go/oslogin v1.9.0/go.mod h1:HNavntnH8nzrn8JCTT5fj18FuJLFJc4NaZJtBnQtKFs= -cloud.google.com/go/oslogin v1.10.1/go.mod h1:x692z7yAue5nE7CsSnoG0aaMbNoRJRXO4sn73R+ZqAs= -cloud.google.com/go/oslogin v1.11.0/go.mod h1:8GMTJs4X2nOAUVJiPGqIWVcDaF0eniEto3xlOxaboXE= -cloud.google.com/go/oslogin v1.11.1/go.mod h1:OhD2icArCVNUxKqtK0mcSmKL7lgr0LVlQz+v9s1ujTg= -cloud.google.com/go/phishingprotection v0.5.0/go.mod h1:Y3HZknsK9bc9dMi+oE8Bim0lczMU6hrX0UpADuMefr0= -cloud.google.com/go/phishingprotection v0.6.0/go.mod h1:9Y3LBLgy0kDTcYET8ZH3bq/7qni15yVUoAxiFxnlSUA= -cloud.google.com/go/phishingprotection v0.7.0/go.mod h1:8qJI4QKHoda/sb/7/YmMQ2omRLSLYSu9bU0EKCNI+Lk= -cloud.google.com/go/phishingprotection v0.8.1/go.mod h1:AxonW7GovcA8qdEk13NfHq9hNx5KPtfxXNeUxTDxB6I= -cloud.google.com/go/phishingprotection v0.8.2/go.mod h1:LhJ91uyVHEYKSKcMGhOa14zMMWfbEdxG032oT6ECbC8= -cloud.google.com/go/policytroubleshooter v1.3.0/go.mod h1:qy0+VwANja+kKrjlQuOzmlvscn4RNsAc0e15GGqfMxg= -cloud.google.com/go/policytroubleshooter v1.4.0/go.mod h1:DZT4BcRw3QoO8ota9xw/LKtPa8lKeCByYeKTIf/vxdE= -cloud.google.com/go/policytroubleshooter v1.5.0/go.mod h1:Rz1WfV+1oIpPdN2VvvuboLVRsB1Hclg3CKQ53j9l8vw= -cloud.google.com/go/policytroubleshooter v1.6.0/go.mod h1:zYqaPTsmfvpjm5ULxAyD/lINQxJ0DDsnWOP/GZ7xzBc= -cloud.google.com/go/policytroubleshooter v1.7.1/go.mod h1:0NaT5v3Ag1M7U5r0GfDCpUFkWd9YqpubBWsQlhanRv0= -cloud.google.com/go/policytroubleshooter v1.8.0/go.mod h1:tmn5Ir5EToWe384EuboTcVQT7nTag2+DuH3uHmKd1HU= -cloud.google.com/go/policytroubleshooter v1.9.0/go.mod h1:+E2Lga7TycpeSTj2FsH4oXxTnrbHJGRlKhVZBLGgU64= -cloud.google.com/go/policytroubleshooter v1.9.1/go.mod h1:MYI8i0bCrL8cW+VHN1PoiBTyNZTstCg2WUw2eVC4c4U= -cloud.google.com/go/privatecatalog v0.5.0/go.mod h1:XgosMUvvPyxDjAVNDYxJ7wBW8//hLDDYmnsNcMGq1K0= -cloud.google.com/go/privatecatalog v0.6.0/go.mod h1:i/fbkZR0hLN29eEWiiwue8Pb+GforiEIBnV9yrRUOKI= -cloud.google.com/go/privatecatalog v0.7.0/go.mod h1:2s5ssIFO69F5csTXcwBP7NPFTZvps26xGzvQ2PQaBYg= -cloud.google.com/go/privatecatalog v0.8.0/go.mod h1:nQ6pfaegeDAq/Q5lrfCQzQLhubPiZhSaNhIgfJlnIXs= -cloud.google.com/go/privatecatalog v0.9.1/go.mod h1:0XlDXW2unJXdf9zFz968Hp35gl/bhF4twwpXZAW50JA= -cloud.google.com/go/privatecatalog v0.9.2/go.mod h1:RMA4ATa8IXfzvjrhhK8J6H4wwcztab+oZph3c6WmtFc= -cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= -cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= -cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= -cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= -cloud.google.com/go/pubsub v1.26.0/go.mod h1:QgBH3U/jdJy/ftjPhTkyXNj543Tin1pRYcdcPRnFIRI= -cloud.google.com/go/pubsub v1.27.1/go.mod h1:hQN39ymbV9geqBnfQq6Xf63yNhUAhv9CZhzp5O6qsW0= -cloud.google.com/go/pubsub v1.28.0/go.mod h1:vuXFpwaVoIPQMGXqRyUQigu/AX1S3IWugR9xznmcXX8= -cloud.google.com/go/pubsub v1.30.0/go.mod h1:qWi1OPS0B+b5L+Sg6Gmc9zD1Y+HaM0MdUr7LsupY1P4= -cloud.google.com/go/pubsub v1.32.0/go.mod h1:f+w71I33OMyxf9VpMVcZbnG5KSUkCOUHYpFd5U1GdRc= -cloud.google.com/go/pubsub v1.33.0/go.mod h1:f+w71I33OMyxf9VpMVcZbnG5KSUkCOUHYpFd5U1GdRc= -cloud.google.com/go/pubsublite v1.5.0/go.mod h1:xapqNQ1CuLfGi23Yda/9l4bBCKz/wC3KIJ5gKcxveZg= -cloud.google.com/go/pubsublite v1.6.0/go.mod h1:1eFCS0U11xlOuMFV/0iBqw3zP12kddMeCbj/F3FSj9k= -cloud.google.com/go/pubsublite v1.7.0/go.mod h1:8hVMwRXfDfvGm3fahVbtDbiLePT3gpoiJYJY+vxWxVM= -cloud.google.com/go/pubsublite v1.8.1/go.mod h1:fOLdU4f5xldK4RGJrBMm+J7zMWNj/k4PxwEZXy39QS0= -cloud.google.com/go/recaptchaenterprise v1.3.1/go.mod h1:OdD+q+y4XGeAlxRaMn1Y7/GveP6zmq76byL6tjPE7d4= -cloud.google.com/go/recaptchaenterprise/v2 v2.1.0/go.mod h1:w9yVqajwroDNTfGuhmOjPDN//rZGySaf6PtFVcSCa7o= -cloud.google.com/go/recaptchaenterprise/v2 v2.2.0/go.mod h1:/Zu5jisWGeERrd5HnlS3EUGb/D335f9k51B/FVil0jk= -cloud.google.com/go/recaptchaenterprise/v2 v2.3.0/go.mod h1:O9LwGCjrhGHBQET5CA7dd5NwwNQUErSgEDit1DLNTdo= -cloud.google.com/go/recaptchaenterprise/v2 v2.4.0/go.mod h1:Am3LHfOuBstrLrNCBrlI5sbwx9LBg3te2N6hGvHn2mE= -cloud.google.com/go/recaptchaenterprise/v2 v2.5.0/go.mod h1:O8LzcHXN3rz0j+LBC91jrwI3R+1ZSZEWrfL7XHgNo9U= -cloud.google.com/go/recaptchaenterprise/v2 v2.6.0/go.mod h1:RPauz9jeLtB3JVzg6nCbe12qNoaa8pXc4d/YukAmcnA= -cloud.google.com/go/recaptchaenterprise/v2 v2.7.0/go.mod h1:19wVj/fs5RtYtynAPJdDTb69oW0vNHYDBTbB4NvMD9c= -cloud.google.com/go/recaptchaenterprise/v2 v2.7.2/go.mod h1:kR0KjsJS7Jt1YSyWFkseQ756D45kaYNTlDPPaRAvDBU= -cloud.google.com/go/recaptchaenterprise/v2 v2.8.0/go.mod h1:QuE8EdU9dEnesG8/kG3XuJyNsjEqMlMzg3v3scCJ46c= -cloud.google.com/go/recaptchaenterprise/v2 v2.8.1/go.mod h1:JZYZJOeZjgSSTGP4uz7NlQ4/d1w5hGmksVgM0lbEij0= -cloud.google.com/go/recommendationengine v0.5.0/go.mod h1:E5756pJcVFeVgaQv3WNpImkFP8a+RptV6dDLGPILjvg= -cloud.google.com/go/recommendationengine v0.6.0/go.mod h1:08mq2umu9oIqc7tDy8sx+MNJdLG0fUi3vaSVbztHgJ4= -cloud.google.com/go/recommendationengine v0.7.0/go.mod h1:1reUcE3GIu6MeBz/h5xZJqNLuuVjNg1lmWMPyjatzac= -cloud.google.com/go/recommendationengine v0.8.1/go.mod h1:MrZihWwtFYWDzE6Hz5nKcNz3gLizXVIDI/o3G1DLcrE= -cloud.google.com/go/recommendationengine v0.8.2/go.mod h1:QIybYHPK58qir9CV2ix/re/M//Ty10OxjnnhWdaKS1Y= -cloud.google.com/go/recommender v1.5.0/go.mod h1:jdoeiBIVrJe9gQjwd759ecLJbxCDED4A6p+mqoqDvTg= -cloud.google.com/go/recommender v1.6.0/go.mod h1:+yETpm25mcoiECKh9DEScGzIRyDKpZ0cEhWGo+8bo+c= -cloud.google.com/go/recommender v1.7.0/go.mod h1:XLHs/W+T8olwlGOgfQenXBTbIseGclClff6lhFVe9Bs= -cloud.google.com/go/recommender v1.8.0/go.mod h1:PkjXrTT05BFKwxaUxQmtIlrtj0kph108r02ZZQ5FE70= -cloud.google.com/go/recommender v1.9.0/go.mod h1:PnSsnZY7q+VL1uax2JWkt/UegHssxjUVVCrX52CuEmQ= -cloud.google.com/go/recommender v1.10.1/go.mod h1:XFvrE4Suqn5Cq0Lf+mCP6oBHD/yRMA8XxP5sb7Q7gpA= -cloud.google.com/go/recommender v1.11.0/go.mod h1:kPiRQhPyTJ9kyXPCG6u/dlPLbYfFlkwHNRwdzPVAoII= -cloud.google.com/go/recommender v1.11.1/go.mod h1:sGwFFAyI57v2Hc5LbIj+lTwXipGu9NW015rkaEM5B18= -cloud.google.com/go/redis v1.7.0/go.mod h1:V3x5Jq1jzUcg+UNsRvdmsfuFnit1cfe3Z/PGyq/lm4Y= -cloud.google.com/go/redis v1.8.0/go.mod h1:Fm2szCDavWzBk2cDKxrkmWBqoCiL1+Ctwq7EyqBCA/A= -cloud.google.com/go/redis v1.9.0/go.mod h1:HMYQuajvb2D0LvMgZmLDZW8V5aOC/WxstZHiy4g8OiA= -cloud.google.com/go/redis v1.10.0/go.mod h1:ThJf3mMBQtW18JzGgh41/Wld6vnDDc/F/F35UolRZPM= -cloud.google.com/go/redis v1.11.0/go.mod h1:/X6eicana+BWcUda5PpwZC48o37SiFVTFSs0fWAJ7uQ= -cloud.google.com/go/redis v1.13.1/go.mod h1:VP7DGLpE91M6bcsDdMuyCm2hIpB6Vp2hI090Mfd1tcg= -cloud.google.com/go/redis v1.13.2/go.mod h1:0Hg7pCMXS9uz02q+LoEVl5dNHUkIQv+C/3L76fandSA= -cloud.google.com/go/resourcemanager v1.3.0/go.mod h1:bAtrTjZQFJkiWTPDb1WBjzvc6/kifjj4QBYuKCCoqKA= -cloud.google.com/go/resourcemanager v1.4.0/go.mod h1:MwxuzkumyTX7/a3n37gmsT3py7LIXwrShilPh3P1tR0= -cloud.google.com/go/resourcemanager v1.5.0/go.mod h1:eQoXNAiAvCf5PXxWxXjhKQoTMaUSNrEfg+6qdf/wots= -cloud.google.com/go/resourcemanager v1.6.0/go.mod h1:YcpXGRs8fDzcUl1Xw8uOVmI8JEadvhRIkoXXUNVYcVo= -cloud.google.com/go/resourcemanager v1.7.0/go.mod h1:HlD3m6+bwhzj9XCouqmeiGuni95NTrExfhoSrkC/3EI= -cloud.google.com/go/resourcemanager v1.9.1/go.mod h1:dVCuosgrh1tINZ/RwBufr8lULmWGOkPS8gL5gqyjdT8= -cloud.google.com/go/resourcemanager v1.9.2/go.mod h1:OujkBg1UZg5lX2yIyMo5Vz9O5hf7XQOSV7WxqxxMtQE= -cloud.google.com/go/resourcesettings v1.3.0/go.mod h1:lzew8VfESA5DQ8gdlHwMrqZs1S9V87v3oCnKCWoOuQU= -cloud.google.com/go/resourcesettings v1.4.0/go.mod h1:ldiH9IJpcrlC3VSuCGvjR5of/ezRrOxFtpJoJo5SmXg= -cloud.google.com/go/resourcesettings v1.5.0/go.mod h1:+xJF7QSG6undsQDfsCJyqWXyBwUoJLhetkRMDRnIoXA= -cloud.google.com/go/resourcesettings v1.6.1/go.mod h1:M7mk9PIZrC5Fgsu1kZJci6mpgN8o0IUzVx3eJU3y4Jw= -cloud.google.com/go/resourcesettings v1.6.2/go.mod h1:mJIEDd9MobzunWMeniaMp6tzg4I2GvD3TTmPkc8vBXk= -cloud.google.com/go/retail v1.8.0/go.mod h1:QblKS8waDmNUhghY2TI9O3JLlFk8jybHeV4BF19FrE4= -cloud.google.com/go/retail v1.9.0/go.mod h1:g6jb6mKuCS1QKnH/dpu7isX253absFl6iE92nHwlBUY= -cloud.google.com/go/retail v1.10.0/go.mod h1:2gDk9HsL4HMS4oZwz6daui2/jmKvqShXKQuB2RZ+cCc= -cloud.google.com/go/retail v1.11.0/go.mod h1:MBLk1NaWPmh6iVFSz9MeKG/Psyd7TAgm6y/9L2B4x9Y= -cloud.google.com/go/retail v1.12.0/go.mod h1:UMkelN/0Z8XvKymXFbD4EhFJlYKRx1FGhQkVPU5kF14= -cloud.google.com/go/retail v1.14.1/go.mod h1:y3Wv3Vr2k54dLNIrCzenyKG8g8dhvhncT2NcNjb/6gE= -cloud.google.com/go/retail v1.14.2/go.mod h1:W7rrNRChAEChX336QF7bnMxbsjugcOCPU44i5kbLiL8= -cloud.google.com/go/run v0.2.0/go.mod h1:CNtKsTA1sDcnqqIFR3Pb5Tq0usWxJJvsWOCPldRU3Do= -cloud.google.com/go/run v0.3.0/go.mod h1:TuyY1+taHxTjrD0ZFk2iAR+xyOXEA0ztb7U3UNA0zBo= -cloud.google.com/go/run v0.8.0/go.mod h1:VniEnuBwqjigv0A7ONfQUaEItaiCRVujlMqerPPiktM= -cloud.google.com/go/run v0.9.0/go.mod h1:Wwu+/vvg8Y+JUApMwEDfVfhetv30hCG4ZwDR/IXl2Qg= -cloud.google.com/go/run v1.2.0/go.mod h1:36V1IlDzQ0XxbQjUx6IYbw8H3TJnWvhii963WW3B/bo= -cloud.google.com/go/run v1.3.0/go.mod h1:S/osX/4jIPZGg+ssuqh6GNgg7syixKe3YnprwehzHKU= -cloud.google.com/go/run v1.3.1/go.mod h1:cymddtZOzdwLIAsmS6s+Asl4JoXIDm/K1cpZTxV4Q5s= -cloud.google.com/go/scheduler v1.4.0/go.mod h1:drcJBmxF3aqZJRhmkHQ9b3uSSpQoltBPGPxGAWROx6s= -cloud.google.com/go/scheduler v1.5.0/go.mod h1:ri073ym49NW3AfT6DZi21vLZrG07GXr5p3H1KxN5QlI= -cloud.google.com/go/scheduler v1.6.0/go.mod h1:SgeKVM7MIwPn3BqtcBntpLyrIJftQISRrYB5ZtT+KOk= -cloud.google.com/go/scheduler v1.7.0/go.mod h1:jyCiBqWW956uBjjPMMuX09n3x37mtyPJegEWKxRsn44= -cloud.google.com/go/scheduler v1.8.0/go.mod h1:TCET+Y5Gp1YgHT8py4nlg2Sew8nUHMqcpousDgXJVQc= -cloud.google.com/go/scheduler v1.9.0/go.mod h1:yexg5t+KSmqu+njTIh3b7oYPheFtBWGcbVUYF1GGMIc= -cloud.google.com/go/scheduler v1.10.1/go.mod h1:R63Ldltd47Bs4gnhQkmNDse5w8gBRrhObZ54PxgR2Oo= -cloud.google.com/go/scheduler v1.10.2/go.mod h1:O3jX6HRH5eKCA3FutMw375XHZJudNIKVonSCHv7ropY= -cloud.google.com/go/secretmanager v1.6.0/go.mod h1:awVa/OXF6IiyaU1wQ34inzQNc4ISIDIrId8qE5QGgKA= -cloud.google.com/go/secretmanager v1.8.0/go.mod h1:hnVgi/bN5MYHd3Gt0SPuTPPp5ENina1/LxM+2W9U9J4= -cloud.google.com/go/secretmanager v1.9.0/go.mod h1:b71qH2l1yHmWQHt9LC80akm86mX8AL6X1MA01dW8ht4= -cloud.google.com/go/secretmanager v1.10.0/go.mod h1:MfnrdvKMPNra9aZtQFvBcvRU54hbPD8/HayQdlUgJpU= -cloud.google.com/go/secretmanager v1.11.1/go.mod h1:znq9JlXgTNdBeQk9TBW/FnR/W4uChEKGeqQWAJ8SXFw= -cloud.google.com/go/secretmanager v1.11.2/go.mod h1:MQm4t3deoSub7+WNwiC4/tRYgDBHJgJPvswqQVB1Vss= -cloud.google.com/go/security v1.5.0/go.mod h1:lgxGdyOKKjHL4YG3/YwIL2zLqMFCKs0UbQwgyZmfJl4= -cloud.google.com/go/security v1.7.0/go.mod h1:mZklORHl6Bg7CNnnjLH//0UlAlaXqiG7Lb9PsPXLfD0= -cloud.google.com/go/security v1.8.0/go.mod h1:hAQOwgmaHhztFhiQ41CjDODdWP0+AE1B3sX4OFlq+GU= -cloud.google.com/go/security v1.9.0/go.mod h1:6Ta1bO8LXI89nZnmnsZGp9lVoVWXqsVbIq/t9dzI+2Q= -cloud.google.com/go/security v1.10.0/go.mod h1:QtOMZByJVlibUT2h9afNDWRZ1G96gVywH8T5GUSb9IA= -cloud.google.com/go/security v1.12.0/go.mod h1:rV6EhrpbNHrrxqlvW0BWAIawFWq3X90SduMJdFwtLB8= -cloud.google.com/go/security v1.13.0/go.mod h1:Q1Nvxl1PAgmeW0y3HTt54JYIvUdtcpYKVfIB8AOMZ+0= -cloud.google.com/go/security v1.15.1/go.mod h1:MvTnnbsWnehoizHi09zoiZob0iCHVcL4AUBj76h9fXA= -cloud.google.com/go/security v1.15.2/go.mod h1:2GVE/v1oixIRHDaClVbHuPcZwAqFM28mXuAKCfMgYIg= -cloud.google.com/go/securitycenter v1.13.0/go.mod h1:cv5qNAqjY84FCN6Y9z28WlkKXyWsgLO832YiWwkCWcU= -cloud.google.com/go/securitycenter v1.14.0/go.mod h1:gZLAhtyKv85n52XYWt6RmeBdydyxfPeTrpToDPw4Auc= -cloud.google.com/go/securitycenter v1.15.0/go.mod h1:PeKJ0t8MoFmmXLXWm41JidyzI3PJjd8sXWaVqg43WWk= -cloud.google.com/go/securitycenter v1.16.0/go.mod h1:Q9GMaLQFUD+5ZTabrbujNWLtSLZIZF7SAR0wWECrjdk= -cloud.google.com/go/securitycenter v1.18.1/go.mod h1:0/25gAzCM/9OL9vVx4ChPeM/+DlfGQJDwBy/UC8AKK0= -cloud.google.com/go/securitycenter v1.19.0/go.mod h1:LVLmSg8ZkkyaNy4u7HCIshAngSQ8EcIRREP3xBnyfag= -cloud.google.com/go/securitycenter v1.23.0/go.mod h1:8pwQ4n+Y9WCWM278R8W3nF65QtY172h4S8aXyI9/hsQ= -cloud.google.com/go/securitycenter v1.23.1/go.mod h1:w2HV3Mv/yKhbXKwOCu2i8bCuLtNP1IMHuiYQn4HJq5s= -cloud.google.com/go/servicecontrol v1.4.0/go.mod h1:o0hUSJ1TXJAmi/7fLJAedOovnujSEvjKCAFNXPQ1RaU= -cloud.google.com/go/servicecontrol v1.5.0/go.mod h1:qM0CnXHhyqKVuiZnGKrIurvVImCs8gmqWsDoqe9sU1s= -cloud.google.com/go/servicecontrol v1.10.0/go.mod h1:pQvyvSRh7YzUF2efw7H87V92mxU8FnFDawMClGCNuAA= -cloud.google.com/go/servicecontrol v1.11.0/go.mod h1:kFmTzYzTUIuZs0ycVqRHNaNhgR+UMUpw9n02l/pY+mc= -cloud.google.com/go/servicecontrol v1.11.1/go.mod h1:aSnNNlwEFBY+PWGQ2DoM0JJ/QUXqV5/ZD9DOLB7SnUk= -cloud.google.com/go/servicedirectory v1.4.0/go.mod h1:gH1MUaZCgtP7qQiI+F+A+OpeKF/HQWgtAddhTbhL2bs= -cloud.google.com/go/servicedirectory v1.5.0/go.mod h1:QMKFL0NUySbpZJ1UZs3oFAmdvVxhhxB6eJ/Vlp73dfg= -cloud.google.com/go/servicedirectory v1.6.0/go.mod h1:pUlbnWsLH9c13yGkxCmfumWEPjsRs1RlmJ4pqiNjVL4= -cloud.google.com/go/servicedirectory v1.7.0/go.mod h1:5p/U5oyvgYGYejufvxhgwjL8UVXjkuw7q5XcG10wx1U= -cloud.google.com/go/servicedirectory v1.8.0/go.mod h1:srXodfhY1GFIPvltunswqXpVxFPpZjf8nkKQT7XcXaY= -cloud.google.com/go/servicedirectory v1.9.0/go.mod h1:29je5JjiygNYlmsGz8k6o+OZ8vd4f//bQLtvzkPPT/s= -cloud.google.com/go/servicedirectory v1.10.1/go.mod h1:Xv0YVH8s4pVOwfM/1eMTl0XJ6bzIOSLDt8f8eLaGOxQ= -cloud.google.com/go/servicedirectory v1.11.0/go.mod h1:Xv0YVH8s4pVOwfM/1eMTl0XJ6bzIOSLDt8f8eLaGOxQ= -cloud.google.com/go/servicedirectory v1.11.1/go.mod h1:tJywXimEWzNzw9FvtNjsQxxJ3/41jseeILgwU/QLrGI= -cloud.google.com/go/servicemanagement v1.4.0/go.mod h1:d8t8MDbezI7Z2R1O/wu8oTggo3BI2GKYbdG4y/SJTco= -cloud.google.com/go/servicemanagement v1.5.0/go.mod h1:XGaCRe57kfqu4+lRxaFEAuqmjzF0r+gWHjWqKqBvKFo= -cloud.google.com/go/servicemanagement v1.6.0/go.mod h1:aWns7EeeCOtGEX4OvZUWCCJONRZeFKiptqKf1D0l/Jc= -cloud.google.com/go/servicemanagement v1.8.0/go.mod h1:MSS2TDlIEQD/fzsSGfCdJItQveu9NXnUniTrq/L8LK4= -cloud.google.com/go/serviceusage v1.3.0/go.mod h1:Hya1cozXM4SeSKTAgGXgj97GlqUvF5JaoXacR1JTP/E= -cloud.google.com/go/serviceusage v1.4.0/go.mod h1:SB4yxXSaYVuUBYUml6qklyONXNLt83U0Rb+CXyhjEeU= -cloud.google.com/go/serviceusage v1.5.0/go.mod h1:w8U1JvqUqwJNPEOTQjrMHkw3IaIFLoLsPLvsE3xueec= -cloud.google.com/go/serviceusage v1.6.0/go.mod h1:R5wwQcbOWsyuOfbP9tGdAnCAc6B9DRwPG1xtWMDeuPA= -cloud.google.com/go/shell v1.3.0/go.mod h1:VZ9HmRjZBsjLGXusm7K5Q5lzzByZmJHf1d0IWHEN5X4= -cloud.google.com/go/shell v1.4.0/go.mod h1:HDxPzZf3GkDdhExzD/gs8Grqk+dmYcEjGShZgYa9URw= -cloud.google.com/go/shell v1.6.0/go.mod h1:oHO8QACS90luWgxP3N9iZVuEiSF84zNyLytb+qE2f9A= -cloud.google.com/go/shell v1.7.1/go.mod h1:u1RaM+huXFaTojTbW4g9P5emOrrmLE69KrxqQahKn4g= -cloud.google.com/go/shell v1.7.2/go.mod h1:KqRPKwBV0UyLickMn0+BY1qIyE98kKyI216sH/TuHmc= -cloud.google.com/go/spanner v1.41.0/go.mod h1:MLYDBJR/dY4Wt7ZaMIQ7rXOTLjYrmxLE/5ve9vFfWos= -cloud.google.com/go/spanner v1.44.0/go.mod h1:G8XIgYdOK+Fbcpbs7p2fiprDw4CaZX63whnSMLVBxjk= -cloud.google.com/go/spanner v1.45.0/go.mod h1:FIws5LowYz8YAE1J8fOS7DJup8ff7xJeetWEo5REA2M= -cloud.google.com/go/spanner v1.47.0/go.mod h1:IXsJwVW2j4UKs0eYDqodab6HgGuA1bViSqW4uH9lfUI= -cloud.google.com/go/spanner v1.49.0/go.mod h1:eGj9mQGK8+hkgSVbHNQ06pQ4oS+cyc4tXXd6Dif1KoM= -cloud.google.com/go/spanner v1.50.0/go.mod h1:eGj9mQGK8+hkgSVbHNQ06pQ4oS+cyc4tXXd6Dif1KoM= -cloud.google.com/go/speech v1.6.0/go.mod h1:79tcr4FHCimOp56lwC01xnt/WPJZc4v3gzyT7FoBkCM= -cloud.google.com/go/speech v1.7.0/go.mod h1:KptqL+BAQIhMsj1kOP2la5DSEEerPDuOP/2mmkhHhZQ= -cloud.google.com/go/speech v1.8.0/go.mod h1:9bYIl1/tjsAnMgKGHKmBZzXKEkGgtU+MpdDPTE9f7y0= -cloud.google.com/go/speech v1.9.0/go.mod h1:xQ0jTcmnRFFM2RfX/U+rk6FQNUF6DQlydUSyoooSpco= -cloud.google.com/go/speech v1.14.1/go.mod h1:gEosVRPJ9waG7zqqnsHpYTOoAS4KouMRLDFMekpJ0J0= -cloud.google.com/go/speech v1.15.0/go.mod h1:y6oH7GhqCaZANH7+Oe0BhgIogsNInLlz542tg3VqeYI= -cloud.google.com/go/speech v1.17.1/go.mod h1:8rVNzU43tQvxDaGvqOhpDqgkJTFowBpDvCJ14kGlJYo= -cloud.google.com/go/speech v1.19.0/go.mod h1:8rVNzU43tQvxDaGvqOhpDqgkJTFowBpDvCJ14kGlJYo= -cloud.google.com/go/speech v1.19.1/go.mod h1:WcuaWz/3hOlzPFOVo9DUsblMIHwxP589y6ZMtaG+iAA= -cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= -cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= -cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= -cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= -cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= -cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo= -cloud.google.com/go/storage v1.22.1/go.mod h1:S8N1cAStu7BOeFfE8KAQzmyyLkK8p/vmRq6kuBTW58Y= -cloud.google.com/go/storage v1.23.0/go.mod h1:vOEEDNFnciUMhBeT6hsJIn3ieU5cFRmzeLgDvXzfIXc= -cloud.google.com/go/storage v1.27.0/go.mod h1:x9DOL8TK/ygDUMieqwfhdpQryTeEkhGKMi80i/iqR2s= -cloud.google.com/go/storage v1.28.1/go.mod h1:Qnisd4CqDdo6BGs2AD5LLnEsmSQ80wQ5ogcBBKhU86Y= -cloud.google.com/go/storage v1.29.0/go.mod h1:4puEjyTKnku6gfKoTfNOU/W+a9JyuVNxjpS5GBrB8h4= -cloud.google.com/go/storage v1.30.1/go.mod h1:NfxhC0UJE1aXSx7CIIbCf7y9HKT7BiccwkR7+P7gN8E= -cloud.google.com/go/storagetransfer v1.5.0/go.mod h1:dxNzUopWy7RQevYFHewchb29POFv3/AaBgnhqzqiK0w= -cloud.google.com/go/storagetransfer v1.6.0/go.mod h1:y77xm4CQV/ZhFZH75PLEXY0ROiS7Gh6pSKrM8dJyg6I= -cloud.google.com/go/storagetransfer v1.7.0/go.mod h1:8Giuj1QNb1kfLAiWM1bN6dHzfdlDAVC9rv9abHot2W4= -cloud.google.com/go/storagetransfer v1.8.0/go.mod h1:JpegsHHU1eXg7lMHkvf+KE5XDJ7EQu0GwNJbbVGanEw= -cloud.google.com/go/storagetransfer v1.10.0/go.mod h1:DM4sTlSmGiNczmV6iZyceIh2dbs+7z2Ayg6YAiQlYfA= -cloud.google.com/go/storagetransfer v1.10.1/go.mod h1:rS7Sy0BtPviWYTTJVWCSV4QrbBitgPeuK4/FKa4IdLs= -cloud.google.com/go/talent v1.1.0/go.mod h1:Vl4pt9jiHKvOgF9KoZo6Kob9oV4lwd/ZD5Cto54zDRw= -cloud.google.com/go/talent v1.2.0/go.mod h1:MoNF9bhFQbiJ6eFD3uSsg0uBALw4n4gaCaEjBw9zo8g= -cloud.google.com/go/talent v1.3.0/go.mod h1:CmcxwJ/PKfRgd1pBjQgU6W3YBwiewmUzQYH5HHmSCmM= -cloud.google.com/go/talent v1.4.0/go.mod h1:ezFtAgVuRf8jRsvyE6EwmbTK5LKciD4KVnHuDEFmOOA= -cloud.google.com/go/talent v1.5.0/go.mod h1:G+ODMj9bsasAEJkQSzO2uHQWXHHXUomArjWQQYkqK6c= -cloud.google.com/go/talent v1.6.2/go.mod h1:CbGvmKCG61mkdjcqTcLOkb2ZN1SrQI8MDyma2l7VD24= -cloud.google.com/go/talent v1.6.3/go.mod h1:xoDO97Qd4AK43rGjJvyBHMskiEf3KulgYzcH6YWOVoo= -cloud.google.com/go/texttospeech v1.4.0/go.mod h1:FX8HQHA6sEpJ7rCMSfXuzBcysDAuWusNNNvN9FELDd8= -cloud.google.com/go/texttospeech v1.5.0/go.mod h1:oKPLhR4n4ZdQqWKURdwxMy0uiTS1xU161C8W57Wkea4= -cloud.google.com/go/texttospeech v1.6.0/go.mod h1:YmwmFT8pj1aBblQOI3TfKmwibnsfvhIBzPXcW4EBovc= -cloud.google.com/go/texttospeech v1.7.1/go.mod h1:m7QfG5IXxeneGqTapXNxv2ItxP/FS0hCZBwXYqucgSk= -cloud.google.com/go/texttospeech v1.7.2/go.mod h1:VYPT6aTOEl3herQjFHYErTlSZJ4vB00Q2ZTmuVgluD4= -cloud.google.com/go/tpu v1.3.0/go.mod h1:aJIManG0o20tfDQlRIej44FcwGGl/cD0oiRyMKG19IQ= -cloud.google.com/go/tpu v1.4.0/go.mod h1:mjZaX8p0VBgllCzF6wcU2ovUXN9TONFLd7iz227X2Xg= -cloud.google.com/go/tpu v1.5.0/go.mod h1:8zVo1rYDFuW2l4yZVY0R0fb/v44xLh3llq7RuV61fPM= -cloud.google.com/go/tpu v1.6.1/go.mod h1:sOdcHVIgDEEOKuqUoi6Fq53MKHJAtOwtz0GuKsWSH3E= -cloud.google.com/go/tpu v1.6.2/go.mod h1:NXh3NDwt71TsPZdtGWgAG5ThDfGd32X1mJ2cMaRlVgU= -cloud.google.com/go/trace v1.3.0/go.mod h1:FFUE83d9Ca57C+K8rDl/Ih8LwOzWIV1krKgxg6N0G28= -cloud.google.com/go/trace v1.4.0/go.mod h1:UG0v8UBqzusp+z63o7FK74SdFE+AXpCLdFb1rshXG+Y= -cloud.google.com/go/trace v1.8.0/go.mod h1:zH7vcsbAhklH8hWFig58HvxcxyQbaIqMarMg9hn5ECA= -cloud.google.com/go/trace v1.9.0/go.mod h1:lOQqpE5IaWY0Ixg7/r2SjixMuc6lfTFeO4QGM4dQWOk= -cloud.google.com/go/trace v1.10.1/go.mod h1:gbtL94KE5AJLH3y+WVpfWILmqgc6dXcqgNXdOPAQTYk= -cloud.google.com/go/trace v1.10.2/go.mod h1:NPXemMi6MToRFcSxRl2uDnu/qAlAQ3oULUphcHGh1vA= -cloud.google.com/go/translate v1.3.0/go.mod h1:gzMUwRjvOqj5i69y/LYLd8RrNQk+hOmIXTi9+nb3Djs= -cloud.google.com/go/translate v1.4.0/go.mod h1:06Dn/ppvLD6WvA5Rhdp029IX2Mi3Mn7fpMRLPvXT5Wg= -cloud.google.com/go/translate v1.5.0/go.mod h1:29YDSYveqqpA1CQFD7NQuP49xymq17RXNaUDdc0mNu0= -cloud.google.com/go/translate v1.6.0/go.mod h1:lMGRudH1pu7I3n3PETiOB2507gf3HnfLV8qlkHZEyos= -cloud.google.com/go/translate v1.7.0/go.mod h1:lMGRudH1pu7I3n3PETiOB2507gf3HnfLV8qlkHZEyos= -cloud.google.com/go/translate v1.8.1/go.mod h1:d1ZH5aaOA0CNhWeXeC8ujd4tdCFw8XoNWRljklu5RHs= -cloud.google.com/go/translate v1.8.2/go.mod h1:d1ZH5aaOA0CNhWeXeC8ujd4tdCFw8XoNWRljklu5RHs= -cloud.google.com/go/translate v1.9.0/go.mod h1:d1ZH5aaOA0CNhWeXeC8ujd4tdCFw8XoNWRljklu5RHs= -cloud.google.com/go/translate v1.9.1/go.mod h1:TWIgDZknq2+JD4iRcojgeDtqGEp154HN/uL6hMvylS8= -cloud.google.com/go/video v1.8.0/go.mod h1:sTzKFc0bUSByE8Yoh8X0mn8bMymItVGPfTuUBUyRgxk= -cloud.google.com/go/video v1.9.0/go.mod h1:0RhNKFRF5v92f8dQt0yhaHrEuH95m068JYOvLZYnJSw= -cloud.google.com/go/video v1.12.0/go.mod h1:MLQew95eTuaNDEGriQdcYn0dTwf9oWiA4uYebxM5kdg= -cloud.google.com/go/video v1.13.0/go.mod h1:ulzkYlYgCp15N2AokzKjy7MQ9ejuynOJdf1tR5lGthk= -cloud.google.com/go/video v1.14.0/go.mod h1:SkgaXwT+lIIAKqWAJfktHT/RbgjSuY6DobxEp0C5yTQ= -cloud.google.com/go/video v1.15.0/go.mod h1:SkgaXwT+lIIAKqWAJfktHT/RbgjSuY6DobxEp0C5yTQ= -cloud.google.com/go/video v1.17.1/go.mod h1:9qmqPqw/Ib2tLqaeHgtakU+l5TcJxCJbhFXM7UJjVzU= -cloud.google.com/go/video v1.19.0/go.mod h1:9qmqPqw/Ib2tLqaeHgtakU+l5TcJxCJbhFXM7UJjVzU= -cloud.google.com/go/video v1.20.0/go.mod h1:U3G3FTnsvAGqglq9LxgqzOiBc/Nt8zis8S+850N2DUM= -cloud.google.com/go/video v1.20.1/go.mod h1:3gJS+iDprnj8SY6pe0SwLeC5BUW80NjhwX7INWEuWGU= -cloud.google.com/go/videointelligence v1.6.0/go.mod h1:w0DIDlVRKtwPCn/C4iwZIJdvC69yInhW0cfi+p546uU= -cloud.google.com/go/videointelligence v1.7.0/go.mod h1:k8pI/1wAhjznARtVT9U1llUaFNPh7muw8QyOUpavru4= -cloud.google.com/go/videointelligence v1.8.0/go.mod h1:dIcCn4gVDdS7yte/w+koiXn5dWVplOZkE+xwG9FgK+M= -cloud.google.com/go/videointelligence v1.9.0/go.mod h1:29lVRMPDYHikk3v8EdPSaL8Ku+eMzDljjuvRs105XoU= -cloud.google.com/go/videointelligence v1.10.0/go.mod h1:LHZngX1liVtUhZvi2uNS0VQuOzNi2TkY1OakiuoUOjU= -cloud.google.com/go/videointelligence v1.11.1/go.mod h1:76xn/8InyQHarjTWsBR058SmlPCwQjgcvoW0aZykOvo= -cloud.google.com/go/videointelligence v1.11.2/go.mod h1:ocfIGYtIVmIcWk1DsSGOoDiXca4vaZQII1C85qtoplc= -cloud.google.com/go/vision v1.2.0/go.mod h1:SmNwgObm5DpFBme2xpyOyasvBc1aPdjvMk2bBk0tKD0= -cloud.google.com/go/vision/v2 v2.2.0/go.mod h1:uCdV4PpN1S0jyCyq8sIM42v2Y6zOLkZs+4R9LrGYwFo= -cloud.google.com/go/vision/v2 v2.3.0/go.mod h1:UO61abBx9QRMFkNBbf1D8B1LXdS2cGiiCRx0vSpZoUo= -cloud.google.com/go/vision/v2 v2.4.0/go.mod h1:VtI579ll9RpVTrdKdkMzckdnwMyX2JILb+MhPqRbPsY= -cloud.google.com/go/vision/v2 v2.5.0/go.mod h1:MmaezXOOE+IWa+cS7OhRRLK2cNv1ZL98zhqFFZaaH2E= -cloud.google.com/go/vision/v2 v2.6.0/go.mod h1:158Hes0MvOS9Z/bDMSFpjwsUrZ5fPrdwuyyvKSGAGMY= -cloud.google.com/go/vision/v2 v2.7.0/go.mod h1:H89VysHy21avemp6xcf9b9JvZHVehWbET0uT/bcuY/0= -cloud.google.com/go/vision/v2 v2.7.2/go.mod h1:jKa8oSYBWhYiXarHPvP4USxYANYUEdEsQrloLjrSwJU= -cloud.google.com/go/vision/v2 v2.7.3/go.mod h1:V0IcLCY7W+hpMKXK1JYE0LV5llEqVmj+UJChjvA1WsM= -cloud.google.com/go/vmmigration v1.2.0/go.mod h1:IRf0o7myyWFSmVR1ItrBSFLFD/rJkfDCUTO4vLlJvsE= -cloud.google.com/go/vmmigration v1.3.0/go.mod h1:oGJ6ZgGPQOFdjHuocGcLqX4lc98YQ7Ygq8YQwHh9A7g= -cloud.google.com/go/vmmigration v1.5.0/go.mod h1:E4YQ8q7/4W9gobHjQg4JJSgXXSgY21nA5r8swQV+Xxc= -cloud.google.com/go/vmmigration v1.6.0/go.mod h1:bopQ/g4z+8qXzichC7GW1w2MjbErL54rk3/C843CjfY= -cloud.google.com/go/vmmigration v1.7.1/go.mod h1:WD+5z7a/IpZ5bKK//YmT9E047AD+rjycCAvyMxGJbro= -cloud.google.com/go/vmmigration v1.7.2/go.mod h1:iA2hVj22sm2LLYXGPT1pB63mXHhrH1m/ruux9TwWLd8= -cloud.google.com/go/vmwareengine v0.1.0/go.mod h1:RsdNEf/8UDvKllXhMz5J40XxDrNJNN4sagiox+OI208= -cloud.google.com/go/vmwareengine v0.2.2/go.mod h1:sKdctNJxb3KLZkE/6Oui94iw/xs9PRNC2wnNLXsHvH8= -cloud.google.com/go/vmwareengine v0.3.0/go.mod h1:wvoyMvNWdIzxMYSpH/R7y2h5h3WFkx6d+1TIsP39WGY= -cloud.google.com/go/vmwareengine v0.4.1/go.mod h1:Px64x+BvjPZwWuc4HdmVhoygcXqEkGHXoa7uyfTgSI0= -cloud.google.com/go/vmwareengine v1.0.0/go.mod h1:Px64x+BvjPZwWuc4HdmVhoygcXqEkGHXoa7uyfTgSI0= -cloud.google.com/go/vmwareengine v1.0.1/go.mod h1:aT3Xsm5sNx0QShk1Jc1B8OddrxAScYLwzVoaiXfdzzk= -cloud.google.com/go/vpcaccess v1.4.0/go.mod h1:aQHVbTWDYUR1EbTApSVvMq1EnT57ppDmQzZ3imqIk4w= -cloud.google.com/go/vpcaccess v1.5.0/go.mod h1:drmg4HLk9NkZpGfCmZ3Tz0Bwnm2+DKqViEpeEpOq0m8= -cloud.google.com/go/vpcaccess v1.6.0/go.mod h1:wX2ILaNhe7TlVa4vC5xce1bCnqE3AeH27RV31lnmZes= -cloud.google.com/go/vpcaccess v1.7.1/go.mod h1:FogoD46/ZU+JUBX9D606X21EnxiszYi2tArQwLY4SXs= -cloud.google.com/go/vpcaccess v1.7.2/go.mod h1:mmg/MnRHv+3e8FJUjeSibVFvQF1cCy2MsFaFqxeY1HU= -cloud.google.com/go/webrisk v1.4.0/go.mod h1:Hn8X6Zr+ziE2aNd8SliSDWpEnSS1u4R9+xXZmFiHmGE= -cloud.google.com/go/webrisk v1.5.0/go.mod h1:iPG6fr52Tv7sGk0H6qUFzmL3HHZev1htXuWDEEsqMTg= -cloud.google.com/go/webrisk v1.6.0/go.mod h1:65sW9V9rOosnc9ZY7A7jsy1zoHS5W9IAXv6dGqhMQMc= -cloud.google.com/go/webrisk v1.7.0/go.mod h1:mVMHgEYH0r337nmt1JyLthzMr6YxwN1aAIEc2fTcq7A= -cloud.google.com/go/webrisk v1.8.0/go.mod h1:oJPDuamzHXgUc+b8SiHRcVInZQuybnvEW72PqTc7sSg= -cloud.google.com/go/webrisk v1.9.1/go.mod h1:4GCmXKcOa2BZcZPn6DCEvE7HypmEJcJkr4mtM+sqYPc= -cloud.google.com/go/webrisk v1.9.2/go.mod h1:pY9kfDgAqxUpDBOrG4w8deLfhvJmejKB0qd/5uQIPBc= -cloud.google.com/go/websecurityscanner v1.3.0/go.mod h1:uImdKm2wyeXQevQJXeh8Uun/Ym1VqworNDlBXQevGMo= -cloud.google.com/go/websecurityscanner v1.4.0/go.mod h1:ebit/Fp0a+FWu5j4JOmJEV8S8CzdTkAS77oDsiSqYWQ= -cloud.google.com/go/websecurityscanner v1.5.0/go.mod h1:Y6xdCPy81yi0SQnDY1xdNTNpfY1oAgXUlcfN3B3eSng= -cloud.google.com/go/websecurityscanner v1.6.1/go.mod h1:Njgaw3rttgRHXzwCB8kgCYqv5/rGpFCsBOvPbYgszpg= -cloud.google.com/go/websecurityscanner v1.6.2/go.mod h1:7YgjuU5tun7Eg2kpKgGnDuEOXWIrh8x8lWrJT4zfmas= -cloud.google.com/go/workflows v1.6.0/go.mod h1:6t9F5h/unJz41YqfBmqSASJSXccBLtD1Vwf+KmJENM0= -cloud.google.com/go/workflows v1.7.0/go.mod h1:JhSrZuVZWuiDfKEFxU0/F1PQjmpnpcoISEXH2bcHC3M= -cloud.google.com/go/workflows v1.8.0/go.mod h1:ysGhmEajwZxGn1OhGOGKsTXc5PyxOc0vfKf5Af+to4M= -cloud.google.com/go/workflows v1.9.0/go.mod h1:ZGkj1aFIOd9c8Gerkjjq7OW7I5+l6cSvT3ujaO/WwSA= -cloud.google.com/go/workflows v1.10.0/go.mod h1:fZ8LmRmZQWacon9UCX1r/g/DfAXx5VcPALq2CxzdePw= -cloud.google.com/go/workflows v1.11.1/go.mod h1:Z+t10G1wF7h8LgdY/EmRcQY8ptBD/nvofaL6FqlET6g= -cloud.google.com/go/workflows v1.12.0/go.mod h1:PYhSk2b6DhZ508tj8HXKaBh+OFe+xdl0dHF/tJdzPQM= -cloud.google.com/go/workflows v1.12.1/go.mod h1:5A95OhD/edtOhQd/O741NSfIMezNTbCwLM1P1tBRGHM= -collectd.org v0.3.0/go.mod h1:A/8DzQBkF6abtvrT2j/AU/4tiBgJWYyh0y/oB/4MlWE= -dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= -gioui.org v0.0.0-20210308172011-57750fc8a0a6/go.mod h1:RSH6KIUZ0p2xy5zHDxgAM4zumjgTw83q2ge/PI+yyw8= -git.sr.ht/~sbinet/gg v0.3.1/go.mod h1:KGYtlADtqsqANL9ueOFkWymvzUvLMQllU5Ixo+8v3pc= -github.com/AndreasBriese/bbloom v0.0.0-20190306092124-e2d15f34fcf9/go.mod h1:bOvUY6CB00SOBii9/FifXqc0awNKxLFCL/+pkDPuyl8= -github.com/Azure/azure-sdk-for-go/sdk/azcore v0.21.1/go.mod h1:fBF9PQNqB8scdgpZ3ufzaLntG0AG7C1WjPMsiFOmfHM= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0/go.mod h1:uGG2W01BaETf0Ozp+QxxKJdMBNRWPdstHG0Fmdwn1/U= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.6.0/go.mod h1:bjGvMhVMb+EEm3VRNQawDMUyMMjo+S5ewNjflkep/0Q= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.7.0/go.mod h1:bjGvMhVMb+EEm3VRNQawDMUyMMjo+S5ewNjflkep/0Q= -github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0/go.mod h1:+6sju8gk8FRmSajX3Oz4G5Gm7P+mbqE9FVaXXFYTkCM= -github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.3.0/go.mod h1:OQeznEEkTZ9OrhHJoDD8ZDq51FHgXjqtP9z6bEwBq9U= -github.com/Azure/azure-sdk-for-go/sdk/internal v0.8.3/go.mod h1:KLF4gFr6DcKFZwSuH8w8yEK6DpFl3LP5rhdvAb7Yz5I= -github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0/go.mod h1:eWRD7oawr1Mu1sLCawqVc0CUiF43ia3qQMxLscsKQ9w= -github.com/Azure/azure-sdk-for-go/sdk/internal v1.3.0/go.mod h1:okt5dMMTOFjX/aovMlrjvvXoPMBVSPzk9185BT0+eZM= -github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/internal v1.0.0/go.mod h1:ceIuwmxDWptoW3eCqSXlnPsZFKh4X+R38dWPv7GS9Vs= -github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources v1.0.0/go.mod h1:s1tW/At+xHqjNFvWU4G0c0Qv33KOhvbGNj0RCTQDV8s= -github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/armstorage v1.2.0/go.mod h1:c+Lifp3EDEamAkPVzMooRNOK6CZjNSdEnf1A7jsI9u4= -github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v0.3.0/go.mod h1:tPaiy8S5bQ+S5sOiDlINkp7+Ef339+Nz5L5XO+cnOHo= -github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.2.0/go.mod h1:+6KLcKIVgxoBDMqMO/Nvy7bZ9a0nbU3I1DtFQK3YvB4= -github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0/go.mod h1:Vt9sXTKwMyGcOxSmLDMnGPgqsUg7m8pe215qMLrDXw4= -github.com/AzureAD/microsoft-authentication-library-for-go v1.0.0/go.mod h1:kgDmCTgBzIEPFElEF+FK0SdjAor06dRq2Go927dnQ6o= +github.com/Azure/azure-pipeline-go v0.2.1/go.mod h1:UGSo8XybXnIGZ3epmeBw7Jdz+HiUVpqIlpz/HKHylF4= +github.com/Azure/azure-pipeline-go v0.2.2/go.mod h1:4rQ/NZncSvGqNkkOsNpOU1tgoNuIlp9AfUH5G1tvCHc= +github.com/Azure/azure-storage-blob-go v0.7.0/go.mod h1:f9YQKtsG1nMisotuTPpO0tjNuEjKRYAcJU8/ydDI++4= +github.com/Azure/go-autorest/autorest v0.9.0/go.mod h1:xyHB1BMZT0cuDHU7I0+g046+BFDTQ8rEZB0s4Yfa6bI= +github.com/Azure/go-autorest/autorest/adal v0.5.0/go.mod h1:8Z9fGy2MpX0PvDjB1pEgQTmVqjGhiHBW7RJJEciWzS0= +github.com/Azure/go-autorest/autorest/adal v0.8.0/go.mod h1:Z6vX6WXXuyieHAXwMj0S6HY6e6wcHn37qQMBQlvY3lc= +github.com/Azure/go-autorest/autorest/date v0.1.0/go.mod h1:plvfp3oPSKwf2DNjlBjWF/7vwR+cUD/ELuzDCXwHUVA= +github.com/Azure/go-autorest/autorest/date v0.2.0/go.mod h1:vcORJHLJEh643/Ioh9+vPmf1Ij9AEBM5FuBIXLmIy0g= +github.com/Azure/go-autorest/autorest/mocks v0.1.0/go.mod h1:OTyCOPRA2IgIlWxVYxBee2F5Gr4kF2zd2J5cFRaIDN0= +github.com/Azure/go-autorest/autorest/mocks v0.2.0/go.mod h1:OTyCOPRA2IgIlWxVYxBee2F5Gr4kF2zd2J5cFRaIDN0= +github.com/Azure/go-autorest/autorest/mocks v0.3.0/go.mod h1:a8FDP3DYzQ4RYfVAxAN3SVSiiO77gL2j2ronKKP0syM= +github.com/Azure/go-autorest/logger v0.1.0/go.mod h1:oExouG+K6PryycPJfVSxi/koC6LSNgds39diKLz7Vrc= +github.com/Azure/go-autorest/tracing v0.5.0/go.mod h1:r/s2XiOKccPW3HrqB+W0TQzfbtp2fGCgRFtBroKn4Dk= +github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/BurntSushi/toml v1.1.0/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= -github.com/BurntSushi/toml v1.2.1/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= -github.com/BurntSushi/toml v1.3.2 h1:o7IhLm0Msx3BaB+n3Ag7L8EVlByGnpq14C4YWiu/gL8= -github.com/BurntSushi/toml v1.3.2/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= -github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= -github.com/CloudyKit/fastprinter v0.0.0-20170127035650-74b38d55f37a/go.mod h1:EFZQ978U7x8IRnstaskI3IysnWY5Ao3QgZUKOXlsAdw= -github.com/CloudyKit/jet v2.1.3-0.20180809161101-62edd43e4f88+incompatible/go.mod h1:HPYO+50pSWkPoj9Q/eq0aRGByCL6ScRlUmiEX5Zgm+w= -github.com/DATA-DOG/go-sqlmock v1.3.3/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM= -github.com/DataDog/zstd v1.4.5/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= -github.com/GoogleCloudPlatform/cloudsql-proxy v0.0.0-20190129172621-c8b1d7a94ddf/go.mod h1:aJ4qN3TfrelA6NZ6AXsXRfmEVaYin3EDbSPJrKS8OXo= -github.com/HdrHistogram/hdrhistogram-go v1.1.2/go.mod h1:yDgFjdqOqDEKOvasDdhWNXYg9BVp4O+o5f6V/ehm6Oo= -github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c/go.mod h1:X0CRv0ky0k6m906ixxpzmDRLvX58TFUKS2eePweuyxk= -github.com/Joker/hpp v1.0.0/go.mod h1:8x5n+M1Hp5hC0g8okX3sR3vFQwynaX/UgSOM9MeBKzY= -github.com/Joker/jade v1.0.1-0.20190614124447-d475f43051e7/go.mod h1:6E6s8o2AE4KhCrqr6GRJjdC/gNfTdxkIXvuGZZda2VM= -github.com/Microsoft/go-winio v0.6.1/go.mod h1:LRdKpFKfdobln8UmuiYcKPot9D2v6svN5+sAH+4kjUM= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= -github.com/SaveTheRbtz/mph v0.1.1-0.20240117162131-4166ec7869bc h1:DCHzPQOcU/7gwDTWbFQZc5qHMPS1g0xTO56k8NXsv9M= -github.com/SaveTheRbtz/mph v0.1.1-0.20240117162131-4166ec7869bc/go.mod h1:LJM5a3zcIJ/8TmZwlUczvROEJT8ntOdhdG9jjcR1B0I= -github.com/Shopify/goreferrer v0.0.0-20181106222321-ec9c9a553398/go.mod h1:a1uqRtAwp2Xwc6WNPJEufxJ7fx3npB4UV/JOLmbu5I0= +github.com/OneOfOne/xxhash v1.2.5/go.mod h1:eZbhyaAYD41SGSSsnmcpxVoRiQ/MPUTjUdIIOT9Um7Q= +github.com/SaveTheRbtz/mph v0.1.2 h1:5l3W496Up+7BNOVJQnJhzcGBh+wWfxWdmPUAkx3WmaM= +github.com/SaveTheRbtz/mph v0.1.2/go.mod h1:V4+WtKQPe2+dEA5os1WnGsEB0NR9qgqqgIiSt73+sT4= github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg= -github.com/StackExchange/wmi v1.2.1/go.mod h1:rcmrprowKIVzvc+NUiLncP2uuArMWLCbu9SBzvHz7e8= -github.com/VictoriaMetrics/fastcache v1.6.0/go.mod h1:0qHz5QP0GMX4pfmMA/zt5RgfNuXJrTP0zS7DqpHGGTw= -github.com/VictoriaMetrics/fastcache v1.12.1/go.mod h1:tX04vaqcNoQeGLD+ra5pU5sWkuxnzWhEzLwhP9w653o= -github.com/aclements/go-gg v0.0.0-20170118225347-6dbb4e4fefb0/go.mod h1:55qNq4vcpkIuHowELi5C8e+1yUHtoLoOUR9QU5j7Tes= -github.com/aclements/go-moremath v0.0.0-20210112150236-f10218a38794/go.mod h1:7e+I0LQFUI9AXWxOfsQROs9xPhoJtbsyWcjJqDd4KPY= -github.com/ajg/form v1.5.1/go.mod h1:uL1WgH+h2mgNtvBq0339dVnzXdBETtL2LeUXaIv25UY= -github.com/ajstarks/deck v0.0.0-20200831202436-30c9fc6549a9/go.mod h1:JynElWSGnm/4RlzPXRlREEwqTHAN3T56Bv2ITsFT3gY= -github.com/ajstarks/deck/generate v0.0.0-20210309230005-c3f852c02e19/go.mod h1:T13YZdzov6OU0A1+RfKZiZN9ca6VeKdBdyDV+BY97Tk= -github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw= -github.com/ajstarks/svgo v0.0.0-20210923152817-c3b6e2f0c527/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw= -github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b/go.mod h1:1KcenG0jGWcpt8ov532z81sp/kMMUG485J2InIOyADM= +github.com/VictoriaMetrics/fastcache v1.5.3/go.mod h1:+jv9Ckb+za/P1ZRg/sulP5Ni1v49daAVERr0H3CuscE= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= -github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= -github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= -github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= github.com/allegro/bigcache v1.2.1-0.20190218064605-e24eb225f156/go.mod h1:Cb/ax3seSYIx7SuZdm2G2xzfwmv3TPSk2ucNfQESPXM= -github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883/go.mod h1:rCTlJbsFo29Kk6CurOXKm700vrz8f0KW0JNfpkRJY/8= -github.com/andybalholm/brotli v1.0.4/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig= -github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= -github.com/apache/arrow/go/arrow v0.0.0-20191024131854-af6fa24be0db/go.mod h1:VTxUBvSJ3s3eHAg65PNgrsn5BtqCRPdmyXh6rAfdxN0= -github.com/apache/arrow/go/v10 v10.0.1/go.mod h1:YvhnlEePVnBS4+0z3fhPfUy7W1Ikj0Ih0vcRo/gZ1M0= -github.com/apache/arrow/go/v11 v11.0.0/go.mod h1:Eg5OsL5H+e299f7u5ssuXsuHQVEGC4xei5aX110hRiI= -github.com/apache/arrow/go/v12 v12.0.0/go.mod h1:d+tV/eHZZ7Dz7RPrFKtPK02tpr+c9/PEd/zm8mDS9Vg= -github.com/apache/thrift v0.16.0/go.mod h1:PHK3hniurgQaNMZYaCLEqXKsYK8upmhPbmdP2FXSqgU= +github.com/aristanetworks/goarista v0.0.0-20170210015632-ea17b1a17847/go.mod h1:D/tb0zPVXnP7fmsLZjtdUhSsumbK/ij54UXjjVgMGxQ= github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8= -github.com/aws/aws-sdk-go-v2 v1.2.0/go.mod h1:zEQs02YRBw1DjK0PoJv3ygDYOFTre1ejlJWl8FwAuQo= -github.com/aws/aws-sdk-go-v2 v1.21.2/go.mod h1:ErQhvNuEMhJjweavOYhxVkn2RUx7kQXVATHrjKtxIpM= -github.com/aws/aws-sdk-go-v2 v1.23.1/go.mod h1:i1XDttT4rnf6vxc9AuskLc6s7XBee8rlLilKlc03uAA= -github.com/aws/aws-sdk-go-v2/config v1.1.1/go.mod h1:0XsVy9lBI/BCXm+2Tuvt39YmdHwS5unDQmxZOYe8F5Y= -github.com/aws/aws-sdk-go-v2/config v1.18.45/go.mod h1:ZwDUgFnQgsazQTnWfeLWk5GjeqTQTL8lMkoE1UXzxdE= -github.com/aws/aws-sdk-go-v2/config v1.25.5/go.mod h1:Bf4gDvy4ZcFIK0rqDu1wp9wrubNba2DojiPB2rt6nvI= -github.com/aws/aws-sdk-go-v2/credentials v1.1.1/go.mod h1:mM2iIjwl7LULWtS6JCACyInboHirisUUdkBPoTHMOUo= -github.com/aws/aws-sdk-go-v2/credentials v1.13.43/go.mod h1:zWJBz1Yf1ZtX5NGax9ZdNjhhI4rgjfgsyk6vTY1yfVg= -github.com/aws/aws-sdk-go-v2/credentials v1.16.4/go.mod h1:Kdh/okh+//vQ/AjEt81CjvkTo64+/zIE4OewP7RpfXk= -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.0.2/go.mod h1:3hGg3PpiEjHnrkrlasTfxFqUsZ2GCk/fMUn4CbKgSkM= -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.13/go.mod h1:f/Ib/qYjhV2/qdsf79H3QP/eRE4AkVyEf6sk7XfZ1tg= -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.5/go.mod h1:VhnExhw6uXy9QzetvpXDolo1/hjhx4u9qukBGkuUwjs= -github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.43/go.mod h1:auo+PiyLl0n1l8A0e8RIeR8tOzYPfZZH/JNlrJ8igTQ= -github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.4/go.mod h1:xEhvbJcyUf/31yfGSQBe01fukXwXJ0gxDp7rLfymWE0= -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.37/go.mod h1:Qe+2KtKml+FEsQF/DHmDV+xjtche/hwoF75EG4UlHW8= -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.4/go.mod h1:dYvTNAggxDZy6y1AF7YDwXsPuHFy/VNEpEI/2dWK9IU= -github.com/aws/aws-sdk-go-v2/internal/ini v1.3.45/go.mod h1:lD5M20o09/LCuQ2mE62Mb/iSdSlCNuj6H5ci7tW7OsE= -github.com/aws/aws-sdk-go-v2/internal/ini v1.7.1/go.mod h1:6fQQgfuGmw8Al/3M2IgIllycxV7ZW7WCdVSqfBeUiCY= -github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.1/go.mod h1:l9ymW25HOqymeU2m1gbUQ3rUIsTwKs8gYHXkqDQUhiI= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.0.2/go.mod h1:45MfaXZ0cNbeuT0KQ1XJylq8A6+OpVV2E5kvY/Kq+u8= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.37/go.mod h1:vBmDnwWXWxNPFRMmG2m/3MKOe+xEcMDo1tanpaWCcck= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.4/go.mod h1:aYCGNjyUCUelhofxlZyj63srdxWUSsBSGg5l6MCuXuE= -github.com/aws/aws-sdk-go-v2/service/kms v1.26.3/go.mod h1:N3++/sLV97B8Zliz7KRqNcojOX7iMBZWKiuit5FKtH0= -github.com/aws/aws-sdk-go-v2/service/route53 v1.1.1/go.mod h1:rLiOUrPLW/Er5kRcQ7NkwbjlijluLsrIbu/iyl35RO4= -github.com/aws/aws-sdk-go-v2/service/route53 v1.30.2/go.mod h1:TQZBt/WaQy+zTHoW++rnl8JBrmZ0VO6EUbVua1+foCA= -github.com/aws/aws-sdk-go-v2/service/sso v1.1.1/go.mod h1:SuZJxklHxLAXgLTc1iFXbEWkXs7QRTQpCLGaKIprQW0= -github.com/aws/aws-sdk-go-v2/service/sso v1.15.2/go.mod h1:gsL4keucRCgW+xA85ALBpRFfdSLH4kHOVSnLMSuBECo= -github.com/aws/aws-sdk-go-v2/service/sso v1.17.3/go.mod h1:oA6VjNsLll2eVuUoF2D+CMyORgNzPEW/3PyUdq6WQjI= -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.17.3/go.mod h1:a7bHA82fyUXOm+ZSWKU6PIoBxrjSprdLoM8xPYvzYVg= -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.20.1/go.mod h1:hHL974p5auvXlZPIjJTblXJpbkfK4klBczlsEaMCGVY= -github.com/aws/aws-sdk-go-v2/service/sts v1.1.1/go.mod h1:Wi0EBZwiz/K44YliU0EKxqTCJGUfYTWXrrBwkq736bM= -github.com/aws/aws-sdk-go-v2/service/sts v1.23.2/go.mod h1:Eows6e1uQEsc4ZaHANmsPRzAKcVDrcmjjWiih2+HUUQ= -github.com/aws/aws-sdk-go-v2/service/sts v1.25.4/go.mod h1:feTnm2Tk/pJxdX+eooEsxvlvTWBvDm6CasRZ+JOs2IY= -github.com/aws/smithy-go v1.1.0/go.mod h1:EzMw8dbp/YJL4A5/sbhGddag+NPT7q084agLbB9LgIw= -github.com/aws/smithy-go v1.15.0/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA= -github.com/aws/smithy-go v1.17.0/go.mod h1:NukqUGpCZIILqqiV0NIjeFh24kd/FAa4beRb6nbIUPE= -github.com/aymerick/raymond v2.0.3-0.20180322193309-b565731e1464+incompatible/go.mod h1:osfaiScAUVup+UC9Nfq76eWqDhXlp+4UYaA8uhTBO6g= +github.com/aws/aws-sdk-go v1.25.48/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= -github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= +github.com/bits-and-blooms/bitset v1.5.0 h1:NpE8frKRLGHIcEzkR+gZhiioW1+WbYV6fKwD6ZIpQT8= github.com/bits-and-blooms/bitset v1.5.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= -github.com/bits-and-blooms/bitset v1.7.0 h1:YjAGVd3XmtK9ktAbX8Zg2g2PwLIMjGREZJHlV4j7NEo= -github.com/bits-and-blooms/bitset v1.7.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= -github.com/bmizerany/pat v0.0.0-20170815010413-6226ea591a40/go.mod h1:8rLXio+WjiTceGBHIoTvn60HIbs7Hm7bcHjyrSqYB9c= -github.com/boltdb/bolt v1.3.1/go.mod h1:clJnj/oiGkjum5o1McbSZDSLxVThjynRyGBgiAx27Ps= -github.com/boombuler/barcode v1.0.0/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= -github.com/boombuler/barcode v1.0.1/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= -github.com/btcsuite/btcd/btcec/v2 v2.2.0/go.mod h1:U7MHm051Al6XmscBQ0BoNydpOTsFAn707034b5nY8zU= +github.com/btcsuite/btcd v0.0.0-20171128150713-2e60448ffcc6/go.mod h1:Dmm/EzmjnCiweXmzRIAiUWCInVmPgjkzgv5k4tVyXiQ= github.com/btcsuite/btcd/btcec/v2 v2.2.1 h1:xP60mv8fvp+0khmrN0zTdPC3cNm24rfeE6lh2R/Yv3E= github.com/btcsuite/btcd/btcec/v2 v2.2.1/go.mod h1:9/CSmJxmuvqzX9Wh2fXMWToLOHhPd11lSPuIupwTkI8= -github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1/go.mod h1:7SFka0XMvUgj3hfZtydOrQY2mwhPclbT2snogU7SQQc= -github.com/bytecodealliance/wasmtime-go/v7 v7.0.0/go.mod h1:bu6fic7trDt20w+LMooX7j3fsOwv4/ln6j8gAdP6vmA= -github.com/c-bata/go-prompt v0.2.2/go.mod h1:VzqtzE2ksDBcdln8G7mk2RX9QyGjH+OVqOCSiVIqS34= -github.com/c-bata/go-prompt v0.2.6/go.mod h1:/LMAke8wD2FsNu9EXNdHxNLbd9MedkPnCdfpU9wwHfY= -github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/census-instrumentation/opencensus-proto v0.3.0/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/census-instrumentation/opencensus-proto v0.4.1/go.mod h1:4T9NM4+4Vw91VeyqjLS6ao50K5bOcLKN6Q42XnYaRYw= github.com/cespare/cp v0.1.0/go.mod h1:SOGHArjBr4JWaSDEVpWpo/hNg6RoKrls6Oh40hiwW+s= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= +github.com/cespare/xxhash/v2 v2.0.1-0.20190104013014-3767db7a7e18/go.mod h1:HD5P3vAIAh+Y2GAxg0PrPN1P8WkepXGpjbUPDHJqqKM= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= -github.com/chzyer/logex v1.2.0/go.mod h1:9+9sk7u7pGNWYMkh0hdiL++6OeibzJccyQU4p4MedaY= -github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= -github.com/chzyer/readline v1.5.0/go.mod h1:x22KAscuvRqlLoK9CsoYsmxoXZMMFVyOl86cAH8qUic= -github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= -github.com/chzyer/test v0.0.0-20210722231415-061457976a23/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= -github.com/cloudflare/cloudflare-go v0.14.0/go.mod h1:EnwdgGMaFOruiPZRFSgn+TsQ3hQ7C/YWzIGLeu5c304= -github.com/cloudflare/cloudflare-go v0.79.0/go.mod h1:gkHQf9xEubaQPEuerBuoinR9P8bf8a05Lq0X6WKy1Oc= -github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= -github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= -github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= -github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= -github.com/cncf/udpa/go v0.0.0-20220112060539-c52dc94e7fbe/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= -github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20210805033703-aa0b78936158/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211001041855-01bcc9b48dfe/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20220314180256-7f1daf1720fc/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20230105202645-06c439db220b/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20230310173818-32f1caf87195/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20230428030218-4003588d1b74/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20230607035331-e9ce68804cb4/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cockroachdb/datadriven v1.0.0/go.mod h1:5Ib8Meh+jk1RlHIXej6Pzevx/NLlNvQB9pmSBZErGA4= -github.com/cockroachdb/datadriven v1.0.3-0.20230413201302-be42291fc80f/go.mod h1:a9RdTaap04u637JoCzcUoIcDmvwSUtcUFtT/C3kJlTU= -github.com/cockroachdb/errors v1.6.1/go.mod h1:tm6FTP5G81vwJ5lC0SizQo374JNCOPrHyXGitRJoDqM= -github.com/cockroachdb/errors v1.8.1/go.mod h1:qGwQn6JmZ+oMjuLwjWzUNqblqk0xl4CVV3SQbGwK7Ac= -github.com/cockroachdb/logtags v0.0.0-20190617123548-eb05cc24525f/go.mod h1:i/u985jwjWRlyHXQbwatDASoW0RMlZ/3i9yJHE2xLkI= -github.com/cockroachdb/pebble v0.0.0-20230928194634-aa077af62593/go.mod h1:6hk1eMY/u5t+Cf18q5lFMUA1Rc+Sm5I6Ra1QuPyxXCo= -github.com/cockroachdb/redact v1.0.8/go.mod h1:BVNblN9mBWFyMyqK1k3AAiSxhvhfK2oOZZ2lK+dpvRg= -github.com/cockroachdb/sentry-go v0.6.1-cockroachdb.2/go.mod h1:8BT+cPK6xvFOcRlk0R8eg+OTkcqI6baNH4xAkpiYVvQ= -github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06/go.mod h1:7nc4anLGjupUW/PeY5qiNYsdNXj7zopG+eqsS7To5IQ= -github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0/go.mod h1:4Zcjuz89kmFXt9morQgcfYZAYZ5n8WHjt81YYWIwtTM= -github.com/consensys/bavard v0.1.8-0.20210406032232-f3452dc9b572/go.mod h1:Bpd0/3mZuaj6Sj+PqrmIquiOKy397AKGThQPaGzNXAQ= -github.com/consensys/bavard v0.1.13/go.mod h1:9ItSMtA/dXMAiL7BG6bqW2m3NdSEObYWoH223nGHukI= -github.com/consensys/gnark-crypto v0.4.1-0.20210426202927-39ac3d4b3f1f/go.mod h1:815PAHg3wvysy0SyIqanF8gZ0Y1wjk/hrDHD/iT88+Q= -github.com/consensys/gnark-crypto v0.10.0/go.mod h1:Iq/P3HHl0ElSjsg2E1gsMwhAyxnxoKK5nVyZKd+/KhU= -github.com/consensys/gnark-crypto v0.12.1/go.mod h1:v2Gy7L/4ZRosZ7Ivs+9SfUDr0f5UlG+EM5t7MPHiLuY= +github.com/cloudflare/cloudflare-go v0.10.2-0.20190916151808-a80f83b9add9/go.mod h1:1MxXX1Ux4x6mqPmjkUgTP1CdXIBXKX7T+Jk9Gxrmx+U= github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk= @@ -1095,650 +47,174 @@ github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7 github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= -github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= -github.com/crate-crypto/go-ipa v0.0.0-20230601170251-1830d0757c80/go.mod h1:gzbVz57IDJgQ9rLQwfSk696JGWof8ftznEL9GoAv3NI= -github.com/crate-crypto/go-kzg-4844 v0.7.0/go.mod h1:1kMhvPgI0Ky3yIa+9lFySEBUBXkYxeOi8ZF1sYioxhc= -github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= -github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= -github.com/cyberdelia/templates v0.0.0-20141128023046-ca7fffd4298c/go.mod h1:GyV+0YP4qX0UQ7r2MoYZ+AvYDp12OF5yg4q8rGnyNh4= -github.com/dave/astrid v0.0.0-20170323122508-8c2895878b14/go.mod h1:Sth2QfxfATb/nW4EsrSi2KyJmbcniZ8TgTaji17D6ms= -github.com/dave/brenda v1.1.0/go.mod h1:4wCUr6gSlu5/1Tk7akE5X7UorwiQ8Rij0SKH3/BGMOM= -github.com/dave/courtney v0.3.0/go.mod h1:BAv3hA06AYfNUjfjQr+5gc6vxeBVOupLqrColj+QSD8= -github.com/dave/dst v0.27.2/go.mod h1:jHh6EOibnHgcUW3WjKHisiooEkYwqpHLBSX1iOBhEyc= -github.com/dave/gopackages v0.0.0-20170318123100-46e7023ec56e/go.mod h1:i00+b/gKdIDIxuLDFob7ustLAVqhsZRk2qVZrArELGQ= -github.com/dave/jennifer v1.2.0/go.mod h1:fIb+770HOpJ2fmN9EPPKOqm1vMGhB+TwXKMZhrIygKg= -github.com/dave/jennifer v1.5.0/go.mod h1:4MnyiFIlZS3l5tSDn8VnzE6ffAhYBMB2SZntBsZGUok= -github.com/dave/kerr v0.0.0-20170318121727-bc25dd6abe8e/go.mod h1:qZqlPyPvfsDJt+3wHJ1EvSXDuVjFTK0j2p/ca+gtsb8= -github.com/dave/patsy v0.0.0-20210517141501-957256f50cba/go.mod h1:qfR88CgEGLoiqDaE+xxDCi5QA5v4vUoW0UCX2Nd5Tlc= -github.com/dave/rebecca v0.9.1/go.mod h1:N6XYdMD/OKw3lkF3ywh8Z6wPGuwNFDNtWYEMFWEmXBA= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/deckarep/golang-set v1.8.0/go.mod h1:5nI87KwE7wgsBU1F4GKAw2Qod7p5kyS383rP6+o6qqo= -github.com/deckarep/golang-set/v2 v2.1.0/go.mod h1:VAky9rY/yGXJOLEDv3OMci+7wtDpOF4IN+y82NBOac4= +github.com/deckarep/golang-set v0.0.0-20180603214616-504e848d77ea/go.mod h1:93vsz/8Wt4joVM7c2AVqh+YRMiUSc14yDtF28KmMOgQ= github.com/decred/dcrd/crypto/blake256 v1.0.0/go.mod h1:sQl2p6Y26YV+ZOcSTP6thNdn47hh8kt6rqSlvmrXFAc= -github.com/decred/dcrd/crypto/blake256 v1.0.1/go.mod h1:2OfgNZ5wDpcsFmHmCK5gZTPcCXqlm2ArzUIkw9czNJo= +github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 h1:YLtO71vCjJRCBcrPMtQ9nqBsqpA1m5sE92cU+pd5Mcc= github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1/go.mod h1:hyedUtir6IdtD/7lIxGeCxkaw7y45JueMRL4DIyJDKs= -github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 h1:8UrgZ3GkP4i/CLijOJx79Yu+etlyjdBU4sfcs2WYQMs= -github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0/go.mod h1:v57UDF4pDQJcEfFUCRop3lJL149eHGSe9Jvczhzjo/0= -github.com/deepmap/oapi-codegen v1.6.0/go.mod h1:ryDa9AgbELGeB+YEXE1dR53yAjHwFvE9iAUlWl9Al3M= -github.com/deepmap/oapi-codegen v1.8.2/go.mod h1:YLgSKSDv/bZQB7N4ws6luhozi3cEdRktEqrX88CvjIw= -github.com/dgraph-io/badger v1.6.0/go.mod h1:zwt7syl517jmP8s94KqSxTlM6IMsdhYy6psNgSztDR4= github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= -github.com/dgryski/go-bitstream v0.0.0-20180413035011-3522498ce2c8/go.mod h1:VMaSuZ+SZcx/wljOQKvp5srsbCiKDEb6K2wC4+PiBmQ= -github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2/go.mod h1:SqUrOPUnsFjfmXRMNPybcSiG0BgUW2AuFH8PAnS2iTw= github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= -github.com/dlclark/regexp2 v1.4.1-0.20201116162257-a2a8dda75c91/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc= -github.com/dlclark/regexp2 v1.7.0/go.mod h1:DHkYz0B9wPfa6wondMfaivmHpzrQ3v9q8cnmRbL6yW8= -github.com/dnaeon/go-vcr v1.1.0/go.mod h1:M7tiix8f0r6mKKJ3Yq/kqU1OYf3MnfmBWVbPx/yU9ko= -github.com/dnaeon/go-vcr v1.2.0/go.mod h1:R4UdLID7HZT3taECzJs4YgbbH6PIGXB6W/sc5OLb6RQ= -github.com/docker/docker v1.6.2/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= -github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= -github.com/dop251/goja v0.0.0-20211022113120-dc8c55024d06/go.mod h1:R9ET47fwRVRPZnOGvHxxhuZcbrMCuiqOz3Rlrh4KSnk= -github.com/dop251/goja v0.0.0-20220405120441-9037c2b61cbf/go.mod h1:R9ET47fwRVRPZnOGvHxxhuZcbrMCuiqOz3Rlrh4KSnk= -github.com/dop251/goja v0.0.0-20230806174421-c933cf95e127/go.mod h1:QMWlm50DNe14hD7t24KEqZuUdC9sOTy8W6XbCU1mlw4= -github.com/dop251/goja_nodejs v0.0.0-20210225215109-d91c329300e7/go.mod h1:hn7BA7c8pLvoGndExHudxTDKZ84Pyvv+90pbBjbTz0Y= -github.com/dop251/goja_nodejs v0.0.0-20211022123610-8dd9abb0616d/go.mod h1:DngW8aVqWbuLRMHItjPUyqdj+HWPvnQe8V8y1nDpIbM= -github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= -github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= -github.com/eclipse/paho.mqtt.golang v1.2.0/go.mod h1:H9keYFcgq3Qr5OUJm/JZI/i6U7joQ8SYLhZwfeOo6Ts= -github.com/edsrzf/mmap-go v1.0.0/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= -github.com/eknkc/amber v0.0.0-20171010120322-cdade1c07385/go.mod h1:0vRUJqYpeSZifjYj7uP3BG/gKcuzL9xWVV/Y+cK33KM= -github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= -github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= -github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= -github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= -github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= -github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= -github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= -github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0= -github.com/envoyproxy/go-control-plane v0.10.2-0.20220325020618-49ff273808a1/go.mod h1:KJwIaB5Mv44NWtYuAOFCVOjcI94vtpEz2JU/D2v6IjE= -github.com/envoyproxy/go-control-plane v0.10.3/go.mod h1:fJJn/j26vwOu972OllsvAgJJM//w9BV6Fxbg2LuVd34= -github.com/envoyproxy/go-control-plane v0.11.0/go.mod h1:VnHyVMpzcLvCFt9yUz1UnCwHLhwx1WguiVDV7pTG/tI= -github.com/envoyproxy/go-control-plane v0.11.1-0.20230524094728-9239064ad72f/go.mod h1:sfYdkwUW4BA3PbKjySwjJy+O4Pu0h62rlqCMHNk+K+Q= -github.com/envoyproxy/go-control-plane v0.11.1/go.mod h1:uhMcXKCQMEJHiAb0w+YGefQLaTEw+YhGluxZkrTmD0g= -github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= -github.com/envoyproxy/protoc-gen-validate v0.6.7/go.mod h1:dyJXwwfPK2VSqiB9Klm1J6romD608Ba7Hij42vrOBCo= -github.com/envoyproxy/protoc-gen-validate v0.9.1/go.mod h1:OKNgG7TCp5pF4d6XftA0++PMirau2/yoOwVac3AbF2w= -github.com/envoyproxy/protoc-gen-validate v0.10.0/go.mod h1:DRjgyB0I43LtJapqN6NiRwroiAU2PaFuvk/vjgh61ss= -github.com/envoyproxy/protoc-gen-validate v0.10.1/go.mod h1:DRjgyB0I43LtJapqN6NiRwroiAU2PaFuvk/vjgh61ss= -github.com/envoyproxy/protoc-gen-validate v1.0.1/go.mod h1:0vj8bNkYbSTNS2PIyH87KZaeN4x9zpL9Qt8fQC7d+vs= -github.com/envoyproxy/protoc-gen-validate v1.0.2/go.mod h1:GpiZQP3dDbg4JouG/NNS7QWXpgx6x8QiMKdmN72jogE= -github.com/etcd-io/bbolt v1.3.3/go.mod h1:ZF2nL25h33cCyBtcyWeZ2/I3HQOfTP+0PIEvHjkjCrw= -github.com/ethereum/c-kzg-4844 v0.4.0/go.mod h1:VewdlzQmpT5QSrVhbBuGoCdFJkpaJlO1aQputP83wc0= -github.com/ethereum/go-ethereum v1.10.26/go.mod h1:EYFyF19u3ezGLD4RqOkLq+ZCXzYbLoNDdZlMt7kyKFg= -github.com/ethereum/go-ethereum v1.13.5 h1:U6TCRciCqZRe4FPXmy1sMGxTfuk8P7u2UoinF3VbaFk= -github.com/ethereum/go-ethereum v1.13.5/go.mod h1:yMTu38GSuyxaYzQMViqNmQ1s3cE84abZexQmTgenWk0= -github.com/fasthttp-contrib/websocket v0.0.0-20160511215533-1f3b11f56072/go.mod h1:duJ4Jxv5lDcvg4QuQr0oowTf7dz4/CR8NtyCooz9HL8= -github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= -github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk= -github.com/fatih/structs v1.1.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga6PJ7M= -github.com/fjl/gencodec v0.0.0-20220412091415-8bb9e558978c/go.mod h1:AzA8Lj6YtixmJWL+wkKoBGsLWy9gFrAzi4g+5bCKwpY= -github.com/fjl/gencodec v0.0.0-20230517082657-f9840df7b83e/go.mod h1:AzA8Lj6YtixmJWL+wkKoBGsLWy9gFrAzi4g+5bCKwpY= -github.com/fjl/memsize v0.0.0-20190710130421-bcb5799ab5e5/go.mod h1:VvhXpOYNQvB+uIk2RvXzuaQtkQJzzIx6lSBe1xv7hi0= -github.com/flosch/pongo2 v0.0.0-20190707114632-bbf5a6c351f4/go.mod h1:T9YF2M40nIgbVgp3rreNmTged+9HrbNTIQf1PsaIiTA= -github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= -github.com/fogleman/gg v1.3.0/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= +github.com/dlclark/regexp2 v1.2.0/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc= +github.com/docker/docker v1.4.2-0.20180625184442-8e610b2b55bf/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= +github.com/dop251/goja v0.0.0-20200219165308-d1232e640a87/go.mod h1:Mw6PkjjMXWbTj+nnj4s3QPXq1jaT0s5pC0iFD4+BOAA= +github.com/edsrzf/mmap-go v0.0.0-20160512033002-935e0e8a636c/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= +github.com/elastic/gosigar v0.8.1-0.20180330100440-37f05ff46ffa/go.mod h1:cdorVVzy1fhmEqmtgqkoE3bYtCfSCkVyjTyCIo22xvs= +github.com/ethereum/go-ethereum v1.9.13 h1:rOPqjSngvs1VSYH2H+PMPiWt4VEulvNRbFgqiGqJM3E= +github.com/ethereum/go-ethereum v1.9.13/go.mod h1:qwN9d1GLyDh0N7Ab8bMGd0H9knaji2jOBm2RrMGjXls= +github.com/fatih/color v1.3.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= +github.com/fjl/memsize v0.0.0-20180418122429-ca190fb6ffbc/go.mod h1:VvhXpOYNQvB+uIk2RvXzuaQtkQJzzIx6lSBe1xv7hi0= +github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= -github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= -github.com/fsnotify/fsnotify v1.6.0 h1:n+5WquG0fcWoWp6xPWfHdbskMCQaFnG6PfBrh1Ky4HY= -github.com/fsnotify/fsnotify v1.6.0/go.mod h1:sl3t1tCWJFWoRz9R8WJCbQihKKwmorjAbSClcnxKAGw= -github.com/fxamacker/cbor/v2 v2.4.1-0.20220515183430-ad2eae63303f/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c h1:5tm/Wbs9d9r+qZaUFXk59CWDD0+77PBqDREffYkyi5c= github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= github.com/fxamacker/circlehash v0.3.0 h1:XKdvTtIJV9t7DDUtsf0RIpC1OcxZtPbmgIH7ekx28WA= github.com/fxamacker/circlehash v0.3.0/go.mod h1:3aq3OfVvsWtkWMb6A1owjOQFA+TLsD5FgJflnaQwtMM= -github.com/garslo/gogen v0.0.0-20170306192744-1d203ffc1f61/go.mod h1:Q0X6pkwTILDlzrGEckF6HKjXe48EgsY/l7K7vhY4MW8= -github.com/gavv/httpexpect v2.0.0+incompatible/go.mod h1:x+9tiU1YnrOvnB725RkpoLv1M62hOWzwo5OXotisrKc= github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff/go.mod h1:x7DCsMOv1taUwEWCzT4cmDeAkigA5/QCwUodaVOe8Ww= -github.com/gballet/go-verkle v0.0.0-20230607174250-df487255f46b/go.mod h1:CDncRYVRSDqwakm282WEkjfaAj1hxU/v5RXxk5nXOiI= -github.com/getkin/kin-openapi v0.53.0/go.mod h1:7Yn5whZr5kJi6t+kShccXS8ae1APpYTW6yheSwk8Yi4= -github.com/getkin/kin-openapi v0.61.0/go.mod h1:7Yn5whZr5kJi6t+kShccXS8ae1APpYTW6yheSwk8Yi4= -github.com/ghemawat/stream v0.0.0-20171120220530-696b145b53b9/go.mod h1:106OIgooyS7OzLDOpUGgm9fA3bQENb/cFSyyBmMoJDs= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= -github.com/gin-contrib/sse v0.0.0-20190301062529-5545eab6dad3/go.mod h1:VJ0WA2NBN22VlZ2dKZQPAPnyWw5XTlK1KymzLKsr59s= -github.com/gin-gonic/gin v1.4.0/go.mod h1:OW2EZn3DO8Ln9oIKOvM++LBO+5UPHJJDH72/q/3rZdM= -github.com/glycerine/go-unsnap-stream v0.0.0-20180323001048-9f0cb55181dd/go.mod h1:/20jfyN9Y5QPEAprSgKAUr+glWDY39ZiUEAYOEv5dsE= -github.com/glycerine/goconvey v0.0.0-20190410193231-58a59202ab31/go.mod h1:Ogl1Tioa0aV7gstGFO7KhffUsb9M4ydbEbbxpcEDc24= -github.com/go-check/check v0.0.0-20180628173108-788fd7840127/go.mod h1:9ES+weclKsC9YodN5RgxqK/VD9HM9JsCSh7rNhMZE98= -github.com/go-chi/chi/v5 v5.0.0/go.mod h1:BBug9lr0cqtdAhsu6R4AAdvufI0/XBzAQSsUqJpoZOs= -github.com/go-errors/errors v1.0.1/go.mod h1:f4zRHt4oKfwPJE5k8C9vpYG+aDHdBFUsgrm6/TyX73Q= -github.com/go-fonts/dejavu v0.1.0/go.mod h1:4Wt4I4OU2Nq9asgDCteaAaWZOV24E+0/Pwo0gppep4g= -github.com/go-fonts/latin-modern v0.2.0/go.mod h1:rQVLdDMK+mK1xscDwsqM5J8U2jrRa3T0ecnM9pNujks= -github.com/go-fonts/latin-modern v0.3.0/go.mod h1:ysEQXnuT/sCDOAONxC7ImeEDVINbltClhasMAqEtRK0= -github.com/go-fonts/liberation v0.1.1/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= -github.com/go-fonts/liberation v0.2.0/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= -github.com/go-fonts/liberation v0.3.0/go.mod h1:jdJ+cqF+F4SUL2V+qxBth8fvBpBDS7yloUL5Fi8GTGY= -github.com/go-fonts/stix v0.1.0/go.mod h1:w/c1f0ldAUlJmLBvlbkvVXLAD+tAMqobIIQpmnUIzUY= -github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= -github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= -github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= -github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= -github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY= -github.com/go-latex/latex v0.0.0-20210118124228-b3d85cf34e07/go.mod h1:CO1AlKB2CSIqUrmQPqA0gdRIlnLEY0gK5JGjh37zN5U= -github.com/go-latex/latex v0.0.0-20210823091927-c0d11ff05a81/go.mod h1:SX0U8uGpxhq9o2S/CELCSUxEWWAuoCUcVCQWv7G2OCk= -github.com/go-latex/latex v0.0.0-20230307184459-12ec69307ad9/go.mod h1:gWuR/CrFDDeVRFQwHPvsv9soJVB/iqymhuZQuJ3a9OM= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= -github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= -github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= -github.com/go-logr/logr v1.2.3/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= -github.com/go-logr/logr v1.2.4/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= -github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= -github.com/go-martini/martini v0.0.0-20170121215854-22fa46961aab/go.mod h1:/P9AEU963A2AYjv4d1V5eVL1CQbEJq6aCNHDDjibzu8= github.com/go-ole/go-ole v1.2.1/go.mod h1:7FAglXiTm7HKlQRDeOQ6ZNUHidzCWXuZWq/1dTyBNF8= -github.com/go-ole/go-ole v1.2.5/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0= -github.com/go-openapi/jsonpointer v0.19.5/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= -github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= -github.com/go-pdf/fpdf v0.5.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= -github.com/go-pdf/fpdf v0.6.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= -github.com/go-sourcemap/sourcemap v2.1.3+incompatible/go.mod h1:F8jJfvm2KbVjc5NqelyYJmf/v5J0dwNLS2mL4sNA1Jg= -github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= +github.com/go-sourcemap/sourcemap v2.1.2+incompatible/go.mod h1:F8jJfvm2KbVjc5NqelyYJmf/v5J0dwNLS2mL4sNA1Jg= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= -github.com/go-stack/stack v1.8.1/go.mod h1:dcoOX6HbPZSZptuspn9bctJ+N/CnF5gGygcUP3XYfe4= -github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee/go.mod h1:L0fX3K22YWvt/FAX9NnzrNzcI4wNYi9Yku4O0LKYflo= -github.com/gobwas/pool v0.2.0/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6WezmKEw= -github.com/gobwas/ws v1.0.2/go.mod h1:szmBTxLgaFppYjEmNtny/v3w89xOydFnnZMcgRRu/EM= -github.com/goccy/go-json v0.9.11/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= -github.com/goccy/go-json v0.10.2/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= -github.com/gofrs/flock v0.8.1/go.mod h1:F1TvTiK9OcQqauNUHlbJvyl9Qa1QvF/gOUDKA14jxHU= -github.com/gofrs/uuid v3.3.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= -github.com/gogo/googleapis v0.0.0-20180223154316-0cd9801be74a/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s= +github.com/go-test/deep v1.1.0 h1:WOcxcdHcvdgThNXjw0t76K42FXTU7HpNQWHpA2HHNlg= +github.com/go-test/deep v1.1.0/go.mod h1:5C2ZWiW0ErCdrYzpqxLbTX7MG14M9iiw8DgHncVwcsE= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= -github.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= -github.com/gogo/protobuf v1.3.1/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= -github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= -github.com/gogo/status v1.1.0/go.mod h1:BFv9nrluPLmrS0EmGVvLaPNmRosr9KapBYd5/hpY1WM= -github.com/golang-jwt/jwt v3.2.1+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I= -github.com/golang-jwt/jwt/v4 v4.2.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= -github.com/golang-jwt/jwt/v4 v4.3.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= -github.com/golang-jwt/jwt/v4 v4.4.3/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0= -github.com/golang-jwt/jwt/v4 v4.5.0/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0= -github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= -github.com/golang/geo v0.0.0-20190916061304-5b978397cfec/go.mod h1:QZ0nwyI2jOfgRAoBvP+ab5aRr7c9x7lhGEJrKvBwjWI= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4= -github.com/golang/glog v1.1.0/go.mod h1:pfYeQZ3JWZoXTV5sFc986z3HTpwQs9At6P4ImfuP3NQ= -github.com/golang/glog v1.1.2/go.mod h1:zR+okUeTbrL6EL3xHUDxZuEtGv04p5shwip1+mL/rLQ= github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= -github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= -github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= -github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= -github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= -github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= -github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= -github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= -github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= -github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk= -github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= -github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= -github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= -github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= -github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= -github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= -github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= -github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= -github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= -github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= -github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= -github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= -github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= -github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/golangci/lint-1 v0.0.0-20181222135242-d2cdd8c08219/go.mod h1:/X8TswGSh1pIozq4ZwCfxS0WA5JGXguxk94ar/4c87Y= -github.com/gomodule/redigo v1.7.1-0.20190724094224-574c33c3df38/go.mod h1:B4C85qUVwatsJoIUNIfCRsp7qO0iAmpGFZ4EELWSbC4= -github.com/gonum/blas v0.0.0-20181208220705-f22b278b28ac/go.mod h1:P32wAyui1PQ58Oce/KYkOqQv8cVw1zAapXOl+dRFGbc= -github.com/gonum/floats v0.0.0-20181209220543-c233463c7e82/go.mod h1:PxC8OnwL11+aosOB5+iEPoV3picfs8tUpkVd0pDo+Kg= -github.com/gonum/internal v0.0.0-20181124074243-f884aa714029/go.mod h1:Pu4dmpkhSyOzRwuXkOgAvijx4o+4YMUJJo9OvPYMkks= -github.com/gonum/lapack v0.0.0-20181123203213-e4cdc5a0bff9/go.mod h1:XA3DeT6rxh2EAE789SSiSJNqxPaC0aE9J8NTOI0Jo/A= -github.com/gonum/matrix v0.0.0-20181209220409-c518dec07be9/go.mod h1:0EXg4mc1CNP0HCqCz+K4ts155PXIlUywf0wqN+GfPZw= -github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= +github.com/golang/protobuf v1.3.2-0.20190517061210-b285ee9cfc6c/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= -github.com/google/flatbuffers v1.11.0/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= -github.com/google/flatbuffers v2.0.8+incompatible/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= -github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= -github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE= -github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= -github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/google/go-pkcs11 v0.2.0/go.mod h1:6eQoGcuNJpa7jnd5pMGdkSaQpNDYvPlXWMcjXXThLlY= -github.com/google/go-pkcs11 v0.2.1-0.20230907215043-c6f79328ddf9/go.mod h1:6eQoGcuNJpa7jnd5pMGdkSaQpNDYvPlXWMcjXXThLlY= -github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck= -github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU= -github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= -github.com/google/gofuzz v1.1.1-0.20200604201612-c04b05f3adfa/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= -github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= -github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.2.1/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= -github.com/google/martian/v3 v3.3.2/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= -github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= -github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= -github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= -github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20230207041349-798e818bf904/go.mod h1:uglQLonpP8qtYCYyzA+8c/9qtqgA3qsXGYqCPKARAFg= -github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= -github.com/google/s2a-go v0.1.0/go.mod h1:OJpEgntRZo8ugHpF9hkoLJbS5dSI20XZeXJ9JVywLlM= -github.com/google/s2a-go v0.1.3/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A= -github.com/google/s2a-go v0.1.4/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A= -github.com/google/s2a-go v0.1.7/go.mod h1:50CgR4k1jNlWBu4UfS4AcfhVe1r6pdZPygJ3R8F0Qdw= -github.com/google/safehtml v0.0.2/go.mod h1:L4KWwDsUJdECRAEpZoBn3O64bQaywRscowZjJAzjHnU= -github.com/google/subcommands v1.2.0/go.mod h1:ZjhPrFU+Olkh9WazFPsl27BQ4UPiG37m3yTrtFlrHVk= -github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.2.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.3.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.4.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/googleapis/enterprise-certificate-proxy v0.0.0-20220520183353-fd19c99a87aa/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= -github.com/googleapis/enterprise-certificate-proxy v0.1.0/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= -github.com/googleapis/enterprise-certificate-proxy v0.2.0/go.mod h1:8C0jb7/mgJe/9KK8Lm7X9ctZC2t60YyIpYEI16jx0Qg= -github.com/googleapis/enterprise-certificate-proxy v0.2.1/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= -github.com/googleapis/enterprise-certificate-proxy v0.2.3/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= -github.com/googleapis/enterprise-certificate-proxy v0.2.4/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= -github.com/googleapis/enterprise-certificate-proxy v0.2.5/go.mod h1:RxW0N9901Cko1VOCW3SXCpWP+mlIEkk2tP7jnHy9a3w= -github.com/googleapis/enterprise-certificate-proxy v0.3.2/go.mod h1:VLSiSSBs/ksPL8kq3OBOQ6WRI2QnaFynd1DCjZ62+V0= -github.com/googleapis/gax-go v0.0.0-20161107002406-da06d194a00e/go.mod h1:SFVmujtThgffbyetf+mdk2eWhX2bMyUtNHzFKcPA9HY= -github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= -github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= -github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= -github.com/googleapis/gax-go/v2 v2.1.1/go.mod h1:hddJymUZASv3XPyGkUpKj8pPO47Rmb0eJc8R6ouapiM= -github.com/googleapis/gax-go/v2 v2.2.0/go.mod h1:as02EH8zWkzwUoLbBaFeQ+arQaj/OthfcblKl4IGNaM= -github.com/googleapis/gax-go/v2 v2.3.0/go.mod h1:b8LNqSzNabLiUpXKkY7HAR5jr6bIT99EXz9pXxye9YM= -github.com/googleapis/gax-go/v2 v2.4.0/go.mod h1:XOTVJ59hdnfJLIP/dh8n5CGryZR2LxK9wbMD5+iXC6c= -github.com/googleapis/gax-go/v2 v2.5.1/go.mod h1:h6B0KMMFNtI2ddbGJn3T3ZbwkeT6yqEF02fYlzkUCyo= -github.com/googleapis/gax-go/v2 v2.6.0/go.mod h1:1mjbznJAPHFpesgE5ucqfYEscaz5kMdcIDwU/6+DDoY= -github.com/googleapis/gax-go/v2 v2.7.0/go.mod h1:TEop28CZZQ2y+c0VxMUmu1lV+fQx57QpBWsYpwqHJx8= -github.com/googleapis/gax-go/v2 v2.7.1/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= -github.com/googleapis/gax-go/v2 v2.8.0/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= -github.com/googleapis/gax-go/v2 v2.10.0/go.mod h1:4UOEnMCrxsSqQ940WnTiD6qJ63le2ev3xfyagutxiPw= -github.com/googleapis/gax-go/v2 v2.11.0/go.mod h1:DxmR61SGKkGLa2xigwuZIQpkCI2S5iydzRfb3peWZJI= -github.com/googleapis/gax-go/v2 v2.12.0/go.mod h1:y+aIqrI5eb1YGMVJfuV3185Ts/D7qKpsEkdD5+I6QGU= -github.com/googleapis/go-type-adapters v1.0.0/go.mod h1:zHW75FOG2aur7gAO2B+MLby+cLsWGBF62rFAi7WjWO4= -github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= -github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= -github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= +github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= -github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= -github.com/graph-gophers/graphql-go v1.3.0/go.mod h1:9CQHMSxwO4MprSdzoIEobiHpoLtHm77vfxsvsIN5Vuc= +github.com/gorilla/websocket v1.4.1-0.20190629185528-ae1634f6a989/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= +github.com/graph-gophers/graphql-go v0.0.0-20191115155744-f33e81362277/go.mod h1:9CQHMSxwO4MprSdzoIEobiHpoLtHm77vfxsvsIN5Vuc= github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= -github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0/go.mod h1:hgWBS7lorOAVIJEQMi4ZsPv9hVvWI6+ch50m39Pf2Ks= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3/go.mod h1:o//XUCC/F+yRGJoPO/VU0GSB0f8Nhgmxx0VIRUvaC0w= -github.com/guptarohit/asciigraph v0.5.5/go.mod h1:dYl5wwK4gNsnFf9Zp+l06rFiDZ5YtXM6x7SRWZ3KGag= -github.com/hashicorp/go-bexpr v0.1.10/go.mod h1:oxlubA2vC/gFVfX1A6JGp7ls7uCDlfJn732ehYYg+g0= -github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= -github.com/hashicorp/go-hclog v0.9.2/go.mod h1:5CU+agLiy3J7N7QjHK5d05KxGsuXiQLrjA0H7acj2lQ= -github.com/hashicorp/go-hclog v1.2.0/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ= -github.com/hashicorp/go-retryablehttp v0.7.4/go.mod h1:Jy/gPYAdjqffZ/yFGCFV2doI5wjtH1ewM9u8iYVjtX8= -github.com/hashicorp/go-version v1.2.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= -github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= -github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= -github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= +github.com/hashicorp/golang-lru v0.0.0-20160813221303-0a025b7e63ad/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= -github.com/holiman/billy v0.0.0-20230718173358-1c7e68d277a7/go.mod h1:5GuXa7vkL8u9FkFuWdVvfR5ix8hRB7DbOAaYULamFpc= -github.com/holiman/bloomfilter/v2 v2.0.3/go.mod h1:zpoh+gs7qcpqrHr3dB55AMiJwo0iURXE7ZOP9L9hSkA= -github.com/holiman/uint256 v1.2.0/go.mod h1:y4ga/t+u+Xwd7CpDgZESaRcWy0I7XMlTMA25ApIH5Jw= -github.com/holiman/uint256 v1.2.3 h1:K8UWO1HUJpRMXBxbmaY1Y8IAMZC/RsKB+ArEnnK4l5o= -github.com/holiman/uint256 v1.2.3/go.mod h1:SC8Ryt4n+UBbPbIBKaG9zbbDlp4jOru9xFZmPzLUTxw= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= -github.com/huin/goupnp v1.0.3/go.mod h1:ZxNlw5WqJj6wSsRK5+YfflQGXYfccj5VgQsMNixHM7Y= -github.com/huin/goupnp v1.3.0/go.mod h1:gnGPsThkYa7bFi/KWmEysQRf48l2dvR5bxr2OFckNX8= -github.com/huin/goutil v0.0.0-20170803182201-1ca381bf3150/go.mod h1:PpLOETDnJ0o3iZrZfqZzyLl6l7F3c6L1oWn7OICBi6o= -github.com/hydrogen18/memlistener v0.0.0-20141126152155-54553eb933fb/go.mod h1:qEIFzExnS6016fRpRfxrExeVn2gbClQA99gQhnIcdhE= -github.com/iancoleman/strcase v0.2.0/go.mod h1:iwCmte+B7n89clKwxIoIXy/HfoL7AsD47ZCWhYzw7ho= -github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= -github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= -github.com/ianlancetaylor/demangle v0.0.0-20220319035150-800ac71e25c2/go.mod h1:aYm2/VgdVmcIU8iMfdMvDMsRAQjcfZSKFby6HOFvi/w= -github.com/imkira/go-interpol v1.1.0/go.mod h1:z0h2/2T3XF8kyEPpRgJ3kmNv+C43p+I/CoI+jC3w2iA= +github.com/huin/goupnp v0.0.0-20161224104101-679507af18f3/go.mod h1:MZ2ZmwcBpvOoJ22IJsc7va19ZwoheaBk43rKg12SKag= github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM= github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= -github.com/influxdata/flux v0.65.1/go.mod h1:J754/zds0vvpfwuq7Gc2wRdVwEodfpCFM7mYlOw2LqY= -github.com/influxdata/influxdb v1.8.3/go.mod h1:JugdFhsvvI8gadxOI6noqNeeBHvWNTbfYGtiAn+2jhI= -github.com/influxdata/influxdb-client-go/v2 v2.4.0/go.mod h1:vLNHdxTJkIf2mSLvGrpj8TCcISApPoXkaxP8g9uRlW8= -github.com/influxdata/influxdb1-client v0.0.0-20220302092344-a9ab5670611c/go.mod h1:qj24IKcXYK6Iy9ceXlo3Tc+vtHo9lIhSX5JddghvEPo= -github.com/influxdata/influxql v1.1.1-0.20200828144457-65d3ef77d385/go.mod h1:gHp9y86a/pxhjJ+zMjNXiQAA197Xk9wLxaz+fGG+kWk= -github.com/influxdata/line-protocol v0.0.0-20180522152040-32c6aa80de5e/go.mod h1:4kt73NQhadE3daL3WhR5EJ/J2ocX0PZzwxQ0gXJ7oFE= -github.com/influxdata/line-protocol v0.0.0-20200327222509-2487e7298839/go.mod h1:xaLFMmpvUxqXtVkUJfg9QmT88cDaCJ3ZKgdZ78oO8Qo= -github.com/influxdata/line-protocol v0.0.0-20210311194329-9aa0e372d097/go.mod h1:xaLFMmpvUxqXtVkUJfg9QmT88cDaCJ3ZKgdZ78oO8Qo= -github.com/influxdata/promql/v2 v2.12.0/go.mod h1:fxOPu+DY0bqCTCECchSRtWfc+0X19ybifQhZoQNF5D8= -github.com/influxdata/roaring v0.4.13-0.20180809181101-fc520f41fab6/go.mod h1:bSgUQ7q5ZLSO+bKBGqJiCBGAl+9DxyW63zLTujjUlOE= -github.com/influxdata/tdigest v0.0.0-20181121200506-bf2b5ad3c0a9/go.mod h1:Js0mqiSBE6Ffsg94weZZ2c+v/ciT8QRHFOap7EKDrR0= -github.com/influxdata/usage-client v0.0.0-20160829180054-6d3895376368/go.mod h1:Wbbw6tYNvwa5dlB6304Sd+82Z3f7PmVZHVKU637d4po= -github.com/iris-contrib/blackfriday v2.0.0+incompatible/go.mod h1:UzZ2bDEoaSGPbkg6SAB4att1aAwTmVIx/5gCVqeyUdI= -github.com/iris-contrib/go.uuid v2.0.0+incompatible/go.mod h1:iz2lgM/1UnEf1kP0L/+fafWORmlnuysV2EMP8MW+qe0= -github.com/iris-contrib/i18n v0.0.0-20171121225848-987a633949d0/go.mod h1:pMCz62A0xJL6I+umB2YTlFRwWXaDFA0jy+5HzGiJjqI= -github.com/iris-contrib/schema v0.0.1/go.mod h1:urYA3uvUNG1TIIjOSCzHr9/LmbQo8LrOcOqfqxa4hXw= -github.com/jackpal/go-nat-pmp v1.0.2/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc= -github.com/jedisct1/go-minisign v0.0.0-20190909160543-45766022959e/go.mod h1:G1CVv03EnqU1wYL2dFwXxW2An0az9JTl/ZsqXQeBlkU= -github.com/jedisct1/go-minisign v0.0.0-20230811132847-661be99b8267/go.mod h1:h1nSAbGFqGVzn6Jyl1R/iCcBUHN4g+gW1u9CoBTrb9E= -github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= -github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= +github.com/influxdata/influxdb v1.2.3-0.20180221223340-01288bdb0883/go.mod h1:qZna6X/4elxqT3yI9iZYdZrWWdeFOOprn86kgg4+IzY= +github.com/jackpal/go-nat-pmp v1.0.2-0.20160603034137-1fa385a6f458/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc= +github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= -github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= -github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= -github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= -github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= -github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= -github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= -github.com/jsternberg/zap-logfmt v1.0.0/go.mod h1:uvPs/4X51zdkcm5jXl5SYoN+4RK21K8mysFmDaM/h+o= -github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= -github.com/juju/errors v0.0.0-20181118221551-089d3ea4e4d5/go.mod h1:W54LbzXuIE0boCoNJfwqpmkKJ1O4TCTZMetAt6jGk7Q= -github.com/juju/loggo v0.0.0-20180524022052-584905176618/go.mod h1:vgyd7OREkbtVEN/8IXZe5Ooef3LQePvuBm9UWj6ZL8U= -github.com/juju/testing v0.0.0-20180920084828-472a3e8b2073/go.mod h1:63prj8cnj0tU0S9OHjGJn+b1h0ZghCndfnbQolrYTwA= +github.com/julienschmidt/httprouter v1.1.1-0.20170430222011-975b5c4c7c21/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= -github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= -github.com/jung-kurt/gofpdf v1.0.0/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= -github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= -github.com/jwilder/encoding v0.0.0-20170811194829-b4e1701a28ef/go.mod h1:Ct9fl0F6iIOGgxJ5npU/IUOhOhqlVrGjyIZc8/MagT0= -github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 h1:uC1QfSlInpQF+M0ao65imhwqKnz3Q2z/d8PWZRMQvDM= -github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88/go.mod h1:3w7q1U84EfirKl04SVQ/s7nPm1ZPhiXd34z40TNz36k= -github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213/go.mod h1:vNUNkEQ1e29fT/6vq2aBdFsgNPmy8qMdSay1npru+Sw= github.com/k0kubun/pp v3.0.1+incompatible h1:3tqvf7QgUnZ5tXO6pNAZlrvHgl6DvifjDrd9g2S9Z40= github.com/k0kubun/pp v3.0.1+incompatible/go.mod h1:GWse8YhT0p8pT4ir3ZgBbfZild3tgzSScAn6HmfYukg= -github.com/k0kubun/pp/v3 v3.2.0/go.mod h1:ODtJQbQcIRfAD3N+theGCV1m/CBxweERz2dapdz1EwA= -github.com/karalabe/usb v0.0.2/go.mod h1:Od972xHfMJowv7NGVDiWVxk2zxnWgjLlJzE+F4F7AGU= -github.com/kataras/golog v0.0.9/go.mod h1:12HJgwBIZFNGL0EJnMRhmvGA0PQGx8VFwrZtM4CqbAk= -github.com/kataras/iris/v12 v12.0.1/go.mod h1:udK4vLQKkdDqMGJJVd/msuMtN6hpYJhg/lSzuxjhO+U= -github.com/kataras/neffos v0.0.10/go.mod h1:ZYmJC07hQPW67eKuzlfY7SO3bC0mw83A3j6im82hfqw= -github.com/kataras/pio v0.0.0-20190103105442-ea782b38602d/go.mod h1:NV88laa9UiiDuX9AhMbDPkGYSPugBOV6yTZB1l2K9Z0= -github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8= +github.com/karalabe/usb v0.0.0-20190919080040-51dc0efba356/go.mod h1:Od972xHfMJowv7NGVDiWVxk2zxnWgjLlJzE+F4F7AGU= +github.com/kevinburke/go-bindata v3.23.0+incompatible h1:rqNOXZlqrYhMVVAsQx8wuc+LaA73YcfbQ407wAykyS8= github.com/kevinburke/go-bindata v3.23.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= github.com/kevinburke/go-bindata v3.24.0+incompatible h1:qajFA3D0pH94OTLU4zcCCKCDgR+Zr2cZK/RPJHDdFoY= github.com/kevinburke/go-bindata v3.24.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= -github.com/kilic/bls12-381 v0.1.0/go.mod h1:vDTTHJONJ6G+P2R74EhnyotQDTliQDnFEwhdmfzw1ig= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= -github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00= -github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= -github.com/klauspost/asmfmt v1.3.2/go.mod h1:AG8TuvYojzulgDAMCnYn50l/5QV3Bs/tp6j0HLHbNSE= -github.com/klauspost/compress v1.4.0/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= -github.com/klauspost/compress v1.8.2/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= -github.com/klauspost/compress v1.9.0/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= -github.com/klauspost/compress v1.15.9/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHUDtV4Yw2GlzU= -github.com/klauspost/compress v1.15.15/go.mod h1:ZcK2JAFqKOpnBlxcLsJzYfrS9X1akm9fHZNnD9+Vo/4= -github.com/klauspost/cpuid v0.0.0-20170728055534-ae7887de9fa5/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= -github.com/klauspost/cpuid v1.2.1/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= -github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= github.com/klauspost/cpuid/v2 v2.0.12/go.mod h1:g2LTdtYhdyuGPqyWyv7qRAmj1WBqxuObKfj5c0PQa7c= -github.com/klauspost/cpuid/v2 v2.2.0/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY= -github.com/klauspost/cpuid/v2 v2.2.5 h1:0E5MSMDEoAulmXNFquVs//DdoomxaoTY1kUhbc/qbZg= -github.com/klauspost/cpuid/v2 v2.2.5/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= -github.com/klauspost/crc32 v0.0.0-20161016154125-cb6bfca970f6/go.mod h1:+ZoRqAPRLkC4NPOvfYeR5KNOrY6TD+/sAC3HXPZgDYg= -github.com/klauspost/pgzip v1.0.2-0.20170402124221-0bf5dcad4ada/go.mod h1:Ch1tH69qFZu15pkjo5kYi6mth2Zzwzt50oCQKQE9RUs= +github.com/klauspost/cpuid/v2 v2.2.4 h1:acbojRNwl3o09bUq+yDCtZFc1aiwaAAxtcn8YkZXnvk= +github.com/klauspost/cpuid/v2 v2.2.4/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY= +github.com/konsorten/go-windows-terminal-sequences v1.0.1 h1:mweAR1A6xJ3oS2pRaGiHgQ4OO8tzTaLawm8vnODuwDk= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= +github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= -github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= -github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk= -github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= -github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= -github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= -github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= -github.com/kylelemons/godebug v0.0.0-20170224010052-a616ab194758/go.mod h1:B69LEHPfb2qLo0BaaOLcbitczOKLWTsrBG9LczfCD4k= github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= -github.com/labstack/echo/v4 v4.1.11/go.mod h1:i541M3Fj6f76NZtHSj7TXnyM8n2gaodfvfxNnFqi74g= -github.com/labstack/echo/v4 v4.2.1/go.mod h1:AA49e0DZ8kk5jTOOCKNuPR6oTnBS0dYiM4FW1e6jwpg= -github.com/labstack/gommon v0.3.0/go.mod h1:MULnywXg0yavhxWKc+lOruYdAhDwPK9wf0OL7NoOu+k= github.com/leanovate/gopter v0.2.9 h1:fQjYxZaynp97ozCzfOyOuAGOU4aU/z37zf/tOujFk7c= -github.com/leanovate/gopter v0.2.9/go.mod h1:U2L/78B+KVFIx2VmW6onHJQzXtFb+p5y3y2Sh+Jxxv8= -github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/logrusorgru/aurora/v4 v4.0.0 h1:sRjfPpun/63iADiSvGGjgA1cAYegEWMPCJdUpJYn9JA= github.com/logrusorgru/aurora/v4 v4.0.0/go.mod h1:lP0iIa2nrnT/qoFXcOZSrZQpJ1o6n2CUf/hyHi2Q4ZQ= -github.com/lyft/protoc-gen-star v0.6.0/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= -github.com/lyft/protoc-gen-star v0.6.1/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= -github.com/lyft/protoc-gen-star/v2 v2.0.1/go.mod h1:RcCdONR2ScXaYnQC5tUzxzlpA3WVYF7/opLeUgcQs/o= -github.com/lyft/protoc-gen-star/v2 v2.0.3/go.mod h1:amey7yeodaJhXSbf/TlLvWiqQfLOSpEk//mLlc+axEk= github.com/magiconair/properties v1.8.0 h1:LLgXmsheXeRoUOBOjtwPQCWIYqM/LU1ayDtDePerRcY= github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= -github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= -github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= -github.com/matryer/moq v0.0.0-20190312154309-6cfb0558e1bd/go.mod h1:9ELz6aaclSIGnZBoaSLZ3NAl1VTufbOrXBPvtcy6WiQ= -github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= -github.com/mattn/go-colorable v0.1.2/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= -github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= -github.com/mattn/go-colorable v0.1.7/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= -github.com/mattn/go-colorable v0.1.8/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= -github.com/mattn/go-colorable v0.1.9/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= -github.com/mattn/go-colorable v0.1.12/go.mod h1:u5H1YNBxpqRaxsYJYSkiCWKzEfiAb1Gb520KVy5xxl4= +github.com/mattn/go-colorable v0.1.0/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= -github.com/mattn/go-isatty v0.0.4/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= -github.com/mattn/go-isatty v0.0.7/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= -github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= -github.com/mattn/go-isatty v0.0.9/go.mod h1:YNRxwqDuOph6SZLI9vUUz6OYw3QyUt7WiY2yME+cCiQ= -github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84= -github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= -github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= +github.com/mattn/go-ieproxy v0.0.0-20190610004146-91bb50d98149/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= +github.com/mattn/go-ieproxy v0.0.0-20190702010315-6dee0af9227d/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= +github.com/mattn/go-isatty v0.0.5-0.20180830101745-3fb116b82035/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= +github.com/mattn/go-isatty v0.0.16 h1:bq3VjFmv/sOjHtdEhmkEV4x1AJtvUvOJ2PFAZ5+peKQ= github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= -github.com/mattn/go-isatty v0.0.17/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= -github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APPA= -github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= github.com/mattn/go-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= -github.com/mattn/go-runewidth v0.0.6/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= -github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= -github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= -github.com/mattn/go-runewidth v0.0.14/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= -github.com/mattn/go-sqlite3 v1.11.0/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= -github.com/mattn/go-sqlite3 v1.14.5/go.mod h1:WVKg1VTActs4Qso6iwGbiFih2UIHo0ENGwNd0Lj+XmI= -github.com/mattn/go-sqlite3 v1.14.14/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU= -github.com/mattn/go-sqlite3 v1.14.15/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg= -github.com/mattn/go-tty v0.0.0-20180907095812-13ff1204f104/go.mod h1:XPvLUNfbS4fJH25nqRHfWLMa1ONC8Amw+mIA639KxkE= -github.com/mattn/go-tty v0.0.3/go.mod h1:ihxohKRERHTVzN+aSVRwACLCeqIoZAWpoICkkvrWyR0= -github.com/mattn/goveralls v0.0.2/go.mod h1:8d1ZMHsd7fW6IRPKQh46F2WRpyib5/X4FOpevwGNQEw= +github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= -github.com/mediocregopher/mediocre-go-lib v0.0.0-20181029021733-cb65787f37ed/go.mod h1:dSsfyI2zABAdhcbvkXqgxOxrCsbYeHCPgrZkku60dSg= -github.com/mediocregopher/radix/v3 v3.3.0/go.mod h1:EmfVyvspXz1uZEyPBMyGK+kjWiKQGvsUt6O3Pj+LDCQ= -github.com/microcosm-cc/bluemonday v1.0.2/go.mod h1:iVP4YcDBq+n/5fb23BhYFvIMq/leAFZyRl6bYmGDlGc= -github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8/go.mod h1:mC1jAcsrzbxHt8iiaC+zU4b1ylILSosueou12R++wfY= -github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3/go.mod h1:RagcQ7I8IeTMnF8JTXieKnO4Z6JCsikNEzj0DwauVzE= -github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db/go.mod h1:l0dey0ia/Uv7NcFFVbCLtqEBQbrT4OCwCSKTEv6enCw= github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= +github.com/mitchellh/mapstructure v1.1.2 h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE= github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= -github.com/mitchellh/mapstructure v1.4.1 h1:CpVNEelQCZBooIPDn+AR3NpivK/TIKU8bDxdASFVQag= -github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= -github.com/mitchellh/pointerstructure v1.2.0/go.mod h1:BRAsLI5zgXmw97Lf6s25bs8ohIXc3tViBH44KcwB2g4= -github.com/mmcloughlin/addchain v0.4.0/go.mod h1:A86O+tHqZLMNO4w6ZZ4FlVQEadcoqkyU72HC5wJ4RlU= -github.com/mmcloughlin/profile v0.1.1/go.mod h1:IhHD7q1ooxgwTgjxQYkACGA77oFTDdFVejUS1/tS/qU= -github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= -github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= -github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= -github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= -github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= -github.com/modocache/gover v0.0.0-20171022184752-b58185e213c5/go.mod h1:caMODM3PzxT8aQXRPkAt8xlV/e7d7w8GM5g0fa5F0D8= -github.com/montanaflynn/stats v0.6.6/go.mod h1:etXPPgVO6n31NxCd9KQUMvCM+ve0ruNzt6R8Bnaayow= -github.com/montanaflynn/stats v0.7.0/go.mod h1:etXPPgVO6n31NxCd9KQUMvCM+ve0ruNzt6R8Bnaayow= -github.com/moul/http2curl v1.0.0/go.mod h1:8UbvGypXm98wA/IqH45anm5Y2Z6ep6O31QGOAZ3H0fQ= -github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae/go.mod h1:qAyveg+e4CE+eKJXWVjKXM4ck2QobLqTDytGJbLLhJg= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= -github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/naoina/go-stringutil v0.1.0/go.mod h1:XJ2SJL9jCtBh+P9q5btrd/Ylo8XwT/h1USek5+NqSA0= github.com/naoina/toml v0.1.2-0.20170918210437-9fafd6967416/go.mod h1:NBIhNtsFMo3G2szEBne+bO4gS192HuIYRqfvOWb4i1E= -github.com/nats-io/nats.go v1.8.1/go.mod h1:BrFz9vVn0fU3AcH9Vn4Kd7W0NpJ651tD5omQ3M8LwxM= -github.com/nats-io/nkeys v0.0.2/go.mod h1:dab7URMsZm6Z/jp9Z5UGa87Uutgc2mVpXLC4B7TDb/4= -github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= -github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= -github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= -github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY= -github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f h1:Z8/PgTqOgOg02MTRpTBYO2k16FE6z4wEOtaC2WBR9Xo= -github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f/go.mod h1:xvP61FoOs95K7IYdIYRnNcYQGf4nbF/uuJ0tHf4DRuM= -github.com/onflow/cadence v1.0.0-M3 h1:bSydJise9pU4aALloUKv/EWmDLITRlbBpuG8OPBydZM= -github.com/onflow/cadence v1.0.0-M3/go.mod h1:odXGZZ/wGNA5mwT8bC9v8u8EXACHllB2ABSZK65TGL8= -github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= -github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= -github.com/onflow/flow-ft/lib/go/templates v1.0.0 h1:6cMS/lUJJ17HjKBfMO/eh0GGvnpElPgBXx7h5aoWJhs= -github.com/onflow/flow-ft/lib/go/templates v1.0.0/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= -github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= -github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= -github.com/onflow/flow-nft/lib/go/templates v1.2.0 h1:JSQyh9rg0RC+D1930BiRXN8lrtMs+ubVMK6aQPon6Yc= -github.com/onflow/flow-nft/lib/go/templates v1.2.0/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= -github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= -github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= -github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= +github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= +github.com/olekukonko/tablewriter v0.0.2-0.20190409134802-7e037d187b0c/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= +github.com/onflow/atree v0.6.0 h1:j7nQ2r8npznx4NX39zPpBYHmdy45f4xwoi+dm37Jk7c= +github.com/onflow/atree v0.6.0/go.mod h1:gBHU0M05qCbv9NN0kijLWMgC47gHVNBIp4KmsVFi0tc= +github.com/onflow/cadence v0.29.0-stable-cadence-4 h1:hzAfjDGaKD6YG/wN+T6FjGDUi3j0y6v3/3/WmyzG8pQ= +github.com/onflow/cadence v0.29.0-stable-cadence-4/go.mod h1:IpiqITdEX5zO/jeJd/5dqAodD7NDKnsrnymwb5kbCEE= +github.com/onflow/cadence v0.39.13-stable-cadence h1:A08/gb4xSsgRjuXo9fkFFvtG7dIkxxkDCNk/VdWrMp4= +github.com/onflow/cadence v0.39.13-stable-cadence/go.mod h1:SxT8/IEkS1drFj2ofUEK9S6KyJ5GQbrm0LX4EFCp/7Q= +github.com/onflow/flow-go-sdk v0.29.0-stable-cadence-4 h1:Vmutb6Cs72+Ayns6dx2mD8RByam3UB7Bg5/YB1ePPh4= +github.com/onflow/flow-go-sdk v0.29.0-stable-cadence-4/go.mod h1:KEfJICFBZ/GAV4Zj1+jCavTs7qDe77F+s6z6ot0XZSI= +github.com/onflow/flow-go-sdk v0.41.7-stable-cadence h1:GrmLLAPrxOyC27v/J/XG/sKiM1ynE1MYidiMXUfM0e4= +github.com/onflow/flow-go-sdk v0.41.7-stable-cadence/go.mod h1:ejVN+bqcsTHVvRpDDJDoBNdmcxUfFMW4IvdTbMeQ/hQ= +github.com/onflow/flow-go/crypto v0.24.7/go.mod h1:fqCzkIBBMRRkciVrvW21rECKq1oD7Q6u+bCI78lfNX0= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.10.3/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk= -github.com/onsi/ginkgo v1.13.0/go.mod h1:+REjRxOmWfHCjfv9TTWB1jD1Frx4XydAD3zm1lskyM0= -github.com/onsi/ginkgo v1.14.0/go.mod h1:iSB4RoI2tjJc9BBv4NKIKWKya62Rps+oPG/Lv9klQyY= -github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY= -github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo= -github.com/opentracing/opentracing-go v1.0.2/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= -github.com/opentracing/opentracing-go v1.0.3-0.20180606204148-bd9c31933947/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= +github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= -github.com/paulbellamy/ratecounter v0.2.0/go.mod h1:Hfx1hDpSGoqxkVVpBi/IlYD7kChlfo5C6hzIHwPqfFE= +github.com/pborman/uuid v0.0.0-20170112150404-1b00554d8222/go.mod h1:VyrYX9gd7irzKovcSS6BIIEwPRkP2Wm2m9ufcdFSJ34= github.com/pelletier/go-toml v1.2.0 h1:T5zMGML61Wp+FlcbWjRDT7yAxhJNAiPPLOFECq181zc= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= -github.com/peterh/liner v1.0.1-0.20180619022028-8c1271fcf47f/go.mod h1:xIteQHvHuaLYG9IFj6mSxM0fCKrs34IrEQUhOYuGPHc= github.com/peterh/liner v1.1.1-0.20190123174540-a2c9a5303de7/go.mod h1:CRroGNssyjTd/qIG2FyxByd2S8JEAZXBl4qUrZf8GS0= -github.com/philhofer/fwd v1.0.0/go.mod h1:gk3iGcWd9+svBvR0sR+KPcfE+RNWozjowpeBVG3ZVNU= -github.com/phpdave11/gofpdf v1.4.2/go.mod h1:zpO6xFn9yxo3YLyMvW8HcKWVdbNqgIfOOp2dXMnm1mY= -github.com/phpdave11/gofpdi v1.0.12/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= -github.com/phpdave11/gofpdi v1.0.13/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= -github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= -github.com/pierrec/lz4/v4 v4.1.15/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= -github.com/pingcap/errors v0.11.4/go.mod h1:Oi8TUi2kEtXXLMJk9l1cGmz20kV3TaQ0usTwv5KuLY8= -github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4/go.mod h1:N6UoU20jOqggOuDwUaBQpluzLNDqif3kq9z2wpdYEfQ= -github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8/go.mod h1:HKlIX3XHQyzLZPlr7++PzdhaXEj94dEiJgZDTsxEqUI= -github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI= -github.com/pkg/sftp v1.13.1/go.mod h1:3HaPG6Dq1ILlpPZRO0HVMrsydcdLt6HRDccSgb87qRg= -github.com/pkg/term v0.0.0-20180730021639-bffc007b7fd5/go.mod h1:eCbImbZ95eXtAUIbLAuAVnBnwf83mjf6QIVH8SHYwqQ= -github.com/pkg/term v1.2.0-beta.2/go.mod h1:E25nymQcrSllhX42Ok8MRm1+hyBdHY0dCeiKZ9jpNGw= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/prashantv/gostub v1.1.0/go.mod h1:A5zLQHz7ieHGG7is6LLXLz7I8+3LZzsrV0P1IAHhP5U= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso= -github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= -github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= -github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0= -github.com/prometheus/client_golang v1.12.0/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.2.1-0.20210607210712-147c58e9608a/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= -github.com/prometheus/client_model v0.3.0/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= -github.com/prometheus/client_model v0.4.0/go.mod h1:oMQmHW1/JoDwqLtg57MGgP/Fb1CJEYF2imWWhWtMkYU= github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= -github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= -github.com/prometheus/common v0.6.0/go.mod h1:eBmuwkDJBwy6iBfxCBob6t6dR6ENT/y+J+Zk0j9GMYc= -github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= -github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= -github.com/prometheus/common v0.32.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= -github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= -github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= -github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= -github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= +github.com/prometheus/tsdb v0.6.2-0.20190402121629-4f204dcbc150/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= -github.com/protolambda/bls12-381-util v0.0.0-20220416220906-d8552aa452c7/go.mod h1:IToEjHuttnUzwZI5KBSM/LOOW3qLbbrHOEfp3SbECGY= github.com/psiemens/sconfig v0.1.0 h1:xfWqW+TRpih7mXZIqKYTmpRhlZLQ1kbxV8EjllPv76s= github.com/psiemens/sconfig v0.1.0/go.mod h1:+MLKqdledP/8G3rOBpknbLh0IclCf4WneJUtS26JB2U= -github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= -github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= -github.com/retailnext/hllpp v1.0.1-0.20180308014038-101a6d2f8b52/go.mod h1:RDpi1RftBQPUCDRw6SmxeaREsAaRKnOclghuzp/WRzc= -github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= github.com/rivo/uniseg v0.4.4 h1:8TfxU8dW6PdqD27gjM8MVNuicgxIjxpm4K7x4jp8sis= github.com/rivo/uniseg v0.4.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= github.com/rjeczalik/notify v0.9.1/go.mod h1:rKwnCoCGeuQnwBtTSPL9Dad03Vh2n40ePRrjvIXnJho= github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= -github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= -github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= -github.com/rogpeppe/go-internal v1.8.1/go.mod h1:JeRgkft04UBgHMgCIwADu4Pn6Mtm5d4nPKWu0nJ5d+o= -github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= -github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= -github.com/rs/cors v1.7.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= +github.com/rs/cors v0.0.0-20160617231935-a62a804a8a00/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= +github.com/rs/xhandler v0.0.0-20160618193221-ed27b6fd6521/go.mod h1:RvLn4FgxWubrpZHtQLnOf6EwhN2hEMusxZOhcW9H3UQ= github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= -github.com/ruudk/golang-pdf417 v0.0.0-20181029194003-1af4ab5afa58/go.mod h1:6lfFZQK844Gfx8o5WFuvpxWRwnSoipWe/p622j1v06w= -github.com/ruudk/golang-pdf417 v0.0.0-20201230142125-a7e3863a1245/go.mod h1:pQAZKsJ8yyVxGRWYNEm9oFB8ieLgKFnamEyDmSA0BRk= -github.com/ryanuber/columnize v2.1.0+incompatible/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= -github.com/schollz/progressbar/v3 v3.13.1/go.mod h1:xvrbki8kfT1fzWzBT/UZd9L6GA+jdL7HAgq2RFnO6fQ= -github.com/sclevine/agouti v3.0.0+incompatible/go.mod h1:b4WX9W9L1sfQKXeJf1mUTLZKJ48R1S7H23Ji7oFO5Bw= -github.com/segmentio/kafka-go v0.1.0/go.mod h1:X6itGqS9L4jDletMsxZ7Dz+JFWxM6JHfPOCvTvk+EJo= -github.com/segmentio/kafka-go v0.2.0/go.mod h1:X6itGqS9L4jDletMsxZ7Dz+JFWxM6JHfPOCvTvk+EJo= -github.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo= -github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= -github.com/sergi/go-diff v1.2.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= -github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC7eC3UO/RA= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= -github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= -github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= -github.com/sirupsen/logrus v1.9.0 h1:trlNQbNUG3OdDrDil03MCb1H2o9nJ1x4/5LYw7byDE0= -github.com/sirupsen/logrus v1.9.0/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= -github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= -github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= +github.com/spaolacci/murmur3 v1.0.1-0.20190317074736-539464a789e9/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= +github.com/spf13/afero v1.1.2 h1:m8/z1t7/fwjysjQRYbP0RD+bUIF/8tJwPdEZsI83ACI= github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= -github.com/spf13/afero v1.3.3/go.mod h1:5KUK8ByomD5Ti5Artl0RtHeI5pTF7MIDuXL3yY520V4= -github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= -github.com/spf13/afero v1.9.2 h1:j49Hj62F0n+DaZ1dDCvhABaPNSGNkt32oRFxI33IEMw= -github.com/spf13/afero v1.9.2/go.mod h1:iUV7ddyEEZPO5gA3zD4fJt6iStLlL+Lg4m2cihcDf8Y= github.com/spf13/cast v1.3.0 h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8= github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= -github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= github.com/spf13/cobra v0.0.5/go.mod h1:3K3wKZymM7VvHMDS9+Akkh4K60UwM26emMESw8tLCHU= -github.com/spf13/cobra v1.0.0/go.mod h1:/6GTrnGXV9HjY+aR4k0oJ5tcvakLuG6EuKReYlHNrgE= github.com/spf13/cobra v1.5.0 h1:X+jTBEBqF0bHN+9cSMgmfuvv2VHJ9ezmFNf9Y/XstYU= github.com/spf13/cobra v1.5.0/go.mod h1:dWXEIy2H428czQCjInthrTRUg7yKbok+2Qi/yBIJoUM= github.com/spf13/jwalterweatherman v1.0.0 h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk= @@ -1750,349 +226,67 @@ github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DM github.com/spf13/viper v1.4.0 h1:yXHLWeravcrgGyFSyCgdYpXQ9dR9c/WED3pg1RhxqEU= github.com/spf13/viper v1.4.0/go.mod h1:PTJ7Z/lr49W6bUbkmS1V3by4uWynFiR9p7+dSq/yZzE= github.com/status-im/keycard-go v0.0.0-20190316090335-8537d3370df4/go.mod h1:RZLeN1LMWmRsyYjvAu+I6Dm9QmlDaIIt+Y+4Kd7Tp+Q= -github.com/status-im/keycard-go v0.2.0/go.mod h1:wlp8ZLbsmrF6g6WjugPAx+IzoLrkdf9+mHxBEeo3Hbg= +github.com/steakknife/bloomfilter v0.0.0-20180922174646-6819c0d2a570/go.mod h1:8OR4w3TdeIHIh1g6EMY5p0gVNOovcWC+1vpc7naMuAw= +github.com/steakknife/hamming v0.0.0-20180906055917-c99c65617cd3/go.mod h1:hpGUWaI9xL8pRQCTXQgocU38Qw1g0Us7n5PxxTwTCYU= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= -github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= -github.com/stretchr/testify v1.2.0/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= -github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= -github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.7.2/go.mod h1:R6va5+xMeoiuVRoj+gSkQ7d3FALtqAAGI1FQKckRals= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= -github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/stretchr/testify v1.8.2 h1:+h33VjcLVPDHtOdpUCuF+7gSuG3yGIftsP1YvFihtJ8= github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= -github.com/stretchr/testify v1.8.3/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= -github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= -github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= -github.com/supranational/blst v0.3.8-0.20220526154634-513d2456b344/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= -github.com/supranational/blst v0.3.11/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= -github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7/go.mod h1:q4W45IWZaF22tdD+VEXcAWRA037jwmWEB5VWYORlTpc= +github.com/syndtr/goleveldb v1.0.1-0.20190923125748-758128399b1d/go.mod h1:9OrXJhf154huy1nPWmuSrkgjPUtUNhA+Zmy+6AESzuA= github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c h1:HelZ2kAFadG0La9d+4htN4HzQ68Bm2iM9qKMSMES6xg= github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c/go.mod h1:JlzghshsemAMDGZLytTFY8C1JQxQPhnatWqNwUXjggo= -github.com/tidwall/pretty v1.2.1/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU= -github.com/tinylib/msgp v1.0.2/go.mod h1:+d+yLhGm8mzTaHzB+wgMYrodPfmZrzkirds8fDWklFE= -github.com/tklauser/go-sysconf v0.3.5/go.mod h1:MkWzOF4RMCshBAMXuhXJs64Rte09mITnppBXY/rYEFI= -github.com/tklauser/go-sysconf v0.3.12/go.mod h1:Ho14jnntGE1fpdOqQEEaiKRpvIavV0hSfmBq8nJbHYI= -github.com/tklauser/numcpus v0.2.2/go.mod h1:x3qojaO3uyYt0i56EW/VUYs7uBvdl2fkfZFu0T9wgjM= -github.com/tklauser/numcpus v0.6.1/go.mod h1:1XfjsgE2zo8GVw7POkMbHENHzVg3GzmoZ9fESEdAacY= github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d h1:5JInRQbk5UBX8JfUvKh2oYTLMVwj3p6n+wapDDm7hko= github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d/go.mod h1:Nlx5Y115XQvNcIdIy7dZXaNSUpzwBSge4/Ivk93/Yog= github.com/tyler-smith/go-bip39 v1.0.1-0.20181017060643-dbb3b84ba2ef/go.mod h1:sJ5fKU0s6JVwZjjcUEX2zFOnvq0ASQ2K9Zr6cf67kNs= -github.com/tyler-smith/go-bip39 v1.1.0/go.mod h1:gUYDtqQw1JS3ZJ8UWVcGTGqqr6YIN3CWg+kkNaLt55U= github.com/ugorji/go v1.1.4/go.mod h1:uQMGLiO92mf5W77hV/PUCpI3pbzQx3CRekS0kk+RGrc= github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljTbGfSG7qAOspJ7OScBnGdDN/yBr0sguwnwf0= -github.com/urfave/cli/v2 v2.3.0/go.mod h1:LJmUH05zAU44vOAcrfzZQKsZbVcdbOG8rtL3/XcUArI= -github.com/urfave/cli/v2 v2.10.2/go.mod h1:f8iq5LtQ/bLxafbdBSLPPNsgaW0l/2fYYEHhAyPlwvo= -github.com/urfave/cli/v2 v2.24.1/go.mod h1:GHupkWPMM0M/sj1a2b4wUrWBPzazNrIjouW6fmdJLxc= -github.com/urfave/cli/v2 v2.25.7/go.mod h1:8qnjx1vcq5s2/wpsqoZFndg2CE5tNFyrTvS6SinrnYQ= -github.com/urfave/negroni v1.0.0/go.mod h1:Meg73S6kFm/4PpbYdq35yYWoCZ9mS/YSx+lKnmiohz4= -github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= -github.com/valyala/fasthttp v1.6.0/go.mod h1:FstJa9V+Pj9vQ7OJie2qMHdwemEDaDiSdBnvPM1Su9w= -github.com/valyala/fasttemplate v1.0.1/go.mod h1:UQGH1tvbgY+Nz5t2n7tXsz52dQxojPUpymEIMZ47gx8= -github.com/valyala/fasttemplate v1.2.1/go.mod h1:KHLXt3tVN2HBp8eijSv/kGJopbvo7S+qRAEEKiv+SiQ= -github.com/valyala/tcplisten v0.0.0-20161114210144-ceec8f93295a/go.mod h1:v3UYOV9WzVtRmSR+PDvWpU/qWl4Wa5LApYYX4ZtKbio= -github.com/willf/bitset v1.1.3/go.mod h1:RjeCKbqT1RxIR/KWY6phxZiaY1IyutSBfGjNPySAYV4= +github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= +github.com/wsddn/go-ecdh v0.0.0-20161211032359-48726bab9208/go.mod h1:IotVbo4F+mw0EzQ08zFqg7pK3FebNXpaMsRy2RT+Ees= github.com/x448/float16 v0.8.4 h1:qLwI1I70+NjRFUR3zs1JPUCgaCXSh3SW62uAKT1mSBM= github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcYsOfg= -github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= -github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ= -github.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y= github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= -github.com/xlab/treeprint v0.0.0-20180616005107-d6fb6747feb6/go.mod h1:ce1O1j6UtZfjr22oyGxGLbauSBp2YVXpARAosm7dHBg= github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q= -github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673/go.mod h1:N3UwUGtsrSj3ccvlPHLoLsHnpR27oXr4ZE984MbSER8= -github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0/go.mod h1:/LWChgwKmvncFJFHJ7Gvn9wZArjbV5/FppcK2fKk/tI= -github.com/yudai/gojsondiff v1.0.0/go.mod h1:AY32+k2cwILAkW1fbgxQ5mUmMiZFgLIV+FBNExI05xg= -github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82/go.mod h1:lgjkn3NuSvDfVJdfcVVdX+jpBxNmX4rDAzaS45IcYoM= -github.com/yudai/pp v2.0.1+incompatible/go.mod h1:PuxR/8QJ7cyCkFp/aUDS+JY727OFEZkTdatxwunjIkc= -github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= -github.com/yuin/goldmark v1.4.1/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= -github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= github.com/zeebo/assert v1.1.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= -github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ= -github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= github.com/zeebo/blake3 v0.2.3 h1:TFoLXsjeXqRNFxSbk35Dk4YtszE/MQQGK10BH4ptoTg= github.com/zeebo/blake3 v0.2.3/go.mod h1:mjJjZpnsyIVtVgTOSpJ9vmRE4wgDeyt2HU3qXvvKCaQ= -github.com/zeebo/pcg v1.0.1 h1:lyqfGeWiv4ahac6ttHs+I5hwtH/+1mrhlCtVNQM2kHo= github.com/zeebo/pcg v1.0.1/go.mod h1:09F0S9iiKrwn9rlI5yjLkmrug154/YRW6KnnXVDM/l4= +github.com/zeebo/xxh3 v1.0.2 h1:xZmwmqxHZA8AI603jOQ0tMqmBr9lPeFwGg6d+xy9DC0= github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= -go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= -go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= -go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= -go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= -go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= -go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/otel v1.8.0/go.mod h1:2pkj+iMj0o03Y+cW6/m8Y4WkRdYN3AvCXCnzRMp9yvM= -go.opentelemetry.io/otel v1.16.0 h1:Z7GVAX/UkAXPKsy94IU+i6thsQS4nb7LviLpnaNeW8s= -go.opentelemetry.io/otel v1.16.0/go.mod h1:vl0h9NUa1D5s1nv3A5vZOYWn8av4K8Ml6JDeHrT/bx4= -go.opentelemetry.io/otel/metric v1.16.0/go.mod h1:QE47cpOmkwipPiefDwo2wDzwJrlfxxNYodqc4xnGCo4= -go.opentelemetry.io/otel/trace v1.8.0/go.mod h1:0Bt3PXY8w+3pheS3hQUt+wow8b1ojPaTBoTCh2zIFI4= -go.opentelemetry.io/otel/trace v1.16.0/go.mod h1:Yt9vYq1SdNz3xdjZZK7wcXv1qv2pwLkqr2QVwea0ef0= -go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= -go.opentelemetry.io/proto/otlp v0.15.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= -go.opentelemetry.io/proto/otlp v0.19.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= -go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= +go.opentelemetry.io/otel v1.14.0 h1:/79Huy8wbf5DnIPhemGB+zEPVwnN6fuQybr/SRXa6hM= +go.opentelemetry.io/otel v1.14.0/go.mod h1:o4buv+dJzx8rohcUeRmWUZhqupFvzWis188WlggnNeU= go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= -go.uber.org/automaxprocs v1.5.2/go.mod h1:eRbA25aqJrxAbsLO0xy5jVwPt7FQnRgjW+efnwa1WM0= -go.uber.org/goleak v1.1.10/go.mod h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A= -go.uber.org/goleak v1.2.1 h1:NBol2c7O1ZokfZ0LEU9K6Whx/KnwvepVetCUhtKja4A= -go.uber.org/goleak v1.2.1/go.mod h1:qlT2yGI9QafXHhZZLxlSuNsMw3FFLxBr+tBRlmO1xH4= go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= -go.uber.org/zap v1.9.1/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190909091759-094676da4a83/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= -golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= -golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= -golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= -golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20220314234659-1baeb1ce4c0b/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw= +golang.org/x/crypto v0.0.0-20200311171314-f7b00557c8c4/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= -golang.org/x/crypto v0.9.0/go.mod h1:yrmDGqONDYtNj3tH8X9dzUun2m2lzPa9ngI6/RUPGR0= -golang.org/x/crypto v0.10.0/go.mod h1:o4eNf7Ede1fv+hwOwZsTHl9EsPFO6q6ZvYR8vYfY45I= -golang.org/x/crypto v0.11.0/go.mod h1:xgJhtzW8F9jGdVFWZESrid1U1bjeNy4zgy5cRr/CIio= -golang.org/x/crypto v0.12.0/go.mod h1:NF0Gs7EO5K4qLn+Ylc+fih8BSTeIjAP05siRnAh98yw= -golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliYc= -golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= -golang.org/x/crypto v0.16.0 h1:mMMrFzRSCF0GvB7Ne27XVtVAaXLrPmgPC7/v0tkwHaY= -golang.org/x/crypto v0.16.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= -golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190125153040-c74c464bbbf2/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= -golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= -golang.org/x/exp v0.0.0-20191002040644-a1355ae1e2c3/go.mod h1:NOZ3BPKG0ec/BKJQgnvsSFpcKLM5xXVWnvZS97DWHgE= -golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= -golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= -golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= -golang.org/x/exp v0.0.0-20220426173459-3bcf042a4bf5/go.mod h1:lgLbSvA5ygNOMpwM/9anMpWVlVJ7Z+cHWq/eFuinpGE= -golang.org/x/exp v0.0.0-20220827204233-334a2380cb91/go.mod h1:cyybsKvd6eL0RnXn6p/Grxp8F5bW7iYuBgsNCOHpMYE= +golang.org/x/exp v0.0.0-20230321023759-10a507213a29 h1:ooxPy7fPvB4kwsA2h+iBNHkAbp/4JxTSwCmvdjEYmug= golang.org/x/exp v0.0.0-20230321023759-10a507213a29/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= -golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df/go.mod h1:FXUEEKJgO7OQYeo8N01OfiKP8RXMtf6e8aTskBGqWdc= -golang.org/x/exp v0.0.0-20230905200255-921286631fa9/go.mod h1:S2oDrQGGwySpoQPVqRShND87VCbxmc6bL1Yd2oYrm6k= -golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc h1:ao2WRsKSzW6KuUY9IWPwWahcHCgR0s52IfwutMfEbdM= -golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc/go.mod h1:iRJReGqOEeBhDZGkGbynYwcHlctCvnjTYIamk7uXpHI= -golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs= -golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= -golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20190910094157-69e4b8554b2a/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20200119044424-58c23975cae1/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20200430140353-33d19683fad8/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20200618115811-c13761719519/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20201208152932-35266b937fa6/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20210216034530-4410531fe030/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20210607152325-775e3b0c77b9/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= -golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= -golang.org/x/image v0.0.0-20211028202545-6944b10bf410/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= -golang.org/x/image v0.0.0-20220302094943-723b81ca9867/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= -golang.org/x/image v0.5.0/go.mod h1:FVC7BI/5Ym8R25iw5OLsgshdUBbT1h5jZTpA+mvAdZ4= -golang.org/x/image v0.6.0/go.mod h1:MXLdDR43H7cDJq5GEGXEVeeNhPgi+YYEQ2pC1byI1x0= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= -golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs= -golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= -golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= -golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= -golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY= -golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= -golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= -golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.5.0/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= -golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= -golang.org/x/mod v0.6.0-dev.0.20211013180041-c96bc1413d57/go.mod h1:3p9vT2HGsQu2K1YbXdKPJLVgG5VJdoTa1poYQBtP1AY= -golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= -golang.org/x/mod v0.6.0/go.mod h1:4mET923SAdbXp2ki8ey+zGs1SLqsuM2Y0uvdZR/fUNI= -golang.org/x/mod v0.7.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.9.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.10.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.11.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.14.0 h1:dGoOF9QVLYng8IHTm7BAyWqCqSheQ5pYWGhzW00YJr0= -golang.org/x/mod v0.14.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= -golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190327091125-710a502c58a2/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190522155817-f3200d17e092/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= -golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= -golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= -golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20200813134508-3edf25e44fcc/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= -golang.org/x/net v0.0.0-20201010224723-4f7140c49acb/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210220033124-5f55cee0dc0d/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= -golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= -golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210610132358-84b48f89b13b/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220325170049-de3da57026de/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220412020605-290c469a71a5/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220607020251-c690dde0001d/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220617184016-355a448f1bc9/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220909164309-bea034e7d591/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= -golang.org/x/net v0.0.0-20221012135044-0b7e1fb9d458/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= -golang.org/x/net v0.0.0-20221014081412-f15817d10f9b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= -golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco= -golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY= -golang.org/x/net v0.4.0/go.mod h1:MBQ8lrhLObU/6UmLb4fmbmk5OcyYmqtbGd/9yIeKjEE= -golang.org/x/net v0.5.0/go.mod h1:DivGGAXEgPSlEBzxGzZI+ZLohi+xUj054jfeKui00ws= -golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= -golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= -golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= -golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= -golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= -golang.org/x/net v0.11.0/go.mod h1:2L/ixqYpgIVXmeoSA/4Lu7BzTG4KIyPIryS4IsOd1oQ= -golang.org/x/net v0.12.0/go.mod h1:zEVYFnQC7m/vmpQFELhcD1EWkZlX69l4oqgmer6hfKA= -golang.org/x/net v0.14.0/go.mod h1:PpSgVXXLK0OxS0F31C1/tv6XNguvCrnXIDrFMspZIUI= -golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk= -golang.org/x/net v0.16.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= -golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= -golang.org/x/net v0.19.0/go.mod h1:CfAk/cbD4CthTvqiEl8NpboMuiuOYsAr/7NOjZJtv1U= -golang.org/x/oauth2 v0.0.0-20170207211851-4464e7848382/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220608161450-d0670ef3b1eb/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= -golang.org/x/oauth2 v0.0.0-20220622183110-fd043fe589d2/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= -golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.0.0-20221006150949-b44042a4b9c1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.4.0/go.mod h1:RznEsdpjGAINPTOF0UH/t+xJ75L18YO3Ho6Pyn+uRec= -golang.org/x/oauth2 v0.5.0/go.mod h1:9/XBHVqLaWO3/BRHs5jbpYCnOZVjj5V0ndyaAM7KB4I= -golang.org/x/oauth2 v0.6.0/go.mod h1:ycmewcwgD4Rpr3eZJLSB4Kyyljb3qDh40vJ8STE5HKw= -golang.org/x/oauth2 v0.7.0/go.mod h1:hPLQkd9LyjfXTiRohC/41GhcFqxisoUQ99sCUOHO9x4= -golang.org/x/oauth2 v0.8.0/go.mod h1:yr7u4HXZRm1R1kBWqr/xKNqewf0plRYoB7sla+BCIXE= -golang.org/x/oauth2 v0.10.0/go.mod h1:kTpgurOux7LqtuxjuyZa4Gj2gdezIt/jQtGnNFfypQI= -golang.org/x/oauth2 v0.11.0/go.mod h1:LdF7O/8bLR/qWK9DrpXmbHLTouvRHK0SgJl0GmDBchk= -golang.org/x/oauth2 v0.13.0/go.mod h1:/JMhi4ZRXAf4HG9LiNmxvk+45+96RUlVThiH8FzNBn0= -golang.org/x/perf v0.0.0-20230113213139-801c7ef9e5c5/go.mod h1:UBKtEnL8aqnd+0JHqZ+2qoMDwtuy6cYhhKNoHLBiTQc= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.2.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= -golang.org/x/sync v0.4.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= -golang.org/x/sync v0.5.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -2100,706 +294,43 @@ golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5h golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181205085412-a5c9d58dba9a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200107162124-548cf772de50/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200519105757-fe76b779f299/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200814200057-3d37ad5750ed/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200826173525-f9321e4c35a6/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200909081042-eff7692f9009/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200918174421-af09f7315aff/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201101102859-da207088b7d1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210304124612-50617c2ba197/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210316164454-77fc1eacc6aa/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210324051608-47abb6519492/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210420205809-ac73e9fd8988/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210616045830-e2b7044e8c71/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211020174200-9d6173849985/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211210111614-af8b64212486/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220502124256-b6088ccd6cba/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220624220833-87e55d714810/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220829200755-d48e67d00261/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220919091848-fb04ddd9f9c8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.4.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.9.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.10.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= -golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= -golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= -golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= -golang.org/x/term v0.3.0/go.mod h1:q750SLmJuPmVoN1blW3UFBPREJfb1KmY3vwxfr+nFDA= -golang.org/x/term v0.4.0/go.mod h1:9P2UbLfCdcvo3p/nzKvsmas4TnlujnuoV9hGgYzW1lQ= -golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= -golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= -golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY= -golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= -golang.org/x/term v0.9.0/go.mod h1:M6DEAAIenWoTxdKrOltXcmDY3rSplQUkrvaDU5FcQyo= -golang.org/x/term v0.10.0/go.mod h1:lpqdcUyK/oCiQxvxVrppt5ggO2KCZ5QblwqPnfZ6d5o= -golang.org/x/term v0.11.0/go.mod h1:zC9APTIj3jG3FdV/Ons+XE1riIZXG4aZ4GTHiPZJPIU= -golang.org/x/term v0.12.0/go.mod h1:owVbMEjm3cBLCHdkQu9b1opXd4ETQWc3BhuQGKgXgvU= -golang.org/x/term v0.13.0/go.mod h1:LTmsnFJwVN6bCy1rVCoS+qHT1HhALEFxKncY3WNNh4U= -golang.org/x/term v0.15.0/go.mod h1:BDl952bC7+uMoWR75FIrCDx79TPU9oHkTZ9yRbYOrX0= -golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= -golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= -golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.5.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.6.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.8.0 h1:57P1ETyNKtuIjB4SRd15iJxuhj8Gc416Y78H3qgMh68= golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= -golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= -golang.org/x/text v0.10.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= -golang.org/x/text v0.11.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= -golang.org/x/text v0.12.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= -golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= -golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= -golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= -golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20201208040808-7e3f01d25324/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20220922220347-f3bd1da661af/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.1.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20180525024113-a5b4c53f6e8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20181221001348-537d06c36207/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190206041539-40960b6deb8e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190327201419-c70d86f8b7cf/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20190927191325-030b2cf1153e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191108193012-7d206e10da11/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191126055441-b0650ceb63d9/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200108203644-89082a384178/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= -golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= -golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= -golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= -golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= -golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201124115921-2c860bdd6e78/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= -golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.8-0.20211029000441-d6a9af8af023/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= -golang.org/x/tools v0.1.8/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= -golang.org/x/tools v0.1.9/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= -golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= -golang.org/x/tools v0.2.0/go.mod h1:y4OqIKeOV/fWJetJ8bXPU1sEVniLMIyDAZWeHdV+NTA= -golang.org/x/tools v0.3.0/go.mod h1:/rWhSS2+zyEVwoJf8YAX6L2f0ntZ7Kn/mGgAWcipA5k= -golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= -golang.org/x/tools v0.7.0/go.mod h1:4pg6aUX35JBAogB10C9AtvVL+qowtN4pT3CGSQex14s= -golang.org/x/tools v0.8.0/go.mod h1:JxBZ99ISMI5ViVkT1tr6tdNmXeTrcpVSD3vZ1RsRdN4= -golang.org/x/tools v0.9.1/go.mod h1:owI94Op576fPu3cIGQeHs3joujW/2Oc6MtlxbF5dfNc= -golang.org/x/tools v0.10.0/go.mod h1:UJwyiVBsOA2uwvK/e5OY3GTpDUJriEd+/YlqAwLPmyM= -golang.org/x/tools v0.13.0/go.mod h1:HvlwmtVNQAhOuCjW7xxvovg8wbNq7LwfXh/k7wXUl58= -golang.org/x/tools v0.16.0 h1:GO788SKMRunPIBCXiQyo2AaexLstOrVhuAL5YwsckQM= -golang.org/x/tools v0.16.0/go.mod h1:kYVVN6I1mBNoB1OX+noeBjbRk4IUEPa7JJ+TJMEooJ0= -golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= -golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= -gonum.org/v1/gonum v0.0.0-20180816165407-929014505bf4/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo= -gonum.org/v1/gonum v0.0.0-20181121035319-3f7ecaa7e8ca/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo= -gonum.org/v1/gonum v0.6.0/go.mod h1:9mxDZsDKxgMAuccQkewq682L+0eCu4dCN2yonUJTCLU= -gonum.org/v1/gonum v0.6.1/go.mod h1:9mxDZsDKxgMAuccQkewq682L+0eCu4dCN2yonUJTCLU= -gonum.org/v1/gonum v0.8.2/go.mod h1:oe/vMfY3deqTw+1EZJhuvEW2iwGF1bW9wwu7XCu0+v0= -gonum.org/v1/gonum v0.9.3/go.mod h1:TZumC3NeyVQskjXqmyWt4S3bINhy7B4eYwW69EbyX+0= -gonum.org/v1/gonum v0.11.0/go.mod h1:fSG4YDCxxUZQJ7rKsQrj0gMOg00Il0Z96/qMA4bVQhA= -gonum.org/v1/gonum v0.13.0 h1:a0T3bh+7fhRyqeNbiC3qVHYmkiQgit3wnNan/2c0HMM= -gonum.org/v1/gonum v0.13.0/go.mod h1:/WPYRckkfWrhWefxyYTfrTtQR0KH4iyHNuzxqXAKyAU= -gonum.org/v1/netlib v0.0.0-20181029234149-ec6d1f5cefe6/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= -gonum.org/v1/netlib v0.0.0-20190313105609-8cb42192e0e0/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= -gonum.org/v1/plot v0.0.0-20190515093506-e2840ee46a6b/go.mod h1:Wt8AAjI+ypCyYX3nZBvf6cAIx93T+c/OS2HFAYskSZc= -gonum.org/v1/plot v0.9.0/go.mod h1:3Pcqqmp6RHvJI72kgb8fThyUnav364FOsdDo2aGW5lY= -gonum.org/v1/plot v0.10.0/go.mod h1:JWIHJ7U20drSQb/aDpTetJzfC1KlAPldJLpkSy88dvQ= -gonum.org/v1/plot v0.10.1/go.mod h1:VZW5OlhkL1mysU9vaqNHnsy86inf6Ot+jB3r+BczCEo= -google.golang.org/api v0.0.0-20170206182103-3d017632ea10/go.mod h1:4mhQ8q/RsB7i+udVvVy5NUi08OU8ZlA0gRVgrF7VFY0= -google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= -google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= -google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= -google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= -google.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.15.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= -google.golang.org/api v0.17.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.18.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.19.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.20.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.22.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= -google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= -google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= -google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM= -google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc= -google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= -google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= -google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= -google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU= -google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94= -google.golang.org/api v0.47.0/go.mod h1:Wbvgpq1HddcWVtzsVLyfLp8lDg6AA241LmgIL59tHXo= -google.golang.org/api v0.48.0/go.mod h1:71Pr1vy+TAZRPkPs/xlCf5SsU8WjuAWv1Pfjbtukyy4= -google.golang.org/api v0.50.0/go.mod h1:4bNT5pAuq5ji4SRZm+5QIkjny9JAyVD/3gaSihNefaw= -google.golang.org/api v0.51.0/go.mod h1:t4HdrdoNgyN5cbEfm7Lum0lcLDLiise1F8qDKX00sOU= -google.golang.org/api v0.54.0/go.mod h1:7C4bFFOvVDGXjfDTAsgGwDgAxRDeQ4X8NvUedIt6z3k= -google.golang.org/api v0.55.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= -google.golang.org/api v0.56.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= -google.golang.org/api v0.57.0/go.mod h1:dVPlbZyBo2/OjBpmvNdpn2GRm6rPy75jyU7bmhdrMgI= -google.golang.org/api v0.61.0/go.mod h1:xQRti5UdCmoCEqFxcz93fTl338AVqDgyaDRuOZ3hg9I= -google.golang.org/api v0.63.0/go.mod h1:gs4ij2ffTRXwuzzgJl/56BdwJaA194ijkfn++9tDuPo= -google.golang.org/api v0.67.0/go.mod h1:ShHKP8E60yPsKNw/w8w+VYaj9H6buA5UqDp8dhbQZ6g= -google.golang.org/api v0.70.0/go.mod h1:Bs4ZM2HGifEvXwd50TtW70ovgJffJYw2oRCOFU/SkfA= -google.golang.org/api v0.71.0/go.mod h1:4PyU6e6JogV1f9eA4voyrTY2batOLdgZ5qZ5HOCc4j8= -google.golang.org/api v0.74.0/go.mod h1:ZpfMZOVRMywNyvJFeqL9HRWBgAuRfSjJFpe9QtRRyDs= -google.golang.org/api v0.75.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= -google.golang.org/api v0.77.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= -google.golang.org/api v0.78.0/go.mod h1:1Sg78yoMLOhlQTeF+ARBoytAcH1NNyyl390YMy6rKmw= -google.golang.org/api v0.80.0/go.mod h1:xY3nI94gbvBrE0J6NHXhxOmW97HG7Khjkku6AFB3Hyg= -google.golang.org/api v0.84.0/go.mod h1:NTsGnUFJMYROtiquksZHBWtHfeMC7iYthki7Eq3pa8o= -google.golang.org/api v0.85.0/go.mod h1:AqZf8Ep9uZ2pyTvgL+x0D3Zt0eoT9b5E8fmzfu6FO2g= -google.golang.org/api v0.90.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= -google.golang.org/api v0.93.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= -google.golang.org/api v0.95.0/go.mod h1:eADj+UBuxkh5zlrSntJghuNeg8HwQ1w5lTKkuqaETEI= -google.golang.org/api v0.96.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= -google.golang.org/api v0.97.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= -google.golang.org/api v0.98.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= -google.golang.org/api v0.99.0/go.mod h1:1YOf74vkVndF7pG6hIHuINsM7eWwpVTAfNMNiL91A08= -google.golang.org/api v0.100.0/go.mod h1:ZE3Z2+ZOr87Rx7dqFsdRQkRBk36kDtp/h+QpHbB7a70= -google.golang.org/api v0.102.0/go.mod h1:3VFl6/fzoA+qNuS1N1/VfXY4LjoXN/wzeIp7TweWwGo= -google.golang.org/api v0.103.0/go.mod h1:hGtW6nK1AC+d9si/UBhw8Xli+QMOf6xyNAyJw4qU9w0= -google.golang.org/api v0.106.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= -google.golang.org/api v0.107.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= -google.golang.org/api v0.108.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= -google.golang.org/api v0.110.0/go.mod h1:7FC4Vvx1Mooxh8C5HWjzZHcavuS2f6pmJpZx60ca7iI= -google.golang.org/api v0.111.0/go.mod h1:qtFHvU9mhgTJegR31csQ+rwxyUTHOKFqCKWp1J0fdw0= -google.golang.org/api v0.114.0/go.mod h1:ifYI2ZsFK6/uGddGfAD5BMxlnkBqCmqHSDUVi45N5Yg= -google.golang.org/api v0.118.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjYK+5E= -google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= -google.golang.org/api v0.124.0/go.mod h1:xu2HQurE5gi/3t1aFCvhPD781p0a3p11sdunTJ2BlP4= -google.golang.org/api v0.125.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= -google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= -google.golang.org/api v0.128.0/go.mod h1:Y611qgqaE92On/7g65MQgxYul3c0rEB894kniWLY750= -google.golang.org/api v0.139.0/go.mod h1:CVagp6Eekz9CjGZ718Z+sloknzkDJE7Vc1Ckj9+viBk= -google.golang.org/api v0.149.0/go.mod h1:Mwn1B7JTXrzXtnvmzQE2BD6bYZQ8DShKZDZbeN9I7qI= -google.golang.org/api v0.151.0/go.mod h1:ccy+MJ6nrYFgE3WgRx/AMXOxOmU8Q4hSa+jjibzhxcg= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= -google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= -google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= -google.golang.org/genproto v0.0.0-20180518175338-11a468237815/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190716160619-c506a9f90610/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= -google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= -google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= -google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= -google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200108215221-bd8f9a0ef82f/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= -google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA= -google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= -google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= -google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= -google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20200904004341-0bd0a958aa1d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210108203827-ffc7fda8c3d7/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210226172003-ab064af71705/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210329143202-679c6ae281ee/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= -google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= -google.golang.org/genproto v0.0.0-20210513213006-bf773b8c8384/go.mod h1:P3QM42oQyzQSnHPnZ/vqoCdDmzH28fzWByN9asMeM8A= -google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210604141403-392c879c8b08/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210608205507-b6d2f5bf0d7d/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210624195500-8bfb893ecb84/go.mod h1:SzzZ/N+nwJDaO1kznhnlzqS8ocJICar6hYhVyhi++24= -google.golang.org/genproto v0.0.0-20210713002101-d411969a0d9a/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= -google.golang.org/genproto v0.0.0-20210716133855-ce7ef5c701ea/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= -google.golang.org/genproto v0.0.0-20210728212813-7823e685a01f/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= -google.golang.org/genproto v0.0.0-20210805201207-89edb61ffb67/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= -google.golang.org/genproto v0.0.0-20210813162853-db860fec028c/go.mod h1:cFeNkxwySK631ADgubI+/XFU/xp8FD5KIVV4rj8UC5w= -google.golang.org/genproto v0.0.0-20210821163610-241b8fcbd6c8/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210903162649-d08c68adba83/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210909211513-a8c4777a87af/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211221195035-429b39de9b1c/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220126215142-9970aeb2e350/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220207164111-0872dc986b00/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220218161850-94dd64e39d7c/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220222213610-43724f9ea8cf/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220304144024-325a89244dc8/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220310185008-1973136f34c6/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220324131243-acbaeb5b85eb/go.mod h1:hAL49I2IFola2sVEjAn7MEwsja0xp51I0tlGAf9hz4E= -google.golang.org/genproto v0.0.0-20220329172620-7be39ac1afc7/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220413183235-5e96e2839df9/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220414192740-2d67ff6cf2b4/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220421151946-72621c1f0bd3/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220429170224-98d788798c3e/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220502173005-c8bf987b8c21/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220518221133-4f43b3371335/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220523171625-347a074981d8/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220608133413-ed9918b62aac/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220616135557-88e70c0c3a90/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220617124728-180714bec0ad/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220624142145-8cd45d7dbd1f/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220628213854-d9e0b6570c03/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220722212130-b98a9ff5e252/go.mod h1:GkXuJDJ6aQ7lnJcRF+SJVgFdQhypqgl3LB1C9vabdRE= -google.golang.org/genproto v0.0.0-20220801145646-83ce21fca29f/go.mod h1:iHe1svFLAZg9VWz891+QbRMwUv9O/1Ww+/mngYeThbc= -google.golang.org/genproto v0.0.0-20220815135757-37a418bb8959/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220817144833-d7fd3f11b9b1/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220822174746-9e6da59bd2fc/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220829144015-23454907ede3/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220829175752-36a9c930ecbf/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220913154956-18f8339a66a5/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220914142337-ca0e39ece12f/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220915135415-7fd63a7952de/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220916172020-2692e8806bfa/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220919141832-68c03719ef51/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220920201722-2b89144ce006/go.mod h1:ht8XFiar2npT/g4vkk7O0WYS1sHOHbdujxbEp7CJWbw= -google.golang.org/genproto v0.0.0-20220926165614-551eb538f295/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI= -google.golang.org/genproto v0.0.0-20220926220553-6981cbe3cfce/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI= -google.golang.org/genproto v0.0.0-20221010155953-15ba04fc1c0e/go.mod h1:3526vdqwhZAwq4wsRUaVG555sVgsNmIjRtO7t/JH29U= -google.golang.org/genproto v0.0.0-20221014173430-6e2ab493f96b/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= -google.golang.org/genproto v0.0.0-20221014213838-99cd37c6964a/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= -google.golang.org/genproto v0.0.0-20221024153911-1573dae28c9c/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= -google.golang.org/genproto v0.0.0-20221024183307-1bc688fe9f3e/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= -google.golang.org/genproto v0.0.0-20221027153422-115e99e71e1c/go.mod h1:CGI5F/G+E5bKwmfYo09AXuVN4dD894kIKUFmVbP2/Fo= -google.golang.org/genproto v0.0.0-20221109142239-94d6d90a7d66/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221114212237-e4508ebdbee1/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221117204609-8f9c96812029/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221118155620-16455021b5e6/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221201164419-0e50fba7f41c/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221201204527-e3fa12d562f3/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221202195650-67e5cbc046fd/go.mod h1:cTsE614GARnxrLsqKREzmNYJACSWWpAWdNMwnD7c2BE= -google.golang.org/genproto v0.0.0-20221207170731-23e4bf6bdc37/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20221227171554-f9683d7f8bef/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230112194545-e10362b5ecf9/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230113154510-dbe35b8444a5/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230123190316-2c411cf9d197/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230124163310-31e0e69b6fc2/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230125152338-dcaf20b6aeaa/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230127162408-596548ed4efa/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230209215440-0dfe4f8abfcc/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230216225411-c8e22ba71e44/go.mod h1:8B0gmkoRebU8ukX6HP+4wrVQUY1+6PkQ44BSyIlflHA= -google.golang.org/genproto v0.0.0-20230222225845-10f96fb3dbec/go.mod h1:3Dl5ZL0q0isWJt+FVcfpQyirqemEuLAK/iFvg1UP1Hw= -google.golang.org/genproto v0.0.0-20230223222841-637eb2293923/go.mod h1:3Dl5ZL0q0isWJt+FVcfpQyirqemEuLAK/iFvg1UP1Hw= -google.golang.org/genproto v0.0.0-20230303212802-e74f57abe488/go.mod h1:TvhZT5f700eVlTNwND1xoEZQeWTB2RY/65kplwl/bFA= -google.golang.org/genproto v0.0.0-20230306155012-7f2fa6fef1f4/go.mod h1:NWraEVixdDnqcqQ30jipen1STv2r/n24Wb7twVTGR4s= -google.golang.org/genproto v0.0.0-20230320184635-7606e756e683/go.mod h1:NWraEVixdDnqcqQ30jipen1STv2r/n24Wb7twVTGR4s= -google.golang.org/genproto v0.0.0-20230323212658-478b75c54725/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= -google.golang.org/genproto v0.0.0-20230330154414-c0448cd141ea/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= -google.golang.org/genproto v0.0.0-20230331144136-dcfb400f0633/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= -google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= -google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU= -google.golang.org/genproto v0.0.0-20230525234025-438c736192d0/go.mod h1:9ExIQyXL5hZrHzQceCwuSYwZZ5QZBazOcprJ5rgs3lY= -google.golang.org/genproto v0.0.0-20230526161137-0005af68ea54/go.mod h1:zqTuNwFlFRsw5zIts5VnzLQxSRqh+CGOTVMlYbY0Eyk= -google.golang.org/genproto v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:zqTuNwFlFRsw5zIts5VnzLQxSRqh+CGOTVMlYbY0Eyk= -google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:xZnkP7mREFX5MORlOPEzLMr+90PPZQ2QWzrVTWfAq64= -google.golang.org/genproto v0.0.0-20230629202037-9506855d4529/go.mod h1:xZnkP7mREFX5MORlOPEzLMr+90PPZQ2QWzrVTWfAq64= -google.golang.org/genproto v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:O9kGHb51iE/nOGvQaDUuadVYqovW56s5emA88lQnj6Y= -google.golang.org/genproto v0.0.0-20230711160842-782d3b101e98/go.mod h1:S7mY02OqCJTD0E1OiQy1F72PWFB4bZJ87cAtLPYgDR0= -google.golang.org/genproto v0.0.0-20230726155614-23370e0ffb3e/go.mod h1:0ggbjUrZYpy1q+ANUS30SEoGZ53cdfwtbuG7Ptgy108= -google.golang.org/genproto v0.0.0-20230803162519-f966b187b2e5/go.mod h1:oH/ZOT02u4kWEp7oYBGYFFkCdKS/uYR9Z7+0/xuuFp8= -google.golang.org/genproto v0.0.0-20230821184602-ccc8af3d0e93/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4= -google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4= -google.golang.org/genproto v0.0.0-20230913181813-007df8e322eb/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4= -google.golang.org/genproto v0.0.0-20230920204549-e6e6cdab5c13/go.mod h1:CCviP9RmpZ1mxVr8MUjCnSiY09IbAXZxhLE6EhHIdPU= -google.golang.org/genproto v0.0.0-20231002182017-d307bd883b97/go.mod h1:t1VqOqqvce95G3hIDCT5FeO3YUc6Q4Oe24L/+rNMxRk= -google.golang.org/genproto v0.0.0-20231012201019-e917dd12ba7a/go.mod h1:EMfReVxb80Dq1hhioy0sOsY9jCE46YDgHlJ7fWVUWRE= -google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b/go.mod h1:CgAqfJo+Xmu0GwA0411Ht3OU3OntXwsGmrmjI8ioGXI= -google.golang.org/genproto/googleapis/api v0.0.0-20230525234020-1aefcd67740a/go.mod h1:ts19tUU+Z0ZShN1y3aPyq2+O3d5FUNNgT6FtOzmrNn8= -google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20230629202037-9506855d4529/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= -google.golang.org/genproto/googleapis/api v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:mPBs5jNgx2GuQGvFwUvVKqtn6HsUw9nP64BedgvqEsQ= -google.golang.org/genproto/googleapis/api v0.0.0-20230711160842-782d3b101e98/go.mod h1:rsr7RhLuwsDKL7RmgDDCUc6yaGr1iqceVb5Wv6f6YvQ= -google.golang.org/genproto/googleapis/api v0.0.0-20230726155614-23370e0ffb3e/go.mod h1:rsr7RhLuwsDKL7RmgDDCUc6yaGr1iqceVb5Wv6f6YvQ= -google.golang.org/genproto/googleapis/api v0.0.0-20230803162519-f966b187b2e5/go.mod h1:5DZzOUPCLYL3mNkQ0ms0F3EuUNZ7py1Bqeq6sxzI7/Q= -google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d/go.mod h1:KjSP20unUpOx5kyQUFa7k4OJg0qeJ7DEZflGDu2p6Bk= -google.golang.org/genproto/googleapis/api v0.0.0-20230913181813-007df8e322eb/go.mod h1:KjSP20unUpOx5kyQUFa7k4OJg0qeJ7DEZflGDu2p6Bk= -google.golang.org/genproto/googleapis/api v0.0.0-20230920204549-e6e6cdab5c13/go.mod h1:RdyHbowztCGQySiCvQPgWQWgWhGnouTdCflKoDBt32U= -google.golang.org/genproto/googleapis/api v0.0.0-20231002182017-d307bd883b97/go.mod h1:iargEX0SFPm3xcfMI0d1domjg0ZF4Aa0p2awqyxhvF0= -google.golang.org/genproto/googleapis/api v0.0.0-20231012201019-e917dd12ba7a/go.mod h1:SUBoKXbI1Efip18FClrQVGjWcyd0QZd8KkvdP34t7ww= -google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b/go.mod h1:IBQ646DjkDkvUIsVq/cc03FUFQ9wbZu7yE396YcL870= -google.golang.org/genproto/googleapis/bytestream v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:ylj+BE99M198VPbBh6A8d9n3w8fChvyLK3wwBOjXBFA= -google.golang.org/genproto/googleapis/bytestream v0.0.0-20230807174057-1744710a1577/go.mod h1:NjCQG/D8JandXxM57PZbAJL1DCNL6EypA0vPPwfsc7c= -google.golang.org/genproto/googleapis/bytestream v0.0.0-20231030173426-d783a09b4405/go.mod h1:GRUCuLdzVqZte8+Dl/D4N25yLzcGqqWaYkeVOwulFqw= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234015-3fc162c6f38a/go.mod h1:xURIpW9ES5+/GZhnV6beoEtxQrnkRGIfP5VQG2tCBLc= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230629202037-9506855d4529/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:8mL13HKkDa+IuJ8yruA3ci0q+0vsUz4m//+ottjwS5o= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98/go.mod h1:TUfxEVdsvPg18p6AslUXFoLdpED4oBnGwyqk3dV1XzM= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230731190214-cbb8c96f2d6d/go.mod h1:TUfxEVdsvPg18p6AslUXFoLdpED4oBnGwyqk3dV1XzM= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230803162519-f966b187b2e5/go.mod h1:zBEcrKX2ZOcEkHWxBPAIvYUWOKKMIhYcmNiUIu2ji3I= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230920183334-c177e329c48b/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230920204549-e6e6cdab5c13/go.mod h1:KSqppvjFjtoCI+KGd4PELB0qLNxdJHRGqRI09mB6pQA= -google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97/go.mod h1:v7nGkzlmW8P3n/bKmWBn2WpBjpOEx8Q6gMueudAmKfY= -google.golang.org/genproto/googleapis/rpc v0.0.0-20231012201019-e917dd12ba7a/go.mod h1:4cYg8o5yUbm77w8ZX00LhMVNl/YVBFJRYWDc0uYWMs0= -google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b/go.mod h1:swOH3j0KzcDDgGUWr+SNpyTen5YrXjS3eyPzFYKc6lc= -google.golang.org/genproto/googleapis/rpc v0.0.0-20231030173426-d783a09b4405/go.mod h1:67X1fPuzjcrkymZzZV1vvkFeTn2Rvc6lYF9MYFGCcwE= -google.golang.org/grpc v0.0.0-20170208002647-2a6bf6142e96/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= -google.golang.org/grpc v1.12.0/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= -google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= -google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= -google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= -google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= -google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= -google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= -google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60= -google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= -google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.31.1/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0= -google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= -google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= -google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.37.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.37.1/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= -google.golang.org/grpc v1.39.1/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= -google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.40.1/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.42.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= -google.golang.org/grpc v1.44.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= -google.golang.org/grpc v1.45.0/go.mod h1:lN7owxKUQEqMfSyQikvvk5tf/6zMPsrK+ONuO11+0rQ= -google.golang.org/grpc v1.46.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.46.2/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.47.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.48.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.49.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= -google.golang.org/grpc v1.50.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= -google.golang.org/grpc v1.50.1/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= -google.golang.org/grpc v1.51.0/go.mod h1:wgNDFcnuBGmxLKI/qn4T+m5BtEBYXJPvibbUPsAIPww= -google.golang.org/grpc v1.52.0/go.mod h1:pu6fVzoFb+NBYNAvQL08ic+lvB2IojljRYuun5vorUY= -google.golang.org/grpc v1.52.3/go.mod h1:pu6fVzoFb+NBYNAvQL08ic+lvB2IojljRYuun5vorUY= -google.golang.org/grpc v1.53.0/go.mod h1:OnIrk0ipVdj4N5d9IUoFUx72/VlD7+jUsHwZgwSMQpw= -google.golang.org/grpc v1.54.0/go.mod h1:PUSEXI6iWghWaB6lXM4knEgpJNu2qUcKfDtNci3EC2g= -google.golang.org/grpc v1.55.0/go.mod h1:iYEXKGkEBhg1PjZQvoYEVPTDkHo1/bjTnfwTeGONTY8= -google.golang.org/grpc v1.56.1/go.mod h1:I9bI3vqKfayGqPUAwGdOSu7kt6oIJLixfffKrpXqQ9s= -google.golang.org/grpc v1.56.2/go.mod h1:I9bI3vqKfayGqPUAwGdOSu7kt6oIJLixfffKrpXqQ9s= -google.golang.org/grpc v1.57.0/go.mod h1:Sd+9RMTACXwmub0zcNY2c4arhtrbBYD1AUHI/dt16Mo= -google.golang.org/grpc v1.58.2/go.mod h1:tgX3ZQDlNJGU96V6yHh1T/JeoBQ2TXdr43YbYSsCJk0= -google.golang.org/grpc v1.58.3/go.mod h1:tgX3ZQDlNJGU96V6yHh1T/JeoBQ2TXdr43YbYSsCJk0= -google.golang.org/grpc v1.59.0/go.mod h1:aUPDwccQo6OTjy7Hct4AfBPD1GptF4fyUjIkQ9YtF98= -google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= -google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= -google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= -google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= -google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE= -google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo= -google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= -google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= -google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= -google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= -google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= -google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= -google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.29.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= -google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= -gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= -gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= -gopkg.in/go-playground/assert.v1 v1.2.1/go.mod h1:9RXL0bg/zibRAgZUYszZSwO/z8Y/a8bDuhia5mkpMnE= -gopkg.in/go-playground/validator.v8 v8.18.2/go.mod h1:RX2a/7Ha8BgOhfk7j780h4/u/RRjR0eouCJSH80/M2Y= -gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce/go.mod h1:yeKp02qBN3iKW1OzL3MGk2IdtZzaj7SFntXj72NppTA= -gopkg.in/natefinch/lumberjack.v2 v2.0.0/go.mod h1:l0ndWWf7gzL7RNwBG7wST/UCcT4T24xpD6X8LsfU/+k= gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce/go.mod h1:5AcXVHNjg+BDxry382+8OKon8SEWiKktQR07RKPsv1c= +gopkg.in/olebedev/go-duktape.v3 v3.0.0-20200316214253-d7b0ff38cac9/go.mod h1:uAJfkITjFhyEEuUfm7bsmCZRbW5WRq8s9EY8HZ6hCns= gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= -gopkg.in/src-d/go-billy.v4 v4.3.2/go.mod h1:nDjArDMp+XMs1aFAESLRjfGSgfvoYN0hDfzEk0GjC98= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= +gopkg.in/urfave/cli.v1 v1.20.0/go.mod h1:vuBzUtMdQeixQj8LVd+/98pzhxNGQoyuPBlsXHOQNO0= gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gopkg.in/yaml.v3 v3.0.0/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= -honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -honnef.co/go/tools v0.1.3/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las= -lukechampine.com/blake3 v1.1.7/go.mod h1:tkKEOtDkNtklkXtLNEOGNq5tcV90tJiA1vAA12R78LA= -lukechampine.com/blake3 v1.2.1 h1:YuqqRuaqsGV71BV/nm9xlI0MKUv4QC54jQnBChWbGnI= -lukechampine.com/blake3 v1.2.1/go.mod h1:0OFRp7fBtAylGVCO40o87sbupkyIGgbpv1+M1k1LM6k= -lukechampine.com/uint128 v1.1.1/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= -lukechampine.com/uint128 v1.2.0/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= -modernc.org/cc/v3 v3.36.0/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= -modernc.org/cc/v3 v3.36.2/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= -modernc.org/cc/v3 v3.36.3/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= -modernc.org/cc/v3 v3.37.0/go.mod h1:vtL+3mdHx/wcj3iEGz84rQa8vEqR6XM84v5Lcvfph20= -modernc.org/cc/v3 v3.40.0/go.mod h1:/bTg4dnWkSXowUO6ssQKnOV0yMVxDYNIsIrzqTFDGH0= -modernc.org/ccgo/v3 v3.0.0-20220428102840-41399a37e894/go.mod h1:eI31LL8EwEBKPpNpA4bU1/i+sKOwOrQy8D87zWUcRZc= -modernc.org/ccgo/v3 v3.0.0-20220430103911-bc99d88307be/go.mod h1:bwdAnOoaIt8Ax9YdWGjxWsdkPcZyRPHqrOvJxaKAKGw= -modernc.org/ccgo/v3 v3.0.0-20220904174949-82d86e1b6d56/go.mod h1:YSXjPL62P2AMSxBphRHPn7IkzhVHqkvOnRKAKh+W6ZI= -modernc.org/ccgo/v3 v3.16.4/go.mod h1:tGtX0gE9Jn7hdZFeU88slbTh1UtCYKusWOoCJuvkWsQ= -modernc.org/ccgo/v3 v3.16.6/go.mod h1:tGtX0gE9Jn7hdZFeU88slbTh1UtCYKusWOoCJuvkWsQ= -modernc.org/ccgo/v3 v3.16.8/go.mod h1:zNjwkizS+fIFDrDjIAgBSCLkWbJuHF+ar3QRn+Z9aws= -modernc.org/ccgo/v3 v3.16.9/go.mod h1:zNMzC9A9xeNUepy6KuZBbugn3c0Mc9TeiJO4lgvkJDo= -modernc.org/ccgo/v3 v3.16.13-0.20221017192402-261537637ce8/go.mod h1:fUB3Vn0nVPReA+7IG7yZDfjv1TMWjhQP8gCxrFAtL5g= -modernc.org/ccgo/v3 v3.16.13/go.mod h1:2Quk+5YgpImhPjv2Qsob1DnZ/4som1lJTodubIcoUkY= -modernc.org/ccorpus v1.11.6/go.mod h1:2gEUTrWqdpH2pXsmTM1ZkjeSrUWDpjMu2T6m29L/ErQ= -modernc.org/httpfs v1.0.6/go.mod h1:7dosgurJGp0sPaRanU53W4xZYKh14wfzX420oZADeHM= -modernc.org/libc v0.0.0-20220428101251-2d5f3daf273b/go.mod h1:p7Mg4+koNjc8jkqwcoFBJx7tXkpj00G77X7A72jXPXA= -modernc.org/libc v1.16.0/go.mod h1:N4LD6DBE9cf+Dzf9buBlzVJndKr/iJHG97vGLHYnb5A= -modernc.org/libc v1.16.1/go.mod h1:JjJE0eu4yeK7tab2n4S1w8tlWd9MxXLRzheaRnAKymU= -modernc.org/libc v1.16.17/go.mod h1:hYIV5VZczAmGZAnG15Vdngn5HSF5cSkbvfz2B7GRuVU= -modernc.org/libc v1.16.19/go.mod h1:p7Mg4+koNjc8jkqwcoFBJx7tXkpj00G77X7A72jXPXA= -modernc.org/libc v1.17.0/go.mod h1:XsgLldpP4aWlPlsjqKRdHPqCxCjISdHfM/yeWC5GyW0= -modernc.org/libc v1.17.1/go.mod h1:FZ23b+8LjxZs7XtFMbSzL/EhPxNbfZbErxEHc7cbD9s= -modernc.org/libc v1.17.4/go.mod h1:WNg2ZH56rDEwdropAJeZPQkXmDwh+JCA1s/htl6r2fA= -modernc.org/libc v1.18.0/go.mod h1:vj6zehR5bfc98ipowQOM2nIDUZnVew/wNC/2tOGS+q0= -modernc.org/libc v1.20.3/go.mod h1:ZRfIaEkgrYgZDl6pa4W39HgN5G/yDW+NRmNKZBDFrk0= -modernc.org/libc v1.21.4/go.mod h1:przBsL5RDOZajTVslkugzLBj1evTue36jEomFQOoYuI= -modernc.org/libc v1.22.2/go.mod h1:uvQavJ1pZ0hIoC/jfqNoMLURIMhKzINIWypNM17puug= -modernc.org/mathutil v1.2.2/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= -modernc.org/mathutil v1.4.1/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= -modernc.org/mathutil v1.5.0/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= -modernc.org/memory v1.1.1/go.mod h1:/0wo5ibyrQiaoUoH7f9D8dnglAmILJ5/cxZlRECf+Nw= -modernc.org/memory v1.2.0/go.mod h1:/0wo5ibyrQiaoUoH7f9D8dnglAmILJ5/cxZlRECf+Nw= -modernc.org/memory v1.2.1/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= -modernc.org/memory v1.3.0/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= -modernc.org/memory v1.4.0/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= -modernc.org/memory v1.5.0/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= -modernc.org/opt v0.1.1/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0= -modernc.org/opt v0.1.3/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0= -modernc.org/sqlite v1.18.1/go.mod h1:6ho+Gow7oX5V+OiOQ6Tr4xeqbx13UZ6t+Fw9IRUG4d4= -modernc.org/sqlite v1.18.2/go.mod h1:kvrTLEWgxUcHa2GfHBQtanR1H9ht3hTJNtKpzH9k1u0= -modernc.org/strutil v1.1.1/go.mod h1:DE+MQQ/hjKBZS2zNInV5hhcipt5rLPWkmpbGeW5mmdw= -modernc.org/strutil v1.1.3/go.mod h1:MEHNA7PdEnEwLvspRMtWTNnp2nnyvMfkimT1NKNAGbw= -modernc.org/tcl v1.13.1/go.mod h1:XOLfOwzhkljL4itZkK6T72ckMgvj0BDsnKNdZVUOecw= -modernc.org/tcl v1.13.2/go.mod h1:7CLiGIPo1M8Rv1Mitpv5akc2+8fxUd2y2UzC/MfMzy0= -modernc.org/token v1.0.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= -modernc.org/token v1.0.1/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= -modernc.org/token v1.1.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= -modernc.org/z v1.5.1/go.mod h1:eWFB510QWW5Th9YGZT81s+LwvaAs3Q2yr4sP0rmLkv8= -pgregory.net/rapid v0.4.7 h1:MTNRktPuv5FNqOO151TM9mDTa+XHcX6ypYeISDVD14g= -pgregory.net/rapid v0.4.7/go.mod h1:UYpPVyjFHzYBGHIxLFoupi8vwk6rXNzRY9OMvVxFIOU= -rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= -rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= -rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= -rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= -rsc.io/tmplfunc v0.0.3/go.mod h1:AG3sTPzElb1Io3Yg4voV9AGZJuleGAwaVRxL9M49PhA= From 309e602036a26f23b20c5d9eaa20381405ed166a Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Mon, 10 Jul 2023 11:59:57 -0500 Subject: [PATCH 003/160] remove casting and fix conflicts --- contracts/FlowStorageFees.cdc | 6 ++-- contracts/NodeVersionBeacon.cdc | 2 +- contracts/epochs/FlowClusterQC.cdc | 4 +-- contracts/epochs/FlowEpoch.cdc | 46 ++++++++++-------------------- lib/go/test/go.sum | 2 ++ 5 files changed, 23 insertions(+), 37 deletions(-) diff --git a/contracts/FlowStorageFees.cdc b/contracts/FlowStorageFees.cdc index fc3db9485..6c9f3ab60 100644 --- a/contracts/FlowStorageFees.cdc +++ b/contracts/FlowStorageFees.cdc @@ -130,8 +130,8 @@ access(all) contract FlowStorageFees { // Amount in megabytes // Returns Flow tokens access(all) fun storageCapacityToFlow(_ amount: UFix64): UFix64 { - if FlowStorageFees.storageMegaBytesPerReservedFLOW == 0.0 as UFix64 { - return 0.0 as UFix64 + if FlowStorageFees.storageMegaBytesPerReservedFLOW == 0.0 { + return 0.0 } // possible loss of precision // putting the result back into `flowToStorageCapacity` might not yield the same result @@ -141,7 +141,7 @@ access(all) contract FlowStorageFees { // converts storage used from UInt64 Bytes to UFix64 Megabytes. access(all) fun convertUInt64StorageBytesToUFix64Megabytes(_ storage: UInt64): UFix64 { // safe convert UInt64 to UFix64 (without overflow) - let f = UFix64(storage % 100000000 as UInt64) * 0.00000001 as UFix64 + UFix64(storage / 100000000 as UInt64) + let f = UFix64(storage % 100000000) * 0.00000001 + UFix64(storage / 100000000) // decimal point correction. Megabytes to bytes have a conversion of 10^-6 while UFix64 minimum value is 10^-8 let storageMb = f.saturatingMultiply(100.0) return storageMb diff --git a/contracts/NodeVersionBeacon.cdc b/contracts/NodeVersionBeacon.cdc index cc0686f01..80c508a66 100644 --- a/contracts/NodeVersionBeacon.cdc +++ b/contracts/NodeVersionBeacon.cdc @@ -386,7 +386,7 @@ access(all) contract NodeVersionBeacon { /// Function that returns the version that was defined at the most /// recent block height boundary. May return zero boundary. access(all) fun getCurrentVersionBoundary(): VersionBoundary { - var current = 0 as UInt64 + var current = 0 // index is never 0 since version 0 is always in the past if let index = NodeVersionBeacon.firstUpcomingBoundary { diff --git a/contracts/epochs/FlowClusterQC.cdc b/contracts/epochs/FlowClusterQC.cdc index 63a274f80..a1599fa97 100644 --- a/contracts/epochs/FlowClusterQC.cdc +++ b/contracts/epochs/FlowClusterQC.cdc @@ -103,8 +103,8 @@ access(all) contract FlowClusterQC { /// Returns the minimum sum of vote weight required in order to be able to generate a /// valid quorum certificate for this cluster. access(all) view fun voteThreshold(): UInt64 { - if self.totalWeight == 0 as UInt64 { - return 0 as UInt64 + if self.totalWeight == 0 { + return 0 } let floorOneThird = self.totalWeight / UInt64(3) // integer division, includes floor diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 8ad401028..0086b7702 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -98,7 +98,7 @@ access(all) contract FlowEpoch { /// The EpochCommit service event is emitted when we transition from the Epoch /// Committed phase. It is emitted only when all preparation for the upcoming epoch /// has been completed - access(all) event EpochCommit( + access(all) event EpochCommit ( /// The counter for the upcoming epoch. Must be equal to the counter in the /// previous EpochSetup event. @@ -250,8 +250,8 @@ access(all) contract FlowEpoch { /// access(contract) fun saveEpochMetadata(_ newMetadata: EpochMetadata) { pre { - self.currentEpochCounter == (0 as UInt64) || - (newMetadata.counter >= self.currentEpochCounter - (1 as UInt64) && + self.currentEpochCounter == 0 || + (newMetadata.counter >= self.currentEpochCounter - 1 && newMetadata.counter <= self.proposedEpochCounter()): "Cannot modify epoch metadata from epochs after the proposed epoch or before the previous epoch" } @@ -327,7 +327,7 @@ access(all) contract FlowEpoch { access(all) fun updateFLOWSupplyIncreasePercentage(_ newPercentage: UFix64) { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only update fields during the staking auction" - newPercentage <= 1.0 as UFix64: "New value must be between zero and one" + newPercentage <= 1.0: "New value must be between zero and one" } FlowEpoch.configurableMetadata.FLOWsupplyIncreasePercentage = newPercentage @@ -525,7 +525,7 @@ access(all) contract FlowEpoch { /// Pays rewards to the nodes and delegators of the previous epoch access(account) fun payRewardsForPreviousEpoch() { - if let previousEpochMetadata = self.getEpochMetadata(self.currentEpochCounter - (1 as UInt64)) { + if let previousEpochMetadata = self.getEpochMetadata(self.currentEpochCounter - 1) { if !previousEpochMetadata.rewardsPaid { let summary = FlowIDTableStaking.EpochRewardsSummary(totalRewards: previousEpochMetadata.totalRewards, breakdown: previousEpochMetadata.rewardAmounts) self.borrowStakingAdmin().payRewards(summary) @@ -611,7 +611,7 @@ access(all) contract FlowEpoch { startView: currentEpochMetadata.endView + UInt64(1), endView: currentEpochMetadata.endView + self.configurableMetadata.numViewsInEpoch, stakingEndView: currentEpochMetadata.endView + self.configurableMetadata.numViewsInStakingAuction, - totalRewards: 0.0 as UFix64, + totalRewards: 0.0, collectorClusters: collectorClusters, clusterQCs: [], dkgKeys: []) @@ -626,9 +626,9 @@ access(all) contract FlowEpoch { finalView: proposedEpochMetadata.endView, collectorClusters: collectorClusters, randomSource: randomSource, - DKGPhase1FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + self.configurableMetadata.numViewsInDKGPhase - 1 as UInt64, - DKGPhase2FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + (2 as UInt64 * self.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, - DKGPhase3FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + (3 as UInt64 * self.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64) + DKGPhase1FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + self.configurableMetadata.numViewsInDKGPhase - 1, + DKGPhase2FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + (2 * self.configurableMetadata.numViewsInDKGPhase) - 1, + DKGPhase3FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + (3 * self.configurableMetadata.numViewsInDKGPhase) - 1) } /// Ends the EpochSetup phase when the QC and DKG are completed @@ -712,12 +712,8 @@ access(all) contract FlowEpoch { /// Makes sure the set of phase lengths (in views) are valid. /// Sub-phases cannot be greater than the full epoch length. -<<<<<<< HEAD - pub view fun isValidPhaseConfiguration(_ auctionLen: UInt64, _ dkgPhaseLen: UInt64, _ epochLen: UInt64): Bool { -======= access(all) view fun isValidPhaseConfiguration(_ auctionLen: UInt64, _ dkgPhaseLen: UInt64, _ epochLen: UInt64): Bool { ->>>>>>> origin/merge-stable-cadence - return (auctionLen + ((3 as UInt64)*dkgPhaseLen)) < epochLen + return (auctionLen + (3*dkgPhaseLen)) < epochLen } /// Randomizes the list of collector node ID and uses a round robin algorithm @@ -734,7 +730,7 @@ access(all) contract FlowEpoch { let nodeWeightsDictionary: [{String: UInt64}] = [] while clusterIndex < self.configurableMetadata.numCollectorClusters { nodeWeightsDictionary.append({}) - clusterIndex = clusterIndex + 1 as UInt16 + clusterIndex = clusterIndex + 1 } clusterIndex = 0 @@ -745,7 +741,7 @@ access(all) contract FlowEpoch { nodeWeightsDictionary[clusterIndex][id] = nodeInfo.initialWeight // Advance to the next cluster, or back to the first if we have gotten to the last one - clusterIndex = clusterIndex + 1 as UInt16 + clusterIndex = clusterIndex + 1 if clusterIndex == self.configurableMetadata.numCollectorClusters { clusterIndex = 0 } @@ -756,7 +752,7 @@ access(all) contract FlowEpoch { clusterIndex = 0 while clusterIndex < self.configurableMetadata.numCollectorClusters { clusters.append(FlowClusterQC.Cluster(index: clusterIndex, nodeWeights: nodeWeightsDictionary[clusterIndex]!)) - clusterIndex = clusterIndex + 1 as UInt16 + clusterIndex = clusterIndex + 1 } return clusters @@ -816,28 +812,16 @@ access(all) contract FlowEpoch { } /// Returns the metadata that is able to be configured by the admin -<<<<<<< HEAD - pub view fun getConfigMetadata(): Config { -======= access(all) view fun getConfigMetadata(): Config { ->>>>>>> origin/merge-stable-cadence return self.configurableMetadata } /// The proposed Epoch counter is always the current counter plus 1 -<<<<<<< HEAD - pub view fun proposedEpochCounter(): UInt64 { - return self.currentEpochCounter + 1 as UInt64 - } - - pub view fun automaticRewardsEnabled(): Bool { -======= access(all) view fun proposedEpochCounter(): UInt64 { return self.currentEpochCounter + 1 as UInt64 } access(all) view fun automaticRewardsEnabled(): Bool { ->>>>>>> origin/merge-stable-cadence return self.account.copy(from: /storage/flowAutomaticRewardsEnabled) ?? false } @@ -924,8 +908,8 @@ access(all) contract FlowEpoch { let firstEpochMetadata = EpochMetadata(counter: self.currentEpochCounter, seed: randomSource, startView: currentBlock.view, - endView: currentBlock.view + self.configurableMetadata.numViewsInEpoch - (1 as UInt64), - stakingEndView: currentBlock.view + self.configurableMetadata.numViewsInStakingAuction - (1 as UInt64), + endView: currentBlock.view + self.configurableMetadata.numViewsInEpoch - 1, + stakingEndView: currentBlock.view + self.configurableMetadata.numViewsInStakingAuction - 1, totalRewards: FlowIDTableStaking.getEpochTokenPayout(), collectorClusters: collectorClusters, clusterQCs: clusterQCs, diff --git a/lib/go/test/go.sum b/lib/go/test/go.sum index 483cf3a4e..ba15b0a03 100644 --- a/lib/go/test/go.sum +++ b/lib/go/test/go.sum @@ -1363,6 +1363,7 @@ github.com/golang-jwt/jwt/v4 v4.5.0/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= github.com/golang/geo v0.0.0-20190916061304-5b978397cfec/go.mod h1:QZ0nwyI2jOfgRAoBvP+ab5aRr7c9x7lhGEJrKvBwjWI= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= +github.com/golang/glog v1.0.0 h1:nfP3RFugxnNRyKgeWd4oI1nYvXpxrx8ck8ZrcizshdQ= github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4= github.com/golang/glog v1.1.0/go.mod h1:pfYeQZ3JWZoXTV5sFc986z3HTpwQs9At6P4ImfuP3NQ= github.com/golang/glog v1.1.2/go.mod h1:zR+okUeTbrL6EL3xHUDxZuEtGv04p5shwip1+mL/rLQ= @@ -1400,6 +1401,7 @@ github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= +github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek= From 08c37b8f5da0989efd04833bd636d0210b866de2 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 18 Jul 2023 13:36:31 -0500 Subject: [PATCH 004/160] integrate ft and nft stable cadence changes, use access, view, and entitlements --- lib/go/contracts/contracts.go | 253 +++++++--- lib/go/contracts/go.mod | 14 +- lib/go/contracts/go.sum | 927 ++++++++++++++++++++++++++++++++++ lib/go/templates/go.sum | 3 + 4 files changed, 1114 insertions(+), 83 deletions(-) diff --git a/lib/go/contracts/contracts.go b/lib/go/contracts/contracts.go index 59b22a199..bd2ab6deb 100644 --- a/lib/go/contracts/contracts.go +++ b/lib/go/contracts/contracts.go @@ -10,7 +10,7 @@ import ( ftcontracts "github.com/onflow/flow-ft/lib/go/contracts" nftcontracts "github.com/onflow/flow-nft/lib/go/contracts" - "github.com/onflow/flow-core-contracts/lib/go/templates" + "github.com/onflow/flow-go-sdk" "github.com/onflow/flow-core-contracts/lib/go/contracts/internal/assets" ) @@ -22,24 +22,23 @@ import ( /// /// Example /// -/// flowTokenCode := contracts.FlowToken(env) +/// flowTokenCode := contracts.FlowToken(fungibleTokenAddr) /// const ( - flowFeesFilename = "FlowFees.cdc" - storageFeesFilename = "FlowStorageFees.cdc" - flowServiceAccountFilename = "FlowServiceAccount.cdc" - flowTokenFilename = "FlowToken.cdc" - flowIdentityTableFilename = "FlowIDTableStaking.cdc" - flowQCFilename = "epochs/FlowClusterQC.cdc" - flowDKGFilename = "epochs/FlowDKG.cdc" - flowEpochFilename = "epochs/FlowEpoch.cdc" - flowLockedTokensFilename = "LockedTokens.cdc" - flowStakingProxyFilename = "StakingProxy.cdc" - flowStakingCollectionFilename = "FlowStakingCollection.cdc" - flowContractAuditsFilename = "FlowContractAudits.cdc" - flowNodeVersionBeaconFilename = "NodeVersionBeacon.cdc" - flowRandomBeaconHistoryFilename = "RandomBeaconHistory.cdc" + flowFeesFilename = "FlowFees.cdc" + storageFeesFilename = "FlowStorageFees.cdc" + flowServiceAccountFilename = "FlowServiceAccount.cdc" + flowTokenFilename = "FlowToken.cdc" + flowIdentityTableFilename = "FlowIDTableStaking.cdc" + flowQCFilename = "epochs/FlowClusterQC.cdc" + flowDKGFilename = "epochs/FlowDKG.cdc" + flowEpochFilename = "epochs/FlowEpoch.cdc" + flowLockedTokensFilename = "LockedTokens.cdc" + flowStakingProxyFilename = "StakingProxy.cdc" + flowStakingCollectionFilename = "FlowStakingCollection.cdc" + flowContractAuditsFilename = "FlowContractAudits.cdc" + flowNodeVersionBeaconFilename = "NodeVersionBeacon.cdc" // Test contracts // only used for testing @@ -50,18 +49,18 @@ const ( placeholderFungibleTokenAddress = "\"FungibleToken\"" placeholderFungibleTokenMVAddress = "\"FungibleTokenMetadataViews\"" placeholderMetadataViewsAddress = "\"MetadataViews\"" - placeholderFlowTokenAddress = "\"FlowToken\"" - placeholderIDTableAddress = "\"FlowIDTableStaking\"" - placeholderBurnerAddress = "\"Burner\"" - placeholderStakingProxyAddress = "\"StakingProxy\"" - placeholderQCAddr = "\"FlowClusterQC\"" - placeholderDKGAddr = "\"FlowDKG\"" - placeholderEpochAddr = "\"FlowEpoch\"" - placeholderFlowFeesAddress = "\"FlowFees\"" - placeholderStorageFeesAddress = "\"FlowStorageFees\"" - placeholderLockedTokensAddress = "\"LockedTokens\"" - placeholderStakingCollectionAddress = "\"FlowStakingCollection\"" - placeholderNodeVersionBeaconAddress = "\"NodeVersionBeacon\"" + placeholderViewResolverAddress = "\"ViewResolver\"" + placeholderFlowTokenAddress = "0xFLOWTOKENADDRESS" + placeholderIDTableAddress = "0xFLOWIDTABLESTAKINGADDRESS" + placeholderStakingProxyAddress = "0xSTAKINGPROXYADDRESS" + placeholderQCAddr = "0xQCADDRESS" + placeholderDKGAddr = "0xDKGADDRESS" + placeholderEpochAddr = "0xEPOCHADDRESS" + placeholderFlowFeesAddress = "0xFLOWFEESADDRESS" + placeholderStorageFeesAddress = "0xFLOWSTORAGEFEESADDRESS" + placeholderLockedTokensAddress = "0xLOCKEDTOKENSADDRESS" + placeholderStakingCollectionAddress = "0xFLOWSTAKINGCOLLECTIONADDRESS" + placeholderNodeVersionBeaconAddress = "0xNODEVERSIONBEACONADDRESS" ) // Adds a `0x` prefix to the provided address string @@ -78,44 +77,59 @@ func withHexPrefix(address string) string { } // FungibleToken returns the FungibleToken contract interface. -func FungibleToken(env templates.Environment) []byte { - return ftcontracts.FungibleToken(env.ViewResolverAddress, env.BurnerAddress) +func FungibleToken() []byte { + return ftcontracts.FungibleToken() } // FungibleTokenMetadataViews returns the FungibleTokenMetadataViews contract interface. -func FungibleTokenMetadataViews(env templates.Environment) []byte { - return ftcontracts.FungibleTokenMetadataViews(env.FungibleTokenAddress, env.MetadataViewsAddress, env.ViewResolverAddress) +func FungibleTokenMetadataViews(fungibleTokenAddr, metadataViewsAddr, viewResolverAddress string) []byte { + return ftcontracts.FungibleTokenMetadataViews(fungibleTokenAddr, metadataViewsAddr, viewResolverAddress) } -// FungibleTokenSwitchboard returns the FungibleTokenSwitchboard contract interface. -func FungibleTokenSwitchboard(env templates.Environment) []byte { - return ftcontracts.FungibleTokenSwitchboard(env.FungibleTokenAddress) -} - -func NonFungibleToken(env templates.Environment) []byte { - return nftcontracts.NonFungibleToken(env.ViewResolverAddress) +func NonFungibleToken() []byte { + return nftcontracts.NonFungibleToken() } func ViewResolver() []byte { - return nftcontracts.ViewResolver() -} - -func Burner() []byte { - return ftcontracts.Burner() + return nftcontracts.Resolver() } // MetadataViews returns the MetadataViews contract interface. -func MetadataViews(env templates.Environment) []byte { - return nftcontracts.MetadataViews(env.FungibleTokenAddress, env.NonFungibleTokenAddress, env.ViewResolverAddress) +func MetadataViews(fungibleTokenAddr, nonFungibleTokenAddr, viewResolverAddr string) []byte { + return nftcontracts.MetadataViews(flow.HexToAddress(fungibleTokenAddr), flow.HexToAddress(nonFungibleTokenAddr), flow.HexToAddress(viewResolverAddr)) } // FlowToken returns the FlowToken contract. // // The returned contract will import the FungibleToken contract from the specified address. -func FlowToken(env templates.Environment) []byte { +func FlowToken(fungibleTokenAddress, metadataViewsAddress, viewResolverAddress string) []byte { code := assets.MustAssetString(flowTokenFilename) - code = templates.ReplaceAddresses(code, env) + // Replace the fungible token placeholder address + // with the provided address + code = strings.ReplaceAll( + code, + placeholderFungibleTokenAddress, + withHexPrefix(fungibleTokenAddress), + ) + + code = strings.ReplaceAll( + code, + placeholderFungibleTokenMVAddress, + withHexPrefix(fungibleTokenAddress), + ) + + code = strings.ReplaceAll( + code, + placeholderMetadataViewsAddress, + withHexPrefix(metadataViewsAddress), + ) + + code = strings.ReplaceAll( + code, + placeholderViewResolverAddress, + withHexPrefix(viewResolverAddress), + ) // Replace the init method storage operations code = strings.ReplaceAll( @@ -128,7 +142,7 @@ func FlowToken(env templates.Environment) []byte { code = strings.ReplaceAll( code, "init()", - "init(adminAccount: auth(Storage, Capabilities) &Account)", + "init(adminAccount: AuthAccount)", ) return []byte(code) @@ -138,23 +152,25 @@ func FlowToken(env templates.Environment) []byte { // // The returned contract will import the FungibleToken and FlowToken // contracts from the specified addresses. -func FlowFees(env templates.Environment) []byte { +func FlowFees(fungibleTokenAddress, flowTokenAddress, storageFees string) []byte { code := assets.MustAssetString(flowFeesFilename) - code = templates.ReplaceAddresses(code, env) + code = strings.ReplaceAll( + code, + placeholderFungibleTokenAddress, + withHexPrefix(fungibleTokenAddress), + ) - // Replace the init method storage operations code = strings.ReplaceAll( code, - "self.account.storage.save(<-admin, to: /storage/flowFeesAdmin)", - "adminAccount.storage.save(<-admin, to: /storage/flowFeesAdmin)", + placeholderFlowTokenAddress, + withHexPrefix(flowTokenAddress), ) - // Replace the init method admin account parameter code = strings.ReplaceAll( code, - "init()", - "init(adminAccount: auth(SaveValue) &Account)", + placeholderStorageFeesAddress, + withHexPrefix(storageFees), ) return []byte(code) @@ -162,10 +178,20 @@ func FlowFees(env templates.Environment) []byte { // FlowStorageFees returns the FlowStorageFees contract // which imports the fungible token and flow token contracts -func FlowStorageFees(env templates.Environment) []byte { +func FlowStorageFees(fungibleTokenAddress, flowTokenAddress string) []byte { code := assets.MustAssetString(storageFeesFilename) - code = templates.ReplaceAddresses(code, env) + code = strings.ReplaceAll( + code, + placeholderFungibleTokenAddress, + withHexPrefix(fungibleTokenAddress), + ) + + code = strings.ReplaceAll( + code, + placeholderFlowTokenAddress, + withHexPrefix(flowTokenAddress), + ) return []byte(code) } @@ -174,19 +200,49 @@ func FlowStorageFees(env templates.Environment) []byte { // // The returned contract will import the FungibleToken, FlowToken, FlowFees, and FlowStorageFees // contracts from the specified addresses. -func FlowServiceAccount(env templates.Environment) []byte { +func FlowServiceAccount(fungibleTokenAddress, flowTokenAddress, flowFeesAddress, storageFeesAddress string) []byte { code := assets.MustAssetString(flowServiceAccountFilename) - code = templates.ReplaceAddresses(code, env) + code = strings.ReplaceAll( + code, + placeholderFungibleTokenAddress, + withHexPrefix(fungibleTokenAddress), + ) + + code = strings.ReplaceAll( + code, + placeholderFlowTokenAddress, + withHexPrefix(flowTokenAddress), + ) + + code = strings.ReplaceAll( + code, + placeholderFlowFeesAddress, + withHexPrefix(flowFeesAddress), + ) + + code = strings.ReplaceAll( + code, + placeholderStorageFeesAddress, + withHexPrefix(storageFeesAddress), + ) return []byte(code) } // FlowIDTableStaking returns the FlowIDTableStaking contract -func FlowIDTableStaking(env templates.Environment) []byte { - code := assets.MustAssetString(flowIdentityTableFilename) +// +// # The staking contract imports the FungibleToken and FlowToken contracts +// +// Parameter: latest: indicates if the contract is the latest version, or an old version. Used to test upgrades +func FlowIDTableStaking(fungibleTokenAddress, flowTokenAddress, flowFeesAddress string, latest bool) []byte { + var code string - code = templates.ReplaceAddresses(code, env) + code = assets.MustAssetString(flowIdentityTableFilename) + + code = strings.ReplaceAll(code, placeholderFungibleTokenAddress, withHexPrefix(fungibleTokenAddress)) + code = strings.ReplaceAll(code, placeholderFlowTokenAddress, withHexPrefix(flowTokenAddress)) + code = strings.ReplaceAll(code, placeholderFlowFeesAddress, withHexPrefix(flowFeesAddress)) return []byte(code) } @@ -199,11 +255,27 @@ func FlowStakingProxy() []byte { // FlowStakingCollection returns the StakingCollection contract. func FlowStakingCollection( - env templates.Environment, + fungibleTokenAddress, + flowTokenAddress, + idTableAddress, + stakingProxyAddress, + lockedTokensAddress, + storageFeesAddress, + qcAddress, + dkgAddress, + epochAddress string, ) []byte { code := assets.MustAssetString(flowStakingCollectionFilename) - code = templates.ReplaceAddresses(code, env) + code = strings.ReplaceAll(code, placeholderFungibleTokenAddress, withHexPrefix(fungibleTokenAddress)) + code = strings.ReplaceAll(code, placeholderFlowTokenAddress, withHexPrefix(flowTokenAddress)) + code = strings.ReplaceAll(code, placeholderIDTableAddress, withHexPrefix(idTableAddress)) + code = strings.ReplaceAll(code, placeholderStakingProxyAddress, withHexPrefix(stakingProxyAddress)) + code = strings.ReplaceAll(code, placeholderLockedTokensAddress, withHexPrefix(lockedTokensAddress)) + code = strings.ReplaceAll(code, placeholderStorageFeesAddress, withHexPrefix(storageFeesAddress)) + code = strings.ReplaceAll(code, placeholderQCAddr, withHexPrefix(qcAddress)) + code = strings.ReplaceAll(code, placeholderDKGAddr, withHexPrefix(dkgAddress)) + code = strings.ReplaceAll(code, placeholderEpochAddr, withHexPrefix(epochAddress)) return []byte(code) } @@ -212,11 +284,19 @@ func FlowStakingCollection( // // Locked Tokens imports FungibleToken, FlowToken, FlowIDTableStaking, StakingProxy, and FlowStorageFees func FlowLockedTokens( - env templates.Environment, + fungibleTokenAddress, + flowTokenAddress, + idTableAddress, + stakingProxyAddress, + storageFeesAddress string, ) []byte { code := assets.MustAssetString(flowLockedTokensFilename) - code = templates.ReplaceAddresses(code, env) + code = strings.ReplaceAll(code, placeholderFungibleTokenAddress, withHexPrefix(fungibleTokenAddress)) + code = strings.ReplaceAll(code, placeholderFlowTokenAddress, withHexPrefix(flowTokenAddress)) + code = strings.ReplaceAll(code, placeholderIDTableAddress, withHexPrefix(idTableAddress)) + code = strings.ReplaceAll(code, placeholderStakingProxyAddress, withHexPrefix(stakingProxyAddress)) + code = strings.ReplaceAll(code, placeholderStorageFeesAddress, withHexPrefix(storageFeesAddress)) return []byte(code) } @@ -236,10 +316,21 @@ func FlowDKG() []byte { } // FlowEpoch returns the FlowEpoch contract. -func FlowEpoch(env templates.Environment) []byte { +func FlowEpoch(fungibleTokenAddress, + flowTokenAddress, + idTableAddress, + qcAddress, + dkgAddress string, + flowFeesAddress string, +) []byte { code := assets.MustAssetString(flowEpochFilename) - code = templates.ReplaceAddresses(code, env) + code = strings.ReplaceAll(code, placeholderFungibleTokenAddress, withHexPrefix(fungibleTokenAddress)) + code = strings.ReplaceAll(code, placeholderFlowTokenAddress, withHexPrefix(flowTokenAddress)) + code = strings.ReplaceAll(code, placeholderIDTableAddress, withHexPrefix(idTableAddress)) + code = strings.ReplaceAll(code, placeholderQCAddr, withHexPrefix(qcAddress)) + code = strings.ReplaceAll(code, placeholderDKGAddr, withHexPrefix(dkgAddress)) + code = strings.ReplaceAll(code, placeholderFlowFeesAddress, withHexPrefix(flowFeesAddress)) return []byte(code) } @@ -251,12 +342,6 @@ func NodeVersionBeacon() []byte { return []byte(code) } -func RandomBeaconHistory() []byte { - code := assets.MustAssetString(flowRandomBeaconHistoryFilename) - - return []byte(code) -} - // FlowContractAudits returns the deprecated FlowContractAudits contract. // This contract is no longer used on any network func FlowContractAudits() []byte { @@ -292,7 +377,6 @@ func TESTFlowStakingCollection( code := assets.MustAssetString(flowStakingCollectionFilename) code = strings.ReplaceAll(code, placeholderFungibleTokenAddress, withHexPrefix(fungibleTokenAddress)) - code = strings.ReplaceAll(code, placeholderBurnerAddress, withHexPrefix(storageFeesAddress)) code = strings.ReplaceAll(code, placeholderFlowTokenAddress, withHexPrefix(flowTokenAddress)) code = strings.ReplaceAll(code, placeholderIDTableAddress, withHexPrefix(idTableAddress)) code = strings.ReplaceAll(code, placeholderStakingProxyAddress, withHexPrefix(stakingProxyAddress)) @@ -302,8 +386,7 @@ func TESTFlowStakingCollection( code = strings.ReplaceAll(code, placeholderDKGAddr, withHexPrefix(dkgAddress)) code = strings.ReplaceAll(code, placeholderEpochAddr, withHexPrefix(epochAddress)) - code = strings.ReplaceAll(code, "access(self) fun getTokens", "access(all) fun getTokens") - code = strings.ReplaceAll(code, "access(self) fun depositTokens", "access(all) fun depositTokens") + code = strings.ReplaceAll(code, "access(self)", "pub") return []byte(code) } @@ -329,5 +412,17 @@ func TestFlowFees(fungibleTokenAddress, flowTokenAddress, storageFeesAddress str withHexPrefix(storageFeesAddress), ) + code = strings.ReplaceAll( + code, + "init(adminAccount: AuthAccount)", + "init()", + ) + + code = strings.ReplaceAll( + code, + "adminAccount.save(<-admin, to: /storage/flowFeesAdmin)", + "self.account.save(<-admin, to: /storage/flowFeesAdmin)", + ) + return []byte(code) } diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index bfac28926..f2af53b86 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -4,13 +4,14 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230711213910-baad011d2b13 - github.com/onflow/flow-go-sdk v0.41.6 - github.com/onflow/flow-nft/lib/go/contracts v1.1.0 + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230718172719-73a5ba83f177 + github.com/onflow/flow-go-sdk v0.41.7-stable-cadence + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718172506-c9d5f473c030 github.com/stretchr/testify v1.8.2 ) require ( + github.com/SaveTheRbtz/mph v0.1.2 // indirect github.com/bits-and-blooms/bitset v1.5.0 // indirect github.com/btcsuite/btcd/btcec/v2 v2.2.1 // indirect github.com/davecgh/go-spew v1.1.1 // indirect @@ -19,10 +20,13 @@ require ( github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c // indirect github.com/fxamacker/circlehash v0.3.0 // indirect github.com/go-test/deep v1.1.0 // indirect + github.com/k0kubun/pp v3.0.1+incompatible // indirect github.com/klauspost/cpuid/v2 v2.2.4 // indirect github.com/logrusorgru/aurora/v4 v4.0.0 // indirect + github.com/mattn/go-colorable v0.1.13 // indirect + github.com/mattn/go-isatty v0.0.16 // indirect github.com/onflow/atree v0.6.0 // indirect - github.com/onflow/cadence v0.39.12 // indirect + github.com/onflow/cadence v0.39.13-stable-cadence // indirect github.com/onflow/flow-go/crypto v0.24.7 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect @@ -31,8 +35,10 @@ require ( github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d // indirect github.com/x448/float16 v0.8.4 // indirect github.com/zeebo/blake3 v0.2.3 // indirect + github.com/zeebo/xxh3 v1.0.2 // indirect go.opentelemetry.io/otel v1.14.0 // indirect golang.org/x/crypto v0.7.0 // indirect + golang.org/x/exp v0.0.0-20230321023759-10a507213a29 // indirect golang.org/x/sys v0.6.0 // indirect golang.org/x/text v0.8.0 // indirect golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 445cd564e..970bc2f4c 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -3,6 +3,7 @@ cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMT cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= +cloud.google.com/go v0.44.3/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= @@ -15,6 +16,7 @@ cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOY cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY= cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= +cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPTY= cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg= cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8= cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0= @@ -25,25 +27,500 @@ cloud.google.com/go v0.90.0/go.mod h1:kRX0mNRHe0e2rC6oNakvwQqzyDmg57xJ+SZU1eT2aD cloud.google.com/go v0.93.3/go.mod h1:8utlLll2EF5XMAV15woO4lSbWQlk8rer9aLOfLh7+YI= cloud.google.com/go v0.94.1/go.mod h1:qAlAugsXlC+JWO+Bke5vCtc9ONxjQT3drlTTnAplMW4= cloud.google.com/go v0.97.0/go.mod h1:GF7l59pYBVlXQIBLx3a761cZ41F9bBH3JUlihCt2Udc= +cloud.google.com/go v0.99.0/go.mod h1:w0Xx2nLzqWJPuozYQX+hFfCSI8WioryfRDzkoI/Y2ZA= +cloud.google.com/go v0.100.1/go.mod h1:fs4QogzfH5n2pBXBP9vRiU+eCny7lD2vmFZy79Iuw1U= +cloud.google.com/go v0.100.2/go.mod h1:4Xra9TjzAeYHrl5+oeLlzbM2k3mjVhZh4UqTZ//w99A= +cloud.google.com/go v0.102.0/go.mod h1:oWcCzKlqJ5zgHQt9YsaeTY9KzIvjyy0ArmiBUgpQ+nc= +cloud.google.com/go v0.102.1/go.mod h1:XZ77E9qnTEnrgEOvr4xzfdX5TRo7fB4T2F4O6+34hIU= +cloud.google.com/go v0.104.0/go.mod h1:OO6xxXdJyvuJPcEPBLN9BJPD+jep5G1+2U5B5gkRYtA= +cloud.google.com/go v0.105.0/go.mod h1:PrLgOJNe5nfE9UMxKxgXj4mD3voiP+YQ6gdt6KMFOKM= +cloud.google.com/go v0.107.0/go.mod h1:wpc2eNrD7hXUTy8EKS10jkxpZBjASrORK7goS+3YX2I= +cloud.google.com/go v0.110.0/go.mod h1:SJnCLqQ0FCFGSZMUNUf84MV3Aia54kn7pi8st7tMzaY= +cloud.google.com/go/accessapproval v1.4.0/go.mod h1:zybIuC3KpDOvotz59lFe5qxRZx6C75OtwbisN56xYB4= +cloud.google.com/go/accessapproval v1.5.0/go.mod h1:HFy3tuiGvMdcd/u+Cu5b9NkO1pEICJ46IR82PoUdplw= +cloud.google.com/go/accessapproval v1.6.0/go.mod h1:R0EiYnwV5fsRFiKZkPHr6mwyk2wxUJ30nL4j2pcFY2E= +cloud.google.com/go/accesscontextmanager v1.3.0/go.mod h1:TgCBehyr5gNMz7ZaH9xubp+CE8dkrszb4oK9CWyvD4o= +cloud.google.com/go/accesscontextmanager v1.4.0/go.mod h1:/Kjh7BBu/Gh83sv+K60vN9QE5NJcd80sU33vIe2IFPE= +cloud.google.com/go/accesscontextmanager v1.6.0/go.mod h1:8XCvZWfYw3K/ji0iVnp+6pu7huxoQTLmxAbVjbloTtM= +cloud.google.com/go/aiplatform v1.22.0/go.mod h1:ig5Nct50bZlzV6NvKaTwmplLLddFx0YReh9WfTO5jKw= +cloud.google.com/go/aiplatform v1.24.0/go.mod h1:67UUvRBKG6GTayHKV8DBv2RtR1t93YRu5B1P3x99mYY= +cloud.google.com/go/aiplatform v1.27.0/go.mod h1:Bvxqtl40l0WImSb04d0hXFU7gDOiq9jQmorivIiWcKg= +cloud.google.com/go/aiplatform v1.35.0/go.mod h1:7MFT/vCaOyZT/4IIFfxH4ErVg/4ku6lKv3w0+tFTgXQ= +cloud.google.com/go/analytics v0.11.0/go.mod h1:DjEWCu41bVbYcKyvlws9Er60YE4a//bK6mnhWvQeFNI= +cloud.google.com/go/analytics v0.12.0/go.mod h1:gkfj9h6XRf9+TS4bmuhPEShsh3hH8PAZzm/41OOhQd4= +cloud.google.com/go/analytics v0.17.0/go.mod h1:WXFa3WSym4IZ+JiKmavYdJwGG/CvpqiqczmL59bTD9M= +cloud.google.com/go/analytics v0.18.0/go.mod h1:ZkeHGQlcIPkw0R/GW+boWHhCOR43xz9RN/jn7WcqfIE= +cloud.google.com/go/apigateway v1.3.0/go.mod h1:89Z8Bhpmxu6AmUxuVRg/ECRGReEdiP3vQtk4Z1J9rJk= +cloud.google.com/go/apigateway v1.4.0/go.mod h1:pHVY9MKGaH9PQ3pJ4YLzoj6U5FUDeDFBllIz7WmzJoc= +cloud.google.com/go/apigateway v1.5.0/go.mod h1:GpnZR3Q4rR7LVu5951qfXPJCHquZt02jf7xQx7kpqN8= +cloud.google.com/go/apigeeconnect v1.3.0/go.mod h1:G/AwXFAKo0gIXkPTVfZDd2qA1TxBXJ3MgMRBQkIi9jc= +cloud.google.com/go/apigeeconnect v1.4.0/go.mod h1:kV4NwOKqjvt2JYR0AoIWo2QGfoRtn/pkS3QlHp0Ni04= +cloud.google.com/go/apigeeconnect v1.5.0/go.mod h1:KFaCqvBRU6idyhSNyn3vlHXc8VMDJdRmwDF6JyFRqZ8= +cloud.google.com/go/apigeeregistry v0.4.0/go.mod h1:EUG4PGcsZvxOXAdyEghIdXwAEi/4MEaoqLMLDMIwKXY= +cloud.google.com/go/apigeeregistry v0.5.0/go.mod h1:YR5+s0BVNZfVOUkMa5pAR2xGd0A473vA5M7j247o1wM= +cloud.google.com/go/apikeys v0.4.0/go.mod h1:XATS/yqZbaBK0HOssf+ALHp8jAlNHUgyfprvNcBIszU= +cloud.google.com/go/apikeys v0.5.0/go.mod h1:5aQfwY4D+ewMMWScd3hm2en3hCj+BROlyrt3ytS7KLI= +cloud.google.com/go/appengine v1.4.0/go.mod h1:CS2NhuBuDXM9f+qscZ6V86m1MIIqPj3WC/UoEuR1Sno= +cloud.google.com/go/appengine v1.5.0/go.mod h1:TfasSozdkFI0zeoxW3PTBLiNqRmzraodCWatWI9Dmak= +cloud.google.com/go/appengine v1.6.0/go.mod h1:hg6i0J/BD2cKmDJbaFSYHFyZkgBEfQrDg/X0V5fJn84= +cloud.google.com/go/area120 v0.5.0/go.mod h1:DE/n4mp+iqVyvxHN41Vf1CR602GiHQjFPusMFW6bGR4= +cloud.google.com/go/area120 v0.6.0/go.mod h1:39yFJqWVgm0UZqWTOdqkLhjoC7uFfgXRC8g/ZegeAh0= +cloud.google.com/go/area120 v0.7.0/go.mod h1:a3+8EUD1SX5RUcCs3MY5YasiO1z6yLiNLRiFrykbynY= +cloud.google.com/go/area120 v0.7.1/go.mod h1:j84i4E1RboTWjKtZVWXPqvK5VHQFJRF2c1Nm69pWm9k= +cloud.google.com/go/artifactregistry v1.6.0/go.mod h1:IYt0oBPSAGYj/kprzsBjZ/4LnG/zOcHyFHjWPCi6SAQ= +cloud.google.com/go/artifactregistry v1.7.0/go.mod h1:mqTOFOnGZx8EtSqK/ZWcsm/4U8B77rbcLP6ruDU2Ixk= +cloud.google.com/go/artifactregistry v1.8.0/go.mod h1:w3GQXkJX8hiKN0v+at4b0qotwijQbYUqF2GWkZzAhC0= +cloud.google.com/go/artifactregistry v1.9.0/go.mod h1:2K2RqvA2CYvAeARHRkLDhMDJ3OXy26h3XW+3/Jh2uYc= +cloud.google.com/go/artifactregistry v1.11.1/go.mod h1:lLYghw+Itq9SONbCa1YWBoWs1nOucMH0pwXN1rOBZFI= +cloud.google.com/go/artifactregistry v1.11.2/go.mod h1:nLZns771ZGAwVLzTX/7Al6R9ehma4WUEhZGWV6CeQNQ= +cloud.google.com/go/asset v1.5.0/go.mod h1:5mfs8UvcM5wHhqtSv8J1CtxxaQq3AdBxxQi2jGW/K4o= +cloud.google.com/go/asset v1.7.0/go.mod h1:YbENsRK4+xTiL+Ofoj5Ckf+O17kJtgp3Y3nn4uzZz5s= +cloud.google.com/go/asset v1.8.0/go.mod h1:mUNGKhiqIdbr8X7KNayoYvyc4HbbFO9URsjbytpUaW0= +cloud.google.com/go/asset v1.9.0/go.mod h1:83MOE6jEJBMqFKadM9NLRcs80Gdw76qGuHn8m3h8oHQ= +cloud.google.com/go/asset v1.10.0/go.mod h1:pLz7uokL80qKhzKr4xXGvBQXnzHn5evJAEAtZiIb0wY= +cloud.google.com/go/asset v1.11.1/go.mod h1:fSwLhbRvC9p9CXQHJ3BgFeQNM4c9x10lqlrdEUYXlJo= +cloud.google.com/go/assuredworkloads v1.5.0/go.mod h1:n8HOZ6pff6re5KYfBXcFvSViQjDwxFkAkmUFffJRbbY= +cloud.google.com/go/assuredworkloads v1.6.0/go.mod h1:yo2YOk37Yc89Rsd5QMVECvjaMKymF9OP+QXWlKXUkXw= +cloud.google.com/go/assuredworkloads v1.7.0/go.mod h1:z/736/oNmtGAyU47reJgGN+KVoYoxeLBoj4XkKYscNI= +cloud.google.com/go/assuredworkloads v1.8.0/go.mod h1:AsX2cqyNCOvEQC8RMPnoc0yEarXQk6WEKkxYfL6kGIo= +cloud.google.com/go/assuredworkloads v1.9.0/go.mod h1:kFuI1P78bplYtT77Tb1hi0FMxM0vVpRC7VVoJC3ZoT0= +cloud.google.com/go/assuredworkloads v1.10.0/go.mod h1:kwdUQuXcedVdsIaKgKTp9t0UJkE5+PAVNhdQm4ZVq2E= +cloud.google.com/go/automl v1.5.0/go.mod h1:34EjfoFGMZ5sgJ9EoLsRtdPSNZLcfflJR39VbVNS2M0= +cloud.google.com/go/automl v1.6.0/go.mod h1:ugf8a6Fx+zP0D59WLhqgTDsQI9w07o64uf/Is3Nh5p8= +cloud.google.com/go/automl v1.7.0/go.mod h1:RL9MYCCsJEOmt0Wf3z9uzG0a7adTT1fe+aObgSpkCt8= +cloud.google.com/go/automl v1.8.0/go.mod h1:xWx7G/aPEe/NP+qzYXktoBSDfjO+vnKMGgsApGJJquM= +cloud.google.com/go/automl v1.12.0/go.mod h1:tWDcHDp86aMIuHmyvjuKeeHEGq76lD7ZqfGLN6B0NuU= +cloud.google.com/go/baremetalsolution v0.3.0/go.mod h1:XOrocE+pvK1xFfleEnShBlNAXf+j5blPPxrhjKgnIFc= +cloud.google.com/go/baremetalsolution v0.4.0/go.mod h1:BymplhAadOO/eBa7KewQ0Ppg4A4Wplbn+PsFKRLo0uI= +cloud.google.com/go/baremetalsolution v0.5.0/go.mod h1:dXGxEkmR9BMwxhzBhV0AioD0ULBmuLZI8CdwalUxuss= +cloud.google.com/go/batch v0.3.0/go.mod h1:TR18ZoAekj1GuirsUsR1ZTKN3FC/4UDnScjT8NXImFE= +cloud.google.com/go/batch v0.4.0/go.mod h1:WZkHnP43R/QCGQsZ+0JyG4i79ranE2u8xvjq/9+STPE= +cloud.google.com/go/batch v0.7.0/go.mod h1:vLZN95s6teRUqRQ4s3RLDsH8PvboqBK+rn1oevL159g= +cloud.google.com/go/beyondcorp v0.2.0/go.mod h1:TB7Bd+EEtcw9PCPQhCJtJGjk/7TC6ckmnSFS+xwTfm4= +cloud.google.com/go/beyondcorp v0.3.0/go.mod h1:E5U5lcrcXMsCuoDNyGrpyTm/hn7ne941Jz2vmksAxW8= +cloud.google.com/go/beyondcorp v0.4.0/go.mod h1:3ApA0mbhHx6YImmuubf5pyW8srKnCEPON32/5hj+RmM= cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= +cloud.google.com/go/bigquery v1.42.0/go.mod h1:8dRTJxhtG+vwBKzE5OseQn/hiydoQN3EedCaOdYmxRA= +cloud.google.com/go/bigquery v1.43.0/go.mod h1:ZMQcXHsl+xmU1z36G2jNGZmKp9zNY5BUua5wDgmNCfw= +cloud.google.com/go/bigquery v1.44.0/go.mod h1:0Y33VqXTEsbamHJvJHdFmtqHvMIY28aK1+dFsvaChGc= +cloud.google.com/go/bigquery v1.47.0/go.mod h1:sA9XOgy0A8vQK9+MWhEQTY6Tix87M/ZurWFIxmF9I/E= +cloud.google.com/go/bigquery v1.48.0/go.mod h1:QAwSz+ipNgfL5jxiaK7weyOhzdoAy1zFm0Nf1fysJac= +cloud.google.com/go/billing v1.4.0/go.mod h1:g9IdKBEFlItS8bTtlrZdVLWSSdSyFUZKXNS02zKMOZY= +cloud.google.com/go/billing v1.5.0/go.mod h1:mztb1tBc3QekhjSgmpf/CV4LzWXLzCArwpLmP2Gm88s= +cloud.google.com/go/billing v1.6.0/go.mod h1:WoXzguj+BeHXPbKfNWkqVtDdzORazmCjraY+vrxcyvI= +cloud.google.com/go/billing v1.7.0/go.mod h1:q457N3Hbj9lYwwRbnlD7vUpyjq6u5U1RAOArInEiD5Y= +cloud.google.com/go/billing v1.12.0/go.mod h1:yKrZio/eu+okO/2McZEbch17O5CB5NpZhhXG6Z766ss= +cloud.google.com/go/binaryauthorization v1.1.0/go.mod h1:xwnoWu3Y84jbuHa0zd526MJYmtnVXn0syOjaJgy4+dM= +cloud.google.com/go/binaryauthorization v1.2.0/go.mod h1:86WKkJHtRcv5ViNABtYMhhNWRrD1Vpi//uKEy7aYEfI= +cloud.google.com/go/binaryauthorization v1.3.0/go.mod h1:lRZbKgjDIIQvzYQS1p99A7/U1JqvqeZg0wiI5tp6tg0= +cloud.google.com/go/binaryauthorization v1.4.0/go.mod h1:tsSPQrBd77VLplV70GUhBf/Zm3FsKmgSqgm4UmiDItk= +cloud.google.com/go/binaryauthorization v1.5.0/go.mod h1:OSe4OU1nN/VswXKRBmciKpo9LulY41gch5c68htf3/Q= +cloud.google.com/go/certificatemanager v1.3.0/go.mod h1:n6twGDvcUBFu9uBgt4eYvvf3sQ6My8jADcOVwHmzadg= +cloud.google.com/go/certificatemanager v1.4.0/go.mod h1:vowpercVFyqs8ABSmrdV+GiFf2H/ch3KyudYQEMM590= +cloud.google.com/go/certificatemanager v1.6.0/go.mod h1:3Hh64rCKjRAX8dXgRAyOcY5vQ/fE1sh8o+Mdd6KPgY8= +cloud.google.com/go/channel v1.8.0/go.mod h1:W5SwCXDJsq/rg3tn3oG0LOxpAo6IMxNa09ngphpSlnk= +cloud.google.com/go/channel v1.9.0/go.mod h1:jcu05W0my9Vx4mt3/rEHpfxc9eKi9XwsdDL8yBMbKUk= +cloud.google.com/go/channel v1.11.0/go.mod h1:IdtI0uWGqhEeatSB62VOoJ8FSUhJ9/+iGkJVqp74CGE= +cloud.google.com/go/cloudbuild v1.3.0/go.mod h1:WequR4ULxlqvMsjDEEEFnOG5ZSRSgWOywXYDb1vPE6U= +cloud.google.com/go/cloudbuild v1.4.0/go.mod h1:5Qwa40LHiOXmz3386FrjrYM93rM/hdRr7b53sySrTqA= +cloud.google.com/go/cloudbuild v1.6.0/go.mod h1:UIbc/w9QCbH12xX+ezUsgblrWv+Cv4Tw83GiSMHOn9M= +cloud.google.com/go/cloudbuild v1.7.0/go.mod h1:zb5tWh2XI6lR9zQmsm1VRA+7OCuve5d8S+zJUul8KTg= +cloud.google.com/go/clouddms v1.3.0/go.mod h1:oK6XsCDdW4Ib3jCCBugx+gVjevp2TMXFtgxvPSee3OM= +cloud.google.com/go/clouddms v1.4.0/go.mod h1:Eh7sUGCC+aKry14O1NRljhjyrr0NFC0G2cjwX0cByRk= +cloud.google.com/go/clouddms v1.5.0/go.mod h1:QSxQnhikCLUw13iAbffF2CZxAER3xDGNHjsTAkQJcQA= +cloud.google.com/go/cloudtasks v1.5.0/go.mod h1:fD92REy1x5woxkKEkLdvavGnPJGEn8Uic9nWuLzqCpY= +cloud.google.com/go/cloudtasks v1.6.0/go.mod h1:C6Io+sxuke9/KNRkbQpihnW93SWDU3uXt92nu85HkYI= +cloud.google.com/go/cloudtasks v1.7.0/go.mod h1:ImsfdYWwlWNJbdgPIIGJWC+gemEGTBK/SunNQQNCAb4= +cloud.google.com/go/cloudtasks v1.8.0/go.mod h1:gQXUIwCSOI4yPVK7DgTVFiiP0ZW/eQkydWzwVMdHxrI= +cloud.google.com/go/cloudtasks v1.9.0/go.mod h1:w+EyLsVkLWHcOaqNEyvcKAsWp9p29dL6uL9Nst1cI7Y= +cloud.google.com/go/compute v0.1.0/go.mod h1:GAesmwr110a34z04OlxYkATPBEfVhkymfTBXtfbBFow= +cloud.google.com/go/compute v1.3.0/go.mod h1:cCZiE1NHEtai4wiufUhW8I8S1JKkAnhnQJWM7YD99wM= +cloud.google.com/go/compute v1.5.0/go.mod h1:9SMHyhJlzhlkJqrPAc839t2BZFTSk6Jdj6mkzQJeu0M= +cloud.google.com/go/compute v1.6.0/go.mod h1:T29tfhtVbq1wvAPo0E3+7vhgmkOYeXjhFvz/FMzPu0s= +cloud.google.com/go/compute v1.6.1/go.mod h1:g85FgpzFvNULZ+S8AYq87axRKuf2Kh7deLqV/jJ3thU= +cloud.google.com/go/compute v1.7.0/go.mod h1:435lt8av5oL9P3fv1OEzSbSUe+ybHXGMPQHHZWZxy9U= +cloud.google.com/go/compute v1.10.0/go.mod h1:ER5CLbMxl90o2jtNbGSbtfOpQKR0t15FOtRsugnLrlU= +cloud.google.com/go/compute v1.12.0/go.mod h1:e8yNOBcBONZU1vJKCvCoDw/4JQsA0dpM4x/6PIIOocU= +cloud.google.com/go/compute v1.12.1/go.mod h1:e8yNOBcBONZU1vJKCvCoDw/4JQsA0dpM4x/6PIIOocU= +cloud.google.com/go/compute v1.13.0/go.mod h1:5aPTS0cUNMIc1CE546K+Th6weJUNQErARyZtRXDJ8GE= +cloud.google.com/go/compute v1.14.0/go.mod h1:YfLtxrj9sU4Yxv+sXzZkyPjEyPBZfXHUvjxega5vAdo= +cloud.google.com/go/compute v1.15.1/go.mod h1:bjjoF/NtFUrkD/urWfdHaKuOPDR5nWIs63rR+SXhcpA= +cloud.google.com/go/compute v1.18.0/go.mod h1:1X7yHxec2Ga+Ss6jPyjxRxpu2uu7PLgsOVXvgU0yacs= +cloud.google.com/go/compute/metadata v0.1.0/go.mod h1:Z1VN+bulIf6bt4P/C37K4DyZYZEXYonfTBHHFPO/4UU= +cloud.google.com/go/compute/metadata v0.2.0/go.mod h1:zFmK7XCadkQkj6TtorcaGlCW1hT1fIilQDwofLpJ20k= +cloud.google.com/go/compute/metadata v0.2.1/go.mod h1:jgHgmJd2RKBGzXqF5LR2EZMGxBkeanZ9wwa75XHJgOM= +cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA= +cloud.google.com/go/contactcenterinsights v1.3.0/go.mod h1:Eu2oemoePuEFc/xKFPjbTuPSj0fYJcPls9TFlPNnHHY= +cloud.google.com/go/contactcenterinsights v1.4.0/go.mod h1:L2YzkGbPsv+vMQMCADxJoT9YiTTnSEd6fEvCeHTYVck= +cloud.google.com/go/contactcenterinsights v1.6.0/go.mod h1:IIDlT6CLcDoyv79kDv8iWxMSTZhLxSCofVV5W6YFM/w= +cloud.google.com/go/container v1.6.0/go.mod h1:Xazp7GjJSeUYo688S+6J5V+n/t+G5sKBTFkKNudGRxg= +cloud.google.com/go/container v1.7.0/go.mod h1:Dp5AHtmothHGX3DwwIHPgq45Y8KmNsgN3amoYfxVkLo= +cloud.google.com/go/container v1.13.1/go.mod h1:6wgbMPeQRw9rSnKBCAJXnds3Pzj03C4JHamr8asWKy4= +cloud.google.com/go/containeranalysis v0.5.1/go.mod h1:1D92jd8gRR/c0fGMlymRgxWD3Qw9C1ff6/T7mLgVL8I= +cloud.google.com/go/containeranalysis v0.6.0/go.mod h1:HEJoiEIu+lEXM+k7+qLCci0h33lX3ZqoYFdmPcoO7s4= +cloud.google.com/go/containeranalysis v0.7.0/go.mod h1:9aUL+/vZ55P2CXfuZjS4UjQ9AgXoSw8Ts6lemfmxBxI= +cloud.google.com/go/datacatalog v1.3.0/go.mod h1:g9svFY6tuR+j+hrTw3J2dNcmI0dzmSiyOzm8kpLq0a0= +cloud.google.com/go/datacatalog v1.5.0/go.mod h1:M7GPLNQeLfWqeIm3iuiruhPzkt65+Bx8dAKvScX8jvs= +cloud.google.com/go/datacatalog v1.6.0/go.mod h1:+aEyF8JKg+uXcIdAmmaMUmZ3q1b/lKLtXCmXdnc0lbc= +cloud.google.com/go/datacatalog v1.7.0/go.mod h1:9mEl4AuDYWw81UGc41HonIHH7/sn52H0/tc8f8ZbZIE= +cloud.google.com/go/datacatalog v1.8.0/go.mod h1:KYuoVOv9BM8EYz/4eMFxrr4DUKhGIOXxZoKYF5wdISM= +cloud.google.com/go/datacatalog v1.8.1/go.mod h1:RJ58z4rMp3gvETA465Vg+ag8BGgBdnRPEMMSTr5Uv+M= +cloud.google.com/go/datacatalog v1.12.0/go.mod h1:CWae8rFkfp6LzLumKOnmVh4+Zle4A3NXLzVJ1d1mRm0= +cloud.google.com/go/dataflow v0.6.0/go.mod h1:9QwV89cGoxjjSR9/r7eFDqqjtvbKxAK2BaYU6PVk9UM= +cloud.google.com/go/dataflow v0.7.0/go.mod h1:PX526vb4ijFMesO1o202EaUmouZKBpjHsTlCtB4parQ= +cloud.google.com/go/dataflow v0.8.0/go.mod h1:Rcf5YgTKPtQyYz8bLYhFoIV/vP39eL7fWNcSOyFfLJE= +cloud.google.com/go/dataform v0.3.0/go.mod h1:cj8uNliRlHpa6L3yVhDOBrUXH+BPAO1+KFMQQNSThKo= +cloud.google.com/go/dataform v0.4.0/go.mod h1:fwV6Y4Ty2yIFL89huYlEkwUPtS7YZinZbzzj5S9FzCE= +cloud.google.com/go/dataform v0.5.0/go.mod h1:GFUYRe8IBa2hcomWplodVmUx/iTL0FrsauObOM3Ipr0= +cloud.google.com/go/dataform v0.6.0/go.mod h1:QPflImQy33e29VuapFdf19oPbE4aYTJxr31OAPV+ulA= +cloud.google.com/go/datafusion v1.4.0/go.mod h1:1Zb6VN+W6ALo85cXnM1IKiPw+yQMKMhB9TsTSRDo/38= +cloud.google.com/go/datafusion v1.5.0/go.mod h1:Kz+l1FGHB0J+4XF2fud96WMmRiq/wj8N9u007vyXZ2w= +cloud.google.com/go/datafusion v1.6.0/go.mod h1:WBsMF8F1RhSXvVM8rCV3AeyWVxcC2xY6vith3iw3S+8= +cloud.google.com/go/datalabeling v0.5.0/go.mod h1:TGcJ0G2NzcsXSE/97yWjIZO0bXj0KbVlINXMG9ud42I= +cloud.google.com/go/datalabeling v0.6.0/go.mod h1:WqdISuk/+WIGeMkpw/1q7bK/tFEZxsrFJOJdY2bXvTQ= +cloud.google.com/go/datalabeling v0.7.0/go.mod h1:WPQb1y08RJbmpM3ww0CSUAGweL0SxByuW2E+FU+wXcM= +cloud.google.com/go/dataplex v1.3.0/go.mod h1:hQuRtDg+fCiFgC8j0zV222HvzFQdRd+SVX8gdmFcZzA= +cloud.google.com/go/dataplex v1.4.0/go.mod h1:X51GfLXEMVJ6UN47ESVqvlsRplbLhcsAt0kZCCKsU0A= +cloud.google.com/go/dataplex v1.5.2/go.mod h1:cVMgQHsmfRoI5KFYq4JtIBEUbYwc3c7tXmIDhRmNNVQ= +cloud.google.com/go/dataproc v1.7.0/go.mod h1:CKAlMjII9H90RXaMpSxQ8EU6dQx6iAYNPcYPOkSbi8s= +cloud.google.com/go/dataproc v1.8.0/go.mod h1:5OW+zNAH0pMpw14JVrPONsxMQYMBqJuzORhIBfBn9uI= +cloud.google.com/go/dataproc v1.12.0/go.mod h1:zrF3aX0uV3ikkMz6z4uBbIKyhRITnxvr4i3IjKsKrw4= +cloud.google.com/go/dataqna v0.5.0/go.mod h1:90Hyk596ft3zUQ8NkFfvICSIfHFh1Bc7C4cK3vbhkeo= +cloud.google.com/go/dataqna v0.6.0/go.mod h1:1lqNpM7rqNLVgWBJyk5NF6Uen2PHym0jtVJonplVsDA= +cloud.google.com/go/dataqna v0.7.0/go.mod h1:Lx9OcIIeqCrw1a6KdO3/5KMP1wAmTc0slZWwP12Qq3c= cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= +cloud.google.com/go/datastore v1.10.0/go.mod h1:PC5UzAmDEkAmkfaknstTYbNpgE49HAgW2J1gcgUfmdM= +cloud.google.com/go/datastream v1.2.0/go.mod h1:i/uTP8/fZwgATHS/XFu0TcNUhuA0twZxxQ3EyCUQMwo= +cloud.google.com/go/datastream v1.3.0/go.mod h1:cqlOX8xlyYF/uxhiKn6Hbv6WjwPPuI9W2M9SAXwaLLQ= +cloud.google.com/go/datastream v1.4.0/go.mod h1:h9dpzScPhDTs5noEMQVWP8Wx8AFBRyS0s8KWPx/9r0g= +cloud.google.com/go/datastream v1.5.0/go.mod h1:6TZMMNPwjUqZHBKPQ1wwXpb0d5VDVPl2/XoS5yi88q4= +cloud.google.com/go/datastream v1.6.0/go.mod h1:6LQSuswqLa7S4rPAOZFVjHIG3wJIjZcZrw8JDEDJuIs= +cloud.google.com/go/deploy v1.4.0/go.mod h1:5Xghikd4VrmMLNaF6FiRFDlHb59VM59YoDQnOUdsH/c= +cloud.google.com/go/deploy v1.5.0/go.mod h1:ffgdD0B89tToyW/U/D2eL0jN2+IEV/3EMuXHA0l4r+s= +cloud.google.com/go/deploy v1.6.0/go.mod h1:f9PTHehG/DjCom3QH0cntOVRm93uGBDt2vKzAPwpXQI= +cloud.google.com/go/dialogflow v1.15.0/go.mod h1:HbHDWs33WOGJgn6rfzBW1Kv807BE3O1+xGbn59zZWI4= +cloud.google.com/go/dialogflow v1.16.1/go.mod h1:po6LlzGfK+smoSmTBnbkIZY2w8ffjz/RcGSS+sh1el0= +cloud.google.com/go/dialogflow v1.17.0/go.mod h1:YNP09C/kXA1aZdBgC/VtXX74G/TKn7XVCcVumTflA+8= +cloud.google.com/go/dialogflow v1.18.0/go.mod h1:trO7Zu5YdyEuR+BhSNOqJezyFQ3aUzz0njv7sMx/iek= +cloud.google.com/go/dialogflow v1.19.0/go.mod h1:JVmlG1TwykZDtxtTXujec4tQ+D8SBFMoosgy+6Gn0s0= +cloud.google.com/go/dialogflow v1.29.0/go.mod h1:b+2bzMe+k1s9V+F2jbJwpHPzrnIyHihAdRFMtn2WXuM= +cloud.google.com/go/dialogflow v1.31.0/go.mod h1:cuoUccuL1Z+HADhyIA7dci3N5zUssgpBJmCzI6fNRB4= +cloud.google.com/go/dlp v1.6.0/go.mod h1:9eyB2xIhpU0sVwUixfBubDoRwP+GjeUoxxeueZmqvmM= +cloud.google.com/go/dlp v1.7.0/go.mod h1:68ak9vCiMBjbasxeVD17hVPxDEck+ExiHavX8kiHG+Q= +cloud.google.com/go/dlp v1.9.0/go.mod h1:qdgmqgTyReTz5/YNSSuueR8pl7hO0o9bQ39ZhtgkWp4= +cloud.google.com/go/documentai v1.7.0/go.mod h1:lJvftZB5NRiFSX4moiye1SMxHx0Bc3x1+p9e/RfXYiU= +cloud.google.com/go/documentai v1.8.0/go.mod h1:xGHNEB7CtsnySCNrCFdCyyMz44RhFEEX2Q7UD0c5IhU= +cloud.google.com/go/documentai v1.9.0/go.mod h1:FS5485S8R00U10GhgBC0aNGrJxBP8ZVpEeJ7PQDZd6k= +cloud.google.com/go/documentai v1.10.0/go.mod h1:vod47hKQIPeCfN2QS/jULIvQTugbmdc0ZvxxfQY1bg4= +cloud.google.com/go/documentai v1.16.0/go.mod h1:o0o0DLTEZ+YnJZ+J4wNfTxmDVyrkzFvttBXXtYRMHkM= +cloud.google.com/go/domains v0.6.0/go.mod h1:T9Rz3GasrpYk6mEGHh4rymIhjlnIuB4ofT1wTxDeT4Y= +cloud.google.com/go/domains v0.7.0/go.mod h1:PtZeqS1xjnXuRPKE/88Iru/LdfoRyEHYA9nFQf4UKpg= +cloud.google.com/go/domains v0.8.0/go.mod h1:M9i3MMDzGFXsydri9/vW+EWz9sWb4I6WyHqdlAk0idE= +cloud.google.com/go/edgecontainer v0.1.0/go.mod h1:WgkZ9tp10bFxqO8BLPqv2LlfmQF1X8lZqwW4r1BTajk= +cloud.google.com/go/edgecontainer v0.2.0/go.mod h1:RTmLijy+lGpQ7BXuTDa4C4ssxyXT34NIuHIgKuP4s5w= +cloud.google.com/go/edgecontainer v0.3.0/go.mod h1:FLDpP4nykgwwIfcLt6zInhprzw0lEi2P1fjO6Ie0qbc= +cloud.google.com/go/errorreporting v0.3.0/go.mod h1:xsP2yaAp+OAW4OIm60An2bbLpqIhKXdWR/tawvl7QzU= +cloud.google.com/go/essentialcontacts v1.3.0/go.mod h1:r+OnHa5jfj90qIfZDO/VztSFqbQan7HV75p8sA+mdGI= +cloud.google.com/go/essentialcontacts v1.4.0/go.mod h1:8tRldvHYsmnBCHdFpvU+GL75oWiBKl80BiqlFh9tp+8= +cloud.google.com/go/essentialcontacts v1.5.0/go.mod h1:ay29Z4zODTuwliK7SnX8E86aUF2CTzdNtvv42niCX0M= +cloud.google.com/go/eventarc v1.7.0/go.mod h1:6ctpF3zTnaQCxUjHUdcfgcA1A2T309+omHZth7gDfmc= +cloud.google.com/go/eventarc v1.8.0/go.mod h1:imbzxkyAU4ubfsaKYdQg04WS1NvncblHEup4kvF+4gw= +cloud.google.com/go/eventarc v1.10.0/go.mod h1:u3R35tmZ9HvswGRBnF48IlYgYeBcPUCjkr4BTdem2Kw= +cloud.google.com/go/filestore v1.3.0/go.mod h1:+qbvHGvXU1HaKX2nD0WEPo92TP/8AQuCVEBXNY9z0+w= +cloud.google.com/go/filestore v1.4.0/go.mod h1:PaG5oDfo9r224f8OYXURtAsY+Fbyq/bLYoINEK8XQAI= +cloud.google.com/go/filestore v1.5.0/go.mod h1:FqBXDWBp4YLHqRnVGveOkHDf8svj9r5+mUDLupOWEDs= +cloud.google.com/go/firestore v1.9.0/go.mod h1:HMkjKHNTtRyZNiMzu7YAsLr9K3X2udY2AMwDaMEQiiE= +cloud.google.com/go/functions v1.6.0/go.mod h1:3H1UA3qiIPRWD7PeZKLvHZ9SaQhR26XIJcC0A5GbvAk= +cloud.google.com/go/functions v1.7.0/go.mod h1:+d+QBcWM+RsrgZfV9xo6KfA1GlzJfxcfZcRPEhDDfzg= +cloud.google.com/go/functions v1.8.0/go.mod h1:RTZ4/HsQjIqIYP9a9YPbU+QFoQsAlYgrwOXJWHn1POY= +cloud.google.com/go/functions v1.9.0/go.mod h1:Y+Dz8yGguzO3PpIjhLTbnqV1CWmgQ5UwtlpzoyquQ08= +cloud.google.com/go/functions v1.10.0/go.mod h1:0D3hEOe3DbEvCXtYOZHQZmD+SzYsi1YbI7dGvHfldXw= +cloud.google.com/go/gaming v1.5.0/go.mod h1:ol7rGcxP/qHTRQE/RO4bxkXq+Fix0j6D4LFPzYTIrDM= +cloud.google.com/go/gaming v1.6.0/go.mod h1:YMU1GEvA39Qt3zWGyAVA9bpYz/yAhTvaQ1t2sK4KPUA= +cloud.google.com/go/gaming v1.7.0/go.mod h1:LrB8U7MHdGgFG851iHAfqUdLcKBdQ55hzXy9xBJz0+w= +cloud.google.com/go/gaming v1.8.0/go.mod h1:xAqjS8b7jAVW0KFYeRUxngo9My3f33kFmua++Pi+ggM= +cloud.google.com/go/gaming v1.9.0/go.mod h1:Fc7kEmCObylSWLO334NcO+O9QMDyz+TKC4v1D7X+Bc0= +cloud.google.com/go/gkebackup v0.2.0/go.mod h1:XKvv/4LfG829/B8B7xRkk8zRrOEbKtEam6yNfuQNH60= +cloud.google.com/go/gkebackup v0.3.0/go.mod h1:n/E671i1aOQvUxT541aTkCwExO/bTer2HDlj4TsBRAo= +cloud.google.com/go/gkebackup v0.4.0/go.mod h1:byAyBGUwYGEEww7xsbnUTBHIYcOPy/PgUWUtOeRm9Vg= +cloud.google.com/go/gkeconnect v0.5.0/go.mod h1:c5lsNAg5EwAy7fkqX/+goqFsU1Da/jQFqArp+wGNr/o= +cloud.google.com/go/gkeconnect v0.6.0/go.mod h1:Mln67KyU/sHJEBY8kFZ0xTeyPtzbq9StAVvEULYK16A= +cloud.google.com/go/gkeconnect v0.7.0/go.mod h1:SNfmVqPkaEi3bF/B3CNZOAYPYdg7sU+obZ+QTky2Myw= +cloud.google.com/go/gkehub v0.9.0/go.mod h1:WYHN6WG8w9bXU0hqNxt8rm5uxnk8IH+lPY9J2TV7BK0= +cloud.google.com/go/gkehub v0.10.0/go.mod h1:UIPwxI0DsrpsVoWpLB0stwKCP+WFVG9+y977wO+hBH0= +cloud.google.com/go/gkehub v0.11.0/go.mod h1:JOWHlmN+GHyIbuWQPl47/C2RFhnFKH38jH9Ascu3n0E= +cloud.google.com/go/gkemulticloud v0.3.0/go.mod h1:7orzy7O0S+5kq95e4Hpn7RysVA7dPs8W/GgfUtsPbrA= +cloud.google.com/go/gkemulticloud v0.4.0/go.mod h1:E9gxVBnseLWCk24ch+P9+B2CoDFJZTyIgLKSalC7tuI= +cloud.google.com/go/gkemulticloud v0.5.0/go.mod h1:W0JDkiyi3Tqh0TJr//y19wyb1yf8llHVto2Htf2Ja3Y= +cloud.google.com/go/grafeas v0.2.0/go.mod h1:KhxgtF2hb0P191HlY5besjYm6MqTSTj3LSI+M+ByZHc= +cloud.google.com/go/gsuiteaddons v1.3.0/go.mod h1:EUNK/J1lZEZO8yPtykKxLXI6JSVN2rg9bN8SXOa0bgM= +cloud.google.com/go/gsuiteaddons v1.4.0/go.mod h1:rZK5I8hht7u7HxFQcFei0+AtfS9uSushomRlg+3ua1o= +cloud.google.com/go/gsuiteaddons v1.5.0/go.mod h1:TFCClYLd64Eaa12sFVmUyG62tk4mdIsI7pAnSXRkcFo= +cloud.google.com/go/iam v0.1.0/go.mod h1:vcUNEa0pEm0qRVpmWepWaFMIAI8/hjB9mO8rNCJtF6c= +cloud.google.com/go/iam v0.3.0/go.mod h1:XzJPvDayI+9zsASAFO68Hk07u3z+f+JrT2xXNdp4bnY= +cloud.google.com/go/iam v0.5.0/go.mod h1:wPU9Vt0P4UmCux7mqtRu6jcpPAb74cP1fh50J3QpkUc= +cloud.google.com/go/iam v0.6.0/go.mod h1:+1AH33ueBne5MzYccyMHtEKqLE4/kJOibtffMHDMFMc= +cloud.google.com/go/iam v0.7.0/go.mod h1:H5Br8wRaDGNc8XP3keLc4unfUUZeyH3Sfl9XpQEYOeg= +cloud.google.com/go/iam v0.8.0/go.mod h1:lga0/y3iH6CX7sYqypWJ33hf7kkfXJag67naqGESjkE= +cloud.google.com/go/iam v0.11.0/go.mod h1:9PiLDanza5D+oWFZiH1uG+RnRCfEGKoyl6yo4cgWZGY= +cloud.google.com/go/iam v0.12.0/go.mod h1:knyHGviacl11zrtZUoDuYpDgLjvr28sLQaG0YB2GYAY= +cloud.google.com/go/iap v1.4.0/go.mod h1:RGFwRJdihTINIe4wZ2iCP0zF/qu18ZwyKxrhMhygBEc= +cloud.google.com/go/iap v1.5.0/go.mod h1:UH/CGgKd4KyohZL5Pt0jSKE4m3FR51qg6FKQ/z/Ix9A= +cloud.google.com/go/iap v1.6.0/go.mod h1:NSuvI9C/j7UdjGjIde7t7HBz+QTwBcapPE07+sSRcLk= +cloud.google.com/go/ids v1.1.0/go.mod h1:WIuwCaYVOzHIj2OhN9HAwvW+DBdmUAdcWlFxRl+KubM= +cloud.google.com/go/ids v1.2.0/go.mod h1:5WXvp4n25S0rA/mQWAg1YEEBBq6/s+7ml1RDCW1IrcY= +cloud.google.com/go/ids v1.3.0/go.mod h1:JBdTYwANikFKaDP6LtW5JAi4gubs57SVNQjemdt6xV4= +cloud.google.com/go/iot v1.3.0/go.mod h1:r7RGh2B61+B8oz0AGE+J72AhA0G7tdXItODWsaA2oLs= +cloud.google.com/go/iot v1.4.0/go.mod h1:dIDxPOn0UvNDUMD8Ger7FIaTuvMkj+aGk94RPP0iV+g= +cloud.google.com/go/iot v1.5.0/go.mod h1:mpz5259PDl3XJthEmh9+ap0affn/MqNSP4My77Qql9o= cloud.google.com/go/kms v1.0.0/go.mod h1:nhUehi+w7zht2XrUfvTRNpxrfayBHqP4lu2NSywui/0= +cloud.google.com/go/kms v1.4.0/go.mod h1:fajBHndQ+6ubNw6Ss2sSd+SWvjL26RNo/dr7uxsnnOA= +cloud.google.com/go/kms v1.5.0/go.mod h1:QJS2YY0eJGBg3mnDfuaCyLauWwBJiHRboYxJ++1xJNg= +cloud.google.com/go/kms v1.6.0/go.mod h1:Jjy850yySiasBUDi6KFUwUv2n1+o7QZFyuUJg6OgjA0= +cloud.google.com/go/kms v1.8.0/go.mod h1:4xFEhYFqvW+4VMELtZyxomGSYtSQKzM178ylFW4jMAg= +cloud.google.com/go/kms v1.9.0/go.mod h1:qb1tPTgfF9RQP8e1wq4cLFErVuTJv7UsSC915J8dh3w= +cloud.google.com/go/language v1.4.0/go.mod h1:F9dRpNFQmJbkaop6g0JhSBXCNlO90e1KWx5iDdxbWic= +cloud.google.com/go/language v1.6.0/go.mod h1:6dJ8t3B+lUYfStgls25GusK04NLh3eDLQnWM3mdEbhI= +cloud.google.com/go/language v1.7.0/go.mod h1:DJ6dYN/W+SQOjF8e1hLQXMF21AkH2w9wiPzPCJa2MIE= +cloud.google.com/go/language v1.8.0/go.mod h1:qYPVHf7SPoNNiCL2Dr0FfEFNil1qi3pQEyygwpgVKB8= +cloud.google.com/go/language v1.9.0/go.mod h1:Ns15WooPM5Ad/5no/0n81yUetis74g3zrbeJBE+ptUY= +cloud.google.com/go/lifesciences v0.5.0/go.mod h1:3oIKy8ycWGPUyZDR/8RNnTOYevhaMLqh5vLUXs9zvT8= +cloud.google.com/go/lifesciences v0.6.0/go.mod h1:ddj6tSX/7BOnhxCSd3ZcETvtNr8NZ6t/iPhY2Tyfu08= +cloud.google.com/go/lifesciences v0.8.0/go.mod h1:lFxiEOMqII6XggGbOnKiyZ7IBwoIqA84ClvoezaA/bo= +cloud.google.com/go/logging v1.6.1/go.mod h1:5ZO0mHHbvm8gEmeEUHrmDlTDSu5imF6MUP9OfilNXBw= +cloud.google.com/go/logging v1.7.0/go.mod h1:3xjP2CjkM3ZkO73aj4ASA5wRPGGCRrPIAeNqVNkzY8M= +cloud.google.com/go/longrunning v0.1.1/go.mod h1:UUFxuDWkv22EuY93jjmDMFT5GPQKeFVJBIF6QlTqdsE= +cloud.google.com/go/longrunning v0.3.0/go.mod h1:qth9Y41RRSUE69rDcOn6DdK3HfQfsUI0YSmW3iIlLJc= +cloud.google.com/go/longrunning v0.4.1/go.mod h1:4iWDqhBZ70CvZ6BfETbvam3T8FMvLK+eFj0E6AaRQTo= +cloud.google.com/go/managedidentities v1.3.0/go.mod h1:UzlW3cBOiPrzucO5qWkNkh0w33KFtBJU281hacNvsdE= +cloud.google.com/go/managedidentities v1.4.0/go.mod h1:NWSBYbEMgqmbZsLIyKvxrYbtqOsxY1ZrGM+9RgDqInM= +cloud.google.com/go/managedidentities v1.5.0/go.mod h1:+dWcZ0JlUmpuxpIDfyP5pP5y0bLdRwOS4Lp7gMni/LA= +cloud.google.com/go/maps v0.1.0/go.mod h1:BQM97WGyfw9FWEmQMpZ5T6cpovXXSd1cGmFma94eubI= +cloud.google.com/go/maps v0.6.0/go.mod h1:o6DAMMfb+aINHz/p/jbcY+mYeXBoZoxTfdSQ8VAJaCw= +cloud.google.com/go/mediatranslation v0.5.0/go.mod h1:jGPUhGTybqsPQn91pNXw0xVHfuJ3leR1wj37oU3y1f4= +cloud.google.com/go/mediatranslation v0.6.0/go.mod h1:hHdBCTYNigsBxshbznuIMFNe5QXEowAuNmmC7h8pu5w= +cloud.google.com/go/mediatranslation v0.7.0/go.mod h1:LCnB/gZr90ONOIQLgSXagp8XUW1ODs2UmUMvcgMfI2I= +cloud.google.com/go/memcache v1.4.0/go.mod h1:rTOfiGZtJX1AaFUrOgsMHX5kAzaTQ8azHiuDoTPzNsE= +cloud.google.com/go/memcache v1.5.0/go.mod h1:dk3fCK7dVo0cUU2c36jKb4VqKPS22BTkf81Xq617aWM= +cloud.google.com/go/memcache v1.6.0/go.mod h1:XS5xB0eQZdHtTuTF9Hf8eJkKtR3pVRCcvJwtm68T3rA= +cloud.google.com/go/memcache v1.7.0/go.mod h1:ywMKfjWhNtkQTxrWxCkCFkoPjLHPW6A7WOTVI8xy3LY= +cloud.google.com/go/memcache v1.9.0/go.mod h1:8oEyzXCu+zo9RzlEaEjHl4KkgjlNDaXbCQeQWlzNFJM= +cloud.google.com/go/metastore v1.5.0/go.mod h1:2ZNrDcQwghfdtCwJ33nM0+GrBGlVuh8rakL3vdPY3XY= +cloud.google.com/go/metastore v1.6.0/go.mod h1:6cyQTls8CWXzk45G55x57DVQ9gWg7RiH65+YgPsNh9s= +cloud.google.com/go/metastore v1.7.0/go.mod h1:s45D0B4IlsINu87/AsWiEVYbLaIMeUSoxlKKDqBGFS8= +cloud.google.com/go/metastore v1.8.0/go.mod h1:zHiMc4ZUpBiM7twCIFQmJ9JMEkDSyZS9U12uf7wHqSI= +cloud.google.com/go/metastore v1.10.0/go.mod h1:fPEnH3g4JJAk+gMRnrAnoqyv2lpUCqJPWOodSaf45Eo= +cloud.google.com/go/monitoring v1.7.0/go.mod h1:HpYse6kkGo//7p6sT0wsIC6IBDET0RhIsnmlA53dvEk= +cloud.google.com/go/monitoring v1.8.0/go.mod h1:E7PtoMJ1kQXWxPjB6mv2fhC5/15jInuulFdYYtlcvT4= +cloud.google.com/go/monitoring v1.12.0/go.mod h1:yx8Jj2fZNEkL/GYZyTLS4ZtZEZN8WtDEiEqG4kLK50w= +cloud.google.com/go/networkconnectivity v1.4.0/go.mod h1:nOl7YL8odKyAOtzNX73/M5/mGZgqqMeryi6UPZTk/rA= +cloud.google.com/go/networkconnectivity v1.5.0/go.mod h1:3GzqJx7uhtlM3kln0+x5wyFvuVH1pIBJjhCpjzSt75o= +cloud.google.com/go/networkconnectivity v1.6.0/go.mod h1:OJOoEXW+0LAxHh89nXd64uGG+FbQoeH8DtxCHVOMlaM= +cloud.google.com/go/networkconnectivity v1.7.0/go.mod h1:RMuSbkdbPwNMQjB5HBWD5MpTBnNm39iAVpC3TmsExt8= +cloud.google.com/go/networkconnectivity v1.10.0/go.mod h1:UP4O4sWXJG13AqrTdQCD9TnLGEbtNRqjuaaA7bNjF5E= +cloud.google.com/go/networkmanagement v1.4.0/go.mod h1:Q9mdLLRn60AsOrPc8rs8iNV6OHXaGcDdsIQe1ohekq8= +cloud.google.com/go/networkmanagement v1.5.0/go.mod h1:ZnOeZ/evzUdUsnvRt792H0uYEnHQEMaz+REhhzJRcf4= +cloud.google.com/go/networkmanagement v1.6.0/go.mod h1:5pKPqyXjB/sgtvB5xqOemumoQNB7y95Q7S+4rjSOPYY= +cloud.google.com/go/networksecurity v0.5.0/go.mod h1:xS6fOCoqpVC5zx15Z/MqkfDwH4+m/61A3ODiDV1xmiQ= +cloud.google.com/go/networksecurity v0.6.0/go.mod h1:Q5fjhTr9WMI5mbpRYEbiexTzROf7ZbDzvzCrNl14nyU= +cloud.google.com/go/networksecurity v0.7.0/go.mod h1:mAnzoxx/8TBSyXEeESMy9OOYwo1v+gZ5eMRnsT5bC8k= +cloud.google.com/go/notebooks v1.2.0/go.mod h1:9+wtppMfVPUeJ8fIWPOq1UnATHISkGXGqTkxeieQ6UY= +cloud.google.com/go/notebooks v1.3.0/go.mod h1:bFR5lj07DtCPC7YAAJ//vHskFBxA5JzYlH68kXVdk34= +cloud.google.com/go/notebooks v1.4.0/go.mod h1:4QPMngcwmgb6uw7Po99B2xv5ufVoIQ7nOGDyL4P8AgA= +cloud.google.com/go/notebooks v1.5.0/go.mod h1:q8mwhnP9aR8Hpfnrc5iN5IBhrXUy8S2vuYs+kBJ/gu0= +cloud.google.com/go/notebooks v1.7.0/go.mod h1:PVlaDGfJgj1fl1S3dUwhFMXFgfYGhYQt2164xOMONmE= +cloud.google.com/go/optimization v1.1.0/go.mod h1:5po+wfvX5AQlPznyVEZjGJTMr4+CAkJf2XSTQOOl9l4= +cloud.google.com/go/optimization v1.2.0/go.mod h1:Lr7SOHdRDENsh+WXVmQhQTrzdu9ybg0NecjHidBq6xs= +cloud.google.com/go/optimization v1.3.1/go.mod h1:IvUSefKiwd1a5p0RgHDbWCIbDFgKuEdB+fPPuP0IDLI= +cloud.google.com/go/orchestration v1.3.0/go.mod h1:Sj5tq/JpWiB//X/q3Ngwdl5K7B7Y0KZ7bfv0wL6fqVA= +cloud.google.com/go/orchestration v1.4.0/go.mod h1:6W5NLFWs2TlniBphAViZEVhrXRSMgUGDfW7vrWKvsBk= +cloud.google.com/go/orchestration v1.6.0/go.mod h1:M62Bevp7pkxStDfFfTuCOaXgaaqRAga1yKyoMtEoWPQ= +cloud.google.com/go/orgpolicy v1.4.0/go.mod h1:xrSLIV4RePWmP9P3tBl8S93lTmlAxjm06NSm2UTmKvE= +cloud.google.com/go/orgpolicy v1.5.0/go.mod h1:hZEc5q3wzwXJaKrsx5+Ewg0u1LxJ51nNFlext7Tanwc= +cloud.google.com/go/orgpolicy v1.10.0/go.mod h1:w1fo8b7rRqlXlIJbVhOMPrwVljyuW5mqssvBtU18ONc= +cloud.google.com/go/osconfig v1.7.0/go.mod h1:oVHeCeZELfJP7XLxcBGTMBvRO+1nQ5tFG9VQTmYS2Fs= +cloud.google.com/go/osconfig v1.8.0/go.mod h1:EQqZLu5w5XA7eKizepumcvWx+m8mJUhEwiPqWiZeEdg= +cloud.google.com/go/osconfig v1.9.0/go.mod h1:Yx+IeIZJ3bdWmzbQU4fxNl8xsZ4amB+dygAwFPlvnNo= +cloud.google.com/go/osconfig v1.10.0/go.mod h1:uMhCzqC5I8zfD9zDEAfvgVhDS8oIjySWh+l4WK6GnWw= +cloud.google.com/go/osconfig v1.11.0/go.mod h1:aDICxrur2ogRd9zY5ytBLV89KEgT2MKB2L/n6x1ooPw= +cloud.google.com/go/oslogin v1.4.0/go.mod h1:YdgMXWRaElXz/lDk1Na6Fh5orF7gvmJ0FGLIs9LId4E= +cloud.google.com/go/oslogin v1.5.0/go.mod h1:D260Qj11W2qx/HVF29zBg+0fd6YCSjSqLUkY/qEenQU= +cloud.google.com/go/oslogin v1.6.0/go.mod h1:zOJ1O3+dTU8WPlGEkFSh7qeHPPSoxrcMbbK1Nm2iX70= +cloud.google.com/go/oslogin v1.7.0/go.mod h1:e04SN0xO1UNJ1M5GP0vzVBFicIe4O53FOfcixIqTyXo= +cloud.google.com/go/oslogin v1.9.0/go.mod h1:HNavntnH8nzrn8JCTT5fj18FuJLFJc4NaZJtBnQtKFs= +cloud.google.com/go/phishingprotection v0.5.0/go.mod h1:Y3HZknsK9bc9dMi+oE8Bim0lczMU6hrX0UpADuMefr0= +cloud.google.com/go/phishingprotection v0.6.0/go.mod h1:9Y3LBLgy0kDTcYET8ZH3bq/7qni15yVUoAxiFxnlSUA= +cloud.google.com/go/phishingprotection v0.7.0/go.mod h1:8qJI4QKHoda/sb/7/YmMQ2omRLSLYSu9bU0EKCNI+Lk= +cloud.google.com/go/policytroubleshooter v1.3.0/go.mod h1:qy0+VwANja+kKrjlQuOzmlvscn4RNsAc0e15GGqfMxg= +cloud.google.com/go/policytroubleshooter v1.4.0/go.mod h1:DZT4BcRw3QoO8ota9xw/LKtPa8lKeCByYeKTIf/vxdE= +cloud.google.com/go/policytroubleshooter v1.5.0/go.mod h1:Rz1WfV+1oIpPdN2VvvuboLVRsB1Hclg3CKQ53j9l8vw= +cloud.google.com/go/privatecatalog v0.5.0/go.mod h1:XgosMUvvPyxDjAVNDYxJ7wBW8//hLDDYmnsNcMGq1K0= +cloud.google.com/go/privatecatalog v0.6.0/go.mod h1:i/fbkZR0hLN29eEWiiwue8Pb+GforiEIBnV9yrRUOKI= +cloud.google.com/go/privatecatalog v0.7.0/go.mod h1:2s5ssIFO69F5csTXcwBP7NPFTZvps26xGzvQ2PQaBYg= cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= +cloud.google.com/go/pubsub v1.26.0/go.mod h1:QgBH3U/jdJy/ftjPhTkyXNj543Tin1pRYcdcPRnFIRI= +cloud.google.com/go/pubsub v1.27.1/go.mod h1:hQN39ymbV9geqBnfQq6Xf63yNhUAhv9CZhzp5O6qsW0= +cloud.google.com/go/pubsub v1.28.0/go.mod h1:vuXFpwaVoIPQMGXqRyUQigu/AX1S3IWugR9xznmcXX8= +cloud.google.com/go/pubsublite v1.5.0/go.mod h1:xapqNQ1CuLfGi23Yda/9l4bBCKz/wC3KIJ5gKcxveZg= +cloud.google.com/go/pubsublite v1.6.0/go.mod h1:1eFCS0U11xlOuMFV/0iBqw3zP12kddMeCbj/F3FSj9k= +cloud.google.com/go/recaptchaenterprise v1.3.1/go.mod h1:OdD+q+y4XGeAlxRaMn1Y7/GveP6zmq76byL6tjPE7d4= +cloud.google.com/go/recaptchaenterprise/v2 v2.1.0/go.mod h1:w9yVqajwroDNTfGuhmOjPDN//rZGySaf6PtFVcSCa7o= +cloud.google.com/go/recaptchaenterprise/v2 v2.2.0/go.mod h1:/Zu5jisWGeERrd5HnlS3EUGb/D335f9k51B/FVil0jk= +cloud.google.com/go/recaptchaenterprise/v2 v2.3.0/go.mod h1:O9LwGCjrhGHBQET5CA7dd5NwwNQUErSgEDit1DLNTdo= +cloud.google.com/go/recaptchaenterprise/v2 v2.4.0/go.mod h1:Am3LHfOuBstrLrNCBrlI5sbwx9LBg3te2N6hGvHn2mE= +cloud.google.com/go/recaptchaenterprise/v2 v2.5.0/go.mod h1:O8LzcHXN3rz0j+LBC91jrwI3R+1ZSZEWrfL7XHgNo9U= +cloud.google.com/go/recaptchaenterprise/v2 v2.6.0/go.mod h1:RPauz9jeLtB3JVzg6nCbe12qNoaa8pXc4d/YukAmcnA= +cloud.google.com/go/recommendationengine v0.5.0/go.mod h1:E5756pJcVFeVgaQv3WNpImkFP8a+RptV6dDLGPILjvg= +cloud.google.com/go/recommendationengine v0.6.0/go.mod h1:08mq2umu9oIqc7tDy8sx+MNJdLG0fUi3vaSVbztHgJ4= +cloud.google.com/go/recommendationengine v0.7.0/go.mod h1:1reUcE3GIu6MeBz/h5xZJqNLuuVjNg1lmWMPyjatzac= +cloud.google.com/go/recommender v1.5.0/go.mod h1:jdoeiBIVrJe9gQjwd759ecLJbxCDED4A6p+mqoqDvTg= +cloud.google.com/go/recommender v1.6.0/go.mod h1:+yETpm25mcoiECKh9DEScGzIRyDKpZ0cEhWGo+8bo+c= +cloud.google.com/go/recommender v1.7.0/go.mod h1:XLHs/W+T8olwlGOgfQenXBTbIseGclClff6lhFVe9Bs= +cloud.google.com/go/recommender v1.8.0/go.mod h1:PkjXrTT05BFKwxaUxQmtIlrtj0kph108r02ZZQ5FE70= +cloud.google.com/go/recommender v1.9.0/go.mod h1:PnSsnZY7q+VL1uax2JWkt/UegHssxjUVVCrX52CuEmQ= +cloud.google.com/go/redis v1.7.0/go.mod h1:V3x5Jq1jzUcg+UNsRvdmsfuFnit1cfe3Z/PGyq/lm4Y= +cloud.google.com/go/redis v1.8.0/go.mod h1:Fm2szCDavWzBk2cDKxrkmWBqoCiL1+Ctwq7EyqBCA/A= +cloud.google.com/go/redis v1.9.0/go.mod h1:HMYQuajvb2D0LvMgZmLDZW8V5aOC/WxstZHiy4g8OiA= +cloud.google.com/go/redis v1.10.0/go.mod h1:ThJf3mMBQtW18JzGgh41/Wld6vnDDc/F/F35UolRZPM= +cloud.google.com/go/redis v1.11.0/go.mod h1:/X6eicana+BWcUda5PpwZC48o37SiFVTFSs0fWAJ7uQ= +cloud.google.com/go/resourcemanager v1.3.0/go.mod h1:bAtrTjZQFJkiWTPDb1WBjzvc6/kifjj4QBYuKCCoqKA= +cloud.google.com/go/resourcemanager v1.4.0/go.mod h1:MwxuzkumyTX7/a3n37gmsT3py7LIXwrShilPh3P1tR0= +cloud.google.com/go/resourcemanager v1.5.0/go.mod h1:eQoXNAiAvCf5PXxWxXjhKQoTMaUSNrEfg+6qdf/wots= +cloud.google.com/go/resourcesettings v1.3.0/go.mod h1:lzew8VfESA5DQ8gdlHwMrqZs1S9V87v3oCnKCWoOuQU= +cloud.google.com/go/resourcesettings v1.4.0/go.mod h1:ldiH9IJpcrlC3VSuCGvjR5of/ezRrOxFtpJoJo5SmXg= +cloud.google.com/go/resourcesettings v1.5.0/go.mod h1:+xJF7QSG6undsQDfsCJyqWXyBwUoJLhetkRMDRnIoXA= +cloud.google.com/go/retail v1.8.0/go.mod h1:QblKS8waDmNUhghY2TI9O3JLlFk8jybHeV4BF19FrE4= +cloud.google.com/go/retail v1.9.0/go.mod h1:g6jb6mKuCS1QKnH/dpu7isX253absFl6iE92nHwlBUY= +cloud.google.com/go/retail v1.10.0/go.mod h1:2gDk9HsL4HMS4oZwz6daui2/jmKvqShXKQuB2RZ+cCc= +cloud.google.com/go/retail v1.11.0/go.mod h1:MBLk1NaWPmh6iVFSz9MeKG/Psyd7TAgm6y/9L2B4x9Y= +cloud.google.com/go/retail v1.12.0/go.mod h1:UMkelN/0Z8XvKymXFbD4EhFJlYKRx1FGhQkVPU5kF14= +cloud.google.com/go/run v0.2.0/go.mod h1:CNtKsTA1sDcnqqIFR3Pb5Tq0usWxJJvsWOCPldRU3Do= +cloud.google.com/go/run v0.3.0/go.mod h1:TuyY1+taHxTjrD0ZFk2iAR+xyOXEA0ztb7U3UNA0zBo= +cloud.google.com/go/run v0.8.0/go.mod h1:VniEnuBwqjigv0A7ONfQUaEItaiCRVujlMqerPPiktM= +cloud.google.com/go/scheduler v1.4.0/go.mod h1:drcJBmxF3aqZJRhmkHQ9b3uSSpQoltBPGPxGAWROx6s= +cloud.google.com/go/scheduler v1.5.0/go.mod h1:ri073ym49NW3AfT6DZi21vLZrG07GXr5p3H1KxN5QlI= +cloud.google.com/go/scheduler v1.6.0/go.mod h1:SgeKVM7MIwPn3BqtcBntpLyrIJftQISRrYB5ZtT+KOk= +cloud.google.com/go/scheduler v1.7.0/go.mod h1:jyCiBqWW956uBjjPMMuX09n3x37mtyPJegEWKxRsn44= +cloud.google.com/go/scheduler v1.8.0/go.mod h1:TCET+Y5Gp1YgHT8py4nlg2Sew8nUHMqcpousDgXJVQc= +cloud.google.com/go/secretmanager v1.6.0/go.mod h1:awVa/OXF6IiyaU1wQ34inzQNc4ISIDIrId8qE5QGgKA= +cloud.google.com/go/secretmanager v1.8.0/go.mod h1:hnVgi/bN5MYHd3Gt0SPuTPPp5ENina1/LxM+2W9U9J4= +cloud.google.com/go/secretmanager v1.9.0/go.mod h1:b71qH2l1yHmWQHt9LC80akm86mX8AL6X1MA01dW8ht4= +cloud.google.com/go/secretmanager v1.10.0/go.mod h1:MfnrdvKMPNra9aZtQFvBcvRU54hbPD8/HayQdlUgJpU= +cloud.google.com/go/security v1.5.0/go.mod h1:lgxGdyOKKjHL4YG3/YwIL2zLqMFCKs0UbQwgyZmfJl4= +cloud.google.com/go/security v1.7.0/go.mod h1:mZklORHl6Bg7CNnnjLH//0UlAlaXqiG7Lb9PsPXLfD0= +cloud.google.com/go/security v1.8.0/go.mod h1:hAQOwgmaHhztFhiQ41CjDODdWP0+AE1B3sX4OFlq+GU= +cloud.google.com/go/security v1.9.0/go.mod h1:6Ta1bO8LXI89nZnmnsZGp9lVoVWXqsVbIq/t9dzI+2Q= +cloud.google.com/go/security v1.10.0/go.mod h1:QtOMZByJVlibUT2h9afNDWRZ1G96gVywH8T5GUSb9IA= +cloud.google.com/go/security v1.12.0/go.mod h1:rV6EhrpbNHrrxqlvW0BWAIawFWq3X90SduMJdFwtLB8= +cloud.google.com/go/securitycenter v1.13.0/go.mod h1:cv5qNAqjY84FCN6Y9z28WlkKXyWsgLO832YiWwkCWcU= +cloud.google.com/go/securitycenter v1.14.0/go.mod h1:gZLAhtyKv85n52XYWt6RmeBdydyxfPeTrpToDPw4Auc= +cloud.google.com/go/securitycenter v1.15.0/go.mod h1:PeKJ0t8MoFmmXLXWm41JidyzI3PJjd8sXWaVqg43WWk= +cloud.google.com/go/securitycenter v1.16.0/go.mod h1:Q9GMaLQFUD+5ZTabrbujNWLtSLZIZF7SAR0wWECrjdk= +cloud.google.com/go/securitycenter v1.18.1/go.mod h1:0/25gAzCM/9OL9vVx4ChPeM/+DlfGQJDwBy/UC8AKK0= +cloud.google.com/go/servicecontrol v1.4.0/go.mod h1:o0hUSJ1TXJAmi/7fLJAedOovnujSEvjKCAFNXPQ1RaU= +cloud.google.com/go/servicecontrol v1.5.0/go.mod h1:qM0CnXHhyqKVuiZnGKrIurvVImCs8gmqWsDoqe9sU1s= +cloud.google.com/go/servicecontrol v1.10.0/go.mod h1:pQvyvSRh7YzUF2efw7H87V92mxU8FnFDawMClGCNuAA= +cloud.google.com/go/servicecontrol v1.11.0/go.mod h1:kFmTzYzTUIuZs0ycVqRHNaNhgR+UMUpw9n02l/pY+mc= +cloud.google.com/go/servicedirectory v1.4.0/go.mod h1:gH1MUaZCgtP7qQiI+F+A+OpeKF/HQWgtAddhTbhL2bs= +cloud.google.com/go/servicedirectory v1.5.0/go.mod h1:QMKFL0NUySbpZJ1UZs3oFAmdvVxhhxB6eJ/Vlp73dfg= +cloud.google.com/go/servicedirectory v1.6.0/go.mod h1:pUlbnWsLH9c13yGkxCmfumWEPjsRs1RlmJ4pqiNjVL4= +cloud.google.com/go/servicedirectory v1.7.0/go.mod h1:5p/U5oyvgYGYejufvxhgwjL8UVXjkuw7q5XcG10wx1U= +cloud.google.com/go/servicedirectory v1.8.0/go.mod h1:srXodfhY1GFIPvltunswqXpVxFPpZjf8nkKQT7XcXaY= +cloud.google.com/go/servicemanagement v1.4.0/go.mod h1:d8t8MDbezI7Z2R1O/wu8oTggo3BI2GKYbdG4y/SJTco= +cloud.google.com/go/servicemanagement v1.5.0/go.mod h1:XGaCRe57kfqu4+lRxaFEAuqmjzF0r+gWHjWqKqBvKFo= +cloud.google.com/go/servicemanagement v1.6.0/go.mod h1:aWns7EeeCOtGEX4OvZUWCCJONRZeFKiptqKf1D0l/Jc= +cloud.google.com/go/serviceusage v1.3.0/go.mod h1:Hya1cozXM4SeSKTAgGXgj97GlqUvF5JaoXacR1JTP/E= +cloud.google.com/go/serviceusage v1.4.0/go.mod h1:SB4yxXSaYVuUBYUml6qklyONXNLt83U0Rb+CXyhjEeU= +cloud.google.com/go/serviceusage v1.5.0/go.mod h1:w8U1JvqUqwJNPEOTQjrMHkw3IaIFLoLsPLvsE3xueec= +cloud.google.com/go/shell v1.3.0/go.mod h1:VZ9HmRjZBsjLGXusm7K5Q5lzzByZmJHf1d0IWHEN5X4= +cloud.google.com/go/shell v1.4.0/go.mod h1:HDxPzZf3GkDdhExzD/gs8Grqk+dmYcEjGShZgYa9URw= +cloud.google.com/go/shell v1.6.0/go.mod h1:oHO8QACS90luWgxP3N9iZVuEiSF84zNyLytb+qE2f9A= +cloud.google.com/go/spanner v1.41.0/go.mod h1:MLYDBJR/dY4Wt7ZaMIQ7rXOTLjYrmxLE/5ve9vFfWos= +cloud.google.com/go/spanner v1.44.0/go.mod h1:G8XIgYdOK+Fbcpbs7p2fiprDw4CaZX63whnSMLVBxjk= +cloud.google.com/go/speech v1.6.0/go.mod h1:79tcr4FHCimOp56lwC01xnt/WPJZc4v3gzyT7FoBkCM= +cloud.google.com/go/speech v1.7.0/go.mod h1:KptqL+BAQIhMsj1kOP2la5DSEEerPDuOP/2mmkhHhZQ= +cloud.google.com/go/speech v1.8.0/go.mod h1:9bYIl1/tjsAnMgKGHKmBZzXKEkGgtU+MpdDPTE9f7y0= +cloud.google.com/go/speech v1.9.0/go.mod h1:xQ0jTcmnRFFM2RfX/U+rk6FQNUF6DQlydUSyoooSpco= +cloud.google.com/go/speech v1.14.1/go.mod h1:gEosVRPJ9waG7zqqnsHpYTOoAS4KouMRLDFMekpJ0J0= cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= +cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo= +cloud.google.com/go/storage v1.22.1/go.mod h1:S8N1cAStu7BOeFfE8KAQzmyyLkK8p/vmRq6kuBTW58Y= +cloud.google.com/go/storage v1.23.0/go.mod h1:vOEEDNFnciUMhBeT6hsJIn3ieU5cFRmzeLgDvXzfIXc= +cloud.google.com/go/storage v1.27.0/go.mod h1:x9DOL8TK/ygDUMieqwfhdpQryTeEkhGKMi80i/iqR2s= +cloud.google.com/go/storage v1.28.1/go.mod h1:Qnisd4CqDdo6BGs2AD5LLnEsmSQ80wQ5ogcBBKhU86Y= +cloud.google.com/go/storagetransfer v1.5.0/go.mod h1:dxNzUopWy7RQevYFHewchb29POFv3/AaBgnhqzqiK0w= +cloud.google.com/go/storagetransfer v1.6.0/go.mod h1:y77xm4CQV/ZhFZH75PLEXY0ROiS7Gh6pSKrM8dJyg6I= +cloud.google.com/go/storagetransfer v1.7.0/go.mod h1:8Giuj1QNb1kfLAiWM1bN6dHzfdlDAVC9rv9abHot2W4= +cloud.google.com/go/talent v1.1.0/go.mod h1:Vl4pt9jiHKvOgF9KoZo6Kob9oV4lwd/ZD5Cto54zDRw= +cloud.google.com/go/talent v1.2.0/go.mod h1:MoNF9bhFQbiJ6eFD3uSsg0uBALw4n4gaCaEjBw9zo8g= +cloud.google.com/go/talent v1.3.0/go.mod h1:CmcxwJ/PKfRgd1pBjQgU6W3YBwiewmUzQYH5HHmSCmM= +cloud.google.com/go/talent v1.4.0/go.mod h1:ezFtAgVuRf8jRsvyE6EwmbTK5LKciD4KVnHuDEFmOOA= +cloud.google.com/go/talent v1.5.0/go.mod h1:G+ODMj9bsasAEJkQSzO2uHQWXHHXUomArjWQQYkqK6c= +cloud.google.com/go/texttospeech v1.4.0/go.mod h1:FX8HQHA6sEpJ7rCMSfXuzBcysDAuWusNNNvN9FELDd8= +cloud.google.com/go/texttospeech v1.5.0/go.mod h1:oKPLhR4n4ZdQqWKURdwxMy0uiTS1xU161C8W57Wkea4= +cloud.google.com/go/texttospeech v1.6.0/go.mod h1:YmwmFT8pj1aBblQOI3TfKmwibnsfvhIBzPXcW4EBovc= +cloud.google.com/go/tpu v1.3.0/go.mod h1:aJIManG0o20tfDQlRIej44FcwGGl/cD0oiRyMKG19IQ= +cloud.google.com/go/tpu v1.4.0/go.mod h1:mjZaX8p0VBgllCzF6wcU2ovUXN9TONFLd7iz227X2Xg= +cloud.google.com/go/tpu v1.5.0/go.mod h1:8zVo1rYDFuW2l4yZVY0R0fb/v44xLh3llq7RuV61fPM= +cloud.google.com/go/trace v1.3.0/go.mod h1:FFUE83d9Ca57C+K8rDl/Ih8LwOzWIV1krKgxg6N0G28= +cloud.google.com/go/trace v1.4.0/go.mod h1:UG0v8UBqzusp+z63o7FK74SdFE+AXpCLdFb1rshXG+Y= +cloud.google.com/go/trace v1.8.0/go.mod h1:zH7vcsbAhklH8hWFig58HvxcxyQbaIqMarMg9hn5ECA= +cloud.google.com/go/translate v1.3.0/go.mod h1:gzMUwRjvOqj5i69y/LYLd8RrNQk+hOmIXTi9+nb3Djs= +cloud.google.com/go/translate v1.4.0/go.mod h1:06Dn/ppvLD6WvA5Rhdp029IX2Mi3Mn7fpMRLPvXT5Wg= +cloud.google.com/go/translate v1.5.0/go.mod h1:29YDSYveqqpA1CQFD7NQuP49xymq17RXNaUDdc0mNu0= +cloud.google.com/go/translate v1.6.0/go.mod h1:lMGRudH1pu7I3n3PETiOB2507gf3HnfLV8qlkHZEyos= +cloud.google.com/go/video v1.8.0/go.mod h1:sTzKFc0bUSByE8Yoh8X0mn8bMymItVGPfTuUBUyRgxk= +cloud.google.com/go/video v1.9.0/go.mod h1:0RhNKFRF5v92f8dQt0yhaHrEuH95m068JYOvLZYnJSw= +cloud.google.com/go/video v1.12.0/go.mod h1:MLQew95eTuaNDEGriQdcYn0dTwf9oWiA4uYebxM5kdg= +cloud.google.com/go/video v1.13.0/go.mod h1:ulzkYlYgCp15N2AokzKjy7MQ9ejuynOJdf1tR5lGthk= +cloud.google.com/go/videointelligence v1.6.0/go.mod h1:w0DIDlVRKtwPCn/C4iwZIJdvC69yInhW0cfi+p546uU= +cloud.google.com/go/videointelligence v1.7.0/go.mod h1:k8pI/1wAhjznARtVT9U1llUaFNPh7muw8QyOUpavru4= +cloud.google.com/go/videointelligence v1.8.0/go.mod h1:dIcCn4gVDdS7yte/w+koiXn5dWVplOZkE+xwG9FgK+M= +cloud.google.com/go/videointelligence v1.9.0/go.mod h1:29lVRMPDYHikk3v8EdPSaL8Ku+eMzDljjuvRs105XoU= +cloud.google.com/go/videointelligence v1.10.0/go.mod h1:LHZngX1liVtUhZvi2uNS0VQuOzNi2TkY1OakiuoUOjU= +cloud.google.com/go/vision v1.2.0/go.mod h1:SmNwgObm5DpFBme2xpyOyasvBc1aPdjvMk2bBk0tKD0= +cloud.google.com/go/vision/v2 v2.2.0/go.mod h1:uCdV4PpN1S0jyCyq8sIM42v2Y6zOLkZs+4R9LrGYwFo= +cloud.google.com/go/vision/v2 v2.3.0/go.mod h1:UO61abBx9QRMFkNBbf1D8B1LXdS2cGiiCRx0vSpZoUo= +cloud.google.com/go/vision/v2 v2.4.0/go.mod h1:VtI579ll9RpVTrdKdkMzckdnwMyX2JILb+MhPqRbPsY= +cloud.google.com/go/vision/v2 v2.5.0/go.mod h1:MmaezXOOE+IWa+cS7OhRRLK2cNv1ZL98zhqFFZaaH2E= +cloud.google.com/go/vision/v2 v2.6.0/go.mod h1:158Hes0MvOS9Z/bDMSFpjwsUrZ5fPrdwuyyvKSGAGMY= +cloud.google.com/go/vmmigration v1.2.0/go.mod h1:IRf0o7myyWFSmVR1ItrBSFLFD/rJkfDCUTO4vLlJvsE= +cloud.google.com/go/vmmigration v1.3.0/go.mod h1:oGJ6ZgGPQOFdjHuocGcLqX4lc98YQ7Ygq8YQwHh9A7g= +cloud.google.com/go/vmmigration v1.5.0/go.mod h1:E4YQ8q7/4W9gobHjQg4JJSgXXSgY21nA5r8swQV+Xxc= +cloud.google.com/go/vmwareengine v0.1.0/go.mod h1:RsdNEf/8UDvKllXhMz5J40XxDrNJNN4sagiox+OI208= +cloud.google.com/go/vmwareengine v0.2.2/go.mod h1:sKdctNJxb3KLZkE/6Oui94iw/xs9PRNC2wnNLXsHvH8= +cloud.google.com/go/vpcaccess v1.4.0/go.mod h1:aQHVbTWDYUR1EbTApSVvMq1EnT57ppDmQzZ3imqIk4w= +cloud.google.com/go/vpcaccess v1.5.0/go.mod h1:drmg4HLk9NkZpGfCmZ3Tz0Bwnm2+DKqViEpeEpOq0m8= +cloud.google.com/go/vpcaccess v1.6.0/go.mod h1:wX2ILaNhe7TlVa4vC5xce1bCnqE3AeH27RV31lnmZes= +cloud.google.com/go/webrisk v1.4.0/go.mod h1:Hn8X6Zr+ziE2aNd8SliSDWpEnSS1u4R9+xXZmFiHmGE= +cloud.google.com/go/webrisk v1.5.0/go.mod h1:iPG6fr52Tv7sGk0H6qUFzmL3HHZev1htXuWDEEsqMTg= +cloud.google.com/go/webrisk v1.6.0/go.mod h1:65sW9V9rOosnc9ZY7A7jsy1zoHS5W9IAXv6dGqhMQMc= +cloud.google.com/go/webrisk v1.7.0/go.mod h1:mVMHgEYH0r337nmt1JyLthzMr6YxwN1aAIEc2fTcq7A= +cloud.google.com/go/webrisk v1.8.0/go.mod h1:oJPDuamzHXgUc+b8SiHRcVInZQuybnvEW72PqTc7sSg= +cloud.google.com/go/websecurityscanner v1.3.0/go.mod h1:uImdKm2wyeXQevQJXeh8Uun/Ym1VqworNDlBXQevGMo= +cloud.google.com/go/websecurityscanner v1.4.0/go.mod h1:ebit/Fp0a+FWu5j4JOmJEV8S8CzdTkAS77oDsiSqYWQ= +cloud.google.com/go/websecurityscanner v1.5.0/go.mod h1:Y6xdCPy81yi0SQnDY1xdNTNpfY1oAgXUlcfN3B3eSng= +cloud.google.com/go/workflows v1.6.0/go.mod h1:6t9F5h/unJz41YqfBmqSASJSXccBLtD1Vwf+KmJENM0= +cloud.google.com/go/workflows v1.7.0/go.mod h1:JhSrZuVZWuiDfKEFxU0/F1PQjmpnpcoISEXH2bcHC3M= +cloud.google.com/go/workflows v1.8.0/go.mod h1:ysGhmEajwZxGn1OhGOGKsTXc5PyxOc0vfKf5Af+to4M= +cloud.google.com/go/workflows v1.9.0/go.mod h1:ZGkj1aFIOd9c8Gerkjjq7OW7I5+l6cSvT3ujaO/WwSA= +cloud.google.com/go/workflows v1.10.0/go.mod h1:fZ8LmRmZQWacon9UCX1r/g/DfAXx5VcPALq2CxzdePw= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= +gioui.org v0.0.0-20210308172011-57750fc8a0a6/go.mod h1:RSH6KIUZ0p2xy5zHDxgAM4zumjgTw83q2ge/PI+yyw8= +git.sr.ht/~sbinet/gg v0.3.1/go.mod h1:KGYtlADtqsqANL9ueOFkWymvzUvLMQllU5Ixo+8v3pc= github.com/Azure/azure-pipeline-go v0.2.1/go.mod h1:UGSo8XybXnIGZ3epmeBw7Jdz+HiUVpqIlpz/HKHylF4= github.com/Azure/azure-pipeline-go v0.2.2/go.mod h1:4rQ/NZncSvGqNkkOsNpOU1tgoNuIlp9AfUH5G1tvCHc= github.com/Azure/azure-storage-blob-go v0.7.0/go.mod h1:f9YQKtsG1nMisotuTPpO0tjNuEjKRYAcJU8/ydDI++4= @@ -59,25 +536,54 @@ github.com/Azure/go-autorest/logger v0.1.0/go.mod h1:oExouG+K6PryycPJfVSxi/koC6L github.com/Azure/go-autorest/tracing v0.5.0/go.mod h1:r/s2XiOKccPW3HrqB+W0TQzfbtp2fGCgRFtBroKn4Dk= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= +github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c/go.mod h1:X0CRv0ky0k6m906ixxpzmDRLvX58TFUKS2eePweuyxk= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/OneOfOne/xxhash v1.2.5/go.mod h1:eZbhyaAYD41SGSSsnmcpxVoRiQ/MPUTjUdIIOT9Um7Q= +github.com/SaveTheRbtz/mph v0.1.2 h1:5l3W496Up+7BNOVJQnJhzcGBh+wWfxWdmPUAkx3WmaM= +github.com/SaveTheRbtz/mph v0.1.2/go.mod h1:V4+WtKQPe2+dEA5os1WnGsEB0NR9qgqqgIiSt73+sT4= github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg= github.com/VictoriaMetrics/fastcache v1.5.3/go.mod h1:+jv9Ckb+za/P1ZRg/sulP5Ni1v49daAVERr0H3CuscE= github.com/aead/siphash v1.0.1/go.mod h1:Nywa3cDsYNNK3gaciGTWPwHt0wlpNV15vwmswBAUSII= +github.com/ajstarks/deck v0.0.0-20200831202436-30c9fc6549a9/go.mod h1:JynElWSGnm/4RlzPXRlREEwqTHAN3T56Bv2ITsFT3gY= +github.com/ajstarks/deck/generate v0.0.0-20210309230005-c3f852c02e19/go.mod h1:T13YZdzov6OU0A1+RfKZiZN9ca6VeKdBdyDV+BY97Tk= github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw= +github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b/go.mod h1:1KcenG0jGWcpt8ov532z81sp/kMMUG485J2InIOyADM= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/allegro/bigcache v1.2.1-0.20190218064605-e24eb225f156/go.mod h1:Cb/ax3seSYIx7SuZdm2G2xzfwmv3TPSk2ucNfQESPXM= +github.com/andybalholm/brotli v1.0.4/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig= github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= +github.com/apache/arrow/go/v10 v10.0.1/go.mod h1:YvhnlEePVnBS4+0z3fhPfUy7W1Ikj0Ih0vcRo/gZ1M0= +github.com/apache/thrift v0.16.0/go.mod h1:PHK3hniurgQaNMZYaCLEqXKsYK8upmhPbmdP2FXSqgU= github.com/aristanetworks/goarista v0.0.0-20170210015632-ea17b1a17847/go.mod h1:D/tb0zPVXnP7fmsLZjtdUhSsumbK/ij54UXjjVgMGxQ= github.com/aws/aws-sdk-go v1.25.48/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= +github.com/aws/aws-sdk-go-v2 v1.17.3/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw= +github.com/aws/aws-sdk-go-v2 v1.17.7/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw= +github.com/aws/aws-sdk-go-v2/config v1.18.19/go.mod h1:XvTmGMY8d52ougvakOv1RpiTLPz9dlG/OQHsKU/cMmY= +github.com/aws/aws-sdk-go-v2/credentials v1.13.18/go.mod h1:vnwlwjIe+3XJPBYKu1et30ZPABG3VaXJYr8ryohpIyM= +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.1/go.mod h1:lfUx8puBRdM5lVVMQlwt2v+ofiG/X6Ms+dy0UkG/kXw= +github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.27/go.mod h1:a1/UpzeyBBerajpnP5nGZa9mGzsBn5cOKxm6NWQsvoI= +github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.31/go.mod h1:QT0BqUvX1Bh2ABdTGnjqEjvjzrCfIniM9Sc8zn9Yndo= +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.21/go.mod h1:+Gxn8jYn5k9ebfHEqlhrMirFjSW0v0C9fI+KN5vk2kE= +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.25/go.mod h1:zBHOPwhBc3FlQjQJE/D3IfPWiWaQmT06Vq9aNukDo0k= +github.com/aws/aws-sdk-go-v2/internal/ini v1.3.32/go.mod h1:XGhIBZDEgfqmFIugclZ6FU7v75nHhBDtzuB4xB/tEi4= +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.25/go.mod h1:/95IA+0lMnzW6XzqYJRpjjsAbKEORVeO0anQqjd2CNU= +github.com/aws/aws-sdk-go-v2/service/kms v1.20.1/go.mod h1:13sjgMH7Xu4e46+0BEDhSnNh+cImHSYS5PpBjV3oXcU= +github.com/aws/aws-sdk-go-v2/service/sso v1.12.6/go.mod h1:Y1VOmit/Fn6Tz1uFAeCO6Q7M2fmfXSCLeL5INVYsLuY= +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.6/go.mod h1:Lh/bc9XUf8CfOY6Jp5aIkQtN+j1mc+nExc+KXj9jx2s= +github.com/aws/aws-sdk-go-v2/service/sts v1.18.7/go.mod h1:JuTnSoeePXmMVe9G8NcjjwgOKEfZ4cOjMuT2IBT/2eI= +github.com/aws/smithy-go v1.13.5/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +github.com/bits-and-blooms/bitset v1.2.2/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= github.com/bits-and-blooms/bitset v1.5.0 h1:NpE8frKRLGHIcEzkR+gZhiioW1+WbYV6fKwD6ZIpQT8= github.com/bits-and-blooms/bitset v1.5.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= +github.com/boombuler/barcode v1.0.0/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= +github.com/boombuler/barcode v1.0.1/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= github.com/btcsuite/btcd v0.0.0-20171128150713-2e60448ffcc6/go.mod h1:Dmm/EzmjnCiweXmzRIAiUWCInVmPgjkzgv5k4tVyXiQ= github.com/btcsuite/btcd v0.20.1-beta/go.mod h1:wVuoA8VJLEcwgqHBwHmzLRazpKxTv13Px/pDuV7OomQ= github.com/btcsuite/btcd/btcec/v2 v2.2.1 h1:xP60mv8fvp+0khmrN0zTdPC3cNm24rfeE6lh2R/Yv3E= github.com/btcsuite/btcd/btcec/v2 v2.2.1/go.mod h1:9/CSmJxmuvqzX9Wh2fXMWToLOHhPd11lSPuIupwTkI8= +github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1/go.mod h1:7SFka0XMvUgj3hfZtydOrQY2mwhPclbT2snogU7SQQc= github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f/go.mod h1:TdznJufoqS23FtqVCzL0ZqgP5MqXbb4fg/WgDys70nA= github.com/btcsuite/btcutil v0.0.0-20190425235716-9e5f4b9a998d/go.mod h1:+5NJ2+qvTyV9exUAL/rxXi3DcLg2Ts+ymUAY5y4NvMg= github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd/go.mod h1:HHNXQzUsZCxOoE+CPiyCTO6x34Zs86zZUiwtpXoGdtg= @@ -86,12 +592,16 @@ github.com/btcsuite/snappy-go v0.0.0-20151229074030-0bdef8d06723/go.mod h1:8woku github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792/go.mod h1:ghJtEyQwv5/p4Mg4C0fgbePVuGr935/5ddU9Z3TmDRY= github.com/btcsuite/winsvc v1.0.0/go.mod h1:jsenWakMcC0zFBFurPLEAyrnc/teJEM1O46fmI40EZs= github.com/bytecodealliance/wasmtime-go v0.22.0/go.mod h1:q320gUxqyI8yB+ZqRuaJOEnGkAnHh6WtJjMaT2CW4wI= +github.com/bytecodealliance/wasmtime-go/v7 v7.0.0/go.mod h1:bu6fic7trDt20w+LMooX7j3fsOwv4/ln6j8gAdP6vmA= github.com/c-bata/go-prompt v0.2.5/go.mod h1:vFnjEGDIIA/Lib7giyE4E9c50Lvl8j0S+7FVlAwDAVw= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= +github.com/census-instrumentation/opencensus-proto v0.3.0/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= +github.com/census-instrumentation/opencensus-proto v0.4.1/go.mod h1:4T9NM4+4Vw91VeyqjLS6ao50K5bOcLKN6Q42XnYaRYw= github.com/cespare/cp v0.1.0/go.mod h1:SOGHArjBr4JWaSDEVpWpo/hNg6RoKrls6Oh40hiwW+s= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= github.com/cespare/xxhash/v2 v2.0.1-0.20190104013014-3767db7a7e18/go.mod h1:HD5P3vAIAh+Y2GAxg0PrPN1P8WkepXGpjbUPDHJqqKM= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cheekybits/genny v1.0.0/go.mod h1:+tQajlRqAUrPI7DOSpB0XAqZYtQakVtB7wXkRAgjxjQ= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= @@ -101,8 +611,27 @@ github.com/cloudflare/cloudflare-go v0.10.2-0.20190916151808-a80f83b9add9/go.mod github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= +github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= +github.com/cncf/udpa/go v0.0.0-20220112060539-c52dc94e7fbe/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20210805033703-aa0b78936158/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20211001041855-01bcc9b48dfe/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20220314180256-7f1daf1720fc/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20230105202645-06c439db220b/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= +github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= +github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= +github.com/dave/astrid v0.0.0-20170323122508-8c2895878b14/go.mod h1:Sth2QfxfATb/nW4EsrSi2KyJmbcniZ8TgTaji17D6ms= +github.com/dave/brenda v1.1.0/go.mod h1:4wCUr6gSlu5/1Tk7akE5X7UorwiQ8Rij0SKH3/BGMOM= +github.com/dave/courtney v0.3.0/go.mod h1:BAv3hA06AYfNUjfjQr+5gc6vxeBVOupLqrColj+QSD8= +github.com/dave/dst v0.27.2/go.mod h1:jHh6EOibnHgcUW3WjKHisiooEkYwqpHLBSX1iOBhEyc= +github.com/dave/gopackages v0.0.0-20170318123100-46e7023ec56e/go.mod h1:i00+b/gKdIDIxuLDFob7ustLAVqhsZRk2qVZrArELGQ= +github.com/dave/jennifer v1.5.0/go.mod h1:4MnyiFIlZS3l5tSDn8VnzE6ffAhYBMB2SZntBsZGUok= +github.com/dave/kerr v0.0.0-20170318121727-bc25dd6abe8e/go.mod h1:qZqlPyPvfsDJt+3wHJ1EvSXDuVjFTK0j2p/ca+gtsb8= +github.com/dave/patsy v0.0.0-20210517141501-957256f50cba/go.mod h1:qfR88CgEGLoiqDaE+xxDCi5QA5v4vUoW0UCX2Nd5Tlc= +github.com/dave/rebecca v0.9.1/go.mod h1:N6XYdMD/OKw3lkF3ywh8Z6wPGuwNFDNtWYEMFWEmXBA= github.com/davecgh/go-spew v0.0.0-20171005155431-ecdeabc65495/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= @@ -115,7 +644,9 @@ github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZm github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= github.com/dlclark/regexp2 v1.2.0/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc= github.com/docker/docker v1.4.2-0.20180625184442-8e610b2b55bf/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= +github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= github.com/dop251/goja v0.0.0-20200219165308-d1232e640a87/go.mod h1:Mw6PkjjMXWbTj+nnj4s3QPXq1jaT0s5pC0iFD4+BOAA= +github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= github.com/edsrzf/mmap-go v0.0.0-20160512033002-935e0e8a636c/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= github.com/elastic/gosigar v0.8.1-0.20180330100440-37f05ff46ffa/go.mod h1:cdorVVzy1fhmEqmtgqkoE3bYtCfSCkVyjTyCIo22xvs= github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= @@ -125,15 +656,22 @@ github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5y github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= +github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0= +github.com/envoyproxy/go-control-plane v0.10.2-0.20220325020618-49ff273808a1/go.mod h1:KJwIaB5Mv44NWtYuAOFCVOjcI94vtpEz2JU/D2v6IjE= +github.com/envoyproxy/go-control-plane v0.10.3/go.mod h1:fJJn/j26vwOu972OllsvAgJJM//w9BV6Fxbg2LuVd34= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= +github.com/envoyproxy/protoc-gen-validate v0.6.7/go.mod h1:dyJXwwfPK2VSqiB9Klm1J6romD608Ba7Hij42vrOBCo= +github.com/envoyproxy/protoc-gen-validate v0.9.1/go.mod h1:OKNgG7TCp5pF4d6XftA0++PMirau2/yoOwVac3AbF2w= github.com/ethereum/go-ethereum v1.9.9/go.mod h1:a9TqabFudpDu1nucId+k9S8R9whYaHnGBLKFouA5EAo= github.com/ethereum/go-ethereum v1.9.13 h1:rOPqjSngvs1VSYH2H+PMPiWt4VEulvNRbFgqiGqJM3E= github.com/ethereum/go-ethereum v1.9.13/go.mod h1:qwN9d1GLyDh0N7Ab8bMGd0H9knaji2jOBm2RrMGjXls= github.com/fatih/color v1.3.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= github.com/fjl/memsize v0.0.0-20180418122429-ca190fb6ffbc/go.mod h1:VvhXpOYNQvB+uIk2RvXzuaQtkQJzzIx6lSBe1xv7hi0= github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= +github.com/fogleman/gg v1.3.0/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= github.com/fxamacker/cbor/v2 v2.2.1-0.20210927235116-3d6d5d1de29b/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= +github.com/fxamacker/cbor/v2 v2.4.1-0.20220515183430-ad2eae63303f/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c h1:5tm/Wbs9d9r+qZaUFXk59CWDD0+77PBqDREffYkyi5c= github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= github.com/fxamacker/circlehash v0.1.0/go.mod h1:3aq3OfVvsWtkWMb6A1owjOQFA+TLsD5FgJflnaQwtMM= @@ -141,20 +679,34 @@ github.com/fxamacker/circlehash v0.3.0 h1:XKdvTtIJV9t7DDUtsf0RIpC1OcxZtPbmgIH7ek github.com/fxamacker/circlehash v0.3.0/go.mod h1:3aq3OfVvsWtkWMb6A1owjOQFA+TLsD5FgJflnaQwtMM= github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff/go.mod h1:x7DCsMOv1taUwEWCzT4cmDeAkigA5/QCwUodaVOe8Ww= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= +github.com/go-fonts/dejavu v0.1.0/go.mod h1:4Wt4I4OU2Nq9asgDCteaAaWZOV24E+0/Pwo0gppep4g= +github.com/go-fonts/latin-modern v0.2.0/go.mod h1:rQVLdDMK+mK1xscDwsqM5J8U2jrRa3T0ecnM9pNujks= +github.com/go-fonts/liberation v0.1.1/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= +github.com/go-fonts/liberation v0.2.0/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= +github.com/go-fonts/stix v0.1.0/go.mod h1:w/c1f0ldAUlJmLBvlbkvVXLAD+tAMqobIIQpmnUIzUY= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-latex/latex v0.0.0-20210118124228-b3d85cf34e07/go.mod h1:CO1AlKB2CSIqUrmQPqA0gdRIlnLEY0gK5JGjh37zN5U= +github.com/go-latex/latex v0.0.0-20210823091927-c0d11ff05a81/go.mod h1:SX0U8uGpxhq9o2S/CELCSUxEWWAuoCUcVCQWv7G2OCk= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= +github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= +github.com/go-logr/logr v1.2.3/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= +github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= github.com/go-ole/go-ole v1.2.1/go.mod h1:7FAglXiTm7HKlQRDeOQ6ZNUHidzCWXuZWq/1dTyBNF8= +github.com/go-pdf/fpdf v0.5.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= +github.com/go-pdf/fpdf v0.6.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= github.com/go-sourcemap/sourcemap v2.1.2+incompatible/go.mod h1:F8jJfvm2KbVjc5NqelyYJmf/v5J0dwNLS2mL4sNA1Jg= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= github.com/go-test/deep v1.0.5/go.mod h1:QV8Hv/iy04NyLBxAdO9njL0iVPN1S4d/A3NVv1V36o8= github.com/go-test/deep v1.1.0 h1:WOcxcdHcvdgThNXjw0t76K42FXTU7HpNQWHpA2HHNlg= github.com/go-test/deep v1.1.0/go.mod h1:5C2ZWiW0ErCdrYzpqxLbTX7MG14M9iiw8DgHncVwcsE= +github.com/goccy/go-json v0.9.11/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= +github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= @@ -187,8 +739,10 @@ github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= +github.com/google/flatbuffers v2.0.8+incompatible/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= @@ -201,11 +755,15 @@ github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/ github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE= +github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= +github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/martian/v3 v3.2.1/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= +github.com/google/martian/v3 v3.3.2/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= @@ -215,6 +773,7 @@ github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hf github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= @@ -222,54 +781,94 @@ github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLe github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/googleapis/enterprise-certificate-proxy v0.0.0-20220520183353-fd19c99a87aa/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= +github.com/googleapis/enterprise-certificate-proxy v0.1.0/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= +github.com/googleapis/enterprise-certificate-proxy v0.2.0/go.mod h1:8C0jb7/mgJe/9KK8Lm7X9ctZC2t60YyIpYEI16jx0Qg= +github.com/googleapis/enterprise-certificate-proxy v0.2.1/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= +github.com/googleapis/enterprise-certificate-proxy v0.2.3/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= github.com/googleapis/gax-go/v2 v2.1.1/go.mod h1:hddJymUZASv3XPyGkUpKj8pPO47Rmb0eJc8R6ouapiM= +github.com/googleapis/gax-go/v2 v2.2.0/go.mod h1:as02EH8zWkzwUoLbBaFeQ+arQaj/OthfcblKl4IGNaM= +github.com/googleapis/gax-go/v2 v2.3.0/go.mod h1:b8LNqSzNabLiUpXKkY7HAR5jr6bIT99EXz9pXxye9YM= +github.com/googleapis/gax-go/v2 v2.4.0/go.mod h1:XOTVJ59hdnfJLIP/dh8n5CGryZR2LxK9wbMD5+iXC6c= +github.com/googleapis/gax-go/v2 v2.5.1/go.mod h1:h6B0KMMFNtI2ddbGJn3T3ZbwkeT6yqEF02fYlzkUCyo= +github.com/googleapis/gax-go/v2 v2.6.0/go.mod h1:1mjbznJAPHFpesgE5ucqfYEscaz5kMdcIDwU/6+DDoY= +github.com/googleapis/gax-go/v2 v2.7.0/go.mod h1:TEop28CZZQ2y+c0VxMUmu1lV+fQx57QpBWsYpwqHJx8= +github.com/googleapis/gax-go/v2 v2.7.1/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= +github.com/googleapis/go-type-adapters v1.0.0/go.mod h1:zHW75FOG2aur7gAO2B+MLby+cLsWGBF62rFAi7WjWO4= +github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= github.com/gorilla/websocket v1.4.1-0.20190629185528-ae1634f6a989/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= github.com/graph-gophers/graphql-go v0.0.0-20191115155744-f33e81362277/go.mod h1:9CQHMSxwO4MprSdzoIEobiHpoLtHm77vfxsvsIN5Vuc= github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0/go.mod h1:hgWBS7lorOAVIJEQMi4ZsPv9hVvWI6+ch50m39Pf2Ks= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3/go.mod h1:o//XUCC/F+yRGJoPO/VU0GSB0f8Nhgmxx0VIRUvaC0w= github.com/hashicorp/golang-lru v0.0.0-20160813221303-0a025b7e63ad/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/huin/goupnp v0.0.0-20161224104101-679507af18f3/go.mod h1:MZ2ZmwcBpvOoJ22IJsc7va19ZwoheaBk43rKg12SKag= +github.com/iancoleman/strcase v0.2.0/go.mod h1:iwCmte+B7n89clKwxIoIXy/HfoL7AsD47ZCWhYzw7ho= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/influxdata/influxdb v1.2.3-0.20180221223340-01288bdb0883/go.mod h1:qZna6X/4elxqT3yI9iZYdZrWWdeFOOprn86kgg4+IzY= github.com/jackpal/go-nat-pmp v1.0.2-0.20160603034137-1fa385a6f458/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc= github.com/jessevdk/go-flags v0.0.0-20141203071132-1679536dcc89/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= +github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= +github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= github.com/jrick/logrotate v1.0.0/go.mod h1:LNinyqDIJnpAur+b8yyulnQw/wDuN1+BYKlTRt3OuAQ= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= github.com/julienschmidt/httprouter v1.1.1-0.20170430222011-975b5c4c7c21/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= +github.com/jung-kurt/gofpdf v1.0.0/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= +github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88/go.mod h1:3w7q1U84EfirKl04SVQ/s7nPm1ZPhiXd34z40TNz36k= github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213/go.mod h1:vNUNkEQ1e29fT/6vq2aBdFsgNPmy8qMdSay1npru+Sw= +github.com/k0kubun/pp v3.0.1+incompatible h1:3tqvf7QgUnZ5tXO6pNAZlrvHgl6DvifjDrd9g2S9Z40= +github.com/k0kubun/pp v3.0.1+incompatible/go.mod h1:GWse8YhT0p8pT4ir3ZgBbfZild3tgzSScAn6HmfYukg= +github.com/k0kubun/pp/v3 v3.2.0/go.mod h1:ODtJQbQcIRfAD3N+theGCV1m/CBxweERz2dapdz1EwA= github.com/karalabe/usb v0.0.0-20190919080040-51dc0efba356/go.mod h1:Od972xHfMJowv7NGVDiWVxk2zxnWgjLlJzE+F4F7AGU= +github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8= github.com/kevinburke/go-bindata v3.22.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= github.com/kevinburke/go-bindata v3.23.0+incompatible h1:rqNOXZlqrYhMVVAsQx8wuc+LaA73YcfbQ407wAykyS8= github.com/kevinburke/go-bindata v3.23.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23/go.mod h1:J+Gs4SYgM6CZQHDETBtE9HaSEkGmuNXF86RwHhHUvq4= +github.com/klauspost/asmfmt v1.3.2/go.mod h1:AG8TuvYojzulgDAMCnYn50l/5QV3Bs/tp6j0HLHbNSE= +github.com/klauspost/compress v1.15.9/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHUDtV4Yw2GlzU= +github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= github.com/klauspost/cpuid/v2 v2.0.12/go.mod h1:g2LTdtYhdyuGPqyWyv7qRAmj1WBqxuObKfj5c0PQa7c= +github.com/klauspost/cpuid/v2 v2.2.0/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY= github.com/klauspost/cpuid/v2 v2.2.4 h1:acbojRNwl3o09bUq+yDCtZFc1aiwaAAxtcn8YkZXnvk= github.com/klauspost/cpuid/v2 v2.2.4/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY= github.com/konsorten/go-windows-terminal-sequences v1.0.1 h1:mweAR1A6xJ3oS2pRaGiHgQ4OO8tzTaLawm8vnODuwDk= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= +github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= +github.com/leanovate/gopter v0.2.9/go.mod h1:U2L/78B+KVFIx2VmW6onHJQzXtFb+p5y3y2Sh+Jxxv8= github.com/logrusorgru/aurora v0.0.0-20200102142835-e9ef32dff381/go.mod h1:7rIyQOR62GCctdiQpZ/zOJlFyk6y+94wXzv6RNZgaR4= github.com/logrusorgru/aurora/v4 v4.0.0 h1:sRjfPpun/63iADiSvGGjgA1cAYegEWMPCJdUpJYn9JA= github.com/logrusorgru/aurora/v4 v4.0.0/go.mod h1:lP0iIa2nrnT/qoFXcOZSrZQpJ1o6n2CUf/hyHi2Q4ZQ= +github.com/lyft/protoc-gen-star v0.6.0/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= +github.com/lyft/protoc-gen-star v0.6.1/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= github.com/mattn/go-colorable v0.1.0/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= github.com/mattn/go-colorable v0.1.7/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= +github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= +github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= github.com/mattn/go-ieproxy v0.0.0-20190610004146-91bb50d98149/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= github.com/mattn/go-ieproxy v0.0.0-20190702010315-6dee0af9227d/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= github.com/mattn/go-isatty v0.0.5-0.20180830101745-3fb116b82035/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= @@ -277,68 +876,101 @@ github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hd github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84= github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= +github.com/mattn/go-isatty v0.0.16 h1:bq3VjFmv/sOjHtdEhmkEV4x1AJtvUvOJ2PFAZ5+peKQ= +github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= github.com/mattn/go-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.6/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= +github.com/mattn/go-sqlite3 v1.14.14/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU= github.com/mattn/go-tty v0.0.3/go.mod h1:ihxohKRERHTVzN+aSVRwACLCeqIoZAWpoICkkvrWyR0= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= +github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8/go.mod h1:mC1jAcsrzbxHt8iiaC+zU4b1ylILSosueou12R++wfY= +github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3/go.mod h1:RagcQ7I8IeTMnF8JTXieKnO4Z6JCsikNEzj0DwauVzE= github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db/go.mod h1:l0dey0ia/Uv7NcFFVbCLtqEBQbrT4OCwCSKTEv6enCw= github.com/naoina/go-stringutil v0.1.0/go.mod h1:XJ2SJL9jCtBh+P9q5btrd/Ylo8XwT/h1USek5+NqSA0= github.com/naoina/toml v0.1.2-0.20170918210437-9fafd6967416/go.mod h1:NBIhNtsFMo3G2szEBne+bO4gS192HuIYRqfvOWb4i1E= +github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/olekukonko/tablewriter v0.0.2-0.20190409134802-7e037d187b0c/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/onflow/atree v0.1.0-beta1.0.20211027184039-559ee654ece9/go.mod h1:+6x071HgCF/0v5hQcaE5qqjc2UqN5gCU8h5Mk6uqpOg= +github.com/onflow/atree v0.5.0/go.mod h1:gBHU0M05qCbv9NN0kijLWMgC47gHVNBIp4KmsVFi0tc= github.com/onflow/atree v0.6.0 h1:j7nQ2r8npznx4NX39zPpBYHmdy45f4xwoi+dm37Jk7c= github.com/onflow/atree v0.6.0/go.mod h1:gBHU0M05qCbv9NN0kijLWMgC47gHVNBIp4KmsVFi0tc= github.com/onflow/cadence v0.20.1/go.mod h1:7mzUvPZUIJztIbr9eTvs+fQjWWHTF8veC+yk4ihcNIA= github.com/onflow/cadence v0.39.12 h1:bb3UdOe7nClUcaLbxSWGLSIJKuCrivpgxhPow99ikv0= github.com/onflow/cadence v0.39.12/go.mod h1:OIJLyVBPa339DCBQXBfGaorT4tBjQh9gSKe+ZAIyyh0= +github.com/onflow/cadence v0.39.13-stable-cadence h1:A08/gb4xSsgRjuXo9fkFFvtG7dIkxxkDCNk/VdWrMp4= +github.com/onflow/cadence v0.39.13-stable-cadence/go.mod h1:SxT8/IEkS1drFj2ofUEK9S6KyJ5GQbrm0LX4EFCp/7Q= github.com/onflow/flow-go-sdk v0.24.0/go.mod h1:IoptMLPyFXWvyd9yYA6/4EmSeeozl6nJoIv4FaEMg74= github.com/onflow/flow-go-sdk v0.41.6 h1:x5HhmRDvbCWXRCzHITJxOp0Komq5JJ9zphoR2u6NOCg= github.com/onflow/flow-go-sdk v0.41.6/go.mod h1:AYypQvn6ecMONhF3M1vBOUX9b4oHKFWkkrw8bO4VEik= +github.com/onflow/flow-go-sdk v0.41.7-stable-cadence h1:GrmLLAPrxOyC27v/J/XG/sKiM1ynE1MYidiMXUfM0e4= +github.com/onflow/flow-go-sdk v0.41.7-stable-cadence/go.mod h1:ejVN+bqcsTHVvRpDDJDoBNdmcxUfFMW4IvdTbMeQ/hQ= github.com/onflow/flow-go/crypto v0.21.3/go.mod h1:vI6V4CY3R6c4JKBxdcRiR/AnjBfL8OSD97bJc60cLuQ= github.com/onflow/flow-go/crypto v0.24.7 h1:RCLuB83At4z5wkAyUCF7MYEnPoIIOHghJaODuJyEoW0= github.com/onflow/flow-go/crypto v0.24.7/go.mod h1:fqCzkIBBMRRkciVrvW21rECKq1oD7Q6u+bCI78lfNX0= github.com/onflow/flow-nft/lib/go/contracts v1.1.0 h1:rhUDeD27jhLwOqQKI/23008CYfnqXErrJvc4EFRP2a0= github.com/onflow/flow-nft/lib/go/contracts v1.1.0/go.mod h1:YsvzYng4htDgRB9sa9jxdwoTuuhjK8WYWXTyLkIigZY= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718172506-c9d5f473c030 h1:ToPYLsi8XFMw9Z42jz5BpuJsUY6Oo2sHwCImhAUVQIA= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718172506-c9d5f473c030/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow/protobuf/go/flow v0.2.2/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= +github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= +github.com/onflow/sdks v0.5.0/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= github.com/pborman/uuid v0.0.0-20170112150404-1b00554d8222/go.mod h1:VyrYX9gd7irzKovcSS6BIIEwPRkP2Wm2m9ufcdFSJ34= github.com/peterh/liner v1.1.1-0.20190123174540-a2c9a5303de7/go.mod h1:CRroGNssyjTd/qIG2FyxByd2S8JEAZXBl4qUrZf8GS0= +github.com/phpdave11/gofpdf v1.4.2/go.mod h1:zpO6xFn9yxo3YLyMvW8HcKWVdbNqgIfOOp2dXMnm1mY= +github.com/phpdave11/gofpdi v1.0.12/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= +github.com/phpdave11/gofpdi v1.0.13/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= +github.com/pierrec/lz4/v4 v4.1.15/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= +github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI= +github.com/pkg/sftp v1.13.1/go.mod h1:3HaPG6Dq1ILlpPZRO0HVMrsydcdLt6HRDccSgb87qRg= github.com/pkg/term v1.1.0/go.mod h1:E25nymQcrSllhX42Ok8MRm1+hyBdHY0dCeiKZ9jpNGw= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/tsdb v0.6.2-0.20190402121629-4f204dcbc150/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= +github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= +github.com/rivo/uniseg v0.2.1-0.20211004051800-57c86be7915a/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= github.com/rivo/uniseg v0.4.4 h1:8TfxU8dW6PdqD27gjM8MVNuicgxIjxpm4K7x4jp8sis= github.com/rivo/uniseg v0.4.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= github.com/rjeczalik/notify v0.9.1/go.mod h1:rKwnCoCGeuQnwBtTSPL9Dad03Vh2n40ePRrjvIXnJho= github.com/robertkrimen/otto v0.0.0-20170205013659-6a77b7cbc37d/go.mod h1:xvqspoSXJTIpemEonrMDFq6XzwHYYgToXWj5eRX1OtY= github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= +github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= +github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= github.com/rs/cors v0.0.0-20160617231935-a62a804a8a00/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= github.com/rs/xhandler v0.0.0-20160618193221-ed27b6fd6521/go.mod h1:RvLn4FgxWubrpZHtQLnOf6EwhN2hEMusxZOhcW9H3UQ= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= +github.com/ruudk/golang-pdf417 v0.0.0-20181029194003-1af4ab5afa58/go.mod h1:6lfFZQK844Gfx8o5WFuvpxWRwnSoipWe/p622j1v06w= +github.com/ruudk/golang-pdf417 v0.0.0-20201230142125-a7e3863a1245/go.mod h1:pQAZKsJ8yyVxGRWYNEm9oFB8ieLgKFnamEyDmSA0BRk= github.com/schollz/progressbar/v3 v3.8.3/go.mod h1:pWnVCjSBZsT2X3nx9HfRdnCDrpbevliMeoEVhStwHko= +github.com/sergi/go-diff v1.2.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spaolacci/murmur3 v1.0.1-0.20190317074736-539464a789e9/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= +github.com/spf13/afero v1.3.3/go.mod h1:5KUK8ByomD5Ti5Artl0RtHeI5pTF7MIDuXL3yY520V4= +github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= +github.com/spf13/afero v1.9.2/go.mod h1:iUV7ddyEEZPO5gA3zD4fJt6iStLlL+Lg4m2cihcDf8Y= github.com/status-im/keycard-go v0.0.0-20190316090335-8537d3370df4/go.mod h1:RZLeN1LMWmRsyYjvAu+I6Dm9QmlDaIIt+Y+4Kd7Tp+Q= github.com/steakknife/bloomfilter v0.0.0-20180922174646-6819c0d2a570/go.mod h1:8OR4w3TdeIHIh1g6EMY5p0gVNOovcWC+1vpc7naMuAw= github.com/steakknife/hamming v0.0.0-20180906055917-c99c65617cd3/go.mod h1:hpGUWaI9xL8pRQCTXQgocU38Qw1g0Us7n5PxxTwTCYU= @@ -354,12 +986,15 @@ github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/ github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= +github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= github.com/stretchr/testify v1.8.2 h1:+h33VjcLVPDHtOdpUCuF+7gSuG3yGIftsP1YvFihtJ8= github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= github.com/supranational/blst v0.3.4/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= +github.com/supranational/blst v0.3.10/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= github.com/syndtr/goleveldb v1.0.1-0.20190923125748-758128399b1d/go.mod h1:9OrXJhf154huy1nPWmuSrkgjPUtUNhA+Zmy+6AESzuA= github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c h1:HelZ2kAFadG0La9d+4htN4HzQ68Bm2iM9qKMSMES6xg= github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c/go.mod h1:JlzghshsemAMDGZLytTFY8C1JQxQPhnatWqNwUXjggo= +github.com/tidwall/pretty v1.2.1/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU= github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d h1:5JInRQbk5UBX8JfUvKh2oYTLMVwj3p6n+wapDDm7hko= github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d/go.mod h1:Nlx5Y115XQvNcIdIy7dZXaNSUpzwBSge4/Ivk93/Yog= github.com/tyler-smith/go-bip39 v1.0.1-0.20181017060643-dbb3b84ba2ef/go.mod h1:sJ5fKU0s6JVwZjjcUEX2zFOnvq0ASQ2K9Zr6cf67kNs= @@ -372,12 +1007,17 @@ github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= +github.com/yuin/goldmark v1.4.1/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= +github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= github.com/zeebo/assert v1.1.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= +github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= github.com/zeebo/blake3 v0.2.0/go.mod h1:G9pM4qQwjRzF1/v7+vabMj/c5mWpGZ2Wzo3Eb4z0pb4= github.com/zeebo/blake3 v0.2.3 h1:TFoLXsjeXqRNFxSbk35Dk4YtszE/MQQGK10BH4ptoTg= github.com/zeebo/blake3 v0.2.3/go.mod h1:mjJjZpnsyIVtVgTOSpJ9vmRE4wgDeyt2HU3qXvvKCaQ= github.com/zeebo/pcg v1.0.0/go.mod h1:09F0S9iiKrwn9rlI5yjLkmrug154/YRW6KnnXVDM/l4= github.com/zeebo/pcg v1.0.1/go.mod h1:09F0S9iiKrwn9rlI5yjLkmrug154/YRW6KnnXVDM/l4= +github.com/zeebo/xxh3 v1.0.2 h1:xZmwmqxHZA8AI603jOQ0tMqmBr9lPeFwGg6d+xy9DC0= +github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= @@ -385,19 +1025,30 @@ go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= +go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= +go.opentelemetry.io/otel v1.8.0/go.mod h1:2pkj+iMj0o03Y+cW6/m8Y4WkRdYN3AvCXCnzRMp9yvM= go.opentelemetry.io/otel v1.14.0 h1:/79Huy8wbf5DnIPhemGB+zEPVwnN6fuQybr/SRXa6hM= go.opentelemetry.io/otel v1.14.0/go.mod h1:o4buv+dJzx8rohcUeRmWUZhqupFvzWis188WlggnNeU= +go.opentelemetry.io/otel/trace v1.8.0/go.mod h1:0Bt3PXY8w+3pheS3hQUt+wow8b1ojPaTBoTCh2zIFI4= +go.opentelemetry.io/otel/trace v1.14.0/go.mod h1:8avnQLK+CG77yNLUae4ea2JDQ6iT+gozhnZjy/rw9G8= go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= +go.opentelemetry.io/proto/otlp v0.15.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= go.uber.org/goleak v1.1.10/go.mod h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A= golang.org/x/crypto v0.0.0-20170930174604-9419663f5a44/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200117160349-530e935923ad/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200311171314-f7b00557c8c4/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw= golang.org/x/crypto v0.7.0 h1:AvwMYaRytfdeVt3u6mLaxYtErKYjxA2OXjJ1HHq6t3A= golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -407,15 +1058,30 @@ golang.org/x/exp v0.0.0-20190125153040-c74c464bbbf2/go.mod h1:CJ0aWSM057203Lf6IL golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= +golang.org/x/exp v0.0.0-20191002040644-a1355ae1e2c3/go.mod h1:NOZ3BPKG0ec/BKJQgnvsSFpcKLM5xXVWnvZS97DWHgE= golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= +golang.org/x/exp v0.0.0-20220827204233-334a2380cb91/go.mod h1:cyybsKvd6eL0RnXn6p/Grxp8F5bW7iYuBgsNCOHpMYE= +golang.org/x/exp v0.0.0-20221110155412-d0897a79cd37/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= +golang.org/x/exp v0.0.0-20230321023759-10a507213a29 h1:ooxPy7fPvB4kwsA2h+iBNHkAbp/4JxTSwCmvdjEYmug= +golang.org/x/exp v0.0.0-20230321023759-10a507213a29/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/image v0.0.0-20190910094157-69e4b8554b2a/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/image v0.0.0-20200119044424-58c23975cae1/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/image v0.0.0-20200430140353-33d19683fad8/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/image v0.0.0-20200618115811-c13761719519/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/image v0.0.0-20201208152932-35266b937fa6/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/image v0.0.0-20210216034530-4410531fe030/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/image v0.0.0-20210607152325-775e3b0c77b9/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= +golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= +golang.org/x/image v0.0.0-20211028202545-6944b10bf410/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= +golang.org/x/image v0.0.0-20220302094943-723b81ca9867/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= @@ -439,6 +1105,12 @@ golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.5.0/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= +golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= +golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= +golang.org/x/mod v0.6.0/go.mod h1:4mET923SAdbXp2ki8ey+zGs1SLqsuM2Y0uvdZR/fUNI= +golang.org/x/mod v0.7.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -470,11 +1142,33 @@ golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwY golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220325170049-de3da57026de/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220412020605-290c469a71a5/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220607020251-c690dde0001d/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.0.0-20220617184016-355a448f1bc9/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.0.0-20220909164309-bea034e7d591/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= +golang.org/x/net v0.0.0-20221012135044-0b7e1fb9d458/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= +golang.org/x/net v0.0.0-20221014081412-f15817d10f9b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= +golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco= +golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY= +golang.org/x/net v0.5.0/go.mod h1:DivGGAXEgPSlEBzxGzZI+ZLohi+xUj054jfeKui00ws= +golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= +golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= +golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -490,6 +1184,19 @@ golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= +golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= +golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= +golang.org/x/oauth2 v0.0.0-20220608161450-d0670ef3b1eb/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= +golang.org/x/oauth2 v0.0.0-20220622183110-fd043fe589d2/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= +golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.0.0-20221006150949-b44042a4b9c1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.4.0/go.mod h1:RznEsdpjGAINPTOF0UH/t+xJ75L18YO3Ho6Pyn+uRec= +golang.org/x/oauth2 v0.5.0/go.mod h1:9/XBHVqLaWO3/BRHs5jbpYCnOZVjj5V0ndyaAM7KB4I= +golang.org/x/oauth2 v0.6.0/go.mod h1:ycmewcwgD4Rpr3eZJLSB4Kyyljb3qDh40vJ8STE5HKw= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -501,6 +1208,11 @@ golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -545,11 +1257,14 @@ golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210304124612-50617c2ba197/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= @@ -557,15 +1272,46 @@ golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210910150752-751e447fb3d0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210917161153-d61c044b1678/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211210111614-af8b64212486/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220502124256-b6088ccd6cba/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220624220833-87e55d714810/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220829200755-d48e67d00261/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.4.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= +golang.org/x/term v0.4.0/go.mod h1:9P2UbLfCdcvo3p/nzKvsmas4TnlujnuoV9hGgYzW1lQ= +golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= +golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -574,11 +1320,19 @@ golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= +golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= +golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.5.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.6.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.8.0 h1:57P1ETyNKtuIjB4SRd15iJxuhj8Gc416Y78H3qgMh68= golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20220922220347-f3bd1da661af/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.1.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/tools v0.0.0-20180525024113-a5b4c53f6e8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= @@ -595,6 +1349,7 @@ golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgw golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20190927191325-030b2cf1153e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191108193012-7d206e10da11/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= @@ -625,25 +1380,41 @@ golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc golang.org/x/tools v0.0.0-20200828161849-5deb26317202/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20201124115921-2c860bdd6e78/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.8/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= +golang.org/x/tools v0.1.9/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= +golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= +golang.org/x/tools v0.2.0/go.mod h1:y4OqIKeOV/fWJetJ8bXPU1sEVniLMIyDAZWeHdV+NTA= +golang.org/x/tools v0.3.0/go.mod h1:/rWhSS2+zyEVwoJf8YAX6L2f0ntZ7Kn/mGgAWcipA5k= +golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= +golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= gonum.org/v1/gonum v0.0.0-20180816165407-929014505bf4/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo= gonum.org/v1/gonum v0.6.1/go.mod h1:9mxDZsDKxgMAuccQkewq682L+0eCu4dCN2yonUJTCLU= +gonum.org/v1/gonum v0.8.2/go.mod h1:oe/vMfY3deqTw+1EZJhuvEW2iwGF1bW9wwu7XCu0+v0= +gonum.org/v1/gonum v0.9.3/go.mod h1:TZumC3NeyVQskjXqmyWt4S3bINhy7B4eYwW69EbyX+0= +gonum.org/v1/gonum v0.11.0/go.mod h1:fSG4YDCxxUZQJ7rKsQrj0gMOg00Il0Z96/qMA4bVQhA= gonum.org/v1/netlib v0.0.0-20190313105609-8cb42192e0e0/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= gonum.org/v1/plot v0.0.0-20190515093506-e2840ee46a6b/go.mod h1:Wt8AAjI+ypCyYX3nZBvf6cAIx93T+c/OS2HFAYskSZc= +gonum.org/v1/plot v0.9.0/go.mod h1:3Pcqqmp6RHvJI72kgb8fThyUnav364FOsdDo2aGW5lY= +gonum.org/v1/plot v0.10.1/go.mod h1:VZW5OlhkL1mysU9vaqNHnsy86inf6Ot+jB3r+BczCEo= google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= @@ -674,6 +1445,34 @@ google.golang.org/api v0.55.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqiv google.golang.org/api v0.56.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= google.golang.org/api v0.57.0/go.mod h1:dVPlbZyBo2/OjBpmvNdpn2GRm6rPy75jyU7bmhdrMgI= google.golang.org/api v0.58.0/go.mod h1:cAbP2FsxoGVNwtgNAmmn3y5G1TWAiVYRmg4yku3lv+E= +google.golang.org/api v0.61.0/go.mod h1:xQRti5UdCmoCEqFxcz93fTl338AVqDgyaDRuOZ3hg9I= +google.golang.org/api v0.63.0/go.mod h1:gs4ij2ffTRXwuzzgJl/56BdwJaA194ijkfn++9tDuPo= +google.golang.org/api v0.67.0/go.mod h1:ShHKP8E60yPsKNw/w8w+VYaj9H6buA5UqDp8dhbQZ6g= +google.golang.org/api v0.70.0/go.mod h1:Bs4ZM2HGifEvXwd50TtW70ovgJffJYw2oRCOFU/SkfA= +google.golang.org/api v0.71.0/go.mod h1:4PyU6e6JogV1f9eA4voyrTY2batOLdgZ5qZ5HOCc4j8= +google.golang.org/api v0.74.0/go.mod h1:ZpfMZOVRMywNyvJFeqL9HRWBgAuRfSjJFpe9QtRRyDs= +google.golang.org/api v0.75.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= +google.golang.org/api v0.77.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= +google.golang.org/api v0.78.0/go.mod h1:1Sg78yoMLOhlQTeF+ARBoytAcH1NNyyl390YMy6rKmw= +google.golang.org/api v0.80.0/go.mod h1:xY3nI94gbvBrE0J6NHXhxOmW97HG7Khjkku6AFB3Hyg= +google.golang.org/api v0.84.0/go.mod h1:NTsGnUFJMYROtiquksZHBWtHfeMC7iYthki7Eq3pa8o= +google.golang.org/api v0.85.0/go.mod h1:AqZf8Ep9uZ2pyTvgL+x0D3Zt0eoT9b5E8fmzfu6FO2g= +google.golang.org/api v0.90.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= +google.golang.org/api v0.93.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= +google.golang.org/api v0.95.0/go.mod h1:eADj+UBuxkh5zlrSntJghuNeg8HwQ1w5lTKkuqaETEI= +google.golang.org/api v0.96.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= +google.golang.org/api v0.97.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= +google.golang.org/api v0.98.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= +google.golang.org/api v0.99.0/go.mod h1:1YOf74vkVndF7pG6hIHuINsM7eWwpVTAfNMNiL91A08= +google.golang.org/api v0.100.0/go.mod h1:ZE3Z2+ZOr87Rx7dqFsdRQkRBk36kDtp/h+QpHbB7a70= +google.golang.org/api v0.102.0/go.mod h1:3VFl6/fzoA+qNuS1N1/VfXY4LjoXN/wzeIp7TweWwGo= +google.golang.org/api v0.103.0/go.mod h1:hGtW6nK1AC+d9si/UBhw8Xli+QMOf6xyNAyJw4qU9w0= +google.golang.org/api v0.106.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= +google.golang.org/api v0.107.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= +google.golang.org/api v0.108.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= +google.golang.org/api v0.110.0/go.mod h1:7FC4Vvx1Mooxh8C5HWjzZHcavuS2f6pmJpZx60ca7iI= +google.golang.org/api v0.111.0/go.mod h1:qtFHvU9mhgTJegR31csQ+rwxyUTHOKFqCKWp1J0fdw0= +google.golang.org/api v0.114.0/go.mod h1:ifYI2ZsFK6/uGddGfAD5BMxlnkBqCmqHSDUVi45N5Yg= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -716,10 +1515,13 @@ google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6D google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210108203827-ffc7fda8c3d7/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210226172003-ab064af71705/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210329143202-679c6ae281ee/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= google.golang.org/genproto v0.0.0-20210513213006-bf773b8c8384/go.mod h1:P3QM42oQyzQSnHPnZ/vqoCdDmzH28fzWByN9asMeM8A= google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= @@ -740,6 +1542,74 @@ google.golang.org/genproto v0.0.0-20210917145530-b395a37504d4/go.mod h1:eFjDcFEc google.golang.org/genproto v0.0.0-20210921142501-181ce0d877f6/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= google.golang.org/genproto v0.0.0-20211007155348-82e027067bd4/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211221195035-429b39de9b1c/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20220126215142-9970aeb2e350/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20220207164111-0872dc986b00/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20220218161850-94dd64e39d7c/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220222213610-43724f9ea8cf/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220304144024-325a89244dc8/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220310185008-1973136f34c6/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220324131243-acbaeb5b85eb/go.mod h1:hAL49I2IFola2sVEjAn7MEwsja0xp51I0tlGAf9hz4E= +google.golang.org/genproto v0.0.0-20220329172620-7be39ac1afc7/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220413183235-5e96e2839df9/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220414192740-2d67ff6cf2b4/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220421151946-72621c1f0bd3/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220429170224-98d788798c3e/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220502173005-c8bf987b8c21/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220518221133-4f43b3371335/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220523171625-347a074981d8/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220608133413-ed9918b62aac/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220616135557-88e70c0c3a90/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220617124728-180714bec0ad/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220624142145-8cd45d7dbd1f/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220628213854-d9e0b6570c03/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220722212130-b98a9ff5e252/go.mod h1:GkXuJDJ6aQ7lnJcRF+SJVgFdQhypqgl3LB1C9vabdRE= +google.golang.org/genproto v0.0.0-20220801145646-83ce21fca29f/go.mod h1:iHe1svFLAZg9VWz891+QbRMwUv9O/1Ww+/mngYeThbc= +google.golang.org/genproto v0.0.0-20220815135757-37a418bb8959/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220817144833-d7fd3f11b9b1/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220822174746-9e6da59bd2fc/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220829144015-23454907ede3/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220829175752-36a9c930ecbf/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220913154956-18f8339a66a5/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220914142337-ca0e39ece12f/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220915135415-7fd63a7952de/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220916172020-2692e8806bfa/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220919141832-68c03719ef51/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220920201722-2b89144ce006/go.mod h1:ht8XFiar2npT/g4vkk7O0WYS1sHOHbdujxbEp7CJWbw= +google.golang.org/genproto v0.0.0-20220926165614-551eb538f295/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI= +google.golang.org/genproto v0.0.0-20220926220553-6981cbe3cfce/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI= +google.golang.org/genproto v0.0.0-20221010155953-15ba04fc1c0e/go.mod h1:3526vdqwhZAwq4wsRUaVG555sVgsNmIjRtO7t/JH29U= +google.golang.org/genproto v0.0.0-20221014173430-6e2ab493f96b/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= +google.golang.org/genproto v0.0.0-20221014213838-99cd37c6964a/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= +google.golang.org/genproto v0.0.0-20221024153911-1573dae28c9c/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= +google.golang.org/genproto v0.0.0-20221024183307-1bc688fe9f3e/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= +google.golang.org/genproto v0.0.0-20221027153422-115e99e71e1c/go.mod h1:CGI5F/G+E5bKwmfYo09AXuVN4dD894kIKUFmVbP2/Fo= +google.golang.org/genproto v0.0.0-20221109142239-94d6d90a7d66/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= +google.golang.org/genproto v0.0.0-20221114212237-e4508ebdbee1/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= +google.golang.org/genproto v0.0.0-20221117204609-8f9c96812029/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= +google.golang.org/genproto v0.0.0-20221118155620-16455021b5e6/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= +google.golang.org/genproto v0.0.0-20221201164419-0e50fba7f41c/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= +google.golang.org/genproto v0.0.0-20221201204527-e3fa12d562f3/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= +google.golang.org/genproto v0.0.0-20221202195650-67e5cbc046fd/go.mod h1:cTsE614GARnxrLsqKREzmNYJACSWWpAWdNMwnD7c2BE= +google.golang.org/genproto v0.0.0-20221227171554-f9683d7f8bef/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230112194545-e10362b5ecf9/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230113154510-dbe35b8444a5/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230123190316-2c411cf9d197/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230124163310-31e0e69b6fc2/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230125152338-dcaf20b6aeaa/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230127162408-596548ed4efa/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230209215440-0dfe4f8abfcc/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230216225411-c8e22ba71e44/go.mod h1:8B0gmkoRebU8ukX6HP+4wrVQUY1+6PkQ44BSyIlflHA= +google.golang.org/genproto v0.0.0-20230222225845-10f96fb3dbec/go.mod h1:3Dl5ZL0q0isWJt+FVcfpQyirqemEuLAK/iFvg1UP1Hw= +google.golang.org/genproto v0.0.0-20230223222841-637eb2293923/go.mod h1:3Dl5ZL0q0isWJt+FVcfpQyirqemEuLAK/iFvg1UP1Hw= +google.golang.org/genproto v0.0.0-20230303212802-e74f57abe488/go.mod h1:TvhZT5f700eVlTNwND1xoEZQeWTB2RY/65kplwl/bFA= +google.golang.org/genproto v0.0.0-20230306155012-7f2fa6fef1f4/go.mod h1:NWraEVixdDnqcqQ30jipen1STv2r/n24Wb7twVTGR4s= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= @@ -765,6 +1635,19 @@ google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQ google.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= google.golang.org/grpc v1.39.1/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= +google.golang.org/grpc v1.40.1/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= +google.golang.org/grpc v1.42.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= +google.golang.org/grpc v1.44.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= +google.golang.org/grpc v1.45.0/go.mod h1:lN7owxKUQEqMfSyQikvvk5tf/6zMPsrK+ONuO11+0rQ= +google.golang.org/grpc v1.46.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.46.2/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.47.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.48.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.49.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= +google.golang.org/grpc v1.50.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= +google.golang.org/grpc v1.50.1/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= +google.golang.org/grpc v1.51.0/go.mod h1:wgNDFcnuBGmxLKI/qn4T+m5BtEBYXJPvibbUPsAIPww= +google.golang.org/grpc v1.53.0/go.mod h1:OnIrk0ipVdj4N5d9IUoFUx72/VlD7+jUsHwZgwSMQpw= google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= @@ -779,22 +1662,30 @@ google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlba google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.29.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce/go.mod h1:5AcXVHNjg+BDxry382+8OKon8SEWiKktQR07RKPsv1c= gopkg.in/olebedev/go-duktape.v3 v3.0.0-20190213234257-ec84240a7772/go.mod h1:uAJfkITjFhyEEuUfm7bsmCZRbW5WRq8s9EY8HZ6hCns= gopkg.in/olebedev/go-duktape.v3 v3.0.0-20200316214253-d7b0ff38cac9/go.mod h1:uAJfkITjFhyEEuUfm7bsmCZRbW5WRq8s9EY8HZ6hCns= gopkg.in/sourcemap.v1 v1.0.5/go.mod h1:2RlvNNSMglmRrcvhfuzp4hQHwOtjxlbjX7UPY/GXb78= +gopkg.in/src-d/go-billy.v4 v4.3.2/go.mod h1:nDjArDMp+XMs1aFAESLRjfGSgfvoYN0hDfzEk0GjC98= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= gopkg.in/urfave/cli.v1 v1.20.0/go.mod h1:vuBzUtMdQeixQj8LVd+/98pzhxNGQoyuPBlsXHOQNO0= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= @@ -806,6 +1697,42 @@ honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWh honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= +honnef.co/go/tools v0.1.3/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las= +lukechampine.com/blake3 v1.1.7/go.mod h1:tkKEOtDkNtklkXtLNEOGNq5tcV90tJiA1vAA12R78LA= +lukechampine.com/uint128 v1.1.1/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= +lukechampine.com/uint128 v1.2.0/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= +modernc.org/cc/v3 v3.36.0/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= +modernc.org/cc/v3 v3.36.2/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= +modernc.org/cc/v3 v3.36.3/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= +modernc.org/ccgo/v3 v3.0.0-20220428102840-41399a37e894/go.mod h1:eI31LL8EwEBKPpNpA4bU1/i+sKOwOrQy8D87zWUcRZc= +modernc.org/ccgo/v3 v3.0.0-20220430103911-bc99d88307be/go.mod h1:bwdAnOoaIt8Ax9YdWGjxWsdkPcZyRPHqrOvJxaKAKGw= +modernc.org/ccgo/v3 v3.16.4/go.mod h1:tGtX0gE9Jn7hdZFeU88slbTh1UtCYKusWOoCJuvkWsQ= +modernc.org/ccgo/v3 v3.16.6/go.mod h1:tGtX0gE9Jn7hdZFeU88slbTh1UtCYKusWOoCJuvkWsQ= +modernc.org/ccgo/v3 v3.16.8/go.mod h1:zNjwkizS+fIFDrDjIAgBSCLkWbJuHF+ar3QRn+Z9aws= +modernc.org/ccgo/v3 v3.16.9/go.mod h1:zNMzC9A9xeNUepy6KuZBbugn3c0Mc9TeiJO4lgvkJDo= +modernc.org/ccorpus v1.11.6/go.mod h1:2gEUTrWqdpH2pXsmTM1ZkjeSrUWDpjMu2T6m29L/ErQ= +modernc.org/httpfs v1.0.6/go.mod h1:7dosgurJGp0sPaRanU53W4xZYKh14wfzX420oZADeHM= +modernc.org/libc v0.0.0-20220428101251-2d5f3daf273b/go.mod h1:p7Mg4+koNjc8jkqwcoFBJx7tXkpj00G77X7A72jXPXA= +modernc.org/libc v1.16.0/go.mod h1:N4LD6DBE9cf+Dzf9buBlzVJndKr/iJHG97vGLHYnb5A= +modernc.org/libc v1.16.1/go.mod h1:JjJE0eu4yeK7tab2n4S1w8tlWd9MxXLRzheaRnAKymU= +modernc.org/libc v1.16.17/go.mod h1:hYIV5VZczAmGZAnG15Vdngn5HSF5cSkbvfz2B7GRuVU= +modernc.org/libc v1.16.19/go.mod h1:p7Mg4+koNjc8jkqwcoFBJx7tXkpj00G77X7A72jXPXA= +modernc.org/libc v1.17.0/go.mod h1:XsgLldpP4aWlPlsjqKRdHPqCxCjISdHfM/yeWC5GyW0= +modernc.org/libc v1.17.1/go.mod h1:FZ23b+8LjxZs7XtFMbSzL/EhPxNbfZbErxEHc7cbD9s= +modernc.org/mathutil v1.2.2/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= +modernc.org/mathutil v1.4.1/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= +modernc.org/mathutil v1.5.0/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= +modernc.org/memory v1.1.1/go.mod h1:/0wo5ibyrQiaoUoH7f9D8dnglAmILJ5/cxZlRECf+Nw= +modernc.org/memory v1.2.0/go.mod h1:/0wo5ibyrQiaoUoH7f9D8dnglAmILJ5/cxZlRECf+Nw= +modernc.org/memory v1.2.1/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= +modernc.org/opt v0.1.1/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0= +modernc.org/opt v0.1.3/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0= +modernc.org/sqlite v1.18.1/go.mod h1:6ho+Gow7oX5V+OiOQ6Tr4xeqbx13UZ6t+Fw9IRUG4d4= +modernc.org/strutil v1.1.1/go.mod h1:DE+MQQ/hjKBZS2zNInV5hhcipt5rLPWkmpbGeW5mmdw= +modernc.org/strutil v1.1.3/go.mod h1:MEHNA7PdEnEwLvspRMtWTNnp2nnyvMfkimT1NKNAGbw= +modernc.org/tcl v1.13.1/go.mod h1:XOLfOwzhkljL4itZkK6T72ckMgvj0BDsnKNdZVUOecw= +modernc.org/token v1.0.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= +modernc.org/z v1.5.1/go.mod h1:eWFB510QWW5Th9YGZT81s+LwvaAs3Q2yr4sP0rmLkv8= pgregory.net/rapid v0.4.7/go.mod h1:UYpPVyjFHzYBGHIxLFoupi8vwk6rXNzRY9OMvVxFIOU= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index 58718103d..13d6b4001 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -170,6 +170,7 @@ github.com/onflow/flow-go-sdk v0.29.0-stable-cadence-4 h1:Vmutb6Cs72+Ayns6dx2mD8 github.com/onflow/flow-go-sdk v0.29.0-stable-cadence-4/go.mod h1:KEfJICFBZ/GAV4Zj1+jCavTs7qDe77F+s6z6ot0XZSI= github.com/onflow/flow-go-sdk v0.41.7-stable-cadence h1:GrmLLAPrxOyC27v/J/XG/sKiM1ynE1MYidiMXUfM0e4= github.com/onflow/flow-go-sdk v0.41.7-stable-cadence/go.mod h1:ejVN+bqcsTHVvRpDDJDoBNdmcxUfFMW4IvdTbMeQ/hQ= +github.com/onflow/flow-go/crypto v0.24.7 h1:RCLuB83At4z5wkAyUCF7MYEnPoIIOHghJaODuJyEoW0= github.com/onflow/flow-go/crypto v0.24.7/go.mod h1:fqCzkIBBMRRkciVrvW21rECKq1oD7Q6u+bCI78lfNX0= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= @@ -181,6 +182,7 @@ github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/9 github.com/peterh/liner v1.1.1-0.20190123174540-a2c9a5303de7/go.mod h1:CRroGNssyjTd/qIG2FyxByd2S8JEAZXBl4qUrZf8GS0= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= @@ -270,6 +272,7 @@ golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnf golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20200311171314-f7b00557c8c4/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.7.0 h1:AvwMYaRytfdeVt3u6mLaxYtErKYjxA2OXjJ1HHq6t3A= golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= golang.org/x/exp v0.0.0-20230321023759-10a507213a29 h1:ooxPy7fPvB4kwsA2h+iBNHkAbp/4JxTSwCmvdjEYmug= golang.org/x/exp v0.0.0-20230321023759-10a507213a29/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= From 345c81b69d7dbfe5e52f4a79ed58ef278fa15c5c Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 18 Jul 2023 14:32:10 -0500 Subject: [PATCH 005/160] use v2 ft and nft --- lib/go/contracts/contracts.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/go/contracts/contracts.go b/lib/go/contracts/contracts.go index bd2ab6deb..b00f702ae 100644 --- a/lib/go/contracts/contracts.go +++ b/lib/go/contracts/contracts.go @@ -77,8 +77,8 @@ func withHexPrefix(address string) string { } // FungibleToken returns the FungibleToken contract interface. -func FungibleToken() []byte { - return ftcontracts.FungibleToken() +func FungibleToken(viewResolverAddress string) []byte { + return ftcontracts.FungibleTokenV2(viewResolverAddress) } // FungibleTokenMetadataViews returns the FungibleTokenMetadataViews contract interface. @@ -86,8 +86,8 @@ func FungibleTokenMetadataViews(fungibleTokenAddr, metadataViewsAddr, viewResolv return ftcontracts.FungibleTokenMetadataViews(fungibleTokenAddr, metadataViewsAddr, viewResolverAddress) } -func NonFungibleToken() []byte { - return nftcontracts.NonFungibleToken() +func NonFungibleToken(viewResolverAddress string) []byte { + return nftcontracts.NonFungibleTokenV2(viewResolverAddress) } func ViewResolver() []byte { From 2de1c22d518067dcd9b9a51b5a8d5965540b95ab Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 18 Jul 2023 14:36:13 -0500 Subject: [PATCH 006/160] use string for nft import --- lib/go/contracts/contracts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/go/contracts/contracts.go b/lib/go/contracts/contracts.go index b00f702ae..5a7868c20 100644 --- a/lib/go/contracts/contracts.go +++ b/lib/go/contracts/contracts.go @@ -87,7 +87,7 @@ func FungibleTokenMetadataViews(fungibleTokenAddr, metadataViewsAddr, viewResolv } func NonFungibleToken(viewResolverAddress string) []byte { - return nftcontracts.NonFungibleTokenV2(viewResolverAddress) + return nftcontracts.NonFungibleTokenV2(flow.HexToAddress(viewResolverAddress)) } func ViewResolver() []byte { From d70590bb83b5eb3ae287dcc42ad8a482740404a5 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 18 Jul 2023 15:44:19 -0500 Subject: [PATCH 007/160] update token deps --- lib/go/contracts/go.mod | 4 ++-- lib/go/contracts/go.sum | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index f2af53b86..26576cb3c 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -4,9 +4,9 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230718172719-73a5ba83f177 + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230718204155-e888576ee020 github.com/onflow/flow-go-sdk v0.41.7-stable-cadence - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718172506-c9d5f473c030 + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718204222-6c4350165a05 github.com/stretchr/testify v1.8.2 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 970bc2f4c..1660ad759 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -916,6 +916,8 @@ github.com/onflow/flow-nft/lib/go/contracts v1.1.0 h1:rhUDeD27jhLwOqQKI/23008CYf github.com/onflow/flow-nft/lib/go/contracts v1.1.0/go.mod h1:YsvzYng4htDgRB9sa9jxdwoTuuhjK8WYWXTyLkIigZY= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718172506-c9d5f473c030 h1:ToPYLsi8XFMw9Z42jz5BpuJsUY6Oo2sHwCImhAUVQIA= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718172506-c9d5f473c030/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718204222-6c4350165a05 h1:YIynhmKF3FptpeZQAbFjbMit7M+8CLZEwn2JZaCcsqU= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718204222-6c4350165a05/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow/protobuf/go/flow v0.2.2/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/sdks v0.5.0/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= From 861a1c47ce37828fae740d93aaadc032dab0ab5b Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 18 Jul 2023 16:21:40 -0500 Subject: [PATCH 008/160] update token deps --- lib/go/contracts/go.mod | 4 ++-- lib/go/contracts/go.sum | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 26576cb3c..b49d7c618 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -4,9 +4,9 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230718204155-e888576ee020 + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230718212038-10716a6bb7fd github.com/onflow/flow-go-sdk v0.41.7-stable-cadence - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718204222-6c4350165a05 + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718211746-90269f46250c github.com/stretchr/testify v1.8.2 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 1660ad759..a251b1607 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -918,6 +918,8 @@ github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718172506-c9d5f473c030 github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718172506-c9d5f473c030/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718204222-6c4350165a05 h1:YIynhmKF3FptpeZQAbFjbMit7M+8CLZEwn2JZaCcsqU= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718204222-6c4350165a05/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718211746-90269f46250c h1:m/dxXkQYTaA0iydj8x0sYQIhOWZy+QuS7A94+PM3hAE= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718211746-90269f46250c/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow/protobuf/go/flow v0.2.2/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/sdks v0.5.0/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= From 6c7e2e5b649aaf72a6ce6030b1ddb01e0069b27c Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 18 Jul 2023 16:25:51 -0500 Subject: [PATCH 009/160] update nft dependecy --- lib/go/contracts/go.mod | 2 +- lib/go/contracts/go.sum | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index b49d7c618..46219da5b 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -6,7 +6,7 @@ require ( github.com/kevinburke/go-bindata v3.23.0+incompatible github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230718212038-10716a6bb7fd github.com/onflow/flow-go-sdk v0.41.7-stable-cadence - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718211746-90269f46250c + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718212445-02faddc53030 github.com/stretchr/testify v1.8.2 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index a251b1607..afce96eb1 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -920,6 +920,8 @@ github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718204222-6c4350165a05 github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718204222-6c4350165a05/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718211746-90269f46250c h1:m/dxXkQYTaA0iydj8x0sYQIhOWZy+QuS7A94+PM3hAE= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718211746-90269f46250c/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718212445-02faddc53030 h1:btDNgZHCZOjebNRuG6RhjW8QVmM14dI2m7S+KFwcbP4= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718212445-02faddc53030/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow/protobuf/go/flow v0.2.2/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/sdks v0.5.0/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= From 9005af3679bf802c082f2794c103b1513f4608ca Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 18 Jul 2023 16:28:53 -0500 Subject: [PATCH 010/160] update nft dep --- lib/go/contracts/go.mod | 2 +- lib/go/contracts/go.sum | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 46219da5b..9641dea83 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -6,7 +6,7 @@ require ( github.com/kevinburke/go-bindata v3.23.0+incompatible github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230718212038-10716a6bb7fd github.com/onflow/flow-go-sdk v0.41.7-stable-cadence - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718212445-02faddc53030 + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718212804-c5d491b84ec6 github.com/stretchr/testify v1.8.2 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index afce96eb1..db8c68151 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -922,6 +922,8 @@ github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718211746-90269f46250c github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718211746-90269f46250c/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718212445-02faddc53030 h1:btDNgZHCZOjebNRuG6RhjW8QVmM14dI2m7S+KFwcbP4= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718212445-02faddc53030/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718212804-c5d491b84ec6 h1:HHQRd6+7OSSs99aW6PaHwK7cmEAVwKgEPq688PTcdSs= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718212804-c5d491b84ec6/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow/protobuf/go/flow v0.2.2/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/sdks v0.5.0/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= From 34953f627700f92ef2b5617d7bf7a9116810a0b8 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 18 Jul 2023 16:47:26 -0500 Subject: [PATCH 011/160] update ft dep --- lib/go/contracts/go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 9641dea83..e3e0c640e 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -4,7 +4,7 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230718212038-10716a6bb7fd + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230718214600-8cc31ee7dcc4 github.com/onflow/flow-go-sdk v0.41.7-stable-cadence github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718212804-c5d491b84ec6 github.com/stretchr/testify v1.8.2 From 604407863c7ac30bfcf03452e893b3bfc9a00641 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 19 Jul 2023 09:51:37 -0500 Subject: [PATCH 012/160] add more view --- contracts/FlowStakingCollection.cdc | 8 ++++---- contracts/FlowStorageFees.cdc | 18 +++++++++--------- contracts/FlowToken.cdc | 10 +++++----- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/contracts/FlowStakingCollection.cdc b/contracts/FlowStakingCollection.cdc index 3687a70ba..963dd2fbc 100644 --- a/contracts/FlowStakingCollection.cdc +++ b/contracts/FlowStakingCollection.cdc @@ -1075,7 +1075,7 @@ access(all) contract FlowStakingCollection { // Getter functions for accounts StakingCollection information /// Function to get see if a node or delegator exists in an accounts staking collection - access(all) fun doesStakeExist(address: Address, nodeID: String, delegatorID: UInt32?): Bool { + access(all) view fun doesStakeExist(address: Address, nodeID: String, delegatorID: UInt32?): Bool { let account = getAccount(address) let stakingCollectionRef = account.capabilities.borrow<&StakingCollection>(self.StakingCollectionPublicPath) @@ -1085,7 +1085,7 @@ access(all) contract FlowStakingCollection { } /// Function to get the unlocked tokens used amount for an account - access(all) fun getUnlockedTokensUsed(address: Address): UFix64 { + access(all) view fun getUnlockedTokensUsed(address: Address): UFix64 { let account = getAccount(address) let stakingCollectionRef = account.capabilities.borrow<&StakingCollection>(self.StakingCollectionPublicPath) @@ -1095,7 +1095,7 @@ access(all) contract FlowStakingCollection { } /// Function to get the locked tokens used amount for an account - access(all) fun getLockedTokensUsed(address: Address): UFix64 { + access(all) view fun getLockedTokensUsed(address: Address): UFix64 { let account = getAccount(address) let stakingCollectionRef = account.capabilities.borrow<&StakingCollection>(self.StakingCollectionPublicPath) @@ -1155,7 +1155,7 @@ access(all) contract FlowStakingCollection { } /// Determines if an account is set up with a Staking Collection - access(all) fun doesAccountHaveStakingCollection(address: Address): Bool { + access(all) view fun doesAccountHaveStakingCollection(address: Address): Bool { let account = getAccount(address) return account.capabilities .get<&StakingCollection>(self.StakingCollectionPublicPath) diff --git a/contracts/FlowStorageFees.cdc b/contracts/FlowStorageFees.cdc index 6c9f3ab60..afb7d631f 100644 --- a/contracts/FlowStorageFees.cdc +++ b/contracts/FlowStorageFees.cdc @@ -63,7 +63,7 @@ access(all) contract FlowStorageFees { /// /// Returns megabytes /// If the account has no default balance it is counted as a balance of 0.0 FLOW - access(all) fun calculateAccountCapacity(_ accountAddress: Address): UFix64 { + access(all) view fun calculateAccountCapacity(_ accountAddress: Address): UFix64 { var balance = 0.0 if let balanceRef = getAccount(accountAddress) .getCapability<&FlowToken.Vault{FungibleToken.Balance}>(/public/flowTokenBalance)! @@ -75,7 +75,7 @@ access(all) contract FlowStorageFees { } /// calculateAccountsCapacity returns the storage capacity of a batch of accounts - access(all) fun calculateAccountsCapacity(_ accountAddresses: [Address]): [UFix64] { + access(all) view fun calculateAccountsCapacity(_ accountAddresses: [Address]): [UFix64] { let capacities: [UFix64] = [] for accountAddress in accountAddresses { let capacity = self.calculateAccountCapacity(accountAddress) @@ -88,7 +88,7 @@ access(all) contract FlowStorageFees { // This is used to check if a transaction will fail because of any account being over the storage capacity // The payer is an exception as its storage capacity is derived from its balance minus the maximum possible transaction fees // (transaction fees if the execution effort is at the execution efort limit, a.k.a.: computation limit, a.k.a.: gas limit) - access(all) fun getAccountsCapacityForTransactionStorageCheck(accountAddresses: [Address], payer: Address, maxTxFees: UFix64): [UFix64] { + access(all) view fun getAccountsCapacityForTransactionStorageCheck(accountAddresses: [Address], payer: Address, maxTxFees: UFix64): [UFix64] { let capacities: [UFix64] = [] for accountAddress in accountAddresses { var balance = 0.0 @@ -110,7 +110,7 @@ access(all) contract FlowStorageFees { // accountBalanceToAccountStorageCapacity returns the storage capacity // an account would have with given the flow balance of the account. - access(all) fun accountBalanceToAccountStorageCapacity(_ balance: UFix64): UFix64 { + access(all) view fun accountBalanceToAccountStorageCapacity(_ balance: UFix64): UFix64 { // get address token balance if balance < self.minimumStorageReservation { // if < then minimum return 0 @@ -123,13 +123,13 @@ access(all) contract FlowStorageFees { // Amount in Flow tokens // Returns megabytes - access(all) fun flowToStorageCapacity(_ amount: UFix64): UFix64 { + access(all) view fun flowToStorageCapacity(_ amount: UFix64): UFix64 { return amount.saturatingMultiply(FlowStorageFees.storageMegaBytesPerReservedFLOW) } // Amount in megabytes // Returns Flow tokens - access(all) fun storageCapacityToFlow(_ amount: UFix64): UFix64 { + access(all) view fun storageCapacityToFlow(_ amount: UFix64): UFix64 { if FlowStorageFees.storageMegaBytesPerReservedFLOW == 0.0 { return 0.0 } @@ -139,7 +139,7 @@ access(all) contract FlowStorageFees { } // converts storage used from UInt64 Bytes to UFix64 Megabytes. - access(all) fun convertUInt64StorageBytesToUFix64Megabytes(_ storage: UInt64): UFix64 { + access(all) view fun convertUInt64StorageBytesToUFix64Megabytes(_ storage: UInt64): UFix64 { // safe convert UInt64 to UFix64 (without overflow) let f = UFix64(storage % 100000000) * 0.00000001 + UFix64(storage / 100000000) // decimal point correction. Megabytes to bytes have a conversion of 10^-6 while UFix64 minimum value is 10^-8 @@ -151,7 +151,7 @@ access(all) contract FlowStorageFees { /// /// The available balance of an account is its default token balance minus what is reserved for storage. /// If the account has no default balance it is counted as a balance of 0.0 FLOW - access(all) fun defaultTokenAvailableBalance(_ accountAddress: Address): UFix64 { + access(all) view fun defaultTokenAvailableBalance(_ accountAddress: Address): UFix64 { //get balance of account let acct = getAccount(accountAddress) var balance = 0.0 @@ -171,7 +171,7 @@ access(all) contract FlowStorageFees { /// /// The reserved balance of an account is its storage used multiplied by the storage cost per flow token. /// The reserved balance is at least the minimum storage reservation. - access(all) fun defaultTokenReservedBalance(_ accountAddress: Address): UFix64 { + access(all) view fun defaultTokenReservedBalance(_ accountAddress: Address): UFix64 { let acct = getAccount(accountAddress) var reserved = self.storageCapacityToFlow(self.convertUInt64StorageBytesToUFix64Megabytes(acct.storageUsed)) // at least self.minimumStorageReservation should be reserved diff --git a/contracts/FlowToken.cdc b/contracts/FlowToken.cdc index 4ac56434f..b1adeab9f 100644 --- a/contracts/FlowToken.cdc +++ b/contracts/FlowToken.cdc @@ -92,7 +92,7 @@ access(all) contract FlowToken: FungibleToken, ViewResolver { /// @return An array of Types defining the implemented views. This value will be used by /// developers to know which parameter to pass to the resolveView() method. /// - access(all) fun getViews(): [Type]{ + access(all) view fun getViews(): [Type]{ return FlowToken.getViews() } @@ -101,7 +101,7 @@ access(all) contract FlowToken: FungibleToken, ViewResolver { /// @param view: The Type of the desired view. /// @return A structure representing the requested view. /// - access(all) fun resolveView(_ view: Type): AnyStruct? { + access(all) view fun resolveView(_ view: Type): AnyStruct? { return FlowToken.resolveView(view) } } @@ -117,7 +117,7 @@ access(all) contract FlowToken: FungibleToken, ViewResolver { return <-create Vault(balance: 0.0) } - access(all) fun getViews(): [Type] { + access(all) view fun getViews(): [Type] { return [Type(), Type(), Type(), @@ -129,7 +129,7 @@ access(all) contract FlowToken: FungibleToken, ViewResolver { /// @param view: The Type of the desired view. /// @return A structure representing the requested view. /// - access(all) fun resolveView(_ view: Type): AnyStruct? { + access(all) view fun resolveView(_ view: Type): AnyStruct? { switch view { case Type(): return FungibleTokenMetadataViews.FTView( @@ -245,7 +245,7 @@ access(all) contract FlowToken: FungibleToken, ViewResolver { } /// Gets the Flow Logo XML URI from storage - access(all) fun getLogoURI(): String { + access(all) view fun getLogoURI(): String { return FlowToken.account.copy(from: /storage/flowTokenLogoURI) ?? "" } From bcdf82cda311eb2eb9e4ee0bd317e16b7ffa2f57 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 19 Jul 2023 10:01:15 -0500 Subject: [PATCH 013/160] update FlowToken contract getter to explicitly use metadata views --- lib/go/contracts/contracts.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/go/contracts/contracts.go b/lib/go/contracts/contracts.go index 5a7868c20..554667bdf 100644 --- a/lib/go/contracts/contracts.go +++ b/lib/go/contracts/contracts.go @@ -102,7 +102,7 @@ func MetadataViews(fungibleTokenAddr, nonFungibleTokenAddr, viewResolverAddr str // FlowToken returns the FlowToken contract. // // The returned contract will import the FungibleToken contract from the specified address. -func FlowToken(fungibleTokenAddress, metadataViewsAddress, viewResolverAddress string) []byte { +func FlowToken(fungibleTokenAddress, fungibleTokenMVAddress, metadataViewsAddress, viewResolverAddress string) []byte { code := assets.MustAssetString(flowTokenFilename) // Replace the fungible token placeholder address @@ -116,7 +116,7 @@ func FlowToken(fungibleTokenAddress, metadataViewsAddress, viewResolverAddress s code = strings.ReplaceAll( code, placeholderFungibleTokenMVAddress, - withHexPrefix(fungibleTokenAddress), + withHexPrefix(fungibleTokenMVAddress), ) code = strings.ReplaceAll( From b1cdfb9bcd38c17c4c40d9d794c4626b44bc0f6c Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 19 Jul 2023 11:37:14 -0500 Subject: [PATCH 014/160] implement new standard methods --- contracts/FlowToken.cdc | 40 +++++++++++++++++++++++++++++++++++++--- lib/go/contracts/go.mod | 2 +- 2 files changed, 38 insertions(+), 4 deletions(-) diff --git a/contracts/FlowToken.cdc b/contracts/FlowToken.cdc index b1adeab9f..79feb4365 100644 --- a/contracts/FlowToken.cdc +++ b/contracts/FlowToken.cdc @@ -41,16 +41,39 @@ access(all) contract FlowToken: FungibleToken, ViewResolver { // out of thin air. A special Minter resource needs to be defined to mint // new tokens. // - access(all) resource Vault: FungibleToken.Provider, FungibleToken.Receiver, FungibleToken.Balance, MetadataViews.Resolver { + access(all) resource Vault: FungibleToken.Vault, FungibleToken.Provider, FungibleToken.Receiver, FungibleToken.Balance, MetadataViews.Resolver { // holds the balance of a users tokens access(all) var balance: UFix64 + access(all) view fun getBalance(): UFix64 { + return self.balance + } + // initialize the balance at resource creation time init(balance: UFix64) { self.balance = balance } + /// getSupportedVaultTypes optionally returns a list of vault types that this receiver accepts + access(all) view fun getSupportedVaultTypes(): {Type: Bool} { + return {self.getType(): true} + } + + access(all) view fun isSupportedVaultType(type: Type): Bool { + if type == self.getType { return true } else { return false } + } + + /// Returns the storage path where the vault should typically be stored + access(all) view fun getDefaultStoragePath(): StoragePath? { + return /storage/flowTokenVault + } + + /// Returns the public path where this vault should have a public capability + access(all) view fun getDefaultPublicPath(): PublicPath? { + return /public/flowTokenReceiver + } + // withdraw // // Function that takes an integer amount as an argument @@ -81,6 +104,17 @@ access(all) contract FlowToken: FungibleToken, ViewResolver { destroy vault } + access(all) fun transfer(amount: UFix64, receiver: Capability<&{FungibleToken.Receiver}>) { + let transferVault <- self.withdraw(amount: amount) + + // Get a reference to the recipient's Receiver + let receiverRef = receiver.borrow() + ?? panic("Could not borrow receiver reference to the recipient's Vault") + + // Deposit the withdrawn tokens in the recipient's receiver + receiverRef.deposit(from: <-transferVault) + } + destroy() { if self.balance > 0.0 { FlowToken.totalSupply = FlowToken.totalSupply - self.balance @@ -101,7 +135,7 @@ access(all) contract FlowToken: FungibleToken, ViewResolver { /// @param view: The Type of the desired view. /// @return A structure representing the requested view. /// - access(all) view fun resolveView(_ view: Type): AnyStruct? { + access(all) fun resolveView(_ view: Type): AnyStruct? { return FlowToken.resolveView(view) } } @@ -129,7 +163,7 @@ access(all) contract FlowToken: FungibleToken, ViewResolver { /// @param view: The Type of the desired view. /// @return A structure representing the requested view. /// - access(all) view fun resolveView(_ view: Type): AnyStruct? { + access(all) fun resolveView(_ view: Type): AnyStruct? { switch view { case Type(): return FungibleTokenMetadataViews.FTView( diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index e3e0c640e..01aebe997 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -4,7 +4,7 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230718214600-8cc31ee7dcc4 + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230719163519-9e2154385128 github.com/onflow/flow-go-sdk v0.41.7-stable-cadence github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718212804-c5d491b84ec6 github.com/stretchr/testify v1.8.2 From 5c9dbc1a891b97bdd09582a42a5828b3903e7524 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 19 Jul 2023 11:41:35 -0500 Subject: [PATCH 015/160] update nft dependency --- lib/go/contracts/go.mod | 2 +- lib/go/contracts/go.sum | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 01aebe997..351302238 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -6,7 +6,7 @@ require ( github.com/kevinburke/go-bindata v3.23.0+incompatible github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230719163519-9e2154385128 github.com/onflow/flow-go-sdk v0.41.7-stable-cadence - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718212804-c5d491b84ec6 + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230719151715-3bd6381cd54b github.com/stretchr/testify v1.8.2 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index db8c68151..4bda0de75 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -924,6 +924,8 @@ github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718212445-02faddc53030 github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718212445-02faddc53030/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718212804-c5d491b84ec6 h1:HHQRd6+7OSSs99aW6PaHwK7cmEAVwKgEPq688PTcdSs= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718212804-c5d491b84ec6/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230719151715-3bd6381cd54b h1:wcH5abZ9wxTdl53DMCdvpYg3Y59CRy3vGnyYvaqo2Fw= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230719151715-3bd6381cd54b/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow/protobuf/go/flow v0.2.2/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/sdks v0.5.0/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= From b8f0e9e7aec1acb552b5a15d9dfc18edc6e3a03a Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 19 Jul 2023 11:46:44 -0500 Subject: [PATCH 016/160] update ft dep --- lib/go/contracts/go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 351302238..0e523d3c2 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -4,7 +4,7 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230719163519-9e2154385128 + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230719164546-eef53f96eafe github.com/onflow/flow-go-sdk v0.41.7-stable-cadence github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230719151715-3bd6381cd54b github.com/stretchr/testify v1.8.2 From 15d02eb307d61f89e0857f961f02d6c74ccd2fe9 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 19 Jul 2023 12:07:31 -0500 Subject: [PATCH 017/160] fix FungibleToken.Vault types and imports --- contracts/FlowToken.cdc | 18 +++++++++--------- lib/go/contracts/go.mod | 2 +- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/contracts/FlowToken.cdc b/contracts/FlowToken.cdc index 79feb4365..128e72872 100644 --- a/contracts/FlowToken.cdc +++ b/contracts/FlowToken.cdc @@ -3,7 +3,7 @@ import MetadataViews from "MetadataViews" import FungibleTokenMetadataViews from "FungibleTokenMetadataViews" import ViewResolver from "ViewResolver" -access(all) contract FlowToken: FungibleToken, ViewResolver { +access(all) contract FlowToken: ViewResolver { // Total supply of Flow tokens in existence access(all) var totalSupply: UFix64 @@ -41,7 +41,7 @@ access(all) contract FlowToken: FungibleToken, ViewResolver { // out of thin air. A special Minter resource needs to be defined to mint // new tokens. // - access(all) resource Vault: FungibleToken.Vault, FungibleToken.Provider, FungibleToken.Receiver, FungibleToken.Balance, MetadataViews.Resolver { + access(all) resource Vault: FungibleToken.Vault, FungibleToken.Provider, FungibleToken.Receiver, FungibleToken.Balance, ViewResolver.Resolver { // holds the balance of a users tokens access(all) var balance: UFix64 @@ -83,7 +83,7 @@ access(all) contract FlowToken: FungibleToken, ViewResolver { // created Vault to the context that called so it can be deposited // elsewhere. // - access(FungibleToken.Withdrawable) fun withdraw(amount: UFix64): @FungibleToken.Vault { + access(FungibleToken.Withdrawable) fun withdraw(amount: UFix64): @FlowToken.Vault { self.balance = self.balance - amount emit TokensWithdrawn(amount: amount, from: self.owner?.address) return <-create Vault(balance: amount) @@ -96,7 +96,7 @@ access(all) contract FlowToken: FungibleToken, ViewResolver { // It is allowed to destroy the sent Vault because the Vault // was a temporary holder of the tokens. The Vault's balance has // been consumed and therefore can be destroyed. - access(all) fun deposit(from: @FungibleToken.Vault) { + access(all) fun deposit(from: @FlowToken.Vault) { let vault <- from as! @FlowToken.Vault self.balance = self.balance + vault.balance emit TokensDeposited(amount: vault.balance, to: self.owner?.address) @@ -104,7 +104,7 @@ access(all) contract FlowToken: FungibleToken, ViewResolver { destroy vault } - access(all) fun transfer(amount: UFix64, receiver: Capability<&{FungibleToken.Receiver}>) { + access(FungibleToken.Withdrawable) fun transfer(amount: UFix64, receiver: Capability<&{FungibleToken.Receiver}>) { let transferVault <- self.withdraw(amount: amount) // Get a reference to the recipient's Receiver @@ -147,7 +147,7 @@ access(all) contract FlowToken: FungibleToken, ViewResolver { // and store the returned Vault in their storage in order to allow their // account to be able to receive deposits of this token type. // - access(all) fun createEmptyVault(): @FungibleToken.Vault { + access(all) fun createEmptyVault(): @FlowToken.Vault { return <-create Vault(balance: 0.0) } @@ -197,7 +197,7 @@ access(all) contract FlowToken: FungibleToken, ViewResolver { receiverLinkedType: Type<&FlowToken.Vault{FungibleToken.Receiver, FungibleToken.Balance, MetadataViews.Resolver}>(), metadataLinkedType: Type<&FlowToken.Vault{FungibleToken.Balance, MetadataViews.Resolver}>(), providerLinkedType: Type<&FlowToken.Vault{FungibleToken.Provider}>(), - createEmptyVaultFunction: (fun (): @FungibleToken.Vault { + createEmptyVaultFunction: (fun (): @{FungibleToken.Vault} { return <-FlowToken.createEmptyVault() }) ) @@ -298,7 +298,7 @@ access(all) contract FlowToken: FungibleToken, ViewResolver { // Create a public capability to the stored Vault that only exposes // the `deposit` method through the `Receiver` interface // - self.account.link<&FlowToken.Vault{FungibleToken.Receiver, FungibleToken.Balance, MetadataViews.Resolver}>( + self.account.link<&FlowToken.Vault{FungibleToken.Receiver, FungibleToken.Balance, ViewResolver.Resolver}>( /public/flowTokenReceiver, target: /storage/flowTokenVault ) @@ -306,7 +306,7 @@ access(all) contract FlowToken: FungibleToken, ViewResolver { // Create a public capability to the stored Vault that only exposes // the `balance` field through the `Balance` interface // - self.account.link<&FlowToken.Vault{FungibleToken.Balance, MetadataViews.Resolver}>( + self.account.link<&FlowToken.Vault{FungibleToken.Balance, ViewResolver.Resolver}>( /public/flowTokenBalance, target: /storage/flowTokenVault ) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 0e523d3c2..08950a9ae 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -4,7 +4,7 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230719164546-eef53f96eafe + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230719170605-0b47d4dcf761 github.com/onflow/flow-go-sdk v0.41.7-stable-cadence github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230719151715-3bd6381cd54b github.com/stretchr/testify v1.8.2 From 46b692956bb10de609bd1a3122c6ca451411b731 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 19 Jul 2023 12:27:46 -0500 Subject: [PATCH 018/160] remove view from copy --- contracts/FlowToken.cdc | 18 +++++++++++------- contracts/epochs/FlowEpoch.cdc | 2 +- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/contracts/FlowToken.cdc b/contracts/FlowToken.cdc index 128e72872..39e810753 100644 --- a/contracts/FlowToken.cdc +++ b/contracts/FlowToken.cdc @@ -61,7 +61,7 @@ access(all) contract FlowToken: ViewResolver { } access(all) view fun isSupportedVaultType(type: Type): Bool { - if type == self.getType { return true } else { return false } + if (type == self.getType()) { return true } else { return false } } /// Returns the storage path where the vault should typically be stored @@ -83,7 +83,7 @@ access(all) contract FlowToken: ViewResolver { // created Vault to the context that called so it can be deposited // elsewhere. // - access(FungibleToken.Withdrawable) fun withdraw(amount: UFix64): @FlowToken.Vault { + access(FungibleToken.Withdrawable) fun withdraw(amount: UFix64): @AnyResource{FungibleToken.Vault} { self.balance = self.balance - amount emit TokensWithdrawn(amount: amount, from: self.owner?.address) return <-create Vault(balance: amount) @@ -96,7 +96,7 @@ access(all) contract FlowToken: ViewResolver { // It is allowed to destroy the sent Vault because the Vault // was a temporary holder of the tokens. The Vault's balance has // been consumed and therefore can be destroyed. - access(all) fun deposit(from: @FlowToken.Vault) { + access(all) fun deposit(from: @AnyResource{FungibleToken.Vault}) { let vault <- from as! @FlowToken.Vault self.balance = self.balance + vault.balance emit TokensDeposited(amount: vault.balance, to: self.owner?.address) @@ -138,6 +138,10 @@ access(all) contract FlowToken: ViewResolver { access(all) fun resolveView(_ view: Type): AnyStruct? { return FlowToken.resolveView(view) } + + access(all) fun createEmptyVault(): @FlowToken{FungibleToken.Vault} { + return <-create Vault(balance: 0.0) + } } // createEmptyVault @@ -194,8 +198,8 @@ access(all) contract FlowToken: ViewResolver { receiverPath: /public/flowTokenReceiver, metadataPath: /public/flowTokenBalance, providerPath: /private/flowTokenVault, - receiverLinkedType: Type<&FlowToken.Vault{FungibleToken.Receiver, FungibleToken.Balance, MetadataViews.Resolver}>(), - metadataLinkedType: Type<&FlowToken.Vault{FungibleToken.Balance, MetadataViews.Resolver}>(), + receiverLinkedType: Type<&FlowToken.Vault{FungibleToken.Receiver, FungibleToken.Balance, ViewResolver.Resolver}>(), + metadataLinkedType: Type<&FlowToken.Vault{FungibleToken.Balance, ViewResolver.Resolver}>(), providerLinkedType: Type<&FlowToken.Vault{FungibleToken.Provider}>(), createEmptyVaultFunction: (fun (): @{FungibleToken.Vault} { return <-FlowToken.createEmptyVault() @@ -270,7 +274,7 @@ access(all) contract FlowToken: ViewResolver { // Note: the burned tokens are automatically subtracted from the // total supply in the Vault destructor. // - access(all) fun burnTokens(from: @FungibleToken.Vault) { + access(all) fun burnTokens(from: @FlowToken.Vault) { let vault <- from as! @FlowToken.Vault let amount = vault.balance destroy vault @@ -279,7 +283,7 @@ access(all) contract FlowToken: ViewResolver { } /// Gets the Flow Logo XML URI from storage - access(all) view fun getLogoURI(): String { + access(all) fun getLogoURI(): String { return FlowToken.account.copy(from: /storage/flowTokenLogoURI) ?? "" } diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 0086b7702..dac765337 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -821,7 +821,7 @@ access(all) contract FlowEpoch { return self.currentEpochCounter + 1 as UInt64 } - access(all) view fun automaticRewardsEnabled(): Bool { + access(all) fun automaticRewardsEnabled(): Bool { return self.account.copy(from: /storage/flowAutomaticRewardsEnabled) ?? false } From a9f8e5f068b3eb69c1ad7f95002b402420692d4f Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 19 Jul 2023 12:30:27 -0500 Subject: [PATCH 019/160] add correct vault type --- contracts/FlowToken.cdc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/FlowToken.cdc b/contracts/FlowToken.cdc index 39e810753..53541c1a5 100644 --- a/contracts/FlowToken.cdc +++ b/contracts/FlowToken.cdc @@ -139,7 +139,7 @@ access(all) contract FlowToken: ViewResolver { return FlowToken.resolveView(view) } - access(all) fun createEmptyVault(): @FlowToken{FungibleToken.Vault} { + access(all) fun createEmptyVault(): @FlowToken.Vault{FungibleToken.Vault} { return <-create Vault(balance: 0.0) } } From 492674fcb1b8ab1f668202946b98d0753df54ee5 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 19 Jul 2023 16:45:03 -0500 Subject: [PATCH 020/160] remove views and update balances --- contracts/FlowFees.cdc | 10 +++++----- contracts/FlowStorageFees.cdc | 16 ++++++++-------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/contracts/FlowFees.cdc b/contracts/FlowFees.cdc index 468725d93..70a790663 100644 --- a/contracts/FlowFees.cdc +++ b/contracts/FlowFees.cdc @@ -21,14 +21,14 @@ access(all) contract FlowFees { access(all) fun deposit(from: @FungibleToken.Vault) { let from <- from as! @FlowToken.Vault - let balance = from.balance + let balance = from.getBalance() self.vault.deposit(from: <-from) emit TokensDeposited(amount: balance) } /// Get the balance of the Fees Vault access(all) fun getFeeBalance(): UFix64 { - return self.vault.balance + return self.vault.getBalance() } access(all) resource Administrator { @@ -121,7 +121,7 @@ access(all) contract FlowFees { // In the edge case where the payer doesnt have a vault, treat the balance as 0. var balance = 0.0 if let tokenVault = payerAcct.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) { - balance = tokenVault.balance + balance = tokenVault.getBalance() } return VerifyPayerBalanceResult( @@ -146,13 +146,13 @@ access(all) contract FlowFees { ?? panic("Unable to borrow reference to the default token vault") - if feeAmount > tokenVault.balance { + if feeAmount > tokenVault.getBalance() { // In the future this code path will never be reached, // as payers that are under account minimum balance will not have their transactions included in a collection // // Currently this is not used to fail the transaction (as that is the responsibility of the minimum account balance logic), // But is used to reduce the balance of the vault to 0.0, if the vault has less available balance than the transaction fees. - feeAmount = tokenVault.balance + feeAmount = tokenVault.getBalance() } let feeVault <- tokenVault.withdraw(amount: feeAmount) diff --git a/contracts/FlowStorageFees.cdc b/contracts/FlowStorageFees.cdc index afb7d631f..29d8cfaf5 100644 --- a/contracts/FlowStorageFees.cdc +++ b/contracts/FlowStorageFees.cdc @@ -63,19 +63,19 @@ access(all) contract FlowStorageFees { /// /// Returns megabytes /// If the account has no default balance it is counted as a balance of 0.0 FLOW - access(all) view fun calculateAccountCapacity(_ accountAddress: Address): UFix64 { + access(all) fun calculateAccountCapacity(_ accountAddress: Address): UFix64 { var balance = 0.0 if let balanceRef = getAccount(accountAddress) .getCapability<&FlowToken.Vault{FungibleToken.Balance}>(/public/flowTokenBalance)! .borrow() { - balance = balanceRef.balance + balance = balanceRef.getBalance() } return self.accountBalanceToAccountStorageCapacity(balance) } /// calculateAccountsCapacity returns the storage capacity of a batch of accounts - access(all) view fun calculateAccountsCapacity(_ accountAddresses: [Address]): [UFix64] { + access(all) fun calculateAccountsCapacity(_ accountAddresses: [Address]): [UFix64] { let capacities: [UFix64] = [] for accountAddress in accountAddresses { let capacity = self.calculateAccountCapacity(accountAddress) @@ -88,7 +88,7 @@ access(all) contract FlowStorageFees { // This is used to check if a transaction will fail because of any account being over the storage capacity // The payer is an exception as its storage capacity is derived from its balance minus the maximum possible transaction fees // (transaction fees if the execution effort is at the execution efort limit, a.k.a.: computation limit, a.k.a.: gas limit) - access(all) view fun getAccountsCapacityForTransactionStorageCheck(accountAddresses: [Address], payer: Address, maxTxFees: UFix64): [UFix64] { + access(all) fun getAccountsCapacityForTransactionStorageCheck(accountAddresses: [Address], payer: Address, maxTxFees: UFix64): [UFix64] { let capacities: [UFix64] = [] for accountAddress in accountAddresses { var balance = 0.0 @@ -97,9 +97,9 @@ access(all) contract FlowStorageFees { .borrow() { if accountAddress == payer { // if the account is the payer, deduct the maximum possible transaction fees from the balance - balance = balanceRef.balance.saturatingSubtract(maxTxFees) + balance = balanceRef.getBalance().saturatingSubtract(maxTxFees) } else { - balance = balanceRef.balance + balance = balanceRef.getBalance() } } @@ -151,14 +151,14 @@ access(all) contract FlowStorageFees { /// /// The available balance of an account is its default token balance minus what is reserved for storage. /// If the account has no default balance it is counted as a balance of 0.0 FLOW - access(all) view fun defaultTokenAvailableBalance(_ accountAddress: Address): UFix64 { + access(all) fun defaultTokenAvailableBalance(_ accountAddress: Address): UFix64 { //get balance of account let acct = getAccount(accountAddress) var balance = 0.0 if let balanceRef = acct .getCapability(/public/flowTokenBalance) .borrow<&FlowToken.Vault{FungibleToken.Balance}>() { - balance = balanceRef.balance + balance = balanceRef.getBalance() } // get how much should be reserved for storage From 971b709242b983f4f2ccdd4cdbb161a7252fc919 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 19 Jul 2023 16:55:09 -0500 Subject: [PATCH 021/160] use vault interface type --- contracts/FlowFees.cdc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/FlowFees.cdc b/contracts/FlowFees.cdc index 70a790663..7360cb661 100644 --- a/contracts/FlowFees.cdc +++ b/contracts/FlowFees.cdc @@ -19,7 +19,7 @@ access(all) contract FlowFees { // Private vault with public deposit function access(self) var vault: @FlowToken.Vault - access(all) fun deposit(from: @FungibleToken.Vault) { + access(all) fun deposit(from: @{FungibleToken.Vault}) { let from <- from as! @FlowToken.Vault let balance = from.getBalance() self.vault.deposit(from: <-from) @@ -35,7 +35,7 @@ access(all) contract FlowFees { // withdraw // // Allows the administrator to withdraw tokens from the fee vault - access(all) fun withdrawTokensFromFeeVault(amount: UFix64): @FungibleToken.Vault { + access(all) fun withdrawTokensFromFeeVault(amount: UFix64): @{FungibleToken.Vault} { let vault <- FlowFees.vault.withdraw(amount: amount) emit TokensWithdrawn(amount: amount) return <-vault From f1f87642faf61292dab4f5072732e9be0825544e Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 26 Jul 2023 14:07:25 -0500 Subject: [PATCH 022/160] remove restricted types --- contracts/FlowServiceAccount.cdc | 6 +++--- contracts/FlowToken.cdc | 6 +++--- lib/go/contracts/go.mod | 4 ++-- lib/go/contracts/go.sum | 2 ++ 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/contracts/FlowServiceAccount.cdc b/contracts/FlowServiceAccount.cdc index 0598c5015..9b8daa5df 100644 --- a/contracts/FlowServiceAccount.cdc +++ b/contracts/FlowServiceAccount.cdc @@ -52,7 +52,7 @@ access(all) contract FlowServiceAccount { if let balanceRef = acct .getCapability(/public/flowTokenBalance) .borrow<&FlowToken.Vault{FungibleToken.Balance}>(){ - balance = balanceRef.balance + balance = balanceRef.getBalance() } return balance @@ -75,8 +75,8 @@ access(all) contract FlowServiceAccount { let tokenVault = self.defaultTokenVault(acct) var feeAmount = self.transactionFee - if self.transactionFee > tokenVault.balance { - feeAmount = tokenVault.balance + if self.transactionFee > tokenVault.getBalance() { + feeAmount = tokenVault.getBalance() } let feeVault <- tokenVault.withdraw(amount: feeAmount) diff --git a/contracts/FlowToken.cdc b/contracts/FlowToken.cdc index 53541c1a5..b7a30c263 100644 --- a/contracts/FlowToken.cdc +++ b/contracts/FlowToken.cdc @@ -83,7 +83,7 @@ access(all) contract FlowToken: ViewResolver { // created Vault to the context that called so it can be deposited // elsewhere. // - access(FungibleToken.Withdrawable) fun withdraw(amount: UFix64): @AnyResource{FungibleToken.Vault} { + access(FungibleToken.Withdrawable) fun withdraw(amount: UFix64): @{FungibleToken.Vault} { self.balance = self.balance - amount emit TokensWithdrawn(amount: amount, from: self.owner?.address) return <-create Vault(balance: amount) @@ -96,7 +96,7 @@ access(all) contract FlowToken: ViewResolver { // It is allowed to destroy the sent Vault because the Vault // was a temporary holder of the tokens. The Vault's balance has // been consumed and therefore can be destroyed. - access(all) fun deposit(from: @AnyResource{FungibleToken.Vault}) { + access(all) fun deposit(from: @{FungibleToken.Vault}) { let vault <- from as! @FlowToken.Vault self.balance = self.balance + vault.balance emit TokensDeposited(amount: vault.balance, to: self.owner?.address) @@ -139,7 +139,7 @@ access(all) contract FlowToken: ViewResolver { return FlowToken.resolveView(view) } - access(all) fun createEmptyVault(): @FlowToken.Vault{FungibleToken.Vault} { + access(all) fun createEmptyVault(): @{FungibleToken.Vault} { return <-create Vault(balance: 0.0) } } diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 08950a9ae..825ffcfb7 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -4,9 +4,9 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230719170605-0b47d4dcf761 + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230726183918-f90805445bfa github.com/onflow/flow-go-sdk v0.41.7-stable-cadence - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230719151715-3bd6381cd54b + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230726190453-ac7ed4798148 github.com/stretchr/testify v1.8.2 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 4bda0de75..cd0234c65 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -926,6 +926,8 @@ github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718212804-c5d491b84ec6 github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718212804-c5d491b84ec6/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230719151715-3bd6381cd54b h1:wcH5abZ9wxTdl53DMCdvpYg3Y59CRy3vGnyYvaqo2Fw= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230719151715-3bd6381cd54b/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230726190453-ac7ed4798148 h1:QgNBQSf7W6f9On0K0M71yr5pRTNAeFdN2uvHOZcSvJQ= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230726190453-ac7ed4798148/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow/protobuf/go/flow v0.2.2/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/sdks v0.5.0/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= From 3e8c3989318125b1f9792ca7f9a0298b6d87ab7a Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 26 Jul 2023 14:13:24 -0500 Subject: [PATCH 023/160] remove AnyStruct --- contracts/StakingProxy.cdc | 10 +++++----- lib/go/contracts/go.mod | 2 +- lib/go/contracts/go.sum | 2 ++ 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/contracts/StakingProxy.cdc b/contracts/StakingProxy.cdc index 41b42c07d..1f1c8dc0a 100644 --- a/contracts/StakingProxy.cdc +++ b/contracts/StakingProxy.cdc @@ -75,7 +75,7 @@ access(all) contract StakingProxy { /// staking helper relationships with them access(all) resource interface NodeStakerProxyHolderPublic { - access(all) fun addStakingProxy(nodeID: String, proxy: AnyStruct{NodeStakerProxy}) + access(all) fun addStakingProxy(nodeID: String, proxy: {NodeStakerProxy}) access(all) fun getNodeInfo(nodeID: String): NodeInfo? } @@ -88,7 +88,7 @@ access(all) contract StakingProxy { /// Maps node IDs to any struct that implements the NodeStakerProxy interface /// allows node operators to work with users with locked tokens /// and with unstaked tokens - access(self) var stakingProxies: {String: AnyStruct{NodeStakerProxy}} + access(self) var stakingProxies: {String: {NodeStakerProxy}} /// Maps node IDs to NodeInfo access(self) var nodeInfo: {String: NodeInfo} @@ -121,7 +121,7 @@ access(all) contract StakingProxy { /// the node operator's NodeInfo to operate a node /// They store their `NodeStakerProxy` here to allow the node /// operator to perform some staking actions also - access(all) fun addStakingProxy(nodeID: String, proxy: AnyStruct{NodeStakerProxy}) { + access(all) fun addStakingProxy(nodeID: String, proxy: {NodeStakerProxy}) { pre { self.stakingProxies[nodeID] == nil } @@ -130,7 +130,7 @@ access(all) contract StakingProxy { /// The node operator can call the removeStakingProxy function /// to remove a staking proxy if it is no longer needed - access(all) fun removeStakingProxy(nodeID: String): AnyStruct{NodeStakerProxy} { + access(all) fun removeStakingProxy(nodeID: String): {NodeStakerProxy} { pre { self.stakingProxies[nodeID] != nil } @@ -140,7 +140,7 @@ access(all) contract StakingProxy { /// Borrow a "reference" to the staking proxy so staking operations /// can be performed with it - access(all) fun borrowStakingProxy(nodeID: String): AnyStruct{NodeStakerProxy}? { + access(all) fun borrowStakingProxy(nodeID: String): {NodeStakerProxy}? { return self.stakingProxies[nodeID] } } diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 825ffcfb7..39af12c6f 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -6,7 +6,7 @@ require ( github.com/kevinburke/go-bindata v3.23.0+incompatible github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230726183918-f90805445bfa github.com/onflow/flow-go-sdk v0.41.7-stable-cadence - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230726190453-ac7ed4798148 + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230726191152-4293bb676808 github.com/stretchr/testify v1.8.2 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index cd0234c65..fc4248fa0 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -928,6 +928,8 @@ github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230719151715-3bd6381cd54b github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230719151715-3bd6381cd54b/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230726190453-ac7ed4798148 h1:QgNBQSf7W6f9On0K0M71yr5pRTNAeFdN2uvHOZcSvJQ= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230726190453-ac7ed4798148/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230726191152-4293bb676808 h1:c/MMB0UoLks5XVV4QZfdbZLTQVcyGMJstob25E5ZVHY= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230726191152-4293bb676808/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow/protobuf/go/flow v0.2.2/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/sdks v0.5.0/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= From 9fd65f430aebd0ced26e37ad8ec0e72cc6851de3 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 26 Jul 2023 16:22:47 -0500 Subject: [PATCH 024/160] remove type restrictions --- contracts/FlowServiceAccount.cdc | 6 +++--- contracts/FlowStorageFees.cdc | 6 +++--- contracts/FlowToken.cdc | 10 +++++----- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/contracts/FlowServiceAccount.cdc b/contracts/FlowServiceAccount.cdc index 9b8daa5df..c4988658b 100644 --- a/contracts/FlowServiceAccount.cdc +++ b/contracts/FlowServiceAccount.cdc @@ -31,14 +31,14 @@ access(all) contract FlowServiceAccount { // Create a public capability to the Vault that only exposes // the deposit function through the Receiver interface - acct.link<&FlowToken.Vault{FungibleToken.Receiver}>( + acct.link<&FlowToken.Vault>( /public/flowTokenReceiver, target: /storage/flowTokenVault ) // Create a public capability to the Vault that only exposes // the balance field through the Balance interface - acct.link<&FlowToken.Vault{FungibleToken.Balance}>( + acct.link<&FlowToken.Vault>( /public/flowTokenBalance, target: /storage/flowTokenVault ) @@ -51,7 +51,7 @@ access(all) contract FlowServiceAccount { var balance = 0.0 if let balanceRef = acct .getCapability(/public/flowTokenBalance) - .borrow<&FlowToken.Vault{FungibleToken.Balance}>(){ + .borrow<&FlowToken.Vault>(){ balance = balanceRef.getBalance() } diff --git a/contracts/FlowStorageFees.cdc b/contracts/FlowStorageFees.cdc index 29d8cfaf5..3620440f4 100644 --- a/contracts/FlowStorageFees.cdc +++ b/contracts/FlowStorageFees.cdc @@ -66,7 +66,7 @@ access(all) contract FlowStorageFees { access(all) fun calculateAccountCapacity(_ accountAddress: Address): UFix64 { var balance = 0.0 if let balanceRef = getAccount(accountAddress) - .getCapability<&FlowToken.Vault{FungibleToken.Balance}>(/public/flowTokenBalance)! + .getCapability<&FlowToken.Vault>(/public/flowTokenBalance)! .borrow() { balance = balanceRef.getBalance() } @@ -93,7 +93,7 @@ access(all) contract FlowStorageFees { for accountAddress in accountAddresses { var balance = 0.0 if let balanceRef = getAccount(accountAddress) - .getCapability<&FlowToken.Vault{FungibleToken.Balance}>(/public/flowTokenBalance)! + .getCapability<&FlowToken.Vault>(/public/flowTokenBalance)! .borrow() { if accountAddress == payer { // if the account is the payer, deduct the maximum possible transaction fees from the balance @@ -157,7 +157,7 @@ access(all) contract FlowStorageFees { var balance = 0.0 if let balanceRef = acct .getCapability(/public/flowTokenBalance) - .borrow<&FlowToken.Vault{FungibleToken.Balance}>() { + .borrow<&FlowToken.Vault>() { balance = balanceRef.getBalance() } diff --git a/contracts/FlowToken.cdc b/contracts/FlowToken.cdc index b7a30c263..37b7ae98b 100644 --- a/contracts/FlowToken.cdc +++ b/contracts/FlowToken.cdc @@ -198,9 +198,9 @@ access(all) contract FlowToken: ViewResolver { receiverPath: /public/flowTokenReceiver, metadataPath: /public/flowTokenBalance, providerPath: /private/flowTokenVault, - receiverLinkedType: Type<&FlowToken.Vault{FungibleToken.Receiver, FungibleToken.Balance, ViewResolver.Resolver}>(), - metadataLinkedType: Type<&FlowToken.Vault{FungibleToken.Balance, ViewResolver.Resolver}>(), - providerLinkedType: Type<&FlowToken.Vault{FungibleToken.Provider}>(), + receiverLinkedType: Type<&FlowToken.Vault>(), + metadataLinkedType: Type<&FlowToken.Vault>(), + providerLinkedType: Type<&FlowToken.Vault>(), createEmptyVaultFunction: (fun (): @{FungibleToken.Vault} { return <-FlowToken.createEmptyVault() }) @@ -302,7 +302,7 @@ access(all) contract FlowToken: ViewResolver { // Create a public capability to the stored Vault that only exposes // the `deposit` method through the `Receiver` interface // - self.account.link<&FlowToken.Vault{FungibleToken.Receiver, FungibleToken.Balance, ViewResolver.Resolver}>( + self.account.link<&FlowToken.Vault>( /public/flowTokenReceiver, target: /storage/flowTokenVault ) @@ -310,7 +310,7 @@ access(all) contract FlowToken: ViewResolver { // Create a public capability to the stored Vault that only exposes // the `balance` field through the `Balance` interface // - self.account.link<&FlowToken.Vault{FungibleToken.Balance, ViewResolver.Resolver}>( + self.account.link<&FlowToken.Vault>( /public/flowTokenBalance, target: /storage/flowTokenVault ) From b977889db7f1f34ff4ac4ebbc5fd9c10fb3e19f4 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Thu, 27 Jul 2023 09:56:22 -0500 Subject: [PATCH 025/160] fix view modifiers in epoch contracts --- contracts/epochs/FlowClusterQC.cdc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/epochs/FlowClusterQC.cdc b/contracts/epochs/FlowClusterQC.cdc index a1599fa97..6c8647484 100644 --- a/contracts/epochs/FlowClusterQC.cdc +++ b/contracts/epochs/FlowClusterQC.cdc @@ -206,7 +206,7 @@ access(all) contract FlowClusterQC { /// The weight of the vote (and node) access(all) let weight: UInt64 - init(nodeID: String, clusterIndex: UInt16, voteWeight: UInt64) { + view init(nodeID: String, clusterIndex: UInt16, voteWeight: UInt64) { pre { nodeID.length == 64: "Voter ID must be a valid length node ID" } @@ -234,7 +234,7 @@ access(all) contract FlowClusterQC { /// The node IDs that correspond to each vote access(all) var voterIDs: [String] - init(index: UInt16, signatures: [String], message: String, voterIDs: [String]) { + view init(index: UInt16, signatures: [String], message: String, voterIDs: [String]) { self.index = index self.voteSignatures = signatures self.voteMessage = message From f16eaecc930a6635e65491ecb958d50c2b00b50b Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Thu, 27 Jul 2023 10:18:16 -0500 Subject: [PATCH 026/160] use setter methods in QC --- contracts/epochs/FlowClusterQC.cdc | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/contracts/epochs/FlowClusterQC.cdc b/contracts/epochs/FlowClusterQC.cdc index 6c8647484..2e0798716 100644 --- a/contracts/epochs/FlowClusterQC.cdc +++ b/contracts/epochs/FlowClusterQC.cdc @@ -195,10 +195,10 @@ access(all) contract FlowClusterQC { access(all) var nodeID: String /// The signed message from the node (using the nodes `stakingKey`) - access(all)var signature: String? + access(all) var signature: String? /// The hex-encoded message for the vote - access(all)var message: String? + access(all) var message: String? /// The index of the cluster that this vote (and node) is in access(all) let clusterIndex: UInt16 @@ -216,6 +216,14 @@ access(all) contract FlowClusterQC { self.clusterIndex = clusterIndex self.weight = voteWeight } + + pub fun setSignature(_ signature: String) { + self.signature = signature + } + + pub fun setMessage(_ message: String) { + self.message = message + } } /// Represents the quorum certificate for a specific cluster @@ -318,8 +326,8 @@ access(all) contract FlowClusterQC { let vote = cluster.getGeneratedVote(nodeId: self.nodeID)! // Set the signature and message fields - vote.signature = voteSignature - vote.message = voteMessage + vote.setSignature(voteSignature) + vote.setMessage(voteMessage) // Set the new total weight for the vote let totalWeight = cluster.getUniqueVoteMessageTotalWeight(vote: voteMessage) ?? 0 From 70bc6fdec851aaaf98aef86409f4d5fffa324ae0 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Thu, 27 Jul 2023 10:20:42 -0500 Subject: [PATCH 027/160] remove pub from QC --- contracts/epochs/FlowClusterQC.cdc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/epochs/FlowClusterQC.cdc b/contracts/epochs/FlowClusterQC.cdc index 2e0798716..9e178a58e 100644 --- a/contracts/epochs/FlowClusterQC.cdc +++ b/contracts/epochs/FlowClusterQC.cdc @@ -217,11 +217,11 @@ access(all) contract FlowClusterQC { self.weight = voteWeight } - pub fun setSignature(_ signature: String) { + access(all) fun setSignature(_ signature: String) { self.signature = signature } - pub fun setMessage(_ message: String) { + access(all) fun setMessage(_ message: String) { self.message = message } } From 57ec1603452812b6c799170fe3fe09d52fd963aa Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Thu, 27 Jul 2023 15:38:13 -0500 Subject: [PATCH 028/160] remove restricted types from flow epoch --- contracts/epochs/FlowEpoch.cdc | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index dac765337..ee2b9ae2a 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -675,36 +675,36 @@ access(all) contract FlowEpoch { } /// Borrow a reference to the FlowIDTableStaking Admin resource - access(contract) fun borrowStakingAdmin(): &FlowIDTableStaking.Admin{FlowIDTableStaking.EpochOperations} { + access(contract) view fun borrowStakingAdmin(): &FlowIDTableStaking.Admin { let adminCapability = self.account.copy(from: /storage/flowStakingAdminEpochOperations) ?? panic("Could not get capability from account storage") // borrow a reference to the staking admin object - let adminRef = adminCapability.borrow<&FlowIDTableStaking.Admin{FlowIDTableStaking.EpochOperations}>() + let adminRef = adminCapability.borrow<&FlowIDTableStaking.Admin>() ?? panic("Could not borrow reference to staking admin") return adminRef } /// Borrow a reference to the ClusterQCs Admin resource - access(contract) fun borrowClusterQCAdmin(): &FlowClusterQC.Admin{FlowClusterQC.EpochOperations} { + access(contract) fun borrowClusterQCAdmin(): &FlowClusterQC.Admin { let adminCapability = self.account.copy(from: /storage/flowQCAdminEpochOperations) ?? panic("Could not get capability from account storage") // borrow a reference to the QC admin object - let adminRef = adminCapability.borrow<&FlowClusterQC.Admin{FlowClusterQC.EpochOperations}>() + let adminRef = adminCapability.borrow<&FlowClusterQC.Admin>() ?? panic("Could not borrow reference to QC admin") return adminRef } /// Borrow a reference to the DKG Admin resource - access(contract) fun borrowDKGAdmin(): &FlowDKG.Admin{FlowDKG.EpochOperations} { + access(contract) fun borrowDKGAdmin(): &FlowDKG.Admin { let adminCapability = self.account.copy(from: /storage/flowDKGAdminEpochOperations) ?? panic("Could not get capability from account storage") // borrow a reference to the dkg admin object - let adminRef = adminCapability.borrow<&FlowDKG.Admin{FlowDKG.EpochOperations}>() + let adminRef = adminCapability.borrow<&FlowDKG.Admin>() ?? panic("Could not borrow reference to dkg admin") return adminRef @@ -876,30 +876,30 @@ access(all) contract FlowEpoch { // As a default, we store both the admin resources, and the capabilities linking to those resources, in the same account. // This ensures that this constructor produces a state which is compatible with the system chunk // so that newly created networks are functional without additional resource manipulation. - let stakingAdminCapability = self.account.link<&FlowIDTableStaking.Admin{FlowIDTableStaking.EpochOperations}>( + let stakingAdminCapability = self.account.link<&FlowIDTableStaking.Admin>( /private/flowStakingAdminEpochOperations, target: FlowIDTableStaking.StakingAdminStoragePath ) ?? panic("Could not link Flow staking admin capability") - self.account.save>(stakingAdminCapability, to: /storage/flowStakingAdminEpochOperations) + self.account.save>(stakingAdminCapability, to: /storage/flowStakingAdminEpochOperations) // Create a private capability to the qc admin // and store it in a different path - let qcAdminCapability = self.account.link<&FlowClusterQC.Admin{FlowClusterQC.EpochOperations}>( + let qcAdminCapability = self.account.link<&FlowClusterQC.Admin>( /private/flowQCAdminEpochOperations, target: FlowClusterQC.AdminStoragePath ) ?? panic("Could not link Flow QC admin capability") - self.account.save>(qcAdminCapability, to: /storage/flowQCAdminEpochOperations) + self.account.save>(qcAdminCapability, to: /storage/flowQCAdminEpochOperations) // Create a private capability to the dkg admin // and store it in a different path - let dkgAdminCapability = self.account.link<&FlowDKG.Admin{FlowDKG.EpochOperations}>( + let dkgAdminCapability = self.account.link<&FlowDKG.Admin>( /private/flowDKGAdminEpochOperations, target: FlowDKG.AdminStoragePath ) ?? panic("Could not link Flow DKG admin capability") - self.account.save>(dkgAdminCapability, to: /storage/flowDKGAdminEpochOperations) + self.account.save>(dkgAdminCapability, to: /storage/flowDKGAdminEpochOperations) self.borrowStakingAdmin().startStakingAuction() From 692c1cf4d51e9b95c008b29cfdc2978eba249d14 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Thu, 27 Jul 2023 16:45:14 -0500 Subject: [PATCH 029/160] use setters in FlowEpoch --- contracts/epochs/FlowEpoch.cdc | 40 +++++++++++++++++++++++++--------- 1 file changed, 30 insertions(+), 10 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index ee2b9ae2a..c50333f09 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -202,20 +202,40 @@ access(all) contract FlowEpoch { /// Metadata that is managed and can be changed by the Admin/// access(all) struct Config { /// The number of views in an entire epoch - access(all)var numViewsInEpoch: UInt64 + access(all) var numViewsInEpoch: UInt64 + + access(all) fun setNumViewsInEpoch(_ views: UInt64) { + self.numViewsInEpoch = views + } /// The number of views in the staking auction - access(all)var numViewsInStakingAuction: UInt64 + access(all) var numViewsInStakingAuction: UInt64 + + access(all) fun setNumViewsInStakingAuction(_ views: UInt64) { + self.numViewsInStakingAuction = views + } /// The number of views in each dkg phase - access(all)var numViewsInDKGPhase: UInt64 + access(all) var numViewsInDKGPhase: UInt64 + + access(all) fun setNumViewsInDKGPhase(_ views: UInt64) { + self.numViewsInDKGPhase = views + } /// The number of collector clusters in each epoch - access(all)var numCollectorClusters: UInt16 + access(all) var numCollectorClusters: UInt16 + + access(all) fun setNumCollectorClusters(_ numClusters: UInt64) { + self.numCollectorClusters = numClusters + } /// Tracks the rate at which the rewards payout increases every epoch /// This value is multiplied by the FLOW total supply to get the next payout - access(all)var FLOWsupplyIncreasePercentage: UFix64 + access(all) var FLOWsupplyIncreasePercentage: UFix64 + + access(all) fun setFLOWsupplyIncreasePercentage(_ percentage: UInt64) { + self.FLOWsupplyIncreasePercentage = percentage + } init(numViewsInEpoch: UInt64, numViewsInStakingAuction: UInt64, numViewsInDKGPhase: UInt64, numCollectorClusters: UInt16, FLOWsupplyIncreasePercentage: UFix64) { self.numViewsInEpoch = numViewsInEpoch @@ -291,7 +311,7 @@ access(all) contract FlowEpoch { newEpochViews): "New Epoch Views must be greater than the sum of staking and DKG Phase views" } - FlowEpoch.configurableMetadata.numViewsInEpoch = newEpochViews + FlowEpoch.configurableMetadata.setNumViewsInEpoch(newEpochViews) } access(all) fun updateAuctionViews(_ newAuctionViews: UInt64) { @@ -302,7 +322,7 @@ access(all) contract FlowEpoch { FlowEpoch.configurableMetadata.numViewsInEpoch): "Epoch Views must be greater than the sum of new staking and DKG Phase views" } - FlowEpoch.configurableMetadata.numViewsInStakingAuction = newAuctionViews + FlowEpoch.configurableMetadata.setNumViewsInStakingAuction(newAuctionViews) } access(all) fun updateDKGPhaseViews(_ newPhaseViews: UInt64) { @@ -313,7 +333,7 @@ access(all) contract FlowEpoch { FlowEpoch.configurableMetadata.numViewsInEpoch): "Epoch Views must be greater than the sum of staking and new DKG Phase views" } - FlowEpoch.configurableMetadata.numViewsInDKGPhase = newPhaseViews + FlowEpoch.configurableMetadata.setNumViewsInDKGPhase(newPhaseViews) } access(all) fun updateNumCollectorClusters(_ newNumClusters: UInt16) { @@ -321,7 +341,7 @@ access(all) contract FlowEpoch { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only update fields during the staking auction" } - FlowEpoch.configurableMetadata.numCollectorClusters = newNumClusters + FlowEpoch.configurableMetadata.setNumCollectorClusters(newNumClusters) } access(all) fun updateFLOWSupplyIncreasePercentage(_ newPercentage: UFix64) { @@ -330,7 +350,7 @@ access(all) contract FlowEpoch { newPercentage <= 1.0: "New value must be between zero and one" } - FlowEpoch.configurableMetadata.FLOWsupplyIncreasePercentage = newPercentage + FlowEpoch.configurableMetadata.setFLOWsupplyIncreasePercentage(newPercentage) } // Enable or disable automatic rewards calculations and payments From 47187b32e7cba9731031089d020a6cf4cae3c152 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Thu, 27 Jul 2023 16:47:24 -0500 Subject: [PATCH 030/160] correct metadata types --- contracts/epochs/FlowEpoch.cdc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index c50333f09..ba061fd67 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -225,7 +225,7 @@ access(all) contract FlowEpoch { /// The number of collector clusters in each epoch access(all) var numCollectorClusters: UInt16 - access(all) fun setNumCollectorClusters(_ numClusters: UInt64) { + access(all) fun setNumCollectorClusters(_ numClusters: UInt16) { self.numCollectorClusters = numClusters } @@ -233,7 +233,7 @@ access(all) contract FlowEpoch { /// This value is multiplied by the FLOW total supply to get the next payout access(all) var FLOWsupplyIncreasePercentage: UFix64 - access(all) fun setFLOWsupplyIncreasePercentage(_ percentage: UInt64) { + access(all) fun setFLOWsupplyIncreasePercentage(_ percentage: UFix64) { self.FLOWsupplyIncreasePercentage = percentage } From 1fc85362aa15b8e2b5c7b218c04b1a3d16e276a1 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Thu, 27 Jul 2023 16:52:11 -0500 Subject: [PATCH 031/160] use UInt64 in NodeVersionBeacon --- contracts/NodeVersionBeacon.cdc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/NodeVersionBeacon.cdc b/contracts/NodeVersionBeacon.cdc index 80c508a66..8c7c1154b 100644 --- a/contracts/NodeVersionBeacon.cdc +++ b/contracts/NodeVersionBeacon.cdc @@ -386,7 +386,7 @@ access(all) contract NodeVersionBeacon { /// Function that returns the version that was defined at the most /// recent block height boundary. May return zero boundary. access(all) fun getCurrentVersionBoundary(): VersionBoundary { - var current = 0 + var current: UInt64 = 0 // index is never 0 since version 0 is always in the past if let index = NodeVersionBeacon.firstUpcomingBoundary { From 02c11315174bb37ad1c50711b1ce5ecd32587f50 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 2 Aug 2023 14:50:34 -0500 Subject: [PATCH 032/160] replace addresses and fix transactions and scripts --- contracts/FlowFees.cdc | 2 +- contracts/FlowServiceAccount.cdc | 2 +- contracts/FlowStorageFees.cdc | 2 +- contracts/epochs/FlowEpoch.cdc | 4 +- .../testContracts/TestFlowIDTableStaking.cdc | 127 +- lib/go/contracts/contracts.go | 4 +- lib/go/templates/internal/assets/assets.go | 1835 ++++++++--------- lib/go/templates/manifest.mainnet.json | 643 +++--- lib/go/templates/manifest.testnet.json | 643 +++--- lib/go/templates/templates.go | 93 +- lib/go/test/flow_epoch_test.go | 308 +-- .../FlowServiceAccount/deposit_fees.cdc | 6 +- transactions/epoch/admin/advance_view.cdc | 6 +- .../epoch/admin/calculate_rewards.cdc | 6 +- transactions/epoch/admin/pay_rewards.cdc | 6 +- transactions/epoch/admin/reset_epoch.cdc | 6 +- .../epoch/node/register_dkg_participant.cdc | 10 +- transactions/epoch/node/register_node.cdc | 36 +- transactions/epoch/node/register_qc_voter.cdc | 10 +- .../epoch/scripts/get_create_clusters.cdc | 8 +- transactions/epoch/scripts/get_randomize.cdc | 6 +- transactions/flowToken/burn_tokens.cdc | 10 +- transactions/flowToken/create_forwarder.cdc | 25 +- transactions/flowToken/mint_tokens.cdc | 11 +- .../flowToken/scripts/get_balance.cdc | 7 +- transactions/flowToken/scripts/get_supply.cdc | 2 +- transactions/flowToken/setup_account.cdc | 30 +- transactions/flowToken/transfer_tokens.cdc | 13 +- .../delegation/del_request_unstaking.cdc | 4 +- .../delegation/del_stake_new_tokens.cdc | 8 +- .../delegation/del_stake_rewarded.cdc | 4 +- .../delegation/del_stake_unstaked.cdc | 4 +- .../delegation/del_withdraw_reward_tokens.cdc | 6 +- .../del_withdraw_unstaked_tokens.cdc | 6 +- .../delegation/delegator_add_capability.cdc | 22 + .../delegation/register_delegator.cdc | 10 +- .../node/node_add_capability.cdc | 22 + .../node/register_many_nodes.cdc | 6 +- .../idTableStaking/node/register_node.cdc | 20 +- .../idTableStaking/node/request_unstake.cdc | 9 +- .../idTableStaking/node/stake_new_tokens.cdc | 13 +- .../node/stake_rewarded_tokens.cdc | 9 +- .../node/stake_unstaked_tokens.cdc | 9 +- .../idTableStaking/node/unstake_all.cdc | 9 +- .../node/update_networking_address.cdc | 8 +- .../node/withdraw_reward_tokens.cdc | 11 +- .../node/withdraw_unstaked_tokens.cdc | 11 +- .../admin/admin_create_shared_accounts.cdc | 68 +- ...tody_create_account_with_lease_account.cdc | 82 +- .../custody_create_only_lease_account.cdc | 80 +- .../custody_create_only_shared_account.cdc | 70 +- .../admin/custody_create_shared_accounts.cdc | 74 +- .../admin/deposit_locked_tokens.cdc | 13 +- .../admin/get_unlocking_bad_accounts.cdc | 17 + .../delegator/delegate_new_tokens.cdc | 12 +- .../delegator/get_delegator_info.cdc | 14 +- .../delegator/register_delegator.cdc | 12 +- .../delegator/withdraw_rewarded_tokens.cdc | 11 +- .../lockedTokens/staker/get_staker_info.cdc | 14 +- .../lockedTokens/staker/register_node.cdc | 22 +- .../lockedTokens/staker/stake_new_tokens.cdc | 15 +- .../staker/withdraw_rewarded_tokens.cdc | 11 +- .../lockedTokens/user/deposit_tokens.cdc | 12 +- .../lockedTokens/user/get_total_balance.cdc | 24 +- .../lockedTokens/user/withdraw_tokens.cdc | 14 +- .../create_new_tokenholder_acct.cdc | 70 +- .../stakingCollection/restake_all_stakers.cdc | 8 +- .../scripts/get_all_delegator_info.cdc | 2 +- .../scripts/get_all_node_info.cdc | 2 +- .../scripts/get_does_stake_exist.cdc | 2 +- .../setup_staking_collection.cdc | 52 +- .../stakingCollection/test/deposit_tokens.cdc | 10 +- .../stakingCollection/test/get_tokens.cdc | 8 +- 73 files changed, 2259 insertions(+), 2512 deletions(-) create mode 100644 transactions/idTableStaking/delegation/delegator_add_capability.cdc create mode 100644 transactions/idTableStaking/node/node_add_capability.cdc create mode 100644 transactions/lockedTokens/admin/get_unlocking_bad_accounts.cdc diff --git a/contracts/FlowFees.cdc b/contracts/FlowFees.cdc index 7360cb661..1647d5d9d 100644 --- a/contracts/FlowFees.cdc +++ b/contracts/FlowFees.cdc @@ -1,5 +1,5 @@ import FungibleToken from "FungibleToken" -import FlowToken from 0xFLOWTOKENADDRESS +import FlowToken from "FlowToken" import FlowStorageFees from 0xFLOWSTORAGEFEESADDRESS access(all) contract FlowFees { diff --git a/contracts/FlowServiceAccount.cdc b/contracts/FlowServiceAccount.cdc index c4988658b..706df682a 100644 --- a/contracts/FlowServiceAccount.cdc +++ b/contracts/FlowServiceAccount.cdc @@ -1,5 +1,5 @@ import FungibleToken from "FungibleToken" -import FlowToken from 0xFLOWTOKENADDRESS +import FlowToken from "FlowToken" import FlowFees from 0xFLOWFEESADDRESS import FlowStorageFees from 0xFLOWSTORAGEFEESADDRESS diff --git a/contracts/FlowStorageFees.cdc b/contracts/FlowStorageFees.cdc index 3620440f4..63b389a9b 100644 --- a/contracts/FlowStorageFees.cdc +++ b/contracts/FlowStorageFees.cdc @@ -15,7 +15,7 @@ */ import FungibleToken from "FungibleToken" -import FlowToken from 0xFLOWTOKENADDRESS +import FlowToken from "FlowToken" access(all) contract FlowStorageFees { diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index ba061fd67..ddd95d5aa 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -1,6 +1,6 @@ import FungibleToken from "FungibleToken" -import FlowToken from 0xFLOWTOKENADDRESS -import FlowIDTableStaking from 0xFLOWIDTABLESTAKINGADDRESS +import FlowToken from "FlowToken" +import FlowIDTableStaking from "FlowIDTableStaking" import FlowClusterQC from 0xQCADDRESS import FlowDKG from 0xDKGADDRESS import FlowFees from 0xFLOWFEESADDRESS diff --git a/contracts/testContracts/TestFlowIDTableStaking.cdc b/contracts/testContracts/TestFlowIDTableStaking.cdc index b3b948506..8ecf63376 100644 --- a/contracts/testContracts/TestFlowIDTableStaking.cdc +++ b/contracts/testContracts/TestFlowIDTableStaking.cdc @@ -9,19 +9,18 @@ import FungibleToken from "FungibleToken" import FlowToken from "FlowToken" -// import Burner from "Burner" -access(all) contract FlowIDTableStaking { +pub contract FlowIDTableStaking { /*********** ID Table and Staking Composite Type Definitions *************/ /// Contains information that is specific to a node in Flow /// only lives in this contract - access(all) resource NodeRecord { + pub resource NodeRecord { /// The unique ID of the node /// Set when the node is created - access(all) let id: String + pub let id: String /// The type of node: /// 1 = collection @@ -29,16 +28,16 @@ access(all) contract FlowIDTableStaking { /// 3 = execution /// 4 = verification /// 5 = access - access(all) var role: UInt8 + pub var role: UInt8 /// The address used for networking - access(all) var networkingAddress: String + pub(set) var networkingAddress: String /// the public key for networking - access(all) var networkingKey: String + pub(set) var networkingKey: String /// the public key for staking - access(all) var stakingKey: String + pub(set) var stakingKey: String init( id: String, @@ -46,7 +45,7 @@ access(all) contract FlowIDTableStaking { networkingAddress: String, networkingKey: String, stakingKey: String, - tokensCommitted: @{FungibleToken.Vault} + tokensCommitted: @FungibleToken.Vault ) { self.id = id @@ -60,24 +59,24 @@ access(all) contract FlowIDTableStaking { } // Struct to create to get read-only info about a node - access(all) struct NodeInfo { - access(all) let id: String - access(all) let role: UInt8 - access(all) let networkingAddress: String - access(all) let networkingKey: String - access(all) let stakingKey: String - access(all) let tokensStaked: UFix64 - access(all) let totalTokensStaked: UFix64 - access(all) let tokensCommitted: UFix64 - access(all) let tokensUnstaking: UFix64 - access(all) let tokensUnstaked: UFix64 - access(all) let tokensRewarded: UFix64 + pub struct NodeInfo { + pub let id: String + pub let role: UInt8 + pub let networkingAddress: String + pub let networkingKey: String + pub let stakingKey: String + pub let tokensStaked: UFix64 + pub let totalTokensStaked: UFix64 + pub let tokensCommitted: UFix64 + pub let tokensUnstaking: UFix64 + pub let tokensUnstaked: UFix64 + pub let tokensRewarded: UFix64 /// list of delegator IDs for this node operator - access(all) let delegators: [UInt32] - access(all) let delegatorIDCounter: UInt32 - access(all) let tokensRequestedToUnstake: UFix64 - access(all) let initialWeight: UInt64 + pub let delegators: [UInt32] + pub let delegatorIDCounter: UInt32 + pub let tokensRequestedToUnstake: UFix64 + pub let initialWeight: UInt64 init(nodeID: String) { @@ -99,55 +98,53 @@ access(all) contract FlowIDTableStaking { } } - access(all) entitlement NodeOperator - /// Resource that the node operator controls for staking - access(all) resource NodeStaker { + pub resource NodeStaker { /// Unique ID for the node operator - access(all) let id: String + pub let id: String init(id: String) { self.id = id } - access(NodeOperator) fun updateNetworkingAddress(_ newAddress: String) { + pub fun updateNetworkingAddress(_ newAddress: String) { } /// Add new tokens to the system to stake during the next epoch - access(NodeOperator) fun stakeNewTokens(_ tokens: @{FungibleToken.Vault}) { + pub fun stakeNewTokens(_ tokens: @FungibleToken.Vault) { destroy tokens } /// Stake tokens that are in the tokensUnstaked bucket /// but haven't been officially staked - access(NodeOperator) fun stakeUnstakedTokens(amount: UFix64) { + pub fun stakeUnstakedTokens(amount: UFix64) { } /// Stake tokens that are in the tokensRewarded bucket /// but haven't been officially staked - access(NodeOperator) fun stakeRewardedTokens(amount: UFix64) { + pub fun stakeRewardedTokens(amount: UFix64) { } /// Request amount tokens to be removed from staking /// at the end of the next epoch - access(NodeOperator) fun requestUnstaking(amount: UFix64) { + pub fun requestUnstaking(amount: UFix64) { } /// Requests to unstake all of the node operators staked and committed tokens, /// as well as all the staked and committed tokens of all of their delegators - access(NodeOperator) fun unstakeAll() { + pub fun unstakeAll() { } /// Withdraw tokens from the unstaked bucket - access(NodeOperator) fun withdrawUnstakedTokens(amount: UFix64): @{FungibleToken.Vault} { - let flowTokenMinter = FlowIDTableStaking.account.storage.borrow<&FlowToken.Minter>(from: /storage/flowTokenMinter) + pub fun withdrawUnstakedTokens(amount: UFix64): @FungibleToken.Vault { + let flowTokenMinter = FlowIDTableStaking.account.borrow<&FlowToken.Minter>(from: /storage/flowTokenMinter) ?? panic("Could not borrow minter reference") return <- flowTokenMinter.mintTokens(amount: amount) @@ -155,8 +152,8 @@ access(all) contract FlowIDTableStaking { } /// Withdraw tokens from the rewarded bucket - access(NodeOperator) fun withdrawRewardedTokens(amount: UFix64): @{FungibleToken.Vault} { - let flowTokenMinter = FlowIDTableStaking.account.storage.borrow<&FlowToken.Minter>(from: /storage/flowTokenMinter) + pub fun withdrawRewardedTokens(amount: UFix64): @FungibleToken.Vault { + let flowTokenMinter = FlowIDTableStaking.account.borrow<&FlowToken.Minter>(from: /storage/flowTokenMinter) ?? panic("Could not borrow minter reference") return <- flowTokenMinter.mintTokens(amount: amount) @@ -164,18 +161,16 @@ access(all) contract FlowIDTableStaking { } - access(all) entitlement DelegatorOwner - - access(all) struct DelegatorInfo { + pub struct DelegatorInfo { - access(all) let id: UInt32 - access(all) let nodeID: String - access(all) let tokensCommitted: UFix64 - access(all) let tokensStaked: UFix64 - access(all) let tokensUnstaking: UFix64 - access(all) let tokensRewarded: UFix64 - access(all) let tokensUnstaked: UFix64 - access(all) let tokensRequestedToUnstake: UFix64 + pub let id: UInt32 + pub let nodeID: String + pub let tokensCommitted: UFix64 + pub let tokensStaked: UFix64 + pub let tokensUnstaking: UFix64 + pub let tokensRewarded: UFix64 + pub let tokensUnstaked: UFix64 + pub let tokensRequestedToUnstake: UFix64 init(nodeID: String, delegatorID: UInt32) { @@ -193,13 +188,13 @@ access(all) contract FlowIDTableStaking { /// Resource object that the delegator stores in their account /// to perform staking actions - access(all) resource NodeDelegator { + pub resource NodeDelegator { /// Each delegator for a node operator has a unique ID - access(all) let id: UInt32 + pub let id: UInt32 /// The ID of the node operator that this delegator delegates to - access(all) let nodeID: String + pub let nodeID: String init(id: UInt32, nodeID: String) { self.id = id @@ -207,37 +202,37 @@ access(all) contract FlowIDTableStaking { } /// Delegate new tokens to the node operator - access(DelegatorOwner) fun delegateNewTokens(from: @{FungibleToken.Vault}) { + pub fun delegateNewTokens(from: @FungibleToken.Vault) { destroy from } /// Delegate tokens from the unstaked bucket to the node operator - access(DelegatorOwner) fun delegateUnstakedTokens(amount: UFix64) { + pub fun delegateUnstakedTokens(amount: UFix64) { } /// Delegate tokens from the rewards bucket to the node operator - access(DelegatorOwner) fun delegateRewardedTokens(amount: UFix64) { + pub fun delegateRewardedTokens(amount: UFix64) { } /// Request to unstake delegated tokens during the next epoch - access(DelegatorOwner) fun requestUnstaking(amount: UFix64) { + pub fun requestUnstaking(amount: UFix64) { } /// Withdraw tokens from the unstaked bucket - access(DelegatorOwner) fun withdrawUnstakedTokens(amount: UFix64): @{FungibleToken.Vault} { - let flowTokenMinter = FlowIDTableStaking.account.storage.borrow<&FlowToken.Minter>(from: /storage/flowTokenMinter) + pub fun withdrawUnstakedTokens(amount: UFix64): @FungibleToken.Vault { + let flowTokenMinter = FlowIDTableStaking.account.borrow<&FlowToken.Minter>(from: /storage/flowTokenMinter) ?? panic("Could not borrow minter reference") return <- flowTokenMinter.mintTokens(amount: amount) } /// Withdraw tokens from the rewarded bucket - access(DelegatorOwner) fun withdrawRewardedTokens(amount: UFix64): @{FungibleToken.Vault} { - let flowTokenMinter = FlowIDTableStaking.account.storage.borrow<&FlowToken.Minter>(from: /storage/flowTokenMinter) + pub fun withdrawRewardedTokens(amount: UFix64): @FungibleToken.Vault { + let flowTokenMinter = FlowIDTableStaking.account.borrow<&FlowToken.Minter>(from: /storage/flowTokenMinter) ?? panic("Could not borrow minter reference") return <- flowTokenMinter.mintTokens(amount: amount) @@ -247,13 +242,13 @@ access(all) contract FlowIDTableStaking { /// Any node can call this function to register a new Node /// It returns the resource for nodes that they can store in /// their account storage - access(all) fun addNodeRecord( + pub fun addNodeRecord( id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, - tokensCommitted: @{FungibleToken.Vault} + tokensCommitted: @FungibleToken.Vault ): @NodeStaker { destroy tokensCommitted @@ -262,7 +257,7 @@ access(all) contract FlowIDTableStaking { } - access(all) fun registerNewDelegator(nodeID: String, tokensCommitted: @{FungibleToken.Vault}): @NodeDelegator { + pub fun registerNewDelegator(nodeID: String, tokensCommitted: @FungibleToken.Vault): @NodeDelegator { destroy tokensCommitted @@ -270,8 +265,8 @@ access(all) contract FlowIDTableStaking { } /// Gets the minimum stake requirement for delegators - access(all) fun getDelegatorMinimumStakeRequirement(): UFix64 { - return self.account.storage.copy(from: /storage/delegatorStakingMinimum) + pub fun getDelegatorMinimumStakeRequirement(): UFix64 { + return self.account.copy(from: /storage/delegatorStakingMinimum) ?? 0.0 } diff --git a/lib/go/contracts/contracts.go b/lib/go/contracts/contracts.go index 554667bdf..d5b770287 100644 --- a/lib/go/contracts/contracts.go +++ b/lib/go/contracts/contracts.go @@ -50,8 +50,8 @@ const ( placeholderFungibleTokenMVAddress = "\"FungibleTokenMetadataViews\"" placeholderMetadataViewsAddress = "\"MetadataViews\"" placeholderViewResolverAddress = "\"ViewResolver\"" - placeholderFlowTokenAddress = "0xFLOWTOKENADDRESS" - placeholderIDTableAddress = "0xFLOWIDTABLESTAKINGADDRESS" + placeholderFlowTokenAddress = "\"FlowToken\"" + placeholderIDTableAddress = "\"FlowIDTableStaking\"" placeholderStakingProxyAddress = "0xSTAKINGPROXYADDRESS" placeholderQCAddr = "0xQCADDRESS" placeholderDKGAddr = "0xDKGADDRESS" diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 53592a2a8..a854da1fb 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -1,139 +1,133 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: -// FlowServiceAccount/add_account_creator.cdc (588B) -// FlowServiceAccount/deposit_fees.cdc (871B) -// FlowServiceAccount/remove_account_creator.cdc (590B) +// FlowServiceAccount/add_account_creator.cdc (565B) +// FlowServiceAccount/deposit_fees.cdc (859B) +// FlowServiceAccount/remove_account_creator.cdc (567B) // FlowServiceAccount/scripts/get_account_creators.cdc (141B) // FlowServiceAccount/scripts/get_account_fee.cdc (136B) // FlowServiceAccount/scripts/get_execution_effort_weights.cdc (155B) // FlowServiceAccount/scripts/get_execution_memory_limit.cdc (143B) // FlowServiceAccount/scripts/get_execution_memory_weights.cdc (155B) -// FlowServiceAccount/scripts/get_fees_balance.cdc (103B) +// FlowServiceAccount/scripts/get_fees_balance.cdc (110B) // FlowServiceAccount/scripts/get_is_account_creation_restricted.cdc (145B) // FlowServiceAccount/scripts/get_is_account_creator.cdc (157B) -// FlowServiceAccount/scripts/get_tx_fee_parameters.cdc (122B) -// FlowServiceAccount/set_execution_effort_weights.cdc (1.663kB) -// FlowServiceAccount/set_execution_memory_limit.cdc (287B) -// FlowServiceAccount/set_execution_memory_weights.cdc (315B) -// FlowServiceAccount/set_is_account_creation_restricted.cdc (609B) -// FlowServiceAccount/set_tx_fee_parameters.cdc (622B) -// FlowServiceAccount/set_tx_fee_surge_factor.cdc (481B) -// accounts/add_key.cdc (713B) -// accounts/create_new_account.cdc (768B) -// accounts/revoke_key.cdc (263B) -// dkg/admin/force_stop_dkg.cdc (350B) -// dkg/admin/publish_participant.cdc (314B) -// dkg/admin/set_safe_threshold.cdc (441B) -// dkg/admin/start_dkg.cdc (382B) -// dkg/admin/stop_dkg.cdc (345B) -// dkg/create_participant.cdc (442B) -// dkg/scripts/get_consensus_nodes.cdc (108B) -// dkg/scripts/get_dkg_canonical_final_submission.cdc (103B) -// dkg/scripts/get_dkg_completed.cdc (104B) -// dkg/scripts/get_dkg_enabled.cdc (93B) -// dkg/scripts/get_final_submissions.cdc (111B) -// dkg/scripts/get_latest_whiteboard_messages.cdc (335B) -// dkg/scripts/get_node_final_submission.cdc (133B) -// dkg/scripts/get_node_has_submitted.cdc (121B) -// dkg/scripts/get_node_is_claimed.cdc (223B) -// dkg/scripts/get_node_is_registered.cdc (128B) -// dkg/scripts/get_submissions_count.cdc (111B) -// dkg/scripts/get_thresholds.cdc (445B) -// dkg/scripts/get_whiteboard_messages.cdc (120B) -// dkg/send_final_submission.cdc (429B) -// dkg/send_whiteboard_message.cdc (412B) -// epoch/admin/advance_view.cdc (667B) -// epoch/admin/calculate_rewards.cdc (379B) -// epoch/admin/deploy_epoch.cdc (1.192kB) -// epoch/admin/deploy_qc_dkg.cdc (310B) -// epoch/admin/pay_rewards.cdc (497B) -// epoch/admin/reset_epoch.cdc (1.666kB) -// epoch/admin/set_automatic_rewards.cdc (376B) -// epoch/admin/set_bonus_tokens.cdc (624B) -// epoch/admin/update_clusters.cdc (358B) -// epoch/admin/update_dkg_phase_views.cdc (348B) -// epoch/admin/update_epoch_config.cdc (1.775kB) -// epoch/admin/update_epoch_timing_config.cdc (503B) -// epoch/admin/update_epoch_views.cdc (349B) -// epoch/admin/update_reward.cdc (361B) -// epoch/admin/update_staking_views.cdc (351B) -// epoch/node/register_dkg_participant.cdc (550B) -// epoch/node/register_node.cdc (3.104kB) -// epoch/node/register_qc_voter.cdc (548B) -// epoch/scripts/get_bonus_tokens.cdc (108B) -// epoch/scripts/get_config_metadata.cdc (121B) +// FlowServiceAccount/scripts/get_tx_fee_parameters.cdc (129B) +// FlowServiceAccount/set_execution_effort_weights.cdc (1.636kB) +// FlowServiceAccount/set_execution_memory_limit.cdc (260B) +// FlowServiceAccount/set_execution_memory_weights.cdc (288B) +// FlowServiceAccount/set_is_account_creation_restricted.cdc (586B) +// FlowServiceAccount/set_tx_fee_parameters.cdc (606B) +// FlowServiceAccount/set_tx_fee_surge_factor.cdc (465B) +// dkg/admin/force_stop_dkg.cdc (334B) +// dkg/admin/publish_participant.cdc (224B) +// dkg/admin/set_safe_threshold.cdc (425B) +// dkg/admin/start_dkg.cdc (366B) +// dkg/admin/stop_dkg.cdc (329B) +// dkg/create_participant.cdc (427B) +// dkg/scripts/get_consensus_nodes.cdc (111B) +// dkg/scripts/get_dkg_canonical_final_submission.cdc (106B) +// dkg/scripts/get_dkg_completed.cdc (107B) +// dkg/scripts/get_dkg_enabled.cdc (96B) +// dkg/scripts/get_final_submissions.cdc (114B) +// dkg/scripts/get_latest_whiteboard_messages.cdc (338B) +// dkg/scripts/get_node_final_submission.cdc (136B) +// dkg/scripts/get_node_has_submitted.cdc (124B) +// dkg/scripts/get_node_is_claimed.cdc (226B) +// dkg/scripts/get_node_is_registered.cdc (131B) +// dkg/scripts/get_thresholds.cdc (448B) +// dkg/scripts/get_whiteboard_messages.cdc (123B) +// dkg/send_final_submission.cdc (412B) +// dkg/send_whiteboard_message.cdc (395B) +// epoch/admin/advance_view.cdc (647B) +// epoch/admin/calculate_rewards.cdc (359B) +// epoch/admin/deploy_epoch.cdc (1.173kB) +// epoch/admin/deploy_qc_dkg.cdc (295B) +// epoch/admin/pay_rewards.cdc (477B) +// epoch/admin/reset_epoch.cdc (1.646kB) +// epoch/admin/set_automatic_rewards.cdc (356B) +// epoch/admin/set_bonus_tokens.cdc (597B) +// epoch/admin/update_clusters.cdc (338B) +// epoch/admin/update_dkg_phase_views.cdc (328B) +// epoch/admin/update_epoch_config.cdc (1.755kB) +// epoch/admin/update_epoch_views.cdc (329B) +// epoch/admin/update_reward.cdc (342B) +// epoch/admin/update_staking_views.cdc (331B) +// epoch/node/register_dkg_participant.cdc (529B) +// epoch/node/register_node.cdc (3kB) +// epoch/node/register_qc_voter.cdc (520B) +// epoch/scripts/get_bonus_tokens.cdc (110B) +// epoch/scripts/get_config_metadata.cdc (123B) // epoch/scripts/get_create_clusters.cdc (205B) -// epoch/scripts/get_current_view.cdc (147B) -// epoch/scripts/get_epoch_counter.cdc (110B) -// epoch/scripts/get_epoch_metadata.cdc (159B) -// epoch/scripts/get_epoch_phase.cdc (116B) -// epoch/scripts/get_epoch_timing_config.cdc (134B) -// epoch/scripts/get_proposed_counter.cdc (113B) -// epoch/scripts/get_randomize.cdc (125B) -// epoch/scripts/get_target_end_time_for_epoch.cdc (263B) -// flowToken/burn_tokens.cdc (1.097kB) -// flowToken/create_forwarder.cdc (1.944kB) -// flowToken/mint_tokens.cdc (985B) -// flowToken/scripts/get_balance.cdc (386B) -// flowToken/scripts/get_supply.cdc (193B) -// flowToken/setup_account.cdc (1.315kB) -// flowToken/transfer_tokens.cdc (1.295kB) -// idTableStaking/admin/add_approved_and_limits.cdc (1.635kB) -// idTableStaking/admin/add_approved_nodes.cdc (1.055kB) -// idTableStaking/admin/capability_end_epoch.cdc (1.374kB) -// idTableStaking/admin/change_candidate_limits.cdc (727B) -// idTableStaking/admin/change_cut.cdc (665B) -// idTableStaking/admin/change_del_minimums.cdc (690B) -// idTableStaking/admin/change_minimums.cdc (818B) -// idTableStaking/admin/change_payout.cdc (625B) -// idTableStaking/admin/end_epoch.cdc (913B) -// idTableStaking/admin/end_epoch_change_payout.cdc (979B) -// idTableStaking/admin/end_staking.cdc (698B) -// idTableStaking/admin/move_tokens.cdc (598B) -// idTableStaking/admin/pay_rewards.cdc (686B) -// idTableStaking/admin/remove_approved_nodes.cdc (1.011kB) -// idTableStaking/admin/remove_invalid_nodes.cdc (697B) -// idTableStaking/admin/remove_node.cdc (629B) -// idTableStaking/admin/scale_rewards_test.cdc (713B) -// idTableStaking/admin/set_approved_nodes.cdc (628B) -// idTableStaking/admin/set_claimed.cdc (633B) -// idTableStaking/admin/set_node_weight.cdc (650B) -// idTableStaking/admin/set_non_operational.cdc (785B) -// idTableStaking/admin/set_open_access_node_slots.cdc (936B) -// idTableStaking/admin/set_slot_limits.cdc (1.572kB) -// idTableStaking/admin/start_staking.cdc (597B) -// idTableStaking/admin/transfer_admin.cdc (658B) -// idTableStaking/admin/transfer_fees_admin.cdc (444B) -// idTableStaking/admin/transfer_minter_deploy.cdc (1.344kB) -// idTableStaking/admin/upgrade_set_claimed.cdc (691B) -// idTableStaking/admin/upgrade_staking.cdc (159B) -// idTableStaking/delegation/del_request_unstaking.cdc (670B) -// idTableStaking/delegation/del_stake_new_tokens.cdc (1.044kB) -// idTableStaking/delegation/del_stake_rewarded.cdc (676B) -// idTableStaking/delegation/del_stake_unstaked.cdc (676B) -// idTableStaking/delegation/del_withdraw_reward_tokens.cdc (952B) -// idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc (952B) +// epoch/scripts/get_current_view.cdc (146B) +// epoch/scripts/get_epoch_counter.cdc (113B) +// epoch/scripts/get_epoch_metadata.cdc (162B) +// epoch/scripts/get_epoch_phase.cdc (119B) +// epoch/scripts/get_proposed_counter.cdc (116B) +// epoch/scripts/get_randomize.cdc (129B) +// flowToken/burn_tokens.cdc (1.104kB) +// flowToken/create_forwarder.cdc (1.805kB) +// flowToken/mint_tokens.cdc (1.012kB) +// flowToken/scripts/get_balance.cdc (447B) +// flowToken/scripts/get_supply.cdc (208B) +// flowToken/setup_account.cdc (1.137kB) +// flowToken/transfer_tokens.cdc (1.324kB) +// idTableStaking/admin/add_approved_and_limits.cdc (1.604kB) +// idTableStaking/admin/add_approved_nodes.cdc (1.032kB) +// idTableStaking/admin/capability_end_epoch.cdc (1.299kB) +// idTableStaking/admin/change_candidate_limits.cdc (704B) +// idTableStaking/admin/change_cut.cdc (642B) +// idTableStaking/admin/change_del_minimums.cdc (667B) +// idTableStaking/admin/change_minimums.cdc (795B) +// idTableStaking/admin/change_payout.cdc (602B) +// idTableStaking/admin/end_epoch.cdc (872B) +// idTableStaking/admin/end_epoch_change_payout.cdc (938B) +// idTableStaking/admin/end_staking.cdc (675B) +// idTableStaking/admin/move_tokens.cdc (557B) +// idTableStaking/admin/pay_rewards.cdc (627B) +// idTableStaking/admin/remove_approved_nodes.cdc (988B) +// idTableStaking/admin/remove_invalid_nodes.cdc (652B) +// idTableStaking/admin/remove_node.cdc (606B) +// idTableStaking/admin/scale_rewards_test.cdc (716B) +// idTableStaking/admin/set_approved_nodes.cdc (605B) +// idTableStaking/admin/set_claimed.cdc (610B) +// idTableStaking/admin/set_node_weight.cdc (627B) +// idTableStaking/admin/set_non_operational.cdc (762B) +// idTableStaking/admin/set_slot_limits.cdc (1.312kB) +// idTableStaking/admin/start_staking.cdc (574B) +// idTableStaking/admin/transfer_admin.cdc (728B) +// idTableStaking/admin/transfer_fees_admin.cdc (409B) +// idTableStaking/admin/transfer_minter_deploy.cdc (1.294kB) +// idTableStaking/admin/upgrade_set_claimed.cdc (666B) +// idTableStaking/admin/upgrade_staking.cdc (156B) +// idTableStaking/delegation/del_request_unstaking.cdc (647B) +// idTableStaking/delegation/del_stake_new_tokens.cdc (1.021kB) +// idTableStaking/delegation/del_stake_rewarded.cdc (653B) +// idTableStaking/delegation/del_stake_unstaked.cdc (653B) +// idTableStaking/delegation/del_withdraw_reward_tokens.cdc (921B) +// idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc (921B) +// idTableStaking/delegation/delegator_add_capability.cdc (735B) // idTableStaking/delegation/get_delegator_committed.cdc (321B) // idTableStaking/delegation/get_delegator_info.cdc (299B) -// idTableStaking/delegation/get_delegator_info_from_address.cdc (505B) +// idTableStaking/delegation/get_delegator_info_from_address.cdc (517B) // idTableStaking/delegation/get_delegator_request.cdc (330B) // idTableStaking/delegation/get_delegator_rewarded.cdc (319B) // idTableStaking/delegation/get_delegator_staked.cdc (315B) // idTableStaking/delegation/get_delegator_unstaked.cdc (319B) // idTableStaking/delegation/get_delegator_unstaking.cdc (321B) // idTableStaking/delegation/get_delegator_unstaking_request.cdc (330B) -// idTableStaking/delegation/register_delegator.cdc (981B) -// idTableStaking/delegation/register_many_delegators.cdc (684B) -// idTableStaking/node/register_many_nodes.cdc (1.171kB) -// idTableStaking/node/register_node.cdc (1.651kB) -// idTableStaking/node/request_unstake.cdc (644B) -// idTableStaking/node/stake_new_tokens.cdc (1.008kB) -// idTableStaking/node/stake_rewarded_tokens.cdc (647B) -// idTableStaking/node/stake_unstaked_tokens.cdc (626B) -// idTableStaking/node/unstake_all.cdc (608B) -// idTableStaking/node/update_networking_address.cdc (650B) -// idTableStaking/node/withdraw_reward_tokens.cdc (922B) -// idTableStaking/node/withdraw_unstaked_tokens.cdc (922B) +// idTableStaking/delegation/register_delegator.cdc (860B) +// idTableStaking/delegation/register_many_delegators.cdc (628B) +// idTableStaking/node/node_add_capability.cdc (740B) +// idTableStaking/node/register_many_nodes.cdc (1.148kB) +// idTableStaking/node/register_node.cdc (1.488kB) +// idTableStaking/node/request_unstake.cdc (623B) +// idTableStaking/node/stake_new_tokens.cdc (987B) +// idTableStaking/node/stake_rewarded_tokens.cdc (626B) +// idTableStaking/node/stake_unstaked_tokens.cdc (605B) +// idTableStaking/node/unstake_all.cdc (587B) +// idTableStaking/node/update_networking_address.cdc (628B) +// idTableStaking/node/withdraw_reward_tokens.cdc (893B) +// idTableStaking/node/withdraw_unstaked_tokens.cdc (893B) // idTableStaking/scripts/get_approved_but_not_staked_nodes.cdc (670B) // idTableStaking/scripts/get_approved_nodes.cdc (289B) // idTableStaking/scripts/get_candidate_limits.cdc (271B) @@ -144,7 +138,7 @@ // idTableStaking/scripts/get_delegators_below_min.cdc (1.966kB) // idTableStaking/scripts/get_node_committed_tokens.cdc (263B) // idTableStaking/scripts/get_node_info.cdc (240B) -// idTableStaking/scripts/get_node_info_from_address.cdc (471B) +// idTableStaking/scripts/get_node_info_from_address.cdc (483B) // idTableStaking/scripts/get_node_initial_weight.cdc (251B) // idTableStaking/scripts/get_node_networking_addr.cdc (259B) // idTableStaking/scripts/get_node_networking_key.cdc (251B) @@ -167,134 +161,131 @@ // idTableStaking/scripts/get_total_staked.cdc (463B) // idTableStaking/scripts/get_total_staked_by_type.cdc (256B) // idTableStaking/scripts/get_weekly_payout.cdc (202B) -// lockedTokens/admin/admin_create_shared_accounts.cdc (3.987kB) -// lockedTokens/admin/admin_deploy_contract.cdc (463B) -// lockedTokens/admin/admin_deposit_account_creator.cdc (880B) -// lockedTokens/admin/admin_remove_delegator.cdc (495B) -// lockedTokens/admin/check_main_registration.cdc (949B) -// lockedTokens/admin/check_shared_registration.cdc (633B) -// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.523kB) -// lockedTokens/admin/custody_create_only_lease_account.cdc (3.423kB) -// lockedTokens/admin/custody_create_only_shared_account.cdc (3.658kB) -// lockedTokens/admin/custody_create_shared_accounts.cdc (3.794kB) -// lockedTokens/admin/custody_setup_account_creator.cdc (758B) -// lockedTokens/admin/deposit_locked_tokens.cdc (1.678kB) -// lockedTokens/admin/unlock_tokens.cdc (593B) -// lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc (2.878kB) -// lockedTokens/delegator/delegate_new_tokens.cdc (1.369kB) -// lockedTokens/delegator/delegate_rewarded_tokens.cdc (645B) -// lockedTokens/delegator/delegate_unstaked_tokens.cdc (637B) -// lockedTokens/delegator/get_delegator_id.cdc (392B) -// lockedTokens/delegator/get_delegator_info.cdc (1.458kB) -// lockedTokens/delegator/get_delegator_node_id.cdc (396B) -// lockedTokens/delegator/register_delegator.cdc (1.741kB) -// lockedTokens/delegator/request_unstaking.cdc (639B) -// lockedTokens/delegator/withdraw_rewarded_tokens.cdc (982B) -// lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc (645B) -// lockedTokens/delegator/withdraw_unstaked_tokens.cdc (645B) -// lockedTokens/staker/get_node_id.cdc (387B) -// lockedTokens/staker/get_staker_info.cdc (1.165kB) -// lockedTokens/staker/register_node.cdc (1.714kB) -// lockedTokens/staker/request_unstaking.cdc (692B) -// lockedTokens/staker/stake_new_tokens.cdc (1.413kB) -// lockedTokens/staker/stake_rewarded_tokens.cdc (695B) -// lockedTokens/staker/stake_unstaked_tokens.cdc (695B) -// lockedTokens/staker/unstake_all.cdc (618B) -// lockedTokens/staker/update_networking_address.cdc (659B) -// lockedTokens/staker/withdraw_rewarded_tokens.cdc (973B) -// lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc (658B) -// lockedTokens/staker/withdraw_unstaked_tokens.cdc (658B) -// lockedTokens/user/deposit_tokens.cdc (806B) -// lockedTokens/user/get_locked_account_address.cdc (401B) -// lockedTokens/user/get_locked_account_balance.cdc (400B) -// lockedTokens/user/get_multiple_unlock_limits.cdc (514B) -// lockedTokens/user/get_total_balance.cdc (2.811kB) -// lockedTokens/user/get_unlock_limit.cdc (391B) -// lockedTokens/user/withdraw_tokens.cdc (924B) -// nodeVersionBeacon/admin/change_version_freeze_period.cdc (803B) -// nodeVersionBeacon/admin/delete_version_boundary.cdc (828B) -// nodeVersionBeacon/admin/heartbeat.cdc (628B) -// nodeVersionBeacon/admin/set_version_boundary.cdc (1.421kB) -// nodeVersionBeacon/scripts/get_current_node_version.cdc (237B) -// nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc (264B) -// nodeVersionBeacon/scripts/get_next_version_boundary.cdc (268B) -// nodeVersionBeacon/scripts/get_next_version_update_sequence.cdc (207B) -// nodeVersionBeacon/scripts/get_version_boundaries.cdc (294B) -// nodeVersionBeacon/scripts/get_version_boundary_freeze_period.cdc (322B) -// quorumCertificate/admin/publish_voter.cdc (411B) -// quorumCertificate/admin/start_voting.cdc (1.522kB) -// quorumCertificate/admin/stop_voting.cdc (381B) -// quorumCertificate/create_voter.cdc (1.127kB) -// quorumCertificate/scripts/generate_quorum_certificate.cdc (333B) -// quorumCertificate/scripts/get_cluster.cdc (196B) -// quorumCertificate/scripts/get_cluster_complete.cdc (248B) -// quorumCertificate/scripts/get_cluster_node_weights.cdc (203B) -// quorumCertificate/scripts/get_cluster_vote_threshold.cdc (197B) -// quorumCertificate/scripts/get_cluster_votes.cdc (257B) -// quorumCertificate/scripts/get_cluster_weight.cdc (193B) -// quorumCertificate/scripts/get_clusters.cdc (277B) -// quorumCertificate/scripts/get_node_has_voted.cdc (492B) -// quorumCertificate/scripts/get_node_weight.cdc (327B) -// quorumCertificate/scripts/get_qc_enabled.cdc (113B) -// quorumCertificate/scripts/get_voter_is_registered.cdc (210B) -// quorumCertificate/scripts/get_voting_completed.cdc (199B) -// quorumCertificate/submit_vote.cdc (611B) -// randomBeaconHistory/scripts/get_backfiller_max_entries.cdc (321B) -// randomBeaconHistory/scripts/get_latest_source_of_randomness.cdc (200B) -// randomBeaconHistory/scripts/get_source_of_randomness.cdc (305B) -// randomBeaconHistory/scripts/get_source_of_randomness_page.cdc (326B) -// randomBeaconHistory/transactions/set_backfiller_max_entries.cdc (379B) -// stakingCollection/close_stake.cdc (906B) -// stakingCollection/create_machine_account.cdc (1.702kB) -// stakingCollection/create_new_tokenholder_acct.cdc (3.643kB) -// stakingCollection/deploy_collection_contract.cdc (312B) -// stakingCollection/register_delegator.cdc (823B) -// stakingCollection/register_multiple_delegators.cdc (875B) -// stakingCollection/register_multiple_nodes.cdc (1.692kB) -// stakingCollection/register_node.cdc (1.957kB) -// stakingCollection/request_unstaking.cdc (832B) -// stakingCollection/restake_all_stakers.cdc (1.413kB) -// stakingCollection/scripts/does_account_have_staking_collection.cdc (257B) -// stakingCollection/scripts/get_all_delegator_info.cdc (357B) -// stakingCollection/scripts/get_all_node_info.cdc (337B) -// stakingCollection/scripts/get_delegator_ids.cdc (286B) -// stakingCollection/scripts/get_does_stake_exist.cdc (415B) -// stakingCollection/scripts/get_locked_tokens_used.cdc (289B) -// stakingCollection/scripts/get_machine_account_address.cdc (440B) -// stakingCollection/scripts/get_machine_accounts.cdc (318B) -// stakingCollection/scripts/get_node_ids.cdc (248B) -// stakingCollection/scripts/get_unlocked_tokens_used.cdc (294B) -// stakingCollection/setup_staking_collection.cdc (3.494kB) -// stakingCollection/stake_new_tokens.cdc (956B) -// stakingCollection/stake_rewarded_tokens.cdc (849B) -// stakingCollection/stake_unstaked_tokens.cdc (849B) -// stakingCollection/test/deposit_tokens.cdc (878B) -// stakingCollection/test/get_tokens.cdc (684B) -// stakingCollection/transfer_delegator.cdc (2.093kB) -// stakingCollection/transfer_node.cdc (2.207kB) -// stakingCollection/unstake_all.cdc (758B) -// stakingCollection/update_networking_address.cdc (776B) -// stakingCollection/withdraw_from_machine_account.cdc (838B) -// stakingCollection/withdraw_rewarded_tokens.cdc (1.01kB) -// stakingCollection/withdraw_unstaked_tokens.cdc (1.025kB) -// stakingProxy/add_node_info.cdc (640B) -// stakingProxy/get_node_info.cdc (461B) -// stakingProxy/register_node.cdc (1.145kB) -// stakingProxy/remove_node_info.cdc (323B) -// stakingProxy/remove_staking_proxy.cdc (331B) -// stakingProxy/request_unstaking.cdc (493B) -// stakingProxy/setup_node_account.cdc (619B) -// stakingProxy/stake_new_tokens.cdc (491B) -// stakingProxy/stake_unstaked_tokens.cdc (496B) -// stakingProxy/unstake_all.cdc (457B) -// stakingProxy/withdraw_rewards.cdc (499B) -// stakingProxy/withdraw_unstaked.cdc (499B) -// storageFees/admin/set_parameters.cdc (847B) -// storageFees/scripts/get_account_available_balance.cdc (178B) -// storageFees/scripts/get_accounts_capacity_for_transaction_storage_check.cdc (317B) -// storageFees/scripts/get_storage_capacity.cdc (174B) -// storageFees/scripts/get_storage_fee_conversion.cdc (142B) -// storageFees/scripts/get_storage_fee_min.cdc (136B) +// inspect_field.cdc (122B) +// lockedTokens/admin/admin_create_shared_accounts.cdc (3.869kB) +// lockedTokens/admin/admin_deploy_contract.cdc (443B) +// lockedTokens/admin/admin_deposit_account_creator.cdc (856B) +// lockedTokens/admin/admin_remove_delegator.cdc (448B) +// lockedTokens/admin/check_main_registration.cdc (980B) +// lockedTokens/admin/check_shared_registration.cdc (616B) +// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.322kB) +// lockedTokens/admin/custody_create_only_lease_account.cdc (3.146kB) +// lockedTokens/admin/custody_create_only_shared_account.cdc (3.539kB) +// lockedTokens/admin/custody_create_shared_accounts.cdc (3.746kB) +// lockedTokens/admin/custody_setup_account_creator.cdc (643B) +// lockedTokens/admin/deposit_locked_tokens.cdc (1.682kB) +// lockedTokens/admin/get_unlocking_bad_accounts.cdc (480B) +// lockedTokens/admin/unlock_tokens.cdc (576B) +// lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc (2.78kB) +// lockedTokens/delegator/delegate_new_tokens.cdc (1.201kB) +// lockedTokens/delegator/delegate_rewarded_tokens.cdc (528B) +// lockedTokens/delegator/delegate_unstaked_tokens.cdc (520B) +// lockedTokens/delegator/get_delegator_id.cdc (442B) +// lockedTokens/delegator/get_delegator_info.cdc (1.47kB) +// lockedTokens/delegator/get_delegator_node_id.cdc (446B) +// lockedTokens/delegator/register_delegator.cdc (1.574kB) +// lockedTokens/delegator/request_unstaking.cdc (522B) +// lockedTokens/delegator/withdraw_rewarded_tokens.cdc (798B) +// lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc (528B) +// lockedTokens/delegator/withdraw_unstaked_tokens.cdc (528B) +// lockedTokens/staker/get_node_id.cdc (437B) +// lockedTokens/staker/get_staker_info.cdc (1.177kB) +// lockedTokens/staker/register_node.cdc (1.493kB) +// lockedTokens/staker/request_unstaking.cdc (522B) +// lockedTokens/staker/stake_new_tokens.cdc (1.253kB) +// lockedTokens/staker/stake_rewarded_tokens.cdc (525B) +// lockedTokens/staker/stake_unstaked_tokens.cdc (525B) +// lockedTokens/staker/unstake_all.cdc (488B) +// lockedTokens/staker/update_networking_address.cdc (482B) +// lockedTokens/staker/withdraw_rewarded_tokens.cdc (788B) +// lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc (528B) +// lockedTokens/staker/withdraw_unstaked_tokens.cdc (528B) +// lockedTokens/user/deposit_tokens.cdc (732B) +// lockedTokens/user/get_locked_account_address.cdc (451B) +// lockedTokens/user/get_locked_account_balance.cdc (450B) +// lockedTokens/user/get_multiple_unlock_limits.cdc (568B) +// lockedTokens/user/get_total_balance.cdc (2.85kB) +// lockedTokens/user/get_unlock_limit.cdc (441B) +// lockedTokens/user/withdraw_tokens.cdc (699B) +// nodeVersionBeacon/admin/change_version_freeze_period.cdc (787B) +// nodeVersionBeacon/admin/delete_version_boundary.cdc (812B) +// nodeVersionBeacon/admin/heartbeat.cdc (612B) +// nodeVersionBeacon/admin/set_version_boundary.cdc (1.4kB) +// nodeVersionBeacon/scripts/get_current_node_version.cdc (244B) +// nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc (271B) +// nodeVersionBeacon/scripts/get_next_version_boundary.cdc (275B) +// nodeVersionBeacon/scripts/get_next_version_update_sequence.cdc (214B) +// nodeVersionBeacon/scripts/get_version_boundaries.cdc (301B) +// nodeVersionBeacon/scripts/get_version_boundary_freeze_period.cdc (329B) +// quorumCertificate/admin/publish_voter.cdc (311B) +// quorumCertificate/admin/start_voting.cdc (1.495kB) +// quorumCertificate/admin/stop_voting.cdc (354B) +// quorumCertificate/create_voter.cdc (1.107kB) +// quorumCertificate/scripts/generate_quorum_certificate.cdc (329B) +// quorumCertificate/scripts/get_cluster.cdc (192B) +// quorumCertificate/scripts/get_cluster_complete.cdc (244B) +// quorumCertificate/scripts/get_cluster_node_weights.cdc (199B) +// quorumCertificate/scripts/get_cluster_vote_threshold.cdc (193B) +// quorumCertificate/scripts/get_cluster_votes.cdc (253B) +// quorumCertificate/scripts/get_cluster_weight.cdc (189B) +// quorumCertificate/scripts/get_clusters.cdc (273B) +// quorumCertificate/scripts/get_node_has_voted.cdc (488B) +// quorumCertificate/scripts/get_node_weight.cdc (323B) +// quorumCertificate/scripts/get_qc_enabled.cdc (109B) +// quorumCertificate/scripts/get_voter_is_registered.cdc (206B) +// quorumCertificate/scripts/get_voting_completed.cdc (195B) +// quorumCertificate/submit_vote.cdc (584B) +// stakingCollection/close_stake.cdc (758B) +// stakingCollection/create_machine_account.cdc (1.152kB) +// stakingCollection/create_new_tokenholder_acct.cdc (2.943kB) +// stakingCollection/deploy_collection_contract.cdc (297B) +// stakingCollection/register_delegator.cdc (675B) +// stakingCollection/register_multiple_delegators.cdc (767B) +// stakingCollection/register_multiple_nodes.cdc (1.584kB) +// stakingCollection/register_node.cdc (1.426kB) +// stakingCollection/request_unstaking.cdc (684B) +// stakingCollection/restake_all_stakers.cdc (1.305kB) +// stakingCollection/scripts/does_account_have_staking_collection.cdc (260B) +// stakingCollection/scripts/get_all_delegator_info.cdc (360B) +// stakingCollection/scripts/get_all_node_info.cdc (340B) +// stakingCollection/scripts/get_delegator_ids.cdc (289B) +// stakingCollection/scripts/get_does_stake_exist.cdc (418B) +// stakingCollection/scripts/get_locked_tokens_used.cdc (292B) +// stakingCollection/scripts/get_machine_account_address.cdc (443B) +// stakingCollection/scripts/get_machine_accounts.cdc (321B) +// stakingCollection/scripts/get_node_ids.cdc (251B) +// stakingCollection/scripts/get_unlocked_tokens_used.cdc (297B) +// stakingCollection/setup_staking_collection.cdc (2.99kB) +// stakingCollection/stake_new_tokens.cdc (808B) +// stakingCollection/stake_rewarded_tokens.cdc (701B) +// stakingCollection/stake_unstaked_tokens.cdc (701B) +// stakingCollection/test/deposit_tokens.cdc (856B) +// stakingCollection/test/get_tokens.cdc (670B) +// stakingCollection/transfer_delegator.cdc (1.994kB) +// stakingCollection/transfer_node.cdc (2.108kB) +// stakingCollection/unstake_all.cdc (610B) +// stakingCollection/update_networking_address.cdc (628B) +// stakingCollection/withdraw_from_machine_account.cdc (690B) +// stakingCollection/withdraw_rewarded_tokens.cdc (862B) +// stakingCollection/withdraw_unstaked_tokens.cdc (877B) +// stakingProxy/add_node_info.cdc (624B) +// stakingProxy/get_node_info.cdc (514B) +// stakingProxy/register_node.cdc (1.095kB) +// stakingProxy/remove_node_info.cdc (307B) +// stakingProxy/remove_staking_proxy.cdc (315B) +// stakingProxy/request_unstaking.cdc (477B) +// stakingProxy/setup_node_account.cdc (511B) +// stakingProxy/stake_new_tokens.cdc (475B) +// stakingProxy/stake_unstaked_tokens.cdc (480B) +// stakingProxy/unstake_all.cdc (441B) +// stakingProxy/withdraw_rewards.cdc (483B) +// stakingProxy/withdraw_unstaked.cdc (483B) +// storageFees/admin/set_parameters.cdc (831B) +// storageFees/scripts/get_account_available_balance.cdc (185B) +// storageFees/scripts/get_accounts_capacity_for_transaction_storage_check.cdc (324B) +// storageFees/scripts/get_storage_capacity.cdc (181B) +// storageFees/scripts/get_storage_fee_conversion.cdc (149B) +// storageFees/scripts/get_storage_fee_min.cdc (143B) package assets @@ -363,7 +354,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _flowserviceaccountAdd_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\xcb\x6e\xab\x30\x10\x5d\xdb\x5f\x31\x62\x11\xc1\xc6\xde\xa3\x7b\x1b\xd1\x4a\xfd\x81\x3e\xf6\x13\x7b\x48\x2c\x81\x8d\xc6\xa6\x54\xaa\xf2\xef\x15\x86\x45\x68\xa8\xba\x3e\x73\x9e\xe3\xfa\x21\x70\x82\xe7\x2e\x4c\x2f\xc4\x1f\xce\x50\x63\x4c\x18\x7d\x82\x96\x43\x0f\xc5\x3d\x50\x48\xa9\x35\xbc\x5e\x5c\x84\xc4\xe8\x23\x9a\xe4\x82\x07\xb4\x36\x02\x82\xa7\x09\x70\x55\x30\x4c\x8c\x29\xb0\xbc\xb9\x2b\x57\xf0\x89\x69\x86\x6a\x68\xac\x65\x8a\xb1\x82\x2f\x29\x45\x47\x09\xe2\xc6\xad\xb1\xbd\xf3\x35\x1c\xee\x73\xa8\x0c\xb9\x98\x16\x0f\x29\x06\xa6\x01\x99\xca\xe8\xce\x9e\xb8\x06\x1c\xd3\xa5\x7c\x0c\xcc\x61\x7a\xc7\x6e\xa4\x0a\x0e\x2b\x75\x36\x13\x42\x6b\x58\x50\x60\x6a\x89\xc9\x1b\x82\x14\xf6\xa6\xd8\x38\x01\x53\x0c\x23\x1b\x52\x59\x43\x0a\x11\xa9\x6b\xd5\x4e\x6c\xf8\x0f\x4b\x16\x15\x53\x60\x3c\x93\x3a\x65\xbf\x7f\x7f\xb6\x79\x28\xe7\xf5\x6b\xd0\x2b\x51\xb7\x37\x84\xf9\xb0\x92\x42\x88\xe3\x11\x06\xf4\xce\x94\xc5\x9b\xc7\x53\x97\xd3\x9f\x76\x1a\xe1\x6e\xfc\xa2\x92\xe2\x2a\x05\x7d\x92\x19\x13\xe5\x45\x7e\x2b\xa2\xd0\xda\x66\xf3\xb7\x1f\x6f\xcc\x52\xd7\xef\x00\x00\x00\xff\xff\x30\x9d\x0e\x50\x4c\x02\x00\x00" +var _flowserviceaccountAdd_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xcb\x6a\xc3\x30\x10\x45\xd7\xd2\x57\x0c\x59\x14\x67\x63\x75\x1d\xda\x06\x37\x0f\x28\x14\x0a\x71\x1f\xeb\x89\x34\x4e\x04\x8e\x64\x46\x72\x13\x28\xf9\xf7\x62\xc5\x8b\xb8\x75\xe9\x7a\x46\xe7\x9e\xab\xb1\x87\xc6\x73\x84\x75\xed\x8f\x25\xf1\xa7\xd5\x54\x68\xed\x5b\x17\xa1\x62\x7f\x80\xdb\xd3\xfa\xf9\xe5\xa3\x5c\x6d\xde\x9f\x16\xab\x62\xb9\xdc\xac\xca\x52\x4a\xa5\xe0\x75\x6f\x03\x44\x46\x17\x50\x47\xeb\x1d\xa0\x31\x01\x10\x1c\x1d\x01\x7b\x82\x66\x62\x8c\x9e\xe5\xd5\x5e\xd6\x0f\x17\x4c\xdd\x68\x06\x85\x31\x4c\x21\x4c\xe1\x4b\x4a\x51\x53\x84\x30\xd0\x28\xcc\xc1\xba\x19\xdc\xfc\x16\xcc\xd3\xc8\x86\x78\xc9\x90\xa2\x61\x6a\x90\x29\x0b\x76\xe7\xa8\x23\xb7\x71\xdf\xef\x76\x74\x21\x94\x82\x47\xcf\xec\x8f\xc0\x54\x11\x93\xd3\x04\xd1\x8f\x75\x1f\xa0\x81\x29\xf8\x96\x35\xe5\x89\x21\x85\x08\x54\x57\xf9\x88\x27\xdc\xc3\x25\x3c\xdf\xa6\x9c\xbb\x7f\xb5\x1f\xb2\xee\x9b\x67\xa0\x42\xf4\x8c\x3b\x52\xd5\xd5\x83\x6e\x71\x2a\x85\x10\xf3\x39\x34\xe8\xac\xce\x26\x6f\x0e\xb7\x75\xb2\xde\x8e\x34\xc1\x51\xed\xc9\x54\x8a\xb3\x14\x74\x22\xdd\x46\x4a\x3f\xf1\x57\x81\x1c\x8d\x29\x06\x07\xfa\x71\xaf\x84\x3a\x7f\x07\x00\x00\xff\xff\x58\x7a\xb8\x95\x35\x02\x00\x00" func flowserviceaccountAdd_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -379,11 +370,11 @@ func flowserviceaccountAdd_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/add_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb1, 0x11, 0x91, 0x94, 0xe5, 0x6c, 0x4, 0x20, 0xe4, 0x66, 0x6, 0x20, 0xd3, 0xd9, 0xf8, 0xab, 0x9b, 0xa9, 0xec, 0xe1, 0x9e, 0x25, 0x9b, 0x99, 0x68, 0xeb, 0xa9, 0x9f, 0xcf, 0x7a, 0xb4, 0xa2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x79, 0x2d, 0xa8, 0x63, 0x2c, 0xf1, 0x7e, 0xed, 0xbd, 0x9, 0xca, 0xc8, 0xdc, 0x63, 0x53, 0x29, 0x1e, 0xb5, 0x81, 0x4a, 0x50, 0x61, 0x83, 0xb4, 0x23, 0x25, 0xc0, 0x4b, 0xbf, 0x98, 0xe2, 0x54}} return a, nil } -var _flowserviceaccountDeposit_feesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x4f\x8f\x94\x40\x10\xc5\xcf\xcb\xa7\x78\x72\x58\xe1\xb0\x70\x31\x1e\x26\xa3\xeb\xbf\x8c\x77\xb3\xae\xe7\x1e\x28\xa0\x23\xd3\x45\xaa\x0b\x59\x33\xd9\xef\x6e\x68\x68\x5c\xe2\xc1\x13\xa1\xfa\xd5\xab\x5f\xfd\xb1\x97\x81\x45\x71\x1a\x5d\x6b\xcf\x3d\x3d\xf0\x4f\x72\x68\x84\x2f\x48\x77\xb1\x34\x89\xca\x9e\xa7\x9d\x2a\xfe\xef\x14\x27\x22\xff\x42\x30\xff\xa6\x49\x52\x96\xf8\x42\x03\x7b\xab\xd0\x39\xc5\x43\x19\xda\xd1\xdf\x94\x47\x33\xf6\x3a\xeb\xd8\xf5\xbf\xd1\xb0\x40\xc9\xab\x75\x6d\x92\xa8\x18\xe7\x4d\xa5\x96\x5d\x66\x2e\x3c\x3a\x3d\xe0\xfb\xc9\x3e\xbd\x7d\x93\xe3\x9a\x24\x00\x50\x96\x78\xe8\x68\x31\x81\x90\xe7\x51\x2a\x82\x76\x46\xd1\x71\x5f\xfb\x50\x2b\x56\x9e\xa3\x46\x08\x67\xb2\xae\x45\x70\x6f\x48\x84\xea\x60\xd5\x93\xc2\x93\xd3\xe0\x75\xc0\x87\xeb\x6e\x1a\x45\x08\x3f\x2f\x55\x07\xa1\xc1\x08\x65\xde\xb6\x8e\xe4\x00\x33\x6a\x97\x7d\x62\x11\x9e\x1e\x4d\x3f\x52\x8e\xdb\x8f\x55\x35\x03\x6f\xa0\x2b\xec\x57\x52\x18\x08\x35\x24\xe4\x66\xd2\x65\x1a\x8b\xd1\x6b\x0f\xaf\x2c\x54\xe3\x57\x18\x4a\xcc\x9b\xc9\x42\xe4\x1b\x35\x78\xb7\x8a\x8b\x59\x6a\x5a\x2a\xce\xa1\xee\x31\x30\xec\x91\x7f\x58\xed\x6a\x31\x53\x8e\xdb\x6d\x67\x4b\x1f\xef\xb3\x79\x53\x07\x94\xab\x49\xd9\xc4\xf7\xf0\x9c\x27\x37\x37\x37\xf7\xf7\x18\x8c\xb3\x55\x96\x7e\xe6\xb1\xaf\xe1\x58\xb1\xd4\xfa\x97\x9f\xa7\x05\x3f\x64\xbf\x4a\xf3\x5d\xcf\x11\x23\xee\x21\x1c\xc9\xff\xbb\xf6\xd4\x37\xc5\xb6\x10\x1c\xef\xb6\x19\x14\xd3\xea\xb8\x5d\xc5\xf2\xcd\x43\xee\xba\x23\x7a\xa2\x6a\x54\xc2\xf5\x25\xca\x76\x8b\x1d\x21\x9a\xb8\xc8\x65\xdd\xfe\x32\xf7\x38\x31\x5c\xd4\x8b\xc7\x3a\xc1\xe3\xdd\x9e\x33\x32\x3c\xff\x09\x00\x00\xff\xff\xbb\x16\x8b\x19\x67\x03\x00\x00" +var _flowserviceaccountDeposit_feesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x4f\x8f\xd3\x30\x10\xc5\xcf\xcd\xa7\x78\xf4\x00\xcd\x61\x13\x0e\x88\x43\x55\x58\x2a\xda\x70\x41\x42\xda\x2e\xec\xd9\x4d\x26\x89\x45\x6a\x47\xf6\x84\x14\x55\xfb\xdd\x51\xec\x38\x60\x71\xd8\x53\x94\xf1\xbc\x37\xbf\xf9\x23\x2f\xbd\x36\x8c\x62\x50\x8d\x3c\x77\xf4\xa8\x7f\x92\x42\x6d\xf4\x05\xeb\x28\xb6\x4e\x42\x66\xa7\xc7\x28\x2b\xfc\x47\x19\x05\x91\xf5\x09\x6f\xaf\xc5\xd7\x6f\x4f\xc5\xf1\x78\xda\x1f\x0e\x0f\xc7\xd3\x29\x49\xf2\x1c\x07\xea\xb5\x95\x0c\x9e\x94\x16\xac\xc1\x2d\xfd\x55\xfe\x10\x43\xc7\x53\x9e\x56\xdd\x6f\xd4\xda\x80\xc9\xb2\x54\x4d\x92\xb0\x11\xca\x8a\x92\xa5\x56\x1b\x71\xd1\x83\xe2\x2d\xbe\x17\xf2\xfa\xfe\x5d\x8a\x5b\x92\x00\x40\x9e\xe3\xb1\x25\x6f\x02\x43\x56\x0f\xa6\x24\x70\x2b\x18\xad\xee\x2a\xeb\x6a\x85\xca\x53\x54\x18\xc2\x99\xa4\x6a\xe0\xdc\x6b\x32\x86\x2a\x67\xd5\x11\xc3\x92\x62\xe7\xb5\xc5\xa7\x5b\x34\x94\xcc\x85\x9f\x7d\xd5\xde\x50\x2f\x0c\x6d\xac\x6c\x14\x99\x2d\xf6\x03\xb7\xfb\xb2\x9c\x08\x17\xb2\x99\xee\x0b\x31\x04\x0c\xd5\x64\x48\x4d\x68\xbe\x7d\xaf\x7c\x63\x61\x59\x1b\xaa\xf0\xcb\x4d\x21\xe8\x26\x14\x17\x79\xa0\x1a\x1f\xe6\xe4\xec\xac\x8d\xd1\xe3\x4e\x0c\xdc\x6e\x62\xb6\x27\xc9\x6d\x65\xc4\x28\xce\x1d\xa5\x78\xbd\xec\xc9\x43\x7f\xdc\x4c\xdb\xd9\x22\x9f\x6a\x89\x86\xf2\x3a\xbc\xbb\xe7\x34\x59\xad\x56\xf7\xf7\xe8\x85\x92\xe5\x66\xfd\x59\x0f\x5d\x05\xa5\x19\xbe\xde\xff\xec\x7a\xf4\xe8\x4e\xfd\x6a\x9d\x46\xfd\x06\x94\x30\x74\x77\x18\x2f\x77\x6c\xa9\xab\xb3\x65\xfa\xd8\xdd\x2d\xfd\x67\xe3\xec\xb8\x9c\x80\xff\xa6\x4e\x3b\x2f\x84\xae\x54\x0e\x4c\xb8\xfd\x8b\xb2\x1c\x5e\x4b\x08\x26\x2a\x70\x49\x15\x9f\x61\x8c\x13\xc2\x59\xe5\x3d\xe6\x09\xee\xee\x62\xce\xc0\xf0\xfc\x27\x00\x00\xff\xff\xcd\x65\xce\xb4\x5b\x03\x00\x00" func flowserviceaccountDeposit_feesCdcBytes() ([]byte, error) { return bindataRead( @@ -399,11 +390,11 @@ func flowserviceaccountDeposit_feesCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/deposit_fees.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7d, 0x52, 0x74, 0xf2, 0x10, 0x54, 0xe7, 0x92, 0xfb, 0xd8, 0xeb, 0x33, 0x4f, 0x97, 0x24, 0x5, 0xe9, 0x43, 0xe, 0x3e, 0x92, 0xa, 0xbe, 0x33, 0xf9, 0xca, 0x6b, 0xe9, 0xf5, 0xb4, 0x56, 0x9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0x9f, 0x9c, 0x7b, 0xcb, 0x4d, 0x5c, 0x3c, 0x92, 0xe1, 0x6f, 0xe0, 0xe8, 0x32, 0xb5, 0x35, 0x9e, 0x2d, 0xa5, 0x76, 0x47, 0xd2, 0x9a, 0x3, 0x9d, 0x7d, 0x12, 0x67, 0x94, 0x56, 0xe4, 0x19}} return a, nil } -var _flowserviceaccountRemove_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\xbd\x6e\x83\x30\x10\x9e\xed\xa7\x38\x31\x44\xb0\xd8\x3b\x6a\x1b\xd1\x4a\x7d\x81\xfe\xec\x17\xe7\x48\x2c\x81\x0f\x9d\x4d\x52\xa9\xca\xbb\x57\x31\x0c\xa1\xa1\xea\xfc\xdd\x7d\xbf\xbe\x1f\x58\x12\xbc\x76\x7c\x7e\x23\x39\x79\x47\x8d\x73\x3c\x86\x04\xad\x70\x0f\xc5\x3d\x50\x68\x6d\x2d\xbc\x1f\x7d\x84\x24\x18\x22\xba\xe4\x39\x80\x50\xcf\x27\x8a\x80\x01\x70\x66\x70\x42\x98\x58\xf4\xcd\x59\x39\x63\x2f\x13\x54\x43\xb3\xdf\x0b\xc5\x58\xc1\xb7\xd6\xaa\xa3\x04\x71\x21\xd6\xec\x7b\x1f\x6a\xd8\xdc\xdb\x30\x19\xf2\x31\x49\xd6\xd0\x6a\x10\x1a\x50\xa8\x8c\xfe\x10\x48\x6a\xc0\x31\x1d\xcb\x67\x16\xe1\xf3\x27\x76\x23\x55\xb0\x99\x5f\xaf\x62\x4a\x59\x0b\x13\x0a\x42\x2d\x09\x05\x47\x90\x78\xad\x89\x85\x12\x08\x45\x1e\xc5\x91\xc9\x1c\x5a\xa9\x48\x5d\x6b\x56\x6c\xc3\x23\x4c\x5e\x4c\x4c\x2c\x78\x20\xb3\xcb\x7a\x0f\xff\xa6\x79\x2a\xaf\xe5\xd7\x60\xe7\x47\xdb\xde\x3c\x5c\x0f\x2b\xad\x94\xda\x6e\x61\xc0\xe0\x5d\x59\x7c\x04\xdc\x75\xd9\xfd\x6e\x25\x11\xae\xda\x2f\x2a\xad\x2e\x5a\xd1\x17\xb9\x31\x51\x6e\xe4\xaf\x20\x66\xda\xb6\x59\x4c\xf7\x6b\xc9\xcc\x76\xf9\x09\x00\x00\xff\xff\xec\x46\x77\xa5\x4e\x02\x00\x00" +var _flowserviceaccountRemove_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xcb\x6a\xeb\x30\x10\x86\xd7\xd2\x53\x0c\x59\x1c\x9c\x8d\x75\xd6\xa1\x6d\x70\x73\x81\x42\xa1\x10\xf7\xb2\x56\xe4\x71\x22\xb0\x35\x66\x24\x27\x81\x92\x77\x2f\x96\xbd\x88\x5b\x97\xae\x67\xf4\xcd\xf7\xeb\xb7\x75\x43\x1c\x60\x5b\xd1\x39\x47\x3e\x59\x83\x99\x31\xd4\xba\x00\x25\x53\x0d\xff\x2f\xdb\xe7\x97\x8f\x7c\xb3\x7b\x7f\x5a\x6d\xb2\xf5\x7a\xb7\xc9\x73\x29\x95\x82\xd7\xa3\xf5\x10\x58\x3b\xaf\x4d\xb0\xe4\x80\xb1\xa6\x13\x7a\xd0\x0e\xf4\x40\x30\x8c\x3a\x10\xcb\x9b\xb5\x64\x98\xad\xfa\xd1\x02\xb2\xa2\x60\xf4\x7e\x0e\x9f\x52\x8a\x0a\x03\xf8\x91\x45\x56\xd4\xd6\x2d\xe0\xdf\x4f\xbf\x34\x8e\xac\x0f\x1c\x6f\x48\xd1\x30\x36\x9a\x31\xf1\xf6\xe0\xb0\x23\xb7\xe1\x38\xec\x76\x74\x21\x94\x82\x47\x62\xa6\x33\x30\x96\xc8\xe8\x0c\x42\xa0\xa9\xe8\x23\x34\x30\x7a\x6a\xd9\x60\x1a\x19\x52\x08\x8f\x55\x99\x4e\x78\xc2\x3d\xf4\xc7\xd3\x7d\xbc\x73\xf7\xa7\xf6\x43\xd2\xfd\xf2\x02\x94\x0f\xc4\xfa\x80\xaa\xbc\x79\xd0\x2d\xce\xa5\x10\x62\xb9\x84\x46\x3b\x6b\x92\xd9\x9b\xd3\xfb\x2a\x5a\xef\x27\x92\xe8\x49\xed\xd9\x5c\x8a\xab\x14\x78\x41\xd3\x06\x8c\x3f\xf1\x5b\x80\xb4\x2f\x31\x1b\x75\xf4\xad\xb2\x48\xbb\x7e\x05\x00\x00\xff\xff\xb4\x28\x75\xda\x37\x02\x00\x00" func flowserviceaccountRemove_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -419,11 +410,11 @@ func flowserviceaccountRemove_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/remove_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf0, 0x88, 0x85, 0x67, 0xec, 0xe6, 0x1a, 0x23, 0xf6, 0xee, 0x4f, 0xc, 0x7c, 0x58, 0x34, 0x3e, 0xf2, 0x45, 0x36, 0xc2, 0x8d, 0xbe, 0x5, 0xcc, 0xdf, 0x1a, 0xcc, 0x9c, 0x8c, 0xe9, 0x29, 0x21}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x45, 0x93, 0x3, 0xb, 0x31, 0xee, 0xf4, 0x0, 0x1, 0xd1, 0x23, 0xca, 0x29, 0xed, 0xf8, 0x8b, 0xd1, 0xa6, 0x66, 0x57, 0xe8, 0xf9, 0xf3, 0xf3, 0xfe, 0x91, 0xbc, 0xbb, 0x2f, 0x35, 0x84, 0x3}} return a, nil } -var _flowserviceaccountScriptsGet_account_creatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x31\x0a\x02\x31\x10\x46\xe1\x3e\xa7\xf8\xd9\x2a\x69\x3c\x80\xdd\x22\x78\x01\x4b\xb1\x08\xb3\x13\x09\x24\x19\x99\x99\x68\x21\xde\xdd\xc6\xce\xed\x1e\x3c\xf8\x6a\x7f\x88\x3a\xce\x4d\x5e\x17\xd6\x67\x25\x5e\x89\x64\x0e\x47\x51\xe9\x58\xfe\xc7\x12\x42\x26\x62\xb3\x98\x5b\x4b\x28\x73\xa0\xe7\x3a\x62\x3a\xe2\xba\x6e\x9b\xb2\xd9\x0d\xef\x00\x00\xca\x3e\x75\xec\xe0\x87\x3b\xfb\x2f\x4f\xca\xd9\x45\x2d\xa6\xf0\xf9\x06\x00\x00\xff\xff\x70\x58\x63\xbb\x8d\x00\x00\x00" +var _flowserviceaccountScriptsGet_account_creatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xbd\x0a\xc2\x30\x14\x06\xd0\x3d\x4f\xf1\x8d\xc9\x22\xce\x6e\xa1\x4d\x41\x10\x84\x06\x74\x10\x87\x90\xde\x4a\x20\x3f\x72\x93\xa8\x20\xbe\xbb\x8b\xa3\xdb\x99\x4e\x48\xf7\xc2\x0d\x53\x2c\x4f\x4b\xfc\x08\x9e\xb4\xf7\xa5\xe7\x86\x95\x4b\xc2\xf6\x35\x1d\x8e\x67\x6b\xe6\xd3\x7e\x30\x7a\x1c\x67\x63\xad\x10\xce\x7b\xaa\x55\xba\x18\x15\xd6\x9e\x91\x5c\xc8\x52\xed\x70\xd1\xcb\xc2\x54\xeb\x15\x6f\x01\x00\x4c\xad\x73\xfe\x93\x6f\x6e\xd4\x7e\x1c\x98\x5c\x2b\x5c\xa5\x12\x9f\x6f\x00\x00\x00\xff\xff\xac\xbe\xf0\x47\x8d\x00\x00\x00" func flowserviceaccountScriptsGet_account_creatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -439,11 +430,11 @@ func flowserviceaccountScriptsGet_account_creatorsCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_account_creators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb, 0x29, 0xe1, 0xc2, 0xd2, 0x0, 0xb4, 0xb8, 0x57, 0xa9, 0x8f, 0xc, 0x63, 0xa1, 0x40, 0x25, 0x23, 0xfd, 0x83, 0xcf, 0xb3, 0xef, 0xe1, 0x16, 0xe9, 0x84, 0xcf, 0xe7, 0x86, 0xa0, 0x5c, 0x7f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6a, 0x89, 0x94, 0x44, 0xe4, 0x7d, 0x37, 0xc8, 0x6f, 0xc5, 0x14, 0x10, 0x8, 0xe9, 0xea, 0x77, 0x26, 0x7a, 0x54, 0xa8, 0x63, 0x83, 0x49, 0x8c, 0x64, 0x3d, 0x7f, 0xd0, 0xd7, 0x71, 0x5a, 0x43}} return a, nil } -var _flowserviceaccountScriptsGet_account_feeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x4e\x2d\x2a\xcb\x4c\x4e\x75\x4c\x4e\xce\x2f\xcd\x2b\x51\x48\x2b\xca\xcf\x55\x50\xc2\x94\x50\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\xc3\x62\xb2\x5e\x22\x84\x76\x2e\x4a\x4d\x2c\xc9\xcc\xcf\x73\x4b\x4d\xe5\xaa\x05\x04\x00\x00\xff\xff\xd5\x0c\xb4\x55\x88\x00\x00\x00" +var _flowserviceaccountScriptsGet_account_feeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x4e\x2d\x2a\xcb\x4c\x4e\x75\x4c\x4e\xce\x2f\xcd\x2b\x51\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x0f\x76\x0d\x0a\xf3\x74\x76\x75\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\xc3\x62\xb2\x5e\x22\x84\x76\x2e\x4a\x4d\x2c\xc9\xcc\xcf\x73\x4b\x4d\xe5\xaa\x05\x04\x00\x00\xff\xff\x60\x7f\x8e\xd2\x88\x00\x00\x00" func flowserviceaccountScriptsGet_account_feeCdcBytes() ([]byte, error) { return bindataRead( @@ -459,11 +450,11 @@ func flowserviceaccountScriptsGet_account_feeCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_account_fee.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd7, 0xc5, 0xf3, 0x5c, 0xe4, 0x84, 0x40, 0x9d, 0xd7, 0xb, 0x6b, 0x49, 0x46, 0x8c, 0xa5, 0xdd, 0xa3, 0x90, 0x91, 0x78, 0x62, 0xa8, 0xe, 0xa4, 0x2, 0x22, 0xba, 0xd8, 0x8c, 0x90, 0xf2, 0x66}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xca, 0xd7, 0x87, 0x82, 0xb, 0xc5, 0xd3, 0xf0, 0x7e, 0x40, 0x79, 0xba, 0x34, 0x9f, 0xff, 0xd, 0xa, 0x43, 0x60, 0xc9, 0xad, 0x77, 0xd0, 0xba, 0xc5, 0x6, 0xb6, 0xa9, 0x1e, 0x65, 0xae, 0xc}} return a, nil } -var _flowserviceaccountScriptsGet_execution_effort_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcd\xa1\x0e\xc2\x30\x10\x87\x71\xdf\xa7\xf8\x67\x6a\x33\x28\x82\x98\x43\x8c\x04\x4d\x08\x7a\xb9\x5c\x47\x93\xf6\x8e\x5c\xaf\x40\xb2\xec\xdd\x11\x48\x50\x9f\xf8\xc4\x2f\x95\x87\x9a\xe3\x94\xf5\x75\x61\x7b\x26\xe2\x23\x91\x36\x71\x44\xd3\x82\xee\x77\x74\x21\xcc\x44\x5c\x6b\x3f\xe7\x3c\x20\x36\x41\x99\x93\xf4\xc3\x88\xf5\x7a\x16\x3f\xec\x47\x7c\xbb\x61\x0d\x00\x60\xec\xcd\xe4\x8f\xb1\x5b\xd8\xa7\x37\x53\xf3\xa4\x32\xc5\xa8\xe6\x37\x4e\xcb\xdd\x6b\x3f\x84\xed\x13\x00\x00\xff\xff\xed\xee\xad\x32\x9b\x00\x00\x00" +var _flowserviceaccountScriptsGet_execution_effort_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcd\xb1\x0a\xc2\x30\x10\x06\xe0\x3d\x4f\xf1\x8f\xed\x22\x0e\xe2\xd0\xad\xd8\x14\x0a\x82\xd0\xa0\x9d\x4b\xb8\xd4\x40\x9b\xc8\xe5\xa2\x85\xd2\x77\x77\x70\x75\xfa\xc6\xcf\x2f\xaf\xc8\x82\x76\x8e\x1f\x43\xfc\xf6\x96\x6a\x6b\x63\x0e\x02\xc7\x71\xc1\x71\x6d\xaf\xb7\xc1\xe8\xfe\xd1\x5d\x74\xdd\x34\xbd\x36\x46\xa9\xd1\x5a\x4a\xa9\x18\xe7\xb9\x84\xcb\x01\xcb\xe8\x43\x51\x56\xd8\xee\x5d\x90\xf3\xa9\xc2\xcf\x1d\x9b\x02\x00\x26\xc9\x1c\xfe\x1c\x87\x89\x44\xaf\x64\xb3\xf8\x18\xb4\x73\x91\x65\x20\x3f\x3d\x25\x15\xa5\xda\xbf\x01\x00\x00\xff\xff\x6c\xde\xc4\x2a\x9b\x00\x00\x00" func flowserviceaccountScriptsGet_execution_effort_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -479,11 +470,11 @@ func flowserviceaccountScriptsGet_execution_effort_weightsCdc() (*asset, error) } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_execution_effort_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbc, 0x96, 0xc3, 0x69, 0xc1, 0xcc, 0x19, 0x11, 0xbd, 0xe0, 0x19, 0x1e, 0xb1, 0x38, 0xab, 0xae, 0x1, 0x48, 0x4, 0x1e, 0x57, 0xcf, 0x63, 0xee, 0x28, 0x4e, 0xf7, 0x13, 0x65, 0x30, 0xd6, 0x93}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xce, 0xbd, 0x4a, 0xa4, 0x1a, 0x9, 0xd, 0xf4, 0xd3, 0xa7, 0x2e, 0xca, 0xde, 0x52, 0xaa, 0x56, 0xbb, 0xd6, 0xb4, 0xa4, 0xa3, 0x3, 0xfe, 0x81, 0xea, 0x8, 0x51, 0x92, 0x8a, 0x8, 0xba, 0x8c}} return a, nil } -var _flowserviceaccountScriptsGet_execution_memory_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x3d\xaa\x42\x31\x10\x06\xd0\x3e\xab\xf8\xb8\x55\xd2\xbc\xea\x61\x61\x67\xa1\x20\x68\x25\x2e\x20\x0c\x73\x65\x20\x99\x91\xb9\x13\x7f\x10\xf7\xee\x02\xb4\x3e\x70\xa4\x5f\xcd\x03\xbb\x66\xf7\x13\xfb\x4d\x88\x37\x44\x36\x34\x30\xbb\x75\x4c\xdf\x30\xa5\x54\x89\x78\x59\x72\x6d\xad\x60\x1e\x8a\x5e\x45\x73\x59\xe3\xbc\xd7\x58\xfd\xe3\x95\x00\xc0\x39\x86\xeb\x8f\xf9\xef\xc2\xb1\x7d\x30\x8d\x10\xd3\x23\x77\xf3\xe7\x41\xba\x44\x2e\xe9\xfd\x09\x00\x00\xff\xff\xc8\x94\x6c\xb5\x8f\x00\x00\x00" +var _flowserviceaccountScriptsGet_execution_memory_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xb1\x0a\xc2\x30\x10\x00\xd0\x3d\x5f\x71\x63\xbb\x88\x83\x38\xb8\x15\x9b\x42\xa1\x22\x34\xa8\x73\x09\x57\x39\x48\xee\xe4\x7a\xd1\x8a\xf8\xef\xfe\x80\x3f\xf0\x28\x3f\x44\x0d\xba\x24\xaf\x80\xfa\xa4\x88\x4d\x8c\x52\xd8\x60\x56\xc9\xb0\x5d\xbb\xe1\x7c\x0b\x7e\xbc\xf6\x47\xdf\xb4\xed\xe8\x43\x70\x6e\x8a\x11\x97\xa5\x9a\x52\xaa\x61\x2e\x0c\x79\x22\xae\xea\x03\x5c\x7a\xb6\xfd\x0e\x3e\x0e\x00\x40\xd1\x8a\xf2\x1f\x79\x73\x47\xf3\x2b\xc6\x62\x24\x7c\xc2\x2c\xfa\x1e\x28\x93\x55\xb5\xfb\xfe\x02\x00\x00\xff\xff\x05\xa5\x88\xd1\x8f\x00\x00\x00" func flowserviceaccountScriptsGet_execution_memory_limitCdcBytes() ([]byte, error) { return bindataRead( @@ -499,11 +490,11 @@ func flowserviceaccountScriptsGet_execution_memory_limitCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_execution_memory_limit.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd5, 0x92, 0xbb, 0x36, 0x1b, 0xad, 0x73, 0x48, 0xdd, 0x41, 0x54, 0x99, 0x1e, 0xfa, 0x9b, 0x50, 0x6f, 0xbd, 0x17, 0xf5, 0xe3, 0xc6, 0xa1, 0x52, 0xaf, 0x15, 0xe0, 0x6c, 0x4d, 0x9c, 0x46, 0xd2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x89, 0x88, 0x34, 0xd0, 0x22, 0xfe, 0x48, 0x54, 0xac, 0xd8, 0xd3, 0xae, 0xc7, 0x20, 0x32, 0x21, 0xad, 0xb3, 0x31, 0x41, 0x2, 0xdf, 0xae, 0xc, 0xaa, 0xc2, 0xa1, 0x4e, 0xce, 0x2b, 0x77, 0xaa}} return a, nil } -var _flowserviceaccountScriptsGet_execution_memory_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x4e\x2d\x2a\xcb\x4c\x4e\x75\x4c\x4e\xce\x2f\xcd\x2b\x51\x48\x2b\xca\xcf\x55\x50\xc2\x94\x50\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\xa8\x0e\xf5\xcc\x2b\x31\x33\xb1\x52\x80\xd0\xb5\x0a\xd5\x5c\x0a\x0a\x0a\x0a\x45\xa9\x25\xa5\x45\x79\x58\xec\xd0\x4b\x4f\x2d\x71\xad\x48\x4d\x2e\x2d\xc9\xcc\xcf\xf3\x4d\xcd\xcd\x2f\xaa\x0c\x4f\xcd\x4c\xcf\x28\x29\xd6\xd0\xe4\xaa\x05\x04\x00\x00\xff\xff\x91\xb2\x2e\xbd\x9b\x00\x00\x00" +var _flowserviceaccountScriptsGet_execution_memory_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcd\x31\x0b\x82\x40\x14\x07\xf0\xfd\x3e\xc5\x7f\xd4\x25\x1a\xa2\xc1\x4d\xf2\x04\xa1\x08\x3c\xca\x59\x8e\xa7\x1d\x78\x77\xf1\x7c\x57\x86\xf8\xdd\x1b\x5a\x9b\x7e\xe3\xcf\xf9\x67\x64\x41\x3d\xc5\xb7\x21\x7e\x39\x4b\xa5\xb5\x31\x05\xc1\xc0\xd1\x63\xbf\xd4\xe7\x6b\x67\x74\x7b\x6f\x4e\xba\xac\xaa\x56\x1b\xa3\x54\x6f\x2d\xcd\x73\xd6\x4f\x53\x8e\x21\x05\xf8\xde\x85\x2c\x2f\xb0\xde\x9a\x20\xc7\x43\x81\x9f\x1b\x56\x05\x00\x4c\x92\x38\xfc\x39\x76\x23\x89\x5e\xc8\x26\x71\x31\x5c\xc8\x47\xfe\x74\xe4\xc6\x87\xcc\x59\xae\xb6\x6f\x00\x00\x00\xff\xff\x10\x82\x47\xa5\x9b\x00\x00\x00" func flowserviceaccountScriptsGet_execution_memory_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -519,11 +510,11 @@ func flowserviceaccountScriptsGet_execution_memory_weightsCdc() (*asset, error) } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_execution_memory_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5, 0xcd, 0xd0, 0x38, 0x82, 0x36, 0xe4, 0x74, 0xde, 0x36, 0x36, 0x84, 0x3f, 0xa6, 0xf5, 0xb4, 0x59, 0x3a, 0x3b, 0x17, 0x7f, 0xa0, 0xbc, 0x82, 0xd6, 0xcc, 0x7c, 0xae, 0x39, 0x5c, 0x78, 0xe5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe, 0xcf, 0x4e, 0x4b, 0x9, 0xcc, 0xef, 0xbb, 0x14, 0x1b, 0xec, 0xa2, 0x2b, 0x99, 0x8d, 0xa4, 0x59, 0x33, 0xa5, 0x47, 0xf1, 0xa4, 0xc5, 0x1b, 0xd4, 0x1, 0xf6, 0x99, 0xe7, 0xb1, 0x83, 0x2}} return a, nil } -var _flowserviceaccountScriptsGet_fees_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x50\x82\x71\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\xdd\x32\x2b\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\xe0\xa6\xe8\xa5\xa7\x96\xb8\xa5\xa6\x3a\x25\xe6\x24\xe6\x25\xa7\x6a\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x36\xc6\xa0\x51\x67\x00\x00\x00" +var _flowserviceaccountScriptsGet_fees_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x77\x73\x75\x0d\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x1b\xa6\x97\x9e\x5a\xe2\x96\x9a\xea\x94\x98\x93\x98\x97\x9c\xaa\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\xcf\x3b\x2e\x2a\x6e\x00\x00\x00" func flowserviceaccountScriptsGet_fees_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -539,11 +530,11 @@ func flowserviceaccountScriptsGet_fees_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_fees_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc6, 0xb4, 0xfa, 0x5d, 0x2c, 0x2f, 0x77, 0x80, 0x79, 0xa9, 0xb6, 0x97, 0xa3, 0x19, 0x3e, 0x2f, 0x94, 0xaa, 0x9, 0xa2, 0x75, 0x90, 0x67, 0x6b, 0x19, 0xc, 0xd, 0x59, 0xdc, 0x42, 0xc4, 0x4a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaf, 0xb3, 0xe5, 0xbe, 0x7a, 0xbc, 0xe8, 0x99, 0x4f, 0x9f, 0x20, 0xf, 0x3d, 0x11, 0x31, 0x93, 0x3a, 0xbb, 0x1f, 0x61, 0x27, 0x23, 0x43, 0xe8, 0x3d, 0x41, 0x39, 0xd9, 0xa, 0x67, 0x54, 0xd2}} return a, nil } -var _flowserviceaccountScriptsGet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x31\x0a\x82\x31\x0c\x47\xf1\xbd\xa7\xf8\xf3\x4d\xed\xe2\x01\xdc\x54\xf0\x00\x7a\x82\x12\x53\x08\xb4\x89\xa4\xa9\x0e\xe2\xdd\x5d\xdc\x74\x7b\xf0\xe0\x27\xe3\x6e\x1e\x38\x77\x7b\x5e\xd9\x1f\x42\x7c\x20\xb2\xa5\x81\xe6\x36\xb0\xfd\x8e\x2d\xa5\x4a\xc4\x73\xe6\xda\x7b\x41\x5b\x8a\x51\x45\x73\xd9\xe3\x68\xd6\xf1\x4a\x00\xe0\x1c\xcb\xf5\x8f\xbb\x93\xf9\xad\x93\x73\x0d\x31\xbd\xf0\x0c\x17\x0a\xbe\xe5\x92\xde\x9f\x00\x00\x00\xff\xff\xdd\x1a\x44\xaa\x91\x00\x00\x00" +var _flowserviceaccountScriptsGet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xb1\xca\xc2\x30\x10\x00\xe0\x3d\x4f\x71\x63\xbb\xfc\xfc\xb3\x5b\x6d\x53\x10\x04\x21\x01\x9d\xc3\x79\x85\x83\x24\x27\x97\x8b\x0a\xe2\xbb\xbb\x38\xba\x7d\xd3\xc7\xe5\x26\x6a\xb0\x66\x79\x44\xd2\x3b\x23\x4d\x88\xd2\xab\xc1\xa6\x52\xe0\xff\xb9\x1e\x4f\x97\xe8\xc3\xf9\x30\xfb\x69\x59\x82\x8f\xd1\xb9\x84\x48\xad\x0d\x29\xe7\x11\xb6\x5e\xa1\x24\xae\xc3\xb8\x83\xbd\x48\x86\x97\x03\x00\x50\xb2\xae\xf5\xc7\xfb\xc7\xed\xab\x59\x29\x19\x4b\x0d\xd4\x4c\x19\x8d\xae\xc3\xe8\xde\x9f\x00\x00\x00\xff\xff\x00\xd7\xce\x85\x91\x00\x00\x00" func flowserviceaccountScriptsGet_is_account_creation_restrictedCdcBytes() ([]byte, error) { return bindataRead( @@ -559,11 +550,11 @@ func flowserviceaccountScriptsGet_is_account_creation_restrictedCdc() (*asset, e } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_is_account_creation_restricted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x78, 0x7f, 0x4b, 0x85, 0x11, 0xb6, 0x26, 0xa3, 0x91, 0xc, 0xc6, 0x56, 0x2f, 0x17, 0x6d, 0x44, 0x49, 0x35, 0x2f, 0xa, 0x6d, 0x2b, 0xc1, 0x30, 0xf1, 0x1e, 0xd5, 0x30, 0xec, 0x9a, 0x80, 0x23}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x30, 0x10, 0xbe, 0xc5, 0x7d, 0xb7, 0x8a, 0x89, 0x8a, 0xa8, 0xea, 0x76, 0x11, 0xaa, 0xdd, 0x97, 0x83, 0xca, 0xc0, 0x60, 0x1f, 0xe0, 0xf9, 0x7, 0x5, 0x2, 0xdc, 0x4e, 0x8a, 0x89, 0x61, 0x59}} return a, nil } -var _flowserviceaccountScriptsGet_is_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcd\x31\x0a\x02\x31\x10\x85\xe1\x3e\xa7\x78\x6c\xb5\x69\x3c\xc0\x76\xab\xe0\x05\x3c\xc1\x30\x3b\x0b\x81\x24\x23\x33\x13\x2d\xc4\xbb\x5b\xa8\x95\x76\x1f\x3c\x78\x7f\x69\x57\xb5\xc0\xb9\xea\xfd\x22\x76\x2b\x2c\x2b\xb3\x8e\x1e\xd8\x4d\x1b\xa6\xdf\x61\x4a\x89\x98\xc5\x7d\xa6\x5a\x33\xf6\xd1\xd1\xa8\xf4\x99\xb6\xcd\xc4\x7d\xc1\xfa\x46\x5e\x70\x54\xad\x78\x24\x00\x30\x89\x61\xfd\x4f\xe7\x50\xfc\xa3\x93\x09\x85\xda\xf7\x28\xa7\xe7\x2b\x00\x00\xff\xff\x9d\xb0\x81\x18\x9d\x00\x00\x00" +var _flowserviceaccountScriptsGet_is_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcd\xb1\xaa\xc2\x30\x14\x87\xf1\x3d\x4f\xf1\x1f\xdb\xe5\x72\xe7\x6e\xb1\x4d\x41\x10\x84\x06\x74\x0e\xe9\x29\x04\x92\x1c\x39\x49\x54\x10\xdf\xdd\x41\xdd\xdc\x7e\xd3\xf7\x85\x74\x61\xa9\x98\x23\xdf\x2c\xc9\x35\x78\xd2\xde\x73\xcb\x15\x9b\x70\xc2\xff\x7d\x3e\x1c\xcf\xd6\x2c\xa7\xfd\x68\xf4\x34\x2d\xc6\x5a\xa5\x9c\xf7\x54\x4a\xe7\x62\xec\xb1\xb5\x8c\xe4\x42\xee\xdc\xba\x0a\x95\x32\x40\xbf\xd1\x0f\xd8\x31\x47\x3c\x14\x00\x08\xd5\x26\xf9\xc7\xe7\x2f\x94\x8f\x46\x21\x57\x59\xbe\xa1\x5e\x3d\x5f\x01\x00\x00\xff\xff\x52\x31\xc0\x1c\x9d\x00\x00\x00" func flowserviceaccountScriptsGet_is_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -579,11 +570,11 @@ func flowserviceaccountScriptsGet_is_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_is_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x95, 0xb8, 0x4e, 0xec, 0x66, 0x4a, 0x50, 0xbb, 0x8b, 0xb0, 0xb8, 0x52, 0x16, 0x26, 0xc, 0x19, 0xb, 0x4, 0x17, 0x3b, 0x4d, 0xb7, 0xe0, 0xa8, 0xc, 0x8f, 0x1e, 0xb3, 0xd2, 0xeb, 0x1f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc8, 0x8e, 0x8, 0x40, 0xf7, 0x6e, 0x2d, 0x2b, 0x73, 0xd5, 0xcf, 0x2d, 0x12, 0x1e, 0x4a, 0x5d, 0xfe, 0x93, 0xa7, 0xc8, 0xf, 0x2e, 0x2e, 0x1c, 0xd7, 0x1f, 0x7c, 0xfe, 0xb, 0xbc, 0x16, 0xb6}} return a, nil } -var _flowserviceaccountScriptsGet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x50\x82\x71\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\xe0\x3a\xf4\xdc\x52\x53\x03\x12\x8b\x12\x73\x53\x4b\x52\x8b\x8a\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\x6a\xd2\x53\x4b\x50\x94\x69\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x4a\xde\xf2\x2a\x7a\x00\x00\x00" +var _flowserviceaccountScriptsGet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x77\x73\x75\x0d\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x82\x6b\xd4\x73\x4b\x4d\x0d\x48\x2c\x4a\xcc\x4d\x2d\x49\x2d\x2a\x56\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\xa8\x49\x4f\x2d\x41\x51\xa6\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x09\x2c\xd3\xfc\x81\x00\x00\x00" func flowserviceaccountScriptsGet_tx_fee_parametersCdcBytes() ([]byte, error) { return bindataRead( @@ -599,11 +590,11 @@ func flowserviceaccountScriptsGet_tx_fee_parametersCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_tx_fee_parameters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xee, 0x8f, 0xb0, 0x94, 0x23, 0x9d, 0x6b, 0x38, 0x2f, 0x83, 0x12, 0xee, 0x19, 0x73, 0x3f, 0x9d, 0x78, 0x57, 0x4c, 0xb8, 0x2b, 0x65, 0xe9, 0xa3, 0x4, 0x2b, 0x93, 0xdf, 0xda, 0xb5, 0x9c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe5, 0x1c, 0xec, 0x0, 0x38, 0xf6, 0x3d, 0x5a, 0x7e, 0x7a, 0x73, 0xd0, 0xe8, 0xa1, 0xf1, 0xd6, 0x81, 0x73, 0x5, 0x5e, 0x52, 0x4a, 0xe3, 0x75, 0x69, 0xbb, 0x77, 0xa7, 0x37, 0x63, 0xe4, 0x69}} return a, nil } -var _flowserviceaccountSet_execution_effort_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x93\x5f\x6b\xe3\x38\x14\xc5\xdf\xf3\x29\x2e\x5e\x58\x12\x48\xe3\x38\x89\x9d\xd8\x2c\x0b\x4b\x77\x0b\x65\xbb\xb0\xd0\xfd\xf3\x50\x3a\xf4\x5a\xbe\x8e\x35\xb5\x24\x8f\x24\x27\x0d\x21\xdf\x7d\x90\x15\xb7\xe9\x9f\x19\x66\x86\x79\x18\x43\x2c\xa1\x73\xee\xd1\x2f\xbe\x52\x18\xc2\x3f\x15\x37\x60\x35\x4a\x83\xcc\x72\x25\x0d\x18\xb2\x06\x24\x6d\x81\x1e\x88\xb5\x6e\x0d\xa8\x2c\x95\xb6\xb0\x25\xbe\xae\xac\x19\x74\x65\x04\x02\x1f\xb8\x68\xc5\x6b\x5f\xcd\x05\xb7\x50\x2a\xfd\x3c\x98\x1b\xc0\x7a\x8b\x3b\x03\xa9\x7b\x26\x7d\x8e\x8f\x05\x89\x82\x4c\xc8\x0b\x03\x0c\x25\xe4\x04\x86\x48\x42\x45\x9a\x32\xe7\x74\xbf\x33\xb8\x39\xc7\x82\x24\x23\x38\x57\xa2\x69\x2d\xba\xe4\x3f\xb9\x2c\x6e\x87\x95\xb5\x8d\xc9\xc2\x70\xcd\x6d\xd5\xe6\x13\xa6\x44\xa8\x64\x59\xab\x6d\xc8\x7c\x49\x98\xd7\x2a\x0f\x93\xe9\x32\xa6\x72\xb1\x62\x4b\x36\xc3\x69\x12\x15\xb3\x25\xcd\x93\x7c\x9a\xc6\x48\x4b\x62\x31\xcd\xa6\x8b\x98\xe1\x32\xd4\xad\xb4\x5c\x50\xc8\x94\x10\x4a\xba\xa1\xdf\xef\x9e\xcb\x62\xb2\x56\x3f\x5d\xcd\xa7\xa3\x23\xd5\xc5\x7f\x7f\x7d\x0d\x91\x7b\x9d\xad\x95\x27\x8a\x8a\x72\x31\x2f\x68\x15\xb3\x38\x5f\xc6\x49\xb4\x8a\xa3\x08\x57\x25\xa5\x29\xa5\x69\xba\xc2\x7c\x46\x0b\x56\xc4\x69\x58\x6e\x44\x28\xc8\x92\xf6\xef\x0e\x21\x75\x04\x1e\xc2\x56\x04\x5c\x5a\xd2\x12\x6b\x68\x34\x31\x6e\x5c\x4f\x54\xd9\x29\xaf\x9a\xd4\x65\xb8\x9e\xcc\xde\x45\xc9\x18\xb6\x15\x67\x15\x08\x42\xe9\x57\x9c\x42\x1f\x5a\xac\xc1\x2a\x88\x40\xb5\xb6\x4f\xb2\xca\x62\xed\x5b\xf8\x3a\x15\x37\xc8\x6b\xcc\x6b\x67\x03\x3c\xed\xff\xe4\x08\xea\x3a\x5e\x50\x89\x6d\xfd\x78\xa0\x00\x7d\x8f\xfd\xff\x78\xf1\x1d\xaf\x94\x6a\x32\x88\xde\xd4\xae\x2d\x5a\x12\x24\x6d\x06\x11\xbc\xe9\xb8\x68\x65\xb7\xfb\xa5\xdc\x28\xd6\xad\xfa\x2c\x67\x56\x1a\xb8\x84\x06\x35\xfa\x6f\x51\x2a\x2d\x7a\x8c\xbb\xbb\xbb\xf7\x46\x49\x37\xbd\x71\x2f\x80\xbd\x1f\x00\x02\xbb\x6b\x28\xc8\x20\xf8\x9d\x77\xd1\xa8\x77\xc1\xf8\x51\xdc\x60\xdd\x3a\xf5\xa6\x5f\x39\xa9\xec\x0c\xf7\xb4\x0b\x32\xd8\x3f\xc5\xfc\x7b\x29\x6d\xb2\x08\xc6\x4f\xb5\x41\x34\x9d\x46\x01\x1c\xc6\xcf\x0a\x7b\xf5\xf3\xa5\x49\x1c\xcf\x93\x00\x0e\x4f\xa5\xa7\x31\xdf\x84\x32\xfb\x71\x50\xe6\xdf\x0f\xa5\x9f\xde\xfa\x49\x1f\x7b\x92\xf3\x37\xda\xea\x34\x65\x0f\x41\xa1\x04\x72\xe9\x44\x63\x95\xc6\x35\x39\x9d\x17\x24\x2d\x2f\x39\x69\x27\x3c\x5e\x89\x3f\xba\x1b\xf1\xbf\x3f\xe2\x01\x1c\xfc\x96\xb7\xc7\xd3\x35\x38\xb9\x1a\x43\x49\xdb\xa3\x2f\x83\xbd\xc7\xcf\xc0\x8f\x87\x11\xec\x07\x8e\xb3\xd1\xd4\xa0\xa6\xa1\xe1\x6b\x49\x3a\x03\x6c\x6d\x35\xbc\xf6\x14\x23\xf8\xf9\x37\xc6\x54\x2b\x6d\xef\x76\x8f\x77\x4e\x8e\xa4\x93\x5a\x61\xf1\xcb\xcb\xf4\x5f\x87\xa5\x56\x22\x83\xf0\xe8\x0a\xdf\xc6\x1f\x7d\x2a\xd4\xe0\x86\x4e\xf0\xc7\x60\xd5\x17\x86\x1d\x06\x87\x8f\x01\x00\x00\xff\xff\x38\x5a\x8f\x3f\x7f\x06\x00\x00" +var _flowserviceaccountSet_execution_effort_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x93\x5d\x6b\xe3\x3a\x10\x86\xef\xf3\x2b\x06\x9f\x9b\x14\xd2\x38\x4e\x62\x27\x36\x87\x03\xa5\xe7\x14\xca\xe9\xc2\xc2\x7e\x5d\x94\x2e\x1d\xcb\xe3\x58\x5b\x4b\xf2\x4a\x72\xd2\x10\xf2\xdf\x17\x59\x71\x9b\x7e\xb0\xec\x2e\x7b\xb1\x86\x48\x62\xde\x99\x47\x6f\x34\x52\x18\xc2\xfb\x8a\x1b\xb0\x1a\xa5\x41\x66\xb9\x92\x06\x0c\x59\x03\x92\x36\x40\xf7\xc4\x5a\x17\x03\x2a\x4b\xa5\x2d\x6c\x88\xaf\x2a\x6b\x06\x5d\x19\x81\xc0\x7b\x2e\x5a\xf1\x32\xaf\xe6\x82\x5b\x28\x95\x7e\x0a\xe6\x06\xb0\xde\xe0\xd6\x40\xea\xbe\x71\xcf\xf1\x58\x90\x28\xc8\x84\xbc\x30\xc0\x50\x42\x4e\x60\x88\x24\x54\xa4\x29\x73\x99\xee\x77\x0a\xd7\xe7\x58\x90\x64\x04\xe7\x4a\x34\xad\x45\x47\xfe\x9f\xcb\xe2\x66\x58\x59\xdb\x98\x2c\x0c\x57\xdc\x56\x6d\x3e\x66\x4a\x84\x4a\x96\xb5\xda\x84\xcc\x97\x84\x79\xad\xf2\x30\x99\x2c\x62\x2a\xe7\x4b\xb6\x60\x53\x9c\x24\x51\x31\x5d\xd0\x2c\xc9\x27\x69\x8c\xb4\x20\x16\xd3\x74\x32\x8f\x19\x2e\x42\xdd\x4a\xcb\x05\x85\x4c\x09\xa1\xa4\x9b\xfa\xfd\xee\xb8\x2c\xc6\x2b\xf5\xd7\xd5\x6c\x72\x72\x70\x75\xf1\xf1\xcd\xcf\x38\x72\xc3\xe9\x4a\x79\x47\x51\x51\xce\x67\x05\x2d\x63\x16\xe7\x8b\x38\x89\x96\x71\x14\xe1\xb2\xa4\x34\xa5\x34\x4d\x97\x98\x4f\x69\xce\x8a\x38\x0d\xcb\xb5\x08\x05\x59\xd2\x7e\xec\x2c\xa4\xce\x81\x37\x61\x2b\x02\x2e\x2d\x69\x89\x35\x34\x9a\x18\x37\xae\x27\xaa\xec\x94\x17\x4d\xea\x18\xae\x27\xd3\xcf\x51\x32\x82\x4d\xc5\x59\x05\x82\x50\xfa\x88\x53\xe8\x6b\x8b\x35\x58\x05\x11\xa8\xd6\xf6\x24\xab\x2c\xd6\xbe\x85\x2f\xa9\xb8\x46\x5e\x63\x5e\xbb\x34\xc0\xe3\xfe\x8f\x0f\x46\x5d\xc7\x0b\x2a\xb1\xad\x1f\x2e\x14\xa0\xef\xb1\xff\x1f\xcf\xce\xf1\x4a\xa9\x26\x83\xe8\x55\xed\x9d\x45\x4b\x82\xa4\xcd\x20\x82\x57\x33\x2e\x5a\xd9\xed\x7e\x29\xd7\x8a\x75\x51\xcf\x72\xc9\x4a\x03\x97\xd0\xa0\x46\x7f\x16\xa5\xd2\xa2\xb7\x71\x7b\x7b\xfb\xc5\x28\xe9\x96\xd7\x6e\x00\xd8\xf9\x09\x20\xb0\xdb\x86\x82\x0c\x82\x7f\x79\x87\x46\xbd\x0d\x46\x0f\xe2\x1a\xeb\xd6\xa9\xd7\x7d\xe4\xa8\xb2\x4b\xb8\xa3\x6d\x90\xc1\xee\x11\xf3\xe1\x52\xda\x64\x1e\x8c\x1e\x6b\x83\x68\x32\x89\x02\xd8\x8f\x9e\x14\xf6\xea\xf7\x4b\x93\x38\x9e\x25\x01\xec\x1f\x4b\x8f\x31\xbf\x64\x65\xfa\xe7\x58\x99\xfd\x3e\x2b\xfd\xf2\xc6\x2f\x7a\xec\x11\xe7\x2d\xda\xea\x98\xb2\x83\xa0\x50\x02\xb9\x74\xa2\xb1\x4a\xe3\x8a\x9c\xce\x0b\x92\x96\x97\x9c\xb4\x13\x1e\x9e\xc4\x7f\xdd\x8b\xf8\xe4\xaf\x78\x00\x7b\xbf\xe5\xcd\xe1\x76\x0d\x8e\x9e\xc6\x50\xd2\xe6\x90\x97\xc1\xce\xdb\xcf\xc0\xcf\xfb\x13\xd8\x0d\x9c\xcf\x46\x53\x83\x9a\x86\x86\xaf\x24\xe9\x0c\xce\x5a\x5b\x9d\x31\xa6\x5a\x69\xfb\x14\xf7\x79\x79\x5c\x2b\x2c\xfe\x7e\x8e\xfa\x67\x58\x6a\x25\x32\x08\x0f\xe6\xc3\xd7\xbd\x9e\x3c\x87\x19\x5c\xd3\x91\xc7\x11\x58\xf5\x83\x90\xfd\x60\xff\x2d\x00\x00\xff\xff\xad\xdd\x1d\x36\x64\x06\x00\x00" func flowserviceaccountSet_execution_effort_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -619,11 +610,11 @@ func flowserviceaccountSet_execution_effort_weightsCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_execution_effort_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0xdb, 0xc1, 0xb9, 0x62, 0xa9, 0x42, 0x74, 0x68, 0xbe, 0xd1, 0xd7, 0xd6, 0x94, 0xc, 0x9d, 0x43, 0xe7, 0x67, 0xb0, 0xa7, 0x57, 0xa0, 0x72, 0xfa, 0xb0, 0x1f, 0x18, 0x12, 0xbd, 0x99, 0xf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x37, 0x75, 0xac, 0x6, 0xec, 0xf7, 0x3e, 0xda, 0xc2, 0x1c, 0xbc, 0xdb, 0xd2, 0xf9, 0x50, 0x92, 0x2c, 0xd2, 0x95, 0x48, 0xef, 0xad, 0xf0, 0x6a, 0xbc, 0x92, 0x53, 0xa0, 0xa, 0xcf, 0x9d, 0x6a}} return a, nil } -var _flowserviceaccountSet_execution_memory_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\xb1\x6a\xc3\x30\x10\x86\x77\x3f\xc5\x3f\x15\x19\x8a\xb5\x94\x0e\xa6\x14\x3a\x16\xda\xa9\xed\x03\x1c\xea\xc5\x16\x58\x92\xd1\x9d\xe3\x84\xe0\x77\x0f\xb6\x13\x93\x25\x90\x1b\xff\xfb\xf8\xf8\xac\xc5\x6f\xeb\x05\x9a\x29\x0a\x39\xf5\x29\x0a\x84\x55\x40\x88\x3c\x82\x0f\xec\x86\x79\x45\xe0\x90\xf2\x11\x9d\x0f\x5e\xab\xe2\x86\x37\x91\xc7\xaf\x79\xad\xf1\xf7\x19\xf5\xf5\xa5\xc4\xa9\x00\x80\x3e\x73\x4f\x99\x8d\xf8\x26\x72\xae\x41\x83\xb6\xe6\x47\x53\xa6\x86\x4b\x3c\x7d\x38\x97\x86\xa8\x57\x7a\xbe\x95\xac\x64\x65\xaa\x2e\xd1\xff\xdb\xea\x7c\x37\xbb\x9c\x42\x0d\x7b\xf9\xd9\x2d\xec\x7b\xe9\x5a\x02\xca\x7b\x22\xa1\x3d\x6f\x99\xcf\xd0\xf4\x90\x68\x2a\xa6\x73\x00\x00\x00\xff\xff\xc0\x86\x20\x70\x1f\x01\x00\x00" +var _flowserviceaccountSet_execution_memory_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\xc1\x8a\x83\x40\x10\x44\xef\x7e\x45\x1d\x15\x16\xe7\xb2\xec\x41\x96\x05\x8f\x0b\xc9\x2d\xf9\x80\x61\xd2\xd1\x01\x67\x46\xba\xdb\x98\x10\xfc\xf7\xa0\x12\x09\x39\xa5\x8f\xd5\xc5\xab\x67\x0c\x0e\xad\x17\x28\xdb\x28\xd6\xa9\x4f\x51\x20\xa4\x02\x8b\x48\x23\xe8\x4a\x6e\x98\x53\x04\x0a\x89\x6f\xe8\x7c\xf0\x5a\x66\x2f\xfd\x3c\xd2\xb8\x9b\xd3\x0a\xc7\xff\xa8\x3f\xdf\x05\xee\x19\x00\xf4\x4c\xbd\x65\xca\xc5\x37\x91\xb8\x42\x3d\x68\x5b\x3b\x97\x86\xa8\xcf\xca\x7c\xeb\xbb\xec\x92\x3d\xfd\xae\x80\xbf\xfc\xcc\x29\x54\x30\xa2\x89\x6d\x43\x66\xb3\xd8\x2f\x12\xcb\x5a\xf1\x0e\x10\x7b\xa1\xcd\xe5\x0b\x9a\x3e\x02\x4c\xd9\xf4\x08\x00\x00\xff\xff\x3e\xdc\x40\xf4\x04\x01\x00\x00" func flowserviceaccountSet_execution_memory_limitCdcBytes() ([]byte, error) { return bindataRead( @@ -639,11 +630,11 @@ func flowserviceaccountSet_execution_memory_limitCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_execution_memory_limit.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0x55, 0xd0, 0x7e, 0x5b, 0xb1, 0x66, 0x8e, 0x6e, 0x52, 0xd0, 0x4d, 0x3f, 0xf0, 0x8a, 0xa, 0x11, 0xfc, 0x2b, 0xb7, 0x1, 0xe1, 0x84, 0xf5, 0x2b, 0x69, 0xf5, 0xa8, 0xc2, 0x36, 0xc0, 0xbb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0x26, 0x87, 0x5b, 0xdc, 0xb4, 0xba, 0xbb, 0x30, 0xf6, 0x69, 0x15, 0xcf, 0xe4, 0x23, 0xea, 0x24, 0x40, 0x9e, 0x5c, 0xe7, 0x38, 0xfe, 0x13, 0x11, 0x19, 0xb1, 0xde, 0xab, 0x20, 0xe4, 0xf1}} return a, nil } -var _flowserviceaccountSet_execution_memory_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\x31\x6b\xc3\x30\x10\x46\x77\xff\x8a\x6f\x2a\x32\x14\x6b\x29\x1d\x44\x29\x74\xec\xd0\xa9\x2d\x99\x85\x72\xb1\x05\xb1\x64\x74\xe7\x38\xc1\xf8\xbf\x07\x47\x4e\x30\x81\x40\x6e\x39\xf8\x78\x3c\x9e\xd6\xf8\x6b\x3c\x43\x92\x0d\x6c\x9d\xf8\x18\x18\x4c\xc2\x08\x34\x80\x8e\xe4\xfa\x79\x43\x4b\x6d\x4c\x27\x0c\xe4\xeb\x46\xb8\x2a\x56\xbc\x0a\x34\x6c\xf2\x6e\x30\xfe\x7f\x07\x79\x7f\x33\xc8\x7f\x2a\x31\x16\x00\xd0\x25\xea\x6c\x22\xc5\xbe\x0e\x94\x0c\x6c\x2f\x8d\xfa\x95\x98\x6c\x4d\x25\x5e\xbe\x9c\x8b\x7d\x90\x2b\x3d\x5f\x26\x2b\xce\x4c\xb5\x8f\x76\xfb\x71\x6f\xff\x54\xbb\x14\x5b\x03\xbd\x50\xfa\x16\xfc\x73\xe9\x5d\xb2\xca\x47\x52\xb6\x07\x5a\xe5\xbf\x42\xe2\x93\xb2\xa9\x98\xce\x01\x00\x00\xff\xff\x43\xef\x3d\xe4\x3b\x01\x00\x00" +var _flowserviceaccountSet_execution_memory_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\x31\x0b\xc2\x30\x10\x85\xf7\xfe\x8a\x37\xb6\x20\xcd\x22\x0e\x41\x84\x8e\x0e\x6e\x8a\x73\x88\x67\x1b\xb0\x49\xc9\x5d\xad\x52\xfa\xdf\xa5\x56\xa5\x74\xf2\x96\x83\xf7\x1e\x1f\x9f\x52\x38\x56\x8e\x21\xd1\x78\x36\x56\x5c\xf0\x0c\x26\x61\x78\xea\x40\x0f\xb2\xed\x98\xa1\xa6\x3a\xc4\x27\x3a\x72\x65\x25\x9c\x27\xb3\x7d\xea\xa9\x3b\x4f\xb9\x46\x7f\xda\x7b\xd9\xac\x35\xa6\x3f\x64\xe8\x13\x00\x68\x22\x35\x26\x52\xca\xae\xf4\x14\x35\x8a\x56\xaa\xc2\xda\xd0\x7a\xf9\x4e\xc6\x9b\xea\xfc\x16\xcc\x65\xbb\x44\xed\xd2\x6b\x0c\xb5\x86\x62\x09\xd1\x94\xa4\x7e\x76\x87\xb7\xdc\xc7\x21\x5b\xc2\xd8\xdc\x69\xe6\xb8\x82\x84\x3f\x21\x43\x32\xbc\x02\x00\x00\xff\xff\x96\xe9\x2c\xf0\x20\x01\x00\x00" func flowserviceaccountSet_execution_memory_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -659,11 +650,11 @@ func flowserviceaccountSet_execution_memory_weightsCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_execution_memory_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x68, 0x24, 0x78, 0x78, 0x6b, 0x42, 0x18, 0x35, 0x8d, 0x1, 0x95, 0xfe, 0xec, 0x4b, 0x3b, 0x81, 0x3, 0xa1, 0x7, 0x1d, 0xeb, 0x87, 0x46, 0x33, 0xa2, 0x65, 0x58, 0xe5, 0x14, 0x5d, 0x3c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0x9e, 0xe1, 0x98, 0x6a, 0x53, 0x46, 0x75, 0xcd, 0x3e, 0x85, 0x4f, 0xc5, 0x75, 0x19, 0xd2, 0xa, 0x71, 0x20, 0xb2, 0xc3, 0xa8, 0x1c, 0x2a, 0xc6, 0x45, 0xd5, 0x39, 0x69, 0xee, 0xc9, 0x8c}} return a, nil } -var _flowserviceaccountSet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\x4d\x6b\xc2\x40\x10\x3d\xef\xfe\x8a\x21\x07\x49\x2e\xc9\x3d\xb4\x15\x2d\x14\x7a\xed\xd7\xd9\x71\x9d\xe8\x42\xdc\x09\xb3\x13\x2d\x14\xff\x7b\xc9\x1a\x5a\xc5\x94\x5e\xf7\xed\xfb\x9a\xe7\xf7\x1d\x8b\xc2\x53\xcb\xc7\x57\x92\x83\x77\xb4\x70\x8e\xfb\xa0\xd0\x08\xef\x21\xbb\x05\x32\x6b\xab\x0a\xde\x76\x3e\x82\x0a\x86\x88\x4e\x3d\x07\x70\x3b\x0c\x5b\x8a\xb0\xf2\x11\x70\x94\x70\x24\x98\x40\xa1\xa8\xe2\x9d\xd2\x66\x05\x07\x6c\x7b\xb2\x17\xd4\xfc\x17\xad\x61\xc9\xdc\x16\xf0\x65\xad\x69\x49\x21\x5e\x39\x2f\x36\x7b\x1f\x6a\x98\xdd\x66\x2a\x13\xe4\xa3\x0a\x2a\x8b\xb5\xa6\x13\xea\x50\x28\x8f\x7e\x1b\x48\x6a\xc0\x5e\x77\xf9\x92\x45\xf8\xf8\x31\xf8\x17\x30\x1b\xa9\x83\x99\x31\x55\x05\x67\x14\x84\x1a\x12\x0a\x8e\x40\x79\xea\x2c\x57\x4e\x43\x31\xee\xc5\x51\x99\x34\xac\x31\x91\xda\xa6\x9c\x88\x0d\xf7\x70\xce\x52\x46\x65\xc1\x2d\x95\xeb\xe4\x77\xf7\x6f\x9b\x87\x7c\x58\xa2\x86\x6a\x24\x56\xcd\x05\x61\xf8\x58\x58\x63\xcc\x7c\x0e\x1d\x06\xef\xf2\xec\x3d\xe0\xba\x4d\xe9\xd7\x13\x8d\x70\x32\x7e\x56\x58\x73\xb2\x86\x3e\xc9\xf5\x4a\xe9\x22\x7f\x15\x29\x23\xe9\x73\x1c\x5f\x1e\x85\xd2\xc0\x2f\x3f\x0b\x5e\x8c\x99\x34\x4f\xdf\x01\x00\x00\xff\xff\x81\x61\xec\x6a\x61\x02\x00\x00" +var _flowserviceaccountSet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x4d\x6b\xf3\x30\x10\x84\xcf\xd2\xaf\x58\x72\x78\x71\x2e\xf6\x7b\x36\x6d\x83\xf3\x05\x81\x42\x21\xee\xc7\x35\x8a\xb2\x4e\x04\x8e\xd6\xac\xd6\x49\xa0\xe4\xbf\x17\xab\xa1\x4d\xa8\x4b\xaf\x5a\xed\xec\x33\x33\x6e\xdf\x10\x0b\xcc\x6b\x3a\x96\xc8\x07\x67\xb1\xb0\x96\x5a\x2f\x50\x31\xed\xe1\xff\x69\xfe\xf8\xf4\x56\xce\x96\xaf\x8b\xc9\xac\x98\x4e\x97\xb3\xb2\xd4\x3a\xcb\xe0\x79\xe7\x02\x08\x1b\x1f\x8c\x15\x47\x1e\xec\xce\xf8\x2d\x06\x58\xb9\x00\xe6\x22\x61\x91\x4d\x1c\x32\x06\x61\x67\x05\x37\x2b\x38\x98\xba\x45\x7d\xb5\x9a\x7c\x4f\x73\x18\x13\xd5\x43\x78\xd7\x5a\xd5\x28\x10\x6e\x90\x8a\xcd\xde\xf9\x1c\xfe\xfd\x84\x4d\xe3\xc8\x05\x61\x23\xc4\x5a\xab\x86\xb1\x31\x8c\x49\x70\x5b\x8f\x9c\x43\xd1\xca\xee\xf2\xb7\x53\x57\x2a\xcb\x60\x4c\xcc\x74\x04\xc6\x0a\x19\xbd\x45\x10\xea\xcb\xe1\x46\xba\x73\x42\x2d\x5b\x4c\xa3\x86\x56\x2a\x60\x5d\xa5\x3d\x9c\x70\x0f\x9f\xc7\xd3\x75\xbc\x73\xf7\x27\xf6\x43\xd2\x45\x9e\x43\x16\x84\xd8\x6c\x31\xab\xae\x16\xba\x8f\x43\xad\x94\x1a\x8d\xa0\x31\xde\xd9\x64\xf0\xe2\xcd\xba\x8e\xd4\xeb\x1e\x27\xa6\x17\x7b\x30\xd4\xea\xac\x15\x9e\xd0\xb6\x82\x31\x89\xdf\x0c\xa4\x01\x65\x11\x2e\x2f\x13\xc6\xd8\xe4\xf2\xab\xaa\xab\xd6\xa2\xe6\xf9\x23\x00\x00\xff\xff\xd6\x4c\xa3\x70\x4a\x02\x00\x00" func flowserviceaccountSet_is_account_creation_restrictedCdcBytes() ([]byte, error) { return bindataRead( @@ -679,11 +670,11 @@ func flowserviceaccountSet_is_account_creation_restrictedCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_is_account_creation_restricted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x3d, 0xd6, 0x34, 0xd1, 0xea, 0xb6, 0x5e, 0x1f, 0xc8, 0xe2, 0xef, 0xf3, 0xff, 0xc2, 0x1d, 0xb0, 0x58, 0xd4, 0x2d, 0x2a, 0x99, 0x74, 0xde, 0x50, 0xe7, 0x21, 0x74, 0x5b, 0x8f, 0x11, 0x2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x99, 0xe6, 0x5c, 0x96, 0xf7, 0xd5, 0xbe, 0x67, 0xcc, 0x62, 0x34, 0x2b, 0x4d, 0xd5, 0x3f, 0xb6, 0x29, 0xe7, 0xa8, 0xe7, 0x8c, 0x2b, 0xa, 0xd0, 0x7e, 0x8c, 0x5, 0xc5, 0xe7, 0x9f, 0x69, 0x7f}} return a, nil } -var _flowserviceaccountSet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\xcf\x6a\xf3\x30\x10\xc4\xcf\xd2\x53\x2c\x3e\x04\x1b\x3e\xec\xcb\x47\x0f\xa6\x6d\x48\x4b\x7d\xee\xa1\xe9\x5d\x51\xd7\x89\xc0\xd6\x9a\xdd\x15\x09\x94\xbc\x7b\x89\xf3\xb7\xe0\xf4\xa8\xd9\xd5\x6f\x86\x9d\xd0\x0f\xc4\x0a\x4d\x47\xdb\x06\x51\xa0\x65\xea\x21\x3b\x3f\x33\x6b\xab\x0a\x3e\x36\x41\x40\xd9\x45\x71\x5e\x03\x45\x10\x54\x01\xdd\xe0\xf5\xdb\xe0\xd8\xf5\xa8\xc8\x62\x6f\x16\x73\x49\xbc\xc6\xc6\x79\x25\xae\x61\xd9\x84\xdd\xc3\xff\x7f\x10\xa2\xef\x92\x04\x8a\x6f\x6d\x4b\xac\xaf\x24\x7a\x1d\xe2\x0e\x7d\xd2\xc9\x61\x01\xdf\xd6\x74\xa8\xd0\x9e\x5c\x17\xde\x53\x8a\xba\xf8\xea\x43\xac\x61\x76\x0e\x53\x8e\x42\x10\x65\xa7\xc4\xd6\x9a\x81\x71\x70\x8c\xb9\x84\x75\x44\xae\xc1\x25\xdd\xe4\x2f\xc4\x4c\xdb\x4f\xd7\x25\x2c\x60\x76\x42\x8d\x16\x46\xb0\x6b\xcb\x29\x13\x78\x82\x23\xa3\x14\x25\x76\x6b\x2c\x57\x23\xe5\xf1\x8e\xf7\x73\x7e\x38\x67\x0d\xd5\x69\xbd\xba\x40\x0f\x5b\x85\x35\xc6\xcc\xe7\x30\xb8\x18\x7c\x9e\x2d\xa3\x5b\x75\x08\x4a\x70\x84\x02\x63\x8b\x8c\xd1\x8f\x9a\xbb\xe5\x02\xa3\x50\x62\x8f\x59\x61\xcd\xde\x9a\xe3\xd1\xf0\xef\xf0\xa5\xa0\x36\x88\xef\x97\xa6\x7e\xb7\x73\xf3\xb8\x53\xd1\x84\x78\xa7\xaf\x09\x71\x0c\xba\xff\x09\x00\x00\xff\xff\x3f\x59\x3d\x32\x6e\x02\x00\x00" +var _flowserviceaccountSet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\x41\x6b\xe3\x40\x0c\x85\xcf\x33\xbf\x42\xe4\xb0\x38\xb0\xd8\x7b\x58\xf6\x60\xb6\x0d\xa6\xb1\x4f\x85\x96\xa6\xa1\xe7\xc9\x54\x4e\x06\xec\x91\x91\x64\x12\x28\xf9\xef\x25\x4e\x9a\xa4\xe0\xf4\x38\x6f\xf4\x3e\x3d\xf4\x42\xdb\x11\x2b\x54\x0d\x6d\x2b\x44\x81\x9a\xa9\x85\x3f\xbb\xea\xf1\xe9\xad\x2a\xcb\x45\x31\x9f\xbf\x94\x8b\x85\xb5\x59\x06\xaf\x9b\x20\xa0\xec\xa2\x38\xaf\x81\x22\x08\xaa\x80\x6e\xf0\xe2\xee\x1c\xbb\x16\x15\x59\xec\xd5\x60\x22\x3d\xaf\xb1\x72\x5e\x89\x73\x58\x56\x61\xf7\xef\xef\x6f\x08\xd1\x37\xbd\x04\x8a\x65\x5d\x13\xeb\x03\x89\x5e\x3e\x71\x87\xbe\xd7\xd1\xcf\x29\x7c\x58\xd3\xa0\x42\x7d\xda\x5a\x78\x4f\x7d\xd4\xe2\xbd\x0d\x31\x87\x5f\x5f\x61\xd2\x41\x08\xa2\xec\x94\xd8\x5a\xd3\x31\x76\x8e\x31\x91\xb0\x8e\xc8\x39\x14\xbd\x6e\x4e\xde\x81\x69\x04\x9b\x3a\x1d\xa3\xc2\x1d\x1c\x4d\xe9\x8a\x98\x69\xfb\xff\xc6\x92\xfb\xe4\x70\xbe\x1c\x32\x51\x62\xb7\xc6\xec\x0c\x3b\x4c\x4d\xad\x31\x66\x36\x83\xce\xc5\xe0\x93\xc9\x32\xba\x55\x83\xa0\x04\x47\x28\x30\xd6\xc8\x18\xfd\xa0\xb9\x6b\x2e\x30\x0a\xf5\xec\x71\x32\xb5\x66\x6f\xcd\xf1\x3a\xf8\x73\xe8\x54\x50\x2b\xc4\xe7\x73\x25\xdf\x6b\xb8\x7a\xdc\xe8\x62\x44\xbc\x51\xcc\x88\x38\x04\xdd\x7f\x06\x00\x00\xff\xff\xff\xaa\x15\x0d\x5e\x02\x00\x00" func flowserviceaccountSet_tx_fee_parametersCdcBytes() ([]byte, error) { return bindataRead( @@ -699,11 +690,11 @@ func flowserviceaccountSet_tx_fee_parametersCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_tx_fee_parameters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7, 0x44, 0xba, 0x8b, 0xc3, 0xc9, 0x40, 0xba, 0x19, 0x23, 0xf3, 0x15, 0x57, 0xbc, 0x3a, 0x15, 0xd5, 0x73, 0xa0, 0x4, 0xae, 0x10, 0xc7, 0x3c, 0x8d, 0x23, 0xf0, 0xe3, 0xef, 0x69, 0x6c, 0xa2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc4, 0xd9, 0xa, 0xe8, 0x29, 0x62, 0x98, 0x4f, 0xb0, 0x5b, 0x5b, 0x90, 0x2e, 0x2c, 0xa0, 0x36, 0x6b, 0x6b, 0x7d, 0x8f, 0xfc, 0xdd, 0x15, 0xf5, 0xa9, 0x70, 0x54, 0xe7, 0x8, 0x37, 0x39, 0x9b}} return a, nil } -var _flowserviceaccountSet_tx_fee_surge_factorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xb1\x6a\xf3\x40\x10\x84\xeb\xbb\xa7\x58\x54\x18\xa9\x91\x9a\x9f\xbf\x10\x49\x8c\x53\xe8\x05\x12\xa7\x3f\x5f\x46\xf6\x81\x74\x27\x76\xf7\xb0\x21\xf8\xdd\x83\x65\x3b\x76\x20\x49\xb9\xc3\xcc\x37\xcb\x84\x71\x4a\xac\xd4\x0d\x69\xdf\x01\x42\x3d\xa7\x91\x8a\xeb\x59\x58\xdb\x34\xf4\xba\x0b\x42\xca\x2e\x8a\xf3\x1a\x52\x24\x81\x0a\xe9\x0e\xb7\xd8\xe4\xd8\x8d\x50\xb0\xd8\x3b\x63\x29\x99\xb7\xe8\x9c\xd7\xc4\x2d\xad\xbb\x70\xf8\xff\xaf\xa2\x0f\x6b\x06\x28\xf5\x97\xec\xca\xfb\x94\xa3\xae\xde\xc7\x10\x5b\x5a\x5c\x91\xf5\x2c\x04\x51\x76\x9a\xd8\x5a\x33\x31\x26\xc7\x28\x25\x6c\x23\xb8\x25\x97\x75\x57\x3e\x27\xe6\xb4\x7f\x73\x43\x46\x45\x8b\x0b\x6a\xae\x30\x82\xa1\xaf\x7f\x2a\xa1\x47\x3a\x33\x6a\xd1\xc4\x6e\x8b\x7a\x33\x53\x1e\x7e\xe9\x7e\x2a\x4f\xa3\xb4\xd4\x5c\xec\xcd\x17\xf4\xe4\xaa\xac\x31\x66\xb9\xa4\xc9\xc5\xe0\xcb\x62\x1d\xdd\x66\x00\x69\xa2\x33\x94\x18\x3d\x18\xd1\xcf\x9a\xbb\xe7\x12\x43\x52\x66\x8f\xa2\xb2\xe6\x68\x0d\x0e\xf0\x59\xf1\xf7\xf3\xb5\x40\x3b\xe0\xe5\x36\xec\xf7\x91\xef\x8e\x99\x7a\xfc\x0c\x00\x00\xff\xff\x3b\xbd\x5d\x8d\xe1\x01\x00\x00" +var _flowserviceaccountSet_tx_fee_surge_factorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xc1\x4a\xf3\x40\x14\x85\xd7\x33\x4f\x71\xe9\xe2\x27\xdd\x24\xff\x42\x5c\x04\xb5\x04\xda\x59\x09\x82\xb1\xb8\x9e\x8e\x27\xed\x40\x32\x13\xee\xdc\xd0\x82\xf4\xdd\xa5\x69\xb5\x11\xd4\xe5\x1c\xce\xf7\xcd\xe5\xf8\xae\x8f\x2c\x64\xda\xb8\x37\x40\xa2\x86\x63\x47\xff\x0f\xe6\xf1\xe9\xd5\xac\x56\x75\xb5\x5c\x3e\xaf\xea\x5a\xeb\xa2\xa0\x97\x9d\x4f\x24\x6c\x43\xb2\x4e\x7c\x0c\x94\x20\x89\x64\x87\x2b\xdd\x5b\xb6\x1d\x04\x9c\xf4\xa4\x98\xa5\x81\xb7\x30\xd6\x49\xe4\x92\xd6\xc6\x1f\x6e\x6f\xe6\xf4\xae\x55\x0b\xa1\xe6\xc2\x56\xce\xc5\x21\x48\xf5\xd6\xf9\x50\xd2\xbf\x4f\x65\x3e\x06\x3e\x09\x5b\x89\xac\xb5\xea\x19\xbd\x65\x64\xc9\x6f\x03\xb8\xa4\x6a\x90\xdd\x85\x1d\x9d\x2a\xa1\x6d\xf2\x9f\xac\x74\x4f\x67\x28\xdf\x44\xe6\xb8\xbf\xfb\xe5\x93\x87\xec\x34\x42\x49\x45\x92\xc8\x76\x8b\xe2\x4b\x76\x6a\xcd\xb5\x52\x6a\xb1\xa0\xde\x06\xef\xb2\xd9\x3a\xd8\x4d\x0b\x92\x48\x67\x29\x31\x1a\x30\x82\x1b\x33\x3b\xf5\x12\x23\xc5\x81\x1d\x66\x73\xad\x8e\x5a\xe1\x00\x37\x08\xfe\x3e\x3a\x4f\x10\x03\xd4\xd7\x05\xbf\xaf\x39\x79\x8c\xd6\xe3\x47\x00\x00\x00\xff\xff\x1e\x43\xfa\x9c\xd1\x01\x00\x00" func flowserviceaccountSet_tx_fee_surge_factorCdcBytes() ([]byte, error) { return bindataRead( @@ -719,71 +710,11 @@ func flowserviceaccountSet_tx_fee_surge_factorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_tx_fee_surge_factor.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x64, 0xef, 0xd8, 0xdc, 0x37, 0x2e, 0x4d, 0x8a, 0x1c, 0x33, 0x3d, 0x68, 0x59, 0xbd, 0xda, 0xe, 0x13, 0xad, 0x59, 0x87, 0xb7, 0x74, 0x45, 0xa3, 0xd1, 0xef, 0xa8, 0x33, 0x79, 0x24, 0x93, 0xb0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1d, 0x84, 0xea, 0x4e, 0xdf, 0x39, 0x64, 0x58, 0x5c, 0x35, 0xeb, 0xc3, 0x27, 0xcb, 0x39, 0xc9, 0xa5, 0xf, 0x7b, 0xbe, 0x52, 0x59, 0x3c, 0xbc, 0x9a, 0xc2, 0x15, 0x2f, 0x72, 0xc3, 0x0, 0xb2}} return a, nil } -var _accountsAdd_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x51\x6b\xdb\x30\x14\x85\x9f\xa5\x5f\x71\x9a\x87\x60\x83\x09\xce\x3a\xc2\x10\xf5\x20\x0c\x46\x47\x19\x0c\xba\xee\x5d\xb1\x2e\xb6\x88\x23\x19\xf9\xba\xae\x19\xf9\xef\x43\xc9\xe6\x26\x38\xec\x49\xf2\xf5\xb9\xe7\xd3\x3d\x5c\x7b\x68\x7d\x60\x7c\x09\x63\xcb\x5e\x4a\x0e\xda\x75\xba\x64\xeb\x5d\xb2\xa7\x51\xe1\x99\x83\x75\x55\x86\xce\x56\x4e\x73\x1f\x68\xdb\x54\x3e\x58\xae\x0f\x0a\x2f\xdf\x1c\x7f\xca\x50\xeb\xae\x9e\x57\x07\xb2\x55\xcd\x0a\x2f\x5f\xed\xdb\xe6\x63\x8a\xdf\x52\x8a\x36\x50\xab\x03\x25\xd1\x8c\x82\x82\xee\xb9\x4e\xb6\xc6\x3c\xd1\x98\x62\xb9\x2d\x4b\xdf\x3b\x8e\x52\x11\xa5\xa7\x53\xcc\xc1\xf8\x5c\x60\x8d\xe5\xf2\xc6\x9b\xf0\x50\xe0\x5e\x61\xf1\xbd\xef\x18\x6d\xf0\xaf\xd6\x10\xf4\xbb\x10\x7a\x52\x06\x3d\xe0\x55\x37\x3d\x81\x6b\xcd\xb0\x1d\xd6\x19\x3e\x64\xf0\x01\xf7\x8b\x08\xbe\x1a\x6b\x62\x5e\x57\x1f\x0a\x6c\xe6\xb8\xa8\xf9\x2f\x69\x47\x3c\x10\x39\xac\xa1\x9d\xc1\xe6\x84\x3b\xe7\x15\x1d\xd7\x79\x9e\xaf\x72\x85\xc5\xcf\x9a\xb0\xa7\xf1\x6f\x94\x38\x44\xca\x8e\xa6\xee\xfc\xd4\x1d\xd5\xd1\xe0\x28\x85\x68\x88\xd1\xf6\xbb\xc6\x96\x4f\x34\xa2\xc0\x8f\x7f\xf7\x24\x12\xa6\x3f\x2a\xba\xae\x0c\x95\xde\xd0\x23\xbd\x25\x69\x76\x3b\x68\x85\xe7\x59\x2d\x09\x7a\xf8\x15\x87\x51\x37\xe2\x4f\xef\xa4\x10\xa9\x94\x67\x33\x0a\xab\x3d\x8d\xdd\x4a\x1b\x93\x5c\xb0\xa7\xeb\x6c\x73\x1e\x2f\x3f\x2f\x40\x57\xb2\xf4\xee\x7d\xb7\xce\x67\x2a\xc5\x51\x1e\xff\x04\x00\x00\xff\xff\xa2\xf6\xe5\xb7\xc9\x02\x00\x00" - -func accountsAdd_keyCdcBytes() ([]byte, error) { - return bindataRead( - _accountsAdd_keyCdc, - "accounts/add_key.cdc", - ) -} - -func accountsAdd_keyCdc() (*asset, error) { - bytes, err := accountsAdd_keyCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "accounts/add_key.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0x9d, 0x12, 0x10, 0xf2, 0xbf, 0x12, 0x9b, 0x86, 0x80, 0x3b, 0x15, 0x3e, 0x13, 0x74, 0x20, 0xc9, 0x11, 0x7e, 0x8a, 0x24, 0x9, 0xa1, 0xe2, 0xef, 0x6f, 0x91, 0x6a, 0x4e, 0x8d, 0x61, 0x1f}} - return a, nil -} - -var _accountsCreate_new_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\x61\x8b\x9b\x40\x10\xfd\xac\xbf\xe2\x5d\x3e\x04\x05\x09\xa6\x57\x42\x59\xce\xc2\xb5\x50\xae\x94\x42\x21\xbd\x7e\x9f\xe8\xa0\x4b\x92\x5d\x59\xc7\xf3\xa4\xe4\xbf\x97\xd5\x9c\x97\x60\xe8\xa7\x5d\xc7\x37\xf3\xde\xbe\x79\xfa\x58\x5b\x27\xf8\xea\xfa\x5a\x6c\x18\x8a\x23\xd3\x50\x2e\xda\x9a\x68\xcf\xbd\xc2\x56\x9c\x36\x65\x82\x46\x97\x86\xa4\x75\xfc\x78\x28\xad\xd3\x52\x1d\x15\x9e\xbf\x1b\xf9\x94\xa0\xa2\xa6\x9a\x57\x3b\xd6\x65\x25\x0a\xcf\xdf\xf4\xeb\xe6\x63\x8c\xbf\x61\x50\x3b\xae\xc9\x71\xe4\x67\xb1\x53\xa0\x56\xaa\xe8\x8b\x75\xce\x76\x7f\xe8\xd0\x72\x82\xad\x58\x47\x25\xc7\x58\x3e\xe6\xb9\x6d\x8d\x0c\x7d\xbe\x71\x38\x83\xb9\x0a\x7c\xce\xb0\xc6\x72\x79\x43\x20\x1e\x32\xdc\x2b\x2c\x7e\xb6\x8d\xa0\x76\xf6\x45\x17\x0c\x7a\x07\x82\x26\xa4\xa3\x0e\x2f\x5e\x02\xa4\x22\x81\x6e\xb0\x4e\xf0\x21\x81\x75\xb8\x5f\x78\xe2\xab\x37\x4e\x9c\xd7\xd5\x87\x0c\x9b\x39\x9d\xc7\xfc\x97\x69\xc7\xd2\x31\x1b\xac\x41\xa6\xc0\x66\xa0\x1b\xcd\xf3\x13\xd7\x69\x9a\xae\x52\x85\xc5\xef\x8a\xb1\xe7\xfe\xec\x2b\x8e\x9e\x65\xc7\x53\x77\x3a\x74\x7b\xb4\x1f\x70\x0a\xc3\x20\x38\xb0\xa0\x6e\x77\x07\x9d\xff\xe0\x1e\x19\x7e\xbd\xdd\x23\x4f\x31\xfd\x51\x7e\xec\xaa\xe0\xdc\x16\xfc\xc4\xaf\x51\x9c\xdc\x76\x5a\x61\x3b\xab\x45\x8e\xc6\xd5\xa9\x1b\xfe\xc7\x77\x61\x10\xc4\x6f\x4a\x68\x5c\x28\x32\x9c\x57\x1b\xd5\xd4\xfb\x14\x8c\x69\x18\x70\x67\xcc\x6a\xcf\x7d\xb3\xa2\xa2\x88\x2e\x44\x4e\xd7\x59\xe0\x9e\x2e\x3f\x2f\x14\x5d\xc1\xe2\xbb\xf7\x48\x8e\x67\x1c\x06\xa7\xf0\xf4\x2f\x00\x00\xff\xff\xc9\x2b\x3a\x56\x00\x03\x00\x00" - -func accountsCreate_new_accountCdcBytes() ([]byte, error) { - return bindataRead( - _accountsCreate_new_accountCdc, - "accounts/create_new_account.cdc", - ) -} - -func accountsCreate_new_accountCdc() (*asset, error) { - bytes, err := accountsCreate_new_accountCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "accounts/create_new_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc4, 0xa7, 0xef, 0xd8, 0x70, 0x83, 0x96, 0xe8, 0xc7, 0xa3, 0x61, 0x1f, 0x72, 0xa9, 0xf8, 0x9f, 0x67, 0x5b, 0xf6, 0xd5, 0xc9, 0x33, 0x6d, 0xd3, 0x89, 0xe5, 0x83, 0x9c, 0xba, 0x78, 0x44, 0x3c}} - return a, nil -} - -var _accountsRevoke_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4e\xc4\x30\x10\x45\x6b\xfb\x14\xa3\x2d\xc0\xdb\xec\x01\x56\xa2\xa0\x5c\x21\x51\x70\x03\xcb\x7c\x92\x91\x57\xe3\xc8\x9e\x84\x18\x94\xbb\xa3\xd8\x20\xa5\xa0\xb3\xe4\xf7\xde\x7c\xcd\x5e\x8a\x0f\xca\x49\x5c\x44\xbd\xc9\x3b\xd6\x2b\xdd\x44\xcf\xf4\x6d\xcd\x94\x31\xf9\x0c\x57\x78\x10\xe4\x2b\xf9\x59\x47\xf7\x86\x25\x45\xbc\xa0\x9e\xe9\xe1\x39\x84\x34\xff\xc2\x86\x3f\xe8\x0e\xa5\x88\x4a\x4f\xd4\x95\x4b\x44\x2d\x97\x01\x7a\x88\xff\xbd\xba\x64\x8e\x60\x6e\xe9\xff\x58\x6b\xcc\x46\xb8\x17\x74\x69\xf2\xc2\xc1\x9d\x5e\x53\xbb\xf6\xc9\x3a\x92\x8e\xa0\x81\x17\x08\xf1\x6e\x10\x56\x2e\x5a\x28\x49\xfb\xd9\x97\xa7\xcc\x5f\xc8\x8f\x85\x7c\x5f\x7d\x6a\x55\x6b\x36\xbb\xfd\x04\x00\x00\xff\xff\x57\x3a\xd3\x8c\x07\x01\x00\x00" - -func accountsRevoke_keyCdcBytes() ([]byte, error) { - return bindataRead( - _accountsRevoke_keyCdc, - "accounts/revoke_key.cdc", - ) -} - -func accountsRevoke_keyCdc() (*asset, error) { - bytes, err := accountsRevoke_keyCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "accounts/revoke_key.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0x7a, 0xb7, 0x28, 0x37, 0xfd, 0xce, 0x77, 0xa9, 0x10, 0xf6, 0xfc, 0xc, 0x62, 0x2c, 0x6c, 0x4d, 0x5b, 0x17, 0xf6, 0xfb, 0xf7, 0x29, 0x5f, 0x34, 0x5d, 0x50, 0xd3, 0x50, 0x8d, 0xd5, 0x15}} - return a, nil -} - -var _dkgAdminForce_stop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xbf\x6a\xc3\x30\x10\xc6\x77\x3f\xc5\x87\x87\xa0\x2c\x7a\x00\xd3\x36\xa4\x4d\x9b\x21\x4b\xa1\xd0\x5d\x95\xcf\x8e\xa8\xac\x33\xe7\x13\x29\x84\xbc\x7b\xb1\x95\x14\x32\xf4\xb6\x3b\xee\xf7\xfd\x09\xc3\xc8\xa2\x78\x8b\x7c\xda\x1d\xf6\xe8\x84\x07\xd4\xd7\xad\xae\x2a\x15\x97\x26\xe7\x35\x70\xc2\xb9\xaa\x00\x20\x92\xa2\xfd\xee\xb7\xed\x10\x52\x83\xd5\xf5\xd7\x2e\x7b\xf9\x18\x85\x46\x27\x64\xa6\xd0\x27\x92\x06\x2e\xeb\xd1\x3c\xb3\x08\x9f\x3e\x5d\xcc\xb4\xc6\x6a\xeb\x3d\xe7\xa4\x6b\x9c\x17\x62\x9e\x89\x62\x67\x6f\xc2\x78\x44\xa1\xed\xa4\x2c\xae\x27\xfb\xb5\xf0\x0f\xf7\x7e\x4f\x66\x0e\xdc\xe0\xee\xf8\x51\x88\x77\xa7\xc7\xf5\x9f\xfa\x3c\x9b\x0d\x46\x97\x82\x37\xf5\x0b\xe7\xd8\x22\xb1\xa2\xc8\x62\xee\x5e\x8c\x85\x3a\x12\x4a\x9e\xea\x02\x5f\x4a\x27\xfa\x21\x9f\x95\xfe\xcb\x6b\x3b\x16\x4f\xaf\xa9\xdd\x1d\xf6\xe6\x06\x5e\xaa\xdf\x00\x00\x00\xff\xff\x8e\x1e\xeb\xa5\x5e\x01\x00\x00" +var _dkgAdminForce_stop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x41\x4f\x83\x40\x10\x85\xef\xfc\x8a\x97\x1e\x0c\x5c\x88\x67\xa2\x36\x44\x2a\x07\x2e\x46\x7e\xc1\xba\x0c\x74\x23\xcc\x90\x61\x48\x9b\x98\xfe\x77\x83\x6b\x35\x3d\xf8\x2e\x9b\x9d\xbc\xf7\xcd\x9b\x30\xcd\xa2\x86\x97\x51\x4e\x55\x53\xa3\x57\x99\x70\x7f\xae\x9a\xba\xac\xaa\xb7\x43\xdb\x26\x89\xa9\xe3\xc5\x79\x0b\xc2\xf8\x4c\x12\x00\x18\xc9\xd0\x7d\x0c\x65\x37\x05\x2e\x70\xf7\x13\xce\xbf\xff\xd1\x31\x2b\xcd\x4e\x29\x5d\xc2\xc0\xa4\x05\xca\xd5\x8e\xa5\xf7\xb2\xb2\x65\x57\xca\xa6\x85\xc6\x3e\xbf\xa2\xf0\x88\xe8\xcf\xdf\x45\x55\x4e\x0f\xb7\xe4\xa7\x74\x6b\x57\xe0\x66\xd8\x9a\xa8\x1b\xe8\xd5\xd9\x31\xfb\xa5\x6e\xda\xef\x31\x3b\x0e\x3e\xdd\x3d\xcb\x3a\x76\x60\x31\x44\x2c\xb6\x43\xe3\x42\xa5\x9e\x94\xd8\xd3\x2e\x8b\x9d\x2e\xf1\xa1\x33\xf9\xd5\xe8\xdf\xa6\x79\x2f\xea\xe9\xc0\x5d\xd5\xd4\xe9\x5f\xf4\xf2\x15\x00\x00\xff\xff\x6b\xe4\xb6\xb3\x4e\x01\x00\x00" func dkgAdminForce_stop_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -799,11 +730,11 @@ func dkgAdminForce_stop_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/force_stop_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd, 0x7, 0x7c, 0x9c, 0xa1, 0xca, 0xf3, 0xe6, 0x91, 0x69, 0x51, 0x5d, 0xe5, 0x2c, 0xbc, 0x86, 0x32, 0xf5, 0xb5, 0x87, 0xed, 0x11, 0x8e, 0x29, 0xe6, 0x7c, 0x43, 0xc6, 0x29, 0x64, 0x8b, 0x6d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0x53, 0xf9, 0x8d, 0x95, 0x45, 0x15, 0x8e, 0x63, 0x8, 0xf2, 0x6b, 0x8e, 0xd9, 0x78, 0xd1, 0xb5, 0x25, 0x89, 0x30, 0xf7, 0x90, 0x6d, 0xe2, 0x60, 0xed, 0x4d, 0xb9, 0x5d, 0xdc, 0xd, 0x6c}} return a, nil } -var _dkgAdminPublish_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x9e\x3d\x94\x04\x24\xb9\x17\x15\x4a\x45\x0f\x5e\x04\xfd\x03\xd3\xed\x36\x19\xdc\xec\x2e\x33\x13\x44\x4a\xff\xbb\x34\xa9\x12\xc1\xbd\xbd\xe5\x7d\xdf\x1b\x1e\x4a\x16\xc3\x53\xcc\x9f\x8f\x2f\xcf\x38\x4a\x1e\xb0\xba\xa6\x95\x73\x6d\x8b\xf7\x9e\x15\x26\x94\x94\xbc\x71\x4e\x60\x45\x4e\xf1\x0b\xc7\x2c\xb0\xa0\xc6\xa9\xbb\x71\x6e\xd9\x38\x39\x07\x00\x45\x42\x21\x09\x95\x72\x97\x82\x6c\x40\xa3\xf5\xd5\x8e\x0a\xed\x39\xb2\x71\xd0\x1a\xeb\xad\xf7\x79\x4c\x56\xe3\x34\x21\x97\x17\x83\x81\x0e\x03\xa7\x1d\x15\xdc\x63\xa6\x1b\xbf\xe0\x1a\xb5\x2c\xd4\x85\x86\x55\xc7\x70\xb7\xbe\xde\xdb\x6c\x2f\xd4\x43\xf5\x27\xbe\xcd\xd5\x57\xb2\xbe\xfe\x9d\xf8\xcf\x59\xc6\x7d\x64\xed\xab\x9f\xe9\x5b\x90\x6d\xd0\x4e\xdf\xbe\x3d\x7c\x74\x93\x6e\x76\x9c\xdd\xd9\x7d\x07\x00\x00\xff\xff\x7d\x13\x3d\x16\x3a\x01\x00\x00" +var _dkgAdminPublish_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x41\x4b\xc3\x40\x10\x05\xe0\xfb\xfc\x8a\xe7\x45\x5a\x90\xc6\x73\x11\x21\x10\xed\xa1\x17\x31\xfe\x81\x35\xdd\x6e\x86\x6e\x66\x96\xd9\x09\x2a\xd2\xff\x2e\x1a\x05\x3b\xc7\x79\x1f\x8f\xc7\x53\x51\x73\x3c\x66\x7d\xeb\xf6\x3b\x1c\x4d\x27\xdc\xbe\x77\xfb\x5d\xdb\x75\xcf\x0f\x7d\x4f\xd4\x34\x78\x19\xb9\xc2\x2d\x48\x0d\x83\xb3\x0a\xb8\x42\x25\x7f\xe0\xa8\x06\x8f\xd5\x59\xd2\x15\xd1\x7f\xf1\x49\x04\x00\xc5\x62\x09\x16\x57\x95\x93\x44\xdb\xa2\x9d\x7d\x6c\x87\x41\x67\xf1\xf5\x9f\xf9\xbe\x25\xdf\x64\x96\xd3\xdd\xf5\xef\x98\x4d\x7b\x98\x58\xee\x57\x4d\x99\x5f\x33\x0f\xcd\xe1\x94\x7e\x3e\x37\xf0\x60\x29\xfa\x16\x17\xb0\x77\xb5\x90\xe2\x53\xf0\x71\xbd\x14\x9f\x89\xce\x5f\x01\x00\x00\xff\xff\xd0\x9c\x76\xb8\xe0\x00\x00\x00" func dkgAdminPublish_participantCdcBytes() ([]byte, error) { return bindataRead( @@ -819,11 +750,11 @@ func dkgAdminPublish_participantCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/publish_participant.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x80, 0x1f, 0x80, 0x25, 0x1a, 0x97, 0xdc, 0x4d, 0x5, 0x1a, 0xfe, 0x33, 0x88, 0x86, 0x54, 0x16, 0xe2, 0xc9, 0x2b, 0x7e, 0xaa, 0x72, 0xdf, 0x55, 0x8f, 0x4a, 0x51, 0xd6, 0xe7, 0x59, 0x4e, 0xe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xec, 0x55, 0xff, 0x37, 0xec, 0x8, 0x49, 0xe7, 0xe0, 0xd, 0xea, 0xad, 0x75, 0x78, 0xe, 0x7e, 0x3e, 0xc5, 0xc4, 0x78, 0x6f, 0xda, 0x66, 0x26, 0x76, 0x96, 0xa0, 0x81, 0xc, 0xc3, 0xe3, 0x1c}} return a, nil } -var _dkgAdminSet_safe_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x31\x6b\xc3\x30\x10\x85\x77\xff\x8a\xc3\x43\x70\x16\x4f\xa5\x83\x69\x1b\xd2\x96\x74\xe8\x12\x70\xdb\x5d\x95\x9f\x6d\x51\x59\x32\xa7\x13\x0e\x94\xfc\xf7\xe2\xc8\x09\x04\x9a\xdb\xee\xd0\xfb\x9e\xde\x33\xc3\xe8\x59\x68\x67\xfd\xf4\xfa\xfe\x46\x2d\xfb\x81\xf2\x65\xcb\xb3\x4c\x58\xb9\xa0\xb4\x18\xef\x0a\x87\xe9\xa3\x67\x84\xde\xdb\x66\x0f\xd6\x70\xa2\x3a\x54\xf4\xb9\x33\x87\xfb\xbb\xcd\x9a\x7e\xb3\x8c\x88\xc8\x42\xa8\xf9\xe9\xb6\xcd\x60\x5c\x45\xab\x05\x56\x9e\xf6\xf4\x62\x64\x8c\x8a\x51\x04\xd3\x39\x70\x45\x2a\x4a\x5f\x3c\x7b\x66\x3f\x7d\x29\x1b\xb1\xa6\xd5\x56\x6b\x1f\x9d\xcc\x50\x5a\x26\xc0\xb6\xe5\x19\x4c\x8f\x94\xd4\x65\x10\xcf\xaa\x43\xf9\x7d\xd2\x3f\x5c\xfb\x3d\x15\x73\xa2\x8a\xae\x8e\x75\x52\xec\x95\xf4\xeb\x0b\x7d\x9e\xcd\x86\x46\xe5\x8c\x2e\xf2\x17\x1f\x6d\x43\xce\x0b\x25\x2c\xcd\xe5\x24\x63\x46\x0b\x86\xd3\xc8\x93\xf8\x98\x32\xe1\x00\x1d\x05\xb7\xfe\x5b\x06\x48\xad\x5a\xd4\x51\x6b\x84\x70\x29\xf2\x66\xab\xff\xdf\xcf\x96\xc7\xec\x2f\x00\x00\xff\xff\x3c\x47\xb5\xfd\xb9\x01\x00\x00" +var _dkgAdminSet_safe_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xc1\x6a\xb4\x40\x10\x84\xef\x3e\x45\xb3\x87\x1f\xbd\xc8\x7f\x08\x39\x48\x12\x91\x98\xdd\xc3\x5e\x96\x98\x3c\xc0\x64\x2c\x75\x88\xce\x48\x4f\x8b\x42\xd8\x77\x0f\x66\x12\xc3\x42\xb6\x2f\xc3\x14\xc5\x57\x45\x99\x61\x74\x2c\xb4\xef\xdd\x5c\x1e\x0f\xd4\xb0\x1b\xe8\xff\x52\x1e\x0f\x45\x59\x3e\x3f\x55\x55\x14\x09\x2b\xeb\x95\x16\xe3\x6c\x6c\x31\xbf\x74\x0c\xdf\xb9\xbe\x3e\x81\x35\xac\xa8\x16\x19\xbd\xee\xcd\x72\x7b\x93\x27\xf4\x11\x45\x44\x44\x3d\x84\xea\xf7\xb6\xa8\x07\x63\x33\xfa\xf7\x4d\x4f\xbf\xfe\xc1\x31\x32\x46\xc5\x88\xbd\x69\x2d\x38\xa3\x62\x92\xae\xd0\xda\x4d\x56\x36\xca\x7a\x1e\x7d\x93\xfe\xa0\xe8\x9e\x82\x3f\x7d\x73\xcc\x6e\xbe\xbb\x24\x3f\xc4\x6b\xfd\x8c\x2e\xc4\x4a\x1c\xab\x16\x27\x25\x5d\xb2\x51\xd7\xcb\x73\x1a\x95\x35\x3a\xde\x3d\xba\xa9\xaf\xc9\x3a\xa1\x80\xa5\x75\x89\x10\xc8\x68\xc0\xb0\x1a\xbb\x24\x74\x3a\x87\x07\x0b\xf4\x24\xb8\xda\x34\xf5\x90\x4a\x35\xa8\x26\xad\xe1\xfd\x36\xda\xd5\x05\xff\xd6\x7f\x43\xcf\x9f\x01\x00\x00\xff\xff\x08\xd4\x0e\xba\xa9\x01\x00\x00" func dkgAdminSet_safe_thresholdCdcBytes() ([]byte, error) { return bindataRead( @@ -839,11 +770,11 @@ func dkgAdminSet_safe_thresholdCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/set_safe_threshold.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0x67, 0xe6, 0xde, 0x86, 0xdf, 0xcb, 0xd9, 0x80, 0x6d, 0xf1, 0xfc, 0x5, 0xef, 0x4e, 0x31, 0xed, 0x61, 0xe0, 0x8e, 0xfa, 0xbd, 0x3f, 0xae, 0x92, 0x1e, 0x10, 0x99, 0xb1, 0x3d, 0x43, 0xa6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2a, 0xee, 0x21, 0xa5, 0x42, 0x7, 0x30, 0x80, 0x1b, 0x7f, 0x7f, 0x43, 0xfd, 0x0, 0x77, 0xfc, 0x63, 0xc5, 0x5d, 0x9c, 0x14, 0xe5, 0xe8, 0x5b, 0x96, 0x59, 0xd7, 0x95, 0xcc, 0x7a, 0x44, 0x85}} return a, nil } -var _dkgAdminStart_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xb1\x6a\xc3\x30\x10\x86\x77\x3f\xc5\x8f\x87\x60\x2f\x7e\x00\xd3\x36\xa4\x35\x0d\x25\x4b\x21\xd0\xa5\x74\x50\xe5\xb3\x23\x6a\xeb\xcc\xe9\x44\x0a\x25\xef\x5e\x1c\x39\x2d\x19\x72\x93\x4e\xe8\xfb\x4e\xf7\xbb\x71\x62\x51\x3c\x0f\x7c\x6c\x76\x5b\x74\xc2\x23\xf2\xa5\xcb\xb3\x4c\xc5\xf8\x60\xac\x3a\xf6\x85\xe7\x96\x5e\x9a\x50\xe3\x7d\xaf\xe2\x7c\xff\x51\xe2\x27\xcb\x00\x60\x20\x45\xfb\xd5\x6f\xda\xd1\xf9\x1a\xab\x05\xaf\xce\x7d\x7a\x31\x09\x4d\x46\xa8\x08\xae\xf7\x24\x35\x4c\xd4\x43\xf1\xc8\x22\x7c\x7c\x33\x43\xa4\x12\xab\x8d\xb5\x1c\xbd\xce\x52\x2c\x15\x68\xe8\xaa\x8b\x18\xf7\x48\x74\x15\x94\xc5\xf4\x54\x7d\x9e\xf9\xbb\xeb\x79\x0f\xc5\xbc\x43\x8d\xab\xcb\x7d\x22\x5e\x8d\x1e\xca\x3f\xfb\x5c\xeb\x35\x26\xe3\x9d\x2d\xf2\x27\x8e\x43\x0b\xcf\x8a\xa4\xc5\x1c\x47\x1a\x2c\xd4\x91\x90\xb7\x94\x27\xf8\x94\x76\xa2\x6f\xb2\x51\xe9\xd6\x7f\xab\xa0\x46\xb4\xd9\x6d\xff\x83\x5b\x0e\x17\xcb\x29\xfb\x0d\x00\x00\xff\xff\x5b\x70\x21\x9a\x7e\x01\x00\x00" +var _dkgAdminStart_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x8f\x1e\x24\xb9\x04\xcf\x41\x2d\xc1\xd5\x20\xb9\x88\x39\x8a\x87\x75\x33\x49\x17\x93\x9d\x30\x99\xd0\x82\xf4\xbf\x4b\xdc\xda\xd2\x83\xef\xb2\x3b\xc3\xe3\x9b\x37\xe3\xc7\x89\x45\xf1\x3c\xf0\xde\xd4\x15\x3a\xe1\x11\xb7\x07\x53\x57\xa5\x31\x6f\x4f\x4d\x93\x24\x2a\x36\xcc\xd6\xa9\xe7\x90\x06\x6e\xe9\xc5\xcc\x05\xde\x1b\x15\x1f\xfa\x8f\x0c\xdf\x49\x02\x00\x03\x29\xda\xaf\xbe\x6c\x47\x1f\x0a\xdc\x9c\x78\xf9\x6f\x1d\x1d\x93\xd0\x64\x85\xd2\xd9\xf7\x81\xa4\x40\xb9\xe8\xae\x74\x8e\x97\xa0\x67\xca\xaa\x99\x86\x2e\xff\x43\xe1\x1e\xd1\x9f\x7f\xb2\x08\xef\xef\xae\xc9\x0f\xe9\x1a\xb8\xc0\x55\xb3\x51\x16\xdb\xd3\xab\xd5\x5d\x76\xa6\xae\xda\x6e\x31\xd9\xe0\x5d\xba\x79\xe4\x65\x68\x11\x58\x11\xb1\x58\x77\x8f\x03\x85\x3a\x12\x0a\x8e\x36\x59\xcc\x74\x8c\x0f\x1d\xc8\x2d\x4a\xff\x26\xcd\x67\xb5\xa2\xa6\xae\x2e\x47\x3a\x7d\x2e\x9c\xe3\x4f\x00\x00\x00\xff\xff\x07\x1f\xfa\x84\x6e\x01\x00\x00" func dkgAdminStart_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -859,11 +790,11 @@ func dkgAdminStart_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/start_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0xad, 0x9e, 0x9d, 0xaa, 0x32, 0xd9, 0x6a, 0x40, 0x16, 0x36, 0x35, 0x82, 0x11, 0xeb, 0x74, 0x9f, 0xfc, 0x95, 0xaa, 0xa7, 0x64, 0x9c, 0xf0, 0xc5, 0x3c, 0x4a, 0xd9, 0xb, 0x1e, 0x18, 0xb7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0x9c, 0x4f, 0xf1, 0xca, 0x18, 0x35, 0xe8, 0xbf, 0xb3, 0x93, 0x79, 0x1b, 0x85, 0xe7, 0xc5, 0x4b, 0x22, 0x3, 0xa, 0x8a, 0x91, 0x42, 0xf4, 0x2e, 0x24, 0x32, 0x55, 0xba, 0xc8, 0x15, 0x5c}} return a, nil } -var _dkgAdminStop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xcd\x6a\xeb\x30\x10\x85\xf7\x7e\x8a\x83\x17\x41\xde\xe8\x01\xcc\xbd\x0d\x69\x43\xb3\xc8\xa6\x50\xe8\x5e\x95\xc7\x8e\xa8\xac\x31\xe3\x11\x29\x84\xbc\x7b\xb1\x95\x14\xb2\xe8\xec\x66\x98\xef\xfc\x84\x71\x62\x51\xbc\x46\x3e\xef\x8f\x07\xf4\xc2\x23\xea\xdb\x56\x57\x95\x8a\x4b\xb3\xf3\x1a\x38\xe1\x52\x55\x00\x10\x49\xd1\x7d\x0d\xbb\x6e\x0c\xa9\xc5\xe6\xf6\x6b\xd7\xbd\x7c\x4c\x42\x93\x13\x32\x73\x18\x12\x49\x0b\x97\xf5\x64\x9e\x59\x84\xcf\x1f\x2e\x66\x6a\xb0\xd9\x79\xcf\x39\x69\x83\xcb\x4a\x2c\x33\x53\xec\xed\x5d\x18\xff\x51\x68\x3b\x2b\x8b\x1b\xc8\x7e\xae\xfc\xbf\x47\xbf\x27\xb3\x04\x6e\xf1\x70\x7c\x2f\xc4\x9b\xd3\x53\xf3\xab\xbe\xcc\x76\x8b\xc9\xa5\xe0\x4d\xfd\xc2\x39\x76\x48\xac\x28\xb2\x58\xba\x17\x63\xa1\x9e\x84\x92\xa7\xba\xc0\xd7\xd2\x89\xbe\xc9\x67\xa5\xbf\xf2\x5a\x4a\xdd\xfe\x78\x30\x77\xe6\x5a\xfd\x04\x00\x00\xff\xff\x87\x3a\x5a\x8e\x59\x01\x00\x00" +var _dkgAdminStop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x41\x4f\x83\x40\x10\x85\xef\xfc\x8a\x97\x1e\x0c\x5c\x88\x67\xa2\x36\x44\x94\x03\x17\x23\xbf\x60\x5d\x06\xba\x11\x66\xc8\x30\xa4\x4d\x4c\xff\xbb\xc1\xb5\x9a\x1e\xfa\x2e\x9b\x9d\xbc\xf7\xcd\x9b\x30\xcd\xa2\x86\xd7\x51\x8e\x55\x53\xa3\x57\x99\x70\x7f\xaa\x9a\xba\xac\xaa\xf7\x97\xb6\x4d\x12\x53\xc7\x8b\xf3\x16\x84\xf1\x95\x24\x00\x30\x92\xa1\xfb\x1c\xca\x6e\x0a\x5c\xe0\xee\x37\x9c\xff\xfc\xa3\x63\x56\x9a\x9d\x52\xba\x84\x81\x49\x0b\x94\xab\x1d\x4a\xef\x65\x65\xcb\x2e\x94\x4d\x0b\x8d\x7d\x7e\x41\xe1\x11\xd1\x9f\x7f\x88\xaa\x1c\x1f\xae\xc9\x4f\xe9\xd6\xae\xc0\xd5\xb0\x35\x51\x37\xd0\x9b\xb3\x43\xf6\x47\xdd\xb4\xdf\x63\x76\x1c\x7c\xba\x7b\x96\x75\xec\xc0\x62\x88\x58\x6c\x87\xc6\x85\x4a\x3d\x29\xb1\xa7\x5d\x16\x3b\x9d\xe3\x43\x27\xf2\xab\xd1\xcd\xa6\x39\x71\x57\x35\x75\xfa\x9f\x3a\x7f\x07\x00\x00\xff\xff\x74\x8c\xee\x80\x49\x01\x00\x00" func dkgAdminStop_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -879,11 +810,11 @@ func dkgAdminStop_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/stop_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xda, 0x6d, 0xdc, 0x10, 0x3a, 0xa6, 0xb1, 0xad, 0x8f, 0x3, 0x9, 0x74, 0xf9, 0xc6, 0x3e, 0x5a, 0x8e, 0x69, 0xcf, 0x6e, 0x2a, 0xe, 0xed, 0x75, 0x9c, 0xf3, 0x4d, 0x37, 0x62, 0x8f, 0x9e, 0x5f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0xe4, 0x2, 0xa5, 0xa0, 0x9b, 0xd5, 0xc3, 0xdb, 0x5d, 0x5a, 0xfa, 0xe6, 0x41, 0x85, 0x32, 0x8e, 0xae, 0x4e, 0xd8, 0x6f, 0x1a, 0x37, 0x77, 0x7, 0xb2, 0xce, 0x6, 0x29, 0x48, 0x43, 0x84}} return a, nil } -var _dkgCreate_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\x4f\x8b\x32\x31\x0c\xc6\xef\xfd\x14\x61\x0e\xd2\x01\xad\xf7\xc1\xf7\x15\x59\xd9\x65\xd9\x8b\x20\xec\x3d\xb6\x71\x2c\xd6\xb6\xa4\x19\x3d\x2c\x7e\xf7\x45\x3b\x2e\x9a\x4b\xff\xa4\xcf\x2f\xe9\x13\x7f\xca\x89\x05\xde\x43\xba\xac\xbf\x3e\x60\xcf\xe9\x04\xcd\x78\x6a\x94\x12\xc6\x58\xd0\x8a\x4f\x51\xa3\x73\x4c\xa5\x74\xb0\xaa\x9b\x29\xc4\xe4\xe8\x73\xdd\xc1\x56\xd8\xc7\xbe\x85\x1f\xa5\x00\x00\x32\x53\x46\x26\x5d\x7c\x1f\x89\x3b\xc0\x41\x0e\x7a\x8b\x67\xfa\xc6\x30\x50\x0b\x93\x95\xb5\x69\x88\x72\x13\xc0\x18\x81\x04\xd0\x9d\x7c\x84\x7f\xd0\x93\x8c\x2f\x1e\x35\x5b\x63\x31\xe3\xce\x07\x2f\x9e\x8a\xd9\x25\xe6\x74\x59\x4c\xc6\x3e\xcd\xea\x26\xfc\xaf\xe7\x79\xd8\x05\x6f\xe7\xee\xd8\xdf\x6f\xda\x3f\xfa\x3d\x96\x4b\xc8\x18\xbd\xd5\xcd\x5b\x1a\x82\x83\x98\x04\x2a\x69\xac\xcc\xb4\x27\xa6\x68\xa9\x69\xd5\x4b\x63\xee\xd8\x6f\x90\xc5\x5b\x9f\x31\x0a\x2c\x66\x55\x60\x2c\x13\x0a\x3d\xa5\xf4\xc3\x91\xba\x3e\x61\xaa\x17\xa6\x48\x62\xec\xc9\x14\x3c\x93\x5e\xcc\x5e\xc1\x53\x90\xd4\x3d\x46\x61\x9e\x12\xdb\xaa\xda\xa0\x1c\xea\x9f\xae\x4a\x5d\x7f\x03\x00\x00\xff\xff\x98\xcb\x3b\x89\xba\x01\x00\x00" +var _dkgCreate_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x50\x4d\x6e\xf2\x30\x10\xdd\xfb\x14\x23\x16\x9f\x1c\x09\xc2\xb7\x8e\x68\x51\x44\x5a\x54\xb1\x41\xcd\x09\x06\x7b\x30\x16\xc1\xb6\x26\x93\xd2\xaa\xe2\xee\x15\x75\xa8\x60\x36\xb6\xfc\xe6\xfd\xf8\xf9\x53\x8a\x2c\xf0\xda\xc5\x73\xb3\x59\xc3\x9e\xe3\x09\xfe\x7f\x36\x9b\x75\xdd\x34\xef\x2f\x6d\xab\x94\x30\x86\x1e\x8d\xf8\x18\x34\x5a\xcb\xd4\xf7\x15\xd4\xf9\x32\x85\x10\x2d\xbd\x35\x15\xb4\xc2\x3e\xb8\x02\xbe\x95\x02\x00\x48\x4c\x09\x99\x74\xef\x5d\x20\xae\xa0\x1e\xe4\x50\x1b\x13\x87\x20\xd7\x1d\x18\xa7\x23\x01\xb4\x27\x1f\xe0\x09\x1c\xc9\xb8\x71\xb3\x29\x4a\x47\xb2\xc2\x84\x3b\xdf\x79\xf9\x5a\xfc\x1b\x53\x96\xf5\x95\xf2\xac\xe7\x69\xd8\x75\xde\xcc\xed\xd1\xfd\xbe\x14\x7f\xba\xd7\x29\x77\x91\x39\x9e\x75\x01\xcb\x25\x24\x0c\xde\xe8\xc9\x2a\x0e\x9d\x85\x10\x05\x32\x38\x9a\x33\xed\x89\x29\x18\x9a\x14\xea\x21\x9b\x3d\xba\x2d\xb2\x78\xe3\x13\x06\x81\xc5\x2c\x13\x4a\xc3\x84\x42\x77\x90\xbe\xf5\x90\xcf\x3b\x99\xdc\x40\xd9\xe3\x07\xe9\xc5\xec\x51\x70\x0a\x12\xab\x5b\xf7\xe5\x1d\xd0\x4a\x64\x74\xb4\x45\x39\xe4\x4f\x5d\x94\xba\xfc\x04\x00\x00\xff\xff\xb5\xd4\x8a\x93\xab\x01\x00\x00" func dkgCreate_participantCdcBytes() ([]byte, error) { return bindataRead( @@ -899,11 +830,11 @@ func dkgCreate_participantCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/create_participant.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc8, 0xd2, 0xd0, 0x2c, 0xe0, 0x71, 0x8f, 0x21, 0x72, 0xbf, 0x1e, 0x92, 0xa8, 0x50, 0xdd, 0x8b, 0x75, 0xf3, 0x9, 0xba, 0x2d, 0x99, 0x6, 0xd7, 0x5c, 0x10, 0x6f, 0x42, 0xe8, 0xd7, 0x40, 0x67}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9a, 0xdf, 0xc8, 0x88, 0x15, 0x2e, 0xc9, 0xee, 0xa3, 0xd2, 0xcc, 0x4b, 0xb5, 0xf2, 0x5, 0x2d, 0x92, 0x4f, 0x6e, 0xbd, 0x4b, 0x7c, 0x84, 0x40, 0x4a, 0x9b, 0x5e, 0x9f, 0x15, 0x5, 0x74, 0xb2}} return a, nil } -var _dkgScriptsGet_consensus_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\xa2\x83\x4b\x8a\x32\xf3\xd2\x63\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xa6\xe8\xa5\xa7\x96\x38\xe7\xe7\x15\xa7\xe6\x15\x97\x16\xfb\xe5\xa7\xa4\x7a\xba\x14\x6b\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x03\x4f\x6a\x43\x6c\x00\x00\x00" +var _dkgScriptsGet_consensus_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xb1\x0a\xc2\x30\x10\x06\xe0\x3d\x4f\xf1\x8f\xcd\x22\xce\x6e\x62\xb4\x48\xc1\xc1\x8c\xe2\x10\xea\xb5\x04\x92\x3b\xb9\x4b\x50\x10\xdf\xdd\xc9\x17\xf8\x72\x7d\x8a\x36\x9c\x8a\xbc\xc2\x34\x62\x51\xa9\xd8\xbe\xc3\x34\xee\x43\xb8\x1e\x63\x74\x2e\xcd\x33\x99\x0d\xa9\x14\x8f\xa5\x33\x6a\xca\x3c\xf8\x1d\x6e\xb1\x69\xe6\xf5\x8e\x8f\x03\x00\xa5\xd6\x95\xff\xd0\x66\xa5\x76\x10\x36\x62\xeb\x76\x91\x07\x9d\x83\x0d\xde\x7d\x7f\x01\x00\x00\xff\xff\x60\x8c\xcb\x25\x6f\x00\x00\x00" func dkgScriptsGet_consensus_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -919,11 +850,11 @@ func dkgScriptsGet_consensus_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_consensus_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe7, 0x3d, 0x2d, 0xb4, 0x11, 0x55, 0x1c, 0x12, 0x8c, 0xef, 0x55, 0x49, 0x4, 0x87, 0x30, 0xe, 0x30, 0x30, 0x9, 0xbc, 0x2b, 0x37, 0x38, 0xda, 0x84, 0x9d, 0x4e, 0xf2, 0xc0, 0x6b, 0x83, 0xaa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0xc3, 0x8d, 0x18, 0xc3, 0x4e, 0xd0, 0x79, 0xb8, 0x29, 0xa, 0xcd, 0x95, 0x6e, 0xf5, 0xf0, 0x2, 0x58, 0x8e, 0xc5, 0x88, 0x6f, 0x4a, 0x29, 0xdc, 0x2e, 0x1d, 0xcf, 0x87, 0x29, 0x1d, 0xc5}} return a, nil } -var _dkgScriptsGet_dkg_canonical_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\xa2\x83\x4b\x8a\x32\xf3\xd2\xed\x63\xed\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xe6\xe8\xa5\x64\xa7\x3b\xe7\xe7\x16\xe4\xa4\x96\xa4\xa6\x68\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x4a\x98\xa7\xb9\x67\x00\x00\x00" +var _dkgScriptsGet_dkg_canonical_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x88\x0e\x2e\x29\xca\xcc\x4b\xb7\x8f\xb5\x57\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x19\xa5\x97\x92\x9d\xee\x9c\x9f\x5b\x90\x93\x5a\x92\x9a\xa2\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\xce\x4e\x4f\xd2\x6a\x00\x00\x00" func dkgScriptsGet_dkg_canonical_final_submissionCdcBytes() ([]byte, error) { return bindataRead( @@ -939,11 +870,11 @@ func dkgScriptsGet_dkg_canonical_final_submissionCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_dkg_canonical_final_submission.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x57, 0xf2, 0x83, 0x6, 0xda, 0x92, 0xb2, 0x41, 0x12, 0x21, 0xe4, 0x90, 0x6e, 0x29, 0x13, 0xef, 0x81, 0x0, 0xf0, 0xe9, 0xfd, 0xb9, 0x93, 0x8f, 0x9d, 0xd0, 0x11, 0x19, 0xe6, 0x76, 0x9c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0xea, 0xf4, 0xe4, 0x20, 0x5d, 0x4c, 0xb7, 0x19, 0x78, 0x89, 0xd1, 0x97, 0x27, 0x7a, 0x7a, 0x1b, 0xd7, 0x38, 0xed, 0x37, 0xd9, 0x50, 0x38, 0xf, 0x4c, 0x16, 0x2a, 0x5b, 0xf2, 0x51, 0xe3}} return a, nil } -var _dkgScriptsGet_dkg_completedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x9c\xf2\xf3\x73\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\x26\xe8\xa5\x64\xa7\x3b\xe7\xe7\x16\xe4\xa4\x96\xa4\xa6\x68\x68\x2a\x28\xda\x2a\xe4\x65\xe6\x70\xd5\x02\x02\x00\x00\xff\xff\x11\x95\xaf\x8f\x68\x00\x00\x00" +var _dkgScriptsGet_dkg_completedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x70\xca\xcf\xcf\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x19\xa2\x97\x92\x9d\xee\x9c\x9f\x5b\x90\x93\x5a\x92\x9a\xa2\xa1\xa9\xa0\x68\xab\x90\x97\x99\xc3\x55\x0b\x08\x00\x00\xff\xff\xfe\x3a\x11\x65\x6b\x00\x00\x00" func dkgScriptsGet_dkg_completedCdcBytes() ([]byte, error) { return bindataRead( @@ -959,11 +890,11 @@ func dkgScriptsGet_dkg_completedCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_dkg_completed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x3d, 0xd5, 0x9b, 0xea, 0x53, 0x7d, 0x55, 0xf4, 0xf3, 0x4b, 0x20, 0x1b, 0x34, 0x62, 0x55, 0xf8, 0x5, 0x8c, 0x9a, 0x74, 0x89, 0xae, 0x91, 0x6, 0x82, 0xe4, 0x48, 0xf6, 0x4e, 0x8d, 0xee}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd5, 0x4d, 0x2e, 0xb8, 0x6c, 0x19, 0xdc, 0xb0, 0x4d, 0x3c, 0x2f, 0xad, 0x19, 0x41, 0x24, 0x1f, 0xc0, 0x24, 0x26, 0x16, 0x8a, 0x0, 0x54, 0x17, 0x73, 0x47, 0x36, 0xd3, 0x9f, 0x14, 0x87, 0x33}} return a, nil } -var _dkgScriptsGet_dkg_enabledCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x9c\xf2\xf3\x73\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\x26\xe8\xa5\x64\xa7\xbb\xe6\x25\x26\xe5\xa4\xa6\x70\xd5\x02\x02\x00\x00\xff\xff\x55\x28\x2f\xf2\x5d\x00\x00\x00" +var _dkgScriptsGet_dkg_enabledCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x70\xca\xcf\xcf\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x19\xa2\x97\x92\x9d\xee\x9a\x97\x98\x94\x93\x9a\xc2\x55\x0b\x08\x00\x00\xff\xff\x31\x60\x50\x0e\x60\x00\x00\x00" func dkgScriptsGet_dkg_enabledCdcBytes() ([]byte, error) { return bindataRead( @@ -979,11 +910,11 @@ func dkgScriptsGet_dkg_enabledCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_dkg_enabled.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x68, 0xfc, 0x94, 0x94, 0xc2, 0x47, 0xe4, 0x85, 0xd6, 0xa7, 0x3e, 0x3d, 0xda, 0x58, 0x72, 0xa9, 0x4e, 0xf0, 0xd3, 0x49, 0xc0, 0x9e, 0x16, 0x91, 0x58, 0x35, 0xa, 0xb6, 0x16, 0x38, 0x76, 0x3c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfa, 0x6b, 0xcd, 0xb3, 0x66, 0x51, 0xc, 0x1, 0xc6, 0xf9, 0x15, 0xcc, 0xe2, 0x38, 0x3e, 0x60, 0xa0, 0x94, 0x9e, 0x94, 0x8e, 0xe, 0x90, 0xb6, 0x9d, 0x80, 0xf4, 0xec, 0x8d, 0x3a, 0x6c, 0xc7}} return a, nil } -var _dkgScriptsGet_final_submissionsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\xa2\xa3\x83\x4b\x8a\x32\xf3\xd2\xed\x63\x63\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\x06\xe9\xa5\xa7\x96\xb8\x65\xe6\x25\xe6\x04\x97\x26\xe5\x66\x16\x17\x67\xe6\xe7\x15\x6b\x68\x72\xd5\x02\x02\x00\x00\xff\xff\xdf\x0a\xe3\xa8\x6f\x00\x00\x00" +var _dkgScriptsGet_final_submissionsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xb1\x0a\xc2\x30\x10\x06\xe0\x3d\x4f\xf1\x8f\xc9\x22\xce\x2e\x22\xc4\x76\xe8\x66\xc6\xd2\x21\x96\xb4\x1c\x24\x17\xb9\x4b\x50\x10\xdf\xdd\xa9\x2f\xf0\x51\x79\x55\x69\x18\x72\x7d\xfb\x69\xc4\x26\xb5\xe0\xfc\xf1\xd3\x78\xf3\xfe\x71\x0f\xc1\x98\xb8\xae\x49\xd5\xc6\x9c\x1d\xb6\xce\x28\x91\xd8\xba\x0b\xe6\x39\x34\x21\xde\xaf\xcb\x82\xaf\x01\x00\x49\xad\x0b\x1f\xd6\x69\x4f\x6d\x20\x8e\x39\xf4\x67\x21\x55\xaa\xac\xd6\x99\xdf\x3f\x00\x00\xff\xff\x33\x68\x74\xa3\x72\x00\x00\x00" func dkgScriptsGet_final_submissionsCdcBytes() ([]byte, error) { return bindataRead( @@ -999,11 +930,11 @@ func dkgScriptsGet_final_submissionsCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_final_submissions.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xee, 0xfe, 0xb9, 0x5, 0x6d, 0x2e, 0x29, 0xa0, 0x6e, 0x49, 0x94, 0x63, 0x61, 0xb4, 0xe8, 0x3, 0x6a, 0x1a, 0xa2, 0xc1, 0xd8, 0x3b, 0x19, 0x42, 0x60, 0x55, 0xeb, 0x52, 0x69, 0x6f, 0x7, 0x63}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb5, 0x60, 0x32, 0x7f, 0x64, 0xf7, 0xb2, 0x57, 0xd6, 0x91, 0xaf, 0x11, 0x29, 0xf8, 0x18, 0x9c, 0x9a, 0x3f, 0x5d, 0x9, 0x66, 0x4c, 0xcb, 0x77, 0x73, 0xb5, 0x90, 0xad, 0xa0, 0xd9, 0x1, 0x71}} return a, nil } -var _dkgScriptsGet_latest_whiteboard_messagesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x4f\x4b\xc3\x40\x14\xc4\xef\xf9\x14\x43\x4f\x09\xc2\x82\xd7\x62\x2e\x22\x4a\x11\xcf\x1e\x42\x0e\x8f\xe6\x35\x79\xb0\x7f\xc2\xee\xab\x15\xa4\xdf\x5d\xba\x6e\x16\x14\x2f\x0b\x3b\x6f\x66\x7e\x23\x6e\x0d\x51\xf1\x6c\xc3\xe5\xe9\xf5\x05\xa7\x18\x1c\x76\xe5\xb7\x6b\x1a\x3a\x1e\x39\xa5\x96\xac\xed\x70\x3a\x7b\x38\x12\xdf\xde\x4c\x07\x3f\xf1\xe7\x1e\x07\xaf\xdd\x1e\x43\x09\x98\x37\x4e\x89\x66\x1e\xf1\xd5\x00\x80\x65\x85\xfb\x91\x12\xfa\x0d\x62\x66\xd6\xf7\x45\x94\x1f\x03\xc5\xa9\x44\x52\xdb\xe5\xc8\x07\x45\x58\x52\x4e\xba\x1d\xfe\xab\xef\x31\x8c\xd5\x2e\xe8\x51\x27\x65\xf5\xb2\x88\x65\x08\x1e\x2a\xdd\x58\xf6\xb3\x2e\x65\x57\xde\xf6\x0b\x62\x68\x5d\xd9\x4f\xed\xe6\x1f\x64\xec\xaa\xf5\x06\x10\xdc\xe1\x3e\x2b\xd7\xfc\x46\xd6\x73\xf4\x7f\x5a\x9a\xeb\x77\x00\x00\x00\xff\xff\xc3\xba\x75\xf6\x4f\x01\x00\x00" +var _dkgScriptsGet_latest_whiteboard_messagesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\xc3\x30\x10\x85\x77\xff\x8a\x37\xda\x14\x4c\xbb\x86\x7a\x68\x71\x1b\x42\xe8\xd2\x0c\x1d\x8c\x87\x23\xbe\xd8\x07\xb2\x64\xa4\x4b\x13\x28\xf9\xef\xc5\xaa\x2d\x68\xe9\xa2\xe1\xe9\xbb\xf7\x3d\x19\x27\xe7\x15\xaf\xc6\x5d\xea\xfd\x16\x27\xef\x46\xdc\x5f\xeb\xfd\xf6\xa9\xae\xdf\x5f\x0e\x87\x2c\xa3\xe3\x91\x43\xc8\xc9\x98\x02\xa7\xb3\xc5\x48\x62\xf3\x99\xdb\xd9\x8e\xaf\x1b\xec\xac\x16\x1b\x34\x4b\x43\xf9\xc6\x21\x50\xcf\x2d\xbe\x32\x00\x30\xac\x18\x7f\xa2\x80\x6a\xf5\x94\x3d\xeb\xc7\x20\xca\xcf\x8e\x7c\xb7\x9c\x84\xbc\x88\x27\x9f\xe4\x61\x48\x39\xe8\xfa\xf1\x5f\x7d\x85\xa6\x4d\xb8\xa0\x42\x9a\x14\xd3\xcb\x20\x86\x21\x78\x4c\xf6\xd2\xb0\xed\x75\x58\x76\xc5\x6d\xbf\x24\x25\x4d\x13\xdb\x2e\x5f\xf9\x46\xda\x22\xa1\xb3\x40\x70\x87\x87\x98\xdc\xe2\xeb\x59\xcf\xde\xfe\x69\xc9\x6e\xdf\x01\x00\x00\xff\xff\x64\xd3\xce\xa2\x52\x01\x00\x00" func dkgScriptsGet_latest_whiteboard_messagesCdcBytes() ([]byte, error) { return bindataRead( @@ -1019,11 +950,11 @@ func dkgScriptsGet_latest_whiteboard_messagesCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_latest_whiteboard_messages.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x55, 0x96, 0xf2, 0x4, 0x13, 0x63, 0xa6, 0xbb, 0x97, 0x4b, 0xe2, 0x69, 0xfe, 0x46, 0xd0, 0xe0, 0xbd, 0x99, 0xf0, 0x9c, 0x62, 0xfc, 0x72, 0x85, 0x97, 0x67, 0xff, 0x8b, 0xf9, 0xc1, 0xfa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcb, 0xcd, 0xe3, 0xda, 0x2f, 0x97, 0x67, 0x40, 0xfc, 0xfb, 0x2f, 0xb9, 0x94, 0x2a, 0x31, 0x7f, 0xbe, 0x64, 0x98, 0xc6, 0x50, 0xb8, 0xca, 0x45, 0xe8, 0xcf, 0xd6, 0x12, 0xa9, 0xe0, 0x7, 0x11}} return a, nil } -var _dkgScriptsGet_node_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\xf2\xf2\x53\x52\x3d\x5d\xac\x14\x82\x4b\x8a\x32\xf3\xd2\x35\xad\x14\xa2\x21\x2c\xfb\x58\x85\x6a\x2e\x05\x05\x05\x85\xa2\xd4\x92\xd2\xa2\x3c\x98\xa1\x7a\xe9\xa9\x25\x7e\xf9\x29\xa9\x6e\x99\x79\x89\x39\xc1\xa5\x49\xb9\x99\xc5\xc5\x99\xf9\x30\x63\x34\x15\xb9\x6a\x01\x01\x00\x00\xff\xff\x26\x0a\xc4\x4b\x85\x00\x00\x00" +var _dkgScriptsGet_node_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xbd\x0a\xc2\x30\x14\x06\xd0\x3d\x4f\xf1\xb9\x35\x8b\x38\x77\x11\x21\xb6\x48\xc1\xc1\x8c\xe2\x10\xdb\xb4\x5c\x48\xee\x95\xfc\xa0\x20\xbe\xbb\x43\xe9\x76\xa6\x43\xf1\x25\xa9\xa0\x0b\xf2\x36\x43\x8f\x39\x49\xc4\xe1\x63\x86\xfe\x64\xcc\xed\x6c\xad\x52\x6e\x1c\x7d\xce\x8d\x0b\x41\x63\xae\x8c\xe8\x88\x1b\x96\xc9\x5f\x4c\x0b\x5b\x12\xf1\xa2\x5b\xdc\x57\x1d\x1f\xf8\x2a\x00\x48\xbe\xd4\xc4\xdb\xbb\x5f\x7c\xb9\xca\xe4\x3b\x62\x17\x6c\x7d\x46\xca\x99\x64\x6b\xf4\x4e\xfd\xfe\x01\x00\x00\xff\xff\x0f\xf0\x73\xe4\x88\x00\x00\x00" func dkgScriptsGet_node_final_submissionCdcBytes() ([]byte, error) { return bindataRead( @@ -1039,11 +970,11 @@ func dkgScriptsGet_node_final_submissionCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_node_final_submission.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0x5c, 0x55, 0x20, 0xed, 0x65, 0x8c, 0x26, 0x11, 0xb8, 0x8f, 0xf3, 0x5d, 0x8f, 0x70, 0x73, 0x12, 0x8e, 0xb2, 0xf3, 0xf7, 0x40, 0x45, 0x6e, 0xf1, 0x7d, 0xb5, 0x91, 0x60, 0xae, 0x86, 0x8a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5, 0xa3, 0xd, 0x76, 0xe5, 0x82, 0x16, 0xf2, 0x5e, 0xed, 0x5f, 0xef, 0x1f, 0x6b, 0xd9, 0xa9, 0x3, 0x80, 0x1e, 0x47, 0xcb, 0x8f, 0xf0, 0x15, 0xc5, 0x8d, 0x97, 0xb4, 0x3f, 0x5e, 0x2e, 0xab}} return a, nil } -var _dkgScriptsGet_node_has_submittedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\xf2\xf2\x53\x52\x3d\x5d\xac\x14\x82\x4b\x8a\x32\xf3\xd2\x35\xad\x14\x9c\xf2\xf3\x73\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xe6\xe9\x81\x94\x7a\x24\x16\x07\x97\x26\xe5\x66\x96\x94\xa4\xa6\x40\xf5\x6a\x72\xd5\x02\x02\x00\x00\xff\xff\x85\x3a\x25\x9d\x79\x00\x00\x00" +var _dkgScriptsGet_node_has_submittedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xb1\x0a\xc2\x30\x10\x87\xf1\x3d\x4f\xf1\x1f\xdb\x45\x9c\xbb\x29\xa7\x55\xba\x99\x27\x88\x6d\x2a\x81\xe4\x4e\x2e\x17\x14\xc4\x77\x17\x41\xf7\xef\xfb\xa5\x72\x17\x35\x1c\xb3\x3c\x68\x1a\xb1\xaa\x14\x6c\x9f\x34\x8d\x3b\xa2\xcb\xc1\x7b\xe7\xc2\x3c\xc7\x5a\xbb\x90\x73\x8f\xb5\x31\x4a\x48\xdc\xb1\x2c\xf1\x4c\x03\xbc\x69\xe2\x5b\x3f\x60\x2f\x92\xf1\x72\x00\xa0\xd1\x9a\xf2\x9f\xdc\x7c\xd3\x53\xa8\xbe\x5d\x4b\x32\x8b\xcb\xef\xed\xdd\xfb\x13\x00\x00\xff\xff\x4a\x97\x2c\xe5\x7c\x00\x00\x00" func dkgScriptsGet_node_has_submittedCdcBytes() ([]byte, error) { return bindataRead( @@ -1059,11 +990,11 @@ func dkgScriptsGet_node_has_submittedCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_node_has_submitted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x53, 0xcd, 0x46, 0x4c, 0xce, 0x40, 0xef, 0x90, 0xf4, 0xd1, 0xe6, 0x7a, 0x2d, 0x67, 0xb9, 0x57, 0xc4, 0xcd, 0xf5, 0xd, 0x39, 0xb5, 0x3d, 0xda, 0x2f, 0xc0, 0x9, 0xda, 0x68, 0x71, 0x0, 0x95}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe9, 0x7c, 0x5e, 0x2e, 0x7c, 0xb9, 0x27, 0x61, 0x3f, 0xe6, 0x38, 0xb0, 0x9d, 0x50, 0xc6, 0x78, 0x8b, 0x3f, 0xc9, 0x5b, 0xae, 0x58, 0xe2, 0x44, 0xec, 0x20, 0x4b, 0x7a, 0xba, 0xef, 0x25, 0x55}} return a, nil } -var _dkgScriptsGet_node_is_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xcc\x31\xaa\xc2\x40\x10\xc6\xf1\x7e\x4f\xf1\x25\x55\xd2\xbc\x03\x04\x5e\xa3\x41\x09\x96\x9e\x60\x48\x66\x65\x60\x76\x36\xec\x6e\xb0\x90\xdc\x5d\xd4\xa4\xb2\x71\xba\x81\xef\xf7\x97\x30\xc7\x54\x70\xd2\x78\xef\x2f\x67\xf8\x14\x03\xea\xed\xab\x9d\xa3\x71\xe4\x9c\x1b\x52\x6d\xe1\x17\x43\x20\xb1\xc6\xe2\xc4\x43\xdf\xe1\x5a\x92\xd8\xad\xed\x70\x88\x51\xf1\x70\x00\x20\x7e\x6f\xfd\xcd\x94\x8a\x8c\x32\x93\x95\x21\x1f\x95\x24\xf0\xb4\xd9\x16\xd5\x3f\x4c\x76\xf4\xba\xc4\x65\x49\xf6\x13\xae\xde\x68\x05\x6b\xe6\xef\x82\x27\xcd\xfc\x59\xb8\xf5\x19\x00\x00\xff\xff\xad\xe0\xc3\x42\xdf\x00\x00\x00" +var _dkgScriptsGet_node_is_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xcc\xbd\x0a\xc2\x30\x14\xc5\xf1\x3d\x4f\x71\xba\xb5\x8b\x38\x17\x1c\xd4\x68\x29\xdd\xec\x13\x84\x36\x91\x0b\x37\x37\x25\x49\x51\x90\xbe\xbb\xf8\xd1\xc9\xc5\x33\x9f\xdf\x9f\xfc\x14\x62\xc6\x99\xc3\x4d\x77\x0d\x5c\x0c\x1e\xdb\xbb\xee\x9a\xbd\xd6\x97\x53\xdf\x2b\x65\x86\xc1\xa6\x54\x1a\xe6\x0a\x6e\x16\x78\x43\x52\x4a\x18\x6d\xab\x6b\xf4\x39\x92\x5c\xab\x1a\x87\x10\x18\x0f\x05\x00\xe4\xd6\xdc\x66\x32\x31\xd3\x40\x93\x91\xdc\xa6\x23\x1b\xf2\x76\xfc\xda\x0a\xc5\x0e\x42\x2b\x7a\x2d\xda\x3c\x47\xf9\x0b\x17\x6f\xb4\xc0\x72\xb2\xbf\x05\x67\x38\xd9\xcf\x43\x2d\xcf\x00\x00\x00\xff\xff\x75\x78\xfb\xf8\xe2\x00\x00\x00" func dkgScriptsGet_node_is_claimedCdcBytes() ([]byte, error) { return bindataRead( @@ -1079,11 +1010,11 @@ func dkgScriptsGet_node_is_claimedCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_node_is_claimed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0x3d, 0x29, 0x69, 0x3d, 0x84, 0x68, 0x8e, 0xa8, 0x92, 0xb8, 0x48, 0x92, 0xfe, 0x2a, 0x93, 0xa2, 0x96, 0x40, 0x52, 0xb, 0x8d, 0x15, 0x2d, 0x84, 0x22, 0x1c, 0x17, 0x15, 0x31, 0xba, 0xd1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x2d, 0x0, 0x7a, 0x87, 0xc2, 0x5e, 0x9f, 0xd7, 0x7b, 0x61, 0x16, 0x93, 0x0, 0xe0, 0xff, 0x3, 0x4, 0xe8, 0xee, 0x25, 0x1b, 0x2a, 0x77, 0x82, 0xec, 0x6c, 0x3a, 0x61, 0xd3, 0x76, 0x4}} return a, nil } -var _dkgScriptsGet_node_is_registeredCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\x31\x0e\xc2\x30\x0c\x05\xd0\x3d\xa7\xf8\xea\xd4\x2c\x1c\xa0\x23\xaa\x40\x15\x1b\x9c\x20\x4a\xdd\xca\x52\x62\x47\x8e\x2b\x06\xc4\xdd\x59\xca\xf8\x96\xc7\xb5\xa9\x39\x6e\x45\xdf\xf3\xe3\x8e\xcd\xb4\x62\x38\x35\x84\x90\x72\xa6\xde\xc7\x54\x4a\xc4\x76\x08\x6a\x62\x19\x45\x57\x5a\xe6\x09\x2f\x37\x96\x3d\x4e\xb8\xaa\x16\x7c\x02\x00\x18\xf9\x61\xf2\xff\x2e\x2d\x99\x73\xe6\x96\xc4\x97\xfe\xa4\x9d\xbb\x93\xd1\x7a\x16\x31\x7c\x7f\x01\x00\x00\xff\xff\xe5\x2c\x0e\x21\x80\x00\x00\x00" +var _dkgScriptsGet_node_is_registeredCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\x31\xaa\x83\x40\x10\x06\xe0\x7e\x4f\xf1\x97\xda\x3c\x5e\x6d\x97\xb0\x89\x88\x9d\x9e\x60\xd1\x51\x06\xd6\x99\x65\x76\x24\x81\x90\xbb\xa7\x49\x2e\xf0\xf1\x51\xd4\x1c\xf7\xac\x8f\x38\xf6\xd8\x4c\x0f\xfc\x3f\xe3\xd8\x5f\x62\x9c\x6e\xf3\x1c\x42\x5a\x16\xaa\xb5\x49\x39\xb7\xd8\x4e\xc1\x91\x58\x1a\xd1\x95\x86\xd8\x61\x76\x63\xd9\xdb\x0e\x57\xd5\x8c\x57\x00\x00\x23\x3f\x4d\x7e\xe4\x5f\x49\xe6\xbc\x70\x49\xe2\x43\x9d\x68\xe7\xea\x64\xb4\x7e\x89\x36\xbc\x3f\x01\x00\x00\xff\xff\xb5\x2b\x42\x1d\x83\x00\x00\x00" func dkgScriptsGet_node_is_registeredCdcBytes() ([]byte, error) { return bindataRead( @@ -1099,31 +1030,11 @@ func dkgScriptsGet_node_is_registeredCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_node_is_registered.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0xa4, 0xcf, 0x88, 0xda, 0x35, 0xe9, 0xac, 0xe7, 0x73, 0x15, 0xf6, 0xf9, 0x64, 0xcd, 0x8e, 0x5c, 0x6f, 0xa0, 0x50, 0x9a, 0xbe, 0x2, 0x44, 0x72, 0x74, 0x82, 0xf9, 0x15, 0x37, 0x4b, 0x4d}} - return a, nil -} - -var _dkgScriptsGet_submissions_countCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xb1\x0a\x82\x70\x10\x06\xf0\xfd\x9e\xe2\xc3\x49\x97\xa6\x68\x70\x2d\x0c\x69\x8c\x1e\x40\x41\xe3\xc0\xff\x77\x72\xde\xd1\x20\xbe\x7b\x4b\x8d\xbf\xe5\xa7\x65\x35\x0f\x74\x8b\x7d\x6e\x8f\x3b\x66\xb7\x82\xea\xa7\x4a\x64\xcd\x11\x73\x12\x65\x50\xd6\x4d\x0b\xec\x3d\xa3\xc5\xab\x67\x5c\xce\x07\x76\x01\x00\x9f\x22\x9d\xff\xe3\xf4\x9e\xa2\x53\x0e\xcb\x33\xc7\xa2\xdb\xa6\xc6\xab\x25\xa3\x6e\xe4\x90\x6f\x00\x00\x00\xff\xff\x09\xb5\xb1\xae\x6f\x00\x00\x00" - -func dkgScriptsGet_submissions_countCdcBytes() ([]byte, error) { - return bindataRead( - _dkgScriptsGet_submissions_countCdc, - "dkg/scripts/get_submissions_count.cdc", - ) -} - -func dkgScriptsGet_submissions_countCdc() (*asset, error) { - bytes, err := dkgScriptsGet_submissions_countCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "dkg/scripts/get_submissions_count.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0x77, 0xc4, 0x99, 0x13, 0xc6, 0xc8, 0x2b, 0x1e, 0xfe, 0xa5, 0x3a, 0x39, 0x80, 0x42, 0x1e, 0x35, 0x84, 0xa1, 0xa6, 0x33, 0x61, 0x61, 0x91, 0x52, 0xf2, 0x8d, 0xb2, 0x36, 0x4d, 0x5d, 0x9e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0x11, 0x49, 0x45, 0xb2, 0x99, 0x20, 0x4e, 0xca, 0x7, 0x6c, 0x5b, 0x22, 0xc1, 0xb7, 0x1c, 0x6f, 0x14, 0x98, 0x87, 0xec, 0x63, 0x77, 0xb9, 0x3f, 0x2d, 0x62, 0xd0, 0x3c, 0xb0, 0xf6, 0xa4}} return a, nil } -var _dkgScriptsGet_thresholdsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcf\x4a\x03\x31\x10\xc6\xef\x79\x8a\x8f\x9e\x92\xcb\xd2\x43\xe9\xa1\x20\xbd\x48\x45\x04\x11\xaa\x0f\x10\xe2\xa4\x0d\x64\x13\x49\x26\x2a\xc8\xbe\xbb\x6c\xac\xfb\x87\x15\x6c\x6e\x19\x7e\xbf\xf9\x66\xc6\xb5\x6f\x31\x31\x0e\x3e\x7e\xdc\x3e\xdc\xc1\xa6\xd8\x62\x75\xf9\xad\x84\xd0\xc6\x50\xce\x52\x7b\xaf\x90\x39\x15\xc3\x78\x3e\x27\xca\xe7\xe8\x5f\x33\xbe\x04\x00\x4c\x19\x4f\x8c\xa0\xd9\xbd\xd3\x0e\x2f\xf7\x81\xb7\x9b\x3f\x91\xac\xed\xff\xc0\x13\x25\x43\x81\xf5\xa9\x47\x0f\xee\x73\xbb\x11\x95\x75\xc1\xb1\x54\x97\xf0\xfe\x65\xf2\xb6\xf9\x49\xc5\xcd\xef\x2a\xcd\x89\xf8\xb1\xd6\x8e\xa5\x36\x1f\xe6\x96\x6a\x6e\xf6\x59\x73\xef\xa8\xed\x55\xd6\x38\xe1\xd2\x1f\xc4\x11\x92\x0a\xfb\x3d\xd6\xcd\xba\x76\xea\x44\x37\xbf\xaf\x2d\x01\xad\x76\x41\xaa\xdd\xf2\xc8\x89\xb8\xa4\x30\xa9\x4b\x25\xba\xef\x00\x00\x00\xff\xff\xb3\xea\x59\x20\xbd\x01\x00\x00" +var _dkgScriptsGet_thresholdsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xc1\x4a\x03\x31\x10\x86\xef\x79\x8a\xff\x98\x5c\x96\x3d\x94\x1e\x0a\x52\x84\xb5\x45\x0a\x22\xae\x3e\x40\x58\x27\x6d\x20\x9b\x48\x32\xd1\x82\xec\xbb\xcb\x46\x6d\xbb\xac\x60\x73\x1c\xbe\x6f\xfe\xc9\x6f\xfb\xb7\x10\x19\x1b\x17\x3e\x9a\xdd\x16\x26\x86\x1e\xf5\xb1\xd9\x6d\x6f\x9b\xe6\xe9\xae\x6d\x85\xd0\x5d\x47\x29\x49\xed\x9c\x42\xe2\x98\x3b\xc6\xf3\x21\x52\x3a\x04\xf7\x9a\xf0\x29\x00\xe0\x92\x71\xc4\xf0\x9a\xed\x3b\xad\xf0\x72\xef\x79\xb9\xf8\x13\x49\xda\xfc\x0f\x3c\x52\xec\xc8\xb3\xde\x8f\xe8\xc6\x1e\x97\x0b\x51\x58\xeb\x2d\x4b\xf5\x13\x3e\xbe\x44\xce\x54\xdf\xa9\xb8\xf9\xfd\x4d\xb5\x27\x7e\x28\xb3\x36\x97\xe5\xa7\xbb\xa5\x9a\x9a\x63\xd6\xd4\x6b\xb5\xb9\xca\x3a\x5f\x38\xf7\x4f\xe2\x19\x92\x0a\xeb\x35\xea\xaa\x2e\x9b\x06\x31\x4c\xfb\x35\xd9\xa3\xd7\xd6\x4b\xb5\x9a\x97\x1c\x89\x73\xf4\x17\x73\xa9\xc4\xf0\x15\x00\x00\xff\xff\x4c\xbf\xd4\x66\xc0\x01\x00\x00" func dkgScriptsGet_thresholdsCdcBytes() ([]byte, error) { return bindataRead( @@ -1139,11 +1050,11 @@ func dkgScriptsGet_thresholdsCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_thresholds.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x22, 0xd8, 0x8, 0xe9, 0xf9, 0x79, 0xd1, 0x2c, 0xce, 0xe5, 0x62, 0x4d, 0x9f, 0xd2, 0x6, 0xdf, 0x1d, 0x2d, 0x17, 0xa7, 0x40, 0x6d, 0x40, 0x6, 0xa2, 0x7a, 0x0, 0xbd, 0x7c, 0xf2, 0x89}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0x27, 0x9c, 0x2e, 0x14, 0xaf, 0x10, 0x7d, 0xb6, 0x68, 0xda, 0xe8, 0xbc, 0x60, 0x39, 0x64, 0x39, 0xbb, 0xf4, 0xd2, 0x8a, 0x9f, 0x20, 0x6f, 0xcd, 0x16, 0x7, 0x2d, 0x16, 0x7e, 0x9e, 0x37}} return a, nil } -var _dkgScriptsGet_whiteboard_messagesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\xa2\xa1\x4a\xf4\x7c\x53\x8b\x8b\x13\xd3\x53\x63\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xc6\xe9\xa5\xa7\x96\x84\x67\x64\x96\xa4\x3a\xe5\x27\x16\xa5\x40\x95\x16\x6b\x68\x2a\x70\xd5\x02\x02\x00\x00\xff\xff\x68\x14\x95\x1b\x78\x00\x00\x00" +var _dkgScriptsGet_whiteboard_messagesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x88\x86\xea\xd1\xf3\x4d\x2d\x2e\x4e\x4c\x4f\x8d\x55\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x99\xa8\x97\x9e\x5a\x12\x9e\x91\x59\x92\xea\x94\x9f\x58\x94\x02\x55\x5a\xac\xa1\xa9\xc0\x55\x0b\x08\x00\x00\xff\xff\x20\x79\xf1\x15\x7b\x00\x00\x00" func dkgScriptsGet_whiteboard_messagesCdcBytes() ([]byte, error) { return bindataRead( @@ -1159,11 +1070,11 @@ func dkgScriptsGet_whiteboard_messagesCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_whiteboard_messages.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0xd3, 0xb2, 0xb6, 0xfe, 0x25, 0x93, 0xf1, 0x4f, 0x70, 0x8a, 0x81, 0xe6, 0x35, 0x7e, 0xb7, 0x82, 0xca, 0x41, 0xba, 0xe7, 0xc5, 0x37, 0x28, 0x1d, 0xf3, 0xb4, 0xe, 0x87, 0x1b, 0xdb, 0xf9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0x4a, 0x1, 0x6b, 0xb, 0xd, 0x6a, 0x3b, 0x80, 0x95, 0x62, 0xac, 0x6d, 0x92, 0xec, 0x52, 0x86, 0xb5, 0x56, 0xf9, 0xc9, 0x1f, 0x93, 0x7f, 0x14, 0xc1, 0xaa, 0x92, 0x12, 0x7e, 0x8e, 0x91}} return a, nil } -var _dkgSend_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xbd\x6a\xc3\x40\x0c\xc7\x77\x3f\x85\xf0\x10\xec\xc5\x0f\x60\xda\x9a\x7e\x90\x0e\x5d\x02\x86\x2e\xa5\x83\x72\x91\x9d\xa3\xb6\x74\xe8\x64\x52\x28\x79\xf7\xe2\x9e\x1b\x5c\x08\xd5\x76\x1f\xfa\xfd\xf5\x93\x1f\x83\xa8\xc1\x76\x90\xd3\xd3\xcb\x33\x74\x2a\x23\xe4\xcb\x29\xcf\x32\x53\xe4\x88\xce\xbc\x70\x11\xa7\xfd\xe8\x63\xf4\xc2\x35\xbc\xb5\xa6\x9e\xfb\xe6\xbd\x84\xaf\x2c\x03\x00\x18\xc8\xe0\xf0\xd1\xef\x50\xcd\x3b\x1f\x90\xad\x86\xcd\x02\xaa\x56\xb7\xe9\x77\x50\x0a\xa8\x54\x44\xdf\x33\x69\x0d\x38\xd9\xb1\x78\x10\x55\x39\xbd\xe2\x30\x51\x09\x9b\x7b\xe7\x64\x62\x9b\x03\x60\xa9\x48\x43\x57\xfd\x0d\x81\x5b\x48\x8c\x2a\x9a\x28\xf6\x54\xed\x7f\x28\x37\xd7\xb2\xef\x8a\xd9\xaf\x86\x2b\x4f\x6d\xea\xde\xa1\x1d\xcb\x4b\xde\x5c\x4d\x03\x01\xd9\xbb\x22\x7f\x44\x66\x31\x48\xfc\xd9\x15\xc2\x6a\x0e\xa5\x8e\x94\xd8\x51\x9e\xfa\xcf\x49\x94\x3e\xc9\x4d\x46\xff\x4b\x54\x91\xf8\xb0\xf5\x8c\x43\x7b\xd9\xf1\x6a\xdd\xbf\xc0\xf3\x77\x00\x00\x00\xff\xff\x55\xc6\xf9\x32\xad\x01\x00\x00" +var _dkgSend_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xb1\x6a\xf3\x40\x10\x84\x7b\x3d\xc5\xe2\xe2\x47\x6a\xc4\x5f\x8b\x24\x42\x44\xb1\x0b\x37\x26\x2a\x43\x8a\xf3\x79\x25\x2f\x91\x76\x8f\xbd\x15\x36\x04\xbf\x7b\x10\xb2\x8d\x02\xce\x94\x77\x37\xdf\xdc\x0c\x0d\x41\xd4\x60\xdd\xcb\xa9\xde\x6e\xa0\x55\x19\xe0\xff\xb9\xde\x6e\xaa\xba\x7e\x7f\x6b\x9a\x24\x31\x75\x1c\x9d\x37\x12\x4e\xe3\xb8\x1f\x28\x46\x12\x2e\xe0\xa3\x31\x25\xee\xca\xcf\x0c\xbe\x93\x04\x00\xa0\x47\x83\xc3\x57\xb7\x73\x6a\xe4\x29\x38\xb6\x02\xfe\x5d\xc9\xf9\xe2\x74\x7e\x1d\x14\x83\x53\x4c\x23\x75\x8c\x5a\x40\x35\xda\xb1\xf2\x5e\x46\xb6\x89\x08\x57\x45\xec\xdb\xfc\x37\x15\x9e\x61\x36\xe5\x7b\x51\x95\xd3\xd3\xa3\x90\x97\x74\xea\x52\xc0\x83\xab\xc6\x44\x5d\x87\x3b\x67\xc7\xec\x9e\x33\xa9\x2c\x21\x38\x26\x9f\xae\x5e\x1d\xb3\x18\xcc\xfc\xa9\x14\x84\x45\xbe\x62\x8b\x8a\xec\x71\x35\xfb\x2f\x73\x23\x3c\xa3\x1f\x0d\x6f\x73\xfc\xf1\xfb\x3c\x22\x1f\xd6\xc4\xae\x6f\xee\x6b\x2e\x86\xcd\x92\x1b\xf2\xf2\x13\x00\x00\xff\xff\x38\x14\x9d\x91\x9c\x01\x00\x00" func dkgSend_final_submissionCdcBytes() ([]byte, error) { return bindataRead( @@ -1179,11 +1090,11 @@ func dkgSend_final_submissionCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/send_final_submission.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd1, 0xc, 0x5e, 0xac, 0xc6, 0x72, 0x16, 0x6c, 0xf2, 0x1f, 0x31, 0x41, 0x51, 0x0, 0xcd, 0x15, 0x99, 0x86, 0xb3, 0xd3, 0x8a, 0x56, 0xf2, 0xf1, 0xf8, 0xf1, 0x9f, 0xd4, 0x36, 0xa4, 0x8, 0xba}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0xa1, 0xeb, 0xb8, 0x94, 0x6e, 0xb, 0x8d, 0x4f, 0xbe, 0xf4, 0xe4, 0x73, 0x98, 0xc9, 0x5b, 0x27, 0x91, 0x33, 0xac, 0x1a, 0xe, 0x48, 0xe7, 0x33, 0x1, 0x1f, 0xb, 0xa6, 0xac, 0x6a, 0x93}} return a, nil } -var _dkgSend_whiteboard_messageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcf\x6a\xc3\x30\x0c\x87\xef\x79\x0a\x91\x43\x49\x2e\x7e\x80\xb0\xad\xec\x0f\xdb\x61\x0c\x0a\x85\xdd\x35\x4f\x71\xcd\x52\xc9\xc8\x0a\x1d\x8c\xbe\xfb\xf0\x9c\x8e\x0e\xca\x74\xb3\x2d\x7d\x3f\x7f\x8a\xfb\x24\x6a\xf0\x38\xc9\xe1\xe1\xf9\x09\x46\x95\x3d\xb4\xcb\xa9\x6d\x1a\x53\xe4\x8c\xde\xa2\x70\xe7\x85\x8d\xd8\x06\xd8\x9a\x46\x0e\x3d\x7c\x35\x0d\x00\xc0\x44\x06\xef\x1f\x61\x83\x6a\xd1\xc7\x84\xa5\x65\xb5\x20\xdc\xd9\x6d\xed\x4e\x4a\x09\x95\xba\x1c\x03\x93\x0e\x80\xb3\xed\xba\x3b\x51\x95\xc3\x2b\x4e\x33\xf5\xb0\xba\xf5\x5e\x66\xb6\x12\x00\x4b\x65\x9a\x46\xf7\x37\x04\xae\xa1\x32\x5c\x36\x51\x0c\xe4\xde\x7e\x28\x57\x97\xb2\x6f\xba\x62\x36\xc0\x85\xa7\x6d\x9d\xde\xa0\xed\xfa\xdf\xbc\x52\xeb\x35\x24\xe4\xe8\xbb\xf6\x1e\x99\xc5\xa0\xf2\x8b\x2b\xa4\xb3\x7f\x28\x8d\xa4\xc4\x9e\xda\x3a\x7f\xac\xa2\xf4\x49\x7e\x36\xfa\x5f\xc2\x25\xc9\xf6\x42\x39\x63\xa0\xd3\x82\x4f\x94\xe3\x77\x00\x00\x00\xff\xff\xc6\xb5\x3f\x3f\x9c\x01\x00\x00" +var _dkgSend_whiteboard_messageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x43\x0f\x92\x5c\x82\xe7\xa0\x96\x60\xb4\x87\x22\x14\xf3\x0b\xc6\x75\x92\x2e\xa6\x33\xcb\xec\x84\x16\xa4\xff\x5d\x96\x6d\xa4\x42\x9d\xe3\xee\xbc\xef\xcd\x7b\xfe\x10\x44\x0d\x5e\x27\x39\x76\xdb\x0d\x0c\x2a\x07\xb8\x3f\x75\xdb\x4d\xdb\x75\xef\x2f\x7d\x5f\x14\xa6\xc8\x11\x9d\x79\xe1\xd2\x09\x1b\xb1\x35\xd0\x9b\x7a\x1e\x2b\xf8\x2e\x0a\x00\x80\x89\x0c\x3e\xbf\xc6\x1d\xaa\x79\xe7\x03\xa6\x95\xbb\x0b\xb3\xbe\x7a\xcd\xdb\x41\x29\xa0\x52\x19\xfd\xc8\xa4\x0d\xb4\xb3\xed\x5b\xe7\x64\x66\x4b\x44\xb8\x4c\xa4\x69\xa8\xff\x52\xe1\x11\xb2\xa8\xfe\x10\x55\x39\x3e\xdc\x32\x79\x2a\x53\x8a\x06\x6e\x7c\xf5\x26\x8a\x23\xed\xd0\xf6\xd5\xaf\x4f\x9a\xf5\x1a\x02\xb2\x77\xe5\xea\x19\x99\xc5\x20\xf3\x53\x28\x08\x57\xfe\x4a\x03\x29\xb1\xa3\x55\xd6\x9f\x73\x22\x3a\x91\x9b\x8d\x96\x3a\xfe\xb9\xbe\x0e\x12\xed\x8d\x62\xc4\x91\x96\x2a\xab\x62\xe1\x9c\x7f\x02\x00\x00\xff\xff\x42\x47\xff\x78\x8b\x01\x00\x00" func dkgSend_whiteboard_messageCdcBytes() ([]byte, error) { return bindataRead( @@ -1199,11 +1110,11 @@ func dkgSend_whiteboard_messageCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/send_whiteboard_message.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcb, 0xec, 0x78, 0xab, 0x6e, 0x8, 0xc7, 0xa7, 0x9c, 0x52, 0x92, 0x14, 0x8d, 0x49, 0x3e, 0xa1, 0x55, 0xf3, 0xe3, 0xaf, 0xa9, 0x17, 0x5e, 0xbf, 0x42, 0x66, 0xd4, 0x93, 0x31, 0x7b, 0xd0, 0x18}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaf, 0xbf, 0x30, 0x7e, 0x1e, 0xed, 0x99, 0xc1, 0x3d, 0xa0, 0x20, 0x22, 0x66, 0xaf, 0x3b, 0x43, 0x3f, 0x26, 0xca, 0xd8, 0xff, 0x25, 0x83, 0xbc, 0x7e, 0x33, 0x4a, 0x7b, 0xb0, 0x5d, 0xaf, 0x21}} return a, nil } -var _epochAdminAdvance_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x6f\x82\x40\x10\x85\xef\xfc\x8a\xc9\x1e\x0c\x5c\xf8\x01\xa6\xd6\x28\xda\x68\x5a\xab\x09\xb6\xf7\x71\x1d\x61\xe3\xb2\xbb\x59\x86\x7a\x68\xfc\xef\x0d\xa0\x48\x93\x5a\xe7\x40\x42\x76\xde\x37\xef\x3d\x55\x38\xeb\x19\x5e\xb4\x3d\xcd\x9d\x95\x39\x1c\xbc\x2d\x40\x74\xff\x22\xe8\x6d\x2c\x67\x5b\xdc\x69\x4a\x19\x8f\xca\x64\xbd\xd5\xdf\x0f\x22\x08\xd8\xa3\x29\x51\xb2\xb2\x26\x74\x39\x96\x34\x84\x94\xbd\x32\x59\x04\xdf\x01\x00\x80\xf3\xe4\xd0\x53\x58\xaa\xcc\x90\x1f\x02\x56\x9c\x87\x53\xeb\xbd\x3d\x7d\xa2\xae\x28\x82\xc1\x44\x4a\x5b\x19\xbe\x2a\xea\xd1\xc4\x90\x13\x7a\xde\x11\x32\x8c\xa0\x55\xc7\x25\x5b\x8f\x19\xc5\xbb\x46\xff\x34\xe8\xdc\xc7\x8b\xeb\xf2\x73\x58\xbb\x1d\xde\x82\xc6\x1d\x27\x6d\xd5\x1b\xe4\x3c\xea\x2e\xd5\x33\x1e\x83\x43\xa3\x64\x28\x12\x5b\xe9\x3d\x18\xcb\xd0\x9e\xe8\x99\x68\x4a\xb8\x18\x00\x87\x9c\x8b\x28\xe8\x28\xea\x00\x4d\x7a\x18\x8d\x40\xcc\x37\xeb\x64\x91\xce\xb7\x1f\x1b\xd1\x8b\x54\x4f\x47\x8b\xc9\xec\x2f\x25\x4e\xaa\xb6\xbd\x9b\xa5\x33\x90\x2e\xe9\x0f\x66\xb2\x5e\xad\x96\xdb\xfb\xd0\x92\xd1\x73\x13\x3a\xb1\x45\xa1\xf8\x11\xf3\x7d\xd6\x60\xff\x75\xd9\xe0\x1e\x80\xa6\x6f\xeb\xe4\xf5\x3e\x05\xf7\x5f\x68\x24\x4d\xb5\x95\xc7\x3e\x29\x68\xbf\xe7\x9f\x00\x00\x00\xff\xff\x77\x36\x16\x2b\x9b\x02\x00\x00" +var _epochAdminAdvance_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\xcf\x6e\x82\x40\x10\xc6\xef\x3c\xc5\x84\x43\x83\x17\xd2\xb3\xa9\x35\x08\x34\x9a\xd6\x6a\x8a\x7d\x80\x11\x47\xd8\x08\x3b\x9b\x65\xa8\x4d\x1a\xdf\xbd\x01\x2a\x92\xb4\xd6\x39\x70\xe1\xdb\xdf\xf7\x47\x95\x86\xad\xc0\x53\xc1\xc7\xd8\x70\x9a\xc3\xde\x72\x09\xf7\x9f\xf1\x7a\x15\xce\x83\x28\x7a\x8b\x93\xc4\x19\x88\x16\xd1\x06\xb7\x05\x25\x82\x07\xa5\xb3\x4e\xed\xfe\xfe\xe1\x3a\x8e\x58\xd4\x15\xa6\xa2\x58\x7b\x26\xc7\x8a\xc6\x90\x88\x55\x3a\x1b\xc1\x97\x03\x00\x60\x2c\x19\xb4\xe4\x55\x2a\xd3\x64\xc7\x10\xd4\x92\x07\x69\xca\xb5\x96\xb3\xa4\xb9\x82\x04\x72\x42\x2b\x5b\x42\x81\x09\x74\x72\x7f\xcb\xd6\xf2\xf1\xe1\xae\x4f\xee\xcf\xcf\xa2\x47\xaf\x89\x35\xbe\x94\xf2\xfb\xf7\x89\xb0\xc5\x8c\xd6\x28\xf9\xa8\x77\x68\x6e\x3a\x05\x83\x5a\xa5\x9e\x1b\x72\x5d\xec\x40\xb3\x40\x67\x31\x30\x6f\xdb\x56\x1d\x02\x0c\x4a\xee\x8e\x9c\x9e\xa2\xf6\xd0\xd6\x84\xc9\x04\xdc\x76\xbe\x24\xde\xbc\xaf\xdd\x41\x95\xe6\x7a\x9a\x4f\x7a\xf7\xb3\x56\x50\x77\x33\x5d\x22\x9d\x80\x8a\x8a\xfe\x60\x86\xab\xe5\x72\xb1\xb9\x0e\xad\x04\xad\xb4\xa5\x43\x2e\x4b\x25\xb7\x98\xaf\x51\x8b\xfd\x37\x65\x8b\xbb\x01\x9a\xbd\xac\xc2\xe7\xeb\x14\xdc\x7d\xa0\x4e\x69\x56\x70\x7a\x18\x92\x9c\xee\x7b\xfa\x0e\x00\x00\xff\xff\xa2\x8c\x51\x63\x87\x02\x00\x00" func epochAdminAdvance_viewCdcBytes() ([]byte, error) { return bindataRead( @@ -1219,11 +1130,11 @@ func epochAdminAdvance_viewCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/advance_view.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0xe1, 0x89, 0x75, 0x40, 0x79, 0x27, 0x42, 0xfc, 0x75, 0x5f, 0x1a, 0xb6, 0xef, 0xa4, 0xea, 0x47, 0xb1, 0x9b, 0x15, 0x59, 0x37, 0x8, 0x70, 0xe9, 0xb3, 0xc6, 0x77, 0xe7, 0xfc, 0xd8, 0x5c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaf, 0xe5, 0x21, 0xf2, 0xbc, 0x76, 0xa, 0x9b, 0xf1, 0x41, 0xa1, 0x27, 0xe4, 0x3f, 0x61, 0xc9, 0xf8, 0x24, 0x6c, 0x75, 0xe8, 0x9b, 0x1d, 0xf0, 0xd7, 0x78, 0x9e, 0xa4, 0xeb, 0xc9, 0xad, 0x10}} return a, nil } -var _epochAdminCalculate_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\xcd\x4e\xec\x30\x0c\x85\xf7\x79\x0a\xab\x8b\x51\xba\xe9\x03\x8c\xee\x65\x34\xfc\x09\x76\x88\x22\xf6\x6e\x6a\xda\x88\x4c\x1c\xb9\x8e\xba\x40\xf3\xee\xa8\x53\x26\x14\xef\xa2\x9c\xcf\xe7\xb3\x3f\x25\x16\x85\xc7\xc0\xf3\x43\x62\x37\xc2\x87\xf0\x09\xaa\xf2\xae\xcc\x26\xf1\x7c\xff\x86\x5d\xa0\x56\xf1\xd3\xc7\x61\x13\xfd\xfb\x51\x19\xa3\x82\x71\x42\xa7\x9e\xa3\xad\xe1\xcb\x00\x00\x24\xa1\x84\x42\x76\xf2\x43\x24\xd9\x03\x66\x1d\xed\x2d\x8b\xf0\xfc\x8e\x21\x53\x0d\xbb\xa3\x73\x9c\xa3\x5e\x89\x65\x02\x29\x8c\x84\xa2\x1d\xa1\xc2\x7f\x58\xe9\x66\x52\x16\x1c\xa8\xe9\x2e\xfc\xbf\x5d\x11\x6e\x9e\xae\xe1\x1b\xbb\x08\xee\x7f\x6f\x6b\xca\x9e\x76\xa5\x5f\x50\xc7\xba\x34\x2d\x73\x38\x40\xc2\xe8\x9d\xad\xee\x38\x87\x1e\x22\x2b\xac\x15\x1b\x89\xcb\xdd\x3f\x02\x90\x50\xc7\xaa\x36\x65\x4b\x89\x35\x0e\x83\xcb\x01\x95\x8e\xb1\x6f\x49\x5f\x69\x46\xe9\x27\xbb\x16\x9e\xcd\xf9\x3b\x00\x00\xff\xff\x06\x87\xee\x45\x7b\x01\x00\x00" +var _epochAdminCalculate_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xc1\x6a\xeb\x30\x10\x45\xf7\xfa\x8a\xc1\x8b\x87\xbd\x31\x6f\x1d\xda\x06\x13\xbb\xa4\xab\x86\xb8\x3f\x30\x96\xa7\xb6\xa9\xa2\x11\xe3\x31\x2e\x94\xfc\x7b\x71\x45\xd4\x40\x67\xab\xa3\x7b\xee\x9d\x2e\x81\x45\xe1\xd9\xf1\xda\x04\xb6\x23\xbc\x0b\x5f\xe0\xff\x67\x73\x7a\x3d\x1c\xab\xba\x3e\x37\x6d\x6b\xee\xa0\x97\xfa\x0d\x3b\x47\xad\xe2\xc7\xe4\x87\x48\x67\x7f\x1f\x32\x63\x54\xd0\xcf\x68\x75\x62\x9f\x17\xf0\x65\x00\x00\x82\x50\x40\xa1\x7c\x9e\x06\x4f\xb2\x83\x6a\xd1\xb1\xb2\x96\x17\xaf\x37\x64\x3b\x47\x0a\x23\xa1\x68\x47\xa8\xf0\x08\x11\x2f\x3b\x16\xe1\xf5\xe1\x5f\x2a\x5b\x1e\x6f\xd0\x53\xbe\x35\xd9\xfd\xee\x28\xd3\xff\x56\x59\x70\xa0\x13\xea\x58\x24\xc3\x76\xfb\x3d\x04\xf4\x93\xcd\xb3\x03\x2f\xae\x07\xcf\x0a\x51\x71\x27\xff\x19\x38\xc7\x08\x08\xa8\x63\x56\x98\x94\x92\xb0\xd2\xa2\xb3\x8b\x43\xa5\xca\xf7\x2d\xe9\x99\x56\x94\x7e\xce\xa3\xf0\x6a\xae\xdf\x01\x00\x00\xff\xff\x66\x0a\x0f\x4f\x67\x01\x00\x00" func epochAdminCalculate_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -1239,11 +1150,11 @@ func epochAdminCalculate_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/calculate_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6a, 0x28, 0xde, 0x44, 0x27, 0x64, 0x4f, 0xc3, 0x72, 0xfc, 0x29, 0x96, 0x71, 0x49, 0x1e, 0x7e, 0xf1, 0xf, 0x75, 0x6b, 0x4c, 0x31, 0x40, 0x4b, 0xf, 0x62, 0xa5, 0x65, 0x0, 0x94, 0xc0, 0x81}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc0, 0x22, 0xae, 0xbc, 0xaa, 0x23, 0xd3, 0xe3, 0x4a, 0xea, 0x79, 0x41, 0xe9, 0xc2, 0x3, 0xae, 0x7b, 0x62, 0x2c, 0xc, 0xee, 0xe, 0x9c, 0x9e, 0xc5, 0xd0, 0x7f, 0xa2, 0xd3, 0x48, 0xa6, 0x85}} return a, nil } -var _epochAdminDeploy_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xc1\x6b\xea\x40\x10\xc6\xef\xf9\x2b\x06\x0f\x0f\x05\x11\x1e\x3c\xe4\xe1\x4d\xd2\x5a\xc4\x42\x15\x69\x7b\x10\x0f\xdb\xcd\x34\x06\x93\xd9\x30\x3b\x8b\x95\xe2\xff\x5e\x62\x22\x35\x31\x26\xb6\x1e\x16\xf3\xcd\xf7\x6d\x26\x33\xbf\x28\x49\x0d\x0b\x4c\x62\xb3\xf3\x63\x67\x05\x79\xe1\xc3\x3b\x9b\x04\x3a\x25\xad\xe3\x79\xc2\x8a\xac\xd2\x12\x19\xea\x92\x4a\x70\x04\x4b\xe1\x88\xc2\x3e\x78\x70\xf6\xd3\x26\xc0\x11\xac\x9e\xa7\x24\xff\xd7\xfd\x72\xc9\x31\x23\xc9\x7d\x6a\xf4\xc6\x37\x8e\x04\x79\x04\x99\x71\xf8\xaf\x6c\x24\x97\xbc\x44\xb8\xb3\x53\x3a\x7a\xdb\x4c\x4b\x51\xdb\x88\xc2\xb1\x3b\x36\xd7\xe6\xbe\x9b\x3d\xcc\x37\xca\xe2\x55\x9f\x6f\xe2\x18\xb5\x18\x2e\xbe\xde\xe6\xce\xbf\xc3\xb2\x73\xf2\xf8\xf4\x6a\x5d\x9a\xc6\xfb\x29\x69\x46\x65\x71\x8e\xac\x91\x44\x85\xd9\xdd\x93\xe8\xa3\x7a\x37\x2b\x0a\x4c\xb2\x34\x8e\xf5\xf7\xf4\x2a\xc3\xbb\x78\xf5\xaa\xb4\x87\x41\xf1\xaf\x3a\xd9\x53\xfd\x6a\x60\xe1\x57\x22\xc1\x36\x9c\xbb\xb7\x19\xee\xb3\x48\xde\xcb\xba\x07\x9f\x9e\x07\x90\x32\xa6\x8a\xb1\x6b\xa3\x90\xb2\x15\x29\x27\x9b\xee\x38\x08\x7c\x43\xc2\x4a\x4b\x0f\xfe\x8c\xb5\xce\x16\x58\x04\x00\x72\xeb\x40\x17\x0e\x3b\x50\x41\x50\x50\x92\x9d\xb5\x8c\x64\xe7\x0d\x80\xd4\x88\x2d\xb4\x54\x84\x5b\xb1\xb9\x56\xa9\x34\x5f\x47\xd2\xa5\x76\x19\xaa\xc1\xaa\x4e\xfd\x09\x64\x4d\xd5\x26\xf4\xce\x9f\xda\x01\x5c\x83\xb2\xbf\xc0\xb0\x21\xd6\x0c\x63\x1e\x3c\x21\xe9\x01\x1c\xbc\xc3\x57\x00\x00\x00\xff\xff\x4b\x08\x37\x75\xa8\x04\x00\x00" +var _epochAdminDeploy_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xc1\x6b\xea\x40\x10\xc6\xef\xf9\x2b\xe6\xe8\x03\x91\xf7\xe0\x21\x0f\x6f\x21\xea\x43\x2c\x54\x1b\xda\x1e\xc4\xc3\x76\x33\x8d\xc1\x64\x36\xcc\xee\xa2\x52\xfc\xdf\xcb\x9a\x48\x4d\x8c\x89\x6d\x0e\x4b\x32\xdf\xf7\x6d\x86\x99\x5f\x92\xe5\x8a\x0d\x4c\x53\xb5\x0b\x52\xab\x0d\xf2\x32\x80\x77\x56\x19\xfc\xde\x2f\x03\x7f\x3c\x7e\x9a\x84\xa1\xe7\x19\x16\xa4\x85\x34\x89\xa2\x1e\x89\x0c\x47\x10\x1a\x4e\x28\xee\x83\x07\x17\x8f\x54\x11\x8e\x60\xf5\x3c\x23\xf3\x6f\xdd\xaf\x4a\x96\x19\xc9\x4c\x72\x25\x37\x81\xb2\x64\x90\x47\xe0\x8c\xc3\xbf\x55\x23\xd9\xec\x25\xc1\x9d\x9e\xd1\xc9\xdb\x65\x0a\x8d\xd8\x26\x14\xfb\xf6\xd4\x5c\x97\x7b\x3c\xff\xbf\xd8\x08\x8d\x37\x7d\x81\x4a\x53\x94\x46\x71\x39\x0d\x5d\x38\xff\x0c\xab\xce\xe9\xc3\xe3\xab\xb6\x79\x9e\x1e\x66\x24\x19\x85\xc6\x05\xb2\x44\x32\x22\x76\x77\x4f\x93\x7d\xfd\x6e\x16\x14\xa9\x2c\x54\x96\xe5\xd7\xf4\x6a\xc3\xbb\xfa\xf5\xaa\xb2\x97\x41\xf9\x56\x9f\xec\x59\xbf\x19\x58\x06\xb5\x48\xb4\x8d\x17\xf6\x6d\x8e\x07\x17\x29\x7a\x59\xff\x82\x0f\xcf\x03\xc8\x19\x73\xc1\xd8\xd3\x49\x4c\x6e\x45\xbe\x35\x1b\x5f\x4a\xb7\xb1\xd2\x01\x50\x68\x03\xa9\xc8\xb0\x90\x46\x0f\x44\x14\x95\x58\xb8\xb3\x11\x0a\x77\xde\x41\x44\x43\xb1\x03\x8f\x5a\xe1\x5e\x4e\x6e\x29\xb5\xe6\x9b\xd0\xb9\xae\x5d\x87\x1a\x38\x6a\xaa\x7e\x87\xaa\x36\xb5\x8d\xb5\xcb\xaf\x6e\xe2\xd6\x20\xf4\x0f\xb8\x6b\x89\xb5\xd3\x57\x04\xcf\x0c\x7a\x00\x47\xef\xf8\x19\x00\x00\xff\xff\x77\xe6\xf2\x61\x95\x04\x00\x00" func epochAdminDeploy_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1259,11 +1170,11 @@ func epochAdminDeploy_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/deploy_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc0, 0xec, 0x40, 0x48, 0x4, 0x2f, 0x71, 0x7b, 0xd8, 0xb, 0xbb, 0x6b, 0xa7, 0x3c, 0x3f, 0x5f, 0x22, 0x3e, 0x7d, 0xb, 0x7f, 0x80, 0x8, 0x21, 0xc3, 0x66, 0x12, 0xb4, 0x70, 0xd2, 0x99, 0xc7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3b, 0x7a, 0xe, 0xfd, 0xd8, 0x13, 0x8f, 0x9b, 0x36, 0x65, 0x11, 0x9d, 0x7, 0x4f, 0x62, 0xb9, 0x4e, 0x62, 0xe3, 0x15, 0xb8, 0x23, 0xf6, 0x95, 0xa4, 0xd3, 0xde, 0xd3, 0x54, 0x5c, 0xff, 0x57}} return a, nil } -var _epochAdminDeploy_qc_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xce\xb1\x4a\x03\x41\x10\xc6\xf1\x7e\x9e\xe2\xab\xe4\x16\x8e\xa4\x95\xeb\x42\x6c\x6c\x6c\xc4\x4a\x2c\x86\xd9\x65\x5d\xa2\x33\x97\xdd\x09\x22\x92\x77\x17\xb2\xab\x98\xca\x72\xe0\xfb\x33\xbf\xed\x16\x77\x69\x7d\xb3\xcf\x06\xff\x30\x88\xa9\x57\x16\x6f\x70\x03\x2b\x58\xc4\x4e\xea\x28\x0a\xd3\x04\xaf\xac\x8d\xc5\x8b\x29\x81\xfe\x5c\xd3\x51\x1e\xf8\x3d\x2d\x78\xf4\x5a\x34\xcf\x38\xca\xde\x62\x5a\xf0\xfc\x74\xaf\x7e\xfb\x32\x23\x1e\xf2\xf5\x22\x1e\xf2\xd5\x24\xe0\x8b\x08\x58\x6b\x5a\xb9\xa6\xa9\x95\xac\xa9\x2e\xe0\x93\xbf\x4e\xbb\x18\xf7\x43\x16\x70\xb3\xeb\xa8\x11\x00\x7d\xba\xf9\xb5\x6f\x38\xc6\x49\x2f\xcf\x3a\x6b\x86\x5c\x3e\x75\x54\xf8\xb7\x1a\xd6\x9f\x6c\x48\x03\x01\x67\xa2\x33\x81\xbe\x03\x00\x00\xff\xff\x37\x0b\x9f\x58\x36\x01\x00\x00" +var _epochAdminDeploy_qc_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xce\x31\x4b\xc4\x40\x10\x05\xe0\x7e\x7e\xc5\x2b\x13\x08\x77\xad\xa4\x3b\xb4\xb1\xb1\x11\x2b\xb1\x18\x66\x97\x75\x39\x9d\x49\x76\x27\x88\x48\xfe\xbb\x90\x8d\x62\x2a\xcb\x61\xde\x7b\x7c\xe7\x33\xee\xe2\xf4\x66\x9f\x15\xfe\x61\x10\x53\x2f\x2c\x5e\xe1\x06\x56\xb0\x88\x2d\xea\xc8\x0a\xd3\x08\x2f\xac\x95\xc5\xb3\x29\x81\xfe\x5c\xdd\x2c\x0f\xfc\x1e\x47\x3c\x7a\xc9\x9a\x06\xcc\x72\x6b\x21\x8e\x78\x7e\xba\x57\xbf\x79\x19\x10\xae\xe9\x98\x08\xd7\x74\x88\xf4\xf8\x22\x02\xa6\x12\x27\x2e\xb1\xab\x39\x69\x2c\x23\x2e\x8b\xbf\x5e\x9a\x62\x4f\x00\xed\x77\xfa\xc5\x9e\x38\x84\x4e\xb7\xf5\xe6\x18\x20\xdb\x74\x53\xf4\xff\xb6\x76\xdc\x4f\x6d\xa7\xf5\x04\xac\x44\x2b\x81\xbe\x03\x00\x00\xff\xff\x63\x1d\x09\x1c\x27\x01\x00\x00" func epochAdminDeploy_qc_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -1279,11 +1190,11 @@ func epochAdminDeploy_qc_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/deploy_qc_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf2, 0xf3, 0x8a, 0xbb, 0x2a, 0x94, 0xec, 0x2, 0x91, 0xbb, 0xb8, 0x47, 0x83, 0xda, 0xe4, 0x7, 0x32, 0x98, 0x19, 0x9, 0x22, 0xec, 0xd7, 0x7e, 0x5d, 0x67, 0xf5, 0x20, 0x9d, 0x75, 0xef, 0x5f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0xe5, 0xe6, 0x5e, 0xb3, 0x8d, 0x7c, 0x34, 0x5, 0xbf, 0xe9, 0x71, 0x45, 0x48, 0x7, 0xa7, 0xaa, 0x67, 0xd5, 0x1e, 0x45, 0x4b, 0x78, 0xc9, 0x66, 0x5b, 0x35, 0x61, 0x8f, 0x22, 0xd8, 0x7d}} return a, nil } -var _epochAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\x4f\x6b\xc3\x30\x0c\xc5\xef\xfe\x14\x22\x87\x92\xc0\x48\xef\x65\x5b\xd9\xbf\xb2\xde\xca\x3a\x76\x57\x12\xb5\x36\x73\x2d\xa3\x28\x0d\x61\xf4\xbb\x8f\x24\x5d\x96\xea\x26\xfc\x9e\xde\xf3\xcf\x9d\x22\x8b\xc2\xc6\x73\xfb\x16\xb9\xb4\x70\x10\x3e\x41\x32\xed\x89\x99\x29\xb6\xaf\x9f\x58\x78\xda\x2b\x7e\xbb\x70\x9c\x49\x6f\x1f\x12\x63\x96\xcb\x25\xec\xb0\xab\x41\x2d\x81\x50\x8b\x52\xd5\x70\x60\x19\xf6\x28\x74\x76\xdc\xd4\x40\x7d\xc2\xa0\xdd\x1e\x6e\x94\x16\xcf\x04\xe8\x85\xb0\xea\xa0\x20\x0a\x10\xd1\x55\x77\xa3\x1b\xbb\x13\x05\x85\xd6\x79\x0f\x81\x15\x2c\xc6\x48\xc1\x18\x15\x0c\x35\x96\xea\x38\xc0\x8f\x01\x80\x3e\x28\xa2\x50\x5a\xbb\x63\x20\x59\x01\x36\x6a\xd3\x67\x16\xe1\xf6\x0b\x7d\x43\x19\x2c\x9e\xca\x92\x9b\xa0\xd9\xd5\xd1\x8f\x27\x05\x4b\x28\x5a\x10\x2a\x3c\xc0\xe8\xce\x6b\x65\xc1\x23\xe5\xc5\xe0\xbf\x5f\x4c\x88\xf2\xf7\x3f\xf1\x63\xda\x23\x59\xfd\xd3\xcc\xa7\x3b\xfb\xd1\xbd\x43\xb5\xd9\x94\xd4\xcf\x7a\x0d\x11\x83\x2b\xd3\xe4\x85\x1b\x5f\x0d\x3f\x1a\x23\x66\x25\x06\xd2\xd7\x02\x10\x51\x6d\x92\x99\xe9\xca\x24\xcb\x23\x76\x1f\x23\xc1\x0d\xcb\xee\x4a\x79\x28\x92\x8e\xa1\x17\x73\xf9\x0d\x00\x00\xff\xff\x18\x65\x13\x72\xf1\x01\x00\x00" +var _epochAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\xcf\x6e\xa3\x40\x0c\x87\xef\xf3\x14\x16\x87\x15\x91\x56\x64\xcf\xd1\xb6\x51\x94\x3f\x4a\x4e\x45\xa1\x2f\x60\xc0\xc9\x8c\x4a\xc6\x23\x63\x42\x51\x95\x77\xaf\x80\x94\xa6\xaa\x6f\xa3\xf9\xec\xcf\xfe\xb9\x4b\x60\x51\xd8\x55\xdc\x6e\x03\x17\x16\x4e\xc2\x17\xf8\xf7\xbe\x4d\x5f\xd6\xfb\xd5\x66\x73\xdc\x66\x99\x79\x80\x0e\x9b\x57\xcc\x2b\xca\x14\xdf\x9c\x3f\x8f\x74\xf4\xfb\x23\x32\x66\x3e\x9f\x43\x8a\x5d\x0d\x6a\x09\x84\x5a\x94\xb2\x86\x13\xcb\xf0\x0e\x42\x57\xc7\x4d\x0d\xd4\x4b\x07\xf6\x70\xfa\x41\x5a\xbc\x12\x60\x25\x84\x65\x07\x39\x91\x87\x80\xae\xfc\x3b\x76\x63\x77\x21\xaf\xd0\xba\xaa\x02\xcf\x0a\x16\x43\x20\x6f\x8c\x0a\xfa\x1a\x0b\x75\xec\xe1\xc3\x00\x40\x2f\x0a\x28\x14\xd7\xee\xec\x49\x16\xb0\x6a\xd4\xae\x8a\x82\x1b\xaf\xb3\x3b\xd2\x57\x45\x0a\x96\x50\x34\x27\x54\x78\x82\x11\x4f\x72\x16\xe1\xf6\xff\x9f\x29\x9e\x64\xff\x05\x3d\xc7\xfd\xed\x8b\xef\xe4\x92\xa9\x3f\x53\x16\x3c\x53\x8a\x6a\x67\x93\xa1\xaf\xe5\x12\x02\x7a\x57\xc4\xd1\x9a\x9b\xaa\x1c\x56\x1f\x15\x0f\xf2\x21\xd2\x7a\x1c\x01\x01\xd5\x46\x33\x33\x4d\x99\xb0\x24\x60\x77\x1c\xa3\xda\xb1\xa4\xf7\x38\x87\x45\xe2\x51\x7a\x33\xb7\xcf\x00\x00\x00\xff\xff\x39\x92\xd8\x62\xdd\x01\x00\x00" func epochAdminPay_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -1299,11 +1210,11 @@ func epochAdminPay_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/pay_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc5, 0x44, 0xb, 0xf, 0x17, 0x22, 0x70, 0x23, 0x47, 0x80, 0xe0, 0x8d, 0xa, 0x3c, 0x31, 0x58, 0xc8, 0xd8, 0xe5, 0x97, 0x7b, 0xb3, 0x3b, 0x2a, 0x68, 0x2, 0xa, 0xcf, 0xcb, 0xe8, 0x50, 0x83}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0x5d, 0xa8, 0x54, 0xe9, 0x46, 0x13, 0x3c, 0xb8, 0x58, 0x6c, 0xfe, 0x8e, 0x56, 0x39, 0xcf, 0x3c, 0x7b, 0xfe, 0xe6, 0x11, 0x69, 0xcb, 0x5a, 0x3d, 0x9a, 0x9c, 0x72, 0xa7, 0xc8, 0x4, 0xa7}} return a, nil } -var _epochAdminReset_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x6f\xdb\x38\x10\xbd\xeb\x57\x0c\x7c\xc8\xda\x88\x23\x23\xc0\x62\x0f\xc6\xee\x06\x59\x27\x0b\x04\xbd\xa4\x70\x9a\x4b\xd1\xc3\x48\x1a\x4b\x84\x25\x8e\xc0\x19\xc5\x35\x8a\xfc\xf7\x82\xa4\x3f\xa4\x42\x4d\xe2\x93\x49\xbe\xf7\xf8\xf8\xde\xc8\x34\x2d\x3b\x85\xff\x6b\xde\xdd\xb7\x9c\x57\xb0\x71\xdc\xc0\xe4\xb4\x9e\x24\x3d\xc4\xc3\xdd\x13\x66\x35\xad\x15\xb7\xc6\x96\x3d\xe8\xf0\x60\x92\x24\x8b\x05\x3c\x55\x04\x8e\x84\x34\xea\xaa\x43\x2b\x98\xab\x61\x0b\x64\x0b\x01\xad\x08\xf2\xce\x39\xb2\x0a\x14\x20\xc6\x86\xcd\xb3\x17\x69\xd0\x29\xe4\x6c\xd5\x61\xae\x5e\x14\x6d\x01\x19\x95\xc6\x0a\x20\x58\xda\x1d\x98\x3b\xa3\x55\xe0\x96\xe6\x85\xac\x67\x6c\x4c\xd9\x39\xf4\xb7\xa5\xc1\xc9\x19\x8b\xf5\x0e\xf7\x02\x15\x8a\x17\x0c\x2e\xb8\xb3\x4a\xee\xe8\x26\xdc\xbd\x8a\x7b\x97\xd7\x91\xde\x77\x2f\x64\x0b\x72\xd0\x74\xa2\xd0\x3a\x7e\x31\x05\x05\x19\x2f\x37\x22\x01\xd3\x8c\x36\xec\x22\x26\x04\x02\x8a\x5b\x12\x68\x6b\xcc\x69\x06\xe8\x9f\x22\xb8\x21\xdd\x43\x43\x79\x85\xd6\x48\x93\x26\x8b\x85\xd7\xbb\xeb\x9c\x4f\xda\x92\xee\xd8\x6d\x41\x5a\x76\x5b\x99\x07\xa9\x8c\x59\x45\x1d\xb6\x2d\x15\xde\x87\x72\xce\x35\x88\xa2\x12\x18\xf1\x61\xc6\x84\x62\x94\xd3\xd1\xc7\xcd\xe6\xc7\x50\x7b\x4d\x19\x81\x4e\xa8\x00\x65\xf0\x6e\xca\xe8\x3c\x86\x77\x8c\xea\x03\x55\x85\xe9\x18\xcb\x43\x79\xd4\x0d\x5c\xc2\xf5\x6c\x0e\xc2\xa0\x15\x2a\x18\xfd\x43\xbc\x9e\x18\x51\x3f\x22\xa1\xe2\x63\x63\x6f\xbc\x3d\x8d\xb3\x67\x64\xd8\x59\xc5\x5d\x5d\x00\xdb\x7a\x0f\x19\xc5\xf7\x9d\x86\x86\x3b\x6d\x3b\x05\xde\x0c\xb5\xa1\x53\x53\x1b\xdd\x2f\xbd\x22\x84\xd5\x21\x85\x10\xd6\x95\x7e\xbf\x42\x57\x4a\x92\xf4\x2e\x1a\x7b\xd8\x12\xbe\x3c\x58\xfd\xeb\xcf\x79\x02\xbd\x9f\x43\x5b\x70\xb3\xe6\xce\xe5\xb4\x84\xb5\xfa\x9e\x87\x08\x51\x74\xfa\x6c\x68\x37\x2e\x20\xf1\x63\xbb\xb7\xc5\xef\x31\x34\x3c\x9c\xc1\x8f\x24\x9c\xb7\x8e\x5a\x74\x34\x15\x53\x5a\x6f\x10\x3b\xad\xa6\xff\xb1\x73\xbc\x7b\xc6\xba\xa3\x19\x5c\xdc\xe6\xa1\x6b\x4f\x39\xaa\xd5\x74\xf8\x52\x6f\x8b\xc6\x58\xf8\x07\x22\x3d\x15\x65\x87\x25\xa5\x59\x10\xf8\xfb\xe2\x34\x15\x69\x00\xfe\x3b\xf5\xa3\xb0\x3c\x0f\x4b\x8a\x7e\x7b\x1d\x59\x8f\xa8\xd5\x6c\x60\xfa\xe6\x06\x5a\xb4\x26\x9f\x4e\x56\xa1\x34\xcb\x0a\x51\x1a\x2a\x42\xa7\x19\xa1\xc6\xe9\x3a\x5c\x0c\x2d\x6a\x35\x99\x25\x27\x95\xb3\xc9\xf4\x3c\xd7\xe3\xd5\x8c\x6c\x0e\x23\xfc\xf5\x37\xec\xad\xbf\x7a\x9b\xd7\xaf\xf3\xf4\xf7\x7d\xca\xa0\xe2\xe1\xfa\x1d\xf2\xa9\x7b\xfa\x10\x3c\xe7\xba\xa6\x5c\xd9\xad\xea\x4e\x94\x9c\x2c\xe1\xeb\xb7\xf7\x38\x11\xfa\x79\xf5\x11\x70\xb1\x2d\x1f\xbb\xec\x13\xed\x03\x38\x56\xfe\x9a\xbc\x26\x3f\x03\x00\x00\xff\xff\x12\x4d\x3d\x2b\x82\x06\x00\x00" +var _epochAdminReset_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x6f\xdb\x38\x10\xbd\xeb\x57\x0c\x7c\xd8\xb5\x11\xc7\xde\x00\x8b\x3d\x18\xdb\x06\x86\xed\xa2\x41\x0f\x4d\xeb\xb4\x97\xa2\x87\x91\x34\x96\x08\x4b\x1c\x81\x33\x8a\x63\x14\xf9\xef\x05\xc9\xf8\x43\xad\x9a\x44\x27\x91\x7c\xf3\xf8\xe6\xbd\xa1\xa9\x1b\x76\x0a\xef\x2a\xde\xad\x1a\xce\x4a\xd8\x38\xae\xe1\x9f\x87\xd5\xed\xc7\xc5\xfb\xf9\x72\xf9\x79\xb5\x5e\x27\x67\xa0\x9b\xe5\x1d\xa6\x15\xad\x15\xb7\xc6\x16\x11\x3d\xf8\xfd\x60\x90\x24\xd3\x29\xdc\x95\x04\x8e\x84\x34\x52\xab\x43\x2b\x98\xa9\x61\x0b\x64\x73\x01\x2d\x09\xb2\xd6\x39\xb2\x0a\x14\x20\xc6\x86\xcd\x93\x1c\xa9\xd1\x29\x64\x6c\xd5\x61\xa6\x9e\x14\x6d\x0e\x29\x15\xc6\x0a\x20\x58\xda\x3d\x55\xee\x8c\x96\xa1\xb6\x30\xf7\x64\x7d\xc5\xc6\x14\xad\x43\x7f\xdb\x24\x28\x39\x61\xb1\xda\xe1\x5e\xa0\x44\xf1\x84\x41\x05\xb7\x56\xc9\x1d\xd4\x84\xbb\x17\x71\xef\xe2\x2a\x96\x9f\xab\x17\xb2\x39\x39\xa8\x5b\x51\x68\x1c\xdf\x9b\x9c\x02\x8d\xa7\xeb\xa1\x80\x61\x4a\x1b\x76\x11\x13\x0c\x01\xc5\x2d\x09\x34\x15\x66\x34\x02\xf4\xad\x08\x6e\x48\xf7\x50\x53\x56\xa2\x35\x52\x4f\x92\xe9\xd4\xf3\x2d\x5b\xe7\x9d\xb6\xa4\x3b\x76\x5b\x90\x86\xdd\x56\xc6\x81\x2a\x65\x56\x51\x87\x4d\x43\xb9\xd7\xa1\x9c\x71\x05\xa2\xa8\x04\x46\xbc\x99\xd1\xa1\x68\xe5\xb0\xb7\xb9\xd1\xf8\x60\xea\x59\x52\x46\xa0\x15\xca\x41\x19\xbc\x9a\x22\x2a\x8f\xe6\x1d\xac\x7a\x45\x54\x61\x3a\xfa\xfc\x50\xee\x55\x03\x17\x70\x35\x1a\x83\x30\x68\x89\x0a\x46\xff\x16\xcf\x27\x46\xd4\x8f\x48\x88\xf8\x90\xd8\x33\xbd\x4f\xe2\xec\x19\xe9\x66\x56\x72\x5b\xe5\xc0\xb6\xda\x43\x4a\xb1\xbf\xe3\xd0\x70\xab\x4d\xab\xc0\x9b\x2e\x37\xb4\x6a\x2a\xa3\xfb\x99\x67\x84\xb0\x7a\x72\x21\x98\x75\xa9\x0f\x97\xe8\x0a\x49\x92\xb3\x8b\xfa\x1a\x9b\xc1\x97\x1b\xab\xff\xfd\x3b\x4e\xe0\xec\x73\x68\x73\xae\xd7\xdc\xba\x8c\x66\xb0\x56\x9f\x73\x17\x21\x8a\x4e\xbf\x1a\xda\xf5\x13\x48\x7c\x6c\x2b\x9b\xff\x19\x43\xdd\xc3\x11\xfc\x48\xc2\x79\xe3\xa8\x41\x47\x43\x31\x85\xf5\x02\xe7\xad\x96\xf3\x2c\x84\xeb\x31\x87\xf2\x8a\x9e\x9e\xe6\x3c\xaf\x8d\x85\x37\x10\xf1\x93\x94\x9d\xe3\xdd\xff\x7f\x1d\xe3\x9f\x04\xc0\xdb\xa1\xcf\x7c\x76\x9a\x8a\x09\xfa\xed\xb5\xb2\xc3\x82\x6e\x51\xcb\x51\x47\xdd\xf5\x35\x34\x68\x4d\x36\x1c\x2c\x42\x3a\x96\x15\x22\x35\x94\x84\x4e\x53\x42\x8d\x63\x24\x91\x02\x1a\xd4\x72\x30\x4a\x8e\x2c\x27\x71\x93\xd3\x00\xf7\x67\xd0\xb3\xd9\xf5\xea\xd7\xaf\x1b\xd0\xf9\xea\xf9\xba\xf3\xdc\x8e\xbf\x2f\x97\x74\xb2\xec\xae\x5f\x28\x3e\x86\x4c\xaf\x82\x67\x5c\x55\x94\x29\xbb\x45\xd5\x8a\x92\x93\x19\x7c\xfb\xfe\x52\x4d\x84\x7e\x5a\xbc\x06\x9c\x6f\x8b\xdb\x36\xfd\x40\xfb\x00\x8e\x91\x3f\x26\x8f\xc9\xcf\x00\x00\x00\xff\xff\xa1\xae\x0d\x2c\x6e\x06\x00\x00" func epochAdminReset_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1319,11 +1230,11 @@ func epochAdminReset_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/reset_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe8, 0x2c, 0xf0, 0xa9, 0xd5, 0x3f, 0xb4, 0x42, 0x85, 0x42, 0x5a, 0xbb, 0xe2, 0x54, 0xb2, 0xdd, 0x90, 0x88, 0xc7, 0x55, 0xbe, 0x47, 0x6b, 0x78, 0xd0, 0xf3, 0x25, 0x54, 0xf6, 0xe9, 0x7a, 0x2b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3e, 0x9, 0xe8, 0x26, 0xed, 0xb5, 0xeb, 0xef, 0xce, 0x12, 0xee, 0xc1, 0xb6, 0x9e, 0xc1, 0x22, 0x82, 0xe1, 0x6e, 0x76, 0x7e, 0xa7, 0x67, 0xcb, 0x52, 0xaf, 0x29, 0xa1, 0x2f, 0xe5, 0x25, 0x14}} return a, nil } -var _epochAdminSet_automatic_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xb1\x4e\xc4\x30\x10\x44\xfb\x7c\xc5\x2a\xc5\x29\x69\xfc\x01\x11\x70\xca\xa1\xa3\x46\x20\xd1\xef\xd9\xcb\xc5\x92\xe3\xb5\x36\x6b\xa5\x40\xf7\xef\xc8\x31\xe4\x1a\x98\xce\x96\x67\xe6\x79\xfc\x9c\x58\x14\x5e\x02\xaf\xe7\xc4\x76\x82\x4f\xe1\x19\xda\xfd\xdc\x36\x8d\x0a\xc6\x05\xad\x7a\x8e\x1d\x66\xe5\x19\xd5\xdb\x37\x5a\x51\xdc\x72\x8e\x78\x09\xe4\x06\x38\x31\x87\x1e\xbe\x1a\x00\x80\x24\x94\x50\xa8\x5b\xfc\x35\x92\x0c\x80\x59\xa7\xee\xc4\x22\xbc\x7e\x60\xc8\xd4\xc3\x61\xb4\x96\x73\xd4\x5f\x47\x51\x20\x05\x2a\x95\xa3\x9b\x7d\x84\x47\xa8\x76\xb3\x28\x0b\x5e\xc9\x5c\xb6\x80\x87\xc3\x8e\x66\xb6\x87\x4f\x5d\x21\x1e\xee\x3f\x30\x58\xae\xdf\xab\xeb\x15\x75\xea\xf7\x8a\xa2\xe3\x11\x12\x46\x6f\xbb\xf6\x99\x73\x70\x10\x59\xa1\x46\xc3\x66\xac\x03\xfc\x94\x42\x42\x9d\xda\xbe\xd9\x13\xee\x80\x26\x27\x87\x4a\xe3\xdf\x83\xfc\x37\x54\x65\xb9\x35\xb7\xef\x00\x00\x00\xff\xff\x14\xdd\x64\x3c\x78\x01\x00\x00" +var _epochAdminSet_automatic_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\x25\x87\xe2\x5c\x4c\xcf\xa6\x6d\x50\x13\x97\xde\x1a\xe2\x2f\xd8\x48\x6a\x2c\x90\xb5\x62\xbd\xc2\x85\x92\x7f\x2f\x8a\xa8\x73\x69\xe7\x28\x66\x46\x6f\xd6\x4f\x89\x58\xe0\x2d\xd0\xd2\x27\x32\x23\x7c\x32\x4d\xf0\xf8\xd5\x1f\x3f\xf6\xef\xfa\x70\x38\xf5\xc3\xa0\x94\x30\xc6\x19\x8d\x78\x8a\x0d\x66\xa1\x09\xc5\x9b\x93\x5b\x90\xed\xdc\x47\x3c\x07\x67\x3b\x78\x25\x0a\x5b\xf8\x56\x00\x00\x89\x5d\x42\x76\xcd\xec\x2f\xd1\x71\x07\x3a\xcb\xa8\x8d\xa1\x1c\xe5\xd7\x52\x14\x9c\x80\x2b\xdf\x6a\x3b\xf9\x08\xcf\x50\xfd\xed\x99\x98\x69\x79\x7a\x58\xb1\xda\x9b\xe1\xa5\x29\x74\xdd\x9d\xb6\xc5\xf2\x3c\x08\x31\x5e\xdc\x11\x65\xdc\xae\xd5\x45\xbb\x1d\x24\x8c\xde\x34\x9b\x3d\xe5\x60\x21\x92\x40\xad\x86\x5b\xb0\x8e\x9d\x6b\x1c\x12\xca\xb8\xd9\xaa\xb5\xe1\x0e\xd6\xe6\x64\x51\x9c\xfe\x7b\xf9\x7f\x17\xa9\x2c\x57\x75\xfd\x09\x00\x00\xff\xff\xac\x8e\x3a\x7a\x64\x01\x00\x00" func epochAdminSet_automatic_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -1339,11 +1250,11 @@ func epochAdminSet_automatic_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/set_automatic_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xd6, 0xdc, 0xeb, 0xa4, 0xe1, 0xef, 0xb3, 0x7b, 0x5, 0x20, 0x54, 0xbe, 0xeb, 0xff, 0x1b, 0x2a, 0xcd, 0xde, 0xf5, 0x11, 0xeb, 0x9e, 0x29, 0xb, 0xa3, 0x57, 0x6f, 0x14, 0x6d, 0xa8, 0x16}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x79, 0x9, 0x8e, 0xe5, 0x32, 0xcb, 0x3e, 0x61, 0xd5, 0x8a, 0x3c, 0xd2, 0xdb, 0x86, 0x84, 0x19, 0x2c, 0xb6, 0x67, 0x7b, 0xac, 0x61, 0x5f, 0x6, 0x64, 0xc2, 0xd, 0x5a, 0x24, 0x94, 0x6b}} return a, nil } -var _epochAdminSet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x31\xcb\xdb\x30\x10\x86\x77\xff\x8a\x77\x2a\x0e\x84\x78\x29\x1d\x42\x29\xa4\xd0\x4c\x85\x0e\x49\xe9\x7c\x96\x2f\xb1\xa9\x22\x99\xd3\xc9\xae\x5b\xf2\xdf\x8b\x64\xbb\xa4\xf9\xf8\xe0\xf3\xe0\x41\xf7\xdc\xa3\xf7\x74\x45\x55\x55\x38\xd1\xc0\x01\xe4\x40\x37\x1f\x9d\x42\x3d\x82\x7a\xa1\x2b\x43\x5b\x52\x08\xf7\xc2\x81\x53\xa5\xe5\x05\xca\x8d\xfe\x82\xda\xbb\x18\xa0\xfe\x27\xbb\x30\xd3\x2d\x0d\x8c\x89\xb3\xa6\x66\xd4\x51\x1c\x37\x19\x3f\xb7\x5d\x58\xef\xe8\x02\x42\xac\x55\xc8\x28\x37\xb8\x88\xbf\x65\xb9\x7a\x25\x8b\x10\xfb\xde\x4e\x49\x7f\xfc\xfa\xed\x47\xee\x1d\x5b\x76\x3c\xb0\x80\xe0\x78\x5c\x38\xe1\x91\xa4\x79\x74\x1a\xb2\x26\x5a\x4a\xce\x44\x4f\xe0\xde\x9b\x36\x1b\x6a\x36\x14\x43\x1a\x89\x27\x90\x30\x9c\x57\xdc\x98\xdc\x9a\x94\xd0\x93\x68\xba\xf5\x39\x49\xee\xcf\xbf\x2f\x03\x3b\x8d\x64\xed\xb4\x05\x59\xfb\xff\xf8\x63\x97\x4e\xd6\x91\x41\xae\x79\x78\xb0\x7f\xd5\xdf\x2c\xbe\x28\x54\xc8\x05\x32\xda\x79\x57\x66\xc9\x39\x39\x0e\x19\xdd\xe3\xfb\xb1\xfb\xf5\xe1\xfd\x06\x7f\x0a\x00\xe8\x85\x7b\x12\x2e\x43\x77\x75\x2c\x7b\x50\xd4\xb6\x3c\xcd\x1b\xda\xe0\xdd\xc1\x98\xd4\xb5\xd2\xe9\x9b\xc9\xdd\xb2\xc5\x9d\xf5\xd4\x7c\x9c\x9d\x9f\xca\xf4\xd6\x7b\x54\x4b\xad\x3a\x5a\x3f\x7e\x7e\x0a\xb0\x79\x4d\x14\x68\xe0\x17\x71\xb7\x50\xff\x26\xe1\xbd\xb8\xff\x0d\x00\x00\xff\xff\x6b\x0e\xc9\x02\x70\x02\x00\x00" +var _epochAdminSet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xcf\x8a\xdb\x30\x10\x87\xef\x7e\x8a\xdf\x31\x81\x50\x5f\x4a\x0f\xa1\x14\x52\x68\x4e\x85\x1e\x9a\xd2\xf3\x58\x9e\xc4\xa6\x8a\xc6\x8c\x46\x76\xbd\x4b\xde\x7d\x91\x12\x2f\xd9\xec\x65\x75\xd0\x41\xf3\xcd\x37\x7f\x54\xd5\x75\x8d\xdf\x34\x72\x04\x05\xd0\x59\x52\x30\x98\x20\x9a\x28\x9d\x18\xd6\x91\x41\x79\x50\x8e\x9c\x23\x1d\xdf\xa0\x92\x28\x47\x34\x12\x52\x84\xc9\x3f\x0e\xf1\x4a\x77\x34\x32\x66\x2e\x9a\x86\xd1\x24\x0d\xdc\x16\xfc\xd0\xf5\x71\xa9\xd1\x47\xc4\xd4\x98\x92\x33\x6e\x71\x54\x39\x17\xb9\x89\x91\x47\x4c\xc3\xe0\xe7\xac\xdf\xff\xfc\xf5\xb7\xe4\x4e\x1d\x07\x1e\x59\x41\x08\x3c\xdd\x38\xe5\x89\xb4\xbd\x77\x3a\xf2\x2e\x79\xca\xce\x4c\xcf\xe0\x41\x5c\x57\x0c\x0d\x3b\x4a\x31\x8f\xc4\x33\x48\x19\x41\x0c\x67\xa6\xb0\x74\x4a\x18\x48\x2d\x57\x7d\xec\xa4\xe4\x97\xeb\xc7\xc8\xc1\x12\x79\x3f\x6f\x40\xde\xbf\x1d\x7f\xea\xf3\xcb\x32\x32\x28\xb4\x77\x0b\x7b\x8d\x3e\xb1\x4a\x55\x99\x52\x88\xe4\xac\x97\xb0\x2a\x92\x43\x76\xec\x0a\xba\xc5\x9f\x7d\xff\xff\xcb\xe7\x35\x9e\x2b\x00\x18\x94\x07\x52\x5e\xc5\xfe\x14\x58\xb7\xd8\x25\xeb\x76\xce\x65\x74\x41\xf2\xb9\x86\x3f\x79\xa1\xf6\xeb\x55\xf0\x6d\x95\x17\xbb\x45\x7d\xfb\xce\x7a\xef\x65\xfa\xfe\x50\x6d\xfd\x28\x88\x34\xf2\xbb\x9e\x36\x30\xf9\x90\xe8\x52\x5d\x5e\x02\x00\x00\xff\xff\x15\x31\xd0\x69\x55\x02\x00\x00" func epochAdminSet_bonus_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1359,11 +1270,11 @@ func epochAdminSet_bonus_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/set_bonus_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0x59, 0x6d, 0x99, 0x1b, 0x9b, 0xe3, 0x7f, 0xac, 0xcc, 0x5b, 0x8e, 0xfc, 0xda, 0x10, 0xa3, 0xe1, 0x8e, 0x81, 0xf0, 0xde, 0xd9, 0x1e, 0x8c, 0x3c, 0xa0, 0x15, 0x29, 0xfc, 0x2f, 0x7f, 0xc1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x20, 0x8f, 0x73, 0xe4, 0xb3, 0x15, 0xd3, 0xb1, 0x4a, 0x58, 0xdb, 0xc7, 0xc6, 0x1a, 0xca, 0x74, 0x57, 0xfc, 0xb2, 0x4c, 0x2d, 0x98, 0xfb, 0x8c, 0xc1, 0x95, 0xfe, 0xf4, 0xf6, 0xd8, 0x29, 0xc4}} return a, nil } -var _epochAdminUpdate_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xf4\x30\x10\x86\xef\xfd\x15\x43\x0f\x4b\x7b\x09\x7c\x97\xef\x50\xd4\x65\x5d\x14\xbc\x88\x20\x7a\x1f\xd3\x71\x1b\x48\x33\x61\x32\xa1\x07\xd9\xff\x2e\x69\xb4\x05\xe7\x96\x90\x67\xde\x27\xaf\x9b\x23\x8b\xc2\xa3\xe7\xe5\x21\xb2\x9d\xe0\x53\x78\x86\x76\x3b\xb7\x4d\xa3\x82\x21\xa1\x55\xc7\xa1\x0b\xb4\x3c\xe7\xf9\xec\x73\x52\x92\x34\xc0\xdb\x53\xd0\x7f\xff\x7b\xf8\x6a\x00\x00\xa2\x50\x44\xa1\x2e\xb9\x4b\x20\x19\x00\xb3\x4e\xdd\x3d\x8b\xf0\xf2\x8e\x3e\x53\x0f\x87\x93\xb5\x9c\x83\x16\x62\x45\xca\x78\x52\xa0\x12\x76\x1a\x67\x17\xe0\x16\x2a\x6f\x92\xb2\xe0\x85\xcc\xc7\xba\xe1\xe6\xb0\x49\x99\xf5\xe1\x5d\x57\x5c\x87\xdd\xdd\x60\xb9\x7e\xad\xd4\x0b\xea\xd4\x6f\x11\x65\x8e\x47\x88\x18\x9c\xed\xda\x33\x67\x3f\x42\x60\x85\xba\x1a\x56\xb0\x7e\xfd\x27\x14\x22\xea\xd4\xf6\xbb\xe4\x2e\x68\x72\x1c\x51\xa9\xf4\xc0\xde\x93\x55\x96\xdf\x42\xfe\xf4\x53\xf3\xaf\xcd\xf5\x3b\x00\x00\xff\xff\xa4\x93\x38\x91\x66\x01\x00\x00" +var _epochAdminUpdate_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xcf\x4a\xc4\x30\x10\xc6\xef\x7d\x8a\x61\x0f\xd2\x5e\x8a\x5e\x3c\x14\x75\x29\xdd\x8a\x5e\x74\xb1\xf8\x00\x31\x1d\xb7\x81\x34\x13\x26\x13\x2a\xc8\xbe\xbb\xa4\xc1\x2d\xec\x1c\xc3\xf7\xe7\xf7\xc5\xcc\x9e\x58\xe0\xd9\xd2\xd2\x7b\xd2\x13\x7c\x33\xcd\x70\xfb\xd3\x1f\xdf\xbb\x97\xf6\x70\xf8\xe8\x87\xa1\x28\x84\x95\x0b\x4a\x8b\x21\x57\x3a\x5c\xde\xe2\xdc\xd9\x18\x04\x39\x34\xf0\xf9\xea\xe4\xee\xbe\x82\xdf\x02\x00\xc0\x33\x7a\xc5\x58\x06\x73\x72\xc8\x0d\xb4\x51\xa6\x56\x6b\x8a\x4e\x92\x64\xd5\xa4\xb3\x28\x80\xa9\xb0\x1d\x67\xe3\xe0\x11\xb2\xa1\xfe\x22\x66\x5a\x1e\x6e\x2e\x40\xf5\x2a\x78\x2a\x13\x57\xb3\x71\xd6\x2a\x3d\x0f\x42\xac\x4e\x78\x54\x32\x55\x97\xe8\x74\xfb\x3d\x78\xe5\x8c\x2e\x77\x1d\x45\x3b\x82\x23\x81\x1c\x0d\xab\x31\xcf\x0c\xd9\x0e\x5e\xc9\xb4\xab\x36\xb8\x0d\xac\x8e\x7e\x54\x82\x69\x30\x59\x8b\x5a\x88\xff\x97\x5f\x7d\x44\xee\x3f\x17\xe7\xbf\x00\x00\x00\xff\xff\x03\xa4\x2c\x1e\x52\x01\x00\x00" func epochAdminUpdate_clustersCdcBytes() ([]byte, error) { return bindataRead( @@ -1379,11 +1290,11 @@ func epochAdminUpdate_clustersCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_clusters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0x2d, 0x63, 0x8c, 0xa3, 0x90, 0x7, 0x27, 0x5f, 0x26, 0x35, 0x5c, 0xa4, 0x14, 0xfc, 0xe7, 0x15, 0xcf, 0x58, 0xf0, 0x63, 0xa9, 0x64, 0xac, 0x59, 0x2f, 0x89, 0xc9, 0x99, 0x40, 0x69, 0xf8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0x82, 0xa2, 0x21, 0x78, 0x90, 0x2d, 0xd5, 0x9d, 0xdb, 0x39, 0x32, 0x8a, 0x6b, 0x70, 0xe, 0xed, 0xcc, 0x2a, 0xd2, 0xba, 0x87, 0xd4, 0xdb, 0x78, 0xa5, 0x5a, 0x3a, 0xb7, 0xf5, 0xe9, 0x5a}} return a, nil } -var _epochAdminUpdate_dkg_phase_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\x4d\x4b\xc4\x30\x10\x86\xef\xfd\x15\x43\x0f\x4b\x7a\xc9\x49\x3c\x14\x75\x59\x3f\x11\x2f\x0b\xe2\xde\xc7\x74\xdc\x04\xda\x4c\x48\x26\xf4\x20\xfb\xdf\x25\x8d\xb6\x38\xb7\x84\xbc\xef\xf3\x64\xdc\x14\x38\x0a\x3c\x8f\x3c\x3f\x05\x36\x16\xbe\x22\x4f\xd0\xae\xe7\xb6\x69\x24\xa2\x4f\x68\xc4\xb1\x57\x9e\xe6\xa3\xc5\x44\x27\x47\x73\xea\xe1\xe3\xd5\xcb\xf5\x55\x07\xdf\x0d\x00\x40\x88\x14\x30\x92\x4a\xee\xec\x29\xf6\x80\x59\xac\xba\xe7\x18\x79\x3e\xe1\x98\xa9\x83\xdd\xc1\x18\xce\x5e\xfe\x12\x65\x46\x12\xa0\x82\x3a\x0c\x93\xf3\x70\x0b\x35\xae\x93\x70\xc4\x33\xe9\xcf\xa5\xe0\x66\xb7\x2a\xe9\xe5\xe1\x9d\x2a\xa6\xfd\x66\xae\xb1\x5c\xbf\xd7\xd4\x11\xc5\x76\x2b\xa2\xcc\x7e\x0f\x01\xbd\x33\xaa\x7d\xe0\x3c\x0e\xe0\x59\xa0\x56\xc3\x12\xac\x1f\xff\x85\x42\x40\xb1\x6d\xd7\xac\x0d\x9b\xa0\xce\x61\x40\xa1\xc7\xb7\x97\x6d\x11\xff\xd7\x52\xb9\x97\xe6\xf2\x13\x00\x00\xff\xff\x94\xd7\x29\x1e\x5c\x01\x00\x00" +var _epochAdminUpdate_dkg_phase_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\x4d\x4b\xc4\x30\x10\x86\xef\xfd\x15\xc3\x1e\xa4\xbd\x14\x0f\xe2\xa1\xa8\x4b\xd9\xd6\x0f\x3c\x58\x2c\x7a\x1f\xd3\x71\x13\x68\x33\x21\x99\x52\x41\xf6\xbf\x4b\x36\xd8\xb2\x73\x1c\xde\x8f\xe7\x35\x93\x63\x2f\xf0\x38\xf2\xd2\x3a\x56\x1a\xbe\x3d\x4f\x70\xfd\xd3\x76\x6f\x87\xe7\xba\x69\xde\xdb\xbe\xcf\x32\xf1\x68\x03\x2a\x31\x6c\x73\x4b\x4b\xa7\x31\xd0\xa7\xa1\x25\x54\xf0\xf1\x62\xe5\xf6\xa6\x80\xdf\x0c\x00\xc0\x79\x72\xe8\x29\x0f\xe6\x68\xc9\x57\x50\xcf\xa2\x6b\xa5\x78\xb6\xf2\x2f\x89\x37\x92\x00\xc5\xba\x7a\x98\x8c\x85\x7b\x48\xfa\xf2\x8b\xbd\xe7\xe5\xee\x6a\xc5\x29\xcf\x82\x87\x3c\x52\x55\x1b\x65\x89\xf1\xdd\x0b\x7b\x3c\x52\x87\xa2\x8b\x35\x3a\xde\x7e\x0f\x0e\xad\x51\xf9\xee\xc0\xf3\x38\x80\x65\x81\x14\x0d\x67\x63\x1a\x19\x92\x1d\x1c\x8a\xde\x15\xd9\x9a\xb0\x81\x95\xb3\x1b\x50\xa8\x79\x7d\xda\x16\x5f\xee\x4f\xbd\xa7\xec\xf4\x17\x00\x00\xff\xff\xe0\xf6\x16\x5e\x48\x01\x00\x00" func epochAdminUpdate_dkg_phase_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1399,11 +1310,11 @@ func epochAdminUpdate_dkg_phase_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_dkg_phase_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x82, 0xa0, 0x30, 0xce, 0xb4, 0x51, 0x7b, 0xb0, 0x89, 0x4c, 0xa1, 0x7c, 0x59, 0xaa, 0xcd, 0x18, 0xb8, 0x5d, 0x4a, 0xb, 0xca, 0x8f, 0x30, 0x58, 0xd0, 0xa4, 0x14, 0x7c, 0x48, 0x80, 0x98, 0x3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xff, 0x12, 0x5a, 0x44, 0xb8, 0xd5, 0xb8, 0x5, 0x2a, 0xd0, 0x45, 0x97, 0xa7, 0x29, 0x2a, 0x1a, 0x76, 0xdd, 0x50, 0x3e, 0x12, 0x2a, 0xfc, 0xbe, 0x96, 0x57, 0xce, 0x5, 0x83, 0xbd, 0xfa, 0x43}} return a, nil } -var _epochAdminUpdate_epoch_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x94\x4f\x4f\xdc\x3a\x14\xc5\xf7\xf3\x29\xce\x9b\x05\x9a\x91\xe6\x85\xcd\xd3\x5b\x8c\x5a\x10\x05\x4a\x11\x2d\x45\x82\xd2\xf5\x9d\xe4\x26\xb1\x48\xec\xc8\xbe\x21\x8b\x8a\xef\x5e\xd9\xce\xe4\xcf\xa8\x2a\x42\x55\xb3\x40\xc2\xe3\x73\xce\xbd\x3f\xdb\x57\xd5\x8d\xb1\x82\x8f\x95\xe9\x2e\x1b\x93\x96\xc8\xad\xa9\xb1\x1c\xfe\x5f\x2e\x16\x62\x49\x3b\x4a\x45\x19\xbd\xca\x9e\x8a\xbb\x92\x1c\x7f\x66\xbd\xc5\xb7\x6b\x2d\xff\xff\xb7\x81\x13\x7a\x52\xba\x98\xad\xb1\x17\x4f\x56\xd6\xf8\xb1\x00\x80\xc6\x72\x43\x96\x57\x4e\x15\x9a\xed\x16\xd4\x4a\xb9\xfa\x60\xac\x35\xdd\x23\x55\x2d\xaf\x71\x74\x96\xa6\xa6\xd5\xb2\x57\xf8\xaf\x62\x89\x8e\x67\x59\xad\x34\xde\x23\xca\x13\x27\xc6\x52\xc1\xc9\x2e\x18\xbc\x3b\x1a\xca\x4e\xc2\xc6\x93\x95\xef\x66\x3b\x76\x97\x90\x5f\xbe\x8f\xaa\x3b\x92\x72\x3d\x44\xf8\xef\xf4\x14\x0d\x69\x95\xae\x96\xe7\xa6\xad\x32\x68\x23\x88\xd6\x08\xc2\x08\xa7\x0f\x45\x43\x52\x2e\xd7\x8b\xc1\x41\xe5\xf8\x67\x4c\x52\xee\x91\x2a\x95\x05\x5a\xe7\x46\xe7\xaa\x68\x2d\x05\x86\x23\xae\x0d\x26\x3c\x47\x66\xd3\xce\x03\xb3\x58\xd3\x2d\x77\x88\x67\xf4\xa8\xb8\x73\xa8\x5b\x27\xd8\x31\x0a\xcb\x24\x6c\x21\x25\x69\x48\xc9\x70\x6d\x0d\x93\xef\x8f\x05\xa4\x33\x5c\xdc\x5c\x21\x04\xe1\xd9\x6b\x97\x63\xdf\x2f\x63\x03\xc7\xc7\xc7\xb8\x68\x19\x62\x82\x4d\x4e\xa9\x78\xd3\x1e\xfd\x9f\xa7\xce\x82\x3a\x8e\x56\x6d\x93\x91\x70\x70\x88\x31\x69\x80\x05\x15\x5d\x53\x63\x2d\xa7\x02\x63\x33\xb6\x09\x1e\x4a\xe5\xf0\xec\xc1\x06\x96\x50\x0e\x99\xd1\x0c\xa3\xc1\x94\x96\x33\x8b\x59\x5c\x8c\x49\xf0\xc9\x74\xc1\x57\xb7\xf5\x8e\xad\x2f\x38\x94\xb6\x8f\x8b\x7a\xe5\xb0\x63\xdf\x44\x54\x65\xc8\x58\xd8\xd6\x4a\xb3\x0b\xbb\x42\x31\x33\x7b\xa5\xd1\x95\x2a\x2d\xbd\x6f\xe0\x74\xad\xc3\x51\x6d\x26\x0b\xf7\x91\xcc\x59\x1b\x9e\xd2\x26\x10\x1a\x7f\xbd\xb8\xb9\x8a\xa8\x34\x73\xe6\x8f\x60\xc7\x43\xbc\x6b\xd3\x32\x9e\x84\x4f\x9f\xb4\xdf\x90\x73\xec\x92\x59\x29\xff\x42\xe9\xd4\x32\x39\xdf\xc0\x41\x39\xdb\x3d\xee\x83\x75\xec\x38\x37\x96\xdf\x5c\xec\x41\x70\xc6\x6f\x08\x9e\x27\x84\x80\x5f\xe1\x78\xa5\xb2\x59\x05\xb7\x5f\x1f\x2e\xb7\xf8\xce\x20\xe7\xda\x9a\x51\xb2\xe5\x91\x9b\xbf\x8d\x4d\xf0\xac\x58\x17\x12\x8e\xb9\xf6\x64\x5d\x4d\x55\x35\xbb\xca\xfd\x1d\xee\xf7\xe5\xc6\x82\xaa\x0a\x8d\x11\xd6\xa2\xa8\xea\x2f\x58\xff\xa0\x27\xfc\x55\x3e\x3c\x62\x9c\x4c\xc6\x4e\xc1\x12\x67\xc0\x17\x16\xca\x48\x68\xb5\x4e\x0e\x8f\xe0\xe0\xd1\x8f\xe3\x2e\x89\xe8\xc2\xae\xa0\x58\x0d\x83\xe2\xf7\x8a\x1e\x51\xd4\x8c\x53\xe7\x15\xd5\x9e\x7c\x94\x4d\x06\xd4\x64\x66\x80\x2b\xc7\xaf\x15\xfc\xd7\xe2\xdf\x8e\xe7\x65\x11\xff\xbe\xfc\x0c\x00\x00\xff\xff\x69\x95\xf0\xa2\xef\x06\x00\x00" +var _epochAdminUpdate_epoch_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x94\x41\x6f\xdb\x38\x10\x85\xef\xfe\x15\x6f\x73\x58\xd8\x80\x57\xd9\xc3\x62\x0f\x46\x9b\xc0\x88\xdd\x24\x48\x9b\x04\x75\x9a\x9e\xc7\xd2\x48\x22\x22\x91\x02\x39\x8a\x0a\x14\xf9\xef\x05\x49\xdb\x92\x8c\xa2\x41\x50\x54\x07\x1f\x68\xce\x7b\x6f\x3e\x92\xa3\xea\xc6\x58\xc1\x87\xca\x74\xeb\xc6\xa4\x25\x72\x6b\x6a\xfc\xfb\x6d\x7d\x7f\x77\x71\xb5\x5c\xad\x3e\xaf\x37\x9b\xc9\x44\x2c\x69\x47\xa9\x28\xa3\xa7\xd9\x53\x71\x5f\x92\xe3\x8f\xac\x17\xf8\x72\xad\xe5\xff\xff\xe6\x70\x42\x4f\x4a\x17\xa3\x35\xf6\x7a\x83\x95\x19\xbe\x4f\x00\xa0\xb1\xdc\x90\xe5\xa9\x53\x85\x66\xbb\xc0\xb2\x95\x72\x99\xa6\xa6\xd5\xb2\xdf\xe2\xbf\x8a\x25\x4a\x2c\xb3\x5a\x69\xbc\x47\xdc\x9f\x6c\x8d\xb5\xa6\x7b\xf7\xf7\x21\x72\x12\x36\x9c\x4d\x7d\xf2\x45\xdf\x49\x42\x7e\x79\x23\xc6\x52\xc1\xf7\x24\xe5\xec\x20\xed\xbf\xf3\x73\x34\xa4\x55\x3a\x3d\xb9\x30\x6d\x95\x41\x1b\x41\x94\x46\x28\x8c\x20\x5c\x2c\x47\x43\x52\x9e\xcc\x26\x07\x05\x95\xe3\xaf\xde\x49\xb9\x47\xaa\x54\x16\xb0\x5c\x18\x9d\xab\xa2\xb5\x14\x60\xf5\x5c\xe6\x18\x80\xeb\xe1\x0c\x3b\x0e\x70\x62\xa6\x5b\xee\x10\xcf\xe3\x51\x71\xe7\x50\xb7\x4e\xb0\x65\x14\x96\x49\xd8\x42\x4a\xd2\x90\x92\xe1\xda\x1a\x26\xdf\xf3\x07\xe9\x0c\xab\x9b\x4b\x04\x23\x3c\xfb\xda\x93\xbe\xef\x97\xbe\x81\xd3\xd3\x53\xac\x5a\x86\x98\x20\x93\x53\x2a\x5e\x74\x87\xfc\xf7\x5d\x47\x46\x1d\x47\xa9\xb6\xc9\x48\x38\x28\x44\x9b\x34\xc0\x82\x8a\xaa\xa9\xb1\x96\x53\x81\xb1\x19\xdb\x04\x0f\xa5\x72\x78\xf6\x60\x03\x4b\x28\x87\xcc\x68\x86\xd1\x60\x4a\xcb\x91\xc4\xc8\x2e\xda\x24\xb8\x32\x5d\xd0\xd5\x6d\xbd\x65\xeb\x03\x87\x68\x7b\xbb\x58\xaf\x1c\xb6\xec\x9b\x88\x55\x19\x32\x16\xb6\xb5\xd2\xec\xc2\xae\x10\x66\x24\xaf\x34\xba\x52\xa5\xa5\xd7\x0d\x9c\xae\x75\x38\xaa\xf9\x60\x61\x13\xc9\x2c\xdb\xf0\x66\xe6\x81\x50\xff\xef\xea\xe6\x32\xa2\xd2\xcc\x99\x3f\x82\x2d\x1f\xec\x5d\x9b\x96\xf1\x24\xbc\xfb\xa0\xfd\x86\x9c\x63\x97\x8c\xa2\xfc\x03\xa5\x53\xcb\xe4\x7c\x03\x47\x71\x16\x7b\xdc\x47\xeb\xd8\x72\x6e\x2c\xbf\x39\xec\x91\x71\xc6\x6f\x30\x1e\x3b\x04\x83\x9f\xe1\x78\x25\xd9\x28\xc1\xed\xdd\xc3\x7a\x81\xaf\x0c\x72\xae\xad\x19\x25\x5b\xee\xb9\xf9\xdb\xd8\x04\xcd\x8a\x75\x21\xe1\x98\x6b\x4f\xd6\xd5\x54\x55\xa3\xab\xbc\xbb\xc3\xbb\x7d\xb9\xb1\xa0\xaa\x42\x63\x84\xb5\x28\xaa\x76\x17\x6c\xf7\xa0\x07\xfc\x55\x7e\x78\xc4\x38\x1b\x8c\x9d\x82\x25\xce\x80\x4f\x2c\x94\x91\xd0\x74\x96\x1c\x1f\xc1\xd1\xa3\xef\xc7\x5c\x12\xd1\x85\x5d\xa1\x62\x7a\x18\x14\xbf\xae\xd8\x21\x8a\x35\xfd\xd4\x79\xa5\x6a\x4f\x3e\x96\x0d\x06\xd4\x60\x66\x80\x2b\xc7\xaf\x05\xfe\x63\xf6\x6f\xc7\xf3\x32\x89\xbf\x2f\x3f\x02\x00\x00\xff\xff\xb6\x8b\x7d\x6b\xdb\x06\x00\x00" func epochAdminUpdate_epoch_configCdcBytes() ([]byte, error) { return bindataRead( @@ -1419,31 +1330,11 @@ func epochAdminUpdate_epoch_configCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_epoch_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0xcd, 0x55, 0xcb, 0x2d, 0xe5, 0x21, 0x62, 0x30, 0xa4, 0xa3, 0x99, 0x58, 0x9e, 0xa2, 0xb1, 0x47, 0x7d, 0x26, 0xa1, 0x75, 0xd8, 0x12, 0x3f, 0xf, 0xf5, 0xc5, 0x3e, 0xf1, 0x44, 0x72, 0x60}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0xab, 0xdb, 0xbd, 0xb, 0x46, 0x8f, 0x2, 0x4c, 0xe4, 0x61, 0xc1, 0x47, 0xe7, 0x37, 0x1d, 0xa2, 0xcd, 0x8e, 0xe1, 0xd7, 0x53, 0x84, 0x58, 0x17, 0x53, 0x94, 0xc1, 0xd8, 0xb1, 0x40, 0x40}} return a, nil } -var _epochAdminUpdate_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x50\x4d\x6b\xf3\x30\x0c\xbe\xe7\x57\x88\x1c\x4a\x02\x2f\x39\xbd\xec\x50\xd6\x95\xae\x6c\xb0\xdb\x60\xdd\xee\x9a\xe3\x24\x86\xd8\x32\x8a\x4c\x0f\xa3\xff\x7d\x38\x5e\xbe\x36\x1d\x82\xa4\xf8\xf9\xd0\x63\xac\x27\x16\x78\xee\xe9\xfa\xe4\x49\x75\xd0\x30\x59\xc8\xe7\x39\xcf\x32\x61\x74\x03\x2a\x31\xe4\x8a\x3a\x30\xc6\x66\x0f\xef\x2f\x4e\xee\xfe\xff\x03\xd6\xcd\x99\x82\x13\xcd\x9b\xdd\xc5\x58\x3d\x08\x5a\x3f\x6d\x4b\xf8\xca\x00\x00\x3c\x6b\x8f\xac\x8b\xc1\xb4\x2e\x62\x30\x48\x57\x3c\x12\x33\x5d\x3f\xb0\x0f\xba\x84\xdd\x49\xa9\xc8\x38\x21\x62\xf5\x5a\x40\x47\x3f\xa7\xda\x1a\x07\x07\x48\xf0\x6a\x10\x62\x6c\x75\xf5\x39\x12\xdc\xef\x66\xdf\xd5\xf8\xf0\xa1\x88\xe7\xec\x97\xf3\x2a\x8c\xeb\xb7\x84\x7a\x45\xe9\xca\x59\x22\xd6\xf1\x08\x1e\x9d\x51\x45\x7e\xa6\xd0\xd7\xe0\x48\x20\x51\xc3\x08\x4c\xe9\xfc\x88\x82\x47\xe9\xf2\x32\xdb\x98\x54\xe4\x1a\xd3\xc2\x61\x25\x39\x7e\x2f\xc6\x1a\xd7\x9e\xc7\xbf\xab\x14\xa7\x6e\x9b\xe3\xd2\xff\xce\x72\x3d\x2d\xd6\x97\x64\xaa\xe0\x6b\x14\xfd\x57\x32\xf9\x4a\x90\x5b\x76\xfb\x0e\x00\x00\xff\xff\xe3\x9c\x76\xf0\xf7\x01\x00\x00" - -func epochAdminUpdate_epoch_timing_configCdcBytes() ([]byte, error) { - return bindataRead( - _epochAdminUpdate_epoch_timing_configCdc, - "epoch/admin/update_epoch_timing_config.cdc", - ) -} - -func epochAdminUpdate_epoch_timing_configCdc() (*asset, error) { - bytes, err := epochAdminUpdate_epoch_timing_configCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "epoch/admin/update_epoch_timing_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd5, 0x60, 0x43, 0x69, 0x61, 0x53, 0x36, 0x3b, 0x34, 0x20, 0x40, 0x4b, 0xee, 0xa4, 0xd9, 0x27, 0x7a, 0x77, 0x2e, 0xc2, 0x5f, 0x9, 0x20, 0x44, 0x58, 0x2, 0x82, 0xd2, 0x40, 0xc3, 0xc9, 0xce}} - return a, nil -} - -var _epochAdminUpdate_epoch_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xc4\x30\x10\x85\xef\xfd\x15\x8f\x1e\x96\xf6\xd2\x93\x78\x28\xea\x52\x45\xc1\x9b\x20\xee\x7d\x4c\xc7\x6d\xa0\xcd\x84\x74\x42\x0f\xb2\xff\x5d\x92\x68\x17\x9c\x53\x12\xf2\xde\xf7\xe6\xd9\xc5\x4b\x50\xbc\xcc\xb2\x3d\x7b\x31\x13\xbe\x82\x2c\xa8\xf7\x7b\x5d\x55\x1a\xc8\xad\x64\xd4\x8a\x6b\x1c\x6f\x43\xcc\xc7\x93\xe5\x6d\xed\xf1\xf1\xea\xf4\xf6\xa6\xc5\x77\x05\x00\x3e\xb0\xa7\xc0\xcd\x6a\xcf\x8e\x43\x0f\x8a\x3a\x35\x8f\x12\x82\x6c\x27\x9a\x23\xb7\x38\x0c\xc6\x48\x74\xfa\xa7\x48\x33\xb3\x82\x13\x6c\x18\x17\xeb\x70\x8f\x22\xef\x56\x95\x40\x67\xee\x3e\xb3\xc1\xdd\x61\x0f\xd5\xe5\x8f\x0f\x4d\xca\xda\x5f\xb3\x77\x94\x9e\xdf\x8b\xea\x8d\x74\x6a\x77\x44\x9a\xe3\x11\x9e\x9c\x35\x4d\xfd\x24\x71\x1e\xe1\x44\x51\xac\x91\x85\x65\xf5\x5f\x28\x3c\xe9\x54\xb7\xd5\xee\x70\x0d\xd8\x45\x3f\x92\x72\x46\xe6\x16\xfe\xb7\x52\xb0\x97\xea\xf2\x13\x00\x00\xff\xff\x08\x1f\x1c\x16\x5d\x01\x00\x00" +var _epochAdminUpdate_epoch_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\xcf\x4a\xf4\x30\x14\xc5\xf7\x79\x8a\xc3\x2c\x3e\xda\x4d\xf9\x16\xe2\xa2\xa8\x43\x98\xa9\xe8\xca\xc1\xa2\xfb\x98\xc6\x69\xa0\xcd\x0d\xe9\x0d\x15\x64\xde\x5d\x92\x60\x07\xbc\xab\x10\xce\x9f\xdf\xb1\xb3\xa7\xc0\x78\x9c\x68\xed\x3c\xe9\x11\x9f\x81\x66\xfc\xff\xea\x4e\x2f\x87\x27\x79\x3c\xbe\x76\x7d\x2f\x04\x07\xe5\x16\xa5\xd9\x92\xab\x9c\x59\x65\xcc\xcf\x77\x6b\xd6\xa5\xc5\xdb\xb3\xe3\xdb\x9b\x1a\xdf\x02\x00\x7c\x30\x5e\x05\x53\x2d\xf6\xec\x4c\x68\x21\x23\x8f\x52\x6b\x8a\x8e\x7f\x25\xe9\x26\xc3\x30\xa9\x50\x0e\xb3\x75\xb8\x47\xd1\x37\x1f\x14\x02\xad\x77\xff\x36\xa0\x26\x0b\x1e\xaa\xc4\xd5\x5e\x39\x1b\x95\xbe\x7b\xa6\xa0\xce\xe6\xa4\x78\xac\xb7\xe8\x74\xfb\x3d\xbc\x72\x56\x57\xbb\x03\xc5\x69\x80\x23\x46\x89\x46\x36\x96\x99\x4b\xb1\xc3\x2b\x1e\x77\xb5\xd8\x12\xae\x60\x4d\xf4\x83\x62\x93\x2b\xf3\xdc\xbf\xf3\x4b\xed\x45\x5c\x7e\x02\x00\x00\xff\xff\x31\x03\xa1\x69\x49\x01\x00\x00" func epochAdminUpdate_epoch_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1459,11 +1350,11 @@ func epochAdminUpdate_epoch_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_epoch_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1d, 0xaf, 0x8a, 0x1f, 0xbf, 0xa6, 0x25, 0x31, 0x9e, 0xff, 0x30, 0x9, 0x34, 0xd3, 0x90, 0xa4, 0xfd, 0x12, 0x32, 0x1f, 0x2, 0x95, 0xf1, 0x49, 0xb6, 0x85, 0x28, 0xf9, 0x7f, 0x47, 0x75, 0x8d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4f, 0xb9, 0x7, 0xd8, 0xff, 0x10, 0xc6, 0x15, 0x25, 0x69, 0x5, 0x27, 0x32, 0x30, 0xf3, 0x4e, 0x2f, 0x72, 0x33, 0xda, 0xfa, 0x1f, 0x2a, 0xd7, 0x5a, 0x14, 0xb2, 0x90, 0xd4, 0x9f, 0x25, 0x7b}} return a, nil } -var _epochAdminUpdate_rewardCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\xc1\x4a\xc4\x30\x10\x86\xef\x7d\x8a\xa1\x87\xa5\xbd\xf4\x24\x1e\x8a\xba\x54\xb1\x20\x08\x16\x17\x15\x8f\x63\x3a\xb6\x81\x36\x13\xa6\x13\xaa\xc8\xbe\xbb\xb4\xd1\x2e\x3b\xb7\x84\x7c\xff\xff\x65\xec\xe8\x59\x14\xea\x81\xe7\x7b\xcf\xa6\x87\x4f\xe1\x11\xd2\xed\x9c\x26\x89\x0a\xba\x09\x8d\x5a\x76\x99\xa3\xf9\x99\x66\x94\xb6\x6a\xde\x4b\x78\xa9\xed\xd7\xe5\x45\x0e\x3f\x09\x00\x80\x17\xf2\x28\x94\x4d\xb6\x73\x24\x25\x60\xd0\x3e\xbb\x65\x11\x9e\x5f\x71\x08\x94\xc3\xae\x32\x86\x83\xd3\x7f\x62\x99\x81\x14\x68\x69\xaa\xda\xd1\x3a\xb8\x86\x88\x17\x93\xb2\x60\x47\xc5\xc7\x1a\x70\xb5\xdb\x8c\x8a\xf5\xe1\x4d\xb6\x88\x96\x27\xf1\x02\x97\xeb\x43\xa4\x1a\xd4\x3e\xdf\x2a\x96\xd9\xef\xc1\xa3\xb3\x26\x4b\xef\x38\x0c\x2d\x38\x56\x88\xd1\xb0\x82\xf1\xdf\x7f\xa5\xe0\x51\xfb\x34\x4f\xb6\x84\x93\x60\x11\x7c\x8b\x4a\xf5\xe3\xd3\xdb\x21\x78\x3f\x7c\x3f\x38\x23\x84\x13\x35\x24\x86\x9c\x62\x47\x67\x4b\x8a\x16\xc7\xe4\xf8\x1b\x00\x00\xff\xff\x36\x0b\xb8\x8f\x69\x01\x00\x00" +var _epochAdminUpdate_rewardCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\x41\x6b\xbc\x40\x0c\xc5\xef\x7e\x8a\xb0\x87\x3f\x7a\x91\xff\xa1\xf4\x20\x6d\x17\xd9\x55\x5a\x28\xac\xac\x94\xd2\x63\x3a\xa6\x3a\xa0\x93\x21\x46\xdc\x52\xf6\xbb\x97\x51\x58\xe9\x3b\x86\xf7\x5e\x7e\x89\x1d\x3c\x8b\x42\xd9\xf3\x5c\x78\x36\x1d\x7c\x09\x0f\xf0\xff\x52\x54\xa7\xc3\x73\x7e\x3c\x9e\x8b\xba\x8e\x22\x15\x74\x23\x1a\xb5\xec\x62\x47\xf3\x99\x66\x94\x26\xaf\x3e\x32\x78\x2b\xed\xe5\xfe\x2e\x81\x9f\x08\x00\xc0\x0b\x79\x14\x8a\x47\xdb\x3a\x92\x0c\xf2\x49\xbb\xdc\x18\x9e\x9c\x06\xcb\xe2\x09\xea\x49\x81\xc2\xba\xbc\x19\xac\x83\x47\x58\x03\xe9\x27\x8b\xf0\xfc\xf0\xef\x86\x93\x2e\x86\xa7\x38\x50\x65\x1b\x65\x8a\x61\x5c\x2b\x0b\xb6\x54\xa1\x76\xc9\xad\x3a\x68\xbf\x07\x8f\xce\x9a\x78\x77\xe0\xa9\x6f\xc0\xb1\xc2\x5a\x0d\x4b\x70\x3d\x72\x5c\xe3\xe0\x51\xbb\x5d\xb2\xc1\x6d\x60\xe9\xe4\x1b\x54\x2a\x5f\x4f\xef\xf5\xe4\x7d\xff\xfd\xe2\x8c\x10\x8e\x54\x91\x18\x72\x8a\x2d\xfd\x79\xc7\x4a\x71\x8d\xae\xbf\x01\x00\x00\xff\xff\x9e\x26\x8d\xcb\x56\x01\x00\x00" func epochAdminUpdate_rewardCdcBytes() ([]byte, error) { return bindataRead( @@ -1479,11 +1370,11 @@ func epochAdminUpdate_rewardCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_reward.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0x15, 0x3f, 0xbe, 0xe9, 0xbe, 0xe7, 0xe5, 0x26, 0x20, 0xbc, 0x39, 0x7e, 0xe9, 0x8e, 0x3e, 0x10, 0xb7, 0x38, 0x63, 0x11, 0xfc, 0x1, 0xbc, 0xa9, 0xb7, 0x56, 0xc3, 0x3, 0x42, 0x57, 0x9b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0x9b, 0x4a, 0x66, 0xb5, 0x60, 0xad, 0x5b, 0x16, 0x20, 0x4a, 0x74, 0x57, 0x86, 0x99, 0x3e, 0xa4, 0x6c, 0x68, 0xd7, 0x49, 0x3f, 0xef, 0xe2, 0x6, 0x7, 0xcc, 0x78, 0xf3, 0xe6, 0xfa, 0xd9}} return a, nil } -var _epochAdminUpdate_staking_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xc4\x30\x10\x85\xef\xfd\x15\x43\x0f\x4b\x7b\xc9\x49\x3c\x14\x75\xa9\xa2\xe0\x4d\x58\xdc\xfb\x98\x8e\x6d\xb0\x9d\x09\xe9\x84\x1e\x64\xff\xbb\x24\xd1\x2e\xf8\x6e\x09\x79\xef\x7d\x79\x6e\xf1\x12\x14\x5e\x66\xd9\x9e\xbd\xd8\x09\x3e\x83\x2c\x50\xef\xe7\xba\xaa\x34\x20\xaf\x68\xd5\x09\x37\x4c\xdb\x49\xf1\xcb\xf1\x78\x76\xb4\xad\x1d\xbc\xbf\xb2\xde\xde\xb4\xf0\x5d\x01\x00\xf8\x40\x1e\x03\x35\xab\x1b\x99\x42\x07\x18\x75\x6a\x1e\x25\x04\xd9\xce\x38\x47\x6a\xe1\xd0\x5b\x2b\x91\xf5\xcf\x91\x34\x93\x02\xa5\xb2\x7e\x58\x1c\xc3\x3d\x14\xbb\x59\x55\x02\x8e\x64\x3e\x72\xc0\xdd\x61\x87\x32\xf9\xe1\x43\x93\x58\xbb\x2b\xbb\xc1\x74\x7d\x2a\xae\x37\xd4\xa9\xdd\x2b\x92\x8e\x47\xf0\xc8\xce\x36\xf5\x93\xc4\x79\x00\x16\x85\x12\x0d\xd9\x58\xbe\xfe\x5b\x0a\x1e\x75\xaa\xdb\x6a\x4f\xb8\x02\x9a\xe8\x07\x54\xea\x63\x9e\x24\xef\xf0\x7f\x97\x52\x7c\xa9\x2e\x3f\x01\x00\x00\xff\xff\x86\xa7\x6b\x09\x5f\x01\x00\x00" +var _epochAdminUpdate_staking_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xcf\x4a\xc4\x30\x10\xc6\xef\x79\x8a\x61\x0f\xd2\x5e\x8a\x07\xf1\x50\xd4\x25\xec\x56\xf4\xe4\x62\xd1\xfb\x98\xc6\x36\xd8\xce\x84\x74\x42\x05\xd9\x77\x97\x34\xd8\x05\xe7\x18\xbe\x3f\xbf\x2f\x6e\xf2\x1c\x04\x1e\x47\x5e\x1a\xcf\x66\x80\xcf\xc0\x13\x5c\x7f\x37\xa7\x97\xc3\x93\x3e\x1e\x5f\x9b\xb6\x55\x4a\x02\xd2\x8c\x46\x1c\x53\x41\x76\x69\x05\xbf\x1c\xf5\xef\xce\x2e\x73\x0d\x6f\xcf\x24\xb7\x37\x25\xfc\x28\x00\x00\x1f\xac\xc7\x60\x8b\xd9\xf5\x64\x43\x0d\x3a\xca\xa0\x8d\xe1\x48\xf2\x27\x49\x37\x5a\x01\x9b\x0a\x75\x37\x39\x82\x7b\xc8\xfa\xea\x83\x43\xe0\xe5\xee\x6a\x03\xaa\x56\xc1\x43\x91\xb8\xea\x0b\x67\x85\xe9\xb9\x15\x0e\xd8\xdb\x13\xca\x50\x6e\xd1\xe9\xf6\x7b\xf0\x48\xce\x14\xbb\x03\xc7\xb1\x03\x62\x81\x1c\x0d\xab\x31\xcf\x9c\xb3\x1d\x3c\xca\xb0\x2b\xd5\x96\x70\x01\xab\xa2\xef\x50\xac\x8e\xeb\xf6\x75\xf0\xff\x0f\xc8\xc5\x67\x75\xfe\x0d\x00\x00\xff\xff\x9e\x01\x4d\x3d\x4b\x01\x00\x00" func epochAdminUpdate_staking_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1499,11 +1390,11 @@ func epochAdminUpdate_staking_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_staking_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0xc5, 0xe9, 0xd8, 0x71, 0xef, 0xa, 0x19, 0xd, 0xc0, 0x54, 0x1c, 0x22, 0x6f, 0x41, 0xf5, 0xc4, 0x93, 0x64, 0x53, 0x59, 0xf5, 0xac, 0xb0, 0x85, 0xa0, 0x42, 0x71, 0x7c, 0x86, 0x6d, 0xba}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x48, 0x2e, 0xa2, 0x66, 0x2c, 0x29, 0xe2, 0xbf, 0xdd, 0x5e, 0x40, 0xcb, 0xb9, 0xb5, 0x61, 0x12, 0x2c, 0x66, 0x4a, 0x87, 0x97, 0xc8, 0xa6, 0x8f, 0x8c, 0x46, 0x9a, 0x63, 0x86, 0xf0, 0x79, 0x95}} return a, nil } -var _epochNodeRegister_dkg_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x51\x6e\xc2\x30\x0c\x86\xdf\x7b\x0a\xab\x0f\x28\x95\x46\x0f\x50\xb1\xa1\x69\xdd\xd0\x84\x34\xa1\xb1\x0b\x98\xd4\xb4\x11\x25\x8e\x5c\x33\x1e\x26\xee\x3e\x41\xa1\x4b\xb7\xf9\x29\x91\x7f\xdb\x9f\x7f\xbb\x7d\x60\x51\x78\x69\xf9\xf8\x1c\xd8\x36\xb0\x15\xde\x43\x3a\xfc\xd3\x24\x52\xbc\x96\x1f\xb8\x69\x69\xad\xb8\x73\xbe\x8e\xa4\xe3\xc4\xa8\xa6\x5c\x2e\x22\x61\xb9\x5c\xa4\x49\xa2\x82\xbe\x43\xab\x8e\xbd\xc9\xe0\x2b\x49\x00\x00\x82\x50\x40\x21\xd3\xb9\xda\x93\x14\x80\x07\x6d\xcc\x5a\x59\xb0\xa6\x0c\x26\x8f\xd6\xf2\xc1\xeb\x20\x3f\x47\x4b\x0a\x9e\x2b\x7a\xa7\x2d\xdc\x43\x5f\x98\x77\x7d\x49\xbe\x61\x11\x3e\xce\x26\x7f\xf9\xf2\x37\xae\x2e\x6f\x92\x07\x73\x66\x2b\xfe\xd9\x2e\x12\x5d\x21\x56\xa8\x4d\x36\xcc\x3e\xc7\x7c\x0e\x01\xbd\xb3\x26\x7d\xe2\x43\x5b\x81\x67\x85\x7e\xec\x05\x0b\x84\xb6\x24\xe4\x2d\xf5\x0e\x5c\xc9\x20\xa0\x36\x69\x36\x5e\xa3\xda\xd5\x2b\x14\x75\xd6\x05\xf4\x0a\xb3\xe9\xcf\x49\xf2\x9a\xb4\x5c\x2e\xa2\xb4\xf1\x03\x5b\x71\x33\x20\xea\xf7\xcb\x88\x0e\x3f\xc9\xcc\xa6\xe3\x09\x77\xa0\x5c\xdc\x0e\x94\x47\x89\xd1\xb2\x97\x96\xa7\xe4\xf4\x1d\x00\x00\xff\xff\x4e\x62\x63\xb2\x26\x02\x00\x00" +var _epochNodeRegister_dkg_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x43\x0e\x25\x42\x0d\x3d\x07\x5b\x11\x63\x6d\x11\x5a\x31\xfd\x03\xe3\x66\x4c\x16\xe3\xce\x32\x19\x6b\xa1\xf8\xdf\x8b\xa6\xb1\x2b\x76\x4e\x81\xf7\xf2\xcd\x7b\x3b\x76\xe7\x59\x14\x9e\x1b\x3e\xcc\x3c\x9b\x1a\x36\xc2\x3b\x78\xf8\x9a\x2d\xdf\xa7\x2f\x93\x3c\x5f\xcd\x8a\x22\x0a\x4c\xaf\xf9\x07\xae\x1b\x2a\x14\xb7\xd6\x55\x9d\x3b\xbe\x15\xe2\xf0\x9f\x7c\x31\xef\xb1\xf9\x62\xde\x43\x23\x15\x74\x2d\x1a\xb5\xec\x92\x01\x7c\x47\x11\x00\x80\x17\xf2\x28\x94\xb4\xb6\x72\x24\x19\x4c\xf6\x5a\x4f\x8c\xe1\xbd\xd3\x8b\xe7\x34\x0d\x29\x38\x2e\x69\x45\x1b\x78\x84\xce\x9d\xae\x59\x84\x0f\xa3\xbb\xdb\x3c\xe9\x1b\x97\xe7\x6f\x92\xa7\xe4\x94\x25\xfb\xa7\x4d\x60\x2a\x94\x05\x2b\x5a\xa2\xd6\x83\xcb\xce\xd3\x8c\xc7\xe0\xd1\x59\x93\xc4\x53\xde\x37\x25\x38\x56\xe8\xd6\x9e\xe3\x80\xd0\x86\x84\x9c\xa1\xae\x71\xdb\x71\xc0\xa3\xd6\xf1\xe0\x3a\x7e\xb9\xad\x96\x28\x6a\x8d\xf5\xe8\x14\x46\xc3\xbf\x2b\xa4\x15\x69\xbe\x98\x07\x72\xe2\x2e\xd9\xb2\xbe\x78\xc0\xfb\x7d\x80\x16\x3f\x29\x19\x0d\xaf\xc9\xf7\xa0\x9c\xf5\x87\x48\x03\xe1\xaa\xe4\x19\x75\x8c\x8e\x3f\x01\x00\x00\xff\xff\x37\x9e\x3e\xaf\x11\x02\x00\x00" func epochNodeRegister_dkg_participantCdcBytes() ([]byte, error) { return bindataRead( @@ -1519,11 +1410,11 @@ func epochNodeRegister_dkg_participantCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/node/register_dkg_participant.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0xdd, 0x3f, 0x15, 0x1e, 0xf, 0x7e, 0x70, 0x58, 0xec, 0x18, 0xf8, 0x58, 0xb3, 0x8e, 0x70, 0xd4, 0x98, 0xda, 0x47, 0xb5, 0xc2, 0x4b, 0x55, 0xa9, 0xa6, 0x77, 0x76, 0x6e, 0xfb, 0xdb, 0x66}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaf, 0x74, 0x9d, 0xf4, 0xe2, 0xd2, 0xad, 0x9b, 0xe9, 0x5e, 0xf2, 0x93, 0x32, 0xfb, 0xb1, 0x2e, 0xf2, 0xb8, 0x5d, 0x57, 0xe7, 0xa9, 0xcd, 0xb7, 0x45, 0x8e, 0x99, 0x0, 0xe, 0x7f, 0xa6, 0xe7}} return a, nil } -var _epochNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x56\x4b\x8f\xdb\x36\x10\xbe\xfb\x57\x0c\xf6\xb0\x90\x01\xad\x8c\x16\x45\x51\x08\x76\x02\xc3\xce\x2e\x0c\x07\xed\x66\x77\x93\x1c\x8a\x1e\x68\x72\x64\xb1\x96\x49\x95\x1c\xd5\x15\x16\xfe\xef\x05\xf5\x66\xe4\x6c\x12\xb4\xb7\xf8\x20\x8b\xf3\xf8\x66\x86\xf3\x92\x3c\xe6\xda\x10\xac\x4c\x99\x93\x9e\x34\xa7\xdb\x4c\x9f\x36\xeb\x27\xb6\xcb\xf0\x91\xd8\x41\xaa\x3d\x24\x46\x1f\xe1\x6a\xcc\xb8\x1a\xea\x3c\xe9\x03\xaa\x81\x68\x75\xf6\x24\x56\x59\x61\x09\xcd\xbb\xd5\x40\xaa\xa3\x79\x92\xeb\xed\xdd\x40\x66\xbd\xbd\xf3\xb8\x6f\x72\xcd\xd3\x01\xbf\x3a\xf7\x12\x85\xda\xcb\x5d\x86\x9e\x3f\x43\xda\xd5\x64\x32\x9b\xc1\x53\x2a\x2d\x90\x61\xca\x32\x4e\x52\x2b\xe0\x06\x19\xa1\x05\x06\x0a\x4f\xa0\xb4\x40\xb0\x64\x0a\x4e\xa0\x77\x7f\x22\xa7\x5a\x09\x55\x08\x32\x01\x4a\xb1\x16\x91\x4e\x81\xeb\x2c\x43\x4e\xda\x54\xb4\xf0\x13\x28\xc6\xb9\x2e\x14\x01\x53\x02\x98\x10\x8e\xfc\x6e\xd5\x80\x02\x69\x90\x15\xf4\x66\x0c\xaa\x2c\x2a\x5b\xd8\x06\x54\xd2\x97\x71\xdd\xbd\x79\xc0\x93\x41\x84\xc1\x04\x00\x40\x8a\x18\x1e\xc9\x48\xb5\x0f\xab\xb3\xd1\x19\xc6\xf0\x7e\xa3\xe8\x97\x9a\xa0\x90\x4e\xda\xb8\xf4\x2e\x85\x30\x68\xad\x2f\xdf\xb3\xb7\x58\xfa\x2c\x5b\x57\xc5\x88\xce\x8e\xce\xcf\x18\xde\xdf\xca\x7f\x7e\xfe\xa9\xa6\xe5\xc5\x2e\x93\x7c\x8b\xa5\x8d\xe1\xf7\xba\x00\xa3\x2d\x96\x6f\xa5\xa5\x37\x8a\x4c\xf9\xc7\x64\x0a\xcf\x93\x4a\x34\x43\x82\xa4\x2d\xa8\x07\x4c\x62\x60\x05\xa5\x81\x97\xd3\xe8\xa3\xa4\x54\x18\x76\x9a\xc2\x75\x57\x7c\xd1\x07\x56\x64\x54\x83\xe4\x06\x73\x66\x30\x60\x9c\x53\x03\xf0\x48\xda\xb0\x3d\x86\xb0\x62\x39\xdb\xc9\x4c\x92\x44\x1b\xc2\x52\x88\x2d\x96\x53\xb8\x5e\xd6\xf7\xdb\xf9\x51\x85\x88\x59\x12\x0d\x9d\x81\x85\xcb\x03\x45\xb6\x06\x8b\x76\xda\x18\x7d\x9a\x7f\x93\x87\xaf\x02\x57\xa5\x31\xcc\x1a\x90\x59\x67\xa0\x62\x4f\x3b\xeb\xee\xf7\xfa\x35\xe4\x4c\x49\x1e\x5c\xad\x74\x91\x09\x50\x9a\xa0\x36\x0a\x06\x13\x34\xa8\x38\xba\xe4\xdf\xbe\xfd\xed\x23\x54\xfa\x57\xd3\xde\xff\xd9\x0c\x1e\x70\x2f\x5d\xcb\xc1\xaf\x5a\x60\xc7\x90\xc9\xc5\x38\xae\xc7\x4d\x1f\x39\x3d\xf7\x8e\xa6\x75\xfc\x45\xa1\xe6\x9a\xef\x19\xa5\x53\x58\x2c\x40\xc9\x6c\x78\xa3\x6d\x86\x55\xa7\x00\xf3\x9b\x4b\x88\x4c\x08\x07\xfa\x80\x5c\x1b\x11\x78\xfa\x6d\x5d\x4b\x11\x8e\xe8\x75\x7d\xbb\xe7\x98\x77\xa1\xd4\x47\xa4\x97\xb4\xaa\x4a\xf7\x8e\x63\xe9\x61\x53\xf4\xef\x63\x39\x72\xf9\xb6\x2b\x7d\x3c\x4a\x22\x14\x31\xcc\x6f\x46\xc5\x16\x9d\x9a\x1a\x0a\xda\x96\xaa\xff\xfd\x0a\x99\xfa\x97\xeb\xa5\xd5\xb2\xbf\x31\x98\xdf\xf4\x97\x1d\x02\xe9\x6f\x48\xe0\x4b\x79\x5b\xb1\xbc\xed\x06\x3e\xe8\xa8\xce\xb6\xb4\xb6\xc0\xf9\xf5\xf3\x8b\xc6\xee\xab\xb9\x70\x7e\x15\x7c\xbd\x4b\xa3\x60\x3d\xeb\xd5\xa0\xb1\x69\xe0\xf9\x19\x02\xa3\x2f\x44\x5d\x3b\xe2\x5b\x38\xf7\xe1\xb7\xa1\x7f\x7e\x04\xfc\xcf\xad\xf3\xb5\x43\xa0\x5a\x20\xfd\x24\xa8\xf6\x5f\xe3\x19\xe4\x8c\xd2\xe1\x34\x68\x83\xd8\xa8\x44\xc3\xe2\x73\xbe\x38\x6e\x75\x7d\x9b\x75\xdc\xc6\x1c\x49\xe1\x4f\x95\x0b\xeb\xab\xdd\x89\xda\x8c\x76\x59\xbd\xc8\x80\x81\x45\xae\x95\x60\xa6\xec\xb6\x59\xa2\x8d\x43\x92\x06\x6c\x8e\x5c\x26\x92\x37\x1b\xcd\x0e\x67\x55\xeb\x75\xe4\x1a\xdb\x4d\x95\x1f\x80\xd9\x7a\x8b\x5d\x1a\x2e\x47\xc6\x53\xa9\x70\xc9\x39\xc1\x02\x9a\xc1\x1e\xe4\xac\x44\x13\x57\xc9\xf3\xaf\xd7\xf9\x70\xc0\x12\xa4\x1a\xec\x29\x78\x1e\xf5\xec\x00\x36\x3a\x60\x69\xdd\x8c\x0a\x3a\x8d\xd8\x61\x44\xdd\x31\x84\x94\xd9\x74\x99\xed\xb5\x91\x94\x1e\x6b\xae\x47\x0a\xe1\x84\x72\x9f\x52\xcd\xaa\xdf\x7d\xc7\xce\xe3\xd0\xfe\xe2\x1f\x34\xf5\x43\xb3\xfa\x16\x8a\xf6\x48\xdd\x87\x55\xc5\x1e\x94\x7f\x97\x43\x1f\x7a\x18\xcb\x27\xd3\xa2\x31\xd1\x8f\x8a\x0e\x3b\xaa\x18\x97\x07\xc4\x19\x30\xb3\x78\x31\x59\x3f\x7e\xaf\xc9\x12\x87\xfd\x3d\x33\x24\xb9\xcc\x99\xa2\x51\xce\xd6\xdb\xbb\x01\xfb\x3f\xe5\xcc\xb7\xd4\xa7\x6e\xbd\xbd\x8b\x06\x8c\x8b\x13\xe6\x3c\xa9\x9f\xe7\x7f\x03\x00\x00\xff\xff\x02\xb2\x4a\x46\x20\x0c\x00\x00" +var _epochNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x56\x5f\x6f\xe3\x36\x0c\x7f\xcf\xa7\x20\xf2\x50\x38\x40\xea\x6c\xc3\x30\x0c\x46\x72\x87\x20\x69\xbb\x22\x87\x5d\xdb\xf4\xee\x1e\x86\x3d\x28\x32\x6d\x6b\x71\x24\x4f\xa2\x97\x0b\x8a\x7c\xf7\x41\x52\xfc\xaf\xce\x75\xed\xb0\xb7\xf5\xa1\x91\x44\xf2\x27\x8a\xfc\x91\xb4\xd8\x15\x4a\x13\x2c\xf4\xa1\x20\x35\x38\xed\xae\x73\xb5\xbf\x5d\x3e\xb2\x4d\x8e\x6b\x62\x5b\x21\x53\x48\xb4\xda\xc1\xb0\x2f\x18\xb6\x6d\x1e\xd5\x16\x65\x4b\xd5\xed\x3b\x1a\x8b\xbc\x34\x84\xfa\x7e\xe1\xb5\xbe\xfb\x7a\xbf\x98\x2f\x97\x0f\x57\xeb\x75\x5b\x6b\xb9\xba\xa9\xe4\xcb\xd5\xcd\x19\x85\xab\x42\xf1\xac\x52\xb9\xba\xfb\xb8\xf8\xe5\xb9\x52\x29\x53\xb1\xc9\xb1\xe3\x51\xfb\x6c\x38\x18\x4c\x26\xf0\x98\x09\x03\xa4\x99\x34\x8c\x93\x50\x12\xb8\x46\x46\x68\x80\x81\xc4\x3d\x48\x15\x23\x18\xd2\x25\x27\x50\x9b\x3f\x90\x93\x37\x42\x39\x06\x91\x00\x65\xe8\x55\x84\x35\xe0\x2a\xcf\x91\x93\xd2\xee\x6c\xfc\x0c\x8a\x71\xae\x4a\x49\xc0\x64\x0c\x2c\x8e\xed\xf1\xfd\xe2\x04\x0a\xa4\x40\x38\xe8\xdb\x3e\xa8\x34\x28\x4d\x69\x4e\xa0\x82\xfe\x19\xd7\x46\xaf\x03\x3c\x68\xbd\x30\x18\x00\x00\x88\x38\x82\x35\x69\x21\xd3\xb1\xdb\x6b\x95\x63\x04\x9f\x6e\x25\xfd\xec\x0f\x24\xd2\x5e\x69\x9b\xe0\x79\x1c\x6b\x34\xa6\xab\xdf\x88\x57\x78\xe8\x8a\x8c\xe7\x45\xef\x9c\xed\xac\x9f\x11\x7c\xba\x16\x5f\x7f\xfa\xd1\x9f\x15\xe5\x26\x17\x7c\x85\x07\x13\xc1\x6f\x9e\x82\xe1\x0a\x0f\x1f\x84\xa1\x2b\x49\xfa\xf0\xfb\x60\x04\x4f\x03\xa7\x9a\x23\x41\x52\x51\xea\x01\x93\x08\x58\x49\x59\xd0\xc9\x69\xf8\x45\x50\x16\x6b\xb6\xb7\xfc\x1c\xc1\x45\x4d\xc1\xf0\x33\x2b\x73\xf2\x40\x85\xc6\x82\x69\x0c\x18\xe7\x14\xc1\xbc\xa4\x6c\xee\x43\x58\x5f\xe5\x5e\x81\x79\x12\xb6\xef\x83\x99\x0d\x35\x85\x1b\xa5\xb5\xda\x4f\xdf\x7c\xf9\xbb\xc0\x92\x30\x82\x89\x21\xa5\x59\x8a\x93\x1a\xdc\x89\x47\xf5\xcd\xf6\xef\xfd\x7b\x28\x98\x14\x3c\x18\x2e\x54\x99\xc7\x20\x15\x81\xbf\x18\x34\x26\xa8\x51\x72\xb4\xb9\xbd\xfe\xf0\xf1\x0b\x38\xfb\xe1\xa8\xf1\x7d\x32\x81\x07\x4c\x85\xad\x33\xf8\x55\xc5\x58\x0b\x44\xd2\x79\xc3\x45\xbf\x9a\x43\xab\x6f\xd7\xa8\x2b\x87\x5f\x54\x5a\xfb\xc7\xdc\x31\xca\x46\x30\x9b\x81\x14\x79\x3b\x8a\x55\xe2\x64\x6d\x00\xd3\xcb\x73\x88\x2c\x8e\x2d\xe8\x03\x72\xa5\xe3\xa0\x63\x5f\xd1\x55\xc4\xe3\xde\xb9\xa7\xad\xfd\xdf\x97\x9d\x61\x70\xef\xe8\x25\x2b\x47\xe0\xce\xb6\xaf\xdd\xe6\x7a\xb3\xee\xeb\x91\xcd\xb3\x59\xa8\xdd\x4e\x10\x61\x1c\xc1\xf4\xb2\x47\xb0\x70\x7f\xe2\x4f\x50\x55\x8a\xff\xed\x32\x63\xd4\x0d\xae\x4b\xa7\x61\x7f\x61\x30\xbd\x6c\x82\x3c\x06\x52\x6f\x48\xdc\x19\xc8\x5c\xc8\xed\xf4\xe2\xe9\x45\x88\x3b\x57\xbc\xc7\x77\xfd\x74\xbd\xc2\xcc\x5e\x7c\x26\x4e\x4c\xa7\x48\xaf\x77\xfd\x59\x68\xaa\xd5\xb1\x79\x51\xc5\xbe\x7e\x05\xff\xc7\xec\x7f\x6d\xfd\xba\xd6\xde\x14\xb1\x9b\x4c\xa7\x96\x00\x05\xa3\xac\x5d\xc8\x95\xf3\xb7\x32\x51\x30\xfb\x96\x2f\x56\x1a\x38\xb5\x65\x54\xbd\x35\x14\x71\xb7\x21\x9c\x19\x2c\xd5\xb4\x52\xba\x37\x65\xfc\x88\x01\x06\x06\xb9\x92\x31\xd3\x87\x7a\xce\x24\x4a\x5b\x24\xa1\xc1\x14\xc8\x45\x22\xf8\x69\xd6\x98\x76\x9b\xa9\xbc\x0e\x6d\x6d\xda\xc6\xf0\x3d\x30\xe3\xe7\xcb\xb9\xfe\xb0\x63\x3c\x13\x12\xe7\x9c\x13\xcc\xda\x3d\x39\x28\xd8\x01\x75\xe4\x12\xd7\x0d\xb1\xf5\x63\x8b\x07\x10\xb2\x35\x45\xe0\xa9\x47\xa9\x16\x74\xb8\xc5\x83\xb1\xad\x26\xa8\x2d\x22\x8b\x11\xd6\xdb\x31\x64\xcc\x64\xf3\x3c\x55\x5a\x50\xb6\xf3\xd2\xce\xd1\x18\xf6\x28\xd2\x8c\xbc\xc8\xaf\xbb\x8e\x1d\xfb\xcf\xfb\x93\x7f\x56\xd4\xf4\x3e\xf7\xf1\x12\xa6\x48\xf5\xc7\x90\x13\x07\x4d\x01\xd7\x79\x7c\x56\x9b\xed\xc7\x9c\xaa\xfe\x84\xdd\x94\x7c\x0d\x1a\x3a\xc1\xf9\x42\x3f\x02\xe6\x06\xcf\x66\xea\x87\xff\x73\xa6\xe2\x6d\x7a\xc7\x34\x09\x2e\x0a\x26\xa9\x97\xb0\xe5\xea\xa6\x25\xfe\x77\x09\xeb\x5e\xd1\xe4\x6d\xb9\xba\x09\x5b\x82\x6f\xe4\xcd\x2f\x8f\x83\xe3\xdf\x01\x00\x00\xff\xff\x3b\x35\x2e\x11\xb8\x0b\x00\x00" func epochNodeRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -1539,11 +1430,11 @@ func epochNodeRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/node/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x68, 0x71, 0x8d, 0x2a, 0x43, 0x15, 0x3f, 0xea, 0xe6, 0xaf, 0x8c, 0x46, 0xaa, 0x5, 0x11, 0x3d, 0x13, 0x3d, 0x30, 0xf1, 0x3b, 0x87, 0xc6, 0xa3, 0x39, 0x96, 0xcf, 0x3d, 0x75, 0x77, 0xbb, 0x90}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x80, 0x53, 0x24, 0x17, 0x3f, 0x5e, 0xfe, 0x62, 0x45, 0xf7, 0x8b, 0x84, 0x9d, 0x9b, 0xbc, 0xf1, 0x2e, 0x56, 0x3d, 0xe4, 0x75, 0x59, 0xf4, 0x6, 0x87, 0x12, 0xfa, 0xc0, 0xa2, 0xde, 0xda, 0xb2}} return a, nil } -var _epochNodeRegister_qc_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\xcd\x4e\x84\x40\x0c\xc7\xef\xf3\x14\x0d\x87\xcd\x90\xb8\x3c\x00\x41\x37\x06\x35\xf1\x62\xd4\x35\xde\x67\x87\xf2\x11\xd9\xe9\x58\x8a\x7b\x30\xfb\xee\x86\x0f\x47\x50\x7b\x82\xe9\xbf\xed\xef\xdf\x36\x47\x4f\x2c\x70\xd7\xd2\xe9\xd6\x93\xad\xa1\x64\x3a\x42\x14\xfe\x23\xb5\x50\xdc\xdf\xbc\x98\x43\x8b\x7b\x31\x6f\x8d\xab\x16\xd2\x75\x62\x55\x93\xb7\x7d\x27\xc8\x4f\xf9\x42\x1e\xde\x22\xa5\x84\x8d\xeb\x8c\x95\x86\x9c\x8e\xe1\x53\x29\x00\x00\xcf\xe8\x0d\xa3\xee\x9a\xca\x21\xa7\x60\x7a\xa9\xf5\x5e\x88\x4d\x85\x31\x6c\xae\xad\xa5\xde\x49\x90\x0f\xd1\xa2\x80\xa3\x02\x9f\xb1\x84\x4b\x98\x0a\x93\x6e\x2a\x49\x0e\xc4\x4c\xa7\x6c\xf3\x97\x35\x79\xa0\x62\xfc\x46\xbe\xd2\x03\x61\xfa\x8f\xd3\x85\x68\x86\x78\x34\x52\xc7\x61\xf6\x10\xbb\x1d\x78\xe3\x1a\xab\xa3\x9c\xfa\xb6\x00\x47\x02\xd3\xd8\x11\x0b\x18\x4b\x64\x74\x16\xa7\x3d\xcc\x64\xe0\x8d\xd4\x51\xbc\xb6\xf1\x6e\x5f\x49\x90\x21\xdb\xfe\xdc\x25\xa9\x50\xc2\xda\xc6\xb4\x76\x01\x2a\xfd\x76\xbe\x68\xf4\x6b\x03\x9d\xf9\x40\x9d\x6d\xe7\xd6\x17\x20\x94\xae\xcf\x93\x8c\x89\x95\xbd\xb1\xd7\x59\x9d\xbf\x02\x00\x00\xff\xff\x2b\x73\x77\x18\x24\x02\x00\x00" +var _epochNodeRegister_qc_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x4f\x4f\x83\x40\x10\xc5\xef\x7c\x8a\x09\x07\xb3\x4d\x2c\xf1\x4c\xaa\x4d\x43\x6b\xf4\xa2\x6d\x31\xde\xb7\xcb\xf0\x27\xd2\x9d\x75\x18\xac\x89\xe9\x77\x37\x40\x41\x48\x9d\x13\xc9\x7b\xfc\xe6\xbd\xd9\xe2\xe8\x88\x05\x1e\x4b\x3a\x6d\x1c\x99\x1c\x52\xa6\x23\xdc\x7d\x6f\xb6\xaf\xd1\xd3\x6a\xbd\xde\x6f\xe2\xd8\x1b\x99\x9e\xd7\x6f\xfa\x50\x62\x2c\xfa\xa3\xb0\x59\xe7\xf6\xaf\x05\x7f\xfc\x4f\x54\xd6\x95\x20\xef\xa2\x1e\xbe\x8b\x7a\xb2\x27\xac\x6d\xa5\x8d\x14\x64\xd5\x0c\x7e\x3c\x0f\x00\xc0\x31\x3a\xcd\xa8\xaa\x22\xb3\xc8\x21\xac\x6a\xc9\x57\xc6\x50\x6d\x65\xf0\x34\x53\xa2\x80\xa5\x04\xf7\x98\xc2\x3d\x74\xee\xe0\x40\xcc\x74\x5a\xdc\x5c\x87\x0a\x5e\x28\x69\xbf\x91\x1f\x54\x13\x25\xfc\xa7\xd2\xc8\x14\x0b\xb1\xce\x70\xab\x25\x9f\x0d\x3b\x9b\x59\x2e\xc1\x69\x5b\x18\xe5\x47\x54\x97\x09\x58\x12\xe8\xd6\xb6\x71\x80\x31\x45\x46\x6b\xb0\x2b\x5c\x75\x1c\x70\x5a\x72\x7f\x36\x8d\xff\x69\xde\x49\x90\x61\x31\xff\x7b\x83\x20\x43\x19\x6e\xd6\xca\xca\x0e\xa1\xc2\xbe\xf1\x08\x74\x69\x5e\xe9\x2f\x54\x8b\xf9\x05\x79\x0b\x42\xe1\xf4\xfe\x41\x2b\x4c\x6a\xb5\x8c\xb3\x77\xfe\x0d\x00\x00\xff\xff\xdc\xf7\x40\xd8\x08\x02\x00\x00" func epochNodeRegister_qc_voterCdcBytes() ([]byte, error) { return bindataRead( @@ -1559,11 +1450,11 @@ func epochNodeRegister_qc_voterCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/node/register_qc_voter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe3, 0x85, 0x38, 0x83, 0x3f, 0x29, 0xc8, 0x67, 0xf8, 0x39, 0x18, 0x90, 0x30, 0x95, 0xd7, 0xfb, 0xcb, 0x28, 0xff, 0x42, 0xeb, 0x66, 0x30, 0x6, 0x8b, 0x32, 0xc, 0x6a, 0x41, 0x3f, 0x8d, 0xc0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2f, 0x3b, 0xbc, 0xc5, 0xee, 0xf7, 0xc, 0xd1, 0xea, 0x15, 0x2a, 0xf9, 0x22, 0xea, 0x2d, 0xdf, 0x85, 0xcf, 0xf0, 0x5d, 0x9d, 0x42, 0x54, 0x7f, 0xe0, 0x14, 0x33, 0x12, 0x6d, 0xdc, 0xbf, 0x11}} return a, nil } -var _epochScriptsGet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\xdd\x32\x2b\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\xe6\xe8\xa5\xa7\x96\x38\xe5\xe7\x95\x16\x87\xe4\x67\xa7\xe6\x15\x6b\x68\x72\xd5\x72\x01\x02\x00\x00\xff\xff\x76\x1b\x5a\x11\x6c\x00\x00\x00" +var _epochScriptsGet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x18\xa5\x97\x9e\x5a\xe2\x94\x9f\x57\x5a\x1c\x92\x9f\x9d\x9a\x57\xac\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x6f\x69\x0b\x19\x6e\x00\x00\x00" func epochScriptsGet_bonus_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1579,11 +1470,11 @@ func epochScriptsGet_bonus_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_bonus_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdf, 0xb7, 0x12, 0xf4, 0xd5, 0x3, 0x5c, 0xc, 0xe2, 0x8f, 0xba, 0x1, 0xf6, 0xeb, 0xf5, 0x5e, 0x78, 0xa2, 0xa7, 0x95, 0x60, 0x32, 0x30, 0x36, 0x18, 0xe8, 0xde, 0xb7, 0x4d, 0xbd, 0xd3, 0xa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x62, 0x70, 0x28, 0x3f, 0x6f, 0xb3, 0x4e, 0xf4, 0x98, 0x64, 0xe9, 0xe0, 0x53, 0x18, 0xb1, 0x39, 0xe1, 0xc1, 0x9a, 0x82, 0xc9, 0x94, 0xba, 0xf3, 0x77, 0xaf, 0x95, 0x6c, 0x40, 0xcc, 0x75, 0xec}} return a, nil } -var _epochScriptsGet_config_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x10\x7a\xf4\x9c\xf3\xf3\xd2\x32\xd3\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x90\x64\xd3\x53\x4b\x20\x0a\x7c\x53\x4b\x12\x53\x12\x4b\x12\x35\x34\xb9\x6a\xb9\x00\x01\x00\x00\xff\xff\x49\x98\x62\x2b\x79\x00\x00\x00" +var _epochScriptsGet_config_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x42\x68\xd3\x73\xce\xcf\x4b\xcb\x4c\x57\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x92\x4d\x4f\x2d\x81\x28\xf0\x4d\x2d\x49\x4c\x49\x2c\x49\xd4\xd0\xe4\xaa\x05\x04\x00\x00\xff\xff\xe1\x1e\x99\xa0\x7b\x00\x00\x00" func epochScriptsGet_config_metadataCdcBytes() ([]byte, error) { return bindataRead( @@ -1599,11 +1490,11 @@ func epochScriptsGet_config_metadataCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_config_metadata.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdc, 0x29, 0xb6, 0xd6, 0xa0, 0xb4, 0x99, 0xd, 0x4b, 0x96, 0x98, 0x11, 0xa1, 0x5d, 0x26, 0xa8, 0xa1, 0xfe, 0x9c, 0xbd, 0x5f, 0xbc, 0xac, 0xc5, 0x8, 0xcc, 0xe7, 0xf2, 0x6d, 0xd2, 0x51, 0xb7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4e, 0xe3, 0x3, 0x47, 0x3c, 0xc3, 0xd5, 0xff, 0x69, 0x19, 0x2d, 0x1b, 0xe3, 0x64, 0x53, 0xff, 0x84, 0xa9, 0x4d, 0x26, 0x1c, 0x83, 0x46, 0x6a, 0x36, 0x13, 0x1b, 0x9a, 0x43, 0x17, 0x99, 0xa0}} return a, nil } -var _epochScriptsGet_create_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xb1\xca\x83\x40\x10\x84\xfb\x7b\x8a\xc1\x4a\x1b\x1f\xc0\xd6\xff\x0f\xa4\x0c\x29\xc5\x62\xb9\xac\x89\xb0\xde\xca\xde\x4a\x08\x21\xef\x1e\x08\x62\x4c\x37\x33\x7c\xc3\xcc\x38\xcd\x6a\x8e\x83\xe8\xfd\x7f\xd6\x78\xc3\x60\x3a\xa1\xd8\x7c\x11\x76\x44\x2b\x4b\x76\xb6\x53\xbb\xa3\xb6\xac\x08\x81\x62\xe4\x9c\x4b\x12\xa9\x30\x2c\x09\x13\x8d\xa9\x24\x33\x7a\x34\xe8\xce\x6e\x63\xba\xf6\x55\x83\xee\xa7\x57\xaf\xaa\xc7\x33\x00\x80\xb1\x2f\x96\xbe\x8f\xea\x68\x4c\xce\xad\x8a\x70\x74\xb5\x15\xcf\x65\xd2\x0b\x1f\xff\x72\x83\xcf\x42\x15\x5e\xe1\x1d\x00\x00\xff\xff\xb5\xb7\x78\xee\xcd\x00\x00\x00" +var _epochScriptsGet_create_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x31\xef\x82\x30\x14\x04\xf0\xbd\x9f\xe2\x46\x58\xc8\x7f\x66\xfb\xa7\x60\x74\x52\x64\x24\x0c\x4d\x7d\x28\x49\xe9\x23\xaf\x6d\xd4\x18\xbf\xbb\x89\x81\xa8\xdb\x0d\xbf\xdc\xdd\x38\xcd\x2c\x11\x1b\xc7\xd7\x7a\x66\x7b\xc1\x20\x3c\xe1\xef\x56\x1f\xf6\x7a\xfb\x5f\x55\xc7\xba\x6d\xd5\x17\xd2\x2e\x85\x48\xd2\xe8\x15\x36\x7a\x55\xca\x58\x4b\x21\x64\xc6\xb9\x1c\x43\xf2\x98\xcc\xe8\x33\x23\x62\xee\x25\xba\x36\xca\xe8\xcf\x7d\x5e\xa2\xfb\xe9\x29\x96\xd4\xe3\xa1\x14\x00\x08\xc5\x24\xfe\xf3\xa8\xb0\x42\x26\x92\x66\xe7\xc8\x46\x96\xc5\x87\xcc\xf3\x89\x76\x55\x28\xf1\x9e\xc8\x95\x7a\xbe\x02\x00\x00\xff\xff\x6a\x47\x31\x9f\xcd\x00\x00\x00" func epochScriptsGet_create_clustersCdcBytes() ([]byte, error) { return bindataRead( @@ -1619,11 +1510,11 @@ func epochScriptsGet_create_clustersCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_create_clusters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x53, 0x30, 0xb5, 0x66, 0xa1, 0x17, 0x72, 0xdf, 0xf5, 0x1a, 0x82, 0x7a, 0xa9, 0x3d, 0x91, 0xef, 0xbf, 0x11, 0x15, 0x6e, 0xfd, 0x84, 0x7, 0x85, 0xde, 0xd8, 0x9, 0x31, 0x4d, 0x21, 0x64, 0x35}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0xee, 0x3a, 0x6f, 0x39, 0x84, 0x3d, 0xce, 0x1b, 0x51, 0x57, 0xf7, 0xc5, 0x85, 0x2, 0xc1, 0x83, 0x4, 0xc6, 0x7, 0x7c, 0xfb, 0xdd, 0x68, 0xd6, 0x55, 0x3c, 0xab, 0xf7, 0xdb, 0x72, 0x32}} return a, nil } -var _epochScriptsGet_current_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd2\xd7\x57\x08\x4a\x2d\x29\x2d\xca\x2b\x56\x28\xc9\x48\x55\x28\xcb\x4c\x2d\x57\xc8\x4f\x03\xb3\x93\x4b\x8b\x8a\x52\xf3\x4a\x14\x92\x72\xf2\x93\xb3\xb9\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\x3d\xf3\x4a\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x72\x52\x4b\x60\xfa\x9c\x40\xda\x14\x6c\x15\xd2\x53\x4b\x9c\x91\x44\x34\x34\xc1\x0a\x8b\xc0\x96\xa2\xa8\xd5\x03\x59\xce\x55\xcb\x05\x08\x00\x00\xff\xff\x31\x43\x70\x8e\x93\x00\x00\x00" +var _epochScriptsGet_current_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd2\xd7\x57\x08\x4a\x2d\x29\x2d\xca\x2b\x56\x28\xc9\x48\x55\x28\xcb\x4c\x2d\x57\xc8\x4f\x03\xb3\x93\x4b\x8b\x8a\x52\xf3\x4a\x14\x92\x72\xf2\x93\xb3\xb9\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\x3d\xf3\x4a\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x72\x52\x4b\x60\xfa\x9c\x40\xda\x14\x6c\x15\xd2\x53\x4b\x9c\x91\x44\x34\x34\xc1\x0a\x8b\xc0\x96\xa2\xa8\xd5\x03\x59\xce\x55\x0b\x08\x00\x00\xff\xff\xb1\xb8\xc6\xc1\x92\x00\x00\x00" func epochScriptsGet_current_viewCdcBytes() ([]byte, error) { return bindataRead( @@ -1639,11 +1530,11 @@ func epochScriptsGet_current_viewCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_current_view.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xca, 0x73, 0xd7, 0x7e, 0xbb, 0xc1, 0xf1, 0x48, 0x38, 0xc7, 0x46, 0x64, 0xbd, 0x3, 0x96, 0xc3, 0x96, 0xa1, 0x6c, 0x17, 0x53, 0x1e, 0x2e, 0x17, 0x5e, 0x74, 0x20, 0x69, 0x5, 0x49, 0x81, 0x46}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x14, 0x17, 0xec, 0xb1, 0xd3, 0xf8, 0x2f, 0x5c, 0x5b, 0x67, 0xcc, 0x11, 0x39, 0x80, 0xf5, 0x21, 0x5c, 0x68, 0x72, 0x88, 0x8e, 0x3f, 0x62, 0xe2, 0x79, 0xb8, 0xfc, 0x3e, 0x23, 0x1f, 0x78, 0x73}} return a, nil } -var _epochScriptsGet_epoch_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\x3d\xf3\x4a\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\xe6\xe8\x25\x97\x16\x15\xa5\xe6\x95\x80\x39\xce\xf9\xa5\x79\x25\xa9\x45\x5c\xb5\x80\x00\x00\x00\xff\xff\xc6\x93\x6d\x15\x6e\x00\x00\x00" +var _epochScriptsGet_epoch_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\xf5\xcc\x2b\x31\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x18\xa5\x97\x5c\x5a\x54\x94\x9a\x57\x02\xe6\x38\xe7\x97\xe6\x95\xa4\x16\x71\xd5\x02\x02\x00\x00\xff\xff\x59\x5e\x04\x35\x71\x00\x00\x00" func epochScriptsGet_epoch_counterCdcBytes() ([]byte, error) { return bindataRead( @@ -1659,11 +1550,11 @@ func epochScriptsGet_epoch_counterCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_epoch_counter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x83, 0x42, 0x10, 0xa0, 0xad, 0xb7, 0x47, 0xa, 0x61, 0x20, 0xe3, 0xe2, 0xef, 0x4c, 0x70, 0xe6, 0x10, 0xef, 0x4d, 0x43, 0x5e, 0xcb, 0xa9, 0x60, 0x2d, 0x66, 0x4, 0xf2, 0xee, 0x88, 0xd2, 0x26}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc9, 0xd5, 0xfd, 0x2, 0x55, 0x15, 0x31, 0x3, 0xcb, 0x7e, 0x88, 0xf1, 0xce, 0x48, 0x45, 0xee, 0xca, 0x5b, 0xab, 0x94, 0xfc, 0xd5, 0x59, 0xec, 0x85, 0x7b, 0x74, 0xbf, 0x2d, 0x4a, 0xc4, 0xd8}} return a, nil } -var _epochScriptsGet_epoch_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x52\x41\x92\xce\xf9\xa5\x79\x25\xa9\x45\x56\x0a\xa1\x9e\x79\x25\x66\x26\x9a\x56\x08\x73\xf4\xc0\xa4\x6f\x6a\x49\x62\x4a\x62\x49\xa2\x42\x35\x97\x82\x82\x82\x42\x51\x6a\x49\x69\x51\x1e\x92\xa2\xf4\xd4\x12\x14\x75\x28\xc6\x6a\x2a\x72\xd5\x02\x02\x00\x00\xff\xff\xc7\x41\x13\xa2\x9f\x00\x00\x00" +var _epochScriptsGet_epoch_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x05\xa9\x77\xce\x2f\xcd\x2b\x49\x2d\xb2\x52\x08\xf5\xcc\x2b\x31\x33\xd1\xb4\x42\x18\xa5\x07\x26\x7d\x53\x4b\x12\x53\x12\x4b\x12\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x90\x14\xa5\xa7\x96\xa0\xa8\x43\x31\x56\x53\x91\xab\x16\x10\x00\x00\xff\xff\x7f\x11\xb3\x7c\xa2\x00\x00\x00" func epochScriptsGet_epoch_metadataCdcBytes() ([]byte, error) { return bindataRead( @@ -1679,11 +1570,11 @@ func epochScriptsGet_epoch_metadataCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_epoch_metadata.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xf7, 0x5b, 0xef, 0xc4, 0x5f, 0xa4, 0xcf, 0xc5, 0x9e, 0x16, 0x2e, 0xa9, 0x19, 0x76, 0x2b, 0x9f, 0x9, 0xdf, 0x16, 0x2c, 0xf3, 0x59, 0x48, 0x8c, 0x36, 0x26, 0xc, 0x9c, 0xd6, 0xb8, 0x12}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb1, 0x5e, 0xb9, 0xfa, 0xa9, 0xac, 0x39, 0x1, 0x5f, 0x6a, 0x16, 0xe8, 0xc4, 0x93, 0x4e, 0x82, 0x1a, 0x49, 0x3c, 0x14, 0xc5, 0xfe, 0xac, 0xbb, 0x70, 0x44, 0xf6, 0xc3, 0x49, 0x18, 0x89, 0xa5}} return a, nil } -var _epochScriptsGet_epoch_phaseCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xcc\xb1\x0a\xc2\x40\x0c\x06\xe0\xfd\x9e\xe2\xa7\x53\xbb\x74\x16\x77\x05\x37\x17\xdd\xc3\x91\xd2\x42\x2e\x29\xb9\x84\x0e\xe2\xbb\x0b\x0e\x3a\x7e\xcb\xb7\xb5\xdd\x3c\x70\x15\x3b\x2e\xbb\xd5\x15\x8b\x5b\xc3\xf0\xf3\x50\x0a\xd5\xca\xbd\x8f\x24\x32\x61\x49\x45\xa3\x4d\xc7\xe9\x8c\xc7\x4d\xe3\x84\x57\x01\x00\xe7\x48\xd7\x7f\x33\xd7\x74\x67\x8d\x2f\xee\x2b\x75\x9e\x9d\x8e\x27\x49\x72\x79\x7f\x02\x00\x00\xff\xff\xd2\xb5\x20\xc1\x74\x00\x00\x00" +var _epochScriptsGet_epoch_phaseCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\xf5\xcc\x2b\xb1\x50\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x98\xa4\x97\x5c\x5a\x54\x94\x9a\x57\x02\xe6\x04\x64\x24\x16\xa7\xea\x15\x25\x96\x87\x25\xe6\x94\xa6\x72\xd5\x02\x02\x00\x00\xff\xff\x47\xc3\xf6\x42\x77\x00\x00\x00" func epochScriptsGet_epoch_phaseCdcBytes() ([]byte, error) { return bindataRead( @@ -1699,31 +1590,11 @@ func epochScriptsGet_epoch_phaseCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_epoch_phase.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8e, 0xc2, 0x92, 0xc6, 0x5c, 0xd7, 0x19, 0x5d, 0xed, 0x1d, 0xe8, 0xfc, 0x5a, 0xfa, 0x53, 0x75, 0x8a, 0x15, 0x52, 0x13, 0xdf, 0x55, 0xae, 0x71, 0x7e, 0xcc, 0xc, 0x81, 0x95, 0xdc, 0xc7, 0xc5}} - return a, nil -} - -var _epochScriptsGet_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x10\x7a\xf4\xc0\x64\x48\x66\x6e\x66\x5e\xba\x73\x7e\x5e\x5a\x66\xba\x42\x35\x97\x82\x82\x82\x42\x51\x6a\x49\x69\x51\x1e\x92\xc2\xf4\xd4\x12\x0c\xb5\x1a\x9a\x5c\xb5\x80\x00\x00\x00\xff\xff\xd4\x6d\x92\x2d\x86\x00\x00\x00" - -func epochScriptsGet_epoch_timing_configCdcBytes() ([]byte, error) { - return bindataRead( - _epochScriptsGet_epoch_timing_configCdc, - "epoch/scripts/get_epoch_timing_config.cdc", - ) -} - -func epochScriptsGet_epoch_timing_configCdc() (*asset, error) { - bytes, err := epochScriptsGet_epoch_timing_configCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "epoch/scripts/get_epoch_timing_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0x3f, 0xce, 0x1b, 0x5d, 0x2, 0xa1, 0xda, 0x74, 0x91, 0x1e, 0x7f, 0x30, 0x80, 0x4b, 0xa1, 0xc5, 0xbc, 0x78, 0x58, 0xe2, 0x85, 0xa3, 0x36, 0x62, 0x7a, 0x19, 0xcc, 0x30, 0xc4, 0x9e, 0x8c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfb, 0x78, 0xa1, 0xb5, 0x83, 0x19, 0xc, 0xba, 0x63, 0xac, 0x58, 0x17, 0x11, 0x24, 0x41, 0x57, 0xa0, 0xd4, 0x2a, 0xc, 0x71, 0x62, 0x96, 0x5e, 0xe9, 0xa6, 0x18, 0xb4, 0xfd, 0x5f, 0x23, 0x11}} return a, nil } -var _epochScriptsGet_proposed_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\x3d\xf3\x4a\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\xe6\xe8\x15\x14\xe5\x17\xe4\x17\xa7\xa6\x80\x79\xce\xf9\xa5\x79\x25\xa9\x45\x1a\x9a\x5c\xb5\x80\x00\x00\x00\xff\xff\x47\x3a\xad\xbf\x71\x00\x00\x00" +var _epochScriptsGet_proposed_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\xf5\xcc\x2b\x31\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x18\xa5\x57\x50\x94\x5f\x90\x5f\x9c\x9a\x02\xe6\x39\xe7\x97\xe6\x95\xa4\x16\x69\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x55\xb5\xd8\x03\x74\x00\x00\x00" func epochScriptsGet_proposed_counterCdcBytes() ([]byte, error) { return bindataRead( @@ -1739,11 +1610,11 @@ func epochScriptsGet_proposed_counterCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_proposed_counter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0xc4, 0xf8, 0x7c, 0xf, 0x29, 0xc7, 0x76, 0xb4, 0x12, 0x90, 0xa3, 0x44, 0x2d, 0x55, 0x7e, 0x6f, 0x2e, 0x42, 0xac, 0x6e, 0x97, 0xb6, 0x9d, 0xf3, 0x7f, 0x88, 0xf4, 0x20, 0x92, 0xed, 0x42}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x65, 0xa1, 0x50, 0xe6, 0x27, 0x2, 0x37, 0xc0, 0x59, 0x7f, 0xc6, 0xed, 0xc7, 0xee, 0x56, 0x4e, 0xea, 0x60, 0x8d, 0xac, 0xfb, 0xe9, 0xfe, 0x8a, 0x5c, 0x5e, 0x29, 0x8d, 0x40, 0x30, 0xa8, 0x67}} return a, nil } -var _epochScriptsGet_randomizeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x12\x8b\x8a\x12\x2b\xad\x14\xa2\x83\x4b\x8a\x32\xf3\xd2\x63\x35\x11\x4c\x85\x6a\x2e\x05\x05\x05\x85\xa2\xd4\x92\xd2\xa2\x3c\x84\xc1\x7a\x45\x89\x79\x29\xf9\xb9\x99\x55\xa9\x10\xbd\x9a\x5c\xb5\x5c\x80\x00\x00\x00\xff\xff\x71\xcc\x71\x38\x7d\x00\x00\x00" +var _epochScriptsGet_randomizeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x2c\x2a\x4a\xac\xb4\x52\x88\x0e\x2e\x29\xca\xcc\x4b\x8f\xd5\x44\x30\x15\xaa\xb9\xb8\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\x86\xeb\x15\x25\xe6\xa5\xe4\xe7\x66\x56\xa5\x42\x34\x6b\x72\x71\xd5\x02\x02\x00\x00\xff\xff\x0c\xed\x0e\x98\x81\x00\x00\x00" func epochScriptsGet_randomizeCdcBytes() ([]byte, error) { return bindataRead( @@ -1759,31 +1630,11 @@ func epochScriptsGet_randomizeCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_randomize.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0x12, 0xd9, 0x65, 0x36, 0xf, 0xe4, 0x3b, 0x80, 0x3b, 0xdd, 0x29, 0x6b, 0xfd, 0x50, 0x6a, 0x2e, 0xa5, 0xa1, 0x70, 0x41, 0xc2, 0x79, 0xec, 0xfb, 0x14, 0x51, 0xc, 0xe8, 0xb8, 0xcb, 0xb4}} - return a, nil -} - -var _epochScriptsGet_target_end_time_for_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8f\x31\x8b\xc3\x30\x0c\x85\x77\xff\x8a\x47\xa6\x78\xb9\xe9\xb8\xe1\xa0\x5d\x42\x03\xdd\xd3\x1f\x60\x5c\x25\x35\xd8\x72\x50\x6c\x3a\x94\xfc\xf7\x12\x27\x69\xa3\x41\x3c\xa1\xf7\xe9\x21\x17\xc6\x28\x09\xad\x8f\xcf\xcb\x18\xed\x03\xbd\xc4\x80\xea\x33\x57\x4a\x19\x6b\x69\x9a\x6a\xe3\xbd\x46\x9f\x19\xc1\x38\xae\x93\x91\x81\x52\xb1\xfc\xe3\x76\xe5\xf4\xf7\xab\x77\x81\x97\x02\x80\x51\x68\x53\x4b\x1d\x00\x9c\x4f\xdf\xc0\x1f\x9b\x45\x88\xd7\x4d\x13\x33\x27\x92\x02\xcd\xa5\x7b\x4a\xb0\x91\x7b\x37\xe0\x08\xed\xa7\x3a\x17\x1c\x0f\x4d\x31\xd4\xba\x10\x42\x29\x0b\x6f\xd0\x62\xec\xd6\x64\xbe\x77\x2e\x50\x1b\xa5\x80\xc7\x07\xb4\x9a\xdf\x01\x00\x00\xff\xff\x48\xb4\xb0\xb3\x07\x01\x00\x00" - -func epochScriptsGet_target_end_time_for_epochCdcBytes() ([]byte, error) { - return bindataRead( - _epochScriptsGet_target_end_time_for_epochCdc, - "epoch/scripts/get_target_end_time_for_epoch.cdc", - ) -} - -func epochScriptsGet_target_end_time_for_epochCdc() (*asset, error) { - bytes, err := epochScriptsGet_target_end_time_for_epochCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "epoch/scripts/get_target_end_time_for_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x2c, 0x9a, 0x3f, 0xf9, 0x63, 0x6b, 0x6, 0x62, 0x77, 0x4b, 0xf8, 0x7c, 0xfa, 0xc0, 0x87, 0x40, 0xcb, 0x6c, 0x11, 0x6, 0x75, 0xc3, 0x10, 0x56, 0xdc, 0xf7, 0x79, 0x9, 0xa4, 0x6f, 0xd4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xef, 0xae, 0x3, 0x7, 0x26, 0x62, 0x14, 0x34, 0xf9, 0xcb, 0x9a, 0x86, 0x3c, 0x61, 0xe8, 0xf9, 0x11, 0xf6, 0xbe, 0xa0, 0xbb, 0xca, 0x1c, 0xa0, 0xec, 0xca, 0xc7, 0xc3, 0xa0, 0x96, 0x45, 0xa5}} return a, nil } -var _flowtokenBurn_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x3d\x6f\xdb\x30\x10\xdd\xf5\x2b\x5e\x3d\x04\xd6\x10\x69\x29\x3a\x18\x69\xd3\x24\x40\xc6\x4e\x69\x3a\x53\xd2\xd9\x22\x2a\x91\xc2\xf1\x54\x25\x08\xf2\xdf\x0b\x1e\x25\x59\x1e\xec\xc1\xb4\x79\x77\xef\x83\xef\xca\x12\x2f\xad\x0d\x10\x36\x2e\x98\x5a\xac\x77\xb0\x01\x06\x42\xfd\xd0\x19\x21\x1c\x3d\xc7\xbf\x9b\xba\xb4\x46\xb2\xb2\x44\xed\xc7\xae\x41\x45\x18\x03\x35\xa8\xde\x21\x2d\xc1\x34\xbd\x75\x30\x75\xed\x47\x27\x10\x8f\x6a\x64\x07\xf1\x7f\xc9\x85\x38\x74\x64\xdf\xc7\x46\xcb\x08\xe2\x99\x1a\xbc\x9a\xb1\x8b\x78\x99\x6a\x21\x1d\xb0\xee\x04\xd3\x2b\xc4\xb4\xb0\x18\x0c\x86\x4d\x4f\x42\x1c\x71\x23\xd9\x46\x55\x96\xd9\x7e\xf0\x2c\xd8\x3d\x8f\xee\x64\xab\x8e\x5e\x22\xe7\xee\x7c\xdd\xf9\x69\xbe\xca\x36\x73\xfb\x44\x73\xc0\xef\x67\xfb\xf6\xed\x6b\x8e\x8f\x2c\x03\x80\xb2\x4c\xc2\xc0\x14\xfc\xc8\x35\xa9\x6d\xb4\xbe\x6b\x42\xe2\x56\x4b\xe9\xd6\x30\xa1\xa2\x28\x3a\x8a\xa7\x46\x11\x3a\x12\xfc\x8b\x10\x07\xfc\xbc\xd0\x54\x24\xc7\x6b\x93\x3e\xd9\x01\x37\xab\xc2\xe2\x21\xde\xd8\x20\x6c\xc4\x73\x6a\x1c\x98\x06\xc3\xb4\x0f\xf6\xe4\x88\x0f\x30\xa3\xb4\xfb\x47\xcf\xec\xa7\x57\xd3\x8d\x94\xe3\xe6\x21\x3d\xfa\x6a\x61\xb6\xf1\xc7\x4a\xdb\xb0\x99\x16\xc5\x4b\x02\x73\x54\x2a\x11\xd6\x69\x1c\xe6\x44\xeb\x68\xa0\xee\x58\xa4\xea\xdd\x2d\x12\x6f\x31\x37\x15\x95\x32\xdf\xa9\x8a\x4b\x73\x0b\x5d\xbe\x35\xa4\x8e\x7f\xec\x23\xf5\x01\xe5\x0c\x52\x1e\x97\xba\x96\xf3\x2f\x2b\x75\xfc\x14\xd3\x0c\xb4\x26\x94\xce\xfc\xc2\xdc\x13\x53\x5c\x52\x03\xa6\x23\x31\xb9\x98\x93\xdf\x2e\xa2\x7e\xaf\x19\x5e\xb3\x99\xda\xbe\x5f\x71\x79\x2d\x99\xeb\x86\xb4\x2d\xbf\xf0\x73\x7f\x8f\xc1\x38\x5b\xef\x77\x4f\xba\xd1\xce\x0b\x12\xfe\x75\xf5\x8b\xee\x5d\x82\xfa\x4c\xd6\xe9\x8d\xea\x51\x08\x1f\x2b\x7e\xdc\x22\xdd\x3c\xd6\xa8\x56\x47\x45\xad\xcf\xf3\x8b\xa6\x47\xad\xee\xcf\x92\xd6\x1f\x69\xae\x88\x87\x4a\x0f\xb3\xa9\xbb\xdb\xf3\x02\x6c\xde\xbc\xa1\x20\xec\xdf\xe7\xb1\x59\xd6\x67\x86\xff\x01\x00\x00\xff\xff\xde\x62\x75\xd0\x49\x04\x00\x00" +var _flowtokenBurn_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4d\x6f\x9c\x30\x10\xbd\xf3\x2b\x5e\xf7\x50\xb1\x87\xc0\xa5\xea\x61\xb5\x6d\xba\x8d\x94\x63\x4f\x69\x7b\x36\x30\x2c\x56\xc1\x46\xe3\xa1\x24\x8a\xf2\xdf\x2b\xdb\xe0\x40\xa5\xdd\xc3\x02\xf6\xcc\xfb\x98\x37\x65\x89\xa7\x4e\x3b\x08\x2b\xe3\x54\x2d\xda\x1a\x68\x07\x05\xa1\x61\xec\x95\x10\x5a\xcb\xfe\x73\x73\x2f\x9d\x92\xac\x2c\x51\xdb\xa9\x6f\x50\x11\x26\x47\x0d\xaa\x17\x48\x47\x50\xcd\xa0\x0d\x54\x5d\xdb\xc9\x08\xc4\xa2\x9a\xd8\x40\xec\x1f\x32\xce\x37\xb5\x6c\x07\x5f\xa8\x19\x4e\x2c\x53\x83\x5f\x6a\xea\x3d\x5e\x16\xb4\x50\x68\xd0\xe6\x0a\x35\x04\x88\x79\x65\x51\x18\x15\xab\x81\x84\xd8\xe3\x7a\xb2\x8d\xaa\x2c\xd3\xc3\x68\x59\xf0\x38\x99\xab\xae\x7a\x7a\xf2\x94\x91\xee\xb0\x3b\x3b\xa4\xca\xde\xce\xbb\xaa\xf5\xfb\x90\x65\x1b\xe4\x3c\x0a\x39\xe1\xe7\xa3\x7e\xfe\xfc\xe9\x88\xd7\x2c\x03\x80\xb2\x8c\xd2\xc1\xe4\xec\xc4\x35\x85\xc1\xa0\xb3\x7d\xe3\xa2\xba\x60\x3a\x9e\x2a\x26\x54\xe4\x6d\x79\x7b\xd4\x04\x84\x9e\x04\x7f\x3d\xc4\x09\xdf\x76\x12\x8b\x38\x93\x54\x14\x86\x7a\xc2\xc7\xa4\xb0\xb8\xf8\x13\xed\x84\x95\x58\x8e\x85\x23\xd3\xa8\x98\x72\xa7\xaf\x86\xf8\x84\xcb\x24\xdd\x25\xe6\x90\x34\x2f\xba\x7f\x6b\xe9\x1a\x56\xf3\x2a\x71\x0d\x65\x49\x2f\x68\x82\x36\x21\x21\x75\xa5\xd4\xea\xa8\x6f\x8b\x78\x7b\xbe\x43\x24\x2a\x2a\xcb\x6c\xe7\xb3\x9a\xa4\xcb\xf7\x2e\x56\x1a\x55\xf5\x74\xdc\xaa\x0f\xf6\xbe\xe6\x9e\xf6\x84\x72\x61\x29\xdb\xf5\x3e\x5c\x1f\x3f\x24\x5a\xff\x2b\xe6\x05\x2c\xc5\x11\x9f\xc7\x9d\xb1\x07\x26\xbf\xb3\x0a\x4c\x2d\x31\x19\x1f\x8a\xdd\xee\x65\xf8\x4f\x81\xdd\xb2\x18\xcb\xbe\xfc\xe7\xf0\xd6\xf8\x6f\x1b\x09\x65\xc7\x9d\x8f\xfb\x7b\x8c\xca\xe8\x3a\x3f\x3c\x84\xc5\x36\x56\x10\xf1\x6f\xab\x5e\xf5\x1e\x22\xd4\x5b\xb4\x4c\xcf\x54\x4f\x42\x78\x4d\xf8\x7e\x55\xc2\x7a\x71\x88\x27\x39\x29\xea\x30\x96\x1f\x34\x7f\x0f\xb7\xf9\xbb\xa4\xf4\x12\xfb\x0a\xff\x08\xd2\xdd\x62\xea\x7c\xf7\x1e\xfa\x66\xd6\x0d\x39\x61\xfb\xb2\xb4\x2d\xb2\xde\x32\xfc\x0b\x00\x00\xff\xff\x9c\x62\xd7\x92\x50\x04\x00\x00" func flowtokenBurn_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1799,11 +1650,11 @@ func flowtokenBurn_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/burn_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf3, 0x6, 0x6d, 0x6c, 0xe, 0xf1, 0xf1, 0xb5, 0x9f, 0xc4, 0x8e, 0x3, 0xb6, 0x63, 0x4e, 0x91, 0x7a, 0x99, 0x8c, 0x65, 0x9c, 0x5, 0xb9, 0xb0, 0xc7, 0x5b, 0x56, 0x88, 0xc4, 0xf4, 0x75, 0xa5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1a, 0xd4, 0xdc, 0x56, 0xc, 0x62, 0xe6, 0xe3, 0x2b, 0x88, 0xc3, 0x53, 0xcd, 0xa0, 0x87, 0x3b, 0xde, 0x7f, 0x50, 0x8b, 0xb2, 0xb7, 0xf3, 0x71, 0x47, 0x8d, 0x70, 0x69, 0xa4, 0x57, 0xeb, 0x7}} return a, nil } -var _flowtokenCreate_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\xcd\x6e\x23\x37\x13\xbc\xf3\x29\x0a\x3e\xec\x27\x1b\xf2\x08\x5f\x7e\x2e\x82\x37\xc0\xc6\x81\x81\x5c\x72\xd8\x18\x7b\xcd\xb6\xc8\x1e\x91\xd9\x11\x39\x20\x7b\x34\x10\x16\x7e\xf7\x80\xe4\x68\x34\x72\x60\x9f\xa2\x93\x87\xec\xae\xae\xaa\x2e\x7a\x73\x77\xa7\xd4\xb3\x75\x09\x12\xc9\x27\xd2\xe2\x82\x87\x4b\x20\x08\x1f\xfa\x8e\x84\xd1\x86\x98\x3f\x17\xf7\x62\x49\xa0\xc3\xd0\x19\xec\x18\x43\x62\xa3\x24\x20\xb1\x60\xe8\x41\x1e\xa4\x75\x18\xbc\x40\x42\x6e\x1e\x29\x1a\x18\xee\x43\x72\xc2\x06\x12\xbe\xb1\x4f\xf9\x8e\x7c\x10\xcb\x11\x91\x35\xbb\x23\xc7\x46\xa9\xdf\x5b\x90\x3f\x05\xcf\x48\xec\x4d\x5a\x16\xe7\x39\xf1\x7f\x09\x4f\x15\x91\x23\x3e\x4f\x7d\x6b\x25\x96\xe7\x2f\x8c\xae\xeb\xf0\xf7\x90\x64\x1e\x2e\x36\x24\x5e\x60\xe5\xf2\x2f\x34\x74\x52\x95\x58\x4a\xd8\x31\x7b\x95\x15\x50\x2a\xd7\x91\xb5\xeb\x1d\x7b\x01\x79\x03\x3e\xb8\xfc\x07\xf8\x98\x4f\x4a\x93\xf3\xc6\x69\x12\x4e\x6a\xb4\x4e\xdb\xc2\xee\x3c\x30\xab\xb4\xe7\x81\xcd\x64\xf0\x48\xa7\x35\x5c\xd6\x87\xd0\xb6\xf7\xda\x92\xf3\x48\x1c\x8f\x4e\x33\x46\xf2\x52\xa8\x1d\x82\x77\x12\x22\x46\x1b\xf2\x1a\x26\x40\xe7\xf7\xea\x42\xdf\xc9\x1a\x4e\xa0\xc9\x63\x24\xd1\xb6\xd2\x2a\x57\x89\x19\xa3\xe5\xc8\x0b\x02\xd0\x74\x60\xb4\x31\x1c\x1a\xa5\xfe\x14\xee\xa7\xca\xba\xad\xba\xaa\x84\xd1\x89\xad\x0d\xb3\x8a\xb8\x55\xea\xff\x0d\x9e\x2d\xe3\x69\xf0\x7b\xb7\xeb\x18\xcf\xa5\x42\x07\x2f\x91\x74\x76\x41\x38\xb6\xa4\x19\xc9\x96\x3c\x50\x17\x99\xcc\x29\xe7\xc2\x70\xdf\x85\x13\x1b\xa4\x70\xe0\x42\x4a\xfd\x50\xd1\xa8\xef\x3b\xa7\x29\xe3\xc9\x35\xde\x84\xb2\xe8\x6e\xd4\x8f\xb5\x69\xb1\x91\x29\x5e\x53\xb1\xa5\x23\x83\xa6\x85\xe6\xb0\x4a\xc9\x73\x05\x8e\x4c\xc2\x46\x01\x28\x8b\x4c\x12\x22\x1b\x38\x0f\x27\xa9\x7c\xd1\x9e\xab\x76\x42\x3f\xec\x3a\x97\x2c\x9b\x39\x4b\xea\xa7\x06\xbf\x15\x22\xc5\xcf\xaf\x45\xfd\xd3\xbc\x93\x46\x1b\xfd\xf5\x42\xbe\xa4\xd4\xb8\xb6\xe5\xb8\xa0\xa9\x7e\x6e\x72\x66\x41\xf0\x3c\xe2\x53\x3d\xdc\xe2\xb1\x30\x2b\xb0\x67\x3d\x3e\xc4\x03\x75\xdd\x69\x5d\xe8\x8a\x65\x8f\x38\xf8\x3a\xb9\x0a\xf9\x6b\x5e\x4d\x1d\xbd\x78\x94\xb5\x69\xcf\x22\xce\xef\x71\xf5\x20\xf2\xea\xaf\x06\xd5\x00\xbf\x0a\x7a\xa3\xee\x36\x4a\xb9\x43\x1f\xa2\xe0\xe6\xbc\xf0\xa2\xf8\xe6\x72\xdc\x85\xf1\xd5\xd1\x2b\x4f\x6e\x94\x5a\xb0\x5a\x9d\xdf\xf6\x16\x9f\x8c\x89\x9c\xd2\x2d\xbe\xab\x42\xb5\x8f\xdc\x53\xe4\x15\x69\x2d\x5b\xd0\x20\x76\xf5\x6b\x88\x31\x8c\x5f\xa8\x1b\x78\x8d\x47\xea\x69\xe7\x3a\x27\x8e\xd3\x2d\x3e\x4c\xc6\xe5\x76\x4c\xbf\x8e\x65\x91\x8a\x8f\x59\xfc\x54\x35\x8f\xbd\x9d\x8b\xf3\xaf\xd1\x0b\xcc\x66\xcf\xf2\xf0\xe1\xfb\x95\xd0\xe6\xec\xd9\xcb\x2f\xab\x4d\x89\x83\xde\xb4\x67\xc9\x9f\x67\xcc\x2b\x06\xc7\x92\xbb\x87\x7b\xfc\x2b\x1c\x65\x65\x7f\xf0\x38\xff\xc7\x5a\xcd\x6c\xb7\x17\xe2\x17\x8a\xd9\x89\x66\xca\x64\x93\xe8\xc8\xab\x87\xfb\x82\xbe\x86\x84\x2d\x36\xd3\xd5\x85\xd1\x0c\xfc\x8a\x92\xa6\x1e\x1f\x2b\xdc\x7f\xa3\x78\x61\xba\x6b\x33\x7c\xa3\x2d\xeb\x6f\xab\xe5\xc5\xac\xe0\x6a\xe4\xe0\xa7\x57\xf5\x9e\x9f\xe7\xf6\x97\x6b\x19\x73\xd8\x1f\xdf\xd0\x73\xf6\xca\xa5\x34\xf0\xbb\xca\xde\xb3\xee\x6d\xf2\x13\xf5\xf7\x90\xaf\xe4\x2f\x09\xaf\xaf\x8d\x91\x2d\xde\x34\x60\xae\xac\x5c\x5e\xd4\x8b\xfa\x27\x00\x00\xff\xff\x5c\xa7\x72\x22\x98\x07\x00\x00" +var _flowtokenCreate_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x4d\x6f\xe3\x36\x10\xbd\xf3\x57\x0c\xf6\xd0\x7a\x03\x47\xee\xe7\xc5\x48\x0b\x18\x9b\xa6\xd8\xcb\x16\x70\x82\xf6\xd8\x1d\x93\x23\x93\x0d\x4d\x0a\xe4\xc8\xaa\x11\xf8\xbf\x17\x24\x65\x5a\x0a\x50\xfb\x64\x8a\x6f\xde\xbc\x37\xf3\xa4\xd5\xdd\x9d\x10\x2f\xda\x44\xe0\x80\x2e\xa2\x64\xe3\x1d\x98\x08\x08\x4c\x87\xce\x22\x13\xb4\x3e\xa4\xe3\xe4\x9e\x35\x32\x48\xdf\x5b\x05\x3b\x82\x3e\x92\x12\xec\x21\x12\x43\xdf\x01\x3a\x40\x29\x7d\xef\x18\xd8\xa7\xe2\x01\x83\x02\x45\x9d\x8f\x86\x49\x01\xfb\x57\x72\x31\xdd\xa1\xf3\xac\x29\x40\x20\x49\xe6\x48\xa1\x11\xe2\x73\x0b\xe8\x4e\xde\x11\x44\x72\x2a\x4e\xc1\xa9\x4f\xf8\x36\xc2\x53\x61\xa4\x00\xdb\xb1\x6e\x29\x58\x53\x3d\xc1\x60\xac\x85\x7f\xfa\xc8\xb5\x39\x6b\x1f\x69\xc2\x95\xe0\x7f\x62\x6f\xb9\x38\xd1\x18\x61\x47\xe4\x44\x72\x80\x31\x5f\x07\x92\xa6\x33\xe4\x18\xd0\x29\xa0\x83\x49\x7f\x80\x8e\xe9\x49\x2e\x32\x4e\x19\x89\x4c\x51\x0c\xda\x48\x9d\xd5\x5d\x1a\x26\x97\xfa\xd2\xb0\x19\x07\x3c\xe0\x69\x09\x26\xf9\x03\xdf\xb6\xf7\x52\xa3\x71\x10\x29\x1c\x8d\x24\x18\xd0\x71\x96\x76\xf0\xce\xb0\x0f\x30\x68\x9f\xd6\x30\x12\x1a\xb7\x17\x57\xf9\x86\x97\x60\x18\x24\x3a\x18\x90\xa5\x2e\xb2\xf2\x55\x24\x82\x41\x53\xa0\x89\x00\x90\x78\x20\x68\x83\x3f\x34\x42\x3c\x33\x75\x23\xb2\x6c\xab\xac\x2a\xc2\x60\x58\x97\x82\xea\x22\xac\x85\xf8\xbe\x81\x17\x4d\xf0\xd4\xbb\xbd\xd9\x59\x82\x97\x8c\x90\xde\x71\x40\x99\xa6\xc0\x14\x5a\x94\x04\x51\xe7\x3c\xa0\x0d\x84\xea\x94\x72\xa1\xa8\xb3\xfe\x44\x0a\xa2\x3f\x50\x16\x25\x7e\x28\x6c\xd8\x75\xd6\x48\x4c\x7c\x3c\xe7\x1b\x59\x26\xd5\x8d\xf8\xb1\x14\x4d\x36\x32\xc6\x6b\x04\x6b\x3c\x12\xe0\xb8\xd0\x14\x56\xce\x79\x2e\xc4\x81\x90\x49\x09\x00\xc8\x8b\x8c\xec\x03\x29\x30\x0e\x0c\xc7\x7c\xc2\x3d\x15\xef\x08\x5d\xbf\xb3\x26\x6a\x52\x35\x4b\xe2\xa7\x06\x1e\xb3\x90\x3c\xcf\xaf\xd9\xfd\x53\xdd\x49\x23\x95\xfc\x7a\x15\x9f\x53\xaa\x4c\xdb\x52\x98\xc8\x14\x3f\x37\x29\xb3\x80\xe0\x68\x80\x4d\x79\xb8\x86\x4f\x59\x59\xa6\xbd\xf8\x71\x3e\x1c\xd0\xda\xd3\x32\xcb\x65\x4d\x0e\x42\xef\x4a\xe7\x62\xe4\xef\xba\x9a\xd2\x7a\xf2\x52\x96\xa2\x3d\x31\x1b\xb7\x87\xd9\x0b\x91\x56\x3f\x6b\x54\x02\xfc\x2e\xe8\x8d\xb8\x5b\x09\x61\x0e\x9d\x0f\x5c\xf7\x5d\xd6\x9d\x09\x3e\xcc\x9e\x7d\xa8\x48\xeb\x87\x19\xea\x72\xae\x88\x77\x43\x2b\xb8\xef\xfe\x7d\xfa\x63\xfb\xd7\x66\xfb\xf8\xf9\xcb\xef\x9b\xc7\xc7\xed\x6f\xcf\xcf\x42\x4c\xec\x2c\x2e\x1f\x85\x35\x6c\x94\x0a\x14\xe3\x47\x78\x13\xd9\x63\x17\xa8\xc3\x40\x0b\x94\x92\xd7\xb0\xe9\x59\x8f\x43\x4d\x08\x18\x7f\x96\x78\x92\x98\x5f\xd2\x60\x46\x54\x65\xfe\x58\xc1\xe9\xd7\xec\x89\x3f\x61\x87\x3b\x63\x0d\x9f\x1e\xbe\x79\x9b\xd9\x6d\x2e\xc3\x3c\xff\xba\x58\xe5\x9c\xc8\x55\x7b\x71\xba\xad\x84\xb3\xf6\xc7\x1c\xc8\x87\xfb\xf7\x03\x68\xca\x2e\xbf\xd0\x50\x3f\x65\x8b\x2a\x75\x7d\x55\x7d\xd5\x97\x9c\x36\x11\x8f\xb4\x78\xb8\xcf\xac\x4b\x60\xbf\x86\xd5\x98\xdf\xab\x92\x4a\x38\x91\x92\x3e\x39\xa9\x7e\xe6\xef\x86\x89\x46\x6a\x92\xaf\xb7\x06\x30\x9d\x73\x95\xd7\x3b\x6b\xdc\xeb\xad\xe1\x5c\xe0\xe7\xb9\xaf\x54\x76\xab\xdb\xac\xd5\xff\xd2\x2f\x67\x30\xc6\xb0\x27\xbe\x39\xa1\x8a\x2f\xc2\xce\xe2\x2c\xfe\x0b\x00\x00\xff\xff\x84\xe0\xd4\x8e\x0d\x07\x00\x00" func flowtokenCreate_forwarderCdcBytes() ([]byte, error) { return bindataRead( @@ -1819,11 +1670,11 @@ func flowtokenCreate_forwarderCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/create_forwarder.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x49, 0xf4, 0x1, 0xf7, 0x6c, 0xc1, 0xed, 0xef, 0xac, 0x27, 0x13, 0x63, 0xf2, 0x10, 0x14, 0x8d, 0xc, 0x52, 0xf7, 0xb6, 0xd, 0x42, 0xcd, 0xec, 0x23, 0xa6, 0xc6, 0x82, 0xec, 0xcf, 0x34, 0xd1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x62, 0x9a, 0x56, 0x99, 0xaf, 0x95, 0xe9, 0xb7, 0xa1, 0x62, 0xc8, 0xe2, 0xe2, 0x4, 0xda, 0x6, 0x2c, 0x61, 0xe8, 0x9d, 0x89, 0x85, 0xf0, 0x6f, 0x3a, 0xd7, 0x36, 0xc4, 0xb5, 0x4d, 0xb1}} return a, nil } -var _flowtokenMint_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x4f\x6f\xdb\x30\x0c\xc5\xef\xfe\x14\x44\x0e\x85\x03\xac\xf6\x65\xd8\xc1\x48\x5b\x64\x87\xde\xb6\xc3\xd6\xf6\x4e\xcb\x8c\x43\x4c\x96\x0c\x8a\x6e\x3a\x04\xfd\xee\x83\xe4\x3f\x49\xba\x65\xbe\x18\x90\x1e\x7f\x7c\x8f\x14\x77\xbd\x17\x85\xd5\xe3\xe0\x5a\xae\x2d\x3d\xf9\x5f\xe4\x56\xd9\x72\x6c\xfd\x61\x3a\xca\xca\xb2\x84\xa7\x3d\x07\x50\x41\x17\xd0\x28\x7b\x07\x1d\x3b\x0d\xa0\x51\x12\x60\x08\xec\x5a\xd0\x3d\x01\x1a\xe3\x07\xa7\xa0\x7b\x54\x08\xea\x85\x42\x3a\x8f\x3c\x48\x40\xd8\x36\x1d\x3b\x10\x0a\x7e\x10\x43\x27\x3a\x8f\xca\x40\xf2\xca\x66\x21\x65\xd9\x59\xd7\x5c\xc8\x70\xcf\xe4\xb4\x82\x6d\xd3\x08\x85\xf0\x09\xb0\x8b\xba\x0a\x9e\x1f\xf9\xed\xcb\xe7\x35\x1c\xb3\x0c\x00\xc0\x92\x8e\xf6\x52\xbf\x0a\x6e\x96\x48\x45\x3a\xe1\xa0\x82\xea\xe5\x52\xfc\x83\x0c\xf1\x2b\x49\x05\x37\xc7\x8b\xd1\x14\xf3\xcd\xfb\x88\xef\x85\x7a\x14\xca\x03\xb7\x2e\xca\x71\xd0\x7d\xfe\xd5\x8b\xf8\xc3\x0b\xda\x81\xd6\x70\xb3\x1d\x13\x2c\x8e\xe2\x17\xc8\xee\x8a\x93\x2d\xb8\x83\x11\x50\xc4\x59\x61\x4b\x8b\x30\x7e\x45\x9d\x78\x9b\x6b\xd6\xef\xf3\x9d\xf8\xae\x82\x72\x2a\x2e\x77\xb3\x2e\xc9\xd6\x17\xb0\x87\x07\xe8\xd1\xb1\xc9\x57\x3f\x53\xc7\x38\x6f\xe7\x35\xcd\x3c\x19\x02\x8c\x45\xab\xf5\xbf\xcc\xce\xe1\xe1\x0e\x5a\xd2\x29\xd8\x69\x1b\x97\x9d\x0a\x83\x3d\xd6\x6c\x59\x99\xc2\x92\xe1\xda\x38\xef\xf3\xb2\x1f\x6a\xcb\xe6\xe4\x7e\xbe\xbb\x16\xe0\xd9\x61\x6d\xa3\x6b\x18\xe1\x20\xb3\x3d\xa1\x1d\x09\x39\x43\xab\xb1\x76\x5a\x16\xbd\x91\x19\x94\xe0\xb8\x00\xe3\xc2\xe3\x13\x26\x81\xcd\xed\xc7\xad\x14\x46\x08\x95\xbe\xd3\xe1\x5b\x92\xe4\x68\xad\x3f\x50\xb3\x9d\x5e\xda\xf8\xe2\xd6\x7f\xc3\x9a\x17\x1c\xac\x46\xe2\xc8\x2e\xe2\x2f\x45\x0a\x39\x7e\x28\xfe\xcf\x94\x8b\x86\x7a\x1f\x58\xa7\xf5\x6e\x6e\xcf\xe0\x67\x85\x0d\x05\x15\xff\x7b\xea\x35\xe5\x7d\xff\x13\x00\x00\xff\xff\x16\x70\x6d\xf2\xd9\x03\x00\x00" +var _flowtokenMint_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\x4d\x6f\x9c\x3c\x10\xbe\xf3\x2b\x46\x1c\x22\x90\xde\xc0\xe5\x55\x0f\x68\x93\x08\x55\xca\xad\x3d\xb4\x49\xef\xc6\xcc\xb2\xa3\x1a\x1b\x8d\x87\x6c\xa2\x55\xfe\x7b\x65\x0c\xec\x92\x66\xeb\xcb\x6a\xcd\x33\xcf\xd7\x98\xfa\xc1\xb1\xc0\xe3\x68\x3b\x6a\x0c\x3e\xb9\xdf\x68\x61\xcf\xae\x87\x74\x73\x97\x26\x0b\xd2\xb8\xe3\x06\xb5\xfc\x4f\x93\xa4\x2c\x4b\x78\x3a\x90\x07\x61\x65\xbd\xd2\x42\xce\x42\x4f\x56\x3c\x48\x80\x78\x18\x3d\xd9\x0e\xe4\x80\xa0\xb4\x76\xa3\x15\x90\x83\x12\xf0\xe2\x18\xfd\x74\x1f\xf8\x20\x0a\xd4\x6d\x4f\x16\x18\xbd\x1b\x59\xe3\x99\x9d\x22\xd2\x23\xbf\x90\x5e\x99\x92\xe4\x42\x35\x63\xd4\x34\x10\x5a\xa9\xa0\x6e\x5b\x46\xef\xff\x03\xd5\x07\x5c\x05\xcf\x8f\xf4\xfa\xe5\xff\x1c\x4e\x49\x02\x00\x60\x50\xa2\xbd\x49\xaf\x82\x9b\x35\x52\x31\xdd\x90\x17\x56\xe2\x78\x0b\xfe\x81\x1a\xe9\x05\xb9\x82\x9b\xd3\xa6\xa9\x62\xf9\xf2\x1e\xe9\x07\xc6\x41\x31\x66\x9e\x3a\x1b\xe0\xf5\x28\x87\x3a\x5a\x5e\x2d\x84\xe3\xd1\xec\x8b\xb3\x0f\xb8\x83\x38\xb1\x02\xc2\x29\x1a\xc7\xec\x8e\xbb\x6b\x1e\xef\xb3\xb0\x95\x0a\xca\xd0\xa8\xea\xb0\xdc\x2f\xb8\x09\x96\x6f\xc8\x1e\x1e\x60\x50\x96\x74\x96\xfe\x9c\x94\x42\xb1\xd6\xc9\x54\xee\x64\x04\x54\x18\x4a\xf3\xcf\x4c\x2e\x29\xe1\x0e\x3a\x94\x39\xd0\xb9\xf6\xad\x52\xd1\xa1\x7c\x55\x83\x6a\xc8\x90\xbc\x65\xe5\x30\x36\x86\xf4\xd9\xdc\x42\x96\x7f\x1e\xf6\x5a\xc1\xf7\xd9\xb5\x40\xcf\x56\x35\x26\xa4\x80\xc8\x01\xbc\xd8\x65\xdc\x23\xa3\xd5\x98\xc6\xd9\x79\x4b\xf8\x8a\x7a\x14\x84\xd3\x4a\x18\x36\x1d\xde\x2e\x32\xec\x6e\x3f\x6e\xa7\xd0\x8c\x4a\xf0\x3b\x1e\xbf\x4d\x90\x4c\x19\xe3\x8e\xd8\xd6\xf3\x13\x8b\x4f\x2d\xff\x9b\xac\xfd\xa5\x46\x23\x81\x31\x72\x17\xe1\x67\x8a\xe5\x33\xf5\x61\xf8\x1f\xad\x17\x2d\x0e\xce\x93\xcc\xeb\xde\xdd\x5e\x90\x5f\x0c\xb6\xe8\x85\xdd\xdb\xac\x35\xe7\x7d\xff\x13\x00\x00\xff\xff\xbd\x70\xe8\x8d\xf4\x03\x00\x00" func flowtokenMint_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1839,11 +1690,11 @@ func flowtokenMint_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/mint_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xae, 0x30, 0x7d, 0x2c, 0x8d, 0x1f, 0x73, 0x3, 0x9d, 0x1e, 0xd3, 0x49, 0xfc, 0x7c, 0x58, 0x2c, 0xa9, 0xaa, 0xf8, 0x47, 0x77, 0x34, 0x19, 0x92, 0x27, 0x2f, 0xc0, 0xf1, 0x59, 0x66, 0xa2, 0x5c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0xb4, 0xab, 0xe0, 0x1f, 0xf7, 0x4b, 0x2f, 0xa2, 0xc4, 0xbe, 0x81, 0x22, 0x80, 0x5e, 0xb2, 0x17, 0x19, 0xee, 0xb7, 0x86, 0x19, 0x1b, 0xfa, 0x12, 0x20, 0x9d, 0xe7, 0x0, 0x31, 0xed, 0xf8}} return a, nil } -var _flowtokenScriptsGet_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\xcb\x4a\xc3\x40\x14\x86\xf7\xf3\x14\x3f\x59\x68\xb2\x49\x36\xe2\xa2\xa8\xa5\x0a\x79\x00\xa9\xee\x4f\x26\x67\xda\x83\xd3\x99\x30\x17\x2b\x94\xbe\xbb\xe4\x66\x71\x56\xc3\xf9\x2f\x7c\xfc\x4d\x83\xfd\x51\x22\xa2\x0e\x32\x24\x04\xa6\x3e\x22\x1d\x19\x1d\x59\x72\x9a\x61\x84\x6d\x0f\x6f\x40\x0e\xa4\xb5\xcf\x2e\xdd\x47\xb4\xd6\x9f\xf7\xfe\x8b\x1d\x5e\x67\x9f\x52\x72\x1a\x7c\x48\x28\xda\xec\x0e\xd2\x59\x9e\xe4\xe2\x76\x5e\x13\x85\x52\xa4\x35\xc7\x58\x92\xb5\x15\x4c\x76\x38\x91\xb8\x72\x29\xdf\x60\xd7\xf7\x81\x63\xac\x36\xf8\x68\xe5\xe7\xf1\x01\x17\xa5\x00\xc0\x72\xc2\x37\x65\x9b\xde\xd9\xe0\x19\x07\x4e\xbb\x39\xb2\x46\xab\xc9\x36\xbe\x5a\xd3\x40\x9d\x58\x49\xc2\xb1\xee\x7c\x08\xfe\xfc\x74\x77\xf9\x87\x56\x2f\xe4\xd7\x97\xb2\x19\x72\x67\x45\x37\x66\x65\x5c\xa4\x5b\xe1\x76\x8b\x81\x9c\xe8\xb2\x78\xf3\xd9\xf6\x70\x3e\x61\xae\x5d\x07\x40\x60\xc3\x81\xc7\x5f\xf2\xd3\x82\x9f\x23\x6b\x51\xcd\xf0\x81\x53\x0e\xee\x8f\xbf\x5e\xe6\x55\x57\xf5\x1b\x00\x00\xff\xff\x48\x8f\x86\x9f\x82\x01\x00\x00" +var _flowtokenScriptsGet_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\xcd\x4e\xc3\x30\x10\x84\xef\x7e\x8a\x51\x0e\x90\x5c\x92\x0b\xe2\x50\x01\x55\xa9\xd4\x07\x40\x85\xfb\xc6\x59\xb7\x16\xae\x1d\xd9\x6b\x0a\xaa\xfa\xee\xa8\xcd\x0f\xd4\x27\xff\xcc\x37\xbb\xb3\x6e\x1a\x6c\xf7\x36\x21\xe9\x68\x7b\x41\x64\xea\x12\x64\xcf\x68\xc9\x91\xd7\x0c\x63\xd9\x75\x08\x06\xe4\x41\x5a\x87\xec\xe5\x3e\x61\xe3\xc2\x71\x1b\x3e\xd9\xe3\x75\xd0\x29\x65\x0f\x7d\x88\x82\x4d\xf6\x3b\xdb\x3a\x1e\x5e\x4d\x0c\x07\x14\x37\x77\xc5\xac\x9c\x3d\x46\xd5\x74\x2e\x94\x22\xad\x39\xa5\x92\x9c\xab\x60\xb2\xc7\x81\xac\x2f\xc7\xf2\x0b\xac\xba\x2e\x72\x4a\xd5\x02\xef\x1b\xfb\xfd\xf8\x80\x93\x52\x00\xe0\x58\xf0\x45\xd9\xc9\x1b\x1b\x3c\x63\xc7\xb2\x1a\x90\x09\xad\xae\xb2\xcb\xaa\x77\x2c\x6b\xea\xa9\xb5\xce\xca\x4f\xd9\xf4\xb9\x75\x56\x37\x66\xea\x61\x8c\xf5\x0f\x68\x43\x8c\xe1\xf8\x74\x37\xb7\x59\x7f\x5c\x4a\x9d\x6e\xc2\xd5\x23\x77\x7e\x29\xff\xd0\xe5\x12\x3d\x79\xab\xcb\x62\x1d\xb2\xeb\xe0\x83\x60\x70\x9b\xa6\x87\xc8\x86\x23\x5f\x76\x12\xae\xe3\xbf\x7a\x17\xd5\x90\x2b\xb2\xe4\xe8\xe7\x68\xf5\xf8\x37\xea\xac\x7e\x03\x00\x00\xff\xff\x56\x32\x0c\x91\xbf\x01\x00\x00" func flowtokenScriptsGet_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -1859,11 +1710,11 @@ func flowtokenScriptsGet_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/scripts/get_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9a, 0xbc, 0xea, 0xcb, 0x58, 0x77, 0x12, 0x12, 0x12, 0xc6, 0x42, 0x20, 0xd5, 0x46, 0x4e, 0x16, 0x44, 0x5e, 0x74, 0x36, 0x66, 0x52, 0xe, 0xa1, 0x2f, 0x3f, 0x8b, 0x5, 0x37, 0xec, 0xe8, 0x64}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0xb8, 0x2d, 0x30, 0x53, 0xb2, 0x1c, 0x7, 0xe3, 0xeb, 0x6b, 0xc6, 0xad, 0x52, 0x28, 0xaa, 0x96, 0xb2, 0xce, 0x9f, 0x1e, 0x1b, 0x24, 0x80, 0x9f, 0xe9, 0x39, 0xe7, 0x1d, 0xc2, 0x44, 0x69}} return a, nil } -var _flowtokenScriptsGet_supplyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xce\x3d\xca\xc3\x30\x0c\xc6\xf1\x5d\xa7\x78\xc8\x94\x2c\xaf\x97\x97\x0e\x85\xae\xb9\x40\xd3\x03\x18\xc7\x21\xa6\x8a\x6d\x24\x85\xb6\x94\xde\xbd\x90\x7e\xad\xd2\x0f\xfe\x8f\x73\x18\xe6\xa4\xd0\x20\xa9\x1a\x24\xfa\x51\x61\x73\x84\x15\xf3\x0c\x5d\x6b\xe5\x1b\xa6\x14\x79\x24\xe7\x50\xa6\xed\xd9\x73\xb9\x0c\xe5\x1c\x33\x74\xf1\x62\x08\x25\x9b\xf8\x60\x44\x69\xa9\x45\x0c\xcd\x57\x34\x44\x3e\x84\xa8\xda\x7a\xe6\x0e\xd3\x9a\xb1\xf8\x94\xdb\x6e\x8f\x53\x9f\xae\xbb\x7f\xdc\x89\x00\x80\xa3\x7d\x72\x87\x5f\xe0\x6f\xdb\x71\xdc\xee\x2f\x27\xd1\x56\xc9\x6f\x4a\x8f\x67\x00\x00\x00\xff\xff\x9c\x6f\xa6\xf1\xc1\x00\x00\x00" +var _flowtokenScriptsGet_supplyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8e\x3d\x8a\xc3\x30\x14\x84\xfb\x77\x8a\xc1\x95\xdd\xac\x9a\x65\x8b\x85\xb4\xbe\x40\x9c\x03\x08\x59\xc2\x22\xfa\xe3\xbd\x67\x92\x10\x72\xf7\x80\xf3\x5b\xce\xcc\xc7\xcc\x18\x83\x69\x89\x02\x71\x1c\x9b\x82\xbd\x9d\x05\xba\x78\x68\x55\x9b\x20\x6b\x6b\xe9\x82\x10\x7d\x9a\xc9\x18\xd4\xb0\x85\x63\xaa\xa7\xa9\x1e\x7d\x81\x64\xcb\x0a\x57\x8b\xb2\x75\x4a\x14\x73\xab\xac\x5f\x40\xe0\x9a\xd1\xbd\x75\x47\x64\x9d\xf3\x22\xbd\x4d\x69\x40\x58\x0b\xb2\x8d\xa5\x1f\xfe\x71\x18\xe3\xf9\xef\x17\x57\x22\x00\x48\x5e\x5f\xeb\xbb\x4f\xdd\xcf\x76\x6b\xbf\xf9\x0f\x8e\xbd\xae\x5c\x9e\x28\xdd\xee\x01\x00\x00\xff\xff\x93\xe0\xcd\xc5\xd0\x00\x00\x00" func flowtokenScriptsGet_supplyCdcBytes() ([]byte, error) { return bindataRead( @@ -1879,11 +1730,11 @@ func flowtokenScriptsGet_supplyCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/scripts/get_supply.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe0, 0xb8, 0x7e, 0x53, 0x6a, 0xa6, 0x88, 0x9e, 0xf8, 0x4c, 0x7f, 0xdb, 0xe9, 0xcb, 0xbe, 0x56, 0xf9, 0xb7, 0xde, 0x1b, 0x55, 0x9b, 0x64, 0x76, 0xa2, 0x6a, 0x75, 0x28, 0x57, 0x23, 0xdd, 0xdf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4f, 0x7c, 0x11, 0x45, 0x40, 0xad, 0x8d, 0x3d, 0x20, 0x6, 0x5b, 0x4d, 0x33, 0xbd, 0x92, 0x38, 0xcd, 0x91, 0x1f, 0x33, 0x5d, 0xa2, 0x8c, 0xf9, 0x8e, 0xd7, 0xdf, 0x52, 0x6d, 0xc0, 0x4e, 0x90}} return a, nil } -var _flowtokenSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x51\xcd\x8e\x1a\x3d\x10\xbc\xcf\x53\x94\x38\xac\x40\xda\x8f\xb9\xa3\xe5\x93\x92\x55\xf2\x00\xc9\x2a\xf7\xc6\xf4\x30\xad\x18\xdb\xb2\xdb\x10\xb4\xda\x77\x8f\x3c\x3f\x4c\x60\x21\xca\x21\x97\xf8\x30\x1a\x77\x97\xab\xab\xab\xaa\xba\xc6\x4b\x2b\x09\x1a\xc9\x25\x32\x2a\xde\x41\x12\x08\xca\xfb\x60\x49\x19\x8d\x8f\xe5\x3a\xf5\xcb\x1b\xf5\xa0\xed\x16\x84\x6f\x94\xad\x22\x72\xf2\x39\x1a\x2e\x75\x6d\x59\x22\xc8\x18\x9f\x9d\x16\x6c\x2a\x35\xd2\xd2\x38\xc1\x90\x43\x4e\x5c\x2e\x68\xac\x3f\xbe\xf8\xef\xec\xaa\x4a\xf6\xc1\x47\xc5\xec\x73\x76\x3b\xd9\x58\xee\xca\xb3\xa9\x3c\x22\x67\x55\xf5\xab\xd2\xd7\xaa\x02\x80\x10\x39\x50\xe4\x79\x92\x9d\xe3\xb8\x02\x65\x6d\xe7\x5f\xd5\x47\xda\xf1\x02\x0f\x1f\x7a\x2d\x8b\x11\x5e\x8e\x34\xe8\xd1\xcb\xd4\xe3\x96\x1b\x1f\xa3\x3f\x3e\x3d\x9c\x67\x2d\xbb\xdd\xfe\x9f\x37\xd1\xef\x57\xa8\x07\x5c\x7d\x56\xdd\xb5\x17\x58\xaf\xe1\xc4\xe2\xf5\x4c\x5d\x4e\x5d\xe3\x39\x72\xb1\x8f\xe0\xf8\x38\xad\x3a\x18\x46\x6e\x8b\x90\x15\xa2\x10\x87\x81\xfa\x82\xe1\x4a\x5d\xa2\x03\xcf\x9f\xfe\x9b\xc4\x99\x8e\xfe\xd3\x3e\xe8\xa9\xa3\x9c\x2f\x1e\xa1\xfe\xbe\xce\xea\xae\xbe\x90\x37\x56\x0c\x0c\x05\xda\x88\x15\x3d\x0d\x29\x0e\x52\xbb\xec\xbc\xb3\x27\xf0\x8f\xe0\x13\xa7\x6b\xa2\x02\xdd\x72\xf0\x49\x14\x4d\x76\x7d\x32\xda\x46\x9f\x77\x6d\xd7\xfc\xc2\x86\xe5\xc0\x11\xe2\x94\x63\x43\xe6\x72\x53\xcb\x8a\x43\x19\xf5\x4c\x01\xeb\x71\xf1\xb3\x1c\xe1\x74\x76\x41\x52\xca\x7c\x23\xa2\x0b\xbe\x4e\xd6\x6d\x17\x2e\x70\x57\x96\xdc\x9a\xdb\x59\x93\xda\xf7\xfc\xa3\xde\xc7\x77\x1d\xd2\x15\xea\xde\xd2\x69\xf8\xe8\xc0\xef\xe6\xff\xed\x48\x36\x64\xc9\x19\x46\x23\x6c\xb7\x17\x79\x7c\x1c\x3a\xf7\xe3\x18\xde\xfe\x43\x81\x4c\x8a\xff\x30\x92\xc1\x84\x2b\x01\xe3\xdf\x5b\xd5\x7f\xdf\x2a\xfc\x0c\x00\x00\xff\xff\xa8\x53\xf8\x02\x23\x05\x00\x00" +var _flowtokenSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xdd\x6a\xdc\x3c\x14\xbc\xd7\x53\x0c\x7b\xf1\xe1\x85\x7c\xeb\xfb\x90\x04\xd2\xd2\x3e\x40\x09\xbd\x3f\x96\x8f\x6d\x11\xad\x24\xa4\xa3\x6c\x97\x65\xdf\xbd\xc8\x3f\xbb\x75\xd3\x85\x42\xa8\x2e\x8c\x75\x66\x34\x9e\x19\x59\xd5\x35\x5e\x06\x93\x20\x91\x5c\x22\x2d\xc6\x3b\x98\x04\x82\xf0\x3e\x58\x12\x46\xe7\x63\xd9\x5e\xf1\x72\x46\x3c\xa8\x6d\x41\xf8\x4e\xd9\x0a\x22\x27\x9f\xa3\xe6\x32\x97\x81\x4d\x04\x69\xed\xb3\x93\xc2\x4d\x65\x46\x52\x80\x23\x34\x39\xe4\xc4\x65\x83\xce\xfa\xc3\x8b\x7f\x65\xa7\x94\xd9\x07\x1f\x05\x5f\xb3\xeb\x4d\x63\x79\x9c\xa2\x8b\x7e\x8f\xcd\x6a\xb6\xb9\x30\x97\xb3\x0b\x6b\xd9\x6f\x94\xfa\x35\xcb\x49\x29\x00\x08\x91\x03\x45\xae\x92\xe9\x1d\xc7\x7b\x3c\x67\x19\x9e\x27\x8b\xdb\x85\x53\x96\xe9\x30\x51\x76\x8d\x8f\xd1\x1f\x1e\xfe\xbb\x08\xef\xc6\xa8\x4f\x55\xf9\xde\x3d\xea\x24\x3e\x52\xcf\xf5\x25\xc4\x08\x6f\xf1\xf8\x08\x67\x2c\x4e\x17\xc9\xb2\xea\x1a\x9f\x23\x97\x36\x09\x8e\x0f\xd7\xe4\x73\x7f\xe4\x5a\x84\x2c\x30\x02\xe3\x30\x4b\xaf\x14\x66\x57\x89\xde\xb8\x7a\xf8\xff\x6a\x4a\x8f\xb2\x5f\xf6\x41\x8e\xa3\x54\xb5\xbd\x83\xf8\xdb\xfe\xd4\x4d\x5f\x21\x37\xd6\x68\x68\x0a\xd4\x18\x6b\xe4\x38\x5f\xe6\x6c\x71\xbc\x42\xef\xec\x11\xfc\x23\xf8\xc4\xe9\x77\xa1\x42\x6d\x39\xf8\x64\x04\x5d\x76\x53\xfd\x32\x44\x9f\xfb\x61\x04\xbf\xb1\x66\xf3\xc6\x11\xc6\x09\xc7\x8e\xf4\x1f\x13\x5a\xe3\x5e\xdf\xb5\x7e\x5a\xfd\x04\xbb\x45\xe9\xfc\x54\xad\x24\x46\x27\x53\x8e\x6b\xee\x85\x7c\xf7\x8e\x2a\x14\x7b\x96\x9b\x5d\xad\xf8\xff\xb8\xb8\x86\x2c\x39\xcd\xe8\x0c\xdb\x76\xd5\xda\xa7\x19\xf9\x70\x69\xb3\xd0\x5f\x75\x36\x73\x3f\x5a\xd9\xf2\x76\x56\xd3\xf3\xac\xf0\x33\x00\x00\xff\xff\x47\x64\xa2\x4a\x71\x04\x00\x00" func flowtokenSetup_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -1899,11 +1750,11 @@ func flowtokenSetup_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/setup_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfe, 0xd7, 0xd6, 0x81, 0xa, 0x4, 0xaf, 0x8b, 0x60, 0x89, 0x3f, 0x64, 0x9c, 0x88, 0x2d, 0x7c, 0xb5, 0x22, 0xe3, 0x65, 0x6e, 0x54, 0xf7, 0x63, 0x4f, 0x8e, 0x4e, 0x18, 0xf2, 0x79, 0x6e, 0x3f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x61, 0x3c, 0xd0, 0xd0, 0x1e, 0x5, 0x7e, 0xb1, 0xd5, 0xf1, 0x86, 0x97, 0x83, 0xbf, 0xc, 0xb0, 0xb1, 0x71, 0x7, 0x71, 0x34, 0x7a, 0x1c, 0xa6, 0x75, 0xdd, 0xef, 0x71, 0x2f, 0xb2, 0x18, 0xe9}} return a, nil } -var _flowtokenTransfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x4f\xdb\x40\x10\x3d\xe3\x5f\xf1\x9a\x03\xd8\x52\xb1\x2f\x55\x0f\x11\x85\xd2\x56\xf4\x8e\x28\x3d\xaf\xed\x71\xbc\xaa\xb3\x6b\xcd\x8e\x09\x08\xf1\xdf\xab\x5d\xef\x9a\x24\x48\xa5\xb9\x44\x9e\x8f\x37\x6f\xde\x9b\xad\x2a\xdc\xf5\xda\x41\x58\x19\xa7\x1a\xd1\xd6\x40\x3b\x28\x08\x6d\xc7\x41\x09\xa1\xb3\xec\x3f\xf7\xf2\xd2\x2b\xc9\xaa\x0a\x8d\x9d\x86\x16\x35\x61\x72\xd4\xa2\x7e\x82\x32\x4f\xd6\x10\xc4\xc2\x91\x69\x21\xf6\x0f\x19\xe7\x3f\x95\xb1\xd2\x13\x43\x35\x8d\x9d\x4c\x68\xf6\x20\xe8\x95\x43\x4d\x64\xe0\x48\x30\x8d\xbe\x94\xa9\x21\xfd\x40\xb1\xb9\xcc\xaa\x2a\x0b\x1c\x09\x3b\x2d\x7d\xcb\x6a\x07\xb5\xf5\x20\x50\x7e\x44\x4f\x09\x14\x1d\xdb\x2d\x36\x24\xd7\xaf\x43\x76\x89\xa1\xaf\x1b\x15\xab\x2d\x09\x71\xa0\xe4\x23\x7b\x4b\x65\x99\xde\x8e\x96\x05\xab\x9b\xc9\x6c\x74\x3d\xd0\x9d\x27\xb0\x7a\x0d\x0f\x76\x17\x43\xd9\x5e\x5f\x3e\x93\x59\xe3\xd7\x8d\x7e\xfc\xfc\xe9\x23\xc4\xae\x71\xdd\xb6\x4c\xce\x15\x78\xce\x32\x00\x88\x0b\xdc\xab\x69\x10\x30\x39\x3b\x71\x43\x51\x01\x3b\xb4\x6e\x26\x13\xd5\xf2\x51\xc5\x84\x9a\xb4\xd9\xcc\x14\x3b\x62\xa6\x36\x40\x0d\x24\x5e\x5c\x09\x58\x6b\x7c\x7d\x3e\xa0\x5b\x86\xf0\xcb\x3c\x75\x64\x1a\x15\x53\xee\xf4\xc6\x10\xaf\xa1\x26\xe9\xf3\x6f\x96\xd9\xee\xee\xd5\x30\x51\x81\xd3\x28\xd5\x42\x34\x92\xfd\x49\x02\x05\xa6\x8e\x98\x4c\x43\x49\xae\x19\xe8\xcc\xc1\x89\x65\x6a\xf1\xe0\x87\x2d\x7d\x9e\x59\x88\xdc\x52\x87\x2f\xb1\xb8\xf4\xa5\x6a\x43\x65\x1d\xe6\x5e\x04\x0e\x87\x94\x7f\x47\x5b\x0b\x9c\x2e\x1a\xcf\x7b\x5c\xe6\xde\xd2\x35\xaa\x08\x52\x75\x29\x1f\xd2\x45\x76\x72\x72\x72\x75\x85\x51\x19\xdd\xe4\xab\xef\xc1\x6b\x63\x05\xf3\xac\xb7\xfc\xed\x6e\xa6\x1f\xba\x3f\xac\x8a\x83\x9d\x13\x8d\xe4\x43\xb8\xa6\xf7\xb7\x76\x34\x74\xe5\x62\x08\x2e\xce\x17\x0d\xca\x74\xaf\xcb\x89\xcc\xff\x45\xe8\x8d\x1e\xd1\x23\x35\x93\xd0\xff\xe9\xcf\xd4\xe8\x51\x93\x91\x33\x87\xdb\xf9\x99\xf0\x81\xfc\xf1\xed\xf0\xec\xc0\xde\x5b\xc8\xc5\x16\x4b\xa5\xff\x95\x8d\x1a\x55\xad\x07\x2d\x9a\x5c\x32\xe7\xf4\xe8\x98\xd2\x8c\x97\xcb\xbc\x1a\xa7\x7a\xd0\xcd\xab\x03\x29\xf7\xbe\x09\x73\xdd\xbf\xb7\x09\xe2\x1d\x19\xf2\x83\x46\xeb\xb4\x84\xda\x24\xa5\x49\xee\x68\xf3\x06\x83\x8f\x15\xd9\x53\xa3\x6c\x67\xb0\x78\x50\x17\xe7\x87\xb6\x25\x4b\x5e\xb2\xbf\x01\x00\x00\xff\xff\x81\x5c\x06\xdb\x0f\x05\x00\x00" +var _flowtokenTransfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x41\x4f\xdc\x3c\x10\x3d\x93\x5f\x31\xdf\x1e\x20\x2b\x7d\x24\x97\xaa\x87\x15\x85\x22\x2a\x7a\x47\xb4\x3d\x3b\xc9\xcb\xc6\x6a\xd6\x8e\xc6\x13\x02\x42\xfc\xf7\xca\x76\x1c\x36\x20\x95\xee\x65\x95\xf1\x9b\x37\x6f\xde\xb3\xcb\x92\xee\x3b\xed\x48\x58\x19\xa7\x6a\xd1\xd6\x90\x76\xa4\x48\x70\x18\x7a\x25\xa0\xd6\xb2\xff\x3c\x3a\x97\x4e\x49\x56\x96\x54\xdb\xb1\x6f\xa8\x02\x8d\x0e\x0d\x55\x4f\xa4\xcc\x93\x35\x20\xb1\xe4\x60\x1a\x12\xfb\x1b\xc6\xf9\x4f\x65\xac\x74\x60\x52\x75\x6d\x47\x13\x9a\x3d\x09\x75\xca\x51\x05\x18\x72\x10\x1a\x07\x0f\x65\xd4\xd0\x0f\x98\x9b\x8b\xac\x2c\xb3\xa0\x11\x34\x69\xe9\x1a\x56\x13\xa9\x83\x27\x21\xe5\x47\x74\x48\xa4\xd4\xb2\x3d\xd0\x1e\x72\xfd\x3a\x64\x4a\x0a\x3d\x6e\x50\xac\x0e\x10\x70\x90\xe4\x2b\x47\x4b\x65\x99\x3e\x0c\x96\x85\x6e\x47\xb3\xd7\x55\x8f\x7b\x3f\x3f\x72\x6e\x56\xb5\xcd\x82\xec\xed\xb4\x42\xa5\xef\x4d\x96\x1d\x31\xe7\x51\xee\x8e\x7e\xdc\xea\xc7\xcf\x9f\xfe\x27\xb1\x3b\xba\x6e\x1a\x86\x73\x5b\x7a\xce\x32\x22\xa2\x79\xc5\x9f\x6a\xec\x85\x18\xce\x8e\x5c\x63\xf6\xc8\xf6\x8d\x8b\x72\x67\x3f\x7d\x55\x31\xa8\x82\x36\xfb\xb8\x44\x0b\x66\x34\x81\xaa\x87\x78\xfb\x25\x70\xed\xe8\xeb\x4a\x7c\x11\xaa\x71\xe6\xc0\x18\x14\x23\x77\x7a\x6f\xc0\x3b\xba\x1e\xa5\x9b\xbd\x5b\x74\xcd\xda\xbe\x43\x48\x11\xa3\x05\xc3\xd4\x48\xfe\xc5\xce\x33\x47\x4e\x2c\xa3\xa1\x87\x40\x9e\xfa\xbc\x90\x50\xb9\x43\x4b\x5f\x66\x70\x51\x59\x66\x3b\x5d\xa8\x51\xba\x7c\x2d\xed\xd7\x9c\xaf\xaa\x7a\x6c\xe9\x74\xb1\x33\x6a\xbe\xcc\xbd\xcb\x3b\x2a\xfd\x2c\xb5\x47\xd9\xa6\xf3\x70\xbc\xcd\x4e\x4e\x4e\xae\xae\x68\x50\x46\xd7\xf9\xe6\x26\x04\x6f\xac\x50\x9c\xf7\x5e\xbb\x9d\xa2\xf4\xd0\xfd\xdf\x66\xbb\xda\x37\x49\x49\x96\x87\x80\x3f\xde\xd8\xa1\x6f\x8b\xc5\x7b\xba\x38\x5f\xf6\x2f\xd2\xe5\x5d\x6e\x43\xfc\xdf\x86\xde\x97\x38\x1c\x8f\xa8\x47\xc1\xbf\x79\xcf\xa8\xf5\xa0\x61\xe4\xcc\xd1\x5d\x7c\x33\xbc\xb2\x7e\x7e\x48\x1c\xdd\x3f\x7a\x18\xb9\xd8\xed\x82\xf4\xbf\x62\x0f\xb9\x51\x83\xaa\x74\xaf\xe5\x29\x2f\x87\xb1\xea\x75\xfd\x6a\x70\xa2\x7f\xd3\x35\x27\x79\xfa\xbc\x8e\x31\xa1\x5f\x2e\xf3\x8f\x43\x89\xd0\xbf\x6f\x17\xcc\x7c\x13\xd0\x37\x0c\xd6\x69\x09\xd8\x64\xad\x49\x69\x69\xf3\x8e\x83\xdf\x3a\x74\xe4\x4e\xd1\x44\xb2\xf9\x82\x5d\x9c\xaf\x63\x4c\x11\xbd\x64\x7f\x02\x00\x00\xff\xff\x86\x4e\x2d\xbe\x2c\x05\x00\x00" func flowtokenTransfer_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1919,11 +1770,11 @@ func flowtokenTransfer_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/transfer_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdf, 0x32, 0x26, 0xc1, 0x7, 0x88, 0xcd, 0xa2, 0x71, 0x8, 0xa5, 0xd0, 0x57, 0xcd, 0x4e, 0xd3, 0x50, 0xfe, 0xe6, 0xcb, 0x5e, 0xf3, 0xfa, 0x8f, 0x38, 0x45, 0x75, 0xa7, 0x5e, 0x5f, 0x9f, 0xf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0x56, 0x9b, 0xf5, 0xbf, 0x19, 0xb0, 0x44, 0x9, 0x5e, 0x7b, 0x5e, 0xb4, 0x63, 0x53, 0x5c, 0x76, 0xae, 0x4b, 0x4c, 0x2a, 0x7f, 0xd0, 0x16, 0xab, 0xf, 0x16, 0xc5, 0x7a, 0x1e, 0xd9, 0xde}} return a, nil } -var _idtablestakingAdminAdd_approved_and_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x4d\x6f\xe3\x36\x10\x3d\x4b\xbf\x62\xd6\x87\xad\x8c\x16\x32\xf6\x6a\xd4\x5d\xa4\x35\x0a\x08\x08\x16\xc5\x7a\xd1\x4b\x90\x03\x4d\x8e\x2c\xb6\x34\x47\x20\x47\x51\x82\xc0\xff\xbd\x18\x4a\xf2\x47\xa2\xa0\xbc\x18\x30\xdf\xbc\x79\x7c\xf3\x46\xf6\xd8\x52\x60\xf8\xd3\x51\x5f\x6d\x7f\xa8\xbd\xc3\x1d\xab\x7f\xad\x3f\x40\x1d\xe8\x08\x8b\xf7\x17\x8b\x3c\x5f\xad\x56\xf0\xa3\xb1\x11\x38\x28\x1f\x95\x66\x4b\x1e\x94\x31\x11\x3c\x19\x84\x6a\x1b\x81\x09\xb8\x41\x70\x36\x32\x50\x0d\xaa\x6d\x03\x3d\xa1\x49\x80\x08\xd6\x27\x0e\x41\x54\x5b\x60\x61\x2f\x21\xfd\x55\x31\x28\x17\x09\xac\xd7\x01\x55\xc4\x08\xd1\x11\x83\xb3\x47\xcb\x31\x21\xf6\x2f\xa9\xce\x77\xc7\x3d\x06\xe1\x1e\x28\xfb\x86\x40\x05\x14\x19\x68\x04\x38\xd0\xd5\xa0\xfc\x8b\xa0\xa4\x46\x34\x58\x73\x56\xa1\x5c\x40\x65\x5e\x00\x9f\x45\xa5\xf5\x37\x7a\x7e\x01\x6e\xec\xd0\xf1\xfa\x95\xbd\x75\x0e\x3c\x31\x04\x7c\xc2\xc0\x50\x58\x83\xc7\x96\x18\x3d\x2f\xf3\xfc\x0a\x59\x78\xec\xef\xc6\x57\x57\xdb\xb8\x86\x87\x1d\x07\xeb\x0f\x8f\x4b\x78\xcd\x73\x00\x80\xd5\x0a\xee\x49\x2b\x07\x4f\x2a\x58\x69\x09\x35\x05\x50\x10\xb0\xc6\x80\x5e\xe3\x64\x62\xb5\x85\x34\x00\xb8\x33\x47\xeb\x81\xf6\xff\xa0\xe6\x44\xe1\x90\x41\xc9\x9f\xdf\xb1\x5e\xc3\xe7\xf7\xc3\x2a\x53\xc9\xd0\xaf\x0d\xd8\xaa\x80\x85\xd2\x9a\xd7\xa0\x3a\x6e\x8a\xdf\x29\x04\xea\xff\x56\xae\xc3\x25\x7c\xbe\xd3\x9a\x3a\xcf\x22\x10\xc6\x23\x7e\x27\xcc\x9c\x2e\xf5\x56\x8e\x9c\x88\xae\x2e\x27\x4d\xb0\x01\xe9\x56\x46\xa6\xa0\x0e\x58\x0e\x5c\xbf\x7e\x28\xf4\xb7\x42\x52\xb7\x9e\x89\x63\x39\xfe\x26\xd8\x6e\xa0\xfb\x4b\x71\xb3\x3c\x37\x96\xf3\xf5\x2b\xb4\xca\x5b\x5d\x2c\xfe\xa0\xce\x99\x34\xa8\x51\xff\x8d\xfa\x38\x66\x3c\xe9\x5c\x0c\x1c\xa7\xc1\x25\x7c\x46\xdd\x31\xc2\x6b\x9e\x65\x62\x6f\x0a\x87\x34\xbe\xcc\x12\x36\x73\x02\x0f\xc8\x13\xe6\xde\x46\x2e\x96\x79\x96\x65\x73\x82\x1c\x29\x73\x59\x08\xd9\x90\xc5\x32\x1f\xbb\x49\xd8\xef\x53\xd6\x3f\x6c\xf2\x9d\x1c\xee\xce\xb0\x22\x95\xae\x56\x92\xfb\x14\x75\x8f\xfd\xb4\x85\xd0\x37\x56\x37\x60\x08\xa3\xff\x89\xe7\xe3\x3e\xea\x48\x32\x46\x22\x6f\xce\xdb\x97\x20\x5a\x79\x63\x8d\x62\x1c\x78\x87\x55\x4c\xb0\xab\xd5\x94\xb5\xfc\x32\x10\x48\x8a\x51\xe9\x06\x34\x85\x80\xb1\x25\x6f\xc4\xeb\x54\x3c\x6c\x67\x96\x09\xc6\x63\xff\x8d\x0c\x56\x5b\xd1\x72\xbb\x2d\xc9\xfd\xcc\xd6\x73\xee\x3f\x9c\xeb\x1e\xe1\xd3\x06\xbc\x75\x63\x5e\xb3\x2c\xd3\xe4\xd9\xfa\x0e\xa5\xfa\x24\xc6\x24\x53\xa5\x73\xe5\x6b\x9a\xb7\xf4\xdb\x78\x5b\x24\xd8\x76\x7d\xd1\x95\xac\xcd\x2e\x23\x79\x98\x88\xca\x40\x0e\x1f\x61\x03\x1f\xde\x7d\x82\x9f\xe1\x4b\x2a\xff\x9f\x17\x6c\x80\x43\xd2\x7b\x1a\xe7\x18\x91\xaf\x07\x33\x04\x64\xda\xb8\xce\xcb\x37\x88\x2e\xbe\xa4\x31\x5c\x8d\x3c\xce\xef\x61\x19\xdf\x84\x73\x46\xd5\x14\xa4\x9d\x38\x86\xfd\xcd\x77\x37\xcb\xde\xd1\x5d\x45\xf0\xe2\xc2\xfa\xca\x91\x69\xab\x4e\xff\x05\x00\x00\xff\xff\xa0\x1b\xa9\x9a\x63\x06\x00\x00" +var _idtablestakingAdminAdd_approved_and_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\xcf\x6b\xf3\x38\x10\x3d\xdb\x7f\xc5\x34\x87\x5d\x87\x5d\x12\x7a\x0d\x9b\x2d\x61\xc3\x82\xa1\x94\xa5\xe9\xad\xf4\xa0\x48\xe3\x58\xfb\x29\x1a\x23\x4d\xea\x96\x92\xff\xfd\x63\x64\x3b\x3f\x5a\x97\x4f\x17\x83\xf5\xe6\xcd\xf3\x9b\x37\xb6\xfb\x86\x02\xc3\xbf\x8e\xda\x72\xfd\xa4\xb6\x0e\x37\xac\x7e\x58\xbf\x83\x2a\xd0\x1e\x26\x5f\x2f\x26\x79\x3e\x9f\xcf\xe1\xa9\xb6\x11\x38\x28\x1f\x95\x66\x4b\x1e\x94\x31\x11\x3c\x19\x84\x72\x1d\x81\x09\xb8\x46\x70\x36\x32\x50\x05\xaa\x69\x02\xbd\xa2\x49\x80\x08\xd6\x27\x0e\x41\x94\x6b\x60\x61\x9f\x41\x7a\x55\x32\x28\x17\x09\xac\xd7\x01\x55\xc4\x08\xd1\x11\x83\xb3\x7b\xcb\x31\x21\xb6\xef\xa9\xce\x1f\xf6\x5b\x0c\xc2\xdd\x51\xb6\x35\x81\x0a\x28\x32\xd0\x08\xb0\xa3\xab\x40\xf9\x77\x41\x49\x8d\x68\xb0\xe6\xa4\x42\xb9\x80\xca\xbc\x03\xbe\x89\x4a\xeb\xaf\xf4\xfc\x09\x5c\xdb\xae\xe3\xe5\x57\xb6\xd6\x39\xf0\xc4\x10\xf0\x15\x03\x43\x61\x0d\xee\x1b\x62\xf4\x3c\xcd\xf3\x0b\x64\xe1\xb1\x5d\xf5\x5f\x5d\xae\xe3\x02\x9e\x37\x1c\xac\xdf\xbd\x4c\xe1\x23\xcf\x01\x00\xe6\x73\xb8\x27\xad\x1c\xbc\xaa\x60\xa5\x25\x54\x14\x40\x41\xc0\x0a\x03\x7a\x8d\x83\x89\xe5\x1a\xd2\x00\x60\x65\xf6\xd6\x03\x6d\xff\x47\xcd\x89\xc2\x21\x83\x92\x97\x8f\x58\x2d\xe0\xb7\xaf\xc3\x9a\xa5\x92\xae\x5f\x13\xb0\x51\x01\x0b\xa5\x35\x2f\x60\x75\xe0\x7a\xa5\x35\x1d\x3c\x8b\x22\xe8\x8f\x18\x4c\x21\x50\x3b\x26\x44\x7d\xee\x2f\x27\xa2\xab\x66\x83\x08\x58\x82\xd0\xcf\x3a\x8e\xbf\xbe\x55\xf4\x77\x21\xf1\x5a\x8c\xe4\x6e\xd6\x3f\x13\x6c\xc3\x14\xd4\x0e\xff\x53\x5c\x4f\x4f\x0d\xe5\xdc\xdd\x41\xa3\xbc\xd5\xc5\xe4\x1f\x3a\x38\x93\x26\xd2\xeb\xbe\x52\x1d\xfb\x30\x27\x7d\x93\x8e\xe3\xd8\xd9\x81\x6f\xa8\x0f\x8c\xf0\x91\x67\x99\xf8\x98\x52\x20\x8d\xcf\x43\x83\xe5\x98\xc0\x1d\xf2\x80\xb9\xb7\x91\x8b\x69\x9e\x65\xd9\x98\x20\x47\xca\x9c\x93\x2f\xab\x30\x99\xe6\x7d\x37\x49\xf5\x7d\x0a\xf5\xb7\x4d\x1e\xc9\xe1\xe6\x04\x2b\x52\xe9\x7c\x2e\x01\x4f\x99\xf6\xd8\x0e\xeb\x06\x6d\x6d\x75\x0d\x86\x30\xfa\xdf\x79\x3c\xd7\xbd\x8e\x24\xa3\x27\xf2\xe6\xb4\x66\x09\xa2\x95\x37\xd6\x28\xc6\x8e\xb7\xdb\xb9\x04\xbb\xd8\x41\xd9\xbf\xdb\x8e\x40\xe2\x8a\x4a\xd7\xa0\x29\x04\x8c\x0d\x79\x23\x5e\xa7\xe2\x6e\x0d\xb3\x4c\x30\x1e\xdb\x07\x32\x58\xae\x45\xcb\xf5\x5a\x24\xf7\x33\x5b\x8d\xb9\xff\x7c\xaa\x7b\x81\x9b\x25\x78\xeb\xfa\x9c\x66\x59\xa6\xc9\xb3\xf5\x07\x94\xea\xa3\x18\x93\x4c\x95\xce\xa5\xaf\x68\xdc\xd2\x87\xfe\xb6\x38\xf1\x26\x4b\xb3\xf3\x28\x9e\x07\x82\x59\x20\x87\x2f\xb0\x84\x6f\xef\x6e\xe0\x0f\xb8\x4d\xe5\xbf\x50\xbe\x04\x0e\x49\xe7\xb1\x9f\x5f\x44\xbe\x1c\x48\x17\x8c\x61\xc3\x0e\x5e\x7e\x32\x74\xf6\x23\xd9\x7f\x31\xea\x38\xbe\x77\xb3\xf8\x29\x94\x23\xaa\x86\x00\x6d\xc4\x29\x6c\xaf\x7e\xac\x59\xf6\x85\xee\x22\x7a\x67\x17\x16\x17\x8e\x0c\xdb\x74\xfc\x19\x00\x00\xff\xff\x98\x41\x97\x73\x44\x06\x00\x00" func idtablestakingAdminAdd_approved_and_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -1939,11 +1790,11 @@ func idtablestakingAdminAdd_approved_and_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/add_approved_and_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0x5c, 0xc3, 0x2d, 0xdd, 0xd4, 0x3f, 0x6, 0xb, 0x28, 0xd4, 0x83, 0xa8, 0x94, 0xed, 0x21, 0x85, 0x73, 0x1f, 0x61, 0xf0, 0x2f, 0xba, 0x6c, 0xed, 0xc4, 0x1f, 0xbe, 0x46, 0xf9, 0x40, 0x80}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0x6e, 0x10, 0x62, 0x34, 0x30, 0xc1, 0x28, 0x9e, 0xbd, 0xe5, 0x12, 0xcd, 0x2, 0xc8, 0x7c, 0x48, 0xd6, 0x35, 0xb8, 0x5f, 0xa2, 0x72, 0x0, 0x33, 0xa4, 0xda, 0xd6, 0xfe, 0x2c, 0xe8, 0x3b}} return a, nil } -var _idtablestakingAdminAdd_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x93\x51\x6b\xdb\x30\x14\x85\x9f\xed\x5f\x71\xc8\x43\xe7\xc0\xb0\xdf\xc3\xba\x92\x2d\x0c\x02\x65\x8c\xa5\xec\xa5\xf4\x41\xb1\xae\x63\x6d\x8e\x64\xa4\xeb\xb8\xa5\xe4\xbf\x8f\x2b\xdb\x21\x69\x33\xa6\x17\x83\x75\xef\xb9\x47\x47\x9f\xcc\xbe\x75\x9e\xf1\xad\x71\xfd\x7a\xf5\xa0\xb6\x0d\x6d\x58\xfd\x31\x76\x87\xca\xbb\x3d\x66\xef\x37\x66\x69\x5a\x14\x78\xa8\x4d\x00\x7b\x65\x83\x2a\xd9\x38\x0b\xa5\x75\x80\x75\x9a\xb0\x5e\x05\xb0\x03\xd7\x84\xc6\x04\x86\xab\xa0\xda\xd6\xbb\x03\xe9\x58\x10\x60\xac\x48\x48\xc1\x7a\x05\x16\xed\x1c\xf2\x67\x5d\x41\xd9\x17\x69\x90\x3d\x69\x31\xfa\xd4\xa4\x1a\x4f\x4a\xbf\x80\x9e\x45\xd4\xd8\x8b\xfe\x8f\xe0\xda\x84\xa8\x7a\xe6\xa9\x37\x4d\x03\xeb\x18\x9e\x0e\xe4\x19\x99\xd1\xb4\x6f\x1d\x93\xe5\x79\x9a\x9e\x55\x66\x46\x87\x05\x1e\x37\xec\x8d\xdd\x3d\xcd\xf1\x9a\xa6\x00\x50\x14\xb8\x77\xa5\x6a\x70\x50\xde\xc8\x18\x54\xce\x43\xc1\x53\x45\x9e\x6c\x49\xd3\x39\xd7\x2b\xc4\x88\xb0\xd4\x7b\x63\xe1\xb6\xbf\xa9\xe4\x28\xd1\x10\x43\xc9\xcf\x9f\x54\x2d\x70\xf3\x3e\xce\x3c\xb6\x0c\xf3\x5a\x4f\xad\xf2\x94\xa9\xb2\xe4\x05\x54\xc7\x75\xf6\xc5\x79\xef\xfa\x5f\xaa\xe9\x68\x8e\x9b\x65\x59\xba\xce\xb2\x18\xc4\xb8\x8a\x02\xdb\x58\x73\xcd\x97\x7a\x6b\x47\x56\xa0\xa6\xca\x27\x4f\xb8\x85\x4c\xcb\x03\x3b\xaf\x76\x94\x0f\x5a\x9f\xfe\x69\xf4\x73\x26\x5c\x2c\xae\x00\x93\x8f\xdf\x58\xb6\x19\xe4\x7e\x28\xae\xe7\xa7\xc1\xb2\xee\xee\xd0\x2a\x6b\xca\x6c\xf6\xd5\x75\x8d\x8e\xb7\x33\xfa\xbf\x70\x1f\x46\x0a\xa3\xcf\xd9\xa0\x71\x1c\x52\xa2\x67\x2a\x3b\x26\xbc\xa6\x49\x22\xf1\x0a\x1e\xc2\xdc\xed\x35\x53\x3b\xe2\xe5\x08\xdf\xbd\x09\x9c\xfd\xdf\x8d\x50\x36\x01\x3b\x00\x1c\x5f\xc2\x18\xd0\x6c\x9e\xa6\x49\x52\x14\xc2\x7b\x84\xd5\x52\x3f\x61\x8f\xbe\x36\x65\x0d\xed\x28\xd8\x0f\x7c\x09\x6c\x9a\x24\xc2\x8e\xa5\xfe\x7b\xb4\x2b\x00\x1b\x1d\xe2\x21\x92\xf1\x04\x8f\xa7\xdd\x27\xdc\x82\x7d\x47\x69\x92\x1c\xc7\x79\x81\x78\xb8\xd2\xe9\x29\x45\x6b\xe3\x3d\x77\x56\x70\x77\xd5\x30\x2b\xe6\x66\xf5\xb9\xb5\x70\xfd\xf6\xf3\xf0\x26\x9e\xd1\xc9\x94\xf7\xf1\x6f\x00\x00\x00\xff\xff\xba\x60\xb0\x0b\x1f\x04\x00\x00" +var _idtablestakingAdminAdd_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x93\x41\x6b\xdb\x40\x10\x85\xcf\xd2\xaf\x78\xf8\xd0\xca\x50\xa4\xbb\xa9\x1b\x4c\x4d\xc1\x10\x4a\xa9\x73\x0b\x39\xac\xb5\x23\x6b\x5b\x79\x57\xec\x8e\xac\x84\xe0\xff\x5e\x66\x25\x19\x3b\x71\xc9\x5e\x04\xbb\x33\x6f\xde\xcc\x7c\x32\x87\xd6\x79\xc6\x8f\xc6\xf5\x9b\xf5\x83\xda\x35\xb4\x65\xf5\xd7\xd8\x3d\x2a\xef\x0e\x98\xbd\x7f\x98\xa5\x69\x51\xe0\xa1\x36\x01\xec\x95\x0d\xaa\x64\xe3\x2c\x94\xd6\x01\xd6\x69\xc2\x66\x1d\xc0\x0e\x5c\x13\x1a\x13\x18\xae\x82\x6a\x5b\xef\x8e\xa4\x63\x40\x80\xb1\x22\x21\x01\x9b\x35\x58\xb4\x73\xc8\xcd\xa6\x82\xb2\x2f\x92\x20\x6f\x92\x62\xf4\x39\x49\x35\x9e\x94\x7e\x01\x3d\x8b\xa8\xb1\x57\xf9\x5f\xc0\xb5\x09\x51\xf5\xc2\x53\x6f\x9a\x06\xd6\x31\x3c\x1d\xc9\x33\x32\xa3\xe9\xd0\x3a\x26\xcb\xf3\x34\xbd\x88\xcc\x8c\x0e\x0b\x3c\x6e\xd9\x1b\xbb\x7f\x9a\xe3\x35\x4d\x01\xa0\x28\x70\xef\x4a\xd5\xe0\xa8\xbc\x91\x32\xa8\x9c\x87\x82\xa7\x8a\x3c\xd9\x92\xa6\x3e\x37\x6b\xc4\x11\x61\xa5\x0f\xc6\xc2\xed\xfe\x50\xc9\x51\xa2\x21\x86\x92\xcb\xdf\x54\x2d\xf0\xe9\xfd\x38\xf3\x98\x32\xd4\x6b\x3d\xb5\xca\x53\xa6\xca\x92\x17\x58\x75\x5c\xaf\xca\xd2\x75\x96\xc5\x11\xc6\x53\x14\xd8\x39\xef\x5d\x7f\xcb\x88\x7a\x5b\x5f\x4e\xa0\xa6\xca\x27\x13\x58\x42\xe4\xf3\x41\xe3\xeb\x7f\x1d\x7d\xcb\x04\x80\xc5\x0d\x32\xf2\xf1\x1b\xc3\xb6\xec\xbc\xda\xd3\x2f\xc5\xf5\xfc\x5c\x50\xce\xdd\x1d\x5a\x65\x4d\x99\xcd\xbe\xbb\xae\xd1\x71\x0d\xa3\xef\x2b\xd7\x61\xc4\x2d\xfa\x9b\x0d\x1a\xa7\x61\x1c\xf4\x4c\x65\xc7\x84\xd7\x34\x49\x64\x8e\xc2\x81\xc0\xb5\xbc\x65\x6a\x4f\xbc\x1a\x29\xbb\x37\x81\xb3\x8f\xdd\x08\x4e\x13\x99\x03\xa9\x11\xf9\x30\x74\x34\x9b\xa7\x69\x92\x14\x85\x80\x1d\xa9\xb4\xd4\x4f\x7c\xa3\xaf\x4d\x59\x43\x3b\x0a\xf6\x33\x5f\x93\x99\x26\x89\x40\x62\xa9\xff\x19\xed\x0a\xa9\x46\x87\xd8\x44\x32\x76\xf0\x78\x7e\x7d\xc2\x12\xec\x3b\x4a\x93\xe4\x34\xd6\x0b\xc4\xc3\x2a\xa7\x7f\x26\x5a\x1b\xf7\xdb\x59\xe1\xda\x55\x43\xad\x38\x37\xab\x2f\xad\x85\xdb\x5b\xcf\xc3\x9b\xf1\x8c\x4e\xa6\x79\x9f\xfe\x05\x00\x00\xff\xff\x1a\x82\xbd\xe7\x08\x04\x00\x00" func idtablestakingAdminAdd_approved_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -1959,11 +1810,11 @@ func idtablestakingAdminAdd_approved_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/add_approved_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc4, 0x2e, 0x15, 0x46, 0x80, 0xde, 0x18, 0xca, 0x68, 0xd8, 0xcb, 0xd0, 0xd8, 0xb5, 0x9c, 0x1c, 0x8d, 0x79, 0x2a, 0xfc, 0xfd, 0x40, 0x7c, 0xeb, 0xd1, 0x65, 0x4f, 0xc8, 0x1, 0xa7, 0x95, 0x8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x79, 0xba, 0x90, 0xea, 0xdb, 0xc9, 0x16, 0x91, 0x88, 0xf2, 0x80, 0x3c, 0xdd, 0xc8, 0xf4, 0xb8, 0x1e, 0xb3, 0xa2, 0xc, 0x1, 0x8e, 0x80, 0xa0, 0x88, 0x14, 0x40, 0x67, 0x5, 0x2d, 0x28, 0x89}} return a, nil } -var _idtablestakingAdminCapability_end_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x4d\x6b\xe4\x48\x0c\xbd\xfb\x57\x88\x3e\x04\x37\x34\x36\xbb\x2c\x7b\x30\xd9\x84\x6c\x67\x02\x81\x1c\x42\x3a\x33\xd7\x20\x97\xe5\x76\x4d\xec\x92\xa9\x92\xe3\x34\x21\xff\x7d\x28\x97\xed\xb4\xf3\x31\x53\x97\xa6\x91\xde\xd3\x93\xf4\x64\xdd\xb4\x6c\x05\xae\x6a\xee\xaf\x2f\xef\x31\xaf\x69\x27\xf8\xa8\xcd\x1e\x4a\xcb\x0d\xac\x3e\x06\x56\x51\x94\xa6\x70\x5f\x69\x07\x62\xd1\x38\x54\xa2\xd9\x40\xe7\xc8\x01\x82\x1b\xd1\x58\x34\xda\x80\xc2\x16\x73\x5d\x6b\x39\x78\x8c\x30\xb4\x78\x00\x4b\x3d\xda\xc2\x6d\x80\x4c\x01\x52\xd1\x1b\xa6\x1b\xa8\x36\x80\xa6\x98\x83\xd4\xb2\xaa\x92\x28\x4d\x3d\xc3\xb5\x80\xe2\x26\xd7\x86\xdc\x10\x6c\xf1\xf0\x70\x4c\xf7\x30\x53\x99\x02\x1a\x7e\xa2\x07\xe1\x47\x32\x0b\xa5\xce\x13\xf5\x95\x56\x95\x47\xb8\xcf\x15\x84\xb8\xa5\xb2\xf3\x29\x86\x0b\x72\xd0\x6b\xa9\x40\x1b\xd7\x95\xa5\x56\x9a\x8c\x0c\x30\xf2\x74\x53\x39\x07\x63\xbd\x9c\xa4\x27\x32\x90\x77\xea\x91\xc4\x8d\xda\xb1\x76\x0c\x8e\xc4\x0f\xca\x50\x1f\x92\x7d\x13\xdc\x09\x94\x6c\x07\x2d\x86\x9e\x25\x74\x1d\x45\x47\xb2\x63\x5d\xb8\x0c\x5e\x76\x62\xb5\xd9\x67\xf0\x3f\x73\xfd\xba\xf1\x2c\xb7\x03\x3c\x83\xef\x57\xfa\xf9\xdf\x7f\xd6\xf0\x12\x45\x00\x00\x69\x0a\x37\xac\xb0\x86\x27\xb4\xda\xaf\x6f\x28\x80\xbe\x27\xb2\x64\x14\xf9\x75\xf8\x7a\xd7\x97\x30\xac\x17\x2e\x86\x95\x71\xfe\x93\x94\x0c\x14\x35\x49\xd8\xe3\x1d\x95\x19\x9c\x7c\xb4\x42\x32\x40\x42\xbd\xd6\x52\x8b\x96\x62\x54\x4a\x32\xc0\x4e\xaa\x78\xcb\xed\xe1\x07\xd6\x1d\xad\xe1\xe4\x42\x29\xee\x8c\x78\x79\x30\xbe\x99\x7e\x3b\xbb\x04\xfe\x03\x8f\x4f\x9c\xb0\xc5\x3d\x25\x8a\xdb\xc3\xe9\x5b\xf8\x2c\xf6\xa6\xcc\x3e\x71\x6b\x32\xfe\x0e\x82\x76\x01\x7d\x8b\x52\xad\xe7\x6a\xfe\x9d\x9f\x43\x8b\x46\xab\x78\xb5\xe5\xae\x2e\xc0\xb0\xc0\x9e\xe4\xc8\xa6\xc1\xf5\x18\xc4\xc2\x28\x63\xb5\x8e\x66\x9a\x34\x85\x9c\xad\xe5\xfe\xb3\x51\xe2\xfb\x09\xfa\xe7\xa8\x2e\x93\x69\x8c\xbe\xc1\x65\xcb\x49\xa0\x3b\xfd\x72\xbc\x67\xf1\x9f\x9b\x18\x25\x2d\x04\x2d\x2e\x71\x15\x38\x5e\x43\x23\xf4\x4c\xaa\x13\x9a\xac\x32\x2d\x63\xbc\xa4\x5d\xd7\x34\x68\xfd\x2e\x16\xd2\x13\x85\xb5\xea\x6a\x14\xba\x0b\x79\x47\xba\x96\x89\x2d\x1e\xa6\x94\x92\xed\x37\x6f\xe5\xad\x9f\x27\xd9\x0c\xfe\xda\xbc\x2b\x93\xbd\xfb\x7f\x34\xeb\x25\xab\x23\x19\xa8\xee\xfd\xd1\x04\xd3\xc7\xb3\xfd\x7f\x87\xba\x68\x5b\xcb\x4f\x54\xdc\x68\x27\xfe\x8a\xbe\xcc\x25\x53\x4c\x36\x0a\xdf\x81\xf8\xcb\x54\x7f\xec\x83\x10\xe7\x35\x2c\x5b\xfc\x7b\x9a\xf5\x6b\xf4\x2b\x00\x00\xff\xff\xad\x41\xde\x8f\x5e\x05\x00\x00" +var _idtablestakingAdminCapability_end_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x53\xc1\x4e\xdc\x40\x0c\xbd\xe7\x2b\xac\x3d\x54\x41\x42\xc9\xa5\xea\x61\x45\x41\x5b\x28\x12\x12\x07\xc4\xd2\x33\x72\x26\xce\x66\x4a\x32\x8e\x66\x1c\xc2\x0a\xed\xbf\x57\x33\x93\x84\x4d\x81\x76\x2e\x91\x62\xbf\xe7\x67\xfb\x59\xb7\x1d\x5b\x81\xeb\x86\x87\x9b\xab\x07\x2c\x1a\xda\x0a\x3e\x69\xb3\x83\xca\x72\x0b\xab\xf7\x81\x55\x92\xe4\x39\x3c\xd4\xda\x81\x58\x34\x0e\x95\x68\x36\xd0\x3b\x72\x80\xe0\x46\x34\x96\xad\x36\xa0\xb0\xc3\x42\x37\x5a\xf6\x1e\x23\x0c\x1d\xee\xc1\xd2\x80\xb6\x74\xa7\x40\xa6\x04\xa9\xe9\x0d\xd3\x07\xaa\x53\x40\x53\xce\x41\xea\x58\xd5\x59\x92\xe7\x9e\xe1\x46\x40\x71\x5b\x68\x43\x2e\x04\x3b\xdc\x3f\x1e\xd3\x3d\xce\x54\xa6\x84\x96\x9f\xe9\x51\xf8\x89\xcc\x42\xa9\xf3\x44\x43\xad\x55\xed\x11\xee\x63\x05\x31\x6e\xa9\xea\x7d\x8a\xe1\x92\x1c\x0c\x5a\x6a\xd0\xc6\xf5\x55\xa5\x95\x26\x23\x01\x46\x9e\x6e\x2a\xe7\x60\xac\x57\x90\x0c\x44\x06\x8a\x5e\x3d\x91\xb8\x51\x3b\x36\x8e\xc1\x91\xf8\x41\x19\x1a\x62\xb2\x6f\x82\x7b\x81\x8a\x6d\xd0\x62\xe8\x45\x62\xd7\x49\x72\x24\x3b\xd5\xa5\x5b\xc3\xeb\x56\xac\x36\xbb\x35\xfc\x60\x6e\x0e\xa7\x9e\xe5\x2e\xc0\xd7\xf0\xeb\x5a\xbf\x7c\xfb\x7a\x02\xaf\x49\x02\x00\x90\xe7\x70\xcb\x0a\x1b\x78\x46\xab\xfd\xfa\x42\x01\xf4\x3d\x91\x25\xa3\xc8\xaf\xc3\xd7\xbb\xb9\x82\xb0\x5e\xd8\x84\x95\x71\xf1\x9b\x94\x04\x8a\x86\x24\xee\xf1\x9e\xaa\x35\x7c\x79\x6f\x85\x2c\x40\x62\xbd\xce\x52\x87\x96\x52\x54\x4a\xd6\xb0\xe9\xa5\xde\x28\xc5\xbd\x11\xaf\x08\xc6\x37\x33\x5e\xce\xc6\x80\xef\xe0\x21\x99\xe2\x6e\x7f\xf6\xf6\xfb\x3c\xf5\xfe\x5b\x7f\x60\xcc\x6c\xfc\x86\xda\x5b\x61\x8b\x3b\xba\x43\xa9\x4f\xe6\x2a\xfe\x5d\x5c\x40\x87\x46\xab\x74\x75\xc9\x7d\x53\x82\x61\x81\x1d\xc9\x91\x23\xa3\xc1\x31\x8a\x04\x17\x89\x56\x27\xc9\x4c\x93\xe7\x50\xb0\xb5\x3c\x7c\x34\x35\xfc\x7b\x58\xfe\x39\x6a\xaa\x6c\x9a\x98\x6f\x6c\xd9\x6a\x16\xe9\xce\x3e\x9d\xe4\x79\xfa\xff\x26\x46\x49\x0b\x41\x8b\xa3\x5b\x45\x8e\x43\x6c\x84\x5e\x48\xf5\x42\x93\x2b\xa6\x25\x8c\x47\xb3\xed\xdb\x16\xad\xdf\xc1\x42\x7a\xa6\xb0\x51\x7d\x83\x42\xf7\x31\xef\x48\xd7\x32\xb1\xc3\xfd\x94\xb2\xa4\x3c\x9a\xe3\x12\xe1\x48\x7e\x7a\x73\x3f\x78\xef\x47\xef\xa6\xb3\x8b\xff\x85\xda\x74\x9d\xe5\x67\x2a\x6f\xb5\x13\x7f\x0c\x9f\xe6\x92\x29\x27\x8b\xc4\x73\x4e\x3f\x4d\xf5\x37\x1b\x84\x4c\x1d\x1e\x92\x43\xf2\x27\x00\x00\xff\xff\x14\xf7\x36\x2e\x13\x05\x00\x00" func idtablestakingAdminCapability_end_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1979,11 +1830,11 @@ func idtablestakingAdminCapability_end_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/capability_end_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0xe8, 0x46, 0x80, 0xfa, 0x86, 0x18, 0x85, 0xdd, 0xa4, 0xf2, 0x3b, 0x47, 0x60, 0x5c, 0x35, 0x94, 0x4d, 0x3a, 0xa2, 0x2c, 0xc3, 0x36, 0x6b, 0x8c, 0x2a, 0xfb, 0xc5, 0x3d, 0x7b, 0x29, 0x9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7, 0xe4, 0x9e, 0xaf, 0x7a, 0x23, 0x26, 0xbd, 0x3c, 0x90, 0x8a, 0x3d, 0x18, 0x6d, 0xb0, 0x9d, 0x5b, 0x4a, 0xcc, 0xca, 0x79, 0xe7, 0x5a, 0xdf, 0x6e, 0x6d, 0xd2, 0x27, 0x63, 0xe, 0x5c, 0x66}} return a, nil } -var _idtablestakingAdminChange_candidate_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdc\x30\x10\x85\xef\xfe\x15\x8f\x3d\x04\x2f\x14\xfb\x52\x4a\x59\xda\x86\x34\xa1\xb0\x10\x4a\x69\xd2\xde\xc7\xf2\x78\xad\x56\xd6\x18\x69\xdc\x0d\x94\xfc\xf7\x22\xd9\x2e\xd9\xee\x76\x0e\x36\x48\x9a\xf7\x3e\xcd\x93\x1d\x46\x09\x8a\x4f\x4e\x8e\xfb\xbb\x47\x6a\x1c\x3f\x28\xfd\xb4\xfe\x80\x2e\xc8\x80\xcd\xf9\xc6\xa6\x28\xea\xba\xc6\x63\x6f\x23\x34\x90\x8f\x64\xd4\x8a\x87\xe9\xc9\x1f\x38\x42\x7b\x86\xb3\x83\x55\x48\x07\xcf\x47\x78\x69\xf3\x32\x29\x0c\x79\x34\x9c\x7e\xad\x6d\x49\x39\x66\xa9\x4e\x42\xee\xf2\xfc\xa4\xe0\x51\x4c\x5f\xbc\x10\x2e\x83\x38\xde\xe1\xdb\xde\xeb\xdb\x57\x49\xf0\x76\xed\xfe\x2c\x2d\xdf\x27\xa7\x79\xf7\xcd\xeb\x2d\x7e\x17\x05\x00\x24\xd5\x7b\x31\xe4\xf0\x8b\x82\x4d\xf0\xd9\x84\x10\xb8\xe3\xc0\xde\x30\x54\xb2\xe7\xfe\x0e\xf9\x72\xb8\x69\x07\xeb\x21\xcd\x0f\x36\x9a\x35\x1c\x2b\x28\x2d\x7e\xe5\x6e\x87\xab\xf3\x41\x54\xb9\x65\x36\x1c\x03\x8f\x14\xb8\x24\x63\x74\x07\x9a\xb4\x2f\x3f\x4a\x08\x72\xfc\x4e\x6e\xe2\x2d\xae\x6e\x8c\x91\xc9\x6b\x22\xc4\x52\x75\x8d\x26\x9f\xb9\xc4\x45\xff\xe2\xa4\x8a\xec\xba\x6a\x65\xc2\x7b\x24\xb7\x2a\xaa\x04\x3a\x70\x35\x6b\xbd\xfb\x2f\xe8\x87\x32\x25\xba\xbb\x10\x75\xb5\xfc\xf3\xb1\x87\x59\xee\x0b\x69\xbf\xfd\x6b\x9c\xea\xfa\x1a\x23\x79\x6b\xca\xcd\xad\x4c\xae\x85\x17\x5d\xf9\x4f\xe8\xe3\xf2\x7e\x32\xe7\x66\xd6\x78\x9e\xa7\xc4\x4f\x6c\x26\xe5\x17\x33\x38\xb9\x51\x15\x59\xcf\xc3\x5d\xf2\x4f\xdf\x1c\xff\x92\xf8\xc5\x87\xb0\xba\x3d\xff\x09\x00\x00\xff\xff\xa3\x37\xb2\x3b\xd7\x02\x00\x00" +var _idtablestakingAdminChange_candidate_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdc\x30\x10\x85\xef\xfe\x15\x0f\x1f\x8a\x03\xc5\xbe\x94\x52\x4c\xdb\xb0\x24\x14\x16\x42\x29\x4d\xfa\x03\xc6\xf2\x78\xad\x56\xd6\x18\x79\xdc\x0d\x94\xfc\xf7\x22\xd9\x2e\xbb\xdd\xcd\x1c\x2c\x90\x3c\xef\x7d\xa3\x27\x3b\x8c\x12\x14\x5f\x9c\x1c\xf7\xf7\x4f\xd4\x38\x7e\x54\xfa\x65\xfd\x01\x5d\x90\x01\xf9\xe5\x41\x9e\x65\x55\x55\xe1\xa9\xb7\x13\x34\x90\x9f\xc8\xa8\x15\x0f\xd3\x93\x3f\xf0\x04\xed\x19\xce\x0e\x56\x21\x1d\x3c\x1f\xe1\xa5\x4d\xdb\xa4\x30\xe4\xd1\x70\x5c\x5a\xdb\x92\xf2\x94\xa4\x3a\x09\xa9\xcb\xf3\xb3\x82\x47\x31\x7d\x76\x22\x5c\x04\x71\x5c\xe3\xc7\xde\xeb\x87\xb7\x51\xf0\x6e\xeb\xfe\x2a\x2d\x3f\x44\xa7\xe5\xf4\xfd\xbb\x1b\xfc\xc9\x32\x00\x88\xaa\x0f\x62\xc8\xe1\x37\x05\x1b\xe1\x93\x09\x21\x70\xc7\x81\xbd\x61\xa8\x24\xcf\xfd\x3d\xd2\x70\xd8\xb5\x83\xf5\x90\xe6\x27\x1b\x4d\x1a\x8e\x15\x14\x37\xbf\x73\x57\xe3\xcd\xe5\x45\x94\xa9\x65\x31\x1c\x03\x8f\x14\xb8\x20\x63\xb4\xc6\x6e\xd6\x7e\x67\x8c\xcc\x5e\x23\x12\xd6\xaa\x2a\x34\x12\x82\x1c\xaf\x81\xd0\xff\xfe\xb1\x26\x76\x5d\xb9\x41\xe0\x13\xa2\x7c\xb9\x68\x7c\x7c\x95\xe8\x73\x11\xa3\xab\xaf\x64\x5a\xae\x6b\xfa\xed\x51\x25\xd0\x81\xbf\x91\xf6\x37\xff\x0c\x63\xdd\xde\x62\x24\x6f\x4d\x91\xdf\xc9\xec\x5a\x78\xd1\x8d\xfb\x8c\x7a\x5a\x1f\x4a\xe2\xcb\x17\x8d\x97\xe5\x3a\xf8\x99\xcd\xac\x7c\x32\xfb\xd9\x24\xe5\xc4\x7a\x99\xe2\x1a\x74\xfc\xa6\x9c\xd7\x68\xaf\x26\xbe\xb9\xbd\xfc\x0d\x00\x00\xff\xff\x71\x53\xb5\xc5\xc0\x02\x00\x00" func idtablestakingAdminChange_candidate_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -1999,11 +1850,11 @@ func idtablestakingAdminChange_candidate_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_candidate_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0x8b, 0x69, 0x1, 0xa6, 0x30, 0xfc, 0xb9, 0x20, 0x3, 0xb0, 0x87, 0xff, 0x80, 0xf, 0xa7, 0x89, 0xa7, 0x8, 0xf4, 0x47, 0xfe, 0xa0, 0xd6, 0x59, 0xa2, 0xaa, 0xa4, 0x16, 0x8e, 0xad, 0x7f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xef, 0x23, 0xda, 0x85, 0x6e, 0x3d, 0xa7, 0xdb, 0x2a, 0xad, 0xb3, 0x2c, 0x34, 0x51, 0xcc, 0xc0, 0x56, 0xc1, 0x5d, 0x4e, 0x86, 0x6c, 0x65, 0xa7, 0x3c, 0xe4, 0x43, 0xae, 0x89, 0x90, 0xba, 0xb4}} return a, nil } -var _idtablestakingAdminChange_cutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x0f\x1f\x82\x7c\x91\x2e\xa5\x07\xd3\x36\xa4\x09\x81\x40\x0f\xa1\x49\x7b\x1f\xaf\x46\xd2\xd6\xeb\x1d\x31\x3b\xaa\x02\x25\xff\xbd\xac\x64\x97\xb8\x76\xe6\x22\xd0\xce\xbe\xf7\xcd\xbc\xf5\xfb\x41\xd4\x70\x1f\x64\x7a\xb8\x7b\xa6\x6d\xe0\x27\xa3\x9d\x8f\x1d\x5a\x95\x3d\x56\xe7\x07\xab\xa2\xa8\x6b\x3c\xf7\x3e\xc1\x94\x62\x22\x67\x5e\x22\x5c\x4f\xb1\xe3\x04\xeb\x19\x6d\x90\x09\x26\x3b\x8e\x50\x9e\x48\x1b\xb8\xd1\x60\x3d\x19\xa2\x34\xb9\x89\x76\xbc\x18\x34\x1c\xb8\x23\x13\x4d\x45\xf1\x46\xae\x8c\x3c\xdd\x8e\xf6\xc8\xea\x38\x1a\x75\xbc\xc1\x8f\x7b\xff\xf2\xf1\xc3\x1a\x7f\x8a\x02\x00\xea\x1a\xdf\xc4\x51\xc0\x6f\x52\x9f\xf1\xd0\x8a\x82\xa0\xdc\xb2\x72\x74\x0c\x93\x19\xe6\xe1\x0e\x33\x3e\x6e\x9a\xbd\x8f\x90\xed\x2f\x76\x36\x4b\x04\x36\x50\xfe\xf9\x9d\xdb\x0d\xae\xce\x47\xad\xe6\x2b\x8b\xdf\xa0\x3c\x90\x72\x49\xce\xd9\x06\x34\x5a\x5f\x7e\x15\x55\x99\x7e\x52\x18\x79\x8d\xab\x1b\xe7\x64\x8c\x96\x01\x71\xa8\xba\xc6\x76\xee\xb9\xc4\x45\xff\xe3\xe4\x4a\x1c\xda\xea\xc8\x84\xcf\xc8\x6e\x55\x32\x51\xea\xb8\x5a\xb4\x3e\xbd\x0b\xfa\xa5\xcc\x2b\xdd\x5c\x08\xb3\x3a\x7c\xe7\xb6\xa7\x45\xee\x91\xac\x5f\xff\x33\xce\x75\x7d\x8d\x81\xa2\x77\xe5\xea\x56\xc6\xd0\x20\x8a\x1d\xf9\x4f\xe8\xd3\xe1\x85\xcc\x9c\xab\x45\xe3\x75\xd9\x12\xbf\xb0\x1b\x8d\xdf\xec\xe0\x64\xa2\x2a\xb1\x9d\xc4\x7a\x96\xf3\x51\xed\xf5\x6f\x00\x00\x00\xff\xff\xab\xef\x4a\xd9\x99\x02\x00\x00" +var _idtablestakingAdminChange_cutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x0f\x1d\x8a\x72\x91\x2e\xa5\x07\xd1\x36\x98\x84\x40\xa0\x87\xd0\xa4\x3f\x60\xbc\x1a\x49\x5b\xaf\x77\xc4\x68\x54\x05\x8a\xff\x7b\x59\xc9\x2e\x76\xed\xce\x45\xa0\x9d\x7d\xef\x9b\x79\xeb\xf7\x83\xa8\xe1\x29\xc8\xfc\xfc\xf8\x46\xdb\xc0\xaf\x46\x3b\x1f\x3b\xb4\x2a\x7b\xe4\xd7\x07\x79\x96\x55\x15\xde\x7a\x3f\xc2\x94\xe2\x48\xce\xbc\x44\xb8\x9e\x62\xc7\x23\xac\x67\xb4\x41\x66\x98\xec\x38\x42\x79\x26\x6d\xe0\x26\x83\xf5\x64\x88\xd2\xa4\x26\xda\xf1\x6a\xd0\x70\xe0\x8e\x4c\x74\xcc\xb2\x33\xb9\x22\xf2\xfc\x30\xd9\x0b\xab\xe3\x68\xd4\x71\x8d\x1f\x4f\xfe\xfd\xd3\xc7\x3b\xfc\xce\x32\x00\xa8\x2a\x7c\x13\x47\x01\xbf\x48\x7d\xc2\x43\x2b\x0a\x82\x72\xcb\xca\xd1\x31\x4c\x16\x98\xe7\x47\x2c\xf8\xd8\x34\x7b\x1f\x21\xdb\x9f\xec\x6c\x91\x08\x6c\xa0\xf4\xf3\x3b\xb7\x35\x3e\x5c\x8f\x5a\x2e\x57\x56\xbf\x41\x79\x20\xe5\x82\x9c\xb3\x1a\x9b\xc9\xfa\x8d\x73\x32\x45\x4b\x44\x38\x56\x55\x61\x2b\xaa\x32\xdf\x02\xa1\x7f\xfd\x53\x8d\x1c\xda\xf2\x04\x81\x2f\x48\xf2\xe5\xaa\xf1\xf9\xbf\x44\x5f\x8b\xb4\xbb\xfa\x46\x6a\xe5\xf1\xbb\xb4\xbd\x9a\x28\x75\xfc\x42\xd6\xdf\xfd\x35\x4c\x75\x7f\x8f\x81\xa2\x77\x45\xfe\x20\x53\x68\x10\xc5\x4e\xdc\x17\xd4\xe3\xf1\x29\x2c\x7c\xf9\xaa\x71\x58\xd7\xc1\xef\xec\x26\xe3\xb3\xd9\x2f\x26\x29\x47\xb6\x8b\xfc\xae\x02\x3d\xa9\x1d\xfe\x04\x00\x00\xff\xff\x77\x97\x06\xba\x82\x02\x00\x00" func idtablestakingAdminChange_cutCdcBytes() ([]byte, error) { return bindataRead( @@ -2019,11 +1870,11 @@ func idtablestakingAdminChange_cutCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_cut.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x44, 0x7a, 0x5d, 0xf4, 0xb4, 0x22, 0xad, 0xa1, 0x2e, 0x57, 0x29, 0x66, 0x47, 0x5f, 0xca, 0x24, 0x3b, 0xd2, 0x71, 0x49, 0xa8, 0xb4, 0x2c, 0x34, 0xd3, 0xf, 0x36, 0xa0, 0x2a, 0x5f, 0x58, 0x1a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5c, 0x1c, 0x8, 0xb3, 0x72, 0x4a, 0x1c, 0x3d, 0x1a, 0x35, 0xca, 0x7f, 0xd1, 0xbe, 0x37, 0x1, 0x5b, 0x35, 0xea, 0x12, 0x55, 0x7c, 0x6e, 0xbe, 0x84, 0x1f, 0x54, 0x6c, 0xbe, 0x38, 0x2d, 0x14}} return a, nil } -var _idtablestakingAdminChange_del_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdc\x40\x0c\xc5\xef\xfe\x14\x8f\x3d\x04\xef\xc5\xbe\x94\x1e\x96\xb6\x21\xed\x12\x08\xb4\x50\x92\xb4\x77\xed\x58\x5e\x4f\x77\x3c\xda\xca\x9a\x3a\x50\xf2\xdd\xcb\xd8\xeb\x92\x3f\x1b\x5d\x06\x46\x9a\xf7\x7e\x92\xc6\xf7\x47\x51\xc3\x75\x90\xf1\x66\x7b\x4f\xbb\xc0\x77\x46\x07\x1f\xf7\x68\x55\x7a\xac\x5e\x27\x56\x45\x51\xd7\xb8\xef\xfc\x00\x53\x8a\x03\x39\xf3\x12\xe1\x3a\x8a\x7b\x1e\x60\x1d\xa3\x0d\x32\xc2\xe4\xc0\x11\xca\x23\x69\x03\x97\x0c\xd6\x91\x21\x4a\x93\x8b\xe8\xc0\xb3\x41\xc3\x81\xf7\x64\xa2\x43\x51\x3c\x91\x2b\x23\x8f\xdb\x25\xf5\xcd\x47\xdf\xa7\x7e\x83\x1f\xd7\xfe\xe1\xfd\xbb\x35\xfe\x16\x05\x00\xd4\x35\xbe\x8a\xa3\x80\x3f\xa4\x3e\x13\xa2\x15\x05\x41\xb9\x65\xe5\xe8\x18\x26\x13\xcf\xcd\x16\x53\x07\xb8\x6a\x7a\x1f\x21\xbb\x5f\xec\x6c\x92\x08\x6c\xa0\x7c\x79\xcb\xed\x06\x17\xaf\xbb\xad\xa6\x27\xb3\xdf\x51\xf9\x48\xca\x25\x39\x67\x1b\x50\xb2\xae\xfc\x2c\xaa\x32\xfe\xa4\x90\x78\x8d\x8b\x2b\xe7\x24\x45\xcb\x80\x38\x45\x5d\x63\x37\xd5\x9c\xe3\xa2\x97\x38\x39\x06\x0e\x6d\xb5\x30\xe1\x23\xb2\x5b\x35\x98\x28\xed\xb9\x9a\xb5\x3e\xbc\x09\xfa\xa9\xcc\x53\xdd\x9c\xd9\x67\x75\x3a\xa7\xb2\xbb\x59\xee\x3b\x59\xb7\xfe\x6f\x9c\xe3\xf2\x12\x47\x8a\xde\x95\xab\x2f\x92\x42\x83\x28\xb6\xf0\x3f\xa3\x1f\x4e\x9f\x64\xe2\x5c\xcd\x1a\x8f\xf3\x94\xf8\x81\x5d\x32\x7e\x32\x83\x67\x1d\x55\x03\xdb\xcb\xcd\x66\x34\xbe\xe5\xdf\xc9\x2b\xf7\x1c\xed\xdc\xf6\x17\x8f\xc7\x7f\x01\x00\x00\xff\xff\xa7\xa0\xc3\xae\xb2\x02\x00\x00" +var _idtablestakingAdminChange_del_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x8b\x9c\x40\x10\xc5\xef\x7e\x8a\xc7\x1c\x82\x7b\xd1\x4b\xc8\x41\x92\x2c\x43\x86\x85\x85\x04\xc2\xee\xe6\x03\xd4\xb4\xa5\x76\xa6\xed\x32\x65\x19\x17\xc2\x7e\xf7\xd0\x3a\x86\xfd\x33\xa9\x8b\x60\x95\xef\xfd\x5e\x95\xbe\x1f\x44\x0d\x37\x41\xe6\xdb\xc3\x03\x1d\x03\xdf\x1b\x9d\x7c\x6c\xd1\xa8\xf4\xd8\xbd\x6d\xec\xb2\xac\x2c\xf1\xd0\xf9\x11\xa6\x14\x47\x72\xe6\x25\xc2\x75\x14\x5b\x1e\x61\x1d\xa3\x09\x32\xc3\xe4\xc4\x11\xca\x33\x69\x0d\x37\x19\xac\x23\x43\x94\x3a\x0d\xd1\x89\x57\x83\x9a\x03\xb7\x64\xa2\x63\x96\x3d\x93\xcb\x23\xcf\x87\xad\xf5\xcd\x47\xdf\x4f\x7d\x85\x1f\x37\xfe\xf1\xc3\xfb\x2b\xfc\xc9\x32\x00\x28\x4b\x7c\x15\x47\x01\xbf\x49\x7d\x22\x44\x23\x0a\x82\x72\xc3\xca\xd1\x31\x4c\x16\x9e\xdb\x03\x96\x04\xd8\xd7\xbd\x8f\x90\xe3\x4f\x76\xb6\x48\x04\x36\x50\x7a\x79\xc7\x4d\x85\x77\x6f\xd3\x16\xcb\x27\xab\xdf\xa0\x3c\x90\x72\x4e\xce\x59\x85\xfd\x64\xdd\xde\x39\x99\xa2\x25\x22\x9c\xab\x2c\x71\x14\x55\x99\x2f\x81\xd0\x6b\xff\x54\x23\x87\xa6\xd8\x20\xf0\x09\x49\xbe\x58\x35\x3e\xfe\x97\xe8\x73\x9e\xd6\x57\x5d\x38\x5c\x71\x7e\x2e\x63\xf7\x26\x4a\x2d\x7f\x27\xeb\xae\xfe\x19\xa6\xba\xbe\xc6\x40\xd1\xbb\x7c\xf7\x45\xa6\x50\x23\x8a\x6d\xdc\x2f\xa8\xc7\xf3\xdf\xb0\xf0\xed\x56\x8d\xa7\x75\x1d\xfc\xc8\x6e\x32\x7e\x96\xfd\x45\x92\x62\x64\x7b\x7d\xc2\x84\xc6\x77\xfc\x6b\xf2\xca\x3d\x47\xbb\x74\xe6\xcd\xe3\xe9\x6f\x00\x00\x00\xff\xff\xb3\x7c\x17\x8a\x9b\x02\x00\x00" func idtablestakingAdminChange_del_minimumsCdcBytes() ([]byte, error) { return bindataRead( @@ -2039,11 +1890,11 @@ func idtablestakingAdminChange_del_minimumsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_del_minimums.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xc8, 0x3f, 0x11, 0x11, 0x9f, 0xf0, 0xb8, 0x71, 0xbf, 0x48, 0xf0, 0x40, 0xd5, 0x29, 0xf3, 0x4e, 0xeb, 0xa2, 0x2c, 0xea, 0xa8, 0xad, 0x9e, 0x76, 0x65, 0x5f, 0xb6, 0xaf, 0x82, 0x71, 0x6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0x73, 0x1d, 0x23, 0x43, 0xb1, 0x2a, 0x95, 0x9a, 0x41, 0xca, 0x35, 0x8d, 0x87, 0x5c, 0x3c, 0xc, 0x7b, 0xaa, 0xf7, 0x85, 0x6b, 0xe6, 0x1b, 0xe8, 0x70, 0x22, 0xf1, 0x3a, 0x56, 0xe5, 0x46}} return a, nil } -var _idtablestakingAdminChange_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x4c\x41\x22\x50\x4a\x11\x55\x43\xda\x10\x30\xb4\x50\xf2\xa7\x97\x90\xc3\x78\x3d\xb2\xb6\x95\x76\xd5\xdd\x51\x1c\x30\xfe\xee\x65\x57\x92\xab\xd4\xc9\x5c\x84\xb4\xb3\xef\xfd\x66\x9e\x74\xdb\x59\x27\xb8\x6e\xec\x6e\x75\x75\x47\xeb\x86\x6f\x85\x7e\x6b\xb3\x45\xe5\x6c\x8b\xc5\xe9\xc1\x22\x49\xf2\x1c\x77\xb5\xf6\x10\x47\xc6\x93\x12\x6d\x0d\x54\x4d\x66\xcb\x1e\x52\x33\xfc\x28\xd1\x6a\xd3\xb7\x7d\xeb\x51\x59\x07\x63\x37\x0c\xdb\xb1\x23\xb1\xce\x27\xc9\xec\x72\x6a\x78\xf7\x5d\x1b\x1d\x7a\x0b\x3c\xdc\x5f\xeb\xe7\x0f\xef\x1f\x97\xd8\x27\x09\x00\xe4\x39\xbe\x59\x45\x0d\x9e\xc8\xe9\x40\x12\xf5\x08\x8e\x2b\x76\x6c\x14\x43\x6c\xf4\x5d\x5d\x21\x92\xe2\x72\xd3\x6a\x03\xbb\xfe\xc5\x4a\xa2\x44\xc3\x02\x0a\x1f\x6f\xb8\x2a\x70\x76\x3a\x55\x16\xaf\x0c\x7e\x9d\xe3\x8e\x1c\xa7\xa4\x94\x14\xa0\x5e\xea\xf4\x8b\x75\xce\xee\x7e\x52\xd3\xf3\x12\x67\x97\x4a\xd9\xde\x48\x00\xc4\x58\x79\x8e\x75\xec\x79\x8d\x8b\xfe\xc7\x09\xe5\xb9\xa9\xb2\x89\x09\x25\x82\x5b\xe6\xc5\x3a\xda\x72\x36\x68\x7d\x7a\x13\xf4\x73\x1a\xe2\x29\x5e\xc9\x2d\x1b\x9f\xb1\xed\x76\x90\xfb\x41\x52\x2f\x8f\xc6\xa1\x2e\x2e\xd0\x91\xd1\x2a\x5d\x7c\xb5\x7d\xb3\x81\xb1\x32\xf1\xbf\xa0\x9f\x92\x8c\x9c\x8b\x41\xe3\x30\x6c\x89\x9f\x59\xf5\xc2\xb3\x1d\x84\x25\xb7\xc7\x18\xf7\xf7\x2b\x23\x1f\x0b\x0c\x69\x1e\x50\x62\x7f\x38\xb6\x3e\x91\x83\x2e\x10\x5b\x50\xe2\xfc\x78\x10\x92\x0d\xcb\xd2\x06\xb3\x9f\x62\x66\x12\x6a\x32\x79\xd0\x8f\x28\xc3\xdb\x8b\x53\x8d\x12\x1a\xef\x06\xf1\xf4\xfc\xdf\xe0\x23\xf8\xc9\xf2\x33\xcf\x32\x3a\x85\xe5\xf1\x0d\xff\xe9\xb5\xe3\x96\x8d\xf8\x74\xf2\x9a\x66\x3f\xfc\x0d\x00\x00\xff\xff\x0c\xd9\xc0\xe7\x32\x03\x00\x00" +var _idtablestakingAdminChange_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x8a\x42\x41\x22\x50\x4a\x11\x55\x83\x69\x08\x18\x5a\x28\xf9\x73\x0a\x39\xac\xd7\x23\x6b\x5a\x69\x47\xdd\x1d\xc5\x01\xe3\xef\x5e\x56\x7f\x5c\xa7\x4e\xe7\x62\xac\x99\x7d\xef\x37\xf3\xb8\xed\xc4\x2b\x6e\x1a\xd9\xad\xae\xef\xcd\xba\xa1\x3b\x35\xbf\xd8\x6d\x51\x79\x69\xb1\x38\x6f\x2c\x92\x24\xcf\x71\x5f\x73\x80\x7a\xe3\x82\xb1\xca\xe2\x60\x6b\xe3\xb6\x14\xa0\x35\x21\x4c\x12\x2d\xbb\xbe\xed\xdb\x80\x4a\x3c\x9c\x6c\x08\xd2\x91\x37\x2a\x3e\x24\xc9\xc9\xe3\xd4\xd1\xee\x3b\x3b\x8e\xb3\x05\x1e\x1f\x6e\xf8\xe5\xe3\x87\xa7\x0b\xec\x93\x04\x00\xf2\x1c\xdf\xc4\x9a\x06\xcf\xc6\x73\x24\x19\xf4\x0c\x3c\x55\xe4\xc9\x59\x82\xca\xe0\xbb\xba\xc6\x40\x8a\xe5\xa6\x65\x07\x59\xff\x24\xab\x83\x44\x43\x0a\x13\x3f\xde\x52\x55\xe0\xdd\xf9\x56\xd9\xf0\x64\xf4\xeb\x3c\x75\xc6\x53\x6a\xac\xd5\x02\xcb\x5e\xeb\xa5\xb5\xd2\x3b\x8d\x44\x98\x2a\xcf\xb1\x16\xef\x65\xf7\x16\x88\xf9\xd7\x3f\x56\xa0\xa6\xca\x66\x08\x94\x88\xf2\xd9\xa8\xf1\xf9\xbf\x44\x5f\xd2\x98\x43\xf1\x46\x40\xd9\xf4\x3b\x8c\xdd\xa9\x78\xb3\xa5\x1f\x46\xeb\x8b\xa3\x61\xac\xab\x2b\x74\xc6\xb1\x4d\x17\x5f\xa5\x6f\x36\x70\xa2\x33\xf7\x2b\xea\x39\xb2\x81\x6f\x31\x6a\x1c\xc6\x73\xd0\x0b\xd9\x5e\xe9\x64\xf7\x78\xcd\xf6\x98\xd7\xfe\x61\xe5\xf4\x53\x81\x31\xb6\x03\x4a\xec\x0f\xc7\xd1\x67\xe3\xc1\x05\x86\x11\x94\xb8\x3c\x36\x62\x84\xf1\x48\xec\x70\x92\xfe\x89\x49\xac\xd9\xe4\x91\x9f\x50\xc6\x7f\xaf\xba\x8c\x12\x8c\xf7\xa3\x78\x7a\xf9\x77\xf1\x09\xfc\xec\xe8\x59\x20\x9d\x9c\xe2\xf1\xe8\x96\x7e\xf7\xec\xa9\x25\xa7\x21\x9d\xbd\xe6\xdd\x0f\x7f\x02\x00\x00\xff\xff\x85\x55\x9c\xa9\x1b\x03\x00\x00" func idtablestakingAdminChange_minimumsCdcBytes() ([]byte, error) { return bindataRead( @@ -2059,11 +1910,11 @@ func idtablestakingAdminChange_minimumsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_minimums.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0xc4, 0xf5, 0xcf, 0xc4, 0x9, 0xda, 0xde, 0x4, 0x25, 0x88, 0xdb, 0xca, 0x1a, 0x54, 0x9, 0x1f, 0x68, 0x91, 0x8, 0x74, 0xa8, 0x6, 0x87, 0x54, 0x36, 0x2, 0x68, 0x3f, 0x5, 0x4f, 0x3d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0x1d, 0x8a, 0xb, 0xcf, 0x34, 0x14, 0xd6, 0xf5, 0x44, 0x7c, 0x22, 0x68, 0x0, 0xbd, 0xd2, 0x70, 0xa3, 0x33, 0x9b, 0x53, 0x5f, 0x65, 0x52, 0x6e, 0xa3, 0x10, 0xc3, 0xf5, 0x47, 0x1d, 0xb9}} return a, nil } -var _idtablestakingAdminChange_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x8f\xd3\x40\x0c\x85\xef\xf9\x15\x4f\x39\xac\xd2\x4b\x72\x41\x1c\x22\x60\xb5\xb0\xac\xb4\x12\x87\x8a\x16\xee\xee\xd4\x69\x86\x4e\xc7\xd1\xc4\x21\xad\x50\xff\x3b\x9a\x49\x0b\x2d\x2d\xbe\x44\x9a\xd8\xef\x7d\xf6\xb3\xbb\x4e\x82\xe2\xc5\xc9\xf8\xfa\xbc\xa4\x95\xe3\x85\xd2\xd6\xfa\x0d\x9a\x20\x3b\xe4\xb7\x3f\xf2\x2c\xab\x2a\x2c\x5b\xdb\x43\x03\xf9\x9e\x8c\x5a\xf1\x30\x2d\xf9\x0d\xf7\xd0\x96\xd1\x38\x19\xa1\xb2\x65\x8f\x91\x79\xeb\x0e\xe8\xe8\x20\x83\x66\xd9\xc5\x44\xe1\x79\x9c\xa7\xe7\x1a\xdf\x5e\xec\xfe\xed\x9b\x19\x7e\x65\x19\x00\x54\x15\xbe\x88\x21\x87\x9f\x14\x6c\xb4\x46\x23\x01\x84\xc0\x0d\x07\xf6\x86\xa1\x92\x8c\x5e\x9f\x91\xd0\xf0\xb4\xde\x59\x0f\x59\xfd\x60\xa3\x49\xc2\xb1\x82\xe2\xe3\x57\x6e\x6a\x3c\xdc\xae\x51\xa6\x91\xc9\xaf\x0b\xdc\x51\xe0\x82\x8c\xd1\x1a\x34\x68\x5b\x7c\x94\x10\x64\xfc\x4e\x6e\xe0\x19\x1e\x9e\x8c\x91\xc1\x6b\x04\xc4\xa9\xaa\x0a\xab\xd4\x73\x8f\x8b\xfe\xc5\x89\xd5\xb3\x6b\xca\x33\x13\xde\x23\xba\x95\xbd\x4a\xa0\x0d\x97\x93\xd6\xbb\xff\x82\x7e\x28\x62\x1e\xf5\x9d\xa0\xca\xd3\x37\xb5\x2d\x26\xb9\x39\x69\x3b\xfb\x63\x1c\xeb\xf1\x11\x1d\x79\x6b\x8a\xfc\x93\x0c\x6e\x0d\x2f\x7a\xe6\xbf\xa2\xef\x4f\xe9\x27\xce\x7c\xd2\x38\x4e\x57\xe2\x3d\x9b\x41\xf9\xe2\x06\x57\x1b\x95\x3d\xeb\xe7\x4e\x4c\xbb\x8c\xc1\x4f\xc9\xfe\xcd\xf8\xac\x74\xfc\x1d\x00\x00\xff\xff\xbc\x8e\x06\xa6\x71\x02\x00\x00" +var _idtablestakingAdminChange_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\xef\xd2\x40\x10\xc5\xef\xfd\x14\x2f\x3d\x98\x72\x69\x2f\xc6\x43\xa3\x12\x22\x92\x90\x78\x20\x82\x1f\x60\x58\xa6\x74\x65\xd9\x69\xb6\x53\x0b\x31\x7c\x77\xb3\x2d\x28\x08\xff\xb9\x34\x99\xee\xbc\xf7\x9b\x79\xf6\xd8\x48\x50\x2c\x9c\xf4\xcb\xf9\x86\xb6\x8e\xd7\x4a\x07\xeb\xf7\xa8\x82\x1c\x91\x3e\xff\x48\x93\xa4\x28\xb0\xa9\x6d\x0b\x0d\xe4\x5b\x32\x6a\xc5\xc3\xd4\xe4\xf7\xdc\x42\x6b\x46\xe5\xa4\x87\xca\x81\x3d\x7a\xe6\x83\x3b\xa3\xa1\xb3\x74\x9a\x24\x77\x13\x99\xe7\x7e\x35\xb4\x4b\xfc\x58\xd8\xd3\x87\xf7\x13\xfc\x4e\x12\x00\x28\x0a\x7c\x13\x43\x0e\xbf\x28\xd8\x68\x8d\x4a\x02\x08\x81\x2b\x0e\xec\x0d\x43\x65\x30\x5a\xce\x31\xa0\x61\xb6\x3b\x5a\x0f\xd9\xfe\x64\xa3\x83\x84\x63\x05\xc5\xe6\x77\xae\x4a\xbc\x7b\x5e\x23\x1f\x46\x46\xbf\x26\x70\x43\x81\x33\x32\x46\x4b\xcc\x3a\xad\x67\xc6\x48\xe7\x35\x12\xe1\x5a\x45\x81\xad\x84\x20\xfd\x2b\x10\xfa\xdf\x3f\x56\xcb\xae\xca\x6f\x10\xf8\x84\x28\x9f\x8f\x1a\x1f\xdf\x24\xfa\x9c\xc5\xc3\x97\x2f\x12\xc9\xaf\xdf\xe1\xd9\x5a\x25\xd0\x9e\x57\xa4\xf5\xe4\xaf\x61\xac\xe9\x14\x0d\x79\x6b\xb2\xf4\x8b\x74\x6e\x07\x2f\x7a\xe3\x7e\xa0\x6e\xaf\x31\x0f\x7c\xe9\xa8\x71\x19\xcf\xc1\x27\x36\x9d\xf2\xdd\xee\x0f\x9b\xe4\x2d\xeb\xd7\x46\x4c\xbd\x89\x09\x8f\x11\xfe\x0b\xf3\xa6\x74\xf9\x13\x00\x00\xff\xff\x24\xf8\x77\x84\x5a\x02\x00\x00" func idtablestakingAdminChange_payoutCdcBytes() ([]byte, error) { return bindataRead( @@ -2079,11 +1930,11 @@ func idtablestakingAdminChange_payoutCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_payout.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf1, 0x15, 0x65, 0x64, 0x1, 0xa4, 0xaa, 0xc1, 0x1e, 0x57, 0x8c, 0x4f, 0xa7, 0xc2, 0xec, 0xde, 0xbc, 0x6d, 0xad, 0x7a, 0xa, 0xf2, 0x6a, 0x7e, 0xb5, 0x8a, 0x77, 0x9a, 0x2e, 0x9e, 0x83, 0xe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x45, 0xe0, 0xc2, 0xb6, 0xd, 0x3d, 0xb2, 0x34, 0x4e, 0x21, 0x73, 0xca, 0x61, 0xb1, 0xc9, 0xe8, 0xa2, 0xce, 0xef, 0x41, 0xea, 0xe2, 0x59, 0xc1, 0x21, 0x3d, 0x1e, 0x9c, 0xca, 0x58, 0x44, 0xca}} return a, nil } -var _idtablestakingAdminEnd_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\xcf\x6b\xdb\x4e\x10\xc5\xef\xfa\x2b\x1e\x3e\x04\x19\xbe\x48\xf0\x3d\x8a\xb6\x21\x3f\x5a\x30\xe4\x50\x6a\xd3\x6b\x58\xad\x46\xd6\xd6\xf2\x8c\xd8\x1d\x59\x2d\xc1\xff\x7b\x59\x49\x76\xe2\x26\xde\x8b\x40\x3b\xef\xbd\x8f\x66\x46\x6e\xdf\x89\x57\x7c\x6b\x65\x58\x3d\x6e\x4c\xd9\xd2\x5a\xcd\xce\xf1\x16\xb5\x97\x3d\x16\xef\x2f\x16\x49\x92\xe7\xd8\x34\x2e\x40\xbd\xe1\x60\xac\x3a\x61\x50\x5d\x93\x55\x77\xa0\xf6\x0f\x88\xab\x00\x6d\x08\xd4\x89\x6d\x60\xb8\x42\x50\xe3\x35\xc0\x80\x69\x80\x30\x65\x49\x9e\x47\x9f\x95\xc2\xca\xbe\x74\x4c\xb3\x82\xab\xe7\x30\x13\x44\xdd\x5e\x0e\xf4\xac\xb2\x23\xbe\x88\x0b\x51\x3b\x34\xce\x36\xaf\x61\x67\x59\x3f\x96\xfc\x37\xdf\x7b\xaa\xfb\x58\xc2\x52\x51\xc0\xe0\xb4\x81\xe3\xd0\xd7\xb5\xb3\x8e\x58\x47\x19\x45\xbb\x53\x5c\xc0\x9c\x57\x92\x0e\x44\x8c\xb2\xb7\x3b\xd2\x90\x24\x6f\x00\x52\x57\x85\x02\x2f\x6b\xf5\x8e\xb7\x05\xee\x45\xda\xe3\x12\x2f\x49\x02\x00\x79\x8e\x27\xb1\xa6\xc5\xc1\x78\x17\x5b\x87\x5a\x3c\x4c\x44\x21\x4f\x6c\x09\x2a\x23\xf2\xea\x11\x63\x6b\x71\x57\xed\x1d\x43\xca\x5f\x64\x75\xb4\x68\x49\x61\xe2\xcb\x1f\x54\x17\xb8\x79\x3f\x86\x6c\x94\x4c\x79\x9d\xa7\xce\x78\x4a\x8d\xb5\x5a\xc0\xf4\xda\xa4\xf7\xe2\xbd\x0c\x3f\x4d\xdb\xd3\x12\x37\x77\xd6\x4a\xcf\x1a\x01\x31\x9f\x3c\x47\x39\xd6\x7c\xc4\x65\xfe\xc5\x89\x27\x50\x5b\x67\x27\x26\x7c\x46\x4c\xcb\x82\x8a\x37\x5b\xca\x26\xaf\x4f\x57\x41\xbf\xa4\x71\x9f\x8a\x0f\x16\x2d\x9b\x9f\x63\xd9\x7a\xb2\xfb\x6e\xb4\x59\x9e\x83\xe3\xb9\xbd\x45\x67\xd8\xd9\x74\xf1\x20\x7d\x5b\x81\x45\x4f\xfc\x17\xf4\xe7\x25\x88\x6e\x8b\xc9\xe3\x38\x75\x89\x7e\x93\xed\x95\xde\xf4\xe0\xe2\x8b\xb2\x40\x7a\xd7\x75\x5e\x0e\x54\x3d\xb9\xa0\x71\xc2\xaf\x0c\x57\x34\xc4\xd5\x09\x7f\xda\xba\x74\x99\x5c\x29\x8d\xab\xb5\x19\x17\x2b\x65\x1a\xbe\xc6\x3f\xe3\x21\x0e\x85\x7c\x81\xff\x4f\xa0\xc7\xe4\x6f\x00\x00\x00\xff\xff\x8d\x3c\x5c\x65\x91\x03\x00\x00" +var _idtablestakingAdminEnd_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xcf\x8a\xdb\x4c\x10\xc4\xef\x7a\x8a\xc2\x87\x0f\x19\x3e\xa4\xbb\x49\xb2\x38\x59\x02\x86\x3d\x84\xd8\xf7\x65\x34\x6a\x59\x13\x4b\xdd\x62\xa6\x65\x25\x2c\x7e\xf7\x30\xfa\xe3\x5d\x67\xd7\x73\x11\x68\xba\xaa\x7e\xd3\xdd\xae\xed\xc4\x2b\xbe\x37\x32\xec\x1e\x0f\xa6\x68\x68\xaf\xe6\xe4\xf8\x88\xca\x4b\x8b\xd5\xfb\x8b\x55\x92\xe4\x39\x0e\xb5\x0b\x50\x6f\x38\x18\xab\x4e\x18\x54\x55\x64\xd5\x9d\xa9\xf9\x03\xe2\x32\x40\x6b\x02\x75\x62\x6b\x18\x2e\x11\xd4\x78\x0d\x30\x60\x1a\x20\x4c\x59\x92\xe7\xd1\x67\xa7\xb0\xd2\x16\x8e\x69\x56\x70\xf9\x1c\x66\x82\xa8\x6b\xe5\x4c\xcf\x2a\x27\xe2\x9b\xb8\x10\xb5\x43\xed\x6c\xfd\x1a\x76\x95\xf5\x63\xc9\xff\xf3\xbd\xa7\xaa\x8f\x25\x2c\x25\x05\x0c\x4e\x6b\x38\x0e\x7d\x55\x39\xeb\x88\x75\x94\x51\xb4\x5b\xe2\x02\xe6\xbc\x82\x74\x20\x62\x14\xbd\x3d\x91\x86\x24\x79\x03\x90\xba\x32\x6c\xf0\xb2\x57\xef\xf8\xb8\xc1\x57\x91\xe6\xb2\xc6\x4b\x92\x00\x40\x9e\xe3\x49\xac\x69\x70\x36\xde\xc5\xd6\xa1\x12\x0f\x13\x51\xc8\x13\x5b\x82\xca\x88\xbc\x7b\xc4\xd8\x5a\x6c\xcb\xd6\x31\xa4\xf8\x45\x56\x47\x8b\x86\x14\x26\xfe\xfc\x49\xd5\x06\xff\xbd\x1f\x43\x36\x4a\xa6\xbc\xce\x53\x67\x3c\xa5\xc6\x5a\xdd\x60\xdb\x6b\xbd\xb5\x56\x7a\xd6\x48\x84\xf9\xe4\x39\x0a\xf1\x5e\x86\x8f\x40\xcc\xbf\xf9\xf1\x04\x6a\xaa\x6c\x81\xc0\x67\x44\xfb\x6c\xf2\xf8\x74\x97\xe8\x4b\x1a\x17\x67\xf3\xc1\x46\x65\xf3\x77\x2c\xdb\xab\x78\x73\xa4\x1f\x46\xeb\xf5\x35\x30\x9e\x87\x07\x74\x86\x9d\x4d\x57\xdf\xa4\x6f\x4a\xb0\xe8\xc2\x7d\x43\x7d\x9d\x76\x74\x5b\x4d\x1e\x97\xa9\x1d\xf4\x9b\x6c\xaf\xf4\xe6\xed\x37\x2f\xc9\x02\xe9\xb6\xeb\xbc\x9c\xa9\x7c\x72\x41\xe3\x28\x5f\x19\xee\x68\x88\xcb\x05\x7f\x5a\xaf\x74\x9d\xdc\x29\x8d\x3b\x74\x18\x37\x28\x5d\xb0\x2e\xc9\xdf\x00\x00\x00\xff\xff\x2f\x6a\xaa\x29\x68\x03\x00\x00" func idtablestakingAdminEnd_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -2099,11 +1950,11 @@ func idtablestakingAdminEnd_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/end_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8a, 0x39, 0xa5, 0x67, 0xa9, 0xac, 0xdd, 0x37, 0xb9, 0xd1, 0xa, 0x19, 0x7d, 0x6a, 0xea, 0xd1, 0xc7, 0x67, 0x66, 0x30, 0x20, 0x98, 0x41, 0x85, 0x6a, 0x3c, 0x10, 0x5, 0x47, 0x5f, 0xc4, 0x20}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x32, 0x98, 0xb1, 0x28, 0xfb, 0x71, 0x79, 0x2a, 0xdc, 0xb4, 0xe1, 0x28, 0xbb, 0x32, 0x25, 0x97, 0xeb, 0x6, 0x49, 0x43, 0x13, 0x3e, 0x2b, 0x7a, 0x93, 0x8c, 0x1c, 0x7d, 0xaa, 0x6, 0x32, 0x8}} return a, nil } -var _idtablestakingAdminEnd_epoch_change_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x0c\x41\x82\x52\x7a\x10\x6d\x43\xfe\x34\x60\xc8\x21\xd4\x6e\xaf\x61\xb5\x1a\x59\x5b\x4b\x3b\x62\x77\x64\x25\x04\x7f\xf7\xb2\xfa\xe3\x36\x75\xdc\xbd\x08\xb4\x33\xef\xfd\x66\xe7\x99\xa6\x65\x27\xb8\xaf\xb9\x5f\xdd\x6d\x54\x5e\xd3\x5a\xd4\xce\xd8\x2d\x4a\xc7\x0d\x16\xa7\x17\x8b\x28\x4a\x53\x6c\x2a\xe3\x21\x4e\x59\xaf\xb4\x18\xb6\xa0\xb2\x24\x2d\x66\x4f\xf5\x0b\xc8\x16\x1e\x52\x11\xa8\x65\x5d\x41\xd9\x02\x5e\x94\x13\x0f\x05\x4b\x3d\xd8\x52\x12\xa5\x69\xd0\x59\x09\x34\x37\xb9\xb1\x34\x75\xd8\xe2\xc9\x4f\x04\xa1\xaf\xe1\x3d\x3d\x09\xef\xc8\xbe\xb1\xf3\xa1\xb7\xaf\x8c\xae\xfe\x98\x1d\xdb\xba\xa1\xe4\x72\xba\x77\x54\x76\xa1\xc4\x72\x41\x1e\xbd\x91\x0a\xc6\xfa\xae\x2c\x8d\x36\x64\x65\x68\xa3\x20\x37\xdb\x79\x4c\x7e\x39\x49\x4f\x64\x91\x77\x7a\x47\xe2\xa3\xe8\x2f\x80\xd8\x14\x3e\xc3\xeb\x5a\x9c\xb1\xdb\x0c\x37\xcc\xf5\xe1\x32\x0c\xf7\xa8\x5e\xb8\x93\x0c\x3f\xee\xcd\xf3\xa7\x8f\x4b\xbc\x46\x11\x00\xa4\x29\x1e\x58\xab\x1a\x7b\xe5\x4c\x78\x4d\x94\xec\xa0\x02\x1d\x39\xb2\x9a\x20\x3c\x4c\xb1\xba\xc3\xf0\xda\xb8\x2e\x1a\x63\xc1\xf9\x2f\xd2\x32\x48\xd4\x24\x50\xe1\xe7\x77\x2a\x33\x5c\x9c\x6e\x26\x19\x5a\x46\xbf\xd6\x51\xab\x1c\xc5\x4a\x6b\xc9\xa0\x3a\xa9\xe2\x1b\x76\x8e\xfb\x9f\xaa\xee\x68\x89\x8b\x6b\xad\xb9\xb3\x12\x00\x31\x9d\x34\x45\x3e\xd4\xbc\xc7\xa5\xfe\xc5\x09\xc7\x53\x5d\x26\x33\x13\xbe\x20\xb8\x25\x5e\xd8\xa9\x2d\x25\xa3\xd6\xe7\xb3\xa0\x5f\xe3\x10\xb1\xec\x9d\xec\x25\xd3\x77\x28\x5b\x8f\x72\x8f\x4a\xaa\xe5\xd1\x38\x9c\xab\x2b\xb4\xca\x1a\x1d\x2f\x6e\xb9\xab\x0b\x58\x96\x99\xff\x0d\xfd\x31\x17\x41\x6d\x31\x6a\x1c\xc6\x57\xa2\x67\xd2\x9d\xd0\xbc\xa4\x93\x91\x12\x4f\xf2\x2d\x64\x78\x13\x12\x31\xae\x36\x3e\x2e\x79\xf9\x9f\xae\xeb\xb6\x75\xbc\xa7\xe2\xc1\x78\x09\x59\x39\x5b\x4b\xb6\x98\xa7\x1d\x73\x1b\x9f\x2d\x0d\xe1\x1c\x40\x7c\x60\x18\xb8\x6e\xc3\x0e\xc9\x65\xf8\x30\xcf\x75\x88\x7e\x07\x00\x00\xff\xff\x68\xee\x57\x96\xd3\x03\x00\x00" +var _idtablestakingAdminEnd_epoch_change_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\x4d\x6b\xdb\x40\x10\xbd\xeb\x57\x3c\x7c\x28\x32\x04\xe9\x52\x7a\x10\x6d\x83\xdb\x34\x60\xc8\x21\xd4\xee\x39\xac\x56\x23\x6b\x6b\x69\x47\xec\x8e\xac\x84\xe0\xff\x5e\x56\x1f\x6e\x53\xdb\x99\x8b\x40\x3b\xef\x63\x66\x9e\x69\x5a\x76\x82\xfb\x9a\xfb\xf5\xdd\x56\xe5\x35\x6d\x44\xed\x8d\xdd\xa1\x74\xdc\x60\x71\xfe\xb0\x88\xa2\x34\xc5\xb6\x32\x1e\xe2\x94\xf5\x4a\x8b\x61\x0b\x2a\x4b\xd2\x62\x0e\x54\xbf\x80\x6c\xe1\x21\x15\x81\x5a\xd6\x15\x94\x2d\xe0\x45\x39\xf1\x50\xb0\xd4\x83\x2d\x25\x51\x9a\x06\x9e\xb5\x40\x73\x93\x1b\x4b\x13\xc2\x16\x4f\x7e\x72\x10\x70\x0d\x1f\xe8\x49\x78\x4f\xf6\x8d\x9c\x0f\xd8\xbe\x32\xba\xfa\x2b\x76\x82\x75\x43\xcb\xcd\xf4\xee\xa8\xec\x42\x8b\xe5\x82\x3c\x7a\x23\x15\x8c\xf5\x5d\x59\x1a\x6d\xc8\xca\x00\xa3\x40\x37\xcb\x79\x4c\x7a\x39\x49\x4f\x64\x91\x77\x7a\x4f\xe2\xa3\xe8\x1f\x03\xb1\x29\x7c\x86\xd7\x8d\x38\x63\x77\x19\xbe\x31\xd7\xc7\x9b\x30\xdc\xa3\x7a\xe1\x4e\x32\xfc\xba\x37\xcf\x9f\x3e\x2e\xf1\x1a\x45\x00\x90\xa6\x78\x60\xad\x6a\x1c\x94\x33\x61\x9b\x28\xd9\x41\x05\x77\xe4\xc8\x6a\x82\xf0\x30\xc5\xfa\x0e\xc3\xb6\xb1\x2a\x1a\x63\xc1\xf9\x6f\xd2\x32\x50\xd4\x24\x50\xe1\xe7\x4f\x2a\x33\x7c\x38\xbf\x4c\x32\x40\x46\xbd\xd6\x51\xab\x1c\xc5\x4a\x6b\xc9\xb0\xea\xa4\x5a\x69\xcd\x9d\x95\xe0\x08\x53\xa5\x29\x72\x76\x8e\xfb\x4b\x46\xd4\xff\xfa\xa1\x3c\xd5\x65\x32\x9b\xc0\x17\x04\xfa\x64\xe4\xf8\x7c\xd5\xd1\xd7\x38\x64\x29\xbb\x10\xb2\x64\xfa\x0e\x6d\x1b\x61\xa7\x76\xf4\xa8\xa4\x5a\x9e\x04\x43\xdd\xde\xa2\x55\xd6\xe8\x78\xf1\x9d\xbb\xba\x80\x65\x99\x7d\xbf\x71\x7d\x0a\x40\x60\x5b\x8c\x1c\xc7\x71\x1d\xf4\x4c\xba\x13\x9a\xaf\x71\x36\x4a\xe2\x49\x7e\x84\xb0\x6e\xc3\xe9\xc7\x1b\xc6\xa7\x6b\x2e\xdf\x41\xad\xda\xd6\xf1\x81\x8a\x07\xe3\x25\x84\xe2\x6a\x2f\xd9\x62\x9e\x76\x0c\x68\x7c\xb5\x35\xa4\x70\x30\xe2\xe3\x79\x8a\x63\xf4\x27\x00\x00\xff\xff\xd2\xdb\xc3\xe1\xaa\x03\x00\x00" func idtablestakingAdminEnd_epoch_change_payoutCdcBytes() ([]byte, error) { return bindataRead( @@ -2119,11 +1970,11 @@ func idtablestakingAdminEnd_epoch_change_payoutCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/end_epoch_change_payout.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x3f, 0xf, 0xc8, 0x75, 0x2e, 0x7b, 0xe1, 0x35, 0x4d, 0x36, 0x48, 0x6d, 0x3c, 0xa5, 0x9c, 0x43, 0x74, 0xdf, 0x63, 0xab, 0xba, 0xae, 0x2c, 0xf9, 0xf4, 0xf4, 0xa, 0xb6, 0xd9, 0xbb, 0xb3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdf, 0x64, 0x39, 0xf5, 0xd7, 0x48, 0xa8, 0x6c, 0xfd, 0x2b, 0x3, 0x2f, 0xb, 0xd3, 0x83, 0x39, 0x1e, 0xd9, 0x6e, 0xe1, 0x73, 0xc, 0x9c, 0xd0, 0xa, 0xc9, 0xc9, 0x38, 0xf3, 0x85, 0xce, 0x87}} return a, nil } -var _idtablestakingAdminEnd_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x0f\x1f\x82\x0c\x45\xba\x8b\xb6\xc1\x69\x28\x04\x72\x28\x75\xe8\x7d\xbc\x1a\x59\xdb\xae\x77\xc4\xee\x6c\x54\x08\xfe\xef\x65\x57\x56\x68\xeb\x64\x2e\x02\xcd\xcc\x7b\xdf\xe8\xc9\x9e\x26\x09\x8a\xaf\x4e\xe6\x87\xfb\x27\x3a\x38\xde\x2b\xfd\xb2\xfe\x88\x21\xc8\x09\x9b\xeb\xc6\xa6\xaa\xda\x16\x4f\xa3\x8d\xd0\x40\x3e\x92\x51\x2b\x1e\xec\xfb\x08\x1d\x19\xf1\xb2\x4f\xa9\x34\x3e\x60\x1e\xad\x19\x11\x78\x48\x79\xc4\x4b\xcf\x11\x59\x62\xb6\x3a\xc2\xfa\x98\x86\xc1\x1a\xcb\x5e\xcb\x2a\x57\xd5\x5f\xb2\xb5\xed\x63\x87\x97\xbd\x06\xeb\x8f\x1d\xee\x44\xdc\x79\x8b\x97\xaa\x02\x80\xb6\xc5\xa3\x18\x72\x78\xa6\x60\x33\x21\x06\x09\xa0\x6c\xc5\x81\xbd\x61\xa8\x14\xa4\x87\x7b\x94\x0b\xb0\xeb\x4f\xd6\x43\x0e\x3f\xd9\x68\x91\x70\xac\xa0\xfc\xf2\x3b\x0f\x1d\x6e\xae\xaf\x6d\xca\xca\xe2\x37\x05\x9e\x28\x70\x4d\xc6\x68\x07\x4a\x3a\xd6\x77\x12\x82\xcc\x3f\xc8\x25\xde\xe2\x66\x67\x8c\x24\xaf\x19\x10\x97\x6a\x5b\x1c\xca\xcc\x5b\x5c\xf4\x3f\x4e\xae\xc8\x6e\x68\x56\x26\x7c\x42\x76\x6b\xa2\x4a\xa0\x23\x37\x8b\xd6\xc7\x77\x41\x3f\xd7\x39\xb6\xee\x8d\x3c\x9b\xcb\xb3\x8c\xed\x17\xb9\x6f\xa4\xe3\xf6\xd5\x38\xd7\xed\x2d\x26\xf2\xd6\xd4\x9b\x2f\x92\x5c\x0f\x2f\xba\xf2\xff\x43\xff\x1a\x72\x56\xdb\x2c\x1a\xe7\xe5\x2b\xf1\x6f\x36\x49\x79\x0d\xe9\xea\xa4\x26\xb2\xee\xa6\x29\xc8\x33\xf7\x8f\x36\x6a\x8e\x78\xfb\xde\x2c\xfb\x7e\xe5\x5e\x7e\xa7\x7a\xf5\x3a\xff\x09\x00\x00\xff\xff\x12\x49\x6b\xee\xba\x02\x00\x00" +var _idtablestakingAdminEnd_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xd1\x6a\xb3\x40\x10\x85\xef\x7d\x8a\x83\x17\x3f\x06\x7e\xf4\x5e\xda\x06\xdb\x50\x08\xe4\xa2\x34\x79\x81\xcd\x3a\xc6\x6d\xcd\x8e\xec\x8e\xb1\x10\xf2\xee\x65\x35\x86\xb6\x49\xe6\x46\x70\x66\xce\xf9\xc6\xa3\xd9\xb7\xec\x04\xaf\x0d\xf7\xcb\xc5\x46\x6d\x1b\x5a\x8b\xfa\x34\x76\x87\xca\xf1\x1e\xf1\x75\x23\x8e\xa2\x2c\xc3\xa6\x36\x1e\xe2\x94\xf5\x4a\x8b\x61\x0b\xb2\xa5\x87\xd4\x04\x7f\xde\x57\xdd\xd0\xf8\x8f\xbe\x36\xba\x86\xa3\xaa\x0b\x23\x96\x4b\xf2\x08\x12\xbd\x91\x1a\xc6\xfa\xae\xaa\x8c\x36\x64\x65\x58\xa5\x28\xfa\x21\x9b\x98\xd2\xe7\x38\xae\xc5\x19\xbb\xcb\xf1\xcc\xdc\x9c\x66\x38\x46\x11\x00\x64\x19\x56\xac\x55\x83\x83\x72\x26\x10\xa2\x62\x07\x15\xac\xc8\x91\xd5\x04\xe1\x01\x69\xb9\xc0\x70\x01\x8a\x72\x6f\x2c\x78\xfb\x41\x5a\x06\x89\x86\x04\x2a\xbc\x7c\xa7\x2a\xc7\xbf\xeb\x6b\xd3\x61\x65\xf4\x6b\x1d\xb5\xca\x51\xa2\xb4\x96\x1c\x45\x27\x75\xa1\x35\x77\x56\x02\x11\xce\x95\x65\xd8\xb2\x73\xdc\xdf\x02\x51\x7f\xfd\x43\x79\x6a\xaa\x74\x82\xc0\x23\x82\x7c\x3a\x6a\x3c\xdc\x25\x7a\x4a\x42\x3e\xf9\x8d\xe0\xd2\xf3\x73\x18\x5b\x0b\x3b\xb5\xa3\x37\x25\xf5\xec\x62\x18\x6a\x3e\x47\xab\xac\xd1\x49\xfc\xc2\x5d\x53\xc2\xb2\x4c\xdc\xbf\xa8\x2f\x69\x06\xb5\x78\xd4\x38\x8d\x9f\x83\xbe\x48\x77\x42\x53\x1a\x57\xa7\xa4\x9e\xa4\x68\x5b\xc7\x07\x2a\x57\xc6\x4b\xc8\x72\x76\x6f\x96\x6c\x39\x71\x8f\xff\x4d\x32\x79\x9d\xbe\x03\x00\x00\xff\xff\x4d\x67\x31\xf2\xa3\x02\x00\x00" func idtablestakingAdminEnd_stakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2139,11 +1990,11 @@ func idtablestakingAdminEnd_stakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/end_staking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0xb3, 0xec, 0x2e, 0x69, 0xa9, 0x17, 0x98, 0x82, 0xc1, 0xe2, 0x4f, 0xf2, 0xd4, 0x82, 0xe9, 0x56, 0x9d, 0xb1, 0xdc, 0xbe, 0x9a, 0xd7, 0x2d, 0x12, 0x75, 0x92, 0x64, 0x6, 0x1d, 0x90, 0x10}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xae, 0xdc, 0x3, 0x82, 0x3b, 0x77, 0x26, 0xfd, 0xc5, 0x15, 0xfc, 0xb5, 0xfd, 0xaa, 0x8c, 0x88, 0x2c, 0xd0, 0x8b, 0xd7, 0x63, 0xb6, 0x42, 0x50, 0x3b, 0xa9, 0xb5, 0xb4, 0xc4, 0xaf, 0x86, 0x73}} return a, nil } -var _idtablestakingAdminMove_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\xab\x9b\x40\x14\x85\xf7\xfe\x8a\x83\x8b\x87\xd9\x28\x74\x29\x6d\x1f\xaf\x49\x0b\x81\x2e\x4a\x13\xba\xbf\x4e\xae\xd1\x46\xe7\xca\xcc\x35\x16\x42\xfe\x7b\x99\x31\x29\x49\x93\x37\x1b\x41\x8f\xe7\x7c\x73\x4e\xdb\x0f\xe2\x14\xdf\x3a\x99\xd6\xab\x2d\x55\x1d\x6f\x94\x0e\xad\xdd\xa3\x76\xd2\x23\x7d\xfc\x90\x26\x49\x51\x60\xdb\xb4\x1e\xea\xc8\x7a\x32\xda\x8a\x45\x2f\x47\xf6\x50\x39\xb0\xf5\xa8\x58\x27\x66\x8b\x6a\x34\x07\x56\x9f\x24\xb7\xca\x53\x92\x00\x40\x51\xe0\xbb\x18\xea\x70\x24\xd7\x06\x7f\xd4\xe2\x40\x70\x5c\xb3\x63\x6b\x18\x2a\xd0\x86\xb1\x5e\x21\xe6\xe3\x6d\xd7\xb7\x16\x52\xfd\x66\xa3\xd1\xa2\x63\x05\x85\x97\x3f\xb9\x2e\xf1\xf2\xc8\x9a\xc7\x5f\xe6\xbc\xc1\xf1\x40\x8e\x33\x32\x46\x4b\xd0\xa8\x4d\xf6\x45\x9c\x93\xe9\x17\x75\x23\x2f\xf0\xf2\x66\x8c\x8c\x56\x17\x38\x45\xfd\x85\xb1\x8a\x9a\x67\x5c\xf4\x3f\x4e\x38\x9e\xbb\x3a\xbf\x32\xe1\x13\x42\x5a\xee\x55\x1c\xed\x39\x9f\xbd\x3e\xbe\x0b\xfa\x39\x0b\xa5\x97\x4f\xd6\xc8\x2f\xcf\x28\xdb\xcc\x76\x3f\x48\x9b\xc5\xbf\xe0\x70\x5e\x5f\x31\x90\x6d\x4d\x96\x2e\x65\xec\x76\xb0\xa2\x57\xfe\x3b\x7a\x7f\x99\x38\x72\xa6\xb3\xc7\x79\x6e\x89\xff\xb0\x19\x95\x6f\x3a\xb8\xbb\x51\x1e\x66\xde\xc6\x91\x33\xcb\xd3\xd7\x41\x4c\xb3\x0c\xad\xb1\x2b\xf1\xe1\xea\x74\xfe\x1b\x00\x00\xff\xff\x57\x3b\x5b\xb4\x56\x02\x00\x00" +var _idtablestakingAdminMove_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6b\xfa\x40\x10\xc5\xef\xf9\x14\x8f\x1c\xfe\xc4\x4b\x72\x97\x7f\x2b\x52\x29\x08\x3d\x94\xea\x17\x98\xac\x13\x93\x9a\xec\x84\xdd\x89\x16\xc4\xef\x5e\x76\xa3\x45\xab\x9d\x4b\x20\x3b\xf3\xde\x6f\xe6\x35\x5d\x2f\x4e\xf1\xda\xca\x61\xb9\x58\x53\xd9\xf2\x4a\x69\xd7\xd8\x2d\x2a\x27\x1d\xd2\xfb\x87\x34\x49\x8a\x02\xeb\xba\xf1\x50\x47\xd6\x93\xd1\x46\x2c\x3a\xd9\xb3\x87\xca\x8e\xad\x47\xc9\x7a\x60\xb6\x28\x07\xb3\x63\xf5\x49\x72\xdd\x79\x4c\x12\x00\x28\x0a\xbc\x89\xa1\x16\x7b\x72\x4d\xd0\x47\x25\x0e\x04\xc7\x15\x3b\xb6\x86\xa1\x02\xad\x19\xcb\x05\xa2\x3f\xe6\x9b\xae\xb1\x90\xf2\x93\x8d\x46\x89\x96\x15\x14\x7e\x7e\x70\x35\xc5\xbf\x7b\xd6\x3c\x8e\x8c\x7e\xbd\xe3\x9e\x1c\x67\x64\x8c\x4e\x31\x1f\xb4\x9e\x1b\x23\x83\xd5\x09\x8e\xb1\xe1\x0c\x55\x8a\x73\x72\x78\x04\x42\xbf\xfd\x43\x79\x6e\xab\xfc\x02\x81\x27\x04\xf9\x7c\xd4\xf8\xff\x27\xd1\x73\x16\xae\x3b\x7d\x70\xf6\xfc\xfc\x8d\x6d\x2b\x15\x47\x5b\x7e\x27\xad\x27\x3f\x86\xa1\x66\x33\xf4\x64\x1b\x93\xa5\x2f\x32\xb4\x1b\x58\xd1\x0b\xf7\x0d\xb5\x3f\x67\x19\xf9\xd2\x51\xe3\x34\x9e\x83\xbf\xd8\x0c\xca\x57\xbb\xdf\x6c\x92\x87\x3c\xd7\x31\xcd\xec\x32\x77\xfa\x0e\x00\x00\xff\xff\x90\x2d\xa0\xc7\x2d\x02\x00\x00" func idtablestakingAdminMove_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2159,11 +2010,11 @@ func idtablestakingAdminMove_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/move_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0x12, 0x76, 0x16, 0xfb, 0xc4, 0x12, 0x4, 0xa9, 0x4, 0x1, 0x23, 0xe9, 0x22, 0x31, 0x3c, 0x95, 0x93, 0x2e, 0x67, 0x21, 0x9a, 0xcb, 0xeb, 0x32, 0x88, 0x84, 0x4b, 0x2c, 0x36, 0x3e, 0xea}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb9, 0x2f, 0xf4, 0xd9, 0xd5, 0xf0, 0x8c, 0xe5, 0x6a, 0x8a, 0x18, 0xd4, 0x1f, 0x6e, 0xf5, 0xb6, 0x53, 0xf5, 0xb9, 0x2e, 0xa9, 0x23, 0xf1, 0x3d, 0xe4, 0xa1, 0x36, 0x12, 0xe0, 0x65, 0xa1, 0x58}} return a, nil } -var _idtablestakingAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x0f\x1f\x82\x04\x45\xa2\x57\xd1\x34\xa4\x49\x0b\x81\x1e\x4a\x1c\x7a\x1f\xaf\x46\x91\x9a\xd5\x8e\x98\x1d\xd5\x35\x21\xff\xbd\xac\x64\x95\xa4\x76\xf6\x22\x90\xde\xbe\xf7\xe9\xcd\xf4\xc3\x28\x6a\xf8\xe6\x65\x7f\x77\xfb\x40\x3b\xcf\x5b\xa3\xa7\x3e\x3c\xa2\x55\x19\xb0\x39\xfd\xb0\xc9\xb2\xaa\xc2\x43\xd7\x47\x98\x52\x88\xe4\xac\x97\x80\x91\x0e\x11\xca\x7b\xd2\x26\xc2\x04\xe4\x3d\xac\x63\x44\xa3\x27\x6e\x10\xa4\xe1\x98\x65\xaf\x6f\x3c\x67\x19\x00\x54\x15\xbe\x8b\x23\x8f\xdf\xa4\x7d\xca\x41\x2b\x0a\x82\x72\xcb\xca\xc1\x71\x72\x4b\x4e\x77\xb7\x98\x39\x70\xdd\x0c\x7d\x80\xec\x7e\xb1\xb3\xd9\xc2\xb3\x81\xd2\xcb\x7b\x6e\x6b\x5c\x9c\x32\x97\xf3\x95\x25\x6f\x54\x1e\x49\x39\x27\xe7\xac\x06\x4d\xd6\xe5\x5f\x44\x55\xf6\x3f\xc9\x4f\x5c\xe0\xe2\xda\x39\x99\x82\x15\x78\x9e\xf5\x47\xc6\xdd\xac\x39\xc7\x45\xff\xe3\xa4\x13\xd9\xb7\xe5\xca\x84\x4b\xa4\xb4\x32\x9a\x28\x3d\x72\xb9\x78\x7d\x7a\x17\xf4\x73\x9e\xca\xaf\xcf\x4c\xa5\x3c\x3e\x67\xd9\x76\xb1\xfb\x41\xd6\x15\xff\x82\xd3\xb9\xba\xc2\x48\xa1\x77\xf9\xe6\x46\x26\x9f\xca\xb7\x95\xff\x0d\x7d\x3c\x8e\x7a\xe6\xdc\x2c\x1e\x2f\x4b\x4b\xfc\x87\xdd\x64\xfc\xaa\x83\x54\x72\x9c\x86\x81\xf4\x80\xcb\xb7\xff\x57\x3a\xf2\x6e\xf2\x64\x7c\xbf\x2c\x40\x5e\x9c\x2f\xa2\x1c\xe9\xb0\x4a\x5a\xd1\xaf\xa3\xb8\xee\x26\x95\xcd\x5a\xe3\xe3\x87\x75\x7f\xb6\x4b\x4c\xbd\xe6\xad\x64\x2f\x7f\x03\x00\x00\xff\xff\xca\xd7\x91\xe9\xae\x02\x00\x00" +var _idtablestakingAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4f\x6b\xc2\x40\x10\xc5\xef\xf9\x14\x8f\x1c\x4a\xbc\x24\x77\xa9\x15\xa9\x14\x84\x1e\x8a\xfa\x05\xc6\xcd\xc4\xa4\x6e\x76\xc3\xee\xa4\x56\xc4\xef\x5e\x36\x7f\x8a\x56\x3b\x97\x40\x76\xe6\xbd\xdf\xbc\xa9\xea\xc6\x3a\xc1\x9b\xb6\xc7\xd5\x72\x4b\x3b\xcd\x1b\xa1\x43\x65\xf6\x28\x9c\xad\x11\xdf\x3f\xc4\x51\x94\x65\xd8\x96\x95\x87\x38\x32\x9e\x94\x54\xd6\xa0\xa1\x93\x87\xe3\x23\xb9\xdc\x43\x2c\x48\x6b\x48\xc9\xf0\x42\x07\xce\x61\x6c\xce\x3e\x8a\xae\x27\xce\x51\x04\x00\x59\x86\x77\xab\x48\xe3\x8b\x5c\x15\x7c\x50\x58\x07\x82\xe3\x82\x1d\x1b\xc5\x41\x2d\x28\xad\x96\xe8\x38\xb0\xc8\xeb\xca\xc0\xee\x3e\x59\x49\x27\xa1\x59\x40\xe1\xe7\x9a\x8b\x29\x9e\xee\x99\xd3\x6e\xa4\xf7\x6b\x1c\x37\xe4\x38\x21\xa5\x64\x8a\x45\x2b\xe5\x42\x29\xdb\x1a\x99\xe0\xdc\x35\x0c\x50\x3b\xeb\x9c\x3d\x3e\x02\xa1\xbf\xfe\xa1\x3c\xeb\x22\x1d\x21\x30\x43\x90\x4f\x7b\x8d\xe7\x7f\x89\x5e\x92\x90\xf2\xf4\x41\xfc\xe9\xf0\xed\xda\x36\x62\x1d\xed\xf9\x83\xa4\x9c\xfc\x1a\x86\x9a\xcf\xd1\x90\xa9\x54\x12\xbf\xda\x56\x87\x94\x65\xe4\xbe\xa1\xf6\xc3\x4d\x3b\xbe\xb8\xd7\xb8\xf4\x71\xf0\x37\xab\x56\xf8\x6a\xf7\x90\xa6\x6f\xeb\x9a\xdc\x09\xb3\xdb\xbd\x52\x45\x5a\xb5\x9a\x84\xd7\xfd\xa5\x93\xc9\xe3\x00\xd2\x86\x4e\x63\xcb\xa0\x35\xba\x5e\x7e\x02\x00\x00\xff\xff\x63\xa2\x73\xb4\x73\x02\x00\x00" func idtablestakingAdminPay_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -2179,11 +2030,11 @@ func idtablestakingAdminPay_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/pay_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x72, 0xa1, 0x77, 0xd1, 0xb0, 0xeb, 0xf3, 0x3e, 0x3d, 0x4e, 0x76, 0xb5, 0xee, 0x90, 0xec, 0xf4, 0xd4, 0xa5, 0x89, 0xb1, 0xe2, 0xc2, 0xf1, 0x5b, 0x49, 0x6b, 0x10, 0x62, 0xf2, 0x54, 0xaf, 0x4a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xb9, 0xbd, 0xe3, 0x6, 0xc8, 0xd5, 0xb2, 0xfc, 0x2b, 0xbf, 0x48, 0x95, 0x5, 0xb, 0x66, 0x5d, 0x94, 0xad, 0x5e, 0x64, 0xc3, 0xa3, 0xee, 0x30, 0xbc, 0xcb, 0x11, 0x4a, 0xe5, 0x88, 0x1}} return a, nil } -var _idtablestakingAdminRemove_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x4f\x6b\xdb\x40\x10\xc5\xcf\xd6\xa7\x78\xf8\x10\x64\x68\xa5\xbb\x69\x1a\xd2\x9a\x82\x21\x34\x25\x31\xbd\x84\x1c\xc6\xd2\xc8\xda\x76\xbd\x2b\x76\xc7\x76\x4c\xf0\x77\x2f\xa3\x95\xda\xfc\x71\xf7\x22\xd8\x99\x79\xf3\xdb\x99\x27\xb3\xed\x7c\x10\x7c\xb3\xfe\xb0\x5c\xac\x68\x6d\xf9\x5e\xe8\xb7\x71\x1b\x34\xc1\x6f\x31\x7d\x1f\x98\x66\x59\x59\x62\xd5\x9a\x08\x09\xe4\x22\x55\x62\xbc\x43\xe0\xad\xdf\x73\x84\xf3\x35\x63\xb9\x88\xa9\x5e\x5a\x86\x35\x51\xe0\x1b\x50\xd7\x05\xbf\xe7\xba\x4f\x89\x30\x4e\x75\x34\x61\xb9\x80\x68\x83\x02\x7a\xb3\x6c\x40\xee\xa8\x05\x29\x16\xb1\xb8\xc5\xf7\xdb\x15\xf8\x49\x85\xc8\x06\xa6\xfa\x08\xe3\xfa\xb8\xa9\xd9\x89\x91\x63\x52\xf8\x00\x69\x4d\xec\x75\x5f\xa0\x1d\x8c\xb5\x08\xbc\xe7\x20\xc8\x9d\x17\x2d\xda\x76\x5e\xd8\xc9\x2c\xcb\x5e\x64\xe6\xa6\x8e\x73\x3c\xdc\x4b\x30\x6e\xf3\x38\xc3\x73\x96\x01\x40\x59\xe2\xc6\x57\x64\xb1\xa7\x60\xb4\x0d\x1a\x1f\x40\x08\xdc\x70\x60\x57\x31\xc4\x8f\x0f\xe9\x27\x85\xeb\x7a\x6b\x1c\xfc\xfa\x17\x57\xd2\x4b\x58\x16\x90\x5e\xde\x71\x33\xc7\xc5\xfb\xa9\x16\x7d\x49\xea\xd7\x05\xee\x28\x70\x4e\x55\x25\x73\xd0\x4e\xda\xfc\x8b\x0f\xc1\x1f\x7e\x92\xdd\xf1\x0c\x17\xd7\x55\xe5\x77\x4e\x14\x10\xc3\x29\x4b\xac\xfb\x9c\x73\x5c\xf4\x16\x47\x4f\x64\xdb\x14\x23\x13\x2e\xa1\xdd\x8a\x28\x3e\xd0\x86\x8b\xa4\xf5\xe9\xbf\xa0\x9f\x73\x5d\xef\xfc\x8c\x6f\x8a\xe1\xdb\xa7\xdd\x27\xb9\x1f\x24\xed\xec\x6f\x63\x3d\x57\x57\xe8\xc8\x99\x2a\x9f\x7e\xf5\x3b\xab\x96\x90\x91\xff\x15\x7d\x1c\xcc\xd8\x73\x4e\x93\xc6\x29\x4d\x89\x9f\xb8\xda\x09\xe3\x39\x9b\xe8\x74\xd5\x54\x6a\x96\xcb\x73\x4c\x1b\x96\xeb\xc1\x7d\x37\x26\x4a\xfe\x0f\xe6\x1c\x88\x1a\x6c\x74\x6b\x72\x6f\xef\xe5\x61\x36\xd3\x59\x96\x4d\xca\x72\x30\x3c\x98\xaa\x36\x99\x3e\x9b\xa8\x2d\x12\xc7\xca\xdf\xa5\xb0\x71\x30\x75\x54\xc8\xc9\x40\xf8\xf0\x3a\xe3\x11\x97\x70\xc6\x66\x93\x53\x92\x8d\x2c\x69\x67\xe3\xdf\xd2\x03\x0c\x8b\x74\x7c\x00\x59\xeb\x0f\x1f\xf5\xf6\xfc\x2a\x8b\xf8\xe6\xb1\x43\xdf\x71\x78\xa7\x3f\x01\x00\x00\xff\xff\x5e\x32\x19\xb8\xf3\x03\x00\x00" +var _idtablestakingAdminRemove_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x4f\x8b\xdb\x3c\x10\xc6\xcf\xd1\xa7\x78\xc8\xe1\xc5\x81\xb7\xf6\x3d\x74\xbb\x84\x86\x42\x60\xe9\x96\x4d\x6e\xcb\x1e\x14\x79\x1c\xab\x55\x24\x23\x4d\x92\x0d\x4b\xbe\x7b\x19\xcb\x6e\xf7\x4f\xaa\x8b\x41\x33\xf3\xcc\x4f\x33\x8f\xed\xbe\x0b\x91\xf1\xcd\x85\xd3\x6a\xb9\xd1\x5b\x47\x6b\xd6\xbf\xac\xdf\xa1\x89\x61\x8f\xe9\xc7\xc0\x54\xa9\xaa\xc2\xa6\xb5\x09\x1c\xb5\x4f\xda\xb0\x0d\x1e\x91\xf6\xe1\x48\x09\x3e\xd4\x84\xd5\x32\xe5\x7a\x6e\x09\xce\x26\x46\x68\xa0\xbb\x2e\x86\x23\xd5\x7d\x4a\x82\xf5\xa2\x23\x09\xab\x25\x58\x1a\x94\x90\x9b\x55\x03\xed\xcf\x52\x90\x63\x09\xcb\x7b\x7c\xbf\xdf\x80\x9e\x45\x48\xbb\x48\xba\x3e\xc3\xfa\x3e\x6e\x6b\xf2\x6c\xf9\x9c\x15\xfe\x07\xb7\x36\xf5\xba\xaf\xd0\x4e\xd6\x39\x44\x3a\x52\x64\x14\x3e\xb0\x14\xed\xbb\xc0\xe4\x79\xa6\xd4\xab\xcc\xc2\xd6\x69\x8e\xc7\x35\x47\xeb\x77\x4f\x33\xbc\x28\x05\x00\x55\x85\xbb\x60\xb4\xc3\x51\x47\x2b\x6d\xd0\x84\x08\x8d\x48\x0d\x45\xf2\x86\xc0\x61\x7c\x48\x3f\x29\x2c\xea\xbd\xf5\x08\xdb\x9f\x64\xb8\x97\x70\xc4\xd0\x72\xf9\x40\xcd\x1c\xff\x7d\x9c\x6a\xd9\x97\xe4\x7e\x5d\xa4\x4e\x47\x2a\xb4\x31\x3c\xc7\xe2\xc0\xed\xc2\x98\x70\xf0\x2c\x44\x18\x4e\x55\x61\x1b\x62\x0c\xa7\x6b\x20\xfa\x7d\x7f\x39\x89\x5c\x53\x8e\x10\xb8\x81\xc8\x97\x59\xe3\xf3\x3f\x89\xbe\x14\xb2\xc7\xf9\x15\x83\x94\xc3\xb7\x4f\x5b\x73\x88\x7a\x47\x3f\x34\xb7\xb3\x3f\x0d\xe5\xdc\xde\xa2\xd3\xde\x9a\x62\xfa\x35\x1c\x9c\xec\x9e\x47\xee\x37\xd4\x69\x70\x5d\xcf\x37\xcd\x1a\x97\x3c\x0e\x7a\x26\x73\x60\xc2\x8b\x9a\xc8\x18\xc5\x3d\xe2\x8a\x9b\x6b\x4c\x3b\xe2\xc5\x60\xb3\x3b\x9b\xb8\xf8\x0b\x73\x0d\x44\x9c\x34\xda\x32\xdb\xb4\x37\x6d\xca\x8f\x99\xce\x94\x9a\x54\xd5\xe0\x6c\x90\x36\x6d\x76\xb7\x9a\xc8\xfe\x33\xc7\x26\x3c\xe4\xb0\xf5\xb0\x75\x12\xc8\xc9\x40\xf8\xf8\x36\xe3\x09\x37\xf0\xd6\xa9\xc9\x25\xcb\x26\xe2\xbc\xab\xf1\xb7\xe8\x01\x86\x05\x7a\x3a\x41\x3b\x17\x4e\x9f\xe4\xf6\xfa\x0a\xcb\xf4\xee\xb1\x43\xdf\x71\x78\x97\xdf\x01\x00\x00\xff\xff\xcd\x51\x4b\xc1\xdc\x03\x00\x00" func idtablestakingAdminRemove_approved_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2199,11 +2050,11 @@ func idtablestakingAdminRemove_approved_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/remove_approved_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x6e, 0x8d, 0x79, 0xfb, 0x33, 0x46, 0x8c, 0x90, 0xf0, 0x5b, 0xed, 0x99, 0x74, 0x18, 0xe0, 0x89, 0x87, 0xdb, 0x8d, 0x1e, 0x5, 0xba, 0x54, 0x1, 0x90, 0xdb, 0x87, 0xa8, 0x8f, 0x79, 0x8d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb, 0x54, 0x19, 0xbe, 0xbc, 0xb7, 0x17, 0x46, 0x1a, 0xeb, 0xa1, 0xb8, 0x27, 0xa3, 0xe5, 0xab, 0x10, 0xda, 0xcc, 0x8f, 0x3e, 0xea, 0x17, 0x8, 0x2f, 0xc5, 0xb7, 0x24, 0x70, 0xaa, 0xf, 0x7e}} return a, nil } -var _idtablestakingAdminRemove_invalid_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x0c\x45\xba\x8b\xb6\xc1\x69\x28\x18\x42\x29\x75\xe8\x7d\xbc\x1a\x59\xd3\xae\x77\xc4\xee\xc8\x2e\x04\x7f\xf7\xb2\x92\x1d\xf2\xcf\x73\x11\x68\x67\xde\xfb\xcd\xbe\x95\xfd\xa0\xd1\xf0\xdd\xeb\x71\x7d\xff\x48\x5b\xcf\x1b\xa3\xbf\x12\x76\xe8\xa2\xee\xb1\x78\x7f\xb0\x28\x8a\xba\xc6\x63\x2f\x09\x16\x29\x24\x72\x26\x1a\xc0\xa1\x4d\xb0\x9e\x91\xce\xf3\x34\x4e\x07\x9f\x70\xec\xc5\xf5\x88\xdc\x8d\xb9\x25\x68\xcb\x09\x59\xe2\x28\xd6\x43\x42\x1a\xbb\x4e\x9c\x70\xb0\x69\x94\x8b\xe2\x85\x6c\x29\x6d\x6a\xf0\xb4\xb1\x28\x61\xd7\xe0\x4e\xd5\x9f\x96\x78\x2a\x0a\x00\xa8\x6b\x3c\xa8\x23\x8f\x03\x45\xc9\x84\xe8\x34\x82\xb2\x15\x47\x0e\x8e\x61\x3a\x21\xad\xef\x31\x6d\x80\x55\xbb\x97\x00\xdd\xfe\x61\x67\x93\x84\x67\x03\xe5\x9f\xbf\xb8\x6b\x70\xf3\x7e\xdb\x6a\x1a\x99\xfd\x86\xc8\x03\x45\x2e\xc9\x39\x6b\x40\xa3\xf5\xe5\x9d\xc6\xa8\xc7\xdf\xe4\x47\x5e\xe2\x66\xe5\x9c\x8e\xc1\x32\x20\xce\x55\xd7\xd8\x4e\x3d\x1f\x71\xd1\x5b\x9c\x5c\x89\x7d\x57\x5d\x98\xf0\x05\xd9\xad\x4a\xa6\x91\x76\x5c\xcd\x5a\x9f\xaf\x82\x7e\x2d\x73\x6c\xcd\x07\x79\x56\xe7\xef\xd4\xb6\x99\xe5\x7e\x92\xf5\xcb\x67\xe3\x5c\xb7\xb7\x18\x28\x88\x2b\x17\xdf\x74\xf4\x2d\x82\xda\x85\xff\x15\xfd\x73\xc8\x59\x6d\x31\x6b\x9c\xe6\x5b\xe2\x7f\xec\x46\xe3\x17\x77\xf0\x6a\xa3\x2a\xb1\xad\x86\x21\xea\x81\xdb\x07\x49\x96\x13\x5e\x5e\x69\x8d\xbc\xd7\x03\xaf\xc3\x81\xbc\xb4\x3f\xf2\xc3\x29\x2f\x56\xa7\xff\x01\x00\x00\xff\xff\x90\x7f\xa1\x57\xb9\x02\x00\x00" +var _idtablestakingAdminRemove_invalid_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xd1\xaa\xd3\x40\x10\x86\xef\xf3\x14\x3f\xbd\x90\x1c\x90\xe4\x3e\xa8\x87\x6a\x11\x0a\x22\x62\xcf\x0b\x4c\x37\x93\x66\x74\xbb\x13\x76\x27\xad\x70\xe8\xbb\xcb\x6e\x9b\x83\xda\xe3\xdc\x84\x64\x77\xbe\xf9\x26\xbf\x1c\x27\x8d\x86\xcf\x5e\xcf\xdb\xcd\x13\xed\x3d\xef\x8c\x7e\x4a\x38\x60\x88\x7a\xc4\xea\xfe\x60\x55\x55\x6d\x8b\xa7\x51\x12\x2c\x52\x48\xe4\x4c\x34\x80\x43\x9f\x60\x23\x23\xdd\xfa\x69\x2e\x07\x6f\x71\x1e\xc5\x8d\x88\x3c\xcc\xf9\x4a\xd0\x9e\x13\x32\xe2\x2c\x36\x42\x42\x9a\x87\x41\x9c\x70\xb0\xd2\xca\x55\xf5\x07\xb6\x96\x3e\x75\x78\xde\x59\x94\x70\xe8\xf0\x51\xd5\x5f\x1e\xf0\x5c\x55\x00\xd0\xb6\xf8\xa2\x8e\x3c\x4e\x14\x25\x1b\x62\xd0\x08\xca\xa3\x38\x72\x70\x0c\xd3\xa2\xb4\xdd\xa0\x6c\x80\x75\x7f\x94\x00\xdd\xff\x60\x67\x05\xe1\xd9\x40\xf9\xe3\x77\x1e\x3a\xbc\xb9\xdf\xb6\x29\x2d\xd7\x79\x53\xe4\x89\x22\xd7\xe4\x9c\x75\x58\xcf\x36\xae\x9d\xd3\x39\x58\x36\xc2\xad\xda\x16\x7b\x8d\x51\xcf\xaf\x89\xd0\xbf\xf3\x73\x25\xf6\x43\xb3\x48\xe0\x3d\x32\xbe\xb9\x32\xde\xfd\xd7\xe8\x43\x9d\xf3\xe9\x5e\x09\xae\xb9\x3d\xcb\xb5\x9d\x69\xa4\x03\x7f\x23\x1b\x1f\x5e\x06\xe6\x7a\x7c\xc4\x44\x41\x5c\xbd\xfa\xa4\xb3\xef\x11\xd4\x16\xef\xbf\xac\x5f\xd2\xcc\xb4\xd5\x95\x71\xb9\xfe\x0e\xfe\xc5\x6e\x36\x5e\xd2\xb8\x5b\xa5\x89\x7c\xd4\x13\x6f\xc3\x89\xbc\xf4\x5f\x73\xee\x35\x4d\x53\xd4\x13\x97\xb7\xed\x26\x75\x90\x3e\x2d\xd0\xcb\xef\x00\x00\x00\xff\xff\x70\xe3\x67\x73\x8c\x02\x00\x00" func idtablestakingAdminRemove_invalid_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2219,11 +2070,11 @@ func idtablestakingAdminRemove_invalid_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/remove_invalid_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0x2e, 0x4, 0x44, 0x5, 0x11, 0x74, 0xed, 0x35, 0xd5, 0x12, 0x3e, 0x87, 0x55, 0x45, 0x89, 0x30, 0x16, 0xa9, 0x35, 0x7b, 0x87, 0x79, 0x7a, 0x5, 0x9f, 0x18, 0xac, 0xb6, 0x2a, 0x5e, 0xa3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe5, 0xa7, 0xf0, 0x94, 0x84, 0x26, 0x8a, 0xb2, 0xab, 0x4, 0xad, 0x30, 0xc0, 0xe, 0x48, 0xcd, 0xa4, 0x51, 0x13, 0xa8, 0x8f, 0x6d, 0xc8, 0xa9, 0x62, 0x91, 0xe1, 0x8f, 0x34, 0x13, 0xfd, 0xac}} return a, nil } -var _idtablestakingAdminRemove_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\xcb\xda\x40\x10\x86\xef\xf9\x15\x2f\x39\x48\xbc\x24\xf7\xd0\x56\x6c\xa5\x20\x94\x52\x54\x7a\x1f\x77\x27\x66\xdb\x64\x27\x6c\x26\x6a\x29\xfe\xf7\xb2\x89\x16\xfd\xf4\x9b\x4b\x20\x99\x79\xe6\x99\xc9\xb8\xb6\x93\xa0\xf8\xda\xc8\x69\xbd\xda\xd1\xbe\xe1\xad\xd2\x6f\xe7\x0f\xa8\x82\xb4\x48\x9f\x3f\xa4\x49\x52\x14\xd8\xd5\xae\x87\x06\xf2\x3d\x19\x75\xe2\x11\xb8\x95\x23\xf7\x20\x0f\x3e\xbb\x5e\x23\xc2\x8b\xe5\x89\xa3\x35\xc3\x59\xf6\xea\xf4\x0f\x34\xd2\x92\xe4\xae\x3a\x73\xb6\xc4\x56\x83\xf3\x87\x39\xfe\x26\x09\x00\x14\x05\xbe\x89\xa1\x06\x47\x0a\x2e\x56\xa0\x92\x00\x42\xe0\x8a\x03\x7b\xc3\x50\x19\xb9\xeb\x15\x46\x3f\x2c\x6d\xeb\x3c\x64\xff\x8b\x8d\x8e\x88\x86\x15\x14\x5f\x6e\xb8\x2a\x31\x7b\x9e\x25\x1f\x4b\xa6\x7e\x5d\xe0\x8e\x02\x67\x64\x8c\x96\xa0\x41\xeb\xec\xb3\x84\x20\xa7\x9f\xd4\x0c\x3c\xc7\x6c\x69\x8c\x0c\x5e\xa3\x20\xae\x51\x14\xd8\x8f\x39\xaf\xbc\xe8\xad\x4e\x8c\x9e\x9b\x2a\xbf\x39\xe1\x23\x62\xb7\xbc\x57\x09\x74\xe0\x7c\x62\x7d\x78\x57\xf4\x53\x16\x97\x59\xbe\xf8\x5b\xf9\xf5\x39\xa6\x6d\x27\xdc\x0f\xd2\x7a\xfe\xbf\x71\x8c\xc5\x02\x1d\x79\x67\xb2\xf4\x8b\x0c\x8d\x85\x17\xbd\xf9\x3f\xd8\xf7\xd7\x13\x18\x3d\xd3\x89\x71\x99\xb6\xc4\x67\x36\x83\xf2\xdd\x0e\x1e\x26\xca\xa7\x33\x58\x7a\xbb\xe1\x6a\xf0\xf6\xbb\x58\xde\xb0\x91\x60\x33\x67\x6f\xa0\xcb\xbf\x00\x00\x00\xff\xff\x4d\x37\x98\xf0\x75\x02\x00\x00" +var _idtablestakingAdminRemove_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xd1\xaa\xdb\x30\x0c\x86\xef\xf3\x14\x3f\xb9\x18\xe9\x4d\x72\x1f\xb6\x95\xb0\x32\x28\x8c\x31\xda\xbe\x80\x6b\x2b\x8d\xb7\xc4\x0a\x8a\xd2\x76\x8c\xbe\xfb\x70\xd2\x1e\xda\xd3\x1e\xdd\x18\x6c\xeb\xd3\x27\xc9\x77\x3d\x8b\xe2\x7b\xcb\xa7\xf5\x6a\x67\xf6\x2d\x6d\xd5\xfc\xf1\xe1\x80\x5a\xb8\x43\xfa\xfc\x90\x26\x49\x51\x60\xd7\xf8\x01\x2a\x26\x0c\xc6\xaa\xe7\x00\xa1\x8e\x8f\x34\xc0\x04\xd0\xd9\x0f\x1a\x11\x81\x1d\xcd\x1c\x6d\x08\xde\x51\x50\xaf\x7f\xa1\x91\x96\x24\x77\xd9\x99\x77\x25\xb6\x2a\x3e\x1c\x16\xf8\x97\x24\x00\x50\x14\xf8\xc1\xd6\xb4\x38\x1a\xf1\x31\x03\x35\x0b\x0c\x84\x6a\x12\x0a\x96\xa0\x3c\x71\xd7\x2b\x4c\x7e\xa8\x5c\xe7\x03\x78\xff\x9b\xac\x4e\x88\x96\x14\x26\x5e\x6e\xa8\x2e\xf1\xe9\xb9\x97\x7c\x4a\x99\xeb\xf5\x42\xbd\x11\xca\x8c\xb5\x5a\xa2\x1a\xb5\xa9\xac\xe5\x31\x68\x34\xc2\x35\x8a\x02\x7b\x16\xe1\xd3\x2b\x11\xf3\xbe\x7e\x8c\x81\xda\x3a\xbf\x49\xe0\x0b\x22\x3e\x9f\x19\x9f\x3f\x34\xfa\x9a\xc5\xa9\x95\x2f\xd6\x92\x5f\xcf\xe9\xdb\x56\x59\xcc\x81\x7e\x19\x6d\x16\x6f\x05\x63\x2c\x97\xe8\x4d\xf0\x36\x4b\xbf\xf1\xd8\x3a\x04\xd6\x9b\xf7\x83\xf5\x70\xdd\xf5\xe4\x97\xce\x8c\xcb\x3c\x0e\x3a\x93\x1d\x95\xee\x7a\x7f\xe8\x24\x9f\xf7\x5d\x05\xb7\xa1\x7a\x0c\xee\x27\x3b\xda\x90\x65\x71\x99\x77\x37\xd0\xe5\x7f\x00\x00\x00\xff\xff\xf8\x49\x91\xd2\x5e\x02\x00\x00" func idtablestakingAdminRemove_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -2239,11 +2090,11 @@ func idtablestakingAdminRemove_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/remove_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xca, 0x33, 0x14, 0xe6, 0x42, 0xf6, 0x32, 0x5d, 0x3b, 0x1b, 0xdf, 0xdd, 0xb5, 0x64, 0x5f, 0x18, 0x98, 0xfb, 0x4e, 0xc9, 0x81, 0x63, 0x57, 0x72, 0xf2, 0x1e, 0xc1, 0x11, 0xaa, 0xbc, 0x19, 0x24}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0x1c, 0x3b, 0x65, 0x4e, 0x7c, 0xbf, 0x6a, 0xa4, 0x9b, 0xa5, 0x30, 0x7d, 0x56, 0xb4, 0x80, 0x56, 0x8, 0xa6, 0xd1, 0xfb, 0xe6, 0x70, 0x62, 0x6, 0x22, 0xc0, 0xcd, 0x4f, 0x6c, 0xb1, 0x3}} return a, nil } -var _idtablestakingAdminScale_rewards_testCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x3f\x6b\xc3\x30\x10\xc5\x77\x7d\x8a\xab\x87\xe2\x40\x30\x76\x4b\x16\x83\x87\x94\x10\xc8\xd2\xa1\x7f\xa6\xd2\xe1\x2a\x5d\x8d\x89\x22\x85\xd3\x15\x0f\x21\xdf\xbd\x28\x89\x9d\xbf\x75\x35\x18\x0e\xbd\xf7\xd3\x7b\xe7\x66\xb5\xf6\x2c\x30\xb7\xbe\x5d\xcc\xde\xf0\xcb\xd2\xab\xe0\xb2\x71\x35\x7c\xb3\x5f\x41\x72\x7d\x91\x28\x25\x8c\x2e\xa0\x96\xc6\x3b\xd8\x28\x05\x00\xb0\x66\x5a\x23\x53\x8a\x5a\x4b\x09\xf7\x53\xad\xfd\x8f\x93\x11\x6c\x76\xb7\xf1\x58\x12\x60\x6a\x91\x4d\x78\x62\xc2\xa5\xf1\xad\x83\xea\xc6\xcb\xd9\xcb\x85\x2a\x75\xde\xd0\x62\x56\x42\x92\x1f\x4e\x91\x8c\x54\x0f\xbe\x84\x66\x81\xe4\xd9\x1b\x3a\x60\xd2\x22\xcf\xf3\x2c\x1f\x0d\xea\x67\x64\xa9\x46\xf1\xbc\x37\xa5\xa6\x9b\xe3\xb3\x05\x60\x80\xf7\x85\x93\xc7\x87\x71\xe7\x2e\xa1\xd8\x53\x07\xb0\x1a\x2d\x4d\xad\xed\x72\xc4\xb9\x71\xf5\x1c\xb5\x78\x2e\x21\xcf\x26\xc7\x4c\x18\x02\xb1\xa4\xfd\x7c\x13\xe8\x8e\xa5\xa0\xaa\x60\x12\x03\x8c\xcf\x2c\x2b\x0a\x01\x6b\x2a\x21\x69\xd9\xbb\x1a\xa2\xa3\xe3\xc0\x2e\x4f\xd2\xeb\x4f\xa2\xc7\x5f\x63\xce\x37\x10\xa0\xba\x0e\x70\xa9\xf9\x38\xd9\xcc\xe7\x9d\x1a\x6c\x73\xcd\x8f\x0d\xfe\x2b\xd0\xbb\xfe\x6e\x11\xbf\x5b\xb5\xfd\x0d\x00\x00\xff\xff\xbe\x67\xb1\xec\xc9\x02\x00\x00" +var _idtablestakingAdminScale_rewards_testCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x4d\x6b\xf3\x30\x10\x84\xef\xfa\x15\xfb\xfa\xe4\x40\x30\xf6\x5b\x72\x31\xf8\x90\x12\x02\xb9\xf4\xd0\x8f\x53\xe9\x61\x2b\x6d\x5d\x13\x45\x0a\xab\x0d\x3e\x84\xfc\xf7\xa2\x24\x76\x3e\xeb\xea\x60\x58\x3c\xf3\x68\x66\xd5\xac\xd6\x9e\x05\xe6\xd6\xb7\x8b\xd9\x2b\x7e\x5a\x7a\x11\x5c\x36\xae\x86\x2f\xf6\x2b\x48\x6e\x7f\x24\x4a\x09\xa3\x0b\xa8\xa5\xf1\x0e\xb6\x4a\x01\x00\xac\x99\xd6\xc8\x94\xa2\xd6\x52\xc2\x74\x23\xdf\x53\xad\xfd\xc6\xc9\x08\xb6\x7b\x41\x3c\x96\x04\x98\x5a\x64\x13\x1e\x99\x70\x69\x7c\xeb\xa0\xba\x73\x79\xf6\x7c\xa5\x4a\x9d\x37\xb4\x98\x95\x90\xe4\xc7\x53\x24\x23\xd5\x83\xaf\xa1\x59\x20\x79\xf2\x86\x8e\x98\xb4\xc8\xf3\x3c\xcb\x47\x83\xfa\x19\x59\xaa\x51\x3c\x1f\x4c\xa9\xe9\xe6\x78\x6d\x01\x18\xe0\x6d\xe1\xe4\xe1\xff\xb8\x73\x97\x50\x1c\xa8\x03\x58\x8d\x96\xa6\xd6\x76\x39\xe2\xdc\xb8\x7a\x8e\x5a\x3c\x97\x90\x67\x93\x53\x26\x0c\x81\x58\xd2\x7e\xbe\x0b\x74\xa7\x52\x50\x55\x30\x89\x01\xc6\x17\x96\x15\x85\x80\x35\x95\x90\xb4\xec\x5d\x0d\xd1\xd1\x71\x60\x9f\x27\xe9\xf5\x67\xd1\xe3\xd3\x98\xcb\x0d\x04\xa8\x6e\x03\x5c\x6b\xde\xcf\x36\xf3\xf1\x4f\x0d\xb6\xb9\xe5\xc7\x06\x7f\x15\xe8\x5d\xbf\xb7\x88\xdf\x9d\xda\xfd\x04\x00\x00\xff\xff\xe5\x73\x97\xfb\xcc\x02\x00\x00" func idtablestakingAdminScale_rewards_testCdcBytes() ([]byte, error) { return bindataRead( @@ -2259,11 +2110,11 @@ func idtablestakingAdminScale_rewards_testCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/scale_rewards_test.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0xfb, 0xe0, 0xff, 0xc8, 0xd5, 0x10, 0x1a, 0xf1, 0x22, 0x4, 0x38, 0x3f, 0xc9, 0xbd, 0xd9, 0x0, 0xa9, 0xb3, 0x36, 0xcf, 0x67, 0xb1, 0x7e, 0xbe, 0xe4, 0x70, 0x2b, 0x92, 0xff, 0x37, 0x16}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0x35, 0x18, 0xe8, 0xff, 0xdc, 0xc9, 0x24, 0xd5, 0xc5, 0x34, 0x32, 0x66, 0x15, 0x77, 0x59, 0x65, 0xf3, 0x40, 0xf2, 0xd4, 0xb4, 0x1a, 0x1d, 0x5b, 0xe8, 0x1b, 0xb1, 0x34, 0x5d, 0xf4, 0x96}} return a, nil } -var _idtablestakingAdminSet_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x8b\xdb\x30\x10\xc5\xef\xfe\x14\x0f\x1f\x16\xe7\x62\xdf\x4d\xdb\x25\xdb\xa5\xb0\xb0\x87\xd2\x84\xde\x27\xf2\x38\x56\xab\x68\x8c\x34\x4e\x0a\x21\xdf\xbd\xc8\x7f\x4a\xd2\x64\xe7\x62\xb0\xf4\xde\xfc\x34\x6f\xec\xa1\x97\xa0\xf8\xe6\xe4\xf4\xf6\xba\xa5\x9d\xe3\x8d\xd2\x6f\xeb\xf7\x68\x83\x1c\x90\xdf\x1f\xe4\x59\x56\x55\xd8\x76\x36\x42\x03\xf9\x48\x46\xad\x78\x44\xd6\x08\xed\x18\xce\x46\x85\xb4\xa0\xbe\x0f\x72\xe4\x06\x5e\x1a\x8e\xb0\x7e\x3c\x7d\x7b\x85\x26\xb3\x2c\xbb\x12\x17\xb6\x89\x35\xce\x1b\x0d\xd6\xef\x6b\xbc\x88\xb8\xcb\x0a\xe7\x2c\x03\x80\xaa\xc2\xbb\x18\x72\x38\x52\xb0\x49\x8a\x56\x02\x08\x81\x5b\x0e\xec\x0d\x43\x65\xb1\x1e\x39\xb1\x6e\x0e\xd6\x43\x76\xbf\xd8\xe8\x68\xe1\x58\x41\xe9\xe7\x0f\x6e\x6b\x3c\xdd\xbf\xa9\x1c\x25\x53\xbf\x3e\x70\x4f\x81\x0b\x32\x46\x6b\xd0\xa0\x5d\xf1\x22\x21\xc8\xe9\x27\xb9\x81\x57\x78\x5a\x1b\x23\x83\xd7\x04\x88\xb9\xaa\x0a\xbb\xf1\xce\x23\x2e\xfa\x1f\x27\x55\x64\xd7\x96\x0b\x13\x3e\x23\x75\x2b\xa3\x4a\xa0\x3d\x97\x93\xd7\xa7\x0f\x41\xbf\x14\x29\x9c\xfa\x41\x6a\xe5\xfc\x1d\xaf\x6d\x26\xbb\xef\xa4\xdd\xea\x5f\xe3\x54\xcf\xcf\xe8\xc9\x5b\x53\xe4\x5f\x65\x70\x29\x21\x5d\xf8\x6f\xe8\xe3\xbc\x0a\x23\x67\x3e\x79\x5c\xa6\x29\xf1\x1f\x36\x83\xf2\xd5\x0c\x6e\x5e\x54\x46\xd6\xf5\xbc\x00\xef\x36\x6a\x4a\x78\xd1\x5f\xfe\x06\x00\x00\xff\xff\xff\xfc\x9f\x93\x74\x02\x00\x00" +var _idtablestakingAdminSet_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcd\x8e\xe2\x30\x10\x84\xef\x79\x8a\x52\x0e\xab\x70\x49\xee\xd1\xee\xa2\xec\xa2\x95\x90\x38\xac\x06\x5e\xc0\x38\x1d\xe2\x19\xe3\x8e\xec\x0e\x8c\x84\x78\xf7\x91\xf3\x33\x82\x81\xe9\x8b\x25\xb7\xab\xfa\x6b\x97\x39\x76\xec\x05\xff\x2c\x9f\xd7\xab\x9d\xda\x5b\xda\x8a\x7a\x33\xee\x80\xc6\xf3\x11\xe9\x63\x23\x4d\x92\xa2\xc0\xae\x35\x01\xe2\x95\x0b\x4a\x8b\x61\x87\x40\x12\x20\x2d\xc1\x9a\x20\xe0\x06\xaa\xeb\x3c\x9f\xa8\x86\xe3\x9a\x02\x8c\x1b\xba\xeb\x15\x24\x9a\x25\xc9\x8d\x38\x33\x75\x28\x71\xd9\x8a\x37\xee\x50\xe2\x0f\xb3\xbd\x2e\x70\x49\x12\x00\x28\x0a\x6c\x58\x2b\x8b\x93\xf2\x26\x4a\xd1\xb0\x87\x82\xa7\x86\x3c\x39\x4d\x10\x9e\xad\x07\x4e\x54\xf5\xd1\x38\xf0\xfe\x95\xb4\x0c\x16\x96\x04\x2a\x5e\xbe\x50\x53\xe2\xc7\xe3\x4e\xf9\x20\x19\xe7\x75\x9e\x3a\xe5\x29\x53\x5a\x4b\x89\xaa\x97\xb6\xd2\x9a\x7b\x27\x91\x08\x53\x15\x05\xf6\xec\x3d\x9f\x9f\x81\xa8\xaf\xf3\x63\x05\xb2\x4d\x3e\x43\xe0\x17\xa2\x7d\x3e\x7a\xfc\xfc\x96\xe8\x77\x16\x53\x28\x9f\xc4\x93\x4f\xe7\xf0\x6c\x2b\xec\xd5\x81\xfe\x2b\x69\x17\x9f\x03\x63\x2d\x97\xe8\x94\x33\x3a\x4b\xff\x72\x6f\x63\x14\x32\x73\xdf\x51\x87\x29\xf3\x81\x2f\x1d\x3d\xae\xe3\x77\xd0\x3b\xe9\x5e\xe8\x66\xf7\xbb\x4d\xf2\x40\x52\x4d\x49\x6f\x4c\x90\x18\xe5\xac\xbf\x7e\x04\x00\x00\xff\xff\x22\xcb\x1e\xc9\x5d\x02\x00\x00" func idtablestakingAdminSet_approved_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2279,11 +2130,11 @@ func idtablestakingAdminSet_approved_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_approved_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x44, 0xa0, 0xfc, 0x5d, 0x65, 0x80, 0xeb, 0x76, 0x1e, 0x7, 0x24, 0x56, 0x7b, 0x94, 0x24, 0x0, 0x60, 0xd1, 0x2c, 0xd8, 0x6d, 0xd5, 0x84, 0xca, 0x73, 0x54, 0x45, 0x90, 0x97, 0x72, 0x4f, 0x64}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4e, 0xf5, 0x5e, 0xd4, 0x2, 0xba, 0x9d, 0xd1, 0x51, 0xf6, 0x6e, 0xb7, 0x2a, 0x17, 0xe0, 0xb1, 0x3f, 0x21, 0xee, 0xf3, 0x89, 0xab, 0x7a, 0xcf, 0xb5, 0x20, 0xba, 0xe5, 0x80, 0x74, 0x1d, 0xfb}} return a, nil } -var _idtablestakingAdminSet_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6f\xe2\x30\x10\x85\xef\xf9\x15\x4f\x39\xa0\xe4\x92\xdc\xd1\xee\x22\x16\xb4\x12\xd2\x1e\x56\x0b\xea\x7d\x70\x26\xc4\xc5\xb1\x23\x7b\x52\x5a\x21\xfe\x7b\xe5\x84\x54\x6d\x81\xb9\x44\x8a\x67\xde\xfb\x66\x9e\x6e\x3b\xe7\x05\x7f\x8c\x3b\x6d\xd6\x3b\xda\x1b\xde\x0a\x1d\xb5\x3d\xa0\xf6\xae\x45\x7a\xfb\x90\x26\x49\x59\x62\xd7\xe8\x00\xf1\x64\x03\x29\xd1\xce\xa2\xa3\xb7\x00\xcf\x27\xf2\x55\x80\x38\x90\x31\x90\x86\x11\x84\x8e\x5c\xc1\xba\x8a\x43\x92\x7c\x9e\x38\x27\x09\x00\x94\x25\xfe\x3a\x45\x06\x2f\xe4\x75\xf4\x41\xed\x3c\x08\x9e\x6b\xf6\x6c\x15\x47\xb5\xa8\xb4\x59\x63\xe0\xc0\xb2\x6a\xb5\x85\xdb\x3f\xb3\x92\x41\xc2\xb0\x80\xe2\xcf\xff\x5c\xcf\x31\xbb\x65\x2e\x86\x91\xd1\xaf\xf3\xdc\x91\xe7\x8c\x94\x92\x39\xa8\x97\x26\xfb\xed\xbc\x77\xa7\x27\x32\x3d\xe7\x98\x2d\x95\x72\xbd\x95\x7c\x02\xbc\x42\xee\x87\xa6\x7b\x60\xf4\x9d\x27\x56\x60\x53\x17\x13\x14\x7e\x22\xda\x15\x41\x9c\xa7\x03\x17\xa3\xd6\x8f\x87\xa4\xbf\xb2\x78\xfd\xf9\x9d\x58\x8a\xeb\x77\x68\xdb\x8e\x72\xff\x48\x9a\xfc\xc3\x38\xd6\x62\x81\x8e\xac\x56\x59\xba\x72\xbd\x89\xd7\x97\x89\xff\x0b\x7d\xb8\x66\x3d\x70\xa6\xa3\xc6\x65\xdc\x9a\x5f\x59\xf5\xc2\x38\xdf\xdf\xa8\x08\x2c\x2b\x43\xba\xe5\x2a\xcb\x1f\xb5\x08\x79\x99\x78\xfb\x21\xf4\x6c\xf2\xb8\xbc\x07\x00\x00\xff\xff\x58\x92\xe9\x95\x79\x02\x00\x00" +var _idtablestakingAdminSet_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xc1\xce\xda\x40\x0c\x84\xef\x79\x8a\x51\x0e\x55\xb8\x24\x77\xd4\x16\x21\x50\x25\xa4\x1e\xaa\xc2\x0b\x98\x8d\x43\xb6\x6c\x76\x23\xaf\x53\x5a\x21\xde\xbd\xda\x84\x54\xff\xff\x03\xbe\x44\xca\xda\x33\x9f\xc7\xb6\xeb\x83\x28\xbe\xb9\x70\xd9\x6d\x0f\x74\x74\xbc\x57\x3a\x5b\x7f\x42\x23\xa1\x43\xfe\xf8\x90\x67\x59\x55\xe1\xd0\xda\x08\x15\xf2\x91\x8c\xda\xe0\xd1\xd3\xdf\x08\xe1\x0b\x49\x1d\xa1\x01\xe4\x1c\xb4\x65\x44\xa5\x33\xd7\xf0\xa1\xe6\x98\x65\x6f\x27\xae\x59\x06\x00\x55\x85\xef\xc1\x90\xc3\x6f\x12\x9b\x7c\xd0\x04\x01\x41\xb8\x61\x61\x6f\x38\xa9\x25\xa5\xdd\x16\x23\x07\xd6\x75\x67\x3d\xc2\xf1\x17\x1b\x1d\x25\x1c\x2b\x28\xfd\xfc\xc9\xcd\x12\x9f\x1e\x99\xcb\x71\x64\xf2\xeb\x85\x7b\x12\x2e\xc8\x18\x5d\x62\x3d\x68\xbb\x36\x26\x0c\x5e\x17\x33\xd1\x9d\xea\x18\x44\xc2\xe5\x19\x09\x7d\x04\x48\x15\xd9\x35\xe5\x4c\x81\x2f\x48\xfa\xe5\xa4\xf1\xf9\x25\xd2\xd7\x22\xc5\xbc\x7c\x92\x7f\x79\xff\x8e\x6d\x7b\x0d\x42\x27\xfe\x41\xda\x2e\xfe\x1b\xa6\x5a\xad\xd0\x93\xb7\xa6\xc8\x37\x61\x70\x29\x66\x9d\xb9\xdf\x51\xc7\xfb\x51\x47\xbe\x7c\xd2\xb8\x4d\xdb\xf2\x1f\x36\x83\x32\xae\xcf\x37\x29\x23\xeb\xc6\x91\xed\xb8\x2e\x16\xaf\x5a\x94\x44\x67\xde\x61\xbc\x6e\x31\x7b\xdc\xfe\x05\x00\x00\xff\xff\x85\x4e\x29\x18\x62\x02\x00\x00" func idtablestakingAdminSet_claimedCdcBytes() ([]byte, error) { return bindataRead( @@ -2299,11 +2150,11 @@ func idtablestakingAdminSet_claimedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_claimed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0xd5, 0xa0, 0x15, 0x9, 0x9e, 0xf5, 0xc0, 0xaf, 0xa2, 0x3e, 0xd3, 0x54, 0x30, 0xef, 0xcb, 0x9, 0xa1, 0x94, 0xb6, 0x48, 0x83, 0xf2, 0x39, 0xb2, 0xac, 0x3a, 0xf1, 0x6, 0x97, 0xdc, 0x21}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0x90, 0x4c, 0x34, 0xe1, 0xfd, 0x39, 0x36, 0xc, 0x6e, 0x70, 0x8e, 0x70, 0x82, 0x3f, 0xfa, 0x98, 0xea, 0xfc, 0x54, 0x4f, 0x39, 0x92, 0x8b, 0x95, 0x54, 0x9b, 0xe0, 0x3b, 0x9b, 0xc8, 0x57}} return a, nil } -var _idtablestakingAdminSet_node_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x8b\xd4\x40\x10\x85\xef\xf9\x15\x8f\x1c\x96\x0c\x48\x72\x11\x0f\x41\x5d\x56\x07\x21\x20\x22\xce\xaa\xe7\x9a\x4e\x25\x69\xed\xe9\x0a\xdd\x15\x67\x41\xf6\xbf\x4b\x77\x66\x74\xd7\x9d\xad\x4b\x43\xd2\xf5\xde\xd7\xf5\xca\x1e\x66\x09\x8a\x0f\x4e\x8e\xdd\xf6\x96\xf6\x8e\x77\x4a\x3f\xad\x1f\x31\x04\x39\xa0\x7c\xfa\xa3\x2c\x8a\xa6\xc1\xed\x64\x23\x34\x90\x8f\x64\xd4\x8a\x47\x64\x8d\xd0\x89\x61\xbd\x55\x4b\xee\x3b\xdb\x71\x52\xc8\x00\xf2\xe0\x3b\x1b\x35\x89\x7a\xe9\xb9\x78\xd0\x56\xd9\xbe\xc5\x4e\x83\xf5\xe3\x0b\x1c\x73\x4b\x8b\xaf\x9d\xd7\x57\x2f\x37\xf8\x5d\x14\x00\xd0\x34\xf8\x28\x86\x1c\x7e\x51\xb0\x09\x04\x83\x04\x10\x02\x0f\x1c\xd8\x1b\x86\x4a\x76\xee\xb6\xc8\xa0\xb8\xe9\x0f\xd6\x43\xf6\x3f\xd8\x68\x96\x70\xac\xa0\xf4\xf1\x0b\x0f\x2d\xae\x9e\x3e\xaa\xce\x2d\xab\xdf\x1c\x78\xa6\xc0\x15\x19\xa3\x2d\x68\xd1\xa9\x7a\x27\x21\xc8\xf1\x1b\xb9\x85\x37\xb8\xba\x31\x46\x16\xaf\x09\x10\xa7\x6a\x1a\xec\xf3\x9d\x4b\x5c\xf4\x3f\x4e\xaa\xc8\x6e\xa8\xcf\x4c\x78\x83\xe4\x56\x47\x95\x40\x23\xd7\xab\xd6\xeb\x67\x41\xdf\x56\x29\x9d\xf6\x42\x6c\xf5\xe9\xcc\xd7\x76\xab\xdc\x67\xd2\x69\xf3\xd7\x38\xd5\xf5\x35\x66\xf2\xd6\x54\xe5\x7b\x59\x5c\x0f\x2f\x7a\xe6\x7f\x44\x1f\x4f\xbb\x90\x39\xcb\x55\xe3\x7e\x9d\x12\xdf\xb1\x59\x94\x1f\xcc\xe0\xd1\x8b\xea\xc8\xfa\x49\x7a\x5e\xd7\xa0\x4a\xb9\x77\xdb\x16\xb6\xff\x17\xf3\x7a\x9e\x45\xef\xff\x04\x00\x00\xff\xff\xf3\x29\x18\xae\x8a\x02\x00\x00" +var _idtablestakingAdminSet_node_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x51\xab\xd3\x40\x10\x85\xdf\xf3\x2b\x0e\x79\x90\x14\x24\x79\x11\x1f\x82\x5a\x8a\x45\x08\x88\x88\xad\xf8\x3c\xdd\x4c\x92\xd5\x74\x27\xec\x4e\x6c\x41\xfa\xdf\x65\x93\xf6\xde\xf6\xb6\x77\x5e\x06\x76\x77\xce\xf9\x66\x8f\xdd\x0f\xe2\x15\x5f\x7a\x39\x54\xeb\x2d\xed\x7a\xde\x28\xfd\xb1\xae\x45\xe3\x65\x8f\xf4\xfe\x22\x4d\x92\xa2\xc0\xb6\xb3\x01\xea\xc9\x05\x32\x6a\xc5\x21\xb0\x06\x68\xc7\xb0\xce\xaa\xa5\xfe\x17\xdb\xb6\x53\x48\x03\x72\xe0\xa3\x0d\x1a\x45\x9d\xd4\x9c\x5c\x8d\x65\xb6\x2e\xb1\x51\x6f\x5d\xfb\x16\x87\x69\xa4\xc4\xcf\xca\xe9\xfb\x77\x0b\xfc\x4b\x12\x00\x28\x0a\x7c\x15\x43\x3d\xfe\x92\xb7\x11\x04\x8d\x78\x10\x3c\x37\xec\xd9\x19\x86\xca\xe4\x5c\xad\x31\x81\x62\x55\xef\xad\x83\xec\x7e\xb3\xd1\x49\xa2\x67\x05\xc5\xc3\x1f\xdc\x94\x78\x73\xbf\x54\x3e\x8d\xcc\x7e\x83\xe7\x81\x3c\x67\x64\x8c\x96\x58\x8d\xda\xad\x8c\x91\xd1\x69\x24\xc2\xb9\x8a\x02\x3b\xf1\x5e\x0e\x8f\x40\xe8\xa5\x7f\xac\xc0\x7d\x93\x5f\x20\xf0\x11\x51\x3e\x9f\x35\x3e\xbc\x4a\xf4\x29\x8b\x31\x94\x0f\xf2\xc9\xcf\x7d\x7a\xb6\x51\xf1\xd4\xf2\x77\xd2\x6e\xf1\x64\x18\x6b\xb9\xc4\x40\xce\x9a\x2c\xfd\x2c\x63\x5f\xc3\x89\x5e\xb8\x6f\xa8\xc3\x39\xf4\x89\x2f\x9d\x35\x4e\xf3\x77\xf0\x91\xcd\xa8\x7c\xb5\xfb\xcd\x26\x79\x60\xfd\x26\x35\xcf\x79\x67\x31\xe0\x6a\x5d\xc2\xd6\xcf\x79\xce\xfd\x22\x7a\xfa\x1f\x00\x00\xff\xff\x22\xe7\xf3\xd7\x73\x02\x00\x00" func idtablestakingAdminSet_node_weightCdcBytes() ([]byte, error) { return bindataRead( @@ -2319,11 +2170,11 @@ func idtablestakingAdminSet_node_weightCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_node_weight.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x83, 0x38, 0x72, 0x86, 0x8a, 0x4f, 0x3d, 0x9e, 0x30, 0x9c, 0x8f, 0x8a, 0x50, 0xc1, 0x8, 0x15, 0x7, 0x30, 0xda, 0xd0, 0x81, 0x97, 0xb8, 0x37, 0xfe, 0x1b, 0x35, 0xa, 0xf0, 0x51, 0x3b, 0x4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0xb0, 0xc4, 0xd1, 0xa, 0x8b, 0x34, 0xa9, 0x8a, 0xc4, 0xc4, 0x53, 0x48, 0xd6, 0xe6, 0xd9, 0x43, 0x25, 0x84, 0xe, 0xe1, 0x70, 0x90, 0xaa, 0xdc, 0x93, 0x77, 0xc1, 0x92, 0xb, 0xec, 0xde}} return a, nil } -var _idtablestakingAdminSet_non_operationalCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x7c\x91\x72\x28\x3d\x88\xba\x21\x6d\x08\x04\x42\x5a\xea\xb4\x97\x90\xc3\x78\x77\x64\x6d\xbb\xde\x31\xbb\xe3\x2a\x60\xfc\xdd\xcb\x4a\xb6\xeb\xd6\xc9\x5c\x04\x9a\xd9\xf7\x7e\xf3\xc7\xad\xd6\x12\x15\xb7\x5e\xfa\xbb\x9b\x47\x5a\x78\x9e\x2b\xfd\x72\x61\x89\x36\xca\x0a\x93\xf3\xc4\xa4\x28\xea\x1a\x8f\x9d\x4b\xd0\x48\x21\x91\x51\x27\x01\x89\x35\x41\x3b\x86\x77\x49\x21\x2d\x82\x58\x4e\xe8\x3b\x01\x45\x46\x90\x00\x59\x73\xa4\x5c\x4c\x3e\x4b\x50\xb0\x39\x9d\x18\x91\x7b\x8a\x36\xa1\x77\xde\x63\xc1\xe8\x9d\x76\x1d\x7b\x5b\x14\x27\x0e\xa5\xb3\xa9\xc1\xd3\x5c\xa3\x0b\xcb\xe7\x29\xb6\x45\x01\x00\x75\x8d\x7b\x31\xe4\xf1\x9b\xa2\xcb\x98\x68\x25\x82\x10\xb9\xe5\xc8\xc1\x30\x54\x06\xae\xbb\x1b\x0c\x6d\xe0\xda\xae\x5c\x80\x2c\x7e\xb2\xd1\x41\xc2\xb3\x82\xf2\xcf\x6f\xdc\x36\xb8\x38\x6f\xb9\x1a\x9e\x8c\x7e\xeb\xc8\x6b\x8a\x5c\x92\x31\xda\x80\x36\xda\x95\x9f\x24\x46\xe9\x7f\x90\xdf\xf0\x14\x17\xd7\xc6\xc8\x26\x68\x06\xc4\x3e\xea\x1a\x8b\xa1\xe6\x35\x2e\xfa\x1f\x27\x47\x62\xdf\x56\x07\x26\xcc\x90\xdd\xaa\xa4\x12\x69\xc9\xd5\xa8\xf5\xe1\x4d\xd0\x8f\x65\xde\x5d\xf3\xca\x52\xab\xfd\x77\x28\x9b\x8f\x72\x5f\x49\xbb\xe9\xd1\x38\xc7\xd5\x15\xd6\x14\x9c\x29\x27\x9f\x65\xe3\x2d\x82\xe8\x81\xff\x1f\xfa\xb4\xbf\x94\x81\x73\x32\x6a\xec\xc6\x29\xf1\x0b\x9b\x8d\xf2\xc9\x0c\xf2\x90\xf3\x49\xdc\xbb\xa4\x0d\xb6\xe3\x1a\x1b\x7c\xbf\x75\x2f\xef\xdf\xed\x30\xc3\x76\x77\xac\xcd\x1b\x74\x16\x2e\xc0\xd9\x74\xa2\x91\xe3\xa0\xf1\xe4\xec\x33\x66\xb8\xac\x2e\x8f\xe9\xbd\xf7\xd9\xfc\xaa\xc4\xfa\x20\xe1\xcb\xdf\xf3\x7b\xc8\xb7\x99\x55\xca\x83\xdc\x81\x7e\xf7\x27\x00\x00\xff\xff\x8f\xd3\xc9\x6a\x11\x03\x00\x00" +var _idtablestakingAdminSet_non_operationalCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x0f\x1f\x8a\x73\x91\x72\x28\x3d\x88\xba\xc1\x34\x04\x02\x21\x2d\x75\x7a\x0a\x39\x8c\x77\x47\xd6\xb6\xeb\x1d\xb1\x3b\xae\x02\xc6\xff\xbd\xac\x64\xb9\x6e\x9d\xce\x45\xa0\x99\x7d\xf3\xcd\xbc\x71\xdb\x4e\xa2\xe2\xce\x4b\x7f\x7f\xfb\x44\x6b\xcf\x2b\xa5\x9f\x2e\x6c\xd0\x44\xd9\x62\x76\x99\x98\x15\x45\x55\xe1\xa9\x75\x09\x1a\x29\x24\x32\xea\x24\x20\xb1\x26\x68\xcb\xf0\x2e\x29\xa4\x41\x10\xcb\x09\x7d\x2b\xa0\xc8\x08\x12\x20\x1d\x47\xca\xc5\xe4\xb3\x04\x05\x9b\xd3\x89\x11\xb9\xa7\x68\x13\x7a\xe7\x3d\xd6\x8c\xde\x69\xdb\xb2\xb7\x45\x71\xd6\x61\xee\x6c\xaa\xf1\xbc\xd2\xe8\xc2\xe6\xe5\x0a\xfb\xa2\x00\x80\xaa\xc2\x83\x18\xf2\xf8\x45\xd1\x65\x4c\x34\x12\x41\x88\xdc\x70\xe4\x60\x18\x2a\x03\xd7\xfd\x2d\x86\x31\xb0\xb4\x5b\x17\x20\xeb\x1f\x6c\x74\x90\xf0\xac\xa0\xfc\xf3\x1b\x37\x35\xde\x5d\x8e\x5c\x0e\x4f\xc6\x7e\x5d\xe4\x8e\x22\xcf\xc9\x18\xad\xb1\xdc\x69\xbb\x34\x46\x76\x41\x33\x11\x8e\x51\x55\x58\x4b\x8c\xd2\xbf\x05\x42\xff\xf6\xcf\x91\xd8\x37\xe5\x04\x81\x05\xb2\x7c\x39\x6a\x7c\xfc\x2f\xd1\xa7\x79\x36\xa9\x7e\xc3\xbd\xf2\xf8\x1d\xca\x56\x2a\x91\x36\xfc\x95\xb4\xbd\x3a\x35\xcc\x71\x73\x83\x8e\x82\x33\xf3\xd9\x67\xd9\x79\x8b\x20\x3a\x71\xff\x45\x9d\x8e\x27\x31\xf0\xcd\x46\x8d\xc3\xb8\x0e\x7e\x65\xb3\x53\x3e\x9b\x3d\x6f\x33\x7b\xff\xe0\x92\xd6\xd8\x8f\x7e\xd5\xf8\x7e\xe7\x5e\x3f\xbc\x3f\x60\x81\xfd\xe1\x54\x9b\xad\x72\x16\x2e\xc0\xd9\x74\xa6\x91\x63\xd2\x78\x76\xf6\x05\x0b\x5c\x97\xd7\xa7\xf4\xb1\xf7\xc5\xde\xca\xc4\xfa\x28\xe1\xcb\x9f\x3b\x7b\xcc\x47\x98\x55\xe6\x93\xdc\x44\x7f\xf8\x1d\x00\x00\xff\xff\x5c\xa8\xb2\xe1\xfa\x02\x00\x00" func idtablestakingAdminSet_non_operationalCdcBytes() ([]byte, error) { return bindataRead( @@ -2339,31 +2190,11 @@ func idtablestakingAdminSet_non_operationalCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_non_operational.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0x68, 0xc4, 0x60, 0xca, 0x3c, 0x78, 0xdf, 0x66, 0x1d, 0xb4, 0xe3, 0xec, 0x5f, 0xa3, 0xa7, 0x1f, 0xe1, 0x64, 0x1e, 0xd3, 0xcf, 0x20, 0xfe, 0xff, 0x7b, 0x98, 0xdb, 0xaa, 0x39, 0x72, 0xcc}} - return a, nil -} - -var _idtablestakingAdminSet_open_access_node_slotsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xd1\x6a\xdb\x40\x10\x7c\xd7\x57\x0c\x7e\x08\x32\x04\x89\x3e\xb4\x14\xd1\x34\xa4\x0d\x85\x40\x69\x4b\x9d\xf6\x7d\x7d\x5a\x59\x97\xc8\xb7\xe2\x6e\x65\xd7\x18\xff\x7b\xb9\x93\xd5\xa6\xb6\xbb\x2f\x82\xd3\xce\xec\xec\xce\xd8\x75\x2f\x5e\xf1\xa9\x93\xed\xc3\xfd\x23\x2d\x3b\x5e\x28\x3d\x5b\xb7\x42\xe3\x65\x8d\xd9\xf9\x8f\x59\x96\x95\x65\x89\xc7\xd6\x06\xa8\x27\x17\xc8\xa8\x15\x87\xc0\x1a\xa0\x2d\x43\x7a\x76\x70\x52\x33\x42\x27\x1a\xd0\x88\x07\x19\xc3\x21\xa4\xd7\x90\xe0\x5f\x4f\x9a\xc8\x73\x02\xbb\x61\xbd\x64\x0f\x69\x8e\xef\xda\x92\xa6\x9f\x91\x35\x21\x99\x4c\x0b\xee\xc5\xb4\xd7\xf0\xbc\x22\x5f\x77\x91\x5a\x1a\xb4\xb2\xc5\x9a\xdc\x6e\x1c\x83\x27\xb1\x8e\x6b\x58\x97\x88\x7b\xcf\x1b\x2b\x43\x18\xa1\xc5\x71\x07\xde\x25\x72\xcf\x8d\xe7\xd0\x72\xfd\x82\x3d\xcb\x5e\x6c\x97\xc7\xf1\x77\x69\x89\x45\xd4\x55\xe1\xc7\x83\xd3\x57\x6f\xe6\xd8\x67\x19\x00\x94\x25\x3e\x8b\xa1\x0e\x1b\xf2\x36\x5e\x6b\x5c\x3b\x32\xb3\x67\x67\x18\x2a\x49\xc7\xc3\x3d\xd2\x35\x71\x57\xaf\xad\x83\x2c\x9f\xd8\x68\xa2\xe8\x58\x41\xf1\xf1\x3b\x37\x15\xae\xce\x2f\x5f\x24\xc8\x38\xaf\xf7\xdc\x93\xe7\x9c\x8c\xd1\x0a\x34\x68\x9b\x7f\x10\xef\x65\xfb\x93\xba\x81\xe7\xb8\xba\x33\x46\x06\xa7\x51\x20\x8e\x55\x96\x58\xa6\x9e\x4b\xba\xe8\x54\x4e\xac\xc0\x5d\x53\x4c\x9a\x70\x13\x6d\xd4\x22\xa8\x78\x5a\x71\x31\x72\xbd\xfb\xaf\xd0\xf7\x79\x8c\x50\x75\x21\x5b\xc5\xf1\x9b\xda\x16\x23\xdd\x37\xd2\x76\xfe\x67\x70\xac\xdb\x5b\xf4\xe4\xac\xc9\x67\x1f\x65\xe8\x6a\x38\xd1\x49\xff\x3f\xea\xc3\x31\xb0\x49\xe7\x6c\xe4\x38\x8c\x57\xe2\x5f\x6c\x06\xe5\xc9\xa4\x58\x1b\xf2\x29\x4b\xd1\xc6\x7b\x9b\xcc\x25\xbf\xab\xb0\x8f\x86\xbe\x9d\x7c\x3d\xe0\x06\xfb\xc3\x5f\xd4\x39\xa2\xb0\x2e\xb0\xd7\xfc\x99\x77\x15\x5e\x5f\xe3\x24\x20\xf3\xec\xf2\x11\x8b\xc0\x1a\xb3\xff\x45\x6a\x4e\x8d\xf9\x44\x1d\xaa\x0b\x53\xa6\x6d\x0e\xbf\x03\x00\x00\xff\xff\x2c\x22\xfd\x94\xa8\x03\x00\x00" - -func idtablestakingAdminSet_open_access_node_slotsCdcBytes() ([]byte, error) { - return bindataRead( - _idtablestakingAdminSet_open_access_node_slotsCdc, - "idTableStaking/admin/set_open_access_node_slots.cdc", - ) -} - -func idtablestakingAdminSet_open_access_node_slotsCdc() (*asset, error) { - bytes, err := idtablestakingAdminSet_open_access_node_slotsCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "idTableStaking/admin/set_open_access_node_slots.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3e, 0x9e, 0xf6, 0xa, 0x8d, 0x4, 0x32, 0x57, 0x37, 0xcc, 0x87, 0x7f, 0x70, 0xba, 0x58, 0xeb, 0x64, 0xa4, 0x47, 0xbb, 0xd5, 0xf6, 0xdf, 0x5d, 0x55, 0x98, 0xcb, 0x43, 0x52, 0xa, 0x5a, 0x5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xda, 0x80, 0xb, 0x74, 0xc0, 0xe8, 0xa0, 0x89, 0x3e, 0xf2, 0x6c, 0x42, 0x5c, 0xba, 0xf9, 0xd4, 0x7f, 0x1c, 0xfa, 0x6a, 0xbd, 0x1a, 0x48, 0xf6, 0xde, 0xc6, 0x24, 0x66, 0x2b, 0x1d, 0x45, 0x7d}} return a, nil } -var _idtablestakingAdminSet_slot_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\xc1\x8e\xdb\x36\x10\xbd\xfb\x2b\x5e\x7d\x08\xbc\x48\x22\xd7\x40\x53\x04\x46\xdd\x20\xed\xa2\x80\xd1\x1c\x8a\x6e\xda\x4b\xd1\xc3\x98\x1a\x99\xec\x52\xa4\x40\x8e\xec\x18\x8b\xfd\xf7\x82\xa4\x2d\x59\x1b\xb7\xbc\x18\x32\x67\xde\xbc\x79\xf3\x86\xa6\xed\x7c\x10\xfc\x62\xfd\x71\x7b\xff\x99\x76\x96\x1f\x84\x1e\x8d\xdb\xa3\x09\xbe\xc5\xfc\xeb\x8b\xf9\x6c\xb6\x5c\x2e\xf1\x59\x9b\x08\x09\xe4\x22\x29\x31\xde\x21\xb2\x44\x88\x66\x44\xeb\x05\xd6\xb4\x46\x22\x1a\x1f\xc0\xa4\x34\x9c\xaf\x19\x72\xea\x18\x25\x3d\x05\x7d\x2a\x31\x26\x82\xf0\xc7\xd6\xc9\xea\x7b\x50\x08\x74\x82\x68\x12\x28\xef\x84\x8c\x2b\x98\x19\x2e\xa1\xe5\xe4\x17\x88\xc6\xc1\x87\x9a\x43\xa1\xfc\xed\xdb\xef\x2a\x6c\x25\xc1\xf6\x91\x6b\x88\x47\xe7\xbb\xde\x92\x70\x4e\x26\xd4\x26\x33\xa6\x70\xae\xa4\x29\xe2\x91\x4f\x11\x51\x9b\x46\xb8\xc6\xeb\x15\xa2\x2f\x77\xa2\xf9\x04\xb2\x66\xef\x72\xf2\xd1\x88\xce\x84\xd8\xf5\x2d\x07\x4a\xd1\x03\x91\x58\x08\xac\xde\xbe\xbb\x48\xc4\x81\x73\x7b\xce\x8b\xe6\x80\x96\x95\x26\x67\x62\x8b\xa3\x36\x4a\x83\xac\xf5\xc7\x22\x12\x21\x76\xac\x4c\x63\xb8\xce\xb9\xae\x6f\x77\x1c\xe0\x9b\xac\xd4\x4b\x21\x83\xb7\x8c\x8e\x03\xb8\xf3\x4a\x57\x39\x63\xdb\x14\xc6\x63\x91\xd4\x17\xe1\x40\xb6\xe7\x34\x9d\x73\x9d\x01\xe0\x0d\x8c\xe0\x68\xac\x85\x3f\x70\x08\xa6\x2e\xfa\x1c\x35\x09\x1f\x38\xe4\xf4\x1d\x73\x9e\xec\xa5\xf1\xe9\xcc\xab\xd9\xec\xea\x6b\x31\xce\x74\x8d\xbf\xca\x40\xff\xbe\xc3\xd3\x6c\x06\x00\xcb\x25\x3e\x79\x45\x16\x07\x0a\x26\xd9\xe9\x4c\x27\x70\xc3\x81\x9d\xe2\x34\xa8\xa4\xec\xf6\x1e\xd9\x6e\xf8\x58\xb7\x69\xb2\xbb\x7f\x58\x49\x86\xb0\x2c\xa0\xf4\xe7\xef\xdc\xac\xf1\xea\x6b\x6b\x56\x39\xa5\xd4\xeb\x02\x77\x14\x78\x41\x4a\xc9\x1a\xd4\x8b\x5e\xfc\xe4\x43\xf0\xc7\x3f\x93\x1e\x77\x78\xf5\x51\x29\xdf\x3b\x49\x04\x71\x3e\xcb\x25\x76\x39\xe6\x16\x2f\x7a\x49\x27\x9d\xc8\xb6\xa9\x2e\x9c\xb0\x41\xaa\x56\x45\xf1\x81\xf6\x5c\x15\xac\x1f\xfe\x93\xe8\x8f\x8b\xe4\x97\xf5\x8d\xe5\xab\xce\xbf\x39\xec\xa1\xc0\xfd\x46\xa2\xef\x86\xc2\xe9\x7c\xf8\x80\x8e\x9c\x51\x8b\xf9\xcf\xbe\xb7\xc9\x88\x72\xe1\x3f\x61\x1f\xcf\x1b\x9d\x79\xce\x0b\xc6\x73\x51\x89\xbf\xb0\xea\x85\xa7\x1a\x64\x50\x98\x06\x47\x46\xed\x33\x6c\x31\xe7\x09\xfc\x85\x94\xd8\x13\xbc\xbb\xde\xf3\x6c\xc5\xc1\x57\x03\x94\x69\xae\xd6\xbc\xb2\xec\xf6\xa2\xf1\xcd\x06\xef\xae\xca\xe5\x51\x95\x26\xae\x1f\x13\x0a\xfb\xbe\x65\x27\x68\xfb\x38\x56\xff\xbf\xaa\xf3\x51\x9b\x73\x6f\xe9\x1c\x28\x8c\x1c\xee\x87\xbd\x5f\xe3\x29\xf9\xf3\xfd\xfa\xfc\xee\x3c\x63\x83\xa7\xe7\x49\xd6\xf8\x48\xfc\xca\xa7\x12\xf7\x1e\x1b\xac\x46\xec\xe4\xdf\x01\x3b\x3d\x42\x57\x6f\xda\xb4\xc1\x1b\x0c\x2a\xe3\x22\x07\x59\x3c\x26\xf0\x49\xad\x37\x63\xf8\x74\xdc\x93\x28\x6c\x5e\x7c\xbf\xc6\xea\x96\x00\x13\x83\x56\x91\xe5\x61\x20\x39\xd9\xd7\x1b\x14\x2f\x46\x79\xfe\x37\x00\x00\xff\xff\xb3\xaf\x59\xc4\x24\x06\x00\x00" +var _idtablestakingAdminSet_slot_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x53\xc1\x6e\xd3\x40\x10\xbd\xe7\x2b\x1e\x39\xa0\x54\xa5\x0e\x91\x28\xaa\x22\x42\x55\x51\x21\x45\xf4\x80\x68\x39\x21\x0e\xd3\xf5\x38\x5e\x6a\xef\x5a\xbb\xe3\xa6\x56\x95\x7f\x47\xbb\x9b\xc6\x71\x1a\x98\x4b\x14\xef\xcc\x7b\x6f\x66\xde\xe8\xba\xb1\x4e\xf0\xb5\xb2\xeb\xe5\xf5\x1d\xdd\x57\x7c\x2b\xf4\xa0\xcd\x0a\x85\xb3\x35\xc6\xaf\x1f\xc6\xa3\xd1\x74\x8a\xbb\x52\x7b\x88\x23\xe3\x49\x89\xb6\x06\x9e\xc5\x43\x4a\x86\xaf\xac\xa0\xd2\xb5\x16\x8f\xc2\x3a\x30\xa9\x12\xc6\xe6\x0c\xe9\x1a\x46\xac\x0e\x39\x37\x29\x45\x7b\x10\x7e\x2e\x8d\xcc\x3e\x82\x9c\xa3\x0e\x52\x92\x40\x59\x23\xa4\x4d\x82\x8c\x68\x01\x2c\xd4\x1e\xe0\x69\x03\xeb\x72\x76\x49\xef\xfb\xb3\x0f\x19\x96\x12\x50\x5b\xcf\x39\xc4\xa2\xb1\x4d\x5b\x91\x70\xa8\x25\xe4\x3a\xca\x25\xb7\xe5\x29\xc9\xe3\x81\x3b\x0f\x5f\xea\x42\x38\xc7\xe9\x0c\xde\xa6\x37\x29\xb9\x03\x55\x7a\x65\x42\xed\x5a\x4b\x19\xd5\xb0\x69\x6b\x76\x14\x92\x77\x32\x7c\xa2\x9f\x9d\x9d\x8f\x46\x7b\x53\x99\xf4\x8d\xce\xf1\x2b\x75\xf9\xfb\x04\xcf\xa3\x11\x00\x4c\xa7\xb8\xb1\x8a\x2a\x3c\x92\xd3\x61\xc2\x71\x5e\x04\xc7\x05\x3b\x36\x8a\x83\xfc\xc0\xb8\xbc\x46\xdc\x00\xae\xf2\x3a\xf4\x7b\xff\x87\x95\x44\x88\x8a\x05\x14\x3e\xfe\xe0\x62\x8e\xb7\xaf\xb7\x95\xc5\x92\xc4\xd7\x38\x6e\xc8\xf1\x84\x94\x92\x39\xae\x5a\x29\xaf\x94\xb2\xad\x91\xa0\x08\xdb\x98\x4e\x71\x6f\x9d\xb3\xeb\x63\x42\xe8\x90\x3f\x84\xe7\xaa\xc8\x5e\x44\x60\x81\x00\x9f\x25\x8c\x4f\xff\x54\xf4\x79\x12\x06\x36\x3f\x62\xbc\x6c\xfb\x1b\xd3\x6e\xc5\x3a\x5a\xf1\x77\x92\xf2\x64\x47\x18\xe2\xf2\x12\x0d\x19\xad\x26\xe3\x2f\xb6\xad\xc2\x26\xe4\x45\xf7\x40\xb5\xdf\xba\x39\xea\x1b\x27\x8c\x4d\x1a\x07\x3f\xb1\x6a\x85\x87\xbd\x47\x50\xe8\x02\x6b\x46\x6e\x23\xac\x6f\x58\xe9\xa2\x03\x3f\x91\x92\xaa\x83\x35\xfb\x26\x47\xc3\x2e\xf9\xc0\xd9\x8a\x77\x50\xba\xd8\x33\x79\x56\xb1\x59\x49\x89\x37\x0b\x9c\xef\xd1\xc5\x9d\xa4\x26\xf6\x2f\x89\xdc\xaa\xad\xd9\x08\xea\xd6\xf7\xec\xff\x63\x1d\xf7\xb3\xd9\xf6\x16\xe2\x91\x5c\xaf\xe1\x7a\xe7\xfb\x39\x9e\x83\x11\x2f\xe6\xdb\xab\xdb\x60\x81\xe7\xcd\xa0\xaa\x3f\x92\x6f\xdc\xa5\xbc\x0b\x2c\x30\xeb\xb1\x83\x51\x77\xd8\xe1\x06\xf7\x2e\x7a\xd8\xe0\x11\x05\x99\x36\x9e\x9d\x4c\x1e\x02\xf8\x80\xeb\x5d\x9f\x3e\x5c\xf7\x20\x0b\x8b\x83\xff\xa7\x98\x1d\x1b\xc0\xc0\x98\x99\x67\xb9\xdd\x89\x1c\x1c\xe6\x11\x89\x2f\x46\xd9\xfc\x0d\x00\x00\xff\xff\xf0\xca\x70\xbe\x20\x05\x00\x00" func idtablestakingAdminSet_slot_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -2379,11 +2210,11 @@ func idtablestakingAdminSet_slot_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_slot_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0xf1, 0xe8, 0x24, 0xbe, 0xac, 0x4a, 0x5d, 0x51, 0xdf, 0xdb, 0x3, 0x15, 0xe4, 0xb, 0xaa, 0x9e, 0x25, 0x75, 0x49, 0xeb, 0x51, 0x93, 0xbb, 0x48, 0x33, 0xbf, 0x80, 0x61, 0x29, 0xfd, 0x66}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7d, 0x39, 0x48, 0x1e, 0xf8, 0xc0, 0x10, 0xf6, 0x86, 0xbc, 0xa3, 0x90, 0xc4, 0x27, 0x35, 0x3d, 0x45, 0x60, 0x84, 0xa7, 0x53, 0xd6, 0xc6, 0xc, 0x78, 0x4a, 0xaf, 0x55, 0x99, 0x2d, 0x99, 0x6}} return a, nil } -var _idtablestakingAdminStart_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x31\x6f\xc2\x30\x10\x85\xf7\xfc\x8a\xa7\x0c\x28\x2c\xc9\x8e\xda\x22\x5a\x54\x09\xa9\x43\x55\x50\xf7\xc3\xb9\x90\x14\x63\x47\xf6\xa5\xb4\x42\xfc\xf7\xca\x0e\xa9\xa0\xd0\x5b\x2c\xd9\x77\xef\x7d\x7e\xd7\xec\x5a\xeb\x04\xcf\xda\xee\x17\xf3\x15\xad\x35\x2f\x85\xb6\x8d\xd9\xa0\x72\x76\x87\xf4\xfa\x21\x4d\x92\xa2\xc0\xaa\x6e\x3c\xc4\x91\xf1\xa4\xa4\xb1\x06\x2d\x7d\x7b\x38\xde\x93\x2b\x3d\xc4\x82\xb4\x86\xd4\x0c\x2f\xb4\xe5\x12\xc6\x96\xec\x93\xe4\x7c\xe2\x90\x24\x00\x50\x14\x78\xb1\x8a\x34\x3e\xc9\x35\xc1\x07\x95\x75\x20\x38\xae\xd8\xb1\x51\x1c\xd4\x82\xd2\x62\x8e\xc8\x81\x59\xb9\x6b\x0c\xec\xfa\x83\x95\x44\x09\xcd\x02\x0a\x97\x6f\x5c\x4d\x30\xba\x66\xce\xe3\x48\xef\xd7\x3a\x6e\xc9\x71\x46\x4a\xc9\x04\xd4\x49\x9d\x3d\x5a\xe7\xec\xfe\x9d\x74\xc7\x63\x8c\x66\x4a\xd9\xce\xc8\x18\x87\xd8\x7f\x62\x5c\xc7\x9e\x5b\x5c\xf4\x17\x27\x94\x67\x5d\xe5\x03\x13\xee\x11\xdc\x72\x2f\xd6\xd1\x86\xf3\x5e\xeb\xee\x5f\xd0\x87\x2c\x84\x3f\xb9\xb1\x95\xfc\x74\xc6\xb6\x65\x2f\xf7\x4a\x52\x8f\x7f\x8d\x43\x4d\xa7\x68\xc9\x34\x2a\x4b\x9f\x6c\xa7\x43\xf8\x32\xf0\x5f\xd0\xfb\xd3\xaa\x23\x67\xda\x6b\x1c\xfb\x94\xf8\x8b\x55\x27\x7c\x96\xc1\xc5\x8f\x72\x2f\xe4\x64\x80\xe9\xe2\x42\xb3\x41\xe0\xf8\x13\x00\x00\xff\xff\x18\xdb\x97\xa0\x55\x02\x00\x00" +var _idtablestakingAdminStart_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xc1\x6e\xf2\x40\x0c\x84\xef\x79\x8a\x51\x0e\xbf\xc2\x25\xb9\xa3\xbf\x45\xa8\xa8\x12\x52\x0f\x55\xe1\x05\xcc\xc6\x21\x29\xcb\x6e\xe4\x75\x4a\x2b\xc4\xbb\x57\x9b\x90\x0a\x0a\xf5\x25\x52\xd6\x9e\xf9\x3c\x6e\xf6\xad\x17\xc5\xb3\xf5\x87\xe5\x62\x4d\x1b\xcb\x2b\xa5\x5d\xe3\xb6\xa8\xc4\xef\x91\xde\x3e\xa4\x49\x52\x14\x58\xd7\x4d\x80\x0a\xb9\x40\x46\x1b\xef\xd0\xd2\x57\x80\xf0\x81\xa4\x0c\x50\x0f\xb2\x16\x5a\x33\x82\xd2\x8e\x4b\x38\x5f\x72\x48\x92\xcb\x89\x63\x92\x00\x40\x51\xe0\xc5\x1b\xb2\xf8\x20\x69\xa2\x0f\x2a\x2f\x20\x08\x57\x2c\xec\x0c\x47\xb5\xa8\xb4\x5c\xa0\xe7\xc0\xbc\xdc\x37\x0e\x7e\xf3\xce\x46\x7b\x09\xcb\x0a\x8a\x3f\xdf\xb8\x9a\xe2\xdf\x2d\x73\xde\x8f\x0c\x7e\xad\x70\x4b\xc2\x19\x19\xa3\x53\xcc\x3b\xad\xe7\xc6\xf8\xce\xe9\x04\xc7\xbe\xe1\x0c\xb5\xf1\x22\xfe\x70\x0f\x84\x7e\xfb\xc7\x0a\x6c\xab\x7c\x84\xc0\x03\xa2\x7c\x3e\x68\xfc\xff\x93\xe8\x31\x8b\x29\x4f\xef\xc4\x9f\x9f\xbf\x7d\xdb\x4a\xbd\xd0\x96\x5f\x49\xeb\xc9\x8f\x61\xac\xd9\x0c\x2d\xb9\xc6\x64\xe9\x93\xef\x6c\x4c\x59\x47\xee\x2b\xea\x70\xbe\x69\xcf\x97\x0e\x1a\xa7\x21\x0e\xfe\x64\xd3\x29\x5f\xec\x7e\xb5\x49\x1e\x94\x44\x47\x98\xae\xbf\x5c\x36\x0a\x9c\xbe\x03\x00\x00\xff\xff\xe8\x24\xf9\xa5\x3e\x02\x00\x00" func idtablestakingAdminStart_stakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2399,11 +2230,11 @@ func idtablestakingAdminStart_stakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/start_staking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0xae, 0x60, 0x65, 0xba, 0x40, 0xc1, 0x30, 0x64, 0xff, 0xc4, 0x97, 0x57, 0xf8, 0x6d, 0x7d, 0x89, 0xc3, 0x8c, 0xef, 0x8b, 0xca, 0x84, 0xfb, 0x5c, 0xb5, 0x0, 0x2e, 0xf, 0xce, 0xda, 0x60}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x90, 0x3a, 0x3b, 0xca, 0x9f, 0x24, 0x17, 0x89, 0xd3, 0x4d, 0x3b, 0x6d, 0x12, 0xfc, 0xe2, 0xe9, 0x6e, 0xb1, 0xfa, 0x4b, 0xb7, 0xa0, 0x69, 0x52, 0x9e, 0x93, 0xb4, 0xc5, 0xc4, 0xc2, 0xb7, 0xc5}} return a, nil } -var _idtablestakingAdminTransfer_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\x41\x6b\xc2\x40\x10\x85\xef\xfb\x2b\x1e\x1e\x6c\x02\x36\xde\xc5\x96\x4a\x4b\x4b\x6f\x05\xfd\x03\x63\x1c\xe3\xd2\x75\x27\xec\x8e\x8a\x88\xff\xbd\x74\x8d\x31\x54\x4b\xe9\x75\xe7\xed\xbc\xef\xcd\xb3\xeb\x5a\x82\xe2\xd5\xc9\xee\xfd\x65\x46\x73\xc7\x53\xa5\x4f\xeb\x2b\x2c\x83\xac\xd1\xbb\x1e\xf4\x8c\xd1\x40\x3e\x52\xa9\x56\x3c\x0e\x06\xa8\x03\xd7\x14\x38\x93\x9d\xe7\x30\x02\x6d\x74\x95\x3d\x53\x4d\x73\xeb\xac\x5a\x8e\x39\xfa\x93\xb2\x94\x8d\xd7\x01\x02\x97\x6c\xb7\xad\x6c\xaa\x12\xa8\xe2\x8b\x22\xc7\xc1\x18\x00\x18\x0e\xf1\xc6\x0a\x42\x6c\x80\x68\xb1\xb6\x1e\xe5\x79\xef\x3e\xa9\x1c\x2b\x96\x4e\x76\x0d\xdc\x24\x69\x1e\x90\x48\x8a\xb2\xc3\x50\xc4\x93\x53\x61\x63\xdc\xf0\xb8\x7f\x1d\xac\x48\x9f\x1f\xb3\x1b\x93\xee\xf6\x86\xf8\x83\x74\x95\x9b\x96\xe1\x82\x85\xf1\x7d\x1b\xb2\x35\x75\x42\x8b\xf1\xd3\xef\x9e\xdf\xc7\x1e\xdd\x68\xe1\x2f\x67\xa9\xb2\x8b\x73\x51\xb1\xce\xf6\x35\x67\x79\x33\x5e\x70\xd4\x20\xfb\xee\xcd\xce\xa7\x9d\xd2\x96\xa1\x2b\xee\x82\xab\xa4\x97\x33\xfc\x5d\x04\x9d\x3a\x41\x13\x23\x7d\xbe\xca\x16\x69\xcb\xd9\xcf\x0e\x06\x50\xf9\x5f\x20\xe0\x68\x8e\x06\xe6\x2b\x00\x00\xff\xff\x7a\xe3\x3f\x16\x92\x02\x00\x00" +var _idtablestakingAdminTransfer_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x91\x51\x6b\xea\x40\x10\x85\xdf\xf7\x57\x1c\x7c\xb8\x37\x01\x6f\xf2\x2e\xde\x52\x69\x29\x14\xfa\x50\xd0\x3f\x30\xc6\x31\x2e\xae\x3b\xcb\x66\x8c\x88\xf8\xdf\x4b\x62\x9a\x5a\xb5\x0f\xf6\x75\xcf\xce\x9c\x73\xe6\xb3\x9b\x20\x51\xf1\xe2\x64\xf7\xfa\x3c\xa3\xb9\xe3\xa9\xd2\xda\xfa\x12\xcb\x28\x1b\x0c\xae\x85\x81\x31\x1a\xc9\x57\x54\xa8\x15\x8f\x83\x01\x42\xe4\x40\x91\x13\xd9\x79\x8e\x23\x4c\xb6\xba\x9a\x14\x85\x6c\xbd\x0e\x11\xb9\x60\x5b\x5f\x3c\xa7\x38\x18\x03\x00\x79\x8e\x37\xeb\xd7\xd0\x15\xa3\xea\x8c\x69\xb1\xb1\x1e\x05\x05\x9a\x5b\x67\x75\x0f\x15\x10\x42\xb4\x35\x29\x23\x38\x2a\xb8\x9d\x6d\xdd\x32\x67\xfd\x7a\xfc\xe7\x3a\x66\x36\x69\xd6\x3c\x24\x79\x37\x98\x2f\x9d\xec\x3a\xad\x95\x86\x50\x8a\x25\xeb\xe8\x46\xf9\xec\xfc\xe3\x54\x25\x52\xc9\xef\xa4\xab\xb4\x35\x76\xac\xb8\xdc\x86\xff\x5d\x9e\x92\xf5\xa9\x8f\xfe\xab\x60\xa9\xe9\x5d\xce\x8e\x30\xfe\xd7\x9f\x32\x73\x42\x8b\xf1\xe3\xcf\xab\x1b\x74\xf7\xd5\x3a\x39\x4a\x99\x7c\x39\x36\x4d\x66\xfb\xc0\x49\xda\xc9\x0b\xae\x34\xca\xfe\x2c\x54\xcf\x70\x4a\x35\xb7\x0c\xbf\x53\x6b\x5e\x3e\x43\xff\xad\x40\x27\xf8\xa8\x4e\xce\xed\x70\xdf\xa9\xa2\x9a\x93\x1b\x8c\xe4\x5e\x3e\x47\x73\x34\x30\x1f\x01\x00\x00\xff\xff\x83\x3c\x0a\x9c\xd8\x02\x00\x00" func idtablestakingAdminTransfer_adminCdcBytes() ([]byte, error) { return bindataRead( @@ -2419,11 +2250,11 @@ func idtablestakingAdminTransfer_adminCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/transfer_admin.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0x0, 0xac, 0x5d, 0xe7, 0x0, 0x5b, 0x3b, 0x2d, 0x66, 0xa7, 0xb7, 0x92, 0xd3, 0x4b, 0x2b, 0xe1, 0xd1, 0xb3, 0x8, 0xa, 0x34, 0x56, 0x6b, 0x24, 0x16, 0xd3, 0xe9, 0xa4, 0xf5, 0x60, 0x21}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x32, 0x84, 0xe0, 0x24, 0x30, 0xb1, 0x5, 0xe3, 0x5f, 0x2, 0x62, 0x90, 0x3a, 0x5b, 0x39, 0xcc, 0x5a, 0x57, 0xdd, 0x6c, 0xe5, 0x5f, 0xc0, 0xd9, 0xcb, 0x67, 0x73, 0xd1, 0x11, 0xe2, 0xc, 0xa5}} return a, nil } -var _idtablestakingAdminTransfer_fees_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x31\x6b\xc3\x30\x10\x46\x77\xfd\x8a\xaf\x19\x5a\x07\x92\x78\x0f\xa1\x34\x4b\xa6\x6c\x85\xee\x57\xe5\x9c\x88\xc8\x3a\x21\x9d\x1d\x4a\xc9\x7f\x2f\x56\x6d\x43\x0a\xf5\x66\xf1\xee\xe3\x3d\xd7\x46\x49\x8a\x83\x97\xdb\x81\x39\xa3\x49\xd2\x62\x31\xfd\x2e\x8c\xd1\x44\x21\x93\x55\x27\x01\xdf\xc6\x00\x40\x4c\x1c\x29\x71\x25\xb7\xc0\x69\x0b\xea\xf4\x52\x1d\x85\x4e\x1f\xe4\x3b\x5e\xe2\x79\x6f\xad\x74\x41\x57\x48\x6c\xd9\xf5\x33\xf3\x4e\x3d\xff\x61\x96\xd3\xe6\xf0\xd5\x35\x8e\x2e\x5c\xa1\x17\x46\x56\xba\xba\x70\x06\x9d\x5a\x17\x60\x29\xd2\xa7\xf3\x4e\xbf\xa0\x02\x42\x4c\xae\x27\x65\x44\x4f\x96\xe7\x7b\xcf\x8a\x86\x39\xef\xcb\xcd\x6e\x8d\x22\xb8\xc9\x2a\x89\xce\xbc\xf1\x42\xa7\xdd\xdb\x94\xb6\x29\x94\xcb\x9a\x48\x25\xbd\x56\x43\xf8\x16\xf5\x08\xd7\xcd\x88\x15\x6a\xf9\xf4\x20\x39\x74\x14\xc9\x47\xad\xe1\x65\x2a\x7e\xc9\xa0\xdf\x42\x8c\x8b\xf3\xc0\x84\xcc\x5e\x99\x7a\xae\x76\xeb\xd9\x7c\x05\x95\x7f\x4d\xca\xcc\xdd\x98\xbb\x81\xf9\x09\x00\x00\xff\xff\x99\xa2\xe7\xfc\xbc\x01\x00\x00" +var _idtablestakingAdminTransfer_fees_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\xe9\xa9\x09\x24\x76\xcf\xc1\x94\x1a\x62\x9f\x02\x85\xfa\xd0\xf3\x56\x59\x27\x22\xb6\x24\xa4\x8d\xd3\x52\xf2\xef\xc5\x6a\x6c\x48\xa1\x3a\xae\x66\x86\xf7\x4c\xef\x5d\x10\xd4\x9d\xbb\xd4\xcc\x11\x6d\x70\x3d\x9e\x3e\xeb\xdd\xeb\x7b\x5d\x55\x4d\xb9\xdd\xbe\x55\x4d\xa3\x94\x04\xb2\x91\xb4\x18\x67\xf1\xad\x14\x00\xf8\xc0\x9e\x02\x2f\xdc\xc5\x72\xd8\xa0\x3c\xcb\xb1\xd4\xda\x9d\xad\xac\x10\x58\xb3\x19\xfe\x9c\x97\x53\x73\x7c\x79\x8e\x9d\xb1\x27\xc8\x91\x11\x85\x4e\xc6\x1e\x40\xfb\xde\x58\x68\xf2\xf4\x61\x3a\x23\x5f\x10\x07\x82\x0f\x66\x20\x61\xf8\x8e\x34\xcf\xfd\x8e\x05\x2d\x73\x2c\x53\xa7\x58\x23\x61\x64\x9d\xa3\x7d\xf1\x32\xe9\x64\xe9\xd7\x44\x09\x24\x2e\x3c\x2f\x46\xbb\x0d\xf2\x28\x2e\xd0\x81\xf3\xf6\x16\x4b\xa9\xe5\xc3\x1d\x5c\x43\x03\x27\xb8\x7b\x9c\xf1\x32\xc9\x3d\x46\xd0\xaf\x19\x6e\x8b\xf3\xc0\x14\xc9\x22\x0d\xbc\x28\xd6\x33\xe9\x0a\xe2\xfe\x25\x48\xf5\xab\x52\x57\x05\xf5\x13\x00\x00\xff\xff\x1e\x04\x07\xfe\x99\x01\x00\x00" func idtablestakingAdminTransfer_fees_adminCdcBytes() ([]byte, error) { return bindataRead( @@ -2439,11 +2270,11 @@ func idtablestakingAdminTransfer_fees_adminCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/transfer_fees_admin.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xc1, 0xdf, 0xbd, 0x8e, 0xdc, 0xe3, 0xd0, 0x75, 0x45, 0x73, 0x94, 0x3, 0xfc, 0x88, 0x86, 0xe4, 0xe3, 0x76, 0x0, 0x2f, 0x71, 0xde, 0x33, 0x80, 0x84, 0xa8, 0xfe, 0xdd, 0xbc, 0xa6, 0x4d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0xfe, 0x7f, 0xe5, 0x76, 0xf2, 0x7c, 0x89, 0xf0, 0xca, 0xa8, 0xbe, 0x89, 0x31, 0x37, 0xfe, 0x76, 0x6e, 0xe, 0x60, 0x1a, 0x5a, 0x20, 0x2d, 0x47, 0x78, 0x63, 0x90, 0x53, 0xe7, 0x67, 0xa7}} return a, nil } -var _idtablestakingAdminTransfer_minter_deployCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x4f\xdb\x4e\x10\xbd\xfb\x53\x3c\xe5\x80\x1c\xfd\x82\x03\x12\x20\x64\xe1\x1f\x4a\xd3\x22\x55\x50\x0e\xa5\xf4\x82\x38\x6c\xec\x49\xbc\xc2\xde\xb5\x76\xc7\x49\xad\x28\xdf\xbd\x5a\xaf\xed\x04\x9a\x4a\xf5\x61\x93\x9d\x3f\x6f\x66\xde\xce\x8c\x2c\x2b\x6d\x18\x73\xd3\x54\xac\x83\xee\x76\x57\xe8\xcd\x0f\xfd\x46\x0a\x4b\xa3\x4b\x8c\x86\xfb\x28\x08\xd8\x08\x65\x45\xca\x52\xab\xb0\xaa\x17\x85\x4c\xef\xa9\xb1\x31\x5e\x3c\x44\x74\x4f\xcd\x83\xb4\xfc\x45\xb1\x69\x5e\x27\x48\xb5\x62\x23\x52\x7e\x14\x25\xc5\x78\x62\x23\xd5\xca\x49\xb3\x83\x9b\xa1\x8d\x30\xd9\xac\xd4\xb5\xe2\x18\xcf\x77\xf2\xd7\xd5\x45\x2f\x9d\xd7\x07\xa2\x54\xa8\x4c\x66\x82\xe9\x51\x67\xf4\x20\x4b\xc9\x2e\xf0\xf3\x57\xc5\x57\x17\xaf\x63\x6c\x83\x00\xa8\x0c\x55\xc2\x50\x68\xe5\x4a\x91\x89\x21\x6a\xce\xc3\x59\x96\xdd\x53\x33\xc1\x93\x58\xd3\x4f\x51\xd4\x34\xc1\x27\x6d\x8c\xde\xb4\x97\x31\x4e\x66\x69\xea\xa2\x77\x18\x40\x41\x0c\x91\xa6\x8c\x04\x9d\x2a\xac\x44\xe3\xf0\x3c\xee\xb8\xb5\x6a\x8f\xa5\x36\x78\xa3\x06\x52\x61\xcf\x07\xb6\xad\xce\x7d\x0e\x26\x7a\xa3\xc6\x46\x22\xcb\xf6\x94\xc5\xce\x29\x1a\xae\x13\xe4\xc2\xe6\xb3\x62\xa5\x8d\xe4\xbc\xf4\xda\x77\xa2\x09\x36\x24\x57\x39\x7b\x95\xff\xef\xd3\xd8\xf9\x9c\xa7\xd3\x69\x57\x15\x04\x0c\x2d\xc9\x90\x4a\x09\xac\xc1\x39\xb5\x6f\x0a\xff\xa8\xb3\xac\x94\xca\xe5\xeb\xe4\xc2\x97\x07\xcb\xda\x88\x15\x0d\xd5\x2f\xfb\x37\xf7\xd6\x49\x57\x78\xd4\xd9\x45\x8b\x36\xd2\xcd\xc9\xd0\x1b\x51\x6b\x28\x2d\x1b\xc1\xda\xfc\x1f\xba\xd6\x89\x31\xed\xec\xa7\xef\xf1\xc6\x03\x3d\xb7\xb7\xa8\x84\x92\x69\x38\x9a\xeb\xba\xc8\xa0\x34\x63\xf1\xef\x55\x18\xb2\xba\x36\x29\x8d\xc6\x7b\x12\xe6\x86\x04\x13\xc4\xbe\x86\x6f\x52\x31\x99\xef\x9d\xed\x9f\x35\x7a\x3d\x6e\x4e\x3f\x94\x1d\xa5\x2d\xd4\x23\x6d\xbc\x45\x28\x8a\x42\x6f\x68\xe8\xd5\xf3\xb3\xfe\x8b\xce\xba\x04\xda\xe7\xee\x49\xb2\x62\x4d\xe1\xcd\xe9\x87\x38\x13\xb0\x3e\xc6\x8c\xd7\xf6\x38\xd6\x92\xe1\xf0\x48\xcb\x47\x05\xa9\x15\xe7\x48\x12\x5c\x4e\x06\x1e\x01\x94\x64\xad\x58\x51\x8c\xd1\xbc\xf7\x82\x73\x43\xeb\x87\x42\x5a\xc6\xa2\x66\xe4\x62\xed\xd8\xe9\x60\xf4\x12\x97\x3d\x7b\x8e\x94\x23\x11\x3f\xcb\x94\x63\x6c\xdd\xa0\x5d\xc7\xf0\xf3\xb6\x43\x82\xed\xae\xf5\x5a\x0b\x03\xa3\x0b\xf2\xaa\x6b\x24\x38\x0f\x86\xd1\x28\xda\xd8\x52\x1d\xc3\x1d\xa6\xe4\x2f\x31\x5f\x1c\xea\x2b\x12\x0f\xd2\xd9\x3a\x19\x12\xff\xf3\x1f\xce\x0f\x27\xa0\xe5\xbe\xdf\x38\x7e\xde\x54\xbb\x77\x0e\xb7\x50\xbf\x7d\xdc\x19\xd5\xbc\xbc\x7e\xbf\x80\x0e\x16\xcf\xd1\x85\xe3\xf2\x72\xdd\xbb\x0b\x82\x5d\x80\xe0\x77\x00\x00\x00\xff\xff\x21\x67\x62\x69\x40\x05\x00\x00" +var _idtablestakingAdminTransfer_minter_deployCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x5d\x6f\xda\x4a\x10\x7d\xf7\xaf\x38\xe2\xe1\xca\xe8\x12\x93\x48\x49\x14\x59\xf1\x8d\xb8\xb4\x91\xaa\xa4\x79\x68\x9b\xa7\x88\x87\xc5\x1e\xf0\x2a\xf6\x2e\x9a\x1d\x42\x11\xe2\xbf\x57\xeb\xb5\x0d\x49\xa9\x54\x3f\x2c\xec\x7c\x9c\x9d\x39\xf3\xa1\xeb\x95\x65\xc1\x94\xb7\x2b\xb1\x51\x7b\xbb\xaf\xec\xe6\x87\x7d\x25\x83\x05\xdb\x1a\x83\xfe\x3e\x88\x22\x61\x65\x9c\xca\x45\x5b\x13\xaf\xd6\xf3\x4a\xe7\x0f\xb4\x75\x29\x5e\x02\x44\xf2\x40\xdb\x47\xed\xe4\xb3\x11\xde\xce\x46\xc8\xad\x11\x56\xb9\x3c\xa9\x9a\x52\x7c\x17\xd6\x66\xe9\xa5\x05\xa5\x78\x79\xfe\x62\xe4\x66\x36\x02\xd3\x46\x71\x31\xa9\xed\xda\x48\x8a\xe7\x7b\xfd\xf3\xfa\xb2\x93\x4e\xd7\x47\xa2\x5c\x99\x42\x17\x4a\xe8\xc9\x16\xf4\xa8\x6b\x2d\xae\x85\xb9\xbe\x9c\x0d\xb1\x8b\x22\x60\xc5\xb4\x52\x4c\xb1\xd3\x4b\x43\x9c\x62\xb2\x96\x72\x92\xe7\x1e\xbb\xb5\x00\x2a\x12\xa8\x3c\x17\x64\xc7\xea\x78\xa5\xb6\xde\x23\x78\x0e\x1b\xcb\xe6\x58\x58\xc6\x2b\x6d\xa1\x0d\x0e\x29\x63\xd7\xe8\xfc\xe7\xa1\x92\x57\xda\xba\x44\x15\xc5\x81\x95\xd4\x3b\x25\xfd\x75\x84\x52\xb9\x72\x52\x2d\x2d\x6b\x29\xeb\xa0\x7d\x27\x1a\x61\x43\x7a\x59\x4a\x50\x85\xff\x21\x8c\x7d\x88\x7b\x3c\x1e\xe3\x7f\xcb\x6c\x37\x50\x60\x5a\x10\x93\xc9\x09\x62\x21\x25\x35\x65\x43\xa8\xdb\xa4\xa8\xb5\xf1\xf1\x7a\xb9\x0a\xe9\xc1\x89\x65\xb5\xa4\x9e\x81\x45\x57\xd6\x60\x9d\xb5\x89\x27\xf3\xe6\x85\xdb\x7f\xfa\xb2\x27\x8d\x81\x76\xc2\x4a\x2c\xff\x17\xfb\xae\x48\x31\x6e\xf1\xc6\xef\x71\x86\x3d\x2d\x77\x77\x58\x29\xa3\xf3\x78\x30\xb5\xeb\xaa\x80\xb1\x82\xf9\xdf\x47\xcf\xe4\xec\x9a\x73\x1a\x0c\x0f\xc9\x4f\x99\x94\x10\xd4\x21\xf6\xaf\xda\x08\xf1\xb7\xd6\xf6\xf7\xdc\x82\x1e\xb7\x67\x1f\xd2\x4d\xf2\x06\xea\x89\x36\xc1\x22\x56\x55\x65\x37\xd4\x77\xe1\xc5\x79\xf7\x25\xe7\x6d\x00\x4d\x99\x9d\x7a\xa3\xf8\xf6\xec\x03\xfe\x08\x62\x4f\x31\x12\xb4\x9d\xbf\x73\xc4\x12\x9f\x68\xe2\xa4\x22\xb3\x94\x12\x59\x86\xab\x51\xcf\x1f\x80\x9a\x9c\x53\x4b\x4a\x31\x98\x76\x5e\xf0\x6e\x68\xfc\x50\x69\x27\x98\xaf\x05\xa5\x7a\xf3\xac\xb4\x30\x76\x81\xab\x8e\x35\x4f\xc6\x89\x17\x3f\xe9\x5c\x52\xec\x9a\x09\x4c\x11\x26\x68\x8f\x0c\xbb\x7d\xe3\xf5\xa6\x18\x6c\x2b\x0a\xaa\x1b\x64\xb8\x88\xfa\x51\xa8\x9a\xb7\xb5\x39\x85\xdb\x4f\xc5\x1f\xde\x7c\xf1\xa8\x33\x64\x01\xa4\xb5\xf5\x32\x64\xe1\xe7\x5f\x5c\x1c\x77\x7c\xc3\x79\xb7\x44\xc2\x7c\x99\x66\x95\x1c\x2f\x96\x6e\xa1\xf8\xf3\xfd\x36\x39\xda\x22\x27\xb7\x87\x0f\xc9\x37\xec\x3e\x8a\xf6\x11\xa2\x5f\x01\x00\x00\xff\xff\xc2\xb5\x17\x3f\x0e\x05\x00\x00" func idtablestakingAdminTransfer_minter_deployCdcBytes() ([]byte, error) { return bindataRead( @@ -2459,11 +2290,11 @@ func idtablestakingAdminTransfer_minter_deployCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/transfer_minter_deploy.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbe, 0x1e, 0x95, 0xdc, 0x42, 0x25, 0x57, 0x4f, 0xdb, 0xbe, 0x75, 0x38, 0xea, 0x13, 0xcf, 0xba, 0x25, 0xcb, 0x98, 0x2a, 0x37, 0xfe, 0x7a, 0x6c, 0xec, 0xe4, 0xc3, 0x36, 0x5a, 0x3, 0x6b, 0x54}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x52, 0x27, 0x3c, 0x53, 0x2b, 0x4e, 0x9f, 0x97, 0x58, 0x55, 0x4d, 0x83, 0xf1, 0x6b, 0xaa, 0xb4, 0x70, 0x76, 0x6a, 0x57, 0x25, 0xe2, 0xa7, 0xfc, 0xf9, 0x3, 0xea, 0x7, 0x2d, 0x5d, 0x8a, 0xea}} return a, nil } -var _idtablestakingAdminUpgrade_set_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x8b\x9c\x40\x10\xc5\xef\x7e\x8a\x87\x87\x45\x61\xd1\x6b\x90\x24\xcb\x66\x96\xc0\x40\x0e\x21\xbb\x9b\x4b\xc8\xa1\xa6\x2d\xd7\xce\xb6\x5d\xd2\x5d\x66\x12\x96\xf9\xee\xa1\x75\x66\xf2\x67\x4c\x1d\x14\xd4\xf7\x7b\xef\x75\x69\x87\x51\x82\xe2\xbd\x93\xfd\xf6\xee\x81\x76\x8e\xef\x95\x9e\xad\x7f\x42\x17\x64\x40\x7e\xf9\x22\xcf\xb2\xba\xc6\x43\x6f\x23\x34\x90\x8f\x64\xd4\x8a\xc7\x48\x3f\x23\x02\xef\x29\xb4\x11\x2a\x20\xe7\xa0\x3d\x23\x2a\x3d\x73\x0b\x2f\x2d\xc7\x2c\xfb\x43\x51\x18\x69\xb9\xc1\x97\xc7\xad\xd7\x57\x5f\x4b\xbc\x64\x19\x00\xd4\x35\x3e\x88\x21\x87\xef\x14\x6c\xb2\x45\x27\x01\x84\xc0\x1d\x07\xf6\x86\x13\x3c\x81\xb7\x77\x98\x63\xe1\xb6\x1d\xac\x87\xec\xbe\xb1\xd1\x19\xe1\x58\x41\xe9\xe1\x27\xee\x1a\x5c\x5d\x56\xa8\x66\xc9\xe2\x37\x06\x1e\x29\x70\x41\xc6\x68\x03\x9a\xb4\x2f\x1e\xc7\x96\x94\x37\xe2\x35\x90\xd1\x6b\xbc\x93\x10\x64\xff\x99\xdc\xc4\x25\xae\x6e\x8d\x91\xc9\xeb\x39\x70\x9a\x24\xae\xcc\x51\x10\xab\x69\x06\x14\x9e\x06\x6e\x56\x8f\xf0\x1a\x4b\xf9\x74\x2d\x7f\x63\xea\x1a\xbb\xd9\x6b\xad\x2f\xfd\x5b\x33\x4d\x64\xd7\x55\xa7\xae\x78\xb3\x04\x89\x2a\x81\x9e\xb8\x5a\x58\xaf\xff\x7b\x00\x6f\x8b\xb4\xe3\x66\x65\xf9\xd5\xf1\x3e\x7f\x76\xbf\xe0\x3e\x92\xf6\xe5\xd9\x38\xcd\xcd\x0d\x46\xf2\xd6\x14\xf9\x46\x26\x97\x76\xac\xa7\xfc\x7f\xa5\x8f\xc7\x3f\x6a\xce\x99\x2f\x8c\xc3\xd2\x9a\x7f\xb0\x99\x94\xf1\xb2\xde\xa8\x8a\xac\x1b\x47\x76\xe0\xb6\x38\xe9\x0e\xbf\x02\x00\x00\xff\xff\xf6\x62\xb3\x93\xb3\x02\x00\x00" +var _idtablestakingAdminUpgrade_set_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdc\x30\x10\xc5\xef\xfe\x14\x8f\x3d\x14\x2f\x14\xfb\x5a\x4c\xdb\xb0\x24\x14\x16\x7a\x28\x4d\x7a\x2a\x25\xcc\xca\xe3\x58\x8d\xac\x31\xa3\x71\x37\x25\xe4\xbb\x17\xd9\xd9\xf4\xcf\xba\x73\x90\x40\xa3\x79\xf3\x7e\x1a\xf9\x61\x14\x35\x7c\x08\x72\xdc\x5f\xdd\xd0\x21\xf0\xb5\xd1\xbd\x8f\x77\xe8\x54\x06\x6c\xce\x13\x9b\xa2\xa8\x6b\xdc\xf4\x3e\xc1\x94\x62\x22\x67\x5e\x22\x46\xfa\x99\xa0\x7c\x24\x6d\x13\x4c\x40\x21\xc0\x7a\x46\x32\xba\xe7\x16\x51\x5a\x4e\x45\xf1\x47\x45\xe9\xa4\xe5\x06\x5f\xbf\xec\xa3\xbd\xf9\xb6\xc5\x63\x51\x00\x40\x5d\xe3\xa3\x38\x0a\xf8\x41\xea\x73\x5b\x74\xa2\x20\x28\x77\xac\x1c\x1d\x67\xf1\x2c\xbc\xbf\xc2\x6c\x0b\xbb\x76\xf0\x11\x72\xf8\xce\xce\x66\x89\xc0\x06\xca\x87\x9f\xb9\x6b\xf0\xea\x1c\xa1\x9a\x4b\x96\x7e\xa3\xf2\x48\xca\x25\x39\x67\x0d\x76\x93\xf5\x3b\xe7\x64\x8a\xf6\xe2\x28\x47\xce\x56\x4e\xa2\x29\x39\x4b\xd5\x34\xb6\x64\x7c\x7b\xcb\x0f\x23\xab\x1f\x38\x1a\x85\x32\xd2\xc0\xcd\xea\x8b\xbd\xc6\xc2\x9a\xd7\xed\x6f\xd1\xba\xc6\x41\x54\xe5\xb8\x86\x47\xff\x52\xe5\x48\x1c\xba\xea\x84\x86\x77\x8b\xad\x45\xe3\xed\x7f\x39\xdf\x97\x79\x94\xcd\xca\x8c\xab\xe7\x7d\xbe\x76\x6d\xa2\x74\xc7\x9f\xc8\xfa\xed\x4b\xc3\x1c\x17\x17\x18\x29\x7a\x57\x6e\x2e\x65\x0a\x79\x94\x76\xf2\xfd\x97\xeb\xf4\xfc\x71\x66\x7f\x9b\x45\xe3\x69\xa1\xe5\x07\x76\x93\x31\x1e\xd7\x49\xaa\xc4\x76\x19\xc8\x0f\xdc\x96\xa7\xba\xa7\x5f\x01\x00\x00\xff\xff\x47\x68\xac\xaf\x9a\x02\x00\x00" func idtablestakingAdminUpgrade_set_claimedCdcBytes() ([]byte, error) { return bindataRead( @@ -2479,11 +2310,11 @@ func idtablestakingAdminUpgrade_set_claimedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/upgrade_set_claimed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb2, 0x18, 0xb2, 0xdd, 0x50, 0x4a, 0xbf, 0x69, 0x23, 0x23, 0x78, 0xc8, 0x53, 0xc8, 0xd4, 0x61, 0x14, 0x50, 0x2b, 0x78, 0xc8, 0x94, 0xba, 0xb8, 0xbf, 0x98, 0xfe, 0x51, 0x48, 0x61, 0x83, 0xa0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb3, 0xbf, 0x7f, 0xfa, 0xa, 0xe2, 0x92, 0x87, 0xb4, 0x13, 0xb2, 0x4c, 0x2d, 0x83, 0x85, 0xf9, 0xf, 0x78, 0x2b, 0x1d, 0xbb, 0x67, 0x36, 0x7c, 0xc4, 0xe6, 0x9, 0xe8, 0xa5, 0x37, 0xee, 0x9}} return a, nil } -var _idtablestakingAdminUpgrade_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2c\x8d\xb1\x0a\xc2\x40\x10\x44\xfb\xfb\x8a\x21\x85\x5c\x40\x52\x4b\x3a\x51\x84\xd4\x9a\x4a\x2c\xd6\xcd\xa2\xc1\xb8\x17\x2e\x7b\x58\x48\xfe\x5d\x2e\x66\x8a\xa9\xde\x9b\x71\x16\x49\x27\x62\xeb\x83\x7a\x0e\x9d\xd4\xb8\xb6\x8d\xda\xee\x56\xe2\xeb\x1c\x00\x8c\x51\x46\x8a\xe2\x89\xd9\x6a\x50\xb2\xa7\x6f\xc7\x8e\x4c\x0e\x41\x2d\x12\x5b\x89\xcd\x9e\x39\x24\xb5\xec\x60\x4d\xc6\x2b\x5e\x91\xa9\x4a\x8b\xe2\x95\xde\x52\xa3\x38\x0d\xe1\xd3\x1c\x2f\x74\x1f\xe4\x6c\xf4\xea\xf5\x51\x6c\xf1\xbf\xcf\x5d\x2e\x2b\xb3\x9b\x7f\x01\x00\x00\xff\xff\xe2\xcb\x57\x03\x9f\x00\x00\x00" +var _idtablestakingAdminUpgrade_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x3c\x8d\x31\x0b\xc2\x30\x10\x85\xf7\xfc\x8a\xa3\x53\x0a\xd2\x59\xb2\x15\x44\xe8\xac\x4e\x22\xe5\xbc\x1e\x1a\x4c\x2f\x21\xbd\xa0\x20\xfd\xef\x12\x05\xdf\xf0\x96\xf7\xf8\x3e\xa3\x19\x65\x41\x52\x1f\xc5\x52\x9c\xd8\xc1\xf9\x34\x88\x6e\x2f\x2d\xbc\x8d\x01\x00\x48\x99\x13\x66\xb6\x48\xa4\x0e\xfa\xa2\xf7\x9e\x28\x16\xd1\xff\xa3\xa6\xae\x1d\x45\xd1\x8c\xa4\x4b\x57\xd2\x84\xca\xe3\xc8\xaf\xc4\xd9\xcf\x2c\x8a\xc1\x0a\xce\xec\xa0\xd9\x87\xf8\x1c\x76\x47\xbc\x06\x3e\x28\x3e\xbc\xdc\x9a\x0d\xfc\xdc\xb5\xdb\x2f\x73\x35\xeb\x27\x00\x00\xff\xff\x83\x09\x8a\xc4\x9c\x00\x00\x00" func idtablestakingAdminUpgrade_stakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2499,11 +2330,11 @@ func idtablestakingAdminUpgrade_stakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/upgrade_staking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x81, 0x5e, 0x5c, 0xd3, 0xb2, 0xd5, 0xa5, 0x4c, 0x45, 0xf4, 0x38, 0x8c, 0x9, 0x99, 0x95, 0xbc, 0xbd, 0x11, 0x8d, 0x62, 0x50, 0xa2, 0x21, 0xf2, 0x46, 0xce, 0x6e, 0xbe, 0x67, 0x1f, 0x7, 0x96}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0x44, 0x64, 0x8e, 0x9e, 0xfe, 0x87, 0x20, 0x69, 0xfd, 0xe9, 0x55, 0x7d, 0x7f, 0xf4, 0xf9, 0xcc, 0xf5, 0xbb, 0x3f, 0x22, 0xc, 0x1b, 0xd1, 0xa6, 0xb2, 0x45, 0xe9, 0x48, 0x41, 0x19, 0xc4}} return a, nil } -var _idtablestakingDelegationDel_request_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xb1\x4e\xc3\x40\x0c\x86\xf7\x3c\x85\x95\xa1\x4a\x96\x64\x41\x0c\x15\x50\x01\x55\x25\x24\x04\x88\x52\x76\xf7\xe2\xb4\x81\xeb\x39\x38\x0e\xad\x84\xfa\xee\xe8\x7a\x4d\x00\x35\x23\x5e\x6e\x38\xfb\xf7\xff\xd9\xae\x36\x35\x8b\xc2\xcc\xf2\xf6\x6e\xfa\x82\x4b\x4b\x73\xc5\xf7\xca\xad\xa0\x14\xde\x40\x7c\xfa\x11\x47\x51\xa4\x82\xae\x41\xa3\x15\xbb\x04\x37\xdc\x3a\x1d\xc3\x62\x56\xed\xce\xcf\x52\xf8\x8a\x22\x00\x80\x3c\x87\x7b\x36\x68\xe1\x13\xa5\xf2\xe5\x50\xb2\x00\x82\x50\x49\x42\xce\x10\x28\x83\xae\x09\xa6\x64\x69\x85\xca\x02\xbc\x7c\x23\xa3\x87\x6a\x4b\x0a\x45\xf7\xf1\x4c\xe5\x18\xb0\xd5\x75\x72\xea\x26\xeb\xcb\x1f\xb7\x8e\x24\x85\xd1\x40\xce\x03\x17\xd4\xe7\x05\x7b\xb5\x50\x8d\x42\x09\x1a\xa3\x47\xf1\x1b\x16\xe1\xed\x2b\xda\x96\x52\x18\x5d\x1b\xe3\xb9\x3c\x0f\x1c\x23\xcf\x61\x79\xc8\x19\xc2\x28\x86\x30\x7c\x34\x64\xcb\xec\x37\x0b\x5c\x82\xef\x9a\x35\xca\x82\x2b\xca\x82\xe6\xc5\xbf\x01\x5e\x25\x7e\x75\xe3\x81\x9d\xfe\x68\xcd\x43\xef\x27\xd4\x75\xda\x3b\xf5\x31\x99\x40\x8d\xae\x32\x49\x7c\xcb\xad\x2d\xc0\xb1\x76\xd0\x7f\x90\x7b\xa0\x38\x0d\x03\xdd\x87\x87\x76\x64\x5a\xa5\xee\x0a\x06\x07\x90\x09\x7d\xb4\xd4\xe8\xc2\x35\xc1\x57\x7f\x43\xe1\xed\x15\xf7\xdf\x01\x00\x00\xff\xff\x32\x83\xa3\x36\x9e\x02\x00\x00" +var _idtablestakingDelegationDel_request_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xcf\x4e\xab\x50\x10\x87\xf7\x3c\xc5\x2f\x2c\x6e\x60\x03\x9b\x9b\xbb\x20\x57\x9b\xc6\xa6\x89\x89\x51\x63\xed\x03\x4c\x0f\x43\x41\xe9\x19\x1c\x06\xdb\xc4\xf4\xdd\x0d\x62\x51\x53\x96\xce\x66\x16\xf3\x87\xef\x63\x4e\xb5\x6b\x44\x0d\xcb\x5a\xf6\xd7\x8b\x47\xda\xd4\xbc\x32\x7a\xae\xfc\x16\x85\xca\x0e\xe1\x79\x21\x0c\x82\xc0\x94\x7c\x4b\xce\x2a\xf1\x11\xed\xa4\xf3\x96\x61\xbd\xac\x0e\xff\xfe\xc6\x78\x0b\x02\x00\x48\x53\xdc\x88\xa3\x1a\xaf\xa4\x55\x3f\x8e\x42\x14\x04\xe5\x82\x95\xbd\x63\x98\xc0\x4a\xc6\x82\x6b\xde\x92\x89\x42\x36\x4f\xec\xec\x63\xba\x66\x43\x7e\x2a\x3c\x70\x91\x81\x3a\x2b\xa3\x73\x9a\x64\x1c\xbf\xdb\x7b\xd6\x18\x7f\x26\x7a\x6e\x25\xe7\xb1\x6f\xc0\x6b\x94\x1b\x52\x8e\xc8\x39\xcb\x30\xef\xac\x9c\x3b\xd7\x8b\xf4\x02\xf8\x8c\x34\xc5\x46\x54\x65\x3f\xc5\x9d\x4f\x71\xf7\xd1\x72\x5d\x24\xdf\xe1\x71\x81\xfe\x33\xc9\xb0\xeb\xff\xaf\x99\x5c\x46\xfd\x8d\xb2\x89\xe3\x7d\xed\x5a\x99\x28\x6d\xf9\x9e\xac\x8c\x47\xc2\x3e\x66\x33\x34\xe4\x2b\x17\x85\x57\xd2\xd5\x39\xbc\xd8\x49\xf6\x87\xea\x28\x12\xc6\xc3\x9f\x3b\x0e\x89\x0f\xec\x3a\xe3\xd3\xb9\x27\xc5\x13\xe5\x97\x8e\x5b\x5b\xfb\x76\xe0\x1a\x1f\xcb\x90\xc7\x8d\xc7\xf7\x00\x00\x00\xff\xff\x21\xe6\x0c\xce\x87\x02\x00\x00" func idtablestakingDelegationDel_request_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2519,11 +2350,11 @@ func idtablestakingDelegationDel_request_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x87, 0xb8, 0x8e, 0xfc, 0xc, 0xe8, 0x6c, 0xa0, 0x8b, 0xce, 0x40, 0x25, 0x93, 0xd5, 0xb2, 0xfd, 0x6a, 0xfb, 0x2, 0x9c, 0xa5, 0x42, 0x21, 0xf5, 0xc2, 0x16, 0x83, 0x68, 0x5d, 0xa5, 0x8d, 0xe8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x20, 0xdd, 0x32, 0xf3, 0xd, 0xf5, 0xd6, 0x1f, 0x79, 0x1f, 0x19, 0x43, 0x45, 0x66, 0x3c, 0x63, 0x1a, 0xa0, 0x1f, 0xd3, 0x8e, 0x95, 0x7, 0xec, 0x16, 0x10, 0xd8, 0x1b, 0xb4, 0x57, 0xb5, 0x25}} return a, nil } -var _idtablestakingDelegationDel_stake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\xcd\x6a\xdb\x40\x10\xbe\xef\x53\x0c\x3a\x04\xe9\x50\xe9\x52\x7a\x30\x69\x43\xdb\x60\x28\x84\xa4\x34\x69\x7c\x1e\xad\x46\xd2\xd6\xeb\x1d\xb1\x1a\x55\x86\xe2\x77\x2f\xfa\xb5\x8c\x4d\x31\x25\x7b\x11\xbb\xfb\xcd\x7c\x3f\xa3\x35\xbb\x8a\xbd\xc0\xda\x72\xfb\xed\xfe\x05\x53\x4b\xcf\x82\x5b\xe3\x0a\xc8\x3d\xef\x20\x38\xbf\x08\xd4\xa2\xe6\x85\xb7\xe4\x16\xd0\x7e\x7f\x44\x34\xae\x30\xa9\xa5\x13\xd4\xf2\x2c\x50\x4a\x89\x47\x57\xa3\x16\xc3\x2e\xc4\x1d\x37\x4e\x56\xf0\x73\x6d\xf6\x1f\xde\x47\xf0\x47\x29\x00\x80\x24\x81\x07\xd6\x68\xe1\x37\x7a\xd3\x49\x81\x9c\x3d\x20\x78\xca\xc9\x93\xd3\x04\xc2\x20\x25\x41\x46\x96\x0a\x14\xf6\xc0\xe9\x2f\xd2\xd2\x57\x5b\x92\xe3\xc5\x0f\xca\x57\x80\x8d\x94\xe1\xb9\xb3\xf8\x7e\x42\x3d\xb5\x8e\x7c\x04\x37\x17\x30\x8f\x9c\xd1\x8c\x53\x33\x41\x3e\x99\x5f\x10\x2c\x9d\xc6\x1b\x23\x65\xe6\xb1\x1d\xbb\x0e\x87\xaf\xd8\x58\x19\x9a\x54\x9e\x2a\xf4\x14\xa2\xd6\x32\x36\xf8\xc2\xde\x73\xfb\x8a\xb6\xa1\x08\x6e\x3e\x6b\xdd\x85\xd3\x85\x02\xe3\x4a\x12\x48\x7b\xcc\xd5\x59\x74\xab\x26\x9b\xc7\xcb\x40\xe0\x23\x74\xac\x71\x2d\xec\xb1\xa0\x78\xe8\x79\xfb\x66\x29\x7d\x0a\xbb\xd1\xaf\x2e\xfc\x64\xc7\x5e\xcf\x03\xf7\x77\x94\x32\x9a\x95\x76\xeb\xee\x0e\x2a\x74\x46\x87\xc1\x57\x6e\x6c\x06\x8e\x65\x32\x7d\x62\x79\x36\x14\x44\xea\xd4\xea\x72\x34\xff\xb4\x7a\xe5\xbc\x26\x3b\xc9\xd8\x24\x99\x09\xfa\xeb\xff\x93\xbf\x7e\x78\xda\x40\x5f\x3f\xe9\x3f\x0c\x1f\xda\x93\x6e\x84\xa6\xa7\x70\x71\x80\xd3\x86\x1e\x69\x10\x52\x8f\x12\x6f\xdf\x9d\x25\x10\xb7\xa3\xb1\xf9\xb1\x0d\xdf\x68\xa6\x3d\xfc\x0d\x00\x00\xff\xff\xc1\x80\x21\xc4\x14\x04\x00\x00" +var _idtablestakingDelegationDel_stake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\x4d\x6b\xdc\x40\x0c\xbd\xcf\xaf\x10\x3e\x14\xfb\x50\xfb\x52\x7a\x58\xd2\x86\xd0\xb0\x50\x08\x49\x69\xd2\xe6\x2c\x8f\x65\x7b\x9a\xd9\x91\x19\xcb\x75\xa0\xec\x7f\x2f\xe3\xaf\xf5\xb2\x3e\xb4\xa5\xba\x0c\x63\x3d\x3d\xbd\x27\x8d\xcd\xa1\x61\x2f\xb0\xb7\xdc\x7f\xbe\x7d\xc2\xdc\xd2\xa3\xe0\x8b\x71\x15\x94\x9e\x0f\x10\x5d\x26\x22\xb5\xaa\x79\xe2\x17\x72\x2b\xe8\x70\x3f\x21\x3a\x57\x99\xdc\xd2\x19\x6a\xfd\x2d\x52\x4a\x89\x47\xd7\xa2\x16\xc3\x2e\xc6\x03\x77\x4e\x76\xf0\x6d\x6f\x5e\xdf\xbf\x4b\xe0\x97\x52\x00\x00\x59\x06\x77\xac\xd1\xc2\x4f\xf4\x26\x48\x81\x92\x3d\x20\x78\x2a\xc9\x93\xd3\x04\xc2\x20\x35\x41\x41\x96\x2a\x14\xf6\xc0\xf9\x0f\xd2\x32\x54\x5b\x92\x53\xe2\x2b\x95\x3b\xc0\x4e\xea\xf8\xd2\x59\x7a\x3b\xa3\x1e\x7a\x47\x3e\x81\x37\x1b\x98\x7b\x2e\x68\xc1\xa9\xa5\x41\x39\x9b\x5f\x35\x58\x3b\x4d\x9f\x8d\xd4\x85\xc7\x3e\x70\x4d\xcc\x63\xe2\x3b\x76\x56\x46\xa2\xc6\x53\x83\x9e\x62\xd4\x5a\x76\x70\xd3\x49\x7d\xa3\x75\x98\x48\x98\x04\x4c\x91\x65\x90\xb3\xf7\xdc\xff\xf1\x00\x42\xb4\x64\xcb\x74\x3d\x05\xf8\x00\xa1\x4d\x3a\x72\x5d\xfd\xb7\x91\x7c\x8c\xc3\x9e\x77\x1b\x2f\xea\xc4\xf5\x28\xec\xb1\xa2\x2f\x28\x75\xb2\x28\x0c\x71\x7d\x0d\x0d\x3a\xa3\xe3\xe8\x13\x77\xb6\x00\xc7\x32\x9b\x3d\xb3\xba\x18\x89\x12\x75\x6e\x71\xbd\x87\x4d\x8b\x7f\xb1\x94\xd9\x4a\xd6\x8e\x7a\xb3\x85\x7c\x48\xff\x9b\xf4\xfd\xdd\xc3\x33\x0c\xf5\xb3\xf6\xe3\x78\xd0\x2b\xe9\x4e\x68\x7e\xf3\x9b\x4b\x9b\x2f\x74\x4f\xa3\x90\x76\x92\x78\xf5\xf6\xc2\x7d\xda\x4f\xe6\x96\xbf\x6a\x3c\x93\xa5\xed\xf1\x77\x00\x00\x00\xff\xff\x85\x88\xb6\x28\xfd\x03\x00\x00" func idtablestakingDelegationDel_stake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2539,11 +2370,11 @@ func idtablestakingDelegationDel_stake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xef, 0x10, 0x2b, 0x72, 0x96, 0xd1, 0x8e, 0xa0, 0x84, 0xd7, 0xe0, 0x69, 0x57, 0x1c, 0x1b, 0x5e, 0xf2, 0x48, 0x5f, 0x81, 0x81, 0x5c, 0xbe, 0x2, 0x4b, 0x1e, 0x7b, 0x4b, 0xf7, 0xbd, 0x9a, 0x2a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5, 0xf7, 0xbe, 0x19, 0x9c, 0xb0, 0xa0, 0x20, 0xec, 0xc3, 0x1d, 0x38, 0x1b, 0x92, 0xd2, 0xcd, 0x26, 0x71, 0x99, 0xcb, 0x12, 0xc9, 0xaf, 0x7, 0x76, 0x90, 0x93, 0xe9, 0xb9, 0x34, 0x72, 0xd0}} return a, nil } -var _idtablestakingDelegationDel_stake_rewardedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xc1\x4b\xfb\x50\x0c\xc7\xef\xfd\x2b\x42\x0f\xa3\xbd\xb4\x97\x1f\xbf\xc3\x50\x87\x3a\x06\x82\xa8\x6c\xd3\x7b\xf6\x9a\x6e\x75\xaf\x2f\x25\x4d\xed\x40\xf6\xbf\xcb\x5b\xd7\xaa\xac\x47\x73\x79\x3c\x92\x7c\x93\x4f\x92\xa2\xac\x58\x14\x16\x96\xdb\x87\xf9\x1a\x37\x96\x56\x8a\xfb\xc2\x6d\x21\x17\x2e\x21\xbc\x74\x84\x41\x10\xa8\xa0\xab\xd1\x68\xc1\x2e\xc2\x92\x1b\xa7\x53\x78\x5d\x14\x87\xff\xff\x62\xf8\x0c\x02\x00\x80\x34\x85\x47\x36\x68\xe1\x03\xa5\xf0\xe9\x90\xb3\x00\x82\x50\x4e\x42\xce\x10\x28\x83\xee\x08\xe6\x64\x69\x8b\xca\x02\xbc\x79\x27\xa3\xa7\x6c\x4b\x0a\x59\xef\x58\x52\x3e\x05\x6c\x74\x17\x5d\x76\x93\x0c\xe9\xcf\xad\x23\x89\x61\x32\x12\xf3\xc4\x19\x0d\x71\x5d\x7b\x95\x50\x85\x42\x11\x1a\xa3\x67\xf1\x3b\x16\xe1\xf6\x0d\x6d\x43\x31\x4c\x6e\x8d\xf1\x5c\x9e\x07\xce\x96\xa6\xb0\x39\xc5\x8c\x61\x64\x63\x18\xde\x6a\xb2\x79\xf2\x93\x05\xae\xc1\x57\x4d\x6a\x65\xc1\x2d\x25\x9d\xe6\xd5\x9f\x01\xde\x44\x7e\x75\xd3\x91\x9d\x7e\x6b\xad\xba\xda\x2f\xa8\xbb\x78\xe8\xd4\xdb\x6c\x06\x15\xba\xc2\x44\xe1\x3d\x37\x36\x03\xc7\xda\x43\xff\x42\x1e\x80\xc2\xb8\x1b\xe8\xb1\x7b\xe8\x40\xa6\x51\xea\xaf\x60\x74\x00\xfd\x87\x96\xd4\xa2\x64\x94\xad\x79\x4f\xae\x1e\x2e\xa9\x7b\x07\xdd\xe3\x57\x00\x00\x00\xff\xff\xb1\x5e\xd1\xad\xa4\x02\x00\x00" +var _idtablestakingDelegationDel_stake_rewardedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xcf\x6a\xe3\x40\x0c\xc6\xef\x7e\x8a\x0f\x1f\x16\xfb\x12\x5f\x96\x3d\x98\xdd\x0d\xa1\x21\x50\x28\x6d\x49\xd2\x07\x50\xc6\x72\xec\xc6\x19\x19\x45\xae\x03\x25\xef\x5e\x5c\xd7\x6e\x4b\x7c\xac\x2e\x62\xd0\x9f\xf9\x7e\xf3\x4d\x79\xac\x45\x0d\xab\x4a\xda\xdb\xe5\x96\x76\x15\x6f\x8c\x0e\xa5\xdf\x23\x57\x39\x22\xbc\x2e\x84\x41\x10\x98\x92\x3f\x91\xb3\x52\x7c\x44\x47\x69\xbc\xa5\x78\x5a\x95\xe7\x3f\xbf\x63\xbc\x06\x01\x00\x24\x09\xee\xc4\x51\x85\x17\xd2\xb2\x1b\x47\x2e\x0a\x82\x72\xce\xca\xde\x31\x4c\x60\x05\x63\xc9\x15\xef\xc9\x44\x21\xbb\x67\x76\xf6\x3e\x5d\xb1\x21\x1b\x0a\x6b\xce\x53\x50\x63\x45\x74\xad\x66\x36\x8e\x3f\xb4\x9e\x35\xc6\xaf\x89\x9e\x7b\xc9\x78\xec\xeb\xe5\xd5\xca\x35\x29\x47\xe4\x9c\xa5\x58\x34\x56\x2c\x9c\xeb\x40\x3a\x00\x7c\x44\x92\x60\x27\xaa\xd2\x4e\xe9\xce\xa6\x74\x77\x71\xe2\x2a\x9f\x7d\x15\x8f\x7f\xe8\xae\x99\xf5\xbb\xfe\xfe\x18\xc9\xff\xa8\xf3\x28\x9d\x30\xef\x73\xd7\xc6\x44\x69\xcf\x8f\x64\x45\x3c\x2a\xec\x62\x3e\x47\x4d\xbe\x74\x51\x78\x23\x4d\x95\xc1\x8b\x0d\xb0\xdf\x50\x47\x90\x30\xee\x5f\xee\xd2\x27\x3e\xb3\x6b\x8c\x07\xbb\x27\xc1\x87\x03\xaf\xb9\x25\xcd\x38\xdb\xca\x81\xfd\x69\xfc\x32\x7d\x1e\xf7\x5e\xde\x02\x00\x00\xff\xff\x82\xfd\x9e\xd7\x8d\x02\x00\x00" func idtablestakingDelegationDel_stake_rewardedCdcBytes() ([]byte, error) { return bindataRead( @@ -2559,11 +2390,11 @@ func idtablestakingDelegationDel_stake_rewardedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_stake_rewarded.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0xab, 0x43, 0xc4, 0x6c, 0xd2, 0xcc, 0x46, 0xb9, 0xe9, 0xe8, 0x58, 0xd2, 0x56, 0x18, 0xf, 0xca, 0xf0, 0x2e, 0xf4, 0x55, 0xe9, 0x4f, 0x44, 0x76, 0xed, 0x31, 0x9c, 0x48, 0x31, 0xf0, 0xf7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1, 0xf, 0xa, 0x84, 0xc4, 0x39, 0x4d, 0x11, 0xe, 0x26, 0xfb, 0x5c, 0xff, 0xbe, 0x69, 0x65, 0xbc, 0xf6, 0x3e, 0xcb, 0x96, 0x41, 0x70, 0x5f, 0x7a, 0x39, 0x65, 0x44, 0x53, 0x83, 0x67, 0x99}} return a, nil } -var _idtablestakingDelegationDel_stake_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x31\x4f\xf3\x40\x0c\x86\xf7\xfc\x8a\x57\x19\xaa\x64\x49\x96\x4f\xdf\x50\x01\x15\x50\x55\x42\x42\x80\x68\xcb\xee\x5e\x9c\x36\xf4\x7a\x8e\x2e\x0e\xad\x84\xfa\xdf\x51\x9a\x26\x80\x9a\x11\x2f\xa7\x93\xed\xd7\x7e\x6c\x17\xbb\x52\xbc\x62\x66\x65\xff\x30\x5d\xd0\xca\xf2\x5c\x69\x5b\xb8\x35\x72\x2f\x3b\x84\x97\x8e\x30\x08\x02\xf5\xe4\x2a\x32\x5a\x88\x8b\x68\x27\xb5\xd3\x31\x96\xb3\xe2\xf0\xff\x5f\x8c\xcf\x20\x00\x80\x34\xc5\xa3\x18\xb2\xf8\x20\x5f\x34\xe9\xc8\xc5\x83\xe0\x39\x67\xcf\xce\x30\x54\xa0\x1b\xc6\x94\x2d\xaf\x49\xc5\x43\x56\xef\x6c\xf4\x94\x6d\x59\x91\x75\x8e\x57\xce\xc7\xa0\x5a\x37\xd1\x65\x37\x49\x9f\xfe\xbc\x77\xec\x63\x8c\x06\x62\x9e\x24\xe3\x3e\xae\x6d\xaf\xf4\x5c\x92\xe7\x88\x8c\xd1\xb3\xf8\x9d\x78\x2f\xfb\x37\xb2\x35\xc7\x18\xdd\x1a\xd3\x70\x35\x3c\x38\x5b\x9a\x62\x75\x8a\x19\xc2\xc8\x86\x30\x1a\xab\xd8\xe6\xc9\x4f\x16\x5c\xa3\xa9\x9a\x54\x2a\x9e\xd6\x9c\xb4\x9a\x57\x7f\x06\x78\x13\x35\xab\x1b\x0f\xec\xf4\x5b\x6b\xde\xd6\x7e\x21\xdd\xc4\x7d\xa7\x8d\x4d\x26\x28\xc9\x15\x26\x0a\xef\xa5\xb6\x19\x9c\x68\x07\xfd\x0b\xb9\x07\x0a\xe3\x76\xa0\xc7\xf6\xe1\x03\x9b\x5a\xb9\xbb\x82\xc1\x01\x74\x1f\x5e\xba\x4a\x69\xcb\xd9\x42\xb6\xec\xaa\xfe\x92\xda\xb7\xd7\x3d\x7e\x05\x00\x00\xff\xff\x9e\x6a\x61\x83\xa4\x02\x00\x00" +var _idtablestakingDelegationDel_stake_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xcf\x6a\xe3\x40\x0c\xc6\xef\x7e\x8a\x0f\x1f\x16\xfb\x12\x5f\x96\x3d\x98\xdd\x0d\xa1\x21\x50\x28\x6d\x69\x92\x07\x50\xc6\x72\xec\xc6\x19\x19\x59\x6e\x02\x25\xef\x5e\x5c\xd7\x6e\x4b\x7c\xac\x2e\x62\xd0\x9f\xf9\x7e\xf3\x4d\x79\xac\x45\x0d\xab\x4a\x4e\xb7\xcb\x0d\xed\x2a\x5e\x1b\x1d\x4a\xbf\x47\xae\x72\x44\x78\x5d\x08\x83\x20\x30\x25\xdf\x90\xb3\x52\x7c\x44\x47\x69\xbd\xa5\xd8\xae\xca\xf3\x9f\xdf\x31\x5e\x83\x00\x00\x92\x04\x77\xe2\xa8\xc2\x0b\x69\xd9\x8d\x23\x17\x05\x41\x39\x67\x65\xef\x18\x26\xb0\x82\xb1\xe4\x8a\xf7\x64\xa2\x90\xdd\x33\x3b\x7b\x9f\xae\xd8\x90\x0d\x85\x27\xce\x53\x50\x6b\x45\x74\xad\x66\x36\x8e\x3f\x9c\x3c\x6b\x8c\x5f\x13\x3d\xf7\x92\xf1\xd8\xd7\xcb\xab\x95\x6b\x52\x8e\xc8\x39\x4b\xb1\x68\xad\x58\x38\xd7\x81\x74\x00\xf8\x88\x24\xc1\x4e\x54\xe5\x34\xa5\x3b\x9b\xd2\xdd\x45\xc3\x55\x3e\xfb\x2a\x1e\xff\xd0\x5d\x33\xeb\x77\xfd\xfd\x31\x92\xff\x51\xe7\x51\x3a\x61\xde\xe7\xae\xb5\x89\xd2\x9e\x1f\xc9\x8a\x78\x54\xd8\xc5\x7c\x8e\x9a\x7c\xe9\xa2\xf0\x46\xda\x2a\x83\x17\x1b\x60\xbf\xa1\x8e\x20\x61\xdc\xbf\xdc\xa5\x4f\x7c\x66\xd7\x1a\x0f\x76\x4f\x82\x0f\x07\xde\xfa\xc6\xe8\xc0\xd9\x46\x0e\xec\x9b\xf1\xcb\xf4\x79\xdc\x7b\x79\x0b\x00\x00\xff\xff\xad\xc9\x2e\xf9\x8d\x02\x00\x00" func idtablestakingDelegationDel_stake_unstakedCdcBytes() ([]byte, error) { return bindataRead( @@ -2579,11 +2410,11 @@ func idtablestakingDelegationDel_stake_unstakedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_stake_unstaked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb2, 0xe0, 0x9e, 0xd0, 0xcb, 0x7b, 0x17, 0x55, 0xd4, 0x3c, 0x3a, 0xb7, 0x69, 0x8d, 0xf0, 0x10, 0x95, 0x57, 0x91, 0x73, 0xc7, 0xbe, 0xf3, 0x94, 0x97, 0x96, 0xe, 0x27, 0x37, 0x17, 0xff, 0x6a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0x66, 0x6f, 0xd4, 0xd9, 0x65, 0x60, 0x17, 0xd7, 0xaf, 0x3c, 0xa8, 0x83, 0x13, 0x27, 0xd1, 0x8c, 0x71, 0xb3, 0x7, 0x6e, 0x26, 0x80, 0xea, 0xc, 0xfa, 0x17, 0x25, 0x7a, 0x27, 0x32, 0xdd}} return a, nil } -var _idtablestakingDelegationDel_withdraw_reward_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\x4d\x6b\xdc\x40\x0c\xbd\xcf\xaf\x10\x3e\x2c\xf6\xa1\xf6\xa5\xf4\xb0\xa4\x0d\x6d\xc3\x42\x21\x34\x25\x49\xd3\xb3\x76\x46\xde\x9d\x66\x76\x64\x64\xb9\x0e\x94\xfc\xf7\xe2\xcf\x78\xbb\x5b\x28\xa5\xba\x08\xa3\x27\xbd\xf7\x2c\x8d\x3f\x54\x2c\x0a\x9b\xc0\xed\xa7\xab\x7b\xdc\x06\xba\x53\x7c\xf4\x71\x07\xa5\xf0\x01\x92\xd3\x42\x62\x16\x3d\xf7\xfc\x48\x71\x01\xed\xbf\x13\x63\x8c\x0a\xc6\x1a\xad\x7a\x8e\x29\x1e\xb8\x89\xba\x86\xaf\x1b\xff\xf4\xe6\x75\x06\x3f\x8d\x01\x00\x28\x0a\xb8\x66\x8b\x01\x7e\xa0\xf8\x8e\x00\x4a\x16\x40\x10\x2a\x49\x28\x5a\x02\x65\xd0\x3d\x81\xa3\x40\x3b\x54\x16\xe0\xed\x77\xb2\xda\x77\x07\xd2\x97\xc2\x2d\x95\x6b\xc0\x46\xf7\xe9\xa9\xde\xfc\x6a\x42\xdd\xb4\x91\x24\x83\xd5\x19\xcc\x67\x76\x34\xe3\xcc\x4c\x50\x4e\x96\x7a\x82\xd5\xec\x30\x7f\xc0\x26\xe8\x80\xab\x84\x2a\x14\x4a\xd1\x5a\x1d\x45\x7c\x60\x11\x6e\x1f\x30\x34\x94\xc1\xea\xbd\xb5\x9d\xff\xce\x37\x8c\x51\x14\xb0\xed\x31\x7f\x6d\xb7\x8b\x9a\x42\x99\x2f\x3d\xc3\x5b\xe8\x58\xf3\x5a\x59\x70\x47\xf9\x30\xf3\xe2\xbf\xfd\x88\x77\x69\xb7\xd9\xf5\x99\xeb\x78\x99\x75\x37\x70\x7f\x41\xdd\x67\xb3\xd2\x2e\x2e\x2f\xa1\xc2\xe8\x6d\x9a\x7c\xe4\x26\x38\x88\xac\x93\xe9\x23\xcb\xf5\x78\x6f\xe8\x0e\x3e\x26\x99\x39\xb6\xbb\xdc\xc0\x1f\xec\xfe\xbe\x96\x49\x75\x31\xe2\x8a\x79\x46\x5f\xfe\x37\x95\x9b\xeb\x9b\x6f\xd0\xf7\x4f\x12\x9f\x87\x44\x4f\x64\x1b\xa5\xe9\xa8\xcf\x0a\xcf\x1d\x55\x5c\x7b\x1d\x85\x5d\xbc\x3a\xd9\x64\xde\x7a\xdd\x3b\xc1\xf6\x96\x5a\x14\x47\xae\x6f\xad\xe7\xa7\x33\xe4\x6c\xa6\x7e\xfe\x15\x00\x00\xff\xff\xd5\x98\xe2\x33\xb8\x03\x00\x00" +var _idtablestakingDelegationDel_withdraw_reward_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x41\x6b\xdc\x30\x10\x85\xef\xfa\x15\x83\x0f\xc1\x3e\xd4\xbe\x94\x1e\x96\xb4\x21\x34\x2c\x14\x42\x53\x92\xb4\x3d\xcf\x4a\xe3\xb5\x1a\x59\x63\xc6\xe3\x3a\x50\xf2\xdf\x8b\xed\xb5\xe3\x64\xf7\x50\x4a\x74\x11\x66\xe6\xe9\xbd\x4f\x1a\xfb\xba\x61\x51\xd8\x06\xee\xbf\x5c\xdd\xe3\x2e\xd0\x9d\xe2\x83\x8f\x7b\x28\x85\x6b\x48\x8e\x0b\x89\x59\x69\xee\xf9\x81\xe2\xaa\x75\xfc\x4e\x8c\x31\x2a\x18\x5b\xb4\xea\x39\xa6\x58\x73\x17\x75\x03\xdf\xb7\xfe\xf1\xc3\xfb\x0c\xfe\x18\x03\x00\x50\x14\x70\xcd\x16\x03\xfc\x46\xf1\x83\x01\x94\x2c\x80\x20\x54\x92\x50\xb4\x04\xca\xa0\x15\x81\xa3\x40\x7b\x54\x16\xe0\xdd\x2f\xb2\x3a\xaa\x03\xe9\x73\xe1\x96\xca\x0d\x60\xa7\x55\x7a\x9c\x37\xbf\x9a\xbb\x6e\xfa\x48\x92\xc1\xd9\x89\x9e\xaf\xec\x68\xe9\x33\x8b\x41\x39\x23\x8d\x06\x67\x0b\x61\xfe\x03\xbb\xa0\x53\x5f\x23\xd4\xa0\x50\x8a\xd6\xea\x06\x2e\x3b\xad\x2e\xad\x1d\x80\x07\x50\x38\xac\xa2\x80\x1d\x8b\x70\xff\xcf\x7c\xc3\x6a\x29\x94\xf9\x1a\x12\x3e\xc2\x60\x93\x4f\x67\x9d\xbf\x19\xf1\xa7\x74\x78\xc2\xcd\x89\x31\x78\x3e\xeb\x4e\x59\x70\x4f\xdf\x50\xab\x6c\x49\x38\xac\x8b\x0b\x68\x30\x7a\x9b\x26\x9f\xb9\x0b\x0e\x22\xeb\x0c\xfb\x02\xb5\x3d\x0c\x16\xba\xda\xc7\x24\x33\x2f\x31\xd7\x57\xfd\x0a\xf3\xf5\xbd\xcf\x69\x8b\x76\x8a\x54\x2c\xda\xb1\xfc\x7f\xe9\xb6\xd7\x37\x3f\x61\xd4\xcf\xd1\x9e\xa6\x8d\x1e\xc9\x76\x4a\xf3\xd4\x9e\x0c\x9c\x3b\x6a\xb8\xf5\x7a\x08\x76\xfe\xee\xe8\xe5\xf2\xde\x6b\xe5\x04\xfb\x5b\xea\x51\x1c\xb9\x51\xda\x2e\xff\xc6\xb4\x67\x8b\xf5\xd3\xdf\x00\x00\x00\xff\xff\x74\xda\xf9\x62\x99\x03\x00\x00" func idtablestakingDelegationDel_withdraw_reward_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2599,11 +2430,11 @@ func idtablestakingDelegationDel_withdraw_reward_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_withdraw_reward_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0x69, 0x4a, 0xc2, 0x9c, 0x8c, 0xbe, 0x30, 0xf1, 0x75, 0xca, 0x4, 0xe6, 0x89, 0xc4, 0x37, 0xa4, 0x54, 0x4, 0x46, 0x39, 0x59, 0x38, 0x65, 0xad, 0x42, 0x81, 0x10, 0x43, 0x24, 0x11, 0x43}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc, 0x4b, 0x1a, 0x8e, 0x8b, 0x65, 0x20, 0x1a, 0xe4, 0x29, 0xda, 0x30, 0xa5, 0xa8, 0xa0, 0xc6, 0xca, 0xd5, 0x2d, 0x23, 0x42, 0x23, 0xa9, 0x4b, 0xef, 0x84, 0x6f, 0xb7, 0x4d, 0x88, 0x80, 0x45}} return a, nil } -var _idtablestakingDelegationDel_withdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\x4d\x8b\xdb\x40\x0c\xbd\xcf\xaf\x10\x3e\x04\xfb\x50\xfb\x52\x7a\x08\xdb\x2e\x6d\x97\x40\x61\xe9\x96\xee\x47\xcf\xca\x58\x8e\xa7\x19\x8f\xcc\x58\xae\x03\x25\xff\xbd\x8c\xbf\xe2\x34\x29\x94\x52\x5d\x06\xa3\x27\xbd\xf7\x24\xd9\x54\x35\x7b\x81\x8d\xe5\xee\xd3\xdd\x13\x6e\x2d\x3d\x0a\xee\x8d\xdb\x41\xe1\xb9\x82\xe8\x32\x11\xa9\x45\xcd\x13\xef\xc9\x2d\xa0\xfd\x77\xa4\x94\x12\x8f\xae\x41\x2d\x86\x5d\x8c\x15\xb7\x4e\xd6\xf0\xbc\x31\x87\x37\xaf\x13\xf8\xa9\x14\x00\x40\x96\xc1\x3d\x6b\xb4\xf0\x03\xbd\x09\x04\x50\xb0\x07\x04\x4f\x05\x79\x72\x9a\x40\x18\xa4\x24\xc8\xc9\xd2\x0e\x85\x3d\xf0\xf6\x3b\x69\xe9\xab\x2d\xc9\x29\xf1\x95\x8a\x35\x60\x2b\x65\x7c\xa9\x37\xbd\x9b\x50\x0f\x9d\x23\x9f\xc0\xea\x0a\xe6\x33\xe7\x34\xe3\xd4\x4c\x50\x4c\x96\x7a\x82\xd5\xec\x30\x7d\xc1\xd6\xca\x80\xab\x3d\xd5\xe8\x29\x46\xad\x65\x14\xf1\x81\xbd\xe7\xee\x05\x6d\x4b\x09\xac\xde\x6b\x1d\xfc\x07\xdf\x30\x46\x96\xc1\xb6\xc7\xfc\xb5\xdd\x10\x0d\xd9\x22\x5d\x7a\x86\xb7\x10\x58\xd3\x46\xd8\xe3\x8e\xd2\xa1\xe7\xcd\x7f\x1b\xc4\xbb\x38\x6c\x76\x7d\xe5\x3a\x4e\xbd\x1e\x07\xee\x2f\x28\x65\x32\x2b\x0d\x71\x7b\x0b\x35\x3a\xa3\xe3\xe8\x23\xb7\x36\x07\xc7\x32\x99\x3e\xb3\xdc\x8c\xf7\x86\x79\x65\x5c\x94\xa8\x73\xbb\xcb\x0d\xfc\xc1\xee\xef\x6b\x99\x54\x67\x23\x2e\x9b\x7b\xf4\xe9\x7f\x53\xb9\xb9\x7f\xf8\x06\x7d\xfd\x24\xf1\x38\x3c\x74\x20\xdd\x0a\x4d\x47\x7d\x55\x78\x9a\x53\xcd\x8d\x91\x51\xd8\xcd\xab\x8b\x4d\xa6\x9d\x91\x32\xf7\xd8\x3d\xbb\x30\x0f\xca\xfb\xd2\x66\xfe\x75\x86\x37\x99\xa9\x8f\xbf\x02\x00\x00\xff\xff\xb8\x15\x1d\x98\xb8\x03\x00\x00" +var _idtablestakingDelegationDel_withdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\xcf\x6a\xdc\x40\x0c\xc6\xef\xf3\x14\xc2\x87\x60\x1f\x6a\x5f\x4a\x0f\x26\x6d\x08\x0d\x0b\x85\xd0\x94\x26\x69\xcf\xda\xb1\xbc\x9e\xee\x78\x64\xc6\x72\xbd\x50\xf6\xdd\xcb\xd8\x6b\xaf\xf7\xcf\xa1\x94\xe8\x32\x18\x49\xf3\x7d\x3f\x8d\x6c\xea\x86\xbd\xc0\xca\x72\xff\xe5\xe1\x05\xd7\x96\x9e\x05\xb7\xc6\x6d\xa0\xf4\x5c\x43\x74\x99\x88\xd4\xa2\xe7\x85\xb7\xe4\x16\xa5\xc3\x77\xa4\x94\x12\x8f\xae\x45\x2d\x86\x5d\x8c\x35\x77\x4e\x72\x78\x5d\x99\xdd\x87\xf7\x09\xfc\x51\x0a\x00\x20\xcb\xe0\x91\x35\x5a\xf8\x8d\xde\x04\x01\x28\xd9\x03\x82\xa7\x92\x3c\x39\x4d\x20\x0c\x52\x11\x14\x64\x69\x83\xc2\x1e\x78\xfd\x8b\xb4\x0c\xdd\x96\xe4\x98\xf8\x4e\x65\x0e\xd8\x49\x15\x5f\xfa\x4d\x1f\xa6\xaa\xa7\xde\x91\x4f\xe0\xe6\x4a\xcd\x57\x2e\x68\xae\x53\xb3\x40\x39\x21\x0d\x02\x37\x33\x61\xfa\x03\x3b\x2b\x63\x5d\xe3\xa9\x41\x4f\x31\x6a\x2d\x39\xdc\x77\x52\xdd\x6b\x1d\x80\x03\x28\x1c\x22\xcb\x60\xcd\xde\x73\xff\xcf\x7c\x21\x5a\xb2\x65\xba\x84\x84\x8f\x10\x64\xd2\xf1\xae\xdb\x37\x23\xfe\x14\x87\x27\xcc\xaf\xac\xc1\xf1\xae\x67\x61\x8f\x1b\xfa\x86\x52\x25\xb3\xc3\x10\x77\x77\xd0\xa0\x33\x3a\x8e\x3e\x73\x67\x0b\x70\x2c\x13\xec\x09\x6a\x7b\x58\x2c\x2c\x6a\xe3\xa2\x44\x9d\x62\x2e\x47\x7d\x86\x79\x3e\xf7\xc9\x6d\xd6\x8e\x96\xb2\xb9\x77\x48\xff\x9f\xbb\xd5\xe3\xd3\x4f\x18\xfa\x27\x6b\xfb\xf1\xa0\x1d\xe9\x4e\x68\xda\xda\xab\x86\xd3\x82\x1a\x6e\x8d\x1c\x8c\xdd\xbe\xbb\x78\xb9\xb4\x37\x52\x15\x1e\xfb\x57\x17\xe6\x40\xc5\xd0\xda\xce\xff\xc6\x78\x26\xb3\xf4\xfe\x6f\x00\x00\x00\xff\xff\x19\x57\x06\xc9\x99\x03\x00\x00" func idtablestakingDelegationDel_withdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2619,7 +2450,27 @@ func idtablestakingDelegationDel_withdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0x9, 0xa9, 0xbe, 0x99, 0x3e, 0x9a, 0x30, 0x27, 0x80, 0xe7, 0x17, 0x89, 0x21, 0xf2, 0xd3, 0x7d, 0x98, 0x8f, 0xf6, 0x2c, 0xc2, 0xb1, 0x96, 0x6, 0x8a, 0x98, 0x7e, 0xc2, 0xed, 0x7c, 0x58}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x87, 0xda, 0xef, 0x51, 0x96, 0x44, 0xca, 0xf1, 0x93, 0x42, 0xa5, 0xd2, 0x8a, 0x11, 0xa8, 0x5c, 0x7b, 0x9e, 0xe0, 0xb, 0xcf, 0x33, 0xe9, 0x7a, 0x28, 0x42, 0x74, 0x1b, 0xa1, 0x8f, 0x86, 0x58}} + return a, nil +} + +var _idtablestakingDelegationDelegator_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\xcd\x8a\xea\x40\x10\x85\xf7\xfd\x14\x85\x0b\x49\xe0\x62\xf6\xa2\x82\x5c\xb9\x70\x37\x33\x82\xbe\x40\xa5\x53\x26\x3d\x69\xbb\x42\xa7\x42\x66\xd0\xbc\xfb\x90\x38\xd3\x1a\x94\xf9\xa9\x5d\xd2\xa7\xce\x39\xf5\x99\x63\xc5\x5e\xe0\x9f\xe5\xf6\xff\x66\x8f\xa9\xa5\x9d\x60\x69\x5c\x0e\x07\xcf\x47\x98\xdc\x3f\x4c\xd4\xcd\xce\x9e\x4b\x72\x37\xd2\xe1\x7b\xa2\x54\x92\xc0\xbe\x30\x35\x88\x47\x57\xa3\x16\xc3\x0e\x30\xcb\x6a\x40\xa8\x9a\xd4\x1a\x0d\x19\x59\xca\x51\xd8\x83\xc6\x0a\x53\x63\x8d\xbc\x81\x30\xa0\x03\xd4\x9a\x1b\x27\xd0\x1a\x29\x7a\x27\x74\x40\xaf\xa6\x96\xbe\xd5\x13\x67\xb4\x09\xab\x9c\xbe\x90\x16\xa5\x6e\x63\x4e\x4a\x01\x00\x54\x9e\x2a\xf4\x14\xa1\xd6\x32\x87\x75\x23\xc5\xfa\x62\x1b\x7f\x2a\xfa\x31\x87\x3e\x4d\x66\x29\x7b\xcf\xed\x02\x1b\x29\xa2\xfb\x93\x67\x21\xf1\xb9\x75\xe4\x63\x98\x3e\xd0\x8c\x9a\xad\xa2\x9e\xc9\xfc\x01\xd7\xab\xd7\x4e\xd8\x63\x4e\x5b\x94\x22\x86\xe5\x12\x9c\xb1\x70\x3e\x87\x6a\xfd\x0c\xdd\x72\x92\xbf\x01\xd1\x62\x7a\xfa\x2e\x7b\x3b\x00\xee\x56\x51\x72\x41\x9d\x1c\x2c\xb7\x1f\xca\x20\x8a\x67\xba\x20\x5d\x46\x71\xc8\x3b\x8d\x92\x3d\x49\xe3\x5d\xf8\xd5\x5d\x91\x0d\x9d\xac\x71\xe5\x6f\xaa\x8c\xbc\xbf\xea\xf5\x67\xa4\x14\xf4\x39\xc9\x8f\x31\x86\xdd\xcb\x55\x9d\xea\xde\x03\x00\x00\xff\xff\x9f\x8a\x9c\x77\xdf\x02\x00\x00" + +func idtablestakingDelegationDelegator_add_capabilityCdcBytes() ([]byte, error) { + return bindataRead( + _idtablestakingDelegationDelegator_add_capabilityCdc, + "idTableStaking/delegation/delegator_add_capability.cdc", + ) +} + +func idtablestakingDelegationDelegator_add_capabilityCdc() (*asset, error) { + bytes, err := idtablestakingDelegationDelegator_add_capabilityCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "idTableStaking/delegation/delegator_add_capability.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3, 0x8e, 0x89, 0x49, 0xad, 0x20, 0xad, 0xdb, 0x39, 0xd1, 0xed, 0x98, 0xc9, 0xd8, 0x8a, 0x58, 0xf5, 0x52, 0xbd, 0x18, 0xbe, 0x49, 0xb2, 0xbd, 0xab, 0x93, 0x20, 0x18, 0x7f, 0x94, 0x32, 0x4}} return a, nil } @@ -2663,7 +2514,7 @@ func idtablestakingDelegationGet_delegator_infoCdc() (*asset, error) { return a, nil } -var _idtablestakingDelegationGet_delegator_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\xc1\x6a\xf3\x30\x10\x84\xef\x7a\x8a\xc1\x87\x1f\x1b\x7e\xec\x7b\x68\x1b\x42\x43\x21\x97\x52\x68\x5e\x60\x2d\xad\x13\xb5\x8a\xd6\x48\x6b\x72\x08\x79\xf7\x92\xb8\x89\x53\x1a\xa8\x4e\xcb\xee\x30\xdf\x68\xfc\xae\x97\xa4\x78\x09\xb2\x5f\x2d\xd7\xd4\x06\x7e\x57\xfa\xf4\x71\x83\x2e\xc9\x0e\xc5\xef\x43\x61\x4c\xd3\x60\xbd\xf5\x19\xd9\x26\xdf\x2b\x36\xac\x19\x14\x02\x74\xcb\xf0\xb1\x13\x50\x2b\x83\x82\xe0\x38\xf0\x86\x54\x12\x28\x3a\x24\xd6\x21\xc5\x0c\xaf\xc6\x90\xb5\x9c\x73\x49\x21\x54\xe8\x86\x88\x1d\xf9\x58\x92\x73\x89\x73\x9e\x61\x31\x0e\xd5\xec\x4e\xb0\x7a\x79\x31\x5d\x9d\x50\x07\x63\x00\x20\xb0\xde\xd0\x1e\x4f\x99\x16\xd6\xca\x10\xf5\xe2\x5a\x9d\x75\xa7\x57\x5b\xea\xa9\xf5\xc1\xab\xe7\x5c\xb7\x92\x92\xec\x1f\xfe\x1d\xee\xa0\x5e\xc5\xf1\x15\xf7\x36\xb4\xc1\xdb\xe3\x53\xd9\xf4\xe7\xa9\xe9\x82\xec\xbf\x95\x57\xd1\x44\x99\xcf\xd1\x53\xf4\xb6\x2c\x9e\x65\x08\x0e\x51\x14\x23\x0b\x89\x3b\x4e\x1c\x2d\x43\xe5\x26\xb5\xb4\x1f\x6c\xb5\xa8\xc6\x1f\x8d\x6d\xfd\x59\x40\x19\xc5\xf1\x6a\x39\x9b\x7c\xea\x71\xf3\x7f\xda\xfc\x3c\x7b\x57\x99\xa3\xf9\x0a\x00\x00\xff\xff\xb9\xc7\x94\xa1\xf9\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\xcf\x6a\xf3\x40\x0c\xc4\xef\xfb\x14\x83\x0f\x1f\x36\x7c\xc4\xf7\xd0\x36\x84\x84\x42\x2e\xa5\xd0\xbc\x80\xbc\x2b\x3b\xdb\x6e\x56\x66\x57\x26\x94\x90\x77\x2f\x89\x9b\x3f\xa5\x81\xea\x24\x46\xc3\xfc\x24\xf9\x6d\x2f\x49\xf1\x1c\x64\xb7\x5a\xae\xa9\x09\xfc\xa6\xf4\xe1\x63\x87\x36\xc9\x16\xc5\xef\x41\x61\x4c\x5d\x63\xbd\xf1\x19\xd9\x26\xdf\x2b\x3a\xd6\x0c\x0a\x01\xba\x61\xf8\xd8\x0a\xa8\x91\x41\x41\x70\x1c\xb8\x23\x95\x04\x8a\x0e\x89\x75\x48\x31\xc3\xab\x31\x64\x2d\xe7\x5c\x52\x08\x15\xda\x21\x62\x4b\x3e\x96\xe4\x5c\xe2\x9c\xa7\x98\x8f\x4d\x35\xbd\xb3\xd8\x64\x79\x0e\x5d\x1d\x51\x7b\x63\x00\x20\xb0\xde\xd0\x1e\x8f\x3b\xcd\xad\x95\x21\xea\x39\xb5\x3a\xf9\x8e\x35\xe9\x58\x17\xd4\x53\xe3\x83\xd7\xcf\x87\x7f\xfb\x3b\x90\x17\x71\x7c\x01\xbd\x0e\x4d\xf0\xf6\xf0\x54\xd6\xfd\xa9\xab\xdb\x20\xbb\x6f\xe7\xc5\x74\x93\xdf\x48\x4a\xb2\x2b\xaf\xca\x6c\x86\x9e\xa2\xb7\x65\xb1\x90\x21\x38\x44\x51\x8c\x26\x24\x6e\x39\x71\xb4\x0c\x95\x9b\x0b\xa4\x79\x67\xab\x45\x35\x5e\x37\x7e\xee\xcf\x67\x94\x51\x1c\xaf\x96\xd3\x6b\xce\x64\x54\xfe\x5f\x95\x9f\x63\xef\x2a\x73\x30\x5f\x01\x00\x00\xff\xff\x00\x83\xc3\x6a\x05\x02\x00\x00" func idtablestakingDelegationGet_delegator_info_from_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -2679,7 +2530,7 @@ func idtablestakingDelegationGet_delegator_info_from_addressCdc() (*asset, error } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_info_from_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x6d, 0xf0, 0x20, 0xdc, 0x44, 0xad, 0x75, 0x83, 0x22, 0xdd, 0xd0, 0xfe, 0x92, 0x57, 0x2d, 0xf0, 0xc2, 0x14, 0x1b, 0x47, 0x3a, 0xe7, 0x2c, 0xc6, 0xc0, 0xeb, 0x5b, 0xa3, 0xba, 0x2e, 0xa9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xab, 0x2, 0x1b, 0x49, 0x6, 0xce, 0x6b, 0x6f, 0x3f, 0x70, 0xaf, 0xe3, 0xcc, 0xec, 0xdb, 0xcc, 0x4d, 0xf, 0x5f, 0x46, 0x99, 0x70, 0x3e, 0xcb, 0xab, 0xbe, 0x4c, 0xd0, 0xea, 0xd9, 0xd3, 0x9}} return a, nil } @@ -2803,7 +2654,7 @@ func idtablestakingDelegationGet_delegator_unstaking_requestCdc() (*asset, error return a, nil } -var _idtablestakingDelegationRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xcd\x8e\x9b\x30\x10\xbe\xf3\x14\xa3\x1c\x22\x90\x12\xb8\x54\x3d\x20\xba\xab\x8a\x28\xd2\x4a\xd5\x76\xd5\x6c\xbb\xe7\xc1\x0c\xe0\x2e\xd8\xc8\x1e\x4a\xa5\x55\xde\xbd\x32\x24\x5e\x68\x73\xa8\x2f\x16\xf8\x9b\xef\x67\x66\x64\xd7\x6b\xc3\x70\x6c\xf5\xf8\x70\x78\xc6\xa2\xa5\x13\xe3\xab\x54\x35\x54\x46\x77\xb0\xf9\xf7\x61\x13\x2c\x6a\x9e\xf5\x2b\xa9\x05\x74\xfa\x7e\x47\x0c\xaa\x96\x45\x4b\x2b\xd4\xf2\xdf\x26\x08\xd8\xa0\xb2\x28\x58\x6a\x15\x2a\x5d\xd2\xc3\x21\x85\x13\x1b\xa9\xea\x1d\x60\xa7\x07\xc5\x29\x7c\x3f\xca\xdf\x1f\x3f\x44\xf0\x16\x04\x00\x00\xbd\xa1\x1e\x0d\x85\x28\x04\xa7\x80\x03\x37\xe1\x89\xb5\xc1\x9a\x76\x90\x63\x8f\x85\x6c\x25\x4b\xb2\x11\x6c\x3f\x0b\xe1\x28\x7c\xa9\x3b\x2d\x31\x54\x57\xaf\xdf\xa8\x82\x4f\xe0\x98\x62\x3b\x73\xc4\x85\x36\x46\x8f\xd9\xc4\xbb\x72\x1b\xbf\x48\x6e\x4a\x83\x63\x04\x5b\x1f\x36\xfe\x81\x43\xcb\x77\xa1\x4b\x97\x42\x72\x21\x49\xbc\xc0\xf4\x1c\x79\x71\x77\xee\xef\xa1\x47\x25\x45\xb8\xc9\xf5\xd0\x96\xa0\x34\xc3\x2c\x0a\x86\x2a\x32\xa4\x04\x01\x6b\x38\x7e\xf9\xfa\x02\x53\xfd\x26\x7a\xb7\x9f\x24\x90\x1b\x42\x26\x40\x50\x34\x42\x49\x2d\xd5\xc8\xda\x80\x2e\x7e\x92\x60\xa8\xb4\x01\x6e\x08\x5c\x37\x57\xa1\x15\x8d\x07\x0f\xce\xf6\x37\x86\x1e\x1b\xaa\xa5\x65\x32\x8f\x0b\xa8\x1f\xcb\x7c\xef\x80\x5d\x2e\x9b\xeb\xae\x93\xcc\x54\xa6\x90\xed\x97\xfd\x8c\xc7\x4b\x9b\xc2\xeb\xfc\xe6\x3b\x5a\x87\x70\x23\xa3\xc9\xe8\xdf\x09\x3c\x6a\x35\x16\x8b\xbf\x28\xcc\xf6\xcb\x10\xce\x4a\x7a\x2b\x86\x47\x5c\xf6\xe2\x09\xb9\x89\xd6\x1b\xe0\x45\x73\xec\xaf\x1b\x20\x16\xcb\xe3\x75\xa5\xb5\x03\x65\xdb\xb7\x1b\x32\x8f\xba\x24\x2f\xf5\x34\x14\xad\x14\xe7\xbb\xf0\xbf\xfd\xac\x62\xae\xb4\x7b\xc7\x65\x9b\x70\x69\x72\x07\xc8\x29\x24\xd3\x93\x98\xf6\xeb\xc2\xee\xc9\x67\xc6\x73\x70\xfe\x13\x00\x00\xff\xff\xbb\xd1\x84\x7f\xd5\x03\x00\x00" +var _idtablestakingDelegationRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\x41\x6f\x9b\x40\x10\x85\xef\xfc\x8a\x91\x0f\x11\x48\x31\x5c\xaa\x1e\x10\x4d\x14\xd9\xb2\x14\xa9\x4a\xa3\x3a\x6d\xce\x03\x0c\xb0\x35\xec\xa0\x61\x28\x95\x22\xff\xf7\x6a\x71\xb2\xc1\xad\x2f\xd9\xcb\xda\xec\x9b\x99\xef\xcd\x33\x5d\xcf\xa2\xb0\x6b\x79\xba\xdf\x3e\x61\xde\xd2\x5e\xf1\x60\x6c\x0d\x95\x70\x07\xab\xff\x1f\x56\xc1\xa2\xe6\x89\x0f\x64\x17\xd2\xf9\xff\xbb\x62\xb4\xb5\xc9\x5b\x3a\x53\x2d\xbf\xad\x82\x40\x05\xed\x80\x85\x1a\xb6\xa1\xe5\x92\xee\xb7\x29\xec\x55\x8c\xad\xaf\x01\x3b\x1e\xad\xa6\xf0\x63\x67\xfe\x7c\xfe\x14\xc1\x4b\x10\x00\x00\xf4\x42\x3d\x0a\x85\x58\x14\x9a\xc2\xdd\xa8\xcd\x5d\x51\x38\xa5\x57\xb8\xd3\x92\x42\xf5\x86\xf4\x9d\x2a\xf8\x02\xae\x20\xce\x59\x84\xa7\x0c\x47\x6d\xc2\x33\x98\xf8\xd9\x68\x53\x0a\x4e\xce\x6c\x04\x57\xde\x4f\xfc\x13\xc7\x56\x6f\x42\x67\x20\x85\x64\x50\x16\xac\x29\xf1\xcd\xe7\xe7\xc8\x0f\x76\xe7\xf6\x16\x7a\xb4\xa6\x08\x57\x1b\x1e\xdb\x12\x2c\x2b\x9c\x06\x83\x50\x45\x42\xb6\x20\x50\x86\xdd\xd7\x6f\xcf\x30\xd7\xaf\xa2\x77\xf4\x24\x81\x8d\x10\x2a\x01\x82\xa5\x09\x4a\x6a\xa9\x46\x65\x01\xce\x7f\x51\xa1\x50\xb1\x80\x36\x04\x6e\x61\x67\x86\x2d\x4d\x5b\x2f\xce\xd6\x17\x72\x8d\x85\x6a\x33\x28\xc9\xc3\x42\xea\x37\x7f\xba\xaf\x41\x9d\xaf\x61\xc3\x5d\x67\x54\xa9\x4c\x21\x5b\x2f\x77\x19\x4f\xaf\xab\x0a\xdf\x22\x3a\xdd\xd1\xb9\x89\xbd\xb2\xd0\x0c\xfa\xaf\x03\xaf\x9a\x23\x19\xf0\x37\x85\xd9\x7a\x09\xef\x10\xd2\x4b\xf8\x5e\xb1\x3f\xc5\xf0\x88\xda\x2c\xa6\xce\xfd\x5a\x63\x0f\xd9\xd5\xcb\x85\xea\x07\x2e\xc9\x77\x78\x1c\xf3\xd6\x14\xc7\x9b\x30\xe9\xe7\x5f\x73\xa2\xaf\xca\x25\x08\x4a\x4d\xfa\x01\x18\xc7\x71\x0c\x82\xe3\xdf\x00\x00\x00\xff\xff\x87\x06\xc4\x34\x5c\x03\x00\x00" func idtablestakingDelegationRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -2819,11 +2670,11 @@ func idtablestakingDelegationRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xd1, 0x2c, 0x94, 0x87, 0xed, 0x6e, 0x56, 0x43, 0x77, 0xd5, 0x5, 0x39, 0x7, 0xf8, 0x30, 0x30, 0x29, 0x8b, 0x42, 0x51, 0x3f, 0x5e, 0x80, 0xb7, 0xdd, 0x39, 0x36, 0xbd, 0xbc, 0x2, 0x1b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x91, 0x98, 0xd5, 0xb2, 0x34, 0x10, 0x9d, 0x3a, 0x29, 0x0, 0x4f, 0xc9, 0xb3, 0x8c, 0x69, 0x7a, 0x16, 0xa2, 0xa0, 0x1, 0x57, 0x1f, 0x9c, 0xab, 0x7d, 0x33, 0x4c, 0xaa, 0x47, 0xaa, 0x76, 0xd9}} return a, nil } -var _idtablestakingDelegationRegister_many_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6f\xe2\x30\x10\x85\xef\xfe\x15\x23\x0e\xab\x44\x0b\x81\xbd\x46\x61\xd5\x0a\x5a\x89\x4b\x55\x09\xc4\x05\x71\x18\xc2\x90\xb8\x24\x76\xe4\x4c\x82\x10\xe2\xbf\x57\x36\x10\x92\xb4\x3e\x58\x30\xf3\x5e\x66\xde\x67\x99\x17\xda\x30\xbc\x67\xfa\xb4\x98\xaf\x70\x97\xd1\x92\xf1\x28\x55\x02\x07\xa3\x73\x18\xfc\x6c\x0c\x44\xcb\xb3\xd2\x47\x52\x2d\xa9\xfb\x3f\x10\x82\x0d\xaa\x12\x63\x96\x5a\x79\x4a\xef\x69\x31\x2f\x43\xd8\x2c\xd9\x48\x95\x6c\x87\x50\x20\xa7\xb7\x82\x36\x98\xd0\x27\x72\xba\xf5\xe1\x22\x04\x00\x40\x61\xa8\x40\x43\x1e\xc6\x31\x87\x80\x15\xa7\xde\x12\x6b\x5a\x63\x56\x91\x0f\x7f\x5e\xe3\x58\x57\x8a\x1b\xb9\x3d\x35\x1a\x90\x30\x85\xc9\xb3\x74\xd0\xc6\x8d\x01\xa9\x6e\xe3\xe0\xd2\xf4\xec\x19\x8f\x61\x66\x08\x99\x00\x41\xd1\x09\xf6\x94\x51\x82\xac\x0d\xe8\xdd\x17\xc5\xec\x3e\xc0\x29\x81\x5d\xbf\xe3\xcc\x88\xad\x63\xde\x18\xa2\xd1\x2f\xfc\x02\x43\x89\x2c\x99\xcc\x47\x4b\x7a\x67\x11\xc2\x9d\xc9\x46\x6e\x87\xc0\x96\x59\x39\xd3\x79\x2e\x99\x69\x1f\x42\x34\x6a\x50\x06\xb1\xdb\xf1\x2d\x2f\xf8\xbc\xc6\x2a\x63\xaf\xb6\xf7\xea\x5c\x50\x08\xf6\x8e\x5e\x9e\x5a\x27\xf8\xef\xf9\xbe\x2f\xfa\x51\x2d\x68\x72\x71\xfa\x39\x3b\x4a\x8b\x3c\x28\x6f\x8f\x12\x94\x58\x93\x17\x8d\xda\x51\xed\xb2\xa1\xc3\xd9\x1b\x61\xe1\x4b\xf8\x0b\xff\xba\xd5\x83\x6d\x4c\x1f\x69\x83\x8c\x54\xc2\x69\xef\x21\x1e\xf6\x49\xa7\x7a\x15\xdd\x5f\x57\x21\xae\xdf\x01\x00\x00\xff\xff\xdc\x28\xf5\x58\xac\x02\x00\x00" +var _idtablestakingDelegationRegister_many_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x6f\xba\x40\x10\xc5\xef\xfb\x29\x5e\x3c\x61\xfe\x8a\xfe\xaf\x44\x0f\x46\xdb\xc4\x4b\xd3\x44\xd3\x8b\xf1\x30\xe2\x08\x5b\x61\x97\x2c\xa3\xa6\x31\x7e\xf7\x66\x51\x29\xd0\xce\x09\x66\xe6\xcd\xbe\xf7\xd3\x79\x61\x9d\xe0\x35\xb3\x97\xe5\x62\x4d\xbb\x8c\x57\x42\x47\x6d\x12\x1c\x9c\xcd\xd1\xfb\x3d\xe8\xa9\x86\x66\x6d\x8f\x6c\x1a\xab\xd5\x7f\x4f\x29\x71\x64\x4a\x8a\x45\x5b\x13\x18\xbb\xe7\xe5\xa2\x8c\xb0\x59\x89\xd3\x26\xd9\x0e\x50\x90\xa4\xf7\x86\x75\x94\xf0\x3b\x49\xba\xed\xe3\xaa\x14\x00\x14\x8e\x0b\x72\x1c\x50\x1c\x4b\x84\xd9\x49\xd2\x59\x1c\xdb\x93\x91\x7a\xc3\xd7\x99\x1c\x34\xa6\x18\xff\xb4\x0e\xd6\x55\x97\xa1\xcd\xfd\x05\x5c\xeb\x99\xaf\xd1\x08\x73\xc7\x24\x0c\x82\xe1\x0b\xf6\x9c\x71\x42\x62\x1d\xec\xee\x93\x63\xa9\x0e\x48\xca\xf0\x8e\x5b\xca\x8c\xc5\x2b\x16\xb5\x60\x32\xfc\x03\x59\xe8\x38\xd1\xa5\xb0\x7b\x6b\xac\x3e\xe2\x47\x78\x60\xd8\xe8\xed\x00\xe2\x31\x95\x73\x9b\xe7\x5a\x84\xf7\x11\x26\xc3\x9a\x5e\x18\x57\x1e\x5f\xf2\x42\xbe\x3e\xe8\x94\x49\xd0\xef\xab\x6e\x0e\x0f\x8e\x2b\xaf\xdd\x10\xad\x4d\x8f\x30\x2c\xe9\xcc\xc1\x64\xd8\xf4\xef\x1d\x44\x15\xa3\xce\x69\x4f\x54\xe3\x1f\xfe\xb7\xbb\x07\x3f\x98\x3e\x23\x84\x19\x9b\x44\xd2\x0e\xdd\xa7\x7c\xdc\xea\xde\x54\xfb\xeb\xa6\xd4\xed\x3b\x00\x00\xff\xff\x82\x5d\xe0\xf4\x74\x02\x00\x00" func idtablestakingDelegationRegister_many_delegatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -2839,11 +2690,31 @@ func idtablestakingDelegationRegister_many_delegatorsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/register_many_delegators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0x77, 0xf9, 0xad, 0xba, 0xdd, 0x3, 0x54, 0xa7, 0xa1, 0x6b, 0x8e, 0x5d, 0x19, 0x2b, 0x23, 0xea, 0x5, 0x9b, 0xd8, 0x21, 0x1d, 0x7b, 0x64, 0x8e, 0x76, 0x91, 0x58, 0xd4, 0xd2, 0xe2, 0x2f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0xc9, 0xb1, 0xc8, 0xf3, 0xd2, 0x6b, 0xd, 0x5e, 0x9e, 0x32, 0x40, 0x84, 0x52, 0xbd, 0x15, 0x2f, 0xe8, 0xd6, 0x34, 0x69, 0x82, 0x4e, 0x12, 0xef, 0x7b, 0xfd, 0xa3, 0xcf, 0x8d, 0x37, 0x72}} + return a, nil +} + +var _idtablestakingNodeNode_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xd1\x6a\xf2\x40\x10\x85\xef\xf7\x29\x06\x2f\x24\x81\x1f\xbd\x17\x15\xe4\x2f\x85\xde\xb4\x82\xbe\xc0\x64\x33\x26\xdb\xc4\x9d\x30\x99\x60\x8b\xe6\xdd\xcb\x46\x9a\x46\xac\x25\x73\x97\xec\x99\x73\xbe\x39\xee\x58\xb1\x28\x3c\x97\x7c\x7a\x79\xda\x63\x52\xd2\x4e\xb1\x70\x3e\x83\x83\xf0\x11\x26\xf7\x0f\x13\x33\xd8\xd9\x73\x41\x7e\x20\xed\xbe\x27\xc6\xcc\xe7\xb0\xcf\x5d\x0d\x2a\xe8\x6b\xb4\xea\xd8\x03\xa6\x69\x0d\x08\x55\x93\x94\xce\x82\xe7\x94\xc0\x62\x85\x89\x2b\x9d\x7e\x82\x32\xa0\x07\xb4\x96\x1b\xaf\x70\x72\x9a\x07\x13\xf4\x40\x1f\xae\xd6\x00\xf4\xca\x69\xc7\x40\x02\x9c\xbc\x93\x55\x63\x86\xf6\x67\x63\x00\x00\x2a\xa1\x0a\x85\x22\xb4\x56\x17\xb0\x69\x34\xdf\x5c\x3d\xe3\x6f\x45\x18\x77\x08\x51\x3a\x4b\x58\x84\x4f\x4b\x6c\x34\x8f\xee\x4f\x9d\x85\xc8\xb7\x8a\x04\x95\x25\x86\xe9\x03\xc5\x15\x6a\x1d\x85\x1a\x16\xbf\x54\x39\x10\xed\x94\x05\x33\xda\xa2\xe6\x31\xac\x56\xe0\x5d\x09\x97\x4b\x8f\x15\xa6\xe3\xca\x48\xff\xf7\xdd\x2c\xa7\xe7\x3f\x4d\xb7\x5d\xa3\xed\xfa\xd1\x05\x43\x55\x97\x3c\xb3\x39\xd9\x22\x8a\xfb\xdc\xf3\x0d\x81\x90\x36\xe2\xfb\x5f\xed\x4f\x6d\x1d\x5b\xe9\x7c\x31\x1a\xe9\xc6\x78\x24\xdf\xbf\x9b\x25\x45\xc9\x48\xc7\xf7\xda\x2f\x5f\xcf\x6b\x4d\xfb\x15\x00\x00\xff\xff\xe2\xbc\x02\x74\xe4\x02\x00\x00" + +func idtablestakingNodeNode_add_capabilityCdcBytes() ([]byte, error) { + return bindataRead( + _idtablestakingNodeNode_add_capabilityCdc, + "idTableStaking/node/node_add_capability.cdc", + ) +} + +func idtablestakingNodeNode_add_capabilityCdc() (*asset, error) { + bytes, err := idtablestakingNodeNode_add_capabilityCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "idTableStaking/node/node_add_capability.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x35, 0xe9, 0x19, 0x75, 0x7, 0x9, 0x2c, 0xc7, 0xb, 0x88, 0xb8, 0xbb, 0x46, 0x0, 0xb8, 0xbe, 0x24, 0xff, 0x89, 0xca, 0xe9, 0x6b, 0xce, 0x5a, 0x10, 0xcb, 0xaf, 0x70, 0xa8, 0x9b, 0xeb, 0x11}} return a, nil } -var _idtablestakingNodeRegister_many_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\x4f\x6b\xdb\x4e\x10\xbd\xeb\x53\x0c\x3e\x04\x89\x5f\x2c\xff\x0a\xa5\x94\xc5\x69\x08\x29\x86\x90\xd2\x96\x24\x6d\x0e\xc6\x87\xb5\x76\x64\x6d\x23\xed\x98\xd5\x28\x6a\x28\xf9\xee\x65\x57\x8a\xf5\x17\x3a\x07\x81\xde\xbc\x99\xb7\x33\xf3\x74\x71\x24\xcb\xb0\xc9\xa9\xbe\xf9\xfc\x20\xf7\x39\xde\xb3\x7c\xd2\xe6\x00\xa9\xa5\x02\x16\xd3\xc4\x22\xe8\xd5\x3c\xd0\x13\x9a\x1e\xd5\xff\x77\x8c\xca\x1c\xf4\x3e\xc7\x01\xab\x8f\x2d\x82\x80\xad\x34\xa5\x4c\x58\x93\x09\x03\x00\x00\xad\x4a\x01\xdb\x7b\xb6\xda\x1c\x76\xe7\x1e\xb2\x94\xa3\x03\x7f\xdc\x18\xfe\xd8\x62\x06\xb9\x26\xeb\x1e\x74\xa5\x94\xc5\xb2\xc4\x49\x59\x47\xb9\xc5\x97\x49\xb6\x6c\xc6\x99\x4b\xc9\x82\x2a\xc3\x5e\x71\xa3\x7f\x7f\x78\xdf\xc2\x47\xc9\x59\xc3\x25\x2b\x0f\xf8\x5d\x72\xb6\x0b\x22\xf8\x13\x34\x59\x8b\x47\x69\x31\x94\x49\xc2\x02\x64\xc5\x59\xd8\x12\x23\x38\xbb\x4a\x12\xd7\xf2\x44\x76\xf1\x2c\x2d\x68\xb8\x80\xff\x3b\x28\x25\xeb\x55\x40\x9b\x46\xad\xcf\x77\x91\x23\x43\xfa\xb6\xe7\x3b\x4c\xe1\x02\x9c\x5e\x5c\x36\x4a\xf1\x9e\xac\xa5\x7a\xed\xd5\x07\x9b\x8e\x1f\x35\x67\xca\xca\x3a\x82\xb3\xd3\xa1\xe2\x9f\xb2\xca\xf9\x53\xe8\x2e\x23\x60\xd5\x36\x59\x9d\x04\x7c\x3a\x1a\x3c\xc0\xc5\xe5\x25\x1c\xa5\xd1\x49\xb8\xb8\xa6\x2a\x57\x60\x88\xa1\x11\x06\x8b\x29\x5a\x34\x09\x02\x13\x6c\xbe\x7c\x7b\x04\xdf\x63\x11\x4d\xc7\x60\xa7\x50\x5e\x53\x51\x68\x66\x54\xb0\x5e\x0e\x26\x8b\xeb\xf6\xc1\x61\x73\x0d\xf1\x76\x95\xad\xde\xcd\x74\x33\xa4\xbc\x41\xd1\xba\x46\x53\xd7\xc6\x52\xa9\xaf\xa4\xf0\x0e\x13\xb2\x2a\x9c\xcc\xa4\x95\x70\xce\xdb\xea\xf6\xd6\xfd\x70\xf6\x13\x8d\x09\x67\xf3\x13\x2b\x8a\x39\x77\xfe\xa3\xf4\x16\x5f\xc4\xc8\xb1\xb3\x15\x9d\x6d\x45\xdf\xc2\xb3\xdc\xd1\x8a\x05\xac\x97\x23\x68\x50\x32\x5a\xeb\x6a\x05\xce\xc0\x08\x9c\xa1\xdf\x2f\xd0\xfe\x17\x26\x3c\x20\x0d\xdc\x57\xca\x67\x0c\xd7\xcb\xee\x16\xe7\xc0\x24\xbc\x93\x47\xbd\x9d\xef\x35\xfc\x07\xef\x4e\xe8\x6b\xd0\x7c\x83\xd7\xbf\x01\x00\x00\xff\xff\x0d\x4e\x7d\xd1\x93\x04\x00\x00" +var _idtablestakingNodeRegister_many_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\x4d\x6b\xdb\x40\x10\xbd\xeb\x57\x0c\x3a\x14\x99\xc6\x72\x0b\xa5\x94\xc5\x69\x30\x29\x86\x90\xd2\x96\x24\x6d\x0e\xc6\x87\xb5\x76\x64\x6d\x23\xed\x98\xd5\x28\x6a\x28\xf9\xef\x65\x57\xb6\xf5\x09\x9d\x83\x40\x6f\xde\xbc\xd9\x99\x79\xba\x38\x90\x65\x58\xe7\x54\xdf\x7c\x79\x90\xbb\x1c\xef\x59\x3e\x69\xb3\x87\xd4\x52\x01\xe1\x38\x11\x06\x9d\x9a\x07\x7a\x42\xd3\xa1\xfa\xff\x96\x51\x99\xbd\xde\xe5\xd8\x63\x75\xb1\x30\x08\xd8\x4a\x53\xca\x84\x35\x99\x28\x00\x00\xd0\xaa\x14\xb0\xb9\x67\xab\xcd\x7e\x7b\xe1\x21\x4b\x39\x3a\xf0\xe7\x8d\xe1\x4f\x47\xcc\x20\xd7\x64\xdd\x83\x56\x4a\x59\x2c\x4b\x1c\x95\xb5\x94\x5b\x7c\x19\x65\xcb\x66\x9c\xa9\x94\x2c\xa8\x32\xec\x3b\xae\xf5\x9f\x8f\x1f\x8e\xf0\x41\x72\xd6\x70\xc9\xca\x3d\xfe\x90\x9c\x6d\x83\x19\xfc\x0d\x9a\xac\xc5\x83\xb4\x18\xc9\x24\x61\x01\xab\x8a\xb3\x55\x92\x38\x9d\x33\xc3\xc5\xb3\xb4\xa0\xe1\x12\xde\xb5\x50\x4a\xd6\x4b\x83\x36\x4d\x8b\x2e\xdf\x45\x8e\x0c\xe9\x69\xb9\x77\x98\xc2\x25\xb8\x26\xf1\x8e\xac\xa5\x7a\x29\x2b\xce\xa2\xde\x5a\xe3\x47\xcd\x99\xb2\xb2\x76\x67\x9b\xc1\x9b\xf3\x65\xe2\x5f\xb2\xca\xf9\x73\xe4\x4e\x21\x60\x51\x36\x83\x2c\xce\xe2\x3e\x3d\xeb\x35\x77\x71\x75\x05\x07\x69\x74\x12\x85\xd7\x54\xe5\x0a\x0c\x31\x34\xcd\xc1\x62\x8a\x16\x4d\x82\xc0\x04\xeb\xaf\xdf\x1f\xc1\x6b\x84\xb3\xf1\x08\xec\x3a\x94\xd7\x54\x14\x9a\x19\x15\x2c\xe7\xbd\xa9\xe2\xfa\xf8\xe8\xa8\x59\xbf\x38\x9d\x61\xa3\xb7\x13\x6a\x86\x94\x77\x24\x5a\x27\x34\xb6\x69\x2c\x95\xfa\x46\x0a\xef\x30\x21\xab\xa2\xd1\x4c\x5a\x09\x67\xb5\x8d\x3e\x1e\xb7\x1b\xce\x6f\xa2\x71\xdd\x64\x7e\xe4\x3d\x31\x65\xc7\xff\x94\xde\xe2\x8b\x18\x58\x74\xb2\xa2\xf5\xa9\xe8\x7a\x76\x92\x3b\x58\xb1\x80\xe5\x7c\x00\xf5\x4a\x06\x6b\x5d\x2c\xc0\x59\x1b\x81\x33\xf4\xfb\x05\xda\xfd\xc6\x84\x7b\x24\xef\xbc\x52\x3e\x63\xb4\x9c\xb7\x37\xb8\x00\x26\xe1\xdd\x3b\xd0\x74\x5e\xd7\xf0\x16\xde\x9f\xd1\xd7\xa0\xf9\x06\xaf\xff\x02\x00\x00\xff\xff\xb8\x6b\xa8\xa9\x7c\x04\x00\x00" func idtablestakingNodeRegister_many_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2859,11 +2730,11 @@ func idtablestakingNodeRegister_many_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/register_many_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x24, 0xe6, 0xd8, 0x4d, 0x7f, 0xa7, 0x90, 0xd1, 0xbd, 0x2e, 0x9d, 0x30, 0xb6, 0xc9, 0x30, 0x9a, 0xbd, 0x9b, 0x1, 0xae, 0xca, 0x83, 0xf9, 0xb4, 0x8b, 0xd9, 0x22, 0xa, 0x7c, 0x65, 0xe9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8e, 0xdd, 0xd, 0x23, 0x8a, 0x8f, 0xa2, 0x92, 0xf, 0x9e, 0xed, 0xb9, 0xf9, 0xfd, 0x52, 0x80, 0xb3, 0xbc, 0xcd, 0x89, 0xea, 0x8, 0x21, 0xee, 0x71, 0xbf, 0x3b, 0x72, 0x68, 0xa5, 0xda, 0x19}} return a, nil } -var _idtablestakingNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\x5f\x6b\xdb\x3e\x14\x7d\xf7\xa7\xb8\xe4\xa1\xd8\x90\x3a\x2f\x3f\x7e\x8c\x90\xb6\x94\x8c\x42\xd9\x58\x4b\xff\xac\xcf\xb2\x74\x1d\x6b\x55\x74\x8d\x74\x3d\xaf\x94\x7e\xf7\x21\x3b\x89\x2d\x9c\x75\x6b\x1e\x1c\xeb\xfe\x3b\x47\xe7\x1e\xeb\x6d\x4d\x8e\xe1\xca\x50\x7b\xfd\xf9\x41\x14\x06\xef\x59\x3c\x6b\xbb\x81\xd2\xd1\x16\x66\xd3\xc4\x2c\x19\xf5\x3c\xd0\x33\xda\x51\x69\x77\x1e\x2a\x1a\xbb\xd1\x85\xc1\xa8\x6a\x1c\x9b\x25\xc9\x62\x01\x0f\x95\xf6\xc0\x4e\x58\x2f\x24\x6b\xb2\x20\x1d\x0a\x46\x0f\x02\x2c\xb6\x60\x49\x21\x78\x76\x8d\x64\xa0\xe2\x07\x4a\x0e\x4d\xc2\x2a\x68\x6a\xd5\xd5\x71\x85\x50\x3b\xaa\xc9\xa3\x82\x6b\x85\x96\x35\xbf\x40\x47\x3a\x49\x46\x83\xd3\x04\x00\x40\xab\x25\xdc\xb3\xd3\x76\x33\xef\xce\x8e\x0c\x2e\xe1\xf1\xda\xf2\xa7\x3e\x60\x91\x5b\x72\xe1\xae\x97\x4a\x39\xf4\x3e\xae\x1f\xd2\x5f\xf0\x25\x4e\xf9\x5e\xa2\x49\x5c\x6c\xa9\xb1\xbc\x84\xc7\x2b\xfd\xeb\xff\xff\x92\x0c\x5e\x93\x2e\x6e\x90\xa1\xdc\xcb\x76\x87\xe5\x12\x44\xc3\x55\x1a\x69\x94\x3f\x69\xae\x94\x13\x6d\x06\x27\x07\x89\xf3\xef\xa2\x31\xdc\x0f\xa9\x1d\xd6\xc2\x61\x2a\xa4\xe4\xdd\x80\x7b\x26\x27\x36\x38\x87\xb5\xa8\x45\xa1\x8d\x66\x8d\x3e\x83\x93\x4b\x29\x03\x91\x03\x7e\xc7\x19\x4d\x99\x8f\x49\xc0\x19\x84\x51\xb9\xef\x87\xe4\x05\x39\x47\xed\xea\x43\xcc\xce\xd3\xb0\xed\x25\x2c\x76\x43\x16\x07\x80\x2e\x9d\x1d\xd0\xc3\xef\xe2\x02\x6a\x61\xb5\x4c\x67\x6b\x6a\x8c\x02\x4b\x0c\x3d\x28\x38\x2c\xd1\xa1\x95\x08\x4c\x70\xf5\xf5\xe6\x09\xba\xfe\x59\x36\xf0\x0f\x1a\x06\x8b\x04\x7b\xa2\x83\xd5\xe9\x11\x33\xe7\x42\xa9\x6f\xa4\xf0\x0e\x25\x39\x95\x46\xe8\xc1\x0e\x5a\xcd\xa3\x58\x6f\x89\xf0\x8c\xe3\x47\x9c\x31\x09\xfd\xa9\xa3\x33\x45\x74\x8c\x2b\xc7\xde\x19\xde\xe3\x1a\x0e\x0a\xfa\x35\x6d\xb7\x9a\x19\xd5\x12\x56\xa7\x93\xf5\xe5\xed\x6e\x2b\xe9\xde\x75\xfd\xff\xa0\xf9\x48\x3c\x5d\xbe\xb3\xeb\xa9\x8c\x41\xc3\x9b\x1a\x9d\x60\x72\xbb\xa5\x1f\xa9\xe8\x37\xb1\xb7\xc0\xbb\x45\x3b\xa3\xde\x0a\xae\x32\x38\x3b\x03\xab\xcd\xd8\x9b\xdd\xb7\x33\xe6\xe7\xc5\x4f\x4c\x57\xa7\xc3\xbe\xe7\xc0\xf4\x01\x8c\x78\x74\x6c\x9d\xb5\xa8\xf7\xd6\x97\xa3\xcf\xe6\x80\xad\xbd\x6f\x70\x75\xf2\xfa\x2e\xd8\x6d\x53\x18\x2d\xdf\xce\x63\x8f\x85\xdf\xbf\x72\x8c\x1a\xb3\x23\x5a\x44\xe4\xea\x80\xe7\xab\x29\x5c\x74\xaf\xf9\x24\x2d\xf8\x2f\xaa\xf5\x17\x39\x42\x68\xff\xf6\x06\x68\x3c\xc2\x6b\x94\x56\xe8\xd9\xd1\xcb\x08\x7d\xa8\x4f\xfa\xe7\xdb\xef\x00\x00\x00\xff\xff\xd7\xf7\xa2\x42\x73\x06\x00\x00" +var _idtablestakingNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\xdd\x6a\xdb\x4c\x10\xbd\xd7\x53\x0c\xbe\x08\x32\x38\xf6\xcd\xc7\x47\x11\x4e\x42\x48\x09\x84\x96\x26\xe4\xa7\xb9\x5e\xef\x8e\xad\x6d\xd6\x3b\x62\x76\x54\x35\x84\xbc\x7b\x59\x29\xb6\xb4\xc8\x0d\x89\x2e\x64\xef\xcc\x99\x1f\x9d\x73\xd6\x6e\x2b\x62\x81\x4b\x47\xcd\xd5\xd7\x7b\xb5\x72\x78\x27\xea\xc9\xfa\x0d\xac\x99\xb6\x30\x19\x27\x26\xd9\xa0\xe6\x9e\x9e\xd0\x0f\xa0\xed\xb9\x47\xd4\x7e\x63\x57\x0e\x13\xd4\x30\x36\xc9\xb2\xc5\x02\xee\x4b\x1b\x40\x58\xf9\xa0\xb4\x58\xf2\xa0\x19\x95\x60\x00\x05\x1e\x1b\xf0\x64\x10\x82\x70\xad\x05\x68\xf5\x0b\xb5\xc4\x22\xe5\x0d\xd4\x95\x69\x71\x52\x22\x54\x4c\x15\x05\x34\x70\x65\xd0\x8b\x95\x67\x68\x97\xce\xb2\x41\xe3\x3c\x03\x00\xb0\xa6\x80\x3b\x61\xeb\x37\xb3\xf6\xcc\xe4\xb0\x80\x87\x2b\x2f\x5f\xba\x80\x47\x69\x88\xe3\xb7\x9e\x1b\xc3\x18\x42\x8a\xef\xd3\xdf\xf0\x39\x4d\x85\x8e\xa2\x51\x5c\x6d\xa9\xf6\x52\xc0\xc3\xa5\xfd\xf3\xff\x7f\xd9\x14\x5e\xb2\x36\xee\x50\x60\xbd\xa3\xed\x16\xd7\x05\xa8\x5a\xca\x3c\xe1\x68\xfe\x68\xa5\x34\xac\x9a\xf8\x39\x53\x38\xda\xd3\x3c\xff\xa9\x6a\x27\x5d\xa3\x8a\xb1\x52\x8c\xb9\xd2\x5a\x0a\x38\xaf\xa5\x3c\xd7\x3a\xce\xdc\x8f\x6a\xd7\x43\xb7\x9e\x0f\xe7\xc1\x09\xc4\x8a\xf9\x8a\x98\xa9\x59\x7e\x7a\xf8\x69\x1e\x45\x2d\x60\x11\x84\x58\x6d\x70\xb1\x6f\xde\xa6\xa7\xfb\xc9\xf1\x39\x3b\x83\x4a\x79\xab\xf3\xc9\x05\xd5\xce\x80\x27\x81\x6e\x30\x30\xae\x91\xd1\x6b\x04\x21\xb8\xfc\x7e\xfd\x08\x6d\xfd\x64\xda\xef\x1e\xa9\x8a\x4e\x88\x2e\x44\x86\xe5\xf1\x01\xcf\xce\x95\x31\x3f\xc8\xe0\x2d\x6a\x62\x93\x27\xd3\xa3\xea\xd6\xcc\x92\x58\xa7\x7c\x7c\xa7\xf1\x03\x06\x18\x85\xfe\x55\xd1\x6a\x9f\x1c\x53\xe4\xd0\x22\xfd\xff\x14\x23\x91\xc1\x70\x41\xdb\xad\x15\x41\x53\xc0\xf2\x78\x24\xdd\xbc\x79\x53\x26\xdf\x99\xab\xfb\xed\x39\x1f\x90\x67\xd7\x07\x74\x1e\xd3\x17\xb9\xbb\xae\x90\x95\x10\xbf\x89\x7d\x00\xd1\x29\xb0\x93\xfe\x5d\xd0\x5d\x67\x8b\x1b\x25\xe5\x14\x4e\x4e\xc0\x5b\x37\xf4\x63\x7b\x35\xe2\x5e\x41\xfd\xc6\x7c\x79\xdc\xeb\x3b\x03\xa1\x4f\xf4\x3e\xd0\xd2\x59\xff\xb4\x3c\x7a\x79\xb7\xc5\x4d\xbd\x72\x56\xbf\x9e\xa6\x4e\x89\xcf\x07\xca\xe2\xe0\xd9\xa8\x50\x14\x6f\x50\x3e\xbe\x7a\xd2\xa0\xd7\xee\x15\xd0\x05\x84\x97\x24\x6d\x30\x08\xd3\xf3\xe0\x1a\xf4\xf8\xac\x7b\xbf\xfe\x0d\x00\x00\xff\xff\xbe\x03\xe3\x4b\xd0\x05\x00\x00" func idtablestakingNodeRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -2879,11 +2750,11 @@ func idtablestakingNodeRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0xcb, 0x2d, 0xbc, 0x35, 0x44, 0x32, 0x3e, 0x73, 0x50, 0x5f, 0xa1, 0x63, 0x18, 0x71, 0x7f, 0x5f, 0x26, 0xb5, 0x59, 0x98, 0x82, 0x74, 0xab, 0xa6, 0x15, 0x3c, 0x8f, 0xfa, 0x4d, 0x85, 0x69}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe5, 0xa, 0x1e, 0x16, 0x39, 0xfa, 0xf8, 0x1d, 0xc5, 0xfd, 0x7b, 0x8f, 0x39, 0xb0, 0x20, 0x83, 0x7f, 0x8d, 0x3c, 0x80, 0xbe, 0xca, 0x7f, 0xe0, 0x5e, 0x87, 0x8f, 0x19, 0x74, 0xd4, 0x3b, 0xfe}} return a, nil } -var _idtablestakingNodeRequest_unstakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xbf\x4e\xc3\x40\x0c\xc6\xf7\x3c\x85\x95\xa1\x4a\x96\x64\x41\x0c\x15\x50\xf1\x47\x95\x90\x10\x20\x4a\xd9\xdd\x8b\xd3\x1e\xbd\x9c\x83\xe3\xd0\x4a\xa8\xef\x8e\xae\x49\xab\x56\x05\x89\x01\x2f\x37\x9c\xfd\xf9\xfb\xd9\xb6\x55\xcd\xa2\x30\x76\xbc\xba\xbf\x7b\xc5\x99\xa3\x89\xe2\xd2\xfa\x39\x94\xc2\x15\xc4\xa7\x1f\x71\x14\x45\x2a\xe8\x1b\x34\x6a\xd9\x27\x58\x71\xeb\x75\x08\xd3\xb1\x5d\x9f\x9f\xa5\xf0\x15\x45\x00\x00\x79\x0e\x0f\x6c\xd0\xc1\x27\x8a\x0d\xe5\x50\xb2\x00\x82\x50\x49\x42\xde\x10\x28\x83\x2e\x08\x3c\x17\x04\x3c\x7b\x27\xa3\xdb\x42\x47\x0a\x8d\xe2\x92\xe4\x85\xca\x21\x60\xab\x8b\xe4\xd4\x45\xf6\xc8\x05\x3d\xd5\x24\xa8\x2c\x29\x0c\x7e\xc9\x98\x6c\x85\x3a\x47\xb5\x50\x8d\x42\x09\x1a\xa3\xbd\xee\x0d\x8b\xf0\xea\x0d\x5d\x4b\x29\x0c\xae\x8d\x09\x28\x01\x01\xfa\xc8\x73\x98\x6d\x73\xfe\xe2\x3c\x44\x43\xae\xcc\xf6\xf6\xe1\x12\x42\xb7\xac\x51\x16\x9c\x53\xd6\x69\x5d\xfc\x07\xd3\x55\x12\x16\x34\xfc\x61\x73\x07\x49\x93\xae\xef\x33\xea\x22\xdd\x5b\x0c\x31\x1a\x41\x8d\xde\x9a\x24\xbe\xe5\xd6\x15\xe0\x59\x77\xa0\x47\x98\x4d\x7f\x0c\x58\x54\xd6\xc7\x9d\xc6\xa6\x1b\x27\xad\xc9\xb4\x4a\x07\xc3\x3a\x66\xcf\x84\x3e\x5a\x6a\x74\xea\x7b\x91\xfd\xa5\x74\xef\x4e\x6c\x13\x7d\x07\x00\x00\xff\xff\x7d\xcc\x86\xf9\x84\x02\x00\x00" +var _idtablestakingNodeRequest_unstakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x41\x6b\xa3\x70\x10\xc5\xef\x7e\x8a\x87\x87\x45\x2f\x7a\x59\xf6\x20\xbb\x1b\xc2\x2e\x81\x42\x69\x4b\xd3\x7c\x80\xc9\xdf\x31\xda\xe8\x7f\xec\x38\x36\x81\x92\xef\x5e\x8c\x89\xb4\xa4\x85\x1e\xfa\x2e\x73\x70\xe6\xf1\x7b\xbe\x7f\xd5\xb4\xa2\x86\x45\x2d\xbb\xab\xff\x0f\xb4\xae\x79\x69\xb4\xad\xfc\x06\x85\x4a\x83\xf0\xf2\x43\x18\x04\x81\x29\xf9\x8e\x9c\x55\xe2\x23\x6a\xa4\xf7\x96\x61\xb5\xa8\xf6\xbf\x7e\xc6\x78\x09\x02\x00\x48\x53\x5c\x8b\xa3\x1a\xcf\xa4\xd5\x70\x8e\x42\x14\x04\xe5\x82\x95\xbd\x63\x98\xc0\x4a\x86\x97\x9c\x21\xeb\x47\x76\x76\x3c\xac\xd9\xd0\x19\x6d\x59\xef\xb9\xc8\x40\xbd\x95\xd1\x25\x45\x72\x23\x39\xdf\xb6\xac\x64\xa2\x31\x7e\x7c\xb2\xb1\x3c\x1a\x8d\x44\xad\x72\x4b\xca\x11\x39\x67\x19\xe6\xbd\x95\x73\xe7\x06\xf6\x81\x19\x27\xa5\x29\xd6\xa2\x2a\xbb\xaf\xa0\x0e\xea\xb8\x2e\x92\x89\x17\x7f\x30\xd8\x27\xa3\xc7\xef\xef\x80\xff\x1b\x0d\x4d\x64\x1f\x54\xf4\x66\x69\x69\xa2\xb4\xe1\x3b\xb2\x32\x9e\xd0\x06\xcd\x66\x68\xc9\x57\x2e\x0a\xff\x49\x5f\xe7\xf0\x62\xe7\x80\xef\xe2\x75\xa7\xd6\x29\x6f\x2a\x1f\xc6\xe3\x1f\x3b\x8c\x83\xf7\xec\x7a\xe3\x73\xb3\x97\xa9\x13\xe5\xa7\x9e\x3b\x5b\xf9\x93\xcd\xf4\x28\xc6\x39\xd9\x1d\x5e\x03\x00\x00\xff\xff\x47\x2f\x90\xdd\x6f\x02\x00\x00" func idtablestakingNodeRequest_unstakeCdcBytes() ([]byte, error) { return bindataRead( @@ -2899,11 +2770,11 @@ func idtablestakingNodeRequest_unstakeCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/request_unstake.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8, 0x6c, 0x5c, 0x95, 0xf8, 0x1, 0x61, 0xb4, 0x8e, 0xcb, 0x97, 0xb8, 0x11, 0xcb, 0x4e, 0xd9, 0xd7, 0x1c, 0xc2, 0xbe, 0x23, 0xfa, 0x38, 0x54, 0xcf, 0xc5, 0x78, 0xac, 0x14, 0x7c, 0x28, 0xe6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2a, 0x5f, 0x13, 0xcd, 0xff, 0x5a, 0x6d, 0xce, 0x6e, 0xca, 0xd9, 0xf1, 0x4f, 0xc1, 0x68, 0xea, 0xc2, 0xf4, 0x81, 0xd8, 0x17, 0xb8, 0xee, 0x39, 0xe7, 0x88, 0x7e, 0x11, 0xb1, 0xfe, 0xea, 0x37}} return a, nil } -var _idtablestakingNodeStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\xcf\x6e\xdb\x30\x0c\xc6\xef\x7a\x0a\xc2\x87\xc2\x3e\xcc\xbe\x0c\x3b\x04\xdd\x8a\xfd\x41\x80\x01\x45\x3b\x2c\x5d\x7b\x66\x64\x3a\xd1\xa2\x88\x06\x4d\x2f\x05\x86\xbe\xfb\x60\xcb\xf1\x14\x64\x1b\x8a\xa1\xba\xd8\x96\x3e\x7e\xe4\x8f\x94\xdd\xbe\x65\x51\x58\x7a\x3e\x7c\xfe\x74\x87\x6b\x4f\x2b\xc5\x9d\x0b\x1b\x68\x84\xf7\x90\x9d\x1f\x64\x26\x89\xb9\xe3\x1d\x85\x44\x3a\x7e\xff\x56\xf4\x61\xe3\xd6\x9e\x4e\x54\xe9\x5e\x66\x8c\x0a\x86\x0e\xad\x3a\x0e\x39\xee\xb9\x0f\xba\x80\x6f\x4b\xf7\xf8\xe6\x75\x01\x3f\x8d\x01\x00\xa8\x2a\xb8\x66\x8b\x1e\x7e\xa0\xb8\xa1\x12\x68\x58\x00\x41\xa8\x21\xa1\x60\x09\x94\x41\xb7\x04\x81\x6b\x02\x5e\x7f\x27\xab\x63\xa0\x27\x85\x4e\x71\x47\xf2\x95\x9a\x05\x60\xaf\xdb\xfc\x1c\xa8\xbc\xe1\x9a\x6e\x5b\x12\x54\x96\x02\x2e\xfe\xa2\x58\x8d\x46\x66\x36\x6e\x8e\xb8\x89\x77\xca\x56\x3e\x38\xdd\xd6\x82\x87\xc9\x32\x6e\xde\x63\xef\x35\x9a\xb4\x42\x2d\x0a\xe5\x68\xad\x4e\x06\x1f\x58\x84\x0f\xf7\xe8\x7b\x2a\xe0\xe2\xbd\xb5\x43\x3f\x86\x3e\xc0\xb4\xaa\x0a\xd6\xa3\xe6\x39\xf8\xc3\xea\xc8\x37\xe5\xdc\x03\x78\x0b\x43\xb6\xb2\x53\x16\xdc\x50\x19\xbd\x2e\x5f\xa2\x31\xef\xf2\x61\xbe\x8b\x3f\xdc\xa4\x44\xb4\x8a\x79\xbf\xa0\x6e\x8b\xb9\xc4\x61\x5d\x5d\x41\x8b\xc1\xd9\x3c\xfb\xc8\xbd\xaf\x21\xb0\x1e\x41\x4f\x30\xbb\xe9\x72\x62\xbd\x77\x21\x2b\xcc\x29\x67\x3a\x92\x7f\xa2\x3e\x73\x4e\x47\xa6\x6a\x32\xa9\xe6\x04\xe3\xf1\xff\x21\x2c\xaf\x6f\x1f\x60\x8c\xcf\xa2\xc1\x53\xa4\xa0\x47\xb2\xbd\x52\x32\xec\xd3\xd9\xc5\xb7\x1b\x8a\x05\x74\xf9\xe5\xab\x33\xe6\xf2\x30\xa1\xcc\x7f\x52\x7c\x16\xc7\x44\x4f\xe6\x57\x00\x00\x00\xff\xff\x2e\x56\x90\x70\xf0\x03\x00\x00" +var _idtablestakingNodeStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\xc1\x8e\xd3\x40\x0c\x86\xef\x79\x0a\x2b\x07\x94\x1c\x48\x2e\x88\x43\xb5\xb0\x5a\x81\x2a\x21\xad\x76\x11\x5d\xd8\xb3\x3b\x71\x9a\xa1\xd3\x71\xe4\x38\x74\x25\xb4\xef\x8e\x26\xd3\x84\x54\x29\x12\xa0\x9d\xcb\xb4\xb1\xfd\xe7\xff\x6c\xc7\x1e\x5a\x16\x85\xb5\xe3\xe3\xa7\x8f\x0f\xb8\x75\xb4\x51\xdc\x5b\xbf\x83\x5a\xf8\x00\xe9\x32\x90\x26\xb3\x9a\x07\xde\x93\x9f\xa5\x0e\xff\x7f\x67\xf4\x7e\x67\xb7\x8e\xce\xb2\xe6\xcf\xd2\x24\x51\x41\xdf\xa1\x51\xcb\x3e\xc3\x03\xf7\x5e\x57\xf0\x75\x6d\x9f\xde\xbe\xc9\xe1\x67\x92\x00\x00\x94\x25\xdc\xb2\x41\x07\x3f\x50\x6c\x70\x02\x35\x0b\x20\x08\xd5\x24\xe4\x0d\x81\x32\x68\x43\xe0\xb9\x22\xe0\xed\x77\x32\x3a\x14\x3a\x52\xe8\x14\xf7\x24\x5f\xa8\x5e\x01\xf6\xda\x64\x4b\xa0\xe2\x8e\x2b\xba\x6f\x49\x50\x59\x72\x78\xf5\x87\x8c\xcd\x20\x94\x4c\xc2\xf5\x88\x3b\xd3\x9e\xb3\x15\x8f\x56\x9b\x4a\xf0\x18\x84\x4e\xb2\x31\xf0\x0d\x7b\xa7\x51\xa8\x15\x6a\x51\x28\x43\x63\x74\x05\x37\xbd\x36\x37\xc6\x84\x26\x04\x78\x38\x9d\xb2\x84\x2d\x8b\xf0\xf1\x6f\x98\xc3\xe9\xc8\xd5\xc5\x04\x0e\xef\x20\xc8\x17\x51\xe3\xea\x25\xba\xf0\x3e\x0b\xc3\x5c\x5d\x58\x9b\x59\xd2\x46\x59\x70\x47\x9f\x51\x9b\x7c\xb2\x16\xce\xf5\x35\xb4\xe8\xad\xc9\xd2\x0f\xdc\xbb\x0a\x3c\xeb\x08\x78\x86\xd7\x9d\x36\x11\xab\x83\xf5\x69\x9e\x9c\xf3\xcd\xfb\x7f\x11\xf1\x1f\x86\x31\xf2\x94\x5d\xf4\x5c\x4e\xe2\x43\xf8\xff\xec\xaf\x6f\xef\x1f\x61\xa8\x1f\xbd\x3f\xc7\x8b\x9e\xc8\xf4\x4a\xe3\x7a\x2f\x27\x16\x7f\xdd\x51\xb4\xd0\x65\x57\xaf\x17\xc4\xc5\xf1\x04\x34\x7d\x34\xf1\xce\xa7\x57\x3d\xff\x0a\x00\x00\xff\xff\xc0\x27\x6e\x53\xdb\x03\x00\x00" func idtablestakingNodeStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2919,11 +2790,11 @@ func idtablestakingNodeStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0xd, 0x0, 0x9f, 0x56, 0x91, 0x6d, 0x32, 0x3d, 0xa3, 0x10, 0xcb, 0x41, 0x84, 0x26, 0x62, 0x39, 0xa9, 0xe, 0x6f, 0x2, 0xd0, 0xa3, 0xa5, 0xf5, 0x1a, 0x67, 0xe7, 0x57, 0x0, 0xb3, 0xca}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbc, 0xe9, 0x39, 0x6d, 0xfe, 0xbe, 0xb2, 0x52, 0x5b, 0x62, 0x2a, 0x2f, 0x58, 0x96, 0x49, 0xbc, 0x7a, 0x5c, 0x51, 0x35, 0x1f, 0x8a, 0x56, 0xc, 0x58, 0x29, 0x42, 0x94, 0xb7, 0x48, 0x66, 0x1a}} return a, nil } -var _idtablestakingNodeStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x4f\x6b\xea\x50\x10\xc5\xf7\xf9\x14\x87\x2c\x24\xd9\x24\x9b\xc7\x5b\xc8\x7b\x95\xfe\x41\x28\x94\xb6\xa8\xed\x7e\xbc\x99\x68\x6a\x72\x27\x4c\x26\x55\x28\x7e\xf7\x12\xa3\xa2\xd8\x42\x17\x9d\x4d\x02\x77\xe6\xcc\xf9\xcd\x4c\x51\xd5\xa2\x86\x71\x29\xeb\xfb\xbb\x19\xcd\x4b\x9e\x1a\xad\x0a\xbf\x40\xae\x52\x21\xbc\x7c\x08\x83\x20\x30\x25\xdf\x90\xb3\x42\x7c\x44\x95\xb4\xde\x86\x78\x19\x17\x9b\xbf\x7f\x62\x7c\x04\x01\x00\xa4\x29\x1e\xc4\x51\x89\x77\xd2\xa2\x2b\x47\x2e\x0a\x82\x72\xce\xca\xde\x31\x4c\x60\x4b\x86\x97\x8c\x21\xf3\x37\x76\xb6\x2b\x2c\xd9\xd0\x18\xad\x58\x27\x9c\x0f\x41\xad\x2d\xa3\x4b\x17\xc9\xa3\x64\xfc\x54\xb3\x92\x89\xc6\x18\x7c\x93\x31\xdd\x09\xf5\x8e\x6a\xe5\x9a\x94\x23\x72\xce\xf6\xba\x37\xa2\x2a\xeb\x57\x2a\x5b\x8e\x31\xb8\x76\xae\x43\xe9\x10\xb0\x8f\x34\xc5\x7c\x97\xf3\x13\xe7\x5d\x34\x5c\xe6\xc9\xd1\x3e\xfe\xa3\xeb\x96\x34\x26\x4a\x0b\x4e\x7a\xad\x7f\xbf\xc1\x74\x15\x75\x0b\x1a\x7e\xb1\xb9\x93\xa4\x69\xdf\xf7\x99\x6c\x19\x1f\x2d\x76\x31\x1a\xa1\x26\x5f\xb8\x28\xbc\x95\xb6\xcc\xe0\xc5\x0e\xa0\x67\x98\xcd\xfe\x18\x28\xab\x0a\x1f\xf6\x1a\xdb\x7e\x9c\xbc\x61\xd7\x1a\x9f\x0c\xeb\x9c\xbd\xff\x9b\xf0\x9a\x34\xe3\x6c\x26\x2b\xf6\xcd\xf1\x58\xfa\xef\x41\x6f\x1b\x7c\x06\x00\x00\xff\xff\x84\x76\x84\xb1\x87\x02\x00\x00" +var _idtablestakingNodeStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x41\x4b\xeb\x50\x10\x85\xf7\xf9\x15\x87\x2c\x1e\xc9\xa6\xd9\x3c\xde\x22\x3c\x2d\x45\x29\x08\xa2\xd2\xd6\x1f\x30\xbd\x99\x34\xb1\xc9\x9d\x30\x99\xd8\x82\xf4\xbf\x4b\x9a\x36\x28\x55\x70\xe1\x6c\xe6\xc2\x9d\x39\x7c\xe7\x9e\x5b\xd6\x8d\xa8\x61\x5e\xc9\xee\xee\x76\x45\xeb\x8a\x97\x46\xdb\xd2\x6f\x90\xab\xd4\x08\x2f\x2f\xc2\x20\x08\x4c\xc9\xb7\xe4\xac\x14\x1f\x51\x2d\x9d\xb7\x14\xcf\xf3\x72\xff\xef\x6f\x8c\xb7\x20\x00\x80\x24\xc1\xbd\x38\xaa\xf0\x4a\x5a\xf6\xeb\xc8\x45\x41\x50\xce\x59\xd9\x3b\x86\x09\xac\x60\x78\xc9\x18\xb2\x7e\x61\x67\xc7\xc5\x8a\x0d\xad\xd1\x96\x75\xc1\x79\x0a\xea\xac\x88\x2e\x29\x26\x0f\x92\xf1\x63\xc3\x4a\x26\x1a\xe3\xcf\x37\x13\xcb\xa3\xd0\x40\xd4\x28\x37\xa4\x1c\x91\x73\x96\x62\xd6\x59\x31\x73\xae\x67\xef\x99\x71\xaa\x24\xc1\x5a\x54\x65\xf7\x13\xd4\xbe\x5a\xae\xf2\xc9\xc8\x8b\x2b\xf4\xf2\x93\x41\xe3\xff\x6f\xc0\x5f\x47\x7d\x12\xe9\x17\x11\x7d\x18\x5a\x9a\x28\x6d\xf8\x89\xac\x88\x47\xb4\xbe\xa6\x53\x34\xe4\x4b\x17\x85\x37\xd2\x55\x19\xbc\xd8\xd9\xe0\x27\x7b\xed\x29\x75\xca\xea\xd2\x87\xf1\xf0\x62\x87\xa1\xf1\x9e\x5d\x67\x7c\x4e\xf6\xd2\xf5\x70\x5a\xf0\x8e\x34\xe3\x6c\x25\x5b\xf6\xed\xf8\x2f\x86\x3e\x2a\x1e\xde\x03\x00\x00\xff\xff\xa5\x19\x83\x3a\x72\x02\x00\x00" func idtablestakingNodeStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2939,11 +2810,11 @@ func idtablestakingNodeStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0x6d, 0xdc, 0x1e, 0x2c, 0x5b, 0xbb, 0xc7, 0xea, 0xf2, 0x93, 0xd9, 0x2f, 0x30, 0x7b, 0xb0, 0xc7, 0x6f, 0xd5, 0xba, 0x2a, 0x93, 0x4b, 0xa6, 0x82, 0x5d, 0x62, 0xe5, 0xe9, 0xc, 0x13, 0xed}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd2, 0xf6, 0xac, 0xe8, 0x52, 0xe, 0x2a, 0x37, 0x55, 0x82, 0x7a, 0x7d, 0x32, 0xf0, 0xa4, 0x7c, 0xf9, 0x3d, 0x94, 0xe0, 0x66, 0xac, 0xca, 0xa, 0xd4, 0xec, 0xc1, 0x58, 0x81, 0xd4, 0x14, 0xdf}} return a, nil } -var _idtablestakingNodeStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xcd\x8a\xdb\x50\x0c\x85\xf7\x7e\x8a\x83\x17\xc1\xde\xd8\x9b\xd2\x45\x68\x1b\xfa\x43\xa0\x50\x5a\x68\x92\xd9\x2b\xd7\x72\xe2\xc9\xf5\x95\x91\xe5\x49\x60\xc8\xbb\x0f\xfe\x49\x98\x10\x06\x66\x31\xda\xc8\x20\xe9\xf8\x7c\xd2\xad\xea\x46\xd4\xb0\xf4\x72\xfc\xfd\x6b\x4d\x5b\xcf\x2b\xa3\x43\x15\x76\x28\x55\x6a\xc4\xf7\x85\x38\x8a\x22\x53\x0a\x2d\x39\xab\x24\x24\x54\x4b\x17\x6c\x8e\xcd\xb2\x3a\x7d\xfe\x94\xe2\x39\x8a\x00\x20\xcf\xf1\x47\x1c\x79\x3c\x91\x56\xfd\x38\x4a\x51\x10\x94\x4b\x56\x0e\x8e\x61\x02\xdb\x33\x82\x14\x0c\xd9\x3e\xb2\xb3\x61\xd0\xb3\xa1\x35\x3a\xb0\xfe\xe7\x72\x0e\xea\x6c\x9f\xdc\xbb\xc8\xfe\x4a\xc1\xff\x1a\x56\x32\xd1\x14\xb3\x37\x3a\x56\x83\xd0\xe8\xa8\x51\x6e\x48\x39\x21\xe7\x6c\xd2\xfd\x21\xaa\x72\x7c\x20\xdf\x71\x8a\xd9\x77\xe7\x7a\x94\x1e\x01\x53\xe4\x39\xb6\x43\xcf\x7b\x9c\xf7\xd1\xb2\x2f\xb3\xab\x7d\x7c\x45\xff\xb7\xac\x35\x51\xda\x71\x36\x6a\x7d\xf9\x08\xa6\x6f\x49\x7f\xa0\x39\xf2\x49\x3b\x2f\xbd\x1c\xc7\x52\x7a\x75\xd3\xc7\x62\x81\x86\x42\xe5\x92\xf8\xa7\x74\xbe\x40\x10\xbb\x30\xdd\x10\xb5\xd3\xdd\xa9\xa8\xab\x10\x8f\x1a\xe7\x71\x73\x7c\x62\xd7\x19\xbf\xda\xcb\x2d\xe6\xf8\xb5\x09\x43\x2a\xd6\x72\xe0\xd0\x5e\xdf\xc5\x98\x2f\x7a\xe7\xe8\x25\x00\x00\xff\xff\xbf\x2c\x3f\x68\x72\x02\x00\x00" +var _idtablestakingNodeStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x41\x4b\xfb\x40\x10\xc5\xef\xf9\x14\x8f\x1c\xfe\x24\x97\xe6\xf2\xc7\x43\x50\x4b\x51\x0a\x82\x28\xd8\xf6\x03\x4c\x37\x93\x36\x36\xd9\x09\x93\x89\x2d\x48\xbf\xbb\xa4\xdb\x06\xa4\x08\x1e\x9c\xcb\x2c\xcc\xce\xe3\xf7\xf6\x6d\xd5\xb4\xa2\x86\x79\x2d\xfb\xa7\xc7\x25\xad\x6b\x5e\x18\xed\x2a\xbf\x41\xa9\xd2\x20\xbe\x1e\xc4\x51\x14\x99\x92\xef\xc8\x59\x25\x3e\xa1\x46\x7a\x6f\x39\x56\xf3\xea\x70\xf3\x3f\xc5\x67\x14\x01\x40\x96\xe1\x59\x1c\xd5\xf8\x20\xad\x86\x75\x94\xa2\x20\x28\x97\xac\xec\x1d\xc3\x04\xb6\x65\x78\x29\x18\xb2\x7e\x67\x67\xa7\xc5\x9a\x0d\x9d\xd1\x8e\xf5\x8d\xcb\x1c\xd4\xdb\x36\xb9\xa6\x98\xbc\x48\xc1\xaf\x2d\x2b\x99\x68\x8a\x7f\x3f\xdc\x58\x9c\x84\x02\x51\xab\xdc\x92\x72\x42\xce\x59\x8e\x59\x6f\xdb\x99\x73\x03\xfb\xc0\x8c\x73\x65\x19\xd6\xa2\x2a\xfb\xdf\xa0\x0e\xd5\x71\x5d\x4e\x46\x5e\xdc\x61\x90\x9f\x04\x8d\xdb\xbf\x80\xbf\x4f\x86\x24\x72\x64\x9d\x89\xd2\x86\xb3\xb2\x96\x7d\x18\xa5\x23\xc5\x50\xd3\x29\x5a\xf2\x95\x4b\xe2\x07\xe9\xeb\x02\x5e\xec\xe2\xe5\x9b\x93\xee\x1c\x30\x15\x4d\xe5\xe3\x34\x3c\xce\x31\x34\x3e\xb0\xeb\x8d\x2f\x21\x5e\x1b\x0c\xa7\x95\x3f\xb5\x62\x29\x3b\xf6\xdd\xf8\x05\x42\x1f\x15\x8f\x5f\x01\x00\x00\xff\xff\x41\xee\x38\xc1\x5d\x02\x00\x00" func idtablestakingNodeStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2959,11 +2830,11 @@ func idtablestakingNodeStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0xb1, 0xec, 0x45, 0x6a, 0xd6, 0xd6, 0x63, 0x55, 0x11, 0x3, 0xac, 0x13, 0xe4, 0x53, 0xd3, 0xb6, 0x8b, 0x82, 0xb3, 0x97, 0x39, 0x1d, 0x61, 0x2d, 0xb5, 0x64, 0x2d, 0xc3, 0x2f, 0xa9, 0x72}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc, 0x32, 0xcc, 0x35, 0xda, 0x79, 0xb7, 0xea, 0x10, 0x45, 0x27, 0x4a, 0x6a, 0xb2, 0xac, 0x2e, 0x68, 0x7c, 0x8, 0x81, 0x8c, 0x13, 0x4c, 0xc7, 0x50, 0x6c, 0xf8, 0x2c, 0x9f, 0x27, 0x22, 0x7c}} return a, nil } -var _idtablestakingNodeUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x51\xcd\x4a\xf3\x50\x10\xdd\xe7\x29\x0e\x59\x94\x64\x93\xee\xcb\xf7\x59\xaa\x22\x08\xa2\x62\xc5\xfd\xf4\x66\xd2\xc6\xde\xde\x09\x93\x89\x15\x4a\xdf\x5d\xf2\xd3\xd2\x52\x05\x17\xce\xea\xc2\x3d\x73\x7e\xe6\x94\x9b\x4a\xd4\x70\xe7\x65\x7b\x7f\xfb\x4a\x0b\xcf\x73\xa3\x75\x19\x96\x28\x54\x36\x88\x2f\x3f\xe2\x28\x8a\x4c\x29\xd4\xe4\xac\x94\x80\x5d\x14\x01\xc0\x78\x8c\x07\x71\xe4\xf1\x41\x5a\xb6\x70\x14\xa2\x20\x28\x17\xac\x1c\x1c\xc3\x04\xb6\x62\x04\xc9\x19\xb2\x78\x67\x67\xdd\xa2\x67\x43\x6d\xb4\x66\x7d\xe1\x62\x02\x6a\x6c\x95\x5c\xaa\x66\x8f\x92\xf3\x53\xc5\x4a\x26\x9a\x62\xf4\x03\x62\xde\x11\xf5\x8e\x2a\xe5\x8a\x94\x13\x72\xce\x06\xde\x6b\x51\x95\xed\x1b\xf9\x86\x53\x8c\x66\xce\x49\x13\x2c\xc5\xae\xc3\x0f\x29\x16\x1d\xe6\x37\xce\xdb\xa9\xd9\x17\xd9\xd1\x3e\xfe\xa3\x55\xcb\x6a\x13\xa5\x25\x67\x3d\xd7\xbf\xbf\xc8\x74\x95\xb4\x85\x4c\xbe\x69\xea\x04\x34\xef\x75\x9f\xc9\x56\xe9\xd1\x62\x3b\xd3\x29\x2a\x0a\xa5\x4b\xe2\x1b\x69\x7c\x8e\x20\x76\x08\x7a\x16\xb3\x1e\xca\xa7\x7c\x53\x86\xb8\xe7\xd8\xf7\xe7\xe4\x4f\x76\x8d\xf1\xc9\xb1\xce\xb3\x67\x4d\xe8\xde\x33\xef\x93\xc3\xe2\x3e\xfa\x0a\x00\x00\xff\xff\xa1\x88\x84\x20\x60\x02\x00\x00" +var _idtablestakingNodeUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x91\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x8f\x1c\x24\xb9\xa4\xf7\xa2\x96\xa2\x08\x82\xa8\x58\xff\xc0\x74\x33\x69\x62\xb7\x3b\x61\x32\x6b\x85\xd2\xff\x2e\x49\xda\xa2\x54\xc1\x83\x73\xd9\x85\x7d\x33\xfb\xbd\x79\xcd\xa6\x15\x35\xdc\x79\xd9\xde\xdf\xbe\xd2\xd2\xf3\xc2\x68\xdd\x84\x15\x2a\x95\x0d\xd2\xf3\x87\x34\x49\x12\x53\x0a\x1d\x39\x6b\x24\x60\x97\x24\x00\x30\x99\xe0\x41\x1c\x79\xbc\x93\x36\xbd\x1c\x95\x28\x08\xca\x15\x2b\x07\xc7\x30\x81\xd5\x8c\x20\x25\x43\x96\x6f\xec\x6c\x68\xf4\x6c\xe8\x8c\xd6\xac\x2f\x5c\x4d\x41\xd1\xea\xec\xfc\xd7\xe2\x51\x4a\x7e\x6a\x59\xc9\x44\x73\x5c\xfc\xa2\x58\x0c\x83\x46\xa2\x56\xb9\x25\xe5\x8c\x9c\xb3\x29\xe6\xd1\xea\xb9\x73\x12\x83\xe5\xd8\x0d\x82\x03\xf6\x52\x54\x65\xfb\x17\xd4\xbe\x3a\xf6\x55\x71\xe2\xc5\x15\xfa\xf1\xc5\x38\xe3\xf2\x3f\xe0\xaf\xb3\x7e\xf3\xd3\x1f\x22\xf9\x22\x5a\x98\x28\xad\xf8\x99\xac\xce\x4f\x68\x7d\xcd\x66\x68\x29\x34\x2e\x4b\x6f\x24\xfa\x12\x41\xec\x68\xf0\x9b\xbd\xee\x90\x32\x95\x9b\x26\xa4\xf9\xb8\xb1\xfd\x78\xf0\x07\xbb\x68\x7c\x4c\xf6\xdc\x75\x11\xc3\x70\x9f\x7b\x9f\x9d\x5a\xf7\x9f\x01\x00\x00\xff\xff\x3f\xfc\xd6\x90\x4b\x02\x00\x00" func idtablestakingNodeUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -2979,11 +2850,11 @@ func idtablestakingNodeUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0x1c, 0xa5, 0xdd, 0xf7, 0xea, 0x9b, 0x33, 0xd5, 0xdd, 0xc3, 0x4a, 0x31, 0x12, 0x57, 0x68, 0x42, 0x35, 0x8c, 0x64, 0xa7, 0x47, 0x11, 0x93, 0x34, 0xbe, 0x86, 0xb7, 0x1b, 0x2, 0x80, 0x5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x43, 0x11, 0xa7, 0x24, 0xb8, 0xa4, 0xd9, 0x43, 0xd2, 0xb0, 0xd6, 0x87, 0x98, 0xb4, 0x70, 0x3f, 0x7f, 0xb3, 0x13, 0x38, 0x85, 0x97, 0x9b, 0x47, 0xfa, 0xca, 0x98, 0x30, 0xfa, 0x7d, 0xf8, 0x62}} return a, nil } -var _idtablestakingNodeUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xc1\x4a\xf3\x50\x10\x85\xf7\x79\x8a\x43\x16\x25\xd9\x24\xfb\xf2\xff\x96\xaa\x08\x82\x54\x31\xe2\x7e\x7a\x33\x69\x63\xd3\x3b\x61\x32\x31\x82\xf4\xdd\x25\x4d\x5a\x5a\xaa\xe0\xc2\xd9\xde\xb9\xdf\x9c\x33\x73\xca\x6d\x2d\x6a\xb8\xab\xa4\xbb\xbf\x7d\xa1\x65\xc5\x99\xd1\xa6\xf4\x2b\x14\x2a\x5b\x84\x97\x0f\x61\x10\x98\x92\x6f\xc8\x59\x29\x3e\xf2\xdc\xcd\xf3\x5c\xb9\x69\xa6\xc8\x4c\x4b\xbf\x8a\xf1\x19\x04\x00\x90\xa6\x78\x10\x47\x15\xde\x49\xcb\x9e\x80\x42\x14\x04\xe5\x82\x95\xbd\x63\x98\xc0\xd6\x0c\x2f\x39\x43\x96\x6f\xec\x6c\xff\xb1\x62\x43\x63\xb4\x61\x7d\xe6\x62\x0a\x6a\x6d\x1d\x5d\x0a\x49\x16\x92\xf3\x63\xcd\x4a\x26\x1a\x63\xf2\x43\x47\xb6\x07\x0d\x8a\x6a\xe5\x9a\x94\x23\x72\xce\x46\xee\xb5\xa8\x4a\xf7\x4a\x55\xcb\x31\x26\x73\xe7\xa4\xf5\xd6\x5b\xc0\x58\x69\x8a\xe5\xbe\xe7\x37\xca\xfb\x6a\xb8\x2a\x92\xa3\x7c\xfc\x47\x3f\x2d\x69\x4c\x94\x56\x9c\x0c\xac\x7f\x7f\xe1\xe9\x2a\xea\x6f\x34\xfd\xe6\x78\x27\x4d\xd9\x30\xf7\x89\x6c\x1d\x1f\x25\xf6\x35\x9b\xa1\x26\x5f\xba\x28\xbc\x91\xb6\xca\xe1\xc5\x0e\x46\xcf\x6c\x36\x63\x1e\x28\xdf\x96\x3e\x1c\x18\xbb\x61\x9d\xfc\xc1\xae\x35\x3e\x59\xd6\xb9\xf7\xa4\xad\x73\x32\x5e\xb0\x75\xa2\x3d\x64\x4c\xca\x49\x68\x0e\xbc\x5d\xf0\x15\x00\x00\xff\xff\x85\x75\xea\x7b\x8a\x02\x00\x00" +var _idtablestakingNodeUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xc1\x6a\xb3\x50\x10\x85\xf7\x3e\xc5\xc1\xc5\x8f\x6e\x74\x2f\x7f\x1b\x42\x4b\xa1\x50\xd2\x52\xfb\x02\x93\xeb\x18\x6d\xcc\x1d\x19\xc7\x5a\x28\x79\xf7\x62\x34\x21\x25\x2d\x74\xd1\xd9\x3a\x7e\x7c\xe7\x9e\xa9\x77\xad\xa8\xe1\xae\x91\xe1\xfe\xf6\x85\xd6\x0d\xe7\x46\xdb\xda\x6f\x50\xaa\xec\x10\x5e\x7e\x08\x83\xc0\x94\x7c\x47\xce\x6a\xf1\x91\xe7\x61\x59\x14\xca\x5d\x97\x21\x37\xad\xfd\x26\xc6\x47\x10\x00\x40\x9a\xe2\x41\x1c\x35\x78\x23\xad\x47\x02\x4a\x51\x10\x94\x4b\x56\xf6\x8e\x61\x02\xab\x18\x5e\x0a\x86\xac\x5f\xd9\xd9\xe1\xc7\x86\x0d\x9d\xd1\x96\xf5\x99\xcb\x0c\xd4\x5b\x15\x5d\x8a\x24\x2b\x29\xf8\xb1\x65\x25\x13\x8d\xf1\xef\x87\x8d\xfc\x00\x9a\x8c\x5a\xe5\x96\x94\x23\x72\xce\x32\x2c\x7b\xab\x96\xce\x49\xef\x6d\x74\xc6\x3c\x69\x8a\xb5\xa8\xca\xf0\x1b\xd5\x71\x3a\x6e\xca\xe4\xe4\x8b\x2b\x8c\xf8\x64\x62\xfc\xff\x0b\xf9\xeb\x68\x2c\x23\xfb\xa6\xa5\xb3\xa5\xdc\x44\x69\xc3\x4f\x64\x55\x7c\x52\x1b\x67\xb1\x40\x4b\xbe\x76\x51\x78\x23\x7d\x53\xc0\x8b\x1d\x03\x7e\x89\xd7\xcd\xc5\x53\xb1\xab\x7d\x38\x31\xf6\xd3\xbb\xf1\x3b\xbb\xde\xf8\x58\xec\x65\xe8\xa4\x6f\x0b\x32\x5e\xb1\x0d\xa2\x23\x65\xbe\x89\xb3\xf3\x88\x83\x99\xb8\xff\x0c\x00\x00\xff\xff\x06\xb1\xc3\xe1\x74\x02\x00\x00" func idtablestakingNodeUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -2999,11 +2870,11 @@ func idtablestakingNodeUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xd2, 0x71, 0xf6, 0xe3, 0x80, 0x71, 0xc6, 0xeb, 0x99, 0xb9, 0x5f, 0x5b, 0x7b, 0x58, 0x5a, 0x60, 0xeb, 0x99, 0x8d, 0x8e, 0x29, 0xae, 0x92, 0xd0, 0x8c, 0x1, 0xe5, 0x56, 0xf7, 0x10, 0xee}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x39, 0x92, 0x5f, 0x3b, 0xc7, 0xb1, 0x68, 0x85, 0x2c, 0xec, 0xce, 0x84, 0xb1, 0x54, 0xff, 0xc5, 0x59, 0x7f, 0x86, 0x6f, 0x40, 0xab, 0xb2, 0xc8, 0x30, 0xa3, 0xba, 0xdc, 0x23, 0xe9, 0xae, 0x9f}} return a, nil } -var _idtablestakingNodeWithdraw_reward_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x4f\x6b\xdb\x40\x10\xc5\xef\xfb\x29\x06\x1d\x8c\x74\xa8\x74\x29\x3d\x98\xb4\xa1\x7f\x30\x14\x42\x53\xe2\x34\x3d\x8f\x57\xa3\x78\xeb\xf5\x8e\x18\x8d\xaa\x40\xc9\x77\x2f\x5a\xfd\x41\xae\x6b\x28\x25\x73\x11\x62\xdf\xbc\x79\x3f\xcd\xca\x1d\x6b\x16\x85\x8d\xe7\xee\xf3\xa7\x7b\xdc\x79\xda\x2a\x1e\x5c\x78\x84\x4a\xf8\x08\xc9\xf9\x41\x62\x16\x3d\xf7\x7c\xa0\xb0\x90\xc6\xf7\xc4\x18\xa3\x82\xa1\x41\xab\x8e\x43\x8a\x47\x6e\x83\xae\xe1\xdb\xc6\x3d\xbd\x79\x9d\xc1\x2f\x63\x00\x00\x8a\x02\x6e\xd8\xa2\x87\x9f\x28\xae\x1f\x00\x15\x0b\x20\x08\x55\x24\x14\x2c\x81\x32\xe8\x9e\x20\x70\x49\xc0\xbb\x1f\x64\x35\x36\x7a\x52\x68\x14\x0f\x24\x77\x54\xad\x01\x5b\xdd\xa7\xe7\x39\xf3\x2f\x5c\xd2\x6d\x4d\x82\xca\x92\xc1\xea\x82\x62\x1b\x8d\xcc\x6c\x5c\x4d\x14\xd1\x7b\x35\x43\xe5\x0f\xd8\x7a\x1d\x74\xb5\x50\x8d\x42\x29\x5a\xab\xe3\xfc\x0f\x2c\xc2\xdd\x03\xfa\x96\x32\x58\xbd\xb7\xb6\x47\xee\x51\x61\xac\xa2\x80\x5d\xd4\xfc\x0b\x61\x5f\x0d\xf9\x2a\x9f\x31\xe1\x2d\xf4\xd3\xf2\x46\x59\xf0\x91\xf2\xc1\xeb\xea\x25\xd8\xdf\xa5\xfd\xfe\xd6\x7f\xb9\x03\x0b\xd1\x76\x98\xfb\x15\x75\x9f\xcd\x11\xfb\xba\xbe\x86\x1a\x83\xb3\x69\xf2\x91\x5b\x5f\x42\x60\x9d\x40\x4f\x30\x9b\xf1\x5a\x61\x79\x74\x21\xc9\xcc\x29\xe7\xf2\xab\x5f\x40\xfd\x73\x15\x53\xec\x62\xd4\x15\xb3\x47\x3c\xfe\xbf\x94\x9b\x9b\xdb\xef\x10\xfb\x93\xc1\xe0\x79\x08\x4a\x4f\x64\x5b\xa5\xc5\x3e\xcf\x62\xe7\x25\xd5\xdc\x38\x1d\x63\x5d\xbd\x3a\x5d\x60\xde\x39\xdd\x97\x82\xdd\x1d\x75\x28\x25\x95\xb1\xaf\x99\x7f\x8e\xe1\x99\x4d\x53\x9f\xcd\xef\x00\x00\x00\xff\xff\x59\x46\xe5\x62\x9a\x03\x00\x00" +var _idtablestakingNodeWithdraw_reward_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x4f\x8b\x9c\x40\x10\xc5\xef\xfd\x29\x0a\x0f\x8b\x1e\xa2\x97\x90\x83\x6c\xb2\x2c\x09\x03\x81\x25\x1b\x76\x36\xc9\xb9\xa6\xbb\x5c\x3b\xa3\x5d\x52\x96\x71\x21\xec\x77\x0f\xea\x28\xce\x9f\x40\x08\x5b\x17\x91\xae\xf7\xfa\xfd\xba\xca\xd7\x0d\x8b\xc2\xa6\xe2\xfe\xf3\xa7\x47\xdc\x55\xb4\x55\xdc\xfb\xf0\x04\x85\x70\x0d\xd1\xf9\x41\x64\x56\x9a\x47\xde\x53\x58\xb5\x8e\xff\x91\x31\x46\x05\x43\x8b\x56\x3d\x87\x18\x6b\xee\x82\xe6\xf0\x6d\xe3\x9f\xdf\xbd\x4d\xe0\xb7\x31\x00\x00\x59\x06\x77\x6c\xb1\x82\x5f\x28\x7e\xb8\x00\x0a\x16\x40\x10\x2a\x48\x28\x58\x02\x65\xd0\x92\x20\xb0\x23\xe0\xdd\x4f\xb2\x3a\x0a\x2b\x52\x68\x15\xf7\x24\x0f\x54\xe4\x80\x9d\x96\xf1\x79\xce\xf4\x0b\x3b\xba\x6f\x48\x50\x59\x12\xb8\xfa\x4b\xc7\x76\x34\x32\x8b\x71\x31\x53\x8c\xde\x57\x0b\x54\xfa\x1d\xbb\x4a\xa7\xbe\x46\xa8\x41\xa1\x18\xad\xd5\x1c\x6e\x3b\x2d\x6f\xad\x1d\x18\x07\x36\x38\x54\x96\xc1\x8e\x45\xb8\xff\x17\xa4\xa1\x5a\xaa\x8a\x74\xe1\x82\xf7\x30\xd8\xa7\x93\xc7\xf5\x6b\x40\x7e\x88\x87\x41\xe5\x17\x86\xbd\x6a\xda\x2a\x0b\x3e\xd1\x57\xd4\x32\x59\xa2\x0d\x75\x73\x03\x0d\x06\x6f\xe3\xe8\x23\x77\x95\x83\xc0\x3a\x03\x1e\xe1\xb5\x87\xfd\x41\x57\xfb\x10\x25\xe6\x98\x6f\xfd\xbc\x27\x88\xa7\x6f\x3d\xc7\xcd\xda\x29\x52\xb6\x68\xc7\xe3\xff\x4b\xb7\xb9\xbb\xff\x01\xa3\x7e\x8e\xf6\x32\x7d\xe8\x99\x6c\xa7\x34\x2f\xe7\xc5\xc0\xa9\xa3\x86\x5b\xaf\x87\x60\xd7\x6f\x8e\x47\x96\xf6\x5e\x4b\x27\xd8\x3f\x50\x8f\xe2\xc8\x8d\xba\x76\xd9\xff\xe9\x9b\x2c\xf7\xbe\xfc\x09\x00\x00\xff\xff\x24\x3f\x85\x0a\x7d\x03\x00\x00" func idtablestakingNodeWithdraw_reward_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3019,11 +2890,11 @@ func idtablestakingNodeWithdraw_reward_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/withdraw_reward_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x52, 0xeb, 0x3d, 0x25, 0xa1, 0xa5, 0x3e, 0xc5, 0x3, 0xd5, 0xde, 0x8f, 0xc3, 0xa1, 0x8, 0xb9, 0x75, 0x58, 0x54, 0x20, 0xdd, 0xea, 0x4d, 0x82, 0x1d, 0xd1, 0x39, 0x18, 0xbd, 0x95, 0x4c, 0xe7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8c, 0x91, 0x3a, 0xb2, 0xf2, 0x3b, 0xef, 0xc5, 0xb2, 0xbf, 0x73, 0x31, 0xe4, 0x5f, 0x6c, 0xd0, 0x62, 0xb3, 0xcf, 0xeb, 0xa1, 0xef, 0xe9, 0x6a, 0x50, 0x75, 0x27, 0x2a, 0xb, 0x11, 0xff, 0xaa}} return a, nil } -var _idtablestakingNodeWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x4f\x6b\xdb\x40\x10\xc5\xef\xfb\x29\x06\x1d\x8c\x74\xa8\x74\x29\x3d\x98\xb4\xa1\x7f\x30\x14\x42\x53\xea\x24\x3d\x8f\x57\xa3\x78\xeb\xf5\x8e\x18\x8d\xaa\x40\xc9\x77\x2f\x5a\xfd\x41\xae\x6b\x28\x25\x73\x31\xd6\xbe\x79\xf3\x7e\x9a\x95\x3b\xd6\x2c\x0a\x1b\xcf\xdd\xe7\x4f\x77\xb8\xf3\xb4\x55\x3c\xb8\xf0\x08\x95\xf0\x11\x92\xf3\x83\xc4\x2c\x7a\xee\xf8\x40\x61\x21\x8d\xff\x13\x63\x8c\x0a\x86\x06\xad\x3a\x0e\x29\x1e\xb9\x0d\xba\x86\xfb\x8d\x7b\x7a\xf3\x3a\x83\x5f\xc6\x00\x00\x14\x05\xdc\xb0\x45\x0f\x3f\x51\x5c\x3f\x00\x2a\x16\x40\x10\xaa\x48\x28\x58\x02\x65\xd0\x3d\x41\xe0\x92\x80\x77\x3f\xc8\x6a\x6c\xf4\xa4\xd0\x28\x1e\x48\xbe\x51\xb5\x06\x6c\x75\x9f\x9e\xe7\xcc\xbf\x70\x49\xb7\x35\x09\x2a\x4b\x06\xab\x0b\x8a\x6d\x34\x32\xb3\x71\x35\x51\x44\xef\xd5\x0c\x95\x3f\x60\xeb\x75\xd0\xd5\x42\x35\x0a\xa5\x68\xad\x8e\xf3\x3f\xb0\x08\x77\x0f\xe8\x5b\xca\x60\xf5\xde\xda\x1e\xb9\x47\x85\xb1\x8a\x02\x76\x51\xf3\x2f\x84\x7d\x35\xe4\xab\x7c\xc6\x84\xb7\xd0\x4f\xcb\x1b\x65\xc1\x47\xca\x07\xaf\xab\x97\x60\x7f\x97\xf6\xfb\x5b\xff\xe5\x0e\x2c\x44\xdb\x61\xee\x57\xd4\x7d\x36\x47\xec\xeb\xfa\x1a\x6a\x0c\xce\xa6\xc9\x47\x6e\x7d\x09\x81\x75\x02\x3d\xc1\x6c\xc6\x6b\x85\xe5\xd1\x85\x24\x33\xa7\x9c\xcb\xb7\x7e\x01\xf5\xcf\x55\x4c\xb1\x8b\x51\x57\xcc\x1e\xf1\xf8\xff\x52\x6e\x6e\x6e\xbf\x43\xec\x4f\x06\x83\xe7\x21\x28\x3d\x91\x6d\x95\x16\xfb\x3c\x8b\x9d\x97\x54\x73\xe3\x74\x8c\x75\xf5\xea\x74\x81\x79\xe7\x74\x5f\x0a\x76\xf7\x21\x3e\x2b\x63\x5f\x33\x7f\x1c\xc3\x6f\x36\x4d\x7d\x36\xbf\x03\x00\x00\xff\xff\x34\xcb\x1a\xc9\x9a\x03\x00\x00" +var _idtablestakingNodeWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x4f\x8b\x9c\x40\x10\xc5\xef\xfd\x29\x0a\x0f\x8b\x1e\xa2\x97\x90\x83\x6c\xb2\x2c\x09\x03\x81\x25\x1b\x32\xbb\xc9\xb9\xa6\x2d\xd7\xce\x68\x97\x94\x65\x5c\x08\xfb\xdd\x83\xed\x28\xce\x9f\x40\x08\xdb\x97\x46\xbb\xde\xeb\xf7\xeb\x2a\xd7\xb4\x2c\x0a\x9b\x9a\x87\xcf\x9f\x1e\x70\x57\xd3\x56\x71\xef\xfc\x13\x94\xc2\x0d\x44\xe7\x07\x91\x59\x69\x1e\x78\x4f\x7e\x55\x1a\xbe\x23\x63\x8c\x0a\xfa\x0e\xad\x3a\xf6\x31\x36\xdc\x7b\xcd\xe1\x71\xe3\x9e\xdf\xbd\x4d\xe0\xb7\x31\x00\x00\x59\x06\x77\x6c\xb1\x86\x5f\x28\x6e\xbc\x00\x4a\x16\x40\x10\x2a\x49\xc8\x5b\x02\x65\xd0\x8a\xc0\x73\x41\xc0\xbb\x9f\x64\x35\x08\x6b\x52\xe8\x14\xf7\x24\xdf\xa8\xcc\x01\x7b\xad\xe2\xf3\x9c\xe9\x17\x2e\xe8\xbe\x25\x41\x65\x49\xe0\xea\x2f\x15\xdb\x60\x64\x16\xe3\x72\xa6\x08\xde\x57\x0b\x54\xfa\x1d\xfb\x5a\xa7\xba\x56\xa8\x45\xa1\x18\xad\xd5\x1c\x6e\x7b\xad\x6e\xad\x1d\x19\x47\x36\x38\xac\x2c\x83\x1d\x8b\xf0\xf0\x2f\x48\xe3\xea\xa8\x2e\xd3\x85\x0b\xde\xc3\x68\x9f\x4e\x1e\xd7\xaf\x01\xf9\x21\x1e\x1b\x95\x5f\x68\xf6\xaa\x68\xab\x2c\xf8\x44\x5f\x51\xab\x64\x89\x36\xae\x9b\x1b\x68\xd1\x3b\x1b\x47\x1f\xb9\xaf\x0b\xf0\xac\x33\xe0\x11\x5e\x77\x98\x1f\x2c\x1a\xe7\xa3\xc4\x1c\xf3\xad\x9f\xf7\x04\xf1\xf4\xad\xe7\xb8\x59\x37\x45\xca\x16\x6d\x38\xfe\xbf\x74\x9b\xbb\xfb\x1f\x10\xf4\x73\xb4\x97\x69\xa3\x67\xb2\xbd\xd2\x3c\x9c\x17\x03\xa7\x05\xb5\xdc\x39\x3d\x04\xbb\x7e\x73\xdc\xb2\x74\x70\x5a\x15\x82\xc3\xa3\x0f\xff\x8a\xa0\xeb\x96\xf9\x9f\xf6\x64\xb9\xf7\xe5\x4f\x00\x00\x00\xff\xff\x49\xb2\x7a\xa1\x7d\x03\x00\x00" func idtablestakingNodeWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3039,7 +2910,7 @@ func idtablestakingNodeWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x77, 0xc9, 0x29, 0x2b, 0x34, 0x2, 0xd7, 0x10, 0x4e, 0x68, 0xa9, 0x5e, 0x1e, 0x2d, 0xc5, 0xd9, 0xdb, 0xca, 0xd0, 0x10, 0xb4, 0x22, 0xef, 0xd4, 0xa5, 0x9c, 0xe5, 0xcd, 0xe, 0xb5, 0x16, 0xa8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0xec, 0xfc, 0xbe, 0xe6, 0x2b, 0x8f, 0x32, 0x31, 0x86, 0xda, 0x2d, 0xc5, 0xa9, 0x7e, 0x82, 0xa, 0x62, 0x4, 0xb6, 0xd6, 0x65, 0xb3, 0x74, 0x20, 0x68, 0x70, 0x6c, 0x9a, 0x81, 0xb5, 0x3f}} return a, nil } @@ -3243,7 +3114,7 @@ func idtablestakingScriptsGet_node_infoCdc() (*asset, error) { return a, nil } -var _idtablestakingScriptsGet_node_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcd\x6a\xeb\x30\x10\x85\xf7\x7a\x8a\x83\x17\x17\x7b\xe3\xec\xc3\x6d\x43\x68\x28\x64\x53\x02\xcd\x0b\x8c\xe5\x71\x32\xad\xa2\x31\xd2\x98\x2c\x42\xde\xbd\x38\xa2\xb4\xd0\x1f\xaa\x95\x60\x46\xe7\x3b\xfa\xe4\x34\x6a\x32\x3c\x06\x3d\x6f\x37\x7b\xea\x02\x3f\x1b\xbd\x4a\x3c\x60\x48\x7a\x42\xf5\x75\x50\x39\xb7\x58\x60\x7f\x94\x8c\xec\x93\x8c\x86\x03\x5b\x06\x85\x00\x3b\x32\x24\x0e\x0a\xea\x74\x32\x10\xa2\xf6\x0c\x8a\x3d\x12\xdb\x94\x62\x86\x98\x73\xe4\x3d\xe7\x5c\x53\x08\x0d\x86\x29\xe2\x44\x12\x6b\xea\xfb\xc4\x39\x2f\xb1\x2e\x97\x66\xf9\x4d\xa7\xf6\x49\x7b\xde\xce\x80\x8b\x73\x00\x10\xd8\x6e\x8c\x79\xce\x09\x77\x73\x95\xb5\xf7\x3a\x45\x7b\x4f\x6c\x6e\x8b\xf3\x69\x3d\x8d\xd4\x49\x10\x13\xce\x6d\xa7\x29\xe9\xf9\xff\xbf\xcb\x0f\x98\x12\xb9\x9b\xba\x20\xfe\x7a\x5f\xff\x61\x6b\x47\x76\xfc\xa0\xad\x56\x18\x29\x8a\xaf\xab\x07\x9d\x42\x8f\xa8\x86\xc2\x44\xe2\x81\x13\x47\xcf\x30\x2d\x8a\x72\xe9\xaf\xdd\x0b\x7b\xab\x9a\xf2\xb9\xe2\xec\x37\x0d\xf5\xfc\x78\xbb\x59\x7e\x72\xd0\x4a\xdf\xb8\xab\x7b\x0b\x00\x00\xff\xff\x31\x19\xe4\x4c\xd7\x01\x00\x00" +var _idtablestakingScriptsGet_node_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcf\x6a\x02\x31\x10\xc6\xef\x79\x8a\x8f\x3d\x94\xdd\x8b\xde\xa5\xad\x88\x52\xf0\x52\x84\xfa\x02\xb3\xc9\xac\xa6\xcd\x66\x96\x64\x16\x29\xe2\xbb\x97\x35\x94\x0a\xfd\x43\x73\x0a\x99\x2f\xf3\x9b\xf9\xf9\x7e\x90\xa4\x78\x0a\x72\xda\x6e\xf6\xd4\x06\x7e\x51\x7a\xf3\xf1\x80\x2e\x49\x8f\xea\x7b\xa1\x32\x66\x3e\xc7\xfe\xe8\x33\xb2\x4d\x7e\x50\x1c\x58\x33\x28\x04\xe8\x91\xe1\x63\x27\xa0\x56\x46\x05\x21\x8a\x63\x50\x74\x48\xac\x63\x8a\x19\x5e\x8d\x21\x6b\x39\xe7\x9a\x42\x68\xd0\x8d\x11\x3d\xf9\x58\x93\x73\x89\x73\x5e\x60\x55\x2e\xcd\xe2\x87\x99\x66\xcf\xe2\x78\x3b\x01\xce\xc6\x00\x40\x60\xbd\x32\xa6\x3a\x27\x3c\x4c\xa3\xac\xac\x95\x31\xea\x67\xc7\xe6\x1a\x9c\xce\xec\xc0\xba\xa6\x81\x5a\x1f\xbc\xbe\xdf\xdf\x9d\x7f\x01\x94\x66\xbb\xb1\x0d\xde\x5e\x1e\xeb\x7f\xa4\x76\xa4\xc7\x1b\x4e\x2b\x29\xc9\xa9\xfe\x7a\x59\x2e\x31\x50\xf4\xb6\xae\xd6\x32\x06\x87\x28\x8a\x12\x42\xe2\x8e\x13\x47\xcb\x50\x29\xba\x72\xd9\x45\xda\x57\xb6\x5a\x35\x65\xd1\xe2\xef\x2f\x25\xf5\xf4\x79\xbb\x59\xdc\xf8\x98\x79\xd7\x98\x8b\xf9\x08\x00\x00\xff\xff\x77\x61\x21\xf9\xe3\x01\x00\x00" func idtablestakingScriptsGet_node_info_from_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -3259,7 +3130,7 @@ func idtablestakingScriptsGet_node_info_from_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_info_from_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0xd7, 0x3, 0x14, 0x4b, 0x6c, 0x3a, 0x16, 0x47, 0x8e, 0xdb, 0x75, 0x1b, 0x8, 0xe, 0x87, 0x83, 0x39, 0x57, 0x8d, 0x2b, 0x31, 0x72, 0x62, 0x9d, 0x31, 0xbc, 0x7e, 0xc6, 0xbe, 0x92, 0xeb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3b, 0xeb, 0x71, 0x1f, 0xdc, 0xae, 0x6b, 0x7a, 0x3a, 0x44, 0x55, 0x5, 0xb1, 0x2c, 0x46, 0x74, 0xb8, 0xf3, 0x94, 0xf9, 0x6a, 0x21, 0x80, 0x6e, 0x5b, 0x6a, 0x31, 0x53, 0x95, 0x58, 0xfa, 0x20}} return a, nil } @@ -3703,7 +3574,27 @@ func idtablestakingScriptsGet_weekly_payoutCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x57\x5f\x6f\xe3\x36\x0c\x7f\xf7\xa7\x20\xf2\x10\x38\x40\x1a\xe7\x1e\x17\xb4\x3d\x64\xc1\x0e\x1b\xae\xc3\x0e\x5b\xef\xee\x99\xb5\x99\x58\x88\x22\x79\x92\x9c\x20\x28\xfa\xdd\x07\x59\xf2\x1f\x39\x76\xba\x6c\x7b\x9b\x1f\x8a\x46\x26\x45\xf2\x47\xf2\x47\x9a\x1d\x0a\xa9\x0c\x6c\xd4\xb9\x30\x32\xf2\xbf\x3e\x71\x79\x7a\x96\x7b\x12\xb0\x55\xf2\x00\x93\xe6\xf7\xa4\x91\x28\xc5\x8e\xbd\x70\x0a\xa4\xba\x67\x8d\xe4\x93\x4c\xf7\x94\x55\x67\xda\x0b\x76\x8f\x26\x51\x94\x24\x09\x3c\x2b\x14\x1a\x53\xc3\xa4\x00\x93\xa3\x01\x93\x13\x1c\x90\x09\x30\x95\x05\xcc\x0e\x4c\xc0\x49\x96\x3c\x03\xcd\x76\xa2\x52\x32\x12\x52\x45\x68\x08\x10\x74\x8e\x8a\x32\xc0\x34\x95\xa5\x30\x80\x22\x03\x14\x50\x0a\x5e\xd9\xaa\xc4\xd1\xbd\xda\x4a\x05\x08\xa5\x26\x15\x45\xa6\x35\x1b\x47\x00\x00\x05\x2a\xc3\x90\xaf\xad\xb9\x2f\xe5\x0b\x67\xe9\x67\x3a\xaf\x3c\x3c\x8b\xcf\x74\x7e\x62\xda\xfc\x24\x8c\x3a\xcf\x21\x49\xe0\x3b\xb1\x5d\x6e\x56\xf0\x61\xb9\xec\xaa\x7f\xd5\xa4\x6e\xd0\xfe\xc1\x6b\x6f\x4b\x7e\xab\xea\x87\xe5\x72\x19\xcd\x00\x5e\x23\x67\x5f\x51\x81\x8a\xe2\x0a\xae\x15\x60\x69\xf2\xf8\x47\xa9\x94\x3c\x7d\x43\x5e\xd2\x0c\xa6\x6b\x07\xd0\xac\xd6\xb0\x4f\x92\xc0\xc6\xe1\x68\x51\x17\x74\xaa\x61\xd4\x0e\xc7\x2c\xb3\x2f\x98\x82\x3d\x9d\x75\xa3\xc5\xc9\x78\xd4\xfd\x9d\xf0\x00\xfe\xbf\xb8\xc0\x33\xa9\x95\xcb\xda\x2c\xd0\xb0\xb8\xbf\x27\xdf\x28\x04\xd7\x2f\xac\xf5\x05\x66\x59\x5c\xb4\xf8\x0c\xe6\x6b\xd1\x08\xcc\x21\x47\x9d\xaf\xf9\x4e\x2a\x66\xf2\xc3\x98\x7c\x20\x34\x87\x93\x07\x77\x58\xd8\xbd\x9d\xdd\xee\x64\x90\xda\xf7\x7d\x0c\xc5\xaf\xbb\x18\xca\xd6\x1e\x36\x2e\x76\x40\x1f\x74\xf0\xa2\xf0\xae\x78\x77\x29\x3b\xe2\xda\xa5\xe0\x85\x5f\x6d\xe1\x21\x14\x8a\x1d\xed\x7f\x9c\x89\xbd\xed\x6c\x5b\x8a\xda\x48\xdb\xd4\x47\x2c\xb9\x09\xaa\xa8\x3a\xd9\x60\x81\x2f\x8c\x33\x73\x86\x87\x5e\x16\xd2\xfa\x15\x23\xbd\xb0\xb7\xe0\x8e\x16\x4c\xeb\x92\x9a\x6b\xec\x73\x5f\x35\x48\xc0\x5b\x8b\xef\xcc\xe4\x99\xc2\xd3\x0c\xa6\x0d\xed\x2d\xbe\x59\x7b\x8f\x81\x6e\x9c\xf8\x7b\x93\x6d\x2d\x56\x49\x85\xe1\x35\xfc\xe4\x78\xc8\xb3\xd9\x01\x05\xee\x48\x55\xdd\xe5\x63\x64\x06\x2c\xd9\xd9\xa0\x03\x26\x0b\xc2\xe6\x2d\x71\xfe\xea\xaf\xb8\xbf\x0b\x18\x76\xe1\x0c\x3e\x5d\x08\xc6\x15\x64\xab\x3e\x72\x63\x65\x5c\x63\xa6\xf1\x48\xf1\xfd\xdd\xa5\xe1\x39\x18\xb9\x0a\x4d\x5f\x1a\xfd\xc3\xdd\xf2\x05\x4d\xde\x81\xc5\x46\x62\x3a\x52\xe3\x79\x0c\x00\xbf\x92\xd4\x6b\x79\x9c\x87\x4e\x7e\xad\x26\x82\xfb\x31\x83\xe9\x3b\x01\x3c\xc6\x81\x0b\xf6\xf9\x77\x21\xff\x2c\x79\x36\x9a\xb5\xe7\x56\x22\xb4\xeb\xe0\x5f\x67\x99\x22\xad\x57\xbd\x54\xa1\x3b\x9e\x07\x1a\x5d\x7c\x57\x23\x68\x37\x0a\x23\x4c\x11\xd4\x40\xd8\x37\x77\x9d\x60\xfa\x86\x7b\x55\xd1\x09\xaa\x83\xcd\x90\x6d\x0b\x12\x13\x5b\xb9\xc1\x02\x1e\x02\x4f\xae\x64\x7e\x3a\x66\xac\x97\xba\xdb\x7c\x1a\x82\x23\x70\xa2\xe2\x47\x9d\xc7\xde\xdf\x39\xa0\x19\xec\x06\xaf\xfc\x8b\xd8\x4a\xc7\x83\x63\x85\x51\x0d\x99\x8d\xe4\x9c\xdc\x12\xf4\xe0\x86\x61\x1d\x6d\xd8\x09\x2f\xd5\x48\x77\x55\x1f\x18\xf5\xe6\x2a\x52\x95\xaa\x5f\xdf\xcf\x03\x86\x06\x2a\xdc\x2e\x69\xe3\xad\xdd\xd3\x1f\xc2\x2f\xc4\xd0\x3e\x1f\x3f\x42\x81\x82\xa5\xf1\x64\x53\xad\x70\x42\x1a\x70\x41\x80\xa2\x2d\x29\x12\x29\x59\xd2\x77\x6b\x5e\xda\xdc\x3e\xb9\x42\x1b\xae\x93\xff\x07\xe4\x31\x54\x1f\xb6\xeb\xeb\xe5\x29\xb0\x12\x40\x70\x0b\x63\xd4\xab\x72\x5f\xb5\xdb\x02\xe3\x54\xb3\x76\x0b\xe7\xb5\xfc\x0c\xb5\x7c\x92\xc0\x6f\x47\x52\x8a\x65\x6e\xf7\xcc\x68\x6b\xe7\x53\xe7\x03\x44\x51\x4a\xec\x48\x6a\x64\x4e\x05\x69\x2d\x45\xdd\x96\x89\xdb\x5f\xda\xd1\xfc\xbb\xbf\x66\x70\x3a\xdb\x8d\xb7\xb6\xe3\xbe\x3e\x0e\xa8\xf6\xba\x3e\xf3\x53\x5b\x03\xea\xf6\x83\xa2\x5b\x95\x9d\xe9\xa8\x5b\x96\xbd\x61\x29\xb9\x9f\xbe\x86\xf5\x57\xbb\xfb\xf6\x18\xdf\x52\x32\x7f\x03\xa3\x1a\xa1\x81\xf9\xd2\x0f\x20\x4c\xb3\x25\xb8\x51\x58\x47\x72\x5b\x94\x06\x84\x54\x07\xe4\x2d\xbe\x4c\xd8\xaf\x35\xfb\x99\x62\xa1\x2f\x05\xfb\xb3\x24\x28\xba\xf4\xd1\x34\x7a\x7d\xfb\x7f\x07\xe6\xe8\xce\xf6\x4f\x91\xeb\xfb\x39\x8e\x99\xc3\xf8\xd3\x15\xe4\xec\xdf\xb7\xe8\x2d\xfa\x2b\x00\x00\xff\xff\x46\x9f\x30\x14\x93\x0f\x00\x00" +var _inspect_fieldCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xc1\x09\x42\x31\x0c\x06\xe0\x7b\xa7\xf8\x8f\x7a\x91\x22\x5a\x1f\xde\xbc\x74\x01\x71\x80\xbe\x9a\x42\xc0\x26\x8f\x98\xea\x03\x71\x77\x17\x70\x81\x8f\xfb\xa2\xe6\xc8\x0f\x7d\x5f\xc9\x5e\x5c\xe9\x52\xab\x0e\x71\x34\xd3\x8e\xb8\xb6\xe9\x9e\x28\x1e\xa7\x34\xc7\xb2\x8f\xf5\x14\xc2\x32\x66\xb4\x21\xe8\x85\x65\xb3\x3d\xe3\x96\x79\x4d\x07\x7c\x02\x00\x18\xf9\x30\xf9\xe3\xed\xdc\x8a\x3c\x4b\x75\x56\xc9\x44\xe1\xfb\x0b\x00\x00\xff\xff\x7c\xe1\x51\x3b\x7a\x00\x00\x00" + +func inspect_fieldCdcBytes() ([]byte, error) { + return bindataRead( + _inspect_fieldCdc, + "inspect_field.cdc", + ) +} + +func inspect_fieldCdc() (*asset, error) { + bytes, err := inspect_fieldCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "inspect_field.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x74, 0xeb, 0x82, 0x68, 0x87, 0xc8, 0xaf, 0x97, 0x60, 0xf6, 0x63, 0x18, 0x23, 0x85, 0x7b, 0xb6, 0xf6, 0xbb, 0x8c, 0x4d, 0x40, 0x9c, 0x25, 0xc, 0xc5, 0x56, 0xa, 0xdf, 0x63, 0xa8, 0x28, 0xea}} + return a, nil +} + +var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x57\x49\x6f\xeb\x36\x10\xbe\xeb\x57\x0c\x72\x28\x64\xc0\xb1\xfc\x8e\x15\x92\x3e\x18\x4e\x1e\x5a\x24\x6d\x82\x24\x6d\xcf\x8c\x34\xb6\x08\xd3\xa4\x4a\x52\x76\x8d\x20\xff\xbd\xa0\xa8\x8d\x12\xe5\xa5\x68\xf1\x7c\xb2\xa4\x6f\xb6\x6f\x16\x0e\xe9\x36\x17\x52\xc3\x52\x1e\x72\x2d\x82\xea\xe9\x1b\x13\xfb\x37\xb1\x41\x0e\x2b\x29\xb6\x70\xd5\x3c\x5f\x35\x88\x82\xaf\xe9\x3b\x43\x07\xd5\x7d\xd7\x20\x1f\x45\xb2\xc1\xb4\x7c\xa7\x2c\x70\xfe\xf7\xe3\xd3\xf2\xe1\xfe\xee\xed\xe9\xe1\xfe\xb7\xc5\xdd\xdd\xcb\xfd\xeb\x6b\x10\x44\x51\x04\x6f\x92\x70\x45\x12\x4d\x05\x07\x9d\x11\x0d\x3a\x43\xd8\x12\xca\x41\x97\x76\x48\xba\xa5\x1c\xf6\xa2\x60\x29\x28\xba\xe6\xa5\x90\x16\x90\x48\x24\x1a\x81\x80\xca\x88\xc4\x14\x48\x92\x88\x82\x6b\x20\x3c\x05\xc2\xa1\xe0\xac\x74\xa2\x84\x13\xfb\x69\x25\x24\x10\x28\x14\xca\x20\xd0\xad\xd9\x30\x00\x00\xc8\x89\xd4\x94\xb0\x85\x31\xf7\x5c\xbc\x33\x9a\x3c\xe0\x21\xae\x48\x9a\x3d\xe0\xe1\x91\x2a\x7d\xcf\xb5\x3c\x4c\x21\x8a\xe0\x4f\xa4\xeb\x4c\xc7\xf0\x65\x3e\xef\x8a\xff\xae\x50\x5e\x20\xfd\x63\x25\xbd\x2a\xd8\xa5\xa2\x5f\xe6\xf3\x79\x30\x01\xf8\x08\xac\x7d\x89\x39\x91\x18\x96\x74\xc5\xb0\x28\x74\xb6\xb0\x8c\x4c\x6a\x88\xf9\x45\x11\x2c\x2d\x71\x86\x66\x8e\xfb\x9a\x37\x65\x89\x4b\x53\xf3\x81\x4a\xd8\xe0\x41\x35\x52\x0c\x75\x45\x73\xa5\x13\x6e\xbb\x16\xc2\x9c\x1c\x50\xc6\x36\x55\x13\x47\xca\x90\x7d\x8e\x4c\x23\xe4\x98\x99\x19\x2f\x66\x24\x4d\xc3\xbc\x25\xc6\x9b\xa8\x59\x03\x98\x42\x46\x54\xb6\x60\x6b\x21\xa9\xce\xb6\x63\x78\x07\x34\x85\x7d\xc5\xaa\x1f\x6c\xbf\x4e\x2e\x77\xd2\xc9\xe9\x69\x1f\x5d\xf8\x71\x17\x5d\x6c\xed\x61\xe3\x62\x87\x78\xaf\x83\x83\x8a\x3b\xe2\xdd\x10\x3b\xe2\xda\x10\x38\xf0\xab\x2d\x40\x02\xb9\xa4\x3b\xf3\x8f\x51\xbe\x31\x2d\x6d\x4a\x52\x69\x61\xba\x79\x47\x0a\xa6\x9d\x4a\x2a\xdf\x2c\x49\x4e\xde\x29\xa3\xfa\x00\xb7\x6e\x16\x1a\xac\xf9\xcd\x8c\xc6\x9b\x1f\x9a\x11\x36\xfb\xc3\x08\xff\x14\x3a\xa0\xd2\x9b\xca\x85\x68\x55\x43\x4b\xe4\x74\x00\xd4\x44\xae\x51\xc7\x10\x19\xff\xc8\xba\x2f\xe0\xe0\x27\xce\xd3\xd7\xaf\x90\x13\x4e\x93\xf0\x6a\x59\xce\x30\x2e\xb4\x0d\xd8\x78\x07\x76\x96\x96\x3a\x20\x69\x82\xbb\x72\x09\x6b\x46\x9d\x1d\x69\xd5\x60\xdc\x12\x4e\xd6\x28\xcb\xbe\xad\x58\xa3\x1a\xcc\xdc\x34\x34\x3a\x43\xd1\x21\x92\xb5\xc3\xf9\xd7\x4a\xc5\xcd\xb5\x33\xb2\x67\xd6\xe0\xe3\x00\x18\x96\x49\x88\xfb\xb9\x18\x6b\x0c\x45\x76\x18\xde\x5c\x0f\x0d\x4e\x41\x8b\xd8\x35\x39\x34\xf6\x6a\x99\x7e\x26\x3a\xeb\xd0\x61\x22\xd0\x1d\xd4\x65\x15\x71\xc2\xa4\xa7\x42\x4e\x48\x3c\xdb\xfa\x31\x4e\x8e\x17\xcd\xf9\x81\x36\x2a\x26\xc7\x2a\xc7\xcd\xbf\xbf\x6c\x1a\x9e\x7e\x16\x2c\x1d\x4d\xf1\x5b\x8b\x70\x43\xb7\x39\x5b\xa4\xa9\x44\xa5\xe2\x5e\x5e\x89\x7d\xed\x06\xdc\x4d\x4a\x3c\x92\xa2\x36\x3c\xff\xa0\x2a\x0b\xc6\xd1\x7a\x73\xdd\x09\xa2\x6f\xb0\xc7\x6c\x27\x98\x0e\xa5\xd3\x53\x46\x3d\x95\xd1\xd1\xf4\xe1\x49\x5e\x25\xf9\x0b\x5f\x89\xcf\x5e\xc9\x1c\x47\xdb\xb9\x38\x2c\x16\x6f\xa1\xf8\xc3\xf1\x45\xd3\xe4\xba\x3c\xb6\xbe\x57\x47\xd8\x33\xf3\x7f\xea\x07\x38\x7f\xae\x76\xd7\x46\x73\xa8\x74\x9b\xc5\xdb\x21\x96\x35\xc1\x18\xda\x2d\xf4\xd6\x0a\xbb\x6c\xbd\x0b\x29\xc5\xde\x57\x27\x3d\x71\x0f\x63\x66\x03\x1e\x8f\xba\x27\xff\xef\xa3\xb7\x2e\x82\xc4\x15\x4a\xe4\x09\x9a\xe8\x2d\x0d\x49\xa3\xbd\x4b\x80\x2f\x78\xd3\xdb\xf5\x86\xe6\x18\x74\x0a\xe9\x92\xb9\x50\x2f\xe2\x7d\xd1\x6e\x0b\x8e\x0f\x94\x85\x5d\x67\x7d\xd5\xed\xeb\x84\x28\x82\xa7\x1d\x4a\x49\x53\xbb\xe0\xa6\xb8\x2a\x8f\xd6\xf6\x72\x23\x31\x41\xba\x43\x39\x72\x64\x15\xdc\xd4\x50\x18\xd9\x65\xa8\x3d\xe5\x5f\x2a\x31\xef\xc1\x6c\xd6\xe8\x5a\xaf\xbd\xc3\x6c\x89\xdc\xa8\xfa\x5d\x75\x60\x2b\x20\xaa\xbd\x96\xf8\xcd\xdb\x9e\x5c\xf0\xc3\x0b\x2a\x51\xc8\x04\x3f\x9c\x0b\xd6\xac\x76\xa3\x3f\x76\x46\xfd\x3d\x63\xce\x9c\x79\x20\x39\x81\xe7\x85\x06\x2e\xe4\x96\xb0\x36\x70\xca\xcd\x65\xcc\xdc\x42\x0c\x27\x05\xa7\x7f\x15\x08\x79\x57\xc7\x7f\x1b\xab\x25\xf2\xdb\x79\x11\x9f\xda\xdb\x6c\x77\x7d\x06\x9f\xc1\x3f\x01\x00\x00\xff\xff\x61\x00\x60\xde\x1d\x0f\x00\x00" func lockedtokensAdminAdmin_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3719,11 +3610,11 @@ func lockedtokensAdminAdmin_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0xd, 0x7c, 0xa5, 0xc7, 0x2, 0x18, 0x7a, 0x3a, 0x4f, 0xec, 0xa0, 0x55, 0x8, 0x4, 0x10, 0x3d, 0x6c, 0xd, 0xd3, 0x38, 0xac, 0x53, 0x20, 0xdc, 0xa1, 0xfc, 0xf7, 0xc9, 0xe1, 0x3e, 0x9b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0x4a, 0xb0, 0xa8, 0xdc, 0x78, 0xc, 0x7a, 0xee, 0x6, 0xd, 0xe7, 0x6a, 0x51, 0xc8, 0x39, 0xe3, 0xc, 0x73, 0x7b, 0x7a, 0x18, 0xf1, 0x5a, 0xdf, 0xcd, 0x12, 0xf2, 0x87, 0xfb, 0x69, 0x53}} return a, nil } -var _lockedtokensAdminAdmin_deploy_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xc1\x4a\xc4\x30\x10\x86\xef\x7d\x8a\x39\x49\x0b\xa5\x0f\x50\xf0\xb0\x8a\x20\xac\x78\x59\xf1\x22\x1e\xc6\x64\x6c\x43\xdb\x4c\x98\x4c\x59\x83\xec\xbb\x4b\x37\x76\xb7\x62\x0f\x7f\x33\x99\x7f\xfe\xc9\xe7\xa6\xc0\xa2\x70\x2f\x29\x28\x17\x85\x0a\xfa\x88\x46\x1d\xfb\xd2\xb0\x57\x41\xa3\xcf\x38\x51\x0b\x07\x15\xe7\xbb\x1a\x0c\xdb\x4d\x15\xe6\x8f\xd1\x99\x3d\xa5\xd8\xc2\x5b\x0e\x69\xf6\x94\x9e\x5c\xd4\x07\xaf\x92\xde\x2b\xf8\x2e\x00\x00\xce\x12\x84\x02\x0a\x95\x68\x27\xe7\x5b\xc0\x59\xfb\xf2\xa0\x2c\xd8\x51\x0d\x77\x2c\xc2\xc7\x57\x1c\x67\xaa\xe0\x66\x67\x0c\xcf\x5e\xd7\xf1\xe5\x1b\x49\x61\x64\x33\x90\x7d\xe1\x81\x7c\x84\x5b\xf8\x75\x95\x01\x13\x49\x0b\xe7\xdc\xea\x3a\xb0\x31\x37\x2b\x4d\x6c\xd0\xda\xd2\x9f\x99\xb6\x84\x2b\xd9\xa2\x8d\xa5\xe5\xf7\x48\x5f\x65\x55\xaf\xa9\x97\xd8\x4f\x16\x18\x28\x81\xf3\x1b\xfc\xcd\x3b\xff\xad\x1e\x28\xe5\xad\x17\x7b\xbb\x04\x34\x97\xb2\x86\x1e\x63\xbf\x1b\x3b\x16\xa7\xfd\x94\xbb\x7f\xae\x6a\x38\x92\xeb\x7a\xcd\xad\x7c\xbe\x82\x9e\x8a\xac\xa7\xe2\x27\x00\x00\xff\xff\x8f\x01\xaf\x74\xcf\x01\x00\x00" +var _lockedtokensAdminAdmin_deploy_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x4f\xc1\x4a\xc5\x30\x10\xbc\xf7\x2b\xf6\xd8\x42\xe9\x07\x14\x3c\x14\x11\x84\x27\x5e\xf4\x26\x1e\x62\xb2\x36\xa1\x6d\x36\x6c\xb6\x68\x90\xf7\xef\xd2\x86\xf6\x45\xcc\x61\x92\xcd\xce\xce\xce\xb8\x25\x10\x0b\xdc\x73\x0a\x42\x55\x25\xac\x7c\x54\x5a\x1c\xf9\x5a\x93\x17\x56\x5a\x9e\xd5\x82\x3d\xbc\x08\x3b\x3f\xb6\xa0\xc9\x14\x55\x58\x3f\x66\xa7\x2f\x98\x62\x0f\x6f\x59\xa4\xbb\x60\x7a\x72\x51\x1e\xbc\x70\x7a\x6f\xe0\xa7\x02\x00\xd8\x21\x30\x06\xc5\x58\x2b\xb3\x38\xdf\xc3\xb0\x8a\x1d\xb4\xa6\xd5\xcb\x41\xdb\xce\x8c\x02\x33\xe9\x09\xcd\x2b\x4d\xe8\x23\xdc\x95\xcc\x3a\xa8\x84\xdc\xc3\xae\xd1\xdc\x86\x8a\x81\xee\x70\x1e\x3b\x65\x4c\xed\x77\xff\x65\x9a\x23\xc5\x86\x9d\xc1\xed\x7a\xc4\xef\xba\x69\x0f\xd5\x53\xf6\x93\x18\x26\x4c\xe0\x7c\x11\xb5\xf0\xfa\x6f\xf5\x84\x29\x6f\x3d\xe9\xfd\x26\xd0\x9d\x65\x0b\x56\x45\x3b\xcc\x23\xb1\x13\xbb\xe4\xee\x9f\xaf\x16\xbe\xd0\x8d\x56\x72\x2b\xbf\x6f\x41\xaf\x55\xc6\x6b\xf5\x1b\x00\x00\xff\xff\xdf\x5c\xcb\x79\xbb\x01\x00\x00" func lockedtokensAdminAdmin_deploy_contractCdcBytes() ([]byte, error) { return bindataRead( @@ -3739,11 +3630,11 @@ func lockedtokensAdminAdmin_deploy_contractCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_deploy_contract.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x61, 0x8, 0x4c, 0x45, 0x80, 0x10, 0x34, 0x60, 0xc1, 0xb0, 0xed, 0xeb, 0xc8, 0x43, 0x86, 0xb6, 0xd9, 0xa4, 0x12, 0x84, 0xc4, 0x57, 0x3, 0xce, 0xb7, 0x53, 0x94, 0x20, 0x92, 0x33, 0x8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x9a, 0x97, 0x6b, 0xe8, 0x7e, 0x5e, 0x52, 0xde, 0xaf, 0x33, 0x49, 0x33, 0x5e, 0x3e, 0xa7, 0x54, 0x57, 0x9d, 0xa1, 0x71, 0x7e, 0xbe, 0x2e, 0x5e, 0x2b, 0xc2, 0x3a, 0x9d, 0xd4, 0xd2, 0x7a}} return a, nil } -var _lockedtokensAdminAdmin_deposit_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\xc1\x6e\xdb\x30\x0c\xbd\xfb\x2b\xb8\x1c\x3a\x1b\x18\x9c\x7b\xd0\xae\xc8\x72\xdd\x21\xd8\x8a\xdd\x19\x89\x8d\x85\x2a\xa2\x40\xd1\x2d\x82\x21\xff\x3e\xc8\xf2\x32\x6b\xcb\x50\x9e\x24\x42\xef\xf1\xbd\x27\xba\x53\x64\x51\xf8\xca\xe6\x85\xec\x13\xbf\x50\x48\xf0\x2c\x7c\x82\xd5\xb2\xb5\x6a\x9a\xf5\x7a\x0d\x9a\x2f\x80\xf6\xe4\x02\x24\x77\x0c\x09\x74\x70\x09\x54\x30\x24\x34\xea\x38\x80\x32\x58\x8a\x9c\x9c\x02\x82\xc1\x88\x07\xe7\x9d\x9e\x27\xb8\x0b\xca\xb9\x3b\x26\x65\x7b\x86\x28\xfc\xea\x2c\xc9\xc7\x04\x68\x0c\x8f\x41\x41\x07\x54\x40\xef\xf9\x2d\x53\xd3\x29\xd3\xa1\xb5\x13\x7a\x7e\x93\x72\x4f\x07\x02\x21\xc3\x62\x9b\x66\x31\xbd\x9d\xa9\xf7\x33\xf3\xd6\x5a\xa1\x94\x36\x30\x1f\x3a\xf8\xd9\x34\x00\x00\x51\x28\xa2\x50\x3b\x59\xd9\x00\x8e\x3a\xb4\x5f\x58\x84\xdf\x7e\xa0\x1f\xe9\x13\xec\x7e\x2b\x77\x94\x3a\xb8\xdb\x96\xd9\x57\x7c\x2e\x4f\xba\x30\xf8\x8d\x0c\xb9\x57\x12\x78\x80\x23\xe9\xfc\xfe\x3f\x7a\xba\x2b\x47\xae\xde\x2c\x66\xf5\x87\x49\xc5\xfd\xdd\x32\xfd\xbe\x5c\x66\xd2\x9d\x10\x2a\xcb\xe7\xb6\x62\xc9\xf5\x2e\x66\x3f\x1e\xbc\x33\x7b\xd4\xa1\xc2\xd6\x7a\x1e\x1f\x21\x62\x70\xa6\x5d\xed\x78\xf4\x16\x02\x2b\x14\x55\x0b\xbb\x39\xfd\xe2\x57\xe8\x99\x84\x82\xa1\x55\x57\x67\x33\x2d\xcb\x36\x07\xbc\x63\xef\xa9\xac\xc7\x43\xd9\x9e\xda\x73\x52\x16\x3c\x52\xef\x52\x1a\xe9\x7e\xfa\x8c\xca\x4a\x6d\xa2\x83\x3a\x9c\xa7\x1b\x73\xfe\x0a\xe7\x46\x30\xb7\x50\xdf\x8b\x8e\x2a\x9f\xee\xc3\x1f\x57\xff\xfe\x76\x8f\xd6\x5e\x57\xe5\xdc\x1a\x8c\x9b\x9b\xbe\x4b\xc2\x97\xe6\xd2\xfc\x0a\x00\x00\xff\xff\x6b\x32\x35\xf8\x70\x03\x00\x00" +var _lockedtokensAdminAdmin_deposit_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xdb\x30\x0c\xbd\xfb\x2b\x88\x1e\x36\xe7\x92\xec\x1c\xac\x2b\x0c\x27\xa7\x16\x6b\xd0\xe6\x07\x18\x89\x8d\x85\x2a\xa2\x40\xd1\xe9\x8a\x22\xff\x3e\xc8\x36\x52\xbb\xcb\xb6\xf2\x64\x13\xef\x3d\xf2\x3d\xd1\x1d\x22\x8b\xc2\x1d\x9b\x67\xb2\x5b\x7e\xa6\x90\xe0\x49\xf8\x00\xdf\x7e\xdd\xdd\xd7\xb7\xeb\xd5\xf6\xfe\x76\xfd\xb3\x5a\xad\x1e\xd6\x8f\x8f\x45\xb1\x58\x2c\x40\x33\x0a\xd0\x1e\x5c\x80\xe4\xf6\x21\x81\x36\x2e\x81\x0a\x86\x84\x46\x1d\x07\x50\x06\x4b\x91\x93\x53\x40\x30\x18\x71\xe7\xbc\xd3\xd7\x8e\xee\x82\x72\xee\xb6\x49\xd9\xbe\x42\x14\x3e\x3a\x4b\xf2\x35\x01\x1a\xc3\x6d\x50\xd0\x06\x15\xd0\x7b\x7e\xc9\xd2\x74\xc8\x72\x68\x6d\xc7\x1e\x30\x29\xf7\xb4\x21\x10\x32\x2c\xb6\x28\x46\xd3\xcb\x41\x7a\x33\x28\x57\xd6\x0a\xa5\xb4\x84\xe1\x63\x06\x6f\x45\x01\x00\x10\x85\x22\x0a\x95\x9d\x95\x25\x54\xad\x36\x55\x2f\x7f\x86\xe4\xf2\xa4\x23\x0f\x0f\x64\xc8\x1d\x49\xe0\x1a\xf6\xa4\x03\xfe\x2f\x23\x67\x67\x8d\x5c\xf3\x3d\x69\x7d\xd6\xf9\xfe\x65\x9c\xf9\xbc\xff\x19\xe4\x6a\x21\x54\x96\xb7\xff\x22\x36\xed\xce\x3b\x73\xfa\x51\x4e\x06\xe5\xfa\x24\x75\x83\xda\x4c\xb8\x1f\x56\xde\xb1\x08\xbf\x94\xd3\xee\xcd\x0d\x44\x0c\xce\x94\x57\x35\xb7\xde\x42\x60\x85\x1e\x38\xca\x29\xbf\x4c\x1f\x94\xd0\x13\x09\x05\x43\x57\xb3\x69\xa8\xdd\x21\x55\x39\xfc\x9a\xbd\xa7\xfe\x74\xae\xfb\xcb\xfa\x67\x58\xdb\x0b\xc4\x0f\x19\x5c\xf0\xff\xce\xda\x88\x3b\xa2\xd2\xc4\xfc\x68\xb7\x3f\x1f\x7b\x8e\xd6\xbe\x6f\x53\x1a\x8c\xcb\x8b\xdb\xf7\x39\x9d\x8a\x53\xf1\x3b\x00\x00\xff\xff\x5b\xc8\xe1\xb2\x58\x03\x00\x00" func lockedtokensAdminAdmin_deposit_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3759,11 +3650,11 @@ func lockedtokensAdminAdmin_deposit_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_deposit_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x6b, 0x77, 0xa2, 0x1a, 0x8b, 0x31, 0xab, 0x7f, 0x3d, 0x5e, 0x83, 0x6e, 0x89, 0xce, 0xb8, 0x80, 0xe9, 0x4f, 0x19, 0xee, 0x31, 0x7c, 0x30, 0xc7, 0xbe, 0x57, 0x89, 0x24, 0xe4, 0xdf, 0x3a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0x1e, 0x26, 0xb4, 0x11, 0xed, 0x11, 0x3, 0x57, 0x39, 0x8f, 0x13, 0xbb, 0x53, 0xfa, 0xf, 0x22, 0x4b, 0x55, 0x77, 0xa1, 0xd8, 0xbe, 0x7a, 0x22, 0x23, 0x55, 0xdd, 0xe4, 0xbd, 0xaf, 0x33}} return a, nil } -var _lockedtokensAdminAdmin_remove_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x4f\x83\x50\x10\x84\xef\xfc\x8a\x91\x43\x03\x07\xf9\x01\x4d\xb5\x51\x1b\x13\x13\x4d\x8c\xad\xde\xb7\x8f\x2d\x25\x3c\xde\x92\x65\xb1\x31\xa6\xff\xdd\x50\x5a\x4b\xe3\xc1\xbd\x2d\xb3\xf3\x31\xf3\xca\xba\x11\x35\x3c\x7a\xd9\x3d\x2d\x56\xb4\xf6\xbc\x34\xaa\xca\x50\x60\xa3\x52\x23\xfe\x2b\xc4\xd1\xd1\xf3\x2c\xae\xe2\x7c\x25\x15\x87\xf6\x78\x3d\xfe\x14\x47\x91\x29\x85\x96\x9c\x95\x12\xf0\x1d\x45\x00\xd0\x28\x37\xa4\x9c\xb4\x65\x11\x58\xa7\xa0\xce\xb6\xc9\xbd\xa8\xca\xee\x83\x7c\xc7\x29\x26\x77\xce\x49\x17\x2c\x3d\x59\xfa\xf1\x6c\xa8\x29\x50\xc1\xfa\xc6\x1b\xdc\x60\xf0\x67\xad\x89\x52\xc1\xd9\xfa\x40\x98\x1d\x68\xe3\x10\xd9\x7b\xf0\xe2\xaa\x61\x49\x31\xb9\xd0\x46\xcb\xcb\xc0\xbe\x4d\xfa\x1e\x53\xfc\x73\xb6\x1c\xfe\xfa\x4a\xb6\x4d\x7f\x23\xf6\x33\x9f\xa3\xa1\x50\xba\x24\x7e\x90\xce\xe7\x08\x62\x18\xa2\x81\xa0\xbc\x61\xe5\xe0\x18\x26\xb0\x2d\xc3\x1f\xc0\xb0\x9e\x7c\x6a\x17\xa7\x97\xa5\x73\xf6\x5c\x90\x89\x62\x76\x3d\x7a\x81\x4c\xb9\x96\x4f\x5e\x9c\xd4\x24\xbd\x3a\xfb\x72\x6e\x4d\xe5\xeb\xec\x1d\xa4\x7d\xb4\x8f\x7e\x02\x00\x00\xff\xff\xba\xa7\xc0\x06\xef\x01\x00\x00" +var _lockedtokensAdminAdmin_remove_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8f\xc1\x4f\xfa\x50\x0c\xc7\xef\xfb\x2b\xfa\xe3\xf0\xcb\x76\x90\x78\x26\x28\x99\x6c\x26\x04\x04\xc3\xde\xc5\x63\x79\x2b\x63\xe1\xed\x75\xe9\x8a\x68\x0c\xff\xbb\x99\x73\x32\x4f\xf6\xd6\xf4\xf3\x69\xbf\x2d\xab\x9a\x45\xe1\xd1\xf1\x79\x91\x18\xdc\x39\xca\x14\x8f\xa5\x2f\x60\x2f\x5c\xc1\xed\xdb\x22\x49\xd7\x66\x61\x5e\x4c\xfc\xb0\x4a\xe3\x24\xd9\xa6\x59\x16\x7c\x5b\x2b\xb6\x47\xca\x0d\x1f\xc9\x37\x3d\xbf\xda\xcc\x97\x69\x62\x36\xcb\x74\xdd\xd3\x81\x0a\xfa\x06\xad\x96\xec\xe1\x23\x08\x00\x00\x6a\xa1\x1a\x85\xc2\xa6\x2c\x3c\xc9\x04\xe2\x93\x1e\x62\x6b\xf9\xe4\x35\xea\x99\xb6\x1c\x29\x54\xe8\xb1\x20\xd9\xd2\x1e\xee\xa0\x13\xc6\x3b\x16\xe1\xf3\xf4\xff\x30\xc2\x78\xd0\x3c\x75\xce\x7d\xd8\xc6\x9a\xc0\x1f\x58\xa6\x2c\x58\xd0\x33\xea\x21\xfa\x39\xdd\xd6\x6c\x06\x35\xfa\xd2\x86\xa3\x39\x9f\x5c\x0e\x9e\x15\xba\xd3\x80\x20\xb4\x27\x21\x6f\x09\x94\x41\x0f\x04\xee\x6b\x31\x68\xbb\xb9\x4f\x3d\x8a\x7e\x3f\x93\x93\xa3\x02\x95\x05\xa6\x37\x83\xcf\xc6\x42\x15\xbf\x52\xd2\x4f\xc3\xe8\xdf\xd5\xcb\xa9\x51\xe1\xf7\xab\xdb\x8d\x2e\xc1\x25\xf8\x0c\x00\x00\xff\xff\x33\x91\x55\x64\xc0\x01\x00\x00" func lockedtokensAdminAdmin_remove_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3779,11 +3670,11 @@ func lockedtokensAdminAdmin_remove_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_remove_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x82, 0xb7, 0xcd, 0x29, 0x37, 0xa8, 0x95, 0x14, 0x16, 0x52, 0x45, 0xa2, 0x6d, 0x5b, 0x5f, 0xa, 0xfb, 0x68, 0xc1, 0x28, 0xbf, 0x4, 0x47, 0x1f, 0x89, 0x74, 0x84, 0xd4, 0x6b, 0x1a, 0x4b, 0xa8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7b, 0x45, 0x4f, 0xc6, 0x2d, 0xa8, 0x8, 0x67, 0x3d, 0x3b, 0x76, 0x24, 0x7e, 0x97, 0xc8, 0x6, 0x34, 0xe8, 0xea, 0xfa, 0x7b, 0x91, 0x9c, 0x76, 0x38, 0x88, 0x31, 0x29, 0xb2, 0x25, 0x1, 0xf6}} return a, nil } -var _lockedtokensAdminCheck_main_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\xc1\x6a\xdc\x30\x14\xbc\xfb\x2b\x26\x3e\x04\x1b\x8a\x3f\xc0\x74\x13\xb6\x0b\xa5\x85\x1e\x42\x1b\x7a\x7f\x2b\x3d\x7b\x45\x64\xc9\x48\xcf\xe4\x50\xf2\xef\xc5\xb2\xbd\x58\x6d\xd8\x4b\x74\x59\xf4\x76\x66\xde\xcc\x58\x66\x18\x7d\x10\x7c\x9d\x5c\x6f\xce\x96\x9f\xfd\x0b\x3b\x74\xc1\x0f\x28\xb3\x59\x59\x6c\x48\xeb\x5f\x33\xd4\x76\x2f\x8b\x0d\xf2\xc3\xab\x17\xd6\x69\x18\x57\xd4\x7e\x54\x16\x85\x04\x72\x91\x94\x18\xef\xaa\x81\x8c\x3b\x2a\xe5\x27\x27\x2d\x8e\x5a\x07\x8e\xb1\xc6\x9f\xa2\x00\x80\x31\xf0\x48\x81\xab\x68\x7a\xc7\xa1\x05\x4d\x72\xa9\xbe\xf8\x10\xfc\xeb\x6f\xb2\x13\xd7\xb8\x5f\xb9\x57\xca\x7c\x2c\x0b\x48\x0f\xc6\xfd\xe4\x0e\x07\x2c\xec\x26\x8a\x0f\xd4\x73\x73\x4e\xfc\xcf\xf7\x7b\x53\x4d\xfa\x39\xce\x9c\x93\xb7\x96\x93\xb7\x87\x6a\x76\xdf\x66\x81\x9a\xdd\xe5\x1f\xf8\xaf\x45\xff\x89\xe4\x52\x5f\xad\xcc\xe7\xf1\x11\x23\x39\xa3\xaa\xf2\xe4\x27\xab\xe1\xbc\x60\x31\x01\x42\xe0\x8e\x03\x3b\xc5\x10\x0f\xb9\x30\x6c\x5a\x00\x49\x25\xa7\x14\x50\xd7\x1d\x65\x9d\xa7\x5c\xc0\x6b\x07\xdf\x5d\xe7\x97\xc4\x3d\xcb\x3a\xdb\xf7\x9b\xbb\x6a\x14\x8d\x74\x36\xd6\x88\xe1\x78\xa3\x94\x6f\xde\x6a\x0e\x0f\xd5\x3b\x2d\xec\xf6\x3e\x4d\x67\x6b\xd4\x47\xb2\x8f\x49\x01\xff\x29\xdf\x8c\x8c\xc3\xbb\x15\x34\x3d\x4b\x26\xb4\x3e\xac\x6a\xa7\x45\x31\x72\x90\x2a\x73\xbb\x3d\x9a\x66\x57\x20\x2d\xd4\x36\x5f\x54\xe3\xee\x00\x67\xec\xa7\x8c\x3f\x70\x8c\xd4\x73\x8b\xf2\xf9\xc2\x88\x23\x2b\xd3\x19\xd6\xa0\xd5\xad\x89\xa9\x00\xda\x3e\xf2\x3a\xbf\xc3\x89\xdc\xfc\x47\x64\xa7\xb3\x07\x10\xcb\xab\xfe\xd2\xeb\x5b\xf1\x56\xfc\x0d\x00\x00\xff\xff\x9d\x91\x65\xc1\xb5\x03\x00\x00" +var _lockedtokensAdminCheck_main_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xcf\x6a\xdb\x40\x10\xc6\xef\x7a\x8a\x89\x0e\x45\x86\x22\x7a\x16\x75\x82\x90\x5d\x5a\x12\x9a\x10\xfb\x05\xc6\xab\x91\xbc\x64\xb5\x23\x76\x47\xa4\x25\xf8\xdd\x8b\xfe\xa2\x6d\x4c\x0e\xd9\x8b\xd9\xf1\xb7\xf3\x7d\xf3\xd3\xe8\xa6\x65\x27\xf0\xa3\xb3\xb5\x3e\x19\x3a\xf2\x0b\x59\xa8\x1c\x37\x10\x07\xb5\x38\x9a\x95\x86\x5f\x03\xd5\x7c\x8f\xa3\x59\xf2\xc0\xea\x85\xca\xa1\xe8\x47\xd5\xb7\x3f\x0f\x8f\xc5\xfd\x7e\x77\x7c\xbc\xdf\xff\xce\x77\xbb\xe7\xfd\xe1\x10\x45\xe2\xd0\x7a\x54\xa2\xd9\x26\x0d\x6a\x9b\x2b\xc5\x9d\x95\x0c\xf2\xb2\x74\xe4\xfd\x06\xde\xa2\x08\x00\xa0\x75\xd4\xa2\xa3\xc4\xeb\xda\x92\xcb\x20\xef\xe4\x3c\x89\x17\x4d\x7f\x0c\x09\x60\xd9\x68\xfb\x4c\x15\x6c\x61\x94\xa7\x27\x76\x8e\x5f\xbf\x7f\x59\xc7\x4a\x87\x9f\xbc\xd7\x16\x6c\x0c\x0d\x21\x6e\x93\x3e\x6c\x16\xe4\x4f\x57\x97\xff\xe4\x07\x61\x87\x35\x3d\xa1\x9c\x37\x4b\x84\xfe\xdc\xdd\x41\x8b\x56\xab\x24\x2e\xb8\x33\x25\x58\x16\x18\x43\x00\x82\xa3\x8a\x1c\x59\x45\x20\x0c\x72\x26\x30\x83\x01\xc8\xc0\x74\x48\x0f\x6a\xf1\x88\x37\xe1\x74\xa3\x78\x9a\xfd\x97\xad\x78\x9c\xb4\x26\x99\x6a\x6b\x90\x61\xaa\xb4\x26\x29\xb0\xc5\x93\x36\x5a\xfe\x5e\xc3\xf1\x93\x4d\x49\xee\xed\xca\xf8\x2b\xc3\xcb\x6d\xf2\xb1\xe0\xa9\x3b\x19\xad\xde\x53\x99\xbe\x43\xf2\x59\x56\xed\xd0\x17\xde\xf9\x7d\x88\x08\xb6\x57\x91\xf5\x2c\x82\x46\xd3\xc6\x25\xab\x5e\xe8\x3d\x39\x49\x82\xb4\xf3\x72\xa5\x2b\xe0\x38\x3e\xcd\x42\xa3\x0d\xdc\x6c\xc1\x6a\xf3\x35\x78\xdf\x90\xf7\x58\x53\x06\xf1\xf1\x4c\xe0\x5b\x52\xba\xd2\x54\x02\x4e\x69\xb5\x1f\x00\xe0\xbc\x14\x53\xfd\x06\x0a\xb4\xfd\x1f\x9e\x6c\x19\x2c\x8c\x8f\x97\xfe\x23\xd7\x4b\x74\x89\xfe\x05\x00\x00\xff\xff\xea\xc1\x7d\x15\xd4\x03\x00\x00" func lockedtokensAdminCheck_main_registrationCdcBytes() ([]byte, error) { return bindataRead( @@ -3799,11 +3690,11 @@ func lockedtokensAdminCheck_main_registrationCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/check_main_registration.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0x92, 0xbe, 0x27, 0xf, 0xc8, 0x19, 0xb2, 0x24, 0xd8, 0xfb, 0x9, 0x26, 0x43, 0xec, 0x91, 0x14, 0xe, 0xaf, 0x4a, 0x9, 0xd, 0x12, 0xde, 0xa, 0x73, 0x8d, 0x3, 0x5d, 0x53, 0xd0, 0xc6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0x8d, 0xde, 0xc1, 0x5, 0xed, 0xb1, 0x92, 0xc0, 0x90, 0x47, 0x3a, 0xcf, 0xcc, 0x41, 0x98, 0x28, 0xa0, 0x7e, 0x56, 0x4b, 0x7b, 0xca, 0xb5, 0x8a, 0x15, 0xb5, 0x12, 0xdd, 0x9c, 0xdd, 0xc9}} return a, nil } -var _lockedtokensAdminCheck_shared_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x50\x4d\x6b\xe3\x30\x14\xbc\xeb\x57\x4c\x74\x08\x36\x2c\xfe\x01\x66\xb3\x21\x1b\xe8\xa9\x87\xd2\x86\xde\x5f\xe4\x67\x5b\x44\x96\x8c\x24\x93\x43\xc9\x7f\x2f\x96\x3f\x1a\x57\x17\xa1\xd1\xcc\x7b\x33\xa3\xbb\xde\xf9\x88\x97\xc1\x36\xfa\x6a\xf8\xe2\x6e\x6c\x51\x7b\xd7\x41\x6e\x30\x29\x16\xa6\x71\xf7\x0d\x6b\x79\x4b\xb1\x50\x5e\x9d\xba\x71\x95\xc0\x30\xb3\x9e\x21\x29\x44\xf4\x64\x03\xa9\xa8\x9d\xcd\x4c\xfa\x3a\x29\xe5\x06\x1b\x4b\x9c\xaa\xca\x73\x08\x39\xbe\x84\x00\x80\xde\x73\x4f\x9e\xb3\xa0\x1b\xcb\xbe\x04\x0d\xb1\xcd\xfe\x3b\xef\xdd\xfd\x93\xcc\xc0\x39\xf6\xb3\x76\x95\x8c\xc7\x70\x04\x55\x9d\xb6\xef\x5c\xe3\x80\x49\x5d\x84\xe8\x3c\x35\x5c\x5c\x93\xfe\xef\xfe\xd9\x56\x91\xae\xd3\xa8\x39\x3b\x63\x38\xb9\xfb\x97\x8d\xfe\xcb\x4d\xa4\xe2\xe9\xf1\x8b\xfe\x31\xcd\x7f\xa3\xd8\xe6\xab\x95\xf1\x1c\x8f\xe8\xc9\x6a\x95\xc9\xb3\x1b\x4c\x05\xeb\x22\x26\x13\x20\x78\xae\xd9\xb3\x55\x8c\xe8\x10\x5b\xc6\x54\x09\x62\xaa\x39\xa5\x80\x5a\x77\xc8\xfc\x27\x25\x85\xc0\x3e\x22\xdb\xec\x5a\x62\x17\x0d\xc7\xb9\x9a\x8c\xa6\x56\x4b\x6c\xda\xce\xb1\x3b\xc0\x6a\xf3\x67\xa3\xef\x38\x04\x6a\xb8\x84\xbc\xb4\x8c\xd0\xb3\xd2\xb5\xe6\x0a\x34\x89\xa0\x43\xb2\x4f\x8b\xcd\x19\xdf\xe1\x4c\x76\xfc\x08\x6c\xab\x4d\x84\x20\xd7\xf9\x53\x2b\x0f\xf1\x10\xdf\x01\x00\x00\xff\xff\xc7\x12\xd7\xca\x79\x02\x00\x00" +var _lockedtokensAdminCheck_shared_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xc1\x8e\xa3\x30\x10\x44\xef\xfe\x8a\x0a\x87\x15\x48\x2b\xb4\x67\xb4\xd9\x08\x91\xec\x25\xd1\x64\x94\xe4\x07\x1c\xd3\x80\x15\x63\x23\xdb\x28\x23\x8d\xf2\xef\x23\x20\x30\xf1\xf4\x05\x75\xf3\xda\x5d\x55\xb2\xed\x8c\xf5\xf8\xdf\xeb\x5a\x5e\x15\x5d\xcc\x8d\x34\x2a\x6b\x5a\x44\xc1\x2c\x62\x33\xa9\xcc\x3d\xa0\xe6\x3e\x62\x33\x72\x30\xe2\x46\xe5\x38\x74\x13\xf5\xe7\xe3\x70\x2c\xf6\xbb\xed\xe5\xb8\xdf\xbd\xe5\xdb\xed\x69\x77\x3e\x33\xe6\x2d\xd7\x8e\x0b\x2f\x8d\x8e\xd5\xb8\x93\x0b\x61\x7a\xed\x33\xe4\x65\x69\xc9\xb9\x04\x9f\x8c\x01\x40\x67\xa9\xe3\x96\x62\x27\x6b\x4d\x36\x43\xde\xfb\xe6\x09\x2f\xcc\x50\x8a\x3c\x78\xd9\x4a\x7d\xa2\x0a\x6b\x4c\x78\x7a\x35\xd6\x9a\xfb\xdf\x5f\xaf\xc2\xd2\xf1\x93\x0f\x6c\x61\x94\xa2\x51\xc6\xbf\x78\x90\x9b\x05\x0e\xd2\x97\xe6\x07\x7e\xf6\xc6\xf2\x9a\xde\xb9\x6f\x92\x45\xc2\x50\x9b\x0d\x3a\xae\xa5\x88\xa3\xc2\xf4\xaa\x84\x36\x1e\x93\x08\x70\x58\xaa\xc8\x92\x16\x04\x6f\xe0\x1b\xc2\xe4\x1d\x7e\x4c\x75\x54\x0f\xb1\xdc\x88\x92\x6f\x77\xdc\x39\xb2\x1e\x71\x70\x6b\xb6\x9b\xd6\xe4\x9f\x91\xc4\x7c\x8a\x2f\x43\x10\x6b\x82\xd5\x1a\x5a\xaa\xdf\xc1\x7e\x4b\xce\xf1\x9a\x32\x44\x97\x86\xe0\x3a\x12\xb2\x92\x54\x82\x4f\x4b\x90\x6e\x94\xcf\x67\x99\xcf\xf9\x0a\x05\xd7\xc3\x0f\x47\xba\x0c\x2c\xb8\x68\x79\x7f\x4a\xe5\xc1\x1e\xec\x2b\x00\x00\xff\xff\x68\xc2\xee\x14\x68\x02\x00\x00" func lockedtokensAdminCheck_shared_registrationCdcBytes() ([]byte, error) { return bindataRead( @@ -3819,11 +3710,11 @@ func lockedtokensAdminCheck_shared_registrationCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/check_shared_registration.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5f, 0xce, 0x2e, 0x8a, 0xa6, 0x4e, 0x37, 0xb0, 0x50, 0xb0, 0xe3, 0x24, 0x8c, 0xa4, 0xea, 0x43, 0x5f, 0xc7, 0xa6, 0xa1, 0x26, 0x54, 0x66, 0x7c, 0x8d, 0xd8, 0xa7, 0xe6, 0xb, 0xb6, 0x72, 0x84}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7, 0xd8, 0xf0, 0x95, 0xb, 0x58, 0x4e, 0x30, 0x91, 0x95, 0x2, 0x4a, 0xc5, 0xf3, 0x33, 0x3f, 0xe8, 0x7e, 0xad, 0xc5, 0x26, 0x38, 0xcf, 0x79, 0x47, 0xb0, 0xf2, 0xf6, 0xd5, 0x1a, 0xaf, 0xac}} return a, nil } -var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x56\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\x7c\x08\x64\xc0\x91\xd2\xab\x91\x64\x91\x1a\x5d\xb4\xd8\x14\x0d\xda\xec\xee\x79\x22\x8e\x2d\x22\x34\xa9\xf2\x61\xc3\x08\xf2\xdf\x0b\x4a\x94\x2c\xca\x52\xec\x16\xed\xa9\x3a\x04\x31\x39\x8f\x6f\x3e\xce\x8b\x6f\x2b\xa5\x2d\xac\xf4\xa1\xb2\x2a\x09\xbf\x3e\x0b\xb5\x7f\x56\xaf\x24\x61\xad\xd5\x16\x66\xdd\xef\x59\x27\xe1\xe4\x86\xbf\x08\x8a\xa4\xfa\x67\x9d\xe4\xa3\x2a\x5e\x89\xd5\x67\x26\x08\xf6\x8f\x66\x49\x92\xe7\x39\x3c\x6b\x94\x06\x0b\xcb\x95\x04\x5b\xa2\x05\x84\xc2\x19\xab\xd8\x01\x2a\xad\x76\x9c\x91\x86\xbd\x72\x82\x81\xe1\x1b\x59\xab\x58\x05\x85\x26\xb4\x04\x08\xa6\x44\x4d\x0c\xb0\x28\x94\x93\x16\x50\x32\x40\x09\x4e\x8a\xda\x53\x2d\xde\xde\xad\x95\x06\x04\x67\x48\x27\x89\x3d\x7a\x4d\x13\x00\x80\xb5\x13\xe2\x81\x6d\xb9\x7c\x72\x2f\x82\x17\x5f\xe8\xb0\x0c\xd4\x64\x5f\xe8\xf0\xc8\x8d\xfd\x49\x5a\x7d\x58\x40\x9e\xc3\x77\xe2\x9b\xd2\x2e\xe1\x87\x9b\x9b\x9b\x4e\xf9\xab\x21\xfd\x77\x75\xe7\x00\x6f\x49\x6d\xa1\xd2\x54\xa1\xa6\x34\x84\xfe\x14\x22\x5f\x02\x3a\x5b\xa6\x3f\x2a\xad\xd5\xfe\x1b\x0a\x47\x73\xb8\x7a\x68\xe2\x99\xb7\xba\xfe\x13\x64\x03\x15\xe1\x16\xee\x20\xfc\x97\x56\x78\xf0\x96\x06\xa6\xe7\x91\xae\x67\xe5\x72\xcd\x4e\x35\x72\x99\xbd\xd2\xc1\x64\xc8\x58\x5a\x1d\x79\x38\xe5\x35\xeb\x6e\x17\x50\xa2\x29\x1f\xc4\x46\x69\x6e\xcb\xed\xa8\x70\x24\xb1\x80\x7d\xa0\x6f\x44\xb2\xb9\xea\x81\xeb\xc5\x34\x09\x2d\x7a\xb5\x33\xc8\x62\xd9\x0f\x80\xc5\x82\x27\xb8\x3c\xdf\x3b\x74\xc2\xae\xb0\xc2\x17\x2e\xb8\x3d\xc0\xdd\x80\xca\xa2\xbd\xe2\x64\x32\x63\x95\xc6\x0d\x75\x06\xfc\x97\x71\x63\x1c\xdd\xd6\xe9\x11\x95\x5f\xf6\x9d\xdb\x92\x69\xdc\xcf\xe1\xaa\xab\xde\xec\x9b\xf7\x77\x9f\xe6\xc1\x54\xbe\x6e\x6f\xea\x8b\x01\x38\x71\xac\xd2\x5f\x51\xe2\x86\x34\xdc\x5e\x47\xe5\x9c\x35\xf5\xf7\x78\x22\x98\xd6\x81\x2d\x87\xf1\x4d\xa6\x4c\xc0\x93\x19\xdc\x51\x7a\x7b\x7d\xea\x79\x01\x56\x2d\x63\xdf\xa7\x5e\xff\x68\xac\x3c\xa1\x2d\x07\xa1\xd8\x9e\xd4\x7f\x4b\xf7\x22\x06\xf9\xb5\xee\x40\xcd\x8f\x39\x5c\x9d\x09\xe0\x3e\x8d\xbc\xf9\xef\xf2\x90\x23\xd5\xb1\xf8\x7f\x56\x82\x4d\xbe\xe1\xf3\x51\x22\x6d\xe8\x7f\x60\x4c\x93\x31\xcb\x01\x47\xd8\x1c\x2f\x22\x4e\x97\x13\x0c\x4f\x94\x61\xf4\xdc\x11\xee\xdb\xeb\x1e\xd4\x45\x74\x75\x92\x00\x3d\xc8\x63\x34\x4c\x53\xb0\xc2\x0a\xee\x22\x40\x63\x0f\x1f\xde\xfa\x6a\xca\xe7\x7d\x7a\x01\x9a\xf9\x68\xfc\x91\xbb\xba\xdb\x98\x32\x8d\x01\x2e\x00\xed\x68\xc2\x07\x1b\xbf\xc8\xb5\x6a\x9a\xcb\x54\xba\xd7\x7d\xf1\xff\x98\xec\xa2\xcf\xd3\xca\x67\xb7\xd2\x70\x37\x1c\x5f\xe3\x21\xbf\xd4\x23\xb6\x89\x39\x42\x13\x9b\x1b\x8f\x2e\x96\xb9\x4f\xfd\xb2\xf3\xd1\x1b\x06\xc1\xd1\x74\xf1\xdf\xa7\x4f\x50\xa1\xe4\x45\x3a\x5b\xd5\x9b\x8f\x54\x16\x1a\x80\x21\xc6\x6e\xa7\x29\x1a\x4b\xb3\x3e\x13\x23\x9e\x7c\xf1\xb6\x43\x3d\xf2\x14\x65\xc6\x99\xc2\x8f\x14\xdb\x0d\x6b\xa8\xda\xcf\xf6\x51\xc5\x63\x8a\x2e\x47\xd3\x75\xac\x8c\xf3\x1c\x7e\xdb\x91\xd6\x9c\x11\xd8\x92\x80\xd1\xda\xcf\x97\xde\xb6\xaa\xa9\x20\xbe\x23\x9d\x4d\xcc\x99\x28\xe7\x9d\x6c\x4b\x2f\x6f\x26\xfe\x71\x1c\xfe\x1e\xec\xc4\xce\xc3\xb6\x29\x69\xdf\x39\x6a\x76\xd5\x2d\xea\x57\xd3\x9e\xb1\x26\x1e\x03\x68\x3a\x7a\xb2\xa9\xc1\x6a\x8e\x2d\xf3\xa2\x02\x6d\x9b\xd2\x5b\x5c\x90\x2d\xde\xf7\x41\x53\x3a\x33\x23\x2f\x20\xa9\xa5\x28\x7a\xbc\xf1\x00\xe2\x07\xf6\xed\x6b\x92\xd7\x89\xd7\xad\x9c\x05\xa9\xf4\x16\xc5\x91\x60\x2e\xfd\x7a\xef\xd7\x62\xcf\xbd\x93\xfc\x4f\x47\x50\xa1\x2d\xb3\xd3\x96\xd7\x9a\xff\xf7\xd8\x9c\xdc\x94\xfe\x29\x75\x43\x9c\xd3\xa4\x35\x24\x7f\xfe\x80\x3a\xff\xf7\x3d\x79\x4f\xfe\x0a\x00\x00\xff\xff\xf6\xdf\x80\x90\xc3\x0d\x00\x00" +var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\x5d\x6f\xeb\x36\x0c\x7d\xf7\xaf\x20\xfa\x30\x38\x80\x6b\x77\xaf\x46\xdb\x8b\x20\xed\xc5\x86\x76\x6b\xd1\x66\xdb\xb3\x62\x33\xb1\x10\x47\xf2\x24\x39\x99\x51\xe4\xbf\x0f\x92\xfc\x25\xc7\x6e\x1a\xec\x02\xcb\x43\x00\x4b\x87\x22\xcf\x21\x29\x91\xee\x0a\x2e\x14\x2c\x44\x55\x28\xee\xd5\x5f\xdf\x73\x7e\x58\xf2\x2d\x32\x58\x0b\xbe\x83\xab\xf6\xfb\xaa\x45\x94\x6c\x43\x57\x39\x3a\xa8\xfe\x5a\x8b\x7c\xe6\xc9\x16\x53\xb3\x26\x2d\xf0\xe6\x9f\xe7\x97\xc5\xd3\xe3\xc3\xf2\xe5\xe9\xf1\xf7\xf9\xc3\xc3\xdb\xe3\xfb\xbb\xe7\x45\x51\x04\x4b\x41\x98\x24\x89\xa2\x9c\x81\xca\x88\x02\x02\x49\x29\x15\x4f\x2b\x28\x04\xdf\xd3\x14\x05\x1c\x78\x99\xa7\x20\xe9\x86\x19\x13\xc5\x21\x11\x48\x14\x02\x01\x99\x11\x81\x29\x90\x24\xe1\x25\x53\x40\x58\x0a\x84\x41\xc9\x72\x13\x82\x81\x37\x7b\x6b\x2e\x80\x40\x29\x51\x78\x9e\xea\xbc\xfa\x1e\x00\xc0\xba\xcc\xf3\x79\xba\xa3\xec\xb5\x5c\xe5\x34\x79\xc2\x2a\xae\x05\x0a\x9f\xb0\x7a\xa6\x52\x3d\x32\x25\xaa\x00\xa2\x08\xfe\x42\xba\xc9\x54\x0c\x3f\xdf\xdc\xdc\xb4\xc6\x7f\x48\x14\x97\xda\xce\x00\x3e\x3c\x73\x42\x21\xb0\x20\x02\xfd\x9a\xfa\x6b\xcd\x3c\x86\x79\xa9\xb2\xb9\x25\x30\x6b\xc0\xfa\x97\xa3\xaa\xb9\xd7\xbb\x70\xd7\xc7\xfa\x05\xa9\xb4\xf9\xe0\xbc\x99\x63\xaf\xa5\xb8\xcc\xba\x35\x77\x5c\x87\x5b\xac\x64\x48\xd2\xd4\x2f\x3a\x01\x4e\x05\x0d\xdb\xdd\x00\x32\x22\xb3\x79\xbe\xe1\x82\xaa\x6c\x37\x0a\x76\x10\x01\x1c\x6a\xdd\x46\x90\x76\xab\xa3\xa6\x7f\xed\x47\x8f\xe3\x64\x98\x4e\xea\xce\x44\xe9\x62\x3f\x09\xd2\x05\xd6\x31\x02\xb8\x19\xdc\x93\x32\x57\x0b\x52\x90\x15\xcd\xa9\xaa\xe0\xce\x15\xd6\xa1\x14\xe6\x94\x6d\x6f\x7f\x6a\xfb\x32\xfc\x53\x1b\xdf\xfb\x51\x21\xe8\x9e\x28\x8c\xd6\xcd\x8e\xd9\x08\x40\x11\xb1\x41\x15\x43\x24\x15\x17\x64\x33\x04\xb8\x82\x7d\xfb\x06\x05\x61\x34\xf1\xaf\x16\xa6\xd9\x18\x57\xa0\x1d\x9a\x7b\x01\x6c\xcb\x1b\x33\x48\xda\x70\xaf\x66\x2e\x9b\xbc\x6b\xfb\xdf\x08\x23\x1b\x14\x70\x7b\xed\x5c\x06\xa1\xed\xdb\xe7\x13\xa0\x6f\x94\x88\x87\x82\x4c\x56\x9c\x24\x7b\xf4\x6f\xaf\x4f\x3d\x06\xa0\x78\xec\xfa\x3c\xf5\xf6\x6e\x05\x79\x25\x2a\x1b\x50\x50\x3d\xd4\x65\x79\x39\xe3\xf2\xde\x77\x8c\xf4\xef\x8c\xc5\xab\x4d\xab\x0e\x32\x38\xb1\x6d\x72\xfb\x75\xa2\xed\x11\xb3\xcf\xb2\x6d\xf8\xc3\xae\xce\xde\x74\xaa\x0d\xee\x17\x9e\xa7\x93\x39\x5e\x76\x08\xdf\xa6\x69\x9e\xa6\x02\xa5\x8c\x07\xa9\x24\x76\x39\x70\xb4\x8f\x27\x32\xd1\x0b\xa3\xdf\xd9\xa6\x1c\x1c\x91\x6e\xaf\x7b\x21\x06\xe0\xec\x9d\x54\x48\x2f\xd6\x9e\x62\x9d\xea\x13\x5e\x47\x12\xdf\x3b\xe9\x63\x24\x37\xb5\xe5\xaf\x6c\xcd\x8f\xf7\xfe\xe7\x00\x7b\x79\x98\x40\xc6\xd3\x3d\x1e\xf5\x58\xa2\xcc\x85\xf9\x7f\x95\xb3\xbd\xad\x7f\x6c\x31\x7f\xf1\xee\xb2\xd5\x3c\x78\xc5\xf4\xf8\xe0\x94\xf9\xf8\x35\x56\x6b\xb3\xd0\xc5\xcc\x05\xdc\x0d\x8f\x71\x45\x5b\x71\x21\xf8\x61\x54\x36\xf7\xa0\x7b\x5f\xcf\x43\xa3\x5c\x5d\xe0\x45\x6c\xad\x7b\x10\xb8\x46\x81\x2c\x41\xcd\x71\xec\x50\x87\xea\xc8\xbe\x6e\xc6\x66\x06\x70\x4a\xe4\x5c\xef\x36\x03\xd7\x10\xde\x6f\x17\xb7\xd1\x4d\x59\xc4\xa3\xf5\xd9\x0b\x32\x8a\xe0\x65\x8f\x42\xd0\x14\x41\x65\x08\x29\xae\xcd\x23\xd4\x4d\xab\x02\x13\xa4\xfb\x5e\x3e\xdc\x08\x4b\xa6\x2b\xc1\x8f\xec\xab\xde\x3d\x81\x6f\xb5\xd9\xc4\xd8\x10\x45\xcd\x88\xc9\xf0\xd0\xfa\xb0\x03\xea\x8e\x88\xad\x6c\xd6\x52\xcb\x40\x02\x91\xdd\xd4\x39\x1e\x8a\x6d\xac\x39\xab\xde\x50\xf2\x52\x24\xf8\xe1\x4c\xcf\x61\x13\xd2\x71\xd0\x5c\x93\xb1\xbb\x9d\xf4\x5f\x9e\x04\x47\xf0\xa2\x5c\x01\xe3\x62\x47\xf2\x8e\x38\x65\x7a\xd6\xd6\x33\xaa\xd6\xa4\x64\xf4\xef\x12\xa1\xe8\x9f\xf1\x63\xb9\x5a\x21\xbf\x7f\x8d\xf1\xc4\x80\xd3\xa3\xa7\xff\x8f\xde\xd1\xfb\x37\x00\x00\xff\xff\x4e\xb1\xb1\x58\xfa\x0c\x00\x00" func lockedtokensAdminCustody_create_account_with_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3839,11 +3730,11 @@ func lockedtokensAdminCustody_create_account_with_lease_accountCdc() (*asset, er } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_account_with_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x99, 0x7, 0x87, 0xcb, 0x37, 0x3, 0x8d, 0x41, 0x36, 0x1e, 0x48, 0xf4, 0x8b, 0xb, 0x4e, 0xa8, 0xe5, 0x4f, 0xf2, 0x19, 0x6e, 0x97, 0x62, 0xa8, 0xe, 0x86, 0x76, 0xa8, 0xfc, 0x2d, 0x3d, 0x15}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0xc7, 0x14, 0xba, 0xc1, 0x9, 0xec, 0x86, 0x9, 0xc0, 0xa9, 0xda, 0x1e, 0x61, 0x83, 0xfa, 0x30, 0x8b, 0x2, 0x88, 0x96, 0xb3, 0xb, 0x65, 0xd7, 0xcb, 0x79, 0x68, 0xa1, 0xaa, 0x4, 0x50}} return a, nil } -var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x56\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\x7c\x08\x64\x40\x91\xd2\xab\x91\x64\x91\x1a\x5d\xb4\xd8\x14\x0d\xda\x74\xf7\x3c\x11\x69\x8b\x08\x4d\xaa\x24\x65\x43\x58\xe4\xbf\x17\xa4\xa8\x07\x65\x6a\xe3\x16\xed\x69\x75\x30\x2c\x6a\x1e\xdf\x7c\x9c\x17\x3b\xd4\x52\x19\xd8\xaa\xb6\x36\x32\xf1\x6f\x1f\xb9\x3c\x3d\xcb\x57\x2a\x60\xa7\xe4\x01\x56\xc3\xfb\x6a\x90\x68\xc4\x9e\xbd\x70\x1a\x48\x4d\xcf\x06\xc9\x47\x59\xbe\x52\xe2\xce\xb4\x17\x9c\x1e\xad\x92\xa4\x28\x0a\x78\x56\x28\x34\x96\x86\x49\x01\xa6\x42\x03\x08\x65\xa3\x8d\x24\x2d\xd4\x4a\x1e\x19\xa1\x0a\x4e\xb2\xe1\x04\x34\xdb\x0b\xa7\x62\x24\x94\x8a\xa2\xa1\x80\xa0\x2b\x54\x94\x00\x96\xa5\x6c\x84\x81\x9d\x54\x80\xd0\x68\xab\x54\x49\x40\xae\x28\x92\xd6\x69\x55\xa8\xc1\x54\x94\x29\x68\x04\x77\x38\x06\xad\xce\x1a\xb1\x62\x1d\xa6\x8a\x9e\x0b\x39\x7d\xe9\x50\x58\x3b\x60\x26\xc0\x91\x6b\x99\x24\x93\x93\x34\x01\x00\xd8\x35\x9c\x3f\x90\x03\x13\x4f\xcd\x0b\x67\xe5\x27\xda\x6e\x3c\xdf\xf9\x27\xda\x3e\x32\x6d\x7e\x12\x46\xb5\x19\x14\x05\x7c\xa1\x6c\x5f\x99\x0d\xfc\x70\x73\x73\x93\xac\x01\xbe\x26\xce\x44\xad\x68\x8d\x8a\xa6\x9e\x93\x27\x4f\xc9\x06\xb0\x31\x55\xfa\xa3\x54\x4a\x9e\x3e\x23\x6f\xe8\x1a\xae\x1e\x3a\xa4\x99\x8b\xdf\xbf\x78\xc1\x3f\x8c\x54\xb8\xa7\x19\x6c\xb1\xc6\x17\xc6\x99\x61\x54\x8f\x2a\xeb\xde\x9d\x7d\x38\x35\x9e\x56\xff\x15\xee\xc0\xff\x4b\x6b\x6c\xad\xf3\x19\x9a\xf5\xa8\x1c\x28\xe6\xaf\xb4\xd5\x39\x12\x92\xd6\x23\x01\xe7\xa4\xe4\xc3\xd7\xcc\xb2\x5c\x3d\xf0\xbd\x54\xcc\x54\x87\xa8\x70\x20\x91\xc1\xc9\xf3\x16\x91\xec\x3e\xad\xc3\xc8\x8e\xd8\x70\x33\xb0\xd0\xc2\xdd\x0c\x72\x39\x21\x28\xd7\x1d\x6d\x83\x01\xfb\xe4\x4c\xeb\x86\xde\x3a\x5a\x83\xc4\xcf\xbf\x30\x53\x11\x85\xa7\x35\x5c\x0d\x75\x93\x7f\xb6\xfe\xee\xd3\xc2\x9b\x2a\x76\xfd\x17\xf7\x61\x06\x8e\x8f\xf5\xf1\x2b\x0a\xdc\x53\x05\xb7\xd7\x41\x21\xe5\x5d\xae\x3e\x9e\x09\xa6\x2e\xb0\xcd\x3c\xbe\xc5\xab\xf1\x78\x72\x8d\x47\x9a\xde\x5e\x9f\x7b\xce\xc0\xc8\x4d\xe8\xfb\xdc\xab\xcf\xab\x27\x34\xd5\x2c\x14\x33\x91\xfa\x7f\xe9\xce\x42\x90\x7f\xba\xc2\xed\x5e\xd6\x70\xf5\x4e\x00\xf7\x69\xe0\xcd\x3e\x97\x87\x1c\xa8\xc6\xe2\xff\x59\x72\xb2\x78\x87\xcf\xa3\x44\x08\xa2\xbb\x8b\x07\x42\x14\xd5\x7a\x33\x23\x0c\xbb\xe3\x2c\xd0\x98\x92\xbd\x59\xa0\x3e\x89\x00\x9d\x34\x8a\x30\x21\x02\xeb\xb7\xd7\x93\x60\xe6\x8e\x67\x29\x32\x09\x2a\x46\xd4\x32\x49\x5b\xac\xe1\x2e\x00\x14\x4b\x0d\x9f\x0d\x57\x4b\x3e\xef\xd3\x0b\xd0\xac\xa3\xf1\x07\xee\x5c\x47\xd2\x55\x1a\x02\xcc\x00\x4d\xb4\x24\xbc\x8d\x5f\xc4\x4e\x76\xed\x67\xa9\x20\x5c\x87\xfa\x1e\xcb\x81\x4f\x79\xda\xda\xfc\x97\x0a\xee\xe6\x83\x24\x1e\xf2\x8b\x9b\x72\x5d\xcc\x01\x9a\xd0\x5c\x3c\xba\x50\xe6\x3e\xb5\x8b\xc8\xb7\xee\xd0\x0b\x46\xd3\xc5\x3e\x1f\x3e\x40\x8d\x82\x95\xe9\x6a\xeb\xb6\x12\x21\x0d\x74\x00\x21\xb6\x55\x48\xb5\x9a\x32\x11\xf1\x64\x2b\xba\x1f\xaf\x81\xa7\x20\x33\xfe\x49\x37\xe8\x57\x97\xb9\xea\x34\xdb\x97\xdb\x88\x4b\xd1\x4d\x34\x5d\x63\x65\x5c\x14\xf0\xdb\x91\x2a\xc5\x08\x75\x6b\x11\xa1\x3b\x3b\x81\x26\x9b\xa4\xa2\x25\x65\x47\xaa\xf2\x85\x49\x14\xe4\x7c\x23\xfa\xd2\x2b\xba\xad\x60\x1c\x98\xbf\x7b\x3b\xa1\x73\xbf\x09\x0a\x7a\x1a\x1c\x75\x7b\xe4\x01\xd5\xab\xee\xcf\x48\x17\x8f\x06\xd4\x03\x3d\xf9\xd2\xe8\xd5\x63\xef\xbc\xa8\x40\xfb\xa6\xf4\x35\x2c\xc8\x1e\xef\xdb\xac\x29\xbd\x33\x45\x2f\x20\xa9\xa7\x28\x32\x35\xe6\x01\x84\x17\x6c\xdb\xd7\x22\xaf\x0b\xb7\x5b\x37\x06\x84\x54\x07\xe4\x23\xc1\x4c\xd8\xd5\xdb\x6e\xa6\x96\xfb\x46\xb0\xbf\x1a\x0a\x35\x9a\x2a\x3f\x6f\x79\xbd\xf9\xff\x8e\xcd\xc5\x5d\xea\xdf\x52\x37\xc7\xb9\x4c\x5a\x47\xf2\xc7\x6f\x50\x67\x7f\xdf\x92\xb7\xe4\xef\x00\x00\x00\xff\xff\xe2\xdb\xc3\xfe\x5f\x0d\x00\x00" +var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\xc1\x6e\xe3\x36\x10\xbd\xeb\x2b\x06\x39\x14\x32\xa0\x58\xe9\x55\x48\xb2\x30\x9c\x2c\x5a\x24\x6d\x82\x24\x68\xcf\xb4\x38\xb6\x08\xd3\xa4\x4a\x52\x76\x85\xc0\xff\x5e\x90\x94\x65\x52\x96\x37\x59\x74\x81\xf5\xc1\x80\xc8\x37\xc3\x37\x6f\x66\xc8\x61\x9b\x5a\x2a\x03\x73\xd5\xd6\x46\x26\xdd\xd7\x57\x2e\x77\x6f\x72\x8d\x02\x96\x4a\x6e\xe0\xa2\xff\xbe\xe8\x11\x8d\x58\xb1\x05\xc7\x08\x15\xae\xf5\xc8\x47\x59\xae\x91\xba\x35\xed\x81\x57\xff\x3e\x3e\xcd\x1f\xee\xef\xde\x9e\x1e\xee\xff\x9c\xdd\xdd\xbd\xdc\xbf\xbe\x26\x49\x9e\xe7\xf0\xa6\x88\xd0\xa4\x34\x4c\x0a\x30\x15\x31\x40\xa0\x6c\xb4\x91\xb4\x85\x5a\xc9\x2d\xa3\xa8\x60\x27\x1b\x4e\x41\xb3\x95\x70\x26\x46\x42\xa9\x90\x18\x04\x02\xba\x22\x0a\x29\x90\xb2\x94\x8d\x30\xb0\x94\x0a\x08\x34\xda\x1a\x55\x12\x08\x57\x48\x68\xeb\xac\x2a\xa2\xc1\x54\xc8\x14\x34\x82\x3b\x82\xbd\x95\xf7\x46\x2d\xcc\x73\xaa\xf0\x14\xe4\xec\xa5\x63\x61\xfd\x80\x09\x88\x13\xae\x65\x92\x04\x2b\x69\x02\x00\xb0\x6c\x38\x9f\xd1\x0d\x13\xcf\xcd\x82\xb3\xf2\x01\xdb\xa2\x53\x7d\xfa\x80\xed\x23\xd3\xe6\x5e\x18\xd5\x66\x90\xe7\xf0\x37\xb2\x55\x65\x0a\xf8\xf5\xea\xea\x2a\x99\x00\xbc\x27\xce\x45\xad\xb0\x26\x0a\xd3\x4e\x93\xe7\x4e\x92\x02\x66\x8d\xa9\x66\x9e\x5a\xe6\x02\xee\x3e\xa2\x9d\xc9\xc1\x8d\xfd\x71\x34\x9d\x5c\xdd\x2e\xdc\x84\xd8\xb4\x26\xad\x75\x3c\x38\x69\x72\x74\x10\x19\x4f\xd7\xd8\xea\x29\xa1\x34\xad\x8f\xc1\x9d\x06\x3c\xed\x77\x33\xab\x60\x35\xe3\x2b\xa9\x98\xa9\x36\xa3\xe0\x08\x91\xc1\xae\xd3\x64\x04\xe9\xb7\x26\x71\x74\x5b\xd2\x70\x33\x27\x35\x59\x30\xce\x4c\x0b\x37\x31\xe5\x1e\x6b\x7f\x53\xce\xc4\xfa\xfa\x97\xbe\xcc\xa7\x7f\x59\xe3\xdb\x34\xaf\x15\xdb\x12\x83\xf9\xf2\xb0\xe3\x36\x32\x30\x44\xad\xd0\x14\x90\x6b\x23\x15\x59\x0d\x01\x93\xc8\xfb\x97\x2f\x50\x13\xc1\xca\xf4\x62\xee\x6a\x57\x48\x03\xf6\x40\xd7\x66\xe0\x3b\xc8\x99\x41\xd9\xd3\xbd\x18\x44\xc3\x8f\x5d\xf4\x07\x11\x64\x85\x0a\xae\x2f\xa3\xde\x9a\xfa\xc2\x7d\x3c\x01\xa6\x4e\x89\x62\x28\xc8\xd9\x5c\x6a\xb2\xc5\xf4\xfa\xf2\xf4\xc4\x0c\x8c\x2c\xe2\x33\x4f\x4f\x7b\xf5\x82\x3c\x13\x53\x0d\x42\x30\x01\xea\xfb\xf2\xf2\xc1\x91\xb7\x69\x64\x64\x7f\x1f\x58\x3c\xfb\xb4\x5a\x92\xd9\x89\xed\x21\xb7\x9f\x0f\xb4\x77\x31\xf9\x56\xb6\x5d\xfc\xb0\xe9\xb2\x77\x3e\xd5\x0e\xf7\x9b\xe4\xf4\x6c\x8e\xdf\x8e\x88\xd4\xa7\x69\x46\xa9\x42\xad\x8b\x41\x2a\x89\x5f\xce\x22\xed\x8b\x33\x99\x08\x68\x04\x57\x88\x2f\x87\x48\xa4\xeb\xcb\x80\x62\x06\xd1\xde\x49\x85\x04\x5c\x03\xc5\x8e\xaa\x9f\x39\x75\x24\xf1\x81\xa7\xf7\x91\xdc\x74\x96\xbf\x8b\xa5\xdc\xdf\xa6\xdf\x06\xf8\xab\xc3\x11\x19\x4f\xf7\x38\xeb\xb1\x44\xb9\xab\xe8\x67\x95\xb3\xbf\x07\x7f\x6c\x31\x7f\xf2\xee\xf2\xd5\x3c\x78\x1f\xec\x9b\x18\x95\xb9\xad\xed\x91\x7b\xac\x13\x67\x6e\xab\x59\x2a\xb8\x19\xfa\x89\x55\x5b\x48\xa5\xe4\x6e\x54\xb7\xd8\xd1\x6d\x6a\xe7\x8b\xd1\x60\x63\xe0\x77\x85\xeb\x8f\x07\x85\x4b\x54\x28\x4a\xb4\x41\x8e\x39\x8d\xfa\x78\x64\xdf\x76\xe3\xe1\x79\x8d\x6a\xe4\xa3\xe6\x3d\x4c\x1f\x43\x78\xd8\x2f\x71\xa7\xbb\xba\x28\x46\x0b\x34\x20\x99\xe7\xf0\xb4\x45\xa5\x18\x45\x37\xc4\x50\x5c\xba\x57\xe8\x38\xfd\x29\x2c\x91\x6d\x83\x7c\xc4\x0c\x1b\x61\x4b\x21\xcd\xfd\xb3\x7e\x7c\x03\x5f\x3a\xb3\x58\xdb\xf0\xdc\x6e\x64\x13\xb8\xeb\xcf\xf0\x03\xdf\x86\xa8\xb5\x3e\xac\x51\x1f\x81\x06\xa2\x7b\x11\xce\x50\xf1\x9d\x35\x13\xed\x0b\x6a\xd9\xa8\x12\xdf\xa3\x69\x74\x7a\xa0\xb4\x1f\x74\xd7\x59\xee\x71\x2b\xfd\x9f\x37\x21\x12\xbc\x6e\x16\x20\xa4\xda\x10\x7e\x0c\x9c\x09\x3b\xbb\xda\xd1\xce\x6a\xd2\x08\xf6\x4f\x83\x50\x87\x3e\x7e\x6c\xac\x5e\xc8\xaf\x9f\x8b\xf8\xcc\x84\x13\x84\x67\xff\xf7\xc9\x3e\xf9\x2f\x00\x00\xff\xff\x41\x15\x2f\x7e\x4a\x0c\x00\x00" func lockedtokensAdminCustody_create_only_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3859,11 +3750,11 @@ func lockedtokensAdminCustody_create_only_lease_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x70, 0x57, 0xa6, 0x27, 0xa4, 0x94, 0xb4, 0xe4, 0xe5, 0xfa, 0x86, 0x9c, 0x8e, 0x63, 0x31, 0x9f, 0x77, 0xf9, 0x35, 0x41, 0x55, 0xb3, 0x84, 0xf9, 0xbd, 0x73, 0xa2, 0xd4, 0x3a, 0x46, 0x6e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x94, 0x1e, 0xca, 0x0, 0x50, 0xd7, 0x7b, 0xe4, 0xda, 0x3f, 0xbf, 0x24, 0x2b, 0xeb, 0xf1, 0x2, 0xa4, 0xdf, 0x83, 0xa0, 0xde, 0x35, 0x7b, 0x87, 0xa8, 0x96, 0xb4, 0x1f, 0x1b, 0x57, 0x7a, 0x2c}} return a, nil } -var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x57\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\x7c\x08\x64\x40\x91\xd2\x63\x8d\x24\x8b\xd4\xe8\xa2\xc5\xa6\x68\xd0\x66\x77\xcf\x13\x91\xb6\x88\xd0\xa4\x4a\x52\x36\x84\x20\xff\xbd\xe0\x43\xb2\x28\x4b\x89\x53\xb4\xa7\xea\x10\x44\xd4\x3c\xbe\xf9\xe6\xc1\x31\xdb\xd5\x52\x19\x58\xab\xb6\x36\x32\x09\x6f\x9f\xb9\x3c\x3c\xca\x67\x2a\x60\xa3\xe4\x0e\x16\xfd\xfb\xa2\x97\x68\xc4\x96\x3d\x71\x1a\x49\x0d\xcf\x7a\xc9\x7b\x59\x3e\x53\xe2\xce\x74\x10\x1c\x1e\x2d\x92\xa4\x28\x0a\x78\x54\x28\x34\x96\x86\x49\x01\xa6\x42\x03\x08\x65\xa3\x8d\x24\x2d\xd4\x4a\xee\x19\xa1\x0a\x0e\xb2\xe1\x04\x34\xdb\x0a\xa7\x62\x24\x94\x8a\xa2\xa1\x80\xa0\x2b\x54\x94\x00\x96\xa5\x6c\x84\x81\x8d\x54\x80\xd0\x68\xab\x54\x49\x40\xae\x28\x92\xd6\x69\x55\xa8\xc1\x54\x94\x29\x68\x04\x77\x38\x7a\x2d\x6f\x8d\x58\x31\x8f\xa9\xa2\xa7\x42\x4e\x5f\x3a\x14\xd6\x0e\x98\x01\x70\xe4\x5a\x26\xc9\xe0\x24\x4d\x00\x00\x6a\x54\x86\x21\xbf\x23\x3b\x26\x1e\x9a\x27\xce\xca\x2f\xb4\x5d\x05\xca\xf3\x2f\xb4\xbd\x67\xda\xfc\x2c\x8c\x6a\x33\x28\x0a\xf8\x4e\xd9\xb6\x32\x2b\xf8\xe1\xea\x6a\xa8\xfe\x55\x53\xf5\x01\xed\x1f\xaf\xae\x92\x25\xc0\x4b\xe2\x6d\x28\x5a\xa3\xa2\x69\xe0\xf4\x21\x50\xba\x02\x6c\x4c\x95\xfe\x24\x95\x92\x87\x6f\xc8\x1b\xba\x84\x8b\x3b\x1f\x69\xe6\xf8\x0b\x2f\x41\xf0\x4f\x23\x15\x6e\x69\x06\x6b\xac\xf1\x89\x71\x66\x18\xd5\x47\x95\x65\xe7\xce\x3e\x9c\x9a\x90\x96\xf0\x15\x6e\x20\xfc\x97\xd6\xd8\x5a\xe7\x23\x34\xcb\xa3\x72\xa4\x98\x3f\xd3\x56\xe7\x48\x48\x5a\x1f\xe3\x9f\x24\x35\xef\x05\x32\x9b\xa8\xea\x8e\x6f\xa5\x62\xa6\xda\xcd\xc9\x47\x42\x19\x1c\x02\x79\xd3\xc2\xfe\xeb\xf2\xe3\x20\xa3\xd4\xbd\x8f\x31\x16\x7f\x1b\x62\x2c\xdb\x21\x8c\x92\xb0\xc7\x86\x9b\x3e\x61\x2d\xdc\x8c\x80\x97\x83\x5c\xe6\xda\x67\xb8\x37\x60\x9f\x9c\x69\xdd\xd0\x6b\x57\x01\x51\x8f\xe7\xdf\x99\xa9\x88\xc2\xc3\x12\x2e\xfa\x11\x91\x7f\xb3\xfe\x6e\xd3\x22\x98\x2a\x36\xdd\x17\xf7\x61\x04\x8e\x1f\x47\xc1\x6f\x28\x70\x4b\x15\x5c\x5f\x46\x33\x23\xf7\x6d\x79\x7f\x22\x98\xba\xc0\x56\xe3\xf8\x66\xab\x28\xe0\xc9\x35\xee\x69\x7a\x7d\x79\xea\x39\x03\x23\x57\xb1\xef\x53\xaf\xa1\x05\x1e\xd0\x54\xa3\x50\xcc\x40\xea\xbf\xa5\x3b\x8b\x41\x7e\x75\x33\xca\xbf\x2c\xe1\xe2\x9d\x00\x6e\xd3\xc8\x9b\x7d\xce\x0f\x39\x52\x9d\x8a\xff\x17\xc9\xc9\x6c\x0e\x1f\x8f\x12\x31\x08\x9f\x8b\x3b\x42\x14\xd5\x7a\x35\x22\x0c\xfd\x71\x16\x69\x0c\xc9\x5e\xcd\x50\x9f\x4c\x00\x1d\xcc\xb4\xb8\x20\x22\xeb\xd7\x97\x83\x60\xc6\x8e\x47\x25\x32\x08\x6a\x8a\xa8\x79\x92\xd6\x58\xc3\x4d\x04\x68\xaa\x34\x42\x35\x5c\xcc\xf9\xbc\x4d\xcf\x40\xb3\x9c\x8c\x3f\x72\xe7\xa6\x92\xae\xd2\x18\x60\x06\x68\x26\x5b\x22\xd8\xf8\x55\x6c\xa4\x1f\x3f\x73\x0d\xe1\x66\xe8\xff\xb1\x1d\xf8\x90\xa7\xb5\xad\x7f\xa9\xe0\x66\x7c\xe7\x4d\x87\xfc\xe4\x2e\x64\x1f\x73\x84\x26\x36\x37\x1d\x5d\x2c\x73\x9b\xda\x9d\xeb\xad\x1c\x06\xc1\xc9\x72\xb1\xcf\xa7\x4f\x50\xa3\x60\x65\xba\x58\xbb\x05\x4c\x48\x03\x1e\x20\x4c\x2d\x50\x52\x2d\x86\x4c\x4c\x78\xb2\x1d\xdd\x6d\x02\x91\xa7\xa8\x32\x3e\x32\x0d\xba\x2d\x6d\xac\x3a\xac\xf6\xf9\x31\xe2\x4a\x74\x35\x59\xae\x53\x6d\x5c\x14\xf0\xfb\x9e\x2a\xc5\x08\x75\x1b\x20\xa1\x1b\x7b\x03\x0d\x96\x66\x45\x4b\xca\xf6\x54\xe5\x33\x37\x51\x54\xf3\x8d\xe8\x5a\xaf\xf0\x9b\xc1\xf1\xc2\xfc\x23\xd8\x89\x9d\x87\xa5\x57\xd0\x43\xef\xc8\xaf\xcc\x3b\x54\xcf\xba\x3b\x23\x3e\x1e\x0d\xa8\x7b\x7a\xf2\xb9\xab\x57\x1f\x67\xe7\x59\x0d\xda\x0d\xa5\x97\xb8\x21\x3b\xbc\xaf\xa3\xa1\xf4\xce\x2d\x7a\x06\x49\x1d\x45\x13\xb7\xc6\x38\x80\x38\xc1\x76\x7c\xcd\xf2\x3a\x93\xdd\xba\x31\x20\xa4\xda\x21\x3f\x12\xcc\x84\xfd\x95\x61\x97\x68\xcb\x7d\x23\xd8\x5f\x0d\x85\x1a\x4d\x95\x9f\x8e\xbc\xce\xfc\xbf\xc7\xe6\xec\x2e\xf5\x4f\xa9\x1b\xe3\x9c\x27\xcd\x93\xfc\xf9\x0d\xea\xec\xdf\xd7\xe4\x35\xf9\x3b\x00\x00\xff\xff\x5e\x53\xd5\xd4\x4a\x0e\x00\x00" +var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x5f\x6f\xab\x36\x14\x7f\xe7\x53\x1c\xf5\x61\x22\x52\x1a\xb2\xc7\xa1\xf6\x5e\x45\x69\xaf\x36\xb5\x5b\xab\xb6\xdb\x9e\x1d\x38\x09\x56\x88\xcd\x8e\x4d\x32\x54\xf5\xbb\x4f\xb6\x09\x60\x02\x6d\x3a\x4d\xda\xe5\x29\xd8\xbf\xf3\xef\x77\xfe\x70\xc2\x77\x85\x24\x0d\x4b\xaa\x0a\x2d\x83\xfa\xed\x5b\x2e\x0f\x2f\x72\x8b\x02\xd6\x24\x77\x70\xd1\xbc\x5f\x34\x88\x52\x6c\xf8\x2a\x47\x0f\xd5\x3d\x6b\x90\xf7\x32\xd9\x62\x6a\xcf\x94\x03\xce\xff\xbe\x7f\x58\xde\xdd\xde\xbc\x3c\xdc\xdd\xfe\xb6\xb8\xb9\x79\xba\x7d\x7e\x0e\x82\x28\x8a\xe0\x85\x98\x50\x2c\xd1\x5c\x0a\xd0\x19\xd3\xc0\x20\x29\x95\x96\x69\x05\x05\xc9\x3d\x4f\x91\xe0\x20\xcb\x3c\x05\xc5\x37\xc2\x8a\x68\x09\x09\x21\xd3\x08\x0c\x54\xc6\x08\x53\x60\x49\x22\x4b\xa1\x61\x2d\x09\x18\x94\xca\x08\x65\x12\x58\x4e\xc8\xd2\xca\x4a\x65\x4c\x81\xce\x90\x13\x94\x22\xb7\x0e\x36\x52\x4e\x5b\x6a\x60\xce\xa7\x0c\x4f\x41\x56\x5e\x5a\x2f\x8c\x1e\xd0\x1d\xc7\x59\xae\x64\x10\x74\x4e\xc2\x00\x00\xa0\x60\xa4\x39\xcb\x17\xe9\x8e\x8b\xc7\x72\x95\xf3\xe4\x0e\xab\xb8\x26\x7e\x76\x87\xd5\x3d\x57\xfa\x56\x68\xaa\xa6\x10\x45\xf0\x27\xf2\x4d\xa6\x63\xf8\x71\x3e\xef\x8a\xff\xae\x90\x3e\x21\xfd\xd3\x7c\x1e\x4c\x00\x5e\x03\xa7\x83\xb0\x60\x84\x61\xcd\xe9\x63\x4d\x69\x0c\x8b\x52\x67\x0b\x17\xda\xd4\x12\x56\xbf\x78\x37\x93\xa3\x1a\xf3\xe4\xa8\x6b\xba\xeb\x5b\xb8\xee\x62\xc3\x82\x55\x46\x71\xcf\xd2\xa4\x55\xe0\x09\xcf\xb6\x58\xa9\x19\x4b\xd3\xb0\x68\x63\x1b\x24\x6c\xd6\x00\xa6\x26\x09\xd9\x22\xdf\x48\xe2\x3a\xdb\x8d\xe1\x3d\xd0\x14\x0e\x35\x31\xc3\x60\x77\x3b\xf9\xbc\x93\x5e\x5a\x3e\xf6\xd1\x87\xbf\xef\xa2\x8f\x3d\x7a\xe8\x25\x62\xcf\xca\x5c\x2f\x59\xc1\x56\x3c\xe7\xba\x82\x6b\xdf\xf1\x06\x6b\x9e\x59\xce\xc5\xf6\xea\x87\xa6\xa3\x67\x7f\x18\xe1\x2f\x61\x54\x10\xdf\x33\x8d\xd1\xfa\x78\x63\x2f\xa6\xa0\x19\x6d\x50\xc7\x10\x29\x2d\x89\x6d\xfa\x80\x89\xa7\xfd\xeb\x57\x28\x98\xe0\x49\x78\xb1\xb4\x6d\x2a\xa4\x06\x63\xd0\x4e\x14\x70\xc3\xc2\x8a\x41\xd2\xb8\x7b\xd1\x8b\x26\x6f\x07\xc6\xaf\x4c\xb0\x0d\x12\x5c\x5d\x7a\x63\x64\xe6\x7a\xf4\xfe\x04\x18\x5a\x26\xe2\x3e\x21\xa3\x65\xa7\xd8\x1e\xc3\xab\xcb\x53\x8b\x53\xd0\x32\xf6\x6d\x9e\x5a\x7b\x76\x84\x3c\x32\x9d\xf5\x42\xd0\x1d\xd4\xe7\xf2\xf2\x81\xc9\x2f\xa1\x27\x64\x9e\x0f\x24\x1e\x5d\x5a\x8d\x93\xd3\x13\xd9\x63\x6e\xcf\x0f\xd4\x53\x71\x66\xee\x2d\x1b\xb0\xab\x73\x39\x9e\x78\x8b\xfb\x59\xe6\xe9\x68\xc6\x5f\x5a\x84\x4f\x84\xcb\xe0\x22\x4d\x09\x95\x8a\x7b\x59\x66\xee\xd8\x0f\xbf\x9b\xa2\x78\x24\x61\x41\x1b\x68\xf3\xb3\x33\x1d\x5d\xf9\x78\x5a\xaf\x2e\x3b\x41\xf4\x0d\xf6\x78\xee\x04\xd3\x21\x78\xfa\x91\xd1\x81\x3a\xe9\x68\x7a\x1d\x48\x65\x2d\xf9\x8b\x58\xcb\xb7\x5e\x01\xbd\x8f\x76\x63\xe7\xb4\x74\x06\xcb\x66\x38\x9c\xa1\x68\x9a\x5c\xdb\xe9\xfb\x7f\xf5\x87\x1b\xfd\xdf\x4b\x77\xf4\x3e\x94\x66\xb9\xf0\xda\xc6\xf4\xca\xc0\x94\xac\x99\x5a\x9a\xee\x90\x04\xd7\x7d\x3d\x3e\x85\x2b\x49\x24\x0f\x83\x24\xfa\x8a\x06\x68\x34\x9b\xdb\x20\x15\xbe\xe4\xbf\x27\xc3\x39\x07\x84\x6b\x24\x14\x09\x1a\x0a\x86\x2c\x78\x53\x63\xe0\xde\xb4\xfb\x71\x0b\xf1\x8c\x7a\xb5\xf5\x99\x51\x71\xdc\xfe\xfa\xa2\xdd\xae\x1c\x9f\x31\xb6\xce\xe2\xc1\x82\x1f\x6a\x8e\x28\x82\x87\x3d\x12\xf1\x14\xed\x66\x99\xe2\xda\x7e\x2f\xdb\x95\x9c\x30\x41\xbe\xef\xe4\xd6\x0f\xa1\x14\xa6\xac\xc2\xc8\x2d\x21\xed\xd7\xfa\xa9\x16\xf3\x6d\xd5\xbb\xb3\xc0\x43\xa3\xd7\x6d\xde\x3b\x46\x5b\x75\x3c\x4b\x9d\xfb\x0a\x98\x6a\xd8\x18\x31\xef\xda\x74\x21\xaa\x27\x54\xb2\xa4\x04\x5f\xbd\xbf\x05\xb3\xa3\x1b\xfd\x49\x34\xea\xef\x19\xa3\xe7\xbc\x9e\xf4\x03\x2f\xca\x15\x08\x49\x3b\x96\xb7\x81\x73\x61\xfe\x44\x98\x1d\xd9\x70\x52\x0a\xfe\x57\x89\x50\x74\x75\xfc\xb7\xb1\x3a\x22\xbf\x9d\x17\xf1\xc8\xfe\x15\xf8\x1d\xf6\x16\xbc\x05\xff\x04\x00\x00\xff\xff\x08\xa5\x96\x62\xd3\x0d\x00\x00" func lockedtokensAdminCustody_create_only_shared_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3879,11 +3770,11 @@ func lockedtokensAdminCustody_create_only_shared_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_shared_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb5, 0xcb, 0x34, 0xec, 0x63, 0x57, 0xda, 0x6, 0x6f, 0xff, 0xcb, 0x7a, 0x67, 0x64, 0x86, 0xa4, 0x6, 0xb6, 0x9e, 0xe0, 0x59, 0xe9, 0x76, 0x17, 0x35, 0x46, 0x12, 0xe1, 0xb0, 0x66, 0x28, 0x86}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x8b, 0x56, 0x8b, 0x4e, 0x76, 0xa4, 0x45, 0xa9, 0x6c, 0x88, 0x43, 0x8f, 0x9e, 0x4d, 0xd8, 0x90, 0x8e, 0x18, 0xdc, 0x85, 0xa6, 0x83, 0xad, 0x29, 0xac, 0xca, 0x39, 0x4, 0x96, 0xd0, 0xcc}} return a, nil } -var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x57\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\x7c\x08\x64\xc0\x91\xbc\xc7\x1a\x49\x16\xa9\xd1\x45\x8b\x4d\xd1\xa0\xcd\xee\x9e\x27\xd2\xd8\x22\x22\x93\x2a\x3f\x6c\x18\x8b\xfc\xf7\x82\x12\x25\x8b\x12\x95\xd8\x45\x7b\x5a\x1d\x82\x48\x7c\x33\xf3\xe6\x71\x38\x1c\xb3\x5d\x25\xa4\x86\xb5\x3c\x56\x5a\x44\xee\xed\x53\x29\x0e\x4f\xe2\x85\x38\x6c\xa4\xd8\xc1\xac\x7b\x9f\x75\x08\xc3\xb7\xec\xb9\x24\x0f\xd5\xff\xd6\x21\x1f\x44\xf6\x42\x79\xfd\x4d\x39\x60\xff\xd3\x2c\x8a\xd2\x34\x85\x27\x89\x5c\x61\xa6\x99\xe0\xa0\x0b\xd4\x80\x90\x19\xa5\x45\x7e\x84\x4a\x8a\x3d\xcb\x49\xc2\x41\x98\x32\x07\xc5\xb6\xbc\x36\xd1\x02\x32\x49\xa8\x09\x10\x54\x81\x92\x72\xc0\x2c\x13\x86\x6b\x40\x9e\x03\x72\x30\xbc\xac\x23\xd5\xf0\x76\x6d\x23\x24\x20\x18\x45\x32\x8a\xf4\x29\x6a\x1c\x01\x00\x54\x28\x35\xc3\xf2\x3e\xdf\x31\xfe\x68\x9e\x4b\x96\x7d\xa6\xe3\xca\xa9\x93\x7c\xa6\xe3\x03\x53\xfa\x17\xae\xe5\x71\x01\x69\x0a\xdf\x88\x6d\x0b\xbd\x82\x0f\xcb\x65\xdf\xfc\x8b\x22\x79\x81\xf5\x4f\xce\x7a\x63\xca\x4b\x4d\x3f\x2c\x97\xcb\x68\x0e\xdf\xa3\x26\xbc\xa4\x0a\x25\xc5\x4e\xb9\x47\x27\xdc\x0a\xd0\xe8\x22\xfe\x59\x48\x29\x0e\x5f\xb1\x34\x34\x87\xab\xfb\x46\x8e\xce\xd6\x3e\x25\x69\xa7\xa4\x5b\x85\x5b\x70\xff\xc5\x15\x1e\xad\xa7\x81\xeb\xb9\x67\x6b\x45\x3d\xdf\xb2\x33\xf5\x42\x26\x2f\x74\x54\x09\xe6\x79\x5c\x9d\x64\x08\x6e\x4b\xd2\x01\x16\x50\xa0\x2a\xee\xcb\xad\x90\x4c\x17\xbb\x29\xbc\x07\x5a\xc0\xc1\x69\x18\x06\x37\xab\xf3\xcb\x49\x7a\x3b\xf8\x3e\x47\x1f\xfe\x36\x45\x1f\xdb\x32\xec\x28\xf6\xe4\x0f\x12\x1c\xd5\xd7\x1b\xec\xc6\xd8\x09\x6a\x63\xe0\x88\x97\x2d\x8d\x3d\x9a\x52\xaf\xb1\xc2\x67\x56\x32\x7d\x84\xdb\x81\xa0\x59\xbb\xc4\x48\x25\x4a\x0b\x89\x5b\xea\x1c\xd8\x27\x61\x4a\x19\xba\xa9\x2b\xd9\x6b\x34\xc9\x37\xa6\x8b\x5c\xe2\x61\x0e\x57\x5d\x9f\x4a\xbe\xda\x78\x77\x71\xea\x5c\xa5\x9b\x76\xa5\x5e\x18\x90\x2b\x4f\xfd\xe8\x77\xe4\xb8\x25\x09\x37\xd7\x5e\xe3\x4a\x9a\x4e\xf3\x30\x02\xc6\x75\x62\xab\x61\x7e\x93\xd5\xed\xf8\x24\x0a\xf7\x14\xdf\x5c\x8f\x23\x2f\x40\x8b\x95\x1f\x7b\x1c\xf5\xaf\xc6\xcb\x23\xea\x62\x90\x8a\xee\xa1\xfe\x5f\xb9\x17\x3e\xc9\x2f\x75\xaf\x6d\x5e\xe6\x70\xf5\x4e\x02\x77\xb1\x17\xcd\x3e\xe7\xa7\xec\x99\x86\xf2\xff\x55\x94\xf9\xe4\x1e\x3e\x9d\x10\x3e\x89\x66\x2f\xee\xf3\x5c\x92\x52\xab\x81\x60\xd8\x7c\x5e\x78\x16\x7d\xb1\x57\x13\xd2\x47\x01\xa2\xfd\x83\xea\x15\x84\xe7\xfd\xe6\xba\x97\xcc\x30\xf0\xa0\x44\x7a\x49\x85\x84\x9a\x16\x69\x8d\x15\xdc\x7a\x84\x42\xa5\xe1\xaa\xe1\x6a\x2a\xe6\x5d\x7c\x06\x9b\x79\x30\x7f\x2f\x5c\xdd\x8f\x54\x11\xfb\x04\x17\x80\x3a\x78\x24\x9c\x8f\xdf\xf8\x46\x34\xed\x67\xea\x40\xd4\xbd\xfd\x47\x3c\x0e\x65\x5f\xa7\xb5\xad\x7f\x21\xe1\x76\x78\x17\x87\x53\x7e\xae\xe7\x85\x26\x67\x8f\x8d\xef\x2e\x9c\x9d\x8f\xb9\x8b\xed\xe0\xf7\xd6\x1e\x3a\x60\xb0\x5c\xec\xf3\xf1\x23\x54\xc8\x59\x16\xcf\xd6\xf5\x14\xc8\x85\x86\x86\x60\x37\xd8\x65\x2e\x3d\x49\x1b\x92\xc4\x33\x9a\xf5\xc5\x08\x04\xb3\x87\xba\x1d\x52\xbc\x60\x5e\x71\x5c\xd2\x10\xda\x81\x73\x68\xda\x2f\xf8\xe9\x4e\x52\x57\xe9\x2a\x58\xb1\xa1\x93\x9c\xa6\xf0\xc7\x9e\xa4\x64\x39\x81\x2e\x08\x72\xda\xd8\x4b\xa8\x37\xbc\x4b\xca\x88\xed\x49\x26\x13\x97\x91\x57\xf6\x86\xb7\xa7\x2f\x6d\xc6\x82\xd3\x9d\xf9\xa7\xf3\xe3\x07\x77\xc3\x37\xa7\x43\x17\xa8\x19\xdd\x77\x28\x5f\x54\xfb\x2d\x6f\xf2\x51\x80\xaa\x93\x27\x99\xba\x7d\xd5\xa9\x7d\x9e\x75\x46\xdb\xbe\xf4\xdd\x3f\x93\x2d\xdf\xd7\x41\x5f\x7a\xe7\x22\x3d\x43\xa4\x56\xa2\xc0\xc5\x31\x4c\xc0\xdf\x60\xdb\xc1\x26\x75\x9d\xd8\xdd\xca\x68\xe0\x42\xee\xb0\x3c\x09\xcc\xb8\xfd\xb5\x63\xc7\x7c\xab\xbd\xe1\xec\x6f\x43\x50\xa1\x2e\x92\x71\xd7\x6b\xdd\xff\x77\x6a\x4e\x8e\x53\xff\x56\xba\x21\xcf\x69\xd1\x1a\x91\x3f\xbd\x21\x9d\xfd\xfb\x1a\xbd\x46\xff\x04\x00\x00\xff\xff\xc9\x01\x7a\xda\xd2\x0e\x00\x00" +var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\xd1\x6f\xb3\x36\x10\x7f\xe7\xaf\x38\xf5\x61\xa2\x52\x0a\xf9\x1e\x87\xda\x7d\x8a\xd2\x7e\xda\xd4\x6c\x8d\xda\x6c\x7b\x76\xe0\x12\xac\x10\x9b\xd9\x26\x19\xaa\xfa\xbf\x4f\xc6\x04\x30\x98\x26\xf9\x34\x69\xe3\x0d\xf8\x9d\xef\xee\xf7\xbb\x3b\xdb\x74\x9f\x73\xa1\x60\x2e\xca\x5c\x71\xaf\x7e\xfb\x96\xf1\xe3\x8a\xef\x90\xc1\x46\xf0\x3d\xdc\x34\xef\x37\x0d\xa2\x60\x5b\xba\xce\xd0\x42\x75\xbf\x35\xc8\x05\x8f\x77\x98\x54\xdf\xa4\x01\x4e\xff\x5e\xbc\xcc\x9f\x9f\x1e\x57\x2f\xcf\x4f\xbf\xcd\x1e\x1f\x5f\x9f\xde\xde\x3c\x2f\x0c\x43\x58\x09\xc2\x24\x89\x15\xe5\x0c\x54\x4a\x14\x10\x88\x0b\xa9\x78\x52\x42\x2e\xf8\x81\x26\x28\xe0\xc8\x8b\x2c\x01\x49\xb7\xac\x32\x51\x1c\x62\x81\x44\x21\x10\x90\x29\x11\x98\x00\x89\x63\x5e\x30\x05\x84\x25\x40\x18\x14\x2c\xab\x42\xa8\xe0\xa7\x7f\x1b\x2e\x80\x40\x21\x51\x78\x9e\x6a\xbd\xfa\x1e\x00\x40\x4e\x84\xa2\x24\x9b\x25\x7b\xca\x96\xc5\x3a\xa3\xf1\x33\x96\x51\xcd\x51\xf0\x8c\xe5\x82\x4a\xf5\xc4\x94\x28\x27\x10\x86\xf0\x27\xd2\x6d\xaa\x22\xf8\x32\x9d\x76\xcd\x7f\x97\x28\xae\xb0\xfe\xb1\xb6\xde\x14\xd9\xb5\xa6\x5f\xa6\xd3\xa9\x77\x0b\xef\x9e\x71\x2f\x30\x27\x02\xfd\x9a\xb9\x65\x4d\x5c\x04\xb3\x42\xa5\x33\x93\x7f\x03\xd6\x4f\x86\xaa\xa6\xae\xfe\x0b\x0f\x5d\xac\x9f\x93\x52\x9b\xf7\xd6\xbb\xb5\xec\x35\x93\xd7\x59\x37\xe6\x96\xeb\x60\x87\xa5\x0c\x48\x92\xf8\x79\x9b\xbf\x53\x8f\xa0\x01\x4c\x20\x25\x32\x9d\x65\x5b\x2e\xa8\x4a\xf7\x63\x78\x0b\x34\x81\x63\x4d\x9e\x1b\x6c\xfe\xde\x5e\x1f\xa4\x25\xdd\xf9\x18\x6d\xf8\xe7\x21\xda\xd8\x53\x84\x4d\x88\x1d\x09\x9c\x01\x0e\x0a\xeb\x93\xe8\x86\xd8\x91\xd0\x86\xc0\x41\x5c\xba\x3c\x0e\xa4\xc8\xd4\x9c\xe4\x64\x4d\x33\xaa\x4a\x78\xb0\x09\x6d\xb0\xfa\x09\x32\xca\x76\xf7\x3f\x34\x33\x27\xf8\x43\x1b\xff\xe4\x5b\x20\xfd\x84\xb9\xa0\x07\xa2\x30\xdc\x9c\xa0\x15\x72\x32\x00\x2a\x22\xb6\xa8\x22\x08\xa5\xe2\x82\x6c\xfb\x06\x16\xfe\xd6\x7a\xfb\xfa\x15\x72\xc2\x68\xec\xdf\xcc\xab\xb1\xc3\xb8\x02\x1d\x5e\x35\x21\xc1\x0c\xbf\x6a\x0d\x88\x9b\xe4\x6e\x7a\xb9\x67\xed\x00\xfc\x95\x30\xb2\x45\x01\xf7\x77\xd6\x58\x0c\xcc\x04\x5b\x0c\x80\x7e\xc5\x5b\xd4\xa7\x6f\xb4\x79\x24\x39\xa0\x7f\x7f\x37\xf4\x38\x01\xc5\x23\xdb\xe7\xd0\xdb\x9b\x61\x67\x49\x54\xda\x4b\x41\x75\x50\xd7\xa9\x78\xc6\xa5\x43\xd5\x33\x16\x4b\xa3\xb9\x0e\x72\x5c\xe8\xcb\x13\xfd\x1e\xed\x2b\x36\x60\x5f\x6b\x39\x2e\x7c\x85\xfb\x99\x67\xc9\xa8\xe2\xab\x16\x61\x13\x61\x14\x9c\x25\x89\x40\x29\xa3\x9e\xca\xc4\x7c\xb6\xd3\xef\x4a\x14\x8d\x08\xe6\xb5\x89\x3a\xa7\x46\x55\x3e\xd6\xaa\xf7\x77\x9d\x24\xfa\x0e\x7b\x3c\x77\x92\xe9\x10\x3c\x39\xe7\xd4\x51\x27\x9d\x95\xde\x1d\x52\xd6\x96\xbf\xb0\x0d\xff\xe8\x15\xd0\xe7\x68\x33\xa4\x86\xa5\xe3\x2c\x1b\x77\x3a\xae\x6c\x1a\xad\xab\x3d\xe4\xbf\xea\x0f\xb3\x81\xfd\x5f\xba\xa3\xb7\xdd\xeb\x63\x9a\xd5\x36\xee\x21\x59\x13\x35\xd7\xcd\xc1\x05\x3c\xf4\x97\xb1\x19\x5c\x73\x21\xf8\xd1\xc9\xa1\xbd\x90\x83\x45\x7d\x10\x75\x32\x61\x5b\x7e\x3f\x17\x26\x38\x10\xb8\x41\x81\x2c\x46\xcd\x80\xcb\x83\x45\x84\xe3\xbf\xee\xf6\xd3\x51\xca\x72\x6a\x95\xd6\x35\x93\xe2\x74\x1e\xee\x9b\x76\x9b\x72\x7c\xc4\x54\x65\x16\x39\xeb\xdd\xd5\x1b\x61\x08\x2f\x07\x14\x82\x26\x08\x2a\x45\x48\x70\x53\x6d\x97\xed\x0d\x43\x60\x8c\xf4\xd0\xd1\xd6\x4e\xa1\x60\xba\xaa\xfc\xd0\x9c\x55\xda\x9d\xfb\xb5\x36\xb3\x7d\xd5\x57\x01\x86\xc7\x66\x5d\x73\x91\xd8\x13\xb1\x93\xa7\x6f\x89\x09\x5f\x02\x91\xed\xed\xc0\xed\xde\x74\xe9\x8c\x95\xaf\x28\x79\x21\x62\x7c\xb7\x6e\x39\xc1\x29\x8c\xfe\x20\x1a\x8d\xf7\x82\xc9\x73\x59\x4b\xda\x89\xe7\xc5\x1a\x18\x17\x7b\x92\xb5\x89\x53\xa6\xef\x44\xfa\x32\xa0\x39\x29\x18\xfd\xab\x40\xc8\xbb\x6b\xfc\xbb\xb9\x1a\x22\xbf\x5d\x96\xf1\xb9\xb3\x98\xe9\xb0\x0f\xef\xc3\xfb\x27\x00\x00\xff\xff\x10\x54\x8e\x2b\xa2\x0e\x00\x00" func lockedtokensAdminCustody_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3899,11 +3790,11 @@ func lockedtokensAdminCustody_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf3, 0xe, 0xc3, 0x37, 0x56, 0x79, 0x7a, 0xd2, 0x50, 0xf8, 0x43, 0xbd, 0x89, 0x1c, 0xea, 0xf5, 0x20, 0xaf, 0x98, 0xab, 0x7f, 0xb6, 0xbc, 0x90, 0x75, 0x94, 0x37, 0x46, 0xaf, 0xd7, 0xa9, 0xb0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x49, 0x71, 0x7f, 0x10, 0xaa, 0xba, 0x85, 0xd5, 0xcd, 0x28, 0xed, 0xed, 0x17, 0xae, 0x61, 0x97, 0x25, 0x8c, 0xba, 0xf8, 0x5, 0x28, 0x28, 0xaf, 0x82, 0xe0, 0x14, 0x94, 0xb0, 0x60, 0xad, 0x6b}} return a, nil } -var _lockedtokensAdminCustody_setup_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x51\xcb\x6a\xeb\x30\x10\xdd\xeb\x2b\x86\x2c\x82\x03\x79\xec\x43\xee\x85\x90\x6d\x17\x86\x94\xee\x27\xf2\xb4\x16\x96\x25\x31\x1a\xb9\x94\x92\x7f\x2f\xae\x89\x6b\xa5\xe9\x03\x3a\x0b\x2f\x8e\x47\xe7\x35\xa6\x0d\x9e\x05\xee\xbc\x6e\xa8\xba\xf7\x0d\xb9\x08\x8f\xec\x5b\x98\x4d\xa1\x99\x52\xc2\xe8\x22\x6a\x31\xde\xc1\xab\x52\x00\x00\x81\x29\x20\x53\xa1\x53\x14\x5f\xbd\x94\xec\x3b\x53\x11\x6f\x01\x93\xd4\xc5\x11\x3b\x7a\x40\x9b\x68\x09\x07\x0c\x78\x32\xd6\x88\xa1\xb8\x80\xf9\x5e\x6b\x9f\x9c\x2c\x2e\x3c\xfd\x58\x12\xc0\x01\x3f\x30\xa1\x78\x86\xdd\x2a\xb3\xb5\xd6\x3d\x4e\x03\xb4\xcf\x56\x8b\xc5\x07\xd1\x95\x99\x75\x14\xcf\xf8\x44\xeb\x88\x1d\x15\xe3\x56\x3f\xbb\x55\x2e\xb8\xcc\xfe\x8a\xdf\xe6\xf2\xb7\x84\x8f\x03\x79\x89\x52\x8f\x8f\x27\x5e\x36\x1b\x18\x4c\x83\xa3\x67\x60\xd2\x64\x3a\x62\x90\x1a\x05\x5a\xe4\x26\x5e\xb0\x0a\x64\xa8\x1e\x23\x24\x67\xdf\x95\xb2\x6a\xec\x0d\xf1\x03\x06\xf8\xf7\x29\xaf\x9e\x74\x3d\x86\x37\x31\x26\xda\xcd\x7f\xcc\xf3\x3f\x6f\xe8\xaf\xf9\xbf\xf5\x16\xd2\xc9\x9a\x58\xe7\x8a\x5f\xe4\xcc\x4f\x83\xf2\x8b\xd3\x94\x3d\xbd\xbe\x72\xd6\x7f\xcf\xea\xac\xde\x02\x00\x00\xff\xff\xb3\xbb\x63\xe2\xf6\x02\x00\x00" +var _lockedtokensAdminCustody_setup_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\xdd\x6a\xc2\x40\x10\x85\xef\xf7\x29\xe6\xaa\x28\xf8\xd3\x6b\x91\x42\xd0\x5c\x29\x35\x34\xbe\xc0\x74\x33\x35\x4b\x92\xdd\x30\x3b\x49\x5b\x24\xef\x5e\x62\x30\x65\xa5\xc5\x76\xee\xf6\xcc\xcf\x39\xfb\x99\xaa\x76\x2c\xb0\x77\xba\xa0\xec\xe8\x0a\xb2\x1e\xde\xd8\x55\xf0\xf8\xb1\x3f\x6c\x76\xf1\xf6\x78\xd8\xc5\xcf\xd1\x76\xfb\x12\xa7\xa9\x52\xc2\x68\x3d\x6a\x31\xce\xc2\x59\x29\x00\x80\x9a\xa9\x46\xa6\x89\x6e\xbc\xb8\xec\x33\x61\xd7\x9a\x8c\x78\x05\x51\x23\x79\xa4\xb5\x6b\xac\x4c\xaf\xc3\x7d\x95\x24\x80\x83\xbe\x61\x42\x71\x0c\xeb\x79\x90\x60\xa1\x7b\x9d\x06\x29\x0a\x46\x27\xd3\xef\x43\x37\x8e\x0b\x8f\x2d\x4d\xc6\x6e\x5f\xeb\x79\x68\x34\x83\xa0\x2d\x6e\x15\xfa\xfe\xe4\x98\x8a\x63\x3c\x51\x82\x92\xcf\xc6\xed\x69\x70\x67\x7c\x2c\x97\x30\x44\x07\x4b\xef\xc0\xa4\xc9\xb4\xc4\x20\x39\x0a\x54\xc8\x85\xbf\x6a\x19\xc8\xc0\x1a\x3d\x34\xb6\xbc\xd8\xfe\xfa\xaf\xd2\xd8\x62\xfd\x70\x37\xe8\xf9\xee\x44\xd2\xbc\x96\x46\x77\x4f\x21\xa4\x3f\xae\x85\x00\x2e\xf8\x90\x4f\x24\xff\x43\x78\x43\xb0\x53\x9d\xfa\x0a\x00\x00\xff\xff\x03\x0d\xf1\xc2\x83\x02\x00\x00" func lockedtokensAdminCustody_setup_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3919,11 +3810,11 @@ func lockedtokensAdminCustody_setup_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_setup_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcb, 0x18, 0xe4, 0x77, 0xf3, 0x8, 0x1c, 0x54, 0xd1, 0x5, 0x32, 0x49, 0x92, 0x5f, 0x1e, 0x68, 0xe1, 0x59, 0x8d, 0x29, 0x7e, 0x52, 0xc6, 0x8e, 0x2e, 0x6b, 0xc4, 0xe4, 0xe8, 0x87, 0x58, 0x72}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x96, 0xaa, 0x40, 0xfa, 0xc7, 0xc8, 0x86, 0x4b, 0xda, 0x8f, 0x8a, 0x8f, 0x20, 0x36, 0xd0, 0xb0, 0x25, 0xd0, 0xe0, 0xed, 0x70, 0x60, 0xf2, 0x2c, 0x9a, 0x8d, 0x46, 0x4c, 0xce, 0xd8, 0x9, 0x5f}} return a, nil } -var _lockedtokensAdminDeposit_locked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x4f\xdc\x3e\x10\x3d\x93\x4f\x31\xe4\x00\x89\x04\xd9\xcb\x4f\xbf\x43\xc4\x9f\x52\x2a\x7a\xe9\xa1\xa2\x94\x9e\x1d\x67\xb2\x71\xf1\xda\x91\x3d\x61\x91\x10\xdf\xbd\x8a\x1d\xbb\xf1\xee\x0a\x9a\x4b\xe4\xf1\xcc\xbc\x37\x33\x6f\x2c\x36\x83\x36\x04\x77\xa3\x5a\x8b\x46\xe2\x83\x7e\x42\x05\x9d\xd1\x1b\xc8\x13\x5b\x9e\x05\x4f\xa9\xb7\x89\x57\x38\xe7\x59\x70\xf9\xa6\xf9\x13\xb6\xce\x68\x67\xaf\xa5\x29\xcf\x32\x32\x4c\x59\xc6\x49\x68\x55\x90\xae\xe1\xa6\x6d\x0d\x5a\x7b\x06\x6c\xa3\x47\x45\x35\xfc\xbc\x13\x2f\xff\xff\x57\xc2\x6b\x96\x01\x00\xac\x56\xf0\xd0\x23\x3c\xb2\x51\x12\x18\xb4\x7a\x34\x1c\x81\x7a\x46\xd0\x6b\xd9\x5a\xa0\x1e\x81\x3c\xa0\xb3\x32\x83\xd0\xa0\x50\x6b\x70\x50\x1d\x1a\x83\xad\x4b\x25\x91\xc0\xa2\x22\x97\xab\x86\x4f\xaf\x49\x99\x95\x33\xbf\x79\xd4\xc1\xe0\xc0\x0c\x16\xac\xdd\x08\x55\x03\x1b\xa9\x2f\x3e\x6b\x63\xf4\xf6\x91\xc9\x11\x4b\x38\xb9\xe1\x7c\xe2\x1b\x79\xce\x5c\xbf\x22\x01\x03\x83\x1d\x1a\x54\x13\x51\xed\x08\xba\x3c\xa7\x16\x2c\x69\x83\x2d\x3c\x4f\x50\x31\x6c\xe2\xe5\x2c\xf7\xd8\xc1\xa5\xf7\xad\x26\x4f\xb6\xc6\xaa\x71\xa8\x17\x8e\x41\xca\xf7\x97\xa0\xbe\x35\x6c\x5b\xc2\x49\x9c\x84\x2f\xe2\xaa\x98\x5a\x5f\xc3\x6a\x4e\xb2\xea\xc2\xbd\xbb\x2e\xb3\xa3\xa3\xa3\xeb\x6b\x18\x98\x12\xbc\xc8\x6f\xf5\x28\x5b\x50\x9a\xc0\x63\xed\xb3\xd7\x5b\x85\xe6\xd4\xfa\x21\x1c\xe7\x65\x96\x50\x77\x7c\x0f\x50\x8f\x4e\xd3\x17\xea\x38\x59\xca\xa1\x72\xbf\x9b\x29\xe8\x56\x4b\x89\x4e\x15\x57\x45\x12\x38\x7d\xbe\x9a\x24\x72\x71\xd8\x89\xff\xe1\xd1\xbf\x33\xea\x93\x44\x65\x72\x7a\xa7\xfc\x03\xe3\x93\x0e\xcd\xcb\xcc\x17\x09\x3c\x02\x2e\xfb\xc1\xac\x45\x43\x69\x05\xa1\x3f\xd5\x1a\x69\x56\x4d\xc1\xbc\xea\x6b\x20\x5d\xc2\xf1\x25\x28\x21\xcf\x92\xa0\x0d\x5a\xcb\xd6\x58\x43\x3e\xa9\xdf\x0e\xc8\x45\x27\xb0\x05\xe6\x13\x80\xb0\x8e\x32\x0b\xd4\x66\xfb\x31\xdc\x32\x35\x5d\x58\x54\x6d\x42\xdb\xe6\xd9\xdf\x4e\x2c\x15\x1b\x64\x14\x96\xc8\x6d\xed\x87\x9a\xb5\x28\xbb\x2a\x2e\x13\x5c\x9c\x47\x05\x57\xdb\x39\x61\x11\x36\xda\xff\x7d\xff\xe7\xfd\xc2\x17\xe4\x23\xe1\x81\xe5\x99\x90\x0d\x72\x31\x08\x54\x74\x6a\x61\x18\x1b\x29\x78\xac\x5b\x37\xbf\x91\xa7\xab\x13\xbd\xe1\x12\x16\x2d\x26\x5d\xfe\xcb\x66\x2e\xb1\xee\x91\xa3\x78\x46\xb3\x9b\xde\x19\xbd\xc2\xa3\x7b\xaa\x6e\xce\x06\xd6\x08\x29\x48\xa0\x8d\x52\xdf\x79\x5f\x42\xf6\xb7\x03\x0a\x5f\xf9\x32\x57\x7e\x62\x71\x9d\xf7\x08\xf9\xf1\x7d\xb4\xbe\x3e\xe8\xfd\x5a\x67\x6d\xb8\xf1\xe5\x69\xa7\xbe\xe0\xa0\xad\xf0\xa3\x08\xc3\x54\x41\x1e\x42\xed\xa5\x32\xbb\x2c\x17\x2d\xab\x5a\x9f\x6c\x7e\x91\x2e\xce\x53\xe1\x04\x51\xbc\x65\x7f\x02\x00\x00\xff\xff\x94\x91\x54\x35\x8e\x06\x00\x00" +var _lockedtokensAdminDeposit_locked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x41\x4f\xdc\x3a\x10\x3e\x93\x5f\x31\xe4\x00\x89\x04\xd9\x77\x78\x7a\x87\x68\x81\xb7\xda\x85\x1e\x40\xa5\x5a\x68\x7b\x76\x92\xc9\xc6\xc5\x6b\x47\xf6\x84\x05\x21\xfe\x7b\x15\x3b\x4e\x63\x16\x41\x73\x89\x32\x1e\xcf\x7c\xf3\xcd\xf7\x85\x6f\x5b\xa5\x09\xae\x3a\xb9\xe1\x85\xc0\x7b\xf5\x80\x12\x6a\xad\xb6\x10\x07\xb1\x38\xf2\x99\x42\xed\x82\x2c\xff\x1d\x47\x3e\xe5\x46\x95\x0f\x58\xd9\xa0\x71\x59\xff\x3c\xdd\xdc\x2e\xaf\x2f\x57\xf7\xb7\xd7\x97\x5f\x17\xab\xd5\xfa\xf2\xee\x2e\x8a\x48\x33\x69\x58\x49\x5c\xc9\x84\x54\x0e\x8b\xaa\xd2\x68\xcc\x09\xb0\xad\xea\x24\xe5\xf0\xfd\x8a\x3f\xfd\xf7\x6f\x0a\x2f\x51\x04\x00\x30\x9b\xc1\x7d\x83\xf0\x83\x75\x82\x40\xa3\x51\x9d\x2e\x11\xa8\x61\x04\x8d\x12\x95\x01\x6a\x10\xc8\xb5\xb5\x51\xa6\x11\x0a\xe4\x72\x03\xb6\x55\x8d\x5a\x63\x65\x4b\x09\x24\x30\x28\xc9\xd6\xca\xe1\xff\x60\xd6\xcc\x46\x5d\xcf\x56\x63\xcb\x34\x26\xac\xda\x72\x99\xc3\xa2\xa3\x66\x51\x96\x3d\xbc\x11\xd6\x00\xed\x0b\x12\x30\xd0\x58\xa3\x46\xd9\xe3\x52\x16\x8f\xbd\x78\x6c\xc0\x90\xd2\x58\xc1\xa3\x2d\xed\xaf\xf5\x30\x6c\x64\x8d\x35\x9c\xb9\xdc\xac\x50\x5a\xab\xdd\x9c\x75\xd4\x24\x21\xae\x9f\x9c\x9a\x4a\xb3\x1d\x2b\x04\xa6\x70\x34\x52\xef\x00\x9f\x27\x3d\xd7\x39\xcc\xfa\x56\x6c\x83\xb3\xda\x9f\xdb\xe3\x34\x3a\x38\x38\xb8\xb8\x80\x96\x49\x5e\x26\xf1\x52\x75\xa2\x02\xa9\x08\x5c\xbf\x7d\xe4\x6a\x27\x51\x1f\x1b\xc7\xf7\x61\x9c\x46\x01\x6c\x8b\x75\x02\x7b\x3c\xec\x1f\x3f\xc3\xd1\x54\x0a\x99\x7d\x2d\xfa\xe4\xa5\x12\x02\xed\xe2\xcf\x93\xe0\x62\xff\xb8\x29\x82\x9b\x93\x8f\x37\xf7\xef\xdc\xac\xdf\x18\x35\x41\xa1\x34\xf8\xfa\x60\xec\x77\x56\x26\x6c\x37\xa7\x24\x37\x1c\x94\x63\xc3\x29\x0f\xcc\x18\xd4\x14\x4e\xe0\x79\xc9\x36\x48\x83\x52\x12\xe6\x84\x9d\x03\xa9\x14\x0e\xcf\x40\x72\x71\x12\x5c\xda\xa2\x31\x6c\x83\x39\xc4\xbd\xc0\x4d\x8b\x25\xaf\x39\x56\xc0\x5c\x01\xe0\xc6\x42\x66\x1e\xda\x10\x3f\x84\x25\x93\xfd\x81\x41\x59\x05\xb0\x4d\x1c\xfd\x61\x62\xaa\x52\x2f\x21\xef\x13\x6b\xcf\x4f\x75\x6a\x50\xd4\xd9\xe8\x17\x98\x9f\x8e\xaa\xcd\x76\x43\xc1\xc4\x9b\xd6\xbd\x1d\xff\xaf\xae\x37\x3e\x61\xd9\x11\xbe\x63\x98\xbe\xb3\xc6\x92\xb7\x1c\x25\x1d\x1b\x68\xbb\x42\xf0\x72\x9c\x5b\x15\xbf\xb0\x0c\xed\x32\x66\xc3\x19\x4c\x28\x26\x95\xfe\x8d\x1b\xa7\xbd\xd6\x58\x22\x7f\x44\xfd\xb6\xbc\x0d\x3a\x65\x8f\xe9\xa1\xba\x37\x48\x4b\xd6\xb2\x82\x0b\x4e\xcf\xf3\xa3\x85\x7c\x5e\x0f\x7f\xa3\x97\xd0\xb0\xbe\xc5\xeb\x3b\x32\x9f\xb9\x59\x67\x6e\x6d\xa3\x97\xf7\x50\xed\xab\x79\x70\x57\xf2\xb9\xa3\x5d\xa9\x8f\x69\x18\x64\x63\x37\x1b\x87\x24\xae\xb0\x55\x86\xbb\x2d\xf9\x3d\x4b\xaf\x1c\x2e\xf7\x4a\xe9\xb7\xd8\x27\x6c\x66\x95\x2b\x36\xfc\xa4\xe6\xa7\xa1\xa6\xbc\x5e\x5e\xa3\xdf\x01\x00\x00\xff\xff\x4c\x94\xd4\x43\x92\x06\x00\x00" func lockedtokensAdminDeposit_locked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3939,11 +3830,31 @@ func lockedtokensAdminDeposit_locked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/deposit_locked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0x20, 0xf3, 0x69, 0x56, 0x19, 0x68, 0x47, 0x94, 0x66, 0xf4, 0x82, 0x18, 0xa4, 0xba, 0x93, 0xed, 0x42, 0x70, 0xeb, 0xaf, 0xac, 0x53, 0x45, 0x32, 0x2e, 0xd2, 0x81, 0xf9, 0x8, 0xa6, 0x11}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8c, 0x6d, 0x46, 0xd6, 0x46, 0x68, 0xd9, 0x89, 0x27, 0x3a, 0x37, 0x1c, 0xd3, 0x18, 0xd2, 0xd0, 0x6, 0x18, 0xee, 0xe3, 0x56, 0xb3, 0x63, 0x24, 0x84, 0x3, 0xd5, 0x41, 0xf9, 0xdd, 0x4c, 0x73}} + return a, nil +} + +var _lockedtokensAdminGet_unlocking_bad_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcd\x4e\xc3\x30\x10\x84\xef\x79\x8a\xa1\x07\x94\x5c\xda\x0b\xe2\x10\x11\xaa\x50\xc4\x03\x20\x71\x42\x1c\x1c\x7b\x13\x59\x71\xd7\x91\x7f\x04\x51\x94\x77\x47\x6d\xd2\x50\xd1\xf8\x64\xcb\x33\xf3\xcd\x6e\x92\x08\x29\xc9\xfb\x54\x18\x93\xa1\x8e\x8c\xa3\xd0\x9c\x06\xdb\x12\x97\xea\xa8\x39\x47\xa9\x94\x23\xef\xb3\x1c\xc3\x7c\xcd\xf1\xf1\xa6\x7f\x1e\x1f\x46\x0c\x49\x02\x00\x86\x02\xa4\xed\x7a\x5b\xbf\x6a\x19\xb4\x65\xe1\xfa\x35\x79\x81\x61\xfc\x73\x08\x29\x6d\xe4\x80\x02\x0d\x85\x72\x7a\x5c\x91\xb3\xb3\x70\x51\xab\x25\xf9\x9d\x6a\x72\xc4\x92\x50\x5c\x32\xb6\x0d\x85\x83\xe8\x44\xa5\x8d\x0e\xfd\xd3\xfd\x0d\xfa\x39\xdd\x75\xb1\x32\x5a\xee\x22\x1b\x2b\x5b\xcd\xcd\x8b\x50\x33\xd4\x67\xdb\xca\x3a\x67\xbf\xd3\x89\x79\x3a\xfb\x3d\x3a\xc1\x5a\xa6\x9b\x83\x8d\x46\x81\x6d\x38\xd5\x44\x25\xd4\x05\xea\xaf\x3a\x6d\xb2\x69\xae\xda\x3a\x88\x89\x0d\xcd\x6b\xa5\xb7\x2d\xf5\x1e\xc3\x02\xfa\xbf\xb7\xcf\xd9\xfe\x85\x62\xcd\xbe\x7c\xdf\x9d\x13\xe6\x75\x3a\x0a\xd1\xf1\x4d\x56\x32\xfe\x06\x00\x00\xff\xff\xac\x2d\x3d\x31\xe0\x01\x00\x00" + +func lockedtokensAdminGet_unlocking_bad_accountsCdcBytes() ([]byte, error) { + return bindataRead( + _lockedtokensAdminGet_unlocking_bad_accountsCdc, + "lockedTokens/admin/get_unlocking_bad_accounts.cdc", + ) +} + +func lockedtokensAdminGet_unlocking_bad_accountsCdc() (*asset, error) { + bytes, err := lockedtokensAdminGet_unlocking_bad_accountsCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "lockedTokens/admin/get_unlocking_bad_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x60, 0x5b, 0xd3, 0x7b, 0x41, 0xd1, 0x85, 0x69, 0xad, 0xf7, 0x1, 0x49, 0x72, 0x7c, 0x48, 0xb1, 0x89, 0xe7, 0x86, 0x10, 0xb8, 0xa4, 0x88, 0xe4, 0x58, 0xa2, 0x4c, 0x95, 0x88, 0x7a, 0x56, 0x6}} return a, nil } -var _lockedtokensAdminUnlock_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x91\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x63\x0e\x75\x03\x92\x93\x78\x08\x6a\xa9\x05\x4f\x15\xa4\x5a\xef\xe3\x66\xd2\x2e\xdd\xec\x84\xd9\x09\x0a\xd2\xff\x2e\xc9\x96\x9a\xf6\xea\x5c\x26\x59\x66\xde\x7e\xef\xad\x6b\x3b\x16\x85\x15\xdb\x3d\xd5\xef\xbc\xa7\x10\xa1\x11\x6e\x21\x9f\x1e\xe5\x59\xa6\x82\x21\xa2\x55\xc7\xc1\x28\xca\x96\x74\x61\x2d\xf7\x41\x2b\x58\xd4\xb5\x50\x8c\x37\x50\x93\x57\xac\x60\xf3\xec\xbe\xef\x6e\x0b\xf8\xc9\x32\x00\x80\x4e\xa8\x43\x21\x83\x75\xeb\x42\x05\xd8\xeb\xce\x3c\xb1\x08\x7f\x7d\xa0\xef\xa9\x80\xd9\x51\xe9\xb4\x31\x94\x27\x85\x71\x63\x4d\x0d\x3c\xa4\xcf\x32\x2a\x0b\x6e\xa9\xfc\x1c\xd7\xef\x67\x53\xc6\x72\x6c\x8b\x61\x6e\xc9\xde\xd3\x88\xfa\x68\x06\x33\xd5\x99\xbf\x72\xf2\x73\x31\xfe\x96\xf4\x5f\x51\x77\xc5\x89\x64\xa8\xf9\x1c\x3a\x0c\xce\x9a\x7c\xc9\xbd\xaf\x21\xb0\x42\x82\x00\x04\xa1\x86\x84\x82\x25\x50\x06\xdd\x51\x82\x05\x7b\x92\xcd\x8b\x73\x5f\x3a\x5c\xfd\x82\x01\xb7\x24\x13\x7b\x6b\x6a\xca\xbf\x5c\x0d\xa6\x58\x2b\x38\x8b\xbb\xb8\x3a\xba\x37\xff\x21\xec\x23\xc9\x75\x4c\x20\xd0\x26\x92\x29\xe5\x05\x61\xe9\x82\x15\xc2\x48\x9b\xe0\xd9\xee\x57\xae\x75\x6a\x8e\xaf\x3d\xb6\xc4\x72\xc8\x0e\xd9\x6f\x00\x00\x00\xff\xff\xfd\x94\x1c\x78\x51\x02\x00\x00" +var _lockedtokensAdminUnlock_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x91\xcd\x6e\xea\x30\x10\x85\xf7\x79\x8a\xb9\x2c\xee\x4d\xa4\xab\xa8\x8b\xaa\x8b\xa8\x2d\x8a\x80\x6e\xa0\xa5\xe2\xe7\x01\xa6\xce\x04\x2c\x12\x4f\x34\x9e\xa8\x48\x15\xef\x5e\x25\x46\x34\xb0\xed\x6c\xc6\x96\x8f\xed\xef\x9c\xb1\x75\xc3\xa2\xb0\x60\x73\xa0\x62\xc3\x07\x72\x1e\x4a\xe1\x1a\xee\x8e\x8b\xe5\x64\x3e\x9b\x6e\x96\xf3\xd9\x5b\x3e\x9d\xae\x66\xeb\x75\x14\xa9\xa0\xf3\x68\xd4\xb2\x8b\x15\x65\x47\x9a\x1b\xc3\xad\xd3\x0c\xf2\xa2\x10\xf2\xfe\x3f\x14\x54\x29\x66\xb0\x7d\xb1\xc7\x87\xfb\x04\xbe\xa2\x08\x00\xa0\x11\x6a\x50\x28\xc6\xa2\xb6\x2e\x83\xbc\xd5\xfd\xf9\xea\x45\xd2\x55\x45\x0a\xbd\x64\x45\x25\x3c\x85\x65\xfa\xc1\x22\xfc\xf9\xf8\x77\x48\x99\xf6\x2d\xef\xce\x27\x5c\x55\xd4\x33\x3d\xc7\x1d\x7b\x76\x65\x27\x1d\x6c\x6e\xe4\x6b\x65\xc1\x1d\xbd\xa3\xee\x93\x0b\x41\x57\xe3\x31\x34\xe8\xac\x89\x47\x13\x6e\xab\x02\x1c\x2b\x04\x08\x40\x10\x2a\x49\xc8\x19\x02\x65\xd0\x3d\x05\x48\x30\x97\x67\x47\xc9\xb5\x1f\xed\xbe\x7e\x45\x87\x3b\x92\x81\xad\x15\x95\xe9\x4f\x80\x31\x86\xfc\x32\xb8\xca\x35\xf9\x73\x76\x1f\xff\x86\xb0\xf5\x24\xff\x7c\x00\x81\x3a\x90\x0c\x29\x6f\x08\x53\xeb\x8c\x10\x7a\xda\xba\x8a\xcd\x61\x61\x6b\xab\xf1\x79\xac\x7d\x0b\x2c\xa7\xe8\x14\x7d\x07\x00\x00\xff\xff\xd0\xd3\x4e\x0e\x40\x02\x00\x00" func lockedtokensAdminUnlock_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3959,11 +3870,11 @@ func lockedtokensAdminUnlock_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/unlock_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x69, 0x90, 0x59, 0xfe, 0x29, 0x32, 0xe, 0xe7, 0xbe, 0x46, 0xb8, 0xce, 0x1a, 0x34, 0xdd, 0x1f, 0x52, 0x19, 0x81, 0x95, 0x62, 0x32, 0xfe, 0xdc, 0xb7, 0xcf, 0xca, 0xde, 0x73, 0x50, 0xb4, 0x10}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x58, 0xa9, 0x1, 0xbc, 0x31, 0xd2, 0x33, 0xd, 0x5b, 0xb, 0x97, 0x13, 0xe6, 0x85, 0x86, 0x57, 0xa2, 0x99, 0xa6, 0x1f, 0x8c, 0x9f, 0x8b, 0xb5, 0xab, 0xd9, 0x40, 0x1, 0x5d, 0x97, 0x33}} return a, nil } -var _lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x6f\xe3\x36\x10\xbd\xfb\x57\x4c\x73\x48\x65\x20\xb0\x2f\x45\x0f\x46\xb2\x0b\x37\x40\xdb\x00\x29\xb0\xd8\xee\x9e\x8a\x1e\xc6\xe4\xd8\x22\x22\x91\x06\x39\xb2\x13\x04\xfe\xef\xc5\x90\x92\x4d\x7d\xc4\x5d\x5d\x12\xcb\x33\x6f\xbe\xde\xcc\xb3\xa9\xf7\xce\x33\x3c\x3b\xf5\x42\xfa\x9b\x7b\x21\x1b\x60\xeb\x5d\x0d\x37\xf9\xab\x9b\xd9\x6c\xb9\x84\x6f\xa5\x09\xc0\x1e\x6d\x40\xc5\xc6\x59\x68\x02\x05\xe0\x92\xa0\x8a\xb6\xc0\xc9\x1f\x75\x6d\xac\x38\xb0\x83\x40\x1c\x2d\x1a\x2b\x36\x50\x99\xda\x30\x6c\x9d\x87\xba\xa9\xd8\xec\x2b\x02\x54\xca\x35\x96\x83\x38\x18\x0b\x08\xc1\xd8\x5d\x45\x79\xa0\x14\xfc\x6c\x0a\xa8\xb5\xa7\x20\xc1\x9b\x40\x1a\x30\xc0\x0b\xbd\x45\x80\x50\xba\xa6\xd2\xb0\xa1\x2c\xa8\x58\x0c\x1d\x67\xb3\x0c\xbe\x48\x76\x4f\x76\xeb\x56\xf0\xbe\x4e\x36\x2b\xf8\xfe\xbb\x79\xfd\xf5\x97\xd3\x1c\xde\x67\x33\x00\x80\xbd\xa7\x3d\x7a\x2a\x62\x79\x2b\xc0\x86\xcb\xe2\x6f\x76\x1e\x77\x74\x07\x8f\xb8\xc7\x8d\xa9\x0c\x1b\x0a\x73\xb8\x5d\xa7\x80\x67\x5f\x79\x96\x4b\xf8\xde\x25\xb4\x1e\x55\xc2\x25\x32\x94\xa8\x21\xb8\x9a\x20\xc8\x50\xdc\x16\xc8\x7b\xe7\x73\x04\xf4\x04\x81\x9d\x27\x2d\xcd\x62\x99\x88\x36\xb1\x0a\xf4\x6f\x10\x9c\xd4\xfd\x06\x0a\xad\xf4\xc0\xd8\xb0\x27\xc5\xa4\xa1\x42\xa6\x1e\xce\xd3\x36\x76\x28\x9f\xa6\x25\xd2\x41\x66\xe6\x1b\x7b\x19\x0f\x9b\x9a\xc2\x5d\xee\xca\x25\xd9\xe8\x9c\x05\x36\x01\xac\x63\x70\x07\xf2\x47\x6f\x98\xc9\x9e\x3d\x0e\xe8\x61\x83\xba\xad\x38\x4c\x74\x18\x1e\x12\x65\x16\x21\x75\x73\x51\x39\xd4\xf7\x23\xb3\x4f\x85\x10\x73\x05\xcb\xd6\x6c\x99\xc6\x66\xec\xee\xb7\x0b\xfc\xfc\x1c\x57\x9e\xcf\x9f\xe1\xfd\x24\xfc\x18\x81\x5d\xc6\x52\x11\xa7\xf0\x5f\x69\x3b\xca\x64\xe3\xbc\x77\xc7\xfb\xdb\x7c\x19\x16\xf1\xcf\x5a\xec\x1e\x5d\x55\x51\x6c\x42\x97\x5c\xcf\x30\xfb\x30\x30\x6f\x79\xf3\x05\xb9\x1c\x65\xbc\x47\x6b\x54\x71\xf3\x18\x99\x2c\x5d\x4d\x49\x00\x82\xa7\x2d\x79\xb2\x8a\x64\x4a\x32\x81\x98\x2c\xa8\x33\xec\xcd\xfc\x52\x97\x2c\x59\xb7\x00\x6d\xf5\x42\x99\x0b\xd7\x17\xb2\x34\x39\x41\xdb\xf9\xae\xab\x4a\xa8\x27\xf8\x66\x2b\xed\x09\x91\x75\x1b\x52\xd8\x04\x82\x23\x81\x76\xf6\x67\x06\x38\xa2\x65\x60\x37\xf4\xf7\x74\x20\x9f\xb6\x9e\x2c\x1b\xdf\x67\x99\xd9\x82\x5c\x00\x34\x55\x18\x3a\xb2\x83\x5d\x7b\x2e\x8c\xdd\x3a\x5f\x63\xf4\x90\x42\xce\x57\xa1\x5d\x98\x9e\x6b\xca\xb2\x3d\x42\x2d\x11\xa4\xc0\x34\xd0\x1d\x71\xfb\xae\x18\xb4\xa3\xdf\x79\x79\x16\x2a\x5b\xe3\x2b\xc3\xff\xd3\x55\x9a\xfc\xa7\x62\x62\xda\x59\xfc\x2f\xcd\xa6\x32\x2a\xce\x78\xd8\xe6\x8e\x78\xbd\x9c\xbb\x29\x3d\x4c\x96\xb2\xd8\x11\x3f\x4f\x98\x17\xf3\x31\x74\xaf\x23\x89\x7f\xc9\xe7\x2b\x29\xe7\x75\x47\xf3\x16\xb5\x6b\x0f\x76\x3b\x32\x95\x95\x94\x30\x0c\x23\xcf\xe4\xcb\x36\x7e\xd4\x83\xbf\xd0\xe2\x8e\x7c\x1a\xc6\x47\x19\xb5\xbd\x2e\x26\x1b\x95\x51\xe4\x8f\xbe\x9c\x60\x1d\xaf\x68\x14\xac\xe1\x39\x43\xbf\x6b\x6a\xb2\x9c\x9d\xa9\x0f\x91\xe5\x46\x25\xc8\x75\x42\x7c\xc8\xf6\xe4\x9f\x01\x6d\xfe\xfd\xe9\x6a\x8a\x4f\x56\x79\xc2\x40\x63\xd9\xdb\xbc\xa5\xa5\x8d\x21\x3e\x84\x18\x34\x6d\x61\x5a\xbc\xa4\x1d\xcf\x82\x54\x68\xaa\x18\x57\xbd\x94\x27\x58\x90\x25\xf5\xe8\x2c\x1b\xdb\x9c\x0f\x87\xa5\x57\x06\xc3\xe4\xd3\x8a\xb5\xeb\x5e\x39\xb7\xbf\x86\xd2\x9d\x00\xce\xb4\x38\x34\x4a\x11\x69\x11\x59\xab\x41\x3b\x4a\x4a\x20\x62\x72\x0d\x8a\x9d\x08\x54\x8d\xfe\x25\x09\xf8\x06\x3f\x36\x57\x6d\xf2\x93\x06\xa7\xd1\xdb\x53\x9f\x93\xa7\xd1\x81\x6b\xb5\x8f\x5e\x49\x35\xb1\xfc\x1a\x5f\x28\xc8\x59\x2a\xc9\x13\x14\xe7\x22\x3c\xa1\x2a\xa3\x6d\x97\x02\xe0\xc6\x1d\x68\x3e\x44\x34\x0c\x35\xa1\x0d\x51\xbc\xb9\x34\x76\x07\x47\xa1\xde\xd1\x3b\xf9\xd7\x70\x99\xb1\x41\xbe\x95\x9b\x96\x75\x71\x88\x27\xad\x34\x7c\x51\xe4\x0d\x41\xc0\xc3\xa0\xa3\x99\xa8\x8e\x28\x7a\x9d\xc0\xb3\x89\xde\xf4\x75\x4f\xa2\x4d\x29\x70\x16\xf3\x0e\xd8\xfd\xaf\x18\xf7\x54\x76\xc2\xe4\x11\xf7\x67\xcd\xed\xdd\xde\x2e\x11\x13\x42\x43\xf7\xb7\x13\xa9\xfc\xe0\xcf\x80\x09\xec\xbd\xdc\xe5\x50\x16\xd3\xf9\xdc\x01\xf2\x0a\x96\xd1\x48\x5d\x01\x3f\xcd\x4e\xb3\xff\x02\x00\x00\xff\xff\x96\x5e\x9c\xb2\x3e\x0b\x00\x00" +var _lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x4d\x6f\xe3\x46\x0c\xbd\xfb\x57\xb0\x7b\xd8\xda\x40\x10\xf7\x50\xf4\x10\x24\xbb\x70\x93\xb4\x0d\x36\xed\x2e\x92\xec\xa9\xe8\x81\xd6\x50\xd2\xc0\xd2\x8c\x31\x43\xc5\x09\x02\xff\xf7\x82\x33\x92\x3d\xfa\x88\xb1\xba\x24\x96\xc8\xc7\xaf\x47\x3e\x5d\x6f\xad\x63\xb8\xb7\xd9\x86\xd4\x93\xdd\x90\xf1\x90\x3b\x5b\xc3\x2f\x2f\xf7\x5f\xaf\xbf\xdc\xde\x3c\x7d\xfd\x72\xfb\xcf\xea\xe6\xe6\xe1\xf6\xf1\x71\x36\x5b\x2e\xe1\xa9\xd4\x1e\xd8\xa1\xf1\x98\xb1\xb6\x06\x1a\x4f\x1e\xb8\x24\xa8\x02\x08\x70\x44\x41\x55\x6b\x23\x0e\x6c\xc1\x13\x07\x8b\xc6\x88\x0d\x54\xba\xd6\x0c\xb9\x75\x50\x37\x15\xeb\x6d\x45\x80\x59\x66\x1b\xc3\x5e\x1c\xb4\x01\x04\xaf\x4d\x51\x51\x1a\x28\x06\x3f\x98\x02\x2a\xe5\xc8\x4b\xf0\xc6\x93\x02\xf4\xb0\xa1\xd7\x00\xe0\x4b\xdb\x54\x0a\xd6\x94\x04\x15\x8b\xa1\xe3\x6c\x96\xc0\xcf\xa3\xdd\x9d\xc9\xed\x05\xbc\xad\xa2\xcd\x05\x7c\xff\x43\xbf\xfc\xf6\xeb\x7e\x01\x6f\xb3\x19\x00\xc0\xd6\xd1\x16\x1d\xcd\x43\x79\x17\xb0\x6a\xb8\x5c\x45\xdc\x83\x89\x3c\xcb\x25\x7c\xef\xe2\xae\x46\x09\x73\x89\x0c\x25\x2a\xf0\xb6\x26\xf0\x32\x01\x9b\x03\x39\x67\x5d\x8a\x80\x8e\xc0\xb3\x75\xa4\xa4\x27\x2c\x8d\x57\x3a\x24\x8b\xee\x15\xbc\x95\xf2\x5e\x21\x43\x23\xa5\x6a\xe3\xb7\x94\x31\x29\xa8\x90\xa9\x87\x73\x97\x87\x46\xa4\x43\x33\x44\xca\xcb\x68\x5c\x63\x8e\x53\x60\x5d\x93\x3f\x4b\x5d\xb9\x24\x13\x9c\x93\xc0\xda\x83\xb1\x0c\xf6\x99\xdc\xce\x69\x66\x32\x07\x8f\x67\x74\xb0\x46\xd5\x56\xec\x27\x1a\x09\x57\x91\x19\xe7\x95\x45\x75\x39\xfa\xfc\x69\x2e\xec\xbb\x80\xa5\xd4\x8d\x05\x2d\xe3\x54\xb4\x29\x7e\x3f\xc2\x2e\x0e\xf1\xe4\xf9\xfc\x19\xde\xf6\x32\xfe\x11\xd8\x71\x1c\x15\x71\x0c\xfb\x40\xf9\x21\x83\xb5\x75\xce\xee\x2e\x3f\xa6\xe4\x3f\x0f\x7f\x56\xf2\xfd\xda\x56\x15\x85\xa2\xbb\xa4\x7a\x86\xc9\x8f\x81\xf9\x63\x4c\xfd\x1b\x72\x39\xca\x74\x8b\x46\x67\xf3\x0f\xd7\x81\xa0\xd2\xc5\x98\x04\x20\x38\xca\xc9\x91\xc9\x48\xa6\x22\x1d\x0f\x49\x42\x76\x80\xfd\xb0\x38\xd6\x23\xbb\xd3\xf1\xba\xad\x5a\x28\x72\xa4\xf0\xb9\xec\x42\x4a\xc8\x76\x9e\xab\xaa\x12\xaa\x09\xbe\xce\xa5\x2d\x3e\xb0\x6c\x4d\x19\x36\x9e\x60\x47\xa0\xac\xf9\x99\x01\x76\x68\x18\xd8\x0e\xfd\x1d\x3d\x93\x8b\xcb\x4c\x86\xb5\xeb\xb3\x4a\xe7\x20\x8b\x8d\xba\xf2\x43\x47\xb6\x50\xb4\x57\x40\x9b\xdc\xba\x1a\x83\x87\x14\x72\x58\xf6\x76\x41\x7a\xae\x31\xcb\xf6\xb6\xb4\x04\x90\x02\xe3\x20\x0b\xe2\xf6\xdd\x7c\xd0\x8e\x7e\xe7\xe5\x39\x2f\x88\xaf\x71\x8b\x6b\x5d\x69\x7e\x9d\x1a\xfb\x5f\xb6\x52\xe4\xde\x26\xc6\x9c\x04\xde\x7f\x9a\x9f\x36\xf8\xd6\xac\x2b\x9d\x8d\xa7\x1f\x72\x88\xe3\x9e\x2f\x86\xa3\xe9\x48\xda\xab\xb3\x9b\xec\xd5\x64\xf9\x52\xcf\xfd\x84\xf9\x7c\x31\x86\xee\x75\x31\x72\x36\xfa\x3c\x50\x66\x9d\xea\x56\xa2\x45\xed\x5a\x8a\xdd\x3e\x4d\x65\x25\x25\x0c\xc3\xc8\x33\xf9\xb2\x8d\x1f\xa4\xe1\x6f\x34\x58\x90\x8b\x03\x7c\x2f\xa3\x93\x8d\x4a\x68\xf5\x67\x5f\x59\xb0\x0e\x97\x36\x28\xd8\xf0\xe4\xa1\x2b\x9a\x9a\x0c\x27\xa7\xec\x5d\x64\xb9\x63\x11\x72\x15\x11\xaf\x92\xdd\xfa\x77\x40\xb5\xff\x7e\x3a\x99\xe2\x9d\xc9\x1c\xa1\xa7\xb1\x02\xae\x5f\xe3\xa2\x87\x10\xef\x42\x0c\x9a\x76\xae\x5b\xbc\xa8\x2f\xf7\x82\x34\x57\x54\x31\x5e\xf4\x52\x9e\x60\x41\x92\xd4\xb5\x35\xac\x4d\x73\x38\x36\x86\x5e\x18\x34\x93\x8b\x6b\xd9\x9e\x88\xca\xda\xed\x29\x94\xee\x6c\x70\x22\xcb\xbe\xc9\x32\x22\x25\x7a\x6b\x14\x28\x4b\x51\x2d\x44\x70\x4e\x41\xb1\x15\x11\xab\xd1\x6d\xa2\x96\xaf\xf1\x7d\xf3\xac\x4d\x7e\xd2\x60\x3f\x7a\xbb\xef\x73\x72\x3f\x3a\x8a\xad\x3e\xd2\x0b\x65\x4d\x28\xbf\xc6\x0d\x79\x39\x65\x25\x39\x82\xf9\xa1\x08\x47\x98\x95\xc1\xb6\x4b\x01\x70\x6d\x9f\x69\x31\x44\xd4\x0c\x35\xa1\xf1\x41\xe0\xb9\xd4\xa6\x80\x9d\x50\x6f\xe7\xac\xfc\xab\xb9\x4c\xd8\x20\x5f\xe5\x0e\x26\x5d\x1c\xe2\x49\x2b\x35\x1f\x55\x7b\x4d\xe0\xf1\x79\xd0\xd1\x44\x78\x47\x14\x3d\x4d\xe0\xd9\x44\x6f\xa2\x46\x4a\x94\x29\x95\x4e\x62\x9d\x01\xdb\x1f\x16\xec\x56\xfb\xb5\xd9\x5c\x7e\x9c\x80\x5d\x6e\xc3\xf1\x9c\x04\x39\x03\x46\x57\x10\xff\x50\xac\xfd\x6c\x3f\xfb\x3f\x00\x00\xff\xff\xf5\xc0\xcc\x21\xdc\x0a\x00\x00" func lockedtokensAdminUnlock_tokens_for_multiple_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3979,11 +3890,11 @@ func lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x2d, 0x48, 0xce, 0xc5, 0xd4, 0xe6, 0xfb, 0x53, 0xc1, 0x93, 0x3b, 0xed, 0x3b, 0x3c, 0xa3, 0x70, 0x2d, 0xac, 0x89, 0xe5, 0x3d, 0x8a, 0xd2, 0xa8, 0xe6, 0x77, 0xa5, 0xd9, 0xfb, 0xfc, 0xef}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xa2, 0x43, 0xbc, 0x49, 0x46, 0x92, 0xec, 0x61, 0x1a, 0x24, 0xbd, 0x80, 0x79, 0x40, 0x9e, 0x6d, 0x9f, 0x5e, 0x56, 0xff, 0x85, 0xca, 0x7b, 0x49, 0x86, 0xc4, 0x1b, 0x47, 0x3c, 0xa8, 0xd2}} return a, nil } -var _lockedtokensDelegatorDelegate_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x6b\xdb\x40\x10\xbd\xeb\x57\x4c\x75\x08\x12\x34\xca\xa5\xf4\x60\xec\x86\xa6\x25\xf4\x50\xd2\xd0\x8f\xf4\xbc\x96\x46\x96\xf0\x5a\x23\x76\x47\xb5\x8b\xf1\x7f\x2f\xfb\x21\x79\x57\x26\x34\x50\xaa\xcb\xa2\x9d\x99\x37\xef\xcd\x9b\x6d\x77\x3d\x29\x86\x7b\x49\xfb\xef\xb4\xc5\x0e\x6a\x45\x3b\x48\xa7\xff\x34\x19\x33\x86\x6e\xd3\xae\x25\x46\x59\xe1\xdd\x94\xf9\x99\xca\x2d\x56\xf6\x4e\xfb\xc4\xf0\x2a\x4d\x12\x56\xa2\xd3\xa2\xe4\x96\xba\x4c\xec\x68\xe8\x78\x01\x3f\xee\xdb\xc3\xdb\x37\x39\x1c\x93\x04\x00\x40\x22\x43\x43\xb2\x42\xf5\x15\xeb\x05\x88\x81\x9b\x2c\x44\x29\xec\xf1\xa5\x47\x25\x0c\x8c\x7e\x1d\x13\x2c\x7e\xb6\xdc\x54\x4a\xec\x73\xb8\xba\x2c\xfb\x64\x81\xcf\x8d\x7e\x89\x41\xf2\xb9\xcf\xb3\x48\xd3\x54\x8a\x27\x53\xe1\x00\x7a\x85\xbd\x50\x98\x89\xb2\x74\x4a\x2c\xc6\x1d\x29\x45\xfb\x27\x21\x07\xcc\xe1\xea\xbd\x8b\x19\x75\xe0\x3f\x8d\xb2\x2e\x26\x85\xb0\x02\x5f\x5f\x68\x26\x25\x36\x58\xac\x2d\xc2\xf2\x7f\x28\x7f\x97\x19\x5b\x16\xf0\x5c\xfc\x9b\xa3\xf0\x28\xb8\xc9\x27\xc2\xe6\xbb\xbd\x85\x5e\x74\x6d\x99\xa5\x1f\x68\x90\x15\x74\xc4\xe0\x78\x82\xc2\x1a\x15\x76\x25\x02\x13\x04\x58\x69\x9e\xc4\x9a\xc7\x61\xff\x45\xf2\x4b\x4d\x18\xb5\xdc\x78\x90\x9b\x7a\x8c\xdb\xf0\x8b\xf9\x9b\x32\x60\xbb\xdc\x96\xe1\x59\x50\xea\x30\x4e\x4e\x07\x1e\xb0\x1c\x18\x03\x27\xcd\x06\x69\x16\x5b\x54\x8f\x8a\x0e\xbf\x61\x35\xf3\xd6\xcb\xfa\x88\x12\x37\x82\x49\x65\xc1\x44\x4c\xad\xb4\x2e\xdc\x09\x29\xcc\xf4\x2e\xaa\x37\xc8\xce\x27\xbf\x44\x3e\x31\x44\x69\x6b\x70\xcf\x08\x96\xab\x19\xdc\x31\x89\x06\x10\xf0\x2c\x2a\x47\x08\x1f\xd0\xcd\x4b\x4f\x6f\xd1\x9d\x41\x83\x13\xa0\xd4\x68\xfa\x64\x3e\x09\xae\xe3\x46\xb9\x69\x1d\xf9\x5b\xac\xc7\xc8\x9c\x43\xac\xaf\xc2\x9e\x74\xcb\xde\xc6\xe5\x75\x0c\xb2\xf7\xc6\xcf\xb8\x5d\xb4\xcf\xff\x45\xe7\x4c\xe6\x31\x82\xf2\x0b\xf3\x40\x0c\xd8\xd1\xb0\x69\xdc\x96\x68\xb3\xe7\xb6\xcd\xab\x34\x40\xf0\xab\x72\x4a\xfe\x04\x00\x00\xff\xff\x27\x2b\xab\x74\x59\x05\x00\x00" +var _lockedtokensDelegatorDelegate_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\x4d\x6b\xdb\x40\x10\xbd\xeb\x57\x4c\x75\x28\xd2\x21\x4a\x0f\xa5\x87\x60\x37\xb8\xb1\x43\x21\xc1\x09\x71\xda\x9e\xd7\xd2\xe8\x03\xaf\x35\x62\x35\xaa\x5d\x8c\xff\x7b\x59\xed\x4a\xd9\x95\x09\x14\xaa\x8b\xd8\x9d\xb7\xf3\xde\x9b\x37\xd5\xbe\x21\xc5\x70\x2f\xe9\xf0\x4a\x3b\xac\x21\x57\xb4\x87\x70\x3c\x87\xc1\x80\xe8\xea\xa2\xda\x4a\xf4\x50\xee\xdd\x88\x7c\xa4\x74\x87\x59\x7f\xd7\x1a\xe0\xa7\xe3\xe3\xd3\xdd\xc3\x6a\xf9\xfa\xf4\xb0\x5a\x2f\x96\xcb\x97\xd5\x66\x13\x04\xac\x44\xdd\x8a\x94\x2b\xaa\x23\xb1\xa7\xae\xe6\x1b\xf8\x71\x5f\x1d\xbf\x7c\x8e\xe1\x14\x04\x00\x00\x12\x19\x4a\x92\x19\xaa\x17\xcc\x6f\xe0\xa3\xdb\x3a\xe9\x7f\xdf\xfb\xea\x1b\xfa\xb7\xe8\x24\x1b\xf0\xe8\x21\xf9\xa9\x2f\x0d\xa6\x51\xd8\x08\x85\x91\x48\x53\xc3\xb8\xe8\xb8\x5c\x98\x83\xa6\x05\xfb\xb5\x28\xf3\x64\xa4\x86\x39\xd8\x07\xc9\x96\x94\xa2\xc3\xec\x5d\x29\x5f\x23\x6d\xf9\x06\xde\xab\x6f\x98\x94\x28\xf0\x59\x70\x19\x8f\x6c\xfa\xbb\xbd\x85\x46\xd4\x55\x1a\x85\x77\xd4\xc9\x0c\x6a\x62\x30\x64\xa0\x30\x47\x85\x75\x8a\xc0\x04\x4e\xaf\x30\x0e\x7c\xc1\x83\xfb\x4b\xbd\xa2\xe3\x32\xf2\xf2\x4a\x7e\x55\x5c\x66\x4a\x1c\xc4\x56\x62\x7c\x31\xae\xc1\xc7\x75\x6b\x04\x5f\xe7\x43\xbd\x2f\xff\xb3\x76\xfd\x0c\xb8\x5f\x9a\x5e\xdd\x9b\x99\xd0\xf4\x38\x1b\x0f\x78\xc4\xb4\x63\x74\x22\xd0\x71\xb6\x2c\x76\xa8\x9e\x15\x1d\xff\xc0\x7c\x12\x8a\xb5\xb6\x44\x89\x85\x60\x52\x91\x33\x0d\xfd\x56\xf6\x09\x7c\x13\x52\xe8\xc9\x5d\xbc\x2e\x90\x4d\x46\x36\x7d\x0b\x74\xbb\x54\x39\x98\xc5\x84\xd9\x7c\xd2\xee\x14\x78\x03\x70\x74\x26\x99\x11\x84\x6b\x34\xf3\x6a\xc7\xed\x36\x7f\x87\xe0\x0c\x28\x5b\xd4\x3c\x91\x05\xc1\x95\x4f\x14\x6b\x6a\x2f\xdb\x64\x3b\x54\xa6\x1a\x7c\x7f\x19\x36\xd4\x56\x6c\x63\x9c\x5d\xf9\x4d\x0e\x36\xfc\x89\xb6\x0b\xfa\xf8\x7f\x7c\x4e\x6c\x9e\xbc\x56\x76\x61\xd6\xc4\x80\x35\x75\x45\x69\xb6\xa4\xd5\x3b\xde\xd3\x7c\x08\x9d\x0e\x76\x55\xce\xc1\xdf\x00\x00\x00\xff\xff\x3e\xde\x16\x69\xb1\x04\x00\x00" func lockedtokensDelegatorDelegate_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3999,11 +3910,11 @@ func lockedtokensDelegatorDelegate_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3e, 0xfd, 0xc4, 0x42, 0x2b, 0x91, 0x5b, 0x9a, 0x45, 0x5d, 0x9a, 0x60, 0xe7, 0xda, 0xab, 0x8, 0x8a, 0x76, 0xda, 0xf2, 0xe4, 0xb7, 0x0, 0x52, 0xc0, 0xe5, 0x43, 0xbf, 0xb5, 0xb5, 0x26, 0xd5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x18, 0x1f, 0x62, 0x9d, 0x23, 0x3b, 0xb2, 0x89, 0x1f, 0x4, 0xad, 0x2f, 0x4b, 0xfb, 0x2c, 0x9, 0x9, 0x50, 0x41, 0xed, 0xdc, 0x3a, 0xa5, 0x60, 0x56, 0x3a, 0x34, 0xac, 0x4f, 0xe2, 0x22, 0x6e}} return a, nil } -var _lockedtokensDelegatorDelegate_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xcb\x6a\xeb\x30\x10\xdd\xfb\x2b\x06\x2f\x82\x0d\x17\xaf\x2e\x5d\x84\xa6\xa1\xa5\x84\x2e\x4a\x1b\xd2\xd7\x7a\x62\x8d\x63\x11\x47\x12\xa3\x71\x93\x52\xf2\xef\x25\x96\xed\xd8\x0d\xf5\x46\xd6\xe8\xe8\xbc\x90\xde\x39\xcb\x02\x8f\x36\xdf\x92\x7a\xb5\x5b\x32\x1e\x0a\xb6\x3b\x88\x87\xa3\x38\x6a\x71\x8b\xda\x6c\xf4\xba\xa2\x66\xdc\x02\x47\xb3\x38\x8a\x84\xd1\x78\xcc\x45\x5b\x93\xe0\xce\xd6\x46\xa6\xf0\xb6\xd0\x87\xab\xff\x29\x7c\x47\x00\x00\x15\x09\x18\xab\xe8\x9e\x2a\xda\xa0\x58\x5e\xb2\x3d\x7c\x4d\x47\x2e\xb2\xb0\x79\xba\x80\x45\x0d\x85\x63\x72\xc8\x94\x60\x9e\x07\x05\xac\xa5\x4c\xee\x2c\xb3\xdd\xbf\x63\x55\x53\x0a\x93\xdb\x70\xd6\xa9\x76\xca\xa5\xad\x14\xf1\x8a\x0a\x98\x41\x7b\x3d\xf3\x62\x19\x37\x94\xad\x1b\x82\xeb\x86\x6c\xe4\xa6\x59\x9e\x1d\x31\x9e\x72\xf9\x7f\xe3\x26\xb2\x0f\x2d\xa5\x62\xdc\xa7\x30\xb9\xbc\xf6\xd0\x08\xde\x24\xa7\xba\x7e\x85\x1c\x9c\xbf\x04\x0b\x4b\x94\x32\xed\xfd\x9e\xbe\xf9\x1c\x1c\x1a\x9d\x27\xf1\x00\x0d\xda\x83\xb1\x02\x1e\x3f\x49\x01\x0a\x78\x47\xb9\x2e\x34\x29\x70\x28\x65\x7c\xa6\xe8\x7f\x3c\x55\x45\x76\x59\x3b\xcc\xce\x8d\xb4\xf9\x7b\x40\x12\x68\x8e\xa1\x73\x3a\x50\x5e\x0b\x0d\xea\xfc\x83\x32\x53\x61\x4b\x2b\xda\x23\xab\x2e\x6d\xff\x1a\xc2\xda\x71\x1f\xa3\x9f\x00\x00\x00\xff\xff\xea\xe0\x30\x4d\x85\x02\x00\x00" +var _lockedtokensDelegatorDelegate_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x2f\xa1\x87\xd2\x83\xd4\x8a\x34\x96\x82\xa2\xa2\xf6\x07\x4c\x77\x27\x66\x31\xee\x84\xc9\x58\x53\x8a\xff\xbd\xe8\x9a\x54\x2b\xcd\x65\x32\xec\xe3\x7d\xfb\xde\xba\x6d\xc9\xa2\x30\x61\xb3\x21\xbb\xe2\x0d\xf9\x0a\x32\xe1\x2d\xdc\xd7\x93\xd9\xcb\x78\x94\xae\x66\xe3\xd1\x74\x98\xa6\x8b\xd1\x72\x19\x45\x2a\xe8\x2b\x34\xea\xd8\xc7\xb8\xe5\x9d\xd7\x1e\xbc\xbf\xba\xfa\xf1\xa1\x0b\xdf\x11\x00\x40\x41\x0a\x9e\x2d\xa5\x54\xd0\x1a\x95\x65\x2e\x5c\x7f\xf5\xae\x08\x49\x58\xa6\x37\xb2\xe8\x64\x51\x0a\x95\x28\x14\xa3\x31\x81\x30\xdc\x69\x3e\x0c\x4b\x83\x69\x50\x39\x17\x96\x64\x41\x19\xf4\xe1\xac\x4f\x3e\x58\x84\xf7\x4f\x77\x57\xc8\xd3\x78\x3b\xa9\x9f\xe3\x63\xc2\x3f\x57\xba\x38\x5f\x2a\x0b\xae\x69\x8e\x9a\x77\xa1\xa5\x1d\xbf\xc1\x00\x4a\xf4\xce\xc4\x9d\x0b\x39\xb8\x0a\x3c\x2b\x54\xf8\x49\x16\x50\xa1\x2a\xc9\xb8\xcc\x91\x85\x12\x35\xef\x74\x5b\x8b\xf6\xa7\xa2\x22\x4b\x6e\x5b\x82\xfe\x6f\x9e\x73\x8a\x56\x10\x07\x9b\x43\xa8\x88\x6a\x32\x3b\xa5\x8b\x32\xfe\xb1\x4c\x6c\x58\x69\x41\x7b\x14\xdb\xc4\x6d\x1f\x2f\xcc\xc6\xfb\x10\xfd\x04\x00\x00\xff\xff\xf2\xb4\xba\xeb\x10\x02\x00\x00" func lockedtokensDelegatorDelegate_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4019,11 +3930,11 @@ func lockedtokensDelegatorDelegate_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd4, 0x98, 0x5, 0x2f, 0xf1, 0x93, 0xc8, 0x5b, 0xf1, 0x7e, 0x2d, 0x4e, 0xc0, 0x43, 0xef, 0xdb, 0xcc, 0x0, 0xc1, 0xf8, 0xcc, 0xd9, 0x4, 0x9a, 0xc0, 0x5c, 0x31, 0xaf, 0xb7, 0x3b, 0x43, 0x40}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xb5, 0x9a, 0xc5, 0xf6, 0xa3, 0xb3, 0x51, 0x42, 0xb8, 0x88, 0xa8, 0x28, 0x71, 0x66, 0x3d, 0x34, 0x4, 0x99, 0xf3, 0x94, 0x13, 0xef, 0x85, 0x3f, 0x7f, 0xa0, 0xa3, 0x40, 0x76, 0x94, 0xb}} return a, nil } -var _lockedtokensDelegatorDelegate_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4f\x4b\xeb\x40\x10\xbf\xe7\x53\x0c\x39\x94\x04\x1e\x39\x3d\xde\xa1\xbc\x5a\x14\x29\x1e\x44\x8b\x5a\x3d\x4f\x77\x27\xcd\xd2\x74\x67\xd9\x9d\xd8\x8a\xf4\xbb\x4b\xb3\x69\x4c\x2c\xe6\xb2\xec\xec\x6f\x7e\xff\x88\xd9\x39\xf6\x02\xf7\xac\xb6\xa4\x5f\x78\x4b\x36\x40\xe9\x79\x07\xe9\x70\x94\x26\x1d\x6e\xd1\xd8\x8d\x59\xd7\xd4\x8e\x3b\xe0\x68\x96\x26\x89\x78\xb4\x01\x95\x18\xb6\x19\xee\xb8\xb1\x32\x85\xd5\xc2\x1c\xfe\xfd\xcd\xe1\x33\x01\x00\xa8\x49\xc0\xb2\xa6\x5b\xaa\x69\x83\xc2\x7e\xe9\xf9\xf0\x31\x1d\xb9\x28\xe2\xe5\xe1\x02\x96\xb4\x14\xce\x93\x43\x4f\x19\x2a\x15\x15\xb0\x91\x2a\xbb\x61\xef\x79\xff\x8a\x75\x43\x39\x4c\xae\xe3\xdb\x59\xf5\xac\x5c\x71\xad\xc9\x3f\x51\x09\x33\xe8\xd6\x8b\x20\xec\x71\x43\xc5\xba\x25\xf8\xdf\x92\x8d\xdc\xb4\xc7\xa3\x23\x8f\xa7\x5c\xe1\xcf\xb8\x89\xe2\xcd\x48\xa5\x3d\xee\x73\x98\x5c\xae\xdd\xb5\x82\x57\xd9\xa9\xae\x1f\x21\x07\xef\xcf\xd1\xc2\x12\xa5\xca\x7b\xbf\xa7\x6f\x3e\x07\x87\xd6\xa8\x2c\x1d\xa0\xc1\x04\xb0\x2c\x10\xf0\x9d\x34\xa0\x40\x70\xa4\x4c\x69\x48\x83\x43\xa9\xd2\x3c\xe9\x39\x02\xd5\x65\x71\x59\x37\xcc\xbe\x9b\xe8\x72\xf7\x80\x2c\x3a\x38\x46\x12\x3a\x90\x6a\x84\x06\x35\xfe\x42\x59\xe8\x78\xa5\x95\x0d\x82\x7d\xca\xfe\x2f\x88\xe7\x99\xfb\x98\x7c\x05\x00\x00\xff\xff\xbf\x32\xa6\x32\x7d\x02\x00\x00" +var _lockedtokensDelegatorDelegate_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6a\xc2\x40\x10\xc6\xef\x79\x8a\xc1\x43\x49\x2e\xa1\x87\xd2\x83\xd4\x8a\x34\x96\x82\xa2\xe2\x9f\x07\x98\x6e\x26\x66\x31\xee\x2c\xbb\x63\x9b\x52\x7c\xf7\x62\x56\xd3\x58\xe9\x5e\x86\x61\xbf\xfd\x7e\xf3\xcd\xea\xbd\x65\x27\x30\x65\xb5\xa3\x7c\xcd\x3b\x32\x1e\x0a\xc7\x7b\xb8\xaf\xa7\xf3\x97\xc9\x38\x5b\xcf\x27\xe3\xd9\x28\xcb\x96\xe3\xd5\x2a\x8a\xc4\xa1\xf1\xa8\x44\xb3\x89\x71\xcf\x07\x23\x7d\xd8\xbc\xea\xfa\xf1\x21\x81\xef\x08\x00\xa0\x22\x01\xc3\x39\x65\x54\xd1\x16\x85\xdd\xc2\x71\xfd\xd5\xbf\x22\xa4\xa1\x99\xdd\xc8\xa2\xc6\xc2\x3a\xb2\xe8\x28\x46\xa5\x02\x61\x74\x90\x72\x14\x9a\x0b\xe6\x82\x2a\xb9\xca\xc9\x2d\xa9\x80\x01\x9c\xf5\xe9\x3b\x3b\xc7\x9f\x4f\x77\x57\xc8\xa6\xbc\x35\xea\xe7\xf8\x94\xf0\xcf\x48\x9d\xfb\x95\xb0\xc3\x2d\x2d\x50\xca\x04\x5a\xda\xe9\x0c\x87\x60\xd1\x68\x15\xf7\x3a\x72\xd0\x1e\x0c\x0b\x78\xfc\xa0\x1c\x50\xc0\x5b\x52\xba\xd0\x94\x83\x45\x29\x7b\x49\xd4\x7a\x78\xaa\x8a\xf4\x76\x3b\x30\xf8\xcd\x71\x9e\xbe\x15\xc4\x49\xf3\xfa\x18\x4c\xa8\x26\x75\x10\xea\x2c\xe1\x1f\xcb\x34\x0f\x2d\x6d\x8c\x17\x6c\x63\xb6\x9f\x16\xea\xc5\xfb\x18\xfd\x04\x00\x00\xff\xff\xfe\xc1\x9a\x73\x08\x02\x00\x00" func lockedtokensDelegatorDelegate_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4039,11 +3950,11 @@ func lockedtokensDelegatorDelegate_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0x83, 0x51, 0xb4, 0x43, 0xb4, 0x5a, 0x2, 0xbf, 0x7, 0xab, 0xdf, 0x75, 0x84, 0x56, 0xd, 0x4a, 0xbe, 0x18, 0xa4, 0x1, 0x5e, 0xcc, 0xc5, 0xf0, 0x4, 0xe, 0x42, 0xc8, 0x24, 0xa0, 0x99}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x89, 0xfe, 0xf6, 0x67, 0xf, 0x7b, 0x3, 0xf4, 0x14, 0x99, 0xaa, 0x92, 0xe3, 0xd4, 0x35, 0x90, 0x51, 0x4f, 0x83, 0x36, 0xd6, 0xf9, 0xed, 0x2a, 0x9f, 0x37, 0x1, 0x43, 0x9f, 0xd5, 0x50, 0x8f}} return a, nil } -var _lockedtokensDelegatorGet_delegator_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcd\x4e\xc3\x30\x10\x84\xef\x7e\x8a\x21\x07\x94\x5c\x72\x80\x5b\x05\x54\x15\x3d\x10\xa9\x87\x0a\xc1\x03\x38\xce\x26\x58\x75\xbc\xd1\x7a\x2d\x0e\x88\x77\x47\x4d\xa0\x94\x9f\xbd\x58\x1a\xcd\x7c\xe3\xf1\xe3\xc4\xa2\xd8\xb1\x3b\x50\xf7\xc4\x07\x8a\x09\xbd\xf0\x88\xe2\x5c\x2a\x8c\xb1\xce\x51\x4a\xa5\x0d\xa1\x42\x9f\x23\x46\xeb\x63\x69\x9d\xe3\x1c\x75\x85\x4d\xd7\x09\xa5\x54\xad\xf0\xdc\x44\xbd\xbe\xc2\x9b\x31\x00\x10\x48\x11\x66\xd0\x66\xb1\x36\xb1\xe7\x47\xea\x71\x8b\x81\xf4\x53\xfb\xc2\x54\x73\xe4\x78\xb5\xb3\x93\x6d\x7d\xf0\xea\x29\xd5\x2d\x8b\xf0\xeb\xcd\xe5\xf9\x8f\xea\xf9\x79\xe0\xd0\x91\xdc\x95\xa7\xe0\xf1\x7e\xd8\x76\xbf\xcb\xf7\xb9\x0d\xde\xed\xad\xbe\x9c\x42\xdf\xbd\xeb\x35\x26\x1b\xbd\x2b\x8b\x7b\xce\xa1\x43\x64\xc5\xd2\x0e\x0b\xa1\x9e\x84\xa2\x23\x28\x63\x9a\x31\xf8\x83\x2f\xaa\x65\xb8\x90\x66\x89\xff\x6e\xaf\x07\xd2\x2d\x05\x1a\xac\xb2\x34\xdb\xb2\xba\x30\xef\xe6\x23\x00\x00\xff\xff\x3e\xb8\x32\x69\x88\x01\x00\x00" +var _lockedtokensDelegatorGet_delegator_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x50\x5d\x4b\x02\x41\x14\x7d\x9f\x5f\x71\xf2\x21\x66\x5f\x24\xea\x4d\x2a\x11\x57\x48\x94\x14\xb5\x1f\x30\xce\xde\xb5\xc1\xd9\xb9\xcb\xec\x5d\x2a\xc4\xff\x1e\xbb\x5b\x66\x1f\x74\x5f\x06\xce\x9c\x2f\x8e\x2b\x4a\x8e\x82\x39\xdb\x3d\x65\x1b\xde\x53\xa8\x90\x47\x2e\x70\xf5\x3a\x5f\x8c\x67\x93\x74\xb3\x98\x4d\x1e\x47\x69\xba\x9a\xac\xd7\x4a\x19\x6b\xa9\xaa\xb4\xf1\x3e\x41\x5e\x07\x14\xc6\x05\x6d\xac\xe5\x3a\xc8\x00\xa3\x2c\x8b\x54\x55\xc9\x00\x4f\xd3\x20\x37\xd7\x38\x28\x05\x00\x9e\x04\xbe\x4d\x18\x75\xd4\x69\xc8\x79\x45\x39\xee\xb0\x23\xf9\xc0\x3e\x6d\x92\x56\xd2\x5c\x7f\x47\x32\x36\xa5\xd9\x3a\xef\xe4\xed\xf6\xf2\xbc\x64\xbf\x7d\x1e\xd8\x67\x14\x0f\xdf\x3e\xe6\x3f\x83\x8e\xf7\xfa\x64\xd9\xdc\xff\xec\x65\xbd\xf5\xce\x2e\x8d\x3c\x9f\x44\x67\x8d\xb6\x1c\x23\xbf\xe8\x2f\x64\x38\x44\x69\x82\xb3\xba\x37\xe6\xda\x67\x08\x2c\xe8\x48\x30\x88\x94\x53\xa4\x60\x09\xc2\x28\x5b\x63\xfc\x0a\xec\x25\xdd\x48\x91\xa4\x8e\xe1\xcf\x9d\x9a\x21\x52\xf2\xb4\x33\xc2\x71\x9a\xea\xe4\x42\x1d\xd5\x7b\x00\x00\x00\xff\xff\x55\x4e\x83\x2e\xba\x01\x00\x00" func lockedtokensDelegatorGet_delegator_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4059,11 +3970,11 @@ func lockedtokensDelegatorGet_delegator_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x12, 0xcf, 0xbd, 0xf4, 0xb4, 0xe2, 0x96, 0x6a, 0xb, 0x7b, 0x4f, 0xdf, 0xfe, 0x86, 0x5a, 0xbc, 0xa7, 0xae, 0x48, 0x8a, 0x9f, 0x27, 0xf1, 0x4c, 0xdb, 0x2a, 0x8c, 0xf4, 0x72, 0xc0, 0x88}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0xc3, 0xa5, 0xbc, 0x85, 0xfa, 0x8d, 0xd0, 0x9e, 0x14, 0x44, 0xf4, 0x8f, 0x49, 0x96, 0x19, 0xc5, 0x4f, 0xc7, 0x7c, 0xdc, 0x2, 0x31, 0x7c, 0xdd, 0x25, 0xb5, 0x95, 0xb7, 0xca, 0x12, 0x3a}} return a, nil } -var _lockedtokensDelegatorGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4d\x8b\xdb\x30\x14\xbc\xfb\x57\xbc\xe4\x10\x6c\x58\x9c\x7b\xa8\x0b\x81\x50\x1a\x28\xcb\xb2\xdd\xdb\xb2\x87\x67\xeb\x39\x51\xa3\xe8\x19\x49\x26\x94\x90\xff\x5e\xfc\x11\xc5\x5a\x3b\x25\xad\x2f\x26\x4f\x33\xa3\x91\x66\x62\x79\xac\xd8\x38\xf8\xa6\xf8\xb4\xdd\xbc\x61\xae\xe8\xa7\xc3\x83\xd4\x3b\x28\x0d\x1f\x61\x3e\x5e\x98\x47\x3d\xe7\x07\x17\x07\x12\x6f\x7c\x20\x6d\x7b\xf4\x70\x34\x8f\xa2\xe5\x12\x5e\xc9\xd5\x46\x5b\x40\x0d\x68\x0c\xfe\x06\x2e\x61\x43\x8a\x76\xe8\xd8\x6c\x75\xc9\xc0\xf9\x2f\x2a\x9c\x05\xb7\x47\x07\x6e\x4f\x80\x45\xc1\xb5\x76\x50\xb0\x76\x86\x95\x6d\x64\xa4\x06\xe9\x2c\x68\x36\x47\x54\x1e\x81\x5a\x80\xdd\xa3\x21\x71\x1d\x45\x11\x16\x05\x59\x1b\xa3\x52\x09\x94\xb5\x86\x23\x4a\x1d\xf7\xab\x2b\x58\x0b\x61\xc8\xda\x64\x05\xef\xe3\x93\xa5\x81\xb1\x0f\x38\x47\x11\x00\x80\x22\x07\x62\xb8\xb2\x6e\x0e\xf2\x90\x42\x06\xef\x1f\x37\x91\xaa\xce\xd7\xbd\xf3\x0c\x76\xe4\xfa\x1f\x57\x77\xc9\x0d\xc9\x95\x93\xac\x51\x79\xb9\x57\x2a\x21\x1b\x08\xb4\xc8\xe6\x49\x0b\xac\x30\x97\x4a\x3a\x49\x36\xcd\xd9\x18\x3e\x7d\x59\x9c\x27\xac\x3d\xb3\x20\xaf\xf7\x52\xe7\x4a\x16\x97\xaf\xb1\x17\x6a\x9e\x65\xd5\x8e\x97\xa5\xe2\x53\x4f\xf3\x0c\x0f\xec\x6d\xca\x32\xbc\x98\xce\xe1\xa4\xf1\xb3\xe7\x36\x0c\xd9\x84\x9e\x4d\x34\x2e\xbc\xbc\xd0\x99\x66\x41\xdb\xcd\x2a\xd8\x2e\xed\x86\x4f\x01\xf0\x16\xd4\x67\xb4\x14\x83\x23\x8c\xe1\xd7\x5c\x53\xac\x2a\xd2\x22\x6e\x6c\x76\xb8\xcb\x38\x97\xae\xe7\x7d\x16\x0d\xf5\x1f\xf3\x19\xfe\x4f\xd2\xf6\xf5\x9d\x95\x20\xf3\x29\x8f\x00\x36\xda\xb3\xcb\xf0\x05\xdd\xfe\x4e\x36\x6a\xda\xe5\x5f\x0f\x11\x66\xd5\xdd\x30\x64\x93\x52\xe9\x8e\x9c\x8f\xec\xb9\x45\xc6\x49\x40\x1f\x84\xf1\x88\x46\xcb\xf7\x02\xb2\xbc\x6e\x3f\xcb\x40\x4b\x05\x8b\x45\x20\xd8\x4f\xcf\xc1\x8d\xfd\x77\xc1\x86\x25\xeb\xde\xb3\xa7\x11\x60\xba\x5c\xdb\xcd\x2c\x40\x26\x77\x0a\x79\xbf\x61\x5d\xcb\x06\x5d\x33\xed\x57\x73\x82\x1b\x5d\xa2\x3f\x01\x00\x00\xff\xff\xc7\x86\x6b\x79\xb2\x05\x00\x00" +var _lockedtokensDelegatorGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4d\x8f\xda\x30\x14\xbc\xe7\x57\x3c\xf6\x80\x12\x69\x15\x7a\x46\x4d\x25\x44\xa8\x8a\x16\xb1\x2b\xe0\xb6\xda\x83\x13\xbf\x04\x17\x63\x47\xb6\x23\x8a\x22\xfe\x7b\x95\x0f\x42\x4c\x42\x85\x9a\x4b\x84\x3d\x33\x1e\xbf\x19\xc2\x8e\x99\x54\x06\x7e\x72\x79\x5a\x86\x3b\x12\x71\xdc\x1a\x72\x60\x22\x85\x44\xc9\x23\xbc\xf4\x37\x5e\x9c\x86\xb3\x92\xf1\x01\xe9\x4e\x1e\x50\xe8\x1a\xfd\xed\xcf\xea\x7d\xfe\xb6\x08\x77\xef\x6f\x8b\xf5\x2c\x0c\x37\x8b\xed\xd6\x71\x26\x13\xd8\xa0\xc9\x95\xd0\x40\x04\x10\xa5\xc8\x19\x64\x02\x21\x72\x4c\x89\x91\x6a\x29\x12\x09\x32\xfa\x8d\xb1\xd1\x60\xf6\xc4\x80\xd9\x23\x90\x38\x96\xb9\x30\x10\x4b\x61\x94\xe4\xba\x94\x61\x02\x98\xd1\x20\xa4\x3a\x12\xde\x22\x88\xa0\xa0\xf7\x44\x21\xbd\x2e\x39\x0e\x89\x63\xd4\xda\x25\x9c\x7b\x90\xe4\x02\x8e\x84\x09\xb7\xd9\x9d\xc2\x8c\x52\x85\x5a\x7b\x53\xf8\xec\xdf\xcf\xb7\x8c\x7d\x41\xe1\x38\x00\x00\x1c\x0d\xd0\xee\xce\xac\xbc\xc8\x53\x0a\x01\x7c\x7e\xdd\x44\xb2\x3c\x9a\x35\xce\x03\x48\xd1\x34\x3f\xae\xee\xbc\x81\xe3\xe6\x24\x83\xa0\x43\xac\x10\xe5\xe3\xa7\x68\xe6\x24\x23\x11\xe3\xcc\x9c\xbf\x8f\x8b\x01\x33\x6b\x49\xb1\x35\xf4\x91\x47\x9c\xc5\x97\x1f\x6e\x2b\x51\x3e\x93\xac\x5a\x9e\x24\x5c\x9e\x1a\x5a\xcb\x68\x81\x8d\x31\x96\xd8\xde\x36\x98\x40\x60\x59\xf5\x23\xa9\x94\x3c\xb9\x1e\x14\x2d\xb9\xa4\xb0\x32\xe7\x60\xa0\x6a\xf6\xbc\x6c\x6b\x42\x52\x5c\x86\x53\xeb\x3c\xbf\x5e\x7c\xb5\x80\xb7\x6c\xee\xd1\x8c\x76\xee\xd0\x87\x5f\xa3\xf4\x49\x96\xa1\xa0\x6e\x69\xb3\xc6\x5d\x6e\x51\xf0\xaa\xeb\xcd\xf8\x4b\xca\xd3\x91\x74\xff\x25\x7e\xf5\xfa\x25\x39\x45\x55\x58\x1b\xab\x7b\xfd\xfb\x88\xfe\x8d\xae\x63\xfd\x20\x66\xff\x20\xae\x9e\xff\x3a\xb6\xa1\x6b\x3d\x8a\xaf\x1e\xfa\x10\xa9\x1c\x72\x8a\xa6\x4d\x71\x5d\x21\x5d\xcf\xa2\x77\xf2\x79\x46\xa3\xe2\xb7\x02\x2c\xb9\x1e\x3f\x0a\x40\x30\x0e\xe3\xb1\x25\xd8\xac\x16\xd6\xc8\xfe\xbb\x73\xdd\xde\xd5\xef\xd1\x6b\x0f\x30\xdc\xb7\x65\x38\xb2\x90\xde\x83\x8e\x3e\x2e\x5d\x5d\xbc\x4e\xfd\x54\xf5\xed\x1c\xe0\x3a\x17\xe7\x6f\x00\x00\x00\xff\xff\xe4\xaa\xad\x4c\xbe\x05\x00\x00" func lockedtokensDelegatorGet_delegator_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -4079,11 +3990,11 @@ func lockedtokensDelegatorGet_delegator_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa9, 0x5c, 0xc3, 0x5a, 0x3c, 0x1a, 0xd2, 0x9d, 0x8d, 0xd9, 0xb6, 0x51, 0x45, 0x55, 0x69, 0xac, 0x7b, 0x6b, 0x27, 0x53, 0x9f, 0xd8, 0xc7, 0xf1, 0x19, 0xf9, 0xa9, 0x40, 0x26, 0x69, 0xf2, 0x3f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0xb2, 0xb6, 0x50, 0x97, 0x85, 0x8e, 0x77, 0x7a, 0x55, 0xca, 0x2f, 0x5c, 0xca, 0x1b, 0x10, 0xd2, 0x45, 0xcb, 0x4c, 0xeb, 0xc4, 0xe0, 0x75, 0xd0, 0xcf, 0xe7, 0xfc, 0x7d, 0x16, 0x1d, 0x64}} return a, nil } -var _lockedtokensDelegatorGet_delegator_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcf\x4e\xf3\x30\x10\xc4\xef\x7e\x8a\xf9\x72\xf8\x94\x5c\xf2\x00\x15\x50\x55\xf4\x40\xa5\x0a\x55\xc0\x0b\x38\xf6\x26\x58\x75\xbc\xd1\x7a\x2d\x0e\x88\x77\x47\x4d\xa0\x94\x3f\x7b\xb1\x34\x9a\xf9\x8d\x27\x8c\x13\x8b\x62\xcf\xee\x48\xfe\x89\x8f\x94\x32\x7a\xe1\x11\xd5\xa5\x54\x19\x63\x9d\xa3\x9c\x6b\x1b\x63\x83\xbe\x24\x8c\x36\xa4\xda\x3a\xc7\x25\xe9\x0a\x1b\xef\x85\x72\x6e\x56\x78\x54\x09\x69\xc0\xab\x31\x00\x10\x49\x11\x67\xd0\x66\xb1\xee\x52\xcf\x0f\xd4\xe3\x1a\x03\xe9\x87\xf6\x89\x69\xe6\xc8\xe9\x5a\x67\x27\xdb\x85\x18\x34\x50\x6e\x3b\x16\xe1\x97\xab\xff\x97\x3f\x6a\xe7\xe7\x8e\xa3\x27\xb9\xa9\xcf\xc1\xd3\x7d\xb3\xed\x7f\x96\x1f\x4a\x17\x83\x3b\x58\x7d\x3e\x87\xbe\x7a\xd7\x6b\x4c\x36\x05\x57\x57\xb7\x5c\xa2\x47\x62\xc5\xd2\x0e\x0b\xa1\x9e\x84\x92\x23\x28\x63\x9a\x31\xf8\x85\xaf\x9a\x65\xb8\x90\x16\x49\x7f\x6e\x6f\x07\xd2\x2d\x45\x1a\xac\xb2\xdc\xb3\xa7\xdd\xb6\x6e\xfe\x99\x37\xf3\x1e\x00\x00\xff\xff\x2b\x7f\x31\x90\x8c\x01\x00\x00" +var _lockedtokensDelegatorGet_delegator_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x50\xcd\x6a\xc2\x40\x10\xbe\xef\x53\x4c\x3d\x94\xcd\x45\x7a\x96\xb6\x22\x46\xa8\x28\x2a\xc6\x17\xd8\xec\x4e\xd2\xc5\xcd\x4e\x98\x4c\x68\x8b\xf8\xee\x25\x49\x6b\xed\x0f\x9d\xcb\xc2\xb7\xdf\x1f\x9f\xaf\x6a\x62\x81\x35\xd9\x23\xba\x03\x1d\x31\x36\x50\x30\x55\x70\xf7\xba\xde\xce\x57\x8b\xf4\xb0\x5d\x2d\x36\xb3\x34\xdd\x2f\xb2\x4c\x29\x63\x2d\x36\x8d\x36\x21\x24\x50\xb4\x11\x2a\xe3\xa3\x36\xd6\x52\x1b\x65\x02\x33\xe7\x18\x9b\x26\x99\x40\x26\xec\x63\x09\x27\xa5\x00\x00\x02\x0a\x84\x3e\x61\x36\x50\x97\xb1\xa0\x3d\x16\xf0\x00\x25\xca\x07\xf6\x69\x93\xf4\x92\xee\xc6\x25\xca\xdc\xd4\x26\xf7\xc1\xcb\xdb\xfd\xed\x75\xc9\x71\xff\x3c\x51\x70\xc8\xa7\x6f\x1f\xeb\x9f\x41\xe7\x47\x7d\xb1\xec\xee\x7f\xf6\xae\xcd\x83\xb7\x3b\x23\xcf\x17\xd1\x55\xa3\x9c\x98\xe9\x45\x7f\x21\xd3\x29\xd4\x26\x7a\xab\x47\x73\x6a\x83\x83\x48\x02\x03\x09\x0c\x30\x16\xc8\x18\x2d\x82\x10\xd4\xbd\x31\xfc\x0a\x1c\x25\xc3\x48\x8c\xd2\x72\xfc\x73\xa7\x6e\x88\x14\x03\x96\x46\x88\x37\xe4\x70\x99\xea\xe4\x46\x9d\xd5\x7b\x00\x00\x00\xff\xff\x26\xe4\x26\xef\xbe\x01\x00\x00" func lockedtokensDelegatorGet_delegator_node_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4099,11 +4010,11 @@ func lockedtokensDelegatorGet_delegator_node_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_node_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xee, 0x61, 0xcb, 0xb1, 0x59, 0xce, 0x22, 0xfb, 0x43, 0x23, 0xf2, 0x1, 0xc5, 0x22, 0xa9, 0x53, 0xc9, 0x52, 0xbb, 0x83, 0x3c, 0x7d, 0xdb, 0xcd, 0xfa, 0x13, 0x12, 0xf1, 0x57, 0xe7, 0x31, 0xdc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe8, 0x2d, 0x98, 0x5e, 0x2a, 0x5b, 0x4f, 0xe4, 0xe7, 0xa0, 0x41, 0xe4, 0x7e, 0x27, 0x5f, 0xcc, 0xe, 0xe8, 0xb4, 0x6a, 0x2d, 0x3, 0x9f, 0xd, 0x9a, 0x60, 0x39, 0x35, 0xb7, 0x3, 0xb7, 0xfb}} return a, nil } -var _lockedtokensDelegatorRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x54\x41\x6f\xdb\x3c\x0c\xbd\xfb\x57\xf0\xf3\xa1\xb0\x81\xd6\xbd\x7c\xd8\x21\x68\x56\xac\x0b\x8a\x15\xd8\xb2\xa2\xe9\xba\xb3\x62\xd1\xb6\x10\x59\xf2\x24\xba\xc9\x10\xe4\xbf\x0f\xb2\x14\xc7\x4e\x96\x6d\x97\x9d\xe6\x4b\x51\x91\x7c\x7c\xef\x91\x8c\xa8\x1b\x6d\x08\xee\xa5\x5e\x3f\xeb\x15\x2a\x28\x8c\xae\x21\xee\xff\x8f\xa3\x90\xf1\x51\xe7\x2b\xe4\xdd\x9b\x0d\x49\xc3\xa7\x3e\xcf\x55\x3e\xcc\x9e\xd9\x52\xe2\x82\xd8\x4a\xa8\x72\x00\x39\x0e\x1c\x6a\x5a\x55\x8a\xa5\xc4\x11\x83\xe1\x5b\x1c\x45\x64\x98\xb2\x2c\x27\xa1\x55\x22\xf8\x04\x16\x64\x84\x2a\x2f\x81\xd5\xba\x55\x34\x81\x2f\xf7\x62\xf3\xe6\xff\x14\xb6\x51\x04\x00\x20\x91\xa0\xd2\x92\xa3\x79\xc2\x62\x02\xac\xa5\x2a\x19\xf2\xcd\xba\x3f\x9f\x1b\x34\xcc\x41\xda\xcb\x31\x89\xec\xab\xa0\x8a\x1b\xb6\x4e\xe1\xe2\xb4\xec\x43\x07\x7c\x68\xf4\xca\x5a\x49\x87\x3e\x67\x91\x7a\x57\xb3\x17\x57\xe1\x01\x1a\x83\x0d\x33\x98\xb0\x3c\xf7\x4a\x3a\x8c\x3b\x6d\x8c\x5e\xbf\x30\xd9\x62\x0a\x17\xef\x7c\xcc\xa9\x83\xf0\x59\x94\x45\xd6\x2b\x84\x29\x84\xfa\xcc\x92\x36\xac\xc4\x6c\xd9\x21\xdc\xfc\x0d\xe5\x6f\x13\x37\xa3\x09\x9c\x8b\x2f\x3c\x85\x47\x46\x55\xda\x13\x76\xdf\xed\x2d\x34\x4c\x89\x3c\x89\x07\xd9\x20\x2c\x28\x4d\x60\xd9\x2b\x72\x60\x04\xb6\xc1\x5c\x14\x02\x39\x34\x8c\xaa\x38\x8d\xc6\xa2\xf7\x6e\xff\x46\xf3\x9f\x4e\x61\x2f\xe6\x3a\x80\x5c\x17\xfb\x78\x17\x3e\x27\xe0\xbd\x6e\x25\xef\x78\xfb\xa6\xe0\xca\x80\xba\x0d\xee\x18\x82\xc1\x02\x0d\xaa\x1c\x63\x8f\xb1\xf3\x3a\x70\x83\x79\x4b\x38\x18\xa5\x5b\x21\xd9\x59\x79\xc7\x24\x53\x39\xc2\xf4\x68\xbc\x59\x89\xe4\xcd\x0e\x9b\x10\x12\x93\x81\x37\xa2\x08\xb7\x00\x37\xd3\x23\xb8\x6d\x34\x12\x71\x84\x9d\x1b\x64\x84\x73\xcd\x71\x86\x12\x4b\x46\xda\x24\x4a\x73\x7c\x98\x4d\x40\xf0\x74\x5c\xeb\xb8\x5a\x62\x2b\x34\x8f\x46\x6f\xbe\x9f\x32\xf5\x6e\x1c\x90\x8e\xea\x07\xb5\x19\xf7\x49\x38\x47\xef\xb7\x4d\xf6\xc7\x1c\x84\x5c\xfd\xe4\xd7\xc4\x59\xd1\xa3\x7f\x12\x4a\xd4\x6d\xed\x42\xf8\x84\xdf\x5a\x61\xb0\x46\x45\x49\x3a\xe8\xba\x03\x94\x16\x9d\x3d\x49\xd2\xe3\x8e\xfc\x49\x9d\x63\xa3\xd5\xca\x96\xfb\xc8\xaf\xad\xe3\xd8\x68\x2b\x28\x6c\xd0\xcd\xd5\x18\x64\x1d\x76\xee\x54\xd6\xb8\xfd\xb1\x45\xff\xe2\x78\xb6\x23\x1a\xe1\xc6\xe6\x9a\x00\x95\x6e\xcb\xca\x1f\x96\x05\xd2\x9e\xe2\x7f\xf1\xe1\x2e\x77\xe1\xba\x76\xd1\x8f\x00\x00\x00\xff\xff\xff\xca\xcc\xa6\xcd\x06\x00\x00" +var _lockedtokensDelegatorRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x53\x41\x6f\xdb\x3c\x0c\xbd\xfb\x57\xf0\xf3\xe1\x83\x0d\xac\xee\x0e\xc3\x0e\x41\xbb\xa2\xab\x5b\xac\x68\x97\x16\x49\xb6\x9d\x15\x8b\xb6\x85\xc8\x92\x27\xd1\x4d\x86\x20\xff\x7d\x90\xe5\x38\x76\xb2\xec\x0f\x2c\x97\xc0\x22\xf9\xf8\xde\x23\x29\xaa\x5a\x1b\x82\x07\xa9\xd7\x0b\xbd\x42\x05\xb9\xd1\x15\x84\xfd\x77\x18\x74\x19\xcf\x3a\x5b\x21\x6f\xdf\xac\x4f\x7a\xbf\x79\x7e\xb9\x7b\xba\x4f\x17\x2f\x4f\xf7\xd3\xdb\x34\x9d\xdd\xcf\xe7\xc1\x00\xef\x31\x5d\xb0\xa5\xc4\x39\xb1\x95\x50\xc5\x00\x78\x1c\xe8\x3b\x3c\x34\xaa\x10\x4b\x89\x23\x1e\xc3\xb7\x30\x08\xc8\x30\x65\x59\x46\x42\xab\x48\xf0\x09\xcc\xc9\x08\x55\xbc\x03\x56\xe9\x46\xd1\x04\xbe\x3d\x88\xcd\xc7\x0f\x31\x6c\x83\x00\x00\x40\x22\x41\xa9\x25\x47\x33\xc3\x7c\x02\xff\x0f\x45\x24\xed\xdf\x97\x36\x7a\xc8\x7e\x63\x8d\x24\x9f\xdc\x7b\x90\x7c\x77\x8f\x3e\xa7\x36\x58\x33\x83\x11\xcb\x32\xdf\xf1\xb6\xa1\xf2\xd6\x7f\xb8\xb6\xd0\xfd\x2c\xca\x3c\xe9\x5b\xc3\x35\x74\x05\xc9\x52\x1b\xa3\xd7\x57\x67\xa9\x7c\x8a\x9c\xf2\x09\x9c\x8b\xcf\x49\x1b\x56\xe0\x2b\xa3\x32\x86\xbe\x9d\xfb\xdd\xdc\x40\xcd\x94\xc8\xa2\x70\x90\x0e\xc2\x82\xd2\x04\x96\xbd\x21\x07\x46\x60\x6b\xcc\x44\x2e\x90\x43\xcd\xa8\x0c\xe3\x60\x4c\x79\xaf\xff\x94\x31\x6b\xa8\x8c\x46\xf3\x48\x7e\x08\x2a\xb9\x61\x6b\x37\xcd\xf8\xc4\xb0\xbd\x92\x4b\xeb\x29\x5f\xe6\xfb\x78\x1b\x8e\xcf\x90\xbf\xd3\x8d\xe4\x2d\x67\xdf\x18\x5c\x19\x50\xbb\x14\x2d\x3b\x30\x98\xa3\x41\x95\x61\xe8\x31\x76\x5e\x03\x6e\x30\x6b\x08\x07\x43\x70\x03\x95\xad\x8f\x9f\x99\x64\x2a\x43\xb8\x3e\x1a\x4c\x52\x20\x79\xa7\xbb\x19\x76\x89\xd1\xc0\x17\x91\x77\xeb\x05\x57\xd7\x47\x70\xdb\x60\x24\xe2\x08\x3b\x33\xc8\x08\xa7\x9a\x63\x8a\x12\x0b\x46\xda\x44\x4a\x73\x7c\x4c\x27\x20\x78\x3c\xae\x75\x5c\x2d\xb1\x15\x9a\x57\xa3\x37\xbf\x4e\x99\x7a\x37\x0e\x48\x47\xf5\x83\xda\x84\xfb\x24\x9c\xa2\xf7\xdb\x46\xfb\xfb\xe8\x84\x5c\xfc\xe1\x40\x9d\x15\x3d\xfa\x57\xa1\x44\xd5\x54\x2e\x84\x33\xfc\xd9\x08\x83\x15\x2a\x8a\xe2\x41\xd7\x1d\xa0\xb4\xe8\xec\x89\xa2\x1e\x77\xe4\x4f\xec\x1c\x1b\xad\x55\xb2\xdc\x47\xfe\x6e\x1d\xc7\x5a\x5b\x41\xdd\x06\x5d\x5d\x8c\x41\xd6\xdd\xde\x9d\xca\x1a\xb7\x3f\xb6\xe8\x5f\x1c\xcf\x76\x44\xa3\xbb\xb1\xa9\x26\x40\xa5\x9b\xa2\xf4\x87\x65\x81\xb4\xa7\xf8\x5f\x78\xb8\xcb\x5d\x77\x5d\xbb\xe0\x77\x00\x00\x00\xff\xff\xdb\xa8\x21\xd9\x26\x06\x00\x00" func lockedtokensDelegatorRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -4119,11 +4030,11 @@ func lockedtokensDelegatorRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0xbb, 0xe3, 0x9f, 0x58, 0x2d, 0xa7, 0x68, 0x5e, 0x3e, 0x8b, 0x4a, 0xbe, 0x59, 0xab, 0xc6, 0xae, 0x8e, 0xfe, 0x37, 0xc, 0xdc, 0x3a, 0xc5, 0xb2, 0x4d, 0x34, 0x53, 0x6e, 0xef, 0x38, 0x69}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x91, 0xd9, 0x77, 0x22, 0xa7, 0x8d, 0xfc, 0xd1, 0x1e, 0xec, 0x25, 0x54, 0xf7, 0x7c, 0x6c, 0xef, 0x31, 0x1d, 0xf4, 0xf8, 0xa3, 0x68, 0x6a, 0x28, 0xd6, 0x22, 0xf0, 0x2b, 0x20, 0xf3, 0xe7, 0xc0}} return a, nil } -var _lockedtokensDelegatorRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xc1\x4e\xab\x50\x10\xdd\xf3\x15\x13\x16\x0d\x24\x2f\xac\x5e\xde\xa2\x79\xb5\xd1\x98\xc6\x85\xd1\x46\xad\xae\xa7\x30\xc0\x4d\xe9\x1d\x9c\x3b\xd8\x1a\xd3\x7f\x37\xe5\x52\x0a\x36\xb2\x19\x98\x39\x73\xce\x99\x13\xcc\xb6\x66\x51\xb8\xe7\x74\x43\xd9\x0b\x6f\xc8\x3a\xc8\x85\xb7\x10\x0e\x5b\x61\xd0\xe1\x16\x8d\x2d\xcc\xba\xa2\xb6\xdd\x01\x47\xbd\x30\x08\x54\xd0\x3a\x4c\xd5\xb0\x8d\x70\xcb\x8d\xd5\x29\xac\x16\x66\xff\xef\x6f\x0c\x5f\x01\x00\x40\x45\x0a\x96\x33\xba\xa5\x8a\x0a\x54\x96\xa5\xf0\xfe\x73\x3a\x72\x91\xf8\x8f\x87\x0b\x58\xd0\x52\xd4\x42\x35\x0a\x45\x98\xa6\x5e\x01\x1b\x2d\xa3\x1b\x16\xe1\xdd\x2b\x56\x0d\xc5\x30\xb9\xf6\xb3\x93\xea\x49\xb9\xe4\x2a\x23\x79\xa2\x1c\x66\xd0\xad\x27\x4e\x59\xb0\xa0\x64\xdd\x12\xfc\x6f\xc9\x46\x6e\xda\xf2\x58\x93\xe0\xf1\x2e\xf7\x67\x9c\x44\xf2\x66\xb4\xcc\x04\x77\x31\x4c\x2e\xd7\xee\x5a\xc1\xab\xe8\x18\xd7\x8f\x23\x07\xf3\x67\x6f\x61\x89\x5a\xc6\xbd\xdf\xe3\x33\x9f\x43\x8d\xd6\xa4\x51\x38\x40\x83\x71\x60\x59\xc1\xe1\x07\x65\x80\x0a\xae\xa6\xd4\xe4\x86\x32\xa8\x51\xcb\xf0\x4c\xd1\xbf\x38\xaa\xf2\xe4\x32\x76\x98\x9d\x13\xe9\xee\xef\x01\x91\xa7\x39\xf8\xcc\x69\x4f\x69\xa3\x34\x88\xf3\x17\xca\x44\xe8\xbd\x21\xa7\x2b\xeb\x14\x37\xc6\x16\xfd\x7f\xe0\xeb\x89\xf5\x10\x7c\x07\x00\x00\xff\xff\x6f\x65\xa9\x7e\x7f\x02\x00\x00" +var _lockedtokensDelegatorRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xdf\x6a\xf2\x40\x10\xc5\xef\xf3\x14\x83\x17\x1f\xf1\x26\x7c\x17\xa5\x17\x52\x2b\xd2\x58\x0a\x8a\x8a\x7f\x1e\x60\xba\x99\x98\xc5\xb8\x93\xce\x4e\xda\x94\xe2\xbb\x17\x5d\x4d\xb5\xd2\xdc\x4c\x86\x3d\x9c\xdf\x9e\xb3\x76\x57\xb1\x28\x4c\xd8\x6c\x29\x5b\xf1\x96\x9c\x87\x5c\x78\x07\xff\x9b\xc9\xec\x69\x3c\x4a\x57\xb3\xf1\x68\x3a\x4c\xd3\xc5\x68\xb9\x8c\x22\x15\x74\x1e\x8d\x5a\x76\x31\xee\xb8\x76\xda\x83\xf5\xb3\x6d\xee\xef\xba\xf0\x15\x01\x00\x94\xa4\xe0\x38\xa3\x94\x4a\xda\xa0\xb2\xcc\x85\x9b\xcf\xde\x15\x21\x09\xcb\xf4\x46\x16\x1d\x2d\x2a\xa1\x0a\x85\x62\x34\x26\x10\x86\xb5\x16\xc3\xb0\x9c\x31\x67\x54\xc1\x65\x46\xb2\xa0\x1c\xfa\x70\xd2\x27\xaf\x2c\xc2\x1f\x0f\xff\xae\x90\xc7\xf1\x72\x54\x3f\xc6\x87\x84\xbf\xae\x74\x71\xbe\x54\x16\xdc\xd0\x1c\xb5\xe8\x42\x4b\x3b\x7c\x83\x01\x54\xe8\xac\x89\x3b\x17\x72\xb0\x1e\x1c\x2b\x78\x7c\xa7\x0c\x50\xc1\x57\x64\x6c\x6e\x29\x83\x0a\xb5\xe8\x74\x5b\x8b\xf6\xc7\x53\x99\x27\xb7\x2d\x41\xff\x27\xcf\x29\x45\x2b\x88\x83\xcd\x3e\x54\x44\x0d\x99\x5a\xe9\xa2\x8c\x3f\x2c\x13\xa1\xb7\x9a\xbc\xae\x9d\x57\xdc\x5a\xb7\x69\x9f\x2d\xcc\xb3\xeb\x3e\xfa\x0e\x00\x00\xff\xff\xb1\xf9\x7f\xb3\x0a\x02\x00\x00" func lockedtokensDelegatorRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -4139,11 +4050,11 @@ func lockedtokensDelegatorRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0x38, 0x26, 0x65, 0xbe, 0x12, 0x28, 0x9a, 0x64, 0x62, 0xf9, 0x85, 0x12, 0x94, 0xe3, 0xcb, 0x8c, 0xba, 0x20, 0x9b, 0x44, 0xed, 0x73, 0x7c, 0x4b, 0xa0, 0x91, 0x6c, 0x85, 0x78, 0x4d, 0x5b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x54, 0x4a, 0xf3, 0x42, 0x72, 0x6b, 0xbf, 0x51, 0x4d, 0x3a, 0xe6, 0x9b, 0xce, 0x42, 0xbc, 0x7, 0x8b, 0xa6, 0x15, 0x6a, 0xda, 0xb7, 0x66, 0x6b, 0xa8, 0xbd, 0x2e, 0xf1, 0x0, 0x96, 0x7, 0x4}} return a, nil } -var _lockedtokensDelegatorWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xcf\x6e\xa3\x30\x10\xc6\xef\x3c\xc5\x88\x43\x04\xd2\xae\x73\x59\xed\x21\x4a\x36\xda\x3f\x8a\xf6\x50\xa9\x51\xda\xa6\x67\x07\x86\x80\xe2\x78\xd0\x60\x42\xaa\x2a\xef\x5e\x81\x0d\x01\xda\x5c\x2a\x95\x8b\xc5\xcc\xf8\xf3\xef\x9b\x99\xec\x98\x13\x1b\xb8\xa3\xe8\x80\xf1\x23\x1d\x50\x17\x90\x30\x1d\xc1\xef\x87\x7c\xcf\xd5\xad\x14\x55\x4d\xc8\x15\x75\xff\xd7\x8a\x52\xef\xb3\x9d\xc2\x41\x55\x3f\xe6\x7b\x9e\x61\xa9\x0b\x19\x99\x8c\x74\x20\x8f\x54\x6a\x33\x83\xa7\x55\x76\xfe\xf9\x23\x84\x57\xcf\x03\x00\x50\x68\x20\x25\x15\x23\x6f\x30\x99\x81\x2c\x4d\x1a\xf4\x89\x44\x73\xdc\xe7\xc8\xb2\x96\x29\xbe\x0d\x1f\x16\xcf\x99\x49\x63\x96\x55\x08\x93\xf7\xd7\xfe\x37\xc2\xdd\x3b\x27\x59\x2a\xd3\x3c\x33\xe9\xfc\x88\x6d\x1d\xb4\x2c\x39\x63\x2e\x19\x03\x19\x45\x96\xb5\xa1\xf9\x43\xcc\x54\x6d\xa5\x2a\x31\x84\xc9\x6f\x9b\xab\xf9\xc1\x7d\x05\xaa\x44\x74\x1e\x60\x01\xee\xbe\x28\x0c\xb1\xdc\xa3\xd8\x35\x0a\xf3\xaf\xf0\xf6\x2b\xa8\x3b\x3f\x83\x5b\xf9\x07\x8b\xb0\x96\x26\x0d\x3b\xe0\xfa\x5b\x2e\x21\x97\x3a\x8b\x02\xff\x2f\x95\x2a\x06\x4d\x06\x2c\x27\x30\x26\xc8\xa8\x23\x04\x43\xd0\xd3\xf2\x43\x6f\xe8\xb9\xed\xe7\x6d\xcb\xe3\x3e\xb7\xb8\x53\x57\x37\x4d\xda\x7c\x93\xfe\x1c\xe2\x75\x57\x4f\xf5\x90\x7c\xab\x72\xb1\xb0\x78\xc6\xa8\x34\xd8\x1b\x57\xbd\x09\x31\x2a\xdc\x4b\x43\xbc\x66\x3a\xbf\xc0\x62\x34\x43\x87\xff\xaf\xad\x0a\x7a\xce\x87\x57\x45\xe5\x66\xb4\xc1\x4a\x72\xdc\x8e\xa0\xdb\x76\x7b\x86\x1f\xf7\x4d\xc4\x98\x53\x91\x19\xd7\x94\xf9\xf7\x11\x45\xab\x3d\x56\x6b\x0d\x5e\xbc\xb7\x00\x00\x00\xff\xff\x0e\x35\x51\xeb\xd6\x03\x00\x00" +var _lockedtokensDelegatorWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x6f\x82\x40\x10\x85\xef\xfc\x8a\x09\x87\x06\x0e\xc5\x1e\x9a\x1e\x8c\xd6\x18\xd1\x34\xd1\x54\xa3\xb6\xf7\x2d\x0c\x42\x5c\x19\xb2\x0c\x42\xd3\xf8\xdf\x1b\x58\xa0\x48\xf4\xd2\xbd\x6c\x96\x79\x3b\xef\x9b\xb7\x44\xa7\x84\x14\xc3\x8a\xbc\x23\xfa\x7b\x3a\x62\x9c\x42\xa0\xe8\x04\x4f\xc5\x6a\x3d\x5b\xce\xdd\xfd\x7a\x39\x7f\x9f\xba\xee\x76\xbe\xdb\x19\xb5\x7a\x21\x29\xaf\xb4\x5a\x6a\xb6\x67\xd3\x30\x58\x89\x38\x15\x1e\x47\x14\x5b\xe2\x44\x59\xcc\x43\xf8\x58\x44\xc5\xcb\xb3\x0d\x3f\x86\x01\x00\x20\x91\x21\x24\xe9\xa3\xda\x62\x30\x84\x87\xae\xb9\x53\x6d\x6f\x55\xb5\x15\x9f\x45\x26\x59\x6b\x5b\x2b\xe7\xb3\xfc\xa8\x1b\x26\x0a\x13\xa1\xd0\x12\x9e\xa7\x0d\xa7\x19\x87\x53\x7d\x28\x5d\xa1\x5e\x29\xca\xc0\x69\x9d\x61\x0c\xf5\x05\xe7\x8b\x94\xa2\x7c\x74\x97\xe4\xd5\x2a\x07\x1d\xc2\xbd\xfa\x8e\x49\x89\x03\x6e\x04\x87\x36\xb4\x76\xe5\x9a\x4c\x20\x11\x71\xe4\x59\xe6\x8c\x32\xe9\x43\x4c\x0c\xda\x0d\x14\x06\xa8\x30\xf6\x10\x98\xa0\xd3\xcc\xb4\x8d\x6b\xe2\x66\xfc\x1b\xc0\xbd\x38\x1a\xce\x41\xaa\x81\x06\x41\x53\xaf\xca\xf6\xbf\xd0\xfe\x5e\xfb\x2c\x64\x86\xa6\xee\x72\xd1\x90\x58\xa0\x97\x31\x76\x42\x2e\x1f\xcc\x47\x89\x07\xc1\xa4\x36\x8a\x8a\x6f\x18\xf7\x92\xaf\xf1\xdd\x46\x65\x75\x26\xbe\xbe\xea\xe4\x11\x87\xbe\x12\xf9\x16\x73\xa1\xfc\x26\xfb\xf6\xcf\xd2\xbb\x7d\x3b\x2f\xc7\xc7\x84\xd2\x88\xeb\x50\x46\x8f\x3d\x8a\xa6\x77\xbf\x5b\x33\xe0\xc5\xf8\x0d\x00\x00\xff\xff\xfe\x31\x8d\xb4\x1e\x03\x00\x00" func lockedtokensDelegatorWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4159,11 +4070,11 @@ func lockedtokensDelegatorWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x94, 0x24, 0x6d, 0x9c, 0xe, 0x60, 0xf7, 0xf3, 0x2c, 0x32, 0x60, 0x16, 0x15, 0x5d, 0x1b, 0x7f, 0x82, 0x13, 0x92, 0x79, 0x2a, 0x26, 0x1f, 0xbd, 0xc6, 0x8e, 0x23, 0xe0, 0x48, 0x1c, 0x44, 0xdd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x34, 0xa4, 0x8c, 0xb5, 0xa0, 0xe8, 0xbb, 0xed, 0x30, 0x2, 0x92, 0x8a, 0xc9, 0x36, 0x90, 0x64, 0x59, 0x4e, 0xd9, 0x10, 0x6c, 0x42, 0xe4, 0x45, 0x6b, 0x85, 0x35, 0xdd, 0xc0, 0x76, 0x12, 0x71}} return a, nil } -var _lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4f\x6b\xa3\x50\x10\xbf\xfb\x29\x06\x0f\x41\x61\xf1\xb4\xec\x21\x6c\x36\x6c\x29\xa1\x87\xd2\x86\xf4\xdf\x79\xa2\x63\x7c\xc4\xbc\x91\x79\x63\x4d\x29\xf9\xee\x25\x3e\x35\xda\x50\x2f\x4f\xe7\xfd\xe6\xf7\x0f\xcd\xa1\x62\x51\xb8\xe7\x74\x4f\xd9\x33\xef\xc9\x3a\xc8\x85\x0f\x10\x8e\x47\x61\xd0\xe1\x56\xb5\xdd\x99\x6d\x49\xed\xb8\x03\x4e\x66\x61\x10\xa8\xa0\x75\x98\xaa\x61\x1b\xe1\x81\x6b\xab\x73\x78\x59\x99\xe3\x9f\xdf\x31\x7c\x06\x00\x00\x25\x29\x58\xce\xe8\x96\x4a\xda\xa1\xb2\xac\x85\x8f\x1f\xf3\x89\x8b\xc4\x7f\x3c\x5c\xc1\x82\x96\xa2\x12\xaa\x50\x28\xc2\x34\xf5\x0a\x58\x6b\x11\xdd\xb0\x08\x37\xaf\x58\xd6\x14\xc3\xec\xbf\xbf\xeb\x55\x7b\xe5\x82\xcb\x8c\x64\x43\x39\x2c\xa0\x5b\x4f\x9c\xb2\xe0\x8e\x92\x6d\x4b\xf0\xb7\x25\x9b\xb8\x69\x8f\xc7\x8a\x04\xcf\xb9\xdc\xaf\x69\x13\xc9\x9b\xd1\x22\x13\x6c\x62\x98\x5d\xaf\xdd\xb5\x82\xff\xa2\x73\x5d\xdf\x42\x8e\xee\x9f\xbc\x85\x35\x6a\x11\x0f\x7e\xcf\xcf\x72\x09\x15\x5a\x93\x46\xe1\x08\x0d\xc6\x81\x65\x05\x87\xef\x94\x01\x2a\xb8\x8a\x52\x93\x1b\xca\xa0\x42\x2d\xc2\x0b\xc5\xf0\xe2\xa8\xcc\x93\xeb\xda\x61\x71\x69\xa4\xcb\x3f\x00\x22\x4f\x73\xf2\x9d\xd3\x91\xd2\x5a\x69\x54\xe7\x0f\x94\x49\xd3\xd5\xb1\xa1\x06\x25\xeb\xd3\x0e\x7f\x83\x3f\x7b\xee\x53\xf0\x15\x00\x00\xff\xff\x8b\x3c\x89\xa1\x85\x02\x00\x00" +var _lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x2f\xa1\x87\xd2\x83\xd4\x8a\x34\x96\x82\xa2\xa2\xf6\x07\x4c\x77\x27\x66\x31\xee\x84\xc9\xd8\xa4\x14\xff\x7b\xd1\x98\x34\x56\x9a\xcb\x64\xd8\xc7\xfb\xf6\xbd\x75\xfb\x9c\x45\x61\xc6\x66\x47\x76\xc3\x3b\xf2\x05\x24\xc2\x7b\xb8\xaf\x66\x8b\x97\xe9\x24\xde\x2c\xa6\x93\xf9\x38\x8e\x57\x93\xf5\x3a\x08\x54\xd0\x17\x68\xd4\xb1\x0f\x71\xcf\x07\xaf\x03\x78\x7f\x75\xd5\xe3\x43\x1f\xbe\x03\x00\x80\x8c\x14\x3c\x5b\x8a\x29\xa3\x2d\x2a\xcb\x52\xb8\xfa\x1a\x5c\x11\xa2\x7a\x99\xdf\xc8\x82\xb3\x45\x2e\x94\xa3\x50\x88\xc6\xd4\x84\xf1\x41\xd3\x71\xbd\x34\x98\x06\x95\x72\x66\x49\x56\x94\xc0\x10\x2e\xfa\xe8\x83\x45\xb8\x7c\xba\xbb\x42\x9e\xc7\xdb\x59\xfd\x1c\x9e\x12\xfe\xb9\x52\xe7\x7c\xad\x2c\xb8\xa5\x25\x6a\xda\x87\x96\x76\xfa\x46\x23\xc8\xd1\x3b\x13\xf6\x3a\x72\x70\x05\x78\x56\x28\xf0\x93\x2c\xa0\x42\x91\x93\x71\x89\x23\x0b\x39\x6a\xda\xeb\xb7\x16\xed\x4f\x41\x59\x12\xdd\xb6\x04\xc3\xdf\x3c\x97\x14\xad\x20\xac\x6d\x8e\x75\x45\x54\x91\x39\x28\x75\xca\xf8\xc7\x32\x2a\x9d\xa6\x56\xb0\x5c\x51\x89\x62\x9b\xb8\xed\xe3\xd5\xb3\xf1\x3e\x06\x3f\x01\x00\x00\xff\xff\x93\x68\x03\x07\x10\x02\x00\x00" func lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdcBytes() ([]byte, error) { return bindataRead( @@ -4179,11 +4090,11 @@ func lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0xbe, 0x82, 0xa7, 0xde, 0x1f, 0xfd, 0xc2, 0x7d, 0x57, 0x2, 0xd5, 0x9d, 0xb0, 0x5e, 0xde, 0xad, 0x51, 0xee, 0xe9, 0x0, 0x5b, 0x77, 0xbf, 0xff, 0xbc, 0x87, 0xf0, 0x16, 0x44, 0x76, 0x94}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6d, 0x82, 0x3d, 0xe0, 0xb7, 0x1e, 0xf7, 0xed, 0x59, 0xb8, 0x4, 0xce, 0x38, 0xb6, 0x6e, 0x9a, 0x69, 0x60, 0x72, 0x8, 0x27, 0xcf, 0xa5, 0x8, 0x5f, 0x3e, 0xb7, 0x74, 0xcb, 0xaa, 0x37, 0xfe}} return a, nil } -var _lockedtokensDelegatorWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4d\x4f\xb3\x40\x10\xbe\xf3\x2b\x26\x1c\x1a\x48\xde\x70\x7a\xe3\xa1\xb1\x36\x1a\xd3\x78\x30\xda\xa8\xd5\xf3\x74\x19\xca\xa6\x74\x67\xb3\x3b\xd8\x1a\xd3\xff\x6e\xca\x52\x0a\x12\xb9\x2c\xcc\x3e\xf3\x7c\x05\xbd\xb3\xec\x04\x1e\x59\x6d\x29\x7f\xe3\x2d\x19\x0f\x85\xe3\x1d\xc4\xfd\x51\x1c\xb5\xb8\x45\x6d\x36\x7a\x5d\x51\x33\x6e\x81\x83\x59\x1c\x45\xe2\xd0\x78\x54\xa2\xd9\x24\xb8\xe3\xda\xc8\x14\x56\x0b\x7d\xb8\xfa\x9f\xc2\x77\x04\x00\x50\x91\x80\xe1\x9c\xee\xa9\xa2\x0d\x0a\xbb\xa5\xe3\xc3\xd7\x74\xe0\x22\x0b\x1f\x4f\x23\x58\xd4\x50\x58\x47\x16\x1d\x25\xa8\x54\x50\xc0\x5a\xca\xe4\x8e\x9d\xe3\xfd\x3b\x56\x35\xa5\x30\xb9\x0d\x77\x67\xd5\xb3\x72\xc9\x55\x4e\xee\x85\x0a\x98\x41\xbb\x9e\x79\x61\x87\x1b\xca\xd6\x0d\xc1\x75\x43\x36\x70\xd3\x1c\xcf\x96\x1c\x9e\x72\xf9\x7f\xc3\x26\xb2\x0f\x2d\x65\xee\x70\x9f\xc2\x64\xbc\xf6\xd0\x08\xde\x24\xa7\xba\x7e\x85\xec\xdd\xbf\x06\x0b\x4b\x94\x32\xed\xfc\x9e\x9e\xf9\x1c\x2c\x1a\xad\x92\xb8\x87\x06\xed\xc1\xb0\x80\xc7\x4f\xca\x01\x05\xbc\x25\xa5\x0b\x4d\x39\x58\x94\x32\xbe\x50\x74\x2f\x9e\xaa\x22\x1b\xd7\x0e\xb3\x4b\x23\x6d\xfe\x0e\x90\x04\x9a\x63\xe8\x9c\x0e\xa4\x6a\xa1\x5e\x9d\x7f\x50\x66\xfb\xb6\x8e\x95\xf1\x82\x5d\xda\xee\x6f\x08\xe7\x99\xfb\x18\xfd\x04\x00\x00\xff\xff\xa4\x08\x39\x8f\x85\x02\x00\x00" +var _lockedtokensDelegatorWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xdf\x6a\xf2\x40\x10\xc5\xef\xf3\x14\x83\x17\x1f\xf1\x26\x7c\x17\xa5\x17\x52\x2b\xd2\x58\x0a\x8a\x8a\x7f\x1e\x60\xba\x99\x98\xc5\xb8\x13\x66\xc7\x9a\x52\x7c\xf7\xa2\xd1\x6d\xac\x34\x37\x93\x61\x0f\xe7\xb7\xe7\xac\xdd\x55\x2c\x0a\x13\x36\x5b\xca\x56\xbc\x25\xe7\x21\x17\xde\xc1\xff\x7a\x32\x7b\x19\x8f\xd2\xd5\x6c\x3c\x9a\x0e\xd3\x74\x31\x5a\x2e\xa3\x48\x05\x9d\x47\xa3\x96\x5d\x8c\x3b\xde\x3b\xed\xc1\xfa\xd5\xd6\x8f\x0f\x5d\xf8\x8a\x00\x00\x4a\x52\x70\x9c\x51\x4a\x25\x6d\x50\x59\xe6\xc2\xf5\x67\xef\x86\x90\x34\xcb\xf4\x4e\x16\x9d\x2d\x2a\xa1\x0a\x85\x62\x34\xa6\x21\x0c\xf7\x5a\x0c\x9b\xe5\x8a\xb9\xa2\x0a\x2e\x33\x92\x05\xe5\xd0\x87\x8b\x3e\x79\x67\x11\x3e\x3c\xfd\xbb\x41\x9e\xc7\xdb\x59\xfd\x1c\x9f\x12\xfe\xba\x52\xeb\x7c\xa9\x2c\xb8\xa1\x39\x6a\xd1\x85\x40\x3b\x7d\x83\x01\x54\xe8\xac\x89\x3b\x2d\x39\x58\x0f\x8e\x15\x3c\x7e\x50\x06\xa8\xe0\x2b\x32\x36\xb7\x94\x41\x85\x5a\x74\xba\xc1\x22\xfc\x78\x2a\xf3\xe4\xbe\x25\xe8\xff\xe4\xb9\xa4\x08\x82\xb8\xb1\x39\x36\x15\x51\x4d\x66\xaf\xd4\x2a\xe3\x0f\xcb\xe4\x60\xb5\xc8\x04\x0f\x6b\xe7\x15\x43\xdc\xf0\x78\xcd\xbc\x7a\x1f\xa3\xef\x00\x00\x00\xff\xff\xbc\x5c\xb3\x29\x10\x02\x00\x00" func lockedtokensDelegatorWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4199,11 +4110,11 @@ func lockedtokensDelegatorWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x97, 0xad, 0xe8, 0x0, 0x2f, 0x41, 0x5f, 0x1e, 0x2a, 0x37, 0x13, 0xff, 0x4f, 0xde, 0x3f, 0xe4, 0xaf, 0x70, 0x62, 0x1d, 0x9d, 0xbb, 0x53, 0x40, 0x87, 0x7e, 0xed, 0xc8, 0x1b, 0x46, 0xaf, 0xab}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x76, 0x6b, 0xcd, 0x92, 0x2d, 0xc7, 0x26, 0xf1, 0x84, 0xdd, 0xbf, 0xe1, 0x63, 0x85, 0x81, 0xc6, 0xbc, 0xb9, 0x4b, 0x27, 0xa4, 0x96, 0xfc, 0xab, 0x2c, 0x32, 0x7a, 0x19, 0xc1, 0xcc, 0xec, 0x30}} return a, nil } -var _lockedtokensStakerGet_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcd\x4e\xc3\x30\x10\x84\xef\x7e\x8a\x21\x07\x94\x5c\xf2\x00\x15\x50\x55\x70\xa0\x52\x85\x2a\xe0\x05\x1c\x7b\x13\xac\x3a\xde\x68\xbd\x16\x07\xc4\xbb\xa3\x26\x50\xca\xcf\x5e\x2c\x8d\x66\xbe\xf1\x84\x71\x62\x51\xec\xd8\x1d\xc8\x3f\xf3\x81\x52\x46\x2f\x3c\xa2\x3a\x97\x2a\x63\xac\x73\x94\x73\x6d\x63\x6c\xd0\x97\x84\xd1\x86\x54\x5b\xe7\xb8\x24\x5d\x61\xe3\xbd\x50\xce\xcd\x0a\x4f\x2a\x21\x0d\x78\x33\x06\x00\x22\x29\xe2\x0c\xda\x2c\xd6\x6d\xea\xf9\x91\x7a\x5c\x63\x20\xfd\xd4\xbe\x30\xcd\x1c\x39\x5e\xeb\xec\x64\xbb\x10\x83\x06\xca\x6d\xc7\x22\xfc\x7a\x75\x79\xfe\xa3\x76\x7e\xee\x39\x7a\x92\x9b\xfa\x14\x3c\xde\x0f\xdb\xee\x77\xf9\xbe\x74\x31\xb8\xbd\xd5\x97\x53\xe8\xbb\x77\xbd\xc6\x64\x53\x70\x75\x75\xcb\x25\x7a\x24\x56\x2c\xed\xb0\x10\xea\x49\x28\x39\x82\x32\xa6\x19\x83\x3f\xf8\xaa\x59\x86\x0b\x69\x91\xf4\xef\xf6\x76\x20\x7d\x60\x4f\xdb\xbb\xba\xb9\x30\xef\xe6\x23\x00\x00\xff\xff\x0f\x71\x7a\xf7\x83\x01\x00\x00" +var _lockedtokensStakerGet_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x50\xdd\x6a\xc2\x30\x18\xbd\xcf\x53\x9c\x79\x31\xd2\x1b\xd9\xb5\x6c\x13\xb1\xc2\x44\x51\xb1\xbe\x40\x9a\x7c\xed\x82\x69\xbe\x92\xa6\x6c\x43\x7c\xf7\xd1\x76\x73\xee\x87\x7d\x37\x81\x93\xf3\xc7\xb1\x55\xcd\x21\x62\xcd\xfa\x48\xe6\xc0\x47\xf2\x0d\x8a\xc0\x15\xee\x5e\xd7\xdb\xf9\x6a\x91\x1e\xb6\xab\xc5\x66\x96\xa6\xfb\x45\x96\x09\xa1\xb4\xa6\xa6\x91\xca\xb9\x04\x45\xeb\x51\x29\xeb\xa5\xd2\x9a\x5b\x1f\x27\x98\x19\x13\xa8\x69\x92\x09\xb2\x18\xac\x2f\x71\x12\x02\x00\x1c\x45\xb8\x3e\x61\x36\x50\x97\xbe\xe0\x3d\x15\x78\x40\x49\xf1\x03\xfb\xb4\x49\x7a\x49\x77\xe3\x92\xe2\x5c\xd5\x2a\xb7\xce\xc6\xb7\xfb\xdb\xeb\x92\xe3\xfe\x79\x62\x67\x28\x9c\xbe\x7d\xac\x7f\x06\x9d\x1f\xe5\xc5\xb2\xbb\xff\xd9\xbb\x36\x77\x56\xef\x54\x7c\xbe\x88\xae\x1a\xe5\x1c\x02\xbf\xc8\x2f\x64\x3a\x45\xad\xbc\xd5\x72\x34\xe7\xd6\x19\x78\x8e\x18\x48\x50\x08\x54\x50\x20\xaf\x09\x91\x51\xf7\xc6\xf8\x15\x38\x4a\x86\x91\x02\xc5\x36\xf8\x3f\x77\xea\x86\xd8\xb0\xa1\x65\x2a\x93\x1b\x71\x16\xef\x01\x00\x00\xff\xff\x31\x22\x41\xcf\xb5\x01\x00\x00" func lockedtokensStakerGet_node_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4219,11 +4130,11 @@ func lockedtokensStakerGet_node_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/get_node_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0x84, 0xe, 0x5d, 0x19, 0x55, 0x83, 0xac, 0xfc, 0xd7, 0x38, 0x2e, 0x90, 0xd2, 0x96, 0x6, 0xf1, 0x2f, 0x3e, 0x2d, 0x2c, 0x94, 0x18, 0xed, 0x24, 0xeb, 0x46, 0x62, 0x19, 0xf7, 0xa4, 0x79}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0xe0, 0x3e, 0xe8, 0x9f, 0xf3, 0xd2, 0x32, 0x5a, 0x0, 0x52, 0x6b, 0x6, 0x9c, 0x98, 0x67, 0x9e, 0x2f, 0x15, 0xf8, 0x86, 0x24, 0x6a, 0x15, 0x4e, 0xab, 0xf4, 0x3d, 0x14, 0x52, 0xf0, 0xd7}} return a, nil } -var _lockedtokensStakerGet_staker_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xc1\x8a\xdb\x30\x10\xbd\xeb\x2b\x86\x1c\x8a\x7d\xf1\xde\x43\x5d\x08\x98\xd2\x40\x29\xcb\x76\x6f\xcb\x1e\xc6\xd2\x38\x51\xa3\x68\x8c\x34\x66\x29\x21\xff\x5e\xe4\x38\x8e\xdd\x64\x9b\xb6\xba\x84\x48\xef\x3d\xbd\x79\x4f\xd8\xee\x5b\x0e\x02\x9f\x1d\xbf\xad\xab\x67\xac\x1d\x7d\x17\xdc\x59\xbf\x81\x26\xf0\x1e\x16\xd7\x07\x0b\x35\x70\xbe\xb2\xde\x91\x79\xe6\x1d\xf9\x38\xa0\xa7\x5b\x0b\xa5\x1e\x1e\xe0\x89\xa4\x0b\x3e\x02\x7a\xc0\x10\xf0\x27\x70\x03\xdf\xd8\xd0\xda\x37\x0c\x5c\xff\x20\x2d\x11\x64\x8b\x02\xb2\x25\x40\xad\xb9\xf3\x02\x9a\xbd\x04\x76\x31\x29\x58\x0f\x56\x22\x78\x0e\x7b\x74\x23\x02\xbd\x81\xb8\xc5\x40\xe6\xbc\xa5\x14\x6a\x4d\x31\x66\xe8\x5c\x0e\x4d\xe7\x61\x8f\xd6\x67\xc3\xe9\x12\x56\xc6\x04\x8a\x31\x5f\xc2\xcb\xf5\x50\xc5\xd9\xd3\x2b\x1c\x94\x02\x00\x70\x24\xe0\x87\xcd\x55\x72\x7e\x8f\x57\xc2\xcb\xeb\x85\xda\x76\xf5\x6a\xb0\x5a\xc2\x86\x64\xf8\x73\xb6\x93\x5f\x90\xdc\x8a\x65\x8f\x2e\x29\x25\x55\x0a\x4f\xd4\x40\x39\x51\xe8\xa1\x69\x15\x1a\x5b\xac\xad\xb3\x62\x29\x16\x35\x87\xc0\x6f\x1f\x3f\x1c\xde\xb1\x75\x12\x7b\xec\x6a\x67\xf5\xf1\x53\x36\xaa\xa4\xf5\x17\x94\x47\x94\xed\xc8\x19\xfc\xda\x66\xcc\x65\x6a\xf5\xf6\x08\x87\x91\x9d\x38\x36\x15\x5e\xbe\x77\x71\x8a\x30\xeb\xe3\xae\x96\x73\xf9\xc2\x9a\x7c\x14\x9a\x15\x52\x60\xdb\x92\x37\x59\x52\x3e\x41\x8e\xd7\xa9\x9e\x5e\xe4\x10\x64\xa2\xfe\x63\xb8\xd3\x17\x5d\xf4\x3f\x5f\xd8\x19\x0a\xbf\xe5\x39\x83\x5d\xdd\x79\x37\x50\x77\xdb\xe5\x1f\x87\xb8\xc4\x3b\x69\x65\x5d\x41\x79\x53\xad\xd8\x90\xf4\x41\x57\x59\x3e\xa1\xfe\x67\x3b\xeb\x2a\x9f\x49\xdc\xe9\xe5\xd4\xcd\xa4\xa1\xd0\x7f\x15\xe6\x34\x75\x54\xbf\x02\x00\x00\xff\xff\x2f\x27\xba\xbf\x8d\x04\x00\x00" +var _lockedtokensStakerGet_staker_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x94\x41\x6f\xe2\x30\x10\x85\xef\xfe\x15\xa3\x1e\x56\xc9\x25\xdd\x33\xda\xac\x84\x08\xab\x45\x45\x6d\x05\xdc\xaa\x1e\x26\xf1\x04\xbc\x18\x3b\xb2\x1d\x75\x2b\xc4\x7f\x5f\x39\x09\x69\x0c\x74\x41\xcd\x05\x11\xcf\xf7\xfc\xfc\x9e\x15\xb1\xab\xb4\x71\xf0\x4b\xea\xb7\x59\xb6\xc2\x5c\xd2\xd2\xe1\x56\xa8\x35\x94\x46\xef\xe0\xee\x7c\xe1\x8e\x75\xcc\x5c\x17\x5b\xe2\x2b\xbd\x25\x65\xdb\xe9\xef\x7f\xe7\x4f\x93\x87\x69\xb6\x7a\x7a\x98\x3e\x8e\xb3\x6c\x31\x5d\x2e\x19\xbb\xbf\x87\x05\xb9\xda\x28\x0b\xa8\x00\x8d\xc1\x77\xd0\x25\x3c\x6a\x4e\x33\x55\x6a\xd0\xf9\x1f\x2a\x9c\x05\xb7\x41\x07\x6e\x43\x80\x45\xa1\x6b\xe5\xa0\xd0\xca\x19\x2d\xad\x57\x10\x0a\x84\xb3\xa0\xb4\xd9\xa1\xec\x27\x50\x71\xb0\x1b\x34\xc4\x8f\xaf\x18\xc3\xa2\x20\x6b\x23\x94\x32\x86\xb2\x56\xb0\x43\xa1\xa2\x6e\x75\x04\x63\xce\x0d\x59\x1b\x8f\xe0\xe5\xfc\x68\xc9\xd1\xd3\x2b\xec\x19\x03\x00\x90\xe4\x40\x75\x2f\xc7\xde\xf9\x35\x2e\x85\x97\xd7\x0f\xb4\xaa\xf3\x71\x67\x35\x85\x35\xb9\xee\xcf\xd1\x4e\x1c\x6e\xe2\xd5\xc8\x4c\xb0\x82\x74\x40\x36\x23\xfe\x49\xd6\xe4\x26\x58\x61\x2e\xa4\x70\xef\x3f\xbe\xed\x3f\x31\xd2\xca\x3c\xd7\xb9\x14\xc5\xe1\x67\xd4\xf3\xfe\xb9\x01\x79\x46\xb7\xe9\x99\xce\xa1\x28\x4f\x4c\x2e\xa8\x84\x34\x34\x9d\xe4\xda\x18\xfd\x16\xc5\xb0\xef\x71\x0f\x09\xdf\x71\xfa\xd9\xce\x3e\xb5\xa8\x49\x38\x1b\x85\xfa\x89\xe0\x71\x2f\x14\x74\x90\x60\x55\x91\xe2\x91\x57\x6e\x47\x0e\x1f\x41\xca\xe6\x56\x76\xd9\x79\xe4\xe6\x3c\x87\xf7\x39\x69\x7e\x7e\x6b\xc9\xc9\xec\x83\x85\xf9\xa9\xfe\x69\xc4\xff\x9f\xbe\x9a\xf1\x99\xff\x36\xea\x4b\xc7\xba\x94\xf8\xa0\xa9\x59\x76\x89\xf3\xc9\xae\xc9\x35\xd9\x67\x01\xfa\xc5\xc2\x66\x59\x1c\x48\x5c\xa9\xaa\xad\x6b\x50\x9a\x69\xbe\x0d\x21\xc6\x0e\xec\x5f\x00\x00\x00\xff\xff\x15\x37\xf4\xf5\x99\x04\x00\x00" func lockedtokensStakerGet_staker_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -4239,11 +4150,11 @@ func lockedtokensStakerGet_staker_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/get_staker_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x12, 0x2d, 0x71, 0xfd, 0xfb, 0x2c, 0xe0, 0x95, 0x39, 0x71, 0xb4, 0xb2, 0xbe, 0x29, 0xf5, 0x53, 0xef, 0xa9, 0xc4, 0x22, 0x24, 0xed, 0x2b, 0x64, 0x26, 0xca, 0xb9, 0xaa, 0x28, 0xf8, 0xf4, 0xf9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe0, 0x2b, 0x52, 0x73, 0x66, 0xec, 0x39, 0x74, 0x89, 0x4e, 0x2c, 0xbd, 0x1b, 0xbd, 0xa2, 0x7d, 0xa4, 0x4e, 0x6a, 0x51, 0xd0, 0xdc, 0x5, 0x90, 0xd3, 0x7b, 0x1d, 0xa4, 0xb8, 0x6c, 0x19, 0x6d}} return a, nil } -var _lockedtokensStakerRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x51\x4f\xdb\x30\x10\x7e\xcf\xaf\xb8\xe5\x01\x25\x52\x09\x2f\xd3\x34\x45\x74\x08\x36\xa1\xa1\x4d\x0c\x8d\xc1\x9e\xdd\xe4\x92\x5a\x75\xed\xc8\xb9\xac\x45\x55\xff\xfb\xe4\xd8\x49\xec\x16\x36\x5e\xe8\x03\x49\xee\x3e\x7f\x77\xdf\xf9\x3b\xf8\xba\x51\x9a\xe0\x5a\xa8\xcd\x2f\xb5\x42\x09\x95\x56\x6b\x88\xc7\xef\x38\x1a\x10\x9d\xac\xf9\x42\x60\x80\xf2\x63\x23\xf2\xbb\x2a\x56\x58\xf6\xb1\xd6\x01\xfd\xd0\x88\xbb\x27\xb6\xe2\xb2\xbe\xd3\x6a\xfb\xe4\x70\x7e\x28\x8e\x22\xd2\x4c\xb6\xac\x20\xae\x64\xc2\xcb\x1c\xee\x49\x73\x59\xcf\x40\x2b\x81\x39\x3c\xdc\x48\xfa\x38\x03\x89\xb4\x51\xda\x1c\xbb\x2c\x4b\x8d\x6d\x3b\xe1\xa6\xd4\x37\x7c\x9a\xc2\xad\xad\x12\xc4\xd8\x5a\x75\x92\x72\x78\xb8\xe6\xdb\x0f\xef\x53\xd8\x45\x11\x00\x80\x40\x82\xa5\x12\x25\xea\x9f\x58\xe5\xc0\x3a\x5a\x26\xbe\x98\xac\x7f\xfc\x68\x50\x33\xd3\x65\x3b\x0b\xe7\x94\xfd\xe6\xb4\x2c\x35\xdb\xa4\x70\x72\x7c\xec\x6b\x4f\x3c\x15\xfa\xc3\x3a\x41\x53\x9d\x17\x99\xc6\xcb\xc9\x1e\xcd\x09\x4b\xd0\x68\x6c\x98\xc6\x84\x15\x85\x55\xd2\x73\x5c\x29\xad\xd5\xe6\x91\x89\x0e\x53\x38\xb9\xb4\x39\xa3\x0e\xdc\xaf\x45\x51\x65\xa3\x42\x98\x83\x3b\x9f\xb5\xa4\x34\xab\x31\x5b\xf4\x0c\xe7\x6f\xa1\xfc\x53\x62\x6e\x3d\x87\x97\xf2\xf7\xb6\x85\x3b\x46\xcb\x74\x6c\xd8\xfc\x2e\x2e\xa0\x61\x92\x17\x49\xfc\x59\x75\xa2\x04\xa9\x08\x6c\x9f\xa0\xb1\x02\x52\xe0\xb1\xc4\x69\x14\xaa\x1d\xc6\xfc\x1f\xb1\xaf\x1d\xff\xa0\xe2\xcc\x91\x9c\x55\x43\xbe\x4f\xbf\xba\x73\x73\x0c\xa8\xdf\xae\xbe\x43\x23\x05\x35\xca\x02\x63\xcb\xb1\xb7\x3a\x70\x8b\x45\x47\xe8\xdd\xa1\xf1\x8e\x54\x25\xde\xc8\x4a\xc1\x3c\xd8\xab\xec\xd6\xc5\x13\xaf\x8d\x1e\xfb\x25\x07\x5e\xce\xbc\xa8\x5d\x2a\xf3\xd7\x8f\x3e\xb3\x5d\x47\xa1\xe7\xf1\xfd\x7a\x05\x9f\x3e\xce\xdf\xc1\xe9\x7d\x04\x78\x77\x66\xd4\x89\xde\x21\x57\x4c\x30\x59\x20\xcc\x0f\x5c\x9b\xd5\x48\xd6\x43\xce\xe0\x0e\x98\x78\x2c\xbc\x72\x2b\x0e\xe7\xf3\x03\xba\x5d\x14\x5c\xd1\x01\x77\xa1\x91\x11\x9a\x31\x9a\xb9\xa2\x4e\x86\x49\xe7\xe3\xcc\xa7\xff\x1e\xf6\xe9\x95\xdd\x03\x8a\x16\x4d\xf5\x24\x71\xf5\x4f\xc3\xf2\xa9\x69\x28\xf0\x65\xb6\x18\x32\xff\xee\xac\xc4\x46\xb5\x9c\x9c\xfd\xce\x4f\x43\x92\x8d\x33\x6c\x12\xf6\x76\x54\x3e\x7d\x7b\xf5\xbb\xa0\x82\xf3\xff\xad\x22\x40\xa9\xba\x7a\x69\x4d\xdf\x9a\xb5\x35\x4e\xc0\x77\xf1\xb4\x33\xfb\xf1\xcd\xad\xc0\x3e\xfa\x1b\x00\x00\xff\xff\x8e\x3f\xa9\xa3\xb2\x06\x00\x00" +var _lockedtokensStakerRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x8f\xda\x30\x10\xbd\xe7\x57\x4c\x73\xa8\x12\x69\x37\xdb\x43\x55\x55\x11\x74\x45\x17\xb6\x45\xac\x00\x11\xb6\x1f\x47\x93\x4c\x12\x0b\x63\x23\xc7\x29\xac\x10\xff\xbd\x72\x9c\x2f\x43\xb7\xea\xa5\x1c\x48\x3c\xf3\x32\xef\xcd\xcb\x0b\xdd\xed\x85\x54\xf0\xc8\xc4\x61\x2d\xb6\xc8\x21\x95\x62\x07\x6e\x7b\x76\x9d\x06\x51\xf2\x8c\x6e\x18\x5a\xa8\x7e\xad\x45\x3e\x89\x78\x8b\x49\x55\x2b\x0c\xf0\xdd\xf1\x69\xf1\x30\x9b\x8c\xd7\x8b\xd9\x64\x3e\x1a\x8f\x57\x93\x28\x6a\xd0\x91\x22\x5b\xca\xb3\xa5\x14\xc7\x97\x06\x1d\xad\x47\xb3\xe9\xfc\xcb\x72\xb5\xf8\xf1\xb3\x81\x3b\x4a\x12\x5e\x90\x58\x51\xc1\x3d\x9a\x84\x10\x29\x49\x79\x76\x03\x52\x30\x0c\xe1\x79\xca\xd5\xc7\x1b\xe0\xa8\x0e\x42\xea\x81\xa3\x24\x91\x58\x14\x1d\xae\x6b\xcd\xf0\xa5\x2b\x17\x86\xdf\xaa\x91\x9d\x28\xb9\x0a\xe1\xf9\x91\x1e\x3f\xbc\xf7\xe1\xe4\x38\x00\x00\x0c\x15\xe4\x82\x25\x28\x57\x98\x86\xf0\xb6\xbf\x68\x50\x5d\xbe\x56\xdd\x0e\xfd\x8b\x94\x4c\x19\x70\xeb\x68\xf0\x4d\x17\x0d\x66\x2f\x71\x4f\x24\x7a\x24\x8e\x0d\xe3\xa8\x54\xf9\xc8\x1c\x34\x2d\xd4\xbf\x02\x59\x1a\xb4\xd4\x30\x84\xfa\x81\x60\x23\xa4\x14\x87\xc1\xab\x52\x3e\x79\xda\xd2\x10\x5e\xeb\x47\x4a\x48\x92\xe1\x92\xa8\xdc\x6f\xd9\xf4\xef\xfe\x1e\xf6\x84\xd3\xd8\x73\x1f\x44\xc9\x12\xe0\x42\x81\x21\x03\x89\x29\x28\x01\xbd\x29\xae\xef\xd8\x52\x9b\xbd\xaf\x95\x92\x52\xe5\x9e\x95\x9b\xe0\x3b\x55\x79\x22\xc9\x81\x6c\x18\xfa\x57\x46\x35\x1b\xdc\x15\x46\xea\x5d\xda\xf4\xab\xf6\x3f\xab\xd6\x8f\x81\xaa\xc2\x5b\xa9\xd3\x6b\xa0\x44\x1e\xa3\x6b\x66\x9c\xcd\x0e\x78\xc4\xb8\x54\xd8\x33\x5f\xbf\x48\x2e\x12\x9c\xf2\x54\xc0\xd0\x0a\x6c\x30\xaf\xeb\x5e\x05\x18\x87\x40\x93\x26\x91\xfa\xff\x8f\x81\xbc\x2a\x5d\x65\xd3\x3a\xda\x11\xed\xee\x7b\x9e\x6b\x85\xac\x7a\xc3\x9f\x09\x23\x3c\x46\x18\x5e\x44\x26\xc8\x50\x99\x0c\xd4\xe9\xaa\x81\x5e\x6f\x0a\x4d\xeb\xe0\xc3\x60\x78\x31\xee\xe4\x58\x36\x5f\xcc\x8e\x25\x12\x85\xda\x0a\xed\x0d\x4a\xaf\x71\x2b\x6c\x7d\xeb\xbe\x29\x73\xed\xd1\x9e\x01\x59\x81\x9a\xdd\xf3\x6a\xfe\x5b\x9b\xde\xd7\x82\xac\x5c\x05\x9b\xa6\xf3\x77\x65\x09\xee\x45\x41\x55\x1d\xa1\xc1\xad\x3d\xe4\x50\x07\xcf\xb3\xb5\x5d\xd1\xfb\xff\x7f\xfb\x93\xc5\x50\x67\x78\x2e\x14\x20\x17\x65\x96\x9b\xe0\x16\xfa\xb3\xd3\x01\xc0\x37\x6e\x97\xfb\x73\x7b\x57\xc7\xf8\xec\xfc\x0e\x00\x00\xff\xff\xd3\xb7\xf8\x70\xd5\x05\x00\x00" func lockedtokensStakerRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -4259,11 +4170,11 @@ func lockedtokensStakerRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdb, 0x99, 0x9d, 0x62, 0xc7, 0xa4, 0x1f, 0xa9, 0x34, 0x1a, 0x76, 0xe, 0xd5, 0x14, 0x51, 0x9d, 0x15, 0xbc, 0xd1, 0x4, 0x50, 0x20, 0xe8, 0x57, 0xf2, 0xc4, 0xd8, 0xe, 0x23, 0x49, 0x96, 0xfe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2d, 0xc3, 0xb2, 0x63, 0x32, 0x7b, 0x9a, 0xb6, 0x9f, 0x54, 0x7b, 0x8b, 0xab, 0xdb, 0x24, 0xb6, 0xd7, 0xd5, 0x46, 0x31, 0x81, 0x3c, 0xee, 0xc8, 0x3a, 0x6b, 0xcb, 0x68, 0xf0, 0x1f, 0xac, 0x8}} return a, nil } -var _lockedtokensStakerRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x43\x0e\x25\x01\xc9\x49\x3c\x14\x6b\x51\xa1\x78\x10\x2c\xd6\xea\x79\x9a\x4c\x9a\x90\x74\x27\xce\xce\xd2\x8a\xf4\xbf\x4b\xb2\x31\x4d\x15\x8f\xee\x65\x61\xf6\xcd\x9b\x8f\xb7\x53\xee\x1a\x16\x85\x47\x4e\x2b\xca\x5e\xb8\x22\x63\x21\x17\xde\x41\x38\x2e\x85\x41\xaf\x5b\x29\x56\xa5\xd9\x2e\x85\x0f\x1f\xbd\x6e\x5c\x1a\x74\x0b\x67\xb6\xe5\xa6\xa6\xae\xbd\x17\x9e\xd5\xc2\x20\x50\x41\x63\x31\xd5\x92\x4d\x84\x3b\x76\x46\xa7\xb0\x5e\x94\x87\xab\xcb\x18\x3e\x83\x00\x00\xa0\x26\x85\x82\xeb\x8c\xe4\x99\xf2\x29\xa0\xd3\x22\x1a\x73\x25\xdd\xf5\xd4\x90\x60\x6b\x63\x2f\xce\x07\x27\x6f\xa5\x16\x99\xe0\x3e\x86\xc9\xef\xb6\x87\xce\xd8\x0f\x6a\x84\x1a\x14\x8a\x30\x4d\x3d\x48\x37\xea\x8e\x45\x78\xff\x8a\xb5\xa3\x18\x26\xb7\xfe\xad\x85\x83\xfe\x58\xaa\xf3\x64\x00\x84\x19\xf4\xfd\x89\x55\x16\xdc\x52\xb2\xe9\x1c\xae\xff\x03\xfc\x26\x6a\x63\x9d\xc2\x5f\xef\x2b\x8f\xb0\x44\x2d\xe2\x01\xb8\x3d\xf3\x39\x34\x68\xca\x34\x0a\xef\xd9\xd5\x19\x18\x56\xf0\x9c\x20\x94\x93\x90\x49\x09\x94\x61\xe4\x15\x7a\x87\xa3\x0f\x8b\x0e\x94\x3a\xa5\x51\x0e\xed\x3f\x59\xc5\x8a\xc4\x6f\xc6\xec\x47\x32\x7d\x0e\xab\x4e\x12\xc5\xc1\x29\xc0\x53\x53\x22\xf4\xee\xc8\xea\xda\x58\xbf\x51\xc3\x52\xf8\xfb\x1b\xe1\x18\x7c\x05\x00\x00\xff\xff\x8c\x90\x77\x98\xb4\x02\x00\x00" +var _lockedtokensStakerRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4d\x6b\xf2\x40\x10\xc7\xef\xfb\x29\x06\x0f\x0f\xf1\x12\x9e\x43\xe9\x41\x6a\x25\xa8\x7d\x41\x51\x71\x15\xda\xe3\x76\x9d\x68\x48\xdc\x49\x67\x27\x34\xa5\xf8\xdd\x4b\xdc\xf8\x42\xc1\xbd\x0c\xcb\xfc\xe7\x3f\xf3\x9b\xc9\xf6\x25\xb1\xc0\x94\x6c\x8e\x9b\x15\xe5\xe8\x3c\xa4\x4c\x7b\xf8\x5f\x4f\xe7\xc3\xc9\x78\xb4\x9a\x4f\xc6\xb3\x64\x34\x5a\x8e\xb5\x56\xad\x5a\x8b\xc9\x33\xb7\x5d\x30\xd5\xdf\x27\xb5\x5e\x25\x93\xd7\xd9\xf3\x62\x39\x7f\x7b\x3f\xc9\x95\xb0\x71\xde\x58\xc9\xc8\x45\x66\x4f\x95\x93\x1e\xac\x9f\xb2\xfa\xfe\xae\x0b\x3f\x4a\x01\x00\x14\x28\xb0\xa3\x62\x83\xbc\xc4\xb4\x07\xff\xae\x27\x89\x8f\xe1\xe5\x98\x0d\xea\x92\xb1\x34\x8c\x91\xb1\x36\xb8\x25\x95\xec\x92\xf0\x69\x2c\xa1\x7d\x1e\x8b\x34\x3e\xdb\x42\x1f\xda\x82\xf8\x83\x98\xe9\xeb\xe1\x66\x9b\xc7\xa8\xe1\xe9\xc1\xad\xbc\x16\x62\xb3\xc5\x85\x91\x5d\xf7\xdc\xad\x79\x83\x01\x94\xc6\x65\x36\xea\x0c\xa9\x2a\x36\xe0\x48\x20\x34\x03\xc6\x14\x19\x9d\x45\x10\x82\x2b\xaf\x4e\x70\x38\x04\x34\xac\xd1\x56\x82\x57\x10\xcd\x6a\xbc\x98\x1c\x39\x6c\xba\xff\x07\xab\x85\xd1\x47\x49\xd4\x55\x17\xfa\x4b\x51\xcc\xf8\x59\xa1\x97\xb5\xf3\xe1\x68\xe7\x3b\x84\x78\x1a\xe1\xa0\x7e\x03\x00\x00\xff\xff\x5f\x78\x28\xec\x0a\x02\x00\x00" func lockedtokensStakerRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -4279,11 +4190,11 @@ func lockedtokensStakerRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x43, 0x96, 0xc0, 0xc3, 0xf5, 0xcd, 0xe1, 0xb9, 0xfa, 0x2f, 0x25, 0x5a, 0x6c, 0x3b, 0x3d, 0xc4, 0x1a, 0xa9, 0x3, 0x7c, 0x91, 0xfe, 0x22, 0x28, 0x3c, 0xb9, 0x98, 0x62, 0xb4, 0xd0, 0xb2, 0xbf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x58, 0x89, 0x50, 0xca, 0x45, 0x71, 0x4e, 0x85, 0xb7, 0xbe, 0xb5, 0xb7, 0x66, 0xdb, 0x88, 0x48, 0xdf, 0xfa, 0x85, 0x70, 0x19, 0xa4, 0x67, 0x61, 0xc2, 0x33, 0xc, 0xc5, 0x1, 0xea, 0xd4, 0xb9}} return a, nil } -var _lockedtokensStakerStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x8b\xdb\x30\x10\xbd\xfb\x57\x4c\x7d\x58\x6c\xe8\x7a\x2f\xa5\x87\x90\x74\xe9\x16\x96\x1e\xca\x76\x69\xda\xed\x59\xb1\xc7\x1f\x44\x91\x8c\x34\x6e\x52\x42\xfe\x7b\xd1\x87\x1d\xc9\x61\x69\x28\xd4\x17\x25\x9a\x37\x6f\xe6\xcd\x1b\x75\xbb\x5e\x2a\x82\x47\x2e\xf7\xdf\xe5\x16\x05\xd4\x4a\xee\x20\x9d\xfe\xa7\xc9\x88\x18\x44\xd3\x6d\x38\x46\xa8\xf0\x6e\x42\x7e\x91\xe5\x16\x2b\x7b\xa7\x3d\x30\xbc\x9a\x70\x6b\x62\xdb\x4e\x34\xcf\x4a\x1e\x7e\x7b\x5c\x78\x95\x26\x09\x29\x26\x34\x2b\xa9\x93\x22\x63\x3b\x39\x08\x5a\xc0\x8f\xc7\xee\xf0\xfe\x5d\x0e\xc7\x24\x01\x00\xe0\x48\xd0\x4a\x5e\xa1\xfa\x86\xf5\x02\xd8\x40\x6d\x16\x56\x2b\xec\xf1\xb5\x47\xc5\x0c\x8d\x7e\x1b\x0b\x29\x7e\x76\xd4\x56\x8a\xed\x73\xb8\xb9\x4c\xfb\x6c\x89\xcf\x85\x7e\xb1\x81\xd3\xb9\xce\xab\x4c\xd3\xf4\x8a\x17\x93\xe1\x08\x7a\x85\x3d\x53\x98\xb1\xb2\x74\x4a\x2c\xc7\x83\x54\x4a\xee\x5f\x18\x1f\x30\x87\x9b\x8f\x2e\x66\xd4\x81\xff\x34\xf2\xba\x98\x14\xc2\x0a\x7c\x7e\xa1\x49\x2a\xd6\x60\xb1\xb1\x0c\xcb\xff\xa1\xfc\x43\x66\x6c\x59\xc0\x6b\xf1\xb5\x6b\xe1\x99\x51\x9b\x4f\x0d\x9b\xef\xfe\x1e\x7a\x26\xba\x32\x4b\x3f\xc9\x81\x57\x20\x24\x81\xeb\x13\x14\xd6\xa8\x50\x94\x08\x24\x21\xe0\x4a\xf3\x24\xd6\x3c\x0e\xfb\x2f\x92\xaf\x35\x61\xd4\x72\xe7\x49\xee\xea\x31\x6e\xc3\x57\xf7\x6f\xd2\x80\xec\x23\xb0\x1d\x9e\x05\xa5\x8e\xe3\xe4\x74\xe0\x01\xcb\x81\x30\x70\xd2\x6c\x90\x26\xb6\x45\xe5\x56\x7e\x35\xf3\xd6\xcb\x5a\x5b\x48\x16\x8c\xc3\x24\x72\x6b\xc1\x03\xe3\xcc\x8c\xee\x22\xb5\x41\x72\x26\xf9\x0d\xf2\xc0\x90\xa5\xab\xc1\xbd\x21\x58\xae\x66\x74\xc7\x24\x52\x1f\x34\x59\xd8\xdf\x4f\xe8\x26\xa5\xa7\x57\xe8\xce\x80\xfd\x04\xc8\x35\x9a\x22\x99\x07\xc1\x6d\x5c\x25\x37\x75\x23\x67\x8b\xcd\x18\x99\x37\x10\x8b\xab\xb0\x97\xba\x23\x6f\xe0\xf2\x36\x26\xd9\x7b\xcb\x67\xbd\x5d\x94\xcf\xff\x59\x64\x98\x36\x17\x7c\x8c\xa2\x7e\x69\x9e\x24\x01\x0a\x39\x34\xad\xdb\x14\x6d\x76\xdd\x16\x79\x93\x9e\xe9\x4e\x7e\x5d\x4e\xc9\x9f\x00\x00\x00\xff\xff\x73\x2a\x82\xe7\x85\x05\x00\x00" +var _lockedtokensStakerStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\xcb\x8e\xda\x40\x10\xbc\xfb\x2b\x3a\x3e\x44\xf6\x61\xbd\x39\x44\x39\xac\x20\x2b\xb2\xb0\x49\xc4\x0a\x10\x26\xaf\xe3\x60\xda\x0f\x31\xcc\x58\xe3\x76\x20\x42\xfc\x7b\x34\x0f\x1b\xdb\x68\xa5\x28\xbe\xd8\x9e\xae\xe9\xaa\xea\xea\xe2\x50\x4a\x45\xf0\xcc\xe5\x71\x23\xf7\x28\x20\x55\xf2\x00\x7e\xfb\xef\x7b\x0d\xa2\x16\x59\xb1\xe5\xd8\x43\x75\xcf\x7c\xaf\x81\xbe\xc8\x64\x8f\x3b\x73\x58\x59\xe4\xbb\xd3\xcb\xf2\x69\x3e\x9b\x6e\x96\xf3\xd9\x62\x32\x9d\xae\x67\x71\xdc\xa0\x63\x62\xfb\x42\x64\x2b\x25\x4f\x7f\x1a\x74\xbc\x99\xcc\xbf\x2e\x3e\xaf\xd6\xcb\x9f\xbf\x1a\xb8\x47\x8a\x89\x8a\x25\x54\x48\x11\xb0\x83\xac\x05\x3d\xc0\xb7\xe7\xe2\xf4\xe1\x7d\x08\x67\xcf\x03\x00\xe0\x48\x90\x4b\xbe\x43\xb5\xc6\xf4\x01\xde\x76\x95\x44\xe6\xf5\xc5\x54\xaf\xe8\xdf\xac\xe6\x64\xc1\xad\xe7\xe8\xbb\x3e\xb4\x98\x52\x61\xc9\x14\x06\x2c\x49\x2c\xe3\xa4\xa6\x7c\x62\x7f\x34\x2d\xb8\xa7\x42\x9e\x46\x2d\x35\x8c\xc1\x5d\x88\xb6\x52\x29\x79\x1c\xbd\x2a\xe5\x63\xa0\x3d\x3f\xc0\x6b\xf5\x98\xa4\x62\x19\xae\x18\xe5\x61\xcb\xa6\x9f\xc7\x47\x28\x99\x28\x92\xc0\x7f\x92\x35\xdf\x81\x90\x04\x96\x0c\x14\xa6\xa8\x50\x24\x08\x24\xa1\xd3\xcb\x0f\xbd\xbe\xe0\xc6\xfd\xad\x5e\x56\x53\x1e\xf4\xf2\x8d\x7e\x14\x94\xef\x14\x3b\xb2\x2d\xc7\xf0\x66\x5c\x8d\x8f\xfb\xca\x0a\xbe\x4f\x9b\xba\x29\xff\xb3\x76\x7d\x0d\xc8\x2c\x99\x51\x77\x35\xe3\xdb\x1e\x17\xeb\x01\x4f\x98\xd4\x84\x9d\x08\x74\x9c\x15\xb1\x3d\x2a\xbb\x4b\xe3\x41\x28\xce\x5a\x6c\x20\x41\x67\x14\xfa\x22\x37\xe3\xff\xc4\x38\xd3\x63\xbb\xb9\x9a\x21\xd9\x80\x5c\xf4\x0e\xd8\xed\x52\xa4\x60\xb7\x12\x46\xe3\x41\xbb\xb3\xd7\x73\xdf\x11\x19\x99\xef\x05\xda\x49\x55\xed\x5e\xdb\x77\xa7\xfb\x05\x90\x57\xa8\x49\x02\x07\x82\xbb\x3e\x4b\xa8\x79\x7b\xa9\x46\xdb\xa6\x32\x14\xd0\x37\xb7\xc3\x52\x56\x05\xb9\x00\x47\x77\xfd\x26\x47\x17\xfb\x40\xdb\x0d\x7d\xf8\xdf\x26\xbb\xd7\x86\x86\xcf\xbd\xaa\x5b\x9a\x85\x24\x40\x21\xeb\x2c\xb7\x9b\x52\xe9\x3d\x37\x24\x6f\xfc\x6b\xbb\x8b\x5b\x97\x8b\xf7\x37\x00\x00\xff\xff\x52\x07\x6c\x79\xe5\x04\x00\x00" func lockedtokensStakerStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4299,11 +4210,11 @@ func lockedtokensStakerStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0x94, 0xa9, 0xe1, 0x94, 0x21, 0x96, 0x84, 0xaa, 0x9a, 0xa0, 0xb6, 0xdb, 0x1c, 0x29, 0x14, 0x18, 0x54, 0xdd, 0x63, 0xda, 0x32, 0x1c, 0xa8, 0xae, 0xbc, 0x10, 0x74, 0xb7, 0x33, 0xdf, 0x90}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4f, 0x22, 0xd8, 0x60, 0xd7, 0xd4, 0x8d, 0x48, 0x46, 0xff, 0x44, 0xac, 0xfa, 0xbc, 0x9b, 0xd, 0xa9, 0x51, 0x5a, 0xc9, 0xc4, 0x71, 0xeb, 0x81, 0x4b, 0xe8, 0x9f, 0xa0, 0x9b, 0xa2, 0x3c, 0xa2}} return a, nil } -var _lockedtokensStakerStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x6b\x83\x40\x10\xc5\xef\x7e\x8a\xc1\x43\x50\x28\x9e\x4a\x0f\xa1\x69\x68\x0b\xa1\x87\x42\x43\xd2\x3f\xe7\x89\x8e\x71\xd1\xec\xc8\x38\x92\x94\x92\xef\x5e\xdc\x35\xc6\xb4\xf4\xd8\xbd\xac\xcc\xbe\x79\xf3\xf3\xed\x9a\x5d\xcd\xa2\xf0\xcc\x69\x49\xd9\x2b\x97\x64\x1b\xc8\x85\x77\x10\x8e\x4b\x61\xd0\xeb\xd6\x8a\xa5\xb1\xdb\xa5\xf0\xe1\xb3\xd7\x8d\x4b\x83\x6e\xd1\xda\xad\xd9\x54\xe4\xda\x7b\xe1\x45\x2d\x0c\x02\x15\xb4\x0d\xa6\x6a\xd8\x46\xb8\xe3\xd6\xea\x14\xde\x16\xe6\x70\x73\x1d\xc3\x57\x10\x00\x00\x54\xa4\x50\x70\x95\x91\xac\x28\x9f\x02\xb6\x5a\x44\x63\xae\xc4\x6d\x2f\x35\x09\x76\x36\xcd\xd5\xe5\xe0\xe4\xc3\x68\x91\x09\xee\x63\x98\xfc\x6e\x7b\x72\xc6\x7e\x50\x2d\x54\xa3\x50\x84\x69\xea\x41\xdc\xa8\x07\x16\xe1\xfd\x3b\x56\x2d\xc5\x30\xb9\xf7\x67\x1d\x1c\xf4\xab\xa1\x2a\x4f\x06\x40\x98\x41\xdf\x9f\x34\xca\x82\x5b\x4a\x36\xce\xe1\xf6\x3f\xc0\xef\xa2\x2e\xd6\x29\xfc\x75\xbe\xf6\x08\x4b\xd4\x22\x1e\x80\xbb\x35\x9f\x43\x8d\xd6\xa4\x51\xf8\xc8\x6d\x95\x81\x65\x05\xcf\x09\x42\x39\x09\xd9\x94\x40\x19\x46\x5e\xa1\x77\x38\xfa\xb0\xe8\x40\x69\xab\x34\xca\xa1\xbb\xa7\x46\xb1\x24\xf1\x2f\x63\xf6\x23\x99\x3e\x87\xb5\x93\x44\x71\x70\x0e\xf0\xdc\x94\xb8\xef\x15\xed\x51\xb2\xd3\xff\x0c\xef\xc2\xef\x27\x8a\x63\xf0\x1d\x00\x00\xff\xff\xd0\xbf\x36\xd9\xb7\x02\x00\x00" +var _lockedtokensStakerStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6b\xc2\x50\x0c\xc7\xef\xfd\x2b\x82\x87\x51\x2f\x65\x87\xb1\x83\xcc\x49\x51\xf7\x03\x45\xa5\xcf\xc1\x76\x7c\x7b\x4d\xb5\xb4\xbe\x94\x34\xc5\x8e\xe1\xff\x3e\xda\xd7\xaa\x0c\xcc\x25\x2d\xf9\xe6\x9b\x7c\xf2\xd2\x43\x41\x2c\xb0\x24\x93\x61\xbc\xa5\x0c\x6d\x09\x09\xd3\x01\xee\xeb\xe5\x7a\xba\x98\xcf\xb6\xeb\xc5\x7c\x15\xce\x66\xd1\x5c\x29\xaf\x53\x2b\xd1\x59\x6a\x77\x1b\xa6\xfa\xa7\x57\xab\x6d\xb8\x78\x5f\xbd\x6e\xa2\xf5\xe7\x57\x2f\xf7\x84\xb5\x2d\xb5\x91\x94\xac\xaf\x0f\x54\x59\x19\xc1\xc7\x4b\x5a\x3f\x3e\x0c\xe1\xd7\xf3\x00\x00\x72\x14\xd8\x53\x1e\x23\x47\x98\x8c\xe0\xee\x7a\x93\xa0\x4d\x6f\x6d\xd5\xa9\x0b\xc6\x42\x33\xfa\xda\x18\xe7\x16\x56\xb2\x0f\xdd\x4f\x63\x09\x5d\x94\x98\x27\xc1\xd9\x16\xc6\xd0\x35\x04\xdf\xc4\x4c\xc7\xa7\x9b\x63\x9e\xfd\x86\x67\x04\xb7\xea\x4a\x88\xf5\x0e\x37\x5a\xf6\xc3\xf3\xb4\x26\x26\x13\x28\xb4\x4d\x8d\x3f\x98\x52\x95\xc7\x60\x49\xc0\x0d\x03\xc6\x04\x19\xad\x41\x10\x82\x2b\xaf\x81\x73\x38\x39\x34\xac\xd1\x54\x82\x57\x10\xcd\x69\x4a\xd1\x19\xb2\xbb\xf4\xf8\x1f\x56\x07\xa3\x5a\x89\x3f\xf4\x2e\xf4\x97\xa6\xa0\xfd\x8e\xf0\xa8\x39\xee\x79\xce\x4f\xe1\x72\xbf\xc5\xc9\xfb\x0b\x00\x00\xff\xff\x4c\x01\x8a\x3b\x0d\x02\x00\x00" func lockedtokensStakerStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4319,11 +4230,11 @@ func lockedtokensStakerStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0xa0, 0x71, 0x36, 0x7, 0x30, 0xc6, 0x7b, 0x66, 0x12, 0xac, 0xed, 0xc2, 0xbc, 0x68, 0x9a, 0xe6, 0xbd, 0xa3, 0x1, 0xa2, 0x22, 0x15, 0xe4, 0xda, 0xdd, 0xae, 0xe4, 0x5c, 0xa2, 0x96, 0x31}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2d, 0x5f, 0x47, 0xa5, 0x4b, 0xa0, 0x20, 0x8f, 0xd4, 0xc8, 0xff, 0x36, 0x18, 0xd, 0x76, 0xea, 0x11, 0x69, 0x2a, 0x66, 0x7f, 0xb9, 0xbb, 0xec, 0x61, 0xba, 0x59, 0xc0, 0x50, 0x23, 0xa6, 0x12}} return a, nil } -var _lockedtokensStakerStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6b\xe3\x40\x0c\x85\xef\xfe\x15\xc2\x87\x60\xc3\xe2\xd3\xb2\x87\xb0\xd9\xb0\x2d\x84\x1e\x0a\x0d\x4d\xd3\x9e\x15\x5b\x8e\x07\x3b\x23\x23\xcb\x24\xa5\xe4\xbf\x17\xcf\x4c\x1d\xa7\xa5\xc7\xce\x45\x41\xf3\xf4\xf4\xe5\x79\xcc\xa1\x65\x51\xb8\xe7\xbc\xa6\xe2\x89\x6b\xb2\x1d\x94\xc2\x07\x88\xa7\xad\x38\x0a\xba\x8d\x62\x6d\xec\x7e\x2d\x7c\x7a\x0d\xba\x69\x6b\xd4\xad\x7a\xbb\x37\xbb\x86\xdc\x78\x10\x5e\xf5\xe2\x28\x52\x41\xdb\x61\xae\x86\x6d\x82\x07\xee\xad\xce\x61\xbb\x32\xa7\x3f\xbf\x53\x78\x8b\x22\x00\x80\x86\x14\x2a\x6e\x0a\x92\x47\x2a\xe7\x80\xbd\x56\xc9\x94\x2b\x73\xe5\xa1\x25\xc1\xc1\xa6\xfb\x75\xbd\x38\x7b\x31\x5a\x15\x82\xc7\x14\x66\x5f\xc7\xee\x9c\xb1\x5f\xd4\x0a\xb5\x28\x94\x60\x9e\x7b\x10\xb7\xea\x86\x45\xf8\xf8\x8c\x4d\x4f\x29\xcc\xfe\xfb\xbb\x01\x0e\xc2\xe9\xa8\x29\xb3\x11\x10\x16\x10\xe6\xb3\x4e\x59\x70\x4f\xd9\xce\x39\xfc\xfd\x09\xf0\x7f\xc9\x10\xeb\x1c\xbe\xbb\xdf\x78\x84\x35\x6a\x95\x8e\xc0\xc3\x59\x2e\xa1\x45\x6b\xf2\x24\xbe\xe5\xbe\x29\xc0\xb2\x82\xe7\x04\xa1\x92\x84\x6c\x4e\xa0\x0c\x13\xaf\xd8\x3b\x9c\x7d\x58\x74\xa2\xbc\x57\x9a\xe4\x30\x7c\xa7\x4e\xb1\x26\xf1\x2f\x63\xf1\x29\x99\x90\xc3\xc6\x49\x92\x34\xba\x04\x78\x19\xca\xdc\xef\xad\x75\x25\xfc\x9f\xf1\x5d\xf8\xfa\x41\x71\x8e\xde\x03\x00\x00\xff\xff\xff\x8b\x86\xf7\xb7\x02\x00\x00" +var _lockedtokensStakerStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6a\xc2\x40\x10\xc6\xef\xfb\x14\x83\x87\x12\x2f\xa1\x87\xd2\x83\xd4\x4a\x50\xfb\x07\x45\xc5\x55\x68\x8f\xdb\x75\xa2\x21\x71\x27\x4c\x26\x34\xa5\xf8\xee\x25\xd9\xa8\xa1\xe0\x5c\x26\x61\xbe\xf9\x66\x7e\xb3\xc9\x31\x27\x16\x98\x93\x4d\x71\xb7\xa1\x14\x5d\x01\x31\xd3\x11\xee\xab\xf9\x72\x3c\x9b\x4e\x36\xcb\xd9\x74\x11\x4d\x26\xeb\xa9\xd6\xaa\x55\x6b\x31\x69\xe2\xf6\x2b\xa6\xea\xe7\xac\xd6\x9b\x68\xf6\xbe\x78\x5d\xad\x97\x1f\x9f\x67\xb9\x12\x36\xae\x30\x56\x12\x72\x81\x39\x52\xe9\x64\x00\xdb\x97\xa4\x7a\x7c\xe8\xc3\xaf\x52\x00\x00\x19\x0a\x1c\x28\xdb\x21\xaf\x31\x1e\xc0\x5d\x77\x93\xb0\x49\x6f\x4d\xd5\xab\x73\xc6\xdc\x30\x06\xc6\x5a\xef\x16\x95\x72\x88\xfc\x4f\x6d\x09\x6d\x14\x98\xc5\xe1\xc5\x16\x86\xd0\x36\x84\x5f\xc4\x4c\xdf\x4f\x37\xc7\x3c\x07\x35\xcf\x00\x6e\xd5\xb5\x10\x9b\x3d\xae\x8c\x1c\xfa\x97\x69\x75\x8c\x46\x90\x1b\x97\xd8\xa0\x37\xa6\x32\xdb\x81\x23\x01\x3f\x0c\x18\x63\x64\x74\x16\x41\x08\x3a\x5e\x3d\xef\x70\xf2\x68\x58\xa1\x2d\x05\x3b\x10\xf5\x69\x0a\x31\x29\xb2\xbf\xf4\xf0\x1f\x56\x0b\xa3\x1b\x49\xd0\x57\x57\xfa\x6b\x53\xd8\x7c\x6f\x5d\x93\x5a\x9e\xcb\x53\xf8\x7c\xde\xe2\xa4\xfe\x02\x00\x00\xff\xff\x63\x35\x3a\x15\x0d\x02\x00\x00" func lockedtokensStakerStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4339,11 +4250,11 @@ func lockedtokensStakerStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x12, 0xf1, 0x86, 0x58, 0x5d, 0x91, 0x7f, 0x1a, 0x15, 0x92, 0xc5, 0xf3, 0xa7, 0xa6, 0xd3, 0x7a, 0x72, 0xd0, 0x90, 0x7c, 0xc2, 0x70, 0x26, 0x1f, 0xbc, 0xcf, 0x67, 0xa, 0x38, 0x17, 0x82, 0xc7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0x1d, 0x1, 0x11, 0xf9, 0x79, 0xef, 0xb3, 0xce, 0x49, 0x93, 0x62, 0xfc, 0x29, 0x5c, 0xc2, 0x92, 0xc4, 0xa4, 0xc9, 0x40, 0x13, 0x75, 0x6, 0x2a, 0xf, 0x2c, 0x4e, 0x71, 0xae, 0x7e, 0xb2}} return a, nil } -var _lockedtokensStakerUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x51\x4d\x4b\xf3\x40\x10\xbe\xef\xaf\x18\x72\x28\x1b\x78\xc9\x0f\x28\x6f\x2d\x55\x10\x0f\x82\xc5\x8a\x9e\xa7\x9b\x49\x13\xb2\xdd\x09\x93\x59\x5a\x91\xfe\x77\xc9\x87\x6d\xaa\x78\x74\x2e\x21\x33\xcf\x17\xcf\x56\xfb\x86\x45\xe1\x91\x5d\x4d\xf9\x0b\xd7\x14\x5a\x28\x84\xf7\x90\x4c\x57\x89\x19\x71\xf7\x31\xec\xaa\xad\xa7\x7e\x3d\x02\xaf\x76\x89\x31\x2a\x18\x5a\x74\x5a\x71\xb0\x29\x7c\x18\x03\x00\xe0\x49\xa1\x64\x9f\x93\x3c\x53\x31\x07\x8c\x5a\xda\xa9\x43\xd6\x7f\x9e\x1a\x12\xec\x88\xed\xbf\x6b\xab\xec\xad\xd2\x32\x17\x3c\xa4\x30\xfb\x49\x7b\xe8\x85\x07\xa3\x46\xa8\x41\x21\x8b\xce\x71\x0c\x3a\x5a\xdd\xb2\x08\x1f\x5e\xd1\x47\x4a\x61\xb6\x1a\x6e\x5d\x38\x18\xa7\x25\x5f\x64\xe7\x80\xb0\x80\x91\x9f\xb5\xca\x82\x3b\xca\xb6\xbd\xc2\xff\xbf\x08\x7e\x63\xbb\x22\xe7\xf0\xdb\x7d\x33\x44\x58\xa3\x96\xe9\x39\x70\x37\xcb\x25\x34\x18\x2a\x67\x93\x3b\x8e\x3e\x87\xc0\x0a\x43\x4e\x10\x2a\x48\x28\x38\x02\x65\x98\x68\x25\x83\xc2\x69\x28\x8b\x8e\xe4\xa2\xd2\xa4\x87\xee\x9d\x5a\xc5\x9a\x64\x2d\x7c\x7c\x87\xc5\xb7\x66\xc6\x1e\x36\x3d\xc4\xa6\xe6\x52\xe0\x85\x94\xc5\xd0\xff\xad\xbc\xb7\x5f\x76\x27\xf3\x19\x00\x00\xff\xff\x30\xca\xb7\x9c\x6a\x02\x00\x00" +var _lockedtokensStakerUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x41\x6b\xfa\x40\x10\xc5\xef\xfb\x29\x06\x0f\x7f\xd6\x4b\xf8\x9f\xa5\x56\x82\x4a\x5b\x14\x15\xd7\x43\x7b\xdc\xae\x13\x0d\x59\x77\xc2\x64\x42\x2d\xc5\xef\x5e\x92\x8d\x1a\x0a\xce\x65\x18\xe6\xcd\x7b\xfc\x26\x3f\x95\xc4\x02\x4b\x72\x05\xee\x77\x54\x60\xa8\x20\x63\x3a\xc1\xff\xf3\x72\x3d\x5d\xcc\x67\xbb\xf5\x62\xbe\x4a\x67\xb3\xed\xdc\x18\xd5\xa9\x8d\xd8\x22\x0f\x87\x0d\xd3\xf9\xfb\xaa\x36\xbb\x74\xf1\xb6\x7a\xd9\x6c\xd7\xef\x1f\x57\xb9\x12\xb6\xa1\xb2\x4e\x72\x0a\x7a\x08\x3f\x4a\x01\x00\x78\x14\x38\x92\xdf\x23\x6f\x31\x1b\xc1\xbf\x7e\x76\xd2\xb6\xd7\x76\x1b\xd5\x25\x63\x69\x19\xb5\x75\x8e\xea\x20\x23\x48\x6b\x39\xa6\x71\x68\x2c\xa1\xab\x0a\x7d\x96\xdc\x6c\x61\x0c\xdd\x41\xf2\x49\xcc\xf4\xf5\xf4\x30\xe6\x59\x37\x04\x23\x78\xb4\x37\x42\x6c\x0f\xb8\xb1\x72\x1c\xde\xd2\x9a\x9a\x4c\xa0\xb4\x21\x77\x7a\x30\xa5\xda\xef\x21\x90\x40\x0c\x03\xc6\x0c\x19\x83\x43\x10\x82\x9e\xd7\x20\x3a\x5c\x22\x1a\x9e\xd1\xd5\x82\x3d\x88\xe6\x35\x95\xd8\x02\x39\xfe\x76\xfc\x07\xab\x83\x31\xad\x44\x0f\xd5\x9d\xfe\x7e\x94\xd4\xa1\x9d\x52\xef\xf5\x35\xee\xa2\x7e\x03\x00\x00\xff\xff\x74\xb5\x4c\x21\xe8\x01\x00\x00" func lockedtokensStakerUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -4359,11 +4270,11 @@ func lockedtokensStakerUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdc, 0xc1, 0xaf, 0x7a, 0x10, 0xfb, 0xfd, 0x3b, 0x33, 0xc6, 0xc6, 0xce, 0xa3, 0x80, 0xcf, 0x7f, 0x17, 0xf2, 0x6f, 0xae, 0x9a, 0xba, 0x53, 0xa9, 0x11, 0x16, 0x37, 0xb0, 0x94, 0xa3, 0x4c, 0x20}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0xd3, 0x2e, 0xa, 0x8e, 0xd8, 0xe4, 0x82, 0xc3, 0xb4, 0xc9, 0x21, 0x28, 0x8, 0x53, 0xa5, 0x6d, 0xb0, 0xa8, 0x9, 0x45, 0xd8, 0x11, 0xf1, 0x8a, 0x70, 0x2d, 0x4f, 0x79, 0x43, 0x3f, 0x86}} return a, nil } -var _lockedtokensStakerUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xcd\x6a\xeb\x30\x10\x85\xf7\x7e\x8a\xc1\x8b\x60\xc3\xc5\x0f\x10\x6e\x6e\xc8\x2d\x94\x2e\x4a\x1b\x9a\xd2\xae\x15\x69\x6c\x0b\x3b\x1a\x33\x1a\xe1\x94\x92\x77\x2f\xb6\xd5\xc4\x69\xe9\xb2\xda\x18\xe6\xe7\x9c\x8f\xe3\xb1\x87\x8e\x58\xe0\x9e\x74\x83\xe6\x99\x1a\x74\x1e\x4a\xa6\x03\xa4\xf3\x52\x9a\xc4\xb9\xdb\xe0\x2a\xbb\x6f\x71\x2c\xc7\xc1\xab\x5a\x9a\x24\xc2\xca\x79\xa5\xc5\x92\xcb\x1c\xf6\x1b\x63\x18\xbd\x5f\xc2\x4e\xd8\xba\x2a\x87\xf7\x24\x01\x00\x68\x51\xa0\xa6\xd6\x20\x3f\x61\xb9\x04\x15\xa4\xce\xe6\x9e\xc5\xf8\x79\xec\x90\xd5\x20\xe5\xff\x5c\x9b\x17\xaf\x56\x6a\xc3\xaa\xcf\x61\xf1\x7d\xed\x6e\x14\x9e\x8c\x3a\xc6\x4e\x31\x66\x4a\x6b\x0a\x4e\xa2\xd5\x7f\x62\xa6\xfe\x45\xb5\x01\x73\x58\x6c\xa6\xde\x00\x07\xf1\x79\x6c\xcb\xe2\x0c\x08\x2b\x88\xfb\x85\x17\x62\x55\x61\xb1\x1f\x15\xfe\xfe\x06\xf8\xbf\x6c\x88\x76\x09\x3f\xf5\x77\x13\xc2\x56\x49\x9d\x9f\x81\x87\xb7\x5e\x43\xa7\x9c\xd5\x59\x7a\x43\xa1\x35\xe0\x48\x60\xe2\x04\xc6\x12\x19\x9d\x46\x10\x82\x99\x56\x3a\x29\x9c\xa6\xb0\xf0\x88\x3a\x08\xce\x72\x18\xfe\x93\x17\xd5\x20\x6f\x99\x8e\x6f\xb0\xfa\x92\x4c\xcc\x61\x37\x8e\x64\x79\x72\x09\xf0\xb2\x54\x84\xce\x28\xc1\x07\x94\x9e\xb8\xb1\xae\x8a\x47\x31\xbb\x8f\x4f\x8a\x53\xf2\x11\x00\x00\xff\xff\x4a\x3a\x43\x6d\x93\x02\x00\x00" +var _lockedtokensStakerUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4d\x8b\xf2\x40\x0c\x80\xef\xf3\x2b\x82\x87\x97\x7a\x29\xef\xb9\xac\x2b\x45\x85\x05\x45\xc5\xfa\x07\x66\x67\xd2\x0f\x5a\x27\x25\x93\xd2\x2e\x8b\xff\x7d\xe9\xc7\x6a\x59\x30\x97\x61\x48\xf2\x64\x9e\x49\x71\xab\x89\x05\x0e\x64\x4a\xb4\x57\x2a\xd1\x79\x48\x99\x6e\xf0\xbf\x3b\x9c\x36\xfb\xdd\xf6\x7a\xda\xef\x8e\xf1\x76\x7b\xd9\x25\x89\x52\xc2\xda\x79\x6d\xa4\x20\x17\x38\x6c\x63\x6b\x19\xbd\x8f\x20\x11\x2e\x5c\xb6\x84\x6f\xa5\x00\x00\x2a\x14\xc8\xa9\xb2\xc8\x17\x4c\x23\xf8\x37\xc7\x87\xc3\xf1\x31\x64\xc7\xea\x9a\xb1\xd6\x8c\x81\x36\x86\x1a\x27\x11\xc4\x8d\xe4\xf1\x78\xe9\x91\x30\x85\xc7\x2a\x0d\x1f\x58\x58\xc1\xd4\x10\x7e\x12\x33\xb5\x6f\x2f\xc7\xbc\x07\xbd\x52\x04\xaf\xf2\x89\x10\xeb\x0c\xcf\x5a\xf2\xe5\x63\x5a\x1f\xeb\x35\xd4\xda\x15\x26\x58\x6c\xa8\xa9\x2c\x38\x12\x18\x87\x01\x63\x8a\x8c\xce\x20\x08\xc1\x8c\xb5\x18\x09\xf7\x51\x0d\x3b\x34\x8d\xe0\x4c\xa2\xff\x1a\x2f\xba\x44\x3e\x33\x75\x5f\xb0\xfa\xa3\x35\xc9\x24\x43\x49\xb0\x54\x4f\xfb\x67\x53\xd8\xd4\x56\x0b\x1e\x51\x5a\xe2\xb2\x70\xd9\xb4\x87\xd9\x4a\x7e\x5f\x71\x57\x3f\x01\x00\x00\xff\xff\x7e\x1e\x81\xca\xe2\x01\x00\x00" func lockedtokensStakerUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -4379,11 +4290,11 @@ func lockedtokensStakerUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7d, 0xe2, 0x2b, 0x45, 0xf7, 0x48, 0x74, 0x1b, 0x7a, 0xf8, 0xba, 0x91, 0x56, 0x13, 0x38, 0x14, 0xae, 0x4d, 0x1c, 0xdf, 0x80, 0xc7, 0x48, 0xcc, 0x45, 0x7d, 0xf9, 0x69, 0x6b, 0xb, 0x49, 0x9f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xda, 0xe7, 0xc1, 0x75, 0xd6, 0x8e, 0x1a, 0x5c, 0xb2, 0x5f, 0xcd, 0xb3, 0x4f, 0xa6, 0x85, 0x5a, 0xd4, 0x54, 0x29, 0x2c, 0x6f, 0x5d, 0x2a, 0xcd, 0x98, 0x25, 0x64, 0x6c, 0xa3, 0xb7, 0x33, 0x8c}} return a, nil } -var _lockedtokensStakerWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xc1\x8e\xda\x30\x10\x86\xef\x79\x8a\x51\x0e\x28\x91\x5a\x73\xa9\x7a\x40\x50\xd4\x56\x42\x3d\x54\x2a\x82\x96\x9e\x4d\x32\x21\x11\xc6\x13\x4d\x1c\xc2\x6a\xc5\xbb\xaf\x62\x3b\x21\x64\x97\xcb\x4a\x9b\x8b\x95\x99\xf1\x3f\xdf\x3f\xe3\xe2\x54\x12\x1b\xf8\x4d\xc9\x11\xd3\xbf\x74\x44\x5d\x41\xc6\x74\x82\x70\x18\x0a\x03\x5f\xb7\x52\xd4\xd8\x90\x2f\xea\xff\x6f\x15\xb5\x3e\x14\x7b\x85\x77\x55\xc3\x58\x18\x04\x86\xa5\xae\x64\x62\x0a\xd2\x91\x3c\x51\xad\xcd\x0c\xfe\xad\x8a\xcb\xd7\x2f\x31\x3c\x07\x01\x00\x80\x42\x03\x39\xa9\x14\x79\x83\xd9\x0c\x64\x6d\xf2\x68\x48\x24\xec\xf1\xa7\x44\x96\xad\x4c\xf5\xe9\xbe\xb1\xf8\x5f\x98\x3c\x65\xd9\xc4\x30\x79\x7d\xed\x97\x15\xee\xfb\x9c\x65\xad\x8c\x6d\x33\xe9\xfd\x88\x5d\x1b\x74\x2c\x25\x63\x29\x19\x23\x99\x24\x8e\xd5\xd2\xfc\x20\x66\x6a\x76\x52\xd5\x18\xc3\xe4\xbb\xcb\xb5\xfc\xe0\xbf\x0a\x55\x26\x7a\x0f\xb0\x00\x7f\x5f\x54\x86\x58\x1e\x50\xec\xad\xc2\xfc\x23\xbc\x7d\x8b\xda\xc9\xcf\xe0\x51\x7e\xeb\x10\xd6\xd2\xe4\x71\x0f\xdc\x7e\xcb\x25\x94\x52\x17\x49\x14\xfe\xa4\x5a\xa5\xa0\xc9\x80\xe3\x04\xc6\x0c\x19\x75\x82\x60\x08\x06\x5a\x61\x1c\xdc\x7b\xee\xe6\xf9\xd8\xf2\x78\xce\x1d\xee\xd4\xd7\x4d\xb3\x2e\x6f\xd3\xef\x43\xbc\xbd\xd5\x73\xbb\xa4\xd0\xa9\x5c\x1d\x2c\x5e\x30\xa9\x0d\x0e\xd6\xd5\xbe\x84\xca\xc8\x23\xf2\x9a\xe9\xf2\x04\x8b\xd1\x02\x3d\xfb\xd6\x96\x44\x43\xcf\xb7\x4b\xa2\xf1\xab\xd9\x60\x23\x39\xed\x26\xdf\x3f\x72\x77\xc6\x6f\x8f\x4b\xa4\x58\x52\x55\x18\x3f\x8b\xf9\xe7\x51\xff\x4e\x7b\xac\xd6\xf9\xba\x06\x2f\x01\x00\x00\xff\xff\x84\xb1\x80\xaf\xcd\x03\x00\x00" +var _lockedtokensStakerWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\xcd\x8e\xa2\x40\x10\xbe\xf3\x14\x15\x0e\x1b\x38\x2c\xee\x61\xb3\x07\xa3\x6b\x8c\x3f\x99\x44\x33\x1a\x71\xe6\xde\x03\xc5\x40\x44\x8a\x14\x85\x30\x99\xf8\xee\x13\x68\x40\x86\xe8\x65\xfa\xd2\x69\xea\xeb\xef\xaf\x89\xce\x29\xb1\xc0\x96\xbc\x13\xfa\x47\x3a\x61\x92\x41\xc0\x74\x86\x3f\xe5\x76\xb7\xd8\xac\x96\xc7\xdd\x66\xf5\x3c\x5f\x2e\x0f\x2b\xd7\x35\x1a\xf4\x3a\xa6\xa2\xc6\x6a\xa8\xd9\x9d\x4d\xc3\x10\x56\x49\xa6\x3c\x89\x28\xb1\xd4\x99\xf2\x44\xc6\xf0\xb2\x8e\xca\x7f\x7f\x6d\xf8\x34\x0c\x00\x80\x18\x05\x42\x8a\x7d\xe4\x03\x06\x63\xf8\xd5\x17\x77\xea\xed\xa9\x9e\x76\xe0\x8b\xca\x63\xd1\xd8\x4e\xca\x79\xad\x3e\x6a\xc2\x94\x31\x55\x8c\x96\xf2\x3c\x2d\x38\xcf\x25\x9c\xeb\x43\xa5\x0a\xcd\xca\x30\x0e\x9c\x4e\x19\xa6\xd0\x5c\x70\xde\x88\x99\x8a\xc9\x43\x27\xff\xad\x2a\xe8\x18\x1e\xcd\x5d\x21\x56\xef\xb8\x57\x12\xda\x9d\x5a\xb5\x66\x33\x48\x55\x12\x79\x96\xb9\xa0\x3c\xf6\x21\x21\x01\x2d\x06\x8c\x01\x32\x26\x1e\x82\x10\xf4\xb8\x4c\xdb\xf8\x6e\xb8\x4d\x7f\xc7\xef\xa0\x8d\xd6\xe6\x28\xd3\x7e\x46\x41\x3b\xaf\xc7\x3f\xb3\x76\x7b\xec\x8b\x8a\x73\x34\x35\xcb\x55\x9b\xc4\x12\xbd\x5c\xb0\xd7\x71\xf5\x5e\x99\xa8\x13\xf2\x9e\xa9\xfc\x80\xe9\xa0\xf5\xc6\xbb\x5b\x43\xac\x7e\xd6\xdb\x25\xa7\x88\x24\xf4\x59\x15\x07\x2c\x14\xfb\x6d\xe3\xdd\xff\xa4\x77\xfb\x7e\x4d\x8e\x8f\x29\x65\x91\x34\x5d\x4c\x7e\x0f\xf4\x5b\xee\x21\x5b\x9b\xeb\x6a\x7c\x05\x00\x00\xff\xff\x4a\x8d\xea\x3c\x14\x03\x00\x00" func lockedtokensStakerWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4399,11 +4310,11 @@ func lockedtokensStakerWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0xee, 0xf6, 0x2e, 0xef, 0x76, 0x89, 0x30, 0x4a, 0x84, 0xd5, 0xa7, 0x97, 0xb6, 0xc8, 0x9c, 0xfc, 0xc3, 0xc6, 0xd8, 0x30, 0x74, 0x8, 0xb5, 0x6e, 0x92, 0x38, 0x2d, 0xb6, 0x35, 0xeb, 0x38}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe9, 0x5c, 0xca, 0x3e, 0xa9, 0xb8, 0x1a, 0xda, 0x20, 0xf1, 0x6b, 0xf9, 0x15, 0xee, 0xef, 0x9d, 0xf4, 0x4, 0xd7, 0x3f, 0xd7, 0xae, 0x2a, 0xa9, 0xff, 0x12, 0x53, 0x50, 0x98, 0x2a, 0xe0, 0xfb}} return a, nil } -var _lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x6b\x83\x40\x10\xc5\xef\xfb\x29\x06\x0f\x41\xa1\x78\x2a\x3d\x84\xa6\xa1\x2d\x84\x1e\x0a\x0d\x49\xff\x9c\x27\xeb\x18\x25\x66\x47\xc6\x11\x53\x4a\xbe\x7b\xd1\x35\xc6\xb4\xf4\xd8\xbd\x2c\xcc\xce\xbc\xf7\x9b\xa7\xf9\xbe\x64\x51\x78\x66\xbb\xa3\xe4\x95\x77\xe4\x2a\x48\x85\xf7\x10\x8c\x4b\x81\xe9\xfb\x16\xb5\xdb\xe6\x9b\x82\xba\x72\xdf\x78\x51\x0b\x8c\x51\x41\x57\xa1\xd5\x9c\x5d\x88\x7b\xae\x9d\x4e\xe1\x6d\x91\x1f\x6e\xae\x23\xf8\x32\x06\x00\xa0\x20\x85\x8c\x8b\x84\x64\x45\xe9\x14\xb0\xd6\x2c\x1c\xfb\xc5\xdd\xf5\x52\x92\x60\x2b\x53\x5d\x5d\x1a\xc7\x1f\xb9\x66\x89\x60\x13\xc1\xe4\xf7\xd8\x53\x27\xec\x8d\x4a\xa1\x12\x85\x42\xb4\xd6\x83\x74\x56\x0f\x2c\xc2\xcd\x3b\x16\x35\x45\x30\xb9\xf7\x6f\x2d\x1c\xf4\xa7\xa2\x22\x8d\x07\x40\x98\x41\x3f\x1f\x57\xca\x82\x5b\x8a\x37\x9d\xc2\xed\x7f\x80\xdf\x85\x6d\xac\x53\xf8\xeb\x7d\xed\x11\x96\xa8\x59\x34\x00\xb7\x67\x3e\x87\x12\x5d\x6e\xc3\xe0\x91\xeb\x22\x01\xc7\x0a\x9e\x13\x84\x52\x12\x72\x96\x40\x19\x46\x5a\x81\x57\x38\xfa\xb0\xe8\x40\xb6\x56\x1a\xe5\xd0\x7e\xa7\x4a\x71\x47\xb2\x14\x3e\x7c\xc2\xec\x47\x32\x7d\x0e\xeb\xae\x25\x8c\xcc\x39\xc0\xf3\x50\xdc\xf4\x3b\xaf\xa8\x41\x49\x4e\x2b\x0d\xbf\x86\xbf\x4f\x20\x47\xf3\x1d\x00\x00\xff\xff\x3e\x0d\x58\x54\x92\x02\x00\x00" +var _lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6b\xc2\x50\x0c\xc7\xef\xfd\x2b\x82\x87\x51\x2f\x65\x87\xb1\x83\xcc\x49\x51\xf7\x03\x45\xa5\x75\xb0\x1d\xdf\x5e\x53\x5b\x5a\x5f\x4a\x9a\xd2\x8e\xe1\xff\x3e\xea\x6b\xb5\x0c\xcc\x25\x3c\xf2\xcd\x37\xf9\xe4\xa5\xc7\x82\x58\x60\x4d\x3a\xc3\x68\x4f\x19\x9a\x12\x62\xa6\x23\xdc\x37\xeb\xed\x7c\xb5\x5c\xec\xb7\xab\xe5\xc6\x5f\x2c\x82\x65\x18\x3a\x9d\x3a\x14\x95\xa5\xe6\xb0\x63\x6a\x7e\x7a\x75\xb8\xf7\x57\xef\x9b\xd7\x5d\xb0\xfd\xfc\xea\xe5\x8e\xb0\x32\xa5\xd2\x92\x92\x71\xd5\x91\x2a\x23\x13\xf8\x78\x49\x9b\xc7\x87\x31\xfc\x3a\x0e\x00\x40\x8e\x02\x09\xe5\x11\x72\x80\xf1\x04\xee\x86\x9b\x78\xe7\xf4\x76\xae\x5a\x75\xc1\x58\x28\x46\x57\x69\x6d\xdd\xfc\x4a\x12\xdf\x3e\x5a\x4b\xe8\xa2\xc4\x3c\xf6\x2e\xb6\x30\x85\xae\xc1\xfb\x26\x66\xaa\x9f\x6e\x8e\x79\x76\x5b\x9e\x09\xdc\xaa\x87\x42\xac\x0e\xb8\x53\x92\x8c\x2f\xd3\xda\x98\xcd\xa0\x50\x26\xd5\xee\x68\x4e\x55\x1e\x81\x21\x01\x3b\x0c\x18\x63\x64\x34\x1a\x41\x08\x06\x5e\x23\xeb\x70\xb2\x68\xd8\xa0\xae\x04\x07\x10\xed\x69\x4a\x51\x19\xb2\xbd\xf4\xf4\x1f\x56\x07\x13\x9e\x25\xee\xd8\xb9\xd2\x5f\x9b\xbc\x3a\x95\x24\x62\x55\x07\x58\x2b\x8e\x7a\xa4\xcb\x6f\xd8\xdc\x2f\x72\x72\xfe\x02\x00\x00\xff\xff\xd5\xd5\xf1\x96\x10\x02\x00\x00" func lockedtokensStakerWithdraw_rewarded_tokens_lockedCdcBytes() ([]byte, error) { return bindataRead( @@ -4419,11 +4330,11 @@ func lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x13, 0xa5, 0xaf, 0x96, 0x28, 0x9e, 0xf5, 0x9, 0x1d, 0x5, 0x22, 0x6d, 0x55, 0xb5, 0x0, 0x1e, 0x47, 0xd, 0x10, 0x2b, 0x1b, 0xe6, 0x12, 0x5c, 0x4b, 0xc4, 0x95, 0x48, 0xf8, 0x64, 0x8c, 0x43}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0xae, 0xac, 0xc7, 0x74, 0x93, 0x11, 0x75, 0xd9, 0x15, 0x9f, 0x5d, 0x7e, 0x5d, 0xa1, 0xd1, 0x7b, 0x82, 0x30, 0xf4, 0xb2, 0xda, 0xf6, 0xce, 0x9f, 0x28, 0xd0, 0xa9, 0xa0, 0xd5, 0x91, 0x1b}} return a, nil } -var _lockedtokensStakerWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6b\xe3\x40\x0c\x85\xef\xf3\x2b\x84\x0f\xc1\x86\xc5\xa7\x65\x0f\x61\xb3\x61\x5b\x08\x3d\x14\x1a\x9a\xa6\x3d\x2b\x63\x39\x36\x71\x46\x46\x96\x49\x4a\xc9\x7f\x2f\x9e\x99\x26\x4e\x4b\x8f\x9d\xcb\x80\x46\x7a\xef\xd3\xb3\xeb\x7d\xcb\xa2\x70\xcf\x76\x47\xc5\x13\xef\xc8\x75\x50\x0a\xef\x21\x19\x97\x12\x13\xfb\x16\xbd\xdb\xd6\x9b\x86\x7c\x39\x36\x5e\xd5\x12\x63\x54\xd0\x75\x68\xb5\x66\x97\xe2\x9e\x7b\xa7\x53\x58\x2f\xea\xe3\x9f\xdf\x19\xbc\x19\x03\x00\xd0\x90\x42\xc5\x4d\x41\xf2\x48\xe5\x14\xb0\xd7\x2a\x1d\xfb\xe5\xfe\x7a\x68\x49\x70\x90\xe9\x7e\x5d\x1b\xe7\x2f\xb5\x56\x85\xe0\x21\x83\xc9\xd7\xb1\x3b\x2f\x1c\x8c\x5a\xa1\x16\x85\x52\xb4\x36\x80\x78\xab\x1b\x16\xe1\xc3\x33\x36\x3d\x65\x30\xf9\x1f\xde\x06\x38\x88\xa7\xa3\xa6\xcc\xcf\x80\x30\x83\x38\x9f\x77\xca\x82\x5b\xca\x37\x5e\xe1\xef\x4f\x80\xff\x4b\x87\x58\xa7\xf0\xdd\xfb\x2a\x20\x2c\x51\xab\xec\x0c\x3c\x9c\xf9\x1c\x5a\x74\xb5\x4d\x93\x5b\xee\x9b\x02\x1c\x2b\x04\x4e\x10\x2a\x49\xc8\x59\x02\x65\x18\x69\x25\x41\xe1\x14\xc2\xa2\x23\xd9\x5e\x69\x94\xc3\xf0\x9d\x3a\xc5\x1d\xc9\x52\xf8\xf8\x0a\xb3\x4f\xc9\xc4\x1c\x56\xbe\x25\xcd\xcc\x25\xc0\xcb\x50\x7e\x88\x3b\xaf\x9d\xaf\xc6\x95\xce\xbf\x46\xb8\x3f\x40\x4e\xe6\x3d\x00\x00\xff\xff\x11\x39\xe8\x7a\x92\x02\x00\x00" +var _lockedtokensStakerWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4f\x6b\xf2\x40\x10\xc6\xef\xf9\x14\x83\x87\x97\x78\x09\xef\xa1\xf4\x20\xb5\x12\xd4\xfe\x41\x51\x31\x0a\xed\x71\xbb\x99\x98\x25\x71\x27\x4c\x26\x98\x52\xfc\xee\x25\xd9\xa8\xa1\xe0\x5c\x86\x64\x9e\x79\x66\x7e\xb3\xe6\x58\x10\x0b\x2c\x49\x67\x18\xef\x28\x43\x5b\x42\xc2\x74\x84\xff\xf5\x72\x3d\x5d\xcc\x67\xbb\xf5\x62\xbe\x0a\x67\xb3\xed\x3c\x8a\xbc\x4e\x1d\x89\xca\x8c\x3d\x6c\x98\xea\xef\x8b\x3a\xda\x85\x8b\xf7\xd5\xeb\x66\xbb\xfe\xf8\xbc\xc8\x3d\x61\x65\x4b\xa5\xc5\x90\xf5\xd5\x91\x2a\x2b\x23\xd8\xbf\x98\xfa\xf1\x61\x08\x3f\x9e\x07\x00\x90\xa3\x40\x4a\x79\x8c\xbc\xc5\x64\x04\xff\xfa\x9b\x04\x6d\x7a\x6b\xab\x4e\x5d\x30\x16\x8a\xd1\x57\x5a\x3b\xb7\xb0\x92\x34\x74\x1f\x8d\x25\x74\x51\x62\x9e\x04\x57\x5b\x18\x43\xd7\x10\x7c\x11\x33\x9d\x9e\xee\x8e\x79\xf6\x1b\x9e\x11\xdc\xab\x47\x42\xac\x0e\xb8\x51\x92\x0e\xaf\xd3\x9a\x98\x4c\xa0\x50\xd6\x68\x7f\x30\xa5\x2a\x8f\xc1\x92\x80\x1b\x06\x8c\x09\x32\x5a\x8d\x20\x04\x3d\xaf\x81\x73\x38\x3b\x34\xac\x51\x57\x82\x3d\x88\xe6\x34\xa5\xa8\x0c\xd9\x5d\x7a\xfc\x07\xab\x83\x89\x5a\x89\x3f\xf4\x6e\xf4\xb7\xa6\xe0\x64\x24\x8d\x59\x9d\xf6\xb6\xfd\xdb\x21\x5d\x5f\xc3\xe5\xcb\x22\x67\xef\x37\x00\x00\xff\xff\xfa\xe1\x41\xb8\x10\x02\x00\x00" func lockedtokensStakerWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4439,11 +4350,11 @@ func lockedtokensStakerWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0x46, 0x2b, 0xa7, 0xad, 0xfb, 0xcd, 0x79, 0xce, 0xdd, 0xec, 0x78, 0xff, 0x7c, 0x42, 0x3d, 0x6e, 0x19, 0xe, 0x4c, 0x1f, 0x75, 0xdb, 0xd5, 0x69, 0xe9, 0x9c, 0xc8, 0x54, 0xbd, 0x4f, 0xcb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0xec, 0x5f, 0x9a, 0x23, 0xd5, 0x31, 0x36, 0x95, 0x2c, 0xc0, 0x94, 0x2c, 0x22, 0xb0, 0x1e, 0xdd, 0x3, 0x79, 0xff, 0x8e, 0x9c, 0xf3, 0x37, 0xf, 0xb3, 0xc2, 0x8d, 0xb4, 0x76, 0xaa, 0x4f}} return a, nil } -var _lockedtokensUserDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x92\xbf\x6e\xdc\x30\x0c\xc6\x77\x3f\x05\xe1\xe1\x60\x0f\x55\x96\xa2\xc3\x21\x6d\xd0\x16\x08\x3a\x74\x28\xda\x34\x9d\x19\x99\x8e\x85\x93\x45\x43\xa2\xce\x57\x14\xf7\xee\x85\xe4\x3f\x38\x0f\x1e\xa2\x45\x30\xf9\x91\xfc\x7d\xb4\x4c\x3f\xb0\x17\x78\x8c\xee\xd5\xbc\x58\x7a\xe2\x13\x39\x68\x3d\xf7\x50\x6e\x62\x65\xb1\x28\x2d\x8f\x1b\xd5\xf2\xbd\x2a\xbe\xb3\x3e\x51\x93\x63\x61\x16\xdd\x86\xca\xa2\x10\x8f\x2e\xa0\x16\xc3\xae\xc2\x9e\xa3\x93\x23\xfc\x7e\x34\x97\x0f\xef\x6b\xf8\x57\x14\x00\x00\x96\x04\x3a\xb6\x0d\xf9\x9f\xd4\x1e\xe1\x70\xdb\x41\xe5\xeb\x5b\xce\xae\xe2\x33\x46\x2b\x59\x8b\x51\xba\x6a\x03\xaf\xfe\x18\xe9\x1a\x8f\x63\x0d\x87\x95\x57\x3d\xa7\x8a\x69\xda\xe0\x69\x40\x4f\x15\x6a\x2d\x73\x83\x2f\xec\x3d\x8f\xcf\x68\x23\xd5\x70\xf8\xac\x75\xc2\x4c\x78\x30\x9f\x40\xb6\x55\x2b\x22\x7c\x84\x54\xac\x82\xb0\xc7\x57\x52\x2f\xb9\xfc\x7e\x97\xfb\x53\x95\x36\x73\x84\xbd\xfc\xaf\xa9\xcf\x0f\x94\xae\x5e\x47\xa6\xf3\xf0\x00\x03\x3a\xa3\xab\xf2\xa9\x23\x18\xbc\xe9\xd1\xff\x85\x18\xc8\x27\x80\x04\x09\x0d\x53\x00\xc7\x02\x1d\x9e\x09\xd0\x01\x86\xc0\xda\xa0\x50\x03\x36\xcf\x5b\xa4\x65\x5d\x6c\xfd\x2c\x5b\xdc\xb1\xf3\xa6\xd5\x2e\x16\xef\xe6\x26\x77\xed\x92\xcf\xe9\x3d\x5b\x5f\x39\xda\x26\xe3\x4f\x43\x21\x95\x81\xe4\x27\x97\xf1\xc0\x53\x5b\x4e\xd5\xd7\x09\x9f\x2e\xa4\xa3\xd0\xee\xcf\x51\x0d\x0d\x1c\x8c\xcc\x40\xf7\xef\x36\x5e\xd5\x38\x5b\x58\xdf\xe2\x74\xd7\xcb\x8c\x6b\xf1\x3f\x00\x00\xff\xff\x06\xda\x11\x7f\x26\x03\x00\x00" +var _lockedtokensUserDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xcd\x6a\xeb\x30\x10\x85\xf7\x7e\x8a\xc1\x8b\x8b\xbd\xb8\x4e\x17\xa5\x0b\x93\x36\x84\xfc\x50\x48\x68\x4a\x92\xb6\x6b\x45\x1e\xc7\x26\x8a\xc6\xc8\xe3\x3a\x50\xf2\xee\x45\x56\x6c\xe2\x96\x40\xb5\x11\x9e\x39\x9a\xf3\x1d\x59\xf9\xb1\x20\xc3\x30\xaf\xf4\x3e\xdf\x29\xdc\xd2\x01\x35\xa4\x86\x8e\xe0\xf7\x6a\xbe\xd7\x2a\x15\xd5\x3d\x55\xfb\xdd\x29\x96\x24\x0f\x98\x34\xb5\xd2\x89\xee\x4e\xcb\xd5\x64\x31\x9b\x6e\x57\x8b\xd9\xcb\x78\x3a\x5d\xcf\x36\x1b\xcf\x63\x23\x74\x29\x24\xe7\xa4\x03\x71\xa4\x4a\x73\x0c\x6f\xf3\xfc\xf4\x70\x1f\xc2\x97\xe7\x01\x00\x28\x64\xc8\x48\x25\x68\xd6\x98\xc6\xf0\xef\x7a\x74\xd4\x6c\xcf\x4d\xb7\x13\x7f\x8a\x4a\xb1\xd3\x76\x60\xd1\xbb\x2d\xba\x81\x85\xc1\x42\x18\x0c\x84\x94\x1c\xc3\xb8\xe2\x6c\x2c\xa5\xb5\xb6\x96\x70\x59\x25\xaa\x34\xea\x6c\xe1\x11\xac\x3a\xda\x91\x31\x54\x0f\x6f\x32\x3c\x05\x36\x6b\x0c\xb7\xfa\x1b\x26\x23\xf6\xf8\x2a\x38\x0b\x3b\x2b\xbb\x46\x23\x28\x84\xce\x65\xe0\x4f\xa8\x52\x09\x68\x62\x70\x66\x20\xc0\x60\x8a\x06\xb5\x44\x60\x82\xab\x69\x7e\xe8\xf5\x79\xdb\xe4\x3f\x70\x45\xc5\x59\xd0\xfb\x93\xd1\x47\xce\x59\x62\x44\x2d\x76\x0a\xc3\x5f\xf7\xd4\xc6\x18\x94\x8e\x77\x90\xb6\xfd\xa6\xfd\x67\x74\x7b\x0c\xb8\x79\x28\x0d\x9a\x4d\xe2\xbb\xd3\x67\x87\x8e\x27\x94\x15\xe3\xcd\x8b\x8f\x12\x2c\xa8\xcc\xf9\x02\x34\xfc\xdf\xcb\x19\xd5\x97\x18\xdd\xdb\x71\x7b\xd8\x7a\x9c\xbd\xef\x00\x00\x00\xff\xff\x39\x77\xf1\x16\xdc\x02\x00\x00" func lockedtokensUserDeposit_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4459,11 +4370,11 @@ func lockedtokensUserDeposit_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/deposit_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0xa5, 0xe5, 0x96, 0x71, 0x49, 0x43, 0x2c, 0x42, 0xb0, 0x75, 0x57, 0xe2, 0x55, 0x9a, 0x95, 0xfe, 0xf3, 0xec, 0xdf, 0x91, 0x6e, 0x41, 0x44, 0xc, 0x5b, 0x1, 0x46, 0x8e, 0x83, 0xab, 0xd7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd7, 0x2f, 0x21, 0x5e, 0x76, 0xce, 0x50, 0x65, 0x5, 0x3e, 0x4, 0xf7, 0x1f, 0xd2, 0x87, 0x2b, 0xaa, 0x17, 0x7a, 0xa7, 0x9b, 0x16, 0x7, 0xcc, 0xb4, 0xb3, 0x85, 0xf5, 0x6e, 0xfd, 0x31, 0x8c}} return a, nil } -var _lockedtokensUserGet_locked_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x4e\xc3\x30\x0c\x86\xef\x79\x8a\x5f\x3d\xa0\xf6\xd2\x07\x40\xc0\x34\x71\x01\x69\x87\x09\xf1\x02\x69\xe2\x8c\x68\x69\x5c\x39\x8e\x38\x20\xde\x1d\xad\x1d\x65\x03\x7c\x49\x64\xf9\xfb\xfe\x38\x71\x9c\x58\x14\x3b\x76\x47\xf2\xaf\x7c\xa4\x5c\x10\x84\x47\x34\x97\xad\xc6\x18\xeb\x1c\x95\xd2\xda\x94\x3a\x84\x9a\x31\xda\x98\x5b\xeb\x1c\xd7\xac\xb7\xd8\x7a\x2f\x54\x4a\xb7\xde\xf0\x61\x0c\x00\x24\x52\xa4\xd9\xb4\x5d\x66\x9f\x73\xe0\x17\x0a\xb8\xc7\x81\xf4\xdc\xfb\xf6\x74\x33\x72\xaa\xde\xd9\xc9\x0e\x31\x45\x8d\x54\xfa\x81\x45\xf8\xfd\xee\xe6\xf2\x49\xfd\x7c\x3c\x71\xf2\x24\x0f\xed\x0a\x9e\xea\x6a\x6c\xf7\x3b\x7c\x5f\x87\x14\xdd\xde\xea\xdb\x0a\xfd\xe4\x6e\x36\x98\x6c\x8e\xae\x6d\x1e\xb9\x26\x8f\xcc\x8a\x25\x1d\x16\x42\x81\x84\xb2\x23\x28\x63\x9a\x35\xf8\xa3\x6f\xba\x65\x71\x21\xad\x92\xff\xdd\xbd\x3f\x90\x5e\x71\xe7\x3f\x6b\x3b\xf3\x69\xbe\x02\x00\x00\xff\xff\x5f\x74\xcf\x97\x91\x01\x00\x00" +var _lockedtokensUserGet_locked_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x50\xdd\x4a\xc3\x30\x14\xbe\xcf\x53\x7c\xec\x42\xd2\x9b\xe1\xb5\xa8\xa3\xb4\x05\x65\xc5\x8d\x6d\x2f\x90\xa6\xa7\x33\x2c\xcd\x29\x69\x8a\xca\xd8\xbb\x4b\xdb\x59\x37\x15\xcf\x4d\xc2\x39\xdf\x1f\x9f\xa9\x1b\xf6\x01\x39\xeb\x03\x95\x3b\x3e\x90\x6b\x51\x79\xae\x71\xfb\x9e\xaf\x92\x65\x96\xee\x56\xcb\xec\x25\x4e\xd3\x4d\xb6\xdd\x0a\xa1\xb4\xa6\xb6\x95\xca\xda\x08\x55\xe7\x50\x2b\xe3\xa4\xd2\x9a\x3b\x17\xee\x10\x97\xa5\xa7\xb6\x8d\xa6\x1f\x8e\x42\x00\x80\xa5\x00\x3b\x58\xc4\x23\xf6\xd9\x55\xbc\xa1\x0a\x0f\xd8\x53\x38\xef\xbe\x74\xa2\x81\xd2\xcf\x7c\x4f\x21\x51\x8d\x2a\x8c\x35\xe1\xe3\xfe\xe6\x32\xe5\x7c\x78\x9e\xd8\x96\xe4\x8f\x57\x87\xfc\xa7\xd1\xe9\x51\x4e\x92\xfd\xfc\x8f\x5e\x77\x85\x35\x7a\xad\xc2\xeb\x44\xba\x48\x54\xb0\xf7\xfc\x26\xbf\x37\x8b\x05\x1a\xe5\x8c\x96\xb3\x84\x3b\x5b\xc2\x71\xc0\x08\x82\x82\xa7\x8a\x3c\x39\x4d\x08\x8c\x66\x10\xc6\x2f\xc3\x59\x34\x96\xe4\x29\x74\xde\xfd\xd9\x53\x5f\xc4\x15\xef\xdc\xaf\x8c\xc4\x49\x7c\x06\x00\x00\xff\xff\x2f\x7c\x15\xe6\xc3\x01\x00\x00" func lockedtokensUserGet_locked_account_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -4479,11 +4390,11 @@ func lockedtokensUserGet_locked_account_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_locked_account_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x1c, 0x7f, 0x55, 0xaa, 0x4, 0xd5, 0x1d, 0x5b, 0xbd, 0xdf, 0x3f, 0x2f, 0xe4, 0x4f, 0x2f, 0x22, 0x93, 0x27, 0x85, 0x4b, 0x23, 0x56, 0xaf, 0x5e, 0xc5, 0xd, 0x28, 0x5f, 0xee, 0x60, 0x44}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x56, 0xdc, 0xaa, 0xd9, 0xa5, 0x1a, 0x28, 0x4d, 0x49, 0xc1, 0xd9, 0x51, 0x1f, 0xd2, 0x7f, 0x54, 0xcb, 0x5d, 0xf8, 0x7a, 0xdc, 0xaf, 0x8f, 0xcb, 0x76, 0xf2, 0x35, 0x42, 0x8f, 0xcf, 0x5, 0xc8}} return a, nil } -var _lockedtokensUserGet_locked_account_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4a\xc3\x40\x10\x86\xef\xfb\x14\x3f\x39\x48\x72\xc9\x49\x3c\x14\xb5\x54\x41\x14\x7a\x28\xa2\x0f\x30\xd9\x4c\xea\xd2\xcd\x4e\x98\x9d\xa0\x20\xbe\xbb\x34\xd1\xda\xaa\x73\x59\x18\xe6\xfb\xfe\xfd\x43\x3f\x88\x1a\xd6\xe2\x77\xdc\x3e\xc9\x8e\x53\x46\xa7\xd2\xa3\x38\x5e\x15\xce\x91\xf7\x9c\x73\x49\x31\x56\xe8\xc6\x84\x9e\x42\x2a\xc9\x7b\x19\x93\x2d\xb0\x6a\x5b\xe5\x9c\xab\x05\x9e\xef\xc2\xdb\xc5\x39\xde\x9d\x03\x80\xc8\x86\x38\x89\x56\xf3\xe9\x43\xea\xe4\x91\x3b\x5c\x61\xcb\xf6\xb5\xfb\xd6\x54\x13\xb2\x9f\xda\xd3\x40\x4d\x88\xc1\x02\xe7\xba\x11\x55\x79\xbd\x3c\x3b\xfe\x51\x3d\x3d\xf7\x12\x5b\xd6\xeb\xf2\x00\xee\xe7\xe4\x6c\xfd\x3b\x7c\x33\x36\x31\xf8\x0d\xd9\xcb\x01\xfa\xc9\x5d\x2e\x31\x50\x0a\xbe\x2c\x6e\x65\x8c\x2d\x92\x18\xe6\x74\x10\x94\x3b\x56\x4e\x9e\x61\x82\x61\xd2\xe0\x8f\xbe\xa8\xe6\xe2\xca\x36\x6a\xfa\xb7\x7b\xbd\x65\x3b\xe1\x6e\x28\x52\xf2\x5c\x56\xee\xc3\x7d\x06\x00\x00\xff\xff\xf4\x54\xe0\xd6\x90\x01\x00\x00" +var _lockedtokensUserGet_locked_account_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x50\xdd\x4e\xc2\x30\x18\xbd\xef\x53\x9c\x70\x61\xba\x1b\xe2\x85\xf1\x82\xa8\x04\xd9\x8c\x86\x45\x08\xe0\x03\x74\xdd\x37\x6c\xe8\xfa\x2d\x5d\x17\x31\x84\x77\x37\xdb\x14\x41\x8d\xdf\x4d\x93\xd3\xf3\x97\x63\xca\x8a\x7d\x40\xca\x7a\x4b\xf9\x9a\xb7\xe4\x6a\x14\x9e\x4b\x5c\xee\xd2\xf9\x74\x96\xc4\xeb\xf9\x2c\x79\x9e\xc4\xf1\x32\x59\xad\x84\x50\x5a\x53\x5d\x4b\x65\x6d\x84\xa2\x71\x28\x95\x71\x52\x69\xcd\x8d\x0b\x23\x4c\xf2\xdc\x53\x5d\x47\x23\xbc\x3c\x98\xdd\xf5\x15\xf6\x42\x00\x80\xa5\x00\xdb\x25\x4c\x7a\xea\x93\x2b\x78\x49\x05\x6e\xb1\xa1\xf0\x89\x7d\xd9\x44\x9d\xa4\xbd\xe1\x86\xc2\x54\x55\x2a\x33\xd6\x84\xf7\x9b\x8b\xd3\x92\xc3\xee\x79\x64\x9b\x93\xdf\x9f\x7d\xa4\x3f\x83\x0e\x77\xf2\x68\xd9\xde\xff\xec\x45\x93\x59\xa3\x17\x2a\xbc\x1e\x45\x27\x8d\x32\xf6\x9e\xdf\xe4\x37\x32\x1e\xa3\x52\xce\x68\x39\x98\x72\x63\x73\x38\x0e\xe8\x49\x50\xf0\x54\x90\x27\xa7\x09\x81\x51\x75\xc6\xf8\x15\x38\x88\xfa\x91\x3c\x85\xc6\xbb\x3f\x77\x6a\x87\x38\xd3\xdd\x2b\xab\x9c\x26\x19\x89\x83\xf8\x08\x00\x00\xff\xff\xab\x67\x8a\x24\xc2\x01\x00\x00" func lockedtokensUserGet_locked_account_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -4499,11 +4410,11 @@ func lockedtokensUserGet_locked_account_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_locked_account_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x2d, 0x23, 0x62, 0x8e, 0xdd, 0x89, 0x34, 0xc5, 0x3e, 0x78, 0xc5, 0xcd, 0x35, 0x2e, 0xcf, 0xa3, 0x3a, 0xed, 0x97, 0x92, 0x6e, 0x8, 0x74, 0x90, 0x9d, 0x36, 0x9d, 0x94, 0xe3, 0xc0, 0x6d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0xc8, 0x1e, 0xe7, 0x93, 0x4c, 0x71, 0xeb, 0x1d, 0x61, 0xf8, 0x78, 0xe9, 0x3c, 0xf7, 0x14, 0xd3, 0x8a, 0x73, 0x18, 0x2c, 0x6d, 0x76, 0xbd, 0x7c, 0x54, 0xbc, 0x6, 0x44, 0x2, 0x3d, 0xdc}} return a, nil } -var _lockedtokensUserGet_multiple_unlock_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x6b\xfb\x30\x10\xc5\x77\x7d\x8a\x87\x87\x3f\xf6\xe2\xe9\x4f\x87\xd0\x34\x84\x42\x69\x21\x43\x28\xcd\x14\x32\x28\xf2\x39\x15\x91\x75\xe6\x24\xb7\x85\x90\xef\x5e\x2c\xc7\x6d\xdc\xf6\x16\x89\x7b\x77\x4f\x3f\x3d\xdb\xb4\x2c\x11\x2b\x36\x47\xaa\x5e\xf8\x48\x3e\xa0\x16\x6e\x90\x5d\xb7\x32\xa5\xb4\x31\x14\x42\xae\x9d\x2b\x50\x77\x1e\x8d\xb6\x3e\xd7\xc6\x70\xe7\x63\x98\x61\xbb\xac\x2a\xa1\x10\x76\xc5\x0c\xdb\xcd\x83\xfd\xb8\xf9\xbf\xc3\x49\x29\x00\x78\xd3\x02\x67\x1b\x9b\xe6\x46\x6d\x8e\xed\x6e\x90\x6b\x16\x5c\x8c\x60\xfd\x78\x0d\x38\x25\xb5\x2f\x47\x11\x2e\xe1\x2c\x07\xf1\xc9\xd7\xfc\x4c\x35\xe6\x38\x50\xbc\xf4\x46\x98\xe2\x6b\xad\xaf\xd2\xe8\x56\xef\xad\xb3\xd1\x52\x28\xf7\x2c\xc2\xef\xb7\xff\xae\xff\x56\xa6\xe3\x91\x5d\x45\x72\x97\x4f\x96\xfb\x9a\x8c\xae\x7e\x42\xac\xbb\xbd\xb3\x66\xad\xe3\xeb\x64\x71\xca\xb0\x58\xa0\xd5\xde\x9a\x3c\xbb\xe7\xce\x55\xf0\x1c\x31\x90\x40\x43\xa8\x26\x21\x6f\x08\x91\xd1\x26\x3b\xfc\x7a\x26\x2b\xd4\x77\x18\x29\xc9\x52\xb7\x2d\xf9\x2a\xff\x2b\x96\xf2\x40\x71\xe3\x7b\x65\xd5\xcf\xe6\xc5\x80\x73\x1e\x3c\x84\x62\x27\xfe\x62\xa3\xce\xea\x33\x00\x00\xff\xff\x76\x76\x5f\x52\x02\x02\x00\x00" +var _lockedtokensUserGet_multiple_unlock_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcf\x6e\xf2\x30\x10\xc4\xef\x7e\x8a\x11\x87\x4f\xce\x05\x7d\x87\xaa\x07\x54\x8a\x10\x50\xb5\x22\x2a\x88\x3f\x27\xc4\xc1\x38\x1b\x6a\xe1\xd8\x91\xed\xb4\x54\x88\x77\xaf\x92\x90\xb6\xa1\x55\xf7\x92\x68\x7f\xbb\xb3\xe3\x51\x59\x6e\x5d\x40\x6c\xe5\x81\x92\x95\x3d\x90\xf1\x48\x9d\xcd\xf0\xff\x18\xcf\x46\xd3\xc9\x78\x35\x9b\x4e\x9e\x87\xe3\xf1\x62\xb2\x5c\x32\x26\xa4\x24\xef\xb9\xd0\x3a\x42\x5a\x18\x64\x42\x19\x2e\xa4\xb4\x85\x09\xbe\x87\xcd\x30\x49\x1c\x79\xbf\x8d\x7a\xd8\xac\x1f\xd4\xf1\xf6\x66\x8b\x13\x63\x00\xf0\x2a\x1c\xb4\xca\x54\x35\xd7\xb0\x3e\x36\xdb\x1a\xa7\xd6\xe1\x22\x04\x65\x9a\x5f\x8f\x53\x45\xcb\xd2\x14\xa0\x2b\x9f\xc3\x1a\x3e\x99\xd4\x2e\x28\x45\x1f\x7b\x0a\x97\x5e\x63\x26\xfa\x5c\x2b\xab\xbb\xa7\x30\x12\xb9\xd8\x29\xad\xc2\xfb\xdd\xbf\xef\xcf\xed\x56\x9f\x47\xab\x13\x72\xa7\x16\x88\xaf\x8f\x9d\xef\x79\x4b\xb6\xac\xbf\x37\xe6\xc5\x4e\x2b\x39\x17\xe1\xa5\xb5\x78\xe5\x6e\x67\x9d\xb3\x6f\xbc\xdd\x1d\x0c\x90\x0b\xa3\x24\xef\x8c\x6c\xa1\x13\x18\x1b\x50\x0f\x42\xc0\x51\x4a\x8e\x8c\x24\x04\x8b\xbc\x3a\x82\x1f\xc7\x3b\x11\xfb\x0a\xaf\x4a\xbe\x2b\xf2\x9c\x4c\xc2\x7f\x8b\xb1\xcc\x68\x6d\x4a\x12\x97\xb3\x3c\xaa\xed\x9c\x6b\x0d\x47\xa1\x70\xe6\x22\xc3\xce\xec\x23\x00\x00\xff\xff\x8b\xae\xf9\x70\x38\x02\x00\x00" func lockedtokensUserGet_multiple_unlock_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -4519,11 +4430,11 @@ func lockedtokensUserGet_multiple_unlock_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_multiple_unlock_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0xe, 0xa9, 0x44, 0x29, 0x58, 0xa8, 0xea, 0x68, 0x48, 0xe8, 0xbc, 0x31, 0xbe, 0x7d, 0xc4, 0x5e, 0x8c, 0xb8, 0xaa, 0x3e, 0x37, 0xdb, 0xc9, 0xe, 0x63, 0xbd, 0xc1, 0xcf, 0x8b, 0x36, 0x1a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0x23, 0x83, 0xdb, 0xd, 0x86, 0xd9, 0xf5, 0x7f, 0x57, 0xa6, 0xf0, 0xdf, 0x83, 0xe8, 0xc0, 0x6, 0x62, 0xe2, 0xdb, 0x7f, 0x27, 0x86, 0xb1, 0x83, 0x30, 0x56, 0xe2, 0x65, 0x4e, 0x29, 0xe0}} return a, nil } -var _lockedtokensUserGet_total_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x4d\x6f\xdb\x38\x10\xbd\xeb\x57\x0c\x72\xd8\x95\xb0\x86\x9c\xc3\xa2\x07\xa3\x0e\x90\x42\x48\x6b\x20\x68\x82\xd4\x6d\xcf\x94\x48\xd9\x44\x68\x52\x20\xa9\xa4\x45\xe0\xff\x5e\x88\x14\x69\x52\x96\x9c\xaf\xea\xe0\x0f\xf2\xcd\xbc\xc7\x79\xc3\x11\xdd\x35\x42\x6a\xb8\x6a\xf9\x86\x96\x8c\xac\xc5\x3d\xe1\x50\x4b\xb1\x83\xb3\x68\xed\x2c\x71\x48\x26\x1e\x23\x94\xfb\x1f\x21\x56\xc5\x1a\x95\x8c\x7c\xd3\xe8\x9e\xf2\x4d\x00\x8d\x37\x7c\xcc\xb5\xa8\xee\x09\x36\x79\x54\x8f\x0e\x97\xce\x92\x64\x3e\x87\xf5\x96\x2a\x50\x95\xa4\x8d\x86\x0d\xd1\x0a\xf4\x96\xc0\xfa\x66\x7d\x79\x0d\xbc\xdd\x95\x44\x82\xa8\xe1\xea\xfa\xe6\x27\x20\x0e\xa8\xaa\x44\xcb\x35\x88\x47\xae\x66\x80\x2a\x29\x94\x82\x96\x33\x93\x75\x06\xee\x1b\x71\x0c\xca\x8a\xc9\x0d\xc9\x25\xc6\x0a\xda\xa6\xcb\xad\x48\x9f\x57\x2d\xcc\x96\xb6\xf2\x28\x07\x2e\xe4\x0e\x31\xc7\x71\x6a\xcf\x25\x3f\x89\xc1\x84\x91\x0d\xd2\x47\x30\xb5\x45\x92\xe0\x71\x9a\x78\x6f\x9c\x66\x80\x09\x68\x92\x04\x55\x15\x51\x2a\x45\x8c\x65\x50\xb7\x1c\x76\x88\xf2\x14\x61\x2c\x89\x52\x8b\xae\x0a\xdd\x8f\x6c\x01\xdf\xaf\xe8\xaf\x0f\xff\xc3\x53\x92\x00\x00\x3c\x20\x09\xaa\xdd\xc1\x12\xce\xf3\x73\xbb\xc4\x88\xf6\x0c\xcb\xce\x97\x4b\xfb\xc7\x25\xcb\x2c\x8c\xd6\x06\xf9\x80\x5a\xa6\xef\x48\x0d\x4b\x17\x94\x57\xa8\x41\x25\x65\x54\x53\xa2\xf2\x52\x48\x29\x1e\x3f\xfe\xe3\xdb\x2a\xff\xd1\x45\x5c\xa4\xf3\xa6\x2d\x19\xad\xe6\xb5\xdb\xf8\x84\x18\xe2\x15\xc9\xe0\xc9\xe4\xef\x1e\xab\xac\xfb\xfc\xcf\x13\xe5\xa5\xc5\x19\xd0\xde\x6a\x99\xcf\xe1\x33\xd1\xb6\x50\xd0\xef\xdb\xae\xeb\x3a\xca\x35\x89\x13\xf8\xaf\x02\x2e\x30\x71\x25\x86\x46\x08\xa6\xfc\xd1\x45\xa3\xa9\xe0\x88\x7d\x15\xd8\x74\x35\x91\xd1\xe9\xbc\xb6\xf1\x63\x3e\x1d\xdf\x89\xfc\x90\xe9\xd6\x1c\x79\x7f\x91\xfa\x2c\xdd\xf3\x82\x90\x5b\xa4\xb7\x3e\x26\x36\x80\x0f\x74\x8e\xeb\x3f\xd4\xd4\xc5\xac\x78\x2d\x60\x39\x45\xde\xed\xa6\x06\x56\x2c\x62\x8a\x9c\xe2\x6c\xd4\x20\x97\x34\xd7\x42\x23\x66\xef\xf9\x8a\xdf\x91\x4a\x48\x9c\x66\xef\xb2\xab\x6f\x74\x21\x9f\xf1\xac\x70\xb8\xbf\x61\x99\x4f\x36\xee\x5a\xd8\xbf\x7d\x98\x8f\x98\xb0\x0a\xc7\xf2\x46\x55\xc7\x46\xf9\x88\x69\xb7\x8a\x10\x12\x4b\x74\xfe\x85\xbc\xb9\x5d\x9c\x45\xc0\x03\xcd\x10\x4d\x71\x70\x96\x31\xd7\x23\x85\x53\xd6\x8f\x99\xbf\x25\x10\xfb\x0c\xb6\xa0\xe0\x4d\xfa\x7d\xe4\xaf\x7d\x85\xf4\xf3\xa8\x23\x7c\x8d\xcf\xe1\xfb\x27\x37\x5f\x5f\x04\xc3\x44\x0e\x7c\x8d\x60\x47\x84\xcf\x5e\x47\x36\x2e\xf1\xe4\x09\x0e\x9e\xdb\xf7\xd5\x58\x71\xc2\xa9\x37\xf4\x60\x8c\x33\xdf\x10\x1d\x91\xf5\xe3\x35\xed\xe5\x0e\xd8\xdc\x2d\x14\x35\x20\xc6\xcc\xd2\xf1\x8c\x3c\xdc\xd1\x58\x9c\x4f\x18\x8c\xa4\x55\x01\xcb\x49\x61\x66\xc2\x14\x69\x38\xea\xdf\x31\x9a\x56\x45\x16\xa5\x79\xe5\x50\x0a\x7a\xf3\xf9\xa2\x4c\x4c\xa2\x97\x56\x26\xb8\x68\x27\xca\x73\xb8\xd2\xc7\x35\x7a\x69\x89\x7d\x8e\x89\x5a\xbf\x79\xc2\xc4\x95\x9f\x4d\xcc\x8e\xa1\x27\x6f\x1a\x1b\xc1\xb3\x4f\xe2\x5f\xbd\x61\x92\xe8\x56\xf2\x2e\x67\xb2\x4f\xfe\x04\x00\x00\xff\xff\xff\xc7\x1b\xb5\xfb\x0a\x00\x00" +var _lockedtokensUserGet_total_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x55\x5d\x6f\xda\x3c\x14\xbe\xcf\xaf\x38\xea\x45\xdf\x44\x2f\x0a\xbd\x98\x76\x81\x4a\x25\xd6\xb4\x1b\x2a\x2a\x55\xcb\xb6\x6b\x93\x38\x60\xd5\xd8\xc8\x76\xda\x4e\x88\xff\x3e\x39\x8e\x8d\x0d\x09\x65\x6d\x2e\xf8\xf0\x79\xce\xd7\xf3\x1c\x9f\x90\xd5\x9a\x0b\x05\xb7\x15\x5b\x90\x39\xc5\x33\xfe\x8c\x19\x94\x82\xaf\xe0\x2c\x38\x3b\x8b\x2c\x92\xf2\xd7\x00\x65\xff\x07\x88\x71\x36\x43\x73\x8a\x9f\x14\x7a\x26\x6c\xe1\x41\x43\x83\xf3\x99\xf0\xfc\x19\x17\x75\x1c\x69\xd0\x17\x6f\x93\xe9\xf5\xdd\x4d\x36\x9b\xde\xdd\xdc\x8f\xb2\xec\xf1\xe6\xe9\x29\x8a\xfa\x7d\x98\x2d\x89\x04\x99\x0b\xb2\x56\xb0\xc0\x4a\x82\x5a\x62\x98\x4d\x67\xa3\x09\xb0\x6a\x35\xc7\x02\x78\x09\xb7\x93\xe9\x6f\x40\x0c\x50\x9e\xf3\x8a\x29\xe0\xaf\x4c\xf6\x00\xe5\x82\x4b\x09\x15\xa3\x75\xba\x1e\xd8\x6f\xc4\x0a\x90\xa6\xa4\xb4\x4e\x32\x2a\x0a\x09\xd5\x5a\xc7\x96\xb8\x89\x2b\x07\xb5\x49\x99\x22\x09\x03\xc6\xc5\x0a\x51\x9b\xe3\x98\xcd\x06\x3f\x8a\x29\x30\xc5\x0b\xa4\x0e\x60\x72\x89\x04\x2e\xda\xd3\x84\xb6\xf6\x34\x7b\x18\x2f\x4d\x14\xa1\x3c\xc7\x52\xc6\x88\xd2\x04\xca\x8a\xc1\x0a\x11\x16\xa3\xa2\x10\x58\xca\x81\x66\x41\xff\x48\x06\xf0\xf3\x96\xbc\x7d\xfd\x02\x9b\x28\x02\x00\x78\x41\x02\x64\xb5\x82\x21\x5c\xa4\x17\xe6\x88\x62\xe5\x32\x0c\xb5\x2e\x23\xf3\xc7\x06\x4b\x0c\x8c\x94\x35\xf2\x05\x55\x54\x3d\xe2\x12\x86\xd6\x29\x5d\x60\x75\x8d\xd6\x68\x4e\x28\x51\x7f\xe2\xfe\xba\x9a\x53\x92\xf7\x4b\x3b\x5d\xdf\x10\x45\x2c\xc7\x49\x1d\x45\x3f\xe9\x9c\x0b\xc1\x5f\x2f\xcf\xdd\x00\xa6\xbf\x74\xd4\x4d\x30\xb6\x69\xe3\xb7\xbd\x8a\x13\xa8\x7d\x37\x2e\x82\xe9\x40\x7f\xfe\xef\x0a\x4a\xe7\x06\x5f\x83\xb6\xa6\xe6\x7e\x1f\xbe\x63\x65\x08\x85\xc6\x6e\x66\x54\x4f\x9e\x1d\x26\xdb\xc8\x7f\x12\x18\x2f\xb0\x95\x02\xd6\x9c\x53\xe9\x28\xd2\x26\x3d\xfb\x58\x5c\xa3\xf5\xae\xfb\x5d\x57\x01\x0d\x97\xe7\x9b\xc3\x3b\x93\xde\xbb\x18\x0f\x35\x49\xdb\xab\xd8\xf9\xeb\xe7\x04\x97\x07\xa4\x96\xce\x27\x94\x66\x57\xa1\xd1\x27\xa8\xb8\x21\x3d\x4e\x3c\x1a\xad\xd3\x98\x95\x1c\x86\x5d\xd9\xb5\x35\xae\x61\xd9\x20\xcc\x91\x92\x22\x69\xd5\xc4\x06\x4d\x15\x57\x88\x9a\xdd\x30\x66\x8f\x38\xe7\xa2\x88\x93\x4f\x29\xd4\xdc\x01\x2e\x3a\x64\x72\xf6\xcf\xa9\x94\xd9\x30\xed\x42\xf9\x43\xde\xb8\x39\x8f\x0e\x75\x5c\x61\x46\x1c\xbf\xce\x2e\x6d\x1c\xa6\x5b\xa0\xcc\x87\x84\x35\x5a\xc9\xfc\xc4\xa9\x39\xec\x05\xc0\x5d\x9a\x7d\x34\x29\xbc\x66\xda\x84\x0e\x2a\xec\x52\xbb\x4d\xef\x25\x86\x50\x5a\x30\x8c\x42\xee\xc4\x71\x92\x1a\x60\xb3\x95\x74\xa2\xd3\xa4\xf5\x5f\x4c\x69\xfd\xf5\x83\xd3\x02\x8b\x4d\x60\x98\xec\x07\xdf\x97\xfa\x38\xfa\xdd\x4b\x79\x50\xbc\x91\xbf\xad\xa7\xb6\x31\x30\x2f\xb4\x36\xbe\xfc\x75\xb7\x2f\x4b\x5b\x52\x4d\x4f\x50\x7e\xb3\x5f\xe3\xa6\xde\xbd\x6c\xf6\x2e\xf2\x12\x10\xa5\xf5\xd1\xe1\x72\xdc\xdd\xd4\xb0\x38\x17\xd0\xdb\x4c\xe3\xac\xad\xed\xa6\xb0\x7a\xcf\x64\x41\xe7\x9f\x58\x50\xe3\x2c\x09\xc2\xfc\xe3\x6a\xf2\xc6\xf5\x7d\x52\x3a\xf6\xd1\xa9\xcc\x78\x77\xef\x08\x3d\xbb\x5b\x7e\xc8\xd1\xa9\x14\xbb\x18\x1d\x5c\x7f\x78\xe9\x84\xcc\xf7\x3a\xd6\xc9\xbe\x26\x1f\xda\x24\xde\xb3\x8d\xc2\x5f\x8d\x60\x02\xab\x4a\x30\x1d\x33\xda\x46\x7f\x03\x00\x00\xff\xff\xc3\x8e\x18\xcd\x22\x0b\x00\x00" func lockedtokensUserGet_total_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -4539,11 +4450,11 @@ func lockedtokensUserGet_total_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_total_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x55, 0x8, 0x27, 0xe, 0x25, 0x30, 0xdf, 0xb4, 0x9b, 0xdf, 0x6d, 0x5, 0xd5, 0xf1, 0xd8, 0x3a, 0xef, 0xc2, 0x45, 0x3a, 0xa1, 0xd2, 0x90, 0x9, 0xf6, 0x54, 0x3c, 0xdb, 0x11, 0x6e, 0xa9, 0x9e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc7, 0xf8, 0x32, 0x31, 0x40, 0xdc, 0xa3, 0xa6, 0xa5, 0xb, 0xb5, 0x37, 0x21, 0x21, 0x80, 0x56, 0x5d, 0xbb, 0xf2, 0xe1, 0xfa, 0xc7, 0x97, 0x9c, 0x93, 0x9d, 0xfd, 0x4b, 0x2f, 0xe, 0x29, 0x74}} return a, nil } -var _lockedtokensUserGet_unlock_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x1e\x39\x48\x72\xc9\x49\x3c\x14\xb5\x14\x41\x14\x72\x28\x62\x7f\xc0\x66\x33\xa9\x4b\x37\x3b\x61\x76\x16\x05\xf1\xbf\x4b\x12\xad\x55\x3b\x97\x85\xd9\xf7\xbe\x37\xcf\x0f\x23\x8b\xa2\x61\x77\xa0\xee\x99\x0f\x14\x13\x7a\xe1\x01\xc5\xe9\xaa\x30\xc6\x3a\x47\x29\x95\x36\x84\x0a\x7d\x8e\x18\xac\x8f\xa5\x75\x8e\x73\xd4\x15\x36\x5d\x27\x94\x52\xb5\xc2\xee\xde\xbf\x5d\x5d\xe2\xdd\x18\x00\x08\xa4\x08\x33\x68\xb3\x48\x1f\x63\xcf\x4f\xd4\xe3\x06\x7b\xd2\xaf\xdd\x37\xa6\x9a\x2d\xd3\xd4\xce\x8e\xb6\xf5\xc1\xab\xa7\x54\xb7\x2c\xc2\xaf\xd7\x17\xa7\x17\xd5\xf3\xf3\xc0\xa1\x23\xb9\x2d\x8f\xc6\x69\x7e\xc9\x9a\xbf\xe1\xdb\xdc\x06\xef\xb6\x56\x5f\x8e\xa6\x9f\xdc\xf5\x1a\xa3\x8d\xde\x95\xc5\x1d\xe7\xd0\x21\xb2\x62\x49\x87\x85\x50\x4f\x42\xd1\x11\x94\x31\xce\x18\xfc\xc3\x17\xd5\x52\x5c\x48\xb3\xc4\xb3\xdd\xeb\x3d\xe9\x2e\x4e\x3f\x8d\x1f\xbc\x96\x95\xf9\x30\x9f\x01\x00\x00\xff\xff\x4e\xa6\xd0\xc0\x87\x01\x00\x00" +var _lockedtokensUserGet_unlock_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x50\xcb\x6a\xeb\x30\x10\xdd\xeb\x2b\x0e\x59\x5c\xe4\x4d\xb8\x8b\xd2\x45\x68\x1b\x82\xed\xd2\x12\xd3\x84\x3c\x3e\x40\x96\xc7\xa9\x88\xac\x31\xb2\x4c\x53\x42\xfe\xbd\xd8\x6e\xd3\xf4\x41\x67\x33\x30\x73\x5e\x1c\x53\xd5\xec\x03\x32\xd6\x7b\x2a\x36\xbc\x27\xd7\xa0\xf4\x5c\xe1\xff\x21\x5b\xc4\xf3\x34\xd9\x2c\xe6\xe9\xd3\x2c\x49\x56\xe9\x7a\x2d\x84\xd2\x9a\x9a\x46\x2a\x6b\x23\x94\xad\x43\xa5\x8c\x93\x4a\x6b\x6e\x5d\x98\x60\x56\x14\x9e\x9a\x26\x9a\x60\x7b\x6f\x0e\xd7\x57\x38\x0a\x01\x00\x96\x02\x6c\xef\x30\x1b\xa0\x8f\xae\xe4\x15\x95\xb8\xc5\x8e\xc2\xfb\xed\x43\x26\xea\x29\xdd\x8c\x77\x14\x62\x55\xab\xdc\x58\x13\x5e\x6f\xfe\x5d\x86\x1c\xf7\xeb\x81\x6d\x41\xfe\xf8\xe5\x91\x7d\x37\x3a\xdd\xc9\xb3\x64\x37\x7f\xa3\x97\x6d\x6e\x8d\x5e\xaa\xf0\x7c\x26\x5d\x24\xca\xd9\x7b\x7e\x91\x9f\x97\xe9\x14\xb5\x72\x46\xcb\x51\xcc\xad\x2d\xe0\x38\x60\x00\x41\xc1\x53\x49\x9e\x9c\x26\x04\x46\xdd\x0b\xe3\x87\xe1\x28\x1a\x4a\xf2\x14\x5a\xef\x7e\xed\xa9\x2b\x62\xeb\xba\x4f\x66\x2a\x13\x64\x24\x4e\xe2\x2d\x00\x00\xff\xff\x40\x06\x62\xc9\xb9\x01\x00\x00" func lockedtokensUserGet_unlock_limitCdcBytes() ([]byte, error) { return bindataRead( @@ -4559,11 +4470,11 @@ func lockedtokensUserGet_unlock_limitCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_unlock_limit.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6f, 0xf9, 0x2, 0x6b, 0x3a, 0x2a, 0x9b, 0x2f, 0xb6, 0xec, 0x74, 0x3b, 0x63, 0xa6, 0x99, 0x2e, 0x44, 0xaa, 0xa7, 0xfd, 0xf7, 0x7f, 0x81, 0xb1, 0x1c, 0x70, 0xf, 0xe3, 0xf1, 0x6f, 0xe4, 0xd4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf2, 0xf0, 0x89, 0x31, 0xe7, 0x13, 0xde, 0x43, 0x98, 0x7, 0xda, 0x2b, 0x6, 0x81, 0x4e, 0x6f, 0xaa, 0x34, 0x6e, 0x3a, 0x97, 0xdd, 0xba, 0xc9, 0xbc, 0x8a, 0xa, 0xd2, 0x78, 0x9c, 0xdc, 0x87}} return a, nil } -var _lockedtokensUserWithdraw_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x93\x41\x6f\xd4\x30\x10\x85\xef\xf9\x15\xa3\x1c\xaa\x44\x02\xf7\x82\x38\xac\x0a\x15\x20\x55\x1c\x90\x40\x50\xca\x79\xea\x4c\x1a\xab\x8e\x27\xb2\xc7\x4d\x11\xea\x7f\x47\x76\xe2\xb0\x01\x2d\xe2\x82\x2f\xd6\xda\xf3\xde\xbc\xcf\xb3\x31\xe3\xc4\x5e\xe0\x2a\xba\x3b\x73\x6b\xe9\x9a\xef\xc9\x41\xef\x79\x84\x7a\x77\x56\x57\xa5\xd2\xf2\xbc\xab\x2a\xbf\xb7\x8a\x0f\xac\xef\xa9\xcb\x67\x61\x2d\x3a\x3e\xaa\xab\x4a\x3c\xba\x80\x5a\x0c\xbb\x06\x47\x8e\x4e\x0e\xf0\xf5\xca\x3c\xbe\x7c\xd1\xc2\x8f\xaa\x02\x00\xb0\x24\x30\xb0\xed\xc8\x7f\xa6\xfe\x00\x18\x65\x68\x8e\x5d\x54\xde\x3e\x4e\xe4\x31\xd9\x84\x67\x7b\x04\xf5\xcd\xc8\xd0\x79\x9c\x5b\x38\xfb\x53\xf6\x3e\x1b\x6f\x7d\x1e\x30\x5a\xf9\xd5\xe6\xa4\xd1\x86\xaa\x6e\x92\x62\x09\x3a\x79\x9a\xd0\x53\x83\x5a\xcb\x6a\xf0\x96\xbd\xe7\xf9\x06\x6d\xa4\x16\xce\xde\x68\x9d\x08\x13\x19\xac\x2b\x90\xed\xd5\x46\x07\xaf\x20\x89\x55\x10\xf6\x78\x47\xea\x36\xcb\x2f\xfe\x07\xf2\xeb\x26\xcd\xe3\x00\xa7\xee\xbf\x2c\x11\x3e\xa1\x0c\xed\x96\x36\xad\xcb\x4b\x98\xd0\x19\xdd\xd4\xd7\x03\xc1\xe4\xcd\x88\xfe\x3b\xc4\x40\x3e\x65\x4f\x7c\xd0\x31\x05\x70\x2c\x30\xe0\x03\x01\x3a\xc0\x10\x58\x1b\x14\xea\xc0\xe6\x7e\xa5\xb4\x6e\xab\xfd\x53\x94\x01\xfc\xed\x25\xfe\x75\x2a\x05\xf1\x7c\x35\x39\xef\xcb\x7d\xbe\x3e\x85\xf5\x8e\xa3\xed\x72\xfc\xa5\x29\x24\x19\x48\xfe\xa3\xe7\x78\xe0\xa9\xaf\x17\xf5\xd3\x12\x9f\x1e\x49\x47\xa1\xdf\xe7\x5a\x60\x54\x47\x13\x07\x23\x6b\x9e\x8b\xe7\xfb\xa9\xab\x79\x45\xd8\xbe\x80\x65\x6f\x4b\x8f\xa7\xea\x67\x00\x00\x00\xff\xff\x10\x94\xa0\x76\x9c\x03\x00\x00" +var _lockedtokensUserWithdraw_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6b\xc2\x40\x10\xc5\xef\xf9\x14\x43\x0e\x25\x39\x34\xf6\x50\x7a\x08\xb6\x22\xfe\xa1\xa0\xd4\xa2\xb6\xf7\x75\x33\x31\xc1\xb8\x13\x36\x93\x46\x28\x7e\xf7\xb2\x59\x37\x18\x41\xe8\x5e\x96\x9d\xf7\x76\xde\x6f\x87\xcd\x8f\x25\x69\x86\x79\xad\xf6\xf9\xae\xc0\x2d\x1d\x50\x41\xaa\xe9\x08\x7e\xaf\xe6\x7b\xce\x59\x50\xd3\x73\xb9\x73\xe7\x58\x92\x3c\x60\xd2\xd6\x2a\x6b\x7a\x3a\x2d\x57\x93\xc5\x6c\xba\x5d\x2d\x66\x1f\xe3\xe9\x74\x3d\xdb\x6c\x3c\x8f\xb5\x50\x95\x90\x9c\x93\x0a\xc4\x91\x6a\xc5\x31\x7c\xcd\xf3\xd3\xcb\x73\x08\xbf\x9e\x07\x00\x50\x20\x43\x46\x45\x82\x7a\x8d\x69\x0c\x0f\xd7\xad\xa3\x76\x7b\x6f\xd5\xce\xfc\x23\xea\x82\xad\xb7\x03\x8b\xbe\x4d\xd1\x36\x2c\x35\x96\x42\x63\x20\xa4\xe4\x18\xc6\x35\x67\x63\x29\x4d\xb4\x89\x84\xcb\xaa\xb0\x48\xa3\x2e\x16\x5e\xc1\xb8\xa3\x1d\x69\x4d\xcd\xf0\x2e\xc3\x5b\x60\xde\x1a\xc3\x3d\x7d\xc3\xa4\xc5\x1e\x3f\x05\x67\x61\x17\x65\xd6\x68\x04\xa5\x50\xb9\x0c\xfc\x09\xd5\x45\x02\x8a\x18\x6c\x18\x08\xd0\x98\xa2\x46\x25\x11\x98\xe0\xaa\x9b\x1f\x7a\x7d\x5e\xf7\xf2\x5b\xdc\x9b\x31\x38\xca\x41\x65\x71\x06\xa9\xd3\x5b\xf9\xdf\x64\xe6\x1a\x70\xfb\x0f\xda\x64\x03\xea\xdb\xdb\x67\x4b\x86\x27\x94\x35\xe3\xed\x5c\x1d\x67\x94\x60\x49\x55\xce\x17\x9e\xe1\x63\x7f\xea\x51\x93\x73\x96\x68\xd1\x74\x5f\xc3\xee\xa1\xcb\x38\x7b\x7f\x01\x00\x00\xff\xff\x3b\x4c\x13\x6e\xbb\x02\x00\x00" func lockedtokensUserWithdraw_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4579,11 +4490,11 @@ func lockedtokensUserWithdraw_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/withdraw_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9b, 0xeb, 0x8e, 0xc2, 0xbe, 0x58, 0xf9, 0x1, 0x8a, 0x51, 0x9, 0xe7, 0x16, 0x2a, 0x38, 0xa2, 0xab, 0x0, 0xe5, 0x81, 0xa7, 0x55, 0x73, 0xaf, 0xb7, 0x5c, 0x78, 0x54, 0x71, 0x19, 0x9a, 0xd5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0x42, 0x10, 0x73, 0xfa, 0x74, 0xa3, 0x2c, 0x97, 0x1e, 0x57, 0x98, 0x3f, 0xa5, 0x11, 0xee, 0x3e, 0x8e, 0x41, 0x8a, 0xf4, 0xdd, 0xcb, 0xb1, 0x16, 0x9c, 0xd1, 0x12, 0xce, 0x19, 0x42, 0x8b}} return a, nil } -var _nodeversionbeaconAdminChange_version_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x4f\x6f\xd4\x40\x0c\xc5\xef\xf9\x14\x4f\x39\x94\xec\x25\xb9\x20\x0e\x11\x4b\xd5\x45\x42\xe2\x82\xaa\x42\x7b\x1f\x66\x9c\xcd\x48\x89\x1d\x79\x3c\x2c\x7f\xd4\xef\x8e\x92\x2c\x50\x35\x6c\x8f\xb1\xc7\xef\xf7\x9e\x9d\x38\x4e\xa2\x86\x4f\x12\xe8\x81\x34\x45\xe1\x03\x39\x2f\x8c\x4e\x65\x44\xb9\xa9\x97\x45\xd1\x34\x0d\xbe\xa8\xe3\xe4\xbc\x45\x61\x58\xef\x0c\x6e\x18\xe4\x94\x9e\xea\xdc\x84\x31\x32\x4c\xe0\x7b\xc7\x47\x5a\xc6\xac\x27\x04\xea\x22\x53\xc0\xb7\xf5\xd9\xfd\x14\x9c\xd1\x21\x77\x1d\x69\x51\xd8\x3f\xdd\x8a\xe9\xf4\x41\x89\x7e\xd2\x2d\x69\x94\xd0\xe2\xfe\x23\xdb\x9b\xd7\x3b\xfc\x2a\x0a\x60\xa0\xff\xb8\x5e\x98\x77\xd4\xb5\xb8\xda\xf4\xea\xa5\x39\x8f\x4e\x4a\x93\x53\xaa\x9c\xf7\xd6\xc2\x65\xeb\xab\x83\xa8\xca\xe9\xc1\x0d\x99\x76\xb8\xba\xf1\x5e\x32\xdb\x4c\x02\x80\xa6\xc1\xda\x87\x83\x52\x47\x4a\xec\x69\x4e\x36\xc7\xd9\x24\x8e\xe3\x34\xd0\x48\x6c\x91\x8f\x50\x4a\x92\xd5\xd3\xa2\x93\x68\xe8\xea\x8b\x9e\xb1\xc7\x6c\xa8\x4e\x26\xea\x8e\x54\x7f\x5d\x90\x6f\x2f\x05\x79\xb7\x48\x02\xd5\x7c\xa8\x76\xbb\x8a\xf5\xd5\xe7\x55\xec\xd6\x59\xbf\x3b\x0f\x5c\x5f\x63\x72\x1c\x7d\x55\xbe\x97\x3c\x04\x7e\x65\x58\x51\x97\x34\x70\x77\x0e\x51\xce\x12\x8f\xf3\x06\xe9\x3b\xf9\x6c\x74\xde\xcf\xcb\xb9\xea\x44\xf6\xa7\x21\x99\x83\xd3\x1f\x4f\xcf\xba\x3d\xf3\xb3\xc2\x5f\xe8\x24\xc9\x56\xe0\xd6\xe8\xf1\x65\xc6\x0e\xfb\xfd\x73\x5d\xb4\x28\xd7\x6f\x4c\x6b\xe1\xe4\x12\x58\x0c\x79\xf9\x25\x43\xb9\x80\x1f\x8b\xdf\x01\x00\x00\xff\xff\x1f\xd2\xbe\x76\x23\x03\x00\x00" +var _nodeversionbeaconAdminChange_version_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\xc1\x6e\xdb\x4c\x0c\x84\xef\x7a\x8a\x81\x0f\xff\x6f\x5f\xac\x1e\x8a\x1e\x84\xba\x81\x1c\xbb\x40\x2e\x76\x60\x37\xb9\x6f\x77\x29\x6b\x01\x89\x14\x28\xaa\x4e\x5b\xe4\xdd\x0b\x49\x6e\x1b\x44\x75\x8e\x5a\x92\xdf\xcc\x90\x8a\x75\x23\x6a\xd8\x49\xa0\x47\xd2\x36\x0a\xaf\xc9\x79\x61\x14\x2a\x35\xde\x3d\xed\xf6\x9b\xed\xe3\xf6\x70\xbc\xdb\xef\xd6\xdb\xfc\x76\xbf\xcb\x37\x9b\xc3\xf6\x78\x4c\x92\x34\x4d\xf1\x45\x1d\xb7\xce\x5b\x14\x86\x95\xce\xe0\xaa\x4a\xce\xed\x4b\x5c\x1e\xea\xc8\x30\x81\x2f\x1d\x9f\x68\x18\xb3\x92\x10\xa8\x88\x4c\x01\xdf\xc6\xb6\x87\x26\x38\xa3\x75\x57\x14\xa4\x49\x62\x7f\xb9\x73\xa6\xf3\x67\x25\xfa\x41\xf7\xa4\x51\x42\x86\x87\x3b\xb6\x0f\xef\x17\xf8\x99\x24\x40\x45\xff\x30\x3f\x68\x1e\xa8\xc8\xf0\xdf\xa4\xb6\x1c\x8a\xfd\x68\xa3\xd4\x38\xa5\xb9\xf3\xde\x32\xe4\x9d\x95\xb9\xf7\xd2\xb1\xf5\x68\x00\x48\x53\xac\x45\x55\xce\x70\x50\x2a\x48\x89\x3d\xf5\x51\x7a\xff\x93\x88\xb1\x6e\x2a\xaa\x89\x2d\xf2\x09\x4a\xad\x74\xea\x69\xe0\xb4\x54\x15\xcb\xab\x26\xb1\x42\xef\x60\xf9\x75\x90\xfa\x78\xcd\xf1\xa7\x01\x05\xcc\xfb\xc3\x64\xd3\xcc\x63\xd7\xd1\x44\xdd\x89\xee\x9d\x95\x8b\xcb\xc0\xcd\x0d\x1a\xc7\xd1\xcf\x67\xb7\xd2\x55\x81\xff\x37\x8c\x52\xd7\x18\x38\x5c\xcc\xcf\x7a\xc4\x73\xbf\x2a\x7a\x22\xdf\x19\x5d\xf6\xf2\x76\x9e\x65\x4b\xf6\xbb\x20\x1d\x07\xa7\xdf\x5f\xde\x6f\x7a\xcf\x57\x0f\x7f\x44\x1b\x69\x6d\x14\x9c\x1a\x3d\xbd\xad\xb1\xc0\x6a\xf5\x9a\x8b\x0c\xb3\xf1\x1b\xcd\xf8\x70\x76\x2d\x58\x0c\xdd\xf0\xef\x85\xd9\x20\xfc\x9c\xfc\x0a\x00\x00\xff\xff\x20\x17\x63\x91\x13\x03\x00\x00" func nodeversionbeaconAdminChange_version_freeze_periodCdcBytes() ([]byte, error) { return bindataRead( @@ -4599,11 +4510,11 @@ func nodeversionbeaconAdminChange_version_freeze_periodCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/change_version_freeze_period.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4c, 0x60, 0x96, 0xf7, 0x76, 0x86, 0xbe, 0x53, 0x4e, 0x92, 0x54, 0x6, 0xb1, 0x20, 0x8d, 0x20, 0xf8, 0x11, 0x29, 0xfe, 0x14, 0x3e, 0xf6, 0x77, 0xe1, 0x2, 0x7a, 0xf3, 0x56, 0x5f, 0x27, 0xd3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x85, 0x64, 0xe7, 0xfd, 0x12, 0xa9, 0xc4, 0xb2, 0xa7, 0x40, 0x45, 0xbd, 0xde, 0xe5, 0xb6, 0xcf, 0x5f, 0xae, 0x29, 0x72, 0xaa, 0x59, 0x3a, 0x38, 0xc, 0xe5, 0xbc, 0xbf, 0xc4, 0x20, 0x97, 0xd9}} return a, nil } -var _nodeversionbeaconAdminDelete_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xd4\x30\x10\xbd\xe7\x2b\x9e\xf6\x50\xb2\x97\xe4\x82\x38\x44\x40\xd5\xa5\x07\xb8\x20\x54\x96\xde\x67\x9d\xc9\xc6\xc2\xf1\x58\xce\x84\x82\x50\xff\x1d\xd9\xc9\xb6\x8b\xd2\x45\x5c\xfd\x66\xde\xbc\xf7\xfc\xec\x10\x24\x2a\x3e\x4b\xcb\xf7\x1c\x47\x2b\x7e\xc7\x64\xc4\xa3\x8b\x32\x60\xb3\x7a\xdf\x14\x45\x5d\xd7\xd8\x47\xf2\x23\x19\xb5\xe2\xa1\x3d\x29\xc8\x39\x79\x18\xcf\x79\x6e\xda\xc1\x7a\xa8\xa0\x65\xc7\xca\xd0\x9e\xf3\xea\x8f\x19\xc6\x41\x26\xdf\x52\xfc\x85\x81\x42\xb0\xfe\x88\x34\xdd\xf3\x09\xdf\xd3\xc1\x31\x48\xf3\xdb\x18\xd8\xd8\xce\x72\x9b\x19\x0e\x4e\xcc\x77\xf4\x6c\x8f\xbd\x22\x50\xa4\x81\x95\x63\x51\xe8\xb3\xa8\x32\xcf\x7c\xcc\x23\xbb\xe5\xd0\x5e\x6e\xb3\x92\x06\xdf\x3e\x79\x7d\xf3\x7a\x8b\xdf\x45\x01\x38\x7e\xc1\x7e\x16\x7f\xc7\x5d\x83\xab\x15\x56\x65\x30\xad\x86\xc8\x81\x22\x97\x64\x8c\x36\xa0\x49\xfb\x72\x27\x31\xca\xc3\x3d\xb9\x89\xb7\xb8\xba\x31\x46\x26\xaf\xe9\x12\x00\xd4\x35\x66\x1c\x84\xc8\x1d\x47\xf6\x86\x53\x44\xc9\xe3\x2a\xba\xc8\xa3\x4c\xd1\x70\x5e\x1d\xd9\x75\xd5\x45\x99\x78\x87\xa4\xa1\x1a\x55\x22\x1d\xb9\x3a\xe4\x2b\x6f\x2f\x69\x7f\x9f\x29\x81\x32\x7d\x72\xb3\x76\x3f\x4f\x7d\x9d\xc9\xbe\x90\xf6\xdb\x65\xe1\xfa\x1a\x81\xbc\x35\xe5\xe6\x83\x4c\xae\xf5\xaf\x14\xf3\xa9\x0b\x09\xe2\x6e\xf1\xb0\x49\x0c\x8f\x29\x33\xfe\xc9\x66\x52\x7e\x4e\xe4\xf6\xa9\x1e\x4f\xd5\xc8\xdd\x3b\x7f\xd0\x17\xcb\xf0\x77\x11\x4e\x7d\xfa\x8f\xb8\xaa\xb9\x92\x27\x6c\x59\x3c\xef\x4c\x83\x7f\x14\x68\xf1\xf2\xf8\x27\x00\x00\xff\xff\xb2\x03\xaa\xae\x3c\x03\x00\x00" +var _nodeversionbeaconAdminDelete_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xd3\x40\x10\xbd\xfb\x2b\x9e\x7a\x80\xf4\x12\x73\x40\x1c\x2c\xa0\x72\xea\x48\xf4\x92\xa0\x24\xf4\x3e\x59\x8f\xe3\x15\xf6\x8e\xb5\x1e\xd3\x22\xd4\x7f\x47\xbb\x76\xda\xa0\x34\xa8\xd7\x7d\xf3\xde\xbe\x79\xf3\x6c\xdb\x89\x57\xac\xa4\xe4\x7b\xf6\xbd\x15\xb7\x60\x32\xe2\x50\x79\x69\xf1\xe1\x71\xb5\x2e\x96\xf7\xcb\xcd\xf6\x6e\xbd\x5a\x2c\xf3\xdb\xf5\x2a\x2f\x8a\xcd\x72\xbb\x4d\x92\x34\x4d\xb1\xf3\xe4\x7a\x32\x6a\xc5\x41\x6b\x52\x50\xd3\xc8\x43\x7f\x2a\x97\x97\xad\x75\x50\x41\xc9\x0d\x2b\x43\x6b\x8e\xd4\x5f\x23\x8c\xbd\x0c\xae\x24\xff\x1b\x2d\x75\x9d\x75\x07\x84\xe9\x9a\x8f\xf8\x8e\xf6\x0d\x83\x34\xbe\xf5\x1d\x1b\x5b\x59\x2e\xa3\xc2\xbe\x11\xf3\x13\x35\xdb\x43\xad\xe8\xc8\x53\xcb\xca\x3e\x49\xf4\xc5\xd4\x2c\xce\x7c\x8b\x23\x8b\xe9\xa3\x9d\x14\xd1\x49\x86\x1f\x77\x4e\x3f\x7d\xbc\xc6\x9f\x24\x01\x1a\x7e\x25\x85\x68\x7e\xc3\x55\x86\x77\x67\xd8\x3c\x82\x81\xda\x79\xee\xc8\xf3\x8c\x8c\xd1\x0c\xf9\xa0\x75\x6e\x8c\x0c\x4e\x83\x34\x00\xa4\x29\x16\xe2\xbd\x3c\x80\xe0\xb9\x62\xcf\xce\x70\xc8\x24\x2c\x75\x96\x95\xe7\x5e\x06\x6f\x38\x52\x7b\x6e\xaa\xf9\x45\x5f\xf8\x82\xf0\xe9\x7c\x1f\xd5\x3f\x5f\x32\xf9\x35\x4a\x01\xb3\x70\xd4\xec\x7c\xcd\x71\x6a\xab\xe2\xe9\xc0\xdf\x49\xeb\xeb\x89\x70\x73\x83\x8e\x9c\x35\xb3\xab\x5b\x19\x9a\xd2\xbd\x57\x8c\x5f\x5d\x88\x0a\x9b\xc9\xfb\x55\x50\x78\x0a\xe1\xf0\x23\x9b\x41\xf9\x25\x89\xe2\xb9\x07\xcf\x1d\x88\x5d\x3b\x7d\xd0\x57\xaf\xfe\xef\xc5\x8f\xc5\x79\x43\x4c\xf3\xb1\x7b\x47\x6c\x22\x9e\x96\x23\xc3\x7f\x9a\x32\xed\xf2\xf4\x37\x00\x00\xff\xff\xfb\x0f\x35\x18\x2c\x03\x00\x00" func nodeversionbeaconAdminDelete_version_boundaryCdcBytes() ([]byte, error) { return bindataRead( @@ -4619,11 +4530,11 @@ func nodeversionbeaconAdminDelete_version_boundaryCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/delete_version_boundary.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xce, 0xdd, 0x99, 0x3c, 0x5e, 0x76, 0xfe, 0x27, 0x22, 0xe4, 0x7b, 0x78, 0x77, 0x89, 0xb6, 0x82, 0x89, 0x60, 0x66, 0xee, 0x3b, 0x76, 0xe7, 0xef, 0x52, 0xe7, 0xe7, 0x7a, 0x6b, 0x65, 0x71}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xc4, 0xca, 0x36, 0x2a, 0xbe, 0xa6, 0xf1, 0x75, 0x8f, 0xd5, 0x82, 0x0, 0x82, 0xf0, 0x4c, 0x1b, 0xa5, 0xf5, 0xc6, 0x85, 0x25, 0xc3, 0x9c, 0xbe, 0xbe, 0xda, 0x83, 0xf4, 0x4d, 0xfe, 0x32}} return a, nil } -var _nodeversionbeaconAdminHeartbeatCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x41\x6f\xe2\x40\x0c\x85\xef\xf9\x15\x4f\x39\xb0\xe1\x92\xdc\xd1\xee\x22\xe0\xd2\x53\x55\x51\x89\xbb\x99\x38\x64\xa4\x64\x1c\x79\x9c\x52\xa9\xe2\xbf\x57\x64\x28\x45\xa2\xa2\x73\x1a\x7b\xec\xef\x3d\x7b\x7c\x3f\x88\x1a\x9e\xa5\xe6\x1d\x6b\xf4\x12\xd6\x4c\x4e\x02\x1a\x95\x1e\xf9\x5d\x3e\xcf\xb2\xaa\xc2\x86\xba\x2e\xc2\x5a\x46\xcf\xd6\x4a\x0d\x6b\xc9\xc0\xbd\xb7\x94\x35\xda\x77\x8c\xa3\xb7\x76\x0a\x7d\x70\xd2\xfb\x70\xc0\x5b\x42\xc5\xcc\x94\x42\x24\x67\x5e\x42\x31\xc7\x47\x96\x01\x40\xc7\x3f\x18\x79\x62\x52\xdb\x33\xd9\x96\x9b\x05\x66\x77\xef\xe5\xb5\x20\x41\x06\xe5\x81\x94\x0b\x72\xce\x16\xa0\xd1\xda\x62\x2d\xaa\x72\xdc\x51\x37\xf2\x1c\xb3\x95\x73\x32\x06\x3b\xab\xe2\x72\xaa\x0a\xa9\x06\x04\xe5\x86\x95\x83\x63\x98\x4c\xe6\x6f\x14\x57\x75\xef\x03\x94\xa3\x8c\xea\xf8\xda\x1e\xb9\x6b\xca\x87\xc6\xf1\x0f\x67\x3f\x65\x34\x51\x3a\x70\xb9\x9f\xd4\xfe\x3e\x9a\xe6\xff\x15\x0f\x14\xe7\xcf\x58\xdc\xef\xe6\xbb\xfa\x35\x81\x5f\xc8\xda\xf9\x4d\xe3\x72\x89\x81\x82\x77\x45\xbe\x91\xb1\xab\xc3\x1f\x43\x92\x7e\xc4\xc2\xf6\x32\x60\x9e\x50\x27\x00\xd3\x85\xdf\xd9\x8d\xc6\x37\x8b\xfb\x7d\xf2\xb2\xfd\x0a\x8a\x0b\x2d\x3b\x7d\x06\x00\x00\xff\xff\x23\xcb\x77\xbd\x74\x02\x00\x00" +var _nodeversionbeaconAdminHeartbeatCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x6f\x82\x40\x10\x85\xef\xfc\x8a\x17\x0f\x2d\x5e\xa0\x67\xd3\xd6\xa0\x92\xb4\x17\x6c\x20\xf1\xbe\x2e\x83\xbb\x09\xec\x90\x65\xa8\x26\x8d\xff\xbd\x11\xac\x35\xb1\xb1\x7b\xda\xd9\x9d\x79\xef\x9b\x67\x9b\x96\xbd\x20\xe3\x92\x36\xe4\x3b\xcb\x6e\x41\x4a\xb3\x43\xe5\xb9\xc1\xd3\x21\x5b\xaf\xd2\x4d\x9a\x17\xef\xeb\x6c\x91\x26\xcb\x75\x96\xac\x56\x79\x5a\x14\x41\x10\xc7\x58\xaa\xba\xee\x20\x86\xd0\x90\x18\x2e\x21\x46\x09\xa8\xb1\x32\xbe\x8a\xda\xd6\x84\xbd\x15\x33\x94\xd6\x69\x6e\xac\xdb\xe1\x73\x74\xea\x02\xf1\xca\x75\x4a\x8b\x65\x17\x4e\xf1\x15\x04\x00\x50\xd3\x1f\x3c\x6f\xa4\xbc\x6c\x49\x49\x4e\xd5\x0c\x0f\x37\xff\xd1\xa5\x61\x14\x69\x3d\xb5\xca\x53\xa8\xb4\x96\x19\x92\x5e\x4c\xa2\x35\xf7\x4e\x4e\x36\x38\x9f\x38\xc6\x82\xbd\xe7\x3d\x14\x3c\x55\xe4\xc9\x69\x82\xf0\x40\x7b\x65\x91\x94\x8d\x75\xf0\xd4\x71\xef\x35\x5d\xc6\x3b\xaa\xab\xe8\x2e\x29\x5e\x70\x02\x88\xb6\x83\xcb\xf3\x3d\xec\xd7\x8b\x2c\x10\x9e\xc2\x9f\xdd\x86\xf0\xdb\x5d\x08\x7b\xb5\xa3\x0f\x25\x66\x7a\x35\x38\x9f\xa3\x55\xce\xea\x70\xb2\xe4\xbe\x2e\xdd\xa3\x60\xb4\xbe\xa7\x85\xfc\xbc\xd8\x64\x94\x3a\x02\x18\x2e\x74\x20\xdd\x0b\x5d\x05\xf6\xff\xc6\x91\xf9\x29\xc2\xb3\x5a\x70\xfc\x0e\x00\x00\xff\xff\x54\xf5\x87\x79\x64\x02\x00\x00" func nodeversionbeaconAdminHeartbeatCdcBytes() ([]byte, error) { return bindataRead( @@ -4639,11 +4550,11 @@ func nodeversionbeaconAdminHeartbeatCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/heartbeat.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9f, 0x2e, 0x33, 0xc2, 0x68, 0xee, 0x46, 0xb8, 0xb7, 0xd6, 0xdc, 0x46, 0x84, 0x75, 0x4a, 0xb1, 0xc1, 0x19, 0x4b, 0xaf, 0x3d, 0xb9, 0x5, 0x88, 0x7d, 0xd2, 0x59, 0x36, 0x2b, 0x5e, 0x7, 0x29}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0x8d, 0x70, 0x49, 0x14, 0x1, 0xa9, 0x56, 0x3d, 0xde, 0xa3, 0xc4, 0xf6, 0xfa, 0x14, 0x16, 0x9a, 0xdc, 0xc3, 0x9d, 0x56, 0xff, 0xb5, 0x96, 0x96, 0xf9, 0xba, 0x4c, 0x8b, 0x8c, 0xb4, 0xb0}} return a, nil } -var _nodeversionbeaconAdminSet_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x6b\xdb\x4e\x10\xbd\xeb\x53\x3c\x7c\xc8\x4f\x06\x23\x5d\x7e\x94\x22\x9a\x06\x27\x14\xda\x43\x43\x48\xdc\xdc\xc7\xab\x91\xad\x56\xda\x55\x77\x47\x76\x4b\xc9\x77\x2f\x2b\xad\x6d\x59\xb2\xa1\x27\xe3\xf9\xfb\xe6\xbd\xa7\x2d\xeb\xc6\x58\xc1\xa3\xc9\xf9\x95\xad\x2b\x8d\xbe\x67\x52\x46\xa3\xb0\xa6\xc6\x6c\x12\x9f\x45\x51\x9a\xa6\x58\x59\xd2\x8e\x94\x94\x46\x43\xb6\x24\xa0\xaa\x32\x7b\x37\x9c\xb3\xcc\xeb\x52\x43\x0c\x28\xcf\x41\xd0\xbc\xc7\xae\xcf\xf8\xa0\x6c\xb9\x1b\x74\x0c\xd1\xba\x62\xe4\x5c\x94\xba\xd4\x1b\xd0\x31\xb1\x36\xad\xce\xc9\xfe\x06\x89\x6f\x82\x90\xdd\xb0\xdc\x57\x46\xfd\xf8\xcc\xe5\x66\x2b\x51\x24\x27\x30\x71\x04\xbf\xe9\x2b\x7d\x37\x36\xc3\xb7\x2f\x5a\xde\x2f\x42\xa8\xd4\xe3\xd0\x13\x89\xda\x8e\x42\x96\x9f\xb9\x62\x72\x9c\xe1\x45\x6c\xa9\x37\x77\x3e\xb3\x3e\xad\xeb\xeb\xdf\xfd\x1f\xcd\xf1\x27\x8a\x80\x8a\x2f\xb0\xd7\xdd\xfe\xcc\x45\x86\x9b\x49\x2e\xe9\x92\xa1\x53\xf3\xfe\x90\x0c\x77\x66\xd3\x69\xc9\xa8\xc4\xaf\x6d\x2c\x37\x64\x39\x26\xa5\x24\x03\xb5\xb2\x8d\xef\x8d\xb5\x66\xff\x4a\x55\xcb\x73\xdc\x2c\x95\x32\xad\x16\x8f\x12\x00\xd2\x14\x0f\x96\x49\xb8\x23\x71\x28\x46\x27\xb4\x0f\x36\xe4\x1c\xe7\x68\xc8\x52\xcd\xc2\xd6\x75\x8d\xe7\x28\x71\x7b\x01\xde\x0b\xd7\x3b\xb6\x71\x57\x0e\xd4\x3d\xf7\x07\x15\x16\xa8\x7b\xe6\x0f\x1a\x2c\xd0\xf4\xbc\x1f\x14\x58\xf8\x63\x8e\xac\x9f\x89\xd0\x8d\x9c\x47\xdd\x8f\xe3\xaa\x48\xa6\x7c\x5d\x44\x34\xaa\x89\xcf\xf4\x1b\xfc\x59\x1c\x58\xc8\x06\x37\x86\x7d\x69\x8a\x9e\x51\x10\x2c\x17\x6c\x59\x2b\x0e\xd6\x9d\xfa\xdc\xb2\x33\xad\x55\x7c\x82\x7a\xd5\x14\xb8\x85\x57\x2d\x71\x62\x2c\x6d\x38\x59\x77\x5b\x3e\x5c\x73\xca\xc7\xc0\x6b\xec\x85\xba\xe4\x8e\xae\xea\xa5\x1f\xf6\x44\xb2\x9d\x87\x86\xbb\x3b\x34\xa4\x4b\x15\xcf\x1e\x4c\x5b\xe5\xfa\x3f\x41\xbf\xea\xda\x0c\x3c\x87\x23\x66\x7e\xc4\x9b\xa7\x81\x7f\xb1\x6a\x85\x4f\x26\x5a\xe6\xf9\xc4\x41\x81\x93\xb3\x4f\xf9\x1f\x78\x48\x1c\xcb\x58\xa8\xdd\xf8\x63\xb8\xa2\xfa\x11\x60\x63\x9c\x04\x74\xd3\xab\x36\xd3\x05\x5c\x14\xac\xa4\xdc\xf1\x72\xf8\x86\x9c\x99\x62\x9e\x04\x14\x81\x47\x20\x71\x62\x4b\x25\x9f\x7e\xb6\x54\xad\x4c\x7c\x05\xd3\xa1\x6d\x8e\x0c\xb3\xc7\x01\x3f\x7b\x72\xd0\x46\xfc\x43\xc8\xf9\x88\xad\x95\x27\x6b\xd6\x5d\xf3\x16\xfd\x0d\x00\x00\xff\xff\x4f\xa8\x29\x9e\x8d\x05\x00\x00" +var _nodeversionbeaconAdminSet_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\xc1\x6e\xdb\x30\x0c\x86\xef\x7e\x0a\x22\x87\xcd\x01\x02\x7b\x87\x61\x18\x8c\x75\x85\xd3\x06\x58\x0f\x4b\x8b\xa4\xeb\x9d\x91\xe9\x44\x9b\x2d\x79\x12\x9d\x74\x18\xfa\xee\x83\x64\x3b\x71\xec\x04\xd8\xa9\x28\x49\x91\x3f\x3f\xfe\xb1\x2c\x2b\x6d\x18\x96\x3a\xa3\x17\x32\x56\x6a\x35\x27\x14\x5a\x41\x6e\x74\x09\x1f\x5e\x97\x8f\xf7\x8b\x97\xc5\x6a\xfd\xf0\xb8\x9c\x2f\xd2\xbb\xc7\x65\x7a\x7f\xbf\x5a\xac\xd7\x41\x10\xc7\x31\x3c\x1b\x54\x16\x05\x4b\xad\x80\x77\xc8\x80\x45\xa1\x0f\xb6\xdf\x2e\xcd\x4a\xa9\x80\x35\x60\x96\x01\x82\xa2\x03\xec\x9b\x8c\x0b\xf2\x8e\x7c\xa3\x63\x08\x37\x05\x41\x46\xb9\x54\x52\x6d\x01\x8f\x89\x8d\xae\x55\x86\xe6\x0f\x20\xbb\x47\xc0\x68\xb6\xc4\xf3\x42\x8b\x5f\xdf\x48\x6e\x77\x1c\x04\x7c\x12\x13\x06\xe0\x26\x7d\xc7\x9f\xda\x24\xf0\xe3\x41\xf1\xe7\x59\x1b\x92\x6a\x18\x7a\x42\x16\xbb\x41\xc8\xd0\x8a\x0a\x42\x4b\x09\xac\xd9\x48\xb5\xbd\x75\x99\xcd\x69\x5c\x53\xff\xe9\x63\x30\x85\xbf\x41\x00\x50\xd0\x05\x88\x7e\xf7\x15\xe5\x09\xbc\x1b\xe5\x22\x9f\x6c\x5f\x2a\x3a\x74\xc9\x76\xcf\x64\xdc\x2d\x1a\x94\xb8\xb1\x95\xa1\x0a\x0d\x85\x28\x04\x27\x90\xd6\xbc\x4b\x85\xd0\xb5\x62\x27\x0b\x00\x20\x8e\xe1\xce\x10\x32\x79\x6a\x7d\xfa\xfe\xc0\x2e\x58\xa1\xb5\x94\x41\x85\x06\x4b\x62\x32\xd6\x3f\x3c\x97\x05\x37\x17\xf4\xac\xa9\xdc\x93\x09\x7d\x39\x40\xd9\xc0\xee\xb0\xcf\xa0\x6c\x50\x77\xd0\x67\x50\x35\xa0\x3b\xe4\x33\xa7\xfe\x88\xf9\x8c\xba\x6f\x39\x0d\xfc\x1f\x4b\x45\x1e\x8d\x01\x5d\x54\x34\xa8\x09\xcf\x0e\xd6\xfb\x67\xd6\x51\x48\x7a\x3b\xb6\xf3\xe2\x18\xe6\xda\x18\x7d\x00\x04\x43\x39\x19\x52\x82\x5a\xaf\x8e\x8d\x6d\xc8\xea\xda\x08\x3a\x49\xbd\xea\x02\xb8\x01\x77\xa6\x68\xe3\xbb\x7f\xb9\x66\x89\xaf\x2d\xcf\xd0\x1d\xe8\x92\x0d\x7c\xd5\x9a\xb5\xc1\x2d\x3d\x21\xef\xa6\xed\x83\xdb\x5b\xa8\x50\x49\x11\x4e\xee\x74\x5d\x64\xea\x3d\x43\x33\xea\x5a\x0f\x58\xb5\xe2\x27\xae\xc5\x9b\x5b\x9f\x5e\x49\xd4\x4c\x27\xf3\xa4\x59\x36\x72\x4e\xcb\xe2\xec\x37\xfb\x1f\xfb\x47\x96\x78\x78\xa0\xfd\xd0\xf5\x57\xae\x7d\x14\x58\x69\xcb\x8d\xb8\xf1\x52\xdb\x71\x7f\xca\x73\x12\x2c\xf7\x94\xf6\xbf\x15\x67\x5e\x98\x46\xad\x88\xc8\xb2\x91\x82\x17\xbf\x6b\x2c\x9e\x75\x78\x45\x49\x57\xdd\x52\x4f\x60\xb2\xec\xa1\x39\xa0\x05\xa5\xd9\x7d\xec\x28\x1b\x80\x7a\x76\x9c\x26\x7e\x91\xb7\xe0\x5f\x00\x00\x00\xff\xff\x6f\x29\x85\xa7\x78\x05\x00\x00" func nodeversionbeaconAdminSet_version_boundaryCdcBytes() ([]byte, error) { return bindataRead( @@ -4659,11 +4570,11 @@ func nodeversionbeaconAdminSet_version_boundaryCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/set_version_boundary.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0x5f, 0x19, 0x8f, 0xfe, 0x87, 0x52, 0x72, 0x46, 0xb0, 0x81, 0xa2, 0xc2, 0xf7, 0x57, 0xb4, 0x96, 0xcb, 0xa2, 0xcc, 0xe3, 0xf0, 0x47, 0x81, 0x59, 0x45, 0x5f, 0xf7, 0xcb, 0x2a, 0x8e, 0xb5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0x49, 0x35, 0xe6, 0xaf, 0x28, 0x5e, 0xc9, 0x5b, 0x35, 0xf1, 0x3, 0x12, 0x28, 0xdd, 0x59, 0xcb, 0x3b, 0xdf, 0x46, 0xd5, 0xa8, 0x3, 0x78, 0x65, 0xe5, 0xcf, 0xd4, 0x1e, 0xb, 0xa1, 0x5d}} return a, nil } -var _nodeversionbeaconScriptsGet_current_node_versionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xae\xc2\x30\x10\x04\x7b\x7f\xc5\x2a\xcd\x4b\x9a\xa4\x7f\x25\x14\x74\x34\x20\x7a\x63\x5f\xc0\x52\x7c\x87\xce\xe7\x48\x08\xf1\xef\x14\x21\x55\x68\x67\x47\xda\x49\xf9\x21\x6a\x38\x4a\xa4\x0b\x69\x49\xc2\x3b\xf2\x41\x18\xa3\x4a\x46\xb3\xe1\x8d\x73\xc3\x30\xe0\x40\x56\x60\x77\x42\xa8\xaa\xc4\x86\x79\x91\x10\x69\x4c\x4c\x11\x89\x97\x59\xd8\xd4\x07\xfb\x2b\xab\x71\xf6\xd7\x89\x9c\x0f\x81\x4a\x69\xfd\x34\x75\x18\x2b\x23\xfb\xc4\x6d\xf7\xbf\xed\xe8\x4f\x94\x67\x52\xbc\x1c\x00\x28\x59\x55\xfe\x61\xdd\xc8\xf6\x4b\xc9\xca\xa5\x72\xf4\xfa\x6c\xbb\xfe\x7b\xec\xde\xee\x13\x00\x00\xff\xff\x85\x05\xca\x6f\xed\x00\x00\x00" +var _nodeversionbeaconScriptsGet_current_node_versionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\x4e\xc4\x30\x10\x44\x7b\x7f\xc5\x74\x24\xcd\x85\x9a\xee\xee\x12\x21\x1a\x47\x3a\xa3\xeb\x8d\xbd\x01\x4b\xf1\x1a\xad\xd7\x27\x10\xe2\xdf\x29\x42\x2a\x68\x67\x9e\x66\x5e\xca\xef\x45\x14\xb6\x44\xba\x92\xd4\x54\xf8\x44\x3e\x14\xc6\x22\x25\xe3\xfe\xc3\xce\xe3\x74\x9d\x2e\xee\x69\xb6\xa7\xe9\x78\x9e\xed\x71\x1c\x2f\x93\x73\xc6\x0c\xc3\x80\x47\xd2\x0a\x7d\x23\x84\x26\x42\xac\xb8\x6d\x1b\x88\xb4\x24\xa6\x88\xc4\x5b\x5d\x58\xc5\x07\xbd\xab\x3b\xf1\xec\x5f\x56\x32\x3e\x04\xaa\xb5\xf3\xeb\xda\x63\x69\x8c\xec\x13\x77\xfd\xc3\x5f\x9d\x83\xa3\x7c\x23\xc1\x97\x01\x00\x21\x6d\xc2\xff\x50\xaf\xa4\xe7\xcd\x64\xcf\x4b\xe3\xe8\xe5\xb3\xeb\x0f\xbf\xc7\xe6\xdb\xfc\x04\x00\x00\xff\xff\x47\x41\x59\xb1\xf4\x00\x00\x00" func nodeversionbeaconScriptsGet_current_node_versionCdcBytes() ([]byte, error) { return bindataRead( @@ -4679,11 +4590,11 @@ func nodeversionbeaconScriptsGet_current_node_versionCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_current_node_version.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0xcf, 0xc4, 0xaa, 0x86, 0xfc, 0xd, 0x40, 0xfc, 0xe6, 0xbb, 0xcc, 0x27, 0xcc, 0xf8, 0x3f, 0x97, 0x44, 0xb5, 0x3, 0x35, 0xb9, 0xe4, 0xe4, 0xa6, 0x73, 0x22, 0xa5, 0xc3, 0x50, 0x54, 0x87}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0xda, 0xbd, 0xd1, 0x7e, 0x56, 0x32, 0x8f, 0x92, 0x35, 0xa8, 0x28, 0x92, 0xb9, 0xd0, 0xf, 0x32, 0xf6, 0x4a, 0xfa, 0x60, 0x0, 0xe4, 0xd2, 0xf0, 0xc5, 0x29, 0x96, 0xb3, 0xb, 0xc0, 0x5f}} return a, nil } -var _nodeversionbeaconScriptsGet_current_node_version_as_stringCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\xb1\x4e\x04\x31\x0c\x44\xfb\x7c\xc5\xe8\xaa\xa4\xc9\xf6\x48\x34\x50\xd0\xd1\x80\xe8\x7d\x89\xf7\x88\x94\x75\x90\xe3\x20\x21\xc4\xbf\x23\xed\x06\x9a\x6d\xdf\x8c\xc7\xaf\x6c\x1f\x4d\x0d\xcf\x2d\xf3\x1b\x6b\x2f\x4d\x1e\x98\x52\x13\xac\xda\x36\x5c\x4e\xfc\xe2\xdc\xb2\x2c\x78\x62\xeb\xb0\x77\x46\x1a\xaa\x2c\x86\xcf\xa3\x84\xcc\x6b\x11\xce\x28\xb2\xc7\x13\xbf\xd2\xb5\xf2\x7e\x48\x1d\x84\x17\xd3\x22\xb7\xe8\x28\x25\xee\xdd\x53\xad\x01\xeb\x10\x6c\x54\xc4\x87\xbb\x99\xe3\xdb\x01\x40\x65\xc3\xb5\x0d\xc9\xa4\x5f\xb8\x3f\x9b\xc6\x1b\xdb\xe3\x61\xf1\xc7\x67\xdb\x87\x7d\x40\xd9\x86\xca\xff\x46\x9c\x4e\xd1\xda\xf1\xc7\x07\xf7\xe3\x7e\x03\x00\x00\xff\xff\xb6\xe8\xbb\xb2\x08\x01\x00\x00" +var _nodeversionbeaconScriptsGet_current_node_version_as_stringCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\x31\x4f\x84\x40\x10\x85\xfb\xfd\x15\xaf\x84\x06\xac\x4d\x2c\xee\x0e\x62\x6c\x20\x39\xcc\xf5\x73\x30\x9c\x9b\xc0\xac\x99\x9d\x35\x1a\xe3\x7f\x37\x81\xd5\xe6\xda\xf7\x66\xbe\xf7\xf9\xf5\x3d\xa8\xa1\x0b\x13\x5f\x58\xa3\x0f\x72\x64\x1a\x83\x60\xd6\xb0\xe2\xe1\xb3\xeb\x9b\xf6\xd2\x9e\x87\x97\xbe\x3b\xb6\x87\x53\xdf\x1d\x9a\xe6\xdc\x0e\x83\x73\x75\x5d\xe3\x99\x2d\xc2\xde\x18\x63\x52\x65\x31\x7c\xec\x0c\x4c\x3c\x7b\xe1\x09\x5e\xb6\x3a\xc7\xaf\x74\x5d\x78\x7b\xa4\x08\xc2\x60\xea\xe5\x56\x39\x1a\x47\x8e\xb1\xa0\x65\x29\x31\x27\xc1\x4a\x5e\x8a\xf2\x31\xf7\xf8\x76\x00\xb0\xb0\xe1\x1a\x92\x4c\xa4\x5f\x78\xba\x17\xae\x6e\x6c\xa7\xdd\xe2\x2f\xcf\xd7\x45\xb9\x01\x94\x2d\xa9\xfc\x33\xaa\xec\x54\x59\xd8\x77\x8a\xd2\xfd\xb8\xdf\x00\x00\x00\xff\xff\x35\x6a\x96\x0b\x0f\x01\x00\x00" func nodeversionbeaconScriptsGet_current_node_version_as_stringCdcBytes() ([]byte, error) { return bindataRead( @@ -4699,11 +4610,11 @@ func nodeversionbeaconScriptsGet_current_node_version_as_stringCdc() (*asset, er } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x95, 0x4a, 0x28, 0x9c, 0x3d, 0x34, 0xab, 0xe4, 0x22, 0xbd, 0x8d, 0x1f, 0x3b, 0x1f, 0xeb, 0x42, 0xe7, 0xa4, 0x2, 0xb1, 0xec, 0x6d, 0x34, 0x10, 0xc1, 0xd8, 0x6c, 0xc2, 0xec, 0xcd, 0x9f, 0x68}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x56, 0xe6, 0x27, 0x42, 0x24, 0xcc, 0xd6, 0xfd, 0x7f, 0xbb, 0xf3, 0xf8, 0xbd, 0x9d, 0x60, 0x8a, 0xa8, 0x84, 0x6c, 0x5a, 0x7b, 0xd6, 0x71, 0x7e, 0x30, 0x72, 0x58, 0xfd, 0x22, 0xe4, 0xa7, 0x7}} return a, nil } -var _nodeversionbeaconScriptsGet_next_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xbf\x6a\xc4\x30\x0c\xc7\xf1\xdd\x4f\xf1\x23\x53\xb2\x34\x7b\x97\x42\x1f\x20\x43\x87\xee\xae\x2d\xa7\x82\x58\x0a\xb2\x1d\x52\xca\xbd\xfb\x71\xff\x96\xcb\x8d\x12\x9f\xaf\x10\xe7\x55\xad\x62\xd2\x48\xdf\x64\x85\x55\x3e\xc9\x07\x15\x24\xd3\x8c\xee\xb0\xef\x9c\x1b\xc7\x11\x5f\x54\x8d\x69\xa3\x82\xfa\x4b\x10\xda\x2b\xb6\x1b\xc3\x8f\x36\x89\xde\xfe\xa0\x06\xe1\xe5\xca\x39\x5d\x9c\x11\xb8\x40\x14\x6d\x0d\x9a\x59\xe6\x63\x13\x29\xb1\x50\x74\x3e\x04\x2a\xa5\xf7\xcb\x32\x20\x35\x41\xf6\x2c\xfd\xf0\x7e\xfc\xf3\xed\x31\xdd\x2f\x7c\xe0\xdf\x01\x80\x51\x6d\x26\x2f\xfc\x4c\x75\xa2\xbd\x3e\x65\xfd\xe0\x4e\xee\x1c\x00\x00\xff\xff\x75\x24\x24\x44\x0c\x01\x00\x00" +var _nodeversionbeaconScriptsGet_next_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x3d\x6b\xc3\x40\x10\x44\xfb\xfb\x15\x53\x4a\x4d\x94\x3a\x4d\xb0\x23\x15\x69\x4e\x20\x81\xfb\x8b\xb4\x72\x16\x74\xbb\x66\xef\xce\x28\x84\xfc\xf7\x90\xaf\x26\x72\x39\xf0\xde\x63\x38\x5e\xd4\x32\xbc\xce\x74\x22\x4b\xac\x72\xa4\x30\xa9\x60\x31\x8d\xb8\xdf\x7c\xdf\x76\xa7\x6e\x18\x9f\x7b\x7f\xec\x0e\x4f\xbd\x3f\xb4\xed\xd0\x8d\xa3\x73\x4d\xd3\x60\xa0\x6c\x4c\x57\x4a\xc8\xaf\x04\xa1\x2d\xe3\xfa\x53\xc1\x8b\x16\x99\x83\xbd\x41\x0d\xc2\xeb\x37\xce\xcb\x17\x67\x04\x4e\x10\x45\xb9\x4c\x1a\x59\xce\x7b\x67\xa6\x85\x85\x66\x17\xa6\x89\x52\xaa\xc2\xba\xd6\x58\x8a\x20\x06\x96\xaa\x7e\xd8\xdf\xbd\xfb\x5b\xbf\x85\x47\xbc\x3b\x00\x30\xca\xc5\xe4\x06\x7f\xa6\xec\x69\xcb\xff\xb4\xaa\x76\x1f\xee\x33\x00\x00\xff\xff\x89\xa3\xee\xcb\x13\x01\x00\x00" func nodeversionbeaconScriptsGet_next_version_boundaryCdcBytes() ([]byte, error) { return bindataRead( @@ -4719,11 +4630,11 @@ func nodeversionbeaconScriptsGet_next_version_boundaryCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_next_version_boundary.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x75, 0xb3, 0x64, 0xda, 0xd6, 0x80, 0x83, 0xd1, 0x25, 0x20, 0x2d, 0x41, 0xf5, 0x29, 0xd2, 0xd2, 0x6a, 0x68, 0x45, 0x17, 0x46, 0x2a, 0x5a, 0x4b, 0x8, 0xc5, 0x33, 0xd4, 0xfa, 0xbd, 0xc1, 0x4d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5f, 0xa3, 0x70, 0xc8, 0x50, 0x45, 0x45, 0xf5, 0x2f, 0x3d, 0xf5, 0x1c, 0x62, 0x1f, 0xfd, 0xb6, 0x13, 0xb, 0xdc, 0xec, 0x0, 0x9, 0xb0, 0x42, 0x65, 0x91, 0xed, 0x4b, 0xb8, 0xcd, 0xd4, 0x5f}} return a, nil } -var _nodeversionbeaconScriptsGet_next_version_update_sequenceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xce\x31\x8b\xc2\x40\x14\xc4\xf1\x7e\x3f\xc5\x90\x2a\x69\x2e\xcd\x71\xc5\x95\x36\x62\x93\x46\xb4\xdf\x6c\x26\x1a\xc8\xbe\x8d\x6f\xdf\x4a\x40\xfc\xee\x82\xd8\x48\xda\xdf\x14\xf3\x9f\xe2\x92\xd4\xd0\xa5\x81\x67\x6a\x9e\x92\xec\xe8\x43\x12\x8c\x9a\x22\xaa\x8d\x57\xce\xb5\x6d\x8b\x3d\x2d\xc3\xae\x84\x70\x35\x64\xde\x0a\x25\x10\x52\x62\x4f\xc5\x98\xf4\x3d\x9a\xef\x67\xa2\x2c\x83\x37\x0e\xe0\x9d\x62\xce\x87\xc0\x9c\x6b\x3f\xcf\x0d\xc6\x22\x88\x7e\x92\xba\xf9\xc7\xe9\x20\xf6\xf7\x8b\x87\x03\x00\xa5\x15\x95\x6d\xd5\xcf\x85\xd6\x71\xb5\x2f\x3c\x7e\xde\xeb\xc6\x3d\x5f\x01\x00\x00\xff\xff\x15\x0c\xe6\x10\xcf\x00\x00\x00" +var _nodeversionbeaconScriptsGet_next_version_update_sequenceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\xb1\x4e\xc3\x30\x18\x06\x77\x3f\xc5\x37\x26\x0b\x61\x40\x0c\x6c\x2d\x89\x50\x17\x47\xaa\x45\x77\xd7\xf9\x02\x91\xe2\xdf\xc1\xfe\x8d\x22\x21\xde\x1d\x09\xb1\xa0\xae\x77\xc3\xdd\x12\xb7\x94\x15\x36\x4d\xbc\x30\x97\x25\xc9\x91\x3e\x24\xc1\x9c\x53\xc4\xfd\x6e\xc7\x7e\xb8\x0c\x67\x77\x1a\xed\x71\x38\x3c\x8f\xf6\xd0\xf7\xe7\xc1\x39\x63\xba\xae\xc3\x0b\xb5\x40\xdf\x09\xe1\xae\x28\xfc\xa8\x94\x40\x48\x8d\x57\x66\xcc\x29\xff\x4a\xf5\xd7\x95\xa8\xdb\xe4\x95\x13\xf8\x49\x51\xe3\x43\x60\x29\x8d\x5f\xd7\x16\x73\x15\x44\xbf\x48\xd3\x3e\xe1\xf5\x24\xfa\xf8\x80\x2f\x03\x00\x99\x5a\xb3\xdc\xce\xdd\xbd\x51\x2d\x77\xfd\x07\xdd\x5f\xbd\x69\xcd\xf7\x4f\x00\x00\x00\xff\xff\x7b\x67\x35\x0d\xd6\x00\x00\x00" func nodeversionbeaconScriptsGet_next_version_update_sequenceCdcBytes() ([]byte, error) { return bindataRead( @@ -4739,11 +4650,11 @@ func nodeversionbeaconScriptsGet_next_version_update_sequenceCdc() (*asset, erro } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_next_version_update_sequence.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0x59, 0xeb, 0x83, 0xb9, 0x7c, 0xaf, 0x1c, 0x21, 0xdf, 0x42, 0x68, 0xcd, 0x9, 0x94, 0x45, 0xa5, 0xd4, 0xc4, 0x6d, 0xa6, 0x19, 0x7f, 0xac, 0x69, 0x9a, 0x84, 0xe7, 0xe6, 0x74, 0x11, 0x3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8c, 0xd8, 0x13, 0x8d, 0x9d, 0x9, 0x9c, 0xb1, 0x35, 0x73, 0xc3, 0xac, 0xd9, 0x26, 0x60, 0xbf, 0xb5, 0x3c, 0x63, 0x5d, 0xd3, 0x22, 0xca, 0xc5, 0x1f, 0xb7, 0xba, 0x6a, 0xe2, 0x88, 0xf1, 0x7a}} return a, nil } -var _nodeversionbeaconScriptsGet_version_boundariesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x3f\xcb\x83\x30\x10\xc6\xf7\x7c\x8a\x07\x27\x85\x17\xdd\x1d\xdf\xad\x4b\x29\x1d\xdc\x0f\x3d\xd3\x80\x5e\xe4\x12\x85\x52\xfa\xdd\x4b\xac\x85\xb6\x76\x09\xb9\xe7\x0f\xcf\xcf\x8d\x93\xd7\x88\xa3\xef\xb8\x61\x0d\xce\xcb\x3f\x53\xeb\x05\xbd\xfa\x11\xd9\x4e\xcf\x8c\xa9\xaa\x0a\x67\x8e\xb3\x4a\x40\xbc\x30\x96\xcd\xf7\xb3\x74\xa4\x8e\x03\x26\xb2\x8c\xde\xeb\x6a\x5b\xb7\xb0\x3c\x25\x92\x0e\x13\xeb\x89\x2c\x97\x86\xda\x96\x43\xc8\x69\x18\x0a\xf4\xb3\x60\x24\x27\x79\x8a\xd5\x38\x48\xfc\x7b\x05\xd7\xab\xa8\xf7\x84\x65\xf3\xb1\x7b\x4d\x61\xdc\x0c\x00\xe8\x4a\xf7\xa3\x62\x39\x36\xdf\xb4\xa9\xb7\xed\xa6\xf7\x6d\x78\xfb\x14\xe6\xfe\x08\x00\x00\xff\xff\xca\xa3\xbd\xbb\x26\x01\x00\x00" +var _nodeversionbeaconScriptsGet_version_boundariesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x4f\x6b\x84\x30\x10\xc5\xef\xf9\x14\xef\xb8\x42\x59\x7b\xde\xdb\x6e\xf5\xb0\x17\x2d\x0a\xde\x07\x1d\xd3\xc0\x3a\x91\x49\x94\x96\xd2\xef\x5e\x62\x2d\xf4\xcf\x5e\x42\x66\xe6\x3d\x7e\x3f\x37\xcd\x5e\x23\x2a\x3f\x70\xc7\x1a\x9c\x97\x0b\x53\xef\x05\xa3\xfa\x09\x8f\xaf\x55\x5d\x94\x5d\xd9\xb4\xd7\xba\xba\x94\xe7\xa7\xba\x3a\x17\x45\x53\xb6\xad\x31\x79\x9e\xa3\xe1\xb8\xa8\x04\xc4\x17\xc6\xba\xd7\xfd\x22\x03\xa9\xe3\x80\x99\x2c\x63\xf4\xba\x9d\xad\x5b\x59\xbe\x56\x24\x03\x66\xd6\x67\xb2\x7c\x34\xd4\xf7\x1c\xc2\x81\x6e\xb7\x0c\xe3\x22\x98\xc8\xc9\x21\xc5\x4e\xb8\x4a\x7c\xf8\x0e\x6e\x53\x76\xfa\x2f\x7a\xec\x7e\x71\xdf\x52\x18\xef\x06\x00\x74\xb3\xbb\x53\xb1\x1c\xbb\xbf\xb6\xa9\xb7\x73\xd3\xfb\x03\xbc\x7f\x32\xf3\xf1\x19\x00\x00\xff\xff\xd8\x87\x25\x09\x2d\x01\x00\x00" func nodeversionbeaconScriptsGet_version_boundariesCdcBytes() ([]byte, error) { return bindataRead( @@ -4759,11 +4670,11 @@ func nodeversionbeaconScriptsGet_version_boundariesCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_version_boundaries.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0xa1, 0x9, 0x94, 0xd7, 0xa0, 0x68, 0x9d, 0xa1, 0x3f, 0x5d, 0xe9, 0xd1, 0x3a, 0x52, 0x92, 0x56, 0xf0, 0xc1, 0x29, 0x9b, 0x93, 0xef, 0x15, 0x57, 0x95, 0x86, 0x70, 0xb4, 0xa4, 0x2b, 0xe2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x0, 0x6e, 0xe3, 0xa1, 0x72, 0x53, 0xfd, 0x7f, 0x89, 0xab, 0xac, 0xcd, 0x72, 0x9c, 0xcf, 0x8c, 0xa9, 0x53, 0x25, 0x7c, 0x6d, 0x65, 0x67, 0x8, 0x6f, 0x5f, 0x64, 0xa4, 0x76, 0x27, 0x25, 0x5a}} return a, nil } -var _nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xd0\xb1\x4e\xc4\x30\x0c\x06\xe0\x3d\x4f\xf1\xeb\xa6\x76\xa1\x0b\x62\x60\x64\x40\x62\x41\x08\x89\xdb\xdd\xc4\x6d\x2c\x1a\xa7\x4a\x1c\x4e\x80\x78\x77\xa4\x5e\x99\x2a\x56\xdb\xfa\xec\xdf\x92\xd6\x5c\x0c\xcf\x39\xf0\x99\x4b\x95\xac\x0f\x4c\x3e\x2b\xa6\x92\x13\x4e\x87\xfa\xc9\xb9\x61\x18\xf0\xca\xd6\x8a\x56\x58\x64\x7c\xec\xfd\xdc\x34\x50\xf9\x7c\x2c\xcc\x5f\xfc\xc2\x45\x72\xc0\x25\x8a\x8f\x08\x3c\x89\xf2\x75\x3a\x89\x4a\x6a\x09\xda\xd2\xc8\x05\x79\xc2\xb8\x64\xff\x5e\x37\xd6\x22\x19\x52\xab\x86\x95\x6a\xc5\xc8\x76\x61\x56\xb4\x35\x90\x89\xce\xa0\xbf\x65\x20\x0d\x10\xab\x3b\x1d\xae\x08\x22\xcb\x1c\x6d\xa3\xc6\xfd\x1c\x47\xde\x73\xad\x1d\x2d\x4b\x8f\xa9\x29\x12\x89\x76\xfd\x3d\xde\x9e\xd4\xee\x6e\xf1\xed\x00\xa0\x6c\x79\x8e\x6f\xb8\x99\xd9\xce\xff\xe7\xeb\x7a\xf7\xf3\x1b\x00\x00\xff\xff\x2f\xba\x20\x02\x42\x01\x00\x00" +var _nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xd0\x3f\x4f\x84\x40\x10\x05\xf0\x9e\x4f\xf1\xca\xa3\x11\x0b\x63\x61\x77\x27\x98\x5c\x03\x06\x22\xfd\xc2\x0e\xec\x46\x76\x96\xec\xce\x7a\xfe\x89\xdf\xdd\x84\xc3\xca\xd8\xcf\xfc\x66\xde\xb3\x6e\xf5\x41\x50\x7b\x4d\x3d\x85\x68\x3d\x9f\x48\x8d\x9e\x31\x05\xef\x70\xfb\x5e\x37\x65\xd5\x57\x6d\x77\x6e\xea\x53\x75\x7c\x6c\xea\x63\x59\xb6\x55\xd7\x65\x59\x51\x14\x68\x49\x52\xe0\x08\x31\x84\xb7\x7d\xdd\x27\xd6\x2a\x7c\x3c\x05\xa2\x4f\x7a\xa6\x60\xbd\xc6\xc5\xd8\xd1\x40\xd3\x64\x99\xae\xd3\xce\xb2\x75\xc9\x81\x93\x1b\x28\xc0\x4f\x18\x16\x3f\xbe\xc6\x8d\x15\xa3\x04\x2e\x45\xc1\xaa\x62\xc4\x40\x72\x21\x62\xa4\x55\x2b\xb1\x3c\x43\xfd\x1e\x83\x62\x0d\x2b\x71\xa7\xf5\x15\x81\x21\x3b\x1b\xd9\xa8\x61\x7f\x27\x53\xe3\x48\x31\x1e\xd4\xb2\xe4\x98\x12\xc3\x29\xcb\x87\xfc\x01\x2f\x67\x96\xfb\x3b\x7c\x65\x00\x10\xb6\x3c\x7f\xdb\xb8\x99\x49\xfa\xff\xf3\x1d\xf2\xec\xfb\x27\x00\x00\xff\xff\xb5\x6c\x77\xbf\x49\x01\x00\x00" func nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdcBytes() ([]byte, error) { return bindataRead( @@ -4779,11 +4690,11 @@ func nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdc() (*asset, er } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_version_boundary_freeze_period.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0x6, 0x8b, 0x76, 0x1c, 0x24, 0xee, 0x96, 0x38, 0x5f, 0x6a, 0xf, 0x88, 0xd6, 0x73, 0xa4, 0x44, 0x22, 0xa4, 0x98, 0xb7, 0x60, 0x1, 0x71, 0x29, 0xb4, 0xf9, 0xdd, 0x3c, 0xd0, 0xa2, 0x32}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7f, 0xf5, 0x7b, 0xf6, 0x9, 0x90, 0x24, 0x7d, 0x58, 0xd, 0x5a, 0x95, 0x8d, 0x78, 0xa3, 0x31, 0xed, 0xb1, 0x7c, 0xca, 0x9a, 0x88, 0x77, 0x8f, 0x5a, 0x5, 0x9e, 0x5b, 0xb5, 0x29, 0x49, 0xa8}} return a, nil } -var _quorumcertificateAdminPublish_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x6a\xf3\x30\x10\x84\xef\x7a\x8a\x21\x87\xe0\xc0\x8f\x7d\x0f\x7f\x0b\x41\xd0\x73\x43\xfb\x02\x1b\x75\x63\x0b\x14\xad\x58\xad\x93\x43\xc8\xbb\x17\xdb\x6d\x49\x20\x3a\x0e\xfa\xbe\x19\x29\x9e\x8a\xa8\xe1\x2d\xc9\xc5\xa7\xb1\x1a\xeb\xde\xe3\xa8\x72\xc2\xea\x21\x5b\x39\xd7\x75\xf8\xe4\x6a\x30\xa5\x5c\x29\x58\x94\x8c\xa3\x28\x6c\x60\xec\x3d\xe8\xeb\x14\x33\x4c\x50\xc6\x43\x8a\x75\x00\x41\xf9\xc8\xca\x39\xf0\xc4\xda\x40\x06\x4a\x49\x2e\x15\x14\x82\x8c\xd9\xea\x74\x5d\xb9\x8f\x53\xc7\xec\xda\x7b\x9c\xc5\x62\xee\x9d\xbb\xaf\xb9\x3a\x07\x00\x45\xb9\x90\x72\x53\x63\x9f\x59\xb7\xa0\xd1\x86\xc6\x53\xa1\x43\x4c\xd1\x22\xd7\x0d\xd6\xbb\x45\xbd\xc1\x75\x46\xa6\x93\xd8\x96\x75\x9e\x0a\x5e\xb0\xd0\x6d\xb8\xe3\xda\x6a\xa2\xd4\x73\x1b\x6b\x1d\xf9\xff\xfa\xe1\xe9\xed\x6e\x62\x5f\x9b\x27\xe1\xc7\x82\xbd\x93\x0d\x9b\xbf\xba\x67\xfe\x9f\x3f\x69\x7e\x67\xfc\x03\xd9\x16\xdd\x1c\x87\xee\x2c\xc6\xea\x95\xc9\x44\x17\xcf\xcd\xdd\xdc\x77\x00\x00\x00\xff\xff\xbf\xcc\x5d\xab\x9b\x01\x00\x00" +var _quorumcertificateAdminPublish_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4e\xc3\x30\x10\x44\xef\xfe\x8a\x39\xa1\x56\x42\x0d\xe7\x0a\x21\x45\x2e\x9c\x09\xe5\x07\x96\xb0\x89\x2d\x1c\x6f\xb4\xde\xb4\x48\x55\xff\x1d\x39\xbd\x80\xc4\x5e\x77\x66\xde\x4c\x9c\x66\x51\xc3\x4b\x92\xb3\x4f\x4b\x31\xd6\xce\x63\x50\x99\xf0\xf0\xdd\xf9\xf6\x70\x78\x7b\x3e\x1e\x9d\x6b\x1a\xbc\x73\x31\x98\x52\x2e\xd4\x5b\x94\x8c\x41\x14\x16\x18\x9d\x07\x7d\x4e\x31\xc3\x04\xf3\xf2\x91\x62\x09\x20\x28\x0f\xac\x9c\x7b\xae\x5e\x0b\x64\xa0\x94\xe4\x5c\x40\x7d\x2f\x4b\xb6\x52\xe5\xca\x63\xac\xcc\x35\xab\xf3\x38\x89\xc5\x3c\x3a\xf7\x1b\x73\x71\x0e\x00\x66\xe5\x99\x94\x37\x25\x8e\x99\x75\x8f\x76\xb1\xd0\xde\xa2\xb6\xb8\xac\x92\x7a\xb7\xf7\x2e\xc5\xfc\xf5\x78\xf7\x67\xd5\xae\xad\x25\x9f\x36\xcd\xda\xb1\x6f\x4e\x62\xac\x5e\x99\x4c\xf4\x1e\x46\x3a\xb2\xed\xf1\x8f\xe5\x68\xa2\x34\xf2\x2b\x59\xd8\xae\x9c\xab\xbb\xfe\x04\x00\x00\xff\xff\x97\xf7\x08\x84\x37\x01\x00\x00" func quorumcertificateAdminPublish_voterCdcBytes() ([]byte, error) { return bindataRead( @@ -4799,11 +4710,11 @@ func quorumcertificateAdminPublish_voterCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/admin/publish_voter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2f, 0xd7, 0x84, 0xd7, 0x6, 0xe, 0x60, 0xa8, 0x8, 0xe9, 0x87, 0x59, 0x2c, 0x71, 0xbf, 0x8c, 0x9e, 0xd2, 0xe2, 0xa3, 0x9c, 0x39, 0xfc, 0xfe, 0x41, 0xe8, 0x1f, 0xc2, 0x19, 0x5b, 0x40, 0xe6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x62, 0x25, 0xcd, 0x7f, 0xbf, 0x92, 0xcd, 0x55, 0x37, 0x4c, 0xbc, 0x66, 0x88, 0x88, 0x9, 0x48, 0xe5, 0x38, 0x46, 0x33, 0xac, 0x31, 0x40, 0x2c, 0x65, 0x1f, 0x77, 0x1, 0x34, 0x4, 0x5b, 0x37}} return a, nil } -var _quorumcertificateAdminStart_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\xc1\x6e\xdb\x38\x10\xbd\xeb\x2b\x1e\x7c\xc8\xca\xd8\xc0\xde\x00\x8b\x1c\x84\xf5\x06\xae\x8d\x02\xbe\x14\x4d\xdd\xa6\x07\x41\x07\x86\xa2\x25\x16\x32\xa9\x92\xa3\xb8\x81\xe1\x7f\x2f\x48\x4a\x8e\x18\xbb\x02\x0c\xc8\xe2\x7b\x33\x6f\x66\xde\x50\xee\x5b\x6d\x08\x1f\x1b\x7d\x58\x35\x9d\x25\x61\x1e\x57\xd8\x19\xbd\xc7\x24\xfa\x36\x49\x92\xf9\x1c\x5f\x85\x25\x90\x61\xca\x32\x4e\x52\x2b\xec\xb4\x01\xd5\x02\x8f\x2b\xb0\x72\x2f\x15\x48\xc3\x12\x33\x34\x7c\x7d\xd1\x24\x55\x85\x56\x18\xa9\x4b\x17\xe2\x20\xa9\x06\x03\x33\x86\xbd\x42\xef\xc0\x75\xd3\x08\x4e\xda\x40\xe9\x52\x80\x87\x84\xd6\xa7\x5b\x9a\xaa\xdb\x0b\x45\x36\x73\xff\xdc\x4f\xaa\x52\x72\x61\x33\x2c\xd5\x28\x44\xe0\x0c\x87\x0e\xd7\x7f\xfa\xa4\x4b\xb1\x59\x3b\xf8\x80\xf5\x24\xeb\xdf\x9a\xc6\x8b\xf4\x69\x37\x6b\x0b\xa9\x20\x18\xaf\x07\xae\x0b\xe3\xce\xbe\x0b\x59\xd5\x74\x3d\x86\xe7\x1e\x02\xe0\x82\x9f\x8c\x1a\x95\x9e\x85\xe7\xdf\x36\x8a\xee\xee\x8b\xdb\x0b\x8d\x79\xbe\x25\x23\x55\x55\x14\xb7\x71\xe2\xdc\x73\xee\xff\x2d\x8a\x29\x8e\x49\x02\x00\xad\x11\x2d\x33\x22\xb5\xb2\x52\xc2\x64\x60\x1d\xd5\xe9\x07\x6d\x8c\x3e\x3c\xb1\xa6\x13\x53\xdc\x2c\x39\xd7\x9d\xa2\x33\xc5\x3d\xf3\x39\x02\x08\x0c\x46\xec\x84\x11\x8a\x0b\x37\xb3\x68\x86\xfa\xf9\x87\xe0\x74\x26\x35\x82\xc2\xc1\x17\xb1\xc3\x02\x21\xe5\xcc\x92\x36\xac\x12\xb3\x67\x1f\xef\xbf\x9b\xc8\x2d\xb3\xa5\xc3\xff\x9f\x3a\x23\x65\xb8\x72\xb4\x0d\xec\xcf\x8c\xea\xe9\x39\x91\x7b\x1e\x1e\xd0\x32\x25\x79\x3a\x59\xe9\xae\x29\xa1\x34\x21\xa4\x88\x05\xff\xe4\x41\xd3\x64\x9a\x44\x42\x07\xff\x64\xc8\xe3\xb4\xfd\x5b\x81\x05\xf2\xe2\x4c\x19\x77\x66\x43\xc2\x30\x12\xa0\xda\xe8\xae\xaa\xa3\x61\x82\xa9\x12\x5c\x2b\x4b\xa6\xe3\x04\x86\x3e\xdc\xfb\x5e\xb9\x7d\x90\xaa\x14\xbf\x9c\x1b\xfa\x99\x8f\x07\x30\xc8\x1c\xcd\x77\x2d\xbd\x43\x98\x79\xcd\x70\x0c\x0e\xc8\x10\x06\x7e\xc2\x02\xc7\x53\x44\x7e\x61\x06\x12\x0b\xfc\x13\xc7\x9c\xcf\xb1\x15\x14\x24\xbb\xd8\x7f\x59\xc8\xd2\x8b\x0e\xee\x7c\x0f\x5e\xb1\x86\x77\x4d\xa8\xd6\xf5\x93\x58\xd3\x23\x7d\x09\x91\x8f\xc7\xd4\x5d\xbf\xa7\x9b\xb5\x2b\x30\x76\x70\xee\x0b\x2f\x70\x8c\x18\xe3\x8a\x2d\x16\xe3\xca\x7b\xc2\x1f\xe1\x01\xd6\x73\x6c\x2e\x8b\xe4\x02\x7a\xb5\x8f\x79\x50\x58\x44\xd9\x2e\xb9\xae\x8d\x12\x7f\xe3\x2e\x3a\x39\xc5\xc0\xc1\x4f\x33\xd6\xb6\x42\x95\xe9\x55\x53\xa5\xbe\x90\x2c\x4c\xfe\xdd\xf2\x5e\x55\x38\x7d\x33\xfd\x29\xda\xce\xad\xbf\x3b\x1f\x57\x78\x0a\xf7\xa6\xbf\x2d\xdd\x88\x6c\xd7\xb6\x8d\x14\xe5\xdb\x05\x39\xb0\x86\xd5\x9c\xf9\x7b\x37\xf0\xd2\xb7\x35\x18\xde\x42\xc6\x53\x72\xfa\x1d\x00\x00\xff\xff\xd2\x6f\xc8\x6d\xf2\x05\x00\x00" +var _quorumcertificateAdminStart_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\xcd\x6e\xdb\x3c\x10\xbc\xeb\x29\x06\x39\x7c\x9f\x8d\x06\x76\x02\x14\x39\x08\x75\x03\xd7\x6e\x01\x5f\x8a\x3a\xee\xcf\x41\xd0\x81\xa1\x68\x89\x85\x4c\xaa\xe4\x2a\x4e\x60\xf8\xdd\x0b\x92\x92\x23\xc6\xae\x00\x03\xb2\x38\xb3\x3b\xbb\x3b\x5c\xb9\x6b\xb4\x21\x7c\xa9\xf5\x7e\x51\xb7\x96\x84\x59\x2f\xb0\x35\x7a\x87\x9b\xe7\xf5\x62\xbe\x5c\x3e\x7c\xde\x6c\x92\x64\x3a\xc5\x77\x61\x09\x64\x98\xb2\x8c\x93\xd4\x0a\x5b\x6d\x40\x95\xc0\x7a\x01\x56\xec\xa4\x02\x69\x58\x62\x86\xfa\xaf\x4f\x9a\xa4\x2a\xd1\x08\x23\x75\xe1\x42\xec\x25\x55\x60\x60\xc6\xb0\x17\xe8\x2d\xb8\xae\x6b\xc1\x49\x1b\x28\x5d\x08\xf0\x20\xc0\xfa\x74\x73\x53\xb6\x3b\xa1\xc8\xa6\xee\x9f\xfb\x49\x55\x48\x2e\x6c\x8a\xb9\x1a\x84\x08\x9c\xfe\xd0\xe1\xba\x4f\x5f\x75\x21\x56\x4b\x07\xef\xb1\x9e\x64\xfd\x5b\x5d\x7b\x91\x3e\xed\x6a\x69\x21\x15\x04\xe3\x55\xcf\x75\x61\xdc\xd9\x2f\x21\xcb\x8a\x2e\xc7\xf0\xdc\x7d\x00\x9c\xf1\x93\x41\xa3\x46\x27\xe1\xd9\x8f\x95\xa2\xdb\xbb\xfc\xfa\x4c\x63\x96\x6d\xc8\x48\x55\xe6\xf9\x75\x9c\x38\xf3\x9c\xbb\xf7\x79\x3e\xc6\x21\x49\x00\xa0\x31\xa2\x61\x46\x8c\xac\x2c\x95\x30\x29\xe6\x2d\x55\x73\xce\x75\xab\xe8\x84\x71\xcf\x74\x8a\x4f\xda\x18\xbd\x07\x83\x11\x5b\x61\x84\xe2\xc2\x0d\x29\x1a\x9a\x7e\xfc\x2d\x38\x9d\x48\xb5\xa0\x70\xf0\x20\xb6\x98\x21\xe4\x98\x3c\xfa\x38\x1f\xfe\x8b\x6c\x32\x99\x3b\xdc\xc7\x91\x73\x4b\x8a\x0b\x47\x1b\xd2\x86\x95\xe2\x1b\xa3\x6a\x7c\x4a\xe0\x9e\xfb\x7b\x34\x4c\x49\x3e\xba\x5a\xe8\xb6\x2e\xa0\x34\x21\xa4\x88\x85\xfe\xe1\x41\xcb\xd5\x38\x89\x04\xf6\x46\x49\x91\xc5\x69\xbb\xb7\x1c\x33\x64\xf9\x89\x32\xec\xc8\x8a\x84\x61\x24\x40\x95\xd1\x6d\x59\x45\x53\x03\x53\x05\xb8\x56\x96\x4c\xcb\x09\x0c\x5d\xb8\xb7\x3d\x72\xc6\x97\xaa\x10\xcf\x6e\xec\xdd\x70\x87\x8d\xef\x65\x0e\x06\xb9\x94\xde\x0a\xcc\xbc\xa4\x38\x84\x51\xa7\x08\x93\x3d\x62\x86\xc3\x31\x22\x3f\x31\x03\x89\x19\x6e\xe2\x98\xd3\x29\x36\x82\x82\x64\x17\xfb\x7f\x0b\x59\x78\xd1\xc1\x86\x6f\xc1\x0b\x56\xf3\xb6\x0e\xd5\xba\x7e\x12\xab\x3b\xa4\x2f\x21\x32\xec\x90\xba\xed\x2e\xe4\x6a\xe9\x0a\x8c\xad\x9a\xf9\xc2\x73\x1c\x22\xc6\xb0\x62\x8b\xd9\xb0\xf2\x8e\xf0\x4f\x78\x80\x75\x1c\x9b\xc9\x3c\x39\x83\x5e\xec\x63\x16\x14\xe6\x51\xb6\x73\xae\x6b\xa3\xc4\x3b\xdc\x46\x27\xc7\x18\xd8\xfb\x69\xc2\x9a\x46\xa8\x62\x74\xd1\x54\x23\x5f\x48\x1a\x26\xff\xe6\x96\x5e\x54\x38\x7e\x35\xfd\x31\xba\x95\x1b\xbf\x24\xd7\x0b\xfc\x0c\x0b\xd2\xaf\x45\x37\x22\xdb\x36\x4d\x2d\x45\xf1\xba\x09\x7b\x56\x7f\x25\x27\x7e\xc1\x06\xde\xe8\xf5\x1a\xf4\x6f\x21\xe3\x31\x39\xfe\x0d\x00\x00\xff\xff\x34\x89\x6e\x08\xd7\x05\x00\x00" func quorumcertificateAdminStart_votingCdcBytes() ([]byte, error) { return bindataRead( @@ -4819,11 +4730,11 @@ func quorumcertificateAdminStart_votingCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/admin/start_voting.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2a, 0x25, 0xc2, 0xfc, 0x62, 0x2e, 0xbc, 0xbe, 0xa8, 0x6, 0x15, 0x20, 0x12, 0xd0, 0x13, 0xe, 0x7, 0x1e, 0x52, 0x3, 0x82, 0xe1, 0xca, 0x1d, 0xcb, 0xfc, 0xda, 0x7b, 0x42, 0x3f, 0xa0, 0xfd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf5, 0x37, 0xb6, 0x46, 0xc9, 0xb7, 0x82, 0xbe, 0x4d, 0x32, 0x73, 0x50, 0x5, 0xcc, 0x34, 0x71, 0xdc, 0xa8, 0x85, 0xc1, 0x15, 0x8e, 0x4d, 0x2e, 0x95, 0x28, 0x22, 0x7c, 0x35, 0x6e, 0x5f, 0x44}} return a, nil } -var _quorumcertificateAdminStop_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x4f\xc3\x30\x14\x84\x77\xff\x8a\x53\x86\x2a\x59\xd2\xbd\x02\xaa\x12\x89\x99\x02\xea\x6e\x9c\x97\xc4\x52\xe2\x67\x9e\x5f\xe8\x50\xf5\xbf\x23\x27\xa2\xa2\x12\x37\x9e\xfd\xf9\xee\xec\xa7\xc8\xa2\x78\x19\xf9\xdc\x8c\x73\x52\x92\x63\x83\x4e\x78\x42\x71\xe7\x15\xc6\x6c\xb7\xf8\xa0\xa4\x50\xb1\x21\x59\xa7\x9e\x03\x3a\x16\xe8\x40\x38\x36\x70\x1c\x54\xac\x53\x28\x23\x29\xc7\xc5\xff\x66\xf5\xa1\x47\x24\xf1\xdc\x1a\xf3\x17\xbd\x18\x03\x00\x51\x28\x5a\xa1\x32\xf9\x3e\x90\xec\x60\x67\x1d\xca\x67\x16\xe1\xf3\xc9\x8e\x33\x55\xd8\x1c\x9c\xe3\x39\x68\x85\xcb\x42\x64\x8d\xa4\xb0\xed\xe4\xc3\x1b\x75\x78\xc4\x0a\xd7\x49\x59\x6c\x4f\xf5\xe7\x82\x3f\x6c\xee\x16\xd4\x87\x7c\xff\xa9\xcc\xe3\x76\xf8\xe7\xe8\x7d\xa5\x5f\xad\x0e\xd5\x2d\x28\x6b\xbf\x47\xb4\xc1\xbb\xb2\x68\x78\x1e\x5b\x04\x56\xac\x11\x10\xea\x48\x28\x38\xca\xab\xbf\xdc\xda\xa9\xa8\xcc\x8d\xff\x2d\x99\xbb\xc5\xd3\xf2\x1b\xe5\xfa\xfa\xd5\x5c\x7f\x02\x00\x00\xff\xff\x0d\x6e\x1d\x9b\x7d\x01\x00\x00" +var _quorumcertificateAdminStop_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4e\xf3\x30\x10\x84\xef\x7e\x8a\x51\x0f\xbf\xd2\x4b\xfa\x9f\x2b\xa0\x8a\x52\x38\x93\x06\x71\x37\xce\x26\xb1\x94\x78\xcd\x66\x43\x91\xaa\xbe\x3b\x72\x22\x2a\x90\x98\xa3\x3d\xb3\x33\x9f\x1f\x23\x8b\xe2\x69\xe0\x73\x39\xcc\x93\x92\x54\x25\x5a\xe1\x11\xff\x3f\xab\xb2\x38\x1e\x4f\x8f\x75\x6d\xcc\x6e\x87\x17\x9a\x14\x2a\x36\x4c\xd6\xa9\xe7\x80\x96\x05\xda\x13\xaa\x12\x8e\x83\x8a\x75\x0a\x65\x4c\xca\x71\x79\xff\x60\xf5\xa1\x43\x24\xf1\xdc\x18\xf3\x33\x7a\x31\x06\x00\xa2\x50\xb4\x42\xd9\xe4\xbb\x40\xb2\x47\x31\x6b\x5f\x38\xc7\x73\xd0\x2d\x2e\x8b\x25\x69\x20\x85\x6d\x46\x1f\x4e\xd4\xe2\x1e\xab\x3b\x7f\x63\x11\x3e\xdf\xfd\xfb\x35\x3d\x2f\x92\xef\x21\x4b\x04\x7b\xfc\xf1\x55\x2b\x8b\xed\xe8\xd9\x6a\xbf\xbd\x15\x24\x1d\x0e\x88\x36\x78\x97\x6d\x4a\x9e\x87\x06\x81\x15\x6b\x05\x84\x5a\x12\x0a\x8e\x12\xde\xbb\x5b\xb7\x6c\xb6\xe6\x96\xff\x1e\x97\x27\xf6\xd7\x05\x3b\x5b\xaf\x5f\xcd\xf5\x2b\x00\x00\xff\xff\x4d\x7d\x7c\x39\x62\x01\x00\x00" func quorumcertificateAdminStop_votingCdcBytes() ([]byte, error) { return bindataRead( @@ -4839,11 +4750,11 @@ func quorumcertificateAdminStop_votingCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/admin/stop_voting.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x77, 0xe8, 0x1e, 0x53, 0x15, 0x63, 0xab, 0xf7, 0x58, 0xcf, 0x72, 0xc3, 0x9c, 0x7f, 0xb1, 0x1c, 0x0, 0x14, 0xa6, 0x2f, 0x3e, 0xad, 0x97, 0xe2, 0x6d, 0xfa, 0xe9, 0x25, 0xc2, 0xec, 0xfb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa5, 0xa0, 0xd9, 0x1d, 0x55, 0xa2, 0xfc, 0xf1, 0x23, 0x3d, 0xa6, 0xbd, 0xe5, 0xdd, 0xa2, 0x17, 0xc9, 0xeb, 0x3f, 0x53, 0xe2, 0x30, 0x9c, 0x47, 0x65, 0x66, 0xad, 0xd9, 0x55, 0xca, 0x9b, 0x79}} return a, nil } -var _quorumcertificateCreate_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x54\xc1\x6e\xdb\x30\x0c\xbd\xe7\x2b\x88\x1c\x0a\x07\x68\x9d\x7b\xd0\xae\x28\x32\x6c\x18\x76\x58\xbb\x16\xdd\x99\x91\x99\x58\xab\x22\x7a\x14\x9d\x20\x18\xfa\xef\x03\x25\xd7\x89\x31\x03\x41\x24\x9a\x7c\xe4\x7b\x7c\x89\xdf\x77\x2c\x0a\x5f\x02\x1f\xd7\xa1\x4f\x4a\xf2\xb4\x86\xad\xf0\x1e\xe6\x93\xd8\x7c\x36\x5b\x2e\xe1\x85\x92\xc2\x8b\x60\x4c\xe8\xd4\x73\x84\x2d\x0b\x20\x44\x6e\x08\x94\x41\xe8\x4f\x6f\x19\x08\x4f\x6b\x78\x65\x25\x81\x1f\x9b\xdf\xe4\xb4\x20\x6a\x4b\xe0\x38\xaa\xa0\x53\x43\xfb\xe5\x43\x80\x0d\x41\xdf\x35\xa8\xd4\x18\x42\x9f\x28\xa7\x51\xc7\xae\x1d\x93\xe1\xd8\x52\x04\x6d\x51\xc1\x27\x70\xbc\xef\x02\x29\x35\x79\xa2\x96\xe0\x90\x3b\x71\xe9\xc4\x31\x9c\x20\x12\x35\xc9\xf0\x36\x04\x4e\x28\xa3\x73\x74\x04\x18\x1b\x83\x38\x60\xf0\x4d\x1e\x9e\x0e\x24\x27\xd8\xf6\xda\xcb\xd0\xd5\x50\x8f\x2d\x49\x19\x24\x53\xf3\x09\x70\xa8\x49\x8a\x6f\xd4\xe4\x70\x56\xe4\x11\x05\xf7\xa4\x24\x69\x65\x57\xfb\x60\xb3\xf7\xf1\xa1\x69\x84\x52\x5a\x65\x10\x2c\x17\xe0\x6d\xbe\x3e\xad\x4b\xce\xa5\x64\x16\x2f\x8a\x99\x54\x06\x63\x2d\xbe\x7d\x2e\x00\xbe\xf9\xa8\x2d\x52\x9b\x12\x19\xd8\x39\xee\x63\x56\x85\x3b\x12\x54\x1f\x77\x56\x6b\x53\xfa\xb8\xfb\x4e\xa7\x55\x56\x68\xb8\xc3\x1b\x9d\x32\xeb\xb2\x89\x10\xc8\x29\xcb\x40\x46\xcf\x6b\xad\xa6\x14\x86\xc3\xf5\x38\xd2\xb3\x8a\x8f\xbb\xeb\x49\x9b\x12\x5b\xc0\xdf\xd9\x0c\x00\xa0\x13\xea\x50\xa8\x4a\x7e\x17\x49\x56\x80\xbd\xb6\xd5\x33\x1e\xe8\x15\x43\x4f\x0b\xb8\x7a\x28\xa3\x8f\x05\xf6\x2c\x97\xf0\x95\x06\x66\x59\x20\xa1\x2d\x09\xd9\xe2\x46\x03\x95\x17\x03\xf1\xb1\x32\x90\x0e\x6f\xee\x60\x47\x3a\x80\x4f\x78\x2c\xfe\x4f\xfe\x49\x5b\xb8\x2b\xc7\xda\x61\x87\x1b\x1f\xbc\x7a\x4a\xf5\x86\x45\xf8\x78\x7b\x35\xf9\x09\xd4\x0f\x96\xf8\xa9\x5a\x76\xfd\x26\x78\xb7\xcc\xb6\x5b\x9b\xbb\x58\xce\xe0\xf6\xdc\xdf\x43\x87\xd1\xbb\x6a\xbe\xe6\x3e\x98\x5b\x14\x0a\x24\xe0\x05\x27\xe5\x33\xa3\xf9\x62\x22\x43\x86\x25\x73\xdd\xa5\xb7\xcd\xbd\x09\x0f\x04\x5e\xad\x38\x29\x0b\xee\x68\xc2\xab\xe4\xdf\xde\x8c\x04\xeb\xe2\xff\xec\xad\xea\x63\x81\xe5\x7b\xba\xc0\xf3\xf9\x62\x94\xb2\xbe\x7a\xe8\x54\x5b\xf3\xea\xf6\x26\x37\xb9\x06\xe5\xd5\xf4\x8f\xa3\xce\x5d\x9e\x4b\xf2\x23\x6a\x5b\x64\x79\x9f\xbd\xff\x0b\x00\x00\xff\xff\x8f\x15\x72\x2c\x67\x04\x00\x00" +var _quorumcertificateCreate_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x54\x4d\x6f\xdb\x30\x0c\xbd\xe7\x57\x70\x3d\x0c\x0e\xd0\x26\x3b\x07\xed\x8a\xc0\xdd\x86\x61\x87\x35\x4d\xb1\x9d\x15\x99\xb6\xb5\x2a\xa2\x47\xd1\xc9\x82\xa1\xff\x7d\xa0\xe4\x3a\x31\x26\x20\x88\x3e\xc8\x47\xbe\xc7\x07\xbb\x7d\x47\x2c\xf0\xd9\xd3\xb1\xf4\x7d\x14\xe4\x4d\x09\x35\xd3\x1e\x3e\xfc\xd9\x94\xeb\x87\x87\xa7\x4f\xdb\xed\x6c\xb6\x5c\xc2\x33\x46\x81\x67\x36\x21\x1a\x2b\x8e\x02\xd4\xc4\x60\x20\x50\x85\x20\x04\x8c\xbf\x7b\x8d\x30\xb0\x29\xe1\x07\x09\x32\x7c\xdf\xfd\x42\x2b\x19\x4d\x5a\x04\x4b\x41\xd8\x58\x51\xb4\x9f\xce\x7b\xd8\x21\xf4\x5d\x65\x04\x2b\x45\xe8\x23\xa6\x30\xec\xc8\xb6\x63\x30\x1c\x5b\x0c\x20\xad\x11\x70\x11\x2c\xed\x3b\x8f\x82\x55\xea\xa8\x45\x38\xa4\x4a\x94\x2b\x51\xf0\x27\x08\x88\x55\x54\xbc\x1d\x82\x65\x4c\xe8\x14\x2c\x82\x09\x95\x42\x1c\x8c\x77\x55\x6a\x1e\x0f\xc8\x27\xa8\x7b\xe9\x79\xa8\xaa\xa8\xc7\x16\x39\x37\x92\xa8\xb9\x08\x66\xc8\x89\x62\x5e\xb0\x4a\xd7\x49\x91\x47\xc3\x66\x8f\x82\x1c\x57\x7a\xd4\x9f\xa9\xf6\x2e\xac\xab\x8a\x31\xc6\x55\x02\x31\xf9\x00\x54\xa7\xe3\xa6\xcc\x31\x97\x92\xe9\x7d\x56\x4c\xa5\x52\x18\x2d\xf1\xf5\x21\x03\xb8\xea\x2d\x37\x4b\xad\x4a\x24\x60\x6b\xa9\x0f\x49\x15\xea\x90\x8d\xb8\xd0\x68\xae\x76\xe9\x42\xf3\x0d\x4f\xab\xa4\xd0\x70\x86\x17\x3c\x25\xd6\x79\x12\xde\xa3\x15\xe2\x81\x8c\x9c\xc7\x5a\x4c\x29\x0c\x9b\xeb\xb1\xa5\xad\xb0\x0b\xcd\xf5\xa4\x4c\xbe\x9b\xc3\xdf\xd9\x0c\x00\xa0\x63\xec\x0c\x63\x11\x5d\x13\x90\x57\xb0\xee\xa5\x5d\xe7\x6e\xc7\x18\x5d\xcb\x25\x7c\xc1\x81\x4c\xd2\x84\xb1\x46\x46\x9d\xd5\xe8\x99\xfc\x30\x70\x1d\x33\x3d\xca\xf0\x72\x07\x0d\xca\x00\x3e\x69\x7d\xfe\x7f\xf0\x13\xd6\x70\x97\xb7\x8b\x06\xa5\x34\x9d\xd9\x39\xef\xe4\x74\xfb\x7e\xe2\xff\xc5\x5a\x43\x3e\x16\xcb\xae\xdf\x79\x67\x97\xc9\x63\xa5\x5a\x89\x78\xfe\x6e\xc4\xd5\xb5\xd8\x11\x33\x1d\x8b\x39\xdc\xdf\x43\x67\x82\xb3\xc5\x55\x49\xbd\x57\x97\x08\xe4\x47\x30\x17\xc4\x84\xce\xb4\xae\xe6\x13\x2d\x52\x05\x54\xb7\x5d\x7a\x5a\x5d\x1b\xcd\x01\xc1\x89\x26\x47\x21\x36\x0d\x4e\xc8\xe5\xf8\xdb\x9b\x91\xe5\x22\xfb\x3e\x79\xaa\x78\x1b\x5c\xfe\x9f\x0e\xee\xbc\xbf\x68\x25\x8f\x6d\xa1\x45\x8b\xdb\x9b\x04\x7e\x0d\x42\xab\xe9\x47\x62\x91\xd0\xb7\xb9\x9d\x47\x23\x6d\x16\xfc\x75\xf6\xfa\x2f\x00\x00\xff\xff\xd3\x11\xd1\x52\x53\x04\x00\x00" func quorumcertificateCreate_voterCdcBytes() ([]byte, error) { return bindataRead( @@ -4859,11 +4770,11 @@ func quorumcertificateCreate_voterCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/create_voter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xad, 0x49, 0x65, 0x97, 0x80, 0x97, 0x22, 0x49, 0xa2, 0xf8, 0x29, 0x1b, 0x8, 0xa4, 0xf, 0x7f, 0xbe, 0xec, 0x14, 0x9f, 0x6a, 0x19, 0xfc, 0x68, 0x8a, 0xca, 0xa2, 0xab, 0x45, 0x42, 0x14, 0xcd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc1, 0xaa, 0x8c, 0x53, 0x14, 0x61, 0xae, 0x77, 0x43, 0x9f, 0x9b, 0xf7, 0x46, 0x21, 0xfd, 0x67, 0xd2, 0x64, 0xf8, 0xc6, 0x4a, 0x8a, 0x4e, 0x63, 0x7f, 0xd7, 0xfe, 0x20, 0xb2, 0x2b, 0x8e, 0x28}} return a, nil } -var _quorumcertificateScriptsGenerate_quorum_certificateCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\x41\x4b\x03\x31\x10\x85\xef\xf9\x15\x8f\xbd\x98\x5c\x5a\xbc\x78\x28\x48\x0f\x01\xa5\xc7\x3d\x78\x12\x0f\x21\x9d\xad\x81\x64\x52\x33\x13\x14\xc4\xff\x2e\xb6\x5b\xeb\x3a\xb7\x19\xbe\x8f\xf7\x26\x95\x63\x6d\x8a\x87\x5c\xdf\x7d\xee\xa2\xd4\x46\x8f\xa9\xd5\x82\x61\x71\x1b\x8c\x59\xaf\xf1\x48\x2a\xd0\x57\x82\x68\xd0\x2e\xa8\x13\x02\xe2\x99\xb9\x11\x8c\x1e\x07\x62\x6a\x41\x53\x65\x63\x42\x8c\x24\x62\x43\xce\x0e\x53\x67\x94\x90\xd8\xce\xf4\x8e\xf7\xf4\xb1\xc1\xd3\x8e\xf5\xf6\xce\x6d\x96\x05\x56\xd7\x2a\x9f\xc6\x00\x40\x26\xbd\xe4\x08\xee\xff\xd1\x07\xd2\x79\x11\xeb\xce\x7c\x23\xed\x8d\x7f\x95\xe7\xbf\xa9\x2f\xab\xb9\x24\x8d\xbd\xb6\x5e\x3c\x35\x4d\x53\x8a\x41\xc9\xba\x93\xfd\x33\xdb\x2d\x8e\x81\x53\xb4\x83\xaf\x3d\xef\xc1\x55\x2f\xcf\x11\xde\x4e\x22\xe2\xd5\x1c\x9c\x31\x5f\xdf\x01\x00\x00\xff\xff\x81\x01\xe7\xc1\x4d\x01\x00\x00" +var _quorumcertificateScriptsGenerate_quorum_certificateCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\x31\x4b\x43\x31\x14\x46\xf7\xfc\x8a\x8f\x2e\x26\x4b\xab\x8b\x43\x41\x8a\xa4\x2a\x1d\x9f\xc5\x49\x1c\x42\x7a\x5f\x0d\xe4\xdd\xd4\xdc\x1b\x2c\x88\xff\x5d\x6c\x5f\xad\x9a\x2d\x70\x0e\xe7\xbb\x69\xd8\x95\xaa\xb8\xcf\xe5\xdd\xe7\x26\x4a\xb5\xf3\xe8\x6b\x19\x70\xb9\xef\xfc\xed\x72\xf9\x78\xb7\x5e\x1b\x33\x9b\xe1\x81\x54\xa0\xaf\x04\xd1\xa0\x4d\x50\x7a\x04\xc4\xa3\x73\x21\xe8\x3c\xb6\xc4\x54\x83\xa6\xc2\xc6\x84\x18\x49\xc4\x86\x9c\x1d\xfa\xc6\x18\x42\x62\x3b\xd2\x2b\xde\xd0\x7e\x8e\xa7\x15\xeb\xd5\xb5\x9b\xff\x8d\x4f\xcf\x33\x3e\x8c\x01\x80\x4c\x7a\xea\x08\x6e\xfe\xd1\x5b\xd2\xf1\x23\xd6\x1d\xf9\x4a\xda\x2a\xff\x28\xcf\xbf\xab\x2f\xd3\x71\x24\x75\xad\xd4\x36\x78\xaa\x9a\xfa\x14\x83\x92\x75\x07\xfb\xfb\x2d\x16\xd8\x05\x4e\xd1\x4e\x7c\x69\x79\x03\x2e\x7a\x3a\x8e\xf0\x76\x10\x11\xcf\xe6\xc4\x19\xf3\xf9\x15\x00\x00\xff\xff\x89\x80\x11\x90\x49\x01\x00\x00" func quorumcertificateScriptsGenerate_quorum_certificateCdcBytes() ([]byte, error) { return bindataRead( @@ -4879,11 +4790,11 @@ func quorumcertificateScriptsGenerate_quorum_certificateCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/generate_quorum_certificate.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0x7e, 0xec, 0xe8, 0x58, 0x2b, 0x59, 0xe0, 0xfa, 0xc3, 0x3, 0xd8, 0xb2, 0xbd, 0xf7, 0xe1, 0xda, 0xa1, 0x9b, 0x9c, 0x12, 0x5, 0x3d, 0xdd, 0x99, 0x39, 0x29, 0x37, 0x8c, 0xee, 0x72, 0x48}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0x22, 0x2c, 0xc9, 0x96, 0x79, 0xd0, 0x1e, 0x97, 0xfc, 0x77, 0xb, 0xa7, 0xe9, 0xdc, 0xcb, 0x79, 0x40, 0x96, 0xad, 0x14, 0x84, 0x2e, 0x5e, 0xe0, 0xbc, 0xd6, 0xb2, 0xf, 0x1e, 0x9, 0xc5}} return a, nil } -var _quorumcertificateScriptsGet_clusterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x50\x42\x11\x53\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x28\xf0\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\xb4\x42\x35\x4f\x0f\xca\x52\xa8\xe6\xe2\x52\x50\x50\x50\xc8\x49\x2d\x51\x80\xea\x2b\x56\xb0\x45\x53\x9b\x9e\x5a\x02\xe5\x14\x6b\x68\x42\xd4\x17\xa5\x96\x94\x16\xe5\xc1\xb5\x44\x23\xdb\x19\xcb\xc5\x55\x0b\x08\x00\x00\xff\xff\xf7\xb0\x6f\x1a\xc4\x00\x00\x00" +var _quorumcertificateScriptsGet_clusterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x30\xa8\x08\x74\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x68\xf0\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\xb4\x42\x35\x4b\x0f\xca\x52\xa8\xe6\xe2\x52\x50\x50\x50\xc8\x49\x2d\x51\x80\xea\x2b\x56\xb0\x45\x53\x9b\x9e\x5a\x02\xe5\x14\x6b\x68\x42\xd4\x17\xa5\x96\x94\x16\xe5\xc1\xb5\x44\x23\xdb\x19\xcb\xc5\x55\x0b\x08\x00\x00\xff\xff\x03\x73\xf2\x7e\xc0\x00\x00\x00" func quorumcertificateScriptsGet_clusterCdcBytes() ([]byte, error) { return bindataRead( @@ -4899,11 +4810,11 @@ func quorumcertificateScriptsGet_clusterCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0x25, 0x34, 0x4, 0xee, 0x6c, 0x4f, 0xfe, 0x9f, 0x3c, 0x45, 0xb8, 0x36, 0x94, 0x90, 0xe, 0xd1, 0xe0, 0x85, 0x2c, 0x17, 0x23, 0xb8, 0x1d, 0xda, 0x3a, 0xc0, 0x29, 0xde, 0x80, 0x86, 0x3d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0xfb, 0x4c, 0x6f, 0xc7, 0xd1, 0x51, 0x95, 0xef, 0xad, 0x6e, 0x4f, 0x9, 0x54, 0x1b, 0x66, 0xa4, 0x35, 0x9b, 0xf2, 0xd7, 0x77, 0xbb, 0x39, 0xa9, 0xbe, 0x75, 0xb, 0x4d, 0xf2, 0x68, 0x74}} return a, nil } -var _quorumcertificateScriptsGet_cluster_completeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\x3f\x4b\x43\x41\x10\xc4\xfb\xfd\x14\x63\x1a\xdf\x35\x09\x36\x16\x81\x34\x1e\x28\x29\x53\x58\x89\xc5\xf1\xdc\x17\x0f\xf6\x76\xc3\xed\x1e\x0a\xe2\x77\xb7\x48\x14\x53\xce\xf0\x9b\x3f\xb5\x9d\xac\x07\x1e\xc5\x3e\xb2\x0c\x0f\xee\x87\x8c\xa5\x5b\xc3\xea\xca\x5b\x11\x6d\x36\x78\xe2\x70\xc4\x3b\xc3\xa3\xc4\x70\xd8\x82\x82\xf9\xcc\xdc\x3a\x0e\x19\x47\x56\xee\x25\xaa\x29\x51\x99\x67\x76\x9f\x8a\x48\xc2\x32\x14\xad\x54\x9d\x2e\xf4\x5e\xdf\xf8\x73\x8b\xe7\xbd\xc6\xdd\x7d\xda\xe2\xc1\x4c\xf0\x45\x04\x00\xc2\xf1\x5b\xea\xd8\x5d\x7f\x5b\x1f\x39\x2e\xc2\xa7\x74\xe6\x3b\xc7\xe8\xfa\x17\x79\xf9\x3f\xf1\xba\xae\x9e\xad\x9d\x84\x83\xa7\x84\x9b\x1d\xb4\x0a\xd1\xf7\x4f\x00\x00\x00\xff\xff\xf4\x49\xb4\xa1\xf8\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_completeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\x31\x4b\x03\x41\x10\x85\xfb\xf9\x15\xcf\xca\xbb\x26\xd1\xc6\x22\x90\x42\x37\x2a\x29\xcf\x60\x25\x16\xcb\x39\x17\x17\xe6\x66\xc2\xce\x2c\x06\xc4\xff\x6e\x91\x28\x5a\x3e\xf8\xbe\xf7\x5e\x99\x0f\x56\x03\x0f\x62\x1f\x49\x9a\x07\xd7\x21\x61\xaa\x36\xe3\xea\x38\xa4\xdb\xcd\xe6\xe9\x7e\xb7\x23\x5a\x2e\xf1\xc8\xe1\x88\x77\x86\x47\x8e\xe6\xb0\x09\x19\xe3\xc9\xb9\x74\x0c\x09\x7b\x56\xae\x39\x8a\x29\x51\x1e\x47\x76\xef\xb2\x48\x8f\xa9\x29\xe6\x5c\xb4\x3b\xd3\x5b\x7d\xe3\xe3\x0a\xcf\x5b\x8d\xeb\x9b\x7e\x85\x3b\x33\xc1\x27\x11\x00\x08\xc7\x4f\xa9\x63\xfd\xff\xd7\x62\xcf\x71\x0e\xde\xf5\x27\xbe\x72\xb4\xaa\xbf\xca\xcb\xdf\x89\xd7\x45\xf1\x64\xf3\x41\x38\xb8\xeb\x71\xb1\x86\x16\x21\xfa\xfa\x0e\x00\x00\xff\xff\x4c\xba\x16\xcd\xf4\x00\x00\x00" func quorumcertificateScriptsGet_cluster_completeCdcBytes() ([]byte, error) { return bindataRead( @@ -4919,11 +4830,11 @@ func quorumcertificateScriptsGet_cluster_completeCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_complete.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x3, 0xb, 0xcc, 0xb6, 0x3, 0x6, 0x7, 0xb7, 0xb7, 0x52, 0x1, 0xe3, 0xa5, 0x66, 0x48, 0x6e, 0xc6, 0xb9, 0x38, 0xdc, 0x35, 0x47, 0x51, 0x62, 0x9c, 0x7b, 0x6b, 0xc4, 0x86, 0xff, 0x13}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0x6a, 0x87, 0xb9, 0x21, 0x3c, 0xce, 0x6f, 0xaa, 0x69, 0xff, 0x1f, 0x8e, 0x92, 0xfa, 0x95, 0x1f, 0x72, 0x87, 0x80, 0xe6, 0x83, 0xe3, 0x60, 0xc2, 0xb8, 0x39, 0x84, 0xe0, 0xbb, 0x6c, 0x71}} return a, nil } -var _quorumcertificateScriptsGet_cluster_node_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8d\xb1\xaa\x83\x40\x10\x45\xfb\xfd\x8a\x8b\x95\x36\xc2\x83\x87\x85\x90\x4a\x08\x58\x86\x10\x52\x84\x14\xa2\xa3\x59\x58\x67\xc3\xcc\x48\x02\xe2\xbf\xa7\x50\x42\x2c\xef\xe5\x1c\x8e\x1f\x9f\x51\x0c\xc7\x10\x5f\x55\x98\xd4\x48\x4e\x15\x7a\x89\x23\x92\xdd\x97\x38\xd7\xb4\x2d\xa9\xa6\x4d\x08\x19\xfa\x89\x31\x36\x9e\xd3\x76\x05\x6a\xee\xe8\x5d\xe2\x52\xb3\xfd\x15\x59\x89\xf9\x6c\xe2\x79\x58\x9f\xe2\x7f\xc1\xec\x1c\x00\x04\x32\x6c\x8a\xe2\xb0\xcf\xe6\x03\xd9\x36\x34\xcd\x56\x5e\xc8\x26\xe1\xaf\x72\xfb\xcd\xdd\x73\x8e\x1d\x5d\xc9\x0f\x0f\x53\xe7\x96\x4f\x00\x00\x00\xff\xff\x3d\x36\xdc\x4a\xcb\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_node_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xcd\xb1\xaa\x83\x40\x10\x85\xe1\x7e\x9f\xe2\x94\xda\xc8\xbd\x10\x2c\x84\x14\x41\x13\xb0\x34\x12\x52\x84\x14\xa2\xa3\x59\x58\x67\xc3\xee\x48\x04\xf1\xdd\x53\xac\x84\xa4\x9c\xe1\x7c\xfc\x7a\x7c\x5a\x27\x38\x19\xfb\xca\xcd\xe4\x85\x5c\x95\xa3\x77\x76\xc4\xdf\x5c\xe5\x87\xa2\x38\x1f\xeb\x5a\xa9\xa6\x6d\xc9\xfb\xa8\x31\x26\x46\x3f\x31\xc6\x46\x73\xd4\x06\x50\x72\x47\x73\x86\x4b\xc9\xf2\x9f\xc6\x19\x96\x5a\x9c\xe6\x21\x7c\xd2\xdd\x8a\x45\x29\x00\x30\x24\xd8\x88\xc7\xfe\x37\x99\x0c\x24\xdb\xe1\xa3\x38\xec\x1d\xc9\xe4\xf8\x43\x6e\xdf\xb9\x7b\xc2\xb6\xa3\x2b\xe9\xe1\x21\x5e\xa9\xf5\x1d\x00\x00\xff\xff\x18\xc7\x43\xd0\xc7\x00\x00\x00" func quorumcertificateScriptsGet_cluster_node_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -4939,11 +4850,11 @@ func quorumcertificateScriptsGet_cluster_node_weightsCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_node_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x29, 0x1d, 0x52, 0x4, 0x6b, 0x83, 0x52, 0x76, 0x40, 0x43, 0xaf, 0xa, 0xe2, 0xe4, 0xd8, 0xcb, 0x79, 0x13, 0xea, 0xc6, 0xca, 0x2a, 0x11, 0x64, 0x1c, 0x9e, 0x29, 0xfc, 0x74, 0x8, 0xeb, 0x69}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0x9d, 0xc0, 0x2a, 0x9c, 0x34, 0xb, 0xc5, 0x43, 0x3d, 0xa, 0x57, 0x8, 0x63, 0x2c, 0xce, 0xe6, 0xa9, 0x9d, 0xb7, 0xc7, 0x13, 0x37, 0xe6, 0xc6, 0x3a, 0xe8, 0xf, 0x65, 0x94, 0xa6, 0x25}} return a, nil } -var _quorumcertificateScriptsGet_cluster_vote_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x50\x42\x11\x53\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x28\xf0\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\x84\x30\xcc\x4c\x14\xaa\xb9\xb8\x14\x14\x14\x14\x72\x52\x4b\x14\xa0\x0a\x8b\x15\x6c\x51\x2d\xd3\x4b\x4f\x2d\x81\x72\x8a\x35\x34\x21\xea\x8b\x52\x4b\x4a\x8b\xf2\xe0\x5a\xa2\x91\x2d\x89\xd5\x2b\xcb\x2f\x49\x0d\xc9\x28\x4a\x2d\xce\xc8\xcf\x49\x01\x69\xa9\x05\x04\x00\x00\xff\xff\xe3\x59\xc4\x5f\xc5\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_vote_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8d\x31\x0b\x82\x50\x14\x85\xf7\xf7\x2b\xce\xa8\x8b\x14\x84\x43\xd0\x10\x5a\xe0\x68\xd6\x14\x0d\xa2\xd7\x14\x9e\xef\xc5\xbd\xd7\x12\xa2\xff\x1e\xa1\x44\x6d\xe7\xc0\xf7\xf1\x75\xfd\xcd\xb3\x62\x6f\xfd\x23\xb1\x83\x28\x71\x9e\xa0\x61\xdf\x63\x31\xe6\xc9\x36\x4d\x0f\xbb\xa2\x30\xa6\xac\x2a\x12\x09\x4a\x6b\x43\x34\x83\x43\x5f\x76\x2e\xa8\x26\x21\x73\x35\x8d\x6b\x9c\x32\xa7\xcb\x38\x9c\x46\xbc\xc2\xd3\x18\x00\xb0\xa4\x98\x41\xc1\xe6\x3f\x14\x5d\x49\xe7\x23\x41\x38\xf1\x4c\x3a\xb0\xfb\x2a\xe7\xdf\xc8\x25\xba\x7b\xa5\x63\xcb\x24\xad\xb7\xf5\x47\x79\xbd\x03\x00\x00\xff\xff\x25\xf2\x70\xe5\xc1\x00\x00\x00" func quorumcertificateScriptsGet_cluster_vote_thresholdCdcBytes() ([]byte, error) { return bindataRead( @@ -4959,11 +4870,11 @@ func quorumcertificateScriptsGet_cluster_vote_thresholdCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_vote_threshold.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x90, 0x39, 0xfc, 0xde, 0xe2, 0xb0, 0x6e, 0xbb, 0x43, 0x4, 0x67, 0x78, 0x3e, 0x0, 0x52, 0x62, 0x27, 0xd5, 0x72, 0x9a, 0xcb, 0xd8, 0x3c, 0x8e, 0x11, 0xc6, 0xdb, 0x82, 0x38, 0x3f, 0xb5, 0xd1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xee, 0x85, 0xb, 0xfb, 0x48, 0x6f, 0x59, 0x3b, 0x72, 0xcd, 0x94, 0x9, 0x31, 0xb9, 0xb6, 0x1e, 0x2, 0xf0, 0xe3, 0x7b, 0xc6, 0x6b, 0xee, 0xb4, 0xb0, 0x14, 0x17, 0x99, 0x35, 0xaa, 0x66, 0xc1}} return a, nil } -var _quorumcertificateScriptsGet_cluster_votesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xbd\x4a\xc5\x40\x10\x85\xfb\x79\x8a\xc3\xad\x92\x26\x17\x1b\x8b\x0b\x56\x01\x21\xa5\x82\x36\x21\xc5\xb2\x99\xd5\x85\xcd\x6e\x98\x99\xf8\x83\xf8\xee\x12\x13\xe5\xa6\x9c\x9f\x73\xbe\x2f\x4e\x73\x11\xc3\x7d\x2a\xef\x6d\x5a\xd4\x58\x1e\x5a\x04\x29\x13\x4e\x87\xdd\x89\xe8\x7c\xc6\x23\xdb\x22\x59\xe1\x32\x9c\x88\xfb\x44\x09\x78\x2e\xc6\x8a\x50\x04\xf6\xca\xd0\x99\x7d\x0c\x91\x47\xf8\x2d\x4a\xe4\xbc\x67\xd5\xca\xa5\x54\x23\x2c\x19\x93\x8b\xb9\xda\xaf\x5d\x1e\xf9\xe3\x82\xa7\x2e\xdb\xcd\x6d\x7d\x41\x7f\x80\x36\x6b\xf7\x80\x2f\x22\x00\x48\x6c\x7f\xa5\x8a\xbb\xa3\x72\xf3\xc2\xb6\x0f\x5a\xd5\xdb\xbf\xfc\xca\xfe\x47\xfa\x6b\xe4\xd0\xbc\xad\xda\x44\xdf\x3f\x01\x00\x00\xff\xff\xc7\xaa\x11\x90\x01\x01\x00\x00" +var _quorumcertificateScriptsGet_cluster_votesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xb1\x4e\xc3\x40\x10\x44\xfb\xfd\x8a\x29\xed\xc6\x81\x86\x22\x12\x05\x72\x40\x4a\x99\x44\xd0\x44\x29\x4e\x97\x3d\x38\xe9\x7c\x17\xed\xae\xc1\x08\xf1\xef\xc8\xd8\xa0\xb8\x5c\xed\xcc\x9b\x17\xbb\x4b\x11\xc3\x53\x2a\x1f\x6d\xea\xd5\x58\x76\x2d\x82\x94\x0e\x37\xc3\xae\x7d\xd8\x6c\xf6\x8f\x87\x03\xd1\x6a\x85\x3d\x5b\x2f\x59\xe1\x32\x9c\x88\xfb\x44\x09\x78\x29\xc6\x8a\x50\x04\xf6\xc6\xd0\x0b\xfb\x18\x22\x9f\xe1\x27\x14\x91\xf3\x9e\x55\x2b\x97\x52\x8d\xd0\x67\x74\x2e\xe6\x6a\xfe\x6e\xf3\x99\x87\x35\x9e\xb7\xd9\x6e\xef\xea\x35\x8e\x0b\x89\x66\x64\x9f\xf0\x45\x04\x00\x89\xed\x0f\xaa\xb8\x5f\xea\x36\xaf\x6c\xf3\xa1\x55\x3d\xe5\xe5\x57\xf6\xbf\x72\xbc\x9e\x3c\x35\xef\xa3\x36\xd1\xf7\x4f\x00\x00\x00\xff\xff\x8d\xd6\x4b\xbd\xfd\x00\x00\x00" func quorumcertificateScriptsGet_cluster_votesCdcBytes() ([]byte, error) { return bindataRead( @@ -4979,11 +4890,11 @@ func quorumcertificateScriptsGet_cluster_votesCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_votes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0x5d, 0xff, 0x6e, 0xd7, 0xf9, 0x68, 0xe, 0xcb, 0x93, 0xff, 0xd6, 0xd2, 0xad, 0xc1, 0xc5, 0xa6, 0x42, 0x74, 0x84, 0x25, 0xb9, 0x41, 0x5, 0x9b, 0x72, 0x51, 0x1e, 0x7d, 0xec, 0x22, 0xbd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2d, 0x38, 0x54, 0xe3, 0xf6, 0x3b, 0xb4, 0x8b, 0x51, 0x8a, 0xfd, 0x54, 0x1b, 0x41, 0x4f, 0xe1, 0x79, 0x4a, 0xc8, 0x46, 0xc9, 0x29, 0xed, 0xbb, 0x9b, 0xb, 0xdb, 0x8e, 0x6c, 0xee, 0xd2, 0xc8}} return a, nil } -var _quorumcertificateScriptsGet_cluster_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8d\x31\x0b\xc2\x30\x14\x84\xf7\xf7\x2b\x8e\x4e\xed\x52\x10\xa4\x83\xe0\x54\x10\x3a\x3a\x88\x83\x38\x84\xfa\x5a\x03\x2f\x89\x24\x2f\x28\x88\xff\xdd\x21\x45\xec\x76\x77\x7c\xc7\x67\xdd\x23\x44\xc5\x41\xc2\xb3\x97\x9c\x94\xe3\xb1\xc7\x14\x83\x43\xb5\xda\x2a\x22\x33\x8e\x9c\x52\x6d\x44\x1a\x4c\xd9\xc3\x19\xeb\xeb\xb1\x00\x83\xbf\xf1\x6b\x87\xd3\xe0\x75\xd3\x35\x25\x74\x5b\xbc\x89\x00\x40\x58\xb1\x80\x09\xfb\xb5\xac\x9d\x59\x97\x92\xea\xa6\xf0\x91\x35\x47\xff\xbb\x5c\xfe\x25\xd7\x56\x83\x1a\x39\xb3\x9d\xef\x4a\xf4\xf9\x06\x00\x00\xff\xff\xf1\x3a\x40\x1a\xc1\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8d\xb1\xaa\xc2\x40\x10\x45\xfb\xf9\x8a\x5b\x26\x4d\x78\x0f\x24\x85\x60\x21\x89\x42\xca\x18\xc4\x42\x2c\x96\x38\x89\x81\xc9\xae\xec\x4e\x30\x20\xfe\xbb\xc5\x06\xd1\xee\x5e\x38\x87\x33\x8c\x77\xe7\x15\x7b\x71\x8f\x42\xa6\xa0\xec\xeb\x02\x9d\x77\x23\xfe\xe6\xba\xd8\x96\xe5\x61\xd7\x34\x44\xa6\x6d\x39\x84\xc4\x88\xa4\xe8\x26\x8b\xd1\x0c\x36\x69\xa3\x50\xd9\x2b\xcf\x6b\x1c\x2b\xab\xff\x79\x1a\x47\xbe\xc2\x93\x08\x00\x84\x15\x0b\x18\xb0\xf9\x0d\x65\x3d\xeb\x72\x42\x92\x46\xde\xb3\x4e\xde\x7e\x94\xf3\x77\xe4\x92\xa9\x53\x23\x27\x1e\xfa\x9b\x12\xbd\xde\x01\x00\x00\xff\xff\xd7\x12\x87\x05\xbd\x00\x00\x00" func quorumcertificateScriptsGet_cluster_weightCdcBytes() ([]byte, error) { return bindataRead( @@ -4999,11 +4910,11 @@ func quorumcertificateScriptsGet_cluster_weightCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_weight.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7c, 0x30, 0x57, 0xa9, 0x38, 0x97, 0xfa, 0xe9, 0x63, 0xc9, 0x3a, 0x59, 0xce, 0x31, 0x44, 0x6f, 0x2a, 0xc0, 0xf6, 0xab, 0x44, 0xe5, 0x12, 0x7c, 0x6a, 0xcb, 0x8b, 0xe8, 0x57, 0x7e, 0xce, 0x2d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa, 0xcc, 0x4b, 0x39, 0xb0, 0xf0, 0xf0, 0x4b, 0x31, 0xde, 0xcb, 0x4e, 0xa3, 0x3f, 0x27, 0xe7, 0xbc, 0xf9, 0x75, 0x85, 0xff, 0x90, 0x67, 0x4f, 0x84, 0x61, 0x2f, 0xe, 0xbb, 0x8, 0x20, 0x26}} return a, nil } -var _quorumcertificateScriptsGet_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\x31\x6b\xc3\x40\x0c\x85\x77\xfd\x8a\x47\x26\x7b\x49\xe8\xd2\x21\xd0\xc9\x50\xc8\x58\x4a\xa7\x90\x41\x5c\xe4\xfa\x40\x77\x67\x74\x32\x6e\x29\xfd\xef\xa5\xd8\x86\x78\x13\x92\x3e\xde\xf7\x62\x1a\x8b\x39\x5e\xb5\xcc\x9d\x4e\xd5\xc5\xde\x3a\xf4\x56\x12\x0e\xbb\xdd\x81\xe8\x74\xc2\x7b\xb0\x38\x3a\xbc\xc0\xc4\x27\xcb\xe0\x0c\x36\xe3\x6f\x94\x1e\x5d\x51\x95\xe0\xc5\xb0\x52\x15\x73\xf4\x01\xac\xfa\x7f\xf6\x41\xa2\x21\x89\xf3\x9d\x9d\x89\x38\x04\xa9\xb5\x61\xd5\x16\xfd\x94\x91\x38\xe6\x26\x2c\xe4\x25\xdf\xe5\xeb\x8c\x8f\x4b\xf6\xa7\xe7\xf6\x8c\xeb\xce\xe5\xb8\x4e\x37\xfc\x10\x01\x80\x8a\x23\x6c\x99\x2f\xfb\x32\xc7\x4f\xf1\xcd\xa7\x69\x97\xff\x55\x7e\x43\xae\x8f\xa9\x37\xa2\xdf\xbf\x00\x00\x00\xff\xff\xa6\xc7\x74\x36\x15\x01\x00\x00" +var _quorumcertificateScriptsGet_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\x31\x6b\xc3\x40\x0c\x85\x77\xfd\x8a\x37\xda\x4b\xd2\x2e\x1d\x02\x1d\x8a\xd3\x42\xc6\xd4\x74\x0a\x19\xc4\x45\x6e\x0e\x74\x77\x41\x27\x93\x94\xd2\xff\x5e\x4a\x6c\xa8\x37\x81\xf4\xf4\x7d\x2f\xa6\x4b\x31\xc7\x9b\x96\x6b\xa7\x63\x75\xb1\x7d\x87\xc1\x4a\xc2\xc3\x6d\xdf\xbd\x6c\xb7\xef\xaf\x7d\x4f\xb4\x5e\xa3\x0f\x16\x2f\x0e\x2f\x30\xf1\xd1\x32\x38\x83\xcd\xf8\x0b\x65\x40\x57\x54\x25\x78\x31\x4c\x5f\x2a\xae\xd1\xcf\x60\xd5\xbf\xb5\x9f\x25\x1a\x92\x38\x9f\xd8\x99\x88\x43\x90\x5a\x1b\x56\x6d\x31\x8c\x19\x89\x63\x6e\xc2\x3d\xb9\xcb\x27\xb9\x6d\xf0\xb1\xcb\xfe\xf8\xd4\x6e\x70\x58\xb8\xad\xa6\xe9\x88\x6f\x22\x00\x50\x71\x84\x99\xf9\xbc\x2c\xb2\xfa\x14\x9f\x7d\x9a\xf6\x7e\x3f\xc9\xcf\x91\xc3\x7f\xea\x91\xe8\xe7\x37\x00\x00\xff\xff\xc0\x0e\x28\x76\x11\x01\x00\x00" func quorumcertificateScriptsGet_clustersCdcBytes() ([]byte, error) { return bindataRead( @@ -5019,11 +4930,11 @@ func quorumcertificateScriptsGet_clustersCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_clusters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0xfa, 0xb0, 0xff, 0x20, 0xaf, 0xe0, 0x18, 0x68, 0x21, 0x71, 0xea, 0x8d, 0x67, 0x52, 0xa1, 0x54, 0x7b, 0xe3, 0x84, 0xef, 0xbd, 0x91, 0xcf, 0x60, 0x8, 0x86, 0xd8, 0xe, 0xed, 0xb7, 0xea}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x74, 0x48, 0xd8, 0xc7, 0x4d, 0x2d, 0x1b, 0xe2, 0x53, 0xed, 0x2e, 0xeb, 0x53, 0x68, 0x55, 0xf5, 0x45, 0x85, 0xb3, 0xc3, 0xcb, 0x4c, 0x91, 0xf7, 0xd5, 0x35, 0xad, 0x9a, 0x60, 0x5b, 0xcb, 0x89}} return a, nil } -var _quorumcertificateScriptsGet_node_has_votedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x91\x41\x8f\xd3\x30\x10\x85\xef\xfe\x15\x4f\x7b\x58\x35\xd2\xaa\xb9\xef\x91\x02\x62\x2f\x08\xba\x0b\xf7\xd9\x64\x52\x5b\x75\x66\x22\xcf\xa4\x11\x42\xfc\x77\xe4\xa4\x95\x28\x57\xdb\xf3\xe6\x7b\x9f\xd3\x38\x69\x71\x7c\xce\xba\x1c\xf2\x6c\xce\xe5\xfb\x01\x43\xd1\x11\x0f\x77\x67\x0f\x21\xb4\x2d\x8e\xec\x73\x11\x03\xe1\x5d\x35\x33\x09\x92\xf4\xa9\x23\x4f\x72\x42\x1a\x40\x10\xed\x19\x91\x0c\x36\xbf\x8f\xc9\x9d\x7b\x10\x2e\xea\x8c\x41\x0b\x3c\x26\x03\x4f\xda\xc5\x10\xa8\xeb\xd8\x6c\x47\x39\x37\x18\x66\xc1\x48\x49\x76\x75\xfc\xe5\xe3\x33\x5e\xbd\x24\x39\x35\xcf\xf8\xa0\x9a\xf1\x3b\x04\x00\x68\x5b\xbc\x0c\x58\x18\x54\x18\x49\xe0\x91\x61\x4e\xe7\xba\x9c\xe6\xce\x93\x0a\xa6\x48\xc6\xd8\x5d\x74\x45\x12\xf5\xfa\x70\x2a\x7a\x2a\x6c\xd6\x3c\xad\x33\x15\xc7\x6e\x89\x6b\xd7\x4c\xe6\x1b\xd7\x9a\x6d\x9e\x72\x86\xb9\x96\x8a\x2f\xfd\xda\xea\x0b\xd9\x4f\xad\x7d\x0a\x57\x65\x86\xb7\x32\xf3\x1e\xaf\x49\x3a\xc6\xc2\xb7\x3c\x95\xfc\x0b\x0b\x89\xc3\x15\x67\xd1\x05\x4b\x64\x8f\x5c\x2a\x78\xa4\xcb\xb6\xbe\xbf\xea\x60\x1c\x7e\x1c\x8f\x9f\xbe\xbe\x6d\xdb\x9f\xa0\x63\xf2\x4d\x53\x47\xc6\xfb\x35\xb5\xac\xd6\xef\xff\x68\x9f\xe4\xdb\xb5\x15\x1e\x1f\xff\xbb\xfb\x17\xf7\xaa\xb4\x09\xe1\xcf\xdf\x00\x00\x00\xff\xff\xa0\xa8\x11\xb6\xec\x01\x00\x00" +var _quorumcertificateScriptsGet_node_has_votedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x91\x41\x6f\xd3\x40\x10\x85\xef\xfb\x2b\xde\xa9\x4a\xa4\x2a\xe1\xdc\x1b\x24\x45\xf4\x82\x68\x5c\xb8\x4f\xed\x71\x76\xd5\xf5\x8c\xb5\x33\x8e\x41\x88\xff\x8e\xd6\x4e\x24\xe8\xd9\x9e\xf7\xbe\xf7\x6d\x1a\x46\x2d\x8e\xcf\x59\xe7\x43\x9e\xcc\xb9\x3c\x1f\xd0\x17\x1d\xf0\xe1\xe7\xf3\xe1\xe3\xf1\x78\x7a\x6c\x9a\x10\xf6\x7b\x9c\xd8\xa7\x22\x06\xc2\xab\x6a\x66\x12\x24\xe9\x52\x4b\x9e\xe4\x8c\xd4\x83\x20\xda\x31\x22\x19\x6c\x7a\x1d\x92\x3b\x77\x20\x5c\xd4\x19\xbd\x16\x78\x4c\x06\x1e\xb5\x8d\x21\x50\xdb\xb2\xd9\x86\x72\xde\xa2\x9f\x04\x03\x25\xd9\xd4\xf3\xa7\xe3\x03\x1a\x2f\x49\xce\xdb\x07\x7c\x52\xcd\xf8\x1d\x02\x00\xec\xf7\x78\xea\x31\x33\xa8\x30\x92\xc0\x23\xc3\x9c\xde\x6a\x39\x4d\xad\x27\x15\x8c\x91\x8c\xb1\xb9\xe8\x82\x24\xea\xf5\xc7\xb1\xe8\xb9\xb0\xd9\xf6\x7e\xb9\xa9\x38\x76\x4b\x5c\x76\x66\x32\x5f\xb9\x96\x6c\xf3\x94\x33\xcc\xb5\x54\x7c\xe9\x96\x55\x5f\xc8\x7e\x68\xdd\x53\xb8\xea\x32\xbc\x94\x89\x77\x68\x92\xb4\x8c\x99\x6f\x79\x2a\xf9\x17\x66\x12\x87\x2b\xde\x44\x67\xcc\x91\x3d\x72\xa9\xe0\x91\x2e\x6b\x7d\x77\xd5\xc1\x38\x7c\x3f\x9d\x1e\xbf\xbe\xac\xed\xf7\xd0\x21\xf9\xaa\xa9\x25\xe3\xdd\x92\x5a\x16\xeb\xff\xbf\xcf\x2e\xc9\xb7\xeb\x2a\xdc\xdd\xbd\xfb\xf6\x2f\xee\x55\xe9\x36\x84\x3f\x7f\x03\x00\x00\xff\xff\xf4\xed\x7f\xae\xe8\x01\x00\x00" func quorumcertificateScriptsGet_node_has_votedCdcBytes() ([]byte, error) { return bindataRead( @@ -5039,11 +4950,11 @@ func quorumcertificateScriptsGet_node_has_votedCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_node_has_voted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0xf8, 0x21, 0xe, 0xb3, 0x57, 0x9d, 0x37, 0xd, 0xfa, 0xd5, 0x9e, 0x93, 0xb5, 0xaf, 0xf1, 0x62, 0xd9, 0x2b, 0x82, 0xe9, 0x2c, 0x36, 0x3c, 0x6d, 0xc5, 0x18, 0x2b, 0xdd, 0x26, 0x8e, 0xf1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x27, 0x1a, 0x33, 0x57, 0xd0, 0x60, 0xe9, 0xde, 0xa1, 0x2a, 0x25, 0x87, 0x6c, 0x9, 0xfe, 0x8d, 0x8c, 0x10, 0x40, 0x41, 0x74, 0x7b, 0xc8, 0x3d, 0x1b, 0x1, 0xfb, 0x9a, 0xe4, 0x4e, 0x61, 0x94}} return a, nil } -var _quorumcertificateScriptsGet_node_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8f\x31\x4b\xc4\x40\x10\x85\xfb\xfd\x15\xef\xae\x4a\x40\x0e\x05\xb9\xe2\xe0\xaa\x88\x90\x52\x44\x2c\x42\x8a\x25\x99\xc4\x85\xcd\xac\xec\x4c\x50\x08\xf9\xef\x92\x6c\x10\x83\xd5\x6d\xb7\x33\xdf\x7b\x1f\xe3\x86\xcf\x10\x15\xcf\x3e\x7c\x15\x7e\x14\xa5\xf8\x52\xa0\x8b\x61\xc0\x71\x37\x3b\x1a\x63\x9b\x86\x44\x32\xeb\x7d\x8e\x6e\x64\x0c\xd6\x71\xd6\x24\xa0\xe4\x96\xbe\x2f\x78\x2b\x59\x1f\xce\x77\xe0\xd0\x52\xf9\x74\xc1\xab\x46\xc7\x7d\x9e\x16\xe7\x47\x4c\xc6\x00\x80\x27\xc5\x16\x14\x5c\xf7\xf2\x53\x4f\xba\x7d\x24\xcb\x13\xef\xba\x5f\xbc\xfa\x2b\xac\x4f\x8b\xe8\x9d\x5c\xff\xa1\x52\x25\x69\x8d\xc3\x15\xec\x3c\xa6\x35\xba\xbc\x48\x3a\x46\xbe\xa1\xe2\xb0\x46\x67\x90\x17\xfa\xdf\x73\x0f\x2b\xdb\x41\x89\x33\x66\xfe\x09\x00\x00\xff\xff\x50\x00\x3d\xc8\x47\x01\x00\x00" +var _quorumcertificateScriptsGet_node_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x5e\x6f\x09\x48\xa9\x20\x3d\x14\x7a\x90\x44\x21\xc7\x1a\xc4\x43\xe9\x61\x49\x27\x71\x61\x33\x2b\x3b\x13\x2c\x84\xfc\x77\x49\x36\x88\xe2\xc9\xb9\x0d\xf3\xbe\xf7\x31\xae\xff\x08\x51\xf1\xec\xc3\x67\xe1\x07\x51\x8a\xa7\x02\x6d\x0c\x3d\x76\xb7\x53\xf1\x58\x96\x2f\x4f\x75\x6d\x8c\x6d\x1a\x12\xc9\xac\xf7\x39\xda\x81\xd1\x5b\xc7\x59\x93\x80\x8a\xaf\x74\x3b\xe0\xb5\x62\xbd\xdf\xdf\x81\xc3\x95\xaa\xf2\x80\x5a\xa3\xe3\x2e\x4f\x87\xfd\x03\x46\x63\x00\xc0\x93\x62\x05\x05\xc7\xdf\xe2\x6d\x47\xba\x2e\x92\xe5\x29\xef\xda\xef\xf8\xf9\xa7\xf0\xb2\x9d\x45\x6f\xe4\xba\x77\x95\x73\x92\x5e\xb0\x39\x82\x9d\xc7\xb8\xa0\xf3\x44\xd2\x21\xf2\x3f\x2a\x36\x0b\x3a\x81\xbc\xd0\xdf\x9e\x1d\xac\xac\x0f\xa5\x9c\x31\xd3\x57\x00\x00\x00\xff\xff\xe0\x8f\x48\xf8\x43\x01\x00\x00" func quorumcertificateScriptsGet_node_weightCdcBytes() ([]byte, error) { return bindataRead( @@ -5059,11 +4970,11 @@ func quorumcertificateScriptsGet_node_weightCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_node_weight.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x93, 0x25, 0xfa, 0x54, 0x63, 0x59, 0xc9, 0xed, 0x7c, 0xb4, 0x5, 0x3, 0xd4, 0xe1, 0x46, 0x77, 0x8e, 0x2d, 0xec, 0x84, 0x5b, 0x67, 0x8, 0x2a, 0xe3, 0xdc, 0xaa, 0x1c, 0xfb, 0x6, 0xd4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfc, 0xbc, 0xc8, 0xca, 0x86, 0x57, 0x6c, 0xe8, 0xd3, 0xaf, 0x8c, 0xa, 0x39, 0xc9, 0x48, 0x9b, 0xb4, 0xf6, 0x81, 0x54, 0x5a, 0xcc, 0x8f, 0x4a, 0xc8, 0xcc, 0x5e, 0x54, 0x10, 0xec, 0xe1, 0x27}} return a, nil } -var _quorumcertificateScriptsGet_qc_enabledCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xcc\x31\x0a\x42\x31\x0c\x06\xe0\x3d\xa7\xf8\x79\xd3\xeb\xe2\x01\x1c\x2d\x38\xeb\x11\x4a\x49\xa5\x90\x26\x92\xb4\x38\x88\x77\x77\xee\xfa\x0d\x5f\x1f\x6f\xf3\x89\xbb\xd8\x27\xcb\x8a\xc9\xfe\xcc\x68\x6e\x03\xc7\x66\x07\x51\xa9\x95\x23\xce\x22\x92\xd0\x96\x62\x94\xae\x67\xba\xe2\x66\x26\xf8\x12\x01\x80\xf3\x5c\xae\x7b\x77\xe9\xfa\x70\x7b\x39\x47\x10\xfd\xfe\x01\x00\x00\xff\xff\x53\x18\x41\x96\x71\x00\x00\x00" +var _quorumcertificateScriptsGet_qc_enabledCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xcc\x31\x0e\xc2\x30\x0c\x05\xd0\xdd\xa7\xf8\x63\xbb\x20\x66\x36\x48\x61\xa6\xf4\x04\x51\xe5\xa2\x48\x8e\x8d\xec\x44\x20\x21\xee\xce\xdc\x0b\xbc\x52\x5f\xe6\x0d\x37\xb1\x77\x92\x1e\x8d\x7d\x4e\xd8\xdc\x2a\x8e\x9f\x39\x9d\xa7\xe9\x71\x5d\x16\xa2\xbc\xae\x1c\x31\x64\x91\x11\x5b\x57\xd4\x5c\x74\x18\x4f\xb8\x98\x09\xbe\x44\x00\xe0\xdc\xba\xeb\x9e\x3a\x14\xbd\xbb\x3d\x9d\x23\x88\x7e\xff\x00\x00\x00\xff\xff\xf9\xab\x7c\xd5\x6d\x00\x00\x00" func quorumcertificateScriptsGet_qc_enabledCdcBytes() ([]byte, error) { return bindataRead( @@ -5079,11 +4990,11 @@ func quorumcertificateScriptsGet_qc_enabledCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_qc_enabled.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe4, 0x1, 0xc8, 0x57, 0x3, 0x99, 0xe8, 0x3a, 0xeb, 0xa5, 0xac, 0x3b, 0x72, 0x25, 0x55, 0x34, 0xf7, 0x31, 0x44, 0x4b, 0xc6, 0x3, 0x7, 0x69, 0x63, 0x0, 0xea, 0xb, 0x6f, 0x71, 0x5, 0xba}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x62, 0xcd, 0xad, 0xd, 0x7, 0x98, 0x9e, 0xfe, 0xa3, 0xe1, 0x47, 0x98, 0x92, 0xb9, 0x63, 0x1e, 0xb, 0x3b, 0x3d, 0xf3, 0x6b, 0x5c, 0x5e, 0x33, 0x8a, 0xa9, 0x32, 0xc4, 0x22, 0xbd, 0x99, 0x7a}} return a, nil } -var _quorumcertificateScriptsGet_voter_is_registeredCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xc1\x8a\x83\x40\x10\x44\xef\xfd\x15\x85\x27\xbd\xac\x77\x8f\xeb\xb2\xe0\x71\xdd\x2f\x98\x68\x8f\x34\x8c\xdd\xa1\x67\x34\x87\x90\x7f\x0f\x86\x10\xf0\x5a\xd4\xab\x57\xb2\x5e\xcd\x0b\x7e\x93\xdd\xfa\xb4\xe5\xc2\xfe\xd7\x23\xba\xad\xa8\x4e\x59\x45\xd4\xb6\x18\xb9\x6c\xae\x19\x01\x17\xb3\xc4\x41\x21\x3a\xcb\x14\x8a\xe8\x02\x89\x08\x50\x9b\x19\x92\xe1\xbc\xc8\x41\xf2\x8c\x68\x8e\xdd\x8e\x0a\x51\x98\x26\xce\xb9\x0e\x29\x35\x88\x9b\x62\x0d\xa2\xf5\xc1\x0c\x3f\x1d\xfe\x8b\x8b\x2e\x4d\x87\x6f\xb3\x84\x3b\x11\x00\xf8\x4b\x79\x3e\xf8\xb5\x5b\x61\x1f\xf2\xf8\x91\xbc\x37\x1a\xa2\xc7\x33\x00\x00\xff\xff\xc7\x79\x0f\x5e\xd2\x00\x00\x00" +var _quorumcertificateScriptsGet_voter_is_registeredCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xb1\x4e\x85\x40\x10\x45\xfb\xf9\x8a\x5b\x42\x23\xd6\x74\x0a\x9a\x50\x02\x5f\xb0\xc2\x2c\x99\x64\x99\x31\xb3\x0b\x9a\x18\xff\xdd\x60\x5e\x5e\xf2\xfa\x7b\xcf\x39\xb2\x7f\x9a\x17\xbc\x27\xfb\xea\xd2\x91\x0b\xfb\xd8\x21\xba\xed\x78\xfe\x1e\xbb\x97\xbe\x9f\xde\xe6\x99\xa8\x69\x30\x71\x39\x5c\x33\x02\x3e\xcc\x12\x07\x85\xe8\x2a\x4b\x28\xa2\x1b\x24\x22\x40\x6d\x65\x48\x86\xf3\x26\x17\x89\x57\x44\x73\x9c\x76\x4d\x88\xc2\xb2\x70\xce\x55\x48\xa9\x46\x3c\x14\x7b\x10\xad\xae\xcf\xd0\xb7\x98\x8b\x8b\x6e\x75\x8b\x57\xb3\x84\x1f\x22\x00\xf0\x7f\xe5\x63\xdc\xd3\x69\x85\x7d\xc8\xd3\x5d\x72\x63\xd4\x44\xbf\x7f\x01\x00\x00\xff\xff\x41\x14\xef\x9c\xce\x00\x00\x00" func quorumcertificateScriptsGet_voter_is_registeredCdcBytes() ([]byte, error) { return bindataRead( @@ -5099,11 +5010,11 @@ func quorumcertificateScriptsGet_voter_is_registeredCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_voter_is_registered.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xc6, 0x3d, 0x20, 0x48, 0xaf, 0x41, 0xc4, 0xfd, 0x17, 0xf1, 0x48, 0xb8, 0x5b, 0xd0, 0x4c, 0xa5, 0xf1, 0x23, 0x4e, 0x87, 0xf, 0xa5, 0xb1, 0x4d, 0x99, 0x1e, 0x1e, 0xfa, 0x87, 0x7f, 0x65}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9f, 0x82, 0xb4, 0x6f, 0x91, 0xac, 0xd, 0xe4, 0x8b, 0xbd, 0xea, 0xe9, 0xc5, 0xc5, 0x77, 0xff, 0xb7, 0x10, 0x20, 0xa5, 0x2d, 0xa1, 0x47, 0xc9, 0x5d, 0x95, 0xe8, 0xbe, 0x41, 0xbb, 0xa1, 0x9e}} return a, nil } -var _quorumcertificateScriptsGet_voting_completedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\xa1\x6e\xc5\x30\x0c\x46\x61\xee\xa7\xf8\x55\xd4\x92\x95\x0f\xae\xd2\xf8\xf6\x06\x6e\xe2\xac\x96\x92\xb8\x4a\x9c\x0e\x4c\x7b\xf7\xab\x7b\x59\xe9\x21\xdf\xd1\x72\x5a\x73\x7c\x66\xfb\xdd\xf2\xe8\x2e\xed\x6b\x43\x6a\x56\x30\xdd\xda\x44\xb4\xae\xf8\x16\x1f\xad\x76\x30\x76\xb3\x2c\x5c\xa1\x35\x6a\x60\xd7\xfa\x03\x4d\x60\x54\x8b\x82\x83\x3b\xfa\xd8\x8b\xba\x4b\x04\xe3\x32\x17\x24\x6b\xf0\x43\x3b\xe4\xb4\x70\x10\x71\x08\xd2\xfb\xcc\x39\x2f\x48\xa3\xa2\xb0\xd6\x79\x79\xc7\x87\x59\xc6\x1f\x11\x00\xb4\x97\x77\xbf\x7b\xbb\xec\xc9\x6d\x56\xce\x2c\x2e\x71\x5e\x88\xfe\x1f\x01\x00\x00\xff\xff\xb1\xa0\xbe\x79\xc7\x00\x00\x00" +var _quorumcertificateScriptsGet_voting_completedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x31\x4e\x03\x31\x10\x05\xd0\x7e\x4e\xf1\xcb\xdd\x86\x50\xd3\x81\x03\x7d\x92\x13\x4c\xec\x31\x3b\x92\xed\x59\xd9\xe3\x05\x09\x71\x77\x04\x1d\x27\x78\x4f\xeb\x6e\xdd\xf1\x56\xec\x23\x94\x39\x5c\xfa\x25\x20\x77\xab\x78\xfc\xbc\x84\xe7\xf3\xf9\xfa\x7a\xbb\x11\x9d\x4e\xb8\x8a\xcf\xde\x06\x18\x77\xb3\x22\xdc\xa0\x2d\x69\x64\xd7\xf6\x0e\xcd\x60\x34\x4b\x82\x8d\x07\xc6\xbc\x57\x75\x97\x04\xc6\x61\x2e\xc8\xd6\xe1\x9b\x0e\xc8\x6e\x71\x23\xe2\x18\x65\x8c\x85\x4b\x59\x91\x67\x43\x65\x6d\xcb\xfa\x84\x17\xb3\x82\x2f\x22\x00\xe8\x7f\xde\xff\xd9\xc3\x61\xbf\x5c\xb0\xba\x17\x71\x49\xcb\x4a\xf4\xfd\x13\x00\x00\xff\xff\xad\x10\x1a\xa5\xc3\x00\x00\x00" func quorumcertificateScriptsGet_voting_completedCdcBytes() ([]byte, error) { return bindataRead( @@ -5119,11 +5030,11 @@ func quorumcertificateScriptsGet_voting_completedCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_voting_completed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0x87, 0x1d, 0x98, 0xc3, 0xe7, 0x56, 0x6d, 0x1d, 0xe6, 0x4a, 0xf0, 0xa5, 0xde, 0x33, 0xfa, 0x4b, 0xb0, 0x81, 0x1f, 0xaf, 0x72, 0xa7, 0xdf, 0x2f, 0xc2, 0xe0, 0xbd, 0x62, 0x6d, 0xfe, 0xa9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x56, 0x73, 0xa6, 0xe8, 0x90, 0xf, 0x17, 0xcf, 0xf6, 0xd5, 0x87, 0xb5, 0xa1, 0x17, 0x17, 0xdb, 0x32, 0x50, 0xb1, 0x43, 0x64, 0xaa, 0xb0, 0x2c, 0xf7, 0xaf, 0x3c, 0xdc, 0xce, 0x6e, 0x4d, 0x70}} return a, nil } -var _quorumcertificateSubmit_voteCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\xc1\xaa\xdb\x30\x10\xbc\xeb\x2b\x06\x1f\x5e\x6d\x68\xed\xbb\x69\xfb\x78\x35\xf4\x56\x78\x69\x4a\xee\x8a\xbd\xb6\x45\x6c\xc9\x5d\xad\x9a\x96\x92\x7f\x2f\xb2\x9a\x10\x87\x27\x30\x78\x57\x33\xb3\xa3\x59\x33\x2f\x8e\x05\x5f\x27\x77\x6e\xa6\xe0\x85\x78\xd7\xa0\x67\x37\x23\xdb\xf4\x32\xa5\xaa\x0a\x2f\xb0\xae\x23\xfc\x72\x42\x8c\xe0\xc9\x43\x46\xe3\x21\xac\xad\xd7\xad\x18\x67\x21\x0e\x3e\x1c\x67\x23\xd0\xd8\x35\x2b\x54\x55\x55\x24\xbf\x6a\xd6\x33\x09\xb1\xaf\x63\x19\xbf\x78\xbb\x37\x83\xd5\x12\x98\x6a\xfc\x18\x09\xde\x0c\x96\x3a\xcc\xe4\xbd\x1e\x08\xc1\x1b\x3b\x40\x46\x5a\x27\xbf\xf3\xf0\xa2\x4f\xb1\x75\xa2\x3f\x57\x85\x6f\x09\x9b\xf8\x23\xfd\xfe\x40\xb6\x75\x1d\x75\xf0\xc2\x11\xea\xfa\x55\x80\xf5\xf9\x2a\xab\xd4\x9d\xe5\xfc\xc1\xc5\x7e\x65\xbd\xdf\x4a\xa7\x66\x81\xbf\x4a\x01\xc0\xc2\xb4\x68\xa6\x7c\x75\xcb\x35\x74\x90\x31\xff\xe2\x98\xdd\xf9\xa0\xa7\x40\x05\x9e\x5e\xda\xd6\x05\x2b\x91\x82\xff\x67\x22\x49\xd9\x7d\xa7\x1e\x9f\xd2\x53\xb9\xf4\xe2\x58\x0f\x54\x1e\x57\xfa\xc7\xa7\x4d\xee\xe5\x21\xe2\x3f\xe7\x71\x25\x35\xde\xb8\xda\x27\xf6\xab\x96\xb1\xb8\x0d\x8a\xe7\xf9\x19\x8b\xb6\xa6\xcd\xb3\xc6\x85\xa9\x83\x75\x82\x34\x02\x4c\x3d\x31\xd9\x96\xe2\xb6\x7e\xb6\xc9\x53\x56\xa8\x1b\xff\x6a\xb2\x8c\x3f\x8f\xf9\x6c\xca\x87\x98\xee\x8a\xe4\xe6\xa2\x2e\xff\x02\x00\x00\xff\xff\xf6\x6f\xe5\x6d\x63\x02\x00\x00" +var _quorumcertificateSubmit_voteCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\x51\xcf\x93\x40\x10\x7c\xbf\x5f\x31\xf9\x1e\x94\x26\x5a\x7c\x26\xea\x17\x42\xf5\xcd\xa4\x2d\xc6\xf7\x2b\x2c\x70\x29\xdc\xe1\xde\x9e\xad\x31\xfd\xef\xe6\x38\xdb\xb4\x8d\x9b\x90\xb0\xbb\x33\xb3\xc3\x60\xa6\xd9\xb1\xe0\xeb\xe8\x4e\xd5\x18\xbc\x10\xef\x2a\x74\xec\x26\x7c\x38\xef\xaa\x72\xb3\xd9\x7f\xa9\x6b\xa5\xf2\x1c\x25\xac\x6b\x09\xbf\x9c\x10\x23\x78\xf2\x90\xc1\x78\x08\x6b\xeb\x75\x23\xc6\x59\x88\x83\x0f\x87\xc9\x08\x34\x76\xd5\x02\x55\x79\x1e\xc9\x5b\xcd\x7a\x22\x21\xf6\x45\x6c\xe3\x13\xb7\xb5\xe9\xad\x96\xc0\x54\xe0\xfb\x40\xf0\xa6\xb7\xd4\x62\x22\xef\x75\x4f\x08\xde\xd8\x1e\x32\xd0\x72\xf9\xad\x87\x17\x7d\x8c\xa3\x23\xfd\xbe\x2a\x7c\x4b\xd8\xc4\x1f\xe8\xfc\x9e\x6c\xe3\x5a\x6a\xe1\x85\x23\xd4\x75\x8b\x00\xeb\xd3\x55\x56\xa9\x3b\xcb\xd9\x93\x8b\x7a\x61\xbd\x7b\x94\x4e\xc3\x15\xfe\x28\x05\x00\x33\xd3\xac\x99\xb2\xc5\x2d\x17\x28\x83\x0c\x65\xd3\xb8\x60\x25\x62\xf0\xaf\x46\x92\x14\xd6\x9e\x3a\x7c\x4a\xdf\xc6\xeb\x83\x63\x76\xa7\x8f\x6f\x1e\x02\x5f\xff\x88\xb8\xcf\x59\xcc\xbd\xc0\x7f\x56\xb5\x38\xd6\x3d\x6d\xb5\x0c\xab\xdb\x81\x58\xaf\xaf\x98\xb5\x35\x4d\xf6\x52\xb9\x30\xb6\xb0\x4e\x90\x4e\x80\xa9\x23\x26\xdb\x50\xfc\x2d\x3f\x9b\xe4\xe5\x65\xa5\x6e\xfc\xab\xb9\x75\x7c\x79\x0e\xe2\xa1\x7d\xca\xe3\xae\x49\x6e\x2e\xea\xf2\x37\x00\x00\xff\xff\x81\x4d\x6f\x1c\x48\x02\x00\x00" func quorumcertificateSubmit_voteCdcBytes() ([]byte, error) { return bindataRead( @@ -5139,111 +5050,11 @@ func quorumcertificateSubmit_voteCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/submit_vote.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xff, 0x17, 0x2e, 0x7e, 0x4e, 0xc0, 0xf1, 0x63, 0x79, 0x30, 0x6a, 0xd7, 0xc7, 0xad, 0xdf, 0x22, 0xad, 0x5f, 0xfd, 0xd, 0x41, 0xc7, 0x37, 0xea, 0xef, 0x44, 0x8b, 0x91, 0x62, 0xe4, 0x9e}} - return a, nil -} - -var _randombeaconhistoryScriptsGet_backfiller_max_entriesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x41\x4b\xc3\x40\x10\x46\xef\xf9\x15\x43\x0f\x65\xf7\x92\x5e\xc4\x43\xa8\x0d\x89\x08\x7a\x10\x44\xd0\xfb\x74\x33\x49\x17\x27\xb3\x32\x3b\x8b\x8a\xf8\xdf\xc5\x12\xac\x50\x6f\x03\xf3\x1e\xdf\x8b\xf3\x6b\x52\x83\xd5\x23\xca\x90\xe6\x9e\x30\x24\xb9\x8d\xd9\x92\x7e\xac\xaa\x0a\x43\xa0\x9c\x1d\x32\x7b\x18\x8b\xc0\x8c\x51\xdc\x1e\xc3\xcb\x18\x99\x49\xbb\x61\x50\xca\xb9\x81\xe5\xf0\x0d\x3c\xdd\x89\x5d\x5e\xb4\xf0\x59\x01\x00\x30\x19\x9c\x70\xb8\x82\x89\xac\x2b\x76\xe8\x42\x48\x45\x6c\x8b\xc5\x0e\xae\x4f\xaa\xe9\xed\x19\xb9\x90\x87\xf5\xf2\xda\x9d\xcf\xf8\xfa\x27\x0b\x27\xaa\xf7\x47\x63\xbb\xfe\x27\xba\xee\x7f\xb5\x9d\x1b\x35\xcd\x0d\x6c\x16\x6d\xa3\xe7\xf8\x89\xf6\xc7\x60\x25\x2b\x2a\x7f\x9a\xdb\x7a\x22\xbb\xc7\xf7\x1b\x31\x8d\x94\x1f\x48\xaf\x91\xd9\x79\x68\x5b\x90\xc8\xd5\xd7\x77\x00\x00\x00\xff\xff\xf1\x75\x4f\x97\x41\x01\x00\x00" - -func randombeaconhistoryScriptsGet_backfiller_max_entriesCdcBytes() ([]byte, error) { - return bindataRead( - _randombeaconhistoryScriptsGet_backfiller_max_entriesCdc, - "randomBeaconHistory/scripts/get_backfiller_max_entries.cdc", - ) -} - -func randombeaconhistoryScriptsGet_backfiller_max_entriesCdc() (*asset, error) { - bytes, err := randombeaconhistoryScriptsGet_backfiller_max_entriesCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "randomBeaconHistory/scripts/get_backfiller_max_entries.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb7, 0xc, 0x4a, 0x24, 0x16, 0x69, 0xb, 0xe5, 0x5b, 0x48, 0x19, 0x67, 0xd9, 0xd9, 0x37, 0x26, 0xe4, 0x9f, 0xfe, 0xb1, 0x10, 0x4e, 0x1c, 0xb4, 0xaa, 0x81, 0x6b, 0x3d, 0x7d, 0xc3, 0x94, 0x59}} - return a, nil -} - -var _randombeaconhistoryScriptsGet_latest_source_of_randomnessCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8d\xb1\xae\x83\x30\x0c\x45\xf7\x7c\xc5\x15\x13\x19\x1e\xd2\x5b\x19\xe9\xc2\x56\xa9\xfd\x82\x28\x35\x10\x15\xec\xca\x71\x86\xaa\xea\xbf\x57\x84\x15\x8f\xf7\x9c\x23\xa7\xed\x25\x6a\x68\x6e\x81\x1f\xb2\x0d\x14\xa2\xf0\x98\xb2\x89\xbe\x1b\xe7\x42\x8c\x94\x73\x1b\xd6\xd5\x63\x2a\x8c\x2d\x24\x6e\x7d\x8f\x13\xbb\x3b\xb6\xbb\x14\x8d\x84\x8f\x03\x00\x25\x2b\xca\xa7\x76\xae\xde\x75\x3a\x18\xef\x5f\x6a\xb2\x5f\xb0\x61\x95\xf8\x1c\x29\xcd\x8b\xf5\x98\xc9\x2e\x45\x95\xf8\x98\x5b\xdf\x2d\x95\xe0\x0f\xff\xb5\xf1\xee\xeb\x7e\x01\x00\x00\xff\xff\xf0\x98\xc8\x29\xc8\x00\x00\x00" - -func randombeaconhistoryScriptsGet_latest_source_of_randomnessCdcBytes() ([]byte, error) { - return bindataRead( - _randombeaconhistoryScriptsGet_latest_source_of_randomnessCdc, - "randomBeaconHistory/scripts/get_latest_source_of_randomness.cdc", - ) -} - -func randombeaconhistoryScriptsGet_latest_source_of_randomnessCdc() (*asset, error) { - bytes, err := randombeaconhistoryScriptsGet_latest_source_of_randomnessCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "randomBeaconHistory/scripts/get_latest_source_of_randomness.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0xa4, 0x75, 0x4f, 0xef, 0x7f, 0xaa, 0x32, 0x42, 0x97, 0x99, 0x27, 0x7f, 0xe5, 0x88, 0xed, 0x26, 0x42, 0xef, 0xc0, 0xfc, 0x6, 0xb9, 0xfe, 0x81, 0xc, 0x3, 0x7e, 0x1a, 0xdd, 0xca, 0x78}} - return a, nil -} - -var _randombeaconhistoryScriptsGet_source_of_randomnessCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xb1\x4e\x03\x31\x0c\x86\xf7\x3c\xc5\xaf\x4e\xbd\xa5\xb7\x20\x86\x8e\x9d\xca\x84\x74\x88\x07\x08\xa9\xc3\x45\x5c\x6c\xb0\x1d\x24\x84\x78\x77\xd4\x9c\x84\x44\x75\x63\xf2\xdb\xdf\xe7\xbf\xd4\x77\x51\xc7\x6e\x8a\x7c\x91\x7a\xa2\x98\x84\xcf\xc5\x5c\xf4\x6b\x17\xc2\x38\x8e\x98\xc8\xb5\xd0\x27\x19\x7c\x26\x98\x34\x4d\x04\xc9\xd0\xbe\xc1\x64\x86\x2c\xda\x43\xa5\x8f\x46\xe6\x74\xc1\xcb\x22\xe9\x0d\x33\x95\xd7\xd9\x91\x55\x6a\xcf\x37\x24\x48\xc2\xae\x31\xf9\xe1\x2a\x0b\x31\x25\x32\xdb\xc7\x65\x19\x90\x1b\xa3\xc6\xc2\xfb\xe8\xa7\x2b\xee\xdc\x69\x47\x3c\x3f\xb0\xdf\xdf\x0d\xc7\x2d\xdc\x61\xfd\x7b\x5a\xaf\xfc\x0e\x00\xa0\xe4\x4d\x79\x73\x7a\x6d\xf3\x98\xa7\xbf\x2e\xb7\xb2\x7f\xcf\x21\xfc\x84\xdf\x00\x00\x00\xff\xff\x5d\x21\x51\x1c\x31\x01\x00\x00" - -func randombeaconhistoryScriptsGet_source_of_randomnessCdcBytes() ([]byte, error) { - return bindataRead( - _randombeaconhistoryScriptsGet_source_of_randomnessCdc, - "randomBeaconHistory/scripts/get_source_of_randomness.cdc", - ) -} - -func randombeaconhistoryScriptsGet_source_of_randomnessCdc() (*asset, error) { - bytes, err := randombeaconhistoryScriptsGet_source_of_randomnessCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "randomBeaconHistory/scripts/get_source_of_randomness.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0xa6, 0x99, 0x82, 0xb8, 0xdc, 0x36, 0x48, 0xb8, 0x9f, 0xd3, 0xec, 0xc3, 0x76, 0x62, 0xbd, 0xbc, 0x45, 0xc2, 0x80, 0x8d, 0xaf, 0x6f, 0x37, 0xc6, 0x4a, 0xf1, 0x85, 0x7e, 0x56, 0xab, 0x12}} - return a, nil -} - -var _randombeaconhistoryScriptsGet_source_of_randomness_pageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8e\xb1\x4e\xc3\x40\x10\x44\xfb\xfb\x8a\x51\xaa\x58\x42\x71\x83\x28\x52\x52\x41\x87\x82\xf8\x80\xe3\x32\xb6\x4f\xd8\xb7\x66\x77\x8d\x84\x10\xff\x8e\x72\xa4\x70\xe1\x74\xab\x19\xbd\x7d\x93\xa7\x59\xd4\xb1\x3b\xc5\x72\x96\xe9\x91\x31\x49\x79\xca\xe6\xa2\xdf\xbb\x10\xda\xb6\xc5\x89\xae\x99\x5f\x34\xf8\x40\x98\x2c\x9a\x08\xe9\xa0\x95\x28\x34\x43\x27\x5a\x4b\xe5\xe7\x42\x73\x9e\xf1\x3e\x4a\xfa\xc0\xc0\xdc\x0f\x8e\x4e\x65\xaa\xfd\x86\x04\x49\x8a\x6b\x4c\x7e\xb8\xc8\x42\x4c\x89\x66\xfb\x38\x8e\x0d\xba\xa5\x60\x8a\xb9\xec\xe7\xd8\xf3\x88\xb7\xe7\xe2\x0f\xf7\x77\x98\xa9\x2f\xab\xa0\x39\x6e\xbd\x3d\xfc\x67\xaf\x75\xed\x35\xbb\x50\xf8\x09\x00\xa0\xf4\x45\xcb\x26\xd8\xd3\x6f\xb0\x75\xc7\xca\x7f\x3d\x9a\xf0\x1b\xfe\x02\x00\x00\xff\xff\xf6\xbd\xa5\x21\x46\x01\x00\x00" - -func randombeaconhistoryScriptsGet_source_of_randomness_pageCdcBytes() ([]byte, error) { - return bindataRead( - _randombeaconhistoryScriptsGet_source_of_randomness_pageCdc, - "randomBeaconHistory/scripts/get_source_of_randomness_page.cdc", - ) -} - -func randombeaconhistoryScriptsGet_source_of_randomness_pageCdc() (*asset, error) { - bytes, err := randombeaconhistoryScriptsGet_source_of_randomness_pageCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "randomBeaconHistory/scripts/get_source_of_randomness_page.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x56, 0xbb, 0xca, 0xd1, 0xca, 0xd5, 0xe, 0xe7, 0x65, 0x55, 0x6f, 0xbe, 0x6a, 0xc9, 0xb8, 0xc5, 0x74, 0x73, 0x5c, 0x48, 0xf8, 0xbe, 0xf8, 0x38, 0xf2, 0xa7, 0xc4, 0x61, 0x34, 0x67, 0xc0, 0x61}} - return a, nil -} - -var _randombeaconhistoryTransactionsSet_backfiller_max_entriesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xd0\xc1\x4a\x03\x31\x10\x06\xe0\xfb\x3e\xc5\xb0\x87\x92\x5c\xb6\x17\xf1\xb0\xa8\xc5\x2d\x82\x1e\x04\x11\xf4\x3e\x4d\xa7\x1a\xcc\x66\x96\xc9\x04\x15\xe9\xbb\x4b\x5a\xcd\x0a\x76\xce\xf3\xcd\xfc\xfc\x7e\x9c\x58\x14\xda\x47\x8c\x5b\x1e\x07\x42\xc7\xf1\xd6\x27\x65\xf9\x6c\x9b\x46\x05\x63\x42\xa7\x9e\xa3\x19\xf1\xe3\x26\xaa\x78\x4a\x3d\x3c\xdd\x45\x3d\x3f\xb3\xf0\xd5\x00\x00\x4c\x42\x13\x0a\x19\x74\x4e\x7b\xc0\xac\xaf\x66\x60\x11\x7e\x7f\xc6\x90\xc9\xc2\xe2\xda\x39\xce\x51\x7f\xf7\xcb\x04\x52\xd8\xa0\x7b\xdb\xf9\x10\x48\xe0\x12\x0a\xee\xca\x5f\x7c\xa1\x6e\x73\xe0\x17\x8b\x13\xa9\xba\xa1\xaa\x2b\x53\xcf\x95\xd9\x09\x8f\x3d\x2c\x7f\x6e\x2c\xe5\xbf\x9d\x69\x85\x16\x56\x2b\x98\x30\x7a\x67\xda\x35\xe7\xb0\x85\xc8\x0a\xc7\xff\x7f\x03\x0a\x25\xce\xe2\xa8\xb5\x07\x5a\xfd\xbc\xd2\x25\xd2\xfb\xda\xd1\x03\xc9\x1a\x43\x28\xad\xf5\x30\x57\x67\x8f\x72\x0f\xcd\xbe\xf9\x0e\x00\x00\xff\xff\x2c\xdc\xe0\x9a\x7b\x01\x00\x00" - -func randombeaconhistoryTransactionsSet_backfiller_max_entriesCdcBytes() ([]byte, error) { - return bindataRead( - _randombeaconhistoryTransactionsSet_backfiller_max_entriesCdc, - "randomBeaconHistory/transactions/set_backfiller_max_entries.cdc", - ) -} - -func randombeaconhistoryTransactionsSet_backfiller_max_entriesCdc() (*asset, error) { - bytes, err := randombeaconhistoryTransactionsSet_backfiller_max_entriesCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "randomBeaconHistory/transactions/set_backfiller_max_entries.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6d, 0x39, 0x6d, 0x10, 0xb9, 0x62, 0xc2, 0xb3, 0xc3, 0xcd, 0xc, 0xe1, 0xff, 0xf9, 0x65, 0x33, 0xed, 0x40, 0xf6, 0x65, 0xf0, 0x29, 0xba, 0x14, 0x19, 0x39, 0x84, 0x83, 0xe8, 0xbd, 0x53, 0x5c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x97, 0xf6, 0x2f, 0x9, 0xa3, 0xbc, 0x7e, 0x74, 0xb2, 0xa3, 0xe, 0xf0, 0x38, 0x14, 0x3e, 0x45, 0xca, 0xa1, 0xa1, 0x7f, 0xa4, 0x86, 0x99, 0x91, 0x81, 0xb3, 0x63, 0x6d, 0x75, 0x3b, 0xe}} return a, nil } -var _stakingcollectionClose_stakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x8e\xd3\x30\x10\xbd\xe7\x2b\x46\x3d\x2c\xa9\xb4\xca\x4a\x70\xab\x80\x0a\x8a\x90\xf6\x04\xa2\xc0\x7d\xea\x4c\x13\x83\xe3\x89\xc6\xe3\x2d\x2b\xb4\xff\x8e\x6c\x37\x29\xa2\x39\x70\x59\x1f\x92\x78\xfc\x26\xef\xcd\xf3\xb3\xc3\xc8\xa2\xf0\xd1\xf1\x69\xaf\xf8\xd3\xfa\x6e\xc7\xce\x91\x51\xcb\x1e\x8e\xc2\x03\xac\x16\xcf\x56\x55\x75\x77\x07\x3b\xc7\x81\x02\x70\x54\x40\x08\x05\x03\x7c\xf8\x41\x46\xc1\x7a\xd0\x9e\xe6\xaa\x99\x5b\x53\xe3\xd7\xde\x06\x68\x99\x02\x78\x56\x10\x1a\xf8\x81\x32\x5c\xc8\xb0\xb4\x85\x39\xed\x6d\x4b\x5e\xad\x3e\x82\xe2\xc1\xd1\x6d\xea\x3d\x44\x05\xab\xa5\x7b\x20\x4c\x34\xa8\x19\x8c\xc6\x70\xf4\x5a\x0a\xa6\x68\xb3\x0a\x06\x7d\x62\xa1\x07\x92\x04\xa1\x90\xab\xd8\xa1\xf5\x55\xa5\x82\x3e\x60\x16\x56\x7b\x6e\xe9\xfe\xc3\x06\xf6\x2a\xd6\x77\xb7\xd0\x92\xa3\x0e\x95\x25\x15\xbf\xdd\x7b\x7d\xf5\x72\xbb\x86\xdf\x15\x00\x40\x7e\x38\xd2\x69\xc0\x8b\x35\x5f\xe8\xb8\x01\x8c\xda\xd7\x8b\xce\x35\x97\xcf\x4f\x27\x4f\xb2\x86\x9b\x65\xdc\x55\xa5\xca\x9c\xa3\xd0\x88\x42\xf5\x79\xd8\x33\xd5\x7b\x16\xe1\xd3\x77\x74\x91\xd6\x70\xf3\xae\x9c\x4d\x5a\xd3\x0a\xe4\x8e\xcd\x92\x56\x78\x33\xf9\xd6\x04\x65\xc1\x8e\x9a\x43\xfe\xd9\xeb\xe7\x98\xe1\x6d\x9d\xae\x76\xb3\x1c\xb8\x6b\xf8\xbe\x28\xfa\x8c\xda\xaf\xe7\x51\xd2\xda\x6e\x61\x44\x6f\x4d\xbd\xda\x71\x74\x6d\x8e\x51\x91\x0d\x08\x42\x47\x12\xf2\x86\x40\x19\x10\xae\x83\x7d\xce\xe6\x28\x76\x40\x79\x84\x18\x48\x5e\x84\xc9\x86\x55\x61\x7a\x2a\x76\xd3\x2f\x32\x51\xe9\x7f\x9c\x6c\x72\xe4\x12\x1b\xcd\x51\x2a\xef\x7f\xa2\xf4\xd7\x66\xe2\x7a\xaa\xfe\x04\x00\x00\xff\xff\x81\xd2\xc8\xc9\x8a\x03\x00\x00" +var _stakingcollectionClose_stakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xd4\x40\x0c\xbd\xe7\x2b\xac\x1e\xd0\x56\xaa\xb6\x08\x6e\x11\xb0\x8a\xb2\x05\x45\x54\x2d\x6a\x96\x0f\x70\x26\x4e\x32\x30\x19\x47\x33\x4e\x5b\x84\xfa\xef\x68\x66\x48\x40\xdd\x3d\xac\x0f\x89\xfc\x64\xbf\xf7\x6c\x8f\x1e\x27\x76\x02\x9f\x0d\x3f\xd5\x82\x3f\xb5\xed\x4b\x36\x86\x94\x68\xb6\xd0\x39\x1e\xe1\xed\x73\x7d\x28\xbe\x56\x77\x5f\xca\xfb\xdb\xdb\x9b\xf2\x50\xdd\xdf\x15\xfb\xfd\xc3\x4d\x5d\x67\xd9\xf5\x35\x94\x86\x3d\x79\xe0\x59\x00\xc1\x27\x0a\xe0\xe6\x07\x29\x01\x6d\x41\x06\x5a\x51\xb5\x32\x87\xc6\xc3\xa0\x3d\xb4\x4c\x1e\x2c\x0b\x38\x1a\xf9\x91\x62\xb9\x23\xc5\xae\x4d\xe2\x21\xd7\x2d\x59\xd1\xf2\x0b\x04\x1b\x43\x57\xa1\xb7\x99\x05\xb4\xa4\xee\x91\x30\xc8\xa0\xc4\x62\x54\x8a\x67\x2b\x09\x50\xc9\x9b\x16\x50\x68\x83\x0a\x3d\x92\x0b\x25\xe4\x23\x8a\x3d\x6a\x9b\x65\xe2\xd0\x7a\x8c\xc6\x36\x96\x5b\xaa\xf6\x39\xd4\xe2\xb4\xed\xaf\xa0\x25\x43\x3d\x0a\xbb\x00\x7e\xaf\xac\xbc\x7f\xb7\xbb\x84\xdf\x19\x00\x40\xfc\x18\x92\x65\xc0\x7f\x9b\x7b\xa0\x2e\x87\x37\x27\x97\xba\x3d\x42\xb2\xc8\x33\x39\x9a\xd0\xd1\xe6\xef\x00\x39\x14\xb3\x0c\x45\x4a\x16\xc1\x10\x9e\x4c\xb7\x3d\x25\x08\x1f\x97\xe1\xb7\x0d\x3b\xc7\x4f\x1f\xce\x35\xf0\x69\x13\x76\x9d\x9f\x7e\x04\xc7\xe5\xb5\xb0\xc3\x9e\xbe\xa1\x0c\x97\xab\xad\x10\xbb\x1d\x4c\x68\xb5\xda\x5c\x94\x3c\x9b\x36\xde\x35\x59\x01\x47\x1d\x08\xc3\x11\xd7\x45\x62\x78\x49\x3b\xa0\x67\x52\xb3\xd0\x39\xd3\x6e\xe3\x6d\x03\x1f\xad\x37\x4b\xff\x57\x37\xfb\x2f\x59\xb4\x5e\xb2\x3f\x01\x00\x00\xff\xff\x6e\x12\x74\xdf\xf6\x02\x00\x00" func stakingcollectionClose_stakeCdcBytes() ([]byte, error) { return bindataRead( @@ -5259,11 +5070,11 @@ func stakingcollectionClose_stakeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/close_stake.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x31, 0xd6, 0xfa, 0x69, 0x5f, 0x9d, 0x28, 0xd3, 0x8b, 0x18, 0x15, 0x2c, 0xdc, 0xf3, 0x4d, 0x92, 0xf3, 0x99, 0x54, 0x52, 0x91, 0x27, 0xbf, 0x10, 0xdd, 0x65, 0x16, 0xce, 0xac, 0x21, 0xd9, 0x7b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x59, 0x8d, 0x88, 0x8f, 0x9d, 0x2f, 0x9b, 0x93, 0x92, 0x8c, 0x12, 0x2b, 0xb, 0x67, 0x85, 0x23, 0x87, 0x27, 0x5b, 0x5f, 0x46, 0x81, 0x35, 0x3e, 0x3d, 0x28, 0xbf, 0xd8, 0x89, 0xc8, 0x19}} return a, nil } -var _stakingcollectionCreate_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x4d\x4f\xdb\x40\x10\x3d\xe3\x5f\xf1\x94\x03\xb5\xa5\xc8\xa4\xb7\xca\x6a\x8a\x68\x5a\x04\x42\x6d\x51\xa3\xf6\x3e\x78\x27\xf6\x0a\x67\xd7\x9a\x5d\x13\xac\x8a\xff\x5e\xf9\x2b\x24\xc4\x50\x38\xd4\x07\x67\xed\xec\xcc\x7b\xfb\xe6\xcd\x58\xaf\x4b\x2b\x1e\x0b\xa9\x4b\x6f\x83\xfe\xe9\xbc\xb0\x9b\xa5\xa7\x5b\x6d\xb2\x85\x2d\x0a\x4e\xbd\xb6\x06\x2b\xb1\x6b\x4c\x46\xff\x9b\x04\xc1\xc9\xc9\x09\x16\xc2\xe4\xd9\x81\xb0\xa6\x34\xd7\x86\x41\x69\x6a\x2b\xe3\xb1\xb2\x02\x82\xb1\x8a\xe1\x73\xf2\xd0\x0e\x54\x08\x93\xaa\xa1\x0d\x7c\xce\x70\x5d\x4e\xa4\xdb\xa4\x6d\x4a\x32\x0a\xa4\x94\x43\x59\xdd\x14\x3a\xc5\x2d\xd7\x0e\xde\xb6\x21\x86\x37\x03\x40\x10\x78\x21\xe3\xa8\x0d\x0c\x1b\x9c\xcb\x2f\x09\x96\x5e\xb4\xc9\xa6\x08\xb0\x73\xf5\xd4\xce\xba\xc0\x2b\xae\x5f\xbb\x6f\xa9\x33\x43\xbe\x12\x3e\x2b\x32\x2b\xda\xe7\xeb\x04\xbf\x2e\x8d\xff\xf0\xaf\xc0\x0b\x72\xf9\xd3\x98\x08\x7f\xda\xa0\xf6\x56\xb0\x1f\xce\xff\xa8\xe9\x4f\x5e\x25\xa0\xca\xe7\xe1\xa8\xe4\xf1\xe3\xf2\xc7\xc6\xb0\x44\x38\x1e\xdf\x77\xf0\x26\x68\x31\x4b\xe1\x92\x84\xc3\x5e\xc0\x1e\xea\xb3\x15\xb1\x9b\xdf\x54\x54\x1c\xe1\xb8\x3f\xc2\xc0\xb5\xb9\x1c\x17\xab\x78\x8c\x2b\xe6\x43\x2d\x62\xe7\xad\x50\xc6\xf1\x4d\x9b\xec\xe3\xff\x38\xc3\xa7\xb0\x71\x63\x32\xee\xd4\xc3\xed\xcb\x8e\xd1\x35\xf9\x3c\xda\xab\xd5\xe9\x29\x4a\x32\x3a\x0d\x27\x0b\x5b\x15\x0a\xc6\x7a\x74\xb4\x41\x10\x5e\xb1\xb0\x49\xb9\x31\x1c\xe1\xb0\x23\x7a\xeb\x96\xa2\xd7\x24\x35\x2a\xc7\xf2\xce\x0d\x32\x4c\xa2\x60\x0b\xa5\x57\x6d\x8d\xf7\x9d\x81\xf9\xf3\x6a\xc6\x69\xdb\x4a\xdf\xf6\x02\xce\xad\x7c\xbd\xd7\xce\x6b\x93\x7d\xb7\x8a\xb7\x36\xef\x7e\xa7\x28\xa9\x66\x49\x06\xfc\xdd\xaa\x6d\x4d\xa6\xb3\xc6\x88\x98\xe3\xd0\xcc\xa1\x50\x57\xf8\xe4\x35\xd6\xdf\x97\xf1\x39\x29\x33\xf6\xa0\x06\xb5\x8b\x06\x0d\xe1\xdd\x30\x69\xc4\x13\xda\x80\x4d\xb5\xc6\x5d\x83\x8d\x52\xec\x9d\x56\xac\x76\xd5\x1b\xd8\xe7\x7d\x1f\x61\x8e\xbd\x96\x7a\x89\xf9\xde\xc6\xb7\x90\x6e\xc0\xde\xc6\x77\x37\xef\x01\xf7\x6e\x7c\x5d\x71\x8d\x39\xae\x87\x75\x18\x1c\x1d\x1d\xb5\xcd\x38\xbc\x19\x39\x41\xac\x38\xb5\x8a\x2f\xf8\x3e\x8c\xa6\x43\x80\x1b\x99\x45\x7d\x71\x83\x6e\x47\xf4\xc2\x4c\x8a\x9b\x29\x1a\x93\x52\xe1\x0e\xf0\x76\x39\xdd\x0a\xdd\x27\x1e\x1e\xa7\xd8\xb0\xce\x72\x9f\xe0\xfd\x6c\x36\x8b\x67\x8f\x10\x0f\xe0\xc2\xf1\x13\xc3\x1d\x08\xdb\x79\xfa\x99\xaf\x43\x3b\xd0\xad\xe2\x1d\x21\x1f\x82\xee\xfe\x10\xfc\x0d\x00\x00\xff\xff\xae\x12\x08\x8b\xa6\x06\x00\x00" +var _stakingcollectionCreate_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x6f\x9b\x40\x10\xbd\xf3\x2b\x5e\x73\xa8\x1c\xc9\x22\x39\xa3\xba\x91\x85\x9d\xca\xb2\xeb\x54\x21\xb7\xaa\x87\x0d\x0c\xb0\xf2\x7a\x17\xed\x8e\xeb\xd0\xc6\xff\xbd\x5a\xc0\xc4\x9f\x52\xf7\x00\xcc\x2e\x33\xef\xcd\x9b\xb7\x72\x5d\x19\xcb\x88\x6d\x5d\xb1\x09\xba\xe8\x51\x99\x6d\xc2\x62\x25\x75\x11\x1b\xa5\x28\x65\x69\x34\x72\x6b\xd6\xb8\x7f\x4b\x5e\xc6\xf3\xd9\xf2\x5b\xfc\xb4\x58\x4c\xe3\x97\xd9\xd3\x72\x3c\x99\x3c\x4f\x93\x24\x08\xee\xee\xee\x10\x5b\x12\x4c\x0e\x02\x6b\x91\x96\x52\x13\x44\x9a\x9a\x8d\x66\xe4\xc6\x42\x40\x9b\x8c\xc0\xa5\x60\x48\x07\xa1\x2c\x89\xac\x86\xd4\xe0\x92\xe0\x5a\x48\xa4\x3d\x66\x53\x52\xe8\x0c\x22\xcb\x1c\xaa\xcd\xab\x92\x29\x56\x54\x3b\xb0\x69\x52\x34\x6d\xf7\x00\x41\xc0\x56\x68\x27\x9a\xc4\x81\xc7\x99\x4d\x22\x24\x6c\xa5\x2e\x86\x5d\xee\x9c\x6a\x17\xe1\x67\xdb\x6d\x38\xa7\x7a\x21\x1d\x4f\x35\xdb\xfa\xd7\x2d\xfe\x06\x00\xd0\x3c\x14\xf1\x9e\xcd\x87\x00\xcf\x94\x47\xf8\x7c\x51\x9b\xf0\x6c\x27\x68\xea\x54\x96\x2a\x61\x69\xd0\x51\x8c\x30\xde\x70\x39\x6e\x83\x3d\xa0\x5f\x8e\x54\x1e\x5e\x02\xc4\x68\xdf\x5e\xf8\x6a\xac\x35\xdb\x2f\xff\x4b\xe0\xeb\xc0\xcf\x2b\xba\x3c\xcb\xf3\xdf\x13\x36\x56\x14\xf4\x43\x70\x79\xdb\xd3\xf2\xeb\xe1\x01\x95\xd0\x32\x1d\xdc\xc4\x66\xa3\x32\x68\xc3\x68\xa9\xc0\x52\xee\xe7\x70\x56\xeb\xe6\x36\xe8\x4b\xc8\xbc\x11\xb3\x33\x43\xd7\x3a\x46\xd7\x3b\x0e\xd3\xc6\x41\xdf\x8f\x12\x1e\x8d\x9d\xbe\x49\xc7\x52\x17\x4b\x93\x51\x3f\xdd\xf6\x3d\x44\x25\x6a\xb2\xd1\x5e\xaa\x43\x65\x3b\x0e\x1f\xe3\xc7\x68\x04\x2d\x15\xde\xdf\x0f\x36\x3f\x85\x8a\x74\xc1\xa5\x3f\xbc\x3f\xc9\x6e\xe6\xd8\x29\x20\xb4\x6f\xbf\xb2\xe6\xb7\xcc\x08\x7f\xc8\x9a\xd6\x8d\xde\xdb\xde\x8e\x27\x9e\xbf\x39\x96\x72\x77\x14\xf9\x9c\x15\x35\xe6\x3f\x60\x77\x8e\x7d\x2c\x5d\xe8\xf1\x42\x91\x65\x83\x3e\x29\xf2\x65\xc2\x3e\x1c\xa2\x14\xae\x1c\xab\xc2\x58\xc9\xe5\xba\x3d\x3d\xda\x1a\x62\x4b\xb2\x28\xb9\x3d\x6a\xbf\xaf\x31\xdd\x81\x94\xa3\x13\x5a\x67\x86\x68\x67\x76\xe5\xd2\x37\xf7\xd4\x64\x74\xa0\x46\x5b\x7f\x17\xec\x82\x7f\x01\x00\x00\xff\xff\x33\xed\x36\xa1\x80\x04\x00\x00" func stakingcollectionCreate_machine_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -5279,11 +5090,11 @@ func stakingcollectionCreate_machine_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/create_machine_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0xdf, 0x3d, 0x5, 0xff, 0xf4, 0xd, 0xa2, 0x7, 0x81, 0x97, 0xc9, 0x37, 0xf5, 0x18, 0x28, 0x47, 0x12, 0xbc, 0x5b, 0x84, 0x1f, 0x3e, 0xac, 0x1c, 0x12, 0x62, 0x6e, 0xaf, 0x13, 0x2f, 0x4e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0xa9, 0xbc, 0xef, 0x3, 0x1e, 0x98, 0xd6, 0x4d, 0xb8, 0xc3, 0xa3, 0x9c, 0x38, 0x31, 0xcb, 0x72, 0x80, 0xa, 0x1, 0xee, 0xd9, 0x6, 0xe8, 0xc7, 0xe8, 0x77, 0x86, 0xd5, 0xd5, 0xae, 0x7f}} return a, nil } -var _stakingcollectionCreate_new_tokenholder_acctCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x56\x4b\x6f\xe3\x36\x10\xbe\xfb\x57\xcc\xe6\x10\x48\x80\x57\x06\x7a\x34\x92\x00\xa9\xd1\x17\xb2\x45\x03\x24\xbb\x3d\x2c\x72\x98\x88\x63\x8b\x35\x4d\x0a\x24\x65\xd7\x28\xf2\xdf\x0b\x3e\x2c\x91\xb6\x8c\xb8\x0f\x14\xa8\x2f\x16\xc9\x79\x7c\xf3\xcd\x83\xe4\x9b\x56\x69\x0b\x0b\xbd\x6f\xad\x9a\xc4\xd5\xf7\x42\xed\x9e\xd5\x9a\x24\x2c\xb5\xda\xc0\x55\xbf\xbe\xea\x25\x3a\xb9\xe2\xaf\x82\x32\xa9\x74\xaf\x97\xfc\xa4\xea\x35\x31\xbf\x67\xa2\x60\xba\x75\x95\xfa\x7c\xb2\xb8\xe6\x72\xb5\x50\x42\x50\x6d\xb9\x4a\xfd\x9f\x9c\x5d\x4d\x26\xb3\x19\x3c\x37\xdc\x80\xd5\x28\x0d\x06\x0d\x14\x42\xed\x0c\xd8\x86\xa0\x56\xd2\x6a\x27\xaf\x41\x2d\xfd\x8e\xf0\x9e\x01\xeb\x5a\x75\xd2\x3a\x7d\xab\xa0\xd6\x84\x96\x00\x41\xd2\x2e\x83\x5b\xf9\xbf\x1f\x95\x60\xce\xc2\xeb\x6f\x54\x5b\x40\xc9\xc0\x58\xa5\x09\xb8\x05\x2e\xa3\x56\x62\x10\x85\x51\x80\x8c\x71\xb9\x02\x04\x13\x50\x43\x3d\x84\x14\x0d\x59\xe5\x11\xa5\xda\x4e\xfd\x81\xa8\x75\x76\x37\x5c\x32\xb0\x0d\x5a\xb0\x2e\x42\xa6\xc8\x80\x54\xce\xe5\x16\x05\x67\x0e\xb0\x53\xa7\xdf\xb9\xb1\xce\x41\x0a\x35\x41\xf3\xac\x72\x0d\xb4\x87\xd3\x29\xec\x55\x07\x92\x88\x39\x28\xc4\x6d\x43\x1a\x18\x09\x8a\x96\x53\x83\x9a\x8c\xea\x74\x4d\xce\xa2\x72\xcb\xad\x5a\x93\x63\x1a\xd6\xb4\x8f\x59\x4d\x6d\x4f\x26\x49\x46\x8a\xb6\x7b\x15\xbc\x7e\xa0\xbd\x99\xc3\xd7\x50\x68\xd5\x03\xed\x3f\x71\x63\xbf\x93\x56\xef\x5f\x4a\xf8\x63\x02\x00\xd0\x6a\x6a\x51\x53\x61\xf8\x4a\x92\x9e\x03\x76\xb6\x29\xbe\x55\x5a\xab\xdd\x17\x14\x1d\x4d\xe1\xc9\x2a\x8d\x2b\x9a\xc2\x02\x5b\x7c\xe5\x82\x5b\x4e\xa6\x84\xeb\xfb\xe0\xd7\x19\xf2\x96\xdc\x6f\x36\x83\x45\xc8\xec\x11\xcf\x3e\x87\xc8\x18\x04\x60\x3e\x86\xaa\x57\x13\x64\x9d\x70\xb4\x08\xb7\x10\xbf\x8a\x16\xf7\x0e\x54\x00\x57\xf6\xf2\x4b\xa5\x9d\x05\x97\xb3\x21\xd0\x18\xd0\xe1\x37\xd8\xab\xbc\x33\x64\x6c\x60\x65\xee\xd4\xab\x7e\x39\x85\x06\x4d\x73\x2f\x56\x4a\x73\xdb\x6c\xc2\x69\xb6\x35\x85\x1d\xf1\x55\x63\xc3\x51\xf8\x1e\xf0\xbc\x65\x0c\xfc\x40\x76\xc8\xe6\xcf\x28\x71\x45\x7a\x20\x6f\x7f\x48\xdd\x71\x67\xe4\x74\xd8\x44\x79\xd0\x5d\x0c\xdd\x75\x1b\x59\xa9\xea\x24\x2d\x95\x09\xc9\xaa\x56\x64\x07\x59\x53\x2c\x95\x7e\x44\xdb\xcc\xf3\x56\x4b\x16\xd1\x53\xcc\xb5\x93\x2d\xbf\x7e\xf3\xf2\xe1\x02\x48\x70\xfb\x2e\xd6\x01\xe2\x1e\xd0\x7c\x48\xb8\xb8\xf1\xe5\x96\x0d\xb1\xea\x57\x6e\x1b\xa6\x71\x37\xcd\xc1\x7e\x96\x8e\xae\xb0\x28\xe1\xfa\x9d\x40\xee\xb2\x8c\x7c\x36\xa1\x20\x37\x31\x19\x09\x9e\xe3\x59\x94\xb4\xe0\x48\x42\x62\x6f\xde\x7c\xcc\xb1\x05\x0b\x89\x6a\x91\x95\x62\xc8\xf3\x3d\x63\x9a\x8c\x39\x54\xb3\x2b\x48\xb7\x9e\x66\xa2\x29\x95\xf3\x33\xc4\xf6\x0a\x65\x16\xe4\x13\x6e\xcf\x4f\x91\x91\xd1\xe7\x5b\xb2\x8f\x3d\xf6\xe5\xc0\xcc\x10\x7d\xd2\x49\x87\xf2\x32\xb8\xa5\x3c\xc6\x9b\x8f\x09\x41\xc7\x31\xcd\xcf\x8e\xf8\xa4\xe0\xc6\xc2\x3a\x22\x7e\x81\x2d\xdc\xa6\x78\xc6\x6a\x3f\xf3\x5d\x71\x63\x3a\xba\xb9\x3e\xe7\xff\xae\xb8\x00\x59\x39\x46\x45\xe6\xda\xb3\x67\x9a\xe2\x34\x97\x3d\xf0\x9c\x13\xb4\xa3\xbd\x18\x8d\xff\x24\x97\xea\xd1\x27\xe4\x98\x98\x91\x49\x9b\x02\xf1\x93\xd1\xe5\xd9\xfb\x86\x26\xde\x4d\x92\x41\x27\xe3\xb4\xd9\x62\x27\x8e\x66\x4d\x38\x89\x15\xf3\x2e\xbf\x91\xd2\xcb\x3b\xd7\xff\xfd\xd2\x92\x46\x77\x35\x9d\x34\xef\xdf\xcf\x86\xc3\xbe\xec\x9f\x4d\xff\x02\xf0\x12\xae\xfb\x67\x57\xf5\xc5\x11\x75\x57\xcc\xa2\xf6\xac\xf7\xe4\x0f\x06\x14\x23\x29\x09\xa3\x24\xbe\x9e\x20\x79\x5a\xb9\x4c\xb4\x9d\x8d\xef\x98\x03\xae\xde\x02\x5f\x66\xb9\xa8\xea\x86\xea\x75\x51\x9e\xbf\xd9\xce\xf7\x63\xe8\xc9\xf1\x17\x5e\x9c\x57\x27\xfb\xa7\x16\xdc\xef\x50\x39\x3e\xec\xf9\x40\xf8\x74\x54\x3a\x29\xfa\x79\x16\xcc\x89\x74\x79\x6a\xc0\x4d\x8a\x71\xc4\x27\x3b\x63\x83\x23\xf4\xc8\xe1\xeb\x0d\x48\x18\xfa\xdf\x72\x27\xb9\xf8\xef\x29\xcb\xe6\xcb\x63\x18\x6a\x80\x47\xf7\xa5\x7f\xe6\x7b\x16\xd8\xc8\x5b\x3b\x1f\x2d\xe6\x18\xc4\x45\x23\xfc\x30\xb5\x2f\x0c\xec\x2e\x27\xff\x1f\xd0\x91\x5c\x3d\x7f\x69\xd4\x8f\x85\x79\x3a\xf0\x2f\x04\x36\x3a\xf9\x43\x7a\xde\xfe\x0c\x00\x00\xff\xff\x03\x0e\x99\xe3\x3b\x0e\x00\x00" +var _stakingcollectionCreate_new_tokenholder_acctCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\xdf\x6f\x22\x37\x10\x7e\xe7\xaf\x98\xde\x43\x05\x12\x81\x3e\xa3\xe4\x24\x44\xe8\x35\x82\x5e\xa2\x42\xfb\x52\xf5\xc1\x59\x0f\xac\x8b\xb1\x57\xf6\x40\x0e\x45\xf9\xdf\x2b\xff\xd8\x5d\x1b\x16\x5d\x22\x55\x3a\x5e\x12\xaf\x67\xbe\xf9\xbe\xf9\xb5\x2b\xf6\x95\x36\x04\x33\x73\xaa\x48\xf7\xe2\xe9\x57\xa9\x5f\xd6\x7a\x87\x0a\x36\x46\xef\xe1\x53\x73\xfe\x54\x5b\x2c\x75\xb1\x43\xee\x9f\xd9\x60\xf4\xcb\xb7\xe5\xe3\x6c\x31\xbf\x5f\x3f\x2e\xe6\x5f\xa7\xf7\xf7\x7f\xcc\x57\xab\x14\x6f\x45\x6c\x27\xd4\x76\xa6\xa5\xc4\x82\x84\x56\xb5\xdb\x6a\x3d\x5d\x3c\x7c\xfd\x32\x7b\x5c\x2e\xe7\xb3\xf5\xc3\x63\xe3\xdc\x1b\x8f\x61\x5d\x0a\x0b\x64\x98\xb2\x2c\x38\x31\x29\xf5\x8b\x05\x2a\x11\x0a\xad\xc8\x38\x38\x03\x7a\xe3\x9f\x48\xcf\x0a\x58\x51\xe8\x83\x22\xe7\x4f\x1a\x0a\x83\x8c\x10\x18\x28\x7c\xc9\x78\x8f\xfc\x9f\xdf\xb4\xe4\x0e\xe1\xf9\x5f\x2c\x08\x98\xe2\x60\x49\x1b\x04\x41\x20\x54\xf4\x4a\x00\x99\xb4\x1a\x18\xe7\x42\x6d\x81\x81\x0d\xa2\xa0\x68\x55\x45\x20\xd2\x9e\x51\xea\xed\xdc\x17\x88\x95\xc3\xdd\x0b\xc5\x81\x4a\x46\x40\x4e\x21\xd7\x68\x41\x69\x17\xf2\xc8\xa4\xe0\x8e\xb0\x73\xc7\x6f\xc2\x92\x0b\x90\x52\x4d\xd8\xac\x75\xee\xc1\xa8\xbe\x1d\xc2\x49\x1f\x40\x21\x72\x47\x05\x05\x95\x68\x80\xa3\xc4\x88\x9c\x02\x1a\xb4\xfa\x60\x0a\x74\x88\xda\x1d\x8f\x7a\x87\x2e\xd3\xb0\xc3\x53\x2c\x6f\x8a\xdd\xeb\x25\x15\xe9\x57\x87\x67\x29\x8a\x05\x9e\xec\x04\xfe\x0e\x7d\x34\x5a\xe0\x69\x29\x2c\xcd\x15\x99\xd3\x3f\x03\x78\xed\x01\x00\x54\x06\x2b\x66\xb0\x6f\xc5\x56\xa1\x99\xc0\xf4\x40\xe5\x34\x20\x3a\x13\x6f\xe3\x7e\xe3\x31\xcc\x42\xcd\xce\x32\xe8\xab\xc3\x38\x87\x10\xd2\xb3\x6b\xbc\x24\x92\xb3\x8d\x80\x70\x97\xc2\xf7\x2b\x76\x72\x11\x43\xe4\x41\xe3\xb3\xd1\xc6\x81\xb8\x82\xb4\x2a\x22\xdb\xfa\xd7\x62\x8e\x5c\xbc\x11\xe3\xbc\x95\x3c\x71\xee\xa3\xe6\x38\x84\x92\xd9\x72\x2a\xb7\xda\x08\x2a\xf7\xe1\x36\x7b\x34\x84\x17\x14\xdb\x92\xc2\x55\xf8\xbf\xe5\xf3\x96\x25\xe1\x0b\x52\x5b\xaa\xdf\x99\x62\x5b\x34\x30\x63\x15\x7b\x16\x52\xd0\xa9\xae\xcb\x45\xdb\xa7\x19\xa1\xc4\x37\x71\xbd\x8b\xa9\xc8\x94\x8e\xb6\x48\xad\xcd\xed\xcf\xd9\xac\x24\x87\x08\xf7\xb9\x9f\x79\x7f\xc7\xfa\xc9\x88\x23\x23\x7c\x62\x54\x0e\x32\x95\x7f\xda\x50\xe7\x7d\x14\x58\xb4\x2c\xcf\x87\x37\xe9\xd9\x4b\x91\xb1\x97\x6f\x6f\x72\x26\x01\x20\xf1\xcc\x59\x87\xd4\x4d\x39\x37\x68\x6d\xdd\x20\xae\xc6\xee\x3c\xcc\x4c\xd3\x54\x4e\xae\x24\xb6\x71\xc8\x35\xae\xd8\xf1\xfa\xd4\x75\xac\x0a\xdf\xe8\x8d\xf4\xd8\xed\xc5\x65\x94\xa4\x37\x2d\x3b\x62\x2e\xed\xf6\x26\xc9\xcb\xb9\x94\xc9\xd5\x4d\xb8\x22\x6d\xd8\xd6\x17\x6a\xd8\x25\x27\x89\x29\x85\xda\x9d\xb5\x49\x02\xf4\xda\xd1\x11\xd1\xf3\x41\x6d\xf4\xdb\xf7\xfb\x27\xb1\x7e\xf2\x39\xc8\x49\x79\x25\xcc\x6c\x91\xde\xa5\x26\x15\xd3\xb1\x6b\xaa\xd0\xa0\x6d\x9a\x05\x5a\xbf\x20\x5c\x6d\x7c\x26\xa1\x8c\xfb\x57\x71\x38\xa8\x38\x74\x47\x76\x90\xf9\xc8\x85\x8b\x58\xe4\xbb\xf7\xe7\xeb\x73\x7f\x1c\x39\x8c\x37\xf5\xfb\x36\x16\xef\x23\x32\x07\x3f\x65\x6c\x1a\xa8\x2e\x2a\xcd\x7b\x7d\xf4\x97\x93\xd1\xc5\xc0\x5f\xb4\x04\xc6\x36\x44\x3a\x33\x48\x82\x76\xa4\x36\x4c\x6f\xfc\x00\x80\xe4\x0b\xc0\x65\xb2\x3a\x50\x7c\xd7\x46\xe8\x06\x40\x6c\xb2\x5c\x8e\x8a\x12\x8b\x5d\x7f\x70\x7d\x3f\xfb\x19\xb8\xbd\xe9\xfc\xda\x88\x8b\xe0\xe2\x79\xbf\xae\xa4\xd7\x31\x69\xf3\x35\x4c\xd7\xca\x24\x63\x32\x18\xfa\x09\xea\x8e\x73\xf1\x24\xad\x4d\xbb\xe9\x01\xa5\xc5\x1f\x23\x45\x09\xf9\x7f\x28\xe8\x1a\xa2\x66\x59\xb9\xfe\xaa\x17\xdb\xe5\x47\xd2\xf5\x65\xf2\x4e\x46\xaf\xef\xb4\x0b\x6b\xe3\x7c\xd5\x7c\xc8\xf9\xfa\xce\xf9\x78\xf6\x92\x15\x14\x52\xf8\xf6\x5f\x00\x00\x00\xff\xff\xd8\x77\x7b\x1b\x7f\x0b\x00\x00" func stakingcollectionCreate_new_tokenholder_acctCdcBytes() ([]byte, error) { return bindataRead( @@ -5299,11 +5110,11 @@ func stakingcollectionCreate_new_tokenholder_acctCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/create_new_tokenholder_acct.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc7, 0xa3, 0xad, 0x9c, 0x1e, 0x2a, 0xd9, 0x8e, 0xe8, 0xd, 0x60, 0x33, 0xb5, 0x78, 0x8b, 0xb0, 0x85, 0x54, 0x2, 0x2c, 0xdc, 0xc4, 0xa8, 0xe4, 0xcd, 0x63, 0xe9, 0xaf, 0x85, 0x63, 0x2c, 0xa7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0x5d, 0x78, 0x54, 0x9e, 0xa6, 0x98, 0x89, 0xca, 0x2a, 0xa0, 0x9a, 0xef, 0x95, 0x0, 0x7a, 0x23, 0x19, 0x27, 0x22, 0xd4, 0xba, 0x1f, 0x5b, 0xf5, 0xf, 0x2, 0x7, 0xc6, 0x61, 0x83, 0xaa}} return a, nil } -var _stakingcollectionDeploy_collection_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8e\xb1\x6a\xc4\x30\x10\x44\x7b\x7d\xc5\x54\x41\x86\x60\xf7\xd7\x1d\x49\x91\x2a\x4d\xc8\x07\x2c\xda\xe5\xce\xd8\x5e\x19\x69\x0f\x12\xc2\xfd\x7b\xd0\x26\x32\xa7\x62\x85\x46\x33\xf3\x76\x9a\xf0\x2a\xfb\x9a\xbf\x2b\x08\x29\xab\x15\x4a\x06\xcb\x20\x05\xa5\x94\x6f\x6a\x61\x9a\xf0\x59\x85\x9b\xca\xee\x85\x5d\x05\xd5\x68\x99\xf5\x82\x94\xd7\x55\x92\xcd\x59\x9b\xc1\x7f\x68\x93\x1e\x06\x55\xd7\xd6\x9c\x16\xaf\x58\x44\xeb\x01\x0a\xc1\x0a\x69\x25\x8f\xc7\xae\xbe\xd3\x26\x27\x7c\x58\x99\xf5\xf2\x8c\x94\xf9\x78\x0d\xf8\x09\x00\xe0\x63\x2f\xb2\x53\x91\x48\xbc\xcd\x7a\x02\xdd\xec\x1a\xcf\xcc\x2f\xff\x2d\x03\x9e\xce\x7f\x3b\xf4\x54\x3b\x6e\x1e\x3b\xa9\x8e\xc4\x1c\xd5\x79\x8f\xf4\x4e\x6d\x73\x64\x69\xd7\x9b\x7c\xc5\x61\xf0\x9e\x7b\xb8\x87\xdf\x00\x00\x00\xff\xff\x97\xdc\x67\x42\x38\x01\x00\x00" +var _stakingcollectionDeploy_collection_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8d\xb1\x6a\xc4\x40\x0c\x44\xfb\xfd\x8a\x29\x6d\x08\x76\x7f\xdd\x41\x8a\x54\x69\x42\x3e\x40\x68\xc5\x9d\xb1\x2d\x99\x5d\x1d\x24\x84\xfb\xf7\xb0\x0a\x6b\xb2\x85\x16\x8d\x66\xe6\xcd\x33\x5e\xe5\xd8\xec\xbb\x82\xc0\xa6\x5e\x88\x1d\x6e\x20\x05\x31\xdb\x43\x3d\xcd\x33\x3e\xab\xe4\xa6\xe6\xf0\xc2\xef\x82\xea\xb4\x2e\x7a\x03\xdb\xb6\x09\xfb\x62\xda\x0c\x71\xa1\x5d\x7a\x18\x54\x43\xdb\x8c\xd7\xa8\x58\x45\xeb\x09\x4a\xc9\x0b\x69\xa5\x88\x0f\x5d\x7d\xa7\x5d\x2e\xf8\xf0\xb2\xe8\xed\x05\x6c\xf9\xdc\x46\xfc\x24\x00\x88\x71\x14\x39\xa8\xc8\x40\x79\x5f\xf4\x82\xeb\xc3\xef\xd7\x3f\x68\xb7\xb5\x17\xd7\xa9\x57\xd7\x89\x72\x1e\x34\x00\xff\x71\x1d\xd3\xe6\x94\xa5\x7d\x6f\xf2\x35\x8c\x63\xf4\x3c\xd3\x33\xfd\x06\x00\x00\xff\xff\xa7\x5f\x56\xfd\x29\x01\x00\x00" func stakingcollectionDeploy_collection_contractCdcBytes() ([]byte, error) { return bindataRead( @@ -5319,11 +5130,11 @@ func stakingcollectionDeploy_collection_contractCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/deploy_collection_contract.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0x65, 0xef, 0x78, 0xd5, 0x3e, 0x89, 0x71, 0xda, 0x8b, 0xc, 0x78, 0x34, 0x3c, 0x6e, 0xb9, 0x9, 0xa0, 0x2b, 0x75, 0x35, 0xbf, 0x9f, 0x65, 0xdd, 0xa, 0x3e, 0x8b, 0x30, 0xd, 0x4b, 0x10}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbd, 0x3e, 0xf2, 0xcf, 0xfd, 0x65, 0x3, 0xfc, 0xc1, 0x73, 0xff, 0x84, 0x1f, 0xad, 0xc6, 0xe3, 0x57, 0x8d, 0x57, 0x22, 0x89, 0xc2, 0x14, 0x62, 0x4d, 0x1f, 0x9d, 0xae, 0xb6, 0x6b, 0xe4, 0x55}} return a, nil } -var _stakingcollectionRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x31\x8f\xd4\x40\x0c\x85\xfb\xfc\x8a\xa7\x2d\x8e\x44\x42\xd9\x06\x51\x44\xc0\x09\xee\x74\x12\x15\xe8\x56\xd0\x9b\x89\x93\x1d\xdd\x64\x1c\x79\x1c\xed\x21\x74\xff\x1d\x25\x93\x65\x8b\x4d\x41\x73\x53\x24\x51\x6c\x3f\x3f\x7b\x3e\x3f\x8c\xa2\x86\x87\x20\xa7\x83\xd1\x93\x8f\xfd\x9d\x84\xc0\xce\xbc\x44\x74\x2a\x03\x76\x9b\xb1\x5d\x51\xec\xf7\x7b\x3c\x72\xef\x93\xb1\x26\x10\x5a\x0e\xdc\x93\x89\xc2\x47\xd8\x91\x91\x72\x11\xdc\x45\x51\x39\xc9\xa4\x8e\x97\xe2\x4e\x34\xe7\x8d\xec\x7c\xe7\xb9\x45\x94\x96\xbf\xde\x83\x62\xbb\x04\x68\x90\x29\x1a\xa4\x83\xc9\x13\xc7\x04\x13\x38\x19\x06\x6f\x45\x61\x4a\x31\xd1\xa2\x5a\xfa\xb6\xc1\xc1\xd4\xc7\xfe\xed\x5a\xd3\xe0\xc7\x83\x7f\x7e\xff\xae\xc2\x9f\x02\x00\x96\x47\x60\x3b\x7b\xba\x0c\xf2\xc8\x5d\x03\x9a\xec\x58\x6e\xce\x59\x5f\x3e\xbf\x9d\x22\x6b\x85\x9b\xed\xbc\xab\x3f\xc5\xd2\x73\x54\x1e\x49\xb9\x24\xe7\xb2\xaf\xa5\xd5\x17\x51\x95\xd3\x4f\x0a\x13\x57\xb8\xf9\x9c\x63\x67\xaf\xf3\x49\x1c\xba\x7a\xcb\x2b\x3e\x62\x95\xaa\x93\x89\x52\xcf\xf5\xaf\x45\xec\xc3\x6b\xcc\xf0\xa9\x9c\x11\x68\xb6\xf1\xb8\x4e\x3f\x64\x47\xdf\xc9\x8e\xd5\xbf\x51\xe6\x73\x7b\x8b\x91\xa2\x77\xe5\xee\x4e\xa6\x30\xdf\xb3\x21\xdb\x06\x41\xb9\x63\xe5\xe8\x78\xbe\x5e\xc2\x35\x86\x2b\x4e\xa3\xfa\x81\xf4\x37\xa6\xc4\xfa\x26\x9d\xd7\xb0\xcb\x9d\x5e\xf2\xba\xf9\x99\xdd\x64\xfc\x3f\x9b\xac\x75\x65\xf7\xfe\xcc\x6d\x99\xf1\x6b\xe0\xdb\x0b\x47\xf9\x5d\x65\xb1\xb5\xd5\x4b\xf1\x37\x00\x00\xff\xff\x50\xb7\x12\x6d\x37\x03\x00\x00" +var _stakingcollectionRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\x82\x40\x10\xbd\xf3\x15\x13\x0f\x0d\x26\x0d\xf6\xd0\xf4\x40\xda\x1a\x02\xda\x98\x1a\x6d\xc4\x7e\xc0\x76\x19\x70\x23\xec\x90\x61\x88\x26\x8d\xff\xde\xc0\x62\x3d\xe8\xc1\x3d\x40\x60\x67\xde\x7b\xf3\xde\x98\xaa\x26\x16\x98\x97\x74\x48\x45\xed\x8d\x2d\x62\x2a\x4b\xd4\x62\xc8\x42\xce\x54\xc1\xd3\x31\xdd\x46\x9f\x8b\xd5\x47\xbc\x5e\x2e\x67\xf1\x76\xb1\x5e\x45\x49\xb2\x99\xa5\xa9\xe7\x4d\x26\x13\xd8\x60\x61\x1a\x41\x6e\x40\x41\x86\x25\x16\x4a\x88\xc1\x58\x90\x1d\x42\xe3\x30\x41\x5f\x40\x19\x1b\x6a\x59\x63\xdf\x9c\x13\xbb\xba\x1a\xb5\xc9\x0d\x66\x60\x29\xc3\x45\x02\xca\x66\xfd\x85\xaa\xa8\xb5\x02\x94\x83\xd0\x1e\x6d\x03\x42\xa0\xa9\xaa\x8c\x78\x9e\xb0\xb2\x8d\xea\x51\x7d\x93\x85\x90\x0a\x1b\x5b\x3c\x0e\x3d\x21\x7c\xcf\xcd\xf1\xe5\x79\x0c\xbf\x1e\x00\x40\xff\x28\x51\xce\x9a\x2e\x73\x6e\x30\x0f\xe1\xe1\xa6\x05\xc1\xd5\x1f\xaf\xc7\xa9\x19\x6b\xc5\xe8\x2b\xad\x1d\x57\xd4\xca\x2e\x72\x1f\x67\xc2\xee\x34\x58\xe6\xc1\x2d\x42\x78\x83\xa1\x37\xf8\x21\x66\x3a\xbc\xde\x2b\xe0\xdd\xef\x62\x09\x6f\x47\x76\x5d\x9e\x0a\xb1\x2a\xf0\x4b\xc9\x6e\xfc\x2f\xab\x3b\xd3\x29\xd4\xca\x1a\xed\x8f\x62\x6a\xcb\xce\x78\x01\x27\x05\x18\x3b\xbb\xe1\x0a\x6b\xe4\x10\x4e\xce\x03\x3c\xa2\x6e\x05\xef\x99\x36\xe0\x61\x49\x92\xf3\x82\xf8\x2e\xe7\x10\x4c\x76\x09\xcc\xbd\xc7\x0e\x6c\xa0\x3a\x79\x7f\x01\x00\x00\xff\xff\xdd\x5f\xdf\x77\xa3\x02\x00\x00" func stakingcollectionRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -5339,11 +5150,11 @@ func stakingcollectionRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x24, 0xb5, 0x3c, 0x3f, 0x4c, 0x1c, 0x87, 0xd4, 0xd0, 0xf5, 0x99, 0x13, 0x52, 0x85, 0x4e, 0xe2, 0x34, 0xbe, 0xc5, 0x5b, 0xb0, 0xd5, 0x7, 0xb7, 0x78, 0x4c, 0x27, 0xcd, 0x8a, 0xf5, 0x38, 0xf6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x61, 0x18, 0x59, 0x73, 0x8c, 0xe4, 0x18, 0x5c, 0xc3, 0x6a, 0x63, 0xba, 0xf1, 0x3a, 0x2f, 0x4c, 0x28, 0x93, 0x6e, 0x5a, 0x61, 0x2f, 0xfc, 0x43, 0xe1, 0x29, 0x1a, 0xec, 0xc8, 0xdf, 0x45, 0x55}} return a, nil } -var _stakingcollectionRegister_multiple_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x6b\xdc\x30\x10\xc5\xef\xfe\x14\x8f\x3d\x04\x2f\x2d\xde\x16\x4a\x0f\xa6\x69\x68\x13\x02\x3d\xb5\x64\x69\x2f\x61\x0f\xaa\x3c\xf6\x0e\x91\x25\x33\x1a\x77\x03\x65\xbf\x7b\x91\xff\xec\xa6\xac\xe9\xad\x3a\x18\x33\x1a\x3d\xbd\x37\xfa\x71\xdb\x05\x51\xdc\xbb\x70\xd8\xaa\x79\x62\xdf\xdc\x06\xe7\xc8\x2a\x07\x8f\x5a\x42\x8b\xd5\xe2\xde\x2a\xcb\x36\x9b\x0d\x1e\xa8\xe1\xa8\x24\x11\x6d\xef\x94\x3b\x47\xa8\xc8\x51\x63\x34\x48\x04\x7b\xe8\x9e\x10\xc7\xc3\xb0\x67\x65\xa1\x18\x7a\xb1\x34\x88\xd4\x41\xc6\xbe\x8e\x2c\xd7\x4c\x15\x7c\xa8\xe8\xcb\x5d\x84\xf1\x15\x4c\x1b\x7a\xaf\x08\x35\x34\x3c\x91\x8f\xd0\x00\x1b\xda\x96\x35\xcb\x54\x8c\x8f\x66\x90\xcc\xb9\x8a\x25\x1e\xb7\x2a\xec\x9b\xdd\xeb\xe9\x58\x2a\x7d\xbf\xe7\xe7\xf7\xef\x76\x6b\xfc\xce\x00\x60\xf8\x38\xd2\xd9\xd6\x39\xd3\x03\xd5\x25\x4c\xaf\xfb\x7c\x31\x72\x71\xfe\xfd\x7a\xf0\x24\x6b\x5c\x2d\xf7\x5d\x54\xb2\xe1\xce\x4e\xa8\x33\x42\xb9\xb1\x36\x59\x9b\xae\xfa\x1c\x44\xc2\xe1\x87\x71\x3d\xad\x71\xf5\x69\xdc\x9b\xbd\xa6\x15\xc9\xd5\xc5\x92\x57\x5c\x63\x92\x2a\xa2\x06\x31\x0d\x15\x3f\x07\xb1\x0f\xff\x23\xc3\xc7\x3c\xd1\x50\x2e\x93\x72\xd9\xbe\x1d\x1d\x7d\x33\xba\x5f\x9f\xa2\xa4\x75\x73\x83\xce\x78\xb6\xf9\xea\x36\xf4\x2e\x3d\xb5\x62\xb4\x0d\xa1\xf4\xc6\xb8\x64\x6d\x54\x38\x8e\x63\xa4\x67\xb2\xbd\xd2\x8b\x09\xfd\x32\x02\xc6\x35\xde\x9c\x2a\x89\x28\xae\x12\x7f\x5c\xc5\x17\x9d\xff\x9c\x67\x21\x13\xcc\x77\x33\xc1\xf9\xc8\x61\x09\xae\x66\xa0\xca\x19\xac\x47\xde\xad\x07\x9c\xfe\x12\x4f\x36\x18\xaf\xf0\xf6\x54\x3d\x4e\xde\x8f\xd9\x9f\x00\x00\x00\xff\xff\x02\xdc\x8f\x76\x6b\x03\x00\x00" +var _stakingcollectionRegister_multiple_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x6b\xdb\x4e\x10\xc5\xef\xfa\x14\x8f\x1c\xfe\xc8\xfc\x8b\x9d\x42\xe9\x41\x34\x0d\xc6\x4e\x8a\x69\x48\x8a\x95\x9e\x82\x0f\x5b\x69\x24\x0f\x59\xed\x88\xdd\x51\x63\x28\xfe\xee\x65\x25\xcb\x49\xb1\x29\xdd\x83\x40\xc3\xec\x6f\xde\xbe\x37\xdc\xb4\xe2\x15\xb7\x56\x5e\x72\x35\xcf\xec\xea\x85\x58\x4b\x85\xb2\x38\x54\x5e\x1a\x5c\xee\xf2\xc7\xf9\xd7\xd5\xfd\x97\xc5\xc3\xdd\xdd\xcd\xe2\x71\xf5\x70\x3f\x5f\x2e\xd7\x37\x79\x9e\x24\xb3\xd9\x0c\x6b\xaa\x39\x28\xf9\x80\xa6\xb3\xca\xad\x25\x94\x64\xa9\x36\x2a\x3e\x80\x1d\x74\x4b\x08\x03\x1b\xc5\x2b\xdc\x53\x90\xce\x17\xd4\x43\x2a\xf1\x43\x5f\x4b\x05\x57\x4c\x25\x9c\x94\xb4\x5a\x06\x18\x57\xc2\x34\xd2\x39\x85\x54\x50\x79\x26\x17\xa0\x82\x42\x9a\x86\x35\x49\xd4\x1b\x17\x4c\x8f\x4c\xb9\x0c\x19\x9e\x72\xf5\xec\xea\xcd\xbb\xc3\xb5\x58\xfa\x7e\xcb\xbb\x8f\x1f\x36\x13\xfc\x4a\x00\xa0\xff\x58\xd2\x51\xd6\xeb\x93\xd7\x54\x65\xf8\xef\xac\x1b\xd3\x93\x4a\xd2\x73\x5a\x4f\xad\xf1\x94\x9a\xa2\x88\xe3\x32\xcc\x3b\xdd\xce\x87\x9f\x71\x60\x3c\x81\x6c\x35\x3d\x37\x10\x57\x38\xdc\x9d\xfe\x10\xef\xe5\xe5\xd3\xbf\x0a\xf8\x9c\xc6\x84\xb2\xf3\xe9\x9d\xb6\xe7\x2a\xde\xd4\xf4\xcd\xe8\x76\x72\x94\x15\xcf\xf5\x35\x5a\xe3\xb8\x48\x2f\x16\xd2\xd9\xe8\xbd\x62\x90\x02\x4f\xd1\x74\x9c\xb0\x2e\x06\xc2\x7e\xf0\x80\x76\x54\x74\x4a\x6f\x5e\xfb\xd3\x78\x30\xae\x70\x79\xac\xc4\x88\xb9\x8c\x0b\xc1\x65\x78\xd3\xf9\x57\x6f\xa6\xfe\xb0\x5d\xcb\x71\xa5\xd2\x61\x31\x32\x70\x39\x26\x9c\x8d\x49\x3f\xf1\x66\xd2\xe7\xfb\x07\x3c\xca\x60\xfc\x8f\xf7\xc7\xea\xfe\xa0\x7d\x9f\xfc\x0e\x00\x00\xff\xff\x07\x6b\xf3\x42\xff\x02\x00\x00" func stakingcollectionRegister_multiple_delegatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -5359,11 +5170,11 @@ func stakingcollectionRegister_multiple_delegatorsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_multiple_delegators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x55, 0xaf, 0x3d, 0x1, 0xae, 0xfd, 0xe5, 0x9b, 0xc1, 0x4a, 0xad, 0x60, 0x30, 0x97, 0x5b, 0xd3, 0xfd, 0xb2, 0x73, 0x19, 0xdf, 0x4b, 0x61, 0x5e, 0xa7, 0x53, 0x2c, 0x3a, 0xd1, 0xce, 0xe5, 0xb4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0x31, 0xb5, 0x31, 0x72, 0x2e, 0x40, 0x1a, 0xe0, 0xb2, 0x95, 0xdc, 0x95, 0xd2, 0xb2, 0xa6, 0xa4, 0x49, 0x7a, 0x4d, 0x6a, 0xfb, 0x84, 0x73, 0x52, 0x39, 0x78, 0xa8, 0xe1, 0x99, 0x65, 0x2e}} return a, nil } -var _stakingcollectionRegister_multiple_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x4d\x6f\xd3\x40\x10\xbd\xfb\x57\x0c\x39\x54\xb6\x88\xdc\x22\x21\x84\x2c\x42\x55\x2a\x2a\xa1\x22\x40\xad\xe0\x12\xe5\xb0\xb5\xc7\xf6\xa8\xeb\x5d\x6b\x76\xdd\x60\xda\xfe\x77\xb4\x5e\xe7\xc3\xb1\x43\x4f\xf8\x10\xd9\x33\x6f\xde\xbe\x9d\x99\x17\xaa\x6a\xcd\x16\x2e\xb9\xad\xad\x0e\xfa\xaf\x2b\xa9\xd7\xb7\x56\xdc\x93\x2a\x2e\xb5\x94\x98\x5a\xd2\x0a\x72\xd6\x15\xcc\x26\x73\xb3\x20\x38\x3d\x3d\x85\x1b\x2c\xc8\x58\x64\x03\x55\x23\x2d\xd5\x12\x41\xe9\x0c\x0d\x90\x02\x5b\x22\x18\x5f\x07\xe9\x8e\x94\xd1\xe8\x86\x53\xec\xea\x73\xcd\x1e\x57\x63\x4a\x39\x61\xd6\x95\x03\xa9\x5c\x73\x25\x1c\x3e\x08\x2c\x0b\x65\x44\x57\x1c\x52\x66\x12\x58\xde\x5a\x26\x55\xac\xe6\x01\xec\x3d\xac\x25\xba\xe4\xcf\x2f\xca\xbe\x3f\xc8\x29\xb4\x6b\xcd\x4e\xc9\x45\x96\x31\x1a\x83\x47\x69\x76\xd0\x6b\x6c\x8f\xa2\xfa\x7b\xfd\x0b\x22\x2a\xdd\x28\xdb\x29\xba\xa2\xdf\xef\xde\x1e\xa4\xeb\xe6\x4e\x52\xda\x13\x2c\xfd\x34\xe2\x6b\x6c\xbf\x92\xb1\x9f\x95\xe5\x76\x75\xbe\x8a\xe0\xb1\xab\xe9\x7e\x24\xda\xcd\xb1\xbb\x31\xdc\x60\x9e\x80\x68\x6c\x19\x4e\x4e\x29\xde\xbd\x7e\x5f\x2b\xe4\x08\x4e\xa6\x71\xa3\x48\xd0\x9d\x59\x33\xd6\x82\x31\x14\x69\xea\x2e\xd3\x1f\xf5\x49\x33\xeb\xf5\x2f\x21\x1b\x8c\xe0\xe4\xc2\xe7\x36\x5a\xbb\xee\xa0\xcc\xe3\x29\xad\xb0\x80\x9e\x2a\x36\x56\xb3\x28\x30\xbe\xeb\xc8\x3e\xfc\x8f\x3b\x7c\x0c\xdd\x02\x27\xd3\xcb\x3d\x86\xdf\x7a\x45\x3f\x84\x2d\xa3\xc1\xa8\xce\xcf\xa1\x16\x8a\xd2\x70\x76\xa9\x1b\xe9\x56\xd4\x82\x97\x0d\x8c\x39\x58\x0d\x63\x7b\x44\xc1\x96\xe2\x41\x30\x10\x2c\xe0\x6c\x17\x72\x6b\x4f\x99\x33\x09\x65\x66\xaf\x71\xee\xa1\xbc\x1b\x75\x25\xd2\x92\x14\xf6\xdd\x85\xc5\xf1\xa6\xc6\xdc\x9b\xf0\x9b\xce\x30\x1c\x70\x75\x7c\x59\x02\x94\xcd\x47\x71\xe7\x97\xc4\xbb\x66\x49\xab\x71\x7e\xe4\x99\x64\xca\x46\x2f\x94\x5e\x63\x9b\x1c\x58\x6a\xb2\x62\xe7\xa7\x64\xdf\x5b\x93\x58\x6f\xac\x64\x63\xb0\x49\x4c\x2d\x5a\xe4\x64\xb3\x6c\x11\x0c\x00\x8f\xe3\x1e\xe5\x7b\x7e\x5c\xd2\x0a\x16\x0b\x50\x24\xe1\xe9\x69\x18\x7f\x15\x4b\x54\x85\x2d\x5d\xfe\x6c\x82\xc7\x1f\xed\x57\x45\x28\xb7\x27\x35\xeb\x07\xca\x10\xfe\x20\x6b\xb8\xc7\xd6\x6c\xff\xf2\xfa\x01\x6f\x34\xce\xa2\x11\xdb\xf3\x28\xe2\x6a\xef\xb1\x75\x8b\x33\xd4\x75\x44\xcb\x70\x89\x62\x77\x7e\x2c\xb2\x2c\xdc\x16\x27\x8e\x2e\xde\x7e\xce\xa1\x14\xa6\xbc\x90\x85\x66\xb2\x65\xe5\xb3\x83\xd0\x1c\xd6\x48\x45\x69\x7d\xca\xbf\xbf\xa4\x7c\xf8\xe5\xac\x40\xf0\x1a\xde\x04\xc3\xfc\x73\xf0\x1c\xfc\x0d\x00\x00\xff\xff\x27\x86\x76\xa0\x9c\x06\x00\x00" +var _stakingcollectionRegister_multiple_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\x5d\x4f\xdb\x30\x14\x86\xef\xf3\x2b\xce\xb8\x98\x5a\xad\x0a\x4c\x9a\xa6\x29\x5a\x87\xaa\x02\x13\x2a\x82\x89\xb2\xab\xaa\x17\x26\x3e\x49\x8e\x70\xec\xe8\xd8\xa5\x64\xc0\x7f\x9f\x9c\xa4\x1f\x21\xe9\x58\x2e\xaa\xfa\x7c\xbc\x7e\x73\xfc\x38\x94\x17\x86\x1d\x4c\xb9\x2c\x9c\x09\x9a\xd5\x85\x32\xeb\xb9\x13\x0f\xa4\xd3\xa9\x51\x0a\x63\x47\x46\x43\xc2\x26\x87\x93\xa7\xf9\xdd\x64\x76\x79\xfd\x73\x7a\x73\x75\x75\x3e\xbd\xbb\xbc\xb9\x9e\x9c\x9d\xdd\x9e\xcf\xe7\x41\x70\x7c\x7c\x0c\xb7\x98\x92\x75\xc8\x16\xf2\x95\x72\x54\x28\x04\x6d\x24\x5a\x20\x0d\x2e\x43\xb0\xb5\x2c\xc4\x3b\x5d\x46\x6b\x56\x1c\x63\xd5\x9f\x18\xae\xeb\x0a\x8c\x29\x21\x94\x55\x3b\x90\x4e\x0c\xe7\xc2\xd7\x07\x81\x63\xa1\xad\xa8\x9a\x07\x24\x6d\x04\x8b\xb9\x63\xd2\xe9\x72\x14\xc0\xde\xc3\x46\xa1\x4f\xfe\xbe\xd4\xee\xdb\x9b\x9c\x46\xb7\x36\xec\x9d\x4c\xa4\x64\xb4\x16\x0f\xca\xec\x4a\x67\x58\x1e\xac\x6a\xde\xeb\x5f\x25\x22\x37\x2b\xed\x2a\x47\x17\xf4\xf4\xf5\xcb\x9b\x74\xb1\xba\x57\x14\x37\x02\x8b\xfa\x40\xc2\x19\x96\x57\x64\xdd\xb9\x76\x5c\x2e\x4f\x97\x43\x78\xae\x7a\xaa\x1f\x85\x6e\xb3\xed\xee\x94\x6e\x31\x89\xe0\x63\xef\x01\x86\x9d\x48\x50\xe9\x14\x8c\x85\x60\x1c\x88\x38\xf6\x06\x23\x98\xac\x5c\x36\xa9\x17\x9b\x0d\xab\x57\x44\x95\x84\x7d\x1b\xc2\x18\x9a\xde\xf0\xde\x30\x9b\xf5\xf7\xff\x35\xf0\x63\xe0\xa1\x8a\xfa\x81\xeb\x96\xcf\x9d\x61\x91\xe2\x2f\xe1\xb2\x61\x6b\x76\xa7\xa7\x50\x08\x4d\xf1\xe0\x68\x6a\x56\xca\x33\xe3\xa0\xb6\x02\x8c\x09\x38\x03\x1d\xad\xa3\x61\xb0\x95\x78\x14\x0c\x04\x63\x38\xd9\x85\x3c\x87\x24\x3d\xb5\x24\xed\xde\x10\xfc\x43\x49\x35\xfb\x5c\xc4\x19\x69\x6c\x26\x05\xe3\xc3\x03\x0a\xb9\xb9\x15\xd7\x46\xe2\xa0\xa5\x55\xe9\xc9\x08\x48\x8e\x3a\x71\x0f\x70\x54\x63\xbc\xa0\x65\x37\xdf\x81\x38\xea\xe3\xfa\x9d\xd6\x19\x96\xd1\x1b\xc6\x7b\x3b\x76\x80\x47\xfb\xb0\xf7\xd6\xd6\xa4\x47\x1b\xe2\x7b\x6b\x0a\x51\x22\x47\x1b\x70\x86\xd0\x2a\x78\xee\xce\x28\xd9\xbb\x20\x0b\x5a\xc2\x78\x0c\x9a\x14\xbc\xbc\xb4\xe3\x1f\x42\x85\x3a\x75\x99\xcf\x9f\xf4\xe8\xd4\x5b\xd7\xa8\x08\xed\x39\x29\xd8\x3c\x92\x44\xf8\x83\x6c\xe0\x01\x4b\xbb\xfd\x06\x35\x07\xbc\xf1\x78\x34\xec\xa8\xbd\x76\x22\xbe\xf7\x01\x4b\x0f\x4e\xdb\xd7\x01\x2f\x6d\x88\x42\xbf\x7f\x28\xa4\x1c\x6c\x9b\x23\x2f\x17\x6e\x97\x23\xc8\x84\xcd\x26\x2a\x35\x4c\x2e\xcb\xeb\x6c\x2b\x34\x82\x35\x52\x9a\xb9\x3a\x55\xff\x7f\xcf\x79\x7b\xe5\xaf\x02\xc1\x27\xf8\x1c\xb4\xf3\xaf\xc1\x6b\xf0\x37\x00\x00\xff\xff\x09\x34\xd7\xde\x30\x06\x00\x00" func stakingcollectionRegister_multiple_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -5379,11 +5190,11 @@ func stakingcollectionRegister_multiple_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_multiple_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0x96, 0x94, 0x8c, 0x6e, 0x12, 0x77, 0x29, 0x32, 0xd4, 0x1c, 0x47, 0x25, 0xdd, 0xdc, 0x25, 0xd1, 0x4c, 0x61, 0x97, 0x3e, 0xc1, 0x8e, 0xe8, 0xe7, 0x4b, 0x73, 0xea, 0xe7, 0xa, 0xfc, 0xd2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc1, 0x8b, 0xd4, 0xe0, 0x9f, 0x32, 0x52, 0xb9, 0xc9, 0x8, 0x23, 0x5, 0x79, 0x81, 0x7e, 0x42, 0xcd, 0x96, 0x39, 0x91, 0x58, 0x2c, 0xf3, 0x42, 0x51, 0x86, 0x4b, 0xb9, 0x33, 0xf4, 0xff, 0x3a}} return a, nil } -var _stakingcollectionRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x51\x6b\xe3\x48\x0c\x7e\xae\x7f\x85\xc8\x43\xcf\x86\xe0\xe6\xe0\x38\x0e\x73\xd9\xd2\x2d\x94\x2e\x85\xdd\xd2\xd0\x7d\x57\x3d\xb2\x3d\xd4\x1e\x19\xcd\xb8\x69\x58\xfa\xdf\x17\x7b\xec\x24\xde\x38\xe9\xf6\x61\xf3\xe0\xcc\x8c\x3e\x49\x9f\x46\xfa\x46\x57\x35\x8b\x83\x6b\xd9\xd4\x8e\x83\x7e\x77\x53\xf2\x7a\xe5\xf0\x59\x9b\xfc\x9a\xcb\x92\x52\xa7\xd9\x40\x26\x5c\xc1\x6c\xd2\x36\x0b\x82\x8b\x8b\x0b\x78\xa0\x5c\x5b\x47\x62\x01\x41\x51\x49\x39\x3a\x16\xd0\x06\x5c\x41\x60\xbd\x13\xa4\xbb\x88\x42\x96\x1b\x49\xa9\x73\xce\x58\x3c\xae\xa6\x54\x67\x9a\x14\x18\x56\x04\xda\x64\x2c\x15\x76\x78\x34\xaa\x83\x60\xc5\x8d\x71\xc0\x19\x38\x7e\x26\x63\xc1\x31\xa4\x5c\x55\xda\x05\x81\x13\x34\x16\xbb\xf8\xa1\x56\x09\xac\x9c\x68\x93\xcf\x03\xd8\xfb\x09\x97\x94\xc0\xe3\x17\xe3\xfe\x1b\x1b\x0c\xb9\x35\x4b\x4b\xf3\x4a\x29\x21\x6b\xa7\xfd\x77\xb0\x3b\xda\x4c\x43\xfa\x6a\x8f\xda\x7d\x09\x09\x3c\xde\xe8\xd7\x7f\xff\x19\xdb\x2a\x4c\x0b\x6d\xe8\x2a\x4d\x5b\xcc\x7e\x08\x38\x8d\x5b\xe9\xdc\xa0\x6b\x84\xae\xca\x9c\x45\xbb\xa2\x1a\xaa\x7c\xc7\xf1\x16\x6d\xf1\xab\x4f\x04\x3f\x82\xce\xab\x24\x37\x94\xb3\xeb\xf8\x03\x65\x09\x60\xe3\x8a\x70\x72\x20\xe2\xdd\xf2\xdb\xda\x90\x44\x70\x3e\x8d\x3b\x38\xf1\x39\x6b\xa1\x1a\x85\x42\xf4\x14\xfb\x54\x9f\x59\x84\xd7\xdf\xb1\x6c\x28\x82\xf3\x9e\x7e\xcb\x73\x7b\xeb\x54\x66\xf1\x14\x57\x58\x42\x1f\x2a\xb6\x8e\x05\x73\x8a\x9f\xba\x60\xff\xff\x89\x1a\x3e\x85\xad\x56\x92\x69\x1d\x1d\xc2\x57\x9e\xd1\x3d\xba\x22\x1a\xf5\xe9\xf2\x12\x6a\x34\x3a\x0d\x67\xd7\xdc\x94\xad\x20\x1c\x78\xda\x80\x20\x94\x91\x90\x49\xa9\x9d\x7e\x84\x43\xbd\xf6\xba\xab\x45\x57\x28\x1b\x68\x2c\xc9\x5f\x76\xb8\x86\x59\x14\x6c\x53\xe9\xac\xeb\xf1\x78\x2a\x60\x79\xfc\x36\x63\xe9\x85\xfe\x95\x15\x85\x23\xca\xad\xe4\xb4\x9a\x92\x5b\xfb\x7d\x57\x6d\x07\x47\x27\x85\x37\xda\x1e\xd7\xdf\x6e\x3d\xad\x41\xff\x3f\xb6\xd5\xb8\x21\x49\x86\xdb\xda\x9a\xf6\x87\x6d\xab\x0d\x9d\xb7\xda\x81\x25\x1c\xea\x2f\x14\xf4\xf3\x9a\xfc\x8e\x5a\xc7\xdd\x3f\x36\x01\x39\x39\xc0\x36\xab\xf7\x06\x1c\xdc\xfd\x0b\xdd\xf6\x5c\x70\x0d\x64\x9a\x0a\x5e\xda\xdc\x50\x0b\xbf\x68\x45\x6a\xbf\xe9\x03\xfb\xa2\x97\x3e\x2c\x61\xf4\x0a\x9c\x62\x3e\x02\x7e\x84\x74\x9b\xec\x63\x7c\xf7\xe3\x1e\x70\xaf\x9b\xa7\x52\xa7\x77\xb4\x81\x25\xdc\x0f\xeb\x30\x38\x3b\x3b\xeb\x5a\x38\x9c\x4c\x54\x10\x2b\x4a\x59\xd1\x2d\xbd\x86\xd1\x7c\x70\xb0\x13\xcf\x67\xdf\xdc\xc0\x23\xa2\x13\xcf\x68\xfc\x4c\x1b\x1b\xa3\x52\xe1\x5e\xe2\xed\x72\xbe\xbd\xe8\x3e\xf0\xb0\x9d\xc3\x9a\x74\x5e\xb8\x04\xfe\x5e\x2c\x16\xf1\x62\x97\xe2\x2d\xf0\xdf\xb7\xe0\x67\x00\x00\x00\xff\xff\x4b\x15\xb8\xc7\xa5\x07\x00\x00" +var _stakingcollectionRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x4f\xdb\x4e\x10\xbd\xfb\x53\xcc\x8f\xc3\x4f\x89\x84\x0c\x87\xaa\xaa\xac\xa6\x28\x0a\x50\xa1\x20\xa8\x08\x9c\xaa\x1e\x16\xef\xd8\x5e\x65\xbd\x63\x8d\x27\x0d\x2e\xe4\xbb\x57\xeb\xcd\x3f\x13\xa7\x6d\x0e\xce\xce\xce\xcc\x9b\x37\x7e\x4f\x36\x65\x45\x2c\x30\xe1\xa6\x12\x8a\xd6\xd1\xb5\xa5\xe5\x4c\xd4\xdc\xb8\x7c\x42\xd6\x62\x2a\x86\x1c\x64\x4c\x25\x9c\xbf\xcc\x1e\xc7\xd3\x9b\xbb\xaf\x93\xfb\xdb\xdb\xab\xc9\xe3\xcd\xfd\xdd\xf8\xf2\xf2\xe1\x6a\x36\x8b\xa2\xb3\xb3\x33\x78\xc0\xdc\xd4\x82\x5c\x83\x02\x8d\x16\x73\x25\xc4\x60\x1c\x48\x81\x50\x07\x4c\x48\x77\xa0\x8c\x35\x2d\x38\xc5\xb6\x39\x23\x0e\x75\x15\xa6\x26\x33\xa8\xc1\x91\x46\x30\x2e\x23\x2e\x55\x5b\xaf\x9c\x6e\x4b\x54\x49\x0b\x27\x40\x19\x08\xcd\xd1\xd5\x20\x04\x29\x95\xa5\x91\x28\x12\x56\xae\x56\x2d\xfe\xc0\xe8\x04\x66\xc2\xc6\xe5\xa7\x11\xec\xfd\x98\x2c\x26\xf0\x74\xe3\xe4\x53\x37\xe1\x50\x96\xc4\x9e\xe6\x58\x6b\xc6\xba\xee\xef\xdf\x95\x4d\xb1\xe9\x2f\x59\x6f\x7b\x34\x1f\x56\x48\xe0\xe9\xda\xbc\x7c\xfc\xd0\xcd\x55\x8b\x67\x6b\xd2\x29\x36\x75\x02\xdf\x83\x38\xf1\x14\x9b\x5b\x53\xcb\x95\x13\x6e\x7e\x5c\x0c\xe1\xb5\xed\x68\x1f\x16\x65\x33\x6e\x27\xd8\x03\x66\x09\xfc\xdf\xab\x65\x7c\x70\x13\xb5\x38\x15\x63\xa5\x18\x07\x2a\x4d\x03\xb7\xf1\x42\x8a\x71\x08\x36\x03\xdb\xd5\xd0\x66\x71\xdf\x40\x18\xc1\xba\x37\x7e\x26\x66\x5a\x7e\xfe\x57\x02\x5f\x06\xde\x5f\x49\xbf\xf7\x0e\xcb\x67\x42\xac\x72\xfc\xa6\xa4\x18\x76\xde\xdc\xc5\x05\x54\xca\x99\x74\x70\x32\xa1\x85\xf5\x0e\x12\x08\x54\x80\xd1\xbb\x05\x0e\xb0\x4e\x86\xd1\x16\xc2\x64\xed\xcb\x2c\x55\x5a\x18\x87\xeb\xd5\x61\x74\x7c\xe3\x98\xd7\x8e\xbf\x23\x8d\x83\x0e\x15\xef\x3d\xa3\xfb\x7c\xe7\x9f\x7f\xb5\xdd\xc1\xd5\x1f\x1d\xd8\x09\x8f\x1b\x71\x77\xee\x37\x63\xf8\x7f\x67\x46\xd5\x20\x27\x1b\x61\x87\xb0\x4d\xbe\x76\xd7\xcd\xf6\x6c\x0b\xa3\x11\x38\x63\xe1\xed\x6d\xef\xf2\xbf\xd8\xa2\xcb\xa5\xf0\xc9\xf3\x77\xdd\x61\x50\x10\x4e\x39\xaf\x5a\xc5\xf4\xd3\x68\x84\x5f\xc8\x04\x73\x8f\xb9\xf9\x3e\xac\xd5\xd9\x30\x3a\xe9\x3a\x60\xd5\x89\x7c\xcf\x1c\x1b\xff\x09\xda\x23\xd2\x33\xbc\x2b\x79\xec\x07\xc6\x4a\xeb\xc1\xb6\x2b\xf1\x38\xf1\x36\x3c\x85\x42\xd5\xc5\xd8\xe6\xc4\x46\x8a\x32\x64\x3b\x57\xa7\xb0\x44\x93\x17\x12\x52\xe1\x7c\x8c\x6a\x38\xad\xa2\x55\xf4\x3b\x00\x00\xff\xff\x67\xfb\x69\x9e\x92\x05\x00\x00" func stakingcollectionRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5399,11 +5210,11 @@ func stakingcollectionRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xcb, 0x54, 0x53, 0x1a, 0x9d, 0x3e, 0x32, 0x51, 0xe3, 0x52, 0x76, 0xf2, 0xee, 0xcd, 0xe3, 0xb, 0xab, 0xed, 0x51, 0x3d, 0xed, 0xa4, 0x99, 0x55, 0xe7, 0xfb, 0xec, 0x6c, 0x87, 0xf2, 0xbf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xae, 0x5, 0x7e, 0x2a, 0xe2, 0xbe, 0x17, 0x25, 0x72, 0xa9, 0x5, 0x40, 0x5, 0xe3, 0xe4, 0xf8, 0x12, 0xf2, 0xe1, 0xd6, 0x2f, 0x88, 0x6e, 0xb6, 0xcd, 0xf8, 0x53, 0xe7, 0x20, 0x35, 0xfc, 0x3}} return a, nil } -var _stakingcollectionRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x8f\xd3\x30\x10\x85\xef\xf9\x15\x4f\x39\x2c\x89\xb4\x4a\x25\x40\x1c\x22\xa0\x82\x45\x2b\xf5\x04\x6a\x55\xee\xc6\x9d\xa4\x16\x8e\x1d\xc6\x63\xb5\x08\xf5\xbf\xa3\xc4\x4d\x83\x68\x0e\x5c\xf0\x21\x8e\xed\xf1\xbc\x37\xe3\xcf\x74\xbd\x67\xc1\xb3\xf5\xa7\x9d\xa8\xef\xc6\xb5\x4f\xde\x5a\xd2\x62\xbc\x43\xc3\xbe\x43\xbe\x78\x96\x67\xd9\x6a\xb5\xc2\x96\x7e\x44\x0a\x12\x10\x5d\x48\x21\x68\x3c\x43\x8e\x84\xd0\x93\x36\x8d\xa1\x03\x9c\x3f\x10\x3c\xe3\x40\x96\x5a\x25\x9e\x61\x5c\x0a\xb9\x5e\xd1\xb7\xb4\x59\x26\xac\x5c\x50\xe3\xa2\x18\x2e\x6e\x3e\xd5\xd8\x09\x1b\xd7\x3e\xce\x09\x86\xcd\xfd\xc6\xc9\xab\x97\xeb\x47\xa8\xce\x47\x27\x35\xf6\xcf\xe6\xfc\xe6\x75\x89\x5f\x19\x00\x8c\x1f\x4b\x32\x89\xcc\xd6\xb7\xd4\xd4\x50\x51\x8e\xc5\x62\x65\xd5\xfc\xfb\xf9\xe4\x88\x4b\x3c\x2c\xc7\xdd\xed\x64\xa3\x66\xcf\xd4\x2b\xa6\x42\x69\x9d\x7c\x8d\x52\x1f\x3d\xb3\x3f\x7d\x55\x36\x52\x89\x87\x0f\xe9\x6c\xf2\x3a\x8c\x40\xb6\xa9\x96\xbc\xe2\x1d\xae\xa9\xaa\x20\x9e\x55\x4b\xd5\xb7\x31\xd9\xdb\xff\x51\xc3\xfb\x62\x78\xf4\x7a\x19\x88\xfb\xf0\x5d\x72\xf4\x45\xc9\xb1\xbc\x95\x32\x8c\xf5\x1a\xbd\x72\x46\x17\xf9\x93\x8f\x76\x60\x40\x90\x6c\x43\x81\xa9\x21\x26\xa7\x09\xe2\xa1\x70\x0f\xde\x95\x8f\x9e\x4d\xa7\xf8\x27\x62\x20\x7e\x11\xa6\x36\xe4\x49\xe9\x92\xda\x4d\x67\xd2\x51\xe8\x5f\x3a\x59\x71\xa2\x75\x3f\xb1\x7a\x03\x2c\xcd\x7f\x01\xf6\xc7\x62\x86\x2c\xcd\x93\x83\x4b\xf6\x3b\x00\x00\xff\xff\x6a\x87\x6b\x8d\x40\x03\x00\x00" +var _stakingcollectionRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\x51\x6b\xf2\x50\x0c\x7d\xef\xaf\x08\x3e\x7c\x54\x90\xfa\xb1\x8d\x3d\x94\x6d\x52\xaa\x8e\x32\xd1\x61\xf5\x07\xdc\xd5\xb4\x5e\x76\xbd\xe9\xd2\x14\x85\xe1\x7f\x1f\xf5\x5a\x1d\xd3\x07\xef\x43\x43\x42\x72\xce\x49\x4f\xf4\xa6\x24\x16\x18\x1b\xda\xa6\xa2\x3e\xb5\x2d\x62\x32\x06\x33\xd1\x64\x21\x67\xda\xc0\xff\x5d\xba\x88\xde\x92\xe9\x6b\x3c\x9b\x4c\x46\xf1\x22\x99\x4d\xa3\xe1\x70\x3e\x4a\x53\xcf\xeb\xf7\xfb\x30\xc7\xaf\x1a\x2b\xa9\xa0\xb6\x95\x43\x80\x9c\x18\x64\x8d\x50\x95\x98\xe9\x5c\xe3\x0a\x2c\xad\x10\x88\x61\x85\x06\x0b\x25\xc4\xa0\xad\x6b\x39\x8e\x64\x27\x56\xcf\x13\x56\xb6\x52\x87\xc4\x6f\x06\x93\x61\x08\xa9\xb0\xb6\x45\xef\x0c\xd0\x14\x97\x89\x95\xfb\xbb\x41\x0f\xd4\x86\x6a\x2b\x21\x2c\xc7\x7a\xf7\xf8\xd0\x85\x6f\x0f\x00\xe0\xf0\x31\x28\x2d\xc9\x79\xb3\x39\xe6\x21\xfc\xbb\xba\x74\x70\x51\xf1\x0e\x38\x25\x63\xa9\x18\x7d\x95\x65\x8e\x2b\xaa\x65\x1d\xb9\xa4\x25\x6c\x5e\x85\x26\x0f\xae\x11\xc2\x33\x1c\x67\x83\x0f\x62\xa6\xed\xd3\xad\x02\x5e\xfc\xc6\x88\xf0\xba\x49\x97\xed\xa9\x10\xab\x02\xdf\x95\xac\xbb\x27\x59\xcd\x1b\x0c\xa0\x54\x56\x67\x7e\x27\xa6\xda\x34\xa6\x08\x38\x29\xc0\x98\x83\x10\x5c\x60\x75\x1c\xc2\xde\xfd\x03\xdc\x61\x56\x0b\xde\xb2\x6d\xc0\xee\x2c\x96\xed\x51\x9c\x9c\x74\xf1\x8f\x93\xbf\x92\xb3\x9b\x2e\xb6\x0a\xf6\xde\x4f\x00\x00\x00\xff\xff\x78\x58\xc1\x42\xac\x02\x00\x00" func stakingcollectionRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -5419,11 +5230,11 @@ func stakingcollectionRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0x9, 0xd0, 0xec, 0x1c, 0x52, 0x7a, 0x4e, 0xdd, 0x2e, 0x32, 0x4e, 0x54, 0x32, 0x24, 0xf7, 0x13, 0x28, 0xda, 0x6, 0x1f, 0x13, 0x61, 0x82, 0x5c, 0x5, 0x93, 0xc9, 0xcd, 0x4c, 0xce, 0x85}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xef, 0xea, 0x1c, 0x7d, 0xa0, 0xfd, 0x94, 0xf6, 0x62, 0xff, 0xe2, 0x56, 0x30, 0xb4, 0x51, 0x60, 0x6f, 0x63, 0xec, 0x73, 0xb9, 0x24, 0x10, 0xba, 0xd2, 0x4e, 0xda, 0x1f, 0x16, 0xf4, 0xe2, 0xd}} return a, nil } -var _stakingcollectionRestake_all_stakersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x6f\xdb\x30\x0c\xbd\xeb\x57\x10\x39\x14\x36\x50\x38\xf7\x60\x59\xb1\x25\x18\xd0\x4b\x36\xb4\xc5\xee\xac\x4d\xa7\x46\x64\x31\x90\x68\x64\x40\x91\xff\x3e\xc8\x72\xfc\x11\x2b\xdb\x61\xab\x0f\x86\x20\x92\x8f\x8f\x8f\x4f\x55\x7d\x64\x2b\xf0\x4d\xf3\xe9\x59\xf0\x50\x99\xfd\x86\xb5\xa6\x5c\x2a\x36\x50\x5a\xae\x61\x11\x8d\x2d\xd4\xa8\xf2\x71\xfb\x82\xaf\x9a\xba\xa4\x51\xd9\x34\xb0\x50\x6a\xb9\x5c\xc2\x86\xeb\xba\x12\x07\x96\x4e\x68\x0b\x2a\x40\xf8\x40\xc6\x81\x30\x38\xc1\x03\x41\xc9\x16\x50\x6b\x30\x5c\x90\x03\x34\x05\x14\xa4\x69\x8f\xc2\xd6\x41\x65\x00\x21\xef\x79\x28\x25\x16\x8d\xc3\x40\xf8\x5d\x01\x00\xb4\x3f\x4d\xd2\xc2\x4d\x58\x3f\x51\xb9\x02\x6c\xe4\x2d\x89\x0e\x95\x0d\xc7\xef\x27\x43\x36\x85\xbb\x78\xde\xec\x46\xb5\x3d\x8f\x96\x8e\x68\x29\xc1\x3c\xe7\xc6\x48\xd7\xea\x2b\x5b\xcb\xa7\x9f\xa8\x1b\x4a\xe1\xee\x4b\x88\xa5\x1d\x57\xff\x39\xd2\x65\x16\xe3\x0a\x6b\xe8\xa0\x32\x27\x6c\x71\x4f\xd9\x6b\x0b\xf6\xe9\x23\x66\xf8\x9c\xf8\xc5\xad\xe2\x5e\x98\xa7\x3f\x07\x46\x3f\x50\xde\xd2\x7e\x14\xff\x3d\x3c\xc0\x11\x4d\x95\x27\x8b\x0d\x37\xba\x00\xc3\x02\x81\x36\x58\x2a\xfd\x9a\xe7\x6e\x0a\x08\xe7\x20\x23\xfd\xa2\xbc\x11\x1a\x29\xe4\x97\xe9\xdd\xf0\xb8\x75\xb0\xbe\xad\x57\xb6\x27\xd9\x85\xb4\x24\x55\x7d\xb5\xf7\x53\xa8\xf6\xee\xb9\xe0\xbc\x4f\x48\xf7\x1d\x4c\xc9\xb0\x8e\xb8\x3a\xdb\x75\xd1\x24\x00\xac\x3a\xa0\xe9\xec\xb7\xa9\xb5\xd6\x7e\xea\x2c\xff\xd2\x3a\xfe\x0a\xe9\x7e\xb0\x79\x7b\x59\xe9\x7b\xc0\x3a\x18\xe9\x42\x2d\x0b\x6f\xe5\x82\x33\x34\x3f\xab\x89\x58\xa3\x07\xf3\x17\xbd\xb6\x43\xcf\x99\x68\x3d\x8a\xd7\x6d\x04\x39\x97\x6e\x60\x7e\x53\xbf\xed\x38\xa5\x1f\xbd\x2f\xcc\xfa\xd3\x2e\xa6\x46\x24\xef\x5a\xfb\xff\xb0\x88\x7f\x62\x33\x6c\x6b\xa2\xc6\x1f\x56\x16\xfe\x67\xf5\x3b\x00\x00\xff\xff\xcb\xbd\x75\xfc\x85\x05\x00\x00" +var _stakingcollectionRestake_all_stakersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x52\xd1\x8a\xdb\x30\x10\x7c\xd7\x57\x2c\x79\x28\x0e\x1c\x4e\x9f\x43\xd3\x23\xd8\xd7\x12\x7a\xf8\x4a\x9c\x1f\xd0\xd9\xeb\x9c\x89\xac\x0d\xf2\x86\x1c\x1c\xf9\xf7\x22\xcb\x91\xed\xd8\x69\x0b\xad\x1f\x44\x22\xed\xce\xce\xce\x4c\x59\x1d\xc9\x30\x7c\x53\x74\x4e\x59\x1e\x4a\xbd\x8f\x48\x29\xcc\xb8\x24\x0d\x85\xa1\x0a\x3e\xbf\xa7\xbb\xf5\x8f\x4d\xf2\x3d\x7a\x79\x7e\x7e\x8a\x76\x9b\x97\x64\x1d\xc7\xdb\xa7\x34\x15\xbd\xe6\x4d\xbc\x93\xaf\x0a\x5b\x0c\xd7\x39\x1b\x3f\xcc\x84\x58\x2c\x16\x10\x51\x55\x95\x5c\x83\xc1\xb3\x34\x39\xe6\xc0\x74\x40\x5d\x03\x13\xd4\x2c\x0f\x08\x05\x19\x90\x4a\x81\xa6\x1c\x6b\x90\x3a\x87\x1c\x15\xee\x25\x93\xa9\xa1\xd4\x20\x21\xf3\x34\x85\x60\x23\x75\x2d\x1d\xe7\x0f\x01\x00\xd0\x1c\x0a\xb9\x81\x1b\x2c\xb5\xc5\x62\x09\x9f\x26\xf7\x0d\x47\x37\xa2\xc1\x39\x1a\x3c\x4a\x83\x81\xcc\x32\x3a\x69\x5e\xc2\xfa\xc4\x6f\x6b\xf7\x67\xde\x0e\xb4\x5f\x8d\xaa\x08\xa7\x06\xc2\x0a\xda\xde\xf0\x95\x8c\xa1\xf3\x97\xbf\x25\xf0\x35\xb0\x4a\x2e\xa7\xfd\x19\x97\xa7\x4c\x46\xee\xf1\xa7\xe4\xb7\xb9\xa7\x65\xbf\xc7\x47\x38\x4a\x5d\x66\xc1\x2c\xa2\x93\xca\x41\x13\x83\xa3\x02\x06\x0b\xab\xfb\x08\x6b\xe6\x10\x2e\x4e\x03\x7c\xc7\xec\xc4\xd8\xdb\xd6\xaa\x6b\xed\xd9\xc4\x35\xac\xee\xef\x1e\xee\x91\x13\x57\x16\xcc\x85\xef\xb6\x06\xbb\x6e\x6b\xe7\x15\xe7\x63\x40\xda\x4f\xd0\x05\xc1\x6a\x22\x66\x61\xd2\xbe\x06\x0e\x60\xd9\x02\x0d\x77\xbf\x4f\xad\xc9\xda\xb6\xcd\xe0\xae\x89\xe0\x0d\xd2\x43\x97\xbb\xe6\xb2\x54\x0f\x20\x2b\x97\x82\x2b\xb5\xd0\x85\xf7\x8a\xd3\x0d\xbf\x88\x81\x58\xbd\x04\xff\x41\xaf\xb8\x9b\x39\x12\xcd\xa3\x58\xdd\x7a\x90\x63\xe9\x3a\xe6\x77\xf5\x8b\xfb\x25\x7e\x75\xdf\x18\xfa\x5f\xc9\x94\x1a\x13\x75\xb7\xda\xff\x07\x23\xfe\x89\x4d\xe7\xd6\x40\x8d\xdf\x58\xe6\xce\x8b\xf8\x15\x00\x00\xff\xff\xff\x0b\xcb\xe8\x19\x05\x00\x00" func stakingcollectionRestake_all_stakersCdcBytes() ([]byte, error) { return bindataRead( @@ -5439,11 +5250,11 @@ func stakingcollectionRestake_all_stakersCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/restake_all_stakers.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0xee, 0xd6, 0x42, 0xaf, 0x95, 0x76, 0xc4, 0xef, 0x82, 0xa3, 0xbb, 0xb6, 0xa5, 0x72, 0xc9, 0xc0, 0x45, 0x5, 0xef, 0xd3, 0x94, 0x90, 0x5c, 0x7f, 0x90, 0x8b, 0x25, 0xf2, 0x33, 0xa3, 0x62}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x26, 0x71, 0x6b, 0x3, 0x8a, 0x5, 0xcb, 0xf0, 0xfd, 0x79, 0xbf, 0xac, 0x93, 0x8, 0x38, 0xcf, 0x4d, 0x15, 0x7f, 0x13, 0x56, 0xac, 0xd7, 0x72, 0x7d, 0x9a, 0xd1, 0x36, 0x15, 0x49, 0x33, 0xa8}} return a, nil } -var _stakingcollectionScriptsDoes_account_have_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4e\xc4\x40\x0c\x45\xfb\x39\xc5\xd7\x56\x9b\x86\xf4\xdb\x2d\x20\x44\xcf\x09\xac\x89\x03\x16\x33\x76\x34\xf6\x90\x02\x71\x77\x8a\x44\x4a\xb1\xe9\x9e\xf4\xbf\x9e\x9e\xd4\xc5\x5a\xe0\xad\xd8\xfa\x11\xf4\x2d\xfa\xf9\x62\xa5\x70\x0e\x31\xc5\xdc\xac\xe2\x72\xba\x5d\x52\x1a\xc7\x11\xaf\x1c\xdc\xaa\x28\x3b\x64\x06\x29\x28\x67\xeb\x1a\x10\x87\x73\xa0\x2f\x58\x25\xbe\x40\xd8\x0d\x38\x14\x29\x51\xce\xec\x7e\xa5\x52\x06\xcc\x5d\x51\x49\xf4\x4a\xd3\xd4\xd8\xfd\x86\xfb\x06\xc3\x0d\xcf\x66\x05\xbf\x09\x00\x1a\x47\x6f\x7a\xde\xfb\x34\x19\xfb\x7d\x0b\x78\xa7\x1f\x7e\x38\x1c\xee\x1d\x86\xf4\xf7\x1f\x00\x00\xff\xff\x4a\x63\x63\xb2\x01\x01\x00\x00" +var _stakingcollectionScriptsDoes_account_have_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4e\xc3\x40\x10\x45\xfb\x3d\xc5\x2f\xe3\x06\x53\xa7\x33\x76\x80\x88\x28\x91\x70\x2e\x30\x5a\x8f\x61\xc5\x7a\x26\xda\x99\x25\x48\x88\xbb\x53\x24\x52\x0a\xe8\x5e\xf1\xf5\xdf\x4b\xcb\x49\x8b\xe3\x31\xeb\x79\x74\xfa\x48\xf2\xd6\x6b\xce\x1c\x3d\xa9\x60\x2e\xba\xe0\xfe\x6b\x3c\x76\x2f\xdb\xfd\x53\x7f\xd8\xed\x36\xfd\x71\x7b\xd8\x77\xc3\xf0\xba\x19\xc7\x10\xda\xb6\xc5\xc0\xce\x65\x49\xc2\x86\x34\x83\x04\x14\xa3\x56\x71\x24\x83\xb1\xa3\x9e\x70\x4e\xfe\x0e\xc2\x55\x80\x9b\x21\x04\x8a\x91\xcd\x56\x94\x73\x83\xb9\x0a\x16\x4a\xb2\xa2\x69\x2a\x6c\xb6\x46\x77\x81\x66\x8d\x07\xd5\x8c\xef\x00\x00\x85\xbd\x16\xf9\x3f\xf9\x6e\x52\xb6\xee\x12\xf0\x4c\x9f\xfc\x67\x70\xfb\xbe\x42\x13\x7e\x7e\x03\x00\x00\xff\xff\x22\xf7\x5f\x71\x04\x01\x00\x00" func stakingcollectionScriptsDoes_account_have_staking_collectionCdcBytes() ([]byte, error) { return bindataRead( @@ -5459,11 +5270,11 @@ func stakingcollectionScriptsDoes_account_have_staking_collectionCdc() (*asset, } info := bindataFileInfo{name: "stakingCollection/scripts/does_account_have_staking_collection.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0x34, 0x8c, 0xdd, 0x28, 0xf3, 0x71, 0x7c, 0x27, 0x34, 0x43, 0xc2, 0x6c, 0xde, 0x42, 0x3e, 0x68, 0x2d, 0xc2, 0x74, 0x34, 0x8e, 0x51, 0xaf, 0x77, 0xcc, 0xac, 0x1b, 0x8d, 0x90, 0x91, 0x7f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0xa8, 0x71, 0xb0, 0x74, 0x2b, 0xe7, 0xf6, 0x22, 0x19, 0xad, 0x8, 0x16, 0xff, 0xe6, 0xf3, 0xa8, 0x0, 0x53, 0x43, 0x63, 0x5e, 0x29, 0xad, 0x82, 0x3, 0x6f, 0x87, 0x48, 0xf5, 0xa3, 0xf1}} return a, nil } -var _stakingcollectionScriptsGet_all_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x4b\x03\x51\x10\x84\xfb\xf7\x2b\x86\xab\x72\x4d\xae\x4f\x17\x0c\x4a\x6a\xed\xc4\x62\xbd\xb7\xef\x7c\xb8\xf7\x56\x76\x37\x88\x88\xff\x5d\xd0\xd3\x24\x24\xdd\xb0\x33\xc3\x37\x6c\x9d\xdf\xd4\x02\xb7\xa2\xef\xf7\x41\xaf\xb5\x4d\x37\x2a\xc2\x63\x54\x6d\x28\xa6\x33\xba\xab\x5e\x97\x4e\x9a\xfb\xdd\x03\x3d\x0b\x2f\xa1\x93\xda\xb9\xd1\xa5\x34\x0c\x03\xee\x38\x1c\xd4\x40\x66\xf4\x01\x2d\x20\x11\xc4\x0b\x23\xb3\xf0\x44\xa1\x86\x99\x83\x32\x05\xa1\xa8\x1d\xcf\x0e\x0f\x35\xce\xa8\xed\x27\xef\x0b\x6f\xfc\x5f\x95\x12\x8d\x23\xbb\xaf\x48\xa4\x47\x39\x34\xcc\x54\xdb\x8a\x72\x36\x76\xdf\x60\xfb\x2b\xfa\x0d\x1e\x2f\xe7\xad\x77\x7f\xa0\x7d\x2b\xfa\x84\xcf\x04\x00\xc6\x71\xb0\x76\xfd\x41\xeb\x89\x63\x2b\x72\xd6\x3b\xc2\x16\xd1\xa7\xaf\xef\x00\x00\x00\xff\xff\x8b\x34\x8c\xda\x65\x01\x00\x00" +var _stakingcollectionScriptsGet_all_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x1e\x3d\x35\x97\xc6\x73\x6f\x21\xa9\x25\x58\x5a\x30\xb9\x89\x87\x31\x99\xc4\xc5\xc9\xae\xcc\x4e\x51\x11\xff\xbb\x60\xa3\x55\xea\xed\xb1\x3b\xdf\x7c\x8f\xf1\xd3\x73\x54\xc3\xb5\xc4\x97\xc6\xe8\xc9\x87\xb1\x8c\x22\xdc\x99\x8f\x01\x83\xc6\x09\x57\xaf\x4d\x5b\xdc\xd4\xfb\x6d\x79\xd8\xed\x36\x65\x5b\x1f\xf6\x45\x55\xdd\x6e\x9a\xc6\xfd\x82\xeb\xaa\xa5\x07\xe1\x79\xc7\x89\x5c\x5c\x7e\x2c\x9c\xcb\xf3\x1c\x5b\xb6\x04\x0a\x20\x55\x7a\x43\x1c\x40\x22\xb0\x47\x46\xcf\xc2\x23\x59\x54\x4c\x6c\xd4\x93\x11\x86\xa8\xe7\xe7\x84\x64\x51\xb9\x87\x0f\x5f\xf3\x69\xf6\x75\x3f\xa5\x9d\xa3\xae\xe3\x94\x96\x24\x92\x61\x38\x06\x4c\xe4\xc3\x92\xfa\x5e\x39\xa5\x35\x8a\x53\xc8\xd6\xb8\xbb\xac\xb7\xaa\xbe\x45\x75\x18\xe2\x3d\xde\x1d\x00\x28\xdb\x51\xc3\xff\x37\x5a\x8d\x6c\x85\xc8\x1f\xee\x2c\x9b\x43\xe6\x3e\x3e\x03\x00\x00\xff\xff\x8b\xe6\xbd\x01\x68\x01\x00\x00" func stakingcollectionScriptsGet_all_delegator_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5479,11 +5290,11 @@ func stakingcollectionScriptsGet_all_delegator_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_all_delegator_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x61, 0xbc, 0xe9, 0xa, 0xd, 0xd8, 0x3e, 0x8b, 0x75, 0x60, 0x29, 0xdf, 0x8, 0xba, 0x2, 0xf2, 0xbb, 0xe3, 0x73, 0x8b, 0xed, 0x4a, 0xcc, 0x91, 0x4b, 0xa5, 0x5f, 0x2c, 0xe8, 0x7e, 0xf4, 0x11}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x70, 0xf7, 0xc4, 0xee, 0x69, 0xb6, 0x5e, 0xd0, 0x74, 0x7b, 0xb9, 0xbf, 0x6e, 0x95, 0x73, 0x5e, 0x75, 0xf4, 0xbe, 0x3, 0x26, 0xde, 0x54, 0x17, 0x4d, 0xab, 0x0, 0xd3, 0xec, 0x10, 0x78}} return a, nil } -var _stakingcollectionScriptsGet_all_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x4b\x43\x41\x10\x84\xfb\xfb\x15\xc3\xab\xf2\x9a\xbc\x3e\x5d\x50\x94\x34\x36\xda\x89\xc5\xfa\x6e\x2f\x1e\xee\xed\xca\xde\x06\x11\xf1\xbf\x0b\xf1\xa9\x11\xd3\x0d\x3b\xf3\x31\xc3\xd6\xf6\x62\x1e\xb8\x12\x7b\xbd\x0d\x7a\xae\xba\xbf\x30\x11\x9e\xa3\x9a\xa2\xb8\x35\x0c\x67\xbd\x21\x9d\x90\xbb\xcb\x3b\x7a\x14\x5e\x42\x27\xd8\x5f\x63\x48\x69\x9a\x26\x5c\x73\x74\x90\x82\xdc\xe9\x0d\x56\x40\x22\x88\x27\x86\x5a\x66\x34\x0e\xca\x14\x84\x62\x7e\xbc\x74\xf4\x30\xe7\x8c\xaa\xc7\x54\x5f\x5a\xe6\x9f\x2d\x29\xd1\x3c\x73\xef\x2b\x12\x19\x51\x0e\x8a\x46\x55\x57\x94\xb3\x73\xef\x1b\x6c\xbf\xc4\xb8\xc1\xfd\xff\x51\xeb\x1b\xcb\xbc\xd3\x62\x0f\x78\x4f\x00\xe0\x1c\x07\xd7\xf3\x1f\x59\xef\x39\xb6\x22\xdf\xc8\x6f\xc5\x22\xc6\xf4\xf1\x19\x00\x00\xff\xff\xcd\xc4\xa0\x99\x51\x01\x00\x00" +var _stakingcollectionScriptsGet_all_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcd\x6a\xc3\x40\x0c\x84\xef\xfb\x14\x43\x4e\xf1\x25\xee\x39\x37\x63\xa7\xc1\x34\x38\x50\xfb\x56\x7a\x50\xbd\x72\x6a\x2a\xaf\xca\xae\x42\x5b\x4a\xdf\xbd\x90\xb8\x3f\x90\xdc\x06\x49\x9f\x66\x98\x71\x7a\xd5\x68\xb8\x15\x7d\x6b\x8d\x5e\xc6\x70\x28\x55\x84\x7b\x1b\x35\x60\x88\x3a\xe1\xe6\xbd\xed\x8a\xbb\xba\xd9\x96\xfb\xdd\x6e\x53\x76\xf5\xbe\x29\xaa\xea\x7e\xd3\xb6\xee\x1f\x5c\x57\x1d\x3d\x09\xcf\x3f\xce\xe4\xe2\x72\xb1\x70\x2e\xcf\x73\x6c\xd9\x12\x28\x80\x62\xa4\x0f\xe8\x00\x12\x81\x3d\x33\x82\x7a\xc6\xc4\x46\x9e\x8c\x30\x68\x3c\x4d\x12\x92\x69\x64\x8f\x31\x9c\xae\xd2\xec\xd2\xff\x46\x75\x8e\xfa\x9e\x53\x5a\x92\x48\x86\xe1\x18\x30\xd1\x18\x96\xe4\x7d\xe4\x94\xd6\x28\xce\x22\x5b\xe3\xe1\x32\xd4\xaa\x51\xcf\x75\x18\xf4\x11\x9f\x0e\x00\x22\xdb\x31\x86\xeb\xa5\xac\x0e\x6c\x85\xc8\x0f\xf2\x67\x31\x8b\xcc\x7d\x7d\x07\x00\x00\xff\xff\x6d\x35\x31\x49\x54\x01\x00\x00" func stakingcollectionScriptsGet_all_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5499,11 +5310,11 @@ func stakingcollectionScriptsGet_all_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_all_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0x1b, 0xdc, 0xc0, 0x18, 0xba, 0x5a, 0xa1, 0x59, 0xc9, 0x67, 0x12, 0x85, 0xb0, 0xda, 0x24, 0xdd, 0x74, 0x94, 0xbd, 0xbb, 0xbe, 0x46, 0xdd, 0x56, 0x2c, 0x3f, 0x4d, 0x4e, 0x6a, 0xe8, 0x7b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8a, 0x65, 0xfc, 0xb1, 0xf6, 0xf3, 0xe1, 0x26, 0xe8, 0x32, 0x38, 0x81, 0xb0, 0x52, 0x6c, 0x49, 0x9b, 0x28, 0x28, 0x3e, 0x26, 0xf1, 0xac, 0x9c, 0xcc, 0xdd, 0x8e, 0x1e, 0x36, 0x5, 0x9, 0xdb}} return a, nil } -var _stakingcollectionScriptsGet_delegator_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xbd\x6a\xc4\x40\x0c\x84\xfb\x7d\x8a\xe1\xaa\x73\x73\xee\xaf\x0b\x31\x01\xb7\x49\x19\x52\x88\x5d\xd9\x59\x22\xaf\x82\x24\x13\x42\xc8\xbb\x07\xec\xfc\x15\xee\x06\x06\xcd\xf7\xa9\x2e\xaf\x6a\x81\x3b\xd1\xb7\x87\xa0\x97\xda\xe6\x5b\x15\xe1\x1c\x55\x1b\x26\xd3\x05\xa7\xc3\xee\x94\x52\xdf\xf7\xb8\xe7\x58\xad\x39\xa8\x81\xcc\xe8\x1d\x3a\x81\x44\x10\xcf\x8c\xc2\xc2\x33\x85\x1a\xc6\xc1\xe1\xa1\xc6\x05\xb5\x6d\x9d\xef\x7b\xc8\xbf\x83\x29\x51\xce\xec\x7e\x26\x91\x0e\xd3\xda\xb0\x50\x6d\x67\x2a\xc5\xd8\xfd\x8a\x9b\x3d\x74\x57\x3c\x1e\x0a\x5d\x86\x1f\xdc\x38\xf8\x13\x3e\x12\x00\xd8\xa6\x77\xfc\xdd\x65\xe6\xf8\x7f\xf3\x87\xfa\x0e\x5d\xfa\xfc\x0a\x00\x00\xff\xff\x7b\xbc\xfe\x64\x1e\x01\x00\x00" +var _stakingcollectionScriptsGet_delegator_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcf\xbd\x6a\xc3\x40\x10\x04\xe0\xfe\x9e\x62\x4a\xab\xb1\x52\xbb\x13\x3a\x27\x88\x18\x1b\x2c\x77\x21\xc5\xa2\x5b\x29\x47\x4e\x77\x61\x77\x4d\x12\x42\xde\x3d\x60\xe7\xaf\x50\x37\xb0\x2c\xdf\x4c\x9c\x5f\x8a\x18\x6e\x53\x79\xed\x8d\x9e\x63\x9e\xda\x92\x12\x0f\x16\x4b\xc6\x28\x65\xc6\xcd\x5b\x7f\x6a\xee\xbb\xfd\x5d\x7b\xd8\xed\xb6\xed\xa9\x3b\xec\x1b\xef\x8f\xdb\xbe\x77\xae\xae\x6b\x1c\xd9\xce\x92\x15\x94\x41\x22\xf4\x8e\x32\x82\x52\x82\x3d\x31\x02\x27\x9e\xc8\x8a\xa0\xf3\x0a\xb5\x22\x1c\x10\xf3\xe5\xa6\x57\x0e\xc3\xaf\xe7\x1c\x0d\x03\xab\xae\x28\xa5\x0a\xe3\x39\x63\xa6\x98\x57\x14\x82\xb0\xea\x06\xcd\x35\x54\x1b\x3c\x2c\xf6\x5d\xfb\x1f\xae\xf3\xfa\x88\x0f\x07\x00\x72\xa9\xb7\x3c\x70\x3d\xb1\xfd\xff\xf9\xa3\xbe\x43\xe5\x3e\xbf\x02\x00\x00\xff\xff\x8d\xf2\x13\x88\x21\x01\x00\x00" func stakingcollectionScriptsGet_delegator_idsCdcBytes() ([]byte, error) { return bindataRead( @@ -5519,11 +5330,11 @@ func stakingcollectionScriptsGet_delegator_idsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_delegator_ids.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0x35, 0xab, 0x54, 0x9e, 0x17, 0xc5, 0x8d, 0xcb, 0x10, 0x21, 0xe1, 0x7c, 0x59, 0xcb, 0xec, 0x18, 0xbf, 0x66, 0xb7, 0x4f, 0x38, 0xc, 0x32, 0x7f, 0x8b, 0x9e, 0x82, 0x19, 0x52, 0xc, 0xbe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8, 0x3c, 0xc3, 0x2f, 0xf7, 0xd4, 0x15, 0x36, 0xaa, 0x4d, 0x8, 0x2e, 0xc1, 0x6, 0x5b, 0x41, 0xbc, 0x5f, 0x9b, 0x97, 0xea, 0xb7, 0x11, 0x93, 0xfd, 0x12, 0xd0, 0xc8, 0xfe, 0xbd, 0x20, 0x8f}} return a, nil } -var _stakingcollectionScriptsGet_does_stake_existCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x6a\xf3\x30\x10\x84\xef\x7a\x8a\xc1\xa7\x18\xc2\x6f\xf8\x7b\xf3\xa5\xb4\x4d\x0b\x3e\x27\x7d\x00\x55\x5a\xb9\x4b\xd7\xda\x20\x29\xb4\x50\xfa\xee\xc5\xb1\xc1\xae\xc9\x49\xd2\xce\xce\x7c\x83\x78\x38\x6b\x2a\x78\x11\xfd\x3c\x16\xfb\xc1\xb1\x7f\x52\x11\x72\x85\x35\x22\x24\x1d\x50\xdd\xd4\x2a\xb3\x72\x76\x87\x93\x7d\x13\x9a\x97\x56\xb6\xbf\x42\x65\x4c\xd3\x34\x38\x91\x48\x06\x07\x94\x77\x42\x3e\x93\xe3\xc0\xe4\x11\xd5\x13\x34\xc1\x93\x50\x6f\x8b\x26\xd0\x17\xe7\x92\xc1\x71\xda\x9c\xd3\xdd\xd2\xef\x1a\x17\x34\x6d\x92\xac\xf7\x89\x72\x36\xc6\x3a\x47\x39\xef\xac\x48\x8d\x70\x89\x18\x2c\xc7\xdd\xac\xb6\x78\x98\x2e\xfb\x2b\xb9\x3b\xb4\x38\x96\xc4\xb1\xdf\x2f\x0d\xc6\xe1\x6b\x17\xcb\xdd\xff\xfb\xba\xc5\xa3\xaa\xe0\xdb\x00\x40\xa2\x72\x49\xf1\xf6\xaf\xfd\xf3\x4a\x79\x9c\xd2\xf3\xd8\x7f\xe1\xd9\x2d\x6f\x3a\x37\xbc\xd5\xa3\x36\x3f\xbf\x01\x00\x00\xff\xff\xa0\xc3\x2f\x2d\x9f\x01\x00\x00" +var _stakingcollectionScriptsGet_does_stake_existCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xd1\x4a\xc3\x30\x14\x86\xef\xf3\x14\x3f\xbb\xda\x60\x58\xd1\xbb\xde\x48\x6d\xab\x14\xc7\x06\xb6\x3e\x40\x6c\x4e\x6a\x30\xcd\x19\x49\x86\x03\xf1\xdd\xa5\x6b\xa1\xa3\x7a\x95\xe4\x9c\x9c\xef\xfb\x39\xa6\x3f\xb2\x8f\x78\xb2\xfc\x55\x47\xf9\x69\x5c\x97\xb3\xb5\xd4\x46\xc3\x0e\xda\x73\x8f\xdb\x73\xdd\x64\x2f\xd5\xfe\x39\x3f\xec\x76\x65\xde\x54\x87\x7d\x56\x14\xaf\x65\x5d\x8b\xab\xe1\xaa\x68\xe4\xbb\xa5\x89\x31\x4e\xae\xfe\x36\x56\x42\x24\x49\x82\x86\xac\x0d\x30\x1a\xf1\x83\x10\x8e\xd4\x1a\x6d\x48\xc1\xb1\x22\xb0\x87\x22\x4b\x9d\x8c\xec\x41\x67\x13\x62\x80\x71\xe3\xcf\x89\xde\xce\x11\x2f\x38\xcd\x7e\x41\x92\x4a\x79\x0a\x41\x08\xd9\xb6\x14\xc2\x5a\x5a\xbb\x81\x3e\x39\xf4\xd2\xb8\xf5\xd4\x4d\x91\x8d\x97\xed\xc5\x5c\x15\x29\xea\xe8\x8d\xeb\xb6\x73\x82\xa1\xf8\x56\xb9\x78\x7f\xf7\xb0\x49\xf1\xc8\x6c\xf1\x2d\x00\xc0\x53\x3c\x79\xf7\xff\xe2\x6e\x14\x53\x18\xaa\x54\x0e\xf9\x67\x9f\x5c\xfa\xc6\x73\xe1\xbb\x7a\x6c\xc4\xcf\x6f\x00\x00\x00\xff\xff\xc7\xd8\xe3\x24\xa2\x01\x00\x00" func stakingcollectionScriptsGet_does_stake_existCdcBytes() ([]byte, error) { return bindataRead( @@ -5539,11 +5350,11 @@ func stakingcollectionScriptsGet_does_stake_existCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_does_stake_exist.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4, 0xb, 0x6f, 0x8c, 0x94, 0xdc, 0x94, 0x55, 0x5, 0x3d, 0xa0, 0x77, 0x92, 0x7, 0xba, 0x57, 0xbd, 0x9e, 0x52, 0x3f, 0x15, 0x13, 0x69, 0x71, 0x5, 0x3, 0xa5, 0x1c, 0x2a, 0xe6, 0xa2, 0xa4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x78, 0xd5, 0xb, 0xb6, 0xe7, 0xd, 0xc3, 0xda, 0x5a, 0x2c, 0x1, 0x38, 0x11, 0x37, 0xb5, 0xaa, 0xd3, 0xbe, 0x7c, 0x49, 0x28, 0x4e, 0xe8, 0x23, 0xf3, 0xea, 0x3b, 0x8f, 0x10, 0x1b, 0x76, 0xb2}} return a, nil } -var _stakingcollectionScriptsGet_locked_tokens_usedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xb1\x4e\xec\x40\x0c\x45\xfb\xf9\x8a\xab\xad\x92\xe6\xa5\x79\xa2\x48\x87\x90\x52\xd1\xb1\xfb\x01\xd6\x8c\x37\x3b\x8a\x63\xa3\xb1\xa3\x05\x21\xfe\x1d\x91\x05\xd1\x6c\x7d\xe4\xe3\x73\xeb\xfa\x6a\x2d\x30\x89\x5d\x5f\x82\x96\xaa\xf3\x93\x89\x70\x8e\x6a\x8a\x73\xb3\x15\x87\xbb\xec\x90\xd2\x30\x0c\x38\xb2\x88\xe3\x62\x57\xac\xa4\xef\x10\xcb\x0b\x17\x84\x2d\xac\x8e\xb8\x30\x28\x67\xdb\x34\x50\x1d\x9b\x57\x9d\xf7\xab\xc9\xda\x37\x6c\x0c\xbf\x79\x91\xff\x9e\xaa\x15\x76\x90\x16\x14\x16\x9e\x29\xac\x79\x4a\x94\x33\xbb\x77\x24\xd2\xe3\xbc\x29\x56\xaa\xda\xfd\xc8\x47\x3c\x96\xd2\xd8\xbd\x1f\x71\x9a\xea\xdb\xc3\x7f\x7c\x24\x00\x68\x1c\x5b\xd3\xfb\xe3\xfe\xcd\x1c\xcf\x7b\xee\x71\xaf\x3d\x39\x97\x8e\x6e\x9e\xf1\x37\xbb\x4f\x9f\x5f\x01\x00\x00\xff\xff\x7c\x03\x2f\x67\x21\x01\x00\x00" +var _stakingcollectionScriptsGet_locked_tokens_usedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xb1\x6a\xeb\x40\x10\x45\xfb\xfd\x8a\x5b\x5a\xcd\xd3\x2b\x42\x0a\x75\x42\xb6\x82\x89\xb0\x21\x92\x3f\x60\xd9\x1d\xcb\x8b\x56\x33\x61\x67\x85\x1d\x42\xfe\x3d\x44\x4e\x48\x93\x7a\x98\x73\xce\x0d\xf3\xab\xa4\x8c\x36\xca\xb5\xcf\x76\x0a\x3c\x36\x12\x23\xb9\x1c\x84\x71\x4e\x32\xe3\xff\xad\x1f\xea\xe7\xfd\xe1\xa9\x39\x76\xdd\xae\x19\xf6\xc7\x43\xbd\xdd\xbe\xec\xfa\xde\x98\xb2\x2c\x31\x50\x8c\x8a\x8b\x5c\x31\x5b\x7e\x43\x14\x37\x91\x47\x96\x89\x58\x91\x2f\x04\xeb\x9c\x2c\x9c\x11\x14\x8b\x06\x1e\xd7\xaf\x56\xd2\xd7\x31\x11\xf4\xae\x85\xfb\xf5\xb2\x78\x52\x58\xf6\xf0\x14\x69\xb4\x59\x92\x1a\x63\x9d\x23\xd5\x8d\x8d\xb1\xc0\x79\x61\xcc\x36\xf0\xe6\x1b\x5e\xa1\xf6\x3e\x91\x6a\x51\xe1\xd4\x86\xdb\xe3\x03\xde\x0d\x00\x24\xca\x4b\xe2\xbf\xf7\xfd\x1b\x29\x77\x6b\xee\xb0\xd6\x9e\x94\xfc\xc6\xde\x39\xd5\x4f\x76\x61\x3e\x3e\x03\x00\x00\xff\xff\xbc\xf0\x27\x66\x24\x01\x00\x00" func stakingcollectionScriptsGet_locked_tokens_usedCdcBytes() ([]byte, error) { return bindataRead( @@ -5559,11 +5370,11 @@ func stakingcollectionScriptsGet_locked_tokens_usedCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_locked_tokens_used.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0xc, 0xfb, 0x97, 0x66, 0x4b, 0x65, 0x92, 0x16, 0xae, 0xa2, 0x40, 0x46, 0xe3, 0xed, 0x54, 0x24, 0x26, 0x91, 0x9f, 0x43, 0x2, 0x56, 0xb6, 0x5e, 0x20, 0x64, 0xb9, 0x16, 0xd4, 0x6a, 0xd9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0x55, 0x1c, 0x5d, 0x49, 0x92, 0x47, 0x87, 0x1, 0x4f, 0xf1, 0x59, 0x54, 0x19, 0x4, 0xfd, 0x3e, 0xad, 0x96, 0xb8, 0x56, 0xac, 0xbe, 0xb, 0x44, 0xcf, 0xd1, 0xd, 0x52, 0xd3, 0x7b, 0xc7}} return a, nil } -var _stakingcollectionScriptsGet_machine_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xbb\x6a\xeb\x40\x10\x86\xfb\x7d\x8a\x1f\x37\x47\x82\x43\xd4\x0b\x4c\x30\x09\x09\x2e\x52\xb9\x0c\x29\x96\xd5\xac\x3c\x64\x35\x6b\x76\x46\xa4\x08\x7e\xf7\x60\x5d\x4c\x2e\xde\x72\xff\xdb\x37\x3c\x9c\x72\x31\x3c\xa5\xfc\x71\x30\xff\xce\xd2\x3f\xe4\x94\x28\x18\x67\x41\x2c\x79\xc0\xe6\xa6\xb6\x71\xae\x69\x1a\x3c\x93\x29\xec\x48\x18\x7c\x38\xb2\x10\x7c\x08\x79\x14\x83\xef\xba\x42\xaa\x88\xb9\xc0\x43\x4f\x14\x38\x72\x80\xe4\x8e\xa6\x20\x0b\xbc\xac\xee\x7f\x0a\x9d\x07\x10\xae\x0b\xce\xf9\x10\x48\xb5\xf2\x29\xd5\x88\xa3\x60\xf0\x2c\xd5\x12\x69\xb1\x9b\x17\xfe\x4f\x9d\xfb\xc7\x16\x07\x2b\x2c\x7d\x7d\x55\xee\xf1\xe9\x00\x20\x91\xad\x78\xbb\x39\xac\xd8\xde\xbe\xf8\xae\x27\x7b\xf9\x69\xad\x96\x4b\xda\x15\xb6\x76\x53\x2b\xc7\xa9\x78\xf9\xdc\x4b\xcc\xd8\xfe\x9e\x79\x9d\xd1\xde\x16\x90\xcb\x2b\x64\x63\x91\xef\xb1\xcb\xe6\x42\x5c\xd5\x93\xef\x0c\x4a\x4a\x7f\x43\xc2\x69\xd6\xdd\xd9\x7d\x05\x00\x00\xff\xff\x9e\xf8\xd0\x7c\xb8\x01\x00\x00" +var _stakingcollectionScriptsGet_machine_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcb\x6a\xf3\x30\x10\x85\xf7\x7a\x8a\xb3\xfb\x6d\xf8\xa9\xbb\x36\x84\x62\xec\x34\x98\xa6\x09\xd4\xd9\x95\x2e\x84\x3c\x72\x44\xe5\x51\x90\x64\x5a\x28\x79\xf7\x12\x5f\x42\x6f\x5a\x6a\xe6\x3b\xe7\x1b\xd3\x9f\x9c\x8f\xb8\xb7\xee\xad\x89\xf2\xd5\x70\x57\x3a\x6b\x49\x45\xe3\x18\xda\xbb\x1e\xb7\xef\xcd\xa1\x78\xa8\x77\x9b\x72\xbf\xdd\xae\xcb\x43\xbd\xdf\x15\x55\xf5\xb4\x6e\x1a\x21\xb2\x2c\xc3\x86\x62\x40\x3c\x12\x7a\xa9\x8e\x86\x09\x52\x29\x37\x70\x84\x6c\x5b\x4f\x21\x40\x3b\x0f\x89\x70\x22\x65\xb4\x51\x60\xd7\xd2\x08\x1a\x86\xe4\x65\xfb\x5f\x40\x98\xfa\xa1\xae\x02\x42\x48\xa5\x28\x84\x44\x5a\x9b\x42\x0f\x8c\x5e\x1a\x4e\x66\x24\x47\x31\x35\xfc\x1f\x33\xeb\x2a\x47\x13\xbd\xe1\x2e\xbd\x4e\xee\xf0\x21\x00\xc0\x52\x5c\xf4\x8a\x09\x0e\x58\xfd\x7d\xf4\x4d\x47\xf1\xf1\xfb\x6a\x32\x5f\x92\x2f\xb2\xa9\x18\x53\x8d\x1e\x83\xe7\xcf\x9a\xb5\xc3\xea\x67\xcd\xf3\xa4\xf6\x32\x8b\x5c\x9e\xa7\x38\x78\xfe\x8a\x5d\x3a\x67\xe3\x24\x1d\xf7\xce\x20\x1b\xe8\x37\xc4\xc6\x4e\x73\x71\x16\x9f\x01\x00\x00\xff\xff\x9d\xb0\x2b\xec\xbb\x01\x00\x00" func stakingcollectionScriptsGet_machine_account_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -5579,11 +5390,11 @@ func stakingcollectionScriptsGet_machine_account_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_machine_account_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0x37, 0x6c, 0xc0, 0xd6, 0xcf, 0x69, 0x48, 0xd, 0x1b, 0x78, 0xb0, 0x47, 0x86, 0x8c, 0x66, 0xc0, 0x20, 0x9d, 0x87, 0xc5, 0xac, 0x73, 0xe, 0xc2, 0xd4, 0xa, 0x90, 0x65, 0xf0, 0x84, 0xd5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcd, 0x8f, 0x46, 0xba, 0x65, 0x46, 0x78, 0xb3, 0x99, 0x41, 0x98, 0xc1, 0xf, 0xfc, 0x98, 0xff, 0x5e, 0x5f, 0xb5, 0x7, 0xfa, 0x87, 0xfb, 0xa2, 0xc, 0x78, 0xc4, 0x32, 0x64, 0xf8, 0x72, 0x93}} return a, nil } -var _stakingcollectionScriptsGet_machine_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xb1\x6a\xc3\x40\x10\x44\xfb\xfb\x8a\xc1\x4d\xa4\x26\xea\xd5\x99\x40\x42\x8a\x54\xfe\x82\xe5\xb4\x27\x1f\xb9\xdb\x0d\xb7\x2b\x52\x18\xff\x7b\xc0\xa7\x04\x02\x76\x3d\xf3\x1e\x33\xb9\x7e\x69\x73\xbc\x16\xfd\x3e\x39\x7d\x66\x59\x5f\xb4\x14\x8e\x9e\x55\x90\x9a\x56\x1c\xee\x66\x87\x10\xa6\x69\xc2\x1b\xbb\x81\x4a\x81\x9f\x19\x95\xe2\x39\x0b\x83\x62\xd4\x4d\x1c\xb4\x2c\x8d\xcd\xd8\x90\xb4\x41\x74\x61\xbb\x41\x59\x6e\xf5\xbd\xf6\x64\xb0\x6e\x47\xfc\xd3\x87\x40\x31\xb2\xd9\x40\xa5\x8c\x48\x9b\xa0\x52\x96\x61\x47\x66\x1c\xbb\x7a\x9c\x71\x39\x79\xcb\xb2\xce\xf7\x2f\x3c\x7f\xf4\x4d\xc7\x0e\xbe\x4b\xd2\x2b\x2e\x01\x00\x1a\xfb\xd6\xe4\x01\xb6\xb2\xff\x27\x6d\xd8\xdf\xcc\xbf\xbb\xc7\x70\x0d\x3f\x01\x00\x00\xff\xff\x0c\xe4\x1e\xac\x3e\x01\x00\x00" +var _stakingcollectionScriptsGet_machine_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xcf\x41\x4b\xc3\x40\x10\x05\xe0\xfb\xfe\x8a\x77\x33\xb9\x18\xcf\xb9\x85\xb4\x96\x60\x6d\xc1\xed\x1f\x58\x36\x93\x74\x71\x33\x2b\x3b\x13\x14\x4a\xff\xbb\xd0\x44\x41\xb0\xf7\xf9\xe6\xbd\x17\xa6\x8f\x94\x15\xcf\x31\x7d\x5a\x75\xef\x81\xc7\x36\xc5\x48\x5e\x43\x62\x0c\x39\x4d\x78\xfa\xb2\xa7\xe6\xa5\x3b\xec\xda\xe3\x7e\xbf\x6d\x4f\xdd\xf1\xd0\x6c\x36\x6f\x5b\x6b\x8d\xa9\xaa\x0a\x3b\x52\x81\x8b\x11\x7a\x26\x4c\xce\x9f\x03\x13\x9c\xf7\x69\x66\x85\xeb\xfb\x4c\x22\x24\x18\x52\x06\xa7\x9e\xe4\x86\x02\xdf\xce\xd7\xb3\x07\x81\x2c\xe1\xf0\xbf\xe9\xc6\x38\xef\x49\xa4\x70\x31\x96\x18\x66\xc6\xe4\x02\x17\x2b\xa9\xd1\x2c\xaf\xcb\x1a\x17\xab\x39\xf0\x58\xff\xbf\xe2\xf1\x75\xe9\xd4\x2c\xb0\xe3\x21\x5d\x71\x31\x00\x90\x49\xe7\xcc\x77\xd8\x48\xfa\x57\x4a\xb1\xae\xa9\x7f\x7a\x97\xe6\x6a\xbe\x03\x00\x00\xff\xff\xff\x6b\xed\x8a\x41\x01\x00\x00" func stakingcollectionScriptsGet_machine_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -5599,11 +5410,11 @@ func stakingcollectionScriptsGet_machine_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_machine_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4d, 0xfe, 0x63, 0x34, 0x4a, 0x68, 0xf3, 0x2f, 0xff, 0x43, 0xd0, 0xd2, 0xc7, 0x57, 0x2b, 0x2b, 0x9c, 0x1a, 0xd4, 0x96, 0xa0, 0x2e, 0xd8, 0x3a, 0x13, 0x78, 0x34, 0xf8, 0x39, 0x65, 0x45, 0x91}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1d, 0x6a, 0xbe, 0x29, 0xa6, 0xa0, 0x51, 0x4a, 0x89, 0x9a, 0x12, 0xc, 0xa3, 0xfa, 0xf4, 0xa0, 0xde, 0x2b, 0xea, 0x41, 0x35, 0xba, 0xaa, 0x3b, 0x8c, 0xed, 0xa3, 0xe5, 0x3a, 0x7c, 0xb4, 0xf2}} return a, nil } -var _stakingcollectionScriptsGet_node_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\xc4\x40\x10\x85\xfb\xfd\x15\x8f\xab\x2e\x8d\xe9\xaf\x13\x0f\x21\x8d\x85\x29\xc5\x62\xd8\x9d\xc4\xc5\xcd\x8c\xcc\x4c\x10\x11\xff\xbb\x90\x88\xd7\xa4\xfb\x78\x0f\xbe\xf7\xea\xf2\xa1\x16\x78\x6c\xfa\x39\x06\xbd\x57\x99\x1f\xb4\x35\xce\x51\x55\x30\x99\x2e\x38\x1d\x76\xa7\x94\xfa\xbe\xc7\x33\xc7\x6a\xe2\x20\x01\x99\xd1\x17\x74\x02\xb5\x86\x78\x63\x88\x16\xc6\x70\x75\x78\xa8\x71\x41\x95\x2d\xf6\x5d\x85\xfc\xef\x4a\x89\x72\x66\xf7\x33\xb5\xd6\x61\x5a\x05\x0b\x55\x39\x53\x29\xc6\xee\x17\xdc\xef\xd0\x5d\xf0\x32\x86\x55\x99\x5f\xf1\x9d\x00\xc0\xb6\xf5\xe3\xf3\x77\x33\xc7\x93\x16\x1e\xae\x7e\x33\xfd\x41\x97\x7e\x7e\x03\x00\x00\xff\xff\x44\x15\x32\xea\xf8\x00\x00\x00" +var _stakingcollectionScriptsGet_node_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4e\xc3\x40\x0c\xc6\xf1\xfd\x9e\xe2\x1b\x9b\x85\x30\x77\x8b\x92\x82\x22\xaa\x54\x6a\xba\x21\x06\x2b\xe7\x84\x13\x17\x1b\xd9\x57\x01\x42\xbc\x3b\x52\x8b\x60\x61\xfb\xcb\x83\x7f\x5f\x5a\x5f\xd5\x0a\xee\xb2\xbe\x8d\x85\x5e\x92\x2c\xad\xe6\xcc\x53\x49\x2a\x98\x4d\x57\xdc\xbe\x8f\xa7\xe6\xa1\x1f\xee\xdb\xc3\x7e\xbf\x6b\x4f\xfd\x61\x68\xba\xee\xb8\x1b\xc7\x10\xea\xba\xc6\x91\xcb\xd9\xc4\x41\x02\x32\xa3\x0f\xe8\x0c\xca\x19\xe5\x99\x21\x1a\x19\x7d\xe7\xf0\xa2\xc6\x11\x49\x2e\x67\xbf\x4a\x98\x7e\xa9\x10\x68\x9a\xd8\x7d\x43\x39\x57\x98\xcf\x82\x95\x92\x6c\x28\x46\x63\xf7\x2d\x9a\x6b\x54\x5b\x3c\x8e\xc5\x92\x2c\x4f\xf8\x0c\x00\x60\x17\xfd\xff\xfd\x37\x0b\x97\x41\x23\xf7\x9d\xff\x7d\xfa\x89\x2a\x7c\x7d\x07\x00\x00\xff\xff\xf5\x67\xa5\x8f\xfb\x00\x00\x00" func stakingcollectionScriptsGet_node_idsCdcBytes() ([]byte, error) { return bindataRead( @@ -5619,11 +5430,11 @@ func stakingcollectionScriptsGet_node_idsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_node_ids.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0xee, 0x46, 0xe2, 0xae, 0x7, 0xfa, 0x85, 0xe4, 0x58, 0x3f, 0xf4, 0xc3, 0x68, 0x7, 0xe9, 0x24, 0x83, 0xe2, 0x7, 0x84, 0x8a, 0x19, 0x96, 0xe7, 0x17, 0x22, 0xf9, 0x37, 0x5e, 0x4c, 0xf9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0xfd, 0x4f, 0x8d, 0xf6, 0x55, 0xfd, 0x4f, 0xd3, 0x4f, 0x3f, 0xdb, 0xa5, 0xe6, 0x88, 0x9c, 0x1e, 0x89, 0x5a, 0x40, 0x58, 0x4, 0xb6, 0x29, 0x7d, 0xfe, 0x9a, 0x0, 0x29, 0x77, 0x34, 0x6b}} return a, nil } -var _stakingcollectionScriptsGet_unlocked_tokens_usedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x31\x6e\xc3\x30\x0c\x45\x77\x9d\xe2\x23\x93\xbd\xd4\x4b\xd1\xc1\x5b\x51\xc0\x17\x68\x7c\x00\x41\x62\x1c\xc1\x34\x59\x88\x14\xd2\xa2\xe8\xdd\x8b\x26\x29\xb2\x78\x7e\xe0\xe3\xfb\x65\xfb\xd0\xea\x98\x58\x2f\xef\x1e\xd7\x22\xcb\x9b\x32\x53\xf2\xa2\x82\x53\xd5\x0d\x87\x5d\x76\x08\x61\x18\x06\x1c\x89\xd9\x70\xd6\x0b\xb6\x28\x5f\x68\xc2\x9a\x56\xca\x70\x5d\x49\x0c\x7e\x26\xc4\x94\xb4\x89\xa3\x18\x9a\x15\x59\xae\x77\x93\xd6\x3f\x58\x09\x76\x33\x23\x3d\xde\x8a\x66\x32\x44\xc9\xc8\xc4\xb4\x44\xd7\x6a\x21\xc4\x94\xc8\xac\x8b\xcc\x3d\x4e\x4d\xb0\xc5\x22\xdd\x5d\x3e\xe2\x35\xe7\x4a\x66\xfd\x88\x79\x2a\x9f\x2f\xcf\xf8\x0e\x00\x50\xc9\x5b\x95\xfd\x79\x4f\x0b\xf9\x7c\x0f\x3e\x5e\x7b\x67\xa3\xdc\xc5\x9b\x69\xfc\x0f\xef\xc3\x4f\xf8\x0d\x00\x00\xff\xff\x31\xdc\x37\x2c\x26\x01\x00\x00" +var _stakingcollectionScriptsGet_unlocked_tokens_usedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4a\xc3\x40\x10\x86\xef\xfb\x14\xff\xb1\xb9\x18\x0f\xe2\x21\xb7\x90\x36\x52\x2c\x2d\x98\xe4\x01\x96\xdd\x69\xba\x64\x33\x23\x3b\x1b\x5a\x11\xdf\x5d\x6c\x2b\x5e\x3c\x0f\xf3\x7d\xdf\x1f\xe6\x77\x49\x19\x6d\x94\x73\x97\xed\x14\x78\x6c\x24\x46\x72\x39\x08\xe3\x98\x64\xc6\xe3\xa5\xeb\xeb\xd7\xed\xfe\xa5\x39\xec\x76\x9b\xa6\xdf\x1e\xf6\xf5\x7a\xfd\xb6\xe9\x3a\x63\xca\xb2\x44\x4f\x31\x2a\x4e\x72\xc6\x6c\xf9\x03\x0b\x47\x71\x13\x79\x64\x99\x88\x15\xf9\x44\xb0\xce\xc9\xc2\x19\x41\xb1\x68\xe0\xf1\xfa\xd7\x4a\xfa\x39\x26\x82\xde\xc4\x70\x7f\x66\x16\x4f\x0a\xcb\x1e\x9e\x22\x8d\x36\x4b\x52\x63\xac\x73\xa4\xba\xb2\x31\x16\x38\x2e\x8c\xd9\x06\x5e\xdd\xe1\x15\x6a\xef\x13\xa9\x16\x15\x86\x36\x5c\x9e\x9f\xf0\x69\x00\x20\x51\x5e\x12\xff\xbf\xf0\x61\xa4\x3c\xdc\x83\xfb\x6b\xef\xa0\xe4\x57\xf6\x46\xaa\x7e\xc3\x0b\xf3\x65\xbe\x03\x00\x00\xff\xff\x5a\xed\xf9\x46\x29\x01\x00\x00" func stakingcollectionScriptsGet_unlocked_tokens_usedCdcBytes() ([]byte, error) { return bindataRead( @@ -5639,11 +5450,11 @@ func stakingcollectionScriptsGet_unlocked_tokens_usedCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_unlocked_tokens_used.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x6b, 0x4a, 0x39, 0xdc, 0x90, 0x32, 0xaf, 0x58, 0x89, 0x48, 0x1d, 0x77, 0x1, 0x5, 0x8f, 0xe8, 0xf2, 0xc2, 0x68, 0xf, 0x44, 0xda, 0x36, 0x67, 0x13, 0x46, 0xf, 0x2a, 0x1c, 0x6d, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x24, 0x34, 0x15, 0x3b, 0xc2, 0x85, 0xed, 0x99, 0x3, 0xda, 0x7d, 0x70, 0xad, 0x34, 0x1f, 0x5a, 0xcb, 0xe5, 0x52, 0xa3, 0x85, 0x9b, 0xc7, 0x8d, 0x9a, 0xed, 0xcf, 0x24, 0xd0, 0xb5, 0x3c, 0xda}} return a, nil } -var _stakingcollectionSetup_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xdf\x4f\xfb\x36\x10\x7f\xcf\x5f\x71\xf4\x81\x25\x52\x9b\xbe\x57\x85\xef\xb6\x7e\x35\x0d\x69\x1a\x68\x20\xf6\x7c\x4d\x2e\x8d\x57\x63\x47\xb6\xd3\x08\x21\xfe\xf7\xc9\xce\x4f\x37\x29\x74\x30\x0d\x69\x7e\x20\xd4\xbe\x5f\x9f\xfb\xf8\xce\xc7\x9e\x0a\xa9\x0c\xfc\x52\x8a\x1d\xdb\x72\x7a\x90\x7b\x12\x90\x29\xf9\x04\x33\x6f\x6f\x16\xb4\x92\x5c\x56\x9e\x54\xfb\xdb\x93\xb8\xf9\xfe\x80\x5b\x4e\xf7\x06\xf7\x4c\xec\x06\xa2\xfe\x41\xa7\xf3\x9b\x4c\xf6\x94\x3a\x3b\xba\x91\x1e\x6e\x79\xb6\x1b\xdd\x8d\xe4\x9c\x12\xc3\xe4\x30\x92\xd1\xd9\x2c\x08\x96\xcb\x25\x3c\xe4\x4c\x83\x51\x28\x34\xd6\x2a\x9a\x8c\x86\xb2\x00\x14\x80\x49\x22\x4b\x61\xc0\x48\x28\x35\x01\x82\x6e\xa2\x4e\x3a\x2b\xce\xc6\x8d\x81\x8a\x71\x0e\x95\x54\x7b\x50\xb4\x43\x95\x72\xd2\x1a\x64\x06\x55\x4e\x26\x27\x05\x26\xa7\x67\xc8\xf1\x60\xad\x28\xda\x95\x1c\x55\x6b\x7e\x0e\x08\xa6\x92\x8b\xd6\x1b\x77\xf0\xc0\xd4\x90\x35\x99\xb2\x98\x3b\x37\x52\x75\x01\xc8\xed\x5f\x94\x18\x0d\xda\x48\x45\x29\x30\x61\x1d\x40\x29\x1a\xdd\xc6\x54\x10\x0c\x81\xbd\x04\x00\x00\x85\xa2\x02\x15\x85\x9a\xed\x04\xa9\x15\x60\x69\xf2\xf0\x67\xa9\x94\xac\x1e\x91\x97\x34\x87\x7b\x23\x15\xee\x68\x0e\x1b\x2c\x70\xcb\x38\x33\x8c\x74\x04\x97\x3f\xd5\x46\x23\x78\x09\x9c\x25\xbb\x2c\xf8\xcc\xfa\x56\x04\x4c\x8b\x1f\x0c\x20\x57\x84\xe9\xf3\x74\xb2\x5a\x35\x96\x41\xed\x3f\xd6\xb5\xb3\x78\xeb\x22\x58\x5f\x4e\x52\x15\x8f\x76\xae\x43\xcb\xec\x6a\x9a\xf5\xb1\x78\x03\xe9\x0e\x4d\x1e\xc1\xd5\x15\x08\xc6\x87\x28\x1a\x24\x1b\x45\x68\x08\x0a\xc5\x0e\xf6\x9b\x0c\xe0\x43\x26\x1d\x87\x35\x2b\x90\x4b\x9e\x92\x02\x14\x69\x9f\xf3\x03\x96\xdc\x78\x26\x39\xb5\x64\xfe\x5a\xcb\x5f\xb5\xa8\x87\xa6\xbb\x14\x30\xad\x4b\x5a\x3b\x3e\xbc\x02\x8b\xff\x64\x26\x4f\x15\x56\x73\xaf\x18\x62\xf7\xb9\x2d\x48\xa1\x85\x68\x19\x1a\x1f\xd7\x8e\xaf\xc3\x53\x27\xc3\xc4\x5c\x8c\x82\xcf\xba\x8a\xfe\x64\xe4\x11\x5c\x76\xdd\x20\x7e\xb4\x89\xba\x0e\x97\x8d\xf6\xb2\xf3\xe2\x0e\xa2\x8b\x53\xbc\x20\x08\xaa\xa0\x6d\x1c\x83\x22\xb7\x34\x14\xa5\x01\x66\x6c\x21\x34\x66\x3d\x23\x2c\xf3\x88\x88\x93\x9c\x92\x7d\x18\x35\x25\x31\x5c\x47\xd7\x52\xe3\x81\xc2\x91\x90\x5d\xeb\xc5\x89\xcb\x97\xb8\x68\x47\xfb\xd3\x56\xec\x6a\x6f\x90\x83\xbf\xea\x93\x3e\x3f\xa9\x61\x7a\x02\x57\x1e\xb0\x49\x8d\x68\xda\x90\x91\x1f\x29\x9f\x91\xa9\xc8\xdb\x79\x05\xe2\x9a\xfe\x17\x79\x15\x8c\x7f\x7d\x3a\x47\xb5\x70\x57\x6e\x39\xd3\x39\x60\xdf\x9e\x9e\xed\xfb\x64\x7b\x53\x9d\xa1\x74\xa2\xf1\xc6\xa3\xd2\xd6\xc7\x41\x6d\xb0\x38\xab\xca\xcf\xef\xd0\x23\x6c\x9f\x4c\x4f\xe4\x27\x63\x2a\xd4\xa2\xce\xce\xd8\xf5\x14\xdc\x31\x8f\x68\xce\xe6\xd0\xf1\x90\x4c\xc4\x38\x41\xdd\x72\x09\xf5\xf3\xe6\xde\xfe\x8c\x14\x89\x84\x5a\xd2\xde\x78\x25\x2d\x4f\xfd\xf6\x1f\x94\xf5\x04\xfd\xf7\xcf\xa6\x07\xf3\xdb\x37\x28\x50\xb0\x24\x9c\x6d\x64\xc9\x53\x10\xd2\xb4\x10\xc7\x78\x7a\xcc\xb3\xe8\xd4\xe4\x60\x9b\xbb\x4c\xeb\x6c\x90\x6a\xc6\x9b\x76\xac\xe9\xe6\xa4\xbe\xc9\xbf\x93\xb9\xb7\xe7\x0b\x7f\xd2\x8c\x7f\x97\xa9\xfb\xdf\xbe\x93\x7d\x7a\x4e\x0a\x79\xb3\xc4\x45\x3b\x4b\x1c\xd7\x97\x43\xb3\x5e\x1c\x87\xc1\x25\xa6\xeb\x1f\xff\xdd\x20\xfc\x77\xdb\xbb\x30\x31\xa6\xa9\x55\xba\x75\xf9\x0c\xd7\x0b\x1b\xd6\x1c\x9e\x30\xc9\x99\xa0\x66\xa0\xbb\x11\x99\x74\xed\xee\xd4\xe5\xf5\x79\x4a\x89\xd3\x0e\x8d\xfc\x02\x96\xbe\xb7\xae\xdf\xc8\x51\x27\x73\x1e\x4f\x3d\x9a\x7f\x48\xd6\x87\x63\x79\x87\xae\x4e\xa7\xe3\xac\x0b\x71\xc8\x4f\xfd\xf7\x35\xf8\x3b\x00\x00\xff\xff\x2f\x57\xf5\xcc\xa6\x0d\x00\x00" +var _stakingcollectionSetup_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\x4f\x6f\xfa\x38\x10\xbd\xf3\x29\xa6\x1c\xba\x41\xe2\xcf\x9e\x11\x6d\x17\x01\xbb\x8b\x8a\x4a\x55\xd0\xde\x4d\x32\x49\xbc\xb8\x76\x64\x3b\xb0\x55\xc5\x77\x5f\x39\x8e\x93\xb8\x40\x4b\xab\xaa\x3f\x0e\xa5\xc4\xf3\xe7\xbd\x37\xe3\x99\xd0\xe7\x4c\x48\x0d\x7f\xe6\x3c\xa1\x1b\x86\x6b\xb1\x45\x0e\xb1\x14\xcf\xd0\xf6\x9e\xb5\x5b\xce\x92\x89\xbd\x67\xe5\x7e\x7b\x16\xf3\xe9\x9a\x6c\x18\xae\x34\xd9\x52\x9e\x34\x4c\xfd\x83\xca\x67\x21\xc2\x2d\x46\x45\x1c\x65\xad\x7f\xff\x6f\xb1\x9c\xdc\xcf\xa6\xeb\xe5\xfd\xec\x61\x3c\x9d\x3e\xcd\x56\xab\x66\x86\x32\xc2\x44\x30\x86\xa1\xa6\x82\x3b\xb7\xd5\x7a\x7c\x3f\x7f\xf8\x6b\xb2\x5c\x2c\x66\x93\xf5\x7c\x59\x39\xb7\x06\x83\x01\xac\x53\xaa\x40\x4b\xc2\x15\xb1\x5e\x0a\xb5\x82\x3c\x03\xc2\x81\x84\xa1\xc8\xb9\x06\x2d\x20\x57\x08\x04\x54\x09\x3f\xac\x92\x14\x31\xe6\x1a\xf6\x94\x31\xd8\x0b\xb9\x05\x89\x09\x91\x11\x43\xa5\x40\xc4\xb0\x4f\x51\xa7\x28\x41\xa7\xf8\x02\x29\xd9\x99\x28\x12\x93\x9c\x11\xe9\xc2\x77\x81\x80\xde\x8b\x9e\xcb\xc6\x0a\xea\xa0\x2d\x77\x85\x3a\xcf\xba\x45\x1a\x21\x2b\x00\x62\xf3\x2f\x86\x5a\x81\xd2\x42\x62\x04\x94\x9b\x04\x90\xf3\xd2\xb7\x0c\xd5\x6a\x35\x89\xbd\xb6\x00\x00\x32\x89\x19\x91\x18\x28\x9a\x70\x94\x43\x18\xe7\x3a\x1d\x5b\xf3\x0e\xbc\xb6\x0a\x1b\xf3\x31\xb4\x62\x13\x55\x22\x50\xc5\x7f\xd3\x40\x98\x44\x12\xbd\x9c\x96\xc1\xb9\xd1\x18\x6c\xe4\xfe\x46\x48\x29\xf6\xa3\xeb\x93\xb5\xe9\x1f\x3d\xb9\x0d\x4c\xb9\x86\xa7\x4b\x79\x6c\xbe\xd2\x42\x92\x04\x1f\x89\x4e\x3b\x70\x73\x03\x9c\xb2\x26\xfa\x92\xc1\x44\x22\xd1\x08\x99\xa4\x3b\xf3\x1d\x92\x8c\x6c\x28\xa3\x9a\xa2\x82\x58\x14\x55\xb1\x3a\x43\x2a\x58\x84\x12\x08\x8f\x6a\x15\x77\x24\x67\xda\x0b\xc9\xd0\x95\xe7\x6f\x6b\x7f\xe3\xd8\x32\xca\xb7\xa3\xeb\x66\xd7\xf6\x8b\x2f\x6b\x77\x1b\x0c\x4a\x0c\x83\xd8\x5d\x0f\x7b\xd2\x05\x4d\x64\x82\x7a\x08\xe7\x7c\x9b\x4c\xaf\x8e\xd0\x54\xe1\xde\x42\xa9\xae\x61\xff\x1f\x43\xe3\x14\x82\xe2\xa0\x06\x30\x50\x36\xd3\x1b\x83\x37\x49\xcf\x48\x4c\x80\xe3\x1e\xdc\xf5\x6e\x5c\x42\xa3\x68\x96\x6b\xa0\xda\x74\x69\x99\xc2\x0b\x42\x63\x4f\xd3\x7e\x98\x62\xb8\x0d\x3a\x65\xbf\x36\x3f\x25\x41\x45\x76\x18\x8c\x7a\xa7\x3b\x25\x2c\xf0\x1c\x3d\x0f\x5c\x55\x0b\x4e\xc3\x5a\xb7\xae\x6d\x00\x9b\x7b\xe8\x21\xe9\x98\xb3\x2f\x75\xa4\x87\xfc\x00\xc8\x14\xfe\x1a\x3a\x9c\xb2\xef\x62\x71\xee\x72\x11\xc8\xf2\x0d\xa3\x21\x98\xbe\x33\xa3\xd2\x5c\xaa\x77\x26\x44\x83\x79\xdd\xa9\x17\x20\x7b\xbd\xd0\xee\xb1\x40\x73\xb8\x0d\x8e\xf4\xfe\x54\x00\xa3\x40\xf7\x28\x84\xbb\x2b\x9f\x57\xd3\x0b\x55\x4b\x7b\xf0\x26\xae\x9d\x99\xc5\x8a\x88\x51\x22\x0f\xf1\x02\x41\xcd\x18\xa8\x1f\x3f\x61\x5c\x8f\x82\x9f\x9b\xc1\x1e\xbd\xbb\x3b\xc8\x08\xa7\x61\xd0\x9e\x88\x9c\x45\xc0\x85\x76\xd4\x8e\x79\xd4\x5c\xdb\x9d\x73\xeb\xc7\x8c\x17\x11\x59\x15\x50\x96\xdb\xcf\x6d\xbd\x6a\x8d\xd6\x63\xe6\x03\xc5\x4e\x2f\x29\xff\x4d\xa4\xff\x20\xa2\xe2\x7f\x33\xbd\x6b\x59\xce\x1a\x79\x0b\xe9\xca\x2d\xa4\xa6\x2a\xa6\x4e\x05\x8b\x51\xaf\xba\x00\x82\x44\xa3\x3f\xbe\x37\xb9\x3f\xae\xbd\xc6\xe8\x93\x28\x32\x4e\xcb\x42\xbf\x60\xd4\x33\x70\xba\xf0\x4c\xc2\x94\x72\x2c\xdf\x02\xe6\x3c\x16\x76\x70\x9c\x69\x52\xbf\x2e\x11\x32\x4c\x88\x16\x3f\x58\x95\xa9\x4b\xf9\x8e\x36\x95\xcd\x65\x75\xa9\x59\x5c\x58\x9c\x2f\x63\xf8\xa0\x3c\x95\x4f\x55\xa3\x0a\x5a\xb3\x1e\xf6\xef\xa1\xf5\x7f\x00\x00\x00\xff\xff\xcc\xf4\x53\x3b\xae\x0b\x00\x00" func stakingcollectionSetup_staking_collectionCdcBytes() ([]byte, error) { return bindataRead( @@ -5659,11 +5470,11 @@ func stakingcollectionSetup_staking_collectionCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/setup_staking_collection.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc6, 0x8f, 0xd5, 0x44, 0x8b, 0x79, 0x97, 0x70, 0x5e, 0x2a, 0xd, 0xcd, 0x70, 0xb3, 0x50, 0xdb, 0x48, 0xaa, 0x31, 0xa6, 0xeb, 0xb3, 0x2, 0xb6, 0xeb, 0xdf, 0xee, 0xac, 0xe2, 0x1e, 0xd1, 0x58}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x62, 0xb3, 0x3c, 0x8d, 0x5e, 0x2b, 0xf5, 0xf1, 0xf, 0x0, 0x56, 0xad, 0xa3, 0x6b, 0xdc, 0x90, 0xb2, 0xe8, 0x7a, 0x21, 0x16, 0x99, 0x26, 0x66, 0xa8, 0x9e, 0x57, 0x5c, 0x25, 0x4e, 0x2d, 0x9c}} return a, nil } -var _stakingcollectionStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6f\xdb\x30\x0c\x85\xef\xfe\x15\x0f\x39\x74\x09\x10\x24\xc0\x36\xec\x10\x6c\x0b\xb6\x0c\x05\x7a\xd9\x86\xa5\xdd\x5d\xb5\xe9\x44\x88\x2c\x1a\x14\x3d\xa7\x18\xfa\xdf\x07\x49\x75\x52\x34\x3e\xec\x52\x1d\x2c\x9b\xa2\x1f\x1f\xa9\xcf\x36\x2d\x8b\xe2\xda\x71\xbf\x55\x73\xb0\x7e\xb7\x61\xe7\xa8\x54\xcb\x1e\xb5\x70\x83\xc9\xe8\xd9\xa4\x28\x96\xcb\x25\x36\xdc\x34\x56\x03\x3c\xf5\x50\x3e\x90\x0f\x50\x46\x50\x73\x20\xd4\x2c\xd0\x3d\x21\xb4\x54\xda\xda\x52\x05\xcf\x15\x81\x05\x15\x39\xda\x19\x65\x81\xf5\x39\x25\xcb\xa3\x3c\xe9\x27\xf5\xdb\x3d\x0d\xaa\xc9\x4a\x4c\x75\x5c\x1e\xa8\xc2\x1f\xd3\x39\x85\x11\x42\x17\xa8\x42\x6d\x25\xe8\x1c\xb6\x86\x55\xd0\xd1\x06\x0d\x49\xa1\x66\xe7\xb8\xa7\x0a\xf7\x0f\xe9\xef\x97\x6a\x9d\x7f\xae\x57\x14\x2a\xc6\x07\x93\x1c\x4c\xa3\xdb\x9b\x6f\x2b\x6c\x55\xac\xdf\xcd\xcf\xae\x63\xf0\xee\xc6\xeb\xbb\xb7\xeb\x39\x4c\xc3\x9d\xd7\x15\xee\xae\xed\xf1\xc3\xfb\x19\xfe\x16\x00\x90\x1e\x8e\x74\xe8\xec\x3c\xb8\x5f\x54\xaf\x60\x3a\xdd\x4f\x47\xe7\xba\x38\xbf\xfe\xe8\x3d\xc9\x0c\x57\xe3\x79\x17\x91\x22\xd5\x6c\x85\x5a\x23\x34\x35\x65\x99\x7d\xa5\x52\x5f\x59\x84\xfb\xdf\xc6\x75\x34\xc3\xd5\x97\x7c\x36\x78\x8d\x2b\x90\xab\x17\x63\x5e\xf1\x09\x4f\x52\x8b\xa0\x2c\x66\x47\x8b\xfb\x24\xf6\xf1\x35\x7a\xf8\x3c\x8d\x37\xb3\x1a\xc7\xf1\x32\x7d\x9b\x1d\xfd\x34\xba\x9f\x9d\x5a\x89\x6b\xbd\x46\x6b\xbc\x2d\xa7\x93\x0d\x77\x2e\x82\xa7\xc8\xb6\x61\x20\x54\x93\x90\x2f\x23\x0d\x30\xb8\xc4\xfe\x09\xca\x56\x6c\x63\xe4\x21\x02\x26\x6f\xc2\x30\x86\x49\xae\xf4\x98\xc7\x4d\x47\x2a\x3b\xa5\xff\x99\x64\x0a\xd2\x77\xea\x6f\x13\x83\x27\xbc\xf2\xfe\x02\xaf\x67\x1f\x67\xc4\xf2\x3e\xd4\x7f\x2c\xfe\x05\x00\x00\xff\xff\x19\x9a\x91\xbf\xbc\x03\x00\x00" +var _stakingcollectionStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xc1\x6a\x1b\x31\x10\x86\xef\xfb\x14\x3f\x39\x14\x07\x8c\x5d\xda\xd2\x83\x69\x6b\xcc\x3a\x29\xa6\xc1\x29\x59\xe7\x01\x94\xdd\x91\x2d\xac\xd5\x2c\xd2\x6c\xd7\xa5\xe4\xdd\xcb\x4a\x59\x3b\xc4\x3e\x44\x07\x09\x0d\xa3\xef\xff\x35\x33\xa6\x6e\xd8\x0b\x6e\x2d\x77\x85\xa8\xbd\x71\xdb\x9c\xad\xa5\x52\x0c\x3b\x68\xcf\x35\x3e\x1e\x8a\xcd\xe2\xd7\x6a\xfd\x33\xbf\xbf\xbb\xbb\xc9\x37\xab\xfb\xf5\x62\xb9\x7c\xb8\x29\x8a\x2c\x9b\x4e\xa7\xc8\xb9\xae\x8d\x04\x38\xea\x20\xbc\x27\x17\x20\x8c\x20\x6a\x4f\xd0\xec\x21\x3b\x42\x68\xa8\x34\xda\x50\x05\xc7\x15\x81\x3d\x2a\xb2\xb4\x55\xc2\x1e\xc6\xa5\x94\xa4\x8e\xf2\x28\x1f\xe9\x9b\x1d\x0d\xd4\xe8\xa6\x4f\xb5\x5c\xee\xa9\xc2\x1f\xd5\x5a\x81\xf2\x84\x36\x50\x05\x6d\x7c\x90\x31\x8c\x86\x11\xd0\xc1\x04\x09\x91\xa0\xd9\x5a\xee\xa8\xc2\xd3\xdf\xf8\xfa\x2d\xad\x75\xaf\x79\x59\x26\x5e\xb9\xa0\xa2\x83\x51\xef\x76\xb5\x9c\xa1\x10\x6f\xdc\x76\x7c\x72\xdd\x07\x1f\x57\x4e\x3e\x7f\x9a\x8f\xa1\x6a\x6e\x9d\xcc\xf0\x78\x6b\x0e\x5f\xbf\x5c\xe3\x5f\x06\x00\x71\xb3\x24\xc3\xcf\x4e\x75\x7d\x20\x3d\xc3\x87\x8b\x25\x9f\x9c\x45\xb2\xc8\x69\x3c\x35\xca\xd3\x48\x95\x65\xd2\x5a\xb4\xb2\x5b\xa4\xcb\x20\xd8\xaf\x40\x56\x4f\x2e\x09\xe2\x3b\x5e\xde\x4e\x9e\xd8\x7b\xee\xbe\xbd\xd7\xc0\x8f\x51\x5f\xaa\xd9\xe5\x11\x39\x4f\x2f\x84\xbd\xda\xd2\x6f\x25\xbb\xeb\xa3\xad\x7e\xcd\xe7\x68\x94\x33\xe5\xe8\x2a\xe7\xd6\xf6\x93\x20\x48\x56\xe0\x49\xf7\x33\x73\xc6\xba\x4a\x84\xe7\x54\x03\x3a\x50\xd9\x0a\xbd\xe7\xb7\x31\x48\x6b\xea\x36\xb1\xd9\xc7\x3e\xa6\xf3\x4d\x1f\x5f\x5d\x4e\xbd\x4c\xe7\xa0\xff\x9c\xfd\x0f\x00\x00\xff\xff\xec\x54\xa2\x45\x28\x03\x00\x00" func stakingcollectionStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5679,11 +5490,11 @@ func stakingcollectionStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x9a, 0xc7, 0x41, 0xbc, 0xe4, 0x74, 0x85, 0x15, 0x98, 0x99, 0xf, 0x7e, 0xfb, 0xc8, 0x6a, 0x9e, 0x96, 0x5b, 0xb6, 0x66, 0x12, 0x17, 0x77, 0x7b, 0xc3, 0x9e, 0x10, 0x6e, 0xc6, 0xe5, 0x3e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd, 0x83, 0x37, 0x9f, 0xaa, 0xc4, 0x87, 0xda, 0x7e, 0xaf, 0x41, 0x49, 0xd3, 0xe, 0xac, 0xd, 0xa9, 0xb8, 0x16, 0xce, 0xbc, 0x57, 0xa0, 0x71, 0x8c, 0xf3, 0x87, 0x9c, 0x2e, 0xdc, 0x1e, 0x31}} return a, nil } -var _stakingcollectionStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x8f\xd3\x30\x10\x85\xef\xf9\x15\x4f\x3d\x2c\xa9\xb4\x6a\x25\x40\x1c\x2a\xa0\x82\xa2\x95\xf6\x04\xda\xb2\xdc\x07\x67\xd2\x5a\x75\x3c\xd1\x78\xa2\x2e\x42\xfb\xdf\x51\xe2\xb6\x41\x34\x07\x2e\xeb\x43\x1c\x8f\xc7\xf3\xde\x8c\x3e\xdf\xb4\xa2\x86\xbb\x20\xc7\xad\xd1\xc1\xc7\xdd\x46\x42\x60\x67\x5e\x22\x6a\x95\x06\xb3\xc9\xbb\x59\x51\x2c\x97\x4b\x6c\xa4\x69\xbc\x25\x28\x1f\x49\x2b\xae\x60\x72\xe0\x98\x60\x82\x64\x74\x60\xd4\xa2\xb0\x3d\x23\xb5\xec\x7c\xed\xb9\x42\x94\x8a\x21\x8a\x8a\x03\xef\xc8\x44\xe1\x63\x4e\xc9\x1a\x70\x17\x91\xa2\x30\xa5\x98\x68\x38\x94\xfd\xc3\xfb\x2f\x2b\x6c\x4d\x7d\xdc\xdd\x8e\x05\xfa\xe0\xe3\x7d\xb4\x37\xaf\xd7\xb7\xa0\x46\xba\x68\x2b\x3c\xde\xf9\xa7\x77\x6f\xe7\xf8\x5d\x00\xc0\xf0\x09\x6c\x67\x91\xb1\x91\x07\xae\x57\xa0\xce\xf6\xe5\x64\x9f\x8b\xf1\xf7\xeb\x31\xb2\xce\x71\x33\x9d\x77\x15\x29\x06\xcd\x56\xb9\x25\xe5\x92\x9c\xcb\xbe\x06\xa9\xcf\xa2\x2a\xc7\x1f\x14\x3a\x9e\xe3\xe6\x53\xbe\x3b\x7b\xed\x57\xe2\x50\x2f\xa6\xbc\xe2\x03\x4e\xa5\x16\xc9\x44\x69\xc7\x8b\x9f\x43\xb1\xf7\x2f\xd1\xc3\xc7\xb2\x47\x60\x35\x8d\xc7\x75\xfa\x36\x3b\xfa\x46\xb6\x9f\x5f\x5a\xe9\xd7\x7a\x8d\x96\xa2\x77\xe5\x6c\x23\x5d\xe8\x19\x30\x64\xdb\x20\x28\xd7\xac\x1c\x1d\xf7\xd4\x10\xae\x31\x3c\xf1\xd1\xaa\x6f\x48\x7f\xa1\x4b\xac\xaf\xd2\x79\x0c\xb3\xac\xf4\x9c\xc7\xcd\x4f\xec\x3a\xe3\xff\x99\xe4\x10\xe4\x87\x13\xb8\xdf\x07\x6e\x2f\x8c\xe5\xfd\x1f\xc6\xfe\x3a\x8c\x9c\xe5\xfd\x6c\xe2\xb9\xf8\x13\x00\x00\xff\xff\x2f\x51\xad\x1c\x51\x03\x00\x00" +var _stakingcollectionStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xdd\xca\xda\x40\x10\xbd\xcf\x53\x1c\xbc\x28\x11\x44\x4b\x5b\x7a\x11\xda\x4a\x88\x5a\x42\x45\x8b\xd1\x07\xd8\x26\x93\xb8\x98\xec\x84\xcd\x04\x85\xe2\xbb\x7f\x24\xeb\xcf\xc7\xa7\x17\xee\xc5\x2e\x33\xec\x9c\x73\x66\xce\xe8\xaa\x66\x2b\x58\x94\x7c\x4c\x44\x1d\xb4\x29\x22\x2e\x4b\x4a\x45\xb3\x41\x6e\xb9\xc2\xe7\x53\xb2\x0d\xff\xc4\xab\xdf\xd1\x7a\xb9\x9c\x47\xdb\x78\xbd\x0a\x67\xb3\xcd\x3c\x49\x3c\x6f\x32\x99\x20\xe2\xaa\xd2\xd2\xc0\xd2\x51\xd9\x8c\x32\x08\x1f\xc8\x34\x10\x46\x23\xea\x40\xc8\xd9\x42\xf6\x84\xa6\xa6\x54\xe7\x9a\x32\x18\xce\x08\x6c\x91\x51\x49\x85\x12\xb6\xd0\xc6\x7d\x71\x12\x90\xde\x34\x78\x9e\x58\x65\x1a\xd5\x07\x7e\x57\x18\xcf\x02\x24\x62\xb5\x29\x46\x77\x80\x2e\xb9\x8b\x8d\x7c\xfd\x32\x1d\x41\x55\xdc\x1a\x09\xb0\x5b\xe8\xd3\xf7\x6f\x43\xfc\xf7\x00\xa0\xbf\x4a\x92\x2b\xc9\xbd\xcf\x0d\xe5\x01\x3e\x3d\x1d\xc1\xf8\x21\xe3\xf5\x38\xb5\xa5\x5a\x59\xf2\x55\x9a\x3a\xae\xb0\x95\x7d\xe8\x82\x2b\x61\x77\x1a\x2a\xf3\xf1\x33\x42\xfc\xc4\xa5\x76\xfc\x8f\xad\xe5\xe3\x8f\x57\x05\xfc\xf2\x3b\x5b\x82\xe7\x96\x3d\x7e\x4f\x84\xad\x2a\xe8\xaf\x92\xfd\xf0\x26\xab\x3b\xd3\x29\x6a\x65\x74\xea\x0f\x22\x6e\xcb\xce\x14\x81\x93\x02\x4b\x79\x67\xdf\x03\xd6\xc0\x21\x9c\xdd\x0c\xe8\x44\x69\x2b\xf4\x4a\xb7\x7d\x92\x36\x97\x0d\xd9\xf6\x0b\x72\x33\xd3\xbd\x1f\xcc\x7c\x17\xdc\x0d\x75\xef\x55\xc4\xd9\x7b\x0b\x00\x00\xff\xff\xa8\x2e\xa8\x04\xbd\x02\x00\x00" func stakingcollectionStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5699,11 +5510,11 @@ func stakingcollectionStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x29, 0xa7, 0x4a, 0x17, 0x9b, 0x2d, 0xe2, 0x9b, 0xf8, 0xdb, 0xe2, 0xb2, 0x5b, 0x3b, 0xa5, 0x1c, 0xe, 0xec, 0x5d, 0xb3, 0x86, 0xb, 0xeb, 0xd5, 0x62, 0xbe, 0xc9, 0x84, 0x5, 0xe, 0x1d, 0x75}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0x8e, 0x32, 0xe0, 0x5e, 0x34, 0x11, 0x60, 0x2d, 0xf1, 0x4f, 0xad, 0x4e, 0x59, 0x3e, 0x2e, 0x5d, 0x31, 0xfd, 0x3d, 0x36, 0x15, 0xf8, 0x38, 0x97, 0x41, 0x38, 0xf, 0xdd, 0x44, 0xc6, 0x7a}} return a, nil } -var _stakingcollectionStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x8f\xd3\x30\x10\xc5\xef\xf9\x14\x4f\x3d\x2c\xa9\xb4\x6a\x25\x40\x1c\x2a\xa0\x82\xa2\x95\xf6\x04\xa2\x94\xfb\xe0\x4e\x5a\xab\x8e\x27\x1a\x4f\xd4\x45\x68\xbf\x3b\x8a\xdd\x3f\x88\xe6\xc0\x05\x1f\xe2\x78\x3c\x9e\xf7\x66\xf4\xf3\x6d\x27\x6a\x78\x08\x72\x5c\x1b\x1d\x7c\xdc\xad\x24\x04\x76\xe6\x25\xa2\x51\x69\x31\x19\xbd\x9b\x54\xd5\x7c\x3e\xc7\x4a\xda\xd6\x5b\x42\x1f\x93\xd1\x81\xb7\x30\x39\x70\x4c\x30\x41\x0e\xa0\x11\x85\xed\x19\xa9\x63\xe7\x1b\xcf\x5b\x44\xd9\x32\x44\xb1\xe5\xc0\x3b\x32\x51\xf8\x58\x52\x8a\x06\xdc\x45\xa4\xaa\x4c\x29\x26\xca\x87\x7a\x78\xf8\xf8\x69\x81\xb5\xa9\x8f\xbb\xfb\x6b\x81\x21\xb8\x79\x8c\xf6\xea\xe5\xf2\x1e\xd4\x4a\x1f\x6d\x81\xcd\x83\x7f\x7a\xf3\x7a\x8a\x5f\x15\x00\xe4\x4f\x60\x3b\x8b\x5c\x1b\xf9\xca\xcd\x02\xd4\xdb\xbe\x1e\xed\x73\x76\xfd\xfd\x7c\x8c\xac\x53\xdc\x8d\xe7\xdd\x44\xaa\xac\xd9\x29\x77\xa4\x5c\x93\x73\xc5\x57\x96\xfa\x28\xaa\x72\xfc\x4e\xa1\xe7\x29\xee\x3e\x94\xbb\xb3\xd7\x61\x25\x0e\xcd\x6c\xcc\x2b\xde\xe1\x54\x6a\x96\x4c\x94\x76\x3c\xfb\x91\x8b\xbd\xfd\x1f\x3d\xbc\xaf\x07\x04\x16\xe3\x78\xdc\xa6\xaf\x8b\xa3\x2f\x64\xfb\xe9\xa5\x95\x61\x2d\x97\xe8\x28\x7a\x57\x4f\x56\xd2\x87\x81\x01\x43\xb1\x0d\x82\x72\xc3\xca\xd1\xf1\x40\x0d\xe1\x16\xc3\x13\x1f\x9d\xfa\x96\xf4\x27\xfa\xc4\xfa\x22\x9d\xc7\x30\x29\x4a\xcf\x65\xdc\xfc\xc4\xae\x37\xfe\x97\x49\xe6\x20\x6f\x4e\xe0\x7e\xcb\xdc\x5e\x18\x2b\xfb\x5f\x8c\xfd\x71\xb8\x72\x56\xf6\xb3\x89\xe7\xea\x77\x00\x00\x00\xff\xff\xb4\xae\x2d\x5d\x51\x03\x00\x00" +var _stakingcollectionStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xdd\xca\xda\x40\x10\xbd\xcf\x53\x1c\xbc\x28\x11\x44\x4b\x5b\x7a\x11\xda\x4a\x88\x5a\x42\x45\x8b\xd1\x07\xd8\x26\x93\xb8\x98\xec\x84\xcd\x04\x85\xe2\xbb\x7f\x24\xeb\xcf\xc7\xa7\x17\xee\xc5\x2e\x73\xd8\x3d\xe7\xec\x9c\xd1\x55\xcd\x56\xb0\x28\xf9\x98\x88\x3a\x68\x53\x44\x5c\x96\x94\x8a\x66\x83\xdc\x72\x85\xcf\xa7\x64\x1b\xfe\x89\x57\xbf\xa3\xf5\x72\x39\x8f\xb6\xf1\x7a\x15\xce\x66\x9b\x79\x92\x78\xde\x64\x32\x41\xc4\x55\xa5\xa5\x41\x6b\x1a\x51\x07\xca\x20\x7c\x20\xd3\x40\x18\x3d\x80\x9c\x2d\x64\x4f\x68\x6a\x4a\x75\xae\x29\x83\xe1\x8c\xc0\x16\x19\x95\x54\x28\x61\x0b\x6d\xdc\x15\x67\x01\xe9\xcd\x83\xe7\x89\x55\xa6\x51\x7d\xe1\x77\x0f\xe3\x59\x80\x44\xac\x36\xc5\xe8\x4e\xd0\x81\xbb\xd8\xc8\xd7\x2f\xd3\x11\x54\xc5\xad\x91\x00\xbb\x85\x3e\x7d\xff\x36\xc4\x7f\x0f\x00\xfa\xad\x24\xb9\x8a\xdc\xff\xb9\xa1\x3c\xc0\xa7\xa7\x2d\x18\x3f\x20\x5e\xcf\x53\x5b\xaa\x95\x25\x5f\xa5\xa9\xd3\x0a\x5b\xd9\x87\xae\xb8\x0a\x76\xab\xa1\x32\x1f\x3f\x13\xc4\x4f\x5c\xde\x8e\xff\xb1\xb5\x7c\xfc\xf1\xaa\x81\x5f\x7e\x17\x4b\xf0\x3c\xb2\xc7\xeb\x89\xb0\x55\x05\xfd\x55\xb2\x1f\xde\x6c\x75\x6b\x3a\x45\xad\x8c\x4e\xfd\x41\xc4\x6d\xd9\x85\x22\x70\x56\x60\x29\xef\xe2\x7b\xe0\x1a\x38\x86\xb3\xeb\x01\x9d\x28\x6d\x85\x5e\xf9\x6d\x0f\xd2\xee\x32\x21\xdb\x7e\x40\x6e\x61\xba\xf3\x43\x98\xef\x8a\x7b\xa0\xee\xbc\x9a\x38\x7b\x6f\x01\x00\x00\xff\xff\x3a\x54\x8d\x83\xbd\x02\x00\x00" func stakingcollectionStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5719,11 +5530,11 @@ func stakingcollectionStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa2, 0xd9, 0xa3, 0x30, 0xe2, 0xac, 0xb5, 0xaf, 0xf, 0x7f, 0x25, 0x9f, 0x13, 0x26, 0xc8, 0x5b, 0x90, 0x55, 0x41, 0x24, 0x7e, 0x86, 0x5e, 0xbc, 0xc2, 0x80, 0x56, 0x9e, 0x7d, 0xb6, 0xb8, 0x5f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa1, 0xa8, 0x7b, 0xe7, 0xd6, 0xdb, 0x84, 0x37, 0x16, 0xe4, 0x35, 0x22, 0x17, 0xe6, 0x1a, 0xc, 0x64, 0xda, 0x5a, 0x5a, 0xd1, 0x7a, 0x73, 0x9c, 0x6e, 0x62, 0xd, 0x8d, 0xab, 0x32, 0x7d, 0x4d}} return a, nil } -var _stakingcollectionTestDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\x41\xcf\xda\x30\x0c\xbd\xe7\x57\x58\x3d\xa0\xf6\x40\x7b\x99\x76\x40\x6c\x68\x43\xe2\x84\xb4\x69\x0c\x76\x0e\xad\x5b\x22\x42\x5c\x25\x8e\xd8\x34\xf1\xdf\xa7\x26\xa5\x6b\x47\xa5\x7d\xb9\x44\xb6\x9f\xed\xf7\x6c\xab\x5b\x4b\x96\x61\xa7\xe9\x7e\x60\x79\x55\xa6\xd9\x92\xd6\x58\xb2\x22\x03\xb5\xa5\x1b\x24\xb3\xb1\x44\x8c\x32\xbf\xd3\x15\xc7\xe8\x60\xff\x45\x78\xd3\xa8\xb3\xc6\x09\x6a\xec\x1b\x90\x7b\x2a\xaf\x58\x05\x9f\xeb\x81\x63\x57\x22\x44\x51\xc0\xd1\x61\x05\x64\xf4\x2f\xa8\xc9\x02\xa3\x63\x68\xbd\x6d\xc9\xa1\x03\xa6\xe8\xe0\x0b\x42\x85\x2d\x39\xc5\xc0\xb1\xad\x37\x51\x93\x32\x21\xea\xa2\x20\x28\x07\x45\x42\xb0\x95\xc6\xc9\x60\xa4\xf2\x46\xde\xf0\x0a\x8e\x3b\xf5\xf3\xfd\xbb\x0c\x7e\x0b\x01\x00\xd0\x5a\x6c\xa5\xc5\xd4\xa9\xc6\xa0\x5d\x81\xf4\x7c\x49\x3f\x93\xb5\x74\x3f\x49\xed\x31\x83\xc5\xa7\xb2\xec\x52\x87\x94\xee\x69\xe4\x51\xa7\x6f\x58\xc3\x07\x88\x25\x72\xc7\x64\x65\x83\xf9\x39\x14\x59\x2f\x66\xa7\x9d\xbf\x78\x3e\xa6\xdd\x7c\x56\xf3\x8b\x7b\x85\x1f\x62\x97\xaf\x92\x2f\xd9\xc0\xaa\x7b\x9b\x0d\xb4\xd2\xa8\x32\x4d\xb6\xe4\x75\x05\x86\x18\x22\x15\x90\x60\xb1\x46\x8b\xa6\xc4\x30\xd8\xd9\xa9\x25\xd9\x54\x65\xfd\x5c\xff\x7f\x45\x06\x54\x7e\x92\x5e\xf3\x53\x4c\xd1\xe3\x8a\xa1\x4a\x08\xbf\x99\xf1\x84\xef\x6e\xff\xe5\x07\x84\xfc\x7f\x39\x72\x3c\xb0\xf5\x72\xba\x93\xbc\x41\x8e\x87\x36\x6c\x3f\xfe\xd3\xfe\x83\x31\x4d\xee\xcf\xad\x2f\x10\xf5\xac\x97\xb1\x55\x2c\xf0\x10\x8f\x3f\x01\x00\x00\xff\xff\x52\x6b\x3e\x3e\x6e\x03\x00\x00" +var _stakingcollectionTestDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x8e\x9b\x40\x0c\xbd\xf3\x15\x56\x0e\x15\x39\x2c\xf4\x50\xf5\x10\xa5\x5d\x21\x42\xaa\x55\xd0\x52\x2d\x6c\x7b\x9e\x05\x43\x46\x99\x8c\xd1\x8c\xd1\x6e\x55\xed\xbf\x57\x30\xc9\x28\x34\xa9\x54\x2e\x68\xec\xf7\xec\xf7\x6c\xcb\x63\x4f\x86\x61\xab\xe8\xb5\x64\x71\x90\xba\x4b\x49\x29\xac\x59\x92\x86\xd6\xd0\x11\x3e\xbe\x95\x55\xb2\x7b\x78\xfc\x96\x16\x79\x9e\xa5\xd5\x43\xf1\x98\x6c\x36\x4f\x59\x59\x06\x17\xe4\x8a\x0e\x78\x22\x2c\xfc\x7b\xe1\x11\x83\xee\xe4\x8b\xc2\x19\xea\x32\xe6\x91\x39\xd5\x07\x6c\xa6\x98\x3d\xf7\xcf\x8b\x74\x97\x6d\xaa\x62\x97\xf9\xce\x41\x1c\xc3\xb3\xc5\x06\x48\xab\x5f\xd0\x92\x01\x46\xcb\xd0\x0f\xa6\x27\x8b\x16\x98\x5c\x80\xf7\x08\x0d\xf6\x64\x25\x03\xbb\xe6\x83\x76\xe6\xa4\x9e\xb2\xd6\xb9\x86\xda\xdb\x0e\x02\x36\x42\x5b\x31\x3d\x42\x71\xa4\x41\xf3\x0a\x9e\xb7\xf2\xed\xf3\xa7\x25\xfc\x0e\x02\x00\x80\xde\x60\x2f\x0c\x86\x56\x76\x1a\xcd\x0a\x92\x81\xf7\x49\x5d\x8f\x58\x8f\x19\x3f\x85\x7c\x51\xfa\x09\x5b\xf8\x02\x8e\x13\xbd\x90\x31\xf4\xba\xfe\x70\x73\xf6\xd1\x55\xe4\x6b\x38\x8e\x63\x75\x7b\x55\xd7\xf0\x92\xc9\x88\x0e\xbf\x0b\xde\x2f\xbd\x9a\xf1\xbb\xbf\x87\x5e\x68\x59\x87\x8b\x94\x06\xd5\x80\x26\x06\x27\x05\x04\x18\x6c\xd1\xa0\xae\x71\x9a\xe0\xcd\xf1\x2c\x96\x73\x77\xed\x79\xdb\xff\x34\x37\x65\xa3\x1f\x62\x50\x7c\x36\x11\x5b\x27\x2f\xf6\xec\x29\xfd\xdf\x4a\x67\x3a\xb7\x79\xf1\x13\x26\xfe\xdf\xda\xd8\xdd\xd1\xfa\x6e\xbe\x83\xa8\x43\x76\x27\xe6\xd7\xeb\xfe\xf3\xfe\xfe\x31\x27\x9f\xee\xe9\x54\xc0\xf9\x59\xdf\xb9\x56\xae\xc0\x7b\xf0\xfe\x27\x00\x00\xff\xff\xf0\x15\xfa\x02\x58\x03\x00\x00" func stakingcollectionTestDeposit_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5739,11 +5550,11 @@ func stakingcollectionTestDeposit_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/test/deposit_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x1a, 0x62, 0x8a, 0x48, 0xfd, 0x30, 0xb2, 0xc1, 0x16, 0x95, 0xa1, 0xe8, 0x77, 0x7, 0x2a, 0x1f, 0x1c, 0xc0, 0x97, 0x59, 0x38, 0x3f, 0xdd, 0xbc, 0x1d, 0xd1, 0x3b, 0xec, 0x3e, 0x6e, 0x53}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0xc5, 0x20, 0x7d, 0xb3, 0xdb, 0xdc, 0x38, 0x2d, 0x78, 0xd7, 0x9c, 0xb9, 0xb9, 0x51, 0xb, 0x50, 0x6e, 0x9f, 0x8c, 0x96, 0x92, 0xc8, 0xa4, 0x28, 0xc3, 0xac, 0xb8, 0xf8, 0x50, 0x30, 0xb8}} return a, nil } -var _stakingcollectionTestGet_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\xb1\x8e\xe2\x30\x10\xed\xfd\x15\xa3\x14\x28\x29\x2e\x34\xa7\x2b\x10\x77\xe8\x16\x89\x6a\x8b\xd5\xb2\x6c\x6f\x92\x49\xb0\x30\x9e\x68\x3c\x11\x8b\x56\xfc\xfb\x2a\x76\x14\x12\x11\x37\x96\x9f\xdf\xbc\x99\xf7\xc6\x5c\x1a\x62\x81\x9d\xa5\xeb\x5e\xf4\xd9\xb8\x7a\x4b\xd6\x62\x21\x86\x1c\x54\x4c\x17\x48\x66\xff\x12\x35\xaa\xfc\xa0\x33\x8e\xd9\xe1\xfd\x60\xb4\xae\x36\x47\x8b\x13\xd6\x18\x1b\x98\xaf\x54\x9c\xb1\x0c\x98\xef\x89\x63\x28\x51\x6a\xb9\x84\x83\xc7\x12\xc8\xd9\x1b\x54\xc4\x20\xe8\x05\x9a\x96\x1b\xf2\xe8\x41\x28\x02\x72\x42\xa8\x51\x40\x7a\xa9\xd6\x45\x43\xc6\x85\x2f\x1f\xdd\x40\x31\xd8\x51\x4a\x58\x3b\xaf\xc3\x23\xd5\x17\x6a\x9d\xac\xe0\xb0\x33\x5f\x7f\x7e\x67\xf0\xad\x14\x00\x40\xc3\xd8\x68\xc6\xd4\x9b\xda\x21\xaf\x40\xb7\x72\x4a\x5f\x88\x99\xae\x9f\xda\xb6\x98\xc1\xe2\x7f\x51\x74\xa5\x43\x49\x77\x2c\xca\xa8\xd3\x3b\x56\xf0\x17\xa2\x44\xee\x85\x58\xd7\x98\x1f\x83\xc8\x7a\x31\x1b\x75\xfe\x84\xfc\x4b\xbb\x70\x56\xf3\x5b\x7b\xa6\xef\x63\x97\x37\x2d\xa7\x6c\x98\xaa\x3b\x9b\x0d\x34\xda\x99\x22\x4d\xb6\xd4\xda\x12\x1c\x09\xc4\x51\x40\x03\x63\x85\x8c\xae\xc0\x90\xea\x6c\x6a\xc9\x54\x6e\xe2\xb8\x8f\x7e\xfd\x6b\xea\x3d\xaf\x51\xe2\x36\x87\x94\xe3\x9d\x3d\x02\x2b\xd1\x0b\xd3\xad\x97\x08\xf0\x5d\xdd\x15\xfc\x04\x00\x00\xff\xff\xc6\xbe\x85\xb6\xac\x02\x00\x00" +var _stakingcollectionTestGet_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\x5d\xaf\x9a\x40\x10\x7d\xdf\x5f\x31\xe1\xa1\xc1\x87\x7a\xfb\xd0\xf4\xc1\xdc\xf6\x86\x20\x36\x46\x22\x8d\xe0\x0f\x58\x61\xc0\x8d\xb8\x43\x76\x87\xa8\x69\xfc\xef\x0d\x1f\xdd\x2b\xd1\x7d\x21\x73\x38\x73\x66\xce\x19\x75\x6e\xc8\x30\xac\x6a\xba\xa4\x2c\x4f\x4a\x57\x21\xd5\x35\xe6\xac\x48\x43\x69\xe8\x0c\xdf\xae\x69\x16\x6c\xd6\xdb\xdf\x61\x12\xc7\x51\x98\xad\x93\x6d\xb0\x5c\xee\xa2\x34\x15\x0f\xcd\x19\x9d\x70\x6c\xf0\x5c\xed\x39\x46\xab\x2b\x75\xa8\x71\xc2\x7a\xc4\x1c\x33\xa6\xfc\x84\x45\x8f\xd9\xff\xf3\xe3\x24\xdc\x44\xcb\x2c\xd9\x44\x6e\xb2\x78\x7b\x83\xbd\xc5\x02\x48\xd7\x37\x28\xc9\x00\xa3\x65\x68\x5a\xd3\x90\x45\x0b\x4c\x03\xc0\x47\x84\x0a\x19\x78\x14\x6c\xf5\xe0\x4c\xe9\xfe\x97\x1d\x2c\x43\xee\x3c\x0b\xc1\x46\x6a\x2b\xfb\xc2\x97\x67\x6a\x35\x2f\x60\xbf\x52\xd7\x1f\xdf\x67\xf0\x57\x08\x00\x80\xc6\x60\x23\x0d\xfa\x56\x55\x1a\xcd\x02\x82\x96\x8f\x41\x9e\x77\x5c\xc7\xe9\x5e\x8d\xfc\x20\xbd\xc3\x12\x7e\xc2\xd0\x33\x3f\x90\x31\x74\x79\xff\xf2\x32\xf8\xf9\x13\xf2\xcb\xef\xb2\x58\xbc\xbe\xd3\x33\x3d\x65\x32\xb2\xc2\x3f\x92\x8f\x33\xb7\x4d\xf7\x3e\x3e\xa0\x91\x5a\xe5\xbe\x17\x52\x5b\x17\xa0\x89\x61\x58\x05\x24\x18\x2c\xd1\xa0\xce\xb1\x8f\xef\x65\x3c\xde\x54\x6e\xe2\x74\xcc\xf8\xfd\xeb\xd4\xf3\xbc\x42\x1e\xee\xe9\xe2\x1c\xbe\xb3\xcf\xa0\x0a\xb4\x6c\xe8\x36\x4a\xf4\xf0\x5d\xdc\x05\xfc\x0b\x00\x00\xff\xff\xc7\xea\x46\x26\x9e\x02\x00\x00" func stakingcollectionTestGet_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5759,11 +5570,11 @@ func stakingcollectionTestGet_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/test/get_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x72, 0xf3, 0xa0, 0xb7, 0xa9, 0x28, 0x84, 0x63, 0xc9, 0x3a, 0x84, 0x43, 0x16, 0xd4, 0xe, 0x5a, 0x3e, 0xb0, 0x91, 0xa4, 0x25, 0x42, 0x1a, 0xf0, 0x7e, 0xf, 0x1d, 0x75, 0x1b, 0x64, 0xa1, 0xc4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5c, 0x3c, 0x3c, 0x18, 0x89, 0xc7, 0xbd, 0x6, 0x3, 0xe, 0x33, 0x90, 0x3, 0x9f, 0x9b, 0x7, 0x29, 0xc1, 0x6c, 0x55, 0xde, 0xfa, 0xa, 0xc4, 0xe3, 0x97, 0x57, 0xb9, 0x10, 0x92, 0xa, 0x52}} return a, nil } -var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x5f\x6f\xd3\x30\x10\x7f\xef\xa7\xb8\xf5\x61\x24\xd2\x96\x49\xf0\x56\x6d\x4c\xdb\x2a\x60\x2f\x6c\xda\x80\xf7\x6b\x7c\x69\x0c\x89\x2f\xb2\x2f\x1d\x03\xed\xbb\xa3\xfc\x71\xd6\x34\x86\x55\x08\xf2\xd2\x26\x3e\xff\xfc\xfb\x73\xb6\x75\x59\xb1\x15\x78\x57\xf0\xc3\xbd\xe0\x37\x6d\xd6\x57\x5c\x14\x94\x8a\x66\x03\x99\xe5\x12\xe6\xc1\xb1\xf9\x6c\x76\x72\x02\x9f\x2c\x1a\x97\x91\x75\x80\xf0\x91\x15\x2d\xa9\xa0\x35\x0a\x5b\xe0\xd5\x57\x4a\xa5\x43\x40\x03\x58\x4b\xce\x56\xff\x68\x4b\xd3\x94\x6b\x23\xcd\x7c\x34\x0a\x50\x29\x07\x92\xd3\x0e\x80\x30\xa0\x61\xc9\xc9\xfa\x09\x0e\x7a\x16\xf0\x4c\xa3\x01\xd1\x8a\x8c\xe8\x4c\x93\x82\xd5\x63\x8b\x24\x0c\x17\x4a\x59\x72\x2e\x99\xcd\xa4\xe1\x88\x6d\x75\x64\x58\xd1\xf5\x72\x01\xf7\x62\xb5\x59\x1f\x81\xf2\xcb\x35\x1f\x3f\x5f\x1b\x79\xf3\xfa\x08\x84\x17\x7e\x7a\x0c\x3f\x67\x00\x00\x05\x75\x52\x26\x36\xdc\x51\xb6\x68\xc5\x45\x41\x97\x92\xe7\xbf\x37\x0f\x86\x6c\x0c\x87\xe1\xba\xc9\x97\x61\x59\xe1\xc9\xd8\x15\x56\x8b\xfd\x81\x5a\xa4\xca\x52\x85\x96\xa2\xde\xca\x9e\xf3\x25\x5b\xcb\x0f\x5f\xb0\xa8\x29\x86\xc3\x8b\x6e\xcc\x6b\x6e\x9e\x26\xe2\x9c\x7c\x00\x8d\xaf\xd2\x27\x1e\x48\xac\x8f\x5c\x18\xca\xda\x09\xe4\xb8\x21\x40\xd8\x60\xa1\x55\x20\x39\xd0\x06\xd8\x2a\x6a\x93\xb6\x94\x92\xde\xd0\x14\x34\x19\xa8\xe8\x0c\xa2\x83\xb0\x66\xc5\xe4\x7a\xf2\x1f\x70\x43\x93\x82\x08\xbb\x34\x17\x20\x1c\x6f\xcb\x6b\x9d\x41\xa3\xd3\x68\xbe\x24\x27\xda\x60\xcb\xcc\xcb\xdd\x96\x11\x10\xe0\x48\xa0\xae\x92\x79\x3c\xe0\x3d\xcd\xb6\x9d\x7b\x4f\x02\x08\x96\x32\xb2\x64\xd2\xb6\x2b\x1b\x7d\xdb\x5b\x21\x1c\x7b\xf3\x38\x2a\xb2\xe4\x77\x2d\x07\x67\x9e\x63\xe2\x84\x2d\xae\x29\x59\xb5\x51\x9e\xfe\x8f\x56\x7c\x1b\x35\x3c\x16\xe1\x33\x62\x5a\x7e\xdf\x31\xba\x45\xc9\xe3\x91\xd3\xe7\xe7\xde\xec\x2b\xae\x0b\x05\x86\x05\x3a\xda\xbb\x36\xe1\xd4\x98\xa6\x5d\x1a\xf7\x2a\xab\x4b\xb4\x8f\x50\x3b\xb2\xaf\x86\xb3\x64\x1e\x4f\x9c\x6f\x8a\x6f\xeb\x55\xa1\xd3\xbe\x35\x80\xb3\xce\xff\xbd\x9a\x59\x38\x81\x01\xb2\xdb\x87\x1e\xe7\x0c\xd6\x24\xfd\x4b\x24\x3c\x5e\xfa\xd2\x0b\x4a\xb1\xc2\x95\x2e\xb4\x3c\xfa\xe0\xab\x96\x0d\x94\x24\x39\x2b\x07\xb8\x41\x5d\xe0\xaa\x20\xe0\x4e\x5a\xbf\x09\x42\x6d\x91\x8c\xfb\x22\x7c\x26\xc0\xd9\x33\xc9\x64\x58\x5e\x93\x1b\xa5\xe0\x3b\x65\xff\xf4\xf7\x2c\xec\xcc\xfe\x9b\xd8\xb1\x7c\x31\x76\xef\xcd\x28\xf2\xad\x2d\x47\xdf\x29\xad\x85\xc6\x47\xd7\x1d\x95\x1c\x3a\x54\xba\x5b\xe9\xc5\xbd\x98\x8c\xf2\x37\x23\x84\xd3\xe3\x3f\xef\xd0\xc4\xb6\x6b\x0f\x13\x86\x9b\xa7\xfb\xdd\xb9\x79\xb6\x5e\xc6\xdd\xb4\xa4\x8a\x9d\x96\xf0\xf5\xf8\x2f\x7a\x26\x41\xa5\x06\xd0\x9b\xf6\x00\x8f\x4e\x8f\xc7\x62\x0f\xbc\xd3\x4f\xbf\x02\x00\x00\xff\xff\x99\x35\x2e\x9f\x2d\x08\x00\x00" +var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5d\x4f\xdb\x40\x10\x7c\xcf\xaf\x58\x78\xa8\x1c\x09\x4c\xd5\xbe\x45\x7c\x28\x4d\x28\x8d\x8a\x00\x11\xfa\x03\x36\xbe\xb5\x7d\xad\x73\x6b\x9d\xd7\x01\x8a\xf8\xef\xd5\x9d\x3f\x88\xb1\xdb\x06\x89\xbc\x44\x67\xef\xcd\xcd\xce\xcc\xfa\xf4\x3a\x67\x2b\xf0\x35\xe3\xfb\xa5\xe0\x2f\x6d\x92\x19\x67\x19\x45\xa2\xd9\x40\x6c\x79\x0d\x1f\x1f\x96\x77\xd3\xef\x8b\xab\x8b\xd9\xf5\xe5\xe5\xf9\xec\x6e\x71\x7d\x35\x9d\xcf\x6f\xcf\x97\xcb\xd1\xe8\xe8\x08\xee\x2c\x9a\x22\x26\x5b\x00\xc2\x15\x2b\x9a\x53\x46\x09\x0a\x5b\xe0\xd5\x4f\x8a\xa4\x02\x41\x03\x58\x4a\xca\x56\xff\xf6\xa5\x51\xc4\x5c\x1a\x71\x00\x68\x14\xa0\x52\x05\x48\x4a\xaf\x10\x84\x01\x0d\x4b\x4a\xd6\xef\x28\x8d\x14\x50\xb3\x84\x17\x9a\x0e\x44\x2b\x32\xa2\x63\x4d\x0a\x56\x8f\x1e\x49\x18\xa6\x4a\x59\x2a\x8a\x70\x34\x12\x47\x12\x7d\x75\x60\x58\xd1\x62\x3e\x81\xa5\x58\x6d\x92\x03\x50\xcd\x71\xee\xe1\x8f\x85\x91\xcf\x9f\x0e\x40\x78\xd2\x6c\x1f\xc3\xd3\x08\x00\x20\xa3\xaa\x97\x9e\x4c\xb7\x14\x4f\xe0\xc3\xa0\x82\x61\xef\x49\x0b\x25\xdc\x7b\x37\xc3\x7c\x77\xa0\xa7\x1d\xeb\x6e\xca\x55\xa6\xa3\xe7\x91\x3f\x38\xb7\x94\xa3\xa5\xa0\x56\x73\x02\xd3\x52\xd2\x69\xb5\x68\xfa\x74\x3f\xe7\x6b\x4a\x8d\xe8\x4e\x4b\xa9\x6d\x1e\x70\xa9\xf6\x59\x18\xd6\x65\x21\x90\xe2\x86\x00\x61\x83\x99\x56\x03\x6e\x81\x36\xc0\x56\x91\x77\xd7\x52\x44\x7a\x43\x7d\xd0\xb0\xa5\xa2\x63\x08\xf6\x86\x7b\x55\x4c\x45\x4d\xfe\x1b\x6e\xa8\x57\x10\x60\xe5\xe0\x04\x84\xc7\xdb\xed\x79\x29\xd0\xe8\x28\xd8\x9f\x53\x21\xda\xa0\x67\xd6\xb4\xbb\xdd\xc6\x40\x03\x05\x09\x94\x79\xb8\x3f\x6e\xf1\x6a\x75\x6b\xe5\x2e\x48\x00\xc1\x52\x4c\x96\x4c\xe4\x93\xe8\xfa\xdb\xce\xff\x70\x2c\xdc\xaf\xa0\x2c\x0e\xff\x16\x33\x38\x69\x38\x86\x2b\xb6\x96\xef\x8f\x77\x4d\xcb\x69\xe0\x30\x27\xc3\x73\xde\x2f\x5f\x0a\x5b\x4c\xe8\x06\x25\x1d\x77\x54\x3b\x3b\x6b\x84\x9b\x71\x99\x29\x30\x2c\x50\x51\x71\x0d\xbb\x56\x7b\x58\xfb\xe3\x9e\x3a\x4e\x8e\x2a\x97\xb5\x7d\xc0\x71\xa5\xd1\x4e\x81\x13\x0e\xa1\x85\xac\x66\xa9\xc1\x39\x81\x84\xa4\x5e\x04\xc2\xdd\xa3\xbf\x54\x44\x11\x22\xcc\x71\xa5\x33\x2d\x8f\x8d\x39\xb9\x67\x03\x6b\x92\x94\x55\x01\xb8\x41\x9d\xe1\x2a\x23\x60\xe3\xdf\xd7\x41\x1d\xb2\x2e\xec\x7a\x37\x3c\xd7\x70\xf2\x42\x32\x4c\x48\x66\x2d\x83\x9d\x2d\x7c\xe3\xc0\x9f\x06\x6f\xaa\xf7\x56\xd7\xa9\x0a\xde\xc3\xf3\xad\xb9\xa0\x07\x8a\x4a\xa1\xee\xf7\xe5\x96\xd6\x3c\x34\xf9\xd5\x7d\xf1\xdf\x81\x09\x3b\x01\x30\x1d\x84\xe3\xc3\x7f\x8f\x51\x68\xfd\xd9\xed\x86\xf6\x4a\xa8\xfe\x5f\x5d\x09\x5b\x8b\x6e\x9c\xe6\x94\x73\xa1\x65\xf8\xde\x7a\x8f\xd0\x84\xa8\x54\x0b\x7a\xed\xbf\xb2\xc1\xf1\x61\xb7\xd9\xbd\x46\xe9\xe7\x3f\x01\x00\x00\xff\xff\xe4\x62\x1c\xe8\xca\x07\x00\x00" func stakingcollectionTransfer_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -5779,11 +5590,11 @@ func stakingcollectionTransfer_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/transfer_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x61, 0xe2, 0x8a, 0xda, 0x69, 0xb9, 0x20, 0x50, 0x6, 0x1e, 0x93, 0x59, 0x1f, 0x80, 0x46, 0xb8, 0x26, 0x15, 0x8a, 0x24, 0xdb, 0xab, 0xd0, 0xb4, 0x34, 0x54, 0x8d, 0xc4, 0x27, 0xc1, 0x69, 0xa2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xff, 0x7, 0xf, 0xbf, 0x6b, 0x6b, 0x4f, 0xdf, 0xea, 0x50, 0x55, 0xed, 0xb8, 0x6b, 0x3a, 0x3b, 0xeb, 0xff, 0x95, 0xda, 0x97, 0x68, 0x16, 0xce, 0x1e, 0xbb, 0x3e, 0x85, 0x63, 0xa5, 0x36, 0x63}} return a, nil } -var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\xcd\x6e\xdb\x38\x10\xbe\xfb\x29\x26\x3e\x64\x25\x20\x51\xee\x46\xbc\x41\x12\x63\x77\x73\xd8\x26\x48\x8a\x5e\x8a\x1e\xc6\xe2\xc8\x62\x2b\x73\x04\x72\xe4\x20\x2d\xf2\xee\x05\x45\x49\xfe\x11\x5b\xe7\xd0\xe8\x92\x58\x1c\xce\x7c\x7f\x22\xf5\xba\x66\x2b\xf0\x4f\xc5\xcf\x4f\x82\xdf\xb4\x59\xdd\x72\x55\x51\x2e\x9a\x0d\x14\x96\xd7\x30\x8d\xae\x4d\x27\x93\x8b\x0b\xf8\x68\xd1\xb8\x82\xac\x03\x84\x0f\xac\xc8\x97\x91\x05\x5e\x7e\xa5\x5c\xc2\x76\x34\x80\x8d\x94\x6c\xf5\xf7\xb6\x2e\xcf\xb9\x31\xe2\x37\xa3\x51\x80\x4a\x39\x90\x92\x76\x77\x0b\x03\x1a\x96\x92\x6c\x5f\xed\xa0\x9b\x0f\x5b\x00\xbe\x83\x56\x64\x44\x17\x9a\x14\x2c\x5f\xda\x36\xc2\x70\xad\x94\x25\xe7\xb2\xc9\x44\x3c\x3a\x6c\xab\x13\xc3\x8a\xee\x16\x33\x78\x12\xab\xcd\xea\x0c\x84\x67\x7d\x65\x0a\x3f\x26\x00\x00\x15\x05\xc8\x23\xae\x8f\x54\xcc\x5a\x12\x49\x54\x8a\x6c\xfb\xef\xfd\xb3\x21\x9b\xc2\x69\xbc\x6e\xf4\x66\x18\x2b\x3c\x5a\xbb\xc5\x7a\xf6\xf6\x46\x6d\xa7\xda\x52\x8d\x96\x92\x4e\xb5\x0e\xf3\x0d\x5b\xcb\xcf\x9f\xb0\x6a\x28\x85\xd3\xeb\xb0\xd6\x73\xf6\x8f\xf7\xb1\xa4\x5e\x6b\x2f\xa1\x74\xb6\x1e\x3a\xd3\xf9\x2a\x0c\xeb\xc6\x09\x94\xb8\x21\x40\xd8\x60\xa5\x55\xc4\x21\xd0\x06\xd8\xaa\xe0\xa8\xa5\x9c\xf4\x86\x0e\x3a\x66\x03\x08\x5d\x40\x72\x12\x67\xab\x98\x5c\x07\xfb\x3f\xdc\xd0\xa8\x20\xc1\xe0\xe3\x0c\x84\xd3\x5d\x62\xad\x26\x68\x74\x9e\x4c\x17\xe4\x44\x1b\x6c\x61\xf5\x44\x77\x39\x44\xd0\x3b\x12\x68\xea\x6c\x9a\x0e\xfd\x5e\x27\xbb\x9a\xfd\x4b\x02\x08\x96\x0a\xb2\x64\xf2\x36\x7a\x9e\xdc\x6e\xd8\xe3\x86\xfb\xc7\x51\x55\x64\xbf\x0a\x1b\xcc\x7b\x8c\x99\x13\xb6\xb8\xa2\x6c\xd9\x9a\x78\xf9\x1e\x21\xfc\x3b\xf1\x38\x66\xf1\x23\x60\x5c\xfe\x14\x10\x3d\xa0\x94\xe9\x9e\xd2\x57\x57\xbd\xd8\xb7\xdc\x54\x0a\x0c\x0b\x04\xd8\x87\x32\xe1\x58\x18\x9f\x15\xaf\x5e\x6d\xf5\x1a\xed\x0b\x34\x8e\xec\x5f\xc3\x69\x31\x4d\x47\xca\xfb\xe2\x87\x66\x59\xe9\xbc\x8b\x06\x70\x11\xf4\x3f\x1e\x63\xe1\x0c\x86\x7e\xe1\xf3\xeb\x9b\xcc\x61\x45\xd2\xfd\x48\x84\xf7\xe7\xde\xf4\x6c\x72\xac\x71\xa9\x2b\x2d\x2f\xbd\xeb\x75\x0b\x05\xd6\x24\x25\x2b\x07\xb8\x41\x5d\xe1\xb2\x22\xe0\xc0\xab\x8b\x7f\x2c\x13\xd9\x7e\x28\xe2\x47\x01\xcc\xb7\x20\xb3\x61\xbc\x26\xb7\x67\x41\x1f\x93\xb7\x5b\xff\xc6\xc2\xa0\xf4\x3b\x79\xde\x6b\x13\xf7\xdb\xfb\xb3\xc6\xbc\xd4\x86\x3a\xfe\x77\xa6\x60\x98\xff\xfe\x13\xca\x56\x24\xff\xef\xed\x72\x49\xfa\x39\x5c\x02\x5f\x8e\x52\x58\x6d\x67\x0e\x79\xd2\x7e\x6a\xc1\x21\x4c\xae\xa6\x3c\xdc\x3b\xbe\x25\xdc\x2d\x0e\x12\xfa\x48\x6b\x1e\x1d\x76\xe1\x3e\x3c\x7a\x46\x64\x7b\xd4\xcd\x76\xfb\xe5\xf9\x11\xce\xb6\x9d\xea\x07\x0e\xd7\x5d\xf8\xbb\x0f\x6e\x41\x35\x3b\x2d\x91\x6b\xf7\x4f\x24\x35\x43\xa5\x7c\xd7\xfb\xf6\xae\x48\x2e\xcf\x77\x28\x9c\x9c\x45\xac\x9c\x45\xde\x85\x94\xbd\x4e\x5e\x7f\x06\x00\x00\xff\xff\x1a\xf2\x57\x38\x9f\x08\x00\x00" +var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5d\x4f\xdb\x4a\x10\x7d\xcf\xaf\x18\x78\xb8\x72\x24\x30\xf7\x39\x22\xa0\xdc\x84\x4b\xa3\x52\x40\x84\xb7\xaa\x0f\x13\xef\x38\xde\xd6\xd9\xb1\x76\xc7\xa1\x14\xf1\xdf\xab\xf5\xda\xf9\xc0\x6e\x13\x24\xf2\x12\xd9\x9e\x3d\x73\xe6\x9c\xb3\xbb\x7a\x59\xb0\x15\xf8\x3f\xe7\xa7\x99\xe0\x0f\x6d\x16\x63\xce\x73\x4a\x44\xb3\x81\xd4\xf2\x12\xfe\xfd\x39\x7b\x1c\x7d\x9e\xde\x5e\x8f\xef\x6e\x6e\xae\xc6\x8f\xd3\xbb\xdb\xd1\x64\xf2\x70\x35\x9b\xf5\x7a\x67\x67\xf0\x68\xd1\xb8\x94\xac\x03\x84\x5b\x56\xe4\x51\xc8\x02\xcf\xbf\x53\x22\x01\x01\x0d\x60\x29\x19\x5b\xfd\xab\xaa\x4b\x12\xe6\xd2\x88\x5f\x8d\x46\x01\x2a\xe5\x40\x32\xda\x5e\x2e\x0c\x68\x58\x32\xb2\x55\x79\x69\xc4\x41\xcd\x0f\x36\x04\x3d\x82\x56\x64\x44\xa7\x9a\x14\xcc\x9f\x2b\x18\x61\x18\x29\x65\xc9\xb9\xb8\xd7\x13\x4f\x0f\xab\xea\xc8\xb0\xa2\xe9\x64\x00\x33\xb1\xda\x2c\x4e\x40\x78\xd0\x54\xf6\xe1\xa5\x07\x00\x90\x53\xe0\xdc\xd2\xe2\x81\xd2\x01\xfc\xd3\x29\x53\xdc\x7a\xb3\x86\x12\x6e\x7d\x1b\x63\x71\x38\xd0\xcb\x81\x75\xf7\xe5\x3c\xd7\xc9\x6b\xaf\x6a\x5c\x58\x2a\xd0\x52\x54\x0b\x37\x80\x51\x29\xd9\x28\x3c\x34\x73\xfa\x9f\x37\x2f\xa3\x46\x5f\x2f\x9b\xd4\x5e\xbe\x75\xa3\x36\x53\x18\x96\xa5\x13\xc8\x70\x45\x80\xb0\xc2\x5c\xab\x0e\x57\x40\x1b\x60\xab\x82\x8b\x96\x12\xd2\x2b\x7a\x83\x18\xaf\x49\xe8\x14\xa2\xa3\xee\x29\x15\x93\xab\x69\x7f\xc2\x15\xb5\x0a\x22\x0c\xde\x0d\x40\xb8\xbf\x3d\x58\x25\x02\x1a\x9d\x44\xc7\x13\x72\xa2\x0d\x56\xb4\x9a\x41\xb7\x67\xe8\x60\xef\x48\xa0\x2c\xe2\xe3\xfe\x1a\xaf\xd6\xb5\xd6\xec\x9a\x04\x10\x2c\xa5\x64\xc9\x24\x55\xdc\xfc\x70\xdb\x09\xef\x0e\x84\xff\x39\xca\xd3\xf8\x4f\x01\x83\x61\xc3\x31\x9e\xb3\xb5\xfc\x74\x7e\x68\x4e\x2e\x22\x8f\x39\xe8\xde\xc6\xed\xf2\x99\xb0\xc5\x05\xdd\xa3\x64\xfd\x1d\xd5\x2e\x2f\x1b\xe1\xc6\x5c\xe6\x0a\x0c\x0b\x04\x2a\x7e\x60\x3f\x6a\x0b\xeb\xb8\xdf\x52\xc7\xcb\x11\x12\x59\xdb\x07\x9c\x06\x8d\xf6\x47\x4d\x38\x86\x35\x5e\xd8\x42\x0d\xc8\x10\x16\x24\xf5\x43\x24\xbc\xdb\xf7\xbf\xc0\x12\x21\xc1\x02\xe7\x3a\xd7\xf2\xdc\x38\x53\x54\x54\x60\x49\x92\xb1\x72\x80\x2b\xd4\x39\xce\x73\x02\x36\xd5\xf7\x3a\xa2\x5d\xbe\xc5\xbb\xc6\x75\x6f\x67\x18\x6e\x48\xc6\x0b\x92\xf1\x9a\xc1\xc1\xfe\xbd\x73\x9f\x5f\x44\xef\xaa\xaf\x7c\xae\x23\x15\x7d\xa8\xe1\xde\xa0\x25\x26\x99\x36\x54\x0b\x30\x35\x29\xc3\xf0\xef\x39\xf7\x22\x7d\xd9\x59\xe5\xa2\xfe\xd7\x70\x3a\x7f\xdb\x4b\x6f\xb1\xe9\xb9\x0e\x94\xf6\x5d\x53\x0e\x69\x72\x05\x25\xe1\x42\xf0\x90\x30\x9d\xbc\x89\xe8\x03\x2d\xb9\x75\x22\x85\x9b\x6a\xef\x46\x8e\x77\x46\x37\x9b\xe5\xe7\xa7\x7b\x66\xb6\x55\x57\xdf\x70\x7d\x0f\x85\xff\x5d\x72\x13\x2a\xd8\x69\xe9\xb8\x0f\x3f\x22\xaa\x31\x2a\xe5\x51\xef\xaa\x03\x3d\x3a\x3f\xdd\x1a\xe1\xe8\xa4\xc3\xca\x41\xc7\xbb\x90\xa0\xd7\xde\xeb\xef\x00\x00\x00\xff\xff\x96\xaa\xe3\x77\x3c\x08\x00\x00" func stakingcollectionTransfer_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5799,11 +5610,11 @@ func stakingcollectionTransfer_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/transfer_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x26, 0x9a, 0x52, 0x5d, 0x70, 0xc3, 0xb7, 0xd6, 0x87, 0xa1, 0x10, 0xeb, 0x40, 0xdc, 0xef, 0xf6, 0xcf, 0x1c, 0xf7, 0x4d, 0xc3, 0xb6, 0xb7, 0xf7, 0x2e, 0x78, 0x83, 0x9a, 0x1e, 0xe3, 0xd, 0xa2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0x67, 0x83, 0xba, 0x26, 0xad, 0xc, 0x4e, 0xfe, 0xb7, 0x94, 0x11, 0x42, 0x42, 0xdc, 0x83, 0x93, 0x25, 0x10, 0x37, 0x21, 0xa1, 0x8f, 0xec, 0x4e, 0xf6, 0xfb, 0xed, 0x96, 0x5e, 0x71, 0x29}} return a, nil } -var _stakingcollectionUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\x4d\xaf\xd3\x30\x10\xbc\xe7\x57\x8c\x72\x78\x24\x97\xf4\x5e\x01\x4f\xa5\x08\x09\xa9\x12\xa8\x95\xb8\x1b\x77\x93\x5a\x75\xbd\x61\xbd\x56\x41\xa8\xff\x1d\x25\x4e\xda\x43\x73\xe0\xf2\x7c\xc8\x87\xf7\x63\x66\x77\xc6\x5d\x7a\x16\xc5\x17\xcf\xd7\x83\x9a\xb3\x0b\xdd\x96\xbd\x27\xab\x8e\x03\x5a\xe1\x0b\xca\xc5\x58\x59\x14\xab\xd5\x0a\x7b\xfa\x95\x28\x6a\x84\x32\x52\x88\x6a\xce\x84\xcd\x6e\x07\xe5\x33\x85\x88\x96\x05\x7a\x22\xc4\x9e\xac\x6b\x1d\x1d\x11\xf8\x48\x60\xc1\x91\x3c\x75\x46\x59\xe0\x42\x4e\xc9\x08\xb0\x77\x88\xa2\x50\x31\x21\x9a\xf1\xa7\x1a\x0a\xbf\x7e\x5e\xe3\xa0\xe2\x42\x57\xe3\x6f\x01\x00\xe3\xc3\x93\xce\xe5\x0f\x82\x7b\x6a\xd7\x30\x49\x4f\xd5\x22\xff\xe6\xf1\xf9\xed\x1a\x48\x6a\xbc\x2c\xe7\x3d\xdd\x14\x23\x66\x2f\xd4\x1b\xa1\xca\x58\xcb\x29\xe8\x04\xf5\x89\x45\xf8\xfa\xc3\xf8\x44\x35\x5e\x36\x39\x36\x73\x1d\x4e\x24\xdf\x36\x4b\x5c\xf1\x01\x53\xab\x26\x2a\x8b\xe9\xa8\xf9\x39\x36\x7b\xff\x16\x33\x7c\xac\x06\x69\xd7\xcb\xb2\x3f\xa7\x1f\x32\xa3\xef\x46\x4f\xf5\x7d\x94\xe1\xbc\xbe\xa2\x37\xc1\xd9\xaa\xdc\x72\xf2\x83\xba\x8a\x4c\x1b\x06\x42\x2d\x09\x05\x4b\x83\x39\x0c\x9e\xed\x35\x29\xdf\x8b\xbb\x18\xf9\x83\x14\x49\xde\xc5\x79\x0d\x65\x46\xba\xe5\x75\xd3\x6f\xb2\x49\xe9\x7f\x36\xd9\x4c\x3e\xdc\x78\x7f\x37\x4d\x7e\xcf\x1d\x6f\xc5\xbf\x00\x00\x00\xff\xff\x0c\xba\x48\x82\xf6\x02\x00\x00" +var _stakingcollectionUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xc1\x6e\xc2\x30\x0c\x86\xef\x7d\x8a\x5f\x1c\xa6\x72\x29\x3b\x57\xdb\x50\x55\xd8\x84\x56\xc1\x44\x79\x81\xac\xb8\x25\x22\xc4\x5d\xe2\x0a\xa4\x89\x77\x9f\x4a\x80\x1d\xe0\x80\x0f\xad\x1c\xd9\xbf\x3f\xfb\xd7\xbb\x96\x9d\xe0\xdd\xf0\xbe\x14\xb5\xd5\xb6\xc9\xd9\x18\xaa\x44\xb3\x45\xed\x78\x87\xe7\x43\xb9\xca\x3e\x67\xf3\x8f\x7c\x51\x14\xd3\x7c\x35\x5b\xcc\xb3\xc9\x64\x39\x2d\xcb\x28\x1a\x8d\x46\x58\xd2\x4f\x47\x5e\x3c\x84\xd1\x59\x2f\x6a\x4b\xc8\x8a\x02\xc2\x5b\xb2\x1e\x35\x3b\xc8\x86\xe0\x5b\xaa\x74\xad\x69\x0d\xcb\x6b\x02\x3b\xac\xc9\x50\xa3\x84\x1d\xb4\x0d\x25\x01\x00\xd5\x95\x20\x8a\xc4\x29\xeb\xd5\x29\x89\xfb\xc6\xd9\x24\x45\x29\x4e\xdb\x66\x88\xdf\x08\x00\x4e\x1f\x43\x72\x69\xff\xe7\x5f\x52\x9d\xe2\xe9\xee\x6a\xc9\xcd\x4b\x74\xd2\x69\x1d\xb5\xca\x51\xac\xaa\x8a\x3b\x2b\x29\xb2\x4e\x36\x59\x48\x2e\x03\xfb\xf0\x64\xea\xe4\xde\x40\xbc\xe2\xdc\x9b\x7c\xb3\x73\xbc\x7f\x79\x14\xe0\x2d\xee\xcf\x9d\xde\xb7\xe2\xb6\xbc\x14\x76\xaa\xa1\x2f\x25\x9b\xe1\x15\xab\x8f\xf1\x18\xad\xb2\xba\x8a\x07\x39\x77\xa6\x3f\xb7\x20\xa0\xc0\x51\xdd\xbb\x74\xa3\x35\x08\x0a\xc7\x70\x03\x3a\x50\xd5\x09\x3d\xb2\x6d\x72\x36\x3c\x33\xe6\xea\x4e\xf8\x5f\x14\x8f\xd1\x5f\x00\x00\x00\xff\xff\x92\xff\xa2\x70\x62\x02\x00\x00" func stakingcollectionUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -5819,11 +5630,11 @@ func stakingcollectionUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7c, 0xca, 0x8a, 0xc8, 0xf3, 0x52, 0x88, 0x5d, 0x94, 0xa8, 0xb5, 0xc9, 0x3b, 0x48, 0x3e, 0x46, 0x50, 0xcb, 0xf4, 0x7d, 0x65, 0x39, 0xd5, 0xb2, 0x99, 0xbf, 0xc6, 0xa4, 0xd7, 0xaa, 0x4e, 0xa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0xba, 0xb4, 0x65, 0xa5, 0xa4, 0x6, 0xf6, 0x67, 0x0, 0x75, 0x3a, 0x4f, 0x78, 0x89, 0xab, 0x9a, 0x3c, 0x83, 0xba, 0x1c, 0xf5, 0xe8, 0xae, 0xe7, 0x92, 0xc8, 0xa, 0xea, 0x9e, 0xd7, 0xc1}} return a, nil } -var _stakingcollectionUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x4e\xe3\x40\x0c\xbd\xe7\x2b\x9e\x72\xe8\x26\xd2\x2a\xbd\x57\xbb\x54\xa5\x08\x89\x0b\x20\x2a\x71\x37\x89\x93\x8c\x48\x67\x22\x8f\xa3\x80\x50\xff\x1d\x25\xd3\xb4\x82\xe6\xc0\x05\x1f\x12\xcb\xf6\xf8\x3d\xdb\xcf\xec\x5b\x27\x8a\xdb\xc6\xf5\x3b\xa5\x57\x63\xab\xad\x6b\x1a\xce\xd5\x38\x8b\x52\xdc\x1e\xf1\x6c\x2e\x8e\xa2\xe5\x72\x89\x6d\x4d\xb6\x62\x0f\xad\x19\x96\xb5\x77\x32\x94\x81\x8a\x42\xd8\x7b\x94\x4e\xc6\x94\x6f\x39\x37\xa5\xe1\x02\xd6\x15\x1c\x45\x2a\x64\x3d\x8d\x8d\x92\x21\x72\x77\xb3\xc2\x4e\xc5\xd8\xea\x2f\x2c\xf7\x9b\xf0\x7c\x8a\xa5\xf8\x88\x00\x60\xfc\x34\xac\xf0\xdf\xd9\x3c\x71\xb9\x02\x75\x5a\x27\xb3\x64\xb3\xb3\xfb\xd0\x5b\x96\x14\x8b\xf9\xba\x8b\x48\x34\x62\xb6\xc2\x2d\x09\x27\x94\xe7\xae\xb3\x7a\x84\xba\x76\x22\xae\x7f\xa6\xa6\xe3\x14\x8b\x4d\xc8\x4d\x5c\x07\xf3\xdc\x94\xd9\x1c\x57\xfc\xc7\xb1\x55\xe6\xd5\x09\x55\x9c\xbd\x8c\xcd\xfe\xfd\xc6\x0c\x57\xc9\x70\xc7\xd5\xfc\x8d\x2f\xcb\x77\x81\xd1\x23\x69\x9d\x9e\x46\x19\x6c\xbd\x46\x4b\xd6\xe4\x49\xbc\x75\x5d\x33\x9c\x52\x11\x68\x83\x20\x5c\xb2\xb0\xcd\x19\xea\x40\xb8\xd4\x92\xb1\xa3\x12\x5a\x31\x7b\x92\x77\x74\x9e\xe5\x8f\x9f\xd6\x10\x07\xa4\x43\x58\x37\xbf\x71\xde\x29\xff\x64\x93\x59\xd7\x16\xa4\x7c\x7f\x92\xde\x51\x3a\x27\x55\x85\xff\x57\x55\x9d\xfd\x09\xf6\x10\x7d\x06\x00\x00\xff\xff\xf5\xc0\xe1\x03\x08\x03\x00\x00" +var _stakingcollectionUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x51\x5d\x8b\xe2\x40\x10\x7c\x9f\x5f\x51\xf8\x70\x44\x38\xe2\x3d\x87\xbb\x93\x10\xdd\x45\x56\x74\x31\xfe\x81\xd9\xa4\x93\x0c\x1b\xa7\xc3\x4c\x87\x08\x8b\xff\x7d\x49\xa2\x2e\xbb\xfa\x60\x3f\xe4\xa3\x67\xba\xaa\xba\xca\x1c\x1a\x76\x82\xa7\x9a\xbb\x54\xf4\xbb\xb1\x65\xc2\x75\x4d\x99\x18\xb6\x28\x1c\x1f\xf0\xe7\x98\xee\xe3\x97\xd5\xe6\x39\xd9\xae\xd7\xcb\x64\xbf\xda\x6e\xe2\xc5\x62\xb7\x4c\x53\xa5\x66\xb3\x19\x92\x4a\xdb\x92\x3c\xa4\x22\x58\x92\x8e\x5d\x8f\x02\x9d\xe7\x8e\xbc\x47\xc1\x6e\x38\xf2\x0d\x65\xa6\x30\x94\xc3\x72\x4e\x4a\x89\xd3\xd6\xeb\x81\x27\xe8\x3b\xab\x45\x84\x54\x9c\xb1\xe5\x6f\x58\xea\xe2\x71\xfc\xd2\x9b\xe2\x43\x01\xc0\xf0\xa8\x49\xe0\x7f\x8a\xdd\x51\x11\xe1\xd7\xdd\x3d\xc2\x9b\x8e\x1a\x70\x1a\x47\x8d\x76\x14\xe8\x2c\xe3\xd6\x4a\x84\xb8\x95\x2a\x1e\x7f\x2e\x84\x7d\x79\xaa\x8b\xf0\x1e\x21\xfe\xe1\x3c\x1b\xbe\xb1\x73\xdc\xfd\x7d\x54\xc0\xff\xa0\xf7\x36\xba\xef\xfb\xed\xf5\x54\xd8\xe9\x92\x5e\xb5\x54\xd3\xab\xac\xbe\xe6\x73\x34\xda\x9a\x2c\x98\x24\xdc\xd6\xbd\xb7\x82\x51\x0a\x1c\x15\x10\xc6\x0d\xd6\x64\x44\x38\x8d\x1e\xd0\x91\xb2\x56\xe8\x91\x6d\xc3\xb6\xc9\xb5\xd0\xe6\x9a\xf1\x39\xa3\x6b\x7c\xe3\xfb\x7b\x7c\x5f\xdf\x17\xda\x93\xfa\x0c\x00\x00\xff\xff\xa5\x85\x44\xd5\x74\x02\x00\x00" func stakingcollectionUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -5839,11 +5650,11 @@ func stakingcollectionUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcf, 0x19, 0xee, 0xbd, 0xf6, 0xbe, 0xd2, 0x9d, 0x85, 0x71, 0xd0, 0xad, 0xf4, 0xa7, 0xf2, 0x23, 0xe5, 0xd4, 0x8f, 0xd5, 0xa8, 0x89, 0x1f, 0x90, 0x22, 0x4a, 0x2d, 0xe3, 0xb8, 0xeb, 0x86, 0xf1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdd, 0xff, 0x7b, 0x7f, 0xd9, 0x90, 0x89, 0x51, 0x97, 0x22, 0x0, 0x42, 0x8d, 0x15, 0xe0, 0x7, 0xb8, 0x63, 0x93, 0x9e, 0x61, 0xf, 0x72, 0x10, 0xf7, 0xf8, 0x90, 0x99, 0xf9, 0x47, 0x7a, 0x14}} return a, nil } -var _stakingcollectionWithdraw_from_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xc1\x8e\xd4\x30\x0c\x86\xef\x7d\x0a\xab\x87\xa5\x95\x50\xe7\x82\x38\x54\xc0\x0a\x16\x8d\xc4\x01\x81\x76\x80\xbb\x49\xdd\x69\x34\x69\x5c\x1c\x87\xee\x0a\xed\xbb\xa3\x34\xd3\x5d\x89\xe9\x81\xcb\xe6\xd0\x54\x89\x63\xff\xbf\xfd\xd9\x71\x62\x51\xd8\x3b\x9e\x0f\x8a\x27\xeb\x8f\x37\xec\x1c\x19\xb5\xec\xa1\x17\x1e\xa1\xdc\xbc\x2b\x8b\x62\xb7\xdb\xc1\x2d\xfd\x8a\x14\x14\x94\x61\xb6\x3a\x74\x82\x33\x28\x9f\xc8\x87\xfc\x58\x07\x82\x11\xcd\x60\x3d\x01\x1a\xc3\xd1\xeb\xf2\xee\xdb\x40\x6b\x1c\x0a\x01\x46\xe5\x11\xd5\x1a\x74\xee\x1e\x3a\x9a\x38\x58\xa5\x2e\xa5\x4d\x19\xa2\x77\x6c\x4e\xd4\xad\x29\xe0\x37\x46\xa7\x45\xa1\x82\x3e\xe0\xa2\xa7\xf2\xdc\xd1\xa7\x8f\x2d\x1c\x54\xac\x3f\xbe\x04\x1c\x53\x64\x0b\xdf\xf7\xf6\xee\xf5\xab\x1a\xfe\x14\x00\x00\xcb\xc7\x91\x42\xf8\xd7\xd0\x2d\xf5\x6d\xd2\x31\x54\x9b\x7e\x9b\xa7\xdf\x2f\xb3\x27\xa9\xe1\x6a\x3b\xee\xe2\xa4\x58\x6a\x4e\x42\x13\x0a\x55\x67\x07\xe7\x52\x1f\x58\x84\xe7\x1f\xe8\x22\xd5\x70\xf5\x3e\xdf\xad\x5a\xd3\x0a\xe4\xfa\x66\x4b\x2b\xbc\x5d\x9b\xd1\x04\x65\xc1\x23\x35\x3f\x97\x64\x6f\x9e\xc3\xc3\xbb\x2a\x4d\xb3\xdd\xc6\xe4\x32\xfc\x90\x15\x7d\x45\x1d\xea\x47\x2b\x69\x5d\x5f\xc3\x84\xde\x9a\xaa\xbc\xe1\xe8\x3a\xf0\xac\x90\x65\x03\x82\x50\x4f\x42\xde\x24\x32\x00\xe1\x12\x47\xeb\x17\x1a\x26\xb1\x23\xca\x3d\xc4\x40\xf2\x22\xac\x6d\x28\x73\xa5\x87\xdc\x6e\xba\x23\x13\x95\xfe\xa7\x93\xcd\x0a\xee\x5e\x78\xfc\x9c\x59\x3d\x4f\xe2\x11\xaa\xbc\x3f\x41\x95\xf7\xb5\xe2\x43\xf1\x37\x00\x00\xff\xff\x3e\x13\xf0\x11\x46\x03\x00\x00" +var _stakingcollectionWithdraw_from_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x8e\xd3\x40\x0c\xbd\xe7\x2b\xac\x3d\xa0\xac\x84\x52\x0e\x88\x43\x04\xac\xa2\xb4\x45\x15\xa5\x45\x4d\xf9\x00\x33\x71\x9a\x51\x27\xe3\x30\xf1\x90\x22\xd4\x7f\x47\xc9\x34\x45\xda\xf6\x50\x1f\x62\x65\x64\x3f\x3f\xbf\x67\xdd\xb4\xec\x04\x96\x86\xfb\x42\xf0\xa8\xed\x21\x67\x63\x48\x89\x66\x0b\x95\xe3\x06\xde\x9d\x8a\x7d\xf6\x75\xb5\xf9\x92\x6f\xd7\xeb\x45\xbe\x5f\x6d\x37\xd9\x7c\xbe\x5b\x14\x45\x14\xcd\x66\x33\xd8\xd1\x2f\x4f\x9d\x80\x30\xf4\x5a\xea\xd2\x61\x0f\xc2\x47\xb2\x5d\xe8\x97\x9a\xa0\x41\x55\x6b\x4b\x80\x4a\xb1\xb7\x32\xf6\xed\x6b\x9a\xea\xd0\x11\xa0\x17\x6e\x50\xb4\x42\x63\xfe\x40\x49\x2d\x77\x5a\xa8\x1c\x60\x07\x04\x6f\x0d\xab\x23\x95\x13\x04\xfc\x46\x6f\x24\x8a\xc4\xa1\xed\x70\xa4\x1b\x5b\x2e\x69\x35\x4f\xa1\x10\xa7\xed\xe1\x2d\x60\x33\x54\xa6\xf0\x63\xa9\x4f\x1f\xde\x3f\xc3\xdf\x08\x00\x60\xfc\x18\x12\xe8\x5e\xef\xbb\xa3\x2a\x85\x37\x77\xa5\x48\x6e\x5e\xa2\x11\xa7\x75\xd4\xa2\xa3\xf8\xc2\x2a\x85\xcc\x4b\x9d\x85\x9f\x69\xe0\x10\x1d\x99\x2a\xb9\x37\x10\x3e\x4d\x1b\x25\x3f\xd9\x39\xee\x3f\x3e\x4a\xe0\x73\x3c\xc8\x9b\xde\xb7\xee\xb6\xbc\x10\x76\x78\xa0\xef\x28\xf5\xf3\x95\xd6\x10\x2f\x2f\xd0\xa2\xd5\x2a\x7e\xca\xd9\x9b\x12\x2c\x0b\x04\x2a\xe0\xa8\x1a\xf4\xbf\xc1\x7a\x0a\x08\xe7\xa0\x01\x9d\x48\x79\xa1\x47\xb6\x4d\xa6\x0b\x59\x3a\x6e\xbe\x85\xa3\xb8\xa8\x75\x75\x2f\xe4\xff\xee\x85\x3c\x4d\x3c\x47\xff\x02\x00\x00\xff\xff\xdb\xab\x20\x8d\xb2\x02\x00\x00" func stakingcollectionWithdraw_from_machine_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -5859,11 +5670,11 @@ func stakingcollectionWithdraw_from_machine_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_from_machine_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x79, 0x73, 0xe2, 0xa4, 0xc3, 0x56, 0x8, 0x7c, 0xae, 0x27, 0x26, 0x4d, 0x17, 0x2d, 0xf2, 0xd5, 0xe4, 0x6e, 0x23, 0xa6, 0x6c, 0x17, 0xd, 0xf2, 0xe, 0x35, 0xdb, 0x65, 0x31, 0x32, 0xcb, 0x3c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc7, 0x7c, 0xe3, 0xa9, 0xe3, 0x68, 0x1a, 0x64, 0x88, 0xe, 0xc6, 0xc4, 0xa4, 0x9b, 0x35, 0x9f, 0xa1, 0x43, 0xf2, 0x57, 0x79, 0xca, 0x6d, 0xa4, 0x6e, 0x57, 0xfe, 0xbe, 0x2f, 0x2e, 0x1f, 0xef}} return a, nil } -var _stakingcollectionWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x8f\xd3\x3c\x10\xbe\xe7\x57\x3c\xea\x61\xdf\x56\xaa\x5a\xe9\x05\x71\xa8\x80\x6a\x59\xb4\xd2\x9e\x40\xed\x2e\xf7\xc1\x99\xb4\x56\x1d\x3b\x8c\x27\x64\x2b\xb4\xff\x1d\x39\x1f\xcd\x8a\xe6\xc0\x05\x1f\xea\xc6\x9e\x3c\x1f\x93\x67\x6c\x59\x05\x51\xdc\xbb\xd0\xec\x95\x4e\xd6\x1f\xee\x82\x73\x6c\xd4\x06\x8f\x42\x42\x89\xd9\xe4\xdd\x2c\xcb\xd6\xeb\x35\x76\xfc\xa3\xe6\xa8\xd0\x80\xc6\xea\x31\x17\x6a\x20\xdc\x90\xe4\x9c\x43\xc3\x89\x7d\x44\x11\x04\x7a\x64\xc4\x8a\x8d\x2d\x2c\xe7\xf0\x21\x67\x04\x41\xce\x8e\x0f\xa4\x41\x60\x7d\x57\xd2\xd1\xc0\x5c\x78\x5a\x96\xc7\x23\x0f\x60\x24\x0c\xaa\x35\x94\xa4\xd6\x90\x73\x67\xe4\x5c\x85\x68\xb5\xe5\x6b\x41\x6a\xef\x82\x39\x71\x0e\x32\x26\xd4\x5e\xf1\x93\x6a\xa7\x28\xac\x44\x5d\xb6\x78\xb7\x3e\x4f\x95\x1e\xe4\xcf\xe8\x8b\x5f\xe1\x8f\x88\xd6\xf7\x98\x53\x88\x59\xa6\x42\x3e\x52\xab\x73\x9e\x3c\x3d\x7c\xde\x60\xaf\x62\xfd\x61\x39\x7a\x4b\x87\x4f\x0f\x5e\xdf\xfc\xbf\x5d\x82\xca\xf4\xfe\x06\x4f\xf7\xf6\xf9\xdd\xdb\x05\x7e\x65\x00\xd0\xfe\x38\xd6\xc1\xff\xd8\xe6\x1d\x17\x9b\xe4\xf7\x38\x9f\xfc\x0a\xab\xf1\xef\x97\xc6\xb3\x2c\x70\x33\x5d\x77\x75\x92\xb5\x9c\x95\x70\x45\xc2\xf3\xde\x57\x4f\xf5\x29\x88\x84\xe6\x1b\xb9\x9a\x17\xb8\xb9\xed\xee\x06\xad\x69\x45\x76\xc5\x6a\x4a\x2b\x3e\x0c\x2d\x5a\x45\x0d\x42\x07\x5e\x7d\x6f\xc1\xde\xff\x0b\x0f\x1f\xe7\x29\xa0\x9b\xe9\xf0\x5e\x97\xef\x3b\x45\x5f\x49\x8f\x8b\x8b\x95\xb4\xb6\x5b\x54\xe4\xad\x99\xcf\xee\x42\xed\x52\x3c\x15\x9d\x6c\x10\x84\x0b\x16\xf6\x26\x25\x10\x84\xeb\x21\xe9\xa3\x5b\x89\x2d\x49\xce\xa8\x23\xcb\x7f\x71\x68\xc3\xac\x63\x7a\xe9\xda\xcd\xcf\x6c\x6a\xe5\xbf\xe9\xe4\x6a\x18\xa7\x5d\x3f\x4d\x8f\x6d\x3e\x2f\x31\xeb\xf6\x3f\x62\xf6\xea\x61\x8c\x5a\xb7\x0f\x3a\x5e\xb2\xdf\x01\x00\x00\xff\xff\xea\x2d\x23\xfe\xf2\x03\x00\x00" +var _stakingcollectionWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x8f\x1c\x8a\x03\xc6\x2e\x6d\xe9\x41\xb4\x35\xc2\x4e\x8a\x69\x48\x8a\xe5\xfc\x80\xad\x34\xb2\x16\xaf\x77\xd4\xd1\xa8\x72\x28\xf9\xef\x65\x25\xcb\x0e\xb5\x0f\xde\x83\x96\x5d\x46\xdf\xbc\xd9\xf7\xec\xae\x62\x51\xdc\x3b\x6e\x53\x35\x5b\xeb\x37\x73\x76\x8e\x32\xb5\xec\x51\x08\xef\xf0\x7e\x9f\xae\x93\x1f\xcb\xc7\xef\xf3\xa7\x87\x87\xbb\xf9\x7a\xf9\xf4\x98\x2c\x16\xab\xbb\x34\x8d\xa2\xe9\x74\x8a\x15\xfd\x6e\xa8\x56\x28\xa3\xb5\x5a\xe6\x62\x5a\x08\xb5\x46\x72\xca\xa1\xbc\x25\x5f\xa3\x60\x81\x96\x84\xba\xa2\xcc\x16\x96\x72\x78\xce\x09\x2c\xc8\xc9\xd1\xc6\x28\x0b\xac\xef\x4b\x7a\x15\xc8\x8e\x32\xba\x2e\xeb\x92\x06\x98\x11\x82\x69\x94\x77\x46\x6d\x66\x9c\x7b\x41\x4e\x15\xd7\x56\xbb\x7e\x1d\xa4\xf1\x8e\xb3\x2d\xe5\x30\x59\xc6\x8d\x57\xfc\x31\x8d\x53\x14\x56\x6a\x1d\x77\xbc\xc4\xe7\xa1\xd2\xc3\xf8\x17\x1c\x8a\xdf\xf0\x4f\x44\xeb\x0f\xcc\x4b\xc4\x28\x52\x31\xbe\x36\x9d\xce\x51\x98\x69\xb9\x88\x91\xaa\x58\xbf\x19\x9f\x66\x0b\x97\xcf\x4b\xaf\x1f\x3f\xcc\xc6\x30\xbb\xf0\x7f\x8c\xe7\x7b\xbb\xff\xfc\xe9\x16\x7f\x23\x00\xe8\x3e\x8e\x74\x98\xff\xe4\xc2\x8a\x8a\x18\xef\x2e\x1a\x34\x39\xbb\x89\x3a\x4e\x25\x54\x19\xa1\xd1\x41\x6b\x8c\xa4\xd1\x32\xe9\x0f\x43\xc3\xb0\x6a\x72\xc5\xe4\x52\x43\x7c\x1d\xe6\x9c\xfc\x62\x11\x6e\xbf\x5c\x2b\xe0\xdb\x28\x84\x26\xbe\x1c\xa8\xf3\xf2\x54\x59\xcc\x86\x7e\x1a\x2d\x6f\x8f\xb2\xc2\x9a\xcd\x50\x19\x6f\xb3\xd1\xcd\x9c\x1b\x17\xf2\xa2\xe8\xa5\x40\xa8\x08\x3e\x9f\xb1\x6e\x7a\xc2\x6b\xff\x06\xb4\xa7\xac\x51\xba\x66\xda\xc9\x90\xdb\xd5\x21\xb6\xeb\x2e\x08\x47\x3f\xfb\xfd\x3f\x3f\xdf\x1c\x4e\x9e\xf6\xfb\xa0\xe3\x35\xfa\x17\x00\x00\xff\xff\x64\xbf\x03\x75\x5e\x03\x00\x00" func stakingcollectionWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5879,11 +5690,11 @@ func stakingcollectionWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfb, 0x9a, 0xe1, 0x39, 0x28, 0x58, 0x61, 0xdc, 0x20, 0xc7, 0x14, 0x5c, 0xba, 0xb3, 0x84, 0xc9, 0x6a, 0x57, 0xb9, 0x13, 0x4f, 0x98, 0xa7, 0x23, 0xf, 0xc1, 0x35, 0x93, 0x60, 0xd1, 0x23, 0x6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe6, 0x49, 0x8d, 0xd0, 0x5b, 0x42, 0x21, 0x6d, 0xfa, 0xef, 0x43, 0x36, 0x96, 0xc0, 0x98, 0x8f, 0x63, 0x76, 0xd0, 0x1a, 0xda, 0xbb, 0x68, 0x23, 0x3d, 0x88, 0x97, 0xea, 0xba, 0x59, 0x73, 0xd7}} return a, nil } -var _stakingcollectionWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\xcd\x6e\xdb\x3c\x10\xbc\xeb\x29\x06\x3e\xe4\xb3\x01\xc3\x06\xbe\x16\x3d\x18\x6d\x8d\x34\x45\x80\x9c\x5a\xc4\x71\xef\x5b\x6a\x65\x13\xa6\x49\x75\xb9\xac\x63\x14\x79\xf7\x82\xfa\xb1\x82\x5a\x87\x5e\xca\x83\x28\x91\x8b\x99\x9d\xd1\xac\x3d\xd6\x41\x14\xf7\x2e\x9c\x36\x4a\x07\xeb\x77\x77\xc1\x39\x36\x6a\x83\x47\x25\xe1\x88\xc9\xe8\xdd\xa4\x28\x96\xcb\x25\x1e\xf9\x47\xe2\xa8\xd0\x80\x93\xd5\x7d\x29\x74\x42\xf2\x51\xe9\xc0\x25\x34\x1c\xd8\x47\x54\x41\xa0\x7b\x46\xac\xd9\xd8\xca\x72\x09\x1f\x4a\x46\x10\x94\xec\x78\x47\x1a\x04\xd6\xb7\x25\x2d\x0d\xcc\x85\xa7\x61\x79\xda\x73\x0f\x46\xc2\xa0\xa4\xe1\x48\x6a\x0d\x39\x77\x46\xc9\x75\x88\x56\x1b\xbe\x06\x24\x79\x17\x4c\xe6\x27\x63\x42\xf2\x8a\x9f\x94\x9c\xa2\xb2\x12\x75\xde\xe0\xdd\xfa\x32\x57\x7a\x90\x3f\xa3\x2b\x7e\x85\x3f\x20\x5a\xdf\x61\x8e\x22\xda\x0a\x56\x61\x63\xae\x10\x2e\x0a\x15\xf2\x91\x9a\xb6\xa7\x59\xe2\xc3\xe7\x15\x36\x2a\xd6\xef\xe6\x83\xd4\x7c\xb8\x7d\xf0\xfa\xe6\xff\xf5\x1c\x74\xcc\x70\x2b\x6c\xef\xed\xf3\xbb\xb7\x33\xfc\x2a\x00\xa0\x79\x38\xd6\xde\x8e\xc1\xf5\x47\xae\x56\x59\xfe\x7e\x3a\xfa\x53\x16\xc3\xeb\x97\x93\x67\x99\xe1\x66\xbc\xee\xea\xa4\x68\x38\x6b\xe1\x9a\x84\xa7\x9d\xcc\x8e\xea\x53\x10\x09\xa7\x6f\xe4\x12\xcf\x70\x73\xdb\xde\xf5\xbd\xe6\x15\xd9\x55\x8b\xb1\x5e\xf1\xa1\x77\x6c\x11\x35\x08\xed\x78\xf1\xbd\x01\x7b\xff\x2f\x34\x7c\x9c\xe6\xbc\xae\xc6\xb3\x7c\x5d\xbe\x69\x3b\xfa\x4a\xba\x9f\x5d\xa4\xe4\xb5\x5e\xa3\x26\x6f\xcd\x74\x72\x17\x92\xcb\x69\x55\xb4\x6d\x83\x20\x5c\xb1\xb0\x37\x39\x90\x20\x5c\xcf\x4c\x97\xe4\x5a\xec\x91\xe4\x8c\x14\x59\xfe\x8b\xbd\x0d\x93\x96\xe9\xa5\xb5\x9b\x9f\xd9\x24\xe5\xbf\x71\x72\xd1\x4f\xd7\xb6\x1b\xae\xa7\x26\xae\x97\x98\xb5\xfb\x1f\x31\x7b\xf5\x31\x44\xad\xdd\xfb\x3e\x5e\x8a\xdf\x01\x00\x00\xff\xff\xf5\xac\x11\xd5\x01\x04\x00\x00" +var _stakingcollectionWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x8f\xda\x30\x10\x85\xef\xf9\x15\x4f\x7b\xa8\x58\x09\x41\xd5\x56\x3d\xa0\xb6\x28\x82\xdd\x0a\x75\xb5\x5b\x11\xf8\x01\xd3\x64\x42\x2c\x8c\x27\x75\xc6\x85\x55\xb5\xff\xbd\x72\x42\x60\x55\x38\xac\x0f\xb6\x6c\x8d\xbe\x79\xe3\xf7\xcc\xae\x16\xaf\xb8\xb7\xb2\xcf\x94\xb6\xc6\x6d\x66\x62\x2d\xe7\x6a\xc4\xa1\xf4\xb2\xc3\xfb\x43\xb6\x4a\x7f\x2c\x1e\xbf\xcf\x9e\x1e\x1e\xee\x66\xab\xc5\xd3\x63\x3a\x9f\x2f\xef\xb2\x2c\x49\xc6\xe3\x31\x96\xfc\x3b\x70\xa3\x50\xc1\xde\x68\x55\x78\xda\x23\xb8\x46\x69\xcb\x05\x54\xb6\xec\x1a\x94\xe2\xa1\x15\xa3\xa9\x39\x37\xa5\xe1\x02\x4e\x0a\x86\x78\x14\x6c\x79\x43\x2a\x1e\xc6\x75\x25\x9d\x0a\xe4\x27\x19\x6d\x97\x55\xc5\x3d\x8c\x3c\x83\x82\xca\x8e\xd4\xe4\x64\xed\x33\x0a\xae\xa5\x31\xda\xf6\x6b\x21\xc1\x59\xc9\x63\x7f\xca\x73\x09\x4e\xf1\x87\x82\x55\x94\xc6\x37\x3a\x6c\x79\xa9\x2b\x62\xa5\x03\xb9\x67\x1c\x8b\x5f\xf1\xcf\x44\xe3\x8e\xcc\xab\x44\x53\xc2\x28\x4c\x13\x2b\x3c\x27\x89\x7a\x72\x0d\xb5\xb2\x07\x71\xc4\xc5\x7c\x82\x4c\xbd\x71\x9b\xe1\x79\xd4\xf8\xb8\x5e\x38\xfd\xf8\x61\x3a\x04\xed\x22\x6e\x82\xf5\xbd\x39\x7c\xfe\x74\x8b\xbf\x09\x00\xb4\x9b\x65\xed\xbf\xe3\x6c\xca\x92\xcb\x09\xde\x5d\xf5\x6b\x74\xf1\x92\xb4\x9c\xda\x73\x4d\x9e\x07\x47\xe9\x13\xa4\x41\xab\xb4\xbb\xf4\x0d\xe3\x6a\xd8\x96\xa3\x6b\x0d\xf1\xb5\x1f\x7b\xf4\x4b\xbc\x97\xfd\x97\xb7\x0a\xf8\x36\x88\x19\x9a\x5c\xcf\xd7\x65\x79\xa6\xe2\x69\xc3\x3f\x49\xab\xdb\x93\xac\xb8\xa6\x53\xd4\xe4\x4c\x3e\xb8\x99\x49\xb0\x31\x3e\x8a\x4e\x0a\x3c\x97\xd1\xf6\x0b\xd6\x4d\x47\x78\xe9\xfe\x80\x0f\x9c\x07\xe5\xb7\x4c\x3b\xea\x63\xbc\x3e\xa6\x78\xd5\xe6\xe2\xe4\x67\x77\xfe\xe7\xe7\xab\xcb\xd9\xd3\xee\xec\x75\xbc\x24\xff\x02\x00\x00\xff\xff\x02\xba\xdf\x67\x6d\x03\x00\x00" func stakingcollectionWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5899,11 +5710,11 @@ func stakingcollectionWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf9, 0x49, 0x4d, 0x12, 0xd3, 0x8d, 0x96, 0x6e, 0x9, 0xec, 0x17, 0xc4, 0xc6, 0x99, 0x84, 0x28, 0xbd, 0x52, 0x73, 0x96, 0x3, 0x75, 0x59, 0x22, 0x85, 0x43, 0x73, 0xfa, 0x70, 0xe1, 0x91, 0xe0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0x94, 0x7f, 0x6f, 0xf0, 0xe4, 0x28, 0x27, 0x2d, 0x99, 0x6, 0xd7, 0xff, 0xf1, 0xff, 0xa5, 0x7, 0x3a, 0x22, 0x3c, 0xba, 0x2f, 0xff, 0x40, 0x14, 0xdd, 0xe2, 0x43, 0x68, 0x43, 0xb0, 0x64}} return a, nil } -var _stakingproxyAdd_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x43\x0e\x92\x80\xe4\x5c\x42\xad\x58\x7b\xa8\x14\x5a\x41\xda\xfb\x98\x9d\xe8\xd2\xb8\xb3\x4c\x26\x58\x29\xfe\xf7\xb2\x46\x4d\x42\xba\x87\x90\x7d\x3b\x33\xfb\xed\x7b\xf6\xe0\x59\x14\x36\x8a\xdf\xd6\xed\xd6\xc2\x3f\x27\x28\x85\x0f\x10\xf7\xa5\x38\x8a\x54\xd0\xd5\x58\xa8\x65\x97\x58\x93\xc3\x46\xc5\xba\xdd\x14\x84\x2b\xca\xe1\x73\xe5\xf4\x61\x0a\x8e\xf4\xc8\x12\xda\x16\xc6\x08\xd5\x75\x57\xd7\x1d\xbd\xd1\xa9\x93\xeb\xf6\x96\x9e\x96\xc2\x6f\x14\x01\x00\x78\x21\x8f\x42\x09\x16\x05\x37\x4e\x73\xc0\x46\xf7\xc9\x33\x8b\xf0\xf1\x0b\xab\x86\x52\x98\x2c\xda\xb3\xd0\x03\xd7\x55\x91\x82\x0f\xd0\xaf\x5c\x19\x12\x98\xc1\x75\x40\x56\x2b\x0b\xee\x28\xdb\x5e\x46\x3c\x4e\xfa\x2f\xcc\xde\xd9\x50\x10\x48\xd6\x5d\xf3\x53\x12\xbc\xc8\x61\x54\xf9\xe1\x49\x50\x59\x96\xe8\x71\x6b\x2b\xab\xa7\x4d\x3b\x7c\x8d\xba\x4f\xef\x2c\x61\xcd\xe7\xe0\xd1\xd9\x22\x89\x97\xdc\x54\x06\x1c\x2b\xb4\x04\x20\x54\x92\x90\x2b\x08\x94\x6f\x4e\xb4\xec\xb0\xbf\xdc\x1f\xa7\xd1\xe0\x5d\x8e\x0d\xad\x5c\xc9\x30\x1b\x23\x05\x3d\xb9\x14\xbc\xe4\x60\xcd\x2d\x99\xf0\xfd\x37\x98\x91\x34\xca\x68\xb0\x1d\x46\xd5\xfd\xf7\x08\x7b\xae\x67\x68\xcc\x10\xca\x95\x9c\xdf\xf9\x5b\x87\xce\xd1\x39\xfa\x0b\x00\x00\xff\xff\x8d\x03\xa9\x86\x80\x02\x00\x00" +var _stakingproxyAdd_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x41\xa4\xc7\x12\x6a\x25\x68\x69\x45\xd0\x60\x5a\x68\x8f\x6b\x76\xa2\x4b\xe3\xce\x32\x19\x51\x29\xfe\xf7\xb2\x46\x4d\x42\xba\x87\x90\x7d\x79\x9b\xfd\xde\x3c\xb3\x73\xc4\x02\xa9\xa8\x1f\x63\x37\x09\xd3\xf1\x04\x39\xd3\x0e\x1e\x8f\xe9\x47\x3c\x9f\x2d\xde\x92\xd5\xf2\xeb\x3b\x9e\x4e\x57\xaf\x69\x1a\x04\xc2\xca\x96\x2a\x13\x43\x36\x34\x3a\x82\x54\xd8\xd8\xcd\x00\x98\x0a\x8c\xe0\x73\x66\xe5\x69\x00\x16\xe5\x40\xec\x7f\x18\x6b\xcd\x58\x96\xb5\xaf\xfe\x34\xc7\x53\x2d\x97\xd5\xfd\x0d\xad\x0f\xbf\x41\x00\x00\xe0\x18\x9d\x62\x0c\x55\x96\xd1\xde\x4a\x04\xf1\x5e\xb6\x71\xb5\xf1\x26\xb8\xae\x02\x05\x9c\xe7\x7f\xa7\x42\x23\xc3\x08\xae\x27\x86\x6b\x62\xa6\xc3\xf3\x43\x33\xe4\x70\x41\x1a\xbd\x80\x9c\xd4\x87\x5e\x42\x9f\x3d\x82\x8e\x73\xe9\x90\x95\x10\x4f\x94\x53\x6b\x53\x18\x39\xa5\x42\xac\x36\x98\x28\xd9\xf6\xef\x0c\x7e\x8d\xc7\xe0\x94\x35\x59\xd8\x9b\xd0\xbe\xd0\x60\x49\xa0\x22\x00\xc6\x1c\x19\x6d\x86\x20\x74\x8b\x5c\x31\xc3\xf6\x72\x7f\xaf\x1f\xb4\xf2\x58\xd2\x38\xb3\x39\xc1\xa8\x8b\xe4\xf5\xf0\x62\x98\x46\x60\xf4\xad\x02\xff\xfc\xb7\x81\x8e\xd4\x29\xa3\xb5\x6d\x77\x52\xbf\x37\x08\x1b\xd3\x1e\x2a\xad\xdb\x50\x36\xa7\xe8\xce\x5f\x4d\xe8\x1c\x9c\x83\xbf\x00\x00\x00\xff\xff\x31\xc4\x60\xc0\x70\x02\x00\x00" func stakingproxyAdd_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5919,11 +5730,11 @@ func stakingproxyAdd_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/add_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x4c, 0x70, 0x39, 0x70, 0x71, 0x9e, 0x6c, 0x1, 0xdf, 0x9c, 0x65, 0xbf, 0x4, 0xb9, 0xfd, 0xe4, 0x59, 0x8e, 0x5a, 0xcf, 0xd2, 0x23, 0xd, 0x25, 0x7, 0xa2, 0xd, 0xd3, 0xe, 0xb1, 0x72}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb5, 0xf2, 0xa0, 0xe3, 0xb7, 0x7c, 0x79, 0xbd, 0xee, 0x11, 0x1e, 0x31, 0xf2, 0x7a, 0xdc, 0xa2, 0xf, 0xae, 0xba, 0x2a, 0x46, 0x9a, 0xf3, 0x65, 0xd9, 0xb4, 0x2d, 0xd1, 0x43, 0x7c, 0x8, 0xf6}} return a, nil } -var _stakingproxyGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x4e\xf3\x30\x10\x85\xf7\x3e\xc5\xfb\xb3\xf8\x95\x48\x28\x07\xa8\x80\xaa\x2a\x0b\xd8\x40\x45\x4f\xe0\x3a\x93\x60\xe1\x7a\xac\xf1\x44\x50\x55\xbd\x3b\x4a\xad\x14\x50\x17\xcc\xc6\xf2\xcc\xbc\x37\x4f\x9f\xdf\x27\x16\xc5\x56\xed\xbb\x8f\xc3\x46\xf8\xf3\x80\x5e\x78\x8f\xea\x67\xab\x32\xc6\x3a\x47\x39\xd7\x36\x84\x06\xfd\x18\xb1\xb7\x3e\xd6\xd6\x39\x1e\xa3\x2e\xb0\xea\x3a\xa1\x9c\x6f\x10\xb9\xa3\xa7\x87\x05\xb6\x2a\x3e\x0e\xcd\xe2\x97\x73\xfb\x3c\x4d\x63\xcf\x38\x1a\x03\x00\x81\x14\x69\x9a\xbc\x52\x8f\x3b\x0c\xa4\xab\xe2\x38\x3b\x37\xe7\xb5\xa9\x5a\x67\x93\xdd\xf9\xe0\xd5\x53\x6e\x77\x2c\xc2\x1f\xb7\xff\xaf\xdc\xa7\x06\xc9\xf9\xff\xc8\xa1\x23\x39\xfe\xbd\xb2\x19\x77\xc1\xbb\xd3\x7d\x7d\x39\x36\xd5\x95\xee\x25\x91\x58\x65\x59\xcf\x41\x0e\x45\xb8\xb1\xfa\x76\x51\x7e\x07\x5e\x2e\x91\x6c\xf4\xae\xae\xd6\x3c\x86\x0e\x91\x15\x25\x36\xd2\x59\x07\xa1\x9e\x84\xa2\x23\x28\x23\x97\x73\x05\x47\xd5\x14\x3e\x42\x3a\x4a\xbc\x20\x6a\x07\xd2\x19\x61\x3d\x93\x2e\x6f\xf3\xcf\x9c\xcc\x57\x00\x00\x00\xff\xff\x07\xe6\x21\xd3\xcd\x01\x00\x00" +var _stakingproxyGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x53\x0f\x25\x81\x22\x3d\x4b\xad\x04\x2d\xad\x14\x34\x98\x1e\xda\xe3\xba\x99\xa4\x4b\xd7\x9d\x65\x32\xa1\x8a\xf8\xdf\xcb\xba\xd5\x50\x3d\x74\x2e\x21\x3b\x6f\xde\xb7\x6f\xd6\x6c\x3c\xb1\x40\x29\xea\xcb\xb8\xa6\x60\xda\xee\xa0\x66\xda\xc0\xfd\xb6\x7c\xcb\x5f\xe7\x8b\xe7\x62\xb5\x7c\xff\xc8\x67\xb3\xd5\x53\x59\x26\x89\xd2\x1a\xdb\x36\x55\xd6\x66\x50\x77\x0e\x36\xca\xb8\x54\x69\x4d\x9d\x93\x11\xe4\x55\xc5\xd8\xb6\x77\xe0\xa8\xc2\xf9\x6c\x04\xa5\xb0\x71\x4d\x36\xfa\x03\x18\x2e\x42\xd7\xd5\x04\xfb\x24\x01\x00\xb0\x28\xe0\x43\x67\xaa\xbc\x5a\x1b\x6b\x64\x07\x63\x68\x50\xf2\x68\x7c\x02\x64\x47\x75\xa8\x61\x83\xd2\x8b\x1f\x6e\xaf\xec\xc3\x01\xf2\xf1\xff\x85\x6c\x85\xbc\xff\x5f\x52\x74\x6b\x6b\xf4\xe1\x31\x3d\x63\x42\x5d\xcd\x2d\x3d\xb2\x12\xe2\x9e\x1f\x07\x0b\x25\x9f\xe7\xc9\xec\x22\xd9\x0a\x6b\x18\x5f\x86\x1c\xae\x89\x99\xbe\xd3\x3e\xd7\x64\x02\x5e\x39\xa3\xd3\xc1\x94\x3a\x5b\x81\x23\x81\x28\x02\x7f\x84\x00\x63\x8d\x8c\x4e\x23\x08\x41\x1b\xef\x16\x7d\x07\xbf\x4c\x46\xe9\xd8\x9d\xb1\x61\x55\xa7\x85\xa7\xa7\x77\x89\xdf\xec\x26\x39\x24\x3f\x01\x00\x00\xff\xff\xb5\x20\x40\x9d\x02\x02\x00\x00" func stakingproxyGet_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5939,11 +5750,11 @@ func stakingproxyGet_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/get_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0x3e, 0xd4, 0xe5, 0xc4, 0x95, 0x56, 0x6b, 0xfd, 0xc9, 0xe5, 0x64, 0xc, 0x1b, 0xe0, 0xbd, 0xff, 0x2b, 0x95, 0x9a, 0xaf, 0x4e, 0xdd, 0xf1, 0x3c, 0xf7, 0x3e, 0xc0, 0xfd, 0x96, 0x31, 0x6c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x14, 0x30, 0x23, 0x9a, 0x54, 0x69, 0x99, 0xc9, 0xf2, 0x30, 0xe0, 0xed, 0x81, 0x19, 0x11, 0xd6, 0xbe, 0x6f, 0x9d, 0x36, 0xfa, 0x50, 0x2b, 0xa6, 0xf6, 0x68, 0x34, 0x6f, 0x9e, 0xcd, 0x24, 0x49}} return a, nil } -var _stakingproxyRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x93\x41\x8f\xd3\x30\x10\x85\xef\xf9\x15\xa3\x1c\x4a\x22\x55\x3e\x21\x0e\x11\x65\xb5\xec\x0a\x81\x84\x96\x8a\x02\x77\xd7\x9e\xa4\x56\x53\x4f\xe4\x4c\x44\x2b\xb4\xff\x1d\x39\x76\x52\xb7\x05\x84\xb4\xbe\x64\xd7\xe3\x79\xf3\xbd\x67\xd7\x1c\x3a\x72\x0c\x9f\x49\xed\x51\x7f\xa3\x3d\xda\x1e\x6a\x47\x07\xc8\xd3\xad\x3c\x8b\xe7\x36\x2c\xf7\xc6\x36\x6b\x47\xc7\x53\x3c\x97\x6e\xe5\x59\xc6\x4e\xda\x5e\x2a\x36\x64\x0b\xa9\xb5\xc3\xbe\xaf\xe0\x3e\xfc\xb1\x04\xa3\x2b\xd8\xb0\x33\xb6\x59\x82\x3c\xd0\x60\xb9\x82\xef\x1f\xcc\xf1\xcd\xeb\x12\x7e\x65\x19\x00\x40\x8b\x0c\x3b\x6a\x35\xba\xaf\x58\x57\x20\x07\xde\x15\x29\x8b\x18\x3f\x5f\x3a\x74\xd2\x0f\xe9\x4b\x58\xdc\x96\x3f\x8e\x02\x41\xb0\x73\xd8\x49\x87\x85\x54\x2a\x0c\x1c\x25\xdf\x93\x73\xf4\xf3\x87\x6c\x07\x2c\x61\x71\x1f\x6a\x1e\x02\xe2\xea\xb1\xad\xc5\x0c\x02\x2b\x88\xfd\xa2\x67\x72\xb2\x41\xb1\x1d\x15\xde\xbe\x04\xf0\x5d\xe1\x33\xac\xe0\x6f\xf5\x4d\x18\xb5\x96\xbc\x2b\x67\x30\xbf\xee\xee\xa0\x93\xd6\xa8\x22\x7f\xa0\xa1\xd5\x60\x89\x21\xf0\x80\xc3\x1a\x1d\x5a\x85\xc0\x04\x89\x56\x1e\x14\x9e\x43\x28\x78\x44\x35\x30\x26\x7e\x7d\xee\x96\x34\x06\x70\x8a\xa6\x1b\xe4\x98\xcd\x74\x9b\xa5\x50\xb2\x93\x5b\xd3\x1a\x36\xd8\x5f\x50\x4d\x91\x2c\xd2\x37\x21\x9e\x48\xa3\xdf\x40\x37\xfe\x3f\x39\xbf\xe8\xf4\xeb\xa6\x69\x22\x79\x98\xe6\x9d\xd6\xc3\xb6\x35\xca\xc7\x71\xd1\xfd\xdf\xd9\x78\x7f\x40\x51\x16\xba\x51\x0d\x66\x3b\xa7\xbc\xcc\x6e\xe2\xf8\x64\x6b\x82\xd5\x75\x32\xa2\x41\x7e\x8a\xd5\x62\x3c\xf6\x58\x81\xd1\xff\x04\xb1\xaf\xd8\xc7\x09\xc6\x2b\xd6\xe4\x82\xfc\xe3\x2a\x17\x8a\xac\x92\x5c\x18\x5d\x26\x00\x97\xef\x4f\x28\x87\x92\xf1\x9c\x65\x31\xc1\x55\x33\xe6\xf9\x27\x15\xbe\x7f\x70\x93\xdc\x03\xac\xae\x47\x84\x90\xa2\x7c\xd2\x7c\xed\x5d\x6a\x9d\xde\xd5\xec\x7f\xe2\x10\x46\x2f\xa1\xf3\xa5\xea\x7a\xe8\xf4\x06\x9f\xb3\xdf\x01\x00\x00\xff\xff\x1f\x55\xea\x18\x79\x04\x00\x00" +var _stakingproxyRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x41\x8f\xda\x3c\x10\xbd\xe7\x57\xcc\xc7\x61\xbf\x44\x42\x51\x0f\x55\x0f\xd1\xb2\x2b\x04\xb4\x5d\xb1\x02\x44\xa8\xd4\x1e\x8d\x3d\x01\x8b\xe0\x89\x9c\x89\xca\x6a\xc5\x7f\xaf\x1c\x27\x21\xb0\xdd\xb6\xbe\x38\xce\xcc\xbc\x79\xef\x8d\xad\x8f\x05\x59\x86\x67\x92\x07\x54\x1b\x3a\xa0\x29\x21\xb3\x74\x84\x0f\xa7\xe7\xe5\x64\x3e\x9b\x6e\x96\xf3\xd9\x62\x3c\x9d\xae\x67\x69\x1a\x34\xd9\x29\x8b\x83\x36\xbb\x95\xa5\xd3\x4b\x9b\x9d\x6e\xc6\xf3\xa7\xc5\x97\xd5\x7a\xf9\xfd\x47\x9b\x1e\xb0\x15\xa6\x14\x92\x35\x99\x50\x28\x65\xb1\x2c\x13\x18\xfb\x8f\x21\x68\x95\x40\xca\x56\x9b\xdd\x10\xc4\x91\x2a\xc3\x09\x7c\xfb\xac\x4f\x9f\x3e\x46\xf0\x1a\x04\x00\x00\x39\x32\xec\x29\x57\x68\xd7\x98\x25\x70\xd7\xe7\x19\xd7\xdb\xd7\x3a\xea\xb3\x0b\x8b\x85\xb0\x18\x0a\x29\x3d\xda\xb8\xe2\xfd\xd8\x1f\x1c\x24\x34\xab\xc4\x3c\x8b\x3b\x58\x18\x41\x53\x10\x6f\xc9\x5a\xfa\x79\xff\x6e\x9b\x87\xd0\xa9\x4d\xe0\xbd\x78\xca\x64\xc5\x0e\x57\x82\xf7\x51\xd7\xcd\xad\xc7\x47\x28\x84\xd1\x32\x1c\x4c\xa8\xca\x15\x18\x62\xf0\xcd\xc0\x62\x86\x16\x8d\x44\x60\x82\x1e\xd6\xc0\x23\x9c\xbd\x34\x3c\xa1\xac\x18\x7b\x22\x9c\x35\x86\x14\x2e\x0b\xb4\x82\xa9\x51\xb2\x43\x6e\x04\xb7\x86\x47\xf1\x0e\x79\x22\x0a\xb1\xd5\xb9\xe6\x97\x2b\x5a\xf7\x77\xfd\x51\xc6\x0b\x52\xe8\x7e\xa0\xad\xcf\x9e\xc7\xeb\xdf\x53\x56\xd5\x36\xd7\xf2\xfc\x70\x85\x1d\xbe\xa9\x6b\x99\x5e\xc8\xf8\xc2\xda\xae\xff\x1a\xf3\xc3\x08\xfe\xd5\x39\xa7\x1e\xa8\x01\x85\xa2\xc6\x02\xd9\x81\x0f\xa2\xe0\x8d\x59\x4f\x26\x23\x18\xdd\xfa\xe6\x1c\x5a\x34\xd1\xb0\x4e\x9b\x26\xa0\xd5\x1f\x47\x68\xfe\x67\x67\x36\x68\x87\x98\x91\xf5\xf0\xd3\xd1\x20\x96\x64\xa4\xe0\x50\xab\xa8\x47\xe0\xfa\xca\xc5\xd2\xa2\x60\xbc\x98\x19\xb6\xe4\x92\x8e\xe6\xe5\x4d\xf8\xfd\x37\x6a\x7a\x83\x80\xd1\x6d\x0b\x6f\x52\x03\xdf\x2b\xbe\xd5\x2e\x94\xea\x4f\xaa\xd3\xdf\xf2\x88\xb5\x1a\x42\xe1\x42\xc9\x6d\xd3\xf6\x86\x9e\x83\x5f\x01\x00\x00\xff\xff\xa1\xc8\xc2\x7d\x47\x04\x00\x00" func stakingproxyRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5959,11 +5770,11 @@ func stakingproxyRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x55, 0xf4, 0xb6, 0xef, 0xa5, 0x91, 0xdf, 0x85, 0xff, 0x8f, 0x28, 0xa1, 0x53, 0x69, 0x5a, 0x7e, 0x8e, 0x55, 0xcd, 0xa, 0xd5, 0xcc, 0x2c, 0x22, 0x93, 0xb6, 0xd1, 0xf4, 0x3, 0x6f, 0x61}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6a, 0xa8, 0x7a, 0xb4, 0x24, 0xcc, 0x6b, 0x8d, 0x67, 0xfe, 0xdd, 0x4c, 0xad, 0x2d, 0x6b, 0x86, 0x24, 0x5c, 0xfd, 0x26, 0x3e, 0x97, 0xdd, 0xeb, 0xd3, 0xd7, 0x4b, 0x36, 0xc8, 0xb5, 0xe2, 0x5c}} return a, nil } -var _stakingproxyRemove_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\x4d\x6a\xc3\x30\x10\x85\xf7\x3a\xc5\x23\x8b\x60\x6f\x7c\x00\xd3\x16\xfa\xb3\x68\x36\xad\xc1\xd0\xfd\xc4\x9e\x38\xa2\xb2\x46\x4c\xc6\x6d\x43\xc9\xdd\x8b\xe2\x90\x1a\xa2\x8d\xe0\x49\xdf\x9b\x6f\xfc\x98\x44\x0d\xad\xd1\xa7\x8f\x43\xa3\xf2\x73\xc4\x4e\x65\xc4\x6a\x19\xad\x9c\x33\xa5\x78\xa0\xce\xbc\xc4\x22\x4a\xcf\x9b\x97\x1a\xad\xa9\x8f\x43\x89\x5f\xe7\x00\x20\x29\x27\x52\x2e\xa8\xeb\x64\x8a\x56\x83\x26\xdb\x17\x4f\xa2\x2a\xdf\x1f\x14\x26\x2e\xb1\x7e\x9c\xdf\x32\x83\xcb\x09\x6c\x48\x79\xca\xab\x84\x9e\x15\xf7\xb8\x14\x54\x07\x13\xa5\x81\xab\xed\xb9\xe2\x6e\xbd\x54\xaa\xde\xa4\xe7\x1c\xb0\x36\xff\xf0\x43\x91\xe5\x6b\xdc\xfc\x7c\x4f\xac\x64\xa2\xcf\x94\x68\xeb\x83\xb7\x63\x3b\x97\x37\x64\xfb\xd2\x5d\x65\x16\x22\x95\xf2\x28\x5f\x9c\xe9\x4d\xdc\xc9\x75\xeb\xf9\x2e\xcf\xc8\xc9\x9d\xdc\x5f\x00\x00\x00\xff\xff\x28\xae\xe7\x3e\x43\x01\x00\x00" +var _stakingproxyRemove_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\x51\x4b\xc3\x40\x0c\xc7\xdf\xef\x53\xe4\x49\xda\x97\xe2\x73\x51\xe1\xb0\xa2\x45\xd8\x8e\x9d\x0f\xfa\x98\xb5\x59\x77\xd8\x5e\x8e\x98\xe9\x86\xec\xbb\xcb\xb9\x31\x0b\xe6\x25\x24\xfc\x7f\xe4\x97\x30\x25\x16\x05\xaf\xf8\x1e\xe2\xe0\x84\xf7\x07\xd8\x08\x4f\x70\xbd\xf7\x2f\xf6\xb9\x5d\x3c\xba\xd5\xf2\xf5\xcd\x36\xcd\xea\xc1\x7b\x63\x54\x30\x7e\x60\xa7\x81\x63\x11\xb9\xa7\xb6\xa9\xc1\xab\x84\x38\x94\xf0\x6d\x0c\x00\x40\x12\x4a\x28\x54\x60\xd7\xf1\x2e\x6a\x0d\x76\xa7\x5b\x7b\x1a\x72\x08\xce\x35\x92\x42\xca\x07\x9f\x78\xec\x49\xe0\x16\xce\x44\xb5\x66\x11\xfe\xba\xb9\x9a\x5b\x55\x0b\xee\x29\x2f\x48\xdc\x1f\x74\x57\x64\xd9\x1a\xfe\x25\x97\x89\x04\x95\xe5\x1e\x13\xae\xc3\x18\xf4\xe0\x95\x05\x07\x72\xa8\xdb\xd2\x5c\x24\x66\x02\x95\xd0\xc4\x9f\x94\xe9\x36\x6e\xf8\xf2\xde\xa9\x97\xbf\xc8\xd1\x1c\xcd\x4f\x00\x00\x00\xff\xff\x64\x64\x88\xd5\x33\x01\x00\x00" func stakingproxyRemove_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5979,11 +5790,11 @@ func stakingproxyRemove_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/remove_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0xf7, 0x1c, 0x46, 0x86, 0x72, 0x41, 0x59, 0x9b, 0xed, 0x64, 0x8f, 0xb4, 0x13, 0xa6, 0x40, 0x7a, 0xf2, 0x9a, 0x14, 0x5d, 0xf4, 0x21, 0xb0, 0x2, 0xbb, 0x79, 0xc5, 0x68, 0xb4, 0xb7, 0xcc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0x54, 0xc1, 0x59, 0xe, 0x14, 0xb4, 0xd3, 0xf1, 0xd2, 0xef, 0x53, 0xff, 0x63, 0xb9, 0x6d, 0x1c, 0x93, 0xfc, 0x57, 0x6, 0xae, 0xa4, 0x12, 0x64, 0x2f, 0xc5, 0x89, 0x83, 0xfe, 0x93, 0x46}} return a, nil } -var _stakingproxyRemove_staking_proxyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\x4d\x6a\xc3\x30\x10\x85\xf7\x3a\xc5\x23\x8b\x60\x6f\x7c\x00\xd3\x16\xfa\xb3\x68\x37\xad\xc1\xd0\xfd\xc4\x9e\xda\xa2\xb6\x46\x4c\xc6\x6d\x43\xc9\xdd\x8b\xe2\x90\x0a\xa2\x8d\xe0\x49\xef\x9b\x6f\xfc\x1c\x45\x0d\xad\xd1\xa7\x0f\x43\xa3\xf2\x73\xc0\x87\xca\x8c\x4d\x1e\x6d\x9c\x33\xa5\xb0\xa7\xce\xbc\x84\x22\x48\xcf\x2f\x4f\x35\x5a\x53\x1f\x86\x12\xbf\xce\x01\x40\x54\x8e\xa4\x5c\x50\xd7\xc9\x12\xac\x06\x2d\x36\x16\x0f\xa2\x2a\xdf\xef\x34\x2d\x5c\x62\x7b\xbf\xbe\xa5\x0e\xce\x67\x62\x43\x4c\x53\x9e\x65\xea\x59\x71\x8b\x33\xa0\xda\x9b\x28\x0d\x5c\xed\x4e\x88\x9b\x6d\xae\x54\xbd\x4a\xcf\x29\x60\x6d\xfe\xcb\x77\x45\x92\xaf\x11\xe9\xea\xef\x5b\x64\x25\x13\x7d\xa4\x48\x3b\x3f\x79\x3b\xb4\x2b\xbe\x21\x1b\x6d\x2c\xdd\x45\x28\x93\xa9\x94\x67\xf9\xe2\x1c\x76\xd9\x7e\xbd\xcb\x53\xed\xe8\x8e\xee\x2f\x00\x00\xff\xff\x69\xc3\x7d\xed\x4b\x01\x00\x00" +var _stakingproxyRemove_staking_proxyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xc1\x4a\xc3\x40\x10\x86\xef\xfb\x14\x73\x92\xe4\x12\x3c\x07\x15\x16\x23\x5a\x84\x76\xe9\x7a\xd0\xe3\x34\x19\x93\xc5\x64\x67\x19\xa7\xda\x22\x7d\x77\x59\x5b\x6a\xa0\x7b\x59\x66\xf8\xbf\x99\x6f\xc2\x94\x58\x14\xbc\xe2\x47\x88\xbd\x13\xde\xed\xe1\x5d\x78\x82\xeb\x9d\x7f\xb1\xcf\x8b\xe5\xa3\x5b\xaf\x5e\xdf\x6c\xd3\xac\x1f\xbc\x37\x46\x05\xe3\x27\xb6\x1a\x38\x16\x91\x3b\x5a\x34\x35\x78\x95\x10\xfb\x12\x7e\x8c\x01\x00\x48\x42\x09\x85\x0a\x6c\x5b\xde\x46\xad\xc1\x6e\x75\xb0\xc7\x22\x87\xe0\xf4\x46\x52\x48\x79\xe1\x13\x8f\x1d\x09\xdc\xc2\x89\xa8\x36\x2c\xc2\xdf\x37\x57\x73\xab\x6a\xc9\x1d\xe5\x06\x89\xfb\x87\xee\x8a\x2c\x5b\x43\xc2\x8b\xec\x2a\x91\xa0\xb2\xdc\x63\xc2\x4d\x18\x83\xee\xbd\xb2\x60\x4f\x0e\x75\xd0\xa1\x34\x67\x91\x99\x44\x25\x34\xf1\x17\xcd\x87\x9d\xcf\x3c\xfe\xe5\x1f\x76\x30\x07\xf3\x1b\x00\x00\xff\xff\x4f\x9f\x84\x5d\x3b\x01\x00\x00" func stakingproxyRemove_staking_proxyCdcBytes() ([]byte, error) { return bindataRead( @@ -5999,11 +5810,11 @@ func stakingproxyRemove_staking_proxyCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/remove_staking_proxy.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc8, 0xc0, 0x93, 0x87, 0x23, 0x74, 0x64, 0xa0, 0x10, 0x3f, 0xa9, 0x3b, 0xef, 0xb1, 0xde, 0xd5, 0xdb, 0x46, 0xc0, 0x26, 0x79, 0x83, 0x2d, 0x9b, 0x6, 0xd3, 0x1b, 0x19, 0x8, 0xcb, 0x3d, 0xa5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcd, 0xb7, 0xb8, 0xff, 0xfc, 0x1e, 0x9f, 0xd3, 0x1a, 0x76, 0xac, 0x78, 0xe0, 0x9c, 0xf6, 0x9e, 0xd9, 0xed, 0x85, 0xd4, 0x2b, 0xa4, 0x7e, 0xed, 0xc5, 0xbf, 0x38, 0x7c, 0x76, 0xe6, 0x74, 0x14}} return a, nil } -var _stakingproxyRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\x4d\x4b\xf3\x40\x10\xbe\xef\xaf\x98\x37\x87\xb2\x81\x97\x9c\xc4\x43\xb1\x16\xad\x88\x5e\xb4\x50\xea\x7d\x9a\x4c\x9b\xc5\x64\x67\x9d\x4c\xb0\x45\xfa\xdf\x25\xdd\xd8\xae\x38\x97\x81\x67\x76\x9e\x8f\x59\xd7\x06\x16\x85\x95\xe2\xbb\xf3\xbb\xa5\xf0\xfe\x00\x5b\xe1\x16\xb2\x14\xca\x8c\x51\x41\xdf\x61\xa9\x8e\xbd\xf5\x5c\xd1\xf3\xc3\x14\x56\x2a\xce\xef\xfe\x03\xb6\xdc\x7b\x9d\xc2\xfa\xd1\xed\xaf\xaf\x72\xf8\x32\x06\x00\x20\x08\x05\x14\xb2\x58\x96\x71\x8e\xbd\xd6\xf6\x9e\x45\xf8\xf3\x0d\x9b\x9e\x72\x98\xdc\xc5\xd9\xb0\x03\x63\x35\xa4\x10\x06\xd5\x27\x6e\x2a\x12\x98\xc1\x48\x50\x74\xca\x82\x3b\x2a\x36\x27\x8a\x9b\x49\x6a\xb1\x78\xe1\x8a\x06\x80\x64\x79\x59\xbe\xb5\x43\x98\x29\xfc\x79\xf9\x1a\x48\x50\x59\x16\x18\x70\xe3\x1a\xa7\x87\x55\x24\x5f\xa2\xd6\xf9\xd9\xcb\x50\xf3\x39\x04\xf4\xae\xb4\xd9\x82\xfb\xa6\x02\xcf\x0a\xd1\x01\x08\x6d\x49\xc8\x97\x04\xca\xd0\x45\x8d\xe8\x1d\xea\x93\x7e\x96\x9b\x5f\xb9\xba\xf4\xce\xb3\x34\xe6\x18\x2a\x35\x7a\xbe\x73\xec\xf9\xbf\x0b\x57\xca\x53\x08\x7d\xf4\xd4\xe9\xda\x8f\xa8\xfd\xf9\x8f\xd8\x63\x9a\xa3\x39\x9a\xef\x00\x00\x00\xff\xff\xda\xf0\xd0\xe7\xed\x01\x00\x00" +var _stakingproxyRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6b\xf2\x40\x10\xc7\xef\xfb\x29\xe6\xf1\xf0\x90\x40\x91\x1e\x4a\x0f\x52\x2b\x41\xfb\x22\x05\x0d\xa6\x42\x7b\x1c\x93\x51\x97\xc6\x9d\xed\x64\x42\x95\xe2\x77\x2f\xe9\xa6\x9a\xd2\xb9\x0c\x3b\x3b\x2f\xbf\xff\xdf\xee\x3c\x8b\x42\xa6\xf8\x66\xdd\x26\x15\xde\x1f\x60\x2d\xbc\x83\xcb\x7d\xf6\x9c\x3c\x4d\x67\x0f\xe9\x62\xfe\xf2\x9a\x4c\x26\x8b\xbb\x2c\x33\x46\x05\x5d\x85\xb9\x5a\x76\x91\xe3\x82\xa6\x93\x01\x64\x2a\xd6\x6d\x2e\x00\x77\x5c\x3b\x1d\xc0\xf2\xde\xee\xaf\xaf\x62\xf8\x34\x06\x00\xc0\x0b\x79\x14\x8a\x30\xcf\xc3\x7f\x52\xeb\x36\x09\x8f\xa6\x09\xda\x28\x49\xc1\x37\x00\x8f\x5c\x16\x24\x30\x84\x76\xa2\xbf\x62\x11\xfe\xb8\xf9\xdf\xa5\xec\xcf\xb8\xa0\xa6\x40\x92\x9e\x87\x6e\xa3\x06\x7e\x00\x7f\x3a\xe7\x9e\x04\x95\x65\x8c\x1e\x57\xb6\xb4\x7a\xc8\x94\x05\x37\x94\xa2\x6e\xe3\x13\x43\x13\xa3\x11\x78\x74\x36\x8f\x7a\x63\xae\xcb\x02\x1c\x2b\x04\x02\x10\x5a\x93\x90\xcb\x09\x94\xa1\x0a\x37\x02\x33\x6c\xbf\xef\xf7\x62\xf3\x4b\x4f\xd5\xf5\x75\xd8\x95\xd7\x8a\xea\x82\x9e\x0c\x0d\x39\xfe\x77\xde\xd5\xdd\xd3\x17\x7a\xaf\xa9\xd2\xa5\x6b\xab\xd1\x8f\xf1\x21\x07\x35\x47\x73\x34\x5f\x01\x00\x00\xff\xff\x09\x50\xee\xd5\xdd\x01\x00\x00" func stakingproxyRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -6019,11 +5830,11 @@ func stakingproxyRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x27, 0xc, 0x98, 0xb7, 0xdd, 0xba, 0xf0, 0x75, 0xec, 0x3a, 0xf0, 0x5f, 0xf6, 0x67, 0x82, 0x46, 0xbc, 0x45, 0xee, 0xe4, 0x17, 0x24, 0x7e, 0x73, 0x20, 0xb3, 0x84, 0x9f, 0x3, 0x4c, 0x6e, 0xc2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0x4, 0xb5, 0x6d, 0xd4, 0x43, 0x6a, 0x62, 0x66, 0x8f, 0xf8, 0x22, 0x3c, 0x0, 0xa1, 0xef, 0x32, 0x6c, 0x7a, 0x1, 0xa5, 0x6b, 0x83, 0x30, 0xa, 0x8d, 0x29, 0x5a, 0xdd, 0xda, 0x77, 0x79}} return a, nil } -var _stakingproxySetup_node_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\xc1\x6a\xc3\x30\x0c\x86\xef\x7e\x0a\xd1\x43\x71\x20\xcd\x03\x94\x6c\x30\x76\xd9\x69\x0b\x04\x76\x57\x5d\xad\x31\x4b\x6d\x23\x2b\x65\x65\xf4\xdd\x87\xd9\xf0\xec\x8e\xc1\xe6\x43\x0e\x8a\xf4\x7f\x9f\x64\x8f\xc1\xb3\xc0\x28\xf8\x6a\xdd\x61\x60\xff\x76\x86\x17\xf6\x47\x58\x95\xa5\x95\x52\xc2\xe8\x22\x1a\xb1\xde\xe9\x06\xde\x95\x02\x00\x08\x4c\x01\x99\xb4\xf3\x7b\x7a\x0a\xc4\x28\x9e\xb7\x80\x8b\x4c\x7a\xc4\x13\x3d\xe3\xbc\x50\x0b\xf7\x18\x70\x67\x67\x2b\x96\x62\x03\xeb\x3b\x63\xfc\xe2\x24\x85\xc0\xd7\x9b\x49\x20\x24\xd0\x83\x9f\xf7\xc4\xd0\x6f\x2a\xa3\xce\x30\xa1\xd0\xf0\xdd\xa1\x1b\x95\x87\x4b\x78\x17\xc5\x33\x1e\xa8\x8b\x78\x22\xdd\x6f\x8a\xd0\x16\xc4\x6f\xeb\xd8\xc7\x62\x32\x4b\x9e\xc7\xcf\x88\x01\x65\x2a\x28\x49\xd1\xd5\xfd\x70\x53\xb3\x4d\xb1\x67\x16\xb1\x31\x2e\xd4\xaf\x7f\x70\x53\x81\xb8\x58\xe9\x56\x67\x56\x7a\xff\x13\xcd\xa3\xbf\xdd\xa5\x72\x0b\xcb\x6e\xb6\x71\xaa\x81\x57\xcb\xb5\xd5\x4f\x94\x3f\x9d\x6e\x48\xc1\xe6\x4a\x28\x7d\x2f\xea\xa2\x3e\x02\x00\x00\xff\xff\x35\x26\xe1\xc1\x6b\x02\x00\x00" +var _stakingproxySetup_node_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xe6\x24\x29\xb4\xc5\x73\x09\x42\xb0\xa2\x22\xb4\xa1\xf1\xa0\xc7\xe9\x76\x4c\x97\x6e\x77\x96\xe9\x44\x5a\x4a\xfe\xbb\xac\x4a\x4c\x10\x51\xdf\x69\x59\xde\xfb\xde\x1b\xb7\x8f\x2c\x0a\x95\xe2\xce\x85\xba\x14\x3e\x9e\xe0\x45\x78\x0f\x97\xc7\xea\xb1\x78\xb8\x5f\xdc\x96\xab\xe5\xd3\x73\x31\x9f\xaf\x6e\xaa\xca\x18\x15\x0c\x07\xb4\xea\x38\x64\x23\x38\x1b\x03\x00\x10\x85\x22\x0a\x65\x81\x37\xb4\x8c\x24\xa8\x2c\x33\x28\x1a\xdd\x16\xd6\x72\x13\x34\x39\xe1\x53\x9e\x14\x62\xea\xb9\x63\xbf\x21\x81\x7c\x32\x68\x9f\x5a\x21\x54\x2a\xbf\x1c\xd9\xc8\x74\xe1\x7e\xc3\xf4\x80\xaf\x94\xe5\x93\x1e\x6c\x0c\xca\xb3\x21\x6e\xd1\x4b\x5c\x63\xc4\xb5\xf3\x4e\x4f\x95\xb2\x60\x4d\x25\xea\xf6\x27\xba\x77\x61\x97\x5f\x7c\x63\xa5\x0f\x92\xde\xbc\xf3\xef\x96\xb2\x59\x7b\x67\xdb\xab\xac\x6b\x4a\xfa\xc3\xcc\x8f\x60\x5a\x39\x1e\x44\x15\xa5\x26\xfd\xef\xa5\x1d\x62\xf4\xfe\x6a\x4d\x6b\xde\x02\x00\x00\xff\xff\xf8\x08\x93\x28\xff\x01\x00\x00" func stakingproxySetup_node_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -6039,11 +5850,11 @@ func stakingproxySetup_node_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/setup_node_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2f, 0x9a, 0xe3, 0x34, 0x75, 0x3a, 0xde, 0xe7, 0x18, 0x77, 0x38, 0x64, 0x59, 0x95, 0xee, 0xf8, 0x2d, 0xa4, 0x2a, 0x35, 0x96, 0xbf, 0x85, 0x5c, 0x95, 0x1a, 0x63, 0x1b, 0xba, 0xae, 0x8d, 0xd9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb3, 0x0, 0x84, 0x96, 0x15, 0xf1, 0x23, 0x27, 0xca, 0xa4, 0x4, 0xe3, 0xc0, 0x8c, 0xc9, 0x59, 0x5e, 0x1e, 0x11, 0x6b, 0xd7, 0xe2, 0x9f, 0x69, 0x3c, 0xf0, 0x3a, 0xc6, 0xb8, 0x32, 0x46, 0x24}} return a, nil } -var _stakingproxyStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\xcf\x4e\x32\x41\x0c\xbf\xcf\x53\xf4\xdb\x03\x99\x4d\xbe\xec\xc9\x78\x20\x22\x51\x8c\xd1\x0b\x92\xa0\xde\xcb\x6e\x81\x09\xcb\x74\xd2\xed\x06\x88\xe1\xdd\xcd\x30\x08\x63\xec\xa5\x99\x76\xfa\xfb\xd3\xba\x6d\x60\x51\x98\x2b\x6e\x9c\x5f\xcd\x84\xf7\x07\x58\x0a\x6f\xa1\xc8\x4b\x85\x31\x2a\xe8\x3b\xac\xd5\xb1\xb7\x9e\x1b\x7a\x7d\x1a\xc2\x5c\xc5\xf9\xd5\x7f\xc0\x2d\xf7\x5e\x87\xf0\xf1\xec\xf6\xb7\x37\x25\x7c\x19\x03\x00\x10\x84\x02\x0a\x59\xac\xeb\xd4\xc7\x5e\xd7\xf6\x91\x45\x78\xf7\x89\x6d\x4f\x25\x0c\x1e\x52\x2f\xce\xc0\x39\x5a\x52\x08\x91\xf5\x85\xdb\x86\x04\x46\x70\x06\xa8\x3a\x65\xc1\x15\x55\x8b\x13\xc4\xdd\x20\x97\x58\x4d\xb9\xa1\x58\x20\x99\x5d\x87\xef\x6d\x34\x33\x84\x3f\x3f\xdf\x02\x09\x2a\xcb\x04\x03\x2e\x5c\xeb\xf4\x30\x4f\xe0\x33\xd4\x75\x79\xd1\x12\x63\x3c\x86\x80\xde\xd5\xb6\x98\x70\xdf\x36\xe0\x59\x21\x29\x00\xa1\x25\x09\xf9\x9a\x40\x19\xba\xc4\x91\xb4\xc3\xfa\xc4\x5f\x94\xe6\x97\xaf\x2e\xdf\xf3\x28\xb7\x79\x36\x95\x0b\xbd\xec\x39\xe5\xf2\xdf\x15\x2b\xc7\xa9\xe2\x83\xa6\xb4\x7b\xe7\x0d\xf9\xce\xfe\x5c\x23\xe5\xe4\xe5\x68\x8e\xe6\x3b\x00\x00\xff\xff\x4a\x7f\x70\x48\xeb\x01\x00\x00" +var _stakingproxyStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6b\xc2\x40\x10\x86\xef\xfb\x2b\xa6\x1e\x4a\x02\x45\x7a\x28\x3d\x48\xad\x04\xed\x87\x14\x34\x18\x0b\xed\x71\x4c\x46\x5d\x8c\x3b\xcb\x64\x44\xa5\xf8\xdf\x4b\xba\xa9\xa6\x74\x2e\xc3\xec\xce\xc7\xf3\xbe\x76\xeb\x59\x14\x32\xc5\x8d\x75\xab\x54\xf8\x70\x84\xa5\xf0\x16\x6e\x0f\xd9\x3c\x79\x1b\x4f\x5e\xd2\xd9\xf4\xe3\x33\x19\x8d\x66\x4f\x59\x66\x8c\x0a\xba\x0a\x73\xb5\xec\x22\xc7\x05\x8d\x47\x3d\xc8\x54\xac\x5b\xdd\x00\x6e\x79\xe7\xb4\x07\xef\xcf\xf6\x70\x7f\x17\xc3\x97\x31\x00\x00\x5e\xc8\xa3\x50\x84\x79\x1e\xfe\x93\x9d\xae\x93\x50\xd4\x4d\xd0\x44\x49\x0a\xbe\x06\x78\xe5\xb2\x20\x81\x3e\x34\x13\xdd\x05\x8b\xf0\xfe\xe1\xba\x4d\xd9\x9d\x70\x41\xf5\x03\x49\x7a\x19\x7a\x8c\x6a\xf8\x1e\xfc\xeb\x9c\x7a\x12\x54\x96\x21\x7a\x5c\xd8\xd2\xea\x31\x53\x16\x5c\x51\x8a\xba\x8e\xcf\x0c\x75\x0c\x06\xe0\xd1\xd9\x3c\xea\x0c\x79\x57\x16\xe0\x58\x21\x10\x80\xd0\x92\x84\x5c\x4e\xa0\x0c\x55\xb8\x11\x98\x61\xfd\x73\xbf\x13\x9b\x3f\x7a\xaa\xb6\xaf\xfd\xb6\xbc\x46\x54\x1b\xf4\x6c\x68\xc8\xf1\xd5\x65\x57\x7b\x4f\xb7\x2e\x68\x42\xfb\x39\x6f\xc8\x55\xd1\xaf\xed\x21\x07\x2d\x27\x73\x32\xdf\x01\x00\x00\xff\xff\x05\x52\x1c\xe7\xdb\x01\x00\x00" func stakingproxyStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -6059,11 +5870,11 @@ func stakingproxyStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0xfa, 0xc3, 0x3c, 0x9f, 0xf3, 0x8a, 0x9a, 0xdc, 0x74, 0xf7, 0x2b, 0x88, 0xd7, 0x95, 0xad, 0x57, 0x4c, 0x88, 0xe3, 0xa3, 0x8b, 0x57, 0x16, 0x99, 0xaa, 0xf0, 0x72, 0xcb, 0x5b, 0x7a, 0x23}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0xf5, 0xa3, 0x7d, 0x2b, 0xd5, 0x34, 0x68, 0x9, 0xf5, 0x8c, 0xe, 0x3c, 0x2a, 0x21, 0xf4, 0x5c, 0x52, 0x32, 0x7, 0x34, 0x9e, 0xa7, 0x2d, 0x55, 0x9, 0x63, 0x5d, 0x22, 0xc2, 0x25, 0xd0}} return a, nil } -var _stakingproxyStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\xcd\x4e\x02\x41\x0c\xbe\xcf\x53\xd4\x3d\x90\xd9\xc4\xec\xc9\x78\x20\x22\x51\x8c\xd1\x8b\x92\x20\xde\xcb\x6e\x81\x09\xcb\x74\xd2\xed\x46\x88\xe1\xdd\xcd\x30\x08\x63\xec\xe5\xcb\xb6\xdb\xef\xa7\xe3\xb6\x81\x45\x61\xa6\xb8\x71\x7e\x35\x15\xde\xed\x61\x29\xbc\x85\x22\x6f\x15\xc6\xa8\xa0\xef\xb0\x56\xc7\xde\x7a\x6e\xe8\xf5\x69\x08\x33\x15\xe7\x57\xd7\x80\x5b\xee\xbd\x0e\x61\xfe\xec\x76\xb7\x37\x25\x7c\x1b\x03\x00\x10\x84\x02\x0a\x59\xac\xeb\x34\xc7\x5e\xd7\xf6\x91\x45\xf8\xeb\x13\xdb\x9e\x4a\x18\x3c\xa4\x59\xdc\x81\x53\xb5\xa4\x10\xa2\xea\x0b\xb7\x0d\x09\x8c\xe0\x44\x50\x75\xca\x82\x2b\xaa\x16\x47\x8a\xbb\x41\x6e\xb1\x7a\xe3\x86\x62\x83\x64\x7a\x59\xbe\xb7\x31\xcc\x10\xfe\xfd\xf9\x1e\x48\x50\x59\x26\x18\x70\xe1\x5a\xa7\xfb\x59\x22\x9f\xa2\xae\xcb\xb3\x97\x58\xe3\x31\x04\xf4\xae\xb6\xc5\x84\xfb\xb6\x01\xcf\x0a\xc9\x01\x08\x2d\x49\xc8\xd7\x04\xca\xd0\x25\x8d\xe4\x1d\xd6\x47\xfd\xa2\x34\x7f\x72\x75\xf9\x9d\x47\x79\xcc\x53\xa8\xdc\xe8\xf9\xce\x09\xcb\xab\x0b\x57\xce\x53\xc5\x0f\x9a\xfb\x23\x34\x1f\xbc\x21\xdf\xd9\xdf\x27\x49\x98\x02\x1d\xcc\xc1\xfc\x04\x00\x00\xff\xff\x6e\x84\xf8\xb2\xf0\x01\x00\x00" +var _stakingproxyStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6b\xf2\x40\x10\xc7\xef\xfb\x29\xe6\xf1\xf0\x90\x40\x91\x1e\x4a\x0f\x52\x2b\x41\xfb\x22\x05\x0d\x46\xa1\x3d\x8e\xc9\xa8\x8b\x71\x67\x99\x8c\x54\x29\x7e\xf7\x12\x37\xd5\x94\xce\x65\x98\xdd\x79\xf9\xfd\xff\x76\xe7\x59\x14\x32\xc5\xad\x75\xeb\x54\xf8\x70\x84\x95\xf0\x0e\x6e\x0f\xd9\x3c\x79\x1b\x4f\x5e\xd2\xd9\xf4\xfd\x23\x19\x8d\x66\x4f\x59\x66\x8c\x0a\xba\x0a\x73\xb5\xec\x22\xc7\x05\x8d\x47\x3d\xc8\x54\xac\x5b\xdf\x00\xee\x78\xef\xb4\x07\x8b\x67\x7b\xb8\xbf\x8b\xe1\xcb\x18\x00\x00\x2f\xe4\x51\x28\xc2\x3c\x0f\xff\xc9\x5e\x37\x49\x28\xea\x26\x68\xa2\x24\x05\x5f\x03\xbc\x72\x59\x90\x40\x1f\x9a\x89\xee\x92\x45\xf8\xf3\xe1\x7f\x9b\xb2\x3b\xe1\x82\xea\x07\x92\xf4\x3a\xf4\x18\xd5\xf0\x3d\xf8\xd3\x39\xf5\x24\xa8\x2c\x43\xf4\xb8\xb4\xa5\xd5\x63\xa6\x2c\xb8\xa6\x14\x75\x13\x5f\x18\xea\x18\x0c\xc0\xa3\xb3\x79\xd4\x19\xf2\xbe\x2c\xc0\xb1\x42\x20\x00\xa1\x15\x09\xb9\x9c\x40\x19\xaa\x70\x23\x30\xc3\xe6\x7c\xbf\x13\x9b\x5f\x7a\xaa\xb6\xaf\xfd\xb6\xbc\x46\x54\x1b\xf4\x62\x68\xc8\xf1\xbf\xeb\xae\xf6\x9e\x6e\x5d\xd0\xc2\x9d\x53\x31\xe7\x2d\xb9\x2a\xfa\xf1\x3e\xe4\x20\xe8\x64\x4e\xe6\x3b\x00\x00\xff\xff\x77\xae\x51\x52\xe0\x01\x00\x00" func stakingproxyStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -6079,11 +5890,11 @@ func stakingproxyStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x53, 0x74, 0x5, 0xf2, 0x15, 0x8f, 0x8f, 0x44, 0xd1, 0xb7, 0x61, 0x2e, 0x6d, 0xbc, 0x17, 0x94, 0x6b, 0xb1, 0x72, 0x8e, 0xed, 0xab, 0x61, 0x43, 0x74, 0x96, 0x45, 0x94, 0xd4, 0xa8, 0xce}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0x15, 0xbf, 0xec, 0x2c, 0xa1, 0xf, 0x8f, 0x26, 0xb9, 0x7f, 0x27, 0xf9, 0xf2, 0x13, 0xbe, 0xa, 0x44, 0x5f, 0x7f, 0x6b, 0x19, 0x18, 0xb2, 0xf7, 0x7, 0x6e, 0x41, 0x39, 0xf2, 0x8e, 0xf9}} return a, nil } -var _stakingproxyUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\xc1\x6e\xfa\x30\x0c\xc6\xef\x79\x0a\xff\x7b\x40\xe9\xa5\x0f\x80\xfe\x0c\x31\x76\xd8\x2e\x1b\x12\xd2\xee\xa6\x35\x6d\xb4\x10\x47\xae\xab\x0d\x4d\xbc\xfb\x14\x52\x41\xa6\xf9\x12\xc5\x89\xbf\xef\xf7\xd9\x9d\x22\x8b\xc2\x5e\xf1\xc3\x85\x7e\x27\xfc\x75\x86\xa3\xf0\x09\xaa\xb2\x55\x19\xa3\x82\x61\xc4\x56\x1d\x07\x1b\xb8\xa3\x97\xa7\x25\xec\x55\x5c\xe8\x6b\xf8\x36\x06\x00\x20\x0a\x45\x14\xb2\xd8\xb6\x3c\x05\x5d\x02\x4e\x3a\xd8\x47\x16\xe1\xcf\x77\xf4\x13\xd5\xb0\xd8\xe4\xb7\x34\x03\x73\x79\x52\x88\xc9\xe5\x99\x7d\x47\x02\x2b\x98\x05\x9a\x51\x59\xb0\xa7\xe6\x70\x95\xf8\xbf\x28\x91\x9a\x57\xee\x28\x35\x48\x76\xf7\xe1\x07\x9b\xe0\x97\xf0\xe7\xe7\x5b\x24\x41\x65\xd9\x62\xc4\x83\xf3\x4e\xcf\xfb\x2c\xbe\x43\x1d\xea\x1b\x4b\xaa\xf5\x1a\x22\x06\xd7\xda\x6a\xcb\x93\xef\x20\xb0\x42\x26\x00\xa1\x23\x09\x85\x96\x40\x19\xc6\xec\x91\xd9\x61\xb8\xfa\x57\xb5\xf9\x95\x6b\x2c\xf7\xba\x2a\x63\xce\xa1\x4a\xd0\xdb\x5e\xf3\x59\xff\xbb\x6b\x95\x3a\xcd\x14\xd2\x95\x36\xde\xdb\x4c\x7e\x31\x17\xf3\x13\x00\x00\xff\xff\xdd\x2c\x7a\xf3\xc9\x01\x00\x00" +var _stakingproxyUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x41\x6b\xfb\x30\x0c\xc5\xef\xfe\x14\xfa\xf7\xf0\x27\xb9\x94\x9d\xcb\xba\x12\xda\xb1\x95\x41\x1b\xea\x1d\xb6\xa3\x9b\xa8\x89\x99\x6b\x19\x45\x61\x2d\xa3\xdf\x7d\x78\x0e\x6d\xc6\x74\x31\x32\x92\xde\xef\x3d\x7b\x0c\xc4\x02\x5a\xcc\x87\xf5\x4d\xc9\x74\x3a\xc3\x81\xe9\x08\x77\x27\xfd\x5a\xbc\xac\x37\x4f\xe5\x6e\xfb\xf6\x5e\xac\x56\xbb\x47\xad\x95\x12\x36\xbe\x33\x95\x58\xf2\x99\xa7\x1a\xd7\xab\x19\x68\x61\xeb\x9b\x1c\xbe\x94\x02\x00\x08\x8c\xc1\x30\x66\xa6\xaa\xa8\xf7\x32\x83\xa2\x97\xb6\x48\x4d\x1c\x82\xa1\x1c\x0a\x84\x28\xf8\x4c\xae\x46\x86\x39\x0c\x1b\xd3\x3d\x31\xd3\xe7\xfd\xff\x31\xd5\x74\x43\x35\xc6\x0f\xe4\xf2\xb6\xf4\x90\x45\xd8\x19\xfc\x99\xdc\x06\x64\x23\xc4\x4b\x13\xcc\xde\x3a\x2b\x67\x2d\xc4\xa6\xc1\xd2\x48\x9b\x5f\x19\x62\x2d\x16\x10\x8c\xb7\x55\x36\x59\x52\xef\x6a\xf0\x24\x90\x08\x80\xf1\x80\x8c\xbe\x42\x10\x82\x2e\x69\x24\x66\x68\x7f\xf4\x27\xb9\xfa\xe5\xa7\x1b\xe7\x38\x1f\xdb\x1b\x4c\x8d\x41\xaf\x01\xa6\x37\xff\x77\xbb\x35\xbe\x33\xed\x7d\x6c\xb1\x70\x2e\x4b\xe4\x17\x75\x51\xdf\x01\x00\x00\xff\xff\x44\x15\xbb\x2b\xb9\x01\x00\x00" func stakingproxyUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -6099,11 +5910,11 @@ func stakingproxyUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0x90, 0x5b, 0x1f, 0x96, 0x97, 0xc4, 0x6a, 0x9, 0x69, 0x0, 0xc3, 0xb0, 0x20, 0x88, 0x83, 0xe, 0xb1, 0xf7, 0x4e, 0x33, 0xd9, 0x1b, 0x7, 0xc3, 0xad, 0xf5, 0xd0, 0x72, 0x2b, 0xc8, 0xf1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4e, 0x22, 0xbf, 0xdd, 0x5d, 0x32, 0xc7, 0xd6, 0xbb, 0x36, 0xf6, 0xe, 0xd0, 0x40, 0xd0, 0xa2, 0x2c, 0x84, 0x49, 0xdd, 0x16, 0xbf, 0x84, 0xa3, 0xa0, 0xb1, 0x4a, 0xc8, 0x33, 0x23, 0xef, 0xa9}} return a, nil } -var _stakingproxyWithdraw_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x41\x4f\xf3\x30\x0c\x86\xef\xf9\x15\xfe\x7a\x98\x5a\xe9\x53\x4f\x88\xc3\xc4\x98\x60\x08\xc1\x05\x26\x06\xdc\xbd\xc6\x5b\xa3\x75\x71\xe4\xba\xea\x26\xb4\xff\x8e\xba\x8c\x2d\x08\x5f\x2c\xd9\xf1\xeb\xf7\x71\xdc\x36\xb0\x28\x2c\x14\x37\xce\xaf\xe7\xc2\xbb\x3d\xac\x84\xb7\x90\xa5\xa5\xcc\x18\x15\xf4\x2d\x56\xea\xd8\xe7\x9e\x2d\x3d\x3f\x8c\x61\xa1\xe2\xfc\xfa\x3f\xe0\x96\x3b\xaf\x63\xf8\x78\x74\xbb\xeb\xab\x02\xbe\x8c\x01\x00\x08\x42\x01\x85\x72\xac\xaa\xd8\xc7\x4e\xeb\xfc\x9e\x45\xb8\xff\xc4\xa6\xa3\x02\x46\x77\xb1\x37\xcc\xc0\x29\x1a\x52\x08\xc3\xd6\x27\x6e\x2c\x09\x4c\xe0\x24\x50\xb6\xca\x82\x6b\x2a\x97\x47\x89\x9b\x51\x6a\xb1\x7c\x61\x4b\x43\x81\x64\x7e\x19\xbe\xcd\x07\x98\x31\xfc\x79\xf9\x1a\x48\x50\x59\x66\x18\x70\xe9\x1a\xa7\xfb\x45\x14\x9f\xa3\xd6\xc5\xd9\xcb\x10\xd3\x29\x04\xf4\xae\xca\xb3\x19\x77\x8d\x05\xcf\x0a\xd1\x01\x08\xad\x48\xc8\x57\x04\xca\xd0\xc6\x1d\xd1\x3b\xd4\xc7\xfd\x59\x61\x7e\x71\xb5\xe9\x9d\x27\x29\xe6\x09\x2a\x35\x7a\xbe\x73\xcc\xc5\xbf\x8b\x56\xaa\x53\xf6\x4e\x6b\x2b\xd8\xbf\x51\x8f\x62\xc9\xbe\xf3\x86\x7c\x9b\xff\xfc\x4a\xcc\x91\xe9\x60\x0e\xe6\x3b\x00\x00\xff\xff\x44\x7a\x9d\x16\xf3\x01\x00\x00" +var _stakingproxyWithdraw_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x5d\x6b\xea\x40\x10\x86\xef\xf3\x2b\xe6\x78\x71\x48\xe0\x20\xe7\xa2\xf4\x42\x6a\x25\x68\x3f\xa4\xa0\xc1\x58\x68\x2f\xc7\xec\x68\x16\xe3\xce\x32\x19\x89\x52\xfc\xef\x25\x5d\xab\x29\x9d\x9b\x61\x77\xbe\x9e\xf7\xb5\x3b\xcf\xa2\x90\x2b\x6e\xad\xdb\x64\xc2\x87\x23\xac\x85\x77\xf0\xff\x90\x2f\xd3\x97\xe9\xec\x29\x5b\xcc\xdf\xde\xd3\xc9\x64\xf1\x90\xe7\x51\xa4\x82\xae\xc6\x42\x2d\xbb\xd8\xb1\xa1\xe9\x64\x00\xb9\x8a\x75\x9b\x7f\x80\x3b\xde\x3b\x1d\xc0\xeb\xa3\x3d\xdc\xde\x24\xf0\x11\x45\x00\x00\x5e\xc8\xa3\x50\x8c\x45\x11\xea\xe9\x5e\xcb\x34\x3c\xda\x26\x38\x47\x45\x0a\xbe\x05\x78\xe6\xca\x90\xc0\x10\xce\x13\xfd\x15\x8b\x70\x73\xf7\xb7\x4b\xd9\x9f\xb1\xa1\xf6\x83\x24\xbb\x0e\xdd\xc7\x2d\xfc\x00\x7e\x75\xce\x3d\x09\x2a\xcb\x18\x3d\xae\x6c\x65\xf5\x98\x2b\x0b\x6e\x28\x43\x2d\x93\x0b\x43\x1b\xa3\x11\x78\x74\xb6\x88\x7b\x63\xde\x57\x06\x1c\x2b\x04\x02\x10\x5a\x93\x90\x2b\x08\x94\xa1\x0e\x37\x02\x33\x94\x5f\xf7\x7b\x49\xf4\x43\x4f\xdd\xf5\x75\xd8\x95\x77\x16\xd5\x05\xbd\x18\x1a\x72\xf2\xe7\xba\xab\xbb\xa7\xdf\x58\x2d\x8d\x60\xb3\xa0\x06\xc5\x90\x59\xf2\x96\x5c\x1d\x7f\xdb\x1f\x72\xd0\x74\x8a\x4e\xd1\x67\x00\x00\x00\xff\xff\x3f\x35\x0b\xc5\xe3\x01\x00\x00" func stakingproxyWithdraw_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -6119,11 +5930,11 @@ func stakingproxyWithdraw_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/withdraw_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0x67, 0xcd, 0x39, 0x60, 0x24, 0xa6, 0xba, 0xe0, 0x8a, 0xb5, 0x4e, 0x33, 0x37, 0x28, 0xc9, 0xc3, 0xda, 0x33, 0x76, 0x7b, 0xa, 0x4e, 0xd6, 0x9e, 0xc7, 0x9b, 0x7e, 0x8e, 0x7b, 0x77, 0x87}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe5, 0xb1, 0xc7, 0x2c, 0xab, 0x3c, 0x5b, 0xe5, 0xb1, 0xa4, 0x2e, 0xb, 0x7, 0xa6, 0x21, 0xff, 0x71, 0x28, 0x8f, 0x68, 0xb5, 0x96, 0x7, 0xf5, 0x2e, 0x1c, 0xf5, 0xc2, 0xcf, 0x22, 0xdb, 0xd3}} return a, nil } -var _stakingproxyWithdraw_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\x4d\x6b\xf2\x40\x10\xbe\xef\xaf\x98\x37\x07\x49\xe0\x25\xa7\xd2\x83\xd4\x4a\x6b\x29\xed\xa5\x15\xac\xbd\x8f\xc9\x68\x16\xe3\xce\x32\x99\xa0\x52\xfc\xef\x65\xdd\x54\xb7\x74\x2e\x03\xcf\xec\x3c\x1f\xb3\x76\xe7\x59\x14\x16\x8a\x5b\xeb\x36\x73\xe1\xc3\x11\xd6\xc2\x3b\xc8\x52\x28\x33\x46\x05\x5d\x87\x95\x5a\x76\xb9\xe3\x9a\x5e\x9f\xc6\xb0\x50\xb1\x6e\xf3\x1f\x70\xc7\xbd\xd3\x31\x2c\x9f\xed\xe1\xf6\xa6\x80\x2f\x63\x00\x00\xbc\x90\x47\xa1\x1c\xab\x2a\xce\xb1\xd7\x26\x7f\x64\x11\xde\x7f\x62\xdb\x53\x01\xa3\x87\x38\x0b\x3b\x30\x54\x4b\x0a\x3e\xa8\xbe\x70\x5b\x93\xc0\x04\x06\x82\xb2\x53\x16\xdc\x50\xb9\x3a\x53\xdc\x8d\x52\x8b\xe5\x1b\xd7\x14\x00\x92\xf9\x75\xf9\x3e\x0f\x61\xc6\xf0\xe7\xe5\xbb\x27\x41\x65\x99\xa1\xc7\x95\x6d\xad\x1e\x17\x91\x7c\x8e\xda\x14\x17\x2f\xa1\xa6\x53\xf0\xe8\x6c\x95\x67\x33\xee\xdb\x1a\x1c\x2b\x44\x07\x20\xb4\x26\x21\x57\x11\x28\x43\x17\x35\xa2\x77\x68\xce\xfa\x59\x61\x7e\xe5\xea\xd2\x3b\x4f\xd2\x98\x43\xa8\xd4\xe8\xe5\xce\xb1\x17\xff\xae\x5c\x29\x4f\xb9\xb7\xda\xd4\x82\xfb\xa5\x0b\x30\xd5\x1f\xbc\x25\xd7\xe5\x3f\xbf\x12\x7b\xcc\x74\x32\x27\xf3\x1d\x00\x00\xff\xff\x6b\x4e\x2d\x38\xf3\x01\x00\x00" +var _stakingproxyWithdraw_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6b\xf2\x40\x10\xc7\xef\xfb\x29\xe6\xf1\xf0\x90\x40\x91\x1e\x4a\x0f\x52\x2b\x41\xfb\x22\x05\x0d\x46\xa1\x3d\x8e\xc9\x68\x16\xe3\xce\x32\x19\x51\x29\x7e\xf7\x92\xae\xd5\x94\xce\x65\xd8\xd9\x79\xf9\xfd\xff\x76\xeb\x59\x14\x32\xc5\x8d\x75\xeb\x54\xf8\x70\x84\x95\xf0\x16\x6e\x0f\xd9\x3c\x79\x1b\x4f\x5e\xd2\xd9\xf4\xfd\x23\x19\x8d\x66\x4f\x59\x66\x8c\x0a\xba\x1a\x73\xb5\xec\x22\xc7\x05\x8d\x47\x3d\xc8\x54\xac\x5b\xdf\x00\x6e\x79\xe7\xb4\x07\x8b\x67\x7b\xb8\xbf\x8b\xe1\xd3\x18\x00\x00\x2f\xe4\x51\x28\xc2\x3c\x0f\xff\xc9\x4e\xcb\x24\x3c\x9a\x26\x38\x47\x45\x0a\xbe\x01\x78\xe5\xaa\x20\x81\x3e\x9c\x27\xba\x4b\x16\xe1\xfd\xc3\xff\x36\x65\x77\xc2\x05\x35\x05\x92\xf4\x3a\xf4\x18\x35\xf0\x3d\xf8\xd3\x39\xf5\x24\xa8\x2c\x43\xf4\xb8\xb4\x95\xd5\x63\xa6\x2c\xb8\xa6\x14\xb5\x8c\x2f\x0c\x4d\x0c\x06\xe0\xd1\xd9\x3c\xea\x0c\x79\x57\x15\xe0\x58\x21\x10\x80\xd0\x8a\x84\x5c\x4e\xa0\x0c\x75\xb8\x11\x98\xa1\xfc\xbe\xdf\x89\xcd\x2f\x3d\x75\xdb\xd7\x7e\x5b\xde\x59\x54\x1b\xf4\x62\x68\xc8\xf1\xbf\xeb\xae\xf6\x9e\xee\xde\x6a\x59\x08\xee\x17\xae\x29\x53\x31\xe7\x0d\xb9\x3a\xfa\xb1\x3f\xe4\xa0\xe9\x64\x4e\xe6\x2b\x00\x00\xff\xff\x10\x01\xbb\xeb\xe3\x01\x00\x00" func stakingproxyWithdraw_unstakedCdcBytes() ([]byte, error) { return bindataRead( @@ -6139,11 +5950,11 @@ func stakingproxyWithdraw_unstakedCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/withdraw_unstaked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb2, 0x72, 0x63, 0xb9, 0x44, 0x4, 0x84, 0x7a, 0xbd, 0x19, 0x88, 0x23, 0x78, 0x77, 0xb6, 0xf0, 0xfe, 0x8a, 0x5c, 0xf2, 0x6f, 0xa2, 0xf, 0xda, 0xdb, 0xb1, 0x89, 0x1c, 0x19, 0xb5, 0x56, 0x95}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xf, 0x29, 0xf5, 0x62, 0x4a, 0xb5, 0x57, 0xd8, 0x30, 0x56, 0xc8, 0xbd, 0xe9, 0x8c, 0x9d, 0x40, 0x3, 0xa3, 0x63, 0xca, 0xca, 0x56, 0x54, 0x8d, 0x6c, 0x8c, 0x8b, 0x40, 0x53, 0xa1, 0xe3}} return a, nil } -var _storagefeesAdminSet_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x2f\x3e\x04\x19\x8a\x74\x29\x3d\x98\xa6\x26\x29\xe8\xd4\xd0\x92\xfe\x3b\x4f\xd6\x23\x6b\x8b\xb4\x2b\x66\x47\x75\x4a\xd1\x77\x2f\xab\x3f\xae\x12\xd7\xa6\x7b\x90\x40\x7a\xef\xcd\x6f\x66\xd6\x36\xad\x17\x45\x51\xfb\xc3\x67\xf5\x42\x7b\x2e\x98\x03\x4a\xf1\x0d\x56\x2f\xbe\xae\x92\x24\xcf\xf1\xa5\xb2\x01\x2a\xe4\x02\x19\xb5\xde\xc1\x54\xe4\xf6\x1c\xa0\x15\xa3\xac\xfd\x01\x61\xb4\xa0\x8c\x49\x2d\x09\x35\xac\x2c\x21\x59\x98\xd2\x49\x73\xf7\x4b\x39\x7c\x62\x79\xe0\xc0\xf2\x93\x77\xc5\x87\x8f\xdf\x37\xf8\x5a\xd8\xa7\x37\xaf\xb7\xaf\xd0\x58\x67\x9b\xae\x99\x18\x46\x11\x45\xff\x51\xb3\xc6\xef\x04\x00\x86\x47\xcd\x0a\xda\x35\xd6\x3d\x70\xb9\xc1\xf5\x0b\xfc\xec\x36\xfe\xb2\x41\x85\xd4\x4b\x32\x38\x5a\xe1\x96\x84\x53\x32\x46\x37\xa0\x4e\xab\xf4\xce\x8b\xf8\xc3\x37\xaa\x3b\x5e\xe3\xfa\xd6\x18\xdf\x39\x9d\xcb\xc4\x93\xe7\x78\x1c\x34\x20\x08\x97\x2c\xec\x0c\x43\xfd\x30\x80\xa1\x3c\xfc\xe3\x0f\x36\x7a\x74\x04\xae\xcb\x6c\x06\xc3\x0d\x62\xb5\x6c\x9a\x40\x36\x66\xbd\xbd\x4c\xfb\x2e\x8d\x1b\xd9\x20\x9f\x5c\xf3\x3b\x2a\x07\xe1\xfa\x58\x2c\x9e\xed\x16\x2d\x39\x6b\xd2\xd5\x7b\xdf\xd5\x3b\x38\xaf\x33\xf3\x33\xe2\x67\x9b\x1a\x00\x57\x63\x50\x3f\x8e\x87\x9f\xd8\x74\xca\x8b\xe6\x6d\x89\x0b\xab\xc3\xd5\x0d\x9c\xad\x17\xfa\x93\xf6\xb3\xc0\x3a\xb5\x79\xcf\x7b\xfa\x57\xca\xa5\xcb\x71\xf5\xb7\xd1\x7e\x09\x75\xf6\xa6\xfc\x27\xd2\xfd\x39\x7f\x7a\x36\xf9\x04\xa5\x4f\xfa\x3f\x01\x00\x00\xff\xff\x05\xa9\x75\x7a\x4f\x03\x00\x00" +var _storagefeesAdminSet_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6f\xd3\x40\x10\xc5\xef\xfe\x14\xaf\x3d\x20\x57\x42\x31\x07\xc4\x21\xa2\x44\x86\xc6\x5c\xa8\x8a\xe2\x22\xce\xdb\xcd\x38\x5e\x64\xef\x5a\xb3\x63\x12\x84\xfc\xdd\xd1\xfa\x4f\x70\x09\x89\xba\x87\xe4\xe0\xf7\xde\xfc\xde\xce\x9a\xba\x71\x2c\xc8\x2a\xb7\xcf\xc5\xb1\xda\x51\x46\xe4\x51\xb0\xab\xf1\xe6\x90\x7d\x79\xf8\x9e\x3f\x3e\x6c\xd2\xcf\xeb\x6c\xbd\xce\xd3\xbb\xbb\xcd\x3a\xcf\xa3\x28\x49\xf0\x58\x1a\x0f\x61\x65\xbd\xd2\x62\x9c\x85\x2e\x95\xdd\x91\x87\x94\x84\xa2\x72\x7b\xf8\x21\x0f\x45\x08\x6c\x14\xab\x9a\x84\xd8\x47\x33\x53\x3c\x6a\x3e\xfe\x12\xf2\x5f\x89\x37\xe4\x89\x7f\xd2\x36\xcc\x5d\xe2\x5b\x66\x0e\xef\xde\xae\x5e\xa3\x36\xd6\xd4\x6d\x3d\x02\x0e\x22\x15\xfc\x47\xcd\x0d\x7e\x47\x00\xd0\xff\x54\x24\x50\xdb\xda\xd8\x0d\x15\x4b\xbc\xfa\xa7\xdb\x22\x0d\x9f\x8c\x17\x56\xe2\x38\xea\x1d\x0d\x53\xa3\x98\x62\xa5\xb5\x2c\x91\xb6\x52\xa6\x5a\xbb\xd6\xca\x94\x1b\x4e\x92\xe0\xc9\x31\xbb\x3d\x14\x98\x0a\x62\xb2\x9a\x20\xae\x6f\xdc\xcf\x83\x7b\xfa\x41\x5a\x8e\x0e\x4f\x55\xb1\x98\x48\x70\x8b\x10\xbf\x18\x32\xde\x5f\xc6\xfa\x10\x87\x0d\x2c\x91\x8c\x17\x34\xfd\x07\x65\x2f\xbc\x39\x0e\x09\x67\xb5\x42\xa3\xac\xd1\xf1\xf5\x27\xd7\x56\x5b\x58\x27\x13\xeb\x33\xd2\x67\x2b\xe9\xc1\xae\x87\xa0\x6e\xb8\x07\x3a\x90\x6e\x85\x66\xa5\x4d\x81\x0b\x3b\xc2\xd5\x2d\xac\xa9\x66\xfa\x93\xda\x0b\x4f\x32\xd6\xbc\xa7\x9d\xfa\x5f\xca\xa5\x57\x70\xf5\xb7\x68\x37\x87\x3a\xfb\x24\x5e\x88\x74\x7f\xce\x1f\x9f\x4d\x3e\x41\xe9\xa2\xee\x4f\x00\x00\x00\xff\xff\xec\x9d\x5e\x73\x3f\x03\x00\x00" func storagefeesAdminSet_parametersCdcBytes() ([]byte, error) { return bindataRead( @@ -6159,11 +5970,11 @@ func storagefeesAdminSet_parametersCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/admin/set_parameters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0xd9, 0x32, 0xf5, 0x38, 0x90, 0x33, 0x23, 0xa, 0xeb, 0x8b, 0x76, 0xae, 0x50, 0x25, 0x2e, 0x3c, 0x95, 0x89, 0x31, 0x1, 0xd0, 0xa6, 0x9b, 0x56, 0x9b, 0x20, 0xe1, 0x48, 0x5e, 0xa9, 0x5c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa7, 0xa3, 0x32, 0x6, 0x3f, 0x4f, 0xeb, 0xc7, 0xce, 0x3b, 0x61, 0xd9, 0x69, 0x36, 0x97, 0xdd, 0xaf, 0xd5, 0xa1, 0x25, 0x5d, 0xda, 0xa7, 0x27, 0x20, 0xcd, 0x26, 0x35, 0xa6, 0xb4, 0x82, 0xd1}} return a, nil } -var _storagefeesScriptsGet_account_available_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8d\x31\x0e\xc2\x30\x0c\x45\xf7\x9c\xe2\xab\x53\xbb\x30\x21\x86\x6e\x65\xe8\x05\x80\x03\x98\xd4\x45\x11\xae\x8d\x9c\x04\x90\x10\x77\x67\x61\xca\xf6\xf4\x86\xf7\xd2\xf6\x30\x2f\x98\xc5\x5e\xa7\x62\x4e\x37\x9e\x99\x33\x56\xb7\x0d\x5d\x63\xbb\x10\x28\x46\xce\xb9\x27\x91\x01\x6b\x55\x6c\x94\xb4\xa7\x18\xad\x6a\x99\x96\xc5\x39\xe7\x11\x7f\x18\x46\x5c\xe6\xf4\x3e\xec\xf1\x09\x00\xe0\x5c\xaa\x6b\xbb\xda\x2d\xbc\x52\x95\x72\xb6\x3b\xeb\xf4\xa4\x24\x74\x15\x3e\x92\x90\x46\x6e\xd2\x43\xf8\x86\xf0\x0b\x00\x00\xff\xff\xee\x68\x60\x24\xb2\x00\x00\x00" +var _storagefeesScriptsGet_account_available_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\x3f\xcb\xc2\x30\x10\x80\xf1\x3d\x9f\xe2\xc6\x76\x79\x79\x07\x71\xe8\x16\x69\xe2\x22\x14\x9a\x8a\xf3\x99\x5e\x25\x78\x49\x24\x7f\xb4\x20\x7e\x77\x17\xa7\x6e\xcf\xf4\xfc\x9c\x7f\xc4\x54\x40\x73\x7c\x99\x12\x13\xde\x48\x13\x65\x58\x52\xf4\xf0\xbf\xea\xd3\x70\x31\xd3\x30\xca\xa3\xd2\x4a\x19\xd9\xf7\xa3\x32\x46\x08\xb4\x96\x72\x6e\x90\xb9\x85\xa5\x06\xf0\xe8\x42\x83\xd6\xc6\x1a\x8a\x9c\xe7\x44\x39\x77\xf0\x8b\xb6\x83\xb3\x76\xeb\x7e\x07\x6f\x01\x00\x90\xa8\xd4\x14\xb6\xe2\xdf\x4c\x0b\x56\x2e\x53\xbc\x53\x90\x4f\x74\x8c\x57\xa6\x03\x32\x06\x4b\x9b\x75\x2b\x3e\x42\x7c\x03\x00\x00\xff\xff\x9c\xbd\x6d\xad\xb9\x00\x00\x00" func storagefeesScriptsGet_account_available_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -6179,11 +5990,11 @@ func storagefeesScriptsGet_account_available_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/scripts/get_account_available_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x32, 0x50, 0xda, 0x76, 0x6e, 0x91, 0xb, 0x23, 0x25, 0x39, 0x44, 0xac, 0xdf, 0x2c, 0xbb, 0xea, 0x83, 0xa1, 0xba, 0xc6, 0x85, 0x46, 0x4d, 0xac, 0x95, 0xe4, 0x42, 0xdd, 0x66, 0xb6, 0x86, 0xba}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4f, 0x19, 0x75, 0x61, 0xa0, 0xbc, 0xea, 0xac, 0x1c, 0xc4, 0xc8, 0x8c, 0x33, 0x92, 0xcc, 0x1f, 0x8d, 0x26, 0x58, 0x7c, 0x63, 0xee, 0xc2, 0x27, 0x3b, 0x4f, 0xad, 0x90, 0xac, 0x1e, 0xf8, 0x56}} return a, nil } -var _storagefeesScriptsGet_accounts_capacity_for_transaction_storage_checkCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\x21\x27\x1b\x4c\x4f\xa5\x07\xdd\x42\x40\x3f\xd0\xf4\x14\x72\x58\x94\x4d\x2a\x6a\x49\x66\x57\xa6\x0e\xa5\xff\x5e\x12\x0b\x63\x5c\x5d\x34\x3c\x86\xd9\x17\xe2\x90\xa5\xc0\xf5\xf9\xfb\xbd\x64\xa1\x1b\x3b\x66\xc5\x55\x72\xc4\x6e\x43\x77\xc6\x90\xf7\xac\xda\x50\xdf\xb7\xb8\x8e\x09\x91\x42\x6a\xc8\xfb\x3c\xa6\xb2\xbf\x5c\x84\x55\x59\x2d\x4e\x35\x9f\x3b\x0c\x74\x67\xb1\xa8\xa0\x43\xa4\xe9\x38\x3d\xd6\x2c\x3e\x5c\x98\xde\x5e\x5b\x8b\xd3\x9c\xce\xf8\x31\x00\x20\x5c\x46\x49\x5b\xa7\x97\x1b\x97\xfd\x7c\x49\x0f\x34\x90\x0f\xe5\xee\xb2\x1c\x85\x92\x92\x2f\x21\xa7\x5a\x3e\x7c\xb2\xff\x6a\x9e\x4b\x8f\xf7\xdf\x6e\x4b\x3a\x2c\xe5\x6a\xfb\xfc\x56\x78\x25\xbd\xc4\xd6\xfc\xfe\x05\x00\x00\xff\xff\x33\xc0\x69\x3d\x3d\x01\x00\x00" +var _storagefeesScriptsGet_accounts_capacity_for_transaction_storage_checkCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\x31\x6b\xc3\x30\x10\x85\x77\xff\x8a\x37\xda\x60\x4a\x87\xd2\xc1\x9b\x49\xac\x2e\x85\x40\xe4\xd2\x21\x64\x38\x94\x4b\x2a\x6a\x4b\xe6\x4e\xa6\x0e\xa5\xff\xbd\x24\x31\x21\x24\x5a\xf4\xf8\x78\xdc\xfb\x7c\x3f\x44\x49\x30\x5d\xfc\xb1\x29\x0a\x1d\xd8\x30\x2b\xf6\x12\x7b\x3c\x4f\xe6\x7d\xf5\x69\xdb\xd5\xba\x7e\x6b\x4c\xd3\xd8\x7a\xb9\x5c\x37\xd6\x66\x19\x39\xc7\xaa\x39\x75\x5d\x81\xfd\x18\xd0\x93\x0f\x39\x39\x17\xc7\x90\xea\xdd\x4e\x58\x95\xb5\xc2\x66\xce\xdb\x12\x03\x1d\x59\x2a\xcc\xa0\x44\x4f\x53\x3b\x9d\xa6\x2a\x7c\x18\x3f\xbd\xbe\x14\x15\x36\x97\xb4\xc5\x6f\x06\x00\xc2\x69\x94\x70\xaf\xf6\x74\xe0\x54\x5f\x96\x74\x41\x03\x39\x9f\x8e\x26\x4a\x2b\x14\x94\x5c\xf2\x31\xcc\xe5\xc5\x17\xbb\xef\xfc\x7c\xe9\xf4\x1e\xed\xee\x49\x89\x6b\x79\xb6\x3d\x7f\x37\xf8\x46\xfa\x1a\x8b\xec\xef\x3f\x00\x00\xff\xff\x60\xc0\x2a\x19\x44\x01\x00\x00" func storagefeesScriptsGet_accounts_capacity_for_transaction_storage_checkCdcBytes() ([]byte, error) { return bindataRead( @@ -6199,11 +6010,11 @@ func storagefeesScriptsGet_accounts_capacity_for_transaction_storage_checkCdc() } info := bindataFileInfo{name: "storageFees/scripts/get_accounts_capacity_for_transaction_storage_check.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9b, 0xdf, 0x5, 0xd2, 0x29, 0xa8, 0x2a, 0x4b, 0xa1, 0xae, 0xb3, 0x56, 0xc, 0xa9, 0x35, 0x83, 0xaa, 0xa7, 0x33, 0x53, 0x3b, 0xa3, 0x19, 0x1b, 0x71, 0x36, 0xbc, 0x97, 0x1, 0x9, 0x48, 0xcc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0xe7, 0x9a, 0xeb, 0xbc, 0x63, 0x67, 0x64, 0x79, 0x7f, 0x85, 0x54, 0x38, 0xeb, 0xe4, 0xec, 0xac, 0x16, 0xfe, 0x9e, 0x8d, 0x5c, 0xe6, 0xeb, 0x20, 0x7d, 0x5f, 0x1b, 0x59, 0x21, 0xf5, 0xe0}} return a, nil } -var _storagefeesScriptsGet_storage_capacityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\xbd\xaa\xc2\x40\x10\xc5\xf1\x7e\x9e\xe2\x90\x2a\x69\x6e\x75\xb1\x48\x17\x84\xbc\x80\xf8\x00\xc3\x64\x22\x0b\xfb\x11\x66\x67\x51\x11\xdf\xdd\x42\xab\xed\x0e\xa7\xf8\xfd\x43\x3a\x8a\x39\xd6\x58\xee\x17\x2f\xc6\x37\x5d\x55\x2b\x76\x2b\x09\x43\xf7\x0e\x44\x2c\xa2\xb5\x8e\x1c\xe3\x84\xbd\x65\x24\x0e\x79\x64\x91\xd2\xb2\x2f\xdb\x66\x5a\xeb\x8c\xdf\x98\x66\x5c\xd7\xf0\x38\xfd\xe3\x45\x00\x60\xea\xcd\x72\x9f\xfa\x13\x8e\xd2\x22\xbb\x2e\x5f\xe6\xcc\x07\x4b\xf0\x67\xc7\x4e\xf4\x26\xfa\x04\x00\x00\xff\xff\x8c\x0d\x5c\xd9\xae\x00\x00\x00" +var _storagefeesScriptsGet_storage_capacityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\x3d\x0b\xc2\x30\x10\x80\xe1\x3d\xbf\xe2\xc6\x76\x11\x07\x71\xe8\x16\x6c\xe2\x22\x14\x1a\xc5\xf9\xb8\x5e\x25\x90\x8f\x92\x0f\xac\x88\xff\xdd\x41\xa7\x6e\xef\xf4\xbc\xd6\x2f\x31\x15\xd0\x2e\x3e\x4d\x89\x09\x1f\xac\x99\x33\xcc\x29\x7a\xd8\xaf\xfa\x32\xdc\xcd\x75\x18\xe5\x59\x69\xa5\x8c\xec\xfb\x51\x19\x23\x04\x12\x71\xce\x0d\x3a\xd7\xc2\x5c\x03\x78\xb4\xa1\x41\xa2\x58\x43\x91\xd3\x94\x38\xe7\x0e\xfe\xd1\x76\x70\xd3\x76\x3d\x1e\xe0\x2d\x00\x00\x12\x97\x9a\xc2\xf6\xb8\x23\x74\x54\x1d\x16\x96\x3f\xe6\x84\x0b\x92\x2d\xaf\x0d\xdb\x8a\x8f\x10\xdf\x00\x00\x00\xff\xff\xeb\xdb\x30\x0f\xb5\x00\x00\x00" func storagefeesScriptsGet_storage_capacityCdcBytes() ([]byte, error) { return bindataRead( @@ -6219,11 +6030,11 @@ func storagefeesScriptsGet_storage_capacityCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/scripts/get_storage_capacity.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x63, 0xd2, 0xf3, 0x9f, 0xea, 0xbb, 0x73, 0x3a, 0x51, 0xc8, 0xd, 0x5e, 0xc2, 0x63, 0x95, 0xa, 0x55, 0x31, 0x8e, 0x32, 0xbd, 0x2f, 0x88, 0xfe, 0xca, 0x12, 0x76, 0xa7, 0x3d, 0x7f, 0x40, 0xa7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x37, 0x54, 0xd, 0xa8, 0xab, 0x2b, 0xe6, 0x94, 0x7, 0xfc, 0x0, 0xcc, 0xe2, 0x2c, 0x81, 0x79, 0xfd, 0xd1, 0x6d, 0x2d, 0x80, 0xfb, 0xaa, 0x6d, 0xc7, 0xe3, 0x92, 0xd1, 0x25, 0xbe, 0xa7, 0x58}} return a, nil } -var _storagefeesScriptsGet_storage_fee_conversionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x2e\xc9\x2f\x4a\x4c\x4f\x75\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x50\x42\x13\x55\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x37\x53\xaf\x18\xc2\xf6\x4d\x4d\x4f\x74\xaa\x2c\x49\x2d\x0e\x48\x2d\x0a\x4a\x2d\x4e\x2d\x2a\x4b\x4d\x71\xf3\xf1\x0f\xe7\xaa\xe5\xe2\x02\x04\x00\x00\xff\xff\x0f\x9e\x44\xff\x8e\x00\x00\x00" +var _storagefeesScriptsGet_storage_fee_conversionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\xbf\x0a\xc2\x30\x10\x80\xf1\xfd\x9e\xe2\xc6\x76\x11\x07\x71\x70\xab\x34\x71\x51\x2a\x89\xe2\x1c\xea\xb5\x04\xf2\x47\xee\x52\xad\x88\xef\x2e\xe2\xe6\xf6\x4d\xdf\xcf\xc7\x5b\xe6\x82\x3a\xe4\x87\x2d\x99\xdd\x48\x9a\x48\x70\xe0\x1c\x71\x39\xeb\x7d\x77\xb1\xa7\xce\x34\x3b\xa5\x95\xb2\x4d\xdb\x1a\x65\x2d\x80\xeb\x7b\x12\xa9\x5c\x08\x35\x0e\x53\xc2\xe8\x7c\xaa\xea\x0d\x9e\xb5\x9f\xd7\x2b\x7c\x01\x22\x22\x53\x99\x38\xfd\xaf\x17\xf2\xeb\x03\x8d\x6e\xfb\x2c\x24\x47\x62\x43\x42\x7c\xa7\xeb\x97\x83\x37\xc0\x27\x00\x00\xff\xff\xc0\x2c\xcd\xf6\x95\x00\x00\x00" func storagefeesScriptsGet_storage_fee_conversionCdcBytes() ([]byte, error) { return bindataRead( @@ -6239,11 +6050,11 @@ func storagefeesScriptsGet_storage_fee_conversionCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/scripts/get_storage_fee_conversion.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0x5c, 0x5d, 0x1, 0xde, 0x2a, 0xe5, 0x96, 0x6b, 0x2b, 0x70, 0x3a, 0x9c, 0xae, 0x50, 0x36, 0x4a, 0xea, 0xf2, 0xef, 0x3d, 0xdd, 0xf7, 0xa2, 0x20, 0x5c, 0x52, 0xf6, 0xb7, 0x93, 0x56, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0x1f, 0x42, 0x90, 0x62, 0x9f, 0x28, 0x22, 0x6d, 0x5b, 0xb1, 0x53, 0x2f, 0xf8, 0x5e, 0x10, 0xf8, 0xbe, 0x9d, 0x50, 0x3, 0x3f, 0x9e, 0x92, 0xc1, 0x92, 0x5c, 0xcb, 0xd2, 0x12, 0x6a, 0x56}} return a, nil } -var _storagefeesScriptsGet_storage_fee_minCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcc\x31\x0a\x02\x41\x0c\x05\xd0\x3e\xa7\xf8\x6c\xb5\xdb\x58\x89\x85\x07\x98\x03\x28\x1e\x20\x2c\x59\x09\x4c\x12\xc9\xcc\xa8\x20\xde\xdd\xc6\x6a\xdb\x57\x3c\xb5\x47\x64\x47\xa9\xf1\xba\xf6\x48\xbe\x4b\x11\x69\xd8\x32\x0c\xd3\x4e\x27\x22\x5e\x57\x69\x6d\xe6\x5a\x17\x6c\xc3\x61\xac\x3e\x2f\x67\xdc\x8a\xbe\x4f\x47\x7c\x08\x00\x52\xfa\x48\xdf\x9f\x07\x53\x57\x1b\xf6\xa7\x8b\x34\xc9\x27\x77\x0d\xa7\x2f\xd1\x2f\x00\x00\xff\xff\x10\x6e\x9d\x6a\x88\x00\x00\x00" +var _storagefeesScriptsGet_storage_fee_minCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcc\xb1\x0a\xc2\x30\x10\x00\xd0\xfd\xbe\xe2\xc6\x76\x11\x07\x71\x70\x2b\x34\x71\x11\x0a\x89\xe2\x1c\xca\x55\x0e\x72\x89\x5c\x12\x2d\x88\xff\xee\xe2\xd4\xf5\x0d\x8f\xe5\x99\xb5\xa2\x8d\xf9\xed\x6b\xd6\xf0\x20\x4b\x54\x70\xd1\x2c\xb8\x5f\xed\x65\xba\xfb\xeb\xe4\x86\xb3\xb1\xc6\xf8\x61\x1c\x9d\xf1\x1e\x20\xcc\x33\x95\xd2\x85\x18\x7b\x5c\x5a\x42\x09\x9c\xba\xfe\x84\x37\xcb\xeb\xf1\x80\x1f\x40\x44\x54\xaa\x4d\xd3\xb6\xde\x09\x27\x96\x26\x7f\x72\x54\x48\x5f\xa1\x72\x4e\xf0\x05\xf8\x05\x00\x00\xff\xff\xa5\xb7\x5f\x7e\x8f\x00\x00\x00" func storagefeesScriptsGet_storage_fee_minCdcBytes() ([]byte, error) { return bindataRead( @@ -6259,7 +6070,7 @@ func storagefeesScriptsGet_storage_fee_minCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/scripts/get_storage_fee_min.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x65, 0x59, 0xec, 0xe1, 0xe, 0xc5, 0x8d, 0x9f, 0xd9, 0x60, 0xe4, 0x4e, 0xd0, 0x48, 0x59, 0xf0, 0xe1, 0x96, 0xc1, 0xc, 0xa, 0xd6, 0x95, 0x97, 0xa3, 0x50, 0x4c, 0xd1, 0x1d, 0x13, 0x3f, 0x1a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x94, 0x76, 0xf, 0x44, 0x9, 0xe, 0xac, 0x1d, 0x61, 0x30, 0x83, 0xe7, 0xec, 0x6b, 0xb4, 0xd2, 0xba, 0x9e, 0xef, 0x3f, 0xae, 0xf, 0xc1, 0x81, 0xd1, 0x47, 0x52, 0x9a, 0xec, 0xae, 0xaf, 0xd9}} return a, nil } @@ -6372,9 +6183,6 @@ var _bindata = map[string]func() (*asset, error){ "FlowServiceAccount/set_is_account_creation_restricted.cdc": flowserviceaccountSet_is_account_creation_restrictedCdc, "FlowServiceAccount/set_tx_fee_parameters.cdc": flowserviceaccountSet_tx_fee_parametersCdc, "FlowServiceAccount/set_tx_fee_surge_factor.cdc": flowserviceaccountSet_tx_fee_surge_factorCdc, - "accounts/add_key.cdc": accountsAdd_keyCdc, - "accounts/create_new_account.cdc": accountsCreate_new_accountCdc, - "accounts/revoke_key.cdc": accountsRevoke_keyCdc, "dkg/admin/force_stop_dkg.cdc": dkgAdminForce_stop_dkgCdc, "dkg/admin/publish_participant.cdc": dkgAdminPublish_participantCdc, "dkg/admin/set_safe_threshold.cdc": dkgAdminSet_safe_thresholdCdc, @@ -6391,7 +6199,6 @@ var _bindata = map[string]func() (*asset, error){ "dkg/scripts/get_node_has_submitted.cdc": dkgScriptsGet_node_has_submittedCdc, "dkg/scripts/get_node_is_claimed.cdc": dkgScriptsGet_node_is_claimedCdc, "dkg/scripts/get_node_is_registered.cdc": dkgScriptsGet_node_is_registeredCdc, - "dkg/scripts/get_submissions_count.cdc": dkgScriptsGet_submissions_countCdc, "dkg/scripts/get_thresholds.cdc": dkgScriptsGet_thresholdsCdc, "dkg/scripts/get_whiteboard_messages.cdc": dkgScriptsGet_whiteboard_messagesCdc, "dkg/send_final_submission.cdc": dkgSend_final_submissionCdc, @@ -6407,7 +6214,6 @@ var _bindata = map[string]func() (*asset, error){ "epoch/admin/update_clusters.cdc": epochAdminUpdate_clustersCdc, "epoch/admin/update_dkg_phase_views.cdc": epochAdminUpdate_dkg_phase_viewsCdc, "epoch/admin/update_epoch_config.cdc": epochAdminUpdate_epoch_configCdc, - "epoch/admin/update_epoch_timing_config.cdc": epochAdminUpdate_epoch_timing_configCdc, "epoch/admin/update_epoch_views.cdc": epochAdminUpdate_epoch_viewsCdc, "epoch/admin/update_reward.cdc": epochAdminUpdate_rewardCdc, "epoch/admin/update_staking_views.cdc": epochAdminUpdate_staking_viewsCdc, @@ -6421,10 +6227,8 @@ var _bindata = map[string]func() (*asset, error){ "epoch/scripts/get_epoch_counter.cdc": epochScriptsGet_epoch_counterCdc, "epoch/scripts/get_epoch_metadata.cdc": epochScriptsGet_epoch_metadataCdc, "epoch/scripts/get_epoch_phase.cdc": epochScriptsGet_epoch_phaseCdc, - "epoch/scripts/get_epoch_timing_config.cdc": epochScriptsGet_epoch_timing_configCdc, "epoch/scripts/get_proposed_counter.cdc": epochScriptsGet_proposed_counterCdc, "epoch/scripts/get_randomize.cdc": epochScriptsGet_randomizeCdc, - "epoch/scripts/get_target_end_time_for_epoch.cdc": epochScriptsGet_target_end_time_for_epochCdc, "flowToken/burn_tokens.cdc": flowtokenBurn_tokensCdc, "flowToken/create_forwarder.cdc": flowtokenCreate_forwarderCdc, "flowToken/mint_tokens.cdc": flowtokenMint_tokensCdc, @@ -6453,7 +6257,6 @@ var _bindata = map[string]func() (*asset, error){ "idTableStaking/admin/set_claimed.cdc": idtablestakingAdminSet_claimedCdc, "idTableStaking/admin/set_node_weight.cdc": idtablestakingAdminSet_node_weightCdc, "idTableStaking/admin/set_non_operational.cdc": idtablestakingAdminSet_non_operationalCdc, - "idTableStaking/admin/set_open_access_node_slots.cdc": idtablestakingAdminSet_open_access_node_slotsCdc, "idTableStaking/admin/set_slot_limits.cdc": idtablestakingAdminSet_slot_limitsCdc, "idTableStaking/admin/start_staking.cdc": idtablestakingAdminStart_stakingCdc, "idTableStaking/admin/transfer_admin.cdc": idtablestakingAdminTransfer_adminCdc, @@ -6467,6 +6270,7 @@ var _bindata = map[string]func() (*asset, error){ "idTableStaking/delegation/del_stake_unstaked.cdc": idtablestakingDelegationDel_stake_unstakedCdc, "idTableStaking/delegation/del_withdraw_reward_tokens.cdc": idtablestakingDelegationDel_withdraw_reward_tokensCdc, "idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc": idtablestakingDelegationDel_withdraw_unstaked_tokensCdc, + "idTableStaking/delegation/delegator_add_capability.cdc": idtablestakingDelegationDelegator_add_capabilityCdc, "idTableStaking/delegation/get_delegator_committed.cdc": idtablestakingDelegationGet_delegator_committedCdc, "idTableStaking/delegation/get_delegator_info.cdc": idtablestakingDelegationGet_delegator_infoCdc, "idTableStaking/delegation/get_delegator_info_from_address.cdc": idtablestakingDelegationGet_delegator_info_from_addressCdc, @@ -6478,6 +6282,7 @@ var _bindata = map[string]func() (*asset, error){ "idTableStaking/delegation/get_delegator_unstaking_request.cdc": idtablestakingDelegationGet_delegator_unstaking_requestCdc, "idTableStaking/delegation/register_delegator.cdc": idtablestakingDelegationRegister_delegatorCdc, "idTableStaking/delegation/register_many_delegators.cdc": idtablestakingDelegationRegister_many_delegatorsCdc, + "idTableStaking/node/node_add_capability.cdc": idtablestakingNodeNode_add_capabilityCdc, "idTableStaking/node/register_many_nodes.cdc": idtablestakingNodeRegister_many_nodesCdc, "idTableStaking/node/register_node.cdc": idtablestakingNodeRegister_nodeCdc, "idTableStaking/node/request_unstake.cdc": idtablestakingNodeRequest_unstakeCdc, @@ -6521,6 +6326,7 @@ var _bindata = map[string]func() (*asset, error){ "idTableStaking/scripts/get_total_staked.cdc": idtablestakingScriptsGet_total_stakedCdc, "idTableStaking/scripts/get_total_staked_by_type.cdc": idtablestakingScriptsGet_total_staked_by_typeCdc, "idTableStaking/scripts/get_weekly_payout.cdc": idtablestakingScriptsGet_weekly_payoutCdc, + "inspect_field.cdc": inspect_fieldCdc, "lockedTokens/admin/admin_create_shared_accounts.cdc": lockedtokensAdminAdmin_create_shared_accountsCdc, "lockedTokens/admin/admin_deploy_contract.cdc": lockedtokensAdminAdmin_deploy_contractCdc, "lockedTokens/admin/admin_deposit_account_creator.cdc": lockedtokensAdminAdmin_deposit_account_creatorCdc, @@ -6533,6 +6339,7 @@ var _bindata = map[string]func() (*asset, error){ "lockedTokens/admin/custody_create_shared_accounts.cdc": lockedtokensAdminCustody_create_shared_accountsCdc, "lockedTokens/admin/custody_setup_account_creator.cdc": lockedtokensAdminCustody_setup_account_creatorCdc, "lockedTokens/admin/deposit_locked_tokens.cdc": lockedtokensAdminDeposit_locked_tokensCdc, + "lockedTokens/admin/get_unlocking_bad_accounts.cdc": lockedtokensAdminGet_unlocking_bad_accountsCdc, "lockedTokens/admin/unlock_tokens.cdc": lockedtokensAdminUnlock_tokensCdc, "lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc": lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc, "lockedTokens/delegator/delegate_new_tokens.cdc": lockedtokensDelegatorDelegate_new_tokensCdc, @@ -6593,11 +6400,6 @@ var _bindata = map[string]func() (*asset, error){ "quorumCertificate/scripts/get_voter_is_registered.cdc": quorumcertificateScriptsGet_voter_is_registeredCdc, "quorumCertificate/scripts/get_voting_completed.cdc": quorumcertificateScriptsGet_voting_completedCdc, "quorumCertificate/submit_vote.cdc": quorumcertificateSubmit_voteCdc, - "randomBeaconHistory/scripts/get_backfiller_max_entries.cdc": randombeaconhistoryScriptsGet_backfiller_max_entriesCdc, - "randomBeaconHistory/scripts/get_latest_source_of_randomness.cdc": randombeaconhistoryScriptsGet_latest_source_of_randomnessCdc, - "randomBeaconHistory/scripts/get_source_of_randomness.cdc": randombeaconhistoryScriptsGet_source_of_randomnessCdc, - "randomBeaconHistory/scripts/get_source_of_randomness_page.cdc": randombeaconhistoryScriptsGet_source_of_randomness_pageCdc, - "randomBeaconHistory/transactions/set_backfiller_max_entries.cdc": randombeaconhistoryTransactionsSet_backfiller_max_entriesCdc, "stakingCollection/close_stake.cdc": stakingcollectionClose_stakeCdc, "stakingCollection/create_machine_account.cdc": stakingcollectionCreate_machine_accountCdc, "stakingCollection/create_new_tokenholder_acct.cdc": stakingcollectionCreate_new_tokenholder_acctCdc, @@ -6719,11 +6521,6 @@ var _bintree = &bintree{nil, map[string]*bintree{ "set_tx_fee_parameters.cdc": {flowserviceaccountSet_tx_fee_parametersCdc, map[string]*bintree{}}, "set_tx_fee_surge_factor.cdc": {flowserviceaccountSet_tx_fee_surge_factorCdc, map[string]*bintree{}}, }}, - "accounts": {nil, map[string]*bintree{ - "add_key.cdc": {accountsAdd_keyCdc, map[string]*bintree{}}, - "create_new_account.cdc": {accountsCreate_new_accountCdc, map[string]*bintree{}}, - "revoke_key.cdc": {accountsRevoke_keyCdc, map[string]*bintree{}}, - }}, "dkg": {nil, map[string]*bintree{ "admin": {nil, map[string]*bintree{ "force_stop_dkg.cdc": {dkgAdminForce_stop_dkgCdc, map[string]*bintree{}}, @@ -6744,7 +6541,6 @@ var _bintree = &bintree{nil, map[string]*bintree{ "get_node_has_submitted.cdc": {dkgScriptsGet_node_has_submittedCdc, map[string]*bintree{}}, "get_node_is_claimed.cdc": {dkgScriptsGet_node_is_claimedCdc, map[string]*bintree{}}, "get_node_is_registered.cdc": {dkgScriptsGet_node_is_registeredCdc, map[string]*bintree{}}, - "get_submissions_count.cdc": {dkgScriptsGet_submissions_countCdc, map[string]*bintree{}}, "get_thresholds.cdc": {dkgScriptsGet_thresholdsCdc, map[string]*bintree{}}, "get_whiteboard_messages.cdc": {dkgScriptsGet_whiteboard_messagesCdc, map[string]*bintree{}}, }}, @@ -6764,7 +6560,6 @@ var _bintree = &bintree{nil, map[string]*bintree{ "update_clusters.cdc": {epochAdminUpdate_clustersCdc, map[string]*bintree{}}, "update_dkg_phase_views.cdc": {epochAdminUpdate_dkg_phase_viewsCdc, map[string]*bintree{}}, "update_epoch_config.cdc": {epochAdminUpdate_epoch_configCdc, map[string]*bintree{}}, - "update_epoch_timing_config.cdc": {epochAdminUpdate_epoch_timing_configCdc, map[string]*bintree{}}, "update_epoch_views.cdc": {epochAdminUpdate_epoch_viewsCdc, map[string]*bintree{}}, "update_reward.cdc": {epochAdminUpdate_rewardCdc, map[string]*bintree{}}, "update_staking_views.cdc": {epochAdminUpdate_staking_viewsCdc, map[string]*bintree{}}, @@ -6782,10 +6577,8 @@ var _bintree = &bintree{nil, map[string]*bintree{ "get_epoch_counter.cdc": {epochScriptsGet_epoch_counterCdc, map[string]*bintree{}}, "get_epoch_metadata.cdc": {epochScriptsGet_epoch_metadataCdc, map[string]*bintree{}}, "get_epoch_phase.cdc": {epochScriptsGet_epoch_phaseCdc, map[string]*bintree{}}, - "get_epoch_timing_config.cdc": {epochScriptsGet_epoch_timing_configCdc, map[string]*bintree{}}, "get_proposed_counter.cdc": {epochScriptsGet_proposed_counterCdc, map[string]*bintree{}}, "get_randomize.cdc": {epochScriptsGet_randomizeCdc, map[string]*bintree{}}, - "get_target_end_time_for_epoch.cdc": {epochScriptsGet_target_end_time_for_epochCdc, map[string]*bintree{}}, }}, }}, "flowToken": {nil, map[string]*bintree{ @@ -6822,7 +6615,6 @@ var _bintree = &bintree{nil, map[string]*bintree{ "set_claimed.cdc": {idtablestakingAdminSet_claimedCdc, map[string]*bintree{}}, "set_node_weight.cdc": {idtablestakingAdminSet_node_weightCdc, map[string]*bintree{}}, "set_non_operational.cdc": {idtablestakingAdminSet_non_operationalCdc, map[string]*bintree{}}, - "set_open_access_node_slots.cdc": {idtablestakingAdminSet_open_access_node_slotsCdc, map[string]*bintree{}}, "set_slot_limits.cdc": {idtablestakingAdminSet_slot_limitsCdc, map[string]*bintree{}}, "start_staking.cdc": {idtablestakingAdminStart_stakingCdc, map[string]*bintree{}}, "transfer_admin.cdc": {idtablestakingAdminTransfer_adminCdc, map[string]*bintree{}}, @@ -6838,6 +6630,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "del_stake_unstaked.cdc": {idtablestakingDelegationDel_stake_unstakedCdc, map[string]*bintree{}}, "del_withdraw_reward_tokens.cdc": {idtablestakingDelegationDel_withdraw_reward_tokensCdc, map[string]*bintree{}}, "del_withdraw_unstaked_tokens.cdc": {idtablestakingDelegationDel_withdraw_unstaked_tokensCdc, map[string]*bintree{}}, + "delegator_add_capability.cdc": {idtablestakingDelegationDelegator_add_capabilityCdc, map[string]*bintree{}}, "get_delegator_committed.cdc": {idtablestakingDelegationGet_delegator_committedCdc, map[string]*bintree{}}, "get_delegator_info.cdc": {idtablestakingDelegationGet_delegator_infoCdc, map[string]*bintree{}}, "get_delegator_info_from_address.cdc": {idtablestakingDelegationGet_delegator_info_from_addressCdc, map[string]*bintree{}}, @@ -6851,6 +6644,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "register_many_delegators.cdc": {idtablestakingDelegationRegister_many_delegatorsCdc, map[string]*bintree{}}, }}, "node": {nil, map[string]*bintree{ + "node_add_capability.cdc": {idtablestakingNodeNode_add_capabilityCdc, map[string]*bintree{}}, "register_many_nodes.cdc": {idtablestakingNodeRegister_many_nodesCdc, map[string]*bintree{}}, "register_node.cdc": {idtablestakingNodeRegister_nodeCdc, map[string]*bintree{}}, "request_unstake.cdc": {idtablestakingNodeRequest_unstakeCdc, map[string]*bintree{}}, @@ -6898,6 +6692,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "get_weekly_payout.cdc": {idtablestakingScriptsGet_weekly_payoutCdc, map[string]*bintree{}}, }}, }}, + "inspect_field.cdc": {inspect_fieldCdc, map[string]*bintree{}}, "lockedTokens": {nil, map[string]*bintree{ "admin": {nil, map[string]*bintree{ "admin_create_shared_accounts.cdc": {lockedtokensAdminAdmin_create_shared_accountsCdc, map[string]*bintree{}}, @@ -6912,6 +6707,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "custody_create_shared_accounts.cdc": {lockedtokensAdminCustody_create_shared_accountsCdc, map[string]*bintree{}}, "custody_setup_account_creator.cdc": {lockedtokensAdminCustody_setup_account_creatorCdc, map[string]*bintree{}}, "deposit_locked_tokens.cdc": {lockedtokensAdminDeposit_locked_tokensCdc, map[string]*bintree{}}, + "get_unlocking_bad_accounts.cdc": {lockedtokensAdminGet_unlocking_bad_accountsCdc, map[string]*bintree{}}, "unlock_tokens.cdc": {lockedtokensAdminUnlock_tokensCdc, map[string]*bintree{}}, "unlock_tokens_for_multiple_accounts.cdc": {lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc, map[string]*bintree{}}, }}, @@ -6992,17 +6788,6 @@ var _bintree = &bintree{nil, map[string]*bintree{ }}, "submit_vote.cdc": {quorumcertificateSubmit_voteCdc, map[string]*bintree{}}, }}, - "randomBeaconHistory": {nil, map[string]*bintree{ - "scripts": {nil, map[string]*bintree{ - "get_backfiller_max_entries.cdc": {randombeaconhistoryScriptsGet_backfiller_max_entriesCdc, map[string]*bintree{}}, - "get_latest_source_of_randomness.cdc": {randombeaconhistoryScriptsGet_latest_source_of_randomnessCdc, map[string]*bintree{}}, - "get_source_of_randomness.cdc": {randombeaconhistoryScriptsGet_source_of_randomnessCdc, map[string]*bintree{}}, - "get_source_of_randomness_page.cdc": {randombeaconhistoryScriptsGet_source_of_randomness_pageCdc, map[string]*bintree{}}, - }}, - "transactions": {nil, map[string]*bintree{ - "set_backfiller_max_entries.cdc": {randombeaconhistoryTransactionsSet_backfiller_max_entriesCdc, map[string]*bintree{}}, - }}, - }}, "stakingCollection": {nil, map[string]*bintree{ "close_stake.cdc": {stakingcollectionClose_stakeCdc, map[string]*bintree{}}, "create_machine_account.cdc": {stakingcollectionCreate_machine_accountCdc, map[string]*bintree{}}, diff --git a/lib/go/templates/manifest.mainnet.json b/lib/go/templates/manifest.mainnet.json index cfa472cea..5c75f2cd8 100755 --- a/lib/go/templates/manifest.mainnet.json +++ b/lib/go/templates/manifest.mainnet.json @@ -2,78 +2,65 @@ "network": "mainnet", "templates": [ { - "id": "FA.01", - "name": "Create Account", - "source": "import Crypto\n\ntransaction(key: String, signatureAlgorithm: UInt8, hashAlgorithm: UInt8, weight: UFix64) {\n\tprepare(signer: auth(BorrowValue, Storage) \u0026Account) {\n\t\tpre {\n\t\t\tsignatureAlgorithm \u003e= 1 \u0026\u0026 signatureAlgorithm \u003c= 3: \"Must provide a signature algorithm raw value that is 1, 2, or 3\"\n\t\t\thashAlgorithm \u003e= 1 \u0026\u0026 hashAlgorithm \u003c= 6: \"Must provide a hash algorithm raw value that is between 1 and 6\"\n\t\t\tweight \u003c= 1000.0: \"The key weight must be between 0 and 1000\"\n\t\t}\n\n\t\tlet publicKey = PublicKey(\n\t\t\tpublicKey: key.decodeHex(),\n\t\t\tsignatureAlgorithm: SignatureAlgorithm(rawValue: signatureAlgorithm)!\n\t\t)\n\n\t\tlet account = Account(payer: signer)\n\n\t\taccount.keys.add(publicKey: publicKey, hashAlgorithm: HashAlgorithm(rawValue: hashAlgorithm)!, weight: weight)\n\t}\n}", + "id": "TH.01", + "name": "Withdraw Unlocked FLOW", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: AuthAccount) {\n self.holderRef = acct.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { - "type": "String", - "name": "key", - "label": "Public Key", - "sampleValues": [ - { - "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", - "type": "String" - } - ] - }, - { - "type": "UInt8", - "name": "signatureAlgorithm", - "label": "Raw Value for Signature Algorithm Enum", - "sampleValues": [ - { - "value": "1", - "type": "UInt8" - } - ] - }, - { - "type": "UInt8", - "name": "hashAlgorithm", - "label": "Raw Value for Hash Algorithm Enum", + "type": "UFix64", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "1", - "type": "UInt8" + "value": "92233720368.54775808", + "type": "UFix64" } ] - }, + } + ], + "network": "mainnet", + "hash": "a2146e3e6e7718779ce59376b88760c154d82b7d132fe2c377114ec7cf434e7b" + }, + { + "id": "TH.02", + "name": "Deposit Unlocked FLOW", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: AuthAccount) {\n self.holderRef = acct.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", + "arguments": [ { "type": "UFix64", - "name": "weight", - "label": "Key Weight", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "1000.00000000", + "value": "92233720368.54775808", "type": "UFix64" } ] } ], "network": "mainnet", - "hash": "c4a7efd8708396e8c7a3611f72a9f89f675bf6d5c9336dd389e5839cba78443c" + "hash": "5ff29c78cdb13cc792f77cf81ca84d5fb5ef1ecd89de8919d14b674c6012f6af" }, { - "id": "FA.02", - "name": "Add Key", - "source": "import Crypto\n\ntransaction(key: String, signatureAlgorithm: UInt8, hashAlgorithm: UInt8, weight: UFix64) {\n\n\tprepare(signer: auth(AddKey) \u0026Account) {\n\t\tpre {\n\t\t\tsignatureAlgorithm \u003e= 1 \u0026\u0026 signatureAlgorithm \u003c= 3: \"Must provide a signature algorithm raw value that is 1, 2, or 3\"\n\t\t\thashAlgorithm \u003e= 1 \u0026\u0026 hashAlgorithm \u003c= 6: \"Must provide a hash algorithm raw value that is between 1 and 6\"\n\t\t\tweight \u003c= 1000.0: \"The key weight must be between 0 and 1000\"\n\t\t}\n\t\tlet publicKey = PublicKey(\n\t\t\tpublicKey: key.decodeHex(),\n\t\t\tsignatureAlgorithm: SignatureAlgorithm(rawValue: signatureAlgorithm)!\n\t\t)\n\n\t\tsigner.keys.add(publicKey: publicKey, hashAlgorithm: HashAlgorithm(rawValue: hashAlgorithm)!, weight: weight)\n\t}\n}", + "id": "TH.06", + "name": "Register Node", + "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow ref to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let nodeInfo = StakingProxy.NodeInfo(nodeID: id, role: role, networkingAddress: networkingAddress, networkingKey: networkingKey, stakingKey: stakingKey)\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n \n }\n}\n", "arguments": [ { "type": "String", - "name": "key", - "label": "Public Key", + "name": "id", + "label": "Node ID", "sampleValues": [ { - "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "value": "88549335e1db7b5b46c2ad58ddb70b7a45e770cc5fe779650ba26f10e6bae5e6", "type": "String" } ] }, { "type": "UInt8", - "name": "signatureAlgorithm", - "label": "Raw Value for Signature Algorithm Enum", + "name": "role", + "label": "Node Role", "sampleValues": [ { "value": "1", @@ -82,86 +69,97 @@ ] }, { - "type": "UInt8", - "name": "hashAlgorithm", - "label": "Raw Value for Hash Algorithm Enum", + "type": "String", + "name": "networkingAddress", + "label": "Networking Address", "sampleValues": [ { - "value": "1", - "type": "UInt8" + "value": "flow-node.test:3569", + "type": "String" + } + ] + }, + { + "type": "String", + "name": "networkingKey", + "label": "Networking Key", + "sampleValues": [ + { + "value": "1348307bc77c688e80049de9d081aa09755da33e6997605fa059db2144fc85e560cbe6f7da8d74b453f5916618cb8fd392c2db856f3e78221dc68db1b1d914e4", + "type": "String" + } + ] + }, + { + "type": "String", + "name": "stakingKey", + "label": "Staking Key", + "sampleValues": [ + { + "value": "9e9ae0d645fd5fd9050792e0b0daa82cc1686d9133afa0f81a784b375c42ae48567d1545e7a9e1965f2c1a32f73cf8575ebb7a967f6e4d104d2df78eb8be409135d12da0499b8a00771f642c1b9c49397f22b440439f036c3bdee82f5309dab3", + "type": "String" } ] }, { "type": "UFix64", - "name": "weight", - "label": "Key Weight", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "1000.00000000", + "value": "92233720368.54775808", "type": "UFix64" } ] } ], "network": "mainnet", - "hash": "1c9d1210f2bf129b86803b153e137420c9117e8a2409a1e2ef6f916a4e8d611f" + "hash": "9d5575c8d3de5a03b9959b614f8c3ae6e5f5063880a6203dc4a4381d67880e90" }, { - "id": "FA.03", - "name": "Remove Key", - "source": "transaction(keyIndex: Int) {\n\tprepare(signer: auth(RevokeKey) \u0026Account) {\n\t\tif let key = signer.keys.get(keyIndex: keyIndex) {\n\t\t\tsigner.keys.revoke(keyIndex: keyIndex)\n\t\t} else {\n\t\t\tpanic(\"No key with the given index exists on the authorizer's account\")\n\t\t}\n\t}\n}", + "id": "TH.08", + "name": "Stake New Locked FLOW", + "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\n\nimport LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.stakeNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.stakeNewTokens(amount: amount)\n \n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { - "type": "Int", - "name": "keyIndex", - "label": "Key Index", + "type": "UFix64", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "1", - "type": "Int" + "value": "92233720368.54775808", + "type": "UFix64" } ] } ], "network": "mainnet", - "hash": "6c7ab72837fdce77a910f6fc0c622c6c4d5b17f6fbf7295f345d50d3508dd515" + "hash": "fecfd7502ae7b6882d0b8dc11452a3fd36bc024e028114388e265dee53ada841" }, { - "id": "FT.01", - "name": "Setup Fungible Token Vault", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FungibleTokenMetadataViews from 0xf233dcee88fe0abe\n\n/// This transaction is what an account would run\n/// to set itself up to manage fungible tokens. This function\n/// uses views to know where to set up the vault\n/// in storage and to create the empty vault.\n\ntransaction(contractAddress: Address, contractName: String) {\n\n prepare(signer: auth(SaveValue, Capabilities) \u0026Account) {\n // Borrow a reference to the vault stored on the passed account at the passed publicPath\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{FungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the fungible token contract\")\n\n // Use that reference to retrieve the FTView \n let ftVaultData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cFungibleTokenMetadataViews.FTVaultData\u003e()) as! FungibleTokenMetadataViews.FTVaultData?\n ?? panic(\"Could not resolve the FTVaultData view for the given Fungible token contract\")\n\n // Create a new empty vault using the createEmptyVault function inside the FTVaultData\n let emptyVault \u003c-ftVaultData.createEmptyVault()\n\n // Save it to the account\n signer.storage.save(\u003c-emptyVault, to: ftVaultData.storagePath)\n \n // Create a public capability for the vault which includes the .Resolver interface\n let vaultCap = signer.capabilities.storage.issue\u003c\u0026{FungibleToken.Vault}\u003e(ftVaultData.storagePath)\n signer.capabilities.publish(vaultCap, at: ftVaultData.metadataPath)\n\n // Create a public capability for the vault exposing the receiver interface\n let receiverCap = signer.capabilities.storage.issue\u003c\u0026{FungibleToken.Receiver}\u003e(ftVaultData.storagePath)\n signer.capabilities.publish(receiverCap, at: ftVaultData.receiverPath)\n\n }\n}\n ", + "id": "TH.09", + "name": "Re-stake Unstaked FLOW", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { - "type": "Address", - "name": "contractAddress", - "label": "FT Contract Address", - "sampleValues": [ - { - "value": "0xe467b9dd11fa00df", - "type": "Address" - } - ] - }, - { - "type": "String", - "name": "contractName", - "label": "FT Contract Name", + "type": "UFix64", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "FiatToken", - "type": "String" + "value": "92233720368.54775808", + "type": "UFix64" } ] } ], "network": "mainnet", - "hash": "0246076f1cf5d3160397766a9227b35f592f4d15c014848044c509818328b62b" + "hash": "677cc0ac3962ec136ca26dbec0aa942d926640ecf8418433f0db4b7925f5d0fe" }, { - "id": "FT.02", - "name": "Transfer Fungible Token with Paths", - "source": "import FungibleToken from 0xf233dcee88fe0abe\n\n/// Can pass in any storage path and receiver path identifier instead of just the default.\n/// This lets you choose the token you want to send as well the capability you want to send it to.\n///\n/// Any token path can be passed as an argument here, so wallets should\n/// should check argument values to make sure the intended token path is passed in\n///\ntransaction(amount: UFix64, to: Address, senderPathIdentifier: String, receiverPathIdentifier: String) {\n\n // The Vault resource that holds the tokens that are being transferred\n let tempVault: @{FungibleToken.Vault}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n let storagePath = StoragePath(identifier: senderPathIdentifier)\n ?? panic(\"Could not construct a storage path from the provided path identifier string\")\n\n // Get a reference to the signer's stored vault\n let vaultRef = signer.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026{FungibleToken.Provider}\u003e(from: storagePath)\n\t\t\t?? panic(\"Could not borrow reference to the owner's Vault!\")\n\n self.tempVault \u003c- vaultRef.withdraw(amount: amount)\n }\n\n execute {\n let publicPath = PublicPath(identifier: receiverPathIdentifier)\n ?? panic(\"Could not construct a public path from the provided path identifier string\")\n\n let recipient = getAccount(to)\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{FungibleToken.Receiver}\u003e(publicPath)\n ?? panic(\"Could not borrow reference to the recipient's Receiver!\")\n\n // Transfer tokens from the signer's stored vault to the receiver capability\n receiverRef.deposit(from: \u003c-self.tempVault)\n }\n}", + "id": "TH.10", + "name": "Re-stake Rewarded FLOW", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeRewardedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -173,48 +171,63 @@ "type": "UFix64" } ] - }, - { - "type": "Address", - "name": "to", - "label": "Recipient", - "sampleValues": [ - { - "value": "0xe467b9dd11fa00df", - "type": "Address" - } - ] - }, + } + ], + "network": "mainnet", + "hash": "28d1719c5b21c88c62665db5ba04886809f3234c27057b057c36d5f265ee9de4" + }, + { + "id": "TH.11", + "name": "Request Unstake of FLOW", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.requestUnstaking(amount: amount)\n }\n}\n", + "arguments": [ { - "type": "String", - "name": "senderPathIdentifier", - "label": "Sender's Collection Path Identifier", + "type": "UFix64", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "flowTokenVault", - "type": "String" + "value": "92233720368.54775808", + "type": "UFix64" } ] - }, + } + ], + "network": "mainnet", + "hash": "4e2a35541453f89c55e5dc6dbc963290380d779c81df0b3bf89c29b2a8d7a9fe" + }, + { + "id": "TH.12", + "name": "Unstake All FLOW", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction() {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.unstakeAll()\n }\n}\n", + "arguments": [], + "network": "mainnet", + "hash": "7099904b953b062e81e2575a2c2081b3d98bfccf5c743b4bdb224b937e292dad" + }, + { + "id": "TH.13", + "name": "Withdraw Unstaked FLOW", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", + "arguments": [ { - "type": "String", - "name": "receiverPathIdentifier", - "label": "Recipient's Receiver Path Identifier", + "type": "UFix64", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "flowTokenReceiver", - "type": "String" + "value": "92233720368.54775808", + "type": "UFix64" } ] } ], "network": "mainnet", - "hash": "6e5b8c83a3e8445eaa4bed391978443f124d9aa457fabdbaa016e0f65b57591e" + "hash": "dcae4faa6d689873f7caf7c5efef669f9fe1d4113e58b474b7aec1e07113a7ff" }, { - "id": "FT.03", - "name": "Transfer Fungible Token with Address", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FungibleTokenMetadataViews from 0xf233dcee88fe0abe\n\n/// Can pass in any contract address and name to transfer a token from that contract\n/// This lets you choose the token you want to send\n///\n/// Any contract can be chosen here, so wallets should check argument values\n/// to make sure the intended token contract name and address is passed in\n///\ntransaction(amount: UFix64, to: Address, contractAddress: Address, contractName: String) {\n\n // The Vault resource that holds the tokens that are being transferred\n let tempVault: @{FungibleToken.Vault}\n\n // FTVaultData struct to get paths from\n let vaultData: FungibleTokenMetadataViews.FTVaultData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the vault stored on the passed account at the passed publicPath\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{FungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the fungible token contract\")\n\n // Use that reference to retrieve the FTView \n self.vaultData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cFungibleTokenMetadataViews.FTVaultData\u003e()) as! FungibleTokenMetadataViews.FTVaultData?\n ?? panic(\"Could not resolve the FTVaultData view for the given Fungible token contract\")\n\n // Get a reference to the signer's stored vault\n let vaultRef = signer.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026{FungibleToken.Provider}\u003e(from: self.vaultData.storagePath)\n\t\t\t?? panic(\"Could not borrow reference to the owner's Vault!\")\n\n self.tempVault \u003c- vaultRef.withdraw(amount: amount)\n }\n\n execute {\n let recipient = getAccount(to)\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{FungibleToken.Receiver}\u003e(self.vaultData.receiverPath)\n ?? panic(\"Could not borrow reference to the recipient's Receiver!\")\n\n // Transfer tokens from the signer's stored vault to the receiver capability\n receiverRef.deposit(from: \u003c-self.tempVault)\n }\n}", + "id": "TH.14", + "name": "Withdraw Rewarded FLOW", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FlowToken from 0x1654653399040a61\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -226,11 +239,20 @@ "type": "UFix64" } ] - }, + } + ], + "network": "mainnet", + "hash": "9bb8f0562eea5e45c11f9289540f39c99a21c9a0fb060a7d3f832e98c2696f2d" + }, + { + "id": "TH.16", + "name": "Register Operator Node", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).getCapability\n \u003c\u0026StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}\u003e\n (StakingProxy.NodeOperatorCapabilityPublicPath)!.borrow() \n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", + "arguments": [ { "type": "Address", - "name": "to", - "label": "Recipient", + "name": "address", + "label": "Operator Address", "sampleValues": [ { "value": "0xe467b9dd11fa00df", @@ -239,172 +261,146 @@ ] }, { - "type": "Address", - "name": "contractAddress", - "label": "FT Contract Address", + "type": "String", + "name": "id", + "label": "Node ID", "sampleValues": [ { - "value": "0xe467b9dd11fa00df", - "type": "Address" + "value": "88549335e1db7b5b46c2ad58ddb70b7a45e770cc5fe779650ba26f10e6bae5e6", + "type": "String" } ] }, { - "type": "String", - "name": "contractName", - "label": "FT Contract Name", + "type": "UFix64", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "FiatToken", - "type": "String" + "value": "92233720368.54775808", + "type": "UFix64" } ] } ], "network": "mainnet", - "hash": "d8f826a451d808697ed3ce7908a080c05219df458e3e6cd4ccd073600c58e600" + "hash": "97b3436482c5aefc1baf8b850e92c829202e468c57241dec707b6c27bd89d15c" }, { - "id": "NFT.01", - "name": "Setup NFT Collection", - "source": "/// This transaction is what an account would run\n/// to set itself up to receive NFTs. This function\n/// uses views to know where to set up the collection\n/// in storage and to create the empty collection.\n\nimport NonFungibleToken from 0x1d7e57aa55817448\nimport MetadataViews from 0x1d7e57aa55817448\n\ntransaction(contractAddress: Address, contractName: String) {\n\n prepare(signer: auth(IssueStorageCapabilityController, PublishCapability, SaveValue) \u0026Account) {\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{NonFungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n let collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n // Create a new empty collections\n let emptyCollection \u003c- collectionData.createEmptyCollection()\n\n // save it to the account\n signer.storage.save(\u003c-emptyCollection, to: collectionData.storagePath)\n\n // create a public capability for the collection\n let collectionCap = signer.capabilities.storage.issue\u003c\u0026{NonFungibleToken.Collection}\u003e(\n collectionData.storagePath\n )\n signer.capabilities.publish(collectionCap, at: collectionData.publicPath)\n }\n}\n", + "id": "TH.17", + "name": "Register Delegator", + "source": "import FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\nimport FlowIDTableStaking from 0x8624b52f9ddcd04a\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { - "type": "Address", - "name": "contractAddress", - "label": "NFT Contract Address", + "type": "String", + "name": "id", + "label": "Node ID", "sampleValues": [ { - "value": "0xe467b9dd11fa00df", - "type": "Address" + "value": "88549335e1db7b5b46c2ad58ddb70b7a45e770cc5fe779650ba26f10e6bae5e6", + "type": "String" } ] }, { - "type": "String", - "name": "contractName", - "label": "NFT Contract Name", + "type": "UFix64", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "TopShot", - "type": "String" + "value": "92233720368.54775808", + "type": "UFix64" } ] } ], "network": "mainnet", - "hash": "a25e07dea5eb608387d3766fd6ce0110491599a6d61a5e7e9afddd19a7e76611" + "hash": "80da4be458d929ca3933d717859425f652cfbac4ce0ed5124d6dae9bce59b8b2" }, { - "id": "NFT.02", - "name": "Transfer NFT with Paths", - "source": "import NonFungibleToken from 0x1d7e57aa55817448\n\n/// Can pass in any storage path and receiver path instead of just the default.\n/// This lets you choose the token you want to send as well the capability you want to send it to.\n///\n/// Any token path can be passed as an argument here, so wallets should\n/// should check argument values to make sure the intended token path is passed in\n///\ntransaction(to: Address, id: UInt64, senderPathIdentifier: String, receiverPathIdentifier: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n let storagePath = StoragePath(identifier: senderPathIdentifier)\n ?? panic(\"Could not construct a storage path from the provided path identifier string\")\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n let publicPath = PublicPath(identifier: receiverPathIdentifier)\n ?? panic(\"Could not construct a public path from the provided path identifier string\")\n\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{NonFungibleToken.Receiver}\u003e(publicPath)\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", + "id": "TH.19", + "name": "Delegate New Locked FLOW", + "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowDelegator()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.delegateNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.delegateNewTokens(amount: amount)\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { - "type": "Address", - "name": "to", - "label": "Recipient", - "sampleValues": [ - { - "value": "0xe467b9dd11fa00df", - "type": "Address" - } - ] - }, - { - "type": "UInt64", - "name": "id", - "label": "NFT ID to Transfer", - "sampleValues": [ - { - "value": "10", - "type": "UInt64" - } - ] - }, - { - "type": "String", - "name": "senderPathIdentifier", - "label": "Sender's Collection Path Identifier", - "sampleValues": [ - { - "value": "flowTokenVault", - "type": "String" - } - ] - }, - { - "type": "String", - "name": "receiverPathIdentifier", - "label": "Recipient's Receiver Path Identifier", + "type": "UFix64", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "flowTokenReceiver", - "type": "String" + "value": "92233720368.54775808", + "type": "UFix64" } ] } ], "network": "mainnet", - "hash": "2cb2cd6408a35f08b4f9b13e6e6b44d5325eb78a7a1eebb0e790ee285bdd1365" + "hash": "b7c7e03fdbbe2dee6efb35dfab741aba89a91122bd778efa1ed3ce7f4cc27e91" }, { - "id": "NFT.03", - "name": "Transfer NFT with Address", - "source": "import NonFungibleToken from 0x1d7e57aa55817448\nimport MetadataViews from 0x1d7e57aa55817448\n\n/// Can pass in any contract address and name\n/// This lets you choose the token you want to send because\n/// the transaction gets the metadata from the provided contract.\n///\ntransaction(to: Address, id: UInt64, contractAddress: Address, contractName: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n // NFTCollectionData struct to get paths from\n let collectionData: MetadataViews.NFTCollectionData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{NonFungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n self.collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: self.collectionData.storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{NonFungibleToken.Receiver}\u003e(self.collectionData.publicPath)\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", + "id": "TH.20", + "name": "Re-delegate Unstaked FLOW", + "source": "import LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { - "type": "Address", - "name": "to", - "label": "Recipient", - "sampleValues": [ - { - "value": "0xe467b9dd11fa00df", - "type": "Address" - } - ] - }, - { - "type": "UInt64", - "name": "id", - "label": "NFT ID to Transfer", + "type": "UFix64", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "10", - "type": "UInt64" + "value": "92233720368.54775808", + "type": "UFix64" } ] - }, + } + ], + "network": "mainnet", + "hash": "2027331b72d8710a1a05feb6ecebadb5858d134bc8c95d6f261319cd9fa1bb95" + }, + { + "id": "TH.21", + "name": "Re-delegate Rewarded FLOW", + "source": "import LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateRewardedTokens(amount: amount)\n }\n}\n", + "arguments": [ { - "type": "Address", - "name": "contractAddress", - "label": "NFT Contract Address", + "type": "UFix64", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "0xe467b9dd11fa00df", - "type": "Address" + "value": "92233720368.54775808", + "type": "UFix64" } ] - }, + } + ], + "network": "mainnet", + "hash": "864edbff384335ef21c26b3bcf17d36b2b1d894afbe2b203f58099cc457971e4" + }, + { + "id": "TH.22", + "name": "Unstake Delegated FLOW", + "source": "import LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.requestUnstaking(amount: amount)\n }\n}\n", + "arguments": [ { - "type": "String", - "name": "contractName", - "label": "NFT Contract Name", + "type": "UFix64", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "TopShot", - "type": "String" + "value": "92233720368.54775808", + "type": "UFix64" } ] } ], "network": "mainnet", - "hash": "91fd4533a93f55a756484958e5409b9666c85e4191e9ba6f5fb3587a973d4eb5" + "hash": "262aeddd3f49fd6222d706c02696bd7d359ba962b6c30232cc93d7cf4166a23e" }, { - "id": "TH.01", - "name": "Withdraw Unlocked FLOW", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"The primary user account does not have an associated locked account\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "id": "TH.23", + "name": "Withdraw Unstaked FLOW", + "source": "import LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -419,12 +415,12 @@ } ], "network": "mainnet", - "hash": "4a830e6f93f74179a99e17c7ae762980c7fdc428bc949767529be2f071ac52b9" + "hash": "12675a013c064b6d0ef11dbf13f92210489bf2b3d299b2f14cd09be70b37577f" }, { - "id": "TH.02", - "name": "Deposit Unlocked FLOW", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"The primary user account does not have an associated locked account\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", + "id": "TH.24", + "name": "Withdraw Rewarded FLOW", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FlowToken from 0x1654653399040a61\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let delegatorProxy = self.holderRef.borrowDelegator()\n\n delegatorProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -439,20 +435,40 @@ } ], "network": "mainnet", - "hash": "038382a947fa96bf2f4dfe5aa9b4b2abee1ef0975955175e80cf911c3edf4b61" + "hash": "239ffa449eae5560eec3e99633dcf9c63b1e9c99996d1c5636644dceef9ec44b" + }, + { + "id": "TH.25", + "name": "Update Networking Address", + "source": "import FlowIDTableStaking from 0x8624b52f9ddcd04a\n\ntransaction(newAddress: String) {\n\n // Local variable for a reference to the node object\n let stakerRef: auth(FlowIDTableStaking.NodeOperator) \u0026FlowIDTableStaking.NodeStaker\n\n prepare(acct: AuthAccount) {\n // borrow a reference to the node object\n self.stakerRef = acct.borrow\u003cauth(FlowIDTableStaking.NodeOperator) \u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)\n ?? panic(\"Could not borrow reference to staking admin\")\n }\n\n execute {\n\n self.stakerRef.updateNetworkingAddress(newAddress)\n\n }\n}", + "arguments": [ + { + "type": "String", + "name": "address", + "label": "Address", + "sampleValues": [ + { + "value": "flow-node.test:3569", + "type": "String" + } + ] + } + ], + "network": "mainnet", + "hash": "fb1c32ed6112e00131beff25fafca6b57216d03b0fbfa6978e953739f5a4c9b4" }, { "id": "SCO.01", "name": "Setup Staking Collection", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport FlowIDTableStaking from 0x8624b52f9ddcd04a\nimport LockedTokens from 0x8d0e87b65159ae63\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// This transaction sets up an account to use a staking collection\n/// It will work regardless of whether they have a regular account, a two-account locked tokens setup,\n/// or staking objects stored in the unlocked account\n\ntransaction {\n prepare(signer: auth(BorrowValue, Storage, Capabilities) \u0026Account) {\n\n // If there isn't already a staking collection\n if signer.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath) == nil {\n\n // Create private capabilities for the token holder and unlocked vault\n let lockedHolder = signer.capabilities.storage.issue\u003cauth(FungibleToken.Withdraw, LockedTokens.TokenOperations) \u0026LockedTokens.TokenHolder\u003e(LockedTokens.TokenHolderStoragePath)!\n let flowToken = signer.capabilities.storage.issue\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(/storage/flowTokenVault)!\n\n // Create a new Staking Collection and put it in storage\n if lockedHolder.check() {\n signer.storage.save(\n \u003c- FlowStakingCollection.createStakingCollection(\n unlockedVault: flowToken,\n tokenHolder: lockedHolder\n ),\n to: FlowStakingCollection.StakingCollectionStoragePath\n )\n } else {\n signer.storage.save(\n \u003c- FlowStakingCollection.createStakingCollection(\n unlockedVault: flowToken,\n tokenHolder: nil\n ),\n to: FlowStakingCollection.StakingCollectionStoragePath\n )\n }\n\n // Publish a capability to the created staking collection.\n let stakingCollectionCap = signer.capabilities.storage.issue\u003c\u0026FlowStakingCollection.StakingCollection\u003e(\n FlowStakingCollection.StakingCollectionStoragePath\n )\n\n signer.capabilities.publish(\n stakingCollectionCap,\n at: FlowStakingCollection.StakingCollectionPublicPath\n )\n }\n\n // borrow a reference to the staking collection\n let collectionRef = signer.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow staking collection reference\")\n\n // If there is a node staker object in the account, put it in the staking collection\n if signer.storage.borrow\u003c\u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath) != nil {\n let node \u003c- signer.storage.load\u003c@FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)!\n collectionRef.addNodeObject(\u003c-node, machineAccountInfo: nil)\n }\n\n // If there is a delegator object in the account, put it in the staking collection\n if signer.storage.borrow\u003c\u0026FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath) != nil {\n let delegator \u003c- signer.storage.load\u003c@FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath)!\n collectionRef.addDelegatorObject(\u003c-delegator)\n }\n }\n}\n", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport FlowIDTableStaking from 0x8624b52f9ddcd04a\nimport LockedTokens from 0x8d0e87b65159ae63\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// This transaction sets up an account to use a staking collection\n/// It will work regardless of whether they have a regular account, a two-account locked tokens setup,\n/// or staking objects stored in the unlocked account\n\ntransaction {\n prepare(signer: AuthAccount) {\n\n // If there isn't already a staking collection\n if signer.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath) == nil {\n\n // Create private capabilities for the token holder and unlocked vault\n let lockedHolder = signer.link\u003c\u0026LockedTokens.TokenHolder\u003e(/private/flowTokenHolder, target: LockedTokens.TokenHolderStoragePath)!\n let flowToken = signer.link\u003c\u0026FlowToken.Vault\u003e(/private/flowTokenVault, target: /storage/flowTokenVault)!\n \n // Create a new Staking Collection and put it in storage\n if lockedHolder.check() {\n signer.save(\u003c-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: lockedHolder), to: FlowStakingCollection.StakingCollectionStoragePath)\n } else {\n signer.save(\u003c-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: nil), to: FlowStakingCollection.StakingCollectionStoragePath)\n }\n\n // Create a public link to the staking collection\n signer.link\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(\n FlowStakingCollection.StakingCollectionPublicPath,\n target: FlowStakingCollection.StakingCollectionStoragePath\n )\n }\n\n // borrow a reference to the staking collection\n let collectionRef = signer.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow staking collection reference\")\n\n // If there is a node staker object in the account, put it in the staking collection\n if signer.borrow\u003c\u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath) != nil {\n let node \u003c- signer.load\u003c@FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)!\n collectionRef.addNodeObject(\u003c-node, machineAccountInfo: nil)\n }\n\n // If there is a delegator object in the account, put it in the staking collection\n if signer.borrow\u003c\u0026FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath) != nil {\n let delegator \u003c- signer.load\u003c@FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath)!\n collectionRef.addDelegatorObject(\u003c-delegator)\n }\n }\n}\n", "arguments": [], "network": "mainnet", - "hash": "69f30decc15bd78107c631e200963398e8ddbc58bb61e577d223725f348fc2d9" + "hash": "0e5c2445c0b1016eed4f60c429f233aa0bb223a0d9ff2aedffce00a58037a2bf" }, { "id": "SCO.02", "name": "Register Delegator", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Registers a delegator in the staking collection resource\n/// for the specified nodeID and the amount of tokens to commit\n\ntransaction(id: String, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.registerDelegator(nodeID: id, amount: amount) \n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Registers a delegator in the staking collection resource\n/// for the specified nodeID and the amount of tokens to commit\n\ntransaction(id: String, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.registerDelegator(nodeID: id, amount: amount) \n }\n}\n", "arguments": [ { "type": "String", @@ -478,12 +494,12 @@ } ], "network": "mainnet", - "hash": "0a41e53ad3c9c1c16c8732dd8331b8ca66063617d433b01d4d09c47300448744" + "hash": "c5636d510872a16eb06996dacb43d6a28f8f72ff1b05b2eb03416cc711d9bb1f" }, { "id": "SCO.03", "name": "Register Node", - "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n machineAccountKey: String, \n machineAccountKeySignatureAlgorithm: UInt8, \n machineAccountKeyHashAlgorithm: UInt8) {\n\n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account\n ) {\n let sigAlgo = SignatureAlgorithm(rawValue: machineAccountKeySignatureAlgorithm)\n ?? panic(\"Could not get a signature algorithm from the raw enum value provided\")\n\n let hashAlgo = HashAlgorithm(rawValue: machineAccountKeyHashAlgorithm)\n ?? panic(\"Could not get a hash algorithm from the raw enum value provided\")\n \n let publicKey = PublicKey(\n\t\t\t publicKey: machineAccountKey.decodeHex(),\n\t\t\t signatureAlgorithm: sigAlgo\n\t\t )\n machineAccount.keys.add(publicKey: publicKey, hashAlgorithm: hashAlgo, weight: 1000.0)\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n publicKeys: [Crypto.KeyListEntry]?) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account) \n {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys! {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -552,46 +568,63 @@ ] }, { - "type": "String", - "name": "machineAccountKey", - "label": "Machine Account Public Key", + "type": "[String]?", + "name": "publicKeys", + "label": "Public Keys", "sampleValues": [ { - "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", - "type": "String" - } - ] - }, - { - "type": "UInt8", - "name": "machineAccountKeySignatureAlgorithm", - "label": "Raw Value for Machine Account Signature Algorithm Enum", - "sampleValues": [ + "value": null, + "type": "Optional" + }, { - "value": "1", - "type": "UInt8" - } - ] - }, - { - "type": "UInt8", - "name": "machineAccountKeyHashAlgorithm", - "label": "Raw Value for Machine Account Hash Algorithm Enum", - "sampleValues": [ + "value": { + "value": [], + "type": "Array" + }, + "type": "Optional" + }, { - "value": "1", - "type": "UInt8" + "value": { + "value": [ + { + "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "type": "String" + } + ], + "type": "Array" + }, + "type": "Optional" + }, + { + "value": { + "value": [ + { + "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "type": "String" + }, + { + "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "type": "String" + }, + { + "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "type": "String" + } + ], + "type": "Array" + }, + "type": "Optional" } ] } ], "network": "mainnet", - "hash": "3b0b2bbc3a2ad674122c182112f7008a8d3d1b60b107033c0ebe7bbe50df5267" + "hash": "79de7119aea61bdafb39cc3d1f4fa17ca802c2732726a86d2c636dbc19808b68" }, { "id": "SCO.04", "name": "Create Machine Account", - "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Creates a machine account for a node that is already in the staking collection\n/// and adds public keys to the new account\n\ntransaction(nodeID: String, \n machineAccountKey: String, \n machineAccountKeySignatureAlgorithm: UInt8, \n machineAccountKeyHashAlgorithm: UInt8) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) {\n let sigAlgo = SignatureAlgorithm(rawValue: machineAccountKeySignatureAlgorithm)\n ?? panic(\"Could not get a signature algorithm from the raw enum value provided\")\n\n let hashAlgo = HashAlgorithm(rawValue: machineAccountKeyHashAlgorithm)\n ?? panic(\"Could not get a hash algorithm from the raw enum value provided\")\n \n let publicKey = PublicKey(\n\t\t\t publicKey: machineAccountKey.decodeHex(),\n\t\t\t signatureAlgorithm: sigAlgo\n\t\t )\n machineAccount.keys.add(publicKey: publicKey, hashAlgorithm: hashAlgo, weight: 1000.0)\n } else {\n panic(\"Could not create a machine account for the node\")\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Creates a machine account for a node that is already in the staking collection\n/// and adds public keys to the new account\n\ntransaction(nodeID: String, publicKeys: [Crypto.KeyListEntry]) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n } else {\n panic(\"Could not create a machine account for the node\")\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -605,46 +638,50 @@ ] }, { - "type": "String", - "name": "machineAccountKey", - "label": "Machine Account Public Key", + "type": "[String]", + "name": "publicKeys", + "label": "Public Keys", "sampleValues": [ { - "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", - "type": "String" - } - ] - }, - { - "type": "UInt8", - "name": "machineAccountKeySignatureAlgorithm", - "label": "Raw Value for Machine Account Signature Algorithm Enum", - "sampleValues": [ + "value": [], + "type": "Array" + }, { - "value": "1", - "type": "UInt8" - } - ] - }, - { - "type": "UInt8", - "name": "machineAccountKeyHashAlgorithm", - "label": "Raw Value for Machine Account Hash Algorithm Enum", - "sampleValues": [ + "value": [ + { + "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "type": "String" + } + ], + "type": "Array" + }, { - "value": "1", - "type": "UInt8" + "value": [ + { + "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "type": "String" + }, + { + "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "type": "String" + }, + { + "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "type": "String" + } + ], + "type": "Array" } ] } ], "network": "mainnet", - "hash": "f0a6cedb6703cd4ce4cc3b735e5edb5a7e5b17a87a725343d745e5d53b7c0a01" + "hash": "dd3b327b09087ea7f8e92a22a6b04a3c6ca33b868b430c4f15f251658c38c1b7" }, { "id": "SCO.05", "name": "Request Unstaking", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Requests unstaking for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.requestUnstaking(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Requests unstaking for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.requestUnstaking(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -688,12 +725,12 @@ } ], "network": "mainnet", - "hash": "f26c058a127500fcd8445ba9fcf55149fe8f1a1a7cd212688d13fcd6ee276529" + "hash": "a552951c5e6300a118610fbf2d36b3073ee266e1d26787d04717c141976ef78c" }, { "id": "SCO.06", "name": "Stake New Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits new tokens to stake for the specified node or delegator in the staking collection\n/// The tokens from the locked vault are used first, if it exists\n/// followed by the tokens from the unlocked vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.stakeNewTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits new tokens to stake for the specified node or delegator in the staking collection\n/// The tokens from the locked vault are used first, if it exists\n/// followed by the tokens from the unlocked vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeNewTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -737,12 +774,12 @@ } ], "network": "mainnet", - "hash": "4c0658934352486097cc89fa06b98bac21e514770fc6a4d70a7adc4bec6d711d" + "hash": "8e10ac56db8ec5d5e0051d3c9608fabc8edd6abed983f6d3a254e7668a54b32b" }, { "id": "SCO.07", "name": "Stake Rewarded Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits rewarded tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.stakeRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits rewarded tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -786,12 +823,12 @@ } ], "network": "mainnet", - "hash": "c989e8b3beb9c2eb5af2ee1e11d592c9f1131e76e7ef105a0d40cf1610d1e348" + "hash": "907c4cfd67a98a8003393c64dc74eb7a957b229352a266139a542bb105ac4c40" }, { "id": "SCO.08", "name": "Stake Unstaked Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits unstaked tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.stakeUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits unstaked tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -835,12 +872,12 @@ } ], "network": "mainnet", - "hash": "fe6adb75bf22b2033800e916fa7e3a7810417e9a36d35320de7f4b5f7ec4f1b8" + "hash": "082e690b9647182cf6969db1a0fa8e0f1728da6db01fe0d462e9f0841c268cbb" }, { "id": "SCO.09", "name": "Unstake All", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Requests to unstake ALL tokens for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.unstakeAll(nodeID: nodeID)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Requests to unstake ALL tokens for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.unstakeAll(nodeID: nodeID)\n }\n}\n", "arguments": [ { "type": "String", @@ -855,12 +892,12 @@ } ], "network": "mainnet", - "hash": "1c8256fb857f6c6fd929511ecac8624d0159877cf72c884f7128297dfb069510" + "hash": "df9c6486baa6f8f685368ea216659239cb81fa8ebd9062a9723edb54ca0d7525" }, { "id": "SCO.10", "name": "Withdraw Rewarded Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw rewarded tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw rewarded tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -904,12 +941,12 @@ } ], "network": "mainnet", - "hash": "fbd8ebbfff7a88b6b667ff4e3f9f904eaaba71cbf02a140f3b7007c61fbd8f34" + "hash": "27a2b60d538b8bb883b602ea83d1697986a29dd69a44a9209dc75affb9e63299" }, { "id": "SCO.11", "name": "Withdraw Unstaked Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw unstaked tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault if it is there\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw unstaked tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault if it is there\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -953,12 +990,12 @@ } ], "network": "mainnet", - "hash": "c2484f17e640e285769c3edaa6f2d090dcef1f2f57983f82b7179c3c047290ca" + "hash": "6d50ab1ef3d74203081c38306da74f5ad8fdd489e49fba732f8ba194d0c781c8" }, { "id": "SCO.12", "name": "Close Stake", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Closes out a staking object in the staking collection\n// This does not remove the record from the identity table,\n// but it does mean that the account that closes it cannot ever access it again\n\ntransaction(nodeID: String, delegatorID: UInt32?) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.closeStake(nodeID: nodeID, delegatorID: delegatorID)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Closes out a staking object in the staking collection\n// This does not remove the record from the identity table,\n// but it does mean that the account that closes it cannot ever access it again\n\ntransaction(nodeID: String, delegatorID: UInt32?) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.closeStake(nodeID: nodeID, delegatorID: delegatorID)\n }\n}\n", "arguments": [ { "type": "String", @@ -991,12 +1028,12 @@ } ], "network": "mainnet", - "hash": "a0fad319bf8aede66212257ad0d21532858381e2c9d7c4cec179b28180f5be93" + "hash": "ecdffc1ae67479bc20c06eba6c776ff37b9523660ff1cd3129a3924d92484884" }, { "id": "SCO.13", "name": "Transfer Node", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeStaker object from an authorizers account\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the receiver's account\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeStaker object from an authorizers accoount\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: AuthAccount) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.getCapability\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath).borrow()\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", "arguments": [ { "type": "String", @@ -1022,12 +1059,12 @@ } ], "network": "mainnet", - "hash": "3578c7f3b015df3a807dce45a0df262e79d95683cef20bd6247a8f1184c56279" + "hash": "cdc3a63d0c75ea95b414becb6fbb8f5a8004236d48661cd3c3d4f540ee4d422e" }, { "id": "SCO.14", "name": "Transfer Delegator", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeDelegator object from an authorizers account\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow a referamce to a StakingCollection in the receiver's account\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeDelegator object from an authorizers accoount\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: AuthAccount) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.getCapability\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath).borrow()\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", "arguments": [ { "type": "String", @@ -1064,12 +1101,12 @@ } ], "network": "mainnet", - "hash": "8c7b8460f11ae786c207493eac35deaccb456a31f9df34ddecccad12685c61fc" + "hash": "b34d6fafcc5a4d0ed9cf92e168a08d0674c93341e2393ee72dde6664918ec240" }, { "id": "SCO.15", "name": "Withdraw From Machine Account", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw tokens from the machine account\n/// The tokens are automatically deposited to the unlocked account vault\n\ntransaction(nodeID: String, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawFromMachineAccount(nodeID: nodeID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw tokens from the machine account\n/// The tokens are automatically deposited to the unlocked account vault\n\ntransaction(nodeID: String, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawFromMachineAccount(nodeID: nodeID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -1095,12 +1132,12 @@ } ], "network": "mainnet", - "hash": "e12b16ef4218b8ce52189ae5814b381272bf473436978fae94d01c10c0369034" + "hash": "f9c48e18bda7f113e82711a4c95dfd151c6600ed9fbf46ceb22566d6c5728c6f" }, { "id": "SCO.16", "name": "Update Networking Address", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Changes the networking address for the specified node\n\ntransaction(nodeID: String, newAddress: String) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.updateNetworkingAddress(nodeID: nodeID, newAddress: newAddress)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Changes the networking address for the specified node\n\ntransaction(nodeID: String, newAddress: String) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.updateNetworkingAddress(nodeID: nodeID, newAddress: newAddress)\n }\n}\n", "arguments": [ { "type": "String", @@ -1126,7 +1163,7 @@ } ], "network": "mainnet", - "hash": "68d24560d9e49318dca82ab0975f526a8663d934225f0cb715cd1ff188def16d" + "hash": "ff067b40ac67020ef864cd14842f62023254da34dd2ded56affa1364305bf1c5" } ] } \ No newline at end of file diff --git a/lib/go/templates/manifest.testnet.json b/lib/go/templates/manifest.testnet.json index 40b0cd11d..e3b75db6d 100755 --- a/lib/go/templates/manifest.testnet.json +++ b/lib/go/templates/manifest.testnet.json @@ -2,78 +2,65 @@ "network": "testnet", "templates": [ { - "id": "FA.01", - "name": "Create Account", - "source": "import Crypto\n\ntransaction(key: String, signatureAlgorithm: UInt8, hashAlgorithm: UInt8, weight: UFix64) {\n\tprepare(signer: auth(BorrowValue, Storage) \u0026Account) {\n\t\tpre {\n\t\t\tsignatureAlgorithm \u003e= 1 \u0026\u0026 signatureAlgorithm \u003c= 3: \"Must provide a signature algorithm raw value that is 1, 2, or 3\"\n\t\t\thashAlgorithm \u003e= 1 \u0026\u0026 hashAlgorithm \u003c= 6: \"Must provide a hash algorithm raw value that is between 1 and 6\"\n\t\t\tweight \u003c= 1000.0: \"The key weight must be between 0 and 1000\"\n\t\t}\n\n\t\tlet publicKey = PublicKey(\n\t\t\tpublicKey: key.decodeHex(),\n\t\t\tsignatureAlgorithm: SignatureAlgorithm(rawValue: signatureAlgorithm)!\n\t\t)\n\n\t\tlet account = Account(payer: signer)\n\n\t\taccount.keys.add(publicKey: publicKey, hashAlgorithm: HashAlgorithm(rawValue: hashAlgorithm)!, weight: weight)\n\t}\n}", + "id": "TH.01", + "name": "Withdraw Unlocked FLOW", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: AuthAccount) {\n self.holderRef = acct.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { - "type": "String", - "name": "key", - "label": "Public Key", - "sampleValues": [ - { - "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", - "type": "String" - } - ] - }, - { - "type": "UInt8", - "name": "signatureAlgorithm", - "label": "Raw Value for Signature Algorithm Enum", - "sampleValues": [ - { - "value": "1", - "type": "UInt8" - } - ] - }, - { - "type": "UInt8", - "name": "hashAlgorithm", - "label": "Raw Value for Hash Algorithm Enum", + "type": "UFix64", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "1", - "type": "UInt8" + "value": "92233720368.54775808", + "type": "UFix64" } ] - }, + } + ], + "network": "testnet", + "hash": "6e73db6edd0190f5311f6adc5f2b1f27e9e60c68574b00ee90da867da52cdbb1" + }, + { + "id": "TH.02", + "name": "Deposit Unlocked FLOW", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: AuthAccount) {\n self.holderRef = acct.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", + "arguments": [ { "type": "UFix64", - "name": "weight", - "label": "Key Weight", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "1000.00000000", + "value": "92233720368.54775808", "type": "UFix64" } ] } ], "network": "testnet", - "hash": "c4a7efd8708396e8c7a3611f72a9f89f675bf6d5c9336dd389e5839cba78443c" + "hash": "e806681df17e7d6baef776f46d774226384ecbe92949ed368e27a80657b9d335" }, { - "id": "FA.02", - "name": "Add Key", - "source": "import Crypto\n\ntransaction(key: String, signatureAlgorithm: UInt8, hashAlgorithm: UInt8, weight: UFix64) {\n\n\tprepare(signer: auth(AddKey) \u0026Account) {\n\t\tpre {\n\t\t\tsignatureAlgorithm \u003e= 1 \u0026\u0026 signatureAlgorithm \u003c= 3: \"Must provide a signature algorithm raw value that is 1, 2, or 3\"\n\t\t\thashAlgorithm \u003e= 1 \u0026\u0026 hashAlgorithm \u003c= 6: \"Must provide a hash algorithm raw value that is between 1 and 6\"\n\t\t\tweight \u003c= 1000.0: \"The key weight must be between 0 and 1000\"\n\t\t}\n\t\tlet publicKey = PublicKey(\n\t\t\tpublicKey: key.decodeHex(),\n\t\t\tsignatureAlgorithm: SignatureAlgorithm(rawValue: signatureAlgorithm)!\n\t\t)\n\n\t\tsigner.keys.add(publicKey: publicKey, hashAlgorithm: HashAlgorithm(rawValue: hashAlgorithm)!, weight: weight)\n\t}\n}", + "id": "TH.06", + "name": "Register Node", + "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow ref to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let nodeInfo = StakingProxy.NodeInfo(nodeID: id, role: role, networkingAddress: networkingAddress, networkingKey: networkingKey, stakingKey: stakingKey)\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n \n }\n}\n", "arguments": [ { "type": "String", - "name": "key", - "label": "Public Key", + "name": "id", + "label": "Node ID", "sampleValues": [ { - "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "value": "88549335e1db7b5b46c2ad58ddb70b7a45e770cc5fe779650ba26f10e6bae5e6", "type": "String" } ] }, { "type": "UInt8", - "name": "signatureAlgorithm", - "label": "Raw Value for Signature Algorithm Enum", + "name": "role", + "label": "Node Role", "sampleValues": [ { "value": "1", @@ -82,86 +69,97 @@ ] }, { - "type": "UInt8", - "name": "hashAlgorithm", - "label": "Raw Value for Hash Algorithm Enum", + "type": "String", + "name": "networkingAddress", + "label": "Networking Address", "sampleValues": [ { - "value": "1", - "type": "UInt8" + "value": "flow-node.test:3569", + "type": "String" + } + ] + }, + { + "type": "String", + "name": "networkingKey", + "label": "Networking Key", + "sampleValues": [ + { + "value": "1348307bc77c688e80049de9d081aa09755da33e6997605fa059db2144fc85e560cbe6f7da8d74b453f5916618cb8fd392c2db856f3e78221dc68db1b1d914e4", + "type": "String" + } + ] + }, + { + "type": "String", + "name": "stakingKey", + "label": "Staking Key", + "sampleValues": [ + { + "value": "9e9ae0d645fd5fd9050792e0b0daa82cc1686d9133afa0f81a784b375c42ae48567d1545e7a9e1965f2c1a32f73cf8575ebb7a967f6e4d104d2df78eb8be409135d12da0499b8a00771f642c1b9c49397f22b440439f036c3bdee82f5309dab3", + "type": "String" } ] }, { "type": "UFix64", - "name": "weight", - "label": "Key Weight", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "1000.00000000", + "value": "92233720368.54775808", "type": "UFix64" } ] } ], "network": "testnet", - "hash": "1c9d1210f2bf129b86803b153e137420c9117e8a2409a1e2ef6f916a4e8d611f" + "hash": "acbd093e289e0225ffa1ac630e762047acc56b2621f2af1f4850a276e4394876" }, { - "id": "FA.03", - "name": "Remove Key", - "source": "transaction(keyIndex: Int) {\n\tprepare(signer: auth(RevokeKey) \u0026Account) {\n\t\tif let key = signer.keys.get(keyIndex: keyIndex) {\n\t\t\tsigner.keys.revoke(keyIndex: keyIndex)\n\t\t} else {\n\t\t\tpanic(\"No key with the given index exists on the authorizer's account\")\n\t\t}\n\t}\n}", + "id": "TH.08", + "name": "Stake New Locked FLOW", + "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\n\nimport LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.stakeNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.stakeNewTokens(amount: amount)\n \n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { - "type": "Int", - "name": "keyIndex", - "label": "Key Index", + "type": "UFix64", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "1", - "type": "Int" + "value": "92233720368.54775808", + "type": "UFix64" } ] } ], "network": "testnet", - "hash": "6c7ab72837fdce77a910f6fc0c622c6c4d5b17f6fbf7295f345d50d3508dd515" + "hash": "551aa85f14d043633bcd04649eb2b90291cbdb4d93b46fe39e1109b50bfe19f9" }, { - "id": "FT.01", - "name": "Setup Fungible Token Vault", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FungibleTokenMetadataViews from 0x9a0766d93b6608b7\n\n/// This transaction is what an account would run\n/// to set itself up to manage fungible tokens. This function\n/// uses views to know where to set up the vault\n/// in storage and to create the empty vault.\n\ntransaction(contractAddress: Address, contractName: String) {\n\n prepare(signer: auth(SaveValue, Capabilities) \u0026Account) {\n // Borrow a reference to the vault stored on the passed account at the passed publicPath\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{FungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the fungible token contract\")\n\n // Use that reference to retrieve the FTView \n let ftVaultData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cFungibleTokenMetadataViews.FTVaultData\u003e()) as! FungibleTokenMetadataViews.FTVaultData?\n ?? panic(\"Could not resolve the FTVaultData view for the given Fungible token contract\")\n\n // Create a new empty vault using the createEmptyVault function inside the FTVaultData\n let emptyVault \u003c-ftVaultData.createEmptyVault()\n\n // Save it to the account\n signer.storage.save(\u003c-emptyVault, to: ftVaultData.storagePath)\n \n // Create a public capability for the vault which includes the .Resolver interface\n let vaultCap = signer.capabilities.storage.issue\u003c\u0026{FungibleToken.Vault}\u003e(ftVaultData.storagePath)\n signer.capabilities.publish(vaultCap, at: ftVaultData.metadataPath)\n\n // Create a public capability for the vault exposing the receiver interface\n let receiverCap = signer.capabilities.storage.issue\u003c\u0026{FungibleToken.Receiver}\u003e(ftVaultData.storagePath)\n signer.capabilities.publish(receiverCap, at: ftVaultData.receiverPath)\n\n }\n}\n ", + "id": "TH.09", + "name": "Re-stake Unstaked FLOW", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { - "type": "Address", - "name": "contractAddress", - "label": "FT Contract Address", - "sampleValues": [ - { - "value": "0x8c5303eaa26202d6", - "type": "Address" - } - ] - }, - { - "type": "String", - "name": "contractName", - "label": "FT Contract Name", + "type": "UFix64", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "FiatToken", - "type": "String" + "value": "92233720368.54775808", + "type": "UFix64" } ] } ], "network": "testnet", - "hash": "3ccbbfebf10c47c49e4058a33fd9a29c4191c545de52c9afd27a29d38110aa28" + "hash": "23e5bfd594bb3245090e3e0bafb9cb9246fc84d30e4a35a7fde1b51085624d86" }, { - "id": "FT.02", - "name": "Transfer Fungible Token with Paths", - "source": "import FungibleToken from 0x9a0766d93b6608b7\n\n/// Can pass in any storage path and receiver path identifier instead of just the default.\n/// This lets you choose the token you want to send as well the capability you want to send it to.\n///\n/// Any token path can be passed as an argument here, so wallets should\n/// should check argument values to make sure the intended token path is passed in\n///\ntransaction(amount: UFix64, to: Address, senderPathIdentifier: String, receiverPathIdentifier: String) {\n\n // The Vault resource that holds the tokens that are being transferred\n let tempVault: @{FungibleToken.Vault}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n let storagePath = StoragePath(identifier: senderPathIdentifier)\n ?? panic(\"Could not construct a storage path from the provided path identifier string\")\n\n // Get a reference to the signer's stored vault\n let vaultRef = signer.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026{FungibleToken.Provider}\u003e(from: storagePath)\n\t\t\t?? panic(\"Could not borrow reference to the owner's Vault!\")\n\n self.tempVault \u003c- vaultRef.withdraw(amount: amount)\n }\n\n execute {\n let publicPath = PublicPath(identifier: receiverPathIdentifier)\n ?? panic(\"Could not construct a public path from the provided path identifier string\")\n\n let recipient = getAccount(to)\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{FungibleToken.Receiver}\u003e(publicPath)\n ?? panic(\"Could not borrow reference to the recipient's Receiver!\")\n\n // Transfer tokens from the signer's stored vault to the receiver capability\n receiverRef.deposit(from: \u003c-self.tempVault)\n }\n}", + "id": "TH.10", + "name": "Re-stake Rewarded FLOW", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeRewardedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -173,48 +171,63 @@ "type": "UFix64" } ] - }, - { - "type": "Address", - "name": "to", - "label": "Recipient", - "sampleValues": [ - { - "value": "0x8c5303eaa26202d6", - "type": "Address" - } - ] - }, + } + ], + "network": "testnet", + "hash": "239319825ad68178e76465b5ea18cb43f06c4ee11341f8fe9424809163a027a5" + }, + { + "id": "TH.11", + "name": "Request Unstake of FLOW", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.requestUnstaking(amount: amount)\n }\n}\n", + "arguments": [ { - "type": "String", - "name": "senderPathIdentifier", - "label": "Sender's Collection Path Identifier", + "type": "UFix64", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "flowTokenVault", - "type": "String" + "value": "92233720368.54775808", + "type": "UFix64" } ] - }, + } + ], + "network": "testnet", + "hash": "33e3977c45e7c23c1472bcf334d00b03ebf91b06b67c57b63b562c7b1ff5c59f" + }, + { + "id": "TH.12", + "name": "Unstake All FLOW", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction() {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.unstakeAll()\n }\n}\n", + "arguments": [], + "network": "testnet", + "hash": "f92c4cd663b2e335cd821a656bb2ebcf239b222036a7825af5e512fad4d82035" + }, + { + "id": "TH.13", + "name": "Withdraw Unstaked FLOW", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", + "arguments": [ { - "type": "String", - "name": "receiverPathIdentifier", - "label": "Recipient's Receiver Path Identifier", + "type": "UFix64", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "flowTokenReceiver", - "type": "String" + "value": "92233720368.54775808", + "type": "UFix64" } ] } ], "network": "testnet", - "hash": "c9b9a6156280812703c15dde74df95cd0d7d1034dd2d8bf0cccf72b607142988" + "hash": "90097e3aff9b67f65bbada3cdedbb73d45d093ff333aaaff38809bf9910a3e39" }, { - "id": "FT.03", - "name": "Transfer Fungible Token with Address", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FungibleTokenMetadataViews from 0x9a0766d93b6608b7\n\n/// Can pass in any contract address and name to transfer a token from that contract\n/// This lets you choose the token you want to send\n///\n/// Any contract can be chosen here, so wallets should check argument values\n/// to make sure the intended token contract name and address is passed in\n///\ntransaction(amount: UFix64, to: Address, contractAddress: Address, contractName: String) {\n\n // The Vault resource that holds the tokens that are being transferred\n let tempVault: @{FungibleToken.Vault}\n\n // FTVaultData struct to get paths from\n let vaultData: FungibleTokenMetadataViews.FTVaultData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the vault stored on the passed account at the passed publicPath\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{FungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the fungible token contract\")\n\n // Use that reference to retrieve the FTView \n self.vaultData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cFungibleTokenMetadataViews.FTVaultData\u003e()) as! FungibleTokenMetadataViews.FTVaultData?\n ?? panic(\"Could not resolve the FTVaultData view for the given Fungible token contract\")\n\n // Get a reference to the signer's stored vault\n let vaultRef = signer.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026{FungibleToken.Provider}\u003e(from: self.vaultData.storagePath)\n\t\t\t?? panic(\"Could not borrow reference to the owner's Vault!\")\n\n self.tempVault \u003c- vaultRef.withdraw(amount: amount)\n }\n\n execute {\n let recipient = getAccount(to)\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{FungibleToken.Receiver}\u003e(self.vaultData.receiverPath)\n ?? panic(\"Could not borrow reference to the recipient's Receiver!\")\n\n // Transfer tokens from the signer's stored vault to the receiver capability\n receiverRef.deposit(from: \u003c-self.tempVault)\n }\n}", + "id": "TH.14", + "name": "Withdraw Rewarded FLOW", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FlowToken from 0x7e60df042a9c0868\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -226,11 +239,20 @@ "type": "UFix64" } ] - }, + } + ], + "network": "testnet", + "hash": "f23406ff402f02418629432912ce732be0441b1a7e71f16c03d688a165ff7f49" + }, + { + "id": "TH.16", + "name": "Register Operator Node", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).getCapability\n \u003c\u0026StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}\u003e\n (StakingProxy.NodeOperatorCapabilityPublicPath)!.borrow() \n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", + "arguments": [ { "type": "Address", - "name": "to", - "label": "Recipient", + "name": "address", + "label": "Operator Address", "sampleValues": [ { "value": "0x8c5303eaa26202d6", @@ -239,172 +261,146 @@ ] }, { - "type": "Address", - "name": "contractAddress", - "label": "FT Contract Address", + "type": "String", + "name": "id", + "label": "Node ID", "sampleValues": [ { - "value": "0x8c5303eaa26202d6", - "type": "Address" + "value": "88549335e1db7b5b46c2ad58ddb70b7a45e770cc5fe779650ba26f10e6bae5e6", + "type": "String" } ] }, { - "type": "String", - "name": "contractName", - "label": "FT Contract Name", + "type": "UFix64", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "FiatToken", - "type": "String" + "value": "92233720368.54775808", + "type": "UFix64" } ] } ], "network": "testnet", - "hash": "0adc1ebe8246cf7656aefd9bf336f7f0c102a039e343776da61da4d6aa39aed2" + "hash": "c29d4024aaeb71ab478182542499e0ba3d5d303ec027252e3b8333515ee3de48" }, { - "id": "NFT.01", - "name": "Setup NFT Collection", - "source": "/// This transaction is what an account would run\n/// to set itself up to receive NFTs. This function\n/// uses views to know where to set up the collection\n/// in storage and to create the empty collection.\n\nimport NonFungibleToken from 0x631e88ae7f1d7c20\nimport MetadataViews from 0x631e88ae7f1d7c20\n\ntransaction(contractAddress: Address, contractName: String) {\n\n prepare(signer: auth(IssueStorageCapabilityController, PublishCapability, SaveValue) \u0026Account) {\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{NonFungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n let collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n // Create a new empty collections\n let emptyCollection \u003c- collectionData.createEmptyCollection()\n\n // save it to the account\n signer.storage.save(\u003c-emptyCollection, to: collectionData.storagePath)\n\n // create a public capability for the collection\n let collectionCap = signer.capabilities.storage.issue\u003c\u0026{NonFungibleToken.Collection}\u003e(\n collectionData.storagePath\n )\n signer.capabilities.publish(collectionCap, at: collectionData.publicPath)\n }\n}\n", + "id": "TH.17", + "name": "Register Delegator", + "source": "import FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\nimport FlowIDTableStaking from 0x9eca2b38b18b5dfe\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { - "type": "Address", - "name": "contractAddress", - "label": "NFT Contract Address", + "type": "String", + "name": "id", + "label": "Node ID", "sampleValues": [ { - "value": "0x8c5303eaa26202d6", - "type": "Address" + "value": "88549335e1db7b5b46c2ad58ddb70b7a45e770cc5fe779650ba26f10e6bae5e6", + "type": "String" } ] }, { - "type": "String", - "name": "contractName", - "label": "NFT Contract Name", + "type": "UFix64", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "TopShot", - "type": "String" + "value": "92233720368.54775808", + "type": "UFix64" } ] } ], "network": "testnet", - "hash": "54fae25bb09f5a324821b644890acbc5a356bcbe821218edeb18bd3042dcd333" + "hash": "9e952288b6359fde87fb91537e76e663d4e10e7ce495f7b8c763d38ab54cd232" }, { - "id": "NFT.02", - "name": "Transfer NFT with Paths", - "source": "import NonFungibleToken from 0x631e88ae7f1d7c20\n\n/// Can pass in any storage path and receiver path instead of just the default.\n/// This lets you choose the token you want to send as well the capability you want to send it to.\n///\n/// Any token path can be passed as an argument here, so wallets should\n/// should check argument values to make sure the intended token path is passed in\n///\ntransaction(to: Address, id: UInt64, senderPathIdentifier: String, receiverPathIdentifier: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n let storagePath = StoragePath(identifier: senderPathIdentifier)\n ?? panic(\"Could not construct a storage path from the provided path identifier string\")\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n let publicPath = PublicPath(identifier: receiverPathIdentifier)\n ?? panic(\"Could not construct a public path from the provided path identifier string\")\n\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{NonFungibleToken.Receiver}\u003e(publicPath)\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", + "id": "TH.19", + "name": "Delegate New Locked FLOW", + "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowDelegator()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.delegateNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.delegateNewTokens(amount: amount)\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { - "type": "Address", - "name": "to", - "label": "Recipient", - "sampleValues": [ - { - "value": "0x8c5303eaa26202d6", - "type": "Address" - } - ] - }, - { - "type": "UInt64", - "name": "id", - "label": "NFT ID to Transfer", - "sampleValues": [ - { - "value": "10", - "type": "UInt64" - } - ] - }, - { - "type": "String", - "name": "senderPathIdentifier", - "label": "Sender's Collection Path Identifier", - "sampleValues": [ - { - "value": "flowTokenVault", - "type": "String" - } - ] - }, - { - "type": "String", - "name": "receiverPathIdentifier", - "label": "Recipient's Receiver Path Identifier", + "type": "UFix64", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "flowTokenReceiver", - "type": "String" + "value": "92233720368.54775808", + "type": "UFix64" } ] } ], "network": "testnet", - "hash": "db0518029ca76e6f2d8ec1517768b1d395523e87d11a4297197f98b53dc9cc2d" + "hash": "7a8f09e4af477d551c4366e4b644718aa41e71210e043f8820dbd7dee7af38e8" }, { - "id": "NFT.03", - "name": "Transfer NFT with Address", - "source": "import NonFungibleToken from 0x631e88ae7f1d7c20\nimport MetadataViews from 0x631e88ae7f1d7c20\n\n/// Can pass in any contract address and name\n/// This lets you choose the token you want to send because\n/// the transaction gets the metadata from the provided contract.\n///\ntransaction(to: Address, id: UInt64, contractAddress: Address, contractName: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n // NFTCollectionData struct to get paths from\n let collectionData: MetadataViews.NFTCollectionData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{NonFungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n self.collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: self.collectionData.storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{NonFungibleToken.Receiver}\u003e(self.collectionData.publicPath)\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", + "id": "TH.20", + "name": "Re-delegate Unstaked FLOW", + "source": "import LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { - "type": "Address", - "name": "to", - "label": "Recipient", - "sampleValues": [ - { - "value": "0x8c5303eaa26202d6", - "type": "Address" - } - ] - }, - { - "type": "UInt64", - "name": "id", - "label": "NFT ID to Transfer", + "type": "UFix64", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "10", - "type": "UInt64" + "value": "92233720368.54775808", + "type": "UFix64" } ] - }, + } + ], + "network": "testnet", + "hash": "8776b1521b04395754734f8f40d4a0482863274f8d832973d9e011b3cbb48c85" + }, + { + "id": "TH.21", + "name": "Re-delegate Rewarded FLOW", + "source": "import LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateRewardedTokens(amount: amount)\n }\n}\n", + "arguments": [ { - "type": "Address", - "name": "contractAddress", - "label": "NFT Contract Address", + "type": "UFix64", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "0x8c5303eaa26202d6", - "type": "Address" + "value": "92233720368.54775808", + "type": "UFix64" } ] - }, + } + ], + "network": "testnet", + "hash": "6b40ffc9169abd75107a45da5974c7e502d38773275abb231d747e4760b7ebee" + }, + { + "id": "TH.22", + "name": "Unstake Delegated FLOW", + "source": "import LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.requestUnstaking(amount: amount)\n }\n}\n", + "arguments": [ { - "type": "String", - "name": "contractName", - "label": "NFT Contract Name", + "type": "UFix64", + "name": "amount", + "label": "Amount", "sampleValues": [ { - "value": "TopShot", - "type": "String" + "value": "92233720368.54775808", + "type": "UFix64" } ] } ], "network": "testnet", - "hash": "e4b837ce4d30be9bc74768085a0b43ba4d5edb3bed9c23c18b6a4de1024d459b" + "hash": "61cbcd1c31bbfc9ceb4a5ac726e2f8b3d845a4fdf59b0ab23cbbfa8f16d7a024" }, { - "id": "TH.01", - "name": "Withdraw Unlocked FLOW", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"The primary user account does not have an associated locked account\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "id": "TH.23", + "name": "Withdraw Unstaked FLOW", + "source": "import LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -419,12 +415,12 @@ } ], "network": "testnet", - "hash": "094798e93daeacaa9ff262486a3683ec5a5e2204407e7d00bc3416fbf3efa3b1" + "hash": "2ae983f78e32b989fafa58ee7910b131fb51a2a74356f7916624695cb8bf5964" }, { - "id": "TH.02", - "name": "Deposit Unlocked FLOW", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"The primary user account does not have an associated locked account\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", + "id": "TH.24", + "name": "Withdraw Rewarded FLOW", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FlowToken from 0x7e60df042a9c0868\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let delegatorProxy = self.holderRef.borrowDelegator()\n\n delegatorProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -439,20 +435,40 @@ } ], "network": "testnet", - "hash": "17ffcd60667893674d8d4044bdd8232959dc8b694df1dd88d1b9c5443352f253" + "hash": "385042aa453566fcff0b2bd418b837d8f46fbc23b1b46e6651b25a395bc04be8" + }, + { + "id": "TH.25", + "name": "Update Networking Address", + "source": "import FlowIDTableStaking from 0x9eca2b38b18b5dfe\n\ntransaction(newAddress: String) {\n\n // Local variable for a reference to the node object\n let stakerRef: auth(FlowIDTableStaking.NodeOperator) \u0026FlowIDTableStaking.NodeStaker\n\n prepare(acct: AuthAccount) {\n // borrow a reference to the node object\n self.stakerRef = acct.borrow\u003cauth(FlowIDTableStaking.NodeOperator) \u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)\n ?? panic(\"Could not borrow reference to staking admin\")\n }\n\n execute {\n\n self.stakerRef.updateNetworkingAddress(newAddress)\n\n }\n}", + "arguments": [ + { + "type": "String", + "name": "address", + "label": "Address", + "sampleValues": [ + { + "value": "flow-node.test:3569", + "type": "String" + } + ] + } + ], + "network": "testnet", + "hash": "dc08233f50512fd54f3110c18c02cf69d824a41a3e7032d49b309557fe3c86d0" }, { "id": "SCO.01", "name": "Setup Staking Collection", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport FlowIDTableStaking from 0x9eca2b38b18b5dfe\nimport LockedTokens from 0x95e019a17d0e23d7\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// This transaction sets up an account to use a staking collection\n/// It will work regardless of whether they have a regular account, a two-account locked tokens setup,\n/// or staking objects stored in the unlocked account\n\ntransaction {\n prepare(signer: auth(BorrowValue, Storage, Capabilities) \u0026Account) {\n\n // If there isn't already a staking collection\n if signer.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath) == nil {\n\n // Create private capabilities for the token holder and unlocked vault\n let lockedHolder = signer.capabilities.storage.issue\u003cauth(FungibleToken.Withdraw, LockedTokens.TokenOperations) \u0026LockedTokens.TokenHolder\u003e(LockedTokens.TokenHolderStoragePath)!\n let flowToken = signer.capabilities.storage.issue\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(/storage/flowTokenVault)!\n\n // Create a new Staking Collection and put it in storage\n if lockedHolder.check() {\n signer.storage.save(\n \u003c- FlowStakingCollection.createStakingCollection(\n unlockedVault: flowToken,\n tokenHolder: lockedHolder\n ),\n to: FlowStakingCollection.StakingCollectionStoragePath\n )\n } else {\n signer.storage.save(\n \u003c- FlowStakingCollection.createStakingCollection(\n unlockedVault: flowToken,\n tokenHolder: nil\n ),\n to: FlowStakingCollection.StakingCollectionStoragePath\n )\n }\n\n // Publish a capability to the created staking collection.\n let stakingCollectionCap = signer.capabilities.storage.issue\u003c\u0026FlowStakingCollection.StakingCollection\u003e(\n FlowStakingCollection.StakingCollectionStoragePath\n )\n\n signer.capabilities.publish(\n stakingCollectionCap,\n at: FlowStakingCollection.StakingCollectionPublicPath\n )\n }\n\n // borrow a reference to the staking collection\n let collectionRef = signer.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow staking collection reference\")\n\n // If there is a node staker object in the account, put it in the staking collection\n if signer.storage.borrow\u003c\u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath) != nil {\n let node \u003c- signer.storage.load\u003c@FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)!\n collectionRef.addNodeObject(\u003c-node, machineAccountInfo: nil)\n }\n\n // If there is a delegator object in the account, put it in the staking collection\n if signer.storage.borrow\u003c\u0026FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath) != nil {\n let delegator \u003c- signer.storage.load\u003c@FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath)!\n collectionRef.addDelegatorObject(\u003c-delegator)\n }\n }\n}\n", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport FlowIDTableStaking from 0x9eca2b38b18b5dfe\nimport LockedTokens from 0x95e019a17d0e23d7\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// This transaction sets up an account to use a staking collection\n/// It will work regardless of whether they have a regular account, a two-account locked tokens setup,\n/// or staking objects stored in the unlocked account\n\ntransaction {\n prepare(signer: AuthAccount) {\n\n // If there isn't already a staking collection\n if signer.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath) == nil {\n\n // Create private capabilities for the token holder and unlocked vault\n let lockedHolder = signer.link\u003c\u0026LockedTokens.TokenHolder\u003e(/private/flowTokenHolder, target: LockedTokens.TokenHolderStoragePath)!\n let flowToken = signer.link\u003c\u0026FlowToken.Vault\u003e(/private/flowTokenVault, target: /storage/flowTokenVault)!\n \n // Create a new Staking Collection and put it in storage\n if lockedHolder.check() {\n signer.save(\u003c-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: lockedHolder), to: FlowStakingCollection.StakingCollectionStoragePath)\n } else {\n signer.save(\u003c-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: nil), to: FlowStakingCollection.StakingCollectionStoragePath)\n }\n\n // Create a public link to the staking collection\n signer.link\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(\n FlowStakingCollection.StakingCollectionPublicPath,\n target: FlowStakingCollection.StakingCollectionStoragePath\n )\n }\n\n // borrow a reference to the staking collection\n let collectionRef = signer.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow staking collection reference\")\n\n // If there is a node staker object in the account, put it in the staking collection\n if signer.borrow\u003c\u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath) != nil {\n let node \u003c- signer.load\u003c@FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)!\n collectionRef.addNodeObject(\u003c-node, machineAccountInfo: nil)\n }\n\n // If there is a delegator object in the account, put it in the staking collection\n if signer.borrow\u003c\u0026FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath) != nil {\n let delegator \u003c- signer.load\u003c@FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath)!\n collectionRef.addDelegatorObject(\u003c-delegator)\n }\n }\n}\n", "arguments": [], "network": "testnet", - "hash": "861784e7ac135a9cfec90decdff2e53971a4d63135db77bcef3b273b710b1814" + "hash": "a524b4094fcaf1051dbf43ac33ff80bb2f553670c58eeeb719757972a25d6b50" }, { "id": "SCO.02", "name": "Register Delegator", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Registers a delegator in the staking collection resource\n/// for the specified nodeID and the amount of tokens to commit\n\ntransaction(id: String, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.registerDelegator(nodeID: id, amount: amount) \n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Registers a delegator in the staking collection resource\n/// for the specified nodeID and the amount of tokens to commit\n\ntransaction(id: String, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.registerDelegator(nodeID: id, amount: amount) \n }\n}\n", "arguments": [ { "type": "String", @@ -478,12 +494,12 @@ } ], "network": "testnet", - "hash": "e093df9c425be9cdbee44bdbbd721f6aff523e41802a50cf0ff353873e9f9483" + "hash": "c26f69a33ead535e7d597cec4567c6c70170e86fd85ec708f5381e50d43871e2" }, { "id": "SCO.03", "name": "Register Node", - "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n machineAccountKey: String, \n machineAccountKeySignatureAlgorithm: UInt8, \n machineAccountKeyHashAlgorithm: UInt8) {\n\n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account\n ) {\n let sigAlgo = SignatureAlgorithm(rawValue: machineAccountKeySignatureAlgorithm)\n ?? panic(\"Could not get a signature algorithm from the raw enum value provided\")\n\n let hashAlgo = HashAlgorithm(rawValue: machineAccountKeyHashAlgorithm)\n ?? panic(\"Could not get a hash algorithm from the raw enum value provided\")\n \n let publicKey = PublicKey(\n\t\t\t publicKey: machineAccountKey.decodeHex(),\n\t\t\t signatureAlgorithm: sigAlgo\n\t\t )\n machineAccount.keys.add(publicKey: publicKey, hashAlgorithm: hashAlgo, weight: 1000.0)\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n publicKeys: [Crypto.KeyListEntry]?) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account) \n {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys! {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -552,46 +568,63 @@ ] }, { - "type": "String", - "name": "machineAccountKey", - "label": "Machine Account Public Key", + "type": "[String]?", + "name": "publicKeys", + "label": "Public Keys", "sampleValues": [ { - "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", - "type": "String" - } - ] - }, - { - "type": "UInt8", - "name": "machineAccountKeySignatureAlgorithm", - "label": "Raw Value for Machine Account Signature Algorithm Enum", - "sampleValues": [ + "value": null, + "type": "Optional" + }, { - "value": "1", - "type": "UInt8" - } - ] - }, - { - "type": "UInt8", - "name": "machineAccountKeyHashAlgorithm", - "label": "Raw Value for Machine Account Hash Algorithm Enum", - "sampleValues": [ + "value": { + "value": [], + "type": "Array" + }, + "type": "Optional" + }, { - "value": "1", - "type": "UInt8" + "value": { + "value": [ + { + "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "type": "String" + } + ], + "type": "Array" + }, + "type": "Optional" + }, + { + "value": { + "value": [ + { + "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "type": "String" + }, + { + "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "type": "String" + }, + { + "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "type": "String" + } + ], + "type": "Array" + }, + "type": "Optional" } ] } ], "network": "testnet", - "hash": "deb5f758f3eb3b125cd9b14a6528f18d535377709fcef41e743751eb82800921" + "hash": "9246ec9b7a5c81151156e7c2f6d356f68b1b884f88728daca46b968d9a46cd5a" }, { "id": "SCO.04", "name": "Create Machine Account", - "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Creates a machine account for a node that is already in the staking collection\n/// and adds public keys to the new account\n\ntransaction(nodeID: String, \n machineAccountKey: String, \n machineAccountKeySignatureAlgorithm: UInt8, \n machineAccountKeyHashAlgorithm: UInt8) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) {\n let sigAlgo = SignatureAlgorithm(rawValue: machineAccountKeySignatureAlgorithm)\n ?? panic(\"Could not get a signature algorithm from the raw enum value provided\")\n\n let hashAlgo = HashAlgorithm(rawValue: machineAccountKeyHashAlgorithm)\n ?? panic(\"Could not get a hash algorithm from the raw enum value provided\")\n \n let publicKey = PublicKey(\n\t\t\t publicKey: machineAccountKey.decodeHex(),\n\t\t\t signatureAlgorithm: sigAlgo\n\t\t )\n machineAccount.keys.add(publicKey: publicKey, hashAlgorithm: hashAlgo, weight: 1000.0)\n } else {\n panic(\"Could not create a machine account for the node\")\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Creates a machine account for a node that is already in the staking collection\n/// and adds public keys to the new account\n\ntransaction(nodeID: String, publicKeys: [Crypto.KeyListEntry]) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n } else {\n panic(\"Could not create a machine account for the node\")\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -605,46 +638,50 @@ ] }, { - "type": "String", - "name": "machineAccountKey", - "label": "Machine Account Public Key", + "type": "[String]", + "name": "publicKeys", + "label": "Public Keys", "sampleValues": [ { - "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", - "type": "String" - } - ] - }, - { - "type": "UInt8", - "name": "machineAccountKeySignatureAlgorithm", - "label": "Raw Value for Machine Account Signature Algorithm Enum", - "sampleValues": [ + "value": [], + "type": "Array" + }, { - "value": "1", - "type": "UInt8" - } - ] - }, - { - "type": "UInt8", - "name": "machineAccountKeyHashAlgorithm", - "label": "Raw Value for Machine Account Hash Algorithm Enum", - "sampleValues": [ + "value": [ + { + "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "type": "String" + } + ], + "type": "Array" + }, { - "value": "1", - "type": "UInt8" + "value": [ + { + "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "type": "String" + }, + { + "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "type": "String" + }, + { + "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "type": "String" + } + ], + "type": "Array" } ] } ], "network": "testnet", - "hash": "4c1ad61500bcd0d32d7aa7eb84ca9b7417219ed6d524e05de8c55fb7d50940e4" + "hash": "86c69d731560f3bff549c5f180eb4219bfe650ae4efec8e0c5b5ad3ebed54a92" }, { "id": "SCO.05", "name": "Request Unstaking", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Requests unstaking for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.requestUnstaking(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Requests unstaking for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.requestUnstaking(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -688,12 +725,12 @@ } ], "network": "testnet", - "hash": "2d59f2c2c402f919c8dba30009e31480d54e2b250d2e10456e1ff029bd7cce99" + "hash": "b00f6b3b9d8d7d4a9a8ad14fce11ee0edb23c39c56a8c1351e6b597f53f2fb71" }, { "id": "SCO.06", "name": "Stake New Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits new tokens to stake for the specified node or delegator in the staking collection\n/// The tokens from the locked vault are used first, if it exists\n/// followed by the tokens from the unlocked vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.stakeNewTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits new tokens to stake for the specified node or delegator in the staking collection\n/// The tokens from the locked vault are used first, if it exists\n/// followed by the tokens from the unlocked vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeNewTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -737,12 +774,12 @@ } ], "network": "testnet", - "hash": "cf2b03950077352487e6344ab65edc3e1856731ab9cf68aa2ebbe279ae496d4b" + "hash": "1307928440cee4289235793d6ff860a24315f7b6a5d5907a145dcc5f83702a2c" }, { "id": "SCO.07", "name": "Stake Rewarded Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits rewarded tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.stakeRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits rewarded tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -786,12 +823,12 @@ } ], "network": "testnet", - "hash": "4395faf2e515eea4d40f82416ad387575f0d5a580612223c361130e53e72f00b" + "hash": "d7aca7113a7aa03e0afd20ee36f4873779708a02ac4c6985017740c2ecea3d62" }, { "id": "SCO.08", "name": "Stake Unstaked Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits unstaked tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.stakeUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits unstaked tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -835,12 +872,12 @@ } ], "network": "testnet", - "hash": "0b1721f2a8ef6c0c4121ef83c7b38f2141eebcd65c72dab9ebaafe1b4d66fea8" + "hash": "3595fcd68cff445c65ad99f8d4d726b5e28807b061800769c41cbe3adb98aeec" }, { "id": "SCO.09", "name": "Unstake All", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Requests to unstake ALL tokens for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.unstakeAll(nodeID: nodeID)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Requests to unstake ALL tokens for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.unstakeAll(nodeID: nodeID)\n }\n}\n", "arguments": [ { "type": "String", @@ -855,12 +892,12 @@ } ], "network": "testnet", - "hash": "c84843e3399be2ce95ea00e7c17d72db3c5c3363ec008c7a1c1cfa5b6afe70ae" + "hash": "0bde358f3965ba2f4c18fb45b6536857c3f53d7d3b740fe66fe93a4ebf7524c1" }, { "id": "SCO.10", "name": "Withdraw Rewarded Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw rewarded tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw rewarded tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -904,12 +941,12 @@ } ], "network": "testnet", - "hash": "5a07ca4c016973bdeb168590e111b2c2855833b5ece11ffb28b08b8668f258a8" + "hash": "3af182f568b37a8067d3fb524afcfe96991c85a928bf7651e730be0e15fdb72d" }, { "id": "SCO.11", "name": "Withdraw Unstaked Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw unstaked tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault if it is there\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw unstaked tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault if it is there\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -953,12 +990,12 @@ } ], "network": "testnet", - "hash": "01fd4ea83d20510d24ed9f245873a7ee2715aefb774495c80bce7e3e34d6442e" + "hash": "68879197d961bb104a56e1e7d35660436fe4c52ed78f79d97fa50aa9e96fabf0" }, { "id": "SCO.12", "name": "Close Stake", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Closes out a staking object in the staking collection\n// This does not remove the record from the identity table,\n// but it does mean that the account that closes it cannot ever access it again\n\ntransaction(nodeID: String, delegatorID: UInt32?) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.closeStake(nodeID: nodeID, delegatorID: delegatorID)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Closes out a staking object in the staking collection\n// This does not remove the record from the identity table,\n// but it does mean that the account that closes it cannot ever access it again\n\ntransaction(nodeID: String, delegatorID: UInt32?) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.closeStake(nodeID: nodeID, delegatorID: delegatorID)\n }\n}\n", "arguments": [ { "type": "String", @@ -991,12 +1028,12 @@ } ], "network": "testnet", - "hash": "7e216d96d75414b27c2301a3b0a7816804d43014337a14731d1493531116d185" + "hash": "079aaa9cfb22138415056b43d5d91e8d73bd8bd5f37ebff4f4023d33ea6d2f25" }, { "id": "SCO.13", "name": "Transfer Node", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeStaker object from an authorizers account\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the receiver's account\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeStaker object from an authorizers accoount\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: AuthAccount) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.getCapability\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath).borrow()\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", "arguments": [ { "type": "String", @@ -1022,12 +1059,12 @@ } ], "network": "testnet", - "hash": "a39eedbe19f252c24ba2cc74aa70c0afd68b8d89528cad05a0a535e2f9c6ee87" + "hash": "2386d7ae1a5b936e3914729ee34e01d53a8fbd2e403512ec1beccb4062c231eb" }, { "id": "SCO.14", "name": "Transfer Delegator", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeDelegator object from an authorizers account\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow a referamce to a StakingCollection in the receiver's account\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeDelegator object from an authorizers accoount\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: AuthAccount) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.getCapability\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath).borrow()\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", "arguments": [ { "type": "String", @@ -1064,12 +1101,12 @@ } ], "network": "testnet", - "hash": "135df83060f854d487030594e954e9642e4cf6accb5b5abbdf88a9e075468913" + "hash": "53b096b4850a30894e7b272ec5c39e2b2f4a23f8c40e76a3c64cfc63dc2999b6" }, { "id": "SCO.15", "name": "Withdraw From Machine Account", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw tokens from the machine account\n/// The tokens are automatically deposited to the unlocked account vault\n\ntransaction(nodeID: String, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawFromMachineAccount(nodeID: nodeID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw tokens from the machine account\n/// The tokens are automatically deposited to the unlocked account vault\n\ntransaction(nodeID: String, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawFromMachineAccount(nodeID: nodeID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -1095,12 +1132,12 @@ } ], "network": "testnet", - "hash": "fdd40862af04dc36dd0e9e727966c6f81dd6be8246b9c70afd18297aac9e86a8" + "hash": "39a126038522c6c964d53aaf78dde55bfe80929091510792fe49678bb22cbd96" }, { "id": "SCO.16", "name": "Update Networking Address", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Changes the networking address for the specified node\n\ntransaction(nodeID: String, newAddress: String) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.updateNetworkingAddress(nodeID: nodeID, newAddress: newAddress)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Changes the networking address for the specified node\n\ntransaction(nodeID: String, newAddress: String) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.updateNetworkingAddress(nodeID: nodeID, newAddress: newAddress)\n }\n}\n", "arguments": [ { "type": "String", @@ -1126,7 +1163,7 @@ } ], "network": "testnet", - "hash": "3a68789d8cd56e6c7b064057045a56340746aac710db57700de2c33eb6610e5f" + "hash": "60f2cf219d56b19dc7fd223caed42dda9143c87b1b0d2c21a9652e12a3714133" } ] } \ No newline at end of file diff --git a/lib/go/templates/templates.go b/lib/go/templates/templates.go index 208f7bcf5..0795aa594 100644 --- a/lib/go/templates/templates.go +++ b/lib/go/templates/templates.go @@ -14,48 +14,37 @@ import ( ) const ( - placeholderFungibleTokenAddress = "\"FungibleToken\"" - placeholderViewResolverAddress = "\"ViewResolver\"" - placeholderFungibleTokenMVAddress = "\"FungibleTokenMetadataViews\"" - placeholderMetadataViewsAddress = "\"MetadataViews\"" - placeholderBurnerAddress = "\"Burner\"" - placeholderFlowTokenAddress = "\"FlowToken\"" - placeholderIDTableAddress = "\"FlowIDTableStaking\"" - placeholderLockedTokensAddress = "\"LockedTokens\"" - placeholderStakingProxyAddress = "\"StakingProxy\"" - placeholderQuorumCertificateAddress = "\"FlowClusterQC\"" - placeholderFlowFeesAddress = "\"FlowFees\"" - placeholderStorageFeesAddress = "\"FlowStorageFees\"" - placeholderServiceAccountAddress = "\"FlowServiceAccount\"" - placeholderDKGAddress = "\"FlowDKG\"" - placeholderEpochAddress = "\"FlowEpoch\"" - placeholderStakingCollectionAddress = "\"FlowStakingCollection\"" - placeholderNodeVersionBeaconAddress = "\"NodeVersionBeacon\"" - placeholderRandomBeaconHistoryAddress = "\"RandomBeaconHistory\"" + placeholderFungibleTokenAddress = "\"FungibleToken\"" + OLD_placeholderFungibleTokenAddress = "0xFUNGIBLETOKENADDRESS" + placeholderFlowTokenAddress = "\"FlowToken\"" + OLD_placeholderFlowTokenAddress = "0xFLOWTOKENADDRESS" + placeholderIDTableAddress = "\"FlowIDTableStaking\"" + placeholderLockedTokensAddress = "0xLOCKEDTOKENADDRESS" + placeholderStakingProxyAddress = "0xSTAKINGPROXYADDRESS" + placeholderQuorumCertificateAddress = "0xQCADDRESS" + placeholderFlowFeesAddress = "0xFLOWFEESADDRESS" + placeholderStorageFeesAddress = "0xFLOWSTORAGEFEESADDRESS" + placeholderServiceAccountAddress = "0xFLOWSERVICEADDRESS" + placeholderDKGAddress = "0xDKGADDRESS" + placeholderEpochAddress = "0xEPOCHADDRESS" + placeholderStakingCollectionAddress = "0xSTAKINGCOLLECTIONADDRESS" + placeholderNodeVersionBeaconAddress = "0xNODEVERSIONBEACONADDRESS" ) type Environment struct { - Network string - ViewResolverAddress string - BurnerAddress string - FungibleTokenAddress string - NonFungibleTokenAddress string - MetadataViewsAddress string - FungibleTokenMetadataViewsAddress string - FungibleTokenSwitchboardAddress string - FlowTokenAddress string - IDTableAddress string - LockedTokensAddress string - StakingProxyAddress string - QuorumCertificateAddress string - DkgAddress string - EpochAddress string - StorageFeesAddress string - FlowFeesAddress string - StakingCollectionAddress string - ServiceAccountAddress string - NodeVersionBeaconAddress string - RandomBeaconHistoryAddress string + Network string + FungibleTokenAddress string + FlowTokenAddress string + IDTableAddress string + LockedTokensAddress string + StakingProxyAddress string + QuorumCertificateAddress string + DkgAddress string + EpochAddress string + StorageFeesAddress string + FlowFeesAddress string + ServiceAccountAddress string + NodeVersionBeaconAddress string } func withHexPrefix(address string) string { @@ -74,26 +63,14 @@ func ReplaceAddresses(code string, env Environment) string { code = strings.ReplaceAll( code, - placeholderFungibleTokenMVAddress, - withHexPrefix(env.FungibleTokenMetadataViewsAddress), - ) - - code = strings.ReplaceAll( - code, - placeholderMetadataViewsAddress, - withHexPrefix(env.MetadataViewsAddress), - ) - - code = strings.ReplaceAll( - code, - placeholderBurnerAddress, - withHexPrefix(env.BurnerAddress), + OLD_placeholderFungibleTokenAddress, + withHexPrefix(env.FungibleTokenAddress), ) code = strings.ReplaceAll( code, - placeholderViewResolverAddress, - withHexPrefix(env.ViewResolverAddress), + OLD_placeholderFlowTokenAddress, + withHexPrefix(env.FlowTokenAddress), ) code = strings.ReplaceAll( @@ -174,11 +151,5 @@ func ReplaceAddresses(code string, env Environment) string { withHexPrefix(env.NodeVersionBeaconAddress), ) - code = strings.ReplaceAll( - code, - placeholderRandomBeaconHistoryAddress, - withHexPrefix(env.RandomBeaconHistoryAddress), - ) - return code } diff --git a/lib/go/test/flow_epoch_test.go b/lib/go/test/flow_epoch_test.go index 15b47dee7..025e703ac 100644 --- a/lib/go/test/flow_epoch_test.go +++ b/lib/go/test/flow_epoch_test.go @@ -3,19 +3,18 @@ package test import ( "encoding/hex" "fmt" - "math/rand" "testing" - "time" + + "github.com/onflow/flow-go/module/signature" "github.com/onflow/cadence" jsoncdc "github.com/onflow/cadence/encoding/json" - "github.com/onflow/crypto" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "github.com/onflow/flow-core-contracts/lib/go/templates" "github.com/onflow/flow-go-sdk" - sdkcrypto "github.com/onflow/flow-go-sdk/crypto" + "github.com/onflow/flow-go-sdk/crypto" ) const ( @@ -62,13 +61,6 @@ func TestEpochDeployment(t *testing.T) { numCollectorClusters: numClusters, rewardPercentage: rewardIncreaseFactor}) - verifyEpochTimingConfig(t, b, env, - EpochTimingConfig{ - duration: numEpochViews, - refCounter: startEpochCounter, - refTimestamp: uint64(time.Now().Unix()) + numEpochViews, - }) - // Verify that the current epoch was initialized correctly verifyEpochMetadata(t, b, env, EpochMetadata{ @@ -94,7 +86,7 @@ func TestEpochClusters(t *testing.T) { // Deploys the staking contract, qc, dkg, and epoch lifecycle contract // staking contract is deployed with default values (1.25M rewards, 8% cut) - _, _ = initializeAllEpochContracts(t, b, idTableAccountKey, IDTableSigner, &env, + idTableAddress, _ := initializeAllEpochContracts(t, b, idTableAccountKey, IDTableSigner, &env, startEpochCounter, // start epoch counter numEpochViews, // num views per epoch numStakingViews, // num views for staking auction @@ -115,6 +107,22 @@ func TestEpochClusters(t *testing.T) { }) + code := ` + transaction { + prepare(acct: AuthAccount) { + let number = unsafeRandom() + acct.save(number, to: /storage/number) + } + }` + + tx := createTxWithTemplateAndAuthorizer(b, []byte(fmt.Sprintf(code)), idTableAddress) + signAndSubmit( + t, b, tx, + []flow.Address{idTableAddress}, + []crypto.Signer{IDTableSigner}, + false, + ) + // create new user accounts, mint tokens for them, and register them for staking addresses, _, signers := registerAndMintManyAccounts(t, b, env, accountKeys, numEpochAccounts) ids, _, _ := generateNodeIDs(numEpochAccounts) @@ -126,16 +134,17 @@ func TestEpochClusters(t *testing.T) { networkingPublicKeys, ids) - t.Run("Should be able to create collector clusters from an array of ids signed up for staking", func(t *testing.T) { - string0, _ := cadence.NewString(ids[0]) - string1, _ := cadence.NewString(ids[1]) - string2, _ := cadence.NewString(ids[2]) - string3, _ := cadence.NewString(ids[3]) - idArray := cadence.NewArray([]cadence.Value{string0, string1, string2, string3}) - result := executeScriptAndCheck(t, b, templates.GenerateGetCreateClustersScript(env), [][]byte{jsoncdc.MustEncode(idArray)}) - assertEqual(t, 2, len(result.(cadence.Array).Values)) + // t.Run("Should be able to create collector clusters from an array of ids signed up for staking", func(t *testing.T) { + // string0, _ := cadence.NewString(ids[0]) + // string1, _ := cadence.NewString(ids[1]) + // string2, _ := cadence.NewString(ids[2]) + // string3, _ := cadence.NewString(ids[3]) + // idArray := cadence.NewArray([]cadence.Value{string0, string1, string2, string3}) + // result := executeScriptAndCheck(t, b, templates.GenerateGetCreateClustersScript(env), [][]byte{jsoncdc.MustEncode(idArray)}) + // assertEqual(t, 2, len(result.(cadence.Array).Values)) - }) + // + // }) } @@ -165,7 +174,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, true, ) @@ -177,7 +186,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, false, ) @@ -189,7 +198,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, false, ) @@ -199,7 +208,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, true, ) @@ -209,7 +218,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, false, ) @@ -219,7 +228,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, true, ) @@ -229,7 +238,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, false, ) @@ -239,7 +248,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, true, ) @@ -249,7 +258,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, false, ) @@ -259,7 +268,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, false, ) @@ -269,7 +278,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, true, ) @@ -279,7 +288,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, false, ) @@ -296,43 +305,6 @@ func TestEpochPhaseMetadataChange(t *testing.T) { rewardPercentage: "0.04"}) }) - t.Run("should be able to update timing config when staking enabled (Staking phase)", func(t *testing.T) { - timingConfig := EpochTimingConfig{ - duration: rand.Uint64() % 100_000, - refCounter: 0, - refTimestamp: uint64(time.Now().Unix()), - } - - t.Run("invalid EpochTimingConfig", func(t *testing.T) { - tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateUpdateEpochTimingConfigScript(env), idTableAddress) - _ = tx.AddArgument(CadenceUInt64(timingConfig.duration)) - // Use a reference counter in the future, which validates the precondition - _ = tx.AddArgument(CadenceUInt64(timingConfig.refCounter + 100)) - _ = tx.AddArgument(CadenceUInt64(timingConfig.refTimestamp)) - signAndSubmit( - t, b, tx, - []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, - true, - ) - }) - - t.Run("valid EpochTimingConfig", func(t *testing.T) { - tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateUpdateEpochTimingConfigScript(env), idTableAddress) - _ = tx.AddArgument(CadenceUInt64(timingConfig.duration)) - _ = tx.AddArgument(CadenceUInt64(timingConfig.refCounter)) - _ = tx.AddArgument(CadenceUInt64(timingConfig.refTimestamp)) - signAndSubmit( - t, b, tx, - []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, - false, - ) - // timing config should be updated - verifyEpochTimingConfig(t, b, env, timingConfig) - }) - }) - // create new user accounts, mint tokens for them, and register them for staking addresses, _, signers := registerAndMintManyAccounts(t, b, env, accountKeys, numEpochAccounts) ids, _, _ := generateNodeIDs(numEpochAccounts) @@ -354,7 +326,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, false, ) @@ -369,7 +341,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, true, ) @@ -379,7 +351,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, true, ) @@ -389,7 +361,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, true, ) @@ -399,7 +371,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, true, ) @@ -409,7 +381,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, true, ) @@ -424,92 +396,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { numViewsInDKGPhase: 2, numCollectorClusters: 2, rewardPercentage: "0.04"}) - }) - - t.Run("should be able to update timing config when staking disabled (Setup/Commit phases)", func(t *testing.T) { - timingConfig := EpochTimingConfig{ - duration: rand.Uint64() % 100_000, - refCounter: 0, - refTimestamp: uint64(time.Now().Unix()), - } - - t.Run("invalid EpochTimingConfig", func(t *testing.T) { - tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateUpdateEpochTimingConfigScript(env), idTableAddress) - _ = tx.AddArgument(CadenceUInt64(timingConfig.duration)) - // Use a reference counter in the future, which validates the precondition - _ = tx.AddArgument(CadenceUInt64(timingConfig.refCounter + 100)) - _ = tx.AddArgument(CadenceUInt64(timingConfig.refTimestamp)) - signAndSubmit( - t, b, tx, - []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, - true, - ) - }) - - t.Run("valid EpochTimingConfig", func(t *testing.T) { - tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateUpdateEpochTimingConfigScript(env), idTableAddress) - _ = tx.AddArgument(CadenceUInt64(timingConfig.duration)) - _ = tx.AddArgument(CadenceUInt64(timingConfig.refCounter)) - _ = tx.AddArgument(CadenceUInt64(timingConfig.refTimestamp)) - signAndSubmit( - t, b, tx, - []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, - false, - ) - // timing config should be updated - verifyEpochTimingConfig(t, b, env, timingConfig) - }) - }) -} - -func TestEpochTiming(t *testing.T) { - b, _, accountKeys, env := newTestSetup(t) - // Create new keys for the epoch account - idTableAccountKey, IDTableSigner := accountKeys.NewWithSigner() - - // Deploys the staking contract, qc, dkg, and epoch lifecycle contract - // staking contract is deployed with default values (1.25M rewards, 8% cut) - initializeAllEpochContracts(t, b, idTableAccountKey, IDTableSigner, &env, - startEpochCounter, // start epoch counter - numEpochViews, // num views per epoch - numStakingViews, // num views for staking auction - numDKGViews, // num views for DKG phase - numClusters, // num collector clusters - randomSource, // random source - rewardIncreaseFactor) - - epochTimingConfigResult := executeScriptAndCheck(t, b, templates.GenerateGetEpochTimingConfigScript(env), nil) - - t.Run("should be able to observe end times for current epoch", func(t *testing.T) { - gotEndTimeCdc := executeScriptAndCheck(t, b, templates.GenerateGetTargetEndTimeForEpochScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt64(startEpochCounter))}) - gotEndTime := uint64(gotEndTimeCdc.(cadence.UInt64)) - expectedEndTime := expectedTargetEndTime(epochTimingConfigResult, startEpochCounter) - assert.Equal(t, expectedEndTime, gotEndTime) - - // sanity check: should be within 10 minutes of the current time - gotEndTimeParsed := time.Unix(int64(gotEndTime), 0) - assert.InDelta(t, time.Now().Unix(), gotEndTimeParsed.Unix(), float64(10*time.Minute)) - gotEndTimeParsed.Sub(time.Now()) - }) - - t.Run("should be able to observe end times for future epochs", func(t *testing.T) { - var lastEndTime uint64 - for _, epoch := range []uint64{1, 2, 3, 10, 100, 1000, 10_000} { - gotEndTimeCdc := executeScriptAndCheck(t, b, templates.GenerateGetTargetEndTimeForEpochScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt64(epoch))}) - gotEndTime := uint64(gotEndTimeCdc.(cadence.UInt64)) - expectedEndTime := expectedTargetEndTime(epochTimingConfigResult, epoch) - assert.Equal(t, expectedEndTime, gotEndTime) - - // sanity check: target end time should be strictly increasing - if lastEndTime > 0 { - assert.Greater(t, gotEndTime, lastEndTime) - } - - lastEndTime = gotEndTime - } }) } @@ -561,14 +448,12 @@ func TestEpochAdvance(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, false, ) t.Run("Proposed metadata, QC, and DKG should have been created properly for epoch setup", func(t *testing.T) { - epochTimingConfigResult := executeScriptAndCheck(t, b, templates.GenerateGetEpochTimingConfigScript(env), nil) - // Advance to epoch Setup and make sure that the epoch cannot be ended advanceView(t, b, env, idTableAddress, IDTableSigner, 1, "EPOCHSETUP", false) @@ -601,13 +486,6 @@ func TestEpochAdvance(t *testing.T) { clusterQCs: nil, dkgKeys: nil}) - verifyEpochTimingConfig(t, b, env, - EpochTimingConfig{ - duration: numEpochViews, - refCounter: startEpochCounter, - refTimestamp: uint64(time.Now().Unix()) + numEpochViews, - }) - verifyEpochSetup(t, b, adapter, idTableAddress, EpochSetup{ counter: startEpochCounter + 1, @@ -618,10 +496,7 @@ func TestEpochAdvance(t *testing.T) { randomSource: "", dkgPhase1FinalView: startView + numEpochViews + numStakingViews + numDKGViews - 1, dkgPhase2FinalView: startView + numEpochViews + numStakingViews + 2*numDKGViews - 1, - dkgPhase3FinalView: startView + numEpochViews + numStakingViews + 3*numDKGViews - 1, - targetDuration: numEpochViews, - targetEndTime: expectedTargetEndTime(epochTimingConfigResult, startEpochCounter+1), - }) + dkgPhase3FinalView: startView + numEpochViews + numStakingViews + 3*numDKGViews - 1}) // QC Contract Checks result := executeScriptAndCheck(t, b, templates.GenerateGetClusterWeightScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt16(uint16(0)))}) @@ -642,7 +517,7 @@ func TestEpochAdvance(t *testing.T) { assert.Equal(t, cadence.NewBool(true), result) result = executeScriptAndCheck(t, b, templates.GenerateGetConsensusNodesScript(env), nil) - assert.Equal(t, cadence.NewArray(dkgIDs).WithType(cadence.NewVariableSizedArrayType(cadence.StringType)), result) + assert.Equal(t, cadence.NewArray(dkgIDs).WithType(cadence.NewVariableSizedArrayType(cadence.NewStringType())), result) result = executeScriptAndCheck(t, b, templates.GenerateGetDKGFinalSubmissionsScript(env), nil) assert.Equal(t, 0, len(result.(cadence.Array).Values)) @@ -713,7 +588,7 @@ func TestEpochQCDKGNodeRegistration(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, false, ) @@ -728,7 +603,7 @@ func TestEpochQCDKGNodeRegistration(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[1]}, - []sdkcrypto.Signer{signers[1]}, + []crypto.Signer{signers[1]}, true, ) @@ -738,7 +613,7 @@ func TestEpochQCDKGNodeRegistration(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[0]}, - []sdkcrypto.Signer{signers[0]}, + []crypto.Signer{signers[0]}, true, ) }) @@ -751,7 +626,7 @@ func TestEpochQCDKGNodeRegistration(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[0]}, - []sdkcrypto.Signer{signers[0]}, + []crypto.Signer{signers[0]}, false, ) @@ -761,7 +636,7 @@ func TestEpochQCDKGNodeRegistration(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[1]}, - []sdkcrypto.Signer{signers[1]}, + []crypto.Signer{signers[1]}, false, ) }) @@ -837,7 +712,7 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, false, ) @@ -849,7 +724,7 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[0]}, - []sdkcrypto.Signer{signers[0]}, + []crypto.Signer{signers[0]}, false, ) @@ -857,7 +732,7 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[5]}, - []sdkcrypto.Signer{signers[5]}, + []crypto.Signer{signers[5]}, false, ) @@ -866,7 +741,7 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[1]}, - []sdkcrypto.Signer{signers[1]}, + []crypto.Signer{signers[1]}, false, ) @@ -887,7 +762,7 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[1]}, - []sdkcrypto.Signer{signers[1]}, + []crypto.Signer{signers[1]}, false, ) @@ -902,7 +777,7 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[1]}, - []sdkcrypto.Signer{signers[1]}, + []crypto.Signer{signers[1]}, false, ) @@ -930,7 +805,7 @@ func TestEpochQCDKG(t *testing.T) { clusterQCs[0] = make([]string, 2) clusterQCs[1] = make([]string, 2) - collectorVoteHasher := crypto.NewExpandMsgXOFKMAC128(collectorVoteTag) + collectorVoteHasher := signature.NewBLSHasher(collectorVoteTag) t.Run("Can perform QC actions during Epoch Setup and advance to EpochCommit", func(t *testing.T) { @@ -949,7 +824,7 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[0]}, - []sdkcrypto.Signer{signers[0]}, + []crypto.Signer{signers[0]}, false, ) @@ -968,7 +843,7 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[5]}, - []sdkcrypto.Signer{signers[5]}, + []crypto.Signer{signers[5]}, false, ) @@ -1016,7 +891,7 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, false, ) @@ -1037,7 +912,7 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, false, ) @@ -1046,30 +921,19 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, false, ) // Advance to new epoch advanceView(t, b, env, idTableAddress, IDTableSigner, 1, "ENDEPOCH", false) - verifyEpochStart(t, b, adapter, idTableAddress, - EpochStart{ - counter: startEpochCounter + 1, - firstView: startView + numEpochViews, - stakingEndView: startView + numEpochViews + numStakingViews - 1, - finalView: startView + 2*numEpochViews - 1, - totalStaked: "6750000.0", - totalSupply: "7000000000.0", - rewards: "6571204.6775", - }) - tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateEpochPayRewardsScript(env), idTableAddress) signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, false, ) @@ -1140,7 +1004,7 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, false, ) @@ -1155,7 +1019,7 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, false, ) @@ -1224,7 +1088,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, false, ) @@ -1236,7 +1100,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[0]}, - []sdkcrypto.Signer{signers[0]}, + []crypto.Signer{signers[0]}, false, ) @@ -1244,7 +1108,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[5]}, - []sdkcrypto.Signer{signers[5]}, + []crypto.Signer{signers[5]}, false, ) @@ -1253,7 +1117,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[1]}, - []sdkcrypto.Signer{signers[1]}, + []crypto.Signer{signers[1]}, false, ) @@ -1261,7 +1125,7 @@ func TestEpochReset(t *testing.T) { clusterQCs[0] = make([]string, 1) clusterQCs[1] = make([]string, 1) - collectorVoteHasher := crypto.NewExpandMsgXOFKMAC128(collectorVoteTag) + collectorVoteHasher := signature.NewBLSHasher(collectorVoteTag) t.Run("Can perform QC actions during Epoch Setup but cannot advance to EpochCommit if DKG isn't complete", func(t *testing.T) { @@ -1279,7 +1143,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[0]}, - []sdkcrypto.Signer{signers[0]}, + []crypto.Signer{signers[0]}, false, ) @@ -1297,7 +1161,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[5]}, - []sdkcrypto.Signer{signers[5]}, + []crypto.Signer{signers[5]}, false, ) @@ -1339,7 +1203,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, true, ) }) @@ -1360,7 +1224,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, true, ) }) @@ -1381,7 +1245,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, true, ) }) @@ -1402,7 +1266,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, false, ) @@ -1439,7 +1303,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, false, ) @@ -1457,7 +1321,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, false, ) @@ -1486,7 +1350,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, false, ) @@ -1507,7 +1371,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{IDTableSigner}, + []crypto.Signer{IDTableSigner}, false, ) diff --git a/transactions/FlowServiceAccount/deposit_fees.cdc b/transactions/FlowServiceAccount/deposit_fees.cdc index ac0d6e3d8..7b67f934d 100644 --- a/transactions/FlowServiceAccount/deposit_fees.cdc +++ b/transactions/FlowServiceAccount/deposit_fees.cdc @@ -1,6 +1,6 @@ import FungibleToken from "FungibleToken" import FlowToken from "FlowToken" -import FlowFees from "FlowFees" +import FlowFees from 0xFLOWFEESADDRESS // Deposit tokens to the FlowFees Vault // only for testing @@ -10,10 +10,10 @@ transaction(amount: UFix64) { // The Vault resource that holds the tokens that are being transferred let sentVault: @{FungibleToken.Vault} - prepare(signer: auth(BorrowValue) &Account) { + prepare(signer: AuthAccount) { // Get a reference to the signer's stored vault - let vaultRef = signer.storage.borrow(from: /storage/flowTokenVault) + let vaultRef = signer.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to the owner's Vault!") // Withdraw tokens from the signer's stored vault diff --git a/transactions/epoch/admin/advance_view.cdc b/transactions/epoch/admin/advance_view.cdc index f3f43ca6b..06070477a 100644 --- a/transactions/epoch/admin/advance_view.cdc +++ b/transactions/epoch/admin/advance_view.cdc @@ -1,9 +1,9 @@ -import FlowEpoch from "FlowEpoch" +import FlowEpoch from 0xEPOCHADDRESS import FlowIDTableStaking from "FlowIDTableStaking" transaction(phase: String) { - prepare(signer: auth(BorrowValue) &Account) { - let heartbeat = signer.storage.borrow<&FlowEpoch.Heartbeat>(from: FlowEpoch.heartbeatStoragePath) + prepare(signer: AuthAccount) { + let heartbeat = signer.borrow<&FlowEpoch.Heartbeat>(from: FlowEpoch.heartbeatStoragePath) ?? panic("Could not borrow heartbeat from storage path") if phase == "EPOCHSETUP" { diff --git a/transactions/epoch/admin/calculate_rewards.cdc b/transactions/epoch/admin/calculate_rewards.cdc index e3cf37017..4c73bcd77 100644 --- a/transactions/epoch/admin/calculate_rewards.cdc +++ b/transactions/epoch/admin/calculate_rewards.cdc @@ -1,9 +1,9 @@ -import FlowEpoch from "FlowEpoch" +import FlowEpoch from 0xEPOCHADDRESS import FlowIDTableStaking from "FlowIDTableStaking" transaction() { - prepare(signer: auth(BorrowValue) &Account) { - let heartbeat = signer.storage.borrow<&FlowEpoch.Heartbeat>(from: FlowEpoch.heartbeatStoragePath) + prepare(signer: AuthAccount) { + let heartbeat = signer.borrow<&FlowEpoch.Heartbeat>(from: FlowEpoch.heartbeatStoragePath) ?? panic("Could not borrow heartbeat from storage path") heartbeat.calculateAndSetRewards() diff --git a/transactions/epoch/admin/pay_rewards.cdc b/transactions/epoch/admin/pay_rewards.cdc index db921c10d..2e7fad4e7 100644 --- a/transactions/epoch/admin/pay_rewards.cdc +++ b/transactions/epoch/admin/pay_rewards.cdc @@ -1,12 +1,12 @@ -import FlowEpoch from "FlowEpoch" +import FlowEpoch from 0xEPOCHADDRESS import FlowIDTableStaking from "FlowIDTableStaking" /// Pays the rewards for the previous epoch /// If the rewards have already been paid, the payment will not happen transaction { - prepare(signer: auth(BorrowValue) &Account) { - let heartbeat = signer.storage.borrow<&FlowEpoch.Heartbeat>(from: FlowEpoch.heartbeatStoragePath) + prepare(signer: AuthAccount) { + let heartbeat = signer.borrow<&FlowEpoch.Heartbeat>(from: FlowEpoch.heartbeatStoragePath) ?? panic("Could not borrow heartbeat from storage path") heartbeat.payRewardsForPreviousEpoch() diff --git a/transactions/epoch/admin/reset_epoch.cdc b/transactions/epoch/admin/reset_epoch.cdc index 2dfa217d4..25b7aad8d 100644 --- a/transactions/epoch/admin/reset_epoch.cdc +++ b/transactions/epoch/admin/reset_epoch.cdc @@ -1,4 +1,4 @@ -import FlowEpoch from "FlowEpoch" +import FlowEpoch from 0xEPOCHADDRESS import FlowIDTableStaking from "FlowIDTableStaking" // The resetEpoch transaction ends the current epoch in the FlowEpoch smart contract @@ -19,8 +19,8 @@ transaction(currentEpochCounter: UInt64, stakingEndView: UInt64, endView: UInt64) { - prepare(signer: auth(BorrowValue) &Account) { - let epochAdmin = signer.storage.borrow<&FlowEpoch.Admin>(from: FlowEpoch.adminStoragePath) + prepare(signer: AuthAccount) { + let epochAdmin = signer.borrow<&FlowEpoch.Admin>(from: FlowEpoch.adminStoragePath) ?? panic("Could not borrow heartbeat from storage path") epochAdmin.resetEpoch(currentEpochCounter: currentEpochCounter, diff --git a/transactions/epoch/node/register_dkg_participant.cdc b/transactions/epoch/node/register_dkg_participant.cdc index 8f40ffc5b..1e175abed 100644 --- a/transactions/epoch/node/register_dkg_participant.cdc +++ b/transactions/epoch/node/register_dkg_participant.cdc @@ -1,17 +1,17 @@ -import FlowEpoch from "FlowEpoch" +import FlowEpoch from 0xEPOCHADDRESS import FlowIDTableStaking from "FlowIDTableStaking" -import FlowDKG from "FlowDKG" +import FlowDKG from 0xDKGADDRESS transaction() { - prepare(signer: auth(Storage) &Account) { + prepare(signer: AuthAccount) { - let nodeRef = signer.storage.borrow<&FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath) + let nodeRef = signer.borrow<&FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath) ?? panic("Could not borrow node reference from storage path") let dkgParticipant <- FlowEpoch.getDKGParticipant(nodeStaker: nodeRef) - signer.storage.save(<-dkgParticipant, to: FlowDKG.ParticipantStoragePath) + signer.save(<-dkgParticipant, to: FlowDKG.ParticipantStoragePath) } } \ No newline at end of file diff --git a/transactions/epoch/node/register_node.cdc b/transactions/epoch/node/register_node.cdc index 2a931c301..e19f9f587 100644 --- a/transactions/epoch/node/register_node.cdc +++ b/transactions/epoch/node/register_node.cdc @@ -1,9 +1,9 @@ import Crypto import FlowIDTableStaking from "FlowIDTableStaking" import FlowToken from "FlowToken" -import FlowClusterQC from "FlowClusterQC" -import FlowDKG from "FlowDKG" -import FlowEpoch from "FlowEpoch" +import FlowClusterQC from 0xQCADDRESS +import FlowDKG from 0xDKGADDRESS +import FlowEpoch from 0xEPOCHADDRESS import FungibleToken from "FungibleToken" // This transaction creates a new node struct object @@ -20,15 +20,15 @@ transaction( publicKeys: [Crypto.KeyListEntry] ) { - let flowTokenRef: auth(FungibleToken.Withdraw) &FlowToken.Vault + let flowTokenRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault - prepare(acct: auth(Storage, Capabilities, AddKey) &Account) { + prepare(acct: AuthAccount) { - self.flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) + self.flowTokenRef = acct.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") // Register Node - if acct.storage.borrow<&FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath) == nil { + if acct.borrow<&FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath) == nil { let nodeStaker <- FlowIDTableStaking.addNodeRecord( id: id, @@ -39,13 +39,15 @@ transaction( tokensCommitted: <-self.flowTokenRef.withdraw(amount: amount) ) - acct.storage.save(<-nodeStaker, to: FlowIDTableStaking.NodeStakerStoragePath) + acct.save(<-nodeStaker, to: FlowIDTableStaking.NodeStakerStoragePath) - let nodeStakerCap = acct.capabilities.storage.issue<&{FlowIDTableStaking.NodeStakerPublic}>(FlowIDTableStaking.NodeStakerStoragePath) - acct.capabilities.publish(nodeStakerCap, at: FlowIDTableStaking.NodeStakerPublicPath) + acct.link<&{FlowIDTableStaking.NodeStakerPublic}>( + FlowIDTableStaking.NodeStakerPublicPath, + target: FlowIDTableStaking.NodeStakerStoragePath + ) } - let nodeRef = acct.storage.borrow<&FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath) + let nodeRef = acct.borrow<&FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath) ?? panic("Could not borrow node reference from storage path") let nodeInfo = FlowIDTableStaking.NodeInfo(nodeID: nodeRef.id) @@ -53,23 +55,27 @@ transaction( // If the node is a collector or consensus node, create a secondary account for their specific objects if nodeInfo.role == 1 as UInt8 { - let machineAcct = Account(payer: acct) + let machineAcct = AuthAccount(payer: acct) for key in publicKeys { machineAcct.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight) } let qcVoter <- FlowEpoch.getClusterQCVoter(nodeStaker: nodeRef) - machineAcct.storage.save(<-qcVoter, to: FlowClusterQC.VoterStoragePath) + + machineAcct.save(<-qcVoter, to: FlowClusterQC.VoterStoragePath) } else if nodeInfo.role == 2 as UInt8 { - let machineAcct = Account(payer: acct) + let machineAcct = AuthAccount(payer: acct) for key in publicKeys { machineAcct.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight) } let dkgParticipant <- FlowEpoch.getDKGParticipant(nodeStaker: nodeRef) - machineAcct.storage.save(<-dkgParticipant, to: FlowDKG.ParticipantStoragePath) + + machineAcct.save(<-dkgParticipant, to: FlowDKG.ParticipantStoragePath) + } + } } \ No newline at end of file diff --git a/transactions/epoch/node/register_qc_voter.cdc b/transactions/epoch/node/register_qc_voter.cdc index 44e406a42..6477182d8 100644 --- a/transactions/epoch/node/register_qc_voter.cdc +++ b/transactions/epoch/node/register_qc_voter.cdc @@ -1,17 +1,17 @@ -import FlowEpoch from "FlowEpoch" +import FlowEpoch from 0xEPOCHADDRESS import FlowIDTableStaking from "FlowIDTableStaking" -import FlowClusterQC from "FlowClusterQC" +import FlowClusterQC from 0xQCADDRESS transaction() { - prepare(signer: auth(Storage) &Account) { + prepare(signer: AuthAccount) { - let nodeRef = signer.storage.borrow<&FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath) + let nodeRef = signer.borrow<&FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath) ?? panic("Could not borrow node reference from storage path") let qcVoter <- FlowEpoch.getClusterQCVoter(nodeStaker: nodeRef) - signer.storage.save(<-qcVoter, to: FlowClusterQC.VoterStoragePath) + signer.save(<-qcVoter, to: FlowClusterQC.VoterStoragePath) } } \ No newline at end of file diff --git a/transactions/epoch/scripts/get_create_clusters.cdc b/transactions/epoch/scripts/get_create_clusters.cdc index 94618fa75..2cf96b679 100644 --- a/transactions/epoch/scripts/get_create_clusters.cdc +++ b/transactions/epoch/scripts/get_create_clusters.cdc @@ -1,6 +1,8 @@ -import FlowEpoch from "FlowEpoch" -import FlowClusterQC from "FlowClusterQC" +import FlowEpoch from 0xEPOCHADDRESS +import FlowClusterQC from 0xQCADDRESS access(all) fun main(array: [String]): [FlowClusterQC.Cluster] { + return FlowEpoch.createCollectorClusters(nodeIDs: array) -} + +} \ No newline at end of file diff --git a/transactions/epoch/scripts/get_randomize.cdc b/transactions/epoch/scripts/get_randomize.cdc index dd92d5c5c..3fe485e95 100644 --- a/transactions/epoch/scripts/get_randomize.cdc +++ b/transactions/epoch/scripts/get_randomize.cdc @@ -1,5 +1,7 @@ -import FlowEpoch from "FlowEpoch" +import FlowEpoch from 0xEPOCHADDRESS access(all) fun main(array: [String]): [String] { + return FlowEpoch.randomize(array) -} + +} \ No newline at end of file diff --git a/transactions/flowToken/burn_tokens.cdc b/transactions/flowToken/burn_tokens.cdc index dc5ae2790..f2e74b8a7 100644 --- a/transactions/flowToken/burn_tokens.cdc +++ b/transactions/flowToken/burn_tokens.cdc @@ -4,8 +4,8 @@ // // The burning amount would be a parameter to the transaction -import "FungibleToken" -import "FlowToken" +import FungibleToken from "FungibleToken" +import FlowToken from "FlowToken" transaction(amount: UFix64) { @@ -14,14 +14,14 @@ transaction(amount: UFix64) { let admin: &FlowToken.Administrator - prepare(signer: auth(BorrowValue) &Account) { + prepare(signer: AuthAccount) { // Withdraw tokens from the admin vault in storage - self.vault <- signer.storage.borrow(from: /storage/flowTokenVault)! + self.vault <- signer.borrow(from: /storage/flowTokenVault)! .withdraw(amount: amount) // Create a reference to the admin admin resource in storage - self.admin = signer.storage.borrow<&FlowToken.Administrator>(from: /storage/flowTokenAdmin) + self.admin = signer.borrow<&FlowToken.Administrator>(from: /storage/flowTokenAdmin) ?? panic("Could not borrow a reference to the admin resource") } diff --git a/transactions/flowToken/create_forwarder.cdc b/transactions/flowToken/create_forwarder.cdc index c08b89cae..8ff0d2f90 100644 --- a/transactions/flowToken/create_forwarder.cdc +++ b/transactions/flowToken/create_forwarder.cdc @@ -23,28 +23,25 @@ Steps to set up accounts with token forwarder: getting the Receiver from the account that is the recipient. */ -import "FungibleToken" -import "FlowToken" -import "TokenForwarding" +import FungibleToken from "FungibleToken" +import FlowToken from "FlowToken" +import TokenForwarding from 0xFORWARDINGADDRESS transaction(receiver: Address) { - prepare(acct: auth(BorrowValue, Capabilities) &Account) { + prepare(acct: AuthAccount) { let recipient = getAccount(receiver) - .capabilities.get<&{FungibleToken.Receiver}>(/public/flowTokenReceiver) + .getCapability<&{FungibleToken.Receiver}>(/public/flowTokenReceiver) let vault <- TokenForwarding.createNewForwarder(recipient: recipient) - acct.storage.save(<-vault, to: /storage/flowTokenForwarder) + acct.save(<-vault, to: /storage/flowTokenForwarder) - let cap = acct.capabilities.get<&{FungibleToken.Receiver}>(/public/flowTokenReceiver) { - if cap.check() { - acct.capabilities.unpublish(/public/flowTokenReceiver) + if acct.getCapability(/public/flowTokenReceiver).check<&{FungibleToken.Receiver}>() { + acct.unlink(/public/flowTokenReceiver) } - - let forwarderCap = acct.capabilities.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenForwarder) - acct.capabilities.publish<&{FungibleToken.Receiver}>( - forwarderCap, - at: /public/flowTokenReceiver + acct.link<&{FungibleToken.Receiver}>( + /public/flowTokenReceiver, + target: /storage/flowTokenForwarder ) } } diff --git a/transactions/flowToken/mint_tokens.cdc b/transactions/flowToken/mint_tokens.cdc index 602398d8b..c7a4b9dfe 100644 --- a/transactions/flowToken/mint_tokens.cdc +++ b/transactions/flowToken/mint_tokens.cdc @@ -1,5 +1,5 @@ -import "FungibleToken" -import "FlowToken" +import FungibleToken from "FungibleToken" +import FlowToken from "FlowToken" /// This transaction mints tokens using the account that stores the Flow Token Admin resource /// This is the service account @@ -9,14 +9,15 @@ transaction(recipient: Address, amount: UFix64) { let tokenAdmin: &FlowToken.Administrator let tokenReceiver: &{FungibleToken.Receiver} - prepare(signer: auth(BorrowValue) &Account) { + prepare(signer: AuthAccount) { - self.tokenAdmin = signer.storage + self.tokenAdmin = signer .borrow<&FlowToken.Administrator>(from: /storage/flowTokenAdmin) ?? panic("Signer is not the token admin") self.tokenReceiver = getAccount(recipient) - .capabilities.borrow<&{FungibleToken.Receiver}>(/public/flowTokenReceiver) + .getCapability(/public/flowTokenReceiver) + .borrow<&{FungibleToken.Receiver}>() ?? panic("Unable to borrow receiver reference") } diff --git a/transactions/flowToken/scripts/get_balance.cdc b/transactions/flowToken/scripts/get_balance.cdc index d36cb99a9..cd5c1704d 100644 --- a/transactions/flowToken/scripts/get_balance.cdc +++ b/transactions/flowToken/scripts/get_balance.cdc @@ -1,12 +1,13 @@ // This script reads the balance field of an account's FlowToken Balance -import "FungibleToken" -import "FlowToken" +import FungibleToken from "FungibleToken" +import FlowToken from "FlowToken" access(all) fun main(account: Address): UFix64 { let vaultRef = getAccount(account) - .capabilities.borrow<&{FungibleToken.Balance}>(/public/flowTokenBalance) + .getCapability(/public/flowTokenBalance) + .borrow<&FlowToken.Vault{FungibleToken.Balance}>() ?? panic("Could not borrow Balance reference to the Vault") return vaultRef.balance diff --git a/transactions/flowToken/scripts/get_supply.cdc b/transactions/flowToken/scripts/get_supply.cdc index b782fd2d2..3f94b91ac 100644 --- a/transactions/flowToken/scripts/get_supply.cdc +++ b/transactions/flowToken/scripts/get_supply.cdc @@ -1,7 +1,7 @@ // This script reads the total supply field // of the FlowToken smart contract -import "FlowToken" +import FlowToken from "FlowToken" access(all) fun main(): UFix64 { diff --git a/transactions/flowToken/setup_account.cdc b/transactions/flowToken/setup_account.cdc index c575fa3c0..ffd8f48e2 100644 --- a/transactions/flowToken/setup_account.cdc +++ b/transactions/flowToken/setup_account.cdc @@ -3,37 +3,29 @@ // to add a Vault resource to their account // so that they can use the flowToken -import "FungibleToken" -import "FlowToken" +import FungibleToken from "FungibleToken" +import FlowToken from "FlowToken" transaction { - prepare(signer: auth(Storage) &Account) { + prepare(signer: AuthAccount) { - if signer.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) == nil { + if signer.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) == nil { // Create a new flowToken Vault and put it in storage - signer.storage.save(<-FlowToken.createEmptyVault(), to: /storage/flowTokenVault) + signer.save(<-FlowToken.createEmptyVault(), to: /storage/flowTokenVault) // Create a public capability to the Vault that only exposes // the deposit function through the Receiver interface - let vaultCap = signer.capabilities.storage.issue<&FlowToken.Vault>( - /storage/flowTokenVault - ) - - signer.capabilities.publish( - vaultCap, - at: /public/flowTokenReceiver + signer.link<&FlowToken.Vault{FungibleToken.Receiver}>( + /public/flowTokenReceiver, + target: /storage/flowTokenVault ) // Create a public capability to the Vault that only exposes // the balance field through the Balance interface - let balanceCap = signer.capabilities.storage.issue<&FlowToken.Vault>( - /storage/flowTokenVault - ) - - signer.capabilities.publish( - balanceCap, - at: /public/flowTokenBalance + signer.link<&FlowToken.Vault{FungibleToken.Balance}>( + /public/flowTokenBalance, + target: /storage/flowTokenVault ) } } diff --git a/transactions/flowToken/transfer_tokens.cdc b/transactions/flowToken/transfer_tokens.cdc index 23c3d2034..0d236df2e 100644 --- a/transactions/flowToken/transfer_tokens.cdc +++ b/transactions/flowToken/transfer_tokens.cdc @@ -5,18 +5,18 @@ // The withdraw amount and the account from getAccount // would be the parameters to the transaction -import "FungibleToken" -import "FlowToken" +import FungibleToken from "FungibleToken" +import FlowToken from "FlowToken" transaction(amount: UFix64, to: Address) { // The Vault resource that holds the tokens that are being transferred - let sentVault: @{FungibleToken.Vault} + let sentVault: @FungibleToken.Vault - prepare(signer: auth(BorrowValue) &Account) { + prepare(signer: AuthAccount) { // Get a reference to the signer's stored vault - let vaultRef = signer.storage.borrow(from: /storage/flowTokenVault) + let vaultRef = signer.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to the owner's Vault!") // Withdraw tokens from the signer's stored vault @@ -27,7 +27,8 @@ transaction(amount: UFix64, to: Address) { // Get a reference to the recipient's Receiver let receiverRef = getAccount(to) - .capabilities.borrow<&{FungibleToken.Receiver}>(/public/flowTokenReceiver) + .getCapability(/public/flowTokenReceiver) + .borrow<&{FungibleToken.Receiver}>() ?? panic("Could not borrow receiver reference to the recipient's Vault") // Deposit the withdrawn tokens in the recipient's receiver diff --git a/transactions/idTableStaking/delegation/del_request_unstaking.cdc b/transactions/idTableStaking/delegation/del_request_unstaking.cdc index 0c8b329b8..e38f30608 100644 --- a/transactions/idTableStaking/delegation/del_request_unstaking.cdc +++ b/transactions/idTableStaking/delegation/del_request_unstaking.cdc @@ -6,9 +6,9 @@ transaction(amount: UFix64) { // Local variable for a reference to the Delegator object let delegatorRef: auth(FlowIDTableStaking.DelegatorOwner) &FlowIDTableStaking.NodeDelegator - prepare(acct: auth(BorrowValue) &Account) { + prepare(acct: AuthAccount) { // borrow a reference to the delegator object - self.delegatorRef = acct.storage.borrow(from: FlowIDTableStaking.DelegatorStoragePath) + self.delegatorRef = acct.borrow(from: FlowIDTableStaking.DelegatorStoragePath) ?? panic("Could not borrow reference to delegator") } diff --git a/transactions/idTableStaking/delegation/del_stake_new_tokens.cdc b/transactions/idTableStaking/delegation/del_stake_new_tokens.cdc index 53a3615a7..c06beb96d 100644 --- a/transactions/idTableStaking/delegation/del_stake_new_tokens.cdc +++ b/transactions/idTableStaking/delegation/del_stake_new_tokens.cdc @@ -8,14 +8,14 @@ transaction(amount: UFix64) { // Local variable for a reference to the delegator object let delegatorRef: auth(FlowIDTableStaking.DelegatorOwner) &FlowIDTableStaking.NodeDelegator - let flowTokenRef: auth(FungibleToken.Withdraw) &FlowToken.Vault + let flowTokenRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault - prepare(acct: auth(BorrowValue) &Account) { + prepare(acct: AuthAccount) { // borrow a reference to the delegator object - self.delegatorRef = acct.storage.borrow(from: FlowIDTableStaking.DelegatorStoragePath) + self.delegatorRef = acct.borrow(from: FlowIDTableStaking.DelegatorStoragePath) ?? panic("Could not borrow reference to delegator") - self.flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) + self.flowTokenRef = acct.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") } diff --git a/transactions/idTableStaking/delegation/del_stake_rewarded.cdc b/transactions/idTableStaking/delegation/del_stake_rewarded.cdc index 908790c08..bd86916b4 100644 --- a/transactions/idTableStaking/delegation/del_stake_rewarded.cdc +++ b/transactions/idTableStaking/delegation/del_stake_rewarded.cdc @@ -6,9 +6,9 @@ transaction(amount: UFix64) { // Local variable for a reference to the Delegator object let delegatorRef: auth(FlowIDTableStaking.DelegatorOwner) &FlowIDTableStaking.NodeDelegator - prepare(acct: auth(BorrowValue) &Account) { + prepare(acct: AuthAccount) { // borrow a reference to the delegator object - self.delegatorRef = acct.storage.borrow(from: FlowIDTableStaking.DelegatorStoragePath) + self.delegatorRef = acct.borrow(from: FlowIDTableStaking.DelegatorStoragePath) ?? panic("Could not borrow reference to delegator") } diff --git a/transactions/idTableStaking/delegation/del_stake_unstaked.cdc b/transactions/idTableStaking/delegation/del_stake_unstaked.cdc index f43d176e0..e5a808407 100644 --- a/transactions/idTableStaking/delegation/del_stake_unstaked.cdc +++ b/transactions/idTableStaking/delegation/del_stake_unstaked.cdc @@ -6,9 +6,9 @@ transaction(amount: UFix64) { // Local variable for a reference to the Delegator object let delegatorRef: auth(FlowIDTableStaking.DelegatorOwner) &FlowIDTableStaking.NodeDelegator - prepare(acct: auth(BorrowValue) &Account) { + prepare(acct: AuthAccount) { // borrow a reference to the delegator object - self.delegatorRef = acct.storage.borrow(from: FlowIDTableStaking.DelegatorStoragePath) + self.delegatorRef = acct.borrow(from: FlowIDTableStaking.DelegatorStoragePath) ?? panic("Could not borrow reference to delegator") } diff --git a/transactions/idTableStaking/delegation/del_withdraw_reward_tokens.cdc b/transactions/idTableStaking/delegation/del_withdraw_reward_tokens.cdc index 3cb11472f..9040c47d9 100644 --- a/transactions/idTableStaking/delegation/del_withdraw_reward_tokens.cdc +++ b/transactions/idTableStaking/delegation/del_withdraw_reward_tokens.cdc @@ -9,12 +9,12 @@ transaction(amount: UFix64) { let flowTokenRef: &FlowToken.Vault - prepare(acct: auth(BorrowValue) &Account) { + prepare(acct: AuthAccount) { // borrow a reference to the delegator object - self.delegatorRef = acct.storage.borrow(from: FlowIDTableStaking.DelegatorStoragePath) + self.delegatorRef = acct.borrow(from: FlowIDTableStaking.DelegatorStoragePath) ?? panic("Could not borrow reference to staking admin") - self.flowTokenRef = acct.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) + self.flowTokenRef = acct.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") } diff --git a/transactions/idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc b/transactions/idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc index 186b5b02f..262941b95 100644 --- a/transactions/idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc +++ b/transactions/idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc @@ -9,12 +9,12 @@ transaction(amount: UFix64) { let flowTokenRef: &FlowToken.Vault - prepare(acct: auth(BorrowValue) &Account) { + prepare(acct: AuthAccount) { // borrow a reference to the delegator object - self.delegatorRef = acct.storage.borrow(from: FlowIDTableStaking.DelegatorStoragePath) + self.delegatorRef = acct.borrow(from: FlowIDTableStaking.DelegatorStoragePath) ?? panic("Could not borrow reference to staking admin") - self.flowTokenRef = acct.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) + self.flowTokenRef = acct.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") } diff --git a/transactions/idTableStaking/delegation/delegator_add_capability.cdc b/transactions/idTableStaking/delegation/delegator_add_capability.cdc new file mode 100644 index 000000000..aea6ab41f --- /dev/null +++ b/transactions/idTableStaking/delegation/delegator_add_capability.cdc @@ -0,0 +1,22 @@ +import FlowIDTableStaking from "FlowIDTableStaking" +import FlowToken from "FlowToken" + +// This transaction adds a public delegator capability to an account with +// an existing NodeDelegator object + +transaction { + + prepare(acct: AuthAccount) { + + if acct.borrow(from: FlowIDTableStaking.DelegatorStoragePath) == nil || + acct.getCapability<&{FlowIDTableStaking.NodeDelegatorPublic}>(/public/flowStakingDelegator).check() + { + return + } + + acct.link<&{FlowIDTableStaking.NodeDelegatorPublic}>( + /public/flowStakingDelegator, + target: FlowIDTableStaking.DelegatorStoragePath + ) + } +} \ No newline at end of file diff --git a/transactions/idTableStaking/delegation/register_delegator.cdc b/transactions/idTableStaking/delegation/register_delegator.cdc index 2bf96b299..5aacdf5e3 100644 --- a/transactions/idTableStaking/delegation/register_delegator.cdc +++ b/transactions/idTableStaking/delegation/register_delegator.cdc @@ -4,18 +4,18 @@ import FungibleToken from "FungibleToken" transaction(nodeID: String, amount: UFix64) { - prepare(acct: auth(Storage, Capabilities) &Account) { + prepare(acct: AuthAccount) { - let flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) + let flowTokenRef = acct.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") // Create a new delegator object for the node let newDelegator <- FlowIDTableStaking.registerNewDelegator(nodeID: nodeID, tokensCommitted: <-flowTokenRef.withdraw(amount: amount)) // Store the delegator object - acct.storage.save(<-newDelegator, to: FlowIDTableStaking.DelegatorStoragePath) + acct.save(<-newDelegator, to: FlowIDTableStaking.DelegatorStoragePath) - let delegatorCap = acct.capabilities.storage.issue<&{FlowIDTableStaking.NodeDelegatorPublic}>(FlowIDTableStaking.DelegatorStoragePath) - acct.capabilities.publish(delegatorCap, at: /public/flowStakingDelegator) + acct.link<&{FlowIDTableStaking.NodeDelegatorPublic}>(/public/flowStakingDelegator, target: FlowIDTableStaking.DelegatorStoragePath) } + } \ No newline at end of file diff --git a/transactions/idTableStaking/node/node_add_capability.cdc b/transactions/idTableStaking/node/node_add_capability.cdc new file mode 100644 index 000000000..6db37dcb1 --- /dev/null +++ b/transactions/idTableStaking/node/node_add_capability.cdc @@ -0,0 +1,22 @@ +import FlowIDTableStaking from "FlowIDTableStaking" +import FlowToken from "FlowToken" + +// This transaction adds a public node capability to an account with +// an existing NodeStaker object + +transaction { + + prepare(acct: AuthAccount) { + + if acct.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) == nil || + acct.getCapability<&{FlowIDTableStaking.NodeStakerPublic}>(FlowIDTableStaking.NodeStakerPublicPath).check() + { + return + } + + acct.link<&{FlowIDTableStaking.NodeStakerPublic}>( + FlowIDTableStaking.NodeStakerPublicPath, + target: FlowIDTableStaking.NodeStakerStoragePath + ) + } +} \ No newline at end of file diff --git a/transactions/idTableStaking/node/register_many_nodes.cdc b/transactions/idTableStaking/node/register_many_nodes.cdc index 8a5b12ce3..2b1289217 100644 --- a/transactions/idTableStaking/node/register_many_nodes.cdc +++ b/transactions/idTableStaking/node/register_many_nodes.cdc @@ -12,13 +12,13 @@ transaction( paths: [StoragePath] ) { - prepare(acct: auth(Storage) &Account) { + prepare(acct: AuthAccount) { var i = 0 for path in paths { - let flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) + let flowTokenRef = acct.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") let tokensCommitted <- flowTokenRef.withdraw(amount: amounts[i]) @@ -33,7 +33,7 @@ transaction( ) // Store the node object - acct.storage.save(<-nodeStaker, to: path) + acct.save(<-nodeStaker, to: path) i = i + 1 } diff --git a/transactions/idTableStaking/node/register_node.cdc b/transactions/idTableStaking/node/register_node.cdc index 7b1ff0909..29d7ef544 100644 --- a/transactions/idTableStaking/node/register_node.cdc +++ b/transactions/idTableStaking/node/register_node.cdc @@ -14,11 +14,11 @@ transaction( amount: UFix64 ) { - let flowTokenRef: auth(FungibleToken.Withdraw) &FlowToken.Vault + let flowTokenRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault - prepare(acct: auth(Storage, Capabilities) &Account) { + prepare(acct: AuthAccount) { - self.flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) + self.flowTokenRef = acct.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") let nodeStaker <- FlowIDTableStaking.addNodeRecord( @@ -30,17 +30,13 @@ transaction( tokensCommitted: <-self.flowTokenRef.withdraw(amount: amount) ) - if acct.storage.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) == nil { + if acct.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) == nil { - acct.storage.save(<-nodeStaker, to: FlowIDTableStaking.NodeStakerStoragePath) + acct.save(<-nodeStaker, to: FlowIDTableStaking.NodeStakerStoragePath) - let nodeStakerCap = acct.capabilities.storage.issue<&{FlowIDTableStaking.NodeStakerPublic}>( - FlowIDTableStaking.NodeStakerStoragePath - ) - - acct.capabilities.publish( - nodeStakerCap, - at: FlowIDTableStaking.NodeStakerPublicPath + acct.link<&{FlowIDTableStaking.NodeStakerPublic}>( + FlowIDTableStaking.NodeStakerPublicPath, + target: FlowIDTableStaking.NodeStakerStoragePath ) } else { destroy nodeStaker diff --git a/transactions/idTableStaking/node/request_unstake.cdc b/transactions/idTableStaking/node/request_unstake.cdc index efb7e7e26..38e9a2a36 100644 --- a/transactions/idTableStaking/node/request_unstake.cdc +++ b/transactions/idTableStaking/node/request_unstake.cdc @@ -6,13 +6,16 @@ transaction(amount: UFix64) { // Local variable for a reference to the node object let stakerRef: auth(FlowIDTableStaking.NodeOperator) &FlowIDTableStaking.NodeStaker - prepare(acct: auth(BorrowValue) &Account) { + prepare(acct: AuthAccount) { // borrow a reference to the node object - self.stakerRef = acct.storage.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) + self.stakerRef = acct.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) ?? panic("Could not borrow reference to staking admin") + } execute { + self.stakerRef.requestUnstaking(amount: amount) + } -} +} \ No newline at end of file diff --git a/transactions/idTableStaking/node/stake_new_tokens.cdc b/transactions/idTableStaking/node/stake_new_tokens.cdc index 26c85abd7..6b345d985 100644 --- a/transactions/idTableStaking/node/stake_new_tokens.cdc +++ b/transactions/idTableStaking/node/stake_new_tokens.cdc @@ -7,18 +7,21 @@ transaction(amount: UFix64) { // Local variable for a reference to the node object let stakerRef: auth(FlowIDTableStaking.NodeOperator) &FlowIDTableStaking.NodeStaker - let flowTokenRef: auth(FungibleToken.Withdraw) &FlowToken.Vault + let flowTokenRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault - prepare(acct: auth(BorrowValue) &Account) { + prepare(acct: AuthAccount) { // borrow a reference to the node object - self.stakerRef = acct.storage.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) + self.stakerRef = acct.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) ?? panic("Could not borrow reference to staking admin") - self.flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) + self.flowTokenRef = acct.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") + } execute { + self.stakerRef.stakeNewTokens(<-self.flowTokenRef.withdraw(amount: amount)) + } -} +} \ No newline at end of file diff --git a/transactions/idTableStaking/node/stake_rewarded_tokens.cdc b/transactions/idTableStaking/node/stake_rewarded_tokens.cdc index d9dacb5ea..51bb94189 100644 --- a/transactions/idTableStaking/node/stake_rewarded_tokens.cdc +++ b/transactions/idTableStaking/node/stake_rewarded_tokens.cdc @@ -6,13 +6,16 @@ transaction(amount: UFix64) { // Local variable for a reference to the node object let stakerRef: auth(FlowIDTableStaking.NodeOperator) &FlowIDTableStaking.NodeStaker - prepare(acct: auth(BorrowValue) &Account) { + prepare(acct: AuthAccount) { // borrow a reference to the node object - self.stakerRef = acct.storage.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) + self.stakerRef = acct.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) ?? panic("Could not borrow reference to staking admin") + } execute { + self.stakerRef.stakeRewardedTokens(amount: amount) + } -} +} \ No newline at end of file diff --git a/transactions/idTableStaking/node/stake_unstaked_tokens.cdc b/transactions/idTableStaking/node/stake_unstaked_tokens.cdc index 9bb5e3dfb..ed2c67ecf 100644 --- a/transactions/idTableStaking/node/stake_unstaked_tokens.cdc +++ b/transactions/idTableStaking/node/stake_unstaked_tokens.cdc @@ -6,13 +6,16 @@ transaction(amount: UFix64) { // Local variable for a reference to the node object let stakerRef: auth(FlowIDTableStaking.NodeOperator) &FlowIDTableStaking.NodeStaker - prepare(acct: auth(BorrowValue) &Account) { + prepare(acct: AuthAccount) { // borrow a reference to the node object - self.stakerRef = acct.storage.borrow(from: /storage/flowStaker) + self.stakerRef = acct.borrow(from: /storage/flowStaker) ?? panic("Could not borrow reference to staking admin") + } execute { + self.stakerRef.stakeUnstakedTokens(amount: amount) + } -} +} \ No newline at end of file diff --git a/transactions/idTableStaking/node/unstake_all.cdc b/transactions/idTableStaking/node/unstake_all.cdc index ed2fa7371..f9162cc2a 100644 --- a/transactions/idTableStaking/node/unstake_all.cdc +++ b/transactions/idTableStaking/node/unstake_all.cdc @@ -6,13 +6,16 @@ transaction { // Local variable for a reference to the node object let stakerRef: auth(FlowIDTableStaking.NodeOperator) &FlowIDTableStaking.NodeStaker - prepare(acct: auth(BorrowValue) &Account) { + prepare(acct: AuthAccount) { // borrow a reference to the node object - self.stakerRef = acct.storage.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) + self.stakerRef = acct.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) ?? panic("Could not borrow reference to staking admin") + } execute { + self.stakerRef.unstakeAll() + } -} +} \ No newline at end of file diff --git a/transactions/idTableStaking/node/update_networking_address.cdc b/transactions/idTableStaking/node/update_networking_address.cdc index b45dec141..01b07bc5f 100644 --- a/transactions/idTableStaking/node/update_networking_address.cdc +++ b/transactions/idTableStaking/node/update_networking_address.cdc @@ -5,13 +5,15 @@ transaction(newAddress: String) { // Local variable for a reference to the node object let stakerRef: auth(FlowIDTableStaking.NodeOperator) &FlowIDTableStaking.NodeStaker - prepare(acct: auth(BorrowValue) &Account) { + prepare(acct: AuthAccount) { // borrow a reference to the node object - self.stakerRef = acct.storage.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) + self.stakerRef = acct.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) ?? panic("Could not borrow reference to staking admin") } execute { + self.stakerRef.updateNetworkingAddress(newAddress) + } -} +} \ No newline at end of file diff --git a/transactions/idTableStaking/node/withdraw_reward_tokens.cdc b/transactions/idTableStaking/node/withdraw_reward_tokens.cdc index 5b3ba44ce..f09b7c3ee 100644 --- a/transactions/idTableStaking/node/withdraw_reward_tokens.cdc +++ b/transactions/idTableStaking/node/withdraw_reward_tokens.cdc @@ -9,16 +9,19 @@ transaction(amount: UFix64) { let flowTokenRef: &FlowToken.Vault - prepare(acct: auth(BorrowValue) &Account) { + prepare(acct: AuthAccount) { // borrow a reference to the node object - self.stakerRef = acct.storage.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) + self.stakerRef = acct.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) ?? panic("Could not borrow reference to staking admin") - self.flowTokenRef = acct.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) + self.flowTokenRef = acct.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") + } execute { + self.flowTokenRef.deposit(from: <-self.stakerRef.withdrawRewardedTokens(amount: amount)) + } -} +} \ No newline at end of file diff --git a/transactions/idTableStaking/node/withdraw_unstaked_tokens.cdc b/transactions/idTableStaking/node/withdraw_unstaked_tokens.cdc index 6b9f819bd..adf0c5a97 100644 --- a/transactions/idTableStaking/node/withdraw_unstaked_tokens.cdc +++ b/transactions/idTableStaking/node/withdraw_unstaked_tokens.cdc @@ -9,16 +9,19 @@ transaction(amount: UFix64) { let flowTokenRef: &FlowToken.Vault - prepare(acct: auth(BorrowValue) &Account) { + prepare(acct: AuthAccount) { // borrow a reference to the node object - self.stakerRef = acct.storage.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) + self.stakerRef = acct.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) ?? panic("Could not borrow reference to staking admin") - self.flowTokenRef = acct.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) + self.flowTokenRef = acct.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") + } execute { + self.flowTokenRef.deposit(from: <-self.stakerRef.withdrawUnstakedTokens(amount: amount)) + } -} +} \ No newline at end of file diff --git a/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc b/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc index e283dc75c..89d02d68c 100644 --- a/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc +++ b/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc @@ -1,7 +1,7 @@ import Crypto import FlowToken from "FlowToken" import FungibleToken from "FungibleToken" -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS /// Transaction that the main token admin would sign /// to create a shared account and an unlocked @@ -13,11 +13,11 @@ transaction( fullUserPublicKey: Crypto.KeyListEntry, // Weight: 1000 ) { - prepare(admin: auth(BorrowValue) &Account) { + prepare(admin: AuthAccount) { // Create the new accounts and add their keys - let sharedAccount = Account(payer: admin) - let userAccount = Account(payer: admin) + let sharedAccount = AuthAccount(payer: admin) + let userAccount = AuthAccount(payer: admin) sharedAccount.keys.add(publicKey: partialAdminPublicKey.publicKey, hashAlgorithm: partialAdminPublicKey.hashAlgorithm, weight: partialAdminPublicKey.weight) sharedAccount.keys.add(publicKey: partialUserPublicKey.publicKey, hashAlgorithm: partialUserPublicKey.hashAlgorithm, weight: partialUserPublicKey.weight) @@ -25,64 +25,70 @@ transaction( userAccount.keys.add(publicKey: fullUserPublicKey.publicKey, hashAlgorithm: fullUserPublicKey.hashAlgorithm, weight: fullUserPublicKey.weight) // Create a private link to the stored vault - let vaultCapability = sharedAccount.capabilities.storage.issue - - (/storage/flowTokenVault) + let vaultCapability = sharedAccount + .link<&FlowToken.Vault>( + /private/flowTokenVault, + target: /storage/flowTokenVault + ) + ?? panic("Could not link Flow Token Vault capability") // create a locked token manager and stored it in the shared account let lockedTokenManager <- LockedTokens.createLockedTokenManager(vault: vaultCapability) - sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) + sharedAccount.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) let tokenManagerCapability = sharedAccount - .capabilities.storage.issue( - LockedTokens.LockedTokenManagerStoragePath) + .link<&LockedTokens.LockedTokenManager>( + LockedTokens.LockedTokenManagerPrivatePath, + target: LockedTokens.LockedTokenManagerStoragePath + ) ?? panic("Could not link token manager capability") let tokenHolder <- LockedTokens.createTokenHolder( lockedAddress: sharedAccount.address, tokenManager: tokenManagerCapability ) - userAccount.storage.save( + userAccount.save( <-tokenHolder, - to: LockedTokens.TokenHolderStoragePath + to: LockedTokens.TokenHolderStoragePath, ) - let infoCap = userAccount.capabilities.storage.issue<&LockedTokens.TokenHolder>( - LockedTokens.TokenHolderStoragePath + userAccount.link<&LockedTokens.TokenHolder{LockedTokens.LockedAccountInfo}>( + LockedTokens.LockedAccountInfoPublicPath, + target: LockedTokens.TokenHolderStoragePath ) - userAccount.capabilities.publish(infoCap, at: LockedTokens.LockedAccountInfoPublicPath) - let tokenAdminCollection = admin.storage - .borrow( + let tokenAdminCapability = sharedAccount + .link<&LockedTokens.LockedTokenManager>( + LockedTokens.LockedTokenAdminPrivatePath, + target: LockedTokens.LockedTokenManagerStoragePath + ) + ?? panic("Could not link token admin to token manager") + + let tokenAdminCollection = admin + .borrow<&LockedTokens.TokenAdminCollection>( from: LockedTokens.LockedTokenAdminCollectionStoragePath ) ?? panic("Could not borrow reference to admin collection") - let tokenManagerUnlockCapability = sharedAccount - .capabilities.storage.issue( - LockedTokens.LockedTokenManagerStoragePath) - tokenAdminCollection.addAccount( sharedAccountAddress: sharedAccount.address, unlockedAccountAddress: userAccount.address, - tokenAdmin: tokenManagerUnlockCapability + tokenAdmin: tokenAdminCapability ) // Override the default FlowToken receiver - sharedAccount.capabilities.unpublish(/public/flowTokenReceiver) + sharedAccount.unlink(/public/flowTokenReceiver) // create new receiver that marks received tokens as unlocked - let lockedTokensManagerCap = sharedAccount.capabilities.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) - sharedAccount.capabilities.publish( - lockedTokensManagerCap, - at: /public/flowTokenReceiver + sharedAccount.link<&AnyResource{FungibleToken.Receiver}>( + /public/flowTokenReceiver, + target: LockedTokens.LockedTokenManagerStoragePath ) // put normal receiver in a separate unique path - let tokenReceiverCap = sharedAccount.capabilities.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) - sharedAccount.capabilities.publish( - tokenReceiverCap, - at: /public/lockedFlowTokenReceiver + sharedAccount.link<&AnyResource{FungibleToken.Receiver}>( + /public/lockedFlowTokenReceiver, + target: /storage/flowTokenVault ) } } diff --git a/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc b/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc index e7b409920..fa8f3f121 100644 --- a/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc @@ -1,7 +1,7 @@ import Crypto import FlowToken from "FlowToken" import FungibleToken from "FungibleToken" -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS /// Transaction that a custody provider would sign /// to create a shared account and an unlocked @@ -12,67 +12,63 @@ transaction( fullUserPublicKey: Crypto.KeyListEntry, // Weight: 1000 ) { - prepare(custodyProvider: auth(BorrowValue) &Account) { + prepare(custodyProvider: AuthAccount) { - let sharedAccount = Account(payer: custodyProvider) - let userAccount = Account(payer: custodyProvider) + let sharedAccount = AuthAccount(payer: custodyProvider) + let userAccount = AuthAccount(payer: custodyProvider) sharedAccount.keys.add(publicKey: fullAdminPublicKey.publicKey, hashAlgorithm: fullAdminPublicKey.hashAlgorithm, weight: fullAdminPublicKey.weight) + + userAccount.keys.add(publicKey: fullUserPublicKey.publicKey, hashAlgorithm: fullUserPublicKey.hashAlgorithm, weight: fullUserPublicKey.weight) - userAccount.keys.add(publicKey: fullUserPublicKey.publicKey, hashAlgorithm: fullUserPublicKey.hashAlgorithm, weight: fullUserPublicKey.weight) - - let vaultCapability = sharedAccount.capabilities.storage - .issue(/storage/flowTokenVault) + let vaultCapability = sharedAccount + .link<&FlowToken.Vault>(/private/flowTokenVault, target: /storage/flowTokenVault) + ?? panic("Could not link Flow Token Vault capability") let lockedTokenManager <- LockedTokens.createLockedTokenManager(vault: vaultCapability) - sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) + sharedAccount.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) - let tokenManagerCapability = sharedAccount.capabilities.storage - .issue( - LockedTokens.LockedTokenManagerStoragePath - ) + let tokenManagerCapability = sharedAccount + .link<&LockedTokens.LockedTokenManager>( + LockedTokens.LockedTokenManagerPrivatePath, + target: LockedTokens.LockedTokenManagerStoragePath + ) ?? panic("Could not link token manager capability") let tokenHolder <- LockedTokens.createTokenHolder(lockedAddress: sharedAccount.address, tokenManager: tokenManagerCapability) - userAccount.storage.save( - <-tokenHolder, - to: LockedTokens.TokenHolderStoragePath + userAccount.save( + <-tokenHolder, + to: LockedTokens.TokenHolderStoragePath, ) - let tokenHolderCap = userAccount.capabilities.storage.issue<&LockedTokens.TokenHolder>(LockedTokens.TokenHolderStoragePath) - userAccount.capabilities.publish(tokenHolderCap, at: LockedTokens.LockedAccountInfoPublicPath) - - let tokenAdminCapability = sharedAccount.capabilities.storage - .issue( - LockedTokens.LockedTokenManagerStoragePath - ) + userAccount.link<&LockedTokens.TokenHolder{LockedTokens.LockedAccountInfo}>(LockedTokens.LockedAccountInfoPublicPath, target: LockedTokens.TokenHolderStoragePath) - let lockedAccountCreator = custodyProvider.storage - .borrow(from: LockedTokens.LockedAccountCreatorStoragePath) - ?? panic("Could not borrow locked account creator") + let tokenAdminCapability = sharedAccount + .link<&LockedTokens.LockedTokenManager>( + LockedTokens.LockedTokenAdminPrivatePath, + target: LockedTokens.LockedTokenManagerStoragePath) + ?? panic("Could not link token custodyProvider to token manager") - lockedAccountCreator.addAccount( - sharedAccountAddress: sharedAccount.address, - unlockedAccountAddress: userAccount.address, - tokenAdmin: tokenAdminCapability - ) + let lockedAccountCreator = custodyProvider + .borrow<&LockedTokens.LockedAccountCreator>(from: LockedTokens.LockedAccountCreatorStoragePath) + ?? panic("Could not borrow reference to LockedAccountCreator") - // Override the default FlowToken receiver. - sharedAccount.capabilities.unpublish(/public/flowTokenReceiver) + lockedAccountCreator.addAccount(sharedAccountAddress: sharedAccount.address, unlockedAccountAddress: userAccount.address, tokenAdmin: tokenAdminCapability) - // create new receiver that marks received tokens as unlocked. - let lockedTokensManagerCap = sharedAccount.capabilities.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) - sharedAccount.capabilities.publish( - lockedTokensManagerCap, - at: /public/flowTokenReceiver + // Override the default FlowToken receiver + sharedAccount.unlink(/public/flowTokenReceiver) + + // create new receiver that marks received tokens as unlocked + sharedAccount.link<&AnyResource{FungibleToken.Receiver}>( + /public/flowTokenReceiver, + target: LockedTokens.LockedTokenManagerStoragePath ) - // put normal receiver in a separate unique path. - let tokenReceiverCap = sharedAccount.capabilities.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) - sharedAccount.capabilities.publish( - tokenReceiverCap, - at: /public/lockedFlowTokenReceiver + // pub normal receiver in a separate unique path + sharedAccount.link<&AnyResource{FungibleToken.Receiver}>( + /public/lockedFlowTokenReceiver, + target: /storage/flowTokenVault ) } } diff --git a/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc b/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc index b2cac52cf..b77306e6a 100644 --- a/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc @@ -1,7 +1,7 @@ import Crypto import FlowToken from "FlowToken" import FungibleToken from "FungibleToken" -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS /// Transaction that a custody provider would sign /// to create a shared account for a user who already @@ -13,67 +13,61 @@ transaction( fullAdminPublicKey: Crypto.KeyListEntry, // Weight: 1000 ) { - prepare(custodyProvider: auth(BorrowValue) &Account, userAccount: auth(Storage, Capabilities) &Account) { + prepare(custodyProvider: AuthAccount, userAccount: AuthAccount) { - let sharedAccount = Account(payer: custodyProvider) + let sharedAccount = AuthAccount(payer: custodyProvider) sharedAccount.keys.add(publicKey: fullAdminPublicKey.publicKey, hashAlgorithm: fullAdminPublicKey.hashAlgorithm, weight: fullAdminPublicKey.weight) - let vaultCapability = sharedAccount.capabilities.storage - .issue(/storage/flowTokenVault) + let vaultCapability = sharedAccount + .link<&FlowToken.Vault>(/private/flowTokenVault, target: /storage/flowTokenVault) + ?? panic("Could not link Flow Token Vault capability") let lockedTokenManager <- LockedTokens.createLockedTokenManager(vault: vaultCapability) - sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) + sharedAccount.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) - let tokenManagerCapability = sharedAccount.capabilities.storage - .issue( - LockedTokens.LockedTokenManagerStoragePath - ) + let tokenManagerCapability = sharedAccount + .link<&LockedTokens.LockedTokenManager>( + LockedTokens.LockedTokenManagerPrivatePath, + target: LockedTokens.LockedTokenManagerStoragePath + ) ?? panic("Could not link token manager capability") - let tokenHolder <- LockedTokens.createTokenHolder( - lockedAddress: sharedAccount.address, - tokenManager: tokenManagerCapability - ) + let tokenHolder <- LockedTokens.createTokenHolder(lockedAddress: sharedAccount.address, tokenManager: tokenManagerCapability) - userAccount.storage.save( - <-tokenHolder, - to: LockedTokens.TokenHolderStoragePath + userAccount.save( + <-tokenHolder, + to: LockedTokens.TokenHolderStoragePath, ) - let tokenHolderCap = userAccount.capabilities.storage.issue<&LockedTokens.TokenHolder>(LockedTokens.TokenHolderStoragePath) - userAccount.capabilities.publish(tokenHolderCap, at: LockedTokens.LockedAccountInfoPublicPath) + userAccount.link<&LockedTokens.TokenHolder{LockedTokens.LockedAccountInfo}>(LockedTokens.LockedAccountInfoPublicPath, target: LockedTokens.TokenHolderStoragePath) - let tokenAdminCapability = sharedAccount.capabilities.storage - .issue( - LockedTokens.LockedTokenManagerStoragePath - ) + let tokenAdminCapability = sharedAccount + .link<&LockedTokens.LockedTokenManager>( + LockedTokens.LockedTokenAdminPrivatePath, + target: LockedTokens.LockedTokenManagerStoragePath) + ?? panic("Could not link token custodyProvider to token manager") - let lockedAccountCreator = custodyProvider.storage - .borrow(from: LockedTokens.LockedAccountCreatorStoragePath) - ?? panic("Could not borrow locked account creator") - lockedAccountCreator.addAccount( - sharedAccountAddress: sharedAccount.address, - unlockedAccountAddress: userAccount.address, - tokenAdmin: tokenAdminCapability - ) + let lockedAccountCreator = custodyProvider + .borrow<&LockedTokens.LockedAccountCreator>(from: LockedTokens.LockedAccountCreatorStoragePath) + ?? panic("Could not borrow reference to LockedAccountCreator") - // Override the default FlowToken receiver. - sharedAccount.capabilities.unpublish(/public/flowTokenReceiver) + lockedAccountCreator.addAccount(sharedAccountAddress: sharedAccount.address, unlockedAccountAddress: userAccount.address, tokenAdmin: tokenAdminCapability) - // create new receiver that marks received tokens as unlocked. - let lockedTokensManagerCap = sharedAccount.capabilities.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) - sharedAccount.capabilities.publish( - lockedTokensManagerCap, - at: /public/flowTokenReceiver + // Override the default FlowToken receiver + sharedAccount.unlink(/public/flowTokenReceiver) + + // create new receiver that marks received tokens as unlocked + sharedAccount.link<&AnyResource{FungibleToken.Receiver}>( + /public/flowTokenReceiver, + target: LockedTokens.LockedTokenManagerStoragePath ) - // put normal receiver in a separate unique path. - let tokenReceiverCap = sharedAccount.capabilities.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) - sharedAccount.capabilities.publish( - tokenReceiverCap, - at: /public/lockedFlowTokenReceiver + // pub normal receiver in a separate unique path + sharedAccount.link<&AnyResource{FungibleToken.Receiver}>( + /public/lockedFlowTokenReceiver, + target: /storage/flowTokenVault ) } } diff --git a/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc b/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc index 5d9a69f31..e9913c24e 100644 --- a/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc @@ -1,7 +1,7 @@ import Crypto import FlowToken from "FlowToken" import FungibleToken from "FungibleToken" -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS /// Transaction that a custody provider would sign /// to create a shared account for a user who already @@ -14,46 +14,56 @@ transaction( partialUserPublicKey: Crypto.KeyListEntry, // Weight: 900 ) { - prepare(custodyProvider: auth(BorrowValue) &Account, userAccount: auth(Storage, Capabilities) &Account) { + prepare(custodyProvider: AuthAccount, userAccount: AuthAccount) { - let sharedAccount = Account(payer: custodyProvider) + let sharedAccount = AuthAccount(payer: custodyProvider) sharedAccount.keys.add(publicKey: partialAdminPublicKey.publicKey, hashAlgorithm: partialAdminPublicKey.hashAlgorithm, weight: partialAdminPublicKey.weight) sharedAccount.keys.add(publicKey: partialUserPublicKey.publicKey, hashAlgorithm: partialUserPublicKey.hashAlgorithm, weight: partialUserPublicKey.weight) - let vaultCapability = sharedAccount.capabilities.storage - .issue(/storage/flowTokenVault) + let vaultCapability = sharedAccount + .link<&FlowToken.Vault>(/private/flowTokenVault, target: /storage/flowTokenVault) + ?? panic("Could not link Flow Token Vault capability") let lockedTokenManager <- LockedTokens.createLockedTokenManager(vault: vaultCapability) - sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) + sharedAccount.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) - let tokenManagerCapability = sharedAccount.capabilities.storage - .issue( - LockedTokens.LockedTokenManagerStoragePath + let tokenManagerCapability = sharedAccount + .link<&LockedTokens.LockedTokenManager>( + LockedTokens.LockedTokenManagerPrivatePath, + target: LockedTokens.LockedTokenManagerStoragePath ) + ?? panic("Could not link token manager capability") let tokenHolder <- LockedTokens.createTokenHolder( lockedAddress: sharedAccount.address, tokenManager: tokenManagerCapability ) - userAccount.storage.save( + userAccount.save( <-tokenHolder, - to: LockedTokens.TokenHolderStoragePath + to: LockedTokens.TokenHolderStoragePath, ) - let tokenHolderCap = userAccount.capabilities.storage.issue<&LockedTokens.TokenHolder>(LockedTokens.TokenHolderStoragePath) - userAccount.capabilities.publish(tokenHolderCap, at: LockedTokens.LockedAccountInfoPublicPath) + userAccount.link<&LockedTokens.TokenHolder{LockedTokens.LockedAccountInfo}>( + LockedTokens.LockedAccountInfoPublicPath, + target: LockedTokens.TokenHolderStoragePath + ) - let tokenAdminCapability = sharedAccount.capabilities.storage - .issue( - LockedTokens.LockedTokenManagerStoragePath + let tokenAdminCapability = sharedAccount + .link<&LockedTokens.LockedTokenManager>( + LockedTokens.LockedTokenAdminPrivatePath, + target: LockedTokens.LockedTokenManagerStoragePath ) + ?? panic("Could not link token custodyProvider to token manager") + - let lockedAccountCreator = custodyProvider.storage - .borrow(from: LockedTokens.LockedAccountCreatorStoragePath) - ?? panic("Could not borrow locked account creator") + let lockedAccountCreator = custodyProvider + .borrow<&LockedTokens.LockedAccountCreator>( + from: LockedTokens.LockedAccountCreatorStoragePath + ) + ?? panic("Could not borrow reference to LockedAccountCreator") lockedAccountCreator.addAccount( sharedAccountAddress: sharedAccount.address, @@ -61,21 +71,19 @@ transaction( tokenAdmin: tokenAdminCapability ) - // Override the default FlowToken receiver. - sharedAccount.capabilities.unpublish(/public/flowTokenReceiver) + // Override the default FlowToken receiver + sharedAccount.unlink(/public/flowTokenReceiver) - // create new receiver that marks received tokens as unlocked. - let lockedTokensManagerCap = sharedAccount.capabilities.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) - sharedAccount.capabilities.publish( - lockedTokensManagerCap, - at: /public/flowTokenReceiver + // create new receiver that marks received tokens as unlocked + sharedAccount.link<&AnyResource{FungibleToken.Receiver}>( + /public/flowTokenReceiver, + target: LockedTokens.LockedTokenManagerStoragePath ) - // put normal receiver in a separate unique path. - let tokenReceiverCap = sharedAccount.capabilities.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) - sharedAccount.capabilities.publish( - tokenReceiverCap, - at: /public/lockedFlowTokenReceiver + // pub normal receiver in a separate unique path + sharedAccount.link<&AnyResource{FungibleToken.Receiver}>( + /public/lockedFlowTokenReceiver, + target: /storage/flowTokenVault ) } } diff --git a/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc b/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc index f82975231..5cf9bff28 100644 --- a/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc +++ b/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc @@ -1,7 +1,7 @@ import Crypto import FlowToken from "FlowToken" import FungibleToken from "FungibleToken" -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS /// Transaction that a custody provider would sign /// to create a shared account and an unlocked @@ -13,49 +13,61 @@ transaction( fullUserPublicKey: Crypto.KeyListEntry, // Weight: 1000 ) { - prepare(custodyProvider: auth(BorrowValue) &Account) { + prepare(custodyProvider: AuthAccount) { - let sharedAccount = Account(payer: custodyProvider) - let userAccount = Account(payer: custodyProvider) + let sharedAccount = AuthAccount(payer: custodyProvider) + let userAccount = AuthAccount(payer: custodyProvider) sharedAccount.keys.add(publicKey: partialAdminPublicKey.publicKey, hashAlgorithm: partialAdminPublicKey.hashAlgorithm, weight: partialAdminPublicKey.weight) sharedAccount.keys.add(publicKey: partialUserPublicKey.publicKey, hashAlgorithm: partialUserPublicKey.hashAlgorithm, weight: partialUserPublicKey.weight) userAccount.keys.add(publicKey: fullUserPublicKey.publicKey, hashAlgorithm: fullUserPublicKey.hashAlgorithm, weight: fullUserPublicKey.weight) - let vaultCapability = sharedAccount.capabilities.storage - .issue(/storage/flowTokenVault) + let vaultCapability = sharedAccount + .link<&FlowToken.Vault>( + /private/flowTokenVault, + target: /storage/flowTokenVault + ) + ?? panic("Could not link Flow Token Vault capability") let lockedTokenManager <- LockedTokens.createLockedTokenManager(vault: vaultCapability) - sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) + sharedAccount.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) - let tokenManagerCapability = sharedAccount.capabilities.storage - .issue( - LockedTokens.LockedTokenManagerStoragePath + let tokenManagerCapability = sharedAccount + .link<&LockedTokens.LockedTokenManager>( + LockedTokens.LockedTokenManagerPrivatePath, + target: LockedTokens.LockedTokenManagerStoragePath ) + ?? panic("Could not link token manager capability") let tokenHolder <- LockedTokens.createTokenHolder( lockedAddress: sharedAccount.address, tokenManager: tokenManagerCapability ) - userAccount.storage.save( + userAccount.save( <-tokenHolder, - to: LockedTokens.TokenHolderStoragePath + to: LockedTokens.TokenHolderStoragePath, ) - let tokenHolderCap = userAccount.capabilities.storage.issue<&LockedTokens.TokenHolder>(LockedTokens.TokenHolderStoragePath) - userAccount.capabilities.publish(tokenHolderCap, at: LockedTokens.LockedAccountInfoPublicPath) + userAccount.link<&LockedTokens.TokenHolder{LockedTokens.LockedAccountInfo}>( + LockedTokens.LockedAccountInfoPublicPath, + target: LockedTokens.TokenHolderStoragePath + ) - let tokenAdminCapability = sharedAccount.capabilities.storage - .issue( - LockedTokens.LockedTokenManagerStoragePath + let tokenAdminCapability = sharedAccount + .link<&LockedTokens.LockedTokenManager>( + LockedTokens.LockedTokenAdminPrivatePath, + target: LockedTokens.LockedTokenManagerStoragePath ) + ?? panic("Could not link token custodyProvider to token manager") - let lockedAccountCreator = custodyProvider.storage - .borrow(from: LockedTokens.LockedAccountCreatorStoragePath) - ?? panic("Could not borrow account creator reference") + let lockedAccountCreator = custodyProvider + .borrow<&LockedTokens.LockedAccountCreator>( + from: LockedTokens.LockedAccountCreatorStoragePath + ) + ?? panic("Could not borrow reference to LockedAccountCreator") lockedAccountCreator.addAccount( sharedAccountAddress: sharedAccount.address, @@ -63,21 +75,19 @@ transaction( tokenAdmin: tokenAdminCapability ) - // Override the default FlowToken receiver. - sharedAccount.capabilities.unpublish(/public/flowTokenReceiver) + // Override the default FlowToken receiver + sharedAccount.unlink(/public/flowTokenReceiver) - // create new receiver that marks received tokens as unlocked. - let lockedTokensManagerCap = sharedAccount.capabilities.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) - sharedAccount.capabilities.publish( - lockedTokensManagerCap, - at: /public/flowTokenReceiver + // create new receiver that marks received tokens as unlocked + sharedAccount.link<&AnyResource{FungibleToken.Receiver}>( + /public/flowTokenReceiver, + target: LockedTokens.LockedTokenManagerStoragePath ) - // put normal receiver in a separate unique path. - let tokenReceiverCap = sharedAccount.capabilities.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) - sharedAccount.capabilities.publish( - tokenReceiverCap, - at: /public/lockedFlowTokenReceiver + // pub normal receiver in a separate unique path + sharedAccount.link<&AnyResource{FungibleToken.Receiver}>( + /public/lockedFlowTokenReceiver, + target: /storage/flowTokenVault ) } } diff --git a/transactions/lockedTokens/admin/deposit_locked_tokens.cdc b/transactions/lockedTokens/admin/deposit_locked_tokens.cdc index 603159189..c5f84a85d 100644 --- a/transactions/lockedTokens/admin/deposit_locked_tokens.cdc +++ b/transactions/lockedTokens/admin/deposit_locked_tokens.cdc @@ -1,20 +1,20 @@ import FungibleToken from "FungibleToken" import FlowToken from "FlowToken" -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(to: Address, amount: UFix64) { // The Vault resource that holds the tokens that are being transferred - let sentVault: @{FungibleToken.Vault} + let sentVault: @FungibleToken.Vault - prepare(admin: auth(BorrowValue) &Account) { + prepare(admin: AuthAccount) { // Get a reference to the admin's stored vault - let vaultRef = admin.storage.borrow(from: /storage/flowTokenVault) + let vaultRef = admin.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to the owner's Vault!") - let adminRef = admin.storage + let adminRef = admin .borrow<&LockedTokens.TokenAdminCollection>( from: LockedTokens.LockedTokenAdminCollectionStoragePath ) @@ -36,9 +36,10 @@ transaction(to: Address, amount: UFix64) { // Get a reference to the recipient's Receiver let receiverRef = recipient - .capabilities.borrow<&{FungibleToken.Receiver}>( + .getCapability<&AnyResource{FungibleToken.Receiver}>( /public/lockedFlowTokenReceiver ) + .borrow() ?? panic("Could not borrow receiver reference to the recipient's locked Vault") // Deposit the withdrawn tokens in the recipient's receiver diff --git a/transactions/lockedTokens/admin/get_unlocking_bad_accounts.cdc b/transactions/lockedTokens/admin/get_unlocking_bad_accounts.cdc new file mode 100644 index 000000000..8bfc06069 --- /dev/null +++ b/transactions/lockedTokens/admin/get_unlocking_bad_accounts.cdc @@ -0,0 +1,17 @@ + + +access(all) fun main(tokenAdmin: Address): {Address: UFix64} { + + let copyofDictionary: {Address: UFix64} = {} + + let account = getAccount(tokenAdmin) + + let dictionaryReference = account.getCapability<&{Address: UFix64}>(/public/unlockingBadAccounts).borrow() + ?? panic("Could not get bad accounts dictionary") + + for address in dictionaryReference.keys { + copyofDictionary[address] = dictionaryReference[address]! + } + + return copyofDictionary +} \ No newline at end of file diff --git a/transactions/lockedTokens/delegator/delegate_new_tokens.cdc b/transactions/lockedTokens/delegator/delegate_new_tokens.cdc index f6810bbe1..b0eec1f43 100644 --- a/transactions/lockedTokens/delegator/delegate_new_tokens.cdc +++ b/transactions/lockedTokens/delegator/delegate_new_tokens.cdc @@ -1,18 +1,18 @@ import FlowToken from "FlowToken" import FungibleToken from "FungibleToken" -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder + let holderRef: &LockedTokens.TokenHolder - let vaultRef: auth(FungibleToken.Withdraw) &FlowToken.Vault + let vaultRef: &FlowToken.Vault - prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + prepare(account: AuthAccount) { + self.holderRef = account.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") - self.vaultRef = account.storage.borrow(from: /storage/flowTokenVault) + self.vaultRef = account.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow flow token vault reference") } diff --git a/transactions/lockedTokens/delegator/get_delegator_info.cdc b/transactions/lockedTokens/delegator/get_delegator_info.cdc index 5e9cd6bba..171c6231c 100644 --- a/transactions/lockedTokens/delegator/get_delegator_info.cdc +++ b/transactions/lockedTokens/delegator/get_delegator_info.cdc @@ -1,5 +1,5 @@ import FlowIDTableStaking from "FlowIDTableStaking" -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS // Returns an array of DelegatorInfo objects that the account controls // in its normal account and shared account @@ -10,12 +10,12 @@ access(all) fun main(account: Address): [FlowIDTableStaking.DelegatorInfo] { let pubAccount = getAccount(account) - let optionalDelegatorRef = pubAccount - .capabilities.borrow<&{FlowIDTableStaking.NodeDelegatorPublic}>( + let delegatorCap = pubAccount + .getCapability<&{FlowIDTableStaking.NodeDelegatorPublic}>( /public/flowStakingDelegator ) - if let delegatorRef = optionalDelegatorRef { + if let delegatorRef = delegatorCap.borrow() { let info = FlowIDTableStaking.DelegatorInfo( nodeID: delegatorRef.nodeID, delegatorID: delegatorRef.id @@ -23,12 +23,12 @@ access(all) fun main(account: Address): [FlowIDTableStaking.DelegatorInfo] { delegatorInfoArray.append(info) } - let optionalLockedAccountInfoRef = pubAccount - .capabilities.borrow<&LockedTokens.TokenHolder>( + let lockedAccountInfoCap = pubAccount + .getCapability<&LockedTokens.TokenHolder{LockedTokens.LockedAccountInfo}>( LockedTokens.LockedAccountInfoPublicPath ) - if let lockedAccountInfoRef = optionalLockedAccountInfoRef { + if let lockedAccountInfoRef = lockedAccountInfoCap.borrow() { let nodeID = lockedAccountInfoRef.getDelegatorNodeID() let delegatorID = lockedAccountInfoRef.getDelegatorID() diff --git a/transactions/lockedTokens/delegator/register_delegator.cdc b/transactions/lockedTokens/delegator/register_delegator.cdc index 48cd0da81..6655b4815 100644 --- a/transactions/lockedTokens/delegator/register_delegator.cdc +++ b/transactions/lockedTokens/delegator/register_delegator.cdc @@ -1,19 +1,19 @@ import FlowToken from "FlowToken" -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS import FlowIDTableStaking from "FlowIDTableStaking" import FungibleToken from "FungibleToken" transaction(id: String, amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder + let holderRef: &LockedTokens.TokenHolder - let vaultRef: auth(FungibleToken.Withdraw) &FlowToken.Vault + let vaultRef: &FlowToken.Vault - prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + prepare(account: AuthAccount) { + self.holderRef = account.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("TokenHolder is not saved at specified path") - self.vaultRef = account.storage.borrow(from: /storage/flowTokenVault) + self.vaultRef = account.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow flow token vault reference") } diff --git a/transactions/lockedTokens/delegator/withdraw_rewarded_tokens.cdc b/transactions/lockedTokens/delegator/withdraw_rewarded_tokens.cdc index 25831a4d7..cc5640857 100644 --- a/transactions/lockedTokens/delegator/withdraw_rewarded_tokens.cdc +++ b/transactions/lockedTokens/delegator/withdraw_rewarded_tokens.cdc @@ -1,17 +1,16 @@ -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS import FlowToken from "FlowToken" -import FungibleToken from "FungibleToken" transaction(amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder + let holderRef: &LockedTokens.TokenHolder let vaultRef: &FlowToken.Vault - prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + prepare(account: AuthAccount) { + self.holderRef = account.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") - self.vaultRef = account.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) + self.vaultRef = account.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FlowToken value") } diff --git a/transactions/lockedTokens/staker/get_staker_info.cdc b/transactions/lockedTokens/staker/get_staker_info.cdc index d9b289da8..02eef2a4f 100644 --- a/transactions/lockedTokens/staker/get_staker_info.cdc +++ b/transactions/lockedTokens/staker/get_staker_info.cdc @@ -1,5 +1,5 @@ import FlowIDTableStaking from "FlowIDTableStaking" -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS // Returns an array of NodeInfo objects that the account controls // in its normal account and shared account @@ -10,22 +10,22 @@ access(all) fun main(account: Address): [FlowIDTableStaking.NodeInfo] { let pubAccount = getAccount(account) - let optionalNodeStakerRef = pubAccount - .capabilities.borrow<&{FlowIDTableStaking.NodeStakerPublic}>( + let nodeStakerCap = pubAccount + .getCapability<&{FlowIDTableStaking.NodeStakerPublic}>( FlowIDTableStaking.NodeStakerPublicPath ) - if let nodeStakerRef = optionalNodeStakerRef { + if let nodeStakerRef = nodeStakerCap.borrow() { let info = FlowIDTableStaking.NodeInfo(nodeID: nodeStakerRef.id) nodeInfoArray.append(info) } - let optionalLockedAccountInfoRef = pubAccount - .capabilities.borrow<&LockedTokens.TokenHolder>( + let lockedAccountInfoCap = pubAccount + .getCapability<&LockedTokens.TokenHolder{LockedTokens.LockedAccountInfo}>( LockedTokens.LockedAccountInfoPublicPath ) - if let lockedAccountInfoRef = optionalLockedAccountInfoRef { + if let lockedAccountInfoRef = lockedAccountInfoCap.borrow() { if let nodeID = lockedAccountInfoRef.getNodeID() { let info = FlowIDTableStaking.NodeInfo(nodeID: nodeID) nodeInfoArray.append(info) diff --git a/transactions/lockedTokens/staker/register_node.cdc b/transactions/lockedTokens/staker/register_node.cdc index 5aeb2cb5f..b0e7ebf56 100644 --- a/transactions/lockedTokens/staker/register_node.cdc +++ b/transactions/lockedTokens/staker/register_node.cdc @@ -1,30 +1,24 @@ import FlowToken from "FlowToken" import FungibleToken from "FungibleToken" -import LockedTokens from "LockedTokens" -import StakingProxy from "StakingProxy" +import LockedTokens from 0xLOCKEDTOKENADDRESS +import StakingProxy from 0xSTAKINGPROXYADDRESS transaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder + let holderRef: &LockedTokens.TokenHolder - let vaultRef: auth(FungibleToken.Withdraw) &FlowToken.Vault + let vaultRef: &FlowToken.Vault - prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + prepare(account: AuthAccount) { + self.holderRef = account.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow ref to TokenHolder") - self.vaultRef = account.storage.borrow(from: /storage/flowTokenVault) + self.vaultRef = account.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow flow token vault reference") } execute { - let nodeInfo = StakingProxy.NodeInfo( - nodeID: id, - role: role, - networkingAddress: networkingAddress, - networkingKey: networkingKey, - stakingKey: stakingKey - ) + let nodeInfo = StakingProxy.NodeInfo(nodeID: id, role: role, networkingAddress: networkingAddress, networkingKey: networkingKey, stakingKey: stakingKey) let lockedBalance = self.holderRef.getLockedAccountBalance() diff --git a/transactions/lockedTokens/staker/stake_new_tokens.cdc b/transactions/lockedTokens/staker/stake_new_tokens.cdc index 5b83deaeb..413da1a4a 100644 --- a/transactions/lockedTokens/staker/stake_new_tokens.cdc +++ b/transactions/lockedTokens/staker/stake_new_tokens.cdc @@ -1,19 +1,20 @@ import FlowToken from "FlowToken" import FungibleToken from "FungibleToken" -import LockedTokens from "LockedTokens" -import StakingProxy from "StakingProxy" + +import LockedTokens from 0xLOCKEDTOKENADDRESS +import StakingProxy from 0xSTAKINGPROXYADDRESS transaction(amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder + let holderRef: &LockedTokens.TokenHolder - let vaultRef: auth(FungibleToken.Withdraw) &FlowToken.Vault + let vaultRef: &FlowToken.Vault - prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + prepare(account: AuthAccount) { + self.holderRef = account.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") - self.vaultRef = account.storage.borrow(from: /storage/flowTokenVault) + self.vaultRef = account.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow flow token vault reference") } diff --git a/transactions/lockedTokens/staker/withdraw_rewarded_tokens.cdc b/transactions/lockedTokens/staker/withdraw_rewarded_tokens.cdc index a1eab9540..3dd52c6bf 100644 --- a/transactions/lockedTokens/staker/withdraw_rewarded_tokens.cdc +++ b/transactions/lockedTokens/staker/withdraw_rewarded_tokens.cdc @@ -1,17 +1,16 @@ -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS import FlowToken from "FlowToken" -import FungibleToken from "FungibleToken" transaction(amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder + let holderRef: &LockedTokens.TokenHolder let vaultRef: &FlowToken.Vault - prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + prepare(account: AuthAccount) { + self.holderRef = account.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") - self.vaultRef = account.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) + self.vaultRef = account.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FlowToken value") } diff --git a/transactions/lockedTokens/user/deposit_tokens.cdc b/transactions/lockedTokens/user/deposit_tokens.cdc index 409089446..d51d9cc8e 100644 --- a/transactions/lockedTokens/user/deposit_tokens.cdc +++ b/transactions/lockedTokens/user/deposit_tokens.cdc @@ -1,17 +1,17 @@ import FungibleToken from "FungibleToken" import FlowToken from "FlowToken" -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(amount: UFix64) { let holderRef: &LockedTokens.TokenHolder - let vaultRef: auth(FungibleToken.Withdraw) &FlowToken.Vault + let vaultRef: &FlowToken.Vault - prepare(acct: auth(BorrowValue) &Account) { - self.holderRef = acct.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) - ?? panic("The primary user account does not have an associated locked account") + prepare(acct: AuthAccount) { + self.holderRef = acct.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + ?? panic("Could not borrow a reference to TokenHolder") - self.vaultRef = acct.storage.borrow(from: /storage/flowTokenVault) + self.vaultRef = acct.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow flow token vault ref") } diff --git a/transactions/lockedTokens/user/get_total_balance.cdc b/transactions/lockedTokens/user/get_total_balance.cdc index 9927c0d20..402e005ca 100644 --- a/transactions/lockedTokens/user/get_total_balance.cdc +++ b/transactions/lockedTokens/user/get_total_balance.cdc @@ -1,7 +1,7 @@ import FungibleToken from "FungibleToken" import FlowToken from "FlowToken" import FlowIDTableStaking from "FlowIDTableStaking" -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS // This script gets the TOTAL number of FLOW an account owns, across unlocked, locked, and staking. @@ -21,28 +21,30 @@ access(all) fun main(address: Address): UFix64 { let account = getAccount(address) - if let vaultRef = account.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { + if let vaultRef = account.getCapability(/public/flowTokenBalance) + .borrow<&FlowToken.Vault{FungibleToken.Balance}>() + { sum = sum + vaultRef.balance } // Get token balance from the unlocked account's node staking pools - let optionalNodeStakerRef = account - .capabilities.borrow<&{FlowIDTableStaking.NodeStakerPublic}>( + let nodeStakerCap = account + .getCapability<&{FlowIDTableStaking.NodeStakerPublic}>( FlowIDTableStaking.NodeStakerPublicPath ) - if let nodeStakerRef = optionalNodeStakerRef { + if let nodeStakerRef = nodeStakerCap.borrow() { let nodeInfo = FlowIDTableStaking.NodeInfo(nodeID: nodeStakerRef.id) sum = sum + nodeInfo.totalTokensInRecord() } // Get token balance from the unlocked account's delegator staking pools - let optionalDelegatorRef = account - .capabilities.borrow<&{FlowIDTableStaking.NodeDelegatorPublic}>( + let delegatorCap = account + .getCapability<&{FlowIDTableStaking.NodeDelegatorPublic}>( /public/flowStakingDelegator ) - if let delegatorRef = optionalDelegatorRef { + if let delegatorRef = delegatorCap.borrow() { let delegatorInfo = FlowIDTableStaking.DelegatorInfo( nodeID: delegatorRef.nodeID, delegatorID: delegatorRef.id @@ -52,12 +54,12 @@ access(all) fun main(address: Address): UFix64 { } // Get the locked account public capability - let optionalLockedAccountInfoRef = account - .capabilities.borrow<&LockedTokens.TokenHolder>( + let lockedAccountInfoCap = account + .getCapability<&LockedTokens.TokenHolder{LockedTokens.LockedAccountInfo}>( LockedTokens.LockedAccountInfoPublicPath ) - if let lockedAccountInfoRef = optionalLockedAccountInfoRef { + if let lockedAccountInfoRef = lockedAccountInfoCap.borrow() { // Add the locked account balance sum = sum + lockedAccountInfoRef.getLockedAccountBalance() diff --git a/transactions/lockedTokens/user/withdraw_tokens.cdc b/transactions/lockedTokens/user/withdraw_tokens.cdc index b45245f9f..1f6bef166 100644 --- a/transactions/lockedTokens/user/withdraw_tokens.cdc +++ b/transactions/lockedTokens/user/withdraw_tokens.cdc @@ -1,17 +1,17 @@ import FungibleToken from "FungibleToken" import FlowToken from "FlowToken" -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder - let vaultRef: auth(FungibleToken.Withdraw) &FlowToken.Vault + let holderRef: &LockedTokens.TokenHolder + let vaultRef: &FlowToken.Vault - prepare(acct: auth(BorrowValue) &Account) { - self.holderRef = acct.storage.borrow(from: LockedTokens.TokenHolderStoragePath) - ?? panic("The primary user account does not have an associated locked account") + prepare(acct: AuthAccount) { + self.holderRef = acct.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + ?? panic("Could not borrow a reference to TokenHolder") - self.vaultRef = acct.storage.borrow(from: /storage/flowTokenVault) + self.vaultRef = acct.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) ?? panic("Could not borrow flow token vault ref") } diff --git a/transactions/stakingCollection/create_new_tokenholder_acct.cdc b/transactions/stakingCollection/create_new_tokenholder_acct.cdc index 3f04d196a..2e04af560 100644 --- a/transactions/stakingCollection/create_new_tokenholder_acct.cdc +++ b/transactions/stakingCollection/create_new_tokenholder_acct.cdc @@ -1,8 +1,7 @@ import Crypto import FlowToken from "FlowToken" -import FungibleToken from "FungibleToken" -import LockedTokens from "LockedTokens" -import FlowStakingCollection from "FlowStakingCollection" +import LockedTokens from 0xLOCKEDTOKENADDRESS +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS // This transaction allows the controller of the locked account // to create a new LockedTokens.TokenHolder object and store it in a new account @@ -13,69 +12,52 @@ import FlowStakingCollection from "FlowStakingCollection" // or revoke all keys from that account transaction(publicKeys: [Crypto.KeyListEntry]) { - prepare(signer: auth(BorrowValue, Storage, Capabilities) &Account) { + prepare(signer: AuthAccount) { - // Create the new account and add public keys. - let newAccount = Account(payer: signer) + // Create the new account and add public keys + let newAccount = AuthAccount(payer: signer) for key in publicKeys { newAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight) } - // Get the TokenManager Capability from the locked account. - let tokenManagerCapabilityController = signer.capabilities.storage.getControllers(forPath: LockedTokens.LockedTokenManagerStoragePath)[2]! - let tokenManagerCapability = tokenManagerCapabilityController.capability as! Capability + // Get the TokenManager Capability from the locked account + let tokenManagerCapability = signer + .getCapability<&LockedTokens.LockedTokenManager>( + LockedTokens.LockedTokenManagerPrivatePath) - // Use the manager capability to create a new TokenHolder. + // Use the manager capability to create a new TokenHolder let tokenHolder <- LockedTokens.createTokenHolder( lockedAddress: signer.address, tokenManager: tokenManagerCapability ) - // Save the TokenHolder resource to the new account and create a public capability. - newAccount.storage.save( + // Save the TokenHolder resource to the new account and create a public capability + newAccount.save( <-tokenHolder, - to: LockedTokens.TokenHolderStoragePath + to: LockedTokens.TokenHolderStoragePath, ) - let tokenHolderCap = newAccount.capabilities.storage - .issue<&LockedTokens.TokenHolder>(LockedTokens.TokenHolderStoragePath) - newAccount.capabilities.publish( - tokenHolderCap, - at: LockedTokens.LockedAccountInfoPublicPath + newAccount.link<&LockedTokens.TokenHolder{LockedTokens.LockedAccountInfo}>( + LockedTokens.LockedAccountInfoPublicPath, + target: LockedTokens.TokenHolderStoragePath ) - // Create capabilities for the token holder and unlocked vault. - let lockedHolder = newAccount.capabilities.storage.issue(LockedTokens.TokenHolderStoragePath) - let flowToken = newAccount.capabilities.storage.issue(/storage/flowTokenVault) + // Create private capabilities for the token holder and unlocked vault + let lockedHolder = newAccount.link<&LockedTokens.TokenHolder>(/private/flowTokenHolder, target: LockedTokens.TokenHolderStoragePath)! + let flowToken = newAccount.link<&FlowToken.Vault>(/private/flowTokenVault, target: /storage/flowTokenVault)! - // Create a new Staking Collection and put it in storage. + // Create a new Staking Collection and put it in storage if lockedHolder.check() { - newAccount.storage.save( - <- FlowStakingCollection.createStakingCollection( - unlockedVault: flowToken, - tokenHolder: lockedHolder - ), - to: FlowStakingCollection.StakingCollectionStoragePath - ) + newAccount.save(<-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: lockedHolder), to: FlowStakingCollection.StakingCollectionStoragePath) } else { - newAccount.storage.save( - <- FlowStakingCollection.createStakingCollection( - unlockedVault: flowToken, - tokenHolder: nil - ), - to: FlowStakingCollection.StakingCollectionStoragePath - ) + newAccount.save(<-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: nil), to: FlowStakingCollection.StakingCollectionStoragePath) } - // Publish a capability to the created staking collection. - let stakingCollectionCap = newAccount.capabilities.storage.issue<&FlowStakingCollection.StakingCollection>( - FlowStakingCollection.StakingCollectionStoragePath - ) - - newAccount.capabilities.publish( - stakingCollectionCap, - at: FlowStakingCollection.StakingCollectionPublicPath + // Create a public link to the staking collection + newAccount.link<&FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}>( + FlowStakingCollection.StakingCollectionPublicPath, + target: FlowStakingCollection.StakingCollectionStoragePath ) } } \ No newline at end of file diff --git a/transactions/stakingCollection/restake_all_stakers.cdc b/transactions/stakingCollection/restake_all_stakers.cdc index 26c8db08e..f10cff90e 100644 --- a/transactions/stakingCollection/restake_all_stakers.cdc +++ b/transactions/stakingCollection/restake_all_stakers.cdc @@ -1,14 +1,14 @@ -import FlowStakingCollection from "FlowStakingCollection" +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS import FlowIDTableStaking from "FlowIDTableStaking" /// Commits rewarded tokens to stake for all nodes and delegators in a collection transaction { - let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection + let stakingCollectionRef: &FlowStakingCollection.StakingCollection - prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) + prepare(account: AuthAccount) { + self.stakingCollectionRef = account.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow ref to StakingCollection") } diff --git a/transactions/stakingCollection/scripts/get_all_delegator_info.cdc b/transactions/stakingCollection/scripts/get_all_delegator_info.cdc index ae450d691..3346b7165 100644 --- a/transactions/stakingCollection/scripts/get_all_delegator_info.cdc +++ b/transactions/stakingCollection/scripts/get_all_delegator_info.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from "FlowStakingCollection" +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS import FlowIDTableStaking from "FlowIDTableStaking" /// Gets an array of all the delegator metadata for delegators stored in the staking collection diff --git a/transactions/stakingCollection/scripts/get_all_node_info.cdc b/transactions/stakingCollection/scripts/get_all_node_info.cdc index 1640ef590..2d27dbece 100644 --- a/transactions/stakingCollection/scripts/get_all_node_info.cdc +++ b/transactions/stakingCollection/scripts/get_all_node_info.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from "FlowStakingCollection" +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS import FlowIDTableStaking from "FlowIDTableStaking" /// Gets an array of all the node metadata for nodes stored in the staking collection diff --git a/transactions/stakingCollection/scripts/get_does_stake_exist.cdc b/transactions/stakingCollection/scripts/get_does_stake_exist.cdc index 6ac46288b..bf1b03981 100644 --- a/transactions/stakingCollection/scripts/get_does_stake_exist.cdc +++ b/transactions/stakingCollection/scripts/get_does_stake_exist.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from "FlowStakingCollection" +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS import FlowIDTableStaking from "FlowIDTableStaking" /// Tells if the specified node or delegator exists in the staking collection diff --git a/transactions/stakingCollection/setup_staking_collection.cdc b/transactions/stakingCollection/setup_staking_collection.cdc index fd48f7395..2a166230a 100644 --- a/transactions/stakingCollection/setup_staking_collection.cdc +++ b/transactions/stakingCollection/setup_staking_collection.cdc @@ -1,66 +1,50 @@ import FungibleToken from "FungibleToken" import FlowToken from "FlowToken" import FlowIDTableStaking from "FlowIDTableStaking" -import LockedTokens from "LockedTokens" -import FlowStakingCollection from "FlowStakingCollection" +import LockedTokens from 0xLOCKEDTOKENADDRESS +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS /// This transaction sets up an account to use a staking collection /// It will work regardless of whether they have a regular account, a two-account locked tokens setup, /// or staking objects stored in the unlocked account transaction { - prepare(signer: auth(BorrowValue, Storage, Capabilities) &Account) { + prepare(signer: AuthAccount) { // If there isn't already a staking collection - if signer.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) == nil { + if signer.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) == nil { // Create private capabilities for the token holder and unlocked vault - let lockedHolder = signer.capabilities.storage.issue(LockedTokens.TokenHolderStoragePath)! - let flowToken = signer.capabilities.storage.issue(/storage/flowTokenVault)! - + let lockedHolder = signer.link<&LockedTokens.TokenHolder>(/private/flowTokenHolder, target: LockedTokens.TokenHolderStoragePath)! + let flowToken = signer.link<&FlowToken.Vault>(/private/flowTokenVault, target: /storage/flowTokenVault)! + // Create a new Staking Collection and put it in storage if lockedHolder.check() { - signer.storage.save( - <- FlowStakingCollection.createStakingCollection( - unlockedVault: flowToken, - tokenHolder: lockedHolder - ), - to: FlowStakingCollection.StakingCollectionStoragePath - ) + signer.save(<-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: lockedHolder), to: FlowStakingCollection.StakingCollectionStoragePath) } else { - signer.storage.save( - <- FlowStakingCollection.createStakingCollection( - unlockedVault: flowToken, - tokenHolder: nil - ), - to: FlowStakingCollection.StakingCollectionStoragePath - ) + signer.save(<-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: nil), to: FlowStakingCollection.StakingCollectionStoragePath) } - // Publish a capability to the created staking collection. - let stakingCollectionCap = signer.capabilities.storage.issue<&FlowStakingCollection.StakingCollection>( - FlowStakingCollection.StakingCollectionStoragePath - ) - - signer.capabilities.publish( - stakingCollectionCap, - at: FlowStakingCollection.StakingCollectionPublicPath + // Create a public link to the staking collection + signer.link<&FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}>( + FlowStakingCollection.StakingCollectionPublicPath, + target: FlowStakingCollection.StakingCollectionStoragePath ) } // borrow a reference to the staking collection - let collectionRef = signer.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + let collectionRef = signer.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow staking collection reference") // If there is a node staker object in the account, put it in the staking collection - if signer.storage.borrow<&FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath) != nil { - let node <- signer.storage.load<@FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath)! + if signer.borrow<&FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath) != nil { + let node <- signer.load<@FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath)! collectionRef.addNodeObject(<-node, machineAccountInfo: nil) } // If there is a delegator object in the account, put it in the staking collection - if signer.storage.borrow<&FlowIDTableStaking.NodeDelegator>(from: FlowIDTableStaking.DelegatorStoragePath) != nil { - let delegator <- signer.storage.load<@FlowIDTableStaking.NodeDelegator>(from: FlowIDTableStaking.DelegatorStoragePath)! + if signer.borrow<&FlowIDTableStaking.NodeDelegator>(from: FlowIDTableStaking.DelegatorStoragePath) != nil { + let delegator <- signer.load<@FlowIDTableStaking.NodeDelegator>(from: FlowIDTableStaking.DelegatorStoragePath)! collectionRef.addDelegatorObject(<-delegator) } } diff --git a/transactions/stakingCollection/test/deposit_tokens.cdc b/transactions/stakingCollection/test/deposit_tokens.cdc index 228de87f4..20c3390f7 100644 --- a/transactions/stakingCollection/test/deposit_tokens.cdc +++ b/transactions/stakingCollection/test/deposit_tokens.cdc @@ -1,18 +1,18 @@ -import FlowStakingCollection from "FlowStakingCollection" +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS import FlowToken from "FlowToken" import FungibleToken from "FungibleToken" -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS // Used only for test purposes to test the deposit token function in the staking collection transaction(amount: UFix64) { - prepare(signer: auth(BorrowValue) &Account) { + prepare(signer: AuthAccount) { - let collectionRef = signer.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + let collectionRef = signer.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow a reference to the staking collection") - let flowTokenRef = signer.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) + let flowTokenRef = signer.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") let tokens <- collectionRef.getTokens(amount: amount) diff --git a/transactions/stakingCollection/test/get_tokens.cdc b/transactions/stakingCollection/test/get_tokens.cdc index 6f0ca3947..0b16411d0 100644 --- a/transactions/stakingCollection/test/get_tokens.cdc +++ b/transactions/stakingCollection/test/get_tokens.cdc @@ -1,15 +1,15 @@ -import FlowStakingCollection from "FlowStakingCollection" +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS import FlowToken from "FlowToken" import FungibleToken from "FungibleToken" -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS // Used only for test purposes to test the get tokens function in the staking collection transaction(amount: UFix64) { - prepare(signer: auth(BorrowValue) &Account) { + prepare(signer: AuthAccount) { - let collectionRef = signer.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + let collectionRef = signer.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow a reference to the staking collection") let tokens <- collectionRef.getTokens(amount: amount) From f2fe0ac6ab48eff09ab88338e6e61ee80fc337e5 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 8 Aug 2023 17:00:07 -0500 Subject: [PATCH 033/160] fixes to epoch tests --- lib/go/templates/manifest.mainnet.json | 76 +++++++++++++------------- lib/go/templates/manifest.testnet.json | 76 +++++++++++++------------- lib/go/templates/templates.go | 3 +- lib/go/test/flow_epoch_test.go | 37 ++++++------- 4 files changed, 96 insertions(+), 96 deletions(-) diff --git a/lib/go/templates/manifest.mainnet.json b/lib/go/templates/manifest.mainnet.json index 5c75f2cd8..9bdc58e7f 100755 --- a/lib/go/templates/manifest.mainnet.json +++ b/lib/go/templates/manifest.mainnet.json @@ -4,7 +4,7 @@ { "id": "TH.01", "name": "Withdraw Unlocked FLOW", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: AuthAccount) {\n self.holderRef = acct.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: AuthAccount) {\n self.holderRef = acct.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -19,12 +19,12 @@ } ], "network": "mainnet", - "hash": "a2146e3e6e7718779ce59376b88760c154d82b7d132fe2c377114ec7cf434e7b" + "hash": "d7c3c5fb126d6c3f3f6ef47d5aa62aa52b59a6cae1551ad271d67ca6bf6917d7" }, { "id": "TH.02", "name": "Deposit Unlocked FLOW", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: AuthAccount) {\n self.holderRef = acct.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: AuthAccount) {\n self.holderRef = acct.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -39,12 +39,12 @@ } ], "network": "mainnet", - "hash": "5ff29c78cdb13cc792f77cf81ca84d5fb5ef1ecd89de8919d14b674c6012f6af" + "hash": "54ee21d197bb76a1a5d3b140367926e7c872df278276831e1d6cf2fd440bc108" }, { "id": "TH.06", "name": "Register Node", - "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow ref to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let nodeInfo = StakingProxy.NodeInfo(nodeID: id, role: role, networkingAddress: networkingAddress, networkingKey: networkingKey, stakingKey: stakingKey)\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n \n }\n}\n", + "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow ref to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let nodeInfo = StakingProxy.NodeInfo(nodeID: id, role: role, networkingAddress: networkingAddress, networkingKey: networkingKey, stakingKey: stakingKey)\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n \n }\n}\n", "arguments": [ { "type": "String", @@ -114,12 +114,12 @@ } ], "network": "mainnet", - "hash": "9d5575c8d3de5a03b9959b614f8c3ae6e5f5063880a6203dc4a4381d67880e90" + "hash": "ffe8132e20e6cd5b384b807318e5c19062e5bf3c7f109d22807c22c17f668823" }, { "id": "TH.08", "name": "Stake New Locked FLOW", - "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\n\nimport LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.stakeNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.stakeNewTokens(amount: amount)\n \n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\n\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.stakeNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.stakeNewTokens(amount: amount)\n \n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -134,12 +134,12 @@ } ], "network": "mainnet", - "hash": "fecfd7502ae7b6882d0b8dc11452a3fd36bc024e028114388e265dee53ada841" + "hash": "d08853d1f83b49cf6d99db0f6b741eb5144d95f77462998f959546862b6475df" }, { "id": "TH.09", "name": "Re-stake Unstaked FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -154,12 +154,12 @@ } ], "network": "mainnet", - "hash": "677cc0ac3962ec136ca26dbec0aa942d926640ecf8418433f0db4b7925f5d0fe" + "hash": "30c45ca6488610bea1fbb2abd97ea46c7a5898b21ebc83805a15e201a78c353a" }, { "id": "TH.10", "name": "Re-stake Rewarded FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeRewardedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeRewardedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -174,12 +174,12 @@ } ], "network": "mainnet", - "hash": "28d1719c5b21c88c62665db5ba04886809f3234c27057b057c36d5f265ee9de4" + "hash": "aa0b344b3350af57b624e8cf9c8ccf15061de652980e260a001eff83d306a1ed" }, { "id": "TH.11", "name": "Request Unstake of FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.requestUnstaking(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.requestUnstaking(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -194,20 +194,20 @@ } ], "network": "mainnet", - "hash": "4e2a35541453f89c55e5dc6dbc963290380d779c81df0b3bf89c29b2a8d7a9fe" + "hash": "3d8adb653124a3727e2823b353e77abc368db62b2551bcc11308c834e7882926" }, { "id": "TH.12", "name": "Unstake All FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction() {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.unstakeAll()\n }\n}\n", + "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction() {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.unstakeAll()\n }\n}\n", "arguments": [], "network": "mainnet", - "hash": "7099904b953b062e81e2575a2c2081b3d98bfccf5c743b4bdb224b937e292dad" + "hash": "ef8bfbe51e4b85a3bb3199bd431d1928de571c5c26bb5fd97b49cb1181499be9" }, { "id": "TH.13", "name": "Withdraw Unstaked FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -222,12 +222,12 @@ } ], "network": "mainnet", - "hash": "dcae4faa6d689873f7caf7c5efef669f9fe1d4113e58b474b7aec1e07113a7ff" + "hash": "f40441c488fcbc303883a8f8877db17da387e8579e60aa7de2507b93bb5190c2" }, { "id": "TH.14", "name": "Withdraw Rewarded FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FlowToken from 0x1654653399040a61\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport FlowToken from 0x1654653399040a61\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -242,12 +242,12 @@ } ], "network": "mainnet", - "hash": "9bb8f0562eea5e45c11f9289540f39c99a21c9a0fb060a7d3f832e98c2696f2d" + "hash": "ba6f456e459bb323025905699773b61a199f0821f4c29c250bf6707af699ed5f" }, { "id": "TH.16", "name": "Register Operator Node", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).getCapability\n \u003c\u0026StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}\u003e\n (StakingProxy.NodeOperatorCapabilityPublicPath)!.borrow() \n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", + "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).getCapability\n \u003c\u0026StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}\u003e\n (StakingProxy.NodeOperatorCapabilityPublicPath)!.borrow() \n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", "arguments": [ { "type": "Address", @@ -284,12 +284,12 @@ } ], "network": "mainnet", - "hash": "97b3436482c5aefc1baf8b850e92c829202e468c57241dec707b6c27bd89d15c" + "hash": "10f2a0650245056e09df33cb19375aad8d417135a16d333bb728a64d17c0ae5b" }, { "id": "TH.17", "name": "Register Delegator", - "source": "import FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\nimport FlowIDTableStaking from 0x8624b52f9ddcd04a\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x1654653399040a61\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\nimport FlowIDTableStaking from 0x8624b52f9ddcd04a\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -315,12 +315,12 @@ } ], "network": "mainnet", - "hash": "80da4be458d929ca3933d717859425f652cfbac4ce0ed5124d6dae9bce59b8b2" + "hash": "6ea8beb7476819ce8cc499153580c1368b337534674b6bc8fe2150dd1052ba0a" }, { "id": "TH.19", "name": "Delegate New Locked FLOW", - "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowDelegator()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.delegateNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.delegateNewTokens(amount: amount)\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowDelegator()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.delegateNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.delegateNewTokens(amount: amount)\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -335,12 +335,12 @@ } ], "network": "mainnet", - "hash": "b7c7e03fdbbe2dee6efb35dfab741aba89a91122bd778efa1ed3ce7f4cc27e91" + "hash": "b526762455a00bcc877a5ac917c131ba3655047fd9d51e905faed1928c6259c0" }, { "id": "TH.20", "name": "Re-delegate Unstaked FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -355,12 +355,12 @@ } ], "network": "mainnet", - "hash": "2027331b72d8710a1a05feb6ecebadb5858d134bc8c95d6f261319cd9fa1bb95" + "hash": "89fef6670f7b03f41499aa92e3d43590514f8336d6f9ed2a9f3701439fd5508f" }, { "id": "TH.21", "name": "Re-delegate Rewarded FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateRewardedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateRewardedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -375,12 +375,12 @@ } ], "network": "mainnet", - "hash": "864edbff384335ef21c26b3bcf17d36b2b1d894afbe2b203f58099cc457971e4" + "hash": "9cb59ac5f6a3b35142b888a82871663d340499f39413ef853f7fa0a34076940b" }, { "id": "TH.22", "name": "Unstake Delegated FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.requestUnstaking(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.requestUnstaking(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -395,12 +395,12 @@ } ], "network": "mainnet", - "hash": "262aeddd3f49fd6222d706c02696bd7d359ba962b6c30232cc93d7cf4166a23e" + "hash": "544af342726bbf514d3ae69bce42bc078ba6156adab7666ba8bd2ef100960704" }, { "id": "TH.23", "name": "Withdraw Unstaked FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -415,12 +415,12 @@ } ], "network": "mainnet", - "hash": "12675a013c064b6d0ef11dbf13f92210489bf2b3d299b2f14cd09be70b37577f" + "hash": "766bcd922dc726f184ddbfe1638581c6bcb94b27a496fcab2c327a19c1ccec30" }, { "id": "TH.24", "name": "Withdraw Rewarded FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FlowToken from 0x1654653399040a61\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let delegatorProxy = self.holderRef.borrowDelegator()\n\n delegatorProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport FlowToken from 0x1654653399040a61\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let delegatorProxy = self.holderRef.borrowDelegator()\n\n delegatorProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -435,7 +435,7 @@ } ], "network": "mainnet", - "hash": "239ffa449eae5560eec3e99633dcf9c63b1e9c99996d1c5636644dceef9ec44b" + "hash": "0e1bfccd9bf67eb5ce8bdac1df0ae1f2e5bab6262805e4fdcc43c3572dfa00fc" }, { "id": "TH.25", @@ -460,10 +460,10 @@ { "id": "SCO.01", "name": "Setup Staking Collection", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport FlowIDTableStaking from 0x8624b52f9ddcd04a\nimport LockedTokens from 0x8d0e87b65159ae63\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// This transaction sets up an account to use a staking collection\n/// It will work regardless of whether they have a regular account, a two-account locked tokens setup,\n/// or staking objects stored in the unlocked account\n\ntransaction {\n prepare(signer: AuthAccount) {\n\n // If there isn't already a staking collection\n if signer.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath) == nil {\n\n // Create private capabilities for the token holder and unlocked vault\n let lockedHolder = signer.link\u003c\u0026LockedTokens.TokenHolder\u003e(/private/flowTokenHolder, target: LockedTokens.TokenHolderStoragePath)!\n let flowToken = signer.link\u003c\u0026FlowToken.Vault\u003e(/private/flowTokenVault, target: /storage/flowTokenVault)!\n \n // Create a new Staking Collection and put it in storage\n if lockedHolder.check() {\n signer.save(\u003c-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: lockedHolder), to: FlowStakingCollection.StakingCollectionStoragePath)\n } else {\n signer.save(\u003c-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: nil), to: FlowStakingCollection.StakingCollectionStoragePath)\n }\n\n // Create a public link to the staking collection\n signer.link\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(\n FlowStakingCollection.StakingCollectionPublicPath,\n target: FlowStakingCollection.StakingCollectionStoragePath\n )\n }\n\n // borrow a reference to the staking collection\n let collectionRef = signer.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow staking collection reference\")\n\n // If there is a node staker object in the account, put it in the staking collection\n if signer.borrow\u003c\u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath) != nil {\n let node \u003c- signer.load\u003c@FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)!\n collectionRef.addNodeObject(\u003c-node, machineAccountInfo: nil)\n }\n\n // If there is a delegator object in the account, put it in the staking collection\n if signer.borrow\u003c\u0026FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath) != nil {\n let delegator \u003c- signer.load\u003c@FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath)!\n collectionRef.addDelegatorObject(\u003c-delegator)\n }\n }\n}\n", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport FlowIDTableStaking from 0x8624b52f9ddcd04a\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// This transaction sets up an account to use a staking collection\n/// It will work regardless of whether they have a regular account, a two-account locked tokens setup,\n/// or staking objects stored in the unlocked account\n\ntransaction {\n prepare(signer: AuthAccount) {\n\n // If there isn't already a staking collection\n if signer.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath) == nil {\n\n // Create private capabilities for the token holder and unlocked vault\n let lockedHolder = signer.link\u003c\u0026LockedTokens.TokenHolder\u003e(/private/flowTokenHolder, target: LockedTokens.TokenHolderStoragePath)!\n let flowToken = signer.link\u003c\u0026FlowToken.Vault\u003e(/private/flowTokenVault, target: /storage/flowTokenVault)!\n \n // Create a new Staking Collection and put it in storage\n if lockedHolder.check() {\n signer.save(\u003c-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: lockedHolder), to: FlowStakingCollection.StakingCollectionStoragePath)\n } else {\n signer.save(\u003c-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: nil), to: FlowStakingCollection.StakingCollectionStoragePath)\n }\n\n // Create a public link to the staking collection\n signer.link\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(\n FlowStakingCollection.StakingCollectionPublicPath,\n target: FlowStakingCollection.StakingCollectionStoragePath\n )\n }\n\n // borrow a reference to the staking collection\n let collectionRef = signer.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow staking collection reference\")\n\n // If there is a node staker object in the account, put it in the staking collection\n if signer.borrow\u003c\u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath) != nil {\n let node \u003c- signer.load\u003c@FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)!\n collectionRef.addNodeObject(\u003c-node, machineAccountInfo: nil)\n }\n\n // If there is a delegator object in the account, put it in the staking collection\n if signer.borrow\u003c\u0026FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath) != nil {\n let delegator \u003c- signer.load\u003c@FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath)!\n collectionRef.addDelegatorObject(\u003c-delegator)\n }\n }\n}\n", "arguments": [], "network": "mainnet", - "hash": "0e5c2445c0b1016eed4f60c429f233aa0bb223a0d9ff2aedffce00a58037a2bf" + "hash": "e7c2f878ed8a6e30184ae24b8952c2d9ee3b633c80debef21f9755d5146c54ff" }, { "id": "SCO.02", diff --git a/lib/go/templates/manifest.testnet.json b/lib/go/templates/manifest.testnet.json index e3b75db6d..8eac8f2da 100755 --- a/lib/go/templates/manifest.testnet.json +++ b/lib/go/templates/manifest.testnet.json @@ -4,7 +4,7 @@ { "id": "TH.01", "name": "Withdraw Unlocked FLOW", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: AuthAccount) {\n self.holderRef = acct.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: AuthAccount) {\n self.holderRef = acct.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -19,12 +19,12 @@ } ], "network": "testnet", - "hash": "6e73db6edd0190f5311f6adc5f2b1f27e9e60c68574b00ee90da867da52cdbb1" + "hash": "9fbbe64757ff548a2b7ac1422c41dbe61c86af00f5a3cedf3b3ecd1371b9013a" }, { "id": "TH.02", "name": "Deposit Unlocked FLOW", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: AuthAccount) {\n self.holderRef = acct.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: AuthAccount) {\n self.holderRef = acct.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -39,12 +39,12 @@ } ], "network": "testnet", - "hash": "e806681df17e7d6baef776f46d774226384ecbe92949ed368e27a80657b9d335" + "hash": "f34a9b437a9035340e89638e6cf6d4212397e452155bf330628509515fc2e84a" }, { "id": "TH.06", "name": "Register Node", - "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow ref to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let nodeInfo = StakingProxy.NodeInfo(nodeID: id, role: role, networkingAddress: networkingAddress, networkingKey: networkingKey, stakingKey: stakingKey)\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n \n }\n}\n", + "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow ref to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let nodeInfo = StakingProxy.NodeInfo(nodeID: id, role: role, networkingAddress: networkingAddress, networkingKey: networkingKey, stakingKey: stakingKey)\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n \n }\n}\n", "arguments": [ { "type": "String", @@ -114,12 +114,12 @@ } ], "network": "testnet", - "hash": "acbd093e289e0225ffa1ac630e762047acc56b2621f2af1f4850a276e4394876" + "hash": "868f075ec47aa0e2ce868de3625a406d7faa544d6bb133dc43a717bed850da47" }, { "id": "TH.08", "name": "Stake New Locked FLOW", - "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\n\nimport LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.stakeNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.stakeNewTokens(amount: amount)\n \n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\n\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.stakeNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.stakeNewTokens(amount: amount)\n \n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -134,12 +134,12 @@ } ], "network": "testnet", - "hash": "551aa85f14d043633bcd04649eb2b90291cbdb4d93b46fe39e1109b50bfe19f9" + "hash": "09f8712ea984980a581dd7beaae5e21c74b80c0006be1fcb121d2759258bb708" }, { "id": "TH.09", "name": "Re-stake Unstaked FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -154,12 +154,12 @@ } ], "network": "testnet", - "hash": "23e5bfd594bb3245090e3e0bafb9cb9246fc84d30e4a35a7fde1b51085624d86" + "hash": "cc8eb7cc3d758b660ef80ebcf8e032e77d6d428e9b38916c1baf48b22fe10985" }, { "id": "TH.10", "name": "Re-stake Rewarded FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeRewardedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeRewardedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -174,12 +174,12 @@ } ], "network": "testnet", - "hash": "239319825ad68178e76465b5ea18cb43f06c4ee11341f8fe9424809163a027a5" + "hash": "8d8a83cba1748e759c209b4e43241ea6e4f42d7d4250bd0d5c1054ce38deabcd" }, { "id": "TH.11", "name": "Request Unstake of FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.requestUnstaking(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.requestUnstaking(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -194,20 +194,20 @@ } ], "network": "testnet", - "hash": "33e3977c45e7c23c1472bcf334d00b03ebf91b06b67c57b63b562c7b1ff5c59f" + "hash": "9e3b012e573e53f5f1637ef42ad7737a7c954cb972cb3d468c5c895d8a07bd0f" }, { "id": "TH.12", "name": "Unstake All FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction() {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.unstakeAll()\n }\n}\n", + "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction() {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.unstakeAll()\n }\n}\n", "arguments": [], "network": "testnet", - "hash": "f92c4cd663b2e335cd821a656bb2ebcf239b222036a7825af5e512fad4d82035" + "hash": "b35d723cf5560a7f54fe51509647f3339e7cdb7bcd133e3abf5c75e618e93e25" }, { "id": "TH.13", "name": "Withdraw Unstaked FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -222,12 +222,12 @@ } ], "network": "testnet", - "hash": "90097e3aff9b67f65bbada3cdedbb73d45d093ff333aaaff38809bf9910a3e39" + "hash": "06482448c9a2845762611207ae4fa5bf80600bf9d3736c0e39440a809ad2bc5e" }, { "id": "TH.14", "name": "Withdraw Rewarded FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FlowToken from 0x7e60df042a9c0868\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport FlowToken from 0x7e60df042a9c0868\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -242,12 +242,12 @@ } ], "network": "testnet", - "hash": "f23406ff402f02418629432912ce732be0441b1a7e71f16c03d688a165ff7f49" + "hash": "142da415f99a8e428fb426095593df83488e3bf735f7f3cc73dc55534b8ac477" }, { "id": "TH.16", "name": "Register Operator Node", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).getCapability\n \u003c\u0026StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}\u003e\n (StakingProxy.NodeOperatorCapabilityPublicPath)!.borrow() \n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", + "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).getCapability\n \u003c\u0026StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}\u003e\n (StakingProxy.NodeOperatorCapabilityPublicPath)!.borrow() \n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", "arguments": [ { "type": "Address", @@ -284,12 +284,12 @@ } ], "network": "testnet", - "hash": "c29d4024aaeb71ab478182542499e0ba3d5d303ec027252e3b8333515ee3de48" + "hash": "3bf72cb08ad81a230a8ceeb4850f1d05721d9b2bb0518daaeb428d8e40f4cf8f" }, { "id": "TH.17", "name": "Register Delegator", - "source": "import FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\nimport FlowIDTableStaking from 0x9eca2b38b18b5dfe\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\nimport FlowIDTableStaking from 0x9eca2b38b18b5dfe\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -315,12 +315,12 @@ } ], "network": "testnet", - "hash": "9e952288b6359fde87fb91537e76e663d4e10e7ce495f7b8c763d38ab54cd232" + "hash": "c5a6eedd41b6d66f0b0479afb47379c00fc16a0d56ac29dcfa95aead94a21ecd" }, { "id": "TH.19", "name": "Delegate New Locked FLOW", - "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowDelegator()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.delegateNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.delegateNewTokens(amount: amount)\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowDelegator()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.delegateNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.delegateNewTokens(amount: amount)\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -335,12 +335,12 @@ } ], "network": "testnet", - "hash": "7a8f09e4af477d551c4366e4b644718aa41e71210e043f8820dbd7dee7af38e8" + "hash": "d815c147e9f2c4c8c71ff703b76edaba0929ea5ad8df37621d1296a86504f0bb" }, { "id": "TH.20", "name": "Re-delegate Unstaked FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -355,12 +355,12 @@ } ], "network": "testnet", - "hash": "8776b1521b04395754734f8f40d4a0482863274f8d832973d9e011b3cbb48c85" + "hash": "89fef6670f7b03f41499aa92e3d43590514f8336d6f9ed2a9f3701439fd5508f" }, { "id": "TH.21", "name": "Re-delegate Rewarded FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateRewardedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateRewardedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -375,12 +375,12 @@ } ], "network": "testnet", - "hash": "6b40ffc9169abd75107a45da5974c7e502d38773275abb231d747e4760b7ebee" + "hash": "9cb59ac5f6a3b35142b888a82871663d340499f39413ef853f7fa0a34076940b" }, { "id": "TH.22", "name": "Unstake Delegated FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.requestUnstaking(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.requestUnstaking(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -395,12 +395,12 @@ } ], "network": "testnet", - "hash": "61cbcd1c31bbfc9ceb4a5ac726e2f8b3d845a4fdf59b0ab23cbbfa8f16d7a024" + "hash": "544af342726bbf514d3ae69bce42bc078ba6156adab7666ba8bd2ef100960704" }, { "id": "TH.23", "name": "Withdraw Unstaked FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -415,12 +415,12 @@ } ], "network": "testnet", - "hash": "2ae983f78e32b989fafa58ee7910b131fb51a2a74356f7916624695cb8bf5964" + "hash": "766bcd922dc726f184ddbfe1638581c6bcb94b27a496fcab2c327a19c1ccec30" }, { "id": "TH.24", "name": "Withdraw Rewarded FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FlowToken from 0x7e60df042a9c0868\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let delegatorProxy = self.holderRef.borrowDelegator()\n\n delegatorProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport FlowToken from 0x7e60df042a9c0868\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let delegatorProxy = self.holderRef.borrowDelegator()\n\n delegatorProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -435,7 +435,7 @@ } ], "network": "testnet", - "hash": "385042aa453566fcff0b2bd418b837d8f46fbc23b1b46e6651b25a395bc04be8" + "hash": "4b1c0424b9a165fb1d35dd4a5aada45054f283bddfec126a9e7116d920b3c93f" }, { "id": "TH.25", @@ -460,10 +460,10 @@ { "id": "SCO.01", "name": "Setup Staking Collection", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport FlowIDTableStaking from 0x9eca2b38b18b5dfe\nimport LockedTokens from 0x95e019a17d0e23d7\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// This transaction sets up an account to use a staking collection\n/// It will work regardless of whether they have a regular account, a two-account locked tokens setup,\n/// or staking objects stored in the unlocked account\n\ntransaction {\n prepare(signer: AuthAccount) {\n\n // If there isn't already a staking collection\n if signer.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath) == nil {\n\n // Create private capabilities for the token holder and unlocked vault\n let lockedHolder = signer.link\u003c\u0026LockedTokens.TokenHolder\u003e(/private/flowTokenHolder, target: LockedTokens.TokenHolderStoragePath)!\n let flowToken = signer.link\u003c\u0026FlowToken.Vault\u003e(/private/flowTokenVault, target: /storage/flowTokenVault)!\n \n // Create a new Staking Collection and put it in storage\n if lockedHolder.check() {\n signer.save(\u003c-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: lockedHolder), to: FlowStakingCollection.StakingCollectionStoragePath)\n } else {\n signer.save(\u003c-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: nil), to: FlowStakingCollection.StakingCollectionStoragePath)\n }\n\n // Create a public link to the staking collection\n signer.link\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(\n FlowStakingCollection.StakingCollectionPublicPath,\n target: FlowStakingCollection.StakingCollectionStoragePath\n )\n }\n\n // borrow a reference to the staking collection\n let collectionRef = signer.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow staking collection reference\")\n\n // If there is a node staker object in the account, put it in the staking collection\n if signer.borrow\u003c\u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath) != nil {\n let node \u003c- signer.load\u003c@FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)!\n collectionRef.addNodeObject(\u003c-node, machineAccountInfo: nil)\n }\n\n // If there is a delegator object in the account, put it in the staking collection\n if signer.borrow\u003c\u0026FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath) != nil {\n let delegator \u003c- signer.load\u003c@FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath)!\n collectionRef.addDelegatorObject(\u003c-delegator)\n }\n }\n}\n", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport FlowIDTableStaking from 0x9eca2b38b18b5dfe\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// This transaction sets up an account to use a staking collection\n/// It will work regardless of whether they have a regular account, a two-account locked tokens setup,\n/// or staking objects stored in the unlocked account\n\ntransaction {\n prepare(signer: AuthAccount) {\n\n // If there isn't already a staking collection\n if signer.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath) == nil {\n\n // Create private capabilities for the token holder and unlocked vault\n let lockedHolder = signer.link\u003c\u0026LockedTokens.TokenHolder\u003e(/private/flowTokenHolder, target: LockedTokens.TokenHolderStoragePath)!\n let flowToken = signer.link\u003c\u0026FlowToken.Vault\u003e(/private/flowTokenVault, target: /storage/flowTokenVault)!\n \n // Create a new Staking Collection and put it in storage\n if lockedHolder.check() {\n signer.save(\u003c-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: lockedHolder), to: FlowStakingCollection.StakingCollectionStoragePath)\n } else {\n signer.save(\u003c-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: nil), to: FlowStakingCollection.StakingCollectionStoragePath)\n }\n\n // Create a public link to the staking collection\n signer.link\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(\n FlowStakingCollection.StakingCollectionPublicPath,\n target: FlowStakingCollection.StakingCollectionStoragePath\n )\n }\n\n // borrow a reference to the staking collection\n let collectionRef = signer.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow staking collection reference\")\n\n // If there is a node staker object in the account, put it in the staking collection\n if signer.borrow\u003c\u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath) != nil {\n let node \u003c- signer.load\u003c@FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)!\n collectionRef.addNodeObject(\u003c-node, machineAccountInfo: nil)\n }\n\n // If there is a delegator object in the account, put it in the staking collection\n if signer.borrow\u003c\u0026FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath) != nil {\n let delegator \u003c- signer.load\u003c@FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath)!\n collectionRef.addDelegatorObject(\u003c-delegator)\n }\n }\n}\n", "arguments": [], "network": "testnet", - "hash": "a524b4094fcaf1051dbf43ac33ff80bb2f553670c58eeeb719757972a25d6b50" + "hash": "bac479e1708351949d2260899d4d638c84771dde48f34be076ba38593c771697" }, { "id": "SCO.02", diff --git a/lib/go/templates/templates.go b/lib/go/templates/templates.go index 0795aa594..ea9bb229e 100644 --- a/lib/go/templates/templates.go +++ b/lib/go/templates/templates.go @@ -19,7 +19,8 @@ const ( placeholderFlowTokenAddress = "\"FlowToken\"" OLD_placeholderFlowTokenAddress = "0xFLOWTOKENADDRESS" placeholderIDTableAddress = "\"FlowIDTableStaking\"" - placeholderLockedTokensAddress = "0xLOCKEDTOKENADDRESS" + placeholderLockedTokensAddress = "\"LockedTokens\"" + OLD_placeholderLockedTokensAddress = "0xLOCKEDTOKENADDRESS" placeholderStakingProxyAddress = "0xSTAKINGPROXYADDRESS" placeholderQuorumCertificateAddress = "0xQCADDRESS" placeholderFlowFeesAddress = "0xFLOWFEESADDRESS" diff --git a/lib/go/test/flow_epoch_test.go b/lib/go/test/flow_epoch_test.go index 025e703ac..b0e077ebc 100644 --- a/lib/go/test/flow_epoch_test.go +++ b/lib/go/test/flow_epoch_test.go @@ -95,23 +95,22 @@ func TestEpochClusters(t *testing.T) { randomSource, // random source rewardIncreaseFactor) - t.Run("Should be able to randomize an array of strings", func(t *testing.T) { + // t.Run("Should be able to randomize an array of strings", func(t *testing.T) { - adminString, _ := cadence.NewString(adminID) - joshString, _ := cadence.NewString(joshID) - maxString, _ := cadence.NewString(maxID) - accessString, _ := cadence.NewString(accessID) - idArray := cadence.NewArray([]cadence.Value{adminString, joshString, maxString, accessString}) - result := executeScriptAndCheck(t, b, templates.GenerateGetRandomizeScript(env), [][]byte{jsoncdc.MustEncode(idArray)}) - assertEqual(t, 4, len(result.(cadence.Array).Values)) + // adminString, _ := cadence.NewString(adminID) + // joshString, _ := cadence.NewString(joshID) + // maxString, _ := cadence.NewString(maxID) + // accessString, _ := cadence.NewString(accessID) + // idArray := cadence.NewArray([]cadence.Value{adminString, joshString, maxString, accessString}) + // result := executeScriptAndCheck(t, b, templates.GenerateGetRandomizeScript(env), [][]byte{jsoncdc.MustEncode(idArray)}) + // assertEqual(t, 4, len(result.(cadence.Array).Values)) - }) + // }) code := ` transaction { prepare(acct: AuthAccount) { let number = unsafeRandom() - acct.save(number, to: /storage/number) } }` @@ -124,15 +123,15 @@ func TestEpochClusters(t *testing.T) { ) // create new user accounts, mint tokens for them, and register them for staking - addresses, _, signers := registerAndMintManyAccounts(t, b, env, accountKeys, numEpochAccounts) - ids, _, _ := generateNodeIDs(numEpochAccounts) - _, stakingPublicKeys, _, networkingPublicKeys := generateManyNodeKeys(t, numEpochAccounts) - registerNodesForStaking(t, b, env, - addresses, - signers, - stakingPublicKeys, - networkingPublicKeys, - ids) + // addresses, _, signers := registerAndMintManyAccounts(t, b, env, accountKeys, numEpochAccounts) + // ids, _, _ := generateNodeIDs(numEpochAccounts) + // _, stakingPublicKeys, _, networkingPublicKeys := generateManyNodeKeys(t, numEpochAccounts) + // registerNodesForStaking(t, b, env, + // addresses, + // signers, + // stakingPublicKeys, + // networkingPublicKeys, + // ids) // t.Run("Should be able to create collector clusters from an array of ids signed up for staking", func(t *testing.T) { // string0, _ := cadence.NewString(ids[0]) From da1b7b57f180b8c76f6d552a60f59e8f77146141 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 22 Aug 2023 14:14:36 -0500 Subject: [PATCH 034/160] update to latest token standards and update locked tokens transactions --- contracts/FlowToken.cdc | 2 +- .../testContracts/TestFlowIDTableStaking.cdc | 112 ++++++++-------- lib/go/contracts/contracts_test.go | 50 +------- lib/go/contracts/go.mod | 4 +- lib/go/contracts/go.sum | 2 + lib/go/templates/internal/assets/assets.go | 120 +++++++++--------- lib/go/templates/manifest.mainnet.json | 76 +++++------ lib/go/templates/manifest.testnet.json | 76 +++++------ lib/go/templates/templates.go | 6 + .../admin/admin_create_shared_accounts.cdc | 12 +- .../admin/admin_deposit_account_creator.cdc | 13 +- .../admin/check_main_registration.cdc | 9 +- ...tody_create_account_with_lease_account.cdc | 12 +- .../custody_create_only_lease_account.cdc | 12 +- .../custody_create_only_shared_account.cdc | 12 +- .../admin/custody_create_shared_accounts.cdc | 12 +- .../admin/custody_setup_account_creator.cdc | 22 ++-- .../admin/deposit_locked_tokens.cdc | 4 +- .../unlock_tokens_for_multiple_accounts.cdc | 17 ++- .../delegator/get_delegator_id.cdc | 5 +- .../delegator/get_delegator_info.cdc | 2 +- .../delegator/get_delegator_node_id.cdc | 5 +- .../lockedTokens/staker/get_node_id.cdc | 5 +- .../lockedTokens/staker/get_staker_info.cdc | 2 +- .../user/get_locked_account_address.cdc | 5 +- .../user/get_locked_account_balance.cdc | 5 +- .../user/get_multiple_unlock_limits.cdc | 5 +- .../lockedTokens/user/get_total_balance.cdc | 4 +- .../lockedTokens/user/get_unlock_limit.cdc | 5 +- 29 files changed, 295 insertions(+), 321 deletions(-) diff --git a/contracts/FlowToken.cdc b/contracts/FlowToken.cdc index 37b7ae98b..78b81d146 100644 --- a/contracts/FlowToken.cdc +++ b/contracts/FlowToken.cdc @@ -41,7 +41,7 @@ access(all) contract FlowToken: ViewResolver { // out of thin air. A special Minter resource needs to be defined to mint // new tokens. // - access(all) resource Vault: FungibleToken.Vault, FungibleToken.Provider, FungibleToken.Receiver, FungibleToken.Balance, ViewResolver.Resolver { + access(all) resource Vault: FungibleToken.Vault, FungibleToken.Provider, FungibleToken.Receiver, ViewResolver.Resolver { // holds the balance of a users tokens access(all) var balance: UFix64 diff --git a/contracts/testContracts/TestFlowIDTableStaking.cdc b/contracts/testContracts/TestFlowIDTableStaking.cdc index 8ecf63376..ac6e728a7 100644 --- a/contracts/testContracts/TestFlowIDTableStaking.cdc +++ b/contracts/testContracts/TestFlowIDTableStaking.cdc @@ -10,17 +10,17 @@ import FungibleToken from "FungibleToken" import FlowToken from "FlowToken" -pub contract FlowIDTableStaking { +access(all) contract FlowIDTableStaking { /*********** ID Table and Staking Composite Type Definitions *************/ /// Contains information that is specific to a node in Flow /// only lives in this contract - pub resource NodeRecord { + access(all) resource NodeRecord { /// The unique ID of the node /// Set when the node is created - pub let id: String + access(all) let id: String /// The type of node: /// 1 = collection @@ -28,16 +28,16 @@ pub contract FlowIDTableStaking { /// 3 = execution /// 4 = verification /// 5 = access - pub var role: UInt8 + access(all) var role: UInt8 /// The address used for networking - pub(set) var networkingAddress: String + access(all) var networkingAddress: String /// the public key for networking - pub(set) var networkingKey: String + access(all) var networkingKey: String /// the public key for staking - pub(set) var stakingKey: String + access(all) var stakingKey: String init( id: String, @@ -45,7 +45,7 @@ pub contract FlowIDTableStaking { networkingAddress: String, networkingKey: String, stakingKey: String, - tokensCommitted: @FungibleToken.Vault + tokensCommitted: @{FungibleToken.Vault} ) { self.id = id @@ -59,24 +59,24 @@ pub contract FlowIDTableStaking { } // Struct to create to get read-only info about a node - pub struct NodeInfo { - pub let id: String - pub let role: UInt8 - pub let networkingAddress: String - pub let networkingKey: String - pub let stakingKey: String - pub let tokensStaked: UFix64 - pub let totalTokensStaked: UFix64 - pub let tokensCommitted: UFix64 - pub let tokensUnstaking: UFix64 - pub let tokensUnstaked: UFix64 - pub let tokensRewarded: UFix64 + access(all) struct NodeInfo { + access(all) let id: String + access(all) let role: UInt8 + access(all) let networkingAddress: String + access(all) let networkingKey: String + access(all) let stakingKey: String + access(all) let tokensStaked: UFix64 + access(all) let totalTokensStaked: UFix64 + access(all) let tokensCommitted: UFix64 + access(all) let tokensUnstaking: UFix64 + access(all) let tokensUnstaked: UFix64 + access(all) let tokensRewarded: UFix64 /// list of delegator IDs for this node operator - pub let delegators: [UInt32] - pub let delegatorIDCounter: UInt32 - pub let tokensRequestedToUnstake: UFix64 - pub let initialWeight: UInt64 + access(all) let delegators: [UInt32] + access(all) let delegatorIDCounter: UInt32 + access(all) let tokensRequestedToUnstake: UFix64 + access(all) let initialWeight: UInt64 init(nodeID: String) { @@ -99,51 +99,51 @@ pub contract FlowIDTableStaking { } /// Resource that the node operator controls for staking - pub resource NodeStaker { + access(all) resource NodeStaker { /// Unique ID for the node operator - pub let id: String + access(all) let id: String init(id: String) { self.id = id } - pub fun updateNetworkingAddress(_ newAddress: String) { + access(all) fun updateNetworkingAddress(_ newAddress: String) { } /// Add new tokens to the system to stake during the next epoch - pub fun stakeNewTokens(_ tokens: @FungibleToken.Vault) { + access(all) fun stakeNewTokens(_ tokens: @{FungibleToken.Vault}) { destroy tokens } /// Stake tokens that are in the tokensUnstaked bucket /// but haven't been officially staked - pub fun stakeUnstakedTokens(amount: UFix64) { + access(all) fun stakeUnstakedTokens(amount: UFix64) { } /// Stake tokens that are in the tokensRewarded bucket /// but haven't been officially staked - pub fun stakeRewardedTokens(amount: UFix64) { + access(all) fun stakeRewardedTokens(amount: UFix64) { } /// Request amount tokens to be removed from staking /// at the end of the next epoch - pub fun requestUnstaking(amount: UFix64) { + access(all) fun requestUnstaking(amount: UFix64) { } /// Requests to unstake all of the node operators staked and committed tokens, /// as well as all the staked and committed tokens of all of their delegators - pub fun unstakeAll() { + access(all) fun unstakeAll() { } /// Withdraw tokens from the unstaked bucket - pub fun withdrawUnstakedTokens(amount: UFix64): @FungibleToken.Vault { + access(all) fun withdrawUnstakedTokens(amount: UFix64): @{FungibleToken.Vault} { let flowTokenMinter = FlowIDTableStaking.account.borrow<&FlowToken.Minter>(from: /storage/flowTokenMinter) ?? panic("Could not borrow minter reference") @@ -152,7 +152,7 @@ pub contract FlowIDTableStaking { } /// Withdraw tokens from the rewarded bucket - pub fun withdrawRewardedTokens(amount: UFix64): @FungibleToken.Vault { + access(all) fun withdrawRewardedTokens(amount: UFix64): @{FungibleToken.Vault} { let flowTokenMinter = FlowIDTableStaking.account.borrow<&FlowToken.Minter>(from: /storage/flowTokenMinter) ?? panic("Could not borrow minter reference") @@ -161,16 +161,16 @@ pub contract FlowIDTableStaking { } - pub struct DelegatorInfo { + access(all) struct DelegatorInfo { - pub let id: UInt32 - pub let nodeID: String - pub let tokensCommitted: UFix64 - pub let tokensStaked: UFix64 - pub let tokensUnstaking: UFix64 - pub let tokensRewarded: UFix64 - pub let tokensUnstaked: UFix64 - pub let tokensRequestedToUnstake: UFix64 + access(all) let id: UInt32 + access(all) let nodeID: String + access(all) let tokensCommitted: UFix64 + access(all) let tokensStaked: UFix64 + access(all) let tokensUnstaking: UFix64 + access(all) let tokensRewarded: UFix64 + access(all) let tokensUnstaked: UFix64 + access(all) let tokensRequestedToUnstake: UFix64 init(nodeID: String, delegatorID: UInt32) { @@ -188,13 +188,13 @@ pub contract FlowIDTableStaking { /// Resource object that the delegator stores in their account /// to perform staking actions - pub resource NodeDelegator { + access(all) resource NodeDelegator { /// Each delegator for a node operator has a unique ID - pub let id: UInt32 + access(all) let id: UInt32 /// The ID of the node operator that this delegator delegates to - pub let nodeID: String + access(all) let nodeID: String init(id: UInt32, nodeID: String) { self.id = id @@ -202,28 +202,28 @@ pub contract FlowIDTableStaking { } /// Delegate new tokens to the node operator - pub fun delegateNewTokens(from: @FungibleToken.Vault) { + access(all) fun delegateNewTokens(from: @{FungibleToken.Vault}) { destroy from } /// Delegate tokens from the unstaked bucket to the node operator - pub fun delegateUnstakedTokens(amount: UFix64) { + access(all) fun delegateUnstakedTokens(amount: UFix64) { } /// Delegate tokens from the rewards bucket to the node operator - pub fun delegateRewardedTokens(amount: UFix64) { + access(all) fun delegateRewardedTokens(amount: UFix64) { } /// Request to unstake delegated tokens during the next epoch - pub fun requestUnstaking(amount: UFix64) { + access(all) fun requestUnstaking(amount: UFix64) { } /// Withdraw tokens from the unstaked bucket - pub fun withdrawUnstakedTokens(amount: UFix64): @FungibleToken.Vault { + access(all) fun withdrawUnstakedTokens(amount: UFix64): @{FungibleToken.Vault} { let flowTokenMinter = FlowIDTableStaking.account.borrow<&FlowToken.Minter>(from: /storage/flowTokenMinter) ?? panic("Could not borrow minter reference") @@ -231,7 +231,7 @@ pub contract FlowIDTableStaking { } /// Withdraw tokens from the rewarded bucket - pub fun withdrawRewardedTokens(amount: UFix64): @FungibleToken.Vault { + access(all) fun withdrawRewardedTokens(amount: UFix64): @{FungibleToken.Vault} { let flowTokenMinter = FlowIDTableStaking.account.borrow<&FlowToken.Minter>(from: /storage/flowTokenMinter) ?? panic("Could not borrow minter reference") @@ -242,13 +242,13 @@ pub contract FlowIDTableStaking { /// Any node can call this function to register a new Node /// It returns the resource for nodes that they can store in /// their account storage - pub fun addNodeRecord( + access(all) fun addNodeRecord( id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, - tokensCommitted: @FungibleToken.Vault + tokensCommitted: @{FungibleToken.Vault} ): @NodeStaker { destroy tokensCommitted @@ -257,7 +257,7 @@ pub contract FlowIDTableStaking { } - pub fun registerNewDelegator(nodeID: String, tokensCommitted: @FungibleToken.Vault): @NodeDelegator { + access(all) fun registerNewDelegator(nodeID: String, tokensCommitted: @{FungibleToken.Vault}): @NodeDelegator { destroy tokensCommitted @@ -265,7 +265,7 @@ pub contract FlowIDTableStaking { } /// Gets the minimum stake requirement for delegators - pub fun getDelegatorMinimumStakeRequirement(): UFix64 { + access(all) fun getDelegatorMinimumStakeRequirement(): UFix64 { return self.account.copy(from: /storage/delegatorStakingMinimum) ?? 0.0 } diff --git a/lib/go/contracts/contracts_test.go b/lib/go/contracts/contracts_test.go index 2b568da19..e27be412c 100644 --- a/lib/go/contracts/contracts_test.go +++ b/lib/go/contracts/contracts_test.go @@ -5,8 +5,6 @@ import ( "github.com/stretchr/testify/assert" - "github.com/onflow/flow-core-contracts/lib/go/templates" - "github.com/onflow/flow-core-contracts/lib/go/contracts" ) @@ -15,53 +13,27 @@ const ( ) func TestFlowTokenContract(t *testing.T) { - env := templates.Environment{ - FungibleTokenAddress: fakeAddr, - ViewResolverAddress: fakeAddr, - BurnerAddress: fakeAddr, - } - contract := contracts.FlowToken(env) + contract := contracts.FlowToken(fakeAddr, fakeAddr, fakeAddr, fakeAddr) assert.NotNil(t, contract) } func TestFlowFeesContract(t *testing.T) { - env := templates.Environment{ - FungibleTokenAddress: fakeAddr, - FlowTokenAddress: fakeAddr, - StorageFeesAddress: fakeAddr, - } - contract := contracts.FlowFees(env) + contract := contracts.FlowFees(fakeAddr, fakeAddr, fakeAddr) assert.NotNil(t, contract) } func TestStorageFeesContract(t *testing.T) { - env := templates.Environment{ - FungibleTokenAddress: fakeAddr, - FlowTokenAddress: fakeAddr, - } - contract := contracts.FlowStorageFees(env) + contract := contracts.FlowStorageFees(fakeAddr, fakeAddr) assert.NotNil(t, contract) } func TestFlowServiceAccountContract(t *testing.T) { - env := templates.Environment{ - FungibleTokenAddress: fakeAddr, - FlowTokenAddress: fakeAddr, - StorageFeesAddress: fakeAddr, - FlowFeesAddress: fakeAddr, - } - contract := contracts.FlowServiceAccount(env) + contract := contracts.FlowServiceAccount(fakeAddr, fakeAddr, fakeAddr, fakeAddr) assert.NotNil(t, contract) } func TestFlowIdentityTableContract(t *testing.T) { - env := templates.Environment{ - FungibleTokenAddress: fakeAddr, - FlowTokenAddress: fakeAddr, - BurnerAddress: fakeAddr, - FlowFeesAddress: fakeAddr, - } - contract := contracts.FlowIDTableStaking(env) + contract := contracts.FlowIDTableStaking(fakeAddr, fakeAddr, fakeAddr, true) assert.NotNil(t, contract) } @@ -71,17 +43,7 @@ func TestFlowQCContract(t *testing.T) { } func TestStakingCollection(t *testing.T) { - env := templates.Environment{ - FungibleTokenAddress: fakeAddr, - FlowTokenAddress: fakeAddr, - StorageFeesAddress: fakeAddr, - IDTableAddress: fakeAddr, - LockedTokensAddress: fakeAddr, - QuorumCertificateAddress: fakeAddr, - DkgAddress: fakeAddr, - EpochAddress: fakeAddr, - } - contract := contracts.FlowStakingCollection(env) + contract := contracts.FlowStakingCollection(fakeAddr, fakeAddr, fakeAddr, fakeAddr, fakeAddr, fakeAddr, fakeAddr, fakeAddr, fakeAddr) assert.NotNil(t, contract) } diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 39af12c6f..d0fd0d3b8 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -4,9 +4,9 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230726183918-f90805445bfa + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230818200853-ab1b03e98a95 github.com/onflow/flow-go-sdk v0.41.7-stable-cadence - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230726191152-4293bb676808 + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230818200521-3acffe2472a3 github.com/stretchr/testify v1.8.2 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index fc4248fa0..b1be73f70 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -930,6 +930,8 @@ github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230726190453-ac7ed4798148 github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230726190453-ac7ed4798148/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230726191152-4293bb676808 h1:c/MMB0UoLks5XVV4QZfdbZLTQVcyGMJstob25E5ZVHY= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230726191152-4293bb676808/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230818200521-3acffe2472a3 h1:JNDJQI1ID8qLvv8kynPkrUNo34II5RB/aw6PN9dpMV0= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230818200521-3acffe2472a3/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow/protobuf/go/flow v0.2.2/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/sdks v0.5.0/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index a854da1fb..edfe64b13 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -162,34 +162,34 @@ // idTableStaking/scripts/get_total_staked_by_type.cdc (256B) // idTableStaking/scripts/get_weekly_payout.cdc (202B) // inspect_field.cdc (122B) -// lockedTokens/admin/admin_create_shared_accounts.cdc (3.869kB) +// lockedTokens/admin/admin_create_shared_accounts.cdc (3.914kB) // lockedTokens/admin/admin_deploy_contract.cdc (443B) -// lockedTokens/admin/admin_deposit_account_creator.cdc (856B) +// lockedTokens/admin/admin_deposit_account_creator.cdc (815B) // lockedTokens/admin/admin_remove_delegator.cdc (448B) -// lockedTokens/admin/check_main_registration.cdc (980B) +// lockedTokens/admin/check_main_registration.cdc (948B) // lockedTokens/admin/check_shared_registration.cdc (616B) -// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.322kB) -// lockedTokens/admin/custody_create_only_lease_account.cdc (3.146kB) -// lockedTokens/admin/custody_create_only_shared_account.cdc (3.539kB) -// lockedTokens/admin/custody_create_shared_accounts.cdc (3.746kB) -// lockedTokens/admin/custody_setup_account_creator.cdc (643B) -// lockedTokens/admin/deposit_locked_tokens.cdc (1.682kB) +// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.367kB) +// lockedTokens/admin/custody_create_only_lease_account.cdc (3.191kB) +// lockedTokens/admin/custody_create_only_shared_account.cdc (3.584kB) +// lockedTokens/admin/custody_create_shared_accounts.cdc (3.791kB) +// lockedTokens/admin/custody_setup_account_creator.cdc (602B) +// lockedTokens/admin/deposit_locked_tokens.cdc (1.673kB) // lockedTokens/admin/get_unlocking_bad_accounts.cdc (480B) // lockedTokens/admin/unlock_tokens.cdc (576B) -// lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc (2.78kB) +// lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc (2.748kB) // lockedTokens/delegator/delegate_new_tokens.cdc (1.201kB) // lockedTokens/delegator/delegate_rewarded_tokens.cdc (528B) // lockedTokens/delegator/delegate_unstaked_tokens.cdc (520B) -// lockedTokens/delegator/get_delegator_id.cdc (442B) -// lockedTokens/delegator/get_delegator_info.cdc (1.47kB) -// lockedTokens/delegator/get_delegator_node_id.cdc (446B) +// lockedTokens/delegator/get_delegator_id.cdc (410B) +// lockedTokens/delegator/get_delegator_info.cdc (1.438kB) +// lockedTokens/delegator/get_delegator_node_id.cdc (414B) // lockedTokens/delegator/register_delegator.cdc (1.574kB) // lockedTokens/delegator/request_unstaking.cdc (522B) // lockedTokens/delegator/withdraw_rewarded_tokens.cdc (798B) // lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc (528B) // lockedTokens/delegator/withdraw_unstaked_tokens.cdc (528B) -// lockedTokens/staker/get_node_id.cdc (437B) -// lockedTokens/staker/get_staker_info.cdc (1.177kB) +// lockedTokens/staker/get_node_id.cdc (405B) +// lockedTokens/staker/get_staker_info.cdc (1.145kB) // lockedTokens/staker/register_node.cdc (1.493kB) // lockedTokens/staker/request_unstaking.cdc (522B) // lockedTokens/staker/stake_new_tokens.cdc (1.253kB) @@ -201,11 +201,11 @@ // lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc (528B) // lockedTokens/staker/withdraw_unstaked_tokens.cdc (528B) // lockedTokens/user/deposit_tokens.cdc (732B) -// lockedTokens/user/get_locked_account_address.cdc (451B) -// lockedTokens/user/get_locked_account_balance.cdc (450B) -// lockedTokens/user/get_multiple_unlock_limits.cdc (568B) -// lockedTokens/user/get_total_balance.cdc (2.85kB) -// lockedTokens/user/get_unlock_limit.cdc (441B) +// lockedTokens/user/get_locked_account_address.cdc (419B) +// lockedTokens/user/get_locked_account_balance.cdc (418B) +// lockedTokens/user/get_multiple_unlock_limits.cdc (536B) +// lockedTokens/user/get_total_balance.cdc (2.795kB) +// lockedTokens/user/get_unlock_limit.cdc (409B) // lockedTokens/user/withdraw_tokens.cdc (699B) // nodeVersionBeacon/admin/change_version_freeze_period.cdc (787B) // nodeVersionBeacon/admin/delete_version_boundary.cdc (812B) @@ -3594,7 +3594,7 @@ func inspect_fieldCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x57\x49\x6f\xeb\x36\x10\xbe\xeb\x57\x0c\x72\x28\x64\xc0\xb1\xfc\x8e\x15\x92\x3e\x18\x4e\x1e\x5a\x24\x6d\x82\x24\x6d\xcf\x8c\x34\xb6\x08\xd3\xa4\x4a\x52\x76\x8d\x20\xff\xbd\xa0\xa8\x8d\x12\xe5\xa5\x68\xf1\x7c\xb2\xa4\x6f\xb6\x6f\x16\x0e\xe9\x36\x17\x52\xc3\x52\x1e\x72\x2d\x82\xea\xe9\x1b\x13\xfb\x37\xb1\x41\x0e\x2b\x29\xb6\x70\xd5\x3c\x5f\x35\x88\x82\xaf\xe9\x3b\x43\x07\xd5\x7d\xd7\x20\x1f\x45\xb2\xc1\xb4\x7c\xa7\x2c\x70\xfe\xf7\xe3\xd3\xf2\xe1\xfe\xee\xed\xe9\xe1\xfe\xb7\xc5\xdd\xdd\xcb\xfd\xeb\x6b\x10\x44\x51\x04\x6f\x92\x70\x45\x12\x4d\x05\x07\x9d\x11\x0d\x3a\x43\xd8\x12\xca\x41\x97\x76\x48\xba\xa5\x1c\xf6\xa2\x60\x29\x28\xba\xe6\xa5\x90\x16\x90\x48\x24\x1a\x81\x80\xca\x88\xc4\x14\x48\x92\x88\x82\x6b\x20\x3c\x05\xc2\xa1\xe0\xac\x74\xa2\x84\x13\xfb\x69\x25\x24\x10\x28\x14\xca\x20\xd0\xad\xd9\x30\x00\x00\xc8\x89\xd4\x94\xb0\x85\x31\xf7\x5c\xbc\x33\x9a\x3c\xe0\x21\xae\x48\x9a\x3d\xe0\xe1\x91\x2a\x7d\xcf\xb5\x3c\x4c\x21\x8a\xe0\x4f\xa4\xeb\x4c\xc7\xf0\x65\x3e\xef\x8a\xff\xae\x50\x5e\x20\xfd\x63\x25\xbd\x2a\xd8\xa5\xa2\x5f\xe6\xf3\x79\x30\x01\xf8\x08\xac\x7d\x89\x39\x91\x18\x96\x74\xc5\xb0\x28\x74\xb6\xb0\x8c\x4c\x6a\x88\xf9\x45\x11\x2c\x2d\x71\x86\x66\x8e\xfb\x9a\x37\x65\x89\x4b\x53\xf3\x81\x4a\xd8\xe0\x41\x35\x52\x0c\x75\x45\x73\xa5\x13\x6e\xbb\x16\xc2\x9c\x1c\x50\xc6\x36\x55\x13\x47\xca\x90\x7d\x8e\x4c\x23\xe4\x98\x99\x19\x2f\x66\x24\x4d\xc3\xbc\x25\xc6\x9b\xa8\x59\x03\x98\x42\x46\x54\xb6\x60\x6b\x21\xa9\xce\xb6\x63\x78\x07\x34\x85\x7d\xc5\xaa\x1f\x6c\xbf\x4e\x2e\x77\xd2\xc9\xe9\x69\x1f\x5d\xf8\x71\x17\x5d\x6c\xed\x61\xe3\x62\x87\x78\xaf\x83\x83\x8a\x3b\xe2\xdd\x10\x3b\xe2\xda\x10\x38\xf0\xab\x2d\x40\x02\xb9\xa4\x3b\xf3\x8f\x51\xbe\x31\x2d\x6d\x4a\x52\x69\x61\xba\x79\x47\x0a\xa6\x9d\x4a\x2a\xdf\x2c\x49\x4e\xde\x29\xa3\xfa\x00\xb7\x6e\x16\x1a\xac\xf9\xcd\x8c\xc6\x9b\x1f\x9a\x11\x36\xfb\xc3\x08\xff\x14\x3a\xa0\xd2\x9b\xca\x85\x68\x55\x43\x4b\xe4\x74\x00\xd4\x44\xae\x51\xc7\x10\x19\xff\xc8\xba\x2f\xe0\xe0\x27\xce\xd3\xd7\xaf\x90\x13\x4e\x93\xf0\x6a\x59\xce\x30\x2e\xb4\x0d\xd8\x78\x07\x76\x96\x96\x3a\x20\x69\x82\xbb\x72\x09\x6b\x46\x9d\x1d\x69\xd5\x60\xdc\x12\x4e\xd6\x28\xcb\xbe\xad\x58\xa3\x1a\xcc\xdc\x34\x34\x3a\x43\xd1\x21\x92\xb5\xc3\xf9\xd7\x4a\xc5\xcd\xb5\x33\xb2\x67\xd6\xe0\xe3\x00\x18\x96\x49\x88\xfb\xb9\x18\x6b\x0c\x45\x76\x18\xde\x5c\x0f\x0d\x4e\x41\x8b\xd8\x35\x39\x34\xf6\x6a\x99\x7e\x26\x3a\xeb\xd0\x61\x22\xd0\x1d\xd4\x65\x15\x71\xc2\xa4\xa7\x42\x4e\x48\x3c\xdb\xfa\x31\x4e\x8e\x17\xcd\xf9\x81\x36\x2a\x26\xc7\x2a\xc7\xcd\xbf\xbf\x6c\x1a\x9e\x7e\x16\x2c\x1d\x4d\xf1\x5b\x8b\x70\x43\xb7\x39\x5b\xa4\xa9\x44\xa5\xe2\x5e\x5e\x89\x7d\xed\x06\xdc\x4d\x4a\x3c\x92\xa2\x36\x3c\xff\xa0\x2a\x0b\xc6\xd1\x7a\x73\xdd\x09\xa2\x6f\xb0\xc7\x6c\x27\x98\x0e\xa5\xd3\x53\x46\x3d\x95\xd1\xd1\xf4\xe1\x49\x5e\x25\xf9\x0b\x5f\x89\xcf\x5e\xc9\x1c\x47\xdb\xb9\x38\x2c\x16\x6f\xa1\xf8\xc3\xf1\x45\xd3\xe4\xba\x3c\xb6\xbe\x57\x47\xd8\x33\xf3\x7f\xea\x07\x38\x7f\xae\x76\xd7\x46\x73\xa8\x74\x9b\xc5\xdb\x21\x96\x35\xc1\x18\xda\x2d\xf4\xd6\x0a\xbb\x6c\xbd\x0b\x29\xc5\xde\x57\x27\x3d\x71\x0f\x63\x66\x03\x1e\x8f\xba\x27\xff\xef\xa3\xb7\x2e\x82\xc4\x15\x4a\xe4\x09\x9a\xe8\x2d\x0d\x49\xa3\xbd\x4b\x80\x2f\x78\xd3\xdb\xf5\x86\xe6\x18\x74\x0a\xe9\x92\xb9\x50\x2f\xe2\x7d\xd1\x6e\x0b\x8e\x0f\x94\x85\x5d\x67\x7d\xd5\xed\xeb\x84\x28\x82\xa7\x1d\x4a\x49\x53\xbb\xe0\xa6\xb8\x2a\x8f\xd6\xf6\x72\x23\x31\x41\xba\x43\x39\x72\x64\x15\xdc\xd4\x50\x18\xd9\x65\xa8\x3d\xe5\x5f\x2a\x31\xef\xc1\x6c\xd6\xe8\x5a\xaf\xbd\xc3\x6c\x89\xdc\xa8\xfa\x5d\x75\x60\x2b\x20\xaa\xbd\x96\xf8\xcd\xdb\x9e\x5c\xf0\xc3\x0b\x2a\x51\xc8\x04\x3f\x9c\x0b\xd6\xac\x76\xa3\x3f\x76\x46\xfd\x3d\x63\xce\x9c\x79\x20\x39\x81\xe7\x85\x06\x2e\xe4\x96\xb0\x36\x70\xca\xcd\x65\xcc\xdc\x42\x0c\x27\x05\xa7\x7f\x15\x08\x79\x57\xc7\x7f\x1b\xab\x25\xf2\xdb\x79\x11\x9f\xda\xdb\x6c\x77\x7d\x06\x9f\xc1\x3f\x01\x00\x00\xff\xff\x61\x00\x60\xde\x1d\x0f\x00\x00" +var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\x72\x58\xc8\x80\x63\x79\x8f\x15\x92\x2e\x0c\x27\x8b\x16\x49\x9b\x60\x93\x76\xcf\x63\x89\xb6\x08\xd3\xa4\x4a\x51\x76\x8d\x45\xfe\x7b\x41\x52\x5f\x94\xa8\xd8\x2e\x52\xa0\x39\xc5\xd2\x9b\xaf\x37\x6f\x86\x14\xdd\xe5\x42\x2a\x58\xca\x63\xae\x44\x50\xfd\xfa\xca\xc4\xe1\x55\x6c\x09\x87\xb5\x14\x3b\xb8\x6a\x7e\x5f\x35\x88\x92\x6f\xe8\x8a\x11\x07\xd5\x7d\xd6\x20\x1f\x45\xb2\x25\xa9\x79\x56\x58\xe0\xfc\xef\xc7\xa7\xe5\xc3\xfd\xdd\xeb\xd3\xc3\xfd\xef\x8b\xbb\xbb\x6f\xf7\x2f\x2f\x41\x10\x45\x11\xbc\x4a\xe4\x05\x26\x8a\x0a\x0e\x2a\x43\x05\x2a\x23\xb0\x43\xca\x41\x99\x38\x98\xee\x28\x87\x83\x28\x59\x0a\x05\xdd\x70\x63\xa4\x04\x24\x92\xa0\x22\x80\x50\x64\x28\x49\x0a\x98\x24\xa2\xe4\x0a\x90\xa7\x80\x1c\x4a\xce\x4c\x12\x06\x8e\xf6\xd5\x5a\x48\x40\x28\x0b\x22\x83\x40\xb5\x61\xc3\x00\x00\x20\x47\xa9\x28\xb2\x85\x0e\xf7\x5c\xae\x18\x4d\x1e\xc8\x31\xae\x48\x9a\x3d\x90\xe3\x23\x2d\xd4\x3d\x57\xf2\x38\x85\x28\x82\xef\x84\x6e\x32\x15\xc3\xe7\xf9\xbc\x6b\xfe\x47\x41\xe4\x05\xd6\x3f\x55\xd6\xeb\x92\x5d\x6a\xfa\x79\x3e\x9f\x07\x13\x80\x1f\x81\x8d\x2f\x49\x8e\x92\x84\x86\xae\x18\x16\xa5\xca\x16\x96\x91\x49\x0d\xd1\x7f\x51\x04\x4b\x4b\x9c\xa6\x99\x93\x43\xcd\x5b\x61\x89\x4b\x53\xfd\x82\x4a\xd8\x92\x63\xd1\x58\x31\xa2\x2a\x9a\x2b\x9f\x70\xdb\x8d\x10\xe6\x78\x24\x32\xb6\xad\x9a\x38\x56\x9a\xec\x73\x6c\x1a\x23\x27\xcc\x4c\x67\x31\xc3\x34\x0d\xf3\x96\x18\x6f\xa3\x66\x0d\x60\x0a\x19\x16\xd9\x82\x6d\x84\xa4\x2a\xdb\x8d\xe1\x1d\xd0\x14\x0e\x15\xab\x7e\xb0\x7d\x3b\xb9\x3c\x49\xa7\xa7\xa7\x73\x74\xe1\xef\xa7\xe8\x62\xeb\x0c\x9b\x14\x3b\xc4\x7b\x13\x1c\x28\xee\x9d\xec\x86\xd8\x91\xd4\x86\xc0\x41\x5e\xad\x00\x11\x72\x49\xf7\xfa\x3f\x46\xf9\x56\x8f\xb4\x96\x64\xa1\x84\x9e\xe6\x3d\x96\x4c\x39\x4a\x32\x4f\x96\x98\xe3\x8a\x32\xaa\x8e\x70\xeb\x76\xa1\xc1\xea\xbf\x99\xf6\x78\x83\xa5\xca\x42\x67\x41\xcd\xbe\x53\x95\xa5\x12\x0f\xb8\x62\x64\x02\x9f\x9a\x1d\x37\xfb\x53\x7b\xff\x39\x74\xbc\x98\x74\xab\x1c\xa3\x75\x0d\x35\xc8\xe9\x00\xa8\x50\x6e\x88\x8a\x21\xd2\x05\xe0\xa6\x6f\xe0\xe0\x27\xce\xaf\x2f\x5f\x20\x47\x4e\x93\xf0\x6a\x69\x96\x1c\x17\xca\x32\xa2\xb3\x03\xbb\x6c\x8d\x0f\x48\x9a\xea\xaf\x5c\x46\x9b\x5d\x68\x77\x5e\xb5\x39\x77\xc8\x71\x43\xa4\x19\xec\x8a\x56\xaa\x40\x2f\x56\xcd\xb3\xb3\x35\x1d\xa6\x59\xbb\xbd\x7f\xab\x5c\xdc\x5c\x3b\x3b\x7d\x66\x03\x3e\x0e\x80\xa1\xe9\x52\xdc\x6f\xd6\xd8\xe4\x14\xb8\x27\xe1\xcd\xf5\x30\xe0\x14\x94\x88\xdd\x90\xc3\x60\x2f\x96\xe9\x67\x54\x59\x87\x0e\x5d\x81\xea\xa0\x3e\x58\x32\x27\x72\xf2\x48\xe8\x84\xc5\xb3\x15\x98\xae\x62\x5c\x55\xe7\x33\xd1\xb8\x98\xbc\x27\x2d\x57\x20\x7e\x5d\x35\x44\xfe\x22\x58\x3a\xaa\x81\xd7\x16\xe1\x96\x6e\x9b\xba\x48\x53\x49\x8a\x22\xee\x35\x1e\xed\x63\xb7\xe0\x6e\xd7\xe2\x91\x1e\xb6\xe5\xf9\x57\x9d\x51\x94\xe3\xf5\xe6\xba\x53\x44\x3f\x60\x8f\xd9\x4e\x31\x1d\x4a\xa7\xa7\x82\x1a\xe9\x7c\x1a\xf3\xd4\x93\x84\xa7\x95\x95\x9f\x5f\xf9\x5a\xd8\xcd\x39\x14\x83\x57\x08\xfe\x74\x7d\xd9\x36\xbd\x34\x07\xdb\xff\x76\x24\xec\xb1\xfb\x1f\x0d\x04\x9c\xbf\x79\xbb\x37\x4f\x7d\x2e\x75\xa7\xc5\x3b\x22\x96\x56\xc1\x18\xb1\x17\xd9\x5b\x6b\xec\xd2\xb9\x12\x52\x8a\x83\x4f\x28\x3d\x73\x0f\x63\xfa\x12\x3d\x5e\x75\xcf\xfe\xdf\x57\x6f\x53\x04\x49\xd6\x44\x12\x9e\x10\x5d\xbd\xa5\x21\x69\xbc\x77\x09\xf0\x15\xaf\x87\xbb\xbe\xe4\x39\x01\x1d\xa5\x5d\xb2\x18\xea\xbb\x7c\xdf\xb4\x3b\x83\xe3\x1b\x65\x61\x6f\xc4\x3e\xf9\xfb\x46\x25\x8a\xe0\x69\x4f\xa4\xa4\xa9\xbd\x23\xa7\x64\x6d\x0e\xdf\xf6\xfb\x48\x92\x84\xd0\x3d\x91\x23\x87\x5a\xc9\xb5\x86\xc2\xc8\xde\xa7\xda\x7b\xc0\xb7\xca\xcc\x7b\x74\xeb\x9b\x78\xed\xd7\x7e\x06\xed\x50\x6e\x8b\xfa\x59\x75\xa4\x17\x80\x45\xfb\x65\xe3\x0f\x6f\x97\xd1\x0f\x77\x62\xeb\xd8\x6f\x3d\x69\x8d\x26\x79\xc6\xf6\x39\xf3\x18\x72\xaa\xcd\x4b\x05\x5c\xc8\x1d\xb2\xb6\x5a\xca\xf5\x47\x9c\xfe\x7a\xd1\x44\x94\x9c\xfe\x55\x12\xc8\xbb\x3e\x3e\xa0\x40\x4b\xd9\xd7\xf3\xca\x3c\x75\x87\xb3\x73\xf4\x16\xbc\x05\xff\x04\x00\x00\xff\xff\xe1\x99\x64\x2f\x4a\x0f\x00\x00" func lockedtokensAdminAdmin_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3610,7 +3610,7 @@ func lockedtokensAdminAdmin_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0x4a, 0xb0, 0xa8, 0xdc, 0x78, 0xc, 0x7a, 0xee, 0x6, 0xd, 0xe7, 0x6a, 0x51, 0xc8, 0x39, 0xe3, 0xc, 0x73, 0x7b, 0x7a, 0x18, 0xf1, 0x5a, 0xdf, 0xcd, 0x12, 0xf2, 0x87, 0xfb, 0x69, 0x53}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x14, 0xa1, 0x22, 0x8b, 0x77, 0x49, 0x1d, 0x1c, 0x19, 0x74, 0xb, 0x9c, 0x3b, 0xba, 0x96, 0x5a, 0xa2, 0x4d, 0xc1, 0x61, 0xd, 0xfd, 0x68, 0x5b, 0x7f, 0xeb, 0xc2, 0x9a, 0x97, 0xc8, 0x4f, 0x65}} return a, nil } @@ -3634,7 +3634,7 @@ func lockedtokensAdminAdmin_deploy_contractCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminAdmin_deposit_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xdb\x30\x0c\xbd\xfb\x2b\x88\x1e\x36\xe7\x92\xec\x1c\xac\x2b\x0c\x27\xa7\x16\x6b\xd0\xe6\x07\x18\x89\x8d\x85\x2a\xa2\x40\xd1\xe9\x8a\x22\xff\x3e\xc8\x36\x52\xbb\xcb\xb6\xf2\x64\x13\xef\x3d\xf2\x3d\xd1\x1d\x22\x8b\xc2\x1d\x9b\x67\xb2\x5b\x7e\xa6\x90\xe0\x49\xf8\x00\xdf\x7e\xdd\xdd\xd7\xb7\xeb\xd5\xf6\xfe\x76\xfd\xb3\x5a\xad\x1e\xd6\x8f\x8f\x45\xb1\x58\x2c\x40\x33\x0a\xd0\x1e\x5c\x80\xe4\xf6\x21\x81\x36\x2e\x81\x0a\x86\x84\x46\x1d\x07\x50\x06\x4b\x91\x93\x53\x40\x30\x18\x71\xe7\xbc\xd3\xd7\x8e\xee\x82\x72\xee\xb6\x49\xd9\xbe\x42\x14\x3e\x3a\x4b\xf2\x35\x01\x1a\xc3\x6d\x50\xd0\x06\x15\xd0\x7b\x7e\xc9\xd2\x74\xc8\x72\x68\x6d\xc7\x1e\x30\x29\xf7\xb4\x21\x10\x32\x2c\xb6\x28\x46\xd3\xcb\x41\x7a\x33\x28\x57\xd6\x0a\xa5\xb4\x84\xe1\x63\x06\x6f\x45\x01\x00\x10\x85\x22\x0a\x95\x9d\x95\x25\x54\xad\x36\x55\x2f\x7f\x86\xe4\xf2\xa4\x23\x0f\x0f\x64\xc8\x1d\x49\xe0\x1a\xf6\xa4\x03\xfe\x2f\x23\x67\x67\x8d\x5c\xf3\x3d\x69\x7d\xd6\xf9\xfe\x65\x9c\xf9\xbc\xff\x19\xe4\x6a\x21\x54\x96\xb7\xff\x22\x36\xed\xce\x3b\x73\xfa\x51\x4e\x06\xe5\xfa\x24\x75\x83\xda\x4c\xb8\x1f\x56\xde\xb1\x08\xbf\x94\xd3\xee\xcd\x0d\x44\x0c\xce\x94\x57\x35\xb7\xde\x42\x60\x85\x1e\x38\xca\x29\xbf\x4c\x1f\x94\xd0\x13\x09\x05\x43\x57\xb3\x69\xa8\xdd\x21\x55\x39\xfc\x9a\xbd\xa7\xfe\x74\xae\xfb\xcb\xfa\x67\x58\xdb\x0b\xc4\x0f\x19\x5c\xf0\xff\xce\xda\x88\x3b\xa2\xd2\xc4\xfc\x68\xb7\x3f\x1f\x7b\x8e\xd6\xbe\x6f\x53\x1a\x8c\xcb\x8b\xdb\xf7\x39\x9d\x8a\x53\xf1\x3b\x00\x00\xff\xff\x5b\xc8\xe1\xb2\x58\x03\x00\x00" +var _lockedtokensAdminAdmin_deposit_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\xc1\x6e\xdb\x30\x0c\xbd\xeb\x2b\x88\x1e\x36\xe7\x92\xec\x1c\xac\x2b\x0c\x27\xa7\x16\x6b\xd0\xe6\x07\x18\x89\x8d\x85\x2a\xa2\x40\xd1\xe9\x8a\xa1\xff\x3e\x28\x36\x52\xbb\xcb\x56\x9e\x6c\xe2\xbd\x47\xbe\x27\xfa\x43\x62\x51\xb8\x63\xfb\x4c\x6e\xcb\xcf\x14\x33\x3c\x09\x1f\xe0\xdb\xaf\xbb\xfb\xe6\x76\xbd\xda\xde\xdf\xae\x7f\xd6\xab\xd5\xc3\xfa\xf1\xd1\x98\xc5\x62\x01\x5a\x50\x80\xee\xe0\x23\x64\xbf\x8f\x19\xb4\xf5\x19\x54\x30\x66\xb4\xea\x39\x82\x32\x38\x4a\x9c\xbd\x02\x82\xc5\x84\x3b\x1f\xbc\xbe\x9e\xe8\x3e\x2a\x97\x6e\x97\x95\xdd\x2b\x24\xe1\xa3\x77\x24\x5f\x33\xa0\xb5\xdc\x45\x05\x6d\x51\x01\x43\xe0\x97\x22\x4d\x87\x22\x87\xce\x9d\xd8\x03\x26\x97\x9e\xb6\x04\x42\x96\xc5\x19\x33\x9a\x5e\x0d\xd2\x9b\x41\xb9\x76\x4e\x28\xe7\x25\x0c\x1f\x33\xf8\x6d\x0c\x00\x40\x12\x4a\x28\x54\x9d\xac\x2c\xa1\xee\xb4\xad\x7b\xf9\x33\xa4\x54\x20\x1d\x79\x78\x20\x4b\xfe\x48\x02\xd7\xb0\x27\x1d\xf0\xff\x18\x39\x3b\x6b\x94\x9a\xef\x49\x9b\xb3\xce\xf7\x2f\xe3\xcc\xe7\xfd\xcf\x20\xd7\x08\xa1\xb2\xfc\xa8\x26\xfc\x52\x9f\x72\x36\xdd\x2e\x78\xbb\x41\x6d\x27\xdc\x0f\x9b\xec\x58\x84\x5f\xaa\x69\xf7\xe6\x06\x12\x46\x6f\xab\xab\x86\xbb\xe0\x20\xb2\x42\x0f\x1c\xd9\x2f\x81\xf7\xfe\x85\x9e\x48\x28\x5a\xba\x9a\x4d\xb3\x3a\xdd\x47\x5d\x32\x6d\x38\x04\xea\x2f\xe2\xba\x3f\x98\xff\x66\xb0\xbd\x40\xfc\x90\xc1\x05\xff\xef\xac\x8d\xf8\x23\x2a\x4d\xcc\x8f\x76\xfb\xfb\x0d\xe7\xe8\xdc\xfb\x36\x95\xc5\xb4\xbc\xb8\x7d\x9f\xd3\x9b\x79\x33\x7f\x02\x00\x00\xff\xff\x99\xa2\xb5\xd4\x2f\x03\x00\x00" func lockedtokensAdminAdmin_deposit_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3650,7 +3650,7 @@ func lockedtokensAdminAdmin_deposit_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_deposit_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0x1e, 0x26, 0xb4, 0x11, 0xed, 0x11, 0x3, 0x57, 0x39, 0x8f, 0x13, 0xbb, 0x53, 0xfa, 0xf, 0x22, 0x4b, 0x55, 0x77, 0xa1, 0xd8, 0xbe, 0x7a, 0x22, 0x23, 0x55, 0xdd, 0xe4, 0xbd, 0xaf, 0x33}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0x2, 0x6d, 0x5e, 0xa, 0xf2, 0x7f, 0x1a, 0x87, 0x59, 0x63, 0xdc, 0xac, 0xd3, 0x8d, 0xa9, 0x8c, 0x80, 0x27, 0x34, 0xba, 0xa0, 0x2d, 0xb0, 0x9d, 0xf3, 0x75, 0x53, 0x53, 0x73, 0x8, 0x74}} return a, nil } @@ -3674,7 +3674,7 @@ func lockedtokensAdminAdmin_remove_delegatorCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminCheck_main_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xcf\x6a\xdb\x40\x10\xc6\xef\x7a\x8a\x89\x0e\x45\x86\x22\x7a\x16\x75\x82\x90\x5d\x5a\x12\x9a\x10\xfb\x05\xc6\xab\x91\xbc\x64\xb5\x23\x76\x47\xa4\x25\xf8\xdd\x8b\xfe\xa2\x6d\x4c\x0e\xd9\x8b\xd9\xf1\xb7\xf3\x7d\xf3\xd3\xe8\xa6\x65\x27\xf0\xa3\xb3\xb5\x3e\x19\x3a\xf2\x0b\x59\xa8\x1c\x37\x10\x07\xb5\x38\x9a\x95\x86\x5f\x03\xd5\x7c\x8f\xa3\x59\xf2\xc0\xea\x85\xca\xa1\xe8\x47\xd5\xb7\x3f\x0f\x8f\xc5\xfd\x7e\x77\x7c\xbc\xdf\xff\xce\x77\xbb\xe7\xfd\xe1\x10\x45\xe2\xd0\x7a\x54\xa2\xd9\x26\x0d\x6a\x9b\x2b\xc5\x9d\x95\x0c\xf2\xb2\x74\xe4\xfd\x06\xde\xa2\x08\x00\xa0\x75\xd4\xa2\xa3\xc4\xeb\xda\x92\xcb\x20\xef\xe4\x3c\x89\x17\x4d\x7f\x0c\x09\x60\xd9\x68\xfb\x4c\x15\x6c\x61\x94\xa7\x27\x76\x8e\x5f\xbf\x7f\x59\xc7\x4a\x87\x9f\xbc\xd7\x16\x6c\x0c\x0d\x21\x6e\x93\x3e\x6c\x16\xe4\x4f\x57\x97\xff\xe4\x07\x61\x87\x35\x3d\xa1\x9c\x37\x4b\x84\xfe\xdc\xdd\x41\x8b\x56\xab\x24\x2e\xb8\x33\x25\x58\x16\x18\x43\x00\x82\xa3\x8a\x1c\x59\x45\x20\x0c\x72\x26\x30\x83\x01\xc8\xc0\x74\x48\x0f\x6a\xf1\x88\x37\xe1\x74\xa3\x78\x9a\xfd\x97\xad\x78\x9c\xb4\x26\x99\x6a\x6b\x90\x61\xaa\xb4\x26\x29\xb0\xc5\x93\x36\x5a\xfe\x5e\xc3\xf1\x93\x4d\x49\xee\xed\xca\xf8\x2b\xc3\xcb\x6d\xf2\xb1\xe0\xa9\x3b\x19\xad\xde\x53\x99\xbe\x43\xf2\x59\x56\xed\xd0\x17\xde\xf9\x7d\x88\x08\xb6\x57\x91\xf5\x2c\x82\x46\xd3\xc6\x25\xab\x5e\xe8\x3d\x39\x49\x82\xb4\xf3\x72\xa5\x2b\xe0\x38\x3e\xcd\x42\xa3\x0d\xdc\x6c\xc1\x6a\xf3\x35\x78\xdf\x90\xf7\x58\x53\x06\xf1\xf1\x4c\xe0\x5b\x52\xba\xd2\x54\x02\x4e\x69\xb5\x1f\x00\xe0\xbc\x14\x53\xfd\x06\x0a\xb4\xfd\x1f\x9e\x6c\x19\x2c\x8c\x8f\x97\xfe\x23\xd7\x4b\x74\x89\xfe\x05\x00\x00\xff\xff\xea\xc1\x7d\x15\xd4\x03\x00\x00" +var _lockedtokensAdminCheck_main_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xc1\x6a\xdb\x40\x10\x86\xef\x7a\x8a\x89\x0e\x45\x86\x22\x7a\x16\x75\x82\x90\x5d\x5a\x12\x9a\x10\xfb\x05\xc6\xab\x91\xbc\x64\xb5\x23\x76\x47\xa4\xa5\xe4\xdd\x8b\x56\x92\xd1\x36\xa6\x87\xec\xc5\xec\xf8\xdf\x99\xff\xff\x34\xba\xeb\xd9\x09\x7c\x1b\x6c\xab\x4f\x86\x8e\xfc\x42\x16\x1a\xc7\x1d\xa4\x51\x2d\x4d\x16\xa5\xe1\xd7\x48\xb5\xdc\xd3\x64\x91\x3c\xb0\x7a\xa1\x3a\x14\xfd\xa4\xfa\xf2\xeb\xe1\xb1\xba\xdf\xef\x8e\x8f\xf7\xfb\x9f\xe5\x6e\xf7\xbc\x3f\x1c\x92\x44\x1c\x5a\x8f\x4a\x34\xdb\xac\x43\x6d\x4b\xa5\x78\xb0\x52\x40\x59\xd7\x8e\xbc\xdf\xc0\x9f\x24\x01\x00\xe8\x1d\xf5\xe8\x28\xf3\xba\xb5\xe4\x0a\x28\x07\x39\xcf\xe2\x8b\x66\x3c\x86\x04\xb0\xee\xb4\x7d\xa6\x06\xb6\x30\xc9\xf3\x13\x3b\xc7\xaf\x5f\x3f\xad\x6d\xe5\xe1\xa7\x1c\xb5\x15\x1b\x43\xc1\xc4\x6d\x36\x9a\x2d\x22\xff\xf9\xea\xf2\x8f\xfc\x20\xec\xb0\xa5\x27\x94\xf3\xe6\x62\x61\x3c\x77\x77\xd0\xa3\xd5\x2a\x4b\x2b\x1e\x4c\x0d\x96\x05\x26\x13\x80\xe0\xa8\x21\x47\x56\x11\x08\x83\x9c\x09\x4c\x18\x00\x12\x98\x06\xf7\xa0\x2e\x33\xd2\x4d\x9c\x6e\x12\xcf\xd9\x7f\xd8\x86\xa7\xa4\x2d\xc9\x5c\x5b\x83\x8c\x5d\xe5\x2d\x49\x85\x3d\x9e\xb4\xd1\xf2\xfb\x1a\x8e\xef\x6c\x6a\x72\xb7\xd9\x95\xfc\xab\x89\x4f\xc3\xc9\x68\xf5\x3e\xf5\xcc\x39\xfb\x28\x8b\x3e\xf4\x85\x77\xf3\xfe\x8b\x00\xb6\x57\x91\x8c\x59\xa3\x46\xf3\x46\x65\xab\x5e\xe8\x3d\x39\xc9\x22\xb7\xcb\xf2\xe4\x2b\xa0\x38\x3d\x2d\xe2\x41\x1b\xb8\xd9\x82\xd5\xe6\x73\xf4\xbe\x23\xef\xb1\xa5\x02\xd2\xe3\x99\xc0\xf7\xa4\x74\xa3\xa9\x06\x9c\xdd\x6a\x1f\x00\xe0\xf2\xd1\xe7\xfa\x0d\x54\x68\xc7\x3f\x3c\xd9\x3a\x5a\x08\x9f\x5e\xfa\x4f\x5c\xdf\x92\xb7\xe4\x6f\x00\x00\x00\xff\xff\xb0\x35\x89\xe4\xb4\x03\x00\x00" func lockedtokensAdminCheck_main_registrationCdcBytes() ([]byte, error) { return bindataRead( @@ -3690,7 +3690,7 @@ func lockedtokensAdminCheck_main_registrationCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/check_main_registration.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0x8d, 0xde, 0xc1, 0x5, 0xed, 0xb1, 0x92, 0xc0, 0x90, 0x47, 0x3a, 0xcf, 0xcc, 0x41, 0x98, 0x28, 0xa0, 0x7e, 0x56, 0x4b, 0x7b, 0xca, 0xb5, 0x8a, 0x15, 0xb5, 0x12, 0xdd, 0x9c, 0xdd, 0xc9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x14, 0x5e, 0x3e, 0x1d, 0xe0, 0xfa, 0x52, 0x26, 0x28, 0x3d, 0x94, 0xf9, 0x8, 0x79, 0xe4, 0xad, 0xa9, 0xe, 0x74, 0x85, 0x19, 0x24, 0x6b, 0x90, 0xa, 0xd0, 0x8a, 0x64, 0x32, 0x41, 0xdf, 0x72}} return a, nil } @@ -3714,7 +3714,7 @@ func lockedtokensAdminCheck_shared_registrationCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\x5d\x6f\xeb\x36\x0c\x7d\xf7\xaf\x20\xfa\x30\x38\x80\x6b\x77\xaf\x46\xdb\x8b\x20\xed\xc5\x86\x76\x6b\xd1\x66\xdb\xb3\x62\x33\xb1\x10\x47\xf2\x24\x39\x99\x51\xe4\xbf\x0f\x92\xfc\x25\xc7\x6e\x1a\xec\x02\xcb\x43\x00\x4b\x87\x22\xcf\x21\x29\x91\xee\x0a\x2e\x14\x2c\x44\x55\x28\xee\xd5\x5f\xdf\x73\x7e\x58\xf2\x2d\x32\x58\x0b\xbe\x83\xab\xf6\xfb\xaa\x45\x94\x6c\x43\x57\x39\x3a\xa8\xfe\x5a\x8b\x7c\xe6\xc9\x16\x53\xb3\x26\x2d\xf0\xe6\x9f\xe7\x97\xc5\xd3\xe3\xc3\xf2\xe5\xe9\xf1\xf7\xf9\xc3\xc3\xdb\xe3\xfb\xbb\xe7\x45\x51\x04\x4b\x41\x98\x24\x89\xa2\x9c\x81\xca\x88\x02\x02\x49\x29\x15\x4f\x2b\x28\x04\xdf\xd3\x14\x05\x1c\x78\x99\xa7\x20\xe9\x86\x19\x13\xc5\x21\x11\x48\x14\x02\x01\x99\x11\x81\x29\x90\x24\xe1\x25\x53\x40\x58\x0a\x84\x41\xc9\x72\x13\x82\x81\x37\x7b\x6b\x2e\x80\x40\x29\x51\x78\x9e\xea\xbc\xfa\x1e\x00\xc0\xba\xcc\xf3\x79\xba\xa3\xec\xb5\x5c\xe5\x34\x79\xc2\x2a\xae\x05\x0a\x9f\xb0\x7a\xa6\x52\x3d\x32\x25\xaa\x00\xa2\x08\xfe\x42\xba\xc9\x54\x0c\x3f\xdf\xdc\xdc\xb4\xc6\x7f\x48\x14\x97\xda\xce\x00\x3e\x3c\x73\x42\x21\xb0\x20\x02\xfd\x9a\xfa\x6b\xcd\x3c\x86\x79\xa9\xb2\xb9\x25\x30\x6b\xc0\xfa\x97\xa3\xaa\xb9\xd7\xbb\x70\xd7\xc7\xfa\x05\xa9\xb4\xf9\xe0\xbc\x99\x63\xaf\xa5\xb8\xcc\xba\x35\x77\x5c\x87\x5b\xac\x64\x48\xd2\xd4\x2f\x3a\x01\x4e\x05\x0d\xdb\xdd\x00\x32\x22\xb3\x79\xbe\xe1\x82\xaa\x6c\x37\x0a\x76\x10\x01\x1c\x6a\xdd\x46\x90\x76\xab\xa3\xa6\x7f\xed\x47\x8f\xe3\x64\x98\x4e\xea\xce\x44\xe9\x62\x3f\x09\xd2\x05\xd6\x31\x02\xb8\x19\xdc\x93\x32\x57\x0b\x52\x90\x15\xcd\xa9\xaa\xe0\xce\x15\xd6\xa1\x14\xe6\x94\x6d\x6f\x7f\x6a\xfb\x32\xfc\x53\x1b\xdf\xfb\x51\x21\xe8\x9e\x28\x8c\xd6\xcd\x8e\xd9\x08\x40\x11\xb1\x41\x15\x43\x24\x15\x17\x64\x33\x04\xb8\x82\x7d\xfb\x06\x05\x61\x34\xf1\xaf\x16\xa6\xd9\x18\x57\xa0\x1d\x9a\x7b\x01\x6c\xcb\x1b\x33\x48\xda\x70\xaf\x66\x2e\x9b\xbc\x6b\xfb\xdf\x08\x23\x1b\x14\x70\x7b\xed\x5c\x06\xa1\xed\xdb\xe7\x13\xa0\x6f\x94\x88\x87\x82\x4c\x56\x9c\x24\x7b\xf4\x6f\xaf\x4f\x3d\x06\xa0\x78\xec\xfa\x3c\xf5\xf6\x6e\x05\x79\x25\x2a\x1b\x50\x50\x3d\xd4\x65\x79\x39\xe3\xf2\xde\x77\x8c\xf4\xef\x8c\xc5\xab\x4d\xab\x0e\x32\x38\xb1\x6d\x72\xfb\x75\xa2\xed\x11\xb3\xcf\xb2\x6d\xf8\xc3\xae\xce\xde\x74\xaa\x0d\xee\x17\x9e\xa7\x93\x39\x5e\x76\x08\xdf\xa6\x69\x9e\xa6\x02\xa5\x8c\x07\xa9\x24\x76\x39\x70\xb4\x8f\x27\x32\xd1\x0b\xa3\xdf\xd9\xa6\x1c\x1c\x91\x6e\xaf\x7b\x21\x06\xe0\xec\x9d\x54\x48\x2f\xd6\x9e\x62\x9d\xea\x13\x5e\x47\x12\xdf\x3b\xe9\x63\x24\x37\xb5\xe5\xaf\x6c\xcd\x8f\xf7\xfe\xe7\x00\x7b\x79\x98\x40\xc6\xd3\x3d\x1e\xf5\x58\xa2\xcc\x85\xf9\x7f\x95\xb3\xbd\xad\x7f\x6c\x31\x7f\xf1\xee\xb2\xd5\x3c\x78\xc5\xf4\xf8\xe0\x94\xf9\xf8\x35\x56\x6b\xb3\xd0\xc5\xcc\x05\xdc\x0d\x8f\x71\x45\x5b\x71\x21\xf8\x61\x54\x36\xf7\xa0\x7b\x5f\xcf\x43\xa3\x5c\x5d\xe0\x45\x6c\xad\x7b\x10\xb8\x46\x81\x2c\x41\xcd\x71\xec\x50\x87\xea\xc8\xbe\x6e\xc6\x66\x06\x70\x4a\xe4\x5c\xef\x36\x03\xd7\x10\xde\x6f\x17\xb7\xd1\x4d\x59\xc4\xa3\xf5\xd9\x0b\x32\x8a\xe0\x65\x8f\x42\xd0\x14\x41\x65\x08\x29\xae\xcd\x23\xd4\x4d\xab\x02\x13\xa4\xfb\x5e\x3e\xdc\x08\x4b\xa6\x2b\xc1\x8f\xec\xab\xde\x3d\x81\x6f\xb5\xd9\xc4\xd8\x10\x45\xcd\x88\xc9\xf0\xd0\xfa\xb0\x03\xea\x8e\x88\xad\x6c\xd6\x52\xcb\x40\x02\x91\xdd\xd4\x39\x1e\x8a\x6d\xac\x39\xab\xde\x50\xf2\x52\x24\xf8\xe1\x4c\xcf\x61\x13\xd2\x71\xd0\x5c\x93\xb1\xbb\x9d\xf4\x5f\x9e\x04\x47\xf0\xa2\x5c\x01\xe3\x62\x47\xf2\x8e\x38\x65\x7a\xd6\xd6\x33\xaa\xd6\xa4\x64\xf4\xef\x12\xa1\xe8\x9f\xf1\x63\xb9\x5a\x21\xbf\x7f\x8d\xf1\xc4\x80\xd3\xa3\xa7\xff\x8f\xde\xd1\xfb\x37\x00\x00\xff\xff\x4e\xb1\xb1\x58\xfa\x0c\x00\x00" +var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x56\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\x72\x58\xc8\x80\x63\xa5\x57\xc1\xc9\xc2\x70\xb2\x68\x91\xb4\x09\x36\x69\xf7\x3c\x96\xc6\x16\x61\x99\x54\x49\xca\xae\xb1\xc8\x7f\x2f\x48\xea\x8b\xb2\x14\x27\x68\x0e\xf5\xc1\x80\xc4\x37\xc3\x79\x6f\x3e\x34\x6c\x57\x08\xa9\x61\x29\x8f\x85\x16\x41\xf5\xf4\x2d\x17\x87\x17\xb1\x25\x0e\x6b\x29\x76\x70\xd1\x3c\x5f\x34\x88\x92\x6f\xd8\x2a\x27\x0f\xd5\x7d\xd7\x20\x1f\x44\xb2\xa5\xd4\xbe\x53\x0e\x78\xf5\xcf\xc3\xe3\xf2\xfe\xee\xf6\xe5\xf1\xfe\xee\x8f\xc5\xed\xed\xf7\xbb\xe7\xe7\x20\x88\xa2\x08\x5e\x24\x72\x85\x89\x66\x82\x83\xce\x50\x03\x42\x52\x2a\x2d\xd2\x23\x14\x52\xec\x59\x4a\x12\x0e\xa2\xcc\x53\x50\x6c\xc3\xad\x89\x16\x90\x48\x42\x4d\x80\xa0\x32\x94\x94\x02\x26\x89\x28\xb9\x06\xe4\x29\x20\x87\x92\xe7\x36\x04\x0b\xaf\xcf\xd6\x42\x02\x42\xa9\x48\x06\x81\x6e\x6f\x0d\x03\x00\x80\x75\x99\xe7\x8b\x74\xc7\xf8\x53\xb9\xca\x59\x72\x4f\xc7\xb8\x12\x68\x76\x4f\xc7\x07\xa6\xf4\x1d\xd7\xf2\x38\x85\x28\x82\x1f\xc4\x36\x99\x8e\xe1\x97\xab\xab\xab\xc6\xf8\x4f\x45\xf2\xa3\xb6\x13\x80\x9f\x81\xf5\x50\x48\x2a\x50\x52\x58\x51\x7f\xaa\x98\xc7\xb0\x28\x75\xb6\x70\x04\x26\x35\xd8\xfc\x72\xd2\x15\xf7\xea\x14\xae\xbb\xd8\xb0\xc0\xa3\x31\xef\xf9\x9b\x78\xf6\x46\x8a\x8f\x59\x37\xe6\xde\xd5\xb3\x2d\x1d\xd5\x0c\xd3\x34\x2c\x5a\x01\x4e\x05\x9d\x35\xa7\x53\xc8\x50\x65\x8b\x7c\x23\x24\xd3\xd9\x6e\x10\xec\x21\xa6\x70\xa8\x74\x1b\x40\xba\xa3\x96\x9a\xf9\x35\x0f\x1d\x8e\xa3\x61\x7a\xa9\x3b\x13\xa5\x8f\x7d\x23\x48\x1f\x58\xc5\x08\xe0\x67\x70\x8f\x65\xae\x97\x58\xe0\x8a\xe5\x4c\x1f\xe1\xda\x17\xd6\xa3\x34\xcb\x19\xdf\xce\xb1\xd4\x59\xe8\x75\xdd\xec\x07\xd3\x59\x2a\xf1\x80\xab\x9c\x26\xf0\xa5\x69\xdc\xd9\x5f\xc6\xfb\x4d\x18\x15\x92\xed\x51\x53\xb4\xae\x4f\xec\xc1\x14\x34\xca\x0d\xe9\x18\x22\xa5\x85\xc4\x4d\x1f\xe0\x2b\xfa\xf5\x2b\x14\xc8\x59\x12\x5e\x2c\x6d\x37\x72\xa1\xc1\x44\x64\x07\x07\xb8\x99\x60\xcd\x20\x69\xf8\x5c\x4c\x7c\xba\x79\x3b\x17\x7e\x47\x8e\x1b\x92\x30\xbf\xf4\xa6\xc5\xcc\x35\xf6\xc3\x09\x30\xb4\x52\xc5\x7d\xc5\x46\x4b\x52\xe1\x9e\xc2\xf9\xe5\xe9\x8d\x53\xd0\x22\xf6\xef\x3c\xbd\xed\xd9\x09\xf2\x84\x3a\xeb\x51\xd0\x1d\xd4\x27\x27\xee\x4c\x4c\x37\xa1\xe7\xd5\xfc\xce\x58\x3c\xb9\xbc\x1b\x16\xd3\x13\xdb\x3a\xf9\xef\x57\xa2\x71\x31\x79\xab\x1c\xac\x40\xb0\xab\xd2\x3b\x5e\x0b\x16\xf7\xab\xc8\xd3\xd1\x22\x78\x69\x11\xa1\xcb\xe3\x22\x4d\x25\x29\x15\xf7\x72\x8d\xee\xf5\xd4\x4b\x4e\x3c\x92\xaa\x4e\x18\xdd\xd9\x60\xeb\xc5\x13\x69\x7e\xd9\x09\x71\x0a\xde\xd9\x49\x09\x75\x62\xed\x28\xd6\xaa\x3e\x72\xab\xad\x8c\x2f\x63\x9e\x6e\xc2\x81\xe4\x54\xa6\xbf\xf1\xb5\x70\xe3\xc5\x5e\x34\x9c\xce\xe1\xa8\x86\x12\x61\x47\xea\xff\xb6\x9e\xdd\xc0\xff\xdc\x6a\x7e\xe7\x74\x73\xe5\xdc\xfb\x10\x9a\x0d\xc4\xab\xf3\xe1\x41\x57\x89\xb7\x34\xd5\x2c\x24\x5c\xf7\xdd\xf8\xaa\xae\x84\x94\xe2\x30\x1f\x92\xcd\x77\x74\x13\x9a\x95\x6a\x90\xab\x0f\xfc\x10\x5b\x77\x3d\x48\x5a\x93\x24\x9e\x90\xe1\x38\xe4\xd4\xa3\x3a\x70\x6e\xba\xb1\x5e\x23\xbc\x1a\x3a\xd7\xbc\xf5\xce\xd6\x87\x77\xfb\xc5\xef\x74\x5b\x16\xf1\x60\x01\x77\x82\x8c\x22\x78\xdc\x93\x94\x2c\x25\xd0\x19\x41\x4a\x6b\xfb\x99\x6a\x17\x5e\x49\x09\xb1\x7d\x27\x1f\x7e\x84\x25\x37\x95\x10\x46\x6e\x31\x68\x3f\x92\xdf\x2b\xb3\x91\xcd\x23\x8a\xea\x2d\x95\xd3\xa1\xb9\xc3\xed\xb8\x3b\x94\x5b\x55\xbf\x4b\x1d\x03\x05\xa8\xda\xc5\x75\x38\x14\x37\x2f\x7e\xfa\x6d\x57\xc7\xf1\xda\xeb\xa8\xd1\x80\xfd\xf6\xf9\x2f\x1f\x02\x4f\xe5\xa2\x5c\x01\x17\x72\x87\x79\xcb\x96\x71\xb3\xa3\x9b\xdd\xd6\x08\x51\x72\xf6\x77\x49\x50\x74\x7d\x7c\x02\x41\x27\xd9\xb7\xf7\xd1\x1c\x59\x76\x3a\x9c\xcc\xff\x6b\xf0\x1a\xfc\x1b\x00\x00\xff\xff\x49\x1d\x2e\x96\x27\x0d\x00\x00" func lockedtokensAdminCustody_create_account_with_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3730,11 +3730,11 @@ func lockedtokensAdminCustody_create_account_with_lease_accountCdc() (*asset, er } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_account_with_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0xc7, 0x14, 0xba, 0xc1, 0x9, 0xec, 0x86, 0x9, 0xc0, 0xa9, 0xda, 0x1e, 0x61, 0x83, 0xfa, 0x30, 0x8b, 0x2, 0x88, 0x96, 0xb3, 0xb, 0x65, 0xd7, 0xcb, 0x79, 0x68, 0xa1, 0xaa, 0x4, 0x50}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x39, 0xb4, 0x47, 0x1b, 0xab, 0xd0, 0x47, 0xde, 0xba, 0xa3, 0xaf, 0x77, 0x36, 0x0, 0xb5, 0x18, 0x4d, 0xa0, 0x72, 0x13, 0x98, 0xbc, 0x7d, 0x59, 0x24, 0x80, 0x45, 0x26, 0xca, 0x13, 0xcb, 0x41}} return a, nil } -var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\xc1\x6e\xe3\x36\x10\xbd\xeb\x2b\x06\x39\x14\x32\xa0\x58\xe9\x55\x48\xb2\x30\x9c\x2c\x5a\x24\x6d\x82\x24\x68\xcf\xb4\x38\xb6\x08\xd3\xa4\x4a\x52\x76\x85\xc0\xff\x5e\x90\x94\x65\x52\x96\x37\x59\x74\x81\xf5\xc1\x80\xc8\x37\xc3\x37\x6f\x66\xc8\x61\x9b\x5a\x2a\x03\x73\xd5\xd6\x46\x26\xdd\xd7\x57\x2e\x77\x6f\x72\x8d\x02\x96\x4a\x6e\xe0\xa2\xff\xbe\xe8\x11\x8d\x58\xb1\x05\xc7\x08\x15\xae\xf5\xc8\x47\x59\xae\x91\xba\x35\xed\x81\x57\xff\x3e\x3e\xcd\x1f\xee\xef\xde\x9e\x1e\xee\xff\x9c\xdd\xdd\xbd\xdc\xbf\xbe\x26\x49\x9e\xe7\xf0\xa6\x88\xd0\xa4\x34\x4c\x0a\x30\x15\x31\x40\xa0\x6c\xb4\x91\xb4\x85\x5a\xc9\x2d\xa3\xa8\x60\x27\x1b\x4e\x41\xb3\x95\x70\x26\x46\x42\xa9\x90\x18\x04\x02\xba\x22\x0a\x29\x90\xb2\x94\x8d\x30\xb0\x94\x0a\x08\x34\xda\x1a\x55\x12\x08\x57\x48\x68\xeb\xac\x2a\xa2\xc1\x54\xc8\x14\x34\x82\x3b\x82\xbd\x95\xf7\x46\x2d\xcc\x73\xaa\xf0\x14\xe4\xec\xa5\x63\x61\xfd\x80\x09\x88\x13\xae\x65\x92\x04\x2b\x69\x02\x00\xb0\x6c\x38\x9f\xd1\x0d\x13\xcf\xcd\x82\xb3\xf2\x01\xdb\xa2\x53\x7d\xfa\x80\xed\x23\xd3\xe6\x5e\x18\xd5\x66\x90\xe7\xf0\x37\xb2\x55\x65\x0a\xf8\xf5\xea\xea\x2a\x99\x00\xbc\x27\xce\x45\xad\xb0\x26\x0a\xd3\x4e\x93\xe7\x4e\x92\x02\x66\x8d\xa9\x66\x9e\x5a\xe6\x02\xee\x3e\xa2\x9d\xc9\xc1\x8d\xfd\x71\x34\x9d\x5c\xdd\x2e\xdc\x84\xd8\xb4\x26\xad\x75\x3c\x38\x69\x72\x74\x10\x19\x4f\xd7\xd8\xea\x29\xa1\x34\xad\x8f\xc1\x9d\x06\x3c\xed\x77\x33\xab\x60\x35\xe3\x2b\xa9\x98\xa9\x36\xa3\xe0\x08\x91\xc1\xae\xd3\x64\x04\xe9\xb7\x26\x71\x74\x5b\xd2\x70\x33\x27\x35\x59\x30\xce\x4c\x0b\x37\x31\xe5\x1e\x6b\x7f\x53\xce\xc4\xfa\xfa\x97\xbe\xcc\xa7\x7f\x59\xe3\xdb\x34\xaf\x15\xdb\x12\x83\xf9\xf2\xb0\xe3\x36\x32\x30\x44\xad\xd0\x14\x90\x6b\x23\x15\x59\x0d\x01\x93\xc8\xfb\x97\x2f\x50\x13\xc1\xca\xf4\x62\xee\x6a\x57\x48\x03\xf6\x40\xd7\x66\xe0\x3b\xc8\x99\x41\xd9\xd3\xbd\x18\x44\xc3\x8f\x5d\xf4\x07\x11\x64\x85\x0a\xae\x2f\xa3\xde\x9a\xfa\xc2\x7d\x3c\x01\xa6\x4e\x89\x62\x28\xc8\xd9\x5c\x6a\xb2\xc5\xf4\xfa\xf2\xf4\xc4\x0c\x8c\x2c\xe2\x33\x4f\x4f\x7b\xf5\x82\x3c\x13\x53\x0d\x42\x30\x01\xea\xfb\xf2\xf2\xc1\x91\xb7\x69\x64\x64\x7f\x1f\x58\x3c\xfb\xb4\x5a\x92\xd9\x89\xed\x21\xb7\x9f\x0f\xb4\x77\x31\xf9\x56\xb6\x5d\xfc\xb0\xe9\xb2\x77\x3e\xd5\x0e\xf7\x9b\xe4\xf4\x6c\x8e\xdf\x8e\x88\xd4\xa7\x69\x46\xa9\x42\xad\x8b\x41\x2a\x89\x5f\xce\x22\xed\x8b\x33\x99\x08\x68\x04\x57\x88\x2f\x87\x48\xa4\xeb\xcb\x80\x62\x06\xd1\xde\x49\x85\x04\x5c\x03\xc5\x8e\xaa\x9f\x39\x75\x24\xf1\x81\xa7\xf7\x91\xdc\x74\x96\xbf\x8b\xa5\xdc\xdf\xa6\xdf\x06\xf8\xab\xc3\x11\x19\x4f\xf7\x38\xeb\xb1\x44\xb9\xab\xe8\x67\x95\xb3\xbf\x07\x7f\x6c\x31\x7f\xf2\xee\xf2\xd5\x3c\x78\x1f\xec\x9b\x18\x95\xb9\xad\xed\x91\x7b\xac\x13\x67\x6e\xab\x59\x2a\xb8\x19\xfa\x89\x55\x5b\x48\xa5\xe4\x6e\x54\xb7\xd8\xd1\x6d\x6a\xe7\x8b\xd1\x60\x63\xe0\x77\x85\xeb\x8f\x07\x85\x4b\x54\x28\x4a\xb4\x41\x8e\x39\x8d\xfa\x78\x64\xdf\x76\xe3\xe1\x79\x8d\x6a\xe4\xa3\xe6\x3d\x4c\x1f\x43\x78\xd8\x2f\x71\xa7\xbb\xba\x28\x46\x0b\x34\x20\x99\xe7\xf0\xb4\x45\xa5\x18\x45\x37\xc4\x50\x5c\xba\x57\xe8\x38\xfd\x29\x2c\x91\x6d\x83\x7c\xc4\x0c\x1b\x61\x4b\x21\xcd\xfd\xb3\x7e\x7c\x03\x5f\x3a\xb3\x58\xdb\xf0\xdc\x6e\x64\x13\xb8\xeb\xcf\xf0\x03\xdf\x86\xa8\xb5\x3e\xac\x51\x1f\x81\x06\xa2\x7b\x11\xce\x50\xf1\x9d\x35\x13\xed\x0b\x6a\xd9\xa8\x12\xdf\xa3\x69\x74\x7a\xa0\xb4\x1f\x74\xd7\x59\xee\x71\x2b\xfd\x9f\x37\x21\x12\xbc\x6e\x16\x20\xa4\xda\x10\x7e\x0c\x9c\x09\x3b\xbb\xda\xd1\xce\x6a\xd2\x08\xf6\x4f\x83\x50\x87\x3e\x7e\x6c\xac\x5e\xc8\xaf\x9f\x8b\xf8\xcc\x84\x13\x84\x67\xff\xf7\xc9\x3e\xf9\x2f\x00\x00\xff\xff\x41\x15\x2f\x7e\x4a\x0c\x00\x00" +var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x56\xc1\x6e\xe3\x36\x10\xbd\xeb\x2b\x06\x39\x2c\x64\xc0\xb1\xd2\xab\xe0\x64\x61\x38\x59\xb4\x48\xda\x04\x9b\xa0\x7b\x1e\x4b\x63\x8b\x30\x4d\xaa\x24\x65\x57\x08\xf2\xef\x05\x49\x59\x16\x65\xa9\x49\xd1\x1c\xd6\x07\x03\x22\xdf\x0c\x67\xde\xbc\x21\x87\xed\x4a\xa9\x0c\x2c\x55\x5d\x1a\x19\x35\x5f\xdf\xb8\x3c\xbc\xc8\x2d\x09\x58\x2b\xb9\x83\x8b\xf6\xfb\xa2\x45\x54\x62\xc3\x56\x9c\x02\x54\x77\xad\x45\x3e\xc8\x6c\x4b\xb9\x5b\xd3\x1e\x78\xf5\xf7\xc3\xe3\xf2\xfe\xee\xf6\xe5\xf1\xfe\xee\x8f\xc5\xed\xed\xf7\xbb\xe7\xe7\x28\x4a\x92\x04\x5e\x14\x0a\x8d\x99\x61\x52\x80\x29\xd0\x00\x42\x56\x69\x23\xf3\x1a\x4a\x25\xf7\x2c\x27\x05\x07\x59\xf1\x1c\x34\xdb\x08\x67\x62\x24\x64\x8a\xd0\x10\x20\xe8\x02\x15\xe5\x80\x59\x26\x2b\x61\x60\x2d\x15\x20\x54\xda\x1a\x15\x12\x90\x2b\xc2\xbc\x76\x56\x05\x6a\x30\x05\x31\x05\x95\xe0\x2e\xc0\xd6\xca\x7b\xcb\x2d\xcc\xc7\x54\xd0\x39\xc8\xd9\x4b\x17\x85\xf5\x03\xa6\x13\x38\x72\x2d\xa3\xa8\xb3\x12\x47\x00\x00\xeb\x8a\xf3\x45\xbe\x63\xe2\xa9\x5a\x71\x96\xdd\x53\x9d\x36\xac\xcf\xee\xa9\x7e\x60\xda\xdc\x09\xa3\xea\x29\x24\x09\xfc\x20\xb6\x29\x4c\x0a\xbf\x5c\x5d\x5d\x45\x13\x80\xd7\xc8\xb9\x28\x15\x95\xa8\x28\x6e\x38\x79\x6a\x28\x49\x61\x51\x99\x62\xe1\x43\x9b\xba\x84\x9b\x8f\x60\x67\x72\x74\x63\x7f\x9c\x4c\x43\x57\xb3\x0b\xd7\x5d\x6c\x5c\x62\x6d\x1d\xf7\x4e\x9a\x9c\x1c\x04\xc6\xb3\x2d\xd5\x7a\x86\x79\x1e\x97\xa7\xe4\xce\x13\x9e\xb5\xbb\x53\xcb\x60\xb1\xe0\x1b\xa9\x98\x29\x76\x83\xe0\x00\x31\x85\x43\xc3\xc9\x00\xd2\x6f\x4d\xc2\xec\xf6\x58\x71\xb3\xc4\x12\x57\x8c\x33\x53\xc3\x75\x18\x72\x8b\xb5\xbf\x19\x67\x62\x3b\xc7\xca\x14\x71\x20\xe2\xd9\x0f\x66\x8a\x5c\xe1\x01\x57\x9c\x26\xf0\xa5\xed\x83\xd9\x9f\xd6\xfb\x4d\x9c\x94\x8a\xed\xd1\x50\xb2\x3e\xee\xb8\x8d\x29\x18\x54\x1b\x32\x29\x24\xda\x48\x85\x9b\x3e\x60\x12\x1c\xff\xf5\x2b\x94\x28\x58\x16\x5f\x2c\x9d\xb8\x85\x34\x60\x23\x72\x7d\x08\xbe\xc5\x9c\x19\x64\x6d\x3e\x17\xbd\x74\xf9\xa9\xcd\x7e\x47\x81\x1b\x52\x30\xbf\x0c\x9a\x6f\xe6\x95\xfd\x70\x06\x8c\x1d\x55\x69\x9f\xb1\xd1\x62\x6b\xdc\x53\x3c\xbf\x3c\x3f\x71\x0a\x46\xa6\xe1\x99\xe7\xa7\x3d\x7b\x42\x9e\xd0\x14\xbd\x14\x4c\x07\xf5\xc9\x85\x7b\x27\xa6\x9b\x38\xf0\x6a\x7f\xef\x58\x3c\xf9\xba\xdb\x2c\xa6\x67\xb6\xc7\xe2\x7f\x9c\x89\xd6\xc5\xe4\xdf\xe4\xe0\x08\x82\x5d\x53\xde\x71\x2d\x38\xdc\xaf\x92\xe7\xa3\x22\x78\x39\x21\x62\x5f\xc7\x45\x9e\x2b\xd2\x3a\xed\xd5\x1a\xfd\xf2\x34\x28\x4e\x3a\x52\xaa\x4e\x18\x9d\x4b\xc8\xeb\x25\x20\x69\x7e\xd9\x09\x71\x0a\xc1\xde\x99\x84\x3a\xb1\x76\x18\x3b\xb1\x3e\x72\xaa\x53\xc6\x97\x31\x4f\x37\xf1\x40\x71\x1a\xd3\xdf\xc4\x5a\xfa\xcb\xc5\x1d\x34\x5c\xce\xe1\xa8\x86\x0a\xe1\x2e\xab\x9f\x56\xcf\xfe\x2a\xfd\x5c\x35\x7f\xf0\x76\xf3\x72\xee\x3d\x31\xf6\x59\x0d\x74\x6e\xc5\x3d\x70\xd3\x35\xec\x2d\xad\x9c\xa5\x82\xeb\xbe\x9f\x90\xd6\x95\x54\x4a\x1e\xe6\x43\xbc\x85\x8e\x6e\x62\x3b\xa2\x0c\x26\x1b\x02\xff\x53\xba\xfe\x78\x50\xb4\x26\x45\x22\x23\x9b\xe4\x90\xd3\xa0\x91\x07\xf6\x6d\x3b\x1e\x5f\xe8\x40\x44\xef\x75\xef\x71\x80\xe9\xc3\xbb\x0d\x13\xb6\xba\xd3\x45\x3a\xa8\xe0\x4e\x90\x49\x02\x8f\x7b\x52\x8a\xe5\xe4\xe6\xa0\x9c\xd6\xee\x9d\x3a\x0d\x90\x8a\x32\x62\xfb\x4e\x3d\xc2\x08\x2b\x61\xa5\x10\x27\x7e\x32\x38\xbd\x92\xdf\x1b\xb3\x90\xdb\xee\xb9\xcd\xd4\x27\xe8\xd0\x9e\xe1\x67\xc6\x1d\xaa\xad\x3e\xae\xe5\x3e\x03\x0d\xa8\x5b\x12\x46\x42\xf1\x17\xc6\x6b\xd8\x77\xc7\x38\xde\x7a\x2d\x35\x1a\x70\xd8\x3f\xff\xe7\x25\x08\x58\x2e\xab\x15\x08\xa9\x76\xc8\x4f\xd9\x32\x61\x67\x5e\x3b\x12\x5a\x22\x2a\xc1\xfe\xaa\x08\xca\xae\x8f\x4f\x48\xd0\x53\xf6\xed\x63\x69\x8e\x4c\x3b\x9d\x9c\xec\xff\x5b\xf4\x16\xfd\x13\x00\x00\xff\xff\x4b\x6b\x23\x4c\x77\x0c\x00\x00" func lockedtokensAdminCustody_create_only_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3750,11 +3750,11 @@ func lockedtokensAdminCustody_create_only_lease_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x94, 0x1e, 0xca, 0x0, 0x50, 0xd7, 0x7b, 0xe4, 0xda, 0x3f, 0xbf, 0x24, 0x2b, 0xeb, 0xf1, 0x2, 0xa4, 0xdf, 0x83, 0xa0, 0xde, 0x35, 0x7b, 0x87, 0xa8, 0x96, 0xb4, 0x1f, 0x1b, 0x57, 0x7a, 0x2c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf1, 0xff, 0xc4, 0xdd, 0x5e, 0xf5, 0xee, 0x61, 0x9e, 0x13, 0x8, 0xce, 0x17, 0x29, 0x19, 0x5, 0x89, 0x24, 0x24, 0xaa, 0xb, 0x4c, 0x4c, 0x9e, 0x78, 0xd6, 0xf4, 0x65, 0x76, 0xea, 0xbc, 0xc9}} return a, nil } -var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x5f\x6f\xab\x36\x14\x7f\xe7\x53\x1c\xf5\x61\x22\x52\x1a\xb2\xc7\xa1\xf6\x5e\x45\x69\xaf\x36\xb5\x5b\xab\xb6\xdb\x9e\x1d\x38\x09\x56\x88\xcd\x8e\x4d\x32\x54\xf5\xbb\x4f\xb6\x09\x60\x02\x6d\x3a\x4d\xda\xe5\x29\xd8\xbf\xf3\xef\x77\xfe\x70\xc2\x77\x85\x24\x0d\x4b\xaa\x0a\x2d\x83\xfa\xed\x5b\x2e\x0f\x2f\x72\x8b\x02\xd6\x24\x77\x70\xd1\xbc\x5f\x34\x88\x52\x6c\xf8\x2a\x47\x0f\xd5\x3d\x6b\x90\xf7\x32\xd9\x62\x6a\xcf\x94\x03\xce\xff\xbe\x7f\x58\xde\xdd\xde\xbc\x3c\xdc\xdd\xfe\xb6\xb8\xb9\x79\xba\x7d\x7e\x0e\x82\x28\x8a\xe0\x85\x98\x50\x2c\xd1\x5c\x0a\xd0\x19\xd3\xc0\x20\x29\x95\x96\x69\x05\x05\xc9\x3d\x4f\x91\xe0\x20\xcb\x3c\x05\xc5\x37\xc2\x8a\x68\x09\x09\x21\xd3\x08\x0c\x54\xc6\x08\x53\x60\x49\x22\x4b\xa1\x61\x2d\x09\x18\x94\xca\x08\x65\x12\x58\x4e\xc8\xd2\xca\x4a\x65\x4c\x81\xce\x90\x13\x94\x22\xb7\x0e\x36\x52\x4e\x5b\x6a\x60\xce\xa7\x0c\x4f\x41\x56\x5e\x5a\x2f\x8c\x1e\xd0\x1d\xc7\x59\xae\x64\x10\x74\x4e\xc2\x00\x00\xa0\x60\xa4\x39\xcb\x17\xe9\x8e\x8b\xc7\x72\x95\xf3\xe4\x0e\xab\xb8\x26\x7e\x76\x87\xd5\x3d\x57\xfa\x56\x68\xaa\xa6\x10\x45\xf0\x27\xf2\x4d\xa6\x63\xf8\x71\x3e\xef\x8a\xff\xae\x90\x3e\x21\xfd\xd3\x7c\x1e\x4c\x00\x5e\x03\xa7\x83\xb0\x60\x84\x61\xcd\xe9\x63\x4d\x69\x0c\x8b\x52\x67\x0b\x17\xda\xd4\x12\x56\xbf\x78\x37\x93\xa3\x1a\xf3\xe4\xa8\x6b\xba\xeb\x5b\xb8\xee\x62\xc3\x82\x55\x46\x71\xcf\xd2\xa4\x55\xe0\x09\xcf\xb6\x58\xa9\x19\x4b\xd3\xb0\x68\x63\x1b\x24\x6c\xd6\x00\xa6\x26\x09\xd9\x22\xdf\x48\xe2\x3a\xdb\x8d\xe1\x3d\xd0\x14\x0e\x35\x31\xc3\x60\x77\x3b\xf9\xbc\x93\x5e\x5a\x3e\xf6\xd1\x87\xbf\xef\xa2\x8f\x3d\x7a\xe8\x25\x62\xcf\xca\x5c\x2f\x59\xc1\x56\x3c\xe7\xba\x82\x6b\xdf\xf1\x06\x6b\x9e\x59\xce\xc5\xf6\xea\x87\xa6\xa3\x67\x7f\x18\xe1\x2f\x61\x54\x10\xdf\x33\x8d\xd1\xfa\x78\x63\x2f\xa6\xa0\x19\x6d\x50\xc7\x10\x29\x2d\x89\x6d\xfa\x80\x89\xa7\xfd\xeb\x57\x28\x98\xe0\x49\x78\xb1\xb4\x6d\x2a\xa4\x06\x63\xd0\x4e\x14\x70\xc3\xc2\x8a\x41\xd2\xb8\x7b\xd1\x8b\x26\x6f\x07\xc6\xaf\x4c\xb0\x0d\x12\x5c\x5d\x7a\x63\x64\xe6\x7a\xf4\xfe\x04\x18\x5a\x26\xe2\x3e\x21\xa3\x65\xa7\xd8\x1e\xc3\xab\xcb\x53\x8b\x53\xd0\x32\xf6\x6d\x9e\x5a\x7b\x76\x84\x3c\x32\x9d\xf5\x42\xd0\x1d\xd4\xe7\xf2\xf2\x81\xc9\x2f\xa1\x27\x64\x9e\x0f\x24\x1e\x5d\x5a\x8d\x93\xd3\x13\xd9\x63\x6e\xcf\x0f\xd4\x53\x71\x66\xee\x2d\x1b\xb0\xab\x73\x39\x9e\x78\x8b\xfb\x59\xe6\xe9\x68\xc6\x5f\x5a\x84\x4f\x84\xcb\xe0\x22\x4d\x09\x95\x8a\x7b\x59\x66\xee\xd8\x0f\xbf\x9b\xa2\x78\x24\x61\x41\x1b\x68\xf3\xb3\x33\x1d\x5d\xf9\x78\x5a\xaf\x2e\x3b\x41\xf4\x0d\xf6\x78\xee\x04\xd3\x21\x78\xfa\x91\xd1\x81\x3a\xe9\x68\x7a\x1d\x48\x65\x2d\xf9\x8b\x58\xcb\xb7\x5e\x01\xbd\x8f\x76\x63\xe7\xb4\x74\x06\xcb\x66\x38\x9c\xa1\x68\x9a\x5c\xdb\xe9\xfb\x7f\xf5\x87\x1b\xfd\xdf\x4b\x77\xf4\x3e\x94\x66\xb9\xf0\xda\xc6\xf4\xca\xc0\x94\xac\x99\x5a\x9a\xee\x90\x04\xd7\x7d\x3d\x3e\x85\x2b\x49\x24\x0f\x83\x24\xfa\x8a\x06\x68\x34\x9b\xdb\x20\x15\xbe\xe4\xbf\x27\xc3\x39\x07\x84\x6b\x24\x14\x09\x1a\x0a\x86\x2c\x78\x53\x63\xe0\xde\xb4\xfb\x71\x0b\xf1\x8c\x7a\xb5\xf5\x99\x51\x71\xdc\xfe\xfa\xa2\xdd\xae\x1c\x9f\x31\xb6\xce\xe2\xc1\x82\x1f\x6a\x8e\x28\x82\x87\x3d\x12\xf1\x14\xed\x66\x99\xe2\xda\x7e\x2f\xdb\x95\x9c\x30\x41\xbe\xef\xe4\xd6\x0f\xa1\x14\xa6\xac\xc2\xc8\x2d\x21\xed\xd7\xfa\xa9\x16\xf3\x6d\xd5\xbb\xb3\xc0\x43\xa3\xd7\x6d\xde\x3b\x46\x5b\x75\x3c\x4b\x9d\xfb\x0a\x98\x6a\xd8\x18\x31\xef\xda\x74\x21\xaa\x27\x54\xb2\xa4\x04\x5f\xbd\xbf\x05\xb3\xa3\x1b\xfd\x49\x34\xea\xef\x19\xa3\xe7\xbc\x9e\xf4\x03\x2f\xca\x15\x08\x49\x3b\x96\xb7\x81\x73\x61\xfe\x44\x98\x1d\xd9\x70\x52\x0a\xfe\x57\x89\x50\x74\x75\xfc\xb7\xb1\x3a\x22\xbf\x9d\x17\xf1\xc8\xfe\x15\xf8\x1d\xf6\x16\xbc\x05\xff\x04\x00\x00\xff\xff\x08\xa5\x96\x62\xd3\x0d\x00\x00" +var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x39\x2c\x64\xc0\xb1\xdc\x63\x0d\x67\x17\x86\x93\x45\x8b\xa4\x4d\xb0\x49\xbb\xe7\xb1\x34\xb6\x08\xd3\xa4\x4a\x52\x76\x85\x45\xde\xbd\x20\x29\xcb\xa2\x2c\x35\xce\x62\x0f\xab\x93\x45\x7e\xf3\xf7\xcd\x8f\xc6\x6c\x57\x48\x65\x60\xa9\xaa\xc2\xc8\xa8\x7e\xfb\xcc\xe5\xe1\x45\x6e\x49\xc0\x5a\xc9\x1d\x5c\x35\xef\x57\x0d\xa2\x14\x1b\xb6\xe2\x14\xa0\xda\x67\x0d\xf2\x41\xa6\x5b\xca\xdc\x99\xf6\xc0\xe9\xbf\x0f\x8f\xcb\xfb\xbb\xdb\x97\xc7\xfb\xbb\x3f\x17\xb7\xb7\x5f\xee\x9e\x9f\xa3\x28\x49\x12\x78\x51\x28\x34\xa6\x86\x49\x01\x26\x47\x03\x08\x69\xa9\x8d\xcc\x2a\x28\x94\xdc\xb3\x8c\x14\x1c\x64\xc9\x33\xd0\x6c\x23\x9c\x88\x91\x90\x2a\x42\x43\x80\xa0\x73\x54\x94\x01\xa6\xa9\x2c\x85\x81\xb5\x54\x80\x50\x6a\x2b\x94\x4b\x40\xae\x08\xb3\xca\x49\xe5\xa8\xc1\xe4\xc4\x14\x94\x82\x3b\x07\x1b\x29\xaf\x2d\xb3\x30\xef\x53\x4e\xe7\x20\x27\x2f\x9d\x17\x56\x0f\x98\x96\xe3\xc8\xb5\x8c\xa2\xd6\x49\x1c\x01\x00\x14\xa8\x0c\x43\xbe\xc8\x76\x4c\x3c\x95\x2b\xce\xd2\x7b\xaa\x66\x35\xf1\x93\x7b\xaa\x1e\x98\x36\x77\xc2\xa8\x6a\x0c\x49\x02\x5f\x89\x6d\x72\x33\x83\x5f\xa6\xd3\xb6\xf8\x5f\x9a\xd4\x3b\xa4\x7f\x9d\x4e\xa3\x11\xc0\xb7\xc8\xeb\x50\x54\xa0\xa2\xb8\xe6\xf4\xa9\xa6\x74\x06\x8b\xd2\xe4\x0b\x1f\xda\xd8\x11\x56\xbf\x04\x37\xa3\xa3\x1a\xfb\x70\x32\x35\xdd\xf5\x2d\xdc\xb4\xb1\x71\x81\x95\x55\xdc\xb1\x34\x3a\x29\x08\x84\x27\x5b\xaa\xf4\x04\xb3\x2c\x2e\x4e\xb1\xf5\x12\x36\x69\x00\x63\x9b\x84\x7c\xc1\x37\x52\x31\x93\xef\x86\xf0\x01\x68\x0c\x87\x9a\x98\x7e\xb0\xbf\x1d\xbd\xdf\xc9\x20\x2d\x6f\xfb\x18\xc2\xff\xdf\xc5\x10\x7b\xf4\x30\x48\xc4\x1e\x4b\x6e\x96\x58\xe0\x8a\x71\x66\x2a\xb8\x09\x1d\x6f\xb0\xf6\x99\x70\x26\xb6\x73\x2c\x4d\x1e\x07\xfd\x3a\xf9\xca\x4c\x9e\x29\x3c\xe0\x8a\xd3\x08\x3e\x34\x2d\x3f\xf9\xdb\x6a\xff\x18\x27\x85\x62\x7b\x34\x94\xac\x8f\x37\xee\x62\x0c\x06\xd5\x86\xcc\x0c\x12\x6d\xa4\xc2\x4d\x17\x30\x0a\xcc\x7f\xfa\x04\x05\x0a\x96\xc6\x57\x4b\xd7\xc7\x42\x1a\xb0\x1e\xb9\x91\x03\x7e\x9a\x38\x31\x48\x9b\x78\xae\x3a\xe1\xf2\xd3\x44\xf9\x03\x05\x6e\x48\xc1\xfc\x3a\x98\x33\x13\xdf\xc4\x0f\x67\xc0\xd8\x51\x35\xeb\x32\x36\x58\x97\x1a\xf7\x14\xcf\xaf\xcf\x2d\x8e\xc1\xc8\x59\x68\xf3\xdc\xda\xb3\x27\xe4\x09\x4d\xde\x09\xc1\xb4\x50\x3f\x38\x71\x6f\xf8\xf4\x31\x0e\xb4\xda\xe7\x0d\x89\x27\x9f\x77\x1b\xc5\xf8\x4c\xf6\x98\xfc\xcb\x99\x08\x54\x5c\x58\x1c\x8e\x2e\xd8\xd5\xc9\x1e\xae\x0c\x87\xfb\x4d\xf2\x6c\xb0\x24\x5e\x4e\x88\x90\x08\x9f\xe2\x45\x96\x29\xd2\x7a\xd6\x29\x03\xf4\xc7\x61\xf8\xed\x1c\xce\x06\x32\x1a\x9d\x02\x6d\x7e\xb6\xe6\xab\xaf\xaf\x40\xeb\xfc\xba\x15\x44\xd7\x60\x87\xe7\x56\x30\x2d\x82\xc7\x6f\x19\x75\x85\xf4\x61\x48\x53\xa7\x40\x7a\x12\x5b\xeb\xf9\x5d\xac\xa5\x1f\x4c\xe7\xa5\xd1\x5b\x16\xfd\xee\xf6\x79\xdb\xe4\xd2\xcd\xe7\x9f\xb6\x41\xfc\xd7\xe3\x67\x69\x8f\xce\xb7\xd6\xee\x27\x41\xdf\xd8\x66\xe9\x99\xa3\x35\x95\x4b\xdb\x1e\x52\xc1\x4d\x57\x4f\xc8\xf1\x4a\x2a\x25\x0f\xf3\x3e\x12\x43\x45\x3d\x34\xda\xe5\xaf\x97\x8a\x50\xf2\xfb\xc9\xf0\xce\x81\xa2\x35\x29\x12\x29\x59\x0a\xfa\x2c\x04\x63\xa3\xe7\xde\xf6\xfb\x71\x91\x09\x8c\x06\xc5\xf7\x9e\x59\x71\x5c\x20\xbb\xa2\xed\xb6\x1c\x1e\x32\xae\xce\x66\xbd\x1d\xd1\xd7\x3d\x49\x02\x8f\x7b\x52\x8a\x65\xe4\x96\xd3\x8c\xd6\xee\x8b\x7a\xda\xea\x15\xa5\xc4\xf6\xad\xdc\x86\x21\x94\xc2\x96\x55\x9c\xf8\x3d\xe6\xf4\x3d\xff\x52\x8b\x85\xb6\xea\xf5\x5b\xd0\xa1\xd1\xeb\x97\xf7\x1d\xaa\xad\x3e\x9e\x65\xde\x7d\x0d\xa8\x1b\x36\x06\xcc\xfb\xf9\xf4\x2d\x6c\xe2\xa3\xed\xd7\x4e\x61\x0d\x3a\x79\xc1\x40\xba\xac\x11\xc3\x68\x8b\x72\x05\x42\xaa\x1d\xf2\x53\xb4\x4c\xd8\x3f\x1f\x76\xb7\xb6\x44\x94\x82\xfd\x53\x12\x14\x6d\x1d\x3f\x20\x40\x4f\xd9\xe7\xcb\xc2\x1c\xd8\xc5\xa2\xb0\x97\x5e\xa3\xd7\xe8\xbf\x00\x00\x00\xff\xff\x5b\x28\xe9\xee\x00\x0e\x00\x00" func lockedtokensAdminCustody_create_only_shared_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3770,11 +3770,11 @@ func lockedtokensAdminCustody_create_only_shared_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_shared_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x8b, 0x56, 0x8b, 0x4e, 0x76, 0xa4, 0x45, 0xa9, 0x6c, 0x88, 0x43, 0x8f, 0x9e, 0x4d, 0xd8, 0x90, 0x8e, 0x18, 0xdc, 0x85, 0xa6, 0x83, 0xad, 0x29, 0xac, 0xca, 0x39, 0x4, 0x96, 0xd0, 0xcc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x89, 0xba, 0x9f, 0x8c, 0x43, 0xd, 0xdc, 0xd8, 0x19, 0x54, 0x3b, 0x44, 0x3f, 0xe4, 0x97, 0xaf, 0x92, 0xbe, 0x3, 0x35, 0x11, 0xe3, 0x8, 0xc4, 0x3c, 0x8c, 0x41, 0xbc, 0xff, 0xc0, 0xf9, 0x34}} return a, nil } -var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\xd1\x6f\xb3\x36\x10\x7f\xe7\xaf\x38\xf5\x61\xa2\x52\x0a\xf9\x1e\x87\xda\x7d\x8a\xd2\x7e\xda\xd4\x6c\x8d\xda\x6c\x7b\x76\xe0\x12\xac\x10\x9b\xd9\x26\x19\xaa\xfa\xbf\x4f\xc6\x04\x30\x98\x26\xf9\x34\x69\xe3\x0d\xf8\x9d\xef\xee\xf7\xbb\x3b\xdb\x74\x9f\x73\xa1\x60\x2e\xca\x5c\x71\xaf\x7e\xfb\x96\xf1\xe3\x8a\xef\x90\xc1\x46\xf0\x3d\xdc\x34\xef\x37\x0d\xa2\x60\x5b\xba\xce\xd0\x42\x75\xbf\x35\xc8\x05\x8f\x77\x98\x54\xdf\xa4\x01\x4e\xff\x5e\xbc\xcc\x9f\x9f\x1e\x57\x2f\xcf\x4f\xbf\xcd\x1e\x1f\x5f\x9f\xde\xde\x3c\x2f\x0c\x43\x58\x09\xc2\x24\x89\x15\xe5\x0c\x54\x4a\x14\x10\x88\x0b\xa9\x78\x52\x42\x2e\xf8\x81\x26\x28\xe0\xc8\x8b\x2c\x01\x49\xb7\xac\x32\x51\x1c\x62\x81\x44\x21\x10\x90\x29\x11\x98\x00\x89\x63\x5e\x30\x05\x84\x25\x40\x18\x14\x2c\xab\x42\xa8\xe0\xa7\x7f\x1b\x2e\x80\x40\x21\x51\x78\x9e\x6a\xbd\xfa\x1e\x00\x40\x4e\x84\xa2\x24\x9b\x25\x7b\xca\x96\xc5\x3a\xa3\xf1\x33\x96\x51\xcd\x51\xf0\x8c\xe5\x82\x4a\xf5\xc4\x94\x28\x27\x10\x86\xf0\x27\xd2\x6d\xaa\x22\xf8\x32\x9d\x76\xcd\x7f\x97\x28\xae\xb0\xfe\xb1\xb6\xde\x14\xd9\xb5\xa6\x5f\xa6\xd3\xa9\x77\x0b\xef\x9e\x71\x2f\x30\x27\x02\xfd\x9a\xb9\x65\x4d\x5c\x04\xb3\x42\xa5\x33\x93\x7f\x03\xd6\x4f\x86\xaa\xa6\xae\xfe\x0b\x0f\x5d\xac\x9f\x93\x52\x9b\xf7\xd6\xbb\xb5\xec\x35\x93\xd7\x59\x37\xe6\x96\xeb\x60\x87\xa5\x0c\x48\x92\xf8\x79\x9b\xbf\x53\x8f\xa0\x01\x4c\x20\x25\x32\x9d\x65\x5b\x2e\xa8\x4a\xf7\x63\x78\x0b\x34\x81\x63\x4d\x9e\x1b\x6c\xfe\xde\x5e\x1f\xa4\x25\xdd\xf9\x18\x6d\xf8\xe7\x21\xda\xd8\x53\x84\x4d\x88\x1d\x09\x9c\x01\x0e\x0a\xeb\x93\xe8\x86\xd8\x91\xd0\x86\xc0\x41\x5c\xba\x3c\x0e\xa4\xc8\xd4\x9c\xe4\x64\x4d\x33\xaa\x4a\x78\xb0\x09\x6d\xb0\xfa\x09\x32\xca\x76\xf7\x3f\x34\x33\x27\xf8\x43\x1b\xff\xe4\x5b\x20\xfd\x84\xb9\xa0\x07\xa2\x30\xdc\x9c\xa0\x15\x72\x32\x00\x2a\x22\xb6\xa8\x22\x08\xa5\xe2\x82\x6c\xfb\x06\x16\xfe\xd6\x7a\xfb\xfa\x15\x72\xc2\x68\xec\xdf\xcc\xab\xb1\xc3\xb8\x02\x1d\x5e\x35\x21\xc1\x0c\xbf\x6a\x0d\x88\x9b\xe4\x6e\x7a\xb9\x67\xed\x00\xfc\x95\x30\xb2\x45\x01\xf7\x77\xd6\x58\x0c\xcc\x04\x5b\x0c\x80\x7e\xc5\x5b\xd4\xa7\x6f\xb4\x79\x24\x39\xa0\x7f\x7f\x37\xf4\x38\x01\xc5\x23\xdb\xe7\xd0\xdb\x9b\x61\x67\x49\x54\xda\x4b\x41\x75\x50\xd7\xa9\x78\xc6\xa5\x43\xd5\x33\x16\x4b\xa3\xb9\x0e\x72\x5c\xe8\xcb\x13\xfd\x1e\xed\x2b\x36\x60\x5f\x6b\x39\x2e\x7c\x85\xfb\x99\x67\xc9\xa8\xe2\xab\x16\x61\x13\x61\x14\x9c\x25\x89\x40\x29\xa3\x9e\xca\xc4\x7c\xb6\xd3\xef\x4a\x14\x8d\x08\xe6\xb5\x89\x3a\xa7\x46\x55\x3e\xd6\xaa\xf7\x77\x9d\x24\xfa\x0e\x7b\x3c\x77\x92\xe9\x10\x3c\x39\xe7\xd4\x51\x27\x9d\x95\xde\x1d\x52\xd6\x96\xbf\xb0\x0d\xff\xe8\x15\xd0\xe7\x68\x33\xa4\x86\xa5\xe3\x2c\x1b\x77\x3a\xae\x6c\x1a\xad\xab\x3d\xe4\xbf\xea\x0f\xb3\x81\xfd\x5f\xba\xa3\xb7\xdd\xeb\x63\x9a\xd5\x36\xee\x21\x59\x13\x35\xd7\xcd\xc1\x05\x3c\xf4\x97\xb1\x19\x5c\x73\x21\xf8\xd1\xc9\xa1\xbd\x90\x83\x45\x7d\x10\x75\x32\x61\x5b\x7e\x3f\x17\x26\x38\x10\xb8\x41\x81\x2c\x46\xcd\x80\xcb\x83\x45\x84\xe3\xbf\xee\xf6\xd3\x51\xca\x72\x6a\x95\xd6\x35\x93\xe2\x74\x1e\xee\x9b\x76\x9b\x72\x7c\xc4\x54\x65\x16\x39\xeb\xdd\xd5\x1b\x61\x08\x2f\x07\x14\x82\x26\x08\x2a\x45\x48\x70\x53\x6d\x97\xed\x0d\x43\x60\x8c\xf4\xd0\xd1\xd6\x4e\xa1\x60\xba\xaa\xfc\xd0\x9c\x55\xda\x9d\xfb\xb5\x36\xb3\x7d\xd5\x57\x01\x86\xc7\x66\x5d\x73\x91\xd8\x13\xb1\x93\xa7\x6f\x89\x09\x5f\x02\x91\xed\xed\xc0\xed\xde\x74\xe9\x8c\x95\xaf\x28\x79\x21\x62\x7c\xb7\x6e\x39\xc1\x29\x8c\xfe\x20\x1a\x8d\xf7\x82\xc9\x73\x59\x4b\xda\x89\xe7\xc5\x1a\x18\x17\x7b\x92\xb5\x89\x53\xa6\xef\x44\xfa\x32\xa0\x39\x29\x18\xfd\xab\x40\xc8\xbb\x6b\xfc\xbb\xb9\x1a\x22\xbf\x5d\x96\xf1\xb9\xb3\x98\xe9\xb0\x0f\xef\xc3\xfb\x27\x00\x00\xff\xff\x10\x54\x8e\x2b\xa2\x0e\x00\x00" +var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\xcd\x6e\xdb\x38\x10\xbe\xeb\x29\x06\x39\x14\x32\xe0\x58\xee\x71\x0d\x67\x0b\xc3\x49\xb1\x8b\x64\x37\x41\x93\xdd\x9e\xc7\xd2\xd8\x22\x2c\x93\x5a\x92\xb2\xd7\x28\xf2\xee\x05\x45\x59\x12\x25\xaa\x8e\x8b\x1e\xa2\x9b\xc8\x6f\xfe\xbe\xf9\x21\xc9\x76\xb9\x90\x1a\x96\xf2\x98\x6b\x11\x54\x7f\x9f\x33\x71\x78\x11\x5b\xe2\xb0\x96\x62\x07\x57\xf5\xff\x55\x8d\x28\xf8\x86\xad\x32\x72\x50\xed\xb5\x1a\xf9\x20\xe2\x2d\x25\xe5\x9a\xb2\xc0\xe9\xff\x0f\x8f\xcb\xfb\xbb\xdb\x97\xc7\xfb\xbb\xbf\x17\xb7\xb7\x5f\xee\x9e\x9f\x83\x20\x8a\x22\x78\x91\xc8\x15\xc6\x9a\x09\x0e\x3a\x45\x0d\x08\x71\xa1\xb4\x48\x8e\x90\x4b\xb1\x67\x09\x49\x38\x88\x22\x4b\x40\xb1\x0d\x2f\x45\xb4\x80\x58\x12\x6a\x02\x04\x95\xa2\xa4\x04\x30\x8e\x45\xc1\x35\x20\x4f\x00\x39\x14\x3c\x2b\x5d\x28\xe1\xa7\xbd\xb5\x90\x80\x50\x28\x92\x41\xa0\x1b\xab\x61\x00\x00\x90\xa3\xd4\x0c\xb3\x45\xb2\x63\xfc\xa9\x58\x65\x2c\xbe\xa7\xe3\xac\xe2\x68\x72\x4f\xc7\x07\xa6\xf4\x1d\xd7\xf2\x38\x86\x28\x82\xaf\xc4\x36\xa9\x9e\xc1\xc7\xe9\xb4\x2d\xfe\x8f\x22\x79\x81\xf4\x6f\x95\xf4\xba\xc8\x2e\x15\xfd\x38\x9d\x4e\x83\x11\x7c\x0b\xac\x79\x49\x39\x4a\x0a\x2b\xe6\x9e\x2a\xe2\x66\xb0\x28\x74\xba\xb0\xf1\xd7\x60\xf3\x65\xa4\x2b\xea\xaa\x5d\xb8\x69\x63\xc3\x1c\x8f\x46\xbc\xa3\x6f\xe4\xc8\x1b\x26\x2f\x93\xae\xc5\x1d\xd3\x93\x2d\x1d\xd5\x04\x93\x24\xcc\x9b\xf8\xbd\xf9\x98\xd4\x80\x31\xa4\xa8\xd2\x45\xb6\x11\x92\xe9\x74\x37\x84\x77\x40\x63\x38\x54\xe4\xf9\xc1\x76\x77\x74\xb9\x93\x4e\xea\xce\xfb\xe8\xc2\x7f\xec\xa2\x8b\x3d\x79\x58\xbb\xd8\x4a\x81\xd7\xc1\x5e\x61\xfd\xc0\xbb\x3e\x76\xc0\xb5\x3e\xb0\xe7\x97\x29\x8f\x3d\x16\x99\x5e\x62\x8e\x2b\x96\x31\x7d\x84\x1b\x97\xd0\x1a\x6b\xbe\x49\xc6\xf8\x76\x8e\x85\x4e\x43\x67\xa2\x4c\xbe\x32\x9d\x26\x12\x0f\xb8\xca\x68\x04\x1f\xea\xa1\x34\xf9\xd7\x68\xff\x3d\x74\xb4\x98\x2f\xca\x25\xdb\xa3\xa6\x68\x7d\x82\x96\xc8\x71\x0f\xa8\x51\x6e\x48\xcf\x20\x52\x5a\x48\xdc\x74\x05\x1c\xfc\xc8\xf9\xfb\xf4\x09\x72\xe4\x2c\x0e\xaf\x96\xe5\x5c\xe2\x42\x83\xf1\xbf\x1c\xa1\x60\xa7\x63\xa9\x03\xe2\x3a\xfa\xab\x0e\x39\x59\x33\x21\xff\x42\x8e\x1b\x92\x30\xbf\x76\xe6\xe6\xc4\x8e\xb8\x87\x1e\x30\x2c\x89\x9d\x75\xf9\x1d\xec\x2e\x85\x7b\x0a\xe7\xd7\x7d\x8b\x63\xd0\x62\xe6\xda\xec\x5b\x7b\xb6\xec\x3c\xa1\x4e\x3b\x21\xe8\x16\xea\x17\xa7\xf9\x8c\x4f\x9e\xb4\x9f\x91\x78\xb2\x45\x61\xa2\x18\xae\x84\xb7\x33\xf1\x33\xc5\x51\xd2\x05\xbb\x2a\xd9\xc3\x95\x51\xe2\xfe\x10\x59\x32\x58\x12\x2f\x0d\xc2\x25\xc2\xa6\x78\x91\x24\x92\x94\x9a\x75\xca\x00\xed\xb2\x1b\x7e\x3b\x87\xb3\x81\x8c\x06\x4d\xa0\xde\xb9\x53\xd6\x97\xa3\x75\x7e\xdd\x0a\xa2\x6b\xb0\xc3\x73\x2b\x98\x16\xc1\xe3\x73\x46\xcb\x42\xfa\x30\xa4\xa9\x53\x20\x9e\xc4\x56\x7a\xfe\xe4\x6b\x61\xc7\x58\xbf\x34\xbc\x65\xe1\x77\xd7\xe7\x6d\x9d\xcb\xf2\x94\x79\xb7\x0d\x62\xcf\xc0\xf7\xd2\x1e\x9d\x1b\x83\xb9\xe9\x39\x7d\xe3\x1f\xa3\x15\x93\x4b\xd3\x1d\x42\xc2\x4d\x57\x8d\x4b\xf1\x4a\x48\x29\x0e\x73\x1f\x87\xae\x22\x0f\x8b\xe6\x2e\xeb\x65\xc2\x95\xfc\x79\x2e\xac\x73\x20\x69\x4d\x92\x78\x4c\x86\x01\x9f\x05\x87\x08\xcf\xbe\x69\xf7\xd3\x6d\xcc\x31\xea\xd4\xde\x25\xa3\xe2\x74\xa5\xee\x8a\xb6\xbb\x72\x78\xc6\x94\x65\x36\xf3\x36\x84\xaf\x79\xa2\x08\x1e\xf7\x24\x25\x4b\x08\x74\x4a\x90\xd0\xba\x3c\x50\x9b\x47\x8a\xa4\x98\xd8\xbe\x95\x5b\x37\x84\x82\x9b\xaa\x0a\x23\x7b\xdd\x69\xce\xf6\x2f\x95\x98\x6b\xab\x7a\x4d\x70\x3a\xd4\x7a\xed\x5b\x64\x87\x72\xab\x4e\x6b\x89\x75\x5f\x01\xaa\xe6\x81\xe1\x37\x6f\xc7\xd3\x37\xb7\x87\x4f\xb6\x5f\x3b\x85\x35\xe8\xe4\x1b\xe6\xd1\xdb\xfa\xd0\x8d\x36\x2f\x56\xc0\x85\xdc\x61\xd6\x44\xcb\xb8\x79\x4b\x99\x47\x84\x21\xa2\xe0\xec\xbf\x82\x20\x6f\xeb\xf8\x05\x01\x5a\xca\x3e\xbf\x2d\xcc\x73\xf7\x32\xdb\x4b\xaf\xc1\x6b\xf0\x3d\x00\x00\xff\xff\x52\x8f\x22\xea\xcf\x0e\x00\x00" func lockedtokensAdminCustody_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3790,11 +3790,11 @@ func lockedtokensAdminCustody_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x49, 0x71, 0x7f, 0x10, 0xaa, 0xba, 0x85, 0xd5, 0xcd, 0x28, 0xed, 0xed, 0x17, 0xae, 0x61, 0x97, 0x25, 0x8c, 0xba, 0xf8, 0x5, 0x28, 0x28, 0xaf, 0x82, 0xe0, 0x14, 0x94, 0xb0, 0x60, 0xad, 0x6b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x29, 0xd9, 0x9, 0xd7, 0x82, 0x22, 0x92, 0xdc, 0xec, 0xf7, 0x34, 0xce, 0xc2, 0x4f, 0x6b, 0xc6, 0x35, 0x9d, 0xfd, 0x9d, 0x6, 0x6, 0x2c, 0xaa, 0x7f, 0x5e, 0x11, 0x49, 0x4b, 0x7d, 0x13, 0xa4}} return a, nil } -var _lockedtokensAdminCustody_setup_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\xdd\x6a\xc2\x40\x10\x85\xef\xf7\x29\xe6\xaa\x28\xf8\xd3\x6b\x91\x42\xd0\x5c\x29\x35\x34\xbe\xc0\x74\x33\x35\x4b\x92\xdd\x30\x3b\x49\x5b\x24\xef\x5e\x62\x30\x65\xa5\xc5\x76\xee\xf6\xcc\xcf\x39\xfb\x99\xaa\x76\x2c\xb0\x77\xba\xa0\xec\xe8\x0a\xb2\x1e\xde\xd8\x55\xf0\xf8\xb1\x3f\x6c\x76\xf1\xf6\x78\xd8\xc5\xcf\xd1\x76\xfb\x12\xa7\xa9\x52\xc2\x68\x3d\x6a\x31\xce\xc2\x59\x29\x00\x80\x9a\xa9\x46\xa6\x89\x6e\xbc\xb8\xec\x33\x61\xd7\x9a\x8c\x78\x05\x51\x23\x79\xa4\xb5\x6b\xac\x4c\xaf\xc3\x7d\x95\x24\x80\x83\xbe\x61\x42\x71\x0c\xeb\x79\x90\x60\xa1\x7b\x9d\x06\x29\x0a\x46\x27\xd3\xef\x43\x37\x8e\x0b\x8f\x2d\x4d\xc6\x6e\x5f\xeb\x79\x68\x34\x83\xa0\x2d\x6e\x15\xfa\xfe\xe4\x98\x8a\x63\x3c\x51\x82\x92\xcf\xc6\xed\x69\x70\x67\x7c\x2c\x97\x30\x44\x07\x4b\xef\xc0\xa4\xc9\xb4\xc4\x20\x39\x0a\x54\xc8\x85\xbf\x6a\x19\xc8\xc0\x1a\x3d\x34\xb6\xbc\xd8\xfe\xfa\xaf\xd2\xd8\x62\xfd\x70\x37\xe8\xf9\xee\x44\xd2\xbc\x96\x46\x77\x4f\x21\xa4\x3f\xae\x85\x00\x2e\xf8\x90\x4f\x24\xff\x43\x78\x43\xb0\x53\x9d\xfa\x0a\x00\x00\xff\xff\x03\x0d\xf1\xc2\x83\x02\x00\x00" +var _lockedtokensAdminCustody_setup_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x50\xcd\x6a\x83\x40\x10\xbe\xef\x53\xcc\xa9\x24\x90\x9f\x9e\x83\x14\x24\x7a\x4a\x68\xa4\xe6\x05\xa6\xeb\x34\x2e\xea\xae\xcc\x8e\xb6\xa5\xe4\xdd\x8b\x91\x58\x36\xb4\x84\xce\x6d\xbf\xf9\x76\xbe\x1f\xd3\xb4\x8e\x05\xf6\x4e\x57\x54\x1c\x5d\x45\xd6\xc3\x1b\xbb\x06\x1e\x3f\xf6\x87\xed\x2e\x4d\x8e\x87\x5d\xfa\x1c\x27\xc9\x4b\x9a\xe7\x4a\x09\xa3\xf5\xa8\xc5\x38\x0b\x5f\x4a\x01\x00\xb4\x4c\x2d\x32\xcd\x74\xe7\xc5\x15\x9f\x19\xbb\xde\x14\xc4\x1b\x88\x3b\x29\x63\xad\x5d\x67\x65\x7e\x25\x0f\x53\x93\x00\x8e\xf8\x96\x09\xc5\x31\x44\xcb\xc0\xc1\x4a\x0f\x38\x8d\x50\x1c\x50\x67\xf3\x9f\x43\x37\x8a\x2b\x8f\x3d\xcd\xa6\xed\x30\xd1\x32\x14\x5a\x40\xb0\x16\xb7\x09\x75\x7f\x53\xcc\xc5\x31\x9e\x28\x43\x29\x17\xd3\xef\x79\x70\x67\x7a\xac\xd7\x30\x5a\x07\x4b\xef\xc0\xa4\xc9\xf4\xc4\x20\x25\x0a\x34\xc8\x95\xbf\x62\x05\xc8\xd8\x35\x7a\xe8\x6c\x7d\x91\xfd\x33\x57\x6d\x6c\x15\x3d\xdc\x35\xfa\x14\x66\xbf\xcb\xcf\xba\xd7\xda\xe8\x30\xd7\xa5\x15\xe4\x13\xc9\xff\x9a\xb9\x29\xe6\xac\xce\xea\x3b\x00\x00\xff\xff\xff\x73\x6a\xb6\x5a\x02\x00\x00" func lockedtokensAdminCustody_setup_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3810,11 +3810,11 @@ func lockedtokensAdminCustody_setup_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_setup_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x96, 0xaa, 0x40, 0xfa, 0xc7, 0xc8, 0x86, 0x4b, 0xda, 0x8f, 0x8a, 0x8f, 0x20, 0x36, 0xd0, 0xb0, 0x25, 0xd0, 0xe0, 0xed, 0x70, 0x60, 0xf2, 0x2c, 0x9a, 0x8d, 0x46, 0x4c, 0xce, 0xd8, 0x9, 0x5f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6f, 0x5d, 0xab, 0xd2, 0x1f, 0x88, 0x4b, 0xe, 0x6a, 0x28, 0xd5, 0x20, 0xb2, 0xa4, 0x69, 0xe6, 0x14, 0xb1, 0x8a, 0xd2, 0x13, 0xc1, 0x1d, 0x75, 0x79, 0x77, 0x17, 0xbf, 0xd4, 0x76, 0x85, 0x22}} return a, nil } -var _lockedtokensAdminDeposit_locked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x41\x4f\xdc\x3a\x10\x3e\x93\x5f\x31\xe4\x00\x89\x04\xd9\x77\x78\x7a\x87\x68\x81\xb7\xda\x85\x1e\x40\xa5\x5a\x68\x7b\x76\x92\xc9\xc6\xc5\x6b\x47\xf6\x84\x05\x21\xfe\x7b\x15\x3b\x4e\x63\x16\x41\x73\x89\x32\x1e\xcf\x7c\xf3\xcd\xf7\x85\x6f\x5b\xa5\x09\xae\x3a\xb9\xe1\x85\xc0\x7b\xf5\x80\x12\x6a\xad\xb6\x10\x07\xb1\x38\xf2\x99\x42\xed\x82\x2c\xff\x1d\x47\x3e\xe5\x46\x95\x0f\x58\xd9\xa0\x71\x59\xff\x3c\xdd\xdc\x2e\xaf\x2f\x57\xf7\xb7\xd7\x97\x5f\x17\xab\xd5\xfa\xf2\xee\x2e\x8a\x48\x33\x69\x58\x49\x5c\xc9\x84\x54\x0e\x8b\xaa\xd2\x68\xcc\x09\xb0\xad\xea\x24\xe5\xf0\xfd\x8a\x3f\xfd\xf7\x6f\x0a\x2f\x51\x04\x00\x30\x9b\xc1\x7d\x83\xf0\x83\x75\x82\x40\xa3\x51\x9d\x2e\x11\xa8\x61\x04\x8d\x12\x95\x01\x6a\x10\xc8\xb5\xb5\x51\xa6\x11\x0a\xe4\x72\x03\xb6\x55\x8d\x5a\x63\x65\x4b\x09\x24\x30\x28\xc9\xd6\xca\xe1\xff\x60\xd6\xcc\x46\x5d\xcf\x56\x63\xcb\x34\x26\xac\xda\x72\x99\xc3\xa2\xa3\x66\x51\x96\x3d\xbc\x11\xd6\x00\xed\x0b\x12\x30\xd0\x58\xa3\x46\xd9\xe3\x52\x16\x8f\xbd\x78\x6c\xc0\x90\xd2\x58\xc1\xa3\x2d\xed\xaf\xf5\x30\x6c\x64\x8d\x35\x9c\xb9\xdc\xac\x50\x5a\xab\xdd\x9c\x75\xd4\x24\x21\xae\x9f\x9c\x9a\x4a\xb3\x1d\x2b\x04\xa6\x70\x34\x52\xef\x00\x9f\x27\x3d\xd7\x39\xcc\xfa\x56\x6c\x83\xb3\xda\x9f\xdb\xe3\x34\x3a\x38\x38\xb8\xb8\x80\x96\x49\x5e\x26\xf1\x52\x75\xa2\x02\xa9\x08\x5c\xbf\x7d\xe4\x6a\x27\x51\x1f\x1b\xc7\xf7\x61\x9c\x46\x01\x6c\x8b\x75\x02\x7b\x3c\xec\x1f\x3f\xc3\xd1\x54\x0a\x99\x7d\x2d\xfa\xe4\xa5\x12\x02\xed\xe2\xcf\x93\xe0\x62\xff\xb8\x29\x82\x9b\x93\x8f\x37\xf7\xef\xdc\xac\xdf\x18\x35\x41\xa1\x34\xf8\xfa\x60\xec\x77\x56\x26\x6c\x37\xa7\x24\x37\x1c\x94\x63\xc3\x29\x0f\xcc\x18\xd4\x14\x4e\xe0\x79\xc9\x36\x48\x83\x52\x12\xe6\x84\x9d\x03\xa9\x14\x0e\xcf\x40\x72\x71\x12\x5c\xda\xa2\x31\x6c\x83\x39\xc4\xbd\xc0\x4d\x8b\x25\xaf\x39\x56\xc0\x5c\x01\xe0\xc6\x42\x66\x1e\xda\x10\x3f\x84\x25\x93\xfd\x81\x41\x59\x05\xb0\x4d\x1c\xfd\x61\x62\xaa\x52\x2f\x21\xef\x13\x6b\xcf\x4f\x75\x6a\x50\xd4\xd9\xe8\x17\x98\x9f\x8e\xaa\xcd\x76\x43\xc1\xc4\x9b\xd6\xbd\x1d\xff\xaf\xae\x37\x3e\x61\xd9\x11\xbe\x63\x98\xbe\xb3\xc6\x92\xb7\x1c\x25\x1d\x1b\x68\xbb\x42\xf0\x72\x9c\x5b\x15\xbf\xb0\x0c\xed\x32\x66\xc3\x19\x4c\x28\x26\x95\xfe\x8d\x1b\xa7\xbd\xd6\x58\x22\x7f\x44\xfd\xb6\xbc\x0d\x3a\x65\x8f\xe9\xa1\xba\x37\x48\x4b\xd6\xb2\x82\x0b\x4e\xcf\xf3\xa3\x85\x7c\x5e\x0f\x7f\xa3\x97\xd0\xb0\xbe\xc5\xeb\x3b\x32\x9f\xb9\x59\x67\x6e\x6d\xa3\x97\xf7\x50\xed\xab\x79\x70\x57\xf2\xb9\xa3\x5d\xa9\x8f\x69\x18\x64\x63\x37\x1b\x87\x24\xae\xb0\x55\x86\xbb\x2d\xf9\x3d\x4b\xaf\x1c\x2e\xf7\x4a\xe9\xb7\xd8\x27\x6c\x66\x95\x2b\x36\xfc\xa4\xe6\xa7\xa1\xa6\xbc\x5e\x5e\xa3\xdf\x01\x00\x00\xff\xff\x4c\x94\xd4\x43\x92\x06\x00\x00" +var _lockedtokensAdminDeposit_locked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x41\x4f\xdc\x3c\x10\x3d\x93\x5f\x31\xe4\x00\x89\x04\xd9\xef\xf0\xa9\x87\x68\x81\xae\x76\xa1\x07\x50\xa9\x80\xb6\x67\x27\x99\x6c\x5c\xbc\x76\x64\x4f\x58\x2a\xc4\x7f\xaf\x62\xc7\x69\xbc\x8b\xa0\xb9\x44\x19\x8f\xdf\xbc\x99\x79\x2f\x7c\xd3\x2a\x4d\x70\xd5\xc9\x35\x2f\x04\x3e\xa8\x47\x94\x50\x6b\xb5\x81\x38\x88\xc5\x91\xcf\x14\x6a\x1b\x64\xf9\xef\x38\xf2\x29\x37\xaa\x7c\xc4\xca\x06\x8d\xcb\xfa\xef\xf9\xe6\x76\x79\x7d\xb9\x7a\xb8\xbd\xbe\xfc\xba\x58\xad\xee\x2e\xef\xef\xa3\x88\x34\x93\x86\x95\xc4\x95\x4c\x48\xe5\xb0\xa8\x2a\x8d\xc6\x9c\x00\xdb\xa8\x4e\x52\x0e\xdf\xaf\xf8\xf3\xa7\xff\x53\x78\x89\x22\x00\x80\xd9\x0c\x1e\x1a\x84\x1f\xac\x13\x04\x1a\x8d\xea\x74\x89\x40\x0d\x23\x68\x94\xa8\x0c\x50\x83\x40\xae\xac\x8d\x32\x8d\x50\x20\x97\x6b\xb0\xa5\x6a\xd4\x1a\x2b\x0b\x25\x90\xc0\xa0\x24\x8b\x95\xc3\xe7\x97\xa0\xd9\xcc\x86\x5f\x5d\xd5\x56\x63\xcb\x34\x26\xac\xda\x70\x99\xc3\xa2\xa3\x66\x51\x96\x3d\xc1\x91\xd8\x40\xee\x0b\x12\x30\xd0\x58\xa3\x46\xd9\x33\x53\x96\x91\xbd\x78\x6c\xc0\x90\xd2\x58\xc1\x53\x8f\x3d\x5e\xeb\x89\xd8\xc8\x1d\xd6\x70\xe6\x72\xb3\x42\x69\xad\xb6\x73\xd6\x51\x93\x84\xc4\x7e\x72\x6a\x2a\xcd\xb6\xac\x10\x98\xc2\xd1\x38\x7c\xc7\xf8\x3c\xe9\xa7\x9d\xc3\xac\x2f\xc5\xd6\x38\xab\xfd\xb9\x3d\x4e\xa3\x83\x83\x83\x8b\x0b\x68\x99\xe4\x65\x12\x2f\x55\x27\x2a\x90\x8a\xc0\xd5\xdb\x67\xae\xb6\x12\xf5\xb1\x71\x13\x3f\x8c\xd3\x28\xa0\x6d\xb9\x4e\x68\x8f\x87\xfd\xe3\x7b\x38\x9a\x8a\x21\xb3\xaf\x45\x9f\xbc\x54\x42\xa0\x5d\xfd\x79\x12\x5c\xec\x1f\xd7\x45\x70\x73\xf2\xb1\x73\xff\xde\xf5\xfa\x8d\x51\x13\x00\xa5\xc1\xd7\x3b\x6d\xbf\xb1\x32\x61\xab\x39\x2d\xb9\xe6\xa0\x1c\x0b\x4e\xe7\xc0\x8c\x41\x4d\x61\x07\x7e\x2e\xd9\x1a\x69\x50\x4a\xc2\x9c\xb4\x73\x20\x95\xc2\xe1\x19\x48\x2e\x4e\x82\x4b\x1b\x34\x86\xad\x31\x87\xb8\x97\xb8\x69\xb1\xe4\x35\xc7\x0a\x98\x03\x00\x6e\x2c\x65\xe6\xa9\x0d\xf1\x43\x58\x32\xd9\x1f\x18\x94\x55\x40\xdb\xc4\xd1\xdf\x49\x4c\x55\xea\x25\xe4\x9d\x62\x0d\xfa\xa1\x4e\x0d\x8a\x3a\x1b\x1d\x03\xf3\xd3\x51\xb5\xd9\x76\x00\x4c\xbc\x6d\xdd\xdb\xcd\x7f\x30\x11\x3e\x63\xd9\x11\xbe\x61\x98\xbe\xb2\xc6\x92\xb7\x1c\x25\x1d\x1b\x68\xbb\x42\xf0\x72\xec\x5b\x15\xbf\xb0\x0c\xed\x32\x66\xc3\x19\x4c\x46\x4c\x2a\xfd\x17\x37\x4e\x6b\xdd\x61\x89\xfc\x09\xf5\x2e\xbc\x0d\x3a\x65\x8f\xe9\xa1\xba\xd7\x48\x4b\xd6\xb2\x82\x0b\x4e\xbf\xe7\x47\x3b\xbf\x0f\x8f\xfb\xfa\x86\xb6\x67\xae\xc1\x99\xdb\xd5\x68\xe0\x3d\x2a\xfb\x12\x1e\x2c\x95\x7c\x6c\x63\x07\xf5\x7e\xef\x83\x56\xec\x3a\xe3\x70\x72\x2b\x6c\x95\xe1\x6e\x35\x7e\xb9\xd2\xcb\x85\xcb\x3d\x28\xbd\xcb\x7d\x32\xc2\xac\x72\x60\xc3\x9f\x69\x7e\x1a\x0a\xc9\x8b\xe4\x35\xfa\x13\x00\x00\xff\xff\x35\x62\x62\xfc\x89\x06\x00\x00" func lockedtokensAdminDeposit_locked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3830,7 +3830,7 @@ func lockedtokensAdminDeposit_locked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/deposit_locked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8c, 0x6d, 0x46, 0xd6, 0x46, 0x68, 0xd9, 0x89, 0x27, 0x3a, 0x37, 0x1c, 0xd3, 0x18, 0xd2, 0xd0, 0x6, 0x18, 0xee, 0xe3, 0x56, 0xb3, 0x63, 0x24, 0x84, 0x3, 0xd5, 0x41, 0xf9, 0xdd, 0x4c, 0x73}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xff, 0x3c, 0xce, 0x3d, 0xad, 0x25, 0xee, 0xc, 0x3c, 0x93, 0x98, 0xe0, 0x97, 0x72, 0x15, 0x43, 0xfb, 0x7c, 0xc5, 0x5f, 0xb6, 0x21, 0x84, 0xc0, 0x5f, 0x12, 0x8a, 0xd6, 0x70, 0xbf, 0x2e, 0xdd}} return a, nil } @@ -3874,7 +3874,7 @@ func lockedtokensAdminUnlock_tokensCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x4d\x6f\xe3\x46\x0c\xbd\xfb\x57\xb0\x7b\xd8\xda\x40\x10\xf7\x50\xf4\x10\x24\xbb\x70\x93\xb4\x0d\x36\xed\x2e\x92\xec\xa9\xe8\x81\xd6\x50\xd2\xc0\xd2\x8c\x31\x43\xc5\x09\x02\xff\xf7\x82\x33\x92\x3d\xfa\x88\xb1\xba\x24\x96\xc8\xc7\xaf\x47\x3e\x5d\x6f\xad\x63\xb8\xb7\xd9\x86\xd4\x93\xdd\x90\xf1\x90\x3b\x5b\xc3\x2f\x2f\xf7\x5f\xaf\xbf\xdc\xde\x3c\x7d\xfd\x72\xfb\xcf\xea\xe6\xe6\xe1\xf6\xf1\x71\x36\x5b\x2e\xe1\xa9\xd4\x1e\xd8\xa1\xf1\x98\xb1\xb6\x06\x1a\x4f\x1e\xb8\x24\xa8\x02\x08\x70\x44\x41\x55\x6b\x23\x0e\x6c\xc1\x13\x07\x8b\xc6\x88\x0d\x54\xba\xd6\x0c\xb9\x75\x50\x37\x15\xeb\x6d\x45\x80\x59\x66\x1b\xc3\x5e\x1c\xb4\x01\x04\xaf\x4d\x51\x51\x1a\x28\x06\x3f\x98\x02\x2a\xe5\xc8\x4b\xf0\xc6\x93\x02\xf4\xb0\xa1\xd7\x00\xe0\x4b\xdb\x54\x0a\xd6\x94\x04\x15\x8b\xa1\xe3\x6c\x96\xc0\xcf\xa3\xdd\x9d\xc9\xed\x05\xbc\xad\xa2\xcd\x05\x7c\xff\x43\xbf\xfc\xf6\xeb\x7e\x01\x6f\xb3\x19\x00\xc0\xd6\xd1\x16\x1d\xcd\x43\x79\x17\xb0\x6a\xb8\x5c\x45\xdc\x83\x89\x3c\xcb\x25\x7c\xef\xe2\xae\x46\x09\x73\x89\x0c\x25\x2a\xf0\xb6\x26\xf0\x32\x01\x9b\x03\x39\x67\x5d\x8a\x80\x8e\xc0\xb3\x75\xa4\xa4\x27\x2c\x8d\x57\x3a\x24\x8b\xee\x15\xbc\x95\xf2\x5e\x21\x43\x23\xa5\x6a\xe3\xb7\x94\x31\x29\xa8\x90\xa9\x87\x73\x97\x87\x46\xa4\x43\x33\x44\xca\xcb\x68\x5c\x63\x8e\x53\x60\x5d\x93\x3f\x4b\x5d\xb9\x24\x13\x9c\x93\xc0\xda\x83\xb1\x0c\xf6\x99\xdc\xce\x69\x66\x32\x07\x8f\x67\x74\xb0\x46\xd5\x56\xec\x27\x1a\x09\x57\x91\x19\xe7\x95\x45\x75\x39\xfa\xfc\x69\x2e\xec\xbb\x80\xa5\xd4\x8d\x05\x2d\xe3\x54\xb4\x29\x7e\x3f\xc2\x2e\x0e\xf1\xe4\xf9\xfc\x19\xde\xf6\x32\xfe\x11\xd8\x71\x1c\x15\x71\x0c\xfb\x40\xf9\x21\x83\xb5\x75\xce\xee\x2e\x3f\xa6\xe4\x3f\x0f\x7f\x56\xf2\xfd\xda\x56\x15\x85\xa2\xbb\xa4\x7a\x86\xc9\x8f\x81\xf9\x63\x4c\xfd\x1b\x72\x39\xca\x74\x8b\x46\x67\xf3\x0f\xd7\x81\xa0\xd2\xc5\x98\x04\x20\x38\xca\xc9\x91\xc9\x48\xa6\x22\x1d\x0f\x49\x42\x76\x80\xfd\xb0\x38\xd6\x23\xbb\xd3\xf1\xba\xad\x5a\x28\x72\xa4\xf0\xb9\xec\x42\x4a\xc8\x76\x9e\xab\xaa\x12\xaa\x09\xbe\xce\xa5\x2d\x3e\xb0\x6c\x4d\x19\x36\x9e\x60\x47\xa0\xac\xf9\x99\x01\x76\x68\x18\xd8\x0e\xfd\x1d\x3d\x93\x8b\xcb\x4c\x86\xb5\xeb\xb3\x4a\xe7\x20\x8b\x8d\xba\xf2\x43\x47\xb6\x50\xb4\x57\x40\x9b\xdc\xba\x1a\x83\x87\x14\x72\x58\xf6\x76\x41\x7a\xae\x31\xcb\xf6\xb6\xb4\x04\x90\x02\xe3\x20\x0b\xe2\xf6\xdd\x7c\xd0\x8e\x7e\xe7\xe5\x39\x2f\x88\xaf\x71\x8b\x6b\x5d\x69\x7e\x9d\x1a\xfb\x5f\xb6\x52\xe4\xde\x26\xc6\x9c\x04\xde\x7f\x9a\x9f\x36\xf8\xd6\xac\x2b\x9d\x8d\xa7\x1f\x72\x88\xe3\x9e\x2f\x86\xa3\xe9\x48\xda\xab\xb3\x9b\xec\xd5\x64\xf9\x52\xcf\xfd\x84\xf9\x7c\x31\x86\xee\x75\x31\x72\x36\xfa\x3c\x50\x66\x9d\xea\x56\xa2\x45\xed\x5a\x8a\xdd\x3e\x4d\x65\x25\x25\x0c\xc3\xc8\x33\xf9\xb2\x8d\x1f\xa4\xe1\x6f\x34\x58\x90\x8b\x03\x7c\x2f\xa3\x93\x8d\x4a\x68\xf5\x67\x5f\x59\xb0\x0e\x97\x36\x28\xd8\xf0\xe4\xa1\x2b\x9a\x9a\x0c\x27\xa7\xec\x5d\x64\xb9\x63\x11\x72\x15\x11\xaf\x92\xdd\xfa\x77\x40\xb5\xff\x7e\x3a\x99\xe2\x9d\xc9\x1c\xa1\xa7\xb1\x02\xae\x5f\xe3\xa2\x87\x10\xef\x42\x0c\x9a\x76\xae\x5b\xbc\xa8\x2f\xf7\x82\x34\x57\x54\x31\x5e\xf4\x52\x9e\x60\x41\x92\xd4\xb5\x35\xac\x4d\x73\x38\x36\x86\x5e\x18\x34\x93\x8b\x6b\xd9\x9e\x88\xca\xda\xed\x29\x94\xee\x6c\x70\x22\xcb\xbe\xc9\x32\x22\x25\x7a\x6b\x14\x28\x4b\x51\x2d\x44\x70\x4e\x41\xb1\x15\x11\xab\xd1\x6d\xa2\x96\xaf\xf1\x7d\xf3\xac\x4d\x7e\xd2\x60\x3f\x7a\xbb\xef\x73\x72\x3f\x3a\x8a\xad\x3e\xd2\x0b\x65\x4d\x28\xbf\xc6\x0d\x79\x39\x65\x25\x39\x82\xf9\xa1\x08\x47\x98\x95\xc1\xb6\x4b\x01\x70\x6d\x9f\x69\x31\x44\xd4\x0c\x35\xa1\xf1\x41\xe0\xb9\xd4\xa6\x80\x9d\x50\x6f\xe7\xac\xfc\xab\xb9\x4c\xd8\x20\x5f\xe5\x0e\x26\x5d\x1c\xe2\x49\x2b\x35\x1f\x55\x7b\x4d\xe0\xf1\x79\xd0\xd1\x44\x78\x47\x14\x3d\x4d\xe0\xd9\x44\x6f\xa2\x46\x4a\x94\x29\x95\x4e\x62\x9d\x01\xdb\x1f\x16\xec\x56\xfb\xb5\xd9\x5c\x7e\x9c\x80\x5d\x6e\xc3\xf1\x9c\x04\x39\x03\x46\x57\x10\xff\x50\xac\xfd\x6c\x3f\xfb\x3f\x00\x00\xff\xff\xf5\xc0\xcc\x21\xdc\x0a\x00\x00" +var _lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x4d\x6f\xe3\x46\x0c\xbd\xfb\x57\xb0\x7b\xd8\xda\x40\x10\xf7\x50\xf4\x10\x24\xbb\x70\x93\xb4\x0d\x36\xed\x2e\x92\xec\xa9\xe8\x81\xd6\x50\xd2\xc0\xd2\x8c\x31\x43\xc5\x09\x02\xff\xf7\x82\x33\x92\x3d\xfa\x88\xb1\xba\x24\x96\xc8\xc7\xaf\x47\x3e\x5d\x6f\xad\x63\xb8\xb7\xd9\x86\xd4\x93\xdd\x90\xf1\x90\x3b\x5b\xc3\x2f\x2f\xf7\x5f\xaf\xbf\xdc\xde\x3c\x7d\xfd\x72\xfb\xcf\xea\xe6\xe6\xe1\xf6\xf1\x71\x36\x5b\x2e\xe1\xa9\xd4\x1e\xd8\xa1\xf1\x98\xb1\xb6\x06\x1a\x4f\x1e\xb8\x24\xa8\x02\x08\x70\x44\x41\x55\x6b\x23\x0e\x6c\xc1\x13\x07\x8b\xc6\x88\x0d\x54\xba\xd6\x0c\xb9\x75\x50\x37\x15\xeb\x6d\x45\x80\x59\x66\x1b\xc3\x5e\x1c\xb4\x01\x04\xaf\x4d\x51\x51\x1a\x28\x06\x3f\x98\x02\x2a\xe5\xc8\x4b\xf0\xc6\x93\x02\xf4\xb0\xa1\xd7\x00\xe0\x4b\xdb\x54\x0a\xd6\x94\x04\x15\x8b\xa1\xe3\x6c\x96\xc0\xcf\xa3\xdd\x9d\xc9\xed\x05\xbc\xad\xa2\xcd\x05\x7c\xff\x43\xbf\xfc\xf6\xeb\x7e\x01\x6f\xb3\x19\x00\xc0\xd6\xd1\x16\x1d\xcd\x43\x79\x17\xb0\x6a\xb8\x5c\x45\xdc\x83\x89\x3c\xcb\x25\x7c\xef\xe2\xae\x46\x09\x73\x89\x0c\x25\x2a\xf0\xb6\x26\xf0\x32\x01\x9b\x03\x39\x67\x5d\x8a\x80\x8e\xc0\xb3\x75\xa4\xa4\x27\x2c\x8d\x57\x3a\x24\x8b\xee\x15\xbc\x95\xf2\x5e\x21\x43\x23\xa5\x6a\xe3\xb7\x94\x31\x29\xa8\x90\xa9\x87\x73\x97\x87\x46\xa4\x43\x33\x44\xca\xcb\x68\x5c\x63\x8e\x53\x60\x5d\x93\x3f\x4b\x5d\xb9\x24\x13\x9c\x93\xc0\xda\x83\xb1\x0c\xf6\x99\xdc\xce\x69\x66\x32\x07\x8f\x67\x74\xb0\x46\xd5\x56\xec\x27\x1a\x09\x57\x91\x19\xe7\x95\x45\x75\x39\xfa\xfc\x69\x2e\xec\xbb\x80\xa5\xd4\x8d\x05\x2d\xe3\x54\xb4\x29\x7e\x3f\xc2\x2e\x0e\xf1\xe4\xf9\xfc\x19\xde\xf6\x32\xfe\x11\xd8\x71\x1c\x15\x71\x0c\xfb\x40\xf9\x21\x83\xb5\x75\xce\xee\x2e\x3f\xa6\xe4\x3f\x0f\x7f\x56\xf2\xfd\xda\x56\x15\x85\xa2\xbb\xa4\x7a\x86\xc9\x8f\x81\xf9\x63\x4c\xfd\x1b\x72\x39\xca\x74\x8b\x46\x67\xf3\x0f\xd7\x81\xa0\xd2\xc5\x98\x04\x20\x38\xca\xc9\x91\xc9\x48\xa6\x22\x1d\x0f\x49\x42\x76\x80\xfd\xb0\x38\xd6\x23\xbb\xd3\xf1\xba\xad\x5a\x28\x72\xa4\xf0\xb9\xec\x42\x4a\xc8\x76\x9e\xab\xaa\x12\xaa\x09\xbe\xce\xa5\x2d\x3e\xb0\x6c\x4d\x19\x36\x9e\x60\x47\xa0\xac\xf9\x99\x01\x76\x68\x18\xd8\x0e\xfd\x1d\x3d\x93\x8b\xcb\x4c\x86\xb5\xeb\xb3\x4a\xe7\x20\x8b\x8d\xba\xf2\x43\x47\xb6\x50\xb4\x57\x40\x9b\xdc\xba\x1a\x83\x87\x14\x72\x58\xf6\x76\x41\x7a\xae\x31\xcb\xf6\xb6\xb4\x04\x90\x02\xe3\x20\x0b\xe2\xf6\xdd\x7c\xd0\x8e\x7e\xe7\xe5\x39\x2f\x88\xaf\x71\x8b\x6b\x5d\x69\x7e\x9d\x1a\xfb\x5f\xb6\x52\xe4\x3e\xcd\x27\xe6\x9c\x44\xfe\xd6\xac\x2b\x9d\x8d\xa7\x1b\x62\xc4\x71\xce\x17\xc3\xd6\x77\x24\xec\xd5\xd1\x4d\xee\x6a\xb2\x3c\xc9\xf7\x7e\xc2\x7c\xbe\x18\x43\xf7\xba\x14\x39\x19\x7d\x1e\x28\xb3\x4e\x75\x94\x6f\x51\xbb\x96\x61\xb7\x2f\x53\x59\x49\x09\xc3\x30\xf2\x4c\xbe\x6c\xe3\x87\xd3\xff\x37\x1a\x2c\xc8\xc5\x01\xbd\x97\xd1\xc9\x46\x25\xb4\xf9\xb3\xaf\x1c\x58\x87\x4b\x1a\x14\x6a\x78\xd2\xd0\x15\x4d\x4d\x86\x93\x53\xf5\x2e\xb2\xdc\xa9\x08\xb9\x8a\x88\x57\xc9\xee\xfc\x3b\xa0\xd2\x7f\x3f\x9d\x4c\xf1\xce\x64\x8e\xd0\xd3\x58\xe1\xd6\xaf\x71\x91\x43\x88\x77\x21\x06\x4d\x3b\xd7\x2d\x5e\xd4\x8f\x7b\x41\x9a\x2b\xaa\x18\x2f\x7a\x29\x4f\xb0\x20\x49\xea\xda\x1a\xd6\xa6\x39\x1c\x13\x43\x2f\x0c\x9a\xc9\xc5\xb5\x6b\x4f\x40\x65\xed\xf6\x14\x4a\x77\x16\x38\x91\x5d\xdf\x64\x19\x91\x12\x3d\x35\x0a\x94\xa5\xa8\x06\x22\x28\xa7\xa0\xd8\x8a\x48\xd5\xe8\x36\x51\xab\xd7\xf8\xbe\x79\xd6\x26\x3f\x69\xb0\x1f\xbd\xdd\xf7\x39\xb9\x1f\x1d\xbd\x56\xff\xe8\x85\xb2\x26\x94\x5f\xe3\x86\xbc\x9c\xaa\x92\x1c\xc1\xfc\x50\x84\x23\xcc\xca\x60\xdb\xa5\x00\xb8\xb6\xcf\xb4\x18\x22\x6a\x86\x9a\xd0\xf8\x20\xe0\x5c\x6a\x53\xc0\x4e\xa8\xb7\x73\x56\xfe\xd5\x5c\x26\x6c\x90\xaf\x72\xe7\x92\x2e\x0e\xf1\xa4\x95\x9a\x8f\xaa\xbc\x26\xf0\xf8\x3c\xe8\x68\x22\xac\x23\x8a\x9e\x26\xf0\x6c\xa2\x37\x51\x03\x25\xca\x94\x0a\x27\xb1\xce\x80\xed\x0f\x0b\x72\xab\xed\xda\x6c\x2e\x3f\x4e\xc0\x2e\xb7\xe1\x78\x4e\x82\x9c\x01\xa3\x2b\x88\x7f\x28\xd6\x7e\xb6\x9f\xfd\x1f\x00\x00\xff\xff\x18\xa1\x72\xd1\xbc\x0a\x00\x00" func lockedtokensAdminUnlock_tokens_for_multiple_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3890,7 +3890,7 @@ func lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xa2, 0x43, 0xbc, 0x49, 0x46, 0x92, 0xec, 0x61, 0x1a, 0x24, 0xbd, 0x80, 0x79, 0x40, 0x9e, 0x6d, 0x9f, 0x5e, 0x56, 0xff, 0x85, 0xca, 0x7b, 0x49, 0x86, 0xc4, 0x1b, 0x47, 0x3c, 0xa8, 0xd2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb5, 0x33, 0xad, 0xc4, 0x84, 0xb9, 0x27, 0xb, 0x5e, 0xc1, 0xf8, 0xc8, 0xcc, 0xc0, 0x2f, 0xd7, 0x2d, 0x3f, 0x7f, 0x86, 0x98, 0x3d, 0xfd, 0x37, 0x47, 0x9d, 0x29, 0x13, 0xa, 0x13, 0xc4, 0x32}} return a, nil } @@ -3954,7 +3954,7 @@ func lockedtokensDelegatorDelegate_unstaked_tokensCdc() (*asset, error) { return a, nil } -var _lockedtokensDelegatorGet_delegator_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x50\x5d\x4b\x02\x41\x14\x7d\x9f\x5f\x71\xf2\x21\x66\x5f\x24\xea\x4d\x2a\x11\x57\x48\x94\x14\xb5\x1f\x30\xce\xde\xb5\xc1\xd9\xb9\xcb\xec\x5d\x2a\xc4\xff\x1e\xbb\x5b\x66\x1f\x74\x5f\x06\xce\x9c\x2f\x8e\x2b\x4a\x8e\x82\x39\xdb\x3d\x65\x1b\xde\x53\xa8\x90\x47\x2e\x70\xf5\x3a\x5f\x8c\x67\x93\x74\xb3\x98\x4d\x1e\x47\x69\xba\x9a\xac\xd7\x4a\x19\x6b\xa9\xaa\xb4\xf1\x3e\x41\x5e\x07\x14\xc6\x05\x6d\xac\xe5\x3a\xc8\x00\xa3\x2c\x8b\x54\x55\xc9\x00\x4f\xd3\x20\x37\xd7\x38\x28\x05\x00\x9e\x04\xbe\x4d\x18\x75\xd4\x69\xc8\x79\x45\x39\xee\xb0\x23\xf9\xc0\x3e\x6d\x92\x56\xd2\x5c\x7f\x47\x32\x36\xa5\xd9\x3a\xef\xe4\xed\xf6\xf2\xbc\x64\xbf\x7d\x1e\xd8\x67\x14\x0f\xdf\x3e\xe6\x3f\x83\x8e\xf7\xfa\x64\xd9\xdc\xff\xec\x65\xbd\xf5\xce\x2e\x8d\x3c\x9f\x44\x67\x8d\xb6\x1c\x23\xbf\xe8\x2f\x64\x38\x44\x69\x82\xb3\xba\x37\xe6\xda\x67\x08\x2c\xe8\x48\x30\x88\x94\x53\xa4\x60\x09\xc2\x28\x5b\x63\xfc\x0a\xec\x25\xdd\x48\x91\xa4\x8e\xe1\xcf\x9d\x9a\x21\x52\xf2\xb4\x33\xc2\x71\x9a\xea\xe4\x42\x1d\xd5\x7b\x00\x00\x00\xff\xff\x55\x4e\x83\x2e\xba\x01\x00\x00" +var _lockedtokensDelegatorGet_delegator_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xdf\x4a\xf3\x40\x10\xc5\xef\xf7\x29\xce\xd7\x8b\x8f\xcd\x4d\x11\xbd\x2b\x6a\x29\x4d\xc1\xd2\x62\x4b\x5b\x1f\x60\xb3\x99\xc4\xa5\x9b\x9d\xb0\x99\xa0\x22\xbe\xbb\x24\xd1\x5a\xff\xcc\xcd\xc2\x70\xce\xf9\xed\x1c\x57\xd5\x1c\x05\x6b\xb6\x47\xca\x0f\x7c\xa4\xd0\xa0\x88\x5c\xe1\xe2\x79\xbd\x99\xaf\x16\xe9\x61\xb3\x5a\xdc\xcf\xd2\x74\xb7\xd8\xef\x95\x32\xd6\x52\xd3\x68\xe3\x7d\x82\xa2\x0d\xa8\x8c\x0b\xda\x58\xcb\x6d\x90\x09\x66\x79\x1e\xa9\x69\x92\x09\x1e\x96\x41\xae\x2e\xf1\xaa\x14\x00\x78\x12\xf8\x9e\x30\x1b\xa4\xcb\x50\xf0\x8e\x0a\xdc\xa0\x24\xf9\xd8\x7d\xc6\x24\xbd\xa5\x9b\x71\x49\x32\x37\xb5\xc9\x9c\x77\xf2\x72\xfd\xff\xfc\x93\xe3\xfe\xb9\x63\x9f\x53\xbc\xd5\x27\x4b\x37\xdf\x64\xeb\x9f\xd8\x6d\x9b\x79\x67\xb7\x46\x1e\x4f\xa6\x33\x62\xc6\x31\xf2\x93\xfe\xda\x4c\xa7\xa8\x4d\x70\x56\x8f\xe6\xdc\xfa\x1c\x81\x05\x83\x08\x06\x91\x0a\x8a\x14\x2c\x41\x18\x75\x1f\x8c\x5f\xc0\x51\x32\x94\x10\x49\xda\x18\xfe\xec\xa1\x3b\x34\x25\x4f\xa5\x11\x8e\xcb\x54\x27\xff\xd4\x9b\x7a\x0f\x00\x00\xff\xff\xc4\xad\x7d\x8c\x9a\x01\x00\x00" func lockedtokensDelegatorGet_delegator_idCdcBytes() ([]byte, error) { return bindataRead( @@ -3970,11 +3970,11 @@ func lockedtokensDelegatorGet_delegator_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0xc3, 0xa5, 0xbc, 0x85, 0xfa, 0x8d, 0xd0, 0x9e, 0x14, 0x44, 0xf4, 0x8f, 0x49, 0x96, 0x19, 0xc5, 0x4f, 0xc7, 0x7c, 0xdc, 0x2, 0x31, 0x7c, 0xdd, 0x25, 0xb5, 0x95, 0xb7, 0xca, 0x12, 0x3a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0x45, 0x26, 0x28, 0x0, 0x9e, 0x9d, 0x16, 0x8f, 0x3e, 0x88, 0x31, 0x36, 0x91, 0x96, 0x34, 0xdc, 0x16, 0x16, 0xb3, 0xfa, 0x23, 0x32, 0xa1, 0x76, 0x92, 0x32, 0x6e, 0x70, 0x2c, 0xd, 0xc}} return a, nil } -var _lockedtokensDelegatorGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4d\x8f\xda\x30\x14\xbc\xe7\x57\x3c\xf6\x80\x12\x69\x15\x7a\x46\x4d\x25\x44\xa8\x8a\x16\xb1\x2b\xe0\xb6\xda\x83\x13\xbf\x04\x17\x63\x47\xb6\x23\x8a\x22\xfe\x7b\x95\x0f\x42\x4c\x42\x85\x9a\x4b\x84\x3d\x33\x1e\xbf\x19\xc2\x8e\x99\x54\x06\x7e\x72\x79\x5a\x86\x3b\x12\x71\xdc\x1a\x72\x60\x22\x85\x44\xc9\x23\xbc\xf4\x37\x5e\x9c\x86\xb3\x92\xf1\x01\xe9\x4e\x1e\x50\xe8\x1a\xfd\xed\xcf\xea\x7d\xfe\xb6\x08\x77\xef\x6f\x8b\xf5\x2c\x0c\x37\x8b\xed\xd6\x71\x26\x13\xd8\xa0\xc9\x95\xd0\x40\x04\x10\xa5\xc8\x19\x64\x02\x21\x72\x4c\x89\x91\x6a\x29\x12\x09\x32\xfa\x8d\xb1\xd1\x60\xf6\xc4\x80\xd9\x23\x90\x38\x96\xb9\x30\x10\x4b\x61\x94\xe4\xba\x94\x61\x02\x98\xd1\x20\xa4\x3a\x12\xde\x22\x88\xa0\xa0\xf7\x44\x21\xbd\x2e\x39\x0e\x89\x63\xd4\xda\x25\x9c\x7b\x90\xe4\x02\x8e\x84\x09\xb7\xd9\x9d\xc2\x8c\x52\x85\x5a\x7b\x53\xf8\xec\xdf\xcf\xb7\x8c\x7d\x41\xe1\x38\x00\x00\x1c\x0d\xd0\xee\xce\xac\xbc\xc8\x53\x0a\x01\x7c\x7e\xdd\x44\xb2\x3c\x9a\x35\xce\x03\x48\xd1\x34\x3f\xae\xee\xbc\x81\xe3\xe6\x24\x83\xa0\x43\xac\x10\xe5\xe3\xa7\x68\xe6\x24\x23\x11\xe3\xcc\x9c\xbf\x8f\x8b\x01\x33\x6b\x49\xb1\x35\xf4\x91\x47\x9c\xc5\x97\x1f\x6e\x2b\x51\x3e\x93\xac\x5a\x9e\x24\x5c\x9e\x1a\x5a\xcb\x68\x81\x8d\x31\x96\xd8\xde\x36\x98\x40\x60\x59\xf5\x23\xa9\x94\x3c\xb9\x1e\x14\x2d\xb9\xa4\xb0\x32\xe7\x60\xa0\x6a\xf6\xbc\x6c\x6b\x42\x52\x5c\x86\x53\xeb\x3c\xbf\x5e\x7c\xb5\x80\xb7\x6c\xee\xd1\x8c\x76\xee\xd0\x87\x5f\xa3\xf4\x49\x96\xa1\xa0\x6e\x69\xb3\xc6\x5d\x6e\x51\xf0\xaa\xeb\xcd\xf8\x4b\xca\xd3\x91\x74\xff\x25\x7e\xf5\xfa\x25\x39\x45\x55\x58\x1b\xab\x7b\xfd\xfb\x88\xfe\x8d\xae\x63\xfd\x20\x66\xff\x20\xae\x9e\xff\x3a\xb6\xa1\x6b\x3d\x8a\xaf\x1e\xfa\x10\xa9\x1c\x72\x8a\xa6\x4d\x71\x5d\x21\x5d\xcf\xa2\x77\xf2\x79\x46\xa3\xe2\xb7\x02\x2c\xb9\x1e\x3f\x0a\x40\x30\x0e\xe3\xb1\x25\xd8\xac\x16\xd6\xc8\xfe\xbb\x73\xdd\xde\xd5\xef\xd1\x6b\x0f\x30\xdc\xb7\x65\x38\xb2\x90\xde\x83\x8e\x3e\x2e\x5d\x5d\xbc\x4e\xfd\x54\xf5\xed\x1c\xe0\x3a\x17\xe7\x6f\x00\x00\x00\xff\xff\xe4\xaa\xad\x4c\xbe\x05\x00\x00" +var _lockedtokensDelegatorGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4f\x8b\xe2\x4e\x10\xbd\xe7\x53\x94\x73\x90\x04\x86\xf8\x3b\xcb\x2f\x0b\x62\x5c\x56\x46\x9c\x41\xbd\x0d\x73\xe8\xa4\x2b\xda\x6b\xdb\x15\xba\x5b\xdc\x41\xfc\xee\x4b\xfe\x18\xd3\x26\x82\x6c\x2e\xc1\xea\xf7\xaa\x5e\xd7\x7b\x46\x1c\x72\xd2\x16\x7e\x4a\x3a\xcd\xe3\x0d\x4b\x24\xae\x2d\xdb\x0b\xb5\x85\x4c\xd3\x01\x5e\xba\x07\x2f\x5e\xcd\x59\x50\xba\x47\xbe\xa1\x3d\x2a\x53\xa1\xff\xfb\xb3\x78\x9f\xbe\xcd\xe2\xcd\xfb\xdb\x6c\x39\x89\xe3\xd5\x6c\xbd\xf6\xbc\xd1\x08\x56\x68\x8f\x5a\x19\x60\x0a\x98\xd6\xec\x1b\x28\x83\x18\x25\x6e\x99\x25\x3d\x57\x19\x01\x25\xbf\x31\xb5\x06\xec\x8e\x59\xb0\x3b\x04\x96\xa6\x74\x54\x16\x52\x52\x56\x93\x34\x45\x1b\xa1\x40\x58\x03\x8a\xf4\x81\xc9\x06\xc1\x14\x07\xb3\x63\x1a\xf9\xb5\xe4\x79\x2c\x4d\xd1\x18\x9f\x49\x19\x40\x76\x54\x70\x60\x42\xf9\xf5\xe9\x18\x26\x9c\x6b\x34\x26\x18\xc3\x67\xf7\x7e\xa1\x23\xec\x0b\xce\x9e\x07\x00\x20\xd1\x02\x6f\x9f\x4c\x8a\x8b\x3c\xd5\x21\x82\xcf\xaf\x5b\x93\xfc\x98\x4c\x6a\xe5\x11\x6c\xd1\xd6\x3f\xae\xea\x82\x9e\x71\x53\x96\x43\xd4\x22\x96\x88\xe2\x09\xb7\x68\xa7\x2c\x67\x89\x90\xc2\x7e\xff\x3f\x3c\xf7\x88\x59\x12\xc7\x46\xd0\xc7\x31\x91\x22\xbd\xfc\xf0\x9b\x16\xc5\x33\xca\xcb\xf2\x28\x93\x74\xaa\x69\x0d\xa3\x01\xd6\xc2\x44\xe6\x6a\x5b\x61\x06\x91\x23\x35\x4c\x48\x6b\x3a\xf9\x01\x9c\x1b\x72\x41\x11\x85\xcf\x51\x4f\xd4\xdc\x7d\xb9\xd2\x14\x71\x9c\xc7\x63\x67\x5e\x58\x15\x5f\x1d\xe0\xcd\x9b\x7b\xb4\xe0\xad\x3b\x74\xe1\x57\x2b\x43\x96\xe7\xa8\xb8\x5f\xc8\xac\x70\x97\x9b\x15\xb2\xcc\x7a\xbd\xfe\x82\xf2\xb4\x25\xed\x7f\x49\x58\xbe\x7e\x91\xe4\xa8\xef\x2c\x70\x60\x8b\xfb\x69\x95\x6d\x1f\xcc\xee\x1e\xd8\xd1\xd1\x57\xd9\xd2\x27\xfb\x91\x3d\xd5\x52\xfb\x48\xc5\x12\xb7\x68\x1b\x97\x96\x25\xd2\x0f\x1c\x7a\x6b\xff\xcf\xf4\x28\xf9\x4d\x03\x91\x5d\xc7\x0f\x22\x50\x42\xc2\x70\xe8\x34\xac\xab\x67\x67\x65\xff\x9c\xa9\x76\xae\xaa\xf7\xe0\xb5\x03\xe8\xcf\xd3\x3c\x1e\x38\xc8\xe0\x41\x06\x1f\x87\xaa\x0a\x56\x2b\x5e\xba\xfc\x36\xf6\x70\xbd\x8b\xf7\x37\x00\x00\xff\xff\xb0\x2f\x5f\x0b\x9e\x05\x00\x00" func lockedtokensDelegatorGet_delegator_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -3990,11 +3990,11 @@ func lockedtokensDelegatorGet_delegator_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0xb2, 0xb6, 0x50, 0x97, 0x85, 0x8e, 0x77, 0x7a, 0x55, 0xca, 0x2f, 0x5c, 0xca, 0x1b, 0x10, 0xd2, 0x45, 0xcb, 0x4c, 0xeb, 0xc4, 0xe0, 0x75, 0xd0, 0xcf, 0xe7, 0xfc, 0x7d, 0x16, 0x1d, 0x64}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0xda, 0xfb, 0x16, 0xfd, 0x90, 0x7d, 0x88, 0x9a, 0xc8, 0xbb, 0xee, 0xa0, 0xc7, 0xc0, 0x6a, 0x40, 0xa7, 0xb8, 0xdc, 0xf, 0x52, 0x5d, 0xf3, 0xad, 0xe5, 0xe7, 0xe7, 0xee, 0xda, 0x86, 0x16}} return a, nil } -var _lockedtokensDelegatorGet_delegator_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x50\xcd\x6a\xc2\x40\x10\xbe\xef\x53\x4c\x3d\x94\xcd\x45\x7a\x96\xb6\x22\x46\xa8\x28\x2a\xc6\x17\xd8\xec\x4e\xd2\xc5\xcd\x4e\x98\x4c\x68\x8b\xf8\xee\x25\x49\x6b\xed\x0f\x9d\xcb\xc2\xb7\xdf\x1f\x9f\xaf\x6a\x62\x81\x35\xd9\x23\xba\x03\x1d\x31\x36\x50\x30\x55\x70\xf7\xba\xde\xce\x57\x8b\xf4\xb0\x5d\x2d\x36\xb3\x34\xdd\x2f\xb2\x4c\x29\x63\x2d\x36\x8d\x36\x21\x24\x50\xb4\x11\x2a\xe3\xa3\x36\xd6\x52\x1b\x65\x02\x33\xe7\x18\x9b\x26\x99\x40\x26\xec\x63\x09\x27\xa5\x00\x00\x02\x0a\x84\x3e\x61\x36\x50\x97\xb1\xa0\x3d\x16\xf0\x00\x25\xca\x07\xf6\x69\x93\xf4\x92\xee\xc6\x25\xca\xdc\xd4\x26\xf7\xc1\xcb\xdb\xfd\xed\x75\xc9\x71\xff\x3c\x51\x70\xc8\xa7\x6f\x1f\xeb\x9f\x41\xe7\x47\x7d\xb1\xec\xee\x7f\xf6\xae\xcd\x83\xb7\x3b\x23\xcf\x17\xd1\x55\xa3\x9c\x98\xe9\x45\x7f\x21\xd3\x29\xd4\x26\x7a\xab\x47\x73\x6a\x83\x83\x48\x02\x03\x09\x0c\x30\x16\xc8\x18\x2d\x82\x10\xd4\xbd\x31\xfc\x0a\x1c\x25\xc3\x48\x8c\xd2\x72\xfc\x73\xa7\x6e\x88\x14\x03\x96\x46\x88\x37\xe4\x70\x99\xea\xe4\x46\x9d\xd5\x7b\x00\x00\x00\xff\xff\x26\xe4\x26\xef\xbe\x01\x00\x00" +var _lockedtokensDelegatorGet_delegator_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcf\x6a\xf3\x30\x10\xc4\xef\x7a\x8a\xfd\x72\xf8\x90\x2f\xa1\xe7\xd0\x36\x84\xd8\xd0\x10\x93\x84\x38\x2f\x20\x4b\x6b\x57\x44\xd6\x9a\xf5\x9a\xb6\x94\xbe\x7b\xb1\xdd\xa6\xe9\x9f\xbd\x08\x96\x99\xf9\x69\xc7\x37\x2d\xb1\x40\x4e\xf6\x8c\xee\x44\x67\x8c\x1d\x54\x4c\x0d\xdc\x3c\xe7\xfb\xf5\x36\x4b\x4f\xfb\x6d\xb6\x5b\xa5\xe9\x31\x2b\x0a\xa5\x8c\xb5\xd8\x75\xda\x84\x90\x40\xd5\x47\x68\x8c\x8f\xda\x58\x4b\x7d\x94\x05\xac\x9c\x63\xec\xba\x64\x01\x85\xb0\x8f\x35\xbc\x2a\x05\x00\x10\x50\x20\x8c\x84\xd5\x24\xdd\xc4\x8a\x8e\x58\xc1\x1d\xd4\x28\x1f\xbb\xcf\x98\x64\xb4\x0c\x33\xaf\x51\xd6\xa6\x35\xa5\x0f\x5e\x5e\x6e\xff\x5f\x7f\x72\x3e\x3e\x0f\x14\x1c\xf2\xbd\xbe\x58\x86\xf9\x26\xcb\x7f\x62\x0f\x7d\x19\xbc\x3d\x18\x79\xbc\x98\xae\x88\x25\x31\xd3\x93\xfe\xda\x2c\x97\xd0\x9a\xe8\xad\x9e\xad\xa9\x0f\x0e\x22\x09\x4c\x22\x30\xc0\x58\x21\x63\xb4\x08\x42\xd0\x8e\xc1\xf0\x0b\x38\x4b\xa6\x12\x18\xa5\xe7\xf8\x67\x0f\xc3\xa1\x29\x06\xac\x8d\x10\xef\xc8\xe1\x26\xd5\xc9\x3f\xf5\xa6\xde\x03\x00\x00\xff\xff\x8b\x50\x78\x4f\x9e\x01\x00\x00" func lockedtokensDelegatorGet_delegator_node_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4010,7 +4010,7 @@ func lockedtokensDelegatorGet_delegator_node_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_node_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe8, 0x2d, 0x98, 0x5e, 0x2a, 0x5b, 0x4f, 0xe4, 0xe7, 0xa0, 0x41, 0xe4, 0x7e, 0x27, 0x5f, 0xcc, 0xe, 0xe8, 0xb4, 0x6a, 0x2d, 0x3, 0x9f, 0xd, 0x9a, 0x60, 0x39, 0x35, 0xb7, 0x3, 0xb7, 0xfb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4c, 0x41, 0x6a, 0x34, 0x8c, 0x74, 0xbf, 0x4c, 0x48, 0xd6, 0xb4, 0x20, 0xcd, 0x6e, 0x1e, 0xc2, 0x24, 0x77, 0x51, 0x3, 0x4e, 0xe3, 0x64, 0x32, 0x21, 0xa2, 0x45, 0x48, 0xae, 0xfd, 0xe8, 0xc2}} return a, nil } @@ -4114,7 +4114,7 @@ func lockedtokensDelegatorWithdraw_unstaked_tokensCdc() (*asset, error) { return a, nil } -var _lockedtokensStakerGet_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x50\xdd\x6a\xc2\x30\x18\xbd\xcf\x53\x9c\x79\x31\xd2\x1b\xd9\xb5\x6c\x13\xb1\xc2\x44\x51\xb1\xbe\x40\x9a\x7c\xed\x82\x69\xbe\x92\xa6\x6c\x43\x7c\xf7\xd1\x76\x73\xee\x87\x7d\x37\x81\x93\xf3\xc7\xb1\x55\xcd\x21\x62\xcd\xfa\x48\xe6\xc0\x47\xf2\x0d\x8a\xc0\x15\xee\x5e\xd7\xdb\xf9\x6a\x91\x1e\xb6\xab\xc5\x66\x96\xa6\xfb\x45\x96\x09\xa1\xb4\xa6\xa6\x91\xca\xb9\x04\x45\xeb\x51\x29\xeb\xa5\xd2\x9a\x5b\x1f\x27\x98\x19\x13\xa8\x69\x92\x09\xb2\x18\xac\x2f\x71\x12\x02\x00\x1c\x45\xb8\x3e\x61\x36\x50\x97\xbe\xe0\x3d\x15\x78\x40\x49\xf1\x03\xfb\xb4\x49\x7a\x49\x77\xe3\x92\xe2\x5c\xd5\x2a\xb7\xce\xc6\xb7\xfb\xdb\xeb\x92\xe3\xfe\x79\x62\x67\x28\x9c\xbe\x7d\xac\x7f\x06\x9d\x1f\xe5\xc5\xb2\xbb\xff\xd9\xbb\x36\x77\x56\xef\x54\x7c\xbe\x88\xae\x1a\xe5\x1c\x02\xbf\xc8\x2f\x64\x3a\x45\xad\xbc\xd5\x72\x34\xe7\xd6\x19\x78\x8e\x18\x48\x50\x08\x54\x50\x20\xaf\x09\x91\x51\xf7\xc6\xf8\x15\x38\x4a\x86\x91\x02\xc5\x36\xf8\x3f\x77\xea\x86\xd8\xb0\xa1\x65\x2a\x93\x1b\x71\x16\xef\x01\x00\x00\xff\xff\x31\x22\x41\xcf\xb5\x01\x00\x00" +var _lockedtokensStakerGet_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcf\x6a\xf3\x30\x10\xc4\xef\x7a\x8a\xf9\x72\xf8\x90\x2f\xa1\xe7\xd0\x36\x84\xd8\xd0\x10\x93\x84\x38\x2f\x20\x4b\x6b\x57\x44\xd6\x1a\x59\xa6\x2d\xa5\xef\x5e\x6c\xb7\x69\xfa\x67\x2f\x82\x65\x66\x7e\xda\xb1\x4d\xcb\x21\x22\x67\x7d\x26\x73\xe2\x33\xf9\x0e\x55\xe0\x06\x37\xcf\xf9\x7e\xbd\xcd\xd2\xd3\x7e\x9b\xed\x56\x69\x7a\xcc\x8a\x42\x08\xa5\x35\x75\x9d\x54\xce\x25\xa8\x7a\x8f\x46\x59\x2f\x95\xd6\xdc\xfb\xb8\xc0\xca\x98\x40\x5d\x97\x2c\x50\xc4\x60\x7d\x8d\x57\x21\x00\xc0\x51\x84\x1b\x09\xab\x49\xba\xf1\x15\x1f\xa9\xc2\x1d\x6a\x8a\x1f\xbb\xcf\x98\x64\xb4\x0c\x33\xaf\x29\xae\x55\xab\x4a\xeb\x6c\x7c\xb9\xfd\x7f\xfd\xc9\xf9\xf8\x3c\xb0\x33\x14\xee\xe5\xc5\x32\xcc\x37\x59\xfe\x13\x7b\xe8\x4b\x67\xf5\x41\xc5\xc7\x8b\xe9\x8a\x58\x72\x08\xfc\x24\xbf\x36\xcb\x25\x5a\xe5\xad\x96\xb3\x35\xf7\xce\xc0\x73\xc4\x24\x82\x42\xa0\x8a\x02\x79\x4d\x88\x8c\x76\x0c\xc6\x2f\xe0\x2c\x99\x4a\x08\x14\xfb\xe0\xff\xec\x61\x38\x74\xc7\x86\x36\xa9\x4c\xfe\x89\x37\xf1\x1e\x00\x00\xff\xff\xc4\x5d\x37\x5b\x95\x01\x00\x00" func lockedtokensStakerGet_node_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4130,11 +4130,11 @@ func lockedtokensStakerGet_node_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/get_node_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0xe0, 0x3e, 0xe8, 0x9f, 0xf3, 0xd2, 0x32, 0x5a, 0x0, 0x52, 0x6b, 0x6, 0x9c, 0x98, 0x67, 0x9e, 0x2f, 0x15, 0xf8, 0x86, 0x24, 0x6a, 0x15, 0x4e, 0xab, 0xf4, 0x3d, 0x14, 0x52, 0xf0, 0xd7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0xe, 0x1c, 0xd5, 0x4f, 0x7f, 0x7e, 0xd5, 0xc2, 0x4, 0x7, 0x1e, 0x32, 0x6c, 0xa3, 0x68, 0x2e, 0xda, 0xf7, 0x98, 0x4a, 0xbd, 0x4c, 0xc2, 0xac, 0xa2, 0xc, 0x50, 0x4e, 0x16, 0xd7, 0xac}} return a, nil } -var _lockedtokensStakerGet_staker_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x94\x41\x6f\xe2\x30\x10\x85\xef\xfe\x15\xa3\x1e\x56\xc9\x25\xdd\x33\xda\xac\x84\x08\xab\x45\x45\x6d\x05\xdc\xaa\x1e\x26\xf1\x04\xbc\x18\x3b\xb2\x1d\x75\x2b\xc4\x7f\x5f\x39\x09\x69\x0c\x74\x41\xcd\x05\x11\xcf\xf7\xfc\xfc\x9e\x15\xb1\xab\xb4\x71\xf0\x4b\xea\xb7\x59\xb6\xc2\x5c\xd2\xd2\xe1\x56\xa8\x35\x94\x46\xef\xe0\xee\x7c\xe1\x8e\x75\xcc\x5c\x17\x5b\xe2\x2b\xbd\x25\x65\xdb\xe9\xef\x7f\xe7\x4f\x93\x87\x69\xb6\x7a\x7a\x98\x3e\x8e\xb3\x6c\x31\x5d\x2e\x19\xbb\xbf\x87\x05\xb9\xda\x28\x0b\xa8\x00\x8d\xc1\x77\xd0\x25\x3c\x6a\x4e\x33\x55\x6a\xd0\xf9\x1f\x2a\x9c\x05\xb7\x41\x07\x6e\x43\x80\x45\xa1\x6b\xe5\xa0\xd0\xca\x19\x2d\xad\x57\x10\x0a\x84\xb3\xa0\xb4\xd9\xa1\xec\x27\x50\x71\xb0\x1b\x34\xc4\x8f\xaf\x18\xc3\xa2\x20\x6b\x23\x94\x32\x86\xb2\x56\xb0\x43\xa1\xa2\x6e\x75\x04\x63\xce\x0d\x59\x1b\x8f\xe0\xe5\xfc\x68\xc9\xd1\xd3\x2b\xec\x19\x03\x00\x90\xe4\x40\x75\x2f\xc7\xde\xf9\x35\x2e\x85\x97\xd7\x0f\xb4\xaa\xf3\x71\x67\x35\x85\x35\xb9\xee\xcf\xd1\x4e\x1c\x6e\xe2\xd5\xc8\x4c\xb0\x82\x74\x40\x36\x23\xfe\x49\xd6\xe4\x26\x58\x61\x2e\xa4\x70\xef\x3f\xbe\xed\x3f\x31\xd2\xca\x3c\xd7\xb9\x14\xc5\xe1\x67\xd4\xf3\xfe\xb9\x01\x79\x46\xb7\xe9\x99\xce\xa1\x28\x4f\x4c\x2e\xa8\x84\x34\x34\x9d\xe4\xda\x18\xfd\x16\xc5\xb0\xef\x71\x0f\x09\xdf\x71\xfa\xd9\xce\x3e\xb5\xa8\x49\x38\x1b\x85\xfa\x89\xe0\x71\x2f\x14\x74\x90\x60\x55\x91\xe2\x91\x57\x6e\x47\x0e\x1f\x41\xca\xe6\x56\x76\xd9\x79\xe4\xe6\x3c\x87\xf7\x39\x69\x7e\x7e\x6b\xc9\xc9\xec\x83\x85\xf9\xa9\xfe\x69\xc4\xff\x9f\xbe\x9a\xf1\x99\xff\x36\xea\x4b\xc7\xba\x94\xf8\xa0\xa9\x59\x76\x89\xf3\xc9\xae\xc9\x35\xd9\x67\x01\xfa\xc5\xc2\x66\x59\x1c\x48\x5c\xa9\xaa\xad\x6b\x50\x9a\x69\xbe\x0d\x21\xc6\x0e\xec\x5f\x00\x00\x00\xff\xff\x15\x37\xf4\xf5\x99\x04\x00\x00" +var _lockedtokensStakerGet_staker_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x93\x41\x6f\xe2\x30\x10\x85\xef\xfe\x15\xa3\x1e\x56\xc9\x25\xdd\x33\xda\xac\x84\x08\xab\x45\x45\x6d\x05\xdc\xaa\x1e\x26\xf1\x04\xbc\x18\x3b\xb2\x27\xea\x56\x88\xff\xbe\x72\x12\x52\x02\x54\x54\xeb\x0b\xc2\x9e\xef\xf9\xf1\x9e\x51\xbb\xca\x3a\x86\x5f\xda\xbe\xcd\xb2\x15\xe6\x9a\x96\x8c\x5b\x65\xd6\x50\x3a\xbb\x83\xbb\xcb\x83\x3b\xd1\x31\x73\x5b\x6c\x49\xae\xec\x96\x8c\x6f\xa7\xbf\xff\x9d\x3f\x4d\x1e\xa6\xd9\xea\xe9\x61\xfa\x38\xce\xb2\xc5\x74\xb9\x14\xe2\xfe\x1e\x16\xc4\xb5\x33\x1e\xd0\x00\x3a\x87\xef\x60\x4b\x78\xb4\x92\x66\xa6\xb4\x60\xf3\x3f\x54\xb0\x07\xde\x20\x03\x6f\x08\xb0\x28\x6c\x6d\x18\x0a\x6b\xd8\x59\xed\x83\x82\x32\xa0\xd8\x83\xb1\x6e\x87\xba\x9f\x40\x23\xc1\x6f\xd0\x91\x3c\x6e\x09\x81\x45\x41\xde\x47\xa8\x75\x0c\x65\x6d\x60\x87\xca\x44\xdd\xe9\x08\xc6\x52\x3a\xf2\x3e\x1e\xc1\xcb\xe5\x4f\x4b\x8e\x9e\x5e\x61\x2f\x04\x00\x80\x26\x06\xd3\x6d\x8e\x83\xf3\x5b\x5c\x0a\x2f\xaf\x1f\x68\x55\xe7\xe3\xce\x6a\x0a\x6b\xe2\xee\xcb\xd1\x4e\x3c\xbc\x24\xa8\x91\x9b\x60\x05\xe9\x09\xd9\x8c\x84\x95\xac\x89\x27\x58\x61\xae\xb4\xe2\xf7\x1f\xdf\xf6\x9f\x18\x69\x65\x9e\xeb\x5c\xab\xe2\xf0\x33\xea\xf9\xb0\xbe\x80\x3c\x23\x6f\x7a\xa6\x73\xa8\xca\x33\x93\x0b\x2a\x21\x1d\x9a\x4e\x72\xeb\x9c\x7d\x8b\x62\xd8\xf7\x78\x80\x54\xe8\x38\xfd\xec\xe6\x90\x5a\xd4\x24\x9c\x8d\x86\xfa\x89\x92\x71\x2f\x34\xe8\x20\xc1\xaa\x22\x23\xa3\xa0\xdc\x8e\x1c\x3e\x82\xd4\xcd\xab\xec\xb2\x0b\xc8\x97\xf3\x3c\x7d\xcf\x49\xf3\xf1\xdb\x6a\x49\xee\x2c\xc2\xc1\xd8\xfc\xfc\xb6\x9b\x19\x5e\xf8\x6b\xa3\xbc\x66\xfb\x5a\xa2\x27\x4d\xcc\xb2\x6b\x5c\x48\x6e\x4d\xdc\x64\x9b\x0d\xd0\xff\x2c\x64\x96\xc5\x03\x89\x1b\x55\xb4\x75\x9c\x94\xe2\x9a\xff\xfe\x10\x13\x07\xf1\x2f\x00\x00\xff\xff\x5f\x5b\xab\xa7\x79\x04\x00\x00" func lockedtokensStakerGet_staker_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -4150,7 +4150,7 @@ func lockedtokensStakerGet_staker_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/get_staker_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe0, 0x2b, 0x52, 0x73, 0x66, 0xec, 0x39, 0x74, 0x89, 0x4e, 0x2c, 0xbd, 0x1b, 0xbd, 0xa2, 0x7d, 0xa4, 0x4e, 0x6a, 0x51, 0xd0, 0xdc, 0x5, 0x90, 0xd3, 0x7b, 0x1d, 0xa4, 0xb8, 0x6c, 0x19, 0x6d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0xf2, 0x60, 0xf9, 0x29, 0x5d, 0x15, 0x23, 0xff, 0x64, 0x8, 0x90, 0x40, 0xb7, 0x34, 0x11, 0x71, 0x75, 0x88, 0xd7, 0x36, 0x82, 0xcc, 0x59, 0xa7, 0x7a, 0x9b, 0x92, 0xbe, 0xb8, 0xe1, 0xb7}} return a, nil } @@ -4374,7 +4374,7 @@ func lockedtokensUserDeposit_tokensCdc() (*asset, error) { return a, nil } -var _lockedtokensUserGet_locked_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x50\xdd\x4a\xc3\x30\x14\xbe\xcf\x53\x7c\xec\x42\xd2\x9b\xe1\xb5\xa8\xa3\xb4\x05\x65\xc5\x8d\x6d\x2f\x90\xa6\xa7\x33\x2c\xcd\x29\x69\x8a\xca\xd8\xbb\x4b\xdb\x59\x37\x15\xcf\x4d\xc2\x39\xdf\x1f\x9f\xa9\x1b\xf6\x01\x39\xeb\x03\x95\x3b\x3e\x90\x6b\x51\x79\xae\x71\xfb\x9e\xaf\x92\x65\x96\xee\x56\xcb\xec\x25\x4e\xd3\x4d\xb6\xdd\x0a\xa1\xb4\xa6\xb6\x95\xca\xda\x08\x55\xe7\x50\x2b\xe3\xa4\xd2\x9a\x3b\x17\xee\x10\x97\xa5\xa7\xb6\x8d\xa6\x1f\x8e\x42\x00\x80\xa5\x00\x3b\x58\xc4\x23\xf6\xd9\x55\xbc\xa1\x0a\x0f\xd8\x53\x38\xef\xbe\x74\xa2\x81\xd2\xcf\x7c\x4f\x21\x51\x8d\x2a\x8c\x35\xe1\xe3\xfe\xe6\x32\xe5\x7c\x78\x9e\xd8\x96\xe4\x8f\x57\x87\xfc\xa7\xd1\xe9\x51\x4e\x92\xfd\xfc\x8f\x5e\x77\x85\x35\x7a\xad\xc2\xeb\x44\xba\x48\x54\xb0\xf7\xfc\x26\xbf\x37\x8b\x05\x1a\xe5\x8c\x96\xb3\x84\x3b\x5b\xc2\x71\xc0\x08\x82\x82\xa7\x8a\x3c\x39\x4d\x08\x8c\x66\x10\xc6\x2f\xc3\x59\x34\x96\xe4\x29\x74\xde\xfd\xd9\x53\x5f\xc4\x15\xef\xdc\xaf\x8c\xc4\x49\x7c\x06\x00\x00\xff\xff\x2f\x7c\x15\xe6\xc3\x01\x00\x00" +var _lockedtokensUserGet_locked_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x4e\xf3\x30\x10\x84\xef\x7e\x8a\x51\x0f\xbf\x9c\x4b\xf5\x9f\x11\x50\x45\x49\x24\x50\x23\x5a\xb5\x7d\x01\xc7\xd9\x14\xab\x8e\x37\x72\x6c\x01\x42\xbc\x3b\x4a\x52\x42\x0b\xec\xc5\xd6\x6a\x66\x3e\x7b\x4c\xdb\xb1\x0f\x28\x59\x9f\xa8\x3e\xf0\x89\x5c\x8f\xc6\x73\x8b\xff\xaf\xe5\x26\x5b\x17\xf9\x61\xb3\x2e\x9e\xd2\x3c\xdf\x15\xfb\xbd\x10\x4a\x6b\xea\x7b\xa9\xac\x4d\xd0\x44\x87\x56\x19\x27\x95\xd6\x1c\x5d\xb8\x41\x5a\xd7\x9e\xfa\x3e\x99\x6f\x78\x17\x02\x00\x2c\x05\xd8\x11\x91\x4e\xda\x47\xd7\xf0\x8e\x1a\xdc\xe1\x48\xe1\xbc\xfb\xca\x49\x46\xcb\x30\xcb\x23\x85\x4c\x75\xaa\x32\xd6\x84\xb7\xdb\x7f\x97\xaf\x5c\x8e\xc7\x03\xdb\x9a\xfc\xbd\x9c\x2d\xc3\x5c\xc9\xca\x9f\xd8\x6d\xac\xac\xd1\x5b\x15\x9e\x67\xd3\x05\xb1\x62\xef\xf9\x45\x7e\x6f\x56\x2b\x74\xca\x19\x2d\x17\x19\x47\x5b\xc3\x71\xc0\x24\x82\x82\xa7\x86\x3c\x39\x4d\x08\x8c\x6e\x0c\xc6\x2f\xe0\x22\x99\x4a\xf0\x14\xa2\x77\x7f\xf6\x30\x7c\xf4\xca\x77\xee\x4f\x26\xe2\x43\x7c\x06\x00\x00\xff\xff\xa0\x11\x67\x46\xa3\x01\x00\x00" func lockedtokensUserGet_locked_account_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -4390,11 +4390,11 @@ func lockedtokensUserGet_locked_account_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_locked_account_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x56, 0xdc, 0xaa, 0xd9, 0xa5, 0x1a, 0x28, 0x4d, 0x49, 0xc1, 0xd9, 0x51, 0x1f, 0xd2, 0x7f, 0x54, 0xcb, 0x5d, 0xf8, 0x7a, 0xdc, 0xaf, 0x8f, 0xcb, 0x76, 0xf2, 0x35, 0x42, 0x8f, 0xcf, 0x5, 0xc8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0xe5, 0x42, 0x1b, 0xc1, 0xd2, 0xf5, 0xa4, 0x36, 0xc6, 0x41, 0x7a, 0xd6, 0x92, 0xbe, 0x83, 0xab, 0x50, 0x13, 0x5a, 0x31, 0x63, 0x23, 0x5c, 0xaa, 0x30, 0xb3, 0xcb, 0xd3, 0x48, 0x27, 0x75}} return a, nil } -var _lockedtokensUserGet_locked_account_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x50\xdd\x4e\xc2\x30\x18\xbd\xef\x53\x9c\x70\x61\xba\x1b\xe2\x85\xf1\x82\xa8\x04\xd9\x8c\x86\x45\x08\xe0\x03\x74\xdd\x37\x6c\xe8\xfa\x2d\x5d\x17\x31\x84\x77\x37\xdb\x14\x41\x8d\xdf\x4d\x93\xd3\xf3\x97\x63\xca\x8a\x7d\x40\xca\x7a\x4b\xf9\x9a\xb7\xe4\x6a\x14\x9e\x4b\x5c\xee\xd2\xf9\x74\x96\xc4\xeb\xf9\x2c\x79\x9e\xc4\xf1\x32\x59\xad\x84\x50\x5a\x53\x5d\x4b\x65\x6d\x84\xa2\x71\x28\x95\x71\x52\x69\xcd\x8d\x0b\x23\x4c\xf2\xdc\x53\x5d\x47\x23\xbc\x3c\x98\xdd\xf5\x15\xf6\x42\x00\x80\xa5\x00\xdb\x25\x4c\x7a\xea\x93\x2b\x78\x49\x05\x6e\xb1\xa1\xf0\x89\x7d\xd9\x44\x9d\xa4\xbd\xe1\x86\xc2\x54\x55\x2a\x33\xd6\x84\xf7\x9b\x8b\xd3\x92\xc3\xee\x79\x64\x9b\x93\xdf\x9f\x7d\xa4\x3f\x83\x0e\x77\xf2\x68\xd9\xde\xff\xec\x45\x93\x59\xa3\x17\x2a\xbc\x1e\x45\x27\x8d\x32\xf6\x9e\xdf\xe4\x37\x32\x1e\xa3\x52\xce\x68\x39\x98\x72\x63\x73\x38\x0e\xe8\x49\x50\xf0\x54\x90\x27\xa7\x09\x81\x51\x75\xc6\xf8\x15\x38\x88\xfa\x91\x3c\x85\xc6\xbb\x3f\x77\x6a\x87\x38\xd3\xdd\x2b\xab\x9c\x26\x19\x89\x83\xf8\x08\x00\x00\xff\xff\xab\x67\x8a\x24\xc2\x01\x00\x00" +var _lockedtokensUserGet_locked_account_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x4e\xeb\x30\x10\x45\xf7\xfe\x8a\xab\x2e\x9e\x9c\x4d\xf5\x16\x88\x45\x05\x54\x21\x09\x02\x35\xa2\x55\x5b\x3e\xc0\x71\x26\xc5\xaa\xe3\x89\x1c\x47\x14\x21\xfe\x1d\x25\x81\xd2\x02\xb3\xb1\x34\xba\x67\x8e\x67\x4c\xdd\xb0\x0f\xc8\x59\xef\xa9\xdc\xf2\x9e\x5c\x8b\xca\x73\x8d\xff\x87\x7c\x99\x2c\xb2\x74\xbb\x5c\x64\x8f\x71\x9a\xae\xb3\xcd\x46\x08\xa5\x35\xb5\xad\x54\xd6\x46\xa8\x3a\x87\x5a\x19\x27\x95\xd6\xdc\xb9\x30\x43\x5c\x96\x9e\xda\x36\x9a\xe1\xe9\xce\x1c\x2e\x2f\xf0\x26\x04\x00\x58\x0a\xb0\x83\x21\x1e\xa3\x0f\xae\xe2\x35\x55\xb8\xc6\x8e\xc2\x67\xef\x6b\x4c\x34\x20\x7d\x4d\x77\x14\x12\xd5\xa8\xc2\x58\x13\x5e\xaf\xfe\x9d\x7e\x72\x3a\x3c\xf7\x6c\x4b\xf2\x37\xf2\x88\xf4\x75\x16\xcb\x7f\x6a\x57\x5d\x61\x8d\x5e\xa9\xf0\x7c\x84\x4e\x8c\x05\x7b\xcf\x2f\xf2\xbb\x33\x9f\xa3\x51\xce\x68\x39\x49\xb8\xb3\x25\x1c\x07\x8c\x21\x28\x78\xaa\xc8\x93\xd3\x84\xc0\x68\x86\xc1\xf8\x25\x9c\x44\xe3\x11\x3c\x85\xce\xbb\x3f\xef\xd0\x2f\x7a\xc6\xdd\x2a\xab\x9c\x26\x19\x89\x77\xf1\x11\x00\x00\xff\xff\x39\x43\xf4\x53\xa2\x01\x00\x00" func lockedtokensUserGet_locked_account_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -4410,11 +4410,11 @@ func lockedtokensUserGet_locked_account_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_locked_account_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0xc8, 0x1e, 0xe7, 0x93, 0x4c, 0x71, 0xeb, 0x1d, 0x61, 0xf8, 0x78, 0xe9, 0x3c, 0xf7, 0x14, 0xd3, 0x8a, 0x73, 0x18, 0x2c, 0x6d, 0x76, 0xbd, 0x7c, 0x54, 0xbc, 0x6, 0x44, 0x2, 0x3d, 0xdc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x56, 0x2b, 0x3d, 0xb6, 0xfc, 0xc6, 0x5c, 0xb5, 0x4a, 0x8b, 0x5d, 0xd7, 0x1, 0x2c, 0x6, 0x65, 0xcd, 0x96, 0x83, 0xf3, 0xeb, 0x2d, 0x26, 0x7f, 0xeb, 0xfe, 0x97, 0xd2, 0x45, 0x54, 0xe5, 0xef}} return a, nil } -var _lockedtokensUserGet_multiple_unlock_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcf\x6e\xf2\x30\x10\xc4\xef\x7e\x8a\x11\x87\x4f\xce\x05\x7d\x87\xaa\x07\x54\x8a\x10\x50\xb5\x22\x2a\x88\x3f\x27\xc4\xc1\x38\x1b\x6a\xe1\xd8\x91\xed\xb4\x54\x88\x77\xaf\x92\x90\xb6\xa1\x55\xf7\x92\x68\x7f\xbb\xb3\xe3\x51\x59\x6e\x5d\x40\x6c\xe5\x81\x92\x95\x3d\x90\xf1\x48\x9d\xcd\xf0\xff\x18\xcf\x46\xd3\xc9\x78\x35\x9b\x4e\x9e\x87\xe3\xf1\x62\xb2\x5c\x32\x26\xa4\x24\xef\xb9\xd0\x3a\x42\x5a\x18\x64\x42\x19\x2e\xa4\xb4\x85\x09\xbe\x87\xcd\x30\x49\x1c\x79\xbf\x8d\x7a\xd8\xac\x1f\xd4\xf1\xf6\x66\x8b\x13\x63\x00\xf0\x2a\x1c\xb4\xca\x54\x35\xd7\xb0\x3e\x36\xdb\x1a\xa7\xd6\xe1\x22\x04\x65\x9a\x5f\x8f\x53\x45\xcb\xd2\x14\xa0\x2b\x9f\xc3\x1a\x3e\x99\xd4\x2e\x28\x45\x1f\x7b\x0a\x97\x5e\x63\x26\xfa\x5c\x2b\xab\xbb\xa7\x30\x12\xb9\xd8\x29\xad\xc2\xfb\xdd\xbf\xef\xcf\xed\x56\x9f\x47\xab\x13\x72\xa7\x16\x88\xaf\x8f\x9d\xef\x79\x4b\xb6\xac\xbf\x37\xe6\xc5\x4e\x2b\x39\x17\xe1\xa5\xb5\x78\xe5\x6e\x67\x9d\xb3\x6f\xbc\xdd\x1d\x0c\x90\x0b\xa3\x24\xef\x8c\x6c\xa1\x13\x18\x1b\x50\x0f\x42\xc0\x51\x4a\x8e\x8c\x24\x04\x8b\xbc\x3a\x82\x1f\xc7\x3b\x11\xfb\x0a\xaf\x4a\xbe\x2b\xf2\x9c\x4c\xc2\x7f\x8b\xb1\xcc\x68\x6d\x4a\x12\x97\xb3\x3c\xaa\xed\x9c\x6b\x0d\x47\xa1\x70\xe6\x22\xc3\xce\xec\x23\x00\x00\xff\xff\x8b\xae\xf9\x70\x38\x02\x00\x00" +var _lockedtokensUserGet_multiple_unlock_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x50\x4d\x4f\xc2\x40\x14\xbc\xef\xaf\x98\x70\x30\xdb\x0b\xf1\x60\x3c\x10\x91\x10\xc0\x68\x68\x84\xf0\x71\x22\x1c\x96\xed\x2b\x6e\xd8\xee\x36\xbb\x5b\xc5\x10\xfe\xbb\x69\x4b\xd5\xa2\xef\xd2\xe6\xcd\xbc\x99\xd9\x51\x59\x6e\x5d\x40\x6c\xe5\x81\x92\x95\x3d\x90\xf1\x48\x9d\xcd\x70\x7b\x8c\x67\xa3\xe9\x64\xbc\x9a\x4d\x27\xaf\xc3\xf1\x78\x31\x59\x2e\x19\x13\x52\x92\xf7\x5c\x68\x1d\x21\x2d\x0c\x32\xa1\x0c\x17\x52\xda\xc2\x04\xdf\xc3\x66\x98\x24\x8e\xbc\xdf\x46\x3d\x6c\xd6\x4f\xea\x78\x7f\xb7\xc5\x89\x31\x00\x78\x17\x0e\x5a\x65\xaa\xe2\x35\x58\x1f\x9b\x6d\x0d\xa7\xd6\xe1\x22\x04\x65\x9a\x5f\x8f\x53\x85\x96\xa3\x29\x40\x57\x39\x87\x35\xf8\x62\x52\xbb\xa0\x14\x7d\xec\x29\x5c\x76\x4d\x98\xe8\xfb\xac\x9c\xee\x9e\xc2\x48\xe4\x62\xa7\xb4\x0a\x9f\x0f\x37\xbf\x9f\xdb\xad\x3e\xcf\x56\x27\xe4\x1e\x79\xeb\xac\x9c\x16\x35\xbe\xb6\x9f\x17\x3b\xad\xe4\x5c\x84\xb7\xd6\xe1\x95\xfb\xce\x3a\x67\x3f\x78\x7b\x3b\x18\x20\x17\x46\x49\xde\x19\xd9\x42\x27\x30\x36\xa0\x26\x42\xc0\x51\x4a\x8e\x8c\x24\x04\x8b\xbc\x32\xc1\x1f\xf3\x4e\xc4\x7e\xca\xa9\x9a\xed\x8a\x3c\x27\x93\xf0\xff\x6a\x2a\x3b\x58\x9b\x12\x89\x4b\x2e\x8f\xea\x38\xe7\x5a\xc3\x51\x28\x9c\xb9\xc8\xb0\x33\xfb\x0a\x00\x00\xff\xff\xd4\x5b\x65\x00\x18\x02\x00\x00" func lockedtokensUserGet_multiple_unlock_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -4430,11 +4430,11 @@ func lockedtokensUserGet_multiple_unlock_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_multiple_unlock_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0x23, 0x83, 0xdb, 0xd, 0x86, 0xd9, 0xf5, 0x7f, 0x57, 0xa6, 0xf0, 0xdf, 0x83, 0xe8, 0xc0, 0x6, 0x62, 0xe2, 0xdb, 0x7f, 0x27, 0x86, 0xb1, 0x83, 0x30, 0x56, 0xe2, 0x65, 0x4e, 0x29, 0xe0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x36, 0x8d, 0x8d, 0x25, 0xb4, 0xa6, 0x83, 0x69, 0xa4, 0x27, 0xd7, 0x1d, 0xd7, 0x95, 0x7e, 0xdd, 0x20, 0x2f, 0x7, 0xed, 0x6f, 0xe6, 0x3d, 0x92, 0x95, 0xd7, 0xc5, 0x7d, 0xc6, 0xe9, 0x39, 0x32}} return a, nil } -var _lockedtokensUserGet_total_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x55\x5d\x6f\xda\x3c\x14\xbe\xcf\xaf\x38\xea\x45\xdf\x44\x2f\x0a\xbd\x98\x76\x81\x4a\x25\xd6\xb4\x1b\x2a\x2a\x55\xcb\xb6\x6b\x93\x38\x60\xd5\xd8\xc8\x76\xda\x4e\x88\xff\x3e\x39\x8e\x8d\x0d\x09\x65\x6d\x2e\xf8\xf0\x79\xce\xd7\xf3\x1c\x9f\x90\xd5\x9a\x0b\x05\xb7\x15\x5b\x90\x39\xc5\x33\xfe\x8c\x19\x94\x82\xaf\xe0\x2c\x38\x3b\x8b\x2c\x92\xf2\xd7\x00\x65\xff\x07\x88\x71\x36\x43\x73\x8a\x9f\x14\x7a\x26\x6c\xe1\x41\x43\x83\xf3\x99\xf0\xfc\x19\x17\x75\x1c\x69\xd0\x17\x6f\x93\xe9\xf5\xdd\x4d\x36\x9b\xde\xdd\xdc\x8f\xb2\xec\xf1\xe6\xe9\x29\x8a\xfa\x7d\x98\x2d\x89\x04\x99\x0b\xb2\x56\xb0\xc0\x4a\x82\x5a\x62\x98\x4d\x67\xa3\x09\xb0\x6a\x35\xc7\x02\x78\x09\xb7\x93\xe9\x6f\x40\x0c\x50\x9e\xf3\x8a\x29\xe0\xaf\x4c\xf6\x00\xe5\x82\x4b\x09\x15\xa3\x75\xba\x1e\xd8\x6f\xc4\x0a\x90\xa6\xa4\xb4\x4e\x32\x2a\x0a\x09\xd5\x5a\xc7\x96\xb8\x89\x2b\x07\xb5\x49\x99\x22\x09\x03\xc6\xc5\x0a\x51\x9b\xe3\x98\xcd\x06\x3f\x8a\x29\x30\xc5\x0b\xa4\x0e\x60\x72\x89\x04\x2e\xda\xd3\x84\xb6\xf6\x34\x7b\x18\x2f\x4d\x14\xa1\x3c\xc7\x52\xc6\x88\xd2\x04\xca\x8a\xc1\x0a\x11\x16\xa3\xa2\x10\x58\xca\x81\x66\x41\xff\x48\x06\xf0\xf3\x96\xbc\x7d\xfd\x02\x9b\x28\x02\x00\x78\x41\x02\x64\xb5\x82\x21\x5c\xa4\x17\xe6\x88\x62\xe5\x32\x0c\xb5\x2e\x23\xf3\xc7\x06\x4b\x0c\x8c\x94\x35\xf2\x05\x55\x54\x3d\xe2\x12\x86\xd6\x29\x5d\x60\x75\x8d\xd6\x68\x4e\x28\x51\x7f\xe2\xfe\xba\x9a\x53\x92\xf7\x4b\x3b\x5d\xdf\x10\x45\x2c\xc7\x49\x1d\x45\x3f\xe9\x9c\x0b\xc1\x5f\x2f\xcf\xdd\x00\xa6\xbf\x74\xd4\x4d\x30\xb6\x69\xe3\xb7\xbd\x8a\x13\xa8\x7d\x37\x2e\x82\xe9\x40\x7f\xfe\xef\x0a\x4a\xe7\x06\x5f\x83\xb6\xa6\xe6\x7e\x1f\xbe\x63\x65\x08\x85\xc6\x6e\x66\x54\x4f\x9e\x1d\x26\xdb\xc8\x7f\x12\x18\x2f\xb0\x95\x02\xd6\x9c\x53\xe9\x28\xd2\x26\x3d\xfb\x58\x5c\xa3\xf5\xae\xfb\x5d\x57\x01\x0d\x97\xe7\x9b\xc3\x3b\x93\xde\xbb\x18\x0f\x35\x49\xdb\xab\xd8\xf9\xeb\xe7\x04\x97\x07\xa4\x96\xce\x27\x94\x66\x57\xa1\xd1\x27\xa8\xb8\x21\x3d\x4e\x3c\x1a\xad\xd3\x98\x95\x1c\x86\x5d\xd9\xb5\x35\xae\x61\xd9\x20\xcc\x91\x92\x22\x69\xd5\xc4\x06\x4d\x15\x57\x88\x9a\xdd\x30\x66\x8f\x38\xe7\xa2\x88\x93\x4f\x29\xd4\xdc\x01\x2e\x3a\x64\x72\xf6\xcf\xa9\x94\xd9\x30\xed\x42\xf9\x43\xde\xb8\x39\x8f\x0e\x75\x5c\x61\x46\x1c\xbf\xce\x2e\x6d\x1c\xa6\x5b\xa0\xcc\x87\x84\x35\x5a\xc9\xfc\xc4\xa9\x39\xec\x05\xc0\x5d\x9a\x7d\x34\x29\xbc\x66\xda\x84\x0e\x2a\xec\x52\xbb\x4d\xef\x25\x86\x50\x5a\x30\x8c\x42\xee\xc4\x71\x92\x1a\x60\xb3\x95\x74\xa2\xd3\xa4\xf5\x5f\x4c\x69\xfd\xf5\x83\xd3\x02\x8b\x4d\x60\x98\xec\x07\xdf\x97\xfa\x38\xfa\xdd\x4b\x79\x50\xbc\x91\xbf\xad\xa7\xb6\x31\x30\x2f\xb4\x36\xbe\xfc\x75\xb7\x2f\x4b\x5b\x52\x4d\x4f\x50\x7e\xb3\x5f\xe3\xa6\xde\xbd\x6c\xf6\x2e\xf2\x12\x10\xa5\xf5\xd1\xe1\x72\xdc\xdd\xd4\xb0\x38\x17\xd0\xdb\x4c\xe3\xac\xad\xed\xa6\xb0\x7a\xcf\x64\x41\xe7\x9f\x58\x50\xe3\x2c\x09\xc2\xfc\xe3\x6a\xf2\xc6\xf5\x7d\x52\x3a\xf6\xd1\xa9\xcc\x78\x77\xef\x08\x3d\xbb\x5b\x7e\xc8\xd1\xa9\x14\xbb\x18\x1d\x5c\x7f\x78\xe9\x84\xcc\xf7\x3a\xd6\xc9\xbe\x26\x1f\xda\x24\xde\xb3\x8d\xc2\x5f\x8d\x60\x02\xab\x4a\x30\x1d\x33\xda\x46\x7f\x03\x00\x00\xff\xff\xc3\x8e\x18\xcd\x22\x0b\x00\x00" +var _lockedtokensUserGet_total_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x55\x4f\x4f\xe3\x3e\x10\xbd\xe7\x53\x8c\x38\xf0\x4b\xf4\xab\x52\x0e\xab\x3d\x54\x14\xa9\x4b\x60\xb7\xa2\xa2\x08\xba\xbb\x67\x37\x71\x5a\x0b\xd7\xae\x6c\x07\x58\xa1\x7e\xf7\x95\xe3\xd8\xb5\xd3\x04\xba\x90\x43\xff\xd8\x6f\x66\x9e\xdf\x1b\x4f\xc8\x66\xcb\x85\x82\xeb\x8a\xad\xc8\x92\xe2\x05\x7f\xc4\x0c\x4a\xc1\x37\x70\x12\xac\x9d\x44\x16\x49\xf9\x73\x80\xb2\xff\x03\xc4\x34\x5b\xa0\x25\xc5\x0f\x0a\x3d\x12\xb6\xf2\xa0\xe1\x86\x8b\x99\xf1\xfc\x11\x17\x75\x1e\x69\xd0\x67\x2f\xb3\xf9\xe5\xcd\x55\xb6\x98\xdf\x5c\xdd\x4e\xb2\xec\xfe\xea\xe1\x21\x8a\x86\x43\x58\xac\x89\x04\x99\x0b\xb2\x55\xb0\xc2\x4a\x82\x5a\x63\x58\xcc\x17\x93\x19\xb0\x6a\xb3\xc4\x02\x78\x09\xd7\xb3\xf9\x6f\x40\x0c\x50\x9e\xf3\x8a\x29\xe0\xcf\x4c\x0e\x00\xe5\x82\x4b\x09\x15\xa3\x75\xb9\x01\xd8\x6f\xc4\x0a\x90\x86\x52\x5a\x17\x99\x14\x85\x84\x6a\xab\x73\x4b\xdc\xe4\x95\xa3\x7a\x4b\x19\x92\x84\x01\xe3\x62\x83\xa8\xad\xf1\xd6\x9e\x4d\xfe\x26\xa6\xc0\x14\xaf\x90\x3a\x80\xc9\x35\x12\xb8\xe8\x2e\x13\xee\x75\x97\x69\x61\xbc\x32\x51\x84\xf2\x1c\x4b\x19\x23\x4a\x13\x28\x2b\x06\x1b\x44\x58\x8c\x8a\x42\x60\x29\x47\x5a\x05\xfd\x23\x19\xc1\xcf\x6b\xf2\xf2\xf5\x0b\xbc\x46\x11\x00\xc0\x13\x12\x20\xab\x0d\x8c\xe1\x2c\x3d\x33\x4b\x14\x2b\x57\x61\xac\x7d\x99\x98\x3f\x36\x59\x62\x60\xa4\xac\x91\x4f\xa8\xa2\xea\x1e\x97\x30\xb6\x41\xe9\x0a\xab\x4b\xb4\x45\x4b\x42\x89\xfa\x13\x0f\xb7\xd5\x92\x92\x7c\x58\xda\xee\xfa\x86\x28\x62\x39\x4e\xea\x2c\xfa\x49\x97\x5c\x08\xfe\x7c\x7e\xea\x1a\x30\xfd\xa5\xb3\x5e\xc4\x09\xd4\xa0\x57\x07\x35\x54\xf5\xe7\xff\xae\x72\xba\x34\x09\x6b\xd0\xce\x90\x1b\x0e\xe1\x3b\x56\x46\x39\x68\xf6\x4d\x33\xea\x16\xb3\x5d\x63\x19\xff\x27\x81\xf1\x02\x5b\xcd\x61\xcb\x39\x95\x4e\x0b\xbd\xa5\x9b\x1c\x8b\x4b\xb4\xdd\x1f\x73\x4f\x3f\x38\xef\xf9\xe9\xeb\xe1\xe5\x48\x6f\x5d\x8e\xbb\x5a\x8d\xdd\x45\xec\xe2\xf5\x73\x44\xc8\x1d\x52\x6b\x17\x13\x7a\xb0\x67\x68\x8c\x08\x18\x37\xea\xc6\x89\x27\xa3\x0d\x9a\xb2\x92\xc3\xb8\xaf\xba\xde\x8d\x6b\x58\x36\x0a\x6b\xa4\xa4\x48\x3a\x3d\xb1\x49\x53\xc5\x15\xa2\x66\x08\x4c\xd9\x3d\xce\xb9\x28\xe2\xe4\x53\x0e\x35\xcd\xce\x45\x8f\x4d\x6e\xff\x73\x2e\x65\x36\x4d\xb7\x51\x7e\x37\x37\x61\x2e\xa2\xc7\x1d\x47\xcc\x98\xe3\xf3\xec\xf3\xc6\x61\xfa\x0d\xca\x7c\x48\xc8\xd1\x5a\xe6\x17\x4e\xcd\xe2\x20\x00\xee\xcb\xb4\xd1\xa4\xf0\x0e\xd3\x65\x74\xc0\xb0\xcf\xed\x2e\xbf\xd7\x18\x42\x6b\xc1\x28\x0a\xb9\x33\xc7\x59\x6a\x80\xcd\xf8\xd1\x85\x8e\xb3\xd6\x7f\x03\xa5\xf5\xd7\x0f\x4e\x0b\x2c\x5a\x56\x06\xb0\x59\xbb\xd4\xbb\x97\xee\x80\x9c\xb1\xb7\x8b\x73\x97\xcd\xe6\xcd\xd4\xa5\x87\x3f\xce\xda\xb2\x77\x15\xd5\xc7\x0f\xe8\x37\x03\x36\x6e\xf8\xb6\xaa\xd9\xbb\xc6\x4b\x40\x94\xd6\x4b\x87\xc3\x6f\x7f\x13\x43\x72\x2e\xa1\x37\x79\xa6\x59\xd7\xb1\x1b\x62\xf5\x1c\xc9\x82\x93\x7f\x62\x00\x4d\xb3\x24\x48\xf3\x8f\xa3\xc7\x6b\xc7\xf7\x45\xe9\x99\x37\xc7\x2a\xe3\xdd\xad\x37\xe4\xd9\xdf\xe2\x43\x8d\x8e\x95\xd8\xe5\xe8\xd1\xfa\xc3\x43\x25\x54\x7e\xd0\x33\x2e\xda\x9e\x7c\x68\x52\x78\xcf\x2e\x0a\x7f\x35\x86\x09\xac\x2a\xc1\x74\xce\x68\x17\xfd\x0d\x00\x00\xff\xff\xb2\x5c\xcd\xf4\xeb\x0a\x00\x00" func lockedtokensUserGet_total_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -4450,11 +4450,11 @@ func lockedtokensUserGet_total_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_total_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc7, 0xf8, 0x32, 0x31, 0x40, 0xdc, 0xa3, 0xa6, 0xa5, 0xb, 0xb5, 0x37, 0x21, 0x21, 0x80, 0x56, 0x5d, 0xbb, 0xf2, 0xe1, 0xfa, 0xc7, 0x97, 0x9c, 0x93, 0x9d, 0xfd, 0x4b, 0x2f, 0xe, 0x29, 0x74}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa0, 0xed, 0x18, 0xb0, 0xf0, 0xbb, 0xf6, 0xf7, 0x5d, 0x6f, 0x31, 0x15, 0x6, 0xd0, 0x9f, 0x75, 0xbd, 0xc4, 0xcc, 0xeb, 0x6c, 0x90, 0x92, 0x15, 0x62, 0xe5, 0x72, 0xd2, 0xb0, 0xa5, 0x37, 0x8a}} return a, nil } -var _lockedtokensUserGet_unlock_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x50\xcb\x6a\xeb\x30\x10\xdd\xeb\x2b\x0e\x59\x5c\xe4\x4d\xb8\x8b\xd2\x45\x68\x1b\x82\xed\xd2\x12\xd3\x84\x3c\x3e\x40\x96\xc7\xa9\x88\xac\x31\xb2\x4c\x53\x42\xfe\xbd\xd8\x6e\xd3\xf4\x41\x67\x33\x30\x73\x5e\x1c\x53\xd5\xec\x03\x32\xd6\x7b\x2a\x36\xbc\x27\xd7\xa0\xf4\x5c\xe1\xff\x21\x5b\xc4\xf3\x34\xd9\x2c\xe6\xe9\xd3\x2c\x49\x56\xe9\x7a\x2d\x84\xd2\x9a\x9a\x46\x2a\x6b\x23\x94\xad\x43\xa5\x8c\x93\x4a\x6b\x6e\x5d\x98\x60\x56\x14\x9e\x9a\x26\x9a\x60\x7b\x6f\x0e\xd7\x57\x38\x0a\x01\x00\x96\x02\x6c\xef\x30\x1b\xa0\x8f\xae\xe4\x15\x95\xb8\xc5\x8e\xc2\xfb\xed\x43\x26\xea\x29\xdd\x8c\x77\x14\x62\x55\xab\xdc\x58\x13\x5e\x6f\xfe\x5d\x86\x1c\xf7\xeb\x81\x6d\x41\xfe\xf8\xe5\x91\x7d\x37\x3a\xdd\xc9\xb3\x64\x37\x7f\xa3\x97\x6d\x6e\x8d\x5e\xaa\xf0\x7c\x26\x5d\x24\xca\xd9\x7b\x7e\x91\x9f\x97\xe9\x14\xb5\x72\x46\xcb\x51\xcc\xad\x2d\xe0\x38\x60\x00\x41\xc1\x53\x49\x9e\x9c\x26\x04\x46\xdd\x0b\xe3\x87\xe1\x28\x1a\x4a\xf2\x14\x5a\xef\x7e\xed\xa9\x2b\x62\xeb\xba\x4f\x66\x2a\x13\x64\x24\x4e\xe2\x2d\x00\x00\xff\xff\x40\x06\x62\xc9\xb9\x01\x00\x00" +var _lockedtokensUserGet_unlock_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcd\x4e\xc3\x30\x10\x84\xef\x7e\x8a\x51\x0f\xc8\xb9\x54\x1c\x10\x87\x0a\xa8\xa2\x24\x08\xd4\x88\x56\xfd\x79\x00\xc7\xd9\x14\xab\x8e\x37\x72\x1c\x51\x84\x78\x77\x94\x04\x4a\xf9\xd9\x8b\xa5\xf5\xcc\x7c\xf6\x98\xba\x61\x1f\x90\xb3\x3e\x50\xb9\xe5\x03\xb9\x16\x95\xe7\x1a\x97\xc7\x7c\x99\x2c\xb2\x74\xbb\x5c\x64\x4f\x71\x9a\xae\xb3\xcd\x46\x08\xa5\x35\xb5\xad\x54\xd6\x46\xa8\x3a\x87\x5a\x19\x27\x95\xd6\xdc\xb9\x30\x43\x5c\x96\x9e\xda\x36\x9a\x61\x77\x6f\x8e\xd7\x57\x78\x13\x02\x00\x2c\x05\xd8\x81\x10\x8f\xd2\x47\x57\xf1\x9a\x2a\xdc\x62\x4f\xe1\x73\xf7\x15\x13\x0d\x96\x7e\xa6\x7b\x0a\x89\x6a\x54\x61\xac\x09\xaf\x37\x17\xe7\x8f\x9c\x0e\xc7\x03\xdb\x92\xfc\x9d\x3c\x59\xfa\xf9\x21\xcb\x7f\x63\x57\x5d\x61\x8d\x5e\xa9\xf0\x7c\x32\x9d\x11\x0b\xf6\x9e\x5f\xe4\xf7\x66\x3e\x47\xa3\x9c\xd1\x72\x92\x70\x67\x4b\x38\x0e\x18\x45\x50\xf0\x54\x91\x27\xa7\x09\x81\xd1\x0c\xc1\xf8\x03\x9c\x44\x63\x09\x9e\x42\xe7\xdd\xbf\x3d\xf4\x1f\xdd\xb9\xfe\x26\x37\xb5\x09\x32\x12\xef\xe2\x23\x00\x00\xff\xff\xaf\x95\x66\x0f\x99\x01\x00\x00" func lockedtokensUserGet_unlock_limitCdcBytes() ([]byte, error) { return bindataRead( @@ -4470,7 +4470,7 @@ func lockedtokensUserGet_unlock_limitCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_unlock_limit.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf2, 0xf0, 0x89, 0x31, 0xe7, 0x13, 0xde, 0x43, 0x98, 0x7, 0xda, 0x2b, 0x6, 0x81, 0x4e, 0x6f, 0xaa, 0x34, 0x6e, 0x3a, 0x97, 0xdd, 0xba, 0xc9, 0xbc, 0x8a, 0xa, 0xd2, 0x78, 0x9c, 0xdc, 0x87}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0xfa, 0xf6, 0x2b, 0x29, 0x19, 0x1, 0x20, 0x49, 0x19, 0x1d, 0x8f, 0x49, 0x11, 0x37, 0xab, 0xd0, 0xbb, 0x81, 0x70, 0x62, 0x4e, 0xd0, 0x9, 0x74, 0x39, 0x1f, 0xd1, 0x63, 0xa4, 0xc7, 0x48}} return a, nil } diff --git a/lib/go/templates/manifest.mainnet.json b/lib/go/templates/manifest.mainnet.json index 9bdc58e7f..5c75f2cd8 100755 --- a/lib/go/templates/manifest.mainnet.json +++ b/lib/go/templates/manifest.mainnet.json @@ -4,7 +4,7 @@ { "id": "TH.01", "name": "Withdraw Unlocked FLOW", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: AuthAccount) {\n self.holderRef = acct.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: AuthAccount) {\n self.holderRef = acct.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -19,12 +19,12 @@ } ], "network": "mainnet", - "hash": "d7c3c5fb126d6c3f3f6ef47d5aa62aa52b59a6cae1551ad271d67ca6bf6917d7" + "hash": "a2146e3e6e7718779ce59376b88760c154d82b7d132fe2c377114ec7cf434e7b" }, { "id": "TH.02", "name": "Deposit Unlocked FLOW", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: AuthAccount) {\n self.holderRef = acct.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: AuthAccount) {\n self.holderRef = acct.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -39,12 +39,12 @@ } ], "network": "mainnet", - "hash": "54ee21d197bb76a1a5d3b140367926e7c872df278276831e1d6cf2fd440bc108" + "hash": "5ff29c78cdb13cc792f77cf81ca84d5fb5ef1ecd89de8919d14b674c6012f6af" }, { "id": "TH.06", "name": "Register Node", - "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow ref to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let nodeInfo = StakingProxy.NodeInfo(nodeID: id, role: role, networkingAddress: networkingAddress, networkingKey: networkingKey, stakingKey: stakingKey)\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n \n }\n}\n", + "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow ref to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let nodeInfo = StakingProxy.NodeInfo(nodeID: id, role: role, networkingAddress: networkingAddress, networkingKey: networkingKey, stakingKey: stakingKey)\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n \n }\n}\n", "arguments": [ { "type": "String", @@ -114,12 +114,12 @@ } ], "network": "mainnet", - "hash": "ffe8132e20e6cd5b384b807318e5c19062e5bf3c7f109d22807c22c17f668823" + "hash": "9d5575c8d3de5a03b9959b614f8c3ae6e5f5063880a6203dc4a4381d67880e90" }, { "id": "TH.08", "name": "Stake New Locked FLOW", - "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\n\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.stakeNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.stakeNewTokens(amount: amount)\n \n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\n\nimport LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.stakeNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.stakeNewTokens(amount: amount)\n \n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -134,12 +134,12 @@ } ], "network": "mainnet", - "hash": "d08853d1f83b49cf6d99db0f6b741eb5144d95f77462998f959546862b6475df" + "hash": "fecfd7502ae7b6882d0b8dc11452a3fd36bc024e028114388e265dee53ada841" }, { "id": "TH.09", "name": "Re-stake Unstaked FLOW", - "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -154,12 +154,12 @@ } ], "network": "mainnet", - "hash": "30c45ca6488610bea1fbb2abd97ea46c7a5898b21ebc83805a15e201a78c353a" + "hash": "677cc0ac3962ec136ca26dbec0aa942d926640ecf8418433f0db4b7925f5d0fe" }, { "id": "TH.10", "name": "Re-stake Rewarded FLOW", - "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeRewardedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeRewardedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -174,12 +174,12 @@ } ], "network": "mainnet", - "hash": "aa0b344b3350af57b624e8cf9c8ccf15061de652980e260a001eff83d306a1ed" + "hash": "28d1719c5b21c88c62665db5ba04886809f3234c27057b057c36d5f265ee9de4" }, { "id": "TH.11", "name": "Request Unstake of FLOW", - "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.requestUnstaking(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.requestUnstaking(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -194,20 +194,20 @@ } ], "network": "mainnet", - "hash": "3d8adb653124a3727e2823b353e77abc368db62b2551bcc11308c834e7882926" + "hash": "4e2a35541453f89c55e5dc6dbc963290380d779c81df0b3bf89c29b2a8d7a9fe" }, { "id": "TH.12", "name": "Unstake All FLOW", - "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction() {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.unstakeAll()\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction() {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.unstakeAll()\n }\n}\n", "arguments": [], "network": "mainnet", - "hash": "ef8bfbe51e4b85a3bb3199bd431d1928de571c5c26bb5fd97b49cb1181499be9" + "hash": "7099904b953b062e81e2575a2c2081b3d98bfccf5c743b4bdb224b937e292dad" }, { "id": "TH.13", "name": "Withdraw Unstaked FLOW", - "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -222,12 +222,12 @@ } ], "network": "mainnet", - "hash": "f40441c488fcbc303883a8f8877db17da387e8579e60aa7de2507b93bb5190c2" + "hash": "dcae4faa6d689873f7caf7c5efef669f9fe1d4113e58b474b7aec1e07113a7ff" }, { "id": "TH.14", "name": "Withdraw Rewarded FLOW", - "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport FlowToken from 0x1654653399040a61\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FlowToken from 0x1654653399040a61\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -242,12 +242,12 @@ } ], "network": "mainnet", - "hash": "ba6f456e459bb323025905699773b61a199f0821f4c29c250bf6707af699ed5f" + "hash": "9bb8f0562eea5e45c11f9289540f39c99a21c9a0fb060a7d3f832e98c2696f2d" }, { "id": "TH.16", "name": "Register Operator Node", - "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).getCapability\n \u003c\u0026StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}\u003e\n (StakingProxy.NodeOperatorCapabilityPublicPath)!.borrow() \n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).getCapability\n \u003c\u0026StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}\u003e\n (StakingProxy.NodeOperatorCapabilityPublicPath)!.borrow() \n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", "arguments": [ { "type": "Address", @@ -284,12 +284,12 @@ } ], "network": "mainnet", - "hash": "10f2a0650245056e09df33cb19375aad8d417135a16d333bb728a64d17c0ae5b" + "hash": "97b3436482c5aefc1baf8b850e92c829202e468c57241dec707b6c27bd89d15c" }, { "id": "TH.17", "name": "Register Delegator", - "source": "import FlowToken from 0x1654653399040a61\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\nimport FlowIDTableStaking from 0x8624b52f9ddcd04a\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\nimport FlowIDTableStaking from 0x8624b52f9ddcd04a\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -315,12 +315,12 @@ } ], "network": "mainnet", - "hash": "6ea8beb7476819ce8cc499153580c1368b337534674b6bc8fe2150dd1052ba0a" + "hash": "80da4be458d929ca3933d717859425f652cfbac4ce0ed5124d6dae9bce59b8b2" }, { "id": "TH.19", "name": "Delegate New Locked FLOW", - "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowDelegator()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.delegateNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.delegateNewTokens(amount: amount)\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowDelegator()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.delegateNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.delegateNewTokens(amount: amount)\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -335,12 +335,12 @@ } ], "network": "mainnet", - "hash": "b526762455a00bcc877a5ac917c131ba3655047fd9d51e905faed1928c6259c0" + "hash": "b7c7e03fdbbe2dee6efb35dfab741aba89a91122bd778efa1ed3ce7f4cc27e91" }, { "id": "TH.20", "name": "Re-delegate Unstaked FLOW", - "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -355,12 +355,12 @@ } ], "network": "mainnet", - "hash": "89fef6670f7b03f41499aa92e3d43590514f8336d6f9ed2a9f3701439fd5508f" + "hash": "2027331b72d8710a1a05feb6ecebadb5858d134bc8c95d6f261319cd9fa1bb95" }, { "id": "TH.21", "name": "Re-delegate Rewarded FLOW", - "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateRewardedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateRewardedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -375,12 +375,12 @@ } ], "network": "mainnet", - "hash": "9cb59ac5f6a3b35142b888a82871663d340499f39413ef853f7fa0a34076940b" + "hash": "864edbff384335ef21c26b3bcf17d36b2b1d894afbe2b203f58099cc457971e4" }, { "id": "TH.22", "name": "Unstake Delegated FLOW", - "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.requestUnstaking(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.requestUnstaking(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -395,12 +395,12 @@ } ], "network": "mainnet", - "hash": "544af342726bbf514d3ae69bce42bc078ba6156adab7666ba8bd2ef100960704" + "hash": "262aeddd3f49fd6222d706c02696bd7d359ba962b6c30232cc93d7cf4166a23e" }, { "id": "TH.23", "name": "Withdraw Unstaked FLOW", - "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -415,12 +415,12 @@ } ], "network": "mainnet", - "hash": "766bcd922dc726f184ddbfe1638581c6bcb94b27a496fcab2c327a19c1ccec30" + "hash": "12675a013c064b6d0ef11dbf13f92210489bf2b3d299b2f14cd09be70b37577f" }, { "id": "TH.24", "name": "Withdraw Rewarded FLOW", - "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport FlowToken from 0x1654653399040a61\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let delegatorProxy = self.holderRef.borrowDelegator()\n\n delegatorProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FlowToken from 0x1654653399040a61\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let delegatorProxy = self.holderRef.borrowDelegator()\n\n delegatorProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -435,7 +435,7 @@ } ], "network": "mainnet", - "hash": "0e1bfccd9bf67eb5ce8bdac1df0ae1f2e5bab6262805e4fdcc43c3572dfa00fc" + "hash": "239ffa449eae5560eec3e99633dcf9c63b1e9c99996d1c5636644dceef9ec44b" }, { "id": "TH.25", @@ -460,10 +460,10 @@ { "id": "SCO.01", "name": "Setup Staking Collection", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport FlowIDTableStaking from 0x8624b52f9ddcd04a\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// This transaction sets up an account to use a staking collection\n/// It will work regardless of whether they have a regular account, a two-account locked tokens setup,\n/// or staking objects stored in the unlocked account\n\ntransaction {\n prepare(signer: AuthAccount) {\n\n // If there isn't already a staking collection\n if signer.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath) == nil {\n\n // Create private capabilities for the token holder and unlocked vault\n let lockedHolder = signer.link\u003c\u0026LockedTokens.TokenHolder\u003e(/private/flowTokenHolder, target: LockedTokens.TokenHolderStoragePath)!\n let flowToken = signer.link\u003c\u0026FlowToken.Vault\u003e(/private/flowTokenVault, target: /storage/flowTokenVault)!\n \n // Create a new Staking Collection and put it in storage\n if lockedHolder.check() {\n signer.save(\u003c-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: lockedHolder), to: FlowStakingCollection.StakingCollectionStoragePath)\n } else {\n signer.save(\u003c-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: nil), to: FlowStakingCollection.StakingCollectionStoragePath)\n }\n\n // Create a public link to the staking collection\n signer.link\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(\n FlowStakingCollection.StakingCollectionPublicPath,\n target: FlowStakingCollection.StakingCollectionStoragePath\n )\n }\n\n // borrow a reference to the staking collection\n let collectionRef = signer.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow staking collection reference\")\n\n // If there is a node staker object in the account, put it in the staking collection\n if signer.borrow\u003c\u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath) != nil {\n let node \u003c- signer.load\u003c@FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)!\n collectionRef.addNodeObject(\u003c-node, machineAccountInfo: nil)\n }\n\n // If there is a delegator object in the account, put it in the staking collection\n if signer.borrow\u003c\u0026FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath) != nil {\n let delegator \u003c- signer.load\u003c@FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath)!\n collectionRef.addDelegatorObject(\u003c-delegator)\n }\n }\n}\n", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport FlowIDTableStaking from 0x8624b52f9ddcd04a\nimport LockedTokens from 0x8d0e87b65159ae63\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// This transaction sets up an account to use a staking collection\n/// It will work regardless of whether they have a regular account, a two-account locked tokens setup,\n/// or staking objects stored in the unlocked account\n\ntransaction {\n prepare(signer: AuthAccount) {\n\n // If there isn't already a staking collection\n if signer.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath) == nil {\n\n // Create private capabilities for the token holder and unlocked vault\n let lockedHolder = signer.link\u003c\u0026LockedTokens.TokenHolder\u003e(/private/flowTokenHolder, target: LockedTokens.TokenHolderStoragePath)!\n let flowToken = signer.link\u003c\u0026FlowToken.Vault\u003e(/private/flowTokenVault, target: /storage/flowTokenVault)!\n \n // Create a new Staking Collection and put it in storage\n if lockedHolder.check() {\n signer.save(\u003c-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: lockedHolder), to: FlowStakingCollection.StakingCollectionStoragePath)\n } else {\n signer.save(\u003c-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: nil), to: FlowStakingCollection.StakingCollectionStoragePath)\n }\n\n // Create a public link to the staking collection\n signer.link\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(\n FlowStakingCollection.StakingCollectionPublicPath,\n target: FlowStakingCollection.StakingCollectionStoragePath\n )\n }\n\n // borrow a reference to the staking collection\n let collectionRef = signer.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow staking collection reference\")\n\n // If there is a node staker object in the account, put it in the staking collection\n if signer.borrow\u003c\u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath) != nil {\n let node \u003c- signer.load\u003c@FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)!\n collectionRef.addNodeObject(\u003c-node, machineAccountInfo: nil)\n }\n\n // If there is a delegator object in the account, put it in the staking collection\n if signer.borrow\u003c\u0026FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath) != nil {\n let delegator \u003c- signer.load\u003c@FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath)!\n collectionRef.addDelegatorObject(\u003c-delegator)\n }\n }\n}\n", "arguments": [], "network": "mainnet", - "hash": "e7c2f878ed8a6e30184ae24b8952c2d9ee3b633c80debef21f9755d5146c54ff" + "hash": "0e5c2445c0b1016eed4f60c429f233aa0bb223a0d9ff2aedffce00a58037a2bf" }, { "id": "SCO.02", diff --git a/lib/go/templates/manifest.testnet.json b/lib/go/templates/manifest.testnet.json index 8eac8f2da..e3b75db6d 100755 --- a/lib/go/templates/manifest.testnet.json +++ b/lib/go/templates/manifest.testnet.json @@ -4,7 +4,7 @@ { "id": "TH.01", "name": "Withdraw Unlocked FLOW", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: AuthAccount) {\n self.holderRef = acct.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: AuthAccount) {\n self.holderRef = acct.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -19,12 +19,12 @@ } ], "network": "testnet", - "hash": "9fbbe64757ff548a2b7ac1422c41dbe61c86af00f5a3cedf3b3ecd1371b9013a" + "hash": "6e73db6edd0190f5311f6adc5f2b1f27e9e60c68574b00ee90da867da52cdbb1" }, { "id": "TH.02", "name": "Deposit Unlocked FLOW", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: AuthAccount) {\n self.holderRef = acct.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: AuthAccount) {\n self.holderRef = acct.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -39,12 +39,12 @@ } ], "network": "testnet", - "hash": "f34a9b437a9035340e89638e6cf6d4212397e452155bf330628509515fc2e84a" + "hash": "e806681df17e7d6baef776f46d774226384ecbe92949ed368e27a80657b9d335" }, { "id": "TH.06", "name": "Register Node", - "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow ref to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let nodeInfo = StakingProxy.NodeInfo(nodeID: id, role: role, networkingAddress: networkingAddress, networkingKey: networkingKey, stakingKey: stakingKey)\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n \n }\n}\n", + "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow ref to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let nodeInfo = StakingProxy.NodeInfo(nodeID: id, role: role, networkingAddress: networkingAddress, networkingKey: networkingKey, stakingKey: stakingKey)\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n \n }\n}\n", "arguments": [ { "type": "String", @@ -114,12 +114,12 @@ } ], "network": "testnet", - "hash": "868f075ec47aa0e2ce868de3625a406d7faa544d6bb133dc43a717bed850da47" + "hash": "acbd093e289e0225ffa1ac630e762047acc56b2621f2af1f4850a276e4394876" }, { "id": "TH.08", "name": "Stake New Locked FLOW", - "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\n\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.stakeNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.stakeNewTokens(amount: amount)\n \n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\n\nimport LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.stakeNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.stakeNewTokens(amount: amount)\n \n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -134,12 +134,12 @@ } ], "network": "testnet", - "hash": "09f8712ea984980a581dd7beaae5e21c74b80c0006be1fcb121d2759258bb708" + "hash": "551aa85f14d043633bcd04649eb2b90291cbdb4d93b46fe39e1109b50bfe19f9" }, { "id": "TH.09", "name": "Re-stake Unstaked FLOW", - "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -154,12 +154,12 @@ } ], "network": "testnet", - "hash": "cc8eb7cc3d758b660ef80ebcf8e032e77d6d428e9b38916c1baf48b22fe10985" + "hash": "23e5bfd594bb3245090e3e0bafb9cb9246fc84d30e4a35a7fde1b51085624d86" }, { "id": "TH.10", "name": "Re-stake Rewarded FLOW", - "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeRewardedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeRewardedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -174,12 +174,12 @@ } ], "network": "testnet", - "hash": "8d8a83cba1748e759c209b4e43241ea6e4f42d7d4250bd0d5c1054ce38deabcd" + "hash": "239319825ad68178e76465b5ea18cb43f06c4ee11341f8fe9424809163a027a5" }, { "id": "TH.11", "name": "Request Unstake of FLOW", - "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.requestUnstaking(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.requestUnstaking(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -194,20 +194,20 @@ } ], "network": "testnet", - "hash": "9e3b012e573e53f5f1637ef42ad7737a7c954cb972cb3d468c5c895d8a07bd0f" + "hash": "33e3977c45e7c23c1472bcf334d00b03ebf91b06b67c57b63b562c7b1ff5c59f" }, { "id": "TH.12", "name": "Unstake All FLOW", - "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction() {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.unstakeAll()\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction() {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.unstakeAll()\n }\n}\n", "arguments": [], "network": "testnet", - "hash": "b35d723cf5560a7f54fe51509647f3339e7cdb7bcd133e3abf5c75e618e93e25" + "hash": "f92c4cd663b2e335cd821a656bb2ebcf239b222036a7825af5e512fad4d82035" }, { "id": "TH.13", "name": "Withdraw Unstaked FLOW", - "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -222,12 +222,12 @@ } ], "network": "testnet", - "hash": "06482448c9a2845762611207ae4fa5bf80600bf9d3736c0e39440a809ad2bc5e" + "hash": "90097e3aff9b67f65bbada3cdedbb73d45d093ff333aaaff38809bf9910a3e39" }, { "id": "TH.14", "name": "Withdraw Rewarded FLOW", - "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport FlowToken from 0x7e60df042a9c0868\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FlowToken from 0x7e60df042a9c0868\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -242,12 +242,12 @@ } ], "network": "testnet", - "hash": "142da415f99a8e428fb426095593df83488e3bf735f7f3cc73dc55534b8ac477" + "hash": "f23406ff402f02418629432912ce732be0441b1a7e71f16c03d688a165ff7f49" }, { "id": "TH.16", "name": "Register Operator Node", - "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).getCapability\n \u003c\u0026StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}\u003e\n (StakingProxy.NodeOperatorCapabilityPublicPath)!.borrow() \n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).getCapability\n \u003c\u0026StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}\u003e\n (StakingProxy.NodeOperatorCapabilityPublicPath)!.borrow() \n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", "arguments": [ { "type": "Address", @@ -284,12 +284,12 @@ } ], "network": "testnet", - "hash": "3bf72cb08ad81a230a8ceeb4850f1d05721d9b2bb0518daaeb428d8e40f4cf8f" + "hash": "c29d4024aaeb71ab478182542499e0ba3d5d303ec027252e3b8333515ee3de48" }, { "id": "TH.17", "name": "Register Delegator", - "source": "import FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\nimport FlowIDTableStaking from 0x9eca2b38b18b5dfe\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\nimport FlowIDTableStaking from 0x9eca2b38b18b5dfe\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -315,12 +315,12 @@ } ], "network": "testnet", - "hash": "c5a6eedd41b6d66f0b0479afb47379c00fc16a0d56ac29dcfa95aead94a21ecd" + "hash": "9e952288b6359fde87fb91537e76e663d4e10e7ce495f7b8c763d38ab54cd232" }, { "id": "TH.19", "name": "Delegate New Locked FLOW", - "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowDelegator()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.delegateNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.delegateNewTokens(amount: amount)\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowDelegator()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.delegateNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.delegateNewTokens(amount: amount)\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -335,12 +335,12 @@ } ], "network": "testnet", - "hash": "d815c147e9f2c4c8c71ff703b76edaba0929ea5ad8df37621d1296a86504f0bb" + "hash": "7a8f09e4af477d551c4366e4b644718aa41e71210e043f8820dbd7dee7af38e8" }, { "id": "TH.20", "name": "Re-delegate Unstaked FLOW", - "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -355,12 +355,12 @@ } ], "network": "testnet", - "hash": "89fef6670f7b03f41499aa92e3d43590514f8336d6f9ed2a9f3701439fd5508f" + "hash": "8776b1521b04395754734f8f40d4a0482863274f8d832973d9e011b3cbb48c85" }, { "id": "TH.21", "name": "Re-delegate Rewarded FLOW", - "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateRewardedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateRewardedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -375,12 +375,12 @@ } ], "network": "testnet", - "hash": "9cb59ac5f6a3b35142b888a82871663d340499f39413ef853f7fa0a34076940b" + "hash": "6b40ffc9169abd75107a45da5974c7e502d38773275abb231d747e4760b7ebee" }, { "id": "TH.22", "name": "Unstake Delegated FLOW", - "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.requestUnstaking(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.requestUnstaking(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -395,12 +395,12 @@ } ], "network": "testnet", - "hash": "544af342726bbf514d3ae69bce42bc078ba6156adab7666ba8bd2ef100960704" + "hash": "61cbcd1c31bbfc9ceb4a5ac726e2f8b3d845a4fdf59b0ab23cbbfa8f16d7a024" }, { "id": "TH.23", "name": "Withdraw Unstaked FLOW", - "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -415,12 +415,12 @@ } ], "network": "testnet", - "hash": "766bcd922dc726f184ddbfe1638581c6bcb94b27a496fcab2c327a19c1ccec30" + "hash": "2ae983f78e32b989fafa58ee7910b131fb51a2a74356f7916624695cb8bf5964" }, { "id": "TH.24", "name": "Withdraw Rewarded FLOW", - "source": "import LockedTokens from 0xLOCKEDTOKENADDRESS\nimport FlowToken from 0x7e60df042a9c0868\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let delegatorProxy = self.holderRef.borrowDelegator()\n\n delegatorProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FlowToken from 0x7e60df042a9c0868\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let delegatorProxy = self.holderRef.borrowDelegator()\n\n delegatorProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -435,7 +435,7 @@ } ], "network": "testnet", - "hash": "4b1c0424b9a165fb1d35dd4a5aada45054f283bddfec126a9e7116d920b3c93f" + "hash": "385042aa453566fcff0b2bd418b837d8f46fbc23b1b46e6651b25a395bc04be8" }, { "id": "TH.25", @@ -460,10 +460,10 @@ { "id": "SCO.01", "name": "Setup Staking Collection", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport FlowIDTableStaking from 0x9eca2b38b18b5dfe\nimport LockedTokens from 0xLOCKEDTOKENADDRESS\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// This transaction sets up an account to use a staking collection\n/// It will work regardless of whether they have a regular account, a two-account locked tokens setup,\n/// or staking objects stored in the unlocked account\n\ntransaction {\n prepare(signer: AuthAccount) {\n\n // If there isn't already a staking collection\n if signer.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath) == nil {\n\n // Create private capabilities for the token holder and unlocked vault\n let lockedHolder = signer.link\u003c\u0026LockedTokens.TokenHolder\u003e(/private/flowTokenHolder, target: LockedTokens.TokenHolderStoragePath)!\n let flowToken = signer.link\u003c\u0026FlowToken.Vault\u003e(/private/flowTokenVault, target: /storage/flowTokenVault)!\n \n // Create a new Staking Collection and put it in storage\n if lockedHolder.check() {\n signer.save(\u003c-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: lockedHolder), to: FlowStakingCollection.StakingCollectionStoragePath)\n } else {\n signer.save(\u003c-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: nil), to: FlowStakingCollection.StakingCollectionStoragePath)\n }\n\n // Create a public link to the staking collection\n signer.link\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(\n FlowStakingCollection.StakingCollectionPublicPath,\n target: FlowStakingCollection.StakingCollectionStoragePath\n )\n }\n\n // borrow a reference to the staking collection\n let collectionRef = signer.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow staking collection reference\")\n\n // If there is a node staker object in the account, put it in the staking collection\n if signer.borrow\u003c\u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath) != nil {\n let node \u003c- signer.load\u003c@FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)!\n collectionRef.addNodeObject(\u003c-node, machineAccountInfo: nil)\n }\n\n // If there is a delegator object in the account, put it in the staking collection\n if signer.borrow\u003c\u0026FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath) != nil {\n let delegator \u003c- signer.load\u003c@FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath)!\n collectionRef.addDelegatorObject(\u003c-delegator)\n }\n }\n}\n", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport FlowIDTableStaking from 0x9eca2b38b18b5dfe\nimport LockedTokens from 0x95e019a17d0e23d7\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// This transaction sets up an account to use a staking collection\n/// It will work regardless of whether they have a regular account, a two-account locked tokens setup,\n/// or staking objects stored in the unlocked account\n\ntransaction {\n prepare(signer: AuthAccount) {\n\n // If there isn't already a staking collection\n if signer.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath) == nil {\n\n // Create private capabilities for the token holder and unlocked vault\n let lockedHolder = signer.link\u003c\u0026LockedTokens.TokenHolder\u003e(/private/flowTokenHolder, target: LockedTokens.TokenHolderStoragePath)!\n let flowToken = signer.link\u003c\u0026FlowToken.Vault\u003e(/private/flowTokenVault, target: /storage/flowTokenVault)!\n \n // Create a new Staking Collection and put it in storage\n if lockedHolder.check() {\n signer.save(\u003c-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: lockedHolder), to: FlowStakingCollection.StakingCollectionStoragePath)\n } else {\n signer.save(\u003c-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: nil), to: FlowStakingCollection.StakingCollectionStoragePath)\n }\n\n // Create a public link to the staking collection\n signer.link\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(\n FlowStakingCollection.StakingCollectionPublicPath,\n target: FlowStakingCollection.StakingCollectionStoragePath\n )\n }\n\n // borrow a reference to the staking collection\n let collectionRef = signer.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow staking collection reference\")\n\n // If there is a node staker object in the account, put it in the staking collection\n if signer.borrow\u003c\u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath) != nil {\n let node \u003c- signer.load\u003c@FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)!\n collectionRef.addNodeObject(\u003c-node, machineAccountInfo: nil)\n }\n\n // If there is a delegator object in the account, put it in the staking collection\n if signer.borrow\u003c\u0026FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath) != nil {\n let delegator \u003c- signer.load\u003c@FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath)!\n collectionRef.addDelegatorObject(\u003c-delegator)\n }\n }\n}\n", "arguments": [], "network": "testnet", - "hash": "bac479e1708351949d2260899d4d638c84771dde48f34be076ba38593c771697" + "hash": "a524b4094fcaf1051dbf43ac33ff80bb2f553670c58eeeb719757972a25d6b50" }, { "id": "SCO.02", diff --git a/lib/go/templates/templates.go b/lib/go/templates/templates.go index ea9bb229e..84cff4f97 100644 --- a/lib/go/templates/templates.go +++ b/lib/go/templates/templates.go @@ -74,6 +74,12 @@ func ReplaceAddresses(code string, env Environment) string { withHexPrefix(env.FlowTokenAddress), ) + code = strings.ReplaceAll( + code, + OLD_placeholderLockedTokensAddress, + withHexPrefix(env.LockedTokensAddress), + ) + code = strings.ReplaceAll( code, placeholderFungibleTokenAddress, diff --git a/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc b/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc index 89d02d68c..d1214c5cd 100644 --- a/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc +++ b/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc @@ -26,7 +26,7 @@ transaction( // Create a private link to the stored vault let vaultCapability = sharedAccount - .link<&FlowToken.Vault>( + .link( /private/flowTokenVault, target: /storage/flowTokenVault ) @@ -37,7 +37,7 @@ transaction( sharedAccount.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) let tokenManagerCapability = sharedAccount - .link<&LockedTokens.LockedTokenManager>( + .link( LockedTokens.LockedTokenManagerPrivatePath, target: LockedTokens.LockedTokenManagerStoragePath ) ?? panic("Could not link token manager capability") @@ -52,13 +52,13 @@ transaction( to: LockedTokens.TokenHolderStoragePath, ) - userAccount.link<&LockedTokens.TokenHolder{LockedTokens.LockedAccountInfo}>( + userAccount.link<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath, target: LockedTokens.TokenHolderStoragePath ) let tokenAdminCapability = sharedAccount - .link<&LockedTokens.LockedTokenManager>( + .link( LockedTokens.LockedTokenAdminPrivatePath, target: LockedTokens.LockedTokenManagerStoragePath ) @@ -80,13 +80,13 @@ transaction( sharedAccount.unlink(/public/flowTokenReceiver) // create new receiver that marks received tokens as unlocked - sharedAccount.link<&AnyResource{FungibleToken.Receiver}>( + sharedAccount.link<&{FungibleToken.Receiver}>( /public/flowTokenReceiver, target: LockedTokens.LockedTokenManagerStoragePath ) // put normal receiver in a separate unique path - sharedAccount.link<&AnyResource{FungibleToken.Receiver}>( + sharedAccount.link<&{FungibleToken.Receiver}>( /public/lockedFlowTokenReceiver, target: /storage/flowTokenVault ) diff --git a/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc b/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc index b7389ffe7..f9b6fdef1 100644 --- a/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc +++ b/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc @@ -1,4 +1,4 @@ -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS /// token admin signs this transaction to deposit a capability /// into a custody provider's account that allows them to add @@ -6,17 +6,18 @@ import LockedTokens from "LockedTokens" transaction(custodyProviderAddress: Address) { - prepare(admin: auth(BorrowValue, Capabilities) &Account) { + prepare(admin: AuthAccount) { let capabilityReceiver = getAccount(custodyProviderAddress) - .capabilities.borrow<&LockedTokens.LockedAccountCreator>( + .getCapability<&LockedTokens.LockedAccountCreator>( LockedTokens.LockedAccountCreatorPublicPath ) + .borrow() ?? panic("Could not borrow capability receiver reference") - let tokenAdminCollection = admin.capabilities.storage.issue( - LockedTokens.LockedTokenAdminCollectionStoragePath - )! + let tokenAdminCollection = admin.getCapability<&LockedTokens.TokenAdminCollection>( + LockedTokens.LockedTokenAdminPrivatePath + ) capabilityReceiver.addCapability(cap: tokenAdminCollection) } diff --git a/transactions/lockedTokens/admin/check_main_registration.cdc b/transactions/lockedTokens/admin/check_main_registration.cdc index 52c83f731..b198a1c5b 100644 --- a/transactions/lockedTokens/admin/check_main_registration.cdc +++ b/transactions/lockedTokens/admin/check_main_registration.cdc @@ -1,17 +1,18 @@ import FungibleToken from "FungibleToken" import FlowToken from "FlowToken" -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(mainAccount: Address) { - prepare(signer: auth(BorrowValue) &Account) { + prepare(signer: AuthAccount) { - let adminRef = signer.storage.borrow<&LockedTokens.TokenAdminCollection>(from: LockedTokens.LockedTokenAdminCollectionStoragePath) + let adminRef = signer.borrow<&LockedTokens.TokenAdminCollection>(from: LockedTokens.LockedTokenAdminCollectionStoragePath) ?? panic("Could not borrow a reference to the locked token admin collection") let lockedAccountInfoRef = getAccount(mainAccount) - .capabilities.borrow<&LockedTokens.TokenHolder>(LockedTokens.LockedAccountInfoPublicPath) + .getCapability<&LockedTokens.TokenHolder>(LockedTokens.LockedAccountInfoPublicPath) + .borrow() ?? panic("Could not borrow a reference to public LockedAccountInfo") let lockedAccount = lockedAccountInfoRef.getLockedAccountAddress() diff --git a/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc b/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc index fa8f3f121..11a64a5d9 100644 --- a/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc @@ -22,7 +22,7 @@ transaction( userAccount.keys.add(publicKey: fullUserPublicKey.publicKey, hashAlgorithm: fullUserPublicKey.hashAlgorithm, weight: fullUserPublicKey.weight) let vaultCapability = sharedAccount - .link<&FlowToken.Vault>(/private/flowTokenVault, target: /storage/flowTokenVault) + .link(/private/flowTokenVault, target: /storage/flowTokenVault) ?? panic("Could not link Flow Token Vault capability") let lockedTokenManager <- LockedTokens.createLockedTokenManager(vault: vaultCapability) @@ -30,7 +30,7 @@ transaction( sharedAccount.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) let tokenManagerCapability = sharedAccount - .link<&LockedTokens.LockedTokenManager>( + .link( LockedTokens.LockedTokenManagerPrivatePath, target: LockedTokens.LockedTokenManagerStoragePath ) ?? panic("Could not link token manager capability") @@ -42,10 +42,10 @@ transaction( to: LockedTokens.TokenHolderStoragePath, ) - userAccount.link<&LockedTokens.TokenHolder{LockedTokens.LockedAccountInfo}>(LockedTokens.LockedAccountInfoPublicPath, target: LockedTokens.TokenHolderStoragePath) + userAccount.link<&LockedTokens.TokenHolder>(LockedTokens.LockedAccountInfoPublicPath, target: LockedTokens.TokenHolderStoragePath) let tokenAdminCapability = sharedAccount - .link<&LockedTokens.LockedTokenManager>( + .link( LockedTokens.LockedTokenAdminPrivatePath, target: LockedTokens.LockedTokenManagerStoragePath) ?? panic("Could not link token custodyProvider to token manager") @@ -60,13 +60,13 @@ transaction( sharedAccount.unlink(/public/flowTokenReceiver) // create new receiver that marks received tokens as unlocked - sharedAccount.link<&AnyResource{FungibleToken.Receiver}>( + sharedAccount.link<&{FungibleToken.Receiver}>( /public/flowTokenReceiver, target: LockedTokens.LockedTokenManagerStoragePath ) // pub normal receiver in a separate unique path - sharedAccount.link<&AnyResource{FungibleToken.Receiver}>( + sharedAccount.link<&{FungibleToken.Receiver}>( /public/lockedFlowTokenReceiver, target: /storage/flowTokenVault ) diff --git a/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc b/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc index b77306e6a..ed97e2805 100644 --- a/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc @@ -20,7 +20,7 @@ transaction( sharedAccount.keys.add(publicKey: fullAdminPublicKey.publicKey, hashAlgorithm: fullAdminPublicKey.hashAlgorithm, weight: fullAdminPublicKey.weight) let vaultCapability = sharedAccount - .link<&FlowToken.Vault>(/private/flowTokenVault, target: /storage/flowTokenVault) + .link(/private/flowTokenVault, target: /storage/flowTokenVault) ?? panic("Could not link Flow Token Vault capability") let lockedTokenManager <- LockedTokens.createLockedTokenManager(vault: vaultCapability) @@ -28,7 +28,7 @@ transaction( sharedAccount.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) let tokenManagerCapability = sharedAccount - .link<&LockedTokens.LockedTokenManager>( + .link( LockedTokens.LockedTokenManagerPrivatePath, target: LockedTokens.LockedTokenManagerStoragePath ) ?? panic("Could not link token manager capability") @@ -40,10 +40,10 @@ transaction( to: LockedTokens.TokenHolderStoragePath, ) - userAccount.link<&LockedTokens.TokenHolder{LockedTokens.LockedAccountInfo}>(LockedTokens.LockedAccountInfoPublicPath, target: LockedTokens.TokenHolderStoragePath) + userAccount.link<&LockedTokens.TokenHolder>(LockedTokens.LockedAccountInfoPublicPath, target: LockedTokens.TokenHolderStoragePath) let tokenAdminCapability = sharedAccount - .link<&LockedTokens.LockedTokenManager>( + .link( LockedTokens.LockedTokenAdminPrivatePath, target: LockedTokens.LockedTokenManagerStoragePath) ?? panic("Could not link token custodyProvider to token manager") @@ -59,13 +59,13 @@ transaction( sharedAccount.unlink(/public/flowTokenReceiver) // create new receiver that marks received tokens as unlocked - sharedAccount.link<&AnyResource{FungibleToken.Receiver}>( + sharedAccount.link<&{FungibleToken.Receiver}>( /public/flowTokenReceiver, target: LockedTokens.LockedTokenManagerStoragePath ) // pub normal receiver in a separate unique path - sharedAccount.link<&AnyResource{FungibleToken.Receiver}>( + sharedAccount.link<&{FungibleToken.Receiver}>( /public/lockedFlowTokenReceiver, target: /storage/flowTokenVault ) diff --git a/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc b/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc index e9913c24e..680d79188 100644 --- a/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc @@ -22,7 +22,7 @@ transaction( sharedAccount.keys.add(publicKey: partialUserPublicKey.publicKey, hashAlgorithm: partialUserPublicKey.hashAlgorithm, weight: partialUserPublicKey.weight) let vaultCapability = sharedAccount - .link<&FlowToken.Vault>(/private/flowTokenVault, target: /storage/flowTokenVault) + .link(/private/flowTokenVault, target: /storage/flowTokenVault) ?? panic("Could not link Flow Token Vault capability") let lockedTokenManager <- LockedTokens.createLockedTokenManager(vault: vaultCapability) @@ -30,7 +30,7 @@ transaction( sharedAccount.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) let tokenManagerCapability = sharedAccount - .link<&LockedTokens.LockedTokenManager>( + .link( LockedTokens.LockedTokenManagerPrivatePath, target: LockedTokens.LockedTokenManagerStoragePath ) @@ -46,13 +46,13 @@ transaction( to: LockedTokens.TokenHolderStoragePath, ) - userAccount.link<&LockedTokens.TokenHolder{LockedTokens.LockedAccountInfo}>( + userAccount.link<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath, target: LockedTokens.TokenHolderStoragePath ) let tokenAdminCapability = sharedAccount - .link<&LockedTokens.LockedTokenManager>( + .link( LockedTokens.LockedTokenAdminPrivatePath, target: LockedTokens.LockedTokenManagerStoragePath ) @@ -75,13 +75,13 @@ transaction( sharedAccount.unlink(/public/flowTokenReceiver) // create new receiver that marks received tokens as unlocked - sharedAccount.link<&AnyResource{FungibleToken.Receiver}>( + sharedAccount.link<&{FungibleToken.Receiver}>( /public/flowTokenReceiver, target: LockedTokens.LockedTokenManagerStoragePath ) // pub normal receiver in a separate unique path - sharedAccount.link<&AnyResource{FungibleToken.Receiver}>( + sharedAccount.link<&{FungibleToken.Receiver}>( /public/lockedFlowTokenReceiver, target: /storage/flowTokenVault ) diff --git a/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc b/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc index 5cf9bff28..a0663ced6 100644 --- a/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc +++ b/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc @@ -24,7 +24,7 @@ transaction( userAccount.keys.add(publicKey: fullUserPublicKey.publicKey, hashAlgorithm: fullUserPublicKey.hashAlgorithm, weight: fullUserPublicKey.weight) let vaultCapability = sharedAccount - .link<&FlowToken.Vault>( + .link( /private/flowTokenVault, target: /storage/flowTokenVault ) @@ -35,7 +35,7 @@ transaction( sharedAccount.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) let tokenManagerCapability = sharedAccount - .link<&LockedTokens.LockedTokenManager>( + .link( LockedTokens.LockedTokenManagerPrivatePath, target: LockedTokens.LockedTokenManagerStoragePath ) @@ -51,13 +51,13 @@ transaction( to: LockedTokens.TokenHolderStoragePath, ) - userAccount.link<&LockedTokens.TokenHolder{LockedTokens.LockedAccountInfo}>( + userAccount.link<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath, target: LockedTokens.TokenHolderStoragePath ) let tokenAdminCapability = sharedAccount - .link<&LockedTokens.LockedTokenManager>( + .link( LockedTokens.LockedTokenAdminPrivatePath, target: LockedTokens.LockedTokenManagerStoragePath ) @@ -79,13 +79,13 @@ transaction( sharedAccount.unlink(/public/flowTokenReceiver) // create new receiver that marks received tokens as unlocked - sharedAccount.link<&AnyResource{FungibleToken.Receiver}>( + sharedAccount.link<&{FungibleToken.Receiver}>( /public/flowTokenReceiver, target: LockedTokens.LockedTokenManagerStoragePath ) // pub normal receiver in a separate unique path - sharedAccount.link<&AnyResource{FungibleToken.Receiver}>( + sharedAccount.link<&{FungibleToken.Receiver}>( /public/lockedFlowTokenReceiver, target: /storage/flowTokenVault ) diff --git a/transactions/lockedTokens/admin/custody_setup_account_creator.cdc b/transactions/lockedTokens/admin/custody_setup_account_creator.cdc index b939161b9..6bc35983d 100644 --- a/transactions/lockedTokens/admin/custody_setup_account_creator.cdc +++ b/transactions/lockedTokens/admin/custody_setup_account_creator.cdc @@ -1,24 +1,20 @@ -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS transaction { - prepare(custodyProvider: auth(SaveValue, Capabilities) &Account) { + prepare(custodyProvider: AuthAccount) { let accountCreator <- LockedTokens.createLockedAccountCreator() - custodyProvider.storage.save( - <-accountCreator, - to: LockedTokens.LockedAccountCreatorStoragePath + custodyProvider.save( + <-accountCreator, + to: LockedTokens.LockedAccountCreatorStoragePath, ) - + // create new receiver that marks received tokens as unlocked - let lockedAccountCreatorCap = custodyProvider.capabilities.storage.issue<&LockedTokens.LockedAccountCreator>( - LockedTokens.LockedAccountCreatorStoragePath - ) - - custodyProvider.capabilities.publish( - lockedAccountCreatorCap, - at: LockedTokens.LockedAccountCreatorPublicPath + custodyProvider.link<&LockedTokens.LockedAccountCreator>( + LockedTokens.LockedAccountCreatorPublicPath, + target: LockedTokens.LockedAccountCreatorStoragePath ) } } diff --git a/transactions/lockedTokens/admin/deposit_locked_tokens.cdc b/transactions/lockedTokens/admin/deposit_locked_tokens.cdc index c5f84a85d..a51acd5a0 100644 --- a/transactions/lockedTokens/admin/deposit_locked_tokens.cdc +++ b/transactions/lockedTokens/admin/deposit_locked_tokens.cdc @@ -6,7 +6,7 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(to: Address, amount: UFix64) { // The Vault resource that holds the tokens that are being transferred - let sentVault: @FungibleToken.Vault + let sentVault: @{FungibleToken.Vault} prepare(admin: AuthAccount) { @@ -36,7 +36,7 @@ transaction(to: Address, amount: UFix64) { // Get a reference to the recipient's Receiver let receiverRef = recipient - .getCapability<&AnyResource{FungibleToken.Receiver}>( + .getCapability<&{FungibleToken.Receiver}>( /public/lockedFlowTokenReceiver ) .borrow() diff --git a/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc b/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc index cdba4498c..7005f4221 100644 --- a/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc +++ b/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc @@ -1,4 +1,4 @@ -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS // This transaction uses the locked tokens admin // to set the unlock limit for multiple accounts @@ -8,16 +8,16 @@ import LockedTokens from "LockedTokens" transaction(unlockInfo: {Address: UFix64}) { - prepare(admin: auth(Storage, Capabilities) &Account) { + prepare(admin: AuthAccount) { // Unlocked Account addresses that had some sort of error // are stored in this dictionary so they can be inspected later // If the transaction needs to run multiple times, // then the dictionary is not overwritten - var badAccounts: {Address: UFix64} = admin.storage.load<{Address: UFix64}>(from: /storage/unlockingBadAccounts) + var badAccounts: {Address: UFix64} = admin.load<{Address: UFix64}>(from: /storage/unlockingBadAccounts) ?? {} as {Address: UFix64} - let adminRef = admin.storage.borrow<&LockedTokens.TokenAdminCollection>(from: LockedTokens.LockedTokenAdminCollectionStoragePath) + let adminRef = admin.borrow<&LockedTokens.TokenAdminCollection>(from: LockedTokens.LockedTokenAdminCollectionStoragePath) ?? panic("Could not borrow a reference to the admin collection") for unlockedAddress in unlockInfo.keys { @@ -26,7 +26,8 @@ transaction(unlockInfo: {Address: UFix64}) { // revert the entire transaction if it fails // to get the information for a single address if let lockedAccountInfoRef = getAccount(unlockedAddress) - .capabilities.borrow<&LockedTokens.TokenHolder>(LockedTokens.LockedAccountInfoPublicPath) { + .getCapability<&LockedTokens.TokenHolder>(LockedTokens.LockedAccountInfoPublicPath) + .borrow() { let lockedAccountAddress = lockedAccountInfoRef.getLockedAccountAddress() @@ -54,9 +55,7 @@ transaction(unlockInfo: {Address: UFix64}) { badAccounts[unlockedAddress] = unlockInfo[unlockedAddress] } - admin.storage.save<{Address: UFix64}>(badAccounts, to: /storage/unlockingBadAccounts) - - let unlockingBadAccountCap = admin.capabilities.storage.issue<&{Address: UFix64}>(/storage/unlockingBadAccounts) - admin.capabilities.publish(unlockingBadAccountCap, at: /public/unlockingBadAccounts) + admin.save<{Address: UFix64}>(badAccounts, to: /storage/unlockingBadAccounts) + admin.link<&{Address: UFix64}>(/public/unlockingBadAccounts, target: /storage/unlockingBadAccounts) } } diff --git a/transactions/lockedTokens/delegator/get_delegator_id.cdc b/transactions/lockedTokens/delegator/get_delegator_id.cdc index 2cc5e01ac..eb32c4f90 100644 --- a/transactions/lockedTokens/delegator/get_delegator_id.cdc +++ b/transactions/lockedTokens/delegator/get_delegator_id.cdc @@ -1,11 +1,12 @@ -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(account: Address): UInt32 { let lockedAccountInfoRef = getAccount(account) - .capabilities.borrow<&LockedTokens.TokenHolder>( + .getCapability<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath ) + .borrow() ?? panic("Could not borrow a reference to public LockedAccountInfo") return lockedAccountInfoRef.getDelegatorID()! diff --git a/transactions/lockedTokens/delegator/get_delegator_info.cdc b/transactions/lockedTokens/delegator/get_delegator_info.cdc index 171c6231c..afb46a983 100644 --- a/transactions/lockedTokens/delegator/get_delegator_info.cdc +++ b/transactions/lockedTokens/delegator/get_delegator_info.cdc @@ -24,7 +24,7 @@ access(all) fun main(account: Address): [FlowIDTableStaking.DelegatorInfo] { } let lockedAccountInfoCap = pubAccount - .getCapability<&LockedTokens.TokenHolder{LockedTokens.LockedAccountInfo}>( + .getCapability<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath ) diff --git a/transactions/lockedTokens/delegator/get_delegator_node_id.cdc b/transactions/lockedTokens/delegator/get_delegator_node_id.cdc index 938f59743..a9e8d1718 100644 --- a/transactions/lockedTokens/delegator/get_delegator_node_id.cdc +++ b/transactions/lockedTokens/delegator/get_delegator_node_id.cdc @@ -1,11 +1,12 @@ -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(account: Address): String { let lockedAccountInfoRef = getAccount(account) - .capabilities.borrow<&LockedTokens.TokenHolder>( + .getCapability<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath ) + .borrow() ?? panic("Could not borrow a reference to public LockedAccountInfo") return lockedAccountInfoRef.getDelegatorNodeID()! diff --git a/transactions/lockedTokens/staker/get_node_id.cdc b/transactions/lockedTokens/staker/get_node_id.cdc index eb5235b04..490fbbdec 100644 --- a/transactions/lockedTokens/staker/get_node_id.cdc +++ b/transactions/lockedTokens/staker/get_node_id.cdc @@ -1,11 +1,12 @@ -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(account: Address): String { let lockedAccountInfoRef = getAccount(account) - .capabilities.borrow<&LockedTokens.TokenHolder>( + .getCapability<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath ) + .borrow() ?? panic("Could not borrow a reference to public LockedAccountInfo") return lockedAccountInfoRef.getNodeID()! diff --git a/transactions/lockedTokens/staker/get_staker_info.cdc b/transactions/lockedTokens/staker/get_staker_info.cdc index 02eef2a4f..d1795cdb5 100644 --- a/transactions/lockedTokens/staker/get_staker_info.cdc +++ b/transactions/lockedTokens/staker/get_staker_info.cdc @@ -21,7 +21,7 @@ access(all) fun main(account: Address): [FlowIDTableStaking.NodeInfo] { } let lockedAccountInfoCap = pubAccount - .getCapability<&LockedTokens.TokenHolder{LockedTokens.LockedAccountInfo}>( + .getCapability<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath ) diff --git a/transactions/lockedTokens/user/get_locked_account_address.cdc b/transactions/lockedTokens/user/get_locked_account_address.cdc index 11c2c3ca2..48fc4ab27 100644 --- a/transactions/lockedTokens/user/get_locked_account_address.cdc +++ b/transactions/lockedTokens/user/get_locked_account_address.cdc @@ -1,11 +1,12 @@ -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(account: Address): Address { let lockedAccountInfoRef = getAccount(account) - .capabilities.borrow<&LockedTokens.TokenHolder>( + .getCapability<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath ) + .borrow() ?? panic("Could not borrow a reference to public LockedAccountInfo") return lockedAccountInfoRef.getLockedAccountAddress() diff --git a/transactions/lockedTokens/user/get_locked_account_balance.cdc b/transactions/lockedTokens/user/get_locked_account_balance.cdc index 319d27175..deb30d5e4 100644 --- a/transactions/lockedTokens/user/get_locked_account_balance.cdc +++ b/transactions/lockedTokens/user/get_locked_account_balance.cdc @@ -1,11 +1,12 @@ -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(account: Address): UFix64 { let lockedAccountInfoRef = getAccount(account) - .capabilities.borrow<&LockedTokens.TokenHolder>( + .getCapability<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath ) + .borrow() ?? panic("Could not borrow a reference to public LockedAccountInfo") return lockedAccountInfoRef.getLockedAccountBalance() diff --git a/transactions/lockedTokens/user/get_multiple_unlock_limits.cdc b/transactions/lockedTokens/user/get_multiple_unlock_limits.cdc index 9b0492123..4a674ce02 100644 --- a/transactions/lockedTokens/user/get_multiple_unlock_limits.cdc +++ b/transactions/lockedTokens/user/get_multiple_unlock_limits.cdc @@ -1,4 +1,4 @@ -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(accounts: [Address]): [UFix64] { @@ -6,9 +6,10 @@ access(all) fun main(accounts: [Address]): [UFix64] { for account in accounts { let lockedAccountInfoRef = getAccount(account) - .capabilities.borrow<&LockedTokens.TokenHolder>( + .getCapability<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath ) + .borrow() ?? panic("Could not borrow a reference to public LockedAccountInfo") limits.append(lockedAccountInfoRef.getUnlockLimit()) diff --git a/transactions/lockedTokens/user/get_total_balance.cdc b/transactions/lockedTokens/user/get_total_balance.cdc index 402e005ca..6df2da373 100644 --- a/transactions/lockedTokens/user/get_total_balance.cdc +++ b/transactions/lockedTokens/user/get_total_balance.cdc @@ -22,7 +22,7 @@ access(all) fun main(address: Address): UFix64 { let account = getAccount(address) if let vaultRef = account.getCapability(/public/flowTokenBalance) - .borrow<&FlowToken.Vault{FungibleToken.Balance}>() + .borrow<&FlowToken.Vault>() { sum = sum + vaultRef.balance } @@ -55,7 +55,7 @@ access(all) fun main(address: Address): UFix64 { // Get the locked account public capability let lockedAccountInfoCap = account - .getCapability<&LockedTokens.TokenHolder{LockedTokens.LockedAccountInfo}>( + .getCapability<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath ) diff --git a/transactions/lockedTokens/user/get_unlock_limit.cdc b/transactions/lockedTokens/user/get_unlock_limit.cdc index 057aafce7..7ad994c2b 100644 --- a/transactions/lockedTokens/user/get_unlock_limit.cdc +++ b/transactions/lockedTokens/user/get_unlock_limit.cdc @@ -1,11 +1,12 @@ -import LockedTokens from "LockedTokens" +import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(account: Address): UFix64 { let lockedAccountInfoRef = getAccount(account) - .capabilities.borrow<&LockedTokens.TokenHolder>( + .getCapability<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath ) + .borrow() ?? panic("Could not borrow a reference to public LockedAccountInfo") return lockedAccountInfoRef.getUnlockLimit() From c7e0170cc1a76f55d534713086968ae354e5cf78 Mon Sep 17 00:00:00 2001 From: Supun Setunga Date: Fri, 8 Sep 2023 16:44:55 -0700 Subject: [PATCH 035/160] Update contracts --- contracts/FlowFees.cdc | 18 ++++++------- contracts/FlowServiceAccount.cdc | 44 +++++++++++++++----------------- contracts/FlowStorageFees.cdc | 12 ++++----- contracts/FlowToken.cdc | 18 +++++-------- lib/go/contracts/contracts.go | 6 ++--- lib/go/contracts/go.mod | 2 +- lib/go/test/flow_epoch_test.go | 2 +- 7 files changed, 47 insertions(+), 55 deletions(-) diff --git a/contracts/FlowFees.cdc b/contracts/FlowFees.cdc index 1647d5d9d..a9001114e 100644 --- a/contracts/FlowFees.cdc +++ b/contracts/FlowFees.cdc @@ -98,7 +98,7 @@ access(all) contract FlowFees { // The requiredBalance balance is defined as the minimum account balance + // maximum transaction fees (inclusion fees + execution fees at max execution effort). access(all) fun verifyPayersBalanceForTransactionExecution( - _ payerAcct: AuthAccount, + _ payerAcct: auth(BorrowValue) &Account, inclusionEffort: UFix64, maxExecutionEffort: UFix64, ): VerifyPayerBalanceResult { @@ -120,7 +120,7 @@ access(all) contract FlowFees { // Get the balance of the payers default vault. // In the edge case where the payer doesnt have a vault, treat the balance as 0. var balance = 0.0 - if let tokenVault = payerAcct.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) { + if let tokenVault = payerAcct.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) { balance = tokenVault.getBalance() } @@ -133,7 +133,7 @@ access(all) contract FlowFees { /// Called when a transaction is submitted to deduct the fee /// from the AuthAccount that submitted it - access(all) fun deductTransactionFee(_ acct: AuthAccount, inclusionEffort: UFix64, executionEffort: UFix64) { + access(all) fun deductTransactionFee(_ acct: auth(BorrowValue) &Account, inclusionEffort: UFix64, executionEffort: UFix64) { var feeAmount = self.computeFees(inclusionEffort: inclusionEffort, executionEffort: executionEffort) if feeAmount == UFix64(0) { @@ -142,7 +142,7 @@ access(all) contract FlowFees { return } - let tokenVault = acct.borrow(from: /storage/flowTokenVault) + let tokenVault = acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Unable to borrow reference to the default token vault") @@ -163,13 +163,13 @@ access(all) contract FlowFees { } access(all) fun getFeeParameters(): FeeParameters { - return self.account.copy(from: /storage/FlowTxFeeParameters) ?? panic("Error getting tx fee parameters. They need to be initialized first!") + return self.account.storage.copy(from: /storage/FlowTxFeeParameters) ?? panic("Error getting tx fee parameters. They need to be initialized first!") } access(self) fun setFeeParameters(_ feeParameters: FeeParameters) { // empty storage before writing new FeeParameters to it - self.account.load(from: /storage/FlowTxFeeParameters) - self.account.save(feeParameters,to: /storage/FlowTxFeeParameters) + self.account.storage.load(from: /storage/FlowTxFeeParameters) + self.account.storage.save(feeParameters,to: /storage/FlowTxFeeParameters) emit FeeParametersChanged(surgeFactor: feeParameters.surgeFactor, inclusionEffortCost: feeParameters.inclusionEffortCost, executionEffortCost: feeParameters.executionEffortCost) } @@ -182,11 +182,11 @@ access(all) contract FlowFees { return totalFees } - init(adminAccount: AuthAccount) { + init(adminAccount: auth(SaveValue) &Account) { // Create a new FlowToken Vault and save it in storage self.vault <- FlowToken.createEmptyVault() as! @FlowToken.Vault let admin <- create Administrator() - adminAccount.save(<-admin, to: /storage/flowFeesAdmin) + adminAccount.storage.save(<-admin, to: /storage/flowFeesAdmin) } } \ No newline at end of file diff --git a/contracts/FlowServiceAccount.cdc b/contracts/FlowServiceAccount.cdc index 706df682a..85e44a1fd 100644 --- a/contracts/FlowServiceAccount.cdc +++ b/contracts/FlowServiceAccount.cdc @@ -25,33 +25,29 @@ access(all) contract FlowServiceAccount { access(contract) var accountCreators: {Address: Bool} /// Initialize an account with a FlowToken Vault and publish capabilities. - access(all) fun initDefaultToken(_ acct: AuthAccount) { + access(all) fun initDefaultToken(_ acct: auth(SaveValue, Capabilities) &Account) { // Create a new FlowToken Vault and save it in storage - acct.save(<-FlowToken.createEmptyVault(), to: /storage/flowTokenVault) + acct.storage.save(<-FlowToken.createEmptyVault(), to: /storage/flowTokenVault) // Create a public capability to the Vault that only exposes // the deposit function through the Receiver interface - acct.link<&FlowToken.Vault>( - /public/flowTokenReceiver, - target: /storage/flowTokenVault - ) + let receiverCapability = acct.capabilities.storage.issue<&FlowToken.Vault>(/storage/flowTokenVault) + acct.capabilities.publish(receiverCapability, at: /public/flowTokenReceiver) // Create a public capability to the Vault that only exposes // the balance field through the Balance interface - acct.link<&FlowToken.Vault>( - /public/flowTokenBalance, - target: /storage/flowTokenVault - ) + let balanceCapability = self.account.capabilities.storage.issue<&FlowToken.Vault>(/storage/flowTokenVault) + self.account.capabilities.publish(balanceCapability, at: /public/flowTokenBalance) } /// Get the default token balance on an account /// /// Returns 0 if the account has no default balance - access(all) fun defaultTokenBalance(_ acct: PublicAccount): UFix64 { + access(all) fun defaultTokenBalance(_ acct: &Account): UFix64 { var balance = 0.0 if let balanceRef = acct - .getCapability(/public/flowTokenBalance) - .borrow<&FlowToken.Vault>(){ + .capabilities.get<&FlowToken.Vault>(/public/flowTokenBalance)! + .borrow(){ balance = balanceRef.getBalance() } @@ -59,8 +55,8 @@ access(all) contract FlowServiceAccount { } /// Return a reference to the default token vault on an account - access(all) fun defaultTokenVault(_ acct: AuthAccount): auth(FungibleToken.Withdrawable) &FlowToken.Vault { - return acct.borrow(from: /storage/flowTokenVault) + access(all) fun defaultTokenVault(_ acct: auth(BorrowValue) &Account): auth(FungibleToken.Withdrawable) &FlowToken.Vault { + return acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Unable to borrow reference to the default token vault") } @@ -68,7 +64,7 @@ access(all) contract FlowServiceAccount { /// /// Called when a transaction is submitted to deduct the fee /// from the AuthAccount that submitted it - access(all) fun deductTransactionFee(_ acct: AuthAccount) { + access(all) fun deductTransactionFee(_ acct: auth(BorrowValue) &Account) { if self.transactionFee == UFix64(0) { return } @@ -86,7 +82,7 @@ access(all) contract FlowServiceAccount { /// - Deducts the account creation fee from a payer account. /// - Inits the default token. /// - Inits account storage capacity. - access(all) fun setupNewAccount(newAccount: AuthAccount, payer: AuthAccount) { + access(all) fun setupNewAccount(newAccount: auth(SaveValue, BorrowValue, Capabilities) &Account, payer: auth(BorrowValue) &Account) { if !FlowServiceAccount.isAccountCreator(payer.address) { panic("Account not authorized to create accounts") } @@ -119,7 +115,7 @@ access(all) contract FlowServiceAccount { /// Is true if new acconts can only be created by approved accounts `self.accountCreators` access(all) fun isAccountCreationRestricted(): Bool { - return self.account.copy(from: /storage/isAccountCreationRestricted) ?? false + return self.account.storage.copy(from: /storage/isAccountCreationRestricted) ?? false } // Authorization resource to change the fields of the contract @@ -130,19 +126,19 @@ access(all) contract FlowServiceAccount { // Gets Execution Effort Weights from the service account's storage access(all) fun getExecutionEffortWeights(): {UInt64: UInt64} { - return self.account.copy<{UInt64: UInt64}>(from: /storage/executionEffortWeights) + return self.account.storage.copy<{UInt64: UInt64}>(from: /storage/executionEffortWeights) ?? panic("execution effort weights not set yet") } // Gets Execution Memory Weights from the service account's storage access(all) fun getExecutionMemoryWeights(): {UInt64: UInt64} { - return self.account.copy<{UInt64: UInt64}>(from: /storage/executionMemoryWeights) + return self.account.storage.copy<{UInt64: UInt64}>(from: /storage/executionMemoryWeights) ?? panic("execution memory weights not set yet") } // Gets Execution Memory Limit from the service account's storage access(all) fun getExecutionMemoryLimit(): UInt64 { - return self.account.copy(from: /storage/executionMemoryLimit) + return self.account.storage.copy(from: /storage/executionMemoryLimit) ?? panic("execution memory limit not set yet") } @@ -183,8 +179,8 @@ access(all) contract FlowServiceAccount { access(all) fun setIsAccountCreationRestricted(_ enabled: Bool) { let path = /storage/isAccountCreationRestricted - let oldValue = FlowServiceAccount.account.load(from: path) - FlowServiceAccount.account.save(enabled, to: path) + let oldValue = FlowServiceAccount.account.storage.load(from: path) + FlowServiceAccount.account.storage.save(enabled, to: path) if enabled != oldValue { emit IsAccountCreationRestrictedUpdated(isRestricted: enabled) } @@ -200,6 +196,6 @@ access(all) contract FlowServiceAccount { let admin <- create Administrator() admin.addAccountCreator(self.account.address) - self.account.save(<-admin, to: /storage/flowServiceAdmin) + self.account.storage.save(<-admin, to: /storage/flowServiceAdmin) } } diff --git a/contracts/FlowStorageFees.cdc b/contracts/FlowStorageFees.cdc index 63b389a9b..7285939db 100644 --- a/contracts/FlowStorageFees.cdc +++ b/contracts/FlowStorageFees.cdc @@ -66,7 +66,7 @@ access(all) contract FlowStorageFees { access(all) fun calculateAccountCapacity(_ accountAddress: Address): UFix64 { var balance = 0.0 if let balanceRef = getAccount(accountAddress) - .getCapability<&FlowToken.Vault>(/public/flowTokenBalance)! + .capabilities.get<&FlowToken.Vault>(/public/flowTokenBalance)! .borrow() { balance = balanceRef.getBalance() } @@ -93,7 +93,7 @@ access(all) contract FlowStorageFees { for accountAddress in accountAddresses { var balance = 0.0 if let balanceRef = getAccount(accountAddress) - .getCapability<&FlowToken.Vault>(/public/flowTokenBalance)! + .capabilities.get<&FlowToken.Vault>(/public/flowTokenBalance)! .borrow() { if accountAddress == payer { // if the account is the payer, deduct the maximum possible transaction fees from the balance @@ -156,8 +156,8 @@ access(all) contract FlowStorageFees { let acct = getAccount(accountAddress) var balance = 0.0 if let balanceRef = acct - .getCapability(/public/flowTokenBalance) - .borrow<&FlowToken.Vault>() { + .capabilities.get<&FlowToken.Vault>(/public/flowTokenBalance)! + .borrow() { balance = balanceRef.getBalance() } @@ -173,7 +173,7 @@ access(all) contract FlowStorageFees { /// The reserved balance is at least the minimum storage reservation. access(all) view fun defaultTokenReservedBalance(_ accountAddress: Address): UFix64 { let acct = getAccount(accountAddress) - var reserved = self.storageCapacityToFlow(self.convertUInt64StorageBytesToUFix64Megabytes(acct.storageUsed)) + var reserved = self.storageCapacityToFlow(self.convertUInt64StorageBytesToUFix64Megabytes(acct.storage.used)) // at least self.minimumStorageReservation should be reserved if reserved < self.minimumStorageReservation { reserved = self.minimumStorageReservation @@ -187,7 +187,7 @@ access(all) contract FlowStorageFees { self.minimumStorageReservation = 0.0 // or 0 kb of minimum storage reservation let admin <- create Administrator() - self.account.save(<-admin, to: /storage/storageFeesAdmin) + self.account.storage.save(<-admin, to: /storage/storageFeesAdmin) } } \ No newline at end of file diff --git a/contracts/FlowToken.cdc b/contracts/FlowToken.cdc index 78b81d146..760e39f09 100644 --- a/contracts/FlowToken.cdc +++ b/contracts/FlowToken.cdc @@ -284,7 +284,7 @@ access(all) contract FlowToken: ViewResolver { /// Gets the Flow Logo XML URI from storage access(all) fun getLogoURI(): String { - return FlowToken.account.copy(from: /storage/flowTokenLogoURI) ?? "" + return FlowToken.account.storage.copy(from: /storage/flowTokenLogoURI) ?? "" } init() { @@ -297,26 +297,22 @@ access(all) contract FlowToken: ViewResolver { // Example of how to resolve a metadata view for a Vault let ftView = vault.resolveView(Type()) - self.account.save(<-vault, to: /storage/flowTokenVault) + self.account.storage.save(<-vault, to: /storage/flowTokenVault) // Create a public capability to the stored Vault that only exposes // the `deposit` method through the `Receiver` interface // - self.account.link<&FlowToken.Vault>( - /public/flowTokenReceiver, - target: /storage/flowTokenVault - ) + let receiverCapability = self.account.capabilities.storage.issue<&FlowToken.Vault>(/storage/flowTokenVault) + self.account.capabilities.publish(receiverCapability, at: /public/flowTokenReceiver) // Create a public capability to the stored Vault that only exposes // the `balance` field through the `Balance` interface // - self.account.link<&FlowToken.Vault>( - /public/flowTokenBalance, - target: /storage/flowTokenVault - ) + let balanceCapability = self.account.capabilities.storage.issue<&FlowToken.Vault>(/storage/flowTokenVault) + self.account.capabilities.publish(balanceCapability, at: /public/flowTokenBalance) let admin <- create Administrator() - self.account.save(<-admin, to: /storage/flowTokenAdmin) + self.account.storage.save(<-admin, to: /storage/flowTokenAdmin) // Emit an event that shows that the contract was initialized emit TokensInitialized(initialSupply: self.totalSupply) diff --git a/lib/go/contracts/contracts.go b/lib/go/contracts/contracts.go index d5b770287..f43ea7fd8 100644 --- a/lib/go/contracts/contracts.go +++ b/lib/go/contracts/contracts.go @@ -142,7 +142,7 @@ func FlowToken(fungibleTokenAddress, fungibleTokenMVAddress, metadataViewsAddres code = strings.ReplaceAll( code, "init()", - "init(adminAccount: AuthAccount)", + "init(adminAccount: auth(Storage, Capabilities) &Account)", ) return []byte(code) @@ -414,14 +414,14 @@ func TestFlowFees(fungibleTokenAddress, flowTokenAddress, storageFeesAddress str code = strings.ReplaceAll( code, - "init(adminAccount: AuthAccount)", + "init(adminAccount: &Account)", "init()", ) code = strings.ReplaceAll( code, "adminAccount.save(<-admin, to: /storage/flowFeesAdmin)", - "self.account.save(<-admin, to: /storage/flowFeesAdmin)", + "self.account.storage.save(<-admin, to: /storage/flowFeesAdmin)", ) return []byte(code) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index d0fd0d3b8..3455fbae8 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -45,4 +45,4 @@ require ( gopkg.in/yaml.v3 v3.0.1 // indirect ) -replace github.com/onflow/flow-ft/lib/go/contracts => ../../../../../flow-ft/lib/go/contracts +replace github.com/onflow/flow-ft/lib/go/contracts => ../../../../flow-ft/lib/go/contracts diff --git a/lib/go/test/flow_epoch_test.go b/lib/go/test/flow_epoch_test.go index b0e077ebc..b898c07aa 100644 --- a/lib/go/test/flow_epoch_test.go +++ b/lib/go/test/flow_epoch_test.go @@ -516,7 +516,7 @@ func TestEpochAdvance(t *testing.T) { assert.Equal(t, cadence.NewBool(true), result) result = executeScriptAndCheck(t, b, templates.GenerateGetConsensusNodesScript(env), nil) - assert.Equal(t, cadence.NewArray(dkgIDs).WithType(cadence.NewVariableSizedArrayType(cadence.NewStringType())), result) + assert.Equal(t, cadence.NewArray(dkgIDs).WithType(cadence.NewVariableSizedArrayType(cadence.StringType)), result) result = executeScriptAndCheck(t, b, templates.GenerateGetDKGFinalSubmissionsScript(env), nil) assert.Equal(t, 0, len(result.(cadence.Array).Values)) From 722ec7b2cd96fb34a89fe05afb159174c7c17398 Mon Sep 17 00:00:00 2001 From: Supun Setunga Date: Mon, 11 Sep 2023 14:29:03 -0700 Subject: [PATCH 036/160] Update more contracts --- contracts/FlowServiceAccount.cdc | 4 ++-- contracts/FlowToken.cdc | 1 + contracts/epochs/FlowClusterQC.cdc | 2 +- contracts/testContracts/TestFlowIDTableStaking.cdc | 8 ++++---- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/contracts/FlowServiceAccount.cdc b/contracts/FlowServiceAccount.cdc index 85e44a1fd..b9d8b1a6e 100644 --- a/contracts/FlowServiceAccount.cdc +++ b/contracts/FlowServiceAccount.cdc @@ -36,8 +36,8 @@ access(all) contract FlowServiceAccount { // Create a public capability to the Vault that only exposes // the balance field through the Balance interface - let balanceCapability = self.account.capabilities.storage.issue<&FlowToken.Vault>(/storage/flowTokenVault) - self.account.capabilities.publish(balanceCapability, at: /public/flowTokenBalance) + let balanceCapability = acct.capabilities.storage.issue<&FlowToken.Vault>(/storage/flowTokenVault) + acct.capabilities.publish(balanceCapability, at: /public/flowTokenBalance) } /// Get the default token balance on an account diff --git a/contracts/FlowToken.cdc b/contracts/FlowToken.cdc index 760e39f09..670dfb8b5 100644 --- a/contracts/FlowToken.cdc +++ b/contracts/FlowToken.cdc @@ -316,5 +316,6 @@ access(all) contract FlowToken: ViewResolver { // Emit an event that shows that the contract was initialized emit TokensInitialized(initialSupply: self.totalSupply) + } } diff --git a/contracts/epochs/FlowClusterQC.cdc b/contracts/epochs/FlowClusterQC.cdc index 9e178a58e..8f8efda74 100644 --- a/contracts/epochs/FlowClusterQC.cdc +++ b/contracts/epochs/FlowClusterQC.cdc @@ -456,6 +456,6 @@ access(all) contract FlowClusterQC { self.voterClaimed = {} self.nodeCluster = {} - self.account.save(<-create Admin(), to: self.AdminStoragePath) + self.account.storage.save(<-create Admin(), to: self.AdminStoragePath) } } \ No newline at end of file diff --git a/contracts/testContracts/TestFlowIDTableStaking.cdc b/contracts/testContracts/TestFlowIDTableStaking.cdc index ac6e728a7..0ba6a4758 100644 --- a/contracts/testContracts/TestFlowIDTableStaking.cdc +++ b/contracts/testContracts/TestFlowIDTableStaking.cdc @@ -144,7 +144,7 @@ access(all) contract FlowIDTableStaking { /// Withdraw tokens from the unstaked bucket access(all) fun withdrawUnstakedTokens(amount: UFix64): @{FungibleToken.Vault} { - let flowTokenMinter = FlowIDTableStaking.account.borrow<&FlowToken.Minter>(from: /storage/flowTokenMinter) + let flowTokenMinter = FlowIDTableStaking.account.storage.borrow<&FlowToken.Minter>(from: /storage/flowTokenMinter) ?? panic("Could not borrow minter reference") return <- flowTokenMinter.mintTokens(amount: amount) @@ -153,7 +153,7 @@ access(all) contract FlowIDTableStaking { /// Withdraw tokens from the rewarded bucket access(all) fun withdrawRewardedTokens(amount: UFix64): @{FungibleToken.Vault} { - let flowTokenMinter = FlowIDTableStaking.account.borrow<&FlowToken.Minter>(from: /storage/flowTokenMinter) + let flowTokenMinter = FlowIDTableStaking.account.storage.borrow<&FlowToken.Minter>(from: /storage/flowTokenMinter) ?? panic("Could not borrow minter reference") return <- flowTokenMinter.mintTokens(amount: amount) @@ -224,7 +224,7 @@ access(all) contract FlowIDTableStaking { /// Withdraw tokens from the unstaked bucket access(all) fun withdrawUnstakedTokens(amount: UFix64): @{FungibleToken.Vault} { - let flowTokenMinter = FlowIDTableStaking.account.borrow<&FlowToken.Minter>(from: /storage/flowTokenMinter) + let flowTokenMinter = FlowIDTableStaking.account.storage.borrow<&FlowToken.Minter>(from: /storage/flowTokenMinter) ?? panic("Could not borrow minter reference") return <- flowTokenMinter.mintTokens(amount: amount) @@ -232,7 +232,7 @@ access(all) contract FlowIDTableStaking { /// Withdraw tokens from the rewarded bucket access(all) fun withdrawRewardedTokens(amount: UFix64): @{FungibleToken.Vault} { - let flowTokenMinter = FlowIDTableStaking.account.borrow<&FlowToken.Minter>(from: /storage/flowTokenMinter) + let flowTokenMinter = FlowIDTableStaking.account.storage.borrow<&FlowToken.Minter>(from: /storage/flowTokenMinter) ?? panic("Could not borrow minter reference") return <- flowTokenMinter.mintTokens(amount: amount) From 9564e5d2e06cfa0c50936c681eba42c689f11e0a Mon Sep 17 00:00:00 2001 From: Supun Setunga Date: Mon, 11 Sep 2023 15:39:02 -0700 Subject: [PATCH 037/160] Update contracts --- contracts/epochs/FlowEpoch.cdc | 51 ++++++++----------- .../testContracts/TestFlowIDTableStaking.cdc | 2 +- 2 files changed, 22 insertions(+), 31 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index ddd95d5aa..8355df42c 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -260,7 +260,10 @@ access(all) contract FlowEpoch { /// Epoch Metadata is stored in account storage so the growing dictionary /// does not have to be loaded every time the contract is loaded access(all) fun getEpochMetadata(_ epochCounter: UInt64): EpochMetadata? { - if let metadataDictionary = self.account.borrow<&{UInt64: EpochMetadata}>(from: self.metadataStoragePath) { + // TODO: Make this `borrow`, when Cadence supports dereferencing. + // So the overhead of copying the entire dictionary would be avoided. + // Instead borrow, and get a dereference-copy of the element. + if let metadataDictionary = self.account.storage.copy<{UInt64: EpochMetadata}>(from: self.metadataStoragePath) { return metadataDictionary[epochCounter] } return nil @@ -275,7 +278,7 @@ access(all) contract FlowEpoch { newMetadata.counter <= self.proposedEpochCounter()): "Cannot modify epoch metadata from epochs after the proposed epoch or before the previous epoch" } - if let metadataDictionary = self.account.borrow<&{UInt64: EpochMetadata}>(from: self.metadataStoragePath) { + if let metadataDictionary = self.account.storage.borrow(from: self.metadataStoragePath) { if let metadata = metadataDictionary[newMetadata.counter] { assert ( metadata.counter == newMetadata.counter, @@ -355,8 +358,8 @@ access(all) contract FlowEpoch { // Enable or disable automatic rewards calculations and payments access(all) fun updateAutomaticRewardsEnabled(_ enabled: Bool) { - FlowEpoch.account.load(from: /storage/flowAutomaticRewardsEnabled) - FlowEpoch.account.save(enabled, to: /storage/flowAutomaticRewardsEnabled) + FlowEpoch.account.storage.load(from: /storage/flowAutomaticRewardsEnabled) + FlowEpoch.account.storage.save(enabled, to: /storage/flowAutomaticRewardsEnabled) } /// Ends the currently active epoch and starts a new one with the provided configuration. @@ -696,7 +699,7 @@ access(all) contract FlowEpoch { /// Borrow a reference to the FlowIDTableStaking Admin resource access(contract) view fun borrowStakingAdmin(): &FlowIDTableStaking.Admin { - let adminCapability = self.account.copy(from: /storage/flowStakingAdminEpochOperations) + let adminCapability = self.account.storage.copy(from: /storage/flowStakingAdminEpochOperations) ?? panic("Could not get capability from account storage") // borrow a reference to the staking admin object @@ -708,7 +711,7 @@ access(all) contract FlowEpoch { /// Borrow a reference to the ClusterQCs Admin resource access(contract) fun borrowClusterQCAdmin(): &FlowClusterQC.Admin { - let adminCapability = self.account.copy(from: /storage/flowQCAdminEpochOperations) + let adminCapability = self.account.storage.copy(from: /storage/flowQCAdminEpochOperations) ?? panic("Could not get capability from account storage") // borrow a reference to the QC admin object @@ -720,7 +723,7 @@ access(all) contract FlowEpoch { /// Borrow a reference to the DKG Admin resource access(contract) fun borrowDKGAdmin(): &FlowDKG.Admin { - let adminCapability = self.account.copy(from: /storage/flowDKGAdminEpochOperations) + let adminCapability = self.account.storage.copy(from: /storage/flowDKGAdminEpochOperations) ?? panic("Could not get capability from account storage") // borrow a reference to the dkg admin object @@ -842,7 +845,7 @@ access(all) contract FlowEpoch { } access(all) fun automaticRewardsEnabled(): Bool { - return self.account.copy(from: /storage/flowAutomaticRewardsEnabled) ?? false + return self.account.storage.copy(from: /storage/flowAutomaticRewardsEnabled) ?? false } /// Gets the current amount of bonus tokens left to be destroyed @@ -853,7 +856,7 @@ access(all) contract FlowEpoch { /// Eventually, all the bonus tokens will be destroyed and /// this will not be needed anymore access(all) fun getBonusTokens(): UFix64 { - return self.account.copy(from: /storage/FlowBonusTokenAmount) + return self.account.storage.copy(from: /storage/FlowBonusTokenAmount) ?? 0.0 } @@ -886,40 +889,28 @@ access(all) contract FlowEpoch { let epochMetadata: {UInt64: EpochMetadata} = {} - self.account.save(epochMetadata, to: self.metadataStoragePath) + self.account.storage.save(epochMetadata, to: self.metadataStoragePath) - self.account.save(<-create Admin(), to: self.adminStoragePath) - self.account.save(<-create Heartbeat(), to: self.heartbeatStoragePath) + self.account.storage.save(<-create Admin(), to: self.adminStoragePath) + self.account.storage.save(<-create Heartbeat(), to: self.heartbeatStoragePath) // Create a private capability to the staking admin and store it in a different path // On Mainnet and Testnet, the Admin resources are stored in the service account, rather than here. // As a default, we store both the admin resources, and the capabilities linking to those resources, in the same account. // This ensures that this constructor produces a state which is compatible with the system chunk // so that newly created networks are functional without additional resource manipulation. - let stakingAdminCapability = self.account.link<&FlowIDTableStaking.Admin>( - /private/flowStakingAdminEpochOperations, - target: FlowIDTableStaking.StakingAdminStoragePath - ) ?? panic("Could not link Flow staking admin capability") - - self.account.save>(stakingAdminCapability, to: /storage/flowStakingAdminEpochOperations) + let stakingAdminCapability = self.account.capabilities.storage.issue<&FlowIDTableStaking.Admin>(FlowIDTableStaking.StakingAdminStoragePath) + self.account.storage.save>(stakingAdminCapability, to: /storage/flowStakingAdminEpochOperations) // Create a private capability to the qc admin // and store it in a different path - let qcAdminCapability = self.account.link<&FlowClusterQC.Admin>( - /private/flowQCAdminEpochOperations, - target: FlowClusterQC.AdminStoragePath - ) ?? panic("Could not link Flow QC admin capability") - - self.account.save>(qcAdminCapability, to: /storage/flowQCAdminEpochOperations) + let qcAdminCapability = self.account.capabilities.storage.issue<&FlowClusterQC.Admin>(FlowClusterQC.AdminStoragePath) + self.account.storage.save>(qcAdminCapability, to: /storage/flowQCAdminEpochOperations) // Create a private capability to the dkg admin // and store it in a different path - let dkgAdminCapability = self.account.link<&FlowDKG.Admin>( - /private/flowDKGAdminEpochOperations, - target: FlowDKG.AdminStoragePath - ) ?? panic("Could not link Flow DKG admin capability") - - self.account.save>(dkgAdminCapability, to: /storage/flowDKGAdminEpochOperations) + let dkgAdminCapability = self.account.capabilities.storage.issue<&FlowDKG.Admin>(FlowDKG.AdminStoragePath) + self.account.storage.save>(dkgAdminCapability, to: /storage/flowDKGAdminEpochOperations) self.borrowStakingAdmin().startStakingAuction() diff --git a/contracts/testContracts/TestFlowIDTableStaking.cdc b/contracts/testContracts/TestFlowIDTableStaking.cdc index 0ba6a4758..85fd1d041 100644 --- a/contracts/testContracts/TestFlowIDTableStaking.cdc +++ b/contracts/testContracts/TestFlowIDTableStaking.cdc @@ -266,7 +266,7 @@ access(all) contract FlowIDTableStaking { /// Gets the minimum stake requirement for delegators access(all) fun getDelegatorMinimumStakeRequirement(): UFix64 { - return self.account.copy(from: /storage/delegatorStakingMinimum) + return self.account.storage.copy(from: /storage/delegatorStakingMinimum) ?? 0.0 } From 81aa739fd9a3a41d1f1b2ebadd8511742078ac7f Mon Sep 17 00:00:00 2001 From: Supun Setunga Date: Mon, 11 Sep 2023 17:47:02 -0700 Subject: [PATCH 038/160] Update contarcts and transactions --- contracts/FlowServiceAccount.cdc | 6 +- contracts/FlowStorageFees.cdc | 25 +-- contracts/NodeVersionBeacon.cdc | 4 +- lib/go/contracts/go.mod | 6 +- lib/go/contracts/go.sum | 6 + lib/go/templates/internal/assets/assets.go | 162 +++++++++--------- .../admin/capability_end_epoch.cdc | 8 +- .../admin/transfer_fees_admin.cdc | 8 +- 8 files changed, 118 insertions(+), 107 deletions(-) diff --git a/contracts/FlowServiceAccount.cdc b/contracts/FlowServiceAccount.cdc index b9d8b1a6e..32a4e38a5 100644 --- a/contracts/FlowServiceAccount.cdc +++ b/contracts/FlowServiceAccount.cdc @@ -45,11 +45,11 @@ access(all) contract FlowServiceAccount { /// Returns 0 if the account has no default balance access(all) fun defaultTokenBalance(_ acct: &Account): UFix64 { var balance = 0.0 - if let balanceRef = acct - .capabilities.get<&FlowToken.Vault>(/public/flowTokenBalance)! - .borrow(){ + if let balanceCap = acct.capabilities.get<&FlowToken.Vault>(/public/flowTokenBalance) { + if let balanceRef = balanceCap.borrow() { balance = balanceRef.getBalance() } + } return balance } diff --git a/contracts/FlowStorageFees.cdc b/contracts/FlowStorageFees.cdc index 7285939db..957732039 100644 --- a/contracts/FlowStorageFees.cdc +++ b/contracts/FlowStorageFees.cdc @@ -65,10 +65,12 @@ access(all) contract FlowStorageFees { /// If the account has no default balance it is counted as a balance of 0.0 FLOW access(all) fun calculateAccountCapacity(_ accountAddress: Address): UFix64 { var balance = 0.0 - if let balanceRef = getAccount(accountAddress) - .capabilities.get<&FlowToken.Vault>(/public/flowTokenBalance)! - .borrow() { + let acct = getAccount(accountAddress) + + if let balanceCap = acct.capabilities.get<&FlowToken.Vault>(/public/flowTokenBalance) { + if let balanceRef = balanceCap.borrow() { balance = balanceRef.getBalance() + } } return self.accountBalanceToAccountStorageCapacity(balance) @@ -92,15 +94,17 @@ access(all) contract FlowStorageFees { let capacities: [UFix64] = [] for accountAddress in accountAddresses { var balance = 0.0 - if let balanceRef = getAccount(accountAddress) - .capabilities.get<&FlowToken.Vault>(/public/flowTokenBalance)! - .borrow() { + let acct = getAccount(accountAddress) + + if let balanceCap = acct.capabilities.get<&FlowToken.Vault>(/public/flowTokenBalance) { + if let balanceRef = balanceCap.borrow() { if accountAddress == payer { // if the account is the payer, deduct the maximum possible transaction fees from the balance balance = balanceRef.getBalance().saturatingSubtract(maxTxFees) } else { balance = balanceRef.getBalance() } + } } capacities.append(self.accountBalanceToAccountStorageCapacity(balance)) @@ -155,10 +159,11 @@ access(all) contract FlowStorageFees { //get balance of account let acct = getAccount(accountAddress) var balance = 0.0 - if let balanceRef = acct - .capabilities.get<&FlowToken.Vault>(/public/flowTokenBalance)! - .borrow() { - balance = balanceRef.getBalance() + + if let balanceCap = acct.capabilities.get<&FlowToken.Vault>(/public/flowTokenBalance) { + if let balanceRef = balanceCap.borrow() { + balance = balanceRef.getBalance() + } } // get how much should be reserved for storage diff --git a/contracts/NodeVersionBeacon.cdc b/contracts/NodeVersionBeacon.cdc index 8c7c1154b..9dcea84b4 100644 --- a/contracts/NodeVersionBeacon.cdc +++ b/contracts/NodeVersionBeacon.cdc @@ -511,8 +511,8 @@ access(all) contract NodeVersionBeacon { // emit the event on the first heartbeat to send the zero version self.emitEventOnNextHeartbeat = true - self.account.save(<-create Admin(), to: self.AdminStoragePath) - self.account.save(<-create Heartbeat(), to: self.HeartbeatStoragePath) + self.account.storage.save(<-create Admin(), to: self.AdminStoragePath) + self.account.storage.save(<-create Heartbeat(), to: self.HeartbeatStoragePath) } } \ No newline at end of file diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 3455fbae8..b47696ca4 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -4,9 +4,9 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230818200853-ab1b03e98a95 + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230906165834-daca6600a634 github.com/onflow/flow-go-sdk v0.41.7-stable-cadence - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230818200521-3acffe2472a3 + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230906170014-ac628577704c github.com/stretchr/testify v1.8.2 ) @@ -45,4 +45,4 @@ require ( gopkg.in/yaml.v3 v3.0.1 // indirect ) -replace github.com/onflow/flow-ft/lib/go/contracts => ../../../../flow-ft/lib/go/contracts +//replace github.com/onflow/flow-ft/lib/go/contracts => ../../../../flow-ft/lib/go/contracts diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index b1be73f70..f24fa3f6b 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -904,6 +904,10 @@ github.com/onflow/cadence v0.39.12 h1:bb3UdOe7nClUcaLbxSWGLSIJKuCrivpgxhPow99ikv github.com/onflow/cadence v0.39.12/go.mod h1:OIJLyVBPa339DCBQXBfGaorT4tBjQh9gSKe+ZAIyyh0= github.com/onflow/cadence v0.39.13-stable-cadence h1:A08/gb4xSsgRjuXo9fkFFvtG7dIkxxkDCNk/VdWrMp4= github.com/onflow/cadence v0.39.13-stable-cadence/go.mod h1:SxT8/IEkS1drFj2ofUEK9S6KyJ5GQbrm0LX4EFCp/7Q= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230818200853-ab1b03e98a95 h1:mtQIjtnUQ2axR74YRMSG4rYo5PzWIbToGCdbu0oZjGs= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230818200853-ab1b03e98a95/go.mod h1:kTMFIySzEJJeupk+7EmXs0EJ6CBWY/MV9fv9iYQk+RU= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230906165834-daca6600a634 h1:9qHRlxEK3Q/qPEyzANXIBM8w5UIVveUqdG2gWH7HBOs= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230906165834-daca6600a634/go.mod h1:B27qWoolugkAEGuT9VJ7tn7UsOMI88ihHqcpEMqoncc= github.com/onflow/flow-go-sdk v0.24.0/go.mod h1:IoptMLPyFXWvyd9yYA6/4EmSeeozl6nJoIv4FaEMg74= github.com/onflow/flow-go-sdk v0.41.6 h1:x5HhmRDvbCWXRCzHITJxOp0Komq5JJ9zphoR2u6NOCg= github.com/onflow/flow-go-sdk v0.41.6/go.mod h1:AYypQvn6ecMONhF3M1vBOUX9b4oHKFWkkrw8bO4VEik= @@ -932,6 +936,8 @@ github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230726191152-4293bb676808 github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230726191152-4293bb676808/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230818200521-3acffe2472a3 h1:JNDJQI1ID8qLvv8kynPkrUNo34II5RB/aw6PN9dpMV0= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230818200521-3acffe2472a3/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230906170014-ac628577704c h1:0U7FvQQWAk+0swHpOC6EzSbPDacYmqEMbblrBcbx+og= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230906170014-ac628577704c/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow/protobuf/go/flow v0.2.2/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/sdks v0.5.0/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index edfe64b13..7119a954e 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -71,34 +71,34 @@ // flowToken/scripts/get_supply.cdc (208B) // flowToken/setup_account.cdc (1.137kB) // flowToken/transfer_tokens.cdc (1.324kB) -// idTableStaking/admin/add_approved_and_limits.cdc (1.604kB) -// idTableStaking/admin/add_approved_nodes.cdc (1.032kB) -// idTableStaking/admin/capability_end_epoch.cdc (1.299kB) -// idTableStaking/admin/change_candidate_limits.cdc (704B) -// idTableStaking/admin/change_cut.cdc (642B) -// idTableStaking/admin/change_del_minimums.cdc (667B) -// idTableStaking/admin/change_minimums.cdc (795B) -// idTableStaking/admin/change_payout.cdc (602B) -// idTableStaking/admin/end_epoch.cdc (872B) -// idTableStaking/admin/end_epoch_change_payout.cdc (938B) -// idTableStaking/admin/end_staking.cdc (675B) -// idTableStaking/admin/move_tokens.cdc (557B) -// idTableStaking/admin/pay_rewards.cdc (627B) -// idTableStaking/admin/remove_approved_nodes.cdc (988B) -// idTableStaking/admin/remove_invalid_nodes.cdc (652B) -// idTableStaking/admin/remove_node.cdc (606B) -// idTableStaking/admin/scale_rewards_test.cdc (716B) -// idTableStaking/admin/set_approved_nodes.cdc (605B) -// idTableStaking/admin/set_claimed.cdc (610B) -// idTableStaking/admin/set_node_weight.cdc (627B) -// idTableStaking/admin/set_non_operational.cdc (762B) -// idTableStaking/admin/set_slot_limits.cdc (1.312kB) -// idTableStaking/admin/start_staking.cdc (574B) +// idTableStaking/admin/add_approved_and_limits.cdc (1.627kB) +// idTableStaking/admin/add_approved_nodes.cdc (1.055kB) +// idTableStaking/admin/capability_end_epoch.cdc (1.296kB) +// idTableStaking/admin/change_candidate_limits.cdc (727B) +// idTableStaking/admin/change_cut.cdc (665B) +// idTableStaking/admin/change_del_minimums.cdc (690B) +// idTableStaking/admin/change_minimums.cdc (818B) +// idTableStaking/admin/change_payout.cdc (625B) +// idTableStaking/admin/end_epoch.cdc (895B) +// idTableStaking/admin/end_epoch_change_payout.cdc (961B) +// idTableStaking/admin/end_staking.cdc (698B) +// idTableStaking/admin/move_tokens.cdc (580B) +// idTableStaking/admin/pay_rewards.cdc (650B) +// idTableStaking/admin/remove_approved_nodes.cdc (1.011kB) +// idTableStaking/admin/remove_invalid_nodes.cdc (675B) +// idTableStaking/admin/remove_node.cdc (629B) +// idTableStaking/admin/scale_rewards_test.cdc (713B) +// idTableStaking/admin/set_approved_nodes.cdc (628B) +// idTableStaking/admin/set_claimed.cdc (633B) +// idTableStaking/admin/set_node_weight.cdc (650B) +// idTableStaking/admin/set_non_operational.cdc (785B) +// idTableStaking/admin/set_slot_limits.cdc (1.335kB) +// idTableStaking/admin/start_staking.cdc (597B) // idTableStaking/admin/transfer_admin.cdc (728B) -// idTableStaking/admin/transfer_fees_admin.cdc (409B) -// idTableStaking/admin/transfer_minter_deploy.cdc (1.294kB) -// idTableStaking/admin/upgrade_set_claimed.cdc (666B) -// idTableStaking/admin/upgrade_staking.cdc (156B) +// idTableStaking/admin/transfer_fees_admin.cdc (403B) +// idTableStaking/admin/transfer_minter_deploy.cdc (1.34kB) +// idTableStaking/admin/upgrade_set_claimed.cdc (691B) +// idTableStaking/admin/upgrade_staking.cdc (159B) // idTableStaking/delegation/del_request_unstaking.cdc (647B) // idTableStaking/delegation/del_stake_new_tokens.cdc (1.021kB) // idTableStaking/delegation/del_stake_rewarded.cdc (653B) @@ -1774,7 +1774,7 @@ func flowtokenTransfer_tokensCdc() (*asset, error) { return a, nil } -var _idtablestakingAdminAdd_approved_and_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\xcf\x6b\xf3\x38\x10\x3d\xdb\x7f\xc5\x34\x87\x5d\x87\x5d\x12\x7a\x0d\x9b\x2d\x61\xc3\x82\xa1\x94\xa5\xe9\xad\xf4\xa0\x48\xe3\x58\xfb\x29\x1a\x23\x4d\xea\x96\x92\xff\xfd\x63\x64\x3b\x3f\x5a\x97\x4f\x17\x83\xf5\xe6\xcd\xf3\x9b\x37\xb6\xfb\x86\x02\xc3\xbf\x8e\xda\x72\xfd\xa4\xb6\x0e\x37\xac\x7e\x58\xbf\x83\x2a\xd0\x1e\x26\x5f\x2f\x26\x79\x3e\x9f\xcf\xe1\xa9\xb6\x11\x38\x28\x1f\x95\x66\x4b\x1e\x94\x31\x11\x3c\x19\x84\x72\x1d\x81\x09\xb8\x46\x70\x36\x32\x50\x05\xaa\x69\x02\xbd\xa2\x49\x80\x08\xd6\x27\x0e\x41\x94\x6b\x60\x61\x9f\x41\x7a\x55\x32\x28\x17\x09\xac\xd7\x01\x55\xc4\x08\xd1\x11\x83\xb3\x7b\xcb\x31\x21\xb6\xef\xa9\xce\x1f\xf6\x5b\x0c\xc2\xdd\x51\xb6\x35\x81\x0a\x28\x32\xd0\x08\xb0\xa3\xab\x40\xf9\x77\x41\x49\x8d\x68\xb0\xe6\xa4\x42\xb9\x80\xca\xbc\x03\xbe\x89\x4a\xeb\xaf\xf4\xfc\x09\x5c\xdb\xae\xe3\xe5\x57\xb6\xd6\x39\xf0\xc4\x10\xf0\x15\x03\x43\x61\x0d\xee\x1b\x62\xf4\x3c\xcd\xf3\x0b\x64\xe1\xb1\x5d\xf5\x5f\x5d\xae\xe3\x02\x9e\x37\x1c\xac\xdf\xbd\x4c\xe1\x23\xcf\x01\x00\xe6\x73\xb8\x27\xad\x1c\xbc\xaa\x60\xa5\x25\x54\x14\x40\x41\xc0\x0a\x03\x7a\x8d\x83\x89\xe5\x1a\xd2\x00\x60\x65\xf6\xd6\x03\x6d\xff\x47\xcd\x89\xc2\x21\x83\x92\x97\x8f\x58\x2d\xe0\xb7\xaf\xc3\x9a\xa5\x92\xae\x5f\x13\xb0\x51\x01\x0b\xa5\x35\x2f\x60\x75\xe0\x7a\xa5\x35\x1d\x3c\x8b\x22\xe8\x8f\x18\x4c\x21\x50\x3b\x26\x44\x7d\xee\x2f\x27\xa2\xab\x66\x83\x08\x58\x82\xd0\xcf\x3a\x8e\xbf\xbe\x55\xf4\x77\x21\xf1\x5a\x8c\xe4\x6e\xd6\x3f\x13\x6c\xc3\x14\xd4\x0e\xff\x53\x5c\x4f\x4f\x0d\xe5\xdc\xdd\x41\xa3\xbc\xd5\xc5\xe4\x1f\x3a\x38\x93\x26\xd2\xeb\xbe\x52\x1d\xfb\x30\x27\x7d\x93\x8e\xe3\xd8\xd9\x81\x6f\xa8\x0f\x8c\xf0\x91\x67\x99\xf8\x98\x52\x20\x8d\xcf\x43\x83\xe5\x98\xc0\x1d\xf2\x80\xb9\xb7\x91\x8b\x69\x9e\x65\xd9\x98\x20\x47\xca\x9c\x93\x2f\xab\x30\x99\xe6\x7d\x37\x49\xf5\x7d\x0a\xf5\xb7\x4d\x1e\xc9\xe1\xe6\x04\x2b\x52\xe9\x7c\x2e\x01\x4f\x99\xf6\xd8\x0e\xeb\x06\x6d\x6d\x75\x0d\x86\x30\xfa\xdf\x79\x3c\xd7\xbd\x8e\x24\xa3\x27\xf2\xe6\xb4\x66\x09\xa2\x95\x37\xd6\x28\xc6\x8e\xb7\xdb\xb9\x04\xbb\xd8\x41\xd9\xbf\xdb\x8e\x40\xe2\x8a\x4a\xd7\xa0\x29\x04\x8c\x0d\x79\x23\x5e\xa7\xe2\x6e\x0d\xb3\x4c\x30\x1e\xdb\x07\x32\x58\xae\x45\xcb\xf5\x5a\x24\xf7\x33\x5b\x8d\xb9\xff\x7c\xaa\x7b\x81\x9b\x25\x78\xeb\xfa\x9c\x66\x59\xa6\xc9\xb3\xf5\x07\x94\xea\xa3\x18\x93\x4c\x95\xce\xa5\xaf\x68\xdc\xd2\x87\xfe\xb6\x38\xf1\x26\x4b\xb3\xf3\x28\x9e\x07\x82\x59\x20\x87\x2f\xb0\x84\x6f\xef\x6e\xe0\x0f\xb8\x4d\xe5\xbf\x50\xbe\x04\x0e\x49\xe7\xb1\x9f\x5f\x44\xbe\x1c\x48\x17\x8c\x61\xc3\x0e\x5e\x7e\x32\x74\xf6\x23\xd9\x7f\x31\xea\x38\xbe\x77\xb3\xf8\x29\x94\x23\xaa\x86\x00\x6d\xc4\x29\x6c\xaf\x7e\xac\x59\xf6\x85\xee\x22\x7a\x67\x17\x16\x17\x8e\x0c\xdb\x74\xfc\x19\x00\x00\xff\xff\x98\x41\x97\x73\x44\x06\x00\x00" +var _idtablestakingAdminAdd_approved_and_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x4d\x8b\xe3\x46\x10\x3d\x4b\xbf\xa2\xd6\x87\x8d\x4c\x82\xcc\x5e\x4d\x9c\x65\x12\x13\x10\x0c\x4b\x58\x2f\xb9\x0c\x73\x68\x77\x97\xac\x4e\xda\x5d\xa2\xbb\x34\x9a\x61\xf0\x7f\x0f\xd5\x92\xfc\x31\xa3\x21\x7d\x11\xa8\x5f\xbd\x7a\x7a\xf5\x4a\xf6\xd8\x52\x60\xf8\xd3\x51\x5f\x6d\x7f\xa8\xbd\xc3\x1d\xab\x7f\xad\x3f\x40\x1d\xe8\x08\x8b\xf7\x17\x8b\x3c\x5f\xad\x56\xf0\xa3\xb1\x11\x38\x28\x1f\x95\x66\x4b\x1e\x94\x31\x11\x3c\x19\x84\x6a\x1b\x81\x09\xb8\x41\x70\x36\x32\x50\x0d\xaa\x6d\x03\x3d\xa1\x49\x80\x08\xd6\x27\x0e\x41\x54\x5b\x60\x61\x2f\x21\xbd\xaa\x18\x94\x8b\x04\xd6\xeb\x80\x2a\x62\x84\xe8\x88\xc1\xd9\xa3\xe5\x98\x10\xfb\x97\x54\xe7\xbb\xe3\x1e\x83\x70\x0f\x94\x7d\x43\xa0\x02\x8a\x0c\x34\x02\x1c\xe8\x6a\x50\xfe\x45\x50\x52\x23\x1a\xac\x39\xab\x50\x2e\xa0\x32\x2f\x80\xcf\xa2\xd2\xfa\x1b\x3d\xbf\x00\x37\x76\xe8\x78\xfd\x95\xbd\x75\x0e\x3c\x31\x04\x7c\xc2\xc0\x50\x58\x83\xc7\x96\x18\x3d\x2f\xf3\xfc\x0a\x59\x78\xec\xef\xc6\xaf\xae\xb6\x71\x0d\x0f\x3b\x0e\xd6\x1f\x1e\x97\xf0\x9a\xe7\x00\x00\xab\x15\xdc\x93\x56\x0e\x9e\x54\xb0\xd2\x12\x6a\x0a\xa0\x20\x60\x8d\x01\xbd\xc6\xc9\xc4\x6a\x0b\x69\x00\x70\x67\x8e\xd6\x03\xed\xff\x41\xcd\x89\xc2\x21\x83\x92\x97\xdf\xb1\x5e\xc3\xe7\xf7\xc3\x2a\x53\xc9\xd0\xaf\x0d\xd8\xaa\x80\x85\xd2\x9a\xd7\xa0\x3a\x6e\x8a\xdf\x29\x04\xea\xff\x56\xae\xc3\x25\x7c\xbe\xd3\x9a\x3a\xcf\x22\x10\xc6\x23\x7e\x27\xcc\x9c\x2e\xf5\x56\x8e\x9c\x88\xae\x2e\x27\x4d\xb0\x01\xe9\x56\x46\xa6\xa0\x0e\x58\x0e\x5c\xbf\x7e\x28\xf4\xb7\x42\x52\xb7\x9e\x89\x63\x39\x3e\x13\x6c\x37\xd0\xfd\xa5\xb8\x59\x9e\x1b\xcb\xf9\xfa\x15\x5a\xe5\xad\x2e\x16\x7f\x50\xe7\x4c\x1a\xd4\xa8\xff\x46\x7d\x1c\x33\x9e\x74\x2e\x06\x8e\xd3\xe0\x12\x3e\xa3\xee\x18\xe1\x35\xcf\x32\xb1\x37\x85\x43\x1a\x5f\x66\x09\x9b\x39\x81\x07\xe4\x09\x73\x6f\x23\x17\xcb\x3c\xcb\xb2\x39\x41\x8e\x94\xb9\x2c\x84\x6c\xc8\x62\x99\x8f\xdd\x24\xec\xf7\x29\xeb\x1f\x36\xf9\x4e\x0e\x77\x67\x58\x91\x4a\x57\x2b\xc9\x7d\x8a\xba\xc7\x7e\xda\x42\xe8\x1b\xab\x1b\x30\x84\xd1\xff\xc4\xf3\x71\x1f\x75\x24\x19\x23\x91\x37\xe7\xed\x4b\x10\xad\xbc\xb1\x46\x31\x0e\xbc\xc3\x2a\x26\xd8\xd5\x6a\xca\x5a\x7e\x19\x08\x24\xc5\xa8\x74\x03\x9a\x42\xc0\xd8\x92\x37\xe2\x75\x2a\x1e\xb6\x33\xcb\x04\xe3\xb1\xff\x46\x06\xab\xad\x68\xb9\xdd\x96\xe4\x7e\x66\xeb\x39\xf7\x1f\xce\x75\x8f\xf0\x69\x03\xde\xba\x31\xaf\x59\x96\x69\xf2\x6c\x7d\x87\x52\x7d\x12\x63\x92\xa9\xd2\xb9\xf2\x35\xcd\x5b\xfa\x6d\xbc\x2d\xce\xbc\xc9\xd2\xec\x32\x8a\x87\x89\xa0\x0c\xe4\xf0\x11\x36\xf0\xe1\xdd\x27\xf8\x19\xbe\xa4\xf2\xff\x51\xbe\x01\x0e\x49\xe7\x69\x9c\x5f\x44\xbe\x1e\xc8\x10\x8c\x69\xd3\x3a\x2f\xff\x1e\xba\xf8\x91\xec\xbf\x1a\x75\x9c\xdf\xbf\x32\xbe\x09\xe5\x8c\xaa\x29\x40\x3b\x71\x0a\xfb\x9b\xff\x6d\x96\xbd\xa3\xbb\x8a\xde\xc5\x85\xf5\x95\x23\xd3\x36\x9d\xfe\x0b\x00\x00\xff\xff\x32\x34\xbe\xa2\x5b\x06\x00\x00" func idtablestakingAdminAdd_approved_and_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -1790,11 +1790,11 @@ func idtablestakingAdminAdd_approved_and_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/add_approved_and_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0x6e, 0x10, 0x62, 0x34, 0x30, 0xc1, 0x28, 0x9e, 0xbd, 0xe5, 0x12, 0xcd, 0x2, 0xc8, 0x7c, 0x48, 0xd6, 0x35, 0xb8, 0x5f, 0xa2, 0x72, 0x0, 0x33, 0xa4, 0xda, 0xd6, 0xfe, 0x2c, 0xe8, 0x3b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x74, 0x9b, 0x7, 0xd2, 0x23, 0xf5, 0x4d, 0xf8, 0xe3, 0x52, 0xc4, 0xdc, 0x9, 0x87, 0x86, 0xbb, 0x4f, 0x41, 0x4d, 0x75, 0x63, 0xb1, 0xd1, 0x2f, 0x2b, 0x13, 0xa0, 0x8e, 0x65, 0x52, 0x18, 0xa4}} return a, nil } -var _idtablestakingAdminAdd_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x93\x41\x6b\xdb\x40\x10\x85\xcf\xd2\xaf\x78\xf8\xd0\xca\x50\xa4\xbb\xa9\x1b\x4c\x4d\xc1\x10\x4a\xa9\x73\x0b\x39\xac\xb5\x23\x6b\x5b\x79\x57\xec\x8e\xac\x84\xe0\xff\x5e\x66\x25\x19\x3b\x71\xc9\x5e\x04\xbb\x33\x6f\xde\xcc\x7c\x32\x87\xd6\x79\xc6\x8f\xc6\xf5\x9b\xf5\x83\xda\x35\xb4\x65\xf5\xd7\xd8\x3d\x2a\xef\x0e\x98\xbd\x7f\x98\xa5\x69\x51\xe0\xa1\x36\x01\xec\x95\x0d\xaa\x64\xe3\x2c\x94\xd6\x01\xd6\x69\xc2\x66\x1d\xc0\x0e\x5c\x13\x1a\x13\x18\xae\x82\x6a\x5b\xef\x8e\xa4\x63\x40\x80\xb1\x22\x21\x01\x9b\x35\x58\xb4\x73\xc8\xcd\xa6\x82\xb2\x2f\x92\x20\x6f\x92\x62\xf4\x39\x49\x35\x9e\x94\x7e\x01\x3d\x8b\xa8\xb1\x57\xf9\x5f\xc0\xb5\x09\x51\xf5\xc2\x53\x6f\x9a\x06\xd6\x31\x3c\x1d\xc9\x33\x32\xa3\xe9\xd0\x3a\x26\xcb\xf3\x34\xbd\x88\xcc\x8c\x0e\x0b\x3c\x6e\xd9\x1b\xbb\x7f\x9a\xe3\x35\x4d\x01\xa0\x28\x70\xef\x4a\xd5\xe0\xa8\xbc\x91\x32\xa8\x9c\x87\x82\xa7\x8a\x3c\xd9\x92\xa6\x3e\x37\x6b\xc4\x11\x61\xa5\x0f\xc6\xc2\xed\xfe\x50\xc9\x51\xa2\x21\x86\x92\xcb\xdf\x54\x2d\xf0\xe9\xfd\x38\xf3\x98\x32\xd4\x6b\x3d\xb5\xca\x53\xa6\xca\x92\x17\x58\x75\x5c\xaf\xca\xd2\x75\x96\xc5\x11\xc6\x53\x14\xd8\x39\xef\x5d\x7f\xcb\x88\x7a\x5b\x5f\x4e\xa0\xa6\xca\x27\x13\x58\x42\xe4\xf3\x41\xe3\xeb\x7f\x1d\x7d\xcb\x04\x80\xc5\x0d\x32\xf2\xf1\x1b\xc3\xb6\xec\xbc\xda\xd3\x2f\xc5\xf5\xfc\x5c\x50\xce\xdd\x1d\x5a\x65\x4d\x99\xcd\xbe\xbb\xae\xd1\x71\x0d\xa3\xef\x2b\xd7\x61\xc4\x2d\xfa\x9b\x0d\x1a\xa7\x61\x1c\xf4\x4c\x65\xc7\x84\xd7\x34\x49\x64\x8e\xc2\x81\xc0\xb5\xbc\x65\x6a\x4f\xbc\x1a\x29\xbb\x37\x81\xb3\x8f\xdd\x08\x4e\x13\x99\x03\xa9\x11\xf9\x30\x74\x34\x9b\xa7\x69\x92\x14\x85\x80\x1d\xa9\xb4\xd4\x4f\x7c\xa3\xaf\x4d\x59\x43\x3b\x0a\xf6\x33\x5f\x93\x99\x26\x89\x40\x62\xa9\xff\x19\xed\x0a\xa9\x46\x87\xd8\x44\x32\x76\xf0\x78\x7e\x7d\xc2\x12\xec\x3b\x4a\x93\xe4\x34\xd6\x0b\xc4\xc3\x2a\xa7\x7f\x26\x5a\x1b\xf7\xdb\x59\xe1\xda\x55\x43\xad\x38\x37\xab\x2f\xad\x85\xdb\x5b\xcf\xc3\x9b\xf1\x8c\x4e\xa6\x79\x9f\xfe\x05\x00\x00\xff\xff\x1a\x82\xbd\xe7\x08\x04\x00\x00" +var _idtablestakingAdminAdd_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x93\x51\x6b\xdb\x30\x14\x85\x9f\xed\x5f\x71\xc8\x43\xe7\xc0\xb0\xdf\xc3\xba\x92\x2d\x0c\x02\x65\x8c\xa5\xec\xa5\xf4\x41\xb1\xae\x63\x6d\x8e\x64\xa4\xeb\xb8\xa5\xe4\xbf\x8f\x2b\xdb\x21\x69\x33\xa6\x17\x83\x75\xef\xb9\x47\x47\x9f\xcc\xbe\x75\x9e\xf1\xad\x71\xfd\x7a\xf5\xa0\xb6\x0d\x6d\x58\xfd\x31\x76\x87\xca\xbb\x3d\x66\xef\x37\x66\x69\x5a\x14\x78\xa8\x4d\x00\x7b\x65\x83\x2a\xd9\x38\x0b\xa5\x75\x80\x75\x9a\xb0\x5e\x05\xb0\x03\xd7\x84\xc6\x04\x86\xab\xa0\xda\xd6\xbb\x03\xe9\x58\x10\x60\xac\x48\x48\xc1\x7a\x05\x16\xed\x1c\xf2\x67\x5d\x41\xd9\x17\x69\x90\x3d\x69\x31\xfa\xd4\xa4\x1a\x4f\x4a\xbf\x80\x9e\x45\xd4\xd8\x8b\xfe\x8f\xe0\xda\x84\xa8\x7a\xe6\xa9\x37\x4d\x03\xeb\x18\x9e\x0e\xe4\x19\x99\xd1\xb4\x6f\x1d\x93\xe5\x79\x9a\x9e\x55\x66\x46\x87\x05\x1e\x37\xec\x8d\xdd\x3d\xcd\xf1\x9a\xa6\x00\x50\x14\xb8\x77\xa5\x6a\x70\x50\xde\xc8\x18\x54\xce\x43\xc1\x53\x45\x9e\x6c\x49\xd3\x39\xd7\x2b\xc4\x88\xb0\xd4\x7b\x63\xe1\xb6\xbf\xa9\xe4\x28\xd1\x10\x43\xc9\xcf\x9f\x54\x2d\x70\xf3\x3e\xce\x3c\xb6\x0c\xf3\x5a\x4f\xad\xf2\x94\xa9\xb2\xe4\x05\x54\xc7\x75\xf6\xc5\x79\xef\xfa\x5f\xaa\xe9\x68\x8e\x9b\x65\x59\xba\xce\xb2\x18\xc4\xb8\x8a\x02\xdb\x58\x73\xcd\x97\x7a\x6b\x47\x56\xa0\xa6\xca\x27\x4f\xb8\x85\x4c\xcb\x03\x3b\xaf\x76\x94\x0f\x5a\x9f\xfe\x69\xf4\x73\x26\x5c\x2c\xae\x00\x93\x8f\xdf\x58\xb6\x19\xe4\x7e\x28\xae\xe7\xa7\xc1\xb2\xee\xee\xd0\x2a\x6b\xca\x6c\xf6\xd5\x75\x8d\x8e\xb7\x33\xfa\xbf\x70\x1f\x46\x0a\xa3\xcf\xd9\xa0\x71\x1c\x52\xa2\x67\x2a\x3b\x26\xbc\xa6\x49\x22\xf1\x0a\x1e\xc2\xdc\xed\x35\x53\x3b\xe2\xe5\x08\xdf\xbd\x09\x9c\xfd\xdf\x8d\x50\x36\x01\x3b\x00\x1c\x5f\xc2\x18\xd0\x6c\x9e\xa6\x49\x52\x14\xc2\x7b\x84\xd5\x52\x3f\x61\x8f\xbe\x36\x65\x0d\xed\x28\xd8\x0f\x7c\x09\x6c\x9a\x24\xc2\x8e\xa5\xfe\x7b\xb4\x2b\x00\x1b\x1d\xe2\x21\x92\xf1\x04\x8f\xa7\xdd\x27\xdc\x82\x7d\x47\x69\x92\x1c\xc7\x79\x81\x78\xb8\xd2\xe9\x29\x45\x6b\xe3\x3d\x77\x56\x70\x77\xd5\x30\x2b\xe6\x66\xf5\xb9\xb5\x70\xfd\xf6\xf3\xf0\x26\x9e\xd1\xc9\x94\xf7\xf1\x6f\x00\x00\x00\xff\xff\xba\x60\xb0\x0b\x1f\x04\x00\x00" func idtablestakingAdminAdd_approved_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -1810,11 +1810,11 @@ func idtablestakingAdminAdd_approved_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/add_approved_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x79, 0xba, 0x90, 0xea, 0xdb, 0xc9, 0x16, 0x91, 0x88, 0xf2, 0x80, 0x3c, 0xdd, 0xc8, 0xf4, 0xb8, 0x1e, 0xb3, 0xa2, 0xc, 0x1, 0x8e, 0x80, 0xa0, 0x88, 0x14, 0x40, 0x67, 0x5, 0x2d, 0x28, 0x89}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc4, 0x2e, 0x15, 0x46, 0x80, 0xde, 0x18, 0xca, 0x68, 0xd8, 0xcb, 0xd0, 0xd8, 0xb5, 0x9c, 0x1c, 0x8d, 0x79, 0x2a, 0xfc, 0xfd, 0x40, 0x7c, 0xeb, 0xd1, 0x65, 0x4f, 0xc8, 0x1, 0xa7, 0x95, 0x8}} return a, nil } -var _idtablestakingAdminCapability_end_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x53\xc1\x4e\xdc\x40\x0c\xbd\xe7\x2b\xac\x3d\x54\x41\x42\xc9\xa5\xea\x61\x45\x41\x5b\x28\x12\x12\x07\xc4\xd2\x33\x72\x26\xce\x66\x4a\x32\x8e\x66\x1c\xc2\x0a\xed\xbf\x57\x33\x93\x84\x4d\x81\x76\x2e\x91\x62\xbf\xe7\x67\xfb\x59\xb7\x1d\x5b\x81\xeb\x86\x87\x9b\xab\x07\x2c\x1a\xda\x0a\x3e\x69\xb3\x83\xca\x72\x0b\xab\xf7\x81\x55\x92\xe4\x39\x3c\xd4\xda\x81\x58\x34\x0e\x95\x68\x36\xd0\x3b\x72\x80\xe0\x46\x34\x96\xad\x36\xa0\xb0\xc3\x42\x37\x5a\xf6\x1e\x23\x0c\x1d\xee\xc1\xd2\x80\xb6\x74\xa7\x40\xa6\x04\xa9\xe9\x0d\xd3\x07\xaa\x53\x40\x53\xce\x41\xea\x58\xd5\x59\x92\xe7\x9e\xe1\x46\x40\x71\x5b\x68\x43\x2e\x04\x3b\xdc\x3f\x1e\xd3\x3d\xce\x54\xa6\x84\x96\x9f\xe9\x51\xf8\x89\xcc\x42\xa9\xf3\x44\x43\xad\x55\xed\x11\xee\x63\x05\x31\x6e\xa9\xea\x7d\x8a\xe1\x92\x1c\x0c\x5a\x6a\xd0\xc6\xf5\x55\xa5\x95\x26\x23\x01\x46\x9e\x6e\x2a\xe7\x60\xac\x57\x90\x0c\x44\x06\x8a\x5e\x3d\x91\xb8\x51\x3b\x36\x8e\xc1\x91\xf8\x41\x19\x1a\x62\xb2\x6f\x82\x7b\x81\x8a\x6d\xd0\x62\xe8\x45\x62\xd7\x49\x72\x24\x3b\xd5\xa5\x5b\xc3\xeb\x56\xac\x36\xbb\x35\xfc\x60\x6e\x0e\xa7\x9e\xe5\x2e\xc0\xd7\xf0\xeb\x5a\xbf\x7c\xfb\x7a\x02\xaf\x49\x02\x00\x90\xe7\x70\xcb\x0a\x1b\x78\x46\xab\xfd\xfa\x42\x01\xf4\x3d\x91\x25\xa3\xc8\xaf\xc3\xd7\xbb\xb9\x82\xb0\x5e\xd8\x84\x95\x71\xf1\x9b\x94\x04\x8a\x86\x24\xee\xf1\x9e\xaa\x35\x7c\x79\x6f\x85\x2c\x40\x62\xbd\xce\x52\x87\x96\x52\x54\x4a\xd6\xb0\xe9\xa5\xde\x28\xc5\xbd\x11\xaf\x08\xc6\x37\x33\x5e\xce\xc6\x80\xef\xe0\x21\x99\xe2\x6e\x7f\xf6\xf6\xfb\x3c\xf5\xfe\x5b\x7f\x60\xcc\x6c\xfc\x86\xda\x5b\x61\x8b\x3b\xba\x43\xa9\x4f\xe6\x2a\xfe\x5d\x5c\x40\x87\x46\xab\x74\x75\xc9\x7d\x53\x82\x61\x81\x1d\xc9\x91\x23\xa3\xc1\x31\x8a\x04\x17\x89\x56\x27\xc9\x4c\x93\xe7\x50\xb0\xb5\x3c\x7c\x34\x35\xfc\x7b\x58\xfe\x39\x6a\xaa\x6c\x9a\x98\x6f\x6c\xd9\x6a\x16\xe9\xce\x3e\x9d\xe4\x79\xfa\xff\x26\x46\x49\x0b\x41\x8b\xa3\x5b\x45\x8e\x43\x6c\x84\x5e\x48\xf5\x42\x93\x2b\xa6\x25\x8c\x47\xb3\xed\xdb\x16\xad\xdf\xc1\x42\x7a\xa6\xb0\x51\x7d\x83\x42\xf7\x31\xef\x48\xd7\x32\xb1\xc3\xfd\x94\xb2\xa4\x3c\x9a\xe3\x12\xe1\x48\x7e\x7a\x73\x3f\x78\xef\x47\xef\xa6\xb3\x8b\xff\x85\xda\x74\x9d\xe5\x67\x2a\x6f\xb5\x13\x7f\x0c\x9f\xe6\x92\x29\x27\x8b\xc4\x73\x4e\x3f\x4d\xf5\x37\x1b\x84\x4c\x1d\x1e\x92\x43\xf2\x27\x00\x00\xff\xff\x14\xf7\x36\x2e\x13\x05\x00\x00" +var _idtablestakingAdminCapability_end_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x53\x41\x4f\xdc\x4c\x0c\xbd\xe7\x57\x58\x7b\x40\x41\x42\xc9\xe5\xd3\x77\x58\x51\x10\x85\x22\x21\x71\x40\x2c\x3d\x23\x67\xe2\x6c\xa6\x24\xe3\x68\xc6\x21\xac\xd0\xfe\xf7\x6a\x66\x92\xb0\x29\x6c\x3b\x97\x48\xb1\xdf\xf3\xb3\xfd\xac\xdb\x8e\xad\xc0\x6d\xc3\xc3\xdd\xcd\x13\x16\x0d\x6d\x04\x5f\xb4\xd9\x42\x65\xb9\x85\xd5\xe7\xc0\x2a\x49\xf2\x1c\x9e\x6a\xed\x40\x2c\x1a\x87\x4a\x34\x1b\xe8\x1d\x39\x40\x70\x23\x1a\xcb\x56\x1b\x50\xd8\x61\xa1\x1b\x2d\x3b\x8f\x11\x86\x0e\x77\x60\x69\x40\x5b\xba\x33\x20\x53\x82\xd4\xf4\x81\xe9\x03\xd5\x19\xa0\x29\xe7\x20\x75\xac\xea\x2c\xc9\x73\xcf\x70\x27\xa0\xb8\x2d\xb4\x21\x17\x82\x1d\xee\x9e\x0f\xe9\x9e\x67\x2a\x53\x42\xcb\xaf\xf4\x2c\xfc\x42\x66\xa1\xd4\x79\xa2\xa1\xd6\xaa\xf6\x08\xf7\xb5\x82\x18\xb7\x54\xf5\x3e\xc5\x70\x49\x0e\x06\x2d\x35\x68\xe3\xfa\xaa\xd2\x4a\x93\x91\x00\x23\x4f\x37\x95\x73\x30\xd6\x2b\x48\x06\x22\x03\x45\xaf\x5e\x48\xdc\xa8\x1d\x1b\xc7\xe0\x48\xfc\xa0\x0c\x0d\x31\xd9\x37\xc1\xbd\x40\xc5\x36\x68\x31\xf4\x26\xb1\xeb\x24\x39\x90\x9d\xea\xd2\xad\xe1\x7d\x23\x56\x9b\xed\x1a\xbe\x33\x37\xfb\x33\xcf\xf2\x10\xe0\x6b\xf8\x79\xab\xdf\xfe\xff\xef\x14\xde\x93\x04\x00\x20\xcf\xe1\x9e\x15\x36\xf0\x8a\x56\xfb\xf5\x85\x02\xe8\x7b\x22\x4b\x46\x91\x5f\x87\xaf\x77\x77\x03\x61\xbd\x70\x15\x56\xc6\xc5\x2f\x52\x12\x28\x1a\x92\xb8\xc7\x47\xaa\xd6\x70\xf2\xd9\x0a\x59\x80\xc4\x7a\x9d\xa5\x0e\x2d\xa5\xa8\x94\xac\xe1\xe4\x4a\x29\xee\x8d\x78\x39\x30\xbe\x99\xee\x7a\x76\x05\x7c\x03\x9f\x9f\x29\xee\x76\xe7\x1f\xbf\x2f\x52\x6f\xbe\xf5\x17\xae\xcc\xc6\x6f\x28\xbc\x11\xb6\xb8\xa5\x07\x94\xfa\x74\xae\xe2\xdf\xe5\x25\x74\x68\xb4\x4a\x57\xd7\xdc\x37\x25\x18\x16\xd8\x92\x1c\xd8\x31\xba\x1b\xa3\x48\x70\x91\x68\x75\x9a\xcc\x34\x79\x0e\x05\x5b\xcb\xc3\x57\x23\xc3\x3f\x27\xe5\x9f\xa3\xa6\xca\xa6\x71\xf9\xc6\x96\xad\x66\x91\xee\xfc\xe8\x18\x2f\xd2\x7f\x37\x31\x4a\x5a\x08\x5a\x5c\xdc\x2a\x72\xec\x63\x23\xf4\x46\xaa\x17\x9a\x2c\x31\x2d\x61\xbc\x98\x4d\xdf\xb6\x68\xfd\x0e\x16\xd2\x33\x85\x8d\xea\x1b\x14\x7a\x8c\x79\x07\xba\x96\x89\x1d\xee\xa6\x94\x25\xe5\xc1\x1c\x97\x08\x47\xf2\xc3\x3b\xfb\xc9\x1b\x3f\x1a\x37\x9d\x2d\xfc\x37\xd4\x55\xd7\x59\x7e\xa5\xf2\x5e\x3b\xf1\x97\x70\x34\x97\x4c\x39\x59\x24\xde\x72\x7a\x34\xd5\x1f\x6c\x10\x32\x75\xb8\x4f\xf6\xc9\xef\x00\x00\x00\xff\xff\x86\x01\x99\xb2\x10\x05\x00\x00" func idtablestakingAdminCapability_end_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1830,11 +1830,11 @@ func idtablestakingAdminCapability_end_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/capability_end_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7, 0xe4, 0x9e, 0xaf, 0x7a, 0x23, 0x26, 0xbd, 0x3c, 0x90, 0x8a, 0x3d, 0x18, 0x6d, 0xb0, 0x9d, 0x5b, 0x4a, 0xcc, 0xca, 0x79, 0xe7, 0x5a, 0xdf, 0x6e, 0x6d, 0xd2, 0x27, 0x63, 0xe, 0x5c, 0x66}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe0, 0xa, 0xf0, 0x5d, 0x80, 0x66, 0x3d, 0x8, 0x41, 0xe0, 0x30, 0xf7, 0xe, 0x56, 0xd2, 0x35, 0xa8, 0x41, 0xd6, 0x55, 0x14, 0xd4, 0x40, 0x72, 0xc9, 0x2f, 0x7, 0xe3, 0x3c, 0x36, 0x54, 0xd3}} return a, nil } -var _idtablestakingAdminChange_candidate_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdc\x30\x10\x85\xef\xfe\x15\x0f\x1f\x8a\x03\xc5\xbe\x94\x52\x4c\xdb\xb0\x24\x14\x16\x42\x29\x4d\xfa\x03\xc6\xf2\x78\xad\x56\xd6\x18\x79\xdc\x0d\x94\xfc\xf7\x22\xd9\x2e\xbb\xdd\xcd\x1c\x2c\x90\x3c\xef\x7d\xa3\x27\x3b\x8c\x12\x14\x5f\x9c\x1c\xf7\xf7\x4f\xd4\x38\x7e\x54\xfa\x65\xfd\x01\x5d\x90\x01\xf9\xe5\x41\x9e\x65\x55\x55\xe1\xa9\xb7\x13\x34\x90\x9f\xc8\xa8\x15\x0f\xd3\x93\x3f\xf0\x04\xed\x19\xce\x0e\x56\x21\x1d\x3c\x1f\xe1\xa5\x4d\xdb\xa4\x30\xe4\xd1\x70\x5c\x5a\xdb\x92\xf2\x94\xa4\x3a\x09\xa9\xcb\xf3\xb3\x82\x47\x31\x7d\x76\x22\x5c\x04\x71\x5c\xe3\xc7\xde\xeb\x87\xb7\x51\xf0\x6e\xeb\xfe\x2a\x2d\x3f\x44\xa7\xe5\xf4\xfd\xbb\x1b\xfc\xc9\x32\x00\x88\xaa\x0f\x62\xc8\xe1\x37\x05\x1b\xe1\x93\x09\x21\x70\xc7\x81\xbd\x61\xa8\x24\xcf\xfd\x3d\xd2\x70\xd8\xb5\x83\xf5\x90\xe6\x27\x1b\x4d\x1a\x8e\x15\x14\x37\xbf\x73\x57\xe3\xcd\xe5\x45\x94\xa9\x65\x31\x1c\x03\x8f\x14\xb8\x20\x63\xb4\xc6\x6e\xd6\x7e\x67\x8c\xcc\x5e\x23\x12\xd6\xaa\x2a\x34\x12\x82\x1c\xaf\x81\xd0\xff\xfe\xb1\x26\x76\x5d\xb9\x41\xe0\x13\xa2\x7c\xb9\x68\x7c\x7c\x95\xe8\x73\x11\xa3\xab\xaf\x64\x5a\xae\x6b\xfa\xed\x51\x25\xd0\x81\xbf\x91\xf6\x37\xff\x0c\x63\xdd\xde\x62\x24\x6f\x4d\x91\xdf\xc9\xec\x5a\x78\xd1\x8d\xfb\x8c\x7a\x5a\x1f\x4a\xe2\xcb\x17\x8d\x97\xe5\x3a\xf8\x99\xcd\xac\x7c\x32\xfb\xd9\x24\xe5\xc4\x7a\x99\xe2\x1a\x74\xfc\xa6\x9c\xd7\x68\xaf\x26\xbe\xb9\xbd\xfc\x0d\x00\x00\xff\xff\x71\x53\xb5\xc5\xc0\x02\x00\x00" +var _idtablestakingAdminChange_candidate_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdc\x30\x10\x85\xef\xfe\x15\x8f\x3d\x04\x2f\x14\xfb\x52\x4a\x59\xda\x86\x34\xa1\xb0\x10\x4a\x69\xd2\xde\xc7\xf2\x78\xad\x56\xd6\x18\x69\xdc\x0d\x94\xfc\xf7\x22\xd9\x2e\xd9\xee\x76\x0e\x36\x48\x9a\xf7\x3e\xcd\x93\x1d\x46\x09\x8a\x4f\x4e\x8e\xfb\xbb\x47\x6a\x1c\x3f\x28\xfd\xb4\xfe\x80\x2e\xc8\x80\xcd\xf9\xc6\xa6\x28\xea\xba\xc6\x63\x6f\x23\x34\x90\x8f\x64\xd4\x8a\x87\xe9\xc9\x1f\x38\x42\x7b\x86\xb3\x83\x55\x48\x07\xcf\x47\x78\x69\xf3\x32\x29\x0c\x79\x34\x9c\x7e\xad\x6d\x49\x39\x66\xa9\x4e\x42\xee\xf2\xfc\xa4\xe0\x51\x4c\x5f\xbc\x10\x2e\x83\x38\xde\xe1\xdb\xde\xeb\xdb\x57\x49\xf0\x76\xed\xfe\x2c\x2d\xdf\x27\xa7\x79\xf7\xcd\xeb\x2d\x7e\x17\x05\x00\x24\xd5\x7b\x31\xe4\xf0\x8b\x82\x4d\xf0\xd9\x84\x10\xb8\xe3\xc0\xde\x30\x54\xb2\xe7\xfe\x0e\xf9\x72\xb8\x69\x07\xeb\x21\xcd\x0f\x36\x9a\x35\x1c\x2b\x28\x2d\x7e\xe5\x6e\x87\xab\xf3\x41\x54\xb9\x65\x36\x1c\x03\x8f\x14\xb8\x24\x63\x74\x07\x9a\xb4\x2f\x3f\x4a\x08\x72\xfc\x4e\x6e\xe2\x2d\xae\x6e\x8c\x91\xc9\x6b\x22\xc4\x52\x75\x8d\x26\x9f\xb9\xc4\x45\xff\xe2\xa4\x8a\xec\xba\x6a\x65\xc2\x7b\x24\xb7\x2a\xaa\x04\x3a\x70\x35\x6b\xbd\xfb\x2f\xe8\x87\x32\x25\xba\xbb\x10\x75\xb5\xfc\xf3\xb1\x87\x59\xee\x0b\x69\xbf\xfd\x6b\x9c\xea\xfa\x1a\x23\x79\x6b\xca\xcd\xad\x4c\xae\x85\x17\x5d\xf9\x4f\xe8\xe3\xf2\x7e\x32\xe7\x66\xd6\x78\x9e\xa7\xc4\x4f\x6c\x26\xe5\x17\x33\x38\xb9\x51\x15\x59\xcf\xc3\x5d\xf2\x4f\xdf\x1c\xff\x92\xf8\xc5\x87\xb0\xba\x3d\xff\x09\x00\x00\xff\xff\xa3\x37\xb2\x3b\xd7\x02\x00\x00" func idtablestakingAdminChange_candidate_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -1850,11 +1850,11 @@ func idtablestakingAdminChange_candidate_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_candidate_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xef, 0x23, 0xda, 0x85, 0x6e, 0x3d, 0xa7, 0xdb, 0x2a, 0xad, 0xb3, 0x2c, 0x34, 0x51, 0xcc, 0xc0, 0x56, 0xc1, 0x5d, 0x4e, 0x86, 0x6c, 0x65, 0xa7, 0x3c, 0xe4, 0x43, 0xae, 0x89, 0x90, 0xba, 0xb4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0x8b, 0x69, 0x1, 0xa6, 0x30, 0xfc, 0xb9, 0x20, 0x3, 0xb0, 0x87, 0xff, 0x80, 0xf, 0xa7, 0x89, 0xa7, 0x8, 0xf4, 0x47, 0xfe, 0xa0, 0xd6, 0x59, 0xa2, 0xaa, 0xa4, 0x16, 0x8e, 0xad, 0x7f}} return a, nil } -var _idtablestakingAdminChange_cutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x0f\x1d\x8a\x72\x91\x2e\xa5\x07\xd1\x36\x98\x84\x40\xa0\x87\xd0\xa4\x3f\x60\xbc\x1a\x49\x5b\xaf\x77\xc4\x68\x54\x05\x8a\xff\x7b\x59\xc9\x2e\x76\xed\xce\x45\xa0\x9d\x7d\xef\x9b\x79\xeb\xf7\x83\xa8\xe1\x29\xc8\xfc\xfc\xf8\x46\xdb\xc0\xaf\x46\x3b\x1f\x3b\xb4\x2a\x7b\xe4\xd7\x07\x79\x96\x55\x15\xde\x7a\x3f\xc2\x94\xe2\x48\xce\xbc\x44\xb8\x9e\x62\xc7\x23\xac\x67\xb4\x41\x66\x98\xec\x38\x42\x79\x26\x6d\xe0\x26\x83\xf5\x64\x88\xd2\xa4\x26\xda\xf1\x6a\xd0\x70\xe0\x8e\x4c\x74\xcc\xb2\x33\xb9\x22\xf2\xfc\x30\xd9\x0b\xab\xe3\x68\xd4\x71\x8d\x1f\x4f\xfe\xfd\xd3\xc7\x3b\xfc\xce\x32\x00\xa8\x2a\x7c\x13\x47\x01\xbf\x48\x7d\xc2\x43\x2b\x0a\x82\x72\xcb\xca\xd1\x31\x4c\x16\x98\xe7\x47\x2c\xf8\xd8\x34\x7b\x1f\x21\xdb\x9f\xec\x6c\x91\x08\x6c\xa0\xf4\xf3\x3b\xb7\x35\x3e\x5c\x8f\x5a\x2e\x57\x56\xbf\x41\x79\x20\xe5\x82\x9c\xb3\x1a\x9b\xc9\xfa\x8d\x73\x32\x45\x4b\x44\x38\x56\x55\x61\x2b\xaa\x32\xdf\x02\xa1\x7f\xfd\x53\x8d\x1c\xda\xf2\x04\x81\x2f\x48\xf2\xe5\xaa\xf1\xf9\xbf\x44\x5f\x8b\xb4\xbb\xfa\x46\x6a\xe5\xf1\xbb\xb4\xbd\x9a\x28\x75\xfc\x42\xd6\xdf\xfd\x35\x4c\x75\x7f\x8f\x81\xa2\x77\x45\xfe\x20\x53\x68\x10\xc5\x4e\xdc\x17\xd4\xe3\xf1\x29\x2c\x7c\xf9\xaa\x71\x58\xd7\xc1\xef\xec\x26\xe3\xb3\xd9\x2f\x26\x29\x47\xb6\x8b\xfc\xae\x02\x3d\xa9\x1d\xfe\x04\x00\x00\xff\xff\x77\x97\x06\xba\x82\x02\x00\x00" +var _idtablestakingAdminChange_cutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x0f\x1f\x82\x7c\x91\x2e\xa5\x07\xd3\x36\xa4\x09\x81\x40\x0f\xa1\x49\x7b\x1f\xaf\x46\xd2\xd6\xeb\x1d\x31\x3b\xaa\x02\x25\xff\xbd\xac\x64\x97\xb8\x76\xe6\x22\xd0\xce\xbe\xf7\xcd\xbc\xf5\xfb\x41\xd4\x70\x1f\x64\x7a\xb8\x7b\xa6\x6d\xe0\x27\xa3\x9d\x8f\x1d\x5a\x95\x3d\x56\xe7\x07\xab\xa2\xa8\x6b\x3c\xf7\x3e\xc1\x94\x62\x22\x67\x5e\x22\x5c\x4f\xb1\xe3\x04\xeb\x19\x6d\x90\x09\x26\x3b\x8e\x50\x9e\x48\x1b\xb8\xd1\x60\x3d\x19\xa2\x34\xb9\x89\x76\xbc\x18\x34\x1c\xb8\x23\x13\x4d\x45\xf1\x46\xae\x8c\x3c\xdd\x8e\xf6\xc8\xea\x38\x1a\x75\xbc\xc1\x8f\x7b\xff\xf2\xf1\xc3\x1a\x7f\x8a\x02\x00\xea\x1a\xdf\xc4\x51\xc0\x6f\x52\x9f\xf1\xd0\x8a\x82\xa0\xdc\xb2\x72\x74\x0c\x93\x19\xe6\xe1\x0e\x33\x3e\x6e\x9a\xbd\x8f\x90\xed\x2f\x76\x36\x4b\x04\x36\x50\xfe\xf9\x9d\xdb\x0d\xae\xce\x47\xad\xe6\x2b\x8b\xdf\xa0\x3c\x90\x72\x49\xce\xd9\x06\x34\x5a\x5f\x7e\x15\x55\x99\x7e\x52\x18\x79\x8d\xab\x1b\xe7\x64\x8c\x96\x01\x71\xa8\xba\xc6\x76\xee\xb9\xc4\x45\xff\xe3\xe4\x4a\x1c\xda\xea\xc8\x84\xcf\xc8\x6e\x55\x32\x51\xea\xb8\x5a\xb4\x3e\xbd\x0b\xfa\xa5\xcc\x2b\xdd\x5c\x08\xb3\x3a\x7c\xe7\xb6\xa7\x45\xee\x91\xac\x5f\xff\x33\xce\x75\x7d\x8d\x81\xa2\x77\xe5\xea\x56\xc6\xd0\x20\x8a\x1d\xf9\x4f\xe8\xd3\xe1\x85\xcc\x9c\xab\x45\xe3\x75\xd9\x12\xbf\xb0\x1b\x8d\xdf\xec\xe0\x64\xa2\x2a\xb1\x9d\xc4\x7a\x96\xf3\x51\xed\xf5\x6f\x00\x00\x00\xff\xff\xab\xef\x4a\xd9\x99\x02\x00\x00" func idtablestakingAdminChange_cutCdcBytes() ([]byte, error) { return bindataRead( @@ -1870,11 +1870,11 @@ func idtablestakingAdminChange_cutCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_cut.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5c, 0x1c, 0x8, 0xb3, 0x72, 0x4a, 0x1c, 0x3d, 0x1a, 0x35, 0xca, 0x7f, 0xd1, 0xbe, 0x37, 0x1, 0x5b, 0x35, 0xea, 0x12, 0x55, 0x7c, 0x6e, 0xbe, 0x84, 0x1f, 0x54, 0x6c, 0xbe, 0x38, 0x2d, 0x14}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x44, 0x7a, 0x5d, 0xf4, 0xb4, 0x22, 0xad, 0xa1, 0x2e, 0x57, 0x29, 0x66, 0x47, 0x5f, 0xca, 0x24, 0x3b, 0xd2, 0x71, 0x49, 0xa8, 0xb4, 0x2c, 0x34, 0xd3, 0xf, 0x36, 0xa0, 0x2a, 0x5f, 0x58, 0x1a}} return a, nil } -var _idtablestakingAdminChange_del_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x8b\x9c\x40\x10\xc5\xef\x7e\x8a\xc7\x1c\x82\x7b\xd1\x4b\xc8\x41\x92\x2c\x43\x86\x85\x85\x04\xc2\xee\xe6\x03\xd4\xb4\xa5\x76\xa6\xed\x32\x65\x19\x17\xc2\x7e\xf7\xd0\x3a\x86\xfd\x33\xa9\x8b\x60\x95\xef\xfd\x5e\x95\xbe\x1f\x44\x0d\x37\x41\xe6\xdb\xc3\x03\x1d\x03\xdf\x1b\x9d\x7c\x6c\xd1\xa8\xf4\xd8\xbd\x6d\xec\xb2\xac\x2c\xf1\xd0\xf9\x11\xa6\x14\x47\x72\xe6\x25\xc2\x75\x14\x5b\x1e\x61\x1d\xa3\x09\x32\xc3\xe4\xc4\x11\xca\x33\x69\x0d\x37\x19\xac\x23\x43\x94\x3a\x0d\xd1\x89\x57\x83\x9a\x03\xb7\x64\xa2\x63\x96\x3d\x93\xcb\x23\xcf\x87\xad\xf5\xcd\x47\xdf\x4f\x7d\x85\x1f\x37\xfe\xf1\xc3\xfb\x2b\xfc\xc9\x32\x00\x28\x4b\x7c\x15\x47\x01\xbf\x49\x7d\x22\x44\x23\x0a\x82\x72\xc3\xca\xd1\x31\x4c\x16\x9e\xdb\x03\x96\x04\xd8\xd7\xbd\x8f\x90\xe3\x4f\x76\xb6\x48\x04\x36\x50\x7a\x79\xc7\x4d\x85\x77\x6f\xd3\x16\xcb\x27\xab\xdf\xa0\x3c\x90\x72\x4e\xce\x59\x85\xfd\x64\xdd\xde\x39\x99\xa2\x25\x22\x9c\xab\x2c\x71\x14\x55\x99\x2f\x81\xd0\x6b\xff\x54\x23\x87\xa6\xd8\x20\xf0\x09\x49\xbe\x58\x35\x3e\xfe\x97\xe8\x73\x9e\xd6\x57\x5d\x38\x5c\x71\x7e\x2e\x63\xf7\x26\x4a\x2d\x7f\x27\xeb\xae\xfe\x19\xa6\xba\xbe\xc6\x40\xd1\xbb\x7c\xf7\x45\xa6\x50\x23\x8a\x6d\xdc\x2f\xa8\xc7\xf3\xdf\xb0\xf0\xed\x56\x8d\xa7\x75\x1d\xfc\xc8\x6e\x32\x7e\x96\xfd\x45\x92\x62\x64\x7b\x7d\xc2\x84\xc6\x77\xfc\x6b\xf2\xca\x3d\x47\xbb\x74\xe6\xcd\xe3\xe9\x6f\x00\x00\x00\xff\xff\xb3\x7c\x17\x8a\x9b\x02\x00\x00" +var _idtablestakingAdminChange_del_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdc\x40\x0c\xc5\xef\xfe\x14\x8f\x3d\x04\xef\xc5\xbe\x94\x1e\x96\xb6\x21\xed\x12\x08\xb4\x50\x92\xb4\x77\xed\x58\x5e\x4f\x77\x3c\xda\xca\x9a\x3a\x50\xf2\xdd\xcb\xd8\xeb\x92\x3f\x1b\x5d\x06\x46\x9a\xf7\x7e\x92\xc6\xf7\x47\x51\xc3\x75\x90\xf1\x66\x7b\x4f\xbb\xc0\x77\x46\x07\x1f\xf7\x68\x55\x7a\xac\x5e\x27\x56\x45\x51\xd7\xb8\xef\xfc\x00\x53\x8a\x03\x39\xf3\x12\xe1\x3a\x8a\x7b\x1e\x60\x1d\xa3\x0d\x32\xc2\xe4\xc0\x11\xca\x23\x69\x03\x97\x0c\xd6\x91\x21\x4a\x93\x8b\xe8\xc0\xb3\x41\xc3\x81\xf7\x64\xa2\x43\x51\x3c\x91\x2b\x23\x8f\xdb\x25\xf5\xcd\x47\xdf\xa7\x7e\x83\x1f\xd7\xfe\xe1\xfd\xbb\x35\xfe\x16\x05\x00\xd4\x35\xbe\x8a\xa3\x80\x3f\xa4\x3e\x13\xa2\x15\x05\x41\xb9\x65\xe5\xe8\x18\x26\x13\xcf\xcd\x16\x53\x07\xb8\x6a\x7a\x1f\x21\xbb\x5f\xec\x6c\x92\x08\x6c\xa0\x7c\x79\xcb\xed\x06\x17\xaf\xbb\xad\xa6\x27\xb3\xdf\x51\xf9\x48\xca\x25\x39\x67\x1b\x50\xb2\xae\xfc\x2c\xaa\x32\xfe\xa4\x90\x78\x8d\x8b\x2b\xe7\x24\x45\xcb\x80\x38\x45\x5d\x63\x37\xd5\x9c\xe3\xa2\x97\x38\x39\x06\x0e\x6d\xb5\x30\xe1\x23\xb2\x5b\x35\x98\x28\xed\xb9\x9a\xb5\x3e\xbc\x09\xfa\xa9\xcc\x53\xdd\x9c\xd9\x67\x75\x3a\xa7\xb2\xbb\x59\xee\x3b\x59\xb7\xfe\x6f\x9c\xe3\xf2\x12\x47\x8a\xde\x95\xab\x2f\x92\x42\x83\x28\xb6\xf0\x3f\xa3\x1f\x4e\x9f\x64\xe2\x5c\xcd\x1a\x8f\xf3\x94\xf8\x81\x5d\x32\x7e\x32\x83\x67\x1d\x55\x03\xdb\xcb\xcd\x66\x34\xbe\xe5\xdf\xc9\x2b\xf7\x1c\xed\xdc\xf6\x17\x8f\xc7\x7f\x01\x00\x00\xff\xff\xa7\xa0\xc3\xae\xb2\x02\x00\x00" func idtablestakingAdminChange_del_minimumsCdcBytes() ([]byte, error) { return bindataRead( @@ -1890,11 +1890,11 @@ func idtablestakingAdminChange_del_minimumsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_del_minimums.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0x73, 0x1d, 0x23, 0x43, 0xb1, 0x2a, 0x95, 0x9a, 0x41, 0xca, 0x35, 0x8d, 0x87, 0x5c, 0x3c, 0xc, 0x7b, 0xaa, 0xf7, 0x85, 0x6b, 0xe6, 0x1b, 0xe8, 0x70, 0x22, 0xf1, 0x3a, 0x56, 0xe5, 0x46}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xc8, 0x3f, 0x11, 0x11, 0x9f, 0xf0, 0xb8, 0x71, 0xbf, 0x48, 0xf0, 0x40, 0xd5, 0x29, 0xf3, 0x4e, 0xeb, 0xa2, 0x2c, 0xea, 0xa8, 0xad, 0x9e, 0x76, 0x65, 0x5f, 0xb6, 0xaf, 0x82, 0x71, 0x6}} return a, nil } -var _idtablestakingAdminChange_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x8a\x42\x41\x22\x50\x4a\x11\x55\x83\x69\x08\x18\x5a\x28\xf9\x73\x0a\x39\xac\xd7\x23\x6b\x5a\x69\x47\xdd\x1d\xc5\x01\xe3\xef\x5e\x56\x7f\x5c\xa7\x4e\xe7\x62\xac\x99\x7d\xef\x37\xf3\xb8\xed\xc4\x2b\x6e\x1a\xd9\xad\xae\xef\xcd\xba\xa1\x3b\x35\xbf\xd8\x6d\x51\x79\x69\xb1\x38\x6f\x2c\x92\x24\xcf\x71\x5f\x73\x80\x7a\xe3\x82\xb1\xca\xe2\x60\x6b\xe3\xb6\x14\xa0\x35\x21\x4c\x12\x2d\xbb\xbe\xed\xdb\x80\x4a\x3c\x9c\x6c\x08\xd2\x91\x37\x2a\x3e\x24\xc9\xc9\xe3\xd4\xd1\xee\x3b\x3b\x8e\xb3\x05\x1e\x1f\x6e\xf8\xe5\xe3\x87\xa7\x0b\xec\x93\x04\x00\xf2\x1c\xdf\xc4\x9a\x06\xcf\xc6\x73\x24\x19\xf4\x0c\x3c\x55\xe4\xc9\x59\x82\xca\xe0\xbb\xba\xc6\x40\x8a\xe5\xa6\x65\x07\x59\xff\x24\xab\x83\x44\x43\x0a\x13\x3f\xde\x52\x55\xe0\xdd\xf9\x56\xd9\xf0\x64\xf4\xeb\x3c\x75\xc6\x53\x6a\xac\xd5\x02\xcb\x5e\xeb\xa5\xb5\xd2\x3b\x8d\x44\x98\x2a\xcf\xb1\x16\xef\x65\xf7\x16\x88\xf9\xd7\x3f\x56\xa0\xa6\xca\x66\x08\x94\x88\xf2\xd9\xa8\xf1\xf9\xbf\x44\x5f\xd2\x98\x43\xf1\x46\x40\xd9\xf4\x3b\x8c\xdd\xa9\x78\xb3\xa5\x1f\x46\xeb\x8b\xa3\x61\xac\xab\x2b\x74\xc6\xb1\x4d\x17\x5f\xa5\x6f\x36\x70\xa2\x33\xf7\x2b\xea\x39\xb2\x81\x6f\x31\x6a\x1c\xc6\x73\xd0\x0b\xd9\x5e\xe9\x64\xf7\x78\xcd\xf6\x98\xd7\xfe\x61\xe5\xf4\x53\x81\x31\xb6\x03\x4a\xec\x0f\xc7\xd1\x67\xe3\xc1\x05\x86\x11\x94\xb8\x3c\x36\x62\x84\xf1\x48\xec\x70\x92\xfe\x89\x49\xac\xd9\xe4\x91\x9f\x50\xc6\x7f\xaf\xba\x8c\x12\x8c\xf7\xa3\x78\x7a\xf9\x77\xf1\x09\xfc\xec\xe8\x59\x20\x9d\x9c\xe2\xf1\xe8\x96\x7e\xf7\xec\xa9\x25\xa7\x21\x9d\xbd\xe6\xdd\x0f\x7f\x02\x00\x00\xff\xff\x85\x55\x9c\xa9\x1b\x03\x00\x00" +var _idtablestakingAdminChange_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x4c\x41\x22\x50\x4a\x11\x55\x43\xda\x10\x30\xb4\x50\xf2\xa7\x97\x90\xc3\x78\x3d\xb2\xb6\x95\x76\xd5\xdd\x51\x1c\x30\xfe\xee\x65\x57\x92\xab\xd4\xc9\x5c\x84\xb4\xb3\xef\xfd\x66\x9e\x74\xdb\x59\x27\xb8\x6e\xec\x6e\x75\x75\x47\xeb\x86\x6f\x85\x7e\x6b\xb3\x45\xe5\x6c\x8b\xc5\xe9\xc1\x22\x49\xf2\x1c\x77\xb5\xf6\x10\x47\xc6\x93\x12\x6d\x0d\x54\x4d\x66\xcb\x1e\x52\x33\xfc\x28\xd1\x6a\xd3\xb7\x7d\xeb\x51\x59\x07\x63\x37\x0c\xdb\xb1\x23\xb1\xce\x27\xc9\xec\x72\x6a\x78\xf7\x5d\x1b\x1d\x7a\x0b\x3c\xdc\x5f\xeb\xe7\x0f\xef\x1f\x97\xd8\x27\x09\x00\xe4\x39\xbe\x59\x45\x0d\x9e\xc8\xe9\x40\x12\xf5\x08\x8e\x2b\x76\x6c\x14\x43\x6c\xf4\x5d\x5d\x21\x92\xe2\x72\xd3\x6a\x03\xbb\xfe\xc5\x4a\xa2\x44\xc3\x02\x0a\x1f\x6f\xb8\x2a\x70\x76\x3a\x55\x16\xaf\x0c\x7e\x9d\xe3\x8e\x1c\xa7\xa4\x94\x14\xa0\x5e\xea\xf4\x8b\x75\xce\xee\x7e\x52\xd3\xf3\x12\x67\x97\x4a\xd9\xde\x48\x00\xc4\x58\x79\x8e\x75\xec\x79\x8d\x8b\xfe\xc7\x09\xe5\xb9\xa9\xb2\x89\x09\x25\x82\x5b\xe6\xc5\x3a\xda\x72\x36\x68\x7d\x7a\x13\xf4\x73\x1a\xe2\x29\x5e\xc9\x2d\x1b\x9f\xb1\xed\x76\x90\xfb\x41\x52\x2f\x8f\xc6\xa1\x2e\x2e\xd0\x91\xd1\x2a\x5d\x7c\xb5\x7d\xb3\x81\xb1\x32\xf1\xbf\xa0\x9f\x92\x8c\x9c\x8b\x41\xe3\x30\x6c\x89\x9f\x59\xf5\xc2\xb3\x1d\x84\x25\xb7\xc7\x18\xf7\xf7\x2b\x23\x1f\x0b\x0c\x69\x1e\x50\x62\x7f\x38\xb6\x3e\x91\x83\x2e\x10\x5b\x50\xe2\xfc\x78\x10\x92\x0d\xcb\xd2\x06\xb3\x9f\x62\x66\x12\x6a\x32\x79\xd0\x8f\x28\xc3\xdb\x8b\x53\x8d\x12\x1a\xef\x06\xf1\xf4\xfc\xdf\xe0\x23\xf8\xc9\xf2\x33\xcf\x32\x3a\x85\xe5\xf1\x0d\xff\xe9\xb5\xe3\x96\x8d\xf8\x74\xf2\x9a\x66\x3f\xfc\x0d\x00\x00\xff\xff\x0c\xd9\xc0\xe7\x32\x03\x00\x00" func idtablestakingAdminChange_minimumsCdcBytes() ([]byte, error) { return bindataRead( @@ -1910,11 +1910,11 @@ func idtablestakingAdminChange_minimumsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_minimums.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0x1d, 0x8a, 0xb, 0xcf, 0x34, 0x14, 0xd6, 0xf5, 0x44, 0x7c, 0x22, 0x68, 0x0, 0xbd, 0xd2, 0x70, 0xa3, 0x33, 0x9b, 0x53, 0x5f, 0x65, 0x52, 0x6e, 0xa3, 0x10, 0xc3, 0xf5, 0x47, 0x1d, 0xb9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0xc4, 0xf5, 0xcf, 0xc4, 0x9, 0xda, 0xde, 0x4, 0x25, 0x88, 0xdb, 0xca, 0x1a, 0x54, 0x9, 0x1f, 0x68, 0x91, 0x8, 0x74, 0xa8, 0x6, 0x87, 0x54, 0x36, 0x2, 0x68, 0x3f, 0x5, 0x4f, 0x3d}} return a, nil } -var _idtablestakingAdminChange_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\xef\xd2\x40\x10\xc5\xef\xfd\x14\x2f\x3d\x98\x72\x69\x2f\xc6\x43\xa3\x12\x22\x92\x90\x78\x20\x82\x1f\x60\x58\xa6\x74\x65\xd9\x69\xb6\x53\x0b\x31\x7c\x77\xb3\x2d\x28\x08\xff\xb9\x34\x99\xee\xbc\xf7\x9b\x79\xf6\xd8\x48\x50\x2c\x9c\xf4\xcb\xf9\x86\xb6\x8e\xd7\x4a\x07\xeb\xf7\xa8\x82\x1c\x91\x3e\xff\x48\x93\xa4\x28\xb0\xa9\x6d\x0b\x0d\xe4\x5b\x32\x6a\xc5\xc3\xd4\xe4\xf7\xdc\x42\x6b\x46\xe5\xa4\x87\xca\x81\x3d\x7a\xe6\x83\x3b\xa3\xa1\xb3\x74\x9a\x24\x77\x13\x99\xe7\x7e\x35\xb4\x4b\xfc\x58\xd8\xd3\x87\xf7\x13\xfc\x4e\x12\x00\x28\x0a\x7c\x13\x43\x0e\xbf\x28\xd8\x68\x8d\x4a\x02\x08\x81\x2b\x0e\xec\x0d\x43\x65\x30\x5a\xce\x31\xa0\x61\xb6\x3b\x5a\x0f\xd9\xfe\x64\xa3\x83\x84\x63\x05\xc5\xe6\x77\xae\x4a\xbc\x7b\x5e\x23\x1f\x46\x46\xbf\x26\x70\x43\x81\x33\x32\x46\x4b\xcc\x3a\xad\x67\xc6\x48\xe7\x35\x12\xe1\x5a\x45\x81\xad\x84\x20\xfd\x2b\x10\xfa\xdf\x3f\x56\xcb\xae\xca\x6f\x10\xf8\x84\x28\x9f\x8f\x1a\x1f\xdf\x24\xfa\x9c\xc5\xc3\x97\x2f\x12\xc9\xaf\xdf\xe1\xd9\x5a\x25\xd0\x9e\x57\xa4\xf5\xe4\xaf\x61\xac\xe9\x14\x0d\x79\x6b\xb2\xf4\x8b\x74\x6e\x07\x2f\x7a\xe3\x7e\xa0\x6e\xaf\x31\x0f\x7c\xe9\xa8\x71\x19\xcf\xc1\x27\x36\x9d\xf2\xdd\xee\x0f\x9b\xe4\x2d\xeb\xd7\x46\x4c\xbd\x89\x09\x8f\x11\xfe\x0b\xf3\xa6\x74\xf9\x13\x00\x00\xff\xff\x24\xf8\x77\x84\x5a\x02\x00\x00" +var _idtablestakingAdminChange_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x8f\xd3\x40\x0c\x85\xef\xf9\x15\x4f\x39\xac\xd2\x4b\x72\x41\x1c\x22\x60\xb5\xb0\xac\xb4\x12\x87\x8a\x16\xee\xee\xd4\x69\x86\x4e\xc7\xd1\xc4\x21\xad\x50\xff\x3b\x9a\x49\x0b\x2d\x2d\xbe\x44\x9a\xd8\xef\x7d\xf6\xb3\xbb\x4e\x82\xe2\xc5\xc9\xf8\xfa\xbc\xa4\x95\xe3\x85\xd2\xd6\xfa\x0d\x9a\x20\x3b\xe4\xb7\x3f\xf2\x2c\xab\x2a\x2c\x5b\xdb\x43\x03\xf9\x9e\x8c\x5a\xf1\x30\x2d\xf9\x0d\xf7\xd0\x96\xd1\x38\x19\xa1\xb2\x65\x8f\x91\x79\xeb\x0e\xe8\xe8\x20\x83\x66\xd9\xc5\x44\xe1\x79\x9c\xa7\xe7\x1a\xdf\x5e\xec\xfe\xed\x9b\x19\x7e\x65\x19\x00\x54\x15\xbe\x88\x21\x87\x9f\x14\x6c\xb4\x46\x23\x01\x84\xc0\x0d\x07\xf6\x86\xa1\x92\x8c\x5e\x9f\x91\xd0\xf0\xb4\xde\x59\x0f\x59\xfd\x60\xa3\x49\xc2\xb1\x82\xe2\xe3\x57\x6e\x6a\x3c\xdc\xae\x51\xa6\x91\xc9\xaf\x0b\xdc\x51\xe0\x82\x8c\xd1\x1a\x34\x68\x5b\x7c\x94\x10\x64\xfc\x4e\x6e\xe0\x19\x1e\x9e\x8c\x91\xc1\x6b\x04\xc4\xa9\xaa\x0a\xab\xd4\x73\x8f\x8b\xfe\xc5\x89\xd5\xb3\x6b\xca\x33\x13\xde\x23\xba\x95\xbd\x4a\xa0\x0d\x97\x93\xd6\xbb\xff\x82\x7e\x28\x62\x1e\xf5\x9d\xa0\xca\xd3\x37\xb5\x2d\x26\xb9\x39\x69\x3b\xfb\x63\x1c\xeb\xf1\x11\x1d\x79\x6b\x8a\xfc\x93\x0c\x6e\x0d\x2f\x7a\xe6\xbf\xa2\xef\x4f\xe9\x27\xce\x7c\xd2\x38\x4e\x57\xe2\x3d\x9b\x41\xf9\xe2\x06\x57\x1b\x95\x3d\xeb\xe7\x4e\x4c\xbb\x8c\xc1\x4f\xc9\xfe\xcd\xf8\xac\x74\xfc\x1d\x00\x00\xff\xff\xbc\x8e\x06\xa6\x71\x02\x00\x00" func idtablestakingAdminChange_payoutCdcBytes() ([]byte, error) { return bindataRead( @@ -1930,11 +1930,11 @@ func idtablestakingAdminChange_payoutCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_payout.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x45, 0xe0, 0xc2, 0xb6, 0xd, 0x3d, 0xb2, 0x34, 0x4e, 0x21, 0x73, 0xca, 0x61, 0xb1, 0xc9, 0xe8, 0xa2, 0xce, 0xef, 0x41, 0xea, 0xe2, 0x59, 0xc1, 0x21, 0x3d, 0x1e, 0x9c, 0xca, 0x58, 0x44, 0xca}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf1, 0x15, 0x65, 0x64, 0x1, 0xa4, 0xaa, 0xc1, 0x1e, 0x57, 0x8c, 0x4f, 0xa7, 0xc2, 0xec, 0xde, 0xbc, 0x6d, 0xad, 0x7a, 0xa, 0xf2, 0x6a, 0x7e, 0xb5, 0x8a, 0x77, 0x9a, 0x2e, 0x9e, 0x83, 0xe}} return a, nil } -var _idtablestakingAdminEnd_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xcf\x8a\xdb\x4c\x10\xc4\xef\x7a\x8a\xc2\x87\x0f\x19\x3e\xa4\xbb\x49\xb2\x38\x59\x02\x86\x3d\x84\xd8\xf7\x65\x34\x6a\x59\x13\x4b\xdd\x62\xa6\x65\x25\x2c\x7e\xf7\x30\xfa\xe3\x5d\x67\xd7\x73\x11\x68\xba\xaa\x7e\xd3\xdd\xae\xed\xc4\x2b\xbe\x37\x32\xec\x1e\x0f\xa6\x68\x68\xaf\xe6\xe4\xf8\x88\xca\x4b\x8b\xd5\xfb\x8b\x55\x92\xe4\x39\x0e\xb5\x0b\x50\x6f\x38\x18\xab\x4e\x18\x54\x55\x64\xd5\x9d\xa9\xf9\x03\xe2\x32\x40\x6b\x02\x75\x62\x6b\x18\x2e\x11\xd4\x78\x0d\x30\x60\x1a\x20\x4c\x59\x92\xe7\xd1\x67\xa7\xb0\xd2\x16\x8e\x69\x56\x70\xf9\x1c\x66\x82\xa8\x6b\xe5\x4c\xcf\x2a\x27\xe2\x9b\xb8\x10\xb5\x43\xed\x6c\xfd\x1a\x76\x95\xf5\x63\xc9\xff\xf3\xbd\xa7\xaa\x8f\x25\x2c\x25\x05\x0c\x4e\x6b\x38\x0e\x7d\x55\x39\xeb\x88\x75\x94\x51\xb4\x5b\xe2\x02\xe6\xbc\x82\x74\x20\x62\x14\xbd\x3d\x91\x86\x24\x79\x03\x90\xba\x32\x6c\xf0\xb2\x57\xef\xf8\xb8\xc1\x57\x91\xe6\xb2\xc6\x4b\x92\x00\x40\x9e\xe3\x49\xac\x69\x70\x36\xde\xc5\xd6\xa1\x12\x0f\x13\x51\xc8\x13\x5b\x82\xca\x88\xbc\x7b\xc4\xd8\x5a\x6c\xcb\xd6\x31\xa4\xf8\x45\x56\x47\x8b\x86\x14\x26\xfe\xfc\x49\xd5\x06\xff\xbd\x1f\x43\x36\x4a\xa6\xbc\xce\x53\x67\x3c\xa5\xc6\x5a\xdd\x60\xdb\x6b\xbd\xb5\x56\x7a\xd6\x48\x84\xf9\xe4\x39\x0a\xf1\x5e\x86\x8f\x40\xcc\xbf\xf9\xf1\x04\x6a\xaa\x6c\x81\xc0\x67\x44\xfb\x6c\xf2\xf8\x74\x97\xe8\x4b\x1a\x17\x67\xf3\xc1\x46\x65\xf3\x77\x2c\xdb\xab\x78\x73\xa4\x1f\x46\xeb\xf5\x35\x30\x9e\x87\x07\x74\x86\x9d\x4d\x57\xdf\xa4\x6f\x4a\xb0\xe8\xc2\x7d\x43\x7d\x9d\x76\x74\x5b\x4d\x1e\x97\xa9\x1d\xf4\x9b\x6c\xaf\xf4\xe6\xed\x37\x2f\xc9\x02\xe9\xb6\xeb\xbc\x9c\xa9\x7c\x72\x41\xe3\x28\x5f\x19\xee\x68\x88\xcb\x05\x7f\x5a\xaf\x74\x9d\xdc\x29\x8d\x3b\x74\x18\x37\x28\x5d\xb0\x2e\xc9\xdf\x00\x00\x00\xff\xff\x2f\x6a\xaa\x29\x68\x03\x00\x00" +var _idtablestakingAdminEnd_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x0c\x45\xba\x9b\xb6\xc1\x69\x28\x18\x72\x28\xb5\xe9\x35\xac\x56\x23\x6b\x6b\x79\x46\xec\x8e\xac\x96\xe0\xef\x5e\x56\x7f\x9c\xb8\x89\xf7\x62\xf0\xce\x7b\xef\xa7\xd9\xe7\x8e\xad\x78\xc5\xf7\x46\xfa\xcd\xe3\xce\x14\x0d\x6d\xd5\x1c\x1c\xef\x51\x79\x39\x62\xf1\xfe\x62\x91\x24\x79\x8e\x5d\xed\x02\xd4\x1b\x0e\xc6\xaa\x13\x06\x55\x15\x59\x75\x27\x6a\xfe\x82\xb8\x0c\xd0\x9a\x40\xad\xd8\x1a\x86\x4b\x04\x35\x5e\x03\x0c\x98\x7a\x08\x53\x96\xe4\x79\xf4\xd9\x28\xac\x1c\x0b\xc7\x34\x29\xb8\x7c\x0e\x13\x41\xd4\x1d\xe5\x44\xcf\x2a\x07\xe2\xab\xb8\x10\xb5\x7d\xed\x6c\xfd\x1a\x76\x91\x75\xc3\xc8\xa7\xe9\xde\x53\xd5\xc5\x11\x96\x92\x02\x7a\xa7\x35\x1c\x87\xae\xaa\x9c\x75\xc4\x3a\xc8\x28\xda\xcd\x71\x01\x53\x5e\x41\xda\x13\x31\x8a\xce\x1e\x48\x43\x92\xbc\x01\x48\x5d\x19\x56\x78\xd9\xaa\x77\xbc\x5f\xe1\x41\xa4\x39\x2f\xf1\x92\x24\x00\x90\xe7\x78\x12\x6b\x1a\x9c\x8c\x77\x71\x75\xa8\xc4\xc3\x44\x14\xf2\xc4\x96\xa0\x32\x20\x6f\x1e\x31\xac\x16\xeb\xf2\xe8\x18\x52\xfc\x26\xab\x83\x45\x43\x0a\x13\xff\xfc\x49\xd5\x0a\x77\xef\x9f\x21\x1b\x24\x63\x5e\xeb\xa9\x35\x9e\x52\x63\xad\xae\x60\x3a\xad\xd3\x07\xf1\x5e\xfa\x5f\xa6\xe9\x68\x89\xbb\xb5\xb5\xd2\xb1\x46\x40\x4c\x27\xcf\x51\x0c\x33\x1f\x71\x99\xff\x71\xe2\x09\xd4\x54\xd9\xcc\x84\x2f\x88\x69\x59\x50\xf1\x66\x4f\xd9\xe8\xf5\xf9\x26\xe8\xd7\x34\xf6\x69\xf5\x41\xd1\xb2\xe9\x77\x18\xdb\x8e\x76\x3f\x8c\xd6\xcb\x4b\x70\x3c\xf7\xf7\x68\x0d\x3b\x9b\x2e\xbe\x49\xd7\x94\x60\xd1\x99\xff\x8a\xfe\x52\x82\xe8\xb6\x18\x3d\xce\xe3\x96\xe8\x0f\xd9\x4e\xe9\xcd\x0e\xae\xbe\x28\x0b\xa4\xeb\xb6\xf5\x72\xa2\xf2\xc9\x05\x8d\x2f\xfc\xca\x70\x43\x43\x5c\xce\xf8\x63\xeb\xd2\x65\x72\x63\x34\x56\x6b\x37\x14\x2b\x9d\xb1\xce\xc9\xbf\x00\x00\x00\xff\xff\x3e\x55\xc6\xa8\x7f\x03\x00\x00" func idtablestakingAdminEnd_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1950,11 +1950,11 @@ func idtablestakingAdminEnd_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/end_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x32, 0x98, 0xb1, 0x28, 0xfb, 0x71, 0x79, 0x2a, 0xdc, 0xb4, 0xe1, 0x28, 0xbb, 0x32, 0x25, 0x97, 0xeb, 0x6, 0x49, 0x43, 0x13, 0x3e, 0x2b, 0x7a, 0x93, 0x8c, 0x1c, 0x7d, 0xaa, 0x6, 0x32, 0x8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa5, 0xd5, 0xe5, 0x1d, 0x36, 0xba, 0x41, 0xf1, 0xae, 0xd2, 0x8d, 0x31, 0x74, 0x62, 0x19, 0xb2, 0x61, 0x6b, 0x50, 0x1f, 0x71, 0xba, 0x69, 0x3e, 0x60, 0x96, 0x66, 0xa, 0xc, 0x6, 0x77, 0xa7}} return a, nil } -var _idtablestakingAdminEnd_epoch_change_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\x4d\x6b\xdb\x40\x10\xbd\xeb\x57\x3c\x7c\x28\x32\x04\xe9\x52\x7a\x10\x6d\x83\xdb\x34\x60\xc8\x21\xd4\xee\x39\xac\x56\x23\x6b\x6b\x69\x47\xec\x8e\xac\x84\xe0\xff\x5e\x56\x1f\x6e\x53\xdb\x99\x8b\x40\x3b\xef\x63\x66\x9e\x69\x5a\x76\x82\xfb\x9a\xfb\xf5\xdd\x56\xe5\x35\x6d\x44\xed\x8d\xdd\xa1\x74\xdc\x60\x71\xfe\xb0\x88\xa2\x34\xc5\xb6\x32\x1e\xe2\x94\xf5\x4a\x8b\x61\x0b\x2a\x4b\xd2\x62\x0e\x54\xbf\x80\x6c\xe1\x21\x15\x81\x5a\xd6\x15\x94\x2d\xe0\x45\x39\xf1\x50\xb0\xd4\x83\x2d\x25\x51\x9a\x06\x9e\xb5\x40\x73\x93\x1b\x4b\x13\xc2\x16\x4f\x7e\x72\x10\x70\x0d\x1f\xe8\x49\x78\x4f\xf6\x8d\x9c\x0f\xd8\xbe\x32\xba\xfa\x2b\x76\x82\x75\x43\xcb\xcd\xf4\xee\xa8\xec\x42\x8b\xe5\x82\x3c\x7a\x23\x15\x8c\xf5\x5d\x59\x1a\x6d\xc8\xca\x00\xa3\x40\x37\xcb\x79\x4c\x7a\x39\x49\x4f\x64\x91\x77\x7a\x4f\xe2\xa3\xe8\x1f\x03\xb1\x29\x7c\x86\xd7\x8d\x38\x63\x77\x19\xbe\x31\xd7\xc7\x9b\x30\xdc\xa3\x7a\xe1\x4e\x32\xfc\xba\x37\xcf\x9f\x3e\x2e\xf1\x1a\x45\x00\x90\xa6\x78\x60\xad\x6a\x1c\x94\x33\x61\x9b\x28\xd9\x41\x05\x77\xe4\xc8\x6a\x82\xf0\x30\xc5\xfa\x0e\xc3\xb6\xb1\x2a\x1a\x63\xc1\xf9\x6f\xd2\x32\x50\xd4\x24\x50\xe1\xe7\x4f\x2a\x33\x7c\x38\xbf\x4c\x32\x40\x46\xbd\xd6\x51\xab\x1c\xc5\x4a\x6b\xc9\xb0\xea\xa4\x5a\x69\xcd\x9d\x95\xe0\x08\x53\xa5\x29\x72\x76\x8e\xfb\x4b\x46\xd4\xff\xfa\xa1\x3c\xd5\x65\x32\x9b\xc0\x17\x04\xfa\x64\xe4\xf8\x7c\xd5\xd1\xd7\x38\x64\x29\xbb\x10\xb2\x64\xfa\x0e\x6d\x1b\x61\xa7\x76\xf4\xa8\xa4\x5a\x9e\x04\x43\xdd\xde\xa2\x55\xd6\xe8\x78\xf1\x9d\xbb\xba\x80\x65\x99\x7d\xbf\x71\x7d\x0a\x40\x60\x5b\x8c\x1c\xc7\x71\x1d\xf4\x4c\xba\x13\x9a\xaf\x71\x36\x4a\xe2\x49\x7e\x84\xb0\x6e\xc3\xe9\xc7\x1b\xc6\xa7\x6b\x2e\xdf\x41\xad\xda\xd6\xf1\x81\x8a\x07\xe3\x25\x84\xe2\x6a\x2f\xd9\x62\x9e\x76\x0c\x68\x7c\xb5\x35\xa4\x70\x30\xe2\xe3\x79\x8a\x63\xf4\x27\x00\x00\xff\xff\xd2\xdb\xc3\xe1\xaa\x03\x00\x00" +var _idtablestakingAdminEnd_epoch_change_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\x4d\x6b\xdb\x40\x10\xbd\xeb\x57\x3c\x7c\x08\x32\x04\xe9\x52\x7a\x10\x6d\x83\xd3\x34\x60\xc8\x21\xd4\x6e\xaf\x61\xb5\x1a\x59\x5b\x4b\x3b\x62\x77\x64\x25\x04\xff\xf7\xb2\xfa\x70\x9b\x3a\xee\x5e\x04\xda\xf7\x35\x3b\xcf\x34\x2d\x3b\xc1\x7d\xcd\xfd\xfa\x6e\xab\xf2\x9a\x36\xa2\xf6\xc6\xee\x50\x3a\x6e\xb0\x38\xbf\x58\x44\x51\x9a\x62\x5b\x19\x0f\x71\xca\x7a\xa5\xc5\xb0\x05\x95\x25\x69\x31\x07\xaa\x5f\x40\xb6\xf0\x90\x8a\x40\x2d\xeb\x0a\xca\x16\xf0\xa2\x9c\x78\x28\x58\xea\xc1\x96\x92\x28\x4d\x83\xce\x5a\xa0\xb9\xc9\x8d\xa5\x89\x61\x8b\x27\x3f\x25\x08\xbc\x86\x0f\xf4\x24\xbc\x27\xfb\xc6\xce\x07\x6e\x5f\x19\x5d\xfd\x31\x3b\xd1\xba\x01\x72\x3d\xdd\x3b\x2a\xbb\x00\xb1\x5c\x90\x47\x6f\xa4\x82\xb1\xbe\x2b\x4b\xa3\x0d\x59\x19\x68\x14\xe4\x66\x3b\x8f\xc9\x2f\x27\xe9\x89\x2c\xf2\x4e\xef\x49\x7c\x14\xfd\x15\x20\x36\x85\xcf\xf0\xba\x11\x67\xec\x2e\xc3\x2d\x73\x7d\xbc\x0e\xc3\x3d\xaa\x17\xee\x24\xc3\x8f\x7b\xf3\xfc\xf1\xc3\x12\xaf\x51\x04\x00\x69\x8a\x07\xd6\xaa\xc6\x41\x39\x13\x5e\x13\x25\x3b\xa8\x90\x8e\x1c\x59\x4d\x10\x1e\xa6\x58\xdf\x61\x78\x6d\xac\x8a\xc6\x58\x70\xfe\x8b\xb4\x0c\x12\x35\x09\x54\xf8\xf9\x9d\xca\x0c\x57\xe7\x9b\x49\x06\xca\xe8\xd7\x3a\x6a\x95\xa3\x58\x69\x2d\x19\x54\x27\x55\x7c\xcb\xce\x71\xff\x53\xd5\x1d\x2d\x71\xb5\xd2\x9a\x3b\x2b\x21\x20\xa6\x93\xa6\xc8\x07\xcc\x7b\xb9\xd4\xbf\x71\xc2\xf1\x54\x97\xc9\x9c\x09\x9f\x11\xdc\x12\x2f\xec\xd4\x8e\x92\x51\xeb\xd3\xc5\xa0\x5f\xe2\x50\xb1\xec\x9d\xee\x25\xd3\x77\x80\x6d\x46\xb9\x47\x25\xd5\xf2\x64\x1c\xce\xcd\x0d\x5a\x65\x8d\x8e\x17\x5f\xb9\xab\x0b\x58\x96\x39\xff\x9b\xf4\xa7\x5e\x04\xb5\xc5\xa8\x71\x1c\x5f\x89\x9e\x49\x77\x42\xf3\x92\xce\x46\x4a\x3c\xc9\xb7\xd0\xe1\x6d\x68\xc4\xb8\xda\xf8\xb4\xe4\xe5\x7f\x58\xab\xb6\x75\x7c\xa0\xe2\xc1\x78\x09\x5d\xb9\x88\x25\x5b\xcc\xd3\x8e\xbd\x8d\x2f\x42\x43\x39\x87\x20\x3e\x9e\xa7\x38\x46\xbf\x03\x00\x00\xff\xff\x46\x98\x5c\x53\xc1\x03\x00\x00" func idtablestakingAdminEnd_epoch_change_payoutCdcBytes() ([]byte, error) { return bindataRead( @@ -1970,11 +1970,11 @@ func idtablestakingAdminEnd_epoch_change_payoutCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/end_epoch_change_payout.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdf, 0x64, 0x39, 0xf5, 0xd7, 0x48, 0xa8, 0x6c, 0xfd, 0x2b, 0x3, 0x2f, 0xb, 0xd3, 0x83, 0x39, 0x1e, 0xd9, 0x6e, 0xe1, 0x73, 0xc, 0x9c, 0xd0, 0xa, 0xc9, 0xc9, 0x38, 0xf3, 0x85, 0xce, 0x87}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xe1, 0xca, 0x8e, 0x80, 0xb0, 0x14, 0x45, 0xf0, 0x71, 0xcf, 0x1, 0xe5, 0x2d, 0x72, 0xfa, 0xe3, 0xdc, 0x34, 0x68, 0x34, 0x37, 0x9b, 0x42, 0x1e, 0x3, 0x4d, 0xf4, 0x97, 0xac, 0x8d, 0xa}} return a, nil } -var _idtablestakingAdminEnd_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xd1\x6a\xb3\x40\x10\x85\xef\x7d\x8a\x83\x17\x3f\x06\x7e\xf4\x5e\xda\x06\xdb\x50\x08\xe4\xa2\x34\x79\x81\xcd\x3a\xc6\x6d\xcd\x8e\xec\x8e\xb1\x10\xf2\xee\x65\x35\x86\xb6\x49\xe6\x46\x70\x66\xce\xf9\xc6\xa3\xd9\xb7\xec\x04\xaf\x0d\xf7\xcb\xc5\x46\x6d\x1b\x5a\x8b\xfa\x34\x76\x87\xca\xf1\x1e\xf1\x75\x23\x8e\xa2\x2c\xc3\xa6\x36\x1e\xe2\x94\xf5\x4a\x8b\x61\x0b\xb2\xa5\x87\xd4\x04\x7f\xde\x57\xdd\xd0\xf8\x8f\xbe\x36\xba\x86\xa3\xaa\x0b\x23\x96\x4b\xf2\x08\x12\xbd\x91\x1a\xc6\xfa\xae\xaa\x8c\x36\x64\x65\x58\xa5\x28\xfa\x21\x9b\x98\xd2\xe7\x38\xae\xc5\x19\xbb\xcb\xf1\xcc\xdc\x9c\x66\x38\x46\x11\x00\x64\x19\x56\xac\x55\x83\x83\x72\x26\x10\xa2\x62\x07\x15\xac\xc8\x91\xd5\x04\xe1\x01\x69\xb9\xc0\x70\x01\x8a\x72\x6f\x2c\x78\xfb\x41\x5a\x06\x89\x86\x04\x2a\xbc\x7c\xa7\x2a\xc7\xbf\xeb\x6b\xd3\x61\x65\xf4\x6b\x1d\xb5\xca\x51\xa2\xb4\x96\x1c\x45\x27\x75\xa1\x35\x77\x56\x02\x11\xce\x95\x65\xd8\xb2\x73\xdc\xdf\x02\x51\x7f\xfd\x43\x79\x6a\xaa\x74\x82\xc0\x23\x82\x7c\x3a\x6a\x3c\xdc\x25\x7a\x4a\x42\x3e\xf9\x8d\xe0\xd2\xf3\x73\x18\x5b\x0b\x3b\xb5\xa3\x37\x25\xf5\xec\x62\x18\x6a\x3e\x47\xab\xac\xd1\x49\xfc\xc2\x5d\x53\xc2\xb2\x4c\xdc\xbf\xa8\x2f\x69\x06\xb5\x78\xd4\x38\x8d\x9f\x83\xbe\x48\x77\x42\x53\x1a\x57\xa7\xa4\x9e\xa4\x68\x5b\xc7\x07\x2a\x57\xc6\x4b\xc8\x72\x76\x6f\x96\x6c\x39\x71\x8f\xff\x4d\x32\x79\x9d\xbe\x03\x00\x00\xff\xff\x4d\x67\x31\xf2\xa3\x02\x00\x00" +var _idtablestakingAdminEnd_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x0f\x1f\x82\x0c\x45\xba\x8b\xb6\xc1\x69\x28\x04\x72\x28\x75\xe8\x7d\xbc\x1a\x59\xdb\xae\x77\xc4\xee\x6c\x54\x08\xfe\xef\x65\x57\x56\x68\xeb\x64\x2e\x02\xcd\xcc\x7b\xdf\xe8\xc9\x9e\x26\x09\x8a\xaf\x4e\xe6\x87\xfb\x27\x3a\x38\xde\x2b\xfd\xb2\xfe\x88\x21\xc8\x09\x9b\xeb\xc6\xa6\xaa\xda\x16\x4f\xa3\x8d\xd0\x40\x3e\x92\x51\x2b\x1e\xec\xfb\x08\x1d\x19\xf1\xb2\x4f\xa9\x34\x3e\x60\x1e\xad\x19\x11\x78\x48\x79\xc4\x4b\xcf\x11\x59\x62\xb6\x3a\xc2\xfa\x98\x86\xc1\x1a\xcb\x5e\xcb\x2a\x57\xd5\x5f\xb2\xb5\xed\x63\x87\x97\xbd\x06\xeb\x8f\x1d\xee\x44\xdc\x79\x8b\x97\xaa\x02\x80\xb6\xc5\xa3\x18\x72\x78\xa6\x60\x33\x21\x06\x09\xa0\x6c\xc5\x81\xbd\x61\xa8\x14\xa4\x87\x7b\x94\x0b\xb0\xeb\x4f\xd6\x43\x0e\x3f\xd9\x68\x91\x70\xac\xa0\xfc\xf2\x3b\x0f\x1d\x6e\xae\xaf\x6d\xca\xca\xe2\x37\x05\x9e\x28\x70\x4d\xc6\x68\x07\x4a\x3a\xd6\x77\x12\x82\xcc\x3f\xc8\x25\xde\xe2\x66\x67\x8c\x24\xaf\x19\x10\x97\x6a\x5b\x1c\xca\xcc\x5b\x5c\xf4\x3f\x4e\xae\xc8\x6e\x68\x56\x26\x7c\x42\x76\x6b\xa2\x4a\xa0\x23\x37\x8b\xd6\xc7\x77\x41\x3f\xd7\x39\xb6\xee\x8d\x3c\x9b\xcb\xb3\x8c\xed\x17\xb9\x6f\xa4\xe3\xf6\xd5\x38\xd7\xed\x2d\x26\xf2\xd6\xd4\x9b\x2f\x92\x5c\x0f\x2f\xba\xf2\xff\x43\xff\x1a\x72\x56\xdb\x2c\x1a\xe7\xe5\x2b\xf1\x6f\x36\x49\x79\x0d\xe9\xea\xa4\x26\xb2\xee\xa6\x29\xc8\x33\xf7\x8f\x36\x6a\x8e\x78\xfb\xde\x2c\xfb\x7e\xe5\x5e\x7e\xa7\x7a\xf5\x3a\xff\x09\x00\x00\xff\xff\x12\x49\x6b\xee\xba\x02\x00\x00" func idtablestakingAdminEnd_stakingCdcBytes() ([]byte, error) { return bindataRead( @@ -1990,11 +1990,11 @@ func idtablestakingAdminEnd_stakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/end_staking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xae, 0xdc, 0x3, 0x82, 0x3b, 0x77, 0x26, 0xfd, 0xc5, 0x15, 0xfc, 0xb5, 0xfd, 0xaa, 0x8c, 0x88, 0x2c, 0xd0, 0x8b, 0xd7, 0x63, 0xb6, 0x42, 0x50, 0x3b, 0xa9, 0xb5, 0xb4, 0xc4, 0xaf, 0x86, 0x73}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0xb3, 0xec, 0x2e, 0x69, 0xa9, 0x17, 0x98, 0x82, 0xc1, 0xe2, 0x4f, 0xf2, 0xd4, 0x82, 0xe9, 0x56, 0x9d, 0xb1, 0xdc, 0xbe, 0x9a, 0xd7, 0x2d, 0x12, 0x75, 0x92, 0x64, 0x6, 0x1d, 0x90, 0x10}} return a, nil } -var _idtablestakingAdminMove_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6b\xfa\x40\x10\xc5\xef\xf9\x14\x8f\x1c\xfe\xc4\x4b\x72\x97\x7f\x2b\x52\x29\x08\x3d\x94\xea\x17\x98\xac\x13\x93\x9a\xec\x84\xdd\x89\x16\xc4\xef\x5e\x76\xa3\x45\xab\x9d\x4b\x20\x3b\xf3\xde\x6f\xe6\x35\x5d\x2f\x4e\xf1\xda\xca\x61\xb9\x58\x53\xd9\xf2\x4a\x69\xd7\xd8\x2d\x2a\x27\x1d\xd2\xfb\x87\x34\x49\x8a\x02\xeb\xba\xf1\x50\x47\xd6\x93\xd1\x46\x2c\x3a\xd9\xb3\x87\xca\x8e\xad\x47\xc9\x7a\x60\xb6\x28\x07\xb3\x63\xf5\x49\x72\xdd\x79\x4c\x12\x00\x28\x0a\xbc\x89\xa1\x16\x7b\x72\x4d\xd0\x47\x25\x0e\x04\xc7\x15\x3b\xb6\x86\xa1\x02\xad\x19\xcb\x05\xa2\x3f\xe6\x9b\xae\xb1\x90\xf2\x93\x8d\x46\x89\x96\x15\x14\x7e\x7e\x70\x35\xc5\xbf\x7b\xd6\x3c\x8e\x8c\x7e\xbd\xe3\x9e\x1c\x67\x64\x8c\x4e\x31\x1f\xb4\x9e\x1b\x23\x83\xd5\x09\x8e\xb1\xe1\x0c\x55\x8a\x73\x72\x78\x04\x42\xbf\xfd\x43\x79\x6e\xab\xfc\x02\x81\x27\x04\xf9\x7c\xd4\xf8\xff\x27\xd1\x73\x16\xae\x3b\x7d\x70\xf6\xfc\xfc\x8d\x6d\x2b\x15\x47\x5b\x7e\x27\xad\x27\x3f\x86\xa1\x66\x33\xf4\x64\x1b\x93\xa5\x2f\x32\xb4\x1b\x58\xd1\x0b\xf7\x0d\xb5\x3f\x67\x19\xf9\xd2\x51\xe3\x34\x9e\x83\xbf\xd8\x0c\xca\x57\xbb\xdf\x6c\x92\x87\x3c\xd7\x31\xcd\xec\x32\x77\xfa\x0e\x00\x00\xff\xff\x90\x2d\xa0\xc7\x2d\x02\x00\x00" +var _idtablestakingAdminMove_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6f\x82\x40\x10\x85\xef\xfc\x8a\x17\x0e\x06\x2f\x70\x37\x6d\x8d\xad\x69\x62\xd2\x43\x53\x4d\xef\xc3\x3a\x08\x15\x76\xc8\xee\xa0\x4d\x8c\xff\xbd\x61\xd1\x46\xab\x9d\x0b\x09\xbc\x79\xef\x63\x5e\xd5\xb4\xe2\x14\xaf\xb5\xec\x17\xf3\x15\xe5\x35\x2f\x95\xb6\x95\xdd\xa0\x70\xd2\x20\xbe\xfd\x10\x47\x51\x96\x61\x55\x56\x1e\xea\xc8\x7a\x32\x5a\x89\x45\x23\x3b\xf6\x50\xd9\xb2\xf5\xc8\x59\xf7\xcc\x16\x79\x67\xb6\xac\x3e\x8a\x2e\x95\x87\x28\x02\x80\x2c\xc3\x9b\x18\xaa\xb1\x23\x57\xf5\xfe\x28\xc4\x81\xe0\xb8\x60\xc7\xd6\x30\x54\xa0\x25\x63\x31\x47\xc8\xc7\x6c\xdd\x54\x16\x92\x7f\xb1\xd1\x60\x51\xb3\x82\xfa\x97\x1f\x5c\x4c\x30\xba\x65\x4d\xc3\xca\x90\xd7\x3a\x6e\xc9\x71\x42\xc6\xe8\x04\xd4\x69\x99\x3c\x8b\x73\xb2\xff\xa4\xba\xe3\x31\x46\x33\x63\xa4\xb3\x3a\xc6\x21\xe8\x4f\x8c\x79\xd0\xdc\xe3\xa2\xbf\x38\xfd\x78\xae\x8b\xf4\xcc\x84\x47\xf4\x69\xa9\x57\x71\xb4\xe1\x74\xf0\x7a\xf8\x17\xf4\x29\xe9\x8f\x3e\xb9\xd3\x46\x7a\x7a\x06\xd9\x72\xb0\x7b\x27\x2d\xc7\xbf\xc1\xfd\x4c\xa7\x68\xc9\x56\x26\x89\x5f\xa4\xab\xd7\xb0\xa2\x67\xfe\x2b\x7a\x7f\xaa\x38\x70\xc6\x83\xc7\x71\xb8\x12\x7f\xb3\xe9\x94\x2f\x6e\x70\xf5\x47\x69\x5f\xf3\x2a\x94\x9c\x9c\xf7\x8e\x3f\x01\x00\x00\xff\xff\x2f\xf8\xa5\xef\x44\x02\x00\x00" func idtablestakingAdminMove_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2010,11 +2010,11 @@ func idtablestakingAdminMove_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/move_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb9, 0x2f, 0xf4, 0xd9, 0xd5, 0xf0, 0x8c, 0xe5, 0x6a, 0x8a, 0x18, 0xd4, 0x1f, 0x6e, 0xf5, 0xb6, 0x53, 0xf5, 0xb9, 0x2e, 0xa9, 0x23, 0xf1, 0x3d, 0xe4, 0xa1, 0x36, 0x12, 0xe0, 0x65, 0xa1, 0x58}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8a, 0xe6, 0x9d, 0xb1, 0xe1, 0x26, 0x3, 0x9, 0x1e, 0x94, 0xc0, 0xcd, 0x21, 0x66, 0x45, 0xe1, 0xab, 0xcd, 0x70, 0x3c, 0xff, 0x6a, 0xc3, 0x43, 0xd9, 0x93, 0x7d, 0x60, 0x43, 0xc1, 0xea, 0xaf}} return a, nil } -var _idtablestakingAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4f\x6b\xc2\x40\x10\xc5\xef\xf9\x14\x8f\x1c\x4a\xbc\x24\x77\xa9\x15\xa9\x14\x84\x1e\x8a\xfa\x05\xc6\xcd\xc4\xa4\x6e\x76\xc3\xee\xa4\x56\xc4\xef\x5e\x36\x7f\x8a\x56\x3b\x97\x40\x76\xe6\xbd\xdf\xbc\xa9\xea\xc6\x3a\xc1\x9b\xb6\xc7\xd5\x72\x4b\x3b\xcd\x1b\xa1\x43\x65\xf6\x28\x9c\xad\x11\xdf\x3f\xc4\x51\x94\x65\xd8\x96\x95\x87\x38\x32\x9e\x94\x54\xd6\xa0\xa1\x93\x87\xe3\x23\xb9\xdc\x43\x2c\x48\x6b\x48\xc9\xf0\x42\x07\xce\x61\x6c\xce\x3e\x8a\xae\x27\xce\x51\x04\x00\x59\x86\x77\xab\x48\xe3\x8b\x5c\x15\x7c\x50\x58\x07\x82\xe3\x82\x1d\x1b\xc5\x41\x2d\x28\xad\x96\xe8\x38\xb0\xc8\xeb\xca\xc0\xee\x3e\x59\x49\x27\xa1\x59\x40\xe1\xe7\x9a\x8b\x29\x9e\xee\x99\xd3\x6e\xa4\xf7\x6b\x1c\x37\xe4\x38\x21\xa5\x64\x8a\x45\x2b\xe5\x42\x29\xdb\x1a\x99\xe0\xdc\x35\x0c\x50\x3b\xeb\x9c\x3d\x3e\x02\xa1\xbf\xfe\xa1\x3c\xeb\x22\x1d\x21\x30\x43\x90\x4f\x7b\x8d\xe7\x7f\x89\x5e\x92\x90\xf2\xf4\x41\xfc\xe9\xf0\xed\xda\x36\x62\x1d\xed\xf9\x83\xa4\x9c\xfc\x1a\x86\x9a\xcf\xd1\x90\xa9\x54\x12\xbf\xda\x56\x87\x94\x65\xe4\xbe\xa1\xf6\xc3\x4d\x3b\xbe\xb8\xd7\xb8\xf4\x71\xf0\x37\xab\x56\xf8\x6a\xf7\x90\xa6\x6f\xeb\x9a\xdc\x09\xb3\xdb\xbd\x52\x45\x5a\xb5\x9a\x84\xd7\xfd\xa5\x93\xc9\xe3\x00\xd2\x86\x4e\x63\xcb\xa0\x35\xba\x5e\x7e\x02\x00\x00\xff\xff\x63\xa2\x73\xb4\x73\x02\x00\x00" +var _idtablestakingAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x8f\xda\x30\x10\xc5\xef\xf9\x14\x4f\x39\xa0\xe4\x92\xdc\x51\x29\xa2\x45\x95\x90\x7a\xa8\x00\xf5\x3e\x38\x13\x92\xe2\xd8\x91\x3d\x29\x8b\x10\xdf\x7d\xe5\xfc\x59\xc1\xc2\xfa\x12\x29\x79\xf3\xde\x2f\x6f\x5c\x37\xad\x75\x82\x5f\xda\x9e\x37\xeb\x3d\x1d\x34\xef\x84\x4e\xb5\x39\xa2\x74\xb6\x41\xfc\xfc\x21\x8e\xa2\x3c\xc7\xbe\xaa\x3d\xc4\x91\xf1\xa4\xa4\xb6\x06\x2d\x5d\x3c\x1c\x9f\xc9\x15\x1e\x62\x41\x5a\x43\x2a\x86\x17\x3a\x71\x01\x63\x0b\xf6\x51\x74\x3f\x71\x8d\x22\x00\xc8\x73\xfc\xb6\x8a\x34\xfe\x93\xab\x43\x0e\x4a\xeb\x40\x70\x5c\xb2\x63\xa3\x38\xb8\x05\xa7\xcd\x1a\x3d\x07\x56\x45\x53\x1b\xd8\xc3\x3f\x56\xd2\x5b\x68\x16\x50\x78\xb9\xe5\x72\x8e\xd9\x33\x73\xd6\x8f\x0c\x79\xad\xe3\x96\x1c\x27\xa4\x94\xcc\x41\x9d\x54\xc9\x0f\xeb\x9c\x3d\xff\x25\xdd\x71\x8a\xd9\x4a\x29\xdb\x19\x49\x71\xed\xf5\x23\xe3\xa1\xd7\xbc\xe2\xa2\xcf\x38\xe1\x78\xd6\x65\x36\x31\x61\x81\x90\x96\x79\xb1\x8e\x8e\x9c\x0d\x5e\xdf\xbe\x04\xfd\x9e\x84\xf2\xe7\x2f\xb6\x92\x8d\xcf\x5e\xb6\x1b\xec\xfe\x90\x54\xe9\x47\x70\x38\xcb\x25\x5a\x32\xb5\x4a\xe2\x9f\xb6\xd3\xa1\x7c\x99\xf8\x1f\xe8\xfd\xb8\xea\x9e\x33\x1e\x3c\x6e\x43\x4b\xfc\xc6\xaa\x13\xbe\xeb\x20\x94\xec\xbb\xa6\x21\x77\xc1\xe2\xf1\xff\x32\x45\x5a\x75\x9a\x84\xb7\xc3\x05\x48\xd2\xd7\x45\x64\x2d\x5d\x26\xc9\xe8\x35\xa5\xde\xde\x03\x00\x00\xff\xff\xb9\x2a\x7a\x88\x8a\x02\x00\x00" func idtablestakingAdminPay_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -2030,11 +2030,11 @@ func idtablestakingAdminPay_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/pay_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xb9, 0xbd, 0xe3, 0x6, 0xc8, 0xd5, 0xb2, 0xfc, 0x2b, 0xbf, 0x48, 0x95, 0x5, 0xb, 0x66, 0x5d, 0x94, 0xad, 0x5e, 0x64, 0xc3, 0xa3, 0xee, 0x30, 0xbc, 0xcb, 0x11, 0x4a, 0xe5, 0x88, 0x1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4f, 0x8d, 0xa7, 0xac, 0x1d, 0x3a, 0xd, 0x11, 0x73, 0x2b, 0x80, 0x21, 0x2b, 0xc6, 0x56, 0xc, 0x6, 0x47, 0xe2, 0xfa, 0xd7, 0x8b, 0x96, 0xda, 0x84, 0x45, 0x19, 0xc9, 0x73, 0x5d, 0x9d, 0xff}} return a, nil } -var _idtablestakingAdminRemove_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x4f\x8b\xdb\x3c\x10\xc6\xcf\xd1\xa7\x78\xc8\xe1\xc5\x81\xb7\xf6\x3d\x74\xbb\x84\x86\x42\x60\xe9\x96\x4d\x6e\xcb\x1e\x14\x79\x1c\xab\x55\x24\x23\x4d\x92\x0d\x4b\xbe\x7b\x19\xcb\x6e\xf7\x4f\xaa\x8b\x41\x33\xf3\xcc\x4f\x33\x8f\xed\xbe\x0b\x91\xf1\xcd\x85\xd3\x6a\xb9\xd1\x5b\x47\x6b\xd6\xbf\xac\xdf\xa1\x89\x61\x8f\xe9\xc7\xc0\x54\xa9\xaa\xc2\xa6\xb5\x09\x1c\xb5\x4f\xda\xb0\x0d\x1e\x91\xf6\xe1\x48\x09\x3e\xd4\x84\xd5\x32\xe5\x7a\x6e\x09\xce\x26\x46\x68\xa0\xbb\x2e\x86\x23\xd5\x7d\x4a\x82\xf5\xa2\x23\x09\xab\x25\x58\x1a\x94\x90\x9b\x55\x03\xed\xcf\x52\x90\x63\x09\xcb\x7b\x7c\xbf\xdf\x80\x9e\x45\x48\xbb\x48\xba\x3e\xc3\xfa\x3e\x6e\x6b\xf2\x6c\xf9\x9c\x15\xfe\x07\xb7\x36\xf5\xba\xaf\xd0\x4e\xd6\x39\x44\x3a\x52\x64\x14\x3e\xb0\x14\xed\xbb\xc0\xe4\x79\xa6\xd4\xab\xcc\xc2\xd6\x69\x8e\xc7\x35\x47\xeb\x77\x4f\x33\xbc\x28\x05\x00\x55\x85\xbb\x60\xb4\xc3\x51\x47\x2b\x6d\xd0\x84\x08\x8d\x48\x0d\x45\xf2\x86\xc0\x61\x7c\x48\x3f\x29\x2c\xea\xbd\xf5\x08\xdb\x9f\x64\xb8\x97\x70\xc4\xd0\x72\xf9\x40\xcd\x1c\xff\x7d\x9c\x6a\xd9\x97\xe4\x7e\x5d\xa4\x4e\x47\x2a\xb4\x31\x3c\xc7\xe2\xc0\xed\xc2\x98\x70\xf0\x2c\x44\x18\x4e\x55\x61\x1b\x62\x0c\xa7\x6b\x20\xfa\x7d\x7f\x39\x89\x5c\x53\x8e\x10\xb8\x81\xc8\x97\x59\xe3\xf3\x3f\x89\xbe\x14\xb2\xc7\xf9\x15\x83\x94\xc3\xb7\x4f\x5b\x73\x88\x7a\x47\x3f\x34\xb7\xb3\x3f\x0d\xe5\xdc\xde\xa2\xd3\xde\x9a\x62\xfa\x35\x1c\x9c\xec\x9e\x47\xee\x37\xd4\x69\x70\x5d\xcf\x37\xcd\x1a\x97\x3c\x0e\x7a\x26\x73\x60\xc2\x8b\x9a\xc8\x18\xc5\x3d\xe2\x8a\x9b\x6b\x4c\x3b\xe2\xc5\x60\xb3\x3b\x9b\xb8\xf8\x0b\x73\x0d\x44\x9c\x34\xda\x32\xdb\xb4\x37\x6d\xca\x8f\x99\xce\x94\x9a\x54\xd5\xe0\x6c\x90\x36\x6d\x76\xb7\x9a\xc8\xfe\x33\xc7\x26\x3c\xe4\xb0\xf5\xb0\x75\x12\xc8\xc9\x40\xf8\xf8\x36\xe3\x09\x37\xf0\xd6\xa9\xc9\x25\xcb\x26\xe2\xbc\xab\xf1\xb7\xe8\x01\x86\x05\x7a\x3a\x41\x3b\x17\x4e\x9f\xe4\xf6\xfa\x0a\xcb\xf4\xee\xb1\x43\xdf\x71\x78\x97\xdf\x01\x00\x00\xff\xff\xcd\x51\x4b\xc1\xdc\x03\x00\x00" +var _idtablestakingAdminRemove_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x4f\x6b\xdb\x40\x10\xc5\xcf\xd6\xa7\x78\xf8\x10\x64\x68\xa5\xbb\x69\x1a\xd2\x9a\x82\x21\x34\x25\x31\xbd\x84\x1c\xc6\xd2\xc8\xda\x76\xbd\x2b\x76\xc7\x76\x4c\xf0\x77\x2f\xa3\x95\xda\xfc\x71\xf7\x22\xd8\x99\x79\xf3\xdb\x99\x27\xb3\xed\x7c\x10\x7c\xb3\xfe\xb0\x5c\xac\x68\x6d\xf9\x5e\xe8\xb7\x71\x1b\x34\xc1\x6f\x31\x7d\x1f\x98\x66\x59\x59\x62\xd5\x9a\x08\x09\xe4\x22\x55\x62\xbc\x43\xe0\xad\xdf\x73\x84\xf3\x35\x63\xb9\x88\xa9\x5e\x5a\x86\x35\x51\xe0\x1b\x50\xd7\x05\xbf\xe7\xba\x4f\x89\x30\x4e\x75\x34\x61\xb9\x80\x68\x83\x02\x7a\xb3\x6c\x40\xee\xa8\x05\x29\x16\xb1\xb8\xc5\xf7\xdb\x15\xf8\x49\x85\xc8\x06\xa6\xfa\x08\xe3\xfa\xb8\xa9\xd9\x89\x91\x63\x52\xf8\x00\x69\x4d\xec\x75\x5f\xa0\x1d\x8c\xb5\x08\xbc\xe7\x20\xc8\x9d\x17\x2d\xda\x76\x5e\xd8\xc9\x2c\xcb\x5e\x64\xe6\xa6\x8e\x73\x3c\xdc\x4b\x30\x6e\xf3\x38\xc3\x73\x96\x01\x40\x59\xe2\xc6\x57\x64\xb1\xa7\x60\xb4\x0d\x1a\x1f\x40\x08\xdc\x70\x60\x57\x31\xc4\x8f\x0f\xe9\x27\x85\xeb\x7a\x6b\x1c\xfc\xfa\x17\x57\xd2\x4b\x58\x16\x90\x5e\xde\x71\x33\xc7\xc5\xfb\xa9\x16\x7d\x49\xea\xd7\x05\xee\x28\x70\x4e\x55\x25\x73\xd0\x4e\xda\xfc\x8b\x0f\xc1\x1f\x7e\x92\xdd\xf1\x0c\x17\xd7\x55\xe5\x77\x4e\x14\x10\xc3\x29\x4b\xac\xfb\x9c\x73\x5c\xf4\x16\x47\x4f\x64\xdb\x14\x23\x13\x2e\xa1\xdd\x8a\x28\x3e\xd0\x86\x8b\xa4\xf5\xe9\xbf\xa0\x9f\x73\x5d\xef\xfc\x8c\x6f\x8a\xe1\xdb\xa7\xdd\x27\xb9\x1f\x24\xed\xec\x6f\x63\x3d\x57\x57\xe8\xc8\x99\x2a\x9f\x7e\xf5\x3b\xab\x96\x90\x91\xff\x15\x7d\x1c\xcc\xd8\x73\x4e\x93\xc6\x29\x4d\x89\x9f\xb8\xda\x09\xe3\x39\x9b\xe8\x74\xd5\x54\x6a\x96\xcb\x73\x4c\x1b\x96\xeb\xc1\x7d\x37\x26\x4a\xfe\x0f\xe6\x1c\x88\x1a\x6c\x74\x6b\x72\x6f\xef\xe5\x61\x36\xd3\x59\x96\x4d\xca\x72\x30\x3c\x98\xaa\x36\x99\x3e\x9b\xa8\x2d\x12\xc7\xca\xdf\xa5\xb0\x71\x30\x75\x54\xc8\xc9\x40\xf8\xf0\x3a\xe3\x11\x97\x70\xc6\x66\x93\x53\x92\x8d\x2c\x69\x67\xe3\xdf\xd2\x03\x0c\x8b\x74\x7c\x00\x59\xeb\x0f\x1f\xf5\xf6\xfc\x2a\x8b\xf8\xe6\xb1\x43\xdf\x71\x78\xa7\x3f\x01\x00\x00\xff\xff\x5e\x32\x19\xb8\xf3\x03\x00\x00" func idtablestakingAdminRemove_approved_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2050,11 +2050,11 @@ func idtablestakingAdminRemove_approved_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/remove_approved_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb, 0x54, 0x19, 0xbe, 0xbc, 0xb7, 0x17, 0x46, 0x1a, 0xeb, 0xa1, 0xb8, 0x27, 0xa3, 0xe5, 0xab, 0x10, 0xda, 0xcc, 0x8f, 0x3e, 0xea, 0x17, 0x8, 0x2f, 0xc5, 0xb7, 0x24, 0x70, 0xaa, 0xf, 0x7e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x6e, 0x8d, 0x79, 0xfb, 0x33, 0x46, 0x8c, 0x90, 0xf0, 0x5b, 0xed, 0x99, 0x74, 0x18, 0xe0, 0x89, 0x87, 0xdb, 0x8d, 0x1e, 0x5, 0xba, 0x54, 0x1, 0x90, 0xdb, 0x87, 0xa8, 0x8f, 0x79, 0x8d}} return a, nil } -var _idtablestakingAdminRemove_invalid_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xd1\xaa\xd3\x40\x10\x86\xef\xf3\x14\x3f\xbd\x90\x1c\x90\xe4\x3e\xa8\x87\x6a\x11\x0a\x22\x62\xcf\x0b\x4c\x37\x93\x66\x74\xbb\x13\x76\x27\xad\x70\xe8\xbb\xcb\x6e\x9b\x83\xda\xe3\xdc\x84\x64\x77\xbe\xf9\x26\xbf\x1c\x27\x8d\x86\xcf\x5e\xcf\xdb\xcd\x13\xed\x3d\xef\x8c\x7e\x4a\x38\x60\x88\x7a\xc4\xea\xfe\x60\x55\x55\x6d\x8b\xa7\x51\x12\x2c\x52\x48\xe4\x4c\x34\x80\x43\x9f\x60\x23\x23\xdd\xfa\x69\x2e\x07\x6f\x71\x1e\xc5\x8d\x88\x3c\xcc\xf9\x4a\xd0\x9e\x13\x32\xe2\x2c\x36\x42\x42\x9a\x87\x41\x9c\x70\xb0\xd2\xca\x55\xf5\x07\xb6\x96\x3e\x75\x78\xde\x59\x94\x70\xe8\xf0\x51\xd5\x5f\x1e\xf0\x5c\x55\x00\xd0\xb6\xf8\xa2\x8e\x3c\x4e\x14\x25\x1b\x62\xd0\x08\xca\xa3\x38\x72\x70\x0c\xd3\xa2\xb4\xdd\xa0\x6c\x80\x75\x7f\x94\x00\xdd\xff\x60\x67\x05\xe1\xd9\x40\xf9\xe3\x77\x1e\x3a\xbc\xb9\xdf\xb6\x29\x2d\xd7\x79\x53\xe4\x89\x22\xd7\xe4\x9c\x75\x58\xcf\x36\xae\x9d\xd3\x39\x58\x36\xc2\xad\xda\x16\x7b\x8d\x51\xcf\xaf\x89\xd0\xbf\xf3\x73\x25\xf6\x43\xb3\x48\xe0\x3d\x32\xbe\xb9\x32\xde\xfd\xd7\xe8\x43\x9d\xf3\xe9\x5e\x09\xae\xb9\x3d\xcb\xb5\x9d\x69\xa4\x03\x7f\x23\x1b\x1f\x5e\x06\xe6\x7a\x7c\xc4\x44\x41\x5c\xbd\xfa\xa4\xb3\xef\x11\xd4\x16\xef\xbf\xac\x5f\xd2\xcc\xb4\xd5\x95\x71\xb9\xfe\x0e\xfe\xc5\x6e\x36\x5e\xd2\xb8\x5b\xa5\x89\x7c\xd4\x13\x6f\xc3\x89\xbc\xf4\x5f\x73\xee\x35\x4d\x53\xd4\x13\x97\xb7\xed\x26\x75\x90\x3e\x2d\xd0\xcb\xef\x00\x00\x00\xff\xff\x70\xe3\x67\x73\x8c\x02\x00\x00" +var _idtablestakingAdminRemove_invalid_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x51\x8b\xdb\x30\x0c\xc7\xdf\xf3\x29\xfe\xf4\xe1\x48\x61\x24\xef\x61\xdb\x71\xb7\x32\x28\x8c\x31\xd6\x63\xef\xaa\xa3\x34\xde\x5c\x2b\xd8\x72\x3b\x38\xfa\xdd\x87\x9d\xe6\xd8\xd6\x3b\xbd\x84\xc4\xd2\x4f\x3f\x45\xb6\xc7\x49\x82\xe2\xb3\x93\xf3\x76\xf3\x44\x7b\xc7\x3b\xa5\x5f\xd6\x1f\x30\x04\x39\x62\x75\x7b\xb0\xaa\xaa\xb6\xc5\xd3\x68\x23\x34\x90\x8f\x64\xd4\x8a\x07\xfb\x3e\x42\x47\x46\xbc\xd6\x53\x2a\x07\xef\x70\x1e\xad\x19\x11\x78\x48\x39\xc5\x4b\xcf\x11\x19\x71\xb6\x3a\xc2\xfa\x98\x86\xc1\x1a\xcb\x5e\x4b\x29\x57\xd5\x5f\xd8\xda\xf6\xb1\xc3\xf3\x4e\x83\xf5\x87\x0e\x8f\x22\xee\xb2\xc6\x73\x55\x01\x40\xdb\xe2\x8b\x18\x72\x38\x51\xb0\xd9\x10\x83\x04\x50\x6e\xc5\x81\xbd\x61\xa8\x14\xa5\xed\x06\x65\x02\x3c\xf4\x47\xeb\x21\xfb\x9f\x6c\xb4\x20\x1c\x2b\x28\x7f\xfc\xce\x43\x87\xbb\xdb\x69\x9b\x52\x32\xf7\x9b\x02\x4f\x14\xb8\x26\x63\xb4\x03\x25\x1d\xeb\x47\x09\x41\xce\x3f\xc8\x25\x5e\xe3\xee\xc1\x18\x49\x5e\xb3\x20\xae\xd1\xb6\xd8\x97\x9c\xd7\xbc\xe8\x7f\x9d\x1c\x91\xdd\xd0\x2c\x4e\xf8\x80\xdc\xad\x89\x2a\x81\x0e\xdc\xcc\xac\xf7\x6f\x8a\x7e\xac\xf3\xda\xba\x57\xf6\xd9\x5c\x9f\x25\x6d\x37\xe3\xbe\x91\x8e\xeb\x97\xc6\x39\xee\xef\x31\x91\xb7\xa6\x5e\x7d\x92\xe4\x7a\x78\xd1\xc5\xff\x1f\xfb\x97\x25\x67\xda\x6a\x66\x5c\xe6\xbf\xc4\xbf\xd9\x24\xe5\x65\x49\x37\x23\x35\x81\x8f\x72\xe2\xad\x3f\x91\xb3\xfd\xd7\x7c\x1d\x6a\x9a\xa6\x20\x27\x2e\x6f\xdb\x4d\xec\x60\xfb\xb8\x40\x2f\x7f\x02\x00\x00\xff\xff\xe8\xd6\x99\x50\xa3\x02\x00\x00" func idtablestakingAdminRemove_invalid_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2070,11 +2070,11 @@ func idtablestakingAdminRemove_invalid_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/remove_invalid_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe5, 0xa7, 0xf0, 0x94, 0x84, 0x26, 0x8a, 0xb2, 0xab, 0x4, 0xad, 0x30, 0xc0, 0xe, 0x48, 0xcd, 0xa4, 0x51, 0x13, 0xa8, 0x8f, 0x6d, 0xc8, 0xa9, 0x62, 0x91, 0xe1, 0x8f, 0x34, 0x13, 0xfd, 0xac}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4a, 0x11, 0x96, 0x38, 0x1b, 0x3c, 0x48, 0xf6, 0x63, 0x35, 0x22, 0x35, 0x1f, 0x16, 0xff, 0x98, 0xe8, 0x52, 0xfb, 0xfd, 0x5f, 0x55, 0xbb, 0xc8, 0xeb, 0xb9, 0xd6, 0xcf, 0x53, 0x18, 0x1b, 0x6d}} return a, nil } -var _idtablestakingAdminRemove_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xd1\xaa\xdb\x30\x0c\x86\xef\xf3\x14\x3f\xb9\x18\xe9\x4d\x72\x1f\xb6\x95\xb0\x32\x28\x8c\x31\xda\xbe\x80\x6b\x2b\x8d\xb7\xc4\x0a\x8a\xd2\x76\x8c\xbe\xfb\x70\xd2\x1e\xda\xd3\x1e\xdd\x18\x6c\xeb\xd3\x27\xc9\x77\x3d\x8b\xe2\x7b\xcb\xa7\xf5\x6a\x67\xf6\x2d\x6d\xd5\xfc\xf1\xe1\x80\x5a\xb8\x43\xfa\xfc\x90\x26\x49\x51\x60\xd7\xf8\x01\x2a\x26\x0c\xc6\xaa\xe7\x00\xa1\x8e\x8f\x34\xc0\x04\xd0\xd9\x0f\x1a\x11\x81\x1d\xcd\x1c\x6d\x08\xde\x51\x50\xaf\x7f\xa1\x91\x96\x24\x77\xd9\x99\x77\x25\xb6\x2a\x3e\x1c\x16\xf8\x97\x24\x00\x50\x14\xf8\xc1\xd6\xb4\x38\x1a\xf1\x31\x03\x35\x0b\x0c\x84\x6a\x12\x0a\x96\xa0\x3c\x71\xd7\x2b\x4c\x7e\xa8\x5c\xe7\x03\x78\xff\x9b\xac\x4e\x88\x96\x14\x26\x5e\x6e\xa8\x2e\xf1\xe9\xb9\x97\x7c\x4a\x99\xeb\xf5\x42\xbd\x11\xca\x8c\xb5\x5a\xa2\x1a\xb5\xa9\xac\xe5\x31\x68\x34\xc2\x35\x8a\x02\x7b\x16\xe1\xd3\x2b\x11\xf3\xbe\x7e\x8c\x81\xda\x3a\xbf\x49\xe0\x0b\x22\x3e\x9f\x19\x9f\x3f\x34\xfa\x9a\xc5\xa9\x95\x2f\xd6\x92\x5f\xcf\xe9\xdb\x56\x59\xcc\x81\x7e\x19\x6d\x16\x6f\x05\x63\x2c\x97\xe8\x4d\xf0\x36\x4b\xbf\xf1\xd8\x3a\x04\xd6\x9b\xf7\x83\xf5\x70\xdd\xf5\xe4\x97\xce\x8c\xcb\x3c\x0e\x3a\x93\x1d\x95\xee\x7a\x7f\xe8\x24\x9f\xf7\x5d\x05\xb7\xa1\x7a\x0c\xee\x27\x3b\xda\x90\x65\x71\x99\x77\x37\xd0\xe5\x7f\x00\x00\x00\xff\xff\xf8\x49\x91\xd2\x5e\x02\x00\x00" +var _idtablestakingAdminRemove_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\xcb\xda\x40\x10\x86\xef\xf9\x15\x2f\x39\x48\xbc\x24\xf7\xd0\x56\x6c\xa5\x20\x94\x52\x54\x7a\x1f\x77\x27\x66\xdb\x64\x27\x6c\x26\x6a\x29\xfe\xf7\xb2\x89\x16\xfd\xf4\x9b\x4b\x20\x99\x79\xe6\x99\xc9\xb8\xb6\x93\xa0\xf8\xda\xc8\x69\xbd\xda\xd1\xbe\xe1\xad\xd2\x6f\xe7\x0f\xa8\x82\xb4\x48\x9f\x3f\xa4\x49\x52\x14\xd8\xd5\xae\x87\x06\xf2\x3d\x19\x75\xe2\x11\xb8\x95\x23\xf7\x20\x0f\x3e\xbb\x5e\x23\xc2\x8b\xe5\x89\xa3\x35\xc3\x59\xf6\xea\xf4\x0f\x34\xd2\x92\xe4\xae\x3a\x73\xb6\xc4\x56\x83\xf3\x87\x39\xfe\x26\x09\x00\x14\x05\xbe\x89\xa1\x06\x47\x0a\x2e\x56\xa0\x92\x00\x42\xe0\x8a\x03\x7b\xc3\x50\x19\xb9\xeb\x15\x46\x3f\x2c\x6d\xeb\x3c\x64\xff\x8b\x8d\x8e\x88\x86\x15\x14\x5f\x6e\xb8\x2a\x31\x7b\x9e\x25\x1f\x4b\xa6\x7e\x5d\xe0\x8e\x02\x67\x64\x8c\x96\xa0\x41\xeb\xec\xb3\x84\x20\xa7\x9f\xd4\x0c\x3c\xc7\x6c\x69\x8c\x0c\x5e\xa3\x20\xae\x51\x14\xd8\x8f\x39\xaf\xbc\xe8\xad\x4e\x8c\x9e\x9b\x2a\xbf\x39\xe1\x23\x62\xb7\xbc\x57\x09\x74\xe0\x7c\x62\x7d\x78\x57\xf4\x53\x16\x97\x59\xbe\xf8\x5b\xf9\xf5\x39\xa6\x6d\x27\xdc\x0f\xd2\x7a\xfe\xbf\x71\x8c\xc5\x02\x1d\x79\x67\xb2\xf4\x8b\x0c\x8d\x85\x17\xbd\xf9\x3f\xd8\xf7\xd7\x13\x18\x3d\xd3\x89\x71\x99\xb6\xc4\x67\x36\x83\xf2\xdd\x0e\x1e\x26\xca\xa7\x33\x58\x7a\xbb\xe1\x6a\xf0\xf6\xbb\x58\xde\xb0\x91\x60\x33\x67\x6f\xa0\xcb\xbf\x00\x00\x00\xff\xff\x4d\x37\x98\xf0\x75\x02\x00\x00" func idtablestakingAdminRemove_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -2090,11 +2090,11 @@ func idtablestakingAdminRemove_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/remove_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0x1c, 0x3b, 0x65, 0x4e, 0x7c, 0xbf, 0x6a, 0xa4, 0x9b, 0xa5, 0x30, 0x7d, 0x56, 0xb4, 0x80, 0x56, 0x8, 0xa6, 0xd1, 0xfb, 0xe6, 0x70, 0x62, 0x6, 0x22, 0xc0, 0xcd, 0x4f, 0x6c, 0xb1, 0x3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xca, 0x33, 0x14, 0xe6, 0x42, 0xf6, 0x32, 0x5d, 0x3b, 0x1b, 0xdf, 0xdd, 0xb5, 0x64, 0x5f, 0x18, 0x98, 0xfb, 0x4e, 0xc9, 0x81, 0x63, 0x57, 0x72, 0xf2, 0x1e, 0xc1, 0x11, 0xaa, 0xbc, 0x19, 0x24}} return a, nil } -var _idtablestakingAdminScale_rewards_testCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x4d\x6b\xf3\x30\x10\x84\xef\xfa\x15\xfb\xfa\xe4\x40\x30\xf6\x5b\x72\x31\xf8\x90\x12\x02\xb9\xf4\xd0\x8f\x53\xe9\x61\x2b\x6d\x5d\x13\x45\x0a\xab\x0d\x3e\x84\xfc\xf7\xa2\x24\x76\x3e\xeb\xea\x60\x58\x3c\xf3\x68\x66\xd5\xac\xd6\x9e\x05\xe6\xd6\xb7\x8b\xd9\x2b\x7e\x5a\x7a\x11\x5c\x36\xae\x86\x2f\xf6\x2b\x48\x6e\x7f\x24\x4a\x09\xa3\x0b\xa8\xa5\xf1\x0e\xb6\x4a\x01\x00\xac\x99\xd6\xc8\x94\xa2\xd6\x52\xc2\x74\x23\xdf\x53\xad\xfd\xc6\xc9\x08\xb6\x7b\x41\x3c\x96\x04\x98\x5a\x64\x13\x1e\x99\x70\x69\x7c\xeb\xa0\xba\x73\x79\xf6\x7c\xa5\x4a\x9d\x37\xb4\x98\x95\x90\xe4\xc7\x53\x24\x23\xd5\x83\xaf\xa1\x59\x20\x79\xf2\x86\x8e\x98\xb4\xc8\xf3\x3c\xcb\x47\x83\xfa\x19\x59\xaa\x51\x3c\x1f\x4c\xa9\xe9\xe6\x78\x6d\x01\x18\xe0\x6d\xe1\xe4\xe1\xff\xb8\x73\x97\x50\x1c\xa8\x03\x58\x8d\x96\xa6\xd6\x76\x39\xe2\xdc\xb8\x7a\x8e\x5a\x3c\x97\x90\x67\x93\x53\x26\x0c\x81\x58\xd2\x7e\xbe\x0b\x74\xa7\x52\x50\x55\x30\x89\x01\xc6\x17\x96\x15\x85\x80\x35\x95\x90\xb4\xec\x5d\x0d\xd1\xd1\x71\x60\x9f\x27\xe9\xf5\x67\xd1\xe3\xd3\x98\xcb\x0d\x04\xa8\x6e\x03\x5c\x6b\xde\xcf\x36\xf3\xf1\x4f\x0d\xb6\xb9\xe5\xc7\x06\x7f\x15\xe8\x5d\xbf\xb7\x88\xdf\x9d\xda\xfd\x04\x00\x00\xff\xff\xe5\x73\x97\xfb\xcc\x02\x00\x00" +var _idtablestakingAdminScale_rewards_testCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x3f\x6b\xc3\x30\x10\xc5\x77\x7d\x8a\xab\x87\xe2\x40\x30\x76\x4b\x16\x83\x87\x94\x10\xc8\xd2\xa1\x7f\xa6\xd2\xe1\x2a\x5d\x8d\x89\x22\x85\xd3\x15\x0f\x21\xdf\xbd\x28\x89\x9d\xbf\x75\x35\x18\x0e\xbd\xf7\xd3\x7b\xe7\x66\xb5\xf6\x2c\x30\xb7\xbe\x5d\xcc\xde\xf0\xcb\xd2\xab\xe0\xb2\x71\x35\x7c\xb3\x5f\x41\x72\x7d\x91\x28\x25\x8c\x2e\xa0\x96\xc6\x3b\xd8\x28\x05\x00\xb0\x66\x5a\x23\x53\x8a\x5a\x4b\x09\xf7\x53\xad\xfd\x8f\x93\x11\x6c\x76\xb7\xf1\x58\x12\x60\x6a\x91\x4d\x78\x62\xc2\xa5\xf1\xad\x83\xea\xc6\xcb\xd9\xcb\x85\x2a\x75\xde\xd0\x62\x56\x42\x92\x1f\x4e\x91\x8c\x54\x0f\xbe\x84\x66\x81\xe4\xd9\x1b\x3a\x60\xd2\x22\xcf\xf3\x2c\x1f\x0d\xea\x67\x64\xa9\x46\xf1\xbc\x37\xa5\xa6\x9b\xe3\xb3\x05\x60\x80\xf7\x85\x93\xc7\x87\x71\xe7\x2e\xa1\xd8\x53\x07\xb0\x1a\x2d\x4d\xad\xed\x72\xc4\xb9\x71\xf5\x1c\xb5\x78\x2e\x21\xcf\x26\xc7\x4c\x18\x02\xb1\xa4\xfd\x7c\x13\xe8\x8e\xa5\xa0\xaa\x60\x12\x03\x8c\xcf\x2c\x2b\x0a\x01\x6b\x2a\x21\x69\xd9\xbb\x1a\xa2\xa3\xe3\xc0\x2e\x4f\xd2\xeb\x4f\xa2\xc7\x5f\x63\xce\x37\x10\xa0\xba\x0e\x70\xa9\xf9\x38\xd9\xcc\xe7\x9d\x1a\x6c\x73\xcd\x8f\x0d\xfe\x2b\xd0\xbb\xfe\x6e\x11\xbf\x5b\xb5\xfd\x0d\x00\x00\xff\xff\xbe\x67\xb1\xec\xc9\x02\x00\x00" func idtablestakingAdminScale_rewards_testCdcBytes() ([]byte, error) { return bindataRead( @@ -2110,11 +2110,11 @@ func idtablestakingAdminScale_rewards_testCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/scale_rewards_test.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0x35, 0x18, 0xe8, 0xff, 0xdc, 0xc9, 0x24, 0xd5, 0xc5, 0x34, 0x32, 0x66, 0x15, 0x77, 0x59, 0x65, 0xf3, 0x40, 0xf2, 0xd4, 0xb4, 0x1a, 0x1d, 0x5b, 0xe8, 0x1b, 0xb1, 0x34, 0x5d, 0xf4, 0x96}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0xfb, 0xe0, 0xff, 0xc8, 0xd5, 0x10, 0x1a, 0xf1, 0x22, 0x4, 0x38, 0x3f, 0xc9, 0xbd, 0xd9, 0x0, 0xa9, 0xb3, 0x36, 0xcf, 0x67, 0xb1, 0x7e, 0xbe, 0xe4, 0x70, 0x2b, 0x92, 0xff, 0x37, 0x16}} return a, nil } -var _idtablestakingAdminSet_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcd\x8e\xe2\x30\x10\x84\xef\x79\x8a\x52\x0e\xab\x70\x49\xee\xd1\xee\xa2\xec\xa2\x95\x90\x38\xac\x06\x5e\xc0\x38\x1d\xe2\x19\xe3\x8e\xec\x0e\x8c\x84\x78\xf7\x91\xf3\x33\x82\x81\xe9\x8b\x25\xb7\xab\xfa\x6b\x97\x39\x76\xec\x05\xff\x2c\x9f\xd7\xab\x9d\xda\x5b\xda\x8a\x7a\x33\xee\x80\xc6\xf3\x11\xe9\x63\x23\x4d\x92\xa2\xc0\xae\x35\x01\xe2\x95\x0b\x4a\x8b\x61\x87\x40\x12\x20\x2d\xc1\x9a\x20\xe0\x06\xaa\xeb\x3c\x9f\xa8\x86\xe3\x9a\x02\x8c\x1b\xba\xeb\x15\x24\x9a\x25\xc9\x8d\x38\x33\x75\x28\x71\xd9\x8a\x37\xee\x50\xe2\x0f\xb3\xbd\x2e\x70\x49\x12\x00\x28\x0a\x6c\x58\x2b\x8b\x93\xf2\x26\x4a\xd1\xb0\x87\x82\xa7\x86\x3c\x39\x4d\x10\x9e\xad\x07\x4e\x54\xf5\xd1\x38\xf0\xfe\x95\xb4\x0c\x16\x96\x04\x2a\x5e\xbe\x50\x53\xe2\xc7\xe3\x4e\xf9\x20\x19\xe7\x75\x9e\x3a\xe5\x29\x53\x5a\x4b\x89\xaa\x97\xb6\xd2\x9a\x7b\x27\x91\x08\x53\x15\x05\xf6\xec\x3d\x9f\x9f\x81\xa8\xaf\xf3\x63\x05\xb2\x4d\x3e\x43\xe0\x17\xa2\x7d\x3e\x7a\xfc\xfc\x96\xe8\x77\x16\x53\x28\x9f\xc4\x93\x4f\xe7\xf0\x6c\x2b\xec\xd5\x81\xfe\x2b\x69\x17\x9f\x03\x63\x2d\x97\xe8\x94\x33\x3a\x4b\xff\x72\x6f\x63\x14\x32\x73\xdf\x51\x87\x29\xf3\x81\x2f\x1d\x3d\xae\xe3\x77\xd0\x3b\xe9\x5e\xe8\x66\xf7\xbb\x4d\xf2\x40\x52\x4d\x49\x6f\x4c\x90\x18\xe5\xac\xbf\x7e\x04\x00\x00\xff\xff\x22\xcb\x1e\xc9\x5d\x02\x00\x00" +var _idtablestakingAdminSet_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x8b\xdb\x30\x10\xc5\xef\xfe\x14\x0f\x1f\x16\xe7\x62\xdf\x4d\xdb\x25\xdb\xa5\xb0\xb0\x87\xd2\x84\xde\x27\xf2\x38\x56\xab\x68\x8c\x34\x4e\x0a\x21\xdf\xbd\xc8\x7f\x4a\xd2\x64\xe7\x62\xb0\xf4\xde\xfc\x34\x6f\xec\xa1\x97\xa0\xf8\xe6\xe4\xf4\xf6\xba\xa5\x9d\xe3\x8d\xd2\x6f\xeb\xf7\x68\x83\x1c\x90\xdf\x1f\xe4\x59\x56\x55\xd8\x76\x36\x42\x03\xf9\x48\x46\xad\x78\x44\xd6\x08\xed\x18\xce\x46\x85\xb4\xa0\xbe\x0f\x72\xe4\x06\x5e\x1a\x8e\xb0\x7e\x3c\x7d\x7b\x85\x26\xb3\x2c\xbb\x12\x17\xb6\x89\x35\xce\x1b\x0d\xd6\xef\x6b\xbc\x88\xb8\xcb\x0a\xe7\x2c\x03\x80\xaa\xc2\xbb\x18\x72\x38\x52\xb0\x49\x8a\x56\x02\x08\x81\x5b\x0e\xec\x0d\x43\x65\xb1\x1e\x39\xb1\x6e\x0e\xd6\x43\x76\xbf\xd8\xe8\x68\xe1\x58\x41\xe9\xe7\x0f\x6e\x6b\x3c\xdd\xbf\xa9\x1c\x25\x53\xbf\x3e\x70\x4f\x81\x0b\x32\x46\x6b\xd0\xa0\x5d\xf1\x22\x21\xc8\xe9\x27\xb9\x81\x57\x78\x5a\x1b\x23\x83\xd7\x04\x88\xb9\xaa\x0a\xbb\xf1\xce\x23\x2e\xfa\x1f\x27\x55\x64\xd7\x96\x0b\x13\x3e\x23\x75\x2b\xa3\x4a\xa0\x3d\x97\x93\xd7\xa7\x0f\x41\xbf\x14\x29\x9c\xfa\x41\x6a\xe5\xfc\x1d\xaf\x6d\x26\xbb\xef\xa4\xdd\xea\x5f\xe3\x54\xcf\xcf\xe8\xc9\x5b\x53\xe4\x5f\x65\x70\x29\x21\x5d\xf8\x6f\xe8\xe3\xbc\x0a\x23\x67\x3e\x79\x5c\xa6\x29\xf1\x1f\x36\x83\xf2\xd5\x0c\x6e\x5e\x54\x46\xd6\xf5\xbc\x00\xef\x36\x6a\x4a\x78\xd1\x5f\xfe\x06\x00\x00\xff\xff\xff\xfc\x9f\x93\x74\x02\x00\x00" func idtablestakingAdminSet_approved_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2130,11 +2130,11 @@ func idtablestakingAdminSet_approved_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_approved_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4e, 0xf5, 0x5e, 0xd4, 0x2, 0xba, 0x9d, 0xd1, 0x51, 0xf6, 0x6e, 0xb7, 0x2a, 0x17, 0xe0, 0xb1, 0x3f, 0x21, 0xee, 0xf3, 0x89, 0xab, 0x7a, 0xcf, 0xb5, 0x20, 0xba, 0xe5, 0x80, 0x74, 0x1d, 0xfb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x44, 0xa0, 0xfc, 0x5d, 0x65, 0x80, 0xeb, 0x76, 0x1e, 0x7, 0x24, 0x56, 0x7b, 0x94, 0x24, 0x0, 0x60, 0xd1, 0x2c, 0xd8, 0x6d, 0xd5, 0x84, 0xca, 0x73, 0x54, 0x45, 0x90, 0x97, 0x72, 0x4f, 0x64}} return a, nil } -var _idtablestakingAdminSet_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xc1\xce\xda\x40\x0c\x84\xef\x79\x8a\x51\x0e\x55\xb8\x24\x77\xd4\x16\x21\x50\x25\xa4\x1e\xaa\xc2\x0b\x98\x8d\x43\xb6\x6c\x76\x23\xaf\x53\x5a\x21\xde\xbd\xda\x84\x54\xff\xff\x03\xbe\x44\xca\xda\x33\x9f\xc7\xb6\xeb\x83\x28\xbe\xb9\x70\xd9\x6d\x0f\x74\x74\xbc\x57\x3a\x5b\x7f\x42\x23\xa1\x43\xfe\xf8\x90\x67\x59\x55\xe1\xd0\xda\x08\x15\xf2\x91\x8c\xda\xe0\xd1\xd3\xdf\x08\xe1\x0b\x49\x1d\xa1\x01\xe4\x1c\xb4\x65\x44\xa5\x33\xd7\xf0\xa1\xe6\x98\x65\x6f\x27\xae\x59\x06\x00\x55\x85\xef\xc1\x90\xc3\x6f\x12\x9b\x7c\xd0\x04\x01\x41\xb8\x61\x61\x6f\x38\xa9\x25\xa5\xdd\x16\x23\x07\xd6\x75\x67\x3d\xc2\xf1\x17\x1b\x1d\x25\x1c\x2b\x28\xfd\xfc\xc9\xcd\x12\x9f\x1e\x99\xcb\x71\x64\xf2\xeb\x85\x7b\x12\x2e\xc8\x18\x5d\x62\x3d\x68\xbb\x36\x26\x0c\x5e\x17\x33\xd1\x9d\xea\x18\x44\xc2\xe5\x19\x09\x7d\x04\x48\x15\xd9\x35\xe5\x4c\x81\x2f\x48\xfa\xe5\xa4\xf1\xf9\x25\xd2\xd7\x22\xc5\xbc\x7c\x92\x7f\x79\xff\x8e\x6d\x7b\x0d\x42\x27\xfe\x41\xda\x2e\xfe\x1b\xa6\x5a\xad\xd0\x93\xb7\xa6\xc8\x37\x61\x70\x29\x66\x9d\xb9\xdf\x51\xc7\xfb\x51\x47\xbe\x7c\xd2\xb8\x4d\xdb\xf2\x1f\x36\x83\x32\xae\xcf\x37\x29\x23\xeb\xc6\x91\xed\xb8\x2e\x16\xaf\x5a\x94\x44\x67\xde\x61\xbc\x6e\x31\x7b\xdc\xfe\x05\x00\x00\xff\xff\x85\x4e\x29\x18\x62\x02\x00\x00" +var _idtablestakingAdminSet_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6f\xe2\x30\x10\x85\xef\xf9\x15\x4f\x39\xa0\xe4\x92\xdc\xd1\xee\x22\x16\xb4\x12\xd2\x1e\x56\x0b\xea\x7d\x70\x26\xc4\xc5\xb1\x23\x7b\x52\x5a\x21\xfe\x7b\xe5\x84\x54\x6d\x81\xb9\x44\x8a\x67\xde\xfb\x66\x9e\x6e\x3b\xe7\x05\x7f\x8c\x3b\x6d\xd6\x3b\xda\x1b\xde\x0a\x1d\xb5\x3d\xa0\xf6\xae\x45\x7a\xfb\x90\x26\x49\x59\x62\xd7\xe8\x00\xf1\x64\x03\x29\xd1\xce\xa2\xa3\xb7\x00\xcf\x27\xf2\x55\x80\x38\x90\x31\x90\x86\x11\x84\x8e\x5c\xc1\xba\x8a\x43\x92\x7c\x9e\x38\x27\x09\x00\x94\x25\xfe\x3a\x45\x06\x2f\xe4\x75\xf4\x41\xed\x3c\x08\x9e\x6b\xf6\x6c\x15\x47\xb5\xa8\xb4\x59\x63\xe0\xc0\xb2\x6a\xb5\x85\xdb\x3f\xb3\x92\x41\xc2\xb0\x80\xe2\xcf\xff\x5c\xcf\x31\xbb\x65\x2e\x86\x91\xd1\xaf\xf3\xdc\x91\xe7\x8c\x94\x92\x39\xa8\x97\x26\xfb\xed\xbc\x77\xa7\x27\x32\x3d\xe7\x98\x2d\x95\x72\xbd\x95\x7c\x02\xbc\x42\xee\x87\xa6\x7b\x60\xf4\x9d\x27\x56\x60\x53\x17\x13\x14\x7e\x22\xda\x15\x41\x9c\xa7\x03\x17\xa3\xd6\x8f\x87\xa4\xbf\xb2\x78\xfd\xf9\x9d\x58\x8a\xeb\x77\x68\xdb\x8e\x72\xff\x48\x9a\xfc\xc3\x38\xd6\x62\x81\x8e\xac\x56\x59\xba\x72\xbd\x89\xd7\x97\x89\xff\x0b\x7d\xb8\x66\x3d\x70\xa6\xa3\xc6\x65\xdc\x9a\x5f\x59\xf5\xc2\x38\xdf\xdf\xa8\x08\x2c\x2b\x43\xba\xe5\x2a\xcb\x1f\xb5\x08\x79\x99\x78\xfb\x21\xf4\x6c\xf2\xb8\xbc\x07\x00\x00\xff\xff\x58\x92\xe9\x95\x79\x02\x00\x00" func idtablestakingAdminSet_claimedCdcBytes() ([]byte, error) { return bindataRead( @@ -2150,11 +2150,11 @@ func idtablestakingAdminSet_claimedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_claimed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0x90, 0x4c, 0x34, 0xe1, 0xfd, 0x39, 0x36, 0xc, 0x6e, 0x70, 0x8e, 0x70, 0x82, 0x3f, 0xfa, 0x98, 0xea, 0xfc, 0x54, 0x4f, 0x39, 0x92, 0x8b, 0x95, 0x54, 0x9b, 0xe0, 0x3b, 0x9b, 0xc8, 0x57}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0xd5, 0xa0, 0x15, 0x9, 0x9e, 0xf5, 0xc0, 0xaf, 0xa2, 0x3e, 0xd3, 0x54, 0x30, 0xef, 0xcb, 0x9, 0xa1, 0x94, 0xb6, 0x48, 0x83, 0xf2, 0x39, 0xb2, 0xac, 0x3a, 0xf1, 0x6, 0x97, 0xdc, 0x21}} return a, nil } -var _idtablestakingAdminSet_node_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x51\xab\xd3\x40\x10\x85\xdf\xf3\x2b\x0e\x79\x90\x14\x24\x79\x11\x1f\x82\x5a\x8a\x45\x08\x88\x88\xad\xf8\x3c\xdd\x4c\x92\xd5\x74\x27\xec\x4e\x6c\x41\xfa\xdf\x65\x93\xf6\xde\xf6\xb6\x77\x5e\x06\x76\x77\xce\xf9\x66\x8f\xdd\x0f\xe2\x15\x5f\x7a\x39\x54\xeb\x2d\xed\x7a\xde\x28\xfd\xb1\xae\x45\xe3\x65\x8f\xf4\xfe\x22\x4d\x92\xa2\xc0\xb6\xb3\x01\xea\xc9\x05\x32\x6a\xc5\x21\xb0\x06\x68\xc7\xb0\xce\xaa\xa5\xfe\x17\xdb\xb6\x53\x48\x03\x72\xe0\xa3\x0d\x1a\x45\x9d\xd4\x9c\x5c\x8d\x65\xb6\x2e\xb1\x51\x6f\x5d\xfb\x16\x87\x69\xa4\xc4\xcf\xca\xe9\xfb\x77\x0b\xfc\x4b\x12\x00\x28\x0a\x7c\x15\x43\x3d\xfe\x92\xb7\x11\x04\x8d\x78\x10\x3c\x37\xec\xd9\x19\x86\xca\xe4\x5c\xad\x31\x81\x62\x55\xef\xad\x83\xec\x7e\xb3\xd1\x49\xa2\x67\x05\xc5\xc3\x1f\xdc\x94\x78\x73\xbf\x54\x3e\x8d\xcc\x7e\x83\xe7\x81\x3c\x67\x64\x8c\x96\x58\x8d\xda\xad\x8c\x91\xd1\x69\x24\xc2\xb9\x8a\x02\x3b\xf1\x5e\x0e\x8f\x40\xe8\xa5\x7f\xac\xc0\x7d\x93\x5f\x20\xf0\x11\x51\x3e\x9f\x35\x3e\xbc\x4a\xf4\x29\x8b\x31\x94\x0f\xf2\xc9\xcf\x7d\x7a\xb6\x51\xf1\xd4\xf2\x77\xd2\x6e\xf1\x64\x18\x6b\xb9\xc4\x40\xce\x9a\x2c\xfd\x2c\x63\x5f\xc3\x89\x5e\xb8\x6f\xa8\xc3\x39\xf4\x89\x2f\x9d\x35\x4e\xf3\x77\xf0\x91\xcd\xa8\x7c\xb5\xfb\xcd\x26\x79\x60\xfd\x26\x35\xcf\x79\x67\x31\xe0\x6a\x5d\xc2\xd6\xcf\x79\xce\xfd\x22\x7a\xfa\x1f\x00\x00\xff\xff\x22\xe7\xf3\xd7\x73\x02\x00\x00" +var _idtablestakingAdminSet_node_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x8b\xd4\x40\x10\x85\xef\xf9\x15\x8f\x1c\x96\x0c\x48\x72\x11\x0f\x41\x5d\x56\x07\x21\x20\x22\xce\xaa\xe7\x9a\x4e\x25\x69\xed\xe9\x0a\xdd\x15\x67\x41\xf6\xbf\x4b\x77\x66\x74\xd7\x9d\xad\x4b\x43\xd2\xf5\xde\xd7\xf5\xca\x1e\x66\x09\x8a\x0f\x4e\x8e\xdd\xf6\x96\xf6\x8e\x77\x4a\x3f\xad\x1f\x31\x04\x39\xa0\x7c\xfa\xa3\x2c\x8a\xa6\xc1\xed\x64\x23\x34\x90\x8f\x64\xd4\x8a\x47\x64\x8d\xd0\x89\x61\xbd\x55\x4b\xee\x3b\xdb\x71\x52\xc8\x00\xf2\xe0\x3b\x1b\x35\x89\x7a\xe9\xb9\x78\xd0\x56\xd9\xbe\xc5\x4e\x83\xf5\xe3\x0b\x1c\x73\x4b\x8b\xaf\x9d\xd7\x57\x2f\x37\xf8\x5d\x14\x00\xd0\x34\xf8\x28\x86\x1c\x7e\x51\xb0\x09\x04\x83\x04\x10\x02\x0f\x1c\xd8\x1b\x86\x4a\x76\xee\xb6\xc8\xa0\xb8\xe9\x0f\xd6\x43\xf6\x3f\xd8\x68\x96\x70\xac\xa0\xf4\xf1\x0b\x0f\x2d\xae\x9e\x3e\xaa\xce\x2d\xab\xdf\x1c\x78\xa6\xc0\x15\x19\xa3\x2d\x68\xd1\xa9\x7a\x27\x21\xc8\xf1\x1b\xb9\x85\x37\xb8\xba\x31\x46\x16\xaf\x09\x10\xa7\x6a\x1a\xec\xf3\x9d\x4b\x5c\xf4\x3f\x4e\xaa\xc8\x6e\xa8\xcf\x4c\x78\x83\xe4\x56\x47\x95\x40\x23\xd7\xab\xd6\xeb\x67\x41\xdf\x56\x29\x9d\xf6\x42\x6c\xf5\xe9\xcc\xd7\x76\xab\xdc\x67\xd2\x69\xf3\xd7\x38\xd5\xf5\x35\x66\xf2\xd6\x54\xe5\x7b\x59\x5c\x0f\x2f\x7a\xe6\x7f\x44\x1f\x4f\xbb\x90\x39\xcb\x55\xe3\x7e\x9d\x12\xdf\xb1\x59\x94\x1f\xcc\xe0\xd1\x8b\xea\xc8\xfa\x49\x7a\x5e\xd7\xa0\x4a\xb9\x77\xdb\x16\xb6\xff\x17\xf3\x7a\x9e\x45\xef\xff\x04\x00\x00\xff\xff\xf3\x29\x18\xae\x8a\x02\x00\x00" func idtablestakingAdminSet_node_weightCdcBytes() ([]byte, error) { return bindataRead( @@ -2170,11 +2170,11 @@ func idtablestakingAdminSet_node_weightCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_node_weight.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0xb0, 0xc4, 0xd1, 0xa, 0x8b, 0x34, 0xa9, 0x8a, 0xc4, 0xc4, 0x53, 0x48, 0xd6, 0xe6, 0xd9, 0x43, 0x25, 0x84, 0xe, 0xe1, 0x70, 0x90, 0xaa, 0xdc, 0x93, 0x77, 0xc1, 0x92, 0xb, 0xec, 0xde}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x83, 0x38, 0x72, 0x86, 0x8a, 0x4f, 0x3d, 0x9e, 0x30, 0x9c, 0x8f, 0x8a, 0x50, 0xc1, 0x8, 0x15, 0x7, 0x30, 0xda, 0xd0, 0x81, 0x97, 0xb8, 0x37, 0xfe, 0x1b, 0x35, 0xa, 0xf0, 0x51, 0x3b, 0x4}} return a, nil } -var _idtablestakingAdminSet_non_operationalCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x0f\x1f\x8a\x73\x91\x72\x28\x3d\x88\xba\xc1\x34\x04\x02\x21\x2d\x75\x7a\x0a\x39\x8c\x77\x47\xd6\xb6\xeb\x1d\xb1\x3b\xae\x02\xc6\xff\xbd\xac\x64\xb9\x6e\x9d\xce\x45\xa0\x99\x7d\xf3\xcd\xbc\x71\xdb\x4e\xa2\xe2\xce\x4b\x7f\x7f\xfb\x44\x6b\xcf\x2b\xa5\x9f\x2e\x6c\xd0\x44\xd9\x62\x76\x99\x98\x15\x45\x55\xe1\xa9\x75\x09\x1a\x29\x24\x32\xea\x24\x20\xb1\x26\x68\xcb\xf0\x2e\x29\xa4\x41\x10\xcb\x09\x7d\x2b\xa0\xc8\x08\x12\x20\x1d\x47\xca\xc5\xe4\xb3\x04\x05\x9b\xd3\x89\x11\xb9\xa7\x68\x13\x7a\xe7\x3d\xd6\x8c\xde\x69\xdb\xb2\xb7\x45\x71\xd6\x61\xee\x6c\xaa\xf1\xbc\xd2\xe8\xc2\xe6\xe5\x0a\xfb\xa2\x00\x80\xaa\xc2\x83\x18\xf2\xf8\x45\xd1\x65\x4c\x34\x12\x41\x88\xdc\x70\xe4\x60\x18\x2a\x03\xd7\xfd\x2d\x86\x31\xb0\xb4\x5b\x17\x20\xeb\x1f\x6c\x74\x90\xf0\xac\xa0\xfc\xf3\x1b\x37\x35\xde\x5d\x8e\x5c\x0e\x4f\xc6\x7e\x5d\xe4\x8e\x22\xcf\xc9\x18\xad\xb1\xdc\x69\xbb\x34\x46\x76\x41\x33\x11\x8e\x51\x55\x58\x4b\x8c\xd2\xbf\x05\x42\xff\xf6\xcf\x91\xd8\x37\xe5\x04\x81\x05\xb2\x7c\x39\x6a\x7c\xfc\x2f\xd1\xa7\x79\x36\xa9\x7e\xc3\xbd\xf2\xf8\x1d\xca\x56\x2a\x91\x36\xfc\x95\xb4\xbd\x3a\x35\xcc\x71\x73\x83\x8e\x82\x33\xf3\xd9\x67\xd9\x79\x8b\x20\x3a\x71\xff\x45\x9d\x8e\x27\x31\xf0\xcd\x46\x8d\xc3\xb8\x0e\x7e\x65\xb3\x53\x3e\x9b\x3d\x6f\x33\x7b\xff\xe0\x92\xd6\xd8\x8f\x7e\xd5\xf8\x7e\xe7\x5e\x3f\xbc\x3f\x60\x81\xfd\xe1\x54\x9b\xad\x72\x16\x2e\xc0\xd9\x74\xa6\x91\x63\xd2\x78\x76\xf6\x05\x0b\x5c\x97\xd7\xa7\xf4\xb1\xf7\xc5\xde\xca\xc4\xfa\x28\xe1\xcb\x9f\x3b\x7b\xcc\x47\x98\x55\xe6\x93\xdc\x44\x7f\xf8\x1d\x00\x00\xff\xff\x5c\xa8\xb2\xe1\xfa\x02\x00\x00" +var _idtablestakingAdminSet_non_operationalCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x7c\x91\x72\x28\x3d\x88\xba\x21\x6d\x08\x04\x42\x5a\xea\xb4\x97\x90\xc3\x78\x77\x64\x6d\xbb\xde\x31\xbb\xe3\x2a\x60\xfc\xdd\xcb\x4a\xb6\xeb\xd6\xc9\x5c\x04\x9a\xd9\xf7\x7e\xf3\xc7\xad\xd6\x12\x15\xb7\x5e\xfa\xbb\x9b\x47\x5a\x78\x9e\x2b\xfd\x72\x61\x89\x36\xca\x0a\x93\xf3\xc4\xa4\x28\xea\x1a\x8f\x9d\x4b\xd0\x48\x21\x91\x51\x27\x01\x89\x35\x41\x3b\x86\x77\x49\x21\x2d\x82\x58\x4e\xe8\x3b\x01\x45\x46\x90\x00\x59\x73\xa4\x5c\x4c\x3e\x4b\x50\xb0\x39\x9d\x18\x91\x7b\x8a\x36\xa1\x77\xde\x63\xc1\xe8\x9d\x76\x1d\x7b\x5b\x14\x27\x0e\xa5\xb3\xa9\xc1\xd3\x5c\xa3\x0b\xcb\xe7\x29\xb6\x45\x01\x00\x75\x8d\x7b\x31\xe4\xf1\x9b\xa2\xcb\x98\x68\x25\x82\x10\xb9\xe5\xc8\xc1\x30\x54\x06\xae\xbb\x1b\x0c\x6d\xe0\xda\xae\x5c\x80\x2c\x7e\xb2\xd1\x41\xc2\xb3\x82\xf2\xcf\x6f\xdc\x36\xb8\x38\x6f\xb9\x1a\x9e\x8c\x7e\xeb\xc8\x6b\x8a\x5c\x92\x31\xda\x80\x36\xda\x95\x9f\x24\x46\xe9\x7f\x90\xdf\xf0\x14\x17\xd7\xc6\xc8\x26\x68\x06\xc4\x3e\xea\x1a\x8b\xa1\xe6\x35\x2e\xfa\x1f\x27\x47\x62\xdf\x56\x07\x26\xcc\x90\xdd\xaa\xa4\x12\x69\xc9\xd5\xa8\xf5\xe1\x4d\xd0\x8f\x65\xde\x5d\xf3\xca\x52\xab\xfd\x77\x28\x9b\x8f\x72\x5f\x49\xbb\xe9\xd1\x38\xc7\xd5\x15\xd6\x14\x9c\x29\x27\x9f\x65\xe3\x2d\x82\xe8\x81\xff\x1f\xfa\xb4\xbf\x94\x81\x73\x32\x6a\xec\xc6\x29\xf1\x0b\x9b\x8d\xf2\xc9\x0c\xf2\x90\xf3\x49\xdc\xbb\xa4\x0d\xb6\xe3\x1a\x1b\x7c\xbf\x75\x2f\xef\xdf\xed\x30\xc3\x76\x77\xac\xcd\x1b\x74\x16\x2e\xc0\xd9\x74\xa2\x91\xe3\xa0\xf1\xe4\xec\x33\x66\xb8\xac\x2e\x8f\xe9\xbd\xf7\xd9\xfc\xaa\xc4\xfa\x20\xe1\xcb\xdf\xf3\x7b\xc8\xb7\x99\x55\xca\x83\xdc\x81\x7e\xf7\x27\x00\x00\xff\xff\x8f\xd3\xc9\x6a\x11\x03\x00\x00" func idtablestakingAdminSet_non_operationalCdcBytes() ([]byte, error) { return bindataRead( @@ -2190,11 +2190,11 @@ func idtablestakingAdminSet_non_operationalCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_non_operational.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xda, 0x80, 0xb, 0x74, 0xc0, 0xe8, 0xa0, 0x89, 0x3e, 0xf2, 0x6c, 0x42, 0x5c, 0xba, 0xf9, 0xd4, 0x7f, 0x1c, 0xfa, 0x6a, 0xbd, 0x1a, 0x48, 0xf6, 0xde, 0xc6, 0x24, 0x66, 0x2b, 0x1d, 0x45, 0x7d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0x68, 0xc4, 0x60, 0xca, 0x3c, 0x78, 0xdf, 0x66, 0x1d, 0xb4, 0xe3, 0xec, 0x5f, 0xa3, 0xa7, 0x1f, 0xe1, 0x64, 0x1e, 0xd3, 0xcf, 0x20, 0xfe, 0xff, 0x7b, 0x98, 0xdb, 0xaa, 0x39, 0x72, 0xcc}} return a, nil } -var _idtablestakingAdminSet_slot_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x53\xc1\x6e\xd3\x40\x10\xbd\xe7\x2b\x1e\x39\xa0\x54\xa5\x0e\x91\x28\xaa\x22\x42\x55\x51\x21\x45\xf4\x80\x68\x39\x21\x0e\xd3\xf5\x38\x5e\x6a\xef\x5a\xbb\xe3\xa6\x56\x95\x7f\x47\xbb\x9b\xc6\x71\x1a\x98\x4b\x14\xef\xcc\x7b\x6f\x66\xde\xe8\xba\xb1\x4e\xf0\xb5\xb2\xeb\xe5\xf5\x1d\xdd\x57\x7c\x2b\xf4\xa0\xcd\x0a\x85\xb3\x35\xc6\xaf\x1f\xc6\xa3\xd1\x74\x8a\xbb\x52\x7b\x88\x23\xe3\x49\x89\xb6\x06\x9e\xc5\x43\x4a\x86\xaf\xac\xa0\xd2\xb5\x16\x8f\xc2\x3a\x30\xa9\x12\xc6\xe6\x0c\xe9\x1a\x46\xac\x0e\x39\x37\x29\x45\x7b\x10\x7e\x2e\x8d\xcc\x3e\x82\x9c\xa3\x0e\x52\x92\x40\x59\x23\xa4\x4d\x82\x8c\x68\x01\x2c\xd4\x1e\xe0\x69\x03\xeb\x72\x76\x49\xef\xfb\xb3\x0f\x19\x96\x12\x50\x5b\xcf\x39\xc4\xa2\xb1\x4d\x5b\x91\x70\xa8\x25\xe4\x3a\xca\x25\xb7\xe5\x29\xc9\xe3\x81\x3b\x0f\x5f\xea\x42\x38\xc7\xe9\x0c\xde\xa6\x37\x29\xb9\x03\x55\x7a\x65\x42\xed\x5a\x4b\x19\xd5\xb0\x69\x6b\x76\x14\x92\x77\x32\x7c\xa2\x9f\x9d\x9d\x8f\x46\x7b\x53\x99\xf4\x8d\xce\xf1\x2b\x75\xf9\xfb\x04\xcf\xa3\x11\x00\x4c\xa7\xb8\xb1\x8a\x2a\x3c\x92\xd3\x61\xc2\x71\x5e\x04\xc7\x05\x3b\x36\x8a\x83\xfc\xc0\xb8\xbc\x46\xdc\x00\xae\xf2\x3a\xf4\x7b\xff\x87\x95\x44\x88\x8a\x05\x14\x3e\xfe\xe0\x62\x8e\xb7\xaf\xb7\x95\xc5\x92\xc4\xd7\x38\x6e\xc8\xf1\x84\x94\x92\x39\xae\x5a\x29\xaf\x94\xb2\xad\x91\xa0\x08\xdb\x98\x4e\x71\x6f\x9d\xb3\xeb\x63\x42\xe8\x90\x3f\x84\xe7\xaa\xc8\x5e\x44\x60\x81\x00\x9f\x25\x8c\x4f\xff\x54\xf4\x79\x12\x06\x36\x3f\x62\xbc\x6c\xfb\x1b\xd3\x6e\xc5\x3a\x5a\xf1\x77\x92\xf2\x64\x47\x18\xe2\xf2\x12\x0d\x19\xad\x26\xe3\x2f\xb6\xad\xc2\x26\xe4\x45\xf7\x40\xb5\xdf\xba\x39\xea\x1b\x27\x8c\x4d\x1a\x07\x3f\xb1\x6a\x85\x87\xbd\x47\x50\xe8\x02\x6b\x46\x6e\x23\xac\x6f\x58\xe9\xa2\x03\x3f\x91\x92\xaa\x83\x35\xfb\x26\x47\xc3\x2e\xf9\xc0\xd9\x8a\x77\x50\xba\xd8\x33\x79\x56\xb1\x59\x49\x89\x37\x0b\x9c\xef\xd1\xc5\x9d\xa4\x26\xf6\x2f\x89\xdc\xaa\xad\xd9\x08\xea\xd6\xf7\xec\xff\x63\x1d\xf7\xb3\xd9\xf6\x16\xe2\x91\x5c\xaf\xe1\x7a\xe7\xfb\x39\x9e\x83\x11\x2f\xe6\xdb\xab\xdb\x60\x81\xe7\xcd\xa0\xaa\x3f\x92\x6f\xdc\xa5\xbc\x0b\x2c\x30\xeb\xb1\x83\x51\x77\xd8\xe1\x06\xf7\x2e\x7a\xd8\xe0\x11\x05\x99\x36\x9e\x9d\x4c\x1e\x02\xf8\x80\xeb\x5d\x9f\x3e\x5c\xf7\x20\x0b\x8b\x83\xff\xa7\x98\x1d\x1b\xc0\xc0\x98\x99\x67\xb9\xdd\x89\x1c\x1c\xe6\x11\x89\x2f\x46\xd9\xfc\x0d\x00\x00\xff\xff\xf0\xca\x70\xbe\x20\x05\x00\x00" +var _idtablestakingAdminSet_slot_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x53\x41\x4f\x1b\x3d\x10\xbd\xe7\x57\xbc\x2f\x07\x14\xc4\xc7\xa6\x91\x4a\x85\xa2\xa6\x88\x16\x55\x8a\xca\xa1\x2a\xb4\x97\xaa\x87\xc1\x99\xcd\xba\x38\xf6\xca\x9e\x25\xac\x50\xfe\x7b\x65\x3b\x64\xb3\x90\x76\x2e\x51\xd6\x33\xef\xbd\x99\x79\xa3\x57\xb5\xf3\x82\xcf\xc6\xad\xe7\x57\xb7\x74\x67\xf8\x46\xe8\x5e\xdb\x25\x4a\xef\x56\x18\xbe\x7e\x18\x0e\x06\xe3\x31\x6e\x2b\x1d\x20\x9e\x6c\x20\x25\xda\x59\x04\x96\x00\xa9\x18\xc1\x38\x81\xd1\x2b\x2d\x01\xa5\xf3\x60\x52\x15\xac\x5b\x30\xa4\xad\x19\xa9\x3a\xe6\x5c\xe7\x14\x1d\x40\xf8\x3e\xb7\x32\x79\x07\xf2\x9e\x5a\x48\x45\x02\xe5\xac\x90\xb6\x19\x32\xa1\x45\xb0\x58\xfb\x02\x4f\x5b\x38\xbf\x60\x9f\xf5\xbe\x39\x7d\x5b\x60\x2e\x11\xb5\x09\xbc\x80\x38\xd4\xae\x6e\x0c\x09\xc7\x5a\xc2\x42\x27\xb9\xe4\xb7\x3c\x15\x05\xdc\x73\x1b\x10\x2a\x5d\x0a\x2f\x70\x32\x41\x70\xf9\x4d\x2a\x6e\x41\x46\x2f\x6d\xac\x5d\x6b\xa9\x92\x1a\xb6\xcd\x8a\x3d\xc5\xe4\x9d\x8c\x90\xe9\x27\xa7\x67\x83\xc1\xde\x54\x46\x5d\xa3\x53\xfc\xcc\x5d\xfe\x3a\xc6\xd3\x60\x00\x00\xe3\x31\xae\x9d\x22\x83\x07\xf2\x3a\x4e\x38\xcd\x8b\xe0\xb9\x64\xcf\x56\x71\x94\x1f\x19\xe7\x57\x48\x1b\xc0\xe5\x62\x15\xfb\xbd\xfb\xcd\x4a\x12\x84\x61\x01\xc5\x8f\xdf\xb8\x9c\xe2\xe8\xf5\xb6\x8a\x54\x92\xf9\x6a\xcf\x35\x79\x1e\x91\x52\x32\x05\x35\x52\x8d\x3e\x3a\xef\xdd\xfa\x07\x99\x86\x8f\x71\x74\xa9\x94\x6b\xac\x44\x81\xd8\xc6\x78\x8c\xbb\x94\x73\x48\x17\xbd\x94\x13\x23\xb0\x29\x8b\x67\x4d\x98\x21\xb2\x15\x41\x9c\xa7\x25\x17\x19\xeb\xfd\x5f\x85\x7e\x18\xc5\x39\x4e\x0f\xf8\xb1\xd8\xfe\xa6\xb4\x9b\x0c\xf7\x95\xa4\x3a\xde\x11\xc7\xb8\xb8\x40\x4d\x56\xab\xd1\xf0\x93\x6b\x4c\x5c\x90\x3c\xeb\xef\xa9\x0f\x5b\x93\x27\x9d\xc3\x8c\xb1\xc9\x53\xe2\x47\x56\x8d\x70\x7f\x06\x09\x14\xba\xc4\x9a\xb1\x70\x09\x36\xd4\xac\x74\xd9\x82\x1f\x49\x89\x69\xe1\xec\xbe\xf7\x51\xb3\xcf\xf6\xf0\xce\xf0\x0e\x4a\x97\x7b\xde\x2f\x0c\xdb\xa5\x54\xf8\x6f\x86\xb3\x3d\xba\xb4\xaa\xdc\xc4\xfe\x81\x91\x5f\x36\x2b\xb6\x82\x55\x13\x3a\xf6\x7f\xb1\x0e\xbb\xd9\x6c\x7b\x8b\xf1\x40\xbe\xd3\x70\xb5\x3b\x87\x29\x9e\xa2\x3f\xcf\xa7\xdb\x63\xdc\x60\x86\xa7\x4d\xaf\xaa\xbb\x9d\x2f\xdc\xe6\xbc\x73\xcc\x30\xe9\xb0\xa3\x7f\x77\xd8\xf1\x34\xf7\x0e\xbd\xdf\xe0\x01\x05\x85\xb6\x81\xbd\x8c\xee\x23\x78\x8f\xeb\xff\x2e\xbd\xbf\xee\x5e\x16\x66\x2f\xfe\x9f\x60\x72\x68\x00\x3d\x83\x16\x81\xe5\x66\x27\xb2\x77\xaf\x07\x24\x3e\x1b\x65\xf3\x27\x00\x00\xff\xff\x09\x74\xf0\x87\x37\x05\x00\x00" func idtablestakingAdminSet_slot_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -2210,11 +2210,11 @@ func idtablestakingAdminSet_slot_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_slot_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7d, 0x39, 0x48, 0x1e, 0xf8, 0xc0, 0x10, 0xf6, 0x86, 0xbc, 0xa3, 0x90, 0xc4, 0x27, 0x35, 0x3d, 0x45, 0x60, 0x84, 0xa7, 0x53, 0xd6, 0xc6, 0xc, 0x78, 0x4a, 0xaf, 0x55, 0x99, 0x2d, 0x99, 0x6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0xd0, 0x50, 0x62, 0x30, 0xf3, 0x1b, 0xb4, 0x2d, 0xdd, 0x2b, 0xfc, 0xc0, 0xec, 0xf7, 0x83, 0x11, 0x42, 0x76, 0x98, 0x3f, 0x47, 0xf7, 0x12, 0xc5, 0xa7, 0xab, 0xc6, 0x46, 0xc9, 0xb5, 0xff}} return a, nil } -var _idtablestakingAdminStart_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xc1\x6e\xf2\x40\x0c\x84\xef\x79\x8a\x51\x0e\xbf\xc2\x25\xb9\xa3\xbf\x45\xa8\xa8\x12\x52\x0f\x55\xe1\x05\xcc\xc6\x21\x29\xcb\x6e\xe4\x75\x4a\x2b\xc4\xbb\x57\x9b\x90\x0a\x0a\xf5\x25\x52\xd6\x9e\xf9\x3c\x6e\xf6\xad\x17\xc5\xb3\xf5\x87\xe5\x62\x4d\x1b\xcb\x2b\xa5\x5d\xe3\xb6\xa8\xc4\xef\x91\xde\x3e\xa4\x49\x52\x14\x58\xd7\x4d\x80\x0a\xb9\x40\x46\x1b\xef\xd0\xd2\x57\x80\xf0\x81\xa4\x0c\x50\x0f\xb2\x16\x5a\x33\x82\xd2\x8e\x4b\x38\x5f\x72\x48\x92\xcb\x89\x63\x92\x00\x40\x51\xe0\xc5\x1b\xb2\xf8\x20\x69\xa2\x0f\x2a\x2f\x20\x08\x57\x2c\xec\x0c\x47\xb5\xa8\xb4\x5c\xa0\xe7\xc0\xbc\xdc\x37\x0e\x7e\xf3\xce\x46\x7b\x09\xcb\x0a\x8a\x3f\xdf\xb8\x9a\xe2\xdf\x2d\x73\xde\x8f\x0c\x7e\xad\x70\x4b\xc2\x19\x19\xa3\x53\xcc\x3b\xad\xe7\xc6\xf8\xce\xe9\x04\xc7\xbe\xe1\x0c\xb5\xf1\x22\xfe\x70\x0f\x84\x7e\xfb\xc7\x0a\x6c\xab\x7c\x84\xc0\x03\xa2\x7c\x3e\x68\xfc\xff\x93\xe8\x31\x8b\x29\x4f\xef\xc4\x9f\x9f\xbf\x7d\xdb\x4a\xbd\xd0\x96\x5f\x49\xeb\xc9\x8f\x61\xac\xd9\x0c\x2d\xb9\xc6\x64\xe9\x93\xef\x6c\x4c\x59\x47\xee\x2b\xea\x70\xbe\x69\xcf\x97\x0e\x1a\xa7\x21\x0e\xfe\x64\xd3\x29\x5f\xec\x7e\xb5\x49\x1e\x94\x44\x47\x98\xae\xbf\x5c\x36\x0a\x9c\xbe\x03\x00\x00\xff\xff\xe8\x24\xf9\xa5\x3e\x02\x00\x00" +var _idtablestakingAdminStart_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x31\x6f\xc2\x30\x10\x85\xf7\xfc\x8a\xa7\x0c\x28\x2c\xc9\x8e\xda\x22\x5a\x54\x09\xa9\x43\x55\x50\xf7\xc3\xb9\x90\x14\x63\x47\xf6\xa5\xb4\x42\xfc\xf7\xca\x0e\xa9\xa0\xd0\x5b\x2c\xd9\x77\xef\x7d\x7e\xd7\xec\x5a\xeb\x04\xcf\xda\xee\x17\xf3\x15\xad\x35\x2f\x85\xb6\x8d\xd9\xa0\x72\x76\x87\xf4\xfa\x21\x4d\x92\xa2\xc0\xaa\x6e\x3c\xc4\x91\xf1\xa4\xa4\xb1\x06\x2d\x7d\x7b\x38\xde\x93\x2b\x3d\xc4\x82\xb4\x86\xd4\x0c\x2f\xb4\xe5\x12\xc6\x96\xec\x93\xe4\x7c\xe2\x90\x24\x00\x50\x14\x78\xb1\x8a\x34\x3e\xc9\x35\xc1\x07\x95\x75\x20\x38\xae\xd8\xb1\x51\x1c\xd4\x82\xd2\x62\x8e\xc8\x81\x59\xb9\x6b\x0c\xec\xfa\x83\x95\x44\x09\xcd\x02\x0a\x97\x6f\x5c\x4d\x30\xba\x66\xce\xe3\x48\xef\xd7\x3a\x6e\xc9\x71\x46\x4a\xc9\x04\xd4\x49\x9d\x3d\x5a\xe7\xec\xfe\x9d\x74\xc7\x63\x8c\x66\x4a\xd9\xce\xc8\x18\x87\xd8\x7f\x62\x5c\xc7\x9e\x5b\x5c\xf4\x17\x27\x94\x67\x5d\xe5\x03\x13\xee\x11\xdc\x72\x2f\xd6\xd1\x86\xf3\x5e\xeb\xee\x5f\xd0\x87\x2c\x84\x3f\xb9\xb1\x95\xfc\x74\xc6\xb6\x65\x2f\xf7\x4a\x52\x8f\x7f\x8d\x43\x4d\xa7\x68\xc9\x34\x2a\x4b\x9f\x6c\xa7\x43\xf8\x32\xf0\x5f\xd0\xfb\xd3\xaa\x23\x67\xda\x6b\x1c\xfb\x94\xf8\x8b\x55\x27\x7c\x96\xc1\xc5\x8f\x72\x2f\xe4\x64\x80\xe9\xe2\x42\xb3\x41\xe0\xf8\x13\x00\x00\xff\xff\x18\xdb\x97\xa0\x55\x02\x00\x00" func idtablestakingAdminStart_stakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2230,7 +2230,7 @@ func idtablestakingAdminStart_stakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/start_staking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x90, 0x3a, 0x3b, 0xca, 0x9f, 0x24, 0x17, 0x89, 0xd3, 0x4d, 0x3b, 0x6d, 0x12, 0xfc, 0xe2, 0xe9, 0x6e, 0xb1, 0xfa, 0x4b, 0xb7, 0xa0, 0x69, 0x52, 0x9e, 0x93, 0xb4, 0xc5, 0xc4, 0xc2, 0xb7, 0xc5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0xae, 0x60, 0x65, 0xba, 0x40, 0xc1, 0x30, 0x64, 0xff, 0xc4, 0x97, 0x57, 0xf8, 0x6d, 0x7d, 0x89, 0xc3, 0x8c, 0xef, 0x8b, 0xca, 0x84, 0xfb, 0x5c, 0xb5, 0x0, 0x2e, 0xf, 0xce, 0xda, 0x60}} return a, nil } @@ -2254,7 +2254,7 @@ func idtablestakingAdminTransfer_adminCdc() (*asset, error) { return a, nil } -var _idtablestakingAdminTransfer_fees_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\xe9\xa9\x09\x24\x76\xcf\xc1\x94\x1a\x62\x9f\x02\x85\xfa\xd0\xf3\x56\x59\x27\x22\xb6\x24\xa4\x8d\xd3\x52\xf2\xef\xc5\x6a\x6c\x48\xa1\x3a\xae\x66\x86\xf7\x4c\xef\x5d\x10\xd4\x9d\xbb\xd4\xcc\x11\x6d\x70\x3d\x9e\x3e\xeb\xdd\xeb\x7b\x5d\x55\x4d\xb9\xdd\xbe\x55\x4d\xa3\x94\x04\xb2\x91\xb4\x18\x67\xf1\xad\x14\x00\xf8\xc0\x9e\x02\x2f\xdc\xc5\x72\xd8\xa0\x3c\xcb\xb1\xd4\xda\x9d\xad\xac\x10\x58\xb3\x19\xfe\x9c\x97\x53\x73\x7c\x79\x8e\x9d\xb1\x27\xc8\x91\x11\x85\x4e\xc6\x1e\x40\xfb\xde\x58\x68\xf2\xf4\x61\x3a\x23\x5f\x10\x07\x82\x0f\x66\x20\x61\xf8\x8e\x34\xcf\xfd\x8e\x05\x2d\x73\x2c\x53\xa7\x58\x23\x61\x64\x9d\xa3\x7d\xf1\x32\xe9\x64\xe9\xd7\x44\x09\x24\x2e\x3c\x2f\x46\xbb\x0d\xf2\x28\x2e\xd0\x81\xf3\xf6\x16\x4b\xa9\xe5\xc3\x1d\x5c\x43\x03\x27\xb8\x7b\x9c\xf1\x32\xc9\x3d\x46\xd0\xaf\x19\x6e\x8b\xf3\xc0\x14\xc9\x22\x0d\xbc\x28\xd6\x33\xe9\x0a\xe2\xfe\x25\x48\xf5\xab\x52\x57\x05\xf5\x13\x00\x00\xff\xff\x1e\x04\x07\xfe\x99\x01\x00\x00" +var _idtablestakingAdminTransfer_fees_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xb1\x6a\xf3\x30\x14\x85\x77\x3d\xc5\xf9\x97\xbf\x0e\x24\x76\xe7\x60\x4a\x0d\xb1\xa7\x40\xa1\x1e\x3a\xdf\x2a\xd7\xa9\x88\x2d\x09\xe9\xd6\x69\x29\x79\xf7\x62\x35\x36\xcd\x50\x8d\x57\xe7\x1c\xbe\xcf\x0c\xde\x05\x41\xd3\xbb\x73\xc3\x1c\xd1\x05\x37\xe0\xfe\xa3\xd9\x3f\xbd\x34\x75\xdd\x56\xbb\xdd\x73\xdd\xb6\x4a\x49\x20\x1b\x49\x8b\x71\x16\x5f\x4a\x01\x80\x0f\xec\x29\x70\xe6\xce\x96\xc3\x16\xff\x2b\xad\xdd\xbb\x95\x35\x02\x6b\x36\xe3\xef\xdb\x6a\xee\x4c\xaf\x28\xb0\x37\xf6\x04\x79\x63\x44\xa1\x93\xb1\x47\xd0\x61\x30\x16\x9a\x3c\xbd\x9a\xde\xc8\x27\xc4\x81\xe0\x83\x19\x49\x18\xbe\x27\xcd\x4b\xbf\x67\x41\xc7\x1c\xab\xd4\x29\x37\x48\x00\x79\xef\xe8\x50\x3e\xce\x22\x79\xfa\x35\x51\x02\x89\x0b\x0f\xd9\xe4\xb5\x45\x11\xc5\x05\x3a\x72\xd1\x5d\x63\x29\xb5\xfa\x77\x03\xd7\xd2\xc8\x09\xee\x16\x67\xba\xcc\x66\x77\x11\xf4\x63\x86\xeb\xe2\x32\x30\x47\xf2\x48\x23\x67\xe5\x66\x21\x5d\x43\xdc\x9f\x04\xa9\x7e\x51\xea\xa2\xa0\xbe\x03\x00\x00\xff\xff\x45\x9f\xb3\x90\x93\x01\x00\x00" func idtablestakingAdminTransfer_fees_adminCdcBytes() ([]byte, error) { return bindataRead( @@ -2270,11 +2270,11 @@ func idtablestakingAdminTransfer_fees_adminCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/transfer_fees_admin.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0xfe, 0x7f, 0xe5, 0x76, 0xf2, 0x7c, 0x89, 0xf0, 0xca, 0xa8, 0xbe, 0x89, 0x31, 0x37, 0xfe, 0x76, 0x6e, 0xe, 0x60, 0x1a, 0x5a, 0x20, 0x2d, 0x47, 0x78, 0x63, 0x90, 0x53, 0xe7, 0x67, 0xa7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0x1, 0x68, 0xb5, 0x4a, 0x11, 0x73, 0x9f, 0x93, 0xbf, 0xa7, 0xae, 0xa5, 0x16, 0xb4, 0x78, 0x5a, 0xef, 0x82, 0xec, 0x63, 0xcf, 0x6a, 0xb, 0xcd, 0xf2, 0xe0, 0xef, 0xa, 0x7d, 0x9, 0x76}} return a, nil } -var _idtablestakingAdminTransfer_minter_deployCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x5d\x6f\xda\x4a\x10\x7d\xf7\xaf\x38\xe2\xe1\xca\xe8\x12\x93\x48\x49\x14\x59\xf1\x8d\xb8\xb4\x91\xaa\xa4\x79\x68\x9b\xa7\x88\x87\xc5\x1e\xf0\x2a\xf6\x2e\x9a\x1d\x42\x11\xe2\xbf\x57\xeb\xb5\x0d\x49\xa9\x54\x3f\x2c\xec\x7c\x9c\x9d\x39\xf3\xa1\xeb\x95\x65\xc1\x94\xb7\x2b\xb1\x51\x7b\xbb\xaf\xec\xe6\x87\x7d\x25\x83\x05\xdb\x1a\x83\xfe\x3e\x88\x22\x61\x65\x9c\xca\x45\x5b\x13\xaf\xd6\xf3\x4a\xe7\x0f\xb4\x75\x29\x5e\x02\x44\xf2\x40\xdb\x47\xed\xe4\xb3\x11\xde\xce\x46\xc8\xad\x11\x56\xb9\x3c\xa9\x9a\x52\x7c\x17\xd6\x66\xe9\xa5\x05\xa5\x78\x79\xfe\x62\xe4\x66\x36\x02\xd3\x46\x71\x31\xa9\xed\xda\x48\x8a\xe7\x7b\xfd\xf3\xfa\xb2\x93\x4e\xd7\x47\xa2\x5c\x99\x42\x17\x4a\xe8\xc9\x16\xf4\xa8\x6b\x2d\xae\x85\xb9\xbe\x9c\x0d\xb1\x8b\x22\x60\xc5\xb4\x52\x4c\xb1\xd3\x4b\x43\x9c\x62\xb2\x96\x72\x92\xe7\x1e\xbb\xb5\x00\x2a\x12\xa8\x3c\x17\x64\xc7\xea\x78\xa5\xb6\xde\x23\x78\x0e\x1b\xcb\xe6\x58\x58\xc6\x2b\x6d\xa1\x0d\x0e\x29\x63\xd7\xe8\xfc\xe7\xa1\x92\x57\xda\xba\x44\x15\xc5\x81\x95\xd4\x3b\x25\xfd\x75\x84\x52\xb9\x72\x52\x2d\x2d\x6b\x29\xeb\xa0\x7d\x27\x1a\x61\x43\x7a\x59\x4a\x50\x85\xff\x21\x8c\x7d\x88\x7b\x3c\x1e\xe3\x7f\xcb\x6c\x37\x50\x60\x5a\x10\x93\xc9\x09\x62\x21\x25\x35\x65\x43\xa8\xdb\xa4\xa8\xb5\xf1\xf1\x7a\xb9\x0a\xe9\xc1\x89\x65\xb5\xa4\x9e\x81\x45\x57\xd6\x60\x9d\xb5\x89\x27\xf3\xe6\x85\xdb\x7f\xfa\xb2\x27\x8d\x81\x76\xc2\x4a\x2c\xff\x17\xfb\xae\x48\x31\x6e\xf1\xc6\xef\x71\x86\x3d\x2d\x77\x77\x58\x29\xa3\xf3\x78\x30\xb5\xeb\xaa\x80\xb1\x82\xf9\xdf\x47\xcf\xe4\xec\x9a\x73\x1a\x0c\x0f\xc9\x4f\x99\x94\x10\xd4\x21\xf6\xaf\xda\x08\xf1\xb7\xd6\xf6\xf7\xdc\x82\x1e\xb7\x67\x1f\xd2\x4d\xf2\x06\xea\x89\x36\xc1\x22\x56\x55\x65\x37\xd4\x77\xe1\xc5\x79\xf7\x25\xe7\x6d\x00\x4d\x99\x9d\x7a\xa3\xf8\xf6\xec\x03\xfe\x08\x62\x4f\x31\x12\xb4\x9d\xbf\x73\xc4\x12\x9f\x68\xe2\xa4\x22\xb3\x94\x12\x59\x86\xab\x51\xcf\x1f\x80\x9a\x9c\x53\x4b\x4a\x31\x98\x76\x5e\xf0\x6e\x68\xfc\x50\x69\x27\x98\xaf\x05\xa5\x7a\xf3\xac\xb4\x30\x76\x81\xab\x8e\x35\x4f\xc6\x89\x17\x3f\xe9\x5c\x52\xec\x9a\x09\x4c\x11\x26\x68\x8f\x0c\xbb\x7d\xe3\xf5\xa6\x18\x6c\x2b\x0a\xaa\x1b\x64\xb8\x88\xfa\x51\xa8\x9a\xb7\xb5\x39\x85\xdb\x4f\xc5\x1f\xde\x7c\xf1\xa8\x33\x64\x01\xa4\xb5\xf5\x32\x64\xe1\xe7\x5f\x5c\x1c\x77\x7c\xc3\x79\xb7\x44\xc2\x7c\x99\x66\x95\x1c\x2f\x96\x6e\xa1\xf8\xf3\xfd\x36\x39\xda\x22\x27\xb7\x87\x0f\xc9\x37\xec\x3e\x8a\xf6\x11\xa2\x5f\x01\x00\x00\xff\xff\xc2\xb5\x17\x3f\x0e\x05\x00\x00" +var _idtablestakingAdminTransfer_minter_deployCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4d\x4f\xe3\x48\x10\xbd\xfb\x57\x3c\xe5\x80\x1c\xad\x71\x40\x02\x84\x2c\xbc\x28\x9b\x5d\xa4\x15\x0c\x87\x61\x98\x0b\xca\xa1\x63\x57\xe2\x16\x76\x77\xd4\x5d\x4e\xc6\x8a\xf2\xdf\x47\xed\xb6\x9d\xc0\x64\xa4\xf1\xa1\x93\xae\x8f\x57\x55\xaf\xab\x4a\x56\x6b\x6d\x18\x33\xd3\xac\x59\x07\xdd\xed\xa1\xd4\xdb\x6f\xfa\x9d\x14\x96\x46\x57\x18\x0d\xf7\x51\x10\xb0\x11\xca\x8a\x8c\xa5\x56\xe1\xba\x5e\x94\x32\x7b\xa4\xc6\x26\x78\xf3\x10\xf1\x23\x35\x4f\xd2\xf2\x7f\x8a\x4d\x33\x8f\x90\x69\xc5\x46\x64\xfc\x2c\x2a\x4a\xf0\xc2\x46\xaa\x95\x93\xe6\x94\xe0\xed\xf5\x7f\xc5\xb7\xf3\x08\x86\xb6\xc2\xe4\xd3\x4a\xd7\x8a\x13\xbc\x3e\xc8\x1f\x37\x57\xbd\x74\x56\x1f\x89\x32\xa1\x72\x99\x0b\xa6\x67\x9d\xd3\x93\xac\x24\xdb\x0e\xe6\xe6\x6a\x3e\xc6\x2e\x08\x80\xb5\xa1\xb5\x30\x14\x5a\xb9\x52\x64\x12\x88\x9a\x8b\x70\x9a\xe7\x8f\xd4\x44\x78\x11\x1b\xfa\x2e\xca\x9a\x22\xfc\xa3\x8d\xd1\xdb\xf6\x32\xc6\xd9\x34\xcb\x5c\xf4\x0e\x03\x28\x89\x21\xb2\x8c\x91\xa2\x53\x85\x6b\xd1\x38\x3c\x8f\x3b\x6e\xad\xda\x63\xa9\x0d\xde\xa9\x81\x54\x38\x10\x82\x5d\xab\x73\x9f\x83\x89\xdf\xa9\xb1\xb1\xc8\xf3\x03\x67\x89\x73\x8a\x87\x6b\x84\x42\xd8\x62\x5a\xae\xb4\x91\x5c\x54\x5e\xfb\x41\x14\x61\x4b\x72\x55\xb0\x57\xf9\xff\x3e\x8d\xbd\xcf\x79\x32\x99\x74\x55\x41\xc0\xd0\x92\x0c\xa9\x8c\xc0\x1a\x5c\x50\xfb\xa8\xf0\xaf\x3a\xcd\x2b\xa9\x5c\xbe\x4e\x2e\x7c\x79\xb0\xac\x8d\x58\xd1\x50\xfd\xb2\x7f\x74\x6f\x9d\x76\x85\xc7\x9d\x5d\xbc\x68\x23\xdd\x9d\x0d\xcd\x11\xb7\x86\xd2\xb2\x11\xac\xcd\xdf\xa1\xeb\x9d\x04\x93\xce\x7e\xf2\x11\x6f\x3c\xd0\x73\x7f\x8f\xb5\x50\x32\x0b\x47\x33\x5d\x97\x39\x94\x66\x2c\xfe\xbc\x0a\x43\x56\xd7\x26\xa3\xd1\xf8\x40\xc2\xcc\x90\x60\x82\x38\xd4\xf0\x45\x2a\x26\xf3\xb5\xb3\xfd\xb5\x46\xaf\xc7\xdd\xf9\xa7\xb2\xe3\xac\x85\x7a\xa6\xad\xb7\x08\x45\x59\xea\x2d\x0d\xbd\x7a\x79\xd1\x7f\xf1\x45\x97\x40\xfb\xdc\x3d\x49\x56\x6c\x28\xbc\x3b\xff\x14\x27\x02\xeb\x53\xcc\x78\x6d\x8f\x63\x2d\x19\x0e\x4f\xb4\x7c\x5c\x92\x5a\x71\x81\x34\xc5\x75\x34\xf0\x08\xa0\x22\x6b\xc5\x8a\x12\x8c\x66\xbd\x17\x9c\x1b\x5a\x3f\x94\xd2\x32\x16\x35\xa3\x10\x1b\xc7\x4e\x07\xa3\x97\xb8\xee\xd9\x73\xa4\x9c\x88\xf8\xaf\xcc\x38\xc1\xae\x9d\xd7\x04\x7e\xde\xf6\x48\xb1\xdb\xb7\x5e\x1b\x61\x60\x74\x49\x5e\x75\x8b\x14\x97\xc1\x30\x1a\x65\x1b\x5b\xaa\x53\xb8\xc3\x94\xfc\x26\xe6\x9b\x43\x9d\x23\xf5\x20\x9d\xad\x93\x21\xf5\x3f\x7f\xe1\xf2\x78\x02\x5a\xee\xfb\x95\xe3\xe7\x4d\xb5\x8b\xe7\x78\x0d\xf5\xeb\xc7\x9d\x1f\x77\xcf\xd1\xce\x39\xb9\x6b\x5c\x4a\xae\x71\xf7\x41\xb0\x0f\x10\xfc\x0c\x00\x00\xff\xff\x83\x4c\x04\x12\x3c\x05\x00\x00" func idtablestakingAdminTransfer_minter_deployCdcBytes() ([]byte, error) { return bindataRead( @@ -2290,11 +2290,11 @@ func idtablestakingAdminTransfer_minter_deployCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/transfer_minter_deploy.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x52, 0x27, 0x3c, 0x53, 0x2b, 0x4e, 0x9f, 0x97, 0x58, 0x55, 0x4d, 0x83, 0xf1, 0x6b, 0xaa, 0xb4, 0x70, 0x76, 0x6a, 0x57, 0x25, 0xe2, 0xa7, 0xfc, 0xf9, 0x3, 0xea, 0x7, 0x2d, 0x5d, 0x8a, 0xea}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0xdd, 0xfe, 0x97, 0x5, 0xa5, 0xdb, 0xb0, 0xfb, 0xa2, 0x42, 0x12, 0x87, 0x4d, 0x1c, 0x36, 0xbf, 0x1e, 0xc, 0xeb, 0x4d, 0x3d, 0x8f, 0xc0, 0xe7, 0x54, 0x44, 0xed, 0x74, 0x9e, 0x78, 0xb6}} return a, nil } -var _idtablestakingAdminUpgrade_set_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdc\x30\x10\xc5\xef\xfe\x14\x8f\x3d\x14\x2f\x14\xfb\x5a\x4c\xdb\xb0\x24\x14\x16\x7a\x28\x4d\x7a\x2a\x25\xcc\xca\xe3\x58\x8d\xac\x31\xa3\x71\x37\x25\xe4\xbb\x17\xd9\xd9\xf4\xcf\xba\x73\x90\x40\xa3\x79\xf3\x7e\x1a\xf9\x61\x14\x35\x7c\x08\x72\xdc\x5f\xdd\xd0\x21\xf0\xb5\xd1\xbd\x8f\x77\xe8\x54\x06\x6c\xce\x13\x9b\xa2\xa8\x6b\xdc\xf4\x3e\xc1\x94\x62\x22\x67\x5e\x22\x46\xfa\x99\xa0\x7c\x24\x6d\x13\x4c\x40\x21\xc0\x7a\x46\x32\xba\xe7\x16\x51\x5a\x4e\x45\xf1\x47\x45\xe9\xa4\xe5\x06\x5f\xbf\xec\xa3\xbd\xf9\xb6\xc5\x63\x51\x00\x40\x5d\xe3\xa3\x38\x0a\xf8\x41\xea\x73\x5b\x74\xa2\x20\x28\x77\xac\x1c\x1d\x67\xf1\x2c\xbc\xbf\xc2\x6c\x0b\xbb\x76\xf0\x11\x72\xf8\xce\xce\x66\x89\xc0\x06\xca\x87\x9f\xb9\x6b\xf0\xea\x1c\xa1\x9a\x4b\x96\x7e\xa3\xf2\x48\xca\x25\x39\x67\x0d\x76\x93\xf5\x3b\xe7\x64\x8a\xf6\xe2\x28\x47\xce\x56\x4e\xa2\x29\x39\x4b\xd5\x34\xb6\x64\x7c\x7b\xcb\x0f\x23\xab\x1f\x38\x1a\x85\x32\xd2\xc0\xcd\xea\x8b\xbd\xc6\xc2\x9a\xd7\xed\x6f\xd1\xba\xc6\x41\x54\xe5\xb8\x86\x47\xff\x52\xe5\x48\x1c\xba\xea\x84\x86\x77\x8b\xad\x45\xe3\xed\x7f\x39\xdf\x97\x79\x94\xcd\xca\x8c\xab\xe7\x7d\xbe\x76\x6d\xa2\x74\xc7\x9f\xc8\xfa\xed\x4b\xc3\x1c\x17\x17\x18\x29\x7a\x57\x6e\x2e\x65\x0a\x79\x94\x76\xf2\xfd\x97\xeb\xf4\xfc\x71\x66\x7f\x9b\x45\xe3\x69\xa1\xe5\x07\x76\x93\x31\x1e\xd7\x49\xaa\xc4\x76\x19\xc8\x0f\xdc\x96\xa7\xba\xa7\x5f\x01\x00\x00\xff\xff\x47\x68\xac\xaf\x9a\x02\x00\x00" +var _idtablestakingAdminUpgrade_set_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x8b\x9c\x40\x10\xc5\xef\x7e\x8a\x87\x87\x45\x61\xd1\x6b\x90\x24\xcb\x66\x96\xc0\x40\x0e\x21\xbb\x9b\x4b\xc8\xa1\xa6\x2d\xd7\xce\xb6\x5d\xd2\x5d\x66\x12\x96\xf9\xee\xa1\x75\x66\xf2\x67\x4c\x1d\x14\xd4\xf7\x7b\xef\x75\x69\x87\x51\x82\xe2\xbd\x93\xfd\xf6\xee\x81\x76\x8e\xef\x95\x9e\xad\x7f\x42\x17\x64\x40\x7e\xf9\x22\xcf\xb2\xba\xc6\x43\x6f\x23\x34\x90\x8f\x64\xd4\x8a\xc7\x48\x3f\x23\x02\xef\x29\xb4\x11\x2a\x20\xe7\xa0\x3d\x23\x2a\x3d\x73\x0b\x2f\x2d\xc7\x2c\xfb\x43\x51\x18\x69\xb9\xc1\x97\xc7\xad\xd7\x57\x5f\x4b\xbc\x64\x19\x00\xd4\x35\x3e\x88\x21\x87\xef\x14\x6c\xb2\x45\x27\x01\x84\xc0\x1d\x07\xf6\x86\x13\x3c\x81\xb7\x77\x98\x63\xe1\xb6\x1d\xac\x87\xec\xbe\xb1\xd1\x19\xe1\x58\x41\xe9\xe1\x27\xee\x1a\x5c\x5d\x56\xa8\x66\xc9\xe2\x37\x06\x1e\x29\x70\x41\xc6\x68\x03\x9a\xb4\x2f\x1e\xc7\x96\x94\x37\xe2\x35\x90\xd1\x6b\xbc\x93\x10\x64\xff\x99\xdc\xc4\x25\xae\x6e\x8d\x91\xc9\xeb\x39\x70\x9a\x24\xae\xcc\x51\x10\xab\x69\x06\x14\x9e\x06\x6e\x56\x8f\xf0\x1a\x4b\xf9\x74\x2d\x7f\x63\xea\x1a\xbb\xd9\x6b\xad\x2f\xfd\x5b\x33\x4d\x64\xd7\x55\xa7\xae\x78\xb3\x04\x89\x2a\x81\x9e\xb8\x5a\x58\xaf\xff\x7b\x00\x6f\x8b\xb4\xe3\x66\x65\xf9\xd5\xf1\x3e\x7f\x76\xbf\xe0\x3e\x92\xf6\xe5\xd9\x38\xcd\xcd\x0d\x46\xf2\xd6\x14\xf9\x46\x26\x97\x76\xac\xa7\xfc\x7f\xa5\x8f\xc7\x3f\x6a\xce\x99\x2f\x8c\xc3\xd2\x9a\x7f\xb0\x99\x94\xf1\xb2\xde\xa8\x8a\xac\x1b\x47\x76\xe0\xb6\x38\xe9\x0e\xbf\x02\x00\x00\xff\xff\xf6\x62\xb3\x93\xb3\x02\x00\x00" func idtablestakingAdminUpgrade_set_claimedCdcBytes() ([]byte, error) { return bindataRead( @@ -2310,11 +2310,11 @@ func idtablestakingAdminUpgrade_set_claimedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/upgrade_set_claimed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb3, 0xbf, 0x7f, 0xfa, 0xa, 0xe2, 0x92, 0x87, 0xb4, 0x13, 0xb2, 0x4c, 0x2d, 0x83, 0x85, 0xf9, 0xf, 0x78, 0x2b, 0x1d, 0xbb, 0x67, 0x36, 0x7c, 0xc4, 0xe6, 0x9, 0xe8, 0xa5, 0x37, 0xee, 0x9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb2, 0x18, 0xb2, 0xdd, 0x50, 0x4a, 0xbf, 0x69, 0x23, 0x23, 0x78, 0xc8, 0x53, 0xc8, 0xd4, 0x61, 0x14, 0x50, 0x2b, 0x78, 0xc8, 0x94, 0xba, 0xb8, 0xbf, 0x98, 0xfe, 0x51, 0x48, 0x61, 0x83, 0xa0}} return a, nil } -var _idtablestakingAdminUpgrade_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x3c\x8d\x31\x0b\xc2\x30\x10\x85\xf7\xfc\x8a\xa3\x53\x0a\xd2\x59\xb2\x15\x44\xe8\xac\x4e\x22\xe5\xbc\x1e\x1a\x4c\x2f\x21\xbd\xa0\x20\xfd\xef\x12\x05\xdf\xf0\x96\xf7\xf8\x3e\xa3\x19\x65\x41\x52\x1f\xc5\x52\x9c\xd8\xc1\xf9\x34\x88\x6e\x2f\x2d\xbc\x8d\x01\x00\x48\x99\x13\x66\xb6\x48\xa4\x0e\xfa\xa2\xf7\x9e\x28\x16\xd1\xff\xa3\xa6\xae\x1d\x45\xd1\x8c\xa4\x4b\x57\xd2\x84\xca\xe3\xc8\xaf\xc4\xd9\xcf\x2c\x8a\xc1\x0a\xce\xec\xa0\xd9\x87\xf8\x1c\x76\x47\xbc\x06\x3e\x28\x3e\xbc\xdc\x9a\x0d\xfc\xdc\xb5\xdb\x2f\x73\x35\xeb\x27\x00\x00\xff\xff\x83\x09\x8a\xc4\x9c\x00\x00\x00" +var _idtablestakingAdminUpgrade_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2c\x8d\xb1\x0a\xc2\x40\x10\x44\xfb\xfb\x8a\x21\x85\x5c\x40\x52\x4b\x3a\x51\x84\xd4\x9a\x4a\x2c\xd6\xcd\xa2\xc1\xb8\x17\x2e\x7b\x58\x48\xfe\x5d\x2e\x66\x8a\xa9\xde\x9b\x71\x16\x49\x27\x62\xeb\x83\x7a\x0e\x9d\xd4\xb8\xb6\x8d\xda\xee\x56\xe2\xeb\x1c\x00\x8c\x51\x46\x8a\xe2\x89\xd9\x6a\x50\xb2\xa7\x6f\xc7\x8e\x4c\x0e\x41\x2d\x12\x5b\x89\xcd\x9e\x39\x24\xb5\xec\x60\x4d\xc6\x2b\x5e\x91\xa9\x4a\x8b\xe2\x95\xde\x52\xa3\x38\x0d\xe1\xd3\x1c\x2f\x74\x1f\xe4\x6c\xf4\xea\xf5\x51\x6c\xf1\xbf\xcf\x5d\x2e\x2b\xb3\x9b\x7f\x01\x00\x00\xff\xff\xe2\xcb\x57\x03\x9f\x00\x00\x00" func idtablestakingAdminUpgrade_stakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2330,7 +2330,7 @@ func idtablestakingAdminUpgrade_stakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/upgrade_staking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0x44, 0x64, 0x8e, 0x9e, 0xfe, 0x87, 0x20, 0x69, 0xfd, 0xe9, 0x55, 0x7d, 0x7f, 0xf4, 0xf9, 0xcc, 0xf5, 0xbb, 0x3f, 0x22, 0xc, 0x1b, 0xd1, 0xa6, 0xb2, 0x45, 0xe9, 0x48, 0x41, 0x19, 0xc4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x81, 0x5e, 0x5c, 0xd3, 0xb2, 0xd5, 0xa5, 0x4c, 0x45, 0xf4, 0x38, 0x8c, 0x9, 0x99, 0x95, 0xbc, 0xbd, 0x11, 0x8d, 0x62, 0x50, 0xa2, 0x21, 0xf2, 0x46, 0xce, 0x6e, 0xbe, 0x67, 0x1f, 0x7, 0x96}} return a, nil } diff --git a/transactions/idTableStaking/admin/capability_end_epoch.cdc b/transactions/idTableStaking/admin/capability_end_epoch.cdc index 8996e50c7..fbc96461d 100644 --- a/transactions/idTableStaking/admin/capability_end_epoch.cdc +++ b/transactions/idTableStaking/admin/capability_end_epoch.cdc @@ -13,8 +13,8 @@ transaction(ids: {String: Bool}, newPayout: UFix64) { // Local variable for a reference to the ID Table Admin object let adminRef: &FlowIDTableStaking.Admin - prepare(acct: auth(CopyValue) &Account) { - let adminCapability = acct.storage.copy(from: FlowIDTableStaking.StakingAdminStoragePath) + prepare(acct: &Account) { + let adminCapability = acct.copy(from: FlowIDTableStaking.StakingAdminStoragePath) ?? panic("Could not get capability from account storage") // borrow a reference to the admin object @@ -25,7 +25,7 @@ transaction(ids: {String: Bool}, newPayout: UFix64) { execute { let rewardsSummary = self.adminRef.calculateRewards() - self.adminRef.payRewards(forEpochCounter: 1, rewardsSummary: rewardsSummary) + self.adminRef.payRewards(rewardsSummary) self.adminRef.setEpochTokenPayout(newPayout) @@ -33,6 +33,6 @@ transaction(ids: {String: Bool}, newPayout: UFix64) { self.adminRef.endStakingAuction() - self.adminRef.moveTokens(newEpochCounter: 2) + self.adminRef.moveTokens() } } diff --git a/transactions/idTableStaking/admin/transfer_fees_admin.cdc b/transactions/idTableStaking/admin/transfer_fees_admin.cdc index b1f4fbb49..231d04187 100644 --- a/transactions/idTableStaking/admin/transfer_fees_admin.cdc +++ b/transactions/idTableStaking/admin/transfer_fees_admin.cdc @@ -1,14 +1,14 @@ -import FlowFees from "FlowFees" +import FlowFees from 0xFLOWFEESADDRESS transaction { - prepare(owner: auth(LoadValue) &Account, receiver: auth(SaveValue) &Account) { + prepare(owner: &Account, receiver: &Account) { // Link the staking admin capability to a private place - let feesAdmin <- owner.storage.load<@FlowFees.Administrator>(from: /storage/flowFeesAdmin)! + let feesAdmin <- owner.load<@FlowFees.Administrator>(from: /storage/flowFeesAdmin)! // Save the capability to the receiver's account storage - receiver.storage.save(<-feesAdmin, to: /storage/flowFeesAdmin) + receiver.save(<-feesAdmin, to: /storage/flowFeesAdmin) } } From 4c50f6c83c57bd8b01cf36d020e3d9d00b08e562 Mon Sep 17 00:00:00 2001 From: Supun Setunga Date: Tue, 12 Sep 2023 14:30:41 -0700 Subject: [PATCH 039/160] go mod tidy --- lib/go/contracts/go.sum | 85 ++++++++--------------------------------- lib/go/templates/go.sum | 21 ++++++---- 2 files changed, 30 insertions(+), 76 deletions(-) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index f24fa3f6b..42509ee6b 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -279,7 +279,6 @@ cloud.google.com/go/ids v1.3.0/go.mod h1:JBdTYwANikFKaDP6LtW5JAi4gubs57SVNQjemdt cloud.google.com/go/iot v1.3.0/go.mod h1:r7RGh2B61+B8oz0AGE+J72AhA0G7tdXItODWsaA2oLs= cloud.google.com/go/iot v1.4.0/go.mod h1:dIDxPOn0UvNDUMD8Ger7FIaTuvMkj+aGk94RPP0iV+g= cloud.google.com/go/iot v1.5.0/go.mod h1:mpz5259PDl3XJthEmh9+ap0affn/MqNSP4My77Qql9o= -cloud.google.com/go/kms v1.0.0/go.mod h1:nhUehi+w7zht2XrUfvTRNpxrfayBHqP4lu2NSywui/0= cloud.google.com/go/kms v1.4.0/go.mod h1:fajBHndQ+6ubNw6Ss2sSd+SWvjL26RNo/dr7uxsnnOA= cloud.google.com/go/kms v1.5.0/go.mod h1:QJS2YY0eJGBg3mnDfuaCyLauWwBJiHRboYxJ++1xJNg= cloud.google.com/go/kms v1.6.0/go.mod h1:Jjy850yySiasBUDi6KFUwUv2n1+o7QZFyuUJg6OgjA0= @@ -543,7 +542,6 @@ github.com/SaveTheRbtz/mph v0.1.2 h1:5l3W496Up+7BNOVJQnJhzcGBh+wWfxWdmPUAkx3WmaM github.com/SaveTheRbtz/mph v0.1.2/go.mod h1:V4+WtKQPe2+dEA5os1WnGsEB0NR9qgqqgIiSt73+sT4= github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg= github.com/VictoriaMetrics/fastcache v1.5.3/go.mod h1:+jv9Ckb+za/P1ZRg/sulP5Ni1v49daAVERr0H3CuscE= -github.com/aead/siphash v1.0.1/go.mod h1:Nywa3cDsYNNK3gaciGTWPwHt0wlpNV15vwmswBAUSII= github.com/ajstarks/deck v0.0.0-20200831202436-30c9fc6549a9/go.mod h1:JynElWSGnm/4RlzPXRlREEwqTHAN3T56Bv2ITsFT3gY= github.com/ajstarks/deck/generate v0.0.0-20210309230005-c3f852c02e19/go.mod h1:T13YZdzov6OU0A1+RfKZiZN9ca6VeKdBdyDV+BY97Tk= github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw= @@ -580,18 +578,9 @@ github.com/bits-and-blooms/bitset v1.5.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edY github.com/boombuler/barcode v1.0.0/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= github.com/boombuler/barcode v1.0.1/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= github.com/btcsuite/btcd v0.0.0-20171128150713-2e60448ffcc6/go.mod h1:Dmm/EzmjnCiweXmzRIAiUWCInVmPgjkzgv5k4tVyXiQ= -github.com/btcsuite/btcd v0.20.1-beta/go.mod h1:wVuoA8VJLEcwgqHBwHmzLRazpKxTv13Px/pDuV7OomQ= github.com/btcsuite/btcd/btcec/v2 v2.2.1 h1:xP60mv8fvp+0khmrN0zTdPC3cNm24rfeE6lh2R/Yv3E= github.com/btcsuite/btcd/btcec/v2 v2.2.1/go.mod h1:9/CSmJxmuvqzX9Wh2fXMWToLOHhPd11lSPuIupwTkI8= github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1/go.mod h1:7SFka0XMvUgj3hfZtydOrQY2mwhPclbT2snogU7SQQc= -github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f/go.mod h1:TdznJufoqS23FtqVCzL0ZqgP5MqXbb4fg/WgDys70nA= -github.com/btcsuite/btcutil v0.0.0-20190425235716-9e5f4b9a998d/go.mod h1:+5NJ2+qvTyV9exUAL/rxXi3DcLg2Ts+ymUAY5y4NvMg= -github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd/go.mod h1:HHNXQzUsZCxOoE+CPiyCTO6x34Zs86zZUiwtpXoGdtg= -github.com/btcsuite/goleveldb v0.0.0-20160330041536-7834afc9e8cd/go.mod h1:F+uVaaLLH7j4eDXPRvw78tMflu7Ie2bzYOH4Y8rRKBY= -github.com/btcsuite/snappy-go v0.0.0-20151229074030-0bdef8d06723/go.mod h1:8woku9dyThutzjeg+3xrA5iCpBRH8XEEg3lh6TiUghc= -github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792/go.mod h1:ghJtEyQwv5/p4Mg4C0fgbePVuGr935/5ddU9Z3TmDRY= -github.com/btcsuite/winsvc v1.0.0/go.mod h1:jsenWakMcC0zFBFurPLEAyrnc/teJEM1O46fmI40EZs= -github.com/bytecodealliance/wasmtime-go v0.22.0/go.mod h1:q320gUxqyI8yB+ZqRuaJOEnGkAnHh6WtJjMaT2CW4wI= github.com/bytecodealliance/wasmtime-go/v7 v7.0.0/go.mod h1:bu6fic7trDt20w+LMooX7j3fsOwv4/ln6j8gAdP6vmA= github.com/c-bata/go-prompt v0.2.5/go.mod h1:vFnjEGDIIA/Lib7giyE4E9c50Lvl8j0S+7FVlAwDAVw= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= @@ -602,7 +591,6 @@ github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghf github.com/cespare/xxhash/v2 v2.0.1-0.20190104013014-3767db7a7e18/go.mod h1:HD5P3vAIAh+Y2GAxg0PrPN1P8WkepXGpjbUPDHJqqKM= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cheekybits/genny v1.0.0/go.mod h1:+tQajlRqAUrPI7DOSpB0XAqZYtQakVtB7wXkRAgjxjQ= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= @@ -632,7 +620,6 @@ github.com/dave/jennifer v1.5.0/go.mod h1:4MnyiFIlZS3l5tSDn8VnzE6ffAhYBMB2SZntBs github.com/dave/kerr v0.0.0-20170318121727-bc25dd6abe8e/go.mod h1:qZqlPyPvfsDJt+3wHJ1EvSXDuVjFTK0j2p/ca+gtsb8= github.com/dave/patsy v0.0.0-20210517141501-957256f50cba/go.mod h1:qfR88CgEGLoiqDaE+xxDCi5QA5v4vUoW0UCX2Nd5Tlc= github.com/dave/rebecca v0.9.1/go.mod h1:N6XYdMD/OKw3lkF3ywh8Z6wPGuwNFDNtWYEMFWEmXBA= -github.com/davecgh/go-spew v0.0.0-20171005155431-ecdeabc65495/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= @@ -662,7 +649,6 @@ github.com/envoyproxy/go-control-plane v0.10.3/go.mod h1:fJJn/j26vwOu972OllsvAgJ github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/envoyproxy/protoc-gen-validate v0.6.7/go.mod h1:dyJXwwfPK2VSqiB9Klm1J6romD608Ba7Hij42vrOBCo= github.com/envoyproxy/protoc-gen-validate v0.9.1/go.mod h1:OKNgG7TCp5pF4d6XftA0++PMirau2/yoOwVac3AbF2w= -github.com/ethereum/go-ethereum v1.9.9/go.mod h1:a9TqabFudpDu1nucId+k9S8R9whYaHnGBLKFouA5EAo= github.com/ethereum/go-ethereum v1.9.13 h1:rOPqjSngvs1VSYH2H+PMPiWt4VEulvNRbFgqiGqJM3E= github.com/ethereum/go-ethereum v1.9.13/go.mod h1:qwN9d1GLyDh0N7Ab8bMGd0H9knaji2jOBm2RrMGjXls= github.com/fatih/color v1.3.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= @@ -670,11 +656,9 @@ github.com/fjl/memsize v0.0.0-20180418122429-ca190fb6ffbc/go.mod h1:VvhXpOYNQvB+ github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= github.com/fogleman/gg v1.3.0/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= -github.com/fxamacker/cbor/v2 v2.2.1-0.20210927235116-3d6d5d1de29b/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= github.com/fxamacker/cbor/v2 v2.4.1-0.20220515183430-ad2eae63303f/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c h1:5tm/Wbs9d9r+qZaUFXk59CWDD0+77PBqDREffYkyi5c= github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= -github.com/fxamacker/circlehash v0.1.0/go.mod h1:3aq3OfVvsWtkWMb6A1owjOQFA+TLsD5FgJflnaQwtMM= github.com/fxamacker/circlehash v0.3.0 h1:XKdvTtIJV9t7DDUtsf0RIpC1OcxZtPbmgIH7ekx28WA= github.com/fxamacker/circlehash v0.3.0/go.mod h1:3aq3OfVvsWtkWMb6A1owjOQFA+TLsD5FgJflnaQwtMM= github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff/go.mod h1:x7DCsMOv1taUwEWCzT4cmDeAkigA5/QCwUodaVOe8Ww= @@ -815,16 +799,15 @@ github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1: github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/influxdata/influxdb v1.2.3-0.20180221223340-01288bdb0883/go.mod h1:qZna6X/4elxqT3yI9iZYdZrWWdeFOOprn86kgg4+IzY= github.com/jackpal/go-nat-pmp v1.0.2-0.20160603034137-1fa385a6f458/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc= -github.com/jessevdk/go-flags v0.0.0-20141203071132-1679536dcc89/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= -github.com/jrick/logrotate v1.0.0/go.mod h1:LNinyqDIJnpAur+b8yyulnQw/wDuN1+BYKlTRt3OuAQ= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= github.com/julienschmidt/httprouter v1.1.1-0.20170430222011-975b5c4c7c21/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/jung-kurt/gofpdf v1.0.0/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= +github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 h1:uC1QfSlInpQF+M0ao65imhwqKnz3Q2z/d8PWZRMQvDM= github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88/go.mod h1:3w7q1U84EfirKl04SVQ/s7nPm1ZPhiXd34z40TNz36k= github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213/go.mod h1:vNUNkEQ1e29fT/6vq2aBdFsgNPmy8qMdSay1npru+Sw= github.com/k0kubun/pp v3.0.1+incompatible h1:3tqvf7QgUnZ5tXO6pNAZlrvHgl6DvifjDrd9g2S9Z40= @@ -836,7 +819,6 @@ github.com/kevinburke/go-bindata v3.22.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi github.com/kevinburke/go-bindata v3.23.0+incompatible h1:rqNOXZlqrYhMVVAsQx8wuc+LaA73YcfbQ407wAykyS8= github.com/kevinburke/go-bindata v3.23.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= -github.com/kkdai/bstream v0.0.0-20161212061736-f391b8402d23/go.mod h1:J+Gs4SYgM6CZQHDETBtE9HaSEkGmuNXF86RwHhHUvq4= github.com/klauspost/asmfmt v1.3.2/go.mod h1:AG8TuvYojzulgDAMCnYn50l/5QV3Bs/tp6j0HLHbNSE= github.com/klauspost/compress v1.15.9/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHUDtV4Yw2GlzU= github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= @@ -848,9 +830,9 @@ github.com/konsorten/go-windows-terminal-sequences v1.0.1 h1:mweAR1A6xJ3oS2pRaGi github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= -github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0= github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw= @@ -858,8 +840,8 @@ github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= +github.com/leanovate/gopter v0.2.9 h1:fQjYxZaynp97ozCzfOyOuAGOU4aU/z37zf/tOujFk7c= github.com/leanovate/gopter v0.2.9/go.mod h1:U2L/78B+KVFIx2VmW6onHJQzXtFb+p5y3y2Sh+Jxxv8= -github.com/logrusorgru/aurora v0.0.0-20200102142835-e9ef32dff381/go.mod h1:7rIyQOR62GCctdiQpZ/zOJlFyk6y+94wXzv6RNZgaR4= github.com/logrusorgru/aurora/v4 v4.0.0 h1:sRjfPpun/63iADiSvGGjgA1cAYegEWMPCJdUpJYn9JA= github.com/logrusorgru/aurora/v4 v4.0.0/go.mod h1:lP0iIa2nrnT/qoFXcOZSrZQpJ1o6n2CUf/hyHi2Q4ZQ= github.com/lyft/protoc-gen-star v0.6.0/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= @@ -895,50 +877,19 @@ github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLA github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/olekukonko/tablewriter v0.0.2-0.20190409134802-7e037d187b0c/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= -github.com/onflow/atree v0.1.0-beta1.0.20211027184039-559ee654ece9/go.mod h1:+6x071HgCF/0v5hQcaE5qqjc2UqN5gCU8h5Mk6uqpOg= github.com/onflow/atree v0.5.0/go.mod h1:gBHU0M05qCbv9NN0kijLWMgC47gHVNBIp4KmsVFi0tc= github.com/onflow/atree v0.6.0 h1:j7nQ2r8npznx4NX39zPpBYHmdy45f4xwoi+dm37Jk7c= github.com/onflow/atree v0.6.0/go.mod h1:gBHU0M05qCbv9NN0kijLWMgC47gHVNBIp4KmsVFi0tc= -github.com/onflow/cadence v0.20.1/go.mod h1:7mzUvPZUIJztIbr9eTvs+fQjWWHTF8veC+yk4ihcNIA= -github.com/onflow/cadence v0.39.12 h1:bb3UdOe7nClUcaLbxSWGLSIJKuCrivpgxhPow99ikv0= -github.com/onflow/cadence v0.39.12/go.mod h1:OIJLyVBPa339DCBQXBfGaorT4tBjQh9gSKe+ZAIyyh0= github.com/onflow/cadence v0.39.13-stable-cadence h1:A08/gb4xSsgRjuXo9fkFFvtG7dIkxxkDCNk/VdWrMp4= github.com/onflow/cadence v0.39.13-stable-cadence/go.mod h1:SxT8/IEkS1drFj2ofUEK9S6KyJ5GQbrm0LX4EFCp/7Q= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230818200853-ab1b03e98a95 h1:mtQIjtnUQ2axR74YRMSG4rYo5PzWIbToGCdbu0oZjGs= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230818200853-ab1b03e98a95/go.mod h1:kTMFIySzEJJeupk+7EmXs0EJ6CBWY/MV9fv9iYQk+RU= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230906165834-daca6600a634 h1:9qHRlxEK3Q/qPEyzANXIBM8w5UIVveUqdG2gWH7HBOs= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230906165834-daca6600a634/go.mod h1:B27qWoolugkAEGuT9VJ7tn7UsOMI88ihHqcpEMqoncc= -github.com/onflow/flow-go-sdk v0.24.0/go.mod h1:IoptMLPyFXWvyd9yYA6/4EmSeeozl6nJoIv4FaEMg74= -github.com/onflow/flow-go-sdk v0.41.6 h1:x5HhmRDvbCWXRCzHITJxOp0Komq5JJ9zphoR2u6NOCg= -github.com/onflow/flow-go-sdk v0.41.6/go.mod h1:AYypQvn6ecMONhF3M1vBOUX9b4oHKFWkkrw8bO4VEik= github.com/onflow/flow-go-sdk v0.41.7-stable-cadence h1:GrmLLAPrxOyC27v/J/XG/sKiM1ynE1MYidiMXUfM0e4= github.com/onflow/flow-go-sdk v0.41.7-stable-cadence/go.mod h1:ejVN+bqcsTHVvRpDDJDoBNdmcxUfFMW4IvdTbMeQ/hQ= -github.com/onflow/flow-go/crypto v0.21.3/go.mod h1:vI6V4CY3R6c4JKBxdcRiR/AnjBfL8OSD97bJc60cLuQ= github.com/onflow/flow-go/crypto v0.24.7 h1:RCLuB83At4z5wkAyUCF7MYEnPoIIOHghJaODuJyEoW0= github.com/onflow/flow-go/crypto v0.24.7/go.mod h1:fqCzkIBBMRRkciVrvW21rECKq1oD7Q6u+bCI78lfNX0= -github.com/onflow/flow-nft/lib/go/contracts v1.1.0 h1:rhUDeD27jhLwOqQKI/23008CYfnqXErrJvc4EFRP2a0= -github.com/onflow/flow-nft/lib/go/contracts v1.1.0/go.mod h1:YsvzYng4htDgRB9sa9jxdwoTuuhjK8WYWXTyLkIigZY= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718172506-c9d5f473c030 h1:ToPYLsi8XFMw9Z42jz5BpuJsUY6Oo2sHwCImhAUVQIA= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718172506-c9d5f473c030/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718204222-6c4350165a05 h1:YIynhmKF3FptpeZQAbFjbMit7M+8CLZEwn2JZaCcsqU= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718204222-6c4350165a05/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718211746-90269f46250c h1:m/dxXkQYTaA0iydj8x0sYQIhOWZy+QuS7A94+PM3hAE= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718211746-90269f46250c/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718212445-02faddc53030 h1:btDNgZHCZOjebNRuG6RhjW8QVmM14dI2m7S+KFwcbP4= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718212445-02faddc53030/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718212804-c5d491b84ec6 h1:HHQRd6+7OSSs99aW6PaHwK7cmEAVwKgEPq688PTcdSs= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230718212804-c5d491b84ec6/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230719151715-3bd6381cd54b h1:wcH5abZ9wxTdl53DMCdvpYg3Y59CRy3vGnyYvaqo2Fw= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230719151715-3bd6381cd54b/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230726190453-ac7ed4798148 h1:QgNBQSf7W6f9On0K0M71yr5pRTNAeFdN2uvHOZcSvJQ= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230726190453-ac7ed4798148/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230726191152-4293bb676808 h1:c/MMB0UoLks5XVV4QZfdbZLTQVcyGMJstob25E5ZVHY= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230726191152-4293bb676808/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230818200521-3acffe2472a3 h1:JNDJQI1ID8qLvv8kynPkrUNo34II5RB/aw6PN9dpMV0= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230818200521-3acffe2472a3/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230906170014-ac628577704c h1:0U7FvQQWAk+0swHpOC6EzSbPDacYmqEMbblrBcbx+og= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230906170014-ac628577704c/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= -github.com/onflow/flow/protobuf/go/flow v0.2.2/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/sdks v0.5.0/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= @@ -974,10 +925,10 @@ github.com/rivo/uniseg v0.2.1-0.20211004051800-57c86be7915a/go.mod h1:J6wj4VEh+S github.com/rivo/uniseg v0.4.4 h1:8TfxU8dW6PdqD27gjM8MVNuicgxIjxpm4K7x4jp8sis= github.com/rivo/uniseg v0.4.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= github.com/rjeczalik/notify v0.9.1/go.mod h1:rKwnCoCGeuQnwBtTSPL9Dad03Vh2n40ePRrjvIXnJho= -github.com/robertkrimen/otto v0.0.0-20170205013659-6a77b7cbc37d/go.mod h1:xvqspoSXJTIpemEonrMDFq6XzwHYYgToXWj5eRX1OtY= github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= +github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= github.com/rs/cors v0.0.0-20160617231935-a62a804a8a00/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= github.com/rs/xhandler v0.0.0-20160618193221-ed27b6fd6521/go.mod h1:RvLn4FgxWubrpZHtQLnOf6EwhN2hEMusxZOhcW9H3UQ= @@ -987,6 +938,7 @@ github.com/ruudk/golang-pdf417 v0.0.0-20201230142125-a7e3863a1245/go.mod h1:pQAZ github.com/schollz/progressbar/v3 v3.8.3/go.mod h1:pWnVCjSBZsT2X3nx9HfRdnCDrpbevliMeoEVhStwHko= github.com/sergi/go-diff v1.2.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= +github.com/sirupsen/logrus v1.4.2 h1:SPIRibHv4MatM3XXNO2BJeFLZwZ2LvZgfQ5+UNI2im4= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spaolacci/murmur3 v1.0.1-0.20190317074736-539464a789e9/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= @@ -999,6 +951,7 @@ github.com/steakknife/hamming v0.0.0-20180906055917-c99c65617cd3/go.mod h1:hpGUW github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= +github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= @@ -1011,7 +964,7 @@ github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= github.com/stretchr/testify v1.8.2 h1:+h33VjcLVPDHtOdpUCuF+7gSuG3yGIftsP1YvFihtJ8= github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= -github.com/supranational/blst v0.3.4/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= +github.com/supranational/blst v0.3.10 h1:CMciDZ/h4pXDDXQASe8ZGTNKUiVNxVVA5hpci2Uuhuk= github.com/supranational/blst v0.3.10/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= github.com/syndtr/goleveldb v1.0.1-0.20190923125748-758128399b1d/go.mod h1:9OrXJhf154huy1nPWmuSrkgjPUtUNhA+Zmy+6AESzuA= github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c h1:HelZ2kAFadG0La9d+4htN4HzQ68Bm2iM9qKMSMES6xg= @@ -1032,11 +985,11 @@ github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1 github.com/yuin/goldmark v1.4.1/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= github.com/zeebo/assert v1.1.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= +github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ= github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= -github.com/zeebo/blake3 v0.2.0/go.mod h1:G9pM4qQwjRzF1/v7+vabMj/c5mWpGZ2Wzo3Eb4z0pb4= github.com/zeebo/blake3 v0.2.3 h1:TFoLXsjeXqRNFxSbk35Dk4YtszE/MQQGK10BH4ptoTg= github.com/zeebo/blake3 v0.2.3/go.mod h1:mjJjZpnsyIVtVgTOSpJ9vmRE4wgDeyt2HU3qXvvKCaQ= -github.com/zeebo/pcg v1.0.0/go.mod h1:09F0S9iiKrwn9rlI5yjLkmrug154/YRW6KnnXVDM/l4= +github.com/zeebo/pcg v1.0.1 h1:lyqfGeWiv4ahac6ttHs+I5hwtH/+1mrhlCtVNQM2kHo= github.com/zeebo/pcg v1.0.1/go.mod h1:09F0S9iiKrwn9rlI5yjLkmrug154/YRW6KnnXVDM/l4= github.com/zeebo/xxh3 v1.0.2 h1:xZmwmqxHZA8AI603jOQ0tMqmBr9lPeFwGg6d+xy9DC0= github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= @@ -1055,14 +1008,13 @@ go.opentelemetry.io/otel/trace v1.8.0/go.mod h1:0Bt3PXY8w+3pheS3hQUt+wow8b1ojPaT go.opentelemetry.io/otel/trace v1.14.0/go.mod h1:8avnQLK+CG77yNLUae4ea2JDQ6iT+gozhnZjy/rw9G8= go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= go.opentelemetry.io/proto/otlp v0.15.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= +go.uber.org/goleak v1.1.10 h1:z+mqJhf6ss6BSfSM671tgKyZBFPTTJM+HLxnhPC3wu0= go.uber.org/goleak v1.1.10/go.mod h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A= -golang.org/x/crypto v0.0.0-20170930174604-9419663f5a44/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20200117160349-530e935923ad/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200311171314-f7b00557c8c4/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= @@ -1115,6 +1067,7 @@ golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRu golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 h1:VLliZ0d+/avPrXXH+OakdXhpJuEoBZuwh1m2j7U6Iug= golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= @@ -1132,6 +1085,7 @@ golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= golang.org/x/mod v0.6.0/go.mod h1:4mET923SAdbXp2ki8ey+zGs1SLqsuM2Y0uvdZR/fUNI= golang.org/x/mod v0.7.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/mod v0.8.0 h1:LUYupSeNrTNCGzR/hVBk2NHZO4hXcVaW1k4Qx7rjPx8= golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -1247,14 +1201,12 @@ golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190712062909-fae7ac547cb7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200107162124-548cf772de50/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -1273,7 +1225,6 @@ golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20200909081042-eff7692f9009/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200918174421-af09f7315aff/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201014080544-cc95f250f6bc/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -1298,7 +1249,6 @@ golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210910150752-751e447fb3d0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210917161153-d61c044b1678/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= @@ -1399,7 +1349,6 @@ golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roY golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= -golang.org/x/tools v0.0.0-20200828161849-5deb26317202/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201124115921-2c860bdd6e78/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= @@ -1418,6 +1367,7 @@ golang.org/x/tools v0.1.9/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= golang.org/x/tools v0.2.0/go.mod h1:y4OqIKeOV/fWJetJ8bXPU1sEVniLMIyDAZWeHdV+NTA= golang.org/x/tools v0.3.0/go.mod h1:/rWhSS2+zyEVwoJf8YAX6L2f0ntZ7Kn/mGgAWcipA5k= +golang.org/x/tools v0.6.0 h1:BOw41kyTf3PuCW1pVQf8+Cyg8pMlkYB1oo9iJ6D/lKM= golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= @@ -1466,7 +1416,6 @@ google.golang.org/api v0.54.0/go.mod h1:7C4bFFOvVDGXjfDTAsgGwDgAxRDeQ4X8NvUedIt6 google.golang.org/api v0.55.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= google.golang.org/api v0.56.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= google.golang.org/api v0.57.0/go.mod h1:dVPlbZyBo2/OjBpmvNdpn2GRm6rPy75jyU7bmhdrMgI= -google.golang.org/api v0.58.0/go.mod h1:cAbP2FsxoGVNwtgNAmmn3y5G1TWAiVYRmg4yku3lv+E= google.golang.org/api v0.61.0/go.mod h1:xQRti5UdCmoCEqFxcz93fTl338AVqDgyaDRuOZ3hg9I= google.golang.org/api v0.63.0/go.mod h1:gs4ij2ffTRXwuzzgJl/56BdwJaA194ijkfn++9tDuPo= google.golang.org/api v0.67.0/go.mod h1:ShHKP8E60yPsKNw/w8w+VYaj9H6buA5UqDp8dhbQZ6g= @@ -1560,10 +1509,7 @@ google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71/go.mod h1:eFjDcFEc google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= google.golang.org/genproto v0.0.0-20210903162649-d08c68adba83/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= google.golang.org/genproto v0.0.0-20210909211513-a8c4777a87af/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210917145530-b395a37504d4/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210921142501-181ce0d877f6/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211007155348-82e027067bd4/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= @@ -1693,13 +1639,12 @@ gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8 gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce/go.mod h1:5AcXVHNjg+BDxry382+8OKon8SEWiKktQR07RKPsv1c= -gopkg.in/olebedev/go-duktape.v3 v3.0.0-20190213234257-ec84240a7772/go.mod h1:uAJfkITjFhyEEuUfm7bsmCZRbW5WRq8s9EY8HZ6hCns= gopkg.in/olebedev/go-duktape.v3 v3.0.0-20200316214253-d7b0ff38cac9/go.mod h1:uAJfkITjFhyEEuUfm7bsmCZRbW5WRq8s9EY8HZ6hCns= -gopkg.in/sourcemap.v1 v1.0.5/go.mod h1:2RlvNNSMglmRrcvhfuzp4hQHwOtjxlbjX7UPY/GXb78= gopkg.in/src-d/go-billy.v4 v4.3.2/go.mod h1:nDjArDMp+XMs1aFAESLRjfGSgfvoYN0hDfzEk0GjC98= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= gopkg.in/urfave/cli.v1 v1.20.0/go.mod h1:vuBzUtMdQeixQj8LVd+/98pzhxNGQoyuPBlsXHOQNO0= @@ -1720,6 +1665,7 @@ honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.1.3/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las= +lukechampine.com/blake3 v1.1.7 h1:GgRMhmdsuK8+ii6UZFDL8Nb+VyMwadAgcJyfYHxG6n0= lukechampine.com/blake3 v1.1.7/go.mod h1:tkKEOtDkNtklkXtLNEOGNq5tcV90tJiA1vAA12R78LA= lukechampine.com/uint128 v1.1.1/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= lukechampine.com/uint128 v1.2.0/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= @@ -1755,6 +1701,7 @@ modernc.org/strutil v1.1.3/go.mod h1:MEHNA7PdEnEwLvspRMtWTNnp2nnyvMfkimT1NKNAGbw modernc.org/tcl v1.13.1/go.mod h1:XOLfOwzhkljL4itZkK6T72ckMgvj0BDsnKNdZVUOecw= modernc.org/token v1.0.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= modernc.org/z v1.5.1/go.mod h1:eWFB510QWW5Th9YGZT81s+LwvaAs3Q2yr4sP0rmLkv8= +pgregory.net/rapid v0.4.7 h1:MTNRktPuv5FNqOO151TM9mDTa+XHcX6ypYeISDVD14g= pgregory.net/rapid v0.4.7/go.mod h1:UYpPVyjFHzYBGHIxLFoupi8vwk6rXNzRY9OMvVxFIOU= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index 13d6b4001..3916900a3 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -114,11 +114,10 @@ github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= github.com/julienschmidt/httprouter v1.1.1-0.20170430222011-975b5c4c7c21/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= +github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 h1:uC1QfSlInpQF+M0ao65imhwqKnz3Q2z/d8PWZRMQvDM= github.com/k0kubun/pp v3.0.1+incompatible h1:3tqvf7QgUnZ5tXO6pNAZlrvHgl6DvifjDrd9g2S9Z40= github.com/k0kubun/pp v3.0.1+incompatible/go.mod h1:GWse8YhT0p8pT4ir3ZgBbfZild3tgzSScAn6HmfYukg= github.com/karalabe/usb v0.0.0-20190919080040-51dc0efba356/go.mod h1:Od972xHfMJowv7NGVDiWVxk2zxnWgjLlJzE+F4F7AGU= -github.com/kevinburke/go-bindata v3.23.0+incompatible h1:rqNOXZlqrYhMVVAsQx8wuc+LaA73YcfbQ407wAykyS8= -github.com/kevinburke/go-bindata v3.23.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= github.com/kevinburke/go-bindata v3.24.0+incompatible h1:qajFA3D0pH94OTLU4zcCCKCDgR+Zr2cZK/RPJHDdFoY= github.com/kevinburke/go-bindata v3.24.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= @@ -132,8 +131,8 @@ github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFB github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= -github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= github.com/leanovate/gopter v0.2.9 h1:fQjYxZaynp97ozCzfOyOuAGOU4aU/z37zf/tOujFk7c= github.com/logrusorgru/aurora/v4 v4.0.0 h1:sRjfPpun/63iADiSvGGjgA1cAYegEWMPCJdUpJYn9JA= @@ -162,12 +161,8 @@ github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXW github.com/olekukonko/tablewriter v0.0.2-0.20190409134802-7e037d187b0c/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/onflow/atree v0.6.0 h1:j7nQ2r8npznx4NX39zPpBYHmdy45f4xwoi+dm37Jk7c= github.com/onflow/atree v0.6.0/go.mod h1:gBHU0M05qCbv9NN0kijLWMgC47gHVNBIp4KmsVFi0tc= -github.com/onflow/cadence v0.29.0-stable-cadence-4 h1:hzAfjDGaKD6YG/wN+T6FjGDUi3j0y6v3/3/WmyzG8pQ= -github.com/onflow/cadence v0.29.0-stable-cadence-4/go.mod h1:IpiqITdEX5zO/jeJd/5dqAodD7NDKnsrnymwb5kbCEE= github.com/onflow/cadence v0.39.13-stable-cadence h1:A08/gb4xSsgRjuXo9fkFFvtG7dIkxxkDCNk/VdWrMp4= github.com/onflow/cadence v0.39.13-stable-cadence/go.mod h1:SxT8/IEkS1drFj2ofUEK9S6KyJ5GQbrm0LX4EFCp/7Q= -github.com/onflow/flow-go-sdk v0.29.0-stable-cadence-4 h1:Vmutb6Cs72+Ayns6dx2mD8RByam3UB7Bg5/YB1ePPh4= -github.com/onflow/flow-go-sdk v0.29.0-stable-cadence-4/go.mod h1:KEfJICFBZ/GAV4Zj1+jCavTs7qDe77F+s6z6ot0XZSI= github.com/onflow/flow-go-sdk v0.41.7-stable-cadence h1:GrmLLAPrxOyC27v/J/XG/sKiM1ynE1MYidiMXUfM0e4= github.com/onflow/flow-go-sdk v0.41.7-stable-cadence/go.mod h1:ejVN+bqcsTHVvRpDDJDoBNdmcxUfFMW4IvdTbMeQ/hQ= github.com/onflow/flow-go/crypto v0.24.7 h1:RCLuB83At4z5wkAyUCF7MYEnPoIIOHghJaODuJyEoW0= @@ -209,6 +204,7 @@ github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQD github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= +github.com/sirupsen/logrus v1.4.2 h1:SPIRibHv4MatM3XXNO2BJeFLZwZ2LvZgfQ5+UNI2im4= github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spaolacci/murmur3 v1.0.1-0.20190317074736-539464a789e9/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= @@ -233,6 +229,7 @@ github.com/steakknife/hamming v0.0.0-20180906055917-c99c65617cd3/go.mod h1:hpGUW github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= +github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= @@ -241,6 +238,7 @@ github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/ github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/stretchr/testify v1.8.2 h1:+h33VjcLVPDHtOdpUCuF+7gSuG3yGIftsP1YvFihtJ8= github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/supranational/blst v0.3.10 h1:CMciDZ/h4pXDDXQASe8ZGTNKUiVNxVVA5hpci2Uuhuk= github.com/syndtr/goleveldb v1.0.1-0.20190923125748-758128399b1d/go.mod h1:9OrXJhf154huy1nPWmuSrkgjPUtUNhA+Zmy+6AESzuA= github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c h1:HelZ2kAFadG0La9d+4htN4HzQ68Bm2iM9qKMSMES6xg= github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c/go.mod h1:JlzghshsemAMDGZLytTFY8C1JQxQPhnatWqNwUXjggo= @@ -257,8 +255,10 @@ github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcY github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q= github.com/zeebo/assert v1.1.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= +github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ= github.com/zeebo/blake3 v0.2.3 h1:TFoLXsjeXqRNFxSbk35Dk4YtszE/MQQGK10BH4ptoTg= github.com/zeebo/blake3 v0.2.3/go.mod h1:mjJjZpnsyIVtVgTOSpJ9vmRE4wgDeyt2HU3qXvvKCaQ= +github.com/zeebo/pcg v1.0.1 h1:lyqfGeWiv4ahac6ttHs+I5hwtH/+1mrhlCtVNQM2kHo= github.com/zeebo/pcg v1.0.1/go.mod h1:09F0S9iiKrwn9rlI5yjLkmrug154/YRW6KnnXVDM/l4= github.com/zeebo/xxh3 v1.0.2 h1:xZmwmqxHZA8AI603jOQ0tMqmBr9lPeFwGg6d+xy9DC0= github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= @@ -266,6 +266,7 @@ go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.opentelemetry.io/otel v1.14.0 h1:/79Huy8wbf5DnIPhemGB+zEPVwnN6fuQybr/SRXa6hM= go.opentelemetry.io/otel v1.14.0/go.mod h1:o4buv+dJzx8rohcUeRmWUZhqupFvzWis188WlggnNeU= go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= +go.uber.org/goleak v1.1.10 h1:z+mqJhf6ss6BSfSM671tgKyZBFPTTJM+HLxnhPC3wu0= go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= @@ -278,6 +279,8 @@ golang.org/x/exp v0.0.0-20230321023759-10a507213a29 h1:ooxPy7fPvB4kwsA2h+iBNHkAb golang.org/x/exp v0.0.0-20230321023759-10a507213a29/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20200302205851-738671d3881b h1:Wh+f8QHJXR411sJR8/vRBTZ7YapZaRvUcLFFJhusH0k= +golang.org/x/mod v0.8.0 h1:LUYupSeNrTNCGzR/hVBk2NHZO4hXcVaW1k4Qx7rjPx8= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -312,6 +315,7 @@ golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGm golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.6.0 h1:BOw41kyTf3PuCW1pVQf8+Cyg8pMlkYB1oo9iJ6D/lKM= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= @@ -321,6 +325,7 @@ google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ij gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce/go.mod h1:5AcXVHNjg+BDxry382+8OKon8SEWiKktQR07RKPsv1c= gopkg.in/olebedev/go-duktape.v3 v3.0.0-20200316214253-d7b0ff38cac9/go.mod h1:uAJfkITjFhyEEuUfm7bsmCZRbW5WRq8s9EY8HZ6hCns= @@ -337,3 +342,5 @@ gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +lukechampine.com/blake3 v1.1.7 h1:GgRMhmdsuK8+ii6UZFDL8Nb+VyMwadAgcJyfYHxG6n0= +pgregory.net/rapid v0.4.7 h1:MTNRktPuv5FNqOO151TM9mDTa+XHcX6ypYeISDVD14g= From d052c5c4d964eb1440a44b2cbbc39a8345639d67 Mon Sep 17 00:00:00 2001 From: Supun Setunga Date: Tue, 12 Sep 2023 16:03:25 -0700 Subject: [PATCH 040/160] Update flow-sdk --- lib/go/contracts/go.mod | 8 ++++---- lib/go/contracts/go.sum | 12 ++++++++---- lib/go/templates/go.mod | 8 ++++---- lib/go/templates/go.sum | 28 ++++++++++++---------------- 4 files changed, 28 insertions(+), 28 deletions(-) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index b47696ca4..68a40a84a 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -5,9 +5,9 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230906165834-daca6600a634 - github.com/onflow/flow-go-sdk v0.41.7-stable-cadence + github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230912230115-25ad6f515ce6 github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230906170014-ac628577704c - github.com/stretchr/testify v1.8.2 + github.com/stretchr/testify v1.8.4 ) require ( @@ -25,8 +25,8 @@ require ( github.com/logrusorgru/aurora/v4 v4.0.0 // indirect github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-isatty v0.0.16 // indirect - github.com/onflow/atree v0.6.0 // indirect - github.com/onflow/cadence v0.39.13-stable-cadence // indirect + github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f // indirect + github.com/onflow/cadence v0.41.0-stable-cadence.1.0.20230908213403-8f1134670ed0 // indirect github.com/onflow/flow-go/crypto v0.24.7 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 42509ee6b..b79ad3d4c 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -878,14 +878,17 @@ github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/olekukonko/tablewriter v0.0.2-0.20190409134802-7e037d187b0c/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/onflow/atree v0.5.0/go.mod h1:gBHU0M05qCbv9NN0kijLWMgC47gHVNBIp4KmsVFi0tc= -github.com/onflow/atree v0.6.0 h1:j7nQ2r8npznx4NX39zPpBYHmdy45f4xwoi+dm37Jk7c= github.com/onflow/atree v0.6.0/go.mod h1:gBHU0M05qCbv9NN0kijLWMgC47gHVNBIp4KmsVFi0tc= -github.com/onflow/cadence v0.39.13-stable-cadence h1:A08/gb4xSsgRjuXo9fkFFvtG7dIkxxkDCNk/VdWrMp4= +github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f h1:Z8/PgTqOgOg02MTRpTBYO2k16FE6z4wEOtaC2WBR9Xo= +github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f/go.mod h1:xvP61FoOs95K7IYdIYRnNcYQGf4nbF/uuJ0tHf4DRuM= github.com/onflow/cadence v0.39.13-stable-cadence/go.mod h1:SxT8/IEkS1drFj2ofUEK9S6KyJ5GQbrm0LX4EFCp/7Q= +github.com/onflow/cadence v0.41.0-stable-cadence.1.0.20230908213403-8f1134670ed0 h1:8Mniwp17wrjLAv/KgCcZ6JH47/EjgCgkX0AXLfSXJEM= +github.com/onflow/cadence v0.41.0-stable-cadence.1.0.20230908213403-8f1134670ed0/go.mod h1:Q5Up9Kt+J6zuAFmgrsiKz6t//E/hR5/iuVjH62pdztk= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230906165834-daca6600a634 h1:9qHRlxEK3Q/qPEyzANXIBM8w5UIVveUqdG2gWH7HBOs= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230906165834-daca6600a634/go.mod h1:B27qWoolugkAEGuT9VJ7tn7UsOMI88ihHqcpEMqoncc= -github.com/onflow/flow-go-sdk v0.41.7-stable-cadence h1:GrmLLAPrxOyC27v/J/XG/sKiM1ynE1MYidiMXUfM0e4= github.com/onflow/flow-go-sdk v0.41.7-stable-cadence/go.mod h1:ejVN+bqcsTHVvRpDDJDoBNdmcxUfFMW4IvdTbMeQ/hQ= +github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230912230115-25ad6f515ce6 h1:wE5bXFvMKpreQtqesfVdLmb7SrZ+mu5j1+PuTjo8jkg= +github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230912230115-25ad6f515ce6/go.mod h1:tc3I2xIc+ThMUIW2Jkam1pquKpuRDTLGP79INkCGZg4= github.com/onflow/flow-go/crypto v0.24.7 h1:RCLuB83At4z5wkAyUCF7MYEnPoIIOHghJaODuJyEoW0= github.com/onflow/flow-go/crypto v0.24.7/go.mod h1:fqCzkIBBMRRkciVrvW21rECKq1oD7Q6u+bCI78lfNX0= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230906170014-ac628577704c h1:0U7FvQQWAk+0swHpOC6EzSbPDacYmqEMbblrBcbx+og= @@ -962,8 +965,9 @@ github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/ github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= -github.com/stretchr/testify v1.8.2 h1:+h33VjcLVPDHtOdpUCuF+7gSuG3yGIftsP1YvFihtJ8= github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= +github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= github.com/supranational/blst v0.3.10 h1:CMciDZ/h4pXDDXQASe8ZGTNKUiVNxVVA5hpci2Uuhuk= github.com/supranational/blst v0.3.10/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= github.com/syndtr/goleveldb v1.0.1-0.20190923125748-758128399b1d/go.mod h1:9OrXJhf154huy1nPWmuSrkgjPUtUNhA+Zmy+6AESzuA= diff --git a/lib/go/templates/go.mod b/lib/go/templates/go.mod index ee8f3cae1..9475dc072 100644 --- a/lib/go/templates/go.mod +++ b/lib/go/templates/go.mod @@ -4,8 +4,8 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.24.0+incompatible - github.com/onflow/cadence v0.39.13-stable-cadence - github.com/onflow/flow-go-sdk v0.41.7-stable-cadence + github.com/onflow/cadence v0.41.0-stable-cadence.1.0.20230908213403-8f1134670ed0 + github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230912230115-25ad6f515ce6 github.com/psiemens/sconfig v0.1.0 github.com/spf13/cobra v1.5.0 ) @@ -30,7 +30,7 @@ require ( github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-isatty v0.0.16 // indirect github.com/mitchellh/mapstructure v1.1.2 // indirect - github.com/onflow/atree v0.6.0 // indirect + github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f // indirect github.com/onflow/flow-go/crypto v0.24.7 // indirect github.com/pelletier/go-toml v1.2.0 // indirect github.com/pkg/errors v0.9.1 // indirect @@ -41,7 +41,7 @@ require ( github.com/spf13/jwalterweatherman v1.0.0 // indirect github.com/spf13/pflag v1.0.5 // indirect github.com/spf13/viper v1.4.0 // indirect - github.com/stretchr/testify v1.8.2 // indirect + github.com/stretchr/testify v1.8.4 // indirect github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c // indirect github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d // indirect github.com/x448/float16 v0.8.4 // indirect diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index 3916900a3..5a08ed8fd 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -128,8 +128,8 @@ github.com/klauspost/cpuid/v2 v2.2.4/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8t github.com/konsorten/go-windows-terminal-sequences v1.0.1 h1:mweAR1A6xJ3oS2pRaGiHgQ4OO8tzTaLawm8vnODuwDk= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= -github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= @@ -159,12 +159,12 @@ github.com/naoina/toml v0.1.2-0.20170918210437-9fafd6967416/go.mod h1:NBIhNtsFMo github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/olekukonko/tablewriter v0.0.2-0.20190409134802-7e037d187b0c/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= -github.com/onflow/atree v0.6.0 h1:j7nQ2r8npznx4NX39zPpBYHmdy45f4xwoi+dm37Jk7c= -github.com/onflow/atree v0.6.0/go.mod h1:gBHU0M05qCbv9NN0kijLWMgC47gHVNBIp4KmsVFi0tc= -github.com/onflow/cadence v0.39.13-stable-cadence h1:A08/gb4xSsgRjuXo9fkFFvtG7dIkxxkDCNk/VdWrMp4= -github.com/onflow/cadence v0.39.13-stable-cadence/go.mod h1:SxT8/IEkS1drFj2ofUEK9S6KyJ5GQbrm0LX4EFCp/7Q= -github.com/onflow/flow-go-sdk v0.41.7-stable-cadence h1:GrmLLAPrxOyC27v/J/XG/sKiM1ynE1MYidiMXUfM0e4= -github.com/onflow/flow-go-sdk v0.41.7-stable-cadence/go.mod h1:ejVN+bqcsTHVvRpDDJDoBNdmcxUfFMW4IvdTbMeQ/hQ= +github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f h1:Z8/PgTqOgOg02MTRpTBYO2k16FE6z4wEOtaC2WBR9Xo= +github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f/go.mod h1:xvP61FoOs95K7IYdIYRnNcYQGf4nbF/uuJ0tHf4DRuM= +github.com/onflow/cadence v0.41.0-stable-cadence.1.0.20230908213403-8f1134670ed0 h1:8Mniwp17wrjLAv/KgCcZ6JH47/EjgCgkX0AXLfSXJEM= +github.com/onflow/cadence v0.41.0-stable-cadence.1.0.20230908213403-8f1134670ed0/go.mod h1:Q5Up9Kt+J6zuAFmgrsiKz6t//E/hR5/iuVjH62pdztk= +github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230912230115-25ad6f515ce6 h1:wE5bXFvMKpreQtqesfVdLmb7SrZ+mu5j1+PuTjo8jkg= +github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230912230115-25ad6f515ce6/go.mod h1:tc3I2xIc+ThMUIW2Jkam1pquKpuRDTLGP79INkCGZg4= github.com/onflow/flow-go/crypto v0.24.7 h1:RCLuB83At4z5wkAyUCF7MYEnPoIIOHghJaODuJyEoW0= github.com/onflow/flow-go/crypto v0.24.7/go.mod h1:fqCzkIBBMRRkciVrvW21rECKq1oD7Q6u+bCI78lfNX0= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= @@ -197,6 +197,7 @@ github.com/rivo/uniseg v0.4.4 h1:8TfxU8dW6PdqD27gjM8MVNuicgxIjxpm4K7x4jp8sis= github.com/rivo/uniseg v0.4.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= github.com/rjeczalik/notify v0.9.1/go.mod h1:rKwnCoCGeuQnwBtTSPL9Dad03Vh2n40ePRrjvIXnJho= github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= +github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= github.com/rs/cors v0.0.0-20160617231935-a62a804a8a00/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= github.com/rs/xhandler v0.0.0-20160618193221-ed27b6fd6521/go.mod h1:RvLn4FgxWubrpZHtQLnOf6EwhN2hEMusxZOhcW9H3UQ= github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= @@ -228,16 +229,12 @@ github.com/steakknife/bloomfilter v0.0.0-20180922174646-6819c0d2a570/go.mod h1:8 github.com/steakknife/hamming v0.0.0-20180906055917-c99c65617cd3/go.mod h1:hpGUWaI9xL8pRQCTXQgocU38Qw1g0Us7n5PxxTwTCYU= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= -github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c= -github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= -github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= -github.com/stretchr/testify v1.8.2 h1:+h33VjcLVPDHtOdpUCuF+7gSuG3yGIftsP1YvFihtJ8= -github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= +github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= github.com/supranational/blst v0.3.10 h1:CMciDZ/h4pXDDXQASe8ZGTNKUiVNxVVA5hpci2Uuhuk= github.com/syndtr/goleveldb v1.0.1-0.20190923125748-758128399b1d/go.mod h1:9OrXJhf154huy1nPWmuSrkgjPUtUNhA+Zmy+6AESzuA= github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c h1:HelZ2kAFadG0La9d+4htN4HzQ68Bm2iM9qKMSMES6xg= @@ -279,7 +276,7 @@ golang.org/x/exp v0.0.0-20230321023759-10a507213a29 h1:ooxPy7fPvB4kwsA2h+iBNHkAb golang.org/x/exp v0.0.0-20230321023759-10a507213a29/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20200302205851-738671d3881b h1:Wh+f8QHJXR411sJR8/vRBTZ7YapZaRvUcLFFJhusH0k= +golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 h1:VLliZ0d+/avPrXXH+OakdXhpJuEoBZuwh1m2j7U6Iug= golang.org/x/mod v0.8.0 h1:LUYupSeNrTNCGzR/hVBk2NHZO4hXcVaW1k4Qx7rjPx8= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -325,7 +322,7 @@ google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ij gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 h1:YR8cESwS4TdDjEe65xsg0ogRM/Nc3DYOhEAlW+xobZo= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce/go.mod h1:5AcXVHNjg+BDxry382+8OKon8SEWiKktQR07RKPsv1c= gopkg.in/olebedev/go-duktape.v3 v3.0.0-20200316214253-d7b0ff38cac9/go.mod h1:uAJfkITjFhyEEuUfm7bsmCZRbW5WRq8s9EY8HZ6hCns= @@ -337,7 +334,6 @@ gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= -gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= From bf077d0fa002add2e48b5f8483f4f95ae3a0ab01 Mon Sep 17 00:00:00 2001 From: Supun Setunga Date: Tue, 12 Sep 2023 16:47:30 -0700 Subject: [PATCH 041/160] Update more contracts --- .../epoch/node/register_dkg_participant.cdc | 6 ++--- transactions/epoch/node/register_node.cdc | 26 +++++++------------ transactions/epoch/node/register_qc_voter.cdc | 6 ++--- 3 files changed, 16 insertions(+), 22 deletions(-) diff --git a/transactions/epoch/node/register_dkg_participant.cdc b/transactions/epoch/node/register_dkg_participant.cdc index 1e175abed..2f20ead60 100644 --- a/transactions/epoch/node/register_dkg_participant.cdc +++ b/transactions/epoch/node/register_dkg_participant.cdc @@ -4,14 +4,14 @@ import FlowDKG from 0xDKGADDRESS transaction() { - prepare(signer: AuthAccount) { + prepare(signer: auth(Storage) &Account) { - let nodeRef = signer.borrow<&FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath) + let nodeRef = signer.storage.borrow<&FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath) ?? panic("Could not borrow node reference from storage path") let dkgParticipant <- FlowEpoch.getDKGParticipant(nodeStaker: nodeRef) - signer.save(<-dkgParticipant, to: FlowDKG.ParticipantStoragePath) + signer.storage.save(<-dkgParticipant, to: FlowDKG.ParticipantStoragePath) } } \ No newline at end of file diff --git a/transactions/epoch/node/register_node.cdc b/transactions/epoch/node/register_node.cdc index e19f9f587..466dfab66 100644 --- a/transactions/epoch/node/register_node.cdc +++ b/transactions/epoch/node/register_node.cdc @@ -22,13 +22,13 @@ transaction( let flowTokenRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault - prepare(acct: AuthAccount) { + prepare(acct: auth(BorrowValue) &Account) { - self.flowTokenRef = acct.borrow(from: /storage/flowTokenVault) + self.flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") // Register Node - if acct.borrow<&FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath) == nil { + if acct.storage.borrow<&FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath) == nil { let nodeStaker <- FlowIDTableStaking.addNodeRecord( id: id, @@ -39,12 +39,10 @@ transaction( tokensCommitted: <-self.flowTokenRef.withdraw(amount: amount) ) - acct.save(<-nodeStaker, to: FlowIDTableStaking.NodeStakerStoragePath) + acct.storage.save(<-nodeStaker, to: FlowIDTableStaking.NodeStakerStoragePath) - acct.link<&{FlowIDTableStaking.NodeStakerPublic}>( - FlowIDTableStaking.NodeStakerPublicPath, - target: FlowIDTableStaking.NodeStakerStoragePath - ) + let nodeStakerCap = acct.capabilities.storage.issue<&{FlowIDTableStaking.NodeStakerPublic}>(FlowIDTableStaking.NodeStakerStoragePath) + acct.capabilities.storage.publish(nodeStakerCap, to: FlowIDTableStaking.NodeStakerPublicPath) } let nodeRef = acct.borrow<&FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath) @@ -55,27 +53,23 @@ transaction( // If the node is a collector or consensus node, create a secondary account for their specific objects if nodeInfo.role == 1 as UInt8 { - let machineAcct = AuthAccount(payer: acct) + let machineAcct = Account(payer: acct) for key in publicKeys { machineAcct.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight) } let qcVoter <- FlowEpoch.getClusterQCVoter(nodeStaker: nodeRef) - - machineAcct.save(<-qcVoter, to: FlowClusterQC.VoterStoragePath) + machineAcct.storage.save(<-qcVoter, to: FlowClusterQC.VoterStoragePath) } else if nodeInfo.role == 2 as UInt8 { - let machineAcct = AuthAccount(payer: acct) + let machineAcct = Account(payer: acct) for key in publicKeys { machineAcct.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight) } let dkgParticipant <- FlowEpoch.getDKGParticipant(nodeStaker: nodeRef) - - machineAcct.save(<-dkgParticipant, to: FlowDKG.ParticipantStoragePath) - + machineAcct.storage.save(<-dkgParticipant, to: FlowDKG.ParticipantStoragePath) } - } } \ No newline at end of file diff --git a/transactions/epoch/node/register_qc_voter.cdc b/transactions/epoch/node/register_qc_voter.cdc index 6477182d8..8e9226289 100644 --- a/transactions/epoch/node/register_qc_voter.cdc +++ b/transactions/epoch/node/register_qc_voter.cdc @@ -4,14 +4,14 @@ import FlowClusterQC from 0xQCADDRESS transaction() { - prepare(signer: AuthAccount) { + prepare(signer: auth(Storage) &Account) { - let nodeRef = signer.borrow<&FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath) + let nodeRef = signer.storage.borrow<&FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath) ?? panic("Could not borrow node reference from storage path") let qcVoter <- FlowEpoch.getClusterQCVoter(nodeStaker: nodeRef) - signer.save(<-qcVoter, to: FlowClusterQC.VoterStoragePath) + signer.storage.save(<-qcVoter, to: FlowClusterQC.VoterStoragePath) } } \ No newline at end of file From fb8fc84f8dd8a9af007978e6f38cdbfe5de5dacf Mon Sep 17 00:00:00 2001 From: Supun Setunga Date: Wed, 13 Sep 2023 09:11:25 -0700 Subject: [PATCH 042/160] Update ft/nft deps --- lib/go/contracts/go.mod | 4 +- lib/go/contracts/go.sum | 14 +- lib/go/templates/go.mod | 3 +- lib/go/templates/go.sum | 390 +++++++++++++++++++++++++++++++++++++++- 4 files changed, 397 insertions(+), 14 deletions(-) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 68a40a84a..71cc6f48c 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -4,9 +4,9 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230906165834-daca6600a634 + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230913160646-09adc7d3b513 github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230912230115-25ad6f515ce6 - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230906170014-ac628577704c + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230913160722-e4f5f3f4b87a github.com/stretchr/testify v1.8.4 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index b79ad3d4c..132ea7a2a 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -877,24 +877,20 @@ github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLA github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/olekukonko/tablewriter v0.0.2-0.20190409134802-7e037d187b0c/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= -github.com/onflow/atree v0.5.0/go.mod h1:gBHU0M05qCbv9NN0kijLWMgC47gHVNBIp4KmsVFi0tc= -github.com/onflow/atree v0.6.0/go.mod h1:gBHU0M05qCbv9NN0kijLWMgC47gHVNBIp4KmsVFi0tc= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f h1:Z8/PgTqOgOg02MTRpTBYO2k16FE6z4wEOtaC2WBR9Xo= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f/go.mod h1:xvP61FoOs95K7IYdIYRnNcYQGf4nbF/uuJ0tHf4DRuM= -github.com/onflow/cadence v0.39.13-stable-cadence/go.mod h1:SxT8/IEkS1drFj2ofUEK9S6KyJ5GQbrm0LX4EFCp/7Q= github.com/onflow/cadence v0.41.0-stable-cadence.1.0.20230908213403-8f1134670ed0 h1:8Mniwp17wrjLAv/KgCcZ6JH47/EjgCgkX0AXLfSXJEM= github.com/onflow/cadence v0.41.0-stable-cadence.1.0.20230908213403-8f1134670ed0/go.mod h1:Q5Up9Kt+J6zuAFmgrsiKz6t//E/hR5/iuVjH62pdztk= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230906165834-daca6600a634 h1:9qHRlxEK3Q/qPEyzANXIBM8w5UIVveUqdG2gWH7HBOs= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230906165834-daca6600a634/go.mod h1:B27qWoolugkAEGuT9VJ7tn7UsOMI88ihHqcpEMqoncc= -github.com/onflow/flow-go-sdk v0.41.7-stable-cadence/go.mod h1:ejVN+bqcsTHVvRpDDJDoBNdmcxUfFMW4IvdTbMeQ/hQ= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230913160646-09adc7d3b513 h1:ljy2ZuH8kcfqRmkXwh/ypLPxkYoojINyhHlIiBXIhsY= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230913160646-09adc7d3b513/go.mod h1:aXUwTDXnzpBPNMvYPyeItFv/64Yv0GmYffAj8KFbu4s= github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230912230115-25ad6f515ce6 h1:wE5bXFvMKpreQtqesfVdLmb7SrZ+mu5j1+PuTjo8jkg= github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230912230115-25ad6f515ce6/go.mod h1:tc3I2xIc+ThMUIW2Jkam1pquKpuRDTLGP79INkCGZg4= github.com/onflow/flow-go/crypto v0.24.7 h1:RCLuB83At4z5wkAyUCF7MYEnPoIIOHghJaODuJyEoW0= github.com/onflow/flow-go/crypto v0.24.7/go.mod h1:fqCzkIBBMRRkciVrvW21rECKq1oD7Q6u+bCI78lfNX0= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230906170014-ac628577704c h1:0U7FvQQWAk+0swHpOC6EzSbPDacYmqEMbblrBcbx+og= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230906170014-ac628577704c/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230913160722-e4f5f3f4b87a h1:KO+ajOFzk67Z5lVQBXwDbbzYeb8+F5LMTfGi/z1iElQ= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230913160722-e4f5f3f4b87a/go.mod h1:D37Nu+Q2gAO9EHVCA6u5m6RtxkvAzxjIa/g2LhGeHek= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= -github.com/onflow/sdks v0.5.0/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= +github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= diff --git a/lib/go/templates/go.mod b/lib/go/templates/go.mod index 9475dc072..f633293ba 100644 --- a/lib/go/templates/go.mod +++ b/lib/go/templates/go.mod @@ -25,6 +25,7 @@ require ( github.com/inconshreveable/mousetrap v1.0.0 // indirect github.com/k0kubun/pp v3.0.1+incompatible // indirect github.com/klauspost/cpuid/v2 v2.2.4 // indirect + github.com/kr/text v0.2.0 // indirect github.com/logrusorgru/aurora/v4 v4.0.0 // indirect github.com/magiconair/properties v1.8.0 // indirect github.com/mattn/go-colorable v0.1.13 // indirect @@ -36,7 +37,7 @@ require ( github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/rivo/uniseg v0.4.4 // indirect - github.com/spf13/afero v1.1.2 // indirect + github.com/spf13/afero v1.9.2 // indirect github.com/spf13/cast v1.3.0 // indirect github.com/spf13/jwalterweatherman v1.0.0 // indirect github.com/spf13/pflag v1.0.5 // indirect diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index 5a08ed8fd..382479f56 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -1,4 +1,41 @@ cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= +cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= +cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= +cloud.google.com/go v0.44.3/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= +cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= +cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= +cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= +cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4= +cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M= +cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc= +cloud.google.com/go v0.56.0/go.mod h1:jr7tqZxxKOVYizybht9+26Z/gUq7tiRzu+ACVAMbKVk= +cloud.google.com/go v0.57.0/go.mod h1:oXiQ6Rzq3RAkkY7N6t3TcE6jE+CIBBbA36lwQ1JyzZs= +cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOYc= +cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY= +cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= +cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= +cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPTY= +cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= +cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= +cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= +cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= +cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= +cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= +cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= +cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= +cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= +cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= +cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= +cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= +cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= +cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= +cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= +cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= +cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= +cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo= +dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= github.com/Azure/azure-pipeline-go v0.2.1/go.mod h1:UGSo8XybXnIGZ3epmeBw7Jdz+HiUVpqIlpz/HKHylF4= github.com/Azure/azure-pipeline-go v0.2.2/go.mod h1:4rQ/NZncSvGqNkkOsNpOU1tgoNuIlp9AfUH5G1tvCHc= github.com/Azure/azure-storage-blob-go v0.7.0/go.mod h1:f9YQKtsG1nMisotuTPpO0tjNuEjKRYAcJU8/ydDI++4= @@ -14,6 +51,7 @@ github.com/Azure/go-autorest/logger v0.1.0/go.mod h1:oExouG+K6PryycPJfVSxi/koC6L github.com/Azure/go-autorest/tracing v0.5.0/go.mod h1:r/s2XiOKccPW3HrqB+W0TQzfbtp2fGCgRFtBroKn4Dk= github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= +github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/OneOfOne/xxhash v1.2.5/go.mod h1:eZbhyaAYD41SGSSsnmcpxVoRiQ/MPUTjUdIIOT9Um7Q= github.com/SaveTheRbtz/mph v0.1.2 h1:5l3W496Up+7BNOVJQnJhzcGBh+wWfxWdmPUAkx3WmaM= @@ -33,12 +71,19 @@ github.com/bits-and-blooms/bitset v1.5.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edY github.com/btcsuite/btcd v0.0.0-20171128150713-2e60448ffcc6/go.mod h1:Dmm/EzmjnCiweXmzRIAiUWCInVmPgjkzgv5k4tVyXiQ= github.com/btcsuite/btcd/btcec/v2 v2.2.1 h1:xP60mv8fvp+0khmrN0zTdPC3cNm24rfeE6lh2R/Yv3E= github.com/btcsuite/btcd/btcec/v2 v2.2.1/go.mod h1:9/CSmJxmuvqzX9Wh2fXMWToLOHhPd11lSPuIupwTkI8= +github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cespare/cp v0.1.0/go.mod h1:SOGHArjBr4JWaSDEVpWpo/hNg6RoKrls6Oh40hiwW+s= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= github.com/cespare/xxhash/v2 v2.0.1-0.20190104013014-3767db7a7e18/go.mod h1:HD5P3vAIAh+Y2GAxg0PrPN1P8WkepXGpjbUPDHJqqKM= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= +github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= +github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cloudflare/cloudflare-go v0.10.2-0.20190916151808-a80f83b9add9/go.mod h1:1MxXX1Ux4x6mqPmjkUgTP1CdXIBXKX7T+Jk9Gxrmx+U= +github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= +github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= +github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk= @@ -48,6 +93,7 @@ github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfc github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= +github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= @@ -62,6 +108,12 @@ github.com/docker/docker v1.4.2-0.20180625184442-8e610b2b55bf/go.mod h1:eEKB0N0r github.com/dop251/goja v0.0.0-20200219165308-d1232e640a87/go.mod h1:Mw6PkjjMXWbTj+nnj4s3QPXq1jaT0s5pC0iFD4+BOAA= github.com/edsrzf/mmap-go v0.0.0-20160512033002-935e0e8a636c/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= github.com/elastic/gosigar v0.8.1-0.20180330100440-37f05ff46ffa/go.mod h1:cdorVVzy1fhmEqmtgqkoE3bYtCfSCkVyjTyCIo22xvs= +github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= +github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= +github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= +github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= +github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= +github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/ethereum/go-ethereum v1.9.13 h1:rOPqjSngvs1VSYH2H+PMPiWt4VEulvNRbFgqiGqJM3E= github.com/ethereum/go-ethereum v1.9.13/go.mod h1:qwN9d1GLyDh0N7Ab8bMGd0H9knaji2jOBm2RrMGjXls= github.com/fatih/color v1.3.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= @@ -74,6 +126,9 @@ github.com/fxamacker/circlehash v0.3.0 h1:XKdvTtIJV9t7DDUtsf0RIpC1OcxZtPbmgIH7ek github.com/fxamacker/circlehash v0.3.0/go.mod h1:3aq3OfVvsWtkWMb6A1owjOQFA+TLsD5FgJflnaQwtMM= github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff/go.mod h1:x7DCsMOv1taUwEWCzT4cmDeAkigA5/QCwUodaVOe8Ww= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= +github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= +github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= +github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= @@ -86,15 +141,62 @@ github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7a github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= +github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= +github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= +github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= +github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= +github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= +github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2-0.20190517061210-b285ee9cfc6c/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= +github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk= +github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= +github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= +github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= +github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= +github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= +github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= +github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= +github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= +github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= +github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= +github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= +github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= +github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= +github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= +github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= +github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= +github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= +github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= +github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= github.com/gorilla/websocket v1.4.1-0.20190629185528-ae1634f6a989/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= github.com/graph-gophers/graphql-go v0.0.0-20191115155744-f33e81362277/go.mod h1:9CQHMSxwO4MprSdzoIEobiHpoLtHm77vfxsvsIN5Vuc= @@ -102,16 +204,22 @@ github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmg github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/hashicorp/golang-lru v0.0.0-20160813221303-0a025b7e63ad/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/huin/goupnp v0.0.0-20161224104101-679507af18f3/go.mod h1:MZ2ZmwcBpvOoJ22IJsc7va19ZwoheaBk43rKg12SKag= +github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= +github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM= github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= github.com/influxdata/influxdb v1.2.3-0.20180221223340-01288bdb0883/go.mod h1:qZna6X/4elxqT3yI9iZYdZrWWdeFOOprn86kgg4+IzY= github.com/jackpal/go-nat-pmp v1.0.2-0.20160603034137-1fa385a6f458/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc= github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= +github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= +github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= github.com/julienschmidt/httprouter v1.1.1-0.20170430222011-975b5c4c7c21/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 h1:uC1QfSlInpQF+M0ao65imhwqKnz3Q2z/d8PWZRMQvDM= @@ -127,12 +235,14 @@ github.com/klauspost/cpuid/v2 v2.2.4 h1:acbojRNwl3o09bUq+yDCtZFc1aiwaAAxtcn8YkZX github.com/klauspost/cpuid/v2 v2.2.4/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY= github.com/konsorten/go-windows-terminal-sequences v1.0.1 h1:mweAR1A6xJ3oS2pRaGiHgQ4OO8tzTaLawm8vnODuwDk= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= -github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= +github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= github.com/leanovate/gopter v0.2.9 h1:fQjYxZaynp97ozCzfOyOuAGOU4aU/z37zf/tOujFk7c= github.com/logrusorgru/aurora/v4 v4.0.0 h1:sRjfPpun/63iADiSvGGjgA1cAYegEWMPCJdUpJYn9JA= @@ -179,12 +289,14 @@ github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINE github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/sftp v1.13.1/go.mod h1:3HaPG6Dq1ILlpPZRO0HVMrsydcdLt6HRDccSgb87qRg= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= @@ -197,6 +309,7 @@ github.com/rivo/uniseg v0.4.4 h1:8TfxU8dW6PdqD27gjM8MVNuicgxIjxpm4K7x4jp8sis= github.com/rivo/uniseg v0.4.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= github.com/rjeczalik/notify v0.9.1/go.mod h1:rKwnCoCGeuQnwBtTSPL9Dad03Vh2n40ePRrjvIXnJho= github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= +github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= github.com/rs/cors v0.0.0-20160617231935-a62a804a8a00/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= github.com/rs/xhandler v0.0.0-20160618193221-ed27b6fd6521/go.mod h1:RvLn4FgxWubrpZHtQLnOf6EwhN2hEMusxZOhcW9H3UQ= @@ -209,8 +322,9 @@ github.com/sirupsen/logrus v1.4.2 h1:SPIRibHv4MatM3XXNO2BJeFLZwZ2LvZgfQ5+UNI2im4 github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spaolacci/murmur3 v1.0.1-0.20190317074736-539464a789e9/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= -github.com/spf13/afero v1.1.2 h1:m8/z1t7/fwjysjQRYbP0RD+bUIF/8tJwPdEZsI83ACI= github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= +github.com/spf13/afero v1.9.2 h1:j49Hj62F0n+DaZ1dDCvhABaPNSGNkt32oRFxI33IEMw= +github.com/spf13/afero v1.9.2/go.mod h1:iUV7ddyEEZPO5gA3zD4fJt6iStLlL+Lg4m2cihcDf8Y= github.com/spf13/cast v1.3.0 h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8= github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= github.com/spf13/cobra v0.0.5/go.mod h1:3K3wKZymM7VvHMDS9+Akkh4K60UwM26emMESw8tLCHU= @@ -233,6 +347,8 @@ github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= +github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= +github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= github.com/supranational/blst v0.3.10 h1:CMciDZ/h4pXDDXQASe8ZGTNKUiVNxVVA5hpci2Uuhuk= @@ -251,6 +367,10 @@ github.com/x448/float16 v0.8.4 h1:qLwI1I70+NjRFUR3zs1JPUCgaCXSh3SW62uAKT1mSBM= github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcYsOfg= github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q= +github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/zeebo/assert v1.1.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ= github.com/zeebo/blake3 v0.2.3 h1:TFoLXsjeXqRNFxSbk35Dk4YtszE/MQQGK10BH4ptoTg= @@ -260,6 +380,12 @@ github.com/zeebo/pcg v1.0.1/go.mod h1:09F0S9iiKrwn9rlI5yjLkmrug154/YRW6KnnXVDM/l github.com/zeebo/xxh3 v1.0.2 h1:xZmwmqxHZA8AI603jOQ0tMqmBr9lPeFwGg6d+xy9DC0= github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= +go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= +go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= +go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= +go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= +go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= +go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= go.opentelemetry.io/otel v1.14.0 h1:/79Huy8wbf5DnIPhemGB+zEPVwnN6fuQybr/SRXa6hM= go.opentelemetry.io/otel v1.14.0/go.mod h1:o4buv+dJzx8rohcUeRmWUZhqupFvzWis188WlggnNeU= go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= @@ -269,27 +395,106 @@ go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200311171314-f7b00557c8c4/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= +golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.7.0 h1:AvwMYaRytfdeVt3u6mLaxYtErKYjxA2OXjJ1HHq6t3A= golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= +golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= +golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= +golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= +golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= +golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= +golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= +golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= +golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= +golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= +golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= golang.org/x/exp v0.0.0-20230321023759-10a507213a29 h1:ooxPy7fPvB4kwsA2h+iBNHkAbp/4JxTSwCmvdjEYmug= golang.org/x/exp v0.0.0-20230321023759-10a507213a29/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= +golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= +golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= +golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= +golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs= +golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 h1:VLliZ0d+/avPrXXH+OakdXhpJuEoBZuwh1m2j7U6Iug= +golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= +golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= +golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= +golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY= +golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= +golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= +golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.8.0 h1:LUYupSeNrTNCGzR/hVBk2NHZO4hXcVaW1k4Qx7rjPx8= +golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190522155817-f3200d17e092/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= +golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200222125558-5a598a2470a0/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= +golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= +golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= +golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20191202225959-858c2ad4c8b6/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -297,32 +502,203 @@ golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5h golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181205085412-a5c9d58dba9a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= +golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.8.0 h1:57P1ETyNKtuIjB4SRd15iJxuhj8Gc416Y78H3qgMh68= golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= +golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= +golang.org/x/tools v0.0.0-20200312045724-11d5b4c81c7d/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw= +golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8= +golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= +golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= +golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= golang.org/x/tools v0.6.0 h1:BOw41kyTf3PuCW1pVQf8+Cyg8pMlkYB1oo9iJ6D/lKM= +golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= +google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= +google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= +google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= +google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= +google.golang.org/api v0.13.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= +google.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= +google.golang.org/api v0.15.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= +google.golang.org/api v0.17.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.18.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.19.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.20.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.22.0/go.mod h1:BwFmGc8tA3vsd7r/7kR8DY7iEEGSU04BFxCo5jP/sfE= +google.golang.org/api v0.24.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= +google.golang.org/api v0.28.0/go.mod h1:lIXQywCXRcnZPGlsd8NbLnOjtAoL6em04bJ9+z0MncE= +google.golang.org/api v0.29.0/go.mod h1:Lcubydp8VUV7KeIHD9z2Bys/sm/vGKnG1UHuDBSrHWM= +google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz5138Fc= +google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= +google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= +google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= +google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= +google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= +google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= +google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= +google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= +google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA= +google.golang.org/genproto v0.0.0-20200212174721-66ed5ce911ce/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200228133532-8c2c7df3a383/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200305110556-506484158171/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= +google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= +google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= +google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20200904004341-0bd0a958aa1d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210108203827-ffc7fda8c3d7/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210226172003-ab064af71705/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= +google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= +google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= +google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= +google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= +google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.27.1/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/grpc v1.28.0/go.mod h1:rpkK4SK4GF4Ach/+MFLZUBavHOvF2JJB5uozKKal+60= +google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3IjizoKk= +google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/grpc v1.31.1/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= +google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= +google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= +google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= +google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= +google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE= +google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo= +google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= +google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= +gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce/go.mod h1:5AcXVHNjg+BDxry382+8OKon8SEWiKktQR07RKPsv1c= gopkg.in/olebedev/go-duktape.v3 v3.0.0-20200316214253-d7b0ff38cac9/go.mod h1:uAJfkITjFhyEEuUfm7bsmCZRbW5WRq8s9EY8HZ6hCns= @@ -334,9 +710,19 @@ gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= +gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= +honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= +honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= lukechampine.com/blake3 v1.1.7 h1:GgRMhmdsuK8+ii6UZFDL8Nb+VyMwadAgcJyfYHxG6n0= pgregory.net/rapid v0.4.7 h1:MTNRktPuv5FNqOO151TM9mDTa+XHcX6ypYeISDVD14g= +rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= +rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= +rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= From 233479556fba3ca83474795419f4309a68814cbe Mon Sep 17 00:00:00 2001 From: Supun Setunga Date: Wed, 13 Sep 2023 09:51:00 -0700 Subject: [PATCH 043/160] Generate assets --- lib/go/templates/internal/assets/assets.go | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 7119a954e..e4bc4ba57 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -52,9 +52,9 @@ // epoch/admin/update_epoch_views.cdc (329B) // epoch/admin/update_reward.cdc (342B) // epoch/admin/update_staking_views.cdc (331B) -// epoch/node/register_dkg_participant.cdc (529B) -// epoch/node/register_node.cdc (3kB) -// epoch/node/register_qc_voter.cdc (520B) +// epoch/node/register_dkg_participant.cdc (556B) +// epoch/node/register_node.cdc (3.096kB) +// epoch/node/register_qc_voter.cdc (547B) // epoch/scripts/get_bonus_tokens.cdc (110B) // epoch/scripts/get_config_metadata.cdc (123B) // epoch/scripts/get_create_clusters.cdc (205B) @@ -1394,7 +1394,7 @@ func epochAdminUpdate_staking_viewsCdc() (*asset, error) { return a, nil } -var _epochNodeRegister_dkg_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x43\x0e\x25\x42\x0d\x3d\x07\x5b\x11\x63\x6d\x11\x5a\x31\xfd\x03\xe3\x66\x4c\x16\xe3\xce\x32\x19\x6b\xa1\xf8\xdf\x8b\xa6\xb1\x2b\x76\x4e\x81\xf7\xf2\xcd\x7b\x3b\x76\xe7\x59\x14\x9e\x1b\x3e\xcc\x3c\x9b\x1a\x36\xc2\x3b\x78\xf8\x9a\x2d\xdf\xa7\x2f\x93\x3c\x5f\xcd\x8a\x22\x0a\x4c\xaf\xf9\x07\xae\x1b\x2a\x14\xb7\xd6\x55\x9d\x3b\xbe\x15\xe2\xf0\x9f\x7c\x31\xef\xb1\xf9\x62\xde\x43\x23\x15\x74\x2d\x1a\xb5\xec\x92\x01\x7c\x47\x11\x00\x80\x17\xf2\x28\x94\xb4\xb6\x72\x24\x19\x4c\xf6\x5a\x4f\x8c\xe1\xbd\xd3\x8b\xe7\x34\x0d\x29\x38\x2e\x69\x45\x1b\x78\x84\xce\x9d\xae\x59\x84\x0f\xa3\xbb\xdb\x3c\xe9\x1b\x97\xe7\x6f\x92\xa7\xe4\x94\x25\xfb\xa7\x4d\x60\x2a\x94\x05\x2b\x5a\xa2\xd6\x83\xcb\xce\xd3\x8c\xc7\xe0\xd1\x59\x93\xc4\x53\xde\x37\x25\x38\x56\xe8\xd6\x9e\xe3\x80\xd0\x86\x84\x9c\xa1\xae\x71\xdb\x71\xc0\xa3\xd6\xf1\xe0\x3a\x7e\xb9\xad\x96\x28\x6a\x8d\xf5\xe8\x14\x46\xc3\xbf\x2b\xa4\x15\x69\xbe\x98\x07\x72\xe2\x2e\xd9\xb2\xbe\x78\xc0\xfb\x7d\x80\x16\x3f\x29\x19\x0d\xaf\xc9\xf7\xa0\x9c\xf5\x87\x48\x03\xe1\xaa\xe4\x19\x75\x8c\x8e\x3f\x01\x00\x00\xff\xff\x37\x9e\x3e\xaf\x11\x02\x00\x00" +var _epochNodeRegister_dkg_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\xd1\x6a\xf2\x40\x10\x85\xef\xf3\x14\x43\x2e\x24\x81\xdf\xf0\x5f\x07\x5b\x11\x63\x6d\x11\x5a\x31\x7d\x81\x71\x33\x26\x8b\x71\x67\x99\x8c\xb5\x50\x7c\xf7\xa2\x31\x36\xd6\xee\xd5\xc2\x9c\x39\xf3\xcd\x19\xbb\xf3\x2c\x0a\x4f\x35\x1f\x66\x9e\x4d\x05\x1b\xe1\x1d\xfc\xff\x9c\x2d\xdf\xa6\xcf\x93\x2c\x5b\xcd\xf2\x3c\xe8\x89\x5e\xb2\x77\x5c\xd7\x94\x2b\x6e\xad\x2b\x5b\x75\x78\x5f\x08\xfb\x3d\xd9\x62\xde\xd9\x66\x8b\x79\x67\x1a\xa8\xa0\x6b\xd0\xa8\x65\x17\xc5\xf0\x15\x04\x00\x00\x5e\xc8\xa3\x50\xd4\xd8\xd2\x91\xa4\x80\x7b\xad\xa2\x5c\x59\xb0\xa4\x18\x06\x13\x63\x78\xef\xf4\x2a\x3f\xbd\x9a\x14\x1c\x17\xb4\xa2\x0d\x3c\x40\xdb\x98\x34\x6d\x4b\xb2\x66\x11\x3e\x8c\x06\xf7\x88\xc9\x2b\x17\xe7\x3f\xc9\x63\x74\xc2\x4b\xff\x58\xb0\x27\xba\x40\x2c\x51\xab\xf8\x3a\xfb\xf4\xc6\x63\xf0\xe8\xac\x89\xc2\x29\xef\xeb\x02\x1c\x2b\xb4\x63\xcf\x58\x20\xb4\x21\x21\x67\xa8\x0d\xe1\x42\x06\x1e\xb5\x0a\xe3\xdb\x35\x8a\x6d\xb9\x44\x51\x6b\xac\x47\xa7\x30\x1a\xfe\x1c\x26\x29\x49\xb3\xc5\xbc\x57\x8e\xdc\x95\x2d\xed\x02\xe8\xf9\xfd\x0a\xa2\xc1\x0f\x8a\x46\xc3\xdb\x09\xff\x40\x39\xed\x6e\x94\xf4\x0a\x37\xcb\x9e\x2d\x8f\xc1\xf1\x3b\x00\x00\xff\xff\x17\xa8\x74\xb3\x2c\x02\x00\x00" func epochNodeRegister_dkg_participantCdcBytes() ([]byte, error) { return bindataRead( @@ -1410,11 +1410,11 @@ func epochNodeRegister_dkg_participantCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/node/register_dkg_participant.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaf, 0x74, 0x9d, 0xf4, 0xe2, 0xd2, 0xad, 0x9b, 0xe9, 0x5e, 0xf2, 0x93, 0x32, 0xfb, 0xb1, 0x2e, 0xf2, 0xb8, 0x5d, 0x57, 0xe7, 0xa9, 0xcd, 0xb7, 0x45, 0x8e, 0x99, 0x0, 0xe, 0x7f, 0xa6, 0xe7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x94, 0x6e, 0x40, 0x33, 0x40, 0x23, 0x2d, 0xc2, 0x2a, 0xb7, 0x14, 0x66, 0x4f, 0xc8, 0x48, 0x15, 0xe0, 0x3c, 0xbc, 0x1b, 0xc0, 0xbb, 0xe6, 0x85, 0x3a, 0x44, 0x9e, 0xc6, 0xdb, 0xa7, 0x47, 0x1b}} return a, nil } -var _epochNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x56\x5f\x6f\xe3\x36\x0c\x7f\xcf\xa7\x20\xf2\x50\x38\x40\xea\x6c\xc3\x30\x0c\x46\x72\x87\x20\x69\xbb\x22\x87\x5d\xdb\xf4\xee\x1e\x86\x3d\x28\x32\x6d\x6b\x71\x24\x4f\xa2\x97\x0b\x8a\x7c\xf7\x41\x52\xfc\xaf\xce\x75\xed\xb0\xb7\xf5\xa1\x91\x44\xf2\x27\x8a\xfc\x91\xb4\xd8\x15\x4a\x13\x2c\xf4\xa1\x20\x35\x38\xed\xae\x73\xb5\xbf\x5d\x3e\xb2\x4d\x8e\x6b\x62\x5b\x21\x53\x48\xb4\xda\xc1\xb0\x2f\x18\xb6\x6d\x1e\xd5\x16\x65\x4b\xd5\xed\x3b\x1a\x8b\xbc\x34\x84\xfa\x7e\xe1\xb5\xbe\xfb\x7a\xbf\x98\x2f\x97\x0f\x57\xeb\x75\x5b\x6b\xb9\xba\xa9\xe4\xcb\xd5\xcd\x19\x85\xab\x42\xf1\xac\x52\xb9\xba\xfb\xb8\xf8\xe5\xb9\x52\x29\x53\xb1\xc9\xb1\xe3\x51\xfb\x6c\x38\x18\x4c\x26\xf0\x98\x09\x03\xa4\x99\x34\x8c\x93\x50\x12\xb8\x46\x46\x68\x80\x81\xc4\x3d\x48\x15\x23\x18\xd2\x25\x27\x50\x9b\x3f\x90\x93\x37\x42\x39\x06\x91\x00\x65\xe8\x55\x84\x35\xe0\x2a\xcf\x91\x93\xd2\xee\x6c\xfc\x0c\x8a\x71\xae\x4a\x49\xc0\x64\x0c\x2c\x8e\xed\xf1\xfd\xe2\x04\x0a\xa4\x40\x38\xe8\xdb\x3e\xa8\x34\x28\x4d\x69\x4e\xa0\x82\xfe\x19\xd7\x46\xaf\x03\x3c\x68\xbd\x30\x18\x00\x00\x88\x38\x82\x35\x69\x21\xd3\xb1\xdb\x6b\x95\x63\x04\x9f\x6e\x25\xfd\xec\x0f\x24\xd2\x5e\x69\x9b\xe0\x79\x1c\x6b\x34\xa6\xab\xdf\x88\x57\x78\xe8\x8a\x8c\xe7\x45\xef\x9c\xed\xac\x9f\x11\x7c\xba\x16\x5f\x7f\xfa\xd1\x9f\x15\xe5\x26\x17\x7c\x85\x07\x13\xc1\x6f\x9e\x82\xe1\x0a\x0f\x1f\x84\xa1\x2b\x49\xfa\xf0\xfb\x60\x04\x4f\x03\xa7\x9a\x23\x41\x52\x51\xea\x01\x93\x08\x58\x49\x59\xd0\xc9\x69\xf8\x45\x50\x16\x6b\xb6\xb7\xfc\x1c\xc1\x45\x4d\xc1\xf0\x33\x2b\x73\xf2\x40\x85\xc6\x82\x69\x0c\x18\xe7\x14\xc1\xbc\xa4\x6c\xee\x43\x58\x5f\xe5\x5e\x81\x79\x12\xb6\xef\x83\x99\x0d\x35\x85\x1b\xa5\xb5\xda\x4f\xdf\x7c\xf9\xbb\xc0\x92\x30\x82\x89\x21\xa5\x59\x8a\x93\x1a\xdc\x89\x47\xf5\xcd\xf6\xef\xfd\x7b\x28\x98\x14\x3c\x18\x2e\x54\x99\xc7\x20\x15\x81\xbf\x18\x34\x26\xa8\x51\x72\xb4\xb9\xbd\xfe\xf0\xf1\x0b\x38\xfb\xe1\xa8\xf1\x7d\x32\x81\x07\x4c\x85\xad\x33\xf8\x55\xc5\x58\x0b\x44\xd2\x79\xc3\x45\xbf\x9a\x43\xab\x6f\xd7\xa8\x2b\x87\x5f\x54\x5a\xfb\xc7\xdc\x31\xca\x46\x30\x9b\x81\x14\x79\x3b\x8a\x55\xe2\x64\x6d\x00\xd3\xcb\x73\x88\x2c\x8e\x2d\xe8\x03\x72\xa5\xe3\xa0\x63\x5f\xd1\x55\xc4\xe3\xde\xb9\xa7\xad\xfd\xdf\x97\x9d\x61\x70\xef\xe8\x25\x2b\x47\xe0\xce\xb6\xaf\xdd\xe6\x7a\xb3\xee\xeb\x91\xcd\xb3\x59\xa8\xdd\x4e\x10\x61\x1c\xc1\xf4\xb2\x47\xb0\x70\x7f\xe2\x4f\x50\x55\x8a\xff\xed\x32\x63\xd4\x0d\xae\x4b\xa7\x61\x7f\x61\x30\xbd\x6c\x82\x3c\x06\x52\x6f\x48\xdc\x19\xc8\x5c\xc8\xed\xf4\xe2\xe9\x45\x88\x3b\x57\xbc\xc7\x77\xfd\x74\xbd\xc2\xcc\x5e\x7c\x26\x4e\x4c\xa7\x48\xaf\x77\xfd\x59\x68\xaa\xd5\xb1\x79\x51\xc5\xbe\x7e\x05\xff\xc7\xec\x7f\x6d\xfd\xba\xd6\xde\x14\xb1\x9b\x4c\xa7\x96\x00\x05\xa3\xac\x5d\xc8\x95\xf3\xb7\x32\x51\x30\xfb\x96\x2f\x56\x1a\x38\xb5\x65\x54\xbd\x35\x14\x71\xb7\x21\x9c\x19\x2c\xd5\xb4\x52\xba\x37\x65\xfc\x88\x01\x06\x06\xb9\x92\x31\xd3\x87\x7a\xce\x24\x4a\x5b\x24\xa1\xc1\x14\xc8\x45\x22\xf8\x69\xd6\x98\x76\x9b\xa9\xbc\x0e\x6d\x6d\xda\xc6\xf0\x3d\x30\xe3\xe7\xcb\xb9\xfe\xb0\x63\x3c\x13\x12\xe7\x9c\x13\xcc\xda\x3d\x39\x28\xd8\x01\x75\xe4\x12\xd7\x0d\xb1\xf5\x63\x8b\x07\x10\xb2\x35\x45\xe0\xa9\x47\xa9\x16\x74\xb8\xc5\x83\xb1\xad\x26\xa8\x2d\x22\x8b\x11\xd6\xdb\x31\x64\xcc\x64\xf3\x3c\x55\x5a\x50\xb6\xf3\xd2\xce\xd1\x18\xf6\x28\xd2\x8c\xbc\xc8\xaf\xbb\x8e\x1d\xfb\xcf\xfb\x93\x7f\x56\xd4\xf4\x3e\xf7\xf1\x12\xa6\x48\xf5\xc7\x90\x13\x07\x4d\x01\xd7\x79\x7c\x56\x9b\xed\xc7\x9c\xaa\xfe\x84\xdd\x94\x7c\x0d\x1a\x3a\xc1\xf9\x42\x3f\x02\xe6\x06\xcf\x66\xea\x87\xff\x73\xa6\xe2\x6d\x7a\xc7\x34\x09\x2e\x0a\x26\xa9\x97\xb0\xe5\xea\xa6\x25\xfe\x77\x09\xeb\x5e\xd1\xe4\x6d\xb9\xba\x09\x5b\x82\x6f\xe4\xcd\x2f\x8f\x83\xe3\xdf\x01\x00\x00\xff\xff\x3b\x35\x2e\x11\xb8\x0b\x00\x00" +var _epochNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x56\x5f\x6f\xe2\x46\x10\x7f\xe7\x53\x8c\xf2\x10\x19\x89\x98\xb6\xaa\xaa\xca\x82\x3b\x51\x48\x52\xc4\xa9\x97\x84\x5c\xee\xa1\xea\xc3\xb2\x1e\xe3\x2d\x66\xd7\xdd\x1d\x97\x43\x11\xdf\xbd\x5a\xaf\x6d\xbc\xb1\x9b\xe6\x54\xf5\xa9\x79\x20\xec\xfc\xf9\xcd\xff\x19\xc4\x3e\x57\x9a\x60\xae\x8f\x39\xa9\x41\xf5\xba\xc9\xd4\x61\xb9\x78\x64\x9b\x0c\xd7\xc4\x76\x42\x6e\x21\xd1\x6a\x0f\x17\x5d\xc6\x45\x5b\xe7\x51\xed\x50\xb6\x44\xcb\xb7\x27\x31\xcf\x0a\x43\xa8\xef\xe7\x4e\xea\x9b\x2f\xf7\xf3\xd9\x62\xf1\x70\xbd\x5e\xb7\xa5\x16\xab\xdb\x9a\xbf\x58\xdd\xf6\x08\x5c\xe7\x8a\xa7\xb5\xc8\xf5\xdd\xc7\xf9\xcf\x2f\x85\x0a\xb9\x15\x9b\x0c\x3d\x8f\xda\xb4\x8b\xc1\x60\x3c\x86\xc7\x54\x18\x20\xcd\xa4\x61\x9c\x84\x92\xc0\x35\x32\x42\x03\x0c\x24\x1e\x40\xaa\x18\xc1\x90\x2e\x38\x81\xda\xfc\x8e\x9c\x9c\x12\xca\x11\x88\x04\x28\x45\x27\x22\xac\x02\x57\x59\x86\x9c\x94\x2e\x69\xa3\x17\x50\x8c\x73\x55\x48\x02\x26\x63\x60\x71\x6c\xc9\xf7\xf3\x0a\x14\x48\x81\x28\xa1\x97\x5d\x50\x69\x50\x9a\xc2\x54\xa0\x82\xfe\x19\xd7\x66\xcf\x03\x1e\xb4\x22\x0c\x06\x00\x00\x22\x8e\x60\x4d\x5a\xc8\xed\xa8\x7c\x6b\x95\x61\x04\x9f\x96\x92\x7e\x74\x04\x89\x74\x50\xda\x16\x78\x16\xc7\x1a\x8d\xf1\xe5\xcf\xec\x15\x1e\x7d\x96\x71\x7d\xd1\xa1\xb3\xbd\xf5\x33\x82\x4f\x37\xe2\xcb\x0f\xdf\x3b\x5a\x5e\x6c\x32\xc1\x57\x78\x34\x11\xfc\xea\x5a\x30\x5c\xe1\xf1\x83\x30\x74\x2d\x49\x1f\x7f\x1b\x0c\xe1\x79\x50\x8a\x66\x48\x90\xd4\x2d\xf5\x80\x49\x04\xac\xa0\x34\xf0\x6a\x1a\x7e\x16\x94\xc6\x9a\x1d\x6c\x7f\x0e\xe1\xb2\x69\xc1\xf0\x89\x15\x19\x39\xa0\x5c\x63\xce\x34\x06\x8c\x73\xaa\x40\x7e\x52\x5a\xab\xc3\x13\xcb\x0a\xab\x35\x73\x19\x6d\x2c\x97\x41\x61\x96\x84\x6d\xf3\x30\xb5\x99\xa7\xd0\x90\xd2\x6c\x8b\xe1\xa6\x84\x98\x7c\xb5\x4f\xef\x02\xdb\x9b\x11\x8c\x2b\xa0\x71\x63\xa4\x64\x0f\x1b\x0f\xec\xdf\xfb\xf7\x90\x33\x29\x78\x70\x31\x57\x45\x16\x83\x54\x04\xce\x30\x68\x4c\x50\xa3\xe4\x68\x4b\x7e\xf3\xe1\xe3\x67\x28\xf5\x2f\x86\xe7\x18\xc6\x63\x78\xc0\xad\xb0\xe3\x07\xbf\xa8\x18\x1b\x86\x48\x7a\x63\xb9\xec\x0e\x7b\x68\xf5\xec\x77\xd4\xb5\xe3\xaf\x0a\xad\x1d\xe2\x1d\xa3\x74\x08\xd3\x29\x48\x91\xb5\xb3\x5a\xd7\x55\x36\x0a\x30\xb9\xea\x43\x64\x71\x6c\x41\x1f\x90\x2b\x1d\x07\x9e\x7e\xdd\xcd\x22\x1e\x75\xe8\xae\xab\xed\x67\x97\xd7\xd3\xe0\x1d\xd2\x6b\x5a\x65\x7f\x7b\xcf\xae\x74\x7b\x14\xce\xdf\xbb\x72\x64\xeb\x6d\xe6\x6a\xbf\x17\x44\x18\x47\x30\xb9\xea\x34\x5c\x78\xa8\xfa\x28\xa8\x07\xc9\xfd\xf7\x3b\x64\xe8\x27\xd7\x2b\xab\x61\x7f\x62\x30\xb9\x3a\x27\x7b\x04\xa4\xbe\xa2\x80\xaf\xd5\x6d\xce\xf2\x7a\x22\x38\xcb\xd9\x46\x64\x82\x04\x9a\xc6\xb6\x30\xa6\xc0\xc9\xe5\xf3\xab\xc6\xee\xca\x6d\x70\x7a\x17\xbc\xdd\xa5\x4e\xb0\xbd\xd6\xcb\x35\x63\xd2\xc0\xf3\xf7\x0d\xd1\x3b\x87\x7c\x4b\xa7\x73\x1a\xea\x14\xb4\xd6\xc1\x7f\x33\x3a\x6f\x5d\x02\xe5\xd9\x38\x6f\x82\xf2\xea\x55\x39\x80\x9c\x51\xda\xde\x06\xb5\xf3\x4b\x99\x28\x98\xfe\x9d\x2f\x96\x5b\xa6\x6d\xb9\x88\xea\x58\x43\x11\xfb\x5b\xa5\xe7\x68\xd5\x97\x50\xe9\xce\x05\x73\xe7\x0b\x18\x18\xe4\x4a\xc6\x4c\x1f\x9b\x1b\x96\x28\x6d\x91\x84\x06\x93\x23\x17\x89\xe0\xd5\x1d\x33\xed\x5d\x55\x7b\x1d\xda\xc1\xb6\x5b\xe5\x5b\x60\xc6\xdd\xae\xbe\xe5\xb2\x67\x3c\x15\x12\x67\x9c\x13\x4c\xa1\x5a\xee\x41\xce\x8e\xa8\xa3\xb2\x68\x7e\x7a\xad\x0f\x3b\x3c\x82\x90\xad\xeb\x04\xcf\x9d\x99\x6d\xc1\x86\x3b\x3c\x1a\xbb\xa3\x82\x46\x23\xb2\x18\x61\xf3\x1c\x41\xca\x4c\x3a\xcb\xb6\x4a\x0b\x4a\xf7\x8e\xeb\x91\x46\x70\x40\xb1\x4d\xc9\xb1\xdc\x77\xdf\xb1\x53\x37\xb4\x3f\xf8\x93\xa2\xf3\xd2\x2c\x7f\x14\x85\x5b\xa4\xe6\x47\x56\xc9\x6e\xb5\x7d\x53\x43\x1f\xba\x1d\xcb\x8b\x6d\x51\x99\x38\x0f\x4b\x83\x1d\x96\x8c\xfe\x05\x71\x02\xcc\x0c\xf6\x16\xeb\xbb\xff\x6b\xb1\xe2\xdd\xf6\x8e\x69\x12\x5c\xe4\x4c\x52\xa7\x66\x8b\xd5\x6d\x8b\xfd\xaf\x6a\xe6\x5b\x3a\x97\x6e\xb1\xba\x0d\x5b\x8c\xde\x0d\x73\x1a\xb8\xcf\xd3\x5f\x01\x00\x00\xff\xff\xaf\x68\x54\x12\x18\x0c\x00\x00" func epochNodeRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -1430,11 +1430,11 @@ func epochNodeRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/node/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x80, 0x53, 0x24, 0x17, 0x3f, 0x5e, 0xfe, 0x62, 0x45, 0xf7, 0x8b, 0x84, 0x9d, 0x9b, 0xbc, 0xf1, 0x2e, 0x56, 0x3d, 0xe4, 0x75, 0x59, 0xf4, 0x6, 0x87, 0x12, 0xfa, 0xc0, 0xa2, 0xde, 0xda, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x45, 0xf3, 0x1c, 0xe1, 0x79, 0x8f, 0x88, 0xe0, 0x24, 0xe0, 0xb4, 0xb2, 0xa9, 0x3, 0x7d, 0x32, 0x3e, 0x99, 0x8e, 0x51, 0x5e, 0x7e, 0x3d, 0xe3, 0x9d, 0xa5, 0x6b, 0xc3, 0x50, 0x8f, 0x47, 0xe2}} return a, nil } -var _epochNodeRegister_qc_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x4f\x4f\x83\x40\x10\xc5\xef\x7c\x8a\x09\x07\xb3\x4d\x2c\xf1\x4c\xaa\x4d\x43\x6b\xf4\xa2\x6d\x31\xde\xb7\xcb\xf0\x27\xd2\x9d\x75\x18\xac\x89\xe9\x77\x37\x40\x41\x48\x9d\x13\xc9\x7b\xfc\xe6\xbd\xd9\xe2\xe8\x88\x05\x1e\x4b\x3a\x6d\x1c\x99\x1c\x52\xa6\x23\xdc\x7d\x6f\xb6\xaf\xd1\xd3\x6a\xbd\xde\x6f\xe2\xd8\x1b\x99\x9e\xd7\x6f\xfa\x50\x62\x2c\xfa\xa3\xb0\x59\xe7\xf6\xaf\x05\x7f\xfc\x4f\x54\xd6\x95\x20\xef\xa2\x1e\xbe\x8b\x7a\xb2\x27\xac\x6d\xa5\x8d\x14\x64\xd5\x0c\x7e\x3c\x0f\x00\xc0\x31\x3a\xcd\xa8\xaa\x22\xb3\xc8\x21\xac\x6a\xc9\x57\xc6\x50\x6d\x65\xf0\x34\x53\xa2\x80\xa5\x04\xf7\x98\xc2\x3d\x74\xee\xe0\x40\xcc\x74\x5a\xdc\x5c\x87\x0a\x5e\x28\x69\xbf\x91\x1f\x54\x13\x25\xfc\xa7\xd2\xc8\x14\x0b\xb1\xce\x70\xab\x25\x9f\x0d\x3b\x9b\x59\x2e\xc1\x69\x5b\x18\xe5\x47\x54\x97\x09\x58\x12\xe8\xd6\xb6\x71\x80\x31\x45\x46\x6b\xb0\x2b\x5c\x75\x1c\x70\x5a\x72\x7f\x36\x8d\xff\x69\xde\x49\x90\x61\x31\xff\x7b\x83\x20\x43\x19\x6e\xd6\xca\xca\x0e\xa1\xc2\xbe\xf1\x08\x74\x69\x5e\xe9\x2f\x54\x8b\xf9\x05\x79\x0b\x42\xe1\xf4\xfe\x41\x2b\x4c\x6a\xb5\x8c\xb3\x77\xfe\x0d\x00\x00\xff\xff\xdc\xf7\x40\xd8\x08\x02\x00\x00" +var _epochNodeRegister_qc_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x4f\x4f\xc2\x40\x10\xc5\xef\xfd\x14\x93\x1e\xc8\x36\x91\xc6\x73\x83\x12\x52\x30\x7a\x51\xa0\xc6\xfb\xb2\x0c\x6d\x63\xd9\x59\xa7\x53\x31\x31\x7c\x77\x43\xff\xd9\x8a\x7b\xda\x64\xde\xbc\xf9\xbd\x99\xfc\xe8\x88\x05\x1e\x0a\x3a\xad\x1c\x99\x0c\x0e\x4c\x47\xb8\xfd\x5a\xad\x5f\xe2\xc7\xc5\x72\xb9\x5d\x25\x89\x37\x10\x3d\x2d\x5f\xf5\xae\xc0\x44\xf4\x7b\x6e\xd3\x46\xed\x5f\x17\xfc\x61\x4f\x5c\x54\xa5\x20\x6f\xe2\xce\x7c\x13\x77\xce\x9e\xb0\xb6\xa5\x36\x92\x93\x55\x01\x7c\x7b\x1e\x00\x80\x63\x74\x9a\x51\x95\x79\x6a\x91\x23\xd0\x95\x64\x2a\x11\x62\x9d\x62\x00\x93\x85\x31\x54\x59\xe9\xe5\x97\x57\xa0\x80\xa5\x3d\x6e\xf1\x00\x77\xd0\x34\x86\x65\xd3\x12\xee\x88\x99\x4e\xb3\xc9\x35\x67\xf8\x4c\xfb\xfa\x8f\x7c\xaf\x2e\x74\xd1\x3f\x29\x07\xa2\x16\x62\xad\x25\x0b\xfa\xd9\x97\x37\x9f\x83\xd3\x36\x37\xca\x8f\xa9\x2a\xf6\x60\x49\xa0\x19\x5b\x63\x01\xe3\x01\x19\xad\xc1\x66\x07\x2d\x19\x38\x2d\x99\x1f\x8c\x63\x7c\x98\x37\x12\x64\x98\x4d\x7f\xcf\x12\xa6\x28\xfd\x1a\xeb\xb2\xb2\x3d\x54\xd4\x25\x1f\x18\xfd\xd9\x40\xa9\x3f\x51\xcd\xa6\xad\xf5\x0d\x08\x45\xe3\xd3\x84\x75\x61\x14\xaf\xf6\x3a\x7b\xe7\x9f\x00\x00\x00\xff\xff\x76\xf1\x95\x7f\x23\x02\x00\x00" func epochNodeRegister_qc_voterCdcBytes() ([]byte, error) { return bindataRead( @@ -1450,7 +1450,7 @@ func epochNodeRegister_qc_voterCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/node/register_qc_voter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2f, 0x3b, 0xbc, 0xc5, 0xee, 0xf7, 0xc, 0xd1, 0xea, 0x15, 0x2a, 0xf9, 0x22, 0xea, 0x2d, 0xdf, 0x85, 0xcf, 0xf0, 0x5d, 0x9d, 0x42, 0x54, 0x7f, 0xe0, 0x14, 0x33, 0x12, 0x6d, 0xdc, 0xbf, 0x11}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4, 0x90, 0xb, 0x9c, 0xab, 0xb5, 0xe, 0xdd, 0xe5, 0x14, 0x8d, 0x54, 0xe4, 0xa, 0x48, 0x56, 0xab, 0x87, 0x86, 0xb2, 0x48, 0x8a, 0x92, 0x5, 0xb4, 0x55, 0x14, 0x19, 0xbd, 0xd1, 0x3b, 0xce}} return a, nil } From 82a613c6a3030fcb2c35d4318b49c781d45a98f7 Mon Sep 17 00:00:00 2001 From: Supun Setunga Date: Wed, 13 Sep 2023 12:53:00 -0700 Subject: [PATCH 044/160] Update more cadence codes --- lib/go/templates/internal/assets/assets.go | 948 +++++++++--------- lib/go/templates/manifest.mainnet.json | 140 +-- lib/go/templates/manifest.testnet.json | 140 +-- .../FlowServiceAccount/deposit_fees.cdc | 4 +- transactions/dkg/create_participant.cdc | 6 +- transactions/epoch/admin/advance_view.cdc | 4 +- .../epoch/admin/calculate_rewards.cdc | 4 +- transactions/epoch/admin/pay_rewards.cdc | 4 +- transactions/epoch/admin/reset_epoch.cdc | 4 +- transactions/epoch/admin/update_clusters.cdc | 4 +- .../epoch/admin/update_dkg_phase_views.cdc | 4 +- .../epoch/admin/update_epoch_config.cdc | 4 +- .../epoch/admin/update_epoch_views.cdc | 4 +- transactions/epoch/admin/update_reward.cdc | 4 +- .../epoch/admin/update_staking_views.cdc | 4 +- transactions/epoch/node/register_node.cdc | 6 +- .../epoch/scripts/get_create_clusters.cdc | 4 +- transactions/epoch/scripts/get_randomize.cdc | 4 +- transactions/flowToken/burn_tokens.cdc | 6 +- transactions/flowToken/create_forwarder.cdc | 20 +- transactions/flowToken/mint_tokens.cdc | 8 +- .../flowToken/scripts/get_balance.cdc | 4 +- transactions/flowToken/setup_account.cdc | 26 +- transactions/flowToken/transfer_tokens.cdc | 8 +- .../admin/capability_end_epoch.cdc | 4 +- .../admin/transfer_fees_admin.cdc | 6 +- .../delegation/del_request_unstaking.cdc | 4 +- .../delegation/del_stake_new_tokens.cdc | 6 +- .../delegation/del_stake_rewarded.cdc | 4 +- .../delegation/del_stake_unstaked.cdc | 4 +- .../delegation/del_withdraw_reward_tokens.cdc | 6 +- .../del_withdraw_unstaked_tokens.cdc | 6 +- .../delegation/delegator_add_capability.cdc | 15 +- .../get_delegator_info_from_address.cdc | 3 +- .../delegation/register_delegator.cdc | 10 +- .../node/node_add_capability.cdc | 16 +- .../node/register_many_nodes.cdc | 6 +- .../idTableStaking/node/register_node.cdc | 18 +- .../idTableStaking/node/request_unstake.cdc | 9 +- .../idTableStaking/node/stake_new_tokens.cdc | 11 +- .../node/stake_rewarded_tokens.cdc | 9 +- .../node/stake_unstaked_tokens.cdc | 9 +- .../idTableStaking/node/unstake_all.cdc | 9 +- .../node/update_networking_address.cdc | 8 +- .../node/withdraw_reward_tokens.cdc | 11 +- .../node/withdraw_unstaked_tokens.cdc | 11 +- .../scripts/get_node_info_from_address.cdc | 3 +- .../admin/admin_create_shared_accounts.cdc | 24 +- .../admin/admin_deploy_contract.cdc | 2 +- .../admin/admin_deposit_account_creator.cdc | 10 +- .../admin/admin_remove_delegator.cdc | 6 +- .../admin/check_main_registration.cdc | 6 +- ...tody_create_account_with_lease_account.cdc | 69 +- .../custody_create_only_lease_account.cdc | 75 +- .../custody_create_only_shared_account.cdc | 65 +- .../admin/custody_create_shared_accounts.cdc | 69 +- .../admin/custody_setup_account_creator.cdc | 16 +- .../admin/deposit_locked_tokens.cdc | 10 +- .../admin/get_unlocking_bad_accounts.cdc | 2 +- .../unlock_tokens_for_multiple_accounts.cdc | 14 +- .../delegator/delegate_new_tokens.cdc | 6 +- .../delegator/delegate_rewarded_tokens.cdc | 5 +- .../delegator/delegate_unstaked_tokens.cdc | 5 +- .../delegator/get_delegator_id.cdc | 4 +- .../delegator/get_delegator_info.cdc | 8 +- .../delegator/get_delegator_node_id.cdc | 4 +- .../delegator/register_delegator.cdc | 6 +- .../delegator/request_unstaking.cdc | 5 +- .../delegator/withdraw_rewarded_tokens.cdc | 6 +- .../withdraw_rewarded_tokens_locked.cdc | 5 +- .../delegator/withdraw_unstaked_tokens.cdc | 5 +- .../lockedTokens/staker/get_node_id.cdc | 4 +- .../lockedTokens/staker/get_staker_info.cdc | 8 +- .../lockedTokens/staker/register_node.cdc | 14 +- .../lockedTokens/staker/request_unstaking.cdc | 9 +- .../lockedTokens/staker/stake_new_tokens.cdc | 6 +- .../staker/stake_rewarded_tokens.cdc | 9 +- .../staker/stake_unstaked_tokens.cdc | 9 +- .../lockedTokens/staker/unstake_all.cdc | 8 +- .../staker/update_networking_address.cdc | 7 +- .../staker/withdraw_rewarded_tokens.cdc | 6 +- .../withdraw_rewarded_tokens_locked.cdc | 8 +- .../staker/withdraw_unstaked_tokens.cdc | 8 +- .../lockedTokens/user/deposit_tokens.cdc | 6 +- .../user/get_locked_account_address.cdc | 4 +- .../user/get_locked_account_balance.cdc | 4 +- .../user/get_multiple_unlock_limits.cdc | 4 +- .../lockedTokens/user/get_total_balance.cdc | 16 +- .../lockedTokens/user/get_unlock_limit.cdc | 4 +- .../lockedTokens/user/withdraw_tokens.cdc | 6 +- .../admin/set_version_boundary.cdc | 4 +- .../quorumCertificate/admin/publish_voter.cdc | 4 +- .../quorumCertificate/create_voter.cdc | 6 +- .../stakingCollection/close_stake.cdc | 8 +- .../create_machine_account.cdc | 30 +- .../create_new_tokenholder_acct.cdc | 61 +- .../stakingCollection/register_delegator.cdc | 8 +- .../register_multiple_delegators.cdc | 6 +- .../register_multiple_nodes.cdc | 6 +- .../stakingCollection/register_node.cdc | 35 +- .../stakingCollection/request_unstaking.cdc | 8 +- .../stakingCollection/restake_all_stakers.cdc | 4 +- .../setup_staking_collection.cdc | 46 +- .../stakingCollection/stake_new_tokens.cdc | 8 +- .../stake_rewarded_tokens.cdc | 8 +- .../stake_unstaked_tokens.cdc | 8 +- .../stakingCollection/test/deposit_tokens.cdc | 6 +- .../stakingCollection/test/get_tokens.cdc | 4 +- .../stakingCollection/transfer_delegator.cdc | 17 +- .../stakingCollection/transfer_node.cdc | 17 +- .../stakingCollection/unstake_all.cdc | 8 +- .../update_networking_address.cdc | 8 +- .../withdraw_from_machine_account.cdc | 8 +- .../withdraw_rewarded_tokens.cdc | 8 +- .../withdraw_unstaked_tokens.cdc | 8 +- transactions/stakingProxy/get_node_info.cdc | 10 +- transactions/stakingProxy/register_node.cdc | 15 +- .../stakingProxy/setup_node_account.cdc | 10 +- 118 files changed, 1250 insertions(+), 1238 deletions(-) diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index e4bc4ba57..2b15e9584 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -1,8 +1,8 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: -// FlowServiceAccount/add_account_creator.cdc (565B) -// FlowServiceAccount/deposit_fees.cdc (859B) -// FlowServiceAccount/remove_account_creator.cdc (567B) +// FlowServiceAccount/add_account_creator.cdc (588B) +// FlowServiceAccount/deposit_fees.cdc (882B) +// FlowServiceAccount/remove_account_creator.cdc (590B) // FlowServiceAccount/scripts/get_account_creators.cdc (141B) // FlowServiceAccount/scripts/get_account_fee.cdc (136B) // FlowServiceAccount/scripts/get_execution_effort_weights.cdc (155B) @@ -12,18 +12,18 @@ // FlowServiceAccount/scripts/get_is_account_creation_restricted.cdc (145B) // FlowServiceAccount/scripts/get_is_account_creator.cdc (157B) // FlowServiceAccount/scripts/get_tx_fee_parameters.cdc (129B) -// FlowServiceAccount/set_execution_effort_weights.cdc (1.636kB) -// FlowServiceAccount/set_execution_memory_limit.cdc (260B) -// FlowServiceAccount/set_execution_memory_weights.cdc (288B) -// FlowServiceAccount/set_is_account_creation_restricted.cdc (586B) -// FlowServiceAccount/set_tx_fee_parameters.cdc (606B) -// FlowServiceAccount/set_tx_fee_surge_factor.cdc (465B) -// dkg/admin/force_stop_dkg.cdc (334B) -// dkg/admin/publish_participant.cdc (224B) -// dkg/admin/set_safe_threshold.cdc (425B) -// dkg/admin/start_dkg.cdc (366B) -// dkg/admin/stop_dkg.cdc (329B) -// dkg/create_participant.cdc (427B) +// FlowServiceAccount/set_execution_effort_weights.cdc (1.663kB) +// FlowServiceAccount/set_execution_memory_limit.cdc (287B) +// FlowServiceAccount/set_execution_memory_weights.cdc (315B) +// FlowServiceAccount/set_is_account_creation_restricted.cdc (609B) +// FlowServiceAccount/set_tx_fee_parameters.cdc (629B) +// FlowServiceAccount/set_tx_fee_surge_factor.cdc (488B) +// dkg/admin/force_stop_dkg.cdc (353B) +// dkg/admin/publish_participant.cdc (317B) +// dkg/admin/set_safe_threshold.cdc (444B) +// dkg/admin/start_dkg.cdc (385B) +// dkg/admin/stop_dkg.cdc (348B) +// dkg/create_participant.cdc (452B) // dkg/scripts/get_consensus_nodes.cdc (111B) // dkg/scripts/get_dkg_canonical_final_submission.cdc (106B) // dkg/scripts/get_dkg_completed.cdc (107B) @@ -36,44 +36,44 @@ // dkg/scripts/get_node_is_registered.cdc (131B) // dkg/scripts/get_thresholds.cdc (448B) // dkg/scripts/get_whiteboard_messages.cdc (123B) -// dkg/send_final_submission.cdc (412B) -// dkg/send_whiteboard_message.cdc (395B) -// epoch/admin/advance_view.cdc (647B) -// epoch/admin/calculate_rewards.cdc (359B) -// epoch/admin/deploy_epoch.cdc (1.173kB) -// epoch/admin/deploy_qc_dkg.cdc (295B) -// epoch/admin/pay_rewards.cdc (477B) -// epoch/admin/reset_epoch.cdc (1.646kB) -// epoch/admin/set_automatic_rewards.cdc (356B) -// epoch/admin/set_bonus_tokens.cdc (597B) -// epoch/admin/update_clusters.cdc (338B) -// epoch/admin/update_dkg_phase_views.cdc (328B) -// epoch/admin/update_epoch_config.cdc (1.755kB) -// epoch/admin/update_epoch_views.cdc (329B) -// epoch/admin/update_reward.cdc (342B) -// epoch/admin/update_staking_views.cdc (331B) +// dkg/send_final_submission.cdc (432B) +// dkg/send_whiteboard_message.cdc (415B) +// epoch/admin/advance_view.cdc (670B) +// epoch/admin/calculate_rewards.cdc (382B) +// epoch/admin/deploy_epoch.cdc (1.188kB) +// epoch/admin/deploy_qc_dkg.cdc (310B) +// epoch/admin/pay_rewards.cdc (500B) +// epoch/admin/reset_epoch.cdc (1.669kB) +// epoch/admin/set_automatic_rewards.cdc (379B) +// epoch/admin/set_bonus_tokens.cdc (624B) +// epoch/admin/update_clusters.cdc (343B) +// epoch/admin/update_dkg_phase_views.cdc (333B) +// epoch/admin/update_epoch_config.cdc (1.76kB) +// epoch/admin/update_epoch_views.cdc (334B) +// epoch/admin/update_reward.cdc (346B) +// epoch/admin/update_staking_views.cdc (336B) // epoch/node/register_dkg_participant.cdc (556B) -// epoch/node/register_node.cdc (3.096kB) +// epoch/node/register_node.cdc (3.114kB) // epoch/node/register_qc_voter.cdc (547B) -// epoch/scripts/get_bonus_tokens.cdc (110B) -// epoch/scripts/get_config_metadata.cdc (123B) -// epoch/scripts/get_create_clusters.cdc (205B) -// epoch/scripts/get_current_view.cdc (146B) +// epoch/scripts/get_bonus_tokens.cdc (111B) +// epoch/scripts/get_config_metadata.cdc (124B) +// epoch/scripts/get_create_clusters.cdc (204B) +// epoch/scripts/get_current_view.cdc (147B) // epoch/scripts/get_epoch_counter.cdc (113B) // epoch/scripts/get_epoch_metadata.cdc (162B) // epoch/scripts/get_epoch_phase.cdc (119B) // epoch/scripts/get_proposed_counter.cdc (116B) -// epoch/scripts/get_randomize.cdc (129B) -// flowToken/burn_tokens.cdc (1.104kB) -// flowToken/create_forwarder.cdc (1.805kB) -// flowToken/mint_tokens.cdc (1.012kB) -// flowToken/scripts/get_balance.cdc (447B) +// epoch/scripts/get_randomize.cdc (128B) +// flowToken/burn_tokens.cdc (1.135kB) +// flowToken/create_forwarder.cdc (2.012kB) +// flowToken/mint_tokens.cdc (1.039kB) +// flowToken/scripts/get_balance.cdc (451B) // flowToken/scripts/get_supply.cdc (208B) -// flowToken/setup_account.cdc (1.137kB) -// flowToken/transfer_tokens.cdc (1.324kB) +// flowToken/setup_account.cdc (1.478kB) +// flowToken/transfer_tokens.cdc (1.351kB) // idTableStaking/admin/add_approved_and_limits.cdc (1.627kB) // idTableStaking/admin/add_approved_nodes.cdc (1.055kB) -// idTableStaking/admin/capability_end_epoch.cdc (1.296kB) +// idTableStaking/admin/capability_end_epoch.cdc (1.32kB) // idTableStaking/admin/change_candidate_limits.cdc (727B) // idTableStaking/admin/change_cut.cdc (665B) // idTableStaking/admin/change_del_minimums.cdc (690B) @@ -94,40 +94,40 @@ // idTableStaking/admin/set_non_operational.cdc (785B) // idTableStaking/admin/set_slot_limits.cdc (1.335kB) // idTableStaking/admin/start_staking.cdc (597B) -// idTableStaking/admin/transfer_admin.cdc (728B) -// idTableStaking/admin/transfer_fees_admin.cdc (403B) +// idTableStaking/admin/transfer_admin.cdc (658B) +// idTableStaking/admin/transfer_fees_admin.cdc (451B) // idTableStaking/admin/transfer_minter_deploy.cdc (1.34kB) // idTableStaking/admin/upgrade_set_claimed.cdc (691B) // idTableStaking/admin/upgrade_staking.cdc (159B) -// idTableStaking/delegation/del_request_unstaking.cdc (647B) -// idTableStaking/delegation/del_stake_new_tokens.cdc (1.021kB) -// idTableStaking/delegation/del_stake_rewarded.cdc (653B) -// idTableStaking/delegation/del_stake_unstaked.cdc (653B) -// idTableStaking/delegation/del_withdraw_reward_tokens.cdc (921B) -// idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc (921B) -// idTableStaking/delegation/delegator_add_capability.cdc (735B) +// idTableStaking/delegation/del_request_unstaking.cdc (670B) +// idTableStaking/delegation/del_stake_new_tokens.cdc (1.052kB) +// idTableStaking/delegation/del_stake_rewarded.cdc (676B) +// idTableStaking/delegation/del_stake_unstaked.cdc (676B) +// idTableStaking/delegation/del_withdraw_reward_tokens.cdc (952B) +// idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc (952B) +// idTableStaking/delegation/delegator_add_capability.cdc (869B) // idTableStaking/delegation/get_delegator_committed.cdc (321B) // idTableStaking/delegation/get_delegator_info.cdc (299B) -// idTableStaking/delegation/get_delegator_info_from_address.cdc (517B) +// idTableStaking/delegation/get_delegator_info_from_address.cdc (521B) // idTableStaking/delegation/get_delegator_request.cdc (330B) // idTableStaking/delegation/get_delegator_rewarded.cdc (319B) // idTableStaking/delegation/get_delegator_staked.cdc (315B) // idTableStaking/delegation/get_delegator_unstaked.cdc (319B) // idTableStaking/delegation/get_delegator_unstaking.cdc (321B) // idTableStaking/delegation/get_delegator_unstaking_request.cdc (330B) -// idTableStaking/delegation/register_delegator.cdc (860B) -// idTableStaking/delegation/register_many_delegators.cdc (628B) -// idTableStaking/node/node_add_capability.cdc (740B) -// idTableStaking/node/register_many_nodes.cdc (1.148kB) -// idTableStaking/node/register_node.cdc (1.488kB) -// idTableStaking/node/request_unstake.cdc (623B) -// idTableStaking/node/stake_new_tokens.cdc (987B) -// idTableStaking/node/stake_rewarded_tokens.cdc (626B) -// idTableStaking/node/stake_unstaked_tokens.cdc (605B) -// idTableStaking/node/unstake_all.cdc (587B) -// idTableStaking/node/update_networking_address.cdc (628B) -// idTableStaking/node/withdraw_reward_tokens.cdc (893B) -// idTableStaking/node/withdraw_unstaked_tokens.cdc (893B) +// idTableStaking/delegation/register_delegator.cdc (977B) +// idTableStaking/delegation/register_many_delegators.cdc (649B) +// idTableStaking/node/node_add_capability.cdc (878B) +// idTableStaking/node/register_many_nodes.cdc (1.175kB) +// idTableStaking/node/register_node.cdc (1.66kB) +// idTableStaking/node/request_unstake.cdc (644B) +// idTableStaking/node/stake_new_tokens.cdc (1.016kB) +// idTableStaking/node/stake_rewarded_tokens.cdc (647B) +// idTableStaking/node/stake_unstaked_tokens.cdc (626B) +// idTableStaking/node/unstake_all.cdc (608B) +// idTableStaking/node/update_networking_address.cdc (650B) +// idTableStaking/node/withdraw_reward_tokens.cdc (922B) +// idTableStaking/node/withdraw_unstaked_tokens.cdc (922B) // idTableStaking/scripts/get_approved_but_not_staked_nodes.cdc (670B) // idTableStaking/scripts/get_approved_nodes.cdc (289B) // idTableStaking/scripts/get_candidate_limits.cdc (271B) @@ -138,7 +138,7 @@ // idTableStaking/scripts/get_delegators_below_min.cdc (1.966kB) // idTableStaking/scripts/get_node_committed_tokens.cdc (263B) // idTableStaking/scripts/get_node_info.cdc (240B) -// idTableStaking/scripts/get_node_info_from_address.cdc (483B) +// idTableStaking/scripts/get_node_info_from_address.cdc (487B) // idTableStaking/scripts/get_node_initial_weight.cdc (251B) // idTableStaking/scripts/get_node_networking_addr.cdc (259B) // idTableStaking/scripts/get_node_networking_key.cdc (251B) @@ -162,65 +162,65 @@ // idTableStaking/scripts/get_total_staked_by_type.cdc (256B) // idTableStaking/scripts/get_weekly_payout.cdc (202B) // inspect_field.cdc (122B) -// lockedTokens/admin/admin_create_shared_accounts.cdc (3.914kB) -// lockedTokens/admin/admin_deploy_contract.cdc (443B) -// lockedTokens/admin/admin_deposit_account_creator.cdc (815B) -// lockedTokens/admin/admin_remove_delegator.cdc (448B) -// lockedTokens/admin/check_main_registration.cdc (948B) -// lockedTokens/admin/check_shared_registration.cdc (616B) -// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.367kB) -// lockedTokens/admin/custody_create_only_lease_account.cdc (3.191kB) -// lockedTokens/admin/custody_create_only_shared_account.cdc (3.584kB) -// lockedTokens/admin/custody_create_shared_accounts.cdc (3.791kB) -// lockedTokens/admin/custody_setup_account_creator.cdc (602B) -// lockedTokens/admin/deposit_locked_tokens.cdc (1.673kB) -// lockedTokens/admin/get_unlocking_bad_accounts.cdc (480B) -// lockedTokens/admin/unlock_tokens.cdc (576B) -// lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc (2.748kB) -// lockedTokens/delegator/delegate_new_tokens.cdc (1.201kB) -// lockedTokens/delegator/delegate_rewarded_tokens.cdc (528B) -// lockedTokens/delegator/delegate_unstaked_tokens.cdc (520B) -// lockedTokens/delegator/get_delegator_id.cdc (410B) -// lockedTokens/delegator/get_delegator_info.cdc (1.438kB) -// lockedTokens/delegator/get_delegator_node_id.cdc (414B) -// lockedTokens/delegator/register_delegator.cdc (1.574kB) -// lockedTokens/delegator/request_unstaking.cdc (522B) -// lockedTokens/delegator/withdraw_rewarded_tokens.cdc (798B) -// lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc (528B) -// lockedTokens/delegator/withdraw_unstaked_tokens.cdc (528B) -// lockedTokens/staker/get_node_id.cdc (405B) -// lockedTokens/staker/get_staker_info.cdc (1.145kB) -// lockedTokens/staker/register_node.cdc (1.493kB) -// lockedTokens/staker/request_unstaking.cdc (522B) -// lockedTokens/staker/stake_new_tokens.cdc (1.253kB) -// lockedTokens/staker/stake_rewarded_tokens.cdc (525B) -// lockedTokens/staker/stake_unstaked_tokens.cdc (525B) -// lockedTokens/staker/unstake_all.cdc (488B) -// lockedTokens/staker/update_networking_address.cdc (482B) -// lockedTokens/staker/withdraw_rewarded_tokens.cdc (788B) -// lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc (528B) -// lockedTokens/staker/withdraw_unstaked_tokens.cdc (528B) -// lockedTokens/user/deposit_tokens.cdc (732B) -// lockedTokens/user/get_locked_account_address.cdc (419B) -// lockedTokens/user/get_locked_account_balance.cdc (418B) -// lockedTokens/user/get_multiple_unlock_limits.cdc (536B) -// lockedTokens/user/get_total_balance.cdc (2.795kB) -// lockedTokens/user/get_unlock_limit.cdc (409B) -// lockedTokens/user/withdraw_tokens.cdc (699B) -// nodeVersionBeacon/admin/change_version_freeze_period.cdc (787B) -// nodeVersionBeacon/admin/delete_version_boundary.cdc (812B) -// nodeVersionBeacon/admin/heartbeat.cdc (612B) -// nodeVersionBeacon/admin/set_version_boundary.cdc (1.4kB) +// lockedTokens/admin/admin_create_shared_accounts.cdc (4.158kB) +// lockedTokens/admin/admin_deploy_contract.cdc (454B) +// lockedTokens/admin/admin_deposit_account_creator.cdc (838B) +// lockedTokens/admin/admin_remove_delegator.cdc (471B) +// lockedTokens/admin/check_main_registration.cdc (975B) +// lockedTokens/admin/check_shared_registration.cdc (639B) +// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.403kB) +// lockedTokens/admin/custody_create_only_lease_account.cdc (3.288kB) +// lockedTokens/admin/custody_create_only_shared_account.cdc (3.523kB) +// lockedTokens/admin/custody_create_shared_accounts.cdc (3.656kB) +// lockedTokens/admin/custody_setup_account_creator.cdc (803B) +// lockedTokens/admin/deposit_locked_tokens.cdc (1.708kB) +// lockedTokens/admin/get_unlocking_bad_accounts.cdc (484B) +// lockedTokens/admin/unlock_tokens.cdc (599B) +// lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc (2.894kB) +// lockedTokens/delegator/delegate_new_tokens.cdc (1.232kB) +// lockedTokens/delegator/delegate_rewarded_tokens.cdc (550B) +// lockedTokens/delegator/delegate_unstaked_tokens.cdc (542B) +// lockedTokens/delegator/get_delegator_id.cdc (414B) +// lockedTokens/delegator/get_delegator_info.cdc (1.446kB) +// lockedTokens/delegator/get_delegator_node_id.cdc (418B) +// lockedTokens/delegator/register_delegator.cdc (1.604kB) +// lockedTokens/delegator/request_unstaking.cdc (544B) +// lockedTokens/delegator/withdraw_rewarded_tokens.cdc (828B) +// lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc (550B) +// lockedTokens/delegator/withdraw_unstaked_tokens.cdc (550B) +// lockedTokens/staker/get_node_id.cdc (409B) +// lockedTokens/staker/get_staker_info.cdc (1.153kB) +// lockedTokens/staker/register_node.cdc (1.584kB) +// lockedTokens/staker/request_unstaking.cdc (545B) +// lockedTokens/staker/stake_new_tokens.cdc (1.284kB) +// lockedTokens/staker/stake_rewarded_tokens.cdc (548B) +// lockedTokens/staker/stake_unstaked_tokens.cdc (548B) +// lockedTokens/staker/unstake_all.cdc (511B) +// lockedTokens/staker/update_networking_address.cdc (505B) +// lockedTokens/staker/withdraw_rewarded_tokens.cdc (819B) +// lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc (551B) +// lockedTokens/staker/withdraw_unstaked_tokens.cdc (551B) +// lockedTokens/user/deposit_tokens.cdc (763B) +// lockedTokens/user/get_locked_account_address.cdc (423B) +// lockedTokens/user/get_locked_account_balance.cdc (422B) +// lockedTokens/user/get_multiple_unlock_limits.cdc (540B) +// lockedTokens/user/get_total_balance.cdc (2.81kB) +// lockedTokens/user/get_unlock_limit.cdc (413B) +// lockedTokens/user/withdraw_tokens.cdc (730B) +// nodeVersionBeacon/admin/change_version_freeze_period.cdc (810B) +// nodeVersionBeacon/admin/delete_version_boundary.cdc (835B) +// nodeVersionBeacon/admin/heartbeat.cdc (635B) +// nodeVersionBeacon/admin/set_version_boundary.cdc (1.427kB) // nodeVersionBeacon/scripts/get_current_node_version.cdc (244B) // nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc (271B) // nodeVersionBeacon/scripts/get_next_version_boundary.cdc (275B) // nodeVersionBeacon/scripts/get_next_version_update_sequence.cdc (214B) // nodeVersionBeacon/scripts/get_version_boundaries.cdc (301B) // nodeVersionBeacon/scripts/get_version_boundary_freeze_period.cdc (329B) -// quorumCertificate/admin/publish_voter.cdc (311B) -// quorumCertificate/admin/start_voting.cdc (1.495kB) -// quorumCertificate/admin/stop_voting.cdc (354B) -// quorumCertificate/create_voter.cdc (1.107kB) +// quorumCertificate/admin/publish_voter.cdc (405B) +// quorumCertificate/admin/start_voting.cdc (1.518kB) +// quorumCertificate/admin/stop_voting.cdc (377B) +// quorumCertificate/create_voter.cdc (1.131kB) // quorumCertificate/scripts/generate_quorum_certificate.cdc (329B) // quorumCertificate/scripts/get_cluster.cdc (192B) // quorumCertificate/scripts/get_cluster_complete.cdc (244B) @@ -234,17 +234,17 @@ // quorumCertificate/scripts/get_qc_enabled.cdc (109B) // quorumCertificate/scripts/get_voter_is_registered.cdc (206B) // quorumCertificate/scripts/get_voting_completed.cdc (195B) -// quorumCertificate/submit_vote.cdc (584B) -// stakingCollection/close_stake.cdc (758B) -// stakingCollection/create_machine_account.cdc (1.152kB) -// stakingCollection/create_new_tokenholder_acct.cdc (2.943kB) -// stakingCollection/deploy_collection_contract.cdc (297B) -// stakingCollection/register_delegator.cdc (675B) -// stakingCollection/register_multiple_delegators.cdc (767B) -// stakingCollection/register_multiple_nodes.cdc (1.584kB) -// stakingCollection/register_node.cdc (1.426kB) -// stakingCollection/request_unstaking.cdc (684B) -// stakingCollection/restake_all_stakers.cdc (1.305kB) +// quorumCertificate/submit_vote.cdc (607B) +// stakingCollection/close_stake.cdc (781B) +// stakingCollection/create_machine_account.cdc (1.175kB) +// stakingCollection/create_new_tokenholder_acct.cdc (3.404kB) +// stakingCollection/deploy_collection_contract.cdc (312B) +// stakingCollection/register_delegator.cdc (698B) +// stakingCollection/register_multiple_delegators.cdc (790B) +// stakingCollection/register_multiple_nodes.cdc (1.607kB) +// stakingCollection/register_node.cdc (1.449kB) +// stakingCollection/request_unstaking.cdc (707B) +// stakingCollection/restake_all_stakers.cdc (1.328kB) // stakingCollection/scripts/does_account_have_staking_collection.cdc (260B) // stakingCollection/scripts/get_all_delegator_info.cdc (360B) // stakingCollection/scripts/get_all_node_info.cdc (340B) @@ -255,32 +255,32 @@ // stakingCollection/scripts/get_machine_accounts.cdc (321B) // stakingCollection/scripts/get_node_ids.cdc (251B) // stakingCollection/scripts/get_unlocked_tokens_used.cdc (297B) -// stakingCollection/setup_staking_collection.cdc (2.99kB) -// stakingCollection/stake_new_tokens.cdc (808B) -// stakingCollection/stake_rewarded_tokens.cdc (701B) -// stakingCollection/stake_unstaked_tokens.cdc (701B) -// stakingCollection/test/deposit_tokens.cdc (856B) -// stakingCollection/test/get_tokens.cdc (670B) -// stakingCollection/transfer_delegator.cdc (1.994kB) -// stakingCollection/transfer_node.cdc (2.108kB) -// stakingCollection/unstake_all.cdc (610B) -// stakingCollection/update_networking_address.cdc (628B) -// stakingCollection/withdraw_from_machine_account.cdc (690B) -// stakingCollection/withdraw_rewarded_tokens.cdc (862B) -// stakingCollection/withdraw_unstaked_tokens.cdc (877B) -// stakingProxy/add_node_info.cdc (624B) -// stakingProxy/get_node_info.cdc (514B) -// stakingProxy/register_node.cdc (1.095kB) -// stakingProxy/remove_node_info.cdc (307B) -// stakingProxy/remove_staking_proxy.cdc (315B) -// stakingProxy/request_unstaking.cdc (477B) -// stakingProxy/setup_node_account.cdc (511B) -// stakingProxy/stake_new_tokens.cdc (475B) -// stakingProxy/stake_unstaked_tokens.cdc (480B) -// stakingProxy/unstake_all.cdc (441B) -// stakingProxy/withdraw_rewards.cdc (483B) -// stakingProxy/withdraw_unstaked.cdc (483B) -// storageFees/admin/set_parameters.cdc (831B) +// stakingCollection/setup_staking_collection.cdc (3.478kB) +// stakingCollection/stake_new_tokens.cdc (831B) +// stakingCollection/stake_rewarded_tokens.cdc (724B) +// stakingCollection/stake_unstaked_tokens.cdc (724B) +// stakingCollection/test/deposit_tokens.cdc (887B) +// stakingCollection/test/get_tokens.cdc (693B) +// stakingCollection/transfer_delegator.cdc (2.047kB) +// stakingCollection/transfer_node.cdc (2.161kB) +// stakingCollection/unstake_all.cdc (633B) +// stakingCollection/update_networking_address.cdc (651B) +// stakingCollection/withdraw_from_machine_account.cdc (713B) +// stakingCollection/withdraw_rewarded_tokens.cdc (885B) +// stakingCollection/withdraw_unstaked_tokens.cdc (900B) +// stakingProxy/add_node_info.cdc (647B) +// stakingProxy/get_node_info.cdc (518B) +// stakingProxy/register_node.cdc (1.121kB) +// stakingProxy/remove_node_info.cdc (330B) +// stakingProxy/remove_staking_proxy.cdc (338B) +// stakingProxy/request_unstaking.cdc (500B) +// stakingProxy/setup_node_account.cdc (685B) +// stakingProxy/stake_new_tokens.cdc (498B) +// stakingProxy/stake_unstaked_tokens.cdc (503B) +// stakingProxy/unstake_all.cdc (464B) +// stakingProxy/withdraw_rewards.cdc (506B) +// stakingProxy/withdraw_unstaked.cdc (506B) +// storageFees/admin/set_parameters.cdc (854B) // storageFees/scripts/get_account_available_balance.cdc (185B) // storageFees/scripts/get_accounts_capacity_for_transaction_storage_check.cdc (324B) // storageFees/scripts/get_storage_capacity.cdc (181B) @@ -354,7 +354,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _flowserviceaccountAdd_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xcb\x6a\xc3\x30\x10\x45\xd7\xd2\x57\x0c\x59\x14\x67\x63\x75\x1d\xda\x06\x37\x0f\x28\x14\x0a\x71\x1f\xeb\x89\x34\x4e\x04\x8e\x64\x46\x72\x13\x28\xf9\xf7\x62\xc5\x8b\xb8\x75\xe9\x7a\x46\xe7\x9e\xab\xb1\x87\xc6\x73\x84\x75\xed\x8f\x25\xf1\xa7\xd5\x54\x68\xed\x5b\x17\xa1\x62\x7f\x80\xdb\xd3\xfa\xf9\xe5\xa3\x5c\x6d\xde\x9f\x16\xab\x62\xb9\xdc\xac\xca\x52\x4a\xa5\xe0\x75\x6f\x03\x44\x46\x17\x50\x47\xeb\x1d\xa0\x31\x01\x10\x1c\x1d\x01\x7b\x82\x66\x62\x8c\x9e\xe5\xd5\x5e\xd6\x0f\x17\x4c\xdd\x68\x06\x85\x31\x4c\x21\x4c\xe1\x4b\x4a\x51\x53\x84\x30\xd0\x28\xcc\xc1\xba\x19\xdc\xfc\x16\xcc\xd3\xc8\x86\x78\xc9\x90\xa2\x61\x6a\x90\x29\x0b\x76\xe7\xa8\x23\xb7\x71\xdf\xef\x76\x74\x21\x94\x82\x47\xcf\xec\x8f\xc0\x54\x11\x93\xd3\x04\xd1\x8f\x75\x1f\xa0\x81\x29\xf8\x96\x35\xe5\x89\x21\x85\x08\x54\x57\xf9\x88\x27\xdc\xc3\x25\x3c\xdf\xa6\x9c\xbb\x7f\xb5\x1f\xb2\xee\x9b\x67\xa0\x42\xf4\x8c\x3b\x52\xd5\xd5\x83\x6e\x71\x2a\x85\x10\xf3\x39\x34\xe8\xac\xce\x26\x6f\x0e\xb7\x75\xb2\xde\x8e\x34\xc1\x51\xed\xc9\x54\x8a\xb3\x14\x74\x22\xdd\x46\x4a\x3f\xf1\x57\x81\x1c\x8d\x29\x06\x07\xfa\x71\xaf\x84\x3a\x7f\x07\x00\x00\xff\xff\x58\x7a\xb8\x95\x35\x02\x00\x00" +var _flowserviceaccountAdd_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x4f\x4b\xc3\x40\x10\xc5\xcf\xbb\x9f\x62\xe8\xa1\x24\x97\xc4\x73\x50\x4b\xec\x1f\x10\x04\xa1\xd1\x7a\x9e\xee\x4e\xda\x85\x74\x37\xcc\x6e\x6c\x41\xfa\xdd\x25\xdb\x1c\x5a\x8d\x78\x7e\x33\xf3\x7e\xef\x8d\x39\xb4\x8e\x03\xac\x1a\x77\xac\x88\x3f\x8d\xa2\x52\x29\xd7\xd9\x00\x35\xbb\x03\xdc\x9d\x56\x2f\xaf\x1f\xd5\x72\xbd\x79\x9e\x2f\xcb\xc5\x62\xbd\xac\x2a\x29\xf3\x1c\xde\xf6\xc6\x43\x60\xb4\x1e\x55\x30\xce\x02\x6a\xed\x01\xc1\xd2\x11\x70\xb8\xa0\x98\x18\x83\x63\x79\x35\x97\x0c\xe2\x9c\xa9\x97\x0a\x28\xb5\x66\xf2\x3e\x85\x2f\x29\x45\x43\x01\xfc\x0d\x46\xa9\x0f\xc6\x16\x30\xfd\x0d\x98\x45\xc9\xf8\x70\xf1\x90\xa2\x65\x6a\x91\x29\xf1\x66\x67\x89\x0b\xc0\x2e\xec\x93\x27\xc7\xec\x8e\x1b\x6c\x3a\x4a\x61\x3a\xac\xf6\x66\x42\xe4\x39\x5c\x54\x60\xaa\x89\xc9\x2a\x82\xe0\xc6\xaa\xb8\x71\x02\x26\xef\x3a\x56\x94\xc5\x1b\x52\x08\x4f\x4d\x9d\x8d\x60\xc3\x03\x5c\x58\x32\x1f\x1c\xe3\x8e\xb2\x6d\xf4\xbb\xff\x37\xcd\x63\xd2\xb7\x5f\x40\x3e\x2c\xe6\xf5\xd5\x42\x3f\x98\x4a\x21\xc4\x6c\x06\x2d\x5a\xa3\x92\xc9\xbb\xc5\x6d\x13\xe9\xb7\x23\x89\x70\x14\x7f\x92\x4a\x71\x96\x82\x4e\xa4\xba\x40\xb1\x91\xbf\x82\x64\xa8\x75\x79\xf3\xb7\x1f\x6f\x8c\xa7\xce\xdf\x01\x00\x00\xff\xff\xa5\xbd\xb1\xfd\x4c\x02\x00\x00" func flowserviceaccountAdd_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -370,11 +370,11 @@ func flowserviceaccountAdd_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/add_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x79, 0x2d, 0xa8, 0x63, 0x2c, 0xf1, 0x7e, 0xed, 0xbd, 0x9, 0xca, 0xc8, 0xdc, 0x63, 0x53, 0x29, 0x1e, 0xb5, 0x81, 0x4a, 0x50, 0x61, 0x83, 0xb4, 0x23, 0x25, 0xc0, 0x4b, 0xbf, 0x98, 0xe2, 0x54}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3, 0x8e, 0x9b, 0xc4, 0x39, 0xea, 0xfd, 0x2f, 0xb0, 0x8d, 0xbf, 0x36, 0xf2, 0x31, 0x84, 0xda, 0xf9, 0x77, 0x48, 0x7, 0x78, 0xce, 0xe3, 0x22, 0xb8, 0xc2, 0x2c, 0xc2, 0xaf, 0xe2, 0x58, 0x52}} return a, nil } -var _flowserviceaccountDeposit_feesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x4f\x8f\xd3\x30\x10\xc5\xcf\xcd\xa7\x78\xf4\x00\xcd\x61\x13\x0e\x88\x43\x55\x58\x2a\xda\x70\x41\x42\xda\x2e\xec\xd9\x4d\x26\x89\x45\x6a\x47\xf6\x84\x14\x55\xfb\xdd\x51\xec\x38\x60\x71\xd8\x53\x94\xf1\xbc\x37\xbf\xf9\x23\x2f\xbd\x36\x8c\x62\x50\x8d\x3c\x77\xf4\xa8\x7f\x92\x42\x6d\xf4\x05\xeb\x28\xb6\x4e\x42\x66\xa7\xc7\x28\x2b\xfc\x47\x19\x05\x91\xf5\x09\x6f\xaf\xc5\xd7\x6f\x4f\xc5\xf1\x78\xda\x1f\x0e\x0f\xc7\xd3\x29\x49\xf2\x1c\x07\xea\xb5\x95\x0c\x9e\x94\x16\xac\xc1\x2d\xfd\x55\xfe\x10\x43\xc7\x53\x9e\x56\xdd\x6f\xd4\xda\x80\xc9\xb2\x54\x4d\x92\xb0\x11\xca\x8a\x92\xa5\x56\x1b\x71\xd1\x83\xe2\x2d\xbe\x17\xf2\xfa\xfe\x5d\x8a\x5b\x92\x00\x40\x9e\xe3\xb1\x25\x6f\x02\x43\x56\x0f\xa6\x24\x70\x2b\x18\xad\xee\x2a\xeb\x6a\x85\xca\x53\x54\x18\xc2\x99\xa4\x6a\xe0\xdc\x6b\x32\x86\x2a\x67\xd5\x11\xc3\x92\x62\xe7\xb5\xc5\xa7\x5b\x34\x94\xcc\x85\x9f\x7d\xd5\xde\x50\x2f\x0c\x6d\xac\x6c\x14\x99\x2d\xf6\x03\xb7\xfb\xb2\x9c\x08\x17\xb2\x99\xee\x0b\x31\x04\x0c\xd5\x64\x48\x4d\x68\xbe\x7d\xaf\x7c\x63\x61\x59\x1b\xaa\xf0\xcb\x4d\x21\xe8\x26\x14\x17\x79\xa0\x1a\x1f\xe6\xe4\xec\xac\x8d\xd1\xe3\x4e\x0c\xdc\x6e\x62\xb6\x27\xc9\x6d\x65\xc4\x28\xce\x1d\xa5\x78\xbd\xec\xc9\x43\x7f\xdc\x4c\xdb\xd9\x22\x9f\x6a\x89\x86\xf2\x3a\xbc\xbb\xe7\x34\x59\xad\x56\xf7\xf7\xe8\x85\x92\xe5\x66\xfd\x59\x0f\x5d\x05\xa5\x19\xbe\xde\xff\xec\x7a\xf4\xe8\x4e\xfd\x6a\x9d\x46\xfd\x06\x94\x30\x74\x77\x18\x2f\x77\x6c\xa9\xab\xb3\x65\xfa\xd8\xdd\x2d\xfd\x67\xe3\xec\xb8\x9c\x80\xff\xa6\x4e\x3b\x2f\x84\xae\x54\x0e\x4c\xb8\xfd\x8b\xb2\x1c\x5e\x4b\x08\x26\x2a\x70\x49\x15\x9f\x61\x8c\x13\xc2\x59\xe5\x3d\xe6\x09\xee\xee\x62\xce\xc0\xf0\xfc\x27\x00\x00\xff\xff\xcd\x65\xce\xb4\x5b\x03\x00\x00" +var _flowserviceaccountDeposit_feesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x4f\x8f\xd3\x30\x10\xc5\xcf\xcd\xa7\x78\xf4\x00\xcd\x61\x13\x0e\x88\x43\x55\x58\x16\xda\x70\x41\x42\xda\x2e\xbb\x67\x37\x99\x24\x16\xae\x1d\xd9\x13\x52\x54\xed\x77\x47\xb1\xe3\x40\xc4\x61\x4f\x51\xc6\x6f\xde\xfc\xe6\x8f\x3c\x77\xc6\x32\x8a\x5e\x37\xf2\xa4\xe8\xc1\xfc\x24\x8d\xda\x9a\x33\xd6\x8b\xd8\x3a\x89\x4a\x65\x86\x85\x2a\xfe\x2f\x14\x05\x91\x0b\x82\xb7\x97\xe2\xdb\xf7\xa7\xe2\x70\x38\xde\xed\xf7\xf7\x87\xe3\x31\x49\xf2\x1c\x7b\xea\x8c\x93\x0c\x1e\x33\x1d\xd8\x80\x5b\xfa\x9b\xf9\x28\x7a\xc5\xa3\xce\x68\xf5\x1b\xb5\xb1\x60\x72\x2c\x75\x93\x24\x6c\x85\x76\xa2\x64\x69\xf4\x46\x9c\x4d\xaf\x79\x8b\x1f\x85\xbc\xbc\x7f\x97\xe2\x9a\x24\x00\x90\xe7\x78\x68\x29\x98\xc0\x92\x33\xbd\x2d\x09\xdc\x0a\x46\x6b\x54\xe5\x7c\xad\x58\x79\x8c\x0a\x4b\x38\x91\xd4\x0d\xbc\x7b\x4d\xd6\x52\xe5\xad\x14\x31\x1c\x69\xf6\x5e\x5b\x7c\xba\x2e\x86\x92\xf9\xf0\x73\xa8\xda\x59\xea\x84\xa5\x8d\x93\x8d\x26\xbb\x85\xe8\xb9\xdd\x7c\x36\xd6\x9a\xe1\x51\xa8\x9e\x52\xbc\xbe\x2b\xcb\x11\x78\x06\x9d\x60\xbf\x12\x43\xc0\x52\x4d\x96\xf4\x48\x1a\xa6\x11\x8c\xde\x38\x38\x36\x96\x2a\xfc\xf2\x43\x89\x79\x23\x99\x8f\xdc\x53\x8d\x0f\x93\x38\x1b\xa5\xa2\xa1\xec\xe4\xeb\xee\x3c\xc3\x12\xf9\x49\x72\x5b\x59\x31\x88\x93\x1a\x91\xe6\xf5\x85\x5e\x3e\x6e\xc6\xa5\x6d\x91\x4f\x46\x79\x1d\xdf\xfd\x73\x9a\xac\x56\xab\xdb\x5b\x74\x42\xcb\x72\xb3\xfe\x62\x7a\x55\x41\x1b\x46\xa8\xf7\x7f\x0f\x66\x08\x2d\xf8\xec\x57\xeb\x74\xd1\x77\x44\x89\xbb\xf0\xf7\xf2\x72\xe7\x8e\x54\x9d\xcd\x4b\xc1\xee\x66\x9e\x43\x36\x4c\x8e\xf3\x65\x84\x6f\xea\x73\xa7\x3d\xd1\x85\xca\x9e\x09\xd7\x7f\x51\xe6\x7b\x6c\x09\xd1\x44\x47\x2e\xa9\x97\xd7\xb9\xc4\x89\xe1\xac\x0a\x1e\xd3\x04\x77\x37\x4b\xce\xc8\xf0\xfc\x27\x00\x00\xff\xff\xcd\x7f\x6b\x64\x72\x03\x00\x00" func flowserviceaccountDeposit_feesCdcBytes() ([]byte, error) { return bindataRead( @@ -390,11 +390,11 @@ func flowserviceaccountDeposit_feesCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/deposit_fees.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0x9f, 0x9c, 0x7b, 0xcb, 0x4d, 0x5c, 0x3c, 0x92, 0xe1, 0x6f, 0xe0, 0xe8, 0x32, 0xb5, 0x35, 0x9e, 0x2d, 0xa5, 0x76, 0x47, 0xd2, 0x9a, 0x3, 0x9d, 0x7d, 0x12, 0x67, 0x94, 0x56, 0xe4, 0x19}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x49, 0xf5, 0x3c, 0xbb, 0x74, 0x3e, 0x25, 0xf7, 0x2a, 0x9f, 0x9f, 0xf5, 0x52, 0x54, 0x7c, 0x7b, 0xa1, 0xb8, 0xdd, 0x7a, 0x8d, 0x23, 0x6b, 0x2e, 0x22, 0x5f, 0xe9, 0x23, 0xf7, 0x32, 0xea, 0xb7}} return a, nil } -var _flowserviceaccountRemove_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xcb\x6a\xeb\x30\x10\x86\xd7\xd2\x53\x0c\x59\x1c\x9c\x8d\x75\xd6\xa1\x6d\x70\x73\x81\x42\xa1\x10\xf7\xb2\x56\xe4\x71\x22\xb0\x35\x66\x24\x27\x81\x92\x77\x2f\x96\xbd\x88\x5b\x97\xae\x67\xf4\xcd\xf7\xeb\xb7\x75\x43\x1c\x60\x5b\xd1\x39\x47\x3e\x59\x83\x99\x31\xd4\xba\x00\x25\x53\x0d\xff\x2f\xdb\xe7\x97\x8f\x7c\xb3\x7b\x7f\x5a\x6d\xb2\xf5\x7a\xb7\xc9\x73\x29\x95\x82\xd7\xa3\xf5\x10\x58\x3b\xaf\x4d\xb0\xe4\x80\xb1\xa6\x13\x7a\xd0\x0e\xf4\x40\x30\x8c\x3a\x10\xcb\x9b\xb5\x64\x98\xad\xfa\xd1\x02\xb2\xa2\x60\xf4\x7e\x0e\x9f\x52\x8a\x0a\x03\xf8\x91\x45\x56\xd4\xd6\x2d\xe0\xdf\x4f\xbf\x34\x8e\xac\x0f\x1c\x6f\x48\xd1\x30\x36\x9a\x31\xf1\xf6\xe0\xb0\x23\xb7\xe1\x38\xec\x76\x74\x21\x94\x82\x47\x62\xa6\x33\x30\x96\xc8\xe8\x0c\x42\xa0\xa9\xe8\x23\x34\x30\x7a\x6a\xd9\x60\x1a\x19\x52\x08\x8f\x55\x99\x4e\x78\xc2\x3d\xf4\xc7\xd3\x7d\xbc\x73\xf7\xa7\xf6\x43\xd2\xfd\xf2\x02\x94\x0f\xc4\xfa\x80\xaa\xbc\x79\xd0\x2d\xce\xa5\x10\x62\xb9\x84\x46\x3b\x6b\x92\xd9\x9b\xd3\xfb\x2a\x5a\xef\x27\x92\xe8\x49\xed\xd9\x5c\x8a\xab\x14\x78\x41\xd3\x06\x8c\x3f\xf1\x5b\x80\xb4\x2f\x31\x1b\x75\xf4\xad\xb2\x48\xbb\x7e\x05\x00\x00\xff\xff\xb4\x28\x75\xda\x37\x02\x00\x00" +var _flowserviceaccountRemove_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xcf\x6a\xf3\x30\x10\xc4\xcf\xd2\x53\x2c\x39\x04\xfb\x62\x7d\x67\xf3\xb5\xc1\xcd\x1f\x28\x14\x0a\x71\x9b\x9e\x15\x65\x9d\x08\x6c\xad\x59\xc9\x49\xa0\xe4\xdd\x4b\x64\x1f\x92\xd6\xa5\xe7\xd9\xdd\xf9\xed\x8c\x6d\x5a\xe2\x00\xab\x9a\x4e\x25\xf2\xd1\x1a\x2c\x8c\xa1\xce\x05\xa8\x98\x1a\xf8\x77\x5e\xbd\xbc\x7e\x94\xcb\xf5\xe6\x79\xbe\x2c\x16\x8b\xf5\xb2\x2c\xa5\x54\x0a\xde\x0e\xd6\x43\x60\xed\xbc\x36\xc1\x92\x03\xc6\x86\x8e\xe8\x41\x3b\xd0\xc3\x05\xc3\xa8\x03\xb1\xbc\x19\x4b\x06\x6d\xde\x4b\x39\x14\xbb\x1d\xa3\xf7\x29\x7c\x4a\x29\x6a\x0c\xe0\xef\x28\x8a\x5d\x63\x5d\x0e\xd3\x9f\x7c\x59\x94\xac\x0f\x1c\x3d\xa4\x68\x19\x5b\xcd\x98\x78\xbb\x77\xc8\x39\xe8\x2e\x1c\x92\x27\x62\xa6\xd3\x46\xd7\x1d\xa6\x30\x1d\x56\xaf\x66\x42\x28\x05\xbd\x0a\x8c\x15\x32\x3a\x83\x10\x68\x2c\x89\x3b\x27\x60\xf4\xd4\xb1\xc1\x2c\xde\x90\x42\x78\xac\xab\x6c\x04\x1b\x1e\xa0\x67\xc9\x7c\x20\xd6\x7b\xcc\xb6\xd1\xef\xff\x9f\xdf\x3c\x26\xd7\xf0\x73\x50\xc3\xa2\xaa\x6e\x16\xae\x83\xa9\x14\x42\xcc\x66\xd0\x6a\x67\x4d\x32\x79\x77\x7a\x5b\x47\xfa\xed\xc8\x47\x7a\x14\x7f\x92\x4a\x71\x91\x02\xcf\x68\xba\x80\x31\x91\xdf\x1e\xc9\xfa\x6e\x8b\xbb\xea\xbe\x35\x19\xaf\x5d\xbe\x02\x00\x00\xff\xff\xc4\xb5\x2f\x92\x4e\x02\x00\x00" func flowserviceaccountRemove_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -410,7 +410,7 @@ func flowserviceaccountRemove_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/remove_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x45, 0x93, 0x3, 0xb, 0x31, 0xee, 0xf4, 0x0, 0x1, 0xd1, 0x23, 0xca, 0x29, 0xed, 0xf8, 0x8b, 0xd1, 0xa6, 0x66, 0x57, 0xe8, 0xf9, 0xf3, 0xf3, 0xfe, 0x91, 0xbc, 0xbb, 0x2f, 0x35, 0x84, 0x3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x59, 0xcf, 0x63, 0xc, 0x35, 0x3b, 0x20, 0x1f, 0x3d, 0xff, 0xde, 0x3e, 0x41, 0xd3, 0x5, 0x97, 0x5d, 0x6c, 0x89, 0xfb, 0xf4, 0x2a, 0x5b, 0x6c, 0x3, 0x55, 0xa0, 0x10, 0xe2, 0xaf, 0x76, 0x85}} return a, nil } @@ -594,7 +594,7 @@ func flowserviceaccountScriptsGet_tx_fee_parametersCdc() (*asset, error) { return a, nil } -var _flowserviceaccountSet_execution_effort_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x93\x5d\x6b\xe3\x3a\x10\x86\xef\xf3\x2b\x06\x9f\x9b\x14\xd2\x38\x4e\x62\x27\x36\x87\x03\xa5\xe7\x14\xca\xe9\xc2\xc2\x7e\x5d\x94\x2e\x1d\xcb\xe3\x58\x5b\x4b\xf2\x4a\x72\xd2\x10\xf2\xdf\x17\x59\x71\x9b\x7e\xb0\xec\x2e\x7b\xb1\x86\x48\x62\xde\x99\x47\x6f\x34\x52\x18\xc2\xfb\x8a\x1b\xb0\x1a\xa5\x41\x66\xb9\x92\x06\x0c\x59\x03\x92\x36\x40\xf7\xc4\x5a\x17\x03\x2a\x4b\xa5\x2d\x6c\x88\xaf\x2a\x6b\x06\x5d\x19\x81\xc0\x7b\x2e\x5a\xf1\x32\xaf\xe6\x82\x5b\x28\x95\x7e\x0a\xe6\x06\xb0\xde\xe0\xd6\x40\xea\xbe\x71\xcf\xf1\x58\x90\x28\xc8\x84\xbc\x30\xc0\x50\x42\x4e\x60\x88\x24\x54\xa4\x29\x73\x99\xee\x77\x0a\xd7\xe7\x58\x90\x64\x04\xe7\x4a\x34\xad\x45\x47\xfe\x9f\xcb\xe2\x66\x58\x59\xdb\x98\x2c\x0c\x57\xdc\x56\x6d\x3e\x66\x4a\x84\x4a\x96\xb5\xda\x84\xcc\x97\x84\x79\xad\xf2\x30\x99\x2c\x62\x2a\xe7\x4b\xb6\x60\x53\x9c\x24\x51\x31\x5d\xd0\x2c\xc9\x27\x69\x8c\xb4\x20\x16\xd3\x74\x32\x8f\x19\x2e\x42\xdd\x4a\xcb\x05\x85\x4c\x09\xa1\xa4\x9b\xfa\xfd\xee\xb8\x2c\xc6\x2b\xf5\xd7\xd5\x6c\x72\x72\x70\x75\xf1\xf1\xcd\xcf\x38\x72\xc3\xe9\x4a\x79\x47\x51\x51\xce\x67\x05\x2d\x63\x16\xe7\x8b\x38\x89\x96\x71\x14\xe1\xb2\xa4\x34\xa5\x34\x4d\x97\x98\x4f\x69\xce\x8a\x38\x0d\xcb\xb5\x08\x05\x59\xd2\x7e\xec\x2c\xa4\xce\x81\x37\x61\x2b\x02\x2e\x2d\x69\x89\x35\x34\x9a\x18\x37\xae\x27\xaa\xec\x94\x17\x4d\xea\x18\xae\x27\xd3\xcf\x51\x32\x82\x4d\xc5\x59\x05\x82\x50\xfa\x88\x53\xe8\x6b\x8b\x35\x58\x05\x11\xa8\xd6\xf6\x24\xab\x2c\xd6\xbe\x85\x2f\xa9\xb8\x46\x5e\x63\x5e\xbb\x34\xc0\xe3\xfe\x8f\x0f\x46\x5d\xc7\x0b\x2a\xb1\xad\x1f\x2e\x14\xa0\xef\xb1\xff\x1f\xcf\xce\xf1\x4a\xa9\x26\x83\xe8\x55\xed\x9d\x45\x4b\x82\xa4\xcd\x20\x82\x57\x33\x2e\x5a\xd9\xed\x7e\x29\xd7\x8a\x75\x51\xcf\x72\xc9\x4a\x03\x97\xd0\xa0\x46\x7f\x16\xa5\xd2\xa2\xb7\x71\x7b\x7b\xfb\xc5\x28\xe9\x96\xd7\x6e\x00\xd8\xf9\x09\x20\xb0\xdb\x86\x82\x0c\x82\x7f\x79\x87\x46\xbd\x0d\x46\x0f\xe2\x1a\xeb\xd6\xa9\xd7\x7d\xe4\xa8\xb2\x4b\xb8\xa3\x6d\x90\xc1\xee\x11\xf3\xe1\x52\xda\x64\x1e\x8c\x1e\x6b\x83\x68\x32\x89\x02\xd8\x8f\x9e\x14\xf6\xea\xf7\x4b\x93\x38\x9e\x25\x01\xec\x1f\x4b\x8f\x31\xbf\x64\x65\xfa\xe7\x58\x99\xfd\x3e\x2b\xfd\xf2\xc6\x2f\x7a\xec\x11\xe7\x2d\xda\xea\x98\xb2\x83\xa0\x50\x02\xb9\x74\xa2\xb1\x4a\xe3\x8a\x9c\xce\x0b\x92\x96\x97\x9c\xb4\x13\x1e\x9e\xc4\x7f\xdd\x8b\xf8\xe4\xaf\x78\x00\x7b\xbf\xe5\xcd\xe1\x76\x0d\x8e\x9e\xc6\x50\xd2\xe6\x90\x97\xc1\xce\xdb\xcf\xc0\xcf\xfb\x13\xd8\x0d\x9c\xcf\x46\x53\x83\x9a\x86\x86\xaf\x24\xe9\x0c\xce\x5a\x5b\x9d\x31\xa6\x5a\x69\xfb\x14\xf7\x79\x79\x5c\x2b\x2c\xfe\x7e\x8e\xfa\x67\x58\x6a\x25\x32\x08\x0f\xe6\xc3\xd7\xbd\x9e\x3c\x87\x19\x5c\xd3\x91\xc7\x11\x58\xf5\x83\x90\xfd\x60\xff\x2d\x00\x00\xff\xff\xad\xdd\x1d\x36\x64\x06\x00\x00" +var _flowserviceaccountSet_execution_effort_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x93\x5f\x6b\xe3\x38\x14\xc5\xdf\xf3\x29\x2e\x5e\x58\x12\x48\xe3\x38\x89\x9d\xd8\x2c\x0b\x4b\x77\x0b\x65\xbb\xb0\xd0\xfd\xf3\x50\x3a\xf4\x5a\xbe\x8e\x35\xb5\x24\x8f\x24\x27\x0d\x21\xdf\x7d\x90\x15\xb7\xe9\x9f\x19\x66\x86\x79\x18\x43\x2c\xa1\x73\xee\xd1\x2f\xbe\x52\x18\xc2\x3f\x15\x37\x60\x35\x4a\x83\xcc\x72\x25\x0d\x18\xb2\x06\x24\x6d\x81\x1e\x88\xb5\x6e\x0d\xa8\x2c\x95\xb6\xb0\x25\xbe\xae\xac\x19\x74\x65\x04\x02\x1f\xb8\x68\xc5\x6b\x5f\xcd\x05\xb7\x50\x2a\xfd\x3c\x98\x1b\xc0\x7a\x8b\x3b\x03\xa9\x7b\x26\x7d\x8e\x8f\x05\x89\x82\x4c\xc8\x0b\x03\x0c\x25\xe4\x04\x86\x48\x42\x45\x9a\x32\xe7\x74\xbf\x33\xb8\x39\xc7\x82\x24\x23\x38\x57\xa2\x69\x2d\xba\xe4\x3f\xb9\x2c\x6e\x87\x95\xb5\x8d\xc9\xc2\x70\xcd\x6d\xd5\xe6\x13\xa6\x44\xa8\x64\x59\xab\x6d\xc8\x7c\x49\x98\xd7\x2a\x0f\x93\xe9\x32\xa6\x72\xb1\x62\x4b\x36\xc3\x69\x12\x15\xb3\x25\xcd\x93\x7c\x9a\xc6\x48\x4b\x62\x31\xcd\xa6\x8b\x98\xe1\x32\xd4\xad\xb4\x5c\x50\xc8\x94\x10\x4a\xba\xa1\xdf\xef\x9e\xcb\x62\xb2\x56\x3f\x5d\xcd\xa7\xa3\x23\xd5\xc5\x7f\x7f\x7d\x0d\x91\x7b\x9d\xad\x95\x27\x8a\x8a\x72\x31\x2f\x68\x15\xb3\x38\x5f\xc6\x49\xb4\x8a\xa3\x08\x57\x25\xa5\x29\xa5\x69\xba\xc2\x7c\x46\x0b\x56\xc4\x69\x58\x6e\x44\x28\xc8\x92\xf6\xef\x0e\x21\x75\x04\x1e\xc2\x56\x04\x5c\x5a\xd2\x12\x6b\x68\x34\x31\x6e\x5c\x4f\x54\xd9\x29\xaf\x9a\xd4\x65\xb8\x9e\xcc\xde\x45\xc9\x18\xb6\x15\x67\x15\x08\x42\xe9\x57\x9c\x42\x1f\x5a\xac\xc1\x2a\x88\x40\xb5\xb6\x4f\xb2\xca\x62\xed\x5b\xf8\x3a\x15\x37\xc8\x6b\xcc\x6b\x67\x03\x3c\xed\xff\xe4\x08\xea\x3a\x5e\x50\x89\x6d\xfd\x78\xa0\x00\x7d\x8f\xfd\xff\x78\xf1\x1d\xaf\x94\x6a\x32\x88\xde\xd4\xae\x2d\x5a\x12\x24\x6d\x06\x11\xbc\xe9\xb8\x68\x65\xb7\xfb\xa5\xdc\x28\xd6\xad\xfa\x2c\x67\x56\x1a\xb8\x84\x06\x35\xfa\x6f\x51\x2a\x2d\x7a\x8c\xbb\xbb\xbb\xf7\x46\x49\x37\xbd\x71\x2f\x80\xbd\x1f\x00\x02\xbb\x6b\x28\xc8\x20\xf8\x9d\x77\xd1\xa8\x77\xc1\xf8\x51\xdc\x60\xdd\x3a\xf5\xa6\x5f\x39\xa9\xec\x0c\xf7\xb4\x0b\x32\xd8\x3f\xc5\xfc\x7b\x29\x6d\xb2\x08\xc6\x4f\xb5\x41\x34\x9d\x46\x01\x1c\xc6\xcf\x0a\x7b\xf5\xf3\xa5\x49\x1c\xcf\x93\x00\x0e\x4f\xa5\xa7\x31\xdf\x84\x32\xfb\x71\x50\xe6\xdf\x0f\xa5\x9f\xde\xfa\x49\x1f\x7b\x92\xf3\x37\xda\xea\x34\x65\x0f\x41\xa1\x04\x72\xe9\x44\x63\x95\xc6\x35\x39\x9d\x17\x24\x2d\x2f\x39\x69\x27\x3c\x5e\x89\x3f\xba\x1b\xf1\xbf\x3f\xe2\x01\x1c\xfc\x96\xb7\xc7\xd3\x35\x38\xb9\x1a\x43\x49\xdb\xa3\x2f\x83\xbd\xc7\xcf\xc0\x8f\x87\x11\xec\x07\x8e\xb3\xd1\xd4\xa0\xa6\xa1\xe1\x6b\x49\x3a\x03\x6c\x6d\x35\xbc\xf6\x14\x23\xf8\xf9\x37\xc6\x54\x2b\x6d\xef\x76\x8f\x77\x4e\x8e\xa4\x93\x5a\x61\xf1\xcb\xcb\xf4\x5f\x87\xa5\x56\x22\x83\xf0\xe8\x0a\xdf\xc6\x1f\x7d\x2a\xd4\xe0\x86\x4e\xf0\xc7\x60\xd5\x17\x86\x1d\x06\x87\x8f\x01\x00\x00\xff\xff\x38\x5a\x8f\x3f\x7f\x06\x00\x00" func flowserviceaccountSet_execution_effort_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -610,11 +610,11 @@ func flowserviceaccountSet_execution_effort_weightsCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_execution_effort_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x37, 0x75, 0xac, 0x6, 0xec, 0xf7, 0x3e, 0xda, 0xc2, 0x1c, 0xbc, 0xdb, 0xd2, 0xf9, 0x50, 0x92, 0x2c, 0xd2, 0x95, 0x48, 0xef, 0xad, 0xf0, 0x6a, 0xbc, 0x92, 0x53, 0xa0, 0xa, 0xcf, 0x9d, 0x6a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0xdb, 0xc1, 0xb9, 0x62, 0xa9, 0x42, 0x74, 0x68, 0xbe, 0xd1, 0xd7, 0xd6, 0x94, 0xc, 0x9d, 0x43, 0xe7, 0x67, 0xb0, 0xa7, 0x57, 0xa0, 0x72, 0xfa, 0xb0, 0x1f, 0x18, 0x12, 0xbd, 0x99, 0xf}} return a, nil } -var _flowserviceaccountSet_execution_memory_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\xc1\x8a\x83\x40\x10\x44\xef\x7e\x45\x1d\x15\x16\xe7\xb2\xec\x41\x96\x05\x8f\x0b\xc9\x2d\xf9\x80\x61\xd2\xd1\x01\x67\x46\xba\xdb\x98\x10\xfc\xf7\xa0\x12\x09\x39\xa5\x8f\xd5\xc5\xab\x67\x0c\x0e\xad\x17\x28\xdb\x28\xd6\xa9\x4f\x51\x20\xa4\x02\x8b\x48\x23\xe8\x4a\x6e\x98\x53\x04\x0a\x89\x6f\xe8\x7c\xf0\x5a\x66\x2f\xfd\x3c\xd2\xb8\x9b\xd3\x0a\xc7\xff\xa8\x3f\xdf\x05\xee\x19\x00\xf4\x4c\xbd\x65\xca\xc5\x37\x91\xb8\x42\x3d\x68\x5b\x3b\x97\x86\xa8\xcf\xca\x7c\xeb\xbb\xec\x92\x3d\xfd\xae\x80\xbf\xfc\xcc\x29\x54\x30\xa2\x89\x6d\x43\x66\xb3\xd8\x2f\x12\xcb\x5a\xf1\x0e\x10\x7b\xa1\xcd\xe5\x0b\x9a\x3e\x02\x4c\xd9\xf4\x08\x00\x00\xff\xff\x3e\xdc\x40\xf4\x04\x01\x00\x00" +var _flowserviceaccountSet_execution_memory_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\xb1\x6a\xc3\x30\x10\x86\x77\x3f\xc5\x3f\x15\x19\x8a\xb5\x94\x0e\xa6\x14\x3a\x16\xda\xa9\xed\x03\x1c\xea\xc5\x16\x58\x92\xd1\x9d\xe3\x84\xe0\x77\x0f\xb6\x13\x93\x25\x90\x1b\xff\xfb\xf8\xf8\xac\xc5\x6f\xeb\x05\x9a\x29\x0a\x39\xf5\x29\x0a\x84\x55\x40\x88\x3c\x82\x0f\xec\x86\x79\x45\xe0\x90\xf2\x11\x9d\x0f\x5e\xab\xe2\x86\x37\x91\xc7\xaf\x79\xad\xf1\xf7\x19\xf5\xf5\xa5\xc4\xa9\x00\x80\x3e\x73\x4f\x99\x8d\xf8\x26\x72\xae\x41\x83\xb6\xe6\x47\x53\xa6\x86\x4b\x3c\x7d\x38\x97\x86\xa8\x57\x7a\xbe\x95\xac\x64\x65\xaa\x2e\xd1\xff\xdb\xea\x7c\x37\xbb\x9c\x42\x0d\x7b\xf9\xd9\x2d\xec\x7b\xe9\x5a\x02\xca\x7b\x22\xa1\x3d\x6f\x99\xcf\xd0\xf4\x90\x68\x2a\xa6\x73\x00\x00\x00\xff\xff\xc0\x86\x20\x70\x1f\x01\x00\x00" func flowserviceaccountSet_execution_memory_limitCdcBytes() ([]byte, error) { return bindataRead( @@ -630,11 +630,11 @@ func flowserviceaccountSet_execution_memory_limitCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_execution_memory_limit.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0x26, 0x87, 0x5b, 0xdc, 0xb4, 0xba, 0xbb, 0x30, 0xf6, 0x69, 0x15, 0xcf, 0xe4, 0x23, 0xea, 0x24, 0x40, 0x9e, 0x5c, 0xe7, 0x38, 0xfe, 0x13, 0x11, 0x19, 0xb1, 0xde, 0xab, 0x20, 0xe4, 0xf1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0x55, 0xd0, 0x7e, 0x5b, 0xb1, 0x66, 0x8e, 0x6e, 0x52, 0xd0, 0x4d, 0x3f, 0xf0, 0x8a, 0xa, 0x11, 0xfc, 0x2b, 0xb7, 0x1, 0xe1, 0x84, 0xf5, 0x2b, 0x69, 0xf5, 0xa8, 0xc2, 0x36, 0xc0, 0xbb}} return a, nil } -var _flowserviceaccountSet_execution_memory_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\x31\x0b\xc2\x30\x10\x85\xf7\xfe\x8a\x37\xb6\x20\xcd\x22\x0e\x41\x84\x8e\x0e\x6e\x8a\x73\x88\x67\x1b\xb0\x49\xc9\x5d\xad\x52\xfa\xdf\xa5\x56\xa5\x74\xf2\x96\x83\xf7\x1e\x1f\x9f\x52\x38\x56\x8e\x21\xd1\x78\x36\x56\x5c\xf0\x0c\x26\x61\x78\xea\x40\x0f\xb2\xed\x98\xa1\xa6\x3a\xc4\x27\x3a\x72\x65\x25\x9c\x27\xb3\x7d\xea\xa9\x3b\x4f\xb9\x46\x7f\xda\x7b\xd9\xac\x35\xa6\x3f\x64\xe8\x13\x00\x68\x22\x35\x26\x52\xca\xae\xf4\x14\x35\x8a\x56\xaa\xc2\xda\xd0\x7a\xf9\x4e\xc6\x9b\xea\xfc\x16\xcc\x65\xbb\x44\xed\xd2\x6b\x0c\xb5\x86\x62\x09\xd1\x94\xa4\x7e\x76\x87\xb7\xdc\xc7\x21\x5b\xc2\xd8\xdc\x69\xe6\xb8\x82\x84\x3f\x21\x43\x32\xbc\x02\x00\x00\xff\xff\x96\xe9\x2c\xf0\x20\x01\x00\x00" +var _flowserviceaccountSet_execution_memory_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\x31\x6b\xc3\x30\x10\x46\x77\xff\x8a\x6f\x2a\x32\x14\x6b\x29\x1d\x44\x29\x74\xec\xd0\xa9\x2d\x99\x85\x72\xb1\x05\xb1\x64\x74\xe7\x38\xc1\xf8\xbf\x07\x47\x4e\x30\x81\x40\x6e\x39\xf8\x78\x3c\x9e\xd6\xf8\x6b\x3c\x43\x92\x0d\x6c\x9d\xf8\x18\x18\x4c\xc2\x08\x34\x80\x8e\xe4\xfa\x79\x43\x4b\x6d\x4c\x27\x0c\xe4\xeb\x46\xb8\x2a\x56\xbc\x0a\x34\x6c\xf2\x6e\x30\xfe\x7f\x07\x79\x7f\x33\xc8\x7f\x2a\x31\x16\x00\xd0\x25\xea\x6c\x22\xc5\xbe\x0e\x94\x0c\x6c\x2f\x8d\xfa\x95\x98\x6c\x4d\x25\x5e\xbe\x9c\x8b\x7d\x90\x2b\x3d\x5f\x26\x2b\xce\x4c\xb5\x8f\x76\xfb\x71\x6f\xff\x54\xbb\x14\x5b\x03\xbd\x50\xfa\x16\xfc\x73\xe9\x5d\xb2\xca\x47\x52\xb6\x07\x5a\xe5\xbf\x42\xe2\x93\xb2\xa9\x98\xce\x01\x00\x00\xff\xff\x43\xef\x3d\xe4\x3b\x01\x00\x00" func flowserviceaccountSet_execution_memory_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -650,11 +650,11 @@ func flowserviceaccountSet_execution_memory_weightsCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_execution_memory_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0x9e, 0xe1, 0x98, 0x6a, 0x53, 0x46, 0x75, 0xcd, 0x3e, 0x85, 0x4f, 0xc5, 0x75, 0x19, 0xd2, 0xa, 0x71, 0x20, 0xb2, 0xc3, 0xa8, 0x1c, 0x2a, 0xc6, 0x45, 0xd5, 0x39, 0x69, 0xee, 0xc9, 0x8c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x68, 0x24, 0x78, 0x78, 0x6b, 0x42, 0x18, 0x35, 0x8d, 0x1, 0x95, 0xfe, 0xec, 0x4b, 0x3b, 0x81, 0x3, 0xa1, 0x7, 0x1d, 0xeb, 0x87, 0x46, 0x33, 0xa2, 0x65, 0x58, 0xe5, 0x14, 0x5d, 0x3c}} return a, nil } -var _flowserviceaccountSet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x4d\x6b\xf3\x30\x10\x84\xcf\xd2\xaf\x58\x72\x78\x71\x2e\xf6\x7b\x36\x6d\x83\xf3\x05\x81\x42\x21\xee\xc7\x35\x8a\xb2\x4e\x04\x8e\xd6\xac\xd6\x49\xa0\xe4\xbf\x17\xab\xa1\x4d\xa8\x4b\xaf\x5a\xed\xec\x33\x33\x6e\xdf\x10\x0b\xcc\x6b\x3a\x96\xc8\x07\x67\xb1\xb0\x96\x5a\x2f\x50\x31\xed\xe1\xff\x69\xfe\xf8\xf4\x56\xce\x96\xaf\x8b\xc9\xac\x98\x4e\x97\xb3\xb2\xd4\x3a\xcb\xe0\x79\xe7\x02\x08\x1b\x1f\x8c\x15\x47\x1e\xec\xce\xf8\x2d\x06\x58\xb9\x00\xe6\x22\x61\x91\x4d\x1c\x32\x06\x61\x67\x05\x37\x2b\x38\x98\xba\x45\x7d\xb5\x9a\x7c\x4f\x73\x18\x13\xd5\x43\x78\xd7\x5a\xd5\x28\x10\x6e\x90\x8a\xcd\xde\xf9\x1c\xfe\xfd\x84\x4d\xe3\xc8\x05\x61\x23\xc4\x5a\xab\x86\xb1\x31\x8c\x49\x70\x5b\x8f\x9c\x43\xd1\xca\xee\xf2\xb7\x53\x57\x2a\xcb\x60\x4c\xcc\x74\x04\xc6\x0a\x19\xbd\x45\x10\xea\xcb\xe1\x46\xba\x73\x42\x2d\x5b\x4c\xa3\x86\x56\x2a\x60\x5d\xa5\x3d\x9c\x70\x0f\x9f\xc7\xd3\x75\xbc\x73\xf7\x27\xf6\x43\xd2\x45\x9e\x43\x16\x84\xd8\x6c\x31\xab\xae\x16\xba\x8f\x43\xad\x94\x1a\x8d\xa0\x31\xde\xd9\x64\xf0\xe2\xcd\xba\x8e\xd4\xeb\x1e\x27\xa6\x17\x7b\x30\xd4\xea\xac\x15\x9e\xd0\xb6\x82\x31\x89\xdf\x0c\xa4\x01\x65\x11\x2e\x2f\x13\xc6\xd8\xe4\xf2\xab\xaa\xab\xd6\xa2\xe6\xf9\x23\x00\x00\xff\xff\xd6\x4c\xa3\x70\x4a\x02\x00\x00" +var _flowserviceaccountSet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\x5d\x6b\xc2\x30\x14\x7d\x4e\x7e\xc5\xc5\x07\x69\x5f\xda\x3d\x97\x6d\xe2\x27\x08\x83\x81\xdd\xdc\xab\x31\xde\x6a\xa0\x26\xe5\xe6\x56\x85\xe1\x7f\x1f\x8d\x65\xab\xac\x63\xaf\x39\x39\x5f\xf7\x98\x63\xe5\x88\x61\x51\xba\x73\x8e\x74\x32\x1a\xc7\x5a\xbb\xda\x32\x14\xe4\x8e\xf0\x70\x59\xbc\xbc\x7e\xe4\xf3\xd5\x7a\x39\x9d\x8f\x67\xb3\xd5\x3c\xcf\xa5\x4c\x53\x78\x3b\x18\x0f\x4c\xca\x7a\xa5\xd9\x38\x0b\xfa\xa0\xec\x1e\x3d\x6c\x8c\x07\xd5\x4a\x68\x24\x15\x40\x42\xcf\x64\x34\xe3\x6e\x03\x27\x55\xd6\x28\x3b\xd4\xe8\x07\xcd\x60\xe2\x5c\x19\xc3\xa7\x94\xa2\x44\x06\x7f\x17\x69\xbc\x3b\x1a\x9b\xc1\xf0\x77\xd8\x24\x40\xc6\x33\x29\x76\x24\xa5\xa8\x08\x2b\x45\x18\x79\xb3\xb7\x48\x19\xa8\x9a\x0f\xd1\xc4\x11\xb9\xf3\xba\xf1\x8f\x61\xd8\x52\x1b\x33\x21\xd2\x14\x6e\x28\x10\x16\x48\x68\x35\x02\xbb\xbe\xb3\xdc\x39\x35\xc5\x5c\x4d\x1a\x93\xa0\x21\x85\xf0\x58\x16\x49\x4f\x6c\x78\x82\x5b\x96\xc4\xb3\x23\xb5\xc7\x64\x1b\xfc\x1e\xff\x6d\xf3\x1c\x35\x4b\x64\x90\xb6\xc4\xb4\xe8\x10\x9a\x8f\xb1\x14\x42\x8c\x46\x50\x29\x6b\x74\x34\x78\xb7\x6a\x5b\x86\xf4\xdb\x9e\x46\xaa\x37\xfe\x20\x96\xe2\x2a\x05\x5e\x50\xd7\x8c\xe1\x22\x7f\x15\x49\x3c\xf2\xd2\xb7\x2f\x53\xc2\x30\xf0\xea\x7b\xc1\xce\x98\x41\xf3\xfa\x15\x00\x00\xff\xff\x3a\xab\xaa\x68\x61\x02\x00\x00" func flowserviceaccountSet_is_account_creation_restrictedCdcBytes() ([]byte, error) { return bindataRead( @@ -670,11 +670,11 @@ func flowserviceaccountSet_is_account_creation_restrictedCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_is_account_creation_restricted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x99, 0xe6, 0x5c, 0x96, 0xf7, 0xd5, 0xbe, 0x67, 0xcc, 0x62, 0x34, 0x2b, 0x4d, 0xd5, 0x3f, 0xb6, 0x29, 0xe7, 0xa8, 0xe7, 0x8c, 0x2b, 0xa, 0xd0, 0x7e, 0x8c, 0x5, 0xc5, 0xe7, 0x9f, 0x69, 0x7f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0x71, 0x42, 0x66, 0x4, 0xde, 0x47, 0xbf, 0xae, 0x2c, 0x11, 0x4d, 0xd8, 0x6f, 0x6d, 0x12, 0xba, 0x83, 0x4a, 0x43, 0xed, 0x2d, 0xde, 0x41, 0xe4, 0x4d, 0xfe, 0x3d, 0xfe, 0xe8, 0xe2, 0xc6}} return a, nil } -var _flowserviceaccountSet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\x41\x6b\xe3\x40\x0c\x85\xcf\x33\xbf\x42\xe4\xb0\x38\xb0\xd8\x7b\x58\xf6\x60\xb6\x0d\xa6\xb1\x4f\x85\x96\xa6\xa1\xe7\xc9\x54\x4e\x06\xec\x91\x91\x64\x12\x28\xf9\xef\x25\x4e\x9a\xa4\xe0\xf4\x38\x6f\xf4\x3e\x3d\xf4\x42\xdb\x11\x2b\x54\x0d\x6d\x2b\x44\x81\x9a\xa9\x85\x3f\xbb\xea\xf1\xe9\xad\x2a\xcb\x45\x31\x9f\xbf\x94\x8b\x85\xb5\x59\x06\xaf\x9b\x20\xa0\xec\xa2\x38\xaf\x81\x22\x08\xaa\x80\x6e\xf0\xe2\xee\x1c\xbb\x16\x15\x59\xec\xd5\x60\x22\x3d\xaf\xb1\x72\x5e\x89\x73\x58\x56\x61\xf7\xef\xef\x6f\x08\xd1\x37\xbd\x04\x8a\x65\x5d\x13\xeb\x03\x89\x5e\x3e\x71\x87\xbe\xd7\xd1\xcf\x29\x7c\x58\xd3\xa0\x42\x7d\xda\x5a\x78\x4f\x7d\xd4\xe2\xbd\x0d\x31\x87\x5f\x5f\x61\xd2\x41\x08\xa2\xec\x94\xd8\x5a\xd3\x31\x76\x8e\x31\x91\xb0\x8e\xc8\x39\x14\xbd\x6e\x4e\xde\x81\x69\x04\x9b\x3a\x1d\xa3\xc2\x1d\x1c\x4d\xe9\x8a\x98\x69\xfb\xff\xc6\x92\xfb\xe4\x70\xbe\x1c\x32\x51\x62\xb7\xc6\xec\x0c\x3b\x4c\x4d\xad\x31\x66\x36\x83\xce\xc5\xe0\x93\xc9\x32\xba\x55\x83\xa0\x04\x47\x28\x30\xd6\xc8\x18\xfd\xa0\xb9\x6b\x2e\x30\x0a\xf5\xec\x71\x32\xb5\x66\x6f\xcd\xf1\x3a\xf8\x73\xe8\x54\x50\x2b\xc4\xe7\x73\x25\xdf\x6b\xb8\x7a\xdc\xe8\x62\x44\xbc\x51\xcc\x88\x38\x04\xdd\x7f\x06\x00\x00\xff\xff\xff\xaa\x15\x0d\x5e\x02\x00\x00" +var _flowserviceaccountSet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\x41\x6b\xdb\x40\x10\x85\xcf\xbb\xbf\x62\xf0\xc1\x48\x50\xa4\x1e\x4a\x0f\xa2\xad\x71\x6b\xe9\x54\x68\x89\xe3\xe4\xbc\xde\x8c\xec\x05\x69\x47\xcc\x8c\xb0\x21\xf8\xbf\x07\xcb\x8e\xed\x80\x9c\xe3\xbe\x99\xfd\xde\x63\x5e\x68\x3b\x62\x85\xaa\xa1\x5d\x85\x28\x50\x33\xb5\xf0\x75\x5f\xfd\xfd\xf7\x5c\x95\xe5\x72\xbe\x58\x3c\x94\xcb\xa5\xb5\x79\x0e\x8f\xdb\x20\xa0\xec\xa2\x38\xaf\x81\x22\x08\xaa\x80\x6e\xf1\xfa\xbb\x73\xec\x5a\x54\x64\xb1\x37\x8b\x89\xf4\xbc\xc1\xca\x79\x25\x2e\x60\x55\x85\xfd\xf7\x6f\x5f\x20\x44\xdf\xf4\x12\x28\x96\x75\x4d\xac\x7f\x48\xf4\x3a\xc4\x3d\xfa\x5e\x47\x87\x29\xbc\x5a\xd3\xa0\x42\x7d\x76\x9d\x7b\x4f\x7d\xd4\xf9\x4b\x1b\x62\x01\xd3\xf7\x30\xd9\x20\x04\x51\x76\x4a\x6c\xad\xe9\x18\x3b\xc7\x98\x48\xd8\x44\xe4\x02\x5c\xaf\xdb\xe4\x37\x31\xd3\xee\xc9\x35\x3d\xa6\x30\x3d\xa3\x06\x0b\x23\xd8\xd4\xd9\x98\x09\xfc\x84\x13\x23\x13\x25\x76\x1b\xcc\xd6\x03\xe5\xc7\x1d\xef\x5f\xc9\xf1\xaa\x05\xe4\xe7\xf5\xfc\x02\x3d\x6e\xa5\xd6\x18\x33\x9b\x41\xe7\x62\xf0\xc9\x64\x15\xdd\xba\x41\x50\x82\x13\x14\x18\x6b\x64\x8c\x7e\xd0\xdc\x2d\x17\x18\x85\x7a\xf6\x38\x49\xad\x39\x58\x73\x3a\x1a\x7e\x1e\x3e\x13\xd4\x0a\xf1\xff\xa5\xa9\x8f\xed\xdc\x3c\xee\x54\x34\x22\xde\xe9\x6b\x44\x1c\x82\x1e\xde\x02\x00\x00\xff\xff\x8d\x8b\xf8\x5f\x75\x02\x00\x00" func flowserviceaccountSet_tx_fee_parametersCdcBytes() ([]byte, error) { return bindataRead( @@ -690,11 +690,11 @@ func flowserviceaccountSet_tx_fee_parametersCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_tx_fee_parameters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc4, 0xd9, 0xa, 0xe8, 0x29, 0x62, 0x98, 0x4f, 0xb0, 0x5b, 0x5b, 0x90, 0x2e, 0x2c, 0xa0, 0x36, 0x6b, 0x6b, 0x7d, 0x8f, 0xfc, 0xdd, 0x15, 0xf5, 0xa9, 0x70, 0x54, 0xe7, 0x8, 0x37, 0x39, 0x9b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0xc4, 0x3c, 0x54, 0x65, 0x79, 0xfd, 0xb5, 0xbc, 0xb0, 0x5a, 0x97, 0x50, 0x33, 0xc4, 0x3b, 0x8, 0xd2, 0x19, 0x68, 0x6d, 0x35, 0x4c, 0x5a, 0x2a, 0xc4, 0x62, 0x76, 0x10, 0xd1, 0x9c, 0x9c}} return a, nil } -var _flowserviceaccountSet_tx_fee_surge_factorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xc1\x4a\xf3\x40\x14\x85\xd7\x33\x4f\x71\xe9\xe2\x27\xdd\x24\xff\x42\x5c\x04\xb5\x04\xda\x59\x09\x82\xb1\xb8\x9e\x8e\x27\xed\x40\x32\x13\xee\xdc\xd0\x82\xf4\xdd\xa5\x69\xb5\x11\xd4\xe5\x1c\xce\xf7\xcd\xe5\xf8\xae\x8f\x2c\x64\xda\xb8\x37\x40\xa2\x86\x63\x47\xff\x0f\xe6\xf1\xe9\xd5\xac\x56\x75\xb5\x5c\x3e\xaf\xea\x5a\xeb\xa2\xa0\x97\x9d\x4f\x24\x6c\x43\xb2\x4e\x7c\x0c\x94\x20\x89\x64\x87\x2b\xdd\x5b\xb6\x1d\x04\x9c\xf4\xa4\x98\xa5\x81\xb7\x30\xd6\x49\xe4\x92\xd6\xc6\x1f\x6e\x6f\xe6\xf4\xae\x55\x0b\xa1\xe6\xc2\x56\xce\xc5\x21\x48\xf5\xd6\xf9\x50\xd2\xbf\x4f\x65\x3e\x06\x3e\x09\x5b\x89\xac\xb5\xea\x19\xbd\x65\x64\xc9\x6f\x03\xb8\xa4\x6a\x90\xdd\x85\x1d\x9d\x2a\xa1\x6d\xf2\x9f\xac\x74\x4f\x67\x28\xdf\x44\xe6\xb8\xbf\xfb\xe5\x93\x87\xec\x34\x42\x49\x45\x92\xc8\x76\x8b\xe2\x4b\x76\x6a\xcd\xb5\x52\x6a\xb1\xa0\xde\x06\xef\xb2\xd9\x3a\xd8\x4d\x0b\x92\x48\x67\x29\x31\x1a\x30\x82\x1b\x33\x3b\xf5\x12\x23\xc5\x81\x1d\x66\x73\xad\x8e\x5a\xe1\x00\x37\x08\xfe\x3e\x3a\x4f\x10\x03\xd4\xd7\x05\xbf\xaf\x39\x79\x8c\xd6\xe3\x47\x00\x00\x00\xff\xff\x1e\x43\xfa\x9c\xd1\x01\x00\x00" +var _flowserviceaccountSet_tx_fee_surge_factorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x41\x6b\xeb\x30\x10\x84\xcf\xd2\xaf\x58\x72\x08\xf6\xc5\x7e\x87\xc7\x3b\x98\xd7\x86\x94\x44\xa7\x42\xa1\x6e\xda\xb3\xa2\x8e\x13\x81\x2d\x99\xd5\x9a\x04\x4a\xfe\x7b\x89\x93\x36\x29\xb4\x3d\xee\x30\xf3\xcd\x32\xbe\xeb\x23\x0b\x99\x36\xee\x0c\x90\xa8\xe1\xd8\xd1\x9f\xbd\xb9\x7f\x78\x31\xcb\x65\x3d\x5f\x2c\x1e\x97\x75\xad\x75\x59\xd2\xd3\xd6\x27\x12\xb6\x21\x59\x27\x3e\x06\x4a\x90\x44\xb2\xc5\x25\xdd\x5b\xb6\x1d\x04\x9c\xf4\x95\x31\x4b\x03\x6f\x60\xac\x93\xc8\x15\xad\x8c\xdf\xff\xfb\x9b\xd3\x9b\x56\x2d\x84\x9a\x73\x76\xee\x5c\x1c\x82\xcc\x5f\x3b\x1f\x2a\x9a\x7e\x20\x8b\x51\xf0\x49\xd8\x4a\x64\xad\x55\xcf\xe8\x2d\x23\x4b\x7e\x13\xc0\x15\xd9\x41\xb6\xd9\x5d\x64\x8e\xbb\x67\xdb\x0e\xc8\x69\x7a\x46\x8d\x15\x2a\xa1\x6d\x8a\xef\x4a\xe8\x86\x4e\x8c\x22\x49\x64\xbb\x41\xb1\x1e\x29\xff\x7f\xe8\xbe\xcd\x8e\xdb\x54\x54\x9e\xed\xe5\x27\xf4\xe8\xca\xb5\x52\x6a\x36\xa3\xde\x06\xef\xb2\xc9\x2a\xd8\x75\x0b\x92\x48\x27\x28\x31\x1a\x30\x82\x1b\x35\x7b\xcd\x25\x46\x8a\x03\x3b\x4c\x72\xad\x0e\x5a\x61\x0f\x37\x08\x7e\x7f\xbe\x48\x10\x03\xd4\x97\x61\xbf\x8e\x7c\x75\x8c\xd4\xc3\x7b\x00\x00\x00\xff\xff\x2f\xc7\xf7\xdd\xe8\x01\x00\x00" func flowserviceaccountSet_tx_fee_surge_factorCdcBytes() ([]byte, error) { return bindataRead( @@ -710,11 +710,11 @@ func flowserviceaccountSet_tx_fee_surge_factorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_tx_fee_surge_factor.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1d, 0x84, 0xea, 0x4e, 0xdf, 0x39, 0x64, 0x58, 0x5c, 0x35, 0xeb, 0xc3, 0x27, 0xcb, 0x39, 0xc9, 0xa5, 0xf, 0x7b, 0xbe, 0x52, 0x59, 0x3c, 0xbc, 0x9a, 0xc2, 0x15, 0x2f, 0x72, 0xc3, 0x0, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0xa8, 0x68, 0xff, 0x31, 0x16, 0xd5, 0x7a, 0xb4, 0x74, 0x23, 0xc5, 0xad, 0x1c, 0x8c, 0x72, 0xf, 0x17, 0x52, 0x0, 0xad, 0xca, 0x79, 0xd2, 0xb0, 0xf2, 0x8d, 0xb, 0x3c, 0x8a, 0x3f, 0xd2}} return a, nil } -var _dkgAdminForce_stop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x41\x4f\x83\x40\x10\x85\xef\xfc\x8a\x97\x1e\x0c\x5c\x88\x67\xa2\x36\x44\x2a\x07\x2e\x46\x7e\xc1\xba\x0c\x74\x23\xcc\x90\x61\x48\x9b\x98\xfe\x77\x83\x6b\x35\x3d\xf8\x2e\x9b\x9d\xbc\xf7\xcd\x9b\x30\xcd\xa2\x86\x97\x51\x4e\x55\x53\xa3\x57\x99\x70\x7f\xae\x9a\xba\xac\xaa\xb7\x43\xdb\x26\x89\xa9\xe3\xc5\x79\x0b\xc2\xf8\x4c\x12\x00\x18\xc9\xd0\x7d\x0c\x65\x37\x05\x2e\x70\xf7\x13\xce\xbf\xff\xd1\x31\x2b\xcd\x4e\x29\x5d\xc2\xc0\xa4\x05\xca\xd5\x8e\xa5\xf7\xb2\xb2\x65\x57\xca\xa6\x85\xc6\x3e\xbf\xa2\xf0\x88\xe8\xcf\xdf\x45\x55\x4e\x0f\xb7\xe4\xa7\x74\x6b\x57\xe0\x66\xd8\x9a\xa8\x1b\xe8\xd5\xd9\x31\xfb\xa5\x6e\xda\xef\x31\x3b\x0e\x3e\xdd\x3d\xcb\x3a\x76\x60\x31\x44\x2c\xb6\x43\xe3\x42\xa5\x9e\x94\xd8\xd3\x2e\x8b\x9d\x2e\xf1\xa1\x33\xf9\xd5\xe8\xdf\xa6\x79\x2f\xea\xe9\xc0\x5d\xd5\xd4\xe9\x5f\xf4\xf2\x15\x00\x00\xff\xff\x6b\xe4\xb6\xb3\x4e\x01\x00\x00" +var _dkgAdminForce_stop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x4f\x6b\x83\x40\x10\xc5\xef\x7e\x8a\x47\x0e\xc1\x5c\xa4\x67\x69\x1b\x6c\x4d\x3d\x78\x29\x15\x7a\xdf\xae\xa3\x91\xae\x3b\x32\xce\x92\x40\xc8\x77\x2f\xba\x4d\x21\x87\xbe\xdb\x2e\xf3\x7b\x7f\x86\x71\x62\x51\xbc\x39\x3e\x95\x75\x85\x4e\x78\xc4\xc3\xb9\xac\xab\xa2\x2c\x3f\x0e\x4d\x93\x24\x2a\xc6\xcf\xc6\xea\xc0\x1e\x97\x24\x01\x00\x47\x8a\xf6\xbb\x2f\xda\x71\xf0\x39\xb6\xbf\x70\xb6\xbe\xe3\xc5\x24\x34\x19\xa1\x74\x1e\x7a\x4f\x92\xc3\x04\x3d\xa6\x2f\x2c\xc2\xa7\x4f\xe3\x02\xed\xb0\x2d\xac\xe5\xe0\x75\x87\xcb\x4a\x2c\x9a\xc9\x75\xd9\xcd\x18\x4f\x88\x74\x36\x2b\x8b\xe9\x29\xfb\x5a\xf9\xc7\xfb\xbc\xe7\x74\xe9\x9c\xe3\xee\xb3\x89\xc4\xbb\xd1\xe3\xee\xcf\x7d\xd1\x7e\x8f\xc9\xf8\xc1\xa6\x9b\x57\x0e\xae\x85\x67\x45\xb4\xc5\x32\x3f\x06\x0b\x75\x24\xe4\x2d\x6d\x22\x7c\x8d\x9b\xe8\x4c\x36\x28\xfd\xd7\x37\xeb\x58\x2c\x1d\x7c\x5b\xd6\x55\x7a\x03\xaf\xc9\x4f\x00\x00\x00\xff\xff\x30\xb9\x84\xa5\x61\x01\x00\x00" func dkgAdminForce_stop_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -730,11 +730,11 @@ func dkgAdminForce_stop_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/force_stop_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0x53, 0xf9, 0x8d, 0x95, 0x45, 0x15, 0x8e, 0x63, 0x8, 0xf2, 0x6b, 0x8e, 0xd9, 0x78, 0xd1, 0xb5, 0x25, 0x89, 0x30, 0xf7, 0x90, 0x6d, 0xe2, 0x60, 0xed, 0x4d, 0xb9, 0x5d, 0xdc, 0xd, 0x6c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0xb8, 0x22, 0xe9, 0x40, 0x5, 0x41, 0x8c, 0x99, 0x9e, 0x1e, 0x56, 0xfb, 0x91, 0x5b, 0xf3, 0xa9, 0xd5, 0xfa, 0x7b, 0xdd, 0x5b, 0x0, 0x6a, 0x6b, 0xf9, 0xf3, 0xaf, 0xea, 0x97, 0x8b, 0xd7}} return a, nil } -var _dkgAdminPublish_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x41\x4b\xc3\x40\x10\x05\xe0\xfb\xfc\x8a\xe7\x45\x5a\x90\xc6\x73\x11\x21\x10\xed\xa1\x17\x31\xfe\x81\x35\xdd\x6e\x86\x6e\x66\x96\xd9\x09\x2a\xd2\xff\x2e\x1a\x05\x3b\xc7\x79\x1f\x8f\xc7\x53\x51\x73\x3c\x66\x7d\xeb\xf6\x3b\x1c\x4d\x27\xdc\xbe\x77\xfb\x5d\xdb\x75\xcf\x0f\x7d\x4f\xd4\x34\x78\x19\xb9\xc2\x2d\x48\x0d\x83\xb3\x0a\xb8\x42\x25\x7f\xe0\xa8\x06\x8f\xd5\x59\xd2\x15\xd1\x7f\xf1\x49\x04\x00\xc5\x62\x09\x16\x57\x95\x93\x44\xdb\xa2\x9d\x7d\x6c\x87\x41\x67\xf1\xf5\x9f\xf9\xbe\x25\xdf\x64\x96\xd3\xdd\xf5\xef\x98\x4d\x7b\x98\x58\xee\x57\x4d\x99\x5f\x33\x0f\xcd\xe1\x94\x7e\x3e\x37\xf0\x60\x29\xfa\x16\x17\xb0\x77\xb5\x90\xe2\x53\xf0\x71\xbd\x14\x9f\x89\xce\x5f\x01\x00\x00\xff\xff\xd0\x9c\x76\xb8\xe0\x00\x00\x00" +var _dkgAdminPublish_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xf3\x40\x10\x86\xef\xfb\x2b\xde\xef\x52\x12\xf8\x48\x3c\x17\x15\x42\xa3\x3d\xf4\x22\xc6\x3f\x30\xdd\x6e\x93\xc1\xcd\xee\xb2\x33\x41\xa5\xf4\xbf\x4b\x13\x95\x0a\xce\x6d\x86\xf7\x79\x5e\x86\xc7\x14\xb3\xe2\xd1\xc7\xb7\x76\xb7\xc5\x31\xc7\x11\x37\xef\xed\x6e\xdb\xb4\xed\xf3\x43\xd7\x19\x53\xd7\x78\x19\x58\xa0\x99\x82\x90\x55\x8e\x01\x2c\x88\xc1\x7f\xe0\x18\x33\xd4\x89\x72\xe8\xff\x19\x73\x9d\x38\x19\x03\x00\x29\xbb\x44\xd9\x15\xc2\x7d\x70\x79\x0d\x9a\x74\x28\x36\x94\x68\xcf\x9e\x95\x9d\x94\x58\x35\xd6\xc6\x29\x68\x89\xd3\x8c\x5c\xc6\x3b\x05\x1d\x46\x0e\x1b\x4a\xb8\xc3\x42\x57\xf6\x8a\xab\x44\x63\xa6\xde\x55\x2c\x32\xb9\xdb\xd5\xd7\x03\x55\x73\xa1\xee\x8b\x5f\x6b\xb7\x44\x9f\x48\x87\xf2\xa7\xe2\x2f\x67\x9a\xf6\x9e\x65\x28\xbe\xab\xff\x83\x74\x8d\x7a\x3e\xdb\xfa\xf0\xda\xcf\xba\xc5\x71\x36\x67\xf3\x19\x00\x00\xff\xff\x85\xcb\x65\x7f\x3d\x01\x00\x00" func dkgAdminPublish_participantCdcBytes() ([]byte, error) { return bindataRead( @@ -750,11 +750,11 @@ func dkgAdminPublish_participantCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/publish_participant.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xec, 0x55, 0xff, 0x37, 0xec, 0x8, 0x49, 0xe7, 0xe0, 0xd, 0xea, 0xad, 0x75, 0x78, 0xe, 0x7e, 0x3e, 0xc5, 0xc4, 0x78, 0x6f, 0xda, 0x66, 0x26, 0x76, 0x96, 0xa0, 0x81, 0xc, 0xc3, 0xe3, 0x1c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe, 0xde, 0x73, 0xec, 0x8d, 0xaf, 0x2d, 0xc7, 0xb, 0x91, 0x59, 0x37, 0xa5, 0x34, 0x14, 0x91, 0x58, 0xd0, 0xf8, 0x61, 0xe0, 0x60, 0x4b, 0xae, 0xf2, 0x3f, 0xe2, 0x35, 0x3c, 0xd3, 0xd, 0xa5}} return a, nil } -var _dkgAdminSet_safe_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xc1\x6a\xb4\x40\x10\x84\xef\x3e\x45\xb3\x87\x1f\xbd\xc8\x7f\x08\x39\x48\x12\x91\x98\xdd\xc3\x5e\x96\x98\x3c\xc0\x64\x2c\x75\x88\xce\x48\x4f\x8b\x42\xd8\x77\x0f\x66\x12\xc3\x42\xb6\x2f\xc3\x14\xc5\x57\x45\x99\x61\x74\x2c\xb4\xef\xdd\x5c\x1e\x0f\xd4\xb0\x1b\xe8\xff\x52\x1e\x0f\x45\x59\x3e\x3f\x55\x55\x14\x09\x2b\xeb\x95\x16\xe3\x6c\x6c\x31\xbf\x74\x0c\xdf\xb9\xbe\x3e\x81\x35\xac\xa8\x16\x19\xbd\xee\xcd\x72\x7b\x93\x27\xf4\x11\x45\x44\x44\x3d\x84\xea\xf7\xb6\xa8\x07\x63\x33\xfa\xf7\x4d\x4f\xbf\xfe\xc1\x31\x32\x46\xc5\x88\xbd\x69\x2d\x38\xa3\x62\x92\xae\xd0\xda\x4d\x56\x36\xca\x7a\x1e\x7d\x93\xfe\xa0\xe8\x9e\x82\x3f\x7d\x73\xcc\x6e\xbe\xbb\x24\x3f\xc4\x6b\xfd\x8c\x2e\xc4\x4a\x1c\xab\x16\x27\x25\x5d\xb2\x51\xd7\xcb\x73\x1a\x95\x35\x3a\xde\x3d\xba\xa9\xaf\xc9\x3a\xa1\x80\xa5\x75\x89\x10\xc8\x68\xc0\xb0\x1a\xbb\x24\x74\x3a\x87\x07\x0b\xf4\x24\xb8\xda\x34\xf5\x90\x4a\x35\xa8\x26\xad\xe1\xfd\x36\xda\xd5\x05\xff\xd6\x7f\x43\xcf\x9f\x01\x00\x00\xff\xff\x08\xd4\x0e\xba\xa9\x01\x00\x00" +var _dkgAdminSet_safe_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x31\x6b\xc3\x30\x10\x85\x77\xff\x8a\x23\x43\x70\x16\xd3\xa1\x74\x30\x6d\x83\x5b\x37\x19\xb2\x84\xba\xed\xae\xca\x67\x5b\x54\xd6\x99\xd3\x09\x1b\x4a\xfe\x7b\x71\x94\x04\x02\xcd\x6d\x3a\xf4\xbe\x77\xef\x99\x7e\x20\x16\xd8\x58\x1a\xcb\xdd\x16\x1a\xa6\x1e\xee\xa6\x72\xb7\x2d\xca\xf2\xfd\xad\xaa\x92\x44\x58\x39\xaf\xb4\x18\x72\xa9\xc3\xf1\xa3\x63\xf4\x1d\xd9\x7a\x8f\xac\xd1\x89\x6a\x31\x87\xcf\x8d\x99\x1e\xee\xd7\x2b\xf8\x4d\x12\x00\x00\x8b\x02\xf5\x4f\x5b\xd4\xbd\x71\x39\x2c\x4f\xf4\xec\xf8\x8e\x3f\x06\xc6\x41\x31\xa6\xde\xb4\x0e\x39\x07\x15\xa4\x4b\x5f\x88\x99\xc6\x2f\x65\x03\xae\x60\x59\x68\x4d\xc1\xc9\x0c\x85\xd3\x78\xb4\x4d\x76\x06\xc3\x13\x44\x75\xe6\x85\x58\xb5\x98\x7d\x1f\xf5\x8f\xd7\x7e\xcf\xe9\x1c\x2a\x87\xab\x65\x15\x15\x7b\x25\xdd\xea\x42\x9f\x67\xbd\x86\x41\x39\xa3\xd3\xc5\x2b\x05\x5b\x83\x23\x81\x88\x85\xb9\x9f\x68\xcc\xd8\x20\xa3\xd3\xb8\x88\xe2\x43\xcc\x84\x13\xea\x20\x78\xeb\xde\xcc\xa3\x54\xaa\xc1\x2a\x68\x8d\xde\x5f\x8a\xbc\xd9\xea\xff\xfb\xb3\xe5\x21\xf9\x0b\x00\x00\xff\xff\xf8\x23\x32\xee\xbc\x01\x00\x00" func dkgAdminSet_safe_thresholdCdcBytes() ([]byte, error) { return bindataRead( @@ -770,11 +770,11 @@ func dkgAdminSet_safe_thresholdCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/set_safe_threshold.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2a, 0xee, 0x21, 0xa5, 0x42, 0x7, 0x30, 0x80, 0x1b, 0x7f, 0x7f, 0x43, 0xfd, 0x0, 0x77, 0xfc, 0x63, 0xc5, 0x5d, 0x9c, 0x14, 0xe5, 0xe8, 0x5b, 0x96, 0x59, 0xd7, 0x95, 0xcc, 0x7a, 0x44, 0x85}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa1, 0x7, 0x87, 0xd3, 0x19, 0x7b, 0x78, 0xde, 0x7c, 0xbe, 0x68, 0x46, 0x27, 0x29, 0xc7, 0x9c, 0x1c, 0xed, 0x26, 0xef, 0xe7, 0xab, 0xf3, 0x70, 0xcb, 0x0, 0xdd, 0x38, 0x6d, 0xc3, 0x54, 0x74}} return a, nil } -var _dkgAdminStart_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x8f\x1e\x24\xb9\x04\xcf\x41\x2d\xc1\xd5\x20\xb9\x88\x39\x8a\x87\x75\x33\x49\x17\x93\x9d\x30\x99\xd0\x82\xf4\xbf\x4b\xdc\xda\xd2\x83\xef\xb2\x3b\xc3\xe3\x9b\x37\xe3\xc7\x89\x45\xf1\x3c\xf0\xde\xd4\x15\x3a\xe1\x11\xb7\x07\x53\x57\xa5\x31\x6f\x4f\x4d\x93\x24\x2a\x36\xcc\xd6\xa9\xe7\x90\x06\x6e\xe9\xc5\xcc\x05\xde\x1b\x15\x1f\xfa\x8f\x0c\xdf\x49\x02\x00\x03\x29\xda\xaf\xbe\x6c\x47\x1f\x0a\xdc\x9c\x78\xf9\x6f\x1d\x1d\x93\xd0\x64\x85\xd2\xd9\xf7\x81\xa4\x40\xb9\xe8\xae\x74\x8e\x97\xa0\x67\xca\xaa\x99\x86\x2e\xff\x43\xe1\x1e\xd1\x9f\x7f\xb2\x08\xef\xef\xae\xc9\x0f\xe9\x1a\xb8\xc0\x55\xb3\x51\x16\xdb\xd3\xab\xd5\x5d\x76\xa6\xae\xda\x6e\x31\xd9\xe0\x5d\xba\x79\xe4\x65\x68\x11\x58\x11\xb1\x58\x77\x8f\x03\x85\x3a\x12\x0a\x8e\x36\x59\xcc\x74\x8c\x0f\x1d\xc8\x2d\x4a\xff\x26\xcd\x67\xb5\xa2\xa6\xae\x2e\x47\x3a\x7d\x2e\x9c\xe3\x4f\x00\x00\x00\xff\xff\x07\x1f\xfa\x84\x6e\x01\x00\x00" +var _dkgAdminStart_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x41\x4b\xf4\x30\x10\x86\xef\xfd\x15\x2f\x7b\x58\xda\x4b\xf9\xce\xe5\xd3\xa5\x1a\x2d\xd2\x8b\x58\xf0\x22\x1e\x62\x3a\xed\x06\xdb\xa4\x4c\xa6\xec\x82\xec\x7f\x97\x6e\xba\xca\x1e\x9c\x53\x12\xf2\x3c\x33\xf3\xda\x71\xf2\x2c\x78\x1c\xfc\x41\xd5\x15\x3a\xf6\x23\xfe\x1d\x55\x5d\x95\x4a\xbd\x3c\x34\x4d\x92\x08\x6b\x17\xb4\x11\xeb\x5d\xea\x7c\x4b\x4f\x2a\x14\x78\x6b\x84\xad\xeb\xdf\x33\x7c\x25\x09\x00\x0c\x24\x68\x3f\xfb\xb2\x1d\xad\x2b\xb0\x5d\x7d\xf9\xf9\x1e\x7f\x4c\x4c\x93\x66\x4a\x83\xed\x1d\x71\x01\x3d\xcb\x3e\xbd\xf3\xcc\xfe\xf0\xaa\x87\x99\x32\x6c\x4b\x63\xfc\xec\x64\x91\x62\xad\x40\x43\x97\x5f\xc4\xb8\x41\xa4\xf3\x20\x9e\x75\x4f\xf9\xc7\x99\xff\x7f\xdd\xef\x36\x5d\xd6\x28\x70\xf5\xd8\x44\xe2\x59\xcb\x3e\xfb\xb1\x2f\xb5\xdb\x61\xd2\xce\x9a\x74\x73\xef\xe7\xa1\x85\xf3\x82\xa8\xc5\x92\x48\x6c\xcc\xd4\x11\x93\x33\xb4\x89\xf0\x29\xee\x44\x47\x32\xb3\xd0\x5f\xf3\xe6\x41\x34\x8b\xaa\xab\xdf\xe0\xd6\xc3\xc5\x72\x4a\xbe\x03\x00\x00\xff\xff\xe5\x59\x1c\xb8\x81\x01\x00\x00" func dkgAdminStart_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -790,11 +790,11 @@ func dkgAdminStart_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/start_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0x9c, 0x4f, 0xf1, 0xca, 0x18, 0x35, 0xe8, 0xbf, 0xb3, 0x93, 0x79, 0x1b, 0x85, 0xe7, 0xc5, 0x4b, 0x22, 0x3, 0xa, 0x8a, 0x91, 0x42, 0xf4, 0x2e, 0x24, 0x32, 0x55, 0xba, 0xc8, 0x15, 0x5c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0xdc, 0xf6, 0xc7, 0xa3, 0xf5, 0x9e, 0xb8, 0xdc, 0xf2, 0x98, 0x40, 0xd2, 0x90, 0x5d, 0x10, 0xea, 0xd, 0xa7, 0x85, 0x99, 0x86, 0x90, 0x7, 0x56, 0x34, 0x18, 0xd3, 0xd4, 0xb0, 0xc8, 0x56}} return a, nil } -var _dkgAdminStop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x41\x4f\x83\x40\x10\x85\xef\xfc\x8a\x97\x1e\x0c\x5c\x88\x67\xa2\x36\x44\x94\x03\x17\x23\xbf\x60\x5d\x06\xba\x11\x66\xc8\x30\xa4\x4d\x4c\xff\xbb\xc1\xb5\x9a\x1e\xfa\x2e\x9b\x9d\xbc\xf7\xcd\x9b\x30\xcd\xa2\x86\xd7\x51\x8e\x55\x53\xa3\x57\x99\x70\x7f\xaa\x9a\xba\xac\xaa\xf7\x97\xb6\x4d\x12\x53\xc7\x8b\xf3\x16\x84\xf1\x95\x24\x00\x30\x92\xa1\xfb\x1c\xca\x6e\x0a\x5c\xe0\xee\x37\x9c\xff\xfc\xa3\x63\x56\x9a\x9d\x52\xba\x84\x81\x49\x0b\x94\xab\x1d\x4a\xef\x65\x65\xcb\x2e\x94\x4d\x0b\x8d\x7d\x7e\x41\xe1\x11\xd1\x9f\x7f\x88\xaa\x1c\x1f\xae\xc9\x4f\xe9\xd6\xae\xc0\xd5\xb0\x35\x51\x37\xd0\x9b\xb3\x43\xf6\x47\xdd\xb4\xdf\x63\x76\x1c\x7c\xba\x7b\x96\x75\xec\xc0\x62\x88\x58\x6c\x87\xc6\x85\x4a\x3d\x29\xb1\xa7\x5d\x16\x3b\x9d\xe3\x43\x27\xf2\xab\xd1\xcd\xa6\x39\x71\x57\x35\x75\xfa\x9f\x3a\x7f\x07\x00\x00\xff\xff\x74\x8c\xee\x80\x49\x01\x00\x00" +var _dkgAdminStop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x4f\x6b\xb3\x40\x10\xc6\xef\x7e\x8a\x87\x1c\x82\x5e\xe4\x3d\xcb\xdb\x06\x5b\x5b\x0f\x5e\x4a\x85\xde\xb7\xeb\x68\xa4\xeb\x8e\x8c\xb3\x24\x10\xf2\xdd\x8b\x6e\x53\xc8\xa1\xcf\x6d\x97\xf9\x3d\x7f\xc6\x69\x66\x51\xbc\x3a\x3e\x55\x4d\x8d\x5e\x78\xc2\xbf\x73\xd5\xd4\x65\x55\xbd\xbf\xb4\x6d\x92\xa8\x18\xbf\x18\xab\x23\x7b\x5c\x92\x04\x00\x1c\x29\xba\xaf\xa1\xec\xa6\xd1\x17\xd8\xff\xc0\xf9\xf6\x8e\x17\xb3\xd0\x6c\x84\xd2\x65\x1c\x3c\x49\x01\x13\xf4\x98\x3e\xb1\x08\x9f\x3e\x8c\x0b\x94\x61\x5f\x5a\xcb\xc1\x6b\x86\xcb\x46\xac\x5a\xc8\xf5\xf9\xcd\x18\x0f\x88\x74\xbe\x28\x8b\x19\x28\xff\xdc\xf8\xff\xf7\x79\x8f\xe9\xda\xb9\xc0\xdd\x67\x1b\x89\x37\xa3\xc7\xec\xd7\x7d\xd5\xe1\x80\xd9\xf8\xd1\xa6\xbb\x67\x0e\xae\x83\x67\x45\xb4\xc5\x3a\x3f\x06\x0b\xf5\x24\xe4\x2d\xed\x22\x7c\x8d\x9b\xe8\x4c\x36\x28\xfd\xd5\x37\x27\xdf\x55\x4d\x9d\xde\x98\x6b\xf2\x1d\x00\x00\xff\xff\x85\x1b\x18\x69\x5c\x01\x00\x00" func dkgAdminStop_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -810,11 +810,11 @@ func dkgAdminStop_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/stop_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0xe4, 0x2, 0xa5, 0xa0, 0x9b, 0xd5, 0xc3, 0xdb, 0x5d, 0x5a, 0xfa, 0xe6, 0x41, 0x85, 0x32, 0x8e, 0xae, 0x4e, 0xd8, 0x6f, 0x1a, 0x37, 0x77, 0x7, 0xb2, 0xce, 0x6, 0x29, 0x48, 0x43, 0x84}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x61, 0x13, 0xc0, 0xf4, 0x19, 0xac, 0x6, 0xbb, 0xc9, 0x50, 0x80, 0xec, 0xc5, 0x28, 0x61, 0x10, 0xda, 0x43, 0x52, 0x11, 0xe7, 0x84, 0x7d, 0xbd, 0xcf, 0xf1, 0xdd, 0x88, 0x5, 0x7f, 0xa1, 0xdf}} return a, nil } -var _dkgCreate_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x50\x4d\x6e\xf2\x30\x10\xdd\xfb\x14\x23\x16\x9f\x1c\x09\xc2\xb7\x8e\x68\x51\x44\x5a\x54\xb1\x41\xcd\x09\x06\x7b\x30\x16\xc1\xb6\x26\x93\xd2\xaa\xe2\xee\x15\x75\xa8\x60\x36\xb6\xfc\xe6\xfd\xf8\xf9\x53\x8a\x2c\xf0\xda\xc5\x73\xb3\x59\xc3\x9e\xe3\x09\xfe\x7f\x36\x9b\x75\xdd\x34\xef\x2f\x6d\xab\x94\x30\x86\x1e\x8d\xf8\x18\x34\x5a\xcb\xd4\xf7\x15\xd4\xf9\x32\x85\x10\x2d\xbd\x35\x15\xb4\xc2\x3e\xb8\x02\xbe\x95\x02\x00\x48\x4c\x09\x99\x74\xef\x5d\x20\xae\xa0\x1e\xe4\x50\x1b\x13\x87\x20\xd7\x1d\x18\xa7\x23\x01\xb4\x27\x1f\xe0\x09\x1c\xc9\xb8\x71\xb3\x29\x4a\x47\xb2\xc2\x84\x3b\xdf\x79\xf9\x5a\xfc\x1b\x53\x96\xf5\x95\xf2\xac\xe7\x69\xd8\x75\xde\xcc\xed\xd1\xfd\xbe\x14\x7f\xba\xd7\x29\x77\x91\x39\x9e\x75\x01\xcb\x25\x24\x0c\xde\xe8\xc9\x2a\x0e\x9d\x85\x10\x05\x32\x38\x9a\x33\xed\x89\x29\x18\x9a\x14\xea\x21\x9b\x3d\xba\x2d\xb2\x78\xe3\x13\x06\x81\xc5\x2c\x13\x4a\xc3\x84\x42\x77\x90\xbe\xf5\x90\xcf\x3b\x99\xdc\x40\xd9\xe3\x07\xe9\xc5\xec\x51\x70\x0a\x12\xab\x5b\xf7\xe5\x1d\xd0\x4a\x64\x74\xb4\x45\x39\xe4\x4f\x5d\x94\xba\xfc\x04\x00\x00\xff\xff\xb5\xd4\x8a\x93\xab\x01\x00\x00" +var _dkgCreate_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\x41\x6b\x02\x31\x10\x85\xef\xfb\x2b\xa6\x1e\x24\x0b\x1a\x7b\x5e\x6c\x65\xe9\xb6\x52\xbc\x48\x17\x7a\x1f\xb3\x63\x0c\xae\x49\x98\xcc\x6a\xa1\xf8\xdf\x8b\xee\x5a\x74\x2e\x09\x79\x79\x5f\x1e\x2f\xee\x10\x03\x0b\x7c\xb4\xe1\x54\xad\x96\xb0\xe5\x70\x80\xe7\x9f\x6a\xb5\x2c\xab\xea\xeb\xbd\xae\xb3\x4c\x18\x7d\x42\x23\x2e\x78\x85\x4d\xc3\x94\x52\x01\x65\xbf\x99\x80\x0f\x0d\x7d\x56\x05\xd4\xc2\xce\xdb\x1c\x7e\xb3\x0c\x00\x20\x32\x45\x64\x52\xc9\x59\x4f\x5c\x00\x76\xb2\x53\x35\x1e\xe9\x1b\xdb\x8e\x72\x18\x97\xc6\x84\xce\xcb\xc5\x00\xc3\xb4\x24\x80\xcd\xc1\x79\x78\x01\x4b\x32\xdc\xb8\xbd\x99\x6b\x83\x11\x37\xae\x75\xe2\x28\x69\x4b\x32\x1f\x0f\xa9\x75\x79\x71\xbd\xaa\x59\xec\x36\xad\x33\xb3\x66\x6f\xaf\x27\xf9\xd3\x3f\xfb\x32\x7a\x13\x98\xc3\x49\xe5\xb0\x58\x40\x44\xef\x8c\x1a\xbd\x85\xae\x6d\xc0\x07\x81\x5e\x1c\x02\x30\x6d\x89\xc9\x1b\x1a\xe5\xd9\x43\xbe\x66\x6f\xd7\xc8\xe2\x8c\x8b\xe8\x05\xe6\xd3\xde\xa0\x0d\x13\x0a\xdd\x49\xea\x56\x4c\xbf\xde\x61\xfa\x4a\x74\x92\xc0\x68\x49\x27\x3c\x92\x9a\x4f\x1f\xc1\x13\x90\x50\xdc\x3e\x45\xdf\x09\x75\xef\x5a\xa3\xec\xf2\x2b\xf1\x9c\x65\xe7\xbf\x00\x00\x00\xff\xff\x1d\x42\x51\x81\xc4\x01\x00\x00" func dkgCreate_participantCdcBytes() ([]byte, error) { return bindataRead( @@ -830,7 +830,7 @@ func dkgCreate_participantCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/create_participant.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9a, 0xdf, 0xc8, 0x88, 0x15, 0x2e, 0xc9, 0xee, 0xa3, 0xd2, 0xcc, 0x4b, 0xb5, 0xf2, 0x5, 0x2d, 0x92, 0x4f, 0x6e, 0xbd, 0x4b, 0x7c, 0x84, 0x40, 0x4a, 0x9b, 0x5e, 0x9f, 0x15, 0x5, 0x74, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xab, 0xa9, 0xdb, 0x5f, 0xf1, 0x79, 0xdb, 0x4a, 0x52, 0xb8, 0x28, 0x3d, 0x7f, 0x76, 0x23, 0xbf, 0x83, 0x93, 0xb1, 0x3d, 0x6d, 0xcd, 0xb9, 0xb6, 0xd0, 0xec, 0xa, 0xe9, 0x7d, 0x3d, 0xb5, 0x5c}} return a, nil } @@ -1074,7 +1074,7 @@ func dkgScriptsGet_whiteboard_messagesCdc() (*asset, error) { return a, nil } -var _dkgSend_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xb1\x6a\xf3\x40\x10\x84\x7b\x3d\xc5\xe2\xe2\x47\x6a\xc4\x5f\x8b\x24\x42\x44\xb1\x0b\x37\x26\x2a\x43\x8a\xf3\x79\x25\x2f\x91\x76\x8f\xbd\x15\x36\x04\xbf\x7b\x10\xb2\x8d\x02\xce\x94\x77\x37\xdf\xdc\x0c\x0d\x41\xd4\x60\xdd\xcb\xa9\xde\x6e\xa0\x55\x19\xe0\xff\xb9\xde\x6e\xaa\xba\x7e\x7f\x6b\x9a\x24\x31\x75\x1c\x9d\x37\x12\x4e\xe3\xb8\x1f\x28\x46\x12\x2e\xe0\xa3\x31\x25\xee\xca\xcf\x0c\xbe\x93\x04\x00\xa0\x47\x83\xc3\x57\xb7\x73\x6a\xe4\x29\x38\xb6\x02\xfe\x5d\xc9\xf9\xe2\x74\x7e\x1d\x14\x83\x53\x4c\x23\x75\x8c\x5a\x40\x35\xda\xb1\xf2\x5e\x46\xb6\x89\x08\x57\x45\xec\xdb\xfc\x37\x15\x9e\x61\x36\xe5\x7b\x51\x95\xd3\xd3\xa3\x90\x97\x74\xea\x52\xc0\x83\xab\xc6\x44\x5d\x87\x3b\x67\xc7\xec\x9e\x33\xa9\x2c\x21\x38\x26\x9f\xae\x5e\x1d\xb3\x18\xcc\xfc\xa9\x14\x84\x45\xbe\x62\x8b\x8a\xec\x71\x35\xfb\x2f\x73\x23\x3c\xa3\x1f\x0d\x6f\x73\xfc\xf1\xfb\x3c\x22\x1f\xd6\xc4\xae\x6f\xee\x6b\x2e\x86\xcd\x92\x1b\xf2\xf2\x13\x00\x00\xff\xff\x38\x14\x9d\x91\x9c\x01\x00\x00" +var _dkgSend_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xb1\x6a\xc3\x30\x10\x86\x77\x3f\xc5\x91\x21\x38\x8b\xe9\x6c\xda\x9a\xb4\x6e\x32\x64\x09\x35\x74\x29\x1d\x2e\xca\xd9\x11\xb5\x4f\xe2\x74\x22\x81\x92\x77\x2f\xae\xd2\xe0\x42\xe8\x8d\x92\xee\xfb\xf5\xfd\x76\xf0\x4e\x14\x56\xbd\x3b\xd6\x9b\x35\xb4\xe2\x06\xb8\x3b\xd5\x9b\xf5\xb2\xae\x5f\x5f\x9a\x26\xcb\x54\x90\x03\x1a\xb5\x8e\xf3\x10\x77\x83\x0d\xc1\x3a\x2e\xe1\xbd\x51\xb1\xdc\x55\x1f\x0b\xf8\xca\x32\x00\x80\x9e\x14\xf6\x9f\xdd\x16\x45\xad\xb1\x1e\x59\x4b\x98\x5f\xc8\xc5\xe4\x34\xbd\xf6\x42\x1e\x85\xf2\x60\x3b\x26\x29\x01\xa3\x1e\xf2\x27\x27\xe2\x8e\x6f\xd8\x47\x5a\xc0\x7c\x69\x8c\x8b\xac\x63\x00\x5c\x26\x50\xdf\x16\x7f\x43\xe0\x01\x12\xa3\x08\xea\x04\x3b\x2a\x76\x3f\x94\xfb\x5b\xd9\x8f\xf9\xa8\x58\xc2\x8d\xab\x26\x6d\x6f\x51\x0f\x8b\x6b\xde\x38\x55\x05\x1e\xd9\x9a\x7c\xf6\x8c\xcc\x4e\x21\xf1\x47\x57\xf0\x93\x7f\x08\xb5\x24\xc4\x86\x66\x69\xff\x9c\x44\xe9\x44\x26\x2a\xfd\x2f\x51\x04\xe2\xfd\xca\x32\xf6\xcd\xb5\xe3\x49\xdd\xbf\xc0\xf3\x77\x00\x00\x00\xff\xff\x1f\x4c\xc5\x1b\xb0\x01\x00\x00" func dkgSend_final_submissionCdcBytes() ([]byte, error) { return bindataRead( @@ -1090,11 +1090,11 @@ func dkgSend_final_submissionCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/send_final_submission.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0xa1, 0xeb, 0xb8, 0x94, 0x6e, 0xb, 0x8d, 0x4f, 0xbe, 0xf4, 0xe4, 0x73, 0x98, 0xc9, 0x5b, 0x27, 0x91, 0x33, 0xac, 0x1a, 0xe, 0x48, 0xe7, 0x33, 0x1, 0x1f, 0xb, 0xa6, 0xac, 0x6a, 0x93}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9f, 0x56, 0x32, 0xaa, 0x57, 0xf5, 0x84, 0xa1, 0x79, 0xb5, 0x4d, 0x23, 0x4e, 0x17, 0x9a, 0xbf, 0x40, 0xa3, 0x2d, 0x6b, 0x47, 0x1a, 0x46, 0x56, 0x42, 0x97, 0x96, 0x67, 0x77, 0xaa, 0x23, 0xbe}} return a, nil } -var _dkgSend_whiteboard_messageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x43\x0f\x92\x5c\x82\xe7\xa0\x96\x60\xb4\x87\x22\x14\xf3\x0b\xc6\x75\x92\x2e\xa6\x33\xcb\xec\x84\x16\xa4\xff\x5d\x96\x6d\xa4\x42\x9d\xe3\xee\xbc\xef\xcd\x7b\xfe\x10\x44\x0d\x5e\x27\x39\x76\xdb\x0d\x0c\x2a\x07\xb8\x3f\x75\xdb\x4d\xdb\x75\xef\x2f\x7d\x5f\x14\xa6\xc8\x11\x9d\x79\xe1\xd2\x09\x1b\xb1\x35\xd0\x9b\x7a\x1e\x2b\xf8\x2e\x0a\x00\x80\x89\x0c\x3e\xbf\xc6\x1d\xaa\x79\xe7\x03\xa6\x95\xbb\x0b\xb3\xbe\x7a\xcd\xdb\x41\x29\xa0\x52\x19\xfd\xc8\xa4\x0d\xb4\xb3\xed\x5b\xe7\x64\x66\x4b\x44\xb8\x4c\xa4\x69\xa8\xff\x52\xe1\x11\xb2\xa8\xfe\x10\x55\x39\x3e\xdc\x32\x79\x2a\x53\x8a\x06\x6e\x7c\xf5\x26\x8a\x23\xed\xd0\xf6\xd5\xaf\x4f\x9a\xf5\x1a\x02\xb2\x77\xe5\xea\x19\x99\xc5\x20\xf3\x53\x28\x08\x57\xfe\x4a\x03\x29\xb1\xa3\x55\xd6\x9f\x73\x22\x3a\x91\x9b\x8d\x96\x3a\xfe\xb9\xbe\x0e\x12\xed\x8d\x62\xc4\x91\x96\x2a\xab\x62\xe1\x9c\x7f\x02\x00\x00\xff\xff\x42\x47\xff\x78\x8b\x01\x00\x00" +var _dkgSend_whiteboard_messageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xc1\x4a\xc3\x40\x10\x86\xef\x79\x8a\xa1\x87\x92\x5c\x82\xe7\xa0\x96\x6a\xb4\x87\x22\x14\x03\xde\xc7\x75\x92\x2e\xa6\x33\xcb\xec\x84\x16\xa4\xef\x2e\xeb\xb6\x52\xa1\x38\xc7\xdd\xf9\xbf\x7f\xbf\xf5\xbb\x20\x6a\xf0\x3c\xca\xbe\x5d\xaf\xa0\x57\xd9\xc1\xcd\xa1\x5d\xaf\x96\x6d\xfb\xfa\xd4\x75\x45\x61\x8a\x1c\xd1\x99\x17\x2e\x9d\xb0\x11\x5b\x03\x9d\xa9\xe7\xa1\x82\xaf\xa2\x00\x00\x18\xc9\xe0\xe3\x73\xd8\xa0\x9a\x77\x3e\x60\x5a\x99\x9f\x98\xf5\xc5\x69\xde\x0e\x4a\x01\x95\xca\xe8\x07\x26\x6d\x00\x27\xdb\x96\x0f\xa2\x2a\xfb\x37\x1c\x27\xaa\x60\xbe\x74\x4e\x26\xb6\x54\x00\xa7\x89\x34\xf6\xf5\xdf\x12\xb8\x83\xcc\xa8\xa3\x89\xe2\x40\xf5\xfb\x0f\xe5\xf6\x5a\xf7\x7d\x99\xe4\x1a\xb8\x72\xd5\xe5\xf4\x06\x6d\x5b\xfd\xf6\xa5\x59\x2c\x20\x20\x7b\x57\xce\x1e\x91\x59\x0c\x32\x3f\xb9\x42\xb8\x78\x87\x52\x4f\x4a\xec\x68\x96\xf3\xc7\x2c\x4a\x07\x72\x93\xd1\xff\x12\x75\x90\x68\x2f\x14\x23\x0e\x74\xfe\xe0\x33\xe5\xf8\x1d\x00\x00\xff\xff\x77\xba\x5b\x73\x9f\x01\x00\x00" func dkgSend_whiteboard_messageCdcBytes() ([]byte, error) { return bindataRead( @@ -1110,11 +1110,11 @@ func dkgSend_whiteboard_messageCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/send_whiteboard_message.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaf, 0xbf, 0x30, 0x7e, 0x1e, 0xed, 0x99, 0xc1, 0x3d, 0xa0, 0x20, 0x22, 0x66, 0xaf, 0x3b, 0x43, 0x3f, 0x26, 0xca, 0xd8, 0xff, 0x25, 0x83, 0xbc, 0x7e, 0x33, 0x4a, 0x7b, 0xb0, 0x5d, 0xaf, 0x21}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x23, 0xf1, 0x36, 0x79, 0xa6, 0x58, 0xb9, 0xed, 0xe3, 0x3, 0x75, 0xf7, 0x43, 0xe7, 0xa2, 0x79, 0xfa, 0xdb, 0x3b, 0x62, 0xa5, 0xa5, 0x85, 0xce, 0xd0, 0x18, 0xc9, 0x6, 0x20, 0xf9, 0x5, 0x1d}} return a, nil } -var _epochAdminAdvance_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\xcf\x6e\x82\x40\x10\xc6\xef\x3c\xc5\x84\x43\x83\x17\xd2\xb3\xa9\x35\x08\x34\x9a\xd6\x6a\x8a\x7d\x80\x11\x47\xd8\x08\x3b\x9b\x65\xa8\x4d\x1a\xdf\xbd\x01\x2a\x92\xb4\xd6\x39\x70\xe1\xdb\xdf\xf7\x47\x95\x86\xad\xc0\x53\xc1\xc7\xd8\x70\x9a\xc3\xde\x72\x09\xf7\x9f\xf1\x7a\x15\xce\x83\x28\x7a\x8b\x93\xc4\x19\x88\x16\xd1\x06\xb7\x05\x25\x82\x07\xa5\xb3\x4e\xed\xfe\xfe\xe1\x3a\x8e\x58\xd4\x15\xa6\xa2\x58\x7b\x26\xc7\x8a\xc6\x90\x88\x55\x3a\x1b\xc1\x97\x03\x00\x60\x2c\x19\xb4\xe4\x55\x2a\xd3\x64\xc7\x10\xd4\x92\x07\x69\xca\xb5\x96\xb3\xa4\xb9\x82\x04\x72\x42\x2b\x5b\x42\x81\x09\x74\x72\x7f\xcb\xd6\xf2\xf1\xe1\xae\x4f\xee\xcf\xcf\xa2\x47\xaf\x89\x35\xbe\x94\xf2\xfb\xf7\x89\xb0\xc5\x8c\xd6\x28\xf9\xa8\x77\x68\x6e\x3a\x05\x83\x5a\xa5\x9e\x1b\x72\x5d\xec\x40\xb3\x40\x67\x31\x30\x6f\xdb\x56\x1d\x02\x0c\x4a\xee\x8e\x9c\x9e\xa2\xf6\xd0\xd6\x84\xc9\x04\xdc\x76\xbe\x24\xde\xbc\xaf\xdd\x41\x95\xe6\x7a\x9a\x4f\x7a\xf7\xb3\x56\x50\x77\x33\x5d\x22\x9d\x80\x8a\x8a\xfe\x60\x86\xab\xe5\x72\xb1\xb9\x0e\xad\x04\xad\xb4\xa5\x43\x2e\x4b\x25\xb7\x98\xaf\x51\x8b\xfd\x37\x65\x8b\xbb\x01\x9a\xbd\xac\xc2\xe7\xeb\x14\xdc\x7d\xa0\x4e\x69\x56\x70\x7a\x18\x92\x9c\xee\x7b\xfa\x0e\x00\x00\xff\xff\xa2\x8c\x51\x63\x87\x02\x00\x00" +var _epochAdminAdvance_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x6f\xe2\x30\x10\x85\xef\xf9\x15\xa3\x1c\x50\x72\x89\xf6\x8c\x96\x45\x90\x64\x05\xda\xa5\xa0\x86\xf6\x3e\x84\x21\xb1\x70\x6c\xcb\x99\x94\x4a\x15\xff\xbd\x8a\x03\x21\x52\x4b\x99\x83\x2f\x9e\xf7\xcd\x7b\x4f\x54\x46\x5b\x86\xbf\x52\x9f\x52\xa3\xf3\x12\x0e\x56\x57\xf0\xeb\x3d\xdd\xac\xe3\xc5\x2c\x49\x9e\xd3\x2c\xf3\x06\x4b\xcb\x64\x8b\x3b\x49\x19\xe3\x51\xa8\xa2\xdb\xf6\xbf\x7e\xf8\x9e\xc7\x16\x55\x8d\x39\x0b\xad\x02\x53\x62\x4d\x63\xc8\xd8\x0a\x55\x84\xf0\xe1\x01\x00\x18\x4b\x06\x2d\x05\xb5\x28\x14\xd9\x31\x60\xc3\x65\x30\xd7\xd6\xea\xd3\x2b\xca\x86\x42\x18\xcd\xf2\x5c\x37\x8a\xaf\x8a\x76\x24\x31\x94\x84\x96\x77\x84\x0c\x13\xe8\xd4\x51\xcd\xda\x62\x41\xd1\xce\xe9\x7f\x8f\xfa\x40\xd1\xe2\xba\xfc\x27\x68\xdd\x8e\x6f\x59\xa3\x9e\x93\x75\xea\x0d\x72\x19\xf6\x97\xda\x99\x4e\xc1\xa0\x12\x79\xe0\xc7\xba\x91\x7b\x50\x9a\xa1\x3b\x31\x30\xe1\x4a\xb8\x18\x00\x83\x5c\xfa\xa1\xd7\x53\xc4\x01\x5c\x7a\x98\x4c\xc0\x77\xad\x66\xe9\xf6\x65\xe3\x0f\x22\xb5\xd3\xd3\x22\x52\xfb\x4b\x89\xb3\xa6\x6b\xef\x66\xe9\x0c\x24\x6b\xfa\x86\x19\xaf\x57\xab\xe5\xf6\x3e\xb4\x66\xb4\xec\x42\xc7\xba\xaa\x04\x3f\x62\x3e\x25\x0e\xfb\xa3\x4b\x87\x7b\x00\x9a\xff\x5f\xc7\xff\xee\x53\x70\xff\x86\x2a\xa7\xb9\xd4\xf9\x71\x48\xf2\xba\xf7\xfc\x19\x00\x00\xff\xff\xe7\xd6\x03\x37\x9e\x02\x00\x00" func epochAdminAdvance_viewCdcBytes() ([]byte, error) { return bindataRead( @@ -1130,11 +1130,11 @@ func epochAdminAdvance_viewCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/advance_view.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaf, 0xe5, 0x21, 0xf2, 0xbc, 0x76, 0xa, 0x9b, 0xf1, 0x41, 0xa1, 0x27, 0xe4, 0x3f, 0x61, 0xc9, 0xf8, 0x24, 0x6c, 0x75, 0xe8, 0x9b, 0x1d, 0xf0, 0xd7, 0x78, 0x9e, 0xa4, 0xeb, 0xc9, 0xad, 0x10}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe7, 0xe4, 0x58, 0x8a, 0x95, 0x60, 0x99, 0x35, 0xc8, 0x7, 0x2a, 0xa, 0x5e, 0xf9, 0xdf, 0x44, 0xae, 0x6b, 0x97, 0x2d, 0x2b, 0xce, 0xef, 0x7c, 0x4f, 0x13, 0x9b, 0x70, 0x24, 0x40, 0x9a, 0xf5}} return a, nil } -var _epochAdminCalculate_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xc1\x6a\xeb\x30\x10\x45\xf7\xfa\x8a\xc1\x8b\x87\xbd\x31\x6f\x1d\xda\x06\x13\xbb\xa4\xab\x86\xb8\x3f\x30\x96\xa7\xb6\xa9\xa2\x11\xe3\x31\x2e\x94\xfc\x7b\x71\x45\xd4\x40\x67\xab\xa3\x7b\xee\x9d\x2e\x81\x45\xe1\xd9\xf1\xda\x04\xb6\x23\xbc\x0b\x5f\xe0\xff\x67\x73\x7a\x3d\x1c\xab\xba\x3e\x37\x6d\x6b\xee\xa0\x97\xfa\x0d\x3b\x47\xad\xe2\xc7\xe4\x87\x48\x67\x7f\x1f\x32\x63\x54\xd0\xcf\x68\x75\x62\x9f\x17\xf0\x65\x00\x00\x82\x50\x40\xa1\x7c\x9e\x06\x4f\xb2\x83\x6a\xd1\xb1\xb2\x96\x17\xaf\x37\x64\x3b\x47\x0a\x23\xa1\x68\x47\xa8\xf0\x08\x11\x2f\x3b\x16\xe1\xf5\xe1\x5f\x2a\x5b\x1e\x6f\xd0\x53\xbe\x35\xd9\xfd\xee\x28\xd3\xff\x56\x59\x70\xa0\x13\xea\x58\x24\xc3\x76\xfb\x3d\x04\xf4\x93\xcd\xb3\x03\x2f\xae\x07\xcf\x0a\x51\x71\x27\xff\x19\x38\xc7\x08\x08\xa8\x63\x56\x98\x94\x92\xb0\xd2\xa2\xb3\x8b\x43\xa5\xca\xf7\x2d\xe9\x99\x56\x94\x7e\xce\xa3\xf0\x6a\xae\xdf\x01\x00\x00\xff\xff\x66\x0a\x0f\x4f\x67\x01\x00\x00" +var _epochAdminCalculate_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xcf\x4e\x83\x40\x10\xc6\xef\xfb\x14\x13\x0e\xcd\x72\x21\x9e\x1b\xb5\xa9\x05\x53\x4f\x36\xc5\x78\x1f\x96\x11\x88\xdb\x9d\xcd\x30\x04\x13\xd3\x77\x37\x14\x8b\x4d\x9c\xeb\x7c\xbf\xef\x4f\x77\x8a\x2c\x0a\xcf\x9e\xc7\x22\xb2\x6b\xe1\x43\xf8\x04\x77\x5f\xc5\xe1\x75\xb7\xdf\xe6\xf9\xb1\x28\x4b\x73\x23\x7a\xc9\xdf\xb0\xf2\x54\x2a\x7e\x76\xa1\x99\xd5\xc9\xff\x47\x62\x8c\x0a\x86\x1e\x9d\x76\x1c\x6c\x0a\xdf\x06\x00\x20\x0a\x45\x14\xb2\x7d\xd7\x04\x92\x35\xe0\xa0\xad\x7d\x62\x11\x1e\xdf\xd1\x0f\x94\xc2\x6a\xeb\x1c\x0f\x41\xaf\xc4\x74\x9e\x14\x5a\x42\xd1\x8a\x50\xe1\x01\x66\x3a\xeb\x95\x05\x1b\xca\xaa\x0b\x7f\xbf\x5a\x36\x64\xfb\xab\xf8\xd1\x4e\x05\xd7\x7f\xf3\xb2\xc5\xa7\x9c\xe9\x03\x6a\x9b\x2e\x49\xd3\x6d\x36\x10\x31\x74\xce\x26\x3b\x1e\x7c\x0d\x81\x15\xe6\x88\x9b\x12\x97\xdd\xbf\x05\x20\xa2\xb6\x49\x6a\x16\x97\x45\x96\x39\xf4\x6e\xf0\xa8\xb4\x0d\x75\x49\x7a\xa4\x11\xa5\xee\xed\x1c\x78\x36\xe7\x9f\x00\x00\x00\xff\xff\xae\x92\x7e\xa9\x7e\x01\x00\x00" func epochAdminCalculate_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -1150,11 +1150,11 @@ func epochAdminCalculate_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/calculate_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc0, 0x22, 0xae, 0xbc, 0xaa, 0x23, 0xd3, 0xe3, 0x4a, 0xea, 0x79, 0x41, 0xe9, 0xc2, 0x3, 0xae, 0x7b, 0x62, 0x2c, 0xc, 0xee, 0xe, 0x9c, 0x9e, 0xc5, 0xd0, 0x7f, 0xa2, 0xd3, 0x48, 0xa6, 0x85}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x91, 0x2b, 0xc1, 0x75, 0x0, 0xc3, 0xde, 0x73, 0x1, 0x53, 0x92, 0x20, 0x2d, 0x68, 0x6f, 0x62, 0xc0, 0x5c, 0xd6, 0x22, 0x8b, 0x41, 0xd1, 0xd, 0xfc, 0x11, 0xd8, 0x83, 0xf5, 0x88, 0xb6, 0x7a}} return a, nil } -var _epochAdminDeploy_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xc1\x6b\xea\x40\x10\xc6\xef\xf9\x2b\xe6\xe8\x03\x91\xf7\xe0\x21\x0f\x6f\x21\xea\x43\x2c\x54\x1b\xda\x1e\xc4\xc3\x76\x33\x8d\xc1\x64\x36\xcc\xee\xa2\x52\xfc\xdf\xcb\x9a\x48\x4d\x8c\x89\x6d\x0e\x4b\x32\xdf\xf7\x6d\x86\x99\x5f\x92\xe5\x8a\x0d\x4c\x53\xb5\x0b\x52\xab\x0d\xf2\x32\x80\x77\x56\x19\xfc\xde\x2f\x03\x7f\x3c\x7e\x9a\x84\xa1\xe7\x19\x16\xa4\x85\x34\x89\xa2\x1e\x89\x0c\x47\x10\x1a\x4e\x28\xee\x83\x07\x17\x8f\x54\x11\x8e\x60\xf5\x3c\x23\xf3\x6f\xdd\xaf\x4a\x96\x19\xc9\x4c\x72\x25\x37\x81\xb2\x64\x90\x47\xe0\x8c\xc3\xbf\x55\x23\xd9\xec\x25\xc1\x9d\x9e\xd1\xc9\xdb\x65\x0a\x8d\xd8\x26\x14\xfb\xf6\xd4\x5c\x97\x7b\x3c\xff\xbf\xd8\x08\x8d\x37\x7d\x81\x4a\x53\x94\x46\x71\x39\x0d\x5d\x38\xff\x0c\xab\xce\xe9\xc3\xe3\xab\xb6\x79\x9e\x1e\x66\x24\x19\x85\xc6\x05\xb2\x44\x32\x22\x76\x77\x4f\x93\x7d\xfd\x6e\x16\x14\xa9\x2c\x54\x96\xe5\xd7\xf4\x6a\xc3\xbb\xfa\xf5\xaa\xb2\x97\x41\xf9\x56\x9f\xec\x59\xbf\x19\x58\x06\xb5\x48\xb4\x8d\x17\xf6\x6d\x8e\x07\x17\x29\x7a\x59\xff\x82\x0f\xcf\x03\xc8\x19\x73\xc1\xd8\xd3\x49\x4c\x6e\x45\xbe\x35\x1b\x5f\x4a\xb7\xb1\xd2\x01\x50\x68\x03\xa9\xc8\xb0\x90\x46\x0f\x44\x14\x95\x58\xb8\xb3\x11\x0a\x77\xde\x41\x44\x43\xb1\x03\x8f\x5a\xe1\x5e\x4e\x6e\x29\xb5\xe6\x9b\xd0\xb9\xae\x5d\x87\x1a\x38\x6a\xaa\x7e\x87\xaa\x36\xb5\x8d\xb5\xcb\xaf\x6e\xe2\xd6\x20\xf4\x0f\xb8\x6b\x89\xb5\xd3\x57\x04\xcf\x0c\x7a\x00\x47\xef\xf8\x19\x00\x00\xff\xff\x77\xe6\xf2\x61\x95\x04\x00\x00" +var _epochAdminDeploy_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x6b\xf2\x40\x10\x86\xef\xf9\x15\x73\xfa\x50\x10\xf9\x0a\x45\x8a\xb7\x10\xb5\x88\x85\x6a\x43\xdb\x83\x78\xd8\x6e\xa6\x31\x98\xcc\x86\xd9\x5d\x54\x8a\xff\xbd\xc4\x44\x6a\x62\x4c\x6c\x73\x58\x92\x99\xe7\xdd\x2c\xb3\x4f\x94\xa4\x8a\x0d\x4c\x62\xb5\xf5\x62\xab\x0d\xf2\xc2\x83\x4f\x56\x09\xfc\xdf\x2d\x3c\x77\x34\x7a\x19\xfb\xbe\xe3\x18\x16\xa4\x85\x34\x91\xa2\x0e\x89\x04\x87\xe0\x1b\x8e\x28\xec\x81\x03\x67\x8f\x54\x01\x0e\x61\xf9\x3a\x25\xf3\xb0\xea\x95\x5b\x96\x19\xc9\x8c\x53\x25\xd7\x9e\xb2\x64\x90\x87\x90\x81\x83\xfb\x32\x48\x36\x79\x8b\x70\xab\xa7\x74\x64\xdb\x20\xdf\x88\x4d\x44\xa1\x6b\x8f\x87\x6b\xa3\x47\xb3\xc7\xf9\x5a\x68\xbc\xca\x79\x2a\x8e\x51\x1a\xc5\xc5\x34\x74\x4e\xde\x0d\xca\xe4\xe4\xe9\xf9\x5d\xdb\x34\x8d\xf7\x53\x92\x8c\x42\xe3\x1c\x59\x22\x19\x11\x66\x7b\x4f\xa2\x5d\x75\x6f\x16\x14\xa8\xc4\x57\x96\xe5\xcf\xf4\x2a\xc3\xbb\xf8\xf5\xb2\x74\x2f\xfd\xe2\xad\x3a\xd9\x53\xff\x6a\x60\xe1\x55\x22\xc1\x26\x9c\xdb\x8f\x19\xee\xb3\x48\x7e\x96\x55\x17\xbe\x1c\x07\x20\x65\x4c\x05\x63\x47\x47\x21\x65\x57\x24\xac\x59\x77\xdc\x20\xf0\x14\x19\x16\xd2\x74\xe1\x9f\x2b\x65\x76\x81\x45\x00\x20\x47\xfb\xb2\x20\x74\x5f\x04\x41\x61\x49\xb6\xd6\x3a\x92\xad\x37\x08\x52\x53\x6c\xb1\xa5\x52\xb8\x55\x9b\x6b\x9d\xca\xe1\xeb\x4c\xba\xac\x5d\x86\x6a\xb4\xaa\xab\xfe\x46\xb2\xa6\x6e\x93\x7a\xe7\x5f\xed\x02\xae\x40\xe8\x3f\x68\xd8\x10\x6b\x96\x31\x0f\x9e\x94\x74\x00\x0e\xce\xe1\x3b\x00\x00\xff\xff\xa4\x16\x25\xee\xa4\x04\x00\x00" func epochAdminDeploy_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1170,11 +1170,11 @@ func epochAdminDeploy_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/deploy_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3b, 0x7a, 0xe, 0xfd, 0xd8, 0x13, 0x8f, 0x9b, 0x36, 0x65, 0x11, 0x9d, 0x7, 0x4f, 0x62, 0xb9, 0x4e, 0x62, 0xe3, 0x15, 0xb8, 0x23, 0xf6, 0x95, 0xa4, 0xd3, 0xde, 0xd3, 0x54, 0x5c, 0xff, 0x57}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8, 0x5d, 0xa4, 0x34, 0x7f, 0xf, 0xeb, 0x61, 0x83, 0xf2, 0xa1, 0xad, 0xff, 0xca, 0xec, 0xa8, 0xd9, 0x1a, 0xfc, 0xe8, 0x55, 0x5f, 0xfe, 0x54, 0xff, 0xab, 0x82, 0xcf, 0xa6, 0xf8, 0xab, 0xf1}} return a, nil } -var _epochAdminDeploy_qc_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xce\x31\x4b\xc4\x40\x10\x05\xe0\x7e\x7e\xc5\x2b\x13\x08\x77\xad\xa4\x3b\xb4\xb1\xb1\x11\x2b\xb1\x18\x66\x97\x75\x39\x9d\x49\x76\x27\x88\x48\xfe\xbb\x90\x8d\x62\x2a\xcb\x61\xde\x7b\x7c\xe7\x33\xee\xe2\xf4\x66\x9f\x15\xfe\x61\x10\x53\x2f\x2c\x5e\xe1\x06\x56\xb0\x88\x2d\xea\xc8\x0a\xd3\x08\x2f\xac\x95\xc5\xb3\x29\x81\xfe\x5c\xdd\x2c\x0f\xfc\x1e\x47\x3c\x7a\xc9\x9a\x06\xcc\x72\x6b\x21\x8e\x78\x7e\xba\x57\xbf\x79\x19\x10\xae\xe9\x98\x08\xd7\x74\x88\xf4\xf8\x22\x02\xa6\x12\x27\x2e\xb1\xab\x39\x69\x2c\x23\x2e\x8b\xbf\x5e\x9a\x62\x4f\x00\xed\x77\xfa\xc5\x9e\x38\x84\x4e\xb7\xf5\xe6\x18\x20\xdb\x74\x53\xf4\xff\xb6\x76\xdc\x4f\x6d\xa7\xf5\x04\xac\x44\x2b\x81\xbe\x03\x00\x00\xff\xff\x63\x1d\x09\x1c\x27\x01\x00\x00" +var _epochAdminDeploy_qc_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xce\xb1\x4a\x03\x41\x10\xc6\xf1\x7e\x9e\xe2\xab\xe4\x16\x8e\xa4\x95\xeb\x42\x6c\x6c\x6c\xc4\x4a\x2c\x86\xd9\x65\x5d\xa2\x33\x97\xdd\x09\x22\x92\x77\x17\xb2\xab\x98\xca\x72\xe0\xfb\x33\xbf\xed\x16\x77\x69\x7d\xb3\xcf\x06\xff\x30\x88\xa9\x57\x16\x6f\x70\x03\x2b\x58\xc4\x4e\xea\x28\x0a\xd3\x04\xaf\xac\x8d\xc5\x8b\x29\x81\xfe\x5c\xd3\x51\x1e\xf8\x3d\x2d\x78\xf4\x5a\x34\xcf\x38\xca\xde\x62\x5a\xf0\xfc\x74\xaf\x7e\xfb\x32\x23\x1e\xf2\xf5\x22\x1e\xf2\xd5\x24\xe0\x8b\x08\x58\x6b\x5a\xb9\xa6\xa9\x95\xac\xa9\x2e\xe0\x93\xbf\x4e\xbb\x18\xf7\x43\x16\x70\xb3\xeb\xa8\x11\x00\x7d\xba\xf9\xb5\x6f\x38\xc6\x49\x2f\xcf\x3a\x6b\x86\x5c\x3e\x75\x54\xf8\xb7\x1a\xd6\x9f\x6c\x48\x03\x01\x67\xa2\x33\x81\xbe\x03\x00\x00\xff\xff\x37\x0b\x9f\x58\x36\x01\x00\x00" func epochAdminDeploy_qc_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -1190,11 +1190,11 @@ func epochAdminDeploy_qc_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/deploy_qc_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0xe5, 0xe6, 0x5e, 0xb3, 0x8d, 0x7c, 0x34, 0x5, 0xbf, 0xe9, 0x71, 0x45, 0x48, 0x7, 0xa7, 0xaa, 0x67, 0xd5, 0x1e, 0x45, 0x4b, 0x78, 0xc9, 0x66, 0x5b, 0x35, 0x61, 0x8f, 0x22, 0xd8, 0x7d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf2, 0xf3, 0x8a, 0xbb, 0x2a, 0x94, 0xec, 0x2, 0x91, 0xbb, 0xb8, 0x47, 0x83, 0xda, 0xe4, 0x7, 0x32, 0x98, 0x19, 0x9, 0x22, 0xec, 0xd7, 0x7e, 0x5d, 0x67, 0xf5, 0x20, 0x9d, 0x75, 0xef, 0x5f}} return a, nil } -var _epochAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\xcf\x6e\xa3\x40\x0c\x87\xef\xf3\x14\x16\x87\x15\x91\x56\x64\xcf\xd1\xb6\x51\x94\x3f\x4a\x4e\x45\xa1\x2f\x60\xc0\xc9\x8c\x4a\xc6\x23\x63\x42\x51\x95\x77\xaf\x80\x94\xa6\xaa\x6f\xa3\xf9\xec\xcf\xfe\xb9\x4b\x60\x51\xd8\x55\xdc\x6e\x03\x17\x16\x4e\xc2\x17\xf8\xf7\xbe\x4d\x5f\xd6\xfb\xd5\x66\x73\xdc\x66\x99\x79\x80\x0e\x9b\x57\xcc\x2b\xca\x14\xdf\x9c\x3f\x8f\x74\xf4\xfb\x23\x32\x66\x3e\x9f\x43\x8a\x5d\x0d\x6a\x09\x84\x5a\x94\xb2\x86\x13\xcb\xf0\x0e\x42\x57\xc7\x4d\x0d\xd4\x4b\x07\xf6\x70\xfa\x41\x5a\xbc\x12\x60\x25\x84\x65\x07\x39\x91\x87\x80\xae\xfc\x3b\x76\x63\x77\x21\xaf\xd0\xba\xaa\x02\xcf\x0a\x16\x43\x20\x6f\x8c\x0a\xfa\x1a\x0b\x75\xec\xe1\xc3\x00\x40\x2f\x0a\x28\x14\xd7\xee\xec\x49\x16\xb0\x6a\xd4\xae\x8a\x82\x1b\xaf\xb3\x3b\xd2\x57\x45\x0a\x96\x50\x34\x27\x54\x78\x82\x11\x4f\x72\x16\xe1\xf6\xff\x9f\x29\x9e\x64\xff\x05\x3d\xc7\xfd\xed\x8b\xef\xe4\x92\xa9\x3f\x53\x16\x3c\x53\x8a\x6a\x67\x93\xa1\xaf\xe5\x12\x02\x7a\x57\xc4\xd1\x9a\x9b\xaa\x1c\x56\x1f\x15\x0f\xf2\x21\xd2\x7a\x1c\x01\x01\xd5\x46\x33\x33\x4d\x99\xb0\x24\x60\x77\x1c\xa3\xda\xb1\xa4\xf7\x38\x87\x45\xe2\x51\x7a\x33\xb7\xcf\x00\x00\x00\xff\xff\x39\x92\xd8\x62\xdd\x01\x00\x00" +var _epochAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6f\xa3\x30\x10\x86\xef\xfe\x15\x23\x0e\x11\x48\x2b\xb2\xe7\x68\x77\xa3\x6c\x3e\x94\x9c\x8a\x42\xd5\xfb\x00\x93\xd8\xaa\x63\x5b\xc3\x10\x8a\xaa\xfc\xf7\x0a\x48\x69\xaa\xce\x0d\xf1\xbc\xf3\x8e\x1f\x73\x09\x9e\x05\x76\xd6\xb7\xdb\xe0\x4b\x0d\x27\xf6\x17\xf8\xfd\xb6\xcd\x9e\xd6\xfb\xd5\x66\x73\xdc\xe6\xb9\x7a\x80\x0e\x9b\x67\x2c\x2c\xe5\x82\xaf\xc6\x9d\x47\x3a\xfa\xf9\x23\x52\x6a\x3e\x9f\x43\x86\x5d\x0d\xa2\x09\x98\x5a\xe4\xaa\x86\x93\xe7\xe1\x3b\x30\x5d\x8d\x6f\x6a\xa0\xbe\x74\x60\x0f\xa7\x6f\xa4\xc6\x2b\x01\x5a\x26\xac\x3a\x28\x88\x1c\x04\x34\xd5\xaf\x31\x8d\xdd\x85\x9c\x40\x6b\xac\x05\xe7\x05\x34\x86\x40\x4e\x29\x61\x74\x35\x96\x62\xbc\x83\x77\x05\x00\x7d\x51\x40\xa6\xb8\x36\x67\x47\xbc\x00\x6c\x44\xc7\xff\x3d\xb3\x6f\x5f\xd0\x36\x94\xc0\x6c\x55\x96\xbe\x71\x92\xdc\x13\xfd\x58\x12\xd0\x84\x2c\x05\xa1\xc0\x5f\x18\xd3\x69\x2d\x9e\xf1\x4c\x69\x31\xe4\xff\xcc\x26\x6b\xe9\xfe\x13\xfe\x17\xf7\x4a\x16\x5f\x42\xd3\x69\x4f\x3e\xa6\x33\x14\x9d\x4c\x4d\xfd\x2c\x97\x10\xd0\x99\x32\x8e\xd6\xbe\xb1\xd5\xf0\xa2\xb1\xe2\xe1\x88\xc1\xf4\xfd\x00\x08\x28\x3a\x4a\xd4\xb4\x65\xc2\xd2\x80\xdd\x71\x34\xb8\xf3\x9c\xdd\x2d\x0f\x87\xc4\x63\xe9\x4d\xdd\x3e\x02\x00\x00\xff\xff\xbe\x35\x89\x58\xf4\x01\x00\x00" func epochAdminPay_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -1210,11 +1210,11 @@ func epochAdminPay_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/pay_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0x5d, 0xa8, 0x54, 0xe9, 0x46, 0x13, 0x3c, 0xb8, 0x58, 0x6c, 0xfe, 0x8e, 0x56, 0x39, 0xcf, 0x3c, 0x7b, 0xfe, 0xe6, 0x11, 0x69, 0xcb, 0x5a, 0x3d, 0x9a, 0x9c, 0x72, 0xa7, 0xc8, 0x4, 0xa7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4a, 0x40, 0x49, 0xa1, 0x6e, 0x43, 0x74, 0xf7, 0x5e, 0xa4, 0x86, 0xba, 0x50, 0x29, 0x43, 0x3b, 0x46, 0x6b, 0x71, 0xfb, 0x3, 0xcb, 0xc4, 0xe5, 0xd1, 0xdc, 0xbb, 0xda, 0xc4, 0x34, 0xa3, 0x2e}} return a, nil } -var _epochAdminReset_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x6f\xdb\x38\x10\xbd\xeb\x57\x0c\x7c\xd8\xb5\x11\xc7\xde\x00\x8b\x3d\x18\xdb\x06\x86\xed\xa2\x41\x0f\x4d\xeb\xb4\x97\xa2\x87\x91\x34\x96\x08\x4b\x1c\x81\x33\x8a\x63\x14\xf9\xef\x05\xc9\xf8\x43\xad\x9a\x44\x27\x91\x7c\xf3\xf8\xe6\xbd\xa1\xa9\x1b\x76\x0a\xef\x2a\xde\xad\x1a\xce\x4a\xd8\x38\xae\xe1\x9f\x87\xd5\xed\xc7\xc5\xfb\xf9\x72\xf9\x79\xb5\x5e\x27\x67\xa0\x9b\xe5\x1d\xa6\x15\xad\x15\xb7\xc6\x16\x11\x3d\xf8\xfd\x60\x90\x24\xd3\x29\xdc\x95\x04\x8e\x84\x34\x52\xab\x43\x2b\x98\xa9\x61\x0b\x64\x73\x01\x2d\x09\xb2\xd6\x39\xb2\x0a\x14\x20\xc6\x86\xcd\x93\x1c\xa9\xd1\x29\x64\x6c\xd5\x61\xa6\x9e\x14\x6d\x0e\x29\x15\xc6\x0a\x20\x58\xda\x3d\x55\xee\x8c\x96\xa1\xb6\x30\xf7\x64\x7d\xc5\xc6\x14\xad\x43\x7f\xdb\x24\x28\x39\x61\xb1\xda\xe1\x5e\xa0\x44\xf1\x84\x41\x05\xb7\x56\xc9\x1d\xd4\x84\xbb\x17\x71\xef\xe2\x2a\x96\x9f\xab\x17\xb2\x39\x39\xa8\x5b\x51\x68\x1c\xdf\x9b\x9c\x02\x8d\xa7\xeb\xa1\x80\x61\x4a\x1b\x76\x11\x13\x0c\x01\xc5\x2d\x09\x34\x15\x66\x34\x02\xf4\xad\x08\x6e\x48\xf7\x50\x53\x56\xa2\x35\x52\x4f\x92\xe9\xd4\xf3\x2d\x5b\xe7\x9d\xb6\xa4\x3b\x76\x5b\x90\x86\xdd\x56\xc6\x81\x2a\x65\x56\x51\x87\x4d\x43\xb9\xd7\xa1\x9c\x71\x05\xa2\xa8\x04\x46\xbc\x99\xd1\xa1\x68\xe5\xb0\xb7\xb9\xd1\xf8\x60\xea\x59\x52\x46\xa0\x15\xca\x41\x19\xbc\x9a\x22\x2a\x8f\xe6\x1d\xac\x7a\x45\x54\x61\x3a\xfa\xfc\x50\xee\x55\x03\x17\x70\x35\x1a\x83\x30\x68\x89\x0a\x46\xff\x16\xcf\x27\x46\xd4\x8f\x48\x88\xf8\x90\xd8\x33\xbd\x4f\xe2\xec\x19\xe9\x66\x56\x72\x5b\xe5\xc0\xb6\xda\x43\x4a\xb1\xbf\xe3\xd0\x70\xab\x4d\xab\xc0\x9b\x2e\x37\xb4\x6a\x2a\xa3\xfb\x99\x67\x84\xb0\x7a\x72\x21\x98\x75\xa9\x0f\x97\xe8\x0a\x49\x92\xb3\x8b\xfa\x1a\x9b\xc1\x97\x1b\xab\xff\xfd\x3b\x4e\xe0\xec\x73\x68\x73\xae\xd7\xdc\xba\x8c\x66\xb0\x56\x9f\x73\x17\x21\x8a\x4e\xbf\x1a\xda\xf5\x13\x48\x7c\x6c\x2b\x9b\xff\x19\x43\xdd\xc3\x11\xfc\x48\xc2\x79\xe3\xa8\x41\x47\x43\x31\x85\xf5\x02\xe7\xad\x96\xf3\x2c\x84\xeb\x31\x87\xf2\x8a\x9e\x9e\xe6\x3c\xaf\x8d\x85\x37\x10\xf1\x93\x94\x9d\xe3\xdd\xff\x7f\x1d\xe3\x9f\x04\xc0\xdb\xa1\xcf\x7c\x76\x9a\x8a\x09\xfa\xed\xb5\xb2\xc3\x82\x6e\x51\xcb\x51\x47\xdd\xf5\x35\x34\x68\x4d\x36\x1c\x2c\x42\x3a\x96\x15\x22\x35\x94\x84\x4e\x53\x42\x8d\x63\x24\x91\x02\x1a\xd4\x72\x30\x4a\x8e\x2c\x27\x71\x93\xd3\x00\xf7\x67\xd0\xb3\xd9\xf5\xea\xd7\xaf\x1b\xd0\xf9\xea\xf9\xba\xf3\xdc\x8e\xbf\x2f\x97\x74\xb2\xec\xae\x5f\x28\x3e\x86\x4c\xaf\x82\x67\x5c\x55\x94\x29\xbb\x45\xd5\x8a\x92\x93\x19\x7c\xfb\xfe\x52\x4d\x84\x7e\x5a\xbc\x06\x9c\x6f\x8b\xdb\x36\xfd\x40\xfb\x00\x8e\x91\x3f\x26\x8f\xc9\xcf\x00\x00\x00\xff\xff\xa1\xae\x0d\x2c\x6e\x06\x00\x00" +var _epochAdminReset_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x6f\xdb\x3a\x10\xbc\xeb\x57\x2c\x7c\xc8\xb3\x11\x47\x7e\x01\x1e\xde\xc1\x68\x1b\xa4\xb6\x8b\x06\x3d\x34\xad\xd3\x5c\x8a\x1e\x56\xd2\x5a\x22\x2c\x91\x02\x77\x19\xc7\x28\xf2\xdf\x0b\x92\xfe\x52\xab\x26\xf1\xc9\x24\x67\x86\xc3\x99\x95\x6a\x5a\x63\x05\x3e\xd4\x66\xb3\x68\x4d\x5e\xc1\xca\x9a\x06\xfe\x7d\x5c\xdc\x7e\x9e\x7d\xbc\x9e\xcf\xbf\x2e\x96\xcb\xe4\x04\x74\x33\xbf\xc3\xac\xa6\xa5\xe0\x5a\xe9\x32\xa2\x07\x7f\x1e\x0c\x92\x64\x32\x81\xbb\x8a\xc0\x12\x93\x44\x69\xb1\xa8\x19\x73\x51\x46\x03\xe9\x82\x41\x2a\x82\xdc\x59\x4b\x5a\x80\x02\x44\xe9\xb0\x79\xb4\xc3\x0d\x5a\x81\xdc\x68\xb1\x98\x8b\x17\x45\x5d\x40\x46\xa5\xd2\x0c\x08\x9a\x36\x3b\xe6\x46\x49\x15\xb8\xa5\x7a\x20\xed\x19\x2b\x55\x3a\x8b\xfe\xb6\x34\x38\x39\x62\xb1\xde\xe0\x96\xa1\x42\xf6\x82\xc1\x85\x71\x5a\xc8\xee\xdd\x84\xbb\x67\x71\xef\xfc\x32\xd2\x4f\xdd\x33\xe9\x82\x2c\x34\x8e\x05\x5a\x6b\x1e\x54\x41\x41\xc6\xcb\xf5\x48\xc0\x30\xa3\x95\xb1\x11\x13\x02\x01\xc1\x35\x31\xb4\x35\xe6\x34\x02\xf4\x4f\x61\x5c\x91\x6c\xa1\xa1\xbc\x42\xad\xb8\x49\x93\xc9\xc4\xeb\xcd\x9d\xf5\x49\x6b\x92\x8d\xb1\x6b\xe0\xd6\xd8\x35\x8f\x83\x54\x66\x8c\xb0\x58\x6c\x5b\x2a\xbc\x0f\x31\xb9\xa9\x81\x05\x85\x40\xb1\x0f\x33\x26\x14\xa3\x1c\xf6\x3e\x6e\x34\xde\x87\x7a\xd2\x94\x62\x70\x4c\x05\x88\x01\xef\xa6\x8c\xce\x63\x78\xfb\xa8\x5e\x51\x55\x98\x8e\xbe\x3c\xc4\xf4\xba\x81\x73\xb8\x1c\x8d\x81\x0d\x48\x85\x02\x4a\xfe\x61\xaf\xc7\x8a\xc5\x8f\x48\xa8\x78\xdf\xd8\x33\x6f\x4f\xe3\xec\x29\xee\x76\x56\x19\x57\x17\x60\x74\xbd\x85\x8c\xe2\xfb\x0e\x43\x63\x9c\xb4\x4e\xc0\xac\xba\xda\xe0\x44\xd5\x4a\xb6\x53\xaf\x08\x61\xb5\x4b\x21\x84\x75\x21\x8f\x17\x68\x4b\x4e\x92\x93\x8b\xfa\x1e\x36\x85\x6f\x37\x5a\xfe\xff\x6f\x9c\xc0\xc9\xcf\xa2\x2e\x4c\xb3\x34\xce\xe6\x34\x85\xa5\xf8\x9e\xbb\x08\x16\xb4\x72\xaf\x68\xd3\x2f\xc0\xf1\x63\x5b\xe8\xe2\xef\x18\xea\x1e\x8e\xe0\x67\x12\xce\x5b\x4b\x2d\x5a\x1a\xb2\x2a\xb5\x37\x88\x4e\xaa\xe1\x7b\x63\xad\xd9\xdc\x63\xed\x68\x04\x67\xd7\x79\xe8\xda\x53\xf6\x6a\x35\xed\xbe\xd4\xeb\xa2\x51\x1a\xde\x42\xa4\xa7\x2c\xc6\x62\x49\x69\x16\x04\xde\x9c\x1d\xa6\x22\x0d\xc0\x77\x43\x3f\x0a\xd3\xe3\xb0\xa4\xe8\xb7\x97\x91\x75\x8b\x52\x8d\x3a\xa6\xaf\xae\xa0\x45\xad\xf2\xe1\x60\x16\x4a\xd3\x46\x20\x4a\x43\x45\x68\x25\x23\x94\x38\x5d\xbb\x8b\xa1\x45\xa9\x06\xa3\xe4\xa0\x72\x34\x99\x1e\xe7\xba\xbf\x9a\x9e\xcd\x6e\x84\xbf\xff\xba\xbd\x9d\xae\x9e\xe7\x9d\xd6\x79\xf8\xfb\x32\xa5\x53\x71\x77\xfd\x02\xf9\xd0\x3d\xbd\x0a\x9e\x9b\xba\xa6\x5c\x8c\x9d\xd5\x8e\x85\x2c\x4f\xe1\xfb\x8f\x97\x38\x11\xfa\x65\xf6\x1a\x70\xb1\x2e\x6f\x5d\xf6\x89\xb6\x01\x1c\x2b\x7f\x4a\x9e\x92\x5f\x01\x00\x00\xff\xff\x25\xdb\x46\xaf\x85\x06\x00\x00" func epochAdminReset_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1230,11 +1230,11 @@ func epochAdminReset_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/reset_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3e, 0x9, 0xe8, 0x26, 0xed, 0xb5, 0xeb, 0xef, 0xce, 0x12, 0xee, 0xc1, 0xb6, 0x9e, 0xc1, 0x22, 0x82, 0xe1, 0x6e, 0x76, 0x7e, 0xa7, 0x67, 0xcb, 0x52, 0xaf, 0x29, 0xa1, 0x2f, 0xe5, 0x25, 0x14}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0xb9, 0x7, 0xec, 0x44, 0xde, 0x7e, 0xdb, 0x58, 0xd6, 0x54, 0x2a, 0x28, 0x85, 0xc0, 0x91, 0xd7, 0xcf, 0x68, 0x49, 0x9d, 0xf4, 0xb6, 0x5a, 0x1, 0x3c, 0x91, 0x48, 0x42, 0x77, 0xd2, 0xc9}} return a, nil } -var _epochAdminSet_automatic_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\x25\x87\xe2\x5c\x4c\xcf\xa6\x6d\x50\x13\x97\xde\x1a\xe2\x2f\xd8\x48\x6a\x2c\x90\xb5\x62\xbd\xc2\x85\x92\x7f\x2f\x8a\xa8\x73\x69\xe7\x28\x66\x46\x6f\xd6\x4f\x89\x58\xe0\x2d\xd0\xd2\x27\x32\x23\x7c\x32\x4d\xf0\xf8\xd5\x1f\x3f\xf6\xef\xfa\x70\x38\xf5\xc3\xa0\x94\x30\xc6\x19\x8d\x78\x8a\x0d\x66\xa1\x09\xc5\x9b\x93\x5b\x90\xed\xdc\x47\x3c\x07\x67\x3b\x78\x25\x0a\x5b\xf8\x56\x00\x00\x89\x5d\x42\x76\xcd\xec\x2f\xd1\x71\x07\x3a\xcb\xa8\x8d\xa1\x1c\xe5\xd7\x52\x14\x9c\x80\x2b\xdf\x6a\x3b\xf9\x08\xcf\x50\xfd\xed\x99\x98\x69\x79\x7a\x58\xb1\xda\x9b\xe1\xa5\x29\x74\xdd\x9d\xb6\xc5\xf2\x3c\x08\x31\x5e\xdc\x11\x65\xdc\xae\xd5\x45\xbb\x1d\x24\x8c\xde\x34\x9b\x3d\xe5\x60\x21\x92\x40\xad\x86\x5b\xb0\x8e\x9d\x6b\x1c\x12\xca\xb8\xd9\xaa\xb5\xe1\x0e\xd6\xe6\x64\x51\x9c\xfe\x7b\xf9\x7f\x17\xa9\x2c\x57\x75\xfd\x09\x00\x00\xff\xff\xac\x8e\x3a\x7a\x64\x01\x00\x00" +var _epochAdminSet_automatic_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xc1\x6a\xc3\x30\x0c\x86\xef\x79\x0a\xd1\x43\x49\x2e\x61\xe7\xb0\xad\xa4\x6d\xc6\x6e\x2b\x0d\xec\xae\x3a\x5a\x63\x70\x2c\xa3\xc8\x64\x30\xfa\xee\x23\xf1\x96\x5e\x36\x1d\x8d\xbf\x5f\x9f\x7e\x3b\x04\x16\x85\x17\xc7\x53\x13\xd8\xf4\xf0\x21\x3c\xc0\xc3\x67\x73\x7a\x3b\xbc\xd6\xc7\xe3\xb9\x69\xdb\x2c\x53\x41\x3f\xa2\x51\xcb\x3e\xc7\xa8\x3c\xa0\x5a\x73\xa6\x09\xa5\x1b\x1b\x8f\x17\x47\x5d\x05\x7b\x66\x57\xc0\x57\x06\x00\x10\x84\x02\x0a\xe5\xa3\xbd\x7a\x92\x0a\x30\x6a\x9f\xef\x59\x84\xa7\x77\x74\x91\x0a\xd8\xd6\xc6\x70\xf4\xfa\x4b\xcc\xe3\x48\x81\x66\x8b\xba\x1b\xac\x87\x27\x48\x78\x39\x2a\x0b\x5e\xa9\xbc\x2c\x01\x8f\xdb\xd5\xb6\x5c\x3e\x3e\xe7\xb3\x74\x75\x3f\xa2\xc4\xf9\xb9\x4d\xd4\x09\xb5\x2f\xd6\x15\xf3\xec\x76\x10\xd0\x5b\x93\x6f\x0e\x1c\x5d\x07\x9e\x15\x52\x34\x2c\x60\xea\xe0\x67\x29\x04\xd4\x7e\x53\x64\x6b\xc2\x5d\xb0\x8c\xa1\x43\xa5\xfa\xef\x42\xfe\x2b\x2a\xb9\xdc\xb2\xdb\x77\x00\x00\x00\xff\xff\x6c\xc1\x14\x1d\x7b\x01\x00\x00" func epochAdminSet_automatic_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -1250,11 +1250,11 @@ func epochAdminSet_automatic_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/set_automatic_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x79, 0x9, 0x8e, 0xe5, 0x32, 0xcb, 0x3e, 0x61, 0xd5, 0x8a, 0x3c, 0xd2, 0xdb, 0x86, 0x84, 0x19, 0x2c, 0xb6, 0x67, 0x7b, 0xac, 0x61, 0x5f, 0x6, 0x64, 0xc2, 0xd, 0x5a, 0x24, 0x94, 0x6b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0xc0, 0x50, 0xf3, 0xab, 0x50, 0x1c, 0x5d, 0x25, 0xd6, 0x2f, 0xe9, 0x5a, 0x9a, 0x47, 0xed, 0xfd, 0xa2, 0xba, 0xbd, 0xdb, 0x21, 0x58, 0x25, 0x99, 0xf8, 0x69, 0xde, 0x64, 0x59, 0x1c, 0x3c}} return a, nil } -var _epochAdminSet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xcf\x8a\xdb\x30\x10\x87\xef\x7e\x8a\xdf\x31\x81\x50\x5f\x4a\x0f\xa1\x14\x52\x68\x4e\x85\x1e\x9a\xd2\xf3\x58\x9e\xc4\xa6\x8a\xc6\x8c\x46\x76\xbd\x4b\xde\x7d\x91\x12\x2f\xd9\xec\x65\x75\xd0\x41\xf3\xcd\x37\x7f\x54\xd5\x75\x8d\xdf\x34\x72\x04\x05\xd0\x59\x52\x30\x98\x20\x9a\x28\x9d\x18\xd6\x91\x41\x79\x50\x8e\x9c\x23\x1d\xdf\xa0\x92\x28\x47\x34\x12\x52\x84\xc9\x3f\x0e\xf1\x4a\x77\x34\x32\x66\x2e\x9a\x86\xd1\x24\x0d\xdc\x16\xfc\xd0\xf5\x71\xa9\xd1\x47\xc4\xd4\x98\x92\x33\x6e\x71\x54\x39\x17\xb9\x89\x91\x47\x4c\xc3\xe0\xe7\xac\xdf\xff\xfc\xf5\xb7\xe4\x4e\x1d\x07\x1e\x59\x41\x08\x3c\xdd\x38\xe5\x89\xb4\xbd\x77\x3a\xf2\x2e\x79\xca\xce\x4c\xcf\xe0\x41\x5c\x57\x0c\x0d\x3b\x4a\x31\x8f\xc4\x33\x48\x19\x41\x0c\x67\xa6\xb0\x74\x4a\x18\x48\x2d\x57\x7d\xec\xa4\xe4\x97\xeb\xc7\xc8\xc1\x12\x79\x3f\x6f\x40\xde\xbf\x1d\x7f\xea\xf3\xcb\x32\x32\x28\xb4\x77\x0b\x7b\x8d\x3e\xb1\x4a\x55\x99\x52\x88\xe4\xac\x97\xb0\x2a\x92\x43\x76\xec\x0a\xba\xc5\x9f\x7d\xff\xff\xcb\xe7\x35\x9e\x2b\x00\x18\x94\x07\x52\x5e\xc5\xfe\x14\x58\xb7\xd8\x25\xeb\x76\xce\x65\x74\x41\xf2\xb9\x86\x3f\x79\xa1\xf6\xeb\x55\xf0\x6d\x95\x17\xbb\x45\x7d\xfb\xce\x7a\xef\x65\xfa\xfe\x50\x6d\xfd\x28\x88\x34\xf2\xbb\x9e\x36\x30\xf9\x90\xe8\x52\x5d\x5e\x02\x00\x00\xff\xff\x15\x31\xd0\x69\x55\x02\x00\x00" +var _epochAdminSet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x31\xcb\xdb\x30\x10\x86\x77\xff\x8a\x77\x2a\x0e\x84\x78\x29\x1d\x42\x29\xa4\xd0\x4c\x85\x0e\x49\xe9\x7c\x96\x2f\xb1\xa9\x22\x99\xd3\xc9\xae\x5b\xf2\xdf\x8b\x64\xbb\xa4\xf9\xf8\xe0\xf3\xe0\x41\xf7\xdc\xa3\xf7\x74\x45\x55\x55\x38\xd1\xc0\x01\xe4\x40\x37\x1f\x9d\x42\x3d\x82\x7a\xa1\x2b\x43\x5b\x52\x08\xf7\xc2\x81\x53\xa5\xe5\x05\xca\x8d\xfe\x82\xda\xbb\x18\xa0\xfe\x27\xbb\x30\xd3\x2d\x0d\x8c\x89\xb3\xa6\x66\xd4\x51\x1c\x37\x19\x3f\xb7\x5d\x58\xef\xe8\x02\x42\xac\x55\xc8\x28\x37\xb8\x88\xbf\x65\xb9\x7a\x25\x8b\x10\xfb\xde\x4e\x49\x7f\xfc\xfa\xed\x47\xee\x1d\x5b\x76\x3c\xb0\x80\xe0\x78\x5c\x38\xe1\x91\xa4\x79\x74\x1a\xb2\x26\x5a\x4a\xce\x44\x4f\xe0\xde\x9b\x36\x1b\x6a\x36\x14\x43\x1a\x89\x27\x90\x30\x9c\x57\xdc\x98\xdc\x9a\x94\xd0\x93\x68\xba\xf5\x39\x49\xee\xcf\xbf\x2f\x03\x3b\x8d\x64\xed\xb4\x05\x59\xfb\xff\xf8\x63\x97\x4e\xd6\x91\x41\xae\x79\x78\xb0\x7f\xd5\xdf\x2c\xbe\x28\x54\xc8\x05\x32\xda\x79\x57\x66\xc9\x39\x39\x0e\x19\xdd\xe3\xfb\xb1\xfb\xf5\xe1\xfd\x06\x7f\x0a\x00\xe8\x85\x7b\x12\x2e\x43\x77\x75\x2c\x7b\x50\xd4\xb6\x3c\xcd\x1b\xda\xe0\xdd\xc1\x98\xd4\xb5\xd2\xe9\x9b\xc9\xdd\xb2\xc5\x9d\xf5\xd4\x7c\x9c\x9d\x9f\xca\xf4\xd6\x7b\x54\x4b\xad\x3a\x5a\x3f\x7e\x7e\x0a\xb0\x79\x4d\x14\x68\xe0\x17\x71\xb7\x50\xff\x26\xe1\xbd\xb8\xff\x0d\x00\x00\xff\xff\x6b\x0e\xc9\x02\x70\x02\x00\x00" func epochAdminSet_bonus_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1270,11 +1270,11 @@ func epochAdminSet_bonus_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/set_bonus_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x20, 0x8f, 0x73, 0xe4, 0xb3, 0x15, 0xd3, 0xb1, 0x4a, 0x58, 0xdb, 0xc7, 0xc6, 0x1a, 0xca, 0x74, 0x57, 0xfc, 0xb2, 0x4c, 0x2d, 0x98, 0xfb, 0x8c, 0xc1, 0x95, 0xfe, 0xf4, 0xf6, 0xd8, 0x29, 0xc4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0x59, 0x6d, 0x99, 0x1b, 0x9b, 0xe3, 0x7f, 0xac, 0xcc, 0x5b, 0x8e, 0xfc, 0xda, 0x10, 0xa3, 0xe1, 0x8e, 0x81, 0xf0, 0xde, 0xd9, 0x1e, 0x8c, 0x3c, 0xa0, 0x15, 0x29, 0xfc, 0x2f, 0x7f, 0xc1}} return a, nil } -var _epochAdminUpdate_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xcf\x4a\xc4\x30\x10\xc6\xef\x7d\x8a\x61\x0f\xd2\x5e\x8a\x5e\x3c\x14\x75\x29\xdd\x8a\x5e\x74\xb1\xf8\x00\x31\x1d\xb7\x81\x34\x13\x26\x13\x2a\xc8\xbe\xbb\xa4\xc1\x2d\xec\x1c\xc3\xf7\xe7\xf7\xc5\xcc\x9e\x58\xe0\xd9\xd2\xd2\x7b\xd2\x13\x7c\x33\xcd\x70\xfb\xd3\x1f\xdf\xbb\x97\xf6\x70\xf8\xe8\x87\xa1\x28\x84\x95\x0b\x4a\x8b\x21\x57\x3a\x5c\xde\xe2\xdc\xd9\x18\x04\x39\x34\xf0\xf9\xea\xe4\xee\xbe\x82\xdf\x02\x00\xc0\x33\x7a\xc5\x58\x06\x73\x72\xc8\x0d\xb4\x51\xa6\x56\x6b\x8a\x4e\x92\x64\xd5\xa4\xb3\x28\x80\xa9\xb0\x1d\x67\xe3\xe0\x11\xb2\xa1\xfe\x22\x66\x5a\x1e\x6e\x2e\x40\xf5\x2a\x78\x2a\x13\x57\xb3\x71\xd6\x2a\x3d\x0f\x42\xac\x4e\x78\x54\x32\x55\x97\xe8\x74\xfb\x3d\x78\xe5\x8c\x2e\x77\x1d\x45\x3b\x82\x23\x81\x1c\x0d\xab\x31\xcf\x0c\xd9\x0e\x5e\xc9\xb4\xab\x36\xb8\x0d\xac\x8e\x7e\x54\x82\x69\x30\x59\x8b\x5a\x88\xff\x97\x5f\x7d\x44\xee\x3f\x17\xe7\xbf\x00\x00\x00\xff\xff\x03\xa4\x2c\x1e\x52\x01\x00\x00" +var _epochAdminUpdate_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xc1\x4a\xc4\x30\x10\x86\xef\x7d\x8a\x61\x0f\xd2\x5e\x8a\x5e\x3c\x14\x75\x59\xba\x15\xbd\xe8\x62\xf1\x01\xc6\x76\xdc\x06\xd2\x4c\x98\x4c\xa9\x20\xfb\xee\x92\xc6\xdd\xc2\xce\x31\xf9\x27\xdf\xf7\xc7\x8c\x9e\x45\xe1\xd9\xf2\xdc\x78\xee\x06\xf8\x16\x1e\xe1\xf6\xa7\x39\xbc\xd7\x2f\xbb\xfd\xfe\xa3\x69\xdb\x2c\x53\x41\x17\xb0\x53\xc3\x2e\x77\x34\xbf\x4d\x63\x6d\xa7\xa0\x24\xa1\x82\xcf\x57\xa7\x77\xf7\x05\xfc\x66\x00\x00\x5e\xc8\xa3\x50\x1e\xcc\xd1\x91\x54\x10\x94\x05\x8f\x54\xc6\xfb\x25\x10\xc7\x92\x02\x45\xda\xae\x1f\x8d\x83\x47\x48\xe9\xf2\x1c\xfe\x62\x11\x9e\x1f\x6e\x2e\x56\xe5\x12\x7c\xca\xa3\x5c\xb5\xca\x96\x18\x8f\xdb\xb4\x75\x40\x1d\x8a\x0b\x22\xce\x76\x0b\x1e\x9d\xe9\xf2\x4d\xcd\x93\xed\xc1\xb1\x42\x7a\x1a\x96\xc5\xd4\xf5\x1f\x0a\x1e\x75\xd8\x14\xab\xe4\x2a\x58\x4e\xbe\x47\xa5\xd8\x9a\xad\xa5\x4e\x59\xce\xf5\xaf\x7e\x23\xf1\x4f\xd9\xe9\x2f\x00\x00\xff\xff\xe5\x8e\x5f\xc1\x57\x01\x00\x00" func epochAdminUpdate_clustersCdcBytes() ([]byte, error) { return bindataRead( @@ -1290,11 +1290,11 @@ func epochAdminUpdate_clustersCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_clusters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0x82, 0xa2, 0x21, 0x78, 0x90, 0x2d, 0xd5, 0x9d, 0xdb, 0x39, 0x32, 0x8a, 0x6b, 0x70, 0xe, 0xed, 0xcc, 0x2a, 0xd2, 0xba, 0x87, 0xd4, 0xdb, 0x78, 0xa5, 0x5a, 0x3a, 0xb7, 0xf5, 0xe9, 0x5a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0x6a, 0xa7, 0x9c, 0xe3, 0x1f, 0xbb, 0x47, 0x2d, 0x66, 0xa4, 0xcf, 0x32, 0xc0, 0x9, 0x79, 0x88, 0xbd, 0x25, 0x10, 0x92, 0x62, 0x53, 0xc1, 0x1d, 0x2, 0x4e, 0xfd, 0xc5, 0x13, 0x35, 0xb6}} return a, nil } -var _epochAdminUpdate_dkg_phase_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\x4d\x4b\xc4\x30\x10\x86\xef\xfd\x15\xc3\x1e\xa4\xbd\x14\x0f\xe2\xa1\xa8\x4b\xd9\xd6\x0f\x3c\x58\x2c\x7a\x1f\xd3\x71\x13\x68\x33\x21\x99\x52\x41\xf6\xbf\x4b\x36\xd8\xb2\x73\x1c\xde\x8f\xe7\x35\x93\x63\x2f\xf0\x38\xf2\xd2\x3a\x56\x1a\xbe\x3d\x4f\x70\xfd\xd3\x76\x6f\x87\xe7\xba\x69\xde\xdb\xbe\xcf\x32\xf1\x68\x03\x2a\x31\x6c\x73\x4b\x4b\xa7\x31\xd0\xa7\xa1\x25\x54\xf0\xf1\x62\xe5\xf6\xa6\x80\xdf\x0c\x00\xc0\x79\x72\xe8\x29\x0f\xe6\x68\xc9\x57\x50\xcf\xa2\x6b\xa5\x78\xb6\xf2\x2f\x89\x37\x92\x00\xc5\xba\x7a\x98\x8c\x85\x7b\x48\xfa\xf2\x8b\xbd\xe7\xe5\xee\x6a\xc5\x29\xcf\x82\x87\x3c\x52\x55\x1b\x65\x89\xf1\xdd\x0b\x7b\x3c\x52\x87\xa2\x8b\x35\x3a\xde\x7e\x0f\x0e\xad\x51\xf9\xee\xc0\xf3\x38\x80\x65\x81\x14\x0d\x67\x63\x1a\x19\x92\x1d\x1c\x8a\xde\x15\xd9\x9a\xb0\x81\x95\xb3\x1b\x50\xa8\x79\x7d\xda\x16\x5f\xee\x4f\xbd\xa7\xec\xf4\x17\x00\x00\xff\xff\xe0\xf6\x16\x5e\x48\x01\x00\x00" +var _epochAdminUpdate_dkg_phase_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\xcf\x4a\xc4\x30\x10\x87\xef\x79\x8a\x61\x0f\xd2\x5e\x82\x07\xf1\x50\xd4\x65\xd9\xd6\x3f\x78\xb0\x58\xf4\x3e\xb6\xe3\x36\xd0\x66\x42\x32\x4b\x05\xd9\x77\x97\x6c\x6c\xcb\xce\x31\xf9\xcd\x7c\xdf\x8c\x19\x1d\x7b\x81\xc7\x81\xa7\xca\x71\xdb\xc3\xb7\xe7\x11\xae\x7f\xaa\xfa\x6d\xff\xbc\x2b\xcb\xf7\xaa\x69\x94\x12\x8f\x36\x60\x2b\x86\x6d\x66\x69\xaa\x7b\x0c\xf4\x69\x68\x0a\x05\x7c\xbc\x58\xb9\xbd\xc9\xe1\x57\x01\x00\x38\x4f\x0e\x3d\x65\xc1\x1c\x2c\xf9\x02\x82\xb0\xc7\x03\xe9\xf9\x3f\xd6\x40\x02\x14\x59\xbb\x6e\x34\x16\xee\x21\x85\xf5\x9c\xfd\x62\xef\x79\xba\xbb\x5a\x9c\xf4\x39\xf8\x90\x45\xb5\x62\x55\xd5\x18\x9f\x9b\xd4\x55\xa3\xf4\xf9\x82\x88\xb5\xdd\x82\x43\x6b\xda\x6c\xb3\xe7\xe3\xd0\x81\x65\x81\x34\x1a\xce\x8d\x69\xd3\x7f\x28\x38\x94\x7e\x93\xab\x65\xc2\x2a\xa8\x8f\xae\x43\xa1\xf2\xf5\x69\x5d\xfb\xf2\x08\x89\x7b\x52\xa7\xbf\x00\x00\x00\xff\xff\x6e\xfe\x1d\x5f\x4d\x01\x00\x00" func epochAdminUpdate_dkg_phase_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1310,11 +1310,11 @@ func epochAdminUpdate_dkg_phase_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_dkg_phase_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xff, 0x12, 0x5a, 0x44, 0xb8, 0xd5, 0xb8, 0x5, 0x2a, 0xd0, 0x45, 0x97, 0xa7, 0x29, 0x2a, 0x1a, 0x76, 0xdd, 0x50, 0x3e, 0x12, 0x2a, 0xfc, 0xbe, 0x96, 0x57, 0xce, 0x5, 0x83, 0xbd, 0xfa, 0x43}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x48, 0xd5, 0x13, 0x99, 0xde, 0x25, 0xd0, 0xd1, 0x6f, 0x14, 0x2b, 0x27, 0x33, 0xd8, 0x85, 0xd8, 0x82, 0xe1, 0x50, 0x0, 0x40, 0x9f, 0xd0, 0x93, 0x66, 0x12, 0x47, 0x74, 0x57, 0xd1, 0xce, 0x82}} return a, nil } -var _epochAdminUpdate_epoch_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x94\x41\x6f\xdb\x38\x10\x85\xef\xfe\x15\x6f\x73\x58\xd8\x80\x57\xd9\xc3\x62\x0f\x46\x9b\xc0\x88\xdd\x24\x48\x9b\x04\x75\x9a\x9e\xc7\xd2\x48\x22\x22\x91\x02\x39\x8a\x0a\x14\xf9\xef\x05\x49\xdb\x92\x8c\xa2\x41\x50\x54\x07\x1f\x68\xce\x7b\x6f\x3e\x92\xa3\xea\xc6\x58\xc1\x87\xca\x74\xeb\xc6\xa4\x25\x72\x6b\x6a\xfc\xfb\x6d\x7d\x7f\x77\x71\xb5\x5c\xad\x3e\xaf\x37\x9b\xc9\x44\x2c\x69\x47\xa9\x28\xa3\xa7\xd9\x53\x71\x5f\x92\xe3\x8f\xac\x17\xf8\x72\xad\xe5\xff\xff\xe6\x70\x42\x4f\x4a\x17\xa3\x35\xf6\x7a\x83\x95\x19\xbe\x4f\x00\xa0\xb1\xdc\x90\xe5\xa9\x53\x85\x66\xbb\xc0\xb2\x95\x72\x99\xa6\xa6\xd5\xb2\xdf\xe2\xbf\x8a\x25\x4a\x2c\xb3\x5a\x69\xbc\x47\xdc\x9f\x6c\x8d\xb5\xa6\x7b\xf7\xf7\x21\x72\x12\x36\x9c\x4d\x7d\xf2\x45\xdf\x49\x42\x7e\x79\x23\xc6\x52\xc1\xf7\x24\xe5\xec\x20\xed\xbf\xf3\x73\x34\xa4\x55\x3a\x3d\xb9\x30\x6d\x95\x41\x1b\x41\x94\x46\x28\x8c\x20\x5c\x2c\x47\x43\x52\x9e\xcc\x26\x07\x05\x95\xe3\xaf\xde\x49\xb9\x47\xaa\x54\x16\xb0\x5c\x18\x9d\xab\xa2\xb5\x14\x60\xf5\x5c\xe6\x18\x80\xeb\xe1\x0c\x3b\x0e\x70\x62\xa6\x5b\xee\x10\xcf\xe3\x51\x71\xe7\x50\xb7\x4e\xb0\x65\x14\x96\x49\xd8\x42\x4a\xd2\x90\x92\xe1\xda\x1a\x26\xdf\xf3\x07\xe9\x0c\xab\x9b\x4b\x04\x23\x3c\xfb\xda\x93\xbe\xef\x97\xbe\x81\xd3\xd3\x53\xac\x5a\x86\x98\x20\x93\x53\x2a\x5e\x74\x87\xfc\xf7\x5d\x47\x46\x1d\x47\xa9\xb6\xc9\x48\x38\x28\x44\x9b\x34\xc0\x82\x8a\xaa\xa9\xb1\x96\x53\x81\xb1\x19\xdb\x04\x0f\xa5\x72\x78\xf6\x60\x03\x4b\x28\x87\xcc\x68\x86\xd1\x60\x4a\xcb\x91\xc4\xc8\x2e\xda\x24\xb8\x32\x5d\xd0\xd5\x6d\xbd\x65\xeb\x03\x87\x68\x7b\xbb\x58\xaf\x1c\xb6\xec\x9b\x88\x55\x19\x32\x16\xb6\xb5\xd2\xec\xc2\xae\x10\x66\x24\xaf\x34\xba\x52\xa5\xa5\xd7\x0d\x9c\xae\x75\x38\xaa\xf9\x60\x61\x13\xc9\x2c\xdb\xf0\x66\xe6\x81\x50\xff\xef\xea\xe6\x32\xa2\xd2\xcc\x99\x3f\x82\x2d\x1f\xec\x5d\x9b\x96\xf1\x24\xbc\xfb\xa0\xfd\x86\x9c\x63\x97\x8c\xa2\xfc\x03\xa5\x53\xcb\xe4\x7c\x03\x47\x71\x16\x7b\xdc\x47\xeb\xd8\x72\x6e\x2c\xbf\x39\xec\x91\x71\xc6\x6f\x30\x1e\x3b\x04\x83\x9f\xe1\x78\x25\xd9\x28\xc1\xed\xdd\xc3\x7a\x81\xaf\x0c\x72\xae\xad\x19\x25\x5b\xee\xb9\xf9\xdb\xd8\x04\xcd\x8a\x75\x21\xe1\x98\x6b\x4f\xd6\xd5\x54\x55\xa3\xab\xbc\xbb\xc3\xbb\x7d\xb9\xb1\xa0\xaa\x42\x63\x84\xb5\x28\xaa\x76\x17\x6c\xf7\xa0\x07\xfc\x55\x7e\x78\xc4\x38\x1b\x8c\x9d\x82\x25\xce\x80\x4f\x2c\x94\x91\xd0\x74\x96\x1c\x1f\xc1\xd1\xa3\xef\xc7\x5c\x12\xd1\x85\x5d\xa1\x62\x7a\x18\x14\xbf\xae\xd8\x21\x8a\x35\xfd\xd4\x79\xa5\x6a\x4f\x3e\x96\x0d\x06\xd4\x60\x66\x80\x2b\xc7\xaf\x05\xfe\x63\xf6\x6f\xc7\xf3\x32\x89\xbf\x2f\x3f\x02\x00\x00\xff\xff\xb6\x8b\x7d\x6b\xdb\x06\x00\x00" +var _epochAdminUpdate_epoch_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x94\xcd\x6e\xdb\x3a\x10\x85\xf7\x7e\x8a\x73\xb3\xb8\xb0\x01\x57\xe9\xa2\xe8\xc2\x68\x13\x04\xb1\x9b\x04\x69\x93\xa0\x4e\xd3\xf5\x58\x1c\x49\x44\x24\x52\x20\xa9\xa8\x40\x91\x77\x2f\x48\xca\xfa\x31\x8a\x06\x41\x51\x2f\xbc\xa0\x66\xce\x99\xf9\x86\x1c\x59\xd5\xda\x38\x7c\x2a\x75\xbb\xa9\x75\x5a\x20\x33\xba\xc2\xdb\x1f\x9b\xbb\xdb\xf3\xcb\xb3\xf5\xfa\xeb\x66\xbb\x9d\xcd\x9c\x21\x65\x29\x75\x52\xab\xb9\x78\xcc\xef\x0a\xb2\xfc\x99\xd5\x0a\xdf\xae\x94\x7b\xff\x6e\x09\xeb\xe8\x51\xaa\x7c\x72\xc6\x5e\x6f\x74\xb2\xc0\xcf\x19\x00\xd4\x86\x6b\x32\x3c\xb7\x32\x57\x6c\x56\xb0\x4e\x1b\xca\x39\xd9\x7f\xf7\xbf\x92\x5d\xcc\x3f\x13\x95\x54\xf8\x88\x18\x9c\xec\x63\x77\xda\x18\xdd\x7e\xf8\xbf\xaf\x3b\x09\x81\x27\x73\x5f\xfe\x6a\x68\x27\x21\x7f\xbc\x8d\x59\x77\xe4\x8a\x45\x6f\xe1\x7f\xa7\xa7\xa8\x49\xc9\x74\x7e\x74\xae\x9b\x52\x40\x69\x87\x28\x8d\x90\x18\x69\x74\xa6\xa8\xc9\x15\x47\x8b\x59\xaf\x20\x33\xfc\x37\x38\x49\xfb\x40\xa5\x14\x81\xcd\xb9\x56\x99\xcc\x1b\x43\x81\xd8\x00\x67\x89\x11\xbd\x81\xd0\xb8\xf3\x40\x28\xd6\x74\xc3\x2d\xe2\x50\x1e\x24\xb7\x16\x55\x63\x1d\x76\x8c\xdc\x30\x39\x36\x70\x05\x29\xb8\x82\x61\x9b\x0a\x3a\xdb\x0f\x01\xa4\x04\xd6\xd7\x17\x08\x46\x78\xf2\xb9\x47\x43\xdf\xcf\x43\x03\xc7\xc7\xc7\x58\x37\x0c\xa7\x83\x4c\x46\xa9\xf3\xa2\x1d\xfa\xbf\x77\x9d\x18\xb5\x1c\xa5\x9a\x5a\x90\xe3\xa0\x10\x6d\xd2\x00\x0b\x32\xaa\xa6\xda\x18\x4e\x1d\xb4\x11\x6c\x12\xdc\x17\xd2\xe2\xc9\x83\x0d\x2c\x21\x2d\x84\x56\x0c\xad\xc0\x94\x16\x13\x89\x89\x5d\xb4\x49\x70\xa9\xdb\xa0\xab\x9a\x6a\xc7\xc6\x17\x1c\x4a\xdb\xdb\xc5\x7c\x69\xb1\x63\xdf\x44\xcc\x12\x10\xec\xd8\x54\x52\xb1\x0d\x51\xa1\x98\x89\xbc\x54\x68\x0b\x99\x16\x5e\x37\x70\xba\x52\x61\x54\xcb\xd1\xc1\x36\x92\x39\x6b\xc2\xc3\x59\x06\x42\xc3\xd7\xf5\xf5\x45\x44\xa5\x98\x85\x1f\xc1\x8e\x7b\x7b\xdb\xa4\x45\x9c\x84\x77\x1f\xb5\x5f\x93\xb5\x6c\x93\x49\x29\x6f\x20\x55\x6a\x98\xac\x6f\xe0\xa0\x9c\xd5\x1e\xf7\xc1\x39\x76\x9c\x69\xc3\xaf\x2e\xf6\xc0\x58\xf0\x2b\x8c\xa7\x0e\xc1\xe0\x77\x38\x5e\xa8\x6c\x52\xc1\xcd\xed\xfd\x66\x85\xef\x0c\xb2\xb6\xa9\x18\x05\x1b\x1e\xb8\xf9\xdb\x58\x07\xcd\x92\x55\xee\xc2\x98\x2b\x4f\xd6\x56\x54\x96\x93\xab\xdc\xdd\xe1\x2e\x2e\xd3\x06\x54\x96\xa8\xb5\x63\xe5\x24\x95\xdd\x05\xeb\x1e\xf4\x88\xbf\xcc\xfa\x47\x8c\x93\xd1\xda\xc9\xd9\xc5\x1d\xf0\x85\x1d\x09\x72\x34\x5f\x24\x87\x23\x38\x78\xf4\xc3\xba\x4b\x22\xba\x10\x15\x32\xe6\xfd\xa2\xf8\x73\x46\x87\x28\xe6\x0c\x5b\xe7\x85\xac\x3d\xf9\x98\x36\x5a\x50\xa3\x9d\x01\x2e\x2d\xbf\x54\xf0\x3f\xb3\x7f\x3d\x9e\xe7\x59\xfc\x7f\xfe\x15\x00\x00\xff\xff\x25\xcd\x43\x1b\xe0\x06\x00\x00" func epochAdminUpdate_epoch_configCdcBytes() ([]byte, error) { return bindataRead( @@ -1330,11 +1330,11 @@ func epochAdminUpdate_epoch_configCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_epoch_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0xab, 0xdb, 0xbd, 0xb, 0x46, 0x8f, 0x2, 0x4c, 0xe4, 0x61, 0xc1, 0x47, 0xe7, 0x37, 0x1d, 0xa2, 0xcd, 0x8e, 0xe1, 0xd7, 0x53, 0x84, 0x58, 0x17, 0x53, 0x94, 0xc1, 0xd8, 0xb1, 0x40, 0x40}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0x5b, 0x8c, 0x3b, 0xd7, 0x7f, 0x40, 0x68, 0x95, 0x1d, 0xf1, 0x20, 0x47, 0x1b, 0x53, 0xee, 0xde, 0x14, 0xcb, 0xfd, 0x24, 0xe4, 0x7, 0x33, 0xe, 0xcc, 0xab, 0xab, 0x42, 0xa5, 0x3a, 0x12}} return a, nil } -var _epochAdminUpdate_epoch_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\xcf\x4a\xf4\x30\x14\xc5\xf7\x79\x8a\xc3\x2c\x3e\xda\x4d\xf9\x16\xe2\xa2\xa8\x43\x98\xa9\xe8\xca\xc1\xa2\xfb\x98\xc6\x69\xa0\xcd\x0d\xe9\x0d\x15\x64\xde\x5d\x92\x60\x07\xbc\xab\x10\xce\x9f\xdf\xb1\xb3\xa7\xc0\x78\x9c\x68\xed\x3c\xe9\x11\x9f\x81\x66\xfc\xff\xea\x4e\x2f\x87\x27\x79\x3c\xbe\x76\x7d\x2f\x04\x07\xe5\x16\xa5\xd9\x92\xab\x9c\x59\x65\xcc\xcf\x77\x6b\xd6\xa5\xc5\xdb\xb3\xe3\xdb\x9b\x1a\xdf\x02\x00\x7c\x30\x5e\x05\x53\x2d\xf6\xec\x4c\x68\x21\x23\x8f\x52\x6b\x8a\x8e\x7f\x25\xe9\x26\xc3\x30\xa9\x50\x0e\xb3\x75\xb8\x47\xd1\x37\x1f\x14\x02\xad\x77\xff\x36\xa0\x26\x0b\x1e\xaa\xc4\xd5\x5e\x39\x1b\x95\xbe\x7b\xa6\xa0\xce\xe6\xa4\x78\xac\xb7\xe8\x74\xfb\x3d\xbc\x72\x56\x57\xbb\x03\xc5\x69\x80\x23\x46\x89\x46\x36\x96\x99\x4b\xb1\xc3\x2b\x1e\x77\xb5\xd8\x12\xae\x60\x4d\xf4\x83\x62\x93\x2b\xf3\xdc\xbf\xf3\x4b\xed\x45\x5c\x7e\x02\x00\x00\xff\xff\x31\x03\xa1\x69\x49\x01\x00\x00" +var _epochAdminUpdate_epoch_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xc1\x4a\xc4\x30\x10\x86\xef\x7d\x8a\x9f\x3d\x48\x7b\x09\x1e\xc4\x43\x51\x97\xb2\x5b\xd1\x93\x8b\x45\xef\xb1\x8d\xdb\x40\x9b\x09\xd3\x29\x15\x64\xdf\x5d\x92\xb8\x5d\xd8\x39\x85\xe4\x9f\xf9\xbe\x89\x1d\x3d\xb1\xe0\x79\xa0\xa5\xf6\xd4\xf6\xf8\x66\x1a\x71\xfb\x53\x1f\xde\x76\x2f\xd5\x7e\xff\x5e\x37\x4d\x96\x09\x6b\x37\xe9\x56\x2c\xb9\xdc\x99\xa5\x9a\xe3\xf1\xd3\x9a\x65\x2a\xf1\xf1\xea\xe4\xfe\xae\xc0\x6f\x06\x00\x9e\x8d\xd7\x6c\xf2\xc9\x1e\x9d\xe1\x12\x93\x10\xeb\xa3\x51\xe7\xf7\x50\x83\x11\x98\x40\xab\xba\xd1\x3a\x3c\x22\x85\xd5\x39\xfb\x45\xcc\xb4\x3c\xdc\xac\x56\x2a\x06\x9f\xf2\x20\x57\x5e\x64\x95\x0e\xd7\x4d\xea\x3a\x68\xe9\x8b\x15\x11\x6a\xbb\x85\xd7\xce\xb6\xf9\x66\x47\xf3\xd0\xc1\x91\x20\x8d\x46\x6c\x4c\xbb\xfe\x43\xe1\xb5\xf4\x9b\x22\x5b\x27\x5c\x04\xd5\xec\x3b\x2d\x26\x22\xe3\xce\xd7\x7f\x90\xb0\xa7\xec\xf4\x17\x00\x00\xff\xff\x6d\x14\x68\x15\x4e\x01\x00\x00" func epochAdminUpdate_epoch_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1350,11 +1350,11 @@ func epochAdminUpdate_epoch_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_epoch_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4f, 0xb9, 0x7, 0xd8, 0xff, 0x10, 0xc6, 0x15, 0x25, 0x69, 0x5, 0x27, 0x32, 0x30, 0xf3, 0x4e, 0x2f, 0x72, 0x33, 0xda, 0xfa, 0x1f, 0x2a, 0xd7, 0x5a, 0x14, 0xb2, 0x90, 0xd4, 0x9f, 0x25, 0x7b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe5, 0xa, 0x0, 0x26, 0x59, 0x5f, 0x32, 0xb, 0x4a, 0x8b, 0xe5, 0xb0, 0x1d, 0x88, 0x80, 0x8d, 0xf3, 0x67, 0xa2, 0xc2, 0x9d, 0x21, 0xa1, 0x2d, 0xd2, 0x58, 0xfb, 0xaf, 0xa6, 0xb2, 0xc3, 0x66}} return a, nil } -var _epochAdminUpdate_rewardCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\x41\x6b\xbc\x40\x0c\xc5\xef\x7e\x8a\xb0\x87\x3f\x7a\x91\xff\xa1\xf4\x20\x6d\x17\xd9\x55\x5a\x28\xac\xac\x94\xd2\x63\x3a\xa6\x3a\xa0\x93\x21\x46\xdc\x52\xf6\xbb\x97\x51\x58\xe9\x3b\x86\xf7\x5e\x7e\x89\x1d\x3c\x8b\x42\xd9\xf3\x5c\x78\x36\x1d\x7c\x09\x0f\xf0\xff\x52\x54\xa7\xc3\x73\x7e\x3c\x9e\x8b\xba\x8e\x22\x15\x74\x23\x1a\xb5\xec\x62\x47\xf3\x99\x66\x94\x26\xaf\x3e\x32\x78\x2b\xed\xe5\xfe\x2e\x81\x9f\x08\x00\xc0\x0b\x79\x14\x8a\x47\xdb\x3a\x92\x0c\xf2\x49\xbb\xdc\x18\x9e\x9c\x06\xcb\xe2\x09\xea\x49\x81\xc2\xba\xbc\x19\xac\x83\x47\x58\x03\xe9\x27\x8b\xf0\xfc\xf0\xef\x86\x93\x2e\x86\xa7\x38\x50\x65\x1b\x65\x8a\x61\x5c\x2b\x0b\xb6\x54\xa1\x76\xc9\xad\x3a\x68\xbf\x07\x8f\xce\x9a\x78\x77\xe0\xa9\x6f\xc0\xb1\xc2\x5a\x0d\x4b\x70\x3d\x72\x5c\xe3\xe0\x51\xbb\x5d\xb2\xc1\x6d\x60\xe9\xe4\x1b\x54\x2a\x5f\x4f\xef\xf5\xe4\x7d\xff\xfd\xe2\x8c\x10\x8e\x54\x91\x18\x72\x8a\x2d\xfd\x79\xc7\x4a\x71\x8d\xae\xbf\x01\x00\x00\xff\xff\x9e\x26\x8d\xcb\x56\x01\x00\x00" +var _epochAdminUpdate_rewardCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\xcf\x4a\xc3\x40\x10\xc6\xef\x79\x8a\xa1\x07\x49\x2f\xc1\x83\x78\x08\x6a\x09\x6d\x82\x82\xd0\xd0\x20\xe2\x71\x4c\xc6\x64\x21\xd9\x59\x26\x13\x52\x91\xbe\xbb\x6c\xd7\xa6\xf8\x1d\x77\xbf\x3f\xbf\x5d\x33\x38\x16\x85\xa2\xe7\x39\x77\x5c\x77\xf0\x25\x3c\xc0\xed\x31\x2f\xf7\xdb\xe7\x6c\xb7\x3b\xe4\x55\x15\x45\x2a\x68\x47\xac\xd5\xb0\x8d\x2d\xcd\x07\x9a\x51\x9a\xac\xfc\x48\xe1\xad\x30\xc7\xfb\xbb\x35\xfc\x44\x00\x00\x4e\xc8\xa1\x50\x3c\x9a\xd6\x92\xa4\x30\x2a\x0b\xb6\x94\x5c\xee\xbd\x7a\x52\x20\x3f\x95\x35\x83\xb1\xf0\x08\xc1\x9c\x5c\xbc\x9f\x2c\xc2\xf3\xc3\xcd\x82\x94\x9c\x8d\x4f\xb1\x27\x4b\xaf\xa4\x09\xfa\xe3\x2a\xa4\x4a\xd4\x6e\xbd\x4c\x78\x6d\x36\xe0\xd0\x9a\x3a\x5e\x6d\x79\xea\x1b\xb0\xac\x10\xaa\xe1\x1c\x0c\x0f\xfd\x1b\x05\x87\xda\xad\xd6\xd1\xd2\x70\x05\x4c\x26\xd7\xa0\x52\xf1\xba\x7f\xaf\x26\xe7\xfa\xef\x17\x5b\x0b\xe1\x48\x25\x49\x4d\x56\xb1\xa5\x7f\x5f\x12\x28\x4e\xd1\xe9\x37\x00\x00\xff\xff\x86\x6a\x23\x6c\x5a\x01\x00\x00" func epochAdminUpdate_rewardCdcBytes() ([]byte, error) { return bindataRead( @@ -1370,11 +1370,11 @@ func epochAdminUpdate_rewardCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_reward.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0x9b, 0x4a, 0x66, 0xb5, 0x60, 0xad, 0x5b, 0x16, 0x20, 0x4a, 0x74, 0x57, 0x86, 0x99, 0x3e, 0xa4, 0x6c, 0x68, 0xd7, 0x49, 0x3f, 0xef, 0xe2, 0x6, 0x7, 0xcc, 0x78, 0xf3, 0xe6, 0xfa, 0xd9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x44, 0xdd, 0xa0, 0x7c, 0x7, 0xda, 0x45, 0xdf, 0xd7, 0x36, 0xc, 0x8d, 0xe4, 0x79, 0x8c, 0x26, 0x6c, 0x3c, 0x58, 0xc, 0x4a, 0x2, 0x8f, 0xfb, 0x6d, 0x32, 0x97, 0xa6, 0xa1, 0xc6, 0x1f, 0xaf}} return a, nil } -var _epochAdminUpdate_staking_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xcf\x4a\xc4\x30\x10\xc6\xef\x79\x8a\x61\x0f\xd2\x5e\x8a\x07\xf1\x50\xd4\x25\xec\x56\xf4\xe4\x62\xd1\xfb\x98\xc6\x36\xd8\xce\x84\x74\x42\x05\xd9\x77\x97\x34\xd8\x05\xe7\x18\xbe\x3f\xbf\x2f\x6e\xf2\x1c\x04\x1e\x47\x5e\x1a\xcf\x66\x80\xcf\xc0\x13\x5c\x7f\x37\xa7\x97\xc3\x93\x3e\x1e\x5f\x9b\xb6\x55\x4a\x02\xd2\x8c\x46\x1c\x53\x41\x76\x69\x05\xbf\x1c\xf5\xef\xce\x2e\x73\x0d\x6f\xcf\x24\xb7\x37\x25\xfc\x28\x00\x00\x1f\xac\xc7\x60\x8b\xd9\xf5\x64\x43\x0d\x3a\xca\xa0\x8d\xe1\x48\xf2\x27\x49\x37\x5a\x01\x9b\x0a\x75\x37\x39\x82\x7b\xc8\xfa\xea\x83\x43\xe0\xe5\xee\x6a\x03\xaa\x56\xc1\x43\x91\xb8\xea\x0b\x67\x85\xe9\xb9\x15\x0e\xd8\xdb\x13\xca\x50\x6e\xd1\xe9\xf6\x7b\xf0\x48\xce\x14\xbb\x03\xc7\xb1\x03\x62\x81\x1c\x0d\xab\x31\xcf\x9c\xb3\x1d\x3c\xca\xb0\x2b\xd5\x96\x70\x01\xab\xa2\xef\x50\xac\x8e\xeb\xf6\x75\xf0\xff\x0f\xc8\xc5\x67\x75\xfe\x0d\x00\x00\xff\xff\x9e\x01\x4d\x3d\x4b\x01\x00\x00" +var _epochAdminUpdate_staking_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xc1\x4a\xc4\x30\x10\x86\xef\x79\x8a\x9f\x3d\x48\xf7\x12\x3c\x88\x87\xa2\x2e\x65\xb7\xa2\x27\x17\x8b\xde\xc7\x36\xb6\xc1\x36\x13\xd2\x29\x15\x64\xdf\x5d\xd2\xb8\x5d\x70\x8e\xc9\x3f\xf3\x7d\x33\x76\xf0\x1c\x04\x8f\x3d\xcf\xa5\xe7\xba\xc3\x67\xe0\x01\xd7\xdf\xe5\xf1\x65\xff\x54\x1c\x0e\xaf\x65\x55\x29\x25\x81\xdc\x48\xb5\x58\x76\x99\x33\x73\x25\xf4\x65\x5d\xfb\x6e\xcd\x3c\xe6\x78\x7b\x76\x72\x7b\xb3\xc5\x8f\x02\x00\x1f\x8c\xa7\x60\xb2\xd1\xb6\xce\x84\x1c\xa3\x70\xa0\xd6\xe8\xf3\x7f\xac\xde\x08\x4c\xa4\x15\xcd\x60\x1d\xee\x91\xc2\xfa\x9c\xfd\xe0\x10\x78\xbe\xbb\x5a\xad\xf4\x12\x7c\xc8\xa2\x5c\x7e\x91\xd5\x14\x9f\xab\xd4\x75\x24\xe9\xb6\x2b\x22\xd6\x6e\x07\x4f\xce\xd6\xd9\x66\xcf\x53\xdf\xc0\xb1\x20\x8d\xc6\xd2\x98\x76\xfd\x83\xc2\x93\x74\x9b\xad\x5a\x27\x5c\x04\xf5\xe4\x1b\x12\x53\x4c\xcb\x01\x96\xad\xff\x5f\x21\x81\x4f\xea\xf4\x1b\x00\x00\xff\xff\x40\x00\x86\xb4\x50\x01\x00\x00" func epochAdminUpdate_staking_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1390,7 +1390,7 @@ func epochAdminUpdate_staking_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_staking_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x48, 0x2e, 0xa2, 0x66, 0x2c, 0x29, 0xe2, 0xbf, 0xdd, 0x5e, 0x40, 0xcb, 0xb9, 0xb5, 0x61, 0x12, 0x2c, 0x66, 0x4a, 0x87, 0x97, 0xc8, 0xa6, 0x8f, 0x8c, 0x46, 0x9a, 0x63, 0x86, 0xf0, 0x79, 0x95}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0x17, 0x79, 0x9f, 0xce, 0x9e, 0x7e, 0x1, 0x7b, 0x24, 0xa3, 0x41, 0x43, 0x15, 0x98, 0x60, 0xa5, 0x10, 0xb5, 0x86, 0xc4, 0xfb, 0x7f, 0xf1, 0xa1, 0xc8, 0x59, 0xfd, 0x70, 0xc9, 0x16, 0x23}} return a, nil } @@ -1414,7 +1414,7 @@ func epochNodeRegister_dkg_participantCdc() (*asset, error) { return a, nil } -var _epochNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x56\x5f\x6f\xe2\x46\x10\x7f\xe7\x53\x8c\xf2\x10\x19\x89\x98\xb6\xaa\xaa\xca\x82\x3b\x51\x48\x52\xc4\xa9\x97\x84\x5c\xee\xa1\xea\xc3\xb2\x1e\xe3\x2d\x66\xd7\xdd\x1d\x97\x43\x11\xdf\xbd\x5a\xaf\x6d\xbc\xb1\x9b\xe6\x54\xf5\xa9\x79\x20\xec\xfc\xf9\xcd\xff\x19\xc4\x3e\x57\x9a\x60\xae\x8f\x39\xa9\x41\xf5\xba\xc9\xd4\x61\xb9\x78\x64\x9b\x0c\xd7\xc4\x76\x42\x6e\x21\xd1\x6a\x0f\x17\x5d\xc6\x45\x5b\xe7\x51\xed\x50\xb6\x44\xcb\xb7\x27\x31\xcf\x0a\x43\xa8\xef\xe7\x4e\xea\x9b\x2f\xf7\xf3\xd9\x62\xf1\x70\xbd\x5e\xb7\xa5\x16\xab\xdb\x9a\xbf\x58\xdd\xf6\x08\x5c\xe7\x8a\xa7\xb5\xc8\xf5\xdd\xc7\xf9\xcf\x2f\x85\x0a\xb9\x15\x9b\x0c\x3d\x8f\xda\xb4\x8b\xc1\x60\x3c\x86\xc7\x54\x18\x20\xcd\xa4\x61\x9c\x84\x92\xc0\x35\x32\x42\x03\x0c\x24\x1e\x40\xaa\x18\xc1\x90\x2e\x38\x81\xda\xfc\x8e\x9c\x9c\x12\xca\x11\x88\x04\x28\x45\x27\x22\xac\x02\x57\x59\x86\x9c\x94\x2e\x69\xa3\x17\x50\x8c\x73\x55\x48\x02\x26\x63\x60\x71\x6c\xc9\xf7\xf3\x0a\x14\x48\x81\x28\xa1\x97\x5d\x50\x69\x50\x9a\xc2\x54\xa0\x82\xfe\x19\xd7\x66\xcf\x03\x1e\xb4\x22\x0c\x06\x00\x00\x22\x8e\x60\x4d\x5a\xc8\xed\xa8\x7c\x6b\x95\x61\x04\x9f\x96\x92\x7e\x74\x04\x89\x74\x50\xda\x16\x78\x16\xc7\x1a\x8d\xf1\xe5\xcf\xec\x15\x1e\x7d\x96\x71\x7d\xd1\xa1\xb3\xbd\xf5\x33\x82\x4f\x37\xe2\xcb\x0f\xdf\x3b\x5a\x5e\x6c\x32\xc1\x57\x78\x34\x11\xfc\xea\x5a\x30\x5c\xe1\xf1\x83\x30\x74\x2d\x49\x1f\x7f\x1b\x0c\xe1\x79\x50\x8a\x66\x48\x90\xd4\x2d\xf5\x80\x49\x04\xac\xa0\x34\xf0\x6a\x1a\x7e\x16\x94\xc6\x9a\x1d\x6c\x7f\x0e\xe1\xb2\x69\xc1\xf0\x89\x15\x19\x39\xa0\x5c\x63\xce\x34\x06\x8c\x73\xaa\x40\x7e\x52\x5a\xab\xc3\x13\xcb\x0a\xab\x35\x73\x19\x6d\x2c\x97\x41\x61\x96\x84\x6d\xf3\x30\xb5\x99\xa7\xd0\x90\xd2\x6c\x8b\xe1\xa6\x84\x98\x7c\xb5\x4f\xef\x02\xdb\x9b\x11\x8c\x2b\xa0\x71\x63\xa4\x64\x0f\x1b\x0f\xec\xdf\xfb\xf7\x90\x33\x29\x78\x70\x31\x57\x45\x16\x83\x54\x04\xce\x30\x68\x4c\x50\xa3\xe4\x68\x4b\x7e\xf3\xe1\xe3\x67\x28\xf5\x2f\x86\xe7\x18\xc6\x63\x78\xc0\xad\xb0\xe3\x07\xbf\xa8\x18\x1b\x86\x48\x7a\x63\xb9\xec\x0e\x7b\x68\xf5\xec\x77\xd4\xb5\xe3\xaf\x0a\xad\x1d\xe2\x1d\xa3\x74\x08\xd3\x29\x48\x91\xb5\xb3\x5a\xd7\x55\x36\x0a\x30\xb9\xea\x43\x64\x71\x6c\x41\x1f\x90\x2b\x1d\x07\x9e\x7e\xdd\xcd\x22\x1e\x75\xe8\xae\xab\xed\x67\x97\xd7\xd3\xe0\x1d\xd2\x6b\x5a\x65\x7f\x7b\xcf\xae\x74\x7b\x14\xce\xdf\xbb\x72\x64\xeb\x6d\xe6\x6a\xbf\x17\x44\x18\x47\x30\xb9\xea\x34\x5c\x78\xa8\xfa\x28\xa8\x07\xc9\xfd\xf7\x3b\x64\xe8\x27\xd7\x2b\xab\x61\x7f\x62\x30\xb9\x3a\x27\x7b\x04\xa4\xbe\xa2\x80\xaf\xd5\x6d\xce\xf2\x7a\x22\x38\xcb\xd9\x46\x64\x82\x04\x9a\xc6\xb6\x30\xa6\xc0\xc9\xe5\xf3\xab\xc6\xee\xca\x6d\x70\x7a\x17\xbc\xdd\xa5\x4e\xb0\xbd\xd6\xcb\x35\x63\xd2\xc0\xf3\xf7\x0d\xd1\x3b\x87\x7c\x4b\xa7\x73\x1a\xea\x14\xb4\xd6\xc1\x7f\x33\x3a\x6f\x5d\x02\xe5\xd9\x38\x6f\x82\xf2\xea\x55\x39\x80\x9c\x51\xda\xde\x06\xb5\xf3\x4b\x99\x28\x98\xfe\x9d\x2f\x96\x5b\xa6\x6d\xb9\x88\xea\x58\x43\x11\xfb\x5b\xa5\xe7\x68\xd5\x97\x50\xe9\xce\x05\x73\xe7\x0b\x18\x18\xe4\x4a\xc6\x4c\x1f\x9b\x1b\x96\x28\x6d\x91\x84\x06\x93\x23\x17\x89\xe0\xd5\x1d\x33\xed\x5d\x55\x7b\x1d\xda\xc1\xb6\x5b\xe5\x5b\x60\xc6\xdd\xae\xbe\xe5\xb2\x67\x3c\x15\x12\x67\x9c\x13\x4c\xa1\x5a\xee\x41\xce\x8e\xa8\xa3\xb2\x68\x7e\x7a\xad\x0f\x3b\x3c\x82\x90\xad\xeb\x04\xcf\x9d\x99\x6d\xc1\x86\x3b\x3c\x1a\xbb\xa3\x82\x46\x23\xb2\x18\x61\xf3\x1c\x41\xca\x4c\x3a\xcb\xb6\x4a\x0b\x4a\xf7\x8e\xeb\x91\x46\x70\x40\xb1\x4d\xc9\xb1\xdc\x77\xdf\xb1\x53\x37\xb4\x3f\xf8\x93\xa2\xf3\xd2\x2c\x7f\x14\x85\x5b\xa4\xe6\x47\x56\xc9\x6e\xb5\x7d\x53\x43\x1f\xba\x1d\xcb\x8b\x6d\x51\x99\x38\x0f\x4b\x83\x1d\x96\x8c\xfe\x05\x71\x02\xcc\x0c\xf6\x16\xeb\xbb\xff\x6b\xb1\xe2\xdd\xf6\x8e\x69\x12\x5c\xe4\x4c\x52\xa7\x66\x8b\xd5\x6d\x8b\xfd\xaf\x6a\xe6\x5b\x3a\x97\x6e\xb1\xba\x0d\x5b\x8c\xde\x0d\x73\x1a\xb8\xcf\xd3\x5f\x01\x00\x00\xff\xff\xaf\x68\x54\x12\x18\x0c\x00\x00" +var _epochNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x56\x4d\x6f\xe3\x36\x13\xbe\xfb\x57\x0c\x72\x08\x64\xc0\x91\xdf\xb7\x28\x8a\x42\x48\x76\x61\xc8\x49\x1a\x78\xd1\xcd\xd7\xee\x1e\x8a\x1e\x68\x72\x64\xb1\x91\x49\x95\x1c\xd5\x2b\x04\xfe\xef\x05\x45\x49\x16\x23\x6f\x76\x17\xed\xad\x39\x38\xe6\x7c\x3c\x9c\xe1\xcc\x3c\x63\xb9\x2d\xb5\x21\x48\x4d\x5d\x92\x9e\xb4\xa7\xab\x42\xef\x6e\x96\x8f\x6c\x5d\xe0\x03\xb1\x27\xa9\x36\x90\x19\xbd\x85\x93\xb1\xe2\x64\xe8\xf3\xa8\x9f\x50\x0d\x4c\x9b\x73\x60\x91\x16\x95\x25\x34\x77\xa9\xb7\xfa\xdf\xe7\xbb\x74\xb1\x5c\xde\x5f\x3e\x3c\x0c\xad\x96\xab\xeb\x4e\xbf\x5c\x5d\x1f\x31\xb8\x2c\x35\xcf\x3b\x93\xcb\xdb\xf7\xe9\x2f\x2f\x8d\x2a\xb5\x91\xeb\x02\x83\x88\x86\xb2\x93\xc9\x64\x3e\x87\xc7\x5c\x5a\x20\xc3\x94\x65\x9c\xa4\x56\xc0\x0d\x32\x42\x0b\x0c\x14\xee\x40\x69\x81\x60\xc9\x54\x9c\x40\xaf\xff\x40\x4e\xde\x09\xd5\x0c\x64\x06\x94\xa3\x37\x91\xce\x81\xeb\xa2\x40\x4e\xda\x34\xb2\xd9\x0b\x28\xc6\xb9\xae\x14\x01\x53\x02\x98\x10\x4e\x7c\x97\xb6\xa0\x40\x1a\x64\x03\x7d\x33\x06\x55\x16\x95\xad\x6c\x0b\x2a\xe9\xeb\xb8\xee\xf5\x02\xe0\xc9\x20\xc3\x68\x02\x00\x20\x45\x02\x0f\x64\xa4\xda\xcc\x9a\xb3\xd1\x05\x26\xf0\xe1\x46\xd1\xcf\x5e\xa0\x90\x76\xda\xb8\x02\x2f\x84\x30\x68\x6d\x68\x7f\x50\xaf\xb0\x0e\x55\xd6\xf7\xc5\x48\xce\xb6\x2e\xce\x04\x3e\x5c\xc9\xcf\x3f\xfd\xe8\x65\x65\xb5\x2e\x24\x5f\x61\x6d\x13\xf8\xcd\xb7\x60\xbc\xc2\xfa\x9d\xb4\x74\xa9\xc8\xd4\xbf\x4f\xa6\xf0\x3c\x69\x4c\x0b\x24\xc8\xba\x96\xba\xc7\x2c\x01\x56\x51\x1e\x05\x35\x8d\x3f\x49\xca\x85\x61\x3b\xd7\x9f\x53\x38\xed\x5b\x30\xfe\xc8\xaa\x82\x3c\x50\x69\xb0\x64\x06\x23\xc6\x39\xb5\x20\x0f\xa4\x0d\xdb\xe0\x0c\x52\x56\xb2\xb5\x2c\x24\x49\xb4\x33\x58\x08\xb1\xc2\x7a\x0a\xa7\x0b\xff\xc6\x7d\x2c\x4d\x9a\x58\x64\xf1\x30\x20\xb8\x70\xb5\xa0\xd8\x7a\xb0\x78\xad\x8d\xd1\xbb\xf3\xef\x8e\xf2\x4d\xe4\xba\x35\x81\x79\x0b\x34\xef\x2f\x69\xd4\xd3\x3e\x02\xf7\xf7\xf6\x2d\x94\x4c\x49\x1e\x9d\xa4\xba\x2a\x04\x28\x4d\xe0\x2f\x06\x83\x19\x1a\x54\x1c\x5d\x13\x5c\xbd\x7b\xff\x09\x1a\xff\x93\xe9\x21\x87\xf9\x1c\xee\x71\x23\xdd\x40\xc2\xaf\x5a\x60\xaf\x90\xd9\xd1\x5c\x4e\xc7\xe3\x1f\x3b\x3f\xf7\x1d\x4d\x17\xf8\xab\x46\xed\x53\xdf\x32\xca\xa7\x70\x71\x01\x4a\x16\xc3\x57\xed\x2a\xad\x7a\x07\x38\x3f\x3b\x86\xc8\x84\x70\xa0\xf7\xc8\xb5\x11\x51\xe0\xdf\xf5\xb7\x14\xb3\x91\xdc\xf7\xb9\xfb\x1c\xeb\x8e\xb4\xfc\x48\xf4\x9a\x57\xd3\xf1\xc1\x71\x6c\x3d\x1c\x8e\xc3\xf7\xb1\x1d\xb9\x7a\xdb\x54\x6f\xb7\x92\x08\x45\x02\xe7\x67\xa3\x86\x8b\x77\x6d\x1f\x45\xdd\x68\xf9\xff\x61\x87\x4c\xc3\xc7\x0d\xca\x6a\xd9\x5f\x18\x9d\x9f\x1d\x1e\x7b\x06\xa4\xbf\xa3\x80\xaf\xd5\x2d\x65\x65\x37\x11\x7c\x30\x55\xfd\xdd\xd2\xda\x0a\xcf\x4f\x9f\x5f\xbd\xec\xb6\xe1\x87\xfd\x9b\xe8\xdb\x43\x1a\x25\x1b\xdc\xde\x10\x8e\xcd\xa3\x20\xce\x19\x30\xfa\x4a\xd6\x3e\x90\xf0\x86\xfd\x21\xfd\x2e\xf5\x2f\xd3\xc0\xbf\x3c\x3a\xdf\x4a\x02\xcd\x22\x39\x30\x41\xb3\x07\xdb\xc8\xa0\x64\x94\x0f\xd9\xa0\x4b\xe2\x46\x65\x1a\x2e\xbe\x14\x8b\xd3\x36\xcf\x77\xb3\x4c\xba\x9c\x63\x29\x42\x56\x39\xb2\xc6\xba\xdd\xa8\xcd\x68\xa7\xf9\x85\x06\x0c\x2c\x72\xad\x04\x33\x75\xbf\xd5\x32\x6d\x1c\x92\x34\x60\x4b\xe4\x32\x93\xbc\xdd\x6c\x76\xc8\x55\x5d\xd4\xb1\x1b\x6c\xc7\x2a\xff\x07\x66\xfd\x36\x3b\x46\x2e\x5b\xc6\x73\xa9\x70\xc1\x39\xc1\x05\xb4\xe4\x1e\x95\xac\x46\x93\x34\xc5\x0b\x9f\xd7\xc5\xf0\x84\x35\x48\x35\xd8\x57\xf0\x3c\x9a\xd9\x01\x6c\xfc\x84\xb5\x75\x1c\x15\xf5\x1e\x89\xc3\x88\xfb\xe3\x0c\x72\x66\xf3\x45\xb1\xd1\x46\x52\xbe\xf5\xda\x40\x34\x83\x1d\xca\x4d\x4e\x5e\xe5\xbf\x87\x81\xed\xc7\xa9\xfd\xc9\x3f\x6a\x3a\x90\x66\xf3\x33\x29\xde\x20\xf5\x3f\xbb\x1a\xf5\xa0\xfd\xfb\x1a\x86\xd0\xc3\x5c\x5e\xb0\x45\x7b\xc5\x81\x2a\x7a\xec\xb8\x51\x1c\x27\x88\x3d\x60\x61\xf1\x68\xb1\x7e\xf8\xaf\x16\x4b\x3c\x6d\x6e\x99\x21\xc9\x65\xc9\x14\x8d\x6a\xb6\x5c\x5d\x0f\xd4\xff\xa8\x66\xe1\x4d\x87\xd2\x2d\x57\xd7\xf1\x40\x71\x94\x61\xf6\x13\xff\xb9\xff\x3b\x00\x00\xff\xff\xe5\x00\xd4\x00\x2a\x0c\x00\x00" func epochNodeRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -1430,7 +1430,7 @@ func epochNodeRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/node/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x45, 0xf3, 0x1c, 0xe1, 0x79, 0x8f, 0x88, 0xe0, 0x24, 0xe0, 0xb4, 0xb2, 0xa9, 0x3, 0x7d, 0x32, 0x3e, 0x99, 0x8e, 0x51, 0x5e, 0x7e, 0x3d, 0xe3, 0x9d, 0xa5, 0x6b, 0xc3, 0x50, 0x8f, 0x47, 0xe2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x58, 0x67, 0xe, 0x45, 0xe1, 0x94, 0x4, 0x97, 0x13, 0x9c, 0xff, 0x78, 0x65, 0x73, 0xb4, 0x72, 0x8c, 0x69, 0xca, 0xca, 0x1c, 0x61, 0x86, 0xe4, 0xb8, 0xd7, 0x91, 0x3b, 0x9d, 0xfa, 0x97, 0x65}} return a, nil } @@ -1454,7 +1454,7 @@ func epochNodeRegister_qc_voterCdc() (*asset, error) { return a, nil } -var _epochScriptsGet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x18\xa5\x97\x9e\x5a\xe2\x94\x9f\x57\x5a\x1c\x92\x9f\x9d\x9a\x57\xac\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x6f\x69\x0b\x19\x6e\x00\x00\x00" +var _epochScriptsGet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x18\xa5\x97\x9e\x5a\xe2\x94\x9f\x57\x5a\x1c\x92\x9f\x9d\x9a\x57\xac\xa1\xc9\x55\xcb\x05\x08\x00\x00\xff\xff\x33\x71\xc3\xef\x6f\x00\x00\x00" func epochScriptsGet_bonus_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1470,11 +1470,11 @@ func epochScriptsGet_bonus_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_bonus_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x62, 0x70, 0x28, 0x3f, 0x6f, 0xb3, 0x4e, 0xf4, 0x98, 0x64, 0xe9, 0xe0, 0x53, 0x18, 0xb1, 0x39, 0xe1, 0xc1, 0x9a, 0x82, 0xc9, 0x94, 0xba, 0xf3, 0x77, 0xaf, 0x95, 0x6c, 0x40, 0xcc, 0x75, 0xec}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb9, 0xba, 0x38, 0xb3, 0x71, 0x3, 0x50, 0x8f, 0x89, 0x88, 0x91, 0x63, 0x37, 0x2b, 0x23, 0xdc, 0xcc, 0x6d, 0x13, 0xb3, 0x24, 0xaa, 0x78, 0x8c, 0x95, 0xee, 0x8, 0x37, 0xd, 0xb3, 0x10, 0xa4}} return a, nil } -var _epochScriptsGet_config_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x42\x68\xd3\x73\xce\xcf\x4b\xcb\x4c\x57\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x92\x4d\x4f\x2d\x81\x28\xf0\x4d\x2d\x49\x4c\x49\x2c\x49\xd4\xd0\xe4\xaa\x05\x04\x00\x00\xff\xff\xe1\x1e\x99\xa0\x7b\x00\x00\x00" +var _epochScriptsGet_config_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x42\x68\xd3\x73\xce\xcf\x4b\xcb\x4c\x57\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x92\x4d\x4f\x2d\x81\x28\xf0\x4d\x2d\x49\x4c\x49\x2c\x49\xd4\xd0\xe4\xaa\xe5\x02\x04\x00\x00\xff\xff\x63\x4d\x7a\xe5\x7c\x00\x00\x00" func epochScriptsGet_config_metadataCdcBytes() ([]byte, error) { return bindataRead( @@ -1490,11 +1490,11 @@ func epochScriptsGet_config_metadataCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_config_metadata.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4e, 0xe3, 0x3, 0x47, 0x3c, 0xc3, 0xd5, 0xff, 0x69, 0x19, 0x2d, 0x1b, 0xe3, 0x64, 0x53, 0xff, 0x84, 0xa9, 0x4d, 0x26, 0x1c, 0x83, 0x46, 0x6a, 0x36, 0x13, 0x1b, 0x9a, 0x43, 0x17, 0x99, 0xa0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe8, 0x73, 0x53, 0x3c, 0x3c, 0xe9, 0x80, 0xbb, 0x35, 0xa5, 0xdd, 0xe6, 0xac, 0x3f, 0x41, 0x5, 0x10, 0x5d, 0x54, 0xf, 0x58, 0x6f, 0x73, 0xb0, 0x62, 0xb2, 0xc8, 0x3e, 0xb0, 0xc5, 0xdf, 0xdf}} return a, nil } -var _epochScriptsGet_create_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x31\xef\x82\x30\x14\x04\xf0\xbd\x9f\xe2\x46\x58\xc8\x7f\x66\xfb\xa7\x60\x74\x52\x64\x24\x0c\x4d\x7d\x28\x49\xe9\x23\xaf\x6d\xd4\x18\xbf\xbb\x89\x81\xa8\xdb\x0d\xbf\xdc\xdd\x38\xcd\x2c\x11\x1b\xc7\xd7\x7a\x66\x7b\xc1\x20\x3c\xe1\xef\x56\x1f\xf6\x7a\xfb\x5f\x55\xc7\xba\x6d\xd5\x17\xd2\x2e\x85\x48\xd2\xe8\x15\x36\x7a\x55\xca\x58\x4b\x21\x64\xc6\xb9\x1c\x43\xf2\x98\xcc\xe8\x33\x23\x62\xee\x25\xba\x36\xca\xe8\xcf\x7d\x5e\xa2\xfb\xe9\x29\x96\xd4\xe3\xa1\x14\x00\x08\xc5\x24\xfe\xf3\xa8\xb0\x42\x26\x92\x66\xe7\xc8\x46\x96\xc5\x87\xcc\xf3\x89\x76\x55\x28\xf1\x9e\xc8\x95\x7a\xbe\x02\x00\x00\xff\xff\x6a\x47\x31\x9f\xcd\x00\x00\x00" +var _epochScriptsGet_create_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x31\xef\x82\x30\x14\x04\xf0\xbd\x9f\xe2\x46\x58\xc8\x7f\x66\xfb\xa7\x60\x74\x52\x64\x24\x0c\x4d\x7d\x28\x49\xe9\x23\xaf\x6d\xd4\x18\xbf\xbb\x89\x81\xa8\xdb\x0d\xbf\xdc\xdd\x38\xcd\x2c\x11\x1b\xc7\xd7\x7a\x66\x7b\xc1\x20\x3c\xe1\xef\x56\x1f\xf6\x7a\xfb\x5f\x55\xc7\xba\x6d\xd5\x17\xd2\x2e\x85\x48\xd2\xe8\x15\x36\x7a\x55\xca\x58\x4b\x21\x64\xc6\xb9\x1c\x43\xf2\x98\xcc\xe8\x33\x23\x62\xee\x25\xba\x36\xca\xe8\xcf\x7d\x5e\xa2\xfb\xe9\x29\x96\xd4\xe3\xa1\x00\x40\x28\x26\xf1\x9f\x43\x85\x15\x32\x91\x34\x3b\x47\x36\xb2\x2c\x3c\x64\x9e\x4f\xb4\xab\x42\x89\xf7\x42\xae\x9e\xea\x15\x00\x00\xff\xff\xef\xe4\x5a\xe3\xcc\x00\x00\x00" func epochScriptsGet_create_clustersCdcBytes() ([]byte, error) { return bindataRead( @@ -1510,11 +1510,11 @@ func epochScriptsGet_create_clustersCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_create_clusters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0xee, 0x3a, 0x6f, 0x39, 0x84, 0x3d, 0xce, 0x1b, 0x51, 0x57, 0xf7, 0xc5, 0x85, 0x2, 0xc1, 0x83, 0x4, 0xc6, 0x7, 0x7c, 0xfb, 0xdd, 0x68, 0xd6, 0x55, 0x3c, 0xab, 0xf7, 0xdb, 0x72, 0x32}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf2, 0x75, 0x93, 0xb8, 0xe3, 0x7f, 0x0, 0xa8, 0xde, 0x72, 0xf9, 0xe2, 0x78, 0x90, 0x3, 0x6f, 0x78, 0xbb, 0x58, 0x61, 0x15, 0xa8, 0x2d, 0xbb, 0xd0, 0x60, 0x22, 0xe4, 0x25, 0x21, 0xfb, 0x80}} return a, nil } -var _epochScriptsGet_current_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd2\xd7\x57\x08\x4a\x2d\x29\x2d\xca\x2b\x56\x28\xc9\x48\x55\x28\xcb\x4c\x2d\x57\xc8\x4f\x03\xb3\x93\x4b\x8b\x8a\x52\xf3\x4a\x14\x92\x72\xf2\x93\xb3\xb9\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\x3d\xf3\x4a\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x72\x52\x4b\x60\xfa\x9c\x40\xda\x14\x6c\x15\xd2\x53\x4b\x9c\x91\x44\x34\x34\xc1\x0a\x8b\xc0\x96\xa2\xa8\xd5\x03\x59\xce\x55\x0b\x08\x00\x00\xff\xff\xb1\xb8\xc6\xc1\x92\x00\x00\x00" +var _epochScriptsGet_current_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd2\xd7\x57\x08\x4a\x2d\x29\x2d\xca\x2b\x56\x28\xc9\x48\x55\x28\xcb\x4c\x2d\x57\xc8\x4f\x03\xb3\x93\x4b\x8b\x8a\x52\xf3\x4a\x14\x92\x72\xf2\x93\xb3\xb9\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\x3d\xf3\x4a\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x72\x52\x4b\x60\xfa\x9c\x40\xda\x14\x6c\x15\xd2\x53\x4b\x9c\x91\x44\x34\x34\xc1\x0a\x8b\xc0\x96\xa2\xa8\xd5\x03\x59\xce\x55\xcb\x05\x08\x00\x00\xff\xff\x31\x43\x70\x8e\x93\x00\x00\x00" func epochScriptsGet_current_viewCdcBytes() ([]byte, error) { return bindataRead( @@ -1530,7 +1530,7 @@ func epochScriptsGet_current_viewCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_current_view.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x14, 0x17, 0xec, 0xb1, 0xd3, 0xf8, 0x2f, 0x5c, 0x5b, 0x67, 0xcc, 0x11, 0x39, 0x80, 0xf5, 0x21, 0x5c, 0x68, 0x72, 0x88, 0x8e, 0x3f, 0x62, 0xe2, 0x79, 0xb8, 0xfc, 0x3e, 0x23, 0x1f, 0x78, 0x73}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xca, 0x73, 0xd7, 0x7e, 0xbb, 0xc1, 0xf1, 0x48, 0x38, 0xc7, 0x46, 0x64, 0xbd, 0x3, 0x96, 0xc3, 0x96, 0xa1, 0x6c, 0x17, 0x53, 0x1e, 0x2e, 0x17, 0x5e, 0x74, 0x20, 0x69, 0x5, 0x49, 0x81, 0x46}} return a, nil } @@ -1614,7 +1614,7 @@ func epochScriptsGet_proposed_counterCdc() (*asset, error) { return a, nil } -var _epochScriptsGet_randomizeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x2c\x2a\x4a\xac\xb4\x52\x88\x0e\x2e\x29\xca\xcc\x4b\x8f\xd5\x44\x30\x15\xaa\xb9\xb8\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\x86\xeb\x15\x25\xe6\xa5\xe4\xe7\x66\x56\xa5\x42\x34\x6b\x72\x71\xd5\x02\x02\x00\x00\xff\xff\x0c\xed\x0e\x98\x81\x00\x00\x00" +var _epochScriptsGet_randomizeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x2c\x2a\x4a\xac\xb4\x52\x88\x0e\x2e\x29\xca\xcc\x4b\x8f\xd5\x44\x30\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\x66\xeb\x15\x25\xe6\xa5\xe4\xe7\x66\x56\xa5\x42\xf4\x6a\x72\xd5\x72\x01\x02\x00\x00\xff\xff\x1e\x03\x7b\x82\x80\x00\x00\x00" func epochScriptsGet_randomizeCdcBytes() ([]byte, error) { return bindataRead( @@ -1630,11 +1630,11 @@ func epochScriptsGet_randomizeCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_randomize.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xef, 0xae, 0x3, 0x7, 0x26, 0x62, 0x14, 0x34, 0xf9, 0xcb, 0x9a, 0x86, 0x3c, 0x61, 0xe8, 0xf9, 0x11, 0xf6, 0xbe, 0xa0, 0xbb, 0xca, 0x1c, 0xa0, 0xec, 0xca, 0xc7, 0xc3, 0xa0, 0x96, 0x45, 0xa5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0x24, 0x39, 0xc1, 0x29, 0x52, 0x9c, 0x5a, 0x9e, 0x90, 0x88, 0x2b, 0x91, 0x68, 0xc8, 0xf, 0xe1, 0xdf, 0x2f, 0xf, 0x8b, 0x8, 0xf2, 0x36, 0xdd, 0x11, 0x22, 0xd2, 0x46, 0xdc, 0x87, 0x8}} return a, nil } -var _flowtokenBurn_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4d\x6f\x9c\x30\x10\xbd\xf3\x2b\x5e\xf7\x50\xb1\x87\xc0\xa5\xea\x61\xb5\x6d\xba\x8d\x94\x63\x4f\x69\x7b\x36\x30\x2c\x56\xc1\x46\xe3\xa1\x24\x8a\xf2\xdf\x2b\xdb\xe0\x40\xa5\xdd\xc3\x02\xf6\xcc\xfb\x98\x37\x65\x89\xa7\x4e\x3b\x08\x2b\xe3\x54\x2d\xda\x1a\x68\x07\x05\xa1\x61\xec\x95\x10\x5a\xcb\xfe\x73\x73\x2f\x9d\x92\xac\x2c\x51\xdb\xa9\x6f\x50\x11\x26\x47\x0d\xaa\x17\x48\x47\x50\xcd\xa0\x0d\x54\x5d\xdb\xc9\x08\xc4\xa2\x9a\xd8\x40\xec\x1f\x32\xce\x37\xb5\x6c\x07\x5f\xa8\x19\x4e\x2c\x53\x83\x5f\x6a\xea\x3d\x5e\x16\xb4\x50\x68\xd0\xe6\x0a\x35\x04\x88\x79\x65\x51\x18\x15\xab\x81\x84\xd8\xe3\x7a\xb2\x8d\xaa\x2c\xd3\xc3\x68\x59\xf0\x38\x99\xab\xae\x7a\x7a\xf2\x94\x91\xee\xb0\x3b\x3b\xa4\xca\xde\xce\xbb\xaa\xf5\xfb\x90\x65\x1b\xe4\x3c\x0a\x39\xe1\xe7\xa3\x7e\xfe\xfc\xe9\x88\xd7\x2c\x03\x80\xb2\x8c\xd2\xc1\xe4\xec\xc4\x35\x85\xc1\xa0\xb3\x7d\xe3\xa2\xba\x60\x3a\x9e\x2a\x26\x54\xe4\x6d\x79\x7b\xd4\x04\x84\x9e\x04\x7f\x3d\xc4\x09\xdf\x76\x12\x8b\x38\x93\x54\x14\x86\x7a\xc2\xc7\xa4\xb0\xb8\xf8\x13\xed\x84\x95\x58\x8e\x85\x23\xd3\xa8\x98\x72\xa7\xaf\x86\xf8\x84\xcb\x24\xdd\x25\xe6\x90\x34\x2f\xba\x7f\x6b\xe9\x1a\x56\xf3\x2a\x71\x0d\x65\x49\x2f\x68\x82\x36\x21\x21\x75\xa5\xd4\xea\xa8\x6f\x8b\x78\x7b\xbe\x43\x24\x2a\x2a\xcb\x6c\xe7\xb3\x9a\xa4\xcb\xf7\x2e\x56\x1a\x55\xf5\x74\xdc\xaa\x0f\xf6\xbe\xe6\x9e\xf6\x84\x72\x61\x29\xdb\xf5\x3e\x5c\x1f\x3f\x24\x5a\xff\x2b\xe6\x05\x2c\xc5\x11\x9f\xc7\x9d\xb1\x07\x26\xbf\xb3\x0a\x4c\x2d\x31\x19\x1f\x8a\xdd\xee\x65\xf8\x4f\x81\xdd\xb2\x18\xcb\xbe\xfc\xe7\xf0\xd6\xf8\x6f\x1b\x09\x65\xc7\x9d\x8f\xfb\x7b\x8c\xca\xe8\x3a\x3f\x3c\x84\xc5\x36\x56\x10\xf1\x6f\xab\x5e\xf5\x1e\x22\xd4\x5b\xb4\x4c\xcf\x54\x4f\x42\x78\x4d\xf8\x7e\x55\xc2\x7a\x71\x88\x27\x39\x29\xea\x30\x96\x1f\x34\x7f\x0f\xb7\xf9\xbb\xa4\xf4\x12\xfb\x0a\xff\x08\xd2\xdd\x62\xea\x7c\xf7\x1e\xfa\x66\xd6\x0d\x39\x61\xfb\xb2\xb4\x2d\xb2\xde\x32\xfc\x0b\x00\x00\xff\xff\x9c\x62\xd7\x92\x50\x04\x00\x00" +var _flowtokenBurn_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x3d\x73\x9b\x40\x10\xed\xf9\x15\x2f\x2a\x3c\xa8\x30\x34\x99\x14\x1a\x27\x8e\xed\x19\x97\xa9\x1c\xa7\x5e\x60\x25\x6e\x02\x77\xcc\xde\x11\xec\xf1\xf8\xbf\x67\x6e\x0f\x90\x28\xa4\x42\xc0\xdd\xee\xfb\xd8\xb7\x65\x89\x97\xd6\x78\x04\x21\xeb\xa9\x0e\xc6\x59\x18\x0f\x42\xe0\x7e\xe8\x28\x30\x8e\x4e\xe2\xe7\xc5\x7d\x68\x29\x64\x65\x89\xda\x8d\x5d\x83\x8a\x31\x7a\x6e\x50\xbd\x23\xb4\x0c\x6a\x7a\x63\x41\x75\xed\x46\x1b\x10\x1c\xaa\x51\x2c\x82\xfb\xcb\xd6\xc7\xa6\xa3\xb8\x3e\x16\x1a\x81\x0f\x4e\xb8\xc1\x2b\x8d\x5d\xc4\xcb\x54\x0b\x6b\x83\xb1\x27\x50\xaf\x10\xd3\xc2\x42\x18\x48\xa8\xe7\xc0\x12\x71\x23\xd9\x85\xaa\x2c\x33\xfd\xe0\x24\xe0\x79\xb4\x27\x53\x75\xfc\x12\x29\x13\xdd\x6e\x73\xb6\x5b\x2b\x3b\x37\x6d\xaa\x96\xef\x5d\x96\x5d\x20\xe7\x49\xc8\x01\xbf\x9f\xcd\xdb\xb7\xaf\x7b\x7c\x64\x19\x00\x94\x65\x92\x0e\x61\xef\x46\xa9\x59\x07\x83\xd6\x75\x8d\x4f\xea\xd4\x74\x3a\x25\x61\x54\x1c\x6d\x45\x7b\xdc\x28\x42\xc7\x01\xff\x22\xc4\x01\x3f\x37\x12\x8b\x34\x93\xb5\x48\x87\x7a\xc0\xcd\xaa\xb0\x78\x88\x27\xc6\x07\xa1\xe0\x24\x15\x0e\xc2\x03\x09\xe7\xde\x9c\x2c\xcb\x01\x34\x86\x36\x7f\x74\x22\x6e\x7a\xa5\x6e\xe4\x3d\x6e\x1e\x52\x2c\xab\x85\xd9\xc6\x1f\x13\xda\x46\x68\x5a\x14\x2f\x19\xcd\x61\xaa\x44\x18\xab\x81\xd1\x89\xd7\x56\xcf\xdd\xb1\x48\xb7\x77\xb7\x48\xbc\xc5\x5c\x54\x54\xca\x7c\xa7\x2a\xb6\xe6\x16\x3a\xaa\xba\x28\xea\x6c\x4a\x5d\xff\xc8\x23\xfd\x01\xe5\x0c\x54\x1e\x97\x7b\xbd\xde\x7f\x59\xe9\xe3\xaf\x98\x66\xb0\x35\xa5\xf4\xdc\x6f\x0c\x3e\x09\xc7\x55\x26\x08\x1f\x59\xd8\xc6\xac\xdc\xe5\xba\xea\xff\x9a\xe3\x35\xab\xa9\xec\xfb\x15\xa7\xd7\xd2\xb9\x6e\x48\xcb\xf6\x1b\x3f\xf7\xf7\x18\xc8\x9a\x3a\xdf\x3d\xe9\xde\x5b\x17\x90\xf0\xaf\xab\x5f\x74\xef\x12\xd4\x67\xb2\xce\x6f\x5c\x8f\x81\xf1\xb1\xe2\xc7\x4d\xd2\xed\x13\x8d\x6b\x75\x54\xd4\x3a\x9e\x5f\x3c\x3d\xea\x6d\x7e\x96\xb4\xbe\xa4\xbe\x22\x3e\x54\xba\x9f\x4d\xdd\xdd\x9e\x97\xe0\x62\xe6\x0d\xfb\x20\xee\x7d\x6e\x9b\x65\x7d\x66\xf8\x1f\x00\x00\xff\xff\x41\x06\x25\x6c\x6f\x04\x00\x00" func flowtokenBurn_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1650,11 +1650,11 @@ func flowtokenBurn_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/burn_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1a, 0xd4, 0xdc, 0x56, 0xc, 0x62, 0xe6, 0xe3, 0x2b, 0x88, 0xc3, 0x53, 0xcd, 0xa0, 0x87, 0x3b, 0xde, 0x7f, 0x50, 0x8b, 0xb2, 0xb7, 0xf3, 0x71, 0x47, 0x8d, 0x70, 0x69, 0xa4, 0x57, 0xeb, 0x7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0x9a, 0x5, 0x93, 0x58, 0x8e, 0x28, 0x8c, 0x2b, 0xdc, 0xa3, 0x4a, 0x21, 0xc4, 0x7e, 0xa1, 0x99, 0x4b, 0x2f, 0x3a, 0x41, 0xf7, 0x7f, 0x5e, 0xbe, 0xbc, 0x9f, 0xfd, 0x1b, 0x36, 0x35, 0xb8}} return a, nil } -var _flowtokenCreate_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x4d\x6f\xe3\x36\x10\xbd\xf3\x57\x0c\xf6\xd0\x7a\x03\x47\xee\xe7\xc5\x48\x0b\x18\x9b\xa6\xd8\xcb\x16\x70\x82\xf6\xd8\x1d\x93\x23\x93\x0d\x4d\x0a\xe4\xc8\xaa\x11\xf8\xbf\x17\x24\x65\x5a\x0a\x50\xfb\x64\x8a\x6f\xde\xbc\x37\xf3\xa4\xd5\xdd\x9d\x10\x2f\xda\x44\xe0\x80\x2e\xa2\x64\xe3\x1d\x98\x08\x08\x4c\x87\xce\x22\x13\xb4\x3e\xa4\xe3\xe4\x9e\x35\x32\x48\xdf\x5b\x05\x3b\x82\x3e\x92\x12\xec\x21\x12\x43\xdf\x01\x3a\x40\x29\x7d\xef\x18\xd8\xa7\xe2\x01\x83\x02\x45\x9d\x8f\x86\x49\x01\xfb\x57\x72\x31\xdd\xa1\xf3\xac\x29\x40\x20\x49\xe6\x48\xa1\x11\xe2\x73\x0b\xe8\x4e\xde\x11\x44\x72\x2a\x4e\xc1\xa9\x4f\xf8\x36\xc2\x53\x61\xa4\x00\xdb\xb1\x6e\x29\x58\x53\x3d\xc1\x60\xac\x85\x7f\xfa\xc8\xb5\x39\x6b\x1f\x69\xc2\x95\xe0\x7f\x62\x6f\xb9\x38\xd1\x18\x61\x47\xe4\x44\x72\x80\x31\x5f\x07\x92\xa6\x33\xe4\x18\xd0\x29\xa0\x83\x49\x7f\x80\x8e\xe9\x49\x2e\x32\x4e\x19\x89\x4c\x51\x0c\xda\x48\x9d\xd5\x5d\x1a\x26\x97\xfa\xd2\xb0\x19\x07\x3c\xe0\x69\x09\x26\xf9\x03\xdf\xb6\xf7\x52\xa3\x71\x10\x29\x1c\x8d\x24\x18\xd0\x71\x96\x76\xf0\xce\xb0\x0f\x30\x68\x9f\xd6\x30\x12\x1a\xb7\x17\x57\xf9\x86\x97\x60\x18\x24\x3a\x18\x90\xa5\x2e\xb2\xf2\x55\x24\x82\x41\x53\xa0\x89\x00\x90\x78\x20\x68\x83\x3f\x34\x42\x3c\x33\x75\x23\xb2\x6c\xab\xac\x2a\xc2\x60\x58\x97\x82\xea\x22\xac\x85\xf8\xbe\x81\x17\x4d\xf0\xd4\xbb\xbd\xd9\x59\x82\x97\x8c\x90\xde\x71\x40\x99\xa6\xc0\x14\x5a\x94\x04\x51\xe7\x3c\xa0\x0d\x84\xea\x94\x72\xa1\xa8\xb3\xfe\x44\x0a\xa2\x3f\x50\x16\x25\x7e\x28\x6c\xd8\x75\xd6\x48\x4c\x7c\x3c\xe7\x1b\x59\x26\xd5\x8d\xf8\xb1\x14\x4d\x36\x32\xc6\x6b\x04\x6b\x3c\x12\xe0\xb8\xd0\x14\x56\xce\x79\x2e\xc4\x81\x90\x49\x09\x00\xc8\x8b\x8c\xec\x03\x29\x30\x0e\x0c\xc7\x7c\xc2\x3d\x15\xef\x08\x5d\xbf\xb3\x26\x6a\x52\x35\x4b\xe2\xa7\x06\x1e\xb3\x90\x3c\xcf\xaf\xd9\xfd\x53\xdd\x49\x23\x95\xfc\x7a\x15\x9f\x53\xaa\x4c\xdb\x52\x98\xc8\x14\x3f\x37\x29\xb3\x80\xe0\x68\x80\x4d\x79\xb8\x86\x4f\x59\x59\xa6\xbd\xf8\x71\x3e\x1c\xd0\xda\xd3\x32\xcb\x65\x4d\x0e\x42\xef\x4a\xe7\x62\xe4\xef\xba\x9a\xd2\x7a\xf2\x52\x96\xa2\x3d\x31\x1b\xb7\x87\xd9\x0b\x91\x56\x3f\x6b\x54\x02\xfc\x2e\xe8\x8d\xb8\x5b\x09\x61\x0e\x9d\x0f\x5c\xf7\x5d\xd6\x9d\x09\x3e\xcc\x9e\x7d\xa8\x48\xeb\x87\x19\xea\x72\xae\x88\x77\x43\x2b\xb8\xef\xfe\x7d\xfa\x63\xfb\xd7\x66\xfb\xf8\xf9\xcb\xef\x9b\xc7\xc7\xed\x6f\xcf\xcf\x42\x4c\xec\x2c\x2e\x1f\x85\x35\x6c\x94\x0a\x14\xe3\x47\x78\x13\xd9\x63\x17\xa8\xc3\x40\x0b\x94\x92\xd7\xb0\xe9\x59\x8f\x43\x4d\x08\x18\x7f\x96\x78\x92\x98\x5f\xd2\x60\x46\x54\x65\xfe\x58\xc1\xe9\xd7\xec\x89\x3f\x61\x87\x3b\x63\x0d\x9f\x1e\xbe\x79\x9b\xd9\x6d\x2e\xc3\x3c\xff\xba\x58\xe5\x9c\xc8\x55\x7b\x71\xba\xad\x84\xb3\xf6\xc7\x1c\xc8\x87\xfb\xf7\x03\x68\xca\x2e\xbf\xd0\x50\x3f\x65\x8b\x2a\x75\x7d\x55\x7d\xd5\x97\x9c\x36\x11\x8f\xb4\x78\xb8\xcf\xac\x4b\x60\xbf\x86\xd5\x98\xdf\xab\x92\x4a\x38\x91\x92\x3e\x39\xa9\x7e\xe6\xef\x86\x89\x46\x6a\x92\xaf\xb7\x06\x30\x9d\x73\x95\xd7\x3b\x6b\xdc\xeb\xad\xe1\x5c\xe0\xe7\xb9\xaf\x54\x76\xab\xdb\xac\xd5\xff\xd2\x2f\x67\x30\xc6\xb0\x27\xbe\x39\xa1\x8a\x2f\xc2\xce\xe2\x2c\xfe\x0b\x00\x00\xff\xff\x84\xe0\xd4\x8e\x0d\x07\x00\x00" +var _flowtokenCreate_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\x4d\x6f\xe3\x36\x10\xbd\xf3\x57\x4c\xf7\xb0\xb5\x03\x47\xee\xe7\xc5\xc8\x16\x48\x93\xa6\xd8\xcb\x16\x48\x82\xed\xb1\x3b\x26\x47\xe6\x34\x32\x29\x90\x23\xab\xc6\x22\xff\xbd\x20\x29\xcb\x52\x80\xe4\xb4\x3a\x89\x9a\x99\x37\xef\xbd\x19\x71\x7d\x71\xa1\xd4\xa3\xe5\x08\x12\xd0\x45\xd4\xc2\xde\x01\x47\x40\x10\xda\xb7\x0d\x0a\x41\xed\x43\x3a\x4e\xe2\x62\x51\x40\xfb\xae\x31\xb0\x25\xe8\x22\x19\x25\x1e\x22\x09\x74\x2d\xa0\x03\xd4\xda\x77\x4e\x40\x7c\x2a\xee\x31\x18\x30\xd4\xfa\xc8\x42\x06\xc4\x3f\x91\x8b\x29\x86\xce\x8b\xa5\x00\x81\x34\xf1\x81\x42\xa5\xd4\xc7\x1a\xd0\x1d\xbd\x23\x88\xe4\x4c\x9c\x26\xa7\x3e\xe1\xfb\x08\x77\x05\x91\x02\xdc\x0f\x75\x2b\x25\x96\xc6\x13\xf4\xdc\x34\xf0\x6f\x17\x65\x6c\x2e\xd6\x47\x9a\x60\xa5\xf4\xcf\xd8\x35\x52\x94\x58\x8c\xb0\x25\x72\x2a\x29\xc0\x98\xc3\x81\x34\xb7\x4c\x4e\x00\x9d\x01\xda\x73\x7a\x01\x3a\xa4\x2f\xb9\x88\x9d\x61\x8d\x42\x51\xf5\x96\xb5\xcd\xec\x4e\x0d\x93\x4a\x7b\x6a\x58\x0d\x06\xf7\x78\x5c\x01\x27\x7d\xe0\xeb\xfa\x52\x5b\x64\x07\x91\xc2\x81\x35\x41\x8f\x4e\x32\xb5\xbd\x77\x2c\x3e\x40\x6f\x7d\x1a\xc3\x00\xc8\x6e\xa7\xce\xf4\x59\x56\xc0\x02\x1a\x1d\xf4\x28\xda\x16\x5a\x39\x14\x89\xa0\xb7\x14\x68\x42\x00\x34\xee\x09\xea\xe0\xf7\x95\x52\x0f\x42\xed\x90\x59\xa6\x55\x46\x15\xa1\x67\xb1\xa5\x60\x54\x11\x36\x4a\xfd\x58\xc1\xa3\x25\xb8\xeb\xdc\x8e\xb7\x0d\xc1\x63\xce\xd0\xde\x49\x40\x9d\x5c\x10\x0a\x35\x6a\x82\x68\xf3\x3e\x60\x13\x08\xcd\x31\xed\x85\xa1\xb6\xf1\x47\x32\x10\xfd\x9e\x32\x29\xf5\x53\x41\xc3\xb6\x6d\x58\x63\xc2\x93\x39\xde\x80\x32\xa9\xae\xd4\xcf\xa5\x68\x32\x91\x61\xbd\x86\x64\x8b\x07\x02\x1c\x06\x9a\x96\x55\xf2\x3e\x17\xe0\x40\x28\x64\x14\x00\xe4\x41\x46\xf1\x81\x0c\xb0\x03\x96\x98\x4f\xb8\xa3\xa2\x1d\xa1\xed\xb6\x0d\x47\x4b\x66\xdc\x25\xf5\x4b\x05\xb7\x99\x48\xf6\xf3\x4b\x56\x7f\x37\xce\xa4\xd2\x46\x7f\x39\x93\xcf\x5b\x6a\xb8\xae\x29\x4c\x68\xaa\x5f\xab\xb4\xb3\x80\xe0\xa8\x87\xeb\xf2\x71\x03\x37\x99\x59\x86\x3d\xe9\x71\x3e\xec\xb1\x69\x8e\xab\x4c\x57\x2c\x39\x08\x9d\x2b\x9d\x8b\x90\x7f\xc6\xd1\x94\xd6\x93\x9f\xb2\x14\xed\x48\x84\xdd\x0e\x66\x3f\x44\x1a\xfd\xac\x51\x59\xe0\x17\x8b\x5e\xa9\x8b\xb5\x52\xbc\x6f\x7d\x90\x71\xde\x65\xdc\x19\xe0\xdd\xec\xdb\xbb\x31\xb3\xf1\xfd\x2c\xeb\x74\x1e\x33\x5e\x98\x56\xf2\x7e\xf8\xef\xee\xaf\xfb\xbf\xaf\xef\x6f\x3f\x7e\xfa\xf3\xfa\xf6\xf6\xfe\x8f\x87\x07\xa5\x26\x72\x16\xa7\x4b\x61\x03\xd7\xc6\x04\x8a\x71\x09\x5f\x55\xd6\xd8\x06\x6a\x31\xd0\x02\xb5\x96\x0d\x60\x27\x76\xf1\xbb\x0f\xc1\xf7\x9f\xb1\xe9\x68\x05\x37\xd8\xe2\x96\x1b\x16\xa6\xb8\x84\xf7\x83\xe3\xa9\x1c\x86\xa7\x21\x99\xac\xd3\x87\xe4\xda\x90\x35\xb6\x5d\x8e\xc9\xe9\xa9\xf4\x04\xb3\xda\x91\x5c\xbd\xff\x3a\xb3\xa3\x3a\x99\xfd\xfc\xdb\x62\x9d\xf7\x48\xaf\xeb\x93\x13\xa7\xd8\xf2\x3b\x35\xa3\x70\xc8\x1b\x7b\x75\xf9\xd2\xa1\xaa\x0c\xfb\x13\xf5\xe3\x5d\xb7\x18\xe9\x6e\xce\xcc\xcf\x1c\x93\x15\xd5\xb0\xcd\x55\xc4\x03\x2d\xae\x2e\x33\xfa\x0a\xc4\x6f\x60\x3d\x84\xce\x94\x46\xe0\xe5\x99\x12\xd7\x99\x95\xc6\x16\x3e\x14\xc4\x6f\xa3\x7a\x62\xfc\xd0\x46\x63\x5b\x69\x4b\xfa\x69\xf1\x32\x38\x8a\xe9\x5c\xc3\xee\xe9\x0d\xd4\x59\xd9\xb3\x3a\xbf\xcd\x2c\x1e\xff\x97\x9b\x57\x54\x9d\x4c\xe3\x18\x3b\x7a\x53\xdf\x5b\x1e\xce\xa8\xcf\xf0\x87\x3b\xe5\x2d\xe4\x99\x92\x29\xe1\xd5\x2c\x82\xb2\x81\x57\xed\x38\xa7\x16\x32\xcf\xea\x59\xfd\x1f\x00\x00\xff\xff\x39\xbc\x66\xfe\xdc\x07\x00\x00" func flowtokenCreate_forwarderCdcBytes() ([]byte, error) { return bindataRead( @@ -1670,11 +1670,11 @@ func flowtokenCreate_forwarderCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/create_forwarder.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x62, 0x9a, 0x56, 0x99, 0xaf, 0x95, 0xe9, 0xb7, 0xa1, 0x62, 0xc8, 0xe2, 0xe2, 0x4, 0xda, 0x6, 0x2c, 0x61, 0xe8, 0x9d, 0x89, 0x85, 0xf0, 0x6f, 0x3a, 0xd7, 0x36, 0xc4, 0xb5, 0x4d, 0xb1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0xab, 0xe8, 0x46, 0x94, 0x15, 0x2f, 0x7f, 0xd3, 0xb7, 0xe5, 0xdb, 0x7a, 0x6a, 0xc, 0x89, 0x4f, 0x7a, 0x57, 0xef, 0x60, 0x14, 0x1e, 0x78, 0xb9, 0xae, 0x1d, 0x79, 0x2f, 0x0, 0x3d, 0x22}} return a, nil } -var _flowtokenMint_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\x4d\x6f\x9c\x3c\x10\xbe\xf3\x2b\x46\x1c\x22\x90\xde\xc0\xe5\x55\x0f\x68\x93\x08\x55\xca\xad\x3d\xb4\x49\xef\xc6\xcc\xb2\xa3\x1a\x1b\x8d\x87\x6c\xa2\x55\xfe\x7b\x65\x0c\xec\x92\x66\xeb\xcb\x6a\xcd\x33\xcf\xd7\x98\xfa\xc1\xb1\xc0\xe3\x68\x3b\x6a\x0c\x3e\xb9\xdf\x68\x61\xcf\xae\x87\x74\x73\x97\x26\x0b\xd2\xb8\xe3\x06\xb5\xfc\x4f\x93\xa4\x2c\x4b\x78\x3a\x90\x07\x61\x65\xbd\xd2\x42\xce\x42\x4f\x56\x3c\x48\x80\x78\x18\x3d\xd9\x0e\xe4\x80\xa0\xb4\x76\xa3\x15\x90\x83\x12\xf0\xe2\x18\xfd\x74\x1f\xf8\x20\x0a\xd4\x6d\x4f\x16\x18\xbd\x1b\x59\xe3\x99\x9d\x22\xd2\x23\xbf\x90\x5e\x99\x92\xe4\x42\x35\x63\xd4\x34\x10\x5a\xa9\xa0\x6e\x5b\x46\xef\xff\x03\xd5\x07\x5c\x05\xcf\x8f\xf4\xfa\xe5\xff\x1c\x4e\x49\x02\x00\x60\x50\xa2\xbd\x49\xaf\x82\x9b\x35\x52\x31\xdd\x90\x17\x56\xe2\x78\x0b\xfe\x81\x1a\xe9\x05\xb9\x82\x9b\xd3\xa6\xa9\x62\xf9\xf2\x1e\xe9\x07\xc6\x41\x31\x66\x9e\x3a\x1b\xe0\xf5\x28\x87\x3a\x5a\x5e\x2d\x84\xe3\xd1\xec\x8b\xb3\x0f\xb8\x83\x38\xb1\x02\xc2\x29\x1a\xc7\xec\x8e\xbb\x6b\x1e\xef\xb3\xb0\x95\x0a\xca\xd0\xa8\xea\xb0\xdc\x2f\xb8\x09\x96\x6f\xc8\x1e\x1e\x60\x50\x96\x74\x96\xfe\x9c\x94\x42\xb1\xd6\xc9\x54\xee\x64\x04\x54\x18\x4a\xf3\xcf\x4c\x2e\x29\xe1\x0e\x3a\x94\x39\xd0\xb9\xf6\xad\x52\xd1\xa1\x7c\x55\x83\x6a\xc8\x90\xbc\x65\xe5\x30\x36\x86\xf4\xd9\xdc\x42\x96\x7f\x1e\xf6\x5a\xc1\xf7\xd9\xb5\x40\xcf\x56\x35\x26\xa4\x80\xc8\x01\xbc\xd8\x65\xdc\x23\xa3\xd5\x98\xc6\xd9\x79\x4b\xf8\x8a\x7a\x14\x84\xd3\x4a\x18\x36\x1d\xde\x2e\x32\xec\x6e\x3f\x6e\xa7\xd0\x8c\x4a\xf0\x3b\x1e\xbf\x4d\x90\x4c\x19\xe3\x8e\xd8\xd6\xf3\x13\x8b\x4f\x2d\xff\x9b\xac\xfd\xa5\x46\x23\x81\x31\x72\x17\xe1\x67\x8a\xe5\x33\xf5\x61\xf8\x1f\xad\x17\x2d\x0e\xce\x93\xcc\xeb\xde\xdd\x5e\x90\x5f\x0c\xb6\xe8\x85\xdd\xdb\xac\x35\xe7\x7d\xff\x13\x00\x00\xff\xff\xbd\x70\xe8\x8d\xf4\x03\x00\x00" +var _flowtokenMint_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\xb1\x6e\xdb\x30\x10\xdd\xf5\x15\x57\x0d\x86\x04\x34\xd4\x52\x74\x30\x9c\x04\xee\x90\xad\x1d\xda\x24\x3b\x4d\x9d\xe5\x43\x69\x52\x38\x9e\xe2\x14\x46\xfe\xbd\x20\x29\xd9\x56\x1a\x97\x8b\x20\xf2\xdd\xbb\xf7\xde\x1d\xed\x7b\xcf\x02\x0f\x83\xeb\x68\x63\xf1\xd1\xff\x46\x07\x5b\xf6\x7b\x28\x67\x77\x65\x31\x21\xad\x3f\xcc\x50\xd3\x7f\x59\x14\x4d\xd3\xc0\xe3\x8e\x02\x08\x6b\x17\xb4\x11\xf2\x0e\xf6\xe4\x24\x80\x44\x48\x80\x21\x90\xeb\x40\x76\x08\xda\x18\x3f\x38\x01\xd9\x69\x81\x20\x9e\x31\xa4\xfb\xc8\x07\xb9\xc1\xba\xdd\x93\x03\xc6\xe0\x07\x36\x78\x66\xa7\x8c\x0c\xc8\x2f\x64\x4e\x4c\x45\x71\xd1\xb5\x62\x34\xd4\x13\x3a\x59\xc2\xba\x6d\x19\x43\xf8\x0c\x7a\x1f\x71\x4b\x78\x7a\xa0\xd7\xaf\x5f\x6a\x38\x16\x05\x00\x80\x45\xc9\xf2\x52\xbf\x25\x2c\x4e\x96\x54\xba\xa1\x20\xac\xc5\xf3\x1c\xfc\x13\x0d\xd2\x0b\xf2\x12\x16\xc7\x59\x52\x6a\x7a\x79\xcb\xf4\x3d\x63\xaf\x19\xab\x40\x9d\x8b\x70\x3d\xc8\xae\xfa\xe6\x99\xfd\xe1\x59\xdb\x01\x6b\x58\xac\xb3\x83\x93\xa2\x78\x02\xda\xad\x3a\xcb\x82\x5b\xc8\x04\x2a\x66\xa5\x3b\x3c\x01\xe3\x51\x9b\xc4\xb7\xba\x26\xfd\xae\x8a\xc3\x5a\x42\x33\x16\x37\xdb\x09\x97\x60\xf5\x8c\xec\xfe\x1e\x7a\xed\xc8\x54\xe5\xaf\xd4\x31\xe6\xed\xbc\xa4\xcc\x93\x20\xd0\xb1\xa8\xac\x3f\x12\x3b\x99\x87\x5b\xe8\x50\x46\x63\xe7\x69\xcc\x3b\x29\xa3\x7b\xbd\x21\x4b\x42\x18\x54\x87\xb2\xba\x9a\xe5\x5d\xd5\xf4\xc3\xc6\x92\x39\x4b\x9f\xde\xea\x4f\x1f\x65\x51\x5d\x33\xf5\xe4\xf4\xc6\x46\x27\x90\x81\xc0\x93\x64\xc6\x2d\x32\x3a\x83\x65\xae\x1d\x07\x88\xaf\x68\x06\x41\x38\x9e\x08\xe3\x12\xc4\xb5\x46\x86\xd5\xcd\xfb\x49\x29\xc3\xa8\x05\x7f\xe0\xe1\x7b\x82\x54\xda\x5a\x7f\xc0\x76\x3d\x6e\x5f\xde\xc2\xfa\x5f\xb2\xf6\x59\x0f\x56\x22\x63\xe6\x56\xf1\x93\x9c\x86\x4a\xbf\x2b\xfe\x4f\xf2\xaa\xc5\xde\x07\x92\x71\xe4\xab\x9b\x0b\xf2\x8b\xc2\x16\x83\xb0\xff\x33\xf6\x1a\xfd\xbe\xfd\x0d\x00\x00\xff\xff\x64\xd2\xbe\x72\x0f\x04\x00\x00" func flowtokenMint_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1690,11 +1690,11 @@ func flowtokenMint_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/mint_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0xb4, 0xab, 0xe0, 0x1f, 0xf7, 0x4b, 0x2f, 0xa2, 0xc4, 0xbe, 0x81, 0x22, 0x80, 0x5e, 0xb2, 0x17, 0x19, 0xee, 0xb7, 0x86, 0x19, 0x1b, 0xfa, 0x12, 0x20, 0x9d, 0xe7, 0x0, 0x31, 0xed, 0xf8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0x6, 0x53, 0x7d, 0x25, 0x77, 0x12, 0xd3, 0xbc, 0x23, 0xaa, 0xb5, 0xf0, 0x80, 0xc7, 0x63, 0x64, 0x47, 0x7c, 0xda, 0x22, 0x20, 0xb6, 0x1c, 0x12, 0x83, 0xb2, 0x12, 0xe4, 0x90, 0xa5, 0x79}} return a, nil } -var _flowtokenScriptsGet_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\xcd\x4e\xc3\x30\x10\x84\xef\x7e\x8a\x51\x0e\x90\x5c\x92\x0b\xe2\x50\x01\x55\xa9\xd4\x07\x40\x85\xfb\xc6\x59\xb7\x16\xae\x1d\xd9\x6b\x0a\xaa\xfa\xee\xa8\xcd\x0f\xd4\x27\xff\xcc\x37\xbb\xb3\x6e\x1a\x6c\xf7\x36\x21\xe9\x68\x7b\x41\x64\xea\x12\x64\xcf\x68\xc9\x91\xd7\x0c\x63\xd9\x75\x08\x06\xe4\x41\x5a\x87\xec\xe5\x3e\x61\xe3\xc2\x71\x1b\x3e\xd9\xe3\x75\xd0\x29\x65\x0f\x7d\x88\x82\x4d\xf6\x3b\xdb\x3a\x1e\x5e\x4d\x0c\x07\x14\x37\x77\xc5\xac\x9c\x3d\x46\xd5\x74\x2e\x94\x22\xad\x39\xa5\x92\x9c\xab\x60\xb2\xc7\x81\xac\x2f\xc7\xf2\x0b\xac\xba\x2e\x72\x4a\xd5\x02\xef\x1b\xfb\xfd\xf8\x80\x93\x52\x00\xe0\x58\xf0\x45\xd9\xc9\x1b\x1b\x3c\x63\xc7\xb2\x1a\x90\x09\xad\xae\xb2\xcb\xaa\x77\x2c\x6b\xea\xa9\xb5\xce\xca\x4f\xd9\xf4\xb9\x75\x56\x37\x66\xea\x61\x8c\xf5\x0f\x68\x43\x8c\xe1\xf8\x74\x37\xb7\x59\x7f\x5c\x4a\x9d\x6e\xc2\xd5\x23\x77\x7e\x29\xff\xd0\xe5\x12\x3d\x79\xab\xcb\x62\x1d\xb2\xeb\xe0\x83\x60\x70\x9b\xa6\x87\xc8\x86\x23\x5f\x76\x12\xae\xe3\xbf\x7a\x17\xd5\x90\x2b\xb2\xe4\xe8\xe7\x68\xf5\xf8\x37\xea\xac\x7e\x03\x00\x00\xff\xff\x56\x32\x0c\x91\xbf\x01\x00\x00" +var _flowtokenScriptsGet_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\xcf\x4e\xf3\x30\x10\xc4\xef\x7e\x8a\xf9\x72\xf8\x48\x2e\xc9\x05\x71\xa8\x80\xaa\x20\xf5\x01\x50\xe1\xee\x38\xeb\x76\x85\x6b\x47\xf6\x9a\x22\x55\x7d\x77\xd4\xfc\xab\x9a\x53\xec\xfd\xed\xcc\x8e\xb7\x69\xb0\x3b\x70\x42\x32\x91\x7b\x41\x24\xdd\x25\xc8\x81\xd0\x6a\xa7\xbd\x21\x58\x26\xd7\x21\x58\x68\x0f\x6d\x4c\xc8\x5e\x1e\x12\xb6\x2e\x9c\x76\xe1\x9b\x3c\xde\x46\x4e\x29\x3e\xf6\x21\x0a\xb6\xd9\xef\xb9\x75\x34\x56\x6d\x0c\x47\x14\x77\x77\xc5\x42\x2e\x1a\x13\x35\x9f\x0b\xa5\xb4\x31\x94\x52\xa9\x9d\xab\x60\xb3\xc7\x51\xb3\x2f\x27\xfb\x15\x36\x5d\x17\x29\xa5\x6a\x85\xcf\x2d\xff\x3e\x3d\xe2\xac\x14\x00\x38\x12\xfc\xe8\xec\xe4\x83\x2c\x5e\xb0\x27\xd9\x8c\x2d\x73\x6b\x35\x60\xd7\xaf\x36\xba\xd7\x2d\x3b\x16\xa6\x54\xef\x49\x9e\xff\x2f\xfe\xf5\xd7\x55\xe3\x7c\x37\x75\x3d\xe5\xbc\xbc\x96\x4d\x9f\x5b\xc7\xa6\xb1\x33\x3f\x95\xaa\x7f\x37\xf5\x36\xc4\x18\x4e\xe5\xcd\x6f\xbd\x46\xaf\x3d\x9b\xb2\x78\x0f\xd9\x75\xf0\x41\x30\x42\xf3\x0b\x22\x92\xa5\x48\xd7\x3f\x09\xc3\x0a\x86\x31\x8a\x6a\xcc\x16\x49\x72\xf4\x4b\xbc\x7a\xda\x8f\xba\xa8\xbf\x00\x00\x00\xff\xff\x5b\x5b\xf0\xc3\xc3\x01\x00\x00" func flowtokenScriptsGet_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -1710,7 +1710,7 @@ func flowtokenScriptsGet_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/scripts/get_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0xb8, 0x2d, 0x30, 0x53, 0xb2, 0x1c, 0x7, 0xe3, 0xeb, 0x6b, 0xc6, 0xad, 0x52, 0x28, 0xaa, 0x96, 0xb2, 0xce, 0x9f, 0x1e, 0x1b, 0x24, 0x80, 0x9f, 0xe9, 0x39, 0xe7, 0x1d, 0xc2, 0x44, 0x69}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4c, 0xcf, 0xb2, 0x8c, 0x14, 0xdf, 0x77, 0xe7, 0xd2, 0xe8, 0xc8, 0x5d, 0x10, 0x4d, 0xd5, 0x3d, 0xf8, 0xf3, 0x1a, 0x4e, 0x75, 0xa1, 0x97, 0xad, 0x3b, 0xfe, 0x7c, 0x76, 0x1d, 0x30, 0x80, 0xa8}} return a, nil } @@ -1734,7 +1734,7 @@ func flowtokenScriptsGet_supplyCdc() (*asset, error) { return a, nil } -var _flowtokenSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xdd\x6a\xdc\x3c\x14\xbc\xd7\x53\x0c\x7b\xf1\xe1\x85\x7c\xeb\xfb\x90\x04\xd2\xd2\x3e\x40\x09\xbd\x3f\x96\x8f\x6d\x11\xad\x24\xa4\xa3\x6c\x97\x65\xdf\xbd\xc8\x3f\xbb\x75\xd3\x85\x42\xa8\x2e\x8c\x75\x66\x34\x9e\x19\x59\xd5\x35\x5e\x06\x93\x20\x91\x5c\x22\x2d\xc6\x3b\x98\x04\x82\xf0\x3e\x58\x12\x46\xe7\x63\xd9\x5e\xf1\x72\x46\x3c\xa8\x6d\x41\xf8\x4e\xd9\x0a\x22\x27\x9f\xa3\xe6\x32\x97\x81\x4d\x04\x69\xed\xb3\x93\xc2\x4d\x65\x46\x52\x80\x23\x34\x39\xe4\xc4\x65\x83\xce\xfa\xc3\x8b\x7f\x65\xa7\x94\xd9\x07\x1f\x05\x5f\xb3\xeb\x4d\x63\x79\x9c\xa2\x8b\x7e\x8f\xcd\x6a\xb6\xb9\x30\x97\xb3\x0b\x6b\xd9\x6f\x94\xfa\x35\xcb\x49\x29\x00\x08\x91\x03\x45\xae\x92\xe9\x1d\xc7\x7b\x3c\x67\x19\x9e\x27\x8b\xdb\x85\x53\x96\xe9\x30\x51\x76\x8d\x8f\xd1\x1f\x1e\xfe\xbb\x08\xef\xc6\xa8\x4f\x55\xf9\xde\x3d\xea\x24\x3e\x52\xcf\xf5\x25\xc4\x08\x6f\xf1\xf8\x08\x67\x2c\x4e\x17\xc9\xb2\xea\x1a\x9f\x23\x97\x36\x09\x8e\x0f\xd7\xe4\x73\x7f\xe4\x5a\x84\x2c\x30\x02\xe3\x30\x4b\xaf\x14\x66\x57\x89\xde\xb8\x7a\xf8\xff\x6a\x4a\x8f\xb2\x5f\xf6\x41\x8e\xa3\x54\xb5\xbd\x83\xf8\xdb\xfe\xd4\x4d\x5f\x21\x37\xd6\x68\x68\x0a\xd4\x18\x6b\xe4\x38\x5f\xe6\x6c\x71\xbc\x42\xef\xec\x11\xfc\x23\xf8\xc4\xe9\x77\xa1\x42\x6d\x39\xf8\x64\x04\x5d\x76\x53\xfd\x32\x44\x9f\xfb\x61\x04\xbf\xb1\x66\xf3\xc6\x11\xc6\x09\xc7\x8e\xf4\x1f\x13\x5a\xe3\x5e\xdf\xb5\x7e\x5a\xfd\x04\xbb\x45\xe9\xfc\x54\xad\x24\x46\x27\x53\x8e\x6b\xee\x85\x7c\xf7\x8e\x2a\x14\x7b\x96\x9b\x5d\xad\xf8\xff\xb8\xb8\x86\x2c\x39\xcd\xe8\x0c\xdb\x76\xd5\xda\xa7\x19\xf9\x70\x69\xb3\xd0\x5f\x75\x36\x73\x3f\x5a\xd9\xf2\x76\x56\xd3\xf3\xac\xf0\x33\x00\x00\xff\xff\x47\x64\xa2\x4a\x71\x04\x00\x00" +var _flowtokenSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x52\xcb\x8e\x1a\x3b\x10\xdd\xf7\x57\x1c\xb1\x18\x35\x12\x97\xde\xa3\x61\xa4\x9b\x51\xf2\x01\xc9\x28\xfb\xc2\x5d\x4d\x5b\x31\xb6\x65\x97\x21\x08\xf1\xef\x91\xfb\x45\x9a\x99\xc9\x26\x51\x16\xf1\x02\xe1\xaa\xe3\xaa\xf3\xe8\xa2\xaa\xf0\xd2\xea\x08\x09\x64\x23\x29\xd1\xce\x42\x47\x10\x84\x0f\xde\x90\x30\x1a\x17\xf2\xf5\xd6\xcf\x6f\xc4\x81\xea\x1a\x84\xaf\x94\x8c\x20\x70\x74\x29\x28\xce\x75\x69\x59\x07\x90\x52\x2e\x59\xc9\xd8\x98\x6b\x24\xb9\x71\x86\x22\x8b\x14\x39\x5f\xd0\x18\x77\x7a\x71\xdf\xd8\x16\x85\x3e\x78\x17\x04\x9f\x92\xdd\xeb\x9d\xe1\xae\x8a\x26\xb8\x03\x16\xb3\xda\x62\x42\x8e\x6f\x47\xd4\x78\x5f\x14\xc5\xcf\x5a\x2e\x45\x01\x00\x3e\xb0\xa7\xc0\x65\xd4\x7b\xcb\x61\x03\x4a\xd2\x96\x5f\xc4\x05\xda\xf3\x12\x0f\xff\xf7\x6c\x97\x23\x3c\x1f\xdd\xa0\x47\xaf\x63\x8f\x5b\xef\x5c\x08\xee\xf4\xf8\x30\xed\x5a\x77\xea\x9f\xca\x4c\x61\x83\x6a\xc0\x55\x93\xae\xae\xbd\xc4\x76\x0b\xab\x0d\x2e\xd3\xe8\x7c\xaa\x0a\xcf\x81\xb3\xc1\x04\xcb\xa7\x9b\x19\x83\xa5\x64\x6b\xf8\x24\xd0\x02\x6d\x31\x8c\x9e\x4d\xb8\x63\x17\xe9\xc8\xe5\xe3\x7f\x37\x72\xaa\x1b\xff\xf1\xe0\xe5\xdc\x8d\x2c\x97\x2b\x88\x7b\x9f\x67\xf1\x2e\x3f\x9f\x76\x46\x2b\x28\xf2\xb4\xd3\x46\xcb\x79\xc8\x79\xa0\xda\xa5\xeb\xac\x39\x83\xbf\x7b\x17\x39\xde\x0f\xca\xd0\x9a\xbd\x8b\x5a\xd0\x24\xdb\x27\x23\x6d\x70\x69\xdf\x76\xcd\xcf\xac\x58\x1f\x39\x40\x5b\xe1\xd0\x90\x9a\x2b\x35\x2c\x38\xe6\x55\xcf\xe4\xb1\x1d\x85\x4f\x74\x34\xc7\xc9\x05\x1d\x63\xe2\x57\x11\x5d\x66\x1f\xd1\x7a\x5c\x77\x7d\x2a\x67\x7b\x3a\xba\x6f\xbb\x33\xc3\xdd\x59\xf5\x16\x9f\xce\xb2\xd8\xfe\x0e\x93\x51\xf1\xea\x55\x87\x64\x83\xaa\x0f\xe5\x46\x73\x1c\xb5\xfa\x15\xd5\x3f\x9d\xea\x8e\x0c\x59\xc5\x68\x34\x9b\x7a\x16\xe9\x87\xa1\xf3\x77\x12\x1d\xb6\xfd\x53\x81\x0e\x9a\xee\xf3\x1c\xff\x5d\x8b\xfe\xf7\x5a\xe0\x47\x00\x00\x00\xff\xff\xa1\x25\xc5\xfd\xc6\x05\x00\x00" func flowtokenSetup_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -1750,11 +1750,11 @@ func flowtokenSetup_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/setup_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x61, 0x3c, 0xd0, 0xd0, 0x1e, 0x5, 0x7e, 0xb1, 0xd5, 0xf1, 0x86, 0x97, 0x83, 0xbf, 0xc, 0xb0, 0xb1, 0x71, 0x7, 0x71, 0x34, 0x7a, 0x1c, 0xa6, 0x75, 0xdd, 0xef, 0x71, 0x2f, 0xb2, 0x18, 0xe9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x72, 0x82, 0xbc, 0x88, 0x48, 0xfe, 0xd0, 0x94, 0x88, 0xf7, 0x51, 0xe0, 0x4a, 0x66, 0xab, 0x87, 0x66, 0xc, 0xd6, 0x54, 0x9a, 0x65, 0x24, 0xc8, 0x8e, 0x26, 0xec, 0x74, 0x56, 0xf2, 0xac, 0xbd}} return a, nil } -var _flowtokenTransfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x41\x4f\xdc\x3c\x10\x3d\x93\x5f\x31\xdf\x1e\x20\x2b\x7d\x24\x97\xaa\x87\x15\x85\x22\x2a\x7a\x47\xb4\x3d\x3b\xc9\xcb\xc6\x6a\xd6\x8e\xc6\x13\x02\x42\xfc\xf7\xca\x76\x1c\x36\x20\x95\xee\x65\x95\xf1\x9b\x37\x6f\xde\xb3\xcb\x92\xee\x3b\xed\x48\x58\x19\xa7\x6a\xd1\xd6\x90\x76\xa4\x48\x70\x18\x7a\x25\xa0\xd6\xb2\xff\x3c\x3a\x97\x4e\x49\x56\x96\x54\xdb\xb1\x6f\xa8\x02\x8d\x0e\x0d\x55\x4f\xa4\xcc\x93\x35\x20\xb1\xe4\x60\x1a\x12\xfb\x1b\xc6\xf9\x4f\x65\xac\x74\x60\x52\x75\x6d\x47\x13\x9a\x3d\x09\x75\xca\x51\x05\x18\x72\x10\x1a\x07\x0f\x65\xd4\xd0\x0f\x98\x9b\x8b\xac\x2c\xb3\xa0\x11\x34\x69\xe9\x1a\x56\x13\xa9\x83\x27\x21\xe5\x47\x74\x48\xa4\xd4\xb2\x3d\xd0\x1e\x72\xfd\x3a\x64\x4a\x0a\x3d\x6e\x50\xac\x0e\x10\x70\x90\xe4\x2b\x47\x4b\x65\x99\x3e\x0c\x96\x85\x6e\x47\xb3\xd7\x55\x8f\x7b\x3f\x3f\x72\x6e\x56\xb5\xcd\x82\xec\xed\xb4\x42\xa5\xef\x4d\x96\x1d\x31\xe7\x51\xee\x8e\x7e\xdc\xea\xc7\xcf\x9f\xfe\x27\xb1\x3b\xba\x6e\x1a\x86\x73\x5b\x7a\xce\x32\x22\xa2\x79\xc5\x9f\x6a\xec\x85\x18\xce\x8e\x5c\x63\xf6\xc8\xf6\x8d\x8b\x72\x67\x3f\x7d\x55\x31\xa8\x82\x36\xfb\xb8\x44\x0b\x66\x34\x81\xaa\x87\x78\xfb\x25\x70\xed\xe8\xeb\x4a\x7c\x11\xaa\x71\xe6\xc0\x18\x14\x23\x77\x7a\x6f\xc0\x3b\xba\x1e\xa5\x9b\xbd\x5b\x74\xcd\xda\xbe\x43\x48\x11\xa3\x05\xc3\xd4\x48\xfe\xc5\xce\x33\x47\x4e\x2c\xa3\xa1\x87\x40\x9e\xfa\xbc\x90\x50\xb9\x43\x4b\x5f\x66\x70\x51\x59\x66\x3b\x5d\xa8\x51\xba\x7c\x2d\xed\xd7\x9c\xaf\xaa\x7a\x6c\xe9\x74\xb1\x33\x6a\xbe\xcc\xbd\xcb\x3b\x2a\xfd\x2c\xb5\x47\xd9\xa6\xf3\x70\xbc\xcd\x4e\x4e\x4e\xae\xae\x68\x50\x46\xd7\xf9\xe6\x26\x04\x6f\xac\x50\x9c\xf7\x5e\xbb\x9d\xa2\xf4\xd0\xfd\xdf\x66\xbb\xda\x37\x49\x49\x96\x87\x80\x3f\xde\xd8\xa1\x6f\x8b\xc5\x7b\xba\x38\x5f\xf6\x2f\xd2\xe5\x5d\x6e\x43\xfc\xdf\x86\xde\x97\x38\x1c\x8f\xa8\x47\xc1\xbf\x79\xcf\xa8\xf5\xa0\x61\xe4\xcc\xd1\x5d\x7c\x33\xbc\xb2\x7e\x7e\x48\x1c\xdd\x3f\x7a\x18\xb9\xd8\xed\x82\xf4\xbf\x62\x0f\xb9\x51\x83\xaa\x74\xaf\xe5\x29\x2f\x87\xb1\xea\x75\xfd\x6a\x70\xa2\x7f\xd3\x35\x27\x79\xfa\xbc\x8e\x31\xa1\x5f\x2e\xf3\x8f\x43\x89\xd0\xbf\x6f\x17\xcc\x7c\x13\xd0\x37\x0c\xd6\x69\x09\xd8\x64\xad\x49\x69\x69\xf3\x8e\x83\xdf\x3a\x74\xe4\x4e\xd1\x44\xb2\xf9\x82\x5d\x9c\xaf\x63\x4c\x11\xbd\x64\x7f\x02\x00\x00\xff\xff\x86\x4e\x2d\xbe\x2c\x05\x00\x00" +var _flowtokenTransfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x4f\xdc\x3c\x10\x3e\x93\x5f\x31\xec\x01\x12\xe9\x25\xb9\xbc\xea\x61\xb5\x85\xd2\x56\xf4\x8e\x28\x3d\x4f\x92\xc9\xc6\xaa\xd7\x8e\xc6\x13\x02\x42\xfc\xf7\xca\x76\x1c\x36\x20\x95\xee\x65\x95\xf1\xcc\x33\xcf\x87\x5d\x55\x70\xd7\x2b\x07\xc2\x68\x1c\x36\xa2\xac\x01\xe5\x00\x41\xe8\x30\x68\x14\x82\xce\xb2\xff\x3c\x3a\x97\x1e\x25\xab\x2a\x68\xec\xa8\x5b\xa8\x09\x46\x47\x2d\xd4\x4f\x80\xe6\xc9\x1a\x02\xb1\xe0\xc8\xb4\x20\xf6\x37\x19\xe7\x3f\xd1\x58\xe9\x89\x01\x9b\xc6\x8e\x26\x0c\x7b\x10\xe8\xd1\x41\x4d\x64\xc0\x91\xc0\x38\xf8\x56\xa6\x86\xd4\x03\xcd\xc3\x65\x56\x55\x59\xe0\x48\x30\x29\xe9\x5b\xc6\x09\xf0\xe0\x41\x00\xfd\x8a\x9e\x12\x28\x74\x6c\x0f\xb0\x27\xb9\x7e\x5d\x32\x25\x86\xbe\x6f\x40\xc6\x03\x09\x71\xa0\xe4\x2b\x47\xa2\xb2\x4c\x1d\x06\xcb\x02\x37\xa3\xd9\xab\x5a\xd3\x9d\xdf\x1f\x31\x37\xab\xda\x66\xe9\xd4\x76\x5a\x75\xa5\xef\x4d\x96\x1d\x21\xe7\x91\xee\x16\x7e\xde\xa8\xc7\x4f\xff\xff\x07\x62\xb7\x70\xdd\xb6\x4c\xce\x15\xf0\x9c\x65\x00\x00\xb3\xc4\x7b\x1c\xb5\x00\x93\xb3\x23\x37\x34\x7b\x64\x75\xeb\x22\xdd\xd9\x4f\x5f\x45\x26\xa8\x49\x99\x7d\x14\xd1\x11\x33\xb5\x01\x4a\x93\x78\xfb\x25\x60\x6d\xe1\xcb\x8a\x7c\x19\xaa\x71\xe7\xc0\x34\x20\x53\xee\xd4\xde\x10\x6f\x01\x47\xe9\xf3\xaf\x96\xd9\x4e\xf7\xa8\x47\x2a\xe0\x6c\xb6\x72\xa1\x39\x53\xfd\x41\x02\x08\x4c\x1d\x31\x99\x86\x92\x9d\x11\xe8\xdc\x81\x13\xcb\xd4\xc2\x43\xd8\x95\xe6\x3c\xaf\x50\xb9\xa5\x0e\x3e\xcf\xcd\xa5\x6f\xc5\x3d\x95\x75\xd8\xbb\x0b\x1c\xd6\x8c\x7f\xcd\xb1\x63\xad\x3d\xa5\xc5\xe5\x28\xe5\x32\xf7\xe6\x6f\xa1\x9a\x81\xaa\x2e\x9d\x87\xe3\x22\x3b\x39\x39\xb9\xba\x82\x01\x8d\x6a\xf2\xcd\xb7\x70\x1f\x8c\x15\x88\xfb\xde\x6b\xb0\x53\x94\x10\xa6\x4f\x37\xc5\x4a\x77\xa2\x92\x92\x08\xb9\x7f\xac\xdc\x91\xee\xca\x25\x12\xd8\x5d\x2c\x3e\x94\xe9\x4e\x2f\x97\x24\xfe\x17\x61\xf6\x25\x2e\xa7\x47\x6a\x46\xa1\x7f\xcb\x80\xa9\x51\x83\x22\x23\xe7\x0e\x6e\xe3\x53\xe2\x55\x04\xf3\xfb\xe2\x98\xc2\xd1\x7b\xc9\xc5\x16\x4b\xa7\xff\x95\x0d\x0e\x58\x2b\xad\x44\x91\x2b\xf7\x24\xbb\xb3\xe7\x75\x34\x69\xc1\xcb\x65\x5e\x0d\x63\xad\x55\xf3\x6a\x7f\x3a\x2b\x4e\xd7\xa0\xd1\xf8\xfc\xe3\x60\xe2\xf8\xdf\x15\x06\x43\xdf\x84\xf4\x9d\x06\xeb\x94\x84\xde\x64\xaf\x49\x89\x29\xf3\x0e\x83\xdf\xba\x74\xe4\x50\xd9\x46\xb0\xf9\x92\xed\x2e\xd6\x51\xa6\x98\x5e\xb2\x3f\x01\x00\x00\xff\xff\xd8\xb1\x73\x51\x47\x05\x00\x00" func flowtokenTransfer_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1770,7 +1770,7 @@ func flowtokenTransfer_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/transfer_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0x56, 0x9b, 0xf5, 0xbf, 0x19, 0xb0, 0x44, 0x9, 0x5e, 0x7b, 0x5e, 0xb4, 0x63, 0x53, 0x5c, 0x76, 0xae, 0x4b, 0x4c, 0x2a, 0x7f, 0xd0, 0x16, 0xab, 0xf, 0x16, 0xc5, 0x7a, 0x1e, 0xd9, 0xde}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0x54, 0x57, 0xce, 0xc7, 0x3c, 0xd3, 0x18, 0xd, 0x47, 0xdb, 0xf7, 0x91, 0x87, 0x63, 0x71, 0x2, 0x2, 0x0, 0xb6, 0xd6, 0x88, 0x65, 0x30, 0x75, 0x1, 0x4f, 0xb4, 0x7a, 0xde, 0x17, 0x31}} return a, nil } @@ -1814,7 +1814,7 @@ func idtablestakingAdminAdd_approved_nodesCdc() (*asset, error) { return a, nil } -var _idtablestakingAdminCapability_end_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x53\x41\x4f\xdc\x4c\x0c\xbd\xe7\x57\x58\x7b\x40\x41\x42\xc9\xe5\xd3\x77\x58\x51\x10\x85\x22\x21\x71\x40\x2c\x3d\x23\x67\xe2\x6c\xa6\x24\xe3\x68\xc6\x21\xac\xd0\xfe\xf7\x6a\x66\x92\xb0\x29\x6c\x3b\x97\x48\xb1\xdf\xf3\xb3\xfd\xac\xdb\x8e\xad\xc0\x6d\xc3\xc3\xdd\xcd\x13\x16\x0d\x6d\x04\x5f\xb4\xd9\x42\x65\xb9\x85\xd5\xe7\xc0\x2a\x49\xf2\x1c\x9e\x6a\xed\x40\x2c\x1a\x87\x4a\x34\x1b\xe8\x1d\x39\x40\x70\x23\x1a\xcb\x56\x1b\x50\xd8\x61\xa1\x1b\x2d\x3b\x8f\x11\x86\x0e\x77\x60\x69\x40\x5b\xba\x33\x20\x53\x82\xd4\xf4\x81\xe9\x03\xd5\x19\xa0\x29\xe7\x20\x75\xac\xea\x2c\xc9\x73\xcf\x70\x27\xa0\xb8\x2d\xb4\x21\x17\x82\x1d\xee\x9e\x0f\xe9\x9e\x67\x2a\x53\x42\xcb\xaf\xf4\x2c\xfc\x42\x66\xa1\xd4\x79\xa2\xa1\xd6\xaa\xf6\x08\xf7\xb5\x82\x18\xb7\x54\xf5\x3e\xc5\x70\x49\x0e\x06\x2d\x35\x68\xe3\xfa\xaa\xd2\x4a\x93\x91\x00\x23\x4f\x37\x95\x73\x30\xd6\x2b\x48\x06\x22\x03\x45\xaf\x5e\x48\xdc\xa8\x1d\x1b\xc7\xe0\x48\xfc\xa0\x0c\x0d\x31\xd9\x37\xc1\xbd\x40\xc5\x36\x68\x31\xf4\x26\xb1\xeb\x24\x39\x90\x9d\xea\xd2\xad\xe1\x7d\x23\x56\x9b\xed\x1a\xbe\x33\x37\xfb\x33\xcf\xf2\x10\xe0\x6b\xf8\x79\xab\xdf\xfe\xff\xef\x14\xde\x93\x04\x00\x20\xcf\xe1\x9e\x15\x36\xf0\x8a\x56\xfb\xf5\x85\x02\xe8\x7b\x22\x4b\x46\x91\x5f\x87\xaf\x77\x77\x03\x61\xbd\x70\x15\x56\xc6\xc5\x2f\x52\x12\x28\x1a\x92\xb8\xc7\x47\xaa\xd6\x70\xf2\xd9\x0a\x59\x80\xc4\x7a\x9d\xa5\x0e\x2d\xa5\xa8\x94\xac\xe1\xe4\x4a\x29\xee\x8d\x78\x39\x30\xbe\x99\xee\x7a\x76\x05\x7c\x03\x9f\x9f\x29\xee\x76\xe7\x1f\xbf\x2f\x52\x6f\xbe\xf5\x17\xae\xcc\xc6\x6f\x28\xbc\x11\xb6\xb8\xa5\x07\x94\xfa\x74\xae\xe2\xdf\xe5\x25\x74\x68\xb4\x4a\x57\xd7\xdc\x37\x25\x18\x16\xd8\x92\x1c\xd8\x31\xba\x1b\xa3\x48\x70\x91\x68\x75\x9a\xcc\x34\x79\x0e\x05\x5b\xcb\xc3\x57\x23\xc3\x3f\x27\xe5\x9f\xa3\xa6\xca\xa6\x71\xf9\xc6\x96\xad\x66\x91\xee\xfc\xe8\x18\x2f\xd2\x7f\x37\x31\x4a\x5a\x08\x5a\x5c\xdc\x2a\x72\xec\x63\x23\xf4\x46\xaa\x17\x9a\x2c\x31\x2d\x61\xbc\x98\x4d\xdf\xb6\x68\xfd\x0e\x16\xd2\x33\x85\x8d\xea\x1b\x14\x7a\x8c\x79\x07\xba\x96\x89\x1d\xee\xa6\x94\x25\xe5\xc1\x1c\x97\x08\x47\xf2\xc3\x3b\xfb\xc9\x1b\x3f\x1a\x37\x9d\x2d\xfc\x37\xd4\x55\xd7\x59\x7e\xa5\xf2\x5e\x3b\xf1\x97\x70\x34\x97\x4c\x39\x59\x24\xde\x72\x7a\x34\xd5\x1f\x6c\x10\x32\x75\xb8\x4f\xf6\xc9\xef\x00\x00\x00\xff\xff\x86\x01\x99\xb2\x10\x05\x00\x00" +var _idtablestakingAdminCapability_end_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x53\x41\x4f\xe4\x3a\x0c\xbe\xf7\x57\x58\x73\x40\x1d\x09\xb5\x97\xa7\x77\x18\xf1\x40\x3c\x58\x24\x24\x0e\x88\x61\xf7\x8a\xdc\xd4\x9d\x66\x69\xe3\x2a\x71\x28\x23\x34\xff\x7d\x95\xa6\x2d\xd3\x05\x76\x73\xc9\xc1\xfe\x3e\x7f\xb6\x3f\xeb\xb6\x63\x2b\x70\xd3\x70\x7f\x7b\xfd\x88\x45\x43\x5b\xc1\x67\x6d\x76\x50\x59\x6e\x61\xf5\x31\xb0\x4a\x92\x3c\x87\xc7\x5a\x3b\x10\x8b\xc6\xa1\x12\xcd\x06\xbc\x23\x07\x08\x6e\x44\x63\xd9\x6a\x03\x0a\x3b\x2c\x74\xa3\x65\x1f\x30\xc2\xd0\xe1\x1e\x2c\xf5\x68\x4b\x77\x0a\x64\x4a\x90\x9a\xde\x31\x7e\xa0\x3a\x05\x34\xe5\x1c\xa4\x8e\x55\x9d\x25\x79\x1e\x18\x6e\x05\x14\xb7\x85\x36\xe4\x86\x60\x87\xfb\xa7\x63\xba\xa7\x99\xca\x94\xd0\xf2\x0b\x3d\x09\x3f\x93\x59\x28\x75\x81\xa8\xaf\xb5\xaa\x03\xc2\x7d\xae\x20\xc6\x2d\x55\x3e\xa4\x18\x2e\xc9\x41\xaf\xa5\x06\x6d\x9c\xaf\x2a\xad\x34\x19\x19\x60\x14\xe8\xa6\x72\x0e\xc6\x7a\x05\x49\x4f\x64\xa0\xf0\xea\x99\xc4\x8d\xda\xb1\x71\x0c\x8e\x24\x0c\xca\x50\x1f\x93\x43\x13\xec\x05\x2a\xb6\x83\x16\x43\xaf\x12\xbb\x4e\x92\x23\xd9\xa9\x2e\xdd\x06\xde\xb6\x62\xb5\xd9\x6d\xe0\x7f\xe6\xe6\x70\x1a\x58\xee\x07\xf8\x06\xbe\xdf\xe8\xd7\x7f\xff\x59\xc3\x5b\x92\x00\x00\xe4\x39\xdc\xb1\xc2\x06\x5e\xd0\xea\xb0\xbe\xa1\x00\x86\x9e\xc8\x92\x51\x14\xd6\x11\xea\xdd\x5e\xc3\xb0\x5e\xb8\x1c\x56\xc6\xc5\x4f\x52\x32\x50\x34\x24\x71\x8f\x0f\x54\x6d\xe0\xe4\xa3\x15\xb2\x01\x12\xeb\x75\x96\x3a\xb4\x94\xa2\x52\xb2\x01\xf4\x52\xa7\x57\xdc\xed\x7f\x60\xe3\x69\x0d\x27\x97\x4a\xb1\x37\x12\xe4\xc1\xf8\x66\xfa\xab\xd9\x25\xf0\x1f\x04\x7c\xe6\x84\x2d\xee\x28\x53\xdc\xed\xcf\xde\xc3\xe7\x69\x30\xe5\xe6\x13\xb7\x66\xe3\x3f\x08\xda\x46\xf4\x3d\x4a\xbd\x9e\xab\x85\x77\x71\x01\x1d\x1a\xad\xd2\xd5\x15\xfb\xa6\x04\xc3\x02\x3b\x92\x23\x9b\x46\xd7\x63\x14\x0b\xa3\x8c\xd5\x3a\x99\x69\xf2\x1c\x0a\xb6\x96\xfb\xcf\x46\x89\xbf\x4f\x30\x3c\x47\x4d\x95\x4d\x63\x0c\x0d\x2e\x5b\xce\x22\xdd\xd9\x97\xe3\x3d\x4f\xff\xde\xc4\x28\x69\x21\x68\x71\x89\xab\xc8\x71\x88\x8d\xd0\x2b\x29\x2f\x34\x59\x65\x5a\xc6\x78\x49\x5b\xdf\xb6\x68\xc3\x2e\x16\xd2\x33\x85\x8d\xf2\x0d\x0a\x3d\xc4\xbc\x23\x5d\xcb\xc4\x0e\xf7\x53\xca\x92\xf2\x68\x8e\x4b\x84\x23\xf9\x16\x1c\xff\x18\x0e\x22\x1a\x3a\x9d\xad\xfd\x27\xd4\x65\xd7\x59\x7e\xa1\xf2\x4e\x3b\x09\x17\xf2\x65\x2e\x99\x72\xb2\x48\xbc\xf1\xf4\xcb\xd4\x70\xc8\x83\x90\xa9\xc3\x43\x72\x48\x7e\x05\x00\x00\xff\xff\xc5\xa8\x09\x99\x28\x05\x00\x00" func idtablestakingAdminCapability_end_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1830,7 +1830,7 @@ func idtablestakingAdminCapability_end_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/capability_end_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe0, 0xa, 0xf0, 0x5d, 0x80, 0x66, 0x3d, 0x8, 0x41, 0xe0, 0x30, 0xf7, 0xe, 0x56, 0xd2, 0x35, 0xa8, 0x41, 0xd6, 0x55, 0x14, 0xd4, 0x40, 0x72, 0xc9, 0x2f, 0x7, 0xe3, 0x3c, 0x36, 0x54, 0xd3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0xf8, 0x4b, 0x45, 0x98, 0x5d, 0xd4, 0x6d, 0x7e, 0x79, 0xea, 0x39, 0xaf, 0xe4, 0x9e, 0x62, 0xbe, 0xc6, 0xe2, 0x1c, 0x59, 0xb9, 0x98, 0x81, 0x9f, 0xb8, 0x58, 0xbe, 0xd1, 0xb9, 0x7b, 0x94}} return a, nil } @@ -2234,7 +2234,7 @@ func idtablestakingAdminStart_stakingCdc() (*asset, error) { return a, nil } -var _idtablestakingAdminTransfer_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x91\x51\x6b\xea\x40\x10\x85\xdf\xf7\x57\x1c\x7c\xb8\x37\x01\x6f\xf2\x2e\xde\x52\x69\x29\x14\xfa\x50\xd0\x3f\x30\xc6\x31\x2e\xae\x3b\xcb\x66\x8c\x88\xf8\xdf\x4b\x62\x9a\x5a\xb5\x0f\xf6\x75\xcf\xce\x9c\x73\xe6\xb3\x9b\x20\x51\xf1\xe2\x64\xf7\xfa\x3c\xa3\xb9\xe3\xa9\xd2\xda\xfa\x12\xcb\x28\x1b\x0c\xae\x85\x81\x31\x1a\xc9\x57\x54\xa8\x15\x8f\x83\x01\x42\xe4\x40\x91\x13\xd9\x79\x8e\x23\x4c\xb6\xba\x9a\x14\x85\x6c\xbd\x0e\x11\xb9\x60\x5b\x5f\x3c\xa7\x38\x18\x03\x00\x79\x8e\x37\xeb\xd7\xd0\x15\xa3\xea\x8c\x69\xb1\xb1\x1e\x05\x05\x9a\x5b\x67\x75\x0f\x15\x10\x42\xb4\x35\x29\x23\x38\x2a\xb8\x9d\x6d\xdd\x32\x67\xfd\x7a\xfc\xe7\x3a\x66\x36\x69\xd6\x3c\x24\x79\x37\x98\x2f\x9d\xec\x3a\xad\x95\x86\x50\x8a\x25\xeb\xe8\x46\xf9\xec\xfc\xe3\x54\x25\x52\xc9\xef\xa4\xab\xb4\x35\x76\xac\xb8\xdc\x86\xff\x5d\x9e\x92\xf5\xa9\x8f\xfe\xab\x60\xa9\xe9\x5d\xce\x8e\x30\xfe\xd7\x9f\x32\x73\x42\x8b\xf1\xe3\xcf\xab\x1b\x74\xf7\xd5\x3a\x39\x4a\x99\x7c\x39\x36\x4d\x66\xfb\xc0\x49\xda\xc9\x0b\xae\x34\xca\xfe\x2c\x54\xcf\x70\x4a\x35\xb7\x0c\xbf\x53\x6b\x5e\x3e\x43\xff\xad\x40\x27\xf8\xa8\x4e\xce\xed\x70\xdf\xa9\xa2\x9a\x93\x1b\x8c\xe4\x5e\x3e\x47\x73\x34\x30\x1f\x01\x00\x00\xff\xff\x83\x3c\x0a\x9c\xd8\x02\x00\x00" +var _idtablestakingAdminTransfer_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\x41\x6b\xc2\x40\x10\x85\xef\xfb\x2b\x1e\x1e\x6c\x02\x36\xde\xc5\x96\x4a\x4b\x4b\x6f\x05\xfd\x03\x63\x1c\xe3\xd2\x75\x27\xec\x8e\x8a\x88\xff\xbd\x74\x8d\x31\x54\x4b\xe9\x75\xe7\xed\xbc\xef\xcd\xb3\xeb\x5a\x82\xe2\xd5\xc9\xee\xfd\x65\x46\x73\xc7\x53\xa5\x4f\xeb\x2b\x2c\x83\xac\xd1\xbb\x1e\xf4\x8c\xd1\x40\x3e\x52\xa9\x56\x3c\x0e\x06\xa8\x03\xd7\x14\x38\x93\x9d\xe7\x30\x02\x6d\x74\x95\x3d\x53\x4d\x73\xeb\xac\x5a\x8e\x39\xfa\x93\xb2\x94\x8d\xd7\x01\x02\x97\x6c\xb7\xad\x6c\xaa\x12\xa8\xe2\x8b\x22\xc7\xc1\x18\x00\x18\x0e\xf1\xc6\x0a\x42\x6c\x80\x68\xb1\xb6\x1e\xe5\x79\xef\x3e\xa9\x1c\x2b\x96\x4e\x76\x0d\xdc\x24\x69\x1e\x90\x48\x8a\xb2\xc3\x50\xc4\x93\x53\x61\x63\xdc\xf0\xb8\x7f\x1d\xac\x48\x9f\x1f\xb3\x1b\x93\xee\xf6\x86\xf8\x83\x74\x95\x9b\x96\xe1\x82\x85\xf1\x7d\x1b\xb2\x35\x75\x42\x8b\xf1\xd3\xef\x9e\xdf\xc7\x1e\xdd\x68\xe1\x2f\x67\xa9\xb2\x8b\x73\x51\xb1\xce\xf6\x35\x67\x79\x33\x5e\x70\xd4\x20\xfb\xee\xcd\xce\xa7\x9d\xd2\x96\xa1\x2b\xee\x82\xab\xa4\x97\x33\xfc\x5d\x04\x9d\x3a\x41\x13\x23\x7d\xbe\xca\x16\x69\xcb\xd9\xcf\x0e\x06\x50\xf9\x5f\x20\xe0\x68\x8e\x06\xe6\x2b\x00\x00\xff\xff\x7a\xe3\x3f\x16\x92\x02\x00\x00" func idtablestakingAdminTransfer_adminCdcBytes() ([]byte, error) { return bindataRead( @@ -2250,11 +2250,11 @@ func idtablestakingAdminTransfer_adminCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/transfer_admin.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x32, 0x84, 0xe0, 0x24, 0x30, 0xb1, 0x5, 0xe3, 0x5f, 0x2, 0x62, 0x90, 0x3a, 0x5b, 0x39, 0xcc, 0x5a, 0x57, 0xdd, 0x6c, 0xe5, 0x5f, 0xc0, 0xd9, 0xcb, 0x67, 0x73, 0xd1, 0x11, 0xe2, 0xc, 0xa5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0x0, 0xac, 0x5d, 0xe7, 0x0, 0x5b, 0x3b, 0x2d, 0x66, 0xa7, 0xb7, 0x92, 0xd3, 0x4b, 0x2b, 0xe1, 0xd1, 0xb3, 0x8, 0xa, 0x34, 0x56, 0x6b, 0x24, 0x16, 0xd3, 0xe9, 0xa4, 0xf5, 0x60, 0x21}} return a, nil } -var _idtablestakingAdminTransfer_fees_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xb1\x6a\xf3\x30\x14\x85\x77\x3d\xc5\xf9\x97\xbf\x0e\x24\x76\xe7\x60\x4a\x0d\xb1\xa7\x40\xa1\x1e\x3a\xdf\x2a\xd7\xa9\x88\x2d\x09\xe9\xd6\x69\x29\x79\xf7\x62\x35\x36\xcd\x50\x8d\x57\xe7\x1c\xbe\xcf\x0c\xde\x05\x41\xd3\xbb\x73\xc3\x1c\xd1\x05\x37\xe0\xfe\xa3\xd9\x3f\xbd\x34\x75\xdd\x56\xbb\xdd\x73\xdd\xb6\x4a\x49\x20\x1b\x49\x8b\x71\x16\x5f\x4a\x01\x80\x0f\xec\x29\x70\xe6\xce\x96\xc3\x16\xff\x2b\xad\xdd\xbb\x95\x35\x02\x6b\x36\xe3\xef\xdb\x6a\xee\x4c\xaf\x28\xb0\x37\xf6\x04\x79\x63\x44\xa1\x93\xb1\x47\xd0\x61\x30\x16\x9a\x3c\xbd\x9a\xde\xc8\x27\xc4\x81\xe0\x83\x19\x49\x18\xbe\x27\xcd\x4b\xbf\x67\x41\xc7\x1c\xab\xd4\x29\x37\x48\x00\x79\xef\xe8\x50\x3e\xce\x22\x79\xfa\x35\x51\x02\x89\x0b\x0f\xd9\xe4\xb5\x45\x11\xc5\x05\x3a\x72\xd1\x5d\x63\x29\xb5\xfa\x77\x03\xd7\xd2\xc8\x09\xee\x16\x67\xba\xcc\x66\x77\x11\xf4\x63\x86\xeb\xe2\x32\x30\x47\xf2\x48\x23\x67\xe5\x66\x21\x5d\x43\xdc\x9f\x04\xa9\x7e\x51\xea\xa2\xa0\xbe\x03\x00\x00\xff\xff\x45\x9f\xb3\x90\x93\x01\x00\x00" +var _idtablestakingAdminTransfer_fees_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x41\x6b\x02\x31\x10\x46\xef\xf9\x15\x5f\x2f\xed\x0a\xea\xf6\x2c\x52\x2a\xe8\x9e\x84\x42\x17\xda\xf3\x74\x1d\x35\x18\x33\x21\x19\xd7\x96\xe2\x7f\x2f\x9b\xba\x0b\x16\x9a\x63\x78\xf3\xf1\x9e\x3d\x06\x89\x8a\xca\xc9\xb9\x62\x4e\xd8\x46\x39\xe2\xf1\xb3\x5a\xbf\xbc\x57\xab\x55\xbd\x58\x2e\x5f\x57\x75\x6d\x8c\x46\xf2\x89\x1a\xb5\xe2\xf1\x6d\x0c\x00\x84\xc8\x81\x22\x17\x72\xf6\x1c\x67\xa0\x93\xee\x8b\xb5\xd0\xe6\x8d\xdc\x89\x47\xb8\x5f\x34\x8d\x9c\xbc\x8e\x11\xb9\x61\xdb\x0e\x4c\x4d\x2d\xff\x61\x46\xfd\x66\xf7\xca\x12\x6b\xeb\x0f\xd0\x3d\x23\x29\x1d\xac\xdf\x81\x36\x47\xeb\xd1\x50\xa0\x0f\xeb\xac\x7e\x41\x05\x84\x10\x6d\x4b\xca\x08\x8e\x1a\x1e\xee\x1d\x2b\xb6\xcc\x69\x91\x6f\xe6\x13\x64\xc1\x69\x52\x89\xb4\xe3\xa9\x13\xda\xcc\x9f\xfb\xe0\x69\xa6\x6c\xd2\x48\x2a\xf1\xa9\xe8\xfa\x67\x28\xaf\x70\xb9\xbd\x62\x99\x1a\xdd\xdd\x48\x76\x1d\x59\xf2\x56\xab\xfb\xe9\x8b\x1f\x12\xe8\xb7\x10\xd7\xc5\x61\xa0\x47\x06\xaf\x44\x2d\x17\xf3\xc9\x60\x3e\x86\xca\xbf\x26\x79\xe6\x62\xcc\xc5\xc0\xfc\x04\x00\x00\xff\xff\x85\xb4\xed\xdf\xc3\x01\x00\x00" func idtablestakingAdminTransfer_fees_adminCdcBytes() ([]byte, error) { return bindataRead( @@ -2270,7 +2270,7 @@ func idtablestakingAdminTransfer_fees_adminCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/transfer_fees_admin.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0x1, 0x68, 0xb5, 0x4a, 0x11, 0x73, 0x9f, 0x93, 0xbf, 0xa7, 0xae, 0xa5, 0x16, 0xb4, 0x78, 0x5a, 0xef, 0x82, 0xec, 0x63, 0xcf, 0x6a, 0xb, 0xcd, 0xf2, 0xe0, 0xef, 0xa, 0x7d, 0x9, 0x76}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0xc, 0x75, 0x15, 0xac, 0x9f, 0x96, 0x91, 0xb5, 0xed, 0x71, 0x26, 0x7b, 0x7d, 0x35, 0xf6, 0xb8, 0x89, 0xc4, 0x81, 0x46, 0x1f, 0xdd, 0x6f, 0xc6, 0xbb, 0xe3, 0xd9, 0x5, 0x45, 0xd, 0xe8}} return a, nil } @@ -2334,7 +2334,7 @@ func idtablestakingAdminUpgrade_stakingCdc() (*asset, error) { return a, nil } -var _idtablestakingDelegationDel_request_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xcf\x4e\xab\x50\x10\x87\xf7\x3c\xc5\x2f\x2c\x6e\x60\x03\x9b\x9b\xbb\x20\x57\x9b\xc6\xa6\x89\x89\x51\x63\xed\x03\x4c\x0f\x43\x41\xe9\x19\x1c\x06\xdb\xc4\xf4\xdd\x0d\x62\x51\x53\x96\xce\x66\x16\xf3\x87\xef\x63\x4e\xb5\x6b\x44\x0d\xcb\x5a\xf6\xd7\x8b\x47\xda\xd4\xbc\x32\x7a\xae\xfc\x16\x85\xca\x0e\xe1\x79\x21\x0c\x82\xc0\x94\x7c\x4b\xce\x2a\xf1\x11\xed\xa4\xf3\x96\x61\xbd\xac\x0e\xff\xfe\xc6\x78\x0b\x02\x00\x48\x53\xdc\x88\xa3\x1a\xaf\xa4\x55\x3f\x8e\x42\x14\x04\xe5\x82\x95\xbd\x63\x98\xc0\x4a\xc6\x82\x6b\xde\x92\x89\x42\x36\x4f\xec\xec\x63\xba\x66\x43\x7e\x2a\x3c\x70\x91\x81\x3a\x2b\xa3\x73\x9a\x64\x1c\xbf\xdb\x7b\xd6\x18\x7f\x26\x7a\x6e\x25\xe7\xb1\x6f\xc0\x6b\x94\x1b\x52\x8e\xc8\x39\xcb\x30\xef\xac\x9c\x3b\xd7\x8b\xf4\x02\xf8\x8c\x34\xc5\x46\x54\x65\x3f\xc5\x9d\x4f\x71\xf7\xd1\x72\x5d\x24\xdf\xe1\x71\x81\xfe\x33\xc9\xb0\xeb\xff\xaf\x99\x5c\x46\xfd\x8d\xb2\x89\xe3\x7d\xed\x5a\x99\x28\x6d\xf9\x9e\xac\x8c\x47\xc2\x3e\x66\x33\x34\xe4\x2b\x17\x85\x57\xd2\xd5\x39\xbc\xd8\x49\xf6\x87\xea\x28\x12\xc6\xc3\x9f\x3b\x0e\x89\x0f\xec\x3a\xe3\xd3\xb9\x27\xc5\x13\xe5\x97\x8e\x5b\x5b\xfb\x76\xe0\x1a\x1f\xcb\x90\xc7\x8d\xc7\xf7\x00\x00\x00\xff\xff\x21\xe6\x0c\xce\x87\x02\x00\x00" +var _idtablestakingDelegationDel_request_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xb1\x4e\xc3\x40\x0c\x86\xf7\x3c\x85\x95\xa1\x4a\x96\x64\x41\x0c\x15\x50\x01\x55\x25\x24\x04\x88\x52\x76\xf7\xe2\xb4\x81\xeb\x39\x38\x0e\xad\x84\xfa\xee\xe8\x7a\x4d\x00\x35\x23\x5e\x6e\x38\xfb\xf7\xff\xd9\xae\x36\x35\x8b\xc2\xcc\xf2\xf6\x6e\xfa\x82\x4b\x4b\x73\xc5\xf7\xca\xad\xa0\x14\xde\x40\x7c\xfa\x11\x47\x51\xa4\x82\xae\x41\xa3\x15\xbb\x04\x37\xdc\x3a\x1d\xc3\x62\x56\xed\xce\xcf\x52\xf8\x8a\x22\x00\x80\x3c\x87\x7b\x36\x68\xe1\x13\xa5\xf2\xe5\x50\xb2\x00\x82\x50\x49\x42\xce\x10\x28\x83\xae\x09\xa6\x64\x69\x85\xca\x02\xbc\x7c\x23\xa3\x87\x6a\x4b\x0a\x45\xf7\xf1\x4c\xe5\x18\xb0\xd5\x75\x72\xea\x26\xeb\xcb\x1f\xb7\x8e\x24\x85\xd1\x40\xce\x03\x17\xd4\xe7\x05\x7b\xb5\x50\x8d\x42\x09\x1a\xa3\x47\xf1\x1b\x16\xe1\xed\x2b\xda\x96\x52\x18\x5d\x1b\xe3\xb9\x3c\x0f\x1c\x23\xcf\x61\x79\xc8\x19\xc2\x28\x86\x30\x7c\x34\x64\xcb\xec\x37\x0b\x5c\x82\xef\x9a\x35\xca\x82\x2b\xca\x82\xe6\xc5\xbf\x01\x5e\x25\x7e\x75\xe3\x81\x9d\xfe\x68\xcd\x43\xef\x27\xd4\x75\xda\x3b\xf5\x31\x99\x40\x8d\xae\x32\x49\x7c\xcb\xad\x2d\xc0\xb1\x76\xd0\x7f\x90\x7b\xa0\x38\x0d\x03\xdd\x87\x87\x76\x64\x5a\xa5\xee\x0a\x06\x07\x90\x09\x7d\xb4\xd4\xe8\xc2\x35\xc1\x57\x7f\x43\xe1\xed\x15\xf7\xdf\x01\x00\x00\xff\xff\x32\x83\xa3\x36\x9e\x02\x00\x00" func idtablestakingDelegationDel_request_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2350,11 +2350,11 @@ func idtablestakingDelegationDel_request_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x20, 0xdd, 0x32, 0xf3, 0xd, 0xf5, 0xd6, 0x1f, 0x79, 0x1f, 0x19, 0x43, 0x45, 0x66, 0x3c, 0x63, 0x1a, 0xa0, 0x1f, 0xd3, 0x8e, 0x95, 0x7, 0xec, 0x16, 0x10, 0xd8, 0x1b, 0xb4, 0x57, 0xb5, 0x25}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x87, 0xb8, 0x8e, 0xfc, 0xc, 0xe8, 0x6c, 0xa0, 0x8b, 0xce, 0x40, 0x25, 0x93, 0xd5, 0xb2, 0xfd, 0x6a, 0xfb, 0x2, 0x9c, 0xa5, 0x42, 0x21, 0xf5, 0xc2, 0x16, 0x83, 0x68, 0x5d, 0xa5, 0x8d, 0xe8}} return a, nil } -var _idtablestakingDelegationDel_stake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\x4d\x6b\xdc\x40\x0c\xbd\xcf\xaf\x10\x3e\x14\xfb\x50\xfb\x52\x7a\x58\xd2\x86\xd0\xb0\x50\x08\x49\x69\xd2\xe6\x2c\x8f\x65\x7b\x9a\xd9\x91\x19\xcb\x75\xa0\xec\x7f\x2f\xe3\xaf\xf5\xb2\x3e\xb4\xa5\xba\x0c\x63\x3d\x3d\xbd\x27\x8d\xcd\xa1\x61\x2f\xb0\xb7\xdc\x7f\xbe\x7d\xc2\xdc\xd2\xa3\xe0\x8b\x71\x15\x94\x9e\x0f\x10\x5d\x26\x22\xb5\xaa\x79\xe2\x17\x72\x2b\xe8\x70\x3f\x21\x3a\x57\x99\xdc\xd2\x19\x6a\xfd\x2d\x52\x4a\x89\x47\xd7\xa2\x16\xc3\x2e\xc6\x03\x77\x4e\x76\xf0\x6d\x6f\x5e\xdf\xbf\x4b\xe0\x97\x52\x00\x00\x59\x06\x77\xac\xd1\xc2\x4f\xf4\x26\x48\x81\x92\x3d\x20\x78\x2a\xc9\x93\xd3\x04\xc2\x20\x35\x41\x41\x96\x2a\x14\xf6\xc0\xf9\x0f\xd2\x32\x54\x5b\x92\x53\xe2\x2b\x95\x3b\xc0\x4e\xea\xf8\xd2\x59\x7a\x3b\xa3\x1e\x7a\x47\x3e\x81\x37\x1b\x98\x7b\x2e\x68\xc1\xa9\xa5\x41\x39\x9b\x5f\x35\x58\x3b\x4d\x9f\x8d\xd4\x85\xc7\x3e\x70\x4d\xcc\x63\xe2\x3b\x76\x56\x46\xa2\xc6\x53\x83\x9e\x62\xd4\x5a\x76\x70\xd3\x49\x7d\xa3\x75\x98\x48\x98\x04\x4c\x91\x65\x90\xb3\xf7\xdc\xff\xf1\x00\x42\xb4\x64\xcb\x74\x3d\x05\xf8\x00\xa1\x4d\x3a\x72\x5d\xfd\xb7\x91\x7c\x8c\xc3\x9e\x77\x1b\x2f\xea\xc4\xf5\x28\xec\xb1\xa2\x2f\x28\x75\xb2\x28\x0c\x71\x7d\x0d\x0d\x3a\xa3\xe3\xe8\x13\x77\xb6\x00\xc7\x32\x9b\x3d\xb3\xba\x18\x89\x12\x75\x6e\x71\xbd\x87\x4d\x8b\x7f\xb1\x94\xd9\x4a\xd6\x8e\x7a\xb3\x85\x7c\x48\xff\x9b\xf4\xfd\xdd\xc3\x33\x0c\xf5\xb3\xf6\xe3\x78\xd0\x2b\xe9\x4e\x68\x7e\xf3\x9b\x4b\x9b\x2f\x74\x4f\xa3\x90\x76\x92\x78\xf5\xf6\xc2\x7d\xda\x4f\xe6\x96\xbf\x6a\x3c\x93\xa5\xed\xf1\x77\x00\x00\x00\xff\xff\x85\x88\xb6\x28\xfd\x03\x00\x00" +var _idtablestakingDelegationDel_stake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\x4d\x8b\xd4\x40\x10\xbd\xf7\xaf\x28\x72\x90\xe4\x60\x72\x11\x0f\xc3\xea\xa2\x2e\x03\xc2\xb2\x2b\xee\xba\x7b\xae\x74\x2a\x49\xbb\x3d\x5d\xa1\x53\x31\x03\x32\xff\x5d\x3a\x5f\x93\x61\x06\x51\xb1\x2e\x4d\xa7\x5e\xbd\xaa\xf7\x2a\x6d\x76\x0d\x7b\x81\xad\xe5\xfe\xf3\xcd\x23\xe6\x96\x1e\x04\x5f\x8c\xab\xa0\xf4\xbc\x83\xe8\x3c\x11\xa9\x55\xcd\x23\xbf\x90\x5b\x41\x87\xfb\x11\xd1\xb9\xca\xe4\x96\x4e\x50\xeb\x6f\x91\x52\x4a\x3c\xba\x16\xb5\x18\x76\x31\xee\xb8\x73\xb2\x81\x6f\x5b\xb3\x7f\xfb\x26\x81\x9f\x4a\x01\x00\x64\x19\xdc\xb2\x46\x0b\x3f\xd0\x9b\x30\x0a\x94\xec\x01\xc1\x53\x49\x9e\x9c\x26\x10\x06\xa9\x09\x0a\xb2\x54\xa1\xb0\x07\xce\xbf\x93\x96\xa1\xda\x92\x1c\x13\x5f\xa9\xdc\x00\x76\x52\xc7\xe7\xca\xd2\x9b\x19\x75\xdf\x3b\xf2\x09\xbc\xba\x80\xb9\xe3\x82\x16\x9c\x5a\x1a\x94\xb3\xf8\x55\x83\xb5\xd2\xf4\xd9\x48\x5d\x78\xec\x03\xd7\xc4\x3c\x26\x9e\xb0\xb3\x32\x12\x35\x9e\x1a\xf4\x14\xa3\xd6\x32\x91\x7c\x64\xef\xb9\x7f\x42\xdb\x85\xaa\x0f\x5a\x07\x83\x82\x31\x30\x45\x96\x41\x3e\x60\xfe\xd8\x8f\x10\x2d\xd9\x32\x5d\x9b\x02\xef\x20\x74\x4d\x5b\x61\x8f\x15\xa5\x23\xe7\xd5\x7f\x73\xea\x7d\x1c\xd6\xbf\xb9\xf0\xa3\x1d\xb9\x1e\xc6\xde\x5f\x50\xea\x64\x99\x34\xc4\xf5\x35\x34\xe8\x8c\x8e\xa3\x4f\xdc\xd9\x02\x1c\xcb\x2c\xfa\x44\xf2\x22\x28\x4a\xd4\xa9\xd4\xf5\x7a\x7e\x2b\xf5\x2f\x76\x36\x4b\xca\x26\xa2\x6c\x69\x32\xa4\xff\x4d\xc2\xf6\xf6\xfe\x19\x86\xfa\x59\xc3\x61\x3c\x68\x4f\xba\x13\x9a\x9f\xc4\xc5\x25\xce\x17\xba\xa3\x71\x90\x76\x1a\xf1\xea\xf5\x99\x0b\x69\x3f\x89\x5b\x1e\xdd\x78\x26\x4b\xdb\xc3\xaf\x00\x00\x00\xff\xff\xea\x14\x6a\xf6\x1c\x04\x00\x00" func idtablestakingDelegationDel_stake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2370,11 +2370,11 @@ func idtablestakingDelegationDel_stake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5, 0xf7, 0xbe, 0x19, 0x9c, 0xb0, 0xa0, 0x20, 0xec, 0xc3, 0x1d, 0x38, 0x1b, 0x92, 0xd2, 0xcd, 0x26, 0x71, 0x99, 0xcb, 0x12, 0xc9, 0xaf, 0x7, 0x76, 0x90, 0x93, 0xe9, 0xb9, 0x34, 0x72, 0xd0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa, 0xe7, 0x19, 0x73, 0xa2, 0x35, 0x34, 0x20, 0xbc, 0x62, 0x5, 0xd1, 0xfc, 0xc5, 0x6d, 0x33, 0xd1, 0x8a, 0x5c, 0x74, 0x36, 0x2d, 0x7, 0x33, 0x8e, 0x5d, 0xc0, 0xd, 0xa8, 0x9, 0x96, 0xf2}} return a, nil } -var _idtablestakingDelegationDel_stake_rewardedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xcf\x6a\xe3\x40\x0c\xc6\xef\x7e\x8a\x0f\x1f\x16\xfb\x12\x5f\x96\x3d\x98\xdd\x0d\xa1\x21\x50\x28\x6d\x49\xd2\x07\x50\xc6\x72\xec\xc6\x19\x19\x45\xae\x03\x25\xef\x5e\x5c\xd7\x6e\x4b\x7c\xac\x2e\x62\xd0\x9f\xf9\x7e\xf3\x4d\x79\xac\x45\x0d\xab\x4a\xda\xdb\xe5\x96\x76\x15\x6f\x8c\x0e\xa5\xdf\x23\x57\x39\x22\xbc\x2e\x84\x41\x10\x98\x92\x3f\x91\xb3\x52\x7c\x44\x47\x69\xbc\xa5\x78\x5a\x95\xe7\x3f\xbf\x63\xbc\x06\x01\x00\x24\x09\xee\xc4\x51\x85\x17\xd2\xb2\x1b\x47\x2e\x0a\x82\x72\xce\xca\xde\x31\x4c\x60\x05\x63\xc9\x15\xef\xc9\x44\x21\xbb\x67\x76\xf6\x3e\x5d\xb1\x21\x1b\x0a\x6b\xce\x53\x50\x63\x45\x74\xad\x66\x36\x8e\x3f\xb4\x9e\x35\xc6\xaf\x89\x9e\x7b\xc9\x78\xec\xeb\xe5\xd5\xca\x35\x29\x47\xe4\x9c\xa5\x58\x34\x56\x2c\x9c\xeb\x40\x3a\x00\x7c\x44\x92\x60\x27\xaa\xd2\x4e\xe9\xce\xa6\x74\x77\x71\xe2\x2a\x9f\x7d\x15\x8f\x7f\xe8\xae\x99\xf5\xbb\xfe\xfe\x18\xc9\xff\xa8\xf3\x28\x9d\x30\xef\x73\xd7\xc6\x44\x69\xcf\x8f\x64\x45\x3c\x2a\xec\x62\x3e\x47\x4d\xbe\x74\x51\x78\x23\x4d\x95\xc1\x8b\x0d\xb0\xdf\x50\x47\x90\x30\xee\x5f\xee\xd2\x27\x3e\xb3\x6b\x8c\x07\xbb\x27\xc1\x87\x03\xaf\xb9\x25\xcd\x38\xdb\xca\x81\xfd\x69\xfc\x32\x7d\x1e\xf7\x5e\xde\x02\x00\x00\xff\xff\x82\xfd\x9e\xd7\x8d\x02\x00\x00" +var _idtablestakingDelegationDel_stake_rewardedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xc1\x4b\xfb\x50\x0c\xc7\xef\xfd\x2b\x42\x0f\xa3\xbd\xb4\x97\x1f\xbf\xc3\x50\x87\x3a\x06\x82\xa8\x6c\xd3\x7b\xf6\x9a\x6e\x75\xaf\x2f\x25\x4d\xed\x40\xf6\xbf\xcb\x5b\xd7\xaa\xac\x47\x73\x79\x3c\x92\x7c\x93\x4f\x92\xa2\xac\x58\x14\x16\x96\xdb\x87\xf9\x1a\x37\x96\x56\x8a\xfb\xc2\x6d\x21\x17\x2e\x21\xbc\x74\x84\x41\x10\xa8\xa0\xab\xd1\x68\xc1\x2e\xc2\x92\x1b\xa7\x53\x78\x5d\x14\x87\xff\xff\x62\xf8\x0c\x02\x00\x80\x34\x85\x47\x36\x68\xe1\x03\xa5\xf0\xe9\x90\xb3\x00\x82\x50\x4e\x42\xce\x10\x28\x83\xee\x08\xe6\x64\x69\x8b\xca\x02\xbc\x79\x27\xa3\xa7\x6c\x4b\x0a\x59\xef\x58\x52\x3e\x05\x6c\x74\x17\x5d\x76\x93\x0c\xe9\xcf\xad\x23\x89\x61\x32\x12\xf3\xc4\x19\x0d\x71\x5d\x7b\x95\x50\x85\x42\x11\x1a\xa3\x67\xf1\x3b\x16\xe1\xf6\x0d\x6d\x43\x31\x4c\x6e\x8d\xf1\x5c\x9e\x07\xce\x96\xa6\xb0\x39\xc5\x8c\x61\x64\x63\x18\xde\x6a\xb2\x79\xf2\x93\x05\xae\xc1\x57\x4d\x6a\x65\xc1\x2d\x25\x9d\xe6\xd5\x9f\x01\xde\x44\x7e\x75\xd3\x91\x9d\x7e\x6b\xad\xba\xda\x2f\xa8\xbb\x78\xe8\xd4\xdb\x6c\x06\x15\xba\xc2\x44\xe1\x3d\x37\x36\x03\xc7\xda\x43\xff\x42\x1e\x80\xc2\xb8\x1b\xe8\xb1\x7b\xe8\x40\xa6\x51\xea\xaf\x60\x74\x00\xfd\x87\x96\xd4\xa2\x64\x94\xad\x79\x4f\xae\x1e\x2e\xa9\x7b\x07\xdd\xe3\x57\x00\x00\x00\xff\xff\xb1\x5e\xd1\xad\xa4\x02\x00\x00" func idtablestakingDelegationDel_stake_rewardedCdcBytes() ([]byte, error) { return bindataRead( @@ -2390,11 +2390,11 @@ func idtablestakingDelegationDel_stake_rewardedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_stake_rewarded.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1, 0xf, 0xa, 0x84, 0xc4, 0x39, 0x4d, 0x11, 0xe, 0x26, 0xfb, 0x5c, 0xff, 0xbe, 0x69, 0x65, 0xbc, 0xf6, 0x3e, 0xcb, 0x96, 0x41, 0x70, 0x5f, 0x7a, 0x39, 0x65, 0x44, 0x53, 0x83, 0x67, 0x99}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0xab, 0x43, 0xc4, 0x6c, 0xd2, 0xcc, 0x46, 0xb9, 0xe9, 0xe8, 0x58, 0xd2, 0x56, 0x18, 0xf, 0xca, 0xf0, 0x2e, 0xf4, 0x55, 0xe9, 0x4f, 0x44, 0x76, 0xed, 0x31, 0x9c, 0x48, 0x31, 0xf0, 0xf7}} return a, nil } -var _idtablestakingDelegationDel_stake_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xcf\x6a\xe3\x40\x0c\xc6\xef\x7e\x8a\x0f\x1f\x16\xfb\x12\x5f\x96\x3d\x98\xdd\x0d\xa1\x21\x50\x28\x6d\x69\x92\x07\x50\xc6\x72\xec\xc6\x19\x19\x59\x6e\x02\x25\xef\x5e\x5c\xd7\x6e\x4b\x7c\xac\x2e\x62\xd0\x9f\xf9\x7e\xf3\x4d\x79\xac\x45\x0d\xab\x4a\x4e\xb7\xcb\x0d\xed\x2a\x5e\x1b\x1d\x4a\xbf\x47\xae\x72\x44\x78\x5d\x08\x83\x20\x30\x25\xdf\x90\xb3\x52\x7c\x44\x47\x69\xbd\xa5\xd8\xae\xca\xf3\x9f\xdf\x31\x5e\x83\x00\x00\x92\x04\x77\xe2\xa8\xc2\x0b\x69\xd9\x8d\x23\x17\x05\x41\x39\x67\x65\xef\x18\x26\xb0\x82\xb1\xe4\x8a\xf7\x64\xa2\x90\xdd\x33\x3b\x7b\x9f\xae\xd8\x90\x0d\x85\x27\xce\x53\x50\x6b\x45\x74\xad\x66\x36\x8e\x3f\x9c\x3c\x6b\x8c\x5f\x13\x3d\xf7\x92\xf1\xd8\xd7\xcb\xab\x95\x6b\x52\x8e\xc8\x39\x4b\xb1\x68\xad\x58\x38\xd7\x81\x74\x00\xf8\x88\x24\xc1\x4e\x54\xe5\x34\xa5\x3b\x9b\xd2\xdd\x45\xc3\x55\x3e\xfb\x2a\x1e\xff\xd0\x5d\x33\xeb\x77\xfd\xfd\x31\x92\xff\x51\xe7\x51\x3a\x61\xde\xe7\xae\xb5\x89\xd2\x9e\x1f\xc9\x8a\x78\x54\xd8\xc5\x7c\x8e\x9a\x7c\xe9\xa2\xf0\x46\xda\x2a\x83\x17\x1b\x60\xbf\xa1\x8e\x20\x61\xdc\xbf\xdc\xa5\x4f\x7c\x66\xd7\x1a\x0f\x76\x4f\x82\x0f\x07\xde\xfa\xc6\xe8\xc0\xd9\x46\x0e\xec\x9b\xf1\xcb\xf4\x79\xdc\x7b\x79\x0b\x00\x00\xff\xff\xad\xc9\x2e\xf9\x8d\x02\x00\x00" +var _idtablestakingDelegationDel_stake_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x31\x4f\xf3\x40\x0c\x86\xf7\xfc\x8a\x57\x19\xaa\x64\x49\x96\x4f\xdf\x50\x01\x15\x50\x55\x42\x42\x80\x68\xcb\xee\x5e\x9c\x36\xf4\x7a\x8e\x2e\x0e\xad\x84\xfa\xdf\x51\x9a\x26\x80\x9a\x11\x2f\xa7\x93\xed\xd7\x7e\x6c\x17\xbb\x52\xbc\x62\x66\x65\xff\x30\x5d\xd0\xca\xf2\x5c\x69\x5b\xb8\x35\x72\x2f\x3b\x84\x97\x8e\x30\x08\x02\xf5\xe4\x2a\x32\x5a\x88\x8b\x68\x27\xb5\xd3\x31\x96\xb3\xe2\xf0\xff\x5f\x8c\xcf\x20\x00\x80\x34\xc5\xa3\x18\xb2\xf8\x20\x5f\x34\xe9\xc8\xc5\x83\xe0\x39\x67\xcf\xce\x30\x54\xa0\x1b\xc6\x94\x2d\xaf\x49\xc5\x43\x56\xef\x6c\xf4\x94\x6d\x59\x91\x75\x8e\x57\xce\xc7\xa0\x5a\x37\xd1\x65\x37\x49\x9f\xfe\xbc\x77\xec\x63\x8c\x06\x62\x9e\x24\xe3\x3e\xae\x6d\xaf\xf4\x5c\x92\xe7\x88\x8c\xd1\xb3\xf8\x9d\x78\x2f\xfb\x37\xb2\x35\xc7\x18\xdd\x1a\xd3\x70\x35\x3c\x38\x5b\x9a\x62\x75\x8a\x19\xc2\xc8\x86\x30\x1a\xab\xd8\xe6\xc9\x4f\x16\x5c\xa3\xa9\x9a\x54\x2a\x9e\xd6\x9c\xb4\x9a\x57\x7f\x06\x78\x13\x35\xab\x1b\x0f\xec\xf4\x5b\x6b\xde\xd6\x7e\x21\xdd\xc4\x7d\xa7\x8d\x4d\x26\x28\xc9\x15\x26\x0a\xef\xa5\xb6\x19\x9c\x68\x07\xfd\x0b\xb9\x07\x0a\xe3\x76\xa0\xc7\xf6\xe1\x03\x9b\x5a\xb9\xbb\x82\xc1\x01\x74\x1f\x5e\xba\x4a\x69\xcb\xd9\x42\xb6\xec\xaa\xfe\x92\xda\xb7\xd7\x3d\x7e\x05\x00\x00\xff\xff\x9e\x6a\x61\x83\xa4\x02\x00\x00" func idtablestakingDelegationDel_stake_unstakedCdcBytes() ([]byte, error) { return bindataRead( @@ -2410,11 +2410,11 @@ func idtablestakingDelegationDel_stake_unstakedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_stake_unstaked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0x66, 0x6f, 0xd4, 0xd9, 0x65, 0x60, 0x17, 0xd7, 0xaf, 0x3c, 0xa8, 0x83, 0x13, 0x27, 0xd1, 0x8c, 0x71, 0xb3, 0x7, 0x6e, 0x26, 0x80, 0xea, 0xc, 0xfa, 0x17, 0x25, 0x7a, 0x27, 0x32, 0xdd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb2, 0xe0, 0x9e, 0xd0, 0xcb, 0x7b, 0x17, 0x55, 0xd4, 0x3c, 0x3a, 0xb7, 0x69, 0x8d, 0xf0, 0x10, 0x95, 0x57, 0x91, 0x73, 0xc7, 0xbe, 0xf3, 0x94, 0x97, 0x96, 0xe, 0x27, 0x37, 0x17, 0xff, 0x6a}} return a, nil } -var _idtablestakingDelegationDel_withdraw_reward_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x41\x6b\xdc\x30\x10\x85\xef\xfa\x15\x83\x0f\xc1\x3e\xd4\xbe\x94\x1e\x96\xb4\x21\x34\x2c\x14\x42\x53\x92\xb4\x3d\xcf\x4a\xe3\xb5\x1a\x59\x63\xc6\xe3\x3a\x50\xf2\xdf\x8b\xed\xb5\xe3\x64\xf7\x50\x4a\x74\x11\x66\xe6\xe9\xbd\x4f\x1a\xfb\xba\x61\x51\xd8\x06\xee\xbf\x5c\xdd\xe3\x2e\xd0\x9d\xe2\x83\x8f\x7b\x28\x85\x6b\x48\x8e\x0b\x89\x59\x69\xee\xf9\x81\xe2\xaa\x75\xfc\x4e\x8c\x31\x2a\x18\x5b\xb4\xea\x39\xa6\x58\x73\x17\x75\x03\xdf\xb7\xfe\xf1\xc3\xfb\x0c\xfe\x18\x03\x00\x50\x14\x70\xcd\x16\x03\xfc\x46\xf1\x83\x01\x94\x2c\x80\x20\x54\x92\x50\xb4\x04\xca\xa0\x15\x81\xa3\x40\x7b\x54\x16\xe0\xdd\x2f\xb2\x3a\xaa\x03\xe9\x73\xe1\x96\xca\x0d\x60\xa7\x55\x7a\x9c\x37\xbf\x9a\xbb\x6e\xfa\x48\x92\xc1\xd9\x89\x9e\xaf\xec\x68\xe9\x33\x8b\x41\x39\x23\x8d\x06\x67\x0b\x61\xfe\x03\xbb\xa0\x53\x5f\x23\xd4\xa0\x50\x8a\xd6\xea\x06\x2e\x3b\xad\x2e\xad\x1d\x80\x07\x50\x38\xac\xa2\x80\x1d\x8b\x70\xff\xcf\x7c\xc3\x6a\x29\x94\xf9\x1a\x12\x3e\xc2\x60\x93\x4f\x67\x9d\xbf\x19\xf1\xa7\x74\x78\xc2\xcd\x89\x31\x78\x3e\xeb\x4e\x59\x70\x4f\xdf\x50\xab\x6c\x49\x38\xac\x8b\x0b\x68\x30\x7a\x9b\x26\x9f\xb9\x0b\x0e\x22\xeb\x0c\xfb\x02\xb5\x3d\x0c\x16\xba\xda\xc7\x24\x33\x2f\x31\xd7\x57\xfd\x0a\xf3\xf5\xbd\xcf\x69\x8b\x76\x8a\x54\x2c\xda\xb1\xfc\x7f\xe9\xb6\xd7\x37\x3f\x61\xd4\xcf\xd1\x9e\xa6\x8d\x1e\xc9\x76\x4a\xf3\xd4\x9e\x0c\x9c\x3b\x6a\xb8\xf5\x7a\x08\x76\xfe\xee\xe8\xe5\xf2\xde\x6b\xe5\x04\xfb\x5b\xea\x51\x1c\xb9\x51\xda\x2e\xff\xc6\xb4\x67\x8b\xf5\xd3\xdf\x00\x00\x00\xff\xff\x74\xda\xf9\x62\x99\x03\x00\x00" +var _idtablestakingDelegationDel_withdraw_reward_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\x4d\x6b\xdc\x40\x0c\xbd\xcf\xaf\x10\x3e\x2c\xf6\xa1\xf6\xa5\xf4\xb0\xa4\x0d\x6d\xc3\x42\x21\x34\x25\x49\xd3\xb3\x76\x46\xde\x9d\x66\x76\x64\x64\xb9\x0e\x94\xfc\xf7\xe2\xcf\x78\xbb\x5b\x28\xa5\xba\x08\xa3\x27\xbd\xf7\x2c\x8d\x3f\x54\x2c\x0a\x9b\xc0\xed\xa7\xab\x7b\xdc\x06\xba\x53\x7c\xf4\x71\x07\xa5\xf0\x01\x92\xd3\x42\x62\x16\x3d\xf7\xfc\x48\x71\x01\xed\xbf\x13\x63\x8c\x0a\xc6\x1a\xad\x7a\x8e\x29\x1e\xb8\x89\xba\x86\xaf\x1b\xff\xf4\xe6\x75\x06\x3f\x8d\x01\x00\x28\x0a\xb8\x66\x8b\x01\x7e\xa0\xf8\x8e\x00\x4a\x16\x40\x10\x2a\x49\x28\x5a\x02\x65\xd0\x3d\x81\xa3\x40\x3b\x54\x16\xe0\xed\x77\xb2\xda\x77\x07\xd2\x97\xc2\x2d\x95\x6b\xc0\x46\xf7\xe9\xa9\xde\xfc\x6a\x42\xdd\xb4\x91\x24\x83\xd5\x19\xcc\x67\x76\x34\xe3\xcc\x4c\x50\x4e\x96\x7a\x82\xd5\xec\x30\x7f\xc0\x26\xe8\x80\xab\x84\x2a\x14\x4a\xd1\x5a\x1d\x45\x7c\x60\x11\x6e\x1f\x30\x34\x94\xc1\xea\xbd\xb5\x9d\xff\xce\x37\x8c\x51\x14\xb0\xed\x31\x7f\x6d\xb7\x8b\x9a\x42\x99\x2f\x3d\xc3\x5b\xe8\x58\xf3\x5a\x59\x70\x47\xf9\x30\xf3\xe2\xbf\xfd\x88\x77\x69\xb7\xd9\xf5\x99\xeb\x78\x99\x75\x37\x70\x7f\x41\xdd\x67\xb3\xd2\x2e\x2e\x2f\xa1\xc2\xe8\x6d\x9a\x7c\xe4\x26\x38\x88\xac\x93\xe9\x23\xcb\xf5\x78\x6f\xe8\x0e\x3e\x26\x99\x39\xb6\xbb\xdc\xc0\x1f\xec\xfe\xbe\x96\x49\x75\x31\xe2\x8a\x79\x46\x5f\xfe\x37\x95\x9b\xeb\x9b\x6f\xd0\xf7\x4f\x12\x9f\x87\x44\x4f\x64\x1b\xa5\xe9\xa8\xcf\x0a\xcf\x1d\x55\x5c\x7b\x1d\x85\x5d\xbc\x3a\xd9\x64\xde\x7a\xdd\x3b\xc1\xf6\x96\x5a\x14\x47\xae\x6f\xad\xe7\xa7\x33\xe4\x6c\xa6\x7e\xfe\x15\x00\x00\xff\xff\xd5\x98\xe2\x33\xb8\x03\x00\x00" func idtablestakingDelegationDel_withdraw_reward_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2430,11 +2430,11 @@ func idtablestakingDelegationDel_withdraw_reward_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_withdraw_reward_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc, 0x4b, 0x1a, 0x8e, 0x8b, 0x65, 0x20, 0x1a, 0xe4, 0x29, 0xda, 0x30, 0xa5, 0xa8, 0xa0, 0xc6, 0xca, 0xd5, 0x2d, 0x23, 0x42, 0x23, 0xa9, 0x4b, 0xef, 0x84, 0x6f, 0xb7, 0x4d, 0x88, 0x80, 0x45}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0x69, 0x4a, 0xc2, 0x9c, 0x8c, 0xbe, 0x30, 0xf1, 0x75, 0xca, 0x4, 0xe6, 0x89, 0xc4, 0x37, 0xa4, 0x54, 0x4, 0x46, 0x39, 0x59, 0x38, 0x65, 0xad, 0x42, 0x81, 0x10, 0x43, 0x24, 0x11, 0x43}} return a, nil } -var _idtablestakingDelegationDel_withdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\xcf\x6a\xdc\x40\x0c\xc6\xef\xf3\x14\xc2\x87\x60\x1f\x6a\x5f\x4a\x0f\x26\x6d\x08\x0d\x0b\x85\xd0\x94\x26\x69\xcf\xda\xb1\xbc\x9e\xee\x78\x64\xc6\x72\xbd\x50\xf6\xdd\xcb\xd8\x6b\xaf\xf7\xcf\xa1\x94\xe8\x32\x18\x49\xf3\x7d\x3f\x8d\x6c\xea\x86\xbd\xc0\xca\x72\xff\xe5\xe1\x05\xd7\x96\x9e\x05\xb7\xc6\x6d\xa0\xf4\x5c\x43\x74\x99\x88\xd4\xa2\xe7\x85\xb7\xe4\x16\xa5\xc3\x77\xa4\x94\x12\x8f\xae\x45\x2d\x86\x5d\x8c\x35\x77\x4e\x72\x78\x5d\x99\xdd\x87\xf7\x09\xfc\x51\x0a\x00\x20\xcb\xe0\x91\x35\x5a\xf8\x8d\xde\x04\x01\x28\xd9\x03\x82\xa7\x92\x3c\x39\x4d\x20\x0c\x52\x11\x14\x64\x69\x83\xc2\x1e\x78\xfd\x8b\xb4\x0c\xdd\x96\xe4\x98\xf8\x4e\x65\x0e\xd8\x49\x15\x5f\xfa\x4d\x1f\xa6\xaa\xa7\xde\x91\x4f\xe0\xe6\x4a\xcd\x57\x2e\x68\xae\x53\xb3\x40\x39\x21\x0d\x02\x37\x33\x61\xfa\x03\x3b\x2b\x63\x5d\xe3\xa9\x41\x4f\x31\x6a\x2d\x39\xdc\x77\x52\xdd\x6b\x1d\x80\x03\x28\x1c\x22\xcb\x60\xcd\xde\x73\xff\xcf\x7c\x21\x5a\xb2\x65\xba\x84\x84\x8f\x10\x64\xd2\xf1\xae\xdb\x37\x23\xfe\x14\x87\x27\xcc\xaf\xac\xc1\xf1\xae\x67\x61\x8f\x1b\xfa\x86\x52\x25\xb3\xc3\x10\x77\x77\xd0\xa0\x33\x3a\x8e\x3e\x73\x67\x0b\x70\x2c\x13\xec\x09\x6a\x7b\x58\x2c\x2c\x6a\xe3\xa2\x44\x9d\x62\x2e\x47\x7d\x86\x79\x3e\xf7\xc9\x6d\xd6\x8e\x96\xb2\xb9\x77\x48\xff\x9f\xbb\xd5\xe3\xd3\x4f\x18\xfa\x27\x6b\xfb\xf1\xa0\x1d\xe9\x4e\x68\xda\xda\xab\x86\xd3\x82\x1a\x6e\x8d\x1c\x8c\xdd\xbe\xbb\x78\xb9\xb4\x37\x52\x15\x1e\xfb\x57\x17\xe6\x40\xc5\xd0\xda\xce\xff\xc6\x78\x26\xb3\xf4\xfe\x6f\x00\x00\x00\xff\xff\x19\x57\x06\xc9\x99\x03\x00\x00" +var _idtablestakingDelegationDel_withdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\x4d\x8b\xdb\x40\x0c\xbd\xcf\xaf\x10\x3e\x04\xfb\x50\xfb\x52\x7a\x08\xdb\x2e\x6d\x97\x40\x61\xe9\x96\xee\x47\xcf\xca\x58\x8e\xa7\x19\x8f\xcc\x58\xae\x03\x25\xff\xbd\x8c\xbf\xe2\x34\x29\x94\x52\x5d\x06\xa3\x27\xbd\xf7\x24\xd9\x54\x35\x7b\x81\x8d\xe5\xee\xd3\xdd\x13\x6e\x2d\x3d\x0a\xee\x8d\xdb\x41\xe1\xb9\x82\xe8\x32\x11\xa9\x45\xcd\x13\xef\xc9\x2d\xa0\xfd\x77\xa4\x94\x12\x8f\xae\x41\x2d\x86\x5d\x8c\x15\xb7\x4e\xd6\xf0\xbc\x31\x87\x37\xaf\x13\xf8\xa9\x14\x00\x40\x96\xc1\x3d\x6b\xb4\xf0\x03\xbd\x09\x04\x50\xb0\x07\x04\x4f\x05\x79\x72\x9a\x40\x18\xa4\x24\xc8\xc9\xd2\x0e\x85\x3d\xf0\xf6\x3b\x69\xe9\xab\x2d\xc9\x29\xf1\x95\x8a\x35\x60\x2b\x65\x7c\xa9\x37\xbd\x9b\x50\x0f\x9d\x23\x9f\xc0\xea\x0a\xe6\x33\xe7\x34\xe3\xd4\x4c\x50\x4c\x96\x7a\x82\xd5\xec\x30\x7d\xc1\xd6\xca\x80\xab\x3d\xd5\xe8\x29\x46\xad\x65\x14\xf1\x81\xbd\xe7\xee\x05\x6d\x4b\x09\xac\xde\x6b\x1d\xfc\x07\xdf\x30\x46\x96\xc1\xb6\xc7\xfc\xb5\xdd\x10\x0d\xd9\x22\x5d\x7a\x86\xb7\x10\x58\xd3\x46\xd8\xe3\x8e\xd2\xa1\xe7\xcd\x7f\x1b\xc4\xbb\x38\x6c\x76\x7d\xe5\x3a\x4e\xbd\x1e\x07\xee\x2f\x28\x65\x32\x2b\x0d\x71\x7b\x0b\x35\x3a\xa3\xe3\xe8\x23\xb7\x36\x07\xc7\x32\x99\x3e\xb3\xdc\x8c\xf7\x86\x79\x65\x5c\x94\xa8\x73\xbb\xcb\x0d\xfc\xc1\xee\xef\x6b\x99\x54\x67\x23\x2e\x9b\x7b\xf4\xe9\x7f\x53\xb9\xb9\x7f\xf8\x06\x7d\xfd\x24\xf1\x38\x3c\x74\x20\xdd\x0a\x4d\x47\x7d\x55\x78\x9a\x53\xcd\x8d\x91\x51\xd8\xcd\xab\x8b\x4d\xa6\x9d\x91\x32\xf7\xd8\x3d\xbb\x30\x0f\xca\xfb\xd2\x66\xfe\x75\x86\x37\x99\xa9\x8f\xbf\x02\x00\x00\xff\xff\xb8\x15\x1d\x98\xb8\x03\x00\x00" func idtablestakingDelegationDel_withdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2450,11 +2450,11 @@ func idtablestakingDelegationDel_withdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x87, 0xda, 0xef, 0x51, 0x96, 0x44, 0xca, 0xf1, 0x93, 0x42, 0xa5, 0xd2, 0x8a, 0x11, 0xa8, 0x5c, 0x7b, 0x9e, 0xe0, 0xb, 0xcf, 0x33, 0xe9, 0x7a, 0x28, 0x42, 0x74, 0x1b, 0xa1, 0x8f, 0x86, 0x58}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0x9, 0xa9, 0xbe, 0x99, 0x3e, 0x9a, 0x30, 0x27, 0x80, 0xe7, 0x17, 0x89, 0x21, 0xf2, 0xd3, 0x7d, 0x98, 0x8f, 0xf6, 0x2c, 0xc2, 0xb1, 0x96, 0x6, 0x8a, 0x98, 0x7e, 0xc2, 0xed, 0x7c, 0x58}} return a, nil } -var _idtablestakingDelegationDelegator_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\xcd\x8a\xea\x40\x10\x85\xf7\xfd\x14\x85\x0b\x49\xe0\x62\xf6\xa2\x82\x5c\xb9\x70\x37\x33\x82\xbe\x40\xa5\x53\x26\x3d\x69\xbb\x42\xa7\x42\x66\xd0\xbc\xfb\x90\x38\xd3\x1a\x94\xf9\xa9\x5d\xd2\xa7\xce\x39\xf5\x99\x63\xc5\x5e\xe0\x9f\xe5\xf6\xff\x66\x8f\xa9\xa5\x9d\x60\x69\x5c\x0e\x07\xcf\x47\x98\xdc\x3f\x4c\xd4\xcd\xce\x9e\x4b\x72\x37\xd2\xe1\x7b\xa2\x54\x92\xc0\xbe\x30\x35\x88\x47\x57\xa3\x16\xc3\x0e\x30\xcb\x6a\x40\xa8\x9a\xd4\x1a\x0d\x19\x59\xca\x51\xd8\x83\xc6\x0a\x53\x63\x8d\xbc\x81\x30\xa0\x03\xd4\x9a\x1b\x27\xd0\x1a\x29\x7a\x27\x74\x40\xaf\xa6\x96\xbe\xd5\x13\x67\xb4\x09\xab\x9c\xbe\x90\x16\xa5\x6e\x63\x4e\x4a\x01\x00\x54\x9e\x2a\xf4\x14\xa1\xd6\x32\x87\x75\x23\xc5\xfa\x62\x1b\x7f\x2a\xfa\x31\x87\x3e\x4d\x66\x29\x7b\xcf\xed\x02\x1b\x29\xa2\xfb\x93\x67\x21\xf1\xb9\x75\xe4\x63\x98\x3e\xd0\x8c\x9a\xad\xa2\x9e\xc9\xfc\x01\xd7\xab\xd7\x4e\xd8\x63\x4e\x5b\x94\x22\x86\xe5\x12\x9c\xb1\x70\x3e\x87\x6a\xfd\x0c\xdd\x72\x92\xbf\x01\xd1\x62\x7a\xfa\x2e\x7b\x3b\x00\xee\x56\x51\x72\x41\x9d\x1c\x2c\xb7\x1f\xca\x20\x8a\x67\xba\x20\x5d\x46\x71\xc8\x3b\x8d\x92\x3d\x49\xe3\x5d\xf8\xd5\x5d\x91\x0d\x9d\xac\x71\xe5\x6f\xaa\x8c\xbc\xbf\xea\xf5\x67\xa4\x14\xf4\x39\xc9\x8f\x31\x86\xdd\xcb\x55\x9d\xea\xde\x03\x00\x00\xff\xff\x9f\x8a\x9c\x77\xdf\x02\x00\x00" +var _idtablestakingDelegationDelegator_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\xcd\xae\xda\x30\x10\x85\xf7\x7e\x8a\x29\x0b\x94\x48\x28\xd9\x23\x40\x6a\x8b\x2a\x75\xd3\x22\x81\xba\x9f\x38\x43\xe2\x62\xec\xc8\x9e\x28\xad\x20\xef\x5e\x25\x14\x27\xb9\xa0\xfb\xe3\x5d\xe2\x39\x3e\x9f\x3f\xab\x73\x65\x1d\xc3\x37\x6d\x9b\xef\xdb\x03\x66\x9a\xf6\x8c\x27\x65\x0a\x38\x3a\x7b\x86\xd9\xe3\xc6\x4c\x8c\x32\x07\x7b\x22\x33\x1a\xed\xbf\x67\x42\xa4\x29\x1c\x4a\xe5\x81\x1d\x1a\x8f\x92\x95\x35\x80\x79\xee\x01\xa1\xaa\x33\xad\x24\xe4\xa4\xa9\x40\xb6\x0e\x24\x56\x98\x29\xad\xf8\x2f\xb0\x05\x34\x80\x52\xda\xda\x30\x34\x8a\xcb\xee\x24\x34\x40\x7f\x94\xe7\x8e\xea\x87\xcd\x69\x1b\xa2\x36\xfb\x4d\x92\x85\x18\xd7\x5c\x84\x00\x00\xa8\x1c\x55\xe8\x28\x42\x29\x79\x09\x58\x73\x19\x7d\xb1\xce\xd9\xe6\x17\xea\x9a\x62\x98\x7f\xbe\xb5\xc4\xf7\x40\xb7\xd4\xb1\x2b\xe7\xc4\xb3\x75\x58\x50\x92\xf5\x89\x55\x9f\x7e\x34\x91\x04\x90\x9f\x8d\x21\x17\xc3\xfc\xc9\xcc\x04\x78\x13\x75\xaa\x96\x4f\x74\x0f\x67\xed\x6f\xdd\x3b\xe4\x32\x86\xf5\x1a\x8c\xd2\x70\xbd\x06\xc4\x6e\xf5\x8c\x41\x9b\x22\x9f\x14\xc4\xab\xf9\xe5\xad\xfa\x5d\xaf\xbe\xdd\x44\xe9\xed\x11\xd2\xa3\xb6\xcd\xff\xc9\x30\x14\x7f\x4a\x64\x49\xf2\x14\xc5\xa1\xf3\x32\x69\x77\xc4\xb5\x33\xe1\x57\x3b\xe8\xd3\xc4\xc3\xbb\x7e\xc5\x0a\xd6\x4f\x50\xef\x6e\x95\xf7\x35\x7d\x04\x7a\x02\xf1\x4e\x83\x21\x33\x5c\xe6\x91\xa8\x97\xe1\xcb\x69\xc1\xf8\x1e\x8b\xa9\x7d\x5e\xbe\xe6\x6f\xf1\xa2\xb3\x15\xed\xbf\x00\x00\x00\xff\xff\xe6\xda\xa3\x2f\x65\x03\x00\x00" func idtablestakingDelegationDelegator_add_capabilityCdcBytes() ([]byte, error) { return bindataRead( @@ -2470,7 +2470,7 @@ func idtablestakingDelegationDelegator_add_capabilityCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/delegator_add_capability.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3, 0x8e, 0x89, 0x49, 0xad, 0x20, 0xad, 0xdb, 0x39, 0xd1, 0xed, 0x98, 0xc9, 0xd8, 0x8a, 0x58, 0xf5, 0x52, 0xbd, 0x18, 0xbe, 0x49, 0xb2, 0xbd, 0xab, 0x93, 0x20, 0x18, 0x7f, 0x94, 0x32, 0x4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x24, 0x75, 0x27, 0xd0, 0x17, 0x1f, 0x9d, 0xf7, 0xd9, 0x16, 0x2a, 0x29, 0x3e, 0x27, 0x8, 0xba, 0x9e, 0x91, 0x4a, 0xed, 0x2b, 0x5a, 0xe3, 0x6f, 0x46, 0x70, 0x8a, 0x83, 0x80, 0x37, 0x96, 0x9f}} return a, nil } @@ -2514,7 +2514,7 @@ func idtablestakingDelegationGet_delegator_infoCdc() (*asset, error) { return a, nil } -var _idtablestakingDelegationGet_delegator_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\xcf\x6a\xf3\x40\x0c\xc4\xef\xfb\x14\x83\x0f\x1f\x36\x7c\xc4\xf7\xd0\x36\x84\x84\x42\x2e\xa5\xd0\xbc\x80\xbc\x2b\x3b\xdb\x6e\x56\x66\x57\x26\x94\x90\x77\x2f\x89\x9b\x3f\xa5\x81\xea\x24\x46\xc3\xfc\x24\xf9\x6d\x2f\x49\xf1\x1c\x64\xb7\x5a\xae\xa9\x09\xfc\xa6\xf4\xe1\x63\x87\x36\xc9\x16\xc5\xef\x41\x61\x4c\x5d\x63\xbd\xf1\x19\xd9\x26\xdf\x2b\x3a\xd6\x0c\x0a\x01\xba\x61\xf8\xd8\x0a\xa8\x91\x41\x41\x70\x1c\xb8\x23\x95\x04\x8a\x0e\x89\x75\x48\x31\xc3\xab\x31\x64\x2d\xe7\x5c\x52\x08\x15\xda\x21\x62\x4b\x3e\x96\xe4\x5c\xe2\x9c\xa7\x98\x8f\x4d\x35\xbd\xb3\xd8\x64\x79\x0e\x5d\x1d\x51\x7b\x63\x00\x20\xb0\xde\xd0\x1e\x8f\x3b\xcd\xad\x95\x21\xea\x39\xb5\x3a\xf9\x8e\x35\xe9\x58\x17\xd4\x53\xe3\x83\xd7\xcf\x87\x7f\xfb\x3b\x90\x17\x71\x7c\x01\xbd\x0e\x4d\xf0\xf6\xf0\x54\xd6\xfd\xa9\xab\xdb\x20\xbb\x6f\xe7\xc5\x74\x93\xdf\x48\x4a\xb2\x2b\xaf\xca\x6c\x86\x9e\xa2\xb7\x65\xb1\x90\x21\x38\x44\x51\x8c\x26\x24\x6e\x39\x71\xb4\x0c\x95\x9b\x0b\xa4\x79\x67\xab\x45\x35\x5e\x37\x7e\xee\xcf\x67\x94\x51\x1c\xaf\x96\xd3\x6b\xce\x64\x54\xfe\x5f\x95\x9f\x63\xef\x2a\x73\x30\x5f\x01\x00\x00\xff\xff\x00\x83\xc3\x6a\x05\x02\x00\x00" +var _idtablestakingDelegationGet_delegator_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x6b\xe3\x40\x0c\x85\xef\xf3\x2b\xde\xfa\xb0\xd8\xb0\xd8\xf7\xb0\xbb\x21\x6c\x58\xc8\xa5\x14\x9a\x3f\x20\xcf\xc8\xce\xb4\x93\x91\x99\x91\xc9\x21\xe4\xbf\x97\xc4\x4d\x9c\xd2\x40\x75\x12\xd2\xe3\x7d\xd2\xf3\xfb\x41\x92\xe2\x7f\x90\xc3\x66\xbd\xa5\x36\xf0\x8b\xd2\x9b\x8f\x3d\xba\x24\x7b\x14\x5f\x17\x85\x31\x4d\x83\xed\xce\x67\x64\x9b\xfc\xa0\xe8\x59\x33\x28\x04\xe8\x8e\xe1\x63\x27\xa0\x56\x46\x05\xc1\x71\xe0\x9e\x54\x12\x28\x3a\x24\xd6\x31\xc5\x0c\xaf\xc6\x90\xb5\x9c\x73\x49\x21\x54\xe8\xc6\x88\x3d\xf9\x58\x92\x73\x89\x73\x5e\x60\x35\x35\xd5\xe2\xc1\x61\xf5\xfa\x6a\xba\x39\xa3\x8e\xc6\x00\x40\x60\xbd\xa3\xfd\x39\xdf\xb4\xb2\x56\xc6\xa8\x57\xd7\xea\xa2\x3b\x57\x6d\x69\xa0\xd6\x07\xaf\x9e\x73\xdd\xb3\xfe\xfe\x79\x7c\xc0\x79\x12\xc7\x37\xd6\xf3\xd8\x06\x6f\x4f\x7f\xcb\x66\xb8\x74\x4d\x17\xe4\xf0\xa1\xbc\x89\xaa\x1f\x33\xa3\x95\x94\xe4\x50\xce\xd4\xe5\x12\x03\x45\x6f\xcb\xe2\x9f\x8c\xc1\x21\x8a\x62\x12\x21\x71\xc7\x89\xa3\x65\xa8\xdc\x7d\x21\xed\x2b\x5b\x2d\xaa\xe9\xc3\x29\xbd\x6f\x03\x29\xa3\x38\xde\xac\x17\xb3\x4f\x3d\x4d\x7e\xcd\x93\xcf\x6b\xef\x2a\x73\x32\xef\x01\x00\x00\xff\xff\x6d\x02\x1c\x02\x09\x02\x00\x00" func idtablestakingDelegationGet_delegator_info_from_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -2530,7 +2530,7 @@ func idtablestakingDelegationGet_delegator_info_from_addressCdc() (*asset, error } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_info_from_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xab, 0x2, 0x1b, 0x49, 0x6, 0xce, 0x6b, 0x6f, 0x3f, 0x70, 0xaf, 0xe3, 0xcc, 0xec, 0xdb, 0xcc, 0x4d, 0xf, 0x5f, 0x46, 0x99, 0x70, 0x3e, 0xcb, 0xab, 0xbe, 0x4c, 0xd0, 0xea, 0xd9, 0xd3, 0x9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x20, 0xee, 0x81, 0x19, 0xa9, 0x97, 0x75, 0x8e, 0xb2, 0xa1, 0x41, 0x50, 0x8c, 0x76, 0xd6, 0x33, 0xfd, 0x16, 0xca, 0x13, 0x40, 0x46, 0x42, 0x25, 0xe4, 0xaf, 0x56, 0xad, 0x90, 0xc6, 0xae, 0x1}} return a, nil } @@ -2654,7 +2654,7 @@ func idtablestakingDelegationGet_delegator_unstaking_requestCdc() (*asset, error return a, nil } -var _idtablestakingDelegationRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\x41\x6f\x9b\x40\x10\x85\xef\xfc\x8a\x91\x0f\x11\x48\x31\x5c\xaa\x1e\x10\x4d\x14\xd9\xb2\x14\xa9\x4a\xa3\x3a\x6d\xce\x03\x0c\xb0\x35\xec\xa0\x61\x28\x95\x22\xff\xf7\x6a\x71\xb2\xc1\xad\x2f\xd9\xcb\xda\xec\x9b\x99\xef\xcd\x33\x5d\xcf\xa2\xb0\x6b\x79\xba\xdf\x3e\x61\xde\xd2\x5e\xf1\x60\x6c\x0d\x95\x70\x07\xab\xff\x1f\x56\xc1\xa2\xe6\x89\x0f\x64\x17\xd2\xf9\xff\xbb\x62\xb4\xb5\xc9\x5b\x3a\x53\x2d\xbf\xad\x82\x40\x05\xed\x80\x85\x1a\xb6\xa1\xe5\x92\xee\xb7\x29\xec\x55\x8c\xad\xaf\x01\x3b\x1e\xad\xa6\xf0\x63\x67\xfe\x7c\xfe\x14\xc1\x4b\x10\x00\x00\xf4\x42\x3d\x0a\x85\x58\x14\x9a\xc2\xdd\xa8\xcd\x5d\x51\x38\xa5\x57\xb8\xd3\x92\x42\xf5\x86\xf4\x9d\x2a\xf8\x02\xae\x20\xce\x59\x84\xa7\x0c\x47\x6d\xc2\x33\x98\xf8\xd9\x68\x53\x0a\x4e\xce\x6c\x04\x57\xde\x4f\xfc\x13\xc7\x56\x6f\x42\x67\x20\x85\x64\x50\x16\xac\x29\xf1\xcd\xe7\xe7\xc8\x0f\x76\xe7\xf6\x16\x7a\xb4\xa6\x08\x57\x1b\x1e\xdb\x12\x2c\x2b\x9c\x06\x83\x50\x45\x42\xb6\x20\x50\x86\xdd\xd7\x6f\xcf\x30\xd7\xaf\xa2\x77\xf4\x24\x81\x8d\x10\x2a\x01\x82\xa5\x09\x4a\x6a\xa9\x46\x65\x01\xce\x7f\x51\xa1\x50\xb1\x80\x36\x04\x6e\x61\x67\x86\x2d\x4d\x5b\x2f\xce\xd6\x17\x72\x8d\x85\x6a\x33\x28\xc9\xc3\x42\xea\x37\x7f\xba\xaf\x41\x9d\xaf\x61\xc3\x5d\x67\x54\xa9\x4c\x21\x5b\x2f\x77\x19\x4f\xaf\xab\x0a\xdf\x22\x3a\xdd\xd1\xb9\x89\xbd\xb2\xd0\x0c\xfa\xaf\x03\xaf\x9a\x23\x19\xf0\x37\x85\xd9\x7a\x09\xef\x10\xd2\x4b\xf8\x5e\xb1\x3f\xc5\xf0\x88\xda\x2c\xa6\xce\xfd\x5a\x63\x0f\xd9\xd5\xcb\x85\xea\x07\x2e\xc9\x77\x78\x1c\xf3\xd6\x14\xc7\x9b\x30\xe9\xe7\x5f\x73\xa2\xaf\xca\x25\x08\x4a\x4d\xfa\x01\x18\xc7\x71\x0c\x82\xe3\xdf\x00\x00\x00\xff\xff\x87\x06\xc4\x34\x5c\x03\x00\x00" +var _idtablestakingDelegationRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x8f\x9b\x30\x10\x85\xef\xfc\x8a\x11\x87\x08\xa4\x04\x2e\x55\x0f\x88\xee\xaa\x4a\x14\x69\xa5\x6a\xbb\x6a\xb6\xdd\xf3\x60\x06\xe2\xae\xb1\x91\x19\x4a\xa5\x55\xfe\x7b\x65\x48\x1c\x68\x53\x69\x7d\xb1\xc0\x6f\xfc\xde\xe7\x19\xd9\xb4\xc6\x32\xec\x95\x19\x1e\x76\xcf\x58\x28\x3a\x30\xbe\x4a\x5d\x43\x65\x4d\x03\xe1\xbf\x07\x61\x30\xab\x79\x36\xaf\xa4\x67\xd2\xf1\xfb\xaa\xe8\x75\x2d\x0b\x45\x0b\xd5\xfc\x5f\x18\x04\x6c\x51\x77\x28\x58\x1a\x1d\x69\x53\xd2\xc3\x2e\x83\x03\x5b\xa9\xeb\x35\x60\x63\x7a\xcd\x19\x7c\xdf\xcb\xdf\x1f\x3f\xc4\xf0\x16\x04\x00\x00\xad\xa5\x16\x2d\x45\x28\x04\x67\x80\x3d\x1f\xa3\x03\x1b\x8b\x35\xc5\xb0\xfa\x2c\x84\x2b\xf2\x62\xb7\x14\x31\x54\x97\x74\xdf\xa8\x82\x4f\xe0\x6a\x93\x6e\xaa\x4a\x0a\x63\xad\x19\xf2\xf1\xa6\x45\xbe\xe4\x45\xf2\xb1\xb4\x38\x38\xfe\x18\x56\x1e\x31\xf9\x81\xbd\xe2\xbb\xc8\x31\x65\x90\x9e\x2f\x4a\xbd\xc9\x78\x1c\xfb\x00\x6e\xdd\xdf\x43\x8b\x5a\x8a\x28\xdc\x9a\x5e\x95\xa0\x0d\xc3\x64\x0c\x96\x2a\xb2\xa4\x05\x01\x1b\xd8\x7f\xf9\xfa\x02\x63\x7d\x18\x5f\x11\xd2\x14\xb6\x96\x90\x09\x10\x34\x0d\x50\x92\xa2\x1a\xd9\x58\x30\xc5\x4f\x12\x0c\x95\xb1\xc0\x47\x02\xf7\x86\x0b\x70\x4d\xc3\xce\x8b\xf3\xcd\x8d\x56\x27\x96\x6a\xd9\x31\xd9\xc7\x99\xd4\x37\x63\xda\xd7\xc0\x8e\xab\xdb\x9a\xa6\x91\xcc\x54\x66\x90\x6f\xe6\x6f\x9a\x0c\xe7\xa7\x8a\x2e\x5d\x9b\xf6\x78\x09\xe1\x1a\x45\x63\xd0\xbf\x09\xbc\x6a\xd1\x9a\x0e\x7f\x51\x94\x6f\xe6\x10\x2e\x4a\x76\x0b\xc3\x2b\xce\xd3\xf0\x84\x7c\x8c\x97\x53\xe0\x4d\xb7\xd8\x5e\xa6\x40\x60\x8b\x85\x54\x92\x25\x75\xde\x57\x76\x5d\x4f\xf9\xea\xed\x86\xcd\xa3\x29\xc9\x5b\x3d\xf5\x85\x92\xe2\x74\x17\xbd\x3b\xcf\x02\xf3\xff\xde\xd1\x3c\xea\x1a\x90\x33\x48\xdb\xd1\x6c\x9c\xb2\xb3\x87\xb7\x98\xee\x3d\x05\xa7\x3f\x01\x00\x00\xff\xff\x20\x3d\x10\x42\xd1\x03\x00\x00" func idtablestakingDelegationRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -2670,11 +2670,11 @@ func idtablestakingDelegationRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x91, 0x98, 0xd5, 0xb2, 0x34, 0x10, 0x9d, 0x3a, 0x29, 0x0, 0x4f, 0xc9, 0xb3, 0x8c, 0x69, 0x7a, 0x16, 0xa2, 0xa0, 0x1, 0x57, 0x1f, 0x9c, 0xab, 0x7d, 0x33, 0x4c, 0xaa, 0x47, 0xaa, 0x76, 0xd9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0xdc, 0x1e, 0xb2, 0x86, 0x5c, 0xaa, 0xf5, 0x25, 0xe0, 0x72, 0x16, 0xe3, 0xdf, 0x8b, 0x76, 0xa6, 0xe, 0x22, 0xe4, 0xc4, 0x4e, 0xa, 0xd7, 0xcc, 0xac, 0x5b, 0x30, 0x6f, 0x70, 0x65, 0xc0}} return a, nil } -var _idtablestakingDelegationRegister_many_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x6f\xba\x40\x10\xc5\xef\xfb\x29\x5e\x3c\x61\xfe\x8a\xfe\xaf\x44\x0f\x46\xdb\xc4\x4b\xd3\x44\xd3\x8b\xf1\x30\xe2\x08\x5b\x61\x97\x2c\xa3\xa6\x31\x7e\xf7\x66\x51\x29\xd0\xce\x09\x66\xe6\xcd\xbe\xf7\xd3\x79\x61\x9d\xe0\x35\xb3\x97\xe5\x62\x4d\xbb\x8c\x57\x42\x47\x6d\x12\x1c\x9c\xcd\xd1\xfb\x3d\xe8\xa9\x86\x66\x6d\x8f\x6c\x1a\xab\xd5\x7f\x4f\x29\x71\x64\x4a\x8a\x45\x5b\x13\x18\xbb\xe7\xe5\xa2\x8c\xb0\x59\x89\xd3\x26\xd9\x0e\x50\x90\xa4\xf7\x86\x75\x94\xf0\x3b\x49\xba\xed\xe3\xaa\x14\x00\x14\x8e\x0b\x72\x1c\x50\x1c\x4b\x84\xd9\x49\xd2\x59\x1c\xdb\x93\x91\x7a\xc3\xd7\x99\x1c\x34\xa6\x18\xff\xb4\x0e\xd6\x55\x97\xa1\xcd\xfd\x05\x5c\xeb\x99\xaf\xd1\x08\x73\xc7\x24\x0c\x82\xe1\x0b\xf6\x9c\x71\x42\x62\x1d\xec\xee\x93\x63\xa9\x0e\x48\xca\xf0\x8e\x5b\xca\x8c\xc5\x2b\x16\xb5\x60\x32\xfc\x03\x59\xe8\x38\xd1\xa5\xb0\x7b\x6b\xac\x3e\xe2\x47\x78\x60\xd8\xe8\xed\x00\xe2\x31\x95\x73\x9b\xe7\x5a\x84\xf7\x11\x26\xc3\x9a\x5e\x18\x57\x1e\x5f\xf2\x42\xbe\x3e\xe8\x94\x49\xd0\xef\xab\x6e\x0e\x0f\x8e\x2b\xaf\xdd\x10\xad\x4d\x8f\x30\x2c\xe9\xcc\xc1\x64\xd8\xf4\xef\x1d\x44\x15\xa3\xce\x69\x4f\x54\xe3\x1f\xfe\xb7\xbb\x07\x3f\x98\x3e\x23\x84\x19\x9b\x44\xd2\x0e\xdd\xa7\x7c\xdc\xea\xde\x54\xfb\xeb\xa6\xd4\xed\x3b\x00\x00\xff\xff\x82\x5d\xe0\xf4\x74\x02\x00\x00" +var _idtablestakingDelegationRegister_many_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x6f\x82\x40\x10\x85\xef\xfb\x2b\x26\x1e\x1a\x48\x15\xed\x95\xe8\xa1\xd1\x36\xf1\xd2\x34\xd1\x78\x31\x1e\xc6\x75\x84\xad\xcb\x2e\x59\x06\x4d\x63\xfc\xef\xcd\x82\x52\xa0\x9d\x13\xcc\xcc\xdb\x79\xef\x53\x59\x6e\x1d\xc3\xbb\xb6\x97\xe5\x62\x8d\x7b\x4d\x2b\xc6\x93\x32\x09\x1c\x9d\xcd\x60\xf0\x77\x30\x10\x2d\xcd\xda\x9e\xc8\xb4\x56\xab\xff\x81\x10\xec\xd0\x14\x28\x59\x59\x13\x18\x7b\xa0\xe5\xa2\x88\x61\xbb\x62\xa7\x4c\xb2\x1b\x42\x8e\x9c\xd6\x0d\xeb\x30\xa1\x4f\xe4\x74\x17\xc2\x55\x08\x00\x80\xdc\x51\x8e\x8e\x02\x94\x92\x63\xc0\x92\xd3\x60\x85\x67\xda\xa0\x2e\x29\x84\xa7\x57\x29\x6d\x69\xb8\x59\xf7\x75\x46\x07\x0a\x66\x30\xf9\x6d\x1d\xad\xab\xce\x80\x32\xf5\x39\xb8\x36\x33\x5f\xe3\x31\xcc\x1d\x21\x13\x20\x18\xba\xc0\x81\x34\x25\xc8\xd6\x81\xdd\x7f\x91\xe4\xea\x01\x4e\x09\xbc\xfd\x8e\x52\x13\x7b\xc5\xa2\x11\x4c\x47\xff\xf0\x8b\x1c\x25\xaa\x60\x72\x1f\xad\xd5\x3b\x8b\x18\xee\x4c\xb6\x6a\x37\x04\xf6\xcc\x8a\xb9\xcd\x32\xc5\x4c\x87\x18\xa6\xa3\x06\x65\x24\x2b\x8f\x6f\x59\xce\xdf\x1b\x2c\x35\x07\x61\x28\xfa\x39\x3c\x45\xaa\xbc\xf6\x43\x74\x36\x3d\xcf\xa8\xa8\x89\x47\x05\x9e\x29\x98\x8e\xda\x39\xbc\x93\xb8\x62\xd5\x3b\xe1\xc9\x2a\x78\x86\x97\x6e\xf7\xe8\x07\xb3\x47\x94\x48\x93\x49\x38\xed\x51\x7e\xc8\x27\x9d\xee\x4d\x74\xbf\x6e\x42\xdc\x7e\x02\x00\x00\xff\xff\xc8\xbe\xd2\x06\x89\x02\x00\x00" func idtablestakingDelegationRegister_many_delegatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -2690,11 +2690,11 @@ func idtablestakingDelegationRegister_many_delegatorsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/register_many_delegators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0xc9, 0xb1, 0xc8, 0xf3, 0xd2, 0x6b, 0xd, 0x5e, 0x9e, 0x32, 0x40, 0x84, 0x52, 0xbd, 0x15, 0x2f, 0xe8, 0xd6, 0x34, 0x69, 0x82, 0x4e, 0x12, 0xef, 0x7b, 0xfd, 0xa3, 0xcf, 0x8d, 0x37, 0x72}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5, 0x40, 0x9f, 0x98, 0x5a, 0x10, 0xf9, 0x47, 0x21, 0xf4, 0x45, 0x35, 0x34, 0x50, 0xd4, 0x69, 0xed, 0x2a, 0xd8, 0xbe, 0xfd, 0x50, 0x7a, 0xd1, 0xbe, 0x27, 0x7f, 0x5f, 0x97, 0xd7, 0xe9, 0x7c}} return a, nil } -var _idtablestakingNodeNode_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xd1\x6a\xf2\x40\x10\x85\xef\xf7\x29\x06\x2f\x24\x81\x1f\xbd\x17\x15\xe4\x2f\x85\xde\xb4\x82\xbe\xc0\x64\x33\x26\xdb\xc4\x9d\x30\x99\x60\x8b\xe6\xdd\xcb\x46\x9a\x46\xac\x25\x73\x97\xec\x99\x73\xbe\x39\xee\x58\xb1\x28\x3c\x97\x7c\x7a\x79\xda\x63\x52\xd2\x4e\xb1\x70\x3e\x83\x83\xf0\x11\x26\xf7\x0f\x13\x33\xd8\xd9\x73\x41\x7e\x20\xed\xbe\x27\xc6\xcc\xe7\xb0\xcf\x5d\x0d\x2a\xe8\x6b\xb4\xea\xd8\x03\xa6\x69\x0d\x08\x55\x93\x94\xce\x82\xe7\x94\xc0\x62\x85\x89\x2b\x9d\x7e\x82\x32\xa0\x07\xb4\x96\x1b\xaf\x70\x72\x9a\x07\x13\xf4\x40\x1f\xae\xd6\x00\xf4\xca\x69\xc7\x40\x02\x9c\xbc\x93\x55\x63\x86\xf6\x67\x63\x00\x00\x2a\xa1\x0a\x85\x22\xb4\x56\x17\xb0\x69\x34\xdf\x5c\x3d\xe3\x6f\x45\x18\x77\x08\x51\x3a\x4b\x58\x84\x4f\x4b\x6c\x34\x8f\xee\x4f\x9d\x85\xc8\xb7\x8a\x04\x95\x25\x86\xe9\x03\xc5\x15\x6a\x1d\x85\x1a\x16\xbf\x54\x39\x10\xed\x94\x05\x33\xda\xa2\xe6\x31\xac\x56\xe0\x5d\x09\x97\x4b\x8f\x15\xa6\xe3\xca\x48\xff\xf7\xdd\x2c\xa7\xe7\x3f\x4d\xb7\x5d\xa3\xed\xfa\xd1\x05\x43\x55\x97\x3c\xb3\x39\xd9\x22\x8a\xfb\xdc\xf3\x0d\x81\x90\x36\xe2\xfb\x5f\xed\x4f\x6d\x1d\x5b\xe9\x7c\x31\x1a\xe9\xc6\x78\x24\xdf\xbf\x9b\x25\x45\xc9\x48\xc7\xf7\xda\x2f\x5f\xcf\x6b\x4d\xfb\x15\x00\x00\xff\xff\xe2\xbc\x02\x74\xe4\x02\x00\x00" +var _idtablestakingNodeNode_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x6b\xea\x40\x10\xc7\xef\xf9\x14\xf3\x3c\x48\x02\x12\xef\xa2\xc2\x7b\xaf\x14\x7a\x69\x05\xa5\xf7\xc9\x66\x34\x5b\xe3\x4e\xd8\x9d\x60\x8b\xfa\xdd\xcb\x6e\x30\x26\xa8\xad\x7b\x4b\x32\x33\xff\xdf\xfe\x26\x7a\x57\xb1\x15\x78\x2e\x79\xff\xf2\xb4\xc2\xac\xa4\xa5\xe0\x56\x9b\x0d\xac\x2d\xef\x60\x70\xfd\x61\x10\x75\x7a\x56\xbc\x25\xd3\x29\x0d\xcf\x83\x28\x1a\x8f\x61\x55\x68\x07\x62\xd1\x38\x54\xa2\xd9\x00\xe6\xb9\x03\x84\xaa\xce\x4a\xad\xc0\x70\x4e\xa0\xb0\xc2\x4c\x97\x5a\xbe\x40\x18\xd0\x00\x2a\xc5\xb5\x11\xd8\x6b\x29\xfc\x10\x34\x40\x9f\xda\x89\x07\x7a\xe5\x3c\x30\x90\x05\xce\x3e\x48\x49\x14\x75\xc7\x1f\xa2\x08\x00\xa0\xb2\x54\xa1\xa5\x18\x95\x92\x09\x60\x2d\x45\xfc\x8f\xad\xe5\xfd\x3b\x96\x35\x25\x30\xfc\xdb\x44\x24\xe7\x06\x7f\xf4\xda\x27\x4b\xea\x84\x2d\x6e\x28\xcd\x42\xc7\x34\x74\x5f\x1b\x48\x3d\xc9\x5b\x45\x16\x85\x6d\x02\xc3\x3b\x15\x0d\xeb\x3c\xf6\x76\x26\x37\x0c\x77\x8a\x96\x4d\xee\x02\xa5\x48\x60\x36\x03\xa3\x4b\x38\x1e\x5b\x3c\x7f\x02\x5f\xeb\x4b\x93\x4b\x37\x24\xd3\xe1\xe1\xc7\xb9\x8b\xe0\xfa\x34\xbf\x77\x89\x6e\x55\x08\xff\x93\xaa\x82\xd4\x36\x4e\xda\xec\x43\x8f\xc2\x92\xd4\xd6\xb4\xaf\x4e\x17\x85\x25\x49\xd8\x69\x33\xf2\x3f\x56\x30\xbb\xc1\x7c\x16\xac\x9d\xab\xe9\x61\xfa\x1e\xc2\xa3\x22\xdb\xa6\xe4\x02\x79\x0d\x14\xfe\x46\x57\xf4\x23\x7a\xf7\x18\xf5\xd7\x20\xbf\xac\xf2\x22\x73\xd4\x21\x68\x64\x9d\xbe\x03\x00\x00\xff\xff\xc8\x05\x97\x68\x6e\x03\x00\x00" func idtablestakingNodeNode_add_capabilityCdcBytes() ([]byte, error) { return bindataRead( @@ -2710,11 +2710,11 @@ func idtablestakingNodeNode_add_capabilityCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/node_add_capability.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x35, 0xe9, 0x19, 0x75, 0x7, 0x9, 0x2c, 0xc7, 0xb, 0x88, 0xb8, 0xbb, 0x46, 0x0, 0xb8, 0xbe, 0x24, 0xff, 0x89, 0xca, 0xe9, 0x6b, 0xce, 0x5a, 0x10, 0xcb, 0xaf, 0x70, 0xa8, 0x9b, 0xeb, 0x11}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x36, 0x6e, 0x2e, 0x8b, 0x90, 0xf8, 0x83, 0x13, 0x91, 0x8c, 0x95, 0xf2, 0x66, 0xd6, 0x35, 0x30, 0x74, 0x57, 0xd4, 0x82, 0x4f, 0x6f, 0xa, 0x8e, 0xcc, 0xab, 0x11, 0x97, 0xcd, 0xb1, 0xfd, 0xb1}} return a, nil } -var _idtablestakingNodeRegister_many_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\x4d\x6b\xdb\x40\x10\xbd\xeb\x57\x0c\x3a\x14\x99\xc6\x72\x0b\xa5\x94\xc5\x69\x30\x29\x86\x90\xd2\x96\x24\x6d\x0e\xc6\x87\xb5\x76\x64\x6d\x23\xed\x98\xd5\x28\x6a\x28\xf9\xef\x65\x57\xb6\xf5\x09\x9d\x83\x40\x6f\xde\xbc\xd9\x99\x79\xba\x38\x90\x65\x58\xe7\x54\xdf\x7c\x79\x90\xbb\x1c\xef\x59\x3e\x69\xb3\x87\xd4\x52\x01\xe1\x38\x11\x06\x9d\x9a\x07\x7a\x42\xd3\xa1\xfa\xff\x96\x51\x99\xbd\xde\xe5\xd8\x63\x75\xb1\x30\x08\xd8\x4a\x53\xca\x84\x35\x99\x28\x00\x00\xd0\xaa\x14\xb0\xb9\x67\xab\xcd\x7e\x7b\xe1\x21\x4b\x39\x3a\xf0\xe7\x8d\xe1\x4f\x47\xcc\x20\xd7\x64\xdd\x83\x56\x4a\x59\x2c\x4b\x1c\x95\xb5\x94\x5b\x7c\x19\x65\xcb\x66\x9c\xa9\x94\x2c\xa8\x32\xec\x3b\xae\xf5\x9f\x8f\x1f\x8e\xf0\x41\x72\xd6\x70\xc9\xca\x3d\xfe\x90\x9c\x6d\x83\x19\xfc\x0d\x9a\xac\xc5\x83\xb4\x18\xc9\x24\x61\x01\xab\x8a\xb3\x55\x92\x38\x9d\x33\xc3\xc5\xb3\xb4\xa0\xe1\x12\xde\xb5\x50\x4a\xd6\x4b\x83\x36\x4d\x8b\x2e\xdf\x45\x8e\x0c\xe9\x69\xb9\x77\x98\xc2\x25\xb8\x26\xf1\x8e\xac\xa5\x7a\x29\x2b\xce\xa2\xde\x5a\xe3\x47\xcd\x99\xb2\xb2\x76\x67\x9b\xc1\x9b\xf3\x65\xe2\x5f\xb2\xca\xf9\x73\xe4\x4e\x21\x60\x51\x36\x83\x2c\xce\xe2\x3e\x3d\xeb\x35\x77\x71\x75\x05\x07\x69\x74\x12\x85\xd7\x54\xe5\x0a\x0c\x31\x34\xcd\xc1\x62\x8a\x16\x4d\x82\xc0\x04\xeb\xaf\xdf\x1f\xc1\x6b\x84\xb3\xf1\x08\xec\x3a\x94\xd7\x54\x14\x9a\x19\x15\x2c\xe7\xbd\xa9\xe2\xfa\xf8\xe8\xa8\x59\xbf\x38\x9d\x61\xa3\xb7\x13\x6a\x86\x94\x77\x24\x5a\x27\x34\xb6\x69\x2c\x95\xfa\x46\x0a\xef\x30\x21\xab\xa2\xd1\x4c\x5a\x09\x67\xb5\x8d\x3e\x1e\xb7\x1b\xce\x6f\xa2\x71\xdd\x64\x7e\xe4\x3d\x31\x65\xc7\xff\x94\xde\xe2\x8b\x18\x58\x74\xb2\xa2\xf5\xa9\xe8\x7a\x76\x92\x3b\x58\xb1\x80\xe5\x7c\x00\xf5\x4a\x06\x6b\x5d\x2c\xc0\x59\x1b\x81\x33\xf4\xfb\x05\xda\xfd\xc6\x84\x7b\x24\xef\xbc\x52\x3e\x63\xb4\x9c\xb7\x37\xb8\x00\x26\xe1\xdd\x3b\xd0\x74\x5e\xd7\xf0\x16\xde\x9f\xd1\xd7\xa0\xf9\x06\xaf\xff\x02\x00\x00\xff\xff\xb8\x6b\xa8\xa9\x7c\x04\x00\x00" +var _idtablestakingNodeRegister_many_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\x4f\x6b\xdb\x4e\x10\xbd\xeb\x53\x0c\x3e\x04\x89\x5f\x2c\xff\x0a\xa5\x94\xc5\x69\x08\x29\x86\x90\xd2\x96\x24\x6d\x0e\xc6\x87\xb5\x76\x64\x6d\x23\xed\x98\xd5\x28\x6a\x28\xf9\xee\x65\x57\x8a\xf5\x17\x3a\x07\x81\xde\xbc\x99\xb7\x33\xf3\x74\x71\x24\xcb\xb0\xc9\xa9\xbe\xf9\xfc\x20\xf7\x39\xde\xb3\x7c\xd2\xe6\x00\xa9\xa5\x02\x16\xd3\xc4\x22\xe8\xd5\x3c\xd0\x13\x9a\x1e\xd5\xff\x77\x8c\xca\x1c\xf4\x3e\xc7\x01\xab\x8f\x2d\x82\x80\xad\x34\xa5\x4c\x58\x93\x09\x03\x00\x00\xad\x4a\x01\xdb\x7b\xb6\xda\x1c\x76\xe7\x1e\xb2\x94\xa3\x03\x7f\xdc\x18\xfe\xd8\x62\x06\xb9\x26\xeb\x1e\x74\xa5\x94\xc5\xb2\xc4\x49\x59\x47\xb9\xc5\x97\x49\xb6\x6c\xc6\x99\x4b\xc9\x82\x2a\xc3\x5e\x71\xa3\x7f\x7f\x78\xdf\xc2\x47\xc9\x59\xc3\x25\x2b\x0f\xf8\x5d\x72\xb6\x0b\x22\xf8\x13\x34\x59\x8b\x47\x69\x31\x94\x49\xc2\x02\x64\xc5\x59\xd8\x12\x23\x38\xbb\x4a\x12\xd7\xf2\x44\x76\xf1\x2c\x2d\x68\xb8\x80\xff\x3b\x28\x25\xeb\x55\x40\x9b\x46\xad\xcf\x77\x91\x23\x43\xfa\xb6\xe7\x3b\x4c\xe1\x02\x9c\x5e\x5c\x36\x4a\xf1\x9e\xac\xa5\x7a\xed\xd5\x07\x9b\x8e\x1f\x35\x67\xca\xca\xda\x5d\x32\x82\xb3\xd3\xb1\xe2\x9f\xb2\xca\xf9\x53\xe8\xae\x23\x60\xd5\x36\x5a\x9d\x44\x7c\x3a\x1a\x3c\xc2\xc5\xe5\x25\x1c\xa5\xd1\x49\xb8\xb8\xa6\x2a\x57\x60\x88\xa1\x11\x07\x8b\x29\x5a\x34\x09\x02\x13\x6c\xbe\x7c\x7b\x04\xdf\x63\x11\x4d\x47\x61\xa7\x50\x5e\x53\x51\x68\x66\x54\xb0\x5e\x0e\xa6\x8b\xeb\xf6\xd1\x61\x73\x11\xf1\x76\x99\xad\xde\xcd\x74\x33\xa4\xbc\x49\xd1\xba\x46\x53\xe7\xc6\x52\xa9\xaf\xa4\xf0\x0e\x13\xb2\x2a\x9c\xcc\xa4\x95\x70\xee\xdb\xea\xf6\xde\xfd\x70\x16\x14\x8d\x11\x67\xf3\x13\x3b\x8a\x39\x87\xfe\xa3\xf4\x16\x5f\xc4\xc8\xb5\xb3\x15\x9d\x75\x45\xdf\xc6\xb3\xdc\xd1\x8a\x05\xac\x97\x23\x68\x50\x32\x5a\xeb\x6a\x05\xce\xc4\x08\x9c\xa1\xdf\x2f\xd0\xfe\x17\x26\x3c\x20\x0d\x1c\x58\xca\x67\x0c\xd7\xcb\xee\x16\xe7\xc0\x24\xbc\x9b\x47\xbd\x9d\xf7\x35\xfc\x07\xef\x4e\xe8\x6b\xd0\x7c\x83\xd7\xbf\x01\x00\x00\xff\xff\x96\xeb\x6f\xdd\x97\x04\x00\x00" func idtablestakingNodeRegister_many_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2730,11 +2730,11 @@ func idtablestakingNodeRegister_many_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/register_many_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8e, 0xdd, 0xd, 0x23, 0x8a, 0x8f, 0xa2, 0x92, 0xf, 0x9e, 0xed, 0xb9, 0xf9, 0xfd, 0x52, 0x80, 0xb3, 0xbc, 0xcd, 0x89, 0xea, 0x8, 0x21, 0xee, 0x71, 0xbf, 0x3b, 0x72, 0x68, 0xa5, 0xda, 0x19}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc2, 0xe6, 0xe8, 0x83, 0x9f, 0xca, 0x99, 0x96, 0xbd, 0x0, 0x9c, 0x7a, 0x9e, 0xc1, 0xb0, 0x59, 0x36, 0x41, 0xce, 0x4a, 0x5d, 0xfb, 0x32, 0x64, 0x13, 0xaa, 0xc1, 0x2d, 0x2, 0x54, 0xa6, 0xf8}} return a, nil } -var _idtablestakingNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\xdd\x6a\xdb\x4c\x10\xbd\xd7\x53\x0c\xbe\x08\x32\x38\xf6\xcd\xc7\x47\x11\x4e\x42\x48\x09\x84\x96\x26\xe4\xa7\xb9\x5e\xef\x8e\xad\x6d\xd6\x3b\x62\x76\x54\x35\x84\xbc\x7b\x59\x29\xb6\xb4\xc8\x0d\x89\x2e\x64\xef\xcc\x99\x1f\x9d\x73\xd6\x6e\x2b\x62\x81\x4b\x47\xcd\xd5\xd7\x7b\xb5\x72\x78\x27\xea\xc9\xfa\x0d\xac\x99\xb6\x30\x19\x27\x26\xd9\xa0\xe6\x9e\x9e\xd0\x0f\xa0\xed\xb9\x47\xd4\x7e\x63\x57\x0e\x13\xd4\x30\x36\xc9\xb2\xc5\x02\xee\x4b\x1b\x40\x58\xf9\xa0\xb4\x58\xf2\xa0\x19\x95\x60\x00\x05\x1e\x1b\xf0\x64\x10\x82\x70\xad\x05\x68\xf5\x0b\xb5\xc4\x22\xe5\x0d\xd4\x95\x69\x71\x52\x22\x54\x4c\x15\x05\x34\x70\x65\xd0\x8b\x95\x67\x68\x97\xce\xb2\x41\xe3\x3c\x03\x00\xb0\xa6\x80\x3b\x61\xeb\x37\xb3\xf6\xcc\xe4\xb0\x80\x87\x2b\x2f\x5f\xba\x80\x47\x69\x88\xe3\xb7\x9e\x1b\xc3\x18\x42\x8a\xef\xd3\xdf\xf0\x39\x4d\x85\x8e\xa2\x51\x5c\x6d\xa9\xf6\x52\xc0\xc3\xa5\xfd\xf3\xff\x7f\xd9\x14\x5e\xb2\x36\xee\x50\x60\xbd\xa3\xed\x16\xd7\x05\xa8\x5a\xca\x3c\xe1\x68\xfe\x68\xa5\x34\xac\x9a\xf8\x39\x53\x38\xda\xd3\x3c\xff\xa9\x6a\x27\x5d\xa3\x8a\xb1\x52\x8c\xb9\xd2\x5a\x0a\x38\xaf\xa5\x3c\xd7\x3a\xce\xdc\x8f\x6a\xd7\x43\xb7\x9e\x0f\xe7\xc1\x09\xc4\x8a\xf9\x8a\x98\xa9\x59\x7e\x7a\xf8\x69\x1e\x45\x2d\x60\x11\x84\x58\x6d\x70\xb1\x6f\xde\xa6\xa7\xfb\xc9\xf1\x39\x3b\x83\x4a\x79\xab\xf3\xc9\x05\xd5\xce\x80\x27\x81\x6e\x30\x30\xae\x91\xd1\x6b\x04\x21\xb8\xfc\x7e\xfd\x08\x6d\xfd\x64\xda\xef\x1e\xa9\x8a\x4e\x88\x2e\x44\x86\xe5\xf1\x01\xcf\xce\x95\x31\x3f\xc8\xe0\x2d\x6a\x62\x93\x27\xd3\xa3\xea\xd6\xcc\x92\x58\xa7\x7c\x7c\xa7\xf1\x03\x06\x18\x85\xfe\x55\xd1\x6a\x9f\x1c\x53\xe4\xd0\x22\xfd\xff\x14\x23\x91\xc1\x70\x41\xdb\xad\x15\x41\x53\xc0\xf2\x78\x24\xdd\xbc\x79\x53\x26\xdf\x99\xab\xfb\xed\x39\x1f\x90\x67\xd7\x07\x74\x1e\xd3\x17\xb9\xbb\xae\x90\x95\x10\xbf\x89\x7d\x00\xd1\x29\xb0\x93\xfe\x5d\xd0\x5d\x67\x8b\x1b\x25\xe5\x14\x4e\x4e\xc0\x5b\x37\xf4\x63\x7b\x35\xe2\x5e\x41\xfd\xc6\x7c\x79\xdc\xeb\x3b\x03\xa1\x4f\xf4\x3e\xd0\xd2\x59\xff\xb4\x3c\x7a\x79\xb7\xc5\x4d\xbd\x72\x56\xbf\x9e\xa6\x4e\x89\xcf\x07\xca\xe2\xe0\xd9\xa8\x50\x14\x6f\x50\x3e\xbe\x7a\xd2\xa0\xd7\xee\x15\xd0\x05\x84\x97\x24\x6d\x30\x08\xd3\xf3\xe0\x1a\xf4\xf8\xac\x7b\xbf\xfe\x0d\x00\x00\xff\xff\xbe\x03\xe3\x4b\xd0\x05\x00\x00" +var _idtablestakingNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\x4d\x6f\xdb\x30\x0c\xbd\xfb\x57\x10\x39\x14\x36\x90\x3a\x97\x61\x18\x82\xb4\x45\x91\xa1\x40\xb1\x61\x2d\xfa\xb1\x9e\x15\x89\x8e\xb5\x2a\xa2\x21\xd1\xf3\x8a\xa2\xff\x7d\x90\x9d\xc4\xd6\x9c\x65\x6b\x0e\x8e\x45\x3e\x91\x8f\x8f\xcf\x7a\x53\x91\x63\xb8\x32\xd4\x5c\x7f\x7e\x10\x2b\x83\xf7\x2c\x9e\xb5\x5d\x43\xe1\x68\x03\x93\x71\x62\x92\x0c\xee\x3c\xd0\x33\xda\x01\xb4\x3d\xf7\x88\xda\xae\xf5\xca\x60\x84\x1a\xc6\x26\x49\x32\x9b\xc1\x43\xa9\x3d\xb0\x13\xd6\x0b\xc9\x9a\x2c\x48\x87\x82\xd1\x83\x00\x8b\x0d\x58\x52\x08\x9e\x5d\x2d\x19\x68\xf5\x03\x25\x87\x4b\xc2\x2a\xa8\x2b\xd5\xe2\xb8\x44\xa8\x1c\x55\xe4\x51\xc1\xb5\x42\xcb\x9a\x5f\xa0\x25\x9d\x24\x83\xc2\x69\x02\x00\xa0\xd5\x1c\xee\xd9\x69\xbb\x9e\xb6\x67\x47\x06\xe7\xf0\x78\x6d\xf9\x53\x17\xb0\xc8\x0d\xb9\x30\xeb\xa5\x52\x0e\xbd\x8f\xf1\x7d\xfa\x0b\xbe\xc4\x29\xdf\x49\x34\x8a\x8b\x0d\xd5\x96\xe7\xf0\x78\xa5\x7f\x7d\xfc\x90\x64\xf0\x9a\xb4\x71\x83\x0c\xc5\x4e\xb6\x3b\x2c\xe6\x20\x6a\x2e\xd3\x48\xa3\xfc\x49\x73\xa9\x9c\x68\xc2\x38\x19\x9c\xec\x65\xce\xbf\x8b\xda\x70\x57\xa8\x72\x58\x09\x87\xa9\x90\x92\xb7\x45\xee\x99\x9c\x58\xe3\x14\x96\xa2\x12\x2b\x6d\x34\x6b\xf4\x19\x9c\x5c\x4a\x19\xc8\xec\x39\xb4\xbc\xd1\x14\xf9\x90\x08\x9c\x41\x28\x95\xfb\xae\x48\xbe\x22\xe7\xa8\x59\xbc\x9b\xdd\x79\x1a\xb6\x3e\x87\xd9\xb6\xd0\x6c\xdf\xa4\x4d\x67\x7b\x06\xe1\x77\x71\x01\x95\xb0\x5a\xa6\x93\x25\xd5\x46\x81\x25\x86\xae\x31\x38\x2c\xd0\xa1\x95\x08\x4c\x70\xf5\xf5\xe6\x09\xda\xfb\x93\xac\x9f\x21\x68\x19\xac\x12\x6c\x8a\x0e\x16\xa7\x07\x4c\x9d\x0b\xa5\xbe\x91\xc2\x3b\x94\xe4\x54\x1a\x75\x0f\xb6\xd0\x6a\x1a\xc5\x3a\x6b\x84\x67\x1c\x3f\xe0\x90\x51\xe8\x6f\x37\x5a\x73\x44\xc7\x18\x39\xf4\x50\xff\x1e\x63\x38\x28\xe8\x97\xb4\xd9\x68\x66\x54\x73\x58\x9c\x8e\x56\x98\x37\xdb\xcd\xa4\x3b\xf7\x75\xff\xbd\xe6\x03\xf1\x74\x71\x64\xdf\x63\x19\x83\x86\x37\x15\x3a\xc1\xe4\xb6\x4b\x3f\x80\xe8\x36\xb1\xb3\xc0\x51\xd0\xd6\xac\xb7\x82\xcb\x0c\xce\xce\xc0\x6a\x33\xf4\x67\xfb\x0d\x0d\xf9\x79\xf1\x13\xd3\xc5\x69\xbf\xef\x29\x30\xbd\xa3\x47\x5c\x3a\xb6\xce\x52\x54\x3b\xfb\xcb\xc1\xa7\xb3\xef\xad\xbd\xaf\x71\x71\xf2\x7a\xb4\xd9\x6d\xbd\x32\x5a\xbe\x9d\xc7\x1e\x0b\xbf\xff\xe5\x18\x5d\xcc\x0e\x68\x11\x91\xab\x42\x3f\x5f\x8e\xdb\x45\x73\x4d\x47\x69\xc1\xff\x50\xad\x1b\x24\x10\x9a\xfe\xc1\x68\xf7\xf6\x06\x68\x3c\xc2\x6b\x94\x56\xe8\xd9\xd1\xcb\xa0\x7d\x8f\x4f\xba\xe7\xdb\xef\x00\x00\x00\xff\xff\xee\x09\x72\x75\x7c\x06\x00\x00" func idtablestakingNodeRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -2750,11 +2750,11 @@ func idtablestakingNodeRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe5, 0xa, 0x1e, 0x16, 0x39, 0xfa, 0xf8, 0x1d, 0xc5, 0xfd, 0x7b, 0x8f, 0x39, 0xb0, 0x20, 0x83, 0x7f, 0x8d, 0x3c, 0x80, 0xbe, 0xca, 0x7f, 0xe0, 0x5e, 0x87, 0x8f, 0x19, 0x74, 0xd4, 0x3b, 0xfe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1a, 0xb7, 0xd, 0xea, 0x9d, 0xbf, 0x88, 0x55, 0x79, 0x66, 0xbe, 0x15, 0x7e, 0x81, 0x6e, 0x2a, 0x6c, 0x19, 0xcf, 0xd, 0x3d, 0x6d, 0xab, 0x5e, 0x57, 0x5e, 0x77, 0x98, 0xfe, 0x33, 0x8a, 0x1f}} return a, nil } -var _idtablestakingNodeRequest_unstakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x41\x6b\xa3\x70\x10\xc5\xef\x7e\x8a\x87\x87\x45\x2f\x7a\x59\xf6\x20\xbb\x1b\xc2\x2e\x81\x42\x69\x4b\xd3\x7c\x80\xc9\xdf\x31\xda\xe8\x7f\xec\x38\x36\x81\x92\xef\x5e\x8c\x89\xb4\xa4\x85\x1e\xfa\x2e\x73\x70\xe6\xf1\x7b\xbe\x7f\xd5\xb4\xa2\x86\x45\x2d\xbb\xab\xff\x0f\xb4\xae\x79\x69\xb4\xad\xfc\x06\x85\x4a\x83\xf0\xf2\x43\x18\x04\x81\x29\xf9\x8e\x9c\x55\xe2\x23\x6a\xa4\xf7\x96\x61\xb5\xa8\xf6\xbf\x7e\xc6\x78\x09\x02\x00\x48\x53\x5c\x8b\xa3\x1a\xcf\xa4\xd5\x70\x8e\x42\x14\x04\xe5\x82\x95\xbd\x63\x98\xc0\x4a\x86\x97\x9c\x21\xeb\x47\x76\x76\x3c\xac\xd9\xd0\x19\x6d\x59\xef\xb9\xc8\x40\xbd\x95\xd1\x25\x45\x72\x23\x39\xdf\xb6\xac\x64\xa2\x31\x7e\x7c\xb2\xb1\x3c\x1a\x8d\x44\xad\x72\x4b\xca\x11\x39\x67\x19\xe6\xbd\x95\x73\xe7\x06\xf6\x81\x19\x27\xa5\x29\xd6\xa2\x2a\xbb\xaf\xa0\x0e\xea\xb8\x2e\x92\x89\x17\x7f\x30\xd8\x27\xa3\xc7\xef\xef\x80\xff\x1b\x0d\x4d\x64\x1f\x54\xf4\x66\x69\x69\xa2\xb4\xe1\x3b\xb2\x32\x9e\xd0\x06\xcd\x66\x68\xc9\x57\x2e\x0a\xff\x49\x5f\xe7\xf0\x62\xe7\x80\xef\xe2\x75\xa7\xd6\x29\x6f\x2a\x1f\xc6\xe3\x1f\x3b\x8c\x83\xf7\xec\x7a\xe3\x73\xb3\x97\xa9\x13\xe5\xa7\x9e\x3b\x5b\xf9\x93\xcd\xf4\x28\xc6\x39\xd9\x1d\x5e\x03\x00\x00\xff\xff\x47\x2f\x90\xdd\x6f\x02\x00\x00" +var _idtablestakingNodeRequest_unstakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xbf\x4e\xc3\x40\x0c\xc6\xf7\x3c\x85\x95\xa1\x4a\x96\x64\x41\x0c\x15\x50\xf1\x47\x95\x90\x10\x20\x4a\xd9\xdd\x8b\xd3\x1e\xbd\x9c\x83\xe3\xd0\x4a\xa8\xef\x8e\xae\x49\xab\x56\x05\x89\x01\x2f\x37\x9c\xfd\xf9\xfb\xd9\xb6\x55\xcd\xa2\x30\x76\xbc\xba\xbf\x7b\xc5\x99\xa3\x89\xe2\xd2\xfa\x39\x94\xc2\x15\xc4\xa7\x1f\x71\x14\x45\x2a\xe8\x1b\x34\x6a\xd9\x27\x58\x71\xeb\x75\x08\xd3\xb1\x5d\x9f\x9f\xa5\xf0\x15\x45\x00\x00\x79\x0e\x0f\x6c\xd0\xc1\x27\x8a\x0d\xe5\x50\xb2\x00\x82\x50\x49\x42\xde\x10\x28\x83\x2e\x08\x3c\x17\x04\x3c\x7b\x27\xa3\xdb\x42\x47\x0a\x8d\xe2\x92\xe4\x85\xca\x21\x60\xab\x8b\xe4\xd4\x45\xf6\xc8\x05\x3d\xd5\x24\xa8\x2c\x29\x0c\x7e\xc9\x98\x6c\x85\x3a\x47\xb5\x50\x8d\x42\x09\x1a\xa3\xbd\xee\x0d\x8b\xf0\xea\x0d\x5d\x4b\x29\x0c\xae\x8d\x09\x28\x01\x01\xfa\xc8\x73\x98\x6d\x73\xfe\xe2\x3c\x44\x43\xae\xcc\xf6\xf6\xe1\x12\x42\xb7\xac\x51\x16\x9c\x53\xd6\x69\x5d\xfc\x07\xd3\x55\x12\x16\x34\xfc\x61\x73\x07\x49\x93\xae\xef\x33\xea\x22\xdd\x5b\x0c\x31\x1a\x41\x8d\xde\x9a\x24\xbe\xe5\xd6\x15\xe0\x59\x77\xa0\x47\x98\x4d\x7f\x0c\x58\x54\xd6\xc7\x9d\xc6\xa6\x1b\x27\xad\xc9\xb4\x4a\x07\xc3\x3a\x66\xcf\x84\x3e\x5a\x6a\x74\xea\x7b\x91\xfd\xa5\x74\xef\x4e\x6c\x13\x7d\x07\x00\x00\xff\xff\x7d\xcc\x86\xf9\x84\x02\x00\x00" func idtablestakingNodeRequest_unstakeCdcBytes() ([]byte, error) { return bindataRead( @@ -2770,11 +2770,11 @@ func idtablestakingNodeRequest_unstakeCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/request_unstake.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2a, 0x5f, 0x13, 0xcd, 0xff, 0x5a, 0x6d, 0xce, 0x6e, 0xca, 0xd9, 0xf1, 0x4f, 0xc1, 0x68, 0xea, 0xc2, 0xf4, 0x81, 0xd8, 0x17, 0xb8, 0xee, 0x39, 0xe7, 0x88, 0x7e, 0x11, 0xb1, 0xfe, 0xea, 0x37}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8, 0x6c, 0x5c, 0x95, 0xf8, 0x1, 0x61, 0xb4, 0x8e, 0xcb, 0x97, 0xb8, 0x11, 0xcb, 0x4e, 0xd9, 0xd7, 0x1c, 0xc2, 0xbe, 0x23, 0xfa, 0x38, 0x54, 0xcf, 0xc5, 0x78, 0xac, 0x14, 0x7c, 0x28, 0xe6}} return a, nil } -var _idtablestakingNodeStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\xc1\x8e\xd3\x40\x0c\x86\xef\x79\x0a\x2b\x07\x94\x1c\x48\x2e\x88\x43\xb5\xb0\x5a\x81\x2a\x21\xad\x76\x11\x5d\xd8\xb3\x3b\x71\x9a\xa1\xd3\x71\xe4\x38\x74\x25\xb4\xef\x8e\x26\xd3\x84\x54\x29\x12\xa0\x9d\xcb\xb4\xb1\xfd\xe7\xff\x6c\xc7\x1e\x5a\x16\x85\xb5\xe3\xe3\xa7\x8f\x0f\xb8\x75\xb4\x51\xdc\x5b\xbf\x83\x5a\xf8\x00\xe9\x32\x90\x26\xb3\x9a\x07\xde\x93\x9f\xa5\x0e\xff\x7f\x67\xf4\x7e\x67\xb7\x8e\xce\xb2\xe6\xcf\xd2\x24\x51\x41\xdf\xa1\x51\xcb\x3e\xc3\x03\xf7\x5e\x57\xf0\x75\x6d\x9f\xde\xbe\xc9\xe1\x67\x92\x00\x00\x94\x25\xdc\xb2\x41\x07\x3f\x50\x6c\x70\x02\x35\x0b\x20\x08\xd5\x24\xe4\x0d\x81\x32\x68\x43\xe0\xb9\x22\xe0\xed\x77\x32\x3a\x14\x3a\x52\xe8\x14\xf7\x24\x5f\xa8\x5e\x01\xf6\xda\x64\x4b\xa0\xe2\x8e\x2b\xba\x6f\x49\x50\x59\x72\x78\xf5\x87\x8c\xcd\x20\x94\x4c\xc2\xf5\x88\x3b\xd3\x9e\xb3\x15\x8f\x56\x9b\x4a\xf0\x18\x84\x4e\xb2\x31\xf0\x0d\x7b\xa7\x51\xa8\x15\x6a\x51\x28\x43\x63\x74\x05\x37\xbd\x36\x37\xc6\x84\x26\x04\x78\x38\x9d\xb2\x84\x2d\x8b\xf0\xf1\x6f\x98\xc3\xe9\xc8\xd5\xc5\x04\x0e\xef\x20\xc8\x17\x51\xe3\xea\x25\xba\xf0\x3e\x0b\xc3\x5c\x5d\x58\x9b\x59\xd2\x46\x59\x70\x47\x9f\x51\x9b\x7c\xb2\x16\xce\xf5\x35\xb4\xe8\xad\xc9\xd2\x0f\xdc\xbb\x0a\x3c\xeb\x08\x78\x86\xd7\x9d\x36\x11\xab\x83\xf5\x69\x9e\x9c\xf3\xcd\xfb\x7f\x11\xf1\x1f\x86\x31\xf2\x94\x5d\xf4\x5c\x4e\xe2\x43\xf8\xff\xec\xaf\x6f\xef\x1f\x61\xa8\x1f\xbd\x3f\xc7\x8b\x9e\xc8\xf4\x4a\xe3\x7a\x2f\x27\x16\x7f\xdd\x51\xb4\xd0\x65\x57\xaf\x17\xc4\xc5\xf1\x04\x34\x7d\x34\xf1\xce\xa7\x57\x3d\xff\x0a\x00\x00\xff\xff\xc0\x27\x6e\x53\xdb\x03\x00\x00" +var _idtablestakingNodeStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\xcf\x8e\xd3\x40\x0c\xc6\xef\x79\x0a\x2b\x07\x94\x1c\x48\x2e\x88\x43\xb5\xb0\xe2\x8f\x2a\x21\xad\x76\x11\x5d\x76\xcf\xee\xc4\x69\x87\x4e\xc7\x91\xe3\xd0\x95\x50\xdf\x1d\x4d\x26\x0d\x53\x15\x10\x20\xe6\xd2\x26\xfe\xfc\xd9\x3f\x7b\x62\xf7\x1d\x8b\xc2\xd2\xf1\xe1\xc3\xfb\x7b\x5c\x3b\x5a\x29\xee\xac\xdf\x40\x2b\xbc\x87\xfc\x32\x90\x67\x49\xce\x3d\xef\xc8\x27\xd2\xf1\xf9\x87\x62\xf0\x1b\xbb\x76\x74\xa6\x4a\xdf\xe5\x59\xa6\x82\xbe\x47\xa3\x96\x7d\x81\x7b\x1e\xbc\x2e\xe0\xf3\xd2\x3e\xbd\x7c\x51\xc2\xb7\x2c\x03\x00\xa8\x6b\xb8\x61\x83\x0e\xbe\xa2\xd8\xd0\x09\xb4\x2c\x80\x20\xd4\x92\x90\x37\x04\xca\xa0\x5b\x02\xcf\x0d\x01\xaf\xbf\x90\xd1\x31\xd1\x91\x42\xaf\xb8\x23\xf9\x44\xed\x02\x70\xd0\x6d\x71\x09\x54\xdd\x72\x43\x77\x1d\x09\x2a\x4b\x09\xcf\x7e\xa1\x58\x8d\x46\xd9\x6c\xdc\x9e\x70\x13\xef\x94\xad\x7a\xb4\xba\x6d\x04\x0f\xc1\x68\xb2\x8d\x81\x07\x1c\x9c\x46\xa3\x4e\xa8\x43\xa1\x02\x8d\xd1\xc9\xe4\x2d\x8b\xf0\xe1\x01\xdd\x10\xb2\xde\x18\x13\x66\x12\x66\x01\xd3\xa9\x6b\x58\x8f\x9a\x3f\x19\x41\x38\x3d\xb9\xb6\x9a\xe7\x00\xaf\x20\x54\xab\x7a\x65\xc1\x0d\x55\xd1\xeb\xea\x7f\x0c\xe7\x75\x11\x76\xbc\xf8\xc9\x6d\x4a\x44\xab\x58\xf7\x23\xea\xb6\x9c\x5b\x0c\xe7\xfa\x1a\x3a\xf4\xd6\x14\xf9\x3b\x1e\x5c\x03\x9e\xf5\x04\x7a\x86\xd9\x4f\x17\x14\x9b\xbd\xf5\x79\x99\x9d\x73\xa6\x6b\xf9\x2d\xea\x5f\xec\xea\xc4\x55\x4f\x46\xf5\x5c\x64\x0c\xff\x1b\xc6\xf2\xe6\xee\x11\xc6\xfc\x3c\x1a\x1c\x23\x09\x3d\x91\x19\x94\x92\x85\x9f\xef\x2f\xfe\xbb\xa5\xd8\x40\x5f\x5c\x3d\xbf\xe0\xae\x0e\x13\xce\xfc\x45\xc5\xdf\xf2\x54\xe8\x98\x7d\x0f\x00\x00\xff\xff\xbc\x5a\xce\x95\xf8\x03\x00\x00" func idtablestakingNodeStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2790,11 +2790,11 @@ func idtablestakingNodeStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbc, 0xe9, 0x39, 0x6d, 0xfe, 0xbe, 0xb2, 0x52, 0x5b, 0x62, 0x2a, 0x2f, 0x58, 0x96, 0x49, 0xbc, 0x7a, 0x5c, 0x51, 0x35, 0x1f, 0x8a, 0x56, 0xc, 0x58, 0x29, 0x42, 0x94, 0xb7, 0x48, 0x66, 0x1a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x48, 0x57, 0xd, 0xb, 0x63, 0xdb, 0xf7, 0xdc, 0xab, 0x6e, 0xaf, 0xc, 0x38, 0x8e, 0xf, 0x74, 0x0, 0x40, 0x9d, 0x5a, 0xea, 0xf8, 0xa9, 0x60, 0xb, 0x2c, 0x6d, 0x9a, 0xa8, 0x58, 0x26, 0x39}} return a, nil } -var _idtablestakingNodeStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x41\x4b\xeb\x50\x10\x85\xf7\xf9\x15\x87\x2c\x1e\xc9\xa6\xd9\x3c\xde\x22\x3c\x2d\x45\x29\x08\xa2\xd2\xd6\x1f\x30\xbd\x99\x34\xb1\xc9\x9d\x30\x99\xd8\x82\xf4\xbf\x4b\x9a\x36\x28\x55\x70\xe1\x6c\xe6\xc2\x9d\x39\x7c\xe7\x9e\x5b\xd6\x8d\xa8\x61\x5e\xc9\xee\xee\x76\x45\xeb\x8a\x97\x46\xdb\xd2\x6f\x90\xab\xd4\x08\x2f\x2f\xc2\x20\x08\x4c\xc9\xb7\xe4\xac\x14\x1f\x51\x2d\x9d\xb7\x14\xcf\xf3\x72\xff\xef\x6f\x8c\xb7\x20\x00\x80\x24\xc1\xbd\x38\xaa\xf0\x4a\x5a\xf6\xeb\xc8\x45\x41\x50\xce\x59\xd9\x3b\x86\x09\xac\x60\x78\xc9\x18\xb2\x7e\x61\x67\xc7\xc5\x8a\x0d\xad\xd1\x96\x75\xc1\x79\x0a\xea\xac\x88\x2e\x29\x26\x0f\x92\xf1\x63\xc3\x4a\x26\x1a\xe3\xcf\x37\x13\xcb\xa3\xd0\x40\xd4\x28\x37\xa4\x1c\x91\x73\x96\x62\xd6\x59\x31\x73\xae\x67\xef\x99\x71\xaa\x24\xc1\x5a\x54\x65\xf7\x13\xd4\xbe\x5a\xae\xf2\xc9\xc8\x8b\x2b\xf4\xf2\x93\x41\xe3\xff\x6f\xc0\x5f\x47\x7d\x12\xe9\x17\x11\x7d\x18\x5a\x9a\x28\x6d\xf8\x89\xac\x88\x47\xb4\xbe\xa6\x53\x34\xe4\x4b\x17\x85\x37\xd2\x55\x19\xbc\xd8\xd9\xe0\x27\x7b\xed\x29\x75\xca\xea\xd2\x87\xf1\xf0\x62\x87\xa1\xf1\x9e\x5d\x67\x7c\x4e\xf6\xd2\xf5\x70\x5a\xf0\x8e\x34\xe3\x6c\x25\x5b\xf6\xed\xf8\x2f\x86\x3e\x2a\x1e\xde\x03\x00\x00\xff\xff\xa5\x19\x83\x3a\x72\x02\x00\x00" +var _idtablestakingNodeStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x4f\x6b\xea\x50\x10\xc5\xf7\xf9\x14\x87\x2c\x24\xd9\x24\x9b\xc7\x5b\xc8\x7b\x95\xfe\x41\x28\x94\xb6\xa8\xed\x7e\xbc\x99\x68\x6a\x72\x27\x4c\x26\x55\x28\x7e\xf7\x12\xa3\xa2\xd8\x42\x17\x9d\x4d\x02\x77\xe6\xcc\xf9\xcd\x4c\x51\xd5\xa2\x86\x71\x29\xeb\xfb\xbb\x19\xcd\x4b\x9e\x1a\xad\x0a\xbf\x40\xae\x52\x21\xbc\x7c\x08\x83\x20\x30\x25\xdf\x90\xb3\x42\x7c\x44\x95\xb4\xde\x86\x78\x19\x17\x9b\xbf\x7f\x62\x7c\x04\x01\x00\xa4\x29\x1e\xc4\x51\x89\x77\xd2\xa2\x2b\x47\x2e\x0a\x82\x72\xce\xca\xde\x31\x4c\x60\x4b\x86\x97\x8c\x21\xf3\x37\x76\xb6\x2b\x2c\xd9\xd0\x18\xad\x58\x27\x9c\x0f\x41\xad\x2d\xa3\x4b\x17\xc9\xa3\x64\xfc\x54\xb3\x92\x89\xc6\x18\x7c\x93\x31\xdd\x09\xf5\x8e\x6a\xe5\x9a\x94\x23\x72\xce\xf6\xba\x37\xa2\x2a\xeb\x57\x2a\x5b\x8e\x31\xb8\x76\xae\x43\xe9\x10\xb0\x8f\x34\xc5\x7c\x97\xf3\x13\xe7\x5d\x34\x5c\xe6\xc9\xd1\x3e\xfe\xa3\xeb\x96\x34\x26\x4a\x0b\x4e\x7a\xad\x7f\xbf\xc1\x74\x15\x75\x0b\x1a\x7e\xb1\xb9\x93\xa4\x69\xdf\xf7\x99\x6c\x19\x1f\x2d\x76\x31\x1a\xa1\x26\x5f\xb8\x28\xbc\x95\xb6\xcc\xe0\xc5\x0e\xa0\x67\x98\xcd\xfe\x18\x28\xab\x0a\x1f\xf6\x1a\xdb\x7e\x9c\xbc\x61\xd7\x1a\x9f\x0c\xeb\x9c\xbd\xff\x9b\xf0\x9a\x34\xe3\x6c\x26\x2b\xf6\xcd\xf1\x58\xfa\xef\x41\x6f\x1b\x7c\x06\x00\x00\xff\xff\x84\x76\x84\xb1\x87\x02\x00\x00" func idtablestakingNodeStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2810,11 +2810,11 @@ func idtablestakingNodeStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd2, 0xf6, 0xac, 0xe8, 0x52, 0xe, 0x2a, 0x37, 0x55, 0x82, 0x7a, 0x7d, 0x32, 0xf0, 0xa4, 0x7c, 0xf9, 0x3d, 0x94, 0xe0, 0x66, 0xac, 0xca, 0xa, 0xd4, 0xec, 0xc1, 0x58, 0x81, 0xd4, 0x14, 0xdf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0x6d, 0xdc, 0x1e, 0x2c, 0x5b, 0xbb, 0xc7, 0xea, 0xf2, 0x93, 0xd9, 0x2f, 0x30, 0x7b, 0xb0, 0xc7, 0x6f, 0xd5, 0xba, 0x2a, 0x93, 0x4b, 0xa6, 0x82, 0x5d, 0x62, 0xe5, 0xe9, 0xc, 0x13, 0xed}} return a, nil } -var _idtablestakingNodeStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x41\x4b\xfb\x40\x10\xc5\xef\xf9\x14\x8f\x1c\xfe\x24\x97\xe6\xf2\xc7\x43\x50\x4b\x51\x0a\x82\x28\xd8\xf6\x03\x4c\x37\x93\x36\x36\xd9\x09\x93\x89\x2d\x48\xbf\xbb\xa4\xdb\x06\xa4\x08\x1e\x9c\xcb\x2c\xcc\xce\xe3\xf7\xf6\x6d\xd5\xb4\xa2\x86\x79\x2d\xfb\xa7\xc7\x25\xad\x6b\x5e\x18\xed\x2a\xbf\x41\xa9\xd2\x20\xbe\x1e\xc4\x51\x14\x99\x92\xef\xc8\x59\x25\x3e\xa1\x46\x7a\x6f\x39\x56\xf3\xea\x70\xf3\x3f\xc5\x67\x14\x01\x40\x96\xe1\x59\x1c\xd5\xf8\x20\xad\x86\x75\x94\xa2\x20\x28\x97\xac\xec\x1d\xc3\x04\xb6\x65\x78\x29\x18\xb2\x7e\x67\x67\xa7\xc5\x9a\x0d\x9d\xd1\x8e\xf5\x8d\xcb\x1c\xd4\xdb\x36\xb9\xa6\x98\xbc\x48\xc1\xaf\x2d\x2b\x99\x68\x8a\x7f\x3f\xdc\x58\x9c\x84\x02\x51\xab\xdc\x92\x72\x42\xce\x59\x8e\x59\x6f\xdb\x99\x73\x03\xfb\xc0\x8c\x73\x65\x19\xd6\xa2\x2a\xfb\xdf\xa0\x0e\xd5\x71\x5d\x4e\x46\x5e\xdc\x61\x90\x9f\x04\x8d\xdb\xbf\x80\xbf\x4f\x86\x24\x72\x64\x9d\x89\xd2\x86\xb3\xb2\x96\x7d\x18\xa5\x23\xc5\x50\xd3\x29\x5a\xf2\x95\x4b\xe2\x07\xe9\xeb\x02\x5e\xec\xe2\xe5\x9b\x93\xee\x1c\x30\x15\x4d\xe5\xe3\x34\x3c\xce\x31\x34\x3e\xb0\xeb\x8d\x2f\x21\x5e\x1b\x0c\xa7\x95\x3f\xb5\x62\x29\x3b\xf6\xdd\xf8\x05\x42\x1f\x15\x8f\x5f\x01\x00\x00\xff\xff\x41\xee\x38\xc1\x5d\x02\x00\x00" +var _idtablestakingNodeStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xcd\x8a\xdb\x50\x0c\x85\xf7\x7e\x8a\x83\x17\xc1\xde\xd8\x9b\xd2\x45\x68\x1b\xfa\x43\xa0\x50\x5a\x68\x92\xd9\x2b\xd7\x72\xe2\xc9\xf5\x95\x91\xe5\x49\x60\xc8\xbb\x0f\xfe\x49\x98\x10\x06\x66\x31\xda\xc8\x20\xe9\xf8\x7c\xd2\xad\xea\x46\xd4\xb0\xf4\x72\xfc\xfd\x6b\x4d\x5b\xcf\x2b\xa3\x43\x15\x76\x28\x55\x6a\xc4\xf7\x85\x38\x8a\x22\x53\x0a\x2d\x39\xab\x24\x24\x54\x4b\x17\x6c\x8e\xcd\xb2\x3a\x7d\xfe\x94\xe2\x39\x8a\x00\x20\xcf\xf1\x47\x1c\x79\x3c\x91\x56\xfd\x38\x4a\x51\x10\x94\x4b\x56\x0e\x8e\x61\x02\xdb\x33\x82\x14\x0c\xd9\x3e\xb2\xb3\x61\xd0\xb3\xa1\x35\x3a\xb0\xfe\xe7\x72\x0e\xea\x6c\x9f\xdc\xbb\xc8\xfe\x4a\xc1\xff\x1a\x56\x32\xd1\x14\xb3\x37\x3a\x56\x83\xd0\xe8\xa8\x51\x6e\x48\x39\x21\xe7\x6c\xd2\xfd\x21\xaa\x72\x7c\x20\xdf\x71\x8a\xd9\x77\xe7\x7a\x94\x1e\x01\x53\xe4\x39\xb6\x43\xcf\x7b\x9c\xf7\xd1\xb2\x2f\xb3\xab\x7d\x7c\x45\xff\xb7\xac\x35\x51\xda\x71\x36\x6a\x7d\xf9\x08\xa6\x6f\x49\x7f\xa0\x39\xf2\x49\x3b\x2f\xbd\x1c\xc7\x52\x7a\x75\xd3\xc7\x62\x81\x86\x42\xe5\x92\xf8\xa7\x74\xbe\x40\x10\xbb\x30\xdd\x10\xb5\xd3\xdd\xa9\xa8\xab\x10\x8f\x1a\xe7\x71\x73\x7c\x62\xd7\x19\xbf\xda\xcb\x2d\xe6\xf8\xb5\x09\x43\x2a\xd6\x72\xe0\xd0\x5e\xdf\xc5\x98\x2f\x7a\xe7\xe8\x25\x00\x00\xff\xff\xbf\x2c\x3f\x68\x72\x02\x00\x00" func idtablestakingNodeStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2830,11 +2830,11 @@ func idtablestakingNodeStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc, 0x32, 0xcc, 0x35, 0xda, 0x79, 0xb7, 0xea, 0x10, 0x45, 0x27, 0x4a, 0x6a, 0xb2, 0xac, 0x2e, 0x68, 0x7c, 0x8, 0x81, 0x8c, 0x13, 0x4c, 0xc7, 0x50, 0x6c, 0xf8, 0x2c, 0x9f, 0x27, 0x22, 0x7c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0xb1, 0xec, 0x45, 0x6a, 0xd6, 0xd6, 0x63, 0x55, 0x11, 0x3, 0xac, 0x13, 0xe4, 0x53, 0xd3, 0xb6, 0x8b, 0x82, 0xb3, 0x97, 0x39, 0x1d, 0x61, 0x2d, 0xb5, 0x64, 0x2d, 0xc3, 0x2f, 0xa9, 0x72}} return a, nil } -var _idtablestakingNodeUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x91\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x8f\x1c\x24\xb9\xa4\xf7\xa2\x96\xa2\x08\x82\xa8\x58\xff\xc0\x74\x33\x69\x62\xb7\x3b\x61\x32\x6b\x85\xd2\xff\x2e\x49\xda\xa2\x54\xc1\x83\x73\xd9\x85\x7d\x33\xfb\xbd\x79\xcd\xa6\x15\x35\xdc\x79\xd9\xde\xdf\xbe\xd2\xd2\xf3\xc2\x68\xdd\x84\x15\x2a\x95\x0d\xd2\xf3\x87\x34\x49\x12\x53\x0a\x1d\x39\x6b\x24\x60\x97\x24\x00\x30\x99\xe0\x41\x1c\x79\xbc\x93\x36\xbd\x1c\x95\x28\x08\xca\x15\x2b\x07\xc7\x30\x81\xd5\x8c\x20\x25\x43\x96\x6f\xec\x6c\x68\xf4\x6c\xe8\x8c\xd6\xac\x2f\x5c\x4d\x41\xd1\xea\xec\xfc\xd7\xe2\x51\x4a\x7e\x6a\x59\xc9\x44\x73\x5c\xfc\xa2\x58\x0c\x83\x46\xa2\x56\xb9\x25\xe5\x8c\x9c\xb3\x29\xe6\xd1\xea\xb9\x73\x12\x83\xe5\xd8\x0d\x82\x03\xf6\x52\x54\x65\xfb\x17\xd4\xbe\x3a\xf6\x55\x71\xe2\xc5\x15\xfa\xf1\xc5\x38\xe3\xf2\x3f\xe0\xaf\xb3\x7e\xf3\xd3\x1f\x22\xf9\x22\x5a\x98\x28\xad\xf8\x99\xac\xce\x4f\x68\x7d\xcd\x66\x68\x29\x34\x2e\x4b\x6f\x24\xfa\x12\x41\xec\x68\xf0\x9b\xbd\xee\x90\x32\x95\x9b\x26\xa4\xf9\xb8\xb1\xfd\x78\xf0\x07\xbb\x68\x7c\x4c\xf6\xdc\x75\x11\xc3\x70\x9f\x7b\x9f\x9d\x5a\xf7\x9f\x01\x00\x00\xff\xff\x3f\xfc\xd6\x90\x4b\x02\x00\x00" +var _idtablestakingNodeUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x51\xcd\x4a\xf3\x50\x10\xdd\xe7\x29\x0e\x59\x94\x64\x93\xee\xcb\xf7\x59\xaa\x22\x08\xa2\x62\xc5\xfd\xf4\x66\xd2\xc6\xde\xde\x09\x93\x89\x15\x4a\xdf\x5d\xf2\xd3\xd2\x52\x05\x17\xce\xea\xc2\x3d\x73\x7e\xe6\x94\x9b\x4a\xd4\x70\xe7\x65\x7b\x7f\xfb\x4a\x0b\xcf\x73\xa3\x75\x19\x96\x28\x54\x36\x88\x2f\x3f\xe2\x28\x8a\x4c\x29\xd4\xe4\xac\x94\x80\x5d\x14\x01\xc0\x78\x8c\x07\x71\xe4\xf1\x41\x5a\xb6\x70\x14\xa2\x20\x28\x17\xac\x1c\x1c\xc3\x04\xb6\x62\x04\xc9\x19\xb2\x78\x67\x67\xdd\xa2\x67\x43\x6d\xb4\x66\x7d\xe1\x62\x02\x6a\x6c\x95\x5c\xaa\x66\x8f\x92\xf3\x53\xc5\x4a\x26\x9a\x62\xf4\x03\x62\xde\x11\xf5\x8e\x2a\xe5\x8a\x94\x13\x72\xce\x06\xde\x6b\x51\x95\xed\x1b\xf9\x86\x53\x8c\x66\xce\x49\x13\x2c\xc5\xae\xc3\x0f\x29\x16\x1d\xe6\x37\xce\xdb\xa9\xd9\x17\xd9\xd1\x3e\xfe\xa3\x55\xcb\x6a\x13\xa5\x25\x67\x3d\xd7\xbf\xbf\xc8\x74\x95\xb4\x85\x4c\xbe\x69\xea\x04\x34\xef\x75\x9f\xc9\x56\xe9\xd1\x62\x3b\xd3\x29\x2a\x0a\xa5\x4b\xe2\x1b\x69\x7c\x8e\x20\x76\x08\x7a\x16\xb3\x1e\xca\xa7\x7c\x53\x86\xb8\xe7\xd8\xf7\xe7\xe4\x4f\x76\x8d\xf1\xc9\xb1\xce\xb3\x67\x4d\xe8\xde\x33\xef\x93\xc3\xe2\x3e\xfa\x0a\x00\x00\xff\xff\xa1\x88\x84\x20\x60\x02\x00\x00" func idtablestakingNodeUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -2850,11 +2850,11 @@ func idtablestakingNodeUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x43, 0x11, 0xa7, 0x24, 0xb8, 0xa4, 0xd9, 0x43, 0xd2, 0xb0, 0xd6, 0x87, 0x98, 0xb4, 0x70, 0x3f, 0x7f, 0xb3, 0x13, 0x38, 0x85, 0x97, 0x9b, 0x47, 0xfa, 0xca, 0x98, 0x30, 0xfa, 0x7d, 0xf8, 0x62}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0x1c, 0xa5, 0xdd, 0xf7, 0xea, 0x9b, 0x33, 0xd5, 0xdd, 0xc3, 0x4a, 0x31, 0x12, 0x57, 0x68, 0x42, 0x35, 0x8c, 0x64, 0xa7, 0x47, 0x11, 0x93, 0x34, 0xbe, 0x86, 0xb7, 0x1b, 0x2, 0x80, 0x5}} return a, nil } -var _idtablestakingNodeUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xc1\x6a\xb3\x50\x10\x85\xf7\x3e\xc5\xc1\xc5\x8f\x6e\x74\x2f\x7f\x1b\x42\x4b\xa1\x50\xd2\x52\xfb\x02\x93\xeb\x18\x6d\xcc\x1d\x19\xc7\x5a\x28\x79\xf7\x62\x34\x21\x25\x2d\x74\xd1\xd9\x3a\x7e\x7c\xe7\x9e\xa9\x77\xad\xa8\xe1\xae\x91\xe1\xfe\xf6\x85\xd6\x0d\xe7\x46\xdb\xda\x6f\x50\xaa\xec\x10\x5e\x7e\x08\x83\xc0\x94\x7c\x47\xce\x6a\xf1\x91\xe7\x61\x59\x14\xca\x5d\x97\x21\x37\xad\xfd\x26\xc6\x47\x10\x00\x40\x9a\xe2\x41\x1c\x35\x78\x23\xad\x47\x02\x4a\x51\x10\x94\x4b\x56\xf6\x8e\x61\x02\xab\x18\x5e\x0a\x86\xac\x5f\xd9\xd9\xe1\xc7\x86\x0d\x9d\xd1\x96\xf5\x99\xcb\x0c\xd4\x5b\x15\x5d\x8a\x24\x2b\x29\xf8\xb1\x65\x25\x13\x8d\xf1\xef\x87\x8d\xfc\x00\x9a\x8c\x5a\xe5\x96\x94\x23\x72\xce\x32\x2c\x7b\xab\x96\xce\x49\xef\x6d\x74\xc6\x3c\x69\x8a\xb5\xa8\xca\xf0\x1b\xd5\x71\x3a\x6e\xca\xe4\xe4\x8b\x2b\x8c\xf8\x64\x62\xfc\xff\x0b\xf9\xeb\x68\x2c\x23\xfb\xa6\xa5\xb3\xa5\xdc\x44\x69\xc3\x4f\x64\x55\x7c\x52\x1b\x67\xb1\x40\x4b\xbe\x76\x51\x78\x23\x7d\x53\xc0\x8b\x1d\x03\x7e\x89\xd7\xcd\xc5\x53\xb1\xab\x7d\x38\x31\xf6\xd3\xbb\xf1\x3b\xbb\xde\xf8\x58\xec\x65\xe8\xa4\x6f\x0b\x32\x5e\xb1\x0d\xa2\x23\x65\xbe\x89\xb3\xf3\x88\x83\x99\xb8\xff\x0c\x00\x00\xff\xff\x06\xb1\xc3\xe1\x74\x02\x00\x00" +var _idtablestakingNodeUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xc1\x4a\xf3\x50\x10\x85\xf7\x79\x8a\x43\x16\x25\xd9\x24\xfb\xf2\xff\x96\xaa\x08\x82\x54\x31\xe2\x7e\x7a\x33\x69\x63\xd3\x3b\x61\x32\x31\x82\xf4\xdd\x25\x4d\x5a\x5a\xaa\xe0\xc2\xd9\xde\xb9\xdf\x9c\x33\x73\xca\x6d\x2d\x6a\xb8\xab\xa4\xbb\xbf\x7d\xa1\x65\xc5\x99\xd1\xa6\xf4\x2b\x14\x2a\x5b\x84\x97\x0f\x61\x10\x98\x92\x6f\xc8\x59\x29\x3e\xf2\xdc\xcd\xf3\x5c\xb9\x69\xa6\xc8\x4c\x4b\xbf\x8a\xf1\x19\x04\x00\x90\xa6\x78\x10\x47\x15\xde\x49\xcb\x9e\x80\x42\x14\x04\xe5\x82\x95\xbd\x63\x98\xc0\xd6\x0c\x2f\x39\x43\x96\x6f\xec\x6c\xff\xb1\x62\x43\x63\xb4\x61\x7d\xe6\x62\x0a\x6a\x6d\x1d\x5d\x0a\x49\x16\x92\xf3\x63\xcd\x4a\x26\x1a\x63\xf2\x43\x47\xb6\x07\x0d\x8a\x6a\xe5\x9a\x94\x23\x72\xce\x46\xee\xb5\xa8\x4a\xf7\x4a\x55\xcb\x31\x26\x73\xe7\xa4\xf5\xd6\x5b\xc0\x58\x69\x8a\xe5\xbe\xe7\x37\xca\xfb\x6a\xb8\x2a\x92\xa3\x7c\xfc\x47\x3f\x2d\x69\x4c\x94\x56\x9c\x0c\xac\x7f\x7f\xe1\xe9\x2a\xea\x6f\x34\xfd\xe6\x78\x27\x4d\xd9\x30\xf7\x89\x6c\x1d\x1f\x25\xf6\x35\x9b\xa1\x26\x5f\xba\x28\xbc\x91\xb6\xca\xe1\xc5\x0e\x46\xcf\x6c\x36\x63\x1e\x28\xdf\x96\x3e\x1c\x18\xbb\x61\x9d\xfc\xc1\xae\x35\x3e\x59\xd6\xb9\xf7\xa4\xad\x73\x32\x5e\xb0\x75\xa2\x3d\x64\x4c\xca\x49\x68\x0e\xbc\x5d\xf0\x15\x00\x00\xff\xff\x85\x75\xea\x7b\x8a\x02\x00\x00" func idtablestakingNodeUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -2870,11 +2870,11 @@ func idtablestakingNodeUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x39, 0x92, 0x5f, 0x3b, 0xc7, 0xb1, 0x68, 0x85, 0x2c, 0xec, 0xce, 0x84, 0xb1, 0x54, 0xff, 0xc5, 0x59, 0x7f, 0x86, 0x6f, 0x40, 0xab, 0xb2, 0xc8, 0x30, 0xa3, 0xba, 0xdc, 0x23, 0xe9, 0xae, 0x9f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xd2, 0x71, 0xf6, 0xe3, 0x80, 0x71, 0xc6, 0xeb, 0x99, 0xb9, 0x5f, 0x5b, 0x7b, 0x58, 0x5a, 0x60, 0xeb, 0x99, 0x8d, 0x8e, 0x29, 0xae, 0x92, 0xd0, 0x8c, 0x1, 0xe5, 0x56, 0xf7, 0x10, 0xee}} return a, nil } -var _idtablestakingNodeWithdraw_reward_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x4f\x8b\x9c\x40\x10\xc5\xef\xfd\x29\x0a\x0f\x8b\x1e\xa2\x97\x90\x83\x6c\xb2\x2c\x09\x03\x81\x25\x1b\x76\x36\xc9\xb9\xa6\xbb\x5c\x3b\xa3\x5d\x52\x96\x71\x21\xec\x77\x0f\xea\x28\xce\x9f\x40\x08\x5b\x17\x91\xae\xf7\xfa\xfd\xba\xca\xd7\x0d\x8b\xc2\xa6\xe2\xfe\xf3\xa7\x47\xdc\x55\xb4\x55\xdc\xfb\xf0\x04\x85\x70\x0d\xd1\xf9\x41\x64\x56\x9a\x47\xde\x53\x58\xb5\x8e\xff\x91\x31\x46\x05\x43\x8b\x56\x3d\x87\x18\x6b\xee\x82\xe6\xf0\x6d\xe3\x9f\xdf\xbd\x4d\xe0\xb7\x31\x00\x00\x59\x06\x77\x6c\xb1\x82\x5f\x28\x7e\xb8\x00\x0a\x16\x40\x10\x2a\x48\x28\x58\x02\x65\xd0\x92\x20\xb0\x23\xe0\xdd\x4f\xb2\x3a\x0a\x2b\x52\x68\x15\xf7\x24\x0f\x54\xe4\x80\x9d\x96\xf1\x79\xce\xf4\x0b\x3b\xba\x6f\x48\x50\x59\x12\xb8\xfa\x4b\xc7\x76\x34\x32\x8b\x71\x31\x53\x8c\xde\x57\x0b\x54\xfa\x1d\xbb\x4a\xa7\xbe\x46\xa8\x41\xa1\x18\xad\xd5\x1c\x6e\x3b\x2d\x6f\xad\x1d\x18\x07\x36\x38\x54\x96\xc1\x8e\x45\xb8\xff\x17\xa4\xa1\x5a\xaa\x8a\x74\xe1\x82\xf7\x30\xd8\xa7\x93\xc7\xf5\x6b\x40\x7e\x88\x87\x41\xe5\x17\x86\xbd\x6a\xda\x2a\x0b\x3e\xd1\x57\xd4\x32\x59\xa2\x0d\x75\x73\x03\x0d\x06\x6f\xe3\xe8\x23\x77\x95\x83\xc0\x3a\x03\x1e\xe1\xb5\x87\xfd\x41\x57\xfb\x10\x25\xe6\x98\x6f\xfd\xbc\x27\x88\xa7\x6f\x3d\xc7\xcd\xda\x29\x52\xb6\x68\xc7\xe3\xff\x4b\xb7\xb9\xbb\xff\x01\xa3\x7e\x8e\xf6\x32\x7d\xe8\x99\x6c\xa7\x34\x2f\xe7\xc5\xc0\xa9\xa3\x86\x5b\xaf\x87\x60\xd7\x6f\x8e\x47\x96\xf6\x5e\x4b\x27\xd8\x3f\x50\x8f\xe2\xc8\x8d\xba\x76\xd9\xff\xe9\x9b\x2c\xf7\xbe\xfc\x09\x00\x00\xff\xff\x24\x3f\x85\x0a\x7d\x03\x00\x00" +var _idtablestakingNodeWithdraw_reward_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x4f\x6b\xdb\x40\x10\xc5\xef\xfb\x29\x06\x1d\x8c\x74\xa8\x74\x29\x3d\x98\xb4\xa1\x7f\x30\x14\x42\x53\xe2\x34\x3d\x8f\x57\xa3\x78\xeb\xf5\x8e\x18\x8d\xaa\x40\xc9\x77\x2f\x5a\xfd\x41\xae\x6b\x28\x25\x73\x11\x62\xdf\xbc\x79\x3f\xcd\xca\x1d\x6b\x16\x85\x8d\xe7\xee\xf3\xa7\x7b\xdc\x79\xda\x2a\x1e\x5c\x78\x84\x4a\xf8\x08\xc9\xf9\x41\x62\x16\x3d\xf7\x7c\xa0\xb0\x90\xc6\xf7\xc4\x18\xa3\x82\xa1\x41\xab\x8e\x43\x8a\x47\x6e\x83\xae\xe1\xdb\xc6\x3d\xbd\x79\x9d\xc1\x2f\x63\x00\x00\x8a\x02\x6e\xd8\xa2\x87\x9f\x28\xae\x1f\x00\x15\x0b\x20\x08\x55\x24\x14\x2c\x81\x32\xe8\x9e\x20\x70\x49\xc0\xbb\x1f\x64\x35\x36\x7a\x52\x68\x14\x0f\x24\x77\x54\xad\x01\x5b\xdd\xa7\xe7\x39\xf3\x2f\x5c\xd2\x6d\x4d\x82\xca\x92\xc1\xea\x82\x62\x1b\x8d\xcc\x6c\x5c\x4d\x14\xd1\x7b\x35\x43\xe5\x0f\xd8\x7a\x1d\x74\xb5\x50\x8d\x42\x29\x5a\xab\xe3\xfc\x0f\x2c\xc2\xdd\x03\xfa\x96\x32\x58\xbd\xb7\xb6\x47\xee\x51\x61\xac\xa2\x80\x5d\xd4\xfc\x0b\x61\x5f\x0d\xf9\x2a\x9f\x31\xe1\x2d\xf4\xd3\xf2\x46\x59\xf0\x91\xf2\xc1\xeb\xea\x25\xd8\xdf\xa5\xfd\xfe\xd6\x7f\xb9\x03\x0b\xd1\x76\x98\xfb\x15\x75\x9f\xcd\x11\xfb\xba\xbe\x86\x1a\x83\xb3\x69\xf2\x91\x5b\x5f\x42\x60\x9d\x40\x4f\x30\x9b\xf1\x5a\x61\x79\x74\x21\xc9\xcc\x29\xe7\xf2\xab\x5f\x40\xfd\x73\x15\x53\xec\x62\xd4\x15\xb3\x47\x3c\xfe\xbf\x94\x9b\x9b\xdb\xef\x10\xfb\x93\xc1\xe0\x79\x08\x4a\x4f\x64\x5b\xa5\xc5\x3e\xcf\x62\xe7\x25\xd5\xdc\x38\x1d\x63\x5d\xbd\x3a\x5d\x60\xde\x39\xdd\x97\x82\xdd\x1d\x75\x28\x25\x95\xb1\xaf\x99\x7f\x8e\xe1\x99\x4d\x53\x9f\xcd\xef\x00\x00\x00\xff\xff\x59\x46\xe5\x62\x9a\x03\x00\x00" func idtablestakingNodeWithdraw_reward_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2890,11 +2890,11 @@ func idtablestakingNodeWithdraw_reward_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/withdraw_reward_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8c, 0x91, 0x3a, 0xb2, 0xf2, 0x3b, 0xef, 0xc5, 0xb2, 0xbf, 0x73, 0x31, 0xe4, 0x5f, 0x6c, 0xd0, 0x62, 0xb3, 0xcf, 0xeb, 0xa1, 0xef, 0xe9, 0x6a, 0x50, 0x75, 0x27, 0x2a, 0xb, 0x11, 0xff, 0xaa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x52, 0xeb, 0x3d, 0x25, 0xa1, 0xa5, 0x3e, 0xc5, 0x3, 0xd5, 0xde, 0x8f, 0xc3, 0xa1, 0x8, 0xb9, 0x75, 0x58, 0x54, 0x20, 0xdd, 0xea, 0x4d, 0x82, 0x1d, 0xd1, 0x39, 0x18, 0xbd, 0x95, 0x4c, 0xe7}} return a, nil } -var _idtablestakingNodeWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x4f\x8b\x9c\x40\x10\xc5\xef\xfd\x29\x0a\x0f\x8b\x1e\xa2\x97\x90\x83\x6c\xb2\x2c\x09\x03\x81\x25\x1b\x32\xbb\xc9\xb9\xa6\x2d\xd7\xce\x68\x97\x94\x65\x5c\x08\xfb\xdd\x83\xed\x28\xce\x9f\x40\x08\xdb\x97\x46\xbb\xde\xeb\xf7\xeb\x2a\xd7\xb4\x2c\x0a\x9b\x9a\x87\xcf\x9f\x1e\x70\x57\xd3\x56\x71\xef\xfc\x13\x94\xc2\x0d\x44\xe7\x07\x91\x59\x69\x1e\x78\x4f\x7e\x55\x1a\xbe\x23\x63\x8c\x0a\xfa\x0e\xad\x3a\xf6\x31\x36\xdc\x7b\xcd\xe1\x71\xe3\x9e\xdf\xbd\x4d\xe0\xb7\x31\x00\x00\x59\x06\x77\x6c\xb1\x86\x5f\x28\x6e\xbc\x00\x4a\x16\x40\x10\x2a\x49\xc8\x5b\x02\x65\xd0\x8a\xc0\x73\x41\xc0\xbb\x9f\x64\x35\x08\x6b\x52\xe8\x14\xf7\x24\xdf\xa8\xcc\x01\x7b\xad\xe2\xf3\x9c\xe9\x17\x2e\xe8\xbe\x25\x41\x65\x49\xe0\xea\x2f\x15\xdb\x60\x64\x16\xe3\x72\xa6\x08\xde\x57\x0b\x54\xfa\x1d\xfb\x5a\xa7\xba\x56\xa8\x45\xa1\x18\xad\xd5\x1c\x6e\x7b\xad\x6e\xad\x1d\x19\x47\x36\x38\xac\x2c\x83\x1d\x8b\xf0\xf0\x2f\x48\xe3\xea\xa8\x2e\xd3\x85\x0b\xde\xc3\x68\x9f\x4e\x1e\xd7\xaf\x01\xf9\x21\x1e\x1b\x95\x5f\x68\xf6\xaa\x68\xab\x2c\xf8\x44\x5f\x51\xab\x64\x89\x36\xae\x9b\x1b\x68\xd1\x3b\x1b\x47\x1f\xb9\xaf\x0b\xf0\xac\x33\xe0\x11\x5e\x77\x98\x1f\x2c\x1a\xe7\xa3\xc4\x1c\xf3\xad\x9f\xf7\x04\xf1\xf4\xad\xe7\xb8\x59\x37\x45\xca\x16\x6d\x38\xfe\xbf\x74\x9b\xbb\xfb\x1f\x10\xf4\x73\xb4\x97\x69\xa3\x67\xb2\xbd\xd2\x3c\x9c\x17\x03\xa7\x05\xb5\xdc\x39\x3d\x04\xbb\x7e\x73\xdc\xb2\x74\x70\x5a\x15\x82\xc3\xa3\x0f\xff\x8a\xa0\xeb\x96\xf9\x9f\xf6\x64\xb9\xf7\xe5\x4f\x00\x00\x00\xff\xff\x49\xb2\x7a\xa1\x7d\x03\x00\x00" +var _idtablestakingNodeWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x4f\x6b\xdb\x40\x10\xc5\xef\xfb\x29\x06\x1d\x8c\x74\xa8\x74\x29\x3d\x98\xb4\xa1\x7f\x30\x14\x42\x53\xea\x24\x3d\x8f\x57\xa3\x78\xeb\xf5\x8e\x18\x8d\xaa\x40\xc9\x77\x2f\x5a\xfd\x41\xae\x6b\x28\x25\x73\x31\xd6\xbe\x79\xf3\x7e\x9a\x95\x3b\xd6\x2c\x0a\x1b\xcf\xdd\xe7\x4f\x77\xb8\xf3\xb4\x55\x3c\xb8\xf0\x08\x95\xf0\x11\x92\xf3\x83\xc4\x2c\x7a\xee\xf8\x40\x61\x21\x8d\xff\x13\x63\x8c\x0a\x86\x06\xad\x3a\x0e\x29\x1e\xb9\x0d\xba\x86\xfb\x8d\x7b\x7a\xf3\x3a\x83\x5f\xc6\x00\x00\x14\x05\xdc\xb0\x45\x0f\x3f\x51\x5c\x3f\x00\x2a\x16\x40\x10\xaa\x48\x28\x58\x02\x65\xd0\x3d\x41\xe0\x92\x80\x77\x3f\xc8\x6a\x6c\xf4\xa4\xd0\x28\x1e\x48\xbe\x51\xb5\x06\x6c\x75\x9f\x9e\xe7\xcc\xbf\x70\x49\xb7\x35\x09\x2a\x4b\x06\xab\x0b\x8a\x6d\x34\x32\xb3\x71\x35\x51\x44\xef\xd5\x0c\x95\x3f\x60\xeb\x75\xd0\xd5\x42\x35\x0a\xa5\x68\xad\x8e\xf3\x3f\xb0\x08\x77\x0f\xe8\x5b\xca\x60\xf5\xde\xda\x1e\xb9\x47\x85\xb1\x8a\x02\x76\x51\xf3\x2f\x84\x7d\x35\xe4\xab\x7c\xc6\x84\xb7\xd0\x4f\xcb\x1b\x65\xc1\x47\xca\x07\xaf\xab\x97\x60\x7f\x97\xf6\xfb\x5b\xff\xe5\x0e\x2c\x44\xdb\x61\xee\x57\xd4\x7d\x36\x47\xec\xeb\xfa\x1a\x6a\x0c\xce\xa6\xc9\x47\x6e\x7d\x09\x81\x75\x02\x3d\xc1\x6c\xc6\x6b\x85\xe5\xd1\x85\x24\x33\xa7\x9c\xcb\xb7\x7e\x01\xf5\xcf\x55\x4c\xb1\x8b\x51\x57\xcc\x1e\xf1\xf8\xff\x52\x6e\x6e\x6e\xbf\x43\xec\x4f\x06\x83\xe7\x21\x28\x3d\x91\x6d\x95\x16\xfb\x3c\x8b\x9d\x97\x54\x73\xe3\x74\x8c\x75\xf5\xea\x74\x81\x79\xe7\x74\x5f\x0a\x76\xf7\x21\x3e\x2b\x63\x5f\x33\x7f\x1c\xc3\x6f\x36\x4d\x7d\x36\xbf\x03\x00\x00\xff\xff\x34\xcb\x1a\xc9\x9a\x03\x00\x00" func idtablestakingNodeWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2910,7 +2910,7 @@ func idtablestakingNodeWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0xec, 0xfc, 0xbe, 0xe6, 0x2b, 0x8f, 0x32, 0x31, 0x86, 0xda, 0x2d, 0xc5, 0xa9, 0x7e, 0x82, 0xa, 0x62, 0x4, 0xb6, 0xd6, 0x65, 0xb3, 0x74, 0x20, 0x68, 0x70, 0x6c, 0x9a, 0x81, 0xb5, 0x3f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x77, 0xc9, 0x29, 0x2b, 0x34, 0x2, 0xd7, 0x10, 0x4e, 0x68, 0xa9, 0x5e, 0x1e, 0x2d, 0xc5, 0xd9, 0xdb, 0xca, 0xd0, 0x10, 0xb4, 0x22, 0xef, 0xd4, 0xa5, 0x9c, 0xe5, 0xcd, 0xe, 0xb5, 0x16, 0xa8}} return a, nil } @@ -3114,7 +3114,7 @@ func idtablestakingScriptsGet_node_infoCdc() (*asset, error) { return a, nil } -var _idtablestakingScriptsGet_node_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcf\x6a\x02\x31\x10\xc6\xef\x79\x8a\x8f\x3d\x94\xdd\x8b\xde\xa5\xad\x88\x52\xf0\x52\x84\xfa\x02\xb3\xc9\xac\xa6\xcd\x66\x96\x64\x16\x29\xe2\xbb\x97\x35\x94\x0a\xfd\x43\x73\x0a\x99\x2f\xf3\x9b\xf9\xf9\x7e\x90\xa4\x78\x0a\x72\xda\x6e\xf6\xd4\x06\x7e\x51\x7a\xf3\xf1\x80\x2e\x49\x8f\xea\x7b\xa1\x32\x66\x3e\xc7\xfe\xe8\x33\xb2\x4d\x7e\x50\x1c\x58\x33\x28\x04\xe8\x91\xe1\x63\x27\xa0\x56\x46\x05\x21\x8a\x63\x50\x74\x48\xac\x63\x8a\x19\x5e\x8d\x21\x6b\x39\xe7\x9a\x42\x68\xd0\x8d\x11\x3d\xf9\x58\x93\x73\x89\x73\x5e\x60\x55\x2e\xcd\xe2\x87\x99\x66\xcf\xe2\x78\x3b\x01\xce\xc6\x00\x40\x60\xbd\x32\xa6\x3a\x27\x3c\x4c\xa3\xac\xac\x95\x31\xea\x67\xc7\xe6\x1a\x9c\xce\xec\xc0\xba\xa6\x81\x5a\x1f\xbc\xbe\xdf\xdf\x9d\x7f\x01\x94\x66\xbb\xb1\x0d\xde\x5e\x1e\xeb\x7f\xa4\x76\xa4\xc7\x1b\x4e\x2b\x29\xc9\xa9\xfe\x7a\x59\x2e\x31\x50\xf4\xb6\xae\xd6\x32\x06\x87\x28\x8a\x12\x42\xe2\x8e\x13\x47\xcb\x50\x29\xba\x72\xd9\x45\xda\x57\xb6\x5a\x35\x65\xd1\xe2\xef\x2f\x25\xf5\xf4\x79\xbb\x59\xdc\xf8\x98\x79\xd7\x98\x8b\xf9\x08\x00\x00\xff\xff\x77\x61\x21\xf9\xe3\x01\x00\x00" +var _idtablestakingScriptsGet_node_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcd\x6a\xeb\x30\x10\x85\xf7\x7a\x8a\x73\xbd\xb8\xd8\x1b\x67\x1f\xda\x86\xd0\x50\xc8\xa6\x04\x9a\x17\x18\x4b\xe3\x44\xad\xac\x31\xd2\x98\x2c\x42\xde\xbd\x38\xa2\xa4\xd0\x1f\xaa\x95\x60\xce\xcc\x37\xf3\xf9\x61\x94\xa4\x78\x0a\x72\xda\x6e\xf6\xd4\x05\x7e\x51\x7a\xf3\xf1\x80\x3e\xc9\x80\xea\x6b\xa1\x32\x66\xb1\xc0\xfe\xe8\x33\xb2\x4d\x7e\x54\x1c\x58\x33\x28\x04\xe8\x91\xe1\x63\x2f\xa0\x4e\x26\x05\x21\x8a\x63\x50\x74\x48\xac\x53\x8a\x19\x5e\x8d\x21\x6b\x39\xe7\x9a\x42\x68\xd0\x4f\x11\x03\xf9\x58\x93\x73\x89\x73\x5e\x62\x5d\x3e\xcd\xf2\x9b\x9d\xda\x67\x71\xbc\x9d\x01\x67\x63\x00\x20\xb0\x5e\x19\x73\x9d\x13\xee\xe7\x55\xd6\xd6\xca\x14\xf5\x63\x62\x73\x0d\xce\xaf\xb5\x34\x52\xe7\x83\x57\xcf\xb9\x3d\xb0\xde\xfd\x3f\xff\xc0\x28\xf3\x76\x53\x17\xbc\xbd\x3c\xd4\x7f\x48\xed\x48\x8f\xcd\xbf\x1b\xab\x93\x94\xe4\x54\xdf\xe8\xab\x15\x46\x8a\xde\xd6\xd5\xa3\x4c\xc1\x21\x8a\xa2\x84\x90\xb8\xe7\xc4\xd1\x32\x54\x8a\xb2\x5c\xee\x91\xee\x95\xad\x56\x4d\x39\xb6\x38\xfc\x4d\x4b\x3d\x37\x6f\x37\xcb\x4f\x4e\x5a\xef\x1a\x73\x31\xef\x01\x00\x00\xff\xff\xb1\x05\x86\x48\xe7\x01\x00\x00" func idtablestakingScriptsGet_node_info_from_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -3130,7 +3130,7 @@ func idtablestakingScriptsGet_node_info_from_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_info_from_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3b, 0xeb, 0x71, 0x1f, 0xdc, 0xae, 0x6b, 0x7a, 0x3a, 0x44, 0x55, 0x5, 0xb1, 0x2c, 0x46, 0x74, 0xb8, 0xf3, 0x94, 0xf9, 0x6a, 0x21, 0x80, 0x6e, 0x5b, 0x6a, 0x31, 0x53, 0x95, 0x58, 0xfa, 0x20}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0xe8, 0xc9, 0xfe, 0x53, 0x28, 0xaa, 0x6a, 0xc3, 0xe, 0xaf, 0xe3, 0x7b, 0xcb, 0x12, 0xef, 0xc9, 0x34, 0x4e, 0x11, 0x2e, 0x75, 0x24, 0x7b, 0xea, 0x4c, 0x3e, 0x15, 0xf8, 0x45, 0x1c, 0x2a}} return a, nil } @@ -3594,7 +3594,7 @@ func inspect_fieldCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\x72\x58\xc8\x80\x63\x79\x8f\x15\x92\x2e\x0c\x27\x8b\x16\x49\x9b\x60\x93\x76\xcf\x63\x89\xb6\x08\xd3\xa4\x4a\x51\x76\x8d\x45\xfe\x7b\x41\x52\x5f\x94\xa8\xd8\x2e\x52\xa0\x39\xc5\xd2\x9b\xaf\x37\x6f\x86\x14\xdd\xe5\x42\x2a\x58\xca\x63\xae\x44\x50\xfd\xfa\xca\xc4\xe1\x55\x6c\x09\x87\xb5\x14\x3b\xb8\x6a\x7e\x5f\x35\x88\x92\x6f\xe8\x8a\x11\x07\xd5\x7d\xd6\x20\x1f\x45\xb2\x25\xa9\x79\x56\x58\xe0\xfc\xef\xc7\xa7\xe5\xc3\xfd\xdd\xeb\xd3\xc3\xfd\xef\x8b\xbb\xbb\x6f\xf7\x2f\x2f\x41\x10\x45\x11\xbc\x4a\xe4\x05\x26\x8a\x0a\x0e\x2a\x43\x05\x2a\x23\xb0\x43\xca\x41\x99\x38\x98\xee\x28\x87\x83\x28\x59\x0a\x05\xdd\x70\x63\xa4\x04\x24\x92\xa0\x22\x80\x50\x64\x28\x49\x0a\x98\x24\xa2\xe4\x0a\x90\xa7\x80\x1c\x4a\xce\x4c\x12\x06\x8e\xf6\xd5\x5a\x48\x40\x28\x0b\x22\x83\x40\xb5\x61\xc3\x00\x00\x20\x47\xa9\x28\xb2\x85\x0e\xf7\x5c\xae\x18\x4d\x1e\xc8\x31\xae\x48\x9a\x3d\x90\xe3\x23\x2d\xd4\x3d\x57\xf2\x38\x85\x28\x82\xef\x84\x6e\x32\x15\xc3\xe7\xf9\xbc\x6b\xfe\x47\x41\xe4\x05\xd6\x3f\x55\xd6\xeb\x92\x5d\x6a\xfa\x79\x3e\x9f\x07\x13\x80\x1f\x81\x8d\x2f\x49\x8e\x92\x84\x86\xae\x18\x16\xa5\xca\x16\x96\x91\x49\x0d\xd1\x7f\x51\x04\x4b\x4b\x9c\xa6\x99\x93\x43\xcd\x5b\x61\x89\x4b\x53\xfd\x82\x4a\xd8\x92\x63\xd1\x58\x31\xa2\x2a\x9a\x2b\x9f\x70\xdb\x8d\x10\xe6\x78\x24\x32\xb6\xad\x9a\x38\x56\x9a\xec\x73\x6c\x1a\x23\x27\xcc\x4c\x67\x31\xc3\x34\x0d\xf3\x96\x18\x6f\xa3\x66\x0d\x60\x0a\x19\x16\xd9\x82\x6d\x84\xa4\x2a\xdb\x8d\xe1\x1d\xd0\x14\x0e\x15\xab\x7e\xb0\x7d\x3b\xb9\x3c\x49\xa7\xa7\xa7\x73\x74\xe1\xef\xa7\xe8\x62\xeb\x0c\x9b\x14\x3b\xc4\x7b\x13\x1c\x28\xee\x9d\xec\x86\xd8\x91\xd4\x86\xc0\x41\x5e\xad\x00\x11\x72\x49\xf7\xfa\x3f\x46\xf9\x56\x8f\xb4\x96\x64\xa1\x84\x9e\xe6\x3d\x96\x4c\x39\x4a\x32\x4f\x96\x98\xe3\x8a\x32\xaa\x8e\x70\xeb\x76\xa1\xc1\xea\xbf\x99\xf6\x78\x83\xa5\xca\x42\x67\x41\xcd\xbe\x53\x95\xa5\x12\x0f\xb8\x62\x64\x02\x9f\x9a\x1d\x37\xfb\x53\x7b\xff\x39\x74\xbc\x98\x74\xab\x1c\xa3\x75\x0d\x35\xc8\xe9\x00\xa8\x50\x6e\x88\x8a\x21\xd2\x05\xe0\xa6\x6f\xe0\xe0\x27\xce\xaf\x2f\x5f\x20\x47\x4e\x93\xf0\x6a\x69\x96\x1c\x17\xca\x32\xa2\xb3\x03\xbb\x6c\x8d\x0f\x48\x9a\xea\xaf\x5c\x46\x9b\x5d\x68\x77\x5e\xb5\x39\x77\xc8\x71\x43\xa4\x19\xec\x8a\x56\xaa\x40\x2f\x56\xcd\xb3\xb3\x35\x1d\xa6\x59\xbb\xbd\x7f\xab\x5c\xdc\x5c\x3b\x3b\x7d\x66\x03\x3e\x0e\x80\xa1\xe9\x52\xdc\x6f\xd6\xd8\xe4\x14\xb8\x27\xe1\xcd\xf5\x30\xe0\x14\x94\x88\xdd\x90\xc3\x60\x2f\x96\xe9\x67\x54\x59\x87\x0e\x5d\x81\xea\xa0\x3e\x58\x32\x27\x72\xf2\x48\xe8\x84\xc5\xb3\x15\x98\xae\x62\x5c\x55\xe7\x33\xd1\xb8\x98\xbc\x27\x2d\x57\x20\x7e\x5d\x35\x44\xfe\x22\x58\x3a\xaa\x81\xd7\x16\xe1\x96\x6e\x9b\xba\x48\x53\x49\x8a\x22\xee\x35\x1e\xed\x63\xb7\xe0\x6e\xd7\xe2\x91\x1e\xb6\xe5\xf9\x57\x9d\x51\x94\xe3\xf5\xe6\xba\x53\x44\x3f\x60\x8f\xd9\x4e\x31\x1d\x4a\xa7\xa7\x82\x1a\xe9\x7c\x1a\xf3\xd4\x93\x84\xa7\x95\x95\x9f\x5f\xf9\x5a\xd8\xcd\x39\x14\x83\x57\x08\xfe\x74\x7d\xd9\x36\xbd\x34\x07\xdb\xff\x76\x24\xec\xb1\xfb\x1f\x0d\x04\x9c\xbf\x79\xbb\x37\x4f\x7d\x2e\x75\xa7\xc5\x3b\x22\x96\x56\xc1\x18\xb1\x17\xd9\x5b\x6b\xec\xd2\xb9\x12\x52\x8a\x83\x4f\x28\x3d\x73\x0f\x63\xfa\x12\x3d\x5e\x75\xcf\xfe\xdf\x57\x6f\x53\x04\x49\xd6\x44\x12\x9e\x10\x5d\xbd\xa5\x21\x69\xbc\x77\x09\xf0\x15\xaf\x87\xbb\xbe\xe4\x39\x01\x1d\xa5\x5d\xb2\x18\xea\xbb\x7c\xdf\xb4\x3b\x83\xe3\x1b\x65\x61\x6f\xc4\x3e\xf9\xfb\x46\x25\x8a\xe0\x69\x4f\xa4\xa4\xa9\xbd\x23\xa7\x64\x6d\x0e\xdf\xf6\xfb\x48\x92\x84\xd0\x3d\x91\x23\x87\x5a\xc9\xb5\x86\xc2\xc8\xde\xa7\xda\x7b\xc0\xb7\xca\xcc\x7b\x74\xeb\x9b\x78\xed\xd7\x7e\x06\xed\x50\x6e\x8b\xfa\x59\x75\xa4\x17\x80\x45\xfb\x65\xe3\x0f\x6f\x97\xd1\x0f\x77\x62\xeb\xd8\x6f\x3d\x69\x8d\x26\x79\xc6\xf6\x39\xf3\x18\x72\xaa\xcd\x4b\x05\x5c\xc8\x1d\xb2\xb6\x5a\xca\xf5\x47\x9c\xfe\x7a\xd1\x44\x94\x9c\xfe\x55\x12\xc8\xbb\x3e\x3e\xa0\x40\x4b\xd9\xd7\xf3\xca\x3c\x75\x87\xb3\x73\xf4\x16\xbc\x05\xff\x04\x00\x00\xff\xff\xe1\x99\x64\x2f\x4a\x0f\x00\x00" +var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\x72\x08\x64\xc0\x91\xbc\xc7\x1a\xce\x2e\x5c\x27\x8b\x16\x49\x9b\x60\x93\xee\x9e\xc7\x12\x6d\x11\x96\x49\x95\xa4\xec\x1a\x8b\xfc\xf7\x82\xa4\xbe\x28\x53\xf6\x7a\x91\x02\xcd\x21\xb0\xe5\x37\x33\x8f\x6f\x3e\x38\xa2\xdb\x82\x0b\x05\x0b\x71\x28\x14\x0f\xaa\x6f\x9f\x73\xbe\x7f\xe5\x1b\xc2\x60\x25\xf8\x16\xae\x9a\xef\x57\x0d\xa2\x64\x6b\xba\xcc\x89\x83\xea\x3e\x6b\x90\x8f\x3c\xd9\x90\xd4\x3c\x93\x16\x38\xf9\xe7\xf1\x69\xf1\x70\x7f\xf7\xfa\xf4\x70\xff\xe7\xfc\xee\xee\xcb\xfd\xcb\x4b\x10\xc4\x71\x0c\xaf\x02\x99\xc4\x44\x51\xce\x40\x65\xa8\x40\x65\x04\xb6\x48\x19\x28\x13\x07\xd3\x2d\x65\xb0\xe7\x65\x9e\x82\xa4\x6b\x66\x8c\x14\x87\x44\x10\x54\x04\x10\x64\x86\x82\xa4\x80\x49\xc2\x4b\xa6\x00\x59\x0a\xc8\xa0\x64\xb9\x21\x61\xe0\x68\x7f\x5a\x71\x01\x08\xa5\x24\x22\x08\x54\x1b\x36\x0c\x00\x00\x0a\x14\x8a\x62\x3e\xd7\xe1\x9e\xcb\x65\x4e\x93\x07\x72\x98\x56\x22\x45\x0f\xe4\xf0\x48\xa5\xba\x67\x4a\x1c\xc6\x10\xc7\xf0\x8d\xd0\x75\xa6\xa6\xf0\x61\x32\xe9\x9a\xff\x25\x89\xb8\xc0\xfa\x97\xca\x7a\x55\xe6\x97\x9a\x7e\x98\x4c\x26\xc1\x08\xe0\x7b\x60\xe3\x0b\x52\xa0\x20\xa1\x91\x6b\x0a\x58\xaa\x2c\xfc\x95\x0b\xc1\xf7\x5f\x31\x2f\xc9\x08\xae\xe7\x56\xa0\x51\x6d\xa1\xff\xe2\x18\x16\x56\x47\xad\x3a\x23\xfb\x5a\x46\x69\x75\x4c\x53\xfd\x03\x15\xb0\x21\x07\xd9\x58\xe5\x44\x55\xaa\x57\x3e\xe1\x16\xaa\x4f\x61\x81\x07\x22\xa6\x36\x6b\x23\xc7\x42\xeb\x7e\x0e\xdf\x18\x38\xee\x23\x1d\x3d\xc2\x34\x0d\x8b\x56\x1f\x6f\xbe\xa2\x06\x30\x86\x0c\x65\x36\xcf\xd7\x5c\x50\x95\x6d\x87\xf0\x0e\x68\x0c\xfb\x4a\x5c\x3f\xd8\xfe\x3a\xba\x9c\xa4\x93\xda\xf3\x1c\x5d\xf8\x69\x8a\x2e\xb6\x66\xd8\x50\xec\x88\xee\x25\x78\x54\x78\x27\xd8\x1d\x63\x07\xa8\x1d\x03\x8f\x78\xb5\x85\x87\x50\x08\xba\xd3\x9f\x72\xca\x36\xba\xb3\x75\x29\x4a\xc5\x75\x53\xef\xb0\xcc\x95\x53\x45\xe6\xc9\x02\x0b\x5c\xd2\x9c\xaa\x03\xdc\xba\x59\x68\xb0\xfa\x2f\xd2\x1e\x67\xa6\x15\x9c\x39\x15\x7d\xa3\x2a\x4b\x05\xee\x71\x99\xeb\xce\x68\x46\x5d\xf4\x55\x7b\xff\x18\x3a\x5e\x0c\xdd\x8a\x63\xbc\xaa\xa1\x06\x39\x3e\x02\x2a\x14\x6b\xa2\xa6\x10\xeb\x03\xe0\xba\x6f\xe0\xe0\x47\xce\xb7\x4f\x9f\xa0\x40\x46\x93\xf0\x6a\x61\x66\x1d\xe3\xca\x2a\xa2\xd9\x81\x9d\xb9\xc6\x07\x24\xcd\xe9\xaf\x5c\x45\x9b\x91\x68\x47\x5f\x35\x40\xb7\xc8\x70\x4d\x84\x69\xe8\x4a\x56\xaa\x40\xcf\x57\xad\xb3\x33\x3c\x1d\xa5\xf3\x76\x88\xff\x51\xb9\x98\xdd\x38\xa3\x3d\xb2\x01\x1f\x8f\x80\xa1\xc9\xd2\xb4\x9f\xac\xa1\xce\x91\xb8\x23\xe1\xec\xe6\x38\xe0\x18\x14\x9f\xba\x21\x8f\x83\xbd\x58\xa5\x9f\x51\x65\x1d\x39\xf4\x09\x54\x07\xf5\xce\x25\x73\x86\x93\xa7\x84\xce\x58\x3c\xdb\x02\xd3\xa7\x18\xae\xaa\x1f\x57\xa2\x71\x31\x3a\x55\x5a\x6e\x81\xf8\xeb\xaa\x11\xf2\x37\x9e\xa7\x83\x35\xf0\xda\x22\xdc\xa3\xdb\xa4\xce\xd3\x54\x10\x29\xa7\xbd\xc4\xa3\x7d\xec\x1e\xb8\x9b\xb5\xe9\x40\x0e\xdb\xe3\xf9\x47\x9d\xa9\x28\xc7\xeb\xec\xa6\x73\x88\x7e\xc0\x9e\xb2\x9d\xc3\x74\x24\x1d\x9f\x0b\x6a\x4a\xe7\x7a\xc8\x53\xaf\x24\x3c\xa9\xac\xfc\xfc\xce\x56\xdc\x4e\xce\xe3\x62\xf0\x16\x82\x9f\xae\x8f\x6d\x93\x4b\x73\xb1\xfd\x6f\x5b\xc2\x5e\xbb\xff\x51\x43\xc0\x8f\x4f\xde\xee\x02\xaa\xef\xa5\x6e\xb7\x78\x5b\xc4\xca\xca\xf3\x9c\xd8\x7d\xf6\xd6\x1a\x47\xd5\x65\xe0\xca\xba\x34\xdb\x99\xaf\x60\x7a\x6e\x3c\xca\xe9\x9d\x7a\xf8\xf4\x3d\xfb\x9f\x57\xc1\x52\x04\x41\x56\x44\x10\x96\x10\xad\x82\x95\x23\x69\xbc\x77\x85\xf0\x89\xa0\x9b\xbc\x5e\xf6\x9c\x80\x4e\xc5\x5d\x32\x20\xea\xd5\xbe\x6f\xda\xed\xc5\xe1\xc9\x32\xb7\x0b\xb2\xaf\x0d\x7c\x2d\x13\xc7\xf0\xb4\x23\x42\xd0\xd4\xee\xc8\x29\x59\x99\x4b\xb8\x7d\x5d\x12\x24\x21\x74\x47\xc4\xc0\xe5\xd6\x4c\x55\x4a\x64\x54\x32\xb3\x5e\xc9\x2c\x8c\xed\x9e\xd5\xee\x07\x5f\x2a\x37\xde\x2b\x5d\x6f\xe6\x75\x1c\xfb\x96\xb4\x45\xb1\x91\xf5\xb3\xea\xaa\x97\x80\xb2\x7d\xf1\xe9\x56\x67\xe7\x6a\x95\xed\x30\xed\xb7\x7d\xcd\xd5\x50\xad\x6a\x36\xa2\x52\x96\x64\x76\xfd\xdd\xed\xfd\x9a\xed\xdb\xc7\xf0\x92\xeb\xf9\xa4\x44\x26\x6c\xad\x8f\xe7\x12\xe9\xd3\x77\x93\x8b\x7a\xeb\x1a\x12\xd5\x3b\xbb\xe3\x18\x8a\x52\x01\xe3\x62\x8b\x79\x2b\x2f\x65\xfa\xa5\x52\xbf\x4d\x69\xe5\x4b\x46\xff\x2e\x09\x14\xdd\xe6\x69\xfa\xbd\x76\xff\x6e\x5a\x0e\xac\x8d\x3f\x2d\x5c\x9f\xe5\xa0\x62\x56\xe1\xcf\xa7\x74\xd3\xff\xdf\x82\xb7\xe0\xdf\x00\x00\x00\xff\xff\xce\xb1\x49\x39\x3e\x10\x00\x00" func lockedtokensAdminAdmin_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3610,11 +3610,11 @@ func lockedtokensAdminAdmin_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x14, 0xa1, 0x22, 0x8b, 0x77, 0x49, 0x1d, 0x1c, 0x19, 0x74, 0xb, 0x9c, 0x3b, 0xba, 0x96, 0x5a, 0xa2, 0x4d, 0xc1, 0x61, 0xd, 0xfd, 0x68, 0x5b, 0x7f, 0xeb, 0xc2, 0x9a, 0x97, 0xc8, 0x4f, 0x65}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x30, 0xef, 0x44, 0x1d, 0x82, 0x62, 0x5d, 0x9d, 0x80, 0x51, 0xb5, 0x9b, 0x94, 0x2f, 0xfb, 0x5, 0x1e, 0xc4, 0x99, 0x6a, 0x32, 0xa4, 0x2a, 0x81, 0xb0, 0x5f, 0xed, 0x8c, 0xdb, 0xc7, 0x98, 0x97}} return a, nil } -var _lockedtokensAdminAdmin_deploy_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x4f\xc1\x4a\xc5\x30\x10\xbc\xf7\x2b\xf6\xd8\x42\xe9\x07\x14\x3c\x14\x11\x84\x27\x5e\xf4\x26\x1e\x62\xb2\x36\xa1\x6d\x36\x6c\xb6\x68\x90\xf7\xef\xd2\x86\xf6\x45\xcc\x61\x92\xcd\xce\xce\xce\xb8\x25\x10\x0b\xdc\x73\x0a\x42\x55\x25\xac\x7c\x54\x5a\x1c\xf9\x5a\x93\x17\x56\x5a\x9e\xd5\x82\x3d\xbc\x08\x3b\x3f\xb6\xa0\xc9\x14\x55\x58\x3f\x66\xa7\x2f\x98\x62\x0f\x6f\x59\xa4\xbb\x60\x7a\x72\x51\x1e\xbc\x70\x7a\x6f\xe0\xa7\x02\x00\xd8\x21\x30\x06\xc5\x58\x2b\xb3\x38\xdf\xc3\xb0\x8a\x1d\xb4\xa6\xd5\xcb\x41\xdb\xce\x8c\x02\x33\xe9\x09\xcd\x2b\x4d\xe8\x23\xdc\x95\xcc\x3a\xa8\x84\xdc\xc3\xae\xd1\xdc\x86\x8a\x81\xee\x70\x1e\x3b\x65\x4c\xed\x77\xff\x65\x9a\x23\xc5\x86\x9d\xc1\xed\x7a\xc4\xef\xba\x69\x0f\xd5\x53\xf6\x93\x18\x26\x4c\xe0\x7c\x11\xb5\xf0\xfa\x6f\xf5\x84\x29\x6f\x3d\xe9\xfd\x26\xd0\x9d\x65\x0b\x56\x45\x3b\xcc\x23\xb1\x13\xbb\xe4\xee\x9f\xaf\x16\xbe\xd0\x8d\x56\x72\x2b\xbf\x6f\x41\xaf\x55\xc6\x6b\xf5\x1b\x00\x00\xff\xff\xdf\x5c\xcb\x79\xbb\x01\x00\x00" +var _lockedtokensAdminAdmin_deploy_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xc1\x4a\xc4\x30\x10\x86\xef\x7d\x8a\x39\x49\x0a\xa5\x0f\x50\xf0\xb0\x8a\x20\xac\x78\x51\xbc\x88\x87\x98\x8c\x6d\x68\x9b\x09\x93\x29\x6b\x90\x7d\x77\x69\x63\xbb\x95\xed\xe1\x6f\x26\xf3\xcf\x3f\xf9\xdc\x18\x88\x05\xee\x39\x05\xa1\xa2\x10\xd6\x3e\x6a\x23\x8e\xbc\x32\xe4\x85\xb5\x91\x67\x3d\x62\x03\x2f\xc2\xce\xb7\x15\x18\xb2\xbb\x2a\x4c\x9f\x83\x33\x47\x4c\xb1\x81\xf7\x1c\x52\x1f\x31\x3d\xb9\x28\x0f\x5e\x38\x7d\x94\xf0\x53\x00\x00\x2c\x12\x18\x83\x66\x54\xda\x8e\xce\x37\xa0\x27\xe9\xd4\x1d\x31\xd3\xe9\x4d\x0f\x13\x96\x70\x73\x30\x86\x26\x2f\xeb\xd4\xfc\x0d\x28\x30\x90\xe9\xd1\xbe\x52\x8f\x3e\xc2\x2d\xfc\xb9\x54\xd0\x09\xb9\x81\x25\xae\xbc\x0c\xec\xcc\xf5\x0a\x11\x6b\x6d\xad\xf2\x0b\xca\x1e\x6c\x05\x9a\xb5\xb6\x38\xff\x1e\xf1\x5b\x95\xd5\x9a\xba\xc5\x7e\x11\x43\x8f\x09\x9c\xdf\x51\xef\xde\x79\xb5\xba\xc7\x94\xb7\x6e\xf6\x66\x0e\xa8\xb7\xb2\x82\x4e\xc7\xee\x30\xb4\xc4\x4e\xba\x31\x77\xff\x5d\x55\x70\x42\xd7\x76\x92\x5b\xf9\x7c\x01\x3d\x17\x59\xcf\xc5\x6f\x00\x00\x00\xff\xff\x49\xce\x57\x4b\xc6\x01\x00\x00" func lockedtokensAdminAdmin_deploy_contractCdcBytes() ([]byte, error) { return bindataRead( @@ -3630,11 +3630,11 @@ func lockedtokensAdminAdmin_deploy_contractCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_deploy_contract.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x9a, 0x97, 0x6b, 0xe8, 0x7e, 0x5e, 0x52, 0xde, 0xaf, 0x33, 0x49, 0x33, 0x5e, 0x3e, 0xa7, 0x54, 0x57, 0x9d, 0xa1, 0x71, 0x7e, 0xbe, 0x2e, 0x5e, 0x2b, 0xc2, 0x3a, 0x9d, 0xd4, 0xd2, 0x7a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe8, 0x78, 0x94, 0xa7, 0x16, 0x32, 0xd, 0x11, 0xf4, 0x29, 0xaa, 0x47, 0xc9, 0x4f, 0x28, 0xb1, 0xb8, 0x59, 0x3, 0xce, 0x71, 0xab, 0xbd, 0x6e, 0xe3, 0xce, 0xbc, 0x63, 0xc, 0xbd, 0x5b, 0x92}} return a, nil } -var _lockedtokensAdminAdmin_deposit_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\xc1\x6e\xdb\x30\x0c\xbd\xeb\x2b\x88\x1e\x36\xe7\x92\xec\x1c\xac\x2b\x0c\x27\xa7\x16\x6b\xd0\xe6\x07\x18\x89\x8d\x85\x2a\xa2\x40\xd1\xe9\x8a\xa1\xff\x3e\x28\x36\x52\xbb\xcb\x56\x9e\x6c\xe2\xbd\x47\xbe\x27\xfa\x43\x62\x51\xb8\x63\xfb\x4c\x6e\xcb\xcf\x14\x33\x3c\x09\x1f\xe0\xdb\xaf\xbb\xfb\xe6\x76\xbd\xda\xde\xdf\xae\x7f\xd6\xab\xd5\xc3\xfa\xf1\xd1\x98\xc5\x62\x01\x5a\x50\x80\xee\xe0\x23\x64\xbf\x8f\x19\xb4\xf5\x19\x54\x30\x66\xb4\xea\x39\x82\x32\x38\x4a\x9c\xbd\x02\x82\xc5\x84\x3b\x1f\xbc\xbe\x9e\xe8\x3e\x2a\x97\x6e\x97\x95\xdd\x2b\x24\xe1\xa3\x77\x24\x5f\x33\xa0\xb5\xdc\x45\x05\x6d\x51\x01\x43\xe0\x97\x22\x4d\x87\x22\x87\xce\x9d\xd8\x03\x26\x97\x9e\xb6\x04\x42\x96\xc5\x19\x33\x9a\x5e\x0d\xd2\x9b\x41\xb9\x76\x4e\x28\xe7\x25\x0c\x1f\x33\xf8\x6d\x0c\x00\x40\x12\x4a\x28\x54\x9d\xac\x2c\xa1\xee\xb4\xad\x7b\xf9\x33\xa4\x54\x20\x1d\x79\x78\x20\x4b\xfe\x48\x02\xd7\xb0\x27\x1d\xf0\xff\x18\x39\x3b\x6b\x94\x9a\xef\x49\x9b\xb3\xce\xf7\x2f\xe3\xcc\xe7\xfd\xcf\x20\xd7\x08\xa1\xb2\xfc\xa8\x26\xfc\x52\x9f\x72\x36\xdd\x2e\x78\xbb\x41\x6d\x27\xdc\x0f\x9b\xec\x58\x84\x5f\xaa\x69\xf7\xe6\x06\x12\x46\x6f\xab\xab\x86\xbb\xe0\x20\xb2\x42\x0f\x1c\xd9\x2f\x81\xf7\xfe\x85\x9e\x48\x28\x5a\xba\x9a\x4d\xb3\x3a\xdd\x47\x5d\x32\x6d\x38\x04\xea\x2f\xe2\xba\x3f\x98\xff\x66\xb0\xbd\x40\xfc\x90\xc1\x05\xff\xef\xac\x8d\xf8\x23\x2a\x4d\xcc\x8f\x76\xfb\xfb\x0d\xe7\xe8\xdc\xfb\x36\x95\xc5\xb4\xbc\xb8\x7d\x9f\xd3\x9b\x79\x33\x7f\x02\x00\x00\xff\xff\x99\xa2\xb5\xd4\x2f\x03\x00\x00" +var _lockedtokensAdminAdmin_deposit_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\xc1\x6e\xdb\x30\x0c\x86\xef\x7e\x0a\xb6\x87\xce\xbe\x24\x3b\x07\xeb\x8a\xcc\xc9\xa9\xc5\x1a\xb4\xc1\xee\x8c\xc4\xc6\x42\x15\x51\xa0\xe8\x74\xc5\xd0\x77\x1f\x64\x1b\xa9\xbd\xa5\x28\x4f\x36\xc1\xff\x17\xf9\x91\xee\x10\x59\x14\xee\xd8\x3c\x93\xdd\xf2\x33\x85\x04\x4f\xc2\x07\xf8\xfa\xfb\xee\xbe\xbe\x5d\xaf\xb6\xf7\xb7\xeb\x9f\xcb\xd5\xea\x61\xfd\xf8\x58\x14\xf3\xf9\x1c\x34\x57\x01\xda\x83\x0b\x90\xdc\x3e\x24\xd0\xc6\x25\x50\xc1\x90\xd0\xa8\xe3\x00\xca\x60\x29\x72\x72\x0a\x08\x06\x23\xee\x9c\x77\xfa\xda\xc9\x5d\x50\xce\xd9\x36\x29\xdb\x57\x88\xc2\x47\x67\x49\xbe\x24\x40\x63\xb8\x0d\x0a\xda\xa0\x02\x7a\xcf\x2f\xd9\x9a\x0e\xd9\x0e\xad\xed\xd4\x43\x4d\xca\x39\x6d\x08\x84\x0c\x8b\x2d\x8a\xd1\xeb\xe5\x60\xbd\x19\x9c\x97\xd6\x0a\xa5\xb4\x80\xe1\xa3\x82\x3f\x45\x01\x00\x10\x85\x22\x0a\x95\xdd\x28\x0b\xc0\x56\x9b\xf2\x07\x8b\xf0\xcb\x2f\xf4\x2d\x55\x70\xb5\xec\x5f\x3b\x29\x72\x78\xd2\xd1\x48\x0f\x64\xc8\x1d\x49\xe0\x1a\xf6\xa4\x43\xfd\x07\x1d\x54\x27\x8f\x1c\xb3\x93\x89\xa3\x34\xdb\x93\x7e\xbb\x1a\x6f\x61\xd6\xff\x0c\x8e\xb5\x10\x2a\xcb\xf7\x72\x62\x91\xe3\x53\xcd\xa6\xdd\x79\x67\x36\xa8\xcd\x44\x5b\x5d\x4c\xbb\xd9\x75\x83\x97\xd3\x1e\x6f\x6e\x20\x62\x70\xa6\xbc\xac\xb9\xf5\x16\x02\x2b\xf4\x85\x23\x04\x79\x07\x3d\x03\xa1\x27\x12\x0a\x86\x2e\xab\x29\xaf\xee\x64\x96\x19\x73\xcd\xde\x53\x7f\x24\xd7\xfd\x0d\x7d\xc6\x61\x7b\x46\xfb\x0f\x87\x33\x0c\xde\x55\x1b\x71\x47\x54\x9a\x00\xa8\x2e\xde\xfb\xfb\x7f\x97\x33\xb4\xb6\x3e\x65\x4b\x83\x71\x71\x76\x82\x9e\xd5\x5b\xf1\x56\xfc\x0d\x00\x00\xff\xff\xfd\x8f\x6e\x94\x46\x03\x00\x00" func lockedtokensAdminAdmin_deposit_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3650,11 +3650,11 @@ func lockedtokensAdminAdmin_deposit_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_deposit_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0x2, 0x6d, 0x5e, 0xa, 0xf2, 0x7f, 0x1a, 0x87, 0x59, 0x63, 0xdc, 0xac, 0xd3, 0x8d, 0xa9, 0x8c, 0x80, 0x27, 0x34, 0xba, 0xa0, 0x2d, 0xb0, 0x9d, 0xf3, 0x75, 0x53, 0x53, 0x73, 0x8, 0x74}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe7, 0xca, 0x8e, 0xac, 0xef, 0xef, 0x5a, 0x5a, 0x35, 0xfb, 0x72, 0xc8, 0xf1, 0x54, 0x61, 0x28, 0x3e, 0x4e, 0x65, 0xed, 0xd, 0x5e, 0xf6, 0xc3, 0xcd, 0x61, 0xc8, 0x26, 0xb9, 0x36, 0x7a, 0xda}} return a, nil } -var _lockedtokensAdminAdmin_remove_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8f\xc1\x4f\xfa\x50\x0c\xc7\xef\xfb\x2b\xfa\xe3\xf0\xcb\x76\x90\x78\x26\x28\x99\x6c\x26\x04\x04\xc3\xde\xc5\x63\x79\x2b\x63\xe1\xed\x75\xe9\x8a\x68\x0c\xff\xbb\x99\x73\x32\x4f\xf6\xd6\xf4\xf3\x69\xbf\x2d\xab\x9a\x45\xe1\xd1\xf1\x79\x91\x18\xdc\x39\xca\x14\x8f\xa5\x2f\x60\x2f\x5c\xc1\xed\xdb\x22\x49\xd7\x66\x61\x5e\x4c\xfc\xb0\x4a\xe3\x24\xd9\xa6\x59\x16\x7c\x5b\x2b\xb6\x47\xca\x0d\x1f\xc9\x37\x3d\xbf\xda\xcc\x97\x69\x62\x36\xcb\x74\xdd\xd3\x81\x0a\xfa\x06\xad\x96\xec\xe1\x23\x08\x00\x00\x6a\xa1\x1a\x85\xc2\xa6\x2c\x3c\xc9\x04\xe2\x93\x1e\x62\x6b\xf9\xe4\x35\xea\x99\xb6\x1c\x29\x54\xe8\xb1\x20\xd9\xd2\x1e\xee\xa0\x13\xc6\x3b\x16\xe1\xf3\xf4\xff\x30\xc2\x78\xd0\x3c\x75\xce\x7d\xd8\xc6\x9a\xc0\x1f\x58\xa6\x2c\x58\xd0\x33\xea\x21\xfa\x39\xdd\xd6\x6c\x06\x35\xfa\xd2\x86\xa3\x39\x9f\x5c\x0e\x9e\x15\xba\xd3\x80\x20\xb4\x27\x21\x6f\x09\x94\x41\x0f\x04\xee\x6b\x31\x68\xbb\xb9\x4f\x3d\x8a\x7e\x3f\x93\x93\xa3\x02\x95\x05\xa6\x37\x83\xcf\xc6\x42\x15\xbf\x52\xd2\x4f\xc3\xe8\xdf\xd5\xcb\xa9\x51\xe1\xf7\xab\xdb\x8d\x2e\xc1\x25\xf8\x0c\x00\x00\xff\xff\x33\x91\x55\x64\xc0\x01\x00\x00" +var _lockedtokensAdminAdmin_remove_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8f\x41\x6f\xb2\x40\x10\x86\xef\xfc\x8a\xf9\x3c\x18\x38\x7c\xa4\x67\x63\x6b\x54\x68\x62\xb4\xda\x08\x69\xd2\xe3\xb8\x8c\x48\x5c\x76\xc8\x30\xd4\x36\x8d\xff\xbd\x41\x4a\xb5\xa7\xce\x6d\x33\xef\xf3\xee\x33\x45\x59\xb1\x28\x3c\x5a\x3e\x2d\xa2\x14\x77\x96\x12\xc5\x63\xe1\x72\xd8\x0b\x97\x70\xf7\xbe\x88\xe2\x75\xba\x48\x5f\xd3\xe9\x6c\x15\x4f\xa3\x68\x1b\x27\x89\xf7\x4d\xad\xd8\x1c\x29\x4b\xf9\x48\xae\xee\xf3\xab\xcd\x7c\x19\x47\xe9\x66\x19\xaf\xfb\xb4\xa7\x82\xae\x46\xa3\x05\x3b\xf8\xf4\x3c\x00\x80\x4a\xa8\x42\x21\xbf\x2e\x72\x47\x32\x02\x6c\xf4\xe0\xcf\x58\x84\x4f\x2f\x68\x1b\x0a\x60\x38\x35\x86\x1b\xa7\x41\x8f\xb4\x63\x49\xa1\x44\x87\x39\xc9\x96\xf6\x70\x0f\x1d\x1f\xd6\xca\x82\x39\x85\xbb\x4b\xc3\x78\x78\x6b\x16\xde\x3c\x9e\x3a\xf6\xc1\x6f\x6d\x47\xf0\x47\x2c\xe9\x5a\x9f\x51\x0f\xc1\x8f\x42\x3b\x93\x09\x54\xe8\x0a\xe3\x0f\xe6\xdc\xd8\x0c\x1c\x2b\x74\x5f\x03\x82\xd0\x9e\x84\x9c\x21\x50\x06\x3d\x10\xd8\x4b\x31\x68\xdb\xdc\xdb\x0f\x82\xdf\x47\x65\x64\x29\x47\x65\x81\xf1\xff\x9b\x0b\x43\xa1\x92\xdf\x28\xea\xb7\x7e\xf0\xef\xca\x65\x54\xab\xf0\xc7\x95\xed\x56\x67\xef\xec\x7d\x05\x00\x00\xff\xff\xe2\x9e\x25\xbe\xd7\x01\x00\x00" func lockedtokensAdminAdmin_remove_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3670,11 +3670,11 @@ func lockedtokensAdminAdmin_remove_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_remove_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7b, 0x45, 0x4f, 0xc6, 0x2d, 0xa8, 0x8, 0x67, 0x3d, 0x3b, 0x76, 0x24, 0x7e, 0x97, 0xc8, 0x6, 0x34, 0xe8, 0xea, 0xfa, 0x7b, 0x91, 0x9c, 0x76, 0x38, 0x88, 0x31, 0x29, 0xb2, 0x25, 0x1, 0xf6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x27, 0x35, 0xc4, 0xb6, 0xf5, 0x3d, 0xc2, 0x47, 0x6d, 0x70, 0x6, 0xa, 0xe8, 0x19, 0x7e, 0x28, 0xa9, 0x66, 0x7e, 0xfe, 0xe1, 0x6a, 0xe, 0x78, 0x5d, 0xf9, 0x2f, 0x3e, 0x3e, 0x9b, 0xa5, 0x58}} return a, nil } -var _lockedtokensAdminCheck_main_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xc1\x6a\xdb\x40\x10\x86\xef\x7a\x8a\x89\x0e\x45\x86\x22\x7a\x16\x75\x82\x90\x5d\x5a\x12\x9a\x10\xfb\x05\xc6\xab\x91\xbc\x64\xb5\x23\x76\x47\xa4\xa5\xe4\xdd\x8b\x56\x92\xd1\x36\xa6\x87\xec\xc5\xec\xf8\xdf\x99\xff\xff\x34\xba\xeb\xd9\x09\x7c\x1b\x6c\xab\x4f\x86\x8e\xfc\x42\x16\x1a\xc7\x1d\xa4\x51\x2d\x4d\x16\xa5\xe1\xd7\x48\xb5\xdc\xd3\x64\x91\x3c\xb0\x7a\xa1\x3a\x14\xfd\xa4\xfa\xf2\xeb\xe1\xb1\xba\xdf\xef\x8e\x8f\xf7\xfb\x9f\xe5\x6e\xf7\xbc\x3f\x1c\x92\x44\x1c\x5a\x8f\x4a\x34\xdb\xac\x43\x6d\x4b\xa5\x78\xb0\x52\x40\x59\xd7\x8e\xbc\xdf\xc0\x9f\x24\x01\x00\xe8\x1d\xf5\xe8\x28\xf3\xba\xb5\xe4\x0a\x28\x07\x39\xcf\xe2\x8b\x66\x3c\x86\x04\xb0\xee\xb4\x7d\xa6\x06\xb6\x30\xc9\xf3\x13\x3b\xc7\xaf\x5f\x3f\xad\x6d\xe5\xe1\xa7\x1c\xb5\x15\x1b\x43\xc1\xc4\x6d\x36\x9a\x2d\x22\xff\xf9\xea\xf2\x8f\xfc\x20\xec\xb0\xa5\x27\x94\xf3\xe6\x62\x61\x3c\x77\x77\xd0\xa3\xd5\x2a\x4b\x2b\x1e\x4c\x0d\x96\x05\x26\x13\x80\xe0\xa8\x21\x47\x56\x11\x08\x83\x9c\x09\x4c\x18\x00\x12\x98\x06\xf7\xa0\x2e\x33\xd2\x4d\x9c\x6e\x12\xcf\xd9\x7f\xd8\x86\xa7\xa4\x2d\xc9\x5c\x5b\x83\x8c\x5d\xe5\x2d\x49\x85\x3d\x9e\xb4\xd1\xf2\xfb\x1a\x8e\xef\x6c\x6a\x72\xb7\xd9\x95\xfc\xab\x89\x4f\xc3\xc9\x68\xf5\x3e\xf5\xcc\x39\xfb\x28\x8b\x3e\xf4\x85\x77\xf3\xfe\x8b\x00\xb6\x57\x91\x8c\x59\xa3\x46\xf3\x46\x65\xab\x5e\xe8\x3d\x39\xc9\x22\xb7\xcb\xf2\xe4\x2b\xa0\x38\x3d\x2d\xe2\x41\x1b\xb8\xd9\x82\xd5\xe6\x73\xf4\xbe\x23\xef\xb1\xa5\x02\xd2\xe3\x99\xc0\xf7\xa4\x74\xa3\xa9\x06\x9c\xdd\x6a\x1f\x00\xe0\xf2\xd1\xe7\xfa\x0d\x54\x68\xc7\x3f\x3c\xd9\x3a\x5a\x08\x9f\x5e\xfa\x4f\x5c\xdf\x92\xb7\xe4\x6f\x00\x00\x00\xff\xff\xb0\x35\x89\xe4\xb4\x03\x00\x00" +var _lockedtokensAdminCheck_main_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\x4d\x8b\xdb\x30\x10\xbd\xfb\x57\x4c\x7c\x58\x64\x28\xa6\x67\xd3\xec\x92\x26\x29\x2d\xbb\x74\x97\x4d\xe8\x7d\x22\x8f\x1d\xb1\xb2\x64\xa4\x31\x5b\x28\xf9\xef\xc5\x92\x1d\xac\x36\xf4\x50\x5d\x82\x26\xef\xcd\xfb\xb0\x54\xd7\x5b\xc7\xf0\x65\x30\xad\x3a\x69\x3a\xda\x37\x32\xd0\x38\xdb\x41\x9e\xcc\xf2\x6c\x46\x6a\xfb\x9e\xa0\xe6\x7b\x9e\xcd\x90\x27\x2b\xdf\xa8\x0e\x43\x1f\x51\x1f\x7f\x3e\x3d\x6f\x1f\xf7\xbb\xe3\xf3\xe3\xfe\xfb\x66\xb7\x7b\xdd\x1f\x0e\x59\xc6\x0e\x8d\x47\xc9\xca\x1a\xd1\xa1\x32\x1b\x29\xed\x60\xb8\x82\x4d\x5d\x3b\xf2\xbe\x80\x5f\x59\x06\x00\xd0\x3b\xea\xd1\x91\xf0\xaa\x35\xe4\x2a\xc0\x81\xcf\xe2\xb3\x75\xce\xbe\xff\x40\x3d\x50\x01\x77\x13\xf7\x4a\x19\x8f\x26\x06\xac\x3b\x65\x5e\xa9\x81\x35\x44\x76\xe9\xd9\x3a\x6c\xa9\x3c\x05\xfe\xa7\xbb\xa5\xdb\x32\xfc\x6c\x46\xce\xd6\x6a\x4d\xc1\xdb\xbd\x18\x33\x54\x49\xac\x72\x71\xf9\x03\x7e\x88\xfb\x5f\x90\xcf\xc5\xd5\xca\x78\x1e\x1e\xa0\x47\xa3\xa4\xc8\xb7\x76\xd0\x35\x18\xcb\x10\x4d\x00\x82\xa3\x86\x1c\x19\x49\xc0\x16\xf8\x4c\xa0\x83\x00\x70\xa8\x3a\xa4\x00\x79\xd5\xc8\x8b\x34\x65\x04\x4f\x1d\x7c\x33\x8d\x8d\x89\x5b\xe2\x69\xb6\xec\x37\x75\x55\x4a\xec\xf1\xa4\xb4\x62\x45\xbe\x6c\x89\x6f\x35\xf2\xd5\xea\x9a\xdc\xbd\xb8\x51\xc1\x42\xf4\x65\x38\x69\x25\x43\xf0\x55\xaa\x11\x63\x8a\xff\xed\xa3\x0f\x8b\xe1\x2f\xc1\x7f\xd6\x00\xeb\x9b\xb5\x8c\x11\x93\x45\xd3\x63\x13\x8b\x5d\xe8\x3d\x39\x16\x89\xdb\xf9\x21\x95\x8b\x52\x31\x52\xab\x54\xa8\x80\xd5\x1a\x8c\xd2\x1f\x12\x7e\x47\xde\x63\x4b\x15\xe4\xc7\x33\x81\xef\x49\xaa\x46\x51\x0d\x38\xb9\x55\x3e\x14\x80\xf3\x87\x9f\xe6\x2b\xd8\xa2\x19\xff\xf0\x64\xea\xe4\x51\xf8\xfc\xba\x3f\xf6\x7a\xc9\x2e\xd9\xef\x00\x00\x00\xff\xff\xc5\x16\x02\x9f\xcf\x03\x00\x00" func lockedtokensAdminCheck_main_registrationCdcBytes() ([]byte, error) { return bindataRead( @@ -3690,11 +3690,11 @@ func lockedtokensAdminCheck_main_registrationCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/check_main_registration.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x14, 0x5e, 0x3e, 0x1d, 0xe0, 0xfa, 0x52, 0x26, 0x28, 0x3d, 0x94, 0xf9, 0x8, 0x79, 0xe4, 0xad, 0xa9, 0xe, 0x74, 0x85, 0x19, 0x24, 0x6b, 0x90, 0xa, 0xd0, 0x8a, 0x64, 0x32, 0x41, 0xdf, 0x72}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7c, 0x37, 0x54, 0x6f, 0x94, 0xa, 0xb4, 0xc8, 0xc2, 0x38, 0xf7, 0xd8, 0xda, 0x58, 0x74, 0x2f, 0x71, 0xfb, 0x3b, 0xd9, 0xb1, 0x8a, 0x67, 0x45, 0x6f, 0xb4, 0x53, 0x6e, 0x2e, 0x69, 0x96, 0x6c}} return a, nil } -var _lockedtokensAdminCheck_shared_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xc1\x8e\xa3\x30\x10\x44\xef\xfe\x8a\x0a\x87\x15\x48\x2b\xb4\x67\xb4\xd9\x08\x91\xec\x25\xd1\x64\x94\xe4\x07\x1c\xd3\x80\x15\x63\x23\xdb\x28\x23\x8d\xf2\xef\x23\x20\x30\xf1\xf4\x05\x75\xf3\xda\x5d\x55\xb2\xed\x8c\xf5\xf8\xdf\xeb\x5a\x5e\x15\x5d\xcc\x8d\x34\x2a\x6b\x5a\x44\xc1\x2c\x62\x33\xa9\xcc\x3d\xa0\xe6\x3e\x62\x33\x72\x30\xe2\x46\xe5\x38\x74\x13\xf5\xe7\xe3\x70\x2c\xf6\xbb\xed\xe5\xb8\xdf\xbd\xe5\xdb\xed\x69\x77\x3e\x33\xe6\x2d\xd7\x8e\x0b\x2f\x8d\x8e\xd5\xb8\x93\x0b\x61\x7a\xed\x33\xe4\x65\x69\xc9\xb9\x04\x9f\x8c\x01\x40\x67\xa9\xe3\x96\x62\x27\x6b\x4d\x36\x43\xde\xfb\xe6\x09\x2f\xcc\x50\x8a\x3c\x78\xd9\x4a\x7d\xa2\x0a\x6b\x4c\x78\x7a\x35\xd6\x9a\xfb\xdf\x5f\xaf\xc2\xd2\xf1\x93\x0f\x6c\x61\x94\xa2\x51\xc6\xbf\x78\x90\x9b\x05\x0e\xd2\x97\xe6\x07\x7e\xf6\xc6\xf2\x9a\xde\xb9\x6f\x92\x45\xc2\x50\x9b\x0d\x3a\xae\xa5\x88\xa3\xc2\xf4\xaa\x84\x36\x1e\x93\x08\x70\x58\xaa\xc8\x92\x16\x04\x6f\xe0\x1b\xc2\xe4\x1d\x7e\x4c\x75\x54\x0f\xb1\xdc\x88\x92\x6f\x77\xdc\x39\xb2\x1e\x71\x70\x6b\xb6\x9b\xd6\xe4\x9f\x91\xc4\x7c\x8a\x2f\x43\x10\x6b\x82\xd5\x1a\x5a\xaa\xdf\xc1\x7e\x4b\xce\xf1\x9a\x32\x44\x97\x86\xe0\x3a\x12\xb2\x92\x54\x82\x4f\x4b\x90\x6e\x94\xcf\x67\x99\xcf\xf9\x0a\x05\xd7\xc3\x0f\x47\xba\x0c\x2c\xb8\x68\x79\x7f\x4a\xe5\xc1\x1e\xec\x2b\x00\x00\xff\xff\x68\xc2\xee\x14\x68\x02\x00\x00" +var _lockedtokensAdminCheck_shared_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x6f\x9c\x30\x14\x84\xef\xfe\x15\x13\x0e\x11\x48\x15\xea\x19\x35\x8d\x28\xbb\xbd\x24\x6a\xaa\xec\xaa\xf7\x17\xf3\x00\x2b\xc6\x46\xb6\x51\x2a\x55\xfb\xdf\x2b\xec\x85\x2e\xf5\x05\xf9\x31\x9f\xdf\xcc\xa8\x71\xb2\x2e\xe0\xfb\x6c\x7a\xf5\xa6\xf9\x6c\xdf\xd9\xa0\x73\x76\x44\xb6\x9b\x65\x62\x55\x6a\xfb\xb1\x53\xad\xf7\x4c\xac\x92\x67\x2b\xdf\xb9\x8d\x43\x9f\x54\x9f\x7f\x3f\xbf\x34\x4f\xc7\xc3\xf9\xe5\xe9\xf8\xa3\x3e\x1c\x5e\x8f\xa7\x93\x10\xc1\x91\xf1\x24\x83\xb2\x26\xd7\x91\xa9\xa5\xb4\xb3\x09\x15\xea\xb6\x75\xec\x7d\x81\x3f\x42\x00\xc0\xe4\x78\x22\xc7\xb9\x57\xbd\x61\x57\x81\xe6\x30\xe4\xdf\xac\x73\xf6\xe3\x17\xe9\x99\x0b\xdc\x5f\xd9\x0d\x59\x8e\xe6\x00\x6a\x47\x65\x5e\xb9\xc3\x03\x12\x5d\xfa\x60\x1d\xf5\x5c\xbe\x45\xfe\xcb\xfd\xad\xdf\x32\x7e\xea\x85\x69\xac\xd6\x1c\xdd\x7d\xcd\x97\x14\xd5\x2e\x58\x79\x73\xf9\x4f\x7e\x4a\xef\xff\xa4\x30\x14\x9b\x95\xe5\x3c\x3e\x62\x22\xa3\x64\x9e\x35\x76\xd6\x2d\x8c\x0d\x48\x26\x40\x70\xdc\xb1\x63\x23\x19\xc1\x22\x0c\x8c\x54\x09\x42\x2c\x3b\xa6\x80\xdc\x76\x64\xc5\xbf\x94\xe4\x3d\xbb\x80\x7c\xb7\x6b\x8d\x5d\xf6\x1c\xae\xd5\xe4\x94\x5a\xad\xb0\x6b\xbb\xc0\xdd\x03\x8c\xd2\x9f\x76\xfc\xc8\xde\x53\xcf\x15\xb2\xf3\xc0\xf0\x13\x4b\xd5\x29\x6e\x41\x09\x82\xf2\xd1\x3e\xad\x36\xaf\xf3\x3b\x34\x64\x96\x1f\x9e\x4d\xbb\x8b\xe0\xb3\xed\xfd\xd4\xca\x45\x5c\xc4\xdf\x00\x00\x00\xff\xff\x8b\xd1\x84\xfd\x7f\x02\x00\x00" func lockedtokensAdminCheck_shared_registrationCdcBytes() ([]byte, error) { return bindataRead( @@ -3710,11 +3710,11 @@ func lockedtokensAdminCheck_shared_registrationCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/check_shared_registration.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7, 0xd8, 0xf0, 0x95, 0xb, 0x58, 0x4e, 0x30, 0x91, 0x95, 0x2, 0x4a, 0xc5, 0xf3, 0x33, 0x3f, 0xe8, 0x7e, 0xad, 0xc5, 0x26, 0x38, 0xcf, 0x79, 0x47, 0xb0, 0xf2, 0xf6, 0xd5, 0x1a, 0xaf, 0xac}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc0, 0x63, 0x70, 0xca, 0x39, 0x95, 0x6b, 0x65, 0x78, 0x87, 0x9b, 0x56, 0xa5, 0xa, 0x10, 0xa8, 0xfa, 0xab, 0x38, 0xee, 0x5c, 0x23, 0xfe, 0x8, 0xf, 0xd6, 0x21, 0xa5, 0x2b, 0x89, 0xac, 0x74}} return a, nil } -var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x56\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\x72\x58\xc8\x80\x63\xa5\x57\xc1\xc9\xc2\x70\xb2\x68\x91\xb4\x09\x36\x69\xf7\x3c\x96\xc6\x16\x61\x99\x54\x49\xca\xae\xb1\xc8\x7f\x2f\x48\xea\x8b\xb2\x14\x27\x68\x0e\xf5\xc1\x80\xc4\x37\xc3\x79\x6f\x3e\x34\x6c\x57\x08\xa9\x61\x29\x8f\x85\x16\x41\xf5\xf4\x2d\x17\x87\x17\xb1\x25\x0e\x6b\x29\x76\x70\xd1\x3c\x5f\x34\x88\x92\x6f\xd8\x2a\x27\x0f\xd5\x7d\xd7\x20\x1f\x44\xb2\xa5\xd4\xbe\x53\x0e\x78\xf5\xcf\xc3\xe3\xf2\xfe\xee\xf6\xe5\xf1\xfe\xee\x8f\xc5\xed\xed\xf7\xbb\xe7\xe7\x20\x88\xa2\x08\x5e\x24\x72\x85\x89\x66\x82\x83\xce\x50\x03\x42\x52\x2a\x2d\xd2\x23\x14\x52\xec\x59\x4a\x12\x0e\xa2\xcc\x53\x50\x6c\xc3\xad\x89\x16\x90\x48\x42\x4d\x80\xa0\x32\x94\x94\x02\x26\x89\x28\xb9\x06\xe4\x29\x20\x87\x92\xe7\x36\x04\x0b\xaf\xcf\xd6\x42\x02\x42\xa9\x48\x06\x81\x6e\x6f\x0d\x03\x00\x80\x75\x99\xe7\x8b\x74\xc7\xf8\x53\xb9\xca\x59\x72\x4f\xc7\xb8\x12\x68\x76\x4f\xc7\x07\xa6\xf4\x1d\xd7\xf2\x38\x85\x28\x82\x1f\xc4\x36\x99\x8e\xe1\x97\xab\xab\xab\xc6\xf8\x4f\x45\xf2\xa3\xb6\x13\x80\x9f\x81\xf5\x50\x48\x2a\x50\x52\x58\x51\x7f\xaa\x98\xc7\xb0\x28\x75\xb6\x70\x04\x26\x35\xd8\xfc\x72\xd2\x15\xf7\xea\x14\xae\xbb\xd8\xb0\xc0\xa3\x31\xef\xf9\x9b\x78\xf6\x46\x8a\x8f\x59\x37\xe6\xde\xd5\xb3\x2d\x1d\xd5\x0c\xd3\x34\x2c\x5a\x01\x4e\x05\x9d\x35\xa7\x53\xc8\x50\x65\x8b\x7c\x23\x24\xd3\xd9\x6e\x10\xec\x21\xa6\x70\xa8\x74\x1b\x40\xba\xa3\x96\x9a\xf9\x35\x0f\x1d\x8e\xa3\x61\x7a\xa9\x3b\x13\xa5\x8f\x7d\x23\x48\x1f\x58\xc5\x08\xe0\x67\x70\x8f\x65\xae\x97\x58\xe0\x8a\xe5\x4c\x1f\xe1\xda\x17\xd6\xa3\x34\xcb\x19\xdf\xce\xb1\xd4\x59\xe8\x75\xdd\xec\x07\xd3\x59\x2a\xf1\x80\xab\x9c\x26\xf0\xa5\x69\xdc\xd9\x5f\xc6\xfb\x4d\x18\x15\x92\xed\x51\x53\xb4\xae\x4f\xec\xc1\x14\x34\xca\x0d\xe9\x18\x22\xa5\x85\xc4\x4d\x1f\xe0\x2b\xfa\xf5\x2b\x14\xc8\x59\x12\x5e\x2c\x6d\x37\x72\xa1\xc1\x44\x64\x07\x07\xb8\x99\x60\xcd\x20\x69\xf8\x5c\x4c\x7c\xba\x79\x3b\x17\x7e\x47\x8e\x1b\x92\x30\xbf\xf4\xa6\xc5\xcc\x35\xf6\xc3\x09\x30\xb4\x52\xc5\x7d\xc5\x46\x4b\x52\xe1\x9e\xc2\xf9\xe5\xe9\x8d\x53\xd0\x22\xf6\xef\x3c\xbd\xed\xd9\x09\xf2\x84\x3a\xeb\x51\xd0\x1d\xd4\x27\x27\xee\x4c\x4c\x37\xa1\xe7\xd5\xfc\xce\x58\x3c\xb9\xbc\x1b\x16\xd3\x13\xdb\x3a\xf9\xef\x57\xa2\x71\x31\x79\xab\x1c\xac\x40\xb0\xab\xd2\x3b\x5e\x0b\x16\xf7\xab\xc8\xd3\xd1\x22\x78\x69\x11\xa1\xcb\xe3\x22\x4d\x25\x29\x15\xf7\x72\x8d\xee\xf5\xd4\x4b\x4e\x3c\x92\xaa\x4e\x18\xdd\xd9\x60\xeb\xc5\x13\x69\x7e\xd9\x09\x71\x0a\xde\xd9\x49\x09\x75\x62\xed\x28\xd6\xaa\x3e\x72\xab\xad\x8c\x2f\x63\x9e\x6e\xc2\x81\xe4\x54\xa6\xbf\xf1\xb5\x70\xe3\xc5\x5e\x34\x9c\xce\xe1\xa8\x86\x12\x61\x47\xea\xff\xb6\x9e\xdd\xc0\xff\xdc\x6a\x7e\xe7\x74\x73\xe5\xdc\xfb\x10\x9a\x0d\xc4\xab\xf3\xe1\x41\x57\x89\xb7\x34\xd5\x2c\x24\x5c\xf7\xdd\xf8\xaa\xae\x84\x94\xe2\x30\x1f\x92\xcd\x77\x74\x13\x9a\x95\x6a\x90\xab\x0f\xfc\x10\x5b\x77\x3d\x48\x5a\x93\x24\x9e\x90\xe1\x38\xe4\xd4\xa3\x3a\x70\x6e\xba\xb1\x5e\x23\xbc\x1a\x3a\xd7\xbc\xf5\xce\xd6\x87\x77\xfb\xc5\xef\x74\x5b\x16\xf1\x60\x01\x77\x82\x8c\x22\x78\xdc\x93\x94\x2c\x25\xd0\x19\x41\x4a\x6b\xfb\x99\x6a\x17\x5e\x49\x09\xb1\x7d\x27\x1f\x7e\x84\x25\x37\x95\x10\x46\x6e\x31\x68\x3f\x92\xdf\x2b\xb3\x91\xcd\x23\x8a\xea\x2d\x95\xd3\xa1\xb9\xc3\xed\xb8\x3b\x94\x5b\x55\xbf\x4b\x1d\x03\x05\xa8\xda\xc5\x75\x38\x14\x37\x2f\x7e\xfa\x6d\x57\xc7\xf1\xda\xeb\xa8\xd1\x80\xfd\xf6\xf9\x2f\x1f\x02\x4f\xe5\xa2\x5c\x01\x17\x72\x87\x79\xcb\x96\x71\xb3\xa3\x9b\xdd\xd6\x08\x51\x72\xf6\x77\x49\x50\x74\x7d\x7c\x02\x41\x27\xd9\xb7\xf7\xd1\x1c\x59\x76\x3a\x9c\xcc\xff\x6b\xf0\x1a\xfc\x1b\x00\x00\xff\xff\x49\x1d\x2e\x96\x27\x0d\x00\x00" +var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\xf6\xb0\x90\x01\x47\x4a\xaf\x86\x13\xc0\x75\xb2\x68\x91\xb4\x09\x36\xe9\xee\x79\x2c\x8d\x2d\x22\x34\xa9\x92\x94\x5d\x21\xc8\x7f\x2f\xf4\xd6\xc8\x52\x9c\x16\x45\x0f\xab\x83\x61\x89\xf3\xf8\xe6\x9b\x07\x47\xec\x53\x6d\x1c\xac\x4d\x9e\x3a\xed\xd5\x6f\x5f\xa4\x3e\x3e\xeb\x17\x52\xb0\x35\x7a\x0f\x9f\xda\xf7\x4f\xad\x44\xa6\x76\x62\x23\x89\x49\xf5\xbf\xb5\x92\xf7\x3a\x7a\xa1\xb8\xfc\x66\x2b\xc1\xcb\xbf\xee\x1f\xd6\x77\xb7\x37\xcf\x0f\x77\xb7\xbf\xaf\x6e\x6e\xbe\xde\x3e\x3d\x79\x5e\x18\x86\xf0\x6c\x50\x59\x8c\x9c\xd0\x0a\x5c\x82\x0e\x10\xa2\xcc\x3a\x1d\xe7\x90\x1a\x7d\x10\x31\x19\x38\xea\x4c\xc6\x60\xc5\x4e\x95\x2a\x4e\x43\x64\x08\x1d\x01\x82\x4d\xd0\x50\x0c\x18\x45\x3a\x53\x0e\x50\xc5\x80\x0a\x32\x25\x4b\x08\xa5\x78\x73\xb6\xd5\x06\x10\x32\x4b\xc6\xf3\x5c\xe7\xd5\xf7\x00\x00\xb6\x99\x94\xab\x78\x2f\xd4\x63\xb6\x91\x22\xba\xa3\x7c\x51\x13\x14\xdc\x51\x7e\x2f\xac\xbb\x55\xce\xe4\x73\x08\x43\xf8\x4e\x62\x97\xb8\x05\xfc\x74\x79\x79\xd9\x2a\xff\x61\xc9\xfc\x53\xdd\x19\xc0\xab\x57\x5a\x48\x0d\xa5\x68\xc8\xaf\x43\x7f\xac\x23\x5f\x00\x66\x2e\xf1\x7f\xd6\xc6\xe8\xe3\x37\x94\x19\xcd\xe0\xf3\xaa\x8a\x67\xd6\xe8\x16\x8f\x24\x57\x53\x51\x9f\xc2\x15\xd4\xff\xfc\x14\xf3\xc2\xd2\xc0\xf4\x8c\xe9\x16\xac\x7c\x5c\xb3\x55\x65\x2e\x83\x17\xca\x6d\x80\x71\xec\xa7\x1d\x0f\xa7\xbc\x06\xed\xe9\x1c\x12\xb4\xc9\x4a\xee\xb4\x11\x2e\xd9\x8f\x0a\x33\x89\x39\x1c\x6b\xfa\x46\x24\xab\xa3\x2e\xac\xe2\x69\x5f\x7a\xf1\x4d\xc2\x64\x19\x3c\x83\x92\xcb\xbe\x03\x92\x0b\xd6\x18\x01\x78\xe6\x0e\x98\x49\xb7\xc6\x14\x37\x42\x0a\x97\xc3\xd5\x80\xd8\xa8\x39\x12\x64\x03\xeb\xb4\xc1\x1d\xb1\x38\x03\x61\x6d\x46\xcb\xb2\x58\x58\x4b\x06\xdf\x85\x4b\x62\x83\x47\xdc\xc8\xa2\x76\xda\xae\x0e\xbe\x15\x3e\xaf\xfd\xb0\x36\x17\x6e\x9b\x93\xf2\x60\xc6\x01\xca\xae\xa1\x7f\x43\x85\x3b\x32\xb0\xbc\x60\x6d\x1e\x54\x1d\x79\x7f\x22\xe8\x97\xc1\x2d\x86\x31\x4e\x16\x51\x8d\x27\xb0\x78\x20\x7f\x79\x71\xea\x79\x0e\x4e\x2f\xb8\xef\x53\xaf\x4f\x95\x95\x47\x74\xc9\x20\x14\xd7\x93\xfa\x5f\x28\x3f\x83\xf4\xda\x67\x66\x8b\xe7\xe3\xb1\x31\xd5\xb1\x40\x7f\xd1\x32\x9e\x4c\xd6\x73\x27\xe1\x57\x3c\xaf\xe2\xd8\x90\xb5\x8b\x01\x19\x58\x7d\x9e\x33\xf2\x16\x13\x54\xf6\x60\xf4\xbb\x8e\xe5\x95\xe1\x5e\x5e\xf4\xa0\xce\x81\x9d\x9d\xa4\xba\x87\xb9\xc7\xc3\xdc\x3b\x4f\xc2\x1a\x53\xb8\x62\x90\xc6\x72\x5c\xa7\xf5\xf3\x94\xd3\x6b\xff\x03\x70\x66\xa3\x0c\x30\x77\xe5\x78\xb1\x89\xcf\x01\xce\x01\xdd\x68\x6d\xd7\x36\x7e\x55\x5b\x5d\x4d\x93\xa9\xca\x2e\x87\xe2\x0f\x5d\xd7\xb2\x4f\xc8\xba\x28\x64\x6d\xe0\x6a\x78\x49\xb5\xf9\xe4\xc1\x6d\xca\x9b\x74\x39\x06\x9e\x5b\xbc\xf6\x8b\xbd\xe5\xbd\x5c\xd4\x82\x13\x93\x66\x44\xb2\x68\xa3\xe6\x66\x65\xa8\x58\x86\xce\xb4\x20\x53\x6c\xd6\x9c\xa1\x6a\xbf\xea\x46\x15\xbb\x52\x59\x8c\x96\xcd\x58\x3b\x85\x21\x3c\x1c\xc8\x18\x11\x13\xb8\x84\x20\xa6\x6d\x31\xd2\x7b\x8b\xa3\xa1\x88\xc4\x81\x4c\x30\x31\xda\x59\xed\x65\xaa\x69\x81\xb0\xba\x6a\xbb\x1b\xe8\x6b\x6d\x87\x3b\xaf\x57\x3e\x45\xc7\xd6\x51\xb5\x30\xee\xd1\xbc\xd8\xe6\x5b\x5c\xc5\x63\x01\x6d\x4b\x4f\x30\x75\x97\xd9\x6e\x78\x4d\x35\xca\xd8\x6c\x78\xe5\x7d\xd1\xc0\x7d\x1b\xcc\x86\x33\xb7\xd2\xbb\x1c\xb1\x19\xc1\x52\x37\x0e\x9f\xa7\xb7\x18\x22\x93\xac\x8e\xce\xca\x30\x84\x34\x73\xa0\xb4\xd9\xa3\xec\xf8\x15\xaa\x58\xb1\x8b\xd5\xb4\xa0\x3e\x53\xe2\xcf\x8c\x20\x45\x97\x04\xa7\x93\xa7\xb1\xff\x9f\x91\x39\xb9\x9a\xfc\x4b\xe6\x86\x28\x27\x29\xab\x28\xfe\xf2\x1e\x71\xc5\xef\x9b\xf7\xe6\xfd\x1d\x00\x00\xff\xff\x09\x65\x11\xc6\x4b\x0d\x00\x00" func lockedtokensAdminCustody_create_account_with_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3730,11 +3730,11 @@ func lockedtokensAdminCustody_create_account_with_lease_accountCdc() (*asset, er } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_account_with_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x39, 0xb4, 0x47, 0x1b, 0xab, 0xd0, 0x47, 0xde, 0xba, 0xa3, 0xaf, 0x77, 0x36, 0x0, 0xb5, 0x18, 0x4d, 0xa0, 0x72, 0x13, 0x98, 0xbc, 0x7d, 0x59, 0x24, 0x80, 0x45, 0x26, 0xca, 0x13, 0xcb, 0x41}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0x6e, 0x10, 0xe0, 0x22, 0x5e, 0x7b, 0x6, 0x25, 0xd8, 0x4d, 0x67, 0x7a, 0x65, 0x13, 0x95, 0x10, 0x3f, 0x27, 0x14, 0x25, 0x91, 0xa1, 0xb1, 0x7a, 0x1, 0xd7, 0xb7, 0x5e, 0x77, 0xef, 0xb3}} return a, nil } -var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x56\xc1\x6e\xe3\x36\x10\xbd\xeb\x2b\x06\x39\x2c\x64\xc0\xb1\xd2\xab\xe0\x64\x61\x38\x59\xb4\x48\xda\x04\x9b\xa0\x7b\x1e\x4b\x63\x8b\x30\x4d\xaa\x24\x65\x57\x08\xf2\xef\x05\x49\x59\x16\x65\xa9\x49\xd1\x1c\xd6\x07\x03\x22\xdf\x0c\x67\xde\xbc\x21\x87\xed\x4a\xa9\x0c\x2c\x55\x5d\x1a\x19\x35\x5f\xdf\xb8\x3c\xbc\xc8\x2d\x09\x58\x2b\xb9\x83\x8b\xf6\xfb\xa2\x45\x54\x62\xc3\x56\x9c\x02\x54\x77\xad\x45\x3e\xc8\x6c\x4b\xb9\x5b\xd3\x1e\x78\xf5\xf7\xc3\xe3\xf2\xfe\xee\xf6\xe5\xf1\xfe\xee\x8f\xc5\xed\xed\xf7\xbb\xe7\xe7\x28\x4a\x92\x04\x5e\x14\x0a\x8d\x99\x61\x52\x80\x29\xd0\x00\x42\x56\x69\x23\xf3\x1a\x4a\x25\xf7\x2c\x27\x05\x07\x59\xf1\x1c\x34\xdb\x08\x67\x62\x24\x64\x8a\xd0\x10\x20\xe8\x02\x15\xe5\x80\x59\x26\x2b\x61\x60\x2d\x15\x20\x54\xda\x1a\x15\x12\x90\x2b\xc2\xbc\x76\x56\x05\x6a\x30\x05\x31\x05\x95\xe0\x2e\xc0\xd6\xca\x7b\xcb\x2d\xcc\xc7\x54\xd0\x39\xc8\xd9\x4b\x17\x85\xf5\x03\xa6\x13\x38\x72\x2d\xa3\xa8\xb3\x12\x47\x00\x00\xeb\x8a\xf3\x45\xbe\x63\xe2\xa9\x5a\x71\x96\xdd\x53\x9d\x36\xac\xcf\xee\xa9\x7e\x60\xda\xdc\x09\xa3\xea\x29\x24\x09\xfc\x20\xb6\x29\x4c\x0a\xbf\x5c\x5d\x5d\x45\x13\x80\xd7\xc8\xb9\x28\x15\x95\xa8\x28\x6e\x38\x79\x6a\x28\x49\x61\x51\x99\x62\xe1\x43\x9b\xba\x84\x9b\x8f\x60\x67\x72\x74\x63\x7f\x9c\x4c\x43\x57\xb3\x0b\xd7\x5d\x6c\x5c\x62\x6d\x1d\xf7\x4e\x9a\x9c\x1c\x04\xc6\xb3\x2d\xd5\x7a\x86\x79\x1e\x97\xa7\xe4\xce\x13\x9e\xb5\xbb\x53\xcb\x60\xb1\xe0\x1b\xa9\x98\x29\x76\x83\xe0\x00\x31\x85\x43\xc3\xc9\x00\xd2\x6f\x4d\xc2\xec\xf6\x58\x71\xb3\xc4\x12\x57\x8c\x33\x53\xc3\x75\x18\x72\x8b\xb5\xbf\x19\x67\x62\x3b\xc7\xca\x14\x71\x20\xe2\xd9\x0f\x66\x8a\x5c\xe1\x01\x57\x9c\x26\xf0\xa5\xed\x83\xd9\x9f\xd6\xfb\x4d\x9c\x94\x8a\xed\xd1\x50\xb2\x3e\xee\xb8\x8d\x29\x18\x54\x1b\x32\x29\x24\xda\x48\x85\x9b\x3e\x60\x12\x1c\xff\xf5\x2b\x94\x28\x58\x16\x5f\x2c\x9d\xb8\x85\x34\x60\x23\x72\x7d\x08\xbe\xc5\x9c\x19\x64\x6d\x3e\x17\xbd\x74\xf9\xa9\xcd\x7e\x47\x81\x1b\x52\x30\xbf\x0c\x9a\x6f\xe6\x95\xfd\x70\x06\x8c\x1d\x55\x69\x9f\xb1\xd1\x62\x6b\xdc\x53\x3c\xbf\x3c\x3f\x71\x0a\x46\xa6\xe1\x99\xe7\xa7\x3d\x7b\x42\x9e\xd0\x14\xbd\x14\x4c\x07\xf5\xc9\x85\x7b\x27\xa6\x9b\x38\xf0\x6a\x7f\xef\x58\x3c\xf9\xba\xdb\x2c\xa6\x67\xb6\xc7\xe2\x7f\x9c\x89\xd6\xc5\xe4\xdf\xe4\xe0\x08\x82\x5d\x53\xde\x71\x2d\x38\xdc\xaf\x92\xe7\xa3\x22\x78\x39\x21\x62\x5f\xc7\x45\x9e\x2b\xd2\x3a\xed\xd5\x1a\xfd\xf2\x34\x28\x4e\x3a\x52\xaa\x4e\x18\x9d\x4b\xc8\xeb\x25\x20\x69\x7e\xd9\x09\x71\x0a\xc1\xde\x99\x84\x3a\xb1\x76\x18\x3b\xb1\x3e\x72\xaa\x53\xc6\x97\x31\x4f\x37\xf1\x40\x71\x1a\xd3\xdf\xc4\x5a\xfa\xcb\xc5\x1d\x34\x5c\xce\xe1\xa8\x86\x0a\xe1\x2e\xab\x9f\x56\xcf\xfe\x2a\xfd\x5c\x35\x7f\xf0\x76\xf3\x72\xee\x3d\x31\xf6\x59\x0d\x74\x6e\xc5\x3d\x70\xd3\x35\xec\x2d\xad\x9c\xa5\x82\xeb\xbe\x9f\x90\xd6\x95\x54\x4a\x1e\xe6\x43\xbc\x85\x8e\x6e\x62\x3b\xa2\x0c\x26\x1b\x02\xff\x53\xba\xfe\x78\x50\xb4\x26\x45\x22\x23\x9b\xe4\x90\xd3\xa0\x91\x07\xf6\x6d\x3b\x1e\x5f\xe8\x40\x44\xef\x75\xef\x71\x80\xe9\xc3\xbb\x0d\x13\xb6\xba\xd3\x45\x3a\xa8\xe0\x4e\x90\x49\x02\x8f\x7b\x52\x8a\xe5\xe4\xe6\xa0\x9c\xd6\xee\x9d\x3a\x0d\x90\x8a\x32\x62\xfb\x4e\x3d\xc2\x08\x2b\x61\xa5\x10\x27\x7e\x32\x38\xbd\x92\xdf\x1b\xb3\x90\xdb\xee\xb9\xcd\xd4\x27\xe8\xd0\x9e\xe1\x67\xc6\x1d\xaa\xad\x3e\xae\xe5\x3e\x03\x0d\xa8\x5b\x12\x46\x42\xf1\x17\xc6\x6b\xd8\x77\xc7\x38\xde\x7a\x2d\x35\x1a\x70\xd8\x3f\xff\xe7\x25\x08\x58\x2e\xab\x15\x08\xa9\x76\xc8\x4f\xd9\x32\x61\x67\x5e\x3b\x12\x5a\x22\x2a\xc1\xfe\xaa\x08\xca\xae\x8f\x4f\x48\xd0\x53\xf6\xed\x63\x69\x8e\x4c\x3b\x9d\x9c\xec\xff\x5b\xf4\x16\xfd\x13\x00\x00\xff\xff\x4b\x6b\x23\x4c\x77\x0c\x00\x00" +var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x7b\x58\xc8\x80\x22\xa5\x57\xc3\x09\xe0\x3a\x59\xb4\x48\xda\x04\x9b\x60\xf7\x3c\x16\xc7\x16\x61\x5a\x54\x49\xca\xae\xb0\xc8\xbb\x17\xa4\x68\x59\x94\xa5\xec\xb6\x28\x7a\xa8\x0f\x41\x44\xce\xcf\x37\xdf\xfc\x70\xf8\xbe\x92\xca\xc0\x4a\x35\x95\x91\x91\xff\xfa\x24\xe4\xf1\x55\xee\xa8\x84\x8d\x92\x7b\xf8\xd0\x7d\x7f\xe8\x24\xea\x72\xcb\xd7\x82\x02\xa9\xfe\x59\x27\xf9\x28\xf3\x1d\x31\x77\xa6\x5b\xc1\xeb\x3f\x1f\x9f\x56\x0f\xf7\x77\xaf\x4f\x0f\xf7\xbf\x2f\xef\xee\x3e\xdf\xbf\xbc\x44\x51\x96\x65\xf0\xaa\xb0\xd4\x98\x1b\x2e\x4b\x30\x05\x1a\x40\xc8\x6b\x6d\x24\x6b\xa0\x52\xf2\xc0\x19\x29\x38\xca\x5a\x30\xd0\x7c\x5b\x3a\x15\x23\x21\x57\x84\x86\x00\x41\x17\xa8\x88\x01\xe6\xb9\xac\x4b\x03\x1b\xa9\x00\xa1\xd6\x56\xa9\x90\x80\x42\x11\xb2\xc6\x69\x15\xa8\xc1\x14\xc4\x15\xd4\xa5\x70\x00\x3b\xad\xd6\x1a\xb3\x62\x2d\xa6\x82\x2e\x85\x9c\xbe\x74\x28\xac\x1d\x30\x3d\xe0\x28\xb4\x8c\xa2\xde\x49\x1c\x01\x00\x6c\x6a\x21\x96\x6c\xcf\xcb\xe7\x7a\x2d\x78\xfe\x40\xcd\xdc\xb3\x9e\x3e\x50\xf3\xc8\xb5\xb9\x2f\x8d\x6a\x12\xc8\x32\xf8\x4a\x7c\x5b\x98\x39\xfc\x74\x7d\x7d\x1d\xcd\x00\xbe\x45\xce\x44\xa5\xa8\x42\x45\xb1\xe7\xe4\xd9\x53\x32\x07\xac\x4d\x11\xff\x2c\x95\x92\xc7\x2f\x28\x6a\x9a\xc1\xc7\x65\x8b\x34\x71\xf1\xfb\x0f\x2f\xf8\x62\xa4\xc2\x2d\x25\xb0\xc2\x0a\xd7\x5c\x70\xc3\x49\x9f\x55\x66\x27\x77\xf6\x27\xc8\x78\x5a\xfd\x2d\xdc\x80\xff\x2f\xae\xb0\xb1\xce\x07\x68\x66\x67\xe5\x40\x31\xdd\x51\xa3\x53\x64\x2c\xae\xce\x04\x5c\x92\x92\x76\xb7\x89\x65\xb9\x58\x8a\xad\x54\xdc\x14\xfb\x51\xe1\x40\x22\x81\xa3\xe7\x6d\x44\xb2\xbd\x9a\x85\x91\x1d\xb0\x16\xa6\x63\xa1\x81\x9b\x01\xe4\xbc\x47\x50\xaa\x5b\xda\x3a\x03\xf6\x97\x72\xad\x6b\x5a\x38\x5a\x83\xf2\x4f\xbf\x72\x53\x30\x85\x47\x5c\x0b\x9b\x8e\xae\x83\xd2\x2f\xd6\xe7\x6d\x9c\x79\x73\xd9\xe6\x74\xe3\x2e\x06\x00\xc5\xb9\x79\x7e\xc3\x12\xb7\xa4\x60\x71\x15\xb4\x54\xda\xd6\xeb\xe3\x85\x60\xec\x82\x9b\x0f\x63\x9c\x4c\x8f\xc7\x93\x6a\x3c\x50\xbc\xb8\xba\xf4\x9c\x80\x91\xf3\xd0\xf7\xa5\x57\x5f\x5b\xcf\x68\x8a\x41\x28\xa6\x27\xf5\x9f\x50\xfe\x1d\xa4\xb7\x71\x60\xd6\xfe\x7e\x3c\xb6\x40\x75\x2c\xd0\x5f\xa4\x60\x93\xc9\x7a\x3d\x4b\x84\x20\x5a\xd2\x97\x8c\x29\xd2\x7a\x3e\x60\x06\xdb\xe3\x24\xd0\xe8\xb3\x3a\x9f\xe0\x38\x1a\x01\xda\x9b\x0a\x61\xe6\x03\xeb\x8b\xab\x5e\x30\x43\xc7\x83\x5a\xe8\x05\xd5\x23\x2a\x19\x73\x3e\x60\x69\x85\x15\xdc\x04\x88\xc6\x8a\xc0\xe7\xfd\xe3\x94\xd3\xdb\xf8\x07\xe0\xcc\x46\x09\x08\xdc\xb9\xf9\xa3\x8b\x38\x04\x98\x00\x9a\xd1\xe2\xf7\x36\x7e\x2d\x37\xb2\x1d\x36\x53\xa5\xef\xe6\xd1\xff\xba\xf0\x45\x9f\x90\x95\xad\x74\xa9\xe0\x66\xf8\x3e\x74\xf9\x0c\x83\x5b\xbb\xd7\x6b\x31\x06\x3e\xb4\x78\x1b\xdb\x25\xe2\xbd\x5c\x78\xc1\x89\x51\x34\x22\x69\x5b\xeb\xf4\xa8\x05\xa8\x82\x0c\xfd\x9d\xb6\x3c\x2d\x0c\x43\xd5\x7e\xd5\x4d\xf7\xb3\x2b\x95\xf9\x68\xd9\x8c\xb5\x53\x96\xc1\xd3\x81\x94\xe2\x8c\xdc\x32\xc2\x68\x63\x67\x7e\x6f\x8b\x53\x94\x13\x3f\x90\x4a\x27\x66\x7f\x50\x7b\x75\x79\x6a\x81\xac\x7d\x8b\xcf\x4f\xd4\x67\x6f\x27\x74\xee\xf7\xaf\x92\x8e\x9d\xa3\x76\x7b\xdb\xa3\xda\xe9\xd3\x19\x6b\xe3\xd1\x80\xba\xa3\x27\x9d\x7a\xec\xf4\x79\x88\x4d\x35\xca\xd8\x6c\xf8\x16\xf6\xc5\x09\xee\xdb\x60\x36\x7c\xe7\xd9\x7a\x97\xa3\x60\x46\x8c\x0c\xef\x21\xfc\x30\xbd\x76\x88\x4c\xb2\x3a\x3a\x2b\xb3\x0c\xaa\xda\x40\x29\xd5\x1e\xc5\x99\x5f\x5e\xda\x7d\xd7\xae\x83\x96\xfa\xba\xe4\x7f\xd4\x04\x15\x9a\x22\xbd\x9c\x3c\x27\xfb\xff\x1a\x99\x93\xbb\xcb\x3f\x64\x6e\x88\x72\x92\xb2\x96\xe2\x4f\xef\x11\x67\xff\xbe\x45\x6f\xd1\x5f\x01\x00\x00\xff\xff\xde\x03\xdd\xf9\xd8\x0c\x00\x00" func lockedtokensAdminCustody_create_only_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3750,11 +3750,11 @@ func lockedtokensAdminCustody_create_only_lease_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf1, 0xff, 0xc4, 0xdd, 0x5e, 0xf5, 0xee, 0x61, 0x9e, 0x13, 0x8, 0xce, 0x17, 0x29, 0x19, 0x5, 0x89, 0x24, 0x24, 0xaa, 0xb, 0x4c, 0x4c, 0x9e, 0x78, 0xd6, 0xf4, 0x65, 0x76, 0xea, 0xbc, 0xc9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0x6b, 0xe0, 0x60, 0x7, 0x69, 0x6c, 0x2c, 0x96, 0x6e, 0xcd, 0x35, 0x1a, 0x50, 0x50, 0x4d, 0x4b, 0x20, 0x10, 0x65, 0x13, 0xa4, 0xd, 0xc, 0xd0, 0x5f, 0x5a, 0xb6, 0x77, 0x48, 0x69, 0x5}} return a, nil } -var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x39\x2c\x64\xc0\xb1\xdc\x63\x0d\x67\x17\x86\x93\x45\x8b\xa4\x4d\xb0\x49\xbb\xe7\xb1\x34\xb6\x08\xd3\xa4\x4a\x52\x76\x85\x45\xde\xbd\x20\x29\xcb\xa2\x2c\x35\xce\x62\x0f\xab\x93\x45\x7e\xf3\xf7\xcd\x8f\xc6\x6c\x57\x48\x65\x60\xa9\xaa\xc2\xc8\xa8\x7e\xfb\xcc\xe5\xe1\x45\x6e\x49\xc0\x5a\xc9\x1d\x5c\x35\xef\x57\x0d\xa2\x14\x1b\xb6\xe2\x14\xa0\xda\x67\x0d\xf2\x41\xa6\x5b\xca\xdc\x99\xf6\xc0\xe9\xbf\x0f\x8f\xcb\xfb\xbb\xdb\x97\xc7\xfb\xbb\x3f\x17\xb7\xb7\x5f\xee\x9e\x9f\xa3\x28\x49\x12\x78\x51\x28\x34\xa6\x86\x49\x01\x26\x47\x03\x08\x69\xa9\x8d\xcc\x2a\x28\x94\xdc\xb3\x8c\x14\x1c\x64\xc9\x33\xd0\x6c\x23\x9c\x88\x91\x90\x2a\x42\x43\x80\xa0\x73\x54\x94\x01\xa6\xa9\x2c\x85\x81\xb5\x54\x80\x50\x6a\x2b\x94\x4b\x40\xae\x08\xb3\xca\x49\xe5\xa8\xc1\xe4\xc4\x14\x94\x82\x3b\x07\x1b\x29\xaf\x2d\xb3\x30\xef\x53\x4e\xe7\x20\x27\x2f\x9d\x17\x56\x0f\x98\x96\xe3\xc8\xb5\x8c\xa2\xd6\x49\x1c\x01\x00\x14\xa8\x0c\x43\xbe\xc8\x76\x4c\x3c\x95\x2b\xce\xd2\x7b\xaa\x66\x35\xf1\x93\x7b\xaa\x1e\x98\x36\x77\xc2\xa8\x6a\x0c\x49\x02\x5f\x89\x6d\x72\x33\x83\x5f\xa6\xd3\xb6\xf8\x5f\x9a\xd4\x3b\xa4\x7f\x9d\x4e\xa3\x11\xc0\xb7\xc8\xeb\x50\x54\xa0\xa2\xb8\xe6\xf4\xa9\xa6\x74\x06\x8b\xd2\xe4\x0b\x1f\xda\xd8\x11\x56\xbf\x04\x37\xa3\xa3\x1a\xfb\x70\x32\x35\xdd\xf5\x2d\xdc\xb4\xb1\x71\x81\x95\x55\xdc\xb1\x34\x3a\x29\x08\x84\x27\x5b\xaa\xf4\x04\xb3\x2c\x2e\x4e\xb1\xf5\x12\x36\x69\x00\x63\x9b\x84\x7c\xc1\x37\x52\x31\x93\xef\x86\xf0\x01\x68\x0c\x87\x9a\x98\x7e\xb0\xbf\x1d\xbd\xdf\xc9\x20\x2d\x6f\xfb\x18\xc2\xff\xdf\xc5\x10\x7b\xf4\x30\x48\xc4\x1e\x4b\x6e\x96\x58\xe0\x8a\x71\x66\x2a\xb8\x09\x1d\x6f\xb0\xf6\x99\x70\x26\xb6\x73\x2c\x4d\x1e\x07\xfd\x3a\xf9\xca\x4c\x9e\x29\x3c\xe0\x8a\xd3\x08\x3e\x34\x2d\x3f\xf9\xdb\x6a\xff\x18\x27\x85\x62\x7b\x34\x94\xac\x8f\x37\xee\x62\x0c\x06\xd5\x86\xcc\x0c\x12\x6d\xa4\xc2\x4d\x17\x30\x0a\xcc\x7f\xfa\x04\x05\x0a\x96\xc6\x57\x4b\xd7\xc7\x42\x1a\xb0\x1e\xb9\x91\x03\x7e\x9a\x38\x31\x48\x9b\x78\xae\x3a\xe1\xf2\xd3\x44\xf9\x03\x05\x6e\x48\xc1\xfc\x3a\x98\x33\x13\xdf\xc4\x0f\x67\xc0\xd8\x51\x35\xeb\x32\x36\x58\x97\x1a\xf7\x14\xcf\xaf\xcf\x2d\x8e\xc1\xc8\x59\x68\xf3\xdc\xda\xb3\x27\xe4\x09\x4d\xde\x09\xc1\xb4\x50\x3f\x38\x71\x6f\xf8\xf4\x31\x0e\xb4\xda\xe7\x0d\x89\x27\x9f\x77\x1b\xc5\xf8\x4c\xf6\x98\xfc\xcb\x99\x08\x54\x5c\x58\x1c\x8e\x2e\xd8\xd5\xc9\x1e\xae\x0c\x87\xfb\x4d\xf2\x6c\xb0\x24\x5e\x4e\x88\x90\x08\x9f\xe2\x45\x96\x29\xd2\x7a\xd6\x29\x03\xf4\xc7\x61\xf8\xed\x1c\xce\x06\x32\x1a\x9d\x02\x6d\x7e\xb6\xe6\xab\xaf\xaf\x40\xeb\xfc\xba\x15\x44\xd7\x60\x87\xe7\x56\x30\x2d\x82\xc7\x6f\x19\x75\x85\xf4\x61\x48\x53\xa7\x40\x7a\x12\x5b\xeb\xf9\x5d\xac\xa5\x1f\x4c\xe7\xa5\xd1\x5b\x16\xfd\xee\xf6\x79\xdb\xe4\xd2\xcd\xe7\x9f\xb6\x41\xfc\xd7\xe3\x67\x69\x8f\xce\xb7\xd6\xee\x27\x41\xdf\xd8\x66\xe9\x99\xa3\x35\x95\x4b\xdb\x1e\x52\xc1\x4d\x57\x4f\xc8\xf1\x4a\x2a\x25\x0f\xf3\x3e\x12\x43\x45\x3d\x34\xda\xe5\xaf\x97\x8a\x50\xf2\xfb\xc9\xf0\xce\x81\xa2\x35\x29\x12\x29\x59\x0a\xfa\x2c\x04\x63\xa3\xe7\xde\xf6\xfb\x71\x91\x09\x8c\x06\xc5\xf7\x9e\x59\x71\x5c\x20\xbb\xa2\xed\xb6\x1c\x1e\x32\xae\xce\x66\xbd\x1d\xd1\xd7\x3d\x49\x02\x8f\x7b\x52\x8a\x65\xe4\x96\xd3\x8c\xd6\xee\x8b\x7a\xda\xea\x15\xa5\xc4\xf6\xad\xdc\x86\x21\x94\xc2\x96\x55\x9c\xf8\x3d\xe6\xf4\x3d\xff\x52\x8b\x85\xb6\xea\xf5\x5b\xd0\xa1\xd1\xeb\x97\xf7\x1d\xaa\xad\x3e\x9e\x65\xde\x7d\x0d\xa8\x1b\x36\x06\xcc\xfb\xf9\xf4\x2d\x6c\xe2\xa3\xed\xd7\x4e\x61\x0d\x3a\x79\xc1\x40\xba\xac\x11\xc3\x68\x8b\x72\x05\x42\xaa\x1d\xf2\x53\xb4\x4c\xd8\x3f\x1f\x76\xb7\xb6\x44\x94\x82\xfd\x53\x12\x14\x6d\x1d\x3f\x20\x40\x4f\xd9\xe7\xcb\xc2\x1c\xd8\xc5\xa2\xb0\x97\x5e\xa3\xd7\xe8\xbf\x00\x00\x00\xff\xff\x5b\x28\xe9\xee\x00\x0e\x00\x00" +var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x7b\x58\xc8\x80\x22\xb9\xc7\x1a\x4e\x00\xd7\xc9\xa2\x45\xd2\x26\xd8\xa4\xbb\xe7\xb1\x38\xb6\x88\xd0\xa2\x4a\x52\x76\x85\x45\xde\xbd\xa0\x44\xc9\xa2\x2c\x25\x9b\xa2\xe8\x61\x75\x30\x2c\x6a\x7e\xbe\xf9\xe6\x87\xc3\xf7\x85\x54\x06\xd6\xaa\x2a\x8c\x0c\xdc\xdb\x27\x21\x8f\x4f\xf2\x99\x72\xd8\x2a\xb9\x87\x0f\xdd\xfb\x87\x4e\xa2\xcc\x77\x7c\x23\xc8\x93\xea\x9f\x75\x92\x77\x32\x7d\x26\x56\x9f\xe9\x46\x70\xfe\xf7\xdd\xfd\xfa\xf6\xe6\xfa\xe9\xfe\xf6\xe6\x8f\xd5\xf5\xf5\xe7\x9b\xc7\xc7\x20\x48\x92\x04\x9e\x14\xe6\x1a\x53\xc3\x65\x0e\x26\x43\x03\x08\x69\xa9\x8d\x64\x15\x14\x4a\x1e\x38\x23\x05\x47\x59\x0a\x06\x9a\xef\xf2\x5a\xc5\x48\x48\x15\xa1\x21\x40\xd0\x19\x2a\x62\x80\x69\x2a\xcb\xdc\xc0\x56\x2a\x40\x28\xb5\x55\xca\x24\xa0\x50\x84\xac\xaa\xb5\x32\xd4\x60\x32\xe2\x0a\xca\x5c\xd4\x00\x3b\xad\xc6\x1a\xb3\x62\x0d\xa6\x8c\xce\x85\x6a\x7d\x59\xa3\xb0\x76\xc0\xf4\x80\xa3\xd0\x32\x08\x7a\x27\x61\x00\x00\x50\xa0\x32\x1c\xc5\x8a\xed\x79\xfe\x50\x6e\x04\x4f\x6f\xa9\x5a\x38\xe2\xe3\x5b\xaa\xee\xb8\x36\x37\xb9\x51\x55\x04\x49\x02\x5f\x89\xef\x32\xb3\x80\x9f\xe6\xf3\xbe\xfa\x9f\x9a\xd4\x3b\xb4\x7f\x9e\xcf\x83\x19\xc0\xb7\xa0\xb1\xa1\xa8\x40\x45\xa1\xe3\xf4\xc1\x51\xba\x00\x2c\x4d\x16\xfe\x22\x95\x92\xc7\x2f\x28\x4a\x9a\xc1\xc7\x55\x13\x69\x54\xf3\xe7\x5e\x9c\xe0\xa3\x91\x0a\x77\x14\xc1\x1a\x0b\xdc\x70\xc1\x0d\x27\x7d\x52\x99\xb5\xee\xec\x23\xc8\xb8\xb4\xb8\xaf\x70\x09\xee\x5f\x58\x60\x65\x9d\x0f\xd0\xcc\x4e\xca\x9e\x62\xfc\x4c\x95\x8e\x91\xb1\xb0\x38\xc5\x3f\x4a\x6a\xdc\x09\x44\x36\x51\xd9\x4a\xec\xa4\xe2\x26\xdb\x4f\xc9\x7b\x42\x11\x1c\x1d\x79\xe3\xc2\xcd\xd7\xd9\xfb\x41\x7a\xa9\x7b\x1b\xa3\x2f\xfe\x3a\x44\x5f\xb6\x45\xe8\x25\xe1\x80\xa5\x30\x5d\xc2\x2a\xb8\x1c\x00\x4f\x7b\xb9\x8c\x75\x93\xe1\xce\x80\x7d\x62\xae\x75\x49\xcb\xba\x02\xbc\x4e\x8f\xbf\x72\x93\x31\x85\x47\xdc\x08\x5b\x39\xdd\xb0\x88\xbf\x58\x9f\x57\x61\xe2\xcc\x25\xdb\xf6\x4b\xfd\x61\x00\x50\x9c\xe6\xc4\xef\x98\xe3\x8e\x14\x2c\x2f\xbc\xe9\x11\x37\xad\x79\x77\x26\x18\xd6\xc1\x2d\x86\x31\x4e\x56\x92\xc3\x13\x6b\x3c\x50\xb8\xbc\x38\xf7\x1c\x81\x91\x0b\xdf\xf7\xb9\x57\xd7\x06\x0f\x68\xb2\x41\x28\xa6\x27\xf5\xbf\x50\xfe\x06\xd2\xab\xd0\x33\x6b\x9f\xef\x8f\xcd\x53\x1d\x0b\xf4\x57\x29\xd8\x64\xb2\x9e\x4e\x12\x3e\x88\x86\xf4\x15\x63\x8a\xb4\x5e\x0c\x98\xc1\xe6\x38\xf2\x34\xfa\xac\x2e\x26\x38\x0e\x46\x80\xf6\x06\x98\x9f\x79\xcf\xfa\xf2\xa2\x17\xcc\xd0\xf1\xa0\x16\x7a\x41\xf5\x88\x8a\xc6\x9c\x0f\x58\x5a\x63\x01\x97\x1e\xa2\xb1\x22\x70\x79\xff\x38\xe5\xf4\x2a\xfc\x0e\x38\xb3\x51\x02\x3c\x77\xf5\x0c\xd2\x59\xe8\x03\x8c\x00\xcd\x68\xf1\x3b\x1b\xbf\xe5\x5b\xd9\x0c\x9b\xa9\xd2\xaf\x27\xe6\x0f\x5d\xf8\xa2\x4f\xc8\xda\x56\xba\x54\x70\x39\xbc\xca\xba\x7c\xfa\xc1\x6d\xea\x8b\x76\x39\x06\xde\xb7\x78\x15\xda\x7d\xe9\xb5\x5c\x38\xc1\x89\x51\x34\x22\x69\x5b\xab\xbd\x7f\x3d\x54\x5e\x86\xde\xd3\x96\xed\x6e\x34\x54\xed\x57\xdd\x74\x3f\xd7\xa5\xb2\x18\x2d\x9b\xb1\x76\x4a\x12\xb8\x3f\x90\x52\x9c\x51\xbd\x77\x31\xda\xda\x99\xdf\x5b\x58\x15\xa5\xc4\x0f\xa4\xe2\x89\xd9\xef\xd5\x5e\x99\xb7\x2d\x90\x34\xf7\xf1\xe9\x8a\xfa\xec\xec\xf8\xce\xdd\xaa\x99\xd3\xb1\x73\xd4\x2c\xaa\x7b\x54\xcf\xba\x3d\x63\x4d\x3c\x1a\x50\x77\xf4\xc4\x53\x97\x9d\x3e\x0d\xb1\xa9\x46\x19\x9b\x0d\xdf\xfc\xbe\x68\xe1\xbe\x0c\x66\xc3\x1b\xd7\xd6\xab\x1c\x79\x33\x62\x64\x78\x0f\xe1\xfb\xe9\xb5\x43\x64\x92\xd5\xd1\x59\x99\x24\x50\x94\x06\x72\xa9\xf6\x28\x4e\xfc\xf2\xdc\xae\xf6\x76\x73\xb5\xd4\x97\x39\xff\xab\x24\x28\xd0\x64\xf1\xf9\xe4\x69\xed\xff\x67\x64\x4e\xee\x2e\xff\x92\xb9\x21\xca\x49\xca\x1a\x8a\x3f\xbd\x46\x9c\xfd\x7d\x09\x5e\x82\x7f\x02\x00\x00\xff\xff\x47\x90\x12\x31\xc3\x0d\x00\x00" func lockedtokensAdminCustody_create_only_shared_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3770,11 +3770,11 @@ func lockedtokensAdminCustody_create_only_shared_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_shared_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x89, 0xba, 0x9f, 0x8c, 0x43, 0xd, 0xdc, 0xd8, 0x19, 0x54, 0x3b, 0x44, 0x3f, 0xe4, 0x97, 0xaf, 0x92, 0xbe, 0x3, 0x35, 0x11, 0xe3, 0x8, 0xc4, 0x3c, 0x8c, 0x41, 0xbc, 0xff, 0xc0, 0xf9, 0x34}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0x45, 0x4b, 0xda, 0x2, 0x66, 0xa4, 0x14, 0xaa, 0x12, 0x66, 0x13, 0x9f, 0x91, 0xf1, 0xed, 0x47, 0x16, 0xcf, 0x83, 0x72, 0x11, 0x42, 0xdd, 0x72, 0x1, 0x5f, 0x68, 0xeb, 0x8b, 0x94, 0x30}} return a, nil } -var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\xcd\x6e\xdb\x38\x10\xbe\xeb\x29\x06\x39\x14\x32\xe0\x58\xee\x71\x0d\x67\x0b\xc3\x49\xb1\x8b\x64\x37\x41\x93\xdd\x9e\xc7\xd2\xd8\x22\x2c\x93\x5a\x92\xb2\xd7\x28\xf2\xee\x05\x45\x59\x12\x25\xaa\x8e\x8b\x1e\xa2\x9b\xc8\x6f\xfe\xbe\xf9\x21\xc9\x76\xb9\x90\x1a\x96\xf2\x98\x6b\x11\x54\x7f\x9f\x33\x71\x78\x11\x5b\xe2\xb0\x96\x62\x07\x57\xf5\xff\x55\x8d\x28\xf8\x86\xad\x32\x72\x50\xed\xb5\x1a\xf9\x20\xe2\x2d\x25\xe5\x9a\xb2\xc0\xe9\xff\x0f\x8f\xcb\xfb\xbb\xdb\x97\xc7\xfb\xbb\xbf\x17\xb7\xb7\x5f\xee\x9e\x9f\x83\x20\x8a\x22\x78\x91\xc8\x15\xc6\x9a\x09\x0e\x3a\x45\x0d\x08\x71\xa1\xb4\x48\x8e\x90\x4b\xb1\x67\x09\x49\x38\x88\x22\x4b\x40\xb1\x0d\x2f\x45\xb4\x80\x58\x12\x6a\x02\x04\x95\xa2\xa4\x04\x30\x8e\x45\xc1\x35\x20\x4f\x00\x39\x14\x3c\x2b\x5d\x28\xe1\xa7\xbd\xb5\x90\x80\x50\x28\x92\x41\xa0\x1b\xab\x61\x00\x00\x90\xa3\xd4\x0c\xb3\x45\xb2\x63\xfc\xa9\x58\x65\x2c\xbe\xa7\xe3\xac\xe2\x68\x72\x4f\xc7\x07\xa6\xf4\x1d\xd7\xf2\x38\x86\x28\x82\xaf\xc4\x36\xa9\x9e\xc1\xc7\xe9\xb4\x2d\xfe\x8f\x22\x79\x81\xf4\x6f\x95\xf4\xba\xc8\x2e\x15\xfd\x38\x9d\x4e\x83\x11\x7c\x0b\xac\x79\x49\x39\x4a\x0a\x2b\xe6\x9e\x2a\xe2\x66\xb0\x28\x74\xba\xb0\xf1\xd7\x60\xf3\x65\xa4\x2b\xea\xaa\x5d\xb8\x69\x63\xc3\x1c\x8f\x46\xbc\xa3\x6f\xe4\xc8\x1b\x26\x2f\x93\xae\xc5\x1d\xd3\x93\x2d\x1d\xd5\x04\x93\x24\xcc\x9b\xf8\xbd\xf9\x98\xd4\x80\x31\xa4\xa8\xd2\x45\xb6\x11\x92\xe9\x74\x37\x84\x77\x40\x63\x38\x54\xe4\xf9\xc1\x76\x77\x74\xb9\x93\x4e\xea\xce\xfb\xe8\xc2\x7f\xec\xa2\x8b\x3d\x79\x58\xbb\xd8\x4a\x81\xd7\xc1\x5e\x61\xfd\xc0\xbb\x3e\x76\xc0\xb5\x3e\xb0\xe7\x97\x29\x8f\x3d\x16\x99\x5e\x62\x8e\x2b\x96\x31\x7d\x84\x1b\x97\xd0\x1a\x6b\xbe\x49\xc6\xf8\x76\x8e\x85\x4e\x43\x67\xa2\x4c\xbe\x32\x9d\x26\x12\x0f\xb8\xca\x68\x04\x1f\xea\xa1\x34\xf9\xd7\x68\xff\x3d\x74\xb4\x98\x2f\xca\x25\xdb\xa3\xa6\x68\x7d\x82\x96\xc8\x71\x0f\xa8\x51\x6e\x48\xcf\x20\x52\x5a\x48\xdc\x74\x05\x1c\xfc\xc8\xf9\xfb\xf4\x09\x72\xe4\x2c\x0e\xaf\x96\xe5\x5c\xe2\x42\x83\xf1\xbf\x1c\xa1\x60\xa7\x63\xa9\x03\xe2\x3a\xfa\xab\x0e\x39\x59\x33\x21\xff\x42\x8e\x1b\x92\x30\xbf\x76\xe6\xe6\xc4\x8e\xb8\x87\x1e\x30\x2c\x89\x9d\x75\xf9\x1d\xec\x2e\x85\x7b\x0a\xe7\xd7\x7d\x8b\x63\xd0\x62\xe6\xda\xec\x5b\x7b\xb6\xec\x3c\xa1\x4e\x3b\x21\xe8\x16\xea\x17\xa7\xf9\x8c\x4f\x9e\xb4\x9f\x91\x78\xb2\x45\x61\xa2\x18\xae\x84\xb7\x33\xf1\x33\xc5\x51\xd2\x05\xbb\x2a\xd9\xc3\x95\x51\xe2\xfe\x10\x59\x32\x58\x12\x2f\x0d\xc2\x25\xc2\xa6\x78\x91\x24\x92\x94\x9a\x75\xca\x00\xed\xb2\x1b\x7e\x3b\x87\xb3\x81\x8c\x06\x4d\xa0\xde\xb9\x53\xd6\x97\xa3\x75\x7e\xdd\x0a\xa2\x6b\xb0\xc3\x73\x2b\x98\x16\xc1\xe3\x73\x46\xcb\x42\xfa\x30\xa4\xa9\x53\x20\x9e\xc4\x56\x7a\xfe\xe4\x6b\x61\xc7\x58\xbf\x34\xbc\x65\xe1\x77\xd7\xe7\x6d\x9d\xcb\xf2\x94\x79\xb7\x0d\x62\xcf\xc0\xf7\xd2\x1e\x9d\x1b\x83\xb9\xe9\x39\x7d\xe3\x1f\xa3\x15\x93\x4b\xd3\x1d\x42\xc2\x4d\x57\x8d\x4b\xf1\x4a\x48\x29\x0e\x73\x1f\x87\xae\x22\x0f\x8b\xe6\x2e\xeb\x65\xc2\x95\xfc\x79\x2e\xac\x73\x20\x69\x4d\x92\x78\x4c\x86\x01\x9f\x05\x87\x08\xcf\xbe\x69\xf7\xd3\x6d\xcc\x31\xea\xd4\xde\x25\xa3\xe2\x74\xa5\xee\x8a\xb6\xbb\x72\x78\xc6\x94\x65\x36\xf3\x36\x84\xaf\x79\xa2\x08\x1e\xf7\x24\x25\x4b\x08\x74\x4a\x90\xd0\xba\x3c\x50\x9b\x47\x8a\xa4\x98\xd8\xbe\x95\x5b\x37\x84\x82\x9b\xaa\x0a\x23\x7b\xdd\x69\xce\xf6\x2f\x95\x98\x6b\xab\x7a\x4d\x70\x3a\xd4\x7a\xed\x5b\x64\x87\x72\xab\x4e\x6b\x89\x75\x5f\x01\xaa\xe6\x81\xe1\x37\x6f\xc7\xd3\x37\xb7\x87\x4f\xb6\x5f\x3b\x85\x35\xe8\xe4\x1b\xe6\xd1\xdb\xfa\xd0\x8d\x36\x2f\x56\xc0\x85\xdc\x61\xd6\x44\xcb\xb8\x79\x4b\x99\x47\x84\x21\xa2\xe0\xec\xbf\x82\x20\x6f\xeb\xf8\x05\x01\x5a\xca\x3e\xbf\x2d\xcc\x73\xf7\x32\xdb\x4b\xaf\xc1\x6b\xf0\x3d\x00\x00\xff\xff\x52\x8f\x22\xea\xcf\x0e\x00\x00" +var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\xf6\xb0\x90\x01\x47\xf2\x1e\x6b\x38\x01\x5c\x27\x8b\x16\x49\x9b\x60\x93\xee\x9e\xc7\xd2\xd8\x22\x42\x93\x2a\x49\xd9\x35\x82\xfc\xf7\x82\xfa\xb2\x28\x51\x4e\x52\x14\x3d\x54\x87\x20\x12\xdf\xcc\x3c\x3e\x0e\x1f\x69\xb6\xcb\xa5\x32\xb0\x52\xc7\xdc\xc8\xa0\x7e\xfb\xca\xe5\xe1\x49\x3e\x93\x80\x8d\x92\x3b\xf8\xd4\xbe\x7f\x6a\x11\x85\xd8\xb2\x35\x27\x07\xd5\xfd\xd6\x22\xef\x64\xf2\x4c\x69\xf9\x4d\x57\xc0\xd9\x5f\x77\xf7\xab\xdb\x9b\xeb\xa7\xfb\xdb\x9b\xdf\x97\xd7\xd7\xdf\x6e\x1e\x1f\x83\x20\x8e\x63\x78\x52\x28\x34\x26\x86\x49\x01\x26\x43\x03\x08\x49\xa1\x8d\x4c\x8f\x90\x2b\xb9\x67\x29\x29\x38\xc8\x82\xa7\xa0\xd9\x56\x94\x21\x46\x42\xa2\x08\x0d\x01\x82\xce\x50\x51\x0a\x98\x24\xb2\x10\x06\x50\xa4\x80\x02\x0a\xc1\x4b\x0a\x25\xbc\x19\xdb\x48\x05\x08\x85\x26\x15\x04\xe6\x54\x35\x0c\x00\x00\x72\x54\x86\x21\x5f\xa6\x3b\x26\x1e\x8a\x35\x67\xc9\x2d\x1d\xe7\xb5\x46\xd1\x2d\x1d\xef\x98\x36\x37\xc2\xa8\xe3\x14\xe2\x18\x7e\x10\xdb\x66\x66\x0e\x5f\x66\xb3\x6e\xf8\x1f\x9a\xd4\x07\xa2\x7f\xaa\xa3\x37\x05\xff\x68\xe8\x97\xd9\x6c\x16\x4c\xe0\x25\xa8\xca\x2b\xca\x51\x51\x58\x2b\xf7\x50\x0b\x37\x07\x2c\x4c\x16\xfe\x2c\x95\x92\x87\xef\xc8\x0b\x9a\xc0\xe7\x65\x25\x47\x1b\x6b\x1f\x4e\xa6\x56\xb2\x1e\x85\x4b\xa8\xff\x0b\x73\x3c\xda\x4c\xbd\xd4\x13\x27\xd6\x8a\xfa\xfe\xc8\x36\xd4\x29\x19\x3d\xd3\x51\x47\x98\xa6\x61\x7e\x92\xc1\xbb\x2c\x51\x0b\x98\x42\x86\x3a\x5b\xf2\xad\x54\xcc\x64\xbb\x31\xbc\x03\x9a\xc2\xa1\xd6\xd0\x0f\xae\x46\x27\x1f\x27\xe9\xac\xe0\xdb\x1c\x5d\xf8\x79\x8a\x2e\xb6\x61\xd8\x52\xec\xc8\xef\x25\x38\xe8\xaf\x33\xec\x86\xd8\x11\x6a\x43\xe0\x80\x97\x6d\x8d\x3d\x16\xdc\xac\x30\xc7\x35\xe3\xcc\x1c\xe1\xb2\x27\x68\xd2\x0c\x31\xd2\x91\x36\x52\xe1\x96\xda\x04\xf6\x89\x98\xd6\x05\x2d\xca\x4e\x76\xec\x26\xfa\xc1\x4c\x96\x2a\x3c\xe0\x9a\xdb\xc6\x6e\x1d\x2b\xfa\x6e\x6b\x5e\x85\x71\x9d\x2e\xde\x34\x23\xe5\x40\x8f\x20\x3f\x99\xd5\x6f\x28\x70\x4b\x0a\x16\x17\x8e\x85\x45\x95\xdb\xdc\x0d\x80\x61\x39\xb9\x79\x7f\x8e\xa3\x1d\x5e\xf3\x89\x34\xee\x29\x5c\x5c\x0c\x2b\x4f\xc1\xc8\xb9\x5b\x7b\x58\xf5\xb1\xca\xf2\x80\x26\xeb\x4d\xc5\x74\x50\xff\x89\xe4\x6f\x30\xbd\x0a\x9d\xb4\xf6\x79\xff\xdc\x9c\x50\xdf\x44\x7f\x91\x3c\x1d\x5d\xac\xa7\x13\xc2\x25\x51\x89\xbe\x4c\x53\x45\x5a\xcf\x7b\xca\x60\xf5\x79\xea\x44\x74\x55\x9d\x8f\x68\x1c\x78\x88\x76\x77\xa5\xb3\xf2\x4e\xf6\xc5\x45\x67\x32\xfd\xc2\xbd\x5e\xe8\x4c\xaa\x23\xd4\xd4\x57\xbc\xa7\xd2\x0a\x73\xb8\x74\x18\xf9\x9a\xa0\x5e\xf7\xcf\x63\x45\xaf\xc2\x77\xd0\x99\x78\x05\x70\xca\x95\xee\xa3\xb3\xd0\x25\x38\x05\x34\xde\xe6\xaf\x73\xfc\x2a\x36\xb2\x32\x9b\xb1\xd6\x2f\x9d\xfc\x7f\xdd\xf8\xbc\x2b\xc8\xca\x76\xba\x54\x70\xd9\x3f\x62\xdb\xf5\x74\x27\xb7\x2e\xef\x01\x0b\x1f\x79\x37\xe3\x55\x68\x2f\x6d\xe7\xd6\xa2\x06\x8e\x58\x91\x07\x69\xb7\x56\x73\x2f\x70\x58\x39\x2b\xf4\x91\x6d\xd9\xdc\xf1\xfa\xa1\xdd\xae\x1b\xdf\xcf\x65\xab\xcc\xbd\x6d\xe3\xdb\x4e\x71\x0c\xf7\x7b\x52\x8a\xa5\x04\x26\x23\x48\x69\x63\x3d\xbf\x73\x6b\x56\x94\x10\xdb\x93\x8a\x46\xbc\xdf\xe9\xbd\x42\x34\x5b\x20\xae\x4e\xe2\xd3\x11\xf5\xad\xce\xe3\x16\xaf\xef\xbb\x82\x0e\x6d\xa1\xea\xb6\xbc\x43\xf5\xac\x9b\x6f\x69\x35\x1f\x0d\xa8\x5b\x79\xa2\xb1\xc3\x4e\x9f\x4c\x6c\x6c\xa3\xf8\xbc\xe1\xc5\xdd\x17\x0d\xdd\xd7\x9e\x37\xbc\x71\x6c\x9d\xd5\xc8\xf1\x08\x8f\x79\xf7\xe9\xbb\xcb\x6b\x4d\x64\x54\x55\xaf\x57\xc6\x31\xe4\x85\x01\x21\xd5\x0e\xf9\x49\x5f\x26\xec\xef\x0b\x7b\xb1\xb6\xd2\x17\x82\xfd\x59\x10\xe4\x68\xb2\x68\xe8\x3c\x4d\xfe\x7f\x4d\xcc\xd1\xbb\xcb\x3f\x54\xae\xcf\x72\x54\xb2\x4a\xe2\xaf\xe7\x84\xb3\x7f\x5f\x83\xd7\xe0\xef\x00\x00\x00\xff\xff\x0f\xf5\x21\x09\x48\x0e\x00\x00" func lockedtokensAdminCustody_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3790,11 +3790,11 @@ func lockedtokensAdminCustody_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x29, 0xd9, 0x9, 0xd7, 0x82, 0x22, 0x92, 0xdc, 0xec, 0xf7, 0x34, 0xce, 0xc2, 0x4f, 0x6b, 0xc6, 0x35, 0x9d, 0xfd, 0x9d, 0x6, 0x6, 0x2c, 0xaa, 0x7f, 0x5e, 0x11, 0x49, 0x4b, 0x7d, 0x13, 0xa4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0x6a, 0x4f, 0xaf, 0x4a, 0xfd, 0x21, 0x8e, 0x71, 0xd1, 0x6e, 0xad, 0x59, 0xc1, 0xc0, 0xbd, 0xa6, 0x99, 0xed, 0x9e, 0xec, 0x61, 0xee, 0x58, 0x54, 0x85, 0xb1, 0x10, 0xb8, 0x83, 0x3e, 0xe6}} return a, nil } -var _lockedtokensAdminCustody_setup_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x50\xcd\x6a\x83\x40\x10\xbe\xef\x53\xcc\xa9\x24\x90\x9f\x9e\x83\x14\x24\x7a\x4a\x68\xa4\xe6\x05\xa6\xeb\x34\x2e\xea\xae\xcc\x8e\xb6\xa5\xe4\xdd\x8b\x91\x58\x36\xb4\x84\xce\x6d\xbf\xf9\x76\xbe\x1f\xd3\xb4\x8e\x05\xf6\x4e\x57\x54\x1c\x5d\x45\xd6\xc3\x1b\xbb\x06\x1e\x3f\xf6\x87\xed\x2e\x4d\x8e\x87\x5d\xfa\x1c\x27\xc9\x4b\x9a\xe7\x4a\x09\xa3\xf5\xa8\xc5\x38\x0b\x5f\x4a\x01\x00\xb4\x4c\x2d\x32\xcd\x74\xe7\xc5\x15\x9f\x19\xbb\xde\x14\xc4\x1b\x88\x3b\x29\x63\xad\x5d\x67\x65\x7e\x25\x0f\x53\x93\x00\x8e\xf8\x96\x09\xc5\x31\x44\xcb\xc0\xc1\x4a\x0f\x38\x8d\x50\x1c\x50\x67\xf3\x9f\x43\x37\x8a\x2b\x8f\x3d\xcd\xa6\xed\x30\xd1\x32\x14\x5a\x40\xb0\x16\xb7\x09\x75\x7f\x53\xcc\xc5\x31\x9e\x28\x43\x29\x17\xd3\xef\x79\x70\x67\x7a\xac\xd7\x30\x5a\x07\x4b\xef\xc0\xa4\xc9\xf4\xc4\x20\x25\x0a\x34\xc8\x95\xbf\x62\x05\xc8\xd8\x35\x7a\xe8\x6c\x7d\x91\xfd\x33\x57\x6d\x6c\x15\x3d\xdc\x35\xfa\x14\x66\xbf\xcb\xcf\xba\xd7\xda\xe8\x30\xd7\xa5\x15\xe4\x13\xc9\xff\x9a\xb9\x29\xe6\xac\xce\xea\x3b\x00\x00\xff\xff\xff\x73\x6a\xb6\x5a\x02\x00\x00" +var _lockedtokensAdminCustody_setup_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\x4f\x6f\xc2\x30\x0c\xc5\xef\xfd\x14\x3e\xa1\x22\x15\xd8\x19\xb1\x49\xa8\x70\x02\x0d\xb4\xa2\xdd\x4d\xea\xad\x11\xa5\x89\x1c\xa7\xdb\x34\xf1\xdd\xa7\xae\x82\x11\xd6\xfd\xc1\x87\x1e\x5c\xc7\xef\xf7\x9e\xf5\xde\x1a\x16\x58\x1a\xb5\xa3\x7c\x63\x76\x54\x39\x78\x62\xb3\x87\x9b\xd7\xe5\x2a\x5d\xcc\x67\x9b\xd5\x62\x7e\x3f\x9d\xcd\x1e\xe6\x59\x16\x45\xc2\x58\x39\x54\xa2\x4d\x05\xef\x51\x04\x00\x60\x99\x2c\x32\xc5\xca\x3b\x31\xf9\xdb\x9a\x4d\xad\x73\xe2\x31\xa0\x97\x22\xce\xb0\xa6\x47\x2c\x3d\x25\x90\xa2\xc5\xad\x2e\xb5\x68\x72\x7d\xe8\x4d\x95\x32\xbe\x92\xfe\x71\x4f\x53\x25\x09\x60\xdb\x4f\x99\x50\x0c\xc3\x64\x10\xc0\x0d\x55\xd3\xa7\xb6\x35\x0d\x46\xe3\xfe\xd7\xa2\x0b\x98\xa1\x13\xc3\xf8\x4c\x43\x87\x35\xc5\xa7\xa9\xa6\x26\x83\x50\x30\x81\xe0\xb7\x98\x71\xa8\xdf\xa5\x9c\xb5\xdb\xd7\x28\x45\x72\x7a\x7d\x46\x33\x1a\x41\x8b\x0d\x15\xbd\x00\x93\x22\x5d\x13\x83\x14\x28\xb0\x47\xde\xb9\x63\x2f\x07\x69\x4f\x80\x0e\x7c\x55\x7e\x4a\x05\xe1\x94\x1d\xea\x29\x5a\xb8\xfd\xe6\x58\x9d\xa5\x7d\xb2\xaf\x9d\xf3\x34\xe9\xfd\x69\xe8\x2e\xcc\xe8\x9a\x00\xba\xfc\xff\xca\x66\xfd\xb6\xd4\xae\xb8\x9e\xea\x87\x2c\x92\x60\x08\xe5\x1f\xf7\x5b\x37\x08\xea\xf2\x7c\xcd\xf7\x10\x1d\xa2\x8f\x00\x00\x00\xff\xff\x8f\x22\xf9\xa7\x23\x03\x00\x00" func lockedtokensAdminCustody_setup_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3810,11 +3810,11 @@ func lockedtokensAdminCustody_setup_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_setup_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6f, 0x5d, 0xab, 0xd2, 0x1f, 0x88, 0x4b, 0xe, 0x6a, 0x28, 0xd5, 0x20, 0xb2, 0xa4, 0x69, 0xe6, 0x14, 0xb1, 0x8a, 0xd2, 0x13, 0xc1, 0x1d, 0x75, 0x79, 0x77, 0x17, 0xbf, 0xd4, 0x76, 0x85, 0x22}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0x40, 0x6a, 0x7b, 0x9d, 0xa1, 0x31, 0xd9, 0xc7, 0x91, 0x5, 0x6f, 0x52, 0xf7, 0x71, 0x70, 0x92, 0xf2, 0xd2, 0xbc, 0x15, 0x2e, 0xd5, 0x5d, 0x81, 0xa0, 0x1d, 0x37, 0xcc, 0xa9, 0xbf, 0xdf}} return a, nil } -var _lockedtokensAdminDeposit_locked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x41\x4f\xdc\x3c\x10\x3d\x93\x5f\x31\xe4\x00\x89\x04\xd9\xef\xf0\xa9\x87\x68\x81\xae\x76\xa1\x07\x50\xa9\x80\xb6\x67\x27\x99\x6c\x5c\xbc\x76\x64\x4f\x58\x2a\xc4\x7f\xaf\x62\xc7\x69\xbc\x8b\xa0\xb9\x44\x19\x8f\xdf\xbc\x99\x79\x2f\x7c\xd3\x2a\x4d\x70\xd5\xc9\x35\x2f\x04\x3e\xa8\x47\x94\x50\x6b\xb5\x81\x38\x88\xc5\x91\xcf\x14\x6a\x1b\x64\xf9\xef\x38\xf2\x29\x37\xaa\x7c\xc4\xca\x06\x8d\xcb\xfa\xef\xf9\xe6\x76\x79\x7d\xb9\x7a\xb8\xbd\xbe\xfc\xba\x58\xad\xee\x2e\xef\xef\xa3\x88\x34\x93\x86\x95\xc4\x95\x4c\x48\xe5\xb0\xa8\x2a\x8d\xc6\x9c\x00\xdb\xa8\x4e\x52\x0e\xdf\xaf\xf8\xf3\xa7\xff\x53\x78\x89\x22\x00\x80\xd9\x0c\x1e\x1a\x84\x1f\xac\x13\x04\x1a\x8d\xea\x74\x89\x40\x0d\x23\x68\x94\xa8\x0c\x50\x83\x40\xae\xac\x8d\x32\x8d\x50\x20\x97\x6b\xb0\xa5\x6a\xd4\x1a\x2b\x0b\x25\x90\xc0\xa0\x24\x8b\x95\xc3\xe7\x97\xa0\xd9\xcc\x86\x5f\x5d\xd5\x56\x63\xcb\x34\x26\xac\xda\x70\x99\xc3\xa2\xa3\x66\x51\x96\x3d\xc1\x91\xd8\x40\xee\x0b\x12\x30\xd0\x58\xa3\x46\xd9\x33\x53\x96\x91\xbd\x78\x6c\xc0\x90\xd2\x58\xc1\x53\x8f\x3d\x5e\xeb\x89\xd8\xc8\x1d\xd6\x70\xe6\x72\xb3\x42\x69\xad\xb6\x73\xd6\x51\x93\x84\xc4\x7e\x72\x6a\x2a\xcd\xb6\xac\x10\x98\xc2\xd1\x38\x7c\xc7\xf8\x3c\xe9\xa7\x9d\xc3\xac\x2f\xc5\xd6\x38\xab\xfd\xb9\x3d\x4e\xa3\x83\x83\x83\x8b\x0b\x68\x99\xe4\x65\x12\x2f\x55\x27\x2a\x90\x8a\xc0\xd5\xdb\x67\xae\xb6\x12\xf5\xb1\x71\x13\x3f\x8c\xd3\x28\xa0\x6d\xb9\x4e\x68\x8f\x87\xfd\xe3\x7b\x38\x9a\x8a\x21\xb3\xaf\x45\x9f\xbc\x54\x42\xa0\x5d\xfd\x79\x12\x5c\xec\x1f\xd7\x45\x70\x73\xf2\xb1\x73\xff\xde\xf5\xfa\x8d\x51\x13\x00\xa5\xc1\xd7\x3b\x6d\xbf\xb1\x32\x61\xab\x39\x2d\xb9\xe6\xa0\x1c\x0b\x4e\xe7\xc0\x8c\x41\x4d\x61\x07\x7e\x2e\xd9\x1a\x69\x50\x4a\xc2\x9c\xb4\x73\x20\x95\xc2\xe1\x19\x48\x2e\x4e\x82\x4b\x1b\x34\x86\xad\x31\x87\xb8\x97\xb8\x69\xb1\xe4\x35\xc7\x0a\x98\x03\x00\x6e\x2c\x65\xe6\xa9\x0d\xf1\x43\x58\x32\xd9\x1f\x18\x94\x55\x40\xdb\xc4\xd1\xdf\x49\x4c\x55\xea\x25\xe4\x9d\x62\x0d\xfa\xa1\x4e\x0d\x8a\x3a\x1b\x1d\x03\xf3\xd3\x51\xb5\xd9\x76\x00\x4c\xbc\x6d\xdd\xdb\xcd\x7f\x30\x11\x3e\x63\xd9\x11\xbe\x61\x98\xbe\xb2\xc6\x92\xb7\x1c\x25\x1d\x1b\x68\xbb\x42\xf0\x72\xec\x5b\x15\xbf\xb0\x0c\xed\x32\x66\xc3\x19\x4c\x46\x4c\x2a\xfd\x17\x37\x4e\x6b\xdd\x61\x89\xfc\x09\xf5\x2e\xbc\x0d\x3a\x65\x8f\xe9\xa1\xba\xd7\x48\x4b\xd6\xb2\x82\x0b\x4e\xbf\xe7\x47\x3b\xbf\x0f\x8f\xfb\xfa\x86\xb6\x67\xae\xc1\x99\xdb\xd5\x68\xe0\x3d\x2a\xfb\x12\x1e\x2c\x95\x7c\x6c\x63\x07\xf5\x7e\xef\x83\x56\xec\x3a\xe3\x70\x72\x2b\x6c\x95\xe1\x6e\x35\x7e\xb9\xd2\xcb\x85\xcb\x3d\x28\xbd\xcb\x7d\x32\xc2\xac\x72\x60\xc3\x9f\x69\x7e\x1a\x0a\xc9\x8b\xe4\x35\xfa\x13\x00\x00\xff\xff\x35\x62\x62\xfc\x89\x06\x00\x00" +var _lockedtokensAdminDeposit_locked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\xc1\x4e\xdc\x30\x10\x3d\x93\xaf\x98\xcd\x01\xb2\x12\x64\x7b\xa8\x7a\x88\x16\xe8\x76\x17\x7a\x00\x95\x0a\x28\x3d\x3b\xce\x64\xe3\xe2\xb5\x23\xdb\x61\x91\x10\xff\x5e\xd9\x8e\xd3\x78\x59\x41\x73\x89\x32\x1e\xbf\x79\x33\xf3\x5e\xd8\xa6\x95\xca\xc0\x65\x27\xd6\xac\xe4\x78\x2f\x1f\x51\x40\xad\xe4\x06\xd2\x28\x96\x26\x21\x93\xcb\x6d\x94\x15\xbe\xd3\x24\xa4\x5c\x4b\xfa\x88\x95\x0b\x6a\x9f\xf5\xe9\xf9\xfa\x66\x79\x75\xb1\xba\xbf\xb9\xba\xf8\xb1\x58\xad\x6e\x2f\xee\xee\x92\xc4\x28\x22\x34\xa1\x86\x49\x91\x19\x59\xc0\xa2\xaa\x14\x6a\x7d\x0c\x64\x23\x3b\x61\x0a\xf8\x75\xc9\x9e\xbf\x7c\x9e\xc2\x4b\x92\x00\x00\xcc\x66\x70\xdf\x20\x3c\x90\x8e\x1b\x50\xa8\x65\xa7\x28\x82\x69\x88\x81\x46\xf2\x4a\x83\x69\x10\x8c\x2f\xeb\xa2\x44\x21\x94\xc8\xc4\x1a\x5c\xa9\x1a\x95\xc2\xca\x41\x71\x34\xa0\x51\x18\x87\x55\xc0\xd7\x97\xa8\xd9\xdc\x85\x5f\x7d\xd5\x56\x61\x4b\x14\x66\xa4\xda\x30\x51\x00\xe9\x4c\x93\x7d\x93\x4a\xc9\xed\x03\xe1\x1d\x4e\xe1\x70\x41\xa9\xe5\x3b\xf0\xec\xb9\x7e\x47\x03\x04\x14\xd6\xa8\x50\x58\xa2\xd2\x11\x74\x38\x47\x1a\xb4\x91\x0a\x2b\x78\xb2\xa5\x86\x6b\x96\x97\x8b\xdc\x62\x0d\xa7\x3e\x37\xb7\x99\x64\x8d\x79\xe9\xaa\xce\x1d\x83\x98\xef\x6f\x66\x9a\x4a\x91\x2d\x29\xb9\x25\x34\xec\xc4\x37\x72\x96\xd9\x25\x14\x30\xeb\x81\x66\x75\x38\x77\xc7\xd3\xe4\xe0\xe0\xe0\xfc\x1c\x5a\x22\x18\xcd\xd2\xa5\xec\x78\x05\x42\x1a\xf0\xf5\xde\x76\x20\xb7\x02\xd5\x91\xf6\x8b\x98\xa4\xd3\x24\xa2\xef\x38\xef\xa1\x3f\x24\xd9\x27\xf4\x72\x38\xd6\x4a\xee\x5e\x0b\x7b\x69\x29\x39\x47\xa7\x8c\xb3\x2c\xba\x68\x1f\xdf\x4d\x74\x73\xf4\xb1\x73\xff\xce\x57\xff\x49\x4c\x13\x01\x4d\xa3\xaf\x77\xda\xdf\xb3\x42\xee\xaa\x79\xa9\xf9\x26\x81\x0e\x05\xc7\xf3\x20\x5a\xa3\x32\x71\x07\x61\x3e\xf9\x1a\x4d\xaf\x9c\x8c\x78\xe5\x17\x60\xe4\x14\x26\xa7\x20\x18\x3f\x8e\x2e\x6d\x50\x6b\xb2\xc6\x02\x52\xeb\x00\xdd\x22\x65\x35\xc3\x0a\x88\x07\x00\xa6\x1d\x65\x12\xa8\xf5\xf1\x09\x2c\x89\xb0\x07\x1a\x45\x15\xd1\xd6\x69\xf2\x6f\x12\x63\xd5\x06\x29\x05\x23\x39\xff\x7e\xa8\x5b\x8d\xbc\xce\x07\x43\xc1\xfc\x64\x50\x71\xbe\xed\x01\xb3\xe0\x6a\xff\xf6\xf3\xef\x3d\x86\xcf\x48\x3b\x83\x7b\x0c\x64\x2b\x2b\xa4\xac\x65\x28\xcc\x91\x86\xb6\x2b\x39\xa3\x43\xdf\xb2\xfc\x83\x34\xb6\xcf\x90\x0d\xa7\x30\x1a\xb1\x91\xd3\xff\x71\xe7\xb8\xd6\x2d\x52\x64\x4f\xa8\x76\xe1\x5d\xd0\x2b\x7c\x48\x8f\xd5\x4d\x49\x4b\x4a\xc6\x99\x61\xa8\xed\x9e\xe7\x87\x3b\x3f\x98\x00\xfd\xba\x47\xde\x33\xdf\xe3\xcc\xaf\x6b\xf0\xf2\x1b\x36\x6e\x77\x93\x7d\xb6\xca\x3e\xb6\xb4\xc7\x7a\xbf\xff\x5e\x2f\x6e\xa5\x69\x3c\xbd\x15\xb6\x52\x33\xbf\x9e\xb0\x60\x11\x24\xc3\xc4\x1b\x28\xb5\x4b\x7e\x34\xc6\xbc\xf2\x60\xfd\x5f\x6a\x7e\x12\x8b\x29\x08\xe5\x35\xf9\x1b\x00\x00\xff\xff\x86\x35\xe5\xe7\xac\x06\x00\x00" func lockedtokensAdminDeposit_locked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3830,11 +3830,11 @@ func lockedtokensAdminDeposit_locked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/deposit_locked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xff, 0x3c, 0xce, 0x3d, 0xad, 0x25, 0xee, 0xc, 0x3c, 0x93, 0x98, 0xe0, 0x97, 0x72, 0x15, 0x43, 0xfb, 0x7c, 0xc5, 0x5f, 0xb6, 0x21, 0x84, 0xc0, 0x5f, 0x12, 0x8a, 0xd6, 0x70, 0xbf, 0x2e, 0xdd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0xe3, 0xb, 0xc5, 0xa0, 0xac, 0x11, 0x5a, 0x85, 0x2c, 0xbc, 0xb0, 0x3c, 0xa8, 0xaf, 0x26, 0xde, 0xe3, 0xd2, 0x7c, 0x25, 0x54, 0xb0, 0xde, 0xc6, 0x2, 0x45, 0x83, 0xbd, 0xfd, 0x9d, 0x6c}} return a, nil } -var _lockedtokensAdminGet_unlocking_bad_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcd\x4e\xc3\x30\x10\x84\xef\x79\x8a\xa1\x07\x94\x5c\xda\x0b\xe2\x10\x11\xaa\x50\xc4\x03\x20\x71\x42\x1c\x1c\x7b\x13\x59\x71\xd7\x91\x7f\x04\x51\x94\x77\x47\x6d\xd2\x50\xd1\xf8\x64\xcb\x33\xf3\xcd\x6e\x92\x08\x29\xc9\xfb\x54\x18\x93\xa1\x8e\x8c\xa3\xd0\x9c\x06\xdb\x12\x97\xea\xa8\x39\x47\xa9\x94\x23\xef\xb3\x1c\xc3\x7c\xcd\xf1\xf1\xa6\x7f\x1e\x1f\x46\x0c\x49\x02\x00\x86\x02\xa4\xed\x7a\x5b\xbf\x6a\x19\xb4\x65\xe1\xfa\x35\x79\x81\x61\xfc\x73\x08\x29\x6d\xe4\x80\x02\x0d\x85\x72\x7a\x5c\x91\xb3\xb3\x70\x51\xab\x25\xf9\x9d\x6a\x72\xc4\x92\x50\x5c\x32\xb6\x0d\x85\x83\xe8\x44\xa5\x8d\x0e\xfd\xd3\xfd\x0d\xfa\x39\xdd\x75\xb1\x32\x5a\xee\x22\x1b\x2b\x5b\xcd\xcd\x8b\x50\x33\xd4\x67\xdb\xca\x3a\x67\xbf\xd3\x89\x79\x3a\xfb\x3d\x3a\xc1\x5a\xa6\x9b\x83\x8d\x46\x81\x6d\x38\xd5\x44\x25\xd4\x05\xea\xaf\x3a\x6d\xb2\x69\xae\xda\x3a\x88\x89\x0d\xcd\x6b\xa5\xb7\x2d\xf5\x1e\xc3\x02\xfa\xbf\xb7\xcf\xd9\xfe\x85\x62\xcd\xbe\x7c\xdf\x9d\x13\xe6\x75\x3a\x0a\xd1\xf1\x4d\x56\x32\xfe\x06\x00\x00\xff\xff\xac\x2d\x3d\x31\xe0\x01\x00\x00" +var _lockedtokensAdminGet_unlocking_bad_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x4f\x4f\x83\x40\x10\xc5\xef\x7c\x8a\x69\x0f\x06\x2e\xf4\x62\x3c\x34\x62\x83\x1a\x3f\x80\x89\x27\xe3\x61\xd9\x1d\xc8\x84\xed\x0c\xd9\x3f\x51\x42\xf8\xee\xa6\x85\x62\x63\xd9\xd3\x6e\xf6\xbd\xf7\x7b\x33\x49\xa2\xb4\x46\xef\x53\x65\x6d\x06\x75\x64\x38\x2a\xe2\x34\x48\x8b\x5c\x9a\x23\xf1\x1e\x4a\x63\x1c\x7a\x9f\xed\x61\x98\xaf\x7b\xf8\x78\xa3\x9f\x87\xfb\x11\x86\x24\x01\x00\xb0\x18\x40\x4b\xd7\x4b\xfd\x4a\x3a\x90\xb0\x72\xfd\x9a\xbc\x80\x61\xfc\x73\x28\xad\x25\x72\x80\x02\x1a\x0c\xe5\xf4\xb8\x22\x67\x67\xe1\xa2\x36\x4b\xf2\x3b\xd6\xe8\x90\x35\x42\x71\xc9\xc8\xb5\xea\x54\x45\x96\x02\xa1\xcf\x1b\x0c\x8f\x77\x37\xf4\xa7\x74\xd7\xc5\xca\x92\xde\x45\xb6\xa2\x5b\xe2\xe6\x59\x99\x99\xeb\xb3\x4d\x5e\x89\x73\xf2\x9d\x4e\xdc\xd3\x39\x1c\xa0\x53\x4c\x3a\xdd\xbe\x48\xb4\x06\x58\xc2\xa9\x2a\x54\xca\x5c\xc0\xfe\xaa\xd7\x36\x9b\x66\xab\xc5\x81\x9a\xe0\x40\xbc\x56\x3c\x6f\xb1\xf7\x30\x2c\xa0\xff\xbb\xfb\x9c\xed\x5f\x50\xac\xd9\x97\xef\xcd\x39\x61\x5e\xa9\xc3\x10\x1d\xdf\x64\x25\xe3\x6f\x00\x00\x00\xff\xff\x3e\x5d\x4f\xeb\xe4\x01\x00\x00" func lockedtokensAdminGet_unlocking_bad_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3850,11 +3850,11 @@ func lockedtokensAdminGet_unlocking_bad_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/get_unlocking_bad_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x60, 0x5b, 0xd3, 0x7b, 0x41, 0xd1, 0x85, 0x69, 0xad, 0xf7, 0x1, 0x49, 0x72, 0x7c, 0x48, 0xb1, 0x89, 0xe7, 0x86, 0x10, 0xb8, 0xa4, 0x88, 0xe4, 0x58, 0xa2, 0x4c, 0x95, 0x88, 0x7a, 0x56, 0x6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0x51, 0xe, 0x74, 0xba, 0xa6, 0x38, 0x71, 0xa7, 0xb, 0xbc, 0x3b, 0xed, 0x9a, 0x7, 0xf, 0xee, 0xd, 0x97, 0x9b, 0x80, 0x62, 0xe8, 0x47, 0x4, 0x6d, 0xf3, 0xc5, 0xc3, 0x4c, 0x3d, 0xab}} return a, nil } -var _lockedtokensAdminUnlock_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x91\xcd\x6e\xea\x30\x10\x85\xf7\x79\x8a\xb9\x2c\xee\x4d\xa4\xab\xa8\x8b\xaa\x8b\xa8\x2d\x8a\x80\x6e\xa0\xa5\xe2\xe7\x01\xa6\xce\x04\x2c\x12\x4f\x34\x9e\xa8\x48\x15\xef\x5e\x25\x46\x34\xb0\xed\x6c\xc6\x96\x8f\xed\xef\x9c\xb1\x75\xc3\xa2\xb0\x60\x73\xa0\x62\xc3\x07\x72\x1e\x4a\xe1\x1a\xee\x8e\x8b\xe5\x64\x3e\x9b\x6e\x96\xf3\xd9\x5b\x3e\x9d\xae\x66\xeb\x75\x14\xa9\xa0\xf3\x68\xd4\xb2\x8b\x15\x65\x47\x9a\x1b\xc3\xad\xd3\x0c\xf2\xa2\x10\xf2\xfe\x3f\x14\x54\x29\x66\xb0\x7d\xb1\xc7\x87\xfb\x04\xbe\xa2\x08\x00\xa0\x11\x6a\x50\x28\xc6\xa2\xb6\x2e\x83\xbc\xd5\xfd\xf9\xea\x45\xd2\x55\x45\x0a\xbd\x64\x45\x25\x3c\x85\x65\xfa\xc1\x22\xfc\xf9\xf8\x77\x48\x99\xf6\x2d\xef\xce\x27\x5c\x55\xd4\x33\x3d\xc7\x1d\x7b\x76\x65\x27\x1d\x6c\x6e\xe4\x6b\x65\xc1\x1d\xbd\xa3\xee\x93\x0b\x41\x57\xe3\x31\x34\xe8\xac\x89\x47\x13\x6e\xab\x02\x1c\x2b\x04\x08\x40\x10\x2a\x49\xc8\x19\x02\x65\xd0\x3d\x05\x48\x30\x97\x67\x47\xc9\xb5\x1f\xed\xbe\x7e\x45\x87\x3b\x92\x81\xad\x15\x95\xe9\x4f\x80\x31\x86\xfc\x32\xb8\xca\x35\xf9\x73\x76\x1f\xff\x86\xb0\xf5\x24\xff\x7c\x00\x81\x3a\x90\x0c\x29\x6f\x08\x53\xeb\x8c\x10\x7a\xda\xba\x8a\xcd\x61\x61\x6b\xab\xf1\x79\xac\x7d\x0b\x2c\xa7\xe8\x14\x7d\x07\x00\x00\xff\xff\xd0\xd3\x4e\x0e\x40\x02\x00\x00" +var _lockedtokensAdminUnlock_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x91\x4f\x4f\xf3\x30\x0c\xc6\xef\xfd\x14\x7e\x77\xd8\x9b\x4a\xa8\xe2\x80\x38\x54\xc0\x54\xb6\x71\xd9\x60\x68\x7f\xb8\x9b\xd4\xdd\xa2\xb5\x49\xe5\xb8\x62\x12\xda\x77\x47\x6d\xa6\xd1\xed\x8a\x2f\x4e\x24\xfb\xc9\xef\x79\x62\xaa\xda\xb1\xc0\xdc\xe9\x3d\xe5\x6b\xb7\x27\xeb\xa1\x60\x57\xc1\xed\x61\xbe\x18\xcf\xa6\x93\xf5\x62\x36\x7d\xcb\x26\x93\xe5\x74\xb5\x8a\x22\x61\xb4\x1e\xb5\x18\x67\x95\x20\x6f\x49\x32\xad\x5d\x63\x25\x85\x2c\xcf\x99\xbc\xbf\x81\x9c\x4a\xc1\x14\x36\x2f\xe6\x70\x7f\x17\xc3\x77\x14\x01\x00\xd4\x4c\x35\x32\x29\xcc\x2b\x63\x53\xc0\x46\x76\xea\xd9\x31\xbb\xaf\x0f\x2c\x1b\x8a\x61\x78\x52\x3a\x6f\xb4\x55\x92\x40\xb7\xb1\xa4\x02\x1e\xc3\x31\xf1\xe2\x18\xb7\x94\x7c\x76\xeb\x0f\xc3\x3e\x7c\xd2\xb5\xac\x9d\x1b\xbb\xb2\xa4\x0e\xf5\x49\xb5\x96\xd2\x0b\x97\x49\xef\x72\x35\xbe\x0a\xfa\xef\x28\xbb\xf8\x4c\xd2\xd6\x68\x04\x35\x5a\xa3\xd5\x60\xec\x9a\x32\x07\xeb\x04\x02\x04\x20\x30\x15\xc4\x64\x35\x81\x38\x90\x1d\x05\x58\xd0\x67\xd9\x41\x7c\xe9\x4b\xda\xa7\x5f\xd1\xe2\x96\xb8\x67\x6f\x49\x45\xf2\x9b\xab\xc2\x10\x6b\x0a\x17\x71\xc7\xff\x4e\xee\xd5\x5f\x08\x1b\x4f\xfc\xdf\x07\x10\xa8\x02\x49\x9f\xf2\x8a\x30\x31\x56\x33\xa1\xa7\x8d\x2d\x9d\xde\xcf\x4d\x65\x44\x9d\x7e\xbb\x6b\x81\xe5\x18\x1d\xa3\x9f\x00\x00\x00\xff\xff\x7f\xbb\x35\x53\x57\x02\x00\x00" func lockedtokensAdminUnlock_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3870,11 +3870,11 @@ func lockedtokensAdminUnlock_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/unlock_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x58, 0xa9, 0x1, 0xbc, 0x31, 0xd2, 0x33, 0xd, 0x5b, 0xb, 0x97, 0x13, 0xe6, 0x85, 0x86, 0x57, 0xa2, 0x99, 0xa6, 0x1f, 0x8c, 0x9f, 0x8b, 0xb5, 0xab, 0xd9, 0x40, 0x1, 0x5d, 0x97, 0x33}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xae, 0xe, 0xc8, 0x2b, 0x80, 0x51, 0x6f, 0xc3, 0xa, 0xc4, 0xea, 0x7f, 0x76, 0x1f, 0x32, 0x48, 0x28, 0xd, 0xd, 0xd0, 0x4b, 0x7c, 0xb2, 0x26, 0x85, 0x0, 0xcb, 0xf2, 0xc8, 0x32, 0x6c, 0x1c}} return a, nil } -var _lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x4d\x6f\xe3\x46\x0c\xbd\xfb\x57\xb0\x7b\xd8\xda\x40\x10\xf7\x50\xf4\x10\x24\xbb\x70\x93\xb4\x0d\x36\xed\x2e\x92\xec\xa9\xe8\x81\xd6\x50\xd2\xc0\xd2\x8c\x31\x43\xc5\x09\x02\xff\xf7\x82\x33\x92\x3d\xfa\x88\xb1\xba\x24\x96\xc8\xc7\xaf\x47\x3e\x5d\x6f\xad\x63\xb8\xb7\xd9\x86\xd4\x93\xdd\x90\xf1\x90\x3b\x5b\xc3\x2f\x2f\xf7\x5f\xaf\xbf\xdc\xde\x3c\x7d\xfd\x72\xfb\xcf\xea\xe6\xe6\xe1\xf6\xf1\x71\x36\x5b\x2e\xe1\xa9\xd4\x1e\xd8\xa1\xf1\x98\xb1\xb6\x06\x1a\x4f\x1e\xb8\x24\xa8\x02\x08\x70\x44\x41\x55\x6b\x23\x0e\x6c\xc1\x13\x07\x8b\xc6\x88\x0d\x54\xba\xd6\x0c\xb9\x75\x50\x37\x15\xeb\x6d\x45\x80\x59\x66\x1b\xc3\x5e\x1c\xb4\x01\x04\xaf\x4d\x51\x51\x1a\x28\x06\x3f\x98\x02\x2a\xe5\xc8\x4b\xf0\xc6\x93\x02\xf4\xb0\xa1\xd7\x00\xe0\x4b\xdb\x54\x0a\xd6\x94\x04\x15\x8b\xa1\xe3\x6c\x96\xc0\xcf\xa3\xdd\x9d\xc9\xed\x05\xbc\xad\xa2\xcd\x05\x7c\xff\x43\xbf\xfc\xf6\xeb\x7e\x01\x6f\xb3\x19\x00\xc0\xd6\xd1\x16\x1d\xcd\x43\x79\x17\xb0\x6a\xb8\x5c\x45\xdc\x83\x89\x3c\xcb\x25\x7c\xef\xe2\xae\x46\x09\x73\x89\x0c\x25\x2a\xf0\xb6\x26\xf0\x32\x01\x9b\x03\x39\x67\x5d\x8a\x80\x8e\xc0\xb3\x75\xa4\xa4\x27\x2c\x8d\x57\x3a\x24\x8b\xee\x15\xbc\x95\xf2\x5e\x21\x43\x23\xa5\x6a\xe3\xb7\x94\x31\x29\xa8\x90\xa9\x87\x73\x97\x87\x46\xa4\x43\x33\x44\xca\xcb\x68\x5c\x63\x8e\x53\x60\x5d\x93\x3f\x4b\x5d\xb9\x24\x13\x9c\x93\xc0\xda\x83\xb1\x0c\xf6\x99\xdc\xce\x69\x66\x32\x07\x8f\x67\x74\xb0\x46\xd5\x56\xec\x27\x1a\x09\x57\x91\x19\xe7\x95\x45\x75\x39\xfa\xfc\x69\x2e\xec\xbb\x80\xa5\xd4\x8d\x05\x2d\xe3\x54\xb4\x29\x7e\x3f\xc2\x2e\x0e\xf1\xe4\xf9\xfc\x19\xde\xf6\x32\xfe\x11\xd8\x71\x1c\x15\x71\x0c\xfb\x40\xf9\x21\x83\xb5\x75\xce\xee\x2e\x3f\xa6\xe4\x3f\x0f\x7f\x56\xf2\xfd\xda\x56\x15\x85\xa2\xbb\xa4\x7a\x86\xc9\x8f\x81\xf9\x63\x4c\xfd\x1b\x72\x39\xca\x74\x8b\x46\x67\xf3\x0f\xd7\x81\xa0\xd2\xc5\x98\x04\x20\x38\xca\xc9\x91\xc9\x48\xa6\x22\x1d\x0f\x49\x42\x76\x80\xfd\xb0\x38\xd6\x23\xbb\xd3\xf1\xba\xad\x5a\x28\x72\xa4\xf0\xb9\xec\x42\x4a\xc8\x76\x9e\xab\xaa\x12\xaa\x09\xbe\xce\xa5\x2d\x3e\xb0\x6c\x4d\x19\x36\x9e\x60\x47\xa0\xac\xf9\x99\x01\x76\x68\x18\xd8\x0e\xfd\x1d\x3d\x93\x8b\xcb\x4c\x86\xb5\xeb\xb3\x4a\xe7\x20\x8b\x8d\xba\xf2\x43\x47\xb6\x50\xb4\x57\x40\x9b\xdc\xba\x1a\x83\x87\x14\x72\x58\xf6\x76\x41\x7a\xae\x31\xcb\xf6\xb6\xb4\x04\x90\x02\xe3\x20\x0b\xe2\xf6\xdd\x7c\xd0\x8e\x7e\xe7\xe5\x39\x2f\x88\xaf\x71\x8b\x6b\x5d\x69\x7e\x9d\x1a\xfb\x5f\xb6\x52\xe4\x3e\xcd\x27\xe6\x9c\x44\xfe\xd6\xac\x2b\x9d\x8d\xa7\x1b\x62\xc4\x71\xce\x17\xc3\xd6\x77\x24\xec\xd5\xd1\x4d\xee\x6a\xb2\x3c\xc9\xf7\x7e\xc2\x7c\xbe\x18\x43\xf7\xba\x14\x39\x19\x7d\x1e\x28\xb3\x4e\x75\x94\x6f\x51\xbb\x96\x61\xb7\x2f\x53\x59\x49\x09\xc3\x30\xf2\x4c\xbe\x6c\xe3\x87\xd3\xff\x37\x1a\x2c\xc8\xc5\x01\xbd\x97\xd1\xc9\x46\x25\xb4\xf9\xb3\xaf\x1c\x58\x87\x4b\x1a\x14\x6a\x78\xd2\xd0\x15\x4d\x4d\x86\x93\x53\xf5\x2e\xb2\xdc\xa9\x08\xb9\x8a\x88\x57\xc9\xee\xfc\x3b\xa0\xd2\x7f\x3f\x9d\x4c\xf1\xce\x64\x8e\xd0\xd3\x58\xe1\xd6\xaf\x71\x91\x43\x88\x77\x21\x06\x4d\x3b\xd7\x2d\x5e\xd4\x8f\x7b\x41\x9a\x2b\xaa\x18\x2f\x7a\x29\x4f\xb0\x20\x49\xea\xda\x1a\xd6\xa6\x39\x1c\x13\x43\x2f\x0c\x9a\xc9\xc5\xb5\x6b\x4f\x40\x65\xed\xf6\x14\x4a\x77\x16\x38\x91\x5d\xdf\x64\x19\x91\x12\x3d\x35\x0a\x94\xa5\xa8\x06\x22\x28\xa7\xa0\xd8\x8a\x48\xd5\xe8\x36\x51\xab\xd7\xf8\xbe\x79\xd6\x26\x3f\x69\xb0\x1f\xbd\xdd\xf7\x39\xb9\x1f\x1d\xbd\x56\xff\xe8\x85\xb2\x26\x94\x5f\xe3\x86\xbc\x9c\xaa\x92\x1c\xc1\xfc\x50\x84\x23\xcc\xca\x60\xdb\xa5\x00\xb8\xb6\xcf\xb4\x18\x22\x6a\x86\x9a\xd0\xf8\x20\xe0\x5c\x6a\x53\xc0\x4e\xa8\xb7\x73\x56\xfe\xd5\x5c\x26\x6c\x90\xaf\x72\xe7\x92\x2e\x0e\xf1\xa4\x95\x9a\x8f\xaa\xbc\x26\xf0\xf8\x3c\xe8\x68\x22\xac\x23\x8a\x9e\x26\xf0\x6c\xa2\x37\x51\x03\x25\xca\x94\x0a\x27\xb1\xce\x80\xed\x0f\x0b\x72\xab\xed\xda\x6c\x2e\x3f\x4e\xc0\x2e\xb7\xe1\x78\x4e\x82\x9c\x01\xa3\x2b\x88\x7f\x28\xd6\x7e\xb6\x9f\xfd\x1f\x00\x00\xff\xff\x18\xa1\x72\xd1\xbc\x0a\x00\x00" +var _lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x6f\xe3\x46\x0c\xbd\xfb\x57\x70\xf7\x90\xca\x40\x60\xf7\x50\xf4\x60\x24\xbb\x70\x93\xb4\x0d\x36\xed\x2e\x92\xec\xa9\xe8\x81\xd6\xd0\xd6\x20\xd2\x8c\x31\x43\xc5\x09\x02\xff\xf7\x82\x33\x92\x3d\xfa\x88\xbb\xba\x24\x96\xc9\xc7\xaf\x47\x3e\xeb\x6a\x6b\x1d\xc3\x9d\xcd\x9f\x48\x3d\xda\x27\x32\x1e\xd6\xce\x56\xf0\xf3\xcb\xdd\xd7\xab\x2f\x37\xd7\x8f\x5f\xbf\xdc\xfc\xbd\xbc\xbe\xbe\xbf\x79\x78\x98\x4c\xe6\x73\x78\x2c\xb4\x07\x76\x68\x3c\xe6\xac\xad\x81\xda\x93\x07\x2e\x08\xca\x00\x02\x1c\x51\x50\x55\xda\x88\x03\x5b\xf0\xc4\xc1\xa2\x36\x62\x03\xa5\xae\x34\xc3\xda\x3a\xa8\xea\x92\xf5\xb6\x24\xc0\x3c\xb7\xb5\x61\x2f\x0e\xda\x00\x82\xd7\x66\x53\x52\x1a\x28\x06\x3f\x98\x02\x2a\xe5\xc8\x4b\xf0\xda\x93\x02\xf4\xf0\x44\xaf\x01\xc0\x17\xb6\x2e\x15\xac\x28\x09\x2a\x16\x7d\xc7\xc9\x24\x81\xcf\xa2\xdd\xad\x59\xdb\x05\xbc\x2d\xa3\xcd\x02\xbe\xff\xae\x5f\x7e\xfd\x65\x3f\x85\xb7\xc9\x04\x00\x60\xeb\x68\x8b\x8e\xb2\x50\xde\x02\xb0\xe6\x22\x7b\x60\xeb\x70\x43\x53\x38\x5b\xc6\x10\x07\x6b\x79\xe6\x73\xf8\xde\xa6\xb0\x1c\xe4\xce\x05\x32\x14\xa8\xc0\xdb\x8a\xc0\xcb\x30\xec\x1a\xc8\x39\xeb\x52\x04\x74\x04\x9e\xad\x23\x25\xed\x61\x99\x81\xd2\x21\x6f\x74\xaf\xe0\xad\x54\xfa\x0a\x39\x1a\xa9\x5a\x1b\xbf\xa5\x9c\x49\x41\x89\x4c\x1d\x9c\xdb\x75\xe8\x49\x3a\x3f\x43\xa4\xbc\x4c\xc9\xd5\xe6\x38\x10\xd6\x15\xf9\xf3\xd4\x95\x0b\x32\xc1\x39\x09\xac\x3d\x18\xcb\x60\x9f\xc9\xed\x9c\x66\x26\x73\xf0\x78\x46\x07\x2b\x54\x4d\xc5\x7e\xa4\xa7\x70\x19\x49\x32\xf3\xb1\x7f\xb3\xd2\xa2\xba\x18\x98\x7d\xca\x84\x90\x0b\x98\x37\x66\xf3\x38\x28\x6d\x36\xbf\x1d\xe1\xa7\x87\xb8\xf2\x7c\xfe\x0c\x6f\x7b\x61\xc4\x00\xec\x38\x96\x92\x38\x86\xbf\xa7\xf5\x20\x93\x95\x75\xce\xee\x2e\xce\xd2\xbd\x98\x85\x3f\x4b\xb1\xbb\xb2\x65\x49\xa1\x09\x6d\x72\x1d\xc3\xe4\x43\xcf\xbc\x61\xca\x37\xe4\x62\x90\xf1\x16\x8d\xce\xb3\x8f\x57\x81\xbb\xd2\xd5\x98\x04\x20\x38\x5a\x93\x23\x93\x93\x4c\x49\x26\x10\x92\x85\xfc\x00\xfb\x71\x7a\xac\x4b\xd6\xaa\xa5\x7c\x53\xbd\x50\xe6\xc8\xee\x99\xac\x49\x4a\xd0\x66\xbe\xcb\xb2\x14\xea\x09\xbe\x5e\x4b\x7b\x7c\x60\xdd\x8a\x72\xac\x3d\xc1\x8e\x40\x59\xf3\x13\x03\xec\xd0\x30\xb0\xed\xfb\x3b\x7a\x26\x17\xf7\x9c\x0c\x6b\xd7\x65\x99\x5e\x83\xec\x3c\xea\xd2\xf7\x1d\xd9\xc2\xa6\x39\x10\xda\xac\xad\xab\x30\x78\x48\x21\x87\x3b\xd0\x2c\x4c\xc7\x35\x66\xd9\x9c\x9d\x86\x08\x52\x60\x1c\xe8\x86\xb8\x79\x97\xf5\xda\xd1\xed\xbc\x3c\xb3\x1c\xb7\xb8\xd2\xa5\x66\x4d\x7e\xb6\x21\x1e\x9b\xfc\x9f\xb6\x54\xe4\x3e\x65\x23\xa3\x4e\x82\x7f\xab\x57\xa5\xce\xc3\x80\x3f\x0c\xe3\xc4\x91\x66\xd3\x7e\xfb\x5b\x42\x76\x6a\x69\xa7\x77\x39\x5a\xa2\xa4\x79\x37\x62\x9e\x4d\x87\xd0\x9d\x4e\x45\x5e\x46\x9f\x7b\xca\xad\x53\x2d\xfd\x1b\xd4\xb6\x6d\xd8\xee\xce\x58\x56\x52\x42\x3f\x8c\x3c\xa3\x2f\x9b\xf8\x41\x19\xfe\x42\x83\x1b\x72\x71\x48\xef\x65\x74\xb2\x51\x09\x75\xfe\xe8\x0a\x0b\x56\xe1\xba\x06\x01\xeb\x9f\x39\x74\x9b\xba\x22\xc3\xc9\xf9\x7a\x17\x59\x6e\x57\x84\x5c\x46\xc4\xcb\x64\x7f\xfe\xe9\xd1\xe9\xdf\x0f\x27\x53\xbc\x35\xb9\x23\xf4\x34\x14\xc0\xd5\x6b\x5c\xe6\x10\xe2\x5d\x88\x5e\xd3\x66\xba\xc1\x8b\x9a\x72\x27\x48\x99\xa2\x92\x71\xd1\x49\x79\x84\x05\x49\x52\x57\xd6\xb0\x36\xf5\xe1\xa0\x18\x7a\x61\xd0\x4c\x2e\xae\x5e\x73\x06\x4a\x6b\xb7\xa7\x50\xda\xd3\xc0\x89\x2a\xfb\x3a\xcf\x89\x94\xc8\xad\x51\xa0\x2c\x45\x85\x10\x91\x39\x05\xc5\x56\x84\xab\x42\xf7\x14\xa5\x7c\x85\xef\x9b\xe7\x4d\xf2\xa3\x06\xfb\xc1\xdb\x7d\x97\x93\xfb\xc1\xe1\x6b\x34\x91\x5e\x28\xaf\x43\xf9\x15\x3e\x91\x97\x73\x55\x90\x23\xc8\x0e\x45\x38\xc2\xbc\x08\xb6\x6d\x0a\x80\x2b\xfb\x4c\xd3\x3e\xa2\x66\xa8\x08\x8d\x0f\xa2\xce\x85\x36\x1b\xd8\x09\xf5\x76\xce\xca\xbf\x9a\x8b\x84\x0d\xf2\xad\xdc\xba\xa4\x8b\x7d\x3c\x69\xa5\xe6\xa3\x52\xaf\x08\x3c\x3e\xf7\x3a\x9a\x88\xed\x80\xa2\xa7\x09\x3c\x19\xe9\x4d\x57\x0f\x25\xda\x98\x32\x27\x31\xcf\x81\xed\xff\x8a\x74\x47\x7d\x47\x4c\xae\x70\x7b\xd0\xe2\xce\x4d\x6e\x13\xd1\xde\xd7\x74\x71\x36\x92\xca\x0f\xfe\x3c\x18\xc1\xde\xca\xc9\xf6\x45\x36\x9e\xcf\x39\x20\x2f\x60\x1e\x8c\xf2\x13\xe0\xfb\xc9\x7e\xf2\x5f\x00\x00\x00\xff\xff\x50\x66\x5c\xc1\x4e\x0b\x00\x00" func lockedtokensAdminUnlock_tokens_for_multiple_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3890,11 +3890,11 @@ func lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb5, 0x33, 0xad, 0xc4, 0x84, 0xb9, 0x27, 0xb, 0x5e, 0xc1, 0xf8, 0xc8, 0xcc, 0xc0, 0x2f, 0xd7, 0x2d, 0x3f, 0x7f, 0x86, 0x98, 0x3d, 0xfd, 0x37, 0x47, 0x9d, 0x29, 0x13, 0xa, 0x13, 0xc4, 0x32}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x54, 0xc3, 0x63, 0x8c, 0x56, 0x85, 0xd5, 0xc1, 0xb1, 0xfd, 0xcc, 0x48, 0x9b, 0x87, 0xa8, 0xec, 0xd6, 0x3, 0x67, 0x95, 0xfa, 0x92, 0x36, 0xbc, 0x80, 0xd3, 0x3f, 0x1f, 0x54, 0x94, 0xea, 0x4d}} return a, nil } -var _lockedtokensDelegatorDelegate_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\x4d\x6b\xdb\x40\x10\xbd\xeb\x57\x4c\x75\x28\xd2\x21\x4a\x0f\xa5\x87\x60\x37\xb8\xb1\x43\x21\xc1\x09\x71\xda\x9e\xd7\xd2\xe8\x03\xaf\x35\x62\x35\xaa\x5d\x8c\xff\x7b\x59\xed\x4a\xd9\x95\x09\x14\xaa\x8b\xd8\x9d\xb7\xf3\xde\x9b\x37\xd5\xbe\x21\xc5\x70\x2f\xe9\xf0\x4a\x3b\xac\x21\x57\xb4\x87\x70\x3c\x87\xc1\x80\xe8\xea\xa2\xda\x4a\xf4\x50\xee\xdd\x88\x7c\xa4\x74\x87\x59\x7f\xd7\x1a\xe0\xa7\xe3\xe3\xd3\xdd\xc3\x6a\xf9\xfa\xf4\xb0\x5a\x2f\x96\xcb\x97\xd5\x66\x13\x04\xac\x44\xdd\x8a\x94\x2b\xaa\x23\xb1\xa7\xae\xe6\x1b\xf8\x71\x5f\x1d\xbf\x7c\x8e\xe1\x14\x04\x00\x00\x12\x19\x4a\x92\x19\xaa\x17\xcc\x6f\xe0\xa3\xdb\x3a\xe9\x7f\xdf\xfb\xea\x1b\xfa\xb7\xe8\x24\x1b\xf0\xe8\x21\xf9\xa9\x2f\x0d\xa6\x51\xd8\x08\x85\x91\x48\x53\xc3\xb8\xe8\xb8\x5c\x98\x83\xa6\x05\xfb\xb5\x28\xf3\x64\xa4\x86\x39\xd8\x07\xc9\x96\x94\xa2\xc3\xec\x5d\x29\x5f\x23\x6d\xf9\x06\xde\xab\x6f\x98\x94\x28\xf0\x59\x70\x19\x8f\x6c\xfa\xbb\xbd\x85\x46\xd4\x55\x1a\x85\x77\xd4\xc9\x0c\x6a\x62\x30\x64\xa0\x30\x47\x85\x75\x8a\xc0\x04\x4e\xaf\x30\x0e\x7c\xc1\x83\xfb\x4b\xbd\xa2\xe3\x32\xf2\xf2\x4a\x7e\x55\x5c\x66\x4a\x1c\xc4\x56\x62\x7c\x31\xae\xc1\xc7\x75\x6b\x04\x5f\xe7\x43\xbd\x2f\xff\xb3\x76\xfd\x0c\xb8\x5f\x9a\x5e\xdd\x9b\x99\xd0\xf4\x38\x1b\x0f\x78\xc4\xb4\x63\x74\x22\xd0\x71\xb6\x2c\x76\xa8\x9e\x15\x1d\xff\xc0\x7c\x12\x8a\xb5\xb6\x44\x89\x85\x60\x52\x91\x33\x0d\xfd\x56\xf6\x09\x7c\x13\x52\xe8\xc9\x5d\xbc\x2e\x90\x4d\x46\x36\x7d\x0b\x74\xbb\x54\x39\x98\xc5\x84\xd9\x7c\xd2\xee\x14\x78\x03\x70\x74\x26\x99\x11\x84\x6b\x34\xf3\x6a\xc7\xed\x36\x7f\x87\xe0\x0c\x28\x5b\xd4\x3c\x91\x05\xc1\x95\x4f\x14\x6b\x6a\x2f\xdb\x64\x3b\x54\xa6\x1a\x7c\x7f\x19\x36\xd4\x56\x6c\x63\x9c\x5d\xf9\x4d\x0e\x36\xfc\x89\xb6\x0b\xfa\xf8\x7f\x7c\x4e\x6c\x9e\xbc\x56\x76\x61\xd6\xc4\x80\x35\x75\x45\x69\xb6\xa4\xd5\x3b\xde\xd3\x7c\x08\x9d\x0e\x76\x55\xce\xc1\xdf\x00\x00\x00\xff\xff\x3e\xde\x16\x69\xb1\x04\x00\x00" +var _lockedtokensDelegatorDelegate_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\xcd\x6e\x9b\x40\x10\xbe\xf3\x14\x53\x0e\x11\x1c\x42\x7a\xa8\x7a\xb0\xec\x46\x49\xec\xa8\x52\x22\x27\x8a\xd3\xf4\xbc\x86\xc1\x20\xaf\x19\xb4\x0c\xb5\x2b\xcb\xef\x5e\xed\x0f\x84\x25\xb2\x54\x29\x5c\x56\xec\xcc\x7e\xf3\xfd\x4c\xb9\xab\x49\x31\xdc\x4b\xda\xbf\xd2\x16\x2b\xc8\x15\xed\x20\xec\xff\xc3\xa0\xeb\x68\xab\x4d\xb9\x96\xe8\x75\x0d\xef\xfa\xce\x47\x4a\xb7\x98\x99\xbb\xc6\x36\x7e\x3d\x3c\x3e\xdd\x3d\x2c\xe6\xaf\x4f\x0f\x8b\xe5\xcd\x7c\xfe\xb2\x58\xad\x82\x80\x95\xa8\x1a\x91\x72\x49\x55\x24\x76\xd4\x56\x3c\x81\x5f\xf7\xe5\xe1\xfb\xb7\x18\x8e\x41\x00\x00\x20\x91\xa1\x20\x99\xa1\x7a\xc1\x7c\x02\x17\x43\xe8\xc4\x1c\x3f\x4d\xf5\xbd\xfb\x8f\x68\x25\xdb\xe6\x5e\x43\xf2\xa6\x2f\x6d\x4f\xad\xb0\x16\x0a\x23\x91\xa6\x76\xa2\x68\xb9\x88\x6e\x49\x29\xda\xbf\x09\xd9\x62\x0c\x17\x37\xb6\xa6\x59\x80\xfb\x1a\x94\x79\xd2\x33\x81\x19\xb8\xf7\x49\xc3\xa4\xc4\x06\x93\xb5\x41\x98\x9e\x65\xf8\x23\xd2\x4e\x4c\xe0\x5c\x7d\x65\x71\x9e\x05\x17\x71\x3f\x55\x7f\xd7\xd7\x50\x8b\xaa\x4c\xa3\xf0\x8e\x5a\x99\x41\x45\x0c\x76\x18\x28\xcc\x51\x61\x95\x22\x30\xc1\x00\x2b\x8c\x03\x9f\x78\x67\xca\x79\xde\xc6\x05\x2f\xce\xe4\x77\xc9\x45\xa6\xc4\x5e\xac\xa5\x36\x65\xe4\x66\xa7\xe7\xca\x01\x5d\xe5\x5d\xdd\x94\xff\x5b\x83\x7e\x06\x6c\x76\xca\xb0\x7c\x17\x15\x5a\x8c\x93\xd5\x82\x07\x4c\x5b\xc6\x41\x24\x3a\xed\x86\xc5\x16\xd5\xb3\xa2\xc3\x5f\x98\x8d\x42\x72\xd2\xe6\x28\x71\x23\x98\x54\x34\x70\x45\xbf\x95\x26\x89\x5b\x21\x85\x76\xf0\xc3\xeb\x0d\xb2\xcd\xca\x6d\x83\x6b\x1c\xa2\x94\x39\xd8\xbd\x85\xe9\x6c\x04\x77\x0c\x3c\x03\x06\x3c\x93\xcc\x12\xc2\x25\x5a\xbf\x9a\x7e\xf9\xed\x39\x18\x70\x02\x94\x0d\xea\x39\x91\x6b\x82\x4b\x7f\x50\xac\x47\x7b\x19\x27\xeb\xae\x32\xe6\xe0\xeb\xcb\xb0\xa6\xa6\x64\x17\xe3\xf4\xd2\x07\xd9\xbb\xf0\x47\xdc\x3e\x8c\x8f\x3f\xa3\x73\x24\xf3\xe8\x41\xb9\x85\x59\x12\x03\x56\xd4\x6e\x0a\xbb\x25\x8d\xde\x75\x33\xe6\x4b\x38\x40\x70\xab\x72\x0a\xfe\x05\x00\x00\xff\xff\x2d\xd2\xd3\x9f\xd0\x04\x00\x00" func lockedtokensDelegatorDelegate_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3910,11 +3910,11 @@ func lockedtokensDelegatorDelegate_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x18, 0x1f, 0x62, 0x9d, 0x23, 0x3b, 0xb2, 0x89, 0x1f, 0x4, 0xad, 0x2f, 0x4b, 0xfb, 0x2c, 0x9, 0x9, 0x50, 0x41, 0xed, 0xdc, 0x3a, 0xa5, 0x60, 0x56, 0x3a, 0x34, 0xac, 0x4f, 0xe2, 0x22, 0x6e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5c, 0xfe, 0x21, 0x4, 0xcf, 0x58, 0xd9, 0x7a, 0xf8, 0x68, 0x82, 0xc2, 0xf9, 0x52, 0x42, 0x1a, 0x13, 0xb4, 0x7e, 0x98, 0x0, 0x1f, 0x68, 0x46, 0xe5, 0xb9, 0x80, 0xc5, 0x2c, 0x9, 0x29, 0x31}} return a, nil } -var _lockedtokensDelegatorDelegate_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x2f\xa1\x87\xd2\x83\xd4\x8a\x34\x96\x82\xa2\xa2\xf6\x07\x4c\x77\x27\x66\x31\xee\x84\xc9\x58\x53\x8a\xff\xbd\xe8\x9a\x54\x2b\xcd\x65\x32\xec\xe3\x7d\xfb\xde\xba\x6d\xc9\xa2\x30\x61\xb3\x21\xbb\xe2\x0d\xf9\x0a\x32\xe1\x2d\xdc\xd7\x93\xd9\xcb\x78\x94\xae\x66\xe3\xd1\x74\x98\xa6\x8b\xd1\x72\x19\x45\x2a\xe8\x2b\x34\xea\xd8\xc7\xb8\xe5\x9d\xd7\x1e\xbc\xbf\xba\xfa\xf1\xa1\x0b\xdf\x11\x00\x40\x41\x0a\x9e\x2d\xa5\x54\xd0\x1a\x95\x65\x2e\x5c\x7f\xf5\xae\x08\x49\x58\xa6\x37\xb2\xe8\x64\x51\x0a\x95\x28\x14\xa3\x31\x81\x30\xdc\x69\x3e\x0c\x4b\x83\x69\x50\x39\x17\x96\x64\x41\x19\xf4\xe1\xac\x4f\x3e\x58\x84\xf7\x4f\x77\x57\xc8\xd3\x78\x3b\xa9\x9f\xe3\x63\xc2\x3f\x57\xba\x38\x5f\x2a\x0b\xae\x69\x8e\x9a\x77\xa1\xa5\x1d\xbf\xc1\x00\x4a\xf4\xce\xc4\x9d\x0b\x39\xb8\x0a\x3c\x2b\x54\xf8\x49\x16\x50\xa1\x2a\xc9\xb8\xcc\x91\x85\x12\x35\xef\x74\x5b\x8b\xf6\xa7\xa2\x22\x4b\x6e\x5b\x82\xfe\x6f\x9e\x73\x8a\x56\x10\x07\x9b\x43\xa8\x88\x6a\x32\x3b\xa5\x8b\x32\xfe\xb1\x4c\x6c\x58\x69\x41\x7b\x14\xdb\xc4\x6d\x1f\x2f\xcc\xc6\xfb\x10\xfd\x04\x00\x00\xff\xff\xf2\xb4\xba\xeb\x10\x02\x00\x00" +var _lockedtokensDelegatorDelegate_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xb1\x6e\xc2\x40\x0c\x86\xf7\x3c\x85\xc5\x80\xc2\x12\x75\xa8\x3a\xa0\x52\x44\x1b\xaa\x4a\x20\x40\x40\xbb\xbb\x39\x87\x9c\x08\xe7\xe8\xce\x29\xa9\x2a\xde\xbd\x22\x47\x02\x14\x35\x8b\x63\xd9\xfe\x7e\xff\x3e\xbd\x2b\xd8\x0a\x4c\x39\xd9\x92\x5a\xf3\x96\x8c\x83\xd4\xf2\x0e\xee\xaa\xe9\xfc\x65\x32\x8e\xd7\xf3\xc9\x78\x36\x8a\xe3\xe5\x78\xb5\x0a\x02\xb1\x68\x1c\x26\xa2\xd9\x84\xb8\xe3\xd2\x48\x1f\xde\x5f\x75\xf5\x70\xdf\x83\x9f\x00\x00\x20\x27\x01\xc3\x8a\x62\xca\x69\x83\xc2\x76\x61\xb9\xfa\xee\x5f\x29\x44\x3e\x99\xdd\xb4\x05\x35\xa2\xb0\x54\xa0\xa5\x10\x93\xc4\x2b\x60\x29\x59\xf8\xcc\xd6\xf2\xfe\x03\xf3\x92\x7a\xd0\x1d\xf9\x5a\xa3\xda\x28\x67\x9c\x2b\xb2\x4b\x4a\x61\x00\xa7\xf1\xc8\x09\x5b\xdc\x50\xf4\x59\x03\x1e\xbb\x57\x9b\xd4\xe1\xad\x9e\x7a\x0a\x8f\xc6\xff\x6c\x7a\x51\x5f\x79\xce\x02\x25\xeb\xb5\xa2\xc7\x6f\x38\x84\x02\x8d\x4e\xc2\xce\x45\x37\x68\x07\x86\x05\x1c\x7e\x91\x02\x14\x70\x05\x25\x3a\xd5\xa4\xa0\x40\xc9\x3a\x67\x44\xfb\xe3\x28\x4f\xa3\xdb\xdb\xc1\xe0\x6c\xeb\x64\xa2\x6d\x08\x3d\xe6\xe0\x0f\x47\x15\x25\xa5\xd0\xc5\x4d\xfe\x41\x46\xca\xa7\xb4\xa4\x3d\x5a\xd5\xb8\x6d\x9f\xd4\xc7\x86\x7d\x08\x7e\x03\x00\x00\xff\xff\x82\x67\xa8\xc5\x26\x02\x00\x00" func lockedtokensDelegatorDelegate_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3930,11 +3930,11 @@ func lockedtokensDelegatorDelegate_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xb5, 0x9a, 0xc5, 0xf6, 0xa3, 0xb3, 0x51, 0x42, 0xb8, 0x88, 0xa8, 0x28, 0x71, 0x66, 0x3d, 0x34, 0x4, 0x99, 0xf3, 0x94, 0x13, 0xef, 0x85, 0x3f, 0x7f, 0xa0, 0xa3, 0x40, 0x76, 0x94, 0xb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x83, 0x8f, 0xdf, 0xe7, 0x68, 0xbc, 0xec, 0x5f, 0x66, 0xce, 0xe3, 0x8d, 0xa5, 0x1f, 0xb2, 0x19, 0x24, 0x6d, 0xd6, 0x91, 0x2, 0x29, 0x5c, 0x58, 0x3c, 0x2, 0xd1, 0xb5, 0xcf, 0x4e, 0x19}} return a, nil } -var _lockedtokensDelegatorDelegate_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6a\xc2\x40\x10\xc6\xef\x79\x8a\xc1\x43\x49\x2e\xa1\x87\xd2\x83\xd4\x8a\x34\x96\x82\xa2\xe2\x9f\x07\x98\x6e\x26\x66\x31\xee\x2c\xbb\x63\x9b\x52\x7c\xf7\x62\x56\xd3\x58\xe9\x5e\x86\x61\xbf\xfd\x7e\xf3\xcd\xea\xbd\x65\x27\x30\x65\xb5\xa3\x7c\xcd\x3b\x32\x1e\x0a\xc7\x7b\xb8\xaf\xa7\xf3\x97\xc9\x38\x5b\xcf\x27\xe3\xd9\x28\xcb\x96\xe3\xd5\x2a\x8a\xc4\xa1\xf1\xa8\x44\xb3\x89\x71\xcf\x07\x23\x7d\xd8\xbc\xea\xfa\xf1\x21\x81\xef\x08\x00\xa0\x22\x01\xc3\x39\x65\x54\xd1\x16\x85\xdd\xc2\x71\xfd\xd5\xbf\x22\xa4\xa1\x99\xdd\xc8\xa2\xc6\xc2\x3a\xb2\xe8\x28\x46\xa5\x02\x61\x74\x90\x72\x14\x9a\x0b\xe6\x82\x2a\xb9\xca\xc9\x2d\xa9\x80\x01\x9c\xf5\xe9\x3b\x3b\xc7\x9f\x4f\x77\x57\xc8\xa6\xbc\x35\xea\xe7\xf8\x94\xf0\xcf\x48\x9d\xfb\x95\xb0\xc3\x2d\x2d\x50\xca\x04\x5a\xda\xe9\x0c\x87\x60\xd1\x68\x15\xf7\x3a\x72\xd0\x1e\x0c\x0b\x78\xfc\xa0\x1c\x50\xc0\x5b\x52\xba\xd0\x94\x83\x45\x29\x7b\x49\xd4\x7a\x78\xaa\x8a\xf4\x76\x3b\x30\xf8\xcd\x71\x9e\xbe\x15\xc4\x49\xf3\xfa\x18\x4c\xa8\x26\x75\x10\xea\x2c\xe1\x1f\xcb\x34\x0f\x2d\x6d\x8c\x17\x6c\x63\xb6\x9f\x16\xea\xc5\xfb\x18\xfd\x04\x00\x00\xff\xff\xfe\xc1\x9a\x73\x08\x02\x00\x00" +var _lockedtokensDelegatorDelegate_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4f\x6f\xf2\x30\x0c\xc6\xef\xfd\x14\x16\x07\xd4\x5e\xaa\xf7\xf0\x6a\x07\x34\x86\xd8\xca\x34\x09\x04\x88\x3f\xbb\x7b\xa9\x4b\x23\x4a\x5c\x25\xee\xd6\x69\xe2\xbb\x4f\x34\xd0\x95\xa1\xe5\x62\x59\xb6\x7f\xcf\x63\x47\x1f\x4a\xb6\x02\x33\x56\x7b\x4a\x37\xbc\x27\xe3\x20\xb3\x7c\x80\x7f\xf5\x6c\xf1\x34\x9d\x24\x9b\xc5\x74\x32\x1f\x27\xc9\x6a\xb2\x5e\x07\x81\x58\x34\x0e\x95\x68\x36\x21\x1e\xb8\x32\x32\x80\xed\xb3\xae\xef\xfe\x47\xf0\x15\x00\x00\x14\x24\x60\x38\xa5\x84\x0a\xda\xa1\xb0\x5d\x5a\xae\x3f\x07\x57\x0a\xb1\x4f\xe6\x37\x6d\x41\x83\x28\x2d\x95\x68\x29\x44\xa5\xbc\x02\x56\x92\x87\x8f\x6c\x2d\x7f\xbc\x62\x51\x51\x04\xfd\xb1\xaf\x5d\x54\x2f\xca\x39\x17\x29\xd9\x15\x65\x30\x84\xf3\x78\xec\x84\x2d\xee\x28\x7e\x6b\x00\xf7\xfd\x2b\x27\x4d\x78\x69\xa6\x1e\xc2\xd3\xe2\xbf\x9c\x76\xea\x6b\xcf\x59\xa2\xe4\x51\x2b\x7a\x7a\xa3\x11\x94\x68\xb4\x0a\x7b\x9d\x6e\xd0\x0e\x0c\x0b\x38\x7c\xa7\x14\x50\xc0\x95\xa4\x74\xa6\x29\x85\x12\x25\xef\x45\x41\xcb\x70\x54\x64\xf1\xed\xcd\x60\xf8\xb3\xce\xd9\x7c\xdb\x10\x7a\x07\x47\x0f\xa1\x9a\x54\x25\xd4\xb9\xc5\x1f\xc8\x38\xf5\x29\x6d\x8d\x13\x6c\xb7\x6c\xbf\xd2\xc7\x0b\xfb\x18\x7c\x07\x00\x00\xff\xff\x5f\xbb\xfb\xa9\x1e\x02\x00\x00" func lockedtokensDelegatorDelegate_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3950,11 +3950,11 @@ func lockedtokensDelegatorDelegate_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x89, 0xfe, 0xf6, 0x67, 0xf, 0x7b, 0x3, 0xf4, 0x14, 0x99, 0xaa, 0x92, 0xe3, 0xd4, 0x35, 0x90, 0x51, 0x4f, 0x83, 0x36, 0xd6, 0xf9, 0xed, 0x2a, 0x9f, 0x37, 0x1, 0x43, 0x9f, 0xd5, 0x50, 0x8f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd5, 0x50, 0x2c, 0x33, 0x7e, 0xb3, 0x8f, 0x30, 0xc2, 0x11, 0xc3, 0x5, 0x60, 0xe9, 0xb, 0x30, 0xa9, 0xe0, 0xf5, 0xd0, 0xc9, 0xab, 0x9e, 0xbe, 0xa6, 0xc5, 0x2f, 0x3c, 0x2a, 0x40, 0xb0, 0xa8}} return a, nil } -var _lockedtokensDelegatorGet_delegator_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xdf\x4a\xf3\x40\x10\xc5\xef\xf7\x29\xce\xd7\x8b\x8f\xcd\x4d\x11\xbd\x2b\x6a\x29\x4d\xc1\xd2\x62\x4b\x5b\x1f\x60\xb3\x99\xc4\xa5\x9b\x9d\xb0\x99\xa0\x22\xbe\xbb\x24\xd1\x5a\xff\xcc\xcd\xc2\x70\xce\xf9\xed\x1c\x57\xd5\x1c\x05\x6b\xb6\x47\xca\x0f\x7c\xa4\xd0\xa0\x88\x5c\xe1\xe2\x79\xbd\x99\xaf\x16\xe9\x61\xb3\x5a\xdc\xcf\xd2\x74\xb7\xd8\xef\x95\x32\xd6\x52\xd3\x68\xe3\x7d\x82\xa2\x0d\xa8\x8c\x0b\xda\x58\xcb\x6d\x90\x09\x66\x79\x1e\xa9\x69\x92\x09\x1e\x96\x41\xae\x2e\xf1\xaa\x14\x00\x78\x12\xf8\x9e\x30\x1b\xa4\xcb\x50\xf0\x8e\x0a\xdc\xa0\x24\xf9\xd8\x7d\xc6\x24\xbd\xa5\x9b\x71\x49\x32\x37\xb5\xc9\x9c\x77\xf2\x72\xfd\xff\xfc\x93\xe3\xfe\xb9\x63\x9f\x53\xbc\xd5\x27\x4b\x37\xdf\x64\xeb\x9f\xd8\x6d\x9b\x79\x67\xb7\x46\x1e\x4f\xa6\x33\x62\xc6\x31\xf2\x93\xfe\xda\x4c\xa7\xa8\x4d\x70\x56\x8f\xe6\xdc\xfa\x1c\x81\x05\x83\x08\x06\x91\x0a\x8a\x14\x2c\x41\x18\x75\x1f\x8c\x5f\xc0\x51\x32\x94\x10\x49\xda\x18\xfe\xec\xa1\x3b\x34\x25\x4f\xa5\x11\x8e\xcb\x54\x27\xff\xd4\x9b\x7a\x0f\x00\x00\xff\xff\xc4\xad\x7d\x8c\x9a\x01\x00\x00" +var _lockedtokensDelegatorGet_delegator_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcf\x6a\xf3\x30\x10\xc4\xef\x7a\x8a\x4d\x0e\x1f\xd2\x25\x7c\xb4\xb7\xd0\x36\x98\xd8\x50\x13\xd3\x84\x24\x7d\x00\x59\x5e\xbb\x22\xb2\xd6\x48\x6b\x5a\x28\x7d\xf7\x62\xbb\x4d\xfa\x6f\x2f\x02\x31\xb3\xbf\xd9\xb1\x6d\x47\x81\xa1\x20\x73\xc2\xea\x48\x27\xf4\x11\xea\x40\x2d\xfc\x7f\x29\xb6\xeb\x4d\x96\x1e\xb7\x9b\xec\x21\x49\xd3\x7d\x76\x38\x08\xa1\x8d\xc1\x18\xa5\x76\x4e\x41\xdd\x7b\x68\xb5\xf5\x52\x1b\x43\xbd\xe7\x25\x24\x55\x15\x30\x46\xb5\x84\xc7\xdc\xf3\xf5\x15\xbc\x0a\x01\x00\xe0\x90\xc1\x8d\x84\x64\x92\xe6\xbe\xa6\x3d\xd6\x70\x0b\x0d\xf2\xc7\xdf\xe7\x1a\x35\x5a\x86\x59\x18\xdd\xe9\xd2\x3a\xcb\x16\xe3\xa2\x41\xbe\xf9\xf7\x35\xe7\x62\x7c\xee\xc9\x55\x18\xee\xe4\xd9\x35\xcc\x37\x59\xf1\x93\xbc\xeb\x4b\x67\xcd\x4e\xf3\xd3\xd9\xa4\x66\x17\x6a\x49\x21\xd0\xb3\xbc\xe4\x58\xad\xa0\xd3\xde\x1a\x39\x5f\x53\xef\x2a\xf0\xc4\x30\x89\x40\x43\xc0\x1a\x03\x7a\x83\xc0\x04\xdd\xb8\x19\x7e\x11\xe7\x6a\x2a\x22\x20\xf7\xc1\xff\xd9\xc5\x70\x5f\x8a\x0e\x1b\xcd\x14\xf2\x54\xaa\x99\x78\x13\xef\x01\x00\x00\xff\xff\x4a\x09\xbd\x3d\x9e\x01\x00\x00" func lockedtokensDelegatorGet_delegator_idCdcBytes() ([]byte, error) { return bindataRead( @@ -3970,11 +3970,11 @@ func lockedtokensDelegatorGet_delegator_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0x45, 0x26, 0x28, 0x0, 0x9e, 0x9d, 0x16, 0x8f, 0x3e, 0x88, 0x31, 0x36, 0x91, 0x96, 0x34, 0xdc, 0x16, 0x16, 0xb3, 0xfa, 0x23, 0x32, 0xa1, 0x76, 0x92, 0x32, 0x6e, 0x70, 0x2c, 0xd, 0xc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb7, 0x9, 0x93, 0xd2, 0xbb, 0xf1, 0xb5, 0xe3, 0x96, 0xa9, 0xa5, 0x95, 0x21, 0xa2, 0xb7, 0xba, 0x8b, 0x2a, 0x9a, 0x7f, 0x8b, 0x76, 0xae, 0x46, 0xe6, 0x2d, 0xcd, 0xc9, 0x6, 0x70, 0xd, 0x5}} return a, nil } -var _lockedtokensDelegatorGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4f\x8b\xe2\x4e\x10\xbd\xe7\x53\x94\x73\x90\x04\x86\xf8\x3b\xcb\x2f\x0b\x62\x5c\x56\x46\x9c\x41\xbd\x0d\x73\xe8\xa4\x2b\xda\x6b\xdb\x15\xba\x5b\xdc\x41\xfc\xee\x4b\xfe\x18\xd3\x26\x82\x6c\x2e\xc1\xea\xf7\xaa\x5e\xd7\x7b\x46\x1c\x72\xd2\x16\x7e\x4a\x3a\xcd\xe3\x0d\x4b\x24\xae\x2d\xdb\x0b\xb5\x85\x4c\xd3\x01\x5e\xba\x07\x2f\x5e\xcd\x59\x50\xba\x47\xbe\xa1\x3d\x2a\x53\xa1\xff\xfb\xb3\x78\x9f\xbe\xcd\xe2\xcd\xfb\xdb\x6c\x39\x89\xe3\xd5\x6c\xbd\xf6\xbc\xd1\x08\x56\x68\x8f\x5a\x19\x60\x0a\x98\xd6\xec\x1b\x28\x83\x18\x25\x6e\x99\x25\x3d\x57\x19\x01\x25\xbf\x31\xb5\x06\xec\x8e\x59\xb0\x3b\x04\x96\xa6\x74\x54\x16\x52\x52\x56\x93\x34\x45\x1b\xa1\x40\x58\x03\x8a\xf4\x81\xc9\x06\xc1\x14\x07\xb3\x63\x1a\xf9\xb5\xe4\x79\x2c\x4d\xd1\x18\x9f\x49\x19\x40\x76\x54\x70\x60\x42\xf9\xf5\xe9\x18\x26\x9c\x6b\x34\x26\x18\xc3\x67\xf7\x7e\xa1\x23\xec\x0b\xce\x9e\x07\x00\x20\xd1\x02\x6f\x9f\x4c\x8a\x8b\x3c\xd5\x21\x82\xcf\xaf\x5b\x93\xfc\x98\x4c\x6a\xe5\x11\x6c\xd1\xd6\x3f\xae\xea\x82\x9e\x71\x53\x96\x43\xd4\x22\x96\x88\xe2\x09\xb7\x68\xa7\x2c\x67\x89\x90\xc2\x7e\xff\x3f\x3c\xf7\x88\x59\x12\xc7\x46\xd0\xc7\x31\x91\x22\xbd\xfc\xf0\x9b\x16\xc5\x33\xca\xcb\xf2\x28\x93\x74\xaa\x69\x0d\xa3\x01\xd6\xc2\x44\xe6\x6a\x5b\x61\x06\x91\x23\x35\x4c\x48\x6b\x3a\xf9\x01\x9c\x1b\x72\x41\x11\x85\xcf\x51\x4f\xd4\xdc\x7d\xb9\xd2\x14\x71\x9c\xc7\x63\x67\x5e\x58\x15\x5f\x1d\xe0\xcd\x9b\x7b\xb4\xe0\xad\x3b\x74\xe1\x57\x2b\x43\x96\xe7\xa8\xb8\x5f\xc8\xac\x70\x97\x9b\x15\xb2\xcc\x7a\xbd\xfe\x82\xf2\xb4\x25\xed\x7f\x49\x58\xbe\x7e\x91\xe4\xa8\xef\x2c\x70\x60\x8b\xfb\x69\x95\x6d\x1f\xcc\xee\x1e\xd8\xd1\xd1\x57\xd9\xd2\x27\xfb\x91\x3d\xd5\x52\xfb\x48\xc5\x12\xb7\x68\x1b\x97\x96\x25\xd2\x0f\x1c\x7a\x6b\xff\xcf\xf4\x28\xf9\x4d\x03\x91\x5d\xc7\x0f\x22\x50\x42\xc2\x70\xe8\x34\xac\xab\x67\x67\x65\xff\x9c\xa9\x76\xae\xaa\xf7\xe0\xb5\x03\xe8\xcf\xd3\x3c\x1e\x38\xc8\xe0\x41\x06\x1f\x87\xaa\x0a\x56\x2b\x5e\xba\xfc\x36\xf6\x70\xbd\x8b\xf7\x37\x00\x00\xff\xff\xb0\x2f\x5f\x0b\x9e\x05\x00\x00" +var _lockedtokensDelegatorGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4d\x8f\xda\x30\x10\xbd\xfb\x57\x0c\x7b\x40\x89\xb4\x0a\x3d\xa3\xa6\x12\xda\x50\x15\x2d\x62\x57\xc0\x6d\xb5\x07\x27\x9e\x04\x17\x63\x47\xb6\x23\x5a\x21\xfe\x7b\x95\x0f\x42\x4c\x82\x44\x37\x97\x88\xf1\x7b\x33\xcf\xf3\x1e\xe1\x87\x5c\x69\x0b\x3f\x85\x3a\x2e\xa2\x2d\x8d\x05\x6e\x2c\xdd\x73\x99\x41\xaa\xd5\x01\x9e\xfa\x07\x4f\xa4\xe1\x2c\x55\xb2\x47\xb6\x55\x7b\x94\xa6\x46\x7f\xfb\xb3\x7c\x7b\x79\x9d\x47\xdb\xb7\xd7\xf9\x6a\x16\x45\xeb\xf9\x66\x43\xc8\x64\x02\x6b\xb4\x85\x96\x06\xa8\x04\xaa\x35\xfd\x0b\x2a\x85\x08\x05\x66\xd4\x2a\xbd\x90\xa9\x02\x15\xff\xc6\xc4\x1a\xb0\x3b\x6a\xc1\xee\x10\x68\x92\xa8\x42\x5a\x48\x94\xb4\x5a\x09\x53\xb6\xe1\x12\xb8\x35\x20\x95\x3e\x50\xd1\x22\xa8\x64\x60\x76\x54\x23\xbb\x94\x08\xa1\x49\x82\xc6\x78\x54\x08\x1f\xd2\x42\xc2\x81\x72\xe9\x35\xa7\x53\x98\x31\xa6\xd1\x18\x7f\x0a\x1f\xfd\xfb\x05\x8e\xb0\x4f\x38\x11\x02\x00\x20\xd0\x02\xeb\x9e\xcc\xca\x8b\x3c\xd4\x21\x84\x8f\xcf\x6b\x93\xbc\x88\x67\x8d\xf2\x10\x32\xb4\xcd\x8f\x8b\x3a\x7f\x60\xdc\x0b\xcd\x21\xec\x10\x2b\x44\xf9\x04\x09\xcd\x69\xcc\x05\xb7\x1c\x4d\x90\xa1\xfd\x3e\x3e\x0d\xe8\x59\x29\x86\xad\xa6\xf7\x22\x16\x3c\x39\xff\xf0\xda\x2e\xe5\x33\xc9\xab\xf2\x24\x15\xea\xd8\xd0\x5a\x46\x0b\xf4\x47\xb5\x38\x9e\xba\xfa\xd6\x98\x42\xe8\xc8\x0d\x62\xa5\xb5\x3a\x7a\x3e\x9c\x5a\x76\x49\xe1\xa5\xd7\xe1\x40\xdc\xdc\x9d\xb9\xda\xa4\x62\xb8\x88\xa6\xce\xbc\xa0\x2e\x3e\x3b\xc0\xab\x3f\xb7\x68\xce\xae\x97\x20\x7d\xf8\xc5\xce\x80\xe6\x39\x4a\xe6\x95\x32\x6b\xdc\xf9\x6a\x87\xa8\xf2\xde\x58\x50\x52\xfe\xc7\x96\xee\x9f\x25\xa8\x5e\xbf\x94\x60\xa8\x6f\x6c\x70\x60\xcb\xdb\x81\xb5\x75\xef\xd4\xee\xee\x59\xd2\xd3\x58\x5b\x33\x24\xfd\x9e\x45\xf5\x62\x87\x48\xe5\x22\x33\xb4\xad\x53\xab\x0a\xe9\xf9\x0e\xbd\xe3\xc1\x23\x3d\x2a\x7e\xdb\x80\xa7\x97\xf1\xa3\x10\x24\x17\x30\x1e\x3b\x0d\x9b\xea\xc9\xd9\xd9\x97\x73\xd5\xcd\x56\xfd\x1e\x3d\xf7\x00\xc3\x99\x5a\x44\x23\x07\xe9\xdf\xc9\xe1\xfd\x60\xd5\xe1\xea\x44\x4c\x57\xdf\xc8\x01\x2e\x39\x93\x7f\x01\x00\x00\xff\xff\x26\x75\x5f\x79\xa6\x05\x00\x00" func lockedtokensDelegatorGet_delegator_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -3990,11 +3990,11 @@ func lockedtokensDelegatorGet_delegator_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0xda, 0xfb, 0x16, 0xfd, 0x90, 0x7d, 0x88, 0x9a, 0xc8, 0xbb, 0xee, 0xa0, 0xc7, 0xc0, 0x6a, 0x40, 0xa7, 0xb8, 0xdc, 0xf, 0x52, 0x5d, 0xf3, 0xad, 0xe5, 0xe7, 0xe7, 0xee, 0xda, 0x86, 0x16}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0x50, 0x96, 0xec, 0xed, 0xa4, 0x44, 0x87, 0xe1, 0x5c, 0xfc, 0xc2, 0xfa, 0x38, 0xf, 0x8b, 0x4, 0xd5, 0x1a, 0xc3, 0x5d, 0x54, 0xe2, 0x59, 0x3f, 0xc7, 0x6f, 0xc1, 0xfc, 0xf5, 0xdd, 0xe5}} return a, nil } -var _lockedtokensDelegatorGet_delegator_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcf\x6a\xf3\x30\x10\xc4\xef\x7a\x8a\xfd\x72\xf8\x90\x2f\xa1\xe7\xd0\x36\x84\xd8\xd0\x10\x93\x84\x38\x2f\x20\x4b\x6b\x57\x44\xd6\x9a\xf5\x9a\xb6\x94\xbe\x7b\xb1\xdd\xa6\xe9\x9f\xbd\x08\x96\x99\xf9\x69\xc7\x37\x2d\xb1\x40\x4e\xf6\x8c\xee\x44\x67\x8c\x1d\x54\x4c\x0d\xdc\x3c\xe7\xfb\xf5\x36\x4b\x4f\xfb\x6d\xb6\x5b\xa5\xe9\x31\x2b\x0a\xa5\x8c\xb5\xd8\x75\xda\x84\x90\x40\xd5\x47\x68\x8c\x8f\xda\x58\x4b\x7d\x94\x05\xac\x9c\x63\xec\xba\x64\x01\x85\xb0\x8f\x35\xbc\x2a\x05\x00\x10\x50\x20\x8c\x84\xd5\x24\xdd\xc4\x8a\x8e\x58\xc1\x1d\xd4\x28\x1f\xbb\xcf\x98\x64\xb4\x0c\x33\xaf\x51\xd6\xa6\x35\xa5\x0f\x5e\x5e\x6e\xff\x5f\x7f\x72\x3e\x3e\x0f\x14\x1c\xf2\xbd\xbe\x58\x86\xf9\x26\xcb\x7f\x62\x0f\x7d\x19\xbc\x3d\x18\x79\xbc\x98\xae\x88\x25\x31\xd3\x93\xfe\xda\x2c\x97\xd0\x9a\xe8\xad\x9e\xad\xa9\x0f\x0e\x22\x09\x4c\x22\x30\xc0\x58\x21\x63\xb4\x08\x42\xd0\x8e\xc1\xf0\x0b\x38\x4b\xa6\x12\x18\xa5\xe7\xf8\x67\x0f\xc3\xa1\x29\x06\xac\x8d\x10\xef\xc8\xe1\x26\xd5\xc9\x3f\xf5\xa6\xde\x03\x00\x00\xff\xff\x8b\x50\x78\x4f\x9e\x01\x00\x00" +var _lockedtokensDelegatorGet_delegator_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xdf\x6a\x32\x31\x10\xc5\xef\xf3\x14\xa3\x17\x1f\xc9\x8d\x7c\xd7\xd2\x56\xc4\x15\x2a\x8a\x8a\xfa\x02\x31\x99\xdd\x06\xb3\x99\x65\x32\x4b\x0b\xa5\xef\x5e\x76\xb7\xd5\xfe\x9b\x9b\x40\x38\x67\x7e\x67\x4e\xa8\x1b\x62\x81\x0d\xb9\x0b\xfa\x13\x5d\x30\x65\x28\x99\x6a\xf8\xff\xb2\xd9\x2d\xd6\xcb\xe2\xb4\x5b\x2f\xb7\xf3\xa2\x38\x2c\x8f\x47\xa5\xac\x73\x98\xb3\xb6\x31\x1a\x28\xdb\x04\xb5\x0d\x49\x5b\xe7\xa8\x4d\x32\x85\xb9\xf7\x8c\x39\x9b\x29\x1c\x85\x43\xaa\xe0\x55\x29\x00\x80\x88\x02\xb1\x27\xcc\x07\xe9\x2a\x95\x74\xc0\x12\xee\xa1\x42\xf9\xf8\xfb\x5c\x63\x7a\x4b\x37\x13\x67\x1b\x7b\x0e\x31\x48\xc0\x3c\xa9\x50\xee\xfe\x7d\xcd\x39\xe9\x9f\x47\x8a\x1e\xf9\x41\x5f\x5d\xdd\x7c\x93\x6d\x7e\x92\xf7\xed\x39\x06\xb7\xb7\xf2\x74\x35\x99\xd1\x8d\x7a\x26\x66\x7a\xd6\xb7\x1c\xb3\x19\x34\x36\x05\xa7\xc7\x0b\x6a\xa3\x87\x44\x02\x83\x08\x2c\x30\x96\xc8\x98\x1c\x82\x10\x34\xfd\x66\xf8\x45\x1c\x9b\xa1\x08\x46\x69\x39\xfd\xd9\x45\x77\x5f\x81\x11\x2b\x2b\xc4\x5b\xf2\xb8\x2a\xb4\x19\xa9\x37\xf5\x1e\x00\x00\xff\xff\xa6\x2a\x70\xd1\xa2\x01\x00\x00" func lockedtokensDelegatorGet_delegator_node_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4010,11 +4010,11 @@ func lockedtokensDelegatorGet_delegator_node_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_node_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4c, 0x41, 0x6a, 0x34, 0x8c, 0x74, 0xbf, 0x4c, 0x48, 0xd6, 0xb4, 0x20, 0xcd, 0x6e, 0x1e, 0xc2, 0x24, 0x77, 0x51, 0x3, 0x4e, 0xe3, 0x64, 0x32, 0x21, 0xa2, 0x45, 0x48, 0xae, 0xfd, 0xe8, 0xc2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe8, 0x58, 0x4e, 0x3f, 0x69, 0xdd, 0x3, 0x9a, 0xac, 0x6a, 0xd3, 0x8e, 0x57, 0x8f, 0x94, 0x62, 0xdf, 0xa7, 0x1f, 0xb6, 0xd4, 0x9b, 0x2a, 0x63, 0x25, 0x50, 0xd5, 0x15, 0xe7, 0x9e, 0x37, 0x4c}} return a, nil } -var _lockedtokensDelegatorRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x53\x41\x6f\xdb\x3c\x0c\xbd\xfb\x57\xf0\xf3\xe1\x83\x0d\xac\xee\x0e\xc3\x0e\x41\xbb\xa2\xab\x5b\xac\x68\x97\x16\x49\xb6\x9d\x15\x8b\xb6\x85\xc8\x92\x27\xd1\x4d\x86\x20\xff\x7d\x90\xe5\x38\x76\xb2\xec\x0f\x2c\x97\xc0\x22\xf9\xf8\xde\x23\x29\xaa\x5a\x1b\x82\x07\xa9\xd7\x0b\xbd\x42\x05\xb9\xd1\x15\x84\xfd\x77\x18\x74\x19\xcf\x3a\x5b\x21\x6f\xdf\xac\x4f\x7a\xbf\x79\x7e\xb9\x7b\xba\x4f\x17\x2f\x4f\xf7\xd3\xdb\x34\x9d\xdd\xcf\xe7\xc1\x00\xef\x31\x5d\xb0\xa5\xc4\x39\xb1\x95\x50\xc5\x00\x78\x1c\xe8\x3b\x3c\x34\xaa\x10\x4b\x89\x23\x1e\xc3\xb7\x30\x08\xc8\x30\x65\x59\x46\x42\xab\x48\xf0\x09\xcc\xc9\x08\x55\xbc\x03\x56\xe9\x46\xd1\x04\xbe\x3d\x88\xcd\xc7\x0f\x31\x6c\x83\x00\x00\x40\x22\x41\xa9\x25\x47\x33\xc3\x7c\x02\xff\x0f\x45\x24\xed\xdf\x97\x36\x7a\xc8\x7e\x63\x8d\x24\x9f\xdc\x7b\x90\x7c\x77\x8f\x3e\xa7\x36\x58\x33\x83\x11\xcb\x32\xdf\xf1\xb6\xa1\xf2\xd6\x7f\xb8\xb6\xd0\xfd\x2c\xca\x3c\xe9\x5b\xc3\x35\x74\x05\xc9\x52\x1b\xa3\xd7\x57\x67\xa9\x7c\x8a\x9c\xf2\x09\x9c\x8b\xcf\x49\x1b\x56\xe0\x2b\xa3\x32\x86\xbe\x9d\xfb\xdd\xdc\x40\xcd\x94\xc8\xa2\x70\x90\x0e\xc2\x82\xd2\x04\x96\xbd\x21\x07\x46\x60\x6b\xcc\x44\x2e\x90\x43\xcd\xa8\x0c\xe3\x60\x4c\x79\xaf\xff\x94\x31\x6b\xa8\x8c\x46\xf3\x48\x7e\x08\x2a\xb9\x61\x6b\x37\xcd\xf8\xc4\xb0\xbd\x92\x4b\xeb\x29\x5f\xe6\xfb\x78\x1b\x8e\xcf\x90\xbf\xd3\x8d\xe4\x2d\x67\xdf\x18\x5c\x19\x50\xbb\x14\x2d\x3b\x30\x98\xa3\x41\x95\x61\xe8\x31\x76\x5e\x03\x6e\x30\x6b\x08\x07\x43\x70\x03\x95\xad\x8f\x9f\x99\x64\x2a\x43\xb8\x3e\x1a\x4c\x52\x20\x79\xa7\xbb\x19\x76\x89\xd1\xc0\x17\x91\x77\xeb\x05\x57\xd7\x47\x70\xdb\x60\x24\xe2\x08\x3b\x33\xc8\x08\xa7\x9a\x63\x8a\x12\x0b\x46\xda\x44\x4a\x73\x7c\x4c\x27\x20\x78\x3c\xae\x75\x5c\x2d\xb1\x15\x9a\x57\xa3\x37\xbf\x4e\x99\x7a\x37\x0e\x48\x47\xf5\x83\xda\x84\xfb\x24\x9c\xa2\xf7\xdb\x46\xfb\xfb\xe8\x84\x5c\xfc\xe1\x40\x9d\x15\x3d\xfa\x57\xa1\x44\xd5\x54\x2e\x84\x33\xfc\xd9\x08\x83\x15\x2a\x8a\xe2\x41\xd7\x1d\xa0\xb4\xe8\xec\x89\xa2\x1e\x77\xe4\x4f\xec\x1c\x1b\xad\x55\xb2\xdc\x47\xfe\x6e\x1d\xc7\x5a\x5b\x41\xdd\x06\x5d\x5d\x8c\x41\xd6\xdd\xde\x9d\xca\x1a\xb7\x3f\xb6\xe8\x5f\x1c\xcf\x76\x44\xa3\xbb\xb1\xa9\x26\x40\xa5\x9b\xa2\xf4\x87\x65\x81\xb4\xa7\xf8\x5f\x78\xb8\xcb\x5d\x77\x5d\xbb\xe0\x77\x00\x00\x00\xff\xff\xdb\xa8\x21\xd9\x26\x06\x00\x00" +var _lockedtokensDelegatorRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x53\xc1\x4e\xdb\x40\x10\xbd\xfb\x2b\xa6\x3e\x20\x5b\x2a\xa6\x87\xaa\x87\x08\x8a\x80\x80\x8a\xa0\x01\x11\x4a\xcf\x1b\xef\xd8\x5e\x65\xbd\xeb\xee\x8e\x49\x2a\x94\x7f\xaf\xd6\xbb\x31\x76\xd2\xf4\x07\xea\x4b\x94\x9d\x37\x6f\xde\xbc\x99\x11\x75\xa3\x0d\xc1\x8d\xd4\xab\x67\xbd\x44\x05\x85\xd1\x35\xc4\xfd\xff\x38\x0a\x88\x7b\x9d\x2f\x91\x77\x6f\xd6\x83\x3e\xad\xef\x1f\xae\xee\xae\xa7\xcf\x0f\x77\xd7\xb3\x8b\xe9\xf4\xe9\x7a\x3e\x8f\x06\x7c\xb7\xd3\x67\xb6\x90\x38\x27\xb6\x14\xaa\x1c\x10\x8f\x03\x7d\x85\x9b\x56\x95\x62\x21\x71\xa4\x63\xf8\x16\x47\x11\x19\xa6\x2c\xcb\x49\x68\x95\x08\x3e\x81\x39\x19\xa1\xca\x8f\xc0\x6a\xdd\x2a\x9a\xc0\x8f\x1b\xb1\xfe\xf2\x39\x85\xb7\x28\x02\x00\x90\x48\x50\x69\xc9\xd1\x3c\x61\x31\x81\xa3\x61\x13\x59\xf7\xf3\xad\x8b\xbe\xa3\x5f\x59\x2b\xc9\x83\x7b\x0f\xb2\x17\xf7\xe8\x31\x8d\xc1\x86\x19\x4c\x58\x9e\xfb\x8a\xac\xa5\x2a\xb9\xd4\xc6\xe8\xd5\x0b\x93\x2d\xa6\x70\x74\xe1\x63\x4e\x05\x84\xcf\xa2\x2c\xb2\x5e\x09\x9c\x41\xc8\xcf\x2c\x69\xc3\x4a\xcc\x16\x1d\xc3\xe9\x41\x85\x5f\x13\x67\xc8\x04\x0e\xc5\xe7\x9e\xe7\x91\x51\x95\xf6\x55\xdd\x77\x7e\x0e\x0d\x53\x22\x4f\xe2\x01\x1a\x84\x05\xa5\x09\x2c\x7b\x45\x0e\x8c\xc0\x36\x98\x8b\x42\x20\x87\x86\x51\x15\xa7\xd1\x58\xf9\xd6\x95\xc3\xc2\x3b\x1b\x46\xd3\xca\x7e\x0a\xaa\xb8\x61\x2b\x37\xeb\x74\xcf\xce\x6d\x43\x27\x81\xe8\xa4\xd8\xc6\xbb\xf0\xa1\x26\xae\x74\x2b\x79\xa7\xdd\x17\x06\x97\x06\xd4\xad\x4c\xa7\x12\x0c\x16\x68\x50\xe5\x18\x7b\x8e\x8d\xef\x05\xd7\x98\xb7\x84\x83\x99\xb8\x71\xcb\xce\xce\x4b\x26\x99\xca\x11\xce\x76\xe6\x94\x95\x48\xde\xf0\x30\xd2\x00\x4c\x06\xfe\x88\x22\x2c\x1f\x9c\x9e\xed\xd0\xbd\x45\xa3\x26\x76\xb8\x73\x83\x8c\x70\xa6\x39\x4e\x51\x62\xc9\x48\x9b\x44\x69\x8e\xb7\xd3\x09\x08\x9e\x8e\x73\x9d\x56\x4b\x6c\x89\xe6\xd1\xe8\xf5\xef\x7d\xa5\xde\x8d\x77\xa6\x9d\xfc\x41\x6e\xc6\x3d\x08\x67\xe8\xfd\xb6\xc9\xf6\x7a\x42\x23\xc7\x7f\x39\x5f\x67\x45\xcf\xfe\x5d\x28\x51\xb7\xb5\x0b\xe1\x13\xfe\x6a\x85\xc1\x1a\x15\x25\xe9\xa0\xea\x06\x50\x5a\x74\xf6\x24\x49\xcf\x3b\xf2\x27\x75\x8e\x8d\xd6\x2b\x5b\x6c\x23\xff\xb6\x8e\x63\xa3\xad\xa0\xb0\x41\xa7\xc7\x63\x92\x55\xd8\xbb\xfd\xb6\xc6\xe5\x77\x2d\xfa\x1f\xc7\xf3\x36\x92\x11\x6e\x6c\xa6\x09\x50\xe9\xb6\xac\xfc\x61\x59\x20\xed\x25\x7e\x88\xdf\xef\x72\x13\xae\x6b\x13\xfd\x09\x00\x00\xff\xff\x42\xa1\x4c\xd9\x44\x06\x00\x00" func lockedtokensDelegatorRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -4030,11 +4030,11 @@ func lockedtokensDelegatorRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x91, 0xd9, 0x77, 0x22, 0xa7, 0x8d, 0xfc, 0xd1, 0x1e, 0xec, 0x25, 0x54, 0xf7, 0x7c, 0x6c, 0xef, 0x31, 0x1d, 0xf4, 0xf8, 0xa3, 0x68, 0x6a, 0x28, 0xd6, 0x22, 0xf0, 0x2b, 0x20, 0xf3, 0xe7, 0xc0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7b, 0xa5, 0x28, 0x8a, 0xea, 0x5c, 0x35, 0x77, 0x33, 0x90, 0x99, 0xe5, 0xc4, 0x20, 0x76, 0x19, 0x7, 0x3b, 0x3e, 0xd9, 0xec, 0x9d, 0xc9, 0xa2, 0xf4, 0x6, 0xf5, 0xc1, 0x24, 0x84, 0x9e, 0x4e}} return a, nil } -var _lockedtokensDelegatorRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xdf\x6a\xf2\x40\x10\xc5\xef\xf3\x14\x83\x17\x1f\xf1\x26\x7c\x17\xa5\x17\x52\x2b\xd2\x58\x0a\x8a\x8a\x7f\x1e\x60\xba\x99\x98\xc5\xb8\x93\xce\x4e\xda\x94\xe2\xbb\x17\x5d\x4d\xb5\xd2\xdc\x4c\x86\x3d\x9c\xdf\x9e\xb3\x76\x57\xb1\x28\x4c\xd8\x6c\x29\x5b\xf1\x96\x9c\x87\x5c\x78\x07\xff\x9b\xc9\xec\x69\x3c\x4a\x57\xb3\xf1\x68\x3a\x4c\xd3\xc5\x68\xb9\x8c\x22\x15\x74\x1e\x8d\x5a\x76\x31\xee\xb8\x76\xda\x83\xf5\xb3\x6d\xee\xef\xba\xf0\x15\x01\x00\x94\xa4\xe0\x38\xa3\x94\x4a\xda\xa0\xb2\xcc\x85\x9b\xcf\xde\x15\x21\x09\xcb\xf4\x46\x16\x1d\x2d\x2a\xa1\x0a\x85\x62\x34\x26\x10\x86\xb5\x16\xc3\xb0\x9c\x31\x67\x54\xc1\x65\x46\xb2\xa0\x1c\xfa\x70\xd2\x27\xaf\x2c\xc2\x1f\x0f\xff\xae\x90\xc7\xf1\x72\x54\x3f\xc6\x87\x84\xbf\xae\x74\x71\xbe\x54\x16\xdc\xd0\x1c\xb5\xe8\x42\x4b\x3b\x7c\x83\x01\x54\xe8\xac\x89\x3b\x17\x72\xb0\x1e\x1c\x2b\x78\x7c\xa7\x0c\x50\xc1\x57\x64\x6c\x6e\x29\x83\x0a\xb5\xe8\x74\x5b\x8b\xf6\xc7\x53\x99\x27\xb7\x2d\x41\xff\x27\xcf\x29\x45\x2b\x88\x83\xcd\x3e\x54\x44\x0d\x99\x5a\xe9\xa2\x8c\x3f\x2c\x13\xa1\xb7\x9a\xbc\xae\x9d\x57\xdc\x5a\xb7\x69\x9f\x2d\xcc\xb3\xeb\x3e\xfa\x0e\x00\x00\xff\xff\xb1\xf9\x7f\xb3\x0a\x02\x00\x00" +var _lockedtokensDelegatorRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4f\x6f\xf2\x30\x0c\xc6\xef\xfd\x14\x16\x07\x54\x2e\xd5\x7b\x78\xb5\x03\x1a\x43\x6c\x65\x9a\x04\x02\xc4\x9f\xdd\xbd\xd4\xa5\x11\x25\xee\x12\x77\xeb\x34\xf1\xdd\x27\x1a\x28\x65\x68\xb9\x38\x91\xed\xdf\x63\x3f\xd1\xfb\x82\xad\xc0\x94\xd5\x8e\x92\x35\xef\xc8\x38\x48\x2d\xef\xe1\x5f\x35\x9d\x3f\x4d\xc6\xf1\x7a\x3e\x19\xcf\x46\x71\xbc\x1c\xaf\x56\x41\x20\x16\x8d\x43\x25\x9a\x4d\x88\x7b\x2e\x8d\xf4\x61\xf3\xac\xab\xbb\xff\x3d\xf8\x0e\x00\x00\x72\x12\x30\x9c\x50\x4c\x39\x6d\x51\xd8\x2e\x2c\x57\x5f\xfd\x2b\x85\xc8\x3f\x66\x37\x65\x41\x8d\x28\x2c\x15\x68\x29\x44\xa5\xbc\x02\x96\x92\x85\x8f\x6c\x2d\x7f\xbe\x62\x5e\x52\x0f\xba\x23\x9f\x3b\xab\x9e\x95\x33\xce\x13\xb2\x4b\x4a\x61\x00\xa7\xf6\xc8\x09\x5b\xdc\x52\xf4\x56\x03\xee\xbb\x57\x93\xd4\xe1\xa5\xee\x7a\x08\x8f\x8b\xff\x9a\xb4\x95\x5f\x79\xce\x02\x25\xeb\x35\xa2\xc7\x33\x1c\x42\x81\x46\xab\xb0\xd3\xaa\x06\xed\xc0\xb0\x80\xc3\x0f\x4a\x00\x05\x5c\x41\x4a\xa7\x9a\x12\x28\x50\xb2\xce\x05\xd1\x5c\x1c\xe5\x69\x74\xeb\x1d\x0c\x2e\x6b\x9d\x96\x68\x0a\x42\x8f\x39\x78\xe3\xa8\x22\x55\x0a\xb5\x3c\xf9\x03\x19\x59\x7a\x2f\xc9\xc9\xc6\x38\xc1\x9d\x36\xdb\xe6\x33\x7d\x3c\x53\x0f\xc1\x4f\x00\x00\x00\xff\xff\x5a\x36\xb3\xb4\x20\x02\x00\x00" func lockedtokensDelegatorRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -4050,11 +4050,11 @@ func lockedtokensDelegatorRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x54, 0x4a, 0xf3, 0x42, 0x72, 0x6b, 0xbf, 0x51, 0x4d, 0x3a, 0xe6, 0x9b, 0xce, 0x42, 0xbc, 0x7, 0x8b, 0xa6, 0x15, 0x6a, 0xda, 0xb7, 0x66, 0x6b, 0xa8, 0xbd, 0x2e, 0xf1, 0x0, 0x96, 0x7, 0x4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb5, 0x5e, 0x1b, 0xf9, 0x3b, 0x7e, 0xb, 0xcd, 0xc5, 0xa4, 0x5a, 0x97, 0xaa, 0xee, 0xab, 0xac, 0x9d, 0x2, 0x2e, 0x78, 0x9c, 0xe4, 0xba, 0x19, 0x54, 0x63, 0xa1, 0x36, 0x4d, 0xf7, 0x22, 0x32}} return a, nil } -var _lockedtokensDelegatorWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x6f\x82\x40\x10\x85\xef\xfc\x8a\x09\x87\x06\x0e\xc5\x1e\x9a\x1e\x8c\xd6\x18\xd1\x34\xd1\x54\xa3\xb6\xf7\x2d\x0c\x42\x5c\x19\xb2\x0c\x42\xd3\xf8\xdf\x1b\x58\xa0\x48\xf4\xd2\xbd\x6c\x96\x79\x3b\xef\x9b\xb7\x44\xa7\x84\x14\xc3\x8a\xbc\x23\xfa\x7b\x3a\x62\x9c\x42\xa0\xe8\x04\x4f\xc5\x6a\x3d\x5b\xce\xdd\xfd\x7a\x39\x7f\x9f\xba\xee\x76\xbe\xdb\x19\xb5\x7a\x21\x29\xaf\xb4\x5a\x6a\xb6\x67\xd3\x30\x58\x89\x38\x15\x1e\x47\x14\x5b\xe2\x44\x59\xcc\x43\xf8\x58\x44\xc5\xcb\xb3\x0d\x3f\x86\x01\x00\x20\x91\x21\x24\xe9\xa3\xda\x62\x30\x84\x87\xae\xb9\x53\x6d\x6f\x55\xb5\x15\x9f\x45\x26\x59\x6b\x5b\x2b\xe7\xb3\xfc\xa8\x1b\x26\x0a\x13\xa1\xd0\x12\x9e\xa7\x0d\xa7\x19\x87\x53\x7d\x28\x5d\xa1\x5e\x29\xca\xc0\x69\x9d\x61\x0c\xf5\x05\xe7\x8b\x94\xa2\x7c\x74\x97\xe4\xd5\x2a\x07\x1d\xc2\xbd\xfa\x8e\x49\x89\x03\x6e\x04\x87\x36\xb4\x76\xe5\x9a\x4c\x20\x11\x71\xe4\x59\xe6\x8c\x32\xe9\x43\x4c\x0c\xda\x0d\x14\x06\xa8\x30\xf6\x10\x98\xa0\xd3\xcc\xb4\x8d\x6b\xe2\x66\xfc\x1b\xc0\xbd\x38\x1a\xce\x41\xaa\x81\x06\x41\x53\xaf\xca\xf6\xbf\xd0\xfe\x5e\xfb\x2c\x64\x86\xa6\xee\x72\xd1\x90\x58\xa0\x97\x31\x76\x42\x2e\x1f\xcc\x47\x89\x07\xc1\xa4\x36\x8a\x8a\x6f\x18\xf7\x92\xaf\xf1\xdd\x46\x65\x75\x26\xbe\xbe\xea\xe4\x11\x87\xbe\x12\xf9\x16\x73\xa1\xfc\x26\xfb\xf6\xcf\xd2\xbb\x7d\x3b\x2f\xc7\xc7\x84\xd2\x88\xeb\x50\x46\x8f\x3d\x8a\xa6\x77\xbf\x5b\x33\xe0\xc5\xf8\x0d\x00\x00\xff\xff\xfe\x31\x8d\xb4\x1e\x03\x00\x00" +var _lockedtokensDelegatorWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x8f\xa2\x40\x10\x85\xef\xfc\x8a\x0a\x07\x03\x87\xc5\x3d\x6c\xf6\x60\x74\x8d\x2b\x9a\x49\x34\xa3\x51\xc7\x7b\x0f\x14\x42\x6c\x29\xd2\x14\xc2\x64\xe2\x7f\x9f\x40\x03\x83\x64\x9c\xc3\xf4\xa5\x03\xf5\xfa\xd5\xd7\xaf\x3a\xba\x24\xa4\x18\xd6\xe4\x9d\xd1\x3f\xd0\x19\xe3\x14\x02\x45\x17\xf8\x5d\xac\x37\xf3\xd5\xc2\x3d\x6c\x56\x8b\xe7\x99\xeb\xee\x16\xfb\xbd\x51\xab\x97\x92\xf2\x4a\xab\xa5\x66\xfb\x6d\x1a\x06\x2b\x11\xa7\xc2\xe3\x88\x62\x4b\x5c\x28\x8b\x79\x04\x2f\xcb\xa8\xf8\xfb\xc7\x86\x77\xc3\x00\x00\x90\xc8\x10\x92\xf4\x51\xed\x30\x18\xc1\xa0\xdb\xdc\xa9\xb6\xa7\xaa\xda\x8a\xaf\x22\x93\xac\xb5\x6d\x2b\xe7\x58\xfe\xd4\x86\x89\xc2\x44\x28\xb4\x84\xe7\xe9\x86\x22\xe3\xd0\xfa\x4f\x4a\x51\x7e\x14\x32\x43\x1b\x06\x33\x5d\x2b\x21\xa0\x5e\x29\xca\xc0\x69\x41\x60\x02\xf5\x79\x27\x65\x52\xe2\x84\xce\x6b\xe5\x30\x7e\x08\xf8\xcf\x2a\xef\x3f\x82\x47\xf5\xbd\xf6\xd9\x0a\x0e\xed\xb6\x6b\xb9\xa6\x53\x48\x44\x1c\x79\x96\x39\xa7\x4c\xfa\x10\x13\x83\x6e\x06\x0a\x03\x54\x18\x7b\x08\x4c\xd0\xf1\x32\x6d\xe3\x1e\xbc\x09\xe5\x1b\xee\x5e\x58\x0d\xee\xb0\xd6\x0d\x83\xa6\x5e\x95\x7f\x86\xf8\xf9\x16\xae\x65\xd2\xa6\x76\xb9\x69\x58\x2c\xd0\xcb\x18\x3b\x99\x97\xe3\xf4\x51\xe2\x49\x30\xa9\xad\xa2\xe2\x0d\x26\xbd\x41\xd4\xf8\x6e\xa3\xb2\x3a\x37\xbf\x3f\xea\xe4\x11\x87\xbe\x12\xf9\x0e\x73\xa1\xfc\x66\x04\xed\xbb\xd3\xbb\xfd\x75\x6e\x8e\x8f\x09\xa5\x11\xd7\xa1\x8c\x7f\xf5\x28\x1a\xef\xbe\x5b\x73\xc1\x9b\xf1\x11\x00\x00\xff\xff\xca\x7a\xb2\x50\x3c\x03\x00\x00" func lockedtokensDelegatorWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4070,11 +4070,11 @@ func lockedtokensDelegatorWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x34, 0xa4, 0x8c, 0xb5, 0xa0, 0xe8, 0xbb, 0xed, 0x30, 0x2, 0x92, 0x8a, 0xc9, 0x36, 0x90, 0x64, 0x59, 0x4e, 0xd9, 0x10, 0x6c, 0x42, 0xe4, 0x45, 0x6b, 0x85, 0x35, 0xdd, 0xc0, 0x76, 0x12, 0x71}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb, 0x32, 0x4e, 0xd0, 0x52, 0xb8, 0x4c, 0x90, 0x2, 0xb, 0x9c, 0x8c, 0x61, 0x87, 0x18, 0x8c, 0xb2, 0x1e, 0x6e, 0xb3, 0x1a, 0x7, 0x94, 0x8d, 0x53, 0x1a, 0x3, 0xe0, 0xe8, 0x37, 0xcb, 0x5d}} return a, nil } -var _lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x2f\xa1\x87\xd2\x83\xd4\x8a\x34\x96\x82\xa2\xa2\xf6\x07\x4c\x77\x27\x66\x31\xee\x84\xc9\xd8\xa4\x14\xff\x7b\xd1\x98\x34\x56\x9a\xcb\x64\xd8\xc7\xfb\xf6\xbd\x75\xfb\x9c\x45\x61\xc6\x66\x47\x76\xc3\x3b\xf2\x05\x24\xc2\x7b\xb8\xaf\x66\x8b\x97\xe9\x24\xde\x2c\xa6\x93\xf9\x38\x8e\x57\x93\xf5\x3a\x08\x54\xd0\x17\x68\xd4\xb1\x0f\x71\xcf\x07\xaf\x03\x78\x7f\x75\xd5\xe3\x43\x1f\xbe\x03\x00\x80\x8c\x14\x3c\x5b\x8a\x29\xa3\x2d\x2a\xcb\x52\xb8\xfa\x1a\x5c\x11\xa2\x7a\x99\xdf\xc8\x82\xb3\x45\x2e\x94\xa3\x50\x88\xc6\xd4\x84\xf1\x41\xd3\x71\xbd\x34\x98\x06\x95\x72\x66\x49\x56\x94\xc0\x10\x2e\xfa\xe8\x83\x45\xb8\x7c\xba\xbb\x42\x9e\xc7\xdb\x59\xfd\x1c\x9e\x12\xfe\xb9\x52\xe7\x7c\xad\x2c\xb8\xa5\x25\x6a\xda\x87\x96\x76\xfa\x46\x23\xc8\xd1\x3b\x13\xf6\x3a\x72\x70\x05\x78\x56\x28\xf0\x93\x2c\xa0\x42\x91\x93\x71\x89\x23\x0b\x39\x6a\xda\xeb\xb7\x16\xed\x4f\x41\x59\x12\xdd\xb6\x04\xc3\xdf\x3c\x97\x14\xad\x20\xac\x6d\x8e\x75\x45\x54\x91\x39\x28\x75\xca\xf8\xc7\x32\x2a\x9d\xa6\x56\xb0\x5c\x51\x89\x62\x9b\xb8\xed\xe3\xd5\xb3\xf1\x3e\x06\x3f\x01\x00\x00\xff\xff\x93\x68\x03\x07\x10\x02\x00\x00" +var _lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6f\xea\x30\x0c\xc7\xef\xfd\x14\x16\x07\x54\x2e\xd5\x3b\x3c\xbd\x03\x7a\x0c\xb1\x95\x69\x12\x08\x10\xb0\xdd\xbd\xc6\xa5\x11\x25\xae\x12\x77\xed\x34\xf1\xdd\x27\x1a\x5a\x60\x68\xb9\x38\x91\xed\xdf\xdf\x7f\x47\x1f\x0a\xb6\x02\x73\x4e\xf6\xa4\xb6\xbc\x27\xe3\x20\xb5\x7c\x80\x3f\xf5\x7c\xf9\x34\x9b\xc6\xdb\xe5\x6c\xba\x98\xc4\xf1\x7a\xba\xd9\x04\x81\x58\x34\x0e\x13\xd1\x6c\x42\x3c\x70\x69\x64\x08\xaf\xcf\xba\xfe\xf7\x77\x00\x5f\x01\x00\x40\x4e\x02\x86\x15\xc5\x94\xd3\x0e\x85\xed\xca\x72\xfd\x39\xbc\x51\x88\xfc\x63\x71\x57\x16\x34\x88\xc2\x52\x81\x96\x42\x4c\x12\xaf\x80\xa5\x64\xe1\x23\x5b\xcb\xd5\x1b\xe6\x25\x0d\xa0\x3f\xf1\xb9\x56\xb5\x55\xce\x38\x57\x64\xd7\x94\xc2\x08\xce\xed\x91\x13\xb6\xb8\xa3\xe8\xbd\x01\xfc\xef\xdf\x4c\xd2\x84\x97\xa6\xeb\x21\x3c\x19\xff\x31\xe9\x55\x7e\xe3\x39\x2b\x94\x6c\xd0\x89\x9e\xce\x78\x0c\x05\x1a\x9d\x84\xbd\xab\x6a\xd0\x0e\x0c\x0b\x38\xfc\x20\x05\x28\xe0\x0a\x4a\x74\xaa\x49\x41\x81\x92\xf5\x2e\x88\xee\xe2\x28\x4f\xa3\xfb\xdd\xc1\xe8\x62\xeb\x6c\xa2\x2b\x08\x3d\xe6\xe8\x17\x47\x35\x25\xa5\xd0\xd5\x4e\x7e\x41\x46\x95\x96\x4c\x59\xac\xd6\x54\xa1\x55\xad\xdb\xee\x4b\x7d\x6c\xd9\xc7\xe0\x3b\x00\x00\xff\xff\xe3\xbb\x11\x29\x26\x02\x00\x00" func lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdcBytes() ([]byte, error) { return bindataRead( @@ -4090,11 +4090,11 @@ func lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6d, 0x82, 0x3d, 0xe0, 0xb7, 0x1e, 0xf7, 0xed, 0x59, 0xb8, 0x4, 0xce, 0x38, 0xb6, 0x6e, 0x9a, 0x69, 0x60, 0x72, 0x8, 0x27, 0xcf, 0xa5, 0x8, 0x5f, 0x3e, 0xb7, 0x74, 0xcb, 0xaa, 0x37, 0xfe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0xe7, 0xd, 0x57, 0x13, 0x6, 0xb5, 0xb6, 0x36, 0x28, 0xa9, 0xf9, 0xbe, 0x3b, 0x8c, 0xa2, 0x16, 0x59, 0x1e, 0xf2, 0x6, 0x18, 0xa6, 0x3a, 0x4d, 0xef, 0x56, 0x4, 0x32, 0x67, 0xa7, 0xa5}} return a, nil } -var _lockedtokensDelegatorWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xdf\x6a\xf2\x40\x10\xc5\xef\xf3\x14\x83\x17\x1f\xf1\x26\x7c\x17\xa5\x17\x52\x2b\xd2\x58\x0a\x8a\x8a\x7f\x1e\x60\xba\x99\x98\xc5\xb8\x13\x66\xc7\x9a\x52\x7c\xf7\xa2\xd1\x6d\xac\x34\x37\x93\x61\x0f\xe7\xb7\xe7\xac\xdd\x55\x2c\x0a\x13\x36\x5b\xca\x56\xbc\x25\xe7\x21\x17\xde\xc1\xff\x7a\x32\x7b\x19\x8f\xd2\xd5\x6c\x3c\x9a\x0e\xd3\x74\x31\x5a\x2e\xa3\x48\x05\x9d\x47\xa3\x96\x5d\x8c\x3b\xde\x3b\xed\xc1\xfa\xd5\xd6\x8f\x0f\x5d\xf8\x8a\x00\x00\x4a\x52\x70\x9c\x51\x4a\x25\x6d\x50\x59\xe6\xc2\xf5\x67\xef\x86\x90\x34\xcb\xf4\x4e\x16\x9d\x2d\x2a\xa1\x0a\x85\x62\x34\xa6\x21\x0c\xf7\x5a\x0c\x9b\xe5\x8a\xb9\xa2\x0a\x2e\x33\x92\x05\xe5\xd0\x87\x8b\x3e\x79\x67\x11\x3e\x3c\xfd\xbb\x41\x9e\xc7\xdb\x59\xfd\x1c\x9f\x12\xfe\xba\x52\xeb\x7c\xa9\x2c\xb8\xa1\x39\x6a\xd1\x85\x40\x3b\x7d\x83\x01\x54\xe8\xac\x89\x3b\x2d\x39\x58\x0f\x8e\x15\x3c\x7e\x50\x06\xa8\xe0\x2b\x32\x36\xb7\x94\x41\x85\x5a\x74\xba\xc1\x22\xfc\x78\x2a\xf3\xe4\xbe\x25\xe8\xff\xe4\xb9\xa4\x08\x82\xb8\xb1\x39\x36\x15\x51\x4d\x66\xaf\xd4\x2a\xe3\x0f\xcb\xe4\x60\xb5\xc8\x04\x0f\x6b\xe7\x15\x43\xdc\xf0\x78\xcd\xbc\x7a\x1f\xa3\xef\x00\x00\x00\xff\xff\xbc\x5c\xb3\x29\x10\x02\x00\x00" +var _lockedtokensDelegatorWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4f\x6f\xf2\x30\x0c\xc6\xef\xfd\x14\x16\x07\x54\x2e\xd5\x7b\x78\xb5\x03\x1a\x43\x6c\x65\x9a\x04\x02\xc4\x9f\xdd\xbd\xd4\xa5\x11\x25\xae\x12\x77\x74\x9a\xf8\xee\x13\x0d\x94\x32\xb4\x5c\x9c\xc8\xf6\xef\xf1\xe3\xe8\x7d\xc1\x56\x60\xca\x6a\x47\xc9\x9a\x77\x64\x1c\xa4\x96\xf7\xf0\xaf\x9a\xce\x5f\x26\xe3\x78\x3d\x9f\x8c\x67\xa3\x38\x5e\x8e\x57\xab\x20\x10\x8b\xc6\xa1\x12\xcd\x26\xc4\x3d\x97\x46\xfa\xb0\x79\xd5\xd5\xc3\xff\x1e\x7c\x07\x00\x00\x39\x09\x18\x4e\x28\xa6\x9c\xb6\x28\x6c\x17\x96\xab\xaf\xfe\x8d\x42\xe4\x1f\xb3\xbb\xb2\xa0\x46\x14\x96\x0a\xb4\x14\xa2\x52\x5e\x01\x4b\xc9\xc2\x67\xb6\x96\x0f\xef\x98\x97\xd4\x83\xee\xc8\xe7\x2e\xaa\x17\xe5\x8c\xf3\x84\xec\x92\x52\x18\xc0\xb9\x3d\x72\xc2\x16\xb7\x14\x7d\xd4\x80\xc7\xee\xcd\x24\x75\x78\xab\xbb\x9e\xc2\x93\xf1\x5f\x93\xb6\xf2\x2b\xcf\x59\xa0\x64\xbd\x46\xf4\x74\x86\x43\x28\xd0\x68\x15\x76\x5a\xd5\xa0\x1d\x18\x16\x70\xf8\x49\x09\xa0\x80\x2b\x48\xe9\x54\x53\x02\x05\x4a\xd6\xb9\x22\x9a\x8b\xa3\x3c\x8d\xee\x77\x07\x83\xab\xad\xb3\x89\xa6\x20\xf4\x98\xa3\x5f\x1c\x55\xa4\x4a\xa1\xd6\x4e\xfe\x40\x46\x07\x2d\x59\x62\xf1\xb0\x31\x4e\xb0\x71\xdb\x7c\xa9\x8f\x17\xf6\x31\xf8\x09\x00\x00\xff\xff\xcc\x8f\xa1\x07\x26\x02\x00\x00" func lockedtokensDelegatorWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4110,11 +4110,11 @@ func lockedtokensDelegatorWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x76, 0x6b, 0xcd, 0x92, 0x2d, 0xc7, 0x26, 0xf1, 0x84, 0xdd, 0xbf, 0xe1, 0x63, 0x85, 0x81, 0xc6, 0xbc, 0xb9, 0x4b, 0x27, 0xa4, 0x96, 0xfc, 0xab, 0x2c, 0x32, 0x7a, 0x19, 0xc1, 0xcc, 0xec, 0x30}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xd3, 0xcd, 0x71, 0xa1, 0x5c, 0x7f, 0x60, 0xae, 0xdb, 0x1e, 0xba, 0x6e, 0xb4, 0x9d, 0xd2, 0x64, 0xc8, 0x2b, 0xe4, 0x25, 0xd8, 0x3e, 0x5d, 0xa8, 0x40, 0x51, 0xf, 0xe2, 0xe3, 0x81, 0x27}} return a, nil } -var _lockedtokensStakerGet_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcf\x6a\xf3\x30\x10\xc4\xef\x7a\x8a\xf9\x72\xf8\x90\x2f\xa1\xe7\xd0\x36\x84\xd8\xd0\x10\x93\x84\x38\x2f\x20\x4b\x6b\x57\x44\xd6\x1a\x59\xa6\x2d\xa5\xef\x5e\x6c\xb7\x69\xfa\x67\x2f\x82\x65\x66\x7e\xda\xb1\x4d\xcb\x21\x22\x67\x7d\x26\x73\xe2\x33\xf9\x0e\x55\xe0\x06\x37\xcf\xf9\x7e\xbd\xcd\xd2\xd3\x7e\x9b\xed\x56\x69\x7a\xcc\x8a\x42\x08\xa5\x35\x75\x9d\x54\xce\x25\xa8\x7a\x8f\x46\x59\x2f\x95\xd6\xdc\xfb\xb8\xc0\xca\x98\x40\x5d\x97\x2c\x50\xc4\x60\x7d\x8d\x57\x21\x00\xc0\x51\x84\x1b\x09\xab\x49\xba\xf1\x15\x1f\xa9\xc2\x1d\x6a\x8a\x1f\xbb\xcf\x98\x64\xb4\x0c\x33\xaf\x29\xae\x55\xab\x4a\xeb\x6c\x7c\xb9\xfd\x7f\xfd\xc9\xf9\xf8\x3c\xb0\x33\x14\xee\xe5\xc5\x32\xcc\x37\x59\xfe\x13\x7b\xe8\x4b\x67\xf5\x41\xc5\xc7\x8b\xe9\x8a\x58\x72\x08\xfc\x24\xbf\x36\xcb\x25\x5a\xe5\xad\x96\xb3\x35\xf7\xce\xc0\x73\xc4\x24\x82\x42\xa0\x8a\x02\x79\x4d\x88\x8c\x76\x0c\xc6\x2f\xe0\x2c\x99\x4a\x08\x14\xfb\xe0\xff\xec\x61\x38\x74\xc7\x86\x36\xa9\x4c\xfe\x89\x37\xf1\x1e\x00\x00\xff\xff\xc4\x5d\x37\x5b\x95\x01\x00\x00" +var _lockedtokensStakerGet_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcf\x6a\x32\x31\x14\xc5\xf7\x79\x8a\xa3\x8b\x8f\x64\x23\xdf\x5a\xda\x8a\x38\x42\x45\x51\x51\x5f\x20\x26\x77\xa6\xc1\x4c\xee\x90\x64\x68\xa1\xf4\xdd\xcb\xcc\xb4\xda\x7f\x77\x13\x08\xe7\xdc\xdf\xb9\xc7\xd5\x0d\xc7\x8c\x0d\x9b\x0b\xd9\x13\x5f\x28\x24\x94\x91\x6b\xfc\x7f\xd9\xec\x16\xeb\x65\x71\xda\xad\x97\xdb\x79\x51\x1c\x96\xc7\xa3\x10\xda\x18\x4a\x49\x6a\xef\x15\xca\x36\xa0\xd6\x2e\x48\x6d\x0c\xb7\x21\x4f\x31\xb7\x36\x52\x4a\x6a\x8a\x63\x8e\x2e\x54\x78\x15\x02\x00\x3c\x65\xf8\x9e\x30\x1f\xa4\xab\x50\xf2\x81\x4a\xdc\xa3\xa2\xfc\xf1\xf7\xb9\x46\xf5\x96\x6e\x26\x46\x37\xfa\xec\xbc\xcb\x8e\xd2\xa4\xa2\x7c\xf7\xef\x6b\xce\x49\xff\x3c\xb2\xb7\x14\x1f\xe4\xd5\xd5\xcd\x37\xd9\xe6\x27\x79\xdf\x9e\xbd\x33\x7b\x9d\x9f\xae\x26\x35\xba\x51\xcf\x1c\x23\x3f\xcb\x5b\x8e\xd9\x0c\x8d\x0e\xce\xc8\xf1\x82\x5b\x6f\x11\x38\x63\x10\x41\x23\x52\x49\x91\x82\x21\x64\x46\xd3\x6f\xc6\x2f\xe2\x58\x0d\x45\x44\xca\x6d\x0c\x7f\x76\xd1\xdd\xb7\x65\x4b\xab\x42\xaa\x91\x78\x13\xef\x01\x00\x00\xff\xff\x7f\x01\x3c\x6e\x99\x01\x00\x00" func lockedtokensStakerGet_node_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4130,11 +4130,11 @@ func lockedtokensStakerGet_node_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/get_node_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0xe, 0x1c, 0xd5, 0x4f, 0x7f, 0x7e, 0xd5, 0xc2, 0x4, 0x7, 0x1e, 0x32, 0x6c, 0xa3, 0x68, 0x2e, 0xda, 0xf7, 0x98, 0x4a, 0xbd, 0x4c, 0xc2, 0xac, 0xa2, 0xc, 0x50, 0x4e, 0x16, 0xd7, 0xac}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x97, 0xb1, 0x3d, 0x93, 0xa6, 0x1b, 0x6c, 0x64, 0xb4, 0x3d, 0xa3, 0xb7, 0xa3, 0x96, 0x73, 0xfe, 0x8f, 0xb6, 0xc3, 0x6c, 0x61, 0x71, 0x55, 0xa7, 0x77, 0x7c, 0x7a, 0xd0, 0xef, 0x9c, 0xab, 0x6f}} return a, nil } -var _lockedtokensStakerGet_staker_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x93\x41\x6f\xe2\x30\x10\x85\xef\xfe\x15\xa3\x1e\x56\xc9\x25\xdd\x33\xda\xac\x84\x08\xab\x45\x45\x6d\x05\xdc\xaa\x1e\x26\xf1\x04\xbc\x18\x3b\xb2\x27\xea\x56\x88\xff\xbe\x72\x12\x52\x02\x54\x54\xeb\x0b\xc2\x9e\xef\xf9\xf1\x9e\x51\xbb\xca\x3a\x86\x5f\xda\xbe\xcd\xb2\x15\xe6\x9a\x96\x8c\x5b\x65\xd6\x50\x3a\xbb\x83\xbb\xcb\x83\x3b\xd1\x31\x73\x5b\x6c\x49\xae\xec\x96\x8c\x6f\xa7\xbf\xff\x9d\x3f\x4d\x1e\xa6\xd9\xea\xe9\x61\xfa\x38\xce\xb2\xc5\x74\xb9\x14\xe2\xfe\x1e\x16\xc4\xb5\x33\x1e\xd0\x00\x3a\x87\xef\x60\x4b\x78\xb4\x92\x66\xa6\xb4\x60\xf3\x3f\x54\xb0\x07\xde\x20\x03\x6f\x08\xb0\x28\x6c\x6d\x18\x0a\x6b\xd8\x59\xed\x83\x82\x32\xa0\xd8\x83\xb1\x6e\x87\xba\x9f\x40\x23\xc1\x6f\xd0\x91\x3c\x6e\x09\x81\x45\x41\xde\x47\xa8\x75\x0c\x65\x6d\x60\x87\xca\x44\xdd\xe9\x08\xc6\x52\x3a\xf2\x3e\x1e\xc1\xcb\xe5\x4f\x4b\x8e\x9e\x5e\x61\x2f\x04\x00\x80\x26\x06\xd3\x6d\x8e\x83\xf3\x5b\x5c\x0a\x2f\xaf\x1f\x68\x55\xe7\xe3\xce\x6a\x0a\x6b\xe2\xee\xcb\xd1\x4e\x3c\xbc\x24\xa8\x91\x9b\x60\x05\xe9\x09\xd9\x8c\x84\x95\xac\x89\x27\x58\x61\xae\xb4\xe2\xf7\x1f\xdf\xf6\x9f\x18\x69\x65\x9e\xeb\x5c\xab\xe2\xf0\x33\xea\xf9\xb0\xbe\x80\x3c\x23\x6f\x7a\xa6\x73\xa8\xca\x33\x93\x0b\x2a\x21\x1d\x9a\x4e\x72\xeb\x9c\x7d\x8b\x62\xd8\xf7\x78\x80\x54\xe8\x38\xfd\xec\xe6\x90\x5a\xd4\x24\x9c\x8d\x86\xfa\x89\x92\x71\x2f\x34\xe8\x20\xc1\xaa\x22\x23\xa3\xa0\xdc\x8e\x1c\x3e\x82\xd4\xcd\xab\xec\xb2\x0b\xc8\x97\xf3\x3c\x7d\xcf\x49\xf3\xf1\xdb\x6a\x49\xee\x2c\xc2\xc1\xd8\xfc\xfc\xb6\x9b\x19\x5e\xf8\x6b\xa3\xbc\x66\xfb\x5a\xa2\x27\x4d\xcc\xb2\x6b\x5c\x48\x6e\x4d\xdc\x64\x9b\x0d\xd0\xff\x2c\x64\x96\xc5\x03\x89\x1b\x55\xb4\x75\x9c\x94\xe2\x9a\xff\xfe\x10\x13\x07\xf1\x2f\x00\x00\xff\xff\x5f\x5b\xab\xa7\x79\x04\x00\x00" +var _lockedtokensStakerGet_staker_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x94\x5f\x6f\xda\x30\x14\xc5\xdf\xfd\x29\xee\xfa\x30\x25\x2f\xe9\x9e\xd1\x32\x09\x35\x4c\x43\x45\x6d\x05\xbc\x55\x7d\xb8\xb1\x6f\xc0\xc3\xd8\x91\xed\xa8\x9b\x10\xdf\x7d\x72\x12\x52\xcc\x1f\xb1\xcd\x2f\x08\xfb\xfe\x8e\x0f\xe7\x58\xc8\x6d\x6d\xac\x87\xef\xca\xbc\x4f\x8b\x25\x96\x8a\x16\x1e\x37\x52\xaf\xa0\xb2\x66\x0b\x77\xe7\x07\x77\xac\x67\x66\x86\x6f\x48\x2c\xcd\x86\xb4\xeb\xa6\xbf\xfc\x9a\x3d\x3f\x3c\x4e\x8a\xe5\xf3\xe3\xe4\x69\x5c\x14\xf3\xc9\x62\xc1\xd8\xfd\x3d\xcc\xc9\x37\x56\x3b\x40\x0d\x68\x2d\xfe\x06\x53\xc1\x93\x11\x34\xd5\x95\x01\x53\xfe\x24\xee\x1d\xf8\x35\x7a\xf0\x6b\x02\xe4\xdc\x34\xda\x03\x37\xda\x5b\xa3\x5c\x50\x90\x1a\xa4\x77\xa0\x8d\xdd\xa2\x1a\x26\x50\x0b\x70\x6b\xb4\x24\x0e\x5b\x8c\x21\xe7\xe4\x5c\x82\x4a\xa5\x50\x35\x1a\xb6\x28\x75\xd2\x9f\x8e\x60\x2c\x84\x25\xe7\xd2\x11\xbc\x9e\xff\xb4\xec\xe0\xe9\x0d\x76\x8c\x01\x00\x28\xf2\xa0\xfb\xcd\x71\x70\x7e\x8b\xcb\xe1\xf5\xed\x03\xad\x9b\x72\xdc\x5b\xcd\x61\x45\xbe\xff\x72\xb0\x93\xc6\x97\x04\x35\xb2\x0f\x58\x43\x7e\x44\xb6\x23\x61\x65\x1c\x6b\x2c\xa5\x92\x5e\x92\xcb\x56\xe4\xbf\x7e\xde\x5d\xf1\xd2\x29\xbd\x34\xa5\x92\x7c\xff\x2d\x19\x24\xc2\xfa\x0b\xe4\x05\xfd\x7a\x60\xd2\x4f\x9d\x4b\x59\x9d\x18\x9d\x53\x05\x79\x6c\x3c\x2b\x8d\xb5\xe6\x3d\x49\x61\x37\xf0\x01\x92\xa1\xe7\xfc\xda\xd5\x21\xb9\xa4\x4d\xb9\x18\xc5\xfa\x99\x14\xe9\x20\x14\xf5\x90\x61\x5d\x93\x16\x49\x50\xee\x46\xf6\x1f\x61\xaa\xf6\x65\xf6\xf9\x05\xe4\x5f\x32\x3d\x7e\xd6\x59\xfb\xf1\xc3\x28\x41\xf6\x24\xc6\x68\x6c\x76\x7a\xe1\xed\x1c\xcf\x3c\x76\x71\x5e\xb2\x7e\x29\xd5\xa3\x36\xa6\xc5\x25\x2e\xa4\xb7\x22\xdf\xe6\x5b\x44\xe8\x7f\x96\x32\x2d\xd2\x48\xe2\x46\x1d\x5d\x25\x47\xc5\xd8\xf6\x3f\x20\xc6\xd8\x9e\xfd\x09\x00\x00\xff\xff\x4c\x99\xe5\xa6\x81\x04\x00\x00" func lockedtokensStakerGet_staker_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -4150,11 +4150,11 @@ func lockedtokensStakerGet_staker_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/get_staker_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0xf2, 0x60, 0xf9, 0x29, 0x5d, 0x15, 0x23, 0xff, 0x64, 0x8, 0x90, 0x40, 0xb7, 0x34, 0x11, 0x71, 0x75, 0x88, 0xd7, 0x36, 0x82, 0xcc, 0x59, 0xa7, 0x7a, 0x9b, 0x92, 0xbe, 0xb8, 0xe1, 0xb7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1a, 0xb6, 0xf9, 0x18, 0xa, 0x76, 0x3e, 0x66, 0x7f, 0x67, 0x88, 0x9c, 0x2b, 0xce, 0xd, 0xb0, 0xbc, 0xc8, 0xc2, 0x8b, 0x47, 0x19, 0x96, 0xd1, 0x93, 0xe9, 0x4, 0x4d, 0x7, 0x52, 0x9e, 0x28}} return a, nil } -var _lockedtokensStakerRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x8f\xda\x30\x10\xbd\xe7\x57\x4c\x73\xa8\x12\x69\x37\xdb\x43\x55\x55\x11\x74\x45\x17\xb6\x45\xac\x00\x11\xb6\x1f\x47\x93\x4c\x12\x0b\x63\x23\xc7\x29\xac\x10\xff\xbd\x72\x9c\x2f\x43\xb7\xea\xa5\x1c\x48\x3c\xf3\x32\xef\xcd\xcb\x0b\xdd\xed\x85\x54\xf0\xc8\xc4\x61\x2d\xb6\xc8\x21\x95\x62\x07\x6e\x7b\x76\x9d\x06\x51\xf2\x8c\x6e\x18\x5a\xa8\x7e\xad\x45\x3e\x89\x78\x8b\x49\x55\x2b\x0c\xf0\xdd\xf1\x69\xf1\x30\x9b\x8c\xd7\x8b\xd9\x64\x3e\x1a\x8f\x57\x93\x28\x6a\xd0\x91\x22\x5b\xca\xb3\xa5\x14\xc7\x97\x06\x1d\xad\x47\xb3\xe9\xfc\xcb\x72\xb5\xf8\xf1\xb3\x81\x3b\x4a\x12\x5e\x90\x58\x51\xc1\x3d\x9a\x84\x10\x29\x49\x79\x76\x03\x52\x30\x0c\xe1\x79\xca\xd5\xc7\x1b\xe0\xa8\x0e\x42\xea\x81\xa3\x24\x91\x58\x14\x1d\xae\x6b\xcd\xf0\xa5\x2b\x17\x86\xdf\xaa\x91\x9d\x28\xb9\x0a\xe1\xf9\x91\x1e\x3f\xbc\xf7\xe1\xe4\x38\x00\x00\x0c\x15\xe4\x82\x25\x28\x57\x98\x86\xf0\xb6\xbf\x68\x50\x5d\xbe\x56\xdd\x0e\xfd\x8b\x94\x4c\x19\x70\xeb\x68\xf0\x4d\x17\x0d\x66\x2f\x71\x4f\x24\x7a\x24\x8e\x0d\xe3\xa8\x54\xf9\xc8\x1c\x34\x2d\xd4\xbf\x02\x59\x1a\xb4\xd4\x30\x84\xfa\x81\x60\x23\xa4\x14\x87\xc1\xab\x52\x3e\x79\xda\xd2\x10\x5e\xeb\x47\x4a\x48\x92\xe1\x92\xa8\xdc\x6f\xd9\xf4\xef\xfe\x1e\xf6\x84\xd3\xd8\x73\x1f\x44\xc9\x12\xe0\x42\x81\x21\x03\x89\x29\x28\x01\xbd\x29\xae\xef\xd8\x52\x9b\xbd\xaf\x95\x92\x52\xe5\x9e\x95\x9b\xe0\x3b\x55\x79\x22\xc9\x81\x6c\x18\xfa\x57\x46\x35\x1b\xdc\x15\x46\xea\x5d\xda\xf4\xab\xf6\x3f\xab\xd6\x8f\x81\xaa\xc2\x5b\xa9\xd3\x6b\xa0\x44\x1e\xa3\x6b\x66\x9c\xcd\x0e\x78\xc4\xb8\x54\xd8\x33\x5f\xbf\x48\x2e\x12\x9c\xf2\x54\xc0\xd0\x0a\x6c\x30\xaf\xeb\x5e\x05\x18\x87\x40\x93\x26\x91\xfa\xff\x8f\x81\xbc\x2a\x5d\x65\xd3\x3a\xda\x11\xed\xee\x7b\x9e\x6b\x85\xac\x7a\xc3\x9f\x09\x23\x3c\x46\x18\x5e\x44\x26\xc8\x50\x99\x0c\xd4\xe9\xaa\x81\x5e\x6f\x0a\x4d\xeb\xe0\xc3\x60\x78\x31\xee\xe4\x58\x36\x5f\xcc\x8e\x25\x12\x85\xda\x0a\xed\x0d\x4a\xaf\x71\x2b\x6c\x7d\xeb\xbe\x29\x73\xed\xd1\x9e\x01\x59\x81\x9a\xdd\xf3\x6a\xfe\x5b\x9b\xde\xd7\x82\xac\x5c\x05\x9b\xa6\xf3\x77\x65\x09\xee\x45\x41\x55\x1d\xa1\xc1\xad\x3d\xe4\x50\x07\xcf\xb3\xb5\x5d\xd1\xfb\xff\x7f\xfb\x93\xc5\x50\x67\x78\x2e\x14\x20\x17\x65\x96\x9b\xe0\x16\xfa\xb3\xd3\x01\xc0\x37\x6e\x97\xfb\x73\x7b\x57\xc7\xf8\xec\xfc\x0e\x00\x00\xff\xff\xd3\xb7\xf8\x70\xd5\x05\x00\x00" +var _lockedtokensStakerRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\xdf\x4f\xdb\x30\x10\x7e\xcf\x5f\x71\xcb\x03\x4a\x24\x08\x7b\x98\xa6\x29\xa2\x43\x85\xc2\x86\x8a\x0a\x22\xc0\xb6\x47\x37\xb9\xa4\x16\xae\x5d\x39\xce\x5a\x54\xf5\x7f\x9f\x1c\x3b\x89\x5d\xe8\xb4\x97\xe5\x21\x3f\xee\xbe\xdc\xf7\xdd\xf9\x3b\xba\x5c\x09\xa9\xe0\x9a\x89\xf5\xa3\x78\x41\x0e\xa5\x14\x4b\x08\xfb\xef\x30\xe8\x10\x0d\xaf\xe8\x9c\xa1\x87\x72\x63\x3d\xf2\x56\xe4\x2f\x58\xb4\xb1\xda\x00\x3f\x6e\x6e\xef\x2e\xa7\x57\x93\xc7\xbb\xe9\xd5\x6c\x3c\x99\x3c\x5c\x65\x59\x87\xce\x14\x79\xa1\xbc\xba\x97\x62\xf3\xda\xa1\xb3\xc7\xf1\xf4\x66\xf6\xed\xfe\xe1\xee\xe7\xaf\x0e\x1e\x28\x49\x78\x4d\x72\x45\x05\x8f\x68\x91\x42\xa6\x24\xe5\xd5\x31\x48\xc1\x30\x85\xa7\x1b\xae\xbe\x1c\x03\x47\xb5\x16\x52\x17\x1c\x17\x85\xc4\xba\x1e\x70\x43\x6a\x8a\xaf\x43\xb8\x36\xfc\x5e\x8c\x2c\x45\xc3\x55\x0a\x4f\xd7\x74\xf3\xf9\x53\x0c\xdb\x20\x00\x00\x60\xa8\x60\x21\x58\x81\xf2\x01\xcb\x14\x8e\xdc\x46\x93\xf6\xf1\xbd\xcd\x0e\xe8\xdf\xa4\x61\xca\x80\xfb\x89\x26\xcf\x3a\x68\x30\x2b\x89\x2b\x22\x31\x22\x79\x6e\x18\x49\xa3\x16\xd1\x85\x90\x52\xac\x9f\x09\x6b\x30\x86\xa3\xb1\xc9\x69\x15\x60\xaf\x1a\x59\x99\xf4\x4a\x60\x04\xf6\xff\xa4\x56\x42\x92\x0a\x93\x79\x5b\xe1\xec\xa0\xc2\xaf\x91\x9e\x74\x0a\x87\xf2\x99\xa9\x73\x4f\xd4\x22\xee\x59\xf5\x75\x7e\x0e\x2b\xc2\x69\x1e\x85\x97\xa2\x61\x05\x70\xa1\xc0\x90\x81\xc4\x12\x94\x00\xa7\x4a\x18\x07\xbe\xe4\x6e\x1c\x87\x15\xb7\xfd\x7b\xb6\x4a\x7e\x50\xb5\x28\x24\x59\x93\x39\xd3\xe3\xd8\x9b\x63\xd7\xc9\xa9\x2d\x74\x5a\x76\xf9\x36\xfd\xcf\xea\xf5\x6f\xa0\x5a\x6f\xb7\x2a\x75\x3b\x28\x91\xe7\x18\x9a\x1a\x3b\xd3\x0b\x6e\x30\x6f\x14\x3a\x87\xa1\xcf\x99\x8b\x02\x6f\x78\x29\x60\xe4\xf9\x39\x99\xd9\x78\xe4\xc8\x68\xb1\x93\x14\x68\x71\xec\x44\x8d\x8b\xf5\xdd\x8d\xbe\x63\xe7\x37\xa1\xf7\xf1\xad\x9f\xbd\x4f\x17\xe7\x9a\x7e\x78\xef\x01\xce\xb9\xe9\xee\x58\xeb\x92\x0b\xc2\x08\xcf\x11\x46\x7b\xf6\x4b\x2a\x54\xc6\x47\xd6\xa9\x16\x18\x39\x55\x68\x69\x77\x0a\xce\x46\x7b\xe5\xb6\x81\x77\x44\x7b\xb5\x73\x89\x44\xa1\x1e\xa3\x9e\x2b\xca\xa8\x9b\x74\xda\xcf\x7c\x58\x57\xf3\x74\x68\x77\x80\xac\x46\xcd\x1e\x45\x96\xff\xc4\xa7\x8f\xb5\x20\xcf\x9b\xc9\xbc\xcb\xfc\x5d\x59\x81\x2b\x51\x53\x65\xed\x77\x76\xe2\x17\x59\x5b\xd3\x46\xbe\xb6\x37\xf4\xf1\xff\xef\x7e\xeb\x31\x58\xff\xcf\x84\x02\xe4\xa2\xa9\x16\xc6\xf4\xb5\x5e\x5d\xed\x04\xfc\x10\x0e\x3b\xb3\xeb\xdf\xec\x0a\xec\x82\x3f\x01\x00\x00\xff\xff\xa6\x01\x19\xa7\x30\x06\x00\x00" func lockedtokensStakerRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -4170,11 +4170,11 @@ func lockedtokensStakerRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2d, 0xc3, 0xb2, 0x63, 0x32, 0x7b, 0x9a, 0xb6, 0x9f, 0x54, 0x7b, 0x8b, 0xab, 0xdb, 0x24, 0xb6, 0xd7, 0xd5, 0x46, 0x31, 0x81, 0x3c, 0xee, 0xc8, 0x3a, 0x6b, 0xcb, 0x68, 0xf0, 0x1f, 0xac, 0x8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4f, 0xc0, 0x72, 0xe2, 0xe2, 0x53, 0x6, 0xbe, 0xed, 0xd7, 0x9, 0xc2, 0xb8, 0x3d, 0xd5, 0xb7, 0xe5, 0x27, 0x9c, 0x79, 0x80, 0x59, 0xbf, 0x60, 0x8e, 0x27, 0xe8, 0x9d, 0xaf, 0xfb, 0x33, 0xa5}} return a, nil } -var _lockedtokensStakerRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4d\x6b\xf2\x40\x10\xc7\xef\xfb\x29\x06\x0f\x0f\xf1\x12\x9e\x43\xe9\x41\x6a\x25\xa8\x7d\x41\x51\x71\x15\xda\xe3\x76\x9d\x68\x48\xdc\x49\x67\x27\x34\xa5\xf8\xdd\x4b\xdc\xf8\x42\xc1\xbd\x0c\xcb\xfc\xe7\x3f\xf3\x9b\xc9\xf6\x25\xb1\xc0\x94\x6c\x8e\x9b\x15\xe5\xe8\x3c\xa4\x4c\x7b\xf8\x5f\x4f\xe7\xc3\xc9\x78\xb4\x9a\x4f\xc6\xb3\x64\x34\x5a\x8e\xb5\x56\xad\x5a\x8b\xc9\x33\xb7\x5d\x30\xd5\xdf\x27\xb5\x5e\x25\x93\xd7\xd9\xf3\x62\x39\x7f\x7b\x3f\xc9\x95\xb0\x71\xde\x58\xc9\xc8\x45\x66\x4f\x95\x93\x1e\xac\x9f\xb2\xfa\xfe\xae\x0b\x3f\x4a\x01\x00\x14\x28\xb0\xa3\x62\x83\xbc\xc4\xb4\x07\xff\xae\x27\x89\x8f\xe1\xe5\x98\x0d\xea\x92\xb1\x34\x8c\x91\xb1\x36\xb8\x25\x95\xec\x92\xf0\x69\x2c\xa1\x7d\x1e\x8b\x34\x3e\xdb\x42\x1f\xda\x82\xf8\x83\x98\xe9\xeb\xe1\x66\x9b\xc7\xa8\xe1\xe9\xc1\xad\xbc\x16\x62\xb3\xc5\x85\x91\x5d\xf7\xdc\xad\x79\x83\x01\x94\xc6\x65\x36\xea\x0c\xa9\x2a\x36\xe0\x48\x20\x34\x03\xc6\x14\x19\x9d\x45\x10\x82\x2b\xaf\x4e\x70\x38\x04\x34\xac\xd1\x56\x82\x57\x10\xcd\x6a\xbc\x98\x1c\x39\x6c\xba\xff\x07\xab\x85\xd1\x47\x49\xd4\x55\x17\xfa\x4b\x51\xcc\xf8\x59\xa1\x97\xb5\xf3\xe1\x68\xe7\x3b\x84\x78\x1a\xe1\xa0\x7e\x03\x00\x00\xff\xff\x5f\x78\x28\xec\x0a\x02\x00\x00" +var _lockedtokensStakerRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x51\x3d\x6f\xc2\x40\x0c\xdd\xf3\x2b\x2c\x06\x94\x2c\x51\x87\xaa\x03\x2a\x45\x14\xe8\x87\x40\x80\x08\x54\xed\x78\x3d\x1c\x88\x12\xce\xa9\xcf\x51\x53\x55\xfc\xf7\x2a\xb9\x00\x51\x25\xbc\x78\xf0\xf3\x7b\x7e\x7e\xc9\x21\x27\x16\x98\x91\x4e\x71\xbb\xa6\x14\x8d\x85\x98\xe9\x00\x37\xe5\x6c\x31\x9a\x4e\xc6\xeb\xc5\x74\x32\x1f\x8e\xc7\xab\x49\x14\x79\x0d\x3a\x12\x95\x26\x66\xb7\x64\x2a\x7f\x4e\xe8\x68\x3d\x9c\xbe\xce\x9f\x97\xab\xc5\xfb\xc7\x09\xee\x09\x2b\x63\x95\x96\x84\x8c\xaf\x0e\x54\x18\xe9\xc1\xe6\x29\x29\xef\x6e\x03\xf8\xf5\x3c\x00\x80\x0c\x05\xf6\x94\x6d\x91\x57\x18\xf7\xa0\xdb\xbe\x24\xac\xdb\x4b\x3d\x75\xe8\x9c\x31\x57\x8c\xbe\xd2\xda\xb1\xa9\x42\xf6\xfe\x23\x31\xd3\xf7\x9b\xca\x0a\x0c\xa0\x3b\x74\xb3\x4a\x01\x9a\xb2\x98\xc5\xe1\x59\x05\xfa\xd0\xec\x87\x56\x88\xd5\x0e\xc3\xcf\x9a\xe1\xfe\xaa\xfa\x83\x5f\xd9\xec\xc1\xb5\x79\xe4\x78\x96\x4a\xf6\xc1\x59\xb5\xaa\xc1\x00\x72\x65\x12\xed\x77\x46\x54\x64\x5b\x30\x24\xe0\xc4\x80\x31\x46\x46\xa3\x11\x84\xa0\xc5\xd5\x71\x0c\x47\xe7\x18\x4b\xd4\x85\x60\xcb\x4c\xf5\x31\x2b\x2a\x45\x76\x01\xf4\xff\xd9\x6b\xcc\x44\x35\xc4\x0f\xbc\xcb\x17\x2e\x4b\x21\xe3\x57\x81\x56\x36\xc6\xba\x2c\xcf\xf1\xb8\x7e\x3a\xe1\xe8\xfd\x05\x00\x00\xff\xff\x6a\x0a\x6b\x38\x21\x02\x00\x00" func lockedtokensStakerRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -4190,11 +4190,11 @@ func lockedtokensStakerRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x58, 0x89, 0x50, 0xca, 0x45, 0x71, 0x4e, 0x85, 0xb7, 0xbe, 0xb5, 0xb7, 0x66, 0xdb, 0x88, 0x48, 0xdf, 0xfa, 0x85, 0x70, 0x19, 0xa4, 0x67, 0x61, 0xc2, 0x33, 0xc, 0xc5, 0x1, 0xea, 0xd4, 0xb9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9f, 0x1a, 0xee, 0x2a, 0x8c, 0x9a, 0xdd, 0x4a, 0xdc, 0xaf, 0x92, 0xed, 0x11, 0x44, 0x7c, 0x9c, 0xc9, 0xe, 0x9c, 0xca, 0x7, 0x5a, 0xa0, 0x2f, 0xe1, 0x7f, 0x93, 0x4a, 0xff, 0x9a, 0x47, 0xe3}} return a, nil } -var _lockedtokensStakerStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\xcb\x8e\xda\x40\x10\xbc\xfb\x2b\x3a\x3e\x44\xf6\x61\xbd\x39\x44\x39\xac\x20\x2b\xb2\xb0\x49\xc4\x0a\x10\x26\xaf\xe3\x60\xda\x0f\x31\xcc\x58\xe3\x76\x20\x42\xfc\x7b\x34\x0f\x1b\xdb\x68\xa5\x28\xbe\xd8\x9e\xae\xe9\xaa\xea\xea\xe2\x50\x4a\x45\xf0\xcc\xe5\x71\x23\xf7\x28\x20\x55\xf2\x00\x7e\xfb\xef\x7b\x0d\xa2\x16\x59\xb1\xe5\xd8\x43\x75\xcf\x7c\xaf\x81\xbe\xc8\x64\x8f\x3b\x73\x58\x59\xe4\xbb\xd3\xcb\xf2\x69\x3e\x9b\x6e\x96\xf3\xd9\x62\x32\x9d\xae\x67\x71\xdc\xa0\x63\x62\xfb\x42\x64\x2b\x25\x4f\x7f\x1a\x74\xbc\x99\xcc\xbf\x2e\x3e\xaf\xd6\xcb\x9f\xbf\x1a\xb8\x47\x8a\x89\x8a\x25\x54\x48\x11\xb0\x83\xac\x05\x3d\xc0\xb7\xe7\xe2\xf4\xe1\x7d\x08\x67\xcf\x03\x00\xe0\x48\x90\x4b\xbe\x43\xb5\xc6\xf4\x01\xde\x76\x95\x44\xe6\xf5\xc5\x54\xaf\xe8\xdf\xac\xe6\x64\xc1\xad\xe7\xe8\xbb\x3e\xb4\x98\x52\x61\xc9\x14\x06\x2c\x49\x2c\xe3\xa4\xa6\x7c\x62\x7f\x34\x2d\xb8\xa7\x42\x9e\x46\x2d\x35\x8c\xc1\x5d\x88\xb6\x52\x29\x79\x1c\xbd\x2a\xe5\x63\xa0\x3d\x3f\xc0\x6b\xf5\x98\xa4\x62\x19\xae\x18\xe5\x61\xcb\xa6\x9f\xc7\x47\x28\x99\x28\x92\xc0\x7f\x92\x35\xdf\x81\x90\x04\x96\x0c\x14\xa6\xa8\x50\x24\x08\x24\xa1\xd3\xcb\x0f\xbd\xbe\xe0\xc6\xfd\xad\x5e\x56\x53\x1e\xf4\xf2\x8d\x7e\x14\x94\xef\x14\x3b\xb2\x2d\xc7\xf0\x66\x5c\x8d\x8f\xfb\xca\x0a\xbe\x4f\x9b\xba\x29\xff\xb3\x76\x7d\x0d\xc8\x2c\x99\x51\x77\x35\xe3\xdb\x1e\x17\xeb\x01\x4f\x98\xd4\x84\x9d\x08\x74\x9c\x15\xb1\x3d\x2a\xbb\x4b\xe3\x41\x28\xce\x5a\x6c\x20\x41\x67\x14\xfa\x22\x37\xe3\xff\xc4\x38\xd3\x63\xbb\xb9\x9a\x21\xd9\x80\x5c\xf4\x0e\xd8\xed\x52\xa4\x60\xb7\x12\x46\xe3\x41\xbb\xb3\xd7\x73\xdf\x11\x19\x99\xef\x05\xda\x49\x55\xed\x5e\xdb\x77\xa7\xfb\x05\x90\x57\xa8\x49\x02\x07\x82\xbb\x3e\x4b\xa8\x79\x7b\xa9\x46\xdb\xa6\x32\x14\xd0\x37\xb7\xc3\x52\x56\x05\xb9\x00\x47\x77\xfd\x26\x47\x17\xfb\x40\xdb\x0d\x7d\xf8\xdf\x26\xbb\xd7\x86\x86\xcf\xbd\xaa\x5b\x9a\x85\x24\x40\x21\xeb\x2c\xb7\x9b\x52\xe9\x3d\x37\x24\x6f\xfc\x6b\xbb\x8b\x5b\x97\x8b\xf7\x37\x00\x00\xff\xff\x52\x07\x6c\x79\xe5\x04\x00\x00" +var _lockedtokensStakerStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\x4f\x6f\xda\x4e\x10\xbd\xfb\x53\xcc\xcf\x87\xc8\x3e\xc4\xf9\x1d\xaa\x1e\x10\x34\x22\x81\xb4\x15\x11\x20\x4c\xd3\xf6\xb8\x98\x31\xb6\x58\x76\xad\xf5\xb8\x50\x21\xbe\x7b\xb5\x7f\x6c\x6c\x47\x48\x55\x7d\x31\x78\xde\xbc\x79\x6f\xe6\xe5\x87\x42\x2a\x82\x17\x2e\x8f\x6b\xb9\x47\x01\xa9\x92\x07\xf0\x9b\xff\xbe\x57\x23\x2a\xb1\xcb\x37\x1c\x3b\xa8\xf6\x37\xdf\xab\xa1\xaf\x32\xd9\xe3\xd6\x7c\x2c\x2d\xf2\xff\xd3\xeb\xe2\x79\x36\x9d\xac\x17\xb3\xe9\x7c\x3c\x99\xac\xa6\x71\x5c\xa3\x63\x62\xfb\x5c\xec\x96\x4a\x9e\x7e\xd7\xe8\x78\x3d\x9e\x7d\x9d\x7f\x5e\xae\x16\x3f\x7e\xd6\x70\x8f\x14\x13\x25\x4b\x28\x97\x22\x60\x07\x59\x09\x1a\xc0\xb7\x97\xfc\xf4\xf1\x43\x08\x67\xcf\x03\x00\xe0\x48\x90\x49\xbe\x45\xb5\xc2\x74\x00\x77\x6d\x25\x91\x79\x7d\x31\xd5\x2b\xfa\x17\xab\x38\x59\x70\xe3\x39\x7a\xd3\x1f\x2d\xa6\x50\x58\x30\x85\x01\x4b\x12\x3b\x91\x55\x94\x05\x4f\x52\x29\x79\x7c\x63\xbc\xc2\x10\xee\xc6\xb6\xa6\x55\x80\x7b\x4a\xe4\x69\xd4\x28\x81\x11\xb8\xfe\xa8\x24\xa9\xd8\x0e\xa3\x8d\x61\x18\xde\x54\xf8\x29\xd0\xab\x18\xc0\xad\x7a\x6c\x79\x96\x8c\xb2\xb0\x99\xaa\x9f\xc7\x47\x28\x98\xc8\x93\xc0\x7f\x96\x15\xdf\x82\x90\x04\x76\x18\x28\x4c\x51\xa1\x48\x10\x48\x42\x8b\xcb\x0f\xbd\xae\xf0\x7a\x29\xb7\x75\x9b\x2d\x74\xce\x1f\x7d\xcf\x29\xdb\x2a\x76\x64\x1b\xae\x97\xd2\xdb\x66\xed\xe7\xc1\x11\x3d\xa4\x75\xdd\x94\xff\xda\x83\x6e\x03\x32\x19\x34\x2a\xaf\xa6\x7c\xcb\x71\xb1\x5e\xf0\x84\x49\x45\xd8\x3a\x89\xbe\x76\x49\x6c\x8f\xca\x46\x6d\xd4\x3b\x92\xb3\x16\x1b\x48\xd0\x5a\x89\x6e\xe4\xe6\x0c\x4f\x8c\x33\xbd\xbe\x77\xad\x3b\x24\x7b\x28\x17\x05\x07\x6c\xb3\xe4\x29\xd8\xd0\xc2\x70\xd4\xa3\x3b\x7b\x1d\xf7\x2d\x91\x91\xf9\x3d\x47\xbb\xa9\xb2\x89\xbd\x7d\xb7\xd8\x2f\x80\xbc\x44\x3d\x24\x70\x20\xb8\xef\x4e\x09\xf5\xdc\xce\x75\xa3\x4d\x5d\xe9\x0b\xe8\x9a\xdb\x62\x21\xcb\x9c\xdc\x01\x87\xf7\x5d\x92\xa3\x3b\x7b\x4f\xdb\xbb\xf1\xe1\x3f\x9b\x6c\xb7\xf5\x0d\x9f\x3b\x55\x17\x9a\xb9\x24\x40\x21\xab\x5d\x66\x93\x52\xea\xbc\x9b\x21\xff\xf9\x57\xba\x8b\x8b\xcb\xc5\xfb\x13\x00\x00\xff\xff\x05\x34\x47\x6c\x04\x05\x00\x00" func lockedtokensStakerStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4210,11 +4210,11 @@ func lockedtokensStakerStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4f, 0x22, 0xd8, 0x60, 0xd7, 0xd4, 0x8d, 0x48, 0x46, 0xff, 0x44, 0xac, 0xfa, 0xbc, 0x9b, 0xd, 0xa9, 0x51, 0x5a, 0xc9, 0xc4, 0x71, 0xeb, 0x81, 0x4b, 0xe8, 0x9f, 0xa0, 0x9b, 0xa2, 0x3c, 0xa2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x5a, 0xb6, 0x57, 0x56, 0x3a, 0xc9, 0x74, 0xb9, 0x53, 0xc5, 0x13, 0x6c, 0xaf, 0x5e, 0x39, 0xf2, 0xb6, 0x22, 0x8a, 0x65, 0xf6, 0x3d, 0x11, 0x2, 0xdd, 0xc8, 0x33, 0xd8, 0x68, 0x6b, 0x8d}} return a, nil } -var _lockedtokensStakerStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6b\xc2\x50\x0c\xc7\xef\xfd\x2b\x82\x87\x51\x2f\x65\x87\xb1\x83\xcc\x49\x51\xf7\x03\x45\xa5\xcf\xc1\x76\x7c\x7b\x4d\xb5\xb4\xbe\x94\x34\xc5\x8e\xe1\xff\x3e\xda\xd7\xaa\x0c\xcc\x25\x2d\xf9\xe6\x9b\x7c\xf2\xd2\x43\x41\x2c\xb0\x24\x93\x61\xbc\xa5\x0c\x6d\x09\x09\xd3\x01\xee\xeb\xe5\x7a\xba\x98\xcf\xb6\xeb\xc5\x7c\x15\xce\x66\xd1\x5c\x29\xaf\x53\x2b\xd1\x59\x6a\x77\x1b\xa6\xfa\xa7\x57\xab\x6d\xb8\x78\x5f\xbd\x6e\xa2\xf5\xe7\x57\x2f\xf7\x84\xb5\x2d\xb5\x91\x94\xac\xaf\x0f\x54\x59\x19\xc1\xc7\x4b\x5a\x3f\x3e\x0c\xe1\xd7\xf3\x00\x00\x72\x14\xd8\x53\x1e\x23\x47\x98\x8c\xe0\xee\x7a\x93\xa0\x4d\x6f\x6d\xd5\xa9\x0b\xc6\x42\x33\xfa\xda\x18\xe7\x16\x56\xb2\x0f\xdd\x4f\x63\x09\x5d\x94\x98\x27\xc1\xd9\x16\xc6\xd0\x35\x04\xdf\xc4\x4c\xc7\xa7\x9b\x63\x9e\xfd\x86\x67\x04\xb7\xea\x4a\x88\xf5\x0e\x37\x5a\xf6\xc3\xf3\xb4\x26\x26\x13\x28\xb4\x4d\x8d\x3f\x98\x52\x95\xc7\x60\x49\xc0\x0d\x03\xc6\x04\x19\xad\x41\x10\x82\x2b\xaf\x81\x73\x38\x39\x34\xac\xd1\x54\x82\x57\x10\xcd\x69\x4a\xd1\x19\xb2\xbb\xf4\xf8\x1f\x56\x07\xa3\x5a\x89\x3f\xf4\x2e\xf4\x97\xa6\xa0\xfd\x8e\xf0\xa8\x39\xee\x79\xce\x4f\xe1\x72\xbf\xc5\xc9\xfb\x0b\x00\x00\xff\xff\x4c\x01\x8a\x3b\x0d\x02\x00\x00" +var _lockedtokensStakerStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x51\x4f\x6b\xfa\x40\x10\xbd\xe7\x53\x0c\x1e\x24\xb9\x84\xdf\xe1\x47\x0f\x52\x2b\x56\xed\x1f\x14\x95\xc4\x96\xf6\xb8\xdd\x4c\x34\x24\xee\x84\xc9\x04\x53\x8a\xdf\xbd\x24\x9b\x68\x28\xb8\x97\x59\x78\x6f\xde\x9b\x37\x93\x1c\x73\x62\x81\x15\xe9\x14\xa3\x1d\xa5\x68\x0a\x88\x99\x8e\xf0\xaf\x5a\x6d\x66\xcb\xc5\x7c\xb7\x59\x2e\xd6\xd3\xf9\x3c\x58\x84\xa1\xd3\xb2\x43\x51\x69\x62\xf6\x5b\xa6\xea\xbb\x63\x87\xbb\xe9\xf2\x75\xfd\xbc\x0d\x36\x1f\x9f\x1d\xdd\x11\x56\xa6\x50\x5a\x12\x32\xae\x3a\x52\x69\x64\x04\x6f\x4f\x49\x75\xf7\xdf\x83\x1f\xc7\x01\x00\xc8\x50\xe0\x40\x59\x84\x1c\x60\x3c\x82\x61\x7f\x12\xbf\x29\x2f\x0d\x6a\xd9\x39\x63\xae\x18\x5d\xa5\xb5\x55\x53\xa5\x1c\xdc\x47\x62\xa6\xd3\xbb\xca\x4a\xf4\x60\x38\xb5\x58\xed\x00\xed\x2b\x30\x8b\xfd\x8b\x0b\x8c\xa1\xed\xf7\x0b\x21\x56\x7b\xf4\xbf\x1a\x85\xfb\x9b\xee\x0f\x6e\x1d\x73\x04\xb7\xf0\xd0\xea\x6c\x95\x1c\xbc\x8b\x6b\xfd\x26\x13\xc8\x95\x49\xb4\x3b\x98\x51\x99\x45\x60\x48\xc0\x9a\x01\x63\x8c\x8c\x46\x23\x08\x41\x4f\x6b\x60\x15\xce\x36\x31\x56\xa8\x4b\xc1\x5e\x98\x7a\x63\x85\xa8\x14\xd9\x1e\x60\xfc\x27\x5e\x1b\x26\x6c\x28\xae\xe7\x5c\xb7\x70\x6d\xf2\x9b\x7f\x80\x27\xc5\x51\x97\xe7\x72\x21\x5b\xbb\x29\xce\xce\x6f\x00\x00\x00\xff\xff\xbd\x2d\xf6\xeb\x24\x02\x00\x00" func lockedtokensStakerStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4230,11 +4230,11 @@ func lockedtokensStakerStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2d, 0x5f, 0x47, 0xa5, 0x4b, 0xa0, 0x20, 0x8f, 0xd4, 0xc8, 0xff, 0x36, 0x18, 0xd, 0x76, 0xea, 0x11, 0x69, 0x2a, 0x66, 0x7f, 0xb9, 0xbb, 0xec, 0x61, 0xba, 0x59, 0xc0, 0x50, 0x23, 0xa6, 0x12}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x64, 0xb5, 0x44, 0x8, 0xb9, 0x8e, 0x96, 0xd0, 0xbf, 0x1f, 0x32, 0x5f, 0xf3, 0xf6, 0xc4, 0xaf, 0xc, 0xd1, 0xda, 0x8e, 0xe7, 0xf, 0x3b, 0xca, 0xcc, 0x4e, 0x14, 0x1f, 0x21, 0x10, 0x3b, 0x3d}} return a, nil } -var _lockedtokensStakerStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6a\xc2\x40\x10\xc6\xef\xfb\x14\x83\x87\x12\x2f\xa1\x87\xd2\x83\xd4\x4a\x50\xfb\x07\x45\xc5\x55\x68\x8f\xdb\x75\xa2\x21\x71\x27\x4c\x26\x34\xa5\xf8\xee\x25\xd9\xa8\xa1\xe0\x5c\x26\x61\xbe\xf9\x66\x7e\xb3\xc9\x31\x27\x16\x98\x93\x4d\x71\xb7\xa1\x14\x5d\x01\x31\xd3\x11\xee\xab\xf9\x72\x3c\x9b\x4e\x36\xcb\xd9\x74\x11\x4d\x26\xeb\xa9\xd6\xaa\x55\x6b\x31\x69\xe2\xf6\x2b\xa6\xea\xe7\xac\xd6\x9b\x68\xf6\xbe\x78\x5d\xad\x97\x1f\x9f\x67\xb9\x12\x36\xae\x30\x56\x12\x72\x81\x39\x52\xe9\x64\x00\xdb\x97\xa4\x7a\x7c\xe8\xc3\xaf\x52\x00\x00\x19\x0a\x1c\x28\xdb\x21\xaf\x31\x1e\xc0\x5d\x77\x93\xb0\x49\x6f\x4d\xd5\xab\x73\xc6\xdc\x30\x06\xc6\x5a\xef\x16\x95\x72\x88\xfc\x4f\x6d\x09\x6d\x14\x98\xc5\xe1\xc5\x16\x86\xd0\x36\x84\x5f\xc4\x4c\xdf\x4f\x37\xc7\x3c\x07\x35\xcf\x00\x6e\xd5\xb5\x10\x9b\x3d\xae\x8c\x1c\xfa\x97\x69\x75\x8c\x46\x90\x1b\x97\xd8\xa0\x37\xa6\x32\xdb\x81\x23\x01\x3f\x0c\x18\x63\x64\x74\x16\x41\x08\x3a\x5e\x3d\xef\x70\xf2\x68\x58\xa1\x2d\x05\x3b\x10\xf5\x69\x0a\x31\x29\xb2\xbf\xf4\xf0\x1f\x56\x0b\xa3\x1b\x49\xd0\x57\x57\xfa\x6b\x53\xd8\x7c\x6f\x5d\x93\x5a\x9e\xcb\x53\xf8\x7c\xde\xe2\xa4\xfe\x02\x00\x00\xff\xff\x63\x35\x3a\x15\x0d\x02\x00\x00" +var _lockedtokensStakerStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x51\xcd\x6a\xf2\x50\x10\xdd\xe7\x29\x06\x17\x92\x6c\xc2\xb7\xf8\xe8\x42\x6a\xc5\xaa\xfd\x41\x51\x31\x5a\xda\xe5\xf4\x3a\xd1\x90\x78\x27\x4c\x26\x34\xa5\xf8\xee\x25\xb9\xf1\x87\x82\x77\x33\x17\xce\x99\x73\xe6\xcc\x24\x87\x9c\x45\x61\xc6\x26\xa5\xed\x9a\x53\xb2\x05\xc4\xc2\x07\xf8\x57\xcd\x16\xa3\xe9\x64\xbc\x5e\x4c\x27\xf3\xe1\x78\xbc\x9a\x44\x91\xd7\xb2\x23\xc5\x34\xb1\xbb\xa5\x70\xf5\x7d\x62\x47\xeb\xe1\xf4\x75\xfe\xbc\x5c\x2d\xde\x3f\x4e\x74\x4f\x05\x6d\x81\x46\x13\xb6\x3e\x1e\xb8\xb4\xda\x83\xcd\x53\x52\xdd\xfd\x0f\xe0\xc7\xf3\x00\x00\x32\x52\xd8\x73\xb6\x25\x59\x51\xdc\x83\xee\xf5\x24\x61\x53\x5e\x1a\xd4\xb1\x73\xa1\x1c\x85\x7c\x34\xc6\xa9\x61\xa9\x7b\xff\x91\x45\xf8\xeb\x0d\xb3\x92\x02\xe8\x0e\x1d\x56\x3b\x40\xfb\x0a\xca\xe2\xf0\xec\x02\x7d\x68\xfb\xc3\x42\x59\x70\x47\xe1\x67\xa3\x70\x7f\xd3\xfd\xc1\xaf\x63\xf6\xe0\x16\x1e\x39\x9d\x25\xea\x3e\x38\xbb\xd6\x6f\x30\x80\x1c\x6d\x62\xfc\xce\x88\xcb\x6c\x0b\x96\x15\x9c\x19\x08\xc5\x24\x64\x0d\x81\x32\x5c\x69\x75\x9c\xc2\xd1\x25\xa6\x8a\x4c\xa9\x74\x15\xa6\xde\x58\xa1\x98\x92\xb8\x03\xf4\xff\xc4\x6b\xc3\x44\x0d\xc5\x0f\xbc\xcb\x16\x2e\x4d\x61\xf3\xdf\xd8\xa6\xb4\x79\xce\x17\x72\xf5\x34\xc5\xd1\xfb\x0d\x00\x00\xff\xff\x92\x19\x46\xc5\x24\x02\x00\x00" func lockedtokensStakerStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4250,11 +4250,11 @@ func lockedtokensStakerStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0x1d, 0x1, 0x11, 0xf9, 0x79, 0xef, 0xb3, 0xce, 0x49, 0x93, 0x62, 0xfc, 0x29, 0x5c, 0xc2, 0x92, 0xc4, 0xa4, 0xc9, 0x40, 0x13, 0x75, 0x6, 0x2a, 0xf, 0x2c, 0x4e, 0x71, 0xae, 0x7e, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0x4c, 0xf7, 0x6f, 0x39, 0x21, 0xa2, 0x2b, 0xf8, 0x87, 0x5e, 0x60, 0x8b, 0x7, 0xb7, 0x53, 0xc3, 0x5b, 0xaf, 0x7d, 0x59, 0x2a, 0x1b, 0x80, 0x29, 0xf, 0xa3, 0x8f, 0xdc, 0x92, 0x53, 0xc9}} return a, nil } -var _lockedtokensStakerUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x41\x6b\xfa\x40\x10\xc5\xef\xfb\x29\x06\x0f\x7f\xd6\x4b\xf8\x9f\xa5\x56\x82\x4a\x5b\x14\x15\xd7\x43\x7b\xdc\xae\x13\x0d\x59\x77\xc2\x64\x42\x2d\xc5\xef\x5e\x92\x8d\x1a\x0a\xce\x65\x18\xe6\xcd\x7b\xfc\x26\x3f\x95\xc4\x02\x4b\x72\x05\xee\x77\x54\x60\xa8\x20\x63\x3a\xc1\xff\xf3\x72\x3d\x5d\xcc\x67\xbb\xf5\x62\xbe\x4a\x67\xb3\xed\xdc\x18\xd5\xa9\x8d\xd8\x22\x0f\x87\x0d\xd3\xf9\xfb\xaa\x36\xbb\x74\xf1\xb6\x7a\xd9\x6c\xd7\xef\x1f\x57\xb9\x12\xb6\xa1\xb2\x4e\x72\x0a\x7a\x08\x3f\x4a\x01\x00\x78\x14\x38\x92\xdf\x23\x6f\x31\x1b\xc1\xbf\x7e\x76\xd2\xb6\xd7\x76\x1b\xd5\x25\x63\x69\x19\xb5\x75\x8e\xea\x20\x23\x48\x6b\x39\xa6\x71\x68\x2c\xa1\xab\x0a\x7d\x96\xdc\x6c\x61\x0c\xdd\x41\xf2\x49\xcc\xf4\xf5\xf4\x30\xe6\x59\x37\x04\x23\x78\xb4\x37\x42\x6c\x0f\xb8\xb1\x72\x1c\xde\xd2\x9a\x9a\x4c\xa0\xb4\x21\x77\x7a\x30\xa5\xda\xef\x21\x90\x40\x0c\x03\xc6\x0c\x19\x83\x43\x10\x82\x9e\xd7\x20\x3a\x5c\x22\x1a\x9e\xd1\xd5\x82\x3d\x88\xe6\x35\x95\xd8\x02\x39\xfe\x76\xfc\x07\xab\x83\x31\xad\x44\x0f\xd5\x9d\xfe\x7e\x94\xd4\xa1\x9d\x52\xef\xf5\x35\xee\xa2\x7e\x03\x00\x00\xff\xff\x74\xb5\x4c\x21\xe8\x01\x00\x00" +var _lockedtokensStakerUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x4f\x6b\xc2\x40\x10\xc5\xef\xf9\x14\x83\x07\xd9\x5c\x42\xcf\x52\x2b\xa9\x4a\x5b\x14\x15\x23\xa5\x3d\x6e\xd7\x89\x86\xac\x3b\x61\x32\x4b\x2d\xc5\xef\x5e\x92\x8d\x7f\x28\x38\x97\x65\x99\x37\xef\xc7\x7b\xc5\xa1\x22\x16\x98\x93\x29\x71\xbb\xa1\x12\x5d\x0d\x39\xd3\x01\x1e\x8e\xf3\xe5\x78\x36\x9d\x6c\x96\xb3\xe9\x22\x9d\x4c\xd6\xd3\x2c\x8b\x3a\x75\x26\xba\x2c\xdc\x6e\xc5\x74\xfc\x39\xab\xb3\x4d\x3a\x7b\x5b\xbc\xac\xd6\xcb\x8f\xcf\xb3\x3c\x12\xd6\xae\xd6\x46\x0a\x72\x2a\x86\xdf\x28\x02\x00\xb0\x28\xb0\x27\xbb\x45\x5e\x63\x3e\x80\xfe\x2d\x3b\x69\x9f\xd7\x76\x1b\xd4\x15\x63\xa5\x19\x95\x36\x86\xbc\x93\x01\x68\x2f\x7b\xf5\x4c\xcc\xf4\xfd\xae\xad\xc7\x18\xfa\x69\xd8\x35\x04\xe8\xa6\x46\x9b\x27\x17\x0a\x0c\xa1\xbb\x4f\x6a\x21\xd6\x3b\x4c\xbe\x5a\x87\xc7\xbb\xf4\x27\xd5\x04\x1b\xc0\xbd\x7d\x16\x7c\x56\x5a\xf6\xf1\x85\xda\xcc\x68\x04\x95\x76\x85\x51\xbd\x31\x79\xbb\x05\x47\x02\x01\x06\x8c\x39\x32\x3a\x83\x20\x04\x37\x5e\xbd\xe0\x70\x0a\x89\xf1\x88\xc6\x0b\xde\x84\x69\x1a\xab\x45\x97\xc8\xa1\xf2\xe1\xbf\x78\x5d\x98\xac\x95\xa8\x38\xba\xb6\x70\x3d\x4a\xbc\x6b\x7f\xa9\xb5\xea\x8c\x3b\x45\x7f\x01\x00\x00\xff\xff\x0f\xaf\xc1\x08\xff\x01\x00\x00" func lockedtokensStakerUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -4270,11 +4270,11 @@ func lockedtokensStakerUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0xd3, 0x2e, 0xa, 0x8e, 0xd8, 0xe4, 0x82, 0xc3, 0xb4, 0xc9, 0x21, 0x28, 0x8, 0x53, 0xa5, 0x6d, 0xb0, 0xa8, 0x9, 0x45, 0xd8, 0x11, 0xf1, 0x8a, 0x70, 0x2d, 0x4f, 0x79, 0x43, 0x3f, 0x86}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe8, 0x1c, 0xb1, 0xa9, 0xc0, 0x4a, 0x9d, 0x51, 0xef, 0x61, 0xb, 0x64, 0x6b, 0xa2, 0xcf, 0x6e, 0x12, 0x78, 0xd6, 0xd2, 0x79, 0xc, 0x2a, 0x65, 0x51, 0xa2, 0x4d, 0xcd, 0x5f, 0x6b, 0x6, 0xd0}} return a, nil } -var _lockedtokensStakerUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4d\x8b\xf2\x40\x0c\x80\xef\xf3\x2b\x82\x87\x97\x7a\x29\xef\xb9\xac\x2b\x45\x85\x05\x45\xc5\xfa\x07\x66\x67\xd2\x0f\x5a\x27\x25\x93\xd2\x2e\x8b\xff\x7d\xe9\xc7\x6a\x59\x30\x97\x61\x48\xf2\x64\x9e\x49\x71\xab\x89\x05\x0e\x64\x4a\xb4\x57\x2a\xd1\x79\x48\x99\x6e\xf0\xbf\x3b\x9c\x36\xfb\xdd\xf6\x7a\xda\xef\x8e\xf1\x76\x7b\xd9\x25\x89\x52\xc2\xda\x79\x6d\xa4\x20\x17\x38\x6c\x63\x6b\x19\xbd\x8f\x20\x11\x2e\x5c\xb6\x84\x6f\xa5\x00\x00\x2a\x14\xc8\xa9\xb2\xc8\x17\x4c\x23\xf8\x37\xc7\x87\xc3\xf1\x31\x64\xc7\xea\x9a\xb1\xd6\x8c\x81\x36\x86\x1a\x27\x11\xc4\x8d\xe4\xf1\x78\xe9\x91\x30\x85\xc7\x2a\x0d\x1f\x58\x58\xc1\xd4\x10\x7e\x12\x33\xb5\x6f\x2f\xc7\xbc\x07\xbd\x52\x04\xaf\xf2\x89\x10\xeb\x0c\xcf\x5a\xf2\xe5\x63\x5a\x1f\xeb\x35\xd4\xda\x15\x26\x58\x6c\xa8\xa9\x2c\x38\x12\x18\x87\x01\x63\x8a\x8c\xce\x20\x08\xc1\x8c\xb5\x18\x09\xf7\x51\x0d\x3b\x34\x8d\xe0\x4c\xa2\xff\x1a\x2f\xba\x44\x3e\x33\x75\x5f\xb0\xfa\xa3\x35\xc9\x24\x43\x49\xb0\x54\x4f\xfb\x67\x53\xd8\xd4\x56\x0b\x1e\x51\x5a\xe2\xb2\x70\xd9\xb4\x87\xd9\x4a\x7e\x5f\x71\x57\x3f\x01\x00\x00\xff\xff\x7e\x1e\x81\xca\xe2\x01\x00\x00" +var _lockedtokensStakerUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x07\x49\x2e\xa1\xe7\x50\x2b\x56\x85\x82\xa2\x62\xa4\xf7\xed\xee\x44\x43\xe2\x4e\x98\x9d\x45\x4b\xf1\xbf\x97\x64\x53\x0d\x05\xe7\xb2\x87\x37\xf3\xde\x7e\x33\xe5\xb9\x21\x16\x58\x93\xae\xd0\x1c\xa8\x42\xeb\xa0\x60\x3a\xc3\xcb\x75\xbd\x9d\xaf\x96\x8b\xc3\x76\xb5\xdc\xcc\x16\x8b\xfd\x32\xcf\xa3\x48\x58\x59\xa7\xb4\x94\x64\x63\x8b\x97\x99\x31\x8c\xce\x65\x90\x0b\x97\xf6\x98\xc0\x4f\x14\x01\x00\xd4\x28\x70\xa2\xda\x20\xef\xb1\xc8\x60\x3c\xb4\x4f\xbb\xe7\xa3\x53\x43\x77\xc3\xd8\x28\xc6\x58\x69\x4d\xde\x4a\x06\xca\xcb\x29\x7e\x27\x66\xba\x7c\xaa\xda\x63\x02\xe3\x59\xd0\xda\x04\xe8\xcb\x61\x5d\xa4\xf7\x14\x98\x40\x3f\x9f\x3a\x21\x56\x47\x4c\xbf\x3a\x87\xd7\xa7\xe9\x6f\x71\x4b\x9a\xc1\x33\x3d\x0f\x3e\x3b\x25\xa7\xe4\x9e\xda\xd6\x74\x0a\x8d\xb2\xa5\x8e\x47\x73\xf2\xb5\x01\x4b\x02\x21\x0c\x18\x0b\x64\xb4\x1a\x41\x08\x06\x5e\xa3\xe0\x70\x0b\xc4\x78\x45\xed\x05\x07\x30\xed\xc6\x9c\xa8\x0a\x79\xc7\x74\xfd\x86\xc9\x3f\xbc\x1e\x26\xef\x5a\xe2\x24\x7a\x6c\xe1\x31\x94\xfa\xc6\x28\xc1\x0d\xca\x85\xb8\x2a\xed\xb1\x3f\xcf\xe0\x52\x7f\xbf\xb8\x45\xbf\x01\x00\x00\xff\xff\xfc\x75\x1d\x8c\xf9\x01\x00\x00" func lockedtokensStakerUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -4290,11 +4290,11 @@ func lockedtokensStakerUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xda, 0xe7, 0xc1, 0x75, 0xd6, 0x8e, 0x1a, 0x5c, 0xb2, 0x5f, 0xcd, 0xb3, 0x4f, 0xa6, 0x85, 0x5a, 0xd4, 0x54, 0x29, 0x2c, 0x6f, 0x5d, 0x2a, 0xcd, 0x98, 0x25, 0x64, 0x6c, 0xa3, 0xb7, 0x33, 0x8c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x13, 0x3f, 0x91, 0xf6, 0x9d, 0x77, 0xd, 0x53, 0xb5, 0x7b, 0xac, 0xb1, 0xe7, 0x27, 0xcd, 0x2a, 0x84, 0xdb, 0x2b, 0xbd, 0x78, 0xa7, 0x1b, 0x12, 0x99, 0xb, 0x28, 0x36, 0xda, 0xb0, 0x7f, 0x8a}} return a, nil } -var _lockedtokensStakerWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\xcd\x8e\xa2\x40\x10\xbe\xf3\x14\x15\x0e\x1b\x38\x2c\xee\x61\xb3\x07\xa3\x6b\x8c\x3f\x99\x44\x33\x1a\x71\xe6\xde\x03\xc5\x40\x44\x8a\x14\x85\x30\x99\xf8\xee\x13\x68\x40\x86\xe8\x65\xfa\xd2\x69\xea\xeb\xef\xaf\x89\xce\x29\xb1\xc0\x96\xbc\x13\xfa\x47\x3a\x61\x92\x41\xc0\x74\x86\x3f\xe5\x76\xb7\xd8\xac\x96\xc7\xdd\x66\xf5\x3c\x5f\x2e\x0f\x2b\xd7\x35\x1a\xf4\x3a\xa6\xa2\xc6\x6a\xa8\xd9\x9d\x4d\xc3\x10\x56\x49\xa6\x3c\x89\x28\xb1\xd4\x99\xf2\x44\xc6\xf0\xb2\x8e\xca\x7f\x7f\x6d\xf8\x34\x0c\x00\x80\x18\x05\x42\x8a\x7d\xe4\x03\x06\x63\xf8\xd5\x17\x77\xea\xed\xa9\x9e\x76\xe0\x8b\xca\x63\xd1\xd8\x4e\xca\x79\xad\x3e\x6a\xc2\x94\x31\x55\x8c\x96\xf2\x3c\x2d\x38\xcf\x25\x9c\xeb\x43\xa5\x0a\xcd\xca\x30\x0e\x9c\x4e\x19\xa6\xd0\x5c\x70\xde\x88\x99\x8a\xc9\x43\x27\xff\xad\x2a\xe8\x18\x1e\xcd\x5d\x21\x56\xef\xb8\x57\x12\xda\x9d\x5a\xb5\x66\x33\x48\x55\x12\x79\x96\xb9\xa0\x3c\xf6\x21\x21\x01\x2d\x06\x8c\x01\x32\x26\x1e\x82\x10\xf4\xb8\x4c\xdb\xf8\x6e\xb8\x4d\x7f\xc7\xef\xa0\x8d\xd6\xe6\x28\xd3\x7e\x46\x41\x3b\xaf\xc7\x3f\xb3\x76\x7b\xec\x8b\x8a\x73\x34\x35\xcb\x55\x9b\xc4\x12\xbd\x5c\xb0\xd7\x71\xf5\x5e\x99\xa8\x13\xf2\x9e\xa9\xfc\x80\xe9\xa0\xf5\xc6\xbb\x5b\x43\xac\x7e\xd6\xdb\x25\xa7\x88\x24\xf4\x59\x15\x07\x2c\x14\xfb\x6d\xe3\xdd\xff\xa4\x77\xfb\x7e\x4d\x8e\x8f\x29\x65\x91\x34\x5d\x4c\x7e\x0f\xf4\x5b\xee\x21\x5b\x9b\xeb\x6a\x7c\x05\x00\x00\xff\xff\x4a\x8d\xea\x3c\x14\x03\x00\x00" +var _lockedtokensStakerWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\x4d\xaf\x9a\x40\x14\xdd\xf3\x2b\x6e\x58\x18\x58\x14\xbb\x68\xba\x30\x5a\x63\xfd\x48\x13\x4d\x35\x62\xdd\x4f\xe1\x52\x88\xc8\x25\x97\x8b\xd0\xbc\xf8\xdf\x5f\x60\x00\x79\xe4\xf9\x16\x6f\x36\x13\x38\x67\xce\x39\xf7\xcc\x44\xd7\x94\x58\x60\x47\xde\x05\xfd\x13\x5d\x30\xc9\x20\x60\xba\xc2\xd7\x72\xb7\x5f\x6e\xd7\xab\xd3\x7e\xbb\xfe\xbd\x58\xad\x8e\x6b\xd7\x35\x1a\xf6\x26\xa6\xa2\xe6\x6a\xaa\xd9\x7d\x9b\x86\x21\xac\x92\x4c\x79\x12\x51\x62\xa9\x2b\xe5\x89\x4c\xe0\xcf\x26\x2a\xbf\x7f\xb3\xe1\xc5\x30\x00\x00\x62\x14\x08\x29\xf6\x91\x8f\x18\x4c\x60\xd4\x37\x77\xea\xed\x57\x8d\x76\xe4\x9b\xca\x63\xd1\xdc\xce\xca\x39\x57\x3f\xb5\x60\xca\x98\x2a\x46\x4b\x79\x9e\x36\x54\xb9\x84\xd6\x4f\x62\xa6\xe2\xac\xe2\x1c\x6d\x18\x2d\x34\x56\x85\x80\x66\x65\x18\x07\x4e\x17\x04\x66\xd0\x9c\x77\x32\x21\x56\xff\xd0\xf9\x5b\x2b\x4c\x9f\x06\xfc\x61\x55\xf3\x4f\xe0\x19\xee\x6a\x9d\x83\x92\xd0\xee\x5c\xab\x35\x9f\x43\xaa\x92\xc8\xb3\xcc\x25\xe5\xb1\x0f\x09\x09\x68\x33\x60\x0c\x90\x31\xf1\x10\x84\xa0\xa7\x65\xda\xc6\xdb\xe0\x6d\x29\x1f\xe4\x1e\x94\xd5\xc6\x1d\x37\xbc\x71\xd0\xe2\x35\xfc\xb9\x88\x8f\xb7\x70\xab\x9a\x36\xb5\xca\x5d\x87\xc5\x12\xbd\x5c\xb0\xd7\x79\x75\x9d\x99\xa8\x0b\xf2\x81\xa9\xfc\x0f\xb3\xc1\x2d\x34\xd9\xdd\x9a\x62\xf5\x67\x7e\x1c\x72\x8a\x48\x42\x9f\x55\x71\xc4\x42\xb1\xdf\x36\xdf\x3d\x37\xbd\xdb\xef\xd7\xe5\xf8\x98\x52\x16\x49\xd3\xc5\xf4\xcb\xc0\xbf\xd5\x1e\xaa\xb5\x73\xdd\x8d\xd7\x00\x00\x00\xff\xff\x8f\x30\x29\xb3\x33\x03\x00\x00" func lockedtokensStakerWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4310,11 +4310,11 @@ func lockedtokensStakerWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe9, 0x5c, 0xca, 0x3e, 0xa9, 0xb8, 0x1a, 0xda, 0x20, 0xf1, 0x6b, 0xf9, 0x15, 0xee, 0xef, 0x9d, 0xf4, 0x4, 0xd7, 0x3f, 0xd7, 0xae, 0x2a, 0xa9, 0xff, 0x12, 0x53, 0x50, 0x98, 0x2a, 0xe0, 0xfb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x40, 0xf7, 0x20, 0xe9, 0xf7, 0x96, 0xc, 0x7a, 0xa8, 0xf7, 0xed, 0xfa, 0xc4, 0x29, 0x42, 0x6c, 0x6, 0xd0, 0xfb, 0xd2, 0x61, 0x87, 0x1c, 0xc9, 0x19, 0x3f, 0xac, 0x4f, 0xf0, 0x25, 0x42, 0x1f}} return a, nil } -var _lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6b\xc2\x50\x0c\xc7\xef\xfd\x2b\x82\x87\x51\x2f\x65\x87\xb1\x83\xcc\x49\x51\xf7\x03\x45\xa5\x75\xb0\x1d\xdf\x5e\x53\x5b\x5a\x5f\x4a\x9a\xd2\x8e\xe1\xff\x3e\xea\x6b\xb5\x0c\xcc\x25\x3c\xf2\xcd\x37\xf9\xe4\xa5\xc7\x82\x58\x60\x4d\x3a\xc3\x68\x4f\x19\x9a\x12\x62\xa6\x23\xdc\x37\xeb\xed\x7c\xb5\x5c\xec\xb7\xab\xe5\xc6\x5f\x2c\x82\x65\x18\x3a\x9d\x3a\x14\x95\xa5\xe6\xb0\x63\x6a\x7e\x7a\x75\xb8\xf7\x57\xef\x9b\xd7\x5d\xb0\xfd\xfc\xea\xe5\x8e\xb0\x32\xa5\xd2\x92\x92\x71\xd5\x91\x2a\x23\x13\xf8\x78\x49\x9b\xc7\x87\x31\xfc\x3a\x0e\x00\x40\x8e\x02\x09\xe5\x11\x72\x80\xf1\x04\xee\x86\x9b\x78\xe7\xf4\x76\xae\x5a\x75\xc1\x58\x28\x46\x57\x69\x6d\xdd\xfc\x4a\x12\xdf\x3e\x5a\x4b\xe8\xa2\xc4\x3c\xf6\x2e\xb6\x30\x85\xae\xc1\xfb\x26\x66\xaa\x9f\x6e\x8e\x79\x76\x5b\x9e\x09\xdc\xaa\x87\x42\xac\x0e\xb8\x53\x92\x8c\x2f\xd3\xda\x98\xcd\xa0\x50\x26\xd5\xee\x68\x4e\x55\x1e\x81\x21\x01\x3b\x0c\x18\x63\x64\x34\x1a\x41\x08\x06\x5e\x23\xeb\x70\xb2\x68\xd8\xa0\xae\x04\x07\x10\xed\x69\x4a\x51\x19\xb2\xbd\xf4\xf4\x1f\x56\x07\x13\x9e\x25\xee\xd8\xb9\xd2\x5f\x9b\xbc\x3a\x95\x24\x62\x55\x07\x58\x2b\x8e\x7a\xa4\xcb\x6f\xd8\xdc\x2f\x72\x72\xfe\x02\x00\x00\xff\xff\xd5\xd5\xf1\x96\x10\x02\x00\x00" +var _lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x51\x4d\x8f\xaa\x50\x0c\xdd\xf3\x2b\x1a\x17\x06\x36\xe4\x2d\x5e\xde\xc2\x3c\x9f\xf1\xa9\xf3\x11\x8d\x1a\x70\x26\x33\xcb\x3b\x97\x22\x04\xbc\x25\xa5\x04\x26\x13\xff\xfb\x04\x2e\xa8\x99\xc4\x6e\xba\x38\xa7\xe7\xf4\xb4\xe9\xa9\x20\x16\xd8\x90\xce\x30\x3a\x50\x86\xa6\x84\x98\xe9\x04\xbf\x9a\xcd\x6e\xb1\x5e\x2d\x0f\xbb\xf5\x6a\x3b\x5f\x2e\x83\x55\x18\x3a\x3d\x3b\x14\x95\xa5\xe6\xb8\x67\x6a\x3e\x07\x76\x78\x98\xaf\x9f\xb7\x8f\xfb\x60\xf7\xf6\x3e\xd0\x1d\x61\x65\x4a\xa5\x25\x25\xe3\xaa\x13\x55\x46\x26\xf0\xf2\x90\x36\x7f\x7e\x7b\xf0\xe5\x38\x00\x00\x39\x0a\x24\x94\x47\xc8\x01\xc6\x13\x18\xdf\x6e\xe2\x77\xed\xa9\x43\x2d\xbb\x60\x2c\x14\xa3\xab\xb4\xb6\x6a\xaa\x92\xc4\xfd\x4f\xcc\x54\xbf\xaa\xbc\x42\x0f\xc6\x73\x8b\xb5\x0e\xd0\x57\x89\x79\xec\x5f\x5c\x60\x0a\xfd\xbc\x5f\x0a\xb1\x3a\xa2\xff\xd1\x29\xfc\xbd\xeb\xfe\xcf\x6d\x63\x4e\xe0\x1e\x1e\x5a\x9d\xbd\x92\xc4\xbb\xb8\xb6\x35\x9b\x41\xa1\x4c\xaa\xdd\xd1\x82\xaa\x3c\x02\x43\x02\xd6\x0c\x18\x63\x64\x34\x1a\x41\x08\x6e\xb4\x46\x56\xe1\x6c\x13\x63\x83\xba\x12\xbc\x09\xd3\x5e\xac\x14\x95\x21\xdb\x07\x4c\x7f\xc4\xeb\xc3\x84\x1d\xc5\xf5\x9c\xeb\x15\xae\x43\x7e\x9d\x4a\x12\xb1\xaa\x03\xac\x15\x47\x43\xa4\xcb\x93\x6c\x1f\x16\x39\x3b\xdf\x01\x00\x00\xff\xff\x5b\x9a\x75\x42\x27\x02\x00\x00" func lockedtokensStakerWithdraw_rewarded_tokens_lockedCdcBytes() ([]byte, error) { return bindataRead( @@ -4330,11 +4330,11 @@ func lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0xae, 0xac, 0xc7, 0x74, 0x93, 0x11, 0x75, 0xd9, 0x15, 0x9f, 0x5d, 0x7e, 0x5d, 0xa1, 0xd1, 0x7b, 0x82, 0x30, 0xf4, 0xb2, 0xda, 0xf6, 0xce, 0x9f, 0x28, 0xd0, 0xa9, 0xa0, 0xd5, 0x91, 0x1b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa, 0xd2, 0xe9, 0xc3, 0xfb, 0x3c, 0xbe, 0x78, 0xa8, 0xac, 0x78, 0x83, 0xe, 0x51, 0x53, 0x4a, 0xe9, 0xf0, 0x25, 0xc5, 0x1f, 0x1a, 0xf7, 0x1e, 0xb1, 0xe3, 0xc8, 0xa9, 0x39, 0x55, 0x8a, 0x82}} return a, nil } -var _lockedtokensStakerWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4f\x6b\xf2\x40\x10\xc6\xef\xf9\x14\x83\x87\x97\x78\x09\xef\xa1\xf4\x20\xb5\x12\xd4\xfe\x41\x51\x31\x0a\xed\x71\xbb\x99\x98\x25\x71\x27\x4c\x26\x98\x52\xfc\xee\x25\xd9\xa8\xa1\xe0\x5c\x86\x64\x9e\x79\x66\x7e\xb3\xe6\x58\x10\x0b\x2c\x49\x67\x18\xef\x28\x43\x5b\x42\xc2\x74\x84\xff\xf5\x72\x3d\x5d\xcc\x67\xbb\xf5\x62\xbe\x0a\x67\xb3\xed\x3c\x8a\xbc\x4e\x1d\x89\xca\x8c\x3d\x6c\x98\xea\xef\x8b\x3a\xda\x85\x8b\xf7\xd5\xeb\x66\xbb\xfe\xf8\xbc\xc8\x3d\x61\x65\x4b\xa5\xc5\x90\xf5\xd5\x91\x2a\x2b\x23\xd8\xbf\x98\xfa\xf1\x61\x08\x3f\x9e\x07\x00\x90\xa3\x40\x4a\x79\x8c\xbc\xc5\x64\x04\xff\xfa\x9b\x04\x6d\x7a\x6b\xab\x4e\x5d\x30\x16\x8a\xd1\x57\x5a\x3b\xb7\xb0\x92\x34\x74\x1f\x8d\x25\x74\x51\x62\x9e\x04\x57\x5b\x18\x43\xd7\x10\x7c\x11\x33\x9d\x9e\xee\x8e\x79\xf6\x1b\x9e\x11\xdc\xab\x47\x42\xac\x0e\xb8\x51\x92\x0e\xaf\xd3\x9a\x98\x4c\xa0\x50\xd6\x68\x7f\x30\xa5\x2a\x8f\xc1\x92\x80\x1b\x06\x8c\x09\x32\x5a\x8d\x20\x04\x3d\xaf\x81\x73\x38\x3b\x34\xac\x51\x57\x82\x3d\x88\xe6\x34\xa5\xa8\x0c\xd9\x5d\x7a\xfc\x07\xab\x83\x89\x5a\x89\x3f\xf4\x6e\xf4\xb7\xa6\xe0\x64\x24\x8d\x59\x9d\xf6\xb6\xfd\xdb\x21\x5d\x5f\xc3\xe5\xcb\x22\x67\xef\x37\x00\x00\xff\xff\xfa\xe1\x41\xb8\x10\x02\x00\x00" +var _lockedtokensStakerWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x51\x4d\x6b\xc2\x40\x10\xbd\xe7\x57\x0c\x1e\x24\xb9\x84\x1e\x4a\x0f\x52\x2b\x56\xed\x07\x8a\x8a\xd1\xd2\x1e\xb7\x9b\x89\x09\x89\x3b\x61\x32\xc1\x94\xe2\x7f\x2f\xc9\x46\x0d\x05\xf7\x32\xb0\xef\xcd\x7b\xf3\x66\x92\x43\x4e\x2c\xb0\x20\x9d\x62\xb8\xa5\x14\x4d\x01\x11\xd3\x01\xee\xaa\xc5\x6a\x32\x9f\x4d\xb7\xab\xf9\x6c\x39\x9e\x4e\x37\xb3\x20\x70\x5a\x76\x20\x2a\x4d\xcc\x7e\xcd\x54\xfd\x9c\xd9\xc1\x76\x3c\x7f\x5f\xbe\xae\x37\xab\xcf\xaf\x33\xdd\x11\x56\xa6\x50\x5a\x12\x32\xae\x3a\x50\x69\x64\x00\xbb\x97\xa4\x7a\xb8\xf7\xe0\xd7\x71\x00\x00\x32\x14\x88\x29\x0b\x91\x37\x18\x0d\xa0\xdf\x9d\xc4\x6f\xca\x5b\x83\x5a\x76\xce\x98\x2b\x46\x57\x69\x6d\xd5\x54\x29\xb1\xfb\x4c\xcc\x74\xfc\x50\x59\x89\x1e\xf4\xc7\x16\xab\x1d\xa0\x7d\x05\x66\x91\x7f\x71\x81\x21\xb4\xfd\x7e\x21\xc4\x6a\x8f\xfe\x77\xa3\xf0\x78\xd3\xfd\xc9\xad\x63\x0e\xe0\x16\x1e\x58\x9d\xb5\x92\xd8\xbb\xb8\xd6\x6f\x34\x82\x5c\x99\x44\xbb\xbd\x09\x95\x59\x08\x86\x04\xac\x19\x30\x46\xc8\x68\x34\x82\x10\x74\xb4\x7a\x56\xe1\x64\x13\x63\x85\xba\x14\xec\x84\xa9\x37\x56\x88\x4a\x91\xed\x01\x86\xff\xe2\xb5\x61\x82\x86\xe2\x7a\xce\x75\x0b\xd7\x26\xff\x98\x48\x1c\xb2\x3a\xee\x4c\xf3\xdb\x46\xba\x1c\xc9\xd6\xf3\x20\x27\xe7\x2f\x00\x00\xff\xff\x74\xae\xc5\x6c\x27\x02\x00\x00" func lockedtokensStakerWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4350,11 +4350,11 @@ func lockedtokensStakerWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0xec, 0x5f, 0x9a, 0x23, 0xd5, 0x31, 0x36, 0x95, 0x2c, 0xc0, 0x94, 0x2c, 0x22, 0xb0, 0x1e, 0xdd, 0x3, 0x79, 0xff, 0x8e, 0x9c, 0xf3, 0x37, 0xf, 0xb3, 0xc2, 0x8d, 0xb4, 0x76, 0xaa, 0x4f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0xee, 0x22, 0x35, 0xdd, 0x6d, 0x55, 0x13, 0x2e, 0xb, 0x5b, 0x73, 0x15, 0x8b, 0xa6, 0xfa, 0xc5, 0x79, 0xf8, 0xbd, 0x1e, 0x6b, 0x8c, 0x3b, 0x89, 0xb0, 0x1a, 0x9a, 0xb7, 0xab, 0xcb, 0x74}} return a, nil } -var _lockedtokensUserDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xcd\x6a\xeb\x30\x10\x85\xf7\x7e\x8a\xc1\x8b\x8b\xbd\xb8\x4e\x17\xa5\x0b\x93\x36\x84\xfc\x50\x48\x68\x4a\x92\xb6\x6b\x45\x1e\xc7\x26\x8a\xc6\xc8\xe3\x3a\x50\xf2\xee\x45\x56\x6c\xe2\x96\x40\xb5\x11\x9e\x39\x9a\xf3\x1d\x59\xf9\xb1\x20\xc3\x30\xaf\xf4\x3e\xdf\x29\xdc\xd2\x01\x35\xa4\x86\x8e\xe0\xf7\x6a\xbe\xd7\x2a\x15\xd5\x3d\x55\xfb\xdd\x29\x96\x24\x0f\x98\x34\xb5\xd2\x89\xee\x4e\xcb\xd5\x64\x31\x9b\x6e\x57\x8b\xd9\xcb\x78\x3a\x5d\xcf\x36\x1b\xcf\x63\x23\x74\x29\x24\xe7\xa4\x03\x71\xa4\x4a\x73\x0c\x6f\xf3\xfc\xf4\x70\x1f\xc2\x97\xe7\x01\x00\x28\x64\xc8\x48\x25\x68\xd6\x98\xc6\xf0\xef\x7a\x74\xd4\x6c\xcf\x4d\xb7\x13\x7f\x8a\x4a\xb1\xd3\x76\x60\xd1\xbb\x2d\xba\x81\x85\xc1\x42\x18\x0c\x84\x94\x1c\xc3\xb8\xe2\x6c\x2c\xa5\xb5\xb6\x96\x70\x59\x25\xaa\x34\xea\x6c\xe1\x11\xac\x3a\xda\x91\x31\x54\x0f\x6f\x32\x3c\x05\x36\x6b\x0c\xb7\xfa\x1b\x26\x23\xf6\xf8\x2a\x38\x0b\x3b\x2b\xbb\x46\x23\x28\x84\xce\x65\xe0\x4f\xa8\x52\x09\x68\x62\x70\x66\x20\xc0\x60\x8a\x06\xb5\x44\x60\x82\xab\x69\x7e\xe8\xf5\x79\xdb\xe4\x3f\x70\x45\xc5\x59\xd0\xfb\x93\xd1\x47\xce\x59\x62\x44\x2d\x76\x0a\xc3\x5f\xf7\xd4\xc6\x18\x94\x8e\x77\x90\xb6\xfd\xa6\xfd\x67\x74\x7b\x0c\xb8\x79\x28\x0d\x9a\x4d\xe2\xbb\xd3\x67\x87\x8e\x27\x94\x15\xe3\xcd\x8b\x8f\x12\x2c\xa8\xcc\xf9\x02\x34\xfc\xdf\xcb\x19\xd5\x97\x18\xdd\xdb\x71\x7b\xd8\x7a\x9c\xbd\xef\x00\x00\x00\xff\xff\x39\x77\xf1\x16\xdc\x02\x00\x00" +var _lockedtokensUserDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\x4d\xab\xdb\x30\x10\xbc\xfb\x57\x2c\x3e\x04\xfb\x50\xa5\x87\xd2\x83\x49\x1b\xd2\x7c\x50\x48\x68\x4a\x92\xa6\x67\x45\x5e\xc7\x26\x8a\x64\xe4\x75\x1d\x28\xf9\xef\x0f\x49\xb6\x89\x1f\x18\x9e\x2f\xc2\xbb\xb3\xb3\x33\x23\x15\xf7\x52\x1b\x82\x4d\xad\xae\xc5\x45\xe2\x49\xdf\x50\x41\x66\xf4\x1d\xc2\x41\x2d\x0c\x3a\xa4\xd4\xcd\x00\xd5\xfd\xf7\x88\x9d\x16\x37\x4c\x5d\xad\xf2\xa0\xcf\x8f\xdd\x7e\xb9\x5d\xaf\x4e\xfb\xed\xfa\xd7\x62\xb5\x3a\xac\x8f\xc7\x20\x20\xc3\x55\xc5\x05\x15\x5a\x45\xfc\xae\x6b\x45\x09\xfc\xd9\x14\x8f\xaf\x5f\x62\xf8\x1f\x04\x00\x00\x12\x09\x72\x2d\x53\x34\x07\xcc\x12\x98\xbc\x52\x33\x77\xfc\x74\xdd\x1e\xfc\x8f\xd7\x92\x3c\xb6\x17\xc6\xce\xb6\xe8\x09\x4b\x83\x25\x37\x18\x71\x21\x28\x01\x5e\x53\x1e\xfd\xd0\xc6\xe8\xe6\xcc\x65\x8d\x31\x4c\x16\x42\x58\x25\x56\x01\xb4\x5f\x85\x32\x63\xbd\x0a\xf8\x06\x76\x98\x55\xa4\x0d\xbf\x22\xbb\xb8\xf1\xd9\xa8\xb4\xef\x91\x8d\x20\x81\xb1\xfe\xd1\xf3\xfc\xe6\x94\xc7\xfd\x4a\xfb\xcd\xe7\x50\x72\x55\x88\x28\x5c\xea\x5a\xa6\xa0\x34\x81\x5f\x06\x1c\x0c\x66\x68\x50\x09\x04\xd2\xf0\xc2\x16\xc6\xc1\x50\x77\x17\xc8\x88\x6c\x97\xc0\xe0\xa2\xd9\xdf\x82\xf2\xd4\xf0\x86\x5f\xa4\x0d\xe4\x5d\x8c\x9d\x9d\x69\x4b\x34\xcd\xba\xbe\x6b\x7f\xd8\x82\x1d\x03\x72\xef\xc8\x49\xb4\x8e\x42\x3f\xfd\xf4\x16\xf0\x81\xa2\x26\x1c\xbd\x08\x96\x62\xa9\xab\x82\x5a\x41\xb3\x4f\x03\xbf\xac\x69\x6d\xf4\x4f\xcb\x9f\x71\xb7\xe3\x19\xbc\x05\x00\x00\xff\xff\x28\xf7\xc5\x4b\xfb\x02\x00\x00" func lockedtokensUserDeposit_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4370,11 +4370,11 @@ func lockedtokensUserDeposit_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/deposit_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd7, 0x2f, 0x21, 0x5e, 0x76, 0xce, 0x50, 0x65, 0x5, 0x3e, 0x4, 0xf7, 0x1f, 0xd2, 0x87, 0x2b, 0xaa, 0x17, 0x7a, 0xa7, 0x9b, 0x16, 0x7, 0xcc, 0xb4, 0xb3, 0x85, 0xf5, 0x6e, 0xfd, 0x31, 0x8c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc4, 0x14, 0xd8, 0x6a, 0x6e, 0xe3, 0x3a, 0x83, 0x72, 0x23, 0xb6, 0x93, 0xe9, 0xe7, 0x11, 0xb6, 0xc9, 0x10, 0x2c, 0xc5, 0x3e, 0xce, 0x11, 0x92, 0x6b, 0xf4, 0xdc, 0xbc, 0xc5, 0x47, 0xce, 0x58}} return a, nil } -var _lockedtokensUserGet_locked_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x4e\xf3\x30\x10\x84\xef\x7e\x8a\x51\x0f\xbf\x9c\x4b\xf5\x9f\x11\x50\x45\x49\x24\x50\x23\x5a\xb5\x7d\x01\xc7\xd9\x14\xab\x8e\x37\x72\x6c\x01\x42\xbc\x3b\x4a\x52\x42\x0b\xec\xc5\xd6\x6a\x66\x3e\x7b\x4c\xdb\xb1\x0f\x28\x59\x9f\xa8\x3e\xf0\x89\x5c\x8f\xc6\x73\x8b\xff\xaf\xe5\x26\x5b\x17\xf9\x61\xb3\x2e\x9e\xd2\x3c\xdf\x15\xfb\xbd\x10\x4a\x6b\xea\x7b\xa9\xac\x4d\xd0\x44\x87\x56\x19\x27\x95\xd6\x1c\x5d\xb8\x41\x5a\xd7\x9e\xfa\x3e\x99\x6f\x78\x17\x02\x00\x2c\x05\xd8\x11\x91\x4e\xda\x47\xd7\xf0\x8e\x1a\xdc\xe1\x48\xe1\xbc\xfb\xca\x49\x46\xcb\x30\xcb\x23\x85\x4c\x75\xaa\x32\xd6\x84\xb7\xdb\x7f\x97\xaf\x5c\x8e\xc7\x03\xdb\x9a\xfc\xbd\x9c\x2d\xc3\x5c\xc9\xca\x9f\xd8\x6d\xac\xac\xd1\x5b\x15\x9e\x67\xd3\x05\xb1\x62\xef\xf9\x45\x7e\x6f\x56\x2b\x74\xca\x19\x2d\x17\x19\x47\x5b\xc3\x71\xc0\x24\x82\x82\xa7\x86\x3c\x39\x4d\x08\x8c\x6e\x0c\xc6\x2f\xe0\x22\x99\x4a\xf0\x14\xa2\x77\x7f\xf6\x30\x7c\xf4\xca\x77\xee\x4f\x26\xe2\x43\x7c\x06\x00\x00\xff\xff\xa0\x11\x67\x46\xa3\x01\x00\x00" +var _lockedtokensUserGet_locked_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x4e\xf3\x30\x10\x84\xef\x7e\x8a\xf9\x7b\xf8\x65\x5f\x2a\xce\x08\xa8\xaa\x26\x12\xa8\x11\xad\xda\xbe\x80\xe3\x6c\x8a\x55\xc7\x1b\xd9\x8e\x40\x42\xbc\x3b\x4a\x52\x52\x0a\xec\xc5\x96\x35\xb3\xdf\x78\x6c\xd3\x72\x48\x28\xd8\x9c\xa8\x3a\xf0\x89\x7c\x44\x1d\xb8\xc1\xcd\x5b\xb1\x59\xad\xf3\xec\xb0\x59\xe7\xcf\xcb\x2c\xdb\xe5\xfb\xbd\x10\xda\x18\x8a\x51\x6a\xe7\x14\xea\xce\xa3\xd1\xd6\x4b\x6d\x0c\x77\x3e\xdd\x62\x59\x55\x81\x62\x54\xd3\x0d\xef\x42\x00\x80\xa3\x04\x37\x20\x96\xa3\xf6\xc9\xd7\xbc\xa3\x1a\xf7\x38\x52\x3a\xbf\x7d\xed\x51\x83\xa5\x9f\xb9\xd1\xad\x2e\xad\xb3\xc9\x52\x9c\x1f\x29\xdd\xfd\xff\x1e\x74\x3e\x1c\x8f\xec\x2a\x0a\x0f\x72\x72\xf5\x73\x25\x2b\x7e\x92\xb7\x5d\xe9\xac\xd9\xea\xf4\x32\x99\xd4\xbf\x0b\xb5\xe4\x10\xf8\x55\x5e\x72\x2c\x16\x68\xb5\xb7\x46\xce\x56\xdc\xb9\x0a\x9e\x13\x46\x11\x34\x02\xd5\x14\xc8\x1b\x42\x62\xb4\xc3\x66\xfc\x22\xce\xd4\x58\x44\xa0\xd4\x05\xff\x67\x17\xfd\xff\xae\x7c\xe7\x0e\xa5\x12\x1f\xe2\x33\x00\x00\xff\xff\xad\x23\x7d\xb6\xa7\x01\x00\x00" func lockedtokensUserGet_locked_account_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -4390,11 +4390,11 @@ func lockedtokensUserGet_locked_account_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_locked_account_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0xe5, 0x42, 0x1b, 0xc1, 0xd2, 0xf5, 0xa4, 0x36, 0xc6, 0x41, 0x7a, 0xd6, 0x92, 0xbe, 0x83, 0xab, 0x50, 0x13, 0x5a, 0x31, 0x63, 0x23, 0x5c, 0xaa, 0x30, 0xb3, 0xcb, 0xd3, 0x48, 0x27, 0x75}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x20, 0xea, 0x12, 0x83, 0xdb, 0xe4, 0x6, 0x68, 0x59, 0x15, 0x8d, 0xa7, 0x5, 0x1d, 0x2e, 0xb6, 0x91, 0xaf, 0xf4, 0xd1, 0xf9, 0xa8, 0x5c, 0x66, 0x51, 0x3a, 0x9a, 0x3d, 0xcd, 0x1f, 0xe0, 0x60}} return a, nil } -var _lockedtokensUserGet_locked_account_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x4e\xeb\x30\x10\x45\xf7\xfe\x8a\xab\x2e\x9e\x9c\x4d\xf5\x16\x88\x45\x05\x54\x21\x09\x02\x35\xa2\x55\x5b\x3e\xc0\x71\x26\xc5\xaa\xe3\x89\x1c\x47\x14\x21\xfe\x1d\x25\x81\xd2\x02\xb3\xb1\x34\xba\x67\x8e\x67\x4c\xdd\xb0\x0f\xc8\x59\xef\xa9\xdc\xf2\x9e\x5c\x8b\xca\x73\x8d\xff\x87\x7c\x99\x2c\xb2\x74\xbb\x5c\x64\x8f\x71\x9a\xae\xb3\xcd\x46\x08\xa5\x35\xb5\xad\x54\xd6\x46\xa8\x3a\x87\x5a\x19\x27\x95\xd6\xdc\xb9\x30\x43\x5c\x96\x9e\xda\x36\x9a\xe1\xe9\xce\x1c\x2e\x2f\xf0\x26\x04\x00\x58\x0a\xb0\x83\x21\x1e\xa3\x0f\xae\xe2\x35\x55\xb8\xc6\x8e\xc2\x67\xef\x6b\x4c\x34\x20\x7d\x4d\x77\x14\x12\xd5\xa8\xc2\x58\x13\x5e\xaf\xfe\x9d\x7e\x72\x3a\x3c\xf7\x6c\x4b\xf2\x37\xf2\x88\xf4\x75\x16\xcb\x7f\x6a\x57\x5d\x61\x8d\x5e\xa9\xf0\x7c\x84\x4e\x8c\x05\x7b\xcf\x2f\xf2\xbb\x33\x9f\xa3\x51\xce\x68\x39\x49\xb8\xb3\x25\x1c\x07\x8c\x21\x28\x78\xaa\xc8\x93\xd3\x84\xc0\x68\x86\xc1\xf8\x25\x9c\x44\xe3\x11\x3c\x85\xce\xbb\x3f\xef\xd0\x2f\x7a\xc6\xdd\x2a\xab\x9c\x26\x19\x89\x77\xf1\x11\x00\x00\xff\xff\x39\x43\xf4\x53\xa2\x01\x00\x00" +var _lockedtokensUserGet_locked_account_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x4f\x32\x31\x10\x86\xef\xfd\x15\xef\xc7\xe1\x4b\x7b\x21\x1e\x8c\x07\xa2\x12\x04\x8c\x86\x8d\x10\xc0\x1f\xd0\xed\xce\x62\x43\xb7\xb3\x69\xbb\x91\xc4\xf8\xdf\xcd\xee\x2a\x88\x3a\x97\x26\xcd\xfb\xcc\x33\x33\xb6\xaa\x39\x24\x64\x6c\xf6\x54\x6c\x79\x4f\x3e\xa2\x0c\x5c\xe1\xe2\x90\x2d\xa7\x8b\xf9\x6c\xbb\x5c\xcc\x9f\x26\xb3\xd9\x7a\xbe\xd9\x08\xa1\x8d\xa1\x18\xa5\x76\x4e\xa1\x6c\x3c\x2a\x6d\xbd\xd4\xc6\x70\xe3\xd3\x08\x93\xa2\x08\x14\xa3\x1a\xe1\xf9\xde\x1e\xae\x2e\xf1\x26\x04\x00\x38\x4a\x70\x9d\x61\xd2\x47\x1f\x7d\xc9\x6b\x2a\x71\x83\x1d\xa5\xcf\xbf\xaf\x36\xaa\x43\xda\x1a\x1a\x5d\xeb\xdc\x3a\x9b\x2c\xc5\xe1\x8e\xd2\xf5\xff\xef\x73\x0e\xbb\xe7\x81\x5d\x41\xe1\x56\x1e\xa9\xb6\xce\x62\xd9\x4f\xf3\xaa\xc9\x9d\x35\x2b\x9d\x5e\x8e\x90\xfa\x77\xb2\xe6\x1c\x02\xbf\xca\xd3\x1c\xe3\x31\x6a\xed\xad\x91\x83\x29\x37\xae\x80\xe7\x84\x3e\x04\x8d\x40\x25\x05\xf2\x86\x90\x18\x75\xd7\x19\xbf\x8c\x03\xd5\x1f\x22\x50\x6a\x82\xff\xf3\x16\xed\x7e\x67\xdc\x9d\x76\xda\x1b\x92\x4a\xbc\x8b\x8f\x00\x00\x00\xff\xff\xb2\x24\xdb\x94\xa6\x01\x00\x00" func lockedtokensUserGet_locked_account_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -4410,11 +4410,11 @@ func lockedtokensUserGet_locked_account_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_locked_account_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x56, 0x2b, 0x3d, 0xb6, 0xfc, 0xc6, 0x5c, 0xb5, 0x4a, 0x8b, 0x5d, 0xd7, 0x1, 0x2c, 0x6, 0x65, 0xcd, 0x96, 0x83, 0xf3, 0xeb, 0x2d, 0x26, 0x7f, 0xeb, 0xfe, 0x97, 0xd2, 0x45, 0x54, 0xe5, 0xef}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x63, 0x6, 0x13, 0x4, 0x10, 0x1c, 0xe5, 0xa2, 0x76, 0xe1, 0x1a, 0x51, 0xa6, 0x46, 0xbd, 0xe7, 0x35, 0xc5, 0xd2, 0xd4, 0x7b, 0x8f, 0xe1, 0x17, 0x93, 0xc5, 0x7f, 0x6, 0x47, 0xf, 0xeb, 0x63}} return a, nil } -var _lockedtokensUserGet_multiple_unlock_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x50\x4d\x4f\xc2\x40\x14\xbc\xef\xaf\x98\x70\x30\xdb\x0b\xf1\x60\x3c\x10\x91\x10\xc0\x68\x68\x84\xf0\x71\x22\x1c\x96\xed\x2b\x6e\xd8\xee\x36\xbb\x5b\xc5\x10\xfe\xbb\x69\x4b\xd5\xa2\xef\xd2\xe6\xcd\xbc\x99\xd9\x51\x59\x6e\x5d\x40\x6c\xe5\x81\x92\x95\x3d\x90\xf1\x48\x9d\xcd\x70\x7b\x8c\x67\xa3\xe9\x64\xbc\x9a\x4d\x27\xaf\xc3\xf1\x78\x31\x59\x2e\x19\x13\x52\x92\xf7\x5c\x68\x1d\x21\x2d\x0c\x32\xa1\x0c\x17\x52\xda\xc2\x04\xdf\xc3\x66\x98\x24\x8e\xbc\xdf\x46\x3d\x6c\xd6\x4f\xea\x78\x7f\xb7\xc5\x89\x31\x00\x78\x17\x0e\x5a\x65\xaa\xe2\x35\x58\x1f\x9b\x6d\x0d\xa7\xd6\xe1\x22\x04\x65\x9a\x5f\x8f\x53\x85\x96\xa3\x29\x40\x57\x39\x87\x35\xf8\x62\x52\xbb\xa0\x14\x7d\xec\x29\x5c\x76\x4d\x98\xe8\xfb\xac\x9c\xee\x9e\xc2\x48\xe4\x62\xa7\xb4\x0a\x9f\x0f\x37\xbf\x9f\xdb\xad\x3e\xcf\x56\x27\xe4\x1e\x79\xeb\xac\x9c\x16\x35\xbe\xb6\x9f\x17\x3b\xad\xe4\x5c\x84\xb7\xd6\xe1\x95\xfb\xce\x3a\x67\x3f\x78\x7b\x3b\x18\x20\x17\x46\x49\xde\x19\xd9\x42\x27\x30\x36\xa0\x26\x42\xc0\x51\x4a\x8e\x8c\x24\x04\x8b\xbc\x32\xc1\x1f\xf3\x4e\xc4\x7e\xca\xa9\x9a\xed\x8a\x3c\x27\x93\xf0\xff\x6a\x2a\x3b\x58\x9b\x12\x89\x4b\x2e\x8f\xea\x38\xe7\x5a\xc3\x51\x28\x9c\xb9\xc8\xb0\x33\xfb\x0a\x00\x00\xff\xff\xd4\x5b\x65\x00\x18\x02\x00\x00" +var _lockedtokensUserGet_multiple_unlock_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcf\x6e\xf2\x30\x10\xc4\xef\x7e\x8a\xf9\x38\x7c\x72\x2e\x51\x0f\x55\x0f\xa8\x14\x21\xa0\x6a\x45\x54\x10\x7f\x4e\x88\x83\x71\x36\xd4\xc2\xb1\x23\xdb\x69\x91\x10\xef\x5e\x25\x21\x6d\xd3\x76\x2f\x89\x3c\xb3\xbb\xbf\x1d\x95\x17\xd6\x05\x24\x56\x1e\x29\x5d\xdb\x23\x19\x8f\xcc\xd9\x1c\x37\xa7\x64\x3e\x9e\x4d\x27\xeb\xf9\x6c\xfa\x32\x9a\x4c\x96\xd3\xd5\x8a\x31\x21\x25\x79\xcf\x85\xd6\x11\xb2\xd2\x20\x17\xca\x70\x21\xa5\x2d\x4d\xf0\x7d\x6c\x47\x69\xea\xc8\xfb\x5d\xd4\xc7\x76\xf3\xa8\x4e\x77\xb7\x3b\x9c\x19\x03\x80\x37\xe1\xa0\x55\xae\x6a\x5f\xab\x0d\xb0\xdd\x35\x72\x66\x1d\xae\x83\xa0\x4c\xfb\xeb\x71\xae\xd5\xaa\x34\x05\xe8\x9a\x73\xd4\x88\xcf\x26\xb3\x4b\xca\x30\xc0\x81\xc2\xf5\xad\x85\x89\x3e\xdb\xaa\x8a\xa5\x28\xc4\x5e\x69\x15\x14\xf9\xf8\x40\xe1\xfe\xff\xf7\x8b\xe3\xfa\xf3\x64\x75\x4a\xee\x81\x77\x3a\xab\xea\x58\x93\x9f\x04\x8b\x72\xaf\x95\x5c\x88\xf0\xda\x69\x8c\xfe\x75\x09\xf6\xd6\x39\xfb\xce\xbb\x5c\xc3\x21\x0a\x61\x94\xe4\xbd\xb1\x2d\x75\x0a\x63\x03\x1a\x23\x04\x1c\x65\xe4\xc8\x48\x42\xb0\x28\xea\x2d\xf8\xb5\xbd\x17\xb1\xaf\x80\xea\x74\x63\x51\x14\x64\x52\xfe\x57\x54\xd5\xe9\x1b\x53\x29\x49\xe5\xe5\x51\x83\x73\x69\x66\x38\x0a\xa5\x33\xd7\x31\xec\xc2\x3e\x02\x00\x00\xff\xff\x40\x8a\xfc\x13\x1c\x02\x00\x00" func lockedtokensUserGet_multiple_unlock_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -4430,11 +4430,11 @@ func lockedtokensUserGet_multiple_unlock_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_multiple_unlock_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x36, 0x8d, 0x8d, 0x25, 0xb4, 0xa6, 0x83, 0x69, 0xa4, 0x27, 0xd7, 0x1d, 0xd7, 0x95, 0x7e, 0xdd, 0x20, 0x2f, 0x7, 0xed, 0x6f, 0xe6, 0x3d, 0x92, 0x95, 0xd7, 0xc5, 0x7d, 0xc6, 0xe9, 0x39, 0x32}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x8a, 0x53, 0x9b, 0xa4, 0x7, 0xc, 0xbe, 0x1d, 0x99, 0x45, 0x9d, 0x62, 0x3d, 0x1f, 0xc7, 0xb2, 0xfa, 0x6f, 0x55, 0x5c, 0xdf, 0x55, 0x98, 0xcb, 0xea, 0x22, 0xc2, 0x95, 0x9d, 0x5a, 0xaf}} return a, nil } -var _lockedtokensUserGet_total_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x55\x4f\x4f\xe3\x3e\x10\xbd\xe7\x53\x8c\x38\xf0\x4b\xf4\xab\x52\x0e\xab\x3d\x54\x14\xa9\x4b\x60\xb7\xa2\xa2\x08\xba\xbb\x67\x37\x71\x5a\x0b\xd7\xae\x6c\x07\x58\xa1\x7e\xf7\x95\xe3\xd8\xb5\xd3\x04\xba\x90\x43\xff\xd8\x6f\x66\x9e\xdf\x1b\x4f\xc8\x66\xcb\x85\x82\xeb\x8a\xad\xc8\x92\xe2\x05\x7f\xc4\x0c\x4a\xc1\x37\x70\x12\xac\x9d\x44\x16\x49\xf9\x73\x80\xb2\xff\x03\xc4\x34\x5b\xa0\x25\xc5\x0f\x0a\x3d\x12\xb6\xf2\xa0\xe1\x86\x8b\x99\xf1\xfc\x11\x17\x75\x1e\x69\xd0\x67\x2f\xb3\xf9\xe5\xcd\x55\xb6\x98\xdf\x5c\xdd\x4e\xb2\xec\xfe\xea\xe1\x21\x8a\x86\x43\x58\xac\x89\x04\x99\x0b\xb2\x55\xb0\xc2\x4a\x82\x5a\x63\x58\xcc\x17\x93\x19\xb0\x6a\xb3\xc4\x02\x78\x09\xd7\xb3\xf9\x6f\x40\x0c\x50\x9e\xf3\x8a\x29\xe0\xcf\x4c\x0e\x00\xe5\x82\x4b\x09\x15\xa3\x75\xb9\x01\xd8\x6f\xc4\x0a\x90\x86\x52\x5a\x17\x99\x14\x85\x84\x6a\xab\x73\x4b\xdc\xe4\x95\xa3\x7a\x4b\x19\x92\x84\x01\xe3\x62\x83\xa8\xad\xf1\xd6\x9e\x4d\xfe\x26\xa6\xc0\x14\xaf\x90\x3a\x80\xc9\x35\x12\xb8\xe8\x2e\x13\xee\x75\x97\x69\x61\xbc\x32\x51\x84\xf2\x1c\x4b\x19\x23\x4a\x13\x28\x2b\x06\x1b\x44\x58\x8c\x8a\x42\x60\x29\x47\x5a\x05\xfd\x23\x19\xc1\xcf\x6b\xf2\xf2\xf5\x0b\xbc\x46\x11\x00\xc0\x13\x12\x20\xab\x0d\x8c\xe1\x2c\x3d\x33\x4b\x14\x2b\x57\x61\xac\x7d\x99\x98\x3f\x36\x59\x62\x60\xa4\xac\x91\x4f\xa8\xa2\xea\x1e\x97\x30\xb6\x41\xe9\x0a\xab\x4b\xb4\x45\x4b\x42\x89\xfa\x13\x0f\xb7\xd5\x92\x92\x7c\x58\xda\xee\xfa\x86\x28\x62\x39\x4e\xea\x2c\xfa\x49\x97\x5c\x08\xfe\x7c\x7e\xea\x1a\x30\xfd\xa5\xb3\x5e\xc4\x09\xd4\xa0\x57\x07\x35\x54\xf5\xe7\xff\xae\x72\xba\x34\x09\x6b\xd0\xce\x90\x1b\x0e\xe1\x3b\x56\x46\x39\x68\xf6\x4d\x33\xea\x16\xb3\x5d\x63\x19\xff\x27\x81\xf1\x02\x5b\xcd\x61\xcb\x39\x95\x4e\x0b\xbd\xa5\x9b\x1c\x8b\x4b\xb4\xdd\x1f\x73\x4f\x3f\x38\xef\xf9\xe9\xeb\xe1\xe5\x48\x6f\x5d\x8e\xbb\x5a\x8d\xdd\x45\xec\xe2\xf5\x73\x44\xc8\x1d\x52\x6b\x17\x13\x7a\xb0\x67\x68\x8c\x08\x18\x37\xea\xc6\x89\x27\xa3\x0d\x9a\xb2\x92\xc3\xb8\xaf\xba\xde\x8d\x6b\x58\x36\x0a\x6b\xa4\xa4\x48\x3a\x3d\xb1\x49\x53\xc5\x15\xa2\x66\x08\x4c\xd9\x3d\xce\xb9\x28\xe2\xe4\x53\x0e\x35\xcd\xce\x45\x8f\x4d\x6e\xff\x73\x2e\x65\x36\x4d\xb7\x51\x7e\x37\x37\x61\x2e\xa2\xc7\x1d\x47\xcc\x98\xe3\xf3\xec\xf3\xc6\x61\xfa\x0d\xca\x7c\x48\xc8\xd1\x5a\xe6\x17\x4e\xcd\xe2\x20\x00\xee\xcb\xb4\xd1\xa4\xf0\x0e\xd3\x65\x74\xc0\xb0\xcf\xed\x2e\xbf\xd7\x18\x42\x6b\xc1\x28\x0a\xb9\x33\xc7\x59\x6a\x80\xcd\xf8\xd1\x85\x8e\xb3\xd6\x7f\x03\xa5\xf5\xd7\x0f\x4e\x0b\x2c\x5a\x56\x06\xb0\x59\xbb\xd4\xbb\x97\xee\x80\x9c\xb1\xb7\x8b\x73\x97\xcd\xe6\xcd\xd4\xa5\x87\x3f\xce\xda\xb2\x77\x15\xd5\xc7\x0f\xe8\x37\x03\x36\x6e\xf8\xb6\xaa\xd9\xbb\xc6\x4b\x40\x94\xd6\x4b\x87\xc3\x6f\x7f\x13\x43\x72\x2e\xa1\x37\x79\xa6\x59\xd7\xb1\x1b\x62\xf5\x1c\xc9\x82\x93\x7f\x62\x00\x4d\xb3\x24\x48\xf3\x8f\xa3\xc7\x6b\xc7\xf7\x45\xe9\x99\x37\xc7\x2a\xe3\xdd\xad\x37\xe4\xd9\xdf\xe2\x43\x8d\x8e\x95\xd8\xe5\xe8\xd1\xfa\xc3\x43\x25\x54\x7e\xd0\x33\x2e\xda\x9e\x7c\x68\x52\x78\xcf\x2e\x0a\x7f\x35\x86\x09\xac\x2a\xc1\x74\xce\x68\x17\xfd\x0d\x00\x00\xff\xff\xb2\x5c\xcd\xf4\xeb\x0a\x00\x00" +var _lockedtokensUserGet_total_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x55\x5f\x4f\xdb\x3e\x14\x7d\xcf\xa7\xb8\xf0\xf0\xfb\x35\x5a\x95\xf2\x30\xed\xa1\x5a\x91\x3a\x02\x5b\x45\x45\x11\x74\xdb\xb3\x93\x38\xad\x85\x6b\x47\xb6\x03\x4c\xa8\xdf\x7d\x72\x1c\x3b\x71\x9a\x40\x07\x79\xe8\x1f\xdf\xe3\x7b\x8f\xcf\xb9\xbe\x21\xbb\x82\x0b\x05\x57\x25\xdb\x90\x84\xe2\x35\x7f\xc0\x0c\x72\xc1\x77\x70\xea\xad\x9d\x06\x16\x49\xf9\x93\x87\xb2\xff\x3d\xc4\x22\x5e\xa3\x84\xe2\x7b\x85\x1e\x08\xdb\xb4\xa0\x7e\xc0\xed\x59\xf2\xf4\x01\x67\x55\x1e\x69\xd0\x67\xcf\xcb\xd5\xc5\xf5\x65\xbc\x5e\x5d\x5f\xde\xcc\xe3\xf8\xee\xf2\xfe\x3e\x08\x26\x13\x58\x6f\x89\x04\x99\x0a\x52\x28\xd8\x60\x25\x41\x6d\x31\xac\x57\xeb\xf9\x12\x58\xb9\x4b\xb0\x00\x9e\xc3\xd5\x72\xf5\x1b\x10\x03\x94\xa6\xbc\x64\x0a\xf8\x13\x93\x63\x40\xa9\xe0\x52\x42\xc9\x68\x55\x6e\x0c\xf6\x1b\xb1\x0c\xa4\xa1\x14\x55\x45\xe6\x59\x26\xa1\x2c\x74\x6e\x89\xeb\xbc\x72\x5a\x85\x94\x21\x49\x18\x30\x2e\x76\x88\xda\x1a\xaf\xc5\x6c\xf2\x57\x31\x19\xa6\x78\x83\xd4\x01\x4c\x6e\x91\xc0\x59\x7f\x19\x3f\xd6\x5f\xa6\x83\x69\x95\x09\x02\x94\xa6\x58\xca\x11\xa2\x34\x84\xbc\x64\xb0\x43\x84\x8d\x50\x96\x09\x2c\xe5\x54\xab\xa0\x7f\x84\x53\xf8\x79\x45\x9e\xbf\x7c\x86\x97\x20\x00\x00\x78\x44\x02\x64\xb9\x83\x19\x9c\x45\x67\x66\x89\x62\xe5\x2a\xcc\xb4\x2f\x73\xf3\xc7\x26\x0b\x0d\x8c\xe4\x15\xf2\x11\x95\x54\xdd\xe1\x1c\x66\x76\x53\x94\xa2\x02\x25\x84\x12\x45\xb0\x8c\x36\x58\x7d\xfd\xcf\x75\x56\xf4\x4b\xc3\xcf\x47\x93\xa2\x4c\x28\x49\x27\xb9\x0d\x7c\x43\x14\xb1\x14\x87\x27\x55\x6e\xfd\x44\x09\x17\x82\x3f\x8d\xc2\x6a\xe5\xc5\xad\x1b\xb6\xfa\xf3\x93\x2b\x1e\x25\x66\x7b\x05\xda\x1b\x7e\x93\x09\x7c\xc7\xca\x88\x07\x75\xdc\xf4\xa3\xee\x32\xdb\x38\x96\xf4\xff\x12\x18\xcf\xb0\x95\x1d\x0a\xce\xa9\x74\x72\xe8\x90\xee\x73\x2c\x2e\x50\xd1\x9c\xb4\xe1\x7a\x78\xe4\x97\xc3\x2b\x12\xdd\xb8\x34\xb7\xd5\xf1\xf7\xe7\x23\x97\x42\x3f\x47\x6c\xb9\x45\x6a\xeb\xf6\x84\x27\x9e\x15\x0d\x4b\xe3\x87\xc7\xda\xc9\xd9\x92\xd2\x6e\x5a\xb0\x9c\xc3\x6c\xa8\xbc\x8e\x8e\x2a\x58\x3c\xf5\x6b\x44\x24\x0b\x7b\x7d\xb1\x49\x23\xc5\x15\xa2\x66\x16\x2c\xd8\x1d\x4e\xb9\xc8\x6a\x43\xdf\xeb\x52\xdd\xf3\x5c\x0c\x58\xe5\xe2\x1f\x76\x2a\xb6\x99\xfa\xcd\x6a\xb7\x70\xbd\xcd\xed\x18\x72\xc8\x91\x33\x06\xb5\xb9\x0e\xf9\xe3\x30\xc3\x26\xc5\x6d\x88\x4f\xd2\xda\xd6\x2e\x1c\x99\xc5\xb1\x07\x6c\xca\x74\xd1\x24\x6b\x4e\xd3\x6b\xb6\xc7\x70\xc8\xf1\x3e\xcf\xb7\x18\x7c\x7b\xc1\x48\x0a\xce\xa3\x3f\xce\x56\x03\xac\x27\x91\x2e\x74\xb4\xbd\xed\xf7\x51\x54\x7d\xfd\xe0\x34\xc3\xa2\x63\xa7\x07\x5b\x76\xab\xbd\x7d\xf9\x0e\x08\x1a\x8b\xfb\x78\xf7\x59\x6d\x5e\x54\x7d\x9a\xb4\x47\x5b\x57\xfa\xbe\xa2\xfa\xd4\x1e\xff\x7a\xb4\x8e\xea\xb9\xdd\xa9\x66\xef\x1c\xcf\x01\x51\x5a\x2d\x1d\x0e\xc2\xe6\x46\xfa\xe4\x5c\xc2\xd6\x04\x5a\xc4\x7d\xc7\xae\x89\x55\xf3\x24\xf6\x4e\xfe\x81\x41\xb4\x88\x43\x2f\xcd\x3f\x8e\xa0\x56\x4b\xbe\x2d\xca\xc0\xdc\x39\x56\x99\xd6\xfd\x7a\x45\x9e\xe6\x26\x1f\x6a\x74\xac\xc4\x2e\xc7\x80\xd6\xef\x1e\x2c\xbe\xf2\xe3\x81\x91\xd1\xf5\xe4\x5d\xd3\xa2\xf5\xec\x03\xff\x57\x6d\x98\xc0\xaa\x14\x4c\xe7\x0c\xf6\xc1\xdf\x00\x00\x00\xff\xff\xa9\x00\x16\xe2\xfa\x0a\x00\x00" func lockedtokensUserGet_total_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -4450,11 +4450,11 @@ func lockedtokensUserGet_total_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_total_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa0, 0xed, 0x18, 0xb0, 0xf0, 0xbb, 0xf6, 0xf7, 0x5d, 0x6f, 0x31, 0x15, 0x6, 0xd0, 0x9f, 0x75, 0xbd, 0xc4, 0xcc, 0xeb, 0x6c, 0x90, 0x92, 0x15, 0x62, 0xe5, 0x72, 0xd2, 0xb0, 0xa5, 0x37, 0x8a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb, 0x69, 0xd5, 0xb7, 0x55, 0x5, 0x9c, 0xed, 0x57, 0x86, 0xf0, 0x8, 0xc, 0xe, 0xc, 0xa4, 0xab, 0x57, 0x1, 0x7d, 0x6b, 0xd9, 0xec, 0x38, 0xb, 0xe3, 0xf0, 0xc, 0x8, 0x31, 0xbe, 0x8f}} return a, nil } -var _lockedtokensUserGet_unlock_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcd\x4e\xc3\x30\x10\x84\xef\x7e\x8a\x51\x0f\xc8\xb9\x54\x1c\x10\x87\x0a\xa8\xa2\x24\x08\xd4\x88\x56\xfd\x79\x00\xc7\xd9\x14\xab\x8e\x37\x72\x1c\x51\x84\x78\x77\x94\x04\x4a\xf9\xd9\x8b\xa5\xf5\xcc\x7c\xf6\x98\xba\x61\x1f\x90\xb3\x3e\x50\xb9\xe5\x03\xb9\x16\x95\xe7\x1a\x97\xc7\x7c\x99\x2c\xb2\x74\xbb\x5c\x64\x4f\x71\x9a\xae\xb3\xcd\x46\x08\xa5\x35\xb5\xad\x54\xd6\x46\xa8\x3a\x87\x5a\x19\x27\x95\xd6\xdc\xb9\x30\x43\x5c\x96\x9e\xda\x36\x9a\x61\x77\x6f\x8e\xd7\x57\x78\x13\x02\x00\x2c\x05\xd8\x81\x10\x8f\xd2\x47\x57\xf1\x9a\x2a\xdc\x62\x4f\xe1\x73\xf7\x15\x13\x0d\x96\x7e\xa6\x7b\x0a\x89\x6a\x54\x61\xac\x09\xaf\x37\x17\xe7\x8f\x9c\x0e\xc7\x03\xdb\x92\xfc\x9d\x3c\x59\xfa\xf9\x21\xcb\x7f\x63\x57\x5d\x61\x8d\x5e\xa9\xf0\x7c\x32\x9d\x11\x0b\xf6\x9e\x5f\xe4\xf7\x66\x3e\x47\xa3\x9c\xd1\x72\x92\x70\x67\x4b\x38\x0e\x18\x45\x50\xf0\x54\x91\x27\xa7\x09\x81\xd1\x0c\xc1\xf8\x03\x9c\x44\x63\x09\x9e\x42\xe7\xdd\xbf\x3d\xf4\x1f\xdd\xb9\xfe\x26\x37\xb5\x09\x32\x12\xef\xe2\x23\x00\x00\xff\xff\xaf\x95\x66\x0f\x99\x01\x00\x00" +var _lockedtokensUserGet_unlock_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcd\x4a\x03\x31\x14\x85\xf7\x79\x8a\x63\x17\x92\x6c\x8a\x0b\x71\x51\xd4\x52\xda\x8a\xd2\xc1\x96\xfe\x3c\x40\x26\x73\xa7\x86\x66\x72\x87\x24\x83\x05\xf1\xdd\x65\x66\xb4\xf5\xef\x6e\x02\xc9\x39\xf7\x3b\x39\xb6\xaa\x39\x24\x64\x6c\x0e\x54\x6c\xf9\x40\x3e\xa2\x0c\x5c\xe1\xea\x98\x2d\xa7\x8b\xf9\x6c\xbb\x5c\xcc\x9f\x27\xb3\xd9\x7a\xbe\xd9\x08\xa1\x8d\xa1\x18\xa5\x76\x4e\xa1\x6c\x3c\x2a\x6d\xbd\xd4\xc6\x70\xe3\xd3\x08\x93\xa2\x08\x14\xa3\x1a\x61\xf7\x60\x8f\x37\xd7\x78\x13\x02\x00\x1c\x25\xb8\x8e\x30\xe9\xa5\x4f\xbe\xe4\x35\x95\xb8\xc3\x9e\xd2\xe7\xdd\xd7\x1a\xd5\x59\xda\x19\x1a\x5d\xeb\xdc\x3a\x9b\x2c\xc5\xe1\x9e\xd2\xed\xe5\xf7\x9c\xc3\xee\x78\x64\x57\x50\xb8\x97\x27\x57\x3b\x3f\x64\xd9\x6f\xf2\xaa\xc9\x9d\x35\x2b\x9d\x5e\x4e\x26\x75\x71\xa6\xe6\x1c\x02\xbf\xca\x73\x8e\xf1\x18\xb5\xf6\xd6\xc8\xc1\x94\x1b\x57\xc0\x73\x42\x2f\x82\x46\xa0\x92\x02\x79\x43\x48\x8c\xba\xdb\x8c\x3f\xc4\x81\xea\x8b\x08\x94\x9a\xe0\xff\xed\xa2\xfd\xdf\xce\xb7\x2f\x99\xad\x6c\x92\x4a\xbc\x8b\x8f\x00\x00\x00\xff\xff\xe7\x23\xb7\x12\x9d\x01\x00\x00" func lockedtokensUserGet_unlock_limitCdcBytes() ([]byte, error) { return bindataRead( @@ -4470,11 +4470,11 @@ func lockedtokensUserGet_unlock_limitCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_unlock_limit.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0xfa, 0xf6, 0x2b, 0x29, 0x19, 0x1, 0x20, 0x49, 0x19, 0x1d, 0x8f, 0x49, 0x11, 0x37, 0xab, 0xd0, 0xbb, 0x81, 0x70, 0x62, 0x4e, 0xd0, 0x9, 0x74, 0x39, 0x1f, 0xd1, 0x63, 0xa4, 0xc7, 0x48}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x9e, 0xdb, 0x4c, 0x59, 0x66, 0xe0, 0x8f, 0x1c, 0xe7, 0xd6, 0x7c, 0x51, 0xf5, 0x13, 0xc1, 0xff, 0x7f, 0x1b, 0x69, 0x8f, 0x3f, 0xd9, 0x95, 0xbf, 0x4f, 0x72, 0x44, 0xb7, 0x29, 0xf1, 0x33}} return a, nil } -var _lockedtokensUserWithdraw_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6b\xc2\x40\x10\xc5\xef\xf9\x14\x43\x0e\x25\x39\x34\xf6\x50\x7a\x08\xb6\x22\xfe\xa1\xa0\xd4\xa2\xb6\xf7\x75\x33\x31\xc1\xb8\x13\x36\x93\x46\x28\x7e\xf7\xb2\x59\x37\x18\x41\xe8\x5e\x96\x9d\xf7\x76\xde\x6f\x87\xcd\x8f\x25\x69\x86\x79\xad\xf6\xf9\xae\xc0\x2d\x1d\x50\x41\xaa\xe9\x08\x7e\xaf\xe6\x7b\xce\x59\x50\xd3\x73\xb9\x73\xe7\x58\x92\x3c\x60\xd2\xd6\x2a\x6b\x7a\x3a\x2d\x57\x93\xc5\x6c\xba\x5d\x2d\x66\x1f\xe3\xe9\x74\x3d\xdb\x6c\x3c\x8f\xb5\x50\x95\x90\x9c\x93\x0a\xc4\x91\x6a\xc5\x31\x7c\xcd\xf3\xd3\xcb\x73\x08\xbf\x9e\x07\x00\x50\x20\x43\x46\x45\x82\x7a\x8d\x69\x0c\x0f\xd7\xad\xa3\x76\x7b\x6f\xd5\xce\xfc\x23\xea\x82\xad\xb7\x03\x8b\xbe\x4d\xd1\x36\x2c\x35\x96\x42\x63\x20\xa4\xe4\x18\xc6\x35\x67\x63\x29\x4d\xb4\x89\x84\xcb\xaa\xb0\x48\xa3\x2e\x16\x5e\xc1\xb8\xa3\x1d\x69\x4d\xcd\xf0\x2e\xc3\x5b\x60\xde\x1a\xc3\x3d\x7d\xc3\xa4\xc5\x1e\x3f\x05\x67\x61\x17\x65\xd6\x68\x04\xa5\x50\xb9\x0c\xfc\x09\xd5\x45\x02\x8a\x18\x6c\x18\x08\xd0\x98\xa2\x46\x25\x11\x98\xe0\xaa\x9b\x1f\x7a\x7d\x5e\xf7\xf2\x5b\xdc\x9b\x31\x38\xca\x41\x65\x71\x06\xa9\xd3\x5b\xf9\xdf\x64\xe6\x1a\x70\xfb\x0f\xda\x64\x03\xea\xdb\xdb\x67\x4b\x86\x27\x94\x35\xe3\xed\x5c\x1d\x67\x94\x60\x49\x55\xce\x17\x9e\xe1\x63\x7f\xea\x51\x93\x73\x96\x68\xd1\x74\x5f\xc3\xee\xa1\xcb\x38\x7b\x7f\x01\x00\x00\xff\xff\x3b\x4c\x13\x6e\xbb\x02\x00\x00" +var _lockedtokensUserWithdraw_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x8b\xe2\x40\x10\xc5\xef\xf9\x14\x45\x0e\x92\x1c\x36\xee\x61\xd9\x43\x70\x57\x1c\xff\x30\xa0\x8c\x83\x3a\xde\xdb\x4e\xc5\x04\xdb\xae\xd0\xa9\x4c\x84\xc1\xef\x3e\x74\xda\x04\x23\x08\xd3\x97\x26\x55\xaf\x5e\xfd\x78\xe9\xfc\x5c\x90\x61\x58\x54\xfa\x98\x1f\x14\xee\xe8\x84\x1a\x52\x43\x67\xf0\x7b\x35\xdf\x6b\x95\x8a\xea\x9e\xaa\xfd\xee\x14\x2b\x92\x27\x4c\x9a\x5a\xe9\x44\xbf\x2f\xab\xf5\x74\x39\x9f\xed\xd6\xcb\xf9\xdb\x64\x36\xdb\xcc\xb7\x5b\xcf\x63\x23\x74\x29\x24\xe7\xa4\x03\x71\xa6\x4a\x73\x0c\x1f\x8b\xfc\xf2\xf7\x4f\x08\x5f\x9e\x07\x00\xa0\x90\x21\x23\x95\xa0\xd9\x60\x1a\xc3\xe0\xde\x3a\x6a\xae\xd7\xa6\xdb\x89\x3f\x45\xa5\xd8\x69\x3b\xb0\x68\x6f\x8b\xce\xb0\x30\x58\x08\x83\x81\x90\x92\x63\x10\x15\x67\xc1\x0b\x19\x43\xf5\x5e\xa8\x0a\x43\x18\x4c\xa4\xb4\x24\x96\x00\x6e\xa7\x44\x95\x46\x1d\x05\xfc\x03\x3b\x1c\x95\x4c\x46\x1c\x31\x3a\x34\xe3\xa3\xa7\x68\xff\x03\x1b\x41\x0c\xcf\xfa\x5b\xe7\xf3\x2e\x38\x0b\xbb\x95\xf6\x8c\xc7\x50\x08\x9d\xcb\xc0\x9f\x52\xa5\x12\xd0\xc4\xe0\x96\x81\x00\x83\x29\x1a\xd4\x12\x81\x09\xee\xdc\xfc\xd0\xeb\x73\xb7\x81\x3c\xc3\x7e\x48\xa9\xa5\x1d\xde\x74\xc3\xb4\xed\x37\xed\x1f\x13\xda\x31\xe0\xe6\x99\x34\x04\x16\xd8\x77\xd3\x57\x47\x88\x17\x94\x15\xe3\x63\xce\x2d\x6f\x94\x60\x41\x65\xce\x37\x9e\xd1\xaf\xfe\x5f\x88\xea\x9c\xb3\xc4\x88\xba\x7b\x39\xee\x0e\xdb\x1d\x57\xef\x3b\x00\x00\xff\xff\xc9\xd6\xa2\x71\xda\x02\x00\x00" func lockedtokensUserWithdraw_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4490,11 +4490,11 @@ func lockedtokensUserWithdraw_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/withdraw_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0x42, 0x10, 0x73, 0xfa, 0x74, 0xa3, 0x2c, 0x97, 0x1e, 0x57, 0x98, 0x3f, 0xa5, 0x11, 0xee, 0x3e, 0x8e, 0x41, 0x8a, 0xf4, 0xdd, 0xcb, 0xb1, 0x16, 0x9c, 0xd1, 0x12, 0xce, 0x19, 0x42, 0x8b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdb, 0x6c, 0x0, 0x6c, 0x87, 0xe9, 0x48, 0xad, 0x1b, 0x48, 0x31, 0xc9, 0x53, 0x2, 0x39, 0xbc, 0x1d, 0x2f, 0x68, 0xbe, 0xff, 0x2, 0xb, 0xd3, 0x2b, 0x20, 0x9, 0x7a, 0x5b, 0x33, 0xf7, 0xb5}} return a, nil } -var _nodeversionbeaconAdminChange_version_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\xc1\x6e\xdb\x4c\x0c\x84\xef\x7a\x8a\x81\x0f\xff\x6f\x5f\xac\x1e\x8a\x1e\x84\xba\x81\x1c\xbb\x40\x2e\x76\x60\x37\xb9\x6f\x77\x29\x6b\x01\x89\x14\x28\xaa\x4e\x5b\xe4\xdd\x0b\x49\x6e\x1b\x44\x75\x8e\x5a\x92\xdf\xcc\x90\x8a\x75\x23\x6a\xd8\x49\xa0\x47\xd2\x36\x0a\xaf\xc9\x79\x61\x14\x2a\x35\xde\x3d\xed\xf6\x9b\xed\xe3\xf6\x70\xbc\xdb\xef\xd6\xdb\xfc\x76\xbf\xcb\x37\x9b\xc3\xf6\x78\x4c\x92\x34\x4d\xf1\x45\x1d\xb7\xce\x5b\x14\x86\x95\xce\xe0\xaa\x4a\xce\xed\x4b\x5c\x1e\xea\xc8\x30\x81\x2f\x1d\x9f\x68\x18\xb3\x92\x10\xa8\x88\x4c\x01\xdf\xc6\xb6\x87\x26\x38\xa3\x75\x57\x14\xa4\x49\x62\x7f\xb9\x73\xa6\xf3\x67\x25\xfa\x41\xf7\xa4\x51\x42\x86\x87\x3b\xb6\x0f\xef\x17\xf8\x99\x24\x40\x45\xff\x30\x3f\x68\x1e\xa8\xc8\xf0\xdf\xa4\xb6\x1c\x8a\xfd\x68\xa3\xd4\x38\xa5\xb9\xf3\xde\x32\xe4\x9d\x95\xb9\xf7\xd2\xb1\xf5\x68\x00\x48\x53\xac\x45\x55\xce\x70\x50\x2a\x48\x89\x3d\xf5\x51\x7a\xff\x93\x88\xb1\x6e\x2a\xaa\x89\x2d\xf2\x09\x4a\xad\x74\xea\x69\xe0\xb4\x54\x15\xcb\xab\x26\xb1\x42\xef\x60\xf9\x75\x90\xfa\x78\xcd\xf1\xa7\x01\x05\xcc\xfb\xc3\x64\xd3\xcc\x63\xd7\xd1\x44\xdd\x89\xee\x9d\x95\x8b\xcb\xc0\xcd\x0d\x1a\xc7\xd1\xcf\x67\xb7\xd2\x55\x81\xff\x37\x8c\x52\xd7\x18\x38\x5c\xcc\xcf\x7a\xc4\x73\xbf\x2a\x7a\x22\xdf\x19\x5d\xf6\xf2\x76\x9e\x65\x4b\xf6\xbb\x20\x1d\x07\xa7\xdf\x5f\xde\x6f\x7a\xcf\x57\x0f\x7f\x44\x1b\x69\x6d\x14\x9c\x1a\x3d\xbd\xad\xb1\xc0\x6a\xf5\x9a\x8b\x0c\xb3\xf1\x1b\xcd\xf8\x70\x76\x2d\x58\x0c\xdd\xf0\xef\x85\xd9\x20\xfc\x9c\xfc\x0a\x00\x00\xff\xff\x20\x17\x63\x91\x13\x03\x00\x00" +var _nodeversionbeaconAdminChange_version_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x41\x6f\xd3\x40\x10\x85\xef\xfe\x15\x4f\x39\x14\xe7\x62\x73\x40\x1c\x2c\x42\x95\x34\x41\xea\x25\xa9\x12\x9a\xfb\xb2\x1e\xc7\x2b\xd9\x3b\xd6\xec\x2c\x29\xa0\xfe\x77\x64\x3b\x40\x55\x93\x1e\xbd\x33\xf3\xbe\xf7\x66\xec\xda\x8e\x45\xb1\xe5\x92\x8e\x24\xc1\xb1\x5f\x91\xb1\xec\x51\x09\xb7\x78\xff\xb4\xdd\xad\x37\xc7\xcd\xfe\x70\xbf\xdb\xae\x36\xcb\xbb\xdd\x76\xb9\x5e\xef\x37\x87\x43\x92\xe4\x79\x8e\xaf\x62\x7c\x30\x56\x1d\x7b\x68\x6d\x14\xa6\x69\xf8\x1c\x5e\xca\x2d\xcb\xd6\x79\x28\xc3\xd6\xc6\x9f\x68\x18\xd3\x9a\x50\x52\xe5\x3c\x95\xf8\x3e\xb6\x3d\x76\xa5\x51\x5a\xc5\xaa\x22\x49\x12\xfd\xa7\x9b\x7a\x3a\x7f\x11\xa2\x9f\xf4\x40\xe2\xb8\x2c\xf0\x78\xef\xf5\xe3\x87\x39\x7e\x25\x09\xd0\xd0\x7f\xcc\x0f\xcc\x3d\x55\x05\x6e\x26\xb5\x6c\x28\xf6\xa3\x9d\x50\x67\x84\x52\x63\xad\x16\x30\x51\xeb\x74\xc5\x22\x7c\x3e\x9a\x26\xd2\x1c\x37\x4b\x6b\x39\x7a\xed\x49\x00\x90\xe7\x18\xeb\x30\x10\xaa\x48\xc8\x5b\xea\x93\xf5\x71\x26\x89\x5d\xdb\x35\xd4\x92\x57\xe7\x4f\x10\x0a\x1c\xc5\xd2\xa0\x13\xa8\xa9\xb2\xab\x9e\xb1\x40\x6f\x28\x0b\xca\x62\x4e\x94\x7d\x1b\x90\x9f\xae\x05\xf9\x3c\x48\x02\x69\x7f\xaf\x62\xba\x8a\xb1\xeb\x30\x8a\x3d\x18\xad\xe7\x97\x81\xdb\x5b\x74\xc6\x3b\x9b\xce\xee\x38\x36\xa5\x7f\xa7\x18\x51\xd7\x34\xb0\xbf\x84\x98\xf5\x12\xcf\xfd\x06\xe9\x89\x6c\x54\xba\xec\xe7\xed\x5c\x59\x20\xfd\x53\xe0\xe8\x4b\x23\x3f\x5e\x9e\x75\x7a\xe6\x57\x0f\x7f\xa1\x1d\x07\x1d\x81\x53\xa3\xa7\xb7\x19\x73\x2c\x16\xaf\x75\x51\x60\x36\x7e\xa3\x1b\x1f\xce\x26\xc0\xb3\x22\x0e\xbf\x64\x39\x1b\xc0\xcf\xc9\xef\x00\x00\x00\xff\xff\x59\x5a\xce\xc0\x2a\x03\x00\x00" func nodeversionbeaconAdminChange_version_freeze_periodCdcBytes() ([]byte, error) { return bindataRead( @@ -4510,11 +4510,11 @@ func nodeversionbeaconAdminChange_version_freeze_periodCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/change_version_freeze_period.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x85, 0x64, 0xe7, 0xfd, 0x12, 0xa9, 0xc4, 0xb2, 0xa7, 0x40, 0x45, 0xbd, 0xde, 0xe5, 0xb6, 0xcf, 0x5f, 0xae, 0x29, 0x72, 0xaa, 0x59, 0x3a, 0x38, 0xc, 0xe5, 0xbc, 0xbf, 0xc4, 0x20, 0x97, 0xd9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x95, 0xcc, 0x3e, 0xc0, 0x1f, 0xde, 0x4b, 0x62, 0xc5, 0xbd, 0xea, 0xab, 0x44, 0x0, 0xcc, 0x9d, 0x76, 0x27, 0x6a, 0x76, 0x53, 0x5a, 0x49, 0x32, 0x2c, 0x4f, 0x5, 0x24, 0x96, 0xc6, 0x55, 0x54}} return a, nil } -var _nodeversionbeaconAdminDelete_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xd3\x40\x10\xbd\xfb\x2b\x9e\x7a\x80\xf4\x12\x73\x40\x1c\x2c\xa0\x72\xea\x48\xf4\x92\xa0\x24\xf4\x3e\x59\x8f\xe3\x15\xf6\x8e\xb5\x1e\xd3\x22\xd4\x7f\x47\xbb\x76\xda\xa0\x34\xa8\xd7\x7d\xf3\xde\xbe\x79\xf3\x6c\xdb\x89\x57\xac\xa4\xe4\x7b\xf6\xbd\x15\xb7\x60\x32\xe2\x50\x79\x69\xf1\xe1\x71\xb5\x2e\x96\xf7\xcb\xcd\xf6\x6e\xbd\x5a\x2c\xf3\xdb\xf5\x2a\x2f\x8a\xcd\x72\xbb\x4d\x92\x34\x4d\xb1\xf3\xe4\x7a\x32\x6a\xc5\x41\x6b\x52\x50\xd3\xc8\x43\x7f\x2a\x97\x97\xad\x75\x50\x41\xc9\x0d\x2b\x43\x6b\x8e\xd4\x5f\x23\x8c\xbd\x0c\xae\x24\xff\x1b\x2d\x75\x9d\x75\x07\x84\xe9\x9a\x8f\xf8\x8e\xf6\x0d\x83\x34\xbe\xf5\x1d\x1b\x5b\x59\x2e\xa3\xc2\xbe\x11\xf3\x13\x35\xdb\x43\xad\xe8\xc8\x53\xcb\xca\x3e\x49\xf4\xc5\xd4\x2c\xce\x7c\x8b\x23\x8b\xe9\xa3\x9d\x14\xd1\x49\x86\x1f\x77\x4e\x3f\x7d\xbc\xc6\x9f\x24\x01\x1a\x7e\x25\x85\x68\x7e\xc3\x55\x86\x77\x67\xd8\x3c\x82\x81\xda\x79\xee\xc8\xf3\x8c\x8c\xd1\x0c\xf9\xa0\x75\x6e\x8c\x0c\x4e\x83\x34\x00\xa4\x29\x16\xe2\xbd\x3c\x80\xe0\xb9\x62\xcf\xce\x70\xc8\x24\x2c\x75\x96\x95\xe7\x5e\x06\x6f\x38\x52\x7b\x6e\xaa\xf9\x45\x5f\xf8\x82\xf0\xe9\x7c\x1f\xd5\x3f\x5f\x32\xf9\x35\x4a\x01\xb3\x70\xd4\xec\x7c\xcd\x71\x6a\xab\xe2\xe9\xc0\xdf\x49\xeb\xeb\x89\x70\x73\x83\x8e\x9c\x35\xb3\xab\x5b\x19\x9a\xd2\xbd\x57\x8c\x5f\x5d\x88\x0a\x9b\xc9\xfb\x55\x50\x78\x0a\xe1\xf0\x23\x9b\x41\xf9\x25\x89\xe2\xb9\x07\xcf\x1d\x88\x5d\x3b\x7d\xd0\x57\xaf\xfe\xef\xc5\x8f\xc5\x79\x43\x4c\xf3\xb1\x7b\x47\x6c\x22\x9e\x96\x23\xc3\x7f\x9a\x32\xed\xf2\xf4\x37\x00\x00\xff\xff\xfb\x0f\x35\x18\x2c\x03\x00\x00" +var _nodeversionbeaconAdminDelete_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xd3\x40\x14\xbc\xfb\x2b\x46\x3d\x14\xe7\x62\x73\x40\x1c\x2c\xa0\x4a\xea\x48\xf4\x92\xa0\x24\xe4\xfe\xb2\x7e\x8e\x57\xac\x77\xad\xf5\x33\x2d\x42\xfd\x77\xb4\x6b\xa7\x0d\x4a\x83\xb8\xee\xbc\x99\x37\x6f\x76\x74\xdb\x39\x2f\x58\xb9\x8a\xf7\xec\x7b\xed\xec\x82\x49\x39\x8b\xda\xbb\x16\xef\x9f\x56\xeb\x72\xb9\x5f\x6e\xb6\x0f\xeb\xd5\x62\x39\xbf\x5f\xaf\xe6\x65\xb9\x59\x6e\xb7\x49\x92\xe7\x39\x76\x9e\x6c\x4f\x4a\xb4\xb3\x90\x86\x04\x64\x8c\x7b\xec\xcf\xe5\xe6\x55\xab\x2d\xc4\xa1\x62\xc3\xc2\x90\x86\x23\xf5\xe7\x08\xe3\xe0\x06\x5b\x91\xff\x85\x96\xba\x4e\xdb\x23\xc2\x74\xc3\x27\x7c\x47\x07\xc3\x20\x89\x6f\x7d\xc7\x4a\xd7\x9a\xab\xa8\x70\x30\x4e\xfd\x40\xc3\xfa\xd8\x08\x3a\xf2\xd4\xb2\xb0\x4f\x12\x79\x35\x95\xc6\x99\xaf\x71\x64\x31\x2d\xda\xb9\x32\x3a\x29\xf0\xfd\xc1\xca\xc7\x0f\x33\xfc\x4e\x12\xc0\xf0\x1b\x29\x44\xf3\x1b\xae\x0b\xdc\x5e\x60\x59\x04\x03\xb5\xf3\xdc\x91\xe7\x94\x94\x92\x02\x34\x48\x93\x2e\x9c\xf7\xee\x71\x4f\x66\xe0\x19\x6e\xe7\x4a\xb9\xc1\x4a\xd8\x04\x00\x79\x8e\x11\x07\xc1\x73\xcd\x9e\xad\xe2\x10\x51\xb8\xf1\x22\x3a\xcf\xbd\x1b\xbc\xe2\x48\xed\xd9\xd4\xd9\x55\x9b\xf8\x8c\xe0\x21\xeb\xc5\x79\x3a\x72\x76\x88\x5b\x3e\x5d\xf3\xfe\x25\x4a\x02\x69\xf8\xeb\xe2\xf2\xfa\x71\x6a\x3b\x8a\x7d\x23\x69\x66\x13\xe1\xee\x0e\x1d\x59\xad\xd2\x9b\x7b\x37\x98\xca\xbe\x13\x8c\xab\xae\x24\x88\xcd\x74\xc3\x4d\x50\x78\x0e\x99\xf1\x13\xab\x41\xf8\x35\x91\xf2\xa5\x1e\x2f\xd5\x88\x15\x3c\x7f\x90\x37\xcb\xf0\x77\x11\x4e\x7d\xfa\x8f\xb8\xb2\xb1\x92\x27\x6c\x22\x9e\x77\xa6\xc0\x3f\x0a\x34\xdd\xf2\xfc\x27\x00\x00\xff\xff\x10\x6d\xc1\xfb\x43\x03\x00\x00" func nodeversionbeaconAdminDelete_version_boundaryCdcBytes() ([]byte, error) { return bindataRead( @@ -4530,11 +4530,11 @@ func nodeversionbeaconAdminDelete_version_boundaryCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/delete_version_boundary.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xc4, 0xca, 0x36, 0x2a, 0xbe, 0xa6, 0xf1, 0x75, 0x8f, 0xd5, 0x82, 0x0, 0x82, 0xf0, 0x4c, 0x1b, 0xa5, 0xf5, 0xc6, 0x85, 0x25, 0xc3, 0x9c, 0xbe, 0xbe, 0xda, 0x83, 0xf4, 0x4d, 0xfe, 0x32}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0xa7, 0x33, 0xc0, 0x23, 0xac, 0xc1, 0x26, 0x63, 0xde, 0x10, 0x85, 0x27, 0xa4, 0x75, 0xf3, 0x5e, 0x16, 0x50, 0xe4, 0x3f, 0x98, 0x80, 0x74, 0x80, 0xe1, 0x21, 0x84, 0x8d, 0x76, 0xfe, 0x17}} return a, nil } -var _nodeversionbeaconAdminHeartbeatCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x6f\x82\x40\x10\x85\xef\xfc\x8a\x17\x0f\x2d\x5e\xa0\x67\xd3\xd6\xa0\x92\xb4\x17\x6c\x20\xf1\xbe\x2e\x83\xbb\x09\xec\x90\x65\xa8\x26\x8d\xff\xbd\x11\xac\x35\xb1\xb1\x7b\xda\xd9\x9d\x79\xef\x9b\x67\x9b\x96\xbd\x20\xe3\x92\x36\xe4\x3b\xcb\x6e\x41\x4a\xb3\x43\xe5\xb9\xc1\xd3\x21\x5b\xaf\xd2\x4d\x9a\x17\xef\xeb\x6c\x91\x26\xcb\x75\x96\xac\x56\x79\x5a\x14\x41\x10\xc7\x58\xaa\xba\xee\x20\x86\xd0\x90\x18\x2e\x21\x46\x09\xa8\xb1\x32\xbe\x8a\xda\xd6\x84\xbd\x15\x33\x94\xd6\x69\x6e\xac\xdb\xe1\x73\x74\xea\x02\xf1\xca\x75\x4a\x8b\x65\x17\x4e\xf1\x15\x04\x00\x50\xd3\x1f\x3c\x6f\xa4\xbc\x6c\x49\x49\x4e\xd5\x0c\x0f\x37\xff\xd1\xa5\x61\x14\x69\x3d\xb5\xca\x53\xa8\xb4\x96\x19\x92\x5e\x4c\xa2\x35\xf7\x4e\x4e\x36\x38\x9f\x38\xc6\x82\xbd\xe7\x3d\x14\x3c\x55\xe4\xc9\x69\x82\xf0\x40\x7b\x65\x91\x94\x8d\x75\xf0\xd4\x71\xef\x35\x5d\xc6\x3b\xaa\xab\xe8\x2e\x29\x5e\x70\x02\x88\xb6\x83\xcb\xf3\x3d\xec\xd7\x8b\x2c\x10\x9e\xc2\x9f\xdd\x86\xf0\xdb\x5d\x08\x7b\xb5\xa3\x0f\x25\x66\x7a\x35\x38\x9f\xa3\x55\xce\xea\x70\xb2\xe4\xbe\x2e\xdd\xa3\x60\xb4\xbe\xa7\x85\xfc\xbc\xd8\x64\x94\x3a\x02\x18\x2e\x74\x20\xdd\x0b\x5d\x05\xf6\xff\xc6\x91\xf9\x29\xc2\xb3\x5a\x70\xfc\x0e\x00\x00\xff\xff\x54\xf5\x87\x79\x64\x02\x00\x00" +var _nodeversionbeaconAdminHeartbeatCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x41\x8f\xa2\x40\x10\x85\xef\xfc\x8a\x17\x0f\x2e\x5e\x60\xcf\x66\x77\x0d\x2a\xc9\xee\x05\x37\x90\x78\x2f\x9b\x42\x3a\x81\x2e\xd2\x14\xab\xc9\xc6\xff\x3e\x11\x1c\xc7\xc4\x89\xc3\x89\xea\xae\xfa\xde\x7b\xd5\xb6\xed\xc4\x2b\x32\x29\x79\xcf\xbe\xb7\xe2\xd6\x4c\x46\x1c\x2a\x2f\x2d\xbe\x9f\xb3\xdd\x36\xdd\xa7\x79\xf1\x67\x97\xad\xd3\x64\xb3\xcb\x92\xed\x36\x4f\x8b\x22\x08\xe2\x18\x1b\x6a\x9a\x1e\x5a\x33\x5a\xd6\x5a\x4a\x68\x4d\x0a\x6e\xad\x4e\xa7\x4a\x87\x86\x71\xb2\x5a\x8f\xa5\x75\x46\x5a\xeb\x8e\xf8\x37\x29\xf5\x81\x7a\x72\x3d\x19\xb5\xe2\xc2\x05\xfe\x07\x01\x00\x34\xfc\x89\x9f\xdf\x4c\x5e\x0f\x4c\x9a\x73\xb5\xc4\xfc\xe9\x3e\xba\x37\x4c\x90\xce\x73\x47\x9e\x43\x32\x46\x97\xa0\x41\xeb\x70\x2d\xde\xcb\x69\x4f\xcd\xc0\x0b\xcc\x13\x63\x64\x70\x7a\x55\xc5\xed\x8b\x63\x4c\x3d\x20\x78\xae\xd8\xb3\x33\x0c\x95\xd1\xfc\x83\x62\x52\xb6\xd6\xc1\x73\x2f\x83\x37\x7c\x1f\xef\xb9\xa9\xa2\x97\xc6\xf1\x13\x57\x3f\x51\xaf\xe2\xe9\xc8\xd1\x61\x54\xfb\xf1\x2a\xcd\xaf\x3b\x1e\x08\xaf\x6f\xb2\x7c\xde\xcd\x47\x77\x31\x81\xff\x92\xd6\x8b\x87\xc1\xd5\x0a\x1d\x39\x6b\xc2\xd9\x46\x86\xa6\x74\xdf\x14\x93\xf4\x2b\x16\xf2\x5b\xc0\xd9\x84\xba\x00\x18\x7f\xf8\xcc\x66\x50\x7e\x58\xdc\xd7\xc9\xa3\xfa\xbd\x08\x6f\xb4\xe0\xf2\x16\x00\x00\xff\xff\x54\xfb\xb5\x0e\x7b\x02\x00\x00" func nodeversionbeaconAdminHeartbeatCdcBytes() ([]byte, error) { return bindataRead( @@ -4550,11 +4550,11 @@ func nodeversionbeaconAdminHeartbeatCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/heartbeat.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0x8d, 0x70, 0x49, 0x14, 0x1, 0xa9, 0x56, 0x3d, 0xde, 0xa3, 0xc4, 0xf6, 0xfa, 0x14, 0x16, 0x9a, 0xdc, 0xc3, 0x9d, 0x56, 0xff, 0xb5, 0x96, 0x96, 0xf9, 0xba, 0x4c, 0x8b, 0x8c, 0xb4, 0xb0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x75, 0x85, 0x1, 0x64, 0x21, 0x6, 0x66, 0x6e, 0x88, 0xa7, 0x74, 0x21, 0x28, 0x33, 0x58, 0xe8, 0xdf, 0xa9, 0x1c, 0x4b, 0xeb, 0x83, 0x11, 0x97, 0xb3, 0x47, 0xfc, 0x5c, 0x1c, 0x80, 0xa1, 0xb8}} return a, nil } -var _nodeversionbeaconAdminSet_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\xc1\x6e\xdb\x30\x0c\x86\xef\x7e\x0a\x22\x87\xcd\x01\x02\x7b\x87\x61\x18\x8c\x75\x85\xd3\x06\x58\x0f\x4b\x8b\xa4\xeb\x9d\x91\xe9\x44\x9b\x2d\x79\x12\x9d\x74\x18\xfa\xee\x83\x64\x3b\x71\xec\x04\xd8\xa9\x28\x49\x91\x3f\x3f\xfe\xb1\x2c\x2b\x6d\x18\x96\x3a\xa3\x17\x32\x56\x6a\x35\x27\x14\x5a\x41\x6e\x74\x09\x1f\x5e\x97\x8f\xf7\x8b\x97\xc5\x6a\xfd\xf0\xb8\x9c\x2f\xd2\xbb\xc7\x65\x7a\x7f\xbf\x5a\xac\xd7\x41\x10\xc7\x31\x3c\x1b\x54\x16\x05\x4b\xad\x80\x77\xc8\x80\x45\xa1\x0f\xb6\xdf\x2e\xcd\x4a\xa9\x80\x35\x60\x96\x01\x82\xa2\x03\xec\x9b\x8c\x0b\xf2\x8e\x7c\xa3\x63\x08\x37\x05\x41\x46\xb9\x54\x52\x6d\x01\x8f\x89\x8d\xae\x55\x86\xe6\x0f\x20\xbb\x47\xc0\x68\xb6\xc4\xf3\x42\x8b\x5f\xdf\x48\x6e\x77\x1c\x04\x7c\x12\x13\x06\xe0\x26\x7d\xc7\x9f\xda\x24\xf0\xe3\x41\xf1\xe7\x59\x1b\x92\x6a\x18\x7a\x42\x16\xbb\x41\xc8\xd0\x8a\x0a\x42\x4b\x09\xac\xd9\x48\xb5\xbd\x75\x99\xcd\x69\x5c\x53\xff\xe9\x63\x30\x85\xbf\x41\x00\x50\xd0\x05\x88\x7e\xf7\x15\xe5\x09\xbc\x1b\xe5\x22\x9f\x6c\x5f\x2a\x3a\x74\xc9\x76\xcf\x64\xdc\x2d\x1a\x94\xb8\xb1\x95\xa1\x0a\x0d\x85\x28\x04\x27\x90\xd6\xbc\x4b\x85\xd0\xb5\x62\x27\x0b\x00\x20\x8e\xe1\xce\x10\x32\x79\x6a\x7d\xfa\xfe\xc0\x2e\x58\xa1\xb5\x94\x41\x85\x06\x4b\x62\x32\xd6\x3f\x3c\x97\x05\x37\x17\xf4\xac\xa9\xdc\x93\x09\x7d\x39\x40\xd9\xc0\xee\xb0\xcf\xa0\x6c\x50\x77\xd0\x67\x50\x35\xa0\x3b\xe4\x33\xa7\xfe\x88\xf9\x8c\xba\x6f\x39\x0d\xfc\x1f\x4b\x45\x1e\x8d\x01\x5d\x54\x34\xa8\x09\xcf\x0e\xd6\xfb\x67\xd6\x51\x48\x7a\x3b\xb6\xf3\xe2\x18\xe6\xda\x18\x7d\x00\x04\x43\x39\x19\x52\x82\x5a\xaf\x8e\x8d\x6d\xc8\xea\xda\x08\x3a\x49\xbd\xea\x02\xb8\x01\x77\xa6\x68\xe3\xbb\x7f\xb9\x66\x89\xaf\x2d\xcf\xd0\x1d\xe8\x92\x0d\x7c\xd5\x9a\xb5\xc1\x2d\x3d\x21\xef\xa6\xed\x83\xdb\x5b\xa8\x50\x49\x11\x4e\xee\x74\x5d\x64\xea\x3d\x43\x33\xea\x5a\x0f\x58\xb5\xe2\x27\xae\xc5\x9b\x5b\x9f\x5e\x49\xd4\x4c\x27\xf3\xa4\x59\x36\x72\x4e\xcb\xe2\xec\x37\xfb\x1f\xfb\x47\x96\x78\x78\xa0\xfd\xd0\xf5\x57\xae\x7d\x14\x58\x69\xcb\x8d\xb8\xf1\x52\xdb\x71\x7f\xca\x73\x12\x2c\xf7\x94\xf6\xbf\x15\x67\x5e\x98\x46\xad\x88\xc8\xb2\x91\x82\x17\xbf\x6b\x2c\x9e\x75\x78\x45\x49\x57\xdd\x52\x4f\x60\xb2\xec\xa1\x39\xa0\x05\xa5\xd9\x7d\xec\x28\x1b\x80\x7a\x76\x9c\x26\x7e\x91\xb7\xe0\x5f\x00\x00\x00\xff\xff\x6f\x29\x85\xa7\x78\x05\x00\x00" +var _nodeversionbeaconAdminSet_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x6f\xda\x4e\x10\xbd\xfb\x53\x8c\x38\xe4\x67\x24\x64\xff\x0e\x55\x55\x59\x4d\x23\x48\x90\x9a\x43\x49\x04\x69\xee\xc3\x7a\x8c\xb7\xb5\x77\xdd\xdd\x31\xa4\xaa\xf2\xdd\xab\x5d\xdb\x60\x6c\x90\x7a\x42\xcc\xdf\x37\xef\x3d\xaf\x2c\x2b\x6d\x18\x56\x3a\xa5\x57\x32\x56\x6a\xb5\x20\x14\x5a\x41\x66\x74\x09\xff\xbf\xad\x9e\x1e\x96\xaf\xcb\xf5\xe6\xf1\x69\xb5\x58\xce\xef\x9f\x56\xf3\x87\x87\xf5\x72\xb3\x09\x82\x38\x8e\xe1\xc5\xa0\xb2\x28\x58\x6a\x05\x9c\x23\x03\x16\x85\x3e\xd8\xfe\xb8\x79\x5a\x4a\x05\xac\x01\xd3\x14\x10\x14\x1d\x60\xdf\x64\x5c\x90\x73\xf2\x83\x8e\x21\xdc\x16\x04\x29\x65\x52\x49\xb5\x03\x3c\x26\xb6\xba\x56\x29\x9a\xdf\x80\xec\x9a\x80\xd1\xec\x88\x17\x85\x16\x3f\xbf\x92\xdc\xe5\x1c\x04\x7c\x02\x13\x06\xe0\x36\x7d\xc3\x1f\xda\x24\xf0\xfd\x51\xf1\xa7\x59\x1b\x92\x6a\x18\x7a\x46\x16\xf9\x20\x64\x68\x4d\x05\xa1\xa5\x04\x36\x6c\xa4\xda\xdd\xb9\xcc\xf6\xb4\xae\xa9\xff\xf8\x21\x98\xc2\x9f\x20\x00\x28\xe8\x02\x89\xfe\xf6\x35\x65\x09\xdc\x8c\x72\x91\x4f\xb6\x9d\x8a\x0e\x5d\xb2\xbd\x33\x19\x4f\x8b\x06\x25\x6e\x6d\x65\xa8\x42\x43\x21\x0a\xc1\x09\x60\xcd\x79\xb8\xd0\xc6\xe8\xc3\x2b\x16\x35\x4d\xe1\x66\x2e\x84\xae\x15\x3b\x94\x00\x00\x71\x0c\xf7\x86\x90\xc9\x93\xd8\x17\xc3\xeb\xed\x82\x15\x5a\x4b\x29\x54\x68\xb0\x24\x26\x63\x7d\xe3\x39\x4a\xb8\xbd\x00\x6f\x43\xe5\x9e\x4c\xe8\xcb\x01\xca\x86\xfb\x4e\x85\x19\x94\x0d\xf3\x9d\x06\x33\xa8\x1a\xde\x3b\x05\x66\xee\x98\x23\xeb\x67\x22\xf8\x91\xd3\xc0\xff\x58\x2a\xb2\x68\xcc\xd7\x45\x44\x83\x9a\xf0\x4c\xbf\xde\x9f\x59\xc7\x42\xd2\xbb\xb1\xdd\x17\xc7\xd0\x30\x0a\x08\x86\x32\x32\xa4\x04\xb5\xd6\x1d\xfb\xdc\x90\xd5\xb5\x11\x74\x82\x7a\xd5\x14\x70\x0b\x4e\xb5\xc8\xb2\x36\xb8\xa3\x68\xeb\xb7\x7c\xbe\xe6\x94\x2f\x2d\xaf\xa1\x13\xea\x92\x3b\x7c\xd5\xa6\x19\xf6\x8c\x9c\x4f\xdb\x86\xbb\x3b\xa8\x50\x49\x11\x4e\xee\x75\x5d\xa4\xea\x3f\x86\x66\xd5\xb5\x19\xb0\x6e\x8f\x98\xb8\x11\xef\x8e\x06\x7a\x23\x51\x33\x9d\x4c\x34\x4f\xd3\x91\x83\x5a\x4e\xce\x3e\xe5\x7f\xe0\x21\xb2\xc4\x43\xa1\xf6\xc3\x8f\xe1\x8a\xea\x47\x80\x95\xb6\xdc\x80\x1b\x1f\xb5\x1b\xcf\xa7\x2c\x23\xc1\x72\x4f\xf3\xfe\x13\x72\xe6\x89\x69\xd4\x82\x68\x69\x04\x88\x2c\x1b\x29\x78\xf9\xab\xc6\xe2\x45\x87\x57\x20\x75\x6d\x53\x48\x60\xb2\xea\xd1\x73\x40\x0b\x4a\xb3\x7b\x07\x29\x1d\x90\xf5\xe2\xb8\x9a\xf8\x63\xde\x83\xbf\x01\x00\x00\xff\xff\xf2\x69\x4c\x0e\x93\x05\x00\x00" func nodeversionbeaconAdminSet_version_boundaryCdcBytes() ([]byte, error) { return bindataRead( @@ -4570,7 +4570,7 @@ func nodeversionbeaconAdminSet_version_boundaryCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/set_version_boundary.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0x49, 0x35, 0xe6, 0xaf, 0x28, 0x5e, 0xc9, 0x5b, 0x35, 0xf1, 0x3, 0x12, 0x28, 0xdd, 0x59, 0xcb, 0x3b, 0xdf, 0x46, 0xd5, 0xa8, 0x3, 0x78, 0x65, 0xe5, 0xcf, 0xd4, 0x1e, 0xb, 0xa1, 0x5d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x34, 0x77, 0xb4, 0xc1, 0x49, 0x52, 0xbe, 0xfa, 0xfd, 0x51, 0xfd, 0x35, 0x93, 0xb4, 0x58, 0xac, 0x55, 0x66, 0x3d, 0x6d, 0xd2, 0x10, 0x1, 0x71, 0x3b, 0xc4, 0xee, 0x79, 0x85, 0xd9, 0x6a, 0x98}} return a, nil } @@ -4694,7 +4694,7 @@ func nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdc() (*asset, er return a, nil } -var _quorumcertificateAdminPublish_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4e\xc3\x30\x10\x44\xef\xfe\x8a\x39\xa1\x56\x42\x0d\xe7\x0a\x21\x45\x2e\x9c\x09\xe5\x07\x96\xb0\x89\x2d\x1c\x6f\xb4\xde\xb4\x48\x55\xff\x1d\x39\xbd\x80\xc4\x5e\x77\x66\xde\x4c\x9c\x66\x51\xc3\x4b\x92\xb3\x4f\x4b\x31\xd6\xce\x63\x50\x99\xf0\xf0\xdd\xf9\xf6\x70\x78\x7b\x3e\x1e\x9d\x6b\x1a\xbc\x73\x31\x98\x52\x2e\xd4\x5b\x94\x8c\x41\x14\x16\x18\x9d\x07\x7d\x4e\x31\xc3\x04\xf3\xf2\x91\x62\x09\x20\x28\x0f\xac\x9c\x7b\xae\x5e\x0b\x64\xa0\x94\xe4\x5c\x40\x7d\x2f\x4b\xb6\x52\xe5\xca\x63\xac\xcc\x35\xab\xf3\x38\x89\xc5\x3c\x3a\xf7\x1b\x73\x71\x0e\x00\x66\xe5\x99\x94\x37\x25\x8e\x99\x75\x8f\x76\xb1\xd0\xde\xa2\xb6\xb8\xac\x92\x7a\xb7\xf7\x2e\xc5\xfc\xf5\x78\xf7\x67\xd5\xae\xad\x25\x9f\x36\xcd\xda\xb1\x6f\x4e\x62\xac\x5e\x99\x4c\xf4\x1e\x46\x3a\xb2\xed\xf1\x8f\xe5\x68\xa2\x34\xf2\x2b\x59\xd8\xae\x9c\xab\xbb\xfe\x04\x00\x00\xff\xff\x97\xf7\x08\x84\x37\x01\x00\x00" +var _quorumcertificateAdminPublish_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\x39\x05\x07\x8a\xdd\x73\x68\x0b\x41\x69\xcf\x75\xd3\x1f\xd8\xb8\x1b\x5b\x20\x6b\xcd\x6a\x9d\x14\x42\xfe\xbd\xd8\xa6\x25\x85\xe8\x28\xf6\xbd\x19\x26\xf4\x83\xa8\xe1\x2d\xca\xd9\xc7\x31\x1b\x6b\xed\x71\x54\xe9\xf1\xf8\x5d\xfb\xed\x6e\xf7\xf1\xba\xdf\x3b\x57\x55\xf8\xe4\x6c\x30\xa5\x94\xa9\xb1\x20\x09\x47\x51\x58\xc7\xa8\x3d\xe8\xab\x0f\x09\x26\x18\xc6\x43\x0c\xb9\x03\x41\xf9\xc8\xca\xa9\xe1\x89\xb5\x8e\x0c\x14\xa3\x9c\x33\xa8\x69\x64\x4c\x96\xa7\x73\xe5\x36\x4c\x99\xb3\xab\xf6\x38\x89\x85\xd4\x3a\x77\x1b\x73\x71\x0e\x00\x06\xe5\x81\x94\x8b\x1c\xda\xc4\xba\x01\x8d\xd6\x15\x9e\x06\x3a\x84\x18\x2c\x70\x5e\x63\xb5\x5d\xd4\x6b\x5c\x66\x64\x7a\x91\x6d\x69\xe7\x69\xc0\x33\x16\xba\x6c\x6e\xb8\x32\x9b\x28\xb5\x5c\x86\x9c\x47\x7e\x5a\xfd\x9b\xa2\xdc\x4e\xec\x4b\x71\xe7\x73\xbf\x60\xef\x64\xdd\xfa\x2f\xee\x9e\x7f\xf6\x16\xbf\x25\x1e\x40\xb6\x41\x35\x0f\xd5\x54\x27\x31\x56\xaf\x4c\x26\xba\x58\xae\xee\xea\x7e\x02\x00\x00\xff\xff\x92\x6c\x90\x41\x95\x01\x00\x00" func quorumcertificateAdminPublish_voterCdcBytes() ([]byte, error) { return bindataRead( @@ -4710,11 +4710,11 @@ func quorumcertificateAdminPublish_voterCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/admin/publish_voter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x62, 0x25, 0xcd, 0x7f, 0xbf, 0x92, 0xcd, 0x55, 0x37, 0x4c, 0xbc, 0x66, 0x88, 0x88, 0x9, 0x48, 0xe5, 0x38, 0x46, 0x33, 0xac, 0x31, 0x40, 0x2c, 0x65, 0x1f, 0x77, 0x1, 0x34, 0x4, 0x5b, 0x37}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa1, 0x35, 0xf1, 0x8e, 0x29, 0x89, 0xb7, 0xe7, 0x89, 0x42, 0x6c, 0xcc, 0x99, 0x60, 0x5e, 0xdc, 0xfa, 0x96, 0xb7, 0xe7, 0xa0, 0x44, 0xf6, 0xdc, 0xc1, 0xd3, 0xb5, 0xa8, 0xb8, 0x18, 0xc1, 0xf4}} return a, nil } -var _quorumcertificateAdminStart_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\xcd\x6e\xdb\x3c\x10\xbc\xeb\x29\x06\x39\x7c\x9f\x8d\x06\x76\x02\x14\x39\x08\x75\x03\xd7\x6e\x01\x5f\x8a\x3a\xee\xcf\x41\xd0\x81\xa1\x68\x89\x85\x4c\xaa\xe4\x2a\x4e\x60\xf8\xdd\x0b\x92\x92\x23\xc6\xae\x00\x03\xb2\x38\xb3\x3b\xbb\x3b\x5c\xb9\x6b\xb4\x21\x7c\xa9\xf5\x7e\x51\xb7\x96\x84\x59\x2f\xb0\x35\x7a\x87\x9b\xe7\xf5\x62\xbe\x5c\x3e\x7c\xde\x6c\x92\x64\x3a\xc5\x77\x61\x09\x64\x98\xb2\x8c\x93\xd4\x0a\x5b\x6d\x40\x95\xc0\x7a\x01\x56\xec\xa4\x02\x69\x58\x62\x86\xfa\xaf\x4f\x9a\xa4\x2a\xd1\x08\x23\x75\xe1\x42\xec\x25\x55\x60\x60\xc6\xb0\x17\xe8\x2d\xb8\xae\x6b\xc1\x49\x1b\x28\x5d\x08\xf0\x20\xc0\xfa\x74\x73\x53\xb6\x3b\xa1\xc8\xa6\xee\x9f\xfb\x49\x55\x48\x2e\x6c\x8a\xb9\x1a\x84\x08\x9c\xfe\xd0\xe1\xba\x4f\x5f\x75\x21\x56\x4b\x07\xef\xb1\x9e\x64\xfd\x5b\x5d\x7b\x91\x3e\xed\x6a\x69\x21\x15\x04\xe3\x55\xcf\x75\x61\xdc\xd9\x2f\x21\xcb\x8a\x2e\xc7\xf0\xdc\x7d\x00\x9c\xf1\x93\x41\xa3\x46\x27\xe1\xd9\x8f\x95\xa2\xdb\xbb\xfc\xfa\x4c\x63\x96\x6d\xc8\x48\x55\xe6\xf9\x75\x9c\x38\xf3\x9c\xbb\xf7\x79\x3e\xc6\x21\x49\x00\xa0\x31\xa2\x61\x46\x8c\xac\x2c\x95\x30\x29\xe6\x2d\x55\x73\xce\x75\xab\xe8\x84\x71\xcf\x74\x8a\x4f\xda\x18\xbd\x07\x83\x11\x5b\x61\x84\xe2\xc2\x0d\x29\x1a\x9a\x7e\xfc\x2d\x38\x9d\x48\xb5\xa0\x70\xf0\x20\xb6\x98\x21\xe4\x98\x3c\xfa\x38\x1f\xfe\x8b\x6c\x32\x99\x3b\xdc\xc7\x91\x73\x4b\x8a\x0b\x47\x1b\xd2\x86\x95\xe2\x1b\xa3\x6a\x7c\x4a\xe0\x9e\xfb\x7b\x34\x4c\x49\x3e\xba\x5a\xe8\xb6\x2e\xa0\x34\x21\xa4\x88\x85\xfe\xe1\x41\xcb\xd5\x38\x89\x04\xf6\x46\x49\x91\xc5\x69\xbb\xb7\x1c\x33\x64\xf9\x89\x32\xec\xc8\x8a\x84\x61\x24\x40\x95\xd1\x6d\x59\x45\x53\x03\x53\x05\xb8\x56\x96\x4c\xcb\x09\x0c\x5d\xb8\xb7\x3d\x72\xc6\x97\xaa\x10\xcf\x6e\xec\xdd\x70\x87\x8d\xef\x65\x0e\x06\xb9\x94\xde\x0a\xcc\xbc\xa4\x38\x84\x51\xa7\x08\x93\x3d\x62\x86\xc3\x31\x22\x3f\x31\x03\x89\x19\x6e\xe2\x98\xd3\x29\x36\x82\x82\x64\x17\xfb\x7f\x0b\x59\x78\xd1\xc1\x86\x6f\xc1\x0b\x56\xf3\xb6\x0e\xd5\xba\x7e\x12\xab\x3b\xa4\x2f\x21\x32\xec\x90\xba\xed\x2e\xe4\x6a\xe9\x0a\x8c\xad\x9a\xf9\xc2\x73\x1c\x22\xc6\xb0\x62\x8b\xd9\xb0\xf2\x8e\xf0\x4f\x78\x80\x75\x1c\x9b\xc9\x3c\x39\x83\x5e\xec\x63\x16\x14\xe6\x51\xb6\x73\xae\x6b\xa3\xc4\x3b\xdc\x46\x27\xc7\x18\xd8\xfb\x69\xc2\x9a\x46\xa8\x62\x74\xd1\x54\x23\x5f\x48\x1a\x26\xff\xe6\x96\x5e\x54\x38\x7e\x35\xfd\x31\xba\x95\x1b\xbf\x24\xd7\x0b\xfc\x0c\x0b\xd2\xaf\x45\x37\x22\xdb\x36\x4d\x2d\x45\xf1\xba\x09\x7b\x56\x7f\x25\x27\x7e\xc1\x06\xde\xe8\xf5\x1a\xf4\x6f\x21\xe3\x31\x39\xfe\x0d\x00\x00\xff\xff\x34\x89\x6e\x08\xd7\x05\x00\x00" +var _quorumcertificateAdminStart_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\xc1\x6e\xdb\x38\x10\xbd\xeb\x2b\x1e\x72\xc8\xca\xd8\xc0\x4e\x80\x45\x0e\xc2\x7a\x03\xaf\xdd\x02\xbe\x14\x75\xdc\xa6\x07\x41\x07\x86\xa2\x2d\x16\x32\xa9\x92\xa3\x38\x81\xe1\x7f\x2f\x48\x4a\x8e\x18\xbb\x02\x0c\xc8\xe2\x7b\x33\x6f\x66\xde\x50\xee\x1a\x6d\x08\x9f\x6b\xbd\x9f\xd7\xad\x25\x61\x56\x73\x6c\x8c\xde\xe1\xf6\x75\x35\x9f\x2d\x16\x8f\x9f\xd6\xeb\x24\x99\x4c\xf0\x4d\x58\x02\x19\xa6\x2c\xe3\x24\xb5\xc2\x46\x1b\x50\x25\xb0\x9a\x83\x95\x3b\xa9\x40\x1a\x96\x98\xa1\xfe\xeb\x8b\x26\xa9\xb6\x68\x84\x91\xba\x74\x21\xf6\x92\x2a\x30\x30\x63\xd8\x1b\xf4\x06\x5c\xd7\xb5\xe0\xa4\x0d\x94\x2e\x05\x78\x10\x60\x7d\xba\x99\xd9\xb6\x3b\xa1\xc8\x66\xee\x9f\xfb\x49\x55\x4a\x2e\x6c\x86\x99\x1a\x84\x08\x9c\xfe\xd0\xe1\xba\x4f\x5f\x74\x29\x96\x0b\x07\xef\xb1\x9e\x64\xfd\x5b\x5d\x7b\x91\x3e\xed\x72\x61\x21\x15\x04\xe3\x55\xcf\x75\x61\xdc\xd9\x0f\x21\xb7\x15\x5d\x8e\xe1\xb9\xfb\x00\x38\xe3\x27\x83\x46\xa5\x27\xe1\xf9\xf7\xa5\xa2\xbb\xfb\xe2\xe6\x4c\x63\x9e\xaf\xc9\x48\xb5\x2d\x8a\x9b\x38\x71\xee\x39\xf7\xff\x14\xc5\x08\x87\x24\x01\x80\xc6\x88\x86\x19\x91\x5a\xb9\x55\xc2\x64\x60\x2d\x55\xe9\xff\xda\x18\xbd\x7f\x62\x75\x2b\x46\xb8\x9e\x71\xae\x5b\x45\x27\x8a\x7b\x26\x13\x04\x10\x18\x8c\xd8\x08\x23\x14\x17\x6e\x66\xd1\x0c\xf5\xf3\x4f\xc1\xe9\x44\xaa\x05\x85\x83\x47\xb1\xc1\x14\x21\xe5\xd8\x92\x36\x6c\x2b\xc6\xcf\x3e\xde\xbf\xd7\x91\x7b\xc6\x33\x87\xff\x2f\x75\x26\xca\x70\xe1\x68\x1d\xd8\x5f\x19\x55\xa3\x53\x22\xf7\x3c\x3c\xa0\x61\x4a\xf2\xf4\x6a\xae\xdb\xba\x84\xd2\x84\x90\x22\x16\xfc\x8b\x07\x4d\x57\xa3\x24\x12\xda\xfb\x27\x43\x1e\xa7\xed\xde\x0a\x4c\x91\x17\x27\xca\xb0\x33\x4b\x12\x86\x91\x00\x55\x46\xb7\xdb\x2a\x1a\x26\x98\x2a\xc1\xb5\xb2\x64\x5a\x4e\x60\xe8\xc2\x7d\xec\x95\xdb\x07\xa9\x4a\xf1\xea\xdc\xd0\xcd\x7c\x38\x80\x5e\xe6\x60\xbe\x0b\xe9\x1d\xc2\xcc\x5b\x86\x43\x70\x40\x86\x30\xf0\x23\xa6\x38\x1c\x23\xf2\x0b\x33\x90\x98\xe2\x36\x8e\x39\x99\x60\x2d\x28\x48\x76\xb1\xff\xb2\x90\xa5\x17\x1d\xdc\xf9\x11\x3c\x67\x35\x6f\xeb\x50\xad\xeb\x27\xb1\xba\x43\xfa\x12\x22\x1f\x0f\xa9\x9b\x6e\x4f\x97\x0b\x57\x60\xec\xe0\xdc\x17\x5e\xe0\x10\x31\x86\x15\x5b\x4c\x87\x95\x77\x84\x3f\xc2\x03\xac\xe3\xd8\x5c\x16\xc9\x19\xf4\x62\x1f\xf3\xa0\xb0\x88\xb2\x9d\x73\x5d\x1b\x25\xfe\xc6\x5d\x74\x72\x8c\x81\xbd\x9f\xc6\xac\x69\x84\x2a\xd3\x8b\xa6\x4a\x7d\x21\x59\x98\xfc\x87\xe5\xbd\xa8\x70\xf4\x6e\xfa\x63\xb4\x9d\x6b\x7f\x77\xae\xe6\x78\x0a\xf7\xa6\xbf\x2d\xdd\x88\x6c\xdb\x34\xb5\x14\xe5\xfb\x05\xd9\xb3\xfa\xd5\x1c\xfb\x7b\x37\xf0\xd2\xf7\x35\xe8\xdf\x42\xc6\x63\x72\xfc\x1d\x00\x00\xff\xff\x35\x3b\x0b\xd9\xee\x05\x00\x00" func quorumcertificateAdminStart_votingCdcBytes() ([]byte, error) { return bindataRead( @@ -4730,11 +4730,11 @@ func quorumcertificateAdminStart_votingCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/admin/start_voting.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf5, 0x37, 0xb6, 0x46, 0xc9, 0xb7, 0x82, 0xbe, 0x4d, 0x32, 0x73, 0x50, 0x5, 0xcc, 0x34, 0x71, 0xdc, 0xa8, 0x85, 0xc1, 0x15, 0x8e, 0x4d, 0x2e, 0x95, 0x28, 0x22, 0x7c, 0x35, 0x6e, 0x5f, 0x44}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe4, 0xf3, 0x66, 0x1a, 0x46, 0x4b, 0xab, 0xcc, 0xa2, 0xce, 0x14, 0x89, 0xee, 0xf8, 0x11, 0x2, 0x66, 0x76, 0xa4, 0x4d, 0x48, 0x84, 0xb1, 0x88, 0x9a, 0x4e, 0x97, 0x80, 0x8f, 0xd0, 0xc3, 0xc4}} return a, nil } -var _quorumcertificateAdminStop_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4e\xf3\x30\x10\x84\xef\x7e\x8a\x51\x0f\xbf\xd2\x4b\xfa\x9f\x2b\xa0\x8a\x52\x38\x93\x06\x71\x37\xce\x26\xb1\x94\x78\xcd\x66\x43\x91\xaa\xbe\x3b\x72\x22\x2a\x90\x98\xa3\x3d\xb3\x33\x9f\x1f\x23\x8b\xe2\x69\xe0\x73\x39\xcc\x93\x92\x54\x25\x5a\xe1\x11\xff\x3f\xab\xb2\x38\x1e\x4f\x8f\x75\x6d\xcc\x6e\x87\x17\x9a\x14\x2a\x36\x4c\xd6\xa9\xe7\x80\x96\x05\xda\x13\xaa\x12\x8e\x83\x8a\x75\x0a\x65\x4c\xca\x71\x79\xff\x60\xf5\xa1\x43\x24\xf1\xdc\x18\xf3\x33\x7a\x31\x06\x00\xa2\x50\xb4\x42\xd9\xe4\xbb\x40\xb2\x47\x31\x6b\x5f\x38\xc7\x73\xd0\x2d\x2e\x8b\x25\x69\x20\x85\x6d\x46\x1f\x4e\xd4\xe2\x1e\xab\x3b\x7f\x63\x11\x3e\xdf\xfd\xfb\x35\x3d\x2f\x92\xef\x21\x4b\x04\x7b\xfc\xf1\x55\x2b\x8b\xed\xe8\xd9\x6a\xbf\xbd\x15\x24\x1d\x0e\x88\x36\x78\x97\x6d\x4a\x9e\x87\x06\x81\x15\x6b\x05\x84\x5a\x12\x0a\x8e\x12\xde\xbb\x5b\xb7\x6c\xb6\xe6\x96\xff\x1e\x97\x27\xf6\xd7\x05\x3b\x5b\xaf\x5f\xcd\xf5\x2b\x00\x00\xff\xff\x4d\x7d\x7c\x39\x62\x01\x00\x00" +var _quorumcertificateAdminStop_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x4e\xc3\x30\x10\x44\xef\xfe\x8a\x51\x0f\x55\x72\x69\x39\x57\x40\x55\x52\x38\xd3\x16\xf5\x6e\xdc\x4d\x62\x29\xf1\x9a\xf5\x86\x22\x55\xfd\x77\xe4\x44\x54\x20\x31\x47\x7b\xdf\xce\xcc\xfa\x3e\xb2\x28\x5e\x3a\x3e\x57\xdd\x90\x94\x64\x57\xa1\x16\xee\x71\xf7\xb5\xab\x36\xdb\xed\xfe\xf9\x70\x30\x66\xb9\xc4\x1b\x25\x85\x8a\x0d\xc9\x3a\xf5\x1c\x50\xb3\x40\x5b\xc2\xae\x82\xe3\xa0\x62\x9d\x42\x19\x49\x39\x8e\xef\x9f\xac\x3e\x34\x88\x24\x9e\x4f\xc6\xfc\x46\x2f\xc6\x00\x40\x14\x8a\x56\xa8\x48\xbe\x09\x24\x2b\xd8\x41\xdb\xe2\x89\x45\xf8\x7c\xb4\xdd\x40\x25\xe6\x1b\xe7\x78\x08\x5a\xe2\x32\x12\x59\x1d\x29\xec\xa9\xf7\x61\x4f\x35\x1e\x30\xc1\x8b\xa4\x2c\xb6\xa1\xc5\xfb\x88\xdf\xcf\xff\x34\x5a\x6c\xf2\xfc\x63\x91\x8b\xad\xf0\xcf\xd7\x61\xa2\x5f\xad\xb6\xe5\xcd\x28\x6b\xbd\x46\xb4\xc1\xbb\x62\x56\xf1\xd0\x9d\x10\x58\x31\x59\x40\xa8\x26\xa1\xe0\x28\xb7\xfe\x70\x53\xa6\x59\x69\x6e\xfc\x4f\xc8\x9c\x2d\x1e\xc7\x6b\x14\xd3\xf6\xab\xb9\x7e\x07\x00\x00\xff\xff\x19\x6a\xd3\xa1\x79\x01\x00\x00" func quorumcertificateAdminStop_votingCdcBytes() ([]byte, error) { return bindataRead( @@ -4750,11 +4750,11 @@ func quorumcertificateAdminStop_votingCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/admin/stop_voting.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa5, 0xa0, 0xd9, 0x1d, 0x55, 0xa2, 0xfc, 0xf1, 0x23, 0x3d, 0xa6, 0xbd, 0xe5, 0xdd, 0xa2, 0x17, 0xc9, 0xeb, 0x3f, 0x53, 0xe2, 0x30, 0x9c, 0x47, 0x65, 0x66, 0xad, 0xd9, 0x55, 0xca, 0x9b, 0x79}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0xc1, 0xae, 0x47, 0x8f, 0x3c, 0x13, 0x43, 0x2, 0xaf, 0xdf, 0x0, 0x51, 0xdf, 0xb3, 0x8b, 0x3a, 0x90, 0x31, 0x47, 0x72, 0x4b, 0xb6, 0xbb, 0xe1, 0x54, 0xcc, 0x36, 0x4d, 0xc4, 0x32, 0xcc}} return a, nil } -var _quorumcertificateCreate_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x54\x4d\x6f\xdb\x30\x0c\xbd\xe7\x57\x70\x3d\x0c\x0e\xd0\x26\x3b\x07\xed\x8a\xc0\xdd\x86\x61\x87\x35\x4d\xb1\x9d\x15\x99\xb6\xb5\x2a\xa2\x47\xd1\xc9\x82\xa1\xff\x7d\xa0\xe4\x3a\x31\x26\x20\x88\x3e\xc8\x47\xbe\xc7\x07\xbb\x7d\x47\x2c\xf0\xd9\xd3\xb1\xf4\x7d\x14\xe4\x4d\x09\x35\xd3\x1e\x3e\xfc\xd9\x94\xeb\x87\x87\xa7\x4f\xdb\xed\x6c\xb6\x5c\xc2\x33\x46\x81\x67\x36\x21\x1a\x2b\x8e\x02\xd4\xc4\x60\x20\x50\x85\x20\x04\x8c\xbf\x7b\x8d\x30\xb0\x29\xe1\x07\x09\x32\x7c\xdf\xfd\x42\x2b\x19\x4d\x5a\x04\x4b\x41\xd8\x58\x51\xb4\x9f\xce\x7b\xd8\x21\xf4\x5d\x65\x04\x2b\x45\xe8\x23\xa6\x30\xec\xc8\xb6\x63\x30\x1c\x5b\x0c\x20\xad\x11\x70\x11\x2c\xed\x3b\x8f\x82\x55\xea\xa8\x45\x38\xa4\x4a\x94\x2b\x51\xf0\x27\x08\x88\x55\x54\xbc\x1d\x82\x65\x4c\xe8\x14\x2c\x82\x09\x95\x42\x1c\x8c\x77\x55\x6a\x1e\x0f\xc8\x27\xa8\x7b\xe9\x79\xa8\xaa\xa8\xc7\x16\x39\x37\x92\xa8\xb9\x08\x66\xc8\x89\x62\x5e\xb0\x4a\xd7\x49\x91\x47\xc3\x66\x8f\x82\x1c\x57\x7a\xd4\x9f\xa9\xf6\x2e\xac\xab\x8a\x31\xc6\x55\x02\x31\xf9\x00\x54\xa7\xe3\xa6\xcc\x31\x97\x92\xe9\x7d\x56\x4c\xa5\x52\x18\x2d\xf1\xf5\x21\x03\xb8\xea\x2d\x37\x4b\xad\x4a\x24\x60\x6b\xa9\x0f\x49\x15\xea\x90\x8d\xb8\xd0\x68\xae\x76\xe9\x42\xf3\x0d\x4f\xab\xa4\xd0\x70\x86\x17\x3c\x25\xd6\x79\x12\xde\xa3\x15\xe2\x81\x8c\x9c\xc7\x5a\x4c\x29\x0c\x9b\xeb\xb1\xa5\xad\xb0\x0b\xcd\xf5\xa4\x4c\xbe\x9b\xc3\xdf\xd9\x0c\x00\xa0\x63\xec\x0c\x63\x11\x5d\x13\x90\x57\xb0\xee\xa5\x5d\xe7\x6e\xc7\x18\x5d\xcb\x25\x7c\xc1\x81\x4c\xd2\x84\xb1\x46\x46\x9d\xd5\xe8\x99\xfc\x30\x70\x1d\x33\x3d\xca\xf0\x72\x07\x0d\xca\x00\x3e\x69\x7d\xfe\x7f\xf0\x13\xd6\x70\x97\xb7\x8b\x06\xa5\x34\x9d\xd9\x39\xef\xe4\x74\xfb\x7e\xe2\xff\xc5\x5a\x43\x3e\x16\xcb\xae\xdf\x79\x67\x97\xc9\x63\xa5\x5a\x89\x78\xfe\x6e\xc4\xd5\xb5\xd8\x11\x33\x1d\x8b\x39\xdc\xdf\x43\x67\x82\xb3\xc5\x55\x49\xbd\x57\x97\x08\xe4\x47\x30\x17\xc4\x84\xce\xb4\xae\xe6\x13\x2d\x52\x05\x54\xb7\x5d\x7a\x5a\x5d\x1b\xcd\x01\xc1\x89\x26\x47\x21\x36\x0d\x4e\xc8\xe5\xf8\xdb\x9b\x91\xe5\x22\xfb\x3e\x79\xaa\x78\x1b\x5c\xfe\x9f\x0e\xee\xbc\xbf\x68\x25\x8f\x6d\xa1\x45\x8b\xdb\x9b\x04\x7e\x0d\x42\xab\xe9\x47\x62\x91\xd0\xb7\xb9\x9d\x47\x23\x6d\x16\xfc\x75\xf6\xfa\x2f\x00\x00\xff\xff\xd3\x11\xd1\x52\x53\x04\x00\x00" +var _quorumcertificateCreate_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x54\x4d\x6f\xdb\x30\x0c\xbd\xe7\x57\x70\x3d\x14\x0e\xd0\x3a\x3b\x07\xed\x8a\xc0\xdd\x86\x61\x87\x35\x4d\xd1\x9d\x19\x99\xb1\xb5\x2a\x92\x47\xd1\xc9\x82\xa1\xff\x7d\xa0\xe4\xba\x31\x66\x20\x88\x3e\xc8\xf7\xf8\x1e\x69\xdb\x7d\x17\x58\xe0\x8b\x0b\xc7\xca\xf5\x51\x88\xd7\x15\xec\x38\xec\xe1\xe3\x9f\x75\xb5\xba\xbf\x7f\xfc\xbc\xd9\xcc\x66\x8b\x05\x3c\x51\x14\x78\x62\xf4\x11\x8d\xd8\xe0\x61\x17\x18\x10\x7c\xa8\x09\x24\x00\xd3\xef\x5e\x23\x10\xd6\x15\x3c\x07\x21\x86\x1f\xdb\x5f\x64\x24\xa3\x49\x4b\x60\x82\x17\x46\x23\x8a\xf6\xd3\x3a\x07\x5b\x82\xbe\xab\x51\xa8\x56\x84\x3e\x52\x0a\xa3\x2e\x98\x76\x0c\x86\x63\x4b\x1e\xa4\x45\x01\x1b\xc1\x84\x7d\xe7\x48\xa8\x4e\x15\xb5\x04\x87\xc4\x14\x32\x53\xf0\xee\x04\x9e\xa8\x8e\x8a\xb7\x25\x30\x4c\x09\x3d\x78\x43\x80\xbe\x56\x88\x03\x3a\x5b\xa7\xe2\xe9\x40\x7c\x82\x5d\x2f\x3d\x0f\xac\x8a\x7a\x6c\x89\x73\x21\x49\x9a\x8d\x80\x43\x4e\x14\x7c\xa1\x3a\x1d\x27\x47\x1e\x90\x71\x4f\x42\x1c\x97\xba\xd5\x1f\xd6\x7b\xeb\x57\x75\xcd\x14\xe3\x32\x81\x60\xde\x40\xd8\xa5\xed\xba\xca\x31\xe7\x96\xe9\x79\x76\x4c\xad\x52\x18\xa5\xf8\x76\x9f\x01\x6c\xfd\x96\x9b\xad\x56\x27\x12\xb0\x31\xa1\xf7\xc9\x95\xd0\x11\xa3\x58\xdf\x68\xae\x56\x69\x7d\xf3\x9d\x4e\xcb\xe4\xd0\xb0\x87\x17\x3a\x25\xd5\xb9\x13\xce\x91\x91\xc0\x83\x18\x79\x6f\x6b\x31\x95\x30\x2c\xae\xc6\x92\x36\xc2\xd6\x37\x57\x13\x9a\x7c\x36\x87\xbf\xb3\x19\x00\x40\xc7\xd4\x21\x53\x11\x6d\xe3\x89\x97\x80\xbd\xb4\xc5\x06\x0f\xf4\x8c\xae\xa7\x39\x5c\xae\x72\xe9\x63\x82\x3e\x8b\x05\x7c\xa5\x41\x59\x32\x88\x69\x47\x4c\xda\xb8\x71\x80\xf2\xc5\x20\x7c\xcc\x74\x24\xc3\xcd\x2d\x34\x24\x03\xf8\x44\xc7\xfc\xff\xe0\x47\xda\xc1\x6d\x5e\x96\x06\x3b\xdc\x5a\x67\xc5\x52\x2c\x1b\x92\x9b\xcb\xc9\xfb\x50\xae\x34\xea\x53\xb1\xe8\xfa\xad\xb3\x66\x91\x66\xae\xd2\xd1\x0a\x3c\xff\x30\x42\xeb\x53\x6e\x03\x73\x38\x16\x73\xb8\xbb\x83\x0e\xbd\x35\xc5\x45\x15\x7a\xa7\x53\x23\x90\x2f\x01\xcf\xb4\x49\x78\x57\x76\x31\x9f\xd8\x91\x18\x48\xa7\xef\x7c\xc6\x75\x8a\x23\x1e\x08\xac\x68\x72\x94\xc0\xd8\xd0\x44\x5f\x8e\xbf\xb9\x1e\x85\x96\xf9\x3d\x48\x33\x56\xbc\x35\x32\xff\x4f\x1b\xf9\xbe\x3e\x2b\x25\xb7\xb1\x1c\x98\x4a\x25\x2f\x6e\xae\x13\xc9\x15\x48\x58\x4e\x3f\x1e\x65\x62\xd9\xe4\xe0\x07\x94\x36\x7b\xff\x3a\x7b\xfd\x17\x00\x00\xff\xff\x15\x36\x10\x1a\x6b\x04\x00\x00" func quorumcertificateCreate_voterCdcBytes() ([]byte, error) { return bindataRead( @@ -4770,7 +4770,7 @@ func quorumcertificateCreate_voterCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/create_voter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc1, 0xaa, 0x8c, 0x53, 0x14, 0x61, 0xae, 0x77, 0x43, 0x9f, 0x9b, 0xf7, 0x46, 0x21, 0xfd, 0x67, 0xd2, 0x64, 0xf8, 0xc6, 0x4a, 0x8a, 0x4e, 0x63, 0x7f, 0xd7, 0xfe, 0x20, 0xb2, 0x2b, 0x8e, 0x28}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf3, 0xeb, 0x93, 0xe4, 0xb2, 0xd3, 0xe5, 0xbe, 0xe1, 0xde, 0x2b, 0xe8, 0x21, 0xfc, 0x75, 0xbe, 0x75, 0x96, 0xf1, 0xe3, 0x20, 0xa9, 0x80, 0x9f, 0x29, 0xb4, 0xf0, 0x4d, 0x27, 0xe3, 0x2a, 0x8b}} return a, nil } @@ -5034,7 +5034,7 @@ func quorumcertificateScriptsGet_voting_completedCdc() (*asset, error) { return a, nil } -var _quorumcertificateSubmit_voteCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\x51\xcf\x93\x40\x10\x7c\xbf\x5f\x31\xf9\x1e\x94\x26\x5a\x7c\x26\xea\x17\x42\xf5\xcd\xa4\x2d\xc6\xf7\x2b\x2c\x70\x29\xdc\xe1\xde\x9e\xad\x31\xfd\xef\xe6\x38\xdb\xb4\x8d\x9b\x90\xb0\xbb\x33\xb3\xc3\x60\xa6\xd9\xb1\xe0\xeb\xe8\x4e\xd5\x18\xbc\x10\xef\x2a\x74\xec\x26\x7c\x38\xef\xaa\x72\xb3\xd9\x7f\xa9\x6b\xa5\xf2\x1c\x25\xac\x6b\x09\xbf\x9c\x10\x23\x78\xf2\x90\xc1\x78\x08\x6b\xeb\x75\x23\xc6\x59\x88\x83\x0f\x87\xc9\x08\x34\x76\xd5\x02\x55\x79\x1e\xc9\x5b\xcd\x7a\x22\x21\xf6\x45\x6c\xe3\x13\xb7\xb5\xe9\xad\x96\xc0\x54\xe0\xfb\x40\xf0\xa6\xb7\xd4\x62\x22\xef\x75\x4f\x08\xde\xd8\x1e\x32\xd0\x72\xf9\xad\x87\x17\x7d\x8c\xa3\x23\xfd\xbe\x2a\x7c\x4b\xd8\xc4\x1f\xe8\xfc\x9e\x6c\xe3\x5a\x6a\xe1\x85\x23\xd4\x75\x8b\x00\xeb\xd3\x55\x56\xa9\x3b\xcb\xd9\x93\x8b\x7a\x61\xbd\x7b\x94\x4e\xc3\x15\xfe\x28\x05\x00\x33\xd3\xac\x99\xb2\xc5\x2d\x17\x28\x83\x0c\x65\xd3\xb8\x60\x25\x62\xf0\xaf\x46\x92\x14\xd6\x9e\x3a\x7c\x4a\xdf\xc6\xeb\x83\x63\x76\xa7\x8f\x6f\x1e\x02\x5f\xff\x88\xb8\xcf\x59\xcc\xbd\xc0\x7f\x56\xb5\x38\xd6\x3d\x6d\xb5\x0c\xab\xdb\x81\x58\xaf\xaf\x98\xb5\x35\x4d\xf6\x52\xb9\x30\xb6\xb0\x4e\x90\x4e\x80\xa9\x23\x26\xdb\x50\xfc\x2d\x3f\x9b\xe4\xe5\x65\xa5\x6e\xfc\xab\xb9\x75\x7c\x79\x0e\xe2\xa1\x7d\xca\xe3\xae\x49\x6e\x2e\xea\xf2\x37\x00\x00\xff\xff\x81\x4d\x6f\x1c\x48\x02\x00\x00" +var _quorumcertificateSubmit_voteCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\xc1\x6e\xdb\x30\x0c\xbd\xeb\x2b\x1e\x7a\xe8\x6c\x60\xb3\x77\x36\xb6\x15\x99\xbb\xdd\x06\x34\xf5\xd0\xbb\x6a\xd3\xb6\x10\x5b\xf2\x28\x6a\xc9\x30\xe4\xdf\x07\x59\x4b\x90\x04\x25\x60\xc0\x24\xdf\x7b\x7c\x22\xcd\xbc\x38\x16\x7c\x9f\xdc\xbe\x9e\x82\x17\xe2\x6d\x8d\x9e\xdd\x8c\x8f\x87\x6d\xbd\x79\x7c\x7c\xfe\xd6\x34\x4a\x95\x25\x36\xb0\xae\x23\xfc\x76\x42\x8c\xe0\xc9\x43\x46\xe3\x21\xac\xad\xd7\xad\x18\x67\x21\x0e\x3e\xbc\xce\x46\xa0\xb1\xad\x57\xa8\x2a\xcb\x48\x7e\xd2\xac\x67\x12\x62\x5f\xc5\x34\x7e\xb1\xdb\x98\xc1\x6a\x09\x4c\x15\x7e\x8e\x04\x6f\x06\x4b\x1d\x66\xf2\x5e\x0f\x84\xe0\x8d\x1d\x20\x23\xad\x93\xdf\x79\x78\xd1\xbb\x58\xda\xd1\x9f\x93\xc2\x8f\x84\x4d\xfc\x91\x0e\x1f\xc8\xb6\xae\xa3\x0e\x5e\x38\x42\x5d\xbf\x0a\xb0\xde\x9f\x64\x95\xba\xb0\x9c\xdd\xb8\x68\x56\xd6\xfb\x6b\xe9\x54\xcc\xf1\x57\x29\x00\x58\x98\x16\xcd\x94\xad\x6e\xb9\x82\x0e\x32\x66\x5f\x1d\xb3\xdb\xbf\xe8\x29\x50\x8e\xfb\x4d\xdb\xba\x60\x25\x52\xf0\x3f\x26\x92\xb4\xbb\x67\xea\xf1\x39\x3d\x95\x0b\x2f\x8e\xf5\x40\xc5\xeb\x4a\xff\x74\x7f\x75\x87\xe2\x25\xe2\xbf\x64\xf1\x1c\x15\xde\x68\x35\x89\xfd\xa4\x65\xcc\xcf\x83\x62\x3c\x3c\x60\xd1\xd6\xb4\xd9\x5d\xed\xc2\xd4\xc1\x3a\x41\x1a\x01\xa6\x9e\x98\x6c\x4b\xf1\x5a\xbf\xda\xe4\xe9\x2e\x57\x67\xfe\xc9\x64\x11\x7f\x6e\xf7\x73\x95\xde\xac\xe9\x22\x49\x6e\x8e\xea\xf8\x2f\x00\x00\xff\xff\x0a\x3b\x94\x9b\x5f\x02\x00\x00" func quorumcertificateSubmit_voteCdcBytes() ([]byte, error) { return bindataRead( @@ -5050,11 +5050,11 @@ func quorumcertificateSubmit_voteCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/submit_vote.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x97, 0xf6, 0x2f, 0x9, 0xa3, 0xbc, 0x7e, 0x74, 0xb2, 0xa3, 0xe, 0xf0, 0x38, 0x14, 0x3e, 0x45, 0xca, 0xa1, 0xa1, 0x7f, 0xa4, 0x86, 0x99, 0x91, 0x81, 0xb3, 0x63, 0x6d, 0x75, 0x3b, 0xe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa8, 0xf, 0x47, 0x73, 0xcc, 0xa6, 0x82, 0x74, 0x7b, 0xa6, 0x2b, 0xd0, 0x5, 0xb6, 0xfa, 0x32, 0x18, 0x92, 0xb4, 0x41, 0x1, 0x6a, 0x71, 0xbd, 0x8f, 0x21, 0xc5, 0x50, 0x99, 0x4b, 0xd0, 0x60}} return a, nil } -var _stakingcollectionClose_stakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xd4\x40\x0c\xbd\xe7\x2b\xac\x1e\xd0\x56\xaa\xb6\x08\x6e\x11\xb0\x8a\xb2\x05\x45\x54\x2d\x6a\x96\x0f\x70\x26\x4e\x32\x30\x19\x47\x33\x4e\x5b\x84\xfa\xef\x68\x66\x48\x40\xdd\x3d\xac\x0f\x89\xfc\x64\xbf\xf7\x6c\x8f\x1e\x27\x76\x02\x9f\x0d\x3f\xd5\x82\x3f\xb5\xed\x4b\x36\x86\x94\x68\xb6\xd0\x39\x1e\xe1\xed\x73\x7d\x28\xbe\x56\x77\x5f\xca\xfb\xdb\xdb\x9b\xf2\x50\xdd\xdf\x15\xfb\xfd\xc3\x4d\x5d\x67\xd9\xf5\x35\x94\x86\x3d\x79\xe0\x59\x00\xc1\x27\x0a\xe0\xe6\x07\x29\x01\x6d\x41\x06\x5a\x51\xb5\x32\x87\xc6\xc3\xa0\x3d\xb4\x4c\x1e\x2c\x0b\x38\x1a\xf9\x91\x62\xb9\x23\xc5\xae\x4d\xe2\x21\xd7\x2d\x59\xd1\xf2\x0b\x04\x1b\x43\x57\xa1\xb7\x99\x05\xb4\xa4\xee\x91\x30\xc8\xa0\xc4\x62\x54\x8a\x67\x2b\x09\x50\xc9\x9b\x16\x50\x68\x83\x0a\x3d\x92\x0b\x25\xe4\x23\x8a\x3d\x6a\x9b\x65\xe2\xd0\x7a\x8c\xc6\x36\x96\x5b\xaa\xf6\x39\xd4\xe2\xb4\xed\xaf\xa0\x25\x43\x3d\x0a\xbb\x00\x7e\xaf\xac\xbc\x7f\xb7\xbb\x84\xdf\x19\x00\x40\xfc\x18\x92\x65\xc0\x7f\x9b\x7b\xa0\x2e\x87\x37\x27\x97\xba\x3d\x42\xb2\xc8\x33\x39\x9a\xd0\xd1\xe6\xef\x00\x39\x14\xb3\x0c\x45\x4a\x16\xc1\x10\x9e\x4c\xb7\x3d\x25\x08\x1f\x97\xe1\xb7\x0d\x3b\xc7\x4f\x1f\xce\x35\xf0\x69\x13\x76\x9d\x9f\x7e\x04\xc7\xe5\xb5\xb0\xc3\x9e\xbe\xa1\x0c\x97\xab\xad\x10\xbb\x1d\x4c\x68\xb5\xda\x5c\x94\x3c\x9b\x36\xde\x35\x59\x01\x47\x1d\x08\xc3\x11\xd7\x45\x62\x78\x49\x3b\xa0\x67\x52\xb3\xd0\x39\xd3\x6e\xe3\x6d\x03\x1f\xad\x37\x4b\xff\x57\x37\xfb\x2f\x59\xb4\x5e\xb2\x3f\x01\x00\x00\xff\xff\x6e\x12\x74\xdf\xf6\x02\x00\x00" +var _stakingcollectionClose_stakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xd4\x30\x10\xbd\xe7\x2b\x46\x3d\x54\x59\xa9\x4a\x11\xdc\x56\xc0\x6a\xc9\x16\xb4\xa2\x6a\x51\xb3\x70\x9f\x38\x93\xc4\xe0\x78\x22\x7b\xd2\x16\xa1\xfe\x3b\xb2\x4d\x02\x62\xf7\xb0\x3e\x24\xf2\xcb\xcc\x7b\x6f\xe6\x45\x0f\x23\x3b\x81\x8f\x86\x9f\x2a\xc1\x1f\xda\x76\x25\x1b\x43\x4a\x34\x5b\x68\x1d\x0f\xf0\xea\xb9\x3a\x6c\x3f\xef\xef\x3e\x95\xf7\xb7\xb7\x37\xe5\x61\x7f\x7f\xb7\xdd\xed\x1e\x6e\xaa\x2a\xcb\xae\xaf\xa1\x34\xec\xc9\x03\x4f\x02\x08\x3e\x51\x00\xd7\xdf\x49\x09\x68\x0b\xd2\xd3\x82\xaa\x85\x39\x34\x1e\x7a\xed\xa1\x61\xf2\x60\x59\xc0\xd1\xc0\x8f\x14\xcb\x1d\x29\x76\x4d\x12\x0f\x77\xdd\x90\x15\x2d\x3f\x41\xb0\x36\x74\x15\x7a\xeb\x49\x40\x4b\xea\x1e\x08\x83\x0c\x4a\x2c\x46\xa5\x78\xb2\x92\x00\x95\xbc\x69\x01\x85\x36\xa8\xd0\x23\xb9\x50\x42\x3e\xa2\xd8\xa1\xb6\x59\x26\x0e\xad\xc7\x68\x2c\xb7\xdc\xd0\x7e\xb7\x86\x4a\x9c\xb6\xdd\x15\x34\x64\xa8\x43\x61\x17\xc0\xaf\x7b\x2b\x6f\x5e\x6f\x56\xf0\x2b\x03\x00\x88\x0f\x43\x32\x0f\xf8\x77\x73\x0f\xd4\xae\xe1\xf2\xe4\x52\x8b\x23\x24\x8b\x3c\xa3\xa3\x11\x1d\xe5\x7f\x06\x58\x03\x4e\xd2\xe7\x1f\xd8\x39\x7e\xfa\x86\x66\xa2\x15\x5c\x6e\xd3\xb7\x59\x3f\x1c\x4f\xa6\x2d\x4e\xe9\xc3\xbb\x79\x17\x85\x17\x76\xd8\x51\x51\x47\xb2\xb7\xe7\xfa\x7a\x9f\x87\x08\xd6\xa7\xff\x8d\xe3\xf2\x2a\xa9\x7c\x41\xe9\x57\x8b\xbd\x70\x36\x1b\x18\xd1\x6a\x95\x5f\x94\x3c\x99\x26\xc6\x9d\xac\x80\xa3\x16\x84\xe1\x88\xeb\x22\x31\xbc\xa4\xd5\xd0\x33\xa9\x49\xe8\x9c\xa9\x8b\x18\x79\xe0\xa3\x25\xca\xf4\xfe\x2f\xca\x7f\x2e\xb3\xd6\x4b\xf6\x3b\x00\x00\xff\xff\x49\xe3\xbe\x0d\x0d\x03\x00\x00" func stakingcollectionClose_stakeCdcBytes() ([]byte, error) { return bindataRead( @@ -5070,11 +5070,11 @@ func stakingcollectionClose_stakeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/close_stake.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x59, 0x8d, 0x88, 0x8f, 0x9d, 0x2f, 0x9b, 0x93, 0x92, 0x8c, 0x12, 0x2b, 0xb, 0x67, 0x85, 0x23, 0x87, 0x27, 0x5b, 0x5f, 0x46, 0x81, 0x35, 0x3e, 0x3d, 0x28, 0xbf, 0xd8, 0x89, 0xc8, 0x19}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x0, 0x1c, 0x8d, 0x39, 0xe9, 0x23, 0x70, 0x9e, 0x68, 0x16, 0x36, 0x5d, 0x4d, 0x10, 0x51, 0xa4, 0x7c, 0x2e, 0x6e, 0x82, 0xd7, 0xf0, 0x21, 0xda, 0x12, 0xf0, 0xe8, 0x16, 0xd2, 0xee, 0x33, 0x7d}} return a, nil } -var _stakingcollectionCreate_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x6f\x9b\x40\x10\xbd\xf3\x2b\x5e\x73\xa8\x1c\xc9\x22\x39\xa3\xba\x91\x85\x9d\xca\xb2\xeb\x54\x21\xb7\xaa\x87\x0d\x0c\xb0\xf2\x7a\x17\xed\x8e\xeb\xd0\xc6\xff\xbd\x5a\xc0\xc4\x9f\x52\xf7\x00\xcc\x2e\x33\xef\xcd\x9b\xb7\x72\x5d\x19\xcb\x88\x6d\x5d\xb1\x09\xba\xe8\x51\x99\x6d\xc2\x62\x25\x75\x11\x1b\xa5\x28\x65\x69\x34\x72\x6b\xd6\xb8\x7f\x4b\x5e\xc6\xf3\xd9\xf2\x5b\xfc\xb4\x58\x4c\xe3\x97\xd9\xd3\x72\x3c\x99\x3c\x4f\x93\x24\x08\xee\xee\xee\x10\x5b\x12\x4c\x0e\x02\x6b\x91\x96\x52\x13\x44\x9a\x9a\x8d\x66\xe4\xc6\x42\x40\x9b\x8c\xc0\xa5\x60\x48\x07\xa1\x2c\x89\xac\x86\xd4\xe0\x92\xe0\x5a\x48\xa4\x3d\x66\x53\x52\xe8\x0c\x22\xcb\x1c\xaa\xcd\xab\x92\x29\x56\x54\x3b\xb0\x69\x52\x34\x6d\xf7\x00\x41\xc0\x56\x68\x27\x9a\xc4\x81\xc7\x99\x4d\x22\x24\x6c\xa5\x2e\x86\x5d\xee\x9c\x6a\x17\xe1\x67\xdb\x6d\x38\xa7\x7a\x21\x1d\x4f\x35\xdb\xfa\xd7\x2d\xfe\x06\x00\xd0\x3c\x14\xf1\x9e\xcd\x87\x00\xcf\x94\x47\xf8\x7c\x51\x9b\xf0\x6c\x27\x68\xea\x54\x96\x2a\x61\x69\xd0\x51\x8c\x30\xde\x70\x39\x6e\x83\x3d\xa0\x5f\x8e\x54\x1e\x5e\x02\xc4\x68\xdf\x5e\xf8\x6a\xac\x35\xdb\x2f\xff\x4b\xe0\xeb\xc0\xcf\x2b\xba\x3c\xcb\xf3\xdf\x13\x36\x56\x14\xf4\x43\x70\x79\xdb\xd3\xf2\xeb\xe1\x01\x95\xd0\x32\x1d\xdc\xc4\x66\xa3\x32\x68\xc3\x68\xa9\xc0\x52\xee\xe7\x70\x56\xeb\xe6\x36\xe8\x4b\xc8\xbc\x11\xb3\x33\x43\xd7\x3a\x46\xd7\x3b\x0e\xd3\xc6\x41\xdf\x8f\x12\x1e\x8d\x9d\xbe\x49\xc7\x52\x17\x4b\x93\x51\x3f\xdd\xf6\x3d\x44\x25\x6a\xb2\xd1\x5e\xaa\x43\x65\x3b\x0e\x1f\xe3\xc7\x68\x04\x2d\x15\xde\xdf\x0f\x36\x3f\x85\x8a\x74\xc1\xa5\x3f\xbc\x3f\xc9\x6e\xe6\xd8\x29\x20\xb4\x6f\xbf\xb2\xe6\xb7\xcc\x08\x7f\xc8\x9a\xd6\x8d\xde\xdb\xde\x8e\x27\x9e\xbf\x39\x96\x72\x77\x14\xf9\x9c\x15\x35\xe6\x3f\x60\x77\x8e\x7d\x2c\x5d\xe8\xf1\x42\x91\x65\x83\x3e\x29\xf2\x65\xc2\x3e\x1c\xa2\x14\xae\x1c\xab\xc2\x58\xc9\xe5\xba\x3d\x3d\xda\x1a\x62\x4b\xb2\x28\xb9\x3d\x6a\xbf\xaf\x31\xdd\x81\x94\xa3\x13\x5a\x67\x86\x68\x67\x76\xe5\xd2\x37\xf7\xd4\x64\x74\xa0\x46\x5b\x7f\x17\xec\x82\x7f\x01\x00\x00\xff\xff\x33\xed\x36\xa1\x80\x04\x00\x00" +var _stakingcollectionCreate_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x6f\xdb\x3e\x0c\xbd\xfb\x53\xf0\xd7\x43\xe1\x00\x81\xdb\xb3\xf1\xcb\x8a\xcc\x49\x87\x20\x59\x3a\xd4\xc5\x2e\xc3\x0e\xac\x4d\xdb\x42\x14\xc9\x90\x98\xa5\xde\x9a\xef\x3e\xc8\x72\xdc\xfc\x05\xa6\x43\x62\x89\x26\xdf\xe3\xe3\x93\xc5\xba\xd6\x86\x21\x31\x4d\xcd\x3a\xe8\x76\x8f\x52\x6f\x53\xc6\x95\x50\x65\xa2\xa5\xa4\x8c\x85\x56\x50\x18\xbd\x86\xfb\xb7\xf4\x65\x3c\x9f\x2d\xbf\x24\x4f\x8b\xc5\x34\x79\x99\x3d\x2d\xc7\x93\xc9\xf3\x34\x4d\x83\xe0\xee\xee\x0e\x12\x43\xc8\x64\x01\x61\x8d\x59\x25\x14\x01\x66\x99\xde\x28\x86\x42\x1b\x40\x50\x3a\x27\xe0\x0a\x19\x84\x05\x94\x86\x30\x6f\x40\x28\xe0\x8a\xc0\x7a\x48\xc8\x7a\xcc\xb6\x24\xaa\x1c\x30\xcf\x2d\xd4\x9b\x57\x29\x32\x58\x51\x63\x81\x75\x9b\xa2\x68\xbb\x07\x08\x02\x36\xa8\x2c\xb6\x89\xa1\xc3\x99\x4d\x62\x48\xd9\x08\x55\x0e\xbb\xdc\x39\x35\x36\x86\x1f\xbe\xdb\x68\x4e\xcd\x42\x58\x9e\x2a\x36\xcd\xcf\x01\xfc\x09\x00\x00\xda\x1f\x49\xbc\x67\xf3\x21\xc0\x33\x15\x31\xdc\x5e\xd4\x26\x3a\x3b\x09\xda\x3a\xb5\xa1\x1a\x0d\x85\x1d\xc5\x18\x70\xc3\x55\xf8\x59\x1b\xa3\xb7\xdf\x51\x6e\x68\x00\xb7\x63\x1f\xdb\xe3\xbb\x65\x49\x16\xd1\x25\x7c\x18\xed\xbb\x8d\x2c\x6b\x83\x25\x45\xaf\x6d\xb1\xff\xff\x95\xd7\xa7\xd0\x8d\x31\xbe\x3c\xe2\xf3\xd7\x53\x8f\xf2\x0d\xb9\x1a\xf4\xf4\xdc\x7a\x78\x80\x1a\x95\xc8\xc2\x9b\x44\x6f\x64\x0e\x4a\x33\x78\x2a\x60\xa8\x70\xe3\x39\xab\x75\x33\x08\xfa\x12\xa2\x68\x35\xee\x3c\xd2\x49\x00\xa3\xeb\x9d\x47\x59\x6b\xac\xaf\x47\x09\x8f\xda\x4c\xdf\x84\x65\xa1\xca\xa5\xce\xa9\x1f\xba\xff\x1f\x42\x8d\x0d\x99\x78\x2f\xd9\xa1\xc2\x1d\x87\x0f\x57\xc0\x68\x04\x4a\x48\x78\x7f\x3f\x38\xfc\x2f\x92\xa4\x4a\xae\x5c\xf0\xfe\x24\xbb\x1d\x6f\xa7\x00\x2a\xd7\x7e\x6d\xf4\x2f\x91\x13\xfc\x26\xa3\xbd\x49\x9d\xe5\x9d\x4b\x4f\xae\xc2\xcd\xb1\x94\xbb\xa3\x9d\xcb\x59\x51\x7b\x27\x0e\xd8\x9d\x63\x1f\x4b\x17\x39\xbc\x08\xf3\x3c\xec\x93\x62\x57\x26\xea\xb7\x43\xa8\xd0\x56\x63\x59\x6a\x23\xb8\x5a\xfb\xe8\xd1\xd1\x10\xb6\x24\xca\x8a\x7d\xc8\x3f\x5f\x63\xba\x03\x92\x96\x4e\x68\x9d\x19\xc2\xcf\xec\xca\xb7\xa0\xbd\xbe\x3a\xa7\x03\x35\x7c\xfd\x5d\xb0\x0b\xfe\x06\x00\x00\xff\xff\x61\xe8\xc0\x7e\x97\x04\x00\x00" func stakingcollectionCreate_machine_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -5090,11 +5090,11 @@ func stakingcollectionCreate_machine_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/create_machine_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0xa9, 0xbc, 0xef, 0x3, 0x1e, 0x98, 0xd6, 0x4d, 0xb8, 0xc3, 0xa3, 0x9c, 0x38, 0x31, 0xcb, 0x72, 0x80, 0xa, 0x1, 0xee, 0xd9, 0x6, 0xe8, 0xc7, 0xe8, 0x77, 0x86, 0xd5, 0xd5, 0xae, 0x7f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7f, 0xd9, 0xb4, 0x5, 0x4f, 0xc4, 0xba, 0x4d, 0xdb, 0x96, 0x7e, 0xae, 0x7c, 0x9a, 0x13, 0xf9, 0x4, 0xb3, 0x56, 0xa6, 0xdb, 0xc9, 0xf3, 0x73, 0xe1, 0xf7, 0x79, 0x41, 0x9, 0x52, 0xa0, 0xdb}} return a, nil } -var _stakingcollectionCreate_new_tokenholder_acctCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\xdf\x6f\x22\x37\x10\x7e\xe7\xaf\x98\xde\x43\x05\x12\x81\x3e\xa3\xe4\x24\x44\xe8\x35\x82\x5e\xa2\x42\xfb\x52\xf5\xc1\x59\x0f\xac\x8b\xb1\x57\xf6\x40\x0e\x45\xf9\xdf\x2b\xff\xd8\x5d\x1b\x16\x5d\x22\x55\x3a\x5e\x12\xaf\x67\xbe\xf9\xbe\xf9\xb5\x2b\xf6\x95\x36\x04\x33\x73\xaa\x48\xf7\xe2\xe9\x57\xa9\x5f\xd6\x7a\x87\x0a\x36\x46\xef\xe1\x53\x73\xfe\x54\x5b\x2c\x75\xb1\x43\xee\x9f\xd9\x60\xf4\xcb\xb7\xe5\xe3\x6c\x31\xbf\x5f\x3f\x2e\xe6\x5f\xa7\xf7\xf7\x7f\xcc\x57\xab\x14\x6f\x45\x6c\x27\xd4\x76\xa6\xa5\xc4\x82\x84\x56\xb5\xdb\x6a\x3d\x5d\x3c\x7c\xfd\x32\x7b\x5c\x2e\xe7\xb3\xf5\xc3\x63\xe3\xdc\x1b\x8f\x61\x5d\x0a\x0b\x64\x98\xb2\x2c\x38\x31\x29\xf5\x8b\x05\x2a\x11\x0a\xad\xc8\x38\x38\x03\x7a\xe3\x9f\x48\xcf\x0a\x58\x51\xe8\x83\x22\xe7\x4f\x1a\x0a\x83\x8c\x10\x18\x28\x7c\xc9\x78\x8f\xfc\x9f\xdf\xb4\xe4\x0e\xe1\xf9\x5f\x2c\x08\x98\xe2\x60\x49\x1b\x04\x41\x20\x54\xf4\x4a\x00\x99\xb4\x1a\x18\xe7\x42\x6d\x81\x81\x0d\xa2\xa0\x68\x55\x45\x20\xd2\x9e\x51\xea\xed\xdc\x17\x88\x95\xc3\xdd\x0b\xc5\x81\x4a\x46\x40\x4e\x21\xd7\x68\x41\x69\x17\xf2\xc8\xa4\xe0\x8e\xb0\x73\xc7\x6f\xc2\x92\x0b\x90\x52\x4d\xd8\xac\x75\xee\xc1\xa8\xbe\x1d\xc2\x49\x1f\x40\x21\x72\x47\x05\x05\x95\x68\x80\xa3\xc4\x88\x9c\x02\x1a\xb4\xfa\x60\x0a\x74\x88\xda\x1d\x8f\x7a\x87\x2e\xd3\xb0\xc3\x53\x2c\x6f\x8a\xdd\xeb\x25\x15\xe9\x57\x87\x67\x29\x8a\x05\x9e\xec\x04\xfe\x0e\x7d\x34\x5a\xe0\x69\x29\x2c\xcd\x15\x99\xd3\x3f\x03\x78\xed\x01\x00\x54\x06\x2b\x66\xb0\x6f\xc5\x56\xa1\x99\xc0\xf4\x40\xe5\x34\x20\x3a\x13\x6f\xe3\x7e\xe3\x31\xcc\x42\xcd\xce\x32\xe8\xab\xc3\x38\x87\x10\xd2\xb3\x6b\xbc\x24\x92\xb3\x8d\x80\x70\x97\xc2\xf7\x2b\x76\x72\x11\x43\xe4\x41\xe3\xb3\xd1\xc6\x81\xb8\x82\xb4\x2a\x22\xdb\xfa\xd7\x62\x8e\x5c\xbc\x11\xe3\xbc\x95\x3c\x71\xee\xa3\xe6\x38\x84\x92\xd9\x72\x2a\xb7\xda\x08\x2a\xf7\xe1\x36\x7b\x34\x84\x17\x14\xdb\x92\xc2\x55\xf8\xbf\xe5\xf3\x96\x25\xe1\x0b\x52\x5b\xaa\xdf\x99\x62\x5b\x34\x30\x63\x15\x7b\x16\x52\xd0\xa9\xae\xcb\x45\xdb\xa7\x19\xa1\xc4\x37\x71\xbd\x8b\xa9\xc8\x94\x8e\xb6\x48\xad\xcd\xed\xcf\xd9\xac\x24\x87\x08\xf7\xb9\x9f\x79\x7f\xc7\xfa\xc9\x88\x23\x23\x7c\x62\x54\x0e\x32\x95\x7f\xda\x50\xe7\x7d\x14\x58\xb4\x2c\xcf\x87\x37\xe9\xd9\x4b\x91\xb1\x97\x6f\x6f\x72\x26\x01\x20\xf1\xcc\x59\x87\xd4\x4d\x39\x37\x68\x6d\xdd\x20\xae\xc6\xee\x3c\xcc\x4c\xd3\x54\x4e\xae\x24\xb6\x71\xc8\x35\xae\xd8\xf1\xfa\xd4\x75\xac\x0a\xdf\xe8\x8d\xf4\xd8\xed\xc5\x65\x94\xa4\x37\x2d\x3b\x62\x2e\xed\xf6\x26\xc9\xcb\xb9\x94\xc9\xd5\x4d\xb8\x22\x6d\xd8\xd6\x17\x6a\xd8\x25\x27\x89\x29\x85\xda\x9d\xb5\x49\x02\xf4\xda\xd1\x11\xd1\xf3\x41\x6d\xf4\xdb\xf7\xfb\x27\xb1\x7e\xf2\x39\xc8\x49\x79\x25\xcc\x6c\x91\xde\xa5\x26\x15\xd3\xb1\x6b\xaa\xd0\xa0\x6d\x9a\x05\x5a\xbf\x20\x5c\x6d\x7c\x26\xa1\x8c\xfb\x57\x71\x38\xa8\x38\x74\x47\x76\x90\xf9\xc8\x85\x8b\x58\xe4\xbb\xf7\xe7\xeb\x73\x7f\x1c\x39\x8c\x37\xf5\xfb\x36\x16\xef\x23\x32\x07\x3f\x65\x6c\x1a\xa8\x2e\x2a\xcd\x7b\x7d\xf4\x97\x93\xd1\xc5\xc0\x5f\xb4\x04\xc6\x36\x44\x3a\x33\x48\x82\x76\xa4\x36\x4c\x6f\xfc\x00\x80\xe4\x0b\xc0\x65\xb2\x3a\x50\x7c\xd7\x46\xe8\x06\x40\x6c\xb2\x5c\x8e\x8a\x12\x8b\x5d\x7f\x70\x7d\x3f\xfb\x19\xb8\xbd\xe9\xfc\xda\x88\x8b\xe0\xe2\x79\xbf\xae\xa4\xd7\x31\x69\xf3\x35\x4c\xd7\xca\x24\x63\x32\x18\xfa\x09\xea\x8e\x73\xf1\x24\xad\x4d\xbb\xe9\x01\xa5\xc5\x1f\x23\x45\x09\xf9\x7f\x28\xe8\x1a\xa2\x66\x59\xb9\xfe\xaa\x17\xdb\xe5\x47\xd2\xf5\x65\xf2\x4e\x46\xaf\xef\xb4\x0b\x6b\xe3\x7c\xd5\x7c\xc8\xf9\xfa\xce\xf9\x78\xf6\x92\x15\x14\x52\xf8\xf6\x5f\x00\x00\x00\xff\xff\xd8\x77\x7b\x1b\x7f\x0b\x00\x00" +var _stakingcollectionCreate_new_tokenholder_acctCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x56\x4d\x6f\xe3\x36\x10\xbd\xe7\x57\xcc\xee\x61\x61\x03\x5e\xb9\x67\x23\x09\xe0\x3a\xee\x36\xb0\xbb\x09\x6a\x77\x2f\x45\x0f\x8c\x34\xb6\x58\xcb\xa4\x40\x8e\xec\x35\x82\xfc\xf7\x82\x1f\x92\x48\x59\x46\x1d\x2c\x50\xa0\xbe\x24\xfc\x98\xc7\xf7\xde\x0c\x47\xe4\xfb\x52\x2a\x82\x99\x3a\x95\x24\x6f\xfc\xe8\x97\x42\x1e\xd7\x72\x87\x02\x36\x4a\xee\xe1\x63\x33\xfe\x58\xef\x58\xca\x74\x87\x99\x9d\xd3\x6e\xd3\x4f\xdf\x97\x4f\xb3\xc5\xfc\x61\xfd\xb4\x98\x7f\x9d\x3e\x3c\xfc\x3e\x5f\xad\x42\xbc\x15\xb1\x1d\x17\xdb\x99\x2c\x0a\x4c\x89\x4b\x51\x87\xad\xd6\xd3\xc5\xe3\xd7\x2f\xb3\xa7\xe5\x72\x3e\x5b\x3f\x3e\x35\xc1\x37\xe3\x31\xac\x73\xae\x81\x14\x13\x9a\xb9\x20\x56\x14\xf2\xa8\x81\x72\x84\x54\x0a\x52\x06\x4e\x81\xdc\xd8\x99\xc2\xb2\x02\x96\xa6\xb2\x12\x64\xe2\x49\x42\xaa\x90\x11\x02\x03\x81\xc7\x88\x77\x62\xff\xfc\x2a\x8b\xcc\x20\xbc\xfc\x8d\x29\x01\x13\x19\x68\x92\x0a\x81\x13\x70\xe1\xa3\x02\x40\x56\x68\x09\x2c\xcb\xb8\xd8\x02\x03\xed\x44\x41\xda\xaa\xf2\x40\x24\x2d\xa3\x30\xda\x84\x2f\x10\x4b\x83\xbb\xe7\x22\x03\xca\x19\x01\x19\x85\x99\x44\x0d\x42\x9a\x23\x0f\xac\xe0\x99\x21\x6c\xc2\xf1\x3b\xd7\x64\x0e\x08\xa9\x06\x6c\xd6\x32\x8e\x60\x54\xaf\x8e\xe0\x24\x2b\x10\x88\x99\xa1\x82\x9c\x72\x54\x90\x61\x81\x1e\x39\x04\x54\xa8\x65\xa5\x52\x34\x88\xd2\x0c\x0f\x72\x87\xc6\x69\xd8\xe1\xc9\xa7\x37\xc4\xbe\xb9\x09\x32\x32\x28\xab\x97\x82\xa7\x0b\x3c\xe9\x09\xfc\xe9\xea\x28\x59\xe0\x69\xc9\x35\xcd\x05\xa9\xd3\x5f\x43\x78\xbd\x01\x00\x28\x15\x96\x4c\xe1\x40\xf3\xad\x40\x35\x01\x56\x51\x3e\xf8\x59\x2a\x25\x8f\xdf\x58\x51\xe1\x10\x3e\x4d\xdd\x01\x26\xc2\x86\x98\xdf\x78\x0c\x33\x97\xc2\x8e\xa1\x36\x59\x2c\xcb\xc0\x31\xb0\x64\x93\x26\xac\x40\x32\x9b\x3d\x22\xdc\x81\xff\x6f\x50\xb2\x93\x39\xdd\xb1\x18\x36\xfb\x37\x52\x19\x04\x93\x9c\x56\x91\x67\x5e\xff\x5a\xbc\xc4\x1e\xc6\xb2\xac\x95\x3f\x31\xe1\x49\x33\x1c\x41\xce\x74\x3e\x2d\xb6\x52\x71\xca\xf7\x6e\x35\x9a\x1a\xc1\x11\xf9\x36\x27\xb7\xe4\xfe\x6f\xf9\xbc\x45\x0e\x7c\x41\x6a\xd3\xf6\x1b\x13\x6c\x8b\x0a\x66\xac\x64\x2f\xbc\xe0\x74\xaa\x73\xd4\xbd\x02\xb1\x1d\x14\x04\x07\xb1\x77\xde\x8b\x24\xad\xe7\x38\xea\x64\x8b\x74\xfb\x29\xba\x2e\xc1\xc0\x83\xdc\x0f\x22\x7b\xfe\x65\xf7\xb3\xe2\x07\x46\xf8\xcc\x28\x6f\xc2\x86\x1f\x22\x99\x7f\x68\x97\xe5\xbd\x57\x98\xb6\x2c\xbb\x37\x39\x28\xe0\x1e\x95\xbe\xb2\x6f\x3f\xc7\xa4\x1c\x42\x10\x1a\x0b\x70\xe6\x4d\xb3\x4c\xa1\xd6\x75\x89\x98\x2c\x9b\xf1\x28\xda\x1a\x7a\x39\xb9\xe0\x6c\xab\x32\x12\xb9\x62\x87\xcb\x77\xb0\xa7\x71\xd8\x3a\x6f\xb4\xfb\x62\x6f\x9d\x69\xd5\x07\xe5\x69\x7a\x18\xdb\x62\xa2\xd9\x01\x63\x8d\xb7\x9f\x03\x83\xba\x9a\x26\x17\x1b\xe4\xca\x01\x9a\xe4\x8d\xfa\x74\x75\x9c\x9f\xb1\x12\xee\x42\x42\x51\x6d\xd5\xec\xb8\xd6\x15\x76\xaa\x2c\x38\xf3\xb5\xa7\xa0\x3c\xde\xa3\xd8\xc8\xb7\xfb\xc1\x15\x6c\x87\x7d\xf6\x44\x6c\xac\xa3\x3a\x1f\x9c\xe7\xb7\xd1\x12\x2d\x31\x9a\xf4\x95\x7a\xc0\xec\xd9\xe6\xe8\xcc\xab\x9e\x96\x16\x12\xb1\x2d\xc8\xe4\xde\x9e\x0d\xb9\xef\xf6\x22\x83\x4a\xf8\x6b\x7d\x60\x55\xd1\xb9\xd4\x6e\xc5\x57\xd1\x0f\x5b\x7e\x9d\xa5\x1f\x22\x06\x9b\xe6\xb5\x70\xf5\xf1\xcd\x83\x22\xf9\x66\x14\xdd\x0f\xc6\x7e\xc3\xb8\x01\xb3\x0b\xc1\x49\x3d\xe6\xb9\x46\xe0\x1f\x16\x10\xbc\x2c\x8c\x67\x65\x45\xfe\x1b\x5e\x9f\xdd\x20\xf0\x4d\xe4\x5a\x92\xe6\x98\xee\x06\xc3\xcb\xcd\xfe\xf2\x6d\x72\x37\xaa\xff\x81\xe3\xbb\xcd\xd9\xfc\x39\x82\xf9\xd5\x39\xb6\xba\x27\xad\xa9\xa3\xde\xdd\x41\x79\x4e\x22\x31\x67\xbb\x87\xe7\x00\xe6\x9e\xf7\x33\x3e\x9b\x09\xb2\x1e\xc1\x04\xdf\x29\xc0\x42\xe3\xff\xd6\x3b\xc1\x8b\xff\xde\xb2\xa8\x13\x3c\xbb\xf6\x03\xac\xf3\xb5\xb3\x4f\x5c\xeb\x42\xd6\xf3\xce\x8c\x9b\x80\xee\x92\x78\x57\xff\xbd\x52\xd8\xeb\x95\xfb\x5c\xf7\x7b\xeb\x3c\x0e\x88\xa9\x2d\xd2\x0f\xb9\x18\x7c\x6e\xde\xd5\xcb\xfb\xdc\x39\xeb\xe8\xef\x12\xd7\xa1\xe5\x92\xfa\xf6\x4f\x00\x00\x00\xff\xff\xdc\x53\x80\xb2\x4c\x0d\x00\x00" func stakingcollectionCreate_new_tokenholder_acctCdcBytes() ([]byte, error) { return bindataRead( @@ -5110,11 +5110,11 @@ func stakingcollectionCreate_new_tokenholder_acctCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/create_new_tokenholder_acct.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0x5d, 0x78, 0x54, 0x9e, 0xa6, 0x98, 0x89, 0xca, 0x2a, 0xa0, 0x9a, 0xef, 0x95, 0x0, 0x7a, 0x23, 0x19, 0x27, 0x22, 0xd4, 0xba, 0x1f, 0x5b, 0xf5, 0xf, 0x2, 0x7, 0xc6, 0x61, 0x83, 0xaa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0x91, 0x11, 0x6d, 0x6c, 0xa4, 0x94, 0x79, 0x1a, 0x2, 0xfb, 0x50, 0xc9, 0x2d, 0xe3, 0xe4, 0x16, 0x82, 0x88, 0xaa, 0xd5, 0x4e, 0x0, 0xfe, 0x8e, 0x6d, 0x38, 0x35, 0x51, 0x35, 0x7c, 0xe6}} return a, nil } -var _stakingcollectionDeploy_collection_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8d\xb1\x6a\xc4\x40\x0c\x44\xfb\xfd\x8a\x29\x6d\x08\x76\x7f\xdd\x41\x8a\x54\x69\x42\x3e\x40\x68\xc5\x9d\xb1\x2d\x99\x5d\x1d\x24\x84\xfb\xf7\xb0\x0a\x6b\xb2\x85\x16\x8d\x66\xe6\xcd\x33\x5e\xe5\xd8\xec\xbb\x82\xc0\xa6\x5e\x88\x1d\x6e\x20\x05\x31\xdb\x43\x3d\xcd\x33\x3e\xab\xe4\xa6\xe6\xf0\xc2\xef\x82\xea\xb4\x2e\x7a\x03\xdb\xb6\x09\xfb\x62\xda\x0c\x71\xa1\x5d\x7a\x18\x54\x43\xdb\x8c\xd7\xa8\x58\x45\xeb\x09\x4a\xc9\x0b\x69\xa5\x88\x0f\x5d\x7d\xa7\x5d\x2e\xf8\xf0\xb2\xe8\xed\x05\x6c\xf9\xdc\x46\xfc\x24\x00\x88\x71\x14\x39\xa8\xc8\x40\x79\x5f\xf4\x82\xeb\xc3\xef\xd7\x3f\x68\xb7\xb5\x17\xd7\xa9\x57\xd7\x89\x72\x1e\x34\x00\xff\x71\x1d\xd3\xe6\x94\xa5\x7d\x6f\xf2\x35\x8c\x63\xf4\x3c\xd3\x33\xfd\x06\x00\x00\xff\xff\xa7\x5f\x56\xfd\x29\x01\x00\x00" +var _stakingcollectionDeploy_collection_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8e\xb1\x6a\xc4\x30\x10\x44\x7b\x7d\xc5\x54\x41\x86\x60\xf7\xd7\x1d\x49\x91\x2a\x4d\xc8\x07\x2c\xda\xe5\xce\xd8\x5e\x19\x69\x0f\x12\xc2\xfd\x7b\xd0\x26\x32\xa7\x62\x85\x46\x33\xf3\x76\x9a\xf0\x2a\xfb\x9a\xbf\x2b\x08\x29\xab\x15\x4a\x06\xcb\x20\x05\xa5\x94\x6f\x6a\x61\x9a\xf0\x59\x85\x9b\xca\xee\x85\x5d\x05\xd5\x68\x99\xf5\x82\x94\xd7\x55\x92\xcd\x59\x9b\xc1\x7f\x68\x93\x1e\x06\x55\xd7\xd6\x9c\x16\xaf\x58\x44\xeb\x01\x0a\xc1\x0a\x69\x25\x8f\xc7\xae\xbe\xd3\x26\x27\x7c\x58\x99\xf5\xf2\x8c\x94\xf9\x78\x0d\xf8\x09\x00\xe0\x63\x2f\xb2\x53\x91\x48\xbc\xcd\x7a\x02\xdd\xec\x1a\xcf\xcc\x2f\xff\x2d\x03\x9e\xce\x7f\x3b\xf4\x54\x3b\x6e\x1e\x3b\xa9\x8e\xc4\x1c\xd5\x79\x8f\xf4\x4e\x6d\x73\x64\x69\xd7\x9b\x7c\xc5\x61\xf0\x9e\x7b\xb8\x87\xdf\x00\x00\x00\xff\xff\x97\xdc\x67\x42\x38\x01\x00\x00" func stakingcollectionDeploy_collection_contractCdcBytes() ([]byte, error) { return bindataRead( @@ -5130,11 +5130,11 @@ func stakingcollectionDeploy_collection_contractCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/deploy_collection_contract.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbd, 0x3e, 0xf2, 0xcf, 0xfd, 0x65, 0x3, 0xfc, 0xc1, 0x73, 0xff, 0x84, 0x1f, 0xad, 0xc6, 0xe3, 0x57, 0x8d, 0x57, 0x22, 0x89, 0xc2, 0x14, 0x62, 0x4d, 0x1f, 0x9d, 0xae, 0xb6, 0x6b, 0xe4, 0x55}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0x65, 0xef, 0x78, 0xd5, 0x3e, 0x89, 0x71, 0xda, 0x8b, 0xc, 0x78, 0x34, 0x3c, 0x6e, 0xb9, 0x9, 0xa0, 0x2b, 0x75, 0x35, 0xbf, 0x9f, 0x65, 0xdd, 0xa, 0x3e, 0x8b, 0x30, 0xd, 0x4b, 0x10}} return a, nil } -var _stakingcollectionRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\x82\x40\x10\xbd\xf3\x15\x13\x0f\x0d\x26\x0d\xf6\xd0\xf4\x40\xda\x1a\x02\xda\x98\x1a\x6d\xc4\x7e\xc0\x76\x19\x70\x23\xec\x90\x61\x88\x26\x8d\xff\xde\xc0\x62\x3d\xe8\xc1\x3d\x40\x60\x67\xde\x7b\xf3\xde\x98\xaa\x26\x16\x98\x97\x74\x48\x45\xed\x8d\x2d\x62\x2a\x4b\xd4\x62\xc8\x42\xce\x54\xc1\xd3\x31\xdd\x46\x9f\x8b\xd5\x47\xbc\x5e\x2e\x67\xf1\x76\xb1\x5e\x45\x49\xb2\x99\xa5\xa9\xe7\x4d\x26\x13\xd8\x60\x61\x1a\x41\x6e\x40\x41\x86\x25\x16\x4a\x88\xc1\x58\x90\x1d\x42\xe3\x30\x41\x5f\x40\x19\x1b\x6a\x59\x63\xdf\x9c\x13\xbb\xba\x1a\xb5\xc9\x0d\x66\x60\x29\xc3\x45\x02\xca\x66\xfd\x85\xaa\xa8\xb5\x02\x94\x83\xd0\x1e\x6d\x03\x42\xa0\xa9\xaa\x8c\x78\x9e\xb0\xb2\x8d\xea\x51\x7d\x93\x85\x90\x0a\x1b\x5b\x3c\x0e\x3d\x21\x7c\xcf\xcd\xf1\xe5\x79\x0c\xbf\x1e\x00\x40\xff\x28\x51\xce\x9a\x2e\x73\x6e\x30\x0f\xe1\xe1\xa6\x05\xc1\xd5\x1f\xaf\xc7\xa9\x19\x6b\xc5\xe8\x2b\xad\x1d\x57\xd4\xca\x2e\x72\x1f\x67\xc2\xee\x34\x58\xe6\xc1\x2d\x42\x78\x83\xa1\x37\xf8\x21\x66\x3a\xbc\xde\x2b\xe0\xdd\xef\x62\x09\x6f\x47\x76\x5d\x9e\x0a\xb1\x2a\xf0\x4b\xc9\x6e\xfc\x2f\xab\x3b\xd3\x29\xd4\xca\x1a\xed\x8f\x62\x6a\xcb\xce\x78\x01\x27\x05\x18\x3b\xbb\xe1\x0a\x6b\xe4\x10\x4e\xce\x03\x3c\xa2\x6e\x05\xef\x99\x36\xe0\x61\x49\x92\xf3\x82\xf8\x2e\xe7\x10\x4c\x76\x09\xcc\xbd\xc7\x0e\x6c\xa0\x3a\x79\x7f\x01\x00\x00\xff\xff\xdd\x5f\xdf\x77\xa3\x02\x00\x00" +var _stakingcollectionRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x8f\x1c\x82\x0c\x45\xee\xa1\xf4\x20\xda\x06\xd7\x4e\x8a\x69\x48\x8a\x95\xf6\xbe\x5d\x8d\xe4\x25\xab\x1d\x31\x3b\x22\x86\x92\xef\x5e\xa4\x95\xe3\x83\x7d\xc8\x1e\x24\xd8\x3f\xbf\xf7\x66\xde\xb8\xae\x67\x51\xdc\x79\x7e\xa9\xd4\x3c\xbb\xd0\xae\xd9\x7b\xb2\xea\x38\xa0\x11\xee\xf0\xf1\x50\x3d\xad\x7e\x6e\x1f\x7e\xac\x1f\xef\xef\x6f\xd7\x4f\xdb\xc7\x87\xd5\x66\xb3\xbb\xad\xaa\x2c\x5b\x2e\x97\xd8\x51\xeb\xa2\x92\x44\x18\xd4\xe4\xa9\x35\xca\x02\x17\xa0\x7b\x42\x4c\x4c\xd8\x13\x54\x28\xf2\x20\x96\xa6\xc7\x0d\x4b\xba\xd7\x93\x75\x8d\xa3\x1a\x81\x6b\xda\x6e\x60\x42\x3d\x1d\x98\x8e\x87\xa0\xe0\x06\xca\xcf\x14\x22\x94\x61\xb9\xeb\x9c\x66\x99\x8a\x09\xd1\x4c\xd4\xdc\xd5\x25\x2a\x15\x17\xda\x0f\xf3\x9b\x12\xbf\xef\xdc\xe1\xf3\xa7\x05\xfe\x65\x00\x30\x7d\x3c\xe9\xd1\xd3\xa9\xce\x1d\x35\x25\xae\x2f\xb6\xa0\x38\xdb\xc9\x26\x4e\x2f\xd4\x1b\xa1\xdc\x58\x9b\xb4\xcc\xa0\xfb\xfc\x3b\x8b\xf0\xcb\x1f\xe3\x07\x5a\xe0\x7a\x95\xce\x8e\xfa\xe3\x8a\xe4\x9b\xe2\x92\x3e\xbe\x62\x46\x15\x51\x59\x4c\x4b\xc5\xdf\x09\xf6\xe5\xbd\xbe\xbe\xe5\x63\x5a\xe5\xe5\x24\xcf\xaf\x57\x49\xe5\x97\xd1\xfd\xe2\xcd\xde\xb8\x6e\x6e\xd0\x9b\xe0\x6c\x7e\xb5\xe6\xc1\x8f\x79\x28\x92\x15\x08\x8d\x29\xe0\x8c\x75\x95\x08\xaf\xa9\x35\x74\x20\x3b\x28\xbd\xa7\xea\x42\xe6\xd9\xd9\x1c\xe7\x26\x4f\xf1\x97\x70\xf5\x29\xc7\xf4\x5f\x24\xd8\x2c\xf5\x9a\xfd\x0f\x00\x00\xff\xff\xe2\xb1\x2b\x1a\xba\x02\x00\x00" func stakingcollectionRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -5150,11 +5150,11 @@ func stakingcollectionRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x61, 0x18, 0x59, 0x73, 0x8c, 0xe4, 0x18, 0x5c, 0xc3, 0x6a, 0x63, 0xba, 0xf1, 0x3a, 0x2f, 0x4c, 0x28, 0x93, 0x6e, 0x5a, 0x61, 0x2f, 0xfc, 0x43, 0xe1, 0x29, 0x1a, 0xec, 0xc8, 0xdf, 0x45, 0x55}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x78, 0x67, 0x8f, 0xee, 0xe4, 0xff, 0xfd, 0x78, 0x8b, 0x6e, 0xc4, 0xc0, 0xe3, 0x6a, 0x47, 0xfa, 0xac, 0xd6, 0x2c, 0x8f, 0x10, 0xf8, 0x9a, 0x26, 0x48, 0x80, 0x76, 0x27, 0xcc, 0x4e, 0x77}} return a, nil } -var _stakingcollectionRegister_multiple_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x6b\xdb\x4e\x10\xc5\xef\xfa\x14\x8f\x1c\xfe\xc8\xfc\x8b\x9d\x42\xe9\x41\x34\x0d\xc6\x4e\x8a\x69\x48\x8a\x95\x9e\x82\x0f\x5b\x69\x24\x0f\x59\xed\x88\xdd\x51\x63\x28\xfe\xee\x65\x25\xcb\x49\xb1\x29\xdd\x83\x40\xc3\xec\x6f\xde\xbe\x37\xdc\xb4\xe2\x15\xb7\x56\x5e\x72\x35\xcf\xec\xea\x85\x58\x4b\x85\xb2\x38\x54\x5e\x1a\x5c\xee\xf2\xc7\xf9\xd7\xd5\xfd\x97\xc5\xc3\xdd\xdd\xcd\xe2\x71\xf5\x70\x3f\x5f\x2e\xd7\x37\x79\x9e\x24\xb3\xd9\x0c\x6b\xaa\x39\x28\xf9\x80\xa6\xb3\xca\xad\x25\x94\x64\xa9\x36\x2a\x3e\x80\x1d\x74\x4b\x08\x03\x1b\xc5\x2b\xdc\x53\x90\xce\x17\xd4\x43\x2a\xf1\x43\x5f\x4b\x05\x57\x4c\x25\x9c\x94\xb4\x5a\x06\x18\x57\xc2\x34\xd2\x39\x85\x54\x50\x79\x26\x17\xa0\x82\x42\x9a\x86\x35\x49\xd4\x1b\x17\x4c\x8f\x4c\xb9\x0c\x19\x9e\x72\xf5\xec\xea\xcd\xbb\xc3\xb5\x58\xfa\x7e\xcb\xbb\x8f\x1f\x36\x13\xfc\x4a\x00\xa0\xff\x58\xd2\x51\xd6\xeb\x93\xd7\x54\x65\xf8\xef\xac\x1b\xd3\x93\x4a\xd2\x73\x5a\x4f\xad\xf1\x94\x9a\xa2\x88\xe3\x32\xcc\x3b\xdd\xce\x87\x9f\x71\x60\x3c\x81\x6c\x35\x3d\x37\x10\x57\x38\xdc\x9d\xfe\x10\xef\xe5\xe5\xd3\xbf\x0a\xf8\x9c\xc6\x84\xb2\xf3\xe9\x9d\xb6\xe7\x2a\xde\xd4\xf4\xcd\xe8\x76\x72\x94\x15\xcf\xf5\x35\x5a\xe3\xb8\x48\x2f\x16\xd2\xd9\xe8\xbd\x62\x90\x02\x4f\xd1\x74\x9c\xb0\x2e\x06\xc2\x7e\xf0\x80\x76\x54\x74\x4a\x6f\x5e\xfb\xd3\x78\x30\xae\x70\x79\xac\xc4\x88\xb9\x8c\x0b\xc1\x65\x78\xd3\xf9\x57\x6f\xa6\xfe\xb0\x5d\xcb\x71\xa5\xd2\x61\x31\x32\x70\x39\x26\x9c\x8d\x49\x3f\xf1\x66\xd2\xe7\xfb\x07\x3c\xca\x60\xfc\x8f\xf7\xc7\xea\xfe\xa0\x7d\x9f\xfc\x0e\x00\x00\xff\xff\x07\x6b\xf3\x42\xff\x02\x00\x00" +var _stakingcollectionRegister_multiple_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x8f\x1c\x82\x4c\x8b\x9c\x42\xe9\x41\x34\x0d\xae\x9d\x14\xd3\x90\x14\x2b\xed\x25\xf8\xb0\x5d\x8d\xe4\x21\xab\x5d\xb1\x3b\x6a\x0c\xc5\xff\xbd\xac\x64\x39\x29\x36\xa5\x7b\xd0\x61\x34\xfb\xcd\xdb\x79\x8f\x9b\xd6\x79\xc1\x8d\x71\xcf\x85\xa8\x27\xb6\xf5\xdc\x19\x43\x5a\xd8\x59\x54\xde\x35\xb8\xd8\x16\x0f\xb3\xaf\xcb\xbb\x2f\xf3\xfb\xdb\xdb\xeb\xf9\xc3\xf2\xfe\x6e\xb6\x58\xac\xae\x8b\x22\x49\xa6\xd3\x29\x56\x54\x73\x10\xf2\x01\x4d\x67\x84\x5b\x43\x28\xc9\x50\xad\xc4\xf9\x00\xb6\x90\x0d\x21\x0c\x6c\xe8\x17\xb8\xa7\xe0\x3a\xaf\xa9\x87\x54\xce\x0f\x7d\x2d\x69\xae\x98\x4a\x58\x57\xd2\x72\x11\xa0\x6c\x09\xd5\xb8\xce\x0a\x5c\x05\x71\x4f\x64\x03\xc4\x41\xbb\xa6\x61\x49\x12\xf1\xca\x06\xd5\x23\x53\x2e\x43\x8e\xc7\x42\x3c\xdb\x7a\xfd\x76\x7f\x2d\x96\xbe\xdf\xf0\xf6\xc3\xfb\xf5\x04\xbf\x13\x00\xe8\x3f\x86\x64\x94\xf5\xf2\xe4\x15\x55\x39\xce\x4f\x6e\x23\x3b\xaa\x24\x3d\xa7\xf5\xd4\x2a\x4f\xa9\xd2\x3a\x8e\xcb\xa1\x3a\xd9\xa4\x9f\x9d\xf7\xee\xf9\x87\x32\x1d\x4d\x70\x3e\x1b\xfe\x8d\xf3\xe3\x09\x64\xaa\xec\xd4\x7c\x5c\x62\x8f\xca\x82\x38\xaf\x6a\xca\x7e\xf6\xb0\x8f\xff\xab\xeb\x53\x1a\x8d\xcb\x4f\x9b\x7a\xdc\x5e\x0c\x53\xbe\x29\xd9\x4c\x0e\xf2\xe2\xb9\xba\x42\xab\x2c\xeb\xf4\x6c\xee\x3a\x13\x2d\x11\x0c\x52\xe0\x29\x7a\x81\x23\xd6\xd9\x40\xd8\x0d\xab\xa1\x2d\xe9\x4e\xe8\xd5\xab\x7f\x29\x0f\xc6\x25\x2e\x0e\x95\xe8\x3c\x97\x31\x27\x5c\x86\x57\x9d\xff\xdc\x51\xe6\xf7\xa1\x5b\x8c\x49\x4b\x87\xbc\xe4\xe0\x72\x34\x3e\x1f\x03\xf0\xc8\xeb\x49\x6f\xfb\x5f\xf0\x28\x83\xf1\x06\xef\x0e\xd5\xdd\x5e\xfb\x2e\xf9\x13\x00\x00\xff\xff\x82\xa4\x77\x0f\x16\x03\x00\x00" func stakingcollectionRegister_multiple_delegatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -5170,11 +5170,11 @@ func stakingcollectionRegister_multiple_delegatorsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_multiple_delegators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0x31, 0xb5, 0x31, 0x72, 0x2e, 0x40, 0x1a, 0xe0, 0xb2, 0x95, 0xdc, 0x95, 0xd2, 0xb2, 0xa6, 0xa4, 0x49, 0x7a, 0x4d, 0x6a, 0xfb, 0x84, 0x73, 0x52, 0x39, 0x78, 0xa8, 0xe1, 0x99, 0x65, 0x2e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x59, 0x43, 0x92, 0xa5, 0xd8, 0x4f, 0xb4, 0xea, 0xfb, 0xfd, 0x2b, 0x49, 0x93, 0xa0, 0x62, 0xd5, 0x1c, 0xac, 0xb, 0x33, 0x43, 0xe5, 0xff, 0x98, 0x51, 0xe1, 0xe6, 0x2e, 0x9e, 0xcd, 0x77, 0xf5}} return a, nil } -var _stakingcollectionRegister_multiple_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\x5d\x4f\xdb\x30\x14\x86\xef\xf3\x2b\xce\xb8\x98\x5a\xad\x0a\x4c\x9a\xa6\x29\x5a\x87\xaa\x02\x13\x2a\x82\x89\xb2\xab\xaa\x17\x26\x3e\x49\x8e\x70\xec\xe8\xd8\xa5\x64\xc0\x7f\x9f\x9c\xa4\x1f\x21\xe9\x58\x2e\xaa\xfa\x7c\xbc\x7e\x73\xfc\x38\x94\x17\x86\x1d\x4c\xb9\x2c\x9c\x09\x9a\xd5\x85\x32\xeb\xb9\x13\x0f\xa4\xd3\xa9\x51\x0a\x63\x47\x46\x43\xc2\x26\x87\x93\xa7\xf9\xdd\x64\x76\x79\xfd\x73\x7a\x73\x75\x75\x3e\xbd\xbb\xbc\xb9\x9e\x9c\x9d\xdd\x9e\xcf\xe7\x41\x70\x7c\x7c\x0c\xb7\x98\x92\x75\xc8\x16\xf2\x95\x72\x54\x28\x04\x6d\x24\x5a\x20\x0d\x2e\x43\xb0\xb5\x2c\xc4\x3b\x5d\x46\x6b\x56\x1c\x63\xd5\x9f\x18\xae\xeb\x0a\x8c\x29\x21\x94\x55\x3b\x90\x4e\x0c\xe7\xc2\xd7\x07\x81\x63\xa1\xad\xa8\x9a\x07\x24\x6d\x04\x8b\xb9\x63\xd2\xe9\x72\x14\xc0\xde\xc3\x46\xa1\x4f\xfe\xbe\xd4\xee\xdb\x9b\x9c\x46\xb7\x36\xec\x9d\x4c\xa4\x64\xb4\x16\x0f\xca\xec\x4a\x67\x58\x1e\xac\x6a\xde\xeb\x5f\x25\x22\x37\x2b\xed\x2a\x47\x17\xf4\xf4\xf5\xcb\x9b\x74\xb1\xba\x57\x14\x37\x02\x8b\xfa\x40\xc2\x19\x96\x57\x64\xdd\xb9\x76\x5c\x2e\x4f\x97\x43\x78\xae\x7a\xaa\x1f\x85\x6e\xb3\xed\xee\x94\x6e\x31\x89\xe0\x63\xef\x01\x86\x9d\x48\x50\xe9\x14\x8c\x85\x60\x1c\x88\x38\xf6\x06\x23\x98\xac\x5c\x36\xa9\x17\x9b\x0d\xab\x57\x44\x95\x84\x7d\x1b\xc2\x18\x9a\xde\xf0\xde\x30\x9b\xf5\xf7\xff\x35\xf0\x63\xe0\xa1\x8a\xfa\x81\xeb\x96\xcf\x9d\x61\x91\xe2\x2f\xe1\xb2\x61\x6b\x76\xa7\xa7\x50\x08\x4d\xf1\xe0\x68\x6a\x56\xca\x33\xe3\xa0\xb6\x02\x8c\x09\x38\x03\x1d\xad\xa3\x61\xb0\x95\x78\x14\x0c\x04\x63\x38\xd9\x85\x3c\x87\x24\x3d\xb5\x24\xed\xde\x10\xfc\x43\x49\x35\xfb\x5c\xc4\x19\x69\x6c\x26\x05\xe3\xc3\x03\x0a\xb9\xb9\x15\xd7\x46\xe2\xa0\xa5\x55\xe9\xc9\x08\x48\x8e\x3a\x71\x0f\x70\x54\x63\xbc\xa0\x65\x37\xdf\x81\x38\xea\xe3\xfa\x9d\xd6\x19\x96\xd1\x1b\xc6\x7b\x3b\x76\x80\x47\xfb\xb0\xf7\xd6\xd6\xa4\x47\x1b\xe2\x7b\x6b\x0a\x51\x22\x47\x1b\x70\x86\xd0\x2a\x78\xee\xce\x28\xd9\xbb\x20\x0b\x5a\xc2\x78\x0c\x9a\x14\xbc\xbc\xb4\xe3\x1f\x42\x85\x3a\x75\x99\xcf\x9f\xf4\xe8\xd4\x5b\xd7\xa8\x08\xed\x39\x29\xd8\x3c\x92\x44\xf8\x83\x6c\xe0\x01\x4b\xbb\xfd\x06\x35\x07\xbc\xf1\x78\x34\xec\xa8\xbd\x76\x22\xbe\xf7\x01\x4b\x0f\x4e\xdb\xd7\x01\x2f\x6d\x88\x42\xbf\x7f\x28\xa4\x1c\x6c\x9b\x23\x2f\x17\x6e\x97\x23\xc8\x84\xcd\x26\x2a\x35\x4c\x2e\xcb\xeb\x6c\x2b\x34\x82\x35\x52\x9a\xb9\x3a\x55\xff\x7f\xcf\x79\x7b\xe5\xaf\x02\xc1\x27\xf8\x1c\xb4\xf3\xaf\xc1\x6b\xf0\x37\x00\x00\xff\xff\x09\x34\xd7\xde\x30\x06\x00\x00" +var _stakingcollectionRegister_multiple_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x5d\x4f\xdb\x4a\x10\x7d\xf7\xaf\x98\xcb\x03\x72\x74\x23\xc3\x95\xae\xae\xae\xac\xa6\x28\x0d\x50\xa1\x20\xa8\x08\xed\x4b\x94\x87\xc5\x1e\xdb\x23\xd6\xbb\xd6\xec\x9a\xe0\x02\xff\xbd\x5a\xdb\xf9\x30\x76\x4a\xfd\x10\x65\x67\xce\x9c\x39\xde\x39\x63\xca\x0b\xcd\x16\x66\x5c\x15\x56\x7b\xed\xe9\x52\xea\xf5\xc2\x8a\x47\x52\xe9\x4c\x4b\x89\x91\x25\xad\x20\x61\x9d\xc3\xe9\xf3\xe2\x7e\x3a\xbf\xba\xf9\x3a\xbb\xbd\xbe\xbe\x98\xdd\x5f\xdd\xde\x4c\xcf\xcf\xef\x2e\x16\x0b\xcf\x3b\x39\x39\x81\x3b\x4c\xc9\x58\x64\x03\x79\x29\x2d\x15\x12\x41\xe9\x18\x0d\x90\x02\x9b\x21\x98\x86\x16\xa2\x1d\x2f\xa3\xd1\x25\x47\x58\xd7\x27\x9a\x1b\x5c\x81\x11\x25\x84\x71\x5d\x0e\xa4\x12\xcd\xb9\x70\x78\xcf\xb3\x2c\x94\x11\x75\xb1\x4f\xb1\x09\x61\xb9\xb0\x4c\x2a\x5d\x8d\x3d\xd8\x7b\x58\x4b\x74\xc9\xef\x57\xca\xfe\xff\x2e\xa7\xd0\xae\x35\x3b\x25\xd3\x38\x66\x34\x06\x0f\xd2\xec\xa0\x73\xac\x0e\xa2\xda\xf7\xfa\x1d\x44\xe4\xba\x54\xb6\x56\x74\x49\xcf\xff\xfd\xfb\x2e\x5d\x94\x0f\x92\xa2\x96\x60\xd9\x0c\x24\x98\x63\x75\x4d\xc6\x5e\x28\xcb\xd5\xea\x6c\x35\x82\x97\xba\xa6\xfe\x91\x68\x37\x6d\x77\x53\xba\xc3\x24\x84\xe3\xc1\x01\x06\xbd\x88\x57\xf3\x14\x8c\x85\x60\xf4\x45\x14\x39\x81\x21\x88\xd2\x66\xfe\x17\xcd\xac\xd7\x3f\x84\x2c\x71\x04\xc7\xd3\x26\xb7\xe9\x5f\xbf\x31\xca\x24\x18\xea\x0f\x13\x68\xa9\x02\x63\x35\x8b\x14\x83\x87\x9a\xec\xd3\x9f\xea\xfa\xec\x3b\xaf\x85\xc3\x3e\xec\xc3\x17\x4d\x97\x6f\xc2\x66\xa3\xce\x95\x9e\x9d\x41\x21\x14\x45\xfe\xd1\x4c\x97\xd2\x59\xc9\x42\x23\x05\x18\x13\xb0\x1a\x7a\x5c\x47\x23\x6f\x4b\xf1\x24\x18\x08\x26\x70\xba\x0b\x39\x7b\x52\xec\xcc\x4c\xb1\xd9\xbb\x0c\xf7\x50\x52\x8f\x24\x17\x51\x46\x0a\xdb\x1b\x83\xc9\xe1\x8b\x0a\xb8\x5d\x96\x1b\x1d\xa3\xdf\xe1\xaa\xf9\xe2\x10\x28\x1e\xf7\xe2\xce\xd7\x61\xe3\xee\x25\xad\xfa\xf9\x9e\xb7\xc3\x21\xbb\x7f\x50\x3a\xc7\x2a\x7c\x67\xfd\xc1\x8a\x9d\xef\xc3\xfd\x1d\x18\xc4\x36\x0b\x10\x6e\x16\x61\x10\x53\x88\x0a\x39\xdc\x18\x68\x04\x1d\xc0\x4b\xff\x8e\x92\xbd\xbd\x59\xd2\x0a\x26\x13\x50\x24\xe1\xf5\xb5\x1b\xff\x2b\x90\xa8\x52\x9b\xb9\xfc\xe9\x00\x4f\xd3\xba\xb1\x8a\x50\xce\x27\x05\xeb\x27\x8a\x11\x7e\x22\x6b\x78\xc4\xca\x6c\x3f\x4d\xed\x80\x37\x1a\x8f\x46\x3d\xb6\xb7\x5e\xc4\xd5\x3e\x62\xe5\x8c\xd3\xd5\x75\x40\x4b\xd7\x44\x81\xeb\x1f\x88\x38\xf6\xb7\xc5\xa1\xa3\x0b\xb6\xc7\x31\x64\xc2\x64\x53\x99\x6a\x26\x9b\xe5\x4d\xb6\x13\x1a\xc3\x1a\x29\xcd\x6c\x93\x6a\xfe\x7f\xa4\xbc\x7b\x72\xab\x40\xf0\x37\xfc\xe3\x75\xf3\x6f\xde\x9b\xf7\x2b\x00\x00\xff\xff\x63\xd0\x3c\xa9\x47\x06\x00\x00" func stakingcollectionRegister_multiple_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -5190,11 +5190,11 @@ func stakingcollectionRegister_multiple_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_multiple_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc1, 0x8b, 0xd4, 0xe0, 0x9f, 0x32, 0x52, 0xb9, 0xc9, 0x8, 0x23, 0x5, 0x79, 0x81, 0x7e, 0x42, 0xcd, 0x96, 0x39, 0x91, 0x58, 0x2c, 0xf3, 0x42, 0x51, 0x86, 0x4b, 0xb9, 0x33, 0xf4, 0xff, 0x3a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe0, 0x1b, 0x99, 0x14, 0xa2, 0xa, 0x48, 0x5a, 0x17, 0x20, 0x71, 0x7f, 0x8, 0x52, 0x45, 0xad, 0xc4, 0x69, 0x39, 0x73, 0x7b, 0x3b, 0xda, 0xf9, 0x2a, 0x2c, 0xef, 0xe3, 0x26, 0xed, 0x96, 0xc4}} return a, nil } -var _stakingcollectionRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x4f\xdb\x4e\x10\xbd\xfb\x53\xcc\x8f\xc3\x4f\x89\x84\x0c\x87\xaa\xaa\xac\xa6\x28\x0a\x50\xa1\x20\xa8\x08\x9c\xaa\x1e\x16\xef\xd8\x5e\x65\xbd\x63\x8d\x27\x0d\x2e\xe4\xbb\x57\xeb\xcd\x3f\x13\xa7\x6d\x0e\xce\xce\xce\xcc\x9b\x37\x7e\x4f\x36\x65\x45\x2c\x30\xe1\xa6\x12\x8a\xd6\xd1\xb5\xa5\xe5\x4c\xd4\xdc\xb8\x7c\x42\xd6\x62\x2a\x86\x1c\x64\x4c\x25\x9c\xbf\xcc\x1e\xc7\xd3\x9b\xbb\xaf\x93\xfb\xdb\xdb\xab\xc9\xe3\xcd\xfd\xdd\xf8\xf2\xf2\xe1\x6a\x36\x8b\xa2\xb3\xb3\x33\x78\xc0\xdc\xd4\x82\x5c\x83\x02\x8d\x16\x73\x25\xc4\x60\x1c\x48\x81\x50\x07\x4c\x48\x77\xa0\x8c\x35\x2d\x38\xc5\xb6\x39\x23\x0e\x75\x15\xa6\x26\x33\xa8\xc1\x91\x46\x30\x2e\x23\x2e\x55\x5b\xaf\x9c\x6e\x4b\x54\x49\x0b\x27\x40\x19\x08\xcd\xd1\xd5\x20\x04\x29\x95\xa5\x91\x28\x12\x56\xae\x56\x2d\xfe\xc0\xe8\x04\x66\xc2\xc6\xe5\xa7\x11\xec\xfd\x98\x2c\x26\xf0\x74\xe3\xe4\x53\x37\xe1\x50\x96\xc4\x9e\xe6\x58\x6b\xc6\xba\xee\xef\xdf\x95\x4d\xb1\xe9\x2f\x59\x6f\x7b\x34\x1f\x56\x48\xe0\xe9\xda\xbc\x7c\xfc\xd0\xcd\x55\x8b\x67\x6b\xd2\x29\x36\x75\x02\xdf\x83\x38\xf1\x14\x9b\x5b\x53\xcb\x95\x13\x6e\x7e\x5c\x0c\xe1\xb5\xed\x68\x1f\x16\x65\x33\x6e\x27\xd8\x03\x66\x09\xfc\xdf\xab\x65\x7c\x70\x13\xb5\x38\x15\x63\xa5\x18\x07\x2a\x4d\x03\xb7\xf1\x42\x8a\x71\x08\x36\x03\xdb\xd5\xd0\x66\x71\xdf\x40\x18\xc1\xba\x37\x7e\x26\x66\x5a\x7e\xfe\x57\x02\x5f\x06\xde\x5f\x49\xbf\xf7\x0e\xcb\x67\x42\xac\x72\xfc\xa6\xa4\x18\x76\xde\xdc\xc5\x05\x54\xca\x99\x74\x70\x32\xa1\x85\xf5\x0e\x12\x08\x54\x80\xd1\xbb\x05\x0e\xb0\x4e\x86\xd1\x16\xc2\x64\xed\xcb\x2c\x55\x5a\x18\x87\xeb\xd5\x61\x74\x7c\xe3\x98\xd7\x8e\xbf\x23\x8d\x83\x0e\x15\xef\x3d\xa3\xfb\x7c\xe7\x9f\x7f\xb5\xdd\xc1\xd5\x1f\x1d\xd8\x09\x8f\x1b\x71\x77\xee\x37\x63\xf8\x7f\x67\x46\xd5\x20\x27\x1b\x61\x87\xb0\x4d\xbe\x76\xd7\xcd\xf6\x6c\x0b\xa3\x11\x38\x63\xe1\xed\x6d\xef\xf2\xbf\xd8\xa2\xcb\xa5\xf0\xc9\xf3\x77\xdd\x61\x50\x10\x4e\x39\xaf\x5a\xc5\xf4\xd3\x68\x84\x5f\xc8\x04\x73\x8f\xb9\xf9\x3e\xac\xd5\xd9\x30\x3a\xe9\x3a\x60\xd5\x89\x7c\xcf\x1c\x1b\xff\x09\xda\x23\xd2\x33\xbc\x2b\x79\xec\x07\xc6\x4a\xeb\xc1\xb6\x2b\xf1\x38\xf1\x36\x3c\x85\x42\xd5\xc5\xd8\xe6\xc4\x46\x8a\x32\x64\x3b\x57\xa7\xb0\x44\x93\x17\x12\x52\xe1\x7c\x8c\x6a\x38\xad\xa2\x55\xf4\x3b\x00\x00\xff\xff\x67\xfb\x69\x9e\x92\x05\x00\x00" +var _stakingcollectionRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4d\x4f\xdb\x40\x10\xbd\xfb\x57\x4c\x39\x20\x47\x42\x86\x43\x55\x55\x56\x53\x94\x06\xa8\x50\x10\x54\x04\x7a\xa9\x7a\x58\xec\xb1\xbd\xca\x7a\xc7\x1a\x4f\x1a\x5c\xc8\x7f\xaf\xd6\x9b\x2f\x13\xa7\x6d\x0e\xce\xee\xce\xcc\x9b\x37\xfb\x9e\xad\xcb\x8a\x58\x60\xcc\x4d\x25\x14\xac\x76\x57\x86\x16\x53\x51\x33\x6d\xf3\x31\x19\x83\x89\x68\xb2\x90\x31\x95\x70\xf6\x3c\x7d\x18\x4d\xae\x6f\xbf\x8e\xef\x6e\x6e\x2e\xc7\x0f\xd7\x77\xb7\xa3\x8b\x8b\xfb\xcb\xe9\x34\x08\x4e\x4f\x4f\xe1\x1e\x73\x5d\x0b\x72\x0d\x0a\x52\x34\x98\x2b\x21\x06\x6d\x41\x0a\x84\xda\x63\x42\xb2\x05\x65\xac\x69\xce\x09\xb6\xc5\x19\xb1\xcf\xab\x30\xd1\x99\xc6\x14\x2c\xa5\x08\xda\x66\xc4\xa5\x6a\xf3\x95\x4d\xdb\x14\x55\xd2\xdc\x0a\x50\x06\x42\x33\xb4\x35\x08\x41\x42\x65\xa9\x25\x08\x84\x95\xad\x55\x8b\x1f\xea\x34\x86\xa9\xb0\xb6\xf9\x49\x00\x3b\x3f\x26\x83\x31\x3c\x5e\x5b\xf9\xd8\x0d\x58\x94\x05\xb1\xa3\x39\x4a\x53\xc6\xba\xee\xaf\xdf\xa6\x4d\xb0\xe9\x4f\x59\x4d\x7b\x30\xee\x47\x88\xe1\xf1\x4a\x3f\x7f\x78\xdf\x8d\x55\xf3\x27\xa3\x93\x09\x36\x75\x0c\x3f\xbc\x38\xd1\x04\x9b\x1b\x5d\xcb\xa5\x15\x6e\x7e\x9e\x0f\xe0\xa5\xad\x68\x1f\x06\x65\xdd\x6e\x2b\xd8\x3d\x66\x31\x1c\xf7\x6a\x19\xed\x9d\x04\x2d\x4e\xc5\x58\x29\xc6\x50\x25\x89\xe7\xa6\xe6\x52\x84\x5f\x88\x99\x16\xdf\x95\x99\xe3\x00\x8e\x47\x3e\xb6\xee\xdf\x4e\x8a\x26\x8b\xfa\xfa\xc3\x10\x56\x50\x51\x2d\xc4\x2a\xc7\xe8\xa9\x05\xfb\xf4\xbf\xbc\x3e\x87\xce\x76\x71\xbf\x25\xf7\xd3\xa7\xbe\xcb\x37\x25\xc5\xa0\x73\xa1\xe7\xe7\x50\x29\xab\x93\xf0\x68\x4c\x73\xe3\x8c\x25\xe0\xa9\x00\xa3\x33\x11\xec\x61\x1d\x0d\x82\x0d\x84\xce\xda\x3b\x2e\x55\x52\x68\x8b\xab\x2b\x80\xe1\xe1\xc9\x23\x5e\xbd\x08\xb7\x94\x62\xd8\xa1\xe2\x2c\xa9\xd3\x3e\x3b\xba\xe7\x3f\xdd\xb8\x77\xf4\x57\x63\x76\xb6\x87\xfd\xb9\x5d\xf7\x7b\xd4\xff\xbf\xf1\xa8\x6a\x90\xe3\xb5\xc0\x03\xd8\x04\x5f\xba\xe3\x66\x3b\x6e\x86\xe1\x10\xac\x36\xf0\xfa\xba\x73\xf8\x2e\x32\x68\x73\x29\x5c\xf0\xec\x4d\xb5\x6f\xe4\x85\x53\xd6\xa9\x56\x31\xfd\xd2\x29\xc2\x6f\x64\x82\x99\xc3\x5c\x7f\x36\x56\xea\xac\x19\x1d\x75\x1d\xb0\xec\xec\x5c\xcd\x0c\x1b\xf7\x65\xda\x21\xd2\xd3\xbc\x2b\x79\xe4\x1a\x46\x2a\x4d\xc3\x4d\x55\xec\x70\xa2\xcd\xf6\x04\x0a\x55\x17\x23\x93\x13\x6b\x29\x4a\x1f\xed\x1c\x9d\xc0\x02\x75\x5e\x88\x0f\xf9\xf5\x21\xaa\x7e\xb5\x0c\x96\xc1\x9f\x00\x00\x00\xff\xff\x7b\xe0\x31\xd1\xa9\x05\x00\x00" func stakingcollectionRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5210,11 +5210,11 @@ func stakingcollectionRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xae, 0x5, 0x7e, 0x2a, 0xe2, 0xbe, 0x17, 0x25, 0x72, 0xa9, 0x5, 0x40, 0x5, 0xe3, 0xe4, 0xf8, 0x12, 0xf2, 0xe1, 0xd6, 0x2f, 0x88, 0x6e, 0xb6, 0xcd, 0xf8, 0x53, 0xe7, 0x20, 0x35, 0xfc, 0x3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa5, 0x67, 0x34, 0x34, 0x86, 0xf6, 0x1c, 0x21, 0xb3, 0x55, 0x47, 0x82, 0xcd, 0x43, 0x84, 0xd4, 0x8c, 0xa8, 0xb7, 0xd2, 0x9, 0xcc, 0xc, 0x22, 0x3, 0x72, 0x8b, 0x34, 0xbc, 0xa9, 0x4b, 0x9d}} return a, nil } -var _stakingcollectionRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\x51\x6b\xf2\x50\x0c\x7d\xef\xaf\x08\x3e\x7c\x54\x90\xfa\xb1\x8d\x3d\x94\x6d\x52\xaa\x8e\x32\xd1\x61\xf5\x07\xdc\xd5\xb4\x5e\x76\xbd\xe9\xd2\x14\x85\xe1\x7f\x1f\xf5\x5a\x1d\xd3\x07\xef\x43\x43\x42\x72\xce\x49\x4f\xf4\xa6\x24\x16\x18\x1b\xda\xa6\xa2\x3e\xb5\x2d\x62\x32\x06\x33\xd1\x64\x21\x67\xda\xc0\xff\x5d\xba\x88\xde\x92\xe9\x6b\x3c\x9b\x4c\x46\xf1\x22\x99\x4d\xa3\xe1\x70\x3e\x4a\x53\xcf\xeb\xf7\xfb\x30\xc7\xaf\x1a\x2b\xa9\xa0\xb6\x95\x43\x80\x9c\x18\x64\x8d\x50\x95\x98\xe9\x5c\xe3\x0a\x2c\xad\x10\x88\x61\x85\x06\x0b\x25\xc4\xa0\xad\x6b\x39\x8e\x64\x27\x56\xcf\x13\x56\xb6\x52\x87\xc4\x6f\x06\x93\x61\x08\xa9\xb0\xb6\x45\xef\x0c\xd0\x14\x97\x89\x95\xfb\xbb\x41\x0f\xd4\x86\x6a\x2b\x21\x2c\xc7\x7a\xf7\xf8\xd0\x85\x6f\x0f\x00\xe0\xf0\x31\x28\x2d\xc9\x79\xb3\x39\xe6\x21\xfc\xbb\xba\x74\x70\x51\xf1\x0e\x38\x25\x63\xa9\x18\x7d\x95\x65\x8e\x2b\xaa\x65\x1d\xb9\xa4\x25\x6c\x5e\x85\x26\x0f\xae\x11\xc2\x33\x1c\x67\x83\x0f\x62\xa6\xed\xd3\xad\x02\x5e\xfc\xc6\x88\xf0\xba\x49\x97\xed\xa9\x10\xab\x02\xdf\x95\xac\xbb\x27\x59\xcd\x1b\x0c\xa0\x54\x56\x67\x7e\x27\xa6\xda\x34\xa6\x08\x38\x29\xc0\x98\x83\x10\x5c\x60\x75\x1c\xc2\xde\xfd\x03\xdc\x61\x56\x0b\xde\xb2\x6d\xc0\xee\x2c\x96\xed\x51\x9c\x9c\x74\xf1\x8f\x93\xbf\x92\xb3\x9b\x2e\xb6\x0a\xf6\xde\x4f\x00\x00\x00\xff\xff\x78\x58\xc1\x42\xac\x02\x00\x00" +var _stakingcollectionRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6a\xc2\x40\x10\xbd\xe7\x2b\x06\x0f\x12\x41\x62\x69\x4b\x0f\xa1\xad\xd8\xa8\x25\x54\xb4\x18\xed\x7d\x1b\x27\x71\xe9\xba\x93\x6e\x66\x51\x28\xfe\x7b\x49\xd6\x68\xa9\x1e\xdc\x43\x96\x99\xcc\xbc\xf7\x66\xdf\xc8\x4d\x41\x86\x61\xac\x68\x9b\xb0\xf8\x92\x3a\x8f\x48\x29\x4c\x59\x92\x86\xcc\xd0\x06\x6e\x76\xc9\x62\xf0\x16\x4f\x5f\xa3\xd9\x64\x32\x8a\x16\xf1\x6c\x3a\x18\x0e\xe7\xa3\x24\xf1\xbc\x5e\xaf\x07\x73\xfc\xb6\x58\x72\x09\x56\x97\x0e\x01\x32\x32\xc0\x6b\x84\xb2\xc0\x54\x66\x12\x57\xa0\x69\x85\x40\x06\x56\xa8\x30\x17\x4c\x06\xa4\x76\x25\x87\x96\xf4\xc8\xea\x79\x6c\x84\x2e\x45\x1d\xf8\x55\x63\x3c\x0c\x21\x61\x23\x75\xde\x3d\x01\x54\xc9\x65\xac\xf9\xee\xb6\xdf\x05\xb1\x21\xab\x39\x84\xe5\x58\xee\x1e\xee\x3b\xf0\xe3\x01\x00\xd4\x1f\x85\xdc\x90\x9c\x26\x9b\x63\x16\x42\xfb\xe2\xd0\xc1\x59\xc6\xab\x71\x0a\x83\x85\x30\xe8\x8b\x34\x75\x5c\xc2\xf2\xda\x7f\x21\x63\x68\xfb\x21\x94\xc5\x0e\xb4\x07\xee\x5f\xc3\x5f\x9d\x12\x55\x16\x5c\xe2\x87\x27\x38\x40\x05\x25\x93\x11\x39\x06\x9f\x35\xd8\xe3\xb5\xba\x9e\xfd\xca\x9f\xf0\xb2\x77\xe7\xe5\x89\x63\x79\x17\xbc\xee\x1c\xe5\x55\xa7\xdf\x87\x42\x68\x99\xfa\xad\x88\xac\xaa\xbc\x62\x70\x52\xc0\x60\x06\x4c\x70\x86\xd5\x72\x08\x7b\xf7\x34\xb8\xc3\xd4\x32\x5e\x33\x75\x60\xdc\xb6\x2c\x9b\x5d\x39\x1a\xec\xee\x7f\x06\xff\x09\x4e\x26\xbb\xbb\x51\xb0\xf7\x7e\x03\x00\x00\xff\xff\x44\xa6\xca\x7b\xc3\x02\x00\x00" func stakingcollectionRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -5230,11 +5230,11 @@ func stakingcollectionRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xef, 0xea, 0x1c, 0x7d, 0xa0, 0xfd, 0x94, 0xf6, 0x62, 0xff, 0xe2, 0x56, 0x30, 0xb4, 0x51, 0x60, 0x6f, 0x63, 0xec, 0x73, 0xb9, 0x24, 0x10, 0xba, 0xd2, 0x4e, 0xda, 0x1f, 0x16, 0xf4, 0xe2, 0xd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0x5c, 0x64, 0x51, 0xd2, 0x85, 0x1a, 0x5a, 0x33, 0x7f, 0x28, 0x77, 0x26, 0x50, 0xdc, 0x67, 0x81, 0x7b, 0xa, 0xc5, 0xf1, 0x87, 0xd0, 0x88, 0xd3, 0x40, 0xa, 0xd5, 0x79, 0x39, 0x46, 0x52}} return a, nil } -var _stakingcollectionRestake_all_stakersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x52\xd1\x8a\xdb\x30\x10\x7c\xd7\x57\x2c\x79\x28\x0e\x1c\x4e\x9f\x43\xd3\x23\xd8\xd7\x12\x7a\xf8\x4a\x9c\x1f\xd0\xd9\xeb\x9c\x89\xac\x0d\xf2\x86\x1c\x1c\xf9\xf7\x22\xcb\x91\xed\xd8\x69\x0b\xad\x1f\x44\x22\xed\xce\xce\xce\x4c\x59\x1d\xc9\x30\x7c\x53\x74\x4e\x59\x1e\x4a\xbd\x8f\x48\x29\xcc\xb8\x24\x0d\x85\xa1\x0a\x3e\xbf\xa7\xbb\xf5\x8f\x4d\xf2\x3d\x7a\x79\x7e\x7e\x8a\x76\x9b\x97\x64\x1d\xc7\xdb\xa7\x34\x15\xbd\xe6\x4d\xbc\x93\xaf\x0a\x5b\x0c\xd7\x39\x1b\x3f\xcc\x84\x58\x2c\x16\x10\x51\x55\x95\x5c\x83\xc1\xb3\x34\x39\xe6\xc0\x74\x40\x5d\x03\x13\xd4\x2c\x0f\x08\x05\x19\x90\x4a\x81\xa6\x1c\x6b\x90\x3a\x87\x1c\x15\xee\x25\x93\xa9\xa1\xd4\x20\x21\xf3\x34\x85\x60\x23\x75\x2d\x1d\xe7\x0f\x01\x00\xd0\x1c\x0a\xb9\x81\x1b\x2c\xb5\xc5\x62\x09\x9f\x26\xf7\x0d\x47\x37\xa2\xc1\x39\x1a\x3c\x4a\x83\x81\xcc\x32\x3a\x69\x5e\xc2\xfa\xc4\x6f\x6b\xf7\x67\xde\x0e\xb4\x5f\x8d\xaa\x08\xa7\x06\xc2\x0a\xda\xde\xf0\x95\x8c\xa1\xf3\x97\xbf\x25\xf0\x35\xb0\x4a\x2e\xa7\xfd\x19\x97\xa7\x4c\x46\xee\xf1\xa7\xe4\xb7\xb9\xa7\x65\xbf\xc7\x47\x38\x4a\x5d\x66\xc1\x2c\xa2\x93\xca\x41\x13\x83\xa3\x02\x06\x0b\xab\xfb\x08\x6b\xe6\x10\x2e\x4e\x03\x7c\xc7\xec\xc4\xd8\xdb\xd6\xaa\x6b\xed\xd9\xc4\x35\xac\xee\xef\x1e\xee\x91\x13\x57\x16\xcc\x85\xef\xb6\x06\xbb\x6e\x6b\xe7\x15\xe7\x63\x40\xda\x4f\xd0\x05\xc1\x6a\x22\x66\x61\xd2\xbe\x06\x0e\x60\xd9\x02\x0d\x77\xbf\x4f\xad\xc9\xda\xb6\xcd\xe0\xae\x89\xe0\x0d\xd2\x43\x97\xbb\xe6\xb2\x54\x0f\x20\x2b\x97\x82\x2b\xb5\xd0\x85\xf7\x8a\xd3\x0d\xbf\x88\x81\x58\xbd\x04\xff\x41\xaf\xb8\x9b\x39\x12\xcd\xa3\x58\xdd\x7a\x90\x63\xe9\x3a\xe6\x77\xf5\x8b\xfb\x25\x7e\x75\xdf\x18\xfa\x5f\xc9\x94\x1a\x13\x75\xb7\xda\xff\x07\x23\xfe\x89\x4d\xe7\xd6\x40\x8d\xdf\x58\xe6\xce\x8b\xf8\x15\x00\x00\xff\xff\xff\x0b\xcb\xe8\x19\x05\x00\x00" +var _stakingcollectionRestake_all_stakersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x52\x4d\x6b\xdb\x40\x10\xbd\xef\xaf\x18\x7c\x08\x32\x04\xb9\x67\x53\x37\xb8\x52\x5a\x4c\x83\x52\x2c\xd3\xfb\x44\x1a\x39\xc2\xab\x1d\xb3\x5a\xe1\x40\xf0\x7f\x2f\xab\x95\xf5\x61\xc9\x6d\xa1\xd1\x61\x11\xbb\x33\x6f\xde\xbc\xf7\xf2\xe2\xc8\xda\xc0\x37\xc9\xa7\xd8\xe0\x21\x57\xfb\x80\xa5\xa4\xc4\xe4\xac\x20\xd3\x5c\xc0\xa7\xb7\x78\xb7\xfe\xb1\x89\xbe\x07\xcf\x4f\x4f\x8f\xc1\x6e\xf3\x1c\xad\xc3\x70\xfb\x18\xc7\xa2\xd7\xbc\x09\x77\xf8\x22\xa9\xc1\x70\x9d\xb3\xf1\xc3\x4c\x88\xc5\x62\x01\x01\x17\x45\x6e\x4a\xd0\x74\x42\x9d\x52\x0a\x86\x0f\xa4\x4a\x30\x0c\xa5\xc1\x03\x41\xc6\x1a\x50\x4a\x50\x9c\x52\x09\xa8\x52\x48\x49\xd2\x1e\x0d\xeb\x12\x72\x05\x08\x49\x4b\x53\x08\xa3\x51\x95\xe8\x38\xbf\x0b\x00\x80\xfa\x90\x64\x6a\xb8\xc1\x52\x5b\xca\x96\x70\x37\xb9\xaf\x3f\xba\x11\x35\xce\x51\xd3\x11\x35\x79\x98\x24\x5c\x29\xb3\x04\xac\xcc\xab\xf7\x95\xb5\xe6\xd3\x2f\x94\x15\xcd\xe1\x6e\xed\xde\xe6\xcd\x7c\xfb\x95\x24\x33\x7f\x6a\x3e\xac\xa0\x81\xf2\x4b\xc3\x1a\xf7\xe4\xbf\xd4\x60\x9f\xff\x95\xd7\x17\xcf\x0a\xbc\x9c\xb6\x6d\x5c\x1e\xbb\x29\x3f\xd1\xbc\xce\x5b\x7a\xf6\x7b\x78\x80\x23\xaa\x3c\xf1\x66\x01\x57\x32\x05\xc5\x06\x1c\x15\xd0\x94\x59\x3b\x46\x58\x33\x87\x70\x76\xd2\xd0\x1b\x25\x95\xa1\xde\xd6\x56\x74\xeb\xda\x26\x2c\x61\x75\x5b\x03\x7f\x4f\x26\x72\x65\xde\x5c\xb4\xdd\xd6\x77\xd7\x6d\x5d\xbe\xe0\xbc\x0f\x48\xb7\x13\x54\xc6\xb0\x9a\x48\x9f\x1f\x35\xaf\x9e\x03\x58\x36\x40\xc3\xdd\x6f\x53\xab\x23\xb8\x6d\xa2\xb9\xab\x93\x79\x85\x74\xdf\xc5\xb1\xbe\xcc\xe5\x3d\x60\xe1\xc2\x71\xa1\xe6\xbb\x4c\x5f\x70\xba\xe1\x67\x31\x10\xab\x17\xec\xbf\xe8\x15\x76\x33\x47\xa2\xb5\x28\x56\xb7\x1e\xe4\x58\xba\x8e\xf9\x4d\xfd\xc2\x7e\x49\xbb\x7a\xdb\xe8\xb7\x7f\xd1\x94\x1a\x13\x75\xd7\xda\x7f\x80\x11\xff\xc5\xa6\x73\x6b\xa0\xc6\x1f\x2c\x73\xe7\x59\xfc\x0e\x00\x00\xff\xff\x3e\x6b\x84\x01\x30\x05\x00\x00" func stakingcollectionRestake_all_stakersCdcBytes() ([]byte, error) { return bindataRead( @@ -5250,7 +5250,7 @@ func stakingcollectionRestake_all_stakersCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/restake_all_stakers.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x26, 0x71, 0x6b, 0x3, 0x8a, 0x5, 0xcb, 0xf0, 0xfd, 0x79, 0xbf, 0xac, 0x93, 0x8, 0x38, 0xcf, 0x4d, 0x15, 0x7f, 0x13, 0x56, 0xac, 0xd7, 0x72, 0x7d, 0x9a, 0xd1, 0x36, 0x15, 0x49, 0x33, 0xa8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf9, 0x73, 0x57, 0x44, 0x5e, 0xb8, 0xd0, 0x1d, 0xa0, 0xe3, 0xfa, 0x34, 0xe5, 0x7c, 0xab, 0x6d, 0x8a, 0x77, 0xd2, 0xa3, 0x2b, 0xd4, 0x3a, 0x74, 0xfa, 0x8e, 0xd0, 0x37, 0x6d, 0x3f, 0x65, 0x3d}} return a, nil } @@ -5454,7 +5454,7 @@ func stakingcollectionScriptsGet_unlocked_tokens_usedCdc() (*asset, error) { return a, nil } -var _stakingcollectionSetup_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\x4f\x6f\xfa\x38\x10\xbd\xf3\x29\xa6\x1c\xba\x41\xe2\xcf\x9e\x11\x6d\x17\x01\xbb\x8b\x8a\x4a\x55\xd0\xde\x4d\x32\x49\xbc\xb8\x76\x64\x3b\xb0\x55\xc5\x77\x5f\x39\x8e\x93\xb8\x40\x4b\xab\xaa\x3f\x0e\xa5\xc4\xf3\xe7\xbd\x37\xe3\x99\xd0\xe7\x4c\x48\x0d\x7f\xe6\x3c\xa1\x1b\x86\x6b\xb1\x45\x0e\xb1\x14\xcf\xd0\xf6\x9e\xb5\x5b\xce\x92\x89\xbd\x67\xe5\x7e\x7b\x16\xf3\xe9\x9a\x6c\x18\xae\x34\xd9\x52\x9e\x34\x4c\xfd\x83\xca\x67\x21\xc2\x2d\x46\x45\x1c\x65\xad\x7f\xff\x6f\xb1\x9c\xdc\xcf\xa6\xeb\xe5\xfd\xec\x61\x3c\x9d\x3e\xcd\x56\xab\x66\x86\x32\xc2\x44\x30\x86\xa1\xa6\x82\x3b\xb7\xd5\x7a\x7c\x3f\x7f\xf8\x6b\xb2\x5c\x2c\x66\x93\xf5\x7c\x59\x39\xb7\x06\x83\x01\xac\x53\xaa\x40\x4b\xc2\x15\xb1\x5e\x0a\xb5\x82\x3c\x03\xc2\x81\x84\xa1\xc8\xb9\x06\x2d\x20\x57\x08\x04\x54\x09\x3f\xac\x92\x14\x31\xe6\x1a\xf6\x94\x31\xd8\x0b\xb9\x05\x89\x09\x91\x11\x43\xa5\x40\xc4\xb0\x4f\x51\xa7\x28\x41\xa7\xf8\x02\x29\xd9\x99\x28\x12\x93\x9c\x11\xe9\xc2\x77\x81\x80\xde\x8b\x9e\xcb\xc6\x0a\xea\xa0\x2d\x77\x85\x3a\xcf\xba\x45\x1a\x21\x2b\x00\x62\xf3\x2f\x86\x5a\x81\xd2\x42\x62\x04\x94\x9b\x04\x90\xf3\xd2\xb7\x0c\xd5\x6a\x35\x89\xbd\xb6\x00\x00\x32\x89\x19\x91\x18\x28\x9a\x70\x94\x43\x18\xe7\x3a\x1d\x5b\xf3\x0e\xbc\xb6\x0a\x1b\xf3\x31\xb4\x62\x13\x55\x22\x50\xc5\x7f\xd3\x40\x98\x44\x12\xbd\x9c\x96\xc1\xb9\xd1\x18\x6c\xe4\xfe\x46\x48\x29\xf6\xa3\xeb\x93\xb5\xe9\x1f\x3d\xb9\x0d\x4c\xb9\x86\xa7\x4b\x79\x6c\xbe\xd2\x42\x92\x04\x1f\x89\x4e\x3b\x70\x73\x03\x9c\xb2\x26\xfa\x92\xc1\x44\x22\xd1\x08\x99\xa4\x3b\xf3\x1d\x92\x8c\x6c\x28\xa3\x9a\xa2\x82\x58\x14\x55\xb1\x3a\x43\x2a\x58\x84\x12\x08\x8f\x6a\x15\x77\x24\x67\xda\x0b\xc9\xd0\x95\xe7\x6f\x6b\x7f\xe3\xd8\x32\xca\xb7\xa3\xeb\x66\xd7\xf6\x8b\x2f\x6b\x77\x1b\x0c\x4a\x0c\x83\xd8\x5d\x0f\x7b\xd2\x05\x4d\x64\x82\x7a\x08\xe7\x7c\x9b\x4c\xaf\x8e\xd0\x54\xe1\xde\x42\xa9\xae\x61\xff\x1f\x43\xe3\x14\x82\xe2\xa0\x06\x30\x50\x36\xd3\x1b\x83\x37\x49\xcf\x48\x4c\x80\xe3\x1e\xdc\xf5\x6e\x5c\x42\xa3\x68\x96\x6b\xa0\xda\x74\x69\x99\xc2\x0b\x42\x63\x4f\xd3\x7e\x98\x62\xb8\x0d\x3a\x65\xbf\x36\x3f\x25\x41\x45\x76\x18\x8c\x7a\xa7\x3b\x25\x2c\xf0\x1c\x3d\x0f\x5c\x55\x0b\x4e\xc3\x5a\xb7\xae\x6d\x00\x9b\x7b\xe8\x21\xe9\x98\xb3\x2f\x75\xa4\x87\xfc\x00\xc8\x14\xfe\x1a\x3a\x9c\xb2\xef\x62\x71\xee\x72\x11\xc8\xf2\x0d\xa3\x21\x98\xbe\x33\xa3\xd2\x5c\xaa\x77\x26\x44\x83\x79\xdd\xa9\x17\x20\x7b\xbd\xd0\xee\xb1\x40\x73\xb8\x0d\x8e\xf4\xfe\x54\x00\xa3\x40\xf7\x28\x84\xbb\x2b\x9f\x57\xd3\x0b\x55\x4b\x7b\xf0\x26\xae\x9d\x99\xc5\x8a\x88\x51\x22\x0f\xf1\x02\x41\xcd\x18\xa8\x1f\x3f\x61\x5c\x8f\x82\x9f\x9b\xc1\x1e\xbd\xbb\x3b\xc8\x08\xa7\x61\xd0\x9e\x88\x9c\x45\xc0\x85\x76\xd4\x8e\x79\xd4\x5c\xdb\x9d\x73\xeb\xc7\x8c\x17\x11\x59\x15\x50\x96\xdb\xcf\x6d\xbd\x6a\x8d\xd6\x63\xe6\x03\xc5\x4e\x2f\x29\xff\x4d\xa4\xff\x20\xa2\xe2\x7f\x33\xbd\x6b\x59\xce\x1a\x79\x0b\xe9\xca\x2d\xa4\xa6\x2a\xa6\x4e\x05\x8b\x51\xaf\xba\x00\x82\x44\xa3\x3f\xbe\x37\xb9\x3f\xae\xbd\xc6\xe8\x93\x28\x32\x4e\xcb\x42\xbf\x60\xd4\x33\x70\xba\xf0\x4c\xc2\x94\x72\x2c\xdf\x02\xe6\x3c\x16\x76\x70\x9c\x69\x52\xbf\x2e\x11\x32\x4c\x88\x16\x3f\x58\x95\xa9\x4b\xf9\x8e\x36\x95\xcd\x65\x75\xa9\x59\x5c\x58\x9c\x2f\x63\xf8\xa0\x3c\x95\x4f\x55\xa3\x0a\x5a\xb3\x1e\xf6\xef\xa1\xf5\x7f\x00\x00\x00\xff\xff\xcc\xf4\x53\x3b\xae\x0b\x00\x00" +var _stakingcollectionSetup_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\x4d\x6f\xe3\x36\x10\xbd\xfb\x57\x4c\x72\x48\x2d\x20\x91\x7b\x36\x9c\x6c\x53\x3b\x6d\x8d\x04\xf1\x62\x6d\xec\x7d\x2c\x8d\x2c\xd6\x0c\x29\x90\x94\xdd\x20\xc8\x7f\x2f\x48\x7d\x32\x92\x12\x77\x5b\x74\x81\xe5\x21\x4a\x98\xf9\x7a\xef\x71\x38\x64\x4f\x99\x54\x06\x7e\xcb\xc5\x8e\x6d\x39\x6d\xe4\x9e\x04\x24\x4a\x3e\xc1\xb9\xb7\x77\x3e\xaa\x2c\xb9\x3c\x7a\x56\xd5\xdf\x9e\xc5\x72\xb1\xc1\x2d\xa7\xb5\xc1\x3d\x13\xbb\x96\xa9\xff\x8f\xda\xe7\x41\x46\x7b\x8a\x5d\x1c\x5d\x58\xff\xfc\xd7\xc3\x6a\x7e\x7f\xb7\xd8\xac\xee\xef\x1e\x6f\x17\x8b\x2f\x77\xeb\x75\x3b\x43\x19\x61\x2e\x39\xa7\xc8\x30\x29\x2a\xb7\xf5\xe6\xf6\x7e\xf9\xf8\xfb\x7c\xf5\xf0\x70\x37\xdf\x2c\x57\xb5\xf3\x68\x32\x99\xc0\x26\x65\x1a\x8c\x42\xa1\xb1\xf0\xd2\x64\x34\xe4\x19\xa0\x00\x8c\x22\x99\x0b\x03\x46\x42\xae\x09\x10\x74\x59\x7e\x54\x27\x71\x31\x96\x06\x8e\x8c\x73\x38\x4a\xb5\x07\x45\x3b\x54\x31\x27\xad\x41\x26\x70\x4c\xc9\xa4\xa4\xc0\xa4\xf4\x0c\x29\x1e\x6c\x14\x45\xbb\x9c\xa3\xaa\xc2\x5f\x02\x82\x39\xca\xab\x2a\x1b\x77\xd0\xc1\x14\xd8\x35\x99\x3c\xbb\x74\x69\xa4\xaa\x0b\x90\xdb\x3f\x29\x32\x1a\xb4\x91\x8a\x62\x60\xc2\x26\x80\x5c\x94\xbe\x65\xa8\xd1\xa8\x0d\xec\x65\x04\x00\x90\x29\xca\x50\xd1\x58\xb3\x9d\x20\x35\x05\xcc\x4d\x3a\xfe\x55\x2a\x25\x8f\x5f\x91\xe7\x14\xc0\xc5\x6d\xe1\x1d\xc0\xcb\xc8\xb9\xd8\x65\x51\x26\x36\x89\x22\x60\x5a\xfc\x64\x00\xb9\x22\x8c\x9f\xfb\x59\xa9\xdc\x58\x02\x45\xa2\xd0\x56\x8a\x3b\x0a\xb7\x2e\xd5\xec\xa2\x57\xb2\xb0\xb3\x73\x33\xb6\x2a\x4e\xfb\x15\xee\x9a\xaf\x8b\x2c\x9f\xd1\xa4\x01\x5c\x5f\x83\x60\xbc\x8d\xa2\x44\x32\x57\x84\x86\x20\x53\xec\x60\xbf\x11\x66\xb8\x65\x9c\x19\x46\x1a\x12\xe9\xc4\x2a\xe8\x87\x54\xf2\x98\x14\xa0\x88\x1b\x72\x0f\x98\x73\xe3\x85\xe4\x54\xa9\xf6\x47\x61\x7f\x5d\xa1\x6e\x87\xae\x29\x60\x5a\xe7\x34\xbb\x68\x1f\xf1\xd0\x7d\x0a\xef\x9b\xb1\x41\xb5\x23\x33\x85\x21\x8b\x36\xca\xb3\x4e\x25\x49\xdd\x90\x27\x95\x51\xf7\x6b\xf8\xd5\x02\x6b\xb2\x4f\x4a\xc3\x49\x1d\xd0\x19\x04\x67\x43\x7c\x22\x08\x3a\x42\xd5\xe2\xad\x46\xb4\xf4\x65\xb9\x01\x66\xec\x49\x2d\xc3\x7a\x41\x58\xe2\x11\x18\x46\x29\x45\xfb\x71\x50\x9e\xd9\xf6\x12\x74\x2c\xcf\x67\x0d\x44\xe3\x81\xc6\x1d\x43\xbb\x66\x57\x03\x07\x27\x72\x15\x77\xf6\xfb\xa3\xd8\x55\xa9\xef\x28\x98\x36\x1c\x5f\x0e\x7a\x98\x46\xaf\xa9\x07\xae\xd7\x23\xe8\x0f\x64\xe4\xb7\x1c\xfd\x4e\xa8\xc0\xdb\x79\x05\xe2\x9a\x7e\x18\x6e\x05\xe3\xdf\x9f\xd2\x4e\x4f\x7c\xce\xb7\x9c\xe9\x14\xb0\xb9\x5e\x9e\xed\x20\xb1\x77\x4b\xc1\x50\xdc\x73\x71\x86\x9d\x6e\xd6\x6f\x8b\x9a\x63\x06\xd7\x6d\xa9\x3e\x6a\xee\x13\x80\xbe\x9c\x68\xe7\x40\x45\xaf\x37\x5d\x2d\xab\x4b\xe3\x5f\x32\x1b\xf8\x3c\x0e\xa1\xcc\x0a\x72\xbb\x65\xf4\xb1\xd5\x31\xc2\xd3\xeb\x2c\x00\xf7\x94\xd9\x23\xfc\x64\x02\xc5\x70\x73\x23\x3e\x21\x45\x22\xa2\x4a\xf2\x77\x66\xa4\x55\xb9\xd9\xfe\x42\x49\x73\x6f\xff\xff\x43\xd3\x83\xf9\xe9\x13\x64\x28\x58\x34\x3e\x9f\xcb\x9c\xc7\x20\xa4\xa9\x20\x76\xf1\x34\x98\xcf\x83\xa1\x77\x83\x1d\x11\x32\x2e\xd8\x20\x55\xbe\x62\xaa\xd7\x4b\xfd\x1c\x6a\x46\xc5\x07\xcc\xbd\xff\xba\xf0\x5f\x96\xe1\xa3\x8c\xdd\xef\x76\xc0\x36\xf4\x0c\x1a\x79\x2f\x89\xb3\xea\x25\xf1\xb6\x3b\x1d\x9a\xd9\xd5\xdb\x32\xb8\xc4\x78\xf6\xcb\x7f\x5b\x84\x3f\xe8\xbd\x03\x13\x62\x1c\x5b\xa7\x95\xe3\x73\x3c\xbb\xb2\x65\x5d\xc2\x13\x46\x29\x13\x54\x76\xd0\x52\x24\xd2\x5d\x96\x43\x87\xd7\xd7\x29\x26\x4e\x3b\x34\xf2\x3b\xa8\xb4\xa8\x52\xbf\xc3\x51\x6d\x73\x9a\x4e\x0d\x9a\x7f\x28\xd6\x37\xd7\xf2\x81\x5c\xb5\x4f\xad\x59\x5d\x62\x5b\x9f\xe2\xe7\xeb\xe8\xef\x00\x00\x00\xff\xff\xe3\xee\x7e\x39\x96\x0d\x00\x00" func stakingcollectionSetup_staking_collectionCdcBytes() ([]byte, error) { return bindataRead( @@ -5470,11 +5470,11 @@ func stakingcollectionSetup_staking_collectionCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/setup_staking_collection.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x62, 0xb3, 0x3c, 0x8d, 0x5e, 0x2b, 0xf5, 0xf1, 0xf, 0x0, 0x56, 0xad, 0xa3, 0x6b, 0xdc, 0x90, 0xb2, 0xe8, 0x7a, 0x21, 0x16, 0x99, 0x26, 0x66, 0xa8, 0x9e, 0x57, 0x5c, 0x25, 0x4e, 0x2d, 0x9c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd2, 0x95, 0x85, 0xac, 0x9, 0x9f, 0x4e, 0x20, 0xba, 0x1d, 0x60, 0x6a, 0x2a, 0xd2, 0xbf, 0x1e, 0xd, 0x80, 0x53, 0x48, 0xbe, 0xb6, 0xea, 0x70, 0xe2, 0x92, 0x89, 0x7b, 0x74, 0xfe, 0x18, 0x8c}} return a, nil } -var _stakingcollectionStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xc1\x6a\x1b\x31\x10\x86\xef\xfb\x14\x3f\x39\x14\x07\x8c\x5d\xda\xd2\x83\x69\x6b\xcc\x3a\x29\xa6\xc1\x29\x59\xe7\x01\x94\xdd\x91\x2d\xac\xd5\x2c\xd2\x6c\xd7\xa5\xe4\xdd\xcb\x4a\x59\x3b\xc4\x3e\x44\x07\x09\x0d\xa3\xef\xff\x35\x33\xa6\x6e\xd8\x0b\x6e\x2d\x77\x85\xa8\xbd\x71\xdb\x9c\xad\xa5\x52\x0c\x3b\x68\xcf\x35\x3e\x1e\x8a\xcd\xe2\xd7\x6a\xfd\x33\xbf\xbf\xbb\xbb\xc9\x37\xab\xfb\xf5\x62\xb9\x7c\xb8\x29\x8a\x2c\x9b\x4e\xa7\xc8\xb9\xae\x8d\x04\x38\xea\x20\xbc\x27\x17\x20\x8c\x20\x6a\x4f\xd0\xec\x21\x3b\x42\x68\xa8\x34\xda\x50\x05\xc7\x15\x81\x3d\x2a\xb2\xb4\x55\xc2\x1e\xc6\xa5\x94\xa4\x8e\xf2\x28\x1f\xe9\x9b\x1d\x0d\xd4\xe8\xa6\x4f\xb5\x5c\xee\xa9\xc2\x1f\xd5\x5a\x81\xf2\x84\x36\x50\x05\x6d\x7c\x90\x31\x8c\x86\x11\xd0\xc1\x04\x09\x91\xa0\xd9\x5a\xee\xa8\xc2\xd3\xdf\xf8\xfa\x2d\xad\x75\xaf\x79\x59\x26\x5e\xb9\xa0\xa2\x83\x51\xef\x76\xb5\x9c\xa1\x10\x6f\xdc\x76\x7c\x72\xdd\x07\x1f\x57\x4e\x3e\x7f\x9a\x8f\xa1\x6a\x6e\x9d\xcc\xf0\x78\x6b\x0e\x5f\xbf\x5c\xe3\x5f\x06\x00\x71\xb3\x24\xc3\xcf\x4e\x75\x7d\x20\x3d\xc3\x87\x8b\x25\x9f\x9c\x45\xb2\xc8\x69\x3c\x35\xca\xd3\x48\x95\x65\xd2\x5a\xb4\xb2\x5b\xa4\xcb\x20\xd8\xaf\x40\x56\x4f\x2e\x09\xe2\x3b\x5e\xde\x4e\x9e\xd8\x7b\xee\xbe\xbd\xd7\xc0\x8f\x51\x5f\xaa\xd9\xe5\x11\x39\x4f\x2f\x84\xbd\xda\xd2\x6f\x25\xbb\xeb\xa3\xad\x7e\xcd\xe7\x68\x94\x33\xe5\xe8\x2a\xe7\xd6\xf6\x93\x20\x48\x56\xe0\x49\xf7\x33\x73\xc6\xba\x4a\x84\xe7\x54\x03\x3a\x50\xd9\x0a\xbd\xe7\xb7\x31\x48\x6b\xea\x36\xb1\xd9\xc7\x3e\xa6\xf3\x4d\x1f\x5f\x5d\x4e\xbd\x4c\xe7\xa0\xff\x9c\xfd\x0f\x00\x00\xff\xff\xec\x54\xa2\x45\x28\x03\x00\x00" +var _stakingcollectionStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6f\xda\x40\x10\xc5\xef\xfe\x14\x4f\x39\x44\x20\x21\xa8\xda\xaa\x07\xd4\x16\x51\x93\x54\xa8\x11\xa9\x62\xd2\xfb\xc6\x9e\x85\x15\xeb\x1d\x6b\x77\x5c\x53\x55\xf9\xee\x95\x77\x0b\x44\x81\x43\xf6\xe0\x95\xc7\xe3\xdf\x7b\xf3\xc7\xd4\x0d\x7b\xc1\xad\xe5\xae\x10\xb5\x33\x6e\x93\xb3\xb5\x54\x8a\x61\x07\xed\xb9\xc6\xbb\x7d\xb1\x9e\xff\x58\xae\xbe\xe7\xf7\x77\x77\x37\xf9\x7a\x79\xbf\x9a\x2f\x16\x0f\x37\x45\x91\x65\x93\xc9\x04\x39\xd7\xb5\x91\x00\x47\x1d\x84\x77\xe4\x02\x84\x11\x44\xed\x08\x9a\x3d\x64\x4b\x08\x0d\x95\x46\x1b\xaa\xe0\xb8\x22\xb0\x47\x45\x96\x36\x4a\xd8\xc3\xb8\x94\x92\xd4\x51\x1e\xe5\x23\x7d\xbd\xa5\x03\x35\xba\xe9\x53\x2d\x97\x3b\xaa\xf0\x5b\xb5\x56\xa0\x3c\xa1\x0d\x54\x41\x1b\x1f\x64\x04\xa3\x61\x04\xb4\x37\x41\x42\x24\x68\xb6\x96\x3b\xaa\xf0\xf4\x27\xfe\xfd\x9a\xd6\xba\x97\xbc\x2c\x13\xaf\x5c\x50\xd1\xc1\xa0\x77\xbb\x5c\x4c\x51\x88\x37\x6e\x33\x3a\xb9\xee\x83\x8f\x4b\x27\x1f\xde\xcf\x46\x50\x35\xb7\x4e\xa6\x78\xbc\x35\xfb\x4f\x1f\x87\xf8\x9b\x01\x40\x7c\x58\x92\x43\x65\xa7\xbe\x3e\x90\x9e\xe2\xfa\x62\xcb\xc7\x67\x91\x2c\x72\x1a\x4f\x8d\xf2\x34\x50\x65\x99\xb4\x54\x2b\xdb\xc1\x37\xf6\x9e\xbb\x5f\xca\xb6\x34\xc4\xf5\x3c\x7d\x3b\xe8\xf7\x27\x90\xd5\xe3\x4b\xfa\xf8\x82\xff\xa8\x71\x10\xf6\x6a\x43\xe3\xa7\x08\xfb\xfc\x56\x5f\x5f\x07\x7d\x07\xa7\x97\x37\xe7\x3c\xbd\x48\x2a\x3f\x95\x6c\x87\x47\x7b\xfd\x99\xcd\xd0\x28\x67\xca\xc1\x55\xce\xad\xed\x17\x44\x90\xac\xc0\x93\xee\x57\xe9\x8c\x75\x95\x08\xcf\xa9\x35\xb4\xa7\xb2\x15\x7a\x4b\xd5\x31\x48\x2b\xea\xd6\x71\x07\x8e\xe3\x4d\xf7\xab\xf1\xbe\x78\x39\x8d\x38\xdd\x07\xfd\xe7\xec\x5f\x00\x00\x00\xff\xff\x50\xd1\x10\x19\x3f\x03\x00\x00" func stakingcollectionStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5490,11 +5490,11 @@ func stakingcollectionStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd, 0x83, 0x37, 0x9f, 0xaa, 0xc4, 0x87, 0xda, 0x7e, 0xaf, 0x41, 0x49, 0xd3, 0xe, 0xac, 0xd, 0xa9, 0xb8, 0x16, 0xce, 0xbc, 0x57, 0xa0, 0x71, 0x8c, 0xf3, 0x87, 0x9c, 0x2e, 0xdc, 0x1e, 0x31}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe0, 0xe, 0xa5, 0xea, 0x71, 0x59, 0x27, 0x84, 0xc6, 0x22, 0xd3, 0xf8, 0xe3, 0x61, 0x7f, 0xdb, 0x1e, 0xad, 0x8a, 0x92, 0xb8, 0x59, 0xe8, 0xd, 0xb7, 0x52, 0x4d, 0x40, 0x37, 0xa, 0x4f, 0xfe}} return a, nil } -var _stakingcollectionStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xdd\xca\xda\x40\x10\xbd\xcf\x53\x1c\xbc\x28\x11\x44\x4b\x5b\x7a\x11\xda\x4a\x88\x5a\x42\x45\x8b\xd1\x07\xd8\x26\x93\xb8\x98\xec\x84\xcd\x04\x85\xe2\xbb\x7f\x24\xeb\xcf\xc7\xa7\x17\xee\xc5\x2e\x33\xec\x9c\x73\x66\xce\xe8\xaa\x66\x2b\x58\x94\x7c\x4c\x44\x1d\xb4\x29\x22\x2e\x4b\x4a\x45\xb3\x41\x6e\xb9\xc2\xe7\x53\xb2\x0d\xff\xc4\xab\xdf\xd1\x7a\xb9\x9c\x47\xdb\x78\xbd\x0a\x67\xb3\xcd\x3c\x49\x3c\x6f\x32\x99\x20\xe2\xaa\xd2\xd2\xc0\xd2\x51\xd9\x8c\x32\x08\x1f\xc8\x34\x10\x46\x23\xea\x40\xc8\xd9\x42\xf6\x84\xa6\xa6\x54\xe7\x9a\x32\x18\xce\x08\x6c\x91\x51\x49\x85\x12\xb6\xd0\xc6\x7d\x71\x12\x90\xde\x34\x78\x9e\x58\x65\x1a\xd5\x07\x7e\x57\x18\xcf\x02\x24\x62\xb5\x29\x46\x77\x80\x2e\xb9\x8b\x8d\x7c\xfd\x32\x1d\x41\x55\xdc\x1a\x09\xb0\x5b\xe8\xd3\xf7\x6f\x43\xfc\xf7\x00\xa0\xbf\x4a\x92\x2b\xc9\xbd\xcf\x0d\xe5\x01\x3e\x3d\x1d\xc1\xf8\x21\xe3\xf5\x38\xb5\xa5\x5a\x59\xf2\x55\x9a\x3a\xae\xb0\x95\x7d\xe8\x82\x2b\x61\x77\x1a\x2a\xf3\xf1\x33\x42\xfc\xc4\xa5\x76\xfc\x8f\xad\xe5\xe3\x8f\x57\x05\xfc\xf2\x3b\x5b\x82\xe7\x96\x3d\x7e\x4f\x84\xad\x2a\xe8\xaf\x92\xfd\xf0\x26\xab\x3b\xd3\x29\x6a\x65\x74\xea\x0f\x22\x6e\xcb\xce\x14\x81\x93\x02\x4b\x79\x67\xdf\x03\xd6\xc0\x21\x9c\xdd\x0c\xe8\x44\x69\x2b\xf4\x4a\xb7\x7d\x92\x36\x97\x0d\xd9\xf6\x0b\x72\x33\xd3\xbd\x1f\xcc\x7c\x17\xdc\x0d\x75\xef\x55\xc4\xd9\x7b\x0b\x00\x00\xff\xff\xa8\x2e\xa8\x04\xbd\x02\x00\x00" +var _stakingcollectionStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\x5d\xab\xda\x40\x10\x7d\xcf\xaf\x38\xdc\x87\x4b\x84\x4b\x2c\x6d\xe9\x43\x68\x2b\x36\xde\x5b\x42\x45\x8b\xd1\xbe\x6f\x93\x49\x5c\xdc\xec\x84\xcd\x04\x85\xe2\x7f\x2f\xc9\xfa\x51\xaa\x0f\xee\x43\x96\x99\xcc\x9e\x73\x66\xce\xe8\xba\x61\x27\x78\x33\xbc\xcf\x44\xed\xb4\xad\x12\x36\x86\x72\xd1\x6c\x51\x3a\xae\xf1\xee\x90\xad\xa7\x3f\xd2\xc5\xf7\x64\x39\x9f\xbf\x26\xeb\x74\xb9\x98\xce\x66\xab\xd7\x2c\x0b\x82\xf1\x78\x8c\x84\xeb\x5a\x4b\x0b\x47\x7b\xe5\x0a\x2a\x20\xbc\x23\xdb\x42\x18\xad\xa8\x1d\xa1\x64\x07\xd9\x12\xda\x86\x72\x5d\x6a\x2a\x60\xb9\x20\xb0\x43\x41\x86\x2a\x25\xec\xa0\xad\x2f\xf1\x12\x90\x5f\x34\x04\x81\x38\x65\x5b\x35\x04\x61\xff\x30\x9d\xc5\xc8\xc4\x69\x5b\xbd\x5c\x01\xfa\xe4\x26\xb5\xf2\xe1\xfd\xe4\x05\xaa\xe6\xce\x4a\x8c\xcd\x9b\x3e\x7c\xfa\x38\xc2\x9f\x00\x00\x86\x8f\x21\x39\x93\x5c\xfb\x5c\x51\x19\xe3\xf9\xee\x08\xa2\x9b\x4c\x30\xe0\x34\x8e\x1a\xe5\x28\x54\x79\xee\xb9\x54\x27\xdb\xf0\x1b\x3b\xc7\xfb\x5f\xca\x74\x34\xc2\xf3\xd4\xff\x3b\xf3\xf7\xa7\x25\x53\x46\xf7\xf8\xf1\x05\x27\xa8\xa8\x15\x76\xaa\xa2\xe8\xf7\x00\xf6\xf9\x51\x5d\x5f\xc3\xde\xad\xf8\xbe\x93\xb7\xe5\x99\x67\xf9\xa9\x64\x3b\xba\xc8\xeb\xcf\x64\x82\x46\x59\x9d\x87\x4f\x09\x77\xa6\xf7\x4a\xe0\xa5\xc0\x51\xd9\xbb\x7a\x83\xf5\xe4\x11\x8e\x7e\x34\x74\xa0\xbc\x13\x7a\xa4\xeb\x21\x49\xab\xd3\xe2\xac\x87\xbd\xb9\x78\xec\xef\xff\x3c\xfe\x27\xb8\xfa\xec\xef\xb3\x88\x63\xf0\x37\x00\x00\xff\xff\x84\xab\xee\x33\xd4\x02\x00\x00" func stakingcollectionStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5510,11 +5510,11 @@ func stakingcollectionStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0x8e, 0x32, 0xe0, 0x5e, 0x34, 0x11, 0x60, 0x2d, 0xf1, 0x4f, 0xad, 0x4e, 0x59, 0x3e, 0x2e, 0x5d, 0x31, 0xfd, 0x3d, 0x36, 0x15, 0xf8, 0x38, 0x97, 0x41, 0x38, 0xf, 0xdd, 0x44, 0xc6, 0x7a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x4a, 0xab, 0xd7, 0x77, 0x3e, 0x68, 0x59, 0x49, 0xf9, 0x66, 0xa6, 0xf0, 0xe1, 0xb6, 0x2d, 0x6f, 0x75, 0xae, 0xd4, 0x77, 0xa4, 0xf5, 0xe2, 0x8, 0xe3, 0x68, 0xf1, 0xef, 0xcf, 0x7e, 0x8d}} return a, nil } -var _stakingcollectionStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xdd\xca\xda\x40\x10\xbd\xcf\x53\x1c\xbc\x28\x11\x44\x4b\x5b\x7a\x11\xda\x4a\x88\x5a\x42\x45\x8b\xd1\x07\xd8\x26\x93\xb8\x98\xec\x84\xcd\x04\x85\xe2\xbb\x7f\x24\xeb\xcf\xc7\xa7\x17\xee\xc5\x2e\x73\xd8\x3d\xe7\xec\x9c\xd1\x55\xcd\x56\xb0\x28\xf9\x98\x88\x3a\x68\x53\x44\x5c\x96\x94\x8a\x66\x83\xdc\x72\x85\xcf\xa7\x64\x1b\xfe\x89\x57\xbf\xa3\xf5\x72\x39\x8f\xb6\xf1\x7a\x15\xce\x66\x9b\x79\x92\x78\xde\x64\x32\x41\xc4\x55\xa5\xa5\x41\x6b\x1a\x51\x07\xca\x20\x7c\x20\xd3\x40\x18\x3d\x80\x9c\x2d\x64\x4f\x68\x6a\x4a\x75\xae\x29\x83\xe1\x8c\xc0\x16\x19\x95\x54\x28\x61\x0b\x6d\xdc\x15\x67\x01\xe9\xcd\x83\xe7\x89\x55\xa6\x51\x7d\xe1\x77\x0f\xe3\x59\x80\x44\xac\x36\xc5\xe8\x4e\xd0\x81\xbb\xd8\xc8\xd7\x2f\xd3\x11\x54\xc5\xad\x91\x00\xbb\x85\x3e\x7d\xff\x36\xc4\x7f\x0f\x00\xfa\xad\x24\xb9\x8a\xdc\xff\xb9\xa1\x3c\xc0\xa7\xa7\x2d\x18\x3f\x20\x5e\xcf\x53\x5b\xaa\x95\x25\x5f\xa5\xa9\xd3\x0a\x5b\xd9\x87\xae\xb8\x0a\x76\xab\xa1\x32\x1f\x3f\x13\xc4\x4f\x5c\xde\x8e\xff\xb1\xb5\x7c\xfc\xf1\xaa\x81\x5f\x7e\x17\x4b\xf0\x3c\xb2\xc7\xeb\x89\xb0\x55\x05\xfd\x55\xb2\x1f\xde\x6c\x75\x6b\x3a\x45\xad\x8c\x4e\xfd\x41\xc4\x6d\xd9\x85\x22\x70\x56\x60\x29\xef\xe2\x7b\xe0\x1a\x38\x86\xb3\xeb\x01\x9d\x28\x6d\x85\x5e\xf9\x6d\x0f\xd2\xee\x32\x21\xdb\x7e\x40\x6e\x61\xba\xf3\x43\x98\xef\x8a\x7b\xa0\xee\xbc\x9a\x38\x7b\x6f\x01\x00\x00\xff\xff\x3a\x54\x8d\x83\xbd\x02\x00\x00" +var _stakingcollectionStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\x4d\xab\xdb\x30\x10\xbc\xfb\x57\x0c\xef\xf0\x70\xe0\xe1\x94\xb6\xf4\x60\xda\x86\xd4\x79\xaf\x98\x86\xa4\xc4\x49\xef\xaa\xbd\x76\x44\x64\xad\x91\xd7\x24\x50\xf2\xdf\x8b\xad\x7c\x94\x26\x87\xe8\x60\xa1\xb1\x34\x33\xbb\xb3\xba\x6e\xd8\x09\xde\x0c\xef\x33\x51\x3b\x6d\xab\x84\x8d\xa1\x5c\x34\x5b\x94\x8e\x6b\xbc\x3b\x64\xeb\xe9\x8f\x74\xf1\x3d\x59\xce\xe7\xaf\xc9\x3a\x5d\x2e\xa6\xb3\xd9\xea\x35\xcb\x82\x60\x3c\x1e\x23\xe1\xba\xd6\xd2\xa2\xb3\xad\xa8\x1d\x15\x10\xde\x91\x6d\x21\x8c\x01\x40\xc9\x0e\xb2\x25\xb4\x0d\xe5\xba\xd4\x54\xc0\x72\x41\x60\x87\x82\x0c\x55\x4a\xd8\x41\x5b\x7f\xc5\x5b\x40\x7e\xf1\x10\x04\xe2\x94\x6d\xd5\x70\x08\xfb\x87\xe9\x2c\x46\x26\x4e\xdb\xea\xe5\x4a\xd0\x83\x9b\xd4\xca\x87\xf7\x93\x17\xa8\x9a\x3b\x2b\x31\x36\x6f\xfa\xf0\xe9\xe3\x08\x7f\x02\x00\x18\x3e\x86\xe4\x2c\x72\xad\x73\x45\x65\x8c\xe7\xbb\x2d\x88\x6e\x90\x60\xe0\x69\x1c\x35\xca\x51\xa8\xf2\xdc\x6b\xa9\x4e\xb6\xe1\x37\x76\x8e\xf7\xbf\x94\xe9\x68\x84\xe7\xa9\xff\x77\xd6\xef\x57\x4b\xa6\x8c\xee\xe9\xe3\x0b\x4e\x54\x51\x2b\xec\x54\x45\xd1\xef\x81\xec\xf3\xa3\xbe\xbe\x86\x7d\x5a\xf1\xfd\x24\x6f\xaf\x67\x5e\xe5\xa7\x92\xed\xe8\x62\xaf\x5f\x93\x09\x1a\x65\x75\x1e\x3e\x25\xdc\x99\x3e\x2b\x81\xb7\x02\x47\x65\x9f\xea\x0d\xd7\x93\x67\x38\xfa\xd6\xd0\x81\xf2\x4e\xe8\x91\xaa\x07\x90\x36\xa7\xc1\x59\x0f\x73\x73\xc9\xd8\xef\xff\x65\xfc\xcf\xe1\x9a\xb3\xdf\xcf\x26\x8e\xc1\xdf\x00\x00\x00\xff\xff\x0a\x6a\x2f\x6d\xd4\x02\x00\x00" func stakingcollectionStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5530,11 +5530,11 @@ func stakingcollectionStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa1, 0xa8, 0x7b, 0xe7, 0xd6, 0xdb, 0x84, 0x37, 0x16, 0xe4, 0x35, 0x22, 0x17, 0xe6, 0x1a, 0xc, 0x64, 0xda, 0x5a, 0x5a, 0xd1, 0x7a, 0x73, 0x9c, 0x6e, 0x62, 0xd, 0x8d, 0xab, 0x32, 0x7d, 0x4d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xc6, 0xe7, 0x7d, 0xaa, 0x7f, 0x55, 0xa2, 0x38, 0x5d, 0x28, 0x71, 0xa6, 0x68, 0xd5, 0x12, 0x81, 0xab, 0x11, 0xb4, 0x27, 0x8c, 0x2f, 0xaa, 0x71, 0xe1, 0x4, 0xad, 0x25, 0xf3, 0x7a, 0xb6}} return a, nil } -var _stakingcollectionTestDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x8e\x9b\x40\x0c\xbd\xf3\x15\x56\x0e\x15\x39\x2c\xf4\x50\xf5\x10\xa5\x5d\x21\x42\xaa\x55\xd0\x52\x2d\x6c\x7b\x9e\x05\x43\x46\x99\x8c\xd1\x8c\xd1\x6e\x55\xed\xbf\x57\x30\xc9\x28\x34\xa9\x54\x2e\x68\xec\xf7\xec\xf7\x6c\xcb\x63\x4f\x86\x61\xab\xe8\xb5\x64\x71\x90\xba\x4b\x49\x29\xac\x59\x92\x86\xd6\xd0\x11\x3e\xbe\x95\x55\xb2\x7b\x78\xfc\x96\x16\x79\x9e\xa5\xd5\x43\xf1\x98\x6c\x36\x4f\x59\x59\x06\x17\xe4\x8a\x0e\x78\x22\x2c\xfc\x7b\xe1\x11\x83\xee\xe4\x8b\xc2\x19\xea\x32\xe6\x91\x39\xd5\x07\x6c\xa6\x98\x3d\xf7\xcf\x8b\x74\x97\x6d\xaa\x62\x97\xf9\xce\x41\x1c\xc3\xb3\xc5\x06\x48\xab\x5f\xd0\x92\x01\x46\xcb\xd0\x0f\xa6\x27\x8b\x16\x98\x5c\x80\xf7\x08\x0d\xf6\x64\x25\x03\xbb\xe6\x83\x76\xe6\xa4\x9e\xb2\xd6\xb9\x86\xda\xdb\x0e\x02\x36\x42\x5b\x31\x3d\x42\x71\xa4\x41\xf3\x0a\x9e\xb7\xf2\xed\xf3\xa7\x25\xfc\x0e\x02\x00\x80\xde\x60\x2f\x0c\x86\x56\x76\x1a\xcd\x0a\x92\x81\xf7\x49\x5d\x8f\x58\x8f\x19\x3f\x85\x7c\x51\xfa\x09\x5b\xf8\x02\x8e\x13\xbd\x90\x31\xf4\xba\xfe\x70\x73\xf6\xd1\x55\xe4\x6b\x38\x8e\x63\x75\x7b\x55\xd7\xf0\x92\xc9\x88\x0e\xbf\x0b\xde\x2f\xbd\x9a\xf1\xbb\xbf\x87\x5e\x68\x59\x87\x8b\x94\x06\xd5\x80\x26\x06\x27\x05\x04\x18\x6c\xd1\xa0\xae\x71\x9a\xe0\xcd\xf1\x2c\x96\x73\x77\xed\x79\xdb\xff\x34\x37\x65\xa3\x1f\x62\x50\x7c\x36\x11\x5b\x27\x2f\xf6\xec\x29\xfd\xdf\x4a\x67\x3a\xb7\x79\xf1\x13\x26\xfe\xdf\xda\xd8\xdd\xd1\xfa\x6e\xbe\x83\xa8\x43\x76\x27\xe6\xd7\xeb\xfe\xf3\xfe\xfe\x31\x27\x9f\xee\xe9\x54\xc0\xf9\x59\xdf\xb9\x56\xae\xc0\x7b\xf0\xfe\x27\x00\x00\xff\xff\xf0\x15\xfa\x02\x58\x03\x00\x00" +var _stakingcollectionTestDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xdb\x30\x0c\xbd\xfb\x2b\x88\x1c\x0a\xe7\x50\x67\x87\x61\x87\x20\x5b\x91\x39\xc9\x50\xc4\xa8\x87\x3a\xed\xce\xaa\x43\x3b\x42\x14\xd1\x90\x28\xb4\xc3\xd0\x7f\x1f\x22\x39\x42\xbc\x04\x58\x7d\x31\x48\xbd\xc7\xc7\x47\x52\x1e\x3a\x32\x0c\x2b\x45\xaf\x15\x8b\xbd\xd4\x6d\x4e\x4a\x61\xcd\x92\x34\x34\x86\x0e\xf0\xe9\xad\xda\xcc\xd7\xf7\x0f\x3f\xf2\xb2\x28\x96\xf9\xe6\xbe\x7c\x98\x2f\x16\x8f\xcb\xaa\x4a\xce\xc8\x1b\xda\x63\x4f\x18\xc5\x78\x14\x11\x4e\xb7\xf2\x45\xe1\x00\x75\x9e\x8b\xc8\x82\xea\x3d\x6e\x7d\xce\x9e\xf4\x8b\x32\x5f\x2f\x17\x9b\x72\xbd\x8c\xca\xc9\x64\x02\x4f\x16\xb7\x40\x5a\xfd\x86\x86\x0c\x30\x5a\x86\xce\x99\x8e\x2c\x5a\x60\x0a\x09\xde\x21\x6c\xb1\x23\x2b\x19\x38\x88\x3b\x1d\xcc\x49\xed\x5f\x6d\x70\x0d\x75\xb4\x9d\x24\x6c\x84\xb6\xc2\x07\xa9\x38\x90\xd3\x3c\x85\xa7\x95\x7c\xfb\xf2\x79\x0c\x7f\x92\x04\x00\xa0\x33\xd8\x09\x83\xa9\x95\xad\x46\x33\x05\xe1\x78\x97\x7e\x27\x63\xe8\xf5\x59\x28\x87\x63\xb8\x99\xd7\xf5\x91\x1a\x29\xc7\x4f\x21\x9f\x29\x3d\x62\x03\x5f\x21\x94\xc8\x2c\x93\x11\x2d\x66\x2f\xbe\xc8\xec\xe6\xea\x4a\xb2\x8b\xcc\xb7\xf4\x38\xa5\xe9\xf5\x0d\x5e\xc2\xab\xa0\xf2\x53\xf0\x6e\x1c\xbb\x3a\x7e\x77\x77\xd0\x09\x2d\xeb\x74\x94\x93\x53\x5b\xd0\xc4\x10\x5a\x01\x01\x06\x1b\x34\xa8\x6b\xf4\x83\xbd\x3a\xb5\xd1\x78\xe8\xb2\x39\x1d\xc1\x7f\x4d\x7a\x54\xf6\x2c\x9c\xe2\x93\x99\x49\x8f\x9b\xc4\x2a\xfe\xf9\xc3\x1d\x0f\xfa\x5d\x15\xe5\x2f\xf0\xfc\x7f\x7b\xe4\x70\x66\xb3\xdb\xe1\x4e\xb2\x16\x39\x5c\x60\xdc\x7e\xf8\x0f\xf5\x63\x30\x24\xf7\xe7\xd6\x17\x08\x7e\x66\xb7\x41\x2a\x14\x78\x4f\xde\xff\x06\x00\x00\xff\xff\x8b\x69\xe0\x44\x77\x03\x00\x00" func stakingcollectionTestDeposit_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5550,11 +5550,11 @@ func stakingcollectionTestDeposit_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/test/deposit_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0xc5, 0x20, 0x7d, 0xb3, 0xdb, 0xdc, 0x38, 0x2d, 0x78, 0xd7, 0x9c, 0xb9, 0xb9, 0x51, 0xb, 0x50, 0x6e, 0x9f, 0x8c, 0x96, 0x92, 0xc8, 0xa4, 0x28, 0xc3, 0xac, 0xb8, 0xf8, 0x50, 0x30, 0xb8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x48, 0x87, 0x5e, 0x7b, 0x52, 0x17, 0x14, 0xf2, 0x56, 0xd1, 0x1, 0x9d, 0x2f, 0xf5, 0x8a, 0x7a, 0xcf, 0xdf, 0x3d, 0x7d, 0x45, 0x85, 0xae, 0xcc, 0xb7, 0xf4, 0xde, 0x3b, 0xa7, 0xfb, 0xb9, 0x2f}} return a, nil } -var _stakingcollectionTestGet_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\x5d\xaf\x9a\x40\x10\x7d\xdf\x5f\x31\xe1\xa1\xc1\x87\x7a\xfb\xd0\xf4\xc1\xdc\xf6\x86\x20\x36\x46\x22\x8d\xe0\x0f\x58\x61\xc0\x8d\xb8\x43\x76\x87\xa8\x69\xfc\xef\x0d\x1f\xdd\x2b\xd1\x7d\x21\x73\x38\x73\x66\xce\x19\x75\x6e\xc8\x30\xac\x6a\xba\xa4\x2c\x4f\x4a\x57\x21\xd5\x35\xe6\xac\x48\x43\x69\xe8\x0c\xdf\xae\x69\x16\x6c\xd6\xdb\xdf\x61\x12\xc7\x51\x98\xad\x93\x6d\xb0\x5c\xee\xa2\x34\x15\x0f\xcd\x19\x9d\x70\x6c\xf0\x5c\xed\x39\x46\xab\x2b\x75\xa8\x71\xc2\x7a\xc4\x1c\x33\xa6\xfc\x84\x45\x8f\xd9\xff\xf3\xe3\x24\xdc\x44\xcb\x2c\xd9\x44\x6e\xb2\x78\x7b\x83\xbd\xc5\x02\x48\xd7\x37\x28\xc9\x00\xa3\x65\x68\x5a\xd3\x90\x45\x0b\x4c\x03\xc0\x47\x84\x0a\x19\x78\x14\x6c\xf5\xe0\x4c\xe9\xfe\x97\x1d\x2c\x43\xee\x3c\x0b\xc1\x46\x6a\x2b\xfb\xc2\x97\x67\x6a\x35\x2f\x60\xbf\x52\xd7\x1f\xdf\x67\xf0\x57\x08\x00\x80\xc6\x60\x23\x0d\xfa\x56\x55\x1a\xcd\x02\x82\x96\x8f\x41\x9e\x77\x5c\xc7\xe9\x5e\x8d\xfc\x20\xbd\xc3\x12\x7e\xc2\xd0\x33\x3f\x90\x31\x74\x79\xff\xf2\x32\xf8\xf9\x13\xf2\xcb\xef\xb2\x58\xbc\xbe\xd3\x33\x3d\x65\x32\xb2\xc2\x3f\x92\x8f\x33\xb7\x4d\xf7\x3e\x3e\xa0\x91\x5a\xe5\xbe\x17\x52\x5b\x17\xa0\x89\x61\x58\x05\x24\x18\x2c\xd1\xa0\xce\xb1\x8f\xef\x65\x3c\xde\x54\x6e\xe2\x74\xcc\xf8\xfd\xeb\xd4\xf3\xbc\x42\x1e\xee\xe9\xe2\x1c\xbe\xb3\xcf\xa0\x0a\xb4\x6c\xe8\x36\x4a\xf4\xf0\x5d\xdc\x05\xfc\x0b\x00\x00\xff\xff\xc7\xea\x46\x26\x9e\x02\x00\x00" +var _stakingcollectionTestGet_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\xc1\x6e\x9c\x30\x10\xbd\xfb\x2b\x46\x1c\x22\x38\x94\xf4\x50\xf5\xb0\x4a\x1b\x6d\x59\x52\x45\x8b\x42\x15\x48\xef\x0e\x0c\xac\xb5\x5e\x0f\xb2\x07\x25\x51\x95\x7f\xaf\xc0\xd4\x5d\x94\xf5\x05\xf9\x31\xef\x3d\xbf\x37\xea\x34\x90\x65\xb8\xd3\xf4\x52\xb1\x3c\x2a\xd3\x67\xa4\x35\x36\xac\xc8\x40\x67\xe9\x04\x9f\x5f\xab\x7a\xbb\xbf\x7f\xf8\x99\x95\x45\x91\x67\xf5\x7d\xf9\xb0\xdd\xed\x1e\xf3\xaa\x12\x67\xe4\x9a\x8e\xb8\x10\xa2\x70\x8f\xc2\xc4\x68\x7a\xf5\xac\x71\x35\x75\x8e\x85\xc9\x82\x9a\x23\xb6\x33\xe6\xfe\xf9\x17\x65\xb6\xcf\x77\x75\xb9\xcf\x83\xb3\xb8\xbe\x86\x27\x87\x2d\x90\xd1\x6f\xd0\x91\x05\x46\xc7\x30\x8c\x76\x20\x87\x0e\x98\x3c\xc0\x07\x84\x1e\x19\x78\x11\x1c\x8d\x4f\xa6\xcc\xfc\xcb\xf9\xc8\xd0\x84\xcc\x42\xb0\x95\xc6\xc9\xf9\x12\xcb\x13\x8d\x86\x37\xf0\x74\xa7\x5e\xbf\x7e\x49\xe0\x8f\x10\x00\x00\x83\xc5\x41\x5a\x8c\x9d\xea\x0d\xda\x0d\xc8\x91\x0f\xf1\x0f\xb2\x96\x5e\x7e\x4b\x3d\x62\x02\x57\xdb\xa6\x99\xa8\x81\x32\x1d\x8d\x7c\xe6\xf4\x88\x1d\x7c\x03\x2f\x91\x3a\x26\x2b\x7b\x4c\x9f\x67\x91\x9b\xab\x8b\xfb\x48\x3f\x20\xdf\xe3\xa9\xa2\xcd\xe5\xf5\x7d\x1c\xaf\xbc\xcb\x2f\xc9\x87\x24\xbc\x6a\x3a\xb7\xb7\x30\x48\xa3\x9a\x38\xca\x68\xd4\x2d\x18\x62\xf0\x4f\x01\x09\x16\x3b\xb4\x68\x1a\x9c\x5b\xbd\xd8\x5a\xb4\x96\x5b\x25\x5e\xaa\xbf\xf9\xb4\xce\x9e\xf6\xc8\x7e\xcd\xa1\x65\xff\x4d\xfe\x17\xd6\xa2\x63\x4b\x6f\x8b\xc4\x0c\xbf\x8b\x77\x01\x7f\x03\x00\x00\xff\xff\xfa\xfa\xbc\x74\xb5\x02\x00\x00" func stakingcollectionTestGet_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5570,11 +5570,11 @@ func stakingcollectionTestGet_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/test/get_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5c, 0x3c, 0x3c, 0x18, 0x89, 0xc7, 0xbd, 0x6, 0x3, 0xe, 0x33, 0x90, 0x3, 0x9f, 0x9b, 0x7, 0x29, 0xc1, 0x6c, 0x55, 0xde, 0xfa, 0xa, 0xc4, 0xe3, 0x97, 0x57, 0xb9, 0x10, 0x92, 0xa, 0x52}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xda, 0x38, 0xd6, 0x4, 0x2, 0xd9, 0xe5, 0x29, 0x51, 0x45, 0x1e, 0xec, 0x80, 0xe1, 0x46, 0x13, 0x81, 0x2e, 0x85, 0xac, 0xa2, 0xfa, 0xa0, 0xaa, 0x29, 0x45, 0x2b, 0x53, 0x5b, 0xc8, 0xfe, 0xc2}} return a, nil } -var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5d\x4f\xdb\x40\x10\x7c\xcf\xaf\x58\x78\xa8\x1c\x09\x4c\xd5\xbe\x45\x7c\x28\x4d\x28\x8d\x8a\x00\x11\xfa\x03\x36\xbe\xb5\x7d\xad\x73\x6b\x9d\xd7\x01\x8a\xf8\xef\xd5\x9d\x3f\x88\xb1\xdb\x06\x89\xbc\x44\x67\xef\xcd\xcd\xce\xcc\xfa\xf4\x3a\x67\x2b\xf0\x35\xe3\xfb\xa5\xe0\x2f\x6d\x92\x19\x67\x19\x45\xa2\xd9\x40\x6c\x79\x0d\x1f\x1f\x96\x77\xd3\xef\x8b\xab\x8b\xd9\xf5\xe5\xe5\xf9\xec\x6e\x71\x7d\x35\x9d\xcf\x6f\xcf\x97\xcb\xd1\xe8\xe8\x08\xee\x2c\x9a\x22\x26\x5b\x00\xc2\x15\x2b\x9a\x53\x46\x09\x0a\x5b\xe0\xd5\x4f\x8a\xa4\x02\x41\x03\x58\x4a\xca\x56\xff\xf6\xa5\x51\xc4\x5c\x1a\x71\x00\x68\x14\xa0\x52\x05\x48\x4a\xaf\x10\x84\x01\x0d\x4b\x4a\xd6\xef\x28\x8d\x14\x50\xb3\x84\x17\x9a\x0e\x44\x2b\x32\xa2\x63\x4d\x0a\x56\x8f\x1e\x49\x18\xa6\x4a\x59\x2a\x8a\x70\x34\x12\x47\x12\x7d\x75\x60\x58\xd1\x62\x3e\x81\xa5\x58\x6d\x92\x03\x50\xcd\x71\xee\xe1\x8f\x85\x91\xcf\x9f\x0e\x40\x78\xd2\x6c\x1f\xc3\xd3\x08\x00\x20\xa3\xaa\x97\x9e\x4c\xb7\x14\x4f\xe0\xc3\xa0\x82\x61\xef\x49\x0b\x25\xdc\x7b\x37\xc3\x7c\x77\xa0\xa7\x1d\xeb\x6e\xca\x55\xa6\xa3\xe7\x91\x3f\x38\xb7\x94\xa3\xa5\xa0\x56\x73\x02\xd3\x52\xd2\x69\xb5\x68\xfa\x74\x3f\xe7\x6b\x4a\x8d\xe8\x4e\x4b\xa9\x6d\x1e\x70\xa9\xf6\x59\x18\xd6\x65\x21\x90\xe2\x86\x00\x61\x83\x99\x56\x03\x6e\x81\x36\xc0\x56\x91\x77\xd7\x52\x44\x7a\x43\x7d\xd0\xb0\xa5\xa2\x63\x08\xf6\x86\x7b\x55\x4c\x45\x4d\xfe\x1b\x6e\xa8\x57\x10\x60\xe5\xe0\x04\x84\xc7\xdb\xed\x79\x29\xd0\xe8\x28\xd8\x9f\x53\x21\xda\xa0\x67\xd6\xb4\xbb\xdd\xc6\x40\x03\x05\x09\x94\x79\xb8\x3f\x6e\xf1\x6a\x75\x6b\xe5\x2e\x48\x00\xc1\x52\x4c\x96\x4c\xe4\x93\xe8\xfa\xdb\xce\xff\x70\x2c\xdc\xaf\xa0\x2c\x0e\xff\x16\x33\x38\x69\x38\x86\x2b\xb6\x96\xef\x8f\x77\x4d\xcb\x69\xe0\x30\x27\xc3\x73\xde\x2f\x5f\x0a\x5b\x4c\xe8\x06\x25\x1d\x77\x54\x3b\x3b\x6b\x84\x9b\x71\x99\x29\x30\x2c\x50\x51\x71\x0d\xbb\x56\x7b\x58\xfb\xe3\x9e\x3a\x4e\x8e\x2a\x97\xb5\x7d\xc0\x71\xa5\xd1\x4e\x81\x13\x0e\xa1\x85\xac\x66\xa9\xc1\x39\x81\x84\xa4\x5e\x04\xc2\xdd\xa3\xbf\x54\x44\x11\x22\xcc\x71\xa5\x33\x2d\x8f\x8d\x39\xb9\x67\x03\x6b\x92\x94\x55\x01\xb8\x41\x9d\xe1\x2a\x23\x60\xe3\xdf\xd7\x41\x1d\xb2\x2e\xec\x7a\x37\x3c\xd7\x70\xf2\x42\x32\x4c\x48\x66\x2d\x83\x9d\x2d\x7c\xe3\xc0\x9f\x06\x6f\xaa\xf7\x56\xd7\xa9\x0a\xde\xc3\xf3\xad\xb9\xa0\x07\x8a\x4a\xa1\xee\xf7\xe5\x96\xd6\x3c\x34\xf9\xd5\x7d\xf1\xdf\x81\x09\x3b\x01\x30\x1d\x84\xe3\xc3\x7f\x8f\x51\x68\xfd\xd9\xed\x86\xf6\x4a\xa8\xfe\x5f\x5d\x09\x5b\x8b\x6e\x9c\xe6\x94\x73\xa1\x65\xf8\xde\x7a\x8f\xd0\x84\xa8\x54\x0b\x7a\xed\xbf\xb2\xc1\xf1\x61\xb7\xd9\xbd\x46\xe9\xe7\x3f\x01\x00\x00\xff\xff\xe4\x62\x1c\xe8\xca\x07\x00\x00" +var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5d\x4f\xdb\x4a\x10\x7d\xcf\xaf\x18\x78\x40\x8e\x04\xcb\xd5\xbd\x6f\x11\x1f\xca\x4d\x28\x8d\x8a\x00\x11\xda\xf7\x89\x77\x9c\x6c\xeb\xec\x58\xbb\xe3\x00\x45\xfc\xf7\xca\xeb\x0f\x62\xec\xb6\x41\xc2\x2f\x96\xbd\xb3\x67\x66\xce\x39\xb3\x6b\xd6\x19\x3b\x81\x4f\x29\x3f\xcc\x05\x7f\x18\xbb\x9c\x70\x9a\x52\x2c\x86\x2d\x24\x8e\xd7\xf0\xcf\xe3\xfc\x7e\xfc\x65\x76\x7d\x39\xb9\xb9\xba\xba\x98\xdc\xcf\x6e\xae\xc7\xd3\xe9\xdd\xc5\x7c\x3e\x18\x1c\x1f\xc3\xbd\x43\xeb\x13\x72\x1e\x10\xae\x59\xd3\x94\x52\x5a\xa2\xb0\x03\x5e\x7c\xa7\x58\x4a\x10\xb4\x80\xb9\xac\xd8\x99\x9f\x21\x34\x8e\x99\x73\x2b\x05\x00\x5a\x0d\xa8\xb5\x07\x59\xd1\x1b\x04\x61\x40\xcb\xb2\x22\x17\x76\xe4\x56\x3c\x54\x55\xc2\x6b\x99\x05\x88\xd1\x64\xc5\x24\x86\x34\x2c\x9e\x02\x92\x30\x8c\xb5\x76\xe4\xbd\x1a\x0c\xa4\x28\x12\x43\x74\x64\x59\xd3\x6c\x3a\x82\xb9\x38\x63\x97\x87\xa0\xeb\x74\xc5\xcf\xaf\x33\x2b\xff\xfd\x7b\x08\xc2\xa3\x7a\xfb\x10\x9e\x07\x00\x00\x29\x95\xbd\x74\x68\xba\xa3\x64\x04\x07\xbd\x0c\xaa\xce\x9f\x06\x4a\xb8\xb3\x36\xc1\x6c\x77\xa0\xe7\x1d\xe3\x6e\xf3\x45\x6a\xe2\x97\x41\x48\x9c\x39\xca\xd0\x51\x54\xb1\x39\x0a\xa2\x44\xff\xb3\x73\xfc\xf0\x0d\xd3\x9c\x86\x70\x30\x2e\xd7\xea\xb6\x8b\xa7\x90\x79\x45\xb5\x06\x05\xb5\x52\xa9\xde\x23\x5a\x25\xbb\x30\xac\x73\x2f\xb0\xc2\x0d\x01\xc2\x06\x53\xa3\x7b\xc4\x03\x63\x81\x9d\xa6\x20\xb6\xa3\x98\xcc\x86\xba\xa0\xaa\x29\xc5\x24\x10\xed\xf5\xb7\xae\x99\x7c\x55\xfc\x67\xdc\x50\x27\x20\xc2\x52\xd0\x11\x08\x0f\xb7\xdb\x0b\xcc\xa0\x35\x71\xb4\x3f\x25\x2f\xc6\x62\xa8\xac\x6e\x77\xbb\x8d\x9e\x06\x3c\x09\xe4\x99\xda\x1f\x36\x78\x15\xd9\x15\x73\x97\x24\x80\xe0\x28\x21\x47\x36\x0e\xc6\x2c\xfa\xdb\x1e\x87\x7e\x97\x14\x8f\xa7\x34\x51\xbf\x73\x1d\x9c\xd6\x35\x2a\x2f\xec\x70\x49\x6a\x11\xa4\x3c\xd9\xd5\x44\x67\x51\x81\x3d\xea\x1f\xff\x6e\xf8\xbc\xcc\x72\x8b\xb2\x1a\xb6\xd8\x3b\x3f\xaf\x09\x9c\x70\x9e\x6a\xb0\x2c\x50\x96\x52\x34\x5e\xb4\xdc\xc1\xda\x1f\x76\x58\x2a\x68\x29\xed\x5a\xc9\x08\x9c\x94\x5c\xed\x64\x3c\x61\x05\x0d\x64\x39\x62\x35\xce\x29\x2c\x49\xaa\x8f\x48\xb8\x9d\xba\xb4\x3f\x20\xc4\x98\xe1\xc2\xa4\x46\x9e\x6a\x91\xb2\x50\x0d\xac\x49\x56\xac\x3d\xe0\x06\x4d\x8a\x8b\x94\x80\x6d\x58\xaf\x0c\xdb\x27\xa1\x6a\x6b\xd8\x3f\xee\x70\xfa\x5a\xa4\x6a\xd2\x1b\xf2\x2d\x76\xd5\x92\x64\x67\x49\xdf\x79\x2e\x9c\x45\xef\x8a\x0f\xd2\xef\xb5\xab\x2b\x85\x8e\x3e\xc2\x11\x5b\xd3\x43\x8f\x14\xe7\x42\xed\x53\xe8\x8e\xd6\xdc\x77\x3e\x94\x97\xcc\x5f\xc7\x4a\xb5\xec\x61\x5b\x08\x27\x47\x7f\x1e\x36\xe5\x42\xee\x66\x43\x73\x8f\x94\xef\x37\xf7\xc8\xd6\x47\xdb\x6c\x53\xca\xd8\x1b\xe9\xbf\xec\x3e\xc2\x52\x0a\xb5\x6e\x40\x6f\xc2\x59\x1c\x9d\x1c\xb5\x9b\xdd\xab\x99\x7e\xf9\x15\x00\x00\xff\xff\x1a\x64\x3e\x60\xff\x07\x00\x00" func stakingcollectionTransfer_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -5590,11 +5590,11 @@ func stakingcollectionTransfer_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/transfer_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xff, 0x7, 0xf, 0xbf, 0x6b, 0x6b, 0x4f, 0xdf, 0xea, 0x50, 0x55, 0xed, 0xb8, 0x6b, 0x3a, 0x3b, 0xeb, 0xff, 0x95, 0xda, 0x97, 0x68, 0x16, 0xce, 0x1e, 0xbb, 0x3e, 0x85, 0x63, 0xa5, 0x36, 0x63}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd7, 0xa4, 0x2e, 0xfd, 0xe1, 0xe1, 0x6e, 0x5b, 0x7e, 0x6b, 0x48, 0x6, 0x75, 0xfc, 0xa8, 0x1a, 0xae, 0xed, 0xa4, 0xdf, 0xbd, 0x7d, 0x3b, 0xb6, 0xfc, 0x51, 0x6f, 0x88, 0x20, 0x29, 0x2f, 0xff}} return a, nil } -var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5d\x4f\xdb\x4a\x10\x7d\xcf\xaf\x18\x78\xb8\x72\x24\x30\xf7\x39\x22\xa0\xdc\x84\x4b\xa3\x52\x40\x84\xb7\xaa\x0f\x13\xef\x38\xde\xd6\xd9\xb1\x76\xc7\xa1\x14\xf1\xdf\xab\xf5\xda\xf9\xc0\x6e\x13\x24\xf2\x12\xd9\x9e\x3d\x73\xe6\x9c\xb3\xbb\x7a\x59\xb0\x15\xf8\x3f\xe7\xa7\x99\xe0\x0f\x6d\x16\x63\xce\x73\x4a\x44\xb3\x81\xd4\xf2\x12\xfe\xfd\x39\x7b\x1c\x7d\x9e\xde\x5e\x8f\xef\x6e\x6e\xae\xc6\x8f\xd3\xbb\xdb\xd1\x64\xf2\x70\x35\x9b\xf5\x7a\x67\x67\xf0\x68\xd1\xb8\x94\xac\x03\x84\x5b\x56\xe4\x51\xc8\x02\xcf\xbf\x53\x22\x01\x01\x0d\x60\x29\x19\x5b\xfd\xab\xaa\x4b\x12\xe6\xd2\x88\x5f\x8d\x46\x01\x2a\xe5\x40\x32\xda\x5e\x2e\x0c\x68\x58\x32\xb2\x55\x79\x69\xc4\x41\xcd\x0f\x36\x04\x3d\x82\x56\x64\x44\xa7\x9a\x14\xcc\x9f\x2b\x18\x61\x18\x29\x65\xc9\xb9\xb8\xd7\x13\x4f\x0f\xab\xea\xc8\xb0\xa2\xe9\x64\x00\x33\xb1\xda\x2c\x4e\x40\x78\xd0\x54\xf6\xe1\xa5\x07\x00\x90\x53\xe0\xdc\xd2\xe2\x81\xd2\x01\xfc\xd3\x29\x53\xdc\x7a\xb3\x86\x12\x6e\x7d\x1b\x63\x71\x38\xd0\xcb\x81\x75\xf7\xe5\x3c\xd7\xc9\x6b\xaf\x6a\x5c\x58\x2a\xd0\x52\x54\x0b\x37\x80\x51\x29\xd9\x28\x3c\x34\x73\xfa\x9f\x37\x2f\xa3\x46\x5f\x2f\x9b\xd4\x5e\xbe\x75\xa3\x36\x53\x18\x96\xa5\x13\xc8\x70\x45\x80\xb0\xc2\x5c\xab\x0e\x57\x40\x1b\x60\xab\x82\x8b\x96\x12\xd2\x2b\x7a\x83\x18\xaf\x49\xe8\x14\xa2\xa3\xee\x29\x15\x93\xab\x69\x7f\xc2\x15\xb5\x0a\x22\x0c\xde\x0d\x40\xb8\xbf\x3d\x58\x25\x02\x1a\x9d\x44\xc7\x13\x72\xa2\x0d\x56\xb4\x9a\x41\xb7\x67\xe8\x60\xef\x48\xa0\x2c\xe2\xe3\xfe\x1a\xaf\xd6\xb5\xd6\xec\x9a\x04\x10\x2c\xa5\x64\xc9\x24\x55\xdc\xfc\x70\xdb\x09\xef\x0e\x84\xff\x39\xca\xd3\xf8\x4f\x01\x83\x61\xc3\x31\x9e\xb3\xb5\xfc\x74\x7e\x68\x4e\x2e\x22\x8f\x39\xe8\xde\xc6\xed\xf2\x99\xb0\xc5\x05\xdd\xa3\x64\xfd\x1d\xd5\x2e\x2f\x1b\xe1\xc6\x5c\xe6\x0a\x0c\x0b\x04\x2a\x7e\x60\x3f\x6a\x0b\xeb\xb8\xdf\x52\xc7\xcb\x11\x12\x59\xdb\x07\x9c\x06\x8d\xf6\x47\x4d\x38\x86\x35\x5e\xd8\x42\x0d\xc8\x10\x16\x24\xf5\x43\x24\xbc\xdb\xf7\xbf\xc0\x12\x21\xc1\x02\xe7\x3a\xd7\xf2\xdc\x38\x53\x54\x54\x60\x49\x92\xb1\x72\x80\x2b\xd4\x39\xce\x73\x02\x36\xd5\xf7\x3a\xa2\x5d\xbe\xc5\xbb\xc6\x75\x6f\x67\x18\x6e\x48\xc6\x0b\x92\xf1\x9a\xc1\xc1\xfe\xbd\x73\x9f\x5f\x44\xef\xaa\xaf\x7c\xae\x23\x15\x7d\xa8\xe1\xde\xa0\x25\x26\x99\x36\x54\x0b\x30\x35\x29\xc3\xf0\xef\x39\xf7\x22\x7d\xd9\x59\xe5\xa2\xfe\xd7\x70\x3a\x7f\xdb\x4b\x6f\xb1\xe9\xb9\x0e\x94\xf6\x5d\x53\x0e\x69\x72\x05\x25\xe1\x42\xf0\x90\x30\x9d\xbc\x89\xe8\x03\x2d\xb9\x75\x22\x85\x9b\x6a\xef\x46\x8e\x77\x46\x37\x9b\xe5\xe7\xa7\x7b\x66\xb6\x55\x57\xdf\x70\x7d\x0f\x85\xff\x5d\x72\x13\x2a\xd8\x69\xe9\xb8\x0f\x3f\x22\xaa\x31\x2a\xe5\x51\xef\xaa\x03\x3d\x3a\x3f\xdd\x1a\xe1\xe8\xa4\xc3\xca\x41\xc7\xbb\x90\xa0\xd7\xde\xeb\xef\x00\x00\x00\xff\xff\x96\xaa\xe3\x77\x3c\x08\x00\x00" +var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x51\x4f\xdb\x30\x10\x7e\xef\xaf\x38\x78\x40\xa9\x04\x61\xcf\x15\x05\x75\x2d\x63\xd5\x18\x20\x8a\xf6\x32\xed\xc1\x8d\x2f\x8d\xb7\xd4\x17\xd9\x97\x32\x86\xf8\xef\x93\xed\xa4\x6d\x48\xb6\x16\x89\xbc\x54\x4d\xce\xdf\x7d\xf7\x7d\x9f\x6d\xb5\x2c\xc8\x30\x7c\xca\xe9\x71\xc6\xe2\x97\xd2\x8b\x31\xe5\x39\x26\xac\x48\x43\x6a\x68\x09\x1f\x7e\xcf\x1e\x46\x5f\xa6\x37\x57\xe3\xdb\xeb\xeb\xcb\xf1\xc3\xf4\xf6\x66\x34\x99\xdc\x5f\xce\x66\xbd\xde\xe9\x29\x3c\x18\xa1\x6d\x8a\xc6\x82\x80\x1b\x92\xe8\x50\xd0\x00\xcd\x7f\x62\xc2\x01\x41\x68\x10\x25\x67\x64\xd4\x1f\x5f\x97\x24\x44\xa5\x66\xb7\x5a\x68\x09\x42\x4a\x0b\x9c\xe1\xf6\x72\x26\x10\x9a\x38\x43\xe3\xcb\x4b\xcd\x16\x2a\x7e\xb0\x21\xe8\x10\x94\x44\xcd\x2a\x55\x28\x61\xfe\xe4\x61\x98\x60\x24\xa5\x41\x6b\xe3\x5e\x8f\x1d\x3d\xe1\xab\x23\x4d\x12\xa7\x93\x01\xcc\xd8\x28\xbd\x38\x06\xa6\x41\x5d\xd9\x87\xe7\x1e\x00\x40\x8e\x81\x73\x4b\x8b\x7b\x4c\x07\x70\xd4\x29\x53\xdc\x7a\xb3\x86\x62\x6a\x7d\x1b\x8b\x62\x7f\xa0\xe7\x3d\xeb\xee\xca\x79\xae\x92\x97\x9e\x6f\x5c\x18\x2c\x84\xc1\xa8\x12\x6e\xe0\xc5\x8f\x3e\x92\x31\xf4\xf8\x4d\xe4\x25\xf6\xe1\x68\x14\xbe\xd5\x63\xbb\xc7\x79\x99\x61\x2d\xb7\x53\x91\x2b\x6b\x5f\x9b\x53\x79\xcb\x04\xcb\xd2\x32\x64\x62\x85\x20\x60\x25\x72\x25\x3b\x4c\x02\xa5\x81\x8c\x0c\xa6\x1a\x4c\x50\xad\xf0\x15\x62\xbc\x26\xa1\x52\x88\x0e\xba\x87\x96\x84\xb6\xa2\xfd\x59\xac\xb0\x55\x10\x89\x60\xe5\x00\x98\xfa\xdb\x83\x79\x4d\x84\x56\x49\x74\x38\x41\xcb\x4a\x0b\x4f\xab\x1e\x74\x7b\x86\x0e\xf6\x16\x19\xca\x22\x3e\xec\xaf\xf1\x2a\x99\x2b\xcd\xae\x90\x41\x80\xc1\x14\x0d\xea\xc4\xa7\xcf\x0d\xb7\x1d\xf8\xee\x7c\xb8\xc7\x62\x9e\xc6\xff\xca\x1b\x0c\x6b\x8e\xb1\x65\x32\x62\x81\xf1\xdc\x9b\x78\xb6\x6f\x7c\xce\x23\x87\x3d\xe8\xde\xdd\xed\xf2\x59\xe8\x72\x27\x38\xeb\x37\xd4\xbb\xb8\xa8\x05\x1c\x53\x99\x4b\xd0\xc4\x10\xa8\xb8\xc1\xdd\xc8\x2d\xac\xc3\x7e\x4b\x25\x27\x4b\x08\x6a\x65\x23\x50\x1a\xb4\xda\x1d\x39\xa6\x18\xd6\x78\x61\x67\xd5\x20\x43\x58\x20\x57\x7f\x22\xa6\x66\xdf\x90\x7a\x10\x90\x88\x42\xcc\x55\xae\xf8\xa9\x76\xa8\xf0\x54\x60\x89\x9c\x91\xb4\x20\x56\x42\xe5\x62\x9e\x23\x90\xf6\xdf\xab\xa8\x76\xf9\x17\x37\x0d\xec\xde\xe5\x30\xdc\x90\x8c\xd7\xed\x15\xda\x86\xb4\xf1\x02\x79\x6f\x3f\xdf\x78\x1c\x9c\x47\x6f\xaa\xf7\xbe\x1f\x34\xd9\x05\x97\xa3\x77\x8d\x83\xb3\x6f\x29\x92\x4c\x69\xac\xe4\x99\xea\x94\x60\xf8\xff\xdd\xe0\x84\xfa\xda\x58\x65\xa3\xfe\xf7\x70\xa4\xff\xd8\x49\x6f\xb1\xe9\xb9\x8e\x9b\x72\x5d\x53\x0a\x59\xb3\x05\x26\xe1\x16\x71\x90\x30\x9d\xbc\x0a\xf0\x3d\x2e\xa9\x75\x6e\x85\xeb\x6d\xe7\x76\x8f\x1b\xa3\xeb\xcd\xf2\xb3\x93\x1d\x33\x1b\xdf\xd5\x35\x5c\x5f\x5e\xe1\xb7\x49\x6e\x82\x05\x59\xc5\x1d\x97\xe8\x7b\x04\x39\x16\x52\x3a\xd4\x5b\x7f\xec\x47\x67\x27\x5b\x23\x1c\x1c\x77\x58\x39\xe8\x78\x17\x12\xf4\xd2\x7b\xf9\x1b\x00\x00\xff\xff\xf4\x19\x3e\xcb\x71\x08\x00\x00" func stakingcollectionTransfer_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5610,11 +5610,11 @@ func stakingcollectionTransfer_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/transfer_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0x67, 0x83, 0xba, 0x26, 0xad, 0xc, 0x4e, 0xfe, 0xb7, 0x94, 0x11, 0x42, 0x42, 0xdc, 0x83, 0x93, 0x25, 0x10, 0x37, 0x21, 0xa1, 0x8f, 0xec, 0x4e, 0xf6, 0xfb, 0xed, 0x96, 0x5e, 0x71, 0x29}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdf, 0x67, 0xe8, 0xef, 0xe2, 0xef, 0x8, 0x3d, 0x4f, 0xe9, 0xd5, 0x36, 0x7d, 0x74, 0x7e, 0x3c, 0x5c, 0xdd, 0x9f, 0xfa, 0x21, 0xd0, 0x7, 0xed, 0xb4, 0x6e, 0x73, 0xc9, 0x4f, 0x45, 0xb2, 0x84}} return a, nil } -var _stakingcollectionUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xc1\x6e\xc2\x30\x0c\x86\xef\x7d\x8a\x5f\x1c\xa6\x72\x29\x3b\x57\xdb\x50\x55\xd8\x84\x56\xc1\x44\x79\x81\xac\xb8\x25\x22\xc4\x5d\xe2\x0a\xa4\x89\x77\x9f\x4a\x80\x1d\xe0\x80\x0f\xad\x1c\xd9\xbf\x3f\xfb\xd7\xbb\x96\x9d\xe0\xdd\xf0\xbe\x14\xb5\xd5\xb6\xc9\xd9\x18\xaa\x44\xb3\x45\xed\x78\x87\xe7\x43\xb9\xca\x3e\x67\xf3\x8f\x7c\x51\x14\xd3\x7c\x35\x5b\xcc\xb3\xc9\x64\x39\x2d\xcb\x28\x1a\x8d\x46\x58\xd2\x4f\x47\x5e\x3c\x84\xd1\x59\x2f\x6a\x4b\xc8\x8a\x02\xc2\x5b\xb2\x1e\x35\x3b\xc8\x86\xe0\x5b\xaa\x74\xad\x69\x0d\xcb\x6b\x02\x3b\xac\xc9\x50\xa3\x84\x1d\xb4\x0d\x25\x01\x00\xd5\x95\x20\x8a\xc4\x29\xeb\xd5\x29\x89\xfb\xc6\xd9\x24\x45\x29\x4e\xdb\x66\x88\xdf\x08\x00\x4e\x1f\x43\x72\x69\xff\xe7\x5f\x52\x9d\xe2\xe9\xee\x6a\xc9\xcd\x4b\x74\xd2\x69\x1d\xb5\xca\x51\xac\xaa\x8a\x3b\x2b\x29\xb2\x4e\x36\x59\x48\x2e\x03\xfb\xf0\x64\xea\xe4\xde\x40\xbc\xe2\xdc\x9b\x7c\xb3\x73\xbc\x7f\x79\x14\xe0\x2d\xee\xcf\x9d\xde\xb7\xe2\xb6\xbc\x14\x76\xaa\xa1\x2f\x25\x9b\xe1\x15\xab\x8f\xf1\x18\xad\xb2\xba\x8a\x07\x39\x77\xa6\x3f\xb7\x20\xa0\xc0\x51\xdd\xbb\x74\xa3\x35\x08\x0a\xc7\x70\x03\x3a\x50\xd5\x09\x3d\xb2\x6d\x72\x36\x3c\x33\xe6\xea\x4e\xf8\x5f\x14\x8f\xd1\x5f\x00\x00\x00\xff\xff\x92\xff\xa2\x70\x62\x02\x00\x00" +var _stakingcollectionUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x8f\xda\x30\x10\x85\xef\xf9\x15\x4f\x1c\x50\xb8\x84\x9e\xa3\xb6\x28\x0d\xb4\x42\x8d\xa0\x22\xa8\x77\x6f\x98\x04\x0b\xe3\xc9\xda\x13\x81\xb4\xe2\xbf\xaf\x12\x03\x7b\x80\x03\x73\x48\x64\x7b\xe6\xcd\x37\x7e\xd6\xc7\x96\x9d\xe0\xb7\xe1\x53\x29\xea\xa0\x6d\x93\xb3\x31\x54\x89\x66\x8b\xda\xf1\x11\xdf\xce\xe5\x36\xfb\xbb\x5c\xfd\xc9\xd7\x45\xb1\xc8\xb7\xcb\xf5\x2a\x9b\xcf\x37\x8b\xb2\x8c\xa2\xe9\x74\x8a\x0d\xbd\x77\xe4\xc5\x43\x18\x9d\xf5\xa2\x0e\x84\xac\x28\x20\x7c\x20\xeb\x51\xb3\x83\xec\x09\xbe\xa5\x4a\xd7\x9a\x76\xb0\xbc\x23\xb0\xc3\x8e\x0c\x35\x4a\xd8\x41\xdb\x90\x12\x00\x50\xdd\x09\xa2\x48\x9c\xb2\x5e\x0d\x8b\xb8\x2f\x5c\xce\x53\x94\xe2\xb4\x6d\x26\xf8\x88\x00\x60\xf8\x18\x92\x5b\xf9\x17\xff\x86\xea\x14\xe3\xa7\xa3\x25\x0f\x3b\xd1\xa0\xd3\x3a\x6a\x95\xa3\x58\x55\x15\x77\x56\x52\xa8\x4e\xf6\xf1\x2f\x76\x8e\x4f\xff\x95\xe9\x68\x82\x71\x16\xce\x6e\xfd\xfb\xf0\x64\xea\xe4\x59\x7f\xfc\xc0\x55\x2a\xf1\xc2\x4e\x35\x94\xbc\x0d\x62\xdf\x5f\xe5\xfa\x19\xf7\x2e\xa4\xcf\x1d\x7a\x4c\x2f\x43\x97\x7f\x4a\xf6\x93\x3b\x5e\x1f\xb3\x19\x5a\x65\x75\x15\x8f\x72\xee\x4c\xef\x82\x20\xa0\xc0\x51\xdd\x9b\xf7\xa0\x35\x0a\x0a\x97\x70\x35\x74\xa6\xaa\x13\x7a\x65\xea\xe4\xfa\x0e\x32\x63\xee\xa6\x85\xff\x4d\xf1\x12\x7d\x06\x00\x00\xff\xff\x80\xd5\xe6\x87\x79\x02\x00\x00" func stakingcollectionUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -5630,11 +5630,11 @@ func stakingcollectionUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0xba, 0xb4, 0x65, 0xa5, 0xa4, 0x6, 0xf6, 0x67, 0x0, 0x75, 0x3a, 0x4f, 0x78, 0x89, 0xab, 0x9a, 0x3c, 0x83, 0xba, 0x1c, 0xf5, 0xe8, 0xae, 0xe7, 0x92, 0xc8, 0xa, 0xea, 0x9e, 0xd7, 0xc1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6d, 0x17, 0xa2, 0xd3, 0xb1, 0x6c, 0xbe, 0x14, 0x41, 0x99, 0x3, 0x23, 0xc7, 0x99, 0x16, 0xfb, 0xe0, 0xfb, 0x8d, 0x17, 0x28, 0xd3, 0xe0, 0xa0, 0x9b, 0xc5, 0xa4, 0xae, 0x58, 0xb5, 0x65, 0x26}} return a, nil } -var _stakingcollectionUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x51\x5d\x8b\xe2\x40\x10\x7c\x9f\x5f\x51\xf8\x70\x44\x38\xe2\x3d\x87\xbb\x93\x10\xdd\x45\x56\x74\x31\xfe\x81\xd9\xa4\x93\x0c\x1b\xa7\xc3\x4c\x87\x08\x8b\xff\x7d\x49\xa2\x2e\xbb\xfa\x60\x3f\xe4\xa3\x67\xba\xaa\xba\xca\x1c\x1a\x76\x82\xa7\x9a\xbb\x54\xf4\xbb\xb1\x65\xc2\x75\x4d\x99\x18\xb6\x28\x1c\x1f\xf0\xe7\x98\xee\xe3\x97\xd5\xe6\x39\xd9\xae\xd7\xcb\x64\xbf\xda\x6e\xe2\xc5\x62\xb7\x4c\x53\xa5\x66\xb3\x19\x92\x4a\xdb\x92\x3c\xa4\x22\x58\x92\x8e\x5d\x8f\x02\x9d\xe7\x8e\xbc\x47\xc1\x6e\x38\xf2\x0d\x65\xa6\x30\x94\xc3\x72\x4e\x4a\x89\xd3\xd6\xeb\x81\x27\xe8\x3b\xab\x45\x84\x54\x9c\xb1\xe5\x6f\x58\xea\xe2\x71\xfc\xd2\x9b\xe2\x43\x01\xc0\xf0\xa8\x49\xe0\x7f\x8a\xdd\x51\x11\xe1\xd7\xdd\x3d\xc2\x9b\x8e\x1a\x70\x1a\x47\x8d\x76\x14\xe8\x2c\xe3\xd6\x4a\x84\xb8\x95\x2a\x1e\x7f\x2e\x84\x7d\x79\xaa\x8b\xf0\x1e\x21\xfe\xe1\x3c\x1b\xbe\xb1\x73\xdc\xfd\x7d\x54\xc0\xff\xa0\xf7\x36\xba\xef\xfb\xed\xf5\x54\xd8\xe9\x92\x5e\xb5\x54\xd3\xab\xac\xbe\xe6\x73\x34\xda\x9a\x2c\x98\x24\xdc\xd6\xbd\xb7\x82\x51\x0a\x1c\x15\x10\xc6\x0d\xd6\x64\x44\x38\x8d\x1e\xd0\x91\xb2\x56\xe8\x91\x6d\xc3\xb6\xc9\xb5\xd0\xe6\x9a\xf1\x39\xa3\x6b\x7c\xe3\xfb\x7b\x7c\x5f\xdf\x17\xda\x93\xfa\x0c\x00\x00\xff\xff\xa5\x85\x44\xd5\x74\x02\x00\x00" +var _stakingcollectionUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x51\xc1\x6a\xc2\x40\x10\xbd\xef\x57\x0c\x1e\x24\x42\x89\x3d\x87\xb6\x92\x46\x5b\xa4\xa2\xc5\x48\xef\xdb\x64\x92\x2c\x5d\x77\xc2\xee\x84\x08\xc5\x7f\x2f\xc9\xaa\xa5\x35\x07\xe7\x90\x2c\x33\xbb\xef\xbd\x79\x4f\xed\x6b\xb2\x0c\x2f\x9a\xda\x94\xe5\x97\x32\x65\x42\x5a\x63\xc6\x8a\x0c\x14\x96\xf6\x70\x7f\x48\x77\xf1\xdb\x72\xfd\x9a\x6c\x56\xab\x45\xb2\x5b\x6e\xd6\xf1\x7c\xbe\x5d\xa4\xa9\x10\xd3\xe9\x14\x92\x4a\x9a\x12\x1d\x70\x85\x60\x90\x5b\xb2\x1d\x0a\xc8\x3c\xb7\xe8\x1c\x14\x64\xfb\x91\xab\x31\x53\x85\xc2\x1c\x0c\xe5\x28\x04\x5b\x69\x9c\xec\x79\x82\xae\xb3\x9c\x47\x90\xb2\x55\xa6\xbc\x03\x83\x6d\xec\x9f\x9f\x7b\x13\xf8\x16\x00\x00\xfd\x47\x23\x83\xfb\x2f\x76\x8b\x45\x04\xe3\xc1\x3d\xc2\xab\x8e\xe8\x71\x6a\x8b\xb5\xb4\x18\xc8\x2c\xa3\xc6\x70\x04\xb2\xe1\x2a\x78\x26\x6b\xa9\xfd\x90\xba\xc1\x09\x8c\x63\x3f\x3b\xf3\x77\xe5\x50\x17\xe1\x10\x3f\x3c\xc2\x09\x2a\x74\x4c\x56\x96\x18\x7e\xf6\x60\x0f\xb7\xea\x7a\x0a\x3a\xcb\xa3\xe1\x38\xae\xaf\xa7\x9e\xe5\x5d\x72\x35\xb9\xc8\xeb\x6a\x36\x83\x5a\x1a\x95\x05\xa3\x84\x1a\xdd\x59\xce\xe0\xa5\x80\xc5\x02\x98\xe0\x0a\x6b\xe4\x11\x8e\xde\x1a\x3c\x60\xd6\x30\xde\xb2\x75\xd8\xd4\xb9\x64\x5c\x5f\xa2\x3f\x45\x77\x49\xd5\xff\xff\xa6\xfa\x7b\x3e\xd3\x1e\xc5\x4f\x00\x00\x00\xff\xff\x7b\x84\x12\x5a\x8b\x02\x00\x00" func stakingcollectionUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -5650,11 +5650,11 @@ func stakingcollectionUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdd, 0xff, 0x7b, 0x7f, 0xd9, 0x90, 0x89, 0x51, 0x97, 0x22, 0x0, 0x42, 0x8d, 0x15, 0xe0, 0x7, 0xb8, 0x63, 0x93, 0x9e, 0x61, 0xf, 0x72, 0x10, 0xf7, 0xf8, 0x90, 0x99, 0xf9, 0x47, 0x7a, 0x14}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x27, 0xe6, 0x78, 0x87, 0x1e, 0x25, 0x6, 0xc4, 0xf9, 0x65, 0xa7, 0x8b, 0x7f, 0xa8, 0x2e, 0x55, 0x33, 0x52, 0xb5, 0x9, 0x53, 0xe9, 0x1d, 0xf8, 0x8f, 0x2f, 0x11, 0x34, 0xdb, 0xd7, 0x5d, 0xd4}} return a, nil } -var _stakingcollectionWithdraw_from_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x8e\xd3\x40\x0c\xbd\xe7\x2b\xac\x3d\xa0\xac\x84\x52\x0e\x88\x43\x04\xac\xa2\xb4\x45\x15\xa5\x45\x4d\xf9\x00\x33\x71\x9a\x51\x27\xe3\x30\xf1\x90\x22\xd4\x7f\x47\xc9\x34\x45\xda\xf6\x50\x1f\x62\x65\x64\x3f\x3f\xbf\x67\xdd\xb4\xec\x04\x96\x86\xfb\x42\xf0\xa8\xed\x21\x67\x63\x48\x89\x66\x0b\x95\xe3\x06\xde\x9d\x8a\x7d\xf6\x75\xb5\xf9\x92\x6f\xd7\xeb\x45\xbe\x5f\x6d\x37\xd9\x7c\xbe\x5b\x14\x45\x14\xcd\x66\x33\xd8\xd1\x2f\x4f\x9d\x80\x30\xf4\x5a\xea\xd2\x61\x0f\xc2\x47\xb2\x5d\xe8\x97\x9a\xa0\x41\x55\x6b\x4b\x80\x4a\xb1\xb7\x32\xf6\xed\x6b\x9a\xea\xd0\x11\xa0\x17\x6e\x50\xb4\x42\x63\xfe\x40\x49\x2d\x77\x5a\xa8\x1c\x60\x07\x04\x6f\x0d\xab\x23\x95\x13\x04\xfc\x46\x6f\x24\x8a\xc4\xa1\xed\x70\xa4\x1b\x5b\x2e\x69\x35\x4f\xa1\x10\xa7\xed\xe1\x2d\x60\x33\x54\xa6\xf0\x63\xa9\x4f\x1f\xde\x3f\xc3\xdf\x08\x00\x60\xfc\x18\x12\xe8\x5e\xef\xbb\xa3\x2a\x85\x37\x77\xa5\x48\x6e\x5e\xa2\x11\xa7\x75\xd4\xa2\xa3\xf8\xc2\x2a\x85\xcc\x4b\x9d\x85\x9f\x69\xe0\x10\x1d\x99\x2a\xb9\x37\x10\x3e\x4d\x1b\x25\x3f\xd9\x39\xee\x3f\x3e\x4a\xe0\x73\x3c\xc8\x9b\xde\xb7\xee\xb6\xbc\x10\x76\x78\xa0\xef\x28\xf5\xf3\x95\xd6\x10\x2f\x2f\xd0\xa2\xd5\x2a\x7e\xca\xd9\x9b\x12\x2c\x0b\x04\x2a\xe0\xa8\x1a\xf4\xbf\xc1\x7a\x0a\x08\xe7\xa0\x01\x9d\x48\x79\xa1\x47\xb6\x4d\xa6\x0b\x59\x3a\x6e\xbe\x85\xa3\xb8\xa8\x75\x75\x2f\xe4\xff\xee\x85\x3c\x4d\x3c\x47\xff\x02\x00\x00\xff\xff\xdb\xab\x20\x8d\xb2\x02\x00\x00" +var _stakingcollectionWithdraw_from_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xcd\x8e\xd3\x30\x10\xbe\xe7\x29\x46\x7b\x58\xa5\x12\x4a\x39\x20\x0e\x11\xb0\x2a\xe9\x16\x55\x2c\xbb\xa8\x29\xdc\x07\x67\xd2\x58\x75\x3c\xc1\x19\x93\x22\xd4\x77\x47\x8e\x9b\x22\xd1\x1e\xea\x43\x2c\xc5\xe3\xef\xd7\xba\xed\xd8\x09\xac\x0c\x0f\xa5\xe0\x5e\xdb\x5d\xc1\xc6\x90\x12\xcd\x16\x6a\xc7\x2d\xbc\x3e\x94\xdb\xc5\xe7\xf5\xf3\xa7\xe2\xe5\xe9\xe9\xb1\xd8\xae\x5f\x9e\x17\xcb\xe5\xe6\xb1\x2c\x93\x64\x3e\x9f\xc3\x86\x7e\x7a\xea\x05\x84\x61\xd0\xd2\x54\x0e\x07\x10\xde\x93\xed\xe3\x7d\x69\x08\x5a\x54\x8d\xb6\x04\xa8\x14\x7b\x2b\xe3\xbd\x6d\x43\xd3\x1c\x3a\x02\xf4\xc2\x2d\x8a\x56\x68\xcc\x6f\xa8\xa8\xe3\x5e\x0b\x55\x01\x36\x20\x78\x6b\x58\xed\xa9\x9a\x20\xe0\x17\x7a\x23\x49\x22\x0e\x6d\x8f\xa3\xdc\xd4\x72\x45\xeb\x65\x0e\xa5\x38\x6d\x77\xaf\x00\xdb\x30\x99\xc3\xb7\x95\x3e\xbc\x7d\x33\x83\x3f\x09\x00\xc0\xf8\x31\x24\xd0\xff\xef\x77\x43\x75\x0e\xf7\x57\xa3\xc8\x2e\xfe\x24\x23\x4e\xe7\xa8\x43\x47\xe9\x49\x55\x1e\x6c\x34\xe9\x47\x76\x8e\x87\xef\x68\x3c\xcd\xe0\x7e\x11\xcf\x26\xfe\xb0\x7a\x32\x75\x76\x8d\x1f\xde\x4f\x06\xb3\x5e\xd8\xe1\x8e\xb2\x1f\x23\xd8\xbb\x5b\x75\x7d\x48\x43\xea\xf9\xf5\x46\x2f\xc7\xcb\xc8\xf2\x15\xa5\x99\x9d\xe5\x85\xf5\xf0\x00\x1d\x5a\xad\xd2\xbb\x82\xbd\xa9\xc0\xb2\x40\x94\x02\x8e\xea\x50\xcb\x05\xd6\x5d\x44\x38\xc6\x68\xe8\x40\xca\x0b\xdd\xe2\x3a\x9b\x1e\xce\xca\x71\xfb\x25\xbe\x95\x53\x6a\xe7\x52\xe3\xfe\xaf\xd4\xb8\x4f\x8c\xc7\xe4\x6f\x00\x00\x00\xff\xff\xa5\xbc\xf4\x59\xc9\x02\x00\x00" func stakingcollectionWithdraw_from_machine_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -5670,11 +5670,11 @@ func stakingcollectionWithdraw_from_machine_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_from_machine_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc7, 0x7c, 0xe3, 0xa9, 0xe3, 0x68, 0x1a, 0x64, 0x88, 0xe, 0xc6, 0xc4, 0xa4, 0x9b, 0x35, 0x9f, 0xa1, 0x43, 0xf2, 0x57, 0x79, 0xca, 0x6d, 0xa4, 0x6e, 0x57, 0xfe, 0xbe, 0x2f, 0x2e, 0x1f, 0xef}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa2, 0xe5, 0xbe, 0x51, 0xf0, 0xe1, 0x4c, 0x96, 0xc, 0x6a, 0xe7, 0x47, 0xcd, 0x69, 0x28, 0x7a, 0xa3, 0x99, 0xbf, 0xfb, 0xf4, 0x10, 0x60, 0xb0, 0xc3, 0xc0, 0x10, 0x80, 0x94, 0xc8, 0xf5, 0x45}} return a, nil } -var _stakingcollectionWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x8f\x1c\x8a\x03\xc6\x2e\x6d\xe9\x41\xb4\x35\xc2\x4e\x8a\x69\x48\x8a\xe5\xfc\x80\xad\x34\xb2\x16\xaf\x77\xd4\xd1\xa8\x72\x28\xf9\xef\x65\x25\xcb\x0e\xb5\x0f\xde\x83\x96\x5d\x46\xdf\xbc\xd9\xf7\xec\xae\x62\x51\xdc\x3b\x6e\x53\x35\x5b\xeb\x37\x73\x76\x8e\x32\xb5\xec\x51\x08\xef\xf0\x7e\x9f\xae\x93\x1f\xcb\xc7\xef\xf3\xa7\x87\x87\xbb\xf9\x7a\xf9\xf4\x98\x2c\x16\xab\xbb\x34\x8d\xa2\xe9\x74\x8a\x15\xfd\x6e\xa8\x56\x28\xa3\xb5\x5a\xe6\x62\x5a\x08\xb5\x46\x72\xca\xa1\xbc\x25\x5f\xa3\x60\x81\x96\x84\xba\xa2\xcc\x16\x96\x72\x78\xce\x09\x2c\xc8\xc9\xd1\xc6\x28\x0b\xac\xef\x4b\x7a\x15\xc8\x8e\x32\xba\x2e\xeb\x92\x06\x98\x11\x82\x69\x94\x77\x46\x6d\x66\x9c\x7b\x41\x4e\x15\xd7\x56\xbb\x7e\x1d\xa4\xf1\x8e\xb3\x2d\xe5\x30\x59\xc6\x8d\x57\xfc\x31\x8d\x53\x14\x56\x6a\x1d\x77\xbc\xc4\xe7\xa1\xd2\xc3\xf8\x17\x1c\x8a\xdf\xf0\x4f\x44\xeb\x0f\xcc\x4b\xc4\x28\x52\x31\xbe\x36\x9d\xce\x51\x98\x69\xb9\x88\x91\xaa\x58\xbf\x19\x9f\x66\x0b\x97\xcf\x4b\xaf\x1f\x3f\xcc\xc6\x30\xbb\xf0\x7f\x8c\xe7\x7b\xbb\xff\xfc\xe9\x16\x7f\x23\x00\xe8\x3e\x8e\x74\x98\xff\xe4\xc2\x8a\x8a\x18\xef\x2e\x1a\x34\x39\xbb\x89\x3a\x4e\x25\x54\x19\xa1\xd1\x41\x6b\x8c\xa4\xd1\x32\xe9\x0f\x43\xc3\xb0\x6a\x72\xc5\xe4\x52\x43\x7c\x1d\xe6\x9c\xfc\x62\x11\x6e\xbf\x5c\x2b\xe0\xdb\x28\x84\x26\xbe\x1c\xa8\xf3\xf2\x54\x59\xcc\x86\x7e\x1a\x2d\x6f\x8f\xb2\xc2\x9a\xcd\x50\x19\x6f\xb3\xd1\xcd\x9c\x1b\x17\xf2\xa2\xe8\xa5\x40\xa8\x08\x3e\x9f\xb1\x6e\x7a\xc2\x6b\xff\x06\xb4\xa7\xac\x51\xba\x66\xda\xc9\x90\xdb\xd5\x21\xb6\xeb\x2e\x08\x47\x3f\xfb\xfd\x3f\x3f\xdf\x1c\x4e\x9e\xf6\xfb\xa0\xe3\x35\xfa\x17\x00\x00\xff\xff\x64\xbf\x03\x75\x5e\x03\x00\x00" +var _stakingcollectionWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x6f\xda\x40\x10\x85\xef\xfe\x15\x4f\x39\x44\x20\x21\xa8\xda\xaa\x07\xab\x2d\xa2\x90\x54\xa8\x51\x52\x61\xd2\xfb\xd4\x1e\xe3\x15\xcb\x8e\xbb\x1e\xd7\x44\x55\xfe\x7b\xb5\x36\x86\x28\x70\xc8\x1e\xbc\xf2\x7a\xfc\xcd\x9b\x7d\xcf\xec\x4a\xf1\x8a\x5b\x2b\x4d\xa2\xb4\x35\x6e\x33\x17\x6b\x39\x55\x23\x0e\xb9\x97\x1d\xde\xed\x93\xf5\xec\xc7\xf2\xfe\xfb\xfc\xe1\xee\xee\x66\xbe\x5e\x3e\xdc\xcf\x16\x8b\xd5\x4d\x92\x44\xd1\x64\x32\xc1\x8a\xff\xd4\x5c\x29\x54\xd0\x18\x2d\x32\x4f\x0d\x3c\x37\xe4\x33\xce\xa0\xb2\x65\x57\x21\x17\x0f\x2d\x18\x55\xc9\xa9\xc9\x0d\x67\x70\x92\x31\xc4\x23\x63\xcb\x1b\x52\xf1\x30\xae\x2b\xe9\x54\x20\x3d\xca\x68\xbb\xac\x0b\xee\x61\xe4\x19\x54\xab\xec\x48\x4d\x4a\xd6\x3e\x21\xe3\x52\x2a\xa3\x6d\xbf\x16\x52\x3b\x2b\xe9\x96\x33\x50\x9a\x4a\xed\x14\x7f\xa9\xb6\x8a\xdc\xf8\x4a\x47\x2d\x6f\xe6\xb2\x50\xe9\x40\xee\x09\x87\xe2\x17\xfc\x13\xd1\xb8\x03\xf3\x12\x31\x8a\xd4\x93\xab\xa8\xd5\x39\x08\x33\x2d\x17\x31\x12\xf5\xc6\x6d\x46\xa7\xd9\xc2\xe1\xe3\xd2\xe9\x87\xf7\xd3\x11\x68\x17\xfe\x8f\xf1\x78\x6b\xf6\x9f\x3e\x0e\xf1\x2f\x02\x80\xf6\x61\x59\xfb\xf9\x4f\x2e\xac\x38\x8f\x71\x7d\xd1\xa0\xf1\xd9\x49\xd4\x72\x4a\xcf\x25\x79\x1e\x1c\xb4\xc6\xe1\xba\x8a\xc1\x37\xf1\x5e\x9a\x5f\x64\x6b\x1e\xe2\x7a\xd6\x7d\xeb\xfb\x87\x55\xb1\xcd\xc7\x97\xfa\xe3\x4b\x3f\xf6\xb8\x52\xf1\xb4\xe1\xf1\xef\x16\xf6\xf9\xad\xba\xbe\x0e\x42\x96\xe2\xcb\x39\x3b\x2f\x4f\xba\x2e\x3f\x49\x8b\xe1\x51\x5e\x58\xd3\x29\x4a\x72\x26\x1d\x5c\xcd\xa5\xb6\x21\x46\x8a\x4e\x0a\x3c\xe7\xc1\xfe\x33\xd6\x55\x47\x78\xee\xae\x86\xf7\x9c\xd6\xca\x6f\x99\x7a\xdc\xc7\x79\x75\x48\xf3\xba\xcd\xc7\xd1\xe6\x6e\x7f\x65\xf3\x8b\x97\x93\xd5\xdd\xde\xeb\x78\x8e\xfe\x07\x00\x00\xff\xff\xb4\x6c\x2b\x9d\x75\x03\x00\x00" func stakingcollectionWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5690,11 +5690,11 @@ func stakingcollectionWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe6, 0x49, 0x8d, 0xd0, 0x5b, 0x42, 0x21, 0x6d, 0xfa, 0xef, 0x43, 0x36, 0x96, 0xc0, 0x98, 0x8f, 0x63, 0x76, 0xd0, 0x1a, 0xda, 0xbb, 0x68, 0x23, 0x3d, 0x88, 0x97, 0xea, 0xba, 0x59, 0x73, 0xd7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0xe9, 0xbe, 0xff, 0x89, 0xe4, 0x6e, 0x20, 0xcb, 0xdb, 0x5b, 0x8f, 0xd9, 0x22, 0xa0, 0xe4, 0x98, 0xc9, 0xcb, 0xd9, 0x45, 0xdb, 0x27, 0x48, 0x38, 0xf6, 0x11, 0x4d, 0x33, 0x31, 0xb3, 0x96}} return a, nil } -var _stakingcollectionWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x8f\xda\x30\x10\x85\xef\xf9\x15\x4f\x7b\xa8\x58\x09\x41\xd5\x56\x3d\xa0\xb6\x28\x82\xdd\x0a\x75\xb5\x5b\x11\xf8\x01\xd3\x64\x42\x2c\x8c\x27\x75\xc6\x85\x55\xb5\xff\xbd\x72\x42\x60\x55\x38\xac\x0f\xb6\x6c\x8d\xbe\x79\xe3\xf7\xcc\xae\x16\xaf\xb8\xb7\xb2\xcf\x94\xb6\xc6\x6d\x66\x62\x2d\xe7\x6a\xc4\xa1\xf4\xb2\xc3\xfb\x43\xb6\x4a\x7f\x2c\x1e\xbf\xcf\x9e\x1e\x1e\xee\x66\xab\xc5\xd3\x63\x3a\x9f\x2f\xef\xb2\x2c\x49\xc6\xe3\x31\x96\xfc\x3b\x70\xa3\x50\xc1\xde\x68\x55\x78\xda\x23\xb8\x46\x69\xcb\x05\x54\xb6\xec\x1a\x94\xe2\xa1\x15\xa3\xa9\x39\x37\xa5\xe1\x02\x4e\x0a\x86\x78\x14\x6c\x79\x43\x2a\x1e\xc6\x75\x25\x9d\x0a\xe4\x27\x19\x6d\x97\x55\xc5\x3d\x8c\x3c\x83\x82\xca\x8e\xd4\xe4\x64\xed\x33\x0a\xae\xa5\x31\xda\xf6\x6b\x21\xc1\x59\xc9\x63\x7f\xca\x73\x09\x4e\xf1\x87\x82\x55\x94\xc6\x37\x3a\x6c\x79\xa9\x2b\x62\xa5\x03\xb9\x67\x1c\x8b\x5f\xf1\xcf\x44\xe3\x8e\xcc\xab\x44\x53\xc2\x28\x4c\x13\x2b\x3c\x27\x89\x7a\x72\x0d\xb5\xb2\x07\x71\xc4\xc5\x7c\x82\x4c\xbd\x71\x9b\xe1\x79\xd4\xf8\xb8\x5e\x38\xfd\xf8\x61\x3a\x04\xed\x22\x6e\x82\xf5\xbd\x39\x7c\xfe\x74\x8b\xbf\x09\x00\xb4\x9b\x65\xed\xbf\xe3\x6c\xca\x92\xcb\x09\xde\x5d\xf5\x6b\x74\xf1\x92\xb4\x9c\xda\x73\x4d\x9e\x07\x47\xe9\x13\xa4\x41\xab\xb4\xbb\xf4\x0d\xe3\x6a\xd8\x96\xa3\x6b\x0d\xf1\xb5\x1f\x7b\xf4\x4b\xbc\x97\xfd\x97\xb7\x0a\xf8\x36\x88\x19\x9a\x5c\xcf\xd7\x65\x79\xa6\xe2\x69\xc3\x3f\x49\xab\xdb\x93\xac\xb8\xa6\x53\xd4\xe4\x4c\x3e\xb8\x99\x49\xb0\x31\x3e\x8a\x4e\x0a\x3c\x97\xd1\xf6\x0b\xd6\x4d\x47\x78\xe9\xfe\x80\x0f\x9c\x07\xe5\xb7\x4c\x3b\xea\x63\xbc\x3e\xa6\x78\xd5\xe6\xe2\xe4\x67\x77\xfe\xe7\xe7\xab\xcb\xd9\xd3\xee\xec\x75\xbc\x24\xff\x02\x00\x00\xff\xff\x02\xba\xdf\x67\x6d\x03\x00\x00" +var _stakingcollectionWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x6f\xda\x40\x10\x85\xef\xfe\x15\x4f\x39\x44\x46\x42\xa6\x6a\xab\x1e\xac\xb6\x88\x42\x52\xa1\x46\x49\x85\xa1\xf7\xad\x3d\xc6\x2b\x96\x1d\x77\x77\x5c\x88\xaa\xfc\xf7\x6a\x6d\x0c\x51\xe0\xc0\x1e\x58\xb1\x1e\x7d\xef\xcd\xcc\xd3\xdb\x9a\x9d\xe0\xde\xf0\x2e\x13\xb5\xd1\x76\x3d\x65\x63\x28\x17\xcd\x16\xa5\xe3\x2d\xde\xed\xb3\xe5\xe4\xc7\xfc\xf1\xfb\xf4\xe9\xe1\xe1\x6e\xba\x9c\x3f\x3d\x4e\x66\xb3\xc5\x5d\x96\x45\xd1\x68\x34\xc2\x82\xfe\x34\xe4\x05\xc2\xd8\x69\xa9\x0a\xa7\x76\x68\xac\x17\xb5\xa1\x02\xc2\x1b\xb2\x1e\x25\x3b\x48\x45\xf0\x35\xe5\xba\xd4\x54\xc0\x72\x41\x60\x87\x82\x0c\xad\x95\xb0\x83\xb6\x5d\x49\xe7\x02\xf9\xd1\x46\xab\xb2\xac\xa8\x87\x29\x47\x50\x8d\xf0\x56\x89\xce\x95\x31\xcf\x28\xa8\x66\xaf\xa5\xd5\x6b\x21\x8d\x35\x9c\x07\x7d\x95\xe7\xdc\x58\xc1\x5f\xd5\x18\x41\xa9\x9d\x97\x61\xcb\x9b\xd8\x22\x54\x5a\x28\xfb\x8c\x43\xf1\x2b\xfe\x89\xa8\xed\x81\x79\x91\xa8\x4b\x68\x81\xf6\xa1\xc2\x51\x14\x89\x53\xd6\xab\xd6\x76\x1c\x5a\x9c\xcf\x52\x64\xe2\xb4\x5d\x0f\x4f\xad\x86\xc7\xd5\xdc\xca\x87\xf7\xe3\x21\xd4\x36\xe0\x52\xac\xee\xf5\xfe\xd3\xc7\x01\xfe\x45\x00\xd0\xfe\x18\x92\x7e\x1c\xa7\xa5\x2c\xa8\x4c\x71\x7b\x71\x5f\xc9\xd9\x4b\xd4\x72\x6a\x47\xb5\x72\x14\x1f\xac\xa7\x61\x7a\x55\xfc\x8d\x9d\xe3\xdd\x2f\x65\x1a\x1a\xe0\x76\xd2\x7d\xeb\xf5\xc3\xf1\x64\xca\xe4\x92\x3e\xbe\xf4\x53\x48\xbc\xb0\x53\x6b\x4a\x7e\xb7\xb0\xcf\xd7\xfa\xfa\x1a\x87\x68\xa5\x97\x63\x77\x5e\x9e\x75\x2a\x3f\x95\x54\x83\xa3\xbd\x70\xc6\x63\xd4\xca\xea\x3c\xbe\x99\x72\x63\x42\xaa\x04\x9d\x15\x38\x2a\x43\x1a\xce\x58\x37\x1d\xe1\xa5\x1b\x0d\xed\x29\x6f\x84\xae\xe9\x3a\xe9\xd3\xbd\x3a\x84\x7b\xd9\xc6\xe5\xb8\xe6\xee\x7e\xb3\xe6\x57\x7f\x4e\xab\xee\xee\xde\xc7\x4b\xf4\x3f\x00\x00\xff\xff\xb0\x18\x28\xf9\x84\x03\x00\x00" func stakingcollectionWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5710,11 +5710,11 @@ func stakingcollectionWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0x94, 0x7f, 0x6f, 0xf0, 0xe4, 0x28, 0x27, 0x2d, 0x99, 0x6, 0xd7, 0xff, 0xf1, 0xff, 0xa5, 0x7, 0x3a, 0x22, 0x3c, 0xba, 0x2f, 0xff, 0x40, 0x14, 0xdd, 0xe2, 0x43, 0x68, 0x43, 0xb0, 0x64}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe3, 0xb6, 0xff, 0xdd, 0x20, 0xae, 0xe3, 0x2c, 0x7b, 0x5f, 0xb1, 0x5, 0x77, 0xfe, 0x3, 0xe4, 0xb2, 0x6a, 0x92, 0x42, 0x65, 0xf6, 0xdd, 0x4e, 0xde, 0x76, 0xf9, 0x75, 0x8b, 0xb9, 0xc9, 0xd5}} return a, nil } -var _stakingproxyAdd_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x41\xa4\xc7\x12\x6a\x25\x68\x69\x45\xd0\x60\x5a\x68\x8f\x6b\x76\xa2\x4b\xe3\xce\x32\x19\x51\x29\xfe\xf7\xb2\x46\x4d\x42\xba\x87\x90\x7d\x79\x9b\xfd\xde\x3c\xb3\x73\xc4\x02\xa9\xa8\x1f\x63\x37\x09\xd3\xf1\x04\x39\xd3\x0e\x1e\x8f\xe9\x47\x3c\x9f\x2d\xde\x92\xd5\xf2\xeb\x3b\x9e\x4e\x57\xaf\x69\x1a\x04\xc2\xca\x96\x2a\x13\x43\x36\x34\x3a\x82\x54\xd8\xd8\xcd\x00\x98\x0a\x8c\xe0\x73\x66\xe5\x69\x00\x16\xe5\x40\xec\x7f\x18\x6b\xcd\x58\x96\xb5\xaf\xfe\x34\xc7\x53\x2d\x97\xd5\xfd\x0d\xad\x0f\xbf\x41\x00\x00\xe0\x18\x9d\x62\x0c\x55\x96\xd1\xde\x4a\x04\xf1\x5e\xb6\x71\xb5\xf1\x26\xb8\xae\x02\x05\x9c\xe7\x7f\xa7\x42\x23\xc3\x08\xae\x27\x86\x6b\x62\xa6\xc3\xf3\x43\x33\xe4\x70\x41\x1a\xbd\x80\x9c\xd4\x87\x5e\x42\x9f\x3d\x82\x8e\x73\xe9\x90\x95\x10\x4f\x94\x53\x6b\x53\x18\x39\xa5\x42\xac\x36\x98\x28\xd9\xf6\xef\x0c\x7e\x8d\xc7\xe0\x94\x35\x59\xd8\x9b\xd0\xbe\xd0\x60\x49\xa0\x22\x00\xc6\x1c\x19\x6d\x86\x20\x74\x8b\x5c\x31\xc3\xf6\x72\x7f\xaf\x1f\xb4\xf2\x58\xd2\x38\xb3\x39\xc1\xa8\x8b\xe4\xf5\xf0\x62\x98\x46\x60\xf4\xad\x02\xff\xfc\xb7\x81\x8e\xd4\x29\xa3\xb5\x6d\x77\x52\xbf\x37\x08\x1b\xd3\x1e\x2a\xad\xdb\x50\x36\xa7\xe8\xce\x5f\x4d\xe8\x1c\x9c\x83\xbf\x00\x00\x00\xff\xff\x31\xc4\x60\xc0\x70\x02\x00\x00" +var _stakingproxyAdd_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\xc1\x8a\xe2\x40\x10\xbd\xe7\x2b\x0a\x0f\x92\x80\x84\x3d\x2e\x61\x5d\xc9\xea\xb2\x2b\x82\x06\xb3\x3b\xcc\x1c\xdb\x74\x45\x9b\x89\x5d\xa1\x52\x41\x65\xf0\xdf\x87\x36\x6a\x12\x32\x7d\x08\xe9\xd7\x55\xaf\x5e\xbd\x67\x8e\x25\xb1\x40\x2a\xea\xdd\xd8\x7d\xc2\x74\xbe\x40\xce\x74\x84\x6f\xe7\xf4\x5f\xbc\x5a\xae\xff\x24\xdb\xcd\xeb\x5b\xbc\x58\x6c\x7f\xa7\xa9\xe7\x09\x2b\x5b\xa9\x4c\x0c\x59\xdf\xe8\x08\x52\x61\x63\xf7\x13\x60\x2a\x30\x82\xff\x4b\x2b\xdf\x27\x60\x51\x4e\xc4\x8e\x30\xd6\x9a\xb1\xaa\xda\xba\xf6\x69\x85\x97\x16\xae\x9a\xf9\x1d\x2c\x80\x0f\xcf\x03\x00\x28\x19\x4b\xc5\xe8\xab\x2c\xa3\xda\x4a\x04\xaa\x96\x83\xff\x8b\x98\xe9\xf4\xa2\x8a\x1a\x03\x18\xc7\xcd\x9b\xeb\x81\xfb\x29\x50\xa0\x74\xeb\xfc\xa5\x42\x23\xc3\x14\xee\x04\x61\x25\xc4\x6a\x8f\xe1\xee\x46\xf1\x63\xdc\xdd\x3d\x5c\x93\x46\x07\x20\x27\x6d\xf3\x4f\xdf\x59\x12\xc1\xa0\x72\x53\x22\x2b\x21\x9e\xab\x52\xed\x4c\x61\xe4\x92\x36\xe4\x89\x92\x43\xf0\xd4\xe2\xce\x6c\x06\xa5\xb2\x26\xf3\x47\x73\xaa\x0b\x0d\x96\x04\x1a\x05\xc0\x98\x23\xa3\xcd\x10\x84\x1e\x4e\x34\xda\xe1\x70\x9b\x3f\x0a\xbc\xde\x5e\x96\x34\x2e\x6d\x4e\x30\x1d\x4a\x72\xb8\x7f\x2b\x58\x44\x60\xf4\x23\x19\xf7\xfd\x32\x98\x01\x34\xc8\xa8\x77\xed\x47\xd5\xfe\x77\x14\x76\x5c\x0f\x95\xd6\x7d\x51\x36\xa7\xe8\xa9\xbf\x71\xe8\xea\x5d\xbd\xcf\x00\x00\x00\xff\xff\xb7\x8b\x41\xd0\x87\x02\x00\x00" func stakingproxyAdd_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5730,11 +5730,11 @@ func stakingproxyAdd_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/add_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb5, 0xf2, 0xa0, 0xe3, 0xb7, 0x7c, 0x79, 0xbd, 0xee, 0x11, 0x1e, 0x31, 0xf2, 0x7a, 0xdc, 0xa2, 0xf, 0xae, 0xba, 0x2a, 0x46, 0x9a, 0xf3, 0x65, 0xd9, 0xb4, 0x2d, 0xd1, 0x43, 0x7c, 0x8, 0xf6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb, 0xed, 0xdf, 0x99, 0xb8, 0x51, 0xf2, 0x7b, 0xa, 0xba, 0x6f, 0x2d, 0x55, 0xf, 0x3f, 0x7b, 0x45, 0x68, 0x59, 0x68, 0x3a, 0xc9, 0x94, 0x74, 0x64, 0xa, 0x46, 0x76, 0xae, 0xa8, 0xb7, 0xa8}} return a, nil } -var _stakingproxyGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x53\x0f\x25\x81\x22\x3d\x4b\xad\x04\x2d\xad\x14\x34\x98\x1e\xda\xe3\xba\x99\xa4\x4b\xd7\x9d\x65\x32\xa1\x8a\xf8\xdf\xcb\xba\xd5\x50\x3d\x74\x2e\x21\x3b\x6f\xde\xb7\x6f\xd6\x6c\x3c\xb1\x40\x29\xea\xcb\xb8\xa6\x60\xda\xee\xa0\x66\xda\xc0\xfd\xb6\x7c\xcb\x5f\xe7\x8b\xe7\x62\xb5\x7c\xff\xc8\x67\xb3\xd5\x53\x59\x26\x89\xd2\x1a\xdb\x36\x55\xd6\x66\x50\x77\x0e\x36\xca\xb8\x54\x69\x4d\x9d\x93\x11\xe4\x55\xc5\xd8\xb6\x77\xe0\xa8\xc2\xf9\x6c\x04\xa5\xb0\x71\x4d\x36\xfa\x03\x18\x2e\x42\xd7\xd5\x04\xfb\x24\x01\x00\xb0\x28\xe0\x43\x67\xaa\xbc\x5a\x1b\x6b\x64\x07\x63\x68\x50\xf2\x68\x7c\x02\x64\x47\x75\xa8\x61\x83\xd2\x8b\x1f\x6e\xaf\xec\xc3\x01\xf2\xf1\xff\x85\x6c\x85\xbc\xff\x5f\x52\x74\x6b\x6b\xf4\xe1\x31\x3d\x63\x42\x5d\xcd\x2d\x3d\xb2\x12\xe2\x9e\x1f\x07\x0b\x25\x9f\xe7\xc9\xec\x22\xd9\x0a\x6b\x18\x5f\x86\x1c\xae\x89\x99\xbe\xd3\x3e\xd7\x64\x02\x5e\x39\xa3\xd3\xc1\x94\x3a\x5b\x81\x23\x81\x28\x02\x7f\x84\x00\x63\x8d\x8c\x4e\x23\x08\x41\x1b\xef\x16\x7d\x07\xbf\x4c\x46\xe9\xd8\x9d\xb1\x61\x55\xa7\x85\xa7\xa7\x77\x89\xdf\xec\x26\x39\x24\x3f\x01\x00\x00\xff\xff\xb5\x20\x40\x9d\x02\x02\x00\x00" +var _stakingproxyGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xc1\x6a\xc3\x30\x0c\x86\xef\x79\x0a\xb5\x87\x91\xc0\x08\x3b\x97\x75\x25\xb4\x63\x2b\x83\x36\x34\x3b\x6c\x47\xd7\x51\x32\x33\xd7\x0a\x8a\xc2\x5a\x4a\xdf\x7d\xb8\x26\x29\x6b\x0f\xd3\xc5\xd8\xfa\xa5\x4f\xbf\x6c\x76\x0d\xb1\x40\x21\xea\xdb\xb8\x3a\x67\xda\x1f\xa0\x62\xda\xc1\xc3\xbe\x78\xcf\xde\x96\xab\x97\x7c\xb3\xfe\xf8\xcc\x16\x8b\xcd\x73\x51\x44\x91\xd2\x1a\xdb\x36\x56\xd6\x26\x50\x75\x0e\x76\xca\xb8\x58\x69\x4d\x9d\x93\x09\x64\x65\xc9\xd8\xb6\xf7\xe0\xa8\xc4\xe5\x62\x02\x85\xb0\x71\x75\x32\xf9\x03\x48\x57\x3e\xeb\x2a\x82\x63\x14\x01\x00\x58\x14\x68\x7c\x66\xae\x1a\xb5\x35\xd6\xc8\x01\xa6\x50\xa3\x64\xa1\x71\x0f\x48\xce\x6a\x1f\xa9\xee\x95\x06\xdb\xb4\x46\x79\xbc\xbb\x21\xf8\x07\xe4\xf3\xfd\x95\x6c\x89\x7c\xfc\x5f\x92\x77\x5b\x6b\xf4\xe9\x29\x1e\x48\x3e\x6e\xea\xd6\x0d\xb2\x12\xe2\xcb\xbc\xa1\x30\x57\xf2\x35\x54\x26\xa3\x2b\x77\x1b\xac\x60\x7a\x6d\x34\xdd\x12\x33\xfd\xc4\x17\x6f\xb3\x19\x34\xca\x19\x1d\x8f\xe7\xd4\xd9\x12\x1c\x09\x04\x11\x34\x67\x0a\x30\x56\xc8\xe8\x34\x82\x10\xb4\x61\xb8\xd0\x77\x9c\x04\x26\xa3\x74\xec\x06\xac\xdf\x50\xbf\xf4\xb8\xff\x9b\x70\x26\xa3\xe8\x14\xfd\x06\x00\x00\xff\xff\x9a\x82\xf5\x58\x06\x02\x00\x00" func stakingproxyGet_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5750,11 +5750,11 @@ func stakingproxyGet_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/get_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x14, 0x30, 0x23, 0x9a, 0x54, 0x69, 0x99, 0xc9, 0xf2, 0x30, 0xe0, 0xed, 0x81, 0x19, 0x11, 0xd6, 0xbe, 0x6f, 0x9d, 0x36, 0xfa, 0x50, 0x2b, 0xa6, 0xf6, 0x68, 0x34, 0x6f, 0x9e, 0xcd, 0x24, 0x49}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9, 0x35, 0xa9, 0x5b, 0x9b, 0x75, 0xa9, 0x9a, 0xa1, 0x30, 0x7a, 0xd, 0x7a, 0x1a, 0x78, 0xb3, 0x4, 0x94, 0x21, 0x5d, 0x94, 0xe3, 0xa, 0x14, 0x72, 0x17, 0x48, 0xb4, 0x9c, 0x62, 0x91, 0x65}} return a, nil } -var _stakingproxyRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x41\x8f\xda\x3c\x10\xbd\xe7\x57\xcc\xc7\x61\xbf\x44\x42\x51\x0f\x55\x0f\xd1\xb2\x2b\x04\xb4\x5d\xb1\x02\x44\xa8\xd4\x1e\x8d\x3d\x01\x8b\xe0\x89\x9c\x89\xca\x6a\xc5\x7f\xaf\x1c\x27\x21\xb0\xdd\xb6\xbe\x38\xce\xcc\xbc\x79\xef\x8d\xad\x8f\x05\x59\x86\x67\x92\x07\x54\x1b\x3a\xa0\x29\x21\xb3\x74\x84\x0f\xa7\xe7\xe5\x64\x3e\x9b\x6e\x96\xf3\xd9\x62\x3c\x9d\xae\x67\x69\x1a\x34\xd9\x29\x8b\x83\x36\xbb\x95\xa5\xd3\x4b\x9b\x9d\x6e\xc6\xf3\xa7\xc5\x97\xd5\x7a\xf9\xfd\x47\x9b\x1e\xb0\x15\xa6\x14\x92\x35\x99\x50\x28\x65\xb1\x2c\x13\x18\xfb\x8f\x21\x68\x95\x40\xca\x56\x9b\xdd\x10\xc4\x91\x2a\xc3\x09\x7c\xfb\xac\x4f\x9f\x3e\x46\xf0\x1a\x04\x00\x00\x39\x32\xec\x29\x57\x68\xd7\x98\x25\x70\xd7\xe7\x19\xd7\xdb\xd7\x3a\xea\xb3\x0b\x8b\x85\xb0\x18\x0a\x29\x3d\xda\xb8\xe2\xfd\xd8\x1f\x1c\x24\x34\xab\xc4\x3c\x8b\x3b\x58\x18\x41\x53\x10\x6f\xc9\x5a\xfa\x79\xff\x6e\x9b\x87\xd0\xa9\x4d\xe0\xbd\x78\xca\x64\xc5\x0e\x57\x82\xf7\x51\xd7\xcd\xad\xc7\x47\x28\x84\xd1\x32\x1c\x4c\xa8\xca\x15\x18\x62\xf0\xcd\xc0\x62\x86\x16\x8d\x44\x60\x82\x1e\xd6\xc0\x23\x9c\xbd\x34\x3c\xa1\xac\x18\x7b\x22\x9c\x35\x86\x14\x2e\x0b\xb4\x82\xa9\x51\xb2\x43\x6e\x04\xb7\x86\x47\xf1\x0e\x79\x22\x0a\xb1\xd5\xb9\xe6\x97\x2b\x5a\xf7\x77\xfd\x51\xc6\x0b\x52\xe8\x7e\xa0\xad\xcf\x9e\xc7\xeb\xdf\x53\x56\xd5\x36\xd7\xf2\xfc\x70\x85\x1d\xbe\xa9\x6b\x99\x5e\xc8\xf8\xc2\xda\xae\xff\x1a\xf3\xc3\x08\xfe\xd5\x39\xa7\x1e\xa8\x01\x85\xa2\xc6\x02\xd9\x81\x0f\xa2\xe0\x8d\x59\x4f\x26\x23\x18\xdd\xfa\xe6\x1c\x5a\x34\xd1\xb0\x4e\x9b\x26\xa0\xd5\x1f\x47\x68\xfe\x67\x67\x36\x68\x87\x98\x91\xf5\xf0\xd3\xd1\x20\x96\x64\xa4\xe0\x50\xab\xa8\x47\xe0\xfa\xca\xc5\xd2\xa2\x60\xbc\x98\x19\xb6\xe4\x92\x8e\xe6\xe5\x4d\xf8\xfd\x37\x6a\x7a\x83\x80\xd1\x6d\x0b\x6f\x52\x03\xdf\x2b\xbe\xd5\x2e\x94\xea\x4f\xaa\xd3\xdf\xf2\x88\xb5\x1a\x42\xe1\x42\xc9\x6d\xd3\xf6\x86\x9e\x83\x5f\x01\x00\x00\xff\xff\xa1\xc8\xc2\x7d\x47\x04\x00\x00" +var _stakingproxyRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xcf\x8e\xda\x3c\x10\xbf\xe7\x29\xe6\xe3\xc0\x97\x48\x28\xea\xa1\xea\x21\x5a\x76\x45\x81\xb6\x2b\x56\x80\x08\xad\xda\xa3\xb1\x27\x60\x11\x3c\x91\x33\x51\x41\x2b\xde\xbd\x72\x9c\xb0\x81\xed\xb6\xf5\xc5\xc0\xcc\xfc\xfe\x8d\xd1\x87\x82\x2c\xc3\x13\xc9\x3d\xaa\x35\xed\xd1\x94\x90\x59\x3a\xc0\xbb\xe3\xd3\x62\x3c\x9b\x4e\xd6\x8b\xd9\x74\x3e\x9a\x4c\x56\xd3\x34\x0d\x9a\xee\x94\xc5\x5e\x9b\xed\xd2\xd2\xf1\xd4\x76\xa7\xeb\xd1\xec\x71\xfe\x79\xb9\x5a\x7c\xff\xd1\xb6\x07\x6c\x85\x29\x85\x64\x4d\x26\x14\x4a\x59\x2c\xcb\x04\x46\xfe\xc3\x00\xb4\x4a\x20\x65\xab\xcd\x76\x00\xe2\x40\x95\xe1\x04\xbe\x7e\xd2\xc7\x0f\xef\x23\x78\x0e\x02\x00\x80\x1c\x19\x76\x94\x2b\xb4\x2b\xcc\x12\xe8\x77\x75\xc6\xf5\xf5\xa5\xae\xfa\xee\xc2\x62\x21\x2c\x86\x42\x4a\x8f\x26\x2a\xde\x85\x1f\xc9\x5a\xfa\xf9\x4d\xe4\x15\x46\xd0\x1f\xf9\x9a\x63\x80\xe6\x94\x98\x67\xf1\x85\x05\x86\xd0\xcc\xc7\x25\x93\x15\x5b\x8c\x37\x35\xc2\xdd\x9b\xec\xf7\xa1\x0b\x21\x81\xb7\xea\xa9\xc7\x59\x0a\xde\x45\x17\x56\x77\x1e\x1e\xa0\x10\x46\xcb\xb0\x37\xa6\x2a\x57\x60\x88\xc1\x93\x81\xc5\x0c\x2d\x1a\x89\xc0\x04\x1d\xac\x9e\x47\x38\x7b\xc7\x78\x44\x59\x31\x76\xcc\xb8\xc4\x0c\x29\x5c\x14\x68\x05\x53\xe3\x68\x8b\xdc\x18\x6f\xf7\x10\xc5\x52\x14\x62\xa3\x73\xcd\x1a\xcb\x78\x8b\x7c\xa5\xec\xae\xdf\x5d\x72\x3c\x27\x85\xee\x07\xb4\xf5\x77\x2f\xe5\xf9\xef\x2d\xcb\x6a\x93\x6b\x79\xbe\xbf\xc2\x0e\x5f\xcd\xb5\x62\xc7\xad\xa4\x93\x1f\xac\x13\xfb\xaf\xc9\x3f\x8c\xe0\x5f\xc3\x73\x01\x00\x35\xa0\x50\xd4\x58\x70\xf1\x7b\xea\x45\xc1\xab\xbc\x1e\x4d\x46\x30\xbc\x8d\xce\xe5\x32\x6f\xaa\x61\xdd\x36\x49\x40\xab\x3f\x6e\xd1\xfc\xcf\x2e\x6f\xd0\x0e\x31\x23\xeb\xe1\x27\xc3\x5e\x2c\xc9\x48\xc1\xa1\x56\x51\x47\xc0\xf5\xeb\x8b\xa5\x45\xc1\xf8\x12\x66\xd8\x8a\x4b\x2e\x32\x5f\xfe\x2d\xfe\xfe\x8d\x9b\xce\x22\x60\x78\x4b\xe1\x43\x6a\xe0\x3b\xc3\xb7\xde\x85\x52\xdd\x4d\x5d\xfc\xb7\x3a\x62\xad\x06\x50\xb8\x52\x72\x4b\xda\x3e\xd2\x73\xf0\x2b\x00\x00\xff\xff\x02\xbf\x6d\x2f\x61\x04\x00\x00" func stakingproxyRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5770,11 +5770,11 @@ func stakingproxyRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6a, 0xa8, 0x7a, 0xb4, 0x24, 0xcc, 0x6b, 0x8d, 0x67, 0xfe, 0xdd, 0x4c, 0xad, 0x2d, 0x6b, 0x86, 0x24, 0x5c, 0xfd, 0x26, 0x3e, 0x97, 0xdd, 0xeb, 0xd3, 0xd7, 0x4b, 0x36, 0xc8, 0xb5, 0xe2, 0x5c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0xc5, 0xa9, 0x42, 0x4e, 0xce, 0x54, 0xf, 0x64, 0x6, 0x2b, 0x7f, 0xfa, 0x96, 0x9e, 0x7b, 0xb0, 0x10, 0xab, 0xd9, 0x20, 0xb7, 0x8d, 0x95, 0x17, 0x85, 0xed, 0xd9, 0xb4, 0xfc, 0x74, 0x82}} return a, nil } -var _stakingproxyRemove_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\x51\x4b\xc3\x40\x0c\xc7\xdf\xef\x53\xe4\x49\xda\x97\xe2\x73\x51\xe1\xb0\xa2\x45\xd8\x8e\x9d\x0f\xfa\x98\xb5\x59\x77\xd8\x5e\x8e\x98\xe9\x86\xec\xbb\xcb\xb9\x31\x0b\xe6\x25\x24\xfc\x7f\xe4\x97\x30\x25\x16\x05\xaf\xf8\x1e\xe2\xe0\x84\xf7\x07\xd8\x08\x4f\x70\xbd\xf7\x2f\xf6\xb9\x5d\x3c\xba\xd5\xf2\xf5\xcd\x36\xcd\xea\xc1\x7b\x63\x54\x30\x7e\x60\xa7\x81\x63\x11\xb9\xa7\xb6\xa9\xc1\xab\x84\x38\x94\xf0\x6d\x0c\x00\x40\x12\x4a\x28\x54\x60\xd7\xf1\x2e\x6a\x0d\x76\xa7\x5b\x7b\x1a\x72\x08\xce\x35\x92\x42\xca\x07\x9f\x78\xec\x49\xe0\x16\xce\x44\xb5\x66\x11\xfe\xba\xb9\x9a\x5b\x55\x0b\xee\x29\x2f\x48\xdc\x1f\x74\x57\x64\xd9\x1a\xfe\x25\x97\x89\x04\x95\xe5\x1e\x13\xae\xc3\x18\xf4\xe0\x95\x05\x07\x72\xa8\xdb\xd2\x5c\x24\x66\x02\x95\xd0\xc4\x9f\x94\xe9\x36\x6e\xf8\xf2\xde\xa9\x97\xbf\xc8\xd1\x1c\xcd\x4f\x00\x00\x00\xff\xff\x64\x64\x88\xd5\x33\x01\x00\x00" +var _stakingproxyRemove_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xc1\x4b\xc3\x50\x0c\xc6\xef\xef\xaf\xc8\x69\xb4\x97\xe2\xb9\xa8\x50\xad\x68\x11\xb6\xb2\x27\xa2\xc7\xac\xcd\xba\x87\xed\xcb\x23\x4b\x75\x43\xf6\xbf\xcb\x5b\xc7\x1c\x2c\x97\x40\x92\xdf\x97\xef\x73\x43\x60\x51\xb0\x8a\x5f\xce\x77\xb5\xf0\x6e\x0f\x6b\xe1\x01\x6e\x76\xf6\xad\x78\xad\xe6\xcf\xf5\x72\xf1\xf1\x59\x94\xe5\xf2\xc9\x5a\x63\x54\xd0\x6f\xb1\x51\xc7\x3e\xf1\xdc\x52\x55\xe6\x60\x55\x9c\xef\x52\xf8\x35\x06\x00\x20\x08\x05\x14\x4a\xb0\x69\x78\xf4\x9a\x03\x8e\xba\x49\x1e\x58\x84\x7f\xde\xb1\x1f\x29\x85\x59\x31\xed\x22\x03\xa7\xea\x49\x21\xc4\xff\x2f\xdc\xb7\x24\x70\x07\x27\x81\x6c\xab\x2c\xd8\x51\xb6\x3a\x4a\xdc\xce\x2e\xcd\x66\x73\x6e\x29\x0e\x48\xea\x7f\xf8\x3e\x89\x19\x72\xb8\xba\x5c\x04\x12\x54\x96\x47\x0c\xb8\x72\xbd\xd3\xbd\x9d\xc4\x6b\xd4\x4d\x6a\xce\x66\x2e\x8c\x64\x42\x03\x7f\x53\xa4\x2b\xbf\xe6\x73\xea\xa9\xa7\x47\xe4\x60\x0e\xe6\x2f\x00\x00\xff\xff\xac\xfc\x60\x28\x4a\x01\x00\x00" func stakingproxyRemove_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5790,11 +5790,11 @@ func stakingproxyRemove_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/remove_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0x54, 0xc1, 0x59, 0xe, 0x14, 0xb4, 0xd3, 0xf1, 0xd2, 0xef, 0x53, 0xff, 0x63, 0xb9, 0x6d, 0x1c, 0x93, 0xfc, 0x57, 0x6, 0xae, 0xa4, 0x12, 0x64, 0x2f, 0xc5, 0x89, 0x83, 0xfe, 0x93, 0x46}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0x1a, 0x18, 0xbb, 0x52, 0x27, 0xf6, 0xff, 0xa1, 0x51, 0x75, 0x8b, 0x2e, 0xcf, 0x31, 0xc5, 0x62, 0x55, 0x28, 0x81, 0x46, 0xce, 0xfe, 0x7a, 0x3d, 0x1a, 0xcc, 0x20, 0xbf, 0xce, 0x70, 0xf7}} return a, nil } -var _stakingproxyRemove_staking_proxyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xc1\x4a\xc3\x40\x10\x86\xef\xfb\x14\x73\x92\xe4\x12\x3c\x07\x15\x16\x23\x5a\x84\x76\xe9\x7a\xd0\xe3\x34\x19\x93\xc5\x64\x67\x19\xa7\xda\x22\x7d\x77\x59\x5b\x6a\xa0\x7b\x59\x66\xf8\xbf\x99\x6f\xc2\x94\x58\x14\xbc\xe2\x47\x88\xbd\x13\xde\xed\xe1\x5d\x78\x82\xeb\x9d\x7f\xb1\xcf\x8b\xe5\xa3\x5b\xaf\x5e\xdf\x6c\xd3\xac\x1f\xbc\x37\x46\x05\xe3\x27\xb6\x1a\x38\x16\x91\x3b\x5a\x34\x35\x78\x95\x10\xfb\x12\x7e\x8c\x01\x00\x48\x42\x09\x85\x0a\x6c\x5b\xde\x46\xad\xc1\x6e\x75\xb0\xc7\x22\x87\xe0\xf4\x46\x52\x48\x79\xe1\x13\x8f\x1d\x09\xdc\xc2\x89\xa8\x36\x2c\xc2\xdf\x37\x57\x73\xab\x6a\xc9\x1d\xe5\x06\x89\xfb\x87\xee\x8a\x2c\x5b\x43\xc2\x8b\xec\x2a\x91\xa0\xb2\xdc\x63\xc2\x4d\x18\x83\xee\xbd\xb2\x60\x4f\x0e\x75\xd0\xa1\x34\x67\x91\x99\x44\x25\x34\xf1\x17\xcd\x87\x9d\xcf\x3c\xfe\xe5\x1f\x76\x30\x07\xf3\x1b\x00\x00\xff\xff\x4f\x9f\x84\x5d\x3b\x01\x00\x00" +var _stakingproxyRemove_staking_proxyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xc1\x4b\xc3\x50\x0c\xc6\xef\xef\xaf\xc8\x69\xb4\x97\xe2\xb9\xa8\x50\xad\xe8\x10\xb6\xb2\x27\xa2\xc7\xac\x8d\xed\xc3\xf6\xe5\x91\xa5\xba\x21\xfb\xdf\xe5\xad\x63\x16\xcc\x25\x90\xe4\xfb\xe5\xfb\xdc\x10\x58\x14\xac\xe2\xa7\xf3\x6d\x25\xbc\x3f\xc0\x87\xf0\x00\x57\x7b\xfb\x52\x3c\x2f\x57\x8f\xd5\x66\xfd\xf6\x5e\x94\xe5\xe6\xc1\x5a\x63\x54\xd0\xef\xb0\x56\xc7\x3e\xf1\xdc\xd0\xb2\xcc\xc1\xaa\x38\xdf\xa6\xf0\x63\x0c\x00\x40\x10\x0a\x28\x94\x60\x5d\xf3\xe8\x35\x07\x1c\xb5\x4b\xee\x58\x84\xbf\x5f\xb1\x1f\x29\x85\x45\x31\xed\xa2\x06\xce\xd5\x93\x42\x88\xff\x9f\xb8\x6f\x48\xe0\x06\xce\x80\x6c\xa7\x2c\xd8\x52\xb6\x3d\x21\xae\x17\x73\xb3\xd9\x8a\x1b\x8a\x03\x92\xea\x4f\x7c\x9b\xc4\x0c\x39\x04\xfc\x77\xbb\x0e\x24\xa8\x2c\xf7\x18\x70\xeb\x7a\xa7\x07\x3b\xe1\x2b\xd4\x4e\xbb\xd4\x5c\x0c\xcd\xcc\x64\x42\x03\x7f\xd1\x1c\x76\x49\x3f\xf5\xf4\x24\x3b\x9a\xa3\xf9\x0d\x00\x00\xff\xff\x95\xf6\x53\x62\x52\x01\x00\x00" func stakingproxyRemove_staking_proxyCdcBytes() ([]byte, error) { return bindataRead( @@ -5810,11 +5810,11 @@ func stakingproxyRemove_staking_proxyCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/remove_staking_proxy.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcd, 0xb7, 0xb8, 0xff, 0xfc, 0x1e, 0x9f, 0xd3, 0x1a, 0x76, 0xac, 0x78, 0xe0, 0x9c, 0xf6, 0x9e, 0xd9, 0xed, 0x85, 0xd4, 0x2b, 0xa4, 0x7e, 0xed, 0xc5, 0xbf, 0x38, 0x7c, 0x76, 0xe6, 0x74, 0x14}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x55, 0x28, 0xc8, 0x83, 0xa0, 0x28, 0x62, 0x41, 0xf0, 0xb6, 0xce, 0xd3, 0x13, 0xf5, 0xb8, 0x29, 0xec, 0xf2, 0xdc, 0x76, 0x83, 0x3d, 0x30, 0xfb, 0x13, 0xcc, 0xd2, 0x90, 0x27, 0xf2, 0x54, 0x6a}} return a, nil } -var _stakingproxyRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6b\xf2\x40\x10\xc7\xef\xfb\x29\xe6\xf1\xf0\x90\x40\x91\x1e\x4a\x0f\x52\x2b\x41\xfb\x22\x05\x0d\xa6\x42\x7b\x1c\x93\x51\x97\xc6\x9d\xed\x64\x42\x95\xe2\x77\x2f\xe9\xa6\x9a\xd2\xb9\x0c\x3b\x3b\x2f\xbf\xff\xdf\xee\x3c\x8b\x42\xa6\xf8\x66\xdd\x26\x15\xde\x1f\x60\x2d\xbc\x83\xcb\x7d\xf6\x9c\x3c\x4d\x67\x0f\xe9\x62\xfe\xf2\x9a\x4c\x26\x8b\xbb\x2c\x33\x46\x05\x5d\x85\xb9\x5a\x76\x91\xe3\x82\xa6\x93\x01\x64\x2a\xd6\x6d\x2e\x00\x77\x5c\x3b\x1d\xc0\xf2\xde\xee\xaf\xaf\x62\xf8\x34\x06\x00\xc0\x0b\x79\x14\x8a\x30\xcf\xc3\x7f\x52\xeb\x36\x09\x8f\xa6\x09\xda\x28\x49\xc1\x37\x00\x8f\x5c\x16\x24\x30\x84\x76\xa2\xbf\x62\x11\xfe\xb8\xf9\xdf\xa5\xec\xcf\xb8\xa0\xa6\x40\x92\x9e\x87\x6e\xa3\x06\x7e\x00\x7f\x3a\xe7\x9e\x04\x95\x65\x8c\x1e\x57\xb6\xb4\x7a\xc8\x94\x05\x37\x94\xa2\x6e\xe3\x13\x43\x13\xa3\x11\x78\x74\x36\x8f\x7a\x63\xae\xcb\x02\x1c\x2b\x04\x02\x10\x5a\x93\x90\xcb\x09\x94\xa1\x0a\x37\x02\x33\x6c\xbf\xef\xf7\x62\xf3\x4b\x4f\xd5\xf5\x75\xd8\x95\xd7\x8a\xea\x82\x9e\x0c\x0d\x39\xfe\x77\xde\xd5\xdd\xd3\x17\x7a\xaf\xa9\xd2\xa5\x6b\xab\xd1\x8f\xf1\x21\x07\x35\x47\x73\x34\x5f\x01\x00\x00\xff\xff\x09\x50\xee\xd5\xdd\x01\x00\x00" +var _stakingproxyRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x5f\x6b\xf2\x50\x0c\xc6\xef\xfb\x29\xf2\x7a\x21\x2d\xbc\x94\x5d\x8c\x5d\xc8\x9c\x38\xdd\x1f\x19\x68\xb1\x73\x6c\x97\xb1\x8d\x7a\x58\x3d\x39\x4b\x53\xa6\x0c\xbf\xfb\xa8\xa7\xd3\x8e\xe5\x26\x90\x9c\x3c\xf9\x3d\x39\x66\xeb\x58\x14\x52\xc5\x77\x63\xd7\x89\xf0\x6e\x0f\x2b\xe1\x2d\x5c\xec\xd2\xe7\xe1\xd3\x64\xfa\x90\xcc\x67\xaf\x6f\xc3\xf1\x78\x7e\x97\xa6\x41\xa0\x82\xb6\xc4\x4c\x0d\xdb\xd0\x72\x4e\x93\x71\x0f\x52\x15\x63\xd7\xff\x01\xb7\x5c\x59\xed\xc1\xe2\xde\xec\xae\x2e\x23\xf8\x0a\x02\x00\x00\x27\xe4\x50\x28\xc4\x2c\xf3\x7d\xac\x74\x13\xde\xb2\x08\x7f\xbe\x60\x51\x51\x04\xdd\xa1\xef\xd5\x33\xd0\x44\x41\x0a\xae\xe6\x79\xe4\x22\x27\x81\x3e\x34\x02\x71\xa9\x2c\xb8\xa6\x78\x79\x94\xb8\xee\xb6\xe1\xe3\x29\xe7\x54\x17\x48\x92\xf3\xf0\x4d\x58\x7b\xea\xc1\x9f\x97\x33\x47\x82\xca\x32\x42\x87\x4b\x53\x18\xdd\xa7\x5e\x3c\x41\xdd\x44\x27\x96\x3a\x06\x03\x70\x68\x4d\x16\x76\x46\x5c\x15\x39\x58\x56\xf0\x04\x20\xb4\x22\x21\x9b\x11\x28\x43\xe9\x77\x78\x76\xd8\x1c\xf7\x77\xa2\xe0\x97\xaf\xb2\x7d\xee\x7e\xdb\x66\x63\xaa\x0d\x7a\xba\xb3\xcf\xd1\xbf\xb3\x56\x5b\x27\x16\xfa\xa8\xa8\xd4\x85\x6d\xaa\xe1\xcf\x7f\xf8\xec\xdd\x1c\x82\x43\xf0\x1d\x00\x00\xff\xff\xc1\x5f\xb7\xf4\xf4\x01\x00\x00" func stakingproxyRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -5830,11 +5830,11 @@ func stakingproxyRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0x4, 0xb5, 0x6d, 0xd4, 0x43, 0x6a, 0x62, 0x66, 0x8f, 0xf8, 0x22, 0x3c, 0x0, 0xa1, 0xef, 0x32, 0x6c, 0x7a, 0x1, 0xa5, 0x6b, 0x83, 0x30, 0xa, 0x8d, 0x29, 0x5a, 0xdd, 0xda, 0x77, 0x79}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0xb5, 0xf5, 0x57, 0xe6, 0xec, 0x95, 0xe1, 0x16, 0x5, 0x45, 0x47, 0xe2, 0x72, 0x4f, 0x8e, 0xa0, 0x34, 0xc4, 0xf6, 0x4d, 0x4b, 0x7a, 0xa6, 0x89, 0x6d, 0xd, 0xd, 0x4f, 0x72, 0x43, 0xd}} return a, nil } -var _stakingproxySetup_node_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xe6\x24\x29\xb4\xc5\x73\x09\x42\xb0\xa2\x22\xb4\xa1\xf1\xa0\xc7\xe9\x76\x4c\x97\x6e\x77\x96\xe9\x44\x5a\x4a\xfe\xbb\xac\x4a\x4c\x10\x51\xdf\x69\x59\xde\xfb\xde\x1b\xb7\x8f\x2c\x0a\x95\xe2\xce\x85\xba\x14\x3e\x9e\xe0\x45\x78\x0f\x97\xc7\xea\xb1\x78\xb8\x5f\xdc\x96\xab\xe5\xd3\x73\x31\x9f\xaf\x6e\xaa\xca\x18\x15\x0c\x07\xb4\xea\x38\x64\x23\x38\x1b\x03\x00\x10\x85\x22\x0a\x65\x81\x37\xb4\x8c\x24\xa8\x2c\x33\x28\x1a\xdd\x16\xd6\x72\x13\x34\x39\xe1\x53\x9e\x14\x62\xea\xb9\x63\xbf\x21\x81\x7c\x32\x68\x9f\x5a\x21\x54\x2a\xbf\x1c\xd9\xc8\x74\xe1\x7e\xc3\xf4\x80\xaf\x94\xe5\x93\x1e\x6c\x0c\xca\xb3\x21\x6e\xd1\x4b\x5c\x63\xc4\xb5\xf3\x4e\x4f\x95\xb2\x60\x4d\x25\xea\xf6\x27\xba\x77\x61\x97\x5f\x7c\x63\xa5\x0f\x92\xde\xbc\xf3\xef\x96\xb2\x59\x7b\x67\xdb\xab\xac\x6b\x4a\xfa\xc3\xcc\x8f\x60\x5a\x39\x1e\x44\x15\xa5\x26\xfd\xef\xa5\x1d\x62\xf4\xfe\x6a\x4d\x6b\xde\x02\x00\x00\xff\xff\xf8\x08\x93\x28\xff\x01\x00\x00" +var _stakingproxySetup_node_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\x41\x6b\x02\x31\x10\x85\xef\xf9\x15\x73\x92\x15\x54\x7a\x16\x5b\x90\x5a\xda\x52\xd0\xc5\x2d\xa5\x3d\x8e\x71\xaa\xa1\x6b\x12\x26\xb3\xa2\x88\xff\xbd\x04\xdb\x6d\x42\x29\x65\xe7\x90\x43\x98\xf7\xbe\xf7\x12\xb3\xf3\x8e\x05\x2a\xc1\x0f\x63\x37\x25\xbb\xc3\x11\xde\xd9\xed\xe0\xea\x50\x3d\x4f\x9f\x1e\xe7\xf7\xe5\x72\xf1\xfa\x36\x9d\xcd\x96\x77\x55\xa5\x94\x30\xda\x80\x5a\x8c\xb3\x45\x1f\x4e\x4a\x01\x00\x78\x26\x8f\x4c\x85\x75\x6b\x5a\x78\x62\x14\xc7\x63\xc0\x46\xb6\x45\x85\x7b\x7a\xc1\xba\xa1\x3e\xf4\xa6\x5a\xbb\xc6\x4a\x94\xc1\xd7\xd4\x24\xe0\x23\xf4\xc1\xd5\x6b\x62\x98\x0c\xb3\x28\x23\xcd\x84\x42\xe5\xcf\x46\xd1\x57\xad\x38\xc5\x8d\x82\x38\xc6\x0d\x8d\x02\xee\xa9\x98\x0c\x13\xd3\x01\x88\x1b\xe7\xb6\xf3\x44\x79\x8b\x1e\x57\xa6\x36\x72\xac\x2e\x16\x25\xca\x36\xa1\xc4\x88\x36\xdf\x87\xeb\x9c\xad\xbf\x2d\x0c\x85\x36\x88\x09\xa1\xa1\x49\xef\x17\x37\x5e\x10\x27\x95\x4e\xff\xaf\x94\xcd\xaa\x36\xfa\x7c\x53\xb4\xa9\xe2\x74\xab\xd4\x4a\xff\x7a\xc1\xac\x85\x8f\xc4\xb0\xed\x0c\xbc\x24\x8d\xbc\x41\x26\x45\xe9\xfa\x05\x49\xde\x78\x9e\xd5\x59\x7d\x06\x00\x00\xff\xff\xb2\x78\x1c\x10\xad\x02\x00\x00" func stakingproxySetup_node_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -5850,11 +5850,11 @@ func stakingproxySetup_node_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/setup_node_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb3, 0x0, 0x84, 0x96, 0x15, 0xf1, 0x23, 0x27, 0xca, 0xa4, 0x4, 0xe3, 0xc0, 0x8c, 0xc9, 0x59, 0x5e, 0x1e, 0x11, 0x6b, 0xd7, 0xe2, 0x9f, 0x69, 0x3c, 0xf0, 0x3a, 0xc6, 0xb8, 0x32, 0x46, 0x24}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x55, 0x80, 0xca, 0x2d, 0xa8, 0x16, 0xc2, 0x4f, 0x8a, 0xbd, 0x4c, 0x54, 0x6, 0xb8, 0x80, 0x56, 0x74, 0xd7, 0xb1, 0x31, 0x76, 0x2d, 0x22, 0x9c, 0x44, 0xac, 0x42, 0xa4, 0x4f, 0x7a, 0x1d, 0xcf}} return a, nil } -var _stakingproxyStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6b\xc2\x40\x10\x86\xef\xfb\x2b\xa6\x1e\x4a\x02\x45\x7a\x28\x3d\x48\xad\x04\xed\x87\x14\x34\x18\x0b\xed\x71\x4c\x46\x5d\x8c\x3b\xcb\x64\x44\xa5\xf8\xdf\x4b\xba\xa9\xa6\x74\x2e\xc3\xec\xce\xc7\xf3\xbe\x76\xeb\x59\x14\x32\xc5\x8d\x75\xab\x54\xf8\x70\x84\xa5\xf0\x16\x6e\x0f\xd9\x3c\x79\x1b\x4f\x5e\xd2\xd9\xf4\xe3\x33\x19\x8d\x66\x4f\x59\x66\x8c\x0a\xba\x0a\x73\xb5\xec\x22\xc7\x05\x8d\x47\x3d\xc8\x54\xac\x5b\xdd\x00\x6e\x79\xe7\xb4\x07\xef\xcf\xf6\x70\x7f\x17\xc3\x97\x31\x00\x00\x5e\xc8\xa3\x50\x84\x79\x1e\xfe\x93\x9d\xae\x93\x50\xd4\x4d\xd0\x44\x49\x0a\xbe\x06\x78\xe5\xb2\x20\x81\x3e\x34\x13\xdd\x05\x8b\xf0\xfe\xe1\xba\x4d\xd9\x9d\x70\x41\xf5\x03\x49\x7a\x19\x7a\x8c\x6a\xf8\x1e\xfc\xeb\x9c\x7a\x12\x54\x96\x21\x7a\x5c\xd8\xd2\xea\x31\x53\x16\x5c\x51\x8a\xba\x8e\xcf\x0c\x75\x0c\x06\xe0\xd1\xd9\x3c\xea\x0c\x79\x57\x16\xe0\x58\x21\x10\x80\xd0\x92\x84\x5c\x4e\xa0\x0c\x55\xb8\x11\x98\x61\xfd\x73\xbf\x13\x9b\x3f\x7a\xaa\xb6\xaf\xfd\xb6\xbc\x46\x54\x1b\xf4\x6c\x68\xc8\xf1\xd5\x65\x57\x7b\x4f\xb7\x2e\x68\x42\xfb\x39\x6f\xc8\x55\xd1\xaf\xed\x21\x07\x2d\x27\x73\x32\xdf\x01\x00\x00\xff\xff\x05\x52\x1c\xe7\xdb\x01\x00\x00" +var _stakingproxyStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\xdf\x6b\xc2\x40\x0c\xc7\xdf\xfb\x57\x64\x3e\x48\x0b\xa3\xec\x61\xec\x41\xe6\xc4\xe9\x7e\xc8\x40\x8b\x75\x63\x7b\x8c\x6d\xd4\xc3\x7a\x39\xd2\x14\x95\xe1\xff\x3e\xea\x39\xed\x58\x5e\xc2\x5d\x2e\xdf\x7c\xbe\x39\xb3\x71\x2c\x0a\xa9\xe2\xda\xd8\x65\x22\xbc\xdb\xc3\x42\x78\x03\x37\xbb\x74\xd6\x7f\x1b\x8d\x5f\x92\xe9\xe4\xf3\xab\x3f\x1c\x4e\x9f\xd2\x34\x08\x54\xd0\x96\x98\xa9\x61\x1b\x5a\xce\x69\x34\xec\x40\xaa\x62\xec\xf2\x1a\x70\xc3\x95\xd5\x0e\xbc\x3f\x9b\xdd\xdd\x6d\x04\xdf\x41\x00\x00\xe0\x84\x1c\x0a\x85\x98\x65\xbe\x8e\x95\xae\xc2\x47\x16\xe1\xed\x07\x16\x15\x45\xd0\xee\xfb\x5a\xdd\x03\xa7\x28\x48\xc1\xd5\x3c\xaf\x5c\xe4\x24\xd0\x85\x93\x40\x5c\x2a\x0b\x2e\x29\x9e\x1f\x25\xee\xdb\x4d\xf8\x78\xcc\x39\xd5\x17\x24\xc9\xa5\xf9\x21\xac\x3d\x75\xe0\xdf\xcb\x89\x23\x41\x65\x19\xa0\xc3\xb9\x29\x8c\xee\x53\x2f\x9e\xa0\xae\xa2\x33\x4b\x1d\xbd\x1e\x38\xb4\x26\x0b\x5b\x03\xae\x8a\x1c\x2c\x2b\x78\x02\x10\x5a\x90\x90\xcd\x08\x94\xa1\xf4\x33\x3c\x3b\xac\x8e\xf3\x5b\x51\xf0\xc7\x57\xd9\x5c\x77\xb7\x69\xf3\x64\xaa\x09\x7a\xde\xb3\xcf\xd1\xd5\x45\xab\xa9\x13\xd7\x07\x1a\xd3\x76\xc6\x6b\xb2\x65\xf8\xfb\x1b\x3e\x7b\x2f\x87\xe0\x10\xfc\x04\x00\x00\xff\xff\x85\x46\xe2\xa4\xf2\x01\x00\x00" func stakingproxyStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5870,11 +5870,11 @@ func stakingproxyStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0xf5, 0xa3, 0x7d, 0x2b, 0xd5, 0x34, 0x68, 0x9, 0xf5, 0x8c, 0xe, 0x3c, 0x2a, 0x21, 0xf4, 0x5c, 0x52, 0x32, 0x7, 0x34, 0x9e, 0xa7, 0x2d, 0x55, 0x9, 0x63, 0x5d, 0x22, 0xc2, 0x25, 0xd0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x35, 0x4b, 0x88, 0x62, 0xe1, 0xba, 0x3c, 0x95, 0x97, 0xff, 0xdb, 0xb6, 0x92, 0xb9, 0x43, 0x26, 0xbc, 0xb3, 0x52, 0xa, 0xc5, 0x3, 0x7a, 0x4e, 0x0, 0xe, 0xc6, 0x38, 0xd3, 0x80, 0xe3, 0x7b}} return a, nil } -var _stakingproxyStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6b\xf2\x40\x10\xc7\xef\xfb\x29\xe6\xf1\xf0\x90\x40\x91\x1e\x4a\x0f\x52\x2b\x41\xfb\x22\x05\x0d\x46\xa1\x3d\x8e\xc9\xa8\x8b\x71\x67\x99\x8c\x54\x29\x7e\xf7\x12\x37\xd5\x94\xce\x65\x98\xdd\x79\xf9\xfd\xff\x76\xe7\x59\x14\x32\xc5\xad\x75\xeb\x54\xf8\x70\x84\x95\xf0\x0e\x6e\x0f\xd9\x3c\x79\x1b\x4f\x5e\xd2\xd9\xf4\xfd\x23\x19\x8d\x66\x4f\x59\x66\x8c\x0a\xba\x0a\x73\xb5\xec\x22\xc7\x05\x8d\x47\x3d\xc8\x54\xac\x5b\xdf\x00\xee\x78\xef\xb4\x07\x8b\x67\x7b\xb8\xbf\x8b\xe1\xcb\x18\x00\x00\x2f\xe4\x51\x28\xc2\x3c\x0f\xff\xc9\x5e\x37\x49\x28\xea\x26\x68\xa2\x24\x05\x5f\x03\xbc\x72\x59\x90\x40\x1f\x9a\x89\xee\x92\x45\xf8\xf3\xe1\x7f\x9b\xb2\x3b\xe1\x82\xea\x07\x92\xf4\x3a\xf4\x18\xd5\xf0\x3d\xf8\xd3\x39\xf5\x24\xa8\x2c\x43\xf4\xb8\xb4\xa5\xd5\x63\xa6\x2c\xb8\xa6\x14\x75\x13\x5f\x18\xea\x18\x0c\xc0\xa3\xb3\x79\xd4\x19\xf2\xbe\x2c\xc0\xb1\x42\x20\x00\xa1\x15\x09\xb9\x9c\x40\x19\xaa\x70\x23\x30\xc3\xe6\x7c\xbf\x13\x9b\x5f\x7a\xaa\xb6\xaf\xfd\xb6\xbc\x46\x54\x1b\xf4\x62\x68\xc8\xf1\xbf\xeb\xae\xf6\x9e\x6e\x5d\xd0\xc2\x9d\x53\x31\xe7\x2d\xb9\x2a\xfa\xf1\x3e\xe4\x20\xe8\x64\x4e\xe6\x3b\x00\x00\xff\xff\x77\xae\x51\x52\xe0\x01\x00\x00" +var _stakingproxyStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\xdf\x6b\xc2\x40\x0c\xc7\xdf\xfb\x57\x64\x3e\x48\x0b\xa3\xec\x61\xec\x41\xe6\xc4\xe9\x7e\xc8\x40\x8b\xd5\xb1\x3d\xc6\x36\xea\x61\xbd\x1c\x69\xca\x94\xe1\xff\x3e\xea\x39\xed\x58\x5e\xc2\x5d\x2e\xdf\x7c\xbe\x39\xb3\x75\x2c\x0a\xa9\xe2\xc6\xd8\x55\x22\xbc\xdb\xc3\x52\x78\x0b\x37\xbb\x74\xd6\x7f\x1b\x8d\x5f\x92\xe9\xe4\xe3\xb3\x3f\x1c\x4e\x9f\xd2\x34\x08\x54\xd0\x96\x98\xa9\x61\x1b\x5a\xce\x69\x34\xec\x40\xaa\x62\xec\xea\x1a\x70\xcb\x95\xd5\x0e\xcc\x9f\xcd\xee\xee\x36\x82\xef\x20\x00\x00\x70\x42\x0e\x85\x42\xcc\x32\x5f\xc7\x4a\xd7\xe1\x23\x8b\xf0\xd7\x3b\x16\x15\x45\xd0\xee\xfb\x5a\xdd\x03\xa7\x28\x48\xc1\xd5\x3c\xaf\x5c\xe4\x24\xd0\x85\x93\x40\x5c\x2a\x0b\xae\x28\x5e\x1c\x25\xee\xdb\x4d\xf8\x78\xcc\x39\xd5\x17\x24\xc9\xa5\xf9\x21\xac\x3d\x75\xe0\xdf\xcb\x89\x23\x41\x65\x19\xa0\xc3\x85\x29\x8c\xee\x53\x2f\x9e\xa0\xae\xa3\x33\x4b\x1d\xbd\x1e\x38\xb4\x26\x0b\x5b\x03\xae\x8a\x1c\x2c\x2b\x78\x02\x10\x5a\x92\x90\xcd\x08\x94\xa1\xf4\x33\x3c\x3b\xac\x8f\xf3\x5b\x51\xf0\xc7\x57\xd9\x5c\x77\xb7\x69\xf3\x64\xaa\x09\x7a\xde\xb3\xcf\xd1\xd5\x45\xab\xa9\x13\xd7\x07\x9a\xdb\x63\xca\x67\xbc\x21\x5b\x86\xbf\x5f\xe2\xb3\x37\x74\x08\x0e\xc1\x4f\x00\x00\x00\xff\xff\x31\x9c\xc2\x58\xf7\x01\x00\x00" func stakingproxyStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5890,11 +5890,11 @@ func stakingproxyStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0x15, 0xbf, 0xec, 0x2c, 0xa1, 0xf, 0x8f, 0x26, 0xb9, 0x7f, 0x27, 0xf9, 0xf2, 0x13, 0xbe, 0xa, 0x44, 0x5f, 0x7f, 0x6b, 0x19, 0x18, 0xb2, 0xf7, 0x7, 0x6e, 0x41, 0x39, 0xf2, 0x8e, 0xf9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd4, 0x3c, 0x98, 0x7, 0x3e, 0xf3, 0x54, 0x34, 0x74, 0xe, 0x85, 0x67, 0x86, 0x36, 0x48, 0x70, 0x41, 0x50, 0x8f, 0x42, 0x4f, 0x4, 0xf7, 0xed, 0x10, 0x39, 0x14, 0x6e, 0xb6, 0xfc, 0xae, 0xf6}} return a, nil } -var _stakingproxyUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x41\x6b\xfb\x30\x0c\xc5\xef\xfe\x14\xfa\xf7\xf0\x27\xb9\x94\x9d\xcb\xba\x12\xda\xb1\x95\x41\x1b\xea\x1d\xb6\xa3\x9b\xa8\x89\x99\x6b\x19\x45\x61\x2d\xa3\xdf\x7d\x78\x0e\x6d\xc6\x74\x31\x32\x92\xde\xef\x3d\x7b\x0c\xc4\x02\x5a\xcc\x87\xf5\x4d\xc9\x74\x3a\xc3\x81\xe9\x08\x77\x27\xfd\x5a\xbc\xac\x37\x4f\xe5\x6e\xfb\xf6\x5e\xac\x56\xbb\x47\xad\x95\x12\x36\xbe\x33\x95\x58\xf2\x99\xa7\x1a\xd7\xab\x19\x68\x61\xeb\x9b\x1c\xbe\x94\x02\x00\x08\x8c\xc1\x30\x66\xa6\xaa\xa8\xf7\x32\x83\xa2\x97\xb6\x48\x4d\x1c\x82\xa1\x1c\x0a\x84\x28\xf8\x4c\xae\x46\x86\x39\x0c\x1b\xd3\x3d\x31\xd3\xe7\xfd\xff\x31\xd5\x74\x43\x35\xc6\x0f\xe4\xf2\xb6\xf4\x90\x45\xd8\x19\xfc\x99\xdc\x06\x64\x23\xc4\x4b\x13\xcc\xde\x3a\x2b\x67\x2d\xc4\xa6\xc1\xd2\x48\x9b\x5f\x19\x62\x2d\x16\x10\x8c\xb7\x55\x36\x59\x52\xef\x6a\xf0\x24\x90\x08\x80\xf1\x80\x8c\xbe\x42\x10\x82\x2e\x69\x24\x66\x68\x7f\xf4\x27\xb9\xfa\xe5\xa7\x1b\xe7\x38\x1f\xdb\x1b\x4c\x8d\x41\xaf\x01\xa6\x37\xff\x77\xbb\x35\xbe\x33\xed\x7d\x6c\xb1\x70\x2e\x4b\xe4\x17\x75\x51\xdf\x01\x00\x00\xff\xff\x44\x15\xbb\x2b\xb9\x01\x00\x00" +var _stakingproxyUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x41\x6b\xfa\x40\x10\xc5\xef\xfb\x29\xe6\xef\x41\x92\x4b\xf8\x9f\xa5\x56\x52\x2d\xad\x14\x34\x98\x52\xda\xe3\x98\x8c\xba\x74\xdd\x59\x26\x13\xaa\x14\xbf\x7b\x89\x2b\x9a\xd2\xb9\x2c\xbb\x3b\xf3\xde\xef\x8d\xdd\x07\x16\x85\x52\xf1\xd3\xfa\x6d\x21\x7c\x38\xc2\x46\x78\x0f\xff\x0f\xe5\x6b\xfe\x32\x5f\x3c\x15\xab\xe5\xfb\x47\x3e\x9b\xad\x1e\xcb\xd2\x18\x15\xf4\x0d\x56\x6a\xd9\x27\x9e\x6b\x9a\xcf\x46\x50\xaa\x58\xbf\x4d\xe1\xdb\x18\x00\x80\x20\x14\x50\x28\xc1\xaa\xe2\xd6\xeb\x08\xb0\xd5\x5d\xf2\xc0\x22\xfc\xf5\x86\xae\xa5\x14\x86\x79\xfc\xeb\x66\xe0\x52\x8e\x14\x42\xe7\xff\xcc\xae\x26\x81\x31\x5c\x04\xb2\x46\x59\x70\x4b\xd9\xfa\x2c\x71\x37\xec\xc3\x66\x0b\xae\xa9\x7b\x20\x29\x6e\xc3\xf7\x49\x97\x61\x04\x7f\x3a\x97\x81\x04\x95\x65\x8a\x01\xd7\xd6\x59\x3d\x96\x51\xbc\x40\xdd\xa5\x57\x96\xae\x26\x13\x08\xe8\x6d\x95\x0c\xa6\xdc\xba\x1a\x3c\x2b\x44\x02\x10\xda\x90\x90\xaf\x08\x94\xa1\x89\x1e\x91\x1d\x76\x67\xff\x41\x6a\x7e\xe5\x6a\xfa\xeb\x1d\xf7\x63\x5e\x42\xf5\x41\xaf\x7b\x8d\x67\xfa\xef\xa6\xd5\xd7\xc9\x5a\xdf\x5d\x29\x77\x2e\x89\xe4\x27\x73\x32\x3f\x01\x00\x00\xff\xff\x91\x52\x79\xf8\xd0\x01\x00\x00" func stakingproxyUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -5910,11 +5910,11 @@ func stakingproxyUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4e, 0x22, 0xbf, 0xdd, 0x5d, 0x32, 0xc7, 0xd6, 0xbb, 0x36, 0xf6, 0xe, 0xd0, 0x40, 0xd0, 0xa2, 0x2c, 0x84, 0x49, 0xdd, 0x16, 0xbf, 0x84, 0xa3, 0xa0, 0xb1, 0x4a, 0xc8, 0x33, 0x23, 0xef, 0xa9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0x4c, 0x39, 0xb, 0x11, 0xcc, 0x48, 0x26, 0xb4, 0xe2, 0xda, 0xe5, 0x1d, 0xae, 0x76, 0x93, 0x63, 0xd, 0xf3, 0xee, 0xc6, 0x36, 0xb7, 0x38, 0xd9, 0x45, 0xf7, 0x4d, 0xd7, 0x2a, 0x56, 0x42}} return a, nil } -var _stakingproxyWithdraw_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x5d\x6b\xea\x40\x10\x86\xef\xf3\x2b\xe6\x78\x71\x48\xe0\x20\xe7\xa2\xf4\x42\x6a\x25\x68\x3f\xa4\xa0\xc1\x58\x68\x2f\xc7\xec\x68\x16\xe3\xce\x32\x19\x89\x52\xfc\xef\x25\x5d\xab\x29\x9d\x9b\x61\x77\xbe\x9e\xf7\xb5\x3b\xcf\xa2\x90\x2b\x6e\xad\xdb\x64\xc2\x87\x23\xac\x85\x77\xf0\xff\x90\x2f\xd3\x97\xe9\xec\x29\x5b\xcc\xdf\xde\xd3\xc9\x64\xf1\x90\xe7\x51\xa4\x82\xae\xc6\x42\x2d\xbb\xd8\xb1\xa1\xe9\x64\x00\xb9\x8a\x75\x9b\x7f\x80\x3b\xde\x3b\x1d\xc0\xeb\xa3\x3d\xdc\xde\x24\xf0\x11\x45\x00\x00\x5e\xc8\xa3\x50\x8c\x45\x11\xea\xe9\x5e\xcb\x34\x3c\xda\x26\x38\x47\x45\x0a\xbe\x05\x78\xe6\xca\x90\xc0\x10\xce\x13\xfd\x15\x8b\x70\x73\xf7\xb7\x4b\xd9\x9f\xb1\xa1\xf6\x83\x24\xbb\x0e\xdd\xc7\x2d\xfc\x00\x7e\x75\xce\x3d\x09\x2a\xcb\x18\x3d\xae\x6c\x65\xf5\x98\x2b\x0b\x6e\x28\x43\x2d\x93\x0b\x43\x1b\xa3\x11\x78\x74\xb6\x88\x7b\x63\xde\x57\x06\x1c\x2b\x04\x02\x10\x5a\x93\x90\x2b\x08\x94\xa1\x0e\x37\x02\x33\x94\x5f\xf7\x7b\x49\xf4\x43\x4f\xdd\xf5\x75\xd8\x95\x77\x16\xd5\x05\xbd\x18\x1a\x72\xf2\xe7\xba\xab\xbb\xa7\xdf\x58\x2d\x8d\x60\xb3\xa0\x06\xc5\x90\x59\xf2\x96\x5c\x1d\x7f\xdb\x1f\x72\xd0\x74\x8a\x4e\xd1\x67\x00\x00\x00\xff\xff\x3f\x35\x0b\xc5\xe3\x01\x00\x00" +var _stakingproxyWithdraw_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\xcf\x6b\xc2\x50\x0c\xc7\xef\xfd\x2b\x32\x0f\xd2\xc2\x28\x3b\x8c\x1d\x64\x4e\x9c\xee\x87\x0c\xb4\x58\x37\xb6\x63\x6c\xa3\x7d\x58\x5f\x4a\x9a\x52\x65\xf8\xbf\x8f\xfa\x9c\x76\x2c\x97\xc0\xcb\xcb\x37\x9f\x6f\x62\xb6\x05\x8b\x42\xac\xb8\x31\x76\x1d\x09\xef\xf6\xb0\x12\xde\xc2\xcd\x2e\x5e\x0c\xdf\x26\xd3\x97\x68\x3e\xfb\xfc\x1a\x8e\xc7\xf3\xa7\x38\xf6\x3c\x15\xb4\x25\x26\x6a\xd8\xfa\x96\x53\x9a\x8c\x7b\x10\xab\x18\xbb\xbe\x06\xdc\x72\x65\xb5\x07\xef\xcf\x66\x77\x77\x1b\xc0\xb7\xe7\x01\x00\x14\x42\x05\x0a\xf9\x98\x24\xae\x8e\x95\x66\xfe\x23\x8b\x70\xfd\x81\x79\x45\x01\x74\x87\xae\xd6\xf4\xc0\x29\x72\x52\x28\x1a\x9e\x57\xce\x53\x12\xe8\xc3\x49\x20\x2c\x95\x05\xd7\x14\x2e\x8f\x12\xf7\xdd\x36\x7c\x38\xe5\x94\x9a\x07\x92\xe8\xd2\xfc\xe0\x37\x9e\x7a\xf0\xef\xe7\xac\x20\x41\x65\x19\x61\x81\x4b\x93\x1b\xdd\xc7\x4e\x3c\x42\xcd\x82\x33\x4b\x13\x83\x01\x14\x68\x4d\xe2\x77\x46\x5c\xe5\x29\x58\x56\x70\x04\x20\xb4\x22\x21\x9b\x10\x28\x43\xe9\x66\x38\x76\xc8\x8e\xf3\x3b\x81\xf7\xc7\x57\xd9\x5e\x77\xbf\x6d\xf3\x64\xaa\x0d\x7a\xde\xb3\xcb\xc1\xd5\x45\xab\xad\x13\xd6\x46\xb3\x54\xb0\x9e\x53\x8d\x92\x52\xba\xe0\x0d\xd9\xd2\xff\xbd\x8a\xcb\xce\xd3\xc1\x3b\x78\x3f\x01\x00\x00\xff\xff\xc8\x52\x6a\x35\xfa\x01\x00\x00" func stakingproxyWithdraw_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -5930,11 +5930,11 @@ func stakingproxyWithdraw_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/withdraw_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe5, 0xb1, 0xc7, 0x2c, 0xab, 0x3c, 0x5b, 0xe5, 0xb1, 0xa4, 0x2e, 0xb, 0x7, 0xa6, 0x21, 0xff, 0x71, 0x28, 0x8f, 0x68, 0xb5, 0x96, 0x7, 0xf5, 0x2e, 0x1c, 0xf5, 0xc2, 0xcf, 0x22, 0xdb, 0xd3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x94, 0x94, 0x8f, 0xc0, 0x98, 0x42, 0x18, 0xb7, 0x49, 0xce, 0xa3, 0xc3, 0xa1, 0xd, 0x5b, 0x79, 0xae, 0xe, 0xc4, 0xa9, 0x8a, 0x84, 0x44, 0x7d, 0xe3, 0x64, 0xc5, 0x33, 0xa4, 0x56, 0xc0, 0x2a}} return a, nil } -var _stakingproxyWithdraw_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6b\xf2\x40\x10\xc7\xef\xfb\x29\xe6\xf1\xf0\x90\x40\x91\x1e\x4a\x0f\x52\x2b\x41\xfb\x22\x05\x0d\x46\xa1\x3d\x8e\xc9\x68\x16\xe3\xce\x32\x19\x51\x29\x7e\xf7\x92\xae\xd5\x94\xce\x65\xd8\xd9\x79\xf9\xfd\xff\x76\xeb\x59\x14\x32\xc5\x8d\x75\xeb\x54\xf8\x70\x84\x95\xf0\x16\x6e\x0f\xd9\x3c\x79\x1b\x4f\x5e\xd2\xd9\xf4\xfd\x23\x19\x8d\x66\x4f\x59\x66\x8c\x0a\xba\x1a\x73\xb5\xec\x22\xc7\x05\x8d\x47\x3d\xc8\x54\xac\x5b\xdf\x00\x6e\x79\xe7\xb4\x07\x8b\x67\x7b\xb8\xbf\x8b\xe1\xd3\x18\x00\x00\x2f\xe4\x51\x28\xc2\x3c\x0f\xff\xc9\x4e\xcb\x24\x3c\x9a\x26\x38\x47\x45\x0a\xbe\x01\x78\xe5\xaa\x20\x81\x3e\x9c\x27\xba\x4b\x16\xe1\xfd\xc3\xff\x36\x65\x77\xc2\x05\x35\x05\x92\xf4\x3a\xf4\x18\x35\xf0\x3d\xf8\xd3\x39\xf5\x24\xa8\x2c\x43\xf4\xb8\xb4\x95\xd5\x63\xa6\x2c\xb8\xa6\x14\xb5\x8c\x2f\x0c\x4d\x0c\x06\xe0\xd1\xd9\x3c\xea\x0c\x79\x57\x15\xe0\x58\x21\x10\x80\xd0\x8a\x84\x5c\x4e\xa0\x0c\x75\xb8\x11\x98\xa1\xfc\xbe\xdf\x89\xcd\x2f\x3d\x75\xdb\xd7\x7e\x5b\xde\x59\x54\x1b\xf4\x62\x68\xc8\xf1\xbf\xeb\xae\xf6\x9e\xee\xde\x6a\x59\x08\xee\x17\xae\x29\x53\x31\xe7\x0d\xb9\x3a\xfa\xb1\x3f\xe4\xa0\xe9\x64\x4e\xe6\x2b\x00\x00\xff\xff\x10\x01\xbb\xeb\xe3\x01\x00\x00" +var _stakingproxyWithdraw_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\xcf\x6e\xe2\x40\x0c\xc6\xef\x79\x0a\x2f\x07\x94\x48\xab\x68\x0f\xab\x3d\xa0\xa5\x88\x42\xff\xa0\x4a\x10\x11\xa8\xda\xa3\x49\x0c\x19\x11\xc6\x23\xc7\x11\xa0\x8a\x77\xaf\xc2\x50\x48\x55\x5f\x2c\xd9\xe3\xcf\xbf\xcf\x63\x76\x8e\x45\x21\x55\xdc\x1a\xbb\x49\x84\x0f\x47\x58\x0b\xef\xe0\xcf\x21\x5d\x0c\x5f\x26\xd3\xa7\x64\x3e\x7b\x7b\x1f\x8e\xc7\xf3\x87\x34\x0d\x02\x15\xb4\x15\x66\x6a\xd8\x86\x96\x73\x9a\x8c\x7b\x90\xaa\x18\xbb\xf9\x0d\xb8\xe3\xda\x6a\x0f\x96\x8f\xe6\xf0\xef\x6f\x04\x1f\x41\x00\x00\xe0\x84\x1c\x0a\x85\x98\x65\xbe\x8f\xb5\x16\xe1\x3d\x8b\xf0\xfe\x15\xcb\x9a\x22\xe8\x0e\x7d\xaf\x99\x81\x4b\x94\xa4\xe0\x1a\x9e\x67\x2e\x73\x12\xe8\xc3\x45\x20\xae\x94\x05\x37\x14\xaf\xce\x12\xff\xbb\x6d\xf8\x78\xca\x39\x35\x05\x92\xe4\x36\x7c\x17\x36\x9e\x7a\xf0\xe3\xe5\xcc\x91\xa0\xb2\x8c\xd0\xe1\xca\x94\x46\x8f\xa9\x17\x4f\x50\x8b\xe8\xca\xd2\xc4\x60\x00\x0e\xad\xc9\xc2\xce\x88\xeb\x32\x07\xcb\x0a\x9e\x00\x84\xd6\x24\x64\x33\x02\x65\xa8\xfc\x0e\xcf\x0e\xc5\x79\x7f\x27\x0a\xbe\xf9\xaa\xda\xe7\xee\xb7\x6d\x5e\x4c\xb5\x41\xaf\x77\xf6\x39\xfa\x75\xd3\x6a\xeb\xc4\x7b\xa3\x45\x2e\xb8\x5f\xda\xa6\x4c\xf9\x82\xb7\x64\xab\xf0\xeb\x57\x7c\xf6\x9e\x4e\xc1\x29\xf8\x0c\x00\x00\xff\xff\xe7\x66\xda\x1b\xfa\x01\x00\x00" func stakingproxyWithdraw_unstakedCdcBytes() ([]byte, error) { return bindataRead( @@ -5950,11 +5950,11 @@ func stakingproxyWithdraw_unstakedCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/withdraw_unstaked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xf, 0x29, 0xf5, 0x62, 0x4a, 0xb5, 0x57, 0xd8, 0x30, 0x56, 0xc8, 0xbd, 0xe9, 0x8c, 0x9d, 0x40, 0x3, 0xa3, 0x63, 0xca, 0xca, 0x56, 0x54, 0x8d, 0x6c, 0x8c, 0x8b, 0x40, 0x53, 0xa1, 0xe3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x25, 0x32, 0x9, 0xa9, 0x41, 0x5f, 0x1e, 0x2a, 0x35, 0xd8, 0x56, 0xfe, 0xec, 0x92, 0x60, 0x95, 0xce, 0x40, 0x53, 0x50, 0x5e, 0x15, 0x42, 0x1b, 0x74, 0x87, 0x93, 0xe8, 0x32, 0xb, 0x3d, 0xb8}} return a, nil } -var _storagefeesAdminSet_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6f\xd3\x40\x10\xc5\xef\xfe\x14\xaf\x3d\x20\x57\x42\x31\x07\xc4\x21\xa2\x44\x86\xc6\x5c\xa8\x8a\xe2\x22\xce\xdb\xcd\x38\x5e\x64\xef\x5a\xb3\x63\x12\x84\xfc\xdd\xd1\xfa\x4f\x70\x09\x89\xba\x87\xe4\xe0\xf7\xde\xfc\xde\xce\x9a\xba\x71\x2c\xc8\x2a\xb7\xcf\xc5\xb1\xda\x51\x46\xe4\x51\xb0\xab\xf1\xe6\x90\x7d\x79\xf8\x9e\x3f\x3e\x6c\xd2\xcf\xeb\x6c\xbd\xce\xd3\xbb\xbb\xcd\x3a\xcf\xa3\x28\x49\xf0\x58\x1a\x0f\x61\x65\xbd\xd2\x62\x9c\x85\x2e\x95\xdd\x91\x87\x94\x84\xa2\x72\x7b\xf8\x21\x0f\x45\x08\x6c\x14\xab\x9a\x84\xd8\x47\x33\x53\x3c\x6a\x3e\xfe\x12\xf2\x5f\x89\x37\xe4\x89\x7f\xd2\x36\xcc\x5d\xe2\x5b\x66\x0e\xef\xde\xae\x5e\xa3\x36\xd6\xd4\x6d\x3d\x02\x0e\x22\x15\xfc\x47\xcd\x0d\x7e\x47\x00\xd0\xff\x54\x24\x50\xdb\xda\xd8\x0d\x15\x4b\xbc\xfa\xa7\xdb\x22\x0d\x9f\x8c\x17\x56\xe2\x38\xea\x1d\x0d\x53\xa3\x98\x62\xa5\xb5\x2c\x91\xb6\x52\xa6\x5a\xbb\xd6\xca\x94\x1b\x4e\x92\xe0\xc9\x31\xbb\x3d\x14\x98\x0a\x62\xb2\x9a\x20\xae\x6f\xdc\xcf\x83\x7b\xfa\x41\x5a\x8e\x0e\x4f\x55\xb1\x98\x48\x70\x8b\x10\xbf\x18\x32\xde\x5f\xc6\xfa\x10\x87\x0d\x2c\x91\x8c\x17\x34\xfd\x07\x65\x2f\xbc\x39\x0e\x09\x67\xb5\x42\xa3\xac\xd1\xf1\xf5\x27\xd7\x56\x5b\x58\x27\x13\xeb\x33\xd2\x67\x2b\xe9\xc1\xae\x87\xa0\x6e\xb8\x07\x3a\x90\x6e\x85\x66\xa5\x4d\x81\x0b\x3b\xc2\xd5\x2d\xac\xa9\x66\xfa\x93\xda\x0b\x4f\x32\xd6\xbc\xa7\x9d\xfa\x5f\xca\xa5\x57\x70\xf5\xb7\x68\x37\x87\x3a\xfb\x24\x5e\x88\x74\x7f\xce\x1f\x9f\x4d\x3e\x41\xe9\xa2\xee\x4f\x00\x00\x00\xff\xff\xec\x9d\x5e\x73\x3f\x03\x00\x00" +var _storagefeesAdminSet_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xcd\x6e\xd3\x40\x10\xbe\xfb\x29\xbe\xf6\x50\x39\x12\xb2\x39\x20\x0e\x11\x25\x4a\x69\xcc\x85\xaa\x28\x2e\x70\xde\x6e\xc6\xc9\x22\x7b\xd7\x9a\x1d\x93\x20\xe4\x77\x47\xeb\x9f\xe0\x12\x12\xb1\x07\xfb\xb0\xdf\xef\xcc\x9a\xaa\x76\x2c\xc8\x4a\xb7\xcf\xc5\xb1\xda\x52\x46\xe4\x51\xb0\xab\xf0\xfa\x90\x7d\x7a\xfc\x96\x3f\x3d\xae\x97\x1f\x57\xd9\x6a\x95\x2f\xef\xef\xd7\xab\x3c\x8f\xa2\x34\xc5\xd3\xce\x78\x08\x2b\xeb\x95\x16\xe3\x2c\xf4\x4e\xd9\x2d\x79\xc8\x8e\x50\x94\x6e\x0f\xdf\xeb\xa1\x08\x82\xb5\x62\x55\x91\x10\xfb\x68\x42\x8a\x07\xcc\xdd\x4f\x21\xff\x99\x78\x4d\x9e\xf8\x07\x6d\x82\xef\x1c\x5f\x32\x73\x78\xfb\x66\xf1\x0a\x95\xb1\xa6\x6a\xaa\x21\x60\x0f\x52\x81\x7f\xc4\xcc\xf0\x2b\x02\x80\xee\x53\x92\x40\x6d\x2a\x63\xd7\x54\xcc\x71\xf3\x57\xb7\x64\x19\xae\x8c\x17\x56\xe2\x38\xea\x18\x35\x53\xad\x98\x62\xa5\xb5\xcc\xa1\x1a\xd9\xc5\x77\x8e\xd9\xed\xbf\xaa\xb2\xa1\x19\x6e\x96\x5a\xbb\xc6\xca\x68\x13\x4e\x9a\xe2\xb9\xc3\x40\x81\xa9\x20\x26\xab\x09\xe2\xba\x01\x74\xf6\x70\xcf\xdf\x49\xcb\x91\xe1\xa9\x2c\x92\x31\x18\x6e\x11\xdc\x92\x61\x02\x49\xaf\xf5\xee\x72\xda\xf7\x71\x58\xcc\x1c\xe9\xc0\x1a\xff\x01\xd9\x01\x67\x47\xb3\x70\x16\x0b\xd4\xca\x1a\x1d\x5f\x7f\x70\x4d\xb9\x81\x75\x32\x66\x7e\x91\xf8\xc5\xa6\xba\x80\xd7\xbd\x50\xdb\x8f\x87\x0e\xa4\x1b\xa1\x49\x79\x53\xe0\xc2\xea\x70\x75\x0b\x6b\xca\x09\xfe\xa4\x7e\xe2\x49\x86\x9a\x0f\xb4\x55\xff\x52\xb9\xf4\x38\xae\xfe\x14\x6d\xa7\xa1\xce\xbe\x94\xff\x8c\xf4\x70\x8e\x1f\x9f\x55\x3e\x89\xd2\x46\xed\xef\x00\x00\x00\xff\xff\xaa\xbb\x15\x71\x56\x03\x00\x00" func storagefeesAdminSet_parametersCdcBytes() ([]byte, error) { return bindataRead( @@ -5970,7 +5970,7 @@ func storagefeesAdminSet_parametersCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/admin/set_parameters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa7, 0xa3, 0x32, 0x6, 0x3f, 0x4f, 0xeb, 0xc7, 0xce, 0x3b, 0x61, 0xd9, 0x69, 0x36, 0x97, 0xdd, 0xaf, 0xd5, 0xa1, 0x25, 0x5d, 0xda, 0xa7, 0x27, 0x20, 0xcd, 0x26, 0x35, 0xa6, 0xb4, 0x82, 0xd1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0x21, 0xda, 0xf9, 0xc4, 0x44, 0x7b, 0x28, 0xe5, 0xdc, 0xc9, 0x44, 0x7e, 0x43, 0x3c, 0x4, 0x72, 0xa6, 0xb4, 0x54, 0xba, 0x5b, 0x2d, 0x63, 0x14, 0xef, 0x32, 0xbe, 0x78, 0x21, 0x9b, 0x2b}} return a, nil } diff --git a/lib/go/templates/manifest.mainnet.json b/lib/go/templates/manifest.mainnet.json index 5c75f2cd8..a41b25966 100755 --- a/lib/go/templates/manifest.mainnet.json +++ b/lib/go/templates/manifest.mainnet.json @@ -4,7 +4,7 @@ { "id": "TH.01", "name": "Withdraw Unlocked FLOW", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: AuthAccount) {\n self.holderRef = acct.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -19,12 +19,12 @@ } ], "network": "mainnet", - "hash": "a2146e3e6e7718779ce59376b88760c154d82b7d132fe2c377114ec7cf434e7b" + "hash": "7eaae3a9b5c879d47d6c20ac8194cfbe900a82a1981234861bdfc8257f834a9c" }, { "id": "TH.02", "name": "Deposit Unlocked FLOW", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: AuthAccount) {\n self.holderRef = acct.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -39,12 +39,12 @@ } ], "network": "mainnet", - "hash": "5ff29c78cdb13cc792f77cf81ca84d5fb5ef1ecd89de8919d14b674c6012f6af" + "hash": "cc17f3af647a27559b90cfe530e36548c624f28846d7e4dfb9a9b35908281e8d" }, { "id": "TH.06", "name": "Register Node", - "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow ref to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let nodeInfo = StakingProxy.NodeInfo(nodeID: id, role: role, networkingAddress: networkingAddress, networkingKey: networkingKey, stakingKey: stakingKey)\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n \n }\n}\n", + "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow ref to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let nodeInfo = StakingProxy.NodeInfo(\n nodeID: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey\n )\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n \n }\n}\n", "arguments": [ { "type": "String", @@ -114,12 +114,12 @@ } ], "network": "mainnet", - "hash": "9d5575c8d3de5a03b9959b614f8c3ae6e5f5063880a6203dc4a4381d67880e90" + "hash": "4a415dd00a67fcdea78f9280b85c60b311779b7d070c6cdc039e26e40b8864dc" }, { "id": "TH.08", "name": "Stake New Locked FLOW", - "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\n\nimport LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.stakeNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.stakeNewTokens(amount: amount)\n \n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\n\nimport LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.stakeNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.stakeNewTokens(amount: amount)\n \n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -134,12 +134,12 @@ } ], "network": "mainnet", - "hash": "fecfd7502ae7b6882d0b8dc11452a3fd36bc024e028114388e265dee53ada841" + "hash": "24638d111c8cc94bb27d40a12d84ee6259050b3341b7ddf3befcbd9086f42fe1" }, { "id": "TH.09", "name": "Re-stake Unstaked FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -154,12 +154,12 @@ } ], "network": "mainnet", - "hash": "677cc0ac3962ec136ca26dbec0aa942d926640ecf8418433f0db4b7925f5d0fe" + "hash": "ea3ec34dd725eec75dbe183920f67046835af2c18694fc62124fa6ecd9dfb03c" }, { "id": "TH.10", "name": "Re-stake Rewarded FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeRewardedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeRewardedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -174,12 +174,12 @@ } ], "network": "mainnet", - "hash": "28d1719c5b21c88c62665db5ba04886809f3234c27057b057c36d5f265ee9de4" + "hash": "e3dd8ed6ebc615b5320d4123521d8034336b75f6cb934cf09a92a91e8635b0fe" }, { "id": "TH.11", "name": "Request Unstake of FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.requestUnstaking(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.requestUnstaking(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -194,20 +194,20 @@ } ], "network": "mainnet", - "hash": "4e2a35541453f89c55e5dc6dbc963290380d779c81df0b3bf89c29b2a8d7a9fe" + "hash": "b972bc22914df2476770c304f2d19dd07732a4b04a048bd699d6188a0d835bb3" }, { "id": "TH.12", "name": "Unstake All FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction() {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.unstakeAll()\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction() {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.unstakeAll()\n }\n}\n", "arguments": [], "network": "mainnet", - "hash": "7099904b953b062e81e2575a2c2081b3d98bfccf5c743b4bdb224b937e292dad" + "hash": "6d8677806cec6f5b36cc7c8fe72e0656bd3249d9a9372fbeacecf86ec3788fb7" }, { "id": "TH.13", "name": "Withdraw Unstaked FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -222,12 +222,12 @@ } ], "network": "mainnet", - "hash": "dcae4faa6d689873f7caf7c5efef669f9fe1d4113e58b474b7aec1e07113a7ff" + "hash": "f98acdead3010e539b345ec9ac2e00057a5e15b77989dcd279533d694e9475ec" }, { "id": "TH.14", "name": "Withdraw Rewarded FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FlowToken from 0x1654653399040a61\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FlowToken from 0x1654653399040a61\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -242,12 +242,12 @@ } ], "network": "mainnet", - "hash": "9bb8f0562eea5e45c11f9289540f39c99a21c9a0fb060a7d3f832e98c2696f2d" + "hash": "71108d7604c86c477c55d170142ab0e8ff46a6de7d1e0f6a2d3892f07997ad80" }, { "id": "TH.16", "name": "Register Operator Node", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).getCapability\n \u003c\u0026StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}\u003e\n (StakingProxy.NodeOperatorCapabilityPublicPath)!.borrow() \n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).capabilities.get\n \u003c\u0026StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}\u003e\n (StakingProxy.NodeOperatorCapabilityPublicPath)!.borrow() \n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", "arguments": [ { "type": "Address", @@ -284,12 +284,12 @@ } ], "network": "mainnet", - "hash": "97b3436482c5aefc1baf8b850e92c829202e468c57241dec707b6c27bd89d15c" + "hash": "bf30cbfbf55229949e2b61c11696094d6b015ebcff660130e85db95cad02c0e2" }, { "id": "TH.17", "name": "Register Delegator", - "source": "import FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\nimport FlowIDTableStaking from 0x8624b52f9ddcd04a\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\nimport FlowIDTableStaking from 0x8624b52f9ddcd04a\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -315,12 +315,12 @@ } ], "network": "mainnet", - "hash": "80da4be458d929ca3933d717859425f652cfbac4ce0ed5124d6dae9bce59b8b2" + "hash": "28b85fd7223b166dd80be92285d60dd0f91916c68bf54a09ef0bfd41a7f9384a" }, { "id": "TH.19", "name": "Delegate New Locked FLOW", - "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowDelegator()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.delegateNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.delegateNewTokens(amount: amount)\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowDelegator()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.delegateNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.delegateNewTokens(amount: amount)\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -335,12 +335,12 @@ } ], "network": "mainnet", - "hash": "b7c7e03fdbbe2dee6efb35dfab741aba89a91122bd778efa1ed3ce7f4cc27e91" + "hash": "5c885520bc33265385f193f0d44e527c09f4375edbd93e42c2f446456285121f" }, { "id": "TH.20", "name": "Re-delegate Unstaked FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -355,12 +355,12 @@ } ], "network": "mainnet", - "hash": "2027331b72d8710a1a05feb6ecebadb5858d134bc8c95d6f261319cd9fa1bb95" + "hash": "4c9db2ae14d53994a90ad11618ef996e0089a042fb6b9227a047ec374b20d7f0" }, { "id": "TH.21", "name": "Re-delegate Rewarded FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateRewardedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateRewardedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -375,12 +375,12 @@ } ], "network": "mainnet", - "hash": "864edbff384335ef21c26b3bcf17d36b2b1d894afbe2b203f58099cc457971e4" + "hash": "d22c22bd82d04fb46de6c1cc7d79af196912d208a4b21ae7e3a69b2fc41b47dc" }, { "id": "TH.22", "name": "Unstake Delegated FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.requestUnstaking(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.requestUnstaking(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -395,12 +395,12 @@ } ], "network": "mainnet", - "hash": "262aeddd3f49fd6222d706c02696bd7d359ba962b6c30232cc93d7cf4166a23e" + "hash": "9fee5b7a755f31992fda0fddb42edcc4f3362ef2d9f56f115304504d9a26e8ff" }, { "id": "TH.23", "name": "Withdraw Unstaked FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -415,12 +415,12 @@ } ], "network": "mainnet", - "hash": "12675a013c064b6d0ef11dbf13f92210489bf2b3d299b2f14cd09be70b37577f" + "hash": "9d23d2bcd097234184d2e768baf884d4a4b778786f09cc5feb93c43bb6630a9f" }, { "id": "TH.24", "name": "Withdraw Rewarded FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FlowToken from 0x1654653399040a61\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let delegatorProxy = self.holderRef.borrowDelegator()\n\n delegatorProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FlowToken from 0x1654653399040a61\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let delegatorProxy = self.holderRef.borrowDelegator()\n\n delegatorProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -435,12 +435,12 @@ } ], "network": "mainnet", - "hash": "239ffa449eae5560eec3e99633dcf9c63b1e9c99996d1c5636644dceef9ec44b" + "hash": "c207a5d9482bb27ac8339f0c2279c9c27d988d5d6cfa21f48497d9796df301b0" }, { "id": "TH.25", "name": "Update Networking Address", - "source": "import FlowIDTableStaking from 0x8624b52f9ddcd04a\n\ntransaction(newAddress: String) {\n\n // Local variable for a reference to the node object\n let stakerRef: auth(FlowIDTableStaking.NodeOperator) \u0026FlowIDTableStaking.NodeStaker\n\n prepare(acct: AuthAccount) {\n // borrow a reference to the node object\n self.stakerRef = acct.borrow\u003cauth(FlowIDTableStaking.NodeOperator) \u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)\n ?? panic(\"Could not borrow reference to staking admin\")\n }\n\n execute {\n\n self.stakerRef.updateNetworkingAddress(newAddress)\n\n }\n}", + "source": "import FlowIDTableStaking from 0x8624b52f9ddcd04a\n\ntransaction(newAddress: String) {\n\n // Local variable for a reference to the node object\n let stakerRef: auth(FlowIDTableStaking.NodeOperator) \u0026FlowIDTableStaking.NodeStaker\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n // borrow a reference to the node object\n self.stakerRef = acct.storage.borrow\u003cauth(FlowIDTableStaking.NodeOperator) \u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)\n ?? panic(\"Could not borrow reference to staking admin\")\n }\n\n execute {\n self.stakerRef.updateNetworkingAddress(newAddress)\n }\n}\n", "arguments": [ { "type": "String", @@ -455,20 +455,20 @@ } ], "network": "mainnet", - "hash": "fb1c32ed6112e00131beff25fafca6b57216d03b0fbfa6978e953739f5a4c9b4" + "hash": "6a6bda6e2933c6e323ce9af9472d2397db70336f538bd36eb69d18604317c535" }, { "id": "SCO.01", "name": "Setup Staking Collection", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport FlowIDTableStaking from 0x8624b52f9ddcd04a\nimport LockedTokens from 0x8d0e87b65159ae63\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// This transaction sets up an account to use a staking collection\n/// It will work regardless of whether they have a regular account, a two-account locked tokens setup,\n/// or staking objects stored in the unlocked account\n\ntransaction {\n prepare(signer: AuthAccount) {\n\n // If there isn't already a staking collection\n if signer.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath) == nil {\n\n // Create private capabilities for the token holder and unlocked vault\n let lockedHolder = signer.link\u003c\u0026LockedTokens.TokenHolder\u003e(/private/flowTokenHolder, target: LockedTokens.TokenHolderStoragePath)!\n let flowToken = signer.link\u003c\u0026FlowToken.Vault\u003e(/private/flowTokenVault, target: /storage/flowTokenVault)!\n \n // Create a new Staking Collection and put it in storage\n if lockedHolder.check() {\n signer.save(\u003c-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: lockedHolder), to: FlowStakingCollection.StakingCollectionStoragePath)\n } else {\n signer.save(\u003c-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: nil), to: FlowStakingCollection.StakingCollectionStoragePath)\n }\n\n // Create a public link to the staking collection\n signer.link\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(\n FlowStakingCollection.StakingCollectionPublicPath,\n target: FlowStakingCollection.StakingCollectionStoragePath\n )\n }\n\n // borrow a reference to the staking collection\n let collectionRef = signer.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow staking collection reference\")\n\n // If there is a node staker object in the account, put it in the staking collection\n if signer.borrow\u003c\u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath) != nil {\n let node \u003c- signer.load\u003c@FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)!\n collectionRef.addNodeObject(\u003c-node, machineAccountInfo: nil)\n }\n\n // If there is a delegator object in the account, put it in the staking collection\n if signer.borrow\u003c\u0026FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath) != nil {\n let delegator \u003c- signer.load\u003c@FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath)!\n collectionRef.addDelegatorObject(\u003c-delegator)\n }\n }\n}\n", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport FlowIDTableStaking from 0x8624b52f9ddcd04a\nimport LockedTokens from 0x8d0e87b65159ae63\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// This transaction sets up an account to use a staking collection\n/// It will work regardless of whether they have a regular account, a two-account locked tokens setup,\n/// or staking objects stored in the unlocked account\n\ntransaction {\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // If there isn't already a staking collection\n if signer.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath) == nil {\n\n // Create private capabilities for the token holder and unlocked vault\n let lockedHolder = signer.capabilities.storage.issue\u003c\u0026LockedTokens.TokenHolder\u003e(target: LockedTokens.TokenHolderStoragePath)!\n let flowToken = signer.capabilities.storage.issue\u003c\u0026FlowToken.Vault\u003e(target: /storage/flowTokenVault)!\n\n // Create a new Staking Collection and put it in storage\n if lockedHolder.check() {\n newAccount.storage.save(\n \u003c- FlowStakingCollection.createStakingCollection(\n unlockedVault: flowToken,\n tokenHolder: lockedHolder\n ),\n to: FlowStakingCollection.StakingCollectionStoragePath\n )\n } else {\n newAccount.storage.save(\n \u003c- FlowStakingCollection.createStakingCollection(\n unlockedVault: flowToken,\n tokenHolder: nil\n ),\n to: FlowStakingCollection.StakingCollectionStoragePath\n )\n }\n\n // Publish a capability to the created staking collection.\n let stakingCollectionCap = newAccount.capabilities.storage.issue\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(\n target: FlowStakingCollection.StakingCollectionStoragePath\n )\n\n newAccount.capabilities.publish(\n stakingCollectionCap\n at: FlowStakingCollection.StakingCollectionPublicPath\n )\n }\n\n // borrow a reference to the staking collection\n let collectionRef = signer.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow staking collection reference\")\n\n // If there is a node staker object in the account, put it in the staking collection\n if signer.storage.borrow\u003c\u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath) != nil {\n let node \u003c- signer.storage.load\u003c@FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)!\n collectionRef.addNodeObject(\u003c-node, machineAccountInfo: nil)\n }\n\n // If there is a delegator object in the account, put it in the staking collection\n if signer.storage.borrow\u003c\u0026FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath) != nil {\n let delegator \u003c- signer.storage.load\u003c@FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath)!\n collectionRef.addDelegatorObject(\u003c-delegator)\n }\n }\n}\n", "arguments": [], "network": "mainnet", - "hash": "0e5c2445c0b1016eed4f60c429f233aa0bb223a0d9ff2aedffce00a58037a2bf" + "hash": "911e68d071a5b3847018e0270ebbd289fd0fb7e58c73f0e9cd917f3d822175bb" }, { "id": "SCO.02", "name": "Register Delegator", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Registers a delegator in the staking collection resource\n/// for the specified nodeID and the amount of tokens to commit\n\ntransaction(id: String, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.registerDelegator(nodeID: id, amount: amount) \n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Registers a delegator in the staking collection resource\n/// for the specified nodeID and the amount of tokens to commit\n\ntransaction(id: String, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.registerDelegator(nodeID: id, amount: amount) \n }\n}\n", "arguments": [ { "type": "String", @@ -494,12 +494,12 @@ } ], "network": "mainnet", - "hash": "c5636d510872a16eb06996dacb43d6a28f8f72ff1b05b2eb03416cc711d9bb1f" + "hash": "150d5c5875805fd081e8f35b943df01eb4ae03ef61751db3a0ede5a6903ce17c" }, { "id": "SCO.03", "name": "Register Node", - "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n publicKeys: [Crypto.KeyListEntry]?) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account) \n {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys! {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n publicKeys: [Crypto.KeyListEntry]?) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account) \n {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys! {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -619,12 +619,12 @@ } ], "network": "mainnet", - "hash": "79de7119aea61bdafb39cc3d1f4fa17ca802c2732726a86d2c636dbc19808b68" + "hash": "003be62cb2b3b95740b1e6bb471708f39563bfea8847d53d1626802357bcd7e5" }, { "id": "SCO.04", "name": "Create Machine Account", - "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Creates a machine account for a node that is already in the staking collection\n/// and adds public keys to the new account\n\ntransaction(nodeID: String, publicKeys: [Crypto.KeyListEntry]) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n } else {\n panic(\"Could not create a machine account for the node\")\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Creates a machine account for a node that is already in the staking collection\n/// and adds public keys to the new account\n\ntransaction(nodeID: String, publicKeys: [Crypto.KeyListEntry]) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n } else {\n panic(\"Could not create a machine account for the node\")\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -676,12 +676,12 @@ } ], "network": "mainnet", - "hash": "dd3b327b09087ea7f8e92a22a6b04a3c6ca33b868b430c4f15f251658c38c1b7" + "hash": "228675a04f21ba0daba3b8d225032fccc7dc606291f5aa6bb9d2868d9cf45a6c" }, { "id": "SCO.05", "name": "Request Unstaking", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Requests unstaking for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.requestUnstaking(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Requests unstaking for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.requestUnstaking(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -725,12 +725,12 @@ } ], "network": "mainnet", - "hash": "a552951c5e6300a118610fbf2d36b3073ee266e1d26787d04717c141976ef78c" + "hash": "8f402f11f8b2924e91d3a559b3d6929387dbf86dcf6fe77772336b51805f4c23" }, { "id": "SCO.06", "name": "Stake New Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits new tokens to stake for the specified node or delegator in the staking collection\n/// The tokens from the locked vault are used first, if it exists\n/// followed by the tokens from the unlocked vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeNewTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits new tokens to stake for the specified node or delegator in the staking collection\n/// The tokens from the locked vault are used first, if it exists\n/// followed by the tokens from the unlocked vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeNewTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -774,12 +774,12 @@ } ], "network": "mainnet", - "hash": "8e10ac56db8ec5d5e0051d3c9608fabc8edd6abed983f6d3a254e7668a54b32b" + "hash": "471d880b2d00005d6236b671867bc8f5f7879e61ac43fc9702ec688f533453ec" }, { "id": "SCO.07", "name": "Stake Rewarded Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits rewarded tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits rewarded tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -823,12 +823,12 @@ } ], "network": "mainnet", - "hash": "907c4cfd67a98a8003393c64dc74eb7a957b229352a266139a542bb105ac4c40" + "hash": "ad13f74292868cff1cb12988ef37582906c354c9d289e246ce0752a2f8fc0fd3" }, { "id": "SCO.08", "name": "Stake Unstaked Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits unstaked tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits unstaked tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -872,12 +872,12 @@ } ], "network": "mainnet", - "hash": "082e690b9647182cf6969db1a0fa8e0f1728da6db01fe0d462e9f0841c268cbb" + "hash": "445c0ada7fa24a8b6721833eb0e6815744e9c6411319dfbefe0dc4c51486f2cb" }, { "id": "SCO.09", "name": "Unstake All", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Requests to unstake ALL tokens for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.unstakeAll(nodeID: nodeID)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Requests to unstake ALL tokens for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.unstakeAll(nodeID: nodeID)\n }\n}\n", "arguments": [ { "type": "String", @@ -892,12 +892,12 @@ } ], "network": "mainnet", - "hash": "df9c6486baa6f8f685368ea216659239cb81fa8ebd9062a9723edb54ca0d7525" + "hash": "cdfa6534d531b6b8a62914ce0fbaad4e8418652057b921c2573ac7b6eca51212" }, { "id": "SCO.10", "name": "Withdraw Rewarded Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw rewarded tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw rewarded tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -941,12 +941,12 @@ } ], "network": "mainnet", - "hash": "27a2b60d538b8bb883b602ea83d1697986a29dd69a44a9209dc75affb9e63299" + "hash": "08bb26c1c7eef108bed93d98ebe74cbabe29b738cd13ee1666652cf525035584" }, { "id": "SCO.11", "name": "Withdraw Unstaked Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw unstaked tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault if it is there\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw unstaked tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault if it is there\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -990,12 +990,12 @@ } ], "network": "mainnet", - "hash": "6d50ab1ef3d74203081c38306da74f5ad8fdd489e49fba732f8ba194d0c781c8" + "hash": "4d3ccd5be7bc28aa5fc131b7a58e38a951b892313558444ed787244602fd0746" }, { "id": "SCO.12", "name": "Close Stake", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Closes out a staking object in the staking collection\n// This does not remove the record from the identity table,\n// but it does mean that the account that closes it cannot ever access it again\n\ntransaction(nodeID: String, delegatorID: UInt32?) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.closeStake(nodeID: nodeID, delegatorID: delegatorID)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Closes out a staking object in the staking collection\n// This does not remove the record from the identity table,\n// but it does mean that the account that closes it cannot ever access it again\n\ntransaction(nodeID: String, delegatorID: UInt32?) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.closeStake(nodeID: nodeID, delegatorID: delegatorID)\n }\n}\n", "arguments": [ { "type": "String", @@ -1028,12 +1028,12 @@ } ], "network": "mainnet", - "hash": "ecdffc1ae67479bc20c06eba6c776ff37b9523660ff1cd3129a3924d92484884" + "hash": "2d48afaf9b2f8bf83ac1879cd77b726c1502d78cf6a103cfaee9633e6facc129" }, { "id": "SCO.13", "name": "Transfer Node", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeStaker object from an authorizers accoount\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: AuthAccount) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.getCapability\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath).borrow()\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeStaker object from an authorizers accoount\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .get\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath)!\n .borrow()\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", "arguments": [ { "type": "String", @@ -1059,12 +1059,12 @@ } ], "network": "mainnet", - "hash": "cdc3a63d0c75ea95b414becb6fbb8f5a8004236d48661cd3c3d4f540ee4d422e" + "hash": "e216a7e4d19e22831bce98085bd21d008ab7e816622d2cef45972083a945e1e4" }, { "id": "SCO.14", "name": "Transfer Delegator", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeDelegator object from an authorizers accoount\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: AuthAccount) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.getCapability\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath).borrow()\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeDelegator object from an authorizers accoount\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .get\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath)!\n .borrow()\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", "arguments": [ { "type": "String", @@ -1101,12 +1101,12 @@ } ], "network": "mainnet", - "hash": "b34d6fafcc5a4d0ed9cf92e168a08d0674c93341e2393ee72dde6664918ec240" + "hash": "44f5bd36cab4e0024326452164a5ed7e1c783d7498e516b93a03f30bec330093" }, { "id": "SCO.15", "name": "Withdraw From Machine Account", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw tokens from the machine account\n/// The tokens are automatically deposited to the unlocked account vault\n\ntransaction(nodeID: String, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawFromMachineAccount(nodeID: nodeID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw tokens from the machine account\n/// The tokens are automatically deposited to the unlocked account vault\n\ntransaction(nodeID: String, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawFromMachineAccount(nodeID: nodeID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -1132,12 +1132,12 @@ } ], "network": "mainnet", - "hash": "f9c48e18bda7f113e82711a4c95dfd151c6600ed9fbf46ceb22566d6c5728c6f" + "hash": "1e6c9182b99f81993136a908e7fb3972ba77123f34121e77328864188f5b314e" }, { "id": "SCO.16", "name": "Update Networking Address", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Changes the networking address for the specified node\n\ntransaction(nodeID: String, newAddress: String) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.updateNetworkingAddress(nodeID: nodeID, newAddress: newAddress)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Changes the networking address for the specified node\n\ntransaction(nodeID: String, newAddress: String) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.updateNetworkingAddress(nodeID: nodeID, newAddress: newAddress)\n }\n}\n", "arguments": [ { "type": "String", @@ -1163,7 +1163,7 @@ } ], "network": "mainnet", - "hash": "ff067b40ac67020ef864cd14842f62023254da34dd2ded56affa1364305bf1c5" + "hash": "689f6d8bf2246c1cf9e41edcbc8c7ad9be1e55d31182a27b1fa0c67fc68d1857" } ] } \ No newline at end of file diff --git a/lib/go/templates/manifest.testnet.json b/lib/go/templates/manifest.testnet.json index e3b75db6d..704ef2df7 100755 --- a/lib/go/templates/manifest.testnet.json +++ b/lib/go/templates/manifest.testnet.json @@ -4,7 +4,7 @@ { "id": "TH.01", "name": "Withdraw Unlocked FLOW", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: AuthAccount) {\n self.holderRef = acct.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -19,12 +19,12 @@ } ], "network": "testnet", - "hash": "6e73db6edd0190f5311f6adc5f2b1f27e9e60c68574b00ee90da867da52cdbb1" + "hash": "abcf1f449842f2c1da40295b13a312f766ae0984ff011e8ba2ddb0fec0e1a206" }, { "id": "TH.02", "name": "Deposit Unlocked FLOW", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: AuthAccount) {\n self.holderRef = acct.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -39,12 +39,12 @@ } ], "network": "testnet", - "hash": "e806681df17e7d6baef776f46d774226384ecbe92949ed368e27a80657b9d335" + "hash": "90b47e234a0574e1b88aa5f5d7a9d8863bc50e7db68c03e091723534a52cbd03" }, { "id": "TH.06", "name": "Register Node", - "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow ref to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let nodeInfo = StakingProxy.NodeInfo(nodeID: id, role: role, networkingAddress: networkingAddress, networkingKey: networkingKey, stakingKey: stakingKey)\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n \n }\n}\n", + "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow ref to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let nodeInfo = StakingProxy.NodeInfo(\n nodeID: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey\n )\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n \n }\n}\n", "arguments": [ { "type": "String", @@ -114,12 +114,12 @@ } ], "network": "testnet", - "hash": "acbd093e289e0225ffa1ac630e762047acc56b2621f2af1f4850a276e4394876" + "hash": "fd4b992484a92eaadd209454e535a7326f8dac5a37dc6167e60836cb124a8591" }, { "id": "TH.08", "name": "Stake New Locked FLOW", - "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\n\nimport LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.stakeNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.stakeNewTokens(amount: amount)\n \n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\n\nimport LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.stakeNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.stakeNewTokens(amount: amount)\n \n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -134,12 +134,12 @@ } ], "network": "testnet", - "hash": "551aa85f14d043633bcd04649eb2b90291cbdb4d93b46fe39e1109b50bfe19f9" + "hash": "3b1b5f17fa582bb7fda90eccc8e44492d88d0cd3f2bed44c634885d1b35eec69" }, { "id": "TH.09", "name": "Re-stake Unstaked FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -154,12 +154,12 @@ } ], "network": "testnet", - "hash": "23e5bfd594bb3245090e3e0bafb9cb9246fc84d30e4a35a7fde1b51085624d86" + "hash": "f733ce3941a148ff20736b0da9f023db1730d2f7289cf844e0cc33d801a76536" }, { "id": "TH.10", "name": "Re-stake Rewarded FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeRewardedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeRewardedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -174,12 +174,12 @@ } ], "network": "testnet", - "hash": "239319825ad68178e76465b5ea18cb43f06c4ee11341f8fe9424809163a027a5" + "hash": "92d8a971d4de4f721ae67796a47248cfdf010fa6ea585ea8187170a0b3e369df" }, { "id": "TH.11", "name": "Request Unstake of FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.requestUnstaking(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.requestUnstaking(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -194,20 +194,20 @@ } ], "network": "testnet", - "hash": "33e3977c45e7c23c1472bcf334d00b03ebf91b06b67c57b63b562c7b1ff5c59f" + "hash": "2c4bc80178d0c3c18ea96c2fe0fbd25d96efadf75533af56ee3db86bd3cf0e3c" }, { "id": "TH.12", "name": "Unstake All FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction() {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.unstakeAll()\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction() {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.unstakeAll()\n }\n}\n", "arguments": [], "network": "testnet", - "hash": "f92c4cd663b2e335cd821a656bb2ebcf239b222036a7825af5e512fad4d82035" + "hash": "ffc564b11bd2c83f5019932027d8a49da20c7a2cbf1b6540587860c63cd03a33" }, { "id": "TH.13", "name": "Withdraw Unstaked FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -222,12 +222,12 @@ } ], "network": "testnet", - "hash": "90097e3aff9b67f65bbada3cdedbb73d45d093ff333aaaff38809bf9910a3e39" + "hash": "7d6013cf9010a958cee506706dc75b1d2b3c1f2969e4c667f7494fccbfa43923" }, { "id": "TH.14", "name": "Withdraw Rewarded FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FlowToken from 0x7e60df042a9c0868\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FlowToken from 0x7e60df042a9c0868\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -242,12 +242,12 @@ } ], "network": "testnet", - "hash": "f23406ff402f02418629432912ce732be0441b1a7e71f16c03d688a165ff7f49" + "hash": "87c3086c6627b73a2feb3045ba2d76cd05f05f57ffbd67744086b69e30653b7a" }, { "id": "TH.16", "name": "Register Operator Node", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).getCapability\n \u003c\u0026StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}\u003e\n (StakingProxy.NodeOperatorCapabilityPublicPath)!.borrow() \n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).capabilities.get\n \u003c\u0026StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}\u003e\n (StakingProxy.NodeOperatorCapabilityPublicPath)!.borrow() \n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", "arguments": [ { "type": "Address", @@ -284,12 +284,12 @@ } ], "network": "testnet", - "hash": "c29d4024aaeb71ab478182542499e0ba3d5d303ec027252e3b8333515ee3de48" + "hash": "9145e4d398f3a28ef6f921c977cb12f71b8af28038e38c58286b7f5d09cee07a" }, { "id": "TH.17", "name": "Register Delegator", - "source": "import FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\nimport FlowIDTableStaking from 0x9eca2b38b18b5dfe\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\nimport FlowIDTableStaking from 0x9eca2b38b18b5dfe\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -315,12 +315,12 @@ } ], "network": "testnet", - "hash": "9e952288b6359fde87fb91537e76e663d4e10e7ce495f7b8c763d38ab54cd232" + "hash": "35ded738834498f973995282e25c11c997fd94858f36cfffe393c3abe7a86be2" }, { "id": "TH.19", "name": "Delegate New Locked FLOW", - "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowDelegator()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.delegateNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.delegateNewTokens(amount: amount)\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowDelegator()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.delegateNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.delegateNewTokens(amount: amount)\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -335,12 +335,12 @@ } ], "network": "testnet", - "hash": "7a8f09e4af477d551c4366e4b644718aa41e71210e043f8820dbd7dee7af38e8" + "hash": "5a460d73535d58b51151687f6b1c624e4cba03fd28d769109fcb81ed91d7385a" }, { "id": "TH.20", "name": "Re-delegate Unstaked FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -355,12 +355,12 @@ } ], "network": "testnet", - "hash": "8776b1521b04395754734f8f40d4a0482863274f8d832973d9e011b3cbb48c85" + "hash": "f3a66fb5b397db5d50379ea64ab6a4c3928dff3fcf660e24a95c7f80c4fcdb6b" }, { "id": "TH.21", "name": "Re-delegate Rewarded FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateRewardedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateRewardedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -375,12 +375,12 @@ } ], "network": "testnet", - "hash": "6b40ffc9169abd75107a45da5974c7e502d38773275abb231d747e4760b7ebee" + "hash": "58f47cf61fb47d3a3af05eb079b2d201111d3f28b92dc141815dd8d56c4f7b2f" }, { "id": "TH.22", "name": "Unstake Delegated FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.requestUnstaking(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.requestUnstaking(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -395,12 +395,12 @@ } ], "network": "testnet", - "hash": "61cbcd1c31bbfc9ceb4a5ac726e2f8b3d845a4fdf59b0ab23cbbfa8f16d7a024" + "hash": "e24f2dbf555438b4424ba4f6e86564bb2abb3c5d8b2238fdd9ccf3bdf45ec62e" }, { "id": "TH.23", "name": "Withdraw Unstaked FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: AuthAccount) {\n let holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -415,12 +415,12 @@ } ], "network": "testnet", - "hash": "2ae983f78e32b989fafa58ee7910b131fb51a2a74356f7916624695cb8bf5964" + "hash": "e8bbb43125df0d3d6f5e8a458a12a4a1c087b72de6362f172de02140802dfeb3" }, { "id": "TH.24", "name": "Withdraw Rewarded FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FlowToken from 0x7e60df042a9c0868\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: AuthAccount) {\n self.holderRef = account.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath) \n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let delegatorProxy = self.holderRef.borrowDelegator()\n\n delegatorProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FlowToken from 0x7e60df042a9c0868\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let delegatorProxy = self.holderRef.borrowDelegator()\n\n delegatorProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -435,12 +435,12 @@ } ], "network": "testnet", - "hash": "385042aa453566fcff0b2bd418b837d8f46fbc23b1b46e6651b25a395bc04be8" + "hash": "e4fd690e8069238d3aaca5a5f0e8b93e88955b2dead960649541671d3c766875" }, { "id": "TH.25", "name": "Update Networking Address", - "source": "import FlowIDTableStaking from 0x9eca2b38b18b5dfe\n\ntransaction(newAddress: String) {\n\n // Local variable for a reference to the node object\n let stakerRef: auth(FlowIDTableStaking.NodeOperator) \u0026FlowIDTableStaking.NodeStaker\n\n prepare(acct: AuthAccount) {\n // borrow a reference to the node object\n self.stakerRef = acct.borrow\u003cauth(FlowIDTableStaking.NodeOperator) \u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)\n ?? panic(\"Could not borrow reference to staking admin\")\n }\n\n execute {\n\n self.stakerRef.updateNetworkingAddress(newAddress)\n\n }\n}", + "source": "import FlowIDTableStaking from 0x9eca2b38b18b5dfe\n\ntransaction(newAddress: String) {\n\n // Local variable for a reference to the node object\n let stakerRef: auth(FlowIDTableStaking.NodeOperator) \u0026FlowIDTableStaking.NodeStaker\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n // borrow a reference to the node object\n self.stakerRef = acct.storage.borrow\u003cauth(FlowIDTableStaking.NodeOperator) \u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)\n ?? panic(\"Could not borrow reference to staking admin\")\n }\n\n execute {\n self.stakerRef.updateNetworkingAddress(newAddress)\n }\n}\n", "arguments": [ { "type": "String", @@ -455,20 +455,20 @@ } ], "network": "testnet", - "hash": "dc08233f50512fd54f3110c18c02cf69d824a41a3e7032d49b309557fe3c86d0" + "hash": "876e4967516a8e8635b2f0818fcf25583c50105e41093d7ba62c3e408091cfb3" }, { "id": "SCO.01", "name": "Setup Staking Collection", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport FlowIDTableStaking from 0x9eca2b38b18b5dfe\nimport LockedTokens from 0x95e019a17d0e23d7\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// This transaction sets up an account to use a staking collection\n/// It will work regardless of whether they have a regular account, a two-account locked tokens setup,\n/// or staking objects stored in the unlocked account\n\ntransaction {\n prepare(signer: AuthAccount) {\n\n // If there isn't already a staking collection\n if signer.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath) == nil {\n\n // Create private capabilities for the token holder and unlocked vault\n let lockedHolder = signer.link\u003c\u0026LockedTokens.TokenHolder\u003e(/private/flowTokenHolder, target: LockedTokens.TokenHolderStoragePath)!\n let flowToken = signer.link\u003c\u0026FlowToken.Vault\u003e(/private/flowTokenVault, target: /storage/flowTokenVault)!\n \n // Create a new Staking Collection and put it in storage\n if lockedHolder.check() {\n signer.save(\u003c-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: lockedHolder), to: FlowStakingCollection.StakingCollectionStoragePath)\n } else {\n signer.save(\u003c-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: nil), to: FlowStakingCollection.StakingCollectionStoragePath)\n }\n\n // Create a public link to the staking collection\n signer.link\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(\n FlowStakingCollection.StakingCollectionPublicPath,\n target: FlowStakingCollection.StakingCollectionStoragePath\n )\n }\n\n // borrow a reference to the staking collection\n let collectionRef = signer.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow staking collection reference\")\n\n // If there is a node staker object in the account, put it in the staking collection\n if signer.borrow\u003c\u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath) != nil {\n let node \u003c- signer.load\u003c@FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)!\n collectionRef.addNodeObject(\u003c-node, machineAccountInfo: nil)\n }\n\n // If there is a delegator object in the account, put it in the staking collection\n if signer.borrow\u003c\u0026FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath) != nil {\n let delegator \u003c- signer.load\u003c@FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath)!\n collectionRef.addDelegatorObject(\u003c-delegator)\n }\n }\n}\n", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport FlowIDTableStaking from 0x9eca2b38b18b5dfe\nimport LockedTokens from 0x95e019a17d0e23d7\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// This transaction sets up an account to use a staking collection\n/// It will work regardless of whether they have a regular account, a two-account locked tokens setup,\n/// or staking objects stored in the unlocked account\n\ntransaction {\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // If there isn't already a staking collection\n if signer.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath) == nil {\n\n // Create private capabilities for the token holder and unlocked vault\n let lockedHolder = signer.capabilities.storage.issue\u003c\u0026LockedTokens.TokenHolder\u003e(target: LockedTokens.TokenHolderStoragePath)!\n let flowToken = signer.capabilities.storage.issue\u003c\u0026FlowToken.Vault\u003e(target: /storage/flowTokenVault)!\n\n // Create a new Staking Collection and put it in storage\n if lockedHolder.check() {\n newAccount.storage.save(\n \u003c- FlowStakingCollection.createStakingCollection(\n unlockedVault: flowToken,\n tokenHolder: lockedHolder\n ),\n to: FlowStakingCollection.StakingCollectionStoragePath\n )\n } else {\n newAccount.storage.save(\n \u003c- FlowStakingCollection.createStakingCollection(\n unlockedVault: flowToken,\n tokenHolder: nil\n ),\n to: FlowStakingCollection.StakingCollectionStoragePath\n )\n }\n\n // Publish a capability to the created staking collection.\n let stakingCollectionCap = newAccount.capabilities.storage.issue\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(\n target: FlowStakingCollection.StakingCollectionStoragePath\n )\n\n newAccount.capabilities.publish(\n stakingCollectionCap\n at: FlowStakingCollection.StakingCollectionPublicPath\n )\n }\n\n // borrow a reference to the staking collection\n let collectionRef = signer.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow staking collection reference\")\n\n // If there is a node staker object in the account, put it in the staking collection\n if signer.storage.borrow\u003c\u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath) != nil {\n let node \u003c- signer.storage.load\u003c@FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)!\n collectionRef.addNodeObject(\u003c-node, machineAccountInfo: nil)\n }\n\n // If there is a delegator object in the account, put it in the staking collection\n if signer.storage.borrow\u003c\u0026FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath) != nil {\n let delegator \u003c- signer.storage.load\u003c@FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath)!\n collectionRef.addDelegatorObject(\u003c-delegator)\n }\n }\n}\n", "arguments": [], "network": "testnet", - "hash": "a524b4094fcaf1051dbf43ac33ff80bb2f553670c58eeeb719757972a25d6b50" + "hash": "4d421c0f4607d09422189ce322963a0114d4cf3aefa2f8e308a7a8ec62fd8074" }, { "id": "SCO.02", "name": "Register Delegator", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Registers a delegator in the staking collection resource\n/// for the specified nodeID and the amount of tokens to commit\n\ntransaction(id: String, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.registerDelegator(nodeID: id, amount: amount) \n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Registers a delegator in the staking collection resource\n/// for the specified nodeID and the amount of tokens to commit\n\ntransaction(id: String, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.registerDelegator(nodeID: id, amount: amount) \n }\n}\n", "arguments": [ { "type": "String", @@ -494,12 +494,12 @@ } ], "network": "testnet", - "hash": "c26f69a33ead535e7d597cec4567c6c70170e86fd85ec708f5381e50d43871e2" + "hash": "ac57f3527fd8f0b9d005cf44983d354922845ccbd6e27ee2c28e31fb71940444" }, { "id": "SCO.03", "name": "Register Node", - "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n publicKeys: [Crypto.KeyListEntry]?) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account) \n {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys! {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n publicKeys: [Crypto.KeyListEntry]?) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account) \n {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys! {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -619,12 +619,12 @@ } ], "network": "testnet", - "hash": "9246ec9b7a5c81151156e7c2f6d356f68b1b884f88728daca46b968d9a46cd5a" + "hash": "71867c5a2f2986896c969d6ec7a3f1cb61cf1fd911dfe6bbfae14f59f351d536" }, { "id": "SCO.04", "name": "Create Machine Account", - "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Creates a machine account for a node that is already in the staking collection\n/// and adds public keys to the new account\n\ntransaction(nodeID: String, publicKeys: [Crypto.KeyListEntry]) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n } else {\n panic(\"Could not create a machine account for the node\")\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Creates a machine account for a node that is already in the staking collection\n/// and adds public keys to the new account\n\ntransaction(nodeID: String, publicKeys: [Crypto.KeyListEntry]) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n } else {\n panic(\"Could not create a machine account for the node\")\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -676,12 +676,12 @@ } ], "network": "testnet", - "hash": "86c69d731560f3bff549c5f180eb4219bfe650ae4efec8e0c5b5ad3ebed54a92" + "hash": "b8e73c7cfa1f1ba619c91e142b26888ffacece1b356045dffceca589266200b4" }, { "id": "SCO.05", "name": "Request Unstaking", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Requests unstaking for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.requestUnstaking(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Requests unstaking for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.requestUnstaking(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -725,12 +725,12 @@ } ], "network": "testnet", - "hash": "b00f6b3b9d8d7d4a9a8ad14fce11ee0edb23c39c56a8c1351e6b597f53f2fb71" + "hash": "0b33bb090fd217f756976c20660fcf9cf362af676e000ef86cfa1f8aa5d611a1" }, { "id": "SCO.06", "name": "Stake New Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits new tokens to stake for the specified node or delegator in the staking collection\n/// The tokens from the locked vault are used first, if it exists\n/// followed by the tokens from the unlocked vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeNewTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits new tokens to stake for the specified node or delegator in the staking collection\n/// The tokens from the locked vault are used first, if it exists\n/// followed by the tokens from the unlocked vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeNewTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -774,12 +774,12 @@ } ], "network": "testnet", - "hash": "1307928440cee4289235793d6ff860a24315f7b6a5d5907a145dcc5f83702a2c" + "hash": "03ce1a64218ea46b104ead96da3135fb3343e4063aa286508108f7d46166b82b" }, { "id": "SCO.07", "name": "Stake Rewarded Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits rewarded tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits rewarded tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -823,12 +823,12 @@ } ], "network": "testnet", - "hash": "d7aca7113a7aa03e0afd20ee36f4873779708a02ac4c6985017740c2ecea3d62" + "hash": "0d8ec09b18015d164c498d3c69783dba670104e91068e3f1e11d5c1eb8ed1d92" }, { "id": "SCO.08", "name": "Stake Unstaked Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits unstaked tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits unstaked tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -872,12 +872,12 @@ } ], "network": "testnet", - "hash": "3595fcd68cff445c65ad99f8d4d726b5e28807b061800769c41cbe3adb98aeec" + "hash": "38f906b61a68a2fe47c08edba17b921a052fa1ecd4155f2ac3715d577439ac4f" }, { "id": "SCO.09", "name": "Unstake All", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Requests to unstake ALL tokens for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.unstakeAll(nodeID: nodeID)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Requests to unstake ALL tokens for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.unstakeAll(nodeID: nodeID)\n }\n}\n", "arguments": [ { "type": "String", @@ -892,12 +892,12 @@ } ], "network": "testnet", - "hash": "0bde358f3965ba2f4c18fb45b6536857c3f53d7d3b740fe66fe93a4ebf7524c1" + "hash": "7dab3b239fe8140fa1fcc89f7c63ca13d824b899427b5b5d4915b428f2f52c3b" }, { "id": "SCO.10", "name": "Withdraw Rewarded Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw rewarded tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw rewarded tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -941,12 +941,12 @@ } ], "network": "testnet", - "hash": "3af182f568b37a8067d3fb524afcfe96991c85a928bf7651e730be0e15fdb72d" + "hash": "e0e26d5cae268a2b2b6e57509ed032d4dca113076feeb4039eb0abd6782f91c2" }, { "id": "SCO.11", "name": "Withdraw Unstaked Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw unstaked tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault if it is there\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw unstaked tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault if it is there\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -990,12 +990,12 @@ } ], "network": "testnet", - "hash": "68879197d961bb104a56e1e7d35660436fe4c52ed78f79d97fa50aa9e96fabf0" + "hash": "f7aeface63d5469ed2ec4d828411dde7892daeb38af70dcea7d50f87bbe08d81" }, { "id": "SCO.12", "name": "Close Stake", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Closes out a staking object in the staking collection\n// This does not remove the record from the identity table,\n// but it does mean that the account that closes it cannot ever access it again\n\ntransaction(nodeID: String, delegatorID: UInt32?) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.closeStake(nodeID: nodeID, delegatorID: delegatorID)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Closes out a staking object in the staking collection\n// This does not remove the record from the identity table,\n// but it does mean that the account that closes it cannot ever access it again\n\ntransaction(nodeID: String, delegatorID: UInt32?) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.closeStake(nodeID: nodeID, delegatorID: delegatorID)\n }\n}\n", "arguments": [ { "type": "String", @@ -1028,12 +1028,12 @@ } ], "network": "testnet", - "hash": "079aaa9cfb22138415056b43d5d91e8d73bd8bd5f37ebff4f4023d33ea6d2f25" + "hash": "cfaf011638692861df2f78ee532e41fcc351be37e2cc345d32941f86dfc283e1" }, { "id": "SCO.13", "name": "Transfer Node", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeStaker object from an authorizers accoount\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: AuthAccount) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.getCapability\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath).borrow()\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeStaker object from an authorizers accoount\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .get\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath)!\n .borrow()\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", "arguments": [ { "type": "String", @@ -1059,12 +1059,12 @@ } ], "network": "testnet", - "hash": "2386d7ae1a5b936e3914729ee34e01d53a8fbd2e403512ec1beccb4062c231eb" + "hash": "89a9b588f0a4905125247cde161ef2266a46a97823ec169467cff2bdc11d0a76" }, { "id": "SCO.14", "name": "Transfer Delegator", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeDelegator object from an authorizers accoount\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: AuthAccount) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.getCapability\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath).borrow()\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeDelegator object from an authorizers accoount\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .get\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath)!\n .borrow()\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", "arguments": [ { "type": "String", @@ -1101,12 +1101,12 @@ } ], "network": "testnet", - "hash": "53b096b4850a30894e7b272ec5c39e2b2f4a23f8c40e76a3c64cfc63dc2999b6" + "hash": "f148c526ed3d8e496c6757e2f71827cd3f5a7c475b98327aa4977e90a30d1907" }, { "id": "SCO.15", "name": "Withdraw From Machine Account", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw tokens from the machine account\n/// The tokens are automatically deposited to the unlocked account vault\n\ntransaction(nodeID: String, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawFromMachineAccount(nodeID: nodeID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw tokens from the machine account\n/// The tokens are automatically deposited to the unlocked account vault\n\ntransaction(nodeID: String, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawFromMachineAccount(nodeID: nodeID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -1132,12 +1132,12 @@ } ], "network": "testnet", - "hash": "39a126038522c6c964d53aaf78dde55bfe80929091510792fe49678bb22cbd96" + "hash": "1bd5490bd58f6984e0d9210aa2322086d0868e593331604b229f95ae4c44cef1" }, { "id": "SCO.16", "name": "Update Networking Address", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Changes the networking address for the specified node\n\ntransaction(nodeID: String, newAddress: String) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: AuthAccount) {\n self.stakingCollectionRef = account.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.updateNetworkingAddress(nodeID: nodeID, newAddress: newAddress)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Changes the networking address for the specified node\n\ntransaction(nodeID: String, newAddress: String) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.updateNetworkingAddress(nodeID: nodeID, newAddress: newAddress)\n }\n}\n", "arguments": [ { "type": "String", @@ -1163,7 +1163,7 @@ } ], "network": "testnet", - "hash": "60f2cf219d56b19dc7fd223caed42dda9143c87b1b0d2c21a9652e12a3714133" + "hash": "5d5c048a857b07ccbe5e53c9e11fb175e24e60a5a86d7e2e135951a1b7f5ace2" } ] } \ No newline at end of file diff --git a/transactions/FlowServiceAccount/deposit_fees.cdc b/transactions/FlowServiceAccount/deposit_fees.cdc index 7b67f934d..e91aa1714 100644 --- a/transactions/FlowServiceAccount/deposit_fees.cdc +++ b/transactions/FlowServiceAccount/deposit_fees.cdc @@ -10,10 +10,10 @@ transaction(amount: UFix64) { // The Vault resource that holds the tokens that are being transferred let sentVault: @{FungibleToken.Vault} - prepare(signer: AuthAccount) { + prepare(signer: auth(BorrowValue) &Account) { // Get a reference to the signer's stored vault - let vaultRef = signer.borrow(from: /storage/flowTokenVault) + let vaultRef = signer.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to the owner's Vault!") // Withdraw tokens from the signer's stored vault diff --git a/transactions/dkg/create_participant.cdc b/transactions/dkg/create_participant.cdc index 0b009cdb7..491b383bc 100644 --- a/transactions/dkg/create_participant.cdc +++ b/transactions/dkg/create_participant.cdc @@ -1,10 +1,10 @@ -import FlowDKG from "FlowDKG" +import FlowDKG from 0xDKGADDRESS transaction(address: Address, nodeID: String) { prepare(signer: auth(SaveValue) &Account) { - let admin = getAccount(address).capabilities.borrow<&FlowDKG.Admin>(/public/dkgAdmin) - ?? panic("Could not borrow admin reference") + let admin = getAccount(address).capabilities.get<&FlowDKG.Admin>(/public/dkgAdmin)! + .borrow() ?? panic("Could not borrow admin reference") let dkgParticipant <- admin.createParticipant(nodeID: nodeID) diff --git a/transactions/epoch/admin/advance_view.cdc b/transactions/epoch/admin/advance_view.cdc index 06070477a..659b86f26 100644 --- a/transactions/epoch/admin/advance_view.cdc +++ b/transactions/epoch/admin/advance_view.cdc @@ -2,8 +2,8 @@ import FlowEpoch from 0xEPOCHADDRESS import FlowIDTableStaking from "FlowIDTableStaking" transaction(phase: String) { - prepare(signer: AuthAccount) { - let heartbeat = signer.borrow<&FlowEpoch.Heartbeat>(from: FlowEpoch.heartbeatStoragePath) + prepare(signer: auth(BorrowValue) &Account) { + let heartbeat = signer.storage.borrow<&FlowEpoch.Heartbeat>(from: FlowEpoch.heartbeatStoragePath) ?? panic("Could not borrow heartbeat from storage path") if phase == "EPOCHSETUP" { diff --git a/transactions/epoch/admin/calculate_rewards.cdc b/transactions/epoch/admin/calculate_rewards.cdc index 4c73bcd77..f89daa1ac 100644 --- a/transactions/epoch/admin/calculate_rewards.cdc +++ b/transactions/epoch/admin/calculate_rewards.cdc @@ -2,8 +2,8 @@ import FlowEpoch from 0xEPOCHADDRESS import FlowIDTableStaking from "FlowIDTableStaking" transaction() { - prepare(signer: AuthAccount) { - let heartbeat = signer.borrow<&FlowEpoch.Heartbeat>(from: FlowEpoch.heartbeatStoragePath) + prepare(signer: auth(BorrowValue) &Account) { + let heartbeat = signer.storage.borrow<&FlowEpoch.Heartbeat>(from: FlowEpoch.heartbeatStoragePath) ?? panic("Could not borrow heartbeat from storage path") heartbeat.calculateAndSetRewards() diff --git a/transactions/epoch/admin/pay_rewards.cdc b/transactions/epoch/admin/pay_rewards.cdc index 2e7fad4e7..8ade622a1 100644 --- a/transactions/epoch/admin/pay_rewards.cdc +++ b/transactions/epoch/admin/pay_rewards.cdc @@ -5,8 +5,8 @@ import FlowIDTableStaking from "FlowIDTableStaking" /// If the rewards have already been paid, the payment will not happen transaction { - prepare(signer: AuthAccount) { - let heartbeat = signer.borrow<&FlowEpoch.Heartbeat>(from: FlowEpoch.heartbeatStoragePath) + prepare(signer: auth(BorrowValue) &Account) { + let heartbeat = signer.storage.borrow<&FlowEpoch.Heartbeat>(from: FlowEpoch.heartbeatStoragePath) ?? panic("Could not borrow heartbeat from storage path") heartbeat.payRewardsForPreviousEpoch() diff --git a/transactions/epoch/admin/reset_epoch.cdc b/transactions/epoch/admin/reset_epoch.cdc index 25b7aad8d..e7726e362 100644 --- a/transactions/epoch/admin/reset_epoch.cdc +++ b/transactions/epoch/admin/reset_epoch.cdc @@ -19,8 +19,8 @@ transaction(currentEpochCounter: UInt64, stakingEndView: UInt64, endView: UInt64) { - prepare(signer: AuthAccount) { - let epochAdmin = signer.borrow<&FlowEpoch.Admin>(from: FlowEpoch.adminStoragePath) + prepare(signer: auth(BorrowValue) &Account) { + let epochAdmin = signer.storage.borrow<&FlowEpoch.Admin>(from: FlowEpoch.adminStoragePath) ?? panic("Could not borrow heartbeat from storage path") epochAdmin.resetEpoch(currentEpochCounter: currentEpochCounter, diff --git a/transactions/epoch/admin/update_clusters.cdc b/transactions/epoch/admin/update_clusters.cdc index 2d221ba6b..c74e02686 100644 --- a/transactions/epoch/admin/update_clusters.cdc +++ b/transactions/epoch/admin/update_clusters.cdc @@ -1,7 +1,7 @@ -import FlowEpoch from "FlowEpoch" +import FlowEpoch from 0xEPOCHADDRESS transaction(newNumClusters: UInt16) { - prepare(signer: auth(BorrowValue) &Account) { + prepare(signer: storage.) { let epochAdmin = signer.storage.borrow<&FlowEpoch.Admin>(from: FlowEpoch.adminStoragePath) ?? panic("Could not borrow admin from storage path") diff --git a/transactions/epoch/admin/update_dkg_phase_views.cdc b/transactions/epoch/admin/update_dkg_phase_views.cdc index ac7b585ce..382514e9f 100644 --- a/transactions/epoch/admin/update_dkg_phase_views.cdc +++ b/transactions/epoch/admin/update_dkg_phase_views.cdc @@ -1,7 +1,7 @@ -import FlowEpoch from "FlowEpoch" +import FlowEpoch from 0xEPOCHADDRESS transaction(newPhaseViews: UInt64) { - prepare(signer: auth(BorrowValue) &Account) { + prepare(signer: storage.) { let epochAdmin = signer.storage.borrow<&FlowEpoch.Admin>(from: FlowEpoch.adminStoragePath) ?? panic("Could not borrow admin from storage path") diff --git a/transactions/epoch/admin/update_epoch_config.cdc b/transactions/epoch/admin/update_epoch_config.cdc index 1b7d08400..f97283438 100644 --- a/transactions/epoch/admin/update_epoch_config.cdc +++ b/transactions/epoch/admin/update_epoch_config.cdc @@ -1,7 +1,7 @@ -import FlowEpoch from "FlowEpoch" +import FlowEpoch from 0xEPOCHADDRESS transaction(dkgPhaseLen: UInt64, stakingLen: UInt64, epochLen: UInt64) { - prepare(signer: auth(BorrowValue) &Account) { + prepare(signer: storage.) { let epochAdmin = signer.storage.borrow<&FlowEpoch.Admin>(from: FlowEpoch.adminStoragePath) ?? panic("Could not borrow admin from storage path") diff --git a/transactions/epoch/admin/update_epoch_views.cdc b/transactions/epoch/admin/update_epoch_views.cdc index ea55243b6..eed2aef35 100644 --- a/transactions/epoch/admin/update_epoch_views.cdc +++ b/transactions/epoch/admin/update_epoch_views.cdc @@ -1,7 +1,7 @@ -import FlowEpoch from "FlowEpoch" +import FlowEpoch from 0xEPOCHADDRESS transaction(newAuctionViews: UInt64) { - prepare(signer: auth(BorrowValue) &Account) { + prepare(signer: storage.) { let epochAdmin = signer.storage.borrow<&FlowEpoch.Admin>(from: FlowEpoch.adminStoragePath) ?? panic("Could not borrow admin from storage path") diff --git a/transactions/epoch/admin/update_reward.cdc b/transactions/epoch/admin/update_reward.cdc index aba2a5a5c..519005590 100644 --- a/transactions/epoch/admin/update_reward.cdc +++ b/transactions/epoch/admin/update_reward.cdc @@ -1,7 +1,7 @@ -import FlowEpoch from "FlowEpoch" +import FlowEpoch from 0xEPOCHADDRESS transaction(newRewardAPY: UFix64) { - prepare(signer: auth(BorrowValue) &Account) { + prepare(signer: storage.) { let epochAdmin = signer.storage.borrow<&FlowEpoch.Admin>(from: FlowEpoch.adminStoragePath) ?? panic("Could not borrow admin from storage path") diff --git a/transactions/epoch/admin/update_staking_views.cdc b/transactions/epoch/admin/update_staking_views.cdc index 0a15aa0ec..efb3d4fa3 100644 --- a/transactions/epoch/admin/update_staking_views.cdc +++ b/transactions/epoch/admin/update_staking_views.cdc @@ -1,7 +1,7 @@ -import FlowEpoch from "FlowEpoch" +import FlowEpoch from 0xEPOCHADDRESS transaction(newStakingViews: UInt64) { - prepare(signer: auth(BorrowValue) &Account) { + prepare(signer: storage.) { let epochAdmin = signer.storage.borrow<&FlowEpoch.Admin>(from: FlowEpoch.adminStoragePath) ?? panic("Could not borrow admin from storage path") diff --git a/transactions/epoch/node/register_node.cdc b/transactions/epoch/node/register_node.cdc index 466dfab66..35e2c8a6c 100644 --- a/transactions/epoch/node/register_node.cdc +++ b/transactions/epoch/node/register_node.cdc @@ -22,7 +22,7 @@ transaction( let flowTokenRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault - prepare(acct: auth(BorrowValue) &Account) { + prepare(acct: auth(Storage, Capabilities, AddKey) &Account) { self.flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") @@ -42,10 +42,10 @@ transaction( acct.storage.save(<-nodeStaker, to: FlowIDTableStaking.NodeStakerStoragePath) let nodeStakerCap = acct.capabilities.storage.issue<&{FlowIDTableStaking.NodeStakerPublic}>(FlowIDTableStaking.NodeStakerStoragePath) - acct.capabilities.storage.publish(nodeStakerCap, to: FlowIDTableStaking.NodeStakerPublicPath) + acct.capabilities.publish(nodeStakerCap, at: FlowIDTableStaking.NodeStakerPublicPath) } - let nodeRef = acct.borrow<&FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath) + let nodeRef = acct.storage.borrow<&FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath) ?? panic("Could not borrow node reference from storage path") let nodeInfo = FlowIDTableStaking.NodeInfo(nodeID: nodeRef.id) diff --git a/transactions/epoch/scripts/get_create_clusters.cdc b/transactions/epoch/scripts/get_create_clusters.cdc index 2cf96b679..0a4f8f305 100644 --- a/transactions/epoch/scripts/get_create_clusters.cdc +++ b/transactions/epoch/scripts/get_create_clusters.cdc @@ -2,7 +2,5 @@ import FlowEpoch from 0xEPOCHADDRESS import FlowClusterQC from 0xQCADDRESS access(all) fun main(array: [String]): [FlowClusterQC.Cluster] { - return FlowEpoch.createCollectorClusters(nodeIDs: array) - -} \ No newline at end of file +} diff --git a/transactions/epoch/scripts/get_randomize.cdc b/transactions/epoch/scripts/get_randomize.cdc index 3fe485e95..3f7fef775 100644 --- a/transactions/epoch/scripts/get_randomize.cdc +++ b/transactions/epoch/scripts/get_randomize.cdc @@ -1,7 +1,5 @@ import FlowEpoch from 0xEPOCHADDRESS access(all) fun main(array: [String]): [String] { - return FlowEpoch.randomize(array) - -} \ No newline at end of file +} diff --git a/transactions/flowToken/burn_tokens.cdc b/transactions/flowToken/burn_tokens.cdc index f2e74b8a7..b9a80e475 100644 --- a/transactions/flowToken/burn_tokens.cdc +++ b/transactions/flowToken/burn_tokens.cdc @@ -14,14 +14,14 @@ transaction(amount: UFix64) { let admin: &FlowToken.Administrator - prepare(signer: AuthAccount) { + prepare(signer: auth(BorrowValue) &Account) { // Withdraw tokens from the admin vault in storage - self.vault <- signer.borrow(from: /storage/flowTokenVault)! + self.vault <- signer.storage.borrow(from: /storage/flowTokenVault)! .withdraw(amount: amount) // Create a reference to the admin admin resource in storage - self.admin = signer.borrow<&FlowToken.Administrator>(from: /storage/flowTokenAdmin) + self.admin = signer.storage.borrow<&FlowToken.Administrator>(from: /storage/flowTokenAdmin) ?? panic("Could not borrow a reference to the admin resource") } diff --git a/transactions/flowToken/create_forwarder.cdc b/transactions/flowToken/create_forwarder.cdc index 8ff0d2f90..f68b5237a 100644 --- a/transactions/flowToken/create_forwarder.cdc +++ b/transactions/flowToken/create_forwarder.cdc @@ -29,19 +29,23 @@ import TokenForwarding from 0xFORWARDINGADDRESS transaction(receiver: Address) { - prepare(acct: AuthAccount) { + prepare(acct: auth(BorrowValue, Capabilities) &Account) { let recipient = getAccount(receiver) - .getCapability<&{FungibleToken.Receiver}>(/public/flowTokenReceiver) + .capabilities.get<&{FungibleToken.Receiver}>(/public/flowTokenReceiver)! let vault <- TokenForwarding.createNewForwarder(recipient: recipient) - acct.save(<-vault, to: /storage/flowTokenForwarder) + acct.storage.save(<-vault, to: /storage/flowTokenForwarder) - if acct.getCapability(/public/flowTokenReceiver).check<&{FungibleToken.Receiver}>() { - acct.unlink(/public/flowTokenReceiver) + if let cap = acct.capabilities.get<&{FungibleToken.Receiver}>(/public/flowTokenReceiver) { + if cap.check() { + acct.unlink(/public/flowTokenReceiver) + } } - acct.link<&{FungibleToken.Receiver}>( - /public/flowTokenReceiver, - target: /storage/flowTokenForwarder + + let forwarderCap = acct.capabilities.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenForwarder) + acct.capabilities.publish<&{FungibleToken.Receiver}>( + forwarderCap, + at: /public/flowTokenReceiver, ) } } diff --git a/transactions/flowToken/mint_tokens.cdc b/transactions/flowToken/mint_tokens.cdc index c7a4b9dfe..a70673f67 100644 --- a/transactions/flowToken/mint_tokens.cdc +++ b/transactions/flowToken/mint_tokens.cdc @@ -9,15 +9,15 @@ transaction(recipient: Address, amount: UFix64) { let tokenAdmin: &FlowToken.Administrator let tokenReceiver: &{FungibleToken.Receiver} - prepare(signer: AuthAccount) { + prepare(signer: auth(BorrowValue) &Account) { - self.tokenAdmin = signer + self.tokenAdmin = signer.storage .borrow<&FlowToken.Administrator>(from: /storage/flowTokenAdmin) ?? panic("Signer is not the token admin") self.tokenReceiver = getAccount(recipient) - .getCapability(/public/flowTokenReceiver) - .borrow<&{FungibleToken.Receiver}>() + .capabilities.get<&{FungibleToken.Receiver}>(/public/flowTokenReceiver)! + .borrow() ?? panic("Unable to borrow receiver reference") } diff --git a/transactions/flowToken/scripts/get_balance.cdc b/transactions/flowToken/scripts/get_balance.cdc index cd5c1704d..b82a320a8 100644 --- a/transactions/flowToken/scripts/get_balance.cdc +++ b/transactions/flowToken/scripts/get_balance.cdc @@ -6,8 +6,8 @@ import FlowToken from "FlowToken" access(all) fun main(account: Address): UFix64 { let vaultRef = getAccount(account) - .getCapability(/public/flowTokenBalance) - .borrow<&FlowToken.Vault{FungibleToken.Balance}>() + .capabilities.get<&FlowToken.Vault{FungibleToken.Balance}>(/public/flowTokenBalance)! + .borrow() ?? panic("Could not borrow Balance reference to the Vault") return vaultRef.balance diff --git a/transactions/flowToken/setup_account.cdc b/transactions/flowToken/setup_account.cdc index ffd8f48e2..e2d362ba3 100644 --- a/transactions/flowToken/setup_account.cdc +++ b/transactions/flowToken/setup_account.cdc @@ -8,24 +8,32 @@ import FlowToken from "FlowToken" transaction { - prepare(signer: AuthAccount) { + prepare(signer: auth(Storage) &Account) { - if signer.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) == nil { + if signer.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) == nil { // Create a new flowToken Vault and put it in storage - signer.save(<-FlowToken.createEmptyVault(), to: /storage/flowTokenVault) + signer.storage.save(<-FlowToken.createEmptyVault(), to: /storage/flowTokenVault) // Create a public capability to the Vault that only exposes // the deposit function through the Receiver interface - signer.link<&FlowToken.Vault{FungibleToken.Receiver}>( - /public/flowTokenReceiver, - target: /storage/flowTokenVault + let vaultCap = signer.capabilities.storage.issue<&FlowToken.Vault{FungibleToken.Receiver}>( + /storage/flowTokenVault + ) + + signer.capabilities.publish<&FlowToken.Vault{FungibleToken.Receiver}>( + vaultCap, + at: /public/flowTokenReceiver, ) // Create a public capability to the Vault that only exposes // the balance field through the Balance interface - signer.link<&FlowToken.Vault{FungibleToken.Balance}>( - /public/flowTokenBalance, - target: /storage/flowTokenVault + let vaultCap = signer.capabilities.storage.issue<&FlowToken.Vault{FungibleToken.Balance}>( + /storage/flowTokenVault + ) + + signer.capabilities.publish<&FlowToken.Vault{FungibleToken.Receiver}>( + vaultCap, + at: /public/flowTokenBalance, ) } } diff --git a/transactions/flowToken/transfer_tokens.cdc b/transactions/flowToken/transfer_tokens.cdc index 0d236df2e..abe214856 100644 --- a/transactions/flowToken/transfer_tokens.cdc +++ b/transactions/flowToken/transfer_tokens.cdc @@ -13,10 +13,10 @@ transaction(amount: UFix64, to: Address) { // The Vault resource that holds the tokens that are being transferred let sentVault: @FungibleToken.Vault - prepare(signer: AuthAccount) { + prepare(signer: auth(BorrowValue) &Account) { // Get a reference to the signer's stored vault - let vaultRef = signer.borrow(from: /storage/flowTokenVault) + let vaultRef = signer.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to the owner's Vault!") // Withdraw tokens from the signer's stored vault @@ -27,8 +27,8 @@ transaction(amount: UFix64, to: Address) { // Get a reference to the recipient's Receiver let receiverRef = getAccount(to) - .getCapability(/public/flowTokenReceiver) - .borrow<&{FungibleToken.Receiver}>() + .capabilities.get<&{FungibleToken.Receiver}>(/public/flowTokenReceiver)! + .borrow() ?? panic("Could not borrow receiver reference to the recipient's Vault") // Deposit the withdrawn tokens in the recipient's receiver diff --git a/transactions/idTableStaking/admin/capability_end_epoch.cdc b/transactions/idTableStaking/admin/capability_end_epoch.cdc index fbc96461d..f660ac330 100644 --- a/transactions/idTableStaking/admin/capability_end_epoch.cdc +++ b/transactions/idTableStaking/admin/capability_end_epoch.cdc @@ -13,8 +13,8 @@ transaction(ids: {String: Bool}, newPayout: UFix64) { // Local variable for a reference to the ID Table Admin object let adminRef: &FlowIDTableStaking.Admin - prepare(acct: &Account) { - let adminCapability = acct.copy(from: FlowIDTableStaking.StakingAdminStoragePath) + prepare(acct: auth(CopyValue) &Account) { + let adminCapability = acct.storage.copy(from: FlowIDTableStaking.StakingAdminStoragePath) ?? panic("Could not get capability from account storage") // borrow a reference to the admin object diff --git a/transactions/idTableStaking/admin/transfer_fees_admin.cdc b/transactions/idTableStaking/admin/transfer_fees_admin.cdc index 231d04187..87884eae1 100644 --- a/transactions/idTableStaking/admin/transfer_fees_admin.cdc +++ b/transactions/idTableStaking/admin/transfer_fees_admin.cdc @@ -2,13 +2,13 @@ import FlowFees from 0xFLOWFEESADDRESS transaction { - prepare(owner: &Account, receiver: &Account) { + prepare(owner: auth(LoadValue) &Account, receiver: auth(SaveValue) &Account) { // Link the staking admin capability to a private place - let feesAdmin <- owner.load<@FlowFees.Administrator>(from: /storage/flowFeesAdmin)! + let feesAdmin <- owner.storage.load<@FlowFees.Administrator>(from: /storage/flowFeesAdmin)! // Save the capability to the receiver's account storage - receiver.save(<-feesAdmin, to: /storage/flowFeesAdmin) + receiver.storage.save(<-feesAdmin, to: /storage/flowFeesAdmin) } } diff --git a/transactions/idTableStaking/delegation/del_request_unstaking.cdc b/transactions/idTableStaking/delegation/del_request_unstaking.cdc index e38f30608..0c8b329b8 100644 --- a/transactions/idTableStaking/delegation/del_request_unstaking.cdc +++ b/transactions/idTableStaking/delegation/del_request_unstaking.cdc @@ -6,9 +6,9 @@ transaction(amount: UFix64) { // Local variable for a reference to the Delegator object let delegatorRef: auth(FlowIDTableStaking.DelegatorOwner) &FlowIDTableStaking.NodeDelegator - prepare(acct: AuthAccount) { + prepare(acct: auth(BorrowValue) &Account) { // borrow a reference to the delegator object - self.delegatorRef = acct.borrow(from: FlowIDTableStaking.DelegatorStoragePath) + self.delegatorRef = acct.storage.borrow(from: FlowIDTableStaking.DelegatorStoragePath) ?? panic("Could not borrow reference to delegator") } diff --git a/transactions/idTableStaking/delegation/del_stake_new_tokens.cdc b/transactions/idTableStaking/delegation/del_stake_new_tokens.cdc index c06beb96d..75f978601 100644 --- a/transactions/idTableStaking/delegation/del_stake_new_tokens.cdc +++ b/transactions/idTableStaking/delegation/del_stake_new_tokens.cdc @@ -10,12 +10,12 @@ transaction(amount: UFix64) { let flowTokenRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault - prepare(acct: AuthAccount) { + prepare(acct: auth(BorrowValue) &Account) { // borrow a reference to the delegator object - self.delegatorRef = acct.borrow(from: FlowIDTableStaking.DelegatorStoragePath) + self.delegatorRef = acct.storage.borrow(from: FlowIDTableStaking.DelegatorStoragePath) ?? panic("Could not borrow reference to delegator") - self.flowTokenRef = acct.borrow(from: /storage/flowTokenVault) + self.flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") } diff --git a/transactions/idTableStaking/delegation/del_stake_rewarded.cdc b/transactions/idTableStaking/delegation/del_stake_rewarded.cdc index bd86916b4..908790c08 100644 --- a/transactions/idTableStaking/delegation/del_stake_rewarded.cdc +++ b/transactions/idTableStaking/delegation/del_stake_rewarded.cdc @@ -6,9 +6,9 @@ transaction(amount: UFix64) { // Local variable for a reference to the Delegator object let delegatorRef: auth(FlowIDTableStaking.DelegatorOwner) &FlowIDTableStaking.NodeDelegator - prepare(acct: AuthAccount) { + prepare(acct: auth(BorrowValue) &Account) { // borrow a reference to the delegator object - self.delegatorRef = acct.borrow(from: FlowIDTableStaking.DelegatorStoragePath) + self.delegatorRef = acct.storage.borrow(from: FlowIDTableStaking.DelegatorStoragePath) ?? panic("Could not borrow reference to delegator") } diff --git a/transactions/idTableStaking/delegation/del_stake_unstaked.cdc b/transactions/idTableStaking/delegation/del_stake_unstaked.cdc index e5a808407..f43d176e0 100644 --- a/transactions/idTableStaking/delegation/del_stake_unstaked.cdc +++ b/transactions/idTableStaking/delegation/del_stake_unstaked.cdc @@ -6,9 +6,9 @@ transaction(amount: UFix64) { // Local variable for a reference to the Delegator object let delegatorRef: auth(FlowIDTableStaking.DelegatorOwner) &FlowIDTableStaking.NodeDelegator - prepare(acct: AuthAccount) { + prepare(acct: auth(BorrowValue) &Account) { // borrow a reference to the delegator object - self.delegatorRef = acct.borrow(from: FlowIDTableStaking.DelegatorStoragePath) + self.delegatorRef = acct.storage.borrow(from: FlowIDTableStaking.DelegatorStoragePath) ?? panic("Could not borrow reference to delegator") } diff --git a/transactions/idTableStaking/delegation/del_withdraw_reward_tokens.cdc b/transactions/idTableStaking/delegation/del_withdraw_reward_tokens.cdc index 9040c47d9..3cb11472f 100644 --- a/transactions/idTableStaking/delegation/del_withdraw_reward_tokens.cdc +++ b/transactions/idTableStaking/delegation/del_withdraw_reward_tokens.cdc @@ -9,12 +9,12 @@ transaction(amount: UFix64) { let flowTokenRef: &FlowToken.Vault - prepare(acct: AuthAccount) { + prepare(acct: auth(BorrowValue) &Account) { // borrow a reference to the delegator object - self.delegatorRef = acct.borrow(from: FlowIDTableStaking.DelegatorStoragePath) + self.delegatorRef = acct.storage.borrow(from: FlowIDTableStaking.DelegatorStoragePath) ?? panic("Could not borrow reference to staking admin") - self.flowTokenRef = acct.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) + self.flowTokenRef = acct.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") } diff --git a/transactions/idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc b/transactions/idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc index 262941b95..186b5b02f 100644 --- a/transactions/idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc +++ b/transactions/idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc @@ -9,12 +9,12 @@ transaction(amount: UFix64) { let flowTokenRef: &FlowToken.Vault - prepare(acct: AuthAccount) { + prepare(acct: auth(BorrowValue) &Account) { // borrow a reference to the delegator object - self.delegatorRef = acct.borrow(from: FlowIDTableStaking.DelegatorStoragePath) + self.delegatorRef = acct.storage.borrow(from: FlowIDTableStaking.DelegatorStoragePath) ?? panic("Could not borrow reference to staking admin") - self.flowTokenRef = acct.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) + self.flowTokenRef = acct.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") } diff --git a/transactions/idTableStaking/delegation/delegator_add_capability.cdc b/transactions/idTableStaking/delegation/delegator_add_capability.cdc index aea6ab41f..135eb4bd1 100644 --- a/transactions/idTableStaking/delegation/delegator_add_capability.cdc +++ b/transactions/idTableStaking/delegation/delegator_add_capability.cdc @@ -6,17 +6,20 @@ import FlowToken from "FlowToken" transaction { - prepare(acct: AuthAccount) { + prepare(acct: auth(BorrowValue) &Account) { - if acct.borrow(from: FlowIDTableStaking.DelegatorStoragePath) == nil || - acct.getCapability<&{FlowIDTableStaking.NodeDelegatorPublic}>(/public/flowStakingDelegator).check() + if acct.storage.borrow(from: FlowIDTableStaking.DelegatorStoragePath) == nil || + acct.capabilities.get<&{FlowIDTableStaking.NodeDelegatorPublic}>(/public/flowStakingDelegator)!.check() { return } - acct.link<&{FlowIDTableStaking.NodeDelegatorPublic}>( - /public/flowStakingDelegator, - target: FlowIDTableStaking.DelegatorStoragePath + let delegatorCap = acct.capabilities.storage.issue<&{FlowIDTableStaking.NodeDelegatorPublic}>( + FlowIDTableStaking.DelegatorStoragePath + ) + acct.capabilities.publish( + delegatorCap, + at:/public/flowStakingDelegator, ) } } \ No newline at end of file diff --git a/transactions/idTableStaking/delegation/get_delegator_info_from_address.cdc b/transactions/idTableStaking/delegation/get_delegator_info_from_address.cdc index 05a98f576..3d10e79a5 100644 --- a/transactions/idTableStaking/delegation/get_delegator_info_from_address.cdc +++ b/transactions/idTableStaking/delegation/get_delegator_info_from_address.cdc @@ -5,7 +5,8 @@ import FlowIDTableStaking from "FlowIDTableStaking" access(all) fun main(address: Address): FlowIDTableStaking.DelegatorInfo { let delegator = getAccount(address) - .capabilities.borrow<&{FlowIDTableStaking.NodeDelegatorPublic}>(/public/flowStakingDelegator) + .capabilities.get<&{FlowIDTableStaking.NodeDelegatorPublic}>(/public/flowStakingDelegator)! + .borrow() ?? panic("Could not borrow reference to delegator object") return FlowIDTableStaking.DelegatorInfo(nodeID: delegator.nodeID, delegatorID: delegator.id) diff --git a/transactions/idTableStaking/delegation/register_delegator.cdc b/transactions/idTableStaking/delegation/register_delegator.cdc index 5aacdf5e3..61046fe47 100644 --- a/transactions/idTableStaking/delegation/register_delegator.cdc +++ b/transactions/idTableStaking/delegation/register_delegator.cdc @@ -4,18 +4,18 @@ import FungibleToken from "FungibleToken" transaction(nodeID: String, amount: UFix64) { - prepare(acct: AuthAccount) { + prepare(acct: auth(Storage) &Account) { - let flowTokenRef = acct.borrow(from: /storage/flowTokenVault) + let flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") // Create a new delegator object for the node let newDelegator <- FlowIDTableStaking.registerNewDelegator(nodeID: nodeID, tokensCommitted: <-flowTokenRef.withdraw(amount: amount)) // Store the delegator object - acct.save(<-newDelegator, to: FlowIDTableStaking.DelegatorStoragePath) + acct.storage.save(<-newDelegator, to: FlowIDTableStaking.DelegatorStoragePath) - acct.link<&{FlowIDTableStaking.NodeDelegatorPublic}>(/public/flowStakingDelegator, target: FlowIDTableStaking.DelegatorStoragePath) + let delegatorCap = acct.capabilities.storage.issue<&{FlowIDTableStaking.NodeDelegatorPublic}>(FlowIDTableStaking.DelegatorStoragePath) + acct.capabilities.storage.issue(delegatorCap, at: /public/flowStakingDelegator) } - } \ No newline at end of file diff --git a/transactions/idTableStaking/node/node_add_capability.cdc b/transactions/idTableStaking/node/node_add_capability.cdc index 6db37dcb1..2b4beeb89 100644 --- a/transactions/idTableStaking/node/node_add_capability.cdc +++ b/transactions/idTableStaking/node/node_add_capability.cdc @@ -6,17 +6,21 @@ import FlowToken from "FlowToken" transaction { - prepare(acct: AuthAccount) { + prepare(acct: auth(BorrowValue) &Account) { - if acct.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) == nil || - acct.getCapability<&{FlowIDTableStaking.NodeStakerPublic}>(FlowIDTableStaking.NodeStakerPublicPath).check() + if acct.storage.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) == nil || + acct.capabilities.get<&{FlowIDTableStaking.NodeStakerPublic}>(FlowIDTableStaking.NodeStakerPublicPath)!.check() { return } - acct.link<&{FlowIDTableStaking.NodeStakerPublic}>( - FlowIDTableStaking.NodeStakerPublicPath, - target: FlowIDTableStaking.NodeStakerStoragePath + let nodeStakerCap = acct.capabilities.storage.issue<&{FlowIDTableStaking.NodeStakerPublic}>( + FlowIDTableStaking.NodeStakerStoragePath + ) + + acct.capabilities.publish( + nodeStakerCap, + at: FlowIDTableStaking.NodeStakerPublicPath, ) } } \ No newline at end of file diff --git a/transactions/idTableStaking/node/register_many_nodes.cdc b/transactions/idTableStaking/node/register_many_nodes.cdc index 2b1289217..75f64bd28 100644 --- a/transactions/idTableStaking/node/register_many_nodes.cdc +++ b/transactions/idTableStaking/node/register_many_nodes.cdc @@ -12,13 +12,13 @@ transaction( paths: [StoragePath] ) { - prepare(acct: AuthAccount) { + prepare(acct: auth(Storage) &Account) { var i = 0 for path in paths { - let flowTokenRef = acct.borrow(from: /storage/flowTokenVault) + let flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") let tokensCommitted <- flowTokenRef.withdraw(amount: amounts[i]) @@ -33,7 +33,7 @@ transaction( ) // Store the node object - acct.save(<-nodeStaker, to: path) + acct.storage.save(<-nodeStaker, to: path) i = i + 1 } diff --git a/transactions/idTableStaking/node/register_node.cdc b/transactions/idTableStaking/node/register_node.cdc index 29d7ef544..199feb21a 100644 --- a/transactions/idTableStaking/node/register_node.cdc +++ b/transactions/idTableStaking/node/register_node.cdc @@ -16,9 +16,9 @@ transaction( let flowTokenRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault - prepare(acct: AuthAccount) { + prepare(acct: auth(Storage, Capabilities) &Account) { - self.flowTokenRef = acct.borrow(from: /storage/flowTokenVault) + self.flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") let nodeStaker <- FlowIDTableStaking.addNodeRecord( @@ -30,13 +30,17 @@ transaction( tokensCommitted: <-self.flowTokenRef.withdraw(amount: amount) ) - if acct.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) == nil { + if acct.storage.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) == nil { - acct.save(<-nodeStaker, to: FlowIDTableStaking.NodeStakerStoragePath) + acct.storage.save(<-nodeStaker, to: FlowIDTableStaking.NodeStakerStoragePath) - acct.link<&{FlowIDTableStaking.NodeStakerPublic}>( - FlowIDTableStaking.NodeStakerPublicPath, - target: FlowIDTableStaking.NodeStakerStoragePath + let nodeStakerCap = acct.capabilities.storage.issue<&{FlowIDTableStaking.NodeStakerPublic}>( + FlowIDTableStaking.NodeStakerStoragePath + ) + + acct.capabilities.publish( + nodeStakerCap, + at: FlowIDTableStaking.NodeStakerPublicPath, ) } else { destroy nodeStaker diff --git a/transactions/idTableStaking/node/request_unstake.cdc b/transactions/idTableStaking/node/request_unstake.cdc index 38e9a2a36..efb7e7e26 100644 --- a/transactions/idTableStaking/node/request_unstake.cdc +++ b/transactions/idTableStaking/node/request_unstake.cdc @@ -6,16 +6,13 @@ transaction(amount: UFix64) { // Local variable for a reference to the node object let stakerRef: auth(FlowIDTableStaking.NodeOperator) &FlowIDTableStaking.NodeStaker - prepare(acct: AuthAccount) { + prepare(acct: auth(BorrowValue) &Account) { // borrow a reference to the node object - self.stakerRef = acct.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) + self.stakerRef = acct.storage.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) ?? panic("Could not borrow reference to staking admin") - } execute { - self.stakerRef.requestUnstaking(amount: amount) - } -} \ No newline at end of file +} diff --git a/transactions/idTableStaking/node/stake_new_tokens.cdc b/transactions/idTableStaking/node/stake_new_tokens.cdc index 6b345d985..8566a35e3 100644 --- a/transactions/idTableStaking/node/stake_new_tokens.cdc +++ b/transactions/idTableStaking/node/stake_new_tokens.cdc @@ -9,19 +9,16 @@ transaction(amount: UFix64) { let flowTokenRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault - prepare(acct: AuthAccount) { + prepare(acct: auth(BorrowValue) &Account) { // borrow a reference to the node object - self.stakerRef = acct.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) + self.stakerRef = acct.storage.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) ?? panic("Could not borrow reference to staking admin") - self.flowTokenRef = acct.borrow(from: /storage/flowTokenVault) + self.flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") - } execute { - self.stakerRef.stakeNewTokens(<-self.flowTokenRef.withdraw(amount: amount)) - } -} \ No newline at end of file +} diff --git a/transactions/idTableStaking/node/stake_rewarded_tokens.cdc b/transactions/idTableStaking/node/stake_rewarded_tokens.cdc index 51bb94189..d9dacb5ea 100644 --- a/transactions/idTableStaking/node/stake_rewarded_tokens.cdc +++ b/transactions/idTableStaking/node/stake_rewarded_tokens.cdc @@ -6,16 +6,13 @@ transaction(amount: UFix64) { // Local variable for a reference to the node object let stakerRef: auth(FlowIDTableStaking.NodeOperator) &FlowIDTableStaking.NodeStaker - prepare(acct: AuthAccount) { + prepare(acct: auth(BorrowValue) &Account) { // borrow a reference to the node object - self.stakerRef = acct.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) + self.stakerRef = acct.storage.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) ?? panic("Could not borrow reference to staking admin") - } execute { - self.stakerRef.stakeRewardedTokens(amount: amount) - } -} \ No newline at end of file +} diff --git a/transactions/idTableStaking/node/stake_unstaked_tokens.cdc b/transactions/idTableStaking/node/stake_unstaked_tokens.cdc index ed2c67ecf..9bb5e3dfb 100644 --- a/transactions/idTableStaking/node/stake_unstaked_tokens.cdc +++ b/transactions/idTableStaking/node/stake_unstaked_tokens.cdc @@ -6,16 +6,13 @@ transaction(amount: UFix64) { // Local variable for a reference to the node object let stakerRef: auth(FlowIDTableStaking.NodeOperator) &FlowIDTableStaking.NodeStaker - prepare(acct: AuthAccount) { + prepare(acct: auth(BorrowValue) &Account) { // borrow a reference to the node object - self.stakerRef = acct.borrow(from: /storage/flowStaker) + self.stakerRef = acct.storage.borrow(from: /storage/flowStaker) ?? panic("Could not borrow reference to staking admin") - } execute { - self.stakerRef.stakeUnstakedTokens(amount: amount) - } -} \ No newline at end of file +} diff --git a/transactions/idTableStaking/node/unstake_all.cdc b/transactions/idTableStaking/node/unstake_all.cdc index f9162cc2a..ed2fa7371 100644 --- a/transactions/idTableStaking/node/unstake_all.cdc +++ b/transactions/idTableStaking/node/unstake_all.cdc @@ -6,16 +6,13 @@ transaction { // Local variable for a reference to the node object let stakerRef: auth(FlowIDTableStaking.NodeOperator) &FlowIDTableStaking.NodeStaker - prepare(acct: AuthAccount) { + prepare(acct: auth(BorrowValue) &Account) { // borrow a reference to the node object - self.stakerRef = acct.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) + self.stakerRef = acct.storage.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) ?? panic("Could not borrow reference to staking admin") - } execute { - self.stakerRef.unstakeAll() - } -} \ No newline at end of file +} diff --git a/transactions/idTableStaking/node/update_networking_address.cdc b/transactions/idTableStaking/node/update_networking_address.cdc index 01b07bc5f..b45dec141 100644 --- a/transactions/idTableStaking/node/update_networking_address.cdc +++ b/transactions/idTableStaking/node/update_networking_address.cdc @@ -5,15 +5,13 @@ transaction(newAddress: String) { // Local variable for a reference to the node object let stakerRef: auth(FlowIDTableStaking.NodeOperator) &FlowIDTableStaking.NodeStaker - prepare(acct: AuthAccount) { + prepare(acct: auth(BorrowValue) &Account) { // borrow a reference to the node object - self.stakerRef = acct.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) + self.stakerRef = acct.storage.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) ?? panic("Could not borrow reference to staking admin") } execute { - self.stakerRef.updateNetworkingAddress(newAddress) - } -} \ No newline at end of file +} diff --git a/transactions/idTableStaking/node/withdraw_reward_tokens.cdc b/transactions/idTableStaking/node/withdraw_reward_tokens.cdc index f09b7c3ee..5b3ba44ce 100644 --- a/transactions/idTableStaking/node/withdraw_reward_tokens.cdc +++ b/transactions/idTableStaking/node/withdraw_reward_tokens.cdc @@ -9,19 +9,16 @@ transaction(amount: UFix64) { let flowTokenRef: &FlowToken.Vault - prepare(acct: AuthAccount) { + prepare(acct: auth(BorrowValue) &Account) { // borrow a reference to the node object - self.stakerRef = acct.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) + self.stakerRef = acct.storage.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) ?? panic("Could not borrow reference to staking admin") - self.flowTokenRef = acct.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) + self.flowTokenRef = acct.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") - } execute { - self.flowTokenRef.deposit(from: <-self.stakerRef.withdrawRewardedTokens(amount: amount)) - } -} \ No newline at end of file +} diff --git a/transactions/idTableStaking/node/withdraw_unstaked_tokens.cdc b/transactions/idTableStaking/node/withdraw_unstaked_tokens.cdc index adf0c5a97..6b9f819bd 100644 --- a/transactions/idTableStaking/node/withdraw_unstaked_tokens.cdc +++ b/transactions/idTableStaking/node/withdraw_unstaked_tokens.cdc @@ -9,19 +9,16 @@ transaction(amount: UFix64) { let flowTokenRef: &FlowToken.Vault - prepare(acct: AuthAccount) { + prepare(acct: auth(BorrowValue) &Account) { // borrow a reference to the node object - self.stakerRef = acct.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) + self.stakerRef = acct.storage.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) ?? panic("Could not borrow reference to staking admin") - self.flowTokenRef = acct.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) + self.flowTokenRef = acct.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") - } execute { - self.flowTokenRef.deposit(from: <-self.stakerRef.withdrawUnstakedTokens(amount: amount)) - } -} \ No newline at end of file +} diff --git a/transactions/idTableStaking/scripts/get_node_info_from_address.cdc b/transactions/idTableStaking/scripts/get_node_info_from_address.cdc index a06714dca..12c5a7f72 100644 --- a/transactions/idTableStaking/scripts/get_node_info_from_address.cdc +++ b/transactions/idTableStaking/scripts/get_node_info_from_address.cdc @@ -5,7 +5,8 @@ import FlowIDTableStaking from "FlowIDTableStaking" access(all) fun main(address: Address): FlowIDTableStaking.NodeInfo { let nodeStaker = getAccount(address) - .capabilities.borrow<&{FlowIDTableStaking.NodeStakerPublic}>(FlowIDTableStaking.NodeStakerPublicPath) + .capabilities.get<&{FlowIDTableStaking.NodeStakerPublic}>(FlowIDTableStaking.NodeStakerPublicPath)! + .borrow() ?? panic("Could not borrow reference to node staker object") return FlowIDTableStaking.NodeInfo(nodeID: nodeStaker.id) diff --git a/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc b/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc index d1214c5cd..ccdad3b47 100644 --- a/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc +++ b/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc @@ -13,11 +13,11 @@ transaction( fullUserPublicKey: Crypto.KeyListEntry, // Weight: 1000 ) { - prepare(admin: AuthAccount) { + prepare(admin: auth(BorrowValue) &Account) { // Create the new accounts and add their keys - let sharedAccount = AuthAccount(payer: admin) - let userAccount = AuthAccount(payer: admin) + let sharedAccount = Account(payer: admin) + let userAccount = Account(payer: admin) sharedAccount.keys.add(publicKey: partialAdminPublicKey.publicKey, hashAlgorithm: partialAdminPublicKey.hashAlgorithm, weight: partialAdminPublicKey.weight) sharedAccount.keys.add(publicKey: partialUserPublicKey.publicKey, hashAlgorithm: partialUserPublicKey.hashAlgorithm, weight: partialUserPublicKey.weight) @@ -64,7 +64,7 @@ transaction( ) ?? panic("Could not link token admin to token manager") - let tokenAdminCollection = admin + let tokenAdminCollection = admin.storage .borrow<&LockedTokens.TokenAdminCollection>( from: LockedTokens.LockedTokenAdminCollectionStoragePath ) @@ -77,18 +77,20 @@ transaction( ) // Override the default FlowToken receiver - sharedAccount.unlink(/public/flowTokenReceiver) + sharedAccount.capabilities.unpublish(/public/flowTokenReceiver) // create new receiver that marks received tokens as unlocked - sharedAccount.link<&{FungibleToken.Receiver}>( - /public/flowTokenReceiver, - target: LockedTokens.LockedTokenManagerStoragePath + let lockedTokensManagerCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) + sharedAccount.capabilties.publish( + lockedTokensManagerCap, + at: /public/flowTokenReceiver, ) // put normal receiver in a separate unique path - sharedAccount.link<&{FungibleToken.Receiver}>( - /public/lockedFlowTokenReceiver, - target: /storage/flowTokenVault + let tokenReceiverCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) + sharedAccount.capabilties.publish( + tokenReceiverCap + at: /public/lockedFlowTokenReceiver, ) } } diff --git a/transactions/lockedTokens/admin/admin_deploy_contract.cdc b/transactions/lockedTokens/admin/admin_deploy_contract.cdc index 4995c45db..1c3765b4e 100644 --- a/transactions/lockedTokens/admin/admin_deploy_contract.cdc +++ b/transactions/lockedTokens/admin/admin_deploy_contract.cdc @@ -2,7 +2,7 @@ import Crypto transaction(contractName: String, code: String, publicKeys: [Crypto.KeyListEntry]) { - prepare(admin: auth(Storage, BorrowValue) &Account) { + prepare(admin: auth(BorrowValue) &Account) { let lockedTokens = Account(payer: admin) lockedTokens.contracts.add(name: contractName, code: code.decodeHex(), admin) diff --git a/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc b/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc index f9b6fdef1..3af5fe4f5 100644 --- a/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc +++ b/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc @@ -6,18 +6,18 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(custodyProviderAddress: Address) { - prepare(admin: AuthAccount) { + prepare(admin: auth(BorrowValue) &Account) { let capabilityReceiver = getAccount(custodyProviderAddress) - .getCapability<&LockedTokens.LockedAccountCreator>( + .capabilities.get<&LockedTokens.LockedAccountCreator>( LockedTokens.LockedAccountCreatorPublicPath - ) + )! .borrow() ?? panic("Could not borrow capability receiver reference") - let tokenAdminCollection = admin.getCapability<&LockedTokens.TokenAdminCollection>( + let tokenAdminCollection = admin.capabilities.get<&LockedTokens.TokenAdminCollection>( LockedTokens.LockedTokenAdminPrivatePath - ) + )! capabilityReceiver.addCapability(cap: tokenAdminCollection) } diff --git a/transactions/lockedTokens/admin/admin_remove_delegator.cdc b/transactions/lockedTokens/admin/admin_remove_delegator.cdc index 038062b7d..ac8e988ca 100644 --- a/transactions/lockedTokens/admin/admin_remove_delegator.cdc +++ b/transactions/lockedTokens/admin/admin_remove_delegator.cdc @@ -1,11 +1,11 @@ -import FlowIDTableStaking from "FlowIDTableStaking" -import LockedTokens from "LockedTokens" +import FlowIDTableStaking from 0xIDENTITYTABLEADDRESS +import LockedTokens from 0xLOCKEDTOKENADDRESS transaction { prepare(signer: auth(BorrowValue) &Account) { - let managerRef = signer.storage.borrow(from: LockedTokens.LockedTokenManagerStoragePath) + let managerRef = signer.storage.borrow<&LockedTokens.LockedTokenManager>(from: LockedTokens.LockedTokenManagerStoragePath) ?? panic("Could not borrow a reference to the locked token manager") let delegator <- managerRef.removeDelegator()! diff --git a/transactions/lockedTokens/admin/check_main_registration.cdc b/transactions/lockedTokens/admin/check_main_registration.cdc index b198a1c5b..4c783d7b9 100644 --- a/transactions/lockedTokens/admin/check_main_registration.cdc +++ b/transactions/lockedTokens/admin/check_main_registration.cdc @@ -5,13 +5,13 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(mainAccount: Address) { - prepare(signer: AuthAccount) { + prepare(signer: auth(BorrowValue) &Account) { - let adminRef = signer.borrow<&LockedTokens.TokenAdminCollection>(from: LockedTokens.LockedTokenAdminCollectionStoragePath) + let adminRef = signer.storage.borrow<&LockedTokens.TokenAdminCollection>(from: LockedTokens.LockedTokenAdminCollectionStoragePath) ?? panic("Could not borrow a reference to the locked token admin collection") let lockedAccountInfoRef = getAccount(mainAccount) - .getCapability<&LockedTokens.TokenHolder>(LockedTokens.LockedAccountInfoPublicPath) + .capabilities.get<&LockedTokens.TokenHolder>(LockedTokens.LockedAccountInfoPublicPath)! .borrow() ?? panic("Could not borrow a reference to public LockedAccountInfo") diff --git a/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc b/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc index 11a64a5d9..5e4e2c07f 100644 --- a/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc @@ -12,63 +12,66 @@ transaction( fullUserPublicKey: Crypto.KeyListEntry, // Weight: 1000 ) { - prepare(custodyProvider: AuthAccount) { + prepare(custodyProvider: auth(BorrowValue) &Account) { - let sharedAccount = AuthAccount(payer: custodyProvider) - let userAccount = AuthAccount(payer: custodyProvider) + let sharedAccount = Account(payer: custodyProvider) + let userAccount = Account(payer: custodyProvider) sharedAccount.keys.add(publicKey: fullAdminPublicKey.publicKey, hashAlgorithm: fullAdminPublicKey.hashAlgorithm, weight: fullAdminPublicKey.weight) userAccount.keys.add(publicKey: fullUserPublicKey.publicKey, hashAlgorithm: fullUserPublicKey.hashAlgorithm, weight: fullUserPublicKey.weight) - let vaultCapability = sharedAccount - .link(/private/flowTokenVault, target: /storage/flowTokenVault) - ?? panic("Could not link Flow Token Vault capability") + let vaultCapability = sharedAccount.capabilities.storage + .issue(/storage/flowTokenVault) let lockedTokenManager <- LockedTokens.createLockedTokenManager(vault: vaultCapability) - sharedAccount.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) + sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) - let tokenManagerCapability = sharedAccount - .link( - LockedTokens.LockedTokenManagerPrivatePath, - target: LockedTokens.LockedTokenManagerStoragePath - ) ?? panic("Could not link token manager capability") + let tokenManagerCapability = sharedAccount.capabilities.storage + .issue( + LockedTokens.LockedTokenManagerStoragePath + ) let tokenHolder <- LockedTokens.createTokenHolder(lockedAddress: sharedAccount.address, tokenManager: tokenManagerCapability) - userAccount.save( + userAccount.storage.save( <-tokenHolder, to: LockedTokens.TokenHolderStoragePath, ) - userAccount.link<&LockedTokens.TokenHolder>(LockedTokens.LockedAccountInfoPublicPath, target: LockedTokens.TokenHolderStoragePath) + let tokenHolderCap = userAccount.capabilities.storage.issue<&LockedTokens.TokenHolder>(LockedTokens.TokenHolderStoragePath) + userAccount.capabilities.publish(tokenHolderCap, at: LockedTokens.LockedAccountInfoPublicPath) - let tokenAdminCapability = sharedAccount - .link( - LockedTokens.LockedTokenAdminPrivatePath, - target: LockedTokens.LockedTokenManagerStoragePath) - ?? panic("Could not link token custodyProvider to token manager") + let tokenAdminCapability = sharedAccount.capabilities.storage + .issue( + LockedTokens.LockedTokenManagerStoragePath + ) - let lockedAccountCreator = custodyProvider + let lockedAccountCreator = custodyProvider.storage. .borrow<&LockedTokens.LockedAccountCreator>(from: LockedTokens.LockedAccountCreatorStoragePath) - ?? panic("Could not borrow reference to LockedAccountCreator") - lockedAccountCreator.addAccount(sharedAccountAddress: sharedAccount.address, unlockedAccountAddress: userAccount.address, tokenAdmin: tokenAdminCapability) + lockedAccountCreator.addAccount( + sharedAccountAddress: sharedAccount.address, + unlockedAccountAddress: userAccount.address, + tokenAdmin: tokenAdminCapability + ) - // Override the default FlowToken receiver - sharedAccount.unlink(/public/flowTokenReceiver) - - // create new receiver that marks received tokens as unlocked - sharedAccount.link<&{FungibleToken.Receiver}>( - /public/flowTokenReceiver, - target: LockedTokens.LockedTokenManagerStoragePath + // Override the default FlowToken receiver. + sharedAccount.capabilities.unpublish(/public/flowTokenReceiver) + + // create new receiver that marks received tokens as unlocked. + let lockedTokensManagerCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) + sharedAccount.capabilties.publish( + lockedTokensManagerCap, + at: /public/flowTokenReceiver, ) - // pub normal receiver in a separate unique path - sharedAccount.link<&{FungibleToken.Receiver}>( - /public/lockedFlowTokenReceiver, - target: /storage/flowTokenVault + // put normal receiver in a separate unique path. + let tokenReceiverCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) + sharedAccount.capabilties.publish( + tokenReceiverCap + at: /public/lockedFlowTokenReceiver, ) } } diff --git a/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc b/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc index ed97e2805..f71c7af8a 100644 --- a/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc @@ -13,61 +13,66 @@ transaction( fullAdminPublicKey: Crypto.KeyListEntry, // Weight: 1000 ) { - prepare(custodyProvider: AuthAccount, userAccount: AuthAccount) { + prepare(custodyProvider: auth(BorrowValue) &Account, userAccount: auth(Storage, Capabilities) &Account) { - let sharedAccount = AuthAccount(payer: custodyProvider) + let sharedAccount = Account(payer: custodyProvider) sharedAccount.keys.add(publicKey: fullAdminPublicKey.publicKey, hashAlgorithm: fullAdminPublicKey.hashAlgorithm, weight: fullAdminPublicKey.weight) - let vaultCapability = sharedAccount - .link(/private/flowTokenVault, target: /storage/flowTokenVault) - ?? panic("Could not link Flow Token Vault capability") + let vaultCapability = sharedAccount.capabilities.storage + .issue(/storage/flowTokenVault) let lockedTokenManager <- LockedTokens.createLockedTokenManager(vault: vaultCapability) - sharedAccount.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) + sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) - let tokenManagerCapability = sharedAccount - .link( - LockedTokens.LockedTokenManagerPrivatePath, - target: LockedTokens.LockedTokenManagerStoragePath - ) ?? panic("Could not link token manager capability") + let tokenManagerCapability = sharedAccount.capabilities.storage + .issue( + LockedTokens.LockedTokenManagerStoragePath + ) - let tokenHolder <- LockedTokens.createTokenHolder(lockedAddress: sharedAccount.address, tokenManager: tokenManagerCapability) + let tokenHolder <- LockedTokens.createTokenHolder( + lockedAddress: sharedAccount.address, + tokenManager: tokenManagerCapability + ) - userAccount.save( - <-tokenHolder, + userAccount.storage.save( + <-tokenHolder, to: LockedTokens.TokenHolderStoragePath, ) - userAccount.link<&LockedTokens.TokenHolder>(LockedTokens.LockedAccountInfoPublicPath, target: LockedTokens.TokenHolderStoragePath) - - let tokenAdminCapability = sharedAccount - .link( - LockedTokens.LockedTokenAdminPrivatePath, - target: LockedTokens.LockedTokenManagerStoragePath) - ?? panic("Could not link token custodyProvider to token manager") + let tokenHolderCap = userAccount.capabilities.storage.issue<&LockedTokens.TokenHolder>(LockedTokens.TokenHolderStoragePath) + userAccount.capabilities.publish(tokenHolderCap, at: LockedTokens.LockedAccountInfoPublicPath) + let tokenAdminCapability = sharedAccount.capabilities.storage + .issue( + LockedTokens.LockedTokenManagerStoragePath + ) - let lockedAccountCreator = custodyProvider + let lockedAccountCreator = custodyProvider.storage. .borrow<&LockedTokens.LockedAccountCreator>(from: LockedTokens.LockedAccountCreatorStoragePath) - ?? panic("Could not borrow reference to LockedAccountCreator") - lockedAccountCreator.addAccount(sharedAccountAddress: sharedAccount.address, unlockedAccountAddress: userAccount.address, tokenAdmin: tokenAdminCapability) + lockedAccountCreator.addAccount( + sharedAccountAddress: sharedAccount.address, + unlockedAccountAddress: userAccount.address, + tokenAdmin: tokenAdminCapability + ) + + // Override the default FlowToken receiver. + sharedAccount.capabilities.unpublish(/public/flowTokenReceiver) - // Override the default FlowToken receiver - sharedAccount.unlink(/public/flowTokenReceiver) - - // create new receiver that marks received tokens as unlocked - sharedAccount.link<&{FungibleToken.Receiver}>( - /public/flowTokenReceiver, - target: LockedTokens.LockedTokenManagerStoragePath + // create new receiver that marks received tokens as unlocked. + let lockedTokensManagerCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) + sharedAccount.capabilties.publish( + lockedTokensManagerCap, + at: /public/flowTokenReceiver, ) - // pub normal receiver in a separate unique path - sharedAccount.link<&{FungibleToken.Receiver}>( - /public/lockedFlowTokenReceiver, - target: /storage/flowTokenVault + // put normal receiver in a separate unique path. + let tokenReceiverCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) + sharedAccount.capabilties.publish( + tokenReceiverCap + at: /public/lockedFlowTokenReceiver, ) } } diff --git a/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc b/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc index 680d79188..53a1646d7 100644 --- a/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc @@ -14,56 +14,45 @@ transaction( partialUserPublicKey: Crypto.KeyListEntry, // Weight: 900 ) { - prepare(custodyProvider: AuthAccount, userAccount: AuthAccount) { + prepare(custodyProvider: auth(BorrowValue) &Account, userAccount: auth(Storage, Capabilities) &Account) { - let sharedAccount = AuthAccount(payer: custodyProvider) + let sharedAccount = Account(payer: custodyProvider) sharedAccount.keys.add(publicKey: partialAdminPublicKey.publicKey, hashAlgorithm: partialAdminPublicKey.hashAlgorithm, weight: partialAdminPublicKey.weight) sharedAccount.keys.add(publicKey: partialUserPublicKey.publicKey, hashAlgorithm: partialUserPublicKey.hashAlgorithm, weight: partialUserPublicKey.weight) - let vaultCapability = sharedAccount - .link(/private/flowTokenVault, target: /storage/flowTokenVault) - ?? panic("Could not link Flow Token Vault capability") + let vaultCapability = sharedAccount.capabilities.storage + .issue(/storage/flowTokenVault) let lockedTokenManager <- LockedTokens.createLockedTokenManager(vault: vaultCapability) - sharedAccount.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) + sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) - let tokenManagerCapability = sharedAccount - .link( - LockedTokens.LockedTokenManagerPrivatePath, - target: LockedTokens.LockedTokenManagerStoragePath + let tokenManagerCapability = sharedAccount.capabilities.storage + .issue( + LockedTokens.LockedTokenManagerStoragePath ) - ?? panic("Could not link token manager capability") let tokenHolder <- LockedTokens.createTokenHolder( lockedAddress: sharedAccount.address, tokenManager: tokenManagerCapability ) - userAccount.save( + userAccount.storage.save( <-tokenHolder, to: LockedTokens.TokenHolderStoragePath, ) - userAccount.link<&LockedTokens.TokenHolder>( - LockedTokens.LockedAccountInfoPublicPath, - target: LockedTokens.TokenHolderStoragePath - ) + let tokenHolderCap = userAccount.capabilities.storage.issue<&LockedTokens.TokenHolder>(LockedTokens.TokenHolderStoragePath) + userAccount.capabilities.publish(tokenHolderCap, at: LockedTokens.LockedAccountInfoPublicPath) - let tokenAdminCapability = sharedAccount - .link( - LockedTokens.LockedTokenAdminPrivatePath, - target: LockedTokens.LockedTokenManagerStoragePath + let tokenAdminCapability = sharedAccount.capabilities.storage + .issue( + LockedTokens.LockedTokenManagerStoragePath ) - ?? panic("Could not link token custodyProvider to token manager") - - let lockedAccountCreator = custodyProvider - .borrow<&LockedTokens.LockedAccountCreator>( - from: LockedTokens.LockedAccountCreatorStoragePath - ) - ?? panic("Could not borrow reference to LockedAccountCreator") + let lockedAccountCreator = custodyProvider.storage. + .borrow<&LockedTokens.LockedAccountCreator>(from: LockedTokens.LockedAccountCreatorStoragePath) lockedAccountCreator.addAccount( sharedAccountAddress: sharedAccount.address, @@ -71,19 +60,21 @@ transaction( tokenAdmin: tokenAdminCapability ) - // Override the default FlowToken receiver - sharedAccount.unlink(/public/flowTokenReceiver) + // Override the default FlowToken receiver. + sharedAccount.capabilities.unpublish(/public/flowTokenReceiver) - // create new receiver that marks received tokens as unlocked - sharedAccount.link<&{FungibleToken.Receiver}>( - /public/flowTokenReceiver, - target: LockedTokens.LockedTokenManagerStoragePath + // create new receiver that marks received tokens as unlocked. + let lockedTokensManagerCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) + sharedAccount.capabilties.publish( + lockedTokensManagerCap, + at: /public/flowTokenReceiver, ) - // pub normal receiver in a separate unique path - sharedAccount.link<&{FungibleToken.Receiver}>( - /public/lockedFlowTokenReceiver, - target: /storage/flowTokenVault + // put normal receiver in a separate unique path. + let tokenReceiverCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) + sharedAccount.capabilties.publish( + tokenReceiverCap + at: /public/lockedFlowTokenReceiver, ) } } diff --git a/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc b/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc index a0663ced6..52521fbfa 100644 --- a/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc +++ b/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc @@ -13,61 +13,48 @@ transaction( fullUserPublicKey: Crypto.KeyListEntry, // Weight: 1000 ) { - prepare(custodyProvider: AuthAccount) { + prepare(custodyProvider: auth(BorrowValue) &Account) { - let sharedAccount = AuthAccount(payer: custodyProvider) - let userAccount = AuthAccount(payer: custodyProvider) + let sharedAccount = Account(payer: custodyProvider) + let userAccount = Account(payer: custodyProvider) sharedAccount.keys.add(publicKey: partialAdminPublicKey.publicKey, hashAlgorithm: partialAdminPublicKey.hashAlgorithm, weight: partialAdminPublicKey.weight) sharedAccount.keys.add(publicKey: partialUserPublicKey.publicKey, hashAlgorithm: partialUserPublicKey.hashAlgorithm, weight: partialUserPublicKey.weight) userAccount.keys.add(publicKey: fullUserPublicKey.publicKey, hashAlgorithm: fullUserPublicKey.hashAlgorithm, weight: fullUserPublicKey.weight) - let vaultCapability = sharedAccount - .link( - /private/flowTokenVault, - target: /storage/flowTokenVault - ) - ?? panic("Could not link Flow Token Vault capability") + let vaultCapability = sharedAccount.capabilities.storage + .issue(/storage/flowTokenVault) let lockedTokenManager <- LockedTokens.createLockedTokenManager(vault: vaultCapability) - sharedAccount.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) + sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) - let tokenManagerCapability = sharedAccount - .link( - LockedTokens.LockedTokenManagerPrivatePath, - target: LockedTokens.LockedTokenManagerStoragePath + let tokenManagerCapability = sharedAccount.capabilities.storage + .issue( + LockedTokens.LockedTokenManagerStoragePath ) - ?? panic("Could not link token manager capability") let tokenHolder <- LockedTokens.createTokenHolder( lockedAddress: sharedAccount.address, tokenManager: tokenManagerCapability ) - userAccount.save( + userAccount.storage.save( <-tokenHolder, to: LockedTokens.TokenHolderStoragePath, ) - userAccount.link<&LockedTokens.TokenHolder>( - LockedTokens.LockedAccountInfoPublicPath, - target: LockedTokens.TokenHolderStoragePath - ) + let tokenHolderCap = userAccount.capabilities.storage.issue<&LockedTokens.TokenHolder>(LockedTokens.TokenHolderStoragePath) + userAccount.capabilities.publish(tokenHolderCap, at: LockedTokens.LockedAccountInfoPublicPath) - let tokenAdminCapability = sharedAccount - .link( - LockedTokens.LockedTokenAdminPrivatePath, - target: LockedTokens.LockedTokenManagerStoragePath + let tokenAdminCapability = sharedAccount.capabilities.storage + .issue( + LockedTokens.LockedTokenManagerStoragePath ) - ?? panic("Could not link token custodyProvider to token manager") - let lockedAccountCreator = custodyProvider - .borrow<&LockedTokens.LockedAccountCreator>( - from: LockedTokens.LockedAccountCreatorStoragePath - ) - ?? panic("Could not borrow reference to LockedAccountCreator") + let lockedAccountCreator = custodyProvider.storage. + .borrow<&LockedTokens.LockedAccountCreator>(from: LockedTokens.LockedAccountCreatorStoragePath) lockedAccountCreator.addAccount( sharedAccountAddress: sharedAccount.address, @@ -75,19 +62,21 @@ transaction( tokenAdmin: tokenAdminCapability ) - // Override the default FlowToken receiver - sharedAccount.unlink(/public/flowTokenReceiver) + // Override the default FlowToken receiver. + sharedAccount.capabilities.unpublish(/public/flowTokenReceiver) - // create new receiver that marks received tokens as unlocked - sharedAccount.link<&{FungibleToken.Receiver}>( - /public/flowTokenReceiver, - target: LockedTokens.LockedTokenManagerStoragePath + // create new receiver that marks received tokens as unlocked. + let lockedTokensManagerCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) + sharedAccount.capabilties.publish( + lockedTokensManagerCap, + at: /public/flowTokenReceiver, ) - // pub normal receiver in a separate unique path - sharedAccount.link<&{FungibleToken.Receiver}>( - /public/lockedFlowTokenReceiver, - target: /storage/flowTokenVault + // put normal receiver in a separate unique path. + let tokenReceiverCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) + sharedAccount.capabilties.publish( + tokenReceiverCap + at: /public/lockedFlowTokenReceiver, ) } } diff --git a/transactions/lockedTokens/admin/custody_setup_account_creator.cdc b/transactions/lockedTokens/admin/custody_setup_account_creator.cdc index 6bc35983d..e2f636a47 100644 --- a/transactions/lockedTokens/admin/custody_setup_account_creator.cdc +++ b/transactions/lockedTokens/admin/custody_setup_account_creator.cdc @@ -2,19 +2,23 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS transaction { - prepare(custodyProvider: AuthAccount) { + prepare(custodyProvider: auth(SaveValue, Capabilities) &Account) { let accountCreator <- LockedTokens.createLockedAccountCreator() - custodyProvider.save( + custodyProvider.storage.save( <-accountCreator, to: LockedTokens.LockedAccountCreatorStoragePath, ) - + // create new receiver that marks received tokens as unlocked - custodyProvider.link<&LockedTokens.LockedAccountCreator>( - LockedTokens.LockedAccountCreatorPublicPath, - target: LockedTokens.LockedAccountCreatorStoragePath + let lockedAccountCreatorCap = custodyProvider.capabilities.storage.issue<&LockedTokens.LockedAccountCreator>( + LockedTokens.LockedAccountCreatorStoragePath + ) + + custodyProvider.capabilities.publish<&LockedTokens.LockedAccountCreator>( + lockedAccountCreatorCap, + at: LockedTokens.LockedAccountCreatorPublicPath, ) } } diff --git a/transactions/lockedTokens/admin/deposit_locked_tokens.cdc b/transactions/lockedTokens/admin/deposit_locked_tokens.cdc index a51acd5a0..634bbbb0a 100644 --- a/transactions/lockedTokens/admin/deposit_locked_tokens.cdc +++ b/transactions/lockedTokens/admin/deposit_locked_tokens.cdc @@ -8,13 +8,13 @@ transaction(to: Address, amount: UFix64) { // The Vault resource that holds the tokens that are being transferred let sentVault: @{FungibleToken.Vault} - prepare(admin: AuthAccount) { + prepare(admin: auth(BorrowValue) &Account) { // Get a reference to the admin's stored vault - let vaultRef = admin.borrow(from: /storage/flowTokenVault) + let vaultRef = admin.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to the owner's Vault!") - let adminRef = admin + let adminRef = admin.storage .borrow<&LockedTokens.TokenAdminCollection>( from: LockedTokens.LockedTokenAdminCollectionStoragePath ) @@ -36,9 +36,9 @@ transaction(to: Address, amount: UFix64) { // Get a reference to the recipient's Receiver let receiverRef = recipient - .getCapability<&{FungibleToken.Receiver}>( + .capabilities.get<&{FungibleToken.Receiver}>( /public/lockedFlowTokenReceiver - ) + )! .borrow() ?? panic("Could not borrow receiver reference to the recipient's locked Vault") diff --git a/transactions/lockedTokens/admin/get_unlocking_bad_accounts.cdc b/transactions/lockedTokens/admin/get_unlocking_bad_accounts.cdc index 8bfc06069..865ae6183 100644 --- a/transactions/lockedTokens/admin/get_unlocking_bad_accounts.cdc +++ b/transactions/lockedTokens/admin/get_unlocking_bad_accounts.cdc @@ -6,7 +6,7 @@ access(all) fun main(tokenAdmin: Address): {Address: UFix64} { let account = getAccount(tokenAdmin) - let dictionaryReference = account.getCapability<&{Address: UFix64}>(/public/unlockingBadAccounts).borrow() + let dictionaryReference = account.capabilities.get<&{Address: UFix64}>(/public/unlockingBadAccounts)!.borrow() ?? panic("Could not get bad accounts dictionary") for address in dictionaryReference.keys { diff --git a/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc b/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc index 7005f4221..2b6e906b8 100644 --- a/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc +++ b/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc @@ -8,16 +8,16 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(unlockInfo: {Address: UFix64}) { - prepare(admin: AuthAccount) { + prepare(admin: auth(Storage) &Account) { // Unlocked Account addresses that had some sort of error // are stored in this dictionary so they can be inspected later // If the transaction needs to run multiple times, // then the dictionary is not overwritten - var badAccounts: {Address: UFix64} = admin.load<{Address: UFix64}>(from: /storage/unlockingBadAccounts) + var badAccounts: {Address: UFix64} = admin.storage.load<{Address: UFix64}>(from: /storage/unlockingBadAccounts) ?? {} as {Address: UFix64} - let adminRef = admin.borrow<&LockedTokens.TokenAdminCollection>(from: LockedTokens.LockedTokenAdminCollectionStoragePath) + let adminRef = admin.storage.borrow<&LockedTokens.TokenAdminCollection>(from: LockedTokens.LockedTokenAdminCollectionStoragePath) ?? panic("Could not borrow a reference to the admin collection") for unlockedAddress in unlockInfo.keys { @@ -26,7 +26,7 @@ transaction(unlockInfo: {Address: UFix64}) { // revert the entire transaction if it fails // to get the information for a single address if let lockedAccountInfoRef = getAccount(unlockedAddress) - .getCapability<&LockedTokens.TokenHolder>(LockedTokens.LockedAccountInfoPublicPath) + .capabilities.get<&LockedTokens.TokenHolder>(LockedTokens.LockedAccountInfoPublicPath)! .borrow() { let lockedAccountAddress = lockedAccountInfoRef.getLockedAccountAddress() @@ -55,7 +55,9 @@ transaction(unlockInfo: {Address: UFix64}) { badAccounts[unlockedAddress] = unlockInfo[unlockedAddress] } - admin.save<{Address: UFix64}>(badAccounts, to: /storage/unlockingBadAccounts) - admin.link<&{Address: UFix64}>(/public/unlockingBadAccounts, target: /storage/unlockingBadAccounts) + admin.storage.save<{Address: UFix64}>(badAccounts, to: /storage/unlockingBadAccounts) + + let unlockingBadAccountCap = admin.capabilities.storage.issue<&{Address: UFix64}>(/storage/unlockingBadAccounts) + admin.capabilities.publish(unlockingBadAccountCap, at: /public/unlockingBadAccounts) } } diff --git a/transactions/lockedTokens/delegator/delegate_new_tokens.cdc b/transactions/lockedTokens/delegator/delegate_new_tokens.cdc index b0eec1f43..e3f4083bb 100644 --- a/transactions/lockedTokens/delegator/delegate_new_tokens.cdc +++ b/transactions/lockedTokens/delegator/delegate_new_tokens.cdc @@ -8,11 +8,11 @@ transaction(amount: UFix64) { let vaultRef: &FlowToken.Vault - prepare(account: AuthAccount) { - self.holderRef = account.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + prepare(account: auth(BorrowValue) &Account) { + self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") - self.vaultRef = account.borrow(from: /storage/flowTokenVault) + self.vaultRef = account.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow flow token vault reference") } diff --git a/transactions/lockedTokens/delegator/delegate_rewarded_tokens.cdc b/transactions/lockedTokens/delegator/delegate_rewarded_tokens.cdc index cadf5843d..2f6d93af6 100644 --- a/transactions/lockedTokens/delegator/delegate_rewarded_tokens.cdc +++ b/transactions/lockedTokens/delegator/delegate_rewarded_tokens.cdc @@ -1,11 +1,10 @@ -import LockedTokens from "LockedTokens" -import FungibleToken from "FungibleToken" +import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(amount: UFix64) { let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy prepare(account: auth(BorrowValue) &Account) { - let holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + let holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("TokenHolder is not saved at specified path") self.nodeDelegatorProxy = holderRef.borrowDelegator() diff --git a/transactions/lockedTokens/delegator/delegate_unstaked_tokens.cdc b/transactions/lockedTokens/delegator/delegate_unstaked_tokens.cdc index 28ced55d0..60c848256 100644 --- a/transactions/lockedTokens/delegator/delegate_unstaked_tokens.cdc +++ b/transactions/lockedTokens/delegator/delegate_unstaked_tokens.cdc @@ -1,11 +1,10 @@ -import LockedTokens from "LockedTokens" -import FungibleToken from "FungibleToken" +import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(amount: UFix64) { let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy prepare(account: auth(BorrowValue) &Account) { - let holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + let holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("TokenHolder is not saved at specified path") self.nodeDelegatorProxy = holderRef.borrowDelegator() diff --git a/transactions/lockedTokens/delegator/get_delegator_id.cdc b/transactions/lockedTokens/delegator/get_delegator_id.cdc index eb32c4f90..a3037f5f9 100644 --- a/transactions/lockedTokens/delegator/get_delegator_id.cdc +++ b/transactions/lockedTokens/delegator/get_delegator_id.cdc @@ -3,9 +3,9 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(account: Address): UInt32 { let lockedAccountInfoRef = getAccount(account) - .getCapability<&LockedTokens.TokenHolder>( + .capabilities.get<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - ) + )! .borrow() ?? panic("Could not borrow a reference to public LockedAccountInfo") diff --git a/transactions/lockedTokens/delegator/get_delegator_info.cdc b/transactions/lockedTokens/delegator/get_delegator_info.cdc index afb46a983..dbffec925 100644 --- a/transactions/lockedTokens/delegator/get_delegator_info.cdc +++ b/transactions/lockedTokens/delegator/get_delegator_info.cdc @@ -11,9 +11,9 @@ access(all) fun main(account: Address): [FlowIDTableStaking.DelegatorInfo] { let pubAccount = getAccount(account) let delegatorCap = pubAccount - .getCapability<&{FlowIDTableStaking.NodeDelegatorPublic}>( + .capabilities.get<&{FlowIDTableStaking.NodeDelegatorPublic}>( /public/flowStakingDelegator - ) + )! if let delegatorRef = delegatorCap.borrow() { let info = FlowIDTableStaking.DelegatorInfo( @@ -24,9 +24,9 @@ access(all) fun main(account: Address): [FlowIDTableStaking.DelegatorInfo] { } let lockedAccountInfoCap = pubAccount - .getCapability<&LockedTokens.TokenHolder>( + .capabilities.get<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - ) + )! if let lockedAccountInfoRef = lockedAccountInfoCap.borrow() { let nodeID = lockedAccountInfoRef.getDelegatorNodeID() diff --git a/transactions/lockedTokens/delegator/get_delegator_node_id.cdc b/transactions/lockedTokens/delegator/get_delegator_node_id.cdc index a9e8d1718..3b50d3989 100644 --- a/transactions/lockedTokens/delegator/get_delegator_node_id.cdc +++ b/transactions/lockedTokens/delegator/get_delegator_node_id.cdc @@ -3,9 +3,9 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(account: Address): String { let lockedAccountInfoRef = getAccount(account) - .getCapability<&LockedTokens.TokenHolder>( + .capabilities.get<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - ) + )! .borrow() ?? panic("Could not borrow a reference to public LockedAccountInfo") diff --git a/transactions/lockedTokens/delegator/register_delegator.cdc b/transactions/lockedTokens/delegator/register_delegator.cdc index 6655b4815..fac11a0d9 100644 --- a/transactions/lockedTokens/delegator/register_delegator.cdc +++ b/transactions/lockedTokens/delegator/register_delegator.cdc @@ -9,11 +9,11 @@ transaction(id: String, amount: UFix64) { let vaultRef: &FlowToken.Vault - prepare(account: AuthAccount) { - self.holderRef = account.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + prepare(account: auth(BorrowValue) &Account) { + self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("TokenHolder is not saved at specified path") - self.vaultRef = account.borrow(from: /storage/flowTokenVault) + self.vaultRef = account.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow flow token vault reference") } diff --git a/transactions/lockedTokens/delegator/request_unstaking.cdc b/transactions/lockedTokens/delegator/request_unstaking.cdc index 42aa9fc44..5ca0777a3 100644 --- a/transactions/lockedTokens/delegator/request_unstaking.cdc +++ b/transactions/lockedTokens/delegator/request_unstaking.cdc @@ -1,11 +1,10 @@ -import LockedTokens from "LockedTokens" -import FungibleToken from "FungibleToken" +import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(amount: UFix64) { let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy prepare(account: auth(BorrowValue) &Account) { - let holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + let holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("TokenHolder is not saved at specified path") self.nodeDelegatorProxy = holderRef.borrowDelegator() diff --git a/transactions/lockedTokens/delegator/withdraw_rewarded_tokens.cdc b/transactions/lockedTokens/delegator/withdraw_rewarded_tokens.cdc index cc5640857..1de790ffc 100644 --- a/transactions/lockedTokens/delegator/withdraw_rewarded_tokens.cdc +++ b/transactions/lockedTokens/delegator/withdraw_rewarded_tokens.cdc @@ -6,11 +6,11 @@ transaction(amount: UFix64) { let holderRef: &LockedTokens.TokenHolder let vaultRef: &FlowToken.Vault - prepare(account: AuthAccount) { - self.holderRef = account.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + prepare(account: auth(BorrowValue) &Account) { + self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") - self.vaultRef = account.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) + self.vaultRef = account.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FlowToken value") } diff --git a/transactions/lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc b/transactions/lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc index 08c0b4321..220b9e981 100644 --- a/transactions/lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc +++ b/transactions/lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc @@ -1,11 +1,10 @@ -import LockedTokens from "LockedTokens" -import FungibleToken from "FungibleToken" +import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(amount: UFix64) { let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy prepare(account: auth(BorrowValue) &Account) { - let holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + let holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("TokenHolder is not saved at specified path") self.nodeDelegatorProxy = holderRef.borrowDelegator() diff --git a/transactions/lockedTokens/delegator/withdraw_unstaked_tokens.cdc b/transactions/lockedTokens/delegator/withdraw_unstaked_tokens.cdc index c58b3c807..3a2cc8ee6 100644 --- a/transactions/lockedTokens/delegator/withdraw_unstaked_tokens.cdc +++ b/transactions/lockedTokens/delegator/withdraw_unstaked_tokens.cdc @@ -1,11 +1,10 @@ -import LockedTokens from "LockedTokens" -import FungibleToken from "FungibleToken" +import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(amount: UFix64) { let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy prepare(account: auth(BorrowValue) &Account) { - let holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + let holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("TokenHolder is not saved at specified path") self.nodeDelegatorProxy = holderRef.borrowDelegator() diff --git a/transactions/lockedTokens/staker/get_node_id.cdc b/transactions/lockedTokens/staker/get_node_id.cdc index 490fbbdec..9ff08af32 100644 --- a/transactions/lockedTokens/staker/get_node_id.cdc +++ b/transactions/lockedTokens/staker/get_node_id.cdc @@ -3,9 +3,9 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(account: Address): String { let lockedAccountInfoRef = getAccount(account) - .getCapability<&LockedTokens.TokenHolder>( + .capabilities.get<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - ) + )! .borrow() ?? panic("Could not borrow a reference to public LockedAccountInfo") diff --git a/transactions/lockedTokens/staker/get_staker_info.cdc b/transactions/lockedTokens/staker/get_staker_info.cdc index d1795cdb5..e13cc0c26 100644 --- a/transactions/lockedTokens/staker/get_staker_info.cdc +++ b/transactions/lockedTokens/staker/get_staker_info.cdc @@ -11,9 +11,9 @@ access(all) fun main(account: Address): [FlowIDTableStaking.NodeInfo] { let pubAccount = getAccount(account) let nodeStakerCap = pubAccount - .getCapability<&{FlowIDTableStaking.NodeStakerPublic}>( + .capabilities.get<&{FlowIDTableStaking.NodeStakerPublic}>( FlowIDTableStaking.NodeStakerPublicPath - ) + )! if let nodeStakerRef = nodeStakerCap.borrow() { let info = FlowIDTableStaking.NodeInfo(nodeID: nodeStakerRef.id) @@ -21,9 +21,9 @@ access(all) fun main(account: Address): [FlowIDTableStaking.NodeInfo] { } let lockedAccountInfoCap = pubAccount - .getCapability<&LockedTokens.TokenHolder>( + .capabilities.get<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - ) + )! if let lockedAccountInfoRef = lockedAccountInfoCap.borrow() { if let nodeID = lockedAccountInfoRef.getNodeID() { diff --git a/transactions/lockedTokens/staker/register_node.cdc b/transactions/lockedTokens/staker/register_node.cdc index b0e7ebf56..66c803ddc 100644 --- a/transactions/lockedTokens/staker/register_node.cdc +++ b/transactions/lockedTokens/staker/register_node.cdc @@ -9,16 +9,22 @@ transaction(id: String, role: UInt8, networkingAddress: String, networkingKey: S let vaultRef: &FlowToken.Vault - prepare(account: AuthAccount) { - self.holderRef = account.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + prepare(account: auth(BorrowValue) &Account) { + self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow ref to TokenHolder") - self.vaultRef = account.borrow(from: /storage/flowTokenVault) + self.vaultRef = account.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow flow token vault reference") } execute { - let nodeInfo = StakingProxy.NodeInfo(nodeID: id, role: role, networkingAddress: networkingAddress, networkingKey: networkingKey, stakingKey: stakingKey) + let nodeInfo = StakingProxy.NodeInfo( + nodeID: id, + role: role, + networkingAddress: networkingAddress, + networkingKey: networkingKey, + stakingKey: stakingKey + ) let lockedBalance = self.holderRef.getLockedAccountBalance() diff --git a/transactions/lockedTokens/staker/request_unstaking.cdc b/transactions/lockedTokens/staker/request_unstaking.cdc index d3b8cc317..1f0a5364d 100644 --- a/transactions/lockedTokens/staker/request_unstaking.cdc +++ b/transactions/lockedTokens/staker/request_unstaking.cdc @@ -1,13 +1,12 @@ -import LockedTokens from "LockedTokens" -import StakingProxy from "StakingProxy" -import FungibleToken from "FungibleToken" +import LockedTokens from 0xLOCKEDTOKENADDRESS +import StakingProxy from 0xSTAKINGPROXYADDRESS transaction(amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder + let holderRef: &LockedTokens.TokenHolder prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") } diff --git a/transactions/lockedTokens/staker/stake_new_tokens.cdc b/transactions/lockedTokens/staker/stake_new_tokens.cdc index 413da1a4a..799f947f4 100644 --- a/transactions/lockedTokens/staker/stake_new_tokens.cdc +++ b/transactions/lockedTokens/staker/stake_new_tokens.cdc @@ -10,11 +10,11 @@ transaction(amount: UFix64) { let vaultRef: &FlowToken.Vault - prepare(account: AuthAccount) { - self.holderRef = account.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + prepare(account: auth(BorrowValue) &Account) { + self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") - self.vaultRef = account.borrow(from: /storage/flowTokenVault) + self.vaultRef = account.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow flow token vault reference") } diff --git a/transactions/lockedTokens/staker/stake_rewarded_tokens.cdc b/transactions/lockedTokens/staker/stake_rewarded_tokens.cdc index cd3f69c70..de7382f86 100644 --- a/transactions/lockedTokens/staker/stake_rewarded_tokens.cdc +++ b/transactions/lockedTokens/staker/stake_rewarded_tokens.cdc @@ -1,13 +1,12 @@ -import LockedTokens from "LockedTokens" -import StakingProxy from "StakingProxy" -import FungibleToken from "FungibleToken" +import LockedTokens from 0xLOCKEDTOKENADDRESS +import StakingProxy from 0xSTAKINGPROXYADDRESS transaction(amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder + let holderRef: &LockedTokens.TokenHolder prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") } diff --git a/transactions/lockedTokens/staker/stake_unstaked_tokens.cdc b/transactions/lockedTokens/staker/stake_unstaked_tokens.cdc index 4a0c0959a..c56f9d86a 100644 --- a/transactions/lockedTokens/staker/stake_unstaked_tokens.cdc +++ b/transactions/lockedTokens/staker/stake_unstaked_tokens.cdc @@ -1,13 +1,12 @@ -import LockedTokens from "LockedTokens" -import StakingProxy from "StakingProxy" -import FungibleToken from "FungibleToken" +import LockedTokens from 0xLOCKEDTOKENADDRESS +import StakingProxy from 0xSTAKINGPROXYADDRESS transaction(amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder + let holderRef: &LockedTokens.TokenHolder prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") } diff --git a/transactions/lockedTokens/staker/unstake_all.cdc b/transactions/lockedTokens/staker/unstake_all.cdc index 1ebe5104b..c7f8caddb 100644 --- a/transactions/lockedTokens/staker/unstake_all.cdc +++ b/transactions/lockedTokens/staker/unstake_all.cdc @@ -1,12 +1,12 @@ -import LockedTokens from "LockedTokens" -import FungibleToken from "FungibleToken" +import LockedTokens from 0xLOCKEDTOKENADDRESS +import StakingProxy from 0xSTAKINGPROXYADDRESS transaction() { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder + let holderRef: &LockedTokens.TokenHolder prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") } diff --git a/transactions/lockedTokens/staker/update_networking_address.cdc b/transactions/lockedTokens/staker/update_networking_address.cdc index a8d591818..1d9154570 100644 --- a/transactions/lockedTokens/staker/update_networking_address.cdc +++ b/transactions/lockedTokens/staker/update_networking_address.cdc @@ -1,12 +1,11 @@ -import LockedTokens from "LockedTokens" -import FungibleToken from "FungibleToken" +import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(newAddress: String) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder + let holderRef: &LockedTokens.TokenHolder prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") } diff --git a/transactions/lockedTokens/staker/withdraw_rewarded_tokens.cdc b/transactions/lockedTokens/staker/withdraw_rewarded_tokens.cdc index 3dd52c6bf..315b8fc65 100644 --- a/transactions/lockedTokens/staker/withdraw_rewarded_tokens.cdc +++ b/transactions/lockedTokens/staker/withdraw_rewarded_tokens.cdc @@ -6,11 +6,11 @@ transaction(amount: UFix64) { let holderRef: &LockedTokens.TokenHolder let vaultRef: &FlowToken.Vault - prepare(account: AuthAccount) { - self.holderRef = account.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + prepare(account: auth(BorrowValue) &Account) { + self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") - self.vaultRef = account.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) + self.vaultRef = account.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FlowToken value") } diff --git a/transactions/lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc b/transactions/lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc index 43396dae5..ff0334165 100644 --- a/transactions/lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc +++ b/transactions/lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc @@ -1,12 +1,12 @@ -import LockedTokens from "LockedTokens" -import FungibleToken from "FungibleToken" +import LockedTokens from 0xLOCKEDTOKENADDRESS +import StakingProxy from 0xSTAKINGPROXYADDRESS transaction(amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder + let holderRef: &LockedTokens.TokenHolder prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") } diff --git a/transactions/lockedTokens/staker/withdraw_unstaked_tokens.cdc b/transactions/lockedTokens/staker/withdraw_unstaked_tokens.cdc index d74fb6d5b..716f94159 100644 --- a/transactions/lockedTokens/staker/withdraw_unstaked_tokens.cdc +++ b/transactions/lockedTokens/staker/withdraw_unstaked_tokens.cdc @@ -1,12 +1,12 @@ -import LockedTokens from "LockedTokens" -import FungibleToken from "FungibleToken" +import LockedTokens from 0xLOCKEDTOKENADDRESS +import StakingProxy from 0xSTAKINGPROXYADDRESS transaction(amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder + let holderRef: &LockedTokens.TokenHolder prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") } diff --git a/transactions/lockedTokens/user/deposit_tokens.cdc b/transactions/lockedTokens/user/deposit_tokens.cdc index d51d9cc8e..7bd4a34f9 100644 --- a/transactions/lockedTokens/user/deposit_tokens.cdc +++ b/transactions/lockedTokens/user/deposit_tokens.cdc @@ -7,11 +7,11 @@ transaction(amount: UFix64) { let holderRef: &LockedTokens.TokenHolder let vaultRef: &FlowToken.Vault - prepare(acct: AuthAccount) { - self.holderRef = acct.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + prepare(acct: auth(BorrowValue) &Account) { + self.holderRef = acct.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow a reference to TokenHolder") - self.vaultRef = acct.borrow(from: /storage/flowTokenVault) + self.vaultRef = acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow flow token vault ref") } diff --git a/transactions/lockedTokens/user/get_locked_account_address.cdc b/transactions/lockedTokens/user/get_locked_account_address.cdc index 48fc4ab27..401c45ed5 100644 --- a/transactions/lockedTokens/user/get_locked_account_address.cdc +++ b/transactions/lockedTokens/user/get_locked_account_address.cdc @@ -3,9 +3,9 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(account: Address): Address { let lockedAccountInfoRef = getAccount(account) - .getCapability<&LockedTokens.TokenHolder>( + .capabilities.get<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - ) + )! .borrow() ?? panic("Could not borrow a reference to public LockedAccountInfo") diff --git a/transactions/lockedTokens/user/get_locked_account_balance.cdc b/transactions/lockedTokens/user/get_locked_account_balance.cdc index deb30d5e4..0292f8c79 100644 --- a/transactions/lockedTokens/user/get_locked_account_balance.cdc +++ b/transactions/lockedTokens/user/get_locked_account_balance.cdc @@ -3,9 +3,9 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(account: Address): UFix64 { let lockedAccountInfoRef = getAccount(account) - .getCapability<&LockedTokens.TokenHolder>( + .capabilities.get<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - ) + )! .borrow() ?? panic("Could not borrow a reference to public LockedAccountInfo") diff --git a/transactions/lockedTokens/user/get_multiple_unlock_limits.cdc b/transactions/lockedTokens/user/get_multiple_unlock_limits.cdc index 4a674ce02..78f723a5c 100644 --- a/transactions/lockedTokens/user/get_multiple_unlock_limits.cdc +++ b/transactions/lockedTokens/user/get_multiple_unlock_limits.cdc @@ -6,9 +6,9 @@ access(all) fun main(accounts: [Address]): [UFix64] { for account in accounts { let lockedAccountInfoRef = getAccount(account) - .getCapability<&LockedTokens.TokenHolder>( + .capabilities.get<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - ) + )! .borrow() ?? panic("Could not borrow a reference to public LockedAccountInfo") diff --git a/transactions/lockedTokens/user/get_total_balance.cdc b/transactions/lockedTokens/user/get_total_balance.cdc index 6df2da373..691886645 100644 --- a/transactions/lockedTokens/user/get_total_balance.cdc +++ b/transactions/lockedTokens/user/get_total_balance.cdc @@ -21,17 +21,17 @@ access(all) fun main(address: Address): UFix64 { let account = getAccount(address) - if let vaultRef = account.getCapability(/public/flowTokenBalance) - .borrow<&FlowToken.Vault>() + if let vaultRef = account.capabilities.get<&FlowToken.Vault>(/public/flowTokenBalance)! + .borrow() { sum = sum + vaultRef.balance } // Get token balance from the unlocked account's node staking pools let nodeStakerCap = account - .getCapability<&{FlowIDTableStaking.NodeStakerPublic}>( + .capabilities.get<&{FlowIDTableStaking.NodeStakerPublic}>( FlowIDTableStaking.NodeStakerPublicPath - ) + )! if let nodeStakerRef = nodeStakerCap.borrow() { let nodeInfo = FlowIDTableStaking.NodeInfo(nodeID: nodeStakerRef.id) @@ -40,9 +40,9 @@ access(all) fun main(address: Address): UFix64 { // Get token balance from the unlocked account's delegator staking pools let delegatorCap = account - .getCapability<&{FlowIDTableStaking.NodeDelegatorPublic}>( + .capabilities.get<&{FlowIDTableStaking.NodeDelegatorPublic}>( /public/flowStakingDelegator - ) + )! if let delegatorRef = delegatorCap.borrow() { let delegatorInfo = FlowIDTableStaking.DelegatorInfo( @@ -55,9 +55,9 @@ access(all) fun main(address: Address): UFix64 { // Get the locked account public capability let lockedAccountInfoCap = account - .getCapability<&LockedTokens.TokenHolder>( + .capabilities.get<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - ) + )! if let lockedAccountInfoRef = lockedAccountInfoCap.borrow() { // Add the locked account balance diff --git a/transactions/lockedTokens/user/get_unlock_limit.cdc b/transactions/lockedTokens/user/get_unlock_limit.cdc index 7ad994c2b..994b11e0f 100644 --- a/transactions/lockedTokens/user/get_unlock_limit.cdc +++ b/transactions/lockedTokens/user/get_unlock_limit.cdc @@ -3,9 +3,9 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(account: Address): UFix64 { let lockedAccountInfoRef = getAccount(account) - .getCapability<&LockedTokens.TokenHolder>( + .capabilities.get<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - ) + )! .borrow() ?? panic("Could not borrow a reference to public LockedAccountInfo") diff --git a/transactions/lockedTokens/user/withdraw_tokens.cdc b/transactions/lockedTokens/user/withdraw_tokens.cdc index 1f6bef166..51ff37f13 100644 --- a/transactions/lockedTokens/user/withdraw_tokens.cdc +++ b/transactions/lockedTokens/user/withdraw_tokens.cdc @@ -7,11 +7,11 @@ transaction(amount: UFix64) { let holderRef: &LockedTokens.TokenHolder let vaultRef: &FlowToken.Vault - prepare(acct: AuthAccount) { - self.holderRef = acct.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + prepare(acct: auth(BorrowValue) &Account) { + self.holderRef = acct.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow a reference to TokenHolder") - self.vaultRef = acct.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) + self.vaultRef = acct.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) ?? panic("Could not borrow flow token vault ref") } diff --git a/transactions/nodeVersionBeacon/admin/set_version_boundary.cdc b/transactions/nodeVersionBeacon/admin/set_version_boundary.cdc index 6987de03f..4fecda869 100644 --- a/transactions/nodeVersionBeacon/admin/set_version_boundary.cdc +++ b/transactions/nodeVersionBeacon/admin/set_version_boundary.cdc @@ -1,4 +1,4 @@ -import NodeVersionBeacon from "NodeVersionBeacon" +import NodeVersionBeacon from 0xNODEVERSIONBEACONADDRESS /// Transaction that allows NodeVersionAdmin to add a new version to the /// version table defining a version boundary at the targetBlockHeight @@ -33,7 +33,7 @@ transaction( self.NodeVersionBeaconAdminRef.setVersionBoundary(versionBoundary: self.newVersionBoundary) } - post { + post{ NodeVersionBeacon.getVersionBoundary(effectiveAtBlockHeight: blockHeight).version .strictEqualTo(self.newVersionBoundary.version) : "New version was not added to the versionTable" } diff --git a/transactions/quorumCertificate/admin/publish_voter.cdc b/transactions/quorumCertificate/admin/publish_voter.cdc index 8faed23e5..b0c8e1845 100644 --- a/transactions/quorumCertificate/admin/publish_voter.cdc +++ b/transactions/quorumCertificate/admin/publish_voter.cdc @@ -1,4 +1,4 @@ -import FlowClusterQC from "FlowClusterQC" +import FlowClusterQC from 0xQCADDRESS // Test transaction for the QC admin to publish a reference // that allows accounts to register for QC voting @@ -7,6 +7,6 @@ transaction { prepare(signer: auth(Capabilities) &Account) { let adminCap = signer.capabilities.storage.issue<&FlowClusterQC.Admin>(FlowClusterQC.AdminStoragePath) - signer.capabilities.publish(adminCap, at: /public/voterCreator) + signer.capabilities.issue(adminCap, at: /public/voterCreator) } } diff --git a/transactions/quorumCertificate/create_voter.cdc b/transactions/quorumCertificate/create_voter.cdc index 2b831b68e..4c16c9cb7 100644 --- a/transactions/quorumCertificate/create_voter.cdc +++ b/transactions/quorumCertificate/create_voter.cdc @@ -1,4 +1,4 @@ -import FlowClusterQC from "FlowClusterQC" +import FlowClusterQC from 0xQCADDRESS // Test Transaction for a node to request a QC Voter Object from the contract // Will be updated to use the epoch contract when that is completed @@ -17,8 +17,8 @@ transaction(adminAddress: Address, nodeID: String, stakingKey: String) { // Get the admin reference from the admin account let admin = getAccount(adminAddress) - let adminRef = admin.capabilities.borrow<&FlowClusterQC.Admin>(/public/voterCreator) - ?? panic("Could not borrow a reference to the admin") + let adminRef = admin.capabilities.get<&FlowClusterQC.Admin>(/public/voterCreator)! + .borrow() ?? panic("Could not borrow a reference to the admin") // Create a voter object and save it to storage let voter <- adminRef.createVoter(nodeID: nodeID, stakingKey: stakingKey) diff --git a/transactions/stakingCollection/close_stake.cdc b/transactions/stakingCollection/close_stake.cdc index cf59d01e8..0950a7b23 100644 --- a/transactions/stakingCollection/close_stake.cdc +++ b/transactions/stakingCollection/close_stake.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from "FlowStakingCollection" +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS // Closes out a staking object in the staking collection // This does not remove the record from the identity table, @@ -6,11 +6,11 @@ import FlowStakingCollection from "FlowStakingCollection" transaction(nodeID: String, delegatorID: UInt32?) { - let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection + let stakingCollectionRef: &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") + self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + ?? panic("Could not borrow ref to StakingCollection") } execute { diff --git a/transactions/stakingCollection/create_machine_account.cdc b/transactions/stakingCollection/create_machine_account.cdc index 6a496bad9..125f58008 100644 --- a/transactions/stakingCollection/create_machine_account.cdc +++ b/transactions/stakingCollection/create_machine_account.cdc @@ -1,32 +1,24 @@ import Crypto -import FlowStakingCollection from "FlowStakingCollection" +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS /// Creates a machine account for a node that is already in the staking collection /// and adds public keys to the new account -transaction(nodeID: String, - machineAccountKey: String, - machineAccountKeySignatureAlgorithm: UInt8, - machineAccountKeyHashAlgorithm: UInt8) { +transaction(nodeID: String, publicKeys: [Crypto.KeyListEntry]) { - let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection + let stakingCollectionRef: &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") + self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + ?? panic("Could not borrow ref to StakingCollection") if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) { - let sigAlgo = SignatureAlgorithm(rawValue: machineAccountKeySignatureAlgorithm) - ?? panic("Could not get a signature algorithm from the raw enum value provided") - - let hashAlgo = HashAlgorithm(rawValue: machineAccountKeyHashAlgorithm) - ?? panic("Could not get a hash algorithm from the raw enum value provided") - - let publicKey = PublicKey( - publicKey: machineAccountKey.decodeHex(), - signatureAlgorithm: sigAlgo - ) - machineAccount.keys.add(publicKey: publicKey, hashAlgorithm: hashAlgo, weight: 1000.0) + if publicKeys == nil || publicKeys!.length == 0 { + panic("Cannot provide zero keys for the machine account") + } + for key in publicKeys { + machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight) + } } else { panic("Could not create a machine account for the node") } diff --git a/transactions/stakingCollection/create_new_tokenholder_acct.cdc b/transactions/stakingCollection/create_new_tokenholder_acct.cdc index 2e04af560..77284cc6c 100644 --- a/transactions/stakingCollection/create_new_tokenholder_acct.cdc +++ b/transactions/stakingCollection/create_new_tokenholder_acct.cdc @@ -12,52 +12,69 @@ import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS // or revoke all keys from that account transaction(publicKeys: [Crypto.KeyListEntry]) { - prepare(signer: AuthAccount) { + prepare(signer: auth(BorrowValue) &Account) { - // Create the new account and add public keys - let newAccount = AuthAccount(payer: signer) + // Create the new account and add public keys. + let newAccount = Account(payer: signer) for key in publicKeys { newAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight) } - // Get the TokenManager Capability from the locked account - let tokenManagerCapability = signer - .getCapability<&LockedTokens.LockedTokenManager>( - LockedTokens.LockedTokenManagerPrivatePath) + // Get the TokenManager Capability from the locked account. + let tokenManagerCapability = signer.capabilities.get<&LockedTokens.LockedTokenManager>( + LockedTokens.LockedTokenManagerPrivatePath + )! - // Use the manager capability to create a new TokenHolder + // Use the manager capability to create a new TokenHolder. let tokenHolder <- LockedTokens.createTokenHolder( lockedAddress: signer.address, tokenManager: tokenManagerCapability ) - // Save the TokenHolder resource to the new account and create a public capability - newAccount.save( + // Save the TokenHolder resource to the new account and create a public capability. + newAccount.storage.save( <-tokenHolder, to: LockedTokens.TokenHolderStoragePath, ) - newAccount.link<&LockedTokens.TokenHolder{LockedTokens.LockedAccountInfo}>( - LockedTokens.LockedAccountInfoPublicPath, - target: LockedTokens.TokenHolderStoragePath + let tokenHolderCap = newAccount.capabilities.storage.issue<&LockedTokens.TokenHolder{LockedTokens.LockedAccountInfo}>(LockedTokens.TokenHolderStoragePath) + newAccount.capabilities.publish( + tokenHolderCap + at: LockedTokens.LockedAccountInfoPublicPath, ) - // Create private capabilities for the token holder and unlocked vault - let lockedHolder = newAccount.link<&LockedTokens.TokenHolder>(/private/flowTokenHolder, target: LockedTokens.TokenHolderStoragePath)! - let flowToken = newAccount.link<&FlowToken.Vault>(/private/flowTokenVault, target: /storage/flowTokenVault)! + // Create capabilities for the token holder and unlocked vault. + let lockedHolder = newAccount.capabilities.storage.issue<&LockedTokens.TokenHolder>(LockedTokens.TokenHolderStoragePath)! + let flowToken = newAccount.capabilities.storage.issue<&FlowToken.Vault>(/storage/flowTokenVault)! - // Create a new Staking Collection and put it in storage + // Create a new Staking Collection and put it in storage. if lockedHolder.check() { - newAccount.save(<-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: lockedHolder), to: FlowStakingCollection.StakingCollectionStoragePath) + newAccount.storage.save( + <- FlowStakingCollection.createStakingCollection( + unlockedVault: flowToken, + tokenHolder: lockedHolder + ), + to: FlowStakingCollection.StakingCollectionStoragePath + ) } else { - newAccount.save(<-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: nil), to: FlowStakingCollection.StakingCollectionStoragePath) + newAccount.storage.save( + <- FlowStakingCollection.createStakingCollection( + unlockedVault: flowToken, + tokenHolder: nil + ), + to: FlowStakingCollection.StakingCollectionStoragePath + ) } - // Create a public link to the staking collection - newAccount.link<&FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}>( - FlowStakingCollection.StakingCollectionPublicPath, + // Publish a capability to the created staking collection. + let stakingCollectionCap = newAccount.capabilities.storage.issue<&FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}>( target: FlowStakingCollection.StakingCollectionStoragePath ) + + newAccount.capabilities.publish( + stakingCollectionCap + at: FlowStakingCollection.StakingCollectionPublicPath + ) } } \ No newline at end of file diff --git a/transactions/stakingCollection/register_delegator.cdc b/transactions/stakingCollection/register_delegator.cdc index dadfb4a7b..09bcafdb5 100644 --- a/transactions/stakingCollection/register_delegator.cdc +++ b/transactions/stakingCollection/register_delegator.cdc @@ -1,15 +1,15 @@ -import FlowStakingCollection from "FlowStakingCollection" +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS /// Registers a delegator in the staking collection resource /// for the specified nodeID and the amount of tokens to commit transaction(id: String, amount: UFix64) { - let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection + let stakingCollectionRef: &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") + self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + ?? panic("Could not borrow ref to StakingCollection") } execute { diff --git a/transactions/stakingCollection/register_multiple_delegators.cdc b/transactions/stakingCollection/register_multiple_delegators.cdc index 2bc56dd43..bf4df7de7 100644 --- a/transactions/stakingCollection/register_multiple_delegators.cdc +++ b/transactions/stakingCollection/register_multiple_delegators.cdc @@ -1,14 +1,14 @@ -import FlowStakingCollection from "FlowStakingCollection" +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS /// Registers multiple delegators in the staking collection resource /// for the specified nodeIDs and amount of tokens to commit transaction(ids: [String], amounts: [UFix64]) { - let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection + let stakingCollectionRef: &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) + self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow ref to StakingCollection") } diff --git a/transactions/stakingCollection/register_multiple_nodes.cdc b/transactions/stakingCollection/register_multiple_nodes.cdc index 5a2aa1fea..b737935f0 100644 --- a/transactions/stakingCollection/register_multiple_nodes.cdc +++ b/transactions/stakingCollection/register_multiple_nodes.cdc @@ -1,5 +1,5 @@ import Crypto -import FlowStakingCollection from "FlowStakingCollection" +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS /// Registers multiple nodes in the staking collection resource /// for the specified node information @@ -12,10 +12,10 @@ transaction(ids: [String], amounts: [UFix64], publicKeys: [[Crypto.KeyListEntry]?]) { - let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection + let stakingCollectionRef: &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) + self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow ref to StakingCollection") var i = 0 diff --git a/transactions/stakingCollection/register_node.cdc b/transactions/stakingCollection/register_node.cdc index f27183574..08b4a9285 100644 --- a/transactions/stakingCollection/register_node.cdc +++ b/transactions/stakingCollection/register_node.cdc @@ -1,5 +1,5 @@ import Crypto -import FlowStakingCollection from "FlowStakingCollection" +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS /// Registers a delegator in the staking collection resource /// for the specified node information and the amount of tokens to commit @@ -10,15 +10,13 @@ transaction(id: String, networkingKey: String, stakingKey: String, amount: UFix64, - machineAccountKey: String, - machineAccountKeySignatureAlgorithm: UInt8, - machineAccountKeyHashAlgorithm: UInt8) { - - let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection + publicKeys: [Crypto.KeyListEntry]?) { + + let stakingCollectionRef: &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") + self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + ?? panic("Could not borrow ref to StakingCollection") if let machineAccount = self.stakingCollectionRef.registerNode( id: id, @@ -27,19 +25,14 @@ transaction(id: String, networkingKey: networkingKey, stakingKey: stakingKey, amount: amount, - payer: account - ) { - let sigAlgo = SignatureAlgorithm(rawValue: machineAccountKeySignatureAlgorithm) - ?? panic("Could not get a signature algorithm from the raw enum value provided") - - let hashAlgo = HashAlgorithm(rawValue: machineAccountKeyHashAlgorithm) - ?? panic("Could not get a hash algorithm from the raw enum value provided") - - let publicKey = PublicKey( - publicKey: machineAccountKey.decodeHex(), - signatureAlgorithm: sigAlgo - ) - machineAccount.keys.add(publicKey: publicKey, hashAlgorithm: hashAlgo, weight: 1000.0) + payer: account) + { + if publicKeys == nil || publicKeys!.length == 0 { + panic("Cannot provide zero keys for the machine account") + } + for key in publicKeys! { + machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight) + } } } } diff --git a/transactions/stakingCollection/request_unstaking.cdc b/transactions/stakingCollection/request_unstaking.cdc index cbd64e912..f86de4dca 100644 --- a/transactions/stakingCollection/request_unstaking.cdc +++ b/transactions/stakingCollection/request_unstaking.cdc @@ -1,14 +1,14 @@ -import FlowStakingCollection from "FlowStakingCollection" +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS /// Requests unstaking for the specified node or delegator in the staking collection transaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) { - let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection + let stakingCollectionRef: &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") + self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + ?? panic("Could not borrow ref to StakingCollection") } execute { diff --git a/transactions/stakingCollection/restake_all_stakers.cdc b/transactions/stakingCollection/restake_all_stakers.cdc index f10cff90e..28e02ab56 100644 --- a/transactions/stakingCollection/restake_all_stakers.cdc +++ b/transactions/stakingCollection/restake_all_stakers.cdc @@ -7,8 +7,8 @@ transaction { let stakingCollectionRef: &FlowStakingCollection.StakingCollection - prepare(account: AuthAccount) { - self.stakingCollectionRef = account.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + prepare(account: auth(BorrowValue) &Account) { + self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow ref to StakingCollection") } diff --git a/transactions/stakingCollection/setup_staking_collection.cdc b/transactions/stakingCollection/setup_staking_collection.cdc index 2a166230a..f1590f795 100644 --- a/transactions/stakingCollection/setup_staking_collection.cdc +++ b/transactions/stakingCollection/setup_staking_collection.cdc @@ -9,42 +9,58 @@ import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS /// or staking objects stored in the unlocked account transaction { - prepare(signer: AuthAccount) { + prepare(signer: auth(BorrowValue) &Account) { // If there isn't already a staking collection - if signer.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) == nil { + if signer.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) == nil { // Create private capabilities for the token holder and unlocked vault - let lockedHolder = signer.link<&LockedTokens.TokenHolder>(/private/flowTokenHolder, target: LockedTokens.TokenHolderStoragePath)! - let flowToken = signer.link<&FlowToken.Vault>(/private/flowTokenVault, target: /storage/flowTokenVault)! - + let lockedHolder = signer.capabilities.storage.issue<&LockedTokens.TokenHolder>(target: LockedTokens.TokenHolderStoragePath)! + let flowToken = signer.capabilities.storage.issue<&FlowToken.Vault>(target: /storage/flowTokenVault)! + // Create a new Staking Collection and put it in storage if lockedHolder.check() { - signer.save(<-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: lockedHolder), to: FlowStakingCollection.StakingCollectionStoragePath) + newAccount.storage.save( + <- FlowStakingCollection.createStakingCollection( + unlockedVault: flowToken, + tokenHolder: lockedHolder + ), + to: FlowStakingCollection.StakingCollectionStoragePath + ) } else { - signer.save(<-FlowStakingCollection.createStakingCollection(unlockedVault: flowToken, tokenHolder: nil), to: FlowStakingCollection.StakingCollectionStoragePath) + newAccount.storage.save( + <- FlowStakingCollection.createStakingCollection( + unlockedVault: flowToken, + tokenHolder: nil + ), + to: FlowStakingCollection.StakingCollectionStoragePath + ) } - // Create a public link to the staking collection - signer.link<&FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}>( - FlowStakingCollection.StakingCollectionPublicPath, + // Publish a capability to the created staking collection. + let stakingCollectionCap = newAccount.capabilities.storage.issue<&FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}>( target: FlowStakingCollection.StakingCollectionStoragePath ) + + newAccount.capabilities.publish( + stakingCollectionCap + at: FlowStakingCollection.StakingCollectionPublicPath + ) } // borrow a reference to the staking collection - let collectionRef = signer.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + let collectionRef = signer.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow staking collection reference") // If there is a node staker object in the account, put it in the staking collection - if signer.borrow<&FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath) != nil { - let node <- signer.load<@FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath)! + if signer.storage.borrow<&FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath) != nil { + let node <- signer.storage.load<@FlowIDTableStaking.NodeStaker>(from: FlowIDTableStaking.NodeStakerStoragePath)! collectionRef.addNodeObject(<-node, machineAccountInfo: nil) } // If there is a delegator object in the account, put it in the staking collection - if signer.borrow<&FlowIDTableStaking.NodeDelegator>(from: FlowIDTableStaking.DelegatorStoragePath) != nil { - let delegator <- signer.load<@FlowIDTableStaking.NodeDelegator>(from: FlowIDTableStaking.DelegatorStoragePath)! + if signer.storage.borrow<&FlowIDTableStaking.NodeDelegator>(from: FlowIDTableStaking.DelegatorStoragePath) != nil { + let delegator <- signer.storage.load<@FlowIDTableStaking.NodeDelegator>(from: FlowIDTableStaking.DelegatorStoragePath)! collectionRef.addDelegatorObject(<-delegator) } } diff --git a/transactions/stakingCollection/stake_new_tokens.cdc b/transactions/stakingCollection/stake_new_tokens.cdc index 26418d342..1d55bf0e8 100644 --- a/transactions/stakingCollection/stake_new_tokens.cdc +++ b/transactions/stakingCollection/stake_new_tokens.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from "FlowStakingCollection" +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS /// Commits new tokens to stake for the specified node or delegator in the staking collection /// The tokens from the locked vault are used first, if it exists @@ -6,11 +6,11 @@ import FlowStakingCollection from "FlowStakingCollection" transaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) { - let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection + let stakingCollectionRef: &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") + self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + ?? panic("Could not borrow ref to StakingCollection") } execute { diff --git a/transactions/stakingCollection/stake_rewarded_tokens.cdc b/transactions/stakingCollection/stake_rewarded_tokens.cdc index 30ec0a3ab..d463c94d5 100644 --- a/transactions/stakingCollection/stake_rewarded_tokens.cdc +++ b/transactions/stakingCollection/stake_rewarded_tokens.cdc @@ -1,14 +1,14 @@ -import FlowStakingCollection from "FlowStakingCollection" +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS /// Commits rewarded tokens to stake for the specified node or delegator in the staking collection transaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) { - let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection + let stakingCollectionRef: &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") + self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + ?? panic("Could not borrow ref to StakingCollection") } execute { diff --git a/transactions/stakingCollection/stake_unstaked_tokens.cdc b/transactions/stakingCollection/stake_unstaked_tokens.cdc index 764b5bdea..51fe6a5f4 100644 --- a/transactions/stakingCollection/stake_unstaked_tokens.cdc +++ b/transactions/stakingCollection/stake_unstaked_tokens.cdc @@ -1,14 +1,14 @@ -import FlowStakingCollection from "FlowStakingCollection" +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS /// Commits unstaked tokens to stake for the specified node or delegator in the staking collection transaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) { - let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection + let stakingCollectionRef: &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") + self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + ?? panic("Could not borrow ref to StakingCollection") } execute { diff --git a/transactions/stakingCollection/test/deposit_tokens.cdc b/transactions/stakingCollection/test/deposit_tokens.cdc index 20c3390f7..3560d0cc5 100644 --- a/transactions/stakingCollection/test/deposit_tokens.cdc +++ b/transactions/stakingCollection/test/deposit_tokens.cdc @@ -7,12 +7,12 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(amount: UFix64) { - prepare(signer: AuthAccount) { + prepare(signer: auth(BorrowValue) &Account) { - let collectionRef = signer.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + let collectionRef = signer.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow a reference to the staking collection") - let flowTokenRef = signer.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) + let flowTokenRef = signer.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") let tokens <- collectionRef.getTokens(amount: amount) diff --git a/transactions/stakingCollection/test/get_tokens.cdc b/transactions/stakingCollection/test/get_tokens.cdc index 0b16411d0..953c24080 100644 --- a/transactions/stakingCollection/test/get_tokens.cdc +++ b/transactions/stakingCollection/test/get_tokens.cdc @@ -7,9 +7,9 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(amount: UFix64) { - prepare(signer: AuthAccount) { + prepare(signer: auth(BorrowValue) &Account) { - let collectionRef = signer.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + let collectionRef = signer.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow a reference to the staking collection") let tokens <- collectionRef.getTokens(amount: amount) diff --git a/transactions/stakingCollection/transfer_delegator.cdc b/transactions/stakingCollection/transfer_delegator.cdc index f83d3a2ff..f75695531 100644 --- a/transactions/stakingCollection/transfer_delegator.cdc +++ b/transactions/stakingCollection/transfer_delegator.cdc @@ -1,12 +1,12 @@ -import FlowStakingCollection from "FlowStakingCollection" +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS -// Transfers a NodeDelegator object from an authorizers account +// Transfers a NodeDelegator object from an authorizers accoount // and adds the NodeDelegator to another accounts Staking Collection // identified by the to Address. transaction(nodeID: String, delegatorID: UInt32, to: Address) { - let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection - let toStakingCollectionCap: &FlowStakingCollection.StakingCollection + let fromStakingCollectionRef: &FlowStakingCollection.StakingCollection + let toStakingCollectionCap: &FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic} prepare(account: auth(BorrowValue) &Account) { // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator. @@ -15,16 +15,17 @@ transaction(nodeID: String, delegatorID: UInt32, to: Address) { } // Get a reference to the authorizers StakingCollection - self.fromStakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") + self.fromStakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + ?? panic("Could not borrow ref to StakingCollection") // Get the PublicAccount of the account to transfer the NodeDelegator to. let toAccount = getAccount(to) // Borrow a capability to the public methods available on the receivers StakingCollection. self.toStakingCollectionCap = toAccount.capabilities - .borrow<&FlowStakingCollection.StakingCollection>(FlowStakingCollection.StakingCollectionPublicPath) - ?? panic("Could not borrow a referamce to a StakingCollection in the receiver's account") + .get<&FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}>(FlowStakingCollection.StakingCollectionPublicPath)! + .borrow() + ?? panic("Could not borrow ref to StakingCollection") } execute { diff --git a/transactions/stakingCollection/transfer_node.cdc b/transactions/stakingCollection/transfer_node.cdc index bc7b4c7a4..89be4bf6a 100644 --- a/transactions/stakingCollection/transfer_node.cdc +++ b/transactions/stakingCollection/transfer_node.cdc @@ -1,12 +1,12 @@ -import FlowStakingCollection from "FlowStakingCollection" +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS -// Transfers a NodeStaker object from an authorizers account +// Transfers a NodeStaker object from an authorizers accoount // and adds the NodeStaker to another accounts Staking Collection // identified by the to Address. transaction(nodeID: String, to: Address) { - let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection - let toStakingCollectionCap: &FlowStakingCollection.StakingCollection + let fromStakingCollectionRef: &FlowStakingCollection.StakingCollection + let toStakingCollectionCap: &FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic} prepare(account: auth(BorrowValue) &Account) { // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker. @@ -15,16 +15,17 @@ transaction(nodeID: String, to: Address) { } // Get a reference to the authorizers StakingCollection - self.fromStakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") + self.fromStakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + ?? panic("Could not borrow ref to StakingCollection") // Get the PublicAccount of the account to transfer the NodeStaker to. let toAccount = getAccount(to) // Borrow a capability to the public methods available on the receivers StakingCollection. self.toStakingCollectionCap = toAccount.capabilities - .borrow<&FlowStakingCollection.StakingCollection>(FlowStakingCollection.StakingCollectionPublicPath) - ?? panic("Could not borrow a reference to a StakingCollection in the receiver's account") + .get<&FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}>(FlowStakingCollection.StakingCollectionPublicPath)! + .borrow() + ?? panic("Could not borrow ref to StakingCollection") let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID] ?? panic("Could not get machine account info for the specified node ID") diff --git a/transactions/stakingCollection/unstake_all.cdc b/transactions/stakingCollection/unstake_all.cdc index 98fee5ed2..0ca7f136b 100644 --- a/transactions/stakingCollection/unstake_all.cdc +++ b/transactions/stakingCollection/unstake_all.cdc @@ -1,14 +1,14 @@ -import FlowStakingCollection from "FlowStakingCollection" +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS /// Requests to unstake ALL tokens for the specified node or delegator in the staking collection transaction(nodeID: String) { - let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection + let stakingCollectionRef: &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") + self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + ?? panic("Could not borrow ref to StakingCollection") } execute { diff --git a/transactions/stakingCollection/update_networking_address.cdc b/transactions/stakingCollection/update_networking_address.cdc index 494a8fc44..50f8d1d92 100644 --- a/transactions/stakingCollection/update_networking_address.cdc +++ b/transactions/stakingCollection/update_networking_address.cdc @@ -1,14 +1,14 @@ -import FlowStakingCollection from "FlowStakingCollection" +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS /// Changes the networking address for the specified node transaction(nodeID: String, newAddress: String) { - let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection + let stakingCollectionRef: &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") + self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + ?? panic("Could not borrow ref to StakingCollection") } execute { diff --git a/transactions/stakingCollection/withdraw_from_machine_account.cdc b/transactions/stakingCollection/withdraw_from_machine_account.cdc index 01f7538d5..c4c62b304 100644 --- a/transactions/stakingCollection/withdraw_from_machine_account.cdc +++ b/transactions/stakingCollection/withdraw_from_machine_account.cdc @@ -1,15 +1,15 @@ -import FlowStakingCollection from "FlowStakingCollection" +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS /// Request to withdraw tokens from the machine account /// The tokens are automatically deposited to the unlocked account vault transaction(nodeID: String, amount: UFix64) { - let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection + let stakingCollectionRef: &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") + self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + ?? panic("Could not borrow ref to StakingCollection") } execute { diff --git a/transactions/stakingCollection/withdraw_rewarded_tokens.cdc b/transactions/stakingCollection/withdraw_rewarded_tokens.cdc index f4da578ee..d9ec647d9 100644 --- a/transactions/stakingCollection/withdraw_rewarded_tokens.cdc +++ b/transactions/stakingCollection/withdraw_rewarded_tokens.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from "FlowStakingCollection" +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS /// Request to withdraw rewarded tokens for the specified node or delegator in the staking collection /// The tokens are automatically deposited to the unlocked account vault first, @@ -6,11 +6,11 @@ import FlowStakingCollection from "FlowStakingCollection" transaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) { - let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection + let stakingCollectionRef: &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") + self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + ?? panic("Could not borrow ref to StakingCollection") } execute { diff --git a/transactions/stakingCollection/withdraw_unstaked_tokens.cdc b/transactions/stakingCollection/withdraw_unstaked_tokens.cdc index 2c5d2093d..a1427a64b 100644 --- a/transactions/stakingCollection/withdraw_unstaked_tokens.cdc +++ b/transactions/stakingCollection/withdraw_unstaked_tokens.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from "FlowStakingCollection" +import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS /// Request to withdraw unstaked tokens for the specified node or delegator in the staking collection /// The tokens are automatically deposited to the unlocked account vault first, @@ -6,11 +6,11 @@ import FlowStakingCollection from "FlowStakingCollection" transaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) { - let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection + let stakingCollectionRef: &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") + self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + ?? panic("Could not borrow ref to StakingCollection") } execute { diff --git a/transactions/stakingProxy/get_node_info.cdc b/transactions/stakingProxy/get_node_info.cdc index 572ef0949..50f0b70d8 100644 --- a/transactions/stakingProxy/get_node_info.cdc +++ b/transactions/stakingProxy/get_node_info.cdc @@ -1,11 +1,13 @@ -import StakingProxy from "StakingProxy" +import StakingProxy from 0xSTAKINGPROXYADDRESS access(all) fun main(account: Address, nodeID: String): StakingProxy.NodeInfo { - let proxyRef = getAccount(account) - .capabilities.borrow<&StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}>( + let proxyCapability = getAccount(account) + .capabilities.get<&StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}>( StakingProxy.NodeOperatorCapabilityPublicPath - ) + )! + + let proxyRef = proxyCapability.borrow() ?? panic("Could not borrow public reference to staking proxy") return proxyRef.getNodeInfo(nodeID: nodeID)! diff --git a/transactions/stakingProxy/register_node.cdc b/transactions/stakingProxy/register_node.cdc index 0bc9029d4..1976bda66 100644 --- a/transactions/stakingProxy/register_node.cdc +++ b/transactions/stakingProxy/register_node.cdc @@ -1,20 +1,19 @@ -import LockedTokens from "LockedTokens" -import StakingProxy from "StakingProxy" +import LockedTokens from 0xLOCKEDTOKENADDRESS +import StakingProxy from 0xSTAKINGPROXYADDRESS transaction(address: Address, id: String, amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations) &LockedTokens.TokenHolder + let holderRef: &LockedTokens.TokenHolder prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") } execute { - let nodeOperatorRef = getAccount(address).capabilities - .borrow<&StakingProxy.NodeStakerProxyHolder>( - StakingProxy.NodeOperatorCapabilityPublicPath - ) + let nodeOperatorRef = getAccount(address).capabilities.get + <&StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}> + (StakingProxy.NodeOperatorCapabilityPublicPath)!.borrow() ?? panic("Could not borrow node operator public capability") let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id) diff --git a/transactions/stakingProxy/setup_node_account.cdc b/transactions/stakingProxy/setup_node_account.cdc index fc1f3aba4..29505375e 100644 --- a/transactions/stakingProxy/setup_node_account.cdc +++ b/transactions/stakingProxy/setup_node_account.cdc @@ -1,19 +1,19 @@ -import StakingProxy from "StakingProxy" +import StakingProxy from 0xSTAKINGPROXYADDRESS transaction() { - prepare(nodeOperator: auth(SaveValue, Capabilities) &Account) { + prepare(nodeOperator: auth(SaveValue) &Account) { let proxyHolder <- StakingProxy.createProxyHolder() nodeOperator.storage.save(<-proxyHolder, to: StakingProxy.NodeOperatorCapabilityStoragePath) - let nodeOperatorCap = nodeOperator.capabilities.storage.issue<&StakingProxy.NodeStakerProxyHolder>( + let nodeOperatorCap = nodeOperator.capabilities.storage.issue<&StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}>( StakingProxy.NodeOperatorCapabilityStoragePath ) nodeOperator.capabilities.publish( - nodeOperatorCap, - at: StakingProxy.NodeOperatorCapabilityPublicPath + StakingProxy.NodeOperatorCapabilityPublicPath, + at: StakingProxy.NodeOperatorCapabilityStoragePath ) } } From 640129537e56f48cbf9f7f39539a586ddb7cfa10 Mon Sep 17 00:00:00 2001 From: Supun Setunga Date: Thu, 14 Sep 2023 08:39:13 -0700 Subject: [PATCH 045/160] Fix typo --- transactions/epoch/admin/update_clusters.cdc | 2 +- transactions/epoch/admin/update_dkg_phase_views.cdc | 2 +- transactions/epoch/admin/update_epoch_config.cdc | 2 +- transactions/epoch/admin/update_epoch_views.cdc | 2 +- transactions/epoch/admin/update_reward.cdc | 2 +- transactions/epoch/admin/update_staking_views.cdc | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/transactions/epoch/admin/update_clusters.cdc b/transactions/epoch/admin/update_clusters.cdc index c74e02686..29e4af4d6 100644 --- a/transactions/epoch/admin/update_clusters.cdc +++ b/transactions/epoch/admin/update_clusters.cdc @@ -1,7 +1,7 @@ import FlowEpoch from 0xEPOCHADDRESS transaction(newNumClusters: UInt16) { - prepare(signer: storage.) { + prepare(signer: auth(BorrowValue) &Account) { let epochAdmin = signer.storage.borrow<&FlowEpoch.Admin>(from: FlowEpoch.adminStoragePath) ?? panic("Could not borrow admin from storage path") diff --git a/transactions/epoch/admin/update_dkg_phase_views.cdc b/transactions/epoch/admin/update_dkg_phase_views.cdc index 382514e9f..69e06b3dd 100644 --- a/transactions/epoch/admin/update_dkg_phase_views.cdc +++ b/transactions/epoch/admin/update_dkg_phase_views.cdc @@ -1,7 +1,7 @@ import FlowEpoch from 0xEPOCHADDRESS transaction(newPhaseViews: UInt64) { - prepare(signer: storage.) { + prepare(signer: auth(BorrowValue) &Account) { let epochAdmin = signer.storage.borrow<&FlowEpoch.Admin>(from: FlowEpoch.adminStoragePath) ?? panic("Could not borrow admin from storage path") diff --git a/transactions/epoch/admin/update_epoch_config.cdc b/transactions/epoch/admin/update_epoch_config.cdc index f97283438..a063ccf68 100644 --- a/transactions/epoch/admin/update_epoch_config.cdc +++ b/transactions/epoch/admin/update_epoch_config.cdc @@ -1,7 +1,7 @@ import FlowEpoch from 0xEPOCHADDRESS transaction(dkgPhaseLen: UInt64, stakingLen: UInt64, epochLen: UInt64) { - prepare(signer: storage.) { + prepare(signer: auth(BorrowValue) &Account) { let epochAdmin = signer.storage.borrow<&FlowEpoch.Admin>(from: FlowEpoch.adminStoragePath) ?? panic("Could not borrow admin from storage path") diff --git a/transactions/epoch/admin/update_epoch_views.cdc b/transactions/epoch/admin/update_epoch_views.cdc index eed2aef35..3ee2a8bb3 100644 --- a/transactions/epoch/admin/update_epoch_views.cdc +++ b/transactions/epoch/admin/update_epoch_views.cdc @@ -1,7 +1,7 @@ import FlowEpoch from 0xEPOCHADDRESS transaction(newAuctionViews: UInt64) { - prepare(signer: storage.) { + prepare(signer: auth(BorrowValue) &Account) { let epochAdmin = signer.storage.borrow<&FlowEpoch.Admin>(from: FlowEpoch.adminStoragePath) ?? panic("Could not borrow admin from storage path") diff --git a/transactions/epoch/admin/update_reward.cdc b/transactions/epoch/admin/update_reward.cdc index 519005590..bc433c899 100644 --- a/transactions/epoch/admin/update_reward.cdc +++ b/transactions/epoch/admin/update_reward.cdc @@ -1,7 +1,7 @@ import FlowEpoch from 0xEPOCHADDRESS transaction(newRewardAPY: UFix64) { - prepare(signer: storage.) { + prepare(signer: auth(BorrowValue) &Account) { let epochAdmin = signer.storage.borrow<&FlowEpoch.Admin>(from: FlowEpoch.adminStoragePath) ?? panic("Could not borrow admin from storage path") diff --git a/transactions/epoch/admin/update_staking_views.cdc b/transactions/epoch/admin/update_staking_views.cdc index efb3d4fa3..2e8c60447 100644 --- a/transactions/epoch/admin/update_staking_views.cdc +++ b/transactions/epoch/admin/update_staking_views.cdc @@ -1,7 +1,7 @@ import FlowEpoch from 0xEPOCHADDRESS transaction(newStakingViews: UInt64) { - prepare(signer: storage.) { + prepare(signer: auth(BorrowValue) &Account) { let epochAdmin = signer.storage.borrow<&FlowEpoch.Admin>(from: FlowEpoch.adminStoragePath) ?? panic("Could not borrow admin from storage path") From 370407f832cd5d5bf138b6fd3d7fdd456e9a77be Mon Sep 17 00:00:00 2001 From: Supun Setunga Date: Thu, 14 Sep 2023 13:25:48 -0700 Subject: [PATCH 046/160] Replace get()+borrow() with borrow() --- contracts/FlowServiceAccount.cdc | 6 +- contracts/FlowStorageFees.cdc | 26 +-- lib/go/templates/internal/assets/assets.go | 192 +++++++++--------- lib/go/templates/manifest.mainnet.json | 12 +- lib/go/templates/manifest.testnet.json | 12 +- transactions/dkg/create_participant.cdc | 4 +- transactions/flowToken/mint_tokens.cdc | 3 +- .../flowToken/scripts/get_balance.cdc | 3 +- transactions/flowToken/transfer_tokens.cdc | 3 +- .../get_delegator_info_from_address.cdc | 3 +- .../scripts/get_node_info_from_address.cdc | 3 +- .../admin/admin_deposit_account_creator.cdc | 5 +- .../admin/check_main_registration.cdc | 3 +- .../admin/deposit_locked_tokens.cdc | 5 +- .../admin/get_unlocking_bad_accounts.cdc | 2 +- .../unlock_tokens_for_multiple_accounts.cdc | 3 +- .../delegator/get_delegator_id.cdc | 5 +- .../delegator/get_delegator_info.cdc | 16 +- .../delegator/get_delegator_node_id.cdc | 5 +- .../lockedTokens/staker/get_node_id.cdc | 5 +- .../lockedTokens/staker/get_staker_info.cdc | 16 +- .../user/get_locked_account_address.cdc | 5 +- .../user/get_locked_account_balance.cdc | 5 +- .../user/get_multiple_unlock_limits.cdc | 5 +- .../lockedTokens/user/get_total_balance.cdc | 22 +- .../lockedTokens/user/get_unlock_limit.cdc | 5 +- .../quorumCertificate/create_voter.cdc | 4 +- .../stakingCollection/transfer_delegator.cdc | 3 +- .../stakingCollection/transfer_node.cdc | 3 +- transactions/stakingProxy/get_node_info.cdc | 8 +- transactions/stakingProxy/register_node.cdc | 7 +- 31 files changed, 185 insertions(+), 214 deletions(-) diff --git a/contracts/FlowServiceAccount.cdc b/contracts/FlowServiceAccount.cdc index 32a4e38a5..0e8befa82 100644 --- a/contracts/FlowServiceAccount.cdc +++ b/contracts/FlowServiceAccount.cdc @@ -45,10 +45,8 @@ access(all) contract FlowServiceAccount { /// Returns 0 if the account has no default balance access(all) fun defaultTokenBalance(_ acct: &Account): UFix64 { var balance = 0.0 - if let balanceCap = acct.capabilities.get<&FlowToken.Vault>(/public/flowTokenBalance) { - if let balanceRef = balanceCap.borrow() { - balance = balanceRef.getBalance() - } + if let balanceRef = acct.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { + balance = balanceRef.getBalance() } return balance diff --git a/contracts/FlowStorageFees.cdc b/contracts/FlowStorageFees.cdc index 957732039..b0c78dac7 100644 --- a/contracts/FlowStorageFees.cdc +++ b/contracts/FlowStorageFees.cdc @@ -67,10 +67,8 @@ access(all) contract FlowStorageFees { var balance = 0.0 let acct = getAccount(accountAddress) - if let balanceCap = acct.capabilities.get<&FlowToken.Vault>(/public/flowTokenBalance) { - if let balanceRef = balanceCap.borrow() { - balance = balanceRef.getBalance() - } + if let balanceRef = acct.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { + balance = balanceRef.getBalance() } return self.accountBalanceToAccountStorageCapacity(balance) @@ -96,14 +94,12 @@ access(all) contract FlowStorageFees { var balance = 0.0 let acct = getAccount(accountAddress) - if let balanceCap = acct.capabilities.get<&FlowToken.Vault>(/public/flowTokenBalance) { - if let balanceRef = balanceCap.borrow() { - if accountAddress == payer { - // if the account is the payer, deduct the maximum possible transaction fees from the balance - balance = balanceRef.getBalance().saturatingSubtract(maxTxFees) - } else { - balance = balanceRef.getBalance() - } + if let balanceRef = acct.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { + if accountAddress == payer { + // if the account is the payer, deduct the maximum possible transaction fees from the balance + balance = balanceRef.getBalance().saturatingSubtract(maxTxFees) + } else { + balance = balanceRef.getBalance() } } @@ -160,10 +156,8 @@ access(all) contract FlowStorageFees { let acct = getAccount(accountAddress) var balance = 0.0 - if let balanceCap = acct.capabilities.get<&FlowToken.Vault>(/public/flowTokenBalance) { - if let balanceRef = balanceCap.borrow() { - balance = balanceRef.getBalance() - } + if let balanceRef = acct.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { + balance = balanceRef.getBalance() } // get how much should be reserved for storage diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 2b15e9584..1aa259990 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -23,7 +23,7 @@ // dkg/admin/set_safe_threshold.cdc (444B) // dkg/admin/start_dkg.cdc (385B) // dkg/admin/stop_dkg.cdc (348B) -// dkg/create_participant.cdc (452B) +// dkg/create_participant.cdc (445B) // dkg/scripts/get_consensus_nodes.cdc (111B) // dkg/scripts/get_dkg_canonical_final_submission.cdc (106B) // dkg/scripts/get_dkg_completed.cdc (107B) @@ -46,12 +46,12 @@ // epoch/admin/reset_epoch.cdc (1.669kB) // epoch/admin/set_automatic_rewards.cdc (379B) // epoch/admin/set_bonus_tokens.cdc (624B) -// epoch/admin/update_clusters.cdc (343B) -// epoch/admin/update_dkg_phase_views.cdc (333B) -// epoch/admin/update_epoch_config.cdc (1.76kB) -// epoch/admin/update_epoch_views.cdc (334B) -// epoch/admin/update_reward.cdc (346B) -// epoch/admin/update_staking_views.cdc (336B) +// epoch/admin/update_clusters.cdc (361B) +// epoch/admin/update_dkg_phase_views.cdc (351B) +// epoch/admin/update_epoch_config.cdc (1.778kB) +// epoch/admin/update_epoch_views.cdc (352B) +// epoch/admin/update_reward.cdc (364B) +// epoch/admin/update_staking_views.cdc (354B) // epoch/node/register_dkg_participant.cdc (556B) // epoch/node/register_node.cdc (3.114kB) // epoch/node/register_qc_voter.cdc (547B) @@ -66,11 +66,11 @@ // epoch/scripts/get_randomize.cdc (128B) // flowToken/burn_tokens.cdc (1.135kB) // flowToken/create_forwarder.cdc (2.012kB) -// flowToken/mint_tokens.cdc (1.039kB) -// flowToken/scripts/get_balance.cdc (451B) +// flowToken/mint_tokens.cdc (1.019kB) +// flowToken/scripts/get_balance.cdc (435B) // flowToken/scripts/get_supply.cdc (208B) // flowToken/setup_account.cdc (1.478kB) -// flowToken/transfer_tokens.cdc (1.351kB) +// flowToken/transfer_tokens.cdc (1.331kB) // idTableStaking/admin/add_approved_and_limits.cdc (1.627kB) // idTableStaking/admin/add_approved_nodes.cdc (1.055kB) // idTableStaking/admin/capability_end_epoch.cdc (1.32kB) @@ -108,7 +108,7 @@ // idTableStaking/delegation/delegator_add_capability.cdc (869B) // idTableStaking/delegation/get_delegator_committed.cdc (321B) // idTableStaking/delegation/get_delegator_info.cdc (299B) -// idTableStaking/delegation/get_delegator_info_from_address.cdc (521B) +// idTableStaking/delegation/get_delegator_info_from_address.cdc (505B) // idTableStaking/delegation/get_delegator_request.cdc (330B) // idTableStaking/delegation/get_delegator_rewarded.cdc (319B) // idTableStaking/delegation/get_delegator_staked.cdc (315B) @@ -138,7 +138,7 @@ // idTableStaking/scripts/get_delegators_below_min.cdc (1.966kB) // idTableStaking/scripts/get_node_committed_tokens.cdc (263B) // idTableStaking/scripts/get_node_info.cdc (240B) -// idTableStaking/scripts/get_node_info_from_address.cdc (487B) +// idTableStaking/scripts/get_node_info_from_address.cdc (471B) // idTableStaking/scripts/get_node_initial_weight.cdc (251B) // idTableStaking/scripts/get_node_networking_addr.cdc (259B) // idTableStaking/scripts/get_node_networking_key.cdc (251B) @@ -164,32 +164,32 @@ // inspect_field.cdc (122B) // lockedTokens/admin/admin_create_shared_accounts.cdc (4.158kB) // lockedTokens/admin/admin_deploy_contract.cdc (454B) -// lockedTokens/admin/admin_deposit_account_creator.cdc (838B) +// lockedTokens/admin/admin_deposit_account_creator.cdc (818B) // lockedTokens/admin/admin_remove_delegator.cdc (471B) -// lockedTokens/admin/check_main_registration.cdc (975B) +// lockedTokens/admin/check_main_registration.cdc (955B) // lockedTokens/admin/check_shared_registration.cdc (639B) // lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.403kB) // lockedTokens/admin/custody_create_only_lease_account.cdc (3.288kB) // lockedTokens/admin/custody_create_only_shared_account.cdc (3.523kB) // lockedTokens/admin/custody_create_shared_accounts.cdc (3.656kB) // lockedTokens/admin/custody_setup_account_creator.cdc (803B) -// lockedTokens/admin/deposit_locked_tokens.cdc (1.708kB) -// lockedTokens/admin/get_unlocking_bad_accounts.cdc (484B) +// lockedTokens/admin/deposit_locked_tokens.cdc (1.688kB) +// lockedTokens/admin/get_unlocking_bad_accounts.cdc (477B) // lockedTokens/admin/unlock_tokens.cdc (599B) -// lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc (2.894kB) +// lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc (2.87kB) // lockedTokens/delegator/delegate_new_tokens.cdc (1.232kB) // lockedTokens/delegator/delegate_rewarded_tokens.cdc (550B) // lockedTokens/delegator/delegate_unstaked_tokens.cdc (542B) -// lockedTokens/delegator/get_delegator_id.cdc (414B) -// lockedTokens/delegator/get_delegator_info.cdc (1.446kB) -// lockedTokens/delegator/get_delegator_node_id.cdc (418B) +// lockedTokens/delegator/get_delegator_id.cdc (398B) +// lockedTokens/delegator/get_delegator_info.cdc (1.464kB) +// lockedTokens/delegator/get_delegator_node_id.cdc (402B) // lockedTokens/delegator/register_delegator.cdc (1.604kB) // lockedTokens/delegator/request_unstaking.cdc (544B) // lockedTokens/delegator/withdraw_rewarded_tokens.cdc (828B) // lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc (550B) // lockedTokens/delegator/withdraw_unstaked_tokens.cdc (550B) -// lockedTokens/staker/get_node_id.cdc (409B) -// lockedTokens/staker/get_staker_info.cdc (1.153kB) +// lockedTokens/staker/get_node_id.cdc (393B) +// lockedTokens/staker/get_staker_info.cdc (1.171kB) // lockedTokens/staker/register_node.cdc (1.584kB) // lockedTokens/staker/request_unstaking.cdc (545B) // lockedTokens/staker/stake_new_tokens.cdc (1.284kB) @@ -201,11 +201,11 @@ // lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc (551B) // lockedTokens/staker/withdraw_unstaked_tokens.cdc (551B) // lockedTokens/user/deposit_tokens.cdc (763B) -// lockedTokens/user/get_locked_account_address.cdc (423B) -// lockedTokens/user/get_locked_account_balance.cdc (422B) -// lockedTokens/user/get_multiple_unlock_limits.cdc (540B) -// lockedTokens/user/get_total_balance.cdc (2.81kB) -// lockedTokens/user/get_unlock_limit.cdc (413B) +// lockedTokens/user/get_locked_account_address.cdc (407B) +// lockedTokens/user/get_locked_account_balance.cdc (406B) +// lockedTokens/user/get_multiple_unlock_limits.cdc (520B) +// lockedTokens/user/get_total_balance.cdc (2.816kB) +// lockedTokens/user/get_unlock_limit.cdc (397B) // lockedTokens/user/withdraw_tokens.cdc (730B) // nodeVersionBeacon/admin/change_version_freeze_period.cdc (810B) // nodeVersionBeacon/admin/delete_version_boundary.cdc (835B) @@ -220,7 +220,7 @@ // quorumCertificate/admin/publish_voter.cdc (405B) // quorumCertificate/admin/start_voting.cdc (1.518kB) // quorumCertificate/admin/stop_voting.cdc (377B) -// quorumCertificate/create_voter.cdc (1.131kB) +// quorumCertificate/create_voter.cdc (1.123kB) // quorumCertificate/scripts/generate_quorum_certificate.cdc (329B) // quorumCertificate/scripts/get_cluster.cdc (192B) // quorumCertificate/scripts/get_cluster_complete.cdc (244B) @@ -261,16 +261,16 @@ // stakingCollection/stake_unstaked_tokens.cdc (724B) // stakingCollection/test/deposit_tokens.cdc (887B) // stakingCollection/test/get_tokens.cdc (693B) -// stakingCollection/transfer_delegator.cdc (2.047kB) -// stakingCollection/transfer_node.cdc (2.161kB) +// stakingCollection/transfer_delegator.cdc (2.027kB) +// stakingCollection/transfer_node.cdc (2.141kB) // stakingCollection/unstake_all.cdc (633B) // stakingCollection/update_networking_address.cdc (651B) // stakingCollection/withdraw_from_machine_account.cdc (713B) // stakingCollection/withdraw_rewarded_tokens.cdc (885B) // stakingCollection/withdraw_unstaked_tokens.cdc (900B) // stakingProxy/add_node_info.cdc (647B) -// stakingProxy/get_node_info.cdc (518B) -// stakingProxy/register_node.cdc (1.121kB) +// stakingProxy/get_node_info.cdc (468B) +// stakingProxy/register_node.cdc (1.13kB) // stakingProxy/remove_node_info.cdc (330B) // stakingProxy/remove_staking_proxy.cdc (338B) // stakingProxy/request_unstaking.cdc (500B) @@ -814,7 +814,7 @@ func dkgAdminStop_dkgCdc() (*asset, error) { return a, nil } -var _dkgCreate_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\x41\x6b\x02\x31\x10\x85\xef\xfb\x2b\xa6\x1e\x24\x0b\x1a\x7b\x5e\x6c\x65\xe9\xb6\x52\xbc\x48\x17\x7a\x1f\xb3\x63\x0c\xae\x49\x98\xcc\x6a\xa1\xf8\xdf\x8b\xee\x5a\x74\x2e\x09\x79\x79\x5f\x1e\x2f\xee\x10\x03\x0b\x7c\xb4\xe1\x54\xad\x96\xb0\xe5\x70\x80\xe7\x9f\x6a\xb5\x2c\xab\xea\xeb\xbd\xae\xb3\x4c\x18\x7d\x42\x23\x2e\x78\x85\x4d\xc3\x94\x52\x01\x65\xbf\x99\x80\x0f\x0d\x7d\x56\x05\xd4\xc2\xce\xdb\x1c\x7e\xb3\x0c\x00\x20\x32\x45\x64\x52\xc9\x59\x4f\x5c\x00\x76\xb2\x53\x35\x1e\xe9\x1b\xdb\x8e\x72\x18\x97\xc6\x84\xce\xcb\xc5\x00\xc3\xb4\x24\x80\xcd\xc1\x79\x78\x01\x4b\x32\xdc\xb8\xbd\x99\x6b\x83\x11\x37\xae\x75\xe2\x28\x69\x4b\x32\x1f\x0f\xa9\x75\x79\x71\xbd\xaa\x59\xec\x36\xad\x33\xb3\x66\x6f\xaf\x27\xf9\xd3\x3f\xfb\x32\x7a\x13\x98\xc3\x49\xe5\xb0\x58\x40\x44\xef\x8c\x1a\xbd\x85\xae\x6d\xc0\x07\x81\x5e\x1c\x02\x30\x6d\x89\xc9\x1b\x1a\xe5\xd9\x43\xbe\x66\x6f\xd7\xc8\xe2\x8c\x8b\xe8\x05\xe6\xd3\xde\xa0\x0d\x13\x0a\xdd\x49\xea\x56\x4c\xbf\xde\x61\xfa\x4a\x74\x92\xc0\x68\x49\x27\x3c\x92\x9a\x4f\x1f\xc1\x13\x90\x50\xdc\x3e\x45\xdf\x09\x75\xef\x5a\xa3\xec\xf2\x2b\xf1\x9c\x65\xe7\xbf\x00\x00\x00\xff\xff\x1d\x42\x51\x81\xc4\x01\x00\x00" +var _dkgCreate_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\x41\x8b\xea\x30\x10\x80\xef\xfd\x15\x83\x07\x49\x41\xe3\x3b\x17\xdf\x93\xf2\xfa\x9e\x2c\x5e\x64\x0b\x7b\x1f\x93\xb1\x06\x6b\x12\x26\x53\x5d\x58\xfc\xef\x8b\xa6\x2e\x3a\x97\x84\x4c\xbe\x6f\x26\x13\x77\x8a\x81\x05\xfe\xf7\xe1\xd2\x6c\xd6\xb0\xe7\x70\x82\x5f\x9f\xcd\x66\x5d\x37\xcd\xfb\xbf\xb6\x2d\x0a\x61\xf4\x09\x8d\xb8\xe0\x15\x5a\xcb\x94\x52\x05\x75\xde\xcc\xc0\x07\x4b\x6f\x4d\x05\xad\xb0\xf3\x5d\x09\x5f\x45\x01\x00\x10\x99\x22\x32\xa9\xe4\x3a\x4f\x5c\x01\x0e\x72\x50\x2d\x9e\xe9\x03\xfb\x81\x4a\x98\xd6\xc6\x84\xc1\xcb\x0d\x80\x31\x7a\x12\x40\x7b\x72\x1e\x7e\x43\x47\x32\xde\x78\xd4\x2c\xb5\xc1\x88\x3b\xd7\x3b\x71\x94\xf4\x2e\x30\x87\xcb\x72\x3a\x36\xae\xeb\x1b\xf8\x47\x2d\xe2\xb0\xeb\x9d\x59\xd8\x63\x77\x3f\x29\x7f\xec\xf7\x58\xad\x20\xa2\x77\x46\x4d\xfe\x86\xa1\xb7\xe0\x83\x40\x36\x8d\x95\x99\xf6\xc4\xe4\x0d\x4d\xca\xe2\xa5\x31\x7b\xec\xb6\xc8\xe2\x8c\x8b\xe8\x05\x96\xf3\x0c\x68\xc3\x84\x42\x4f\x29\xf5\x98\x48\x5e\x9f\x34\x79\x16\x3a\x49\x60\xec\x48\x27\x3c\x93\x5a\xce\x5f\xc5\x33\x90\x50\x3d\x7e\x43\x3f\x25\xda\x4c\x6d\x51\x0e\xf9\x4d\xd7\xa2\xb8\x7e\x07\x00\x00\xff\xff\x55\x4a\x21\x15\xbd\x01\x00\x00" func dkgCreate_participantCdcBytes() ([]byte, error) { return bindataRead( @@ -830,7 +830,7 @@ func dkgCreate_participantCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/create_participant.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xab, 0xa9, 0xdb, 0x5f, 0xf1, 0x79, 0xdb, 0x4a, 0x52, 0xb8, 0x28, 0x3d, 0x7f, 0x76, 0x23, 0xbf, 0x83, 0x93, 0xb1, 0x3d, 0x6d, 0xcd, 0xb9, 0xb6, 0xd0, 0xec, 0xa, 0xe9, 0x7d, 0x3d, 0xb5, 0x5c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2f, 0x65, 0x31, 0x8a, 0xd1, 0x16, 0x1b, 0x11, 0x22, 0x80, 0xb, 0xc8, 0x8f, 0x2, 0x22, 0xd3, 0xbc, 0xd7, 0x56, 0x70, 0xbc, 0x66, 0x61, 0x29, 0xf3, 0xd7, 0xb7, 0xb3, 0xaa, 0x3b, 0x39, 0x4}} return a, nil } @@ -1274,7 +1274,7 @@ func epochAdminSet_bonus_tokensCdc() (*asset, error) { return a, nil } -var _epochAdminUpdate_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xc1\x4a\xc4\x30\x10\x86\xef\x7d\x8a\x61\x0f\xd2\x5e\x8a\x5e\x3c\x14\x75\x59\xba\x15\xbd\xe8\x62\xf1\x01\xc6\x76\xdc\x06\xd2\x4c\x98\x4c\xa9\x20\xfb\xee\x92\xc6\xdd\xc2\xce\x31\xf9\x27\xdf\xf7\xc7\x8c\x9e\x45\xe1\xd9\xf2\xdc\x78\xee\x06\xf8\x16\x1e\xe1\xf6\xa7\x39\xbc\xd7\x2f\xbb\xfd\xfe\xa3\x69\xdb\x2c\x53\x41\x17\xb0\x53\xc3\x2e\x77\x34\xbf\x4d\x63\x6d\xa7\xa0\x24\xa1\x82\xcf\x57\xa7\x77\xf7\x05\xfc\x66\x00\x00\x5e\xc8\xa3\x50\x1e\xcc\xd1\x91\x54\x10\x94\x05\x8f\x54\xc6\xfb\x25\x10\xc7\x92\x02\x45\xda\xae\x1f\x8d\x83\x47\x48\xe9\xf2\x1c\xfe\x62\x11\x9e\x1f\x6e\x2e\x56\xe5\x12\x7c\xca\xa3\x5c\xb5\xca\x96\x18\x8f\xdb\xb4\x75\x40\x1d\x8a\x0b\x22\xce\x76\x0b\x1e\x9d\xe9\xf2\x4d\xcd\x93\xed\xc1\xb1\x42\x7a\x1a\x96\xc5\xd4\xf5\x1f\x0a\x1e\x75\xd8\x14\xab\xe4\x2a\x58\x4e\xbe\x47\xa5\xd8\x9a\xad\xa5\x4e\x59\xce\xf5\xaf\x7e\x23\xf1\x4f\xd9\xe9\x2f\x00\x00\xff\xff\xe5\x8e\x5f\xc1\x57\x01\x00\x00" +var _epochAdminUpdate_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xc1\x4a\xc3\x40\x10\x86\xef\x79\x8a\xa1\x87\x92\x5c\x82\x5e\x3c\x04\xb5\xc4\x34\xa2\x17\x2d\x06\xbd\x8f\x9b\xb1\x09\x6c\x76\x96\xc9\x2c\x11\xa4\xef\x2e\x9b\x68\x03\x9d\xe3\xb2\xdf\xfc\xdf\xfc\xfd\xe0\x59\x14\x1e\x2d\x4f\xb5\x67\xd3\xc1\x97\xf0\x00\x57\xdf\xf5\xe1\xb5\x7a\x2a\xf7\xfb\xb7\xba\x69\x92\x44\x05\xdd\x88\x46\x7b\x76\xa9\xa3\xe9\x25\x0c\x95\x0d\xa3\x92\x8c\x05\xbc\x3f\x3b\xbd\xbe\xc9\xe0\x27\x01\x00\xf0\x42\x1e\x85\xd2\xb1\x3f\x3a\x92\x02\x30\x68\x97\x3e\xb0\x08\x4f\x1f\x68\x03\x65\xb0\x2d\x8d\xe1\xe0\x34\x12\x33\x12\xc7\x92\x02\xc5\xfc\xb2\x1d\x7a\x07\x77\xb0\xf0\xf9\xa8\x2c\x78\xa4\xfc\x73\xde\x70\xbb\x3d\x7b\xe6\xf3\xc7\xfb\x34\xea\x16\xab\x7e\x8e\xf1\xb9\x59\xa8\x03\x6a\x97\x9d\x23\xe2\xec\x76\xe0\xd1\xf5\x26\xdd\x54\x1c\x6c\x0b\x8e\x15\x96\xd5\x30\x83\xcb\xf5\x7f\xa1\xe0\x51\xbb\x4d\xb6\x4a\xae\x82\x79\xf0\x2d\x2a\xc5\x1e\xd8\x5a\x32\xca\xf2\x5f\xc8\x45\x3f\x4b\xfe\x29\x39\xfd\x06\x00\x00\xff\xff\xa3\xe1\xda\x3e\x69\x01\x00\x00" func epochAdminUpdate_clustersCdcBytes() ([]byte, error) { return bindataRead( @@ -1290,11 +1290,11 @@ func epochAdminUpdate_clustersCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_clusters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0x6a, 0xa7, 0x9c, 0xe3, 0x1f, 0xbb, 0x47, 0x2d, 0x66, 0xa4, 0xcf, 0x32, 0xc0, 0x9, 0x79, 0x88, 0xbd, 0x25, 0x10, 0x92, 0x62, 0x53, 0xc1, 0x1d, 0x2, 0x4e, 0xfd, 0xc5, 0x13, 0x35, 0xb6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x30, 0x5d, 0x1c, 0xc7, 0x3b, 0xa4, 0x9b, 0x61, 0x88, 0xc0, 0x72, 0xc3, 0x5f, 0x76, 0x35, 0x4a, 0x68, 0x81, 0x77, 0x20, 0x81, 0xa4, 0x4e, 0x9b, 0xbf, 0x13, 0x24, 0x2f, 0x63, 0x1d, 0x2b, 0x3f}} return a, nil } -var _epochAdminUpdate_dkg_phase_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\xcf\x4a\xc4\x30\x10\x87\xef\x79\x8a\x61\x0f\xd2\x5e\x82\x07\xf1\x50\xd4\x65\xd9\xd6\x3f\x78\xb0\x58\xf4\x3e\xb6\xe3\x36\xd0\x66\x42\x32\x4b\x05\xd9\x77\x97\x6c\x6c\xcb\xce\x31\xf9\xcd\x7c\xdf\x8c\x19\x1d\x7b\x81\xc7\x81\xa7\xca\x71\xdb\xc3\xb7\xe7\x11\xae\x7f\xaa\xfa\x6d\xff\xbc\x2b\xcb\xf7\xaa\x69\x94\x12\x8f\x36\x60\x2b\x86\x6d\x66\x69\xaa\x7b\x0c\xf4\x69\x68\x0a\x05\x7c\xbc\x58\xb9\xbd\xc9\xe1\x57\x01\x00\x38\x4f\x0e\x3d\x65\xc1\x1c\x2c\xf9\x02\x82\xb0\xc7\x03\xe9\xf9\x3f\xd6\x40\x02\x14\x59\xbb\x6e\x34\x16\xee\x21\x85\xf5\x9c\xfd\x62\xef\x79\xba\xbb\x5a\x9c\xf4\x39\xf8\x90\x45\xb5\x62\x55\xd5\x18\x9f\x9b\xd4\x55\xa3\xf4\xf9\x82\x88\xb5\xdd\x82\x43\x6b\xda\x6c\xb3\xe7\xe3\xd0\x81\x65\x81\x34\x1a\xce\x8d\x69\xd3\x7f\x28\x38\x94\x7e\x93\xab\x65\xc2\x2a\xa8\x8f\xae\x43\xa1\xf2\xf5\x69\x5d\xfb\xf2\x08\x89\x7b\x52\xa7\xbf\x00\x00\x00\xff\xff\x6e\xfe\x1d\x5f\x4d\x01\x00\x00" +var _epochAdminUpdate_dkg_phase_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\x4f\x6b\xb4\x30\x10\xc6\xef\x7e\x8a\x61\x0f\x8b\x5e\xe4\x3d\xbc\xf4\x20\x6d\x17\xbb\xda\x3f\xf4\x50\xa9\x74\xef\x53\x9d\xae\x01\xcd\x84\x64\x82\x85\xb2\xdf\xbd\xc4\xb4\x4a\xe7\x18\xf2\x3c\xbf\xdf\x8c\x9a\x0c\x5b\x81\xfb\x91\xe7\xda\x70\x37\xc0\x87\xe5\x09\xfe\x7d\xd6\xcd\xcb\xf1\xb1\xac\xaa\xd7\xba\x6d\x93\x44\x2c\x6a\x87\x9d\x28\xd6\xa9\xa6\xb9\x19\xd0\xd1\x49\xd1\xec\x0a\x78\x7b\xd2\x72\xf5\x3f\x83\xaf\x04\x00\xc0\x58\x32\x68\x29\x75\xea\xac\xc9\x16\x80\x5e\x86\xf4\x8e\xad\xe5\xf9\x84\xa3\xa7\x0c\xf6\x65\xd7\xb1\xd7\xf2\x9b\x08\x33\x92\x00\x05\x7a\xd9\x4f\x4a\xc3\x0d\xc4\x78\xee\x84\x2d\x9e\x29\x7f\x5f\x0a\xae\xf7\xab\x65\xbe\x7c\xbc\x4d\x83\x6c\xb1\xc9\xe7\x18\x9e\xdb\x98\x6a\x50\x86\x6c\x45\x84\x39\x1c\xc0\xa0\x56\x5d\xba\x3b\xb2\x1f\x7b\xd0\x2c\x10\xab\x61\x09\xc6\xdd\x7f\xa0\x60\x50\x86\x5d\x96\xac\x0d\x9b\x60\xee\x4d\x8f\x42\xd5\xf3\xc3\x76\x88\xbf\x67\x89\xdc\x4b\x72\xf9\x0e\x00\x00\xff\xff\x59\x08\x52\x6a\x5f\x01\x00\x00" func epochAdminUpdate_dkg_phase_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1310,11 +1310,11 @@ func epochAdminUpdate_dkg_phase_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_dkg_phase_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x48, 0xd5, 0x13, 0x99, 0xde, 0x25, 0xd0, 0xd1, 0x6f, 0x14, 0x2b, 0x27, 0x33, 0xd8, 0x85, 0xd8, 0x82, 0xe1, 0x50, 0x0, 0x40, 0x9f, 0xd0, 0x93, 0x66, 0x12, 0x47, 0x74, 0x57, 0xd1, 0xce, 0x82}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x89, 0x8b, 0x7a, 0xd, 0xae, 0x66, 0x1b, 0x51, 0xc0, 0x64, 0x65, 0xa2, 0x4e, 0xae, 0xc5, 0x5d, 0x83, 0x1a, 0x91, 0x11, 0x9c, 0xfe, 0xdb, 0x9c, 0xb9, 0xd1, 0xd5, 0x84, 0x2b, 0xf1, 0x5d, 0xcd}} return a, nil } -var _epochAdminUpdate_epoch_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x94\xcd\x6e\xdb\x3a\x10\x85\xf7\x7e\x8a\x73\xb3\xb8\xb0\x01\x57\xe9\xa2\xe8\xc2\x68\x13\x04\xb1\x9b\x04\x69\x93\xa0\x4e\xd3\xf5\x58\x1c\x49\x44\x24\x52\x20\xa9\xa8\x40\x91\x77\x2f\x48\xca\xfa\x31\x8a\x06\x41\x51\x2f\xbc\xa0\x66\xce\x99\xf9\x86\x1c\x59\xd5\xda\x38\x7c\x2a\x75\xbb\xa9\x75\x5a\x20\x33\xba\xc2\xdb\x1f\x9b\xbb\xdb\xf3\xcb\xb3\xf5\xfa\xeb\x66\xbb\x9d\xcd\x9c\x21\x65\x29\x75\x52\xab\xb9\x78\xcc\xef\x0a\xb2\xfc\x99\xd5\x0a\xdf\xae\x94\x7b\xff\x6e\x09\xeb\xe8\x51\xaa\x7c\x72\xc6\x5e\x6f\x74\xb2\xc0\xcf\x19\x00\xd4\x86\x6b\x32\x3c\xb7\x32\x57\x6c\x56\xb0\x4e\x1b\xca\x39\xd9\x7f\xf7\xbf\x92\x5d\xcc\x3f\x13\x95\x54\xf8\x88\x18\x9c\xec\x63\x77\xda\x18\xdd\x7e\xf8\xbf\xaf\x3b\x09\x81\x27\x73\x5f\xfe\x6a\x68\x27\x21\x7f\xbc\x8d\x59\x77\xe4\x8a\x45\x6f\xe1\x7f\xa7\xa7\xa8\x49\xc9\x74\x7e\x74\xae\x9b\x52\x40\x69\x87\x28\x8d\x90\x18\x69\x74\xa6\xa8\xc9\x15\x47\x8b\x59\xaf\x20\x33\xfc\x37\x38\x49\xfb\x40\xa5\x14\x81\xcd\xb9\x56\x99\xcc\x1b\x43\x81\xd8\x00\x67\x89\x11\xbd\x81\xd0\xb8\xf3\x40\x28\xd6\x74\xc3\x2d\xe2\x50\x1e\x24\xb7\x16\x55\x63\x1d\x76\x8c\xdc\x30\x39\x36\x70\x05\x29\xb8\x82\x61\x9b\x0a\x3a\xdb\x0f\x01\xa4\x04\xd6\xd7\x17\x08\x46\x78\xf2\xb9\x47\x43\xdf\xcf\x43\x03\xc7\xc7\xc7\x58\x37\x0c\xa7\x83\x4c\x46\xa9\xf3\xa2\x1d\xfa\xbf\x77\x9d\x18\xb5\x1c\xa5\x9a\x5a\x90\xe3\xa0\x10\x6d\xd2\x00\x0b\x32\xaa\xa6\xda\x18\x4e\x1d\xb4\x11\x6c\x12\xdc\x17\xd2\xe2\xc9\x83\x0d\x2c\x21\x2d\x84\x56\x0c\xad\xc0\x94\x16\x13\x89\x89\x5d\xb4\x49\x70\xa9\xdb\xa0\xab\x9a\x6a\xc7\xc6\x17\x1c\x4a\xdb\xdb\xc5\x7c\x69\xb1\x63\xdf\x44\xcc\x12\x10\xec\xd8\x54\x52\xb1\x0d\x51\xa1\x98\x89\xbc\x54\x68\x0b\x99\x16\x5e\x37\x70\xba\x52\x61\x54\xcb\xd1\xc1\x36\x92\x39\x6b\xc2\xc3\x59\x06\x42\xc3\xd7\xf5\xf5\x45\x44\xa5\x98\x85\x1f\xc1\x8e\x7b\x7b\xdb\xa4\x45\x9c\x84\x77\x1f\xb5\x5f\x93\xb5\x6c\x93\x49\x29\x6f\x20\x55\x6a\x98\xac\x6f\xe0\xa0\x9c\xd5\x1e\xf7\xc1\x39\x76\x9c\x69\xc3\xaf\x2e\xf6\xc0\x58\xf0\x2b\x8c\xa7\x0e\xc1\xe0\x77\x38\x5e\xa8\x6c\x52\xc1\xcd\xed\xfd\x66\x85\xef\x0c\xb2\xb6\xa9\x18\x05\x1b\x1e\xb8\xf9\xdb\x58\x07\xcd\x92\x55\xee\xc2\x98\x2b\x4f\xd6\x56\x54\x96\x93\xab\xdc\xdd\xe1\x2e\x2e\xd3\x06\x54\x96\xa8\xb5\x63\xe5\x24\x95\xdd\x05\xeb\x1e\xf4\x88\xbf\xcc\xfa\x47\x8c\x93\xd1\xda\xc9\xd9\xc5\x1d\xf0\x85\x1d\x09\x72\x34\x5f\x24\x87\x23\x38\x78\xf4\xc3\xba\x4b\x22\xba\x10\x15\x32\xe6\xfd\xa2\xf8\x73\x46\x87\x28\xe6\x0c\x5b\xe7\x85\xac\x3d\xf9\x98\x36\x5a\x50\xa3\x9d\x01\x2e\x2d\xbf\x54\xf0\x3f\xb3\x7f\x3d\x9e\xe7\x59\xfc\x7f\xfe\x15\x00\x00\xff\xff\x25\xcd\x43\x1b\xe0\x06\x00\x00" +var _epochAdminUpdate_epoch_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x94\xc1\x6e\xdb\x3c\x10\x84\xef\x7e\x8a\xf9\x73\x08\x6c\xc0\xbf\xd2\x43\xd1\x83\xd1\x26\x70\x63\x37\x09\xd2\x26\x41\x9d\xa6\xe7\xb5\xb4\x92\x88\x48\xa4\x40\xae\xe2\x02\x45\xde\xbd\x20\x69\x5b\x92\x51\x34\x08\x8a\xea\xe0\x03\xcd\x99\xd9\xfd\x48\xae\xaa\x1b\x63\x05\x9f\x2a\xb3\x59\x36\x26\x2d\x91\x5b\x53\xe3\xcd\x8f\xe5\xdd\xed\xf9\xe5\x7c\xb1\xf8\xba\x5c\xad\x46\x23\xb1\xa4\x1d\xa5\xa2\x8c\x1e\x67\x8f\xc5\x5d\x49\x8e\x3f\xb3\x9e\xe1\xdb\x95\x96\x77\x6f\xa7\x70\x42\x8f\x4a\x17\x83\x35\xf6\x7e\xbd\x95\x09\x7e\x8e\x00\xa0\xb1\xdc\x90\xe5\xb1\x53\x85\x66\x3b\x03\xb5\x52\x8e\x3f\x1a\x6b\xcd\xe6\x81\xaa\x96\x27\x38\x9e\xa7\xa9\x69\xb5\xec\x14\xfe\xab\x58\xa2\xe3\x3c\xab\x95\xc6\x07\x44\x79\xe2\xc4\x58\x2a\x38\x59\x07\x83\xf7\xc7\xfb\x4e\x92\xb0\xf1\x74\xec\x1b\x9a\x75\x0d\x26\xe4\x97\x57\x51\x75\x47\x52\x4e\xf6\x11\xfe\x3b\x3b\x43\x43\x5a\xa5\xe3\xa3\x73\xd3\x56\x19\xb4\x11\x44\x6b\x04\x61\xe4\xb3\x0d\x45\x43\x52\x1e\x4d\x46\x7b\x07\x95\xe3\xbf\x2e\x49\xb9\x07\xaa\x54\x16\x68\x9d\x1b\x9d\xab\xa2\xb5\x14\x18\x76\xb8\xa6\xe8\xf1\xec\x98\xf5\x3b\x0f\xcc\x62\x4d\x37\xbc\x41\x3c\xa6\x07\xc5\x1b\x87\xba\x75\x82\x35\xa3\xb0\x4c\xc2\x16\x52\x92\x86\x94\x0c\xd7\xd6\x30\xf9\xee\x58\x40\x3a\xc3\xe2\xfa\x02\x21\x08\x4f\x5e\x7b\xd4\xf5\xfd\xdc\x35\x70\x72\x72\x82\x45\xcb\x10\x13\x6c\x72\x4a\xc5\x9b\x6e\xd1\xff\x7d\xea\x20\x68\xc3\xd1\xaa\x6d\x32\x12\x0e\x0e\x31\x26\x0d\xb0\xa0\xa2\x6b\x6a\xac\xe5\x54\x60\x6c\xc6\x36\xc1\x7d\xa9\x1c\x9e\x3c\xd8\xc0\x12\xca\x21\x33\x9a\x61\x34\x98\xd2\x72\x60\x31\x88\x8b\x31\x09\x2e\xcd\x26\xf8\xea\xb6\x5e\xb3\xf5\x05\x87\xd2\x76\x71\x51\xaf\x1c\xd6\xec\x9b\x88\xaa\x0c\x19\x0b\xdb\x5a\x69\x76\x61\x57\x28\x66\x60\xaf\x34\x36\xa5\x4a\x4b\xef\x1b\x38\x5d\xe9\x70\x54\xd3\xde\xc2\x2a\x92\x99\xb7\xe1\x29\x4d\x03\xa1\xee\xdf\xc5\xf5\x45\x44\xa5\x99\x33\x7f\x04\x6b\xde\xc7\xbb\x36\x2d\xe3\x49\xf8\xf4\x5e\xfb\x0d\x39\xc7\x2e\x19\x94\xf2\x3f\x94\x4e\x2d\x93\xf3\x0d\x1c\x94\x33\xdb\xe1\x3e\x58\xc7\x9a\x73\x63\xf9\xd5\xc5\x1e\x04\x67\xfc\x8a\xe0\x61\x42\x08\xf8\x1d\x8e\x17\x2a\x1b\x54\x70\x73\x7b\xbf\x9c\xe1\x3b\x83\x9c\x6b\x6b\x46\xc9\x96\x3b\x6e\xfe\x36\x36\xc1\xb3\x62\x5d\x48\x38\xe6\xda\x93\x75\x35\x55\xd5\xe0\x2a\x6f\xef\xf0\x76\x5f\x6e\x2c\xa8\xaa\xd0\x18\x61\x2d\x8a\xaa\xed\x05\xdb\x3e\xe8\x1e\x7f\x95\xef\x1f\x31\x4e\x7b\x63\xa7\x60\x89\x33\xe0\x0b\x0b\x65\x24\x34\x9e\x24\x87\x47\x70\xf0\xe8\xbb\x71\x97\x44\x74\x61\x57\x50\x8c\xf7\x83\xe2\xcf\x8a\x2d\xa2\xa8\xe9\xa6\xce\x0b\xaa\x1d\xf9\x28\xeb\x0d\xa8\xde\xcc\x00\x57\x8e\x5f\x2a\xf8\x9f\xc5\xbf\x1e\xcf\xf3\x28\xfe\x3e\xff\x0a\x00\x00\xff\xff\x1b\xd1\x45\xfa\xf2\x06\x00\x00" func epochAdminUpdate_epoch_configCdcBytes() ([]byte, error) { return bindataRead( @@ -1330,11 +1330,11 @@ func epochAdminUpdate_epoch_configCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_epoch_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0x5b, 0x8c, 0x3b, 0xd7, 0x7f, 0x40, 0x68, 0x95, 0x1d, 0xf1, 0x20, 0x47, 0x1b, 0x53, 0xee, 0xde, 0x14, 0xcb, 0xfd, 0x24, 0xe4, 0x7, 0x33, 0xe, 0xcc, 0xab, 0xab, 0x42, 0xa5, 0x3a, 0x12}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0xbf, 0x44, 0xd1, 0x3d, 0x58, 0x92, 0x1b, 0xbe, 0xa2, 0xe5, 0x64, 0x67, 0xc3, 0x57, 0xcd, 0x62, 0xfa, 0x24, 0xf5, 0x3f, 0x6e, 0xa, 0x8b, 0x36, 0x5d, 0x58, 0xa7, 0xbe, 0x4c, 0xd7, 0x7d}} return a, nil } -var _epochAdminUpdate_epoch_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xc1\x4a\xc4\x30\x10\x86\xef\x7d\x8a\x9f\x3d\x48\x7b\x09\x1e\xc4\x43\x51\x97\xb2\x5b\xd1\x93\x8b\x45\xef\xb1\x8d\xdb\x40\x9b\x09\xd3\x29\x15\x64\xdf\x5d\x92\xb8\x5d\xd8\x39\x85\xe4\x9f\xf9\xbe\x89\x1d\x3d\xb1\xe0\x79\xa0\xa5\xf6\xd4\xf6\xf8\x66\x1a\x71\xfb\x53\x1f\xde\x76\x2f\xd5\x7e\xff\x5e\x37\x4d\x96\x09\x6b\x37\xe9\x56\x2c\xb9\xdc\x99\xa5\x9a\xe3\xf1\xd3\x9a\x65\x2a\xf1\xf1\xea\xe4\xfe\xae\xc0\x6f\x06\x00\x9e\x8d\xd7\x6c\xf2\xc9\x1e\x9d\xe1\x12\x93\x10\xeb\xa3\x51\xe7\xf7\x50\x83\x11\x98\x40\xab\xba\xd1\x3a\x3c\x22\x85\xd5\x39\xfb\x45\xcc\xb4\x3c\xdc\xac\x56\x2a\x06\x9f\xf2\x20\x57\x5e\x64\x95\x0e\xd7\x4d\xea\x3a\x68\xe9\x8b\x15\x11\x6a\xbb\x85\xd7\xce\xb6\xf9\x66\x47\xf3\xd0\xc1\x91\x20\x8d\x46\x6c\x4c\xbb\xfe\x43\xe1\xb5\xf4\x9b\x22\x5b\x27\x5c\x04\xd5\xec\x3b\x2d\x26\x22\xe3\xce\xd7\x7f\x90\xb0\xa7\xec\xf4\x17\x00\x00\xff\xff\x6d\x14\x68\x15\x4e\x01\x00\x00" +var _epochAdminUpdate_epoch_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xf4\x30\x10\x86\xef\xfd\x15\xc3\x1e\x96\xf6\x12\xbe\xc3\x87\x87\xa2\x2e\x75\xb7\xa2\x27\x17\x8b\x7b\x1f\xd3\x71\x1b\x68\x33\x21\x9d\x50\x41\xf6\xbf\x4b\x12\xed\x82\x73\x0a\x21\xef\xfb\x3c\x19\x33\x39\xf6\x02\x8f\x23\x2f\xad\x63\x3d\xc0\x87\xe7\x09\xfe\x7d\xb6\xc7\x97\xfd\x53\x73\x38\xbc\xb6\x5d\x57\x14\xe2\xd1\xce\xa8\xc5\xb0\x2d\x2d\x2d\x4d\x48\xc7\x93\xa1\x65\xae\xe1\xed\xd9\xca\xcd\xff\x0a\xbe\x0a\x00\x00\xe7\xc9\xa1\xa7\x72\x36\x67\x4b\xbe\x06\x0c\x32\x94\x0f\xec\x3d\x2f\x27\x1c\x03\x55\xb0\x6d\xb4\xe6\x60\xe5\x37\x11\x67\x24\x01\x8a\xfc\xa6\x9f\x8c\x85\x3b\xc8\x71\x35\x0b\x7b\x3c\x93\x7a\x4f\x05\xb7\xdb\xd5\x53\xa5\x87\xf7\x65\xd4\xad\xaf\xfa\x0a\xe3\x75\x97\x53\x47\x94\xa1\x5a\x11\x71\x76\x3b\x70\x68\x8d\x2e\x37\x7b\x0e\x63\x0f\x96\x05\x72\x35\xa4\x60\xfe\xfd\x0f\x14\x1c\xca\xb0\xa9\x8a\xb5\xe1\x2a\xa8\x82\xeb\x51\x28\x21\xd3\x16\xfe\x6e\x25\x63\x2f\xc5\xe5\x3b\x00\x00\xff\xff\xda\xda\xbd\xf3\x60\x01\x00\x00" func epochAdminUpdate_epoch_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1350,11 +1350,11 @@ func epochAdminUpdate_epoch_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_epoch_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe5, 0xa, 0x0, 0x26, 0x59, 0x5f, 0x32, 0xb, 0x4a, 0x8b, 0xe5, 0xb0, 0x1d, 0x88, 0x80, 0x8d, 0xf3, 0x67, 0xa2, 0xc2, 0x9d, 0x21, 0xa1, 0x2d, 0xd2, 0x58, 0xfb, 0xaf, 0xa6, 0xb2, 0xc3, 0x66}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0xf2, 0x1e, 0xff, 0x58, 0x74, 0x21, 0xea, 0x1f, 0x45, 0xe4, 0xff, 0x4e, 0x3c, 0x33, 0x53, 0x58, 0xe2, 0xfb, 0x70, 0x69, 0x60, 0x9a, 0x8e, 0xfd, 0x45, 0xde, 0xc9, 0x99, 0xab, 0xe2, 0x64}} return a, nil } -var _epochAdminUpdate_rewardCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\xcf\x4a\xc3\x40\x10\xc6\xef\x79\x8a\xa1\x07\x49\x2f\xc1\x83\x78\x08\x6a\x09\x6d\x82\x82\xd0\xd0\x20\xe2\x71\x4c\xc6\x64\x21\xd9\x59\x26\x13\x52\x91\xbe\xbb\x6c\xd7\xa6\xf8\x1d\x77\xbf\x3f\xbf\x5d\x33\x38\x16\x85\xa2\xe7\x39\x77\x5c\x77\xf0\x25\x3c\xc0\xed\x31\x2f\xf7\xdb\xe7\x6c\xb7\x3b\xe4\x55\x15\x45\x2a\x68\x47\xac\xd5\xb0\x8d\x2d\xcd\x07\x9a\x51\x9a\xac\xfc\x48\xe1\xad\x30\xc7\xfb\xbb\x35\xfc\x44\x00\x00\x4e\xc8\xa1\x50\x3c\x9a\xd6\x92\xa4\x30\x2a\x0b\xb6\x94\x5c\xee\xbd\x7a\x52\x20\x3f\x95\x35\x83\xb1\xf0\x08\xc1\x9c\x5c\xbc\x9f\x2c\xc2\xf3\xc3\xcd\x82\x94\x9c\x8d\x4f\xb1\x27\x4b\xaf\xa4\x09\xfa\xe3\x2a\xa4\x4a\xd4\x6e\xbd\x4c\x78\x6d\x36\xe0\xd0\x9a\x3a\x5e\x6d\x79\xea\x1b\xb0\xac\x10\xaa\xe1\x1c\x0c\x0f\xfd\x1b\x05\x87\xda\xad\xd6\xd1\xd2\x70\x05\x4c\x26\xd7\xa0\x52\xf1\xba\x7f\xaf\x26\xe7\xfa\xef\x17\x5b\x0b\xe1\x48\x25\x49\x4d\x56\xb1\xa5\x7f\x5f\x12\x28\x4e\xd1\xe9\x37\x00\x00\xff\xff\x86\x6a\x23\x6c\x5a\x01\x00\x00" +var _epochAdminUpdate_rewardCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\x4f\x4b\xc3\x40\x10\xc5\xef\xf9\x14\x43\x0f\x25\xb9\x04\x0f\xe2\xa1\xa8\x25\xf6\x0f\x0a\x42\x43\x83\x8a\xc7\x71\x33\x26\x0b\xc9\xce\x32\x99\x25\x15\xe9\x77\x97\x24\x9a\xe2\x3b\x2e\xfb\x7b\xef\xb7\x6b\x5b\xcf\xa2\xb0\x6f\xb8\xdf\x79\x36\x35\x7c\x0a\xb7\x70\x75\xda\xe5\x87\xcd\x63\xb6\xdd\x1e\x77\x45\x11\x45\x2a\xe8\x3a\x34\x6a\xd9\xc5\x8e\xfa\x23\xf5\x28\x65\x96\xbf\xaf\xe0\x65\x6f\x4f\x37\xd7\x09\x7c\x47\x00\x00\x5e\xc8\xa3\x50\xdc\xd9\xca\x91\xac\x00\x83\xd6\xf1\x03\x8b\x70\xff\x8a\x4d\xa0\x04\x96\x99\x31\x1c\x9c\xfe\x11\x43\x1a\x52\xa0\x61\x3c\x2b\x5b\xeb\xe0\x0e\x26\x3c\xed\x94\x05\x2b\x4a\x3f\xc6\x82\xdb\xe5\x2c\x99\x8e\x17\xef\xe3\xc1\x75\x75\x71\x4f\x71\x38\x2e\x26\x2a\x47\xad\x93\x79\x62\xc8\x7a\x0d\x1e\x9d\x35\xf1\x62\xc3\xa1\x29\xc1\xb1\xc2\x54\x0d\x23\x38\x3d\xfd\x77\x14\x3c\x6a\xbd\x48\xa2\xb9\xe1\x22\x98\x06\x5f\xa2\xd2\xfe\xf9\xf0\x56\x04\xef\x9b\xaf\x27\x67\x84\xb0\xa3\x9c\xc4\x90\x53\xac\xe8\xdf\x27\x4d\x16\xe7\xe8\xfc\x13\x00\x00\xff\xff\x3c\x85\xfa\xd9\x6c\x01\x00\x00" func epochAdminUpdate_rewardCdcBytes() ([]byte, error) { return bindataRead( @@ -1370,11 +1370,11 @@ func epochAdminUpdate_rewardCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_reward.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x44, 0xdd, 0xa0, 0x7c, 0x7, 0xda, 0x45, 0xdf, 0xd7, 0x36, 0xc, 0x8d, 0xe4, 0x79, 0x8c, 0x26, 0x6c, 0x3c, 0x58, 0xc, 0x4a, 0x2, 0x8f, 0xfb, 0x6d, 0x32, 0x97, 0xa6, 0xa1, 0xc6, 0x1f, 0xaf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf5, 0x2, 0x3d, 0xb, 0xab, 0x39, 0xe2, 0x16, 0x8c, 0xbf, 0x88, 0x83, 0xe7, 0x2d, 0xdf, 0x3d, 0x95, 0x8, 0x37, 0x6f, 0x2c, 0x91, 0x1a, 0x20, 0xef, 0x99, 0xa4, 0xd6, 0xe4, 0xd6, 0x48, 0xee}} return a, nil } -var _epochAdminUpdate_staking_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xc1\x4a\xc4\x30\x10\x86\xef\x79\x8a\x9f\x3d\x48\xf7\x12\x3c\x88\x87\xa2\x2e\x65\xb7\xa2\x27\x17\x8b\xde\xc7\x36\xb6\xc1\x36\x13\xd2\x29\x15\x64\xdf\x5d\xd2\xb8\x5d\x70\x8e\xc9\x3f\xf3\x7d\x33\x76\xf0\x1c\x04\x8f\x3d\xcf\xa5\xe7\xba\xc3\x67\xe0\x01\xd7\xdf\xe5\xf1\x65\xff\x54\x1c\x0e\xaf\x65\x55\x29\x25\x81\xdc\x48\xb5\x58\x76\x99\x33\x73\x25\xf4\x65\x5d\xfb\x6e\xcd\x3c\xe6\x78\x7b\x76\x72\x7b\xb3\xc5\x8f\x02\x00\x1f\x8c\xa7\x60\xb2\xd1\xb6\xce\x84\x1c\xa3\x70\xa0\xd6\xe8\xf3\x7f\xac\xde\x08\x4c\xa4\x15\xcd\x60\x1d\xee\x91\xc2\xfa\x9c\xfd\xe0\x10\x78\xbe\xbb\x5a\xad\xf4\x12\x7c\xc8\xa2\x5c\x7e\x91\xd5\x14\x9f\xab\xd4\x75\x24\xe9\xb6\x2b\x22\xd6\x6e\x07\x4f\xce\xd6\xd9\x66\xcf\x53\xdf\xc0\xb1\x20\x8d\xc6\xd2\x98\x76\xfd\x83\xc2\x93\x74\x9b\xad\x5a\x27\x5c\x04\xf5\xe4\x1b\x12\x53\x4c\xcb\x01\x96\xad\xff\x5f\x21\x81\x4f\xea\xf4\x1b\x00\x00\xff\xff\x40\x00\x86\xb4\x50\x01\x00\x00" +var _epochAdminUpdate_staking_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x43\x0f\x25\xb9\x04\x0f\xe2\x21\xa8\x25\xb6\x11\x3d\x59\x0c\xf6\x3e\x26\x63\xb2\x98\xcc\x2c\x9b\x59\x22\x48\xff\xbb\x64\x57\x53\xf0\x1d\x97\x7d\xef\x7d\xf3\xcc\x68\xc5\x29\x3c\x0e\x32\x57\x56\x9a\x1e\x3e\x9c\x8c\x70\xf5\x55\x1d\x5f\xf6\x4f\xe5\xe1\xf0\x5a\xd5\x75\x92\xa8\x43\x9e\xb0\x51\x23\x9c\x32\xcd\xb5\xe2\xa7\xe1\xee\x64\x68\x9e\x0a\x78\x7b\x66\xbd\xb9\xce\xe0\x3b\x01\x00\xb0\x8e\x2c\x3a\x4a\x27\xd3\x31\xb9\x02\xd0\x6b\x9f\x3e\x88\x73\x32\x9f\x70\xf0\x94\xc1\xb6\x6c\x1a\xf1\xac\x7f\x8e\x45\x03\x29\xd0\xd2\x5f\xb6\xa3\x61\xb8\x83\x68\xcf\x27\x15\x87\x1d\xe5\xef\x21\xe0\x76\xbb\x72\xe6\xe1\xe3\x7d\xba\xe0\x16\x17\xfc\x1c\x97\xe7\x3a\xba\x8e\xa8\x7d\xb6\x56\x2c\xda\xed\xc0\x22\x9b\x26\xdd\xec\xc5\x0f\x2d\xb0\x28\xc4\x68\x08\xc6\x78\xfd\x6f\x29\x58\xd4\x7e\x93\x25\x6b\xc2\x05\x30\xf7\xb6\x45\xa5\xd2\x87\x49\xc2\x0e\xff\x77\x89\xc5\xe7\xe4\xfc\x13\x00\x00\xff\xff\x85\xd3\x6b\x51\x62\x01\x00\x00" func epochAdminUpdate_staking_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1390,7 +1390,7 @@ func epochAdminUpdate_staking_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_staking_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0x17, 0x79, 0x9f, 0xce, 0x9e, 0x7e, 0x1, 0x7b, 0x24, 0xa3, 0x41, 0x43, 0x15, 0x98, 0x60, 0xa5, 0x10, 0xb5, 0x86, 0xc4, 0xfb, 0x7f, 0xf1, 0xa1, 0xc8, 0x59, 0xfd, 0x70, 0xc9, 0x16, 0x23}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0xa5, 0x3, 0x6a, 0x49, 0xa6, 0xd2, 0xf2, 0xf9, 0x18, 0xf9, 0x76, 0x20, 0x71, 0xea, 0x79, 0x7d, 0xed, 0x5e, 0x53, 0x4a, 0x92, 0x20, 0xb0, 0x12, 0x66, 0x4, 0xcf, 0x2, 0xc7, 0x48, 0xc9}} return a, nil } @@ -1674,7 +1674,7 @@ func flowtokenCreate_forwarderCdc() (*asset, error) { return a, nil } -var _flowtokenMint_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\xb1\x6e\xdb\x30\x10\xdd\xf5\x15\x57\x0d\x86\x04\x34\xd4\x52\x74\x30\x9c\x04\xee\x90\xad\x1d\xda\x24\x3b\x4d\x9d\xe5\x43\x69\x52\x38\x9e\xe2\x14\x46\xfe\xbd\x20\x29\xd9\x56\x1a\x97\x8b\x20\xf2\xdd\xbb\xf7\xde\x1d\xed\x7b\xcf\x02\x0f\x83\xeb\x68\x63\xf1\xd1\xff\x46\x07\x5b\xf6\x7b\x28\x67\x77\x65\x31\x21\xad\x3f\xcc\x50\xd3\x7f\x59\x14\x4d\xd3\xc0\xe3\x8e\x02\x08\x6b\x17\xb4\x11\xf2\x0e\xf6\xe4\x24\x80\x44\x48\x80\x21\x90\xeb\x40\x76\x08\xda\x18\x3f\x38\x01\xd9\x69\x81\x20\x9e\x31\xa4\xfb\xc8\x07\xb9\xc1\xba\xdd\x93\x03\xc6\xe0\x07\x36\x78\x66\xa7\x8c\x0c\xc8\x2f\x64\x4e\x4c\x45\x71\xd1\xb5\x62\x34\xd4\x13\x3a\x59\xc2\xba\x6d\x19\x43\xf8\x0c\x7a\x1f\x71\x4b\x78\x7a\xa0\xd7\xaf\x5f\x6a\x38\x16\x05\x00\x80\x45\xc9\xf2\x52\xbf\x25\x2c\x4e\x96\x54\xba\xa1\x20\xac\xc5\xf3\x1c\xfc\x13\x0d\xd2\x0b\xf2\x12\x16\xc7\x59\x52\x6a\x7a\x79\xcb\xf4\x3d\x63\xaf\x19\xab\x40\x9d\x8b\x70\x3d\xc8\xae\xfa\xe6\x99\xfd\xe1\x59\xdb\x01\x6b\x58\xac\xb3\x83\x93\xa2\x78\x02\xda\xad\x3a\xcb\x82\x5b\xc8\x04\x2a\x66\xa5\x3b\x3c\x01\xe3\x51\x9b\xc4\xb7\xba\x26\xfd\xae\x8a\xc3\x5a\x42\x33\x16\x37\xdb\x09\x97\x60\xf5\x8c\xec\xfe\x1e\x7a\xed\xc8\x54\xe5\xaf\xd4\x31\xe6\xed\xbc\xa4\xcc\x93\x20\xd0\xb1\xa8\xac\x3f\x12\x3b\x99\x87\x5b\xe8\x50\x46\x63\xe7\x69\xcc\x3b\x29\xa3\x7b\xbd\x21\x4b\x42\x18\x54\x87\xb2\xba\x9a\xe5\x5d\xd5\xf4\xc3\xc6\x92\x39\x4b\x9f\xde\xea\x4f\x1f\x65\x51\x5d\x33\xf5\xe4\xf4\xc6\x46\x27\x90\x81\xc0\x93\x64\xc6\x2d\x32\x3a\x83\x65\xae\x1d\x07\x88\xaf\x68\x06\x41\x38\x9e\x08\xe3\x12\xc4\xb5\x46\x86\xd5\xcd\xfb\x49\x29\xc3\xa8\x05\x7f\xe0\xe1\x7b\x82\x54\xda\x5a\x7f\xc0\x76\x3d\x6e\x5f\xde\xc2\xfa\x5f\xb2\xf6\x59\x0f\x56\x22\x63\xe6\x56\xf1\x93\x9c\x86\x4a\xbf\x2b\xfe\x4f\xf2\xaa\xc5\xde\x07\x92\x71\xe4\xab\x9b\x0b\xf2\x8b\xc2\x16\x83\xb0\xff\x33\xf6\x1a\xfd\xbe\xfd\x0d\x00\x00\xff\xff\x64\xd2\xbe\x72\x0f\x04\x00\x00" +var _flowtokenMint_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x31\x6f\xdb\x30\x10\x85\x77\xfd\x8a\x83\x86\x40\x06\x1a\x69\x29\x3a\x08\x4e\x02\x77\xc8\xd6\x0e\x6d\x92\x9d\xa2\xce\xf2\xa1\x14\x29\x1c\x4f\x71\x0a\x23\xff\xbd\x20\x29\xc9\x56\x5a\x57\x8b\x61\xf2\xdd\x77\xef\xdd\x91\xfa\xc1\xb1\xc0\xe3\x68\x3b\x6a\x0c\x3e\xb9\x5f\x68\x61\xcf\xae\x87\x7c\x75\x96\x67\xb3\xd2\xb8\xe3\x4a\x35\xff\xcf\xb3\xac\xaa\x2a\x78\x3a\x90\x07\x61\x65\xbd\xd2\x42\xce\x42\x4f\x56\x3c\x48\x90\x78\x18\x3d\xd9\x0e\xe4\x80\xa0\xb4\x76\xa3\x15\x90\x83\x12\xf0\xe2\x18\x7d\x3c\x0f\x3c\x48\x0d\x76\x6d\x4f\x16\x18\xbd\x1b\x59\xe3\x99\x4e\x49\xe9\x91\x5f\x49\x2f\xa4\x2c\xbb\xe8\x5a\x30\x6a\x1a\x08\xad\xd4\xb0\x6b\x5b\x46\xef\x3f\x81\xea\x83\xae\x86\xe7\x47\x7a\xfb\xf2\x79\x03\xa7\x2c\x03\x00\x30\x28\xc9\x5e\xec\x57\xc3\xcd\x12\xa9\x8c\x27\xe4\x85\x95\x38\x5e\x8b\x7f\xa0\x46\x7a\x45\xae\xe1\xe6\xb4\x9a\x54\x39\xdf\xbc\x27\xfc\xc0\x38\x28\xc6\xc2\x53\x67\x83\x5c\x8d\x72\x28\xbe\x3a\x66\x77\x7c\x51\x66\xc4\x0d\xdc\xec\x52\x82\xc5\x51\xf8\x3c\x9a\x7d\x79\xb6\x05\x77\x90\x00\x65\x98\x95\xea\x70\x11\x86\xaf\x6c\x22\x6f\x7b\xcd\xfa\x7d\x11\x96\x55\x43\x35\x15\x57\xfb\x59\x17\x65\x9b\x15\xec\xe1\x01\x06\x65\x49\x17\xf9\xcf\xd8\x31\xcc\xdb\x3a\x89\x33\x8f\x86\x40\x85\xa2\x7c\xf3\x2f\xb3\x73\x78\xb8\x83\x0e\x65\x0a\x76\xde\xc6\xba\x53\xa9\xd5\xa0\x1a\x32\x24\x84\x7e\xc9\x70\x6d\x9c\xf7\x45\x35\x8c\x8d\x21\x7d\x76\x3f\xdf\x5d\x0b\xf0\x6c\x55\x63\x82\x6b\x48\x70\xe0\xd9\x1e\xe3\x1e\x19\xad\xc6\x3c\xd5\x4e\xcb\xc2\x37\xd4\xa3\x20\x9c\x16\x60\x58\x78\x78\xc2\xc8\xb0\xbd\xfd\xb8\x95\x52\x33\x2a\xc1\xef\x78\xfc\x16\x25\x85\x32\xc6\x1d\xb1\xdd\x4d\x2f\x2d\xbd\xb8\xcd\xdf\xb0\xf6\x45\x8d\x46\x02\x31\xb1\xcb\xf0\x13\x23\xf9\x42\x7d\x28\xfe\xcf\x94\xcb\x16\x07\xe7\x49\xa6\xf5\x6e\x6f\x2f\xe0\x17\x85\x2d\x7a\x61\xf7\x7b\xea\x35\xe5\x7d\xff\x13\x00\x00\xff\xff\x4d\x4d\x2d\xec\xfb\x03\x00\x00" func flowtokenMint_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1690,11 +1690,11 @@ func flowtokenMint_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/mint_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0x6, 0x53, 0x7d, 0x25, 0x77, 0x12, 0xd3, 0xbc, 0x23, 0xaa, 0xb5, 0xf0, 0x80, 0xc7, 0x63, 0x64, 0x47, 0x7c, 0xda, 0x22, 0x20, 0xb6, 0x1c, 0x12, 0x83, 0xb2, 0x12, 0xe4, 0x90, 0xa5, 0x79}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x85, 0x9a, 0xca, 0x71, 0x4a, 0xfb, 0x5f, 0xd5, 0x56, 0xf3, 0x5f, 0xb8, 0xc1, 0xd8, 0xfe, 0x87, 0xff, 0x71, 0x1d, 0x2f, 0x26, 0x65, 0x2, 0x7, 0xfd, 0x3e, 0xa1, 0xab, 0x25, 0xc9, 0x2d}} return a, nil } -var _flowtokenScriptsGet_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\xcf\x4e\xf3\x30\x10\xc4\xef\x7e\x8a\xf9\x72\xf8\x48\x2e\xc9\x05\x71\xa8\x80\xaa\x20\xf5\x01\x50\xe1\xee\x38\xeb\x76\x85\x6b\x47\xf6\x9a\x22\x55\x7d\x77\xd4\xfc\xab\x9a\x53\xec\xfd\xed\xcc\x8e\xb7\x69\xb0\x3b\x70\x42\x32\x91\x7b\x41\x24\xdd\x25\xc8\x81\xd0\x6a\xa7\xbd\x21\x58\x26\xd7\x21\x58\x68\x0f\x6d\x4c\xc8\x5e\x1e\x12\xb6\x2e\x9c\x76\xe1\x9b\x3c\xde\x46\x4e\x29\x3e\xf6\x21\x0a\xb6\xd9\xef\xb9\x75\x34\x56\x6d\x0c\x47\x14\x77\x77\xc5\x42\x2e\x1a\x13\x35\x9f\x0b\xa5\xb4\x31\x94\x52\xa9\x9d\xab\x60\xb3\xc7\x51\xb3\x2f\x27\xfb\x15\x36\x5d\x17\x29\xa5\x6a\x85\xcf\x2d\xff\x3e\x3d\xe2\xac\x14\x00\x38\x12\xfc\xe8\xec\xe4\x83\x2c\x5e\xb0\x27\xd9\x8c\x2d\x73\x6b\x35\x60\xd7\xaf\x36\xba\xd7\x2d\x3b\x16\xa6\x54\xef\x49\x9e\xff\x2f\xfe\xf5\xd7\x55\xe3\x7c\x37\x75\x3d\xe5\xbc\xbc\x96\x4d\x9f\x5b\xc7\xa6\xb1\x33\x3f\x95\xaa\x7f\x37\xf5\x36\xc4\x18\x4e\xe5\xcd\x6f\xbd\x46\xaf\x3d\x9b\xb2\x78\x0f\xd9\x75\xf0\x41\x30\x42\xf3\x0b\x22\x92\xa5\x48\xd7\x3f\x09\xc3\x0a\x86\x31\x8a\x6a\xcc\x16\x49\x72\xf4\x4b\xbc\x7a\xda\x8f\xba\xa8\xbf\x00\x00\x00\xff\xff\x5b\x5b\xf0\xc3\xc3\x01\x00\x00" +var _flowtokenScriptsGet_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\xcb\x4e\xf3\x30\x10\x85\xf7\x7e\x8a\xa3\x2c\xfe\x3f\xd9\x24\x1b\xc4\xa2\x02\xaa\x82\xd4\x07\x40\x85\xfd\xc4\x19\xb7\x23\x5c\x3b\xf2\x85\x22\x55\x7d\x77\x94\x2b\x6a\x56\xb1\xe7\x9b\x73\xe6\x8c\x9b\x06\x87\x93\x44\x44\x1d\xa4\x4f\x08\x4c\x5d\x44\x3a\x31\x5a\xb2\xe4\x34\xc3\x08\xdb\x0e\xde\x80\x1c\x48\x6b\x9f\x5d\xfa\x1f\xb1\xb7\xfe\x72\xf0\x5f\xec\xf0\x3a\x71\x4a\xc9\xb9\xf7\x21\x61\x9f\xdd\x51\x5a\xcb\x53\xd5\x04\x7f\x46\x71\x77\x57\xac\xe4\xaa\x31\x53\xcb\xb9\x50\x8a\xb4\xe6\x18\x4b\xb2\xb6\x82\xc9\x0e\x67\x12\x57\xce\xf6\x1b\xec\xba\x2e\x70\x8c\xd5\x06\x1f\x7b\xf9\x79\x7c\xc0\x55\x29\x00\xb0\x9c\xf0\x4d\xd9\xa6\x77\x36\x78\xc6\x91\xd3\x6e\x6a\x59\x5a\xab\x11\x1b\xbe\x5a\x53\x4f\xad\x58\x49\xc2\xb1\x6e\x7d\x08\xfe\xf2\xf4\x6f\x1d\xa1\xfe\x1c\x64\xae\x77\x83\xd7\x73\xd4\xdb\x4b\xd9\xf4\xb9\xb5\xa2\x1b\xb3\xf0\x73\xe9\x4f\x7f\xbb\x45\x4f\x4e\x74\x59\xbc\xf9\x6c\x3b\x38\x9f\x30\xb9\x2c\x1b\x43\x60\xc3\x81\x87\xbf\xe4\xc7\x95\x8f\x9e\x45\x35\x65\x09\x9c\x72\x70\x6b\x9c\x7a\x7e\x0f\x75\x53\xbf\x01\x00\x00\xff\xff\xb2\x75\x14\x0e\xb3\x01\x00\x00" func flowtokenScriptsGet_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -1710,7 +1710,7 @@ func flowtokenScriptsGet_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/scripts/get_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4c, 0xcf, 0xb2, 0x8c, 0x14, 0xdf, 0x77, 0xe7, 0xd2, 0xe8, 0xc8, 0x5d, 0x10, 0x4d, 0xd5, 0x3d, 0xf8, 0xf3, 0x1a, 0x4e, 0x75, 0xa1, 0x97, 0xad, 0x3b, 0xfe, 0x7c, 0x76, 0x1d, 0x30, 0x80, 0xa8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8c, 0xff, 0xa, 0x56, 0x3f, 0xfb, 0xe0, 0xd, 0xb, 0x7, 0x18, 0x80, 0xea, 0xfa, 0x73, 0xb0, 0x94, 0x62, 0xb6, 0xb1, 0x47, 0x85, 0x6a, 0x9b, 0xcc, 0x47, 0xc4, 0x1e, 0x51, 0x88, 0xc3, 0x7e}} return a, nil } @@ -1754,7 +1754,7 @@ func flowtokenSetup_accountCdc() (*asset, error) { return a, nil } -var _flowtokenTransfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x4f\xdc\x3c\x10\x3e\x93\x5f\x31\xec\x01\x12\xe9\x25\xb9\xbc\xea\x61\xb5\x85\xd2\x56\xf4\x8e\x28\x3d\x4f\x92\xc9\xc6\xaa\xd7\x8e\xc6\x13\x02\x42\xfc\xf7\xca\x76\x1c\x36\x20\x95\xee\x65\x95\xf1\xcc\x33\xcf\x87\x5d\x55\x70\xd7\x2b\x07\xc2\x68\x1c\x36\xa2\xac\x01\xe5\x00\x41\xe8\x30\x68\x14\x82\xce\xb2\xff\x3c\x3a\x97\x1e\x25\xab\x2a\x68\xec\xa8\x5b\xa8\x09\x46\x47\x2d\xd4\x4f\x80\xe6\xc9\x1a\x02\xb1\xe0\xc8\xb4\x20\xf6\x37\x19\xe7\x3f\xd1\x58\xe9\x89\x01\x9b\xc6\x8e\x26\x0c\x7b\x10\xe8\xd1\x41\x4d\x64\xc0\x91\xc0\x38\xf8\x56\xa6\x86\xd4\x03\xcd\xc3\x65\x56\x55\x59\xe0\x48\x30\x29\xe9\x5b\xc6\x09\xf0\xe0\x41\x00\xfd\x8a\x9e\x12\x28\x74\x6c\x0f\xb0\x27\xb9\x7e\x5d\x32\x25\x86\xbe\x6f\x40\xc6\x03\x09\x71\xa0\xe4\x2b\x47\xa2\xb2\x4c\x1d\x06\xcb\x02\x37\xa3\xd9\xab\x5a\xd3\x9d\xdf\x1f\x31\x37\xab\xda\x66\xe9\xd4\x76\x5a\x75\xa5\xef\x4d\x96\x1d\x21\xe7\x91\xee\x16\x7e\xde\xa8\xc7\x4f\xff\xff\x07\x62\xb7\x70\xdd\xb6\x4c\xce\x15\xf0\x9c\x65\x00\x00\xb3\xc4\x7b\x1c\xb5\x00\x93\xb3\x23\x37\x34\x7b\x64\x75\xeb\x22\xdd\xd9\x4f\x5f\x45\x26\xa8\x49\x99\x7d\x14\xd1\x11\x33\xb5\x01\x4a\x93\x78\xfb\x25\x60\x6d\xe1\xcb\x8a\x7c\x19\xaa\x71\xe7\xc0\x34\x20\x53\xee\xd4\xde\x10\x6f\x01\x47\xe9\xf3\xaf\x96\xd9\x4e\xf7\xa8\x47\x2a\xe0\x6c\xb6\x72\xa1\x39\x53\xfd\x41\x02\x08\x4c\x1d\x31\x99\x86\x92\x9d\x11\xe8\xdc\x81\x13\xcb\xd4\xc2\x43\xd8\x95\xe6\x3c\xaf\x50\xb9\xa5\x0e\x3e\xcf\xcd\xa5\x6f\xc5\x3d\x95\x75\xd8\xbb\x0b\x1c\xd6\x8c\x7f\xcd\xb1\x63\xad\x3d\xa5\xc5\xe5\x28\xe5\x32\xf7\xe6\x6f\xa1\x9a\x81\xaa\x2e\x9d\x87\xe3\x22\x3b\x39\x39\xb9\xba\x82\x01\x8d\x6a\xf2\xcd\xb7\x70\x1f\x8c\x15\x88\xfb\xde\x6b\xb0\x53\x94\x10\xa6\x4f\x37\xc5\x4a\x77\xa2\x92\x92\x08\xb9\x7f\xac\xdc\x91\xee\xca\x25\x12\xd8\x5d\x2c\x3e\x94\xe9\x4e\x2f\x97\x24\xfe\x17\x61\xf6\x25\x2e\xa7\x47\x6a\x46\xa1\x7f\xcb\x80\xa9\x51\x83\x22\x23\xe7\x0e\x6e\xe3\x53\xe2\x55\x04\xf3\xfb\xe2\x98\xc2\xd1\x7b\xc9\xc5\x16\x4b\xa7\xff\x95\x0d\x0e\x58\x2b\xad\x44\x91\x2b\xf7\x24\xbb\xb3\xe7\x75\x34\x69\xc1\xcb\x65\x5e\x0d\x63\xad\x55\xf3\x6a\x7f\x3a\x2b\x4e\xd7\xa0\xd1\xf8\xfc\xe3\x60\xe2\xf8\xdf\x15\x06\x43\xdf\x84\xf4\x9d\x06\xeb\x94\x84\xde\x64\xaf\x49\x89\x29\xf3\x0e\x83\xdf\xba\x74\xe4\x50\xd9\x46\xb0\xf9\x92\xed\x2e\xd6\x51\xa6\x98\x5e\xb2\x3f\x01\x00\x00\xff\xff\xd8\xb1\x73\x51\x47\x05\x00\x00" +var _flowtokenTransfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xcd\x4e\xdc\x30\x10\x3e\x93\xa7\x98\xee\x01\xb2\x52\x49\x2e\x55\x0f\x2b\x0a\xa5\xad\xe8\x1d\x51\x7a\x9e\x38\x93\x8d\x55\xaf\x1d\x8d\x27\x2c\x08\xed\xbb\x57\xb6\xe3\xb0\x01\xa9\x74\x2f\xab\x8c\x67\xbe\xf9\x7e\xec\xba\x86\xbb\x5e\x7b\x10\x46\xeb\x51\x89\x76\x16\xb4\x07\x04\xa1\xdd\x60\x50\x08\x3a\xc7\xe1\xf3\xe8\x5c\x7a\x94\xa2\xae\x41\xb9\xd1\xb4\xd0\x10\x8c\x9e\x5a\x68\x9e\x00\xed\x93\xb3\x04\xe2\xc0\x93\x6d\x41\xdc\x1f\xb2\x3e\x7c\xa2\x75\xd2\x13\x03\x2a\xe5\x46\x1b\x87\x03\x08\xf4\xe8\xa1\x21\xb2\xe0\x49\x60\x1c\x42\x2b\x93\x22\xfd\x40\xd3\x70\x55\xd4\x75\x11\x39\x12\xec\xb5\xf4\x2d\xe3\x1e\x70\x17\x40\x00\xc3\x8a\x9e\x32\x28\x74\xec\x76\xb0\x25\xb9\x7e\x59\xb2\xcf\x0c\x43\xdf\x80\x8c\x3b\x12\xe2\x48\x29\x54\x8e\x44\x15\x85\xde\x0d\x8e\x05\x6e\x46\xbb\xd5\x8d\xa1\xbb\xb0\x3f\x61\xae\x16\xb5\xd5\xdc\x69\xdc\x7e\xd1\x95\xbf\x57\x45\x71\x84\x5c\x26\xba\x1b\xf8\x75\xa3\x1f\x3f\x7f\xfa\x08\xe2\x36\x70\xdd\xb6\x4c\xde\xaf\xe1\xb9\x28\x00\x00\x26\x89\xf7\x38\x1a\x01\x26\xef\x46\x56\x34\x79\xe4\x4c\xeb\x13\xdd\xc9\xcf\x50\x45\x26\x68\x48\xdb\x6d\x12\xd1\x11\x33\xb5\x11\xca\x90\x04\xfb\x25\x62\x6d\xe0\xeb\x82\x7c\x15\xab\x69\xe7\xc0\x34\x20\x53\xe9\xf5\xd6\x12\x6f\x00\x47\xe9\xcb\x6f\x8e\xd9\xed\xef\xd1\x8c\xb4\x86\xd3\xc9\xca\x99\xe6\x44\xf5\x27\x09\x20\x30\x75\xc4\x64\x15\x65\x3b\x13\xd0\x99\x07\x2f\x8e\xa9\x85\x87\xb8\x2b\xcf\x05\x5e\xb1\x72\x4b\x1d\x7c\x99\x9a\xab\xd0\x8a\x5b\xaa\x9a\xb8\xf7\x22\x72\x58\x32\xfe\x3d\xc5\x8e\x8d\x09\x94\x66\x97\x93\x94\xcb\x32\x98\xbf\x81\x7a\x02\xaa\xbb\x7c\x1e\x8f\xd7\xc5\xc9\xc9\xc9\xd5\x15\x0c\x68\xb5\x2a\x57\xdf\xe3\x7d\xb0\x4e\x20\xed\x7b\xab\xc1\xed\x93\x84\x38\xfd\x61\xb5\x5e\xe8\xce\x54\x72\x12\x31\xf7\xf7\x95\x7b\x32\x5d\x35\x47\x02\x17\xe7\xb3\x0f\x55\xbe\xd3\xf3\x25\x49\xff\xeb\x38\x7b\x48\xcb\xe9\x91\xd4\x28\xf4\x7f\x19\x30\x29\x3d\x68\xb2\x72\xe6\xe1\x36\x3d\x25\x5e\x44\x30\xbd\x2f\x4e\x29\x1c\xbd\x97\x52\xdc\x7a\xee\x0c\xbf\x4a\xe1\x80\x8d\x36\x5a\x34\xf9\x1c\xd0\xe9\xf3\x32\x9d\xbc\xe3\x70\x59\xd6\xc3\xd8\x18\xad\x5e\x12\xc8\x67\xef\x87\x90\xfa\xfe\xad\x26\x9a\xf7\x2a\x90\x1f\x34\x38\xaf\x25\xf6\x66\x2b\x6d\x4e\x47\xdb\x37\x18\xfc\xda\x91\x23\x37\xaa\x36\x81\x4d\x17\xea\xe2\x7c\x19\x5b\x8e\xe4\x50\xfc\x0d\x00\x00\xff\xff\xcb\x74\x8b\xdb\x33\x05\x00\x00" func flowtokenTransfer_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1770,7 +1770,7 @@ func flowtokenTransfer_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/transfer_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0x54, 0x57, 0xce, 0xc7, 0x3c, 0xd3, 0x18, 0xd, 0x47, 0xdb, 0xf7, 0x91, 0x87, 0x63, 0x71, 0x2, 0x2, 0x0, 0xb6, 0xd6, 0x88, 0x65, 0x30, 0x75, 0x1, 0x4f, 0xb4, 0x7a, 0xde, 0x17, 0x31}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0xba, 0x25, 0xee, 0xa6, 0x70, 0x41, 0x3b, 0xa8, 0x36, 0xcf, 0x12, 0xd4, 0x60, 0xb5, 0x2d, 0x86, 0x12, 0xa0, 0xf7, 0x98, 0x93, 0x7d, 0x1e, 0xe9, 0xdb, 0xb6, 0x15, 0x43, 0x95, 0xb6, 0x59}} return a, nil } @@ -2514,7 +2514,7 @@ func idtablestakingDelegationGet_delegator_infoCdc() (*asset, error) { return a, nil } -var _idtablestakingDelegationGet_delegator_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x6b\xe3\x40\x0c\x85\xef\xf3\x2b\xde\xfa\xb0\xd8\xb0\xd8\xf7\xb0\xbb\x21\x6c\x58\xc8\xa5\x14\x9a\x3f\x20\xcf\xc8\xce\xb4\x93\x91\x99\x91\xc9\x21\xe4\xbf\x97\xc4\x4d\x9c\xd2\x40\x75\x12\xd2\xe3\x7d\xd2\xf3\xfb\x41\x92\xe2\x7f\x90\xc3\x66\xbd\xa5\x36\xf0\x8b\xd2\x9b\x8f\x3d\xba\x24\x7b\x14\x5f\x17\x85\x31\x4d\x83\xed\xce\x67\x64\x9b\xfc\xa0\xe8\x59\x33\x28\x04\xe8\x8e\xe1\x63\x27\xa0\x56\x46\x05\xc1\x71\xe0\x9e\x54\x12\x28\x3a\x24\xd6\x31\xc5\x0c\xaf\xc6\x90\xb5\x9c\x73\x49\x21\x54\xe8\xc6\x88\x3d\xf9\x58\x92\x73\x89\x73\x5e\x60\x35\x35\xd5\xe2\xc1\x61\xf5\xfa\x6a\xba\x39\xa3\x8e\xc6\x00\x40\x60\xbd\xa3\xfd\x39\xdf\xb4\xb2\x56\xc6\xa8\x57\xd7\xea\xa2\x3b\x57\x6d\x69\xa0\xd6\x07\xaf\x9e\x73\xdd\xb3\xfe\xfe\x79\x7c\xc0\x79\x12\xc7\x37\xd6\xf3\xd8\x06\x6f\x4f\x7f\xcb\x66\xb8\x74\x4d\x17\xe4\xf0\xa1\xbc\x89\xaa\x1f\x33\xa3\x95\x94\xe4\x50\xce\xd4\xe5\x12\x03\x45\x6f\xcb\xe2\x9f\x8c\xc1\x21\x8a\x62\x12\x21\x71\xc7\x89\xa3\x65\xa8\xdc\x7d\x21\xed\x2b\x5b\x2d\xaa\xe9\xc3\x29\xbd\x6f\x03\x29\xa3\x38\xde\xac\x17\xb3\x4f\x3d\x4d\x7e\xcd\x93\xcf\x6b\xef\x2a\x73\x32\xef\x01\x00\x00\xff\xff\x6d\x02\x1c\x02\x09\x02\x00\x00" +var _idtablestakingDelegationGet_delegator_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\xc1\x6a\xf3\x30\x10\x84\xef\x7a\x8a\xc1\x87\x1f\x1b\x7e\xec\x7b\x68\x1b\x42\x43\x21\x97\x52\x68\x5e\x60\x2d\xad\x13\xb5\x8a\xd6\x48\x6b\x72\x08\x79\xf7\x92\xb8\x89\x53\x1a\xa8\x4e\xcb\xee\x30\xdf\x68\xfc\xae\x97\xa4\x78\x09\xb2\x5f\x2d\xd7\xd4\x06\x7e\x57\xfa\xf4\x71\x83\x2e\xc9\x0e\xc5\xef\x43\x61\x4c\xd3\x60\xbd\xf5\x19\xd9\x26\xdf\x2b\x36\xac\x19\x14\x02\x74\xcb\xf0\xb1\x13\x50\x2b\x83\x82\xe0\x38\xf0\x86\x54\x12\x28\x3a\x24\xd6\x21\xc5\x0c\xaf\xc6\x90\xb5\x9c\x73\x49\x21\x54\xe8\x86\x88\x1d\xf9\x58\x92\x73\x89\x73\x9e\x61\x31\x0e\xd5\xec\x4e\xb0\x7a\x79\x31\x5d\x9d\x50\x07\x63\x00\x20\xb0\xde\xd0\x1e\x4f\x99\x16\xd6\xca\x10\xf5\xe2\x5a\x9d\x75\xa7\x57\x5b\xea\xa9\xf5\xc1\xab\xe7\x5c\xb7\x92\x92\xec\x1f\xfe\x1d\xee\xa0\x5e\xc5\xf1\x15\xf7\x36\xb4\xc1\xdb\xe3\x53\xd9\xf4\xe7\xa9\xe9\x82\xec\xbf\x95\x57\xd1\x44\x99\xcf\xd1\x53\xf4\xb6\x2c\x9e\x65\x08\x0e\x51\x14\x23\x0b\x89\x3b\x4e\x1c\x2d\x43\xe5\x26\xb5\xb4\x1f\x6c\xb5\xa8\xc6\x1f\x8d\x6d\xfd\x59\x40\x19\xc5\xf1\x6a\x39\x9b\x7c\xea\x71\xf3\x7f\xda\xfc\x3c\x7b\x57\x99\xa3\xf9\x0a\x00\x00\xff\xff\xb9\xc7\x94\xa1\xf9\x01\x00\x00" func idtablestakingDelegationGet_delegator_info_from_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -2530,7 +2530,7 @@ func idtablestakingDelegationGet_delegator_info_from_addressCdc() (*asset, error } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_info_from_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x20, 0xee, 0x81, 0x19, 0xa9, 0x97, 0x75, 0x8e, 0xb2, 0xa1, 0x41, 0x50, 0x8c, 0x76, 0xd6, 0x33, 0xfd, 0x16, 0xca, 0x13, 0x40, 0x46, 0x42, 0x25, 0xe4, 0xaf, 0x56, 0xad, 0x90, 0xc6, 0xae, 0x1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x6d, 0xf0, 0x20, 0xdc, 0x44, 0xad, 0x75, 0x83, 0x22, 0xdd, 0xd0, 0xfe, 0x92, 0x57, 0x2d, 0xf0, 0xc2, 0x14, 0x1b, 0x47, 0x3a, 0xe7, 0x2c, 0xc6, 0xc0, 0xeb, 0x5b, 0xa3, 0xba, 0x2e, 0xa9}} return a, nil } @@ -3114,7 +3114,7 @@ func idtablestakingScriptsGet_node_infoCdc() (*asset, error) { return a, nil } -var _idtablestakingScriptsGet_node_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcd\x6a\xeb\x30\x10\x85\xf7\x7a\x8a\x73\xbd\xb8\xd8\x1b\x67\x1f\xda\x86\xd0\x50\xc8\xa6\x04\x9a\x17\x18\x4b\xe3\x44\xad\xac\x31\xd2\x98\x2c\x42\xde\xbd\x38\xa2\xa4\xd0\x1f\xaa\x95\x60\xce\xcc\x37\xf3\xf9\x61\x94\xa4\x78\x0a\x72\xda\x6e\xf6\xd4\x05\x7e\x51\x7a\xf3\xf1\x80\x3e\xc9\x80\xea\x6b\xa1\x32\x66\xb1\xc0\xfe\xe8\x33\xb2\x4d\x7e\x54\x1c\x58\x33\x28\x04\xe8\x91\xe1\x63\x2f\xa0\x4e\x26\x05\x21\x8a\x63\x50\x74\x48\xac\x53\x8a\x19\x5e\x8d\x21\x6b\x39\xe7\x9a\x42\x68\xd0\x4f\x11\x03\xf9\x58\x93\x73\x89\x73\x5e\x62\x5d\x3e\xcd\xf2\x9b\x9d\xda\x67\x71\xbc\x9d\x01\x67\x63\x00\x20\xb0\x5e\x19\x73\x9d\x13\xee\xe7\x55\xd6\xd6\xca\x14\xf5\x63\x62\x73\x0d\xce\xaf\xb5\x34\x52\xe7\x83\x57\xcf\xb9\x3d\xb0\xde\xfd\x3f\xff\xc0\x28\xf3\x76\x53\x17\xbc\xbd\x3c\xd4\x7f\x48\xed\x48\x8f\xcd\xbf\x1b\xab\x93\x94\xe4\x54\xdf\xe8\xab\x15\x46\x8a\xde\xd6\xd5\xa3\x4c\xc1\x21\x8a\xa2\x84\x90\xb8\xe7\xc4\xd1\x32\x54\x8a\xb2\x5c\xee\x91\xee\x95\xad\x56\x4d\x39\xb6\x38\xfc\x4d\x4b\x3d\x37\x6f\x37\xcb\x4f\x4e\x5a\xef\x1a\x73\x31\xef\x01\x00\x00\xff\xff\xb1\x05\x86\x48\xe7\x01\x00\x00" +var _idtablestakingScriptsGet_node_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcd\x6a\xeb\x30\x10\x85\xf7\x7a\x8a\x83\x17\x17\x7b\xe3\xec\xc3\x6d\x43\x68\x28\x64\x53\x02\xcd\x0b\x8c\xe5\x71\x32\xad\xa2\x31\xd2\x98\x2c\x42\xde\xbd\x38\xa2\xb4\xd0\x1f\xaa\x95\x60\x46\xe7\x3b\xfa\xe4\x34\x6a\x32\x3c\x06\x3d\x6f\x37\x7b\xea\x02\x3f\x1b\xbd\x4a\x3c\x60\x48\x7a\x42\xf5\x75\x50\x39\xb7\x58\x60\x7f\x94\x8c\xec\x93\x8c\x86\x03\x5b\x06\x85\x00\x3b\x32\x24\x0e\x0a\xea\x74\x32\x10\xa2\xf6\x0c\x8a\x3d\x12\xdb\x94\x62\x86\x98\x73\xe4\x3d\xe7\x5c\x53\x08\x0d\x86\x29\xe2\x44\x12\x6b\xea\xfb\xc4\x39\x2f\xb1\x2e\x97\x66\xf9\x4d\xa7\xf6\x49\x7b\xde\xce\x80\x8b\x73\x00\x10\xd8\x6e\x8c\x79\xce\x09\x77\x73\x95\xb5\xf7\x3a\x45\x7b\x4f\x6c\x6e\x8b\xf3\x69\x3d\x8d\xd4\x49\x10\x13\xce\x6d\xa7\x29\xe9\xf9\xff\xbf\xcb\x0f\x98\x12\xb9\x9b\xba\x20\xfe\x7a\x5f\xff\x61\x6b\x47\x76\xfc\xa0\xad\x56\x18\x29\x8a\xaf\xab\x07\x9d\x42\x8f\xa8\x86\xc2\x44\xe2\x81\x13\x47\xcf\x30\x2d\x8a\x72\xe9\xaf\xdd\x0b\x7b\xab\x9a\xf2\xb9\xe2\xec\x37\x0d\xf5\xfc\x78\xbb\x59\x7e\x72\xd0\x4a\xdf\xb8\xab\x7b\x0b\x00\x00\xff\xff\x31\x19\xe4\x4c\xd7\x01\x00\x00" func idtablestakingScriptsGet_node_info_from_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -3130,7 +3130,7 @@ func idtablestakingScriptsGet_node_info_from_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_info_from_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0xe8, 0xc9, 0xfe, 0x53, 0x28, 0xaa, 0x6a, 0xc3, 0xe, 0xaf, 0xe3, 0x7b, 0xcb, 0x12, 0xef, 0xc9, 0x34, 0x4e, 0x11, 0x2e, 0x75, 0x24, 0x7b, 0xea, 0x4c, 0x3e, 0x15, 0xf8, 0x45, 0x1c, 0x2a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0xd7, 0x3, 0x14, 0x4b, 0x6c, 0x3a, 0x16, 0x47, 0x8e, 0xdb, 0x75, 0x1b, 0x8, 0xe, 0x87, 0x83, 0x39, 0x57, 0x8d, 0x2b, 0x31, 0x72, 0x62, 0x9d, 0x31, 0xbc, 0x7e, 0xc6, 0xbe, 0x92, 0xeb}} return a, nil } @@ -3634,7 +3634,7 @@ func lockedtokensAdminAdmin_deploy_contractCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminAdmin_deposit_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\xc1\x6e\xdb\x30\x0c\x86\xef\x7e\x0a\xb6\x87\xce\xbe\x24\x3b\x07\xeb\x8a\xcc\xc9\xa9\xc5\x1a\xb4\xc1\xee\x8c\xc4\xc6\x42\x15\x51\xa0\xe8\x74\xc5\xd0\x77\x1f\x64\x1b\xa9\xbd\xa5\x28\x4f\x36\xc1\xff\x17\xf9\x91\xee\x10\x59\x14\xee\xd8\x3c\x93\xdd\xf2\x33\x85\x04\x4f\xc2\x07\xf8\xfa\xfb\xee\xbe\xbe\x5d\xaf\xb6\xf7\xb7\xeb\x9f\xcb\xd5\xea\x61\xfd\xf8\x58\x14\xf3\xf9\x1c\x34\x57\x01\xda\x83\x0b\x90\xdc\x3e\x24\xd0\xc6\x25\x50\xc1\x90\xd0\xa8\xe3\x00\xca\x60\x29\x72\x72\x0a\x08\x06\x23\xee\x9c\x77\xfa\xda\xc9\x5d\x50\xce\xd9\x36\x29\xdb\x57\x88\xc2\x47\x67\x49\xbe\x24\x40\x63\xb8\x0d\x0a\xda\xa0\x02\x7a\xcf\x2f\xd9\x9a\x0e\xd9\x0e\xad\xed\xd4\x43\x4d\xca\x39\x6d\x08\x84\x0c\x8b\x2d\x8a\xd1\xeb\xe5\x60\xbd\x19\x9c\x97\xd6\x0a\xa5\xb4\x80\xe1\xa3\x82\x3f\x45\x01\x00\x10\x85\x22\x0a\x95\xdd\x28\x0b\xc0\x56\x9b\xf2\x07\x8b\xf0\xcb\x2f\xf4\x2d\x55\x70\xb5\xec\x5f\x3b\x29\x72\x78\xd2\xd1\x48\x0f\x64\xc8\x1d\x49\xe0\x1a\xf6\xa4\x43\xfd\x07\x1d\x54\x27\x8f\x1c\xb3\x93\x89\xa3\x34\xdb\x93\x7e\xbb\x1a\x6f\x61\xd6\xff\x0c\x8e\xb5\x10\x2a\xcb\xf7\x72\x62\x91\xe3\x53\xcd\xa6\xdd\x79\x67\x36\xa8\xcd\x44\x5b\x5d\x4c\xbb\xd9\x75\x83\x97\xd3\x1e\x6f\x6e\x20\x62\x70\xa6\xbc\xac\xb9\xf5\x16\x02\x2b\xf4\x85\x23\x04\x79\x07\x3d\x03\xa1\x27\x12\x0a\x86\x2e\xab\x29\xaf\xee\x64\x96\x19\x73\xcd\xde\x53\x7f\x24\xd7\xfd\x0d\x7d\xc6\x61\x7b\x46\xfb\x0f\x87\x33\x0c\xde\x55\x1b\x71\x47\x54\x9a\x00\xa8\x2e\xde\xfb\xfb\x7f\x97\x33\xb4\xb6\x3e\x65\x4b\x83\x71\x71\x76\x82\x9e\xd5\x5b\xf1\x56\xfc\x0d\x00\x00\xff\xff\xfd\x8f\x6e\x94\x46\x03\x00\x00" +var _lockedtokensAdminAdmin_deposit_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\xc1\x6e\xdb\x30\x0c\x86\xef\x7e\x0a\xae\x87\xce\xbe\x24\x3b\x07\xeb\x8a\xcc\xc9\xa9\xc5\x1a\xb4\xc1\xee\x8c\xc4\xc6\x42\x15\x51\xa0\xe8\x74\xc5\xd0\x77\x1f\x64\x1b\xa9\x9d\x65\x18\x4f\x36\xc1\xff\x27\x3f\x8a\xee\x10\x59\x14\xee\xd9\xbc\x90\xdd\xf2\x0b\x85\x04\xcf\xc2\x07\xf8\xf2\xeb\xfe\xa1\xbe\x5b\xaf\xb6\x0f\x77\xeb\x1f\xcb\xd5\xea\x71\xfd\xf4\x54\x14\xf3\xf9\x1c\x34\x57\x01\xda\x83\x0b\x90\xdc\x3e\x24\xd0\xc6\x25\x50\xc1\x90\xd0\xa8\xe3\x00\xca\x60\x29\x72\x72\x0a\x08\x06\x23\xee\x9c\x77\xfa\xd6\xc9\x5d\x50\xce\xd9\x36\x29\xdb\x37\x88\xc2\x47\x67\x49\x3e\x27\x40\x63\xb8\x0d\x0a\xda\xa0\x02\x7a\xcf\xaf\xd9\x9a\x0e\xd9\x0e\xad\xed\xd4\x43\x4d\xca\x39\x6d\x08\x84\x0c\x8b\x2d\x8a\x51\xf7\x72\xb0\xde\x0c\xce\x4b\x6b\x85\x52\x5a\xc0\xf0\x51\xc1\xef\xa2\x00\x00\x88\x42\x11\x85\xca\x0e\x65\x01\xd8\x6a\x53\x7e\x67\x11\x7e\xfd\x89\xbe\xa5\x0a\xae\x97\x7d\xb7\x93\x22\x87\x27\x1d\x21\x3d\x92\x21\x77\x24\x81\x1b\xd8\x93\x0e\xf5\xff\x98\xa0\x3a\x79\xe4\x98\x9d\x4c\x1c\xa5\xd9\xae\xeb\xfb\xf5\x7a\xfc\x10\xb3\xfe\x67\x30\xad\x85\x50\x59\xbe\x95\x13\x97\x1c\xff\xd5\x6c\xda\x9d\x77\x66\x83\xda\x4c\xb4\xd3\x79\x6e\x6f\x21\x62\x70\xa6\xbc\xaa\xb9\xf5\x16\x02\x2b\xf4\x53\x8d\x70\xf3\xbe\x7b\x5e\xa1\x67\x12\x0a\x86\xae\xaa\xe9\x6e\xba\xf3\x58\xe6\x95\xd6\xec\x3d\xf5\x07\x71\xd3\xdf\xcb\x94\x79\x4f\x7a\x06\xbc\xbd\xa0\x3d\x03\xbe\x00\xfb\xa1\xda\x88\x3b\xa2\xd2\x84\xb4\xfa\xf4\x31\xdf\xdf\xef\x36\x43\x6b\xeb\x53\xb6\x34\x18\x17\x17\x09\xfa\x5d\xbd\x17\xef\xc5\x9f\x00\x00\x00\xff\xff\xe8\x42\x4a\xc5\x32\x03\x00\x00" func lockedtokensAdminAdmin_deposit_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3650,7 +3650,7 @@ func lockedtokensAdminAdmin_deposit_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_deposit_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe7, 0xca, 0x8e, 0xac, 0xef, 0xef, 0x5a, 0x5a, 0x35, 0xfb, 0x72, 0xc8, 0xf1, 0x54, 0x61, 0x28, 0x3e, 0x4e, 0x65, 0xed, 0xd, 0x5e, 0xf6, 0xc3, 0xcd, 0x61, 0xc8, 0x26, 0xb9, 0x36, 0x7a, 0xda}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0x9b, 0xd6, 0x2b, 0xef, 0xc1, 0x25, 0x88, 0xc2, 0x4f, 0x5a, 0x57, 0xd4, 0xda, 0xd7, 0xb, 0x75, 0xb8, 0x3f, 0xd6, 0xe4, 0x98, 0xc5, 0xea, 0xfe, 0xe2, 0xbe, 0x52, 0x22, 0x43, 0xc5, 0xa}} return a, nil } @@ -3674,7 +3674,7 @@ func lockedtokensAdminAdmin_remove_delegatorCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminCheck_main_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\x4d\x8b\xdb\x30\x10\xbd\xfb\x57\x4c\x7c\x58\x64\x28\xa6\x67\xd3\xec\x92\x26\x29\x2d\xbb\x74\x97\x4d\xe8\x7d\x22\x8f\x1d\xb1\xb2\x64\xa4\x31\x5b\x28\xf9\xef\xc5\x92\x1d\xac\x36\xf4\x50\x5d\x82\x26\xef\xcd\xfb\xb0\x54\xd7\x5b\xc7\xf0\x65\x30\xad\x3a\x69\x3a\xda\x37\x32\xd0\x38\xdb\x41\x9e\xcc\xf2\x6c\x46\x6a\xfb\x9e\xa0\xe6\x7b\x9e\xcd\x90\x27\x2b\xdf\xa8\x0e\x43\x1f\x51\x1f\x7f\x3e\x3d\x6f\x1f\xf7\xbb\xe3\xf3\xe3\xfe\xfb\x66\xb7\x7b\xdd\x1f\x0e\x59\xc6\x0e\x8d\x47\xc9\xca\x1a\xd1\xa1\x32\x1b\x29\xed\x60\xb8\x82\x4d\x5d\x3b\xf2\xbe\x80\x5f\x59\x06\x00\xd0\x3b\xea\xd1\x91\xf0\xaa\x35\xe4\x2a\xc0\x81\xcf\xe2\xb3\x75\xce\xbe\xff\x40\x3d\x50\x01\x77\x13\xf7\x4a\x19\x8f\x26\x06\xac\x3b\x65\x5e\xa9\x81\x35\x44\x76\xe9\xd9\x3a\x6c\xa9\x3c\x05\xfe\xa7\xbb\xa5\xdb\x32\xfc\x6c\x46\xce\xd6\x6a\x4d\xc1\xdb\xbd\x18\x33\x54\x49\xac\x72\x71\xf9\x03\x7e\x88\xfb\x5f\x90\xcf\xc5\xd5\xca\x78\x1e\x1e\xa0\x47\xa3\xa4\xc8\xb7\x76\xd0\x35\x18\xcb\x10\x4d\x00\x82\xa3\x86\x1c\x19\x49\xc0\x16\xf8\x4c\xa0\x83\x00\x70\xa8\x3a\xa4\x00\x79\xd5\xc8\x8b\x34\x65\x04\x4f\x1d\x7c\x33\x8d\x8d\x89\x5b\xe2\x69\xb6\xec\x37\x75\x55\x4a\xec\xf1\xa4\xb4\x62\x45\xbe\x6c\x89\x6f\x35\xf2\xd5\xea\x9a\xdc\xbd\xb8\x51\xc1\x42\xf4\x65\x38\x69\x25\x43\xf0\x55\xaa\x11\x63\x8a\xff\xed\xa3\x0f\x8b\xe1\x2f\xc1\x7f\xd6\x00\xeb\x9b\xb5\x8c\x11\x93\x45\xd3\x63\x13\x8b\x5d\xe8\x3d\x39\x16\x89\xdb\xf9\x21\x95\x8b\x52\x31\x52\xab\x54\xa8\x80\xd5\x1a\x8c\xd2\x1f\x12\x7e\x47\xde\x63\x4b\x15\xe4\xc7\x33\x81\xef\x49\xaa\x46\x51\x0d\x38\xb9\x55\x3e\x14\x80\xf3\x87\x9f\xe6\x2b\xd8\xa2\x19\xff\xf0\x64\xea\xe4\x51\xf8\xfc\xba\x3f\xf6\x7a\xc9\x2e\xd9\xef\x00\x00\x00\xff\xff\xc5\x16\x02\x9f\xcf\x03\x00\x00" +var _lockedtokensAdminCheck_main_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\x4d\x6b\xdc\x30\x14\xbc\xfb\x57\x4c\x7c\x08\x36\x14\xd3\xb3\xe9\x26\x6c\x77\xb7\xb4\x24\x34\x21\xbb\xf4\xfe\x56\x7e\xf6\x8a\xc8\x92\x91\x64\x52\x28\xf9\xef\xc5\xf2\x07\x56\x1b\x72\x89\x2e\x8b\xde\xce\xcc\x9b\x19\x4b\xb6\x9d\xb1\x1e\xdf\x7a\xdd\xc8\xb3\xe2\x93\x79\x66\x8d\xda\x9a\x16\x69\x34\x4b\x93\x19\xa9\xcc\x4b\x84\x9a\xef\x69\x32\x43\xee\x8d\x78\xe6\x2a\x0c\xdd\x88\xfa\xfc\xfb\xfe\x61\x77\x77\xd8\x9f\x1e\xee\x0e\x3f\xb7\xfb\xfd\xd3\xe1\x78\x4c\x12\x6f\x49\x3b\x12\x5e\x1a\x9d\xb5\x24\xf5\x56\x08\xd3\x6b\x5f\x62\x5b\x55\x96\x9d\xcb\xf1\x27\x49\x00\xa0\xb3\xdc\x91\xe5\xcc\xc9\x46\xb3\x2d\x41\xbd\xbf\x64\x5f\x8d\xb5\xe6\xe5\x17\xa9\x9e\x73\x5c\x4f\xdc\x85\x32\x1c\xc5\x1e\x54\xb5\x52\x3f\x71\x8d\x0d\x46\x76\xe1\xbc\xb1\xd4\x70\x71\x0e\xfc\x2f\xd7\x6b\xb7\x45\xf8\xd9\x0e\x9c\x9d\x51\x8a\x83\xb7\x9b\x6c\xc8\x50\x46\xb1\x8a\xd5\xe5\x1f\xf8\x71\xd4\x7f\x24\x7f\xc9\x17\x2b\xc3\xb9\xbd\x45\x47\x5a\x8a\x2c\xdd\x99\x5e\x55\xd0\xc6\x63\x34\x01\x82\xe5\x9a\x2d\x6b\xc1\xf0\x06\xfe\xc2\x50\x61\x01\x7c\xa8\x3a\xa4\x80\x58\x76\xa4\x79\x9c\x72\x04\x4f\x1d\xfc\xd0\xb5\x19\x13\x37\xec\xa7\xd9\xba\xdf\xd8\x55\x21\xa8\xa3\xb3\x54\xd2\x4b\x76\xef\x94\xf2\xdd\xa8\x8a\xed\x4d\xf6\x46\x0b\xab\xbd\x8f\xfd\x59\x49\xf1\x91\xec\x5d\x50\xc0\x7f\xca\xef\x46\xc6\xe6\xcd\x0a\x8a\x86\x7d\x24\x34\x3d\xac\x6c\xa5\x45\xce\xb1\xf5\x59\xe4\x76\x7e\x34\xc5\xaa\x40\x1a\xa9\x65\xbc\x28\xc7\xd5\x06\x5a\xaa\x4f\x11\xbf\x65\xe7\xa8\xe1\x12\xe9\xe9\xc2\x70\x1d\x0b\x59\x4b\xae\x40\x93\x5b\xe9\x42\x01\x34\x7f\xe4\x69\x7e\x85\x1d\xe9\xe1\x0f\xc7\xba\x8a\x1e\x80\x4b\x17\xfd\xb1\xd7\xd7\xe4\x35\xf9\x1b\x00\x00\xff\xff\xc8\x2d\x1b\x07\xbb\x03\x00\x00" func lockedtokensAdminCheck_main_registrationCdcBytes() ([]byte, error) { return bindataRead( @@ -3690,7 +3690,7 @@ func lockedtokensAdminCheck_main_registrationCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/check_main_registration.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7c, 0x37, 0x54, 0x6f, 0x94, 0xa, 0xb4, 0xc8, 0xc2, 0x38, 0xf7, 0xd8, 0xda, 0x58, 0x74, 0x2f, 0x71, 0xfb, 0x3b, 0xd9, 0xb1, 0x8a, 0x67, 0x45, 0x6f, 0xb4, 0x53, 0x6e, 0x2e, 0x69, 0x96, 0x6c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0xc0, 0x78, 0xc8, 0x9a, 0xaf, 0x7c, 0xa6, 0x7f, 0x30, 0x91, 0x5c, 0x56, 0x52, 0x4e, 0x10, 0x2a, 0xd8, 0xac, 0xea, 0xa4, 0xc0, 0x2e, 0x28, 0xf, 0x40, 0xed, 0x8, 0x99, 0x57, 0xdd, 0x40}} return a, nil } @@ -3814,7 +3814,7 @@ func lockedtokensAdminCustody_setup_account_creatorCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminDeposit_locked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\xc1\x4e\xdc\x30\x10\x3d\x93\xaf\x98\xcd\x01\xb2\x12\x64\x7b\xa8\x7a\x88\x16\xe8\x76\x17\x7a\x00\x95\x0a\x28\x3d\x3b\xce\x64\xe3\xe2\xb5\x23\xdb\x61\x91\x10\xff\x5e\xd9\x8e\xd3\x78\x59\x41\x73\x89\x32\x1e\xbf\x79\x33\xf3\x5e\xd8\xa6\x95\xca\xc0\x65\x27\xd6\xac\xe4\x78\x2f\x1f\x51\x40\xad\xe4\x06\xd2\x28\x96\x26\x21\x93\xcb\x6d\x94\x15\xbe\xd3\x24\xa4\x5c\x4b\xfa\x88\x95\x0b\x6a\x9f\xf5\xe9\xf9\xfa\x66\x79\x75\xb1\xba\xbf\xb9\xba\xf8\xb1\x58\xad\x6e\x2f\xee\xee\x92\xc4\x28\x22\x34\xa1\x86\x49\x91\x19\x59\xc0\xa2\xaa\x14\x6a\x7d\x0c\x64\x23\x3b\x61\x0a\xf8\x75\xc9\x9e\xbf\x7c\x9e\xc2\x4b\x92\x00\x00\xcc\x66\x70\xdf\x20\x3c\x90\x8e\x1b\x50\xa8\x65\xa7\x28\x82\x69\x88\x81\x46\xf2\x4a\x83\x69\x10\x8c\x2f\xeb\xa2\x44\x21\x94\xc8\xc4\x1a\x5c\xa9\x1a\x95\xc2\xca\x41\x71\x34\xa0\x51\x18\x87\x55\xc0\xd7\x97\xa8\xd9\xdc\x85\x5f\x7d\xd5\x56\x61\x4b\x14\x66\xa4\xda\x30\x51\x00\xe9\x4c\x93\x7d\x93\x4a\xc9\xed\x03\xe1\x1d\x4e\xe1\x70\x41\xa9\xe5\x3b\xf0\xec\xb9\x7e\x47\x03\x04\x14\xd6\xa8\x50\x58\xa2\xd2\x11\x74\x38\x47\x1a\xb4\x91\x0a\x2b\x78\xb2\xa5\x86\x6b\x96\x97\x8b\xdc\x62\x0d\xa7\x3e\x37\xb7\x99\x64\x8d\x79\xe9\xaa\xce\x1d\x83\x98\xef\x6f\x66\x9a\x4a\x91\x2d\x29\xb9\x25\x34\xec\xc4\x37\x72\x96\xd9\x25\x14\x30\xeb\x81\x66\x75\x38\x77\xc7\xd3\xe4\xe0\xe0\xe0\xfc\x1c\x5a\x22\x18\xcd\xd2\xa5\xec\x78\x05\x42\x1a\xf0\xf5\xde\x76\x20\xb7\x02\xd5\x91\xf6\x8b\x98\xa4\xd3\x24\xa2\xef\x38\xef\xa1\x3f\x24\xd9\x27\xf4\x72\x38\xd6\x4a\xee\x5e\x0b\x7b\x69\x29\x39\x47\xa7\x8c\xb3\x2c\xba\x68\x1f\xdf\x4d\x74\x73\xf4\xb1\x73\xff\xce\x57\xff\x49\x4c\x13\x01\x4d\xa3\xaf\x77\xda\xdf\xb3\x42\xee\xaa\x79\xa9\xf9\x26\x81\x0e\x05\xc7\xf3\x20\x5a\xa3\x32\x71\x07\x61\x3e\xf9\x1a\x4d\xaf\x9c\x8c\x78\xe5\x17\x60\xe4\x14\x26\xa7\x20\x18\x3f\x8e\x2e\x6d\x50\x6b\xb2\xc6\x02\x52\xeb\x00\xdd\x22\x65\x35\xc3\x0a\x88\x07\x00\xa6\x1d\x65\x12\xa8\xf5\xf1\x09\x2c\x89\xb0\x07\x1a\x45\x15\xd1\xd6\x69\xf2\x6f\x12\x63\xd5\x06\x29\x05\x23\x39\xff\x7e\xa8\x5b\x8d\xbc\xce\x07\x43\xc1\xfc\x64\x50\x71\xbe\xed\x01\xb3\xe0\x6a\xff\xf6\xf3\xef\x3d\x86\xcf\x48\x3b\x83\x7b\x0c\x64\x2b\x2b\xa4\xac\x65\x28\xcc\x91\x86\xb6\x2b\x39\xa3\x43\xdf\xb2\xfc\x83\x34\xb6\xcf\x90\x0d\xa7\x30\x1a\xb1\x91\xd3\xff\x71\xe7\xb8\xd6\x2d\x52\x64\x4f\xa8\x76\xe1\x5d\xd0\x2b\x7c\x48\x8f\xd5\x4d\x49\x4b\x4a\xc6\x99\x61\xa8\xed\x9e\xe7\x87\x3b\x3f\x98\x00\xfd\xba\x47\xde\x33\xdf\xe3\xcc\xaf\x6b\xf0\xf2\x1b\x36\x6e\x77\x93\x7d\xb6\xca\x3e\xb6\xb4\xc7\x7a\xbf\xff\x5e\x2f\x6e\xa5\x69\x3c\xbd\x15\xb6\x52\x33\xbf\x9e\xb0\x60\x11\x24\xc3\xc4\x1b\x28\xb5\x4b\x7e\x34\xc6\xbc\xf2\x60\xfd\x5f\x6a\x7e\x12\x8b\x29\x08\xe5\x35\xf9\x1b\x00\x00\xff\xff\x86\x35\xe5\xe7\xac\x06\x00\x00" +var _lockedtokensAdminDeposit_locked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4d\x4f\xdc\x30\x10\x3d\x93\x5f\x31\xe4\x00\x89\x04\xd9\x1e\xaa\x1e\x22\x3e\xba\xdd\x85\x1e\x40\xa5\x02\x4a\xcf\x8e\x33\xd9\xb8\x78\xed\xc8\x76\x58\x24\xc4\x7f\xaf\x6c\xc7\x69\xbc\xac\xa0\xb9\x44\x1e\xcf\xc7\x9b\x99\xf7\xcc\xd6\x9d\x54\x06\x2e\x7b\xb1\x62\x15\xc7\x7b\xf9\x88\x02\x1a\x25\xd7\x90\x46\xb6\x34\x09\x9e\x5c\x6e\x22\xaf\x70\x4e\x93\xe0\x72\x2d\xe9\x23\xd6\xce\xa8\xbd\xd7\xa7\xe7\xeb\x9b\xc5\xd5\xc5\xf2\xfe\xe6\xea\xe2\xc7\x7c\xb9\xbc\xbd\xb8\xbb\x4b\x12\xa3\x88\xd0\x84\x1a\x26\x45\x66\x64\x09\xf3\xba\x56\xa8\xf5\x11\x90\xb5\xec\x85\x29\xe1\xd7\x25\x7b\xfe\xf2\x39\x87\x97\x24\x01\x00\x98\xcd\xe0\xbe\x45\x78\x20\x3d\x37\xa0\x50\xcb\x5e\x51\x04\xd3\x12\x03\xad\xe4\xb5\x06\xd3\x22\x18\x5f\xd6\x59\x89\x42\xa8\x90\x89\x15\xb8\x52\x0d\x2a\x85\xb5\x4b\xc5\xd1\x80\x46\x61\x5c\xae\x12\xbe\xbe\x44\xcd\x16\xce\xfc\xea\xab\x76\x0a\x3b\xa2\x30\x23\xf5\x9a\x89\x12\x48\x6f\xda\xec\x9b\x54\x4a\x6e\x1e\x08\xef\x31\x87\x83\x39\xa5\x16\xef\x88\x73\xc0\xfa\x1d\x0d\x10\x50\xd8\xa0\x42\x61\x81\x4a\x07\xd0\xe5\x39\xd4\xa0\x8d\x54\x58\xc3\x93\x2d\x35\x86\x59\x5c\xce\x72\x8b\x0d\x9c\x7a\xdf\xc2\x7a\x92\x15\x16\x95\xab\x7a\xe2\x10\xc4\x78\x7f\x33\xd3\xd6\x8a\x6c\x48\xc5\x2d\xa0\x71\x27\xbe\x91\xb3\xcc\x2e\xa1\x84\xd9\x90\x68\xd6\x84\x7b\x77\x9d\x27\x7b\x7b\x7b\xe7\xe7\xd0\x11\xc1\x68\x96\x2e\x64\xcf\x6b\x10\xd2\x80\xaf\xf7\xb6\x03\xb9\x11\xa8\x0e\xb5\x5f\xc4\x7e\x9a\x27\x11\x7c\x87\x79\x07\xfc\xd1\xc9\x7e\xa1\x97\x83\x29\x57\x0a\xf7\x9b\xdb\xa0\x85\xe4\x1c\x1d\x33\xce\xb2\x28\xd0\x7e\xbe\x9b\x28\x72\x72\xd8\x8a\xbf\xf3\xd5\x7f\x12\xd3\x46\x89\xf2\xe8\xf4\x4e\xfb\x3b\x56\xc8\x5d\x35\x4f\x35\xdf\x24\xd0\xb1\xe0\x74\x1e\x44\x6b\x54\x26\xee\x20\xcc\xa7\x58\xa1\x19\x98\x93\x11\xcf\xfc\x12\x8c\xcc\x61\xff\x14\x04\xe3\x47\x51\xd0\x1a\xb5\x26\x2b\x2c\x21\xb5\x0a\xd0\x1d\x52\xd6\x30\xac\x81\xf8\x04\xc0\xb4\x83\x4c\x02\xb4\xc1\xbe\x0f\x0b\x22\xec\x85\x46\x51\x47\xb0\x75\x9a\xfc\x9b\xc4\x94\xb5\x81\x4a\x41\x48\x4e\xbf\x1f\xf2\x56\x23\x6f\x8a\x51\x50\x70\x72\x3c\xb2\xb8\xd8\x0c\x09\xb3\xa0\x6a\xff\xf7\xf3\x1f\x34\x86\xcf\x48\x7b\x83\x3b\x04\x64\x2b\x2b\xa4\xac\x63\x28\xcc\xa1\x86\xae\xaf\x38\xa3\x63\xdf\xb2\xfa\x83\x34\x96\xcf\xe8\x0d\xa7\x30\x19\xb1\x91\xf9\xff\xa8\x73\x5a\xeb\x16\x29\xb2\x27\x54\xdb\xe9\x9d\xd1\x33\x7c\x74\x8f\xd9\x4d\x49\x47\x2a\xc6\x99\x61\xa8\x47\xaa\x6f\xbd\x31\x21\xfb\xeb\x0e\x86\xcf\x7c\x9b\x33\xbf\xb1\x51\xce\x6f\x00\xf9\xf5\x7d\x24\x5f\x1f\xf4\x7e\xaf\x03\x37\xdc\xfa\xd2\x78\x52\x4b\xec\xa4\x66\x7e\x15\x61\x99\x22\xd0\x83\x89\x37\xa9\xd4\x36\xca\xc9\xc8\x8a\xda\x27\x1b\x5e\xa4\x93\xe3\x98\x38\x81\x14\xaf\xc9\xdf\x00\x00\x00\xff\xff\x7c\xc8\x24\x02\x98\x06\x00\x00" func lockedtokensAdminDeposit_locked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3830,11 +3830,11 @@ func lockedtokensAdminDeposit_locked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/deposit_locked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0xe3, 0xb, 0xc5, 0xa0, 0xac, 0x11, 0x5a, 0x85, 0x2c, 0xbc, 0xb0, 0x3c, 0xa8, 0xaf, 0x26, 0xde, 0xe3, 0xd2, 0x7c, 0x25, 0x54, 0xb0, 0xde, 0xc6, 0x2, 0x45, 0x83, 0xbd, 0xfd, 0x9d, 0x6c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbc, 0x81, 0x88, 0x9a, 0xe4, 0x6, 0x5d, 0x7e, 0x3, 0x4, 0xee, 0x1c, 0xf5, 0xaf, 0xb1, 0x75, 0x9, 0x91, 0x78, 0x3d, 0xc7, 0x51, 0x59, 0x90, 0x85, 0xdc, 0x56, 0x1b, 0xd7, 0x2a, 0xac, 0xe4}} return a, nil } -var _lockedtokensAdminGet_unlocking_bad_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x4f\x4f\x83\x40\x10\xc5\xef\x7c\x8a\x69\x0f\x06\x2e\xf4\x62\x3c\x34\x62\x83\x1a\x3f\x80\x89\x27\xe3\x61\xd9\x1d\xc8\x84\xed\x0c\xd9\x3f\x51\x42\xf8\xee\xa6\x85\x62\x63\xd9\xd3\x6e\xf6\xbd\xf7\x7b\x33\x49\xa2\xb4\x46\xef\x53\x65\x6d\x06\x75\x64\x38\x2a\xe2\x34\x48\x8b\x5c\x9a\x23\xf1\x1e\x4a\x63\x1c\x7a\x9f\xed\x61\x98\xaf\x7b\xf8\x78\xa3\x9f\x87\xfb\x11\x86\x24\x01\x00\xb0\x18\x40\x4b\xd7\x4b\xfd\x4a\x3a\x90\xb0\x72\xfd\x9a\xbc\x80\x61\xfc\x73\x28\xad\x25\x72\x80\x02\x1a\x0c\xe5\xf4\xb8\x22\x67\x67\xe1\xa2\x36\x4b\xf2\x3b\xd6\xe8\x90\x35\x42\x71\xc9\xc8\xb5\xea\x54\x45\x96\x02\xa1\xcf\x1b\x0c\x8f\x77\x37\xf4\xa7\x74\xd7\xc5\xca\x92\xde\x45\xb6\xa2\x5b\xe2\xe6\x59\x99\x99\xeb\xb3\x4d\x5e\x89\x73\xf2\x9d\x4e\xdc\xd3\x39\x1c\xa0\x53\x4c\x3a\xdd\xbe\x48\xb4\x06\x58\xc2\xa9\x2a\x54\xca\x5c\xc0\xfe\xaa\xd7\x36\x9b\x66\xab\xc5\x81\x9a\xe0\x40\xbc\x56\x3c\x6f\xb1\xf7\x30\x2c\xa0\xff\xbb\xfb\x9c\xed\x5f\x50\xac\xd9\x97\xef\xcd\x39\x61\x5e\xa9\xc3\x10\x1d\xdf\x64\x25\xe3\x6f\x00\x00\x00\xff\xff\x3e\x5d\x4f\xeb\xe4\x01\x00\x00" +var _lockedtokensAdminGet_unlocking_bad_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x4f\x4f\x83\x40\x10\xc5\xef\x7c\x8a\xb1\x07\x03\x17\x7a\x31\x1e\x88\xd8\xa0\xc6\x0f\x60\xe2\xc9\x78\x58\x76\x87\x66\xc2\x76\x86\xec\x9f\x28\x21\x7c\x77\xd3\x42\xb1\x69\xd9\xd3\x6e\xf6\xbd\xf7\x7b\x33\x49\xa2\xb4\x46\xef\x53\x65\x6d\x06\x4d\x64\x38\x28\xe2\x34\x48\x8b\x5c\x99\x03\x71\x01\x95\x31\x0e\xbd\xcf\x0a\x18\xe6\x6b\x01\x9f\xef\xf4\xfb\xf8\x30\xc2\x90\x24\x00\x00\x16\x03\x68\xe9\x7a\x69\xde\x48\x07\x12\x56\xae\x5f\x93\x97\x30\x8c\xff\x0e\xa5\xb5\x44\x0e\x50\xc2\x1e\x43\x35\x3d\x2e\xc8\xd9\x49\xb8\xa8\xcd\x92\xfc\x81\x0d\x3a\x64\x8d\x50\x9e\x33\x72\xad\x3a\x55\x93\xa5\x40\xe8\xf3\x5a\x9c\x93\x9f\xa7\xfb\x9b\x02\xcf\xe9\xb6\x8b\xb5\x25\xbd\x8d\x6c\x45\xb7\xc4\xfb\x17\x65\x66\xb4\x9f\x80\xc7\xb3\xdb\x41\xa7\x98\x74\xba\x79\x95\x68\x0d\xb0\x84\x63\x47\xa8\x95\x39\x13\xfd\x45\xa1\x4d\x36\x0d\xd5\x88\x03\x35\x21\x81\x78\xad\x71\xde\x62\xef\x61\x58\x40\xd7\x4b\xfb\x9a\xed\xdf\x50\xae\xd9\x97\xef\xbb\x53\xc2\xbc\x4b\x87\x21\x3a\xbe\xc9\x4a\xc6\xbf\x00\x00\x00\xff\xff\x4f\xcb\x8e\xa1\xdd\x01\x00\x00" func lockedtokensAdminGet_unlocking_bad_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3850,7 +3850,7 @@ func lockedtokensAdminGet_unlocking_bad_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/get_unlocking_bad_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0x51, 0xe, 0x74, 0xba, 0xa6, 0x38, 0x71, 0xa7, 0xb, 0xbc, 0x3b, 0xed, 0x9a, 0x7, 0xf, 0xee, 0xd, 0x97, 0x9b, 0x80, 0x62, 0xe8, 0x47, 0x4, 0x6d, 0xf3, 0xc5, 0xc3, 0x4c, 0x3d, 0xab}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0xb7, 0x87, 0x31, 0xb3, 0x2d, 0x91, 0xa6, 0xa3, 0x48, 0x62, 0x10, 0x24, 0x2, 0xc7, 0x38, 0xec, 0xbc, 0x61, 0x3c, 0xef, 0xae, 0x58, 0x43, 0x81, 0x83, 0x14, 0xe3, 0xd5, 0x94, 0xf4, 0x46}} return a, nil } @@ -3874,7 +3874,7 @@ func lockedtokensAdminUnlock_tokensCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x6f\xe3\x46\x0c\xbd\xfb\x57\x70\xf7\x90\xca\x40\x60\xf7\x50\xf4\x60\x24\xbb\x70\x93\xb4\x0d\x36\xed\x2e\x92\xec\xa9\xe8\x81\xd6\xd0\xd6\x20\xd2\x8c\x31\x43\xc5\x09\x02\xff\xf7\x82\x33\x92\x3d\xfa\x88\xbb\xba\x24\x96\xc9\xc7\xaf\x47\x3e\xeb\x6a\x6b\x1d\xc3\x9d\xcd\x9f\x48\x3d\xda\x27\x32\x1e\xd6\xce\x56\xf0\xf3\xcb\xdd\xd7\xab\x2f\x37\xd7\x8f\x5f\xbf\xdc\xfc\xbd\xbc\xbe\xbe\xbf\x79\x78\x98\x4c\xe6\x73\x78\x2c\xb4\x07\x76\x68\x3c\xe6\xac\xad\x81\xda\x93\x07\x2e\x08\xca\x00\x02\x1c\x51\x50\x55\xda\x88\x03\x5b\xf0\xc4\xc1\xa2\x36\x62\x03\xa5\xae\x34\xc3\xda\x3a\xa8\xea\x92\xf5\xb6\x24\xc0\x3c\xb7\xb5\x61\x2f\x0e\xda\x00\x82\xd7\x66\x53\x52\x1a\x28\x06\x3f\x98\x02\x2a\xe5\xc8\x4b\xf0\xda\x93\x02\xf4\xf0\x44\xaf\x01\xc0\x17\xb6\x2e\x15\xac\x28\x09\x2a\x16\x7d\xc7\xc9\x24\x81\xcf\xa2\xdd\xad\x59\xdb\x05\xbc\x2d\xa3\xcd\x02\xbe\xff\xae\x5f\x7e\xfd\x65\x3f\x85\xb7\xc9\x04\x00\x60\xeb\x68\x8b\x8e\xb2\x50\xde\x02\xb0\xe6\x22\x7b\x60\xeb\x70\x43\x53\x38\x5b\xc6\x10\x07\x6b\x79\xe6\x73\xf8\xde\xa6\xb0\x1c\xe4\xce\x05\x32\x14\xa8\xc0\xdb\x8a\xc0\xcb\x30\xec\x1a\xc8\x39\xeb\x52\x04\x74\x04\x9e\xad\x23\x25\xed\x61\x99\x81\xd2\x21\x6f\x74\xaf\xe0\xad\x54\xfa\x0a\x39\x1a\xa9\x5a\x1b\xbf\xa5\x9c\x49\x41\x89\x4c\x1d\x9c\xdb\x75\xe8\x49\x3a\x3f\x43\xa4\xbc\x4c\xc9\xd5\xe6\x38\x10\xd6\x15\xf9\xf3\xd4\x95\x0b\x32\xc1\x39\x09\xac\x3d\x18\xcb\x60\x9f\xc9\xed\x9c\x66\x26\x73\xf0\x78\x46\x07\x2b\x54\x4d\xc5\x7e\xa4\xa7\x70\x19\x49\x32\xf3\xb1\x7f\xb3\xd2\xa2\xba\x18\x98\x7d\xca\x84\x90\x0b\x98\x37\x66\xf3\x38\x28\x6d\x36\xbf\x1d\xe1\xa7\x87\xb8\xf2\x7c\xfe\x0c\x6f\x7b\x61\xc4\x00\xec\x38\x96\x92\x38\x86\xbf\xa7\xf5\x20\x93\x95\x75\xce\xee\x2e\xce\xd2\xbd\x98\x85\x3f\x4b\xb1\xbb\xb2\x65\x49\xa1\x09\x6d\x72\x1d\xc3\xe4\x43\xcf\xbc\x61\xca\x37\xe4\x62\x90\xf1\x16\x8d\xce\xb3\x8f\x57\x81\xbb\xd2\xd5\x98\x04\x20\x38\x5a\x93\x23\x93\x93\x4c\x49\x26\x10\x92\x85\xfc\x00\xfb\x71\x7a\xac\x4b\xd6\xaa\xa5\x7c\x53\xbd\x50\xe6\xc8\xee\x99\xac\x49\x4a\xd0\x66\xbe\xcb\xb2\x14\xea\x09\xbe\x5e\x4b\x7b\x7c\x60\xdd\x8a\x72\xac\x3d\xc1\x8e\x40\x59\xf3\x13\x03\xec\xd0\x30\xb0\xed\xfb\x3b\x7a\x26\x17\xf7\x9c\x0c\x6b\xd7\x65\x99\x5e\x83\xec\x3c\xea\xd2\xf7\x1d\xd9\xc2\xa6\x39\x10\xda\xac\xad\xab\x30\x78\x48\x21\x87\x3b\xd0\x2c\x4c\xc7\x35\x66\xd9\x9c\x9d\x86\x08\x52\x60\x1c\xe8\x86\xb8\x79\x97\xf5\xda\xd1\xed\xbc\x3c\xb3\x1c\xb7\xb8\xd2\xa5\x66\x4d\x7e\xb6\x21\x1e\x9b\xfc\x9f\xb6\x54\xe4\x3e\x65\x23\xa3\x4e\x82\x7f\xab\x57\xa5\xce\xc3\x80\x3f\x0c\xe3\xc4\x91\x66\xd3\x7e\xfb\x5b\x42\x76\x6a\x69\xa7\x77\x39\x5a\xa2\xa4\x79\x37\x62\x9e\x4d\x87\xd0\x9d\x4e\x45\x5e\x46\x9f\x7b\xca\xad\x53\x2d\xfd\x1b\xd4\xb6\x6d\xd8\xee\xce\x58\x56\x52\x42\x3f\x8c\x3c\xa3\x2f\x9b\xf8\x41\x19\xfe\x42\x83\x1b\x72\x71\x48\xef\x65\x74\xb2\x51\x09\x75\xfe\xe8\x0a\x0b\x56\xe1\xba\x06\x01\xeb\x9f\x39\x74\x9b\xba\x22\xc3\xc9\xf9\x7a\x17\x59\x6e\x57\x84\x5c\x46\xc4\xcb\x64\x7f\xfe\xe9\xd1\xe9\xdf\x0f\x27\x53\xbc\x35\xb9\x23\xf4\x34\x14\xc0\xd5\x6b\x5c\xe6\x10\xe2\x5d\x88\x5e\xd3\x66\xba\xc1\x8b\x9a\x72\x27\x48\x99\xa2\x92\x71\xd1\x49\x79\x84\x05\x49\x52\x57\xd6\xb0\x36\xf5\xe1\xa0\x18\x7a\x61\xd0\x4c\x2e\xae\x5e\x73\x06\x4a\x6b\xb7\xa7\x50\xda\xd3\xc0\x89\x2a\xfb\x3a\xcf\x89\x94\xc8\xad\x51\xa0\x2c\x45\x85\x10\x91\x39\x05\xc5\x56\x84\xab\x42\xf7\x14\xa5\x7c\x85\xef\x9b\xe7\x4d\xf2\xa3\x06\xfb\xc1\xdb\x7d\x97\x93\xfb\xc1\xe1\x6b\x34\x91\x5e\x28\xaf\x43\xf9\x15\x3e\x91\x97\x73\x55\x90\x23\xc8\x0e\x45\x38\xc2\xbc\x08\xb6\x6d\x0a\x80\x2b\xfb\x4c\xd3\x3e\xa2\x66\xa8\x08\x8d\x0f\xa2\xce\x85\x36\x1b\xd8\x09\xf5\x76\xce\xca\xbf\x9a\x8b\x84\x0d\xf2\xad\xdc\xba\xa4\x8b\x7d\x3c\x69\xa5\xe6\xa3\x52\xaf\x08\x3c\x3e\xf7\x3a\x9a\x88\xed\x80\xa2\xa7\x09\x3c\x19\xe9\x4d\x57\x0f\x25\xda\x98\x32\x27\x31\xcf\x81\xed\xff\x8a\x74\x47\x7d\x47\x4c\xae\x70\x7b\xd0\xe2\xce\x4d\x6e\x13\xd1\xde\xd7\x74\x71\x36\x92\xca\x0f\xfe\x3c\x18\xc1\xde\xca\xc9\xf6\x45\x36\x9e\xcf\x39\x20\x2f\x60\x1e\x8c\xf2\x13\xe0\xfb\xc9\x7e\xf2\x5f\x00\x00\x00\xff\xff\x50\x66\x5c\xc1\x4e\x0b\x00\x00" +var _lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x6f\xe3\x46\x0c\xbd\xfb\x57\xb0\x7b\xd8\xca\x40\x60\xf7\x50\xf4\x60\x24\xbb\x70\x93\xb4\x0d\x36\xed\x2e\x92\xec\xa9\xe8\x81\xd6\xd0\xd6\x20\xd2\x8c\x31\x43\xd9\x09\x02\xff\xf7\x82\x33\x92\x3d\xfa\x88\x5b\x5d\x12\xcb\xe4\xe3\xd7\x23\x9f\x75\xb5\xb5\x8e\xe1\xde\xe6\xcf\xa4\x9e\xec\x33\x19\x0f\x6b\x67\x2b\xf8\xe9\xe5\xfe\xeb\xf5\x97\xdb\x9b\xa7\xaf\x5f\x6e\xff\x5a\xde\xdc\x3c\xdc\x3e\x3e\x4e\x26\xf3\x39\x3c\x15\xda\x03\x3b\x34\x1e\x73\xd6\xd6\x40\xed\xc9\x03\x17\x04\x65\x00\x01\x8e\x28\xa8\x2a\x6d\xc4\x81\x2d\x78\xe2\x60\x51\x1b\xb1\x81\x52\x57\x9a\x61\x6d\x1d\x54\x75\xc9\x7a\x5b\x12\x60\x9e\xdb\xda\xb0\x17\x07\x6d\x00\xc1\x6b\xb3\x29\x29\x0d\x14\x83\x1f\x4d\x01\x95\x72\xe4\x25\x78\xed\x49\x01\x7a\x78\xa6\xd7\x00\xe0\x0b\x5b\x97\x0a\x56\x94\x04\x15\x8b\xbe\xe3\x64\x92\xc0\x67\xd1\xee\xce\xac\xed\x02\xde\x96\xd1\x66\x01\xdf\x7f\xd3\x2f\xbf\xfc\x7c\x98\xc2\xdb\x64\x02\x00\xb0\x75\xb4\x45\x47\x59\x28\x6f\x01\x58\x73\x91\x3d\xb2\x75\xb8\xa1\x29\x7c\x5c\xc6\x10\x47\x6b\x79\xe6\x73\xf8\xde\xa6\xb0\x1c\xe4\xce\x05\x32\x14\xa8\xc0\xdb\x8a\xc0\xcb\x30\xec\x1a\xc8\x39\xeb\x52\x04\x74\x04\x9e\xad\x23\x25\xed\x61\x99\x81\xd2\x21\x6f\x74\xaf\xe0\xad\x54\xfa\x0a\x39\x1a\xa9\x5a\x1b\xbf\xa5\x9c\x49\x41\x89\x4c\x1d\x9c\xbb\x75\xe8\x49\x3a\x3f\x43\xa4\xbc\x4c\xc9\xd5\xe6\x34\x10\xd6\x15\xf9\x8b\xd4\x95\x0b\x32\xc1\x39\x09\xac\x3d\x18\xcb\x60\x77\xe4\xf6\x4e\x33\x93\x39\x7a\xec\xd0\xc1\x0a\x55\x53\xb1\x1f\xe9\x29\x5c\x45\x92\xcc\x7c\xec\xdf\xac\xb4\xa8\x2e\x07\x66\x9f\x32\x21\xe4\x02\xe6\x8d\xd9\x3c\x0e\x4a\x9b\xcd\xaf\x27\xf8\xe9\x31\xae\x3c\x9f\x3f\xc3\xdb\x41\x18\x31\x00\x3b\x8d\xa5\x24\x8e\xe1\x1f\x68\x3d\xc8\x64\x65\x9d\xb3\xfb\xcb\x8f\xe9\x5e\xcc\xc2\x9f\xa5\xd8\x5d\xdb\xb2\xa4\xd0\x84\x36\xb9\x8e\x61\xf2\xa1\x67\xde\x30\xe5\x1b\x72\x31\xc8\x78\x8b\x46\xe7\xd9\x87\xeb\xc0\x5d\xe9\x6a\x4c\x02\x10\x1c\xad\xc9\x91\xc9\x49\xa6\x24\x13\x08\xc9\x42\x7e\x84\xfd\x30\x3d\xd5\x25\x6b\xd5\x52\xbe\xa9\x5e\x28\x73\x62\xf7\x4c\xd6\x24\x25\x68\x33\xdf\x65\x59\x0a\xf5\x04\x5f\xaf\xa5\x3d\x3e\xb0\x6e\x45\x39\xd6\x9e\x60\x4f\xa0\xac\xf9\x91\x01\xf6\x68\x18\xd8\xf6\xfd\x1d\xed\xc8\xc5\x3d\x27\xc3\xda\x75\x59\xa6\xd7\x20\x3b\x8f\xba\xf4\x7d\x47\xb6\xb0\x69\x0e\x84\x36\x6b\xeb\x2a\x0c\x1e\x52\xc8\xf1\x0e\x34\x0b\xd3\x71\x8d\x59\x36\x67\xa7\x21\x82\x14\x18\x07\xba\x21\x6e\xde\x65\xbd\x76\x74\x3b\x2f\xcf\x2c\xc7\x2d\xae\x74\xa9\x59\x93\x3f\x33\xfc\x3f\x6c\xa9\xc8\x7d\xca\x46\xa6\x9d\xc4\xff\x56\xaf\x4a\x9d\x87\x19\xf7\xdb\xdc\x12\xaf\x93\x73\x3b\xa5\xab\xd1\x52\x66\x1b\xe2\xfb\x11\xf3\x6c\x3a\x84\xee\x74\x24\xf2\x2f\xfa\x3c\x50\x6e\x9d\x6a\x69\xde\xa0\xb6\xed\xc1\x76\x47\xc6\xb2\x92\x12\xfa\x61\xe4\x19\x7d\xd9\xc4\x0f\x0a\xf0\x27\x1a\xdc\x90\x8b\xc3\x78\x2f\xa3\xa6\xd7\xd9\x68\xa3\x12\x8a\xfc\xde\x15\x10\xac\xc2\x15\x0d\x42\xd5\x3f\x67\xe8\x36\x75\x45\x86\x93\x33\xf5\x2e\xb2\xdc\xa8\x08\xb9\x8c\x88\x57\xc9\x9e\xfc\xdd\xa3\xcd\x3f\x3f\x9c\x4d\xf1\xce\xe4\x8e\xd0\xd3\x50\xe8\x56\xaf\x71\x69\x43\x88\x77\x21\x7a\x4d\x9b\xe9\x06\x2f\x6a\xc7\xbd\x20\x65\x8a\x4a\xc6\x45\x27\xe5\x11\x16\x24\x49\x5d\x5b\xc3\xda\xd4\xc7\xc3\x61\xe8\x85\x41\x33\xb9\xb8\x62\xcd\xba\x97\xd6\x6e\xcf\xa1\xb4\x27\x80\x13\xf5\xf5\x75\x9e\x13\x29\x91\x55\xa3\x40\x59\x8a\x4a\x20\x62\x72\x0e\x8a\xad\x08\x54\x85\xee\x39\x4a\xf6\x0a\xdf\x37\xcf\x9b\xe4\x47\x0d\x0e\x83\xb7\x87\x2e\x27\x0f\x83\x03\xd7\x68\x1f\xbd\x50\x5e\x87\xf2\x2b\x7c\x26\x2f\x67\xa9\x20\x47\x90\x1d\x8b\x70\x84\x79\x11\x6c\xdb\x14\x00\x57\x76\x47\xd3\x3e\xa2\x66\xa8\x08\x8d\x0f\xe2\xcd\x85\x36\x1b\xd8\x0b\xf5\xf6\xce\xca\xbf\x9a\x8b\x84\x0d\xf2\xad\xdc\xb4\xa4\x8b\x7d\x3c\x69\xa5\xe6\x93\x22\xaf\x08\x3c\xee\x7a\x1d\x4d\x44\x75\x40\xd1\xf3\x04\x9e\x8c\xf4\xa6\xab\x7b\x12\x6d\x4c\x81\x93\x98\x17\xc0\xf6\x3f\xc5\xb8\xa3\xb2\x23\x26\xd7\xb8\x3d\x6a\x6e\xe7\xf6\xb6\x89\x68\xef\x6b\xba\xfc\x38\x92\xca\xff\xfc\x19\x30\x82\xbd\x95\xbb\xec\x8b\x6c\x3c\x9f\x0b\x40\x5e\xc0\x3c\x18\xe5\x67\xc0\x0f\x93\xc3\xe4\xdf\x00\x00\x00\xff\xff\x01\x17\x79\x30\x36\x0b\x00\x00" func lockedtokensAdminUnlock_tokens_for_multiple_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3890,7 +3890,7 @@ func lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x54, 0xc3, 0x63, 0x8c, 0x56, 0x85, 0xd5, 0xc1, 0xb1, 0xfd, 0xcc, 0x48, 0x9b, 0x87, 0xa8, 0xec, 0xd6, 0x3, 0x67, 0x95, 0xfa, 0x92, 0x36, 0xbc, 0x80, 0xd3, 0x3f, 0x1f, 0x54, 0x94, 0xea, 0x4d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0x91, 0xfe, 0x26, 0x3a, 0x56, 0xeb, 0x34, 0x12, 0xa2, 0x70, 0xa0, 0x43, 0x12, 0x68, 0xb5, 0x4d, 0xa7, 0xf5, 0xc1, 0x31, 0x5a, 0xf0, 0xa7, 0x29, 0xf0, 0xe5, 0xaa, 0x3a, 0x6e, 0xff, 0x1b}} return a, nil } @@ -3954,7 +3954,7 @@ func lockedtokensDelegatorDelegate_unstaked_tokensCdc() (*asset, error) { return a, nil } -var _lockedtokensDelegatorGet_delegator_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcf\x6a\xf3\x30\x10\xc4\xef\x7a\x8a\x4d\x0e\x1f\xd2\x25\x7c\xb4\xb7\xd0\x36\x98\xd8\x50\x13\xd3\x84\x24\x7d\x00\x59\x5e\xbb\x22\xb2\xd6\x48\x6b\x5a\x28\x7d\xf7\x62\xbb\x4d\xfa\x6f\x2f\x02\x31\xb3\xbf\xd9\xb1\x6d\x47\x81\xa1\x20\x73\xc2\xea\x48\x27\xf4\x11\xea\x40\x2d\xfc\x7f\x29\xb6\xeb\x4d\x96\x1e\xb7\x9b\xec\x21\x49\xd3\x7d\x76\x38\x08\xa1\x8d\xc1\x18\xa5\x76\x4e\x41\xdd\x7b\x68\xb5\xf5\x52\x1b\x43\xbd\xe7\x25\x24\x55\x15\x30\x46\xb5\x84\xc7\xdc\xf3\xf5\x15\xbc\x0a\x01\x00\xe0\x90\xc1\x8d\x84\x64\x92\xe6\xbe\xa6\x3d\xd6\x70\x0b\x0d\xf2\xc7\xdf\xe7\x1a\x35\x5a\x86\x59\x18\xdd\xe9\xd2\x3a\xcb\x16\xe3\xa2\x41\xbe\xf9\xf7\x35\xe7\x62\x7c\xee\xc9\x55\x18\xee\xe4\xd9\x35\xcc\x37\x59\xf1\x93\xbc\xeb\x4b\x67\xcd\x4e\xf3\xd3\xd9\xa4\x66\x17\x6a\x49\x21\xd0\xb3\xbc\xe4\x58\xad\xa0\xd3\xde\x1a\x39\x5f\x53\xef\x2a\xf0\xc4\x30\x89\x40\x43\xc0\x1a\x03\x7a\x83\xc0\x04\xdd\xb8\x19\x7e\x11\xe7\x6a\x2a\x22\x20\xf7\xc1\xff\xd9\xc5\x70\x5f\x8a\x0e\x1b\xcd\x14\xf2\x54\xaa\x99\x78\x13\xef\x01\x00\x00\xff\xff\x4a\x09\xbd\x3d\x9e\x01\x00\x00" +var _lockedtokensDelegatorGet_delegator_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcf\x6a\xf3\x30\x10\xc4\xef\x7a\x8a\xf9\x72\xf8\xb0\x2f\xa6\xb4\xb7\xd0\x36\x84\x38\xd0\x10\xd3\x84\x24\x7d\x00\x59\x5e\xbb\x22\xb2\xd6\x48\x6b\x5a\x28\x7d\xf7\x12\xbb\x4d\xff\xce\x45\x20\x66\xe6\xb7\x63\xdb\x8e\x83\xa0\x60\x73\xa4\xea\xc0\x47\xf2\x11\x75\xe0\x16\x17\xcf\xc5\x66\xb1\x5e\xe6\x87\xcd\x7a\x79\x3f\xcf\xf3\xdd\x72\xbf\x57\x4a\x1b\x43\x31\x26\xda\xb9\x14\x75\xef\xd1\x6a\xeb\x13\x6d\x0c\xf7\x5e\xa6\x98\x57\x55\xa0\x18\xd3\x29\x1e\x56\x5e\xae\x2e\xf1\xa2\x14\x00\x38\x12\xb8\x81\x30\x1f\xad\x2b\x5f\xf3\x8e\x6a\xdc\xa0\x21\x79\xff\xfb\xa8\x49\x87\xc8\x49\x99\xd1\x9d\x2e\xad\xb3\x62\x29\x66\x25\x87\xc0\x4f\xd7\xff\xbf\x9e\x9a\x0d\xcf\x1d\xbb\x8a\xc2\x6d\x72\x0e\x9e\xf4\xcd\x56\xfc\x84\x6f\xfb\xd2\x59\xb3\xd5\xf2\x78\x0e\x7d\x72\x67\x33\x74\xda\x5b\x93\x4c\x16\xdc\xbb\x0a\x9e\x05\x23\x1d\x1a\x81\x6a\x0a\xe4\x0d\x41\x18\xdd\x50\x83\x5f\xf5\x93\x74\x1c\x1e\x48\xfa\xe0\xff\xdc\x9e\x35\x24\x39\x39\x6a\xb4\x70\x58\xe5\x49\xfa\x4f\xbd\xaa\xb7\x00\x00\x00\xff\xff\x25\x15\x38\xf9\x8e\x01\x00\x00" func lockedtokensDelegatorGet_delegator_idCdcBytes() ([]byte, error) { return bindataRead( @@ -3970,11 +3970,11 @@ func lockedtokensDelegatorGet_delegator_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb7, 0x9, 0x93, 0xd2, 0xbb, 0xf1, 0xb5, 0xe3, 0x96, 0xa9, 0xa5, 0x95, 0x21, 0xa2, 0xb7, 0xba, 0x8b, 0x2a, 0x9a, 0x7f, 0x8b, 0x76, 0xae, 0x46, 0xe6, 0x2d, 0xcd, 0xc9, 0x6, 0x70, 0xd, 0x5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x82, 0x5a, 0x4d, 0xf6, 0x36, 0xfc, 0x9, 0xdc, 0x2b, 0x31, 0xb, 0x69, 0xb7, 0x23, 0x56, 0x1d, 0xe5, 0x81, 0xb7, 0x7e, 0xc4, 0x61, 0xcd, 0x39, 0x6a, 0x94, 0x30, 0x25, 0x80, 0x62, 0xd3, 0xd0}} return a, nil } -var _lockedtokensDelegatorGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4d\x8f\xda\x30\x10\xbd\xfb\x57\x0c\x7b\x40\x89\xb4\x0a\x3d\xa3\xa6\x12\xda\x50\x15\x2d\x62\x57\xc0\x6d\xb5\x07\x27\x9e\x04\x17\x63\x47\xb6\x23\x5a\x21\xfe\x7b\x95\x0f\x42\x4c\x82\x44\x37\x97\x88\xf1\x7b\x33\xcf\xf3\x1e\xe1\x87\x5c\x69\x0b\x3f\x85\x3a\x2e\xa2\x2d\x8d\x05\x6e\x2c\xdd\x73\x99\x41\xaa\xd5\x01\x9e\xfa\x07\x4f\xa4\xe1\x2c\x55\xb2\x47\xb6\x55\x7b\x94\xa6\x46\x7f\xfb\xb3\x7c\x7b\x79\x9d\x47\xdb\xb7\xd7\xf9\x6a\x16\x45\xeb\xf9\x66\x43\xc8\x64\x02\x6b\xb4\x85\x96\x06\xa8\x04\xaa\x35\xfd\x0b\x2a\x85\x08\x05\x66\xd4\x2a\xbd\x90\xa9\x02\x15\xff\xc6\xc4\x1a\xb0\x3b\x6a\xc1\xee\x10\x68\x92\xa8\x42\x5a\x48\x94\xb4\x5a\x09\x53\xb6\xe1\x12\xb8\x35\x20\x95\x3e\x50\xd1\x22\xa8\x64\x60\x76\x54\x23\xbb\x94\x08\xa1\x49\x82\xc6\x78\x54\x08\x1f\xd2\x42\xc2\x81\x72\xe9\x35\xa7\x53\x98\x31\xa6\xd1\x18\x7f\x0a\x1f\xfd\xfb\x05\x8e\xb0\x4f\x38\x11\x02\x00\x20\xd0\x02\xeb\x9e\xcc\xca\x8b\x3c\xd4\x21\x84\x8f\xcf\x6b\x93\xbc\x88\x67\x8d\xf2\x10\x32\xb4\xcd\x8f\x8b\x3a\x7f\x60\xdc\x0b\xcd\x21\xec\x10\x2b\x44\xf9\x04\x09\xcd\x69\xcc\x05\xb7\x1c\x4d\x90\xa1\xfd\x3e\x3e\x0d\xe8\x59\x29\x86\xad\xa6\xf7\x22\x16\x3c\x39\xff\xf0\xda\x2e\xe5\x33\xc9\xab\xf2\x24\x15\xea\xd8\xd0\x5a\x46\x0b\xf4\x47\xb5\x38\x9e\xba\xfa\xd6\x98\x42\xe8\xc8\x0d\x62\xa5\xb5\x3a\x7a\x3e\x9c\x5a\x76\x49\xe1\xa5\xd7\xe1\x40\xdc\xdc\x9d\xb9\xda\xa4\x62\xb8\x88\xa6\xce\xbc\xa0\x2e\x3e\x3b\xc0\xab\x3f\xb7\x68\xce\xae\x97\x20\x7d\xf8\xc5\xce\x80\xe6\x39\x4a\xe6\x95\x32\x6b\xdc\xf9\x6a\x87\xa8\xf2\xde\x58\x50\x52\xfe\xc7\x96\xee\x9f\x25\xa8\x5e\xbf\x94\x60\xa8\x6f\x6c\x70\x60\xcb\xdb\x81\xb5\x75\xef\xd4\xee\xee\x59\xd2\xd3\x58\x5b\x33\x24\xfd\x9e\x45\xf5\x62\x87\x48\xe5\x22\x33\xb4\xad\x53\xab\x0a\xe9\xf9\x0e\xbd\xe3\xc1\x23\x3d\x2a\x7e\xdb\x80\xa7\x97\xf1\xa3\x10\x24\x17\x30\x1e\x3b\x0d\x9b\xea\xc9\xd9\xd9\x97\x73\xd5\xcd\x56\xfd\x1e\x3d\xf7\x00\xc3\x99\x5a\x44\x23\x07\xe9\xdf\xc9\xe1\xfd\x60\xd5\xe1\xea\x44\x4c\x57\xdf\xc8\x01\x2e\x39\x93\x7f\x01\x00\x00\xff\xff\x26\x75\x5f\x79\xa6\x05\x00\x00" +var _lockedtokensDelegatorGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4d\x8f\xda\x30\x14\xbc\xe7\x57\x3c\xf6\x80\x12\x69\x15\x7a\x46\x4d\x25\xd4\x50\x15\xed\x8a\x5d\x01\xb7\xd5\x1e\x9c\xf8\x05\x5c\x8c\x5f\x64\x3b\xa2\x15\xe2\xbf\x57\xf9\x20\xc4\x9b\x50\xd1\xcd\x25\xc2\x9e\x19\x8f\xdf\x4c\x10\x87\x9c\xb4\x85\x1f\x92\x8e\x8b\x78\xc3\x12\x89\x6b\xcb\xf6\x42\x6d\x21\xd3\x74\x80\x87\xfe\xc6\x83\xd7\x70\x9e\x29\xdd\x23\xdf\xd0\x1e\x95\xa9\xd1\x5f\x7e\x3f\xbf\x7c\x7f\x9a\xc7\x9b\x97\xa7\xf9\x72\x16\xc7\xab\xf9\x7a\xed\x79\x93\x09\xac\xd0\x16\x5a\x19\x60\x0a\x98\xd6\xec\x0f\x50\x06\x31\x4a\xdc\x32\x4b\x7a\xa1\x32\x02\x4a\x7e\x61\x6a\x0d\xd8\x1d\xb3\x60\x77\x08\x2c\x4d\xa9\x50\x16\x52\x52\x56\x93\x34\xa5\x8c\x50\x20\xac\x01\x45\xfa\xc0\x64\x8b\x60\x8a\x83\xd9\x31\x8d\xfc\xb2\xe4\x79\x2c\x4d\xd1\x18\x9f\x49\x19\x40\x56\x28\x38\x30\xa1\xfc\x66\x77\x0a\x33\xce\x35\x1a\x13\x4c\xe1\xad\x7f\xbf\xd0\x31\xf6\x0e\x27\xcf\x03\x00\x90\x68\x81\x77\x77\x66\xe5\x45\xee\x52\x88\xe0\xed\xfd\x2a\x92\x17\xc9\xac\x71\x1e\xc1\x16\x6d\xf3\xe3\xe2\x2e\xb8\x22\x29\xb7\x82\x14\x93\xad\xdc\x0a\x33\x88\x3a\x02\x15\xb2\x7c\xc2\x94\xe5\x2c\x11\x52\x58\x81\x26\x4c\x48\x6b\x3a\x7e\x1d\x9f\x06\xac\x2d\x89\x63\xab\xf7\x5a\x24\x52\xa4\xe7\x6f\x7e\x2b\x54\x3e\x93\xbc\x5a\x9e\x64\x92\x8e\x0d\xad\x65\xb4\xc0\xc6\xa6\xc8\xdc\xc1\xd4\x0e\x07\x8d\x9f\x5a\x6e\xc9\x10\x65\xe8\xd1\x40\xef\xdc\xe1\xb9\xce\x14\x71\x5c\xc4\x53\xe7\xb8\xb0\x5e\x7c\x74\x80\xd7\xa0\x3e\xa2\x05\xef\x5c\xa1\x0f\xbf\xe4\x1a\xb2\x3c\x47\xc5\xfd\xd2\x66\x8d\x3b\xf7\x73\xa9\x3f\x80\x26\x8b\x92\xfa\x9f\xf9\x74\x3f\xa0\xb0\x7a\xfd\x24\xc9\x51\x7f\xc8\xc3\x81\xf5\xce\xac\x33\x7c\x65\x76\x77\x23\x1b\x39\xec\xf2\x9f\x97\x70\xb3\xaa\x27\x0c\xd1\xa0\x54\xb8\x45\xdb\x46\xb6\xac\x90\x7e\xe0\xd0\x3b\x61\xdc\xa3\x51\xf1\x5b\x01\x91\x5d\x8e\x1f\x45\xa0\x84\x84\xf1\xd8\x11\x6c\x56\x4f\xce\xc4\x3e\x5d\xb0\x6e\xc9\xea\xf7\xe8\xb1\x07\x18\x2e\xd7\x22\x1e\x39\xc8\xe0\x46\x21\x6f\x37\xac\x6e\x59\xa7\x6b\xba\xfa\xd7\x1c\xe0\x7a\x67\xef\x6f\x00\x00\x00\xff\xff\x46\x00\x85\xd2\xb8\x05\x00\x00" func lockedtokensDelegatorGet_delegator_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -3990,11 +3990,11 @@ func lockedtokensDelegatorGet_delegator_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0x50, 0x96, 0xec, 0xed, 0xa4, 0x44, 0x87, 0xe1, 0x5c, 0xfc, 0xc2, 0xfa, 0x38, 0xf, 0x8b, 0x4, 0xd5, 0x1a, 0xc3, 0x5d, 0x54, 0xe2, 0x59, 0x3f, 0xc7, 0x6f, 0xc1, 0xfc, 0xf5, 0xdd, 0xe5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x68, 0xfa, 0x45, 0x3, 0xde, 0xf8, 0x83, 0x56, 0x56, 0x95, 0xb2, 0xb8, 0x4f, 0x46, 0x9a, 0x39, 0x7e, 0x9a, 0x44, 0x23, 0x6a, 0x1c, 0x59, 0x48, 0x8, 0xe9, 0x9a, 0xeb, 0xf1, 0xa8, 0x3a, 0xf6}} return a, nil } -var _lockedtokensDelegatorGet_delegator_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xdf\x6a\x32\x31\x10\xc5\xef\xf3\x14\xa3\x17\x1f\xc9\x8d\x7c\xd7\xd2\x56\xc4\x15\x2a\x8a\x8a\xfa\x02\x31\x99\xdd\x06\xb3\x99\x65\x32\x4b\x0b\xa5\xef\x5e\x76\xb7\xd5\xfe\x9b\x9b\x40\x38\x67\x7e\x67\x4e\xa8\x1b\x62\x81\x0d\xb9\x0b\xfa\x13\x5d\x30\x65\x28\x99\x6a\xf8\xff\xb2\xd9\x2d\xd6\xcb\xe2\xb4\x5b\x2f\xb7\xf3\xa2\x38\x2c\x8f\x47\xa5\xac\x73\x98\xb3\xb6\x31\x1a\x28\xdb\x04\xb5\x0d\x49\x5b\xe7\xa8\x4d\x32\x85\xb9\xf7\x8c\x39\x9b\x29\x1c\x85\x43\xaa\xe0\x55\x29\x00\x80\x88\x02\xb1\x27\xcc\x07\xe9\x2a\x95\x74\xc0\x12\xee\xa1\x42\xf9\xf8\xfb\x5c\x63\x7a\x4b\x37\x13\x67\x1b\x7b\x0e\x31\x48\xc0\x3c\xa9\x50\xee\xfe\x7d\xcd\x39\xe9\x9f\x47\x8a\x1e\xf9\x41\x5f\x5d\xdd\x7c\x93\x6d\x7e\x92\xf7\xed\x39\x06\xb7\xb7\xf2\x74\x35\x99\xd1\x8d\x7a\x26\x66\x7a\xd6\xb7\x1c\xb3\x19\x34\x36\x05\xa7\xc7\x0b\x6a\xa3\x87\x44\x02\x83\x08\x2c\x30\x96\xc8\x98\x1c\x82\x10\x34\xfd\x66\xf8\x45\x1c\x9b\xa1\x08\x46\x69\x39\xfd\xd9\x45\x77\x5f\x81\x11\x2b\x2b\xc4\x5b\xf2\xb8\x2a\xb4\x19\xa9\x37\xf5\x1e\x00\x00\xff\xff\xa6\x2a\x70\xd1\xa2\x01\x00\x00" +var _lockedtokensDelegatorGet_delegator_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcf\x6a\xf3\x30\x10\xc4\xef\x7a\x8a\xfd\x72\xf8\xb0\x2f\xa6\xe7\xd0\x36\x98\xd8\xd0\x10\x93\x84\x38\x2f\x20\x4b\x6b\x57\x44\xd6\x9a\xd5\x9a\x16\x4a\xdf\xbd\xc4\x6e\xd3\xbf\x73\x11\x88\x99\xf9\xed\xb8\x7e\x20\x16\xa8\xc8\x9c\xd1\x9e\xe8\x8c\x21\x42\xcb\xd4\xc3\xcd\x73\xb5\x5f\x6f\xcb\xe2\xb4\xdf\x96\xbb\xbc\x28\x8e\x65\x5d\x2b\xa5\x8d\xc1\x18\x13\xed\x7d\x0a\xed\x18\xa0\xd7\x2e\x24\xda\x18\x1a\x83\x2c\x21\xb7\x96\x31\xc6\x74\x09\xb5\xb0\x0b\x1d\xbc\x28\x05\x00\xe0\x51\xc0\x4f\x84\x7c\xb6\x6e\x42\x4b\x47\x6c\xe1\x0e\x3a\x94\xf7\xbf\x8f\x9a\x74\x8a\x5c\x94\x19\x3d\xe8\xc6\x79\x27\x0e\x63\xd6\x10\x33\x3d\xdd\xfe\xff\x7a\x6a\x36\x3d\x0f\xe4\x2d\xf2\x7d\x72\x0d\x5e\xf4\xcd\x56\xfd\x84\x1f\xc6\xc6\x3b\x73\xd0\xf2\x78\x0d\x7d\x72\x57\x2b\x18\x74\x70\x26\x59\xac\x69\xf4\x16\x02\x09\xcc\x74\xd0\xc0\xd8\x22\x63\x30\x08\x42\x30\x4c\x35\xf0\xab\x7e\x91\xce\xc3\x19\x65\xe4\xf0\xe7\xf6\xac\x43\x29\xd0\x63\xa7\x85\x78\x47\x16\x37\x45\x92\xfe\x53\xaf\xea\x2d\x00\x00\xff\xff\x48\x1a\x69\xcc\x92\x01\x00\x00" func lockedtokensDelegatorGet_delegator_node_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4010,7 +4010,7 @@ func lockedtokensDelegatorGet_delegator_node_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_node_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe8, 0x58, 0x4e, 0x3f, 0x69, 0xdd, 0x3, 0x9a, 0xac, 0x6a, 0xd3, 0x8e, 0x57, 0x8f, 0x94, 0x62, 0xdf, 0xa7, 0x1f, 0xb6, 0xd4, 0x9b, 0x2a, 0x63, 0x25, 0x50, 0xd5, 0x15, 0xe7, 0x9e, 0x37, 0x4c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0xf2, 0x8d, 0xfd, 0xd3, 0x74, 0x8f, 0xcb, 0x79, 0x88, 0x24, 0x6, 0x60, 0x63, 0x2f, 0xa7, 0x9f, 0x1b, 0x6f, 0x9f, 0xa9, 0xce, 0xcc, 0x82, 0x81, 0x51, 0xb9, 0x51, 0x38, 0x32, 0xe7, 0x8}} return a, nil } @@ -4114,7 +4114,7 @@ func lockedtokensDelegatorWithdraw_unstaked_tokensCdc() (*asset, error) { return a, nil } -var _lockedtokensStakerGet_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcf\x6a\x32\x31\x14\xc5\xf7\x79\x8a\xa3\x8b\x8f\x64\x23\xdf\x5a\xda\x8a\x38\x42\x45\x51\x51\x5f\x20\x26\x77\xa6\xc1\x4c\xee\x90\x64\x68\xa1\xf4\xdd\xcb\xcc\xb4\xda\x7f\x77\x13\x08\xe7\xdc\xdf\xb9\xc7\xd5\x0d\xc7\x8c\x0d\x9b\x0b\xd9\x13\x5f\x28\x24\x94\x91\x6b\xfc\x7f\xd9\xec\x16\xeb\x65\x71\xda\xad\x97\xdb\x79\x51\x1c\x96\xc7\xa3\x10\xda\x18\x4a\x49\x6a\xef\x15\xca\x36\xa0\xd6\x2e\x48\x6d\x0c\xb7\x21\x4f\x31\xb7\x36\x52\x4a\x6a\x8a\x63\x8e\x2e\x54\x78\x15\x02\x00\x3c\x65\xf8\x9e\x30\x1f\xa4\xab\x50\xf2\x81\x4a\xdc\xa3\xa2\xfc\xf1\xf7\xb9\x46\xf5\x96\x6e\x26\x46\x37\xfa\xec\xbc\xcb\x8e\xd2\xa4\xa2\x7c\xf7\xef\x6b\xce\x49\xff\x3c\xb2\xb7\x14\x1f\xe4\xd5\xd5\xcd\x37\xd9\xe6\x27\x79\xdf\x9e\xbd\x33\x7b\x9d\x9f\xae\x26\x35\xba\x51\xcf\x1c\x23\x3f\xcb\x5b\x8e\xd9\x0c\x8d\x0e\xce\xc8\xf1\x82\x5b\x6f\x11\x38\x63\x10\x41\x23\x52\x49\x91\x82\x21\x64\x46\xd3\x6f\xc6\x2f\xe2\x58\x0d\x45\x44\xca\x6d\x0c\x7f\x76\xd1\xdd\xb7\x65\x4b\xab\x42\xaa\x91\x78\x13\xef\x01\x00\x00\xff\xff\x7f\x01\x3c\x6e\x99\x01\x00\x00" +var _lockedtokensStakerGet_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcd\x6a\xeb\x30\x14\x84\xf7\x7a\x8a\xb9\x59\x5c\xec\x8d\xe9\x3a\xb4\x0d\x26\x36\x34\xc4\x24\x21\xce\x0b\xc8\xd2\xb1\x2b\x22\xeb\x18\x49\xa6\x85\xd2\x77\x2f\xb1\xdb\xf4\x77\x36\x02\x31\x33\xdf\x19\xd3\x0f\xec\x23\x2a\x56\x67\xd2\x27\x3e\x93\x0b\x68\x3d\xf7\xb8\x79\xae\xf6\xeb\x6d\x59\x9c\xf6\xdb\x72\x97\x17\xc5\xb1\xac\x6b\x21\xa4\x52\x14\x42\x22\xad\x4d\xd1\x8e\x0e\xbd\x34\x2e\x91\x4a\xf1\xe8\xe2\x12\xb9\xd6\x9e\x42\x48\x97\xa8\xa3\x37\xae\xc3\x8b\x10\x00\x60\x29\xc2\x4e\x84\x7c\xb6\x6e\x5c\xcb\x47\x6a\x71\x87\x8e\xe2\xfb\xdf\x47\x4d\x3a\x45\x2e\xca\x94\x1c\x64\x63\xac\x89\x86\x42\xd6\xb0\xf7\xfc\x74\xfb\xff\xeb\xa9\xd9\xf4\x3c\xb0\xd5\xe4\xef\x93\x6b\xf0\xa2\x6f\xb6\xea\x27\xfc\x30\x36\xd6\xa8\x83\x8c\x8f\xd7\xd0\x27\x77\xb5\xc2\x20\x9d\x51\xc9\x62\xcd\xa3\xd5\x70\x1c\x31\xd3\x21\xe1\xa9\x25\x4f\x4e\x11\x22\x63\x98\x6a\xf0\xab\x7e\x91\xce\xc3\x3d\xc5\xd1\xbb\x3f\xb7\x67\x1d\xc5\x1d\x6b\xda\x14\x49\xfa\x4f\xbc\x8a\xb7\x00\x00\x00\xff\xff\x3c\x30\xd3\x8b\x89\x01\x00\x00" func lockedtokensStakerGet_node_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4130,11 +4130,11 @@ func lockedtokensStakerGet_node_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/get_node_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x97, 0xb1, 0x3d, 0x93, 0xa6, 0x1b, 0x6c, 0x64, 0xb4, 0x3d, 0xa3, 0xb7, 0xa3, 0x96, 0x73, 0xfe, 0x8f, 0xb6, 0xc3, 0x6c, 0x61, 0x71, 0x55, 0xa7, 0x77, 0x7c, 0x7a, 0xd0, 0xef, 0x9c, 0xab, 0x6f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc, 0x8d, 0x95, 0xc6, 0xec, 0x4e, 0xe4, 0xfe, 0xc9, 0x39, 0xfd, 0x1e, 0x88, 0x58, 0x1a, 0xf9, 0x41, 0x9e, 0xb9, 0x50, 0xd9, 0x4c, 0x4d, 0x57, 0x2f, 0x6, 0xb5, 0x4, 0xec, 0x49, 0xaa, 0x8b}} return a, nil } -var _lockedtokensStakerGet_staker_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x94\x5f\x6f\xda\x30\x14\xc5\xdf\xfd\x29\xee\xfa\x30\x25\x2f\xe9\x9e\xd1\x32\x09\x35\x4c\x43\x45\x6d\x05\xbc\x55\x7d\xb8\xb1\x6f\xc0\xc3\xd8\x91\xed\xa8\x9b\x10\xdf\x7d\x72\x12\x52\xcc\x1f\xb1\xcd\x2f\x08\xfb\xfe\x8e\x0f\xe7\x58\xc8\x6d\x6d\xac\x87\xef\xca\xbc\x4f\x8b\x25\x96\x8a\x16\x1e\x37\x52\xaf\xa0\xb2\x66\x0b\x77\xe7\x07\x77\xac\x67\x66\x86\x6f\x48\x2c\xcd\x86\xb4\xeb\xa6\xbf\xfc\x9a\x3d\x3f\x3c\x4e\x8a\xe5\xf3\xe3\xe4\x69\x5c\x14\xf3\xc9\x62\xc1\xd8\xfd\x3d\xcc\xc9\x37\x56\x3b\x40\x0d\x68\x2d\xfe\x06\x53\xc1\x93\x11\x34\xd5\x95\x01\x53\xfe\x24\xee\x1d\xf8\x35\x7a\xf0\x6b\x02\xe4\xdc\x34\xda\x03\x37\xda\x5b\xa3\x5c\x50\x90\x1a\xa4\x77\xa0\x8d\xdd\xa2\x1a\x26\x50\x0b\x70\x6b\xb4\x24\x0e\x5b\x8c\x21\xe7\xe4\x5c\x82\x4a\xa5\x50\x35\x1a\xb6\x28\x75\xd2\x9f\x8e\x60\x2c\x84\x25\xe7\xd2\x11\xbc\x9e\xff\xb4\xec\xe0\xe9\x0d\x76\x8c\x01\x00\x28\xf2\xa0\xfb\xcd\x71\x70\x7e\x8b\xcb\xe1\xf5\xed\x03\xad\x9b\x72\xdc\x5b\xcd\x61\x45\xbe\xff\x72\xb0\x93\xc6\x97\x04\x35\xb2\x0f\x58\x43\x7e\x44\xb6\x23\x61\x65\x1c\x6b\x2c\xa5\x92\x5e\x92\xcb\x56\xe4\xbf\x7e\xde\x5d\xf1\xd2\x29\xbd\x34\xa5\x92\x7c\xff\x2d\x19\x24\xc2\xfa\x0b\xe4\x05\xfd\x7a\x60\xd2\x4f\x9d\x4b\x59\x9d\x18\x9d\x53\x05\x79\x6c\x3c\x2b\x8d\xb5\xe6\x3d\x49\x61\x37\xf0\x01\x92\xa1\xe7\xfc\xda\xd5\x21\xb9\xa4\x4d\xb9\x18\xc5\xfa\x99\x14\xe9\x20\x14\xf5\x90\x61\x5d\x93\x16\x49\x50\xee\x46\xf6\x1f\x61\xaa\xf6\x65\xf6\xf9\x05\xe4\x5f\x32\x3d\x7e\xd6\x59\xfb\xf1\xc3\x28\x41\xf6\x24\xc6\x68\x6c\x76\x7a\xe1\xed\x1c\xcf\x3c\x76\x71\x5e\xb2\x7e\x29\xd5\xa3\x36\xa6\xc5\x25\x2e\xa4\xb7\x22\xdf\xe6\x5b\x44\xe8\x7f\x96\x32\x2d\xd2\x48\xe2\x46\x1d\x5d\x25\x47\xc5\xd8\xf6\x3f\x20\xc6\xd8\x9e\xfd\x09\x00\x00\xff\xff\x4c\x99\xe5\xa6\x81\x04\x00\x00" +var _lockedtokensStakerGet_staker_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xc1\x8e\xda\x30\x14\xbc\xe7\x2b\x9e\xf6\x50\x25\x97\x6c\xcf\xa8\xa9\x84\x1a\xaa\xa2\x5d\xed\xae\x80\xdb\x6a\x0f\x2f\xf6\x0b\xb8\x18\xbf\xc8\x76\xb4\xad\x10\xff\x5e\x39\x09\x21\x29\x50\xda\xfa\x82\xb0\x67\xc6\xf3\x66\xac\xa8\x5d\xc5\xd6\xc3\x57\xcd\xef\xf3\x7c\x85\x85\xa6\xa5\xc7\xad\x32\x6b\x28\x2d\xef\xe0\xee\xfc\xe0\x2e\xea\x38\x8f\x2c\xb6\x24\x57\xbc\x25\xe3\x5a\xf4\xc7\x1f\x8f\xcf\x5f\x1e\x66\xf9\xea\xf9\x61\xf6\x34\xcd\xf3\xc5\x6c\xb9\x8c\xa2\xfb\x7b\x58\x90\xaf\xad\x71\x80\x06\xd0\x5a\xfc\x09\x5c\xc2\x13\x4b\x9a\x9b\x92\x81\x8b\xef\x24\xbc\x03\xbf\x41\x0f\x7e\x43\x80\x42\x70\x6d\x3c\x08\x36\xde\xb2\x76\x41\x41\x19\x50\xde\x81\x61\xbb\x43\xdd\x23\xd0\x48\x70\x1b\xb4\x24\x8f\x5b\x51\x84\x42\x90\x73\x31\x6a\x9d\x40\x59\x1b\xd8\xa1\x32\x71\x77\x3a\x81\xa9\x94\x96\x9c\x4b\x26\xf0\x7a\x3e\x5a\x7a\xf4\xf4\x06\xfb\x28\x02\x00\xd0\xe4\xc1\x74\x9b\xd3\xe0\xfc\x16\x2f\x83\xd7\xb7\x13\xb5\xaa\x8b\x69\x67\x35\x83\x35\xf9\xee\xcf\xd1\x4e\x72\x42\x72\xe5\x15\x1b\xd4\x41\x29\xa8\x92\x5d\x50\x09\xd9\x40\xa1\x81\x86\x95\x0a\xac\xb0\x50\x5a\x79\x45\x2e\x2d\xd8\x5a\x7e\xff\xf4\x61\x7f\xc5\x56\x2b\xf6\x52\x17\x5a\x89\xc3\xe7\xb8\x57\x09\xeb\x2f\x28\x2f\xe8\x37\x3d\xa7\xf3\xab\xca\x3e\x97\xa1\xd5\xcb\x23\xec\x7b\x76\xe0\xa8\x50\x78\x76\xed\xe2\x10\x61\xdc\xc4\x9d\x4f\xc6\xf2\xa9\x92\x49\x2f\x34\x2a\x24\xc5\xaa\x22\x23\xe3\xa0\xdc\x42\x0e\xe7\xa9\xb6\x4f\xb5\x0b\x32\x50\xff\x31\xdc\xe1\x53\x4f\x9b\x9f\x6f\xac\x25\xd9\xdf\xf2\x1c\xc1\xce\xee\xbc\x19\xa8\xbe\xec\xf2\x8f\x43\x9c\xe2\x1d\xb4\x32\xcf\x21\xbb\xa8\x96\xae\xc9\x37\x41\xe7\x71\x32\xa0\xfe\x67\x3b\xf3\x3c\x19\x49\xdc\xe8\xa5\xed\x66\xd0\x90\x6d\xbe\x0a\x63\x5a\x74\x88\x7e\x05\x00\x00\xff\xff\xb4\x6c\x9a\x8a\x93\x04\x00\x00" func lockedtokensStakerGet_staker_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -4150,7 +4150,7 @@ func lockedtokensStakerGet_staker_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/get_staker_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1a, 0xb6, 0xf9, 0x18, 0xa, 0x76, 0x3e, 0x66, 0x7f, 0x67, 0x88, 0x9c, 0x2b, 0xce, 0xd, 0xb0, 0xbc, 0xc8, 0xc2, 0x8b, 0x47, 0x19, 0x96, 0xd1, 0x93, 0xe9, 0x4, 0x4d, 0x7, 0x52, 0x9e, 0x28}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x99, 0x7d, 0x68, 0x3c, 0x28, 0x9c, 0xb5, 0x1c, 0x9a, 0x60, 0x8a, 0x99, 0xf5, 0x71, 0x5c, 0xef, 0xc4, 0xab, 0x72, 0x68, 0x33, 0xba, 0x87, 0xeb, 0x57, 0xb7, 0x13, 0x22, 0xeb, 0x59, 0xae, 0xac}} return a, nil } @@ -4374,7 +4374,7 @@ func lockedtokensUserDeposit_tokensCdc() (*asset, error) { return a, nil } -var _lockedtokensUserGet_locked_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x4e\xf3\x30\x10\x84\xef\x7e\x8a\xf9\x7b\xf8\x65\x5f\x2a\xce\x08\xa8\xaa\x26\x12\xa8\x11\xad\xda\xbe\x80\xe3\x6c\x8a\x55\xc7\x1b\xd9\x8e\x40\x42\xbc\x3b\x4a\x52\x52\x0a\xec\xc5\x96\x35\xb3\xdf\x78\x6c\xd3\x72\x48\x28\xd8\x9c\xa8\x3a\xf0\x89\x7c\x44\x1d\xb8\xc1\xcd\x5b\xb1\x59\xad\xf3\xec\xb0\x59\xe7\xcf\xcb\x2c\xdb\xe5\xfb\xbd\x10\xda\x18\x8a\x51\x6a\xe7\x14\xea\xce\xa3\xd1\xd6\x4b\x6d\x0c\x77\x3e\xdd\x62\x59\x55\x81\x62\x54\xd3\x0d\xef\x42\x00\x80\xa3\x04\x37\x20\x96\xa3\xf6\xc9\xd7\xbc\xa3\x1a\xf7\x38\x52\x3a\xbf\x7d\xed\x51\x83\xa5\x9f\xb9\xd1\xad\x2e\xad\xb3\xc9\x52\x9c\x1f\x29\xdd\xfd\xff\x1e\x74\x3e\x1c\x8f\xec\x2a\x0a\x0f\x72\x72\xf5\x73\x25\x2b\x7e\x92\xb7\x5d\xe9\xac\xd9\xea\xf4\x32\x99\xd4\xbf\x0b\xb5\xe4\x10\xf8\x55\x5e\x72\x2c\x16\x68\xb5\xb7\x46\xce\x56\xdc\xb9\x0a\x9e\x13\x46\x11\x34\x02\xd5\x14\xc8\x1b\x42\x62\xb4\xc3\x66\xfc\x22\xce\xd4\x58\x44\xa0\xd4\x05\xff\x67\x17\xfd\xff\xae\x7c\xe7\x0e\xa5\x12\x1f\xe2\x33\x00\x00\xff\xff\xad\x23\x7d\xb6\xa7\x01\x00\x00" +var _lockedtokensUserGet_locked_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x6a\xeb\x30\x10\x45\xf7\xfa\x8a\x4b\x16\x0f\x7b\x63\xde\xba\xb4\x0d\x26\x36\xb4\xc4\x34\x21\xc9\x0f\xc8\xf2\x38\x15\x91\x35\x46\x1a\xd3\x42\xe9\xbf\x97\xd8\xa9\xdb\xb4\x9d\x8d\x84\x98\x73\x8f\x66\x6c\xd7\x73\x10\x54\x6c\x4e\xd4\x1c\xf8\x44\x3e\xa2\x0d\xdc\xe1\xff\x6b\xb5\x59\xad\xcb\xe2\xb0\x59\x97\x4f\x79\x51\xec\xca\xfd\x5e\x29\x6d\x0c\xc5\x98\x68\xe7\x52\xb4\x83\x47\xa7\xad\x4f\xb4\x31\x3c\x78\xb9\x41\xde\x34\x81\x62\x4c\xe7\x1b\xde\x94\x02\x00\x47\x02\x37\x2a\xf2\xa9\xf7\xd1\xb7\xbc\xa3\x16\x77\x38\x92\x5c\xde\x3e\x73\xd2\x11\x39\x57\x66\x74\xaf\x6b\xeb\xac\x58\x8a\x59\xcd\x21\xf0\xcb\xed\xbf\xef\x7f\xcd\xc6\xe3\x81\x5d\x43\xe1\x3e\x99\xc1\x73\x5d\xb5\x55\x3f\xe5\xdb\xa1\x76\xd6\x6c\xb5\x3c\xcf\xd0\x97\x77\xb9\x44\xaf\xbd\x35\xc9\x62\xc5\x83\x6b\xe0\x59\x30\xd9\xa1\x11\xa8\xa5\x40\xde\x10\x84\xd1\x8f\x31\xf8\x15\xbf\x48\xa7\xc1\x03\xc9\x10\xfc\x9f\xb3\x67\x47\x92\x2b\xee\xb2\xb3\x24\x55\xef\xea\x23\x00\x00\xff\xff\xa3\x13\x04\x31\x97\x01\x00\x00" func lockedtokensUserGet_locked_account_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -4390,11 +4390,11 @@ func lockedtokensUserGet_locked_account_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_locked_account_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x20, 0xea, 0x12, 0x83, 0xdb, 0xe4, 0x6, 0x68, 0x59, 0x15, 0x8d, 0xa7, 0x5, 0x1d, 0x2e, 0xb6, 0x91, 0xaf, 0xf4, 0xd1, 0xf9, 0xa8, 0x5c, 0x66, 0x51, 0x3a, 0x9a, 0x3d, 0xcd, 0x1f, 0xe0, 0x60}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa0, 0xee, 0x12, 0xd0, 0xaf, 0x24, 0x3e, 0x2a, 0xd, 0xb3, 0xdd, 0x7d, 0x78, 0x32, 0xfa, 0x16, 0xeb, 0xd5, 0x9c, 0xf6, 0x40, 0x13, 0x2f, 0x48, 0x2f, 0x17, 0xdb, 0x35, 0x9, 0x8, 0x30, 0x40}} return a, nil } -var _lockedtokensUserGet_locked_account_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x4f\x32\x31\x10\x86\xef\xfd\x15\xef\xc7\xe1\x4b\x7b\x21\x1e\x8c\x07\xa2\x12\x04\x8c\x86\x8d\x10\xc0\x1f\xd0\xed\xce\x62\x43\xb7\xb3\x69\xbb\x91\xc4\xf8\xdf\xcd\xee\x2a\x88\x3a\x97\x26\xcd\xfb\xcc\x33\x33\xb6\xaa\x39\x24\x64\x6c\xf6\x54\x6c\x79\x4f\x3e\xa2\x0c\x5c\xe1\xe2\x90\x2d\xa7\x8b\xf9\x6c\xbb\x5c\xcc\x9f\x26\xb3\xd9\x7a\xbe\xd9\x08\xa1\x8d\xa1\x18\xa5\x76\x4e\xa1\x6c\x3c\x2a\x6d\xbd\xd4\xc6\x70\xe3\xd3\x08\x93\xa2\x08\x14\xa3\x1a\xe1\xf9\xde\x1e\xae\x2e\xf1\x26\x04\x00\x38\x4a\x70\x9d\x61\xd2\x47\x1f\x7d\xc9\x6b\x2a\x71\x83\x1d\xa5\xcf\xbf\xaf\x36\xaa\x43\xda\x1a\x1a\x5d\xeb\xdc\x3a\x9b\x2c\xc5\xe1\x8e\xd2\xf5\xff\xef\x73\x0e\xbb\xe7\x81\x5d\x41\xe1\x56\x1e\xa9\xb6\xce\x62\xd9\x4f\xf3\xaa\xc9\x9d\x35\x2b\x9d\x5e\x8e\x90\xfa\x77\xb2\xe6\x1c\x02\xbf\xca\xd3\x1c\xe3\x31\x6a\xed\xad\x91\x83\x29\x37\xae\x80\xe7\x84\x3e\x04\x8d\x40\x25\x05\xf2\x86\x90\x18\x75\xd7\x19\xbf\x8c\x03\xd5\x1f\x22\x50\x6a\x82\xff\xf3\x16\xed\x7e\x67\xdc\x9d\x76\xda\x1b\x92\x4a\xbc\x8b\x8f\x00\x00\x00\xff\xff\xb2\x24\xdb\x94\xa6\x01\x00\x00" +var _lockedtokensUserGet_locked_account_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xf3\x40\x10\x86\xef\xfb\x2b\x5e\x7a\xf8\x48\x2e\xe1\x3b\x88\x87\xa2\x96\xda\x46\x94\x06\x5b\xda\xfa\x03\x26\x9b\x49\x5d\xba\xd9\x09\xbb\x1b\x2c\x88\xff\x5d\x9a\x68\xb5\xea\x5c\x16\x96\x79\xde\x67\x5e\xd3\xb4\xe2\x23\x0a\xd1\x7b\xae\xb6\xb2\x67\x17\x50\x7b\x69\xf0\xff\x50\x2c\x67\x8b\x7c\xbe\x5d\x2e\xf2\xc7\xe9\x7c\xbe\xce\x37\x1b\xa5\x48\x6b\x0e\x21\x21\x6b\x53\xd4\x9d\x43\x43\xc6\x25\xa4\xb5\x74\x2e\x8e\x31\xad\x2a\xcf\x21\xa4\x63\x3c\xdd\x99\xc3\xe5\x05\x5e\x95\x02\x00\xcb\x11\xb6\x37\x4c\x87\xd5\x07\x57\xcb\x9a\x6b\x5c\x63\xc7\xf1\xe3\xef\x33\x26\xed\x91\xe3\x64\x9a\x5a\x2a\x8d\x35\xd1\x70\xc8\x4a\xf1\x5e\x5e\xae\xfe\x7d\x3f\x35\xeb\x9f\x7b\xb1\x15\xfb\x9b\xe4\x04\x1e\xe7\x6c\xad\xf8\x29\x5f\x75\xa5\x35\x7a\x45\xf1\xf9\x04\x7d\x79\x27\x13\xb4\xe4\x8c\x4e\x46\x33\xe9\x6c\x05\x27\x11\x83\x1d\x04\xcf\x35\x7b\x76\x9a\x11\x05\x6d\x1f\x83\x5f\xf1\xa3\x74\x28\xee\x39\x76\xde\xfd\xd9\x3d\xdb\x71\x3c\xe3\x6e\xc9\x92\xd3\x9c\xa4\xea\x4d\xbd\x07\x00\x00\xff\xff\x51\xcf\xd0\xa1\x96\x01\x00\x00" func lockedtokensUserGet_locked_account_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -4410,11 +4410,11 @@ func lockedtokensUserGet_locked_account_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_locked_account_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x63, 0x6, 0x13, 0x4, 0x10, 0x1c, 0xe5, 0xa2, 0x76, 0xe1, 0x1a, 0x51, 0xa6, 0x46, 0xbd, 0xe7, 0x35, 0xc5, 0xd2, 0xd4, 0x7b, 0x8f, 0xe1, 0x17, 0x93, 0xc5, 0x7f, 0x6, 0x47, 0xf, 0xeb, 0x63}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0xb9, 0x88, 0x9f, 0x36, 0x87, 0x86, 0x21, 0x2f, 0xd1, 0x89, 0x78, 0xd, 0x96, 0x5d, 0xe1, 0xdf, 0x4, 0x17, 0x7d, 0x6e, 0xab, 0xa8, 0x39, 0x91, 0x2b, 0x5e, 0x13, 0xc9, 0xdd, 0xf3, 0x43}} return a, nil } -var _lockedtokensUserGet_multiple_unlock_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcf\x6e\xf2\x30\x10\xc4\xef\x7e\x8a\xf9\x38\x7c\x72\x2e\x51\x0f\x55\x0f\xa8\x14\x21\xa0\x6a\x45\x54\x10\x7f\x4e\x88\x83\x71\x36\xd4\xc2\xb1\x23\xdb\x69\x91\x10\xef\x5e\x25\x21\x6d\xd3\x76\x2f\x89\x3c\xb3\xbb\xbf\x1d\x95\x17\xd6\x05\x24\x56\x1e\x29\x5d\xdb\x23\x19\x8f\xcc\xd9\x1c\x37\xa7\x64\x3e\x9e\x4d\x27\xeb\xf9\x6c\xfa\x32\x9a\x4c\x96\xd3\xd5\x8a\x31\x21\x25\x79\xcf\x85\xd6\x11\xb2\xd2\x20\x17\xca\x70\x21\xa5\x2d\x4d\xf0\x7d\x6c\x47\x69\xea\xc8\xfb\x5d\xd4\xc7\x76\xf3\xa8\x4e\x77\xb7\x3b\x9c\x19\x03\x80\x37\xe1\xa0\x55\xae\x6a\x5f\xab\x0d\xb0\xdd\x35\x72\x66\x1d\xae\x83\xa0\x4c\xfb\xeb\x71\xae\xd5\xaa\x34\x05\xe8\x9a\x73\xd4\x88\xcf\x26\xb3\x4b\xca\x30\xc0\x81\xc2\xf5\xad\x85\x89\x3e\xdb\xaa\x8a\xa5\x28\xc4\x5e\x69\x15\x14\xf9\xf8\x40\xe1\xfe\xff\xf7\x8b\xe3\xfa\xf3\x64\x75\x4a\xee\x81\x77\x3a\xab\xea\x58\x93\x9f\x04\x8b\x72\xaf\x95\x5c\x88\xf0\xda\x69\x8c\xfe\x75\x09\xf6\xd6\x39\xfb\xce\xbb\x5c\xc3\x21\x0a\x61\x94\xe4\xbd\xb1\x2d\x75\x0a\x63\x03\x1a\x23\x04\x1c\x65\xe4\xc8\x48\x42\xb0\x28\xea\x2d\xf8\xb5\xbd\x17\xb1\xaf\x80\xea\x74\x63\x51\x14\x64\x52\xfe\x57\x54\xd5\xe9\x1b\x53\x29\x49\xe5\xe5\x51\x83\x73\x69\x66\x38\x0a\xa5\x33\xd7\x31\xec\xc2\x3e\x02\x00\x00\xff\xff\x40\x8a\xfc\x13\x1c\x02\x00\x00" +var _lockedtokensUserGet_multiple_unlock_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x4f\x6f\xe2\x30\x14\xc4\xef\xfe\x14\x23\x0e\xab\xe4\x12\xed\x61\xb5\x07\x54\x8a\x10\x50\xb5\x22\x2a\x88\x3f\x27\xc4\xc1\x38\x2f\xd4\xc2\xf1\x8b\x6c\xa7\x45\x42\x7c\xf7\x2a\x09\xb4\x4d\xdb\x77\x49\xe4\x79\x33\xfe\x79\x74\x51\xb2\x0b\x48\x59\x1d\x29\x5b\xf3\x91\xac\x47\xee\xb8\xc0\xdf\x53\x3a\x1f\xcf\xa6\x93\xf5\x7c\x36\x7d\x1e\x4d\x26\xcb\xe9\x6a\x25\x84\x54\x8a\xbc\x8f\xa4\x31\x31\xf2\xca\xa2\x90\xda\x46\x52\x29\xae\x6c\xf0\x7d\x6c\x47\x59\xe6\xc8\xfb\x5d\xdc\xc7\x76\xf3\xa0\x4f\xff\xff\xed\x70\x16\x02\x00\x5e\xa5\x83\xd1\x85\x6e\xf6\x6e\xda\x00\xdb\x5d\x2b\xe7\xec\x70\x0d\x82\xb6\xb7\x5f\x8f\x73\xa3\xd6\x63\x28\xc0\x34\x9c\xa3\x56\x7c\xb2\x39\x2f\x29\xc7\x00\x07\x0a\xd7\xb3\x1b\x4c\xfc\x61\xab\x27\x51\xb2\x94\x7b\x6d\x74\xd0\xe4\x93\x3d\x3b\xc7\x6f\x77\x7f\xbe\x3e\x3a\x69\x3e\x8f\x6c\x32\x72\xf7\x51\xc7\x5c\x4f\x67\x35\xfd\x0e\xb1\xa8\xf6\x46\xab\x85\x0c\x2f\x1d\x63\x97\x61\x38\x44\x29\xad\x56\x51\x6f\xcc\x95\xc9\x60\x39\xa0\x25\x81\x84\xa3\x9c\x1c\x59\x45\x08\x8c\xb2\x89\xc3\x8f\x6b\x7a\xb1\xf8\x2c\xa3\x69\x32\x91\x65\x49\x36\x8b\x7e\xab\x25\x39\x50\xd8\xd8\x5a\x49\xeb\xdd\x28\x6e\x71\x2e\x6d\x86\xa3\x50\x39\x7b\x8d\x11\x17\xf1\x1e\x00\x00\xff\xff\x91\x29\xc0\x8b\x08\x02\x00\x00" func lockedtokensUserGet_multiple_unlock_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -4430,11 +4430,11 @@ func lockedtokensUserGet_multiple_unlock_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_multiple_unlock_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x8a, 0x53, 0x9b, 0xa4, 0x7, 0xc, 0xbe, 0x1d, 0x99, 0x45, 0x9d, 0x62, 0x3d, 0x1f, 0xc7, 0xb2, 0xfa, 0x6f, 0x55, 0x5c, 0xdf, 0x55, 0x98, 0xcb, 0xea, 0x22, 0xc2, 0x95, 0x9d, 0x5a, 0xaf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0x67, 0x4, 0xcc, 0x3e, 0xbe, 0x5b, 0x53, 0xa4, 0xb6, 0x1c, 0xf7, 0xd3, 0x66, 0x9e, 0x8c, 0xf2, 0x8b, 0x61, 0xd4, 0xf, 0x31, 0xa, 0x4, 0x1d, 0xb2, 0x4b, 0x2e, 0x47, 0x83, 0xbc, 0x45}} return a, nil } -var _lockedtokensUserGet_total_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x55\x5f\x4f\xdb\x3e\x14\x7d\xcf\xa7\xb8\xf0\xf0\xfb\x35\x5a\x95\xf2\x30\xed\xa1\x5a\x91\x3a\x02\x5b\x45\x45\x11\x74\xdb\xb3\x93\x38\xad\x85\x6b\x47\xb6\x03\x4c\xa8\xdf\x7d\x72\x1c\x3b\x71\x9a\x40\x07\x79\xe8\x1f\xdf\xe3\x7b\x8f\xcf\xb9\xbe\x21\xbb\x82\x0b\x05\x57\x25\xdb\x90\x84\xe2\x35\x7f\xc0\x0c\x72\xc1\x77\x70\xea\xad\x9d\x06\x16\x49\xf9\x93\x87\xb2\xff\x3d\xc4\x22\x5e\xa3\x84\xe2\x7b\x85\x1e\x08\xdb\xb4\xa0\x7e\xc0\xed\x59\xf2\xf4\x01\x67\x55\x1e\x69\xd0\x67\xcf\xcb\xd5\xc5\xf5\x65\xbc\x5e\x5d\x5f\xde\xcc\xe3\xf8\xee\xf2\xfe\x3e\x08\x26\x13\x58\x6f\x89\x04\x99\x0a\x52\x28\xd8\x60\x25\x41\x6d\x31\xac\x57\xeb\xf9\x12\x58\xb9\x4b\xb0\x00\x9e\xc3\xd5\x72\xf5\x1b\x10\x03\x94\xa6\xbc\x64\x0a\xf8\x13\x93\x63\x40\xa9\xe0\x52\x42\xc9\x68\x55\x6e\x0c\xf6\x1b\xb1\x0c\xa4\xa1\x14\x55\x45\xe6\x59\x26\xa1\x2c\x74\x6e\x89\xeb\xbc\x72\x5a\x85\x94\x21\x49\x18\x30\x2e\x76\x88\xda\x1a\xaf\xc5\x6c\xf2\x57\x31\x19\xa6\x78\x83\xd4\x01\x4c\x6e\x91\xc0\x59\x7f\x19\x3f\xd6\x5f\xa6\x83\x69\x95\x09\x02\x94\xa6\x58\xca\x11\xa2\x34\x84\xbc\x64\xb0\x43\x84\x8d\x50\x96\x09\x2c\xe5\x54\xab\xa0\x7f\x84\x53\xf8\x79\x45\x9e\xbf\x7c\x86\x97\x20\x00\x00\x78\x44\x02\x64\xb9\x83\x19\x9c\x45\x67\x66\x89\x62\xe5\x2a\xcc\xb4\x2f\x73\xf3\xc7\x26\x0b\x0d\x8c\xe4\x15\xf2\x11\x95\x54\xdd\xe1\x1c\x66\x76\x53\x94\xa2\x02\x25\x84\x12\x45\xb0\x8c\x36\x58\x7d\xfd\xcf\x75\x56\xf4\x4b\xc3\xcf\x47\x93\xa2\x4c\x28\x49\x27\xb9\x0d\x7c\x43\x14\xb1\x14\x87\x27\x55\x6e\xfd\x44\x09\x17\x82\x3f\x8d\xc2\x6a\xe5\xc5\xad\x1b\xb6\xfa\xf3\x93\x2b\x1e\x25\x66\x7b\x05\xda\x1b\x7e\x93\x09\x7c\xc7\xca\x88\x07\x75\xdc\xf4\xa3\xee\x32\xdb\x38\x96\xf4\xff\x12\x18\xcf\xb0\x95\x1d\x0a\xce\xa9\x74\x72\xe8\x90\xee\x73\x2c\x2e\x50\xd1\x9c\xb4\xe1\x7a\x78\xe4\x97\xc3\x2b\x12\xdd\xb8\x34\xb7\xd5\xf1\xf7\xe7\x23\x97\x42\x3f\x47\x6c\xb9\x45\x6a\xeb\xf6\x84\x27\x9e\x15\x0d\x4b\xe3\x87\xc7\xda\xc9\xd9\x92\xd2\x6e\x5a\xb0\x9c\xc3\x6c\xa8\xbc\x8e\x8e\x2a\x58\x3c\xf5\x6b\x44\x24\x0b\x7b\x7d\xb1\x49\x23\xc5\x15\xa2\x66\x16\x2c\xd8\x1d\x4e\xb9\xc8\x6a\x43\xdf\xeb\x52\xdd\xf3\x5c\x0c\x58\xe5\xe2\x1f\x76\x2a\xb6\x99\xfa\xcd\x6a\xb7\x70\xbd\xcd\xed\x18\x72\xc8\x91\x33\x06\xb5\xb9\x0e\xf9\xe3\x30\xc3\x26\xc5\x6d\x88\x4f\xd2\xda\xd6\x2e\x1c\x99\xc5\xb1\x07\x6c\xca\x74\xd1\x24\x6b\x4e\xd3\x6b\xb6\xc7\x70\xc8\xf1\x3e\xcf\xb7\x18\x7c\x7b\xc1\x48\x0a\xce\xa3\x3f\xce\x56\x03\xac\x27\x91\x2e\x74\xb4\xbd\xed\xf7\x51\x54\x7d\xfd\xe0\x34\xc3\xa2\x63\xa7\x07\x5b\x76\xab\xbd\x7d\xf9\x0e\x08\x1a\x8b\xfb\x78\xf7\x59\x6d\x5e\x54\x7d\x9a\xb4\x47\x5b\x57\xfa\xbe\xa2\xfa\xd4\x1e\xff\x7a\xb4\x8e\xea\xb9\xdd\xa9\x66\xef\x1c\xcf\x01\x51\x5a\x2d\x1d\x0e\xc2\xe6\x46\xfa\xe4\x5c\xc2\xd6\x04\x5a\xc4\x7d\xc7\xae\x89\x55\xf3\x24\xf6\x4e\xfe\x81\x41\xb4\x88\x43\x2f\xcd\x3f\x8e\xa0\x56\x4b\xbe\x2d\xca\xc0\xdc\x39\x56\x99\xd6\xfd\x7a\x45\x9e\xe6\x26\x1f\x6a\x74\xac\xc4\x2e\xc7\x80\xd6\xef\x1e\x2c\xbe\xf2\xe3\x81\x91\xd1\xf5\xe4\x5d\xd3\xa2\xf5\xec\x03\xff\x57\x6d\x98\xc0\xaa\x14\x4c\xe7\x0c\xf6\xc1\xdf\x00\x00\x00\xff\xff\xa9\x00\x16\xe2\xfa\x0a\x00\x00" +var _lockedtokensUserGet_total_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5d\x4f\xdb\x30\x14\x7d\xcf\xaf\xb8\xe3\x81\xa5\x5a\x95\xf2\x30\xed\xa1\xa2\x48\xdd\x02\x5b\x45\x45\x11\x74\xdb\xb3\x1b\x3b\xad\x85\x6b\x47\xb6\x03\x4c\xa8\xff\x7d\x4a\x1c\x3b\x71\x9a\x94\x0e\x96\x87\x7e\xd8\xe7\xde\x73\x7c\xcf\xf5\x0d\xdd\x66\x42\x6a\xb8\xca\xf9\x9a\xae\x18\x59\x8a\x07\xc2\x21\x95\x62\x0b\x27\xde\xda\x49\x60\x91\x4c\x3c\x79\x28\xfb\xdf\x43\xcc\xe2\x25\x5a\x31\x72\xaf\xd1\x03\xe5\xeb\x06\xd4\xdf\x70\x31\x73\x91\x3c\x10\x5c\xe6\x51\x06\x7d\xf6\x3c\x5f\x7c\xbb\xbe\x8c\x97\x8b\xeb\xcb\x9b\x69\x1c\xdf\x5d\xde\xdf\x07\xc1\x68\x04\xcb\x0d\x55\xa0\x12\x49\x33\x0d\x6b\xa2\x15\xe8\x0d\x81\xe5\x62\x39\x9d\x03\xcf\xb7\x2b\x22\x41\xa4\x70\x35\x5f\xfc\x06\xc4\x01\x25\x89\xc8\xb9\x06\xf1\xc4\xd5\x10\x50\x22\x85\x52\x90\x73\x56\xd2\x0d\xc1\x7e\x23\x8e\x41\x19\x49\x51\x49\x32\xc5\x58\x41\x9e\x15\xb9\x15\xa9\xf2\xaa\x71\xb9\xa5\x8d\x48\xca\x81\x0b\xb9\x45\xcc\x72\x1c\xda\xb3\xc9\x0f\x62\x30\x61\x64\x8d\xf4\x1e\x4c\x6d\x90\x24\xb8\x9b\xc6\xdf\xeb\xa6\x69\x61\x1a\x34\x41\x80\x92\x84\x28\x15\x22\xc6\x06\x90\xe6\x1c\xb6\x88\xf2\x10\x61\x2c\x89\x52\xe3\xa2\x0a\xc5\x8f\xc1\x18\x7e\x5e\xd1\xe7\x2f\x9f\xe1\x25\x08\x00\x00\x1e\x91\x04\x95\x6f\x61\x02\x67\xd1\x99\x59\x62\x44\x3b\x86\x49\xe1\xcb\xd4\xfc\xb1\xc9\x06\x06\x46\xd3\x12\xf9\x88\x72\xa6\xef\x48\x0a\x13\x1b\x14\x25\x28\x43\x2b\xca\xa8\xa6\x44\x45\x2b\x21\xa5\x78\x3a\x3f\x75\xcd\x15\xfd\x2a\x22\x2e\xc2\x51\x96\xaf\x18\x4d\x46\xa9\xdd\xf8\x8a\x18\xe2\x09\x19\xc0\x4b\x99\xbf\x78\x8c\xb2\xe2\xf3\x93\x23\x8a\x56\x06\x57\x82\x76\x46\xcb\x68\x04\xdf\x89\x36\x85\x82\x6a\xdf\xf4\x5e\xd1\x51\xb6\x49\xac\xc0\x8f\x0a\xb8\xc0\xc4\x96\x18\x32\x21\x98\x72\x47\x17\x99\xa6\x82\x23\x76\x23\x70\xd9\xdb\x44\x7a\xa7\x73\xda\xba\x8f\xf9\xb2\x7f\x33\xa2\x3a\xd3\x6d\x79\xe4\xdd\x45\xe8\xb2\x14\xcf\x11\x21\xb7\x48\x6f\x5c\x8c\x6f\x00\x6f\xe9\xec\xd6\x5f\xd7\xd4\xc6\xcc\x78\x2a\x60\xd2\x47\x5e\xec\x86\x25\x2c\x1e\xfb\x14\x11\xc5\x83\x4e\x83\x6c\xd2\x48\x0b\x8d\x98\x19\x00\x33\x7e\x47\x12\x21\x71\x38\x78\x97\x5d\x55\xa3\x0b\xf9\x8a\x67\xb1\xc5\xfd\x0f\xcb\x5c\xb2\x6e\xd7\x9a\xfd\x5b\x85\xb9\x88\xda\xaa\x0f\x9e\x57\xd8\xd7\xd7\x29\xdb\x77\xca\x45\xf4\xdb\x15\x37\x21\xbe\x46\x6b\x60\x93\x37\x32\x8b\x43\x0f\x58\xd3\xb4\xd1\x14\x37\xfa\xae\xcb\x76\x4f\x61\x9f\xf7\x5d\xee\x6f\x08\xf8\x46\x83\xa9\x28\x38\x97\xfe\xec\x19\x6c\x5e\x2e\xd5\x40\x2a\x08\x8f\x31\x7a\x4d\xf4\xf9\x69\xf3\xb5\x14\x95\x5f\x3f\x04\xc3\x44\xb6\x5c\xf5\x60\x7b\x6c\x5d\x97\xd1\x77\x98\x75\x0b\x3c\xa8\xbf\x76\xdc\xbc\xae\xba\x4a\xd3\x1c\x7a\x6d\x07\xba\x38\x8b\x43\x7b\x64\xd5\x74\x0d\xab\xe1\xd1\x62\xb3\x97\x50\xa4\x80\x18\x2b\x97\xf6\x47\x64\x7d\x45\x7d\x71\x2e\x61\x63\x22\xcd\x62\x98\xf4\x0a\x2b\x07\x4c\x1c\x36\x27\xfd\x3b\x26\xd3\x2c\x1e\x78\x69\xfe\x71\x26\x35\x3a\xf3\xf5\xa2\xf4\x0c\xa2\x63\x2b\xd3\xb8\x66\x07\xca\x53\x5f\xe8\xfd\x1a\x1d\x5b\x62\x97\xa3\xa7\xd6\x6f\x9e\x2f\x7e\xe5\x87\x3d\x93\xa3\xed\xc9\x9b\x86\x46\xe3\xd9\x05\xfe\xaf\xca\x30\x49\x74\x2e\x79\x91\x33\xd8\x05\x7f\x03\x00\x00\xff\xff\xc1\x6b\x33\x5a\x00\x0b\x00\x00" func lockedtokensUserGet_total_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -4450,11 +4450,11 @@ func lockedtokensUserGet_total_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_total_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb, 0x69, 0xd5, 0xb7, 0x55, 0x5, 0x9c, 0xed, 0x57, 0x86, 0xf0, 0x8, 0xc, 0xe, 0xc, 0xa4, 0xab, 0x57, 0x1, 0x7d, 0x6b, 0xd9, 0xec, 0x38, 0xb, 0xe3, 0xf0, 0xc, 0x8, 0x31, 0xbe, 0x8f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa1, 0x83, 0x65, 0xde, 0x8e, 0x5f, 0x73, 0xa9, 0x48, 0x26, 0xc5, 0x33, 0xdc, 0xf6, 0xfc, 0x7d, 0x7e, 0x11, 0xc8, 0x82, 0x68, 0x99, 0xdd, 0xfc, 0x9, 0x19, 0x1, 0xc7, 0x81, 0xa7, 0xc0, 0xa2}} return a, nil } -var _lockedtokensUserGet_unlock_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcd\x4a\x03\x31\x14\x85\xf7\x79\x8a\x63\x17\x92\x6c\x8a\x0b\x71\x51\xd4\x52\xda\x8a\xd2\xc1\x96\xfe\x3c\x40\x26\x73\xa7\x86\x66\x72\x87\x24\x83\x05\xf1\xdd\x65\x66\xb4\xf5\xef\x6e\x02\xc9\x39\xf7\x3b\x39\xb6\xaa\x39\x24\x64\x6c\x0e\x54\x6c\xf9\x40\x3e\xa2\x0c\x5c\xe1\xea\x98\x2d\xa7\x8b\xf9\x6c\xbb\x5c\xcc\x9f\x27\xb3\xd9\x7a\xbe\xd9\x08\xa1\x8d\xa1\x18\xa5\x76\x4e\xa1\x6c\x3c\x2a\x6d\xbd\xd4\xc6\x70\xe3\xd3\x08\x93\xa2\x08\x14\xa3\x1a\x61\xf7\x60\x8f\x37\xd7\x78\x13\x02\x00\x1c\x25\xb8\x8e\x30\xe9\xa5\x4f\xbe\xe4\x35\x95\xb8\xc3\x9e\xd2\xe7\xdd\xd7\x1a\xd5\x59\xda\x19\x1a\x5d\xeb\xdc\x3a\x9b\x2c\xc5\xe1\x9e\xd2\xed\xe5\xf7\x9c\xc3\xee\x78\x64\x57\x50\xb8\x97\x27\x57\x3b\x3f\x64\xd9\x6f\xf2\xaa\xc9\x9d\x35\x2b\x9d\x5e\x4e\x26\x75\x71\xa6\xe6\x1c\x02\xbf\xca\x73\x8e\xf1\x18\xb5\xf6\xd6\xc8\xc1\x94\x1b\x57\xc0\x73\x42\x2f\x82\x46\xa0\x92\x02\x79\x43\x48\x8c\xba\xdb\x8c\x3f\xc4\x81\xea\x8b\x08\x94\x9a\xe0\xff\xed\xa2\xfd\xdf\xce\xb7\x2f\x99\xad\x6c\x92\x4a\xbc\x8b\x8f\x00\x00\x00\xff\xff\xe7\x23\xb7\x12\x9d\x01\x00\x00" +var _lockedtokensUserGet_unlock_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x4d\x6a\xc3\x30\x14\x84\xf7\x3a\xc5\x90\x45\xb1\x37\xa6\x8b\xd2\x45\x68\x1b\x42\x92\xd2\x12\xd3\x84\xfc\x1c\x40\x96\x9f\x53\x11\x59\xcf\x48\xcf\x34\x50\x7a\xf7\x62\xbb\x4d\x7f\x67\x23\x90\x66\xe6\xd3\xd8\xba\xe1\x20\xc8\xd9\x1c\xa9\xdc\xf1\x91\x7c\x44\x15\xb8\xc6\xe5\x29\x5f\xcd\x96\x8b\xf9\x6e\xb5\x5c\x3c\x4d\xe7\xf3\xcd\x62\xbb\x55\x4a\x1b\x43\x31\x26\xda\xb9\x14\x55\xeb\x51\x6b\xeb\x13\x6d\x0c\xb7\x5e\xc6\x98\x96\x65\xa0\x18\xd3\x31\xf6\xf7\xf6\x74\x7d\x85\x57\xa5\x00\xc0\x91\xc0\xf5\x84\xe9\x60\x7d\xf4\x15\x6f\xa8\xc2\x2d\x0e\x24\x1f\x77\x9f\x35\x69\x1f\xe9\x94\x19\xdd\xe8\xc2\x3a\x2b\x96\x62\x56\x70\x08\xfc\x72\x73\xf1\xfd\xab\x59\x7f\x3c\xb0\x2b\x29\xdc\x25\xe7\x60\xa7\x1f\xb6\xfc\x37\x7c\xdd\x16\xce\x9a\xb5\x96\xe7\x73\xe8\x8b\x3b\x99\xa0\xd1\xde\x9a\x64\x34\xe3\xd6\x95\xf0\x2c\x18\xe8\xd0\x08\x54\x51\x20\x6f\x08\xc2\x68\xfa\x1a\xfc\xa9\x1f\xa5\xc3\xf0\x40\xd2\x06\xff\xef\xf6\xec\x40\xb2\xf7\xdd\x4b\x6e\x6b\x2b\x49\xaa\xde\xd4\x7b\x00\x00\x00\xff\xff\x41\x2c\x60\x75\x8d\x01\x00\x00" func lockedtokensUserGet_unlock_limitCdcBytes() ([]byte, error) { return bindataRead( @@ -4470,7 +4470,7 @@ func lockedtokensUserGet_unlock_limitCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_unlock_limit.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x9e, 0xdb, 0x4c, 0x59, 0x66, 0xe0, 0x8f, 0x1c, 0xe7, 0xd6, 0x7c, 0x51, 0xf5, 0x13, 0xc1, 0xff, 0x7f, 0x1b, 0x69, 0x8f, 0x3f, 0xd9, 0x95, 0xbf, 0x4f, 0x72, 0x44, 0xb7, 0x29, 0xf1, 0x33}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0x7e, 0xa8, 0x61, 0xd1, 0xfa, 0x9f, 0xeb, 0x5c, 0xb8, 0xde, 0x5c, 0xae, 0xd1, 0xf0, 0x64, 0x54, 0xd7, 0x86, 0x64, 0x24, 0x4a, 0x10, 0x1e, 0xbc, 0x51, 0x5d, 0x28, 0x9e, 0xd, 0xe5, 0x7b}} return a, nil } @@ -4754,7 +4754,7 @@ func quorumcertificateAdminStop_votingCdc() (*asset, error) { return a, nil } -var _quorumcertificateCreate_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x54\x4d\x6f\xdb\x30\x0c\xbd\xe7\x57\x70\x3d\x14\x0e\xd0\x3a\x3b\x07\xed\x8a\xc0\xdd\x86\x61\x87\x35\x4d\xd1\x9d\x19\x99\xb1\xb5\x2a\x92\x47\xd1\xc9\x82\xa1\xff\x7d\xa0\xe4\xba\x31\x66\x20\x88\x3e\xc8\xf7\xf8\x1e\x69\xdb\x7d\x17\x58\xe0\x8b\x0b\xc7\xca\xf5\x51\x88\xd7\x15\xec\x38\xec\xe1\xe3\x9f\x75\xb5\xba\xbf\x7f\xfc\xbc\xd9\xcc\x66\x8b\x05\x3c\x51\x14\x78\x62\xf4\x11\x8d\xd8\xe0\x61\x17\x18\x10\x7c\xa8\x09\x24\x00\xd3\xef\x5e\x23\x10\xd6\x15\x3c\x07\x21\x86\x1f\xdb\x5f\x64\x24\xa3\x49\x4b\x60\x82\x17\x46\x23\x8a\xf6\xd3\x3a\x07\x5b\x82\xbe\xab\x51\xa8\x56\x84\x3e\x52\x0a\xa3\x2e\x98\x76\x0c\x86\x63\x4b\x1e\xa4\x45\x01\x1b\xc1\x84\x7d\xe7\x48\xa8\x4e\x15\xb5\x04\x87\xc4\x14\x32\x53\xf0\xee\x04\x9e\xa8\x8e\x8a\xb7\x25\x30\x4c\x09\x3d\x78\x43\x80\xbe\x56\x88\x03\x3a\x5b\xa7\xe2\xe9\x40\x7c\x82\x5d\x2f\x3d\x0f\xac\x8a\x7a\x6c\x89\x73\x21\x49\x9a\x8d\x80\x43\x4e\x14\x7c\xa1\x3a\x1d\x27\x47\x1e\x90\x71\x4f\x42\x1c\x97\xba\xd5\x1f\xd6\x7b\xeb\x57\x75\xcd\x14\xe3\x32\x81\x60\xde\x40\xd8\xa5\xed\xba\xca\x31\xe7\x96\xe9\x79\x76\x4c\xad\x52\x18\xa5\xf8\x76\x9f\x01\x6c\xfd\x96\x9b\xad\x56\x27\x12\xb0\x31\xa1\xf7\xc9\x95\xd0\x11\xa3\x58\xdf\x68\xae\x56\x69\x7d\xf3\x9d\x4e\xcb\xe4\xd0\xb0\x87\x17\x3a\x25\xd5\xb9\x13\xce\x91\x91\xc0\x83\x18\x79\x6f\x6b\x31\x95\x30\x2c\xae\xc6\x92\x36\xc2\xd6\x37\x57\x13\x9a\x7c\x36\x87\xbf\xb3\x19\x00\x40\xc7\xd4\x21\x53\x11\x6d\xe3\x89\x97\x80\xbd\xb4\xc5\x06\x0f\xf4\x8c\xae\xa7\x39\x5c\xae\x72\xe9\x63\x82\x3e\x8b\x05\x7c\xa5\x41\x59\x32\x88\x69\x47\x4c\xda\xb8\x71\x80\xf2\xc5\x20\x7c\xcc\x74\x24\xc3\xcd\x2d\x34\x24\x03\xf8\x44\xc7\xfc\xff\xe0\x47\xda\xc1\x6d\x5e\x96\x06\x3b\xdc\x5a\x67\xc5\x52\x2c\x1b\x92\x9b\xcb\xc9\xfb\x50\xae\x34\xea\x53\xb1\xe8\xfa\xad\xb3\x66\x91\x66\xae\xd2\xd1\x0a\x3c\xff\x30\x42\xeb\x53\x6e\x03\x73\x38\x16\x73\xb8\xbb\x83\x0e\xbd\x35\xc5\x45\x15\x7a\xa7\x53\x23\x90\x2f\x01\xcf\xb4\x49\x78\x57\x76\x31\x9f\xd8\x91\x18\x48\xa7\xef\x7c\xc6\x75\x8a\x23\x1e\x08\xac\x68\x72\x94\xc0\xd8\xd0\x44\x5f\x8e\xbf\xb9\x1e\x85\x96\xf9\x3d\x48\x33\x56\xbc\x35\x32\xff\x4f\x1b\xf9\xbe\x3e\x2b\x25\xb7\xb1\x1c\x98\x4a\x25\x2f\x6e\xae\x13\xc9\x15\x48\x58\x4e\x3f\x1e\x65\x62\xd9\xe4\xe0\x07\x94\x36\x7b\xff\x3a\x7b\xfd\x17\x00\x00\xff\xff\x15\x36\x10\x1a\x6b\x04\x00\x00" +var _quorumcertificateCreate_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x54\x41\x6f\x1a\x4d\x0c\xbd\xf3\x2b\xac\x1c\xa2\x45\x4a\x96\xef\x8c\x92\x2f\x42\x9b\xb6\xaa\x7a\x68\x08\x51\x7a\x36\x33\x86\x9d\x66\x98\xd9\x7a\xbc\x50\x54\xe5\xbf\x57\x9e\xd9\x00\xab\xae\x84\x18\xcf\xda\xcf\x7e\xcf\x0f\xdc\xae\x8b\x2c\xf0\xd9\xc7\x43\xe3\xfb\x24\xc4\xcb\x06\x36\x1c\x77\xf0\xdf\xef\x65\xb3\x78\x7c\x7c\xfe\xb4\x5a\x4d\x26\xb3\x19\xbc\x50\x12\x78\x61\x0c\x09\x8d\xb8\x18\x60\x13\x19\x10\x42\xb4\x04\x12\x81\xe9\x57\xaf\x19\x08\xcb\x06\x5e\xa3\x10\xc3\xf7\xf5\x4f\x32\x52\xd0\xa4\x25\x30\x31\x08\xa3\x11\x45\xfb\xe1\xbc\x87\x35\x41\xdf\x59\x14\xb2\x8a\xd0\x27\xca\x69\xd4\x45\xd3\x9e\x92\xe1\xd0\x52\x00\x69\x51\xc0\x25\x30\x71\xd7\x79\x12\xb2\x79\xa2\x96\x60\x9f\x3b\xc5\xd2\x29\x06\x7f\x84\x40\x64\x93\xe2\xad\x09\x0c\x53\x46\x8f\xc1\x10\x60\xb0\x0a\xb1\x47\xef\x6c\x1e\x9e\xf6\xc4\x47\xd8\xf4\xd2\xf3\xd0\x55\x51\x0f\x2d\x71\x19\x24\x53\x73\x09\x70\xa8\x49\x82\x6f\x64\xf3\x75\x56\xe4\x09\x19\x77\x24\xc4\x69\xae\xa1\x7e\xd0\xee\x5c\x58\x58\xcb\x94\xd2\x3c\x83\x60\x09\x20\x6e\x72\xb8\x6c\x4a\xce\xa5\x64\x7a\x5f\x14\x53\xa9\x14\x46\x5b\x7c\x7d\x2c\x00\xce\x7e\xd4\x16\xa9\x55\x89\x0c\x6c\x4c\xec\x43\x56\x25\x76\xc4\x28\x2e\x6c\xb5\x56\xa7\x74\x61\xfb\x8d\x8e\xf3\xac\xd0\x10\xc3\x1b\x1d\x33\xeb\xb2\x09\xef\xc9\x48\xe4\x81\x8c\x9c\xd7\x5a\x8d\x29\x0c\x87\x9b\xd3\x48\x2b\x61\x17\xb6\x37\xa3\x36\xe5\x6e\x0a\x7f\x26\x13\x00\x80\x8e\xa9\x43\xa6\x2a\xb9\x6d\x20\x9e\x03\xf6\xd2\x56\x2b\xdc\xd3\x2b\xfa\x9e\xa6\x70\xbd\x28\xa3\x9f\x0a\xf4\x99\xcd\xe0\x0b\x0d\xcc\xb2\x40\x4c\x1b\x62\xd2\xc5\x9d\x0c\x54\x5e\x0c\xc4\x4f\x95\x9e\x64\x78\x73\x0f\x5b\x92\x01\x7c\xc4\x63\xfa\x6f\xf2\x33\x6d\xe0\xbe\x1c\x6b\x83\x1d\xae\x9d\x77\xe2\x28\xd5\xeb\xc8\x1c\x0f\x77\xd7\xa3\x9f\x44\xbd\xd0\xc4\xff\xab\x59\xd7\xaf\xbd\x33\xb3\x6c\xbb\x46\xdd\x15\xf9\x0c\xae\xcf\xc3\x03\x74\x18\x9c\xa9\xae\x9a\xd8\x7b\x75\x8b\x40\x81\x04\xbc\xe0\x24\xf1\xcc\xe8\x6a\x3a\x92\x21\xc3\x92\xba\xee\xd2\xdb\xea\xde\x84\x7b\x02\x27\x5a\x9c\x24\x32\x6e\x69\xc4\xab\xe4\xdf\xdd\x9e\x08\xd6\xc5\xff\xd9\x5b\xd5\xc7\x02\xcb\xf7\x78\x81\xe7\xf3\xc5\x28\x65\x7d\xf5\xd0\xa9\xd6\xe6\xd5\xdd\x6d\x6e\x72\x03\x12\xe7\xe3\x3f\x8d\x3a\x77\x59\x95\xe4\x27\x94\xb6\xc8\xf2\x3e\x79\xff\x1b\x00\x00\xff\xff\x17\xb3\x35\x5f\x63\x04\x00\x00" func quorumcertificateCreate_voterCdcBytes() ([]byte, error) { return bindataRead( @@ -4770,7 +4770,7 @@ func quorumcertificateCreate_voterCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/create_voter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf3, 0xeb, 0x93, 0xe4, 0xb2, 0xd3, 0xe5, 0xbe, 0xe1, 0xde, 0x2b, 0xe8, 0x21, 0xfc, 0x75, 0xbe, 0x75, 0x96, 0xf1, 0xe3, 0x20, 0xa9, 0x80, 0x9f, 0x29, 0xb4, 0xf0, 0x4d, 0x27, 0xe3, 0x2a, 0x8b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe9, 0x48, 0xa6, 0x6f, 0xa7, 0x22, 0x17, 0x90, 0xdd, 0x8b, 0x56, 0x49, 0x45, 0x60, 0xb, 0x78, 0x4d, 0x45, 0x46, 0x85, 0x69, 0xb, 0xf, 0x31, 0x4f, 0x87, 0x38, 0xaf, 0xfd, 0x78, 0x6f, 0xde}} return a, nil } @@ -5574,7 +5574,7 @@ func stakingcollectionTestGet_tokensCdc() (*asset, error) { return a, nil } -var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5d\x4f\xdb\x4a\x10\x7d\xcf\xaf\x18\x78\x40\x8e\x04\xcb\xd5\xbd\x6f\x11\x1f\xca\x4d\x28\x8d\x8a\x00\x11\xda\xf7\x89\x77\x9c\x6c\xeb\xec\x58\xbb\xe3\x00\x45\xfc\xf7\xca\xeb\x0f\x62\xec\xb6\x41\xc2\x2f\x96\xbd\xb3\x67\x66\xce\x39\xb3\x6b\xd6\x19\x3b\x81\x4f\x29\x3f\xcc\x05\x7f\x18\xbb\x9c\x70\x9a\x52\x2c\x86\x2d\x24\x8e\xd7\xf0\xcf\xe3\xfc\x7e\xfc\x65\x76\x7d\x39\xb9\xb9\xba\xba\x98\xdc\xcf\x6e\xae\xc7\xd3\xe9\xdd\xc5\x7c\x3e\x18\x1c\x1f\xc3\xbd\x43\xeb\x13\x72\x1e\x10\xae\x59\xd3\x94\x52\x5a\xa2\xb0\x03\x5e\x7c\xa7\x58\x4a\x10\xb4\x80\xb9\xac\xd8\x99\x9f\x21\x34\x8e\x99\x73\x2b\x05\x00\x5a\x0d\xa8\xb5\x07\x59\xd1\x1b\x04\x61\x40\xcb\xb2\x22\x17\x76\xe4\x56\x3c\x54\x55\xc2\x6b\x99\x05\x88\xd1\x64\xc5\x24\x86\x34\x2c\x9e\x02\x92\x30\x8c\xb5\x76\xe4\xbd\x1a\x0c\xa4\x28\x12\x43\x74\x64\x59\xd3\x6c\x3a\x82\xb9\x38\x63\x97\x87\xa0\xeb\x74\xc5\xcf\xaf\x33\x2b\xff\xfd\x7b\x08\xc2\xa3\x7a\xfb\x10\x9e\x07\x00\x00\x29\x95\xbd\x74\x68\xba\xa3\x64\x04\x07\xbd\x0c\xaa\xce\x9f\x06\x4a\xb8\xb3\x36\xc1\x6c\x77\xa0\xe7\x1d\xe3\x6e\xf3\x45\x6a\xe2\x97\x41\x48\x9c\x39\xca\xd0\x51\x54\xb1\x39\x0a\xa2\x44\xff\xb3\x73\xfc\xf0\x0d\xd3\x9c\x86\x70\x30\x2e\xd7\xea\xb6\x8b\xa7\x90\x79\x45\xb5\x06\x05\xb5\x52\xa9\xde\x23\x5a\x25\xbb\x30\xac\x73\x2f\xb0\xc2\x0d\x01\xc2\x06\x53\xa3\x7b\xc4\x03\x63\x81\x9d\xa6\x20\xb6\xa3\x98\xcc\x86\xba\xa0\xaa\x29\xc5\x24\x10\xed\xf5\xb7\xae\x99\x7c\x55\xfc\x67\xdc\x50\x27\x20\xc2\x52\xd0\x11\x08\x0f\xb7\xdb\x0b\xcc\xa0\x35\x71\xb4\x3f\x25\x2f\xc6\x62\xa8\xac\x6e\x77\xbb\x8d\x9e\x06\x3c\x09\xe4\x99\xda\x1f\x36\x78\x15\xd9\x15\x73\x97\x24\x80\xe0\x28\x21\x47\x36\x0e\xc6\x2c\xfa\xdb\x1e\x87\x7e\x97\x14\x8f\xa7\x34\x51\xbf\x73\x1d\x9c\xd6\x35\x2a\x2f\xec\x70\x49\x6a\x11\xa4\x3c\xd9\xd5\x44\x67\x51\x81\x3d\xea\x1f\xff\x6e\xf8\xbc\xcc\x72\x8b\xb2\x1a\xb6\xd8\x3b\x3f\xaf\x09\x9c\x70\x9e\x6a\xb0\x2c\x50\x96\x52\x34\x5e\xb4\xdc\xc1\xda\x1f\x76\x58\x2a\x68\x29\xed\x5a\xc9\x08\x9c\x94\x5c\xed\x64\x3c\x61\x05\x0d\x64\x39\x62\x35\xce\x29\x2c\x49\xaa\x8f\x48\xb8\x9d\xba\xb4\x3f\x20\xc4\x98\xe1\xc2\xa4\x46\x9e\x6a\x91\xb2\x50\x0d\xac\x49\x56\xac\x3d\xe0\x06\x4d\x8a\x8b\x94\x80\x6d\x58\xaf\x0c\xdb\x27\xa1\x6a\x6b\xd8\x3f\xee\x70\xfa\x5a\xa4\x6a\xd2\x1b\xf2\x2d\x76\xd5\x92\x64\x67\x49\xdf\x79\x2e\x9c\x45\xef\x8a\x0f\xd2\xef\xb5\xab\x2b\x85\x8e\x3e\xc2\x11\x5b\xd3\x43\x8f\x14\xe7\x42\xed\x53\xe8\x8e\xd6\xdc\x77\x3e\x94\x97\xcc\x5f\xc7\x4a\xb5\xec\x61\x5b\x08\x27\x47\x7f\x1e\x36\xe5\x42\xee\x66\x43\x73\x8f\x94\xef\x37\xf7\xc8\xd6\x47\xdb\x6c\x53\xca\xd8\x1b\xe9\xbf\xec\x3e\xc2\x52\x0a\xb5\x6e\x40\x6f\xc2\x59\x1c\x9d\x1c\xb5\x9b\xdd\xab\x99\x7e\xf9\x15\x00\x00\xff\xff\x1a\x64\x3e\x60\xff\x07\x00\x00" +var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x4d\x4f\xdb\x40\x10\xbd\xe7\x57\x0c\x1c\x90\x23\x81\xa9\xda\x5b\xc4\x87\xd2\x84\xd2\xa8\x08\x10\xa1\xbd\x4f\xbc\xe3\x78\x5b\x67\xc7\xda\x1d\x07\x28\xe2\xbf\x57\x5e\x7f\x10\x63\xb7\x4d\x24\x7c\xb1\xec\x9d\x7d\x33\xf3\xde\x9b\x5d\xbd\xca\xd8\x0a\x7c\x49\xf9\x61\x2e\xf8\x4b\x9b\xe5\x84\xd3\x94\x22\xd1\x6c\x20\xb6\xbc\x82\x0f\x8f\xf3\xfb\xf1\xb7\xd9\xf5\xe5\xe4\xe6\xea\xea\x62\x72\x3f\xbb\xb9\x1e\x4f\xa7\x77\x17\xf3\xf9\x60\x70\x7c\x0c\xf7\x16\x8d\x8b\xc9\x3a\x40\xb8\x66\x45\x53\x4a\x69\x89\xc2\x16\x78\xf1\x93\x22\x29\x41\xd0\x00\xe6\x92\xb0\xd5\xbf\x7d\x68\x14\x31\xe7\x46\x0a\x00\x34\x0a\x50\x29\x07\x92\xd0\x1b\x04\x61\x40\xc3\x92\x90\xf5\x3b\x72\x23\x0e\xaa\x2a\xe1\xb5\xcc\x02\x44\x2b\x32\xa2\x63\x4d\x0a\x16\x4f\x1e\x49\x18\xc6\x4a\x59\x72\x2e\x1c\x0c\xa4\x28\x12\x7d\x74\x60\x58\xd1\x6c\x3a\x82\xb9\x58\x6d\x96\x87\xa0\xea\x74\xc5\xcf\xef\x33\x23\x9f\x3e\x1e\x82\xf0\xa8\xde\x3e\x84\xe7\x01\x00\x40\x4a\x65\x2f\x1d\x9a\xee\x28\x1e\xc1\x41\x2f\x83\x61\xe7\x4f\x03\x25\xdc\x59\x9b\x60\xb6\x3d\xd0\xf3\x96\x71\xb7\xf9\x22\xd5\xd1\xcb\xc0\x27\xce\x2c\x65\x68\x29\xa8\xd8\x1c\x79\x51\x82\xcf\x6c\x2d\x3f\xfc\xc0\x34\xa7\x21\x1c\x8c\xcb\xb5\xba\xed\xe2\x29\x64\x4e\xa8\xd6\xa0\xa0\x56\x2a\xd5\x7b\x44\xab\x64\x17\x86\x55\xee\x04\x12\x5c\x13\x20\xac\x31\xd5\xaa\x47\x3c\xd0\x06\xd8\x2a\xf2\x62\x5b\x8a\x48\xaf\xa9\x0b\x1a\x36\xa5\xe8\x18\x82\xbd\xfe\xd6\x15\x93\xab\x8a\xff\x8a\x6b\xea\x04\x04\x58\x0a\x3a\x02\xe1\xe1\x66\x7b\x9e\x19\x34\x3a\x0a\xf6\xa7\xe4\x44\x1b\xf4\x95\xd5\xed\x6e\xb6\xd1\xd3\x80\x23\x81\x3c\x0b\xf7\x87\x0d\x5e\x45\x76\xc5\xdc\x25\x09\x20\x58\x8a\xc9\x92\x89\xbc\x31\x8b\xfe\x36\xc7\xa1\xdf\x25\xc5\xe3\x28\x8d\xc3\xbf\xb9\x0e\x4e\xeb\x1a\x43\x27\x6c\x71\x49\xe1\xc2\x4b\x79\xb2\xad\x89\xce\x82\x02\x7b\xd4\x3f\xfe\xdd\xf0\x79\x99\xe5\x16\x25\x19\xb6\xd8\x3b\x3f\xaf\x09\x9c\x70\x9e\x2a\x30\x2c\x50\x96\x52\x34\x5e\xb4\xdc\xc1\xda\x1f\x76\x58\x2a\x68\x29\xed\x5a\xc9\x08\x1c\x97\x5c\x6d\x65\x3c\xe1\x10\x1a\xc8\x72\xc4\x6a\x9c\x53\x58\x92\x54\x1f\x81\x70\x3b\x75\x69\x7f\x40\x88\x30\xc3\x85\x4e\xb5\x3c\xd5\x22\x65\xbe\x1a\x58\x91\x24\xac\x1c\xe0\x1a\x75\x8a\x8b\x94\x80\x8d\x5f\xaf\x0c\xdb\x27\x61\xd8\xd6\xb0\x7f\xdc\xe1\xf4\xb5\xc8\xb0\x49\xaf\xc9\xb5\xd8\xdd\x55\xd5\x1d\x8f\x86\xb3\x60\xa7\xf8\xf7\x52\x7f\x63\x52\xe8\x91\xa2\x5c\xa8\x7d\xe2\xdc\xd1\x8a\xfb\xce\x82\xf2\x42\xf9\xef\x08\x85\x2d\x2b\x98\x16\xc2\xc9\xd1\xbf\x07\x2b\xb4\x3e\x77\xb3\xa1\xb9\x33\xca\xf7\x9b\x3b\x63\xe3\xa3\x6d\xac\x29\x65\xec\xb4\xf4\x5f\x6c\xef\x61\x9f\x10\x95\x6a\x40\x6f\xfc\xb9\x1b\x9c\x1c\xb5\x9b\xdd\xab\x99\x7e\xf9\x13\x00\x00\xff\xff\xf7\x72\x3a\xe6\xeb\x07\x00\x00" func stakingcollectionTransfer_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -5590,11 +5590,11 @@ func stakingcollectionTransfer_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/transfer_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd7, 0xa4, 0x2e, 0xfd, 0xe1, 0xe1, 0x6e, 0x5b, 0x7e, 0x6b, 0x48, 0x6, 0x75, 0xfc, 0xa8, 0x1a, 0xae, 0xed, 0xa4, 0xdf, 0xbd, 0x7d, 0x3b, 0xb6, 0xfc, 0x51, 0x6f, 0x88, 0x20, 0x29, 0x2f, 0xff}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0x8c, 0x49, 0xb, 0x6a, 0x4c, 0xbe, 0x46, 0xb1, 0x22, 0x1b, 0x70, 0xf0, 0x9a, 0x50, 0xf, 0x46, 0xe, 0x64, 0x69, 0xfd, 0xa9, 0x88, 0x11, 0xb0, 0xa2, 0x1f, 0xe4, 0xbb, 0x2e, 0xb5, 0x14}} return a, nil } -var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x51\x4f\xdb\x30\x10\x7e\xef\xaf\x38\x78\x40\xa9\x04\x61\xcf\x15\x05\x75\x2d\x63\xd5\x18\x20\x8a\xf6\x32\xed\xc1\x8d\x2f\x8d\xb7\xd4\x17\xd9\x97\x32\x86\xf8\xef\x93\xed\xa4\x6d\x48\xb6\x16\x89\xbc\x54\x4d\xce\xdf\x7d\xf7\x7d\x9f\x6d\xb5\x2c\xc8\x30\x7c\xca\xe9\x71\xc6\xe2\x97\xd2\x8b\x31\xe5\x39\x26\xac\x48\x43\x6a\x68\x09\x1f\x7e\xcf\x1e\x46\x5f\xa6\x37\x57\xe3\xdb\xeb\xeb\xcb\xf1\xc3\xf4\xf6\x66\x34\x99\xdc\x5f\xce\x66\xbd\xde\xe9\x29\x3c\x18\xa1\x6d\x8a\xc6\x82\x80\x1b\x92\xe8\x50\xd0\x00\xcd\x7f\x62\xc2\x01\x41\x68\x10\x25\x67\x64\xd4\x1f\x5f\x97\x24\x44\xa5\x66\xb7\x5a\x68\x09\x42\x4a\x0b\x9c\xe1\xf6\x72\x26\x10\x9a\x38\x43\xe3\xcb\x4b\xcd\x16\x2a\x7e\xb0\x21\xe8\x10\x94\x44\xcd\x2a\x55\x28\x61\xfe\xe4\x61\x98\x60\x24\xa5\x41\x6b\xe3\x5e\x8f\x1d\x3d\xe1\xab\x23\x4d\x12\xa7\x93\x01\xcc\xd8\x28\xbd\x38\x06\xa6\x41\x5d\xd9\x87\xe7\x1e\x00\x40\x8e\x81\x73\x4b\x8b\x7b\x4c\x07\x70\xd4\x29\x53\xdc\x7a\xb3\x86\x62\x6a\x7d\x1b\x8b\x62\x7f\xa0\xe7\x3d\xeb\xee\xca\x79\xae\x92\x97\x9e\x6f\x5c\x18\x2c\x84\xc1\xa8\x12\x6e\xe0\xc5\x8f\x3e\x92\x31\xf4\xf8\x4d\xe4\x25\xf6\xe1\x68\x14\xbe\xd5\x63\xbb\xc7\x79\x99\x61\x2d\xb7\x53\x91\x2b\x6b\x5f\x9b\x53\x79\xcb\x04\xcb\xd2\x32\x64\x62\x85\x20\x60\x25\x72\x25\x3b\x4c\x02\xa5\x81\x8c\x0c\xa6\x1a\x4c\x50\xad\xf0\x15\x62\xbc\x26\xa1\x52\x88\x0e\xba\x87\x96\x84\xb6\xa2\xfd\x59\xac\xb0\x55\x10\x89\x60\xe5\x00\x98\xfa\xdb\x83\x79\x4d\x84\x56\x49\x74\x38\x41\xcb\x4a\x0b\x4f\xab\x1e\x74\x7b\x86\x0e\xf6\x16\x19\xca\x22\x3e\xec\xaf\xf1\x2a\x99\x2b\xcd\xae\x90\x41\x80\xc1\x14\x0d\xea\xc4\xa7\xcf\x0d\xb7\x1d\xf8\xee\x7c\xb8\xc7\x62\x9e\xc6\xff\xca\x1b\x0c\x6b\x8e\xb1\x65\x32\x62\x81\xf1\xdc\x9b\x78\xb6\x6f\x7c\xce\x23\x87\x3d\xe8\xde\xdd\xed\xf2\x59\xe8\x72\x27\x38\xeb\x37\xd4\xbb\xb8\xa8\x05\x1c\x53\x99\x4b\xd0\xc4\x10\xa8\xb8\xc1\xdd\xc8\x2d\xac\xc3\x7e\x4b\x25\x27\x4b\x08\x6a\x65\x23\x50\x1a\xb4\xda\x1d\x39\xa6\x18\xd6\x78\x61\x67\xd5\x20\x43\x58\x20\x57\x7f\x22\xa6\x66\xdf\x90\x7a\x10\x90\x88\x42\xcc\x55\xae\xf8\xa9\x76\xa8\xf0\x54\x60\x89\x9c\x91\xb4\x20\x56\x42\xe5\x62\x9e\x23\x90\xf6\xdf\xab\xa8\x76\xf9\x17\x37\x0d\xec\xde\xe5\x30\xdc\x90\x8c\xd7\xed\x15\xda\x86\xb4\xf1\x02\x79\x6f\x3f\xdf\x78\x1c\x9c\x47\x6f\xaa\xf7\xbe\x1f\x34\xd9\x05\x97\xa3\x77\x8d\x83\xb3\x6f\x29\x92\x4c\x69\xac\xe4\x99\xea\x94\x60\xf8\xff\xdd\xe0\x84\xfa\xda\x58\x65\xa3\xfe\xf7\x70\xa4\xff\xd8\x49\x6f\xb1\xe9\xb9\x8e\x9b\x72\x5d\x53\x0a\x59\xb3\x05\x26\xe1\x16\x71\x90\x30\x9d\xbc\x0a\xf0\x3d\x2e\xa9\x75\x6e\x85\xeb\x6d\xe7\x76\x8f\x1b\xa3\xeb\xcd\xf2\xb3\x93\x1d\x33\x1b\xdf\xd5\x35\x5c\x5f\x5e\xe1\xb7\x49\x6e\x82\x05\x59\xc5\x1d\x97\xe8\x7b\x04\x39\x16\x52\x3a\xd4\x5b\x7f\xec\x47\x67\x27\x5b\x23\x1c\x1c\x77\x58\x39\xe8\x78\x17\x12\xf4\xd2\x7b\xf9\x1b\x00\x00\xff\xff\xf4\x19\x3e\xcb\x71\x08\x00\x00" +var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5d\x4f\xdb\x4a\x10\x7d\xcf\xaf\x18\x78\x40\x8e\x04\xe6\x3e\x47\x04\x94\x9b\x70\xb9\x51\x29\x20\x82\xfa\x52\xf5\x61\xe2\x1d\xc7\xdb\x3a\x3b\xd6\xee\x38\x94\x22\xfe\x7b\xb5\x5e\x3b\x1f\xd8\x6d\x40\xc2\x2f\x51\xec\xd9\x33\x67\xce\x39\xbb\xab\x97\x05\x5b\x81\xff\x72\x7e\x9c\x09\xfe\xd0\x66\x31\xe6\x3c\xa7\x44\x34\x1b\x48\x2d\x2f\xe1\x9f\x9f\xb3\x87\xd1\xa7\xe9\xcd\xd5\xf8\xf6\xfa\xfa\x72\xfc\x30\xbd\xbd\x19\x4d\x26\xf7\x97\xb3\x59\xaf\x77\x7a\x0a\x0f\x16\x8d\x4b\xc9\x3a\x40\xb8\x61\x45\x1e\x85\x2c\xf0\xfc\x3b\x25\x12\x10\xd0\x00\x96\x92\xb1\xd5\xbf\xaa\xba\x24\x61\x2e\x8d\xf8\xd5\x68\x14\xa0\x52\x0e\x24\xa3\xed\xe5\xc2\x80\x86\x25\x23\x5b\x95\x97\x46\x1c\xd4\xfc\x60\x43\xd0\x23\x68\x45\x46\x74\xaa\x49\xc1\xfc\xa9\x82\x11\x86\x91\x52\x96\x9c\x8b\x7b\x3d\xf1\xf4\xb0\xaa\x8e\x0c\x2b\x9a\x4e\x06\x30\x13\xab\xcd\xe2\x18\x84\x07\x4d\x65\x1f\x9e\x7b\x00\x00\x39\x05\xce\x2d\x2d\xee\x29\x1d\xc0\x51\xa7\x4c\x71\xeb\xcd\x1a\x4a\xb8\xf5\x6d\x8c\xc5\xdb\x81\x9e\xdf\x58\x77\x57\xce\x73\x9d\xbc\xf4\xaa\xc6\x85\xa5\x02\x2d\x45\xb5\x70\x83\x4a\xfc\xe8\x5f\xb6\x96\x1f\xbf\x60\x5e\x52\x1f\x8e\x46\xe1\x5b\x33\xb6\x7f\xbc\x97\x19\x35\x72\x7b\x15\xa5\xb6\xf6\xb5\x39\xb5\xb7\xc2\xb0\x2c\x9d\x40\x86\x2b\x02\x84\x15\xe6\x5a\x75\x98\x04\xda\x00\x5b\x15\x4c\xb5\x94\x90\x5e\xd1\x2b\xc4\x78\x4d\x42\xa7\x10\x1d\x74\x0f\xad\x98\x5c\x4d\xfb\x7f\x5c\x51\xab\x20\xc2\x60\xe5\x00\x84\xfb\xdb\x83\x55\x9a\xa0\xd1\x49\x74\x38\x21\x27\xda\x60\x45\xab\x19\x74\x7b\x86\x0e\xf6\x8e\x04\xca\x22\x3e\xec\xaf\xf1\x6a\x99\x6b\xcd\xae\x48\x00\xc1\x52\x4a\x96\x4c\x52\xa5\xcf\x0f\xb7\x1d\xf8\xee\x7c\xf8\xc7\x51\x9e\xc6\x7f\xca\x1b\x0c\x1b\x8e\xb1\x13\xb6\xb8\xa0\x78\x5e\x99\x78\xf6\xd6\xf8\x9c\x47\x1e\x7b\xd0\xbd\xbb\xdb\xe5\xb3\xd0\xe5\x0e\x25\xeb\xef\xa8\x77\x71\xd1\x08\x38\xe6\x32\x57\x60\x58\x20\x50\xf1\x83\xfb\x91\x5b\x58\x87\xfd\x96\x4a\x5e\x96\x10\xd4\xda\x46\xe0\x34\x68\xb5\x3f\x72\xc2\x31\xac\xf1\xc2\xce\x6a\x40\x86\xb0\x20\xa9\xff\x44\xc2\xbb\x7d\x43\xea\x01\x21\xc1\x02\xe7\x3a\xd7\xf2\xd4\x38\x54\x54\x54\x60\x49\x92\xb1\x72\x80\x2b\xd4\x39\xce\x73\x02\x36\xd5\xf7\x3a\xaa\x5d\xfe\xc5\xbb\x06\x76\xef\x72\x18\x6e\x48\xc6\xeb\xf6\x9a\xdc\x8e\xb4\xef\xb5\xf4\x9d\x27\xc2\x79\xf4\xae\xfa\x0f\xb7\xde\x5b\xb5\xc4\x24\xd3\x86\x6a\x29\xa6\x26\x65\x18\xfe\x3d\xf9\xf1\x82\xe4\xf3\xce\x2a\x17\xf5\xbf\x86\xe3\xfb\xdb\x5e\x7a\x8b\x4d\xcf\x75\xb4\xb4\xef\x9a\x72\xc8\x95\x2b\x28\x09\x37\x86\x87\x84\xe9\xe4\x55\x58\xef\x69\xc9\xad\x33\x2a\x5c\x65\x7b\xb7\x76\xbc\x33\xba\xd9\x2c\x3f\x3b\xd9\x33\xb3\xad\xba\xfa\x86\xeb\x8b\x2a\xfc\xee\x92\x9b\x50\xc1\x4e\x4b\xc7\x85\xf9\x11\xa1\x8d\x51\x29\x8f\x7a\x5b\x1d\xf1\xd1\xd9\xc9\xd6\x08\x07\xc7\x1d\x56\x0e\x3a\xde\x85\x04\xbd\xf4\x5e\x7e\x07\x00\x00\xff\xff\xb9\x90\x15\x27\x5d\x08\x00\x00" func stakingcollectionTransfer_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5610,7 +5610,7 @@ func stakingcollectionTransfer_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/transfer_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdf, 0x67, 0xe8, 0xef, 0xe2, 0xef, 0x8, 0x3d, 0x4f, 0xe9, 0xd5, 0x36, 0x7d, 0x74, 0x7e, 0x3c, 0x5c, 0xdd, 0x9f, 0xfa, 0x21, 0xd0, 0x7, 0xed, 0xb4, 0x6e, 0x73, 0xc9, 0x4f, 0x45, 0xb2, 0x84}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe6, 0x1b, 0x1a, 0xa5, 0x3e, 0xdc, 0x67, 0xdb, 0x56, 0x2c, 0xe4, 0x41, 0xd2, 0xf0, 0xbe, 0x6b, 0x8f, 0xa9, 0xd1, 0xe2, 0xa2, 0xcf, 0x19, 0xfa, 0x65, 0x64, 0x60, 0x12, 0x9, 0x2f, 0x1f, 0xd8}} return a, nil } @@ -5734,7 +5734,7 @@ func stakingproxyAdd_node_infoCdc() (*asset, error) { return a, nil } -var _stakingproxyGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xc1\x6a\xc3\x30\x0c\x86\xef\x79\x0a\xb5\x87\x91\xc0\x08\x3b\x97\x75\x25\xb4\x63\x2b\x83\x36\x34\x3b\x6c\x47\xd7\x51\x32\x33\xd7\x0a\x8a\xc2\x5a\x4a\xdf\x7d\xb8\x26\x29\x6b\x0f\xd3\xc5\xd8\xfa\xa5\x4f\xbf\x6c\x76\x0d\xb1\x40\x21\xea\xdb\xb8\x3a\x67\xda\x1f\xa0\x62\xda\xc1\xc3\xbe\x78\xcf\xde\x96\xab\x97\x7c\xb3\xfe\xf8\xcc\x16\x8b\xcd\x73\x51\x44\x91\xd2\x1a\xdb\x36\x56\xd6\x26\x50\x75\x0e\x76\xca\xb8\x58\x69\x4d\x9d\x93\x09\x64\x65\xc9\xd8\xb6\xf7\xe0\xa8\xc4\xe5\x62\x02\x85\xb0\x71\x75\x32\xf9\x03\x48\x57\x3e\xeb\x2a\x82\x63\x14\x01\x00\x58\x14\x68\x7c\x66\xae\x1a\xb5\x35\xd6\xc8\x01\xa6\x50\xa3\x64\xa1\x71\x0f\x48\xce\x6a\x1f\xa9\xee\x95\x06\xdb\xb4\x46\x79\xbc\xbb\x21\xf8\x07\xe4\xf3\xfd\x95\x6c\x89\x7c\xfc\x5f\x92\x77\x5b\x6b\xf4\xe9\x29\x1e\x48\x3e\x6e\xea\xd6\x0d\xb2\x12\xe2\xcb\xbc\xa1\x30\x57\xf2\x35\x54\x26\xa3\x2b\x77\x1b\xac\x60\x7a\x6d\x34\xdd\x12\x33\xfd\xc4\x17\x6f\xb3\x19\x34\xca\x19\x1d\x8f\xe7\xd4\xd9\x12\x1c\x09\x04\x11\x34\x67\x0a\x30\x56\xc8\xe8\x34\x82\x10\xb4\x61\xb8\xd0\x77\x9c\x04\x26\xa3\x74\xec\x06\xac\xdf\x50\xbf\xf4\xb8\xff\x9b\x70\x26\xa3\xe8\x14\xfd\x06\x00\x00\xff\xff\x9a\x82\xf5\x58\x06\x02\x00\x00" +var _stakingproxyGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x4d\x4b\xf3\x40\x10\xc7\xef\xfb\x29\xe6\xe9\xe1\x21\x01\x09\x9e\x8b\x5a\x42\x2b\x5a\x84\x36\x34\x1e\xf4\xb8\xdd\x4c\xe2\xe2\x76\x67\x99\x9d\x60\x4b\xe9\x77\x97\x74\x49\x45\x7a\x70\x2e\x21\x3b\xf3\x7f\xe1\x67\x77\x81\x58\xa0\x16\xfd\x69\x7d\x57\x31\xed\x0f\xd0\x32\xed\xe0\x76\x5f\xbf\x96\x2f\xcb\xd5\x53\xb5\x59\xbf\xbd\x97\x8b\xc5\xe6\xb1\xae\x95\xd2\xc6\x60\x8c\x99\x76\x2e\x87\xb6\xf7\xb0\xd3\xd6\x67\xda\x18\xea\xbd\x4c\xa1\x6c\x1a\xc6\x18\x6f\xc0\x53\x83\xcb\xc5\x14\x6a\x61\xeb\xbb\x7c\xfa\x2b\xa0\x58\x0d\x5b\xdf\x12\x1c\x95\x02\x00\x70\x28\x10\x86\xcd\x06\x5b\xb8\x87\x0e\xa5\x4c\x8e\xa3\x73\x7e\x3e\x1b\xa6\x30\x3a\xe8\xad\x75\x56\x2c\xc6\x62\x4b\xcc\xf4\x75\xf7\xff\xca\x7d\x78\x40\x3e\xff\x3f\x93\x6b\x90\x8f\x7f\x9f\x54\xfd\xd6\x59\x73\x7a\xc8\x2e\x61\xc3\x5c\xe9\xd6\x01\x59\x0b\xf1\x7c\x2c\x72\x48\xc2\x4a\xcb\xc7\x45\xf9\x53\x78\x36\x83\xa0\xbd\x35\xd9\x64\x4e\xbd\x6b\xc0\x93\x40\xaa\x0d\xe1\xac\x03\xc6\x16\x19\xbd\x41\x10\x82\x98\xe2\x12\x8e\x49\x9e\xf8\x30\x4a\xcf\xfe\x82\xa8\xe8\x50\x46\x84\xd9\x48\x3a\x7d\xf3\x7f\xea\xa4\xbe\x03\x00\x00\xff\xff\x93\xce\x73\xe0\xd4\x01\x00\x00" func stakingproxyGet_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5750,11 +5750,11 @@ func stakingproxyGet_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/get_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9, 0x35, 0xa9, 0x5b, 0x9b, 0x75, 0xa9, 0x9a, 0xa1, 0x30, 0x7a, 0xd, 0x7a, 0x1a, 0x78, 0xb3, 0x4, 0x94, 0x21, 0x5d, 0x94, 0xe3, 0xa, 0x14, 0x72, 0x17, 0x48, 0xb4, 0x9c, 0x62, 0x91, 0x65}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0xe, 0xa9, 0xc, 0x81, 0xc6, 0xb5, 0x5b, 0x90, 0xf7, 0x7f, 0x67, 0x66, 0xeb, 0xac, 0xbd, 0x20, 0xea, 0x8a, 0xbf, 0xa9, 0xb2, 0xe9, 0x4f, 0x9, 0xe3, 0x29, 0x52, 0x8a, 0xa5, 0xfd, 0x60}} return a, nil } -var _stakingproxyRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xcf\x8e\xda\x3c\x10\xbf\xe7\x29\xe6\xe3\xc0\x97\x48\x28\xea\xa1\xea\x21\x5a\x76\x45\x81\xb6\x2b\x56\x80\x08\xad\xda\xa3\xb1\x27\x60\x11\x3c\x91\x33\x51\x41\x2b\xde\xbd\x72\x9c\xb0\x81\xed\xb6\xf5\xc5\xc0\xcc\xfc\xfe\x8d\xd1\x87\x82\x2c\xc3\x13\xc9\x3d\xaa\x35\xed\xd1\x94\x90\x59\x3a\xc0\xbb\xe3\xd3\x62\x3c\x9b\x4e\xd6\x8b\xd9\x74\x3e\x9a\x4c\x56\xd3\x34\x0d\x9a\xee\x94\xc5\x5e\x9b\xed\xd2\xd2\xf1\xd4\x76\xa7\xeb\xd1\xec\x71\xfe\x79\xb9\x5a\x7c\xff\xd1\xb6\x07\x6c\x85\x29\x85\x64\x4d\x26\x14\x4a\x59\x2c\xcb\x04\x46\xfe\xc3\x00\xb4\x4a\x20\x65\xab\xcd\x76\x00\xe2\x40\x95\xe1\x04\xbe\x7e\xd2\xc7\x0f\xef\x23\x78\x0e\x02\x00\x80\x1c\x19\x76\x94\x2b\xb4\x2b\xcc\x12\xe8\x77\x75\xc6\xf5\xf5\xa5\xae\xfa\xee\xc2\x62\x21\x2c\x86\x42\x4a\x8f\x26\x2a\xde\x85\x1f\xc9\x5a\xfa\xf9\x4d\xe4\x15\x46\xd0\x1f\xf9\x9a\x63\x80\xe6\x94\x98\x67\xf1\x85\x05\x86\xd0\xcc\xc7\x25\x93\x15\x5b\x8c\x37\x35\xc2\xdd\x9b\xec\xf7\xa1\x0b\x21\x81\xb7\xea\xa9\xc7\x59\x0a\xde\x45\x17\x56\x77\x1e\x1e\xa0\x10\x46\xcb\xb0\x37\xa6\x2a\x57\x60\x88\xc1\x93\x81\xc5\x0c\x2d\x1a\x89\xc0\x04\x1d\xac\x9e\x47\x38\x7b\xc7\x78\x44\x59\x31\x76\xcc\xb8\xc4\x0c\x29\x5c\x14\x68\x05\x53\xe3\x68\x8b\xdc\x18\x6f\xf7\x10\xc5\x52\x14\x62\xa3\x73\xcd\x1a\xcb\x78\x8b\x7c\xa5\xec\xae\xdf\x5d\x72\x3c\x27\x85\xee\x07\xb4\xf5\x77\x2f\xe5\xf9\xef\x2d\xcb\x6a\x93\x6b\x79\xbe\xbf\xc2\x0e\x5f\xcd\xb5\x62\xc7\xad\xa4\x93\x1f\xac\x13\xfb\xaf\xc9\x3f\x8c\xe0\x5f\xc3\x73\x01\x00\x35\xa0\x50\xd4\x58\x70\xf1\x7b\xea\x45\xc1\xab\xbc\x1e\x4d\x46\x30\xbc\x8d\xce\xe5\x32\x6f\xaa\x61\xdd\x36\x49\x40\xab\x3f\x6e\xd1\xfc\xcf\x2e\x6f\xd0\x0e\x31\x23\xeb\xe1\x27\xc3\x5e\x2c\xc9\x48\xc1\xa1\x56\x51\x47\xc0\xf5\xeb\x8b\xa5\x45\xc1\xf8\x12\x66\xd8\x8a\x4b\x2e\x32\x5f\xfe\x2d\xfe\xfe\x8d\x9b\xce\x22\x60\x78\x4b\xe1\x43\x6a\xe0\x3b\xc3\xb7\xde\x85\x52\xdd\x4d\x5d\xfc\xb7\x3a\x62\xad\x06\x50\xb8\x52\x72\x4b\xda\x3e\xd2\x73\xf0\x2b\x00\x00\xff\xff\x02\xbf\x6d\x2f\x61\x04\x00\x00" +var _stakingproxyRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xcf\x8e\xda\x3c\x10\xbf\xe7\x29\x46\x1c\xf6\x4b\x24\x14\x7d\x87\xaa\x87\xa8\xec\x8a\x02\x6d\x57\xac\x00\x11\x5a\xb5\x47\x63\x4f\xc0\x22\x78\x22\x67\xa2\x82\x56\xbc\x7b\xe5\x38\xc9\x06\xb6\xdb\xd6\x17\x03\x33\xf3\xfb\x37\x46\x1f\x0b\xb2\x0c\x4f\x24\x0f\xa8\x36\x74\x40\x53\x42\x66\xe9\x08\xff\x9f\x9e\x96\x93\xf9\x6c\xba\x59\xce\x67\x8b\xf1\x74\xba\x9e\xa5\x69\xd0\x74\xa7\x2c\x0e\xda\xec\x56\x96\x4e\xe7\xb6\x3b\xdd\x8c\xe7\x8f\x8b\xcf\xab\xf5\xf2\xfb\x8f\xb6\x3d\x60\x2b\x4c\x29\x24\x6b\x32\xa1\x50\xca\x62\x59\x26\x30\xf6\x1f\x86\xa0\x55\x02\x29\x5b\x6d\x76\x43\x10\x47\xaa\x0c\x27\xf0\xf5\x93\x3e\xbd\x7f\x17\xc1\x73\x10\x00\x00\xe4\xc8\xb0\xa7\x5c\xa1\x5d\x63\x96\xc0\x5d\x5f\x67\x5c\x5f\x5f\xea\xaa\xef\x2e\x2c\x16\xc2\x62\x28\xa4\xf4\x68\xa2\xe2\x7d\xf8\x91\xac\xa5\x9f\xdf\x44\x5e\x61\x04\x77\x63\x5f\x73\x0c\xd0\x9c\x12\xf3\x2c\xee\x58\x60\x04\xcd\x7c\x5c\x32\x59\xb1\xc3\x78\x5b\x23\x7c\x78\x93\xfd\x3e\x74\x21\x24\xf0\x56\x3d\xf5\x38\x2b\xc1\xfb\xa8\x63\x75\xe7\xe1\x01\x0a\x61\xb4\x0c\x07\x13\xaa\x72\x05\x86\x18\x3c\x19\x58\xcc\xd0\xa2\x91\x08\x4c\xd0\xc3\x1a\x78\x84\x8b\x77\x8c\x27\x94\x15\x63\xcf\x8c\x4b\xcc\x90\xc2\x65\x81\x56\x30\x35\x8e\x76\xc8\x8d\xf1\x76\x0f\x51\x2c\x45\x21\xb6\x3a\xd7\xac\xb1\xbc\x52\xd5\xf9\xed\xef\x39\x5e\x90\x42\xf7\x03\xda\xfa\xbb\x57\xf3\xfc\xf7\x96\x55\xb5\xcd\xb5\xbc\xdc\x87\x57\x1c\xee\xbc\x9a\x6d\x35\x4f\x5a\x65\x67\x3f\xec\x82\xbb\x9a\xfe\xe7\x14\x5d\x12\x40\x0d\x2c\x14\x35\x1a\x74\xc6\xcf\x83\x28\x78\x15\xdc\xa3\xc9\x08\x46\xb7\x19\xc6\x3b\xe4\x45\x53\x0d\xeb\xb6\x69\x02\x5a\xfd\x51\x88\xf9\x8f\x5d\xf0\xa0\x1d\x62\x46\xd6\xc3\x4f\x47\x83\x58\x92\x91\x82\x43\xad\xa2\x9e\x80\xeb\x67\x18\x4b\x8b\x82\xf1\x25\xd2\xb0\x15\x97\x74\x32\x5f\xfe\x36\xfe\xfe\x8d\x9b\xde\x3a\x60\x74\x4b\xe1\x43\x6a\xe0\x7b\xc3\xb7\xde\x85\x52\xfd\x5d\x75\xfe\x5b\x1d\xb1\x56\x43\x28\x5c\x29\xb9\x25\x6d\x5f\xeb\x25\xf8\x15\x00\x00\xff\xff\xe2\x06\x92\xc2\x6a\x04\x00\x00" func stakingproxyRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5770,7 +5770,7 @@ func stakingproxyRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0xc5, 0xa9, 0x42, 0x4e, 0xce, 0x54, 0xf, 0x64, 0x6, 0x2b, 0x7f, 0xfa, 0x96, 0x9e, 0x7b, 0xb0, 0x10, 0xab, 0xd9, 0x20, 0xb7, 0x8d, 0x95, 0x17, 0x85, 0xed, 0xd9, 0xb4, 0xfc, 0x74, 0x82}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0xbd, 0x6a, 0x1b, 0xa4, 0xdb, 0xb0, 0xf, 0xe7, 0x71, 0x78, 0xd1, 0x20, 0xb5, 0xaa, 0x1f, 0xf6, 0xf6, 0x15, 0x62, 0x84, 0x12, 0x23, 0x5d, 0x8c, 0x21, 0xd6, 0xed, 0x88, 0x21, 0x1, 0xf6}} return a, nil } diff --git a/lib/go/templates/manifest.mainnet.json b/lib/go/templates/manifest.mainnet.json index a41b25966..b734805f8 100755 --- a/lib/go/templates/manifest.mainnet.json +++ b/lib/go/templates/manifest.mainnet.json @@ -247,7 +247,7 @@ { "id": "TH.16", "name": "Register Operator Node", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).capabilities.get\n \u003c\u0026StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}\u003e\n (StakingProxy.NodeOperatorCapabilityPublicPath)!.borrow() \n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).capabilities\n .borrow\u003c\u0026StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}\u003e(\n StakingProxy.NodeOperatorCapabilityPublicPath\n )\n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", "arguments": [ { "type": "Address", @@ -284,7 +284,7 @@ } ], "network": "mainnet", - "hash": "bf30cbfbf55229949e2b61c11696094d6b015ebcff660130e85db95cad02c0e2" + "hash": "b93128438ecb41c0a66ac921d2ede64ad85423d53a815e6b9e078eafc0fff282" }, { "id": "TH.17", @@ -1033,7 +1033,7 @@ { "id": "SCO.13", "name": "Transfer Node", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeStaker object from an authorizers accoount\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .get\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath)!\n .borrow()\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeStaker object from an authorizers accoount\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", "arguments": [ { "type": "String", @@ -1059,12 +1059,12 @@ } ], "network": "mainnet", - "hash": "e216a7e4d19e22831bce98085bd21d008ab7e816622d2cef45972083a945e1e4" + "hash": "93199b9c534b50efff8b0296411597aeda77c00ac8e8626d87f6d371702fd5e1" }, { "id": "SCO.14", "name": "Transfer Delegator", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeDelegator object from an authorizers accoount\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .get\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath)!\n .borrow()\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeDelegator object from an authorizers accoount\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", "arguments": [ { "type": "String", @@ -1101,7 +1101,7 @@ } ], "network": "mainnet", - "hash": "44f5bd36cab4e0024326452164a5ed7e1c783d7498e516b93a03f30bec330093" + "hash": "323dec8d78355bf2b1c0407df44db1f52eb3a8c67047d44965ecb6926f97401e" }, { "id": "SCO.15", diff --git a/lib/go/templates/manifest.testnet.json b/lib/go/templates/manifest.testnet.json index 704ef2df7..8c2f56451 100755 --- a/lib/go/templates/manifest.testnet.json +++ b/lib/go/templates/manifest.testnet.json @@ -247,7 +247,7 @@ { "id": "TH.16", "name": "Register Operator Node", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).capabilities.get\n \u003c\u0026StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}\u003e\n (StakingProxy.NodeOperatorCapabilityPublicPath)!.borrow() \n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).capabilities\n .borrow\u003c\u0026StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}\u003e(\n StakingProxy.NodeOperatorCapabilityPublicPath\n )\n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", "arguments": [ { "type": "Address", @@ -284,7 +284,7 @@ } ], "network": "testnet", - "hash": "9145e4d398f3a28ef6f921c977cb12f71b8af28038e38c58286b7f5d09cee07a" + "hash": "1e71a6cd21af513921408df289070468e0a90538c7b55934855aaba710099175" }, { "id": "TH.17", @@ -1033,7 +1033,7 @@ { "id": "SCO.13", "name": "Transfer Node", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeStaker object from an authorizers accoount\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .get\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath)!\n .borrow()\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeStaker object from an authorizers accoount\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", "arguments": [ { "type": "String", @@ -1059,12 +1059,12 @@ } ], "network": "testnet", - "hash": "89a9b588f0a4905125247cde161ef2266a46a97823ec169467cff2bdc11d0a76" + "hash": "baed78fd47e1579f8fff8deba3060986cf79ed179027a094624da645612635d5" }, { "id": "SCO.14", "name": "Transfer Delegator", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeDelegator object from an authorizers accoount\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .get\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath)!\n .borrow()\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeDelegator object from an authorizers accoount\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", "arguments": [ { "type": "String", @@ -1101,7 +1101,7 @@ } ], "network": "testnet", - "hash": "f148c526ed3d8e496c6757e2f71827cd3f5a7c475b98327aa4977e90a30d1907" + "hash": "d5f6d5d1bc21315467fdca5fb53255171c8355571241ce93937c8772fd8d01d4" }, { "id": "SCO.15", diff --git a/transactions/dkg/create_participant.cdc b/transactions/dkg/create_participant.cdc index 491b383bc..0ac19dfa1 100644 --- a/transactions/dkg/create_participant.cdc +++ b/transactions/dkg/create_participant.cdc @@ -3,8 +3,8 @@ import FlowDKG from 0xDKGADDRESS transaction(address: Address, nodeID: String) { prepare(signer: auth(SaveValue) &Account) { - let admin = getAccount(address).capabilities.get<&FlowDKG.Admin>(/public/dkgAdmin)! - .borrow() ?? panic("Could not borrow admin reference") + let admin = getAccount(address).capabilities.borrow<&FlowDKG.Admin>(/public/dkgAdmin) + ?? panic("Could not borrow admin reference") let dkgParticipant <- admin.createParticipant(nodeID: nodeID) diff --git a/transactions/flowToken/mint_tokens.cdc b/transactions/flowToken/mint_tokens.cdc index a70673f67..8a35bc804 100644 --- a/transactions/flowToken/mint_tokens.cdc +++ b/transactions/flowToken/mint_tokens.cdc @@ -16,8 +16,7 @@ transaction(recipient: Address, amount: UFix64) { ?? panic("Signer is not the token admin") self.tokenReceiver = getAccount(recipient) - .capabilities.get<&{FungibleToken.Receiver}>(/public/flowTokenReceiver)! - .borrow() + .capabilities.borrow<&{FungibleToken.Receiver}>(/public/flowTokenReceiver) ?? panic("Unable to borrow receiver reference") } diff --git a/transactions/flowToken/scripts/get_balance.cdc b/transactions/flowToken/scripts/get_balance.cdc index b82a320a8..6f0e3b6f9 100644 --- a/transactions/flowToken/scripts/get_balance.cdc +++ b/transactions/flowToken/scripts/get_balance.cdc @@ -6,8 +6,7 @@ import FlowToken from "FlowToken" access(all) fun main(account: Address): UFix64 { let vaultRef = getAccount(account) - .capabilities.get<&FlowToken.Vault{FungibleToken.Balance}>(/public/flowTokenBalance)! - .borrow() + .capabilities.borrow<&FlowToken.Vault{FungibleToken.Balance}>(/public/flowTokenBalance) ?? panic("Could not borrow Balance reference to the Vault") return vaultRef.balance diff --git a/transactions/flowToken/transfer_tokens.cdc b/transactions/flowToken/transfer_tokens.cdc index abe214856..a86c03f63 100644 --- a/transactions/flowToken/transfer_tokens.cdc +++ b/transactions/flowToken/transfer_tokens.cdc @@ -27,8 +27,7 @@ transaction(amount: UFix64, to: Address) { // Get a reference to the recipient's Receiver let receiverRef = getAccount(to) - .capabilities.get<&{FungibleToken.Receiver}>(/public/flowTokenReceiver)! - .borrow() + .capabilities.borrow<&{FungibleToken.Receiver}>(/public/flowTokenReceiver) ?? panic("Could not borrow receiver reference to the recipient's Vault") // Deposit the withdrawn tokens in the recipient's receiver diff --git a/transactions/idTableStaking/delegation/get_delegator_info_from_address.cdc b/transactions/idTableStaking/delegation/get_delegator_info_from_address.cdc index 3d10e79a5..05a98f576 100644 --- a/transactions/idTableStaking/delegation/get_delegator_info_from_address.cdc +++ b/transactions/idTableStaking/delegation/get_delegator_info_from_address.cdc @@ -5,8 +5,7 @@ import FlowIDTableStaking from "FlowIDTableStaking" access(all) fun main(address: Address): FlowIDTableStaking.DelegatorInfo { let delegator = getAccount(address) - .capabilities.get<&{FlowIDTableStaking.NodeDelegatorPublic}>(/public/flowStakingDelegator)! - .borrow() + .capabilities.borrow<&{FlowIDTableStaking.NodeDelegatorPublic}>(/public/flowStakingDelegator) ?? panic("Could not borrow reference to delegator object") return FlowIDTableStaking.DelegatorInfo(nodeID: delegator.nodeID, delegatorID: delegator.id) diff --git a/transactions/idTableStaking/scripts/get_node_info_from_address.cdc b/transactions/idTableStaking/scripts/get_node_info_from_address.cdc index 12c5a7f72..a06714dca 100644 --- a/transactions/idTableStaking/scripts/get_node_info_from_address.cdc +++ b/transactions/idTableStaking/scripts/get_node_info_from_address.cdc @@ -5,8 +5,7 @@ import FlowIDTableStaking from "FlowIDTableStaking" access(all) fun main(address: Address): FlowIDTableStaking.NodeInfo { let nodeStaker = getAccount(address) - .capabilities.get<&{FlowIDTableStaking.NodeStakerPublic}>(FlowIDTableStaking.NodeStakerPublicPath)! - .borrow() + .capabilities.borrow<&{FlowIDTableStaking.NodeStakerPublic}>(FlowIDTableStaking.NodeStakerPublicPath) ?? panic("Could not borrow reference to node staker object") return FlowIDTableStaking.NodeInfo(nodeID: nodeStaker.id) diff --git a/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc b/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc index 3af5fe4f5..5a964bcac 100644 --- a/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc +++ b/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc @@ -9,10 +9,9 @@ transaction(custodyProviderAddress: Address) { prepare(admin: auth(BorrowValue) &Account) { let capabilityReceiver = getAccount(custodyProviderAddress) - .capabilities.get<&LockedTokens.LockedAccountCreator>( + .capabilities.borrow<&LockedTokens.LockedAccountCreator>( LockedTokens.LockedAccountCreatorPublicPath - )! - .borrow() + ) ?? panic("Could not borrow capability receiver reference") let tokenAdminCollection = admin.capabilities.get<&LockedTokens.TokenAdminCollection>( diff --git a/transactions/lockedTokens/admin/check_main_registration.cdc b/transactions/lockedTokens/admin/check_main_registration.cdc index 4c783d7b9..b074ad81b 100644 --- a/transactions/lockedTokens/admin/check_main_registration.cdc +++ b/transactions/lockedTokens/admin/check_main_registration.cdc @@ -11,8 +11,7 @@ transaction(mainAccount: Address) { ?? panic("Could not borrow a reference to the locked token admin collection") let lockedAccountInfoRef = getAccount(mainAccount) - .capabilities.get<&LockedTokens.TokenHolder>(LockedTokens.LockedAccountInfoPublicPath)! - .borrow() + .capabilities.borrow<&LockedTokens.TokenHolder>(LockedTokens.LockedAccountInfoPublicPath) ?? panic("Could not borrow a reference to public LockedAccountInfo") let lockedAccount = lockedAccountInfoRef.getLockedAccountAddress() diff --git a/transactions/lockedTokens/admin/deposit_locked_tokens.cdc b/transactions/lockedTokens/admin/deposit_locked_tokens.cdc index 634bbbb0a..98ab5d9ff 100644 --- a/transactions/lockedTokens/admin/deposit_locked_tokens.cdc +++ b/transactions/lockedTokens/admin/deposit_locked_tokens.cdc @@ -36,10 +36,9 @@ transaction(to: Address, amount: UFix64) { // Get a reference to the recipient's Receiver let receiverRef = recipient - .capabilities.get<&{FungibleToken.Receiver}>( + .capabilities.borrow<&{FungibleToken.Receiver}>( /public/lockedFlowTokenReceiver - )! - .borrow() + ) ?? panic("Could not borrow receiver reference to the recipient's locked Vault") // Deposit the withdrawn tokens in the recipient's receiver diff --git a/transactions/lockedTokens/admin/get_unlocking_bad_accounts.cdc b/transactions/lockedTokens/admin/get_unlocking_bad_accounts.cdc index 865ae6183..844c1a754 100644 --- a/transactions/lockedTokens/admin/get_unlocking_bad_accounts.cdc +++ b/transactions/lockedTokens/admin/get_unlocking_bad_accounts.cdc @@ -6,7 +6,7 @@ access(all) fun main(tokenAdmin: Address): {Address: UFix64} { let account = getAccount(tokenAdmin) - let dictionaryReference = account.capabilities.get<&{Address: UFix64}>(/public/unlockingBadAccounts)!.borrow() + let dictionaryReference = account.capabilities.borrow<&{Address: UFix64}>(/public/unlockingBadAccounts) ?? panic("Could not get bad accounts dictionary") for address in dictionaryReference.keys { diff --git a/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc b/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc index 2b6e906b8..e7e0ab18d 100644 --- a/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc +++ b/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc @@ -26,8 +26,7 @@ transaction(unlockInfo: {Address: UFix64}) { // revert the entire transaction if it fails // to get the information for a single address if let lockedAccountInfoRef = getAccount(unlockedAddress) - .capabilities.get<&LockedTokens.TokenHolder>(LockedTokens.LockedAccountInfoPublicPath)! - .borrow() { + .capabilities.borrow<&LockedTokens.TokenHolder>(LockedTokens.LockedAccountInfoPublicPath) { let lockedAccountAddress = lockedAccountInfoRef.getLockedAccountAddress() diff --git a/transactions/lockedTokens/delegator/get_delegator_id.cdc b/transactions/lockedTokens/delegator/get_delegator_id.cdc index a3037f5f9..b0a70c04d 100644 --- a/transactions/lockedTokens/delegator/get_delegator_id.cdc +++ b/transactions/lockedTokens/delegator/get_delegator_id.cdc @@ -3,10 +3,9 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(account: Address): UInt32 { let lockedAccountInfoRef = getAccount(account) - .capabilities.get<&LockedTokens.TokenHolder>( + .capabilities.borrow<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - )! - .borrow() + ) ?? panic("Could not borrow a reference to public LockedAccountInfo") return lockedAccountInfoRef.getDelegatorID()! diff --git a/transactions/lockedTokens/delegator/get_delegator_info.cdc b/transactions/lockedTokens/delegator/get_delegator_info.cdc index dbffec925..d3bd53707 100644 --- a/transactions/lockedTokens/delegator/get_delegator_info.cdc +++ b/transactions/lockedTokens/delegator/get_delegator_info.cdc @@ -10,12 +10,12 @@ access(all) fun main(account: Address): [FlowIDTableStaking.DelegatorInfo] { let pubAccount = getAccount(account) - let delegatorCap = pubAccount - .capabilities.get<&{FlowIDTableStaking.NodeDelegatorPublic}>( + let optionalDelegatorRef = pubAccount + .capabilities.borrow<&{FlowIDTableStaking.NodeDelegatorPublic}>( /public/flowStakingDelegator - )! + ) - if let delegatorRef = delegatorCap.borrow() { + if let delegatorRef = optionalDelegatorRef { let info = FlowIDTableStaking.DelegatorInfo( nodeID: delegatorRef.nodeID, delegatorID: delegatorRef.id @@ -23,12 +23,12 @@ access(all) fun main(account: Address): [FlowIDTableStaking.DelegatorInfo] { delegatorInfoArray.append(info) } - let lockedAccountInfoCap = pubAccount - .capabilities.get<&LockedTokens.TokenHolder>( + let optionalLockedAccountInfoRef = pubAccount + .capabilities.borrow<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - )! + ) - if let lockedAccountInfoRef = lockedAccountInfoCap.borrow() { + if let lockedAccountInfoRef = optionalLockedAccountInfoRef { let nodeID = lockedAccountInfoRef.getDelegatorNodeID() let delegatorID = lockedAccountInfoRef.getDelegatorID() diff --git a/transactions/lockedTokens/delegator/get_delegator_node_id.cdc b/transactions/lockedTokens/delegator/get_delegator_node_id.cdc index 3b50d3989..afdf3bb7c 100644 --- a/transactions/lockedTokens/delegator/get_delegator_node_id.cdc +++ b/transactions/lockedTokens/delegator/get_delegator_node_id.cdc @@ -3,10 +3,9 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(account: Address): String { let lockedAccountInfoRef = getAccount(account) - .capabilities.get<&LockedTokens.TokenHolder>( + .capabilities.borrow<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - )! - .borrow() + ) ?? panic("Could not borrow a reference to public LockedAccountInfo") return lockedAccountInfoRef.getDelegatorNodeID()! diff --git a/transactions/lockedTokens/staker/get_node_id.cdc b/transactions/lockedTokens/staker/get_node_id.cdc index 9ff08af32..e69e1bb97 100644 --- a/transactions/lockedTokens/staker/get_node_id.cdc +++ b/transactions/lockedTokens/staker/get_node_id.cdc @@ -3,10 +3,9 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(account: Address): String { let lockedAccountInfoRef = getAccount(account) - .capabilities.get<&LockedTokens.TokenHolder>( + .capabilities.borrow<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - )! - .borrow() + ) ?? panic("Could not borrow a reference to public LockedAccountInfo") return lockedAccountInfoRef.getNodeID()! diff --git a/transactions/lockedTokens/staker/get_staker_info.cdc b/transactions/lockedTokens/staker/get_staker_info.cdc index e13cc0c26..aa7ca7403 100644 --- a/transactions/lockedTokens/staker/get_staker_info.cdc +++ b/transactions/lockedTokens/staker/get_staker_info.cdc @@ -10,22 +10,22 @@ access(all) fun main(account: Address): [FlowIDTableStaking.NodeInfo] { let pubAccount = getAccount(account) - let nodeStakerCap = pubAccount - .capabilities.get<&{FlowIDTableStaking.NodeStakerPublic}>( + let optionalNodeStakerRef = pubAccount + .capabilities.borrow<&{FlowIDTableStaking.NodeStakerPublic}>( FlowIDTableStaking.NodeStakerPublicPath - )! + ) - if let nodeStakerRef = nodeStakerCap.borrow() { + if let nodeStakerRef = optionalNodeStakerRef { let info = FlowIDTableStaking.NodeInfo(nodeID: nodeStakerRef.id) nodeInfoArray.append(info) } - let lockedAccountInfoCap = pubAccount - .capabilities.get<&LockedTokens.TokenHolder>( + let optionalLockedAccountInfoRef = pubAccount + .capabilities.borrow<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - )! + ) - if let lockedAccountInfoRef = lockedAccountInfoCap.borrow() { + if let lockedAccountInfoRef = optionalLockedAccountInfoRef { if let nodeID = lockedAccountInfoRef.getNodeID() { let info = FlowIDTableStaking.NodeInfo(nodeID: nodeID) nodeInfoArray.append(info) diff --git a/transactions/lockedTokens/user/get_locked_account_address.cdc b/transactions/lockedTokens/user/get_locked_account_address.cdc index 401c45ed5..d42bd13e4 100644 --- a/transactions/lockedTokens/user/get_locked_account_address.cdc +++ b/transactions/lockedTokens/user/get_locked_account_address.cdc @@ -3,10 +3,9 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(account: Address): Address { let lockedAccountInfoRef = getAccount(account) - .capabilities.get<&LockedTokens.TokenHolder>( + .capabilities.borrow<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - )! - .borrow() + ) ?? panic("Could not borrow a reference to public LockedAccountInfo") return lockedAccountInfoRef.getLockedAccountAddress() diff --git a/transactions/lockedTokens/user/get_locked_account_balance.cdc b/transactions/lockedTokens/user/get_locked_account_balance.cdc index 0292f8c79..5e7c42772 100644 --- a/transactions/lockedTokens/user/get_locked_account_balance.cdc +++ b/transactions/lockedTokens/user/get_locked_account_balance.cdc @@ -3,10 +3,9 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(account: Address): UFix64 { let lockedAccountInfoRef = getAccount(account) - .capabilities.get<&LockedTokens.TokenHolder>( + .capabilities.borrow<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - )! - .borrow() + ) ?? panic("Could not borrow a reference to public LockedAccountInfo") return lockedAccountInfoRef.getLockedAccountBalance() diff --git a/transactions/lockedTokens/user/get_multiple_unlock_limits.cdc b/transactions/lockedTokens/user/get_multiple_unlock_limits.cdc index 78f723a5c..a62cfe69b 100644 --- a/transactions/lockedTokens/user/get_multiple_unlock_limits.cdc +++ b/transactions/lockedTokens/user/get_multiple_unlock_limits.cdc @@ -6,10 +6,9 @@ access(all) fun main(accounts: [Address]): [UFix64] { for account in accounts { let lockedAccountInfoRef = getAccount(account) - .capabilities.get<&LockedTokens.TokenHolder>( + .capabilities.borrow<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - )! - .borrow() + ) ?? panic("Could not borrow a reference to public LockedAccountInfo") limits.append(lockedAccountInfoRef.getUnlockLimit()) diff --git a/transactions/lockedTokens/user/get_total_balance.cdc b/transactions/lockedTokens/user/get_total_balance.cdc index 691886645..3e30d7711 100644 --- a/transactions/lockedTokens/user/get_total_balance.cdc +++ b/transactions/lockedTokens/user/get_total_balance.cdc @@ -21,30 +21,28 @@ access(all) fun main(address: Address): UFix64 { let account = getAccount(address) - if let vaultRef = account.capabilities.get<&FlowToken.Vault>(/public/flowTokenBalance)! - .borrow() - { + if let vaultRef = account.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { sum = sum + vaultRef.balance } // Get token balance from the unlocked account's node staking pools - let nodeStakerCap = account - .capabilities.get<&{FlowIDTableStaking.NodeStakerPublic}>( + let optionalNodeStakerRef = account + .capabilities.borrow<&{FlowIDTableStaking.NodeStakerPublic}>( FlowIDTableStaking.NodeStakerPublicPath - )! + ) - if let nodeStakerRef = nodeStakerCap.borrow() { + if let nodeStakerRef = optionalNodeStakerRef { let nodeInfo = FlowIDTableStaking.NodeInfo(nodeID: nodeStakerRef.id) sum = sum + nodeInfo.totalTokensInRecord() } // Get token balance from the unlocked account's delegator staking pools - let delegatorCap = account - .capabilities.get<&{FlowIDTableStaking.NodeDelegatorPublic}>( + let optionalDelegatorRef = account + .capabilities.borrow<&{FlowIDTableStaking.NodeDelegatorPublic}>( /public/flowStakingDelegator )! - if let delegatorRef = delegatorCap.borrow() { + if let delegatorRef = optionalDelegatorRef { let delegatorInfo = FlowIDTableStaking.DelegatorInfo( nodeID: delegatorRef.nodeID, delegatorID: delegatorRef.id @@ -54,12 +52,12 @@ access(all) fun main(address: Address): UFix64 { } // Get the locked account public capability - let lockedAccountInfoCap = account + let optionalLockedAccountInfoRef = account .capabilities.get<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath )! - if let lockedAccountInfoRef = lockedAccountInfoCap.borrow() { + if let lockedAccountInfoRef = optionalLockedAccountInfoRef { // Add the locked account balance sum = sum + lockedAccountInfoRef.getLockedAccountBalance() diff --git a/transactions/lockedTokens/user/get_unlock_limit.cdc b/transactions/lockedTokens/user/get_unlock_limit.cdc index 994b11e0f..94ee17416 100644 --- a/transactions/lockedTokens/user/get_unlock_limit.cdc +++ b/transactions/lockedTokens/user/get_unlock_limit.cdc @@ -3,10 +3,9 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(account: Address): UFix64 { let lockedAccountInfoRef = getAccount(account) - .capabilities.get<&LockedTokens.TokenHolder>( + .capabilities.borrow<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - )! - .borrow() + ) ?? panic("Could not borrow a reference to public LockedAccountInfo") return lockedAccountInfoRef.getUnlockLimit() diff --git a/transactions/quorumCertificate/create_voter.cdc b/transactions/quorumCertificate/create_voter.cdc index 4c16c9cb7..f01320bcd 100644 --- a/transactions/quorumCertificate/create_voter.cdc +++ b/transactions/quorumCertificate/create_voter.cdc @@ -17,8 +17,8 @@ transaction(adminAddress: Address, nodeID: String, stakingKey: String) { // Get the admin reference from the admin account let admin = getAccount(adminAddress) - let adminRef = admin.capabilities.get<&FlowClusterQC.Admin>(/public/voterCreator)! - .borrow() ?? panic("Could not borrow a reference to the admin") + let adminRef = admin.capabilities.borrow<&FlowClusterQC.Admin>(/public/voterCreator) + ?? panic("Could not borrow a reference to the admin") // Create a voter object and save it to storage let voter <- adminRef.createVoter(nodeID: nodeID, stakingKey: stakingKey) diff --git a/transactions/stakingCollection/transfer_delegator.cdc b/transactions/stakingCollection/transfer_delegator.cdc index f75695531..5254723ef 100644 --- a/transactions/stakingCollection/transfer_delegator.cdc +++ b/transactions/stakingCollection/transfer_delegator.cdc @@ -23,8 +23,7 @@ transaction(nodeID: String, delegatorID: UInt32, to: Address) { // Borrow a capability to the public methods available on the receivers StakingCollection. self.toStakingCollectionCap = toAccount.capabilities - .get<&FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}>(FlowStakingCollection.StakingCollectionPublicPath)! - .borrow() + .borrow<&FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}>(FlowStakingCollection.StakingCollectionPublicPath) ?? panic("Could not borrow ref to StakingCollection") } diff --git a/transactions/stakingCollection/transfer_node.cdc b/transactions/stakingCollection/transfer_node.cdc index 89be4bf6a..bf9f0de68 100644 --- a/transactions/stakingCollection/transfer_node.cdc +++ b/transactions/stakingCollection/transfer_node.cdc @@ -23,8 +23,7 @@ transaction(nodeID: String, to: Address) { // Borrow a capability to the public methods available on the receivers StakingCollection. self.toStakingCollectionCap = toAccount.capabilities - .get<&FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}>(FlowStakingCollection.StakingCollectionPublicPath)! - .borrow() + .borrow<&FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}>(FlowStakingCollection.StakingCollectionPublicPath) ?? panic("Could not borrow ref to StakingCollection") let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID] diff --git a/transactions/stakingProxy/get_node_info.cdc b/transactions/stakingProxy/get_node_info.cdc index 50f0b70d8..5818d36a1 100644 --- a/transactions/stakingProxy/get_node_info.cdc +++ b/transactions/stakingProxy/get_node_info.cdc @@ -2,12 +2,10 @@ import StakingProxy from 0xSTAKINGPROXYADDRESS access(all) fun main(account: Address, nodeID: String): StakingProxy.NodeInfo { - let proxyCapability = getAccount(account) - .capabilities.get<&StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}>( + let proxyRef = getAccount(account) + .capabilities.borrow<&StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}>( StakingProxy.NodeOperatorCapabilityPublicPath - )! - - let proxyRef = proxyCapability.borrow() + ) ?? panic("Could not borrow public reference to staking proxy") return proxyRef.getNodeInfo(nodeID: nodeID)! diff --git a/transactions/stakingProxy/register_node.cdc b/transactions/stakingProxy/register_node.cdc index 1976bda66..20a3c0f2e 100644 --- a/transactions/stakingProxy/register_node.cdc +++ b/transactions/stakingProxy/register_node.cdc @@ -11,9 +11,10 @@ transaction(address: Address, id: String, amount: UFix64) { } execute { - let nodeOperatorRef = getAccount(address).capabilities.get - <&StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}> - (StakingProxy.NodeOperatorCapabilityPublicPath)!.borrow() + let nodeOperatorRef = getAccount(address).capabilities + .borrow<&StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}>( + StakingProxy.NodeOperatorCapabilityPublicPath + ) ?? panic("Could not borrow node operator public capability") let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id) From 6a99037f8043109edb60a51172431f4e941fb2a0 Mon Sep 17 00:00:00 2001 From: Supun Setunga Date: Thu, 14 Sep 2023 13:48:05 -0700 Subject: [PATCH 047/160] Refactor code --- contracts/FlowServiceAccount.cdc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/contracts/FlowServiceAccount.cdc b/contracts/FlowServiceAccount.cdc index 0e8befa82..f022eb8a1 100644 --- a/contracts/FlowServiceAccount.cdc +++ b/contracts/FlowServiceAccount.cdc @@ -80,7 +80,11 @@ access(all) contract FlowServiceAccount { /// - Deducts the account creation fee from a payer account. /// - Inits the default token. /// - Inits account storage capacity. - access(all) fun setupNewAccount(newAccount: auth(SaveValue, BorrowValue, Capabilities) &Account, payer: auth(BorrowValue) &Account) { + access(all) fun setupNewAccount( + newAccount: auth(SaveValue, BorrowValue, Capabilities) &Account, + payer: auth(BorrowValue) &Account + ) { + if !FlowServiceAccount.isAccountCreator(payer.address) { panic("Account not authorized to create accounts") } From fd33ce2df24e0e125da64cb7c26206ba5250ce23 Mon Sep 17 00:00:00 2001 From: Supun Setunga Date: Fri, 15 Sep 2023 15:28:15 -0700 Subject: [PATCH 048/160] Update go-sdk and flow-nft versions --- lib/go/contracts/go.mod | 6 +- lib/go/contracts/go.sum | 14 +- lib/go/templates/go.mod | 3 +- lib/go/templates/go.sum | 1067 ++++++++++++++++++++++++++++++++++++++- 4 files changed, 1078 insertions(+), 12 deletions(-) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 71cc6f48c..f75f92136 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -5,8 +5,8 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230913160646-09adc7d3b513 - github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230912230115-25ad6f515ce6 - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230913160722-e4f5f3f4b87a + github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230915213126-68e7ffb5595f + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230915224343-ca2663ed82cf github.com/stretchr/testify v1.8.4 ) @@ -45,4 +45,4 @@ require ( gopkg.in/yaml.v3 v3.0.1 // indirect ) -//replace github.com/onflow/flow-ft/lib/go/contracts => ../../../../flow-ft/lib/go/contracts +replace github.com/onflow/flow-ft/lib/go/contracts => ../../../../flow-ft/lib/go/contracts diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 132ea7a2a..d78e575b0 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -881,14 +881,16 @@ github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f h1:Z8/PgTqOgOg02MTR github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f/go.mod h1:xvP61FoOs95K7IYdIYRnNcYQGf4nbF/uuJ0tHf4DRuM= github.com/onflow/cadence v0.41.0-stable-cadence.1.0.20230908213403-8f1134670ed0 h1:8Mniwp17wrjLAv/KgCcZ6JH47/EjgCgkX0AXLfSXJEM= github.com/onflow/cadence v0.41.0-stable-cadence.1.0.20230908213403-8f1134670ed0/go.mod h1:Q5Up9Kt+J6zuAFmgrsiKz6t//E/hR5/iuVjH62pdztk= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230913160646-09adc7d3b513 h1:ljy2ZuH8kcfqRmkXwh/ypLPxkYoojINyhHlIiBXIhsY= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230913160646-09adc7d3b513/go.mod h1:aXUwTDXnzpBPNMvYPyeItFv/64Yv0GmYffAj8KFbu4s= -github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230912230115-25ad6f515ce6 h1:wE5bXFvMKpreQtqesfVdLmb7SrZ+mu5j1+PuTjo8jkg= -github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230912230115-25ad6f515ce6/go.mod h1:tc3I2xIc+ThMUIW2Jkam1pquKpuRDTLGP79INkCGZg4= +github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230915213126-68e7ffb5595f h1:uHRzlxqvV+trNBEqlLstf92lwlkZtNV2ljQetjVCLxo= +github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230915213126-68e7ffb5595f/go.mod h1:tc3I2xIc+ThMUIW2Jkam1pquKpuRDTLGP79INkCGZg4= github.com/onflow/flow-go/crypto v0.24.7 h1:RCLuB83At4z5wkAyUCF7MYEnPoIIOHghJaODuJyEoW0= github.com/onflow/flow-go/crypto v0.24.7/go.mod h1:fqCzkIBBMRRkciVrvW21rECKq1oD7Q6u+bCI78lfNX0= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230913160722-e4f5f3f4b87a h1:KO+ajOFzk67Z5lVQBXwDbbzYeb8+F5LMTfGi/z1iElQ= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230913160722-e4f5f3f4b87a/go.mod h1:D37Nu+Q2gAO9EHVCA6u5m6RtxkvAzxjIa/g2LhGeHek= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230915222202-4dee9fd6747c h1:wArXSVerXQGcU1a9YVayboC6uRZKhxeCSl32Cg+PBDk= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230915222202-4dee9fd6747c/go.mod h1:W7S4wW94sefM+/uAdtrQP1S2I4aVbYJPxWlyNAUT0yI= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230915223733-2538c2a99027 h1:G+vstwzqybcdlJaGbtFI6SrstakjoCjvagdy8OVlwzk= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230915223733-2538c2a99027/go.mod h1:W7S4wW94sefM+/uAdtrQP1S2I4aVbYJPxWlyNAUT0yI= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230915224343-ca2663ed82cf h1:G3RFroB2Aj1d9CyJwl9JcZYWiOF75TB6L84/QSBUPds= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230915224343-ca2663ed82cf/go.mod h1:W7S4wW94sefM+/uAdtrQP1S2I4aVbYJPxWlyNAUT0yI= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= diff --git a/lib/go/templates/go.mod b/lib/go/templates/go.mod index f633293ba..5d08f5a7d 100644 --- a/lib/go/templates/go.mod +++ b/lib/go/templates/go.mod @@ -5,7 +5,7 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.24.0+incompatible github.com/onflow/cadence v0.41.0-stable-cadence.1.0.20230908213403-8f1134670ed0 - github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230912230115-25ad6f515ce6 + github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230915213126-68e7ffb5595f github.com/psiemens/sconfig v0.1.0 github.com/spf13/cobra v1.5.0 ) @@ -33,6 +33,7 @@ require ( github.com/mitchellh/mapstructure v1.1.2 // indirect github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f // indirect github.com/onflow/flow-go/crypto v0.24.7 // indirect + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230915224343-ca2663ed82cf // indirect github.com/pelletier/go-toml v1.2.0 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index 382479f56..59d5eb7cd 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -17,25 +17,509 @@ cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHOb cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPTY= +cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg= +cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8= +cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0= +cloud.google.com/go v0.83.0/go.mod h1:Z7MJUsANfY0pYPdw0lbnivPx4/vhy/e2FEkSkF7vAVY= +cloud.google.com/go v0.84.0/go.mod h1:RazrYuxIK6Kb7YrzzhPoLmCVzl7Sup4NrbKPg8KHSUM= +cloud.google.com/go v0.87.0/go.mod h1:TpDYlFy7vuLzZMMZ+B6iRiELaY7z/gJPaqbMx6mlWcY= +cloud.google.com/go v0.90.0/go.mod h1:kRX0mNRHe0e2rC6oNakvwQqzyDmg57xJ+SZU1eT2aDQ= +cloud.google.com/go v0.93.3/go.mod h1:8utlLll2EF5XMAV15woO4lSbWQlk8rer9aLOfLh7+YI= +cloud.google.com/go v0.94.1/go.mod h1:qAlAugsXlC+JWO+Bke5vCtc9ONxjQT3drlTTnAplMW4= +cloud.google.com/go v0.97.0/go.mod h1:GF7l59pYBVlXQIBLx3a761cZ41F9bBH3JUlihCt2Udc= +cloud.google.com/go v0.99.0/go.mod h1:w0Xx2nLzqWJPuozYQX+hFfCSI8WioryfRDzkoI/Y2ZA= +cloud.google.com/go v0.100.1/go.mod h1:fs4QogzfH5n2pBXBP9vRiU+eCny7lD2vmFZy79Iuw1U= +cloud.google.com/go v0.100.2/go.mod h1:4Xra9TjzAeYHrl5+oeLlzbM2k3mjVhZh4UqTZ//w99A= +cloud.google.com/go v0.102.0/go.mod h1:oWcCzKlqJ5zgHQt9YsaeTY9KzIvjyy0ArmiBUgpQ+nc= +cloud.google.com/go v0.102.1/go.mod h1:XZ77E9qnTEnrgEOvr4xzfdX5TRo7fB4T2F4O6+34hIU= +cloud.google.com/go v0.104.0/go.mod h1:OO6xxXdJyvuJPcEPBLN9BJPD+jep5G1+2U5B5gkRYtA= +cloud.google.com/go v0.105.0/go.mod h1:PrLgOJNe5nfE9UMxKxgXj4mD3voiP+YQ6gdt6KMFOKM= +cloud.google.com/go v0.107.0/go.mod h1:wpc2eNrD7hXUTy8EKS10jkxpZBjASrORK7goS+3YX2I= +cloud.google.com/go v0.110.0/go.mod h1:SJnCLqQ0FCFGSZMUNUf84MV3Aia54kn7pi8st7tMzaY= +cloud.google.com/go/accessapproval v1.4.0/go.mod h1:zybIuC3KpDOvotz59lFe5qxRZx6C75OtwbisN56xYB4= +cloud.google.com/go/accessapproval v1.5.0/go.mod h1:HFy3tuiGvMdcd/u+Cu5b9NkO1pEICJ46IR82PoUdplw= +cloud.google.com/go/accessapproval v1.6.0/go.mod h1:R0EiYnwV5fsRFiKZkPHr6mwyk2wxUJ30nL4j2pcFY2E= +cloud.google.com/go/accesscontextmanager v1.3.0/go.mod h1:TgCBehyr5gNMz7ZaH9xubp+CE8dkrszb4oK9CWyvD4o= +cloud.google.com/go/accesscontextmanager v1.4.0/go.mod h1:/Kjh7BBu/Gh83sv+K60vN9QE5NJcd80sU33vIe2IFPE= +cloud.google.com/go/accesscontextmanager v1.6.0/go.mod h1:8XCvZWfYw3K/ji0iVnp+6pu7huxoQTLmxAbVjbloTtM= +cloud.google.com/go/aiplatform v1.22.0/go.mod h1:ig5Nct50bZlzV6NvKaTwmplLLddFx0YReh9WfTO5jKw= +cloud.google.com/go/aiplatform v1.24.0/go.mod h1:67UUvRBKG6GTayHKV8DBv2RtR1t93YRu5B1P3x99mYY= +cloud.google.com/go/aiplatform v1.27.0/go.mod h1:Bvxqtl40l0WImSb04d0hXFU7gDOiq9jQmorivIiWcKg= +cloud.google.com/go/aiplatform v1.35.0/go.mod h1:7MFT/vCaOyZT/4IIFfxH4ErVg/4ku6lKv3w0+tFTgXQ= +cloud.google.com/go/analytics v0.11.0/go.mod h1:DjEWCu41bVbYcKyvlws9Er60YE4a//bK6mnhWvQeFNI= +cloud.google.com/go/analytics v0.12.0/go.mod h1:gkfj9h6XRf9+TS4bmuhPEShsh3hH8PAZzm/41OOhQd4= +cloud.google.com/go/analytics v0.17.0/go.mod h1:WXFa3WSym4IZ+JiKmavYdJwGG/CvpqiqczmL59bTD9M= +cloud.google.com/go/analytics v0.18.0/go.mod h1:ZkeHGQlcIPkw0R/GW+boWHhCOR43xz9RN/jn7WcqfIE= +cloud.google.com/go/apigateway v1.3.0/go.mod h1:89Z8Bhpmxu6AmUxuVRg/ECRGReEdiP3vQtk4Z1J9rJk= +cloud.google.com/go/apigateway v1.4.0/go.mod h1:pHVY9MKGaH9PQ3pJ4YLzoj6U5FUDeDFBllIz7WmzJoc= +cloud.google.com/go/apigateway v1.5.0/go.mod h1:GpnZR3Q4rR7LVu5951qfXPJCHquZt02jf7xQx7kpqN8= +cloud.google.com/go/apigeeconnect v1.3.0/go.mod h1:G/AwXFAKo0gIXkPTVfZDd2qA1TxBXJ3MgMRBQkIi9jc= +cloud.google.com/go/apigeeconnect v1.4.0/go.mod h1:kV4NwOKqjvt2JYR0AoIWo2QGfoRtn/pkS3QlHp0Ni04= +cloud.google.com/go/apigeeconnect v1.5.0/go.mod h1:KFaCqvBRU6idyhSNyn3vlHXc8VMDJdRmwDF6JyFRqZ8= +cloud.google.com/go/apigeeregistry v0.4.0/go.mod h1:EUG4PGcsZvxOXAdyEghIdXwAEi/4MEaoqLMLDMIwKXY= +cloud.google.com/go/apigeeregistry v0.5.0/go.mod h1:YR5+s0BVNZfVOUkMa5pAR2xGd0A473vA5M7j247o1wM= +cloud.google.com/go/apikeys v0.4.0/go.mod h1:XATS/yqZbaBK0HOssf+ALHp8jAlNHUgyfprvNcBIszU= +cloud.google.com/go/apikeys v0.5.0/go.mod h1:5aQfwY4D+ewMMWScd3hm2en3hCj+BROlyrt3ytS7KLI= +cloud.google.com/go/appengine v1.4.0/go.mod h1:CS2NhuBuDXM9f+qscZ6V86m1MIIqPj3WC/UoEuR1Sno= +cloud.google.com/go/appengine v1.5.0/go.mod h1:TfasSozdkFI0zeoxW3PTBLiNqRmzraodCWatWI9Dmak= +cloud.google.com/go/appengine v1.6.0/go.mod h1:hg6i0J/BD2cKmDJbaFSYHFyZkgBEfQrDg/X0V5fJn84= +cloud.google.com/go/area120 v0.5.0/go.mod h1:DE/n4mp+iqVyvxHN41Vf1CR602GiHQjFPusMFW6bGR4= +cloud.google.com/go/area120 v0.6.0/go.mod h1:39yFJqWVgm0UZqWTOdqkLhjoC7uFfgXRC8g/ZegeAh0= +cloud.google.com/go/area120 v0.7.0/go.mod h1:a3+8EUD1SX5RUcCs3MY5YasiO1z6yLiNLRiFrykbynY= +cloud.google.com/go/area120 v0.7.1/go.mod h1:j84i4E1RboTWjKtZVWXPqvK5VHQFJRF2c1Nm69pWm9k= +cloud.google.com/go/artifactregistry v1.6.0/go.mod h1:IYt0oBPSAGYj/kprzsBjZ/4LnG/zOcHyFHjWPCi6SAQ= +cloud.google.com/go/artifactregistry v1.7.0/go.mod h1:mqTOFOnGZx8EtSqK/ZWcsm/4U8B77rbcLP6ruDU2Ixk= +cloud.google.com/go/artifactregistry v1.8.0/go.mod h1:w3GQXkJX8hiKN0v+at4b0qotwijQbYUqF2GWkZzAhC0= +cloud.google.com/go/artifactregistry v1.9.0/go.mod h1:2K2RqvA2CYvAeARHRkLDhMDJ3OXy26h3XW+3/Jh2uYc= +cloud.google.com/go/artifactregistry v1.11.1/go.mod h1:lLYghw+Itq9SONbCa1YWBoWs1nOucMH0pwXN1rOBZFI= +cloud.google.com/go/artifactregistry v1.11.2/go.mod h1:nLZns771ZGAwVLzTX/7Al6R9ehma4WUEhZGWV6CeQNQ= +cloud.google.com/go/asset v1.5.0/go.mod h1:5mfs8UvcM5wHhqtSv8J1CtxxaQq3AdBxxQi2jGW/K4o= +cloud.google.com/go/asset v1.7.0/go.mod h1:YbENsRK4+xTiL+Ofoj5Ckf+O17kJtgp3Y3nn4uzZz5s= +cloud.google.com/go/asset v1.8.0/go.mod h1:mUNGKhiqIdbr8X7KNayoYvyc4HbbFO9URsjbytpUaW0= +cloud.google.com/go/asset v1.9.0/go.mod h1:83MOE6jEJBMqFKadM9NLRcs80Gdw76qGuHn8m3h8oHQ= +cloud.google.com/go/asset v1.10.0/go.mod h1:pLz7uokL80qKhzKr4xXGvBQXnzHn5evJAEAtZiIb0wY= +cloud.google.com/go/asset v1.11.1/go.mod h1:fSwLhbRvC9p9CXQHJ3BgFeQNM4c9x10lqlrdEUYXlJo= +cloud.google.com/go/assuredworkloads v1.5.0/go.mod h1:n8HOZ6pff6re5KYfBXcFvSViQjDwxFkAkmUFffJRbbY= +cloud.google.com/go/assuredworkloads v1.6.0/go.mod h1:yo2YOk37Yc89Rsd5QMVECvjaMKymF9OP+QXWlKXUkXw= +cloud.google.com/go/assuredworkloads v1.7.0/go.mod h1:z/736/oNmtGAyU47reJgGN+KVoYoxeLBoj4XkKYscNI= +cloud.google.com/go/assuredworkloads v1.8.0/go.mod h1:AsX2cqyNCOvEQC8RMPnoc0yEarXQk6WEKkxYfL6kGIo= +cloud.google.com/go/assuredworkloads v1.9.0/go.mod h1:kFuI1P78bplYtT77Tb1hi0FMxM0vVpRC7VVoJC3ZoT0= +cloud.google.com/go/assuredworkloads v1.10.0/go.mod h1:kwdUQuXcedVdsIaKgKTp9t0UJkE5+PAVNhdQm4ZVq2E= +cloud.google.com/go/automl v1.5.0/go.mod h1:34EjfoFGMZ5sgJ9EoLsRtdPSNZLcfflJR39VbVNS2M0= +cloud.google.com/go/automl v1.6.0/go.mod h1:ugf8a6Fx+zP0D59WLhqgTDsQI9w07o64uf/Is3Nh5p8= +cloud.google.com/go/automl v1.7.0/go.mod h1:RL9MYCCsJEOmt0Wf3z9uzG0a7adTT1fe+aObgSpkCt8= +cloud.google.com/go/automl v1.8.0/go.mod h1:xWx7G/aPEe/NP+qzYXktoBSDfjO+vnKMGgsApGJJquM= +cloud.google.com/go/automl v1.12.0/go.mod h1:tWDcHDp86aMIuHmyvjuKeeHEGq76lD7ZqfGLN6B0NuU= +cloud.google.com/go/baremetalsolution v0.3.0/go.mod h1:XOrocE+pvK1xFfleEnShBlNAXf+j5blPPxrhjKgnIFc= +cloud.google.com/go/baremetalsolution v0.4.0/go.mod h1:BymplhAadOO/eBa7KewQ0Ppg4A4Wplbn+PsFKRLo0uI= +cloud.google.com/go/baremetalsolution v0.5.0/go.mod h1:dXGxEkmR9BMwxhzBhV0AioD0ULBmuLZI8CdwalUxuss= +cloud.google.com/go/batch v0.3.0/go.mod h1:TR18ZoAekj1GuirsUsR1ZTKN3FC/4UDnScjT8NXImFE= +cloud.google.com/go/batch v0.4.0/go.mod h1:WZkHnP43R/QCGQsZ+0JyG4i79ranE2u8xvjq/9+STPE= +cloud.google.com/go/batch v0.7.0/go.mod h1:vLZN95s6teRUqRQ4s3RLDsH8PvboqBK+rn1oevL159g= +cloud.google.com/go/beyondcorp v0.2.0/go.mod h1:TB7Bd+EEtcw9PCPQhCJtJGjk/7TC6ckmnSFS+xwTfm4= +cloud.google.com/go/beyondcorp v0.3.0/go.mod h1:E5U5lcrcXMsCuoDNyGrpyTm/hn7ne941Jz2vmksAxW8= +cloud.google.com/go/beyondcorp v0.4.0/go.mod h1:3ApA0mbhHx6YImmuubf5pyW8srKnCEPON32/5hj+RmM= cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= +cloud.google.com/go/bigquery v1.42.0/go.mod h1:8dRTJxhtG+vwBKzE5OseQn/hiydoQN3EedCaOdYmxRA= +cloud.google.com/go/bigquery v1.43.0/go.mod h1:ZMQcXHsl+xmU1z36G2jNGZmKp9zNY5BUua5wDgmNCfw= +cloud.google.com/go/bigquery v1.44.0/go.mod h1:0Y33VqXTEsbamHJvJHdFmtqHvMIY28aK1+dFsvaChGc= +cloud.google.com/go/bigquery v1.47.0/go.mod h1:sA9XOgy0A8vQK9+MWhEQTY6Tix87M/ZurWFIxmF9I/E= +cloud.google.com/go/bigquery v1.48.0/go.mod h1:QAwSz+ipNgfL5jxiaK7weyOhzdoAy1zFm0Nf1fysJac= +cloud.google.com/go/billing v1.4.0/go.mod h1:g9IdKBEFlItS8bTtlrZdVLWSSdSyFUZKXNS02zKMOZY= +cloud.google.com/go/billing v1.5.0/go.mod h1:mztb1tBc3QekhjSgmpf/CV4LzWXLzCArwpLmP2Gm88s= +cloud.google.com/go/billing v1.6.0/go.mod h1:WoXzguj+BeHXPbKfNWkqVtDdzORazmCjraY+vrxcyvI= +cloud.google.com/go/billing v1.7.0/go.mod h1:q457N3Hbj9lYwwRbnlD7vUpyjq6u5U1RAOArInEiD5Y= +cloud.google.com/go/billing v1.12.0/go.mod h1:yKrZio/eu+okO/2McZEbch17O5CB5NpZhhXG6Z766ss= +cloud.google.com/go/binaryauthorization v1.1.0/go.mod h1:xwnoWu3Y84jbuHa0zd526MJYmtnVXn0syOjaJgy4+dM= +cloud.google.com/go/binaryauthorization v1.2.0/go.mod h1:86WKkJHtRcv5ViNABtYMhhNWRrD1Vpi//uKEy7aYEfI= +cloud.google.com/go/binaryauthorization v1.3.0/go.mod h1:lRZbKgjDIIQvzYQS1p99A7/U1JqvqeZg0wiI5tp6tg0= +cloud.google.com/go/binaryauthorization v1.4.0/go.mod h1:tsSPQrBd77VLplV70GUhBf/Zm3FsKmgSqgm4UmiDItk= +cloud.google.com/go/binaryauthorization v1.5.0/go.mod h1:OSe4OU1nN/VswXKRBmciKpo9LulY41gch5c68htf3/Q= +cloud.google.com/go/certificatemanager v1.3.0/go.mod h1:n6twGDvcUBFu9uBgt4eYvvf3sQ6My8jADcOVwHmzadg= +cloud.google.com/go/certificatemanager v1.4.0/go.mod h1:vowpercVFyqs8ABSmrdV+GiFf2H/ch3KyudYQEMM590= +cloud.google.com/go/certificatemanager v1.6.0/go.mod h1:3Hh64rCKjRAX8dXgRAyOcY5vQ/fE1sh8o+Mdd6KPgY8= +cloud.google.com/go/channel v1.8.0/go.mod h1:W5SwCXDJsq/rg3tn3oG0LOxpAo6IMxNa09ngphpSlnk= +cloud.google.com/go/channel v1.9.0/go.mod h1:jcu05W0my9Vx4mt3/rEHpfxc9eKi9XwsdDL8yBMbKUk= +cloud.google.com/go/channel v1.11.0/go.mod h1:IdtI0uWGqhEeatSB62VOoJ8FSUhJ9/+iGkJVqp74CGE= +cloud.google.com/go/cloudbuild v1.3.0/go.mod h1:WequR4ULxlqvMsjDEEEFnOG5ZSRSgWOywXYDb1vPE6U= +cloud.google.com/go/cloudbuild v1.4.0/go.mod h1:5Qwa40LHiOXmz3386FrjrYM93rM/hdRr7b53sySrTqA= +cloud.google.com/go/cloudbuild v1.6.0/go.mod h1:UIbc/w9QCbH12xX+ezUsgblrWv+Cv4Tw83GiSMHOn9M= +cloud.google.com/go/cloudbuild v1.7.0/go.mod h1:zb5tWh2XI6lR9zQmsm1VRA+7OCuve5d8S+zJUul8KTg= +cloud.google.com/go/clouddms v1.3.0/go.mod h1:oK6XsCDdW4Ib3jCCBugx+gVjevp2TMXFtgxvPSee3OM= +cloud.google.com/go/clouddms v1.4.0/go.mod h1:Eh7sUGCC+aKry14O1NRljhjyrr0NFC0G2cjwX0cByRk= +cloud.google.com/go/clouddms v1.5.0/go.mod h1:QSxQnhikCLUw13iAbffF2CZxAER3xDGNHjsTAkQJcQA= +cloud.google.com/go/cloudtasks v1.5.0/go.mod h1:fD92REy1x5woxkKEkLdvavGnPJGEn8Uic9nWuLzqCpY= +cloud.google.com/go/cloudtasks v1.6.0/go.mod h1:C6Io+sxuke9/KNRkbQpihnW93SWDU3uXt92nu85HkYI= +cloud.google.com/go/cloudtasks v1.7.0/go.mod h1:ImsfdYWwlWNJbdgPIIGJWC+gemEGTBK/SunNQQNCAb4= +cloud.google.com/go/cloudtasks v1.8.0/go.mod h1:gQXUIwCSOI4yPVK7DgTVFiiP0ZW/eQkydWzwVMdHxrI= +cloud.google.com/go/cloudtasks v1.9.0/go.mod h1:w+EyLsVkLWHcOaqNEyvcKAsWp9p29dL6uL9Nst1cI7Y= +cloud.google.com/go/compute v0.1.0/go.mod h1:GAesmwr110a34z04OlxYkATPBEfVhkymfTBXtfbBFow= +cloud.google.com/go/compute v1.3.0/go.mod h1:cCZiE1NHEtai4wiufUhW8I8S1JKkAnhnQJWM7YD99wM= +cloud.google.com/go/compute v1.5.0/go.mod h1:9SMHyhJlzhlkJqrPAc839t2BZFTSk6Jdj6mkzQJeu0M= +cloud.google.com/go/compute v1.6.0/go.mod h1:T29tfhtVbq1wvAPo0E3+7vhgmkOYeXjhFvz/FMzPu0s= +cloud.google.com/go/compute v1.6.1/go.mod h1:g85FgpzFvNULZ+S8AYq87axRKuf2Kh7deLqV/jJ3thU= +cloud.google.com/go/compute v1.7.0/go.mod h1:435lt8av5oL9P3fv1OEzSbSUe+ybHXGMPQHHZWZxy9U= +cloud.google.com/go/compute v1.10.0/go.mod h1:ER5CLbMxl90o2jtNbGSbtfOpQKR0t15FOtRsugnLrlU= +cloud.google.com/go/compute v1.12.0/go.mod h1:e8yNOBcBONZU1vJKCvCoDw/4JQsA0dpM4x/6PIIOocU= +cloud.google.com/go/compute v1.12.1/go.mod h1:e8yNOBcBONZU1vJKCvCoDw/4JQsA0dpM4x/6PIIOocU= +cloud.google.com/go/compute v1.13.0/go.mod h1:5aPTS0cUNMIc1CE546K+Th6weJUNQErARyZtRXDJ8GE= +cloud.google.com/go/compute v1.14.0/go.mod h1:YfLtxrj9sU4Yxv+sXzZkyPjEyPBZfXHUvjxega5vAdo= +cloud.google.com/go/compute v1.15.1/go.mod h1:bjjoF/NtFUrkD/urWfdHaKuOPDR5nWIs63rR+SXhcpA= +cloud.google.com/go/compute v1.18.0/go.mod h1:1X7yHxec2Ga+Ss6jPyjxRxpu2uu7PLgsOVXvgU0yacs= +cloud.google.com/go/compute/metadata v0.1.0/go.mod h1:Z1VN+bulIf6bt4P/C37K4DyZYZEXYonfTBHHFPO/4UU= +cloud.google.com/go/compute/metadata v0.2.0/go.mod h1:zFmK7XCadkQkj6TtorcaGlCW1hT1fIilQDwofLpJ20k= +cloud.google.com/go/compute/metadata v0.2.1/go.mod h1:jgHgmJd2RKBGzXqF5LR2EZMGxBkeanZ9wwa75XHJgOM= +cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA= +cloud.google.com/go/contactcenterinsights v1.3.0/go.mod h1:Eu2oemoePuEFc/xKFPjbTuPSj0fYJcPls9TFlPNnHHY= +cloud.google.com/go/contactcenterinsights v1.4.0/go.mod h1:L2YzkGbPsv+vMQMCADxJoT9YiTTnSEd6fEvCeHTYVck= +cloud.google.com/go/contactcenterinsights v1.6.0/go.mod h1:IIDlT6CLcDoyv79kDv8iWxMSTZhLxSCofVV5W6YFM/w= +cloud.google.com/go/container v1.6.0/go.mod h1:Xazp7GjJSeUYo688S+6J5V+n/t+G5sKBTFkKNudGRxg= +cloud.google.com/go/container v1.7.0/go.mod h1:Dp5AHtmothHGX3DwwIHPgq45Y8KmNsgN3amoYfxVkLo= +cloud.google.com/go/container v1.13.1/go.mod h1:6wgbMPeQRw9rSnKBCAJXnds3Pzj03C4JHamr8asWKy4= +cloud.google.com/go/containeranalysis v0.5.1/go.mod h1:1D92jd8gRR/c0fGMlymRgxWD3Qw9C1ff6/T7mLgVL8I= +cloud.google.com/go/containeranalysis v0.6.0/go.mod h1:HEJoiEIu+lEXM+k7+qLCci0h33lX3ZqoYFdmPcoO7s4= +cloud.google.com/go/containeranalysis v0.7.0/go.mod h1:9aUL+/vZ55P2CXfuZjS4UjQ9AgXoSw8Ts6lemfmxBxI= +cloud.google.com/go/datacatalog v1.3.0/go.mod h1:g9svFY6tuR+j+hrTw3J2dNcmI0dzmSiyOzm8kpLq0a0= +cloud.google.com/go/datacatalog v1.5.0/go.mod h1:M7GPLNQeLfWqeIm3iuiruhPzkt65+Bx8dAKvScX8jvs= +cloud.google.com/go/datacatalog v1.6.0/go.mod h1:+aEyF8JKg+uXcIdAmmaMUmZ3q1b/lKLtXCmXdnc0lbc= +cloud.google.com/go/datacatalog v1.7.0/go.mod h1:9mEl4AuDYWw81UGc41HonIHH7/sn52H0/tc8f8ZbZIE= +cloud.google.com/go/datacatalog v1.8.0/go.mod h1:KYuoVOv9BM8EYz/4eMFxrr4DUKhGIOXxZoKYF5wdISM= +cloud.google.com/go/datacatalog v1.8.1/go.mod h1:RJ58z4rMp3gvETA465Vg+ag8BGgBdnRPEMMSTr5Uv+M= +cloud.google.com/go/datacatalog v1.12.0/go.mod h1:CWae8rFkfp6LzLumKOnmVh4+Zle4A3NXLzVJ1d1mRm0= +cloud.google.com/go/dataflow v0.6.0/go.mod h1:9QwV89cGoxjjSR9/r7eFDqqjtvbKxAK2BaYU6PVk9UM= +cloud.google.com/go/dataflow v0.7.0/go.mod h1:PX526vb4ijFMesO1o202EaUmouZKBpjHsTlCtB4parQ= +cloud.google.com/go/dataflow v0.8.0/go.mod h1:Rcf5YgTKPtQyYz8bLYhFoIV/vP39eL7fWNcSOyFfLJE= +cloud.google.com/go/dataform v0.3.0/go.mod h1:cj8uNliRlHpa6L3yVhDOBrUXH+BPAO1+KFMQQNSThKo= +cloud.google.com/go/dataform v0.4.0/go.mod h1:fwV6Y4Ty2yIFL89huYlEkwUPtS7YZinZbzzj5S9FzCE= +cloud.google.com/go/dataform v0.5.0/go.mod h1:GFUYRe8IBa2hcomWplodVmUx/iTL0FrsauObOM3Ipr0= +cloud.google.com/go/dataform v0.6.0/go.mod h1:QPflImQy33e29VuapFdf19oPbE4aYTJxr31OAPV+ulA= +cloud.google.com/go/datafusion v1.4.0/go.mod h1:1Zb6VN+W6ALo85cXnM1IKiPw+yQMKMhB9TsTSRDo/38= +cloud.google.com/go/datafusion v1.5.0/go.mod h1:Kz+l1FGHB0J+4XF2fud96WMmRiq/wj8N9u007vyXZ2w= +cloud.google.com/go/datafusion v1.6.0/go.mod h1:WBsMF8F1RhSXvVM8rCV3AeyWVxcC2xY6vith3iw3S+8= +cloud.google.com/go/datalabeling v0.5.0/go.mod h1:TGcJ0G2NzcsXSE/97yWjIZO0bXj0KbVlINXMG9ud42I= +cloud.google.com/go/datalabeling v0.6.0/go.mod h1:WqdISuk/+WIGeMkpw/1q7bK/tFEZxsrFJOJdY2bXvTQ= +cloud.google.com/go/datalabeling v0.7.0/go.mod h1:WPQb1y08RJbmpM3ww0CSUAGweL0SxByuW2E+FU+wXcM= +cloud.google.com/go/dataplex v1.3.0/go.mod h1:hQuRtDg+fCiFgC8j0zV222HvzFQdRd+SVX8gdmFcZzA= +cloud.google.com/go/dataplex v1.4.0/go.mod h1:X51GfLXEMVJ6UN47ESVqvlsRplbLhcsAt0kZCCKsU0A= +cloud.google.com/go/dataplex v1.5.2/go.mod h1:cVMgQHsmfRoI5KFYq4JtIBEUbYwc3c7tXmIDhRmNNVQ= +cloud.google.com/go/dataproc v1.7.0/go.mod h1:CKAlMjII9H90RXaMpSxQ8EU6dQx6iAYNPcYPOkSbi8s= +cloud.google.com/go/dataproc v1.8.0/go.mod h1:5OW+zNAH0pMpw14JVrPONsxMQYMBqJuzORhIBfBn9uI= +cloud.google.com/go/dataproc v1.12.0/go.mod h1:zrF3aX0uV3ikkMz6z4uBbIKyhRITnxvr4i3IjKsKrw4= +cloud.google.com/go/dataqna v0.5.0/go.mod h1:90Hyk596ft3zUQ8NkFfvICSIfHFh1Bc7C4cK3vbhkeo= +cloud.google.com/go/dataqna v0.6.0/go.mod h1:1lqNpM7rqNLVgWBJyk5NF6Uen2PHym0jtVJonplVsDA= +cloud.google.com/go/dataqna v0.7.0/go.mod h1:Lx9OcIIeqCrw1a6KdO3/5KMP1wAmTc0slZWwP12Qq3c= cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= +cloud.google.com/go/datastore v1.10.0/go.mod h1:PC5UzAmDEkAmkfaknstTYbNpgE49HAgW2J1gcgUfmdM= +cloud.google.com/go/datastream v1.2.0/go.mod h1:i/uTP8/fZwgATHS/XFu0TcNUhuA0twZxxQ3EyCUQMwo= +cloud.google.com/go/datastream v1.3.0/go.mod h1:cqlOX8xlyYF/uxhiKn6Hbv6WjwPPuI9W2M9SAXwaLLQ= +cloud.google.com/go/datastream v1.4.0/go.mod h1:h9dpzScPhDTs5noEMQVWP8Wx8AFBRyS0s8KWPx/9r0g= +cloud.google.com/go/datastream v1.5.0/go.mod h1:6TZMMNPwjUqZHBKPQ1wwXpb0d5VDVPl2/XoS5yi88q4= +cloud.google.com/go/datastream v1.6.0/go.mod h1:6LQSuswqLa7S4rPAOZFVjHIG3wJIjZcZrw8JDEDJuIs= +cloud.google.com/go/deploy v1.4.0/go.mod h1:5Xghikd4VrmMLNaF6FiRFDlHb59VM59YoDQnOUdsH/c= +cloud.google.com/go/deploy v1.5.0/go.mod h1:ffgdD0B89tToyW/U/D2eL0jN2+IEV/3EMuXHA0l4r+s= +cloud.google.com/go/deploy v1.6.0/go.mod h1:f9PTHehG/DjCom3QH0cntOVRm93uGBDt2vKzAPwpXQI= +cloud.google.com/go/dialogflow v1.15.0/go.mod h1:HbHDWs33WOGJgn6rfzBW1Kv807BE3O1+xGbn59zZWI4= +cloud.google.com/go/dialogflow v1.16.1/go.mod h1:po6LlzGfK+smoSmTBnbkIZY2w8ffjz/RcGSS+sh1el0= +cloud.google.com/go/dialogflow v1.17.0/go.mod h1:YNP09C/kXA1aZdBgC/VtXX74G/TKn7XVCcVumTflA+8= +cloud.google.com/go/dialogflow v1.18.0/go.mod h1:trO7Zu5YdyEuR+BhSNOqJezyFQ3aUzz0njv7sMx/iek= +cloud.google.com/go/dialogflow v1.19.0/go.mod h1:JVmlG1TwykZDtxtTXujec4tQ+D8SBFMoosgy+6Gn0s0= +cloud.google.com/go/dialogflow v1.29.0/go.mod h1:b+2bzMe+k1s9V+F2jbJwpHPzrnIyHihAdRFMtn2WXuM= +cloud.google.com/go/dialogflow v1.31.0/go.mod h1:cuoUccuL1Z+HADhyIA7dci3N5zUssgpBJmCzI6fNRB4= +cloud.google.com/go/dlp v1.6.0/go.mod h1:9eyB2xIhpU0sVwUixfBubDoRwP+GjeUoxxeueZmqvmM= +cloud.google.com/go/dlp v1.7.0/go.mod h1:68ak9vCiMBjbasxeVD17hVPxDEck+ExiHavX8kiHG+Q= +cloud.google.com/go/dlp v1.9.0/go.mod h1:qdgmqgTyReTz5/YNSSuueR8pl7hO0o9bQ39ZhtgkWp4= +cloud.google.com/go/documentai v1.7.0/go.mod h1:lJvftZB5NRiFSX4moiye1SMxHx0Bc3x1+p9e/RfXYiU= +cloud.google.com/go/documentai v1.8.0/go.mod h1:xGHNEB7CtsnySCNrCFdCyyMz44RhFEEX2Q7UD0c5IhU= +cloud.google.com/go/documentai v1.9.0/go.mod h1:FS5485S8R00U10GhgBC0aNGrJxBP8ZVpEeJ7PQDZd6k= +cloud.google.com/go/documentai v1.10.0/go.mod h1:vod47hKQIPeCfN2QS/jULIvQTugbmdc0ZvxxfQY1bg4= +cloud.google.com/go/documentai v1.16.0/go.mod h1:o0o0DLTEZ+YnJZ+J4wNfTxmDVyrkzFvttBXXtYRMHkM= +cloud.google.com/go/domains v0.6.0/go.mod h1:T9Rz3GasrpYk6mEGHh4rymIhjlnIuB4ofT1wTxDeT4Y= +cloud.google.com/go/domains v0.7.0/go.mod h1:PtZeqS1xjnXuRPKE/88Iru/LdfoRyEHYA9nFQf4UKpg= +cloud.google.com/go/domains v0.8.0/go.mod h1:M9i3MMDzGFXsydri9/vW+EWz9sWb4I6WyHqdlAk0idE= +cloud.google.com/go/edgecontainer v0.1.0/go.mod h1:WgkZ9tp10bFxqO8BLPqv2LlfmQF1X8lZqwW4r1BTajk= +cloud.google.com/go/edgecontainer v0.2.0/go.mod h1:RTmLijy+lGpQ7BXuTDa4C4ssxyXT34NIuHIgKuP4s5w= +cloud.google.com/go/edgecontainer v0.3.0/go.mod h1:FLDpP4nykgwwIfcLt6zInhprzw0lEi2P1fjO6Ie0qbc= +cloud.google.com/go/errorreporting v0.3.0/go.mod h1:xsP2yaAp+OAW4OIm60An2bbLpqIhKXdWR/tawvl7QzU= +cloud.google.com/go/essentialcontacts v1.3.0/go.mod h1:r+OnHa5jfj90qIfZDO/VztSFqbQan7HV75p8sA+mdGI= +cloud.google.com/go/essentialcontacts v1.4.0/go.mod h1:8tRldvHYsmnBCHdFpvU+GL75oWiBKl80BiqlFh9tp+8= +cloud.google.com/go/essentialcontacts v1.5.0/go.mod h1:ay29Z4zODTuwliK7SnX8E86aUF2CTzdNtvv42niCX0M= +cloud.google.com/go/eventarc v1.7.0/go.mod h1:6ctpF3zTnaQCxUjHUdcfgcA1A2T309+omHZth7gDfmc= +cloud.google.com/go/eventarc v1.8.0/go.mod h1:imbzxkyAU4ubfsaKYdQg04WS1NvncblHEup4kvF+4gw= +cloud.google.com/go/eventarc v1.10.0/go.mod h1:u3R35tmZ9HvswGRBnF48IlYgYeBcPUCjkr4BTdem2Kw= +cloud.google.com/go/filestore v1.3.0/go.mod h1:+qbvHGvXU1HaKX2nD0WEPo92TP/8AQuCVEBXNY9z0+w= +cloud.google.com/go/filestore v1.4.0/go.mod h1:PaG5oDfo9r224f8OYXURtAsY+Fbyq/bLYoINEK8XQAI= +cloud.google.com/go/filestore v1.5.0/go.mod h1:FqBXDWBp4YLHqRnVGveOkHDf8svj9r5+mUDLupOWEDs= +cloud.google.com/go/firestore v1.9.0/go.mod h1:HMkjKHNTtRyZNiMzu7YAsLr9K3X2udY2AMwDaMEQiiE= +cloud.google.com/go/functions v1.6.0/go.mod h1:3H1UA3qiIPRWD7PeZKLvHZ9SaQhR26XIJcC0A5GbvAk= +cloud.google.com/go/functions v1.7.0/go.mod h1:+d+QBcWM+RsrgZfV9xo6KfA1GlzJfxcfZcRPEhDDfzg= +cloud.google.com/go/functions v1.8.0/go.mod h1:RTZ4/HsQjIqIYP9a9YPbU+QFoQsAlYgrwOXJWHn1POY= +cloud.google.com/go/functions v1.9.0/go.mod h1:Y+Dz8yGguzO3PpIjhLTbnqV1CWmgQ5UwtlpzoyquQ08= +cloud.google.com/go/functions v1.10.0/go.mod h1:0D3hEOe3DbEvCXtYOZHQZmD+SzYsi1YbI7dGvHfldXw= +cloud.google.com/go/gaming v1.5.0/go.mod h1:ol7rGcxP/qHTRQE/RO4bxkXq+Fix0j6D4LFPzYTIrDM= +cloud.google.com/go/gaming v1.6.0/go.mod h1:YMU1GEvA39Qt3zWGyAVA9bpYz/yAhTvaQ1t2sK4KPUA= +cloud.google.com/go/gaming v1.7.0/go.mod h1:LrB8U7MHdGgFG851iHAfqUdLcKBdQ55hzXy9xBJz0+w= +cloud.google.com/go/gaming v1.8.0/go.mod h1:xAqjS8b7jAVW0KFYeRUxngo9My3f33kFmua++Pi+ggM= +cloud.google.com/go/gaming v1.9.0/go.mod h1:Fc7kEmCObylSWLO334NcO+O9QMDyz+TKC4v1D7X+Bc0= +cloud.google.com/go/gkebackup v0.2.0/go.mod h1:XKvv/4LfG829/B8B7xRkk8zRrOEbKtEam6yNfuQNH60= +cloud.google.com/go/gkebackup v0.3.0/go.mod h1:n/E671i1aOQvUxT541aTkCwExO/bTer2HDlj4TsBRAo= +cloud.google.com/go/gkebackup v0.4.0/go.mod h1:byAyBGUwYGEEww7xsbnUTBHIYcOPy/PgUWUtOeRm9Vg= +cloud.google.com/go/gkeconnect v0.5.0/go.mod h1:c5lsNAg5EwAy7fkqX/+goqFsU1Da/jQFqArp+wGNr/o= +cloud.google.com/go/gkeconnect v0.6.0/go.mod h1:Mln67KyU/sHJEBY8kFZ0xTeyPtzbq9StAVvEULYK16A= +cloud.google.com/go/gkeconnect v0.7.0/go.mod h1:SNfmVqPkaEi3bF/B3CNZOAYPYdg7sU+obZ+QTky2Myw= +cloud.google.com/go/gkehub v0.9.0/go.mod h1:WYHN6WG8w9bXU0hqNxt8rm5uxnk8IH+lPY9J2TV7BK0= +cloud.google.com/go/gkehub v0.10.0/go.mod h1:UIPwxI0DsrpsVoWpLB0stwKCP+WFVG9+y977wO+hBH0= +cloud.google.com/go/gkehub v0.11.0/go.mod h1:JOWHlmN+GHyIbuWQPl47/C2RFhnFKH38jH9Ascu3n0E= +cloud.google.com/go/gkemulticloud v0.3.0/go.mod h1:7orzy7O0S+5kq95e4Hpn7RysVA7dPs8W/GgfUtsPbrA= +cloud.google.com/go/gkemulticloud v0.4.0/go.mod h1:E9gxVBnseLWCk24ch+P9+B2CoDFJZTyIgLKSalC7tuI= +cloud.google.com/go/gkemulticloud v0.5.0/go.mod h1:W0JDkiyi3Tqh0TJr//y19wyb1yf8llHVto2Htf2Ja3Y= +cloud.google.com/go/grafeas v0.2.0/go.mod h1:KhxgtF2hb0P191HlY5besjYm6MqTSTj3LSI+M+ByZHc= +cloud.google.com/go/gsuiteaddons v1.3.0/go.mod h1:EUNK/J1lZEZO8yPtykKxLXI6JSVN2rg9bN8SXOa0bgM= +cloud.google.com/go/gsuiteaddons v1.4.0/go.mod h1:rZK5I8hht7u7HxFQcFei0+AtfS9uSushomRlg+3ua1o= +cloud.google.com/go/gsuiteaddons v1.5.0/go.mod h1:TFCClYLd64Eaa12sFVmUyG62tk4mdIsI7pAnSXRkcFo= +cloud.google.com/go/iam v0.1.0/go.mod h1:vcUNEa0pEm0qRVpmWepWaFMIAI8/hjB9mO8rNCJtF6c= +cloud.google.com/go/iam v0.3.0/go.mod h1:XzJPvDayI+9zsASAFO68Hk07u3z+f+JrT2xXNdp4bnY= +cloud.google.com/go/iam v0.5.0/go.mod h1:wPU9Vt0P4UmCux7mqtRu6jcpPAb74cP1fh50J3QpkUc= +cloud.google.com/go/iam v0.6.0/go.mod h1:+1AH33ueBne5MzYccyMHtEKqLE4/kJOibtffMHDMFMc= +cloud.google.com/go/iam v0.7.0/go.mod h1:H5Br8wRaDGNc8XP3keLc4unfUUZeyH3Sfl9XpQEYOeg= +cloud.google.com/go/iam v0.8.0/go.mod h1:lga0/y3iH6CX7sYqypWJ33hf7kkfXJag67naqGESjkE= +cloud.google.com/go/iam v0.11.0/go.mod h1:9PiLDanza5D+oWFZiH1uG+RnRCfEGKoyl6yo4cgWZGY= +cloud.google.com/go/iam v0.12.0/go.mod h1:knyHGviacl11zrtZUoDuYpDgLjvr28sLQaG0YB2GYAY= +cloud.google.com/go/iap v1.4.0/go.mod h1:RGFwRJdihTINIe4wZ2iCP0zF/qu18ZwyKxrhMhygBEc= +cloud.google.com/go/iap v1.5.0/go.mod h1:UH/CGgKd4KyohZL5Pt0jSKE4m3FR51qg6FKQ/z/Ix9A= +cloud.google.com/go/iap v1.6.0/go.mod h1:NSuvI9C/j7UdjGjIde7t7HBz+QTwBcapPE07+sSRcLk= +cloud.google.com/go/ids v1.1.0/go.mod h1:WIuwCaYVOzHIj2OhN9HAwvW+DBdmUAdcWlFxRl+KubM= +cloud.google.com/go/ids v1.2.0/go.mod h1:5WXvp4n25S0rA/mQWAg1YEEBBq6/s+7ml1RDCW1IrcY= +cloud.google.com/go/ids v1.3.0/go.mod h1:JBdTYwANikFKaDP6LtW5JAi4gubs57SVNQjemdt6xV4= +cloud.google.com/go/iot v1.3.0/go.mod h1:r7RGh2B61+B8oz0AGE+J72AhA0G7tdXItODWsaA2oLs= +cloud.google.com/go/iot v1.4.0/go.mod h1:dIDxPOn0UvNDUMD8Ger7FIaTuvMkj+aGk94RPP0iV+g= +cloud.google.com/go/iot v1.5.0/go.mod h1:mpz5259PDl3XJthEmh9+ap0affn/MqNSP4My77Qql9o= +cloud.google.com/go/kms v1.4.0/go.mod h1:fajBHndQ+6ubNw6Ss2sSd+SWvjL26RNo/dr7uxsnnOA= +cloud.google.com/go/kms v1.5.0/go.mod h1:QJS2YY0eJGBg3mnDfuaCyLauWwBJiHRboYxJ++1xJNg= +cloud.google.com/go/kms v1.6.0/go.mod h1:Jjy850yySiasBUDi6KFUwUv2n1+o7QZFyuUJg6OgjA0= +cloud.google.com/go/kms v1.8.0/go.mod h1:4xFEhYFqvW+4VMELtZyxomGSYtSQKzM178ylFW4jMAg= +cloud.google.com/go/kms v1.9.0/go.mod h1:qb1tPTgfF9RQP8e1wq4cLFErVuTJv7UsSC915J8dh3w= +cloud.google.com/go/language v1.4.0/go.mod h1:F9dRpNFQmJbkaop6g0JhSBXCNlO90e1KWx5iDdxbWic= +cloud.google.com/go/language v1.6.0/go.mod h1:6dJ8t3B+lUYfStgls25GusK04NLh3eDLQnWM3mdEbhI= +cloud.google.com/go/language v1.7.0/go.mod h1:DJ6dYN/W+SQOjF8e1hLQXMF21AkH2w9wiPzPCJa2MIE= +cloud.google.com/go/language v1.8.0/go.mod h1:qYPVHf7SPoNNiCL2Dr0FfEFNil1qi3pQEyygwpgVKB8= +cloud.google.com/go/language v1.9.0/go.mod h1:Ns15WooPM5Ad/5no/0n81yUetis74g3zrbeJBE+ptUY= +cloud.google.com/go/lifesciences v0.5.0/go.mod h1:3oIKy8ycWGPUyZDR/8RNnTOYevhaMLqh5vLUXs9zvT8= +cloud.google.com/go/lifesciences v0.6.0/go.mod h1:ddj6tSX/7BOnhxCSd3ZcETvtNr8NZ6t/iPhY2Tyfu08= +cloud.google.com/go/lifesciences v0.8.0/go.mod h1:lFxiEOMqII6XggGbOnKiyZ7IBwoIqA84ClvoezaA/bo= +cloud.google.com/go/logging v1.6.1/go.mod h1:5ZO0mHHbvm8gEmeEUHrmDlTDSu5imF6MUP9OfilNXBw= +cloud.google.com/go/logging v1.7.0/go.mod h1:3xjP2CjkM3ZkO73aj4ASA5wRPGGCRrPIAeNqVNkzY8M= +cloud.google.com/go/longrunning v0.1.1/go.mod h1:UUFxuDWkv22EuY93jjmDMFT5GPQKeFVJBIF6QlTqdsE= +cloud.google.com/go/longrunning v0.3.0/go.mod h1:qth9Y41RRSUE69rDcOn6DdK3HfQfsUI0YSmW3iIlLJc= +cloud.google.com/go/longrunning v0.4.1/go.mod h1:4iWDqhBZ70CvZ6BfETbvam3T8FMvLK+eFj0E6AaRQTo= +cloud.google.com/go/managedidentities v1.3.0/go.mod h1:UzlW3cBOiPrzucO5qWkNkh0w33KFtBJU281hacNvsdE= +cloud.google.com/go/managedidentities v1.4.0/go.mod h1:NWSBYbEMgqmbZsLIyKvxrYbtqOsxY1ZrGM+9RgDqInM= +cloud.google.com/go/managedidentities v1.5.0/go.mod h1:+dWcZ0JlUmpuxpIDfyP5pP5y0bLdRwOS4Lp7gMni/LA= +cloud.google.com/go/maps v0.1.0/go.mod h1:BQM97WGyfw9FWEmQMpZ5T6cpovXXSd1cGmFma94eubI= +cloud.google.com/go/maps v0.6.0/go.mod h1:o6DAMMfb+aINHz/p/jbcY+mYeXBoZoxTfdSQ8VAJaCw= +cloud.google.com/go/mediatranslation v0.5.0/go.mod h1:jGPUhGTybqsPQn91pNXw0xVHfuJ3leR1wj37oU3y1f4= +cloud.google.com/go/mediatranslation v0.6.0/go.mod h1:hHdBCTYNigsBxshbznuIMFNe5QXEowAuNmmC7h8pu5w= +cloud.google.com/go/mediatranslation v0.7.0/go.mod h1:LCnB/gZr90ONOIQLgSXagp8XUW1ODs2UmUMvcgMfI2I= +cloud.google.com/go/memcache v1.4.0/go.mod h1:rTOfiGZtJX1AaFUrOgsMHX5kAzaTQ8azHiuDoTPzNsE= +cloud.google.com/go/memcache v1.5.0/go.mod h1:dk3fCK7dVo0cUU2c36jKb4VqKPS22BTkf81Xq617aWM= +cloud.google.com/go/memcache v1.6.0/go.mod h1:XS5xB0eQZdHtTuTF9Hf8eJkKtR3pVRCcvJwtm68T3rA= +cloud.google.com/go/memcache v1.7.0/go.mod h1:ywMKfjWhNtkQTxrWxCkCFkoPjLHPW6A7WOTVI8xy3LY= +cloud.google.com/go/memcache v1.9.0/go.mod h1:8oEyzXCu+zo9RzlEaEjHl4KkgjlNDaXbCQeQWlzNFJM= +cloud.google.com/go/metastore v1.5.0/go.mod h1:2ZNrDcQwghfdtCwJ33nM0+GrBGlVuh8rakL3vdPY3XY= +cloud.google.com/go/metastore v1.6.0/go.mod h1:6cyQTls8CWXzk45G55x57DVQ9gWg7RiH65+YgPsNh9s= +cloud.google.com/go/metastore v1.7.0/go.mod h1:s45D0B4IlsINu87/AsWiEVYbLaIMeUSoxlKKDqBGFS8= +cloud.google.com/go/metastore v1.8.0/go.mod h1:zHiMc4ZUpBiM7twCIFQmJ9JMEkDSyZS9U12uf7wHqSI= +cloud.google.com/go/metastore v1.10.0/go.mod h1:fPEnH3g4JJAk+gMRnrAnoqyv2lpUCqJPWOodSaf45Eo= +cloud.google.com/go/monitoring v1.7.0/go.mod h1:HpYse6kkGo//7p6sT0wsIC6IBDET0RhIsnmlA53dvEk= +cloud.google.com/go/monitoring v1.8.0/go.mod h1:E7PtoMJ1kQXWxPjB6mv2fhC5/15jInuulFdYYtlcvT4= +cloud.google.com/go/monitoring v1.12.0/go.mod h1:yx8Jj2fZNEkL/GYZyTLS4ZtZEZN8WtDEiEqG4kLK50w= +cloud.google.com/go/networkconnectivity v1.4.0/go.mod h1:nOl7YL8odKyAOtzNX73/M5/mGZgqqMeryi6UPZTk/rA= +cloud.google.com/go/networkconnectivity v1.5.0/go.mod h1:3GzqJx7uhtlM3kln0+x5wyFvuVH1pIBJjhCpjzSt75o= +cloud.google.com/go/networkconnectivity v1.6.0/go.mod h1:OJOoEXW+0LAxHh89nXd64uGG+FbQoeH8DtxCHVOMlaM= +cloud.google.com/go/networkconnectivity v1.7.0/go.mod h1:RMuSbkdbPwNMQjB5HBWD5MpTBnNm39iAVpC3TmsExt8= +cloud.google.com/go/networkconnectivity v1.10.0/go.mod h1:UP4O4sWXJG13AqrTdQCD9TnLGEbtNRqjuaaA7bNjF5E= +cloud.google.com/go/networkmanagement v1.4.0/go.mod h1:Q9mdLLRn60AsOrPc8rs8iNV6OHXaGcDdsIQe1ohekq8= +cloud.google.com/go/networkmanagement v1.5.0/go.mod h1:ZnOeZ/evzUdUsnvRt792H0uYEnHQEMaz+REhhzJRcf4= +cloud.google.com/go/networkmanagement v1.6.0/go.mod h1:5pKPqyXjB/sgtvB5xqOemumoQNB7y95Q7S+4rjSOPYY= +cloud.google.com/go/networksecurity v0.5.0/go.mod h1:xS6fOCoqpVC5zx15Z/MqkfDwH4+m/61A3ODiDV1xmiQ= +cloud.google.com/go/networksecurity v0.6.0/go.mod h1:Q5fjhTr9WMI5mbpRYEbiexTzROf7ZbDzvzCrNl14nyU= +cloud.google.com/go/networksecurity v0.7.0/go.mod h1:mAnzoxx/8TBSyXEeESMy9OOYwo1v+gZ5eMRnsT5bC8k= +cloud.google.com/go/notebooks v1.2.0/go.mod h1:9+wtppMfVPUeJ8fIWPOq1UnATHISkGXGqTkxeieQ6UY= +cloud.google.com/go/notebooks v1.3.0/go.mod h1:bFR5lj07DtCPC7YAAJ//vHskFBxA5JzYlH68kXVdk34= +cloud.google.com/go/notebooks v1.4.0/go.mod h1:4QPMngcwmgb6uw7Po99B2xv5ufVoIQ7nOGDyL4P8AgA= +cloud.google.com/go/notebooks v1.5.0/go.mod h1:q8mwhnP9aR8Hpfnrc5iN5IBhrXUy8S2vuYs+kBJ/gu0= +cloud.google.com/go/notebooks v1.7.0/go.mod h1:PVlaDGfJgj1fl1S3dUwhFMXFgfYGhYQt2164xOMONmE= +cloud.google.com/go/optimization v1.1.0/go.mod h1:5po+wfvX5AQlPznyVEZjGJTMr4+CAkJf2XSTQOOl9l4= +cloud.google.com/go/optimization v1.2.0/go.mod h1:Lr7SOHdRDENsh+WXVmQhQTrzdu9ybg0NecjHidBq6xs= +cloud.google.com/go/optimization v1.3.1/go.mod h1:IvUSefKiwd1a5p0RgHDbWCIbDFgKuEdB+fPPuP0IDLI= +cloud.google.com/go/orchestration v1.3.0/go.mod h1:Sj5tq/JpWiB//X/q3Ngwdl5K7B7Y0KZ7bfv0wL6fqVA= +cloud.google.com/go/orchestration v1.4.0/go.mod h1:6W5NLFWs2TlniBphAViZEVhrXRSMgUGDfW7vrWKvsBk= +cloud.google.com/go/orchestration v1.6.0/go.mod h1:M62Bevp7pkxStDfFfTuCOaXgaaqRAga1yKyoMtEoWPQ= +cloud.google.com/go/orgpolicy v1.4.0/go.mod h1:xrSLIV4RePWmP9P3tBl8S93lTmlAxjm06NSm2UTmKvE= +cloud.google.com/go/orgpolicy v1.5.0/go.mod h1:hZEc5q3wzwXJaKrsx5+Ewg0u1LxJ51nNFlext7Tanwc= +cloud.google.com/go/orgpolicy v1.10.0/go.mod h1:w1fo8b7rRqlXlIJbVhOMPrwVljyuW5mqssvBtU18ONc= +cloud.google.com/go/osconfig v1.7.0/go.mod h1:oVHeCeZELfJP7XLxcBGTMBvRO+1nQ5tFG9VQTmYS2Fs= +cloud.google.com/go/osconfig v1.8.0/go.mod h1:EQqZLu5w5XA7eKizepumcvWx+m8mJUhEwiPqWiZeEdg= +cloud.google.com/go/osconfig v1.9.0/go.mod h1:Yx+IeIZJ3bdWmzbQU4fxNl8xsZ4amB+dygAwFPlvnNo= +cloud.google.com/go/osconfig v1.10.0/go.mod h1:uMhCzqC5I8zfD9zDEAfvgVhDS8oIjySWh+l4WK6GnWw= +cloud.google.com/go/osconfig v1.11.0/go.mod h1:aDICxrur2ogRd9zY5ytBLV89KEgT2MKB2L/n6x1ooPw= +cloud.google.com/go/oslogin v1.4.0/go.mod h1:YdgMXWRaElXz/lDk1Na6Fh5orF7gvmJ0FGLIs9LId4E= +cloud.google.com/go/oslogin v1.5.0/go.mod h1:D260Qj11W2qx/HVF29zBg+0fd6YCSjSqLUkY/qEenQU= +cloud.google.com/go/oslogin v1.6.0/go.mod h1:zOJ1O3+dTU8WPlGEkFSh7qeHPPSoxrcMbbK1Nm2iX70= +cloud.google.com/go/oslogin v1.7.0/go.mod h1:e04SN0xO1UNJ1M5GP0vzVBFicIe4O53FOfcixIqTyXo= +cloud.google.com/go/oslogin v1.9.0/go.mod h1:HNavntnH8nzrn8JCTT5fj18FuJLFJc4NaZJtBnQtKFs= +cloud.google.com/go/phishingprotection v0.5.0/go.mod h1:Y3HZknsK9bc9dMi+oE8Bim0lczMU6hrX0UpADuMefr0= +cloud.google.com/go/phishingprotection v0.6.0/go.mod h1:9Y3LBLgy0kDTcYET8ZH3bq/7qni15yVUoAxiFxnlSUA= +cloud.google.com/go/phishingprotection v0.7.0/go.mod h1:8qJI4QKHoda/sb/7/YmMQ2omRLSLYSu9bU0EKCNI+Lk= +cloud.google.com/go/policytroubleshooter v1.3.0/go.mod h1:qy0+VwANja+kKrjlQuOzmlvscn4RNsAc0e15GGqfMxg= +cloud.google.com/go/policytroubleshooter v1.4.0/go.mod h1:DZT4BcRw3QoO8ota9xw/LKtPa8lKeCByYeKTIf/vxdE= +cloud.google.com/go/policytroubleshooter v1.5.0/go.mod h1:Rz1WfV+1oIpPdN2VvvuboLVRsB1Hclg3CKQ53j9l8vw= +cloud.google.com/go/privatecatalog v0.5.0/go.mod h1:XgosMUvvPyxDjAVNDYxJ7wBW8//hLDDYmnsNcMGq1K0= +cloud.google.com/go/privatecatalog v0.6.0/go.mod h1:i/fbkZR0hLN29eEWiiwue8Pb+GforiEIBnV9yrRUOKI= +cloud.google.com/go/privatecatalog v0.7.0/go.mod h1:2s5ssIFO69F5csTXcwBP7NPFTZvps26xGzvQ2PQaBYg= cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= +cloud.google.com/go/pubsub v1.26.0/go.mod h1:QgBH3U/jdJy/ftjPhTkyXNj543Tin1pRYcdcPRnFIRI= +cloud.google.com/go/pubsub v1.27.1/go.mod h1:hQN39ymbV9geqBnfQq6Xf63yNhUAhv9CZhzp5O6qsW0= +cloud.google.com/go/pubsub v1.28.0/go.mod h1:vuXFpwaVoIPQMGXqRyUQigu/AX1S3IWugR9xznmcXX8= +cloud.google.com/go/pubsublite v1.5.0/go.mod h1:xapqNQ1CuLfGi23Yda/9l4bBCKz/wC3KIJ5gKcxveZg= +cloud.google.com/go/pubsublite v1.6.0/go.mod h1:1eFCS0U11xlOuMFV/0iBqw3zP12kddMeCbj/F3FSj9k= +cloud.google.com/go/recaptchaenterprise v1.3.1/go.mod h1:OdD+q+y4XGeAlxRaMn1Y7/GveP6zmq76byL6tjPE7d4= +cloud.google.com/go/recaptchaenterprise/v2 v2.1.0/go.mod h1:w9yVqajwroDNTfGuhmOjPDN//rZGySaf6PtFVcSCa7o= +cloud.google.com/go/recaptchaenterprise/v2 v2.2.0/go.mod h1:/Zu5jisWGeERrd5HnlS3EUGb/D335f9k51B/FVil0jk= +cloud.google.com/go/recaptchaenterprise/v2 v2.3.0/go.mod h1:O9LwGCjrhGHBQET5CA7dd5NwwNQUErSgEDit1DLNTdo= +cloud.google.com/go/recaptchaenterprise/v2 v2.4.0/go.mod h1:Am3LHfOuBstrLrNCBrlI5sbwx9LBg3te2N6hGvHn2mE= +cloud.google.com/go/recaptchaenterprise/v2 v2.5.0/go.mod h1:O8LzcHXN3rz0j+LBC91jrwI3R+1ZSZEWrfL7XHgNo9U= +cloud.google.com/go/recaptchaenterprise/v2 v2.6.0/go.mod h1:RPauz9jeLtB3JVzg6nCbe12qNoaa8pXc4d/YukAmcnA= +cloud.google.com/go/recommendationengine v0.5.0/go.mod h1:E5756pJcVFeVgaQv3WNpImkFP8a+RptV6dDLGPILjvg= +cloud.google.com/go/recommendationengine v0.6.0/go.mod h1:08mq2umu9oIqc7tDy8sx+MNJdLG0fUi3vaSVbztHgJ4= +cloud.google.com/go/recommendationengine v0.7.0/go.mod h1:1reUcE3GIu6MeBz/h5xZJqNLuuVjNg1lmWMPyjatzac= +cloud.google.com/go/recommender v1.5.0/go.mod h1:jdoeiBIVrJe9gQjwd759ecLJbxCDED4A6p+mqoqDvTg= +cloud.google.com/go/recommender v1.6.0/go.mod h1:+yETpm25mcoiECKh9DEScGzIRyDKpZ0cEhWGo+8bo+c= +cloud.google.com/go/recommender v1.7.0/go.mod h1:XLHs/W+T8olwlGOgfQenXBTbIseGclClff6lhFVe9Bs= +cloud.google.com/go/recommender v1.8.0/go.mod h1:PkjXrTT05BFKwxaUxQmtIlrtj0kph108r02ZZQ5FE70= +cloud.google.com/go/recommender v1.9.0/go.mod h1:PnSsnZY7q+VL1uax2JWkt/UegHssxjUVVCrX52CuEmQ= +cloud.google.com/go/redis v1.7.0/go.mod h1:V3x5Jq1jzUcg+UNsRvdmsfuFnit1cfe3Z/PGyq/lm4Y= +cloud.google.com/go/redis v1.8.0/go.mod h1:Fm2szCDavWzBk2cDKxrkmWBqoCiL1+Ctwq7EyqBCA/A= +cloud.google.com/go/redis v1.9.0/go.mod h1:HMYQuajvb2D0LvMgZmLDZW8V5aOC/WxstZHiy4g8OiA= +cloud.google.com/go/redis v1.10.0/go.mod h1:ThJf3mMBQtW18JzGgh41/Wld6vnDDc/F/F35UolRZPM= +cloud.google.com/go/redis v1.11.0/go.mod h1:/X6eicana+BWcUda5PpwZC48o37SiFVTFSs0fWAJ7uQ= +cloud.google.com/go/resourcemanager v1.3.0/go.mod h1:bAtrTjZQFJkiWTPDb1WBjzvc6/kifjj4QBYuKCCoqKA= +cloud.google.com/go/resourcemanager v1.4.0/go.mod h1:MwxuzkumyTX7/a3n37gmsT3py7LIXwrShilPh3P1tR0= +cloud.google.com/go/resourcemanager v1.5.0/go.mod h1:eQoXNAiAvCf5PXxWxXjhKQoTMaUSNrEfg+6qdf/wots= +cloud.google.com/go/resourcesettings v1.3.0/go.mod h1:lzew8VfESA5DQ8gdlHwMrqZs1S9V87v3oCnKCWoOuQU= +cloud.google.com/go/resourcesettings v1.4.0/go.mod h1:ldiH9IJpcrlC3VSuCGvjR5of/ezRrOxFtpJoJo5SmXg= +cloud.google.com/go/resourcesettings v1.5.0/go.mod h1:+xJF7QSG6undsQDfsCJyqWXyBwUoJLhetkRMDRnIoXA= +cloud.google.com/go/retail v1.8.0/go.mod h1:QblKS8waDmNUhghY2TI9O3JLlFk8jybHeV4BF19FrE4= +cloud.google.com/go/retail v1.9.0/go.mod h1:g6jb6mKuCS1QKnH/dpu7isX253absFl6iE92nHwlBUY= +cloud.google.com/go/retail v1.10.0/go.mod h1:2gDk9HsL4HMS4oZwz6daui2/jmKvqShXKQuB2RZ+cCc= +cloud.google.com/go/retail v1.11.0/go.mod h1:MBLk1NaWPmh6iVFSz9MeKG/Psyd7TAgm6y/9L2B4x9Y= +cloud.google.com/go/retail v1.12.0/go.mod h1:UMkelN/0Z8XvKymXFbD4EhFJlYKRx1FGhQkVPU5kF14= +cloud.google.com/go/run v0.2.0/go.mod h1:CNtKsTA1sDcnqqIFR3Pb5Tq0usWxJJvsWOCPldRU3Do= +cloud.google.com/go/run v0.3.0/go.mod h1:TuyY1+taHxTjrD0ZFk2iAR+xyOXEA0ztb7U3UNA0zBo= +cloud.google.com/go/run v0.8.0/go.mod h1:VniEnuBwqjigv0A7ONfQUaEItaiCRVujlMqerPPiktM= +cloud.google.com/go/scheduler v1.4.0/go.mod h1:drcJBmxF3aqZJRhmkHQ9b3uSSpQoltBPGPxGAWROx6s= +cloud.google.com/go/scheduler v1.5.0/go.mod h1:ri073ym49NW3AfT6DZi21vLZrG07GXr5p3H1KxN5QlI= +cloud.google.com/go/scheduler v1.6.0/go.mod h1:SgeKVM7MIwPn3BqtcBntpLyrIJftQISRrYB5ZtT+KOk= +cloud.google.com/go/scheduler v1.7.0/go.mod h1:jyCiBqWW956uBjjPMMuX09n3x37mtyPJegEWKxRsn44= +cloud.google.com/go/scheduler v1.8.0/go.mod h1:TCET+Y5Gp1YgHT8py4nlg2Sew8nUHMqcpousDgXJVQc= +cloud.google.com/go/secretmanager v1.6.0/go.mod h1:awVa/OXF6IiyaU1wQ34inzQNc4ISIDIrId8qE5QGgKA= +cloud.google.com/go/secretmanager v1.8.0/go.mod h1:hnVgi/bN5MYHd3Gt0SPuTPPp5ENina1/LxM+2W9U9J4= +cloud.google.com/go/secretmanager v1.9.0/go.mod h1:b71qH2l1yHmWQHt9LC80akm86mX8AL6X1MA01dW8ht4= +cloud.google.com/go/secretmanager v1.10.0/go.mod h1:MfnrdvKMPNra9aZtQFvBcvRU54hbPD8/HayQdlUgJpU= +cloud.google.com/go/security v1.5.0/go.mod h1:lgxGdyOKKjHL4YG3/YwIL2zLqMFCKs0UbQwgyZmfJl4= +cloud.google.com/go/security v1.7.0/go.mod h1:mZklORHl6Bg7CNnnjLH//0UlAlaXqiG7Lb9PsPXLfD0= +cloud.google.com/go/security v1.8.0/go.mod h1:hAQOwgmaHhztFhiQ41CjDODdWP0+AE1B3sX4OFlq+GU= +cloud.google.com/go/security v1.9.0/go.mod h1:6Ta1bO8LXI89nZnmnsZGp9lVoVWXqsVbIq/t9dzI+2Q= +cloud.google.com/go/security v1.10.0/go.mod h1:QtOMZByJVlibUT2h9afNDWRZ1G96gVywH8T5GUSb9IA= +cloud.google.com/go/security v1.12.0/go.mod h1:rV6EhrpbNHrrxqlvW0BWAIawFWq3X90SduMJdFwtLB8= +cloud.google.com/go/securitycenter v1.13.0/go.mod h1:cv5qNAqjY84FCN6Y9z28WlkKXyWsgLO832YiWwkCWcU= +cloud.google.com/go/securitycenter v1.14.0/go.mod h1:gZLAhtyKv85n52XYWt6RmeBdydyxfPeTrpToDPw4Auc= +cloud.google.com/go/securitycenter v1.15.0/go.mod h1:PeKJ0t8MoFmmXLXWm41JidyzI3PJjd8sXWaVqg43WWk= +cloud.google.com/go/securitycenter v1.16.0/go.mod h1:Q9GMaLQFUD+5ZTabrbujNWLtSLZIZF7SAR0wWECrjdk= +cloud.google.com/go/securitycenter v1.18.1/go.mod h1:0/25gAzCM/9OL9vVx4ChPeM/+DlfGQJDwBy/UC8AKK0= +cloud.google.com/go/servicecontrol v1.4.0/go.mod h1:o0hUSJ1TXJAmi/7fLJAedOovnujSEvjKCAFNXPQ1RaU= +cloud.google.com/go/servicecontrol v1.5.0/go.mod h1:qM0CnXHhyqKVuiZnGKrIurvVImCs8gmqWsDoqe9sU1s= +cloud.google.com/go/servicecontrol v1.10.0/go.mod h1:pQvyvSRh7YzUF2efw7H87V92mxU8FnFDawMClGCNuAA= +cloud.google.com/go/servicecontrol v1.11.0/go.mod h1:kFmTzYzTUIuZs0ycVqRHNaNhgR+UMUpw9n02l/pY+mc= +cloud.google.com/go/servicedirectory v1.4.0/go.mod h1:gH1MUaZCgtP7qQiI+F+A+OpeKF/HQWgtAddhTbhL2bs= +cloud.google.com/go/servicedirectory v1.5.0/go.mod h1:QMKFL0NUySbpZJ1UZs3oFAmdvVxhhxB6eJ/Vlp73dfg= +cloud.google.com/go/servicedirectory v1.6.0/go.mod h1:pUlbnWsLH9c13yGkxCmfumWEPjsRs1RlmJ4pqiNjVL4= +cloud.google.com/go/servicedirectory v1.7.0/go.mod h1:5p/U5oyvgYGYejufvxhgwjL8UVXjkuw7q5XcG10wx1U= +cloud.google.com/go/servicedirectory v1.8.0/go.mod h1:srXodfhY1GFIPvltunswqXpVxFPpZjf8nkKQT7XcXaY= +cloud.google.com/go/servicemanagement v1.4.0/go.mod h1:d8t8MDbezI7Z2R1O/wu8oTggo3BI2GKYbdG4y/SJTco= +cloud.google.com/go/servicemanagement v1.5.0/go.mod h1:XGaCRe57kfqu4+lRxaFEAuqmjzF0r+gWHjWqKqBvKFo= +cloud.google.com/go/servicemanagement v1.6.0/go.mod h1:aWns7EeeCOtGEX4OvZUWCCJONRZeFKiptqKf1D0l/Jc= +cloud.google.com/go/serviceusage v1.3.0/go.mod h1:Hya1cozXM4SeSKTAgGXgj97GlqUvF5JaoXacR1JTP/E= +cloud.google.com/go/serviceusage v1.4.0/go.mod h1:SB4yxXSaYVuUBYUml6qklyONXNLt83U0Rb+CXyhjEeU= +cloud.google.com/go/serviceusage v1.5.0/go.mod h1:w8U1JvqUqwJNPEOTQjrMHkw3IaIFLoLsPLvsE3xueec= +cloud.google.com/go/shell v1.3.0/go.mod h1:VZ9HmRjZBsjLGXusm7K5Q5lzzByZmJHf1d0IWHEN5X4= +cloud.google.com/go/shell v1.4.0/go.mod h1:HDxPzZf3GkDdhExzD/gs8Grqk+dmYcEjGShZgYa9URw= +cloud.google.com/go/shell v1.6.0/go.mod h1:oHO8QACS90luWgxP3N9iZVuEiSF84zNyLytb+qE2f9A= +cloud.google.com/go/spanner v1.41.0/go.mod h1:MLYDBJR/dY4Wt7ZaMIQ7rXOTLjYrmxLE/5ve9vFfWos= +cloud.google.com/go/spanner v1.44.0/go.mod h1:G8XIgYdOK+Fbcpbs7p2fiprDw4CaZX63whnSMLVBxjk= +cloud.google.com/go/speech v1.6.0/go.mod h1:79tcr4FHCimOp56lwC01xnt/WPJZc4v3gzyT7FoBkCM= +cloud.google.com/go/speech v1.7.0/go.mod h1:KptqL+BAQIhMsj1kOP2la5DSEEerPDuOP/2mmkhHhZQ= +cloud.google.com/go/speech v1.8.0/go.mod h1:9bYIl1/tjsAnMgKGHKmBZzXKEkGgtU+MpdDPTE9f7y0= +cloud.google.com/go/speech v1.9.0/go.mod h1:xQ0jTcmnRFFM2RfX/U+rk6FQNUF6DQlydUSyoooSpco= +cloud.google.com/go/speech v1.14.1/go.mod h1:gEosVRPJ9waG7zqqnsHpYTOoAS4KouMRLDFMekpJ0J0= cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo= +cloud.google.com/go/storage v1.22.1/go.mod h1:S8N1cAStu7BOeFfE8KAQzmyyLkK8p/vmRq6kuBTW58Y= +cloud.google.com/go/storage v1.23.0/go.mod h1:vOEEDNFnciUMhBeT6hsJIn3ieU5cFRmzeLgDvXzfIXc= +cloud.google.com/go/storage v1.27.0/go.mod h1:x9DOL8TK/ygDUMieqwfhdpQryTeEkhGKMi80i/iqR2s= +cloud.google.com/go/storage v1.28.1/go.mod h1:Qnisd4CqDdo6BGs2AD5LLnEsmSQ80wQ5ogcBBKhU86Y= +cloud.google.com/go/storagetransfer v1.5.0/go.mod h1:dxNzUopWy7RQevYFHewchb29POFv3/AaBgnhqzqiK0w= +cloud.google.com/go/storagetransfer v1.6.0/go.mod h1:y77xm4CQV/ZhFZH75PLEXY0ROiS7Gh6pSKrM8dJyg6I= +cloud.google.com/go/storagetransfer v1.7.0/go.mod h1:8Giuj1QNb1kfLAiWM1bN6dHzfdlDAVC9rv9abHot2W4= +cloud.google.com/go/talent v1.1.0/go.mod h1:Vl4pt9jiHKvOgF9KoZo6Kob9oV4lwd/ZD5Cto54zDRw= +cloud.google.com/go/talent v1.2.0/go.mod h1:MoNF9bhFQbiJ6eFD3uSsg0uBALw4n4gaCaEjBw9zo8g= +cloud.google.com/go/talent v1.3.0/go.mod h1:CmcxwJ/PKfRgd1pBjQgU6W3YBwiewmUzQYH5HHmSCmM= +cloud.google.com/go/talent v1.4.0/go.mod h1:ezFtAgVuRf8jRsvyE6EwmbTK5LKciD4KVnHuDEFmOOA= +cloud.google.com/go/talent v1.5.0/go.mod h1:G+ODMj9bsasAEJkQSzO2uHQWXHHXUomArjWQQYkqK6c= +cloud.google.com/go/texttospeech v1.4.0/go.mod h1:FX8HQHA6sEpJ7rCMSfXuzBcysDAuWusNNNvN9FELDd8= +cloud.google.com/go/texttospeech v1.5.0/go.mod h1:oKPLhR4n4ZdQqWKURdwxMy0uiTS1xU161C8W57Wkea4= +cloud.google.com/go/texttospeech v1.6.0/go.mod h1:YmwmFT8pj1aBblQOI3TfKmwibnsfvhIBzPXcW4EBovc= +cloud.google.com/go/tpu v1.3.0/go.mod h1:aJIManG0o20tfDQlRIej44FcwGGl/cD0oiRyMKG19IQ= +cloud.google.com/go/tpu v1.4.0/go.mod h1:mjZaX8p0VBgllCzF6wcU2ovUXN9TONFLd7iz227X2Xg= +cloud.google.com/go/tpu v1.5.0/go.mod h1:8zVo1rYDFuW2l4yZVY0R0fb/v44xLh3llq7RuV61fPM= +cloud.google.com/go/trace v1.3.0/go.mod h1:FFUE83d9Ca57C+K8rDl/Ih8LwOzWIV1krKgxg6N0G28= +cloud.google.com/go/trace v1.4.0/go.mod h1:UG0v8UBqzusp+z63o7FK74SdFE+AXpCLdFb1rshXG+Y= +cloud.google.com/go/trace v1.8.0/go.mod h1:zH7vcsbAhklH8hWFig58HvxcxyQbaIqMarMg9hn5ECA= +cloud.google.com/go/translate v1.3.0/go.mod h1:gzMUwRjvOqj5i69y/LYLd8RrNQk+hOmIXTi9+nb3Djs= +cloud.google.com/go/translate v1.4.0/go.mod h1:06Dn/ppvLD6WvA5Rhdp029IX2Mi3Mn7fpMRLPvXT5Wg= +cloud.google.com/go/translate v1.5.0/go.mod h1:29YDSYveqqpA1CQFD7NQuP49xymq17RXNaUDdc0mNu0= +cloud.google.com/go/translate v1.6.0/go.mod h1:lMGRudH1pu7I3n3PETiOB2507gf3HnfLV8qlkHZEyos= +cloud.google.com/go/video v1.8.0/go.mod h1:sTzKFc0bUSByE8Yoh8X0mn8bMymItVGPfTuUBUyRgxk= +cloud.google.com/go/video v1.9.0/go.mod h1:0RhNKFRF5v92f8dQt0yhaHrEuH95m068JYOvLZYnJSw= +cloud.google.com/go/video v1.12.0/go.mod h1:MLQew95eTuaNDEGriQdcYn0dTwf9oWiA4uYebxM5kdg= +cloud.google.com/go/video v1.13.0/go.mod h1:ulzkYlYgCp15N2AokzKjy7MQ9ejuynOJdf1tR5lGthk= +cloud.google.com/go/videointelligence v1.6.0/go.mod h1:w0DIDlVRKtwPCn/C4iwZIJdvC69yInhW0cfi+p546uU= +cloud.google.com/go/videointelligence v1.7.0/go.mod h1:k8pI/1wAhjznARtVT9U1llUaFNPh7muw8QyOUpavru4= +cloud.google.com/go/videointelligence v1.8.0/go.mod h1:dIcCn4gVDdS7yte/w+koiXn5dWVplOZkE+xwG9FgK+M= +cloud.google.com/go/videointelligence v1.9.0/go.mod h1:29lVRMPDYHikk3v8EdPSaL8Ku+eMzDljjuvRs105XoU= +cloud.google.com/go/videointelligence v1.10.0/go.mod h1:LHZngX1liVtUhZvi2uNS0VQuOzNi2TkY1OakiuoUOjU= +cloud.google.com/go/vision v1.2.0/go.mod h1:SmNwgObm5DpFBme2xpyOyasvBc1aPdjvMk2bBk0tKD0= +cloud.google.com/go/vision/v2 v2.2.0/go.mod h1:uCdV4PpN1S0jyCyq8sIM42v2Y6zOLkZs+4R9LrGYwFo= +cloud.google.com/go/vision/v2 v2.3.0/go.mod h1:UO61abBx9QRMFkNBbf1D8B1LXdS2cGiiCRx0vSpZoUo= +cloud.google.com/go/vision/v2 v2.4.0/go.mod h1:VtI579ll9RpVTrdKdkMzckdnwMyX2JILb+MhPqRbPsY= +cloud.google.com/go/vision/v2 v2.5.0/go.mod h1:MmaezXOOE+IWa+cS7OhRRLK2cNv1ZL98zhqFFZaaH2E= +cloud.google.com/go/vision/v2 v2.6.0/go.mod h1:158Hes0MvOS9Z/bDMSFpjwsUrZ5fPrdwuyyvKSGAGMY= +cloud.google.com/go/vmmigration v1.2.0/go.mod h1:IRf0o7myyWFSmVR1ItrBSFLFD/rJkfDCUTO4vLlJvsE= +cloud.google.com/go/vmmigration v1.3.0/go.mod h1:oGJ6ZgGPQOFdjHuocGcLqX4lc98YQ7Ygq8YQwHh9A7g= +cloud.google.com/go/vmmigration v1.5.0/go.mod h1:E4YQ8q7/4W9gobHjQg4JJSgXXSgY21nA5r8swQV+Xxc= +cloud.google.com/go/vmwareengine v0.1.0/go.mod h1:RsdNEf/8UDvKllXhMz5J40XxDrNJNN4sagiox+OI208= +cloud.google.com/go/vmwareengine v0.2.2/go.mod h1:sKdctNJxb3KLZkE/6Oui94iw/xs9PRNC2wnNLXsHvH8= +cloud.google.com/go/vpcaccess v1.4.0/go.mod h1:aQHVbTWDYUR1EbTApSVvMq1EnT57ppDmQzZ3imqIk4w= +cloud.google.com/go/vpcaccess v1.5.0/go.mod h1:drmg4HLk9NkZpGfCmZ3Tz0Bwnm2+DKqViEpeEpOq0m8= +cloud.google.com/go/vpcaccess v1.6.0/go.mod h1:wX2ILaNhe7TlVa4vC5xce1bCnqE3AeH27RV31lnmZes= +cloud.google.com/go/webrisk v1.4.0/go.mod h1:Hn8X6Zr+ziE2aNd8SliSDWpEnSS1u4R9+xXZmFiHmGE= +cloud.google.com/go/webrisk v1.5.0/go.mod h1:iPG6fr52Tv7sGk0H6qUFzmL3HHZev1htXuWDEEsqMTg= +cloud.google.com/go/webrisk v1.6.0/go.mod h1:65sW9V9rOosnc9ZY7A7jsy1zoHS5W9IAXv6dGqhMQMc= +cloud.google.com/go/webrisk v1.7.0/go.mod h1:mVMHgEYH0r337nmt1JyLthzMr6YxwN1aAIEc2fTcq7A= +cloud.google.com/go/webrisk v1.8.0/go.mod h1:oJPDuamzHXgUc+b8SiHRcVInZQuybnvEW72PqTc7sSg= +cloud.google.com/go/websecurityscanner v1.3.0/go.mod h1:uImdKm2wyeXQevQJXeh8Uun/Ym1VqworNDlBXQevGMo= +cloud.google.com/go/websecurityscanner v1.4.0/go.mod h1:ebit/Fp0a+FWu5j4JOmJEV8S8CzdTkAS77oDsiSqYWQ= +cloud.google.com/go/websecurityscanner v1.5.0/go.mod h1:Y6xdCPy81yi0SQnDY1xdNTNpfY1oAgXUlcfN3B3eSng= +cloud.google.com/go/workflows v1.6.0/go.mod h1:6t9F5h/unJz41YqfBmqSASJSXccBLtD1Vwf+KmJENM0= +cloud.google.com/go/workflows v1.7.0/go.mod h1:JhSrZuVZWuiDfKEFxU0/F1PQjmpnpcoISEXH2bcHC3M= +cloud.google.com/go/workflows v1.8.0/go.mod h1:ysGhmEajwZxGn1OhGOGKsTXc5PyxOc0vfKf5Af+to4M= +cloud.google.com/go/workflows v1.9.0/go.mod h1:ZGkj1aFIOd9c8Gerkjjq7OW7I5+l6cSvT3ujaO/WwSA= +cloud.google.com/go/workflows v1.10.0/go.mod h1:fZ8LmRmZQWacon9UCX1r/g/DfAXx5VcPALq2CxzdePw= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= +gioui.org v0.0.0-20210308172011-57750fc8a0a6/go.mod h1:RSH6KIUZ0p2xy5zHDxgAM4zumjgTw83q2ge/PI+yyw8= +git.sr.ht/~sbinet/gg v0.3.1/go.mod h1:KGYtlADtqsqANL9ueOFkWymvzUvLMQllU5Ixo+8v3pc= github.com/Azure/azure-pipeline-go v0.2.1/go.mod h1:UGSo8XybXnIGZ3epmeBw7Jdz+HiUVpqIlpz/HKHylF4= github.com/Azure/azure-pipeline-go v0.2.2/go.mod h1:4rQ/NZncSvGqNkkOsNpOU1tgoNuIlp9AfUH5G1tvCHc= github.com/Azure/azure-storage-blob-go v0.7.0/go.mod h1:f9YQKtsG1nMisotuTPpO0tjNuEjKRYAcJU8/ydDI++4= @@ -52,30 +536,64 @@ github.com/Azure/go-autorest/tracing v0.5.0/go.mod h1:r/s2XiOKccPW3HrqB+W0TQzfbt github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= +github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c/go.mod h1:X0CRv0ky0k6m906ixxpzmDRLvX58TFUKS2eePweuyxk= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/OneOfOne/xxhash v1.2.5/go.mod h1:eZbhyaAYD41SGSSsnmcpxVoRiQ/MPUTjUdIIOT9Um7Q= github.com/SaveTheRbtz/mph v0.1.2 h1:5l3W496Up+7BNOVJQnJhzcGBh+wWfxWdmPUAkx3WmaM= github.com/SaveTheRbtz/mph v0.1.2/go.mod h1:V4+WtKQPe2+dEA5os1WnGsEB0NR9qgqqgIiSt73+sT4= github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg= github.com/VictoriaMetrics/fastcache v1.5.3/go.mod h1:+jv9Ckb+za/P1ZRg/sulP5Ni1v49daAVERr0H3CuscE= +github.com/ajstarks/deck v0.0.0-20200831202436-30c9fc6549a9/go.mod h1:JynElWSGnm/4RlzPXRlREEwqTHAN3T56Bv2ITsFT3gY= +github.com/ajstarks/deck/generate v0.0.0-20210309230005-c3f852c02e19/go.mod h1:T13YZdzov6OU0A1+RfKZiZN9ca6VeKdBdyDV+BY97Tk= +github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw= +github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b/go.mod h1:1KcenG0jGWcpt8ov532z81sp/kMMUG485J2InIOyADM= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/allegro/bigcache v1.2.1-0.20190218064605-e24eb225f156/go.mod h1:Cb/ax3seSYIx7SuZdm2G2xzfwmv3TPSk2ucNfQESPXM= +github.com/andybalholm/brotli v1.0.4/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig= +github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= +github.com/apache/arrow/go/v10 v10.0.1/go.mod h1:YvhnlEePVnBS4+0z3fhPfUy7W1Ikj0Ih0vcRo/gZ1M0= +github.com/apache/thrift v0.16.0/go.mod h1:PHK3hniurgQaNMZYaCLEqXKsYK8upmhPbmdP2FXSqgU= github.com/aristanetworks/goarista v0.0.0-20170210015632-ea17b1a17847/go.mod h1:D/tb0zPVXnP7fmsLZjtdUhSsumbK/ij54UXjjVgMGxQ= github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8= github.com/aws/aws-sdk-go v1.25.48/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= +github.com/aws/aws-sdk-go-v2 v1.17.3/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw= +github.com/aws/aws-sdk-go-v2 v1.17.7/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw= +github.com/aws/aws-sdk-go-v2/config v1.18.19/go.mod h1:XvTmGMY8d52ougvakOv1RpiTLPz9dlG/OQHsKU/cMmY= +github.com/aws/aws-sdk-go-v2/credentials v1.13.18/go.mod h1:vnwlwjIe+3XJPBYKu1et30ZPABG3VaXJYr8ryohpIyM= +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.1/go.mod h1:lfUx8puBRdM5lVVMQlwt2v+ofiG/X6Ms+dy0UkG/kXw= +github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.27/go.mod h1:a1/UpzeyBBerajpnP5nGZa9mGzsBn5cOKxm6NWQsvoI= +github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.31/go.mod h1:QT0BqUvX1Bh2ABdTGnjqEjvjzrCfIniM9Sc8zn9Yndo= +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.21/go.mod h1:+Gxn8jYn5k9ebfHEqlhrMirFjSW0v0C9fI+KN5vk2kE= +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.25/go.mod h1:zBHOPwhBc3FlQjQJE/D3IfPWiWaQmT06Vq9aNukDo0k= +github.com/aws/aws-sdk-go-v2/internal/ini v1.3.32/go.mod h1:XGhIBZDEgfqmFIugclZ6FU7v75nHhBDtzuB4xB/tEi4= +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.25/go.mod h1:/95IA+0lMnzW6XzqYJRpjjsAbKEORVeO0anQqjd2CNU= +github.com/aws/aws-sdk-go-v2/service/kms v1.20.1/go.mod h1:13sjgMH7Xu4e46+0BEDhSnNh+cImHSYS5PpBjV3oXcU= +github.com/aws/aws-sdk-go-v2/service/sso v1.12.6/go.mod h1:Y1VOmit/Fn6Tz1uFAeCO6Q7M2fmfXSCLeL5INVYsLuY= +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.6/go.mod h1:Lh/bc9XUf8CfOY6Jp5aIkQtN+j1mc+nExc+KXj9jx2s= +github.com/aws/aws-sdk-go-v2/service/sts v1.18.7/go.mod h1:JuTnSoeePXmMVe9G8NcjjwgOKEfZ4cOjMuT2IBT/2eI= +github.com/aws/smithy-go v1.13.5/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= +github.com/bits-and-blooms/bitset v1.2.2/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= github.com/bits-and-blooms/bitset v1.5.0 h1:NpE8frKRLGHIcEzkR+gZhiioW1+WbYV6fKwD6ZIpQT8= github.com/bits-and-blooms/bitset v1.5.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= +github.com/boombuler/barcode v1.0.0/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= +github.com/boombuler/barcode v1.0.1/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= github.com/btcsuite/btcd v0.0.0-20171128150713-2e60448ffcc6/go.mod h1:Dmm/EzmjnCiweXmzRIAiUWCInVmPgjkzgv5k4tVyXiQ= github.com/btcsuite/btcd/btcec/v2 v2.2.1 h1:xP60mv8fvp+0khmrN0zTdPC3cNm24rfeE6lh2R/Yv3E= github.com/btcsuite/btcd/btcec/v2 v2.2.1/go.mod h1:9/CSmJxmuvqzX9Wh2fXMWToLOHhPd11lSPuIupwTkI8= +github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1/go.mod h1:7SFka0XMvUgj3hfZtydOrQY2mwhPclbT2snogU7SQQc= +github.com/bytecodealliance/wasmtime-go/v7 v7.0.0/go.mod h1:bu6fic7trDt20w+LMooX7j3fsOwv4/ln6j8gAdP6vmA= +github.com/c-bata/go-prompt v0.2.5/go.mod h1:vFnjEGDIIA/Lib7giyE4E9c50Lvl8j0S+7FVlAwDAVw= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= +github.com/census-instrumentation/opencensus-proto v0.3.0/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= +github.com/census-instrumentation/opencensus-proto v0.4.1/go.mod h1:4T9NM4+4Vw91VeyqjLS6ao50K5bOcLKN6Q42XnYaRYw= github.com/cespare/cp v0.1.0/go.mod h1:SOGHArjBr4JWaSDEVpWpo/hNg6RoKrls6Oh40hiwW+s= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= github.com/cespare/xxhash/v2 v2.0.1-0.20190104013014-3767db7a7e18/go.mod h1:HD5P3vAIAh+Y2GAxg0PrPN1P8WkepXGpjbUPDHJqqKM= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= @@ -84,6 +602,15 @@ github.com/cloudflare/cloudflare-go v0.10.2-0.20190916151808-a80f83b9add9/go.mod github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= +github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= +github.com/cncf/udpa/go v0.0.0-20220112060539-c52dc94e7fbe/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= +github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20210805033703-aa0b78936158/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20211001041855-01bcc9b48dfe/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20220314180256-7f1daf1720fc/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20230105202645-06c439db220b/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk= @@ -93,7 +620,17 @@ github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfc github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= +github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= +github.com/dave/astrid v0.0.0-20170323122508-8c2895878b14/go.mod h1:Sth2QfxfATb/nW4EsrSi2KyJmbcniZ8TgTaji17D6ms= +github.com/dave/brenda v1.1.0/go.mod h1:4wCUr6gSlu5/1Tk7akE5X7UorwiQ8Rij0SKH3/BGMOM= +github.com/dave/courtney v0.3.0/go.mod h1:BAv3hA06AYfNUjfjQr+5gc6vxeBVOupLqrColj+QSD8= +github.com/dave/dst v0.27.2/go.mod h1:jHh6EOibnHgcUW3WjKHisiooEkYwqpHLBSX1iOBhEyc= +github.com/dave/gopackages v0.0.0-20170318123100-46e7023ec56e/go.mod h1:i00+b/gKdIDIxuLDFob7ustLAVqhsZRk2qVZrArELGQ= +github.com/dave/jennifer v1.5.0/go.mod h1:4MnyiFIlZS3l5tSDn8VnzE6ffAhYBMB2SZntBsZGUok= +github.com/dave/kerr v0.0.0-20170318121727-bc25dd6abe8e/go.mod h1:qZqlPyPvfsDJt+3wHJ1EvSXDuVjFTK0j2p/ca+gtsb8= +github.com/dave/patsy v0.0.0-20210517141501-957256f50cba/go.mod h1:qfR88CgEGLoiqDaE+xxDCi5QA5v4vUoW0UCX2Nd5Tlc= +github.com/dave/rebecca v0.9.1/go.mod h1:N6XYdMD/OKw3lkF3ywh8Z6wPGuwNFDNtWYEMFWEmXBA= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= @@ -105,7 +642,9 @@ github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZm github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= github.com/dlclark/regexp2 v1.2.0/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc= github.com/docker/docker v1.4.2-0.20180625184442-8e610b2b55bf/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= +github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= github.com/dop251/goja v0.0.0-20200219165308-d1232e640a87/go.mod h1:Mw6PkjjMXWbTj+nnj4s3QPXq1jaT0s5pC0iFD4+BOAA= +github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= github.com/edsrzf/mmap-go v0.0.0-20160512033002-935e0e8a636c/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= github.com/elastic/gosigar v0.8.1-0.20180330100440-37f05ff46ffa/go.mod h1:cdorVVzy1fhmEqmtgqkoE3bYtCfSCkVyjTyCIo22xvs= github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= @@ -113,33 +652,59 @@ github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.m github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= +github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= +github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= +github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0= +github.com/envoyproxy/go-control-plane v0.10.2-0.20220325020618-49ff273808a1/go.mod h1:KJwIaB5Mv44NWtYuAOFCVOjcI94vtpEz2JU/D2v6IjE= +github.com/envoyproxy/go-control-plane v0.10.3/go.mod h1:fJJn/j26vwOu972OllsvAgJJM//w9BV6Fxbg2LuVd34= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= +github.com/envoyproxy/protoc-gen-validate v0.6.7/go.mod h1:dyJXwwfPK2VSqiB9Klm1J6romD608Ba7Hij42vrOBCo= +github.com/envoyproxy/protoc-gen-validate v0.9.1/go.mod h1:OKNgG7TCp5pF4d6XftA0++PMirau2/yoOwVac3AbF2w= github.com/ethereum/go-ethereum v1.9.13 h1:rOPqjSngvs1VSYH2H+PMPiWt4VEulvNRbFgqiGqJM3E= github.com/ethereum/go-ethereum v1.9.13/go.mod h1:qwN9d1GLyDh0N7Ab8bMGd0H9knaji2jOBm2RrMGjXls= github.com/fatih/color v1.3.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= github.com/fjl/memsize v0.0.0-20180418122429-ca190fb6ffbc/go.mod h1:VvhXpOYNQvB+uIk2RvXzuaQtkQJzzIx6lSBe1xv7hi0= +github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= +github.com/fogleman/gg v1.3.0/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= +github.com/fxamacker/cbor/v2 v2.4.1-0.20220515183430-ad2eae63303f/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c h1:5tm/Wbs9d9r+qZaUFXk59CWDD0+77PBqDREffYkyi5c= github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= github.com/fxamacker/circlehash v0.3.0 h1:XKdvTtIJV9t7DDUtsf0RIpC1OcxZtPbmgIH7ekx28WA= github.com/fxamacker/circlehash v0.3.0/go.mod h1:3aq3OfVvsWtkWMb6A1owjOQFA+TLsD5FgJflnaQwtMM= github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff/go.mod h1:x7DCsMOv1taUwEWCzT4cmDeAkigA5/QCwUodaVOe8Ww= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= +github.com/go-fonts/dejavu v0.1.0/go.mod h1:4Wt4I4OU2Nq9asgDCteaAaWZOV24E+0/Pwo0gppep4g= +github.com/go-fonts/latin-modern v0.2.0/go.mod h1:rQVLdDMK+mK1xscDwsqM5J8U2jrRa3T0ecnM9pNujks= +github.com/go-fonts/liberation v0.1.1/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= +github.com/go-fonts/liberation v0.2.0/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= +github.com/go-fonts/stix v0.1.0/go.mod h1:w/c1f0ldAUlJmLBvlbkvVXLAD+tAMqobIIQpmnUIzUY= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-latex/latex v0.0.0-20210118124228-b3d85cf34e07/go.mod h1:CO1AlKB2CSIqUrmQPqA0gdRIlnLEY0gK5JGjh37zN5U= +github.com/go-latex/latex v0.0.0-20210823091927-c0d11ff05a81/go.mod h1:SX0U8uGpxhq9o2S/CELCSUxEWWAuoCUcVCQWv7G2OCk= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= +github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= +github.com/go-logr/logr v1.2.3/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= +github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= github.com/go-ole/go-ole v1.2.1/go.mod h1:7FAglXiTm7HKlQRDeOQ6ZNUHidzCWXuZWq/1dTyBNF8= +github.com/go-pdf/fpdf v0.5.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= +github.com/go-pdf/fpdf v0.6.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= github.com/go-sourcemap/sourcemap v2.1.2+incompatible/go.mod h1:F8jJfvm2KbVjc5NqelyYJmf/v5J0dwNLS2mL4sNA1Jg= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/go-test/deep v1.0.5/go.mod h1:QV8Hv/iy04NyLBxAdO9njL0iVPN1S4d/A3NVv1V36o8= github.com/go-test/deep v1.1.0 h1:WOcxcdHcvdgThNXjw0t76K42FXTU7HpNQWHpA2HHNlg= github.com/go-test/deep v1.1.0/go.mod h1:5C2ZWiW0ErCdrYzpqxLbTX7MG14M9iiw8DgHncVwcsE= +github.com/goccy/go-json v0.9.11/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= +github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= +github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4= github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= @@ -151,6 +716,8 @@ github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= +github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= +github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2-0.20190517061210-b285ee9cfc6c/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= @@ -166,9 +733,15 @@ github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvq github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= +github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= +github.com/google/flatbuffers v2.0.8+incompatible/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= @@ -177,11 +750,19 @@ github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/ github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE= +github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= +github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= +github.com/google/martian/v3 v3.2.1/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= +github.com/google/martian/v3 v3.3.2/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= @@ -192,10 +773,31 @@ github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hf github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/googleapis/enterprise-certificate-proxy v0.0.0-20220520183353-fd19c99a87aa/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= +github.com/googleapis/enterprise-certificate-proxy v0.1.0/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= +github.com/googleapis/enterprise-certificate-proxy v0.2.0/go.mod h1:8C0jb7/mgJe/9KK8Lm7X9ctZC2t60YyIpYEI16jx0Qg= +github.com/googleapis/enterprise-certificate-proxy v0.2.1/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= +github.com/googleapis/enterprise-certificate-proxy v0.2.3/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= +github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= +github.com/googleapis/gax-go/v2 v2.1.1/go.mod h1:hddJymUZASv3XPyGkUpKj8pPO47Rmb0eJc8R6ouapiM= +github.com/googleapis/gax-go/v2 v2.2.0/go.mod h1:as02EH8zWkzwUoLbBaFeQ+arQaj/OthfcblKl4IGNaM= +github.com/googleapis/gax-go/v2 v2.3.0/go.mod h1:b8LNqSzNabLiUpXKkY7HAR5jr6bIT99EXz9pXxye9YM= +github.com/googleapis/gax-go/v2 v2.4.0/go.mod h1:XOTVJ59hdnfJLIP/dh8n5CGryZR2LxK9wbMD5+iXC6c= +github.com/googleapis/gax-go/v2 v2.5.1/go.mod h1:h6B0KMMFNtI2ddbGJn3T3ZbwkeT6yqEF02fYlzkUCyo= +github.com/googleapis/gax-go/v2 v2.6.0/go.mod h1:1mjbznJAPHFpesgE5ucqfYEscaz5kMdcIDwU/6+DDoY= +github.com/googleapis/gax-go/v2 v2.7.0/go.mod h1:TEop28CZZQ2y+c0VxMUmu1lV+fQx57QpBWsYpwqHJx8= +github.com/googleapis/gax-go/v2 v2.7.1/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= +github.com/googleapis/go-type-adapters v1.0.0/go.mod h1:zHW75FOG2aur7gAO2B+MLby+cLsWGBF62rFAi7WjWO4= github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= github.com/gorilla/websocket v1.4.1-0.20190629185528-ae1634f6a989/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= @@ -203,6 +805,9 @@ github.com/graph-gophers/graphql-go v0.0.0-20191115155744-f33e81362277/go.mod h1 github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= +github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0/go.mod h1:hgWBS7lorOAVIJEQMi4ZsPv9hVvWI6+ch50m39Pf2Ks= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3/go.mod h1:o//XUCC/F+yRGJoPO/VU0GSB0f8Nhgmxx0VIRUvaC0w= github.com/hashicorp/golang-lru v0.0.0-20160813221303-0a025b7e63ad/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= @@ -210,6 +815,7 @@ github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/huin/goupnp v0.0.0-20161224104101-679507af18f3/go.mod h1:MZ2ZmwcBpvOoJ22IJsc7va19ZwoheaBk43rKg12SKag= +github.com/iancoleman/strcase v0.2.0/go.mod h1:iwCmte+B7n89clKwxIoIXy/HfoL7AsD47ZCWhYzw7ho= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM= @@ -217,20 +823,33 @@ github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANyt github.com/influxdata/influxdb v1.2.3-0.20180221223340-01288bdb0883/go.mod h1:qZna6X/4elxqT3yI9iZYdZrWWdeFOOprn86kgg4+IzY= github.com/jackpal/go-nat-pmp v1.0.2-0.20160603034137-1fa385a6f458/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc= github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= +github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= +github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= github.com/julienschmidt/httprouter v1.1.1-0.20170430222011-975b5c4c7c21/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= +github.com/jung-kurt/gofpdf v1.0.0/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= +github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 h1:uC1QfSlInpQF+M0ao65imhwqKnz3Q2z/d8PWZRMQvDM= +github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88/go.mod h1:3w7q1U84EfirKl04SVQ/s7nPm1ZPhiXd34z40TNz36k= +github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213/go.mod h1:vNUNkEQ1e29fT/6vq2aBdFsgNPmy8qMdSay1npru+Sw= github.com/k0kubun/pp v3.0.1+incompatible h1:3tqvf7QgUnZ5tXO6pNAZlrvHgl6DvifjDrd9g2S9Z40= github.com/k0kubun/pp v3.0.1+incompatible/go.mod h1:GWse8YhT0p8pT4ir3ZgBbfZild3tgzSScAn6HmfYukg= +github.com/k0kubun/pp/v3 v3.2.0/go.mod h1:ODtJQbQcIRfAD3N+theGCV1m/CBxweERz2dapdz1EwA= github.com/karalabe/usb v0.0.0-20190919080040-51dc0efba356/go.mod h1:Od972xHfMJowv7NGVDiWVxk2zxnWgjLlJzE+F4F7AGU= +github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8= +github.com/kevinburke/go-bindata v3.22.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= github.com/kevinburke/go-bindata v3.24.0+incompatible h1:qajFA3D0pH94OTLU4zcCCKCDgR+Zr2cZK/RPJHDdFoY= github.com/kevinburke/go-bindata v3.24.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/klauspost/asmfmt v1.3.2/go.mod h1:AG8TuvYojzulgDAMCnYn50l/5QV3Bs/tp6j0HLHbNSE= +github.com/klauspost/compress v1.15.9/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHUDtV4Yw2GlzU= +github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= github.com/klauspost/cpuid/v2 v2.0.12/go.mod h1:g2LTdtYhdyuGPqyWyv7qRAmj1WBqxuObKfj5c0PQa7c= +github.com/klauspost/cpuid/v2 v2.2.0/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY= github.com/klauspost/cpuid/v2 v2.2.4 h1:acbojRNwl3o09bUq+yDCtZFc1aiwaAAxtcn8YkZXnvk= github.com/klauspost/cpuid/v2 v2.2.4/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY= github.com/konsorten/go-windows-terminal-sequences v1.0.1 h1:mweAR1A6xJ3oS2pRaGiHgQ4OO8tzTaLawm8vnODuwDk= @@ -238,34 +857,55 @@ github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxv github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0= +github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= github.com/leanovate/gopter v0.2.9 h1:fQjYxZaynp97ozCzfOyOuAGOU4aU/z37zf/tOujFk7c= +github.com/leanovate/gopter v0.2.9/go.mod h1:U2L/78B+KVFIx2VmW6onHJQzXtFb+p5y3y2Sh+Jxxv8= github.com/logrusorgru/aurora/v4 v4.0.0 h1:sRjfPpun/63iADiSvGGjgA1cAYegEWMPCJdUpJYn9JA= github.com/logrusorgru/aurora/v4 v4.0.0/go.mod h1:lP0iIa2nrnT/qoFXcOZSrZQpJ1o6n2CUf/hyHi2Q4ZQ= +github.com/lyft/protoc-gen-star v0.6.0/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= +github.com/lyft/protoc-gen-star v0.6.1/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= github.com/magiconair/properties v1.8.0 h1:LLgXmsheXeRoUOBOjtwPQCWIYqM/LU1ayDtDePerRcY= github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= github.com/mattn/go-colorable v0.1.0/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= +github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= +github.com/mattn/go-colorable v0.1.7/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= github.com/mattn/go-ieproxy v0.0.0-20190610004146-91bb50d98149/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= github.com/mattn/go-ieproxy v0.0.0-20190702010315-6dee0af9227d/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= github.com/mattn/go-isatty v0.0.5-0.20180830101745-3fb116b82035/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= +github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= +github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84= +github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= +github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= github.com/mattn/go-isatty v0.0.16 h1:bq3VjFmv/sOjHtdEhmkEV4x1AJtvUvOJ2PFAZ5+peKQ= github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= github.com/mattn/go-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= +github.com/mattn/go-runewidth v0.0.6/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= +github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= +github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= +github.com/mattn/go-sqlite3 v1.14.14/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU= +github.com/mattn/go-tty v0.0.3/go.mod h1:ihxohKRERHTVzN+aSVRwACLCeqIoZAWpoICkkvrWyR0= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= +github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8/go.mod h1:mC1jAcsrzbxHt8iiaC+zU4b1ylILSosueou12R++wfY= +github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3/go.mod h1:RagcQ7I8IeTMnF8JTXieKnO4Z6JCsikNEzj0DwauVzE= +github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db/go.mod h1:l0dey0ia/Uv7NcFFVbCLtqEBQbrT4OCwCSKTEv6enCw= github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/mitchellh/mapstructure v1.1.2 h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE= github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/naoina/go-stringutil v0.1.0/go.mod h1:XJ2SJL9jCtBh+P9q5btrd/Ylo8XwT/h1USek5+NqSA0= github.com/naoina/toml v0.1.2-0.20170918210437-9fafd6967416/go.mod h1:NBIhNtsFMo3G2szEBne+bO4gS192HuIYRqfvOWb4i1E= +github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/olekukonko/tablewriter v0.0.2-0.20190409134802-7e037d187b0c/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= @@ -273,10 +913,14 @@ github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f h1:Z8/PgTqOgOg02MTR github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f/go.mod h1:xvP61FoOs95K7IYdIYRnNcYQGf4nbF/uuJ0tHf4DRuM= github.com/onflow/cadence v0.41.0-stable-cadence.1.0.20230908213403-8f1134670ed0 h1:8Mniwp17wrjLAv/KgCcZ6JH47/EjgCgkX0AXLfSXJEM= github.com/onflow/cadence v0.41.0-stable-cadence.1.0.20230908213403-8f1134670ed0/go.mod h1:Q5Up9Kt+J6zuAFmgrsiKz6t//E/hR5/iuVjH62pdztk= -github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230912230115-25ad6f515ce6 h1:wE5bXFvMKpreQtqesfVdLmb7SrZ+mu5j1+PuTjo8jkg= -github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230912230115-25ad6f515ce6/go.mod h1:tc3I2xIc+ThMUIW2Jkam1pquKpuRDTLGP79INkCGZg4= +github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230915213126-68e7ffb5595f h1:uHRzlxqvV+trNBEqlLstf92lwlkZtNV2ljQetjVCLxo= +github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230915213126-68e7ffb5595f/go.mod h1:tc3I2xIc+ThMUIW2Jkam1pquKpuRDTLGP79INkCGZg4= github.com/onflow/flow-go/crypto v0.24.7 h1:RCLuB83At4z5wkAyUCF7MYEnPoIIOHghJaODuJyEoW0= github.com/onflow/flow-go/crypto v0.24.7/go.mod h1:fqCzkIBBMRRkciVrvW21rECKq1oD7Q6u+bCI78lfNX0= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230915224343-ca2663ed82cf h1:G3RFroB2Aj1d9CyJwl9JcZYWiOF75TB6L84/QSBUPds= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230915224343-ca2663ed82cf/go.mod h1:W7S4wW94sefM+/uAdtrQP1S2I4aVbYJPxWlyNAUT0yI= +github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= +github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= @@ -285,11 +929,18 @@ github.com/pborman/uuid v0.0.0-20170112150404-1b00554d8222/go.mod h1:VyrYX9gd7ir github.com/pelletier/go-toml v1.2.0 h1:T5zMGML61Wp+FlcbWjRDT7yAxhJNAiPPLOFECq181zc= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= github.com/peterh/liner v1.1.1-0.20190123174540-a2c9a5303de7/go.mod h1:CRroGNssyjTd/qIG2FyxByd2S8JEAZXBl4qUrZf8GS0= +github.com/phpdave11/gofpdf v1.4.2/go.mod h1:zpO6xFn9yxo3YLyMvW8HcKWVdbNqgIfOOp2dXMnm1mY= +github.com/phpdave11/gofpdi v1.0.12/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= +github.com/phpdave11/gofpdi v1.0.13/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= +github.com/pierrec/lz4/v4 v4.1.15/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= +github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI= github.com/pkg/sftp v1.13.1/go.mod h1:3HaPG6Dq1ILlpPZRO0HVMrsydcdLt6HRDccSgb87qRg= +github.com/pkg/term v1.1.0/go.mod h1:E25nymQcrSllhX42Ok8MRm1+hyBdHY0dCeiKZ9jpNGw= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= @@ -297,6 +948,7 @@ github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDf github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= @@ -305,24 +957,37 @@ github.com/prometheus/tsdb v0.6.2-0.20190402121629-4f204dcbc150/go.mod h1:qhTCs0 github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= github.com/psiemens/sconfig v0.1.0 h1:xfWqW+TRpih7mXZIqKYTmpRhlZLQ1kbxV8EjllPv76s= github.com/psiemens/sconfig v0.1.0/go.mod h1:+MLKqdledP/8G3rOBpknbLh0IclCf4WneJUtS26JB2U= +github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= +github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= +github.com/rivo/uniseg v0.2.1-0.20211004051800-57c86be7915a/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= github.com/rivo/uniseg v0.4.4 h1:8TfxU8dW6PdqD27gjM8MVNuicgxIjxpm4K7x4jp8sis= github.com/rivo/uniseg v0.4.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= github.com/rjeczalik/notify v0.9.1/go.mod h1:rKwnCoCGeuQnwBtTSPL9Dad03Vh2n40ePRrjvIXnJho= github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= +github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= +github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= +github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= github.com/rs/cors v0.0.0-20160617231935-a62a804a8a00/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= github.com/rs/xhandler v0.0.0-20160618193221-ed27b6fd6521/go.mod h1:RvLn4FgxWubrpZHtQLnOf6EwhN2hEMusxZOhcW9H3UQ= github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= +github.com/ruudk/golang-pdf417 v0.0.0-20181029194003-1af4ab5afa58/go.mod h1:6lfFZQK844Gfx8o5WFuvpxWRwnSoipWe/p622j1v06w= +github.com/ruudk/golang-pdf417 v0.0.0-20201230142125-a7e3863a1245/go.mod h1:pQAZKsJ8yyVxGRWYNEm9oFB8ieLgKFnamEyDmSA0BRk= +github.com/schollz/progressbar/v3 v3.8.3/go.mod h1:pWnVCjSBZsT2X3nx9HfRdnCDrpbevliMeoEVhStwHko= +github.com/sergi/go-diff v1.2.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.2 h1:SPIRibHv4MatM3XXNO2BJeFLZwZ2LvZgfQ5+UNI2im4= +github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spaolacci/murmur3 v1.0.1-0.20190317074736-539464a789e9/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= +github.com/spf13/afero v1.3.3/go.mod h1:5KUK8ByomD5Ti5Artl0RtHeI5pTF7MIDuXL3yY520V4= +github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= github.com/spf13/afero v1.9.2 h1:j49Hj62F0n+DaZ1dDCvhABaPNSGNkt32oRFxI33IEMw= github.com/spf13/afero v1.9.2/go.mod h1:iUV7ddyEEZPO5gA3zD4fJt6iStLlL+Lg4m2cihcDf8Y= github.com/spf13/cast v1.3.0 h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8= @@ -343,18 +1008,27 @@ github.com/steakknife/bloomfilter v0.0.0-20180922174646-6819c0d2a570/go.mod h1:8 github.com/steakknife/hamming v0.0.0-20180906055917-c99c65617cd3/go.mod h1:hpGUWaI9xL8pRQCTXQgocU38Qw1g0Us7n5PxxTwTCYU= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c= +github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= +github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= +github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= github.com/supranational/blst v0.3.10 h1:CMciDZ/h4pXDDXQASe8ZGTNKUiVNxVVA5hpci2Uuhuk= +github.com/supranational/blst v0.3.10/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= github.com/syndtr/goleveldb v1.0.1-0.20190923125748-758128399b1d/go.mod h1:9OrXJhf154huy1nPWmuSrkgjPUtUNhA+Zmy+6AESzuA= github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c h1:HelZ2kAFadG0La9d+4htN4HzQ68Bm2iM9qKMSMES6xg= github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c/go.mod h1:JlzghshsemAMDGZLytTFY8C1JQxQPhnatWqNwUXjggo= +github.com/tidwall/pretty v1.2.1/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU= github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d h1:5JInRQbk5UBX8JfUvKh2oYTLMVwj3p6n+wapDDm7hko= github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d/go.mod h1:Nlx5Y115XQvNcIdIy7dZXaNSUpzwBSge4/Ivk93/Yog= @@ -371,8 +1045,12 @@ github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= +github.com/yuin/goldmark v1.4.1/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= +github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= github.com/zeebo/assert v1.1.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ= +github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= github.com/zeebo/blake3 v0.2.3 h1:TFoLXsjeXqRNFxSbk35Dk4YtszE/MQQGK10BH4ptoTg= github.com/zeebo/blake3 v0.2.3/go.mod h1:mjJjZpnsyIVtVgTOSpJ9vmRE4wgDeyt2HU3qXvvKCaQ= github.com/zeebo/pcg v1.0.1 h1:lyqfGeWiv4ahac6ttHs+I5hwtH/+1mrhlCtVNQM2kHo= @@ -386,10 +1064,18 @@ go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= +go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= +go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= +go.opentelemetry.io/otel v1.8.0/go.mod h1:2pkj+iMj0o03Y+cW6/m8Y4WkRdYN3AvCXCnzRMp9yvM= go.opentelemetry.io/otel v1.14.0 h1:/79Huy8wbf5DnIPhemGB+zEPVwnN6fuQybr/SRXa6hM= go.opentelemetry.io/otel v1.14.0/go.mod h1:o4buv+dJzx8rohcUeRmWUZhqupFvzWis188WlggnNeU= +go.opentelemetry.io/otel/trace v1.8.0/go.mod h1:0Bt3PXY8w+3pheS3hQUt+wow8b1ojPaTBoTCh2zIFI4= +go.opentelemetry.io/otel/trace v1.14.0/go.mod h1:8avnQLK+CG77yNLUae4ea2JDQ6iT+gozhnZjy/rw9G8= +go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= +go.opentelemetry.io/proto/otlp v0.15.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/goleak v1.1.10 h1:z+mqJhf6ss6BSfSM671tgKyZBFPTTJM+HLxnhPC3wu0= +go.uber.org/goleak v1.1.10/go.mod h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A= go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= @@ -397,27 +1083,49 @@ golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnf golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200311171314-f7b00557c8c4/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= +golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw= golang.org/x/crypto v0.7.0 h1:AvwMYaRytfdeVt3u6mLaxYtErKYjxA2OXjJ1HHq6t3A= golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= +golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= +golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= +golang.org/x/exp v0.0.0-20190125153040-c74c464bbbf2/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= +golang.org/x/exp v0.0.0-20191002040644-a1355ae1e2c3/go.mod h1:NOZ3BPKG0ec/BKJQgnvsSFpcKLM5xXVWnvZS97DWHgE= golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= +golang.org/x/exp v0.0.0-20220827204233-334a2380cb91/go.mod h1:cyybsKvd6eL0RnXn6p/Grxp8F5bW7iYuBgsNCOHpMYE= +golang.org/x/exp v0.0.0-20221110155412-d0897a79cd37/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= golang.org/x/exp v0.0.0-20230321023759-10a507213a29 h1:ooxPy7fPvB4kwsA2h+iBNHkAbp/4JxTSwCmvdjEYmug= golang.org/x/exp v0.0.0-20230321023759-10a507213a29/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= +golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/image v0.0.0-20190910094157-69e4b8554b2a/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/image v0.0.0-20200119044424-58c23975cae1/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/image v0.0.0-20200430140353-33d19683fad8/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/image v0.0.0-20200618115811-c13761719519/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/image v0.0.0-20201208152932-35266b937fa6/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/image v0.0.0-20210216034530-4410531fe030/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/image v0.0.0-20210607152325-775e3b0c77b9/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= +golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= +golang.org/x/image v0.0.0-20211028202545-6944b10bf410/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= +golang.org/x/image v0.0.0-20220302094943-723b81ca9867/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= @@ -430,6 +1138,7 @@ golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPI golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 h1:VLliZ0d+/avPrXXH+OakdXhpJuEoBZuwh1m2j7U6Iug= +golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= @@ -440,7 +1149,14 @@ golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.5.0/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= +golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= +golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= +golang.org/x/mod v0.6.0/go.mod h1:4mET923SAdbXp2ki8ey+zGs1SLqsuM2Y0uvdZR/fUNI= +golang.org/x/mod v0.7.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/mod v0.8.0 h1:LUYupSeNrTNCGzR/hVBk2NHZO4hXcVaW1k4Qx7rjPx8= +golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -473,9 +1189,35 @@ golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81R golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= +golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= +golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= +golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220325170049-de3da57026de/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220412020605-290c469a71a5/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220607020251-c690dde0001d/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.0.0-20220617184016-355a448f1bc9/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.0.0-20220909164309-bea034e7d591/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= +golang.org/x/net v0.0.0-20221012135044-0b7e1fb9d458/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= +golang.org/x/net v0.0.0-20221014081412-f15817d10f9b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= +golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco= +golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY= +golang.org/x/net v0.5.0/go.mod h1:DivGGAXEgPSlEBzxGzZI+ZLohi+xUj054jfeKui00ws= +golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= +golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= +golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -485,6 +1227,25 @@ golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= +golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= +golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= +golang.org/x/oauth2 v0.0.0-20220608161450-d0670ef3b1eb/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= +golang.org/x/oauth2 v0.0.0-20220622183110-fd043fe589d2/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= +golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.0.0-20221006150949-b44042a4b9c1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.4.0/go.mod h1:RznEsdpjGAINPTOF0UH/t+xJ75L18YO3Ho6Pyn+uRec= +golang.org/x/oauth2 v0.5.0/go.mod h1:9/XBHVqLaWO3/BRHs5jbpYCnOZVjj5V0ndyaAM7KB4I= +golang.org/x/oauth2 v0.6.0/go.mod h1:ycmewcwgD4Rpr3eZJLSB4Kyyljb3qDh40vJ8STE5HKw= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -495,6 +1256,12 @@ golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -502,17 +1269,22 @@ golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5h golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181205085412-a5c9d58dba9a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -526,33 +1298,94 @@ golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200909081042-eff7692f9009/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200918174421-af09f7315aff/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210304124612-50617c2ba197/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210910150752-751e447fb3d0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211210111614-af8b64212486/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220502124256-b6088ccd6cba/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220624220833-87e55d714810/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220829200755-d48e67d00261/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.4.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= +golang.org/x/term v0.4.0/go.mod h1:9P2UbLfCdcvo3p/nzKvsmas4TnlujnuoV9hGgYzW1lQ= +golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= +golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= +golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= +golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.5.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.6.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.8.0 h1:57P1ETyNKtuIjB4SRd15iJxuhj8Gc416Y78H3qgMh68= golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20220922220347-f3bd1da661af/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.1.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20180525024113-a5b4c53f6e8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190206041539-40960b6deb8e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= @@ -565,7 +1398,9 @@ golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgw golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20190927191325-030b2cf1153e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191108193012-7d206e10da11/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= @@ -593,18 +1428,42 @@ golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20201124115921-2c860bdd6e78/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= +golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.8/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= +golang.org/x/tools v0.1.9/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= +golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= +golang.org/x/tools v0.2.0/go.mod h1:y4OqIKeOV/fWJetJ8bXPU1sEVniLMIyDAZWeHdV+NTA= +golang.org/x/tools v0.3.0/go.mod h1:/rWhSS2+zyEVwoJf8YAX6L2f0ntZ7Kn/mGgAWcipA5k= golang.org/x/tools v0.6.0 h1:BOw41kyTf3PuCW1pVQf8+Cyg8pMlkYB1oo9iJ6D/lKM= +golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= +golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= +gonum.org/v1/gonum v0.0.0-20180816165407-929014505bf4/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo= +gonum.org/v1/gonum v0.6.1/go.mod h1:9mxDZsDKxgMAuccQkewq682L+0eCu4dCN2yonUJTCLU= +gonum.org/v1/gonum v0.8.2/go.mod h1:oe/vMfY3deqTw+1EZJhuvEW2iwGF1bW9wwu7XCu0+v0= +gonum.org/v1/gonum v0.9.3/go.mod h1:TZumC3NeyVQskjXqmyWt4S3bINhy7B4eYwW69EbyX+0= +gonum.org/v1/gonum v0.11.0/go.mod h1:fSG4YDCxxUZQJ7rKsQrj0gMOg00Il0Z96/qMA4bVQhA= +gonum.org/v1/netlib v0.0.0-20190313105609-8cb42192e0e0/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= +gonum.org/v1/plot v0.0.0-20190515093506-e2840ee46a6b/go.mod h1:Wt8AAjI+ypCyYX3nZBvf6cAIx93T+c/OS2HFAYskSZc= +gonum.org/v1/plot v0.9.0/go.mod h1:3Pcqqmp6RHvJI72kgb8fThyUnav364FOsdDo2aGW5lY= +gonum.org/v1/plot v0.10.1/go.mod h1:VZW5OlhkL1mysU9vaqNHnsy86inf6Ot+jB3r+BczCEo= google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= @@ -624,6 +1483,44 @@ google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz513 google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= +google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU= +google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94= +google.golang.org/api v0.47.0/go.mod h1:Wbvgpq1HddcWVtzsVLyfLp8lDg6AA241LmgIL59tHXo= +google.golang.org/api v0.48.0/go.mod h1:71Pr1vy+TAZRPkPs/xlCf5SsU8WjuAWv1Pfjbtukyy4= +google.golang.org/api v0.50.0/go.mod h1:4bNT5pAuq5ji4SRZm+5QIkjny9JAyVD/3gaSihNefaw= +google.golang.org/api v0.51.0/go.mod h1:t4HdrdoNgyN5cbEfm7Lum0lcLDLiise1F8qDKX00sOU= +google.golang.org/api v0.54.0/go.mod h1:7C4bFFOvVDGXjfDTAsgGwDgAxRDeQ4X8NvUedIt6z3k= +google.golang.org/api v0.55.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= +google.golang.org/api v0.56.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= +google.golang.org/api v0.57.0/go.mod h1:dVPlbZyBo2/OjBpmvNdpn2GRm6rPy75jyU7bmhdrMgI= +google.golang.org/api v0.61.0/go.mod h1:xQRti5UdCmoCEqFxcz93fTl338AVqDgyaDRuOZ3hg9I= +google.golang.org/api v0.63.0/go.mod h1:gs4ij2ffTRXwuzzgJl/56BdwJaA194ijkfn++9tDuPo= +google.golang.org/api v0.67.0/go.mod h1:ShHKP8E60yPsKNw/w8w+VYaj9H6buA5UqDp8dhbQZ6g= +google.golang.org/api v0.70.0/go.mod h1:Bs4ZM2HGifEvXwd50TtW70ovgJffJYw2oRCOFU/SkfA= +google.golang.org/api v0.71.0/go.mod h1:4PyU6e6JogV1f9eA4voyrTY2batOLdgZ5qZ5HOCc4j8= +google.golang.org/api v0.74.0/go.mod h1:ZpfMZOVRMywNyvJFeqL9HRWBgAuRfSjJFpe9QtRRyDs= +google.golang.org/api v0.75.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= +google.golang.org/api v0.77.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= +google.golang.org/api v0.78.0/go.mod h1:1Sg78yoMLOhlQTeF+ARBoytAcH1NNyyl390YMy6rKmw= +google.golang.org/api v0.80.0/go.mod h1:xY3nI94gbvBrE0J6NHXhxOmW97HG7Khjkku6AFB3Hyg= +google.golang.org/api v0.84.0/go.mod h1:NTsGnUFJMYROtiquksZHBWtHfeMC7iYthki7Eq3pa8o= +google.golang.org/api v0.85.0/go.mod h1:AqZf8Ep9uZ2pyTvgL+x0D3Zt0eoT9b5E8fmzfu6FO2g= +google.golang.org/api v0.90.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= +google.golang.org/api v0.93.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= +google.golang.org/api v0.95.0/go.mod h1:eADj+UBuxkh5zlrSntJghuNeg8HwQ1w5lTKkuqaETEI= +google.golang.org/api v0.96.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= +google.golang.org/api v0.97.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= +google.golang.org/api v0.98.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= +google.golang.org/api v0.99.0/go.mod h1:1YOf74vkVndF7pG6hIHuINsM7eWwpVTAfNMNiL91A08= +google.golang.org/api v0.100.0/go.mod h1:ZE3Z2+ZOr87Rx7dqFsdRQkRBk36kDtp/h+QpHbB7a70= +google.golang.org/api v0.102.0/go.mod h1:3VFl6/fzoA+qNuS1N1/VfXY4LjoXN/wzeIp7TweWwGo= +google.golang.org/api v0.103.0/go.mod h1:hGtW6nK1AC+d9si/UBhw8Xli+QMOf6xyNAyJw4qU9w0= +google.golang.org/api v0.106.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= +google.golang.org/api v0.107.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= +google.golang.org/api v0.108.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= +google.golang.org/api v0.110.0/go.mod h1:7FC4Vvx1Mooxh8C5HWjzZHcavuS2f6pmJpZx60ca7iI= +google.golang.org/api v0.111.0/go.mod h1:qtFHvU9mhgTJegR31csQ+rwxyUTHOKFqCKWp1J0fdw0= +google.golang.org/api v0.114.0/go.mod h1:ifYI2ZsFK6/uGddGfAD5BMxlnkBqCmqHSDUVi45N5Yg= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -654,6 +1551,7 @@ google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfG google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= @@ -666,7 +1564,97 @@ google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6D google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210108203827-ffc7fda8c3d7/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210226172003-ab064af71705/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210329143202-679c6ae281ee/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= +google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= +google.golang.org/genproto v0.0.0-20210513213006-bf773b8c8384/go.mod h1:P3QM42oQyzQSnHPnZ/vqoCdDmzH28fzWByN9asMeM8A= +google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20210604141403-392c879c8b08/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20210608205507-b6d2f5bf0d7d/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20210624195500-8bfb893ecb84/go.mod h1:SzzZ/N+nwJDaO1kznhnlzqS8ocJICar6hYhVyhi++24= +google.golang.org/genproto v0.0.0-20210713002101-d411969a0d9a/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= +google.golang.org/genproto v0.0.0-20210716133855-ce7ef5c701ea/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= +google.golang.org/genproto v0.0.0-20210728212813-7823e685a01f/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= +google.golang.org/genproto v0.0.0-20210805201207-89edb61ffb67/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= +google.golang.org/genproto v0.0.0-20210813162853-db860fec028c/go.mod h1:cFeNkxwySK631ADgubI+/XFU/xp8FD5KIVV4rj8UC5w= +google.golang.org/genproto v0.0.0-20210821163610-241b8fcbd6c8/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210903162649-d08c68adba83/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210909211513-a8c4777a87af/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211221195035-429b39de9b1c/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20220126215142-9970aeb2e350/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20220207164111-0872dc986b00/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20220218161850-94dd64e39d7c/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220222213610-43724f9ea8cf/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220304144024-325a89244dc8/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220310185008-1973136f34c6/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220324131243-acbaeb5b85eb/go.mod h1:hAL49I2IFola2sVEjAn7MEwsja0xp51I0tlGAf9hz4E= +google.golang.org/genproto v0.0.0-20220329172620-7be39ac1afc7/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220413183235-5e96e2839df9/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220414192740-2d67ff6cf2b4/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220421151946-72621c1f0bd3/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220429170224-98d788798c3e/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220502173005-c8bf987b8c21/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220518221133-4f43b3371335/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220523171625-347a074981d8/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220608133413-ed9918b62aac/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220616135557-88e70c0c3a90/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220617124728-180714bec0ad/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220624142145-8cd45d7dbd1f/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220628213854-d9e0b6570c03/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220722212130-b98a9ff5e252/go.mod h1:GkXuJDJ6aQ7lnJcRF+SJVgFdQhypqgl3LB1C9vabdRE= +google.golang.org/genproto v0.0.0-20220801145646-83ce21fca29f/go.mod h1:iHe1svFLAZg9VWz891+QbRMwUv9O/1Ww+/mngYeThbc= +google.golang.org/genproto v0.0.0-20220815135757-37a418bb8959/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220817144833-d7fd3f11b9b1/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220822174746-9e6da59bd2fc/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220829144015-23454907ede3/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220829175752-36a9c930ecbf/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220913154956-18f8339a66a5/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220914142337-ca0e39ece12f/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220915135415-7fd63a7952de/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220916172020-2692e8806bfa/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220919141832-68c03719ef51/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220920201722-2b89144ce006/go.mod h1:ht8XFiar2npT/g4vkk7O0WYS1sHOHbdujxbEp7CJWbw= +google.golang.org/genproto v0.0.0-20220926165614-551eb538f295/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI= +google.golang.org/genproto v0.0.0-20220926220553-6981cbe3cfce/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI= +google.golang.org/genproto v0.0.0-20221010155953-15ba04fc1c0e/go.mod h1:3526vdqwhZAwq4wsRUaVG555sVgsNmIjRtO7t/JH29U= +google.golang.org/genproto v0.0.0-20221014173430-6e2ab493f96b/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= +google.golang.org/genproto v0.0.0-20221014213838-99cd37c6964a/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= +google.golang.org/genproto v0.0.0-20221024153911-1573dae28c9c/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= +google.golang.org/genproto v0.0.0-20221024183307-1bc688fe9f3e/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= +google.golang.org/genproto v0.0.0-20221027153422-115e99e71e1c/go.mod h1:CGI5F/G+E5bKwmfYo09AXuVN4dD894kIKUFmVbP2/Fo= +google.golang.org/genproto v0.0.0-20221109142239-94d6d90a7d66/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= +google.golang.org/genproto v0.0.0-20221114212237-e4508ebdbee1/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= +google.golang.org/genproto v0.0.0-20221117204609-8f9c96812029/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= +google.golang.org/genproto v0.0.0-20221118155620-16455021b5e6/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= +google.golang.org/genproto v0.0.0-20221201164419-0e50fba7f41c/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= +google.golang.org/genproto v0.0.0-20221201204527-e3fa12d562f3/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= +google.golang.org/genproto v0.0.0-20221202195650-67e5cbc046fd/go.mod h1:cTsE614GARnxrLsqKREzmNYJACSWWpAWdNMwnD7c2BE= +google.golang.org/genproto v0.0.0-20221227171554-f9683d7f8bef/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230112194545-e10362b5ecf9/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230113154510-dbe35b8444a5/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230123190316-2c411cf9d197/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230124163310-31e0e69b6fc2/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230125152338-dcaf20b6aeaa/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230127162408-596548ed4efa/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230209215440-0dfe4f8abfcc/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230216225411-c8e22ba71e44/go.mod h1:8B0gmkoRebU8ukX6HP+4wrVQUY1+6PkQ44BSyIlflHA= +google.golang.org/genproto v0.0.0-20230222225845-10f96fb3dbec/go.mod h1:3Dl5ZL0q0isWJt+FVcfpQyirqemEuLAK/iFvg1UP1Hw= +google.golang.org/genproto v0.0.0-20230223222841-637eb2293923/go.mod h1:3Dl5ZL0q0isWJt+FVcfpQyirqemEuLAK/iFvg1UP1Hw= +google.golang.org/genproto v0.0.0-20230303212802-e74f57abe488/go.mod h1:TvhZT5f700eVlTNwND1xoEZQeWTB2RY/65kplwl/bFA= +google.golang.org/genproto v0.0.0-20230306155012-7f2fa6fef1f4/go.mod h1:NWraEVixdDnqcqQ30jipen1STv2r/n24Wb7twVTGR4s= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= @@ -681,9 +1669,32 @@ google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3Iji google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= google.golang.org/grpc v1.31.1/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0= google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/grpc v1.37.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.37.1/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= +google.golang.org/grpc v1.39.1/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= +google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= +google.golang.org/grpc v1.40.1/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= +google.golang.org/grpc v1.42.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= +google.golang.org/grpc v1.44.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= +google.golang.org/grpc v1.45.0/go.mod h1:lN7owxKUQEqMfSyQikvvk5tf/6zMPsrK+ONuO11+0rQ= +google.golang.org/grpc v1.46.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.46.2/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.47.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.48.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.49.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= +google.golang.org/grpc v1.50.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= +google.golang.org/grpc v1.50.1/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= +google.golang.org/grpc v1.51.0/go.mod h1:wgNDFcnuBGmxLKI/qn4T+m5BtEBYXJPvibbUPsAIPww= +google.golang.org/grpc v1.53.0/go.mod h1:OnIrk0ipVdj4N5d9IUoFUx72/VlD7+jUsHwZgwSMQpw= +google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= @@ -694,20 +1705,34 @@ google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2 google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= +google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.29.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce/go.mod h1:5AcXVHNjg+BDxry382+8OKon8SEWiKktQR07RKPsv1c= gopkg.in/olebedev/go-duktape.v3 v3.0.0-20200316214253-d7b0ff38cac9/go.mod h1:uAJfkITjFhyEEuUfm7bsmCZRbW5WRq8s9EY8HZ6hCns= gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= +gopkg.in/src-d/go-billy.v4 v4.3.2/go.mod h1:nDjArDMp+XMs1aFAESLRjfGSgfvoYN0hDfzEk0GjC98= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= gopkg.in/urfave/cli.v1 v1.20.0/go.mod h1:vuBzUtMdQeixQj8LVd+/98pzhxNGQoyuPBlsXHOQNO0= gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= @@ -721,8 +1746,46 @@ honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWh honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= +honnef.co/go/tools v0.1.3/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las= lukechampine.com/blake3 v1.1.7 h1:GgRMhmdsuK8+ii6UZFDL8Nb+VyMwadAgcJyfYHxG6n0= +lukechampine.com/blake3 v1.1.7/go.mod h1:tkKEOtDkNtklkXtLNEOGNq5tcV90tJiA1vAA12R78LA= +lukechampine.com/uint128 v1.1.1/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= +lukechampine.com/uint128 v1.2.0/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= +modernc.org/cc/v3 v3.36.0/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= +modernc.org/cc/v3 v3.36.2/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= +modernc.org/cc/v3 v3.36.3/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= +modernc.org/ccgo/v3 v3.0.0-20220428102840-41399a37e894/go.mod h1:eI31LL8EwEBKPpNpA4bU1/i+sKOwOrQy8D87zWUcRZc= +modernc.org/ccgo/v3 v3.0.0-20220430103911-bc99d88307be/go.mod h1:bwdAnOoaIt8Ax9YdWGjxWsdkPcZyRPHqrOvJxaKAKGw= +modernc.org/ccgo/v3 v3.16.4/go.mod h1:tGtX0gE9Jn7hdZFeU88slbTh1UtCYKusWOoCJuvkWsQ= +modernc.org/ccgo/v3 v3.16.6/go.mod h1:tGtX0gE9Jn7hdZFeU88slbTh1UtCYKusWOoCJuvkWsQ= +modernc.org/ccgo/v3 v3.16.8/go.mod h1:zNjwkizS+fIFDrDjIAgBSCLkWbJuHF+ar3QRn+Z9aws= +modernc.org/ccgo/v3 v3.16.9/go.mod h1:zNMzC9A9xeNUepy6KuZBbugn3c0Mc9TeiJO4lgvkJDo= +modernc.org/ccorpus v1.11.6/go.mod h1:2gEUTrWqdpH2pXsmTM1ZkjeSrUWDpjMu2T6m29L/ErQ= +modernc.org/httpfs v1.0.6/go.mod h1:7dosgurJGp0sPaRanU53W4xZYKh14wfzX420oZADeHM= +modernc.org/libc v0.0.0-20220428101251-2d5f3daf273b/go.mod h1:p7Mg4+koNjc8jkqwcoFBJx7tXkpj00G77X7A72jXPXA= +modernc.org/libc v1.16.0/go.mod h1:N4LD6DBE9cf+Dzf9buBlzVJndKr/iJHG97vGLHYnb5A= +modernc.org/libc v1.16.1/go.mod h1:JjJE0eu4yeK7tab2n4S1w8tlWd9MxXLRzheaRnAKymU= +modernc.org/libc v1.16.17/go.mod h1:hYIV5VZczAmGZAnG15Vdngn5HSF5cSkbvfz2B7GRuVU= +modernc.org/libc v1.16.19/go.mod h1:p7Mg4+koNjc8jkqwcoFBJx7tXkpj00G77X7A72jXPXA= +modernc.org/libc v1.17.0/go.mod h1:XsgLldpP4aWlPlsjqKRdHPqCxCjISdHfM/yeWC5GyW0= +modernc.org/libc v1.17.1/go.mod h1:FZ23b+8LjxZs7XtFMbSzL/EhPxNbfZbErxEHc7cbD9s= +modernc.org/mathutil v1.2.2/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= +modernc.org/mathutil v1.4.1/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= +modernc.org/mathutil v1.5.0/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= +modernc.org/memory v1.1.1/go.mod h1:/0wo5ibyrQiaoUoH7f9D8dnglAmILJ5/cxZlRECf+Nw= +modernc.org/memory v1.2.0/go.mod h1:/0wo5ibyrQiaoUoH7f9D8dnglAmILJ5/cxZlRECf+Nw= +modernc.org/memory v1.2.1/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= +modernc.org/opt v0.1.1/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0= +modernc.org/opt v0.1.3/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0= +modernc.org/sqlite v1.18.1/go.mod h1:6ho+Gow7oX5V+OiOQ6Tr4xeqbx13UZ6t+Fw9IRUG4d4= +modernc.org/strutil v1.1.1/go.mod h1:DE+MQQ/hjKBZS2zNInV5hhcipt5rLPWkmpbGeW5mmdw= +modernc.org/strutil v1.1.3/go.mod h1:MEHNA7PdEnEwLvspRMtWTNnp2nnyvMfkimT1NKNAGbw= +modernc.org/tcl v1.13.1/go.mod h1:XOLfOwzhkljL4itZkK6T72ckMgvj0BDsnKNdZVUOecw= +modernc.org/token v1.0.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= +modernc.org/z v1.5.1/go.mod h1:eWFB510QWW5Th9YGZT81s+LwvaAs3Q2yr4sP0rmLkv8= pgregory.net/rapid v0.4.7 h1:MTNRktPuv5FNqOO151TM9mDTa+XHcX6ypYeISDVD14g= +pgregory.net/rapid v0.4.7/go.mod h1:UYpPVyjFHzYBGHIxLFoupi8vwk6rXNzRY9OMvVxFIOU= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= +rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= From 1cf8b4c4a5408133329e6d832b7b35a62c168a29 Mon Sep 17 00:00:00 2001 From: Supun Setunga Date: Mon, 18 Sep 2023 16:05:20 -0700 Subject: [PATCH 049/160] Fix publish_voter transaction --- lib/go/templates/internal/assets/assets.go | 6 +++--- transactions/quorumCertificate/admin/publish_voter.cdc | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 1aa259990..bebd25b27 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -217,7 +217,7 @@ // nodeVersionBeacon/scripts/get_next_version_update_sequence.cdc (214B) // nodeVersionBeacon/scripts/get_version_boundaries.cdc (301B) // nodeVersionBeacon/scripts/get_version_boundary_freeze_period.cdc (329B) -// quorumCertificate/admin/publish_voter.cdc (405B) +// quorumCertificate/admin/publish_voter.cdc (407B) // quorumCertificate/admin/start_voting.cdc (1.518kB) // quorumCertificate/admin/stop_voting.cdc (377B) // quorumCertificate/create_voter.cdc (1.123kB) @@ -4694,7 +4694,7 @@ func nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdc() (*asset, er return a, nil } -var _quorumcertificateAdminPublish_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\x39\x05\x07\x8a\xdd\x73\x68\x0b\x41\x69\xcf\x75\xd3\x1f\xd8\xb8\x1b\x5b\x20\x6b\xcd\x6a\x9d\x14\x42\xfe\xbd\xd8\xa6\x25\x85\xe8\x28\xf6\xbd\x19\x26\xf4\x83\xa8\xe1\x2d\xca\xd9\xc7\x31\x1b\x6b\xed\x71\x54\xe9\xf1\xf8\x5d\xfb\xed\x6e\xf7\xf1\xba\xdf\x3b\x57\x55\xf8\xe4\x6c\x30\xa5\x94\xa9\xb1\x20\x09\x47\x51\x58\xc7\xa8\x3d\xe8\xab\x0f\x09\x26\x18\xc6\x43\x0c\xb9\x03\x41\xf9\xc8\xca\xa9\xe1\x89\xb5\x8e\x0c\x14\xa3\x9c\x33\xa8\x69\x64\x4c\x96\xa7\x73\xe5\x36\x4c\x99\xb3\xab\xf6\x38\x89\x85\xd4\x3a\x77\x1b\x73\x71\x0e\x00\x06\xe5\x81\x94\x8b\x1c\xda\xc4\xba\x01\x8d\xd6\x15\x9e\x06\x3a\x84\x18\x2c\x70\x5e\x63\xb5\x5d\xd4\x6b\x5c\x66\x64\x7a\x91\x6d\x69\xe7\x69\xc0\x33\x16\xba\x6c\x6e\xb8\x32\x9b\x28\xb5\x5c\x86\x9c\x47\x7e\x5a\xfd\x9b\xa2\xdc\x4e\xec\x4b\x71\xe7\x73\xbf\x60\xef\x64\xdd\xfa\x2f\xee\x9e\x7f\xf6\x16\xbf\x25\x1e\x40\xb6\x41\x35\x0f\xd5\x54\x27\x31\x56\xaf\x4c\x26\xba\x58\xae\xee\xea\x7e\x02\x00\x00\xff\xff\x92\x6c\x90\x41\x95\x01\x00\x00" +var _quorumcertificateAdminPublish_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x6a\xf3\x30\x10\x84\xef\x7a\x8a\x39\x05\x07\x7e\xec\xff\x1c\xda\x42\x50\xda\x73\xdd\xf4\x05\x36\xee\xc6\x16\x28\x5a\xb1\x5a\x27\x85\x90\x77\x2f\x8e\xdb\x92\x42\x74\x5c\xf4\x7d\x33\x4c\x38\x64\x51\xc3\x4b\x94\x93\x8f\x63\x31\xd6\xd6\x63\xaf\x72\xc0\xff\xcf\xd6\xaf\x37\x9b\xb7\xe7\xed\xd6\xb9\xa6\xc1\x3b\x17\x83\x29\xa5\x42\x9d\x05\x49\xd8\x8b\xc2\x06\x46\xeb\x41\x1f\x87\x90\x60\x82\x3c\xee\x62\x28\x03\x08\xca\x7b\x56\x4e\x1d\x4f\xac\x0d\x64\xa0\x18\xe5\x54\x40\x5d\x27\x63\xb2\x32\x7d\x57\xee\xc3\x94\x79\x75\xb5\x1e\x47\xb1\x90\x7a\xe7\x6e\x63\xce\xce\x01\x40\x56\xce\xa4\x5c\x95\xd0\x27\xd6\x15\x68\xb4\xa1\xf2\x94\x69\x17\x62\xb0\xc0\x65\x89\xc5\x7a\x56\x2f\x71\xbe\x22\xd3\x8b\x6c\x73\x3b\x4f\x19\x8f\x98\xe9\xba\xbb\xe1\xea\x62\xa2\xd4\x73\x1d\x4a\x19\xf9\x61\xf1\x67\x8a\x7a\x3d\xb1\x4f\xd5\x9d\xe3\x76\xc6\x5e\xc9\x86\xe5\x6f\xdc\x3d\xff\xf7\x26\xd5\x4f\x8d\x7f\x20\x5b\xa1\xb9\x9e\xbb\xe6\x28\xc6\xea\x95\xc9\x44\x67\xcf\xc5\x5d\xdc\x57\x00\x00\x00\xff\xff\xdd\x2c\xc9\x3f\x97\x01\x00\x00" func quorumcertificateAdminPublish_voterCdcBytes() ([]byte, error) { return bindataRead( @@ -4710,7 +4710,7 @@ func quorumcertificateAdminPublish_voterCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/admin/publish_voter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa1, 0x35, 0xf1, 0x8e, 0x29, 0x89, 0xb7, 0xe7, 0x89, 0x42, 0x6c, 0xcc, 0x99, 0x60, 0x5e, 0xdc, 0xfa, 0x96, 0xb7, 0xe7, 0xa0, 0x44, 0xf6, 0xdc, 0xc1, 0xd3, 0xb5, 0xa8, 0xb8, 0x18, 0xc1, 0xf4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0x38, 0x19, 0x4d, 0xca, 0xfd, 0x2d, 0xde, 0x32, 0x79, 0x40, 0x23, 0x2e, 0xde, 0xe9, 0xcf, 0x59, 0x38, 0xa9, 0x87, 0x36, 0xa0, 0xb9, 0x3d, 0xed, 0x98, 0xe0, 0xa0, 0xe, 0x43, 0xc0, 0x3f}} return a, nil } diff --git a/transactions/quorumCertificate/admin/publish_voter.cdc b/transactions/quorumCertificate/admin/publish_voter.cdc index b0c8e1845..dffdd0cc7 100644 --- a/transactions/quorumCertificate/admin/publish_voter.cdc +++ b/transactions/quorumCertificate/admin/publish_voter.cdc @@ -7,6 +7,6 @@ transaction { prepare(signer: auth(Capabilities) &Account) { let adminCap = signer.capabilities.storage.issue<&FlowClusterQC.Admin>(FlowClusterQC.AdminStoragePath) - signer.capabilities.issue(adminCap, at: /public/voterCreator) + signer.capabilities.publish(adminCap, at: /public/voterCreator) } } From 0aef25b8118ae70e1ec1fc6042c0b966dc2d33d0 Mon Sep 17 00:00:00 2001 From: Supun Setunga Date: Wed, 20 Sep 2023 22:58:00 -0700 Subject: [PATCH 050/160] Update to Cadence v1.0.0-preview.1 --- lib/go/contracts/go.mod | 8 +- lib/go/contracts/go.sum | 16 +- lib/go/templates/go.mod | 5 +- lib/go/templates/go.sum | 1070 +-------------------------------------- 4 files changed, 16 insertions(+), 1083 deletions(-) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index f75f92136..114c5bd7e 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -4,9 +4,9 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230913160646-09adc7d3b513 - github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230915213126-68e7ffb5595f - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230915224343-ca2663ed82cf + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230921055403-cf7a05c90c20 + github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2 + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230921055127-6493dc1ba948 github.com/stretchr/testify v1.8.4 ) @@ -26,7 +26,7 @@ require ( github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-isatty v0.0.16 // indirect github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f // indirect - github.com/onflow/cadence v0.41.0-stable-cadence.1.0.20230908213403-8f1134670ed0 // indirect + github.com/onflow/cadence v1.0.0-preview.1 // indirect github.com/onflow/flow-go/crypto v0.24.7 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index d78e575b0..414e77648 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -879,18 +879,14 @@ github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXW github.com/olekukonko/tablewriter v0.0.2-0.20190409134802-7e037d187b0c/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f h1:Z8/PgTqOgOg02MTRpTBYO2k16FE6z4wEOtaC2WBR9Xo= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f/go.mod h1:xvP61FoOs95K7IYdIYRnNcYQGf4nbF/uuJ0tHf4DRuM= -github.com/onflow/cadence v0.41.0-stable-cadence.1.0.20230908213403-8f1134670ed0 h1:8Mniwp17wrjLAv/KgCcZ6JH47/EjgCgkX0AXLfSXJEM= -github.com/onflow/cadence v0.41.0-stable-cadence.1.0.20230908213403-8f1134670ed0/go.mod h1:Q5Up9Kt+J6zuAFmgrsiKz6t//E/hR5/iuVjH62pdztk= -github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230915213126-68e7ffb5595f h1:uHRzlxqvV+trNBEqlLstf92lwlkZtNV2ljQetjVCLxo= -github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230915213126-68e7ffb5595f/go.mod h1:tc3I2xIc+ThMUIW2Jkam1pquKpuRDTLGP79INkCGZg4= +github.com/onflow/cadence v1.0.0-preview.1 h1:Y/q/43aDc93/1Atsxx3+e2V/dZiQuF1TqkXEVboA5pY= +github.com/onflow/cadence v1.0.0-preview.1/go.mod h1:Q5Up9Kt+J6zuAFmgrsiKz6t//E/hR5/iuVjH62pdztk= +github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2 h1:vUVO6m85BiT8c50Oc8YGc3CU+sGqiKW9FZbmiRph2dU= +github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2/go.mod h1:mbLrR3MkYbi9LH3yasDj1jrR4QTR8vjRLVFCm4jMHn0= github.com/onflow/flow-go/crypto v0.24.7 h1:RCLuB83At4z5wkAyUCF7MYEnPoIIOHghJaODuJyEoW0= github.com/onflow/flow-go/crypto v0.24.7/go.mod h1:fqCzkIBBMRRkciVrvW21rECKq1oD7Q6u+bCI78lfNX0= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230915222202-4dee9fd6747c h1:wArXSVerXQGcU1a9YVayboC6uRZKhxeCSl32Cg+PBDk= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230915222202-4dee9fd6747c/go.mod h1:W7S4wW94sefM+/uAdtrQP1S2I4aVbYJPxWlyNAUT0yI= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230915223733-2538c2a99027 h1:G+vstwzqybcdlJaGbtFI6SrstakjoCjvagdy8OVlwzk= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230915223733-2538c2a99027/go.mod h1:W7S4wW94sefM+/uAdtrQP1S2I4aVbYJPxWlyNAUT0yI= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230915224343-ca2663ed82cf h1:G3RFroB2Aj1d9CyJwl9JcZYWiOF75TB6L84/QSBUPds= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230915224343-ca2663ed82cf/go.mod h1:W7S4wW94sefM+/uAdtrQP1S2I4aVbYJPxWlyNAUT0yI= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230921055127-6493dc1ba948 h1:eQ+0hagtIcxzTy+6ONrxwABCjJQCQmBFfIU5qatUg0o= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230921055127-6493dc1ba948/go.mod h1:cWMAsK1grBHKPIKxYVUv2rX+Nz0Ttq+PEQz4OjqCmpU= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= diff --git a/lib/go/templates/go.mod b/lib/go/templates/go.mod index 5d08f5a7d..6a81e8798 100644 --- a/lib/go/templates/go.mod +++ b/lib/go/templates/go.mod @@ -4,8 +4,8 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.24.0+incompatible - github.com/onflow/cadence v0.41.0-stable-cadence.1.0.20230908213403-8f1134670ed0 - github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230915213126-68e7ffb5595f + github.com/onflow/cadence v1.0.0-preview.1 + github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2 github.com/psiemens/sconfig v0.1.0 github.com/spf13/cobra v1.5.0 ) @@ -33,7 +33,6 @@ require ( github.com/mitchellh/mapstructure v1.1.2 // indirect github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f // indirect github.com/onflow/flow-go/crypto v0.24.7 // indirect - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230915224343-ca2663ed82cf // indirect github.com/pelletier/go-toml v1.2.0 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index 59d5eb7cd..d72c17b9a 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -17,509 +17,25 @@ cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHOb cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPTY= -cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg= -cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8= -cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0= -cloud.google.com/go v0.83.0/go.mod h1:Z7MJUsANfY0pYPdw0lbnivPx4/vhy/e2FEkSkF7vAVY= -cloud.google.com/go v0.84.0/go.mod h1:RazrYuxIK6Kb7YrzzhPoLmCVzl7Sup4NrbKPg8KHSUM= -cloud.google.com/go v0.87.0/go.mod h1:TpDYlFy7vuLzZMMZ+B6iRiELaY7z/gJPaqbMx6mlWcY= -cloud.google.com/go v0.90.0/go.mod h1:kRX0mNRHe0e2rC6oNakvwQqzyDmg57xJ+SZU1eT2aDQ= -cloud.google.com/go v0.93.3/go.mod h1:8utlLll2EF5XMAV15woO4lSbWQlk8rer9aLOfLh7+YI= -cloud.google.com/go v0.94.1/go.mod h1:qAlAugsXlC+JWO+Bke5vCtc9ONxjQT3drlTTnAplMW4= -cloud.google.com/go v0.97.0/go.mod h1:GF7l59pYBVlXQIBLx3a761cZ41F9bBH3JUlihCt2Udc= -cloud.google.com/go v0.99.0/go.mod h1:w0Xx2nLzqWJPuozYQX+hFfCSI8WioryfRDzkoI/Y2ZA= -cloud.google.com/go v0.100.1/go.mod h1:fs4QogzfH5n2pBXBP9vRiU+eCny7lD2vmFZy79Iuw1U= -cloud.google.com/go v0.100.2/go.mod h1:4Xra9TjzAeYHrl5+oeLlzbM2k3mjVhZh4UqTZ//w99A= -cloud.google.com/go v0.102.0/go.mod h1:oWcCzKlqJ5zgHQt9YsaeTY9KzIvjyy0ArmiBUgpQ+nc= -cloud.google.com/go v0.102.1/go.mod h1:XZ77E9qnTEnrgEOvr4xzfdX5TRo7fB4T2F4O6+34hIU= -cloud.google.com/go v0.104.0/go.mod h1:OO6xxXdJyvuJPcEPBLN9BJPD+jep5G1+2U5B5gkRYtA= -cloud.google.com/go v0.105.0/go.mod h1:PrLgOJNe5nfE9UMxKxgXj4mD3voiP+YQ6gdt6KMFOKM= -cloud.google.com/go v0.107.0/go.mod h1:wpc2eNrD7hXUTy8EKS10jkxpZBjASrORK7goS+3YX2I= -cloud.google.com/go v0.110.0/go.mod h1:SJnCLqQ0FCFGSZMUNUf84MV3Aia54kn7pi8st7tMzaY= -cloud.google.com/go/accessapproval v1.4.0/go.mod h1:zybIuC3KpDOvotz59lFe5qxRZx6C75OtwbisN56xYB4= -cloud.google.com/go/accessapproval v1.5.0/go.mod h1:HFy3tuiGvMdcd/u+Cu5b9NkO1pEICJ46IR82PoUdplw= -cloud.google.com/go/accessapproval v1.6.0/go.mod h1:R0EiYnwV5fsRFiKZkPHr6mwyk2wxUJ30nL4j2pcFY2E= -cloud.google.com/go/accesscontextmanager v1.3.0/go.mod h1:TgCBehyr5gNMz7ZaH9xubp+CE8dkrszb4oK9CWyvD4o= -cloud.google.com/go/accesscontextmanager v1.4.0/go.mod h1:/Kjh7BBu/Gh83sv+K60vN9QE5NJcd80sU33vIe2IFPE= -cloud.google.com/go/accesscontextmanager v1.6.0/go.mod h1:8XCvZWfYw3K/ji0iVnp+6pu7huxoQTLmxAbVjbloTtM= -cloud.google.com/go/aiplatform v1.22.0/go.mod h1:ig5Nct50bZlzV6NvKaTwmplLLddFx0YReh9WfTO5jKw= -cloud.google.com/go/aiplatform v1.24.0/go.mod h1:67UUvRBKG6GTayHKV8DBv2RtR1t93YRu5B1P3x99mYY= -cloud.google.com/go/aiplatform v1.27.0/go.mod h1:Bvxqtl40l0WImSb04d0hXFU7gDOiq9jQmorivIiWcKg= -cloud.google.com/go/aiplatform v1.35.0/go.mod h1:7MFT/vCaOyZT/4IIFfxH4ErVg/4ku6lKv3w0+tFTgXQ= -cloud.google.com/go/analytics v0.11.0/go.mod h1:DjEWCu41bVbYcKyvlws9Er60YE4a//bK6mnhWvQeFNI= -cloud.google.com/go/analytics v0.12.0/go.mod h1:gkfj9h6XRf9+TS4bmuhPEShsh3hH8PAZzm/41OOhQd4= -cloud.google.com/go/analytics v0.17.0/go.mod h1:WXFa3WSym4IZ+JiKmavYdJwGG/CvpqiqczmL59bTD9M= -cloud.google.com/go/analytics v0.18.0/go.mod h1:ZkeHGQlcIPkw0R/GW+boWHhCOR43xz9RN/jn7WcqfIE= -cloud.google.com/go/apigateway v1.3.0/go.mod h1:89Z8Bhpmxu6AmUxuVRg/ECRGReEdiP3vQtk4Z1J9rJk= -cloud.google.com/go/apigateway v1.4.0/go.mod h1:pHVY9MKGaH9PQ3pJ4YLzoj6U5FUDeDFBllIz7WmzJoc= -cloud.google.com/go/apigateway v1.5.0/go.mod h1:GpnZR3Q4rR7LVu5951qfXPJCHquZt02jf7xQx7kpqN8= -cloud.google.com/go/apigeeconnect v1.3.0/go.mod h1:G/AwXFAKo0gIXkPTVfZDd2qA1TxBXJ3MgMRBQkIi9jc= -cloud.google.com/go/apigeeconnect v1.4.0/go.mod h1:kV4NwOKqjvt2JYR0AoIWo2QGfoRtn/pkS3QlHp0Ni04= -cloud.google.com/go/apigeeconnect v1.5.0/go.mod h1:KFaCqvBRU6idyhSNyn3vlHXc8VMDJdRmwDF6JyFRqZ8= -cloud.google.com/go/apigeeregistry v0.4.0/go.mod h1:EUG4PGcsZvxOXAdyEghIdXwAEi/4MEaoqLMLDMIwKXY= -cloud.google.com/go/apigeeregistry v0.5.0/go.mod h1:YR5+s0BVNZfVOUkMa5pAR2xGd0A473vA5M7j247o1wM= -cloud.google.com/go/apikeys v0.4.0/go.mod h1:XATS/yqZbaBK0HOssf+ALHp8jAlNHUgyfprvNcBIszU= -cloud.google.com/go/apikeys v0.5.0/go.mod h1:5aQfwY4D+ewMMWScd3hm2en3hCj+BROlyrt3ytS7KLI= -cloud.google.com/go/appengine v1.4.0/go.mod h1:CS2NhuBuDXM9f+qscZ6V86m1MIIqPj3WC/UoEuR1Sno= -cloud.google.com/go/appengine v1.5.0/go.mod h1:TfasSozdkFI0zeoxW3PTBLiNqRmzraodCWatWI9Dmak= -cloud.google.com/go/appengine v1.6.0/go.mod h1:hg6i0J/BD2cKmDJbaFSYHFyZkgBEfQrDg/X0V5fJn84= -cloud.google.com/go/area120 v0.5.0/go.mod h1:DE/n4mp+iqVyvxHN41Vf1CR602GiHQjFPusMFW6bGR4= -cloud.google.com/go/area120 v0.6.0/go.mod h1:39yFJqWVgm0UZqWTOdqkLhjoC7uFfgXRC8g/ZegeAh0= -cloud.google.com/go/area120 v0.7.0/go.mod h1:a3+8EUD1SX5RUcCs3MY5YasiO1z6yLiNLRiFrykbynY= -cloud.google.com/go/area120 v0.7.1/go.mod h1:j84i4E1RboTWjKtZVWXPqvK5VHQFJRF2c1Nm69pWm9k= -cloud.google.com/go/artifactregistry v1.6.0/go.mod h1:IYt0oBPSAGYj/kprzsBjZ/4LnG/zOcHyFHjWPCi6SAQ= -cloud.google.com/go/artifactregistry v1.7.0/go.mod h1:mqTOFOnGZx8EtSqK/ZWcsm/4U8B77rbcLP6ruDU2Ixk= -cloud.google.com/go/artifactregistry v1.8.0/go.mod h1:w3GQXkJX8hiKN0v+at4b0qotwijQbYUqF2GWkZzAhC0= -cloud.google.com/go/artifactregistry v1.9.0/go.mod h1:2K2RqvA2CYvAeARHRkLDhMDJ3OXy26h3XW+3/Jh2uYc= -cloud.google.com/go/artifactregistry v1.11.1/go.mod h1:lLYghw+Itq9SONbCa1YWBoWs1nOucMH0pwXN1rOBZFI= -cloud.google.com/go/artifactregistry v1.11.2/go.mod h1:nLZns771ZGAwVLzTX/7Al6R9ehma4WUEhZGWV6CeQNQ= -cloud.google.com/go/asset v1.5.0/go.mod h1:5mfs8UvcM5wHhqtSv8J1CtxxaQq3AdBxxQi2jGW/K4o= -cloud.google.com/go/asset v1.7.0/go.mod h1:YbENsRK4+xTiL+Ofoj5Ckf+O17kJtgp3Y3nn4uzZz5s= -cloud.google.com/go/asset v1.8.0/go.mod h1:mUNGKhiqIdbr8X7KNayoYvyc4HbbFO9URsjbytpUaW0= -cloud.google.com/go/asset v1.9.0/go.mod h1:83MOE6jEJBMqFKadM9NLRcs80Gdw76qGuHn8m3h8oHQ= -cloud.google.com/go/asset v1.10.0/go.mod h1:pLz7uokL80qKhzKr4xXGvBQXnzHn5evJAEAtZiIb0wY= -cloud.google.com/go/asset v1.11.1/go.mod h1:fSwLhbRvC9p9CXQHJ3BgFeQNM4c9x10lqlrdEUYXlJo= -cloud.google.com/go/assuredworkloads v1.5.0/go.mod h1:n8HOZ6pff6re5KYfBXcFvSViQjDwxFkAkmUFffJRbbY= -cloud.google.com/go/assuredworkloads v1.6.0/go.mod h1:yo2YOk37Yc89Rsd5QMVECvjaMKymF9OP+QXWlKXUkXw= -cloud.google.com/go/assuredworkloads v1.7.0/go.mod h1:z/736/oNmtGAyU47reJgGN+KVoYoxeLBoj4XkKYscNI= -cloud.google.com/go/assuredworkloads v1.8.0/go.mod h1:AsX2cqyNCOvEQC8RMPnoc0yEarXQk6WEKkxYfL6kGIo= -cloud.google.com/go/assuredworkloads v1.9.0/go.mod h1:kFuI1P78bplYtT77Tb1hi0FMxM0vVpRC7VVoJC3ZoT0= -cloud.google.com/go/assuredworkloads v1.10.0/go.mod h1:kwdUQuXcedVdsIaKgKTp9t0UJkE5+PAVNhdQm4ZVq2E= -cloud.google.com/go/automl v1.5.0/go.mod h1:34EjfoFGMZ5sgJ9EoLsRtdPSNZLcfflJR39VbVNS2M0= -cloud.google.com/go/automl v1.6.0/go.mod h1:ugf8a6Fx+zP0D59WLhqgTDsQI9w07o64uf/Is3Nh5p8= -cloud.google.com/go/automl v1.7.0/go.mod h1:RL9MYCCsJEOmt0Wf3z9uzG0a7adTT1fe+aObgSpkCt8= -cloud.google.com/go/automl v1.8.0/go.mod h1:xWx7G/aPEe/NP+qzYXktoBSDfjO+vnKMGgsApGJJquM= -cloud.google.com/go/automl v1.12.0/go.mod h1:tWDcHDp86aMIuHmyvjuKeeHEGq76lD7ZqfGLN6B0NuU= -cloud.google.com/go/baremetalsolution v0.3.0/go.mod h1:XOrocE+pvK1xFfleEnShBlNAXf+j5blPPxrhjKgnIFc= -cloud.google.com/go/baremetalsolution v0.4.0/go.mod h1:BymplhAadOO/eBa7KewQ0Ppg4A4Wplbn+PsFKRLo0uI= -cloud.google.com/go/baremetalsolution v0.5.0/go.mod h1:dXGxEkmR9BMwxhzBhV0AioD0ULBmuLZI8CdwalUxuss= -cloud.google.com/go/batch v0.3.0/go.mod h1:TR18ZoAekj1GuirsUsR1ZTKN3FC/4UDnScjT8NXImFE= -cloud.google.com/go/batch v0.4.0/go.mod h1:WZkHnP43R/QCGQsZ+0JyG4i79ranE2u8xvjq/9+STPE= -cloud.google.com/go/batch v0.7.0/go.mod h1:vLZN95s6teRUqRQ4s3RLDsH8PvboqBK+rn1oevL159g= -cloud.google.com/go/beyondcorp v0.2.0/go.mod h1:TB7Bd+EEtcw9PCPQhCJtJGjk/7TC6ckmnSFS+xwTfm4= -cloud.google.com/go/beyondcorp v0.3.0/go.mod h1:E5U5lcrcXMsCuoDNyGrpyTm/hn7ne941Jz2vmksAxW8= -cloud.google.com/go/beyondcorp v0.4.0/go.mod h1:3ApA0mbhHx6YImmuubf5pyW8srKnCEPON32/5hj+RmM= cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= -cloud.google.com/go/bigquery v1.42.0/go.mod h1:8dRTJxhtG+vwBKzE5OseQn/hiydoQN3EedCaOdYmxRA= -cloud.google.com/go/bigquery v1.43.0/go.mod h1:ZMQcXHsl+xmU1z36G2jNGZmKp9zNY5BUua5wDgmNCfw= -cloud.google.com/go/bigquery v1.44.0/go.mod h1:0Y33VqXTEsbamHJvJHdFmtqHvMIY28aK1+dFsvaChGc= -cloud.google.com/go/bigquery v1.47.0/go.mod h1:sA9XOgy0A8vQK9+MWhEQTY6Tix87M/ZurWFIxmF9I/E= -cloud.google.com/go/bigquery v1.48.0/go.mod h1:QAwSz+ipNgfL5jxiaK7weyOhzdoAy1zFm0Nf1fysJac= -cloud.google.com/go/billing v1.4.0/go.mod h1:g9IdKBEFlItS8bTtlrZdVLWSSdSyFUZKXNS02zKMOZY= -cloud.google.com/go/billing v1.5.0/go.mod h1:mztb1tBc3QekhjSgmpf/CV4LzWXLzCArwpLmP2Gm88s= -cloud.google.com/go/billing v1.6.0/go.mod h1:WoXzguj+BeHXPbKfNWkqVtDdzORazmCjraY+vrxcyvI= -cloud.google.com/go/billing v1.7.0/go.mod h1:q457N3Hbj9lYwwRbnlD7vUpyjq6u5U1RAOArInEiD5Y= -cloud.google.com/go/billing v1.12.0/go.mod h1:yKrZio/eu+okO/2McZEbch17O5CB5NpZhhXG6Z766ss= -cloud.google.com/go/binaryauthorization v1.1.0/go.mod h1:xwnoWu3Y84jbuHa0zd526MJYmtnVXn0syOjaJgy4+dM= -cloud.google.com/go/binaryauthorization v1.2.0/go.mod h1:86WKkJHtRcv5ViNABtYMhhNWRrD1Vpi//uKEy7aYEfI= -cloud.google.com/go/binaryauthorization v1.3.0/go.mod h1:lRZbKgjDIIQvzYQS1p99A7/U1JqvqeZg0wiI5tp6tg0= -cloud.google.com/go/binaryauthorization v1.4.0/go.mod h1:tsSPQrBd77VLplV70GUhBf/Zm3FsKmgSqgm4UmiDItk= -cloud.google.com/go/binaryauthorization v1.5.0/go.mod h1:OSe4OU1nN/VswXKRBmciKpo9LulY41gch5c68htf3/Q= -cloud.google.com/go/certificatemanager v1.3.0/go.mod h1:n6twGDvcUBFu9uBgt4eYvvf3sQ6My8jADcOVwHmzadg= -cloud.google.com/go/certificatemanager v1.4.0/go.mod h1:vowpercVFyqs8ABSmrdV+GiFf2H/ch3KyudYQEMM590= -cloud.google.com/go/certificatemanager v1.6.0/go.mod h1:3Hh64rCKjRAX8dXgRAyOcY5vQ/fE1sh8o+Mdd6KPgY8= -cloud.google.com/go/channel v1.8.0/go.mod h1:W5SwCXDJsq/rg3tn3oG0LOxpAo6IMxNa09ngphpSlnk= -cloud.google.com/go/channel v1.9.0/go.mod h1:jcu05W0my9Vx4mt3/rEHpfxc9eKi9XwsdDL8yBMbKUk= -cloud.google.com/go/channel v1.11.0/go.mod h1:IdtI0uWGqhEeatSB62VOoJ8FSUhJ9/+iGkJVqp74CGE= -cloud.google.com/go/cloudbuild v1.3.0/go.mod h1:WequR4ULxlqvMsjDEEEFnOG5ZSRSgWOywXYDb1vPE6U= -cloud.google.com/go/cloudbuild v1.4.0/go.mod h1:5Qwa40LHiOXmz3386FrjrYM93rM/hdRr7b53sySrTqA= -cloud.google.com/go/cloudbuild v1.6.0/go.mod h1:UIbc/w9QCbH12xX+ezUsgblrWv+Cv4Tw83GiSMHOn9M= -cloud.google.com/go/cloudbuild v1.7.0/go.mod h1:zb5tWh2XI6lR9zQmsm1VRA+7OCuve5d8S+zJUul8KTg= -cloud.google.com/go/clouddms v1.3.0/go.mod h1:oK6XsCDdW4Ib3jCCBugx+gVjevp2TMXFtgxvPSee3OM= -cloud.google.com/go/clouddms v1.4.0/go.mod h1:Eh7sUGCC+aKry14O1NRljhjyrr0NFC0G2cjwX0cByRk= -cloud.google.com/go/clouddms v1.5.0/go.mod h1:QSxQnhikCLUw13iAbffF2CZxAER3xDGNHjsTAkQJcQA= -cloud.google.com/go/cloudtasks v1.5.0/go.mod h1:fD92REy1x5woxkKEkLdvavGnPJGEn8Uic9nWuLzqCpY= -cloud.google.com/go/cloudtasks v1.6.0/go.mod h1:C6Io+sxuke9/KNRkbQpihnW93SWDU3uXt92nu85HkYI= -cloud.google.com/go/cloudtasks v1.7.0/go.mod h1:ImsfdYWwlWNJbdgPIIGJWC+gemEGTBK/SunNQQNCAb4= -cloud.google.com/go/cloudtasks v1.8.0/go.mod h1:gQXUIwCSOI4yPVK7DgTVFiiP0ZW/eQkydWzwVMdHxrI= -cloud.google.com/go/cloudtasks v1.9.0/go.mod h1:w+EyLsVkLWHcOaqNEyvcKAsWp9p29dL6uL9Nst1cI7Y= -cloud.google.com/go/compute v0.1.0/go.mod h1:GAesmwr110a34z04OlxYkATPBEfVhkymfTBXtfbBFow= -cloud.google.com/go/compute v1.3.0/go.mod h1:cCZiE1NHEtai4wiufUhW8I8S1JKkAnhnQJWM7YD99wM= -cloud.google.com/go/compute v1.5.0/go.mod h1:9SMHyhJlzhlkJqrPAc839t2BZFTSk6Jdj6mkzQJeu0M= -cloud.google.com/go/compute v1.6.0/go.mod h1:T29tfhtVbq1wvAPo0E3+7vhgmkOYeXjhFvz/FMzPu0s= -cloud.google.com/go/compute v1.6.1/go.mod h1:g85FgpzFvNULZ+S8AYq87axRKuf2Kh7deLqV/jJ3thU= -cloud.google.com/go/compute v1.7.0/go.mod h1:435lt8av5oL9P3fv1OEzSbSUe+ybHXGMPQHHZWZxy9U= -cloud.google.com/go/compute v1.10.0/go.mod h1:ER5CLbMxl90o2jtNbGSbtfOpQKR0t15FOtRsugnLrlU= -cloud.google.com/go/compute v1.12.0/go.mod h1:e8yNOBcBONZU1vJKCvCoDw/4JQsA0dpM4x/6PIIOocU= -cloud.google.com/go/compute v1.12.1/go.mod h1:e8yNOBcBONZU1vJKCvCoDw/4JQsA0dpM4x/6PIIOocU= -cloud.google.com/go/compute v1.13.0/go.mod h1:5aPTS0cUNMIc1CE546K+Th6weJUNQErARyZtRXDJ8GE= -cloud.google.com/go/compute v1.14.0/go.mod h1:YfLtxrj9sU4Yxv+sXzZkyPjEyPBZfXHUvjxega5vAdo= -cloud.google.com/go/compute v1.15.1/go.mod h1:bjjoF/NtFUrkD/urWfdHaKuOPDR5nWIs63rR+SXhcpA= -cloud.google.com/go/compute v1.18.0/go.mod h1:1X7yHxec2Ga+Ss6jPyjxRxpu2uu7PLgsOVXvgU0yacs= -cloud.google.com/go/compute/metadata v0.1.0/go.mod h1:Z1VN+bulIf6bt4P/C37K4DyZYZEXYonfTBHHFPO/4UU= -cloud.google.com/go/compute/metadata v0.2.0/go.mod h1:zFmK7XCadkQkj6TtorcaGlCW1hT1fIilQDwofLpJ20k= -cloud.google.com/go/compute/metadata v0.2.1/go.mod h1:jgHgmJd2RKBGzXqF5LR2EZMGxBkeanZ9wwa75XHJgOM= -cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA= -cloud.google.com/go/contactcenterinsights v1.3.0/go.mod h1:Eu2oemoePuEFc/xKFPjbTuPSj0fYJcPls9TFlPNnHHY= -cloud.google.com/go/contactcenterinsights v1.4.0/go.mod h1:L2YzkGbPsv+vMQMCADxJoT9YiTTnSEd6fEvCeHTYVck= -cloud.google.com/go/contactcenterinsights v1.6.0/go.mod h1:IIDlT6CLcDoyv79kDv8iWxMSTZhLxSCofVV5W6YFM/w= -cloud.google.com/go/container v1.6.0/go.mod h1:Xazp7GjJSeUYo688S+6J5V+n/t+G5sKBTFkKNudGRxg= -cloud.google.com/go/container v1.7.0/go.mod h1:Dp5AHtmothHGX3DwwIHPgq45Y8KmNsgN3amoYfxVkLo= -cloud.google.com/go/container v1.13.1/go.mod h1:6wgbMPeQRw9rSnKBCAJXnds3Pzj03C4JHamr8asWKy4= -cloud.google.com/go/containeranalysis v0.5.1/go.mod h1:1D92jd8gRR/c0fGMlymRgxWD3Qw9C1ff6/T7mLgVL8I= -cloud.google.com/go/containeranalysis v0.6.0/go.mod h1:HEJoiEIu+lEXM+k7+qLCci0h33lX3ZqoYFdmPcoO7s4= -cloud.google.com/go/containeranalysis v0.7.0/go.mod h1:9aUL+/vZ55P2CXfuZjS4UjQ9AgXoSw8Ts6lemfmxBxI= -cloud.google.com/go/datacatalog v1.3.0/go.mod h1:g9svFY6tuR+j+hrTw3J2dNcmI0dzmSiyOzm8kpLq0a0= -cloud.google.com/go/datacatalog v1.5.0/go.mod h1:M7GPLNQeLfWqeIm3iuiruhPzkt65+Bx8dAKvScX8jvs= -cloud.google.com/go/datacatalog v1.6.0/go.mod h1:+aEyF8JKg+uXcIdAmmaMUmZ3q1b/lKLtXCmXdnc0lbc= -cloud.google.com/go/datacatalog v1.7.0/go.mod h1:9mEl4AuDYWw81UGc41HonIHH7/sn52H0/tc8f8ZbZIE= -cloud.google.com/go/datacatalog v1.8.0/go.mod h1:KYuoVOv9BM8EYz/4eMFxrr4DUKhGIOXxZoKYF5wdISM= -cloud.google.com/go/datacatalog v1.8.1/go.mod h1:RJ58z4rMp3gvETA465Vg+ag8BGgBdnRPEMMSTr5Uv+M= -cloud.google.com/go/datacatalog v1.12.0/go.mod h1:CWae8rFkfp6LzLumKOnmVh4+Zle4A3NXLzVJ1d1mRm0= -cloud.google.com/go/dataflow v0.6.0/go.mod h1:9QwV89cGoxjjSR9/r7eFDqqjtvbKxAK2BaYU6PVk9UM= -cloud.google.com/go/dataflow v0.7.0/go.mod h1:PX526vb4ijFMesO1o202EaUmouZKBpjHsTlCtB4parQ= -cloud.google.com/go/dataflow v0.8.0/go.mod h1:Rcf5YgTKPtQyYz8bLYhFoIV/vP39eL7fWNcSOyFfLJE= -cloud.google.com/go/dataform v0.3.0/go.mod h1:cj8uNliRlHpa6L3yVhDOBrUXH+BPAO1+KFMQQNSThKo= -cloud.google.com/go/dataform v0.4.0/go.mod h1:fwV6Y4Ty2yIFL89huYlEkwUPtS7YZinZbzzj5S9FzCE= -cloud.google.com/go/dataform v0.5.0/go.mod h1:GFUYRe8IBa2hcomWplodVmUx/iTL0FrsauObOM3Ipr0= -cloud.google.com/go/dataform v0.6.0/go.mod h1:QPflImQy33e29VuapFdf19oPbE4aYTJxr31OAPV+ulA= -cloud.google.com/go/datafusion v1.4.0/go.mod h1:1Zb6VN+W6ALo85cXnM1IKiPw+yQMKMhB9TsTSRDo/38= -cloud.google.com/go/datafusion v1.5.0/go.mod h1:Kz+l1FGHB0J+4XF2fud96WMmRiq/wj8N9u007vyXZ2w= -cloud.google.com/go/datafusion v1.6.0/go.mod h1:WBsMF8F1RhSXvVM8rCV3AeyWVxcC2xY6vith3iw3S+8= -cloud.google.com/go/datalabeling v0.5.0/go.mod h1:TGcJ0G2NzcsXSE/97yWjIZO0bXj0KbVlINXMG9ud42I= -cloud.google.com/go/datalabeling v0.6.0/go.mod h1:WqdISuk/+WIGeMkpw/1q7bK/tFEZxsrFJOJdY2bXvTQ= -cloud.google.com/go/datalabeling v0.7.0/go.mod h1:WPQb1y08RJbmpM3ww0CSUAGweL0SxByuW2E+FU+wXcM= -cloud.google.com/go/dataplex v1.3.0/go.mod h1:hQuRtDg+fCiFgC8j0zV222HvzFQdRd+SVX8gdmFcZzA= -cloud.google.com/go/dataplex v1.4.0/go.mod h1:X51GfLXEMVJ6UN47ESVqvlsRplbLhcsAt0kZCCKsU0A= -cloud.google.com/go/dataplex v1.5.2/go.mod h1:cVMgQHsmfRoI5KFYq4JtIBEUbYwc3c7tXmIDhRmNNVQ= -cloud.google.com/go/dataproc v1.7.0/go.mod h1:CKAlMjII9H90RXaMpSxQ8EU6dQx6iAYNPcYPOkSbi8s= -cloud.google.com/go/dataproc v1.8.0/go.mod h1:5OW+zNAH0pMpw14JVrPONsxMQYMBqJuzORhIBfBn9uI= -cloud.google.com/go/dataproc v1.12.0/go.mod h1:zrF3aX0uV3ikkMz6z4uBbIKyhRITnxvr4i3IjKsKrw4= -cloud.google.com/go/dataqna v0.5.0/go.mod h1:90Hyk596ft3zUQ8NkFfvICSIfHFh1Bc7C4cK3vbhkeo= -cloud.google.com/go/dataqna v0.6.0/go.mod h1:1lqNpM7rqNLVgWBJyk5NF6Uen2PHym0jtVJonplVsDA= -cloud.google.com/go/dataqna v0.7.0/go.mod h1:Lx9OcIIeqCrw1a6KdO3/5KMP1wAmTc0slZWwP12Qq3c= cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= -cloud.google.com/go/datastore v1.10.0/go.mod h1:PC5UzAmDEkAmkfaknstTYbNpgE49HAgW2J1gcgUfmdM= -cloud.google.com/go/datastream v1.2.0/go.mod h1:i/uTP8/fZwgATHS/XFu0TcNUhuA0twZxxQ3EyCUQMwo= -cloud.google.com/go/datastream v1.3.0/go.mod h1:cqlOX8xlyYF/uxhiKn6Hbv6WjwPPuI9W2M9SAXwaLLQ= -cloud.google.com/go/datastream v1.4.0/go.mod h1:h9dpzScPhDTs5noEMQVWP8Wx8AFBRyS0s8KWPx/9r0g= -cloud.google.com/go/datastream v1.5.0/go.mod h1:6TZMMNPwjUqZHBKPQ1wwXpb0d5VDVPl2/XoS5yi88q4= -cloud.google.com/go/datastream v1.6.0/go.mod h1:6LQSuswqLa7S4rPAOZFVjHIG3wJIjZcZrw8JDEDJuIs= -cloud.google.com/go/deploy v1.4.0/go.mod h1:5Xghikd4VrmMLNaF6FiRFDlHb59VM59YoDQnOUdsH/c= -cloud.google.com/go/deploy v1.5.0/go.mod h1:ffgdD0B89tToyW/U/D2eL0jN2+IEV/3EMuXHA0l4r+s= -cloud.google.com/go/deploy v1.6.0/go.mod h1:f9PTHehG/DjCom3QH0cntOVRm93uGBDt2vKzAPwpXQI= -cloud.google.com/go/dialogflow v1.15.0/go.mod h1:HbHDWs33WOGJgn6rfzBW1Kv807BE3O1+xGbn59zZWI4= -cloud.google.com/go/dialogflow v1.16.1/go.mod h1:po6LlzGfK+smoSmTBnbkIZY2w8ffjz/RcGSS+sh1el0= -cloud.google.com/go/dialogflow v1.17.0/go.mod h1:YNP09C/kXA1aZdBgC/VtXX74G/TKn7XVCcVumTflA+8= -cloud.google.com/go/dialogflow v1.18.0/go.mod h1:trO7Zu5YdyEuR+BhSNOqJezyFQ3aUzz0njv7sMx/iek= -cloud.google.com/go/dialogflow v1.19.0/go.mod h1:JVmlG1TwykZDtxtTXujec4tQ+D8SBFMoosgy+6Gn0s0= -cloud.google.com/go/dialogflow v1.29.0/go.mod h1:b+2bzMe+k1s9V+F2jbJwpHPzrnIyHihAdRFMtn2WXuM= -cloud.google.com/go/dialogflow v1.31.0/go.mod h1:cuoUccuL1Z+HADhyIA7dci3N5zUssgpBJmCzI6fNRB4= -cloud.google.com/go/dlp v1.6.0/go.mod h1:9eyB2xIhpU0sVwUixfBubDoRwP+GjeUoxxeueZmqvmM= -cloud.google.com/go/dlp v1.7.0/go.mod h1:68ak9vCiMBjbasxeVD17hVPxDEck+ExiHavX8kiHG+Q= -cloud.google.com/go/dlp v1.9.0/go.mod h1:qdgmqgTyReTz5/YNSSuueR8pl7hO0o9bQ39ZhtgkWp4= -cloud.google.com/go/documentai v1.7.0/go.mod h1:lJvftZB5NRiFSX4moiye1SMxHx0Bc3x1+p9e/RfXYiU= -cloud.google.com/go/documentai v1.8.0/go.mod h1:xGHNEB7CtsnySCNrCFdCyyMz44RhFEEX2Q7UD0c5IhU= -cloud.google.com/go/documentai v1.9.0/go.mod h1:FS5485S8R00U10GhgBC0aNGrJxBP8ZVpEeJ7PQDZd6k= -cloud.google.com/go/documentai v1.10.0/go.mod h1:vod47hKQIPeCfN2QS/jULIvQTugbmdc0ZvxxfQY1bg4= -cloud.google.com/go/documentai v1.16.0/go.mod h1:o0o0DLTEZ+YnJZ+J4wNfTxmDVyrkzFvttBXXtYRMHkM= -cloud.google.com/go/domains v0.6.0/go.mod h1:T9Rz3GasrpYk6mEGHh4rymIhjlnIuB4ofT1wTxDeT4Y= -cloud.google.com/go/domains v0.7.0/go.mod h1:PtZeqS1xjnXuRPKE/88Iru/LdfoRyEHYA9nFQf4UKpg= -cloud.google.com/go/domains v0.8.0/go.mod h1:M9i3MMDzGFXsydri9/vW+EWz9sWb4I6WyHqdlAk0idE= -cloud.google.com/go/edgecontainer v0.1.0/go.mod h1:WgkZ9tp10bFxqO8BLPqv2LlfmQF1X8lZqwW4r1BTajk= -cloud.google.com/go/edgecontainer v0.2.0/go.mod h1:RTmLijy+lGpQ7BXuTDa4C4ssxyXT34NIuHIgKuP4s5w= -cloud.google.com/go/edgecontainer v0.3.0/go.mod h1:FLDpP4nykgwwIfcLt6zInhprzw0lEi2P1fjO6Ie0qbc= -cloud.google.com/go/errorreporting v0.3.0/go.mod h1:xsP2yaAp+OAW4OIm60An2bbLpqIhKXdWR/tawvl7QzU= -cloud.google.com/go/essentialcontacts v1.3.0/go.mod h1:r+OnHa5jfj90qIfZDO/VztSFqbQan7HV75p8sA+mdGI= -cloud.google.com/go/essentialcontacts v1.4.0/go.mod h1:8tRldvHYsmnBCHdFpvU+GL75oWiBKl80BiqlFh9tp+8= -cloud.google.com/go/essentialcontacts v1.5.0/go.mod h1:ay29Z4zODTuwliK7SnX8E86aUF2CTzdNtvv42niCX0M= -cloud.google.com/go/eventarc v1.7.0/go.mod h1:6ctpF3zTnaQCxUjHUdcfgcA1A2T309+omHZth7gDfmc= -cloud.google.com/go/eventarc v1.8.0/go.mod h1:imbzxkyAU4ubfsaKYdQg04WS1NvncblHEup4kvF+4gw= -cloud.google.com/go/eventarc v1.10.0/go.mod h1:u3R35tmZ9HvswGRBnF48IlYgYeBcPUCjkr4BTdem2Kw= -cloud.google.com/go/filestore v1.3.0/go.mod h1:+qbvHGvXU1HaKX2nD0WEPo92TP/8AQuCVEBXNY9z0+w= -cloud.google.com/go/filestore v1.4.0/go.mod h1:PaG5oDfo9r224f8OYXURtAsY+Fbyq/bLYoINEK8XQAI= -cloud.google.com/go/filestore v1.5.0/go.mod h1:FqBXDWBp4YLHqRnVGveOkHDf8svj9r5+mUDLupOWEDs= -cloud.google.com/go/firestore v1.9.0/go.mod h1:HMkjKHNTtRyZNiMzu7YAsLr9K3X2udY2AMwDaMEQiiE= -cloud.google.com/go/functions v1.6.0/go.mod h1:3H1UA3qiIPRWD7PeZKLvHZ9SaQhR26XIJcC0A5GbvAk= -cloud.google.com/go/functions v1.7.0/go.mod h1:+d+QBcWM+RsrgZfV9xo6KfA1GlzJfxcfZcRPEhDDfzg= -cloud.google.com/go/functions v1.8.0/go.mod h1:RTZ4/HsQjIqIYP9a9YPbU+QFoQsAlYgrwOXJWHn1POY= -cloud.google.com/go/functions v1.9.0/go.mod h1:Y+Dz8yGguzO3PpIjhLTbnqV1CWmgQ5UwtlpzoyquQ08= -cloud.google.com/go/functions v1.10.0/go.mod h1:0D3hEOe3DbEvCXtYOZHQZmD+SzYsi1YbI7dGvHfldXw= -cloud.google.com/go/gaming v1.5.0/go.mod h1:ol7rGcxP/qHTRQE/RO4bxkXq+Fix0j6D4LFPzYTIrDM= -cloud.google.com/go/gaming v1.6.0/go.mod h1:YMU1GEvA39Qt3zWGyAVA9bpYz/yAhTvaQ1t2sK4KPUA= -cloud.google.com/go/gaming v1.7.0/go.mod h1:LrB8U7MHdGgFG851iHAfqUdLcKBdQ55hzXy9xBJz0+w= -cloud.google.com/go/gaming v1.8.0/go.mod h1:xAqjS8b7jAVW0KFYeRUxngo9My3f33kFmua++Pi+ggM= -cloud.google.com/go/gaming v1.9.0/go.mod h1:Fc7kEmCObylSWLO334NcO+O9QMDyz+TKC4v1D7X+Bc0= -cloud.google.com/go/gkebackup v0.2.0/go.mod h1:XKvv/4LfG829/B8B7xRkk8zRrOEbKtEam6yNfuQNH60= -cloud.google.com/go/gkebackup v0.3.0/go.mod h1:n/E671i1aOQvUxT541aTkCwExO/bTer2HDlj4TsBRAo= -cloud.google.com/go/gkebackup v0.4.0/go.mod h1:byAyBGUwYGEEww7xsbnUTBHIYcOPy/PgUWUtOeRm9Vg= -cloud.google.com/go/gkeconnect v0.5.0/go.mod h1:c5lsNAg5EwAy7fkqX/+goqFsU1Da/jQFqArp+wGNr/o= -cloud.google.com/go/gkeconnect v0.6.0/go.mod h1:Mln67KyU/sHJEBY8kFZ0xTeyPtzbq9StAVvEULYK16A= -cloud.google.com/go/gkeconnect v0.7.0/go.mod h1:SNfmVqPkaEi3bF/B3CNZOAYPYdg7sU+obZ+QTky2Myw= -cloud.google.com/go/gkehub v0.9.0/go.mod h1:WYHN6WG8w9bXU0hqNxt8rm5uxnk8IH+lPY9J2TV7BK0= -cloud.google.com/go/gkehub v0.10.0/go.mod h1:UIPwxI0DsrpsVoWpLB0stwKCP+WFVG9+y977wO+hBH0= -cloud.google.com/go/gkehub v0.11.0/go.mod h1:JOWHlmN+GHyIbuWQPl47/C2RFhnFKH38jH9Ascu3n0E= -cloud.google.com/go/gkemulticloud v0.3.0/go.mod h1:7orzy7O0S+5kq95e4Hpn7RysVA7dPs8W/GgfUtsPbrA= -cloud.google.com/go/gkemulticloud v0.4.0/go.mod h1:E9gxVBnseLWCk24ch+P9+B2CoDFJZTyIgLKSalC7tuI= -cloud.google.com/go/gkemulticloud v0.5.0/go.mod h1:W0JDkiyi3Tqh0TJr//y19wyb1yf8llHVto2Htf2Ja3Y= -cloud.google.com/go/grafeas v0.2.0/go.mod h1:KhxgtF2hb0P191HlY5besjYm6MqTSTj3LSI+M+ByZHc= -cloud.google.com/go/gsuiteaddons v1.3.0/go.mod h1:EUNK/J1lZEZO8yPtykKxLXI6JSVN2rg9bN8SXOa0bgM= -cloud.google.com/go/gsuiteaddons v1.4.0/go.mod h1:rZK5I8hht7u7HxFQcFei0+AtfS9uSushomRlg+3ua1o= -cloud.google.com/go/gsuiteaddons v1.5.0/go.mod h1:TFCClYLd64Eaa12sFVmUyG62tk4mdIsI7pAnSXRkcFo= -cloud.google.com/go/iam v0.1.0/go.mod h1:vcUNEa0pEm0qRVpmWepWaFMIAI8/hjB9mO8rNCJtF6c= -cloud.google.com/go/iam v0.3.0/go.mod h1:XzJPvDayI+9zsASAFO68Hk07u3z+f+JrT2xXNdp4bnY= -cloud.google.com/go/iam v0.5.0/go.mod h1:wPU9Vt0P4UmCux7mqtRu6jcpPAb74cP1fh50J3QpkUc= -cloud.google.com/go/iam v0.6.0/go.mod h1:+1AH33ueBne5MzYccyMHtEKqLE4/kJOibtffMHDMFMc= -cloud.google.com/go/iam v0.7.0/go.mod h1:H5Br8wRaDGNc8XP3keLc4unfUUZeyH3Sfl9XpQEYOeg= -cloud.google.com/go/iam v0.8.0/go.mod h1:lga0/y3iH6CX7sYqypWJ33hf7kkfXJag67naqGESjkE= -cloud.google.com/go/iam v0.11.0/go.mod h1:9PiLDanza5D+oWFZiH1uG+RnRCfEGKoyl6yo4cgWZGY= -cloud.google.com/go/iam v0.12.0/go.mod h1:knyHGviacl11zrtZUoDuYpDgLjvr28sLQaG0YB2GYAY= -cloud.google.com/go/iap v1.4.0/go.mod h1:RGFwRJdihTINIe4wZ2iCP0zF/qu18ZwyKxrhMhygBEc= -cloud.google.com/go/iap v1.5.0/go.mod h1:UH/CGgKd4KyohZL5Pt0jSKE4m3FR51qg6FKQ/z/Ix9A= -cloud.google.com/go/iap v1.6.0/go.mod h1:NSuvI9C/j7UdjGjIde7t7HBz+QTwBcapPE07+sSRcLk= -cloud.google.com/go/ids v1.1.0/go.mod h1:WIuwCaYVOzHIj2OhN9HAwvW+DBdmUAdcWlFxRl+KubM= -cloud.google.com/go/ids v1.2.0/go.mod h1:5WXvp4n25S0rA/mQWAg1YEEBBq6/s+7ml1RDCW1IrcY= -cloud.google.com/go/ids v1.3.0/go.mod h1:JBdTYwANikFKaDP6LtW5JAi4gubs57SVNQjemdt6xV4= -cloud.google.com/go/iot v1.3.0/go.mod h1:r7RGh2B61+B8oz0AGE+J72AhA0G7tdXItODWsaA2oLs= -cloud.google.com/go/iot v1.4.0/go.mod h1:dIDxPOn0UvNDUMD8Ger7FIaTuvMkj+aGk94RPP0iV+g= -cloud.google.com/go/iot v1.5.0/go.mod h1:mpz5259PDl3XJthEmh9+ap0affn/MqNSP4My77Qql9o= -cloud.google.com/go/kms v1.4.0/go.mod h1:fajBHndQ+6ubNw6Ss2sSd+SWvjL26RNo/dr7uxsnnOA= -cloud.google.com/go/kms v1.5.0/go.mod h1:QJS2YY0eJGBg3mnDfuaCyLauWwBJiHRboYxJ++1xJNg= -cloud.google.com/go/kms v1.6.0/go.mod h1:Jjy850yySiasBUDi6KFUwUv2n1+o7QZFyuUJg6OgjA0= -cloud.google.com/go/kms v1.8.0/go.mod h1:4xFEhYFqvW+4VMELtZyxomGSYtSQKzM178ylFW4jMAg= -cloud.google.com/go/kms v1.9.0/go.mod h1:qb1tPTgfF9RQP8e1wq4cLFErVuTJv7UsSC915J8dh3w= -cloud.google.com/go/language v1.4.0/go.mod h1:F9dRpNFQmJbkaop6g0JhSBXCNlO90e1KWx5iDdxbWic= -cloud.google.com/go/language v1.6.0/go.mod h1:6dJ8t3B+lUYfStgls25GusK04NLh3eDLQnWM3mdEbhI= -cloud.google.com/go/language v1.7.0/go.mod h1:DJ6dYN/W+SQOjF8e1hLQXMF21AkH2w9wiPzPCJa2MIE= -cloud.google.com/go/language v1.8.0/go.mod h1:qYPVHf7SPoNNiCL2Dr0FfEFNil1qi3pQEyygwpgVKB8= -cloud.google.com/go/language v1.9.0/go.mod h1:Ns15WooPM5Ad/5no/0n81yUetis74g3zrbeJBE+ptUY= -cloud.google.com/go/lifesciences v0.5.0/go.mod h1:3oIKy8ycWGPUyZDR/8RNnTOYevhaMLqh5vLUXs9zvT8= -cloud.google.com/go/lifesciences v0.6.0/go.mod h1:ddj6tSX/7BOnhxCSd3ZcETvtNr8NZ6t/iPhY2Tyfu08= -cloud.google.com/go/lifesciences v0.8.0/go.mod h1:lFxiEOMqII6XggGbOnKiyZ7IBwoIqA84ClvoezaA/bo= -cloud.google.com/go/logging v1.6.1/go.mod h1:5ZO0mHHbvm8gEmeEUHrmDlTDSu5imF6MUP9OfilNXBw= -cloud.google.com/go/logging v1.7.0/go.mod h1:3xjP2CjkM3ZkO73aj4ASA5wRPGGCRrPIAeNqVNkzY8M= -cloud.google.com/go/longrunning v0.1.1/go.mod h1:UUFxuDWkv22EuY93jjmDMFT5GPQKeFVJBIF6QlTqdsE= -cloud.google.com/go/longrunning v0.3.0/go.mod h1:qth9Y41RRSUE69rDcOn6DdK3HfQfsUI0YSmW3iIlLJc= -cloud.google.com/go/longrunning v0.4.1/go.mod h1:4iWDqhBZ70CvZ6BfETbvam3T8FMvLK+eFj0E6AaRQTo= -cloud.google.com/go/managedidentities v1.3.0/go.mod h1:UzlW3cBOiPrzucO5qWkNkh0w33KFtBJU281hacNvsdE= -cloud.google.com/go/managedidentities v1.4.0/go.mod h1:NWSBYbEMgqmbZsLIyKvxrYbtqOsxY1ZrGM+9RgDqInM= -cloud.google.com/go/managedidentities v1.5.0/go.mod h1:+dWcZ0JlUmpuxpIDfyP5pP5y0bLdRwOS4Lp7gMni/LA= -cloud.google.com/go/maps v0.1.0/go.mod h1:BQM97WGyfw9FWEmQMpZ5T6cpovXXSd1cGmFma94eubI= -cloud.google.com/go/maps v0.6.0/go.mod h1:o6DAMMfb+aINHz/p/jbcY+mYeXBoZoxTfdSQ8VAJaCw= -cloud.google.com/go/mediatranslation v0.5.0/go.mod h1:jGPUhGTybqsPQn91pNXw0xVHfuJ3leR1wj37oU3y1f4= -cloud.google.com/go/mediatranslation v0.6.0/go.mod h1:hHdBCTYNigsBxshbznuIMFNe5QXEowAuNmmC7h8pu5w= -cloud.google.com/go/mediatranslation v0.7.0/go.mod h1:LCnB/gZr90ONOIQLgSXagp8XUW1ODs2UmUMvcgMfI2I= -cloud.google.com/go/memcache v1.4.0/go.mod h1:rTOfiGZtJX1AaFUrOgsMHX5kAzaTQ8azHiuDoTPzNsE= -cloud.google.com/go/memcache v1.5.0/go.mod h1:dk3fCK7dVo0cUU2c36jKb4VqKPS22BTkf81Xq617aWM= -cloud.google.com/go/memcache v1.6.0/go.mod h1:XS5xB0eQZdHtTuTF9Hf8eJkKtR3pVRCcvJwtm68T3rA= -cloud.google.com/go/memcache v1.7.0/go.mod h1:ywMKfjWhNtkQTxrWxCkCFkoPjLHPW6A7WOTVI8xy3LY= -cloud.google.com/go/memcache v1.9.0/go.mod h1:8oEyzXCu+zo9RzlEaEjHl4KkgjlNDaXbCQeQWlzNFJM= -cloud.google.com/go/metastore v1.5.0/go.mod h1:2ZNrDcQwghfdtCwJ33nM0+GrBGlVuh8rakL3vdPY3XY= -cloud.google.com/go/metastore v1.6.0/go.mod h1:6cyQTls8CWXzk45G55x57DVQ9gWg7RiH65+YgPsNh9s= -cloud.google.com/go/metastore v1.7.0/go.mod h1:s45D0B4IlsINu87/AsWiEVYbLaIMeUSoxlKKDqBGFS8= -cloud.google.com/go/metastore v1.8.0/go.mod h1:zHiMc4ZUpBiM7twCIFQmJ9JMEkDSyZS9U12uf7wHqSI= -cloud.google.com/go/metastore v1.10.0/go.mod h1:fPEnH3g4JJAk+gMRnrAnoqyv2lpUCqJPWOodSaf45Eo= -cloud.google.com/go/monitoring v1.7.0/go.mod h1:HpYse6kkGo//7p6sT0wsIC6IBDET0RhIsnmlA53dvEk= -cloud.google.com/go/monitoring v1.8.0/go.mod h1:E7PtoMJ1kQXWxPjB6mv2fhC5/15jInuulFdYYtlcvT4= -cloud.google.com/go/monitoring v1.12.0/go.mod h1:yx8Jj2fZNEkL/GYZyTLS4ZtZEZN8WtDEiEqG4kLK50w= -cloud.google.com/go/networkconnectivity v1.4.0/go.mod h1:nOl7YL8odKyAOtzNX73/M5/mGZgqqMeryi6UPZTk/rA= -cloud.google.com/go/networkconnectivity v1.5.0/go.mod h1:3GzqJx7uhtlM3kln0+x5wyFvuVH1pIBJjhCpjzSt75o= -cloud.google.com/go/networkconnectivity v1.6.0/go.mod h1:OJOoEXW+0LAxHh89nXd64uGG+FbQoeH8DtxCHVOMlaM= -cloud.google.com/go/networkconnectivity v1.7.0/go.mod h1:RMuSbkdbPwNMQjB5HBWD5MpTBnNm39iAVpC3TmsExt8= -cloud.google.com/go/networkconnectivity v1.10.0/go.mod h1:UP4O4sWXJG13AqrTdQCD9TnLGEbtNRqjuaaA7bNjF5E= -cloud.google.com/go/networkmanagement v1.4.0/go.mod h1:Q9mdLLRn60AsOrPc8rs8iNV6OHXaGcDdsIQe1ohekq8= -cloud.google.com/go/networkmanagement v1.5.0/go.mod h1:ZnOeZ/evzUdUsnvRt792H0uYEnHQEMaz+REhhzJRcf4= -cloud.google.com/go/networkmanagement v1.6.0/go.mod h1:5pKPqyXjB/sgtvB5xqOemumoQNB7y95Q7S+4rjSOPYY= -cloud.google.com/go/networksecurity v0.5.0/go.mod h1:xS6fOCoqpVC5zx15Z/MqkfDwH4+m/61A3ODiDV1xmiQ= -cloud.google.com/go/networksecurity v0.6.0/go.mod h1:Q5fjhTr9WMI5mbpRYEbiexTzROf7ZbDzvzCrNl14nyU= -cloud.google.com/go/networksecurity v0.7.0/go.mod h1:mAnzoxx/8TBSyXEeESMy9OOYwo1v+gZ5eMRnsT5bC8k= -cloud.google.com/go/notebooks v1.2.0/go.mod h1:9+wtppMfVPUeJ8fIWPOq1UnATHISkGXGqTkxeieQ6UY= -cloud.google.com/go/notebooks v1.3.0/go.mod h1:bFR5lj07DtCPC7YAAJ//vHskFBxA5JzYlH68kXVdk34= -cloud.google.com/go/notebooks v1.4.0/go.mod h1:4QPMngcwmgb6uw7Po99B2xv5ufVoIQ7nOGDyL4P8AgA= -cloud.google.com/go/notebooks v1.5.0/go.mod h1:q8mwhnP9aR8Hpfnrc5iN5IBhrXUy8S2vuYs+kBJ/gu0= -cloud.google.com/go/notebooks v1.7.0/go.mod h1:PVlaDGfJgj1fl1S3dUwhFMXFgfYGhYQt2164xOMONmE= -cloud.google.com/go/optimization v1.1.0/go.mod h1:5po+wfvX5AQlPznyVEZjGJTMr4+CAkJf2XSTQOOl9l4= -cloud.google.com/go/optimization v1.2.0/go.mod h1:Lr7SOHdRDENsh+WXVmQhQTrzdu9ybg0NecjHidBq6xs= -cloud.google.com/go/optimization v1.3.1/go.mod h1:IvUSefKiwd1a5p0RgHDbWCIbDFgKuEdB+fPPuP0IDLI= -cloud.google.com/go/orchestration v1.3.0/go.mod h1:Sj5tq/JpWiB//X/q3Ngwdl5K7B7Y0KZ7bfv0wL6fqVA= -cloud.google.com/go/orchestration v1.4.0/go.mod h1:6W5NLFWs2TlniBphAViZEVhrXRSMgUGDfW7vrWKvsBk= -cloud.google.com/go/orchestration v1.6.0/go.mod h1:M62Bevp7pkxStDfFfTuCOaXgaaqRAga1yKyoMtEoWPQ= -cloud.google.com/go/orgpolicy v1.4.0/go.mod h1:xrSLIV4RePWmP9P3tBl8S93lTmlAxjm06NSm2UTmKvE= -cloud.google.com/go/orgpolicy v1.5.0/go.mod h1:hZEc5q3wzwXJaKrsx5+Ewg0u1LxJ51nNFlext7Tanwc= -cloud.google.com/go/orgpolicy v1.10.0/go.mod h1:w1fo8b7rRqlXlIJbVhOMPrwVljyuW5mqssvBtU18ONc= -cloud.google.com/go/osconfig v1.7.0/go.mod h1:oVHeCeZELfJP7XLxcBGTMBvRO+1nQ5tFG9VQTmYS2Fs= -cloud.google.com/go/osconfig v1.8.0/go.mod h1:EQqZLu5w5XA7eKizepumcvWx+m8mJUhEwiPqWiZeEdg= -cloud.google.com/go/osconfig v1.9.0/go.mod h1:Yx+IeIZJ3bdWmzbQU4fxNl8xsZ4amB+dygAwFPlvnNo= -cloud.google.com/go/osconfig v1.10.0/go.mod h1:uMhCzqC5I8zfD9zDEAfvgVhDS8oIjySWh+l4WK6GnWw= -cloud.google.com/go/osconfig v1.11.0/go.mod h1:aDICxrur2ogRd9zY5ytBLV89KEgT2MKB2L/n6x1ooPw= -cloud.google.com/go/oslogin v1.4.0/go.mod h1:YdgMXWRaElXz/lDk1Na6Fh5orF7gvmJ0FGLIs9LId4E= -cloud.google.com/go/oslogin v1.5.0/go.mod h1:D260Qj11W2qx/HVF29zBg+0fd6YCSjSqLUkY/qEenQU= -cloud.google.com/go/oslogin v1.6.0/go.mod h1:zOJ1O3+dTU8WPlGEkFSh7qeHPPSoxrcMbbK1Nm2iX70= -cloud.google.com/go/oslogin v1.7.0/go.mod h1:e04SN0xO1UNJ1M5GP0vzVBFicIe4O53FOfcixIqTyXo= -cloud.google.com/go/oslogin v1.9.0/go.mod h1:HNavntnH8nzrn8JCTT5fj18FuJLFJc4NaZJtBnQtKFs= -cloud.google.com/go/phishingprotection v0.5.0/go.mod h1:Y3HZknsK9bc9dMi+oE8Bim0lczMU6hrX0UpADuMefr0= -cloud.google.com/go/phishingprotection v0.6.0/go.mod h1:9Y3LBLgy0kDTcYET8ZH3bq/7qni15yVUoAxiFxnlSUA= -cloud.google.com/go/phishingprotection v0.7.0/go.mod h1:8qJI4QKHoda/sb/7/YmMQ2omRLSLYSu9bU0EKCNI+Lk= -cloud.google.com/go/policytroubleshooter v1.3.0/go.mod h1:qy0+VwANja+kKrjlQuOzmlvscn4RNsAc0e15GGqfMxg= -cloud.google.com/go/policytroubleshooter v1.4.0/go.mod h1:DZT4BcRw3QoO8ota9xw/LKtPa8lKeCByYeKTIf/vxdE= -cloud.google.com/go/policytroubleshooter v1.5.0/go.mod h1:Rz1WfV+1oIpPdN2VvvuboLVRsB1Hclg3CKQ53j9l8vw= -cloud.google.com/go/privatecatalog v0.5.0/go.mod h1:XgosMUvvPyxDjAVNDYxJ7wBW8//hLDDYmnsNcMGq1K0= -cloud.google.com/go/privatecatalog v0.6.0/go.mod h1:i/fbkZR0hLN29eEWiiwue8Pb+GforiEIBnV9yrRUOKI= -cloud.google.com/go/privatecatalog v0.7.0/go.mod h1:2s5ssIFO69F5csTXcwBP7NPFTZvps26xGzvQ2PQaBYg= cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= -cloud.google.com/go/pubsub v1.26.0/go.mod h1:QgBH3U/jdJy/ftjPhTkyXNj543Tin1pRYcdcPRnFIRI= -cloud.google.com/go/pubsub v1.27.1/go.mod h1:hQN39ymbV9geqBnfQq6Xf63yNhUAhv9CZhzp5O6qsW0= -cloud.google.com/go/pubsub v1.28.0/go.mod h1:vuXFpwaVoIPQMGXqRyUQigu/AX1S3IWugR9xznmcXX8= -cloud.google.com/go/pubsublite v1.5.0/go.mod h1:xapqNQ1CuLfGi23Yda/9l4bBCKz/wC3KIJ5gKcxveZg= -cloud.google.com/go/pubsublite v1.6.0/go.mod h1:1eFCS0U11xlOuMFV/0iBqw3zP12kddMeCbj/F3FSj9k= -cloud.google.com/go/recaptchaenterprise v1.3.1/go.mod h1:OdD+q+y4XGeAlxRaMn1Y7/GveP6zmq76byL6tjPE7d4= -cloud.google.com/go/recaptchaenterprise/v2 v2.1.0/go.mod h1:w9yVqajwroDNTfGuhmOjPDN//rZGySaf6PtFVcSCa7o= -cloud.google.com/go/recaptchaenterprise/v2 v2.2.0/go.mod h1:/Zu5jisWGeERrd5HnlS3EUGb/D335f9k51B/FVil0jk= -cloud.google.com/go/recaptchaenterprise/v2 v2.3.0/go.mod h1:O9LwGCjrhGHBQET5CA7dd5NwwNQUErSgEDit1DLNTdo= -cloud.google.com/go/recaptchaenterprise/v2 v2.4.0/go.mod h1:Am3LHfOuBstrLrNCBrlI5sbwx9LBg3te2N6hGvHn2mE= -cloud.google.com/go/recaptchaenterprise/v2 v2.5.0/go.mod h1:O8LzcHXN3rz0j+LBC91jrwI3R+1ZSZEWrfL7XHgNo9U= -cloud.google.com/go/recaptchaenterprise/v2 v2.6.0/go.mod h1:RPauz9jeLtB3JVzg6nCbe12qNoaa8pXc4d/YukAmcnA= -cloud.google.com/go/recommendationengine v0.5.0/go.mod h1:E5756pJcVFeVgaQv3WNpImkFP8a+RptV6dDLGPILjvg= -cloud.google.com/go/recommendationengine v0.6.0/go.mod h1:08mq2umu9oIqc7tDy8sx+MNJdLG0fUi3vaSVbztHgJ4= -cloud.google.com/go/recommendationengine v0.7.0/go.mod h1:1reUcE3GIu6MeBz/h5xZJqNLuuVjNg1lmWMPyjatzac= -cloud.google.com/go/recommender v1.5.0/go.mod h1:jdoeiBIVrJe9gQjwd759ecLJbxCDED4A6p+mqoqDvTg= -cloud.google.com/go/recommender v1.6.0/go.mod h1:+yETpm25mcoiECKh9DEScGzIRyDKpZ0cEhWGo+8bo+c= -cloud.google.com/go/recommender v1.7.0/go.mod h1:XLHs/W+T8olwlGOgfQenXBTbIseGclClff6lhFVe9Bs= -cloud.google.com/go/recommender v1.8.0/go.mod h1:PkjXrTT05BFKwxaUxQmtIlrtj0kph108r02ZZQ5FE70= -cloud.google.com/go/recommender v1.9.0/go.mod h1:PnSsnZY7q+VL1uax2JWkt/UegHssxjUVVCrX52CuEmQ= -cloud.google.com/go/redis v1.7.0/go.mod h1:V3x5Jq1jzUcg+UNsRvdmsfuFnit1cfe3Z/PGyq/lm4Y= -cloud.google.com/go/redis v1.8.0/go.mod h1:Fm2szCDavWzBk2cDKxrkmWBqoCiL1+Ctwq7EyqBCA/A= -cloud.google.com/go/redis v1.9.0/go.mod h1:HMYQuajvb2D0LvMgZmLDZW8V5aOC/WxstZHiy4g8OiA= -cloud.google.com/go/redis v1.10.0/go.mod h1:ThJf3mMBQtW18JzGgh41/Wld6vnDDc/F/F35UolRZPM= -cloud.google.com/go/redis v1.11.0/go.mod h1:/X6eicana+BWcUda5PpwZC48o37SiFVTFSs0fWAJ7uQ= -cloud.google.com/go/resourcemanager v1.3.0/go.mod h1:bAtrTjZQFJkiWTPDb1WBjzvc6/kifjj4QBYuKCCoqKA= -cloud.google.com/go/resourcemanager v1.4.0/go.mod h1:MwxuzkumyTX7/a3n37gmsT3py7LIXwrShilPh3P1tR0= -cloud.google.com/go/resourcemanager v1.5.0/go.mod h1:eQoXNAiAvCf5PXxWxXjhKQoTMaUSNrEfg+6qdf/wots= -cloud.google.com/go/resourcesettings v1.3.0/go.mod h1:lzew8VfESA5DQ8gdlHwMrqZs1S9V87v3oCnKCWoOuQU= -cloud.google.com/go/resourcesettings v1.4.0/go.mod h1:ldiH9IJpcrlC3VSuCGvjR5of/ezRrOxFtpJoJo5SmXg= -cloud.google.com/go/resourcesettings v1.5.0/go.mod h1:+xJF7QSG6undsQDfsCJyqWXyBwUoJLhetkRMDRnIoXA= -cloud.google.com/go/retail v1.8.0/go.mod h1:QblKS8waDmNUhghY2TI9O3JLlFk8jybHeV4BF19FrE4= -cloud.google.com/go/retail v1.9.0/go.mod h1:g6jb6mKuCS1QKnH/dpu7isX253absFl6iE92nHwlBUY= -cloud.google.com/go/retail v1.10.0/go.mod h1:2gDk9HsL4HMS4oZwz6daui2/jmKvqShXKQuB2RZ+cCc= -cloud.google.com/go/retail v1.11.0/go.mod h1:MBLk1NaWPmh6iVFSz9MeKG/Psyd7TAgm6y/9L2B4x9Y= -cloud.google.com/go/retail v1.12.0/go.mod h1:UMkelN/0Z8XvKymXFbD4EhFJlYKRx1FGhQkVPU5kF14= -cloud.google.com/go/run v0.2.0/go.mod h1:CNtKsTA1sDcnqqIFR3Pb5Tq0usWxJJvsWOCPldRU3Do= -cloud.google.com/go/run v0.3.0/go.mod h1:TuyY1+taHxTjrD0ZFk2iAR+xyOXEA0ztb7U3UNA0zBo= -cloud.google.com/go/run v0.8.0/go.mod h1:VniEnuBwqjigv0A7ONfQUaEItaiCRVujlMqerPPiktM= -cloud.google.com/go/scheduler v1.4.0/go.mod h1:drcJBmxF3aqZJRhmkHQ9b3uSSpQoltBPGPxGAWROx6s= -cloud.google.com/go/scheduler v1.5.0/go.mod h1:ri073ym49NW3AfT6DZi21vLZrG07GXr5p3H1KxN5QlI= -cloud.google.com/go/scheduler v1.6.0/go.mod h1:SgeKVM7MIwPn3BqtcBntpLyrIJftQISRrYB5ZtT+KOk= -cloud.google.com/go/scheduler v1.7.0/go.mod h1:jyCiBqWW956uBjjPMMuX09n3x37mtyPJegEWKxRsn44= -cloud.google.com/go/scheduler v1.8.0/go.mod h1:TCET+Y5Gp1YgHT8py4nlg2Sew8nUHMqcpousDgXJVQc= -cloud.google.com/go/secretmanager v1.6.0/go.mod h1:awVa/OXF6IiyaU1wQ34inzQNc4ISIDIrId8qE5QGgKA= -cloud.google.com/go/secretmanager v1.8.0/go.mod h1:hnVgi/bN5MYHd3Gt0SPuTPPp5ENina1/LxM+2W9U9J4= -cloud.google.com/go/secretmanager v1.9.0/go.mod h1:b71qH2l1yHmWQHt9LC80akm86mX8AL6X1MA01dW8ht4= -cloud.google.com/go/secretmanager v1.10.0/go.mod h1:MfnrdvKMPNra9aZtQFvBcvRU54hbPD8/HayQdlUgJpU= -cloud.google.com/go/security v1.5.0/go.mod h1:lgxGdyOKKjHL4YG3/YwIL2zLqMFCKs0UbQwgyZmfJl4= -cloud.google.com/go/security v1.7.0/go.mod h1:mZklORHl6Bg7CNnnjLH//0UlAlaXqiG7Lb9PsPXLfD0= -cloud.google.com/go/security v1.8.0/go.mod h1:hAQOwgmaHhztFhiQ41CjDODdWP0+AE1B3sX4OFlq+GU= -cloud.google.com/go/security v1.9.0/go.mod h1:6Ta1bO8LXI89nZnmnsZGp9lVoVWXqsVbIq/t9dzI+2Q= -cloud.google.com/go/security v1.10.0/go.mod h1:QtOMZByJVlibUT2h9afNDWRZ1G96gVywH8T5GUSb9IA= -cloud.google.com/go/security v1.12.0/go.mod h1:rV6EhrpbNHrrxqlvW0BWAIawFWq3X90SduMJdFwtLB8= -cloud.google.com/go/securitycenter v1.13.0/go.mod h1:cv5qNAqjY84FCN6Y9z28WlkKXyWsgLO832YiWwkCWcU= -cloud.google.com/go/securitycenter v1.14.0/go.mod h1:gZLAhtyKv85n52XYWt6RmeBdydyxfPeTrpToDPw4Auc= -cloud.google.com/go/securitycenter v1.15.0/go.mod h1:PeKJ0t8MoFmmXLXWm41JidyzI3PJjd8sXWaVqg43WWk= -cloud.google.com/go/securitycenter v1.16.0/go.mod h1:Q9GMaLQFUD+5ZTabrbujNWLtSLZIZF7SAR0wWECrjdk= -cloud.google.com/go/securitycenter v1.18.1/go.mod h1:0/25gAzCM/9OL9vVx4ChPeM/+DlfGQJDwBy/UC8AKK0= -cloud.google.com/go/servicecontrol v1.4.0/go.mod h1:o0hUSJ1TXJAmi/7fLJAedOovnujSEvjKCAFNXPQ1RaU= -cloud.google.com/go/servicecontrol v1.5.0/go.mod h1:qM0CnXHhyqKVuiZnGKrIurvVImCs8gmqWsDoqe9sU1s= -cloud.google.com/go/servicecontrol v1.10.0/go.mod h1:pQvyvSRh7YzUF2efw7H87V92mxU8FnFDawMClGCNuAA= -cloud.google.com/go/servicecontrol v1.11.0/go.mod h1:kFmTzYzTUIuZs0ycVqRHNaNhgR+UMUpw9n02l/pY+mc= -cloud.google.com/go/servicedirectory v1.4.0/go.mod h1:gH1MUaZCgtP7qQiI+F+A+OpeKF/HQWgtAddhTbhL2bs= -cloud.google.com/go/servicedirectory v1.5.0/go.mod h1:QMKFL0NUySbpZJ1UZs3oFAmdvVxhhxB6eJ/Vlp73dfg= -cloud.google.com/go/servicedirectory v1.6.0/go.mod h1:pUlbnWsLH9c13yGkxCmfumWEPjsRs1RlmJ4pqiNjVL4= -cloud.google.com/go/servicedirectory v1.7.0/go.mod h1:5p/U5oyvgYGYejufvxhgwjL8UVXjkuw7q5XcG10wx1U= -cloud.google.com/go/servicedirectory v1.8.0/go.mod h1:srXodfhY1GFIPvltunswqXpVxFPpZjf8nkKQT7XcXaY= -cloud.google.com/go/servicemanagement v1.4.0/go.mod h1:d8t8MDbezI7Z2R1O/wu8oTggo3BI2GKYbdG4y/SJTco= -cloud.google.com/go/servicemanagement v1.5.0/go.mod h1:XGaCRe57kfqu4+lRxaFEAuqmjzF0r+gWHjWqKqBvKFo= -cloud.google.com/go/servicemanagement v1.6.0/go.mod h1:aWns7EeeCOtGEX4OvZUWCCJONRZeFKiptqKf1D0l/Jc= -cloud.google.com/go/serviceusage v1.3.0/go.mod h1:Hya1cozXM4SeSKTAgGXgj97GlqUvF5JaoXacR1JTP/E= -cloud.google.com/go/serviceusage v1.4.0/go.mod h1:SB4yxXSaYVuUBYUml6qklyONXNLt83U0Rb+CXyhjEeU= -cloud.google.com/go/serviceusage v1.5.0/go.mod h1:w8U1JvqUqwJNPEOTQjrMHkw3IaIFLoLsPLvsE3xueec= -cloud.google.com/go/shell v1.3.0/go.mod h1:VZ9HmRjZBsjLGXusm7K5Q5lzzByZmJHf1d0IWHEN5X4= -cloud.google.com/go/shell v1.4.0/go.mod h1:HDxPzZf3GkDdhExzD/gs8Grqk+dmYcEjGShZgYa9URw= -cloud.google.com/go/shell v1.6.0/go.mod h1:oHO8QACS90luWgxP3N9iZVuEiSF84zNyLytb+qE2f9A= -cloud.google.com/go/spanner v1.41.0/go.mod h1:MLYDBJR/dY4Wt7ZaMIQ7rXOTLjYrmxLE/5ve9vFfWos= -cloud.google.com/go/spanner v1.44.0/go.mod h1:G8XIgYdOK+Fbcpbs7p2fiprDw4CaZX63whnSMLVBxjk= -cloud.google.com/go/speech v1.6.0/go.mod h1:79tcr4FHCimOp56lwC01xnt/WPJZc4v3gzyT7FoBkCM= -cloud.google.com/go/speech v1.7.0/go.mod h1:KptqL+BAQIhMsj1kOP2la5DSEEerPDuOP/2mmkhHhZQ= -cloud.google.com/go/speech v1.8.0/go.mod h1:9bYIl1/tjsAnMgKGHKmBZzXKEkGgtU+MpdDPTE9f7y0= -cloud.google.com/go/speech v1.9.0/go.mod h1:xQ0jTcmnRFFM2RfX/U+rk6FQNUF6DQlydUSyoooSpco= -cloud.google.com/go/speech v1.14.1/go.mod h1:gEosVRPJ9waG7zqqnsHpYTOoAS4KouMRLDFMekpJ0J0= cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo= -cloud.google.com/go/storage v1.22.1/go.mod h1:S8N1cAStu7BOeFfE8KAQzmyyLkK8p/vmRq6kuBTW58Y= -cloud.google.com/go/storage v1.23.0/go.mod h1:vOEEDNFnciUMhBeT6hsJIn3ieU5cFRmzeLgDvXzfIXc= -cloud.google.com/go/storage v1.27.0/go.mod h1:x9DOL8TK/ygDUMieqwfhdpQryTeEkhGKMi80i/iqR2s= -cloud.google.com/go/storage v1.28.1/go.mod h1:Qnisd4CqDdo6BGs2AD5LLnEsmSQ80wQ5ogcBBKhU86Y= -cloud.google.com/go/storagetransfer v1.5.0/go.mod h1:dxNzUopWy7RQevYFHewchb29POFv3/AaBgnhqzqiK0w= -cloud.google.com/go/storagetransfer v1.6.0/go.mod h1:y77xm4CQV/ZhFZH75PLEXY0ROiS7Gh6pSKrM8dJyg6I= -cloud.google.com/go/storagetransfer v1.7.0/go.mod h1:8Giuj1QNb1kfLAiWM1bN6dHzfdlDAVC9rv9abHot2W4= -cloud.google.com/go/talent v1.1.0/go.mod h1:Vl4pt9jiHKvOgF9KoZo6Kob9oV4lwd/ZD5Cto54zDRw= -cloud.google.com/go/talent v1.2.0/go.mod h1:MoNF9bhFQbiJ6eFD3uSsg0uBALw4n4gaCaEjBw9zo8g= -cloud.google.com/go/talent v1.3.0/go.mod h1:CmcxwJ/PKfRgd1pBjQgU6W3YBwiewmUzQYH5HHmSCmM= -cloud.google.com/go/talent v1.4.0/go.mod h1:ezFtAgVuRf8jRsvyE6EwmbTK5LKciD4KVnHuDEFmOOA= -cloud.google.com/go/talent v1.5.0/go.mod h1:G+ODMj9bsasAEJkQSzO2uHQWXHHXUomArjWQQYkqK6c= -cloud.google.com/go/texttospeech v1.4.0/go.mod h1:FX8HQHA6sEpJ7rCMSfXuzBcysDAuWusNNNvN9FELDd8= -cloud.google.com/go/texttospeech v1.5.0/go.mod h1:oKPLhR4n4ZdQqWKURdwxMy0uiTS1xU161C8W57Wkea4= -cloud.google.com/go/texttospeech v1.6.0/go.mod h1:YmwmFT8pj1aBblQOI3TfKmwibnsfvhIBzPXcW4EBovc= -cloud.google.com/go/tpu v1.3.0/go.mod h1:aJIManG0o20tfDQlRIej44FcwGGl/cD0oiRyMKG19IQ= -cloud.google.com/go/tpu v1.4.0/go.mod h1:mjZaX8p0VBgllCzF6wcU2ovUXN9TONFLd7iz227X2Xg= -cloud.google.com/go/tpu v1.5.0/go.mod h1:8zVo1rYDFuW2l4yZVY0R0fb/v44xLh3llq7RuV61fPM= -cloud.google.com/go/trace v1.3.0/go.mod h1:FFUE83d9Ca57C+K8rDl/Ih8LwOzWIV1krKgxg6N0G28= -cloud.google.com/go/trace v1.4.0/go.mod h1:UG0v8UBqzusp+z63o7FK74SdFE+AXpCLdFb1rshXG+Y= -cloud.google.com/go/trace v1.8.0/go.mod h1:zH7vcsbAhklH8hWFig58HvxcxyQbaIqMarMg9hn5ECA= -cloud.google.com/go/translate v1.3.0/go.mod h1:gzMUwRjvOqj5i69y/LYLd8RrNQk+hOmIXTi9+nb3Djs= -cloud.google.com/go/translate v1.4.0/go.mod h1:06Dn/ppvLD6WvA5Rhdp029IX2Mi3Mn7fpMRLPvXT5Wg= -cloud.google.com/go/translate v1.5.0/go.mod h1:29YDSYveqqpA1CQFD7NQuP49xymq17RXNaUDdc0mNu0= -cloud.google.com/go/translate v1.6.0/go.mod h1:lMGRudH1pu7I3n3PETiOB2507gf3HnfLV8qlkHZEyos= -cloud.google.com/go/video v1.8.0/go.mod h1:sTzKFc0bUSByE8Yoh8X0mn8bMymItVGPfTuUBUyRgxk= -cloud.google.com/go/video v1.9.0/go.mod h1:0RhNKFRF5v92f8dQt0yhaHrEuH95m068JYOvLZYnJSw= -cloud.google.com/go/video v1.12.0/go.mod h1:MLQew95eTuaNDEGriQdcYn0dTwf9oWiA4uYebxM5kdg= -cloud.google.com/go/video v1.13.0/go.mod h1:ulzkYlYgCp15N2AokzKjy7MQ9ejuynOJdf1tR5lGthk= -cloud.google.com/go/videointelligence v1.6.0/go.mod h1:w0DIDlVRKtwPCn/C4iwZIJdvC69yInhW0cfi+p546uU= -cloud.google.com/go/videointelligence v1.7.0/go.mod h1:k8pI/1wAhjznARtVT9U1llUaFNPh7muw8QyOUpavru4= -cloud.google.com/go/videointelligence v1.8.0/go.mod h1:dIcCn4gVDdS7yte/w+koiXn5dWVplOZkE+xwG9FgK+M= -cloud.google.com/go/videointelligence v1.9.0/go.mod h1:29lVRMPDYHikk3v8EdPSaL8Ku+eMzDljjuvRs105XoU= -cloud.google.com/go/videointelligence v1.10.0/go.mod h1:LHZngX1liVtUhZvi2uNS0VQuOzNi2TkY1OakiuoUOjU= -cloud.google.com/go/vision v1.2.0/go.mod h1:SmNwgObm5DpFBme2xpyOyasvBc1aPdjvMk2bBk0tKD0= -cloud.google.com/go/vision/v2 v2.2.0/go.mod h1:uCdV4PpN1S0jyCyq8sIM42v2Y6zOLkZs+4R9LrGYwFo= -cloud.google.com/go/vision/v2 v2.3.0/go.mod h1:UO61abBx9QRMFkNBbf1D8B1LXdS2cGiiCRx0vSpZoUo= -cloud.google.com/go/vision/v2 v2.4.0/go.mod h1:VtI579ll9RpVTrdKdkMzckdnwMyX2JILb+MhPqRbPsY= -cloud.google.com/go/vision/v2 v2.5.0/go.mod h1:MmaezXOOE+IWa+cS7OhRRLK2cNv1ZL98zhqFFZaaH2E= -cloud.google.com/go/vision/v2 v2.6.0/go.mod h1:158Hes0MvOS9Z/bDMSFpjwsUrZ5fPrdwuyyvKSGAGMY= -cloud.google.com/go/vmmigration v1.2.0/go.mod h1:IRf0o7myyWFSmVR1ItrBSFLFD/rJkfDCUTO4vLlJvsE= -cloud.google.com/go/vmmigration v1.3.0/go.mod h1:oGJ6ZgGPQOFdjHuocGcLqX4lc98YQ7Ygq8YQwHh9A7g= -cloud.google.com/go/vmmigration v1.5.0/go.mod h1:E4YQ8q7/4W9gobHjQg4JJSgXXSgY21nA5r8swQV+Xxc= -cloud.google.com/go/vmwareengine v0.1.0/go.mod h1:RsdNEf/8UDvKllXhMz5J40XxDrNJNN4sagiox+OI208= -cloud.google.com/go/vmwareengine v0.2.2/go.mod h1:sKdctNJxb3KLZkE/6Oui94iw/xs9PRNC2wnNLXsHvH8= -cloud.google.com/go/vpcaccess v1.4.0/go.mod h1:aQHVbTWDYUR1EbTApSVvMq1EnT57ppDmQzZ3imqIk4w= -cloud.google.com/go/vpcaccess v1.5.0/go.mod h1:drmg4HLk9NkZpGfCmZ3Tz0Bwnm2+DKqViEpeEpOq0m8= -cloud.google.com/go/vpcaccess v1.6.0/go.mod h1:wX2ILaNhe7TlVa4vC5xce1bCnqE3AeH27RV31lnmZes= -cloud.google.com/go/webrisk v1.4.0/go.mod h1:Hn8X6Zr+ziE2aNd8SliSDWpEnSS1u4R9+xXZmFiHmGE= -cloud.google.com/go/webrisk v1.5.0/go.mod h1:iPG6fr52Tv7sGk0H6qUFzmL3HHZev1htXuWDEEsqMTg= -cloud.google.com/go/webrisk v1.6.0/go.mod h1:65sW9V9rOosnc9ZY7A7jsy1zoHS5W9IAXv6dGqhMQMc= -cloud.google.com/go/webrisk v1.7.0/go.mod h1:mVMHgEYH0r337nmt1JyLthzMr6YxwN1aAIEc2fTcq7A= -cloud.google.com/go/webrisk v1.8.0/go.mod h1:oJPDuamzHXgUc+b8SiHRcVInZQuybnvEW72PqTc7sSg= -cloud.google.com/go/websecurityscanner v1.3.0/go.mod h1:uImdKm2wyeXQevQJXeh8Uun/Ym1VqworNDlBXQevGMo= -cloud.google.com/go/websecurityscanner v1.4.0/go.mod h1:ebit/Fp0a+FWu5j4JOmJEV8S8CzdTkAS77oDsiSqYWQ= -cloud.google.com/go/websecurityscanner v1.5.0/go.mod h1:Y6xdCPy81yi0SQnDY1xdNTNpfY1oAgXUlcfN3B3eSng= -cloud.google.com/go/workflows v1.6.0/go.mod h1:6t9F5h/unJz41YqfBmqSASJSXccBLtD1Vwf+KmJENM0= -cloud.google.com/go/workflows v1.7.0/go.mod h1:JhSrZuVZWuiDfKEFxU0/F1PQjmpnpcoISEXH2bcHC3M= -cloud.google.com/go/workflows v1.8.0/go.mod h1:ysGhmEajwZxGn1OhGOGKsTXc5PyxOc0vfKf5Af+to4M= -cloud.google.com/go/workflows v1.9.0/go.mod h1:ZGkj1aFIOd9c8Gerkjjq7OW7I5+l6cSvT3ujaO/WwSA= -cloud.google.com/go/workflows v1.10.0/go.mod h1:fZ8LmRmZQWacon9UCX1r/g/DfAXx5VcPALq2CxzdePw= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= -gioui.org v0.0.0-20210308172011-57750fc8a0a6/go.mod h1:RSH6KIUZ0p2xy5zHDxgAM4zumjgTw83q2ge/PI+yyw8= -git.sr.ht/~sbinet/gg v0.3.1/go.mod h1:KGYtlADtqsqANL9ueOFkWymvzUvLMQllU5Ixo+8v3pc= github.com/Azure/azure-pipeline-go v0.2.1/go.mod h1:UGSo8XybXnIGZ3epmeBw7Jdz+HiUVpqIlpz/HKHylF4= github.com/Azure/azure-pipeline-go v0.2.2/go.mod h1:4rQ/NZncSvGqNkkOsNpOU1tgoNuIlp9AfUH5G1tvCHc= github.com/Azure/azure-storage-blob-go v0.7.0/go.mod h1:f9YQKtsG1nMisotuTPpO0tjNuEjKRYAcJU8/ydDI++4= @@ -536,64 +52,30 @@ github.com/Azure/go-autorest/tracing v0.5.0/go.mod h1:r/s2XiOKccPW3HrqB+W0TQzfbt github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= -github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c/go.mod h1:X0CRv0ky0k6m906ixxpzmDRLvX58TFUKS2eePweuyxk= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/OneOfOne/xxhash v1.2.5/go.mod h1:eZbhyaAYD41SGSSsnmcpxVoRiQ/MPUTjUdIIOT9Um7Q= github.com/SaveTheRbtz/mph v0.1.2 h1:5l3W496Up+7BNOVJQnJhzcGBh+wWfxWdmPUAkx3WmaM= github.com/SaveTheRbtz/mph v0.1.2/go.mod h1:V4+WtKQPe2+dEA5os1WnGsEB0NR9qgqqgIiSt73+sT4= github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg= github.com/VictoriaMetrics/fastcache v1.5.3/go.mod h1:+jv9Ckb+za/P1ZRg/sulP5Ni1v49daAVERr0H3CuscE= -github.com/ajstarks/deck v0.0.0-20200831202436-30c9fc6549a9/go.mod h1:JynElWSGnm/4RlzPXRlREEwqTHAN3T56Bv2ITsFT3gY= -github.com/ajstarks/deck/generate v0.0.0-20210309230005-c3f852c02e19/go.mod h1:T13YZdzov6OU0A1+RfKZiZN9ca6VeKdBdyDV+BY97Tk= -github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw= -github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b/go.mod h1:1KcenG0jGWcpt8ov532z81sp/kMMUG485J2InIOyADM= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/allegro/bigcache v1.2.1-0.20190218064605-e24eb225f156/go.mod h1:Cb/ax3seSYIx7SuZdm2G2xzfwmv3TPSk2ucNfQESPXM= -github.com/andybalholm/brotli v1.0.4/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig= -github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= -github.com/apache/arrow/go/v10 v10.0.1/go.mod h1:YvhnlEePVnBS4+0z3fhPfUy7W1Ikj0Ih0vcRo/gZ1M0= -github.com/apache/thrift v0.16.0/go.mod h1:PHK3hniurgQaNMZYaCLEqXKsYK8upmhPbmdP2FXSqgU= github.com/aristanetworks/goarista v0.0.0-20170210015632-ea17b1a17847/go.mod h1:D/tb0zPVXnP7fmsLZjtdUhSsumbK/ij54UXjjVgMGxQ= github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8= github.com/aws/aws-sdk-go v1.25.48/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= -github.com/aws/aws-sdk-go-v2 v1.17.3/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw= -github.com/aws/aws-sdk-go-v2 v1.17.7/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw= -github.com/aws/aws-sdk-go-v2/config v1.18.19/go.mod h1:XvTmGMY8d52ougvakOv1RpiTLPz9dlG/OQHsKU/cMmY= -github.com/aws/aws-sdk-go-v2/credentials v1.13.18/go.mod h1:vnwlwjIe+3XJPBYKu1et30ZPABG3VaXJYr8ryohpIyM= -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.1/go.mod h1:lfUx8puBRdM5lVVMQlwt2v+ofiG/X6Ms+dy0UkG/kXw= -github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.27/go.mod h1:a1/UpzeyBBerajpnP5nGZa9mGzsBn5cOKxm6NWQsvoI= -github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.31/go.mod h1:QT0BqUvX1Bh2ABdTGnjqEjvjzrCfIniM9Sc8zn9Yndo= -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.21/go.mod h1:+Gxn8jYn5k9ebfHEqlhrMirFjSW0v0C9fI+KN5vk2kE= -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.25/go.mod h1:zBHOPwhBc3FlQjQJE/D3IfPWiWaQmT06Vq9aNukDo0k= -github.com/aws/aws-sdk-go-v2/internal/ini v1.3.32/go.mod h1:XGhIBZDEgfqmFIugclZ6FU7v75nHhBDtzuB4xB/tEi4= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.25/go.mod h1:/95IA+0lMnzW6XzqYJRpjjsAbKEORVeO0anQqjd2CNU= -github.com/aws/aws-sdk-go-v2/service/kms v1.20.1/go.mod h1:13sjgMH7Xu4e46+0BEDhSnNh+cImHSYS5PpBjV3oXcU= -github.com/aws/aws-sdk-go-v2/service/sso v1.12.6/go.mod h1:Y1VOmit/Fn6Tz1uFAeCO6Q7M2fmfXSCLeL5INVYsLuY= -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.6/go.mod h1:Lh/bc9XUf8CfOY6Jp5aIkQtN+j1mc+nExc+KXj9jx2s= -github.com/aws/aws-sdk-go-v2/service/sts v1.18.7/go.mod h1:JuTnSoeePXmMVe9G8NcjjwgOKEfZ4cOjMuT2IBT/2eI= -github.com/aws/smithy-go v1.13.5/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= -github.com/bits-and-blooms/bitset v1.2.2/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= github.com/bits-and-blooms/bitset v1.5.0 h1:NpE8frKRLGHIcEzkR+gZhiioW1+WbYV6fKwD6ZIpQT8= github.com/bits-and-blooms/bitset v1.5.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= -github.com/boombuler/barcode v1.0.0/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= -github.com/boombuler/barcode v1.0.1/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= github.com/btcsuite/btcd v0.0.0-20171128150713-2e60448ffcc6/go.mod h1:Dmm/EzmjnCiweXmzRIAiUWCInVmPgjkzgv5k4tVyXiQ= github.com/btcsuite/btcd/btcec/v2 v2.2.1 h1:xP60mv8fvp+0khmrN0zTdPC3cNm24rfeE6lh2R/Yv3E= github.com/btcsuite/btcd/btcec/v2 v2.2.1/go.mod h1:9/CSmJxmuvqzX9Wh2fXMWToLOHhPd11lSPuIupwTkI8= -github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1/go.mod h1:7SFka0XMvUgj3hfZtydOrQY2mwhPclbT2snogU7SQQc= -github.com/bytecodealliance/wasmtime-go/v7 v7.0.0/go.mod h1:bu6fic7trDt20w+LMooX7j3fsOwv4/ln6j8gAdP6vmA= -github.com/c-bata/go-prompt v0.2.5/go.mod h1:vFnjEGDIIA/Lib7giyE4E9c50Lvl8j0S+7FVlAwDAVw= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/census-instrumentation/opencensus-proto v0.3.0/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/census-instrumentation/opencensus-proto v0.4.1/go.mod h1:4T9NM4+4Vw91VeyqjLS6ao50K5bOcLKN6Q42XnYaRYw= github.com/cespare/cp v0.1.0/go.mod h1:SOGHArjBr4JWaSDEVpWpo/hNg6RoKrls6Oh40hiwW+s= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= github.com/cespare/xxhash/v2 v2.0.1-0.20190104013014-3767db7a7e18/go.mod h1:HD5P3vAIAh+Y2GAxg0PrPN1P8WkepXGpjbUPDHJqqKM= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= -github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= @@ -602,15 +84,6 @@ github.com/cloudflare/cloudflare-go v0.10.2-0.20190916151808-a80f83b9add9/go.mod github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= -github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= -github.com/cncf/udpa/go v0.0.0-20220112060539-c52dc94e7fbe/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= -github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20210805033703-aa0b78936158/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211001041855-01bcc9b48dfe/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20220314180256-7f1daf1720fc/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= -github.com/cncf/xds/go v0.0.0-20230105202645-06c439db220b/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk= @@ -620,17 +93,7 @@ github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfc github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= -github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= -github.com/dave/astrid v0.0.0-20170323122508-8c2895878b14/go.mod h1:Sth2QfxfATb/nW4EsrSi2KyJmbcniZ8TgTaji17D6ms= -github.com/dave/brenda v1.1.0/go.mod h1:4wCUr6gSlu5/1Tk7akE5X7UorwiQ8Rij0SKH3/BGMOM= -github.com/dave/courtney v0.3.0/go.mod h1:BAv3hA06AYfNUjfjQr+5gc6vxeBVOupLqrColj+QSD8= -github.com/dave/dst v0.27.2/go.mod h1:jHh6EOibnHgcUW3WjKHisiooEkYwqpHLBSX1iOBhEyc= -github.com/dave/gopackages v0.0.0-20170318123100-46e7023ec56e/go.mod h1:i00+b/gKdIDIxuLDFob7ustLAVqhsZRk2qVZrArELGQ= -github.com/dave/jennifer v1.5.0/go.mod h1:4MnyiFIlZS3l5tSDn8VnzE6ffAhYBMB2SZntBsZGUok= -github.com/dave/kerr v0.0.0-20170318121727-bc25dd6abe8e/go.mod h1:qZqlPyPvfsDJt+3wHJ1EvSXDuVjFTK0j2p/ca+gtsb8= -github.com/dave/patsy v0.0.0-20210517141501-957256f50cba/go.mod h1:qfR88CgEGLoiqDaE+xxDCi5QA5v4vUoW0UCX2Nd5Tlc= -github.com/dave/rebecca v0.9.1/go.mod h1:N6XYdMD/OKw3lkF3ywh8Z6wPGuwNFDNtWYEMFWEmXBA= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= @@ -642,9 +105,7 @@ github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZm github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= github.com/dlclark/regexp2 v1.2.0/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc= github.com/docker/docker v1.4.2-0.20180625184442-8e610b2b55bf/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= -github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= github.com/dop251/goja v0.0.0-20200219165308-d1232e640a87/go.mod h1:Mw6PkjjMXWbTj+nnj4s3QPXq1jaT0s5pC0iFD4+BOAA= -github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= github.com/edsrzf/mmap-go v0.0.0-20160512033002-935e0e8a636c/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= github.com/elastic/gosigar v0.8.1-0.20180330100440-37f05ff46ffa/go.mod h1:cdorVVzy1fhmEqmtgqkoE3bYtCfSCkVyjTyCIo22xvs= github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= @@ -652,59 +113,33 @@ github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.m github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= -github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= -github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= -github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0= -github.com/envoyproxy/go-control-plane v0.10.2-0.20220325020618-49ff273808a1/go.mod h1:KJwIaB5Mv44NWtYuAOFCVOjcI94vtpEz2JU/D2v6IjE= -github.com/envoyproxy/go-control-plane v0.10.3/go.mod h1:fJJn/j26vwOu972OllsvAgJJM//w9BV6Fxbg2LuVd34= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= -github.com/envoyproxy/protoc-gen-validate v0.6.7/go.mod h1:dyJXwwfPK2VSqiB9Klm1J6romD608Ba7Hij42vrOBCo= -github.com/envoyproxy/protoc-gen-validate v0.9.1/go.mod h1:OKNgG7TCp5pF4d6XftA0++PMirau2/yoOwVac3AbF2w= github.com/ethereum/go-ethereum v1.9.13 h1:rOPqjSngvs1VSYH2H+PMPiWt4VEulvNRbFgqiGqJM3E= github.com/ethereum/go-ethereum v1.9.13/go.mod h1:qwN9d1GLyDh0N7Ab8bMGd0H9knaji2jOBm2RrMGjXls= github.com/fatih/color v1.3.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= github.com/fjl/memsize v0.0.0-20180418122429-ca190fb6ffbc/go.mod h1:VvhXpOYNQvB+uIk2RvXzuaQtkQJzzIx6lSBe1xv7hi0= -github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= -github.com/fogleman/gg v1.3.0/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= -github.com/fxamacker/cbor/v2 v2.4.1-0.20220515183430-ad2eae63303f/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c h1:5tm/Wbs9d9r+qZaUFXk59CWDD0+77PBqDREffYkyi5c= github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= github.com/fxamacker/circlehash v0.3.0 h1:XKdvTtIJV9t7DDUtsf0RIpC1OcxZtPbmgIH7ekx28WA= github.com/fxamacker/circlehash v0.3.0/go.mod h1:3aq3OfVvsWtkWMb6A1owjOQFA+TLsD5FgJflnaQwtMM= github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff/go.mod h1:x7DCsMOv1taUwEWCzT4cmDeAkigA5/QCwUodaVOe8Ww= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= -github.com/go-fonts/dejavu v0.1.0/go.mod h1:4Wt4I4OU2Nq9asgDCteaAaWZOV24E+0/Pwo0gppep4g= -github.com/go-fonts/latin-modern v0.2.0/go.mod h1:rQVLdDMK+mK1xscDwsqM5J8U2jrRa3T0ecnM9pNujks= -github.com/go-fonts/liberation v0.1.1/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= -github.com/go-fonts/liberation v0.2.0/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= -github.com/go-fonts/stix v0.1.0/go.mod h1:w/c1f0ldAUlJmLBvlbkvVXLAD+tAMqobIIQpmnUIzUY= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= -github.com/go-latex/latex v0.0.0-20210118124228-b3d85cf34e07/go.mod h1:CO1AlKB2CSIqUrmQPqA0gdRIlnLEY0gK5JGjh37zN5U= -github.com/go-latex/latex v0.0.0-20210823091927-c0d11ff05a81/go.mod h1:SX0U8uGpxhq9o2S/CELCSUxEWWAuoCUcVCQWv7G2OCk= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= -github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= -github.com/go-logr/logr v1.2.3/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= -github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= github.com/go-ole/go-ole v1.2.1/go.mod h1:7FAglXiTm7HKlQRDeOQ6ZNUHidzCWXuZWq/1dTyBNF8= -github.com/go-pdf/fpdf v0.5.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= -github.com/go-pdf/fpdf v0.6.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= github.com/go-sourcemap/sourcemap v2.1.2+incompatible/go.mod h1:F8jJfvm2KbVjc5NqelyYJmf/v5J0dwNLS2mL4sNA1Jg= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= -github.com/go-test/deep v1.0.5/go.mod h1:QV8Hv/iy04NyLBxAdO9njL0iVPN1S4d/A3NVv1V36o8= github.com/go-test/deep v1.1.0 h1:WOcxcdHcvdgThNXjw0t76K42FXTU7HpNQWHpA2HHNlg= github.com/go-test/deep v1.1.0/go.mod h1:5C2ZWiW0ErCdrYzpqxLbTX7MG14M9iiw8DgHncVwcsE= -github.com/goccy/go-json v0.9.11/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= -github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4= github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= @@ -716,8 +151,6 @@ github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= -github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= -github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2-0.20190517061210-b285ee9cfc6c/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= @@ -733,15 +166,9 @@ github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvq github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= -github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= -github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= -github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= -github.com/google/flatbuffers v2.0.8+incompatible/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= @@ -750,19 +177,11 @@ github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/ github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE= -github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= -github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= -github.com/google/martian/v3 v3.2.1/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= -github.com/google/martian/v3 v3.3.2/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= @@ -773,31 +192,10 @@ github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hf github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/googleapis/enterprise-certificate-proxy v0.0.0-20220520183353-fd19c99a87aa/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= -github.com/googleapis/enterprise-certificate-proxy v0.1.0/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= -github.com/googleapis/enterprise-certificate-proxy v0.2.0/go.mod h1:8C0jb7/mgJe/9KK8Lm7X9ctZC2t60YyIpYEI16jx0Qg= -github.com/googleapis/enterprise-certificate-proxy v0.2.1/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= -github.com/googleapis/enterprise-certificate-proxy v0.2.3/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= -github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= -github.com/googleapis/gax-go/v2 v2.1.1/go.mod h1:hddJymUZASv3XPyGkUpKj8pPO47Rmb0eJc8R6ouapiM= -github.com/googleapis/gax-go/v2 v2.2.0/go.mod h1:as02EH8zWkzwUoLbBaFeQ+arQaj/OthfcblKl4IGNaM= -github.com/googleapis/gax-go/v2 v2.3.0/go.mod h1:b8LNqSzNabLiUpXKkY7HAR5jr6bIT99EXz9pXxye9YM= -github.com/googleapis/gax-go/v2 v2.4.0/go.mod h1:XOTVJ59hdnfJLIP/dh8n5CGryZR2LxK9wbMD5+iXC6c= -github.com/googleapis/gax-go/v2 v2.5.1/go.mod h1:h6B0KMMFNtI2ddbGJn3T3ZbwkeT6yqEF02fYlzkUCyo= -github.com/googleapis/gax-go/v2 v2.6.0/go.mod h1:1mjbznJAPHFpesgE5ucqfYEscaz5kMdcIDwU/6+DDoY= -github.com/googleapis/gax-go/v2 v2.7.0/go.mod h1:TEop28CZZQ2y+c0VxMUmu1lV+fQx57QpBWsYpwqHJx8= -github.com/googleapis/gax-go/v2 v2.7.1/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= -github.com/googleapis/go-type-adapters v1.0.0/go.mod h1:zHW75FOG2aur7gAO2B+MLby+cLsWGBF62rFAi7WjWO4= github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= github.com/gorilla/websocket v1.4.1-0.20190629185528-ae1634f6a989/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= @@ -805,9 +203,6 @@ github.com/graph-gophers/graphql-go v0.0.0-20191115155744-f33e81362277/go.mod h1 github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= -github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0/go.mod h1:hgWBS7lorOAVIJEQMi4ZsPv9hVvWI6+ch50m39Pf2Ks= -github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3/go.mod h1:o//XUCC/F+yRGJoPO/VU0GSB0f8Nhgmxx0VIRUvaC0w= github.com/hashicorp/golang-lru v0.0.0-20160813221303-0a025b7e63ad/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= @@ -815,7 +210,6 @@ github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/huin/goupnp v0.0.0-20161224104101-679507af18f3/go.mod h1:MZ2ZmwcBpvOoJ22IJsc7va19ZwoheaBk43rKg12SKag= -github.com/iancoleman/strcase v0.2.0/go.mod h1:iwCmte+B7n89clKwxIoIXy/HfoL7AsD47ZCWhYzw7ho= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM= @@ -823,33 +217,20 @@ github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANyt github.com/influxdata/influxdb v1.2.3-0.20180221223340-01288bdb0883/go.mod h1:qZna6X/4elxqT3yI9iZYdZrWWdeFOOprn86kgg4+IzY= github.com/jackpal/go-nat-pmp v1.0.2-0.20160603034137-1fa385a6f458/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc= github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= -github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= -github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= github.com/julienschmidt/httprouter v1.1.1-0.20170430222011-975b5c4c7c21/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= -github.com/jung-kurt/gofpdf v1.0.0/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= -github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 h1:uC1QfSlInpQF+M0ao65imhwqKnz3Q2z/d8PWZRMQvDM= -github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88/go.mod h1:3w7q1U84EfirKl04SVQ/s7nPm1ZPhiXd34z40TNz36k= -github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213/go.mod h1:vNUNkEQ1e29fT/6vq2aBdFsgNPmy8qMdSay1npru+Sw= github.com/k0kubun/pp v3.0.1+incompatible h1:3tqvf7QgUnZ5tXO6pNAZlrvHgl6DvifjDrd9g2S9Z40= github.com/k0kubun/pp v3.0.1+incompatible/go.mod h1:GWse8YhT0p8pT4ir3ZgBbfZild3tgzSScAn6HmfYukg= -github.com/k0kubun/pp/v3 v3.2.0/go.mod h1:ODtJQbQcIRfAD3N+theGCV1m/CBxweERz2dapdz1EwA= github.com/karalabe/usb v0.0.0-20190919080040-51dc0efba356/go.mod h1:Od972xHfMJowv7NGVDiWVxk2zxnWgjLlJzE+F4F7AGU= -github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8= -github.com/kevinburke/go-bindata v3.22.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= github.com/kevinburke/go-bindata v3.24.0+incompatible h1:qajFA3D0pH94OTLU4zcCCKCDgR+Zr2cZK/RPJHDdFoY= github.com/kevinburke/go-bindata v3.24.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= -github.com/klauspost/asmfmt v1.3.2/go.mod h1:AG8TuvYojzulgDAMCnYn50l/5QV3Bs/tp6j0HLHbNSE= -github.com/klauspost/compress v1.15.9/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHUDtV4Yw2GlzU= -github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= github.com/klauspost/cpuid/v2 v2.0.12/go.mod h1:g2LTdtYhdyuGPqyWyv7qRAmj1WBqxuObKfj5c0PQa7c= -github.com/klauspost/cpuid/v2 v2.2.0/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY= github.com/klauspost/cpuid/v2 v2.2.4 h1:acbojRNwl3o09bUq+yDCtZFc1aiwaAAxtcn8YkZXnvk= github.com/klauspost/cpuid/v2 v2.2.4/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY= github.com/konsorten/go-windows-terminal-sequences v1.0.1 h1:mweAR1A6xJ3oS2pRaGiHgQ4OO8tzTaLawm8vnODuwDk= @@ -857,70 +238,45 @@ github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxv github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= -github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0= -github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= -github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= github.com/leanovate/gopter v0.2.9 h1:fQjYxZaynp97ozCzfOyOuAGOU4aU/z37zf/tOujFk7c= -github.com/leanovate/gopter v0.2.9/go.mod h1:U2L/78B+KVFIx2VmW6onHJQzXtFb+p5y3y2Sh+Jxxv8= github.com/logrusorgru/aurora/v4 v4.0.0 h1:sRjfPpun/63iADiSvGGjgA1cAYegEWMPCJdUpJYn9JA= github.com/logrusorgru/aurora/v4 v4.0.0/go.mod h1:lP0iIa2nrnT/qoFXcOZSrZQpJ1o6n2CUf/hyHi2Q4ZQ= -github.com/lyft/protoc-gen-star v0.6.0/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= -github.com/lyft/protoc-gen-star v0.6.1/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= github.com/magiconair/properties v1.8.0 h1:LLgXmsheXeRoUOBOjtwPQCWIYqM/LU1ayDtDePerRcY= github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= github.com/mattn/go-colorable v0.1.0/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= -github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= -github.com/mattn/go-colorable v0.1.7/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= github.com/mattn/go-ieproxy v0.0.0-20190610004146-91bb50d98149/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= github.com/mattn/go-ieproxy v0.0.0-20190702010315-6dee0af9227d/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= github.com/mattn/go-isatty v0.0.5-0.20180830101745-3fb116b82035/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= -github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= -github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84= -github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= -github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= github.com/mattn/go-isatty v0.0.16 h1:bq3VjFmv/sOjHtdEhmkEV4x1AJtvUvOJ2PFAZ5+peKQ= github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= github.com/mattn/go-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= -github.com/mattn/go-runewidth v0.0.6/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= -github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= -github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= -github.com/mattn/go-sqlite3 v1.14.14/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU= -github.com/mattn/go-tty v0.0.3/go.mod h1:ihxohKRERHTVzN+aSVRwACLCeqIoZAWpoICkkvrWyR0= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8/go.mod h1:mC1jAcsrzbxHt8iiaC+zU4b1ylILSosueou12R++wfY= -github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3/go.mod h1:RagcQ7I8IeTMnF8JTXieKnO4Z6JCsikNEzj0DwauVzE= -github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db/go.mod h1:l0dey0ia/Uv7NcFFVbCLtqEBQbrT4OCwCSKTEv6enCw= github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/mitchellh/mapstructure v1.1.2 h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE= github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/naoina/go-stringutil v0.1.0/go.mod h1:XJ2SJL9jCtBh+P9q5btrd/Ylo8XwT/h1USek5+NqSA0= github.com/naoina/toml v0.1.2-0.20170918210437-9fafd6967416/go.mod h1:NBIhNtsFMo3G2szEBne+bO4gS192HuIYRqfvOWb4i1E= -github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/olekukonko/tablewriter v0.0.2-0.20190409134802-7e037d187b0c/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f h1:Z8/PgTqOgOg02MTRpTBYO2k16FE6z4wEOtaC2WBR9Xo= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f/go.mod h1:xvP61FoOs95K7IYdIYRnNcYQGf4nbF/uuJ0tHf4DRuM= -github.com/onflow/cadence v0.41.0-stable-cadence.1.0.20230908213403-8f1134670ed0 h1:8Mniwp17wrjLAv/KgCcZ6JH47/EjgCgkX0AXLfSXJEM= -github.com/onflow/cadence v0.41.0-stable-cadence.1.0.20230908213403-8f1134670ed0/go.mod h1:Q5Up9Kt+J6zuAFmgrsiKz6t//E/hR5/iuVjH62pdztk= -github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230915213126-68e7ffb5595f h1:uHRzlxqvV+trNBEqlLstf92lwlkZtNV2ljQetjVCLxo= -github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.1.0.20230915213126-68e7ffb5595f/go.mod h1:tc3I2xIc+ThMUIW2Jkam1pquKpuRDTLGP79INkCGZg4= +github.com/onflow/cadence v1.0.0-preview.1 h1:Y/q/43aDc93/1Atsxx3+e2V/dZiQuF1TqkXEVboA5pY= +github.com/onflow/cadence v1.0.0-preview.1/go.mod h1:Q5Up9Kt+J6zuAFmgrsiKz6t//E/hR5/iuVjH62pdztk= +github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2 h1:vUVO6m85BiT8c50Oc8YGc3CU+sGqiKW9FZbmiRph2dU= +github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2/go.mod h1:mbLrR3MkYbi9LH3yasDj1jrR4QTR8vjRLVFCm4jMHn0= github.com/onflow/flow-go/crypto v0.24.7 h1:RCLuB83At4z5wkAyUCF7MYEnPoIIOHghJaODuJyEoW0= github.com/onflow/flow-go/crypto v0.24.7/go.mod h1:fqCzkIBBMRRkciVrvW21rECKq1oD7Q6u+bCI78lfNX0= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230915224343-ca2663ed82cf h1:G3RFroB2Aj1d9CyJwl9JcZYWiOF75TB6L84/QSBUPds= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230915224343-ca2663ed82cf/go.mod h1:W7S4wW94sefM+/uAdtrQP1S2I4aVbYJPxWlyNAUT0yI= -github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= -github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= @@ -929,18 +285,11 @@ github.com/pborman/uuid v0.0.0-20170112150404-1b00554d8222/go.mod h1:VyrYX9gd7ir github.com/pelletier/go-toml v1.2.0 h1:T5zMGML61Wp+FlcbWjRDT7yAxhJNAiPPLOFECq181zc= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= github.com/peterh/liner v1.1.1-0.20190123174540-a2c9a5303de7/go.mod h1:CRroGNssyjTd/qIG2FyxByd2S8JEAZXBl4qUrZf8GS0= -github.com/phpdave11/gofpdf v1.4.2/go.mod h1:zpO6xFn9yxo3YLyMvW8HcKWVdbNqgIfOOp2dXMnm1mY= -github.com/phpdave11/gofpdi v1.0.12/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= -github.com/phpdave11/gofpdi v1.0.13/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= -github.com/pierrec/lz4/v4 v4.1.15/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= -github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI= github.com/pkg/sftp v1.13.1/go.mod h1:3HaPG6Dq1ILlpPZRO0HVMrsydcdLt6HRDccSgb87qRg= -github.com/pkg/term v1.1.0/go.mod h1:E25nymQcrSllhX42Ok8MRm1+hyBdHY0dCeiKZ9jpNGw= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= @@ -948,7 +297,6 @@ github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDf github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= @@ -957,37 +305,24 @@ github.com/prometheus/tsdb v0.6.2-0.20190402121629-4f204dcbc150/go.mod h1:qhTCs0 github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= github.com/psiemens/sconfig v0.1.0 h1:xfWqW+TRpih7mXZIqKYTmpRhlZLQ1kbxV8EjllPv76s= github.com/psiemens/sconfig v0.1.0/go.mod h1:+MLKqdledP/8G3rOBpknbLh0IclCf4WneJUtS26JB2U= -github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= -github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= -github.com/rivo/uniseg v0.2.1-0.20211004051800-57c86be7915a/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= github.com/rivo/uniseg v0.4.4 h1:8TfxU8dW6PdqD27gjM8MVNuicgxIjxpm4K7x4jp8sis= github.com/rivo/uniseg v0.4.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= github.com/rjeczalik/notify v0.9.1/go.mod h1:rKwnCoCGeuQnwBtTSPL9Dad03Vh2n40ePRrjvIXnJho= github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= -github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= -github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= github.com/rs/cors v0.0.0-20160617231935-a62a804a8a00/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= github.com/rs/xhandler v0.0.0-20160618193221-ed27b6fd6521/go.mod h1:RvLn4FgxWubrpZHtQLnOf6EwhN2hEMusxZOhcW9H3UQ= github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= -github.com/ruudk/golang-pdf417 v0.0.0-20181029194003-1af4ab5afa58/go.mod h1:6lfFZQK844Gfx8o5WFuvpxWRwnSoipWe/p622j1v06w= -github.com/ruudk/golang-pdf417 v0.0.0-20201230142125-a7e3863a1245/go.mod h1:pQAZKsJ8yyVxGRWYNEm9oFB8ieLgKFnamEyDmSA0BRk= -github.com/schollz/progressbar/v3 v3.8.3/go.mod h1:pWnVCjSBZsT2X3nx9HfRdnCDrpbevliMeoEVhStwHko= -github.com/sergi/go-diff v1.2.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.2 h1:SPIRibHv4MatM3XXNO2BJeFLZwZ2LvZgfQ5+UNI2im4= -github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spaolacci/murmur3 v1.0.1-0.20190317074736-539464a789e9/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= -github.com/spf13/afero v1.3.3/go.mod h1:5KUK8ByomD5Ti5Artl0RtHeI5pTF7MIDuXL3yY520V4= -github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= github.com/spf13/afero v1.9.2 h1:j49Hj62F0n+DaZ1dDCvhABaPNSGNkt32oRFxI33IEMw= github.com/spf13/afero v1.9.2/go.mod h1:iUV7ddyEEZPO5gA3zD4fJt6iStLlL+Lg4m2cihcDf8Y= github.com/spf13/cast v1.3.0 h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8= @@ -1008,27 +343,19 @@ github.com/steakknife/bloomfilter v0.0.0-20180922174646-6819c0d2a570/go.mod h1:8 github.com/steakknife/hamming v0.0.0-20180906055917-c99c65617cd3/go.mod h1:hpGUWaI9xL8pRQCTXQgocU38Qw1g0Us7n5PxxTwTCYU= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= -github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= -github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= -github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= -github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= github.com/supranational/blst v0.3.10 h1:CMciDZ/h4pXDDXQASe8ZGTNKUiVNxVVA5hpci2Uuhuk= -github.com/supranational/blst v0.3.10/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= github.com/syndtr/goleveldb v1.0.1-0.20190923125748-758128399b1d/go.mod h1:9OrXJhf154huy1nPWmuSrkgjPUtUNhA+Zmy+6AESzuA= github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c h1:HelZ2kAFadG0La9d+4htN4HzQ68Bm2iM9qKMSMES6xg= github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c/go.mod h1:JlzghshsemAMDGZLytTFY8C1JQxQPhnatWqNwUXjggo= -github.com/tidwall/pretty v1.2.1/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU= github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d h1:5JInRQbk5UBX8JfUvKh2oYTLMVwj3p6n+wapDDm7hko= github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d/go.mod h1:Nlx5Y115XQvNcIdIy7dZXaNSUpzwBSge4/Ivk93/Yog= @@ -1045,12 +372,8 @@ github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= -github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= -github.com/yuin/goldmark v1.4.1/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= -github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= github.com/zeebo/assert v1.1.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ= -github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= github.com/zeebo/blake3 v0.2.3 h1:TFoLXsjeXqRNFxSbk35Dk4YtszE/MQQGK10BH4ptoTg= github.com/zeebo/blake3 v0.2.3/go.mod h1:mjJjZpnsyIVtVgTOSpJ9vmRE4wgDeyt2HU3qXvvKCaQ= github.com/zeebo/pcg v1.0.1 h1:lyqfGeWiv4ahac6ttHs+I5hwtH/+1mrhlCtVNQM2kHo= @@ -1064,18 +387,10 @@ go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= -go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= -go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= -go.opentelemetry.io/otel v1.8.0/go.mod h1:2pkj+iMj0o03Y+cW6/m8Y4WkRdYN3AvCXCnzRMp9yvM= go.opentelemetry.io/otel v1.14.0 h1:/79Huy8wbf5DnIPhemGB+zEPVwnN6fuQybr/SRXa6hM= go.opentelemetry.io/otel v1.14.0/go.mod h1:o4buv+dJzx8rohcUeRmWUZhqupFvzWis188WlggnNeU= -go.opentelemetry.io/otel/trace v1.8.0/go.mod h1:0Bt3PXY8w+3pheS3hQUt+wow8b1ojPaTBoTCh2zIFI4= -go.opentelemetry.io/otel/trace v1.14.0/go.mod h1:8avnQLK+CG77yNLUae4ea2JDQ6iT+gozhnZjy/rw9G8= -go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= -go.opentelemetry.io/proto/otlp v0.15.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/goleak v1.1.10 h1:z+mqJhf6ss6BSfSM671tgKyZBFPTTJM+HLxnhPC3wu0= -go.uber.org/goleak v1.1.10/go.mod h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A= go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= @@ -1083,49 +398,27 @@ golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnf golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200311171314-f7b00557c8c4/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= -golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= -golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw= golang.org/x/crypto v0.7.0 h1:AvwMYaRytfdeVt3u6mLaxYtErKYjxA2OXjJ1HHq6t3A= golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= -golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190125153040-c74c464bbbf2/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= -golang.org/x/exp v0.0.0-20191002040644-a1355ae1e2c3/go.mod h1:NOZ3BPKG0ec/BKJQgnvsSFpcKLM5xXVWnvZS97DWHgE= golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= -golang.org/x/exp v0.0.0-20220827204233-334a2380cb91/go.mod h1:cyybsKvd6eL0RnXn6p/Grxp8F5bW7iYuBgsNCOHpMYE= -golang.org/x/exp v0.0.0-20221110155412-d0897a79cd37/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= golang.org/x/exp v0.0.0-20230321023759-10a507213a29 h1:ooxPy7fPvB4kwsA2h+iBNHkAbp/4JxTSwCmvdjEYmug= golang.org/x/exp v0.0.0-20230321023759-10a507213a29/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= -golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20190910094157-69e4b8554b2a/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20200119044424-58c23975cae1/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20200430140353-33d19683fad8/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20200618115811-c13761719519/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20201208152932-35266b937fa6/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20210216034530-4410531fe030/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= -golang.org/x/image v0.0.0-20210607152325-775e3b0c77b9/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= -golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= -golang.org/x/image v0.0.0-20211028202545-6944b10bf410/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= -golang.org/x/image v0.0.0-20220302094943-723b81ca9867/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= @@ -1138,7 +431,6 @@ golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPI golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 h1:VLliZ0d+/avPrXXH+OakdXhpJuEoBZuwh1m2j7U6Iug= -golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= @@ -1149,14 +441,7 @@ golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.5.0/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= -golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= -golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= -golang.org/x/mod v0.6.0/go.mod h1:4mET923SAdbXp2ki8ey+zGs1SLqsuM2Y0uvdZR/fUNI= -golang.org/x/mod v0.7.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/mod v0.8.0 h1:LUYupSeNrTNCGzR/hVBk2NHZO4hXcVaW1k4Qx7rjPx8= -golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -1189,35 +474,9 @@ golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81R golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= -golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= -golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= -golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220325170049-de3da57026de/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220412020605-290c469a71a5/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= -golang.org/x/net v0.0.0-20220607020251-c690dde0001d/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220617184016-355a448f1bc9/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= -golang.org/x/net v0.0.0-20220909164309-bea034e7d591/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= -golang.org/x/net v0.0.0-20221012135044-0b7e1fb9d458/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= -golang.org/x/net v0.0.0-20221014081412-f15817d10f9b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= -golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco= -golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY= -golang.org/x/net v0.5.0/go.mod h1:DivGGAXEgPSlEBzxGzZI+ZLohi+xUj054jfeKui00ws= -golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= -golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= -golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -1227,25 +486,6 @@ golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= -golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= -golang.org/x/oauth2 v0.0.0-20220608161450-d0670ef3b1eb/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= -golang.org/x/oauth2 v0.0.0-20220622183110-fd043fe589d2/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= -golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.0.0-20221006150949-b44042a4b9c1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= -golang.org/x/oauth2 v0.4.0/go.mod h1:RznEsdpjGAINPTOF0UH/t+xJ75L18YO3Ho6Pyn+uRec= -golang.org/x/oauth2 v0.5.0/go.mod h1:9/XBHVqLaWO3/BRHs5jbpYCnOZVjj5V0ndyaAM7KB4I= -golang.org/x/oauth2 v0.6.0/go.mod h1:ycmewcwgD4Rpr3eZJLSB4Kyyljb3qDh40vJ8STE5HKw= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -1256,12 +496,6 @@ golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -1269,22 +503,17 @@ golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5h golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181205085412-a5c9d58dba9a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -1298,94 +527,33 @@ golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200909081042-eff7692f9009/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20200918174421-af09f7315aff/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210304124612-50617c2ba197/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210910150752-751e447fb3d0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211210111614-af8b64212486/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220502124256-b6088ccd6cba/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220624220833-87e55d714810/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220829200755-d48e67d00261/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.4.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= -golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= -golang.org/x/term v0.4.0/go.mod h1:9P2UbLfCdcvo3p/nzKvsmas4TnlujnuoV9hGgYzW1lQ= -golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= -golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= -golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.5.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.6.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.8.0 h1:57P1ETyNKtuIjB4SRd15iJxuhj8Gc416Y78H3qgMh68= golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.0.0-20220922220347-f3bd1da661af/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/time v0.1.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20180525024113-a5b4c53f6e8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190206041539-40960b6deb8e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= @@ -1398,9 +566,7 @@ golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgw golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20190927191325-030b2cf1153e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191108193012-7d206e10da11/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= @@ -1428,42 +594,18 @@ golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20201124115921-2c860bdd6e78/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= -golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= -golang.org/x/tools v0.1.8/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= -golang.org/x/tools v0.1.9/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= -golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= -golang.org/x/tools v0.2.0/go.mod h1:y4OqIKeOV/fWJetJ8bXPU1sEVniLMIyDAZWeHdV+NTA= -golang.org/x/tools v0.3.0/go.mod h1:/rWhSS2+zyEVwoJf8YAX6L2f0ntZ7Kn/mGgAWcipA5k= golang.org/x/tools v0.6.0 h1:BOw41kyTf3PuCW1pVQf8+Cyg8pMlkYB1oo9iJ6D/lKM= -golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= -golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= -gonum.org/v1/gonum v0.0.0-20180816165407-929014505bf4/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo= -gonum.org/v1/gonum v0.6.1/go.mod h1:9mxDZsDKxgMAuccQkewq682L+0eCu4dCN2yonUJTCLU= -gonum.org/v1/gonum v0.8.2/go.mod h1:oe/vMfY3deqTw+1EZJhuvEW2iwGF1bW9wwu7XCu0+v0= -gonum.org/v1/gonum v0.9.3/go.mod h1:TZumC3NeyVQskjXqmyWt4S3bINhy7B4eYwW69EbyX+0= -gonum.org/v1/gonum v0.11.0/go.mod h1:fSG4YDCxxUZQJ7rKsQrj0gMOg00Il0Z96/qMA4bVQhA= -gonum.org/v1/netlib v0.0.0-20190313105609-8cb42192e0e0/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= -gonum.org/v1/plot v0.0.0-20190515093506-e2840ee46a6b/go.mod h1:Wt8AAjI+ypCyYX3nZBvf6cAIx93T+c/OS2HFAYskSZc= -gonum.org/v1/plot v0.9.0/go.mod h1:3Pcqqmp6RHvJI72kgb8fThyUnav364FOsdDo2aGW5lY= -gonum.org/v1/plot v0.10.1/go.mod h1:VZW5OlhkL1mysU9vaqNHnsy86inf6Ot+jB3r+BczCEo= google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= @@ -1483,44 +625,6 @@ google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz513 google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= -google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU= -google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94= -google.golang.org/api v0.47.0/go.mod h1:Wbvgpq1HddcWVtzsVLyfLp8lDg6AA241LmgIL59tHXo= -google.golang.org/api v0.48.0/go.mod h1:71Pr1vy+TAZRPkPs/xlCf5SsU8WjuAWv1Pfjbtukyy4= -google.golang.org/api v0.50.0/go.mod h1:4bNT5pAuq5ji4SRZm+5QIkjny9JAyVD/3gaSihNefaw= -google.golang.org/api v0.51.0/go.mod h1:t4HdrdoNgyN5cbEfm7Lum0lcLDLiise1F8qDKX00sOU= -google.golang.org/api v0.54.0/go.mod h1:7C4bFFOvVDGXjfDTAsgGwDgAxRDeQ4X8NvUedIt6z3k= -google.golang.org/api v0.55.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= -google.golang.org/api v0.56.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= -google.golang.org/api v0.57.0/go.mod h1:dVPlbZyBo2/OjBpmvNdpn2GRm6rPy75jyU7bmhdrMgI= -google.golang.org/api v0.61.0/go.mod h1:xQRti5UdCmoCEqFxcz93fTl338AVqDgyaDRuOZ3hg9I= -google.golang.org/api v0.63.0/go.mod h1:gs4ij2ffTRXwuzzgJl/56BdwJaA194ijkfn++9tDuPo= -google.golang.org/api v0.67.0/go.mod h1:ShHKP8E60yPsKNw/w8w+VYaj9H6buA5UqDp8dhbQZ6g= -google.golang.org/api v0.70.0/go.mod h1:Bs4ZM2HGifEvXwd50TtW70ovgJffJYw2oRCOFU/SkfA= -google.golang.org/api v0.71.0/go.mod h1:4PyU6e6JogV1f9eA4voyrTY2batOLdgZ5qZ5HOCc4j8= -google.golang.org/api v0.74.0/go.mod h1:ZpfMZOVRMywNyvJFeqL9HRWBgAuRfSjJFpe9QtRRyDs= -google.golang.org/api v0.75.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= -google.golang.org/api v0.77.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= -google.golang.org/api v0.78.0/go.mod h1:1Sg78yoMLOhlQTeF+ARBoytAcH1NNyyl390YMy6rKmw= -google.golang.org/api v0.80.0/go.mod h1:xY3nI94gbvBrE0J6NHXhxOmW97HG7Khjkku6AFB3Hyg= -google.golang.org/api v0.84.0/go.mod h1:NTsGnUFJMYROtiquksZHBWtHfeMC7iYthki7Eq3pa8o= -google.golang.org/api v0.85.0/go.mod h1:AqZf8Ep9uZ2pyTvgL+x0D3Zt0eoT9b5E8fmzfu6FO2g= -google.golang.org/api v0.90.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= -google.golang.org/api v0.93.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= -google.golang.org/api v0.95.0/go.mod h1:eADj+UBuxkh5zlrSntJghuNeg8HwQ1w5lTKkuqaETEI= -google.golang.org/api v0.96.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= -google.golang.org/api v0.97.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= -google.golang.org/api v0.98.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= -google.golang.org/api v0.99.0/go.mod h1:1YOf74vkVndF7pG6hIHuINsM7eWwpVTAfNMNiL91A08= -google.golang.org/api v0.100.0/go.mod h1:ZE3Z2+ZOr87Rx7dqFsdRQkRBk36kDtp/h+QpHbB7a70= -google.golang.org/api v0.102.0/go.mod h1:3VFl6/fzoA+qNuS1N1/VfXY4LjoXN/wzeIp7TweWwGo= -google.golang.org/api v0.103.0/go.mod h1:hGtW6nK1AC+d9si/UBhw8Xli+QMOf6xyNAyJw4qU9w0= -google.golang.org/api v0.106.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= -google.golang.org/api v0.107.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= -google.golang.org/api v0.108.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= -google.golang.org/api v0.110.0/go.mod h1:7FC4Vvx1Mooxh8C5HWjzZHcavuS2f6pmJpZx60ca7iI= -google.golang.org/api v0.111.0/go.mod h1:qtFHvU9mhgTJegR31csQ+rwxyUTHOKFqCKWp1J0fdw0= -google.golang.org/api v0.114.0/go.mod h1:ifYI2ZsFK6/uGddGfAD5BMxlnkBqCmqHSDUVi45N5Yg= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -1551,7 +655,6 @@ google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfG google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= -google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= @@ -1564,97 +667,7 @@ google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6D google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210108203827-ffc7fda8c3d7/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210226172003-ab064af71705/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210329143202-679c6ae281ee/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= -google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= -google.golang.org/genproto v0.0.0-20210513213006-bf773b8c8384/go.mod h1:P3QM42oQyzQSnHPnZ/vqoCdDmzH28fzWByN9asMeM8A= -google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210604141403-392c879c8b08/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210608205507-b6d2f5bf0d7d/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= -google.golang.org/genproto v0.0.0-20210624195500-8bfb893ecb84/go.mod h1:SzzZ/N+nwJDaO1kznhnlzqS8ocJICar6hYhVyhi++24= -google.golang.org/genproto v0.0.0-20210713002101-d411969a0d9a/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= -google.golang.org/genproto v0.0.0-20210716133855-ce7ef5c701ea/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= -google.golang.org/genproto v0.0.0-20210728212813-7823e685a01f/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= -google.golang.org/genproto v0.0.0-20210805201207-89edb61ffb67/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= -google.golang.org/genproto v0.0.0-20210813162853-db860fec028c/go.mod h1:cFeNkxwySK631ADgubI+/XFU/xp8FD5KIVV4rj8UC5w= -google.golang.org/genproto v0.0.0-20210821163610-241b8fcbd6c8/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210903162649-d08c68adba83/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210909211513-a8c4777a87af/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= -google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20211221195035-429b39de9b1c/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220126215142-9970aeb2e350/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220207164111-0872dc986b00/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= -google.golang.org/genproto v0.0.0-20220218161850-94dd64e39d7c/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220222213610-43724f9ea8cf/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220304144024-325a89244dc8/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220310185008-1973136f34c6/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= -google.golang.org/genproto v0.0.0-20220324131243-acbaeb5b85eb/go.mod h1:hAL49I2IFola2sVEjAn7MEwsja0xp51I0tlGAf9hz4E= -google.golang.org/genproto v0.0.0-20220329172620-7be39ac1afc7/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220413183235-5e96e2839df9/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220414192740-2d67ff6cf2b4/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220421151946-72621c1f0bd3/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220429170224-98d788798c3e/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= -google.golang.org/genproto v0.0.0-20220502173005-c8bf987b8c21/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220518221133-4f43b3371335/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220523171625-347a074981d8/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= -google.golang.org/genproto v0.0.0-20220608133413-ed9918b62aac/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220616135557-88e70c0c3a90/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220617124728-180714bec0ad/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220624142145-8cd45d7dbd1f/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220628213854-d9e0b6570c03/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= -google.golang.org/genproto v0.0.0-20220722212130-b98a9ff5e252/go.mod h1:GkXuJDJ6aQ7lnJcRF+SJVgFdQhypqgl3LB1C9vabdRE= -google.golang.org/genproto v0.0.0-20220801145646-83ce21fca29f/go.mod h1:iHe1svFLAZg9VWz891+QbRMwUv9O/1Ww+/mngYeThbc= -google.golang.org/genproto v0.0.0-20220815135757-37a418bb8959/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220817144833-d7fd3f11b9b1/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220822174746-9e6da59bd2fc/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220829144015-23454907ede3/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220829175752-36a9c930ecbf/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= -google.golang.org/genproto v0.0.0-20220913154956-18f8339a66a5/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220914142337-ca0e39ece12f/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220915135415-7fd63a7952de/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220916172020-2692e8806bfa/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220919141832-68c03719ef51/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= -google.golang.org/genproto v0.0.0-20220920201722-2b89144ce006/go.mod h1:ht8XFiar2npT/g4vkk7O0WYS1sHOHbdujxbEp7CJWbw= -google.golang.org/genproto v0.0.0-20220926165614-551eb538f295/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI= -google.golang.org/genproto v0.0.0-20220926220553-6981cbe3cfce/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI= -google.golang.org/genproto v0.0.0-20221010155953-15ba04fc1c0e/go.mod h1:3526vdqwhZAwq4wsRUaVG555sVgsNmIjRtO7t/JH29U= -google.golang.org/genproto v0.0.0-20221014173430-6e2ab493f96b/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= -google.golang.org/genproto v0.0.0-20221014213838-99cd37c6964a/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= -google.golang.org/genproto v0.0.0-20221024153911-1573dae28c9c/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= -google.golang.org/genproto v0.0.0-20221024183307-1bc688fe9f3e/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= -google.golang.org/genproto v0.0.0-20221027153422-115e99e71e1c/go.mod h1:CGI5F/G+E5bKwmfYo09AXuVN4dD894kIKUFmVbP2/Fo= -google.golang.org/genproto v0.0.0-20221109142239-94d6d90a7d66/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221114212237-e4508ebdbee1/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221117204609-8f9c96812029/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221118155620-16455021b5e6/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221201164419-0e50fba7f41c/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221201204527-e3fa12d562f3/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= -google.golang.org/genproto v0.0.0-20221202195650-67e5cbc046fd/go.mod h1:cTsE614GARnxrLsqKREzmNYJACSWWpAWdNMwnD7c2BE= -google.golang.org/genproto v0.0.0-20221227171554-f9683d7f8bef/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230112194545-e10362b5ecf9/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230113154510-dbe35b8444a5/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230123190316-2c411cf9d197/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230124163310-31e0e69b6fc2/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230125152338-dcaf20b6aeaa/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230127162408-596548ed4efa/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230209215440-0dfe4f8abfcc/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= -google.golang.org/genproto v0.0.0-20230216225411-c8e22ba71e44/go.mod h1:8B0gmkoRebU8ukX6HP+4wrVQUY1+6PkQ44BSyIlflHA= -google.golang.org/genproto v0.0.0-20230222225845-10f96fb3dbec/go.mod h1:3Dl5ZL0q0isWJt+FVcfpQyirqemEuLAK/iFvg1UP1Hw= -google.golang.org/genproto v0.0.0-20230223222841-637eb2293923/go.mod h1:3Dl5ZL0q0isWJt+FVcfpQyirqemEuLAK/iFvg1UP1Hw= -google.golang.org/genproto v0.0.0-20230303212802-e74f57abe488/go.mod h1:TvhZT5f700eVlTNwND1xoEZQeWTB2RY/65kplwl/bFA= -google.golang.org/genproto v0.0.0-20230306155012-7f2fa6fef1f4/go.mod h1:NWraEVixdDnqcqQ30jipen1STv2r/n24Wb7twVTGR4s= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= @@ -1669,32 +682,9 @@ google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3Iji google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= google.golang.org/grpc v1.31.1/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= -google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0= google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= -google.golang.org/grpc v1.37.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.37.1/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= -google.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= -google.golang.org/grpc v1.39.1/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= -google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.40.1/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= -google.golang.org/grpc v1.42.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= -google.golang.org/grpc v1.44.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= -google.golang.org/grpc v1.45.0/go.mod h1:lN7owxKUQEqMfSyQikvvk5tf/6zMPsrK+ONuO11+0rQ= -google.golang.org/grpc v1.46.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.46.2/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.47.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.48.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= -google.golang.org/grpc v1.49.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= -google.golang.org/grpc v1.50.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= -google.golang.org/grpc v1.50.1/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= -google.golang.org/grpc v1.51.0/go.mod h1:wgNDFcnuBGmxLKI/qn4T+m5BtEBYXJPvibbUPsAIPww= -google.golang.org/grpc v1.53.0/go.mod h1:OnIrk0ipVdj4N5d9IUoFUx72/VlD7+jUsHwZgwSMQpw= -google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= @@ -1705,34 +695,20 @@ google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2 google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= -google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= -google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.29.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= -gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce/go.mod h1:5AcXVHNjg+BDxry382+8OKon8SEWiKktQR07RKPsv1c= gopkg.in/olebedev/go-duktape.v3 v3.0.0-20200316214253-d7b0ff38cac9/go.mod h1:uAJfkITjFhyEEuUfm7bsmCZRbW5WRq8s9EY8HZ6hCns= gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= -gopkg.in/src-d/go-billy.v4 v4.3.2/go.mod h1:nDjArDMp+XMs1aFAESLRjfGSgfvoYN0hDfzEk0GjC98= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= gopkg.in/urfave/cli.v1 v1.20.0/go.mod h1:vuBzUtMdQeixQj8LVd+/98pzhxNGQoyuPBlsXHOQNO0= gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= @@ -1746,46 +722,8 @@ honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWh honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -honnef.co/go/tools v0.1.3/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las= lukechampine.com/blake3 v1.1.7 h1:GgRMhmdsuK8+ii6UZFDL8Nb+VyMwadAgcJyfYHxG6n0= -lukechampine.com/blake3 v1.1.7/go.mod h1:tkKEOtDkNtklkXtLNEOGNq5tcV90tJiA1vAA12R78LA= -lukechampine.com/uint128 v1.1.1/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= -lukechampine.com/uint128 v1.2.0/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= -modernc.org/cc/v3 v3.36.0/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= -modernc.org/cc/v3 v3.36.2/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= -modernc.org/cc/v3 v3.36.3/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= -modernc.org/ccgo/v3 v3.0.0-20220428102840-41399a37e894/go.mod h1:eI31LL8EwEBKPpNpA4bU1/i+sKOwOrQy8D87zWUcRZc= -modernc.org/ccgo/v3 v3.0.0-20220430103911-bc99d88307be/go.mod h1:bwdAnOoaIt8Ax9YdWGjxWsdkPcZyRPHqrOvJxaKAKGw= -modernc.org/ccgo/v3 v3.16.4/go.mod h1:tGtX0gE9Jn7hdZFeU88slbTh1UtCYKusWOoCJuvkWsQ= -modernc.org/ccgo/v3 v3.16.6/go.mod h1:tGtX0gE9Jn7hdZFeU88slbTh1UtCYKusWOoCJuvkWsQ= -modernc.org/ccgo/v3 v3.16.8/go.mod h1:zNjwkizS+fIFDrDjIAgBSCLkWbJuHF+ar3QRn+Z9aws= -modernc.org/ccgo/v3 v3.16.9/go.mod h1:zNMzC9A9xeNUepy6KuZBbugn3c0Mc9TeiJO4lgvkJDo= -modernc.org/ccorpus v1.11.6/go.mod h1:2gEUTrWqdpH2pXsmTM1ZkjeSrUWDpjMu2T6m29L/ErQ= -modernc.org/httpfs v1.0.6/go.mod h1:7dosgurJGp0sPaRanU53W4xZYKh14wfzX420oZADeHM= -modernc.org/libc v0.0.0-20220428101251-2d5f3daf273b/go.mod h1:p7Mg4+koNjc8jkqwcoFBJx7tXkpj00G77X7A72jXPXA= -modernc.org/libc v1.16.0/go.mod h1:N4LD6DBE9cf+Dzf9buBlzVJndKr/iJHG97vGLHYnb5A= -modernc.org/libc v1.16.1/go.mod h1:JjJE0eu4yeK7tab2n4S1w8tlWd9MxXLRzheaRnAKymU= -modernc.org/libc v1.16.17/go.mod h1:hYIV5VZczAmGZAnG15Vdngn5HSF5cSkbvfz2B7GRuVU= -modernc.org/libc v1.16.19/go.mod h1:p7Mg4+koNjc8jkqwcoFBJx7tXkpj00G77X7A72jXPXA= -modernc.org/libc v1.17.0/go.mod h1:XsgLldpP4aWlPlsjqKRdHPqCxCjISdHfM/yeWC5GyW0= -modernc.org/libc v1.17.1/go.mod h1:FZ23b+8LjxZs7XtFMbSzL/EhPxNbfZbErxEHc7cbD9s= -modernc.org/mathutil v1.2.2/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= -modernc.org/mathutil v1.4.1/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= -modernc.org/mathutil v1.5.0/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= -modernc.org/memory v1.1.1/go.mod h1:/0wo5ibyrQiaoUoH7f9D8dnglAmILJ5/cxZlRECf+Nw= -modernc.org/memory v1.2.0/go.mod h1:/0wo5ibyrQiaoUoH7f9D8dnglAmILJ5/cxZlRECf+Nw= -modernc.org/memory v1.2.1/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= -modernc.org/opt v0.1.1/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0= -modernc.org/opt v0.1.3/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0= -modernc.org/sqlite v1.18.1/go.mod h1:6ho+Gow7oX5V+OiOQ6Tr4xeqbx13UZ6t+Fw9IRUG4d4= -modernc.org/strutil v1.1.1/go.mod h1:DE+MQQ/hjKBZS2zNInV5hhcipt5rLPWkmpbGeW5mmdw= -modernc.org/strutil v1.1.3/go.mod h1:MEHNA7PdEnEwLvspRMtWTNnp2nnyvMfkimT1NKNAGbw= -modernc.org/tcl v1.13.1/go.mod h1:XOLfOwzhkljL4itZkK6T72ckMgvj0BDsnKNdZVUOecw= -modernc.org/token v1.0.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= -modernc.org/z v1.5.1/go.mod h1:eWFB510QWW5Th9YGZT81s+LwvaAs3Q2yr4sP0rmLkv8= pgregory.net/rapid v0.4.7 h1:MTNRktPuv5FNqOO151TM9mDTa+XHcX6ypYeISDVD14g= -pgregory.net/rapid v0.4.7/go.mod h1:UYpPVyjFHzYBGHIxLFoupi8vwk6rXNzRY9OMvVxFIOU= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= -rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= From 448d6488623d3f10b52c81a574cc57ea32b4aced Mon Sep 17 00:00:00 2001 From: Supun Setunga Date: Thu, 21 Sep 2023 14:39:35 -0700 Subject: [PATCH 051/160] Apply suggestions from code review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Bastian Müller --- transactions/flowToken/create_forwarder.cdc | 2 +- .../delegation/delegator_add_capability.cdc | 2 +- transactions/idTableStaking/node/node_add_capability.cdc | 4 ++-- transactions/idTableStaking/node/register_node.cdc | 2 +- .../lockedTokens/admin/admin_create_shared_accounts.cdc | 6 +++--- .../admin/custody_create_account_with_lease_account.cdc | 8 ++++---- .../admin/custody_create_only_lease_account.cdc | 8 ++++---- .../admin/custody_create_only_shared_account.cdc | 8 ++++---- .../nodeVersionBeacon/admin/set_version_boundary.cdc | 2 +- .../stakingCollection/create_new_tokenholder_acct.cdc | 7 ++++--- 10 files changed, 25 insertions(+), 24 deletions(-) diff --git a/transactions/flowToken/create_forwarder.cdc b/transactions/flowToken/create_forwarder.cdc index f68b5237a..f4f184640 100644 --- a/transactions/flowToken/create_forwarder.cdc +++ b/transactions/flowToken/create_forwarder.cdc @@ -38,7 +38,7 @@ transaction(receiver: Address) { if let cap = acct.capabilities.get<&{FungibleToken.Receiver}>(/public/flowTokenReceiver) { if cap.check() { - acct.unlink(/public/flowTokenReceiver) + acct.capabilities.unpublish(/public/flowTokenReceiver) } } diff --git a/transactions/idTableStaking/delegation/delegator_add_capability.cdc b/transactions/idTableStaking/delegation/delegator_add_capability.cdc index 135eb4bd1..a64255412 100644 --- a/transactions/idTableStaking/delegation/delegator_add_capability.cdc +++ b/transactions/idTableStaking/delegation/delegator_add_capability.cdc @@ -19,7 +19,7 @@ transaction { ) acct.capabilities.publish( delegatorCap, - at:/public/flowStakingDelegator, + at: /public/flowStakingDelegator, ) } } \ No newline at end of file diff --git a/transactions/idTableStaking/node/node_add_capability.cdc b/transactions/idTableStaking/node/node_add_capability.cdc index 2b4beeb89..c5114de0f 100644 --- a/transactions/idTableStaking/node/node_add_capability.cdc +++ b/transactions/idTableStaking/node/node_add_capability.cdc @@ -9,7 +9,7 @@ transaction { prepare(acct: auth(BorrowValue) &Account) { if acct.storage.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) == nil || - acct.capabilities.get<&{FlowIDTableStaking.NodeStakerPublic}>(FlowIDTableStaking.NodeStakerPublicPath)!.check() + acct.capabilities.get<&{FlowIDTableStaking.NodeStakerPublic}>(FlowIDTableStaking.NodeStakerPublicPath)?.check() ?? false { return } @@ -20,7 +20,7 @@ transaction { acct.capabilities.publish( nodeStakerCap, - at: FlowIDTableStaking.NodeStakerPublicPath, + at: FlowIDTableStaking.NodeStakerPublicPath ) } } \ No newline at end of file diff --git a/transactions/idTableStaking/node/register_node.cdc b/transactions/idTableStaking/node/register_node.cdc index 199feb21a..67c27d872 100644 --- a/transactions/idTableStaking/node/register_node.cdc +++ b/transactions/idTableStaking/node/register_node.cdc @@ -40,7 +40,7 @@ transaction( acct.capabilities.publish( nodeStakerCap, - at: FlowIDTableStaking.NodeStakerPublicPath, + at: FlowIDTableStaking.NodeStakerPublicPath ) } else { destroy nodeStaker diff --git a/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc b/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc index ccdad3b47..5640c6aba 100644 --- a/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc +++ b/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc @@ -83,14 +83,14 @@ transaction( let lockedTokensManagerCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) sharedAccount.capabilties.publish( lockedTokensManagerCap, - at: /public/flowTokenReceiver, + at: /public/flowTokenReceiver ) // put normal receiver in a separate unique path let tokenReceiverCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) sharedAccount.capabilties.publish( - tokenReceiverCap - at: /public/lockedFlowTokenReceiver, + tokenReceiverCap, + at: /public/lockedFlowTokenReceiver ) } } diff --git a/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc b/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc index 5e4e2c07f..07f6c909d 100644 --- a/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc @@ -48,7 +48,7 @@ transaction( LockedTokens.LockedTokenManagerStoragePath ) - let lockedAccountCreator = custodyProvider.storage. + let lockedAccountCreator = custodyProvider.storage .borrow<&LockedTokens.LockedAccountCreator>(from: LockedTokens.LockedAccountCreatorStoragePath) lockedAccountCreator.addAccount( @@ -64,14 +64,14 @@ transaction( let lockedTokensManagerCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) sharedAccount.capabilties.publish( lockedTokensManagerCap, - at: /public/flowTokenReceiver, + at: /public/flowTokenReceiver ) // put normal receiver in a separate unique path. let tokenReceiverCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) sharedAccount.capabilties.publish( - tokenReceiverCap - at: /public/lockedFlowTokenReceiver, + tokenReceiverCap, + at: /public/lockedFlowTokenReceiver ) } } diff --git a/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc b/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc index f71c7af8a..ddef489a5 100644 --- a/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc @@ -49,7 +49,7 @@ transaction( LockedTokens.LockedTokenManagerStoragePath ) - let lockedAccountCreator = custodyProvider.storage. + let lockedAccountCreator = custodyProvider.storage .borrow<&LockedTokens.LockedAccountCreator>(from: LockedTokens.LockedAccountCreatorStoragePath) lockedAccountCreator.addAccount( @@ -65,14 +65,14 @@ transaction( let lockedTokensManagerCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) sharedAccount.capabilties.publish( lockedTokensManagerCap, - at: /public/flowTokenReceiver, + at: /public/flowTokenReceiver ) // put normal receiver in a separate unique path. let tokenReceiverCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) sharedAccount.capabilties.publish( - tokenReceiverCap - at: /public/lockedFlowTokenReceiver, + tokenReceiverCap, + at: /public/lockedFlowTokenReceiver ) } } diff --git a/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc b/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc index 53a1646d7..3f684f643 100644 --- a/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc @@ -51,7 +51,7 @@ transaction( LockedTokens.LockedTokenManagerStoragePath ) - let lockedAccountCreator = custodyProvider.storage. + let lockedAccountCreator = custodyProvider.storage .borrow<&LockedTokens.LockedAccountCreator>(from: LockedTokens.LockedAccountCreatorStoragePath) lockedAccountCreator.addAccount( @@ -67,14 +67,14 @@ transaction( let lockedTokensManagerCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) sharedAccount.capabilties.publish( lockedTokensManagerCap, - at: /public/flowTokenReceiver, + at: /public/flowTokenReceiver ) // put normal receiver in a separate unique path. let tokenReceiverCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) sharedAccount.capabilties.publish( - tokenReceiverCap - at: /public/lockedFlowTokenReceiver, + tokenReceiverCap, + at: /public/lockedFlowTokenReceiver ) } } diff --git a/transactions/nodeVersionBeacon/admin/set_version_boundary.cdc b/transactions/nodeVersionBeacon/admin/set_version_boundary.cdc index 4fecda869..3248a325d 100644 --- a/transactions/nodeVersionBeacon/admin/set_version_boundary.cdc +++ b/transactions/nodeVersionBeacon/admin/set_version_boundary.cdc @@ -33,7 +33,7 @@ transaction( self.NodeVersionBeaconAdminRef.setVersionBoundary(versionBoundary: self.newVersionBoundary) } - post{ + post { NodeVersionBeacon.getVersionBoundary(effectiveAtBlockHeight: blockHeight).version .strictEqualTo(self.newVersionBoundary.version) : "New version was not added to the versionTable" } diff --git a/transactions/stakingCollection/create_new_tokenholder_acct.cdc b/transactions/stakingCollection/create_new_tokenholder_acct.cdc index 77284cc6c..117384874 100644 --- a/transactions/stakingCollection/create_new_tokenholder_acct.cdc +++ b/transactions/stakingCollection/create_new_tokenholder_acct.cdc @@ -37,7 +37,8 @@ transaction(publicKeys: [Crypto.KeyListEntry]) { to: LockedTokens.TokenHolderStoragePath, ) - let tokenHolderCap = newAccount.capabilities.storage.issue<&LockedTokens.TokenHolder{LockedTokens.LockedAccountInfo}>(LockedTokens.TokenHolderStoragePath) + let tokenHolderCap = newAccount.capabilities.storage + .issue<&LockedTokens.TokenHolder{LockedTokens.LockedAccountInfo}>(LockedTokens.TokenHolderStoragePath) newAccount.capabilities.publish( tokenHolderCap at: LockedTokens.LockedAccountInfoPublicPath, @@ -45,8 +46,8 @@ transaction(publicKeys: [Crypto.KeyListEntry]) { // Create capabilities for the token holder and unlocked vault. - let lockedHolder = newAccount.capabilities.storage.issue<&LockedTokens.TokenHolder>(LockedTokens.TokenHolderStoragePath)! - let flowToken = newAccount.capabilities.storage.issue<&FlowToken.Vault>(/storage/flowTokenVault)! + let lockedHolder = newAccount.capabilities.storage.issue<&LockedTokens.TokenHolder>(LockedTokens.TokenHolderStoragePath) + let flowToken = newAccount.capabilities.storage.issue<&FlowToken.Vault>(/storage/flowTokenVault) // Create a new Staking Collection and put it in storage. if lockedHolder.check() { From d49fd0453109e77c834c7d50a18fde4cb6ebb96c Mon Sep 17 00:00:00 2001 From: Supun Setunga Date: Fri, 22 Sep 2023 09:29:24 -0700 Subject: [PATCH 052/160] Refactor code --- transactions/flowToken/create_forwarder.cdc | 2 +- transactions/flowToken/setup_account.cdc | 4 ++-- .../lockedTokens/admin/custody_create_shared_accounts.cdc | 6 +++--- .../stakingCollection/create_new_tokenholder_acct.cdc | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/transactions/flowToken/create_forwarder.cdc b/transactions/flowToken/create_forwarder.cdc index f4f184640..8fa4d7d6b 100644 --- a/transactions/flowToken/create_forwarder.cdc +++ b/transactions/flowToken/create_forwarder.cdc @@ -45,7 +45,7 @@ transaction(receiver: Address) { let forwarderCap = acct.capabilities.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenForwarder) acct.capabilities.publish<&{FungibleToken.Receiver}>( forwarderCap, - at: /public/flowTokenReceiver, + at: /public/flowTokenReceiver ) } } diff --git a/transactions/flowToken/setup_account.cdc b/transactions/flowToken/setup_account.cdc index e2d362ba3..1d6ca4578 100644 --- a/transactions/flowToken/setup_account.cdc +++ b/transactions/flowToken/setup_account.cdc @@ -22,7 +22,7 @@ transaction { signer.capabilities.publish<&FlowToken.Vault{FungibleToken.Receiver}>( vaultCap, - at: /public/flowTokenReceiver, + at: /public/flowTokenReceiver ) // Create a public capability to the Vault that only exposes @@ -33,7 +33,7 @@ transaction { signer.capabilities.publish<&FlowToken.Vault{FungibleToken.Receiver}>( vaultCap, - at: /public/flowTokenBalance, + at: /public/flowTokenBalance ) } } diff --git a/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc b/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc index 52521fbfa..4a17b2a75 100644 --- a/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc +++ b/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc @@ -69,14 +69,14 @@ transaction( let lockedTokensManagerCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) sharedAccount.capabilties.publish( lockedTokensManagerCap, - at: /public/flowTokenReceiver, + at: /public/flowTokenReceiver ) // put normal receiver in a separate unique path. let tokenReceiverCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) sharedAccount.capabilties.publish( - tokenReceiverCap - at: /public/lockedFlowTokenReceiver, + tokenReceiverCap, + at: /public/lockedFlowTokenReceiver ) } } diff --git a/transactions/stakingCollection/create_new_tokenholder_acct.cdc b/transactions/stakingCollection/create_new_tokenholder_acct.cdc index 117384874..ed6eae1bd 100644 --- a/transactions/stakingCollection/create_new_tokenholder_acct.cdc +++ b/transactions/stakingCollection/create_new_tokenholder_acct.cdc @@ -34,14 +34,14 @@ transaction(publicKeys: [Crypto.KeyListEntry]) { // Save the TokenHolder resource to the new account and create a public capability. newAccount.storage.save( <-tokenHolder, - to: LockedTokens.TokenHolderStoragePath, + to: LockedTokens.TokenHolderStoragePath ) let tokenHolderCap = newAccount.capabilities.storage .issue<&LockedTokens.TokenHolder{LockedTokens.LockedAccountInfo}>(LockedTokens.TokenHolderStoragePath) newAccount.capabilities.publish( tokenHolderCap - at: LockedTokens.LockedAccountInfoPublicPath, + at: LockedTokens.LockedAccountInfoPublicPath ) From ce228e81fa43da18ac9aae9f78ca264b71589eda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20M=C3=BCller?= Date: Fri, 22 Sep 2023 11:12:25 -0700 Subject: [PATCH 053/160] fix and improve syntax --- contracts/FlowFees.cdc | 32 ++++----- contracts/NodeVersionBeacon.cdc | 63 +++++++++-------- contracts/epochs/FlowEpoch.cdc | 67 +++++++++---------- .../delegation/delegator_add_capability.cdc | 2 +- transactions/inspect_field.cdc | 6 ++ .../admin/admin_create_shared_accounts.cdc | 2 +- ...tody_create_account_with_lease_account.cdc | 8 +-- .../custody_create_only_lease_account.cdc | 2 +- .../custody_create_only_shared_account.cdc | 2 +- .../admin/custody_create_shared_accounts.cdc | 2 +- .../admin/custody_setup_account_creator.cdc | 6 +- .../stakingCollection/register_node.cdc | 6 +- 12 files changed, 101 insertions(+), 97 deletions(-) create mode 100644 transactions/inspect_field.cdc diff --git a/contracts/FlowFees.cdc b/contracts/FlowFees.cdc index a9001114e..a4f73354e 100644 --- a/contracts/FlowFees.cdc +++ b/contracts/FlowFees.cdc @@ -75,10 +75,10 @@ access(all) contract FlowFees { access(all) struct VerifyPayerBalanceResult { // True if the payer has sufficient balance for the transaction execution to continue access(all) let canExecuteTransaction: Bool - // The minimum payer balance required for the transaction execution to continue. + // The minimum payer balance required for the transaction execution to continue. // This value is defined by verifyPayersBalanceForTransactionExecution. access(all) let requiredBalance: UFix64 - // The maximum transaction fees (inclusion fees + execution fees) the transaction can incur + // The maximum transaction fees (inclusion fees + execution fees) the transaction can incur // (if all available execution effort is used) access(all) let maximumTransactionFees: UFix64 @@ -95,12 +95,12 @@ access(all) contract FlowFees { // and returns the maximum possible transaction fees. // (according to the inclusion effort and maximum execution effort of the transaction). // - // The requiredBalance balance is defined as the minimum account balance + + // The requiredBalance balance is defined as the minimum account balance + // maximum transaction fees (inclusion fees + execution fees at max execution effort). access(all) fun verifyPayersBalanceForTransactionExecution( _ payerAcct: auth(BorrowValue) &Account, - inclusionEffort: UFix64, - maxExecutionEffort: UFix64, + inclusionEffort: UFix64, + maxExecutionEffort: UFix64 ): VerifyPayerBalanceResult { // Get the maximum fees required for the transaction. var maxTransactionFee = self.computeFees(inclusionEffort: inclusionEffort, executionEffort: maxExecutionEffort) @@ -111,12 +111,12 @@ access(all) contract FlowFees { if minimumRequiredBalance == UFix64(0) { // If the required balance is zero exit early. return VerifyPayerBalanceResult( - canExecuteTransaction: true, + canExecuteTransaction: true, requiredBalance: minimumRequiredBalance, - maximumTransactionFees: maxTransactionFee, + maximumTransactionFees: maxTransactionFee ) } - + // Get the balance of the payers default vault. // In the edge case where the payer doesnt have a vault, treat the balance as 0. var balance = 0.0 @@ -125,7 +125,7 @@ access(all) contract FlowFees { } return VerifyPayerBalanceResult( - // The transaction can be executed it the payers balance is greater than the minimum required balance. + // The transaction can be executed it the payers balance is greater than the minimum required balance. canExecuteTransaction: balance >= minimumRequiredBalance, requiredBalance: minimumRequiredBalance, maximumTransactionFees: maxTransactionFee) @@ -137,7 +137,7 @@ access(all) contract FlowFees { var feeAmount = self.computeFees(inclusionEffort: inclusionEffort, executionEffort: executionEffort) if feeAmount == UFix64(0) { - // If there are no fees to deduct, do not continue, + // If there are no fees to deduct, do not continue, // so that there are no unnecessarily emitted events return } @@ -145,16 +145,16 @@ access(all) contract FlowFees { let tokenVault = acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Unable to borrow reference to the default token vault") - + if feeAmount > tokenVault.getBalance() { - // In the future this code path will never be reached, + // In the future this code path will never be reached, // as payers that are under account minimum balance will not have their transactions included in a collection // // Currently this is not used to fail the transaction (as that is the responsibility of the minimum account balance logic), - // But is used to reduce the balance of the vault to 0.0, if the vault has less available balance than the transaction fees. + // But is used to reduce the balance of the vault to 0.0, if the vault has less available balance than the transaction fees. feeAmount = tokenVault.getBalance() } - + let feeVault <- tokenVault.withdraw(amount: feeAmount) self.vault.deposit(from: <-feeVault) @@ -173,11 +173,11 @@ access(all) contract FlowFees { emit FeeParametersChanged(surgeFactor: feeParameters.surgeFactor, inclusionEffortCost: feeParameters.inclusionEffortCost, executionEffortCost: feeParameters.executionEffortCost) } - + // compute the transaction fees with the current fee parameters and the given inclusionEffort and executionEffort access(all) fun computeFees(inclusionEffort: UFix64, executionEffort: UFix64): UFix64 { let params = self.getFeeParameters() - + let totalFees = params.surgeFactor * ( inclusionEffort * params.inclusionEffortCost + executionEffort * params.executionEffortCost ) return totalFees } diff --git a/contracts/NodeVersionBeacon.cdc b/contracts/NodeVersionBeacon.cdc index 9dcea84b4..2fec57dd3 100644 --- a/contracts/NodeVersionBeacon.cdc +++ b/contracts/NodeVersionBeacon.cdc @@ -1,8 +1,8 @@ /// The NodeVersionBeacon contract holds the past and future protocol versions. /// that should be used to execute/handle blocks at aa given block height. -/// +/// /// The service account holds the NodeVersionBeacon.Heartbeat resource -/// which is responsible for emitting the VersionBeacon event. +/// which is responsible for emitting the VersionBeacon event. /// The event contains the current version and all the upcoming versions. /// The event is emitted every time the version table is updated /// or a version boundary is reached. @@ -12,7 +12,7 @@ /// changed if they occur after the current block height + versionUpdateFreezePeriod. /// This is to ensure that nodes have enough time to react to version table changes. /// The versionUpdateFreezePeriod can also be changed by the admin resource, but only if -/// there are no upcoming version boundaries within the current versionUpdateFreezePeriod or +/// there are no upcoming version boundaries within the current versionUpdateFreezePeriod or /// the new versionUpdateFreezePeriod. /// /// The contract itself can be used to query the current version and the next upcoming version. @@ -62,14 +62,14 @@ access(all) contract NodeVersionBeacon { if (self.major != other.major) { return self.major > other.major } - + if (self.minor != other.minor) { return self.minor > other.minor } if (self.patch != other.patch) { return self.patch > other.patch - } + } return false } @@ -121,7 +121,7 @@ access(all) contract NodeVersionBeacon { } } - /// Returns the zero boundary. Used as a sentinel value + /// Returns the zero boundary. Used as a sentinel value /// for versions before the version beacon contract. /// Simplifies edge case code. /// The zero boundary is at block height 0 and has version v0.0.0. @@ -129,15 +129,15 @@ access(all) contract NodeVersionBeacon { access(all) fun zeroVersionBoundary(): VersionBoundary { let zeroVersion = self.zeroSemver() return VersionBoundary( - blockHeight: 0, - version: zeroVersion, + blockHeight: 0, + version: zeroVersion ) } /// Event emitted when the version table is updated. /// It contains the current version and all the upcoming versions /// sorted by block height. - /// The sequence increases by one each time an event is emitted. + /// The sequence increases by one each time an event is emitted. /// It can be used to verify no events were missed. access(all) event VersionBeacon( versionBoundaries: [VersionBoundary], @@ -155,17 +155,17 @@ access(all) contract NodeVersionBeacon { access(all) let HeartbeatStoragePath: StoragePath /// Block height indexed version boundaries. - access(contract) let versionBoundary: {UInt64: VersionBoundary} - + access(contract) let versionBoundary: {UInt64: VersionBoundary} + /// Sorted Array containing version boundary block heights. access(contract) var versionBoundaryBlockList: [UInt64] /// Index in the versionBoundaryBlockList of the next upcoming version boundary, /// or nil if no upcoming version boundary. access(contract) var firstUpcomingBoundary: UInt64? - - /// versionUpdateFreezePeriod is the number of blocks (past the current one) for which version boundary - /// changes are not allowed. This is to ensure that nodes have enough time to react to + + /// versionUpdateFreezePeriod is the number of blocks (past the current one) for which version boundary + /// changes are not allowed. This is to ensure that nodes have enough time to react to /// version table changes. access(contract) var versionBoundaryFreezePeriod: UInt64 @@ -193,10 +193,10 @@ access(all) contract NodeVersionBeacon { if exists { // this was an update so nothing else needs to be done return - } + } // We have to insert the block height into the ordered list. - // This is an inefficient algorithm, but it is not expected that the list of + // This is an inefficient algorithm, but it is not expected that the list of // upcoming versions will be long. var i = NodeVersionBeacon.versionBoundaryBlockList.length while i > 1 && NodeVersionBeacon.versionBoundaryBlockList[i-1] > versionBoundary.blockHeight { @@ -230,7 +230,7 @@ access(all) contract NodeVersionBeacon { NodeVersionBeacon.versionBoundary.remove(key: blockHeight) // We have to remove the block height from the ordered list. - // This is an inefficient algorithm, but it is not expected that the list of + // This is an inefficient algorithm, but it is not expected that the list of // upcoming versions will be long. var i = NodeVersionBeacon.versionBoundaryBlockList.length - 1 while i > 0 && NodeVersionBeacon.versionBoundaryBlockList[i] > blockHeight { @@ -244,7 +244,7 @@ access(all) contract NodeVersionBeacon { // the index has to be fixed, but you cannot change records before the index // so the only case to be addressed is that the index is pointing off the list, // because the list is now shorter. - if NodeVersionBeacon.firstUpcomingBoundary != nil && + if NodeVersionBeacon.firstUpcomingBoundary != nil && NodeVersionBeacon.firstUpcomingBoundary! >= UInt64(NodeVersionBeacon.versionBoundaryBlockList.length) { NodeVersionBeacon.firstUpcomingBoundary = nil } @@ -264,8 +264,8 @@ access(all) contract NodeVersionBeacon { if NodeVersionBeacon.firstUpcomingBoundary == nil { NodeVersionBeacon.versionBoundaryFreezePeriod = newFreezePeriod return - } - + } + let nextBlockBoundary = NodeVersionBeacon.versionBoundaryBlockList[NodeVersionBeacon.firstUpcomingBoundary!] // Ensure that the we're not currently within the old or new freeze period @@ -277,14 +277,14 @@ access(all) contract NodeVersionBeacon { ) NodeVersionBeacon.versionBoundaryFreezePeriod = newFreezePeriod - + emit NodeVersionBoundaryFreezePeriodChanged(freezePeriod: newFreezePeriod) } } /// Heartbeat resource that emits the version beacon event and keeps track of upcoming versions. /// This resource should always be held only by the service account, - /// because the service account should be the only one emitting the event, + /// because the service account should be the only one emitting the event, /// and only during the system transaction access(all) resource Heartbeat { // heartbeat is called during the system transaction every block. @@ -300,13 +300,13 @@ access(all) contract NodeVersionBeacon { } access(self) fun emitVersionBeaconEvent(versionBoundaries : [VersionBoundary]) { - + emit VersionBeacon(versionBoundaries: versionBoundaries, sequence: NodeVersionBeacon.nextVersionBeaconEventSequence) // After emitting the event increase the event sequence number and set the flag to false // so the event won't be emitted on the next block if there isn't any changes to the table NodeVersionBeacon.nextVersionBeaconEventSequence = NodeVersionBeacon.nextVersionBeaconEventSequence + 1 - + } /// Check if the index pointing to the next version boundary needs to be moved. @@ -317,7 +317,7 @@ access(all) contract NodeVersionBeacon { let currentBlockHeight = getCurrentBlock().height var boundaryIndex = NodeVersionBeacon.firstUpcomingBoundary! - while boundaryIndex < UInt64(NodeVersionBeacon.versionBoundaryBlockList.length) + while boundaryIndex < UInt64(NodeVersionBeacon.versionBoundaryBlockList.length) && NodeVersionBeacon.versionBoundaryBlockList[boundaryIndex] <= currentBlockHeight { boundaryIndex = boundaryIndex + 1 } @@ -330,7 +330,7 @@ access(all) contract NodeVersionBeacon { if boundaryIndex >= UInt64(NodeVersionBeacon.versionBoundaryBlockList.length) { NodeVersionBeacon.firstUpcomingBoundary = nil } else { - NodeVersionBeacon.firstUpcomingBoundary = boundaryIndex + NodeVersionBeacon.firstUpcomingBoundary = boundaryIndex } // If we passed a boundary re-emit the VersionBeacon event @@ -414,7 +414,7 @@ access(all) contract NodeVersionBeacon { /// Checks whether given version was compatible at the given historical block height access(all) fun getVersionBoundary(effectiveAtBlockHeight: UInt64): VersionBoundary { let block = self.searchForClosestHistoricalBlockBoundary(blockHeight: effectiveAtBlockHeight) - + return self.versionBoundary[block]! } @@ -423,14 +423,14 @@ access(all) contract NodeVersionBeacon { access(all) let perPage: Int access(all) let totalLength: Int access(all) let values : [VersionBoundary] - + init(page: Int, perPage: Int, totalLength: Int, values: [VersionBoundary]) { self.page = page self.perPage = perPage self.totalLength = totalLength self.values = values } - + } /// Returns a page of version boundaries @@ -499,9 +499,9 @@ access(all) contract NodeVersionBeacon { self.AdminStoragePath = /storage/NodeVersionBeaconAdmin self.HeartbeatStoragePath = /storage/NodeVersionBeaconHeartbeat - // insert a zero-th version to make the API simpler and more robust + // insert a zero-th version to make the API simpler and more robust let zero = NodeVersionBeacon.zeroVersionBoundary() - + self.versionBoundary = {zero.blockHeight:zero} self.versionBoundaryBlockList = [zero.blockHeight] self.versionBoundaryFreezePeriod = versionUpdateFreezePeriod @@ -515,4 +515,3 @@ access(all) contract NodeVersionBeacon { self.account.storage.save(<-create Heartbeat(), to: self.HeartbeatStoragePath) } } - \ No newline at end of file diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 8355df42c..5c930ee2c 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -6,8 +6,8 @@ import FlowDKG from 0xDKGADDRESS import FlowFees from 0xFLOWFEESADDRESS // The top-level smart contract managing the lifecycle of epochs. In Flow, -// epochs are the smallest unit of time where the identity table (the set of -// network operators) is static. Operators may only leave or join the network +// epochs are the smallest unit of time where the identity table (the set of +// network operators) is static. Operators may only leave or join the network // at epoch boundaries. Operators may be ejected during an epoch for various // misdemeanours, but they remain in the identity table until the epoch ends. // @@ -19,10 +19,10 @@ import FlowFees from 0xFLOWFEESADDRESS // // 1) STAKING PHASE // Node operators are able to submit staking requests for the NEXT epoch during -// this phase. At the end of this phase, the Epoch smart contract resolves the -// outstanding staking requests and determines the identity table for the next -// epoch. The Epoch smart contract emits the EpochSetup service event containing -// the identity table for the next epoch, which initiates the transition to the +// this phase. At the end of this phase, the Epoch smart contract resolves the +// outstanding staking requests and determines the identity table for the next +// epoch. The Epoch smart contract emits the EpochSetup service event containing +// the identity table for the next epoch, which initiates the transition to the // Epoch Setup Phase. // // 2) SETUP PHASE @@ -60,7 +60,7 @@ access(all) contract FlowEpoch { /// The Epoch Setup service event is emitted when we transition to the Epoch Setup /// phase. It contains the finalized identity table for the upcoming epoch. access(all) event EpochSetup( - + /// The counter for the upcoming epoch. Must be one greater than the /// counter for the current epoch. counter: UInt64, @@ -82,14 +82,14 @@ access(all) contract FlowEpoch { /// cluster, with their weights and votes collectorClusters: [FlowClusterQC.Cluster], - /// The source of randomness to seed the leader selection algorithm with + /// The source of randomness to seed the leader selection algorithm with /// for the upcoming epoch. randomSource: String, /// The deadlines of each phase in the DKG protocol to be completed in the upcoming - /// EpochSetup phase. Deadlines are specified in terms of a consensus view number. - /// When a DKG participant observes a finalized and sealed block with view greater - /// than the given deadline, it can safely transition to the next phase. + /// EpochSetup phase. Deadlines are specified in terms of a consensus view number. + /// When a DKG participant observes a finalized and sealed block with view greater + /// than the given deadline, it can safely transition to the next phase. DKGPhase1FinalView: UInt64, DKGPhase2FinalView: UInt64, DKGPhase3FinalView: UInt64 @@ -104,7 +104,7 @@ access(all) contract FlowEpoch { /// previous EpochSetup event. counter: UInt64, - /// The result of the QC aggregation process. Each element contains + /// The result of the QC aggregation process. Each element contains /// all the nodes and votes received for a particular cluster /// QC stands for quorum certificate that each cluster generates. clusterQCs: [FlowClusterQC.ClusterQC], @@ -112,7 +112,7 @@ access(all) contract FlowEpoch { /// The resulting public keys from the DKG process, encoded as by the flow-go /// crypto library, then hex-encoded. /// Group public key is the first element, followed by the individual keys - dkgPubKeys: [String], + dkgPubKeys: [String] ) /// Contains specific metadata about a particular epoch @@ -188,7 +188,7 @@ access(all) contract FlowEpoch { access(account) fun setRewardsPaid(_ rewardsPaid: Bool) { self.rewardsPaid = rewardsPaid - } + } access(account) fun setClusterQCs(qcs: [FlowClusterQC.ClusterQC]) { self.clusterQCs = qcs @@ -214,7 +214,7 @@ access(all) contract FlowEpoch { access(all) fun setNumViewsInStakingAuction(_ views: UInt64) { self.numViewsInStakingAuction = views } - + /// The number of views in each dkg phase access(all) var numViewsInDKGPhase: UInt64 @@ -270,7 +270,7 @@ access(all) contract FlowEpoch { } /// Saves a modified EpochMetadata struct to the metadata in account storage - /// + /// access(contract) fun saveEpochMetadata(_ newMetadata: EpochMetadata) { pre { self.currentEpochCounter == 0 || @@ -421,7 +421,7 @@ access(all) contract FlowEpoch { /// Resource that is controlled by the protocol and is used /// to change the current phase of the epoch or reset the epoch if needed - /// + /// access(all) resource Heartbeat { /// Function that is called every block to advance the epoch @@ -615,7 +615,7 @@ access(all) contract FlowEpoch { consensusNodeIDs.append(nodeInfo.id) } } - + // Organize the collector nodes into clusters let collectorClusters = self.createCollectorClusters(nodeIDs: collectorNodeIDs) @@ -644,7 +644,7 @@ access(all) contract FlowEpoch { self.currentEpochPhase = EpochPhase.EPOCHSETUP emit EpochSetup(counter: proposedEpochMetadata.counter, - nodeInfo: nodeInfoArray, + nodeInfo: nodeInfoArray, firstView: proposedEpochMetadata.startView, finalView: proposedEpochMetadata.endView, collectorClusters: collectorClusters, @@ -762,7 +762,7 @@ access(all) contract FlowEpoch { let nodeInfo = FlowIDTableStaking.NodeInfo(nodeID: id) nodeWeightsDictionary[clusterIndex][id] = nodeInfo.initialWeight - + // Advance to the next cluster, or back to the first if we have gotten to the last one clusterIndex = clusterIndex + 1 if clusterIndex == self.configurableMetadata.numCollectorClusters { @@ -780,22 +780,22 @@ access(all) contract FlowEpoch { return clusters } - - /// A function to generate a random permutation of arr[] + + /// A function to generate a random permutation of arr[] /// using the fisher yates shuffling algorithm - access(all) fun randomize(_ array: [String]): [String] { + access(all) fun randomize(_ array: [String]): [String] { var i = array.length - 1 - // Start from the last element and swap one by one. We don't - // need to run for the first element that's why i > 0 + // Start from the last element and swap one by one. We don't + // need to run for the first element that's why i > 0 while i > 0 - { - // Pick a random index from 0 to i + { + // Pick a random index from 0 to i var randomNum = unsafeRandom() var randomIndex = randomNum % UInt64(i + 1) - - // Swap arr[i] with the element at random index + + // Swap arr[i] with the element at random index var temp = array[i] array[i] = array[randomIndex] array[randomIndex] = temp @@ -861,9 +861,9 @@ access(all) contract FlowEpoch { } init (currentEpochCounter: UInt64, - numViewsInEpoch: UInt64, - numViewsInStakingAuction: UInt64, - numViewsInDKGPhase: UInt64, + numViewsInEpoch: UInt64, + numViewsInStakingAuction: UInt64, + numViewsInDKGPhase: UInt64, numCollectorClusters: UInt16, FLOWsupplyIncreasePercentage: UFix64, randomSource: String, @@ -880,7 +880,7 @@ access(all) contract FlowEpoch { numViewsInDKGPhase: numViewsInDKGPhase, numCollectorClusters: numCollectorClusters, FLOWsupplyIncreasePercentage: FLOWsupplyIncreasePercentage) - + self.currentEpochCounter = currentEpochCounter self.currentEpochPhase = EpochPhase.STAKINGAUCTION self.adminStoragePath = /storage/flowEpochAdmin @@ -929,4 +929,3 @@ access(all) contract FlowEpoch { self.saveEpochMetadata(firstEpochMetadata) } } - \ No newline at end of file diff --git a/transactions/idTableStaking/delegation/delegator_add_capability.cdc b/transactions/idTableStaking/delegation/delegator_add_capability.cdc index a64255412..40d7cb4cb 100644 --- a/transactions/idTableStaking/delegation/delegator_add_capability.cdc +++ b/transactions/idTableStaking/delegation/delegator_add_capability.cdc @@ -19,7 +19,7 @@ transaction { ) acct.capabilities.publish( delegatorCap, - at: /public/flowStakingDelegator, + at: /public/flowStakingDelegator ) } } \ No newline at end of file diff --git a/transactions/inspect_field.cdc b/transactions/inspect_field.cdc new file mode 100644 index 000000000..2bc4301f3 --- /dev/null +++ b/transactions/inspect_field.cdc @@ -0,0 +1,6 @@ +import FlowServiceAccount from 0xf8d6e0586b0a20c7 + +access(all) +fun main(): UFix64 { + return FlowServiceAccount.transactionFee +} diff --git a/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc b/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc index 5640c6aba..c0f6adb71 100644 --- a/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc +++ b/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc @@ -49,7 +49,7 @@ transaction( userAccount.save( <-tokenHolder, - to: LockedTokens.TokenHolderStoragePath, + to: LockedTokens.TokenHolderStoragePath ) userAccount.link<&LockedTokens.TokenHolder>( diff --git a/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc b/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc index 07f6c909d..d0bf3b25f 100644 --- a/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc @@ -18,8 +18,8 @@ transaction( let userAccount = Account(payer: custodyProvider) sharedAccount.keys.add(publicKey: fullAdminPublicKey.publicKey, hashAlgorithm: fullAdminPublicKey.hashAlgorithm, weight: fullAdminPublicKey.weight) - - userAccount.keys.add(publicKey: fullUserPublicKey.publicKey, hashAlgorithm: fullUserPublicKey.hashAlgorithm, weight: fullUserPublicKey.weight) + + userAccount.keys.add(publicKey: fullUserPublicKey.publicKey, hashAlgorithm: fullUserPublicKey.hashAlgorithm, weight: fullUserPublicKey.weight) let vaultCapability = sharedAccount.capabilities.storage .issue(/storage/flowTokenVault) @@ -36,8 +36,8 @@ transaction( let tokenHolder <- LockedTokens.createTokenHolder(lockedAddress: sharedAccount.address, tokenManager: tokenManagerCapability) userAccount.storage.save( - <-tokenHolder, - to: LockedTokens.TokenHolderStoragePath, + <-tokenHolder, + to: LockedTokens.TokenHolderStoragePath ) let tokenHolderCap = userAccount.capabilities.storage.issue<&LockedTokens.TokenHolder>(LockedTokens.TokenHolderStoragePath) diff --git a/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc b/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc index ddef489a5..d18495c1f 100644 --- a/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc @@ -38,7 +38,7 @@ transaction( userAccount.storage.save( <-tokenHolder, - to: LockedTokens.TokenHolderStoragePath, + to: LockedTokens.TokenHolderStoragePath ) let tokenHolderCap = userAccount.capabilities.storage.issue<&LockedTokens.TokenHolder>(LockedTokens.TokenHolderStoragePath) diff --git a/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc b/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc index 3f684f643..de3b7f14d 100644 --- a/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc @@ -40,7 +40,7 @@ transaction( userAccount.storage.save( <-tokenHolder, - to: LockedTokens.TokenHolderStoragePath, + to: LockedTokens.TokenHolderStoragePath ) let tokenHolderCap = userAccount.capabilities.storage.issue<&LockedTokens.TokenHolder>(LockedTokens.TokenHolderStoragePath) diff --git a/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc b/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc index 4a17b2a75..3e62ca800 100644 --- a/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc +++ b/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc @@ -42,7 +42,7 @@ transaction( userAccount.storage.save( <-tokenHolder, - to: LockedTokens.TokenHolderStoragePath, + to: LockedTokens.TokenHolderStoragePath ) let tokenHolderCap = userAccount.capabilities.storage.issue<&LockedTokens.TokenHolder>(LockedTokens.TokenHolderStoragePath) diff --git a/transactions/lockedTokens/admin/custody_setup_account_creator.cdc b/transactions/lockedTokens/admin/custody_setup_account_creator.cdc index e2f636a47..0be021657 100644 --- a/transactions/lockedTokens/admin/custody_setup_account_creator.cdc +++ b/transactions/lockedTokens/admin/custody_setup_account_creator.cdc @@ -7,8 +7,8 @@ transaction { let accountCreator <- LockedTokens.createLockedAccountCreator() custodyProvider.storage.save( - <-accountCreator, - to: LockedTokens.LockedAccountCreatorStoragePath, + <-accountCreator, + to: LockedTokens.LockedAccountCreatorStoragePath ) // create new receiver that marks received tokens as unlocked @@ -18,7 +18,7 @@ transaction { custodyProvider.capabilities.publish<&LockedTokens.LockedAccountCreator>( lockedAccountCreatorCap, - at: LockedTokens.LockedAccountCreatorPublicPath, + at: LockedTokens.LockedAccountCreatorPublicPath ) } } diff --git a/transactions/stakingCollection/register_node.cdc b/transactions/stakingCollection/register_node.cdc index 08b4a9285..affbbc3a4 100644 --- a/transactions/stakingCollection/register_node.cdc +++ b/transactions/stakingCollection/register_node.cdc @@ -11,7 +11,7 @@ transaction(id: String, stakingKey: String, amount: UFix64, publicKeys: [Crypto.KeyListEntry]?) { - + let stakingCollectionRef: &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { @@ -25,8 +25,8 @@ transaction(id: String, networkingKey: networkingKey, stakingKey: stakingKey, amount: amount, - payer: account) - { + payer: account + ) { if publicKeys == nil || publicKeys!.length == 0 { panic("Cannot provide zero keys for the machine account") } From 3b4c47c437fb7df9f2d0789c9a9daa648776b937 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20M=C3=BCller?= Date: Fri, 22 Sep 2023 12:59:44 -0700 Subject: [PATCH 054/160] use optional chaining and nil-coaelescing instead of force-unwrapping --- .../idTableStaking/delegation/delegator_add_capability.cdc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transactions/idTableStaking/delegation/delegator_add_capability.cdc b/transactions/idTableStaking/delegation/delegator_add_capability.cdc index 40d7cb4cb..effad19f1 100644 --- a/transactions/idTableStaking/delegation/delegator_add_capability.cdc +++ b/transactions/idTableStaking/delegation/delegator_add_capability.cdc @@ -9,7 +9,7 @@ transaction { prepare(acct: auth(BorrowValue) &Account) { if acct.storage.borrow(from: FlowIDTableStaking.DelegatorStoragePath) == nil || - acct.capabilities.get<&{FlowIDTableStaking.NodeDelegatorPublic}>(/public/flowStakingDelegator)!.check() + acct.capabilities.get<&{FlowIDTableStaking.NodeDelegatorPublic}>(/public/flowStakingDelegator)?.check() ?? false { return } From 19a568842c0c28f11d4e924d83076251bf214ecc Mon Sep 17 00:00:00 2001 From: Supun Setunga Date: Tue, 26 Sep 2023 08:52:04 -0700 Subject: [PATCH 055/160] Update get_total_balance.cdc --- lib/go/templates/internal/assets/assets.go | 96 +++++++++---------- lib/go/templates/manifest.mainnet.json | 4 +- lib/go/templates/manifest.testnet.json | 4 +- .../lockedTokens/user/get_total_balance.cdc | 4 +- 4 files changed, 54 insertions(+), 54 deletions(-) diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index bebd25b27..d0b32a3af 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -65,11 +65,11 @@ // epoch/scripts/get_proposed_counter.cdc (116B) // epoch/scripts/get_randomize.cdc (128B) // flowToken/burn_tokens.cdc (1.135kB) -// flowToken/create_forwarder.cdc (2.012kB) +// flowToken/create_forwarder.cdc (2.027kB) // flowToken/mint_tokens.cdc (1.019kB) // flowToken/scripts/get_balance.cdc (435B) // flowToken/scripts/get_supply.cdc (208B) -// flowToken/setup_account.cdc (1.478kB) +// flowToken/setup_account.cdc (1.476kB) // flowToken/transfer_tokens.cdc (1.331kB) // idTableStaking/admin/add_approved_and_limits.cdc (1.627kB) // idTableStaking/admin/add_approved_nodes.cdc (1.055kB) @@ -105,7 +105,7 @@ // idTableStaking/delegation/del_stake_unstaked.cdc (676B) // idTableStaking/delegation/del_withdraw_reward_tokens.cdc (952B) // idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc (952B) -// idTableStaking/delegation/delegator_add_capability.cdc (869B) +// idTableStaking/delegation/delegator_add_capability.cdc (878B) // idTableStaking/delegation/get_delegator_committed.cdc (321B) // idTableStaking/delegation/get_delegator_info.cdc (299B) // idTableStaking/delegation/get_delegator_info_from_address.cdc (505B) @@ -117,9 +117,9 @@ // idTableStaking/delegation/get_delegator_unstaking_request.cdc (330B) // idTableStaking/delegation/register_delegator.cdc (977B) // idTableStaking/delegation/register_many_delegators.cdc (649B) -// idTableStaking/node/node_add_capability.cdc (878B) +// idTableStaking/node/node_add_capability.cdc (886B) // idTableStaking/node/register_many_nodes.cdc (1.175kB) -// idTableStaking/node/register_node.cdc (1.66kB) +// idTableStaking/node/register_node.cdc (1.659kB) // idTableStaking/node/request_unstake.cdc (644B) // idTableStaking/node/stake_new_tokens.cdc (1.016kB) // idTableStaking/node/stake_rewarded_tokens.cdc (647B) @@ -161,18 +161,18 @@ // idTableStaking/scripts/get_total_staked.cdc (463B) // idTableStaking/scripts/get_total_staked_by_type.cdc (256B) // idTableStaking/scripts/get_weekly_payout.cdc (202B) -// inspect_field.cdc (122B) -// lockedTokens/admin/admin_create_shared_accounts.cdc (4.158kB) +// inspect_field.cdc (131B) +// lockedTokens/admin/admin_create_shared_accounts.cdc (4.156kB) // lockedTokens/admin/admin_deploy_contract.cdc (454B) // lockedTokens/admin/admin_deposit_account_creator.cdc (818B) // lockedTokens/admin/admin_remove_delegator.cdc (471B) // lockedTokens/admin/check_main_registration.cdc (955B) // lockedTokens/admin/check_shared_registration.cdc (639B) -// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.403kB) -// lockedTokens/admin/custody_create_only_lease_account.cdc (3.288kB) -// lockedTokens/admin/custody_create_only_shared_account.cdc (3.523kB) -// lockedTokens/admin/custody_create_shared_accounts.cdc (3.656kB) -// lockedTokens/admin/custody_setup_account_creator.cdc (803B) +// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.385kB) +// lockedTokens/admin/custody_create_only_lease_account.cdc (3.285kB) +// lockedTokens/admin/custody_create_only_shared_account.cdc (3.52kB) +// lockedTokens/admin/custody_create_shared_accounts.cdc (3.654kB) +// lockedTokens/admin/custody_setup_account_creator.cdc (800B) // lockedTokens/admin/deposit_locked_tokens.cdc (1.688kB) // lockedTokens/admin/get_unlocking_bad_accounts.cdc (477B) // lockedTokens/admin/unlock_tokens.cdc (599B) @@ -204,13 +204,13 @@ // lockedTokens/user/get_locked_account_address.cdc (407B) // lockedTokens/user/get_locked_account_balance.cdc (406B) // lockedTokens/user/get_multiple_unlock_limits.cdc (520B) -// lockedTokens/user/get_total_balance.cdc (2.816kB) +// lockedTokens/user/get_total_balance.cdc (2.818kB) // lockedTokens/user/get_unlock_limit.cdc (397B) // lockedTokens/user/withdraw_tokens.cdc (730B) // nodeVersionBeacon/admin/change_version_freeze_period.cdc (810B) // nodeVersionBeacon/admin/delete_version_boundary.cdc (835B) // nodeVersionBeacon/admin/heartbeat.cdc (635B) -// nodeVersionBeacon/admin/set_version_boundary.cdc (1.427kB) +// nodeVersionBeacon/admin/set_version_boundary.cdc (1.428kB) // nodeVersionBeacon/scripts/get_current_node_version.cdc (244B) // nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc (271B) // nodeVersionBeacon/scripts/get_next_version_boundary.cdc (275B) @@ -237,12 +237,12 @@ // quorumCertificate/submit_vote.cdc (607B) // stakingCollection/close_stake.cdc (781B) // stakingCollection/create_machine_account.cdc (1.175kB) -// stakingCollection/create_new_tokenholder_acct.cdc (3.404kB) +// stakingCollection/create_new_tokenholder_acct.cdc (3.413kB) // stakingCollection/deploy_collection_contract.cdc (312B) // stakingCollection/register_delegator.cdc (698B) // stakingCollection/register_multiple_delegators.cdc (790B) // stakingCollection/register_multiple_nodes.cdc (1.607kB) -// stakingCollection/register_node.cdc (1.449kB) +// stakingCollection/register_node.cdc (1.445kB) // stakingCollection/request_unstaking.cdc (707B) // stakingCollection/restake_all_stakers.cdc (1.328kB) // stakingCollection/scripts/does_account_have_staking_collection.cdc (260B) @@ -1654,7 +1654,7 @@ func flowtokenBurn_tokensCdc() (*asset, error) { return a, nil } -var _flowtokenCreate_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\x4d\x6f\xe3\x36\x10\xbd\xf3\x57\x4c\xf7\xb0\xb5\x03\x47\xee\xe7\xc5\xc8\x16\x48\x93\xa6\xd8\xcb\x16\x48\x82\xed\xb1\x3b\x26\x47\xe6\x34\x32\x29\x90\x23\xab\xc6\x22\xff\xbd\x20\x29\xcb\x52\x80\xe4\xb4\x3a\x89\x9a\x99\x37\xef\xbd\x19\x71\x7d\x71\xa1\xd4\xa3\xe5\x08\x12\xd0\x45\xd4\xc2\xde\x01\x47\x40\x10\xda\xb7\x0d\x0a\x41\xed\x43\x3a\x4e\xe2\x62\x51\x40\xfb\xae\x31\xb0\x25\xe8\x22\x19\x25\x1e\x22\x09\x74\x2d\xa0\x03\xd4\xda\x77\x4e\x40\x7c\x2a\xee\x31\x18\x30\xd4\xfa\xc8\x42\x06\xc4\x3f\x91\x8b\x29\x86\xce\x8b\xa5\x00\x81\x34\xf1\x81\x42\xa5\xd4\xc7\x1a\xd0\x1d\xbd\x23\x88\xe4\x4c\x9c\x26\xa7\x3e\xe1\xfb\x08\x77\x05\x91\x02\xdc\x0f\x75\x2b\x25\x96\xc6\x13\xf4\xdc\x34\xf0\x6f\x17\x65\x6c\x2e\xd6\x47\x9a\x60\xa5\xf4\xcf\xd8\x35\x52\x94\x58\x8c\xb0\x25\x72\x2a\x29\xc0\x98\xc3\x81\x34\xb7\x4c\x4e\x00\x9d\x01\xda\x73\x7a\x01\x3a\xa4\x2f\xb9\x88\x9d\x61\x8d\x42\x51\xf5\x96\xb5\xcd\xec\x4e\x0d\x93\x4a\x7b\x6a\x58\x0d\x06\xf7\x78\x5c\x01\x27\x7d\xe0\xeb\xfa\x52\x5b\x64\x07\x91\xc2\x81\x35\x41\x8f\x4e\x32\xb5\xbd\x77\x2c\x3e\x40\x6f\x7d\x1a\xc3\x00\xc8\x6e\xa7\xce\xf4\x59\x56\xc0\x02\x1a\x1d\xf4\x28\xda\x16\x5a\x39\x14\x89\xa0\xb7\x14\x68\x42\x00\x34\xee\x09\xea\xe0\xf7\x95\x52\x0f\x42\xed\x90\x59\xa6\x55\x46\x15\xa1\x67\xb1\xa5\x60\x54\x11\x36\x4a\xfd\x58\xc1\xa3\x25\xb8\xeb\xdc\x8e\xb7\x0d\xc1\x63\xce\xd0\xde\x49\x40\x9d\x5c\x10\x0a\x35\x6a\x82\x68\xf3\x3e\x60\x13\x08\xcd\x31\xed\x85\xa1\xb6\xf1\x47\x32\x10\xfd\x9e\x32\x29\xf5\x53\x41\xc3\xb6\x6d\x58\x63\xc2\x93\x39\xde\x80\x32\xa9\xae\xd4\xcf\xa5\x68\x32\x91\x61\xbd\x86\x64\x8b\x07\x02\x1c\x06\x9a\x96\x55\xf2\x3e\x17\xe0\x40\x28\x64\x14\x00\xe4\x41\x46\xf1\x81\x0c\xb0\x03\x96\x98\x4f\xb8\xa3\xa2\x1d\xa1\xed\xb6\x0d\x47\x4b\x66\xdc\x25\xf5\x4b\x05\xb7\x99\x48\xf6\xf3\x4b\x56\x7f\x37\xce\xa4\xd2\x46\x7f\x39\x93\xcf\x5b\x6a\xb8\xae\x29\x4c\x68\xaa\x5f\xab\xb4\xb3\x80\xe0\xa8\x87\xeb\xf2\x71\x03\x37\x99\x59\x86\x3d\xe9\x71\x3e\xec\xb1\x69\x8e\xab\x4c\x57\x2c\x39\x08\x9d\x2b\x9d\x8b\x90\x7f\xc6\xd1\x94\xd6\x93\x9f\xb2\x14\xed\x48\x84\xdd\x0e\x66\x3f\x44\x1a\xfd\xac\x51\x59\xe0\x17\x8b\x5e\xa9\x8b\xb5\x52\xbc\x6f\x7d\x90\x71\xde\x65\xdc\x19\xe0\xdd\xec\xdb\xbb\x31\xb3\xf1\xfd\x2c\xeb\x74\x1e\x33\x5e\x98\x56\xf2\x7e\xf8\xef\xee\xaf\xfb\xbf\xaf\xef\x6f\x3f\x7e\xfa\xf3\xfa\xf6\xf6\xfe\x8f\x87\x07\xa5\x26\x72\x16\xa7\x4b\x61\x03\xd7\xc6\x04\x8a\x71\x09\x5f\x55\xd6\xd8\x06\x6a\x31\xd0\x02\xb5\x96\x0d\x60\x27\x76\xf1\xbb\x0f\xc1\xf7\x9f\xb1\xe9\x68\x05\x37\xd8\xe2\x96\x1b\x16\xa6\xb8\x84\xf7\x83\xe3\xa9\x1c\x86\xa7\x21\x99\xac\xd3\x87\xe4\xda\x90\x35\xb6\x5d\x8e\xc9\xe9\xa9\xf4\x04\xb3\xda\x91\x5c\xbd\xff\x3a\xb3\xa3\x3a\x99\xfd\xfc\xdb\x62\x9d\xf7\x48\xaf\xeb\x93\x13\xa7\xd8\xf2\x3b\x35\xa3\x70\xc8\x1b\x7b\x75\xf9\xd2\xa1\xaa\x0c\xfb\x13\xf5\xe3\x5d\xb7\x18\xe9\x6e\xce\xcc\xcf\x1c\x93\x15\xd5\xb0\xcd\x55\xc4\x03\x2d\xae\x2e\x33\xfa\x0a\xc4\x6f\x60\x3d\x84\xce\x94\x46\xe0\xe5\x99\x12\xd7\x99\x95\xc6\x16\x3e\x14\xc4\x6f\xa3\x7a\x62\xfc\xd0\x46\x63\x5b\x69\x4b\xfa\x69\xf1\x32\x38\x8a\xe9\x5c\xc3\xee\xe9\x0d\xd4\x59\xd9\xb3\x3a\xbf\xcd\x2c\x1e\xff\x97\x9b\x57\x54\x9d\x4c\xe3\x18\x3b\x7a\x53\xdf\x5b\x1e\xce\xa8\xcf\xf0\x87\x3b\xe5\x2d\xe4\x99\x92\x29\xe1\xd5\x2c\x82\xb2\x81\x57\xed\x38\xa7\x16\x32\xcf\xea\x59\xfd\x1f\x00\x00\xff\xff\x39\xbc\x66\xfe\xdc\x07\x00\x00" +var _flowtokenCreate_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\x4d\x6f\xe3\x36\x10\xbd\xf3\x57\x4c\xf7\xb0\xb5\x03\x47\xee\xe7\xc5\xc8\x16\x48\x93\xa6\xd8\xcb\x16\x48\x82\xed\xb1\x3b\x26\x47\x26\xbb\x12\x29\x90\x23\xab\x46\x90\xff\x5e\x90\x94\x68\x29\x40\x72\x5a\x9d\x44\xcd\xcc\x9b\xf7\xde\x0c\xb5\xbd\xb8\x10\xe2\x51\x9b\x00\xec\xd1\x06\x94\x6c\x9c\x05\x13\x00\x81\xa9\xed\x1a\x64\x82\xda\xf9\x78\x9c\xc5\x59\x23\x83\x74\x7d\xa3\x60\x4f\xd0\x07\x52\x82\x1d\x04\x62\xe8\x3b\x40\x0b\x28\xa5\xeb\x2d\x03\xbb\x58\x3c\xa0\x57\xa0\xa8\x73\xc1\x30\x29\x60\xf7\x95\x6c\x88\x31\xb4\x8e\x35\x79\xf0\x24\xc9\x1c\xc9\x57\x42\x7c\xac\x01\xed\xc9\x59\x82\x40\x56\x85\x79\x72\xec\xe3\xbf\x0f\x70\x97\x11\xc9\xc3\xfd\x58\xb7\x11\xac\xa9\x9c\x60\x30\x4d\x03\xff\xf6\x81\x4b\x73\xd6\x2e\xd0\x0c\x2b\xa6\x7f\xc6\xbe\xe1\xac\x44\x63\x80\x3d\x91\x15\x51\x01\x86\x14\xf6\x24\x4d\x67\xc8\x32\xa0\x55\x40\xad\x89\x2f\x40\xc7\xf8\x25\x15\x19\xab\x8c\x44\xa6\x20\x06\x6d\xa4\x4e\xec\xa6\x86\x51\xa5\x9e\x1a\x56\xa3\xc1\x03\x9e\x36\x60\xa2\x3e\x70\x75\x7d\x29\x35\x1a\x0b\x81\xfc\xd1\x48\x82\x01\x2d\x27\x6a\xad\xb3\x86\x9d\x87\x41\xbb\x38\x86\x11\xd0\xd8\x83\x38\xd3\x37\xbc\x01\xc3\x20\xd1\xc2\x80\x2c\x75\xa6\x95\x42\x81\x08\x06\x4d\x9e\x66\x04\x40\x62\x4b\x50\x7b\xd7\x56\x42\x3c\x30\x75\x63\x66\x9e\x56\x1e\x55\x80\xc1\xb0\xce\x05\x45\x85\xdf\x09\xf1\x63\x05\x8f\x9a\xe0\xae\xb7\x07\xb3\x6f\x08\x1e\x53\x86\x74\x96\x3d\xca\xe8\x02\x93\xaf\x51\x12\x04\x9d\xf6\x01\x1b\x4f\xa8\x4e\x71\x2f\x14\x75\x8d\x3b\x91\x82\xe0\x5a\x4a\xa4\xc4\x4f\x19\x0d\xbb\xae\x31\x12\x23\x1e\x2f\xf1\x46\x94\x59\x75\x25\x7e\xce\x45\xb3\x89\x8c\xeb\x35\x26\x6b\x3c\x12\xe0\x38\xd0\xb8\xac\x9c\xf6\x39\x03\x7b\x42\x26\x25\x00\x20\x0d\x32\xb0\xf3\xa4\xc0\x58\x30\x1c\xd2\x09\x0f\x94\xb5\x23\x74\xfd\xbe\x31\x41\x93\x2a\xbb\x24\x7e\xa9\xe0\x36\x11\x49\x7e\x7e\x49\xea\xef\xca\x4c\x2a\xa9\xe4\x97\x33\xf9\xb4\xa5\xca\xd4\x35\xf9\x19\x4d\xf1\x6b\x15\x77\x16\x10\x2c\x0d\x70\x9d\x3f\xee\xe0\x26\x31\x4b\xb0\x93\x1e\xeb\x7c\x8b\x4d\x73\xda\x24\xba\xac\xc9\x82\xef\x6d\xee\x9c\x85\xfc\x53\x46\x93\x5b\xcf\x2e\x65\x2e\x3a\x10\xb3\xb1\x07\x58\x5c\x88\x38\xfa\x45\xa3\xbc\xc0\x2f\x16\xbd\x12\x17\x5b\x21\x4c\xdb\x39\xcf\x65\xde\x79\xdc\x09\xe0\xdd\xe2\xdb\xbb\x92\xd9\xb8\x61\x91\x35\x9d\x4b\xc6\x0b\xd3\x72\xde\x0f\xff\xdd\xfd\x75\xff\xf7\xf5\xfd\xed\xc7\x4f\x7f\x5e\xdf\xde\xde\xff\xf1\xf0\x20\xc4\x4c\xce\x6a\xfa\x29\xec\xe0\x5a\x29\x4f\x21\xac\xe1\x49\x24\x8d\x9d\xa7\x0e\x3d\xad\x50\x4a\xde\x01\xf6\xac\x57\xbf\x3b\xef\xdd\xf0\x19\x9b\x9e\x36\x70\x83\x1d\xee\x4d\x63\xd8\x50\x58\xc3\xfb\xd1\xf1\x58\x0e\xe3\xd3\x10\xcf\xd6\xe9\x43\x74\x6d\xcc\x2a\x6d\xd7\x25\x39\x3e\x95\x9c\x61\x56\x07\xe2\xab\xf7\x4f\x0b\x3b\xaa\xc9\xec\xe7\xdf\x56\xdb\xb4\x47\x72\x5b\x4f\x4e\x4c\xb1\xf5\x77\x62\x41\xe1\x98\x36\xf6\xea\xf2\xa5\x43\x55\x1e\xf6\x27\x1a\xca\xbf\x6e\x55\xe8\xee\xce\xcc\xcf\x1c\xa3\x15\xd5\xb8\xcd\x55\xc0\x23\xad\xae\x2e\x13\xfa\x06\xd8\xed\x60\x3b\x86\xce\x94\x0a\xf0\xfa\x4c\xc9\xd4\x89\x95\xc4\x0e\x3e\x64\xc4\x6f\xa3\x7a\x66\xfc\xd8\x46\x62\x57\x49\x4d\xf2\xeb\xea\x65\xb0\x88\x59\xb4\xee\xed\x78\x35\xdf\xe8\xb2\x80\x79\x16\xe7\xb7\x85\xe5\xe5\xfe\xdc\xbc\xa2\x72\x32\xd1\x84\xd0\xd3\x9b\x7a\xdf\xf2\xf4\x75\x29\xa3\x90\xb7\x90\x17\x4a\xe6\x84\x37\x8b\x08\xf2\x0e\x5e\xb5\xa3\x64\x66\x2e\xcf\xe2\x59\xfc\x1f\x00\x00\xff\xff\xd3\x00\x07\x52\xeb\x07\x00\x00" func flowtokenCreate_forwarderCdcBytes() ([]byte, error) { return bindataRead( @@ -1670,7 +1670,7 @@ func flowtokenCreate_forwarderCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/create_forwarder.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0xab, 0xe8, 0x46, 0x94, 0x15, 0x2f, 0x7f, 0xd3, 0xb7, 0xe5, 0xdb, 0x7a, 0x6a, 0xc, 0x89, 0x4f, 0x7a, 0x57, 0xef, 0x60, 0x14, 0x1e, 0x78, 0xb9, 0xae, 0x1d, 0x79, 0x2f, 0x0, 0x3d, 0x22}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x2d, 0xc9, 0x6c, 0x1d, 0x48, 0x2c, 0x76, 0xf6, 0xe3, 0xf9, 0x4e, 0xbd, 0xf, 0xb, 0x5f, 0x88, 0x18, 0x20, 0xb2, 0x46, 0x85, 0xd9, 0x3, 0xae, 0xc8, 0xc, 0xc5, 0xb, 0x20, 0xfd, 0x2c}} return a, nil } @@ -1734,7 +1734,7 @@ func flowtokenScriptsGet_supplyCdc() (*asset, error) { return a, nil } -var _flowtokenSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x52\xcb\x8e\x1a\x3b\x10\xdd\xf7\x57\x1c\xb1\x18\x35\x12\x97\xde\xa3\x61\xa4\x9b\x51\xf2\x01\xc9\x28\xfb\xc2\x5d\x4d\x5b\x31\xb6\x65\x97\x21\x08\xf1\xef\x91\xfb\x45\x9a\x99\xc9\x26\x51\x16\xf1\x02\xe1\xaa\xe3\xaa\xf3\xe8\xa2\xaa\xf0\xd2\xea\x08\x09\x64\x23\x29\xd1\xce\x42\x47\x10\x84\x0f\xde\x90\x30\x1a\x17\xf2\xf5\xd6\xcf\x6f\xc4\x81\xea\x1a\x84\xaf\x94\x8c\x20\x70\x74\x29\x28\xce\x75\x69\x59\x07\x90\x52\x2e\x59\xc9\xd8\x98\x6b\x24\xb9\x71\x86\x22\x8b\x14\x39\x5f\xd0\x18\x77\x7a\x71\xdf\xd8\x16\x85\x3e\x78\x17\x04\x9f\x92\xdd\xeb\x9d\xe1\xae\x8a\x26\xb8\x03\x16\xb3\xda\x62\x42\x8e\x6f\x47\xd4\x78\x5f\x14\xc5\xcf\x5a\x2e\x45\x01\x00\x3e\xb0\xa7\xc0\x65\xd4\x7b\xcb\x61\x03\x4a\xd2\x96\x5f\xc4\x05\xda\xf3\x12\x0f\xff\xf7\x6c\x97\x23\x3c\x1f\xdd\xa0\x47\xaf\x63\x8f\x5b\xef\x5c\x08\xee\xf4\xf8\x30\xed\x5a\x77\xea\x9f\xca\x4c\x61\x83\x6a\xc0\x55\x93\xae\xae\xbd\xc4\x76\x0b\xab\x0d\x2e\xd3\xe8\x7c\xaa\x0a\xcf\x81\xb3\xc1\x04\xcb\xa7\x9b\x19\x83\xa5\x64\x6b\xf8\x24\xd0\x02\x6d\x31\x8c\x9e\x4d\xb8\x63\x17\xe9\xc8\xe5\xe3\x7f\x37\x72\xaa\x1b\xff\xf1\xe0\xe5\xdc\x8d\x2c\x97\x2b\x88\x7b\x9f\x67\xf1\x2e\x3f\x9f\x76\x46\x2b\x28\xf2\xb4\xd3\x46\xcb\x79\xc8\x79\xa0\xda\xa5\xeb\xac\x39\x83\xbf\x7b\x17\x39\xde\x0f\xca\xd0\x9a\xbd\x8b\x5a\xd0\x24\xdb\x27\x23\x6d\x70\x69\xdf\x76\xcd\xcf\xac\x58\x1f\x39\x40\x5b\xe1\xd0\x90\x9a\x2b\x35\x2c\x38\xe6\x55\xcf\xe4\xb1\x1d\x85\x4f\x74\x34\xc7\xc9\x05\x1d\x63\xe2\x57\x11\x5d\x66\x1f\xd1\x7a\x5c\x77\x7d\x2a\x67\x7b\x3a\xba\x6f\xbb\x33\xc3\xdd\x59\xf5\x16\x9f\xce\xb2\xd8\xfe\x0e\x93\x51\xf1\xea\x55\x87\x64\x83\xaa\x0f\xe5\x46\x73\x1c\xb5\xfa\x15\xd5\x3f\x9d\xea\x8e\x0c\x59\xc5\x68\x34\x9b\x7a\x16\xe9\x87\xa1\xf3\x77\x12\x1d\xb6\xfd\x53\x81\x0e\x9a\xee\xf3\x1c\xff\x5d\x8b\xfe\xf7\x5a\xe0\x47\x00\x00\x00\xff\xff\xa1\x25\xc5\xfd\xc6\x05\x00\x00" +var _flowtokenSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x92\xcf\x6e\xdb\x30\x0c\xc6\xef\x7e\x8a\x0f\x39\x14\x0e\xd0\xc5\xf7\xa0\x29\xb0\x15\xdb\x03\x6c\xc5\xee\x8c\x4c\xc7\xc2\x14\x49\x90\xa8\x64\x41\x90\x77\x1f\xe4\x7f\x99\xd3\x76\x97\x0d\x3b\x54\x87\x20\x22\x3f\x91\x3f\xf2\x73\x51\x55\x78\x6e\x75\x84\x04\xb2\x91\x94\x68\x67\xa1\x23\x08\xc2\x7b\x6f\x48\x18\x8d\x0b\xf9\x7a\xcd\xe7\x37\xe2\x40\x75\x0d\xc2\x77\x4a\x46\x10\x38\xba\x14\x14\xe7\xb8\xb4\xac\x03\x48\x29\x97\xac\x64\x6d\xcc\x31\x92\x9c\x38\x41\x91\x45\x8a\x9c\x2f\x68\x8c\x3b\x3e\xbb\x1f\x6c\x8b\x42\xef\xbd\x0b\x82\x2f\xc9\xee\xf4\xd6\x70\x17\x45\x13\xdc\x1e\x8b\x59\x6c\x31\x29\xc7\xb7\xa3\x6a\xbc\x2f\x8a\xe2\xf7\x59\xce\x45\x01\x00\x3e\xb0\xa7\xc0\x65\xd4\x3b\xcb\x61\x0d\x4a\xd2\x96\xdf\xc4\x05\xda\xf1\x12\x77\x1f\x7b\xda\xe5\x28\xcf\x47\x37\xe8\xd5\xab\xd8\xeb\x56\x5b\x17\x82\x3b\x3e\xdc\x4d\xbd\x56\xdd\xf4\x8f\x65\x46\x58\xa3\x1a\x74\xd5\x34\x57\x97\x5e\x62\xb3\x81\xd5\x06\xe7\xa9\x74\x3e\x55\x85\xa7\xc0\x79\xc1\x04\xcb\xc7\xeb\x32\x86\x95\x92\xad\xe1\x93\x40\x0b\xb4\xc5\x50\x7a\x56\xe1\x86\x2e\xd2\x81\xcb\x87\x0f\x57\x38\xd5\x95\xff\xbc\xf7\x72\xea\x4a\x96\xcb\x7b\x88\x7b\x9b\xb3\x78\x93\xcf\xa7\xad\xd1\x0a\x8a\x3c\x6d\xb5\xd1\x72\x1a\x7c\x1e\x50\x3b\x77\x9d\x35\x27\xf0\x4f\xef\x22\xc7\xdb\x42\x59\x5a\xb3\x77\x51\x0b\x9a\x64\x7b\x67\xa4\x0d\x2e\xed\xda\x2e\xf9\x95\x15\xeb\x03\x07\x68\x2b\x1c\x1a\x52\xf3\x49\x0d\x0b\x0e\xb9\xd5\x13\x79\x6c\xc6\xc1\x27\x1c\xcd\x71\xda\x82\x8e\x31\xf1\x0b\x8b\xce\xb3\x8f\x68\x35\xb6\xbb\x3c\x96\xb3\x3e\x1d\xee\xeb\xdb\x99\xe9\x6e\x56\xf5\x1a\x4f\xb7\xb2\xd8\xfe\x0d\xc9\x38\xf1\xfd\x8b\x0c\xc9\x1a\x55\x6f\xca\x15\x73\x2c\xf5\x27\xd2\x7f\x6d\xea\x96\x0c\x59\xc5\x68\x34\x9b\x7a\xe6\xe8\xa7\x21\xf3\x7f\x0c\x1d\xba\xbd\x2b\x3f\x87\x99\x6e\x40\xc7\x7f\x97\xa2\xff\xbd\x14\xf8\x15\x00\x00\xff\xff\xf0\x50\x6a\x4c\xc4\x05\x00\x00" func flowtokenSetup_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -1750,7 +1750,7 @@ func flowtokenSetup_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/setup_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x72, 0x82, 0xbc, 0x88, 0x48, 0xfe, 0xd0, 0x94, 0x88, 0xf7, 0x51, 0xe0, 0x4a, 0x66, 0xab, 0x87, 0x66, 0xc, 0xd6, 0x54, 0x9a, 0x65, 0x24, 0xc8, 0x8e, 0x26, 0xec, 0x74, 0x56, 0xf2, 0xac, 0xbd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8e, 0xd1, 0x69, 0x95, 0x48, 0x53, 0x7b, 0x5d, 0xc2, 0xc8, 0xde, 0x7e, 0xba, 0x29, 0xa1, 0xbc, 0x3b, 0xfb, 0x69, 0xa3, 0x2, 0x7, 0x85, 0x98, 0x8b, 0x3, 0x7c, 0xcc, 0x36, 0x44, 0xf2, 0x9d}} return a, nil } @@ -2454,7 +2454,7 @@ func idtablestakingDelegationDel_withdraw_unstaked_tokensCdc() (*asset, error) { return a, nil } -var _idtablestakingDelegationDelegator_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\xcd\xae\xda\x30\x10\x85\xf7\x7e\x8a\x29\x0b\x94\x48\x28\xd9\x23\x40\x6a\x8b\x2a\x75\xd3\x22\x81\xba\x9f\x38\x43\xe2\x62\xec\xc8\x9e\x28\xad\x20\xef\x5e\x25\x14\x27\xb9\xa0\xfb\xe3\x5d\xe2\x39\x3e\x9f\x3f\xab\x73\x65\x1d\xc3\x37\x6d\x9b\xef\xdb\x03\x66\x9a\xf6\x8c\x27\x65\x0a\x38\x3a\x7b\x86\xd9\xe3\xc6\x4c\x8c\x32\x07\x7b\x22\x33\x1a\xed\xbf\x67\x42\xa4\x29\x1c\x4a\xe5\x81\x1d\x1a\x8f\x92\x95\x35\x80\x79\xee\x01\xa1\xaa\x33\xad\x24\xe4\xa4\xa9\x40\xb6\x0e\x24\x56\x98\x29\xad\xf8\x2f\xb0\x05\x34\x80\x52\xda\xda\x30\x34\x8a\xcb\xee\x24\x34\x40\x7f\x94\xe7\x8e\xea\x87\xcd\x69\x1b\xa2\x36\xfb\x4d\x92\x85\x18\xd7\x5c\x84\x00\x00\xa8\x1c\x55\xe8\x28\x42\x29\x79\x09\x58\x73\x19\x7d\xb1\xce\xd9\xe6\x17\xea\x9a\x62\x98\x7f\xbe\xb5\xc4\xf7\x40\xb7\xd4\xb1\x2b\xe7\xc4\xb3\x75\x58\x50\x92\xf5\x89\x55\x9f\x7e\x34\x91\x04\x90\x9f\x8d\x21\x17\xc3\xfc\xc9\xcc\x04\x78\x13\x75\xaa\x96\x4f\x74\x0f\x67\xed\x6f\xdd\x3b\xe4\x32\x86\xf5\x1a\x8c\xd2\x70\xbd\x06\xc4\x6e\xf5\x8c\x41\x9b\x22\x9f\x14\xc4\xab\xf9\xe5\xad\xfa\x5d\xaf\xbe\xdd\x44\xe9\xed\x11\xd2\xa3\xb6\xcd\xff\xc9\x30\x14\x7f\x4a\x64\x49\xf2\x14\xc5\xa1\xf3\x32\x69\x77\xc4\xb5\x33\xe1\x57\x3b\xe8\xd3\xc4\xc3\xbb\x7e\xc5\x0a\xd6\x4f\x50\xef\x6e\x95\xf7\x35\x7d\x04\x7a\x02\xf1\x4e\x83\x21\x33\x5c\xe6\x91\xa8\x97\xe1\xcb\x69\xc1\xf8\x1e\x8b\xa9\x7d\x5e\xbe\xe6\x6f\xf1\xa2\xb3\x15\xed\xbf\x00\x00\x00\xff\xff\xe6\xda\xa3\x2f\x65\x03\x00\x00" +var _idtablestakingDelegationDelegator_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\xcb\xce\x9b\x30\x10\x85\xf7\x7e\x8a\x51\x16\x11\x48\x15\xec\xa3\x5c\xd4\x36\xaa\xd4\x4d\x1b\x29\x51\xf7\x83\x19\xc0\x8d\x63\x23\x7b\x10\xad\x12\xde\xbd\x82\x34\x0e\x34\xe9\x7f\xf1\x0e\x98\xe3\xf3\xf1\x8d\x3a\xd5\xd6\x31\x7c\xd1\xb6\xfd\xba\x3d\x60\xa6\x69\xcf\x78\x54\xa6\x84\xc2\xd9\x13\xcc\x1e\x3f\xcc\xc4\x28\x73\xb0\x47\x32\xa3\xd1\xe1\x79\x26\x44\x9a\xc2\xa1\x52\x1e\xd8\xa1\xf1\x28\x59\x59\x03\x98\xe7\x1e\x10\xea\x26\xd3\x4a\x42\x4e\x9a\x4a\x64\xeb\x40\x62\x8d\x99\xd2\x8a\x7f\x03\x5b\x40\x03\x28\xa5\x6d\x0c\x43\xab\xb8\xea\x6f\x42\x03\xf4\x4b\x79\xee\xa9\xbe\xd9\x9c\xb6\x21\x6a\xb3\x9f\x24\x59\x88\x71\xcd\x59\x08\x00\x80\xda\x51\x8d\x8e\x22\x94\x92\x17\x80\x0d\x57\xd1\x27\xeb\x9c\x6d\x7f\xa0\x6e\x28\x86\xf9\xc7\x6b\x4b\x7c\x0b\xf4\x47\x15\x7d\x39\x27\x9e\xad\xc3\x92\x92\x6c\x48\x2c\x87\xf4\xa3\x89\x24\x80\x7c\x6f\x0d\xb9\x18\xe6\x4f\x66\x26\xc0\xeb\xa8\x57\xb5\x78\xa2\xfb\x7e\xd7\xfe\xda\xbd\x43\xae\x62\x58\xad\xc0\x28\x0d\x97\x4b\x40\xec\xcf\xc0\x18\xb4\x29\xf2\x49\x49\xbc\x9c\x9f\x5f\xab\xdf\x0d\xea\xbb\x75\x94\x5e\x97\x90\x16\xda\xb6\x7f\x27\xc3\x50\xbc\x49\x64\x45\xf2\x18\xc5\xb0\xd9\x40\x81\xda\x53\x28\x3f\x4f\x30\x1c\x71\xe3\x4c\x78\xd5\xdd\x3d\x6a\xe2\xfb\x82\x3f\x63\x0d\xab\x27\xcc\x37\xc9\xca\xfb\x86\xde\x43\x3f\x81\x78\xa3\xca\x90\x89\xc5\xff\x2d\x0e\x56\x7c\x35\x2d\x18\xff\xc7\x87\xe9\x1a\x78\x01\x2f\x99\xfc\xa7\xb3\x13\xdd\x9f\x00\x00\x00\xff\xff\xc4\xa7\x67\x81\x6e\x03\x00\x00" func idtablestakingDelegationDelegator_add_capabilityCdcBytes() ([]byte, error) { return bindataRead( @@ -2470,7 +2470,7 @@ func idtablestakingDelegationDelegator_add_capabilityCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/delegator_add_capability.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x24, 0x75, 0x27, 0xd0, 0x17, 0x1f, 0x9d, 0xf7, 0xd9, 0x16, 0x2a, 0x29, 0x3e, 0x27, 0x8, 0xba, 0x9e, 0x91, 0x4a, 0xed, 0x2b, 0x5a, 0xe3, 0x6f, 0x46, 0x70, 0x8a, 0x83, 0x80, 0x37, 0x96, 0x9f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc0, 0x83, 0xf5, 0x8d, 0x17, 0xd9, 0xb, 0xc, 0x11, 0xe1, 0xb6, 0xbe, 0xcc, 0x88, 0xe7, 0xd9, 0x44, 0x4, 0x29, 0x4a, 0x86, 0x3a, 0xd3, 0x23, 0x83, 0xd9, 0x60, 0xfd, 0x8b, 0xb3, 0xa6, 0xac}} return a, nil } @@ -2694,7 +2694,7 @@ func idtablestakingDelegationRegister_many_delegatorsCdc() (*asset, error) { return a, nil } -var _idtablestakingNodeNode_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x6b\xea\x40\x10\xc7\xef\xf9\x14\xf3\x3c\x48\x02\x12\xef\xa2\xc2\x7b\xaf\x14\x7a\x69\x05\xa5\xf7\xc9\x66\x34\x5b\xe3\x4e\xd8\x9d\x60\x8b\xfa\xdd\xcb\x6e\x30\x26\xa8\xad\x7b\x4b\x32\x33\xff\xdf\xfe\x26\x7a\x57\xb1\x15\x78\x2e\x79\xff\xf2\xb4\xc2\xac\xa4\xa5\xe0\x56\x9b\x0d\xac\x2d\xef\x60\x70\xfd\x61\x10\x75\x7a\x56\xbc\x25\xd3\x29\x0d\xcf\x83\x28\x1a\x8f\x61\x55\x68\x07\x62\xd1\x38\x54\xa2\xd9\x00\xe6\xb9\x03\x84\xaa\xce\x4a\xad\xc0\x70\x4e\xa0\xb0\xc2\x4c\x97\x5a\xbe\x40\x18\xd0\x00\x2a\xc5\xb5\x11\xd8\x6b\x29\xfc\x10\x34\x40\x9f\xda\x89\x07\x7a\xe5\x3c\x30\x90\x05\xce\x3e\x48\x49\x14\x75\xc7\x1f\xa2\x08\x00\xa0\xb2\x54\xa1\xa5\x18\x95\x92\x09\x60\x2d\x45\xfc\x8f\xad\xe5\xfd\x3b\x96\x35\x25\x30\xfc\xdb\x44\x24\xe7\x06\x7f\xf4\xda\x27\x4b\xea\x84\x2d\x6e\x28\xcd\x42\xc7\x34\x74\x5f\x1b\x48\x3d\xc9\x5b\x45\x16\x85\x6d\x02\xc3\x3b\x15\x0d\xeb\x3c\xf6\x76\x26\x37\x0c\x77\x8a\x96\x4d\xee\x02\xa5\x48\x60\x36\x03\xa3\x4b\x38\x1e\x5b\x3c\x7f\x02\x5f\xeb\x4b\x93\x4b\x37\x24\xd3\xe1\xe1\xc7\xb9\x8b\xe0\xfa\x34\xbf\x77\x89\x6e\x55\x08\xff\x93\xaa\x82\xd4\x36\x4e\xda\xec\x43\x8f\xc2\x92\xd4\xd6\xb4\xaf\x4e\x17\x85\x25\x49\xd8\x69\x33\xf2\x3f\x56\x30\xbb\xc1\x7c\x16\xac\x9d\xab\xe9\x61\xfa\x1e\xc2\xa3\x22\xdb\xa6\xe4\x02\x79\x0d\x14\xfe\x46\x57\xf4\x23\x7a\xf7\x18\xf5\xd7\x20\xbf\xac\xf2\x22\x73\xd4\x21\x68\x64\x9d\xbe\x03\x00\x00\xff\xff\xc8\x05\x97\x68\x6e\x03\x00\x00" +var _idtablestakingNodeNode_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xcf\x6b\xea\x40\x10\xc7\xef\xf9\x2b\x06\x0f\x92\xc0\x23\xde\xc5\x1f\xbc\xf7\x4a\xa1\x97\x56\x50\x7a\x9f\x6c\x46\xb3\x75\xdd\x09\xbb\x13\x6c\x51\xff\xf7\x92\x0d\xc6\x04\xb5\x75\x6f\x49\x66\xe6\xfb\xd9\xcf\x44\xef\x4a\x76\x02\xcf\x86\xf7\x2f\x4f\x2b\xcc\x0c\x2d\x05\xb7\xda\x6e\x60\xed\x78\x07\x83\xeb\x0f\x83\xa8\xd3\xb3\xe2\x2d\xd9\x4e\x69\x78\x1e\x44\xd1\x68\x04\xab\x42\x7b\x10\x87\xd6\xa3\x12\xcd\x16\x30\xcf\x3d\x20\x94\x55\x66\xb4\x02\xcb\x39\x81\xc2\x12\x33\x6d\xb4\x7c\x81\x30\xa0\x05\x54\x8a\x2b\x2b\xb0\xd7\x52\xd4\x43\xd0\x02\x7d\x6a\x2f\x35\xd0\x2b\xe7\x81\x81\x1c\x70\xf6\x41\x4a\xa2\xa8\x3b\xfe\x10\x45\x00\x00\xa5\xa3\x12\x1d\xc5\xa8\x94\x8c\x01\x2b\x29\xe2\x7f\xec\x1c\xef\xdf\xd1\x54\x94\xc0\xf0\x6f\x13\x91\x9c\x1b\xea\xa3\xd7\x75\xb2\xa4\x5e\xd8\xe1\x86\xd2\x2c\x74\x4c\x42\xf7\xb5\x81\xb4\x26\x79\x2b\xc9\xa1\xb0\x4b\x60\x78\xa7\xa2\x61\x9d\xc5\xb5\x9d\xf1\x0d\xc3\x9d\xa2\x65\x93\xbb\x40\x29\x12\x98\x4e\xc1\x6a\x03\xc7\x63\x8b\x57\x9f\xc0\xd7\xfa\xd2\xe4\xd3\x0d\xc9\x64\x78\xf8\x71\xee\x22\xb8\x3e\xcd\xee\x5d\xa2\x5b\x15\xc2\xe7\xa9\x2a\x48\x6d\xe3\x04\xe6\x73\x58\xa3\xf1\xd4\x42\x1c\x7a\x38\x8e\xa4\x72\xb6\x7d\x75\xba\xb8\x34\x24\x61\xb9\xcd\xec\xff\x58\xc2\xf4\x06\xfc\xd9\xb4\xf6\xbe\xa2\x87\xaf\xd1\x43\x78\xd4\x68\xdb\x94\x5c\x20\xaf\x81\xc2\x6f\xe9\x8b\x7e\x44\xef\x1e\x7f\xfa\xfb\x90\x5f\x76\x7a\xb1\xda\x01\x68\x5c\x9d\xbe\x03\x00\x00\xff\xff\x79\x57\x3a\x2e\x76\x03\x00\x00" func idtablestakingNodeNode_add_capabilityCdcBytes() ([]byte, error) { return bindataRead( @@ -2710,7 +2710,7 @@ func idtablestakingNodeNode_add_capabilityCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/node_add_capability.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x36, 0x6e, 0x2e, 0x8b, 0x90, 0xf8, 0x83, 0x13, 0x91, 0x8c, 0x95, 0xf2, 0x66, 0xd6, 0x35, 0x30, 0x74, 0x57, 0xd4, 0x82, 0x4f, 0x6f, 0xa, 0x8e, 0xcc, 0xab, 0x11, 0x97, 0xcd, 0xb1, 0xfd, 0xb1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcf, 0x17, 0x4d, 0x5d, 0x7, 0xb3, 0x43, 0x68, 0x13, 0xaa, 0x39, 0x72, 0x31, 0xf4, 0xc, 0x88, 0xb5, 0x10, 0x68, 0xa5, 0x95, 0xea, 0x92, 0x36, 0xba, 0xec, 0x58, 0x3e, 0x4a, 0x6a, 0x6f, 0xa4}} return a, nil } @@ -2734,7 +2734,7 @@ func idtablestakingNodeRegister_many_nodesCdc() (*asset, error) { return a, nil } -var _idtablestakingNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\x4d\x6f\xdb\x30\x0c\xbd\xfb\x57\x10\x39\x14\x36\x90\x3a\x97\x61\x18\x82\xb4\x45\x91\xa1\x40\xb1\x61\x2d\xfa\xb1\x9e\x15\x89\x8e\xb5\x2a\xa2\x21\xd1\xf3\x8a\xa2\xff\x7d\x90\x9d\xc4\xd6\x9c\x65\x6b\x0e\x8e\x45\x3e\x91\x8f\x8f\xcf\x7a\x53\x91\x63\xb8\x32\xd4\x5c\x7f\x7e\x10\x2b\x83\xf7\x2c\x9e\xb5\x5d\x43\xe1\x68\x03\x93\x71\x62\x92\x0c\xee\x3c\xd0\x33\xda\x01\xb4\x3d\xf7\x88\xda\xae\xf5\xca\x60\x84\x1a\xc6\x26\x49\x32\x9b\xc1\x43\xa9\x3d\xb0\x13\xd6\x0b\xc9\x9a\x2c\x48\x87\x82\xd1\x83\x00\x8b\x0d\x58\x52\x08\x9e\x5d\x2d\x19\x68\xf5\x03\x25\x87\x4b\xc2\x2a\xa8\x2b\xd5\xe2\xb8\x44\xa8\x1c\x55\xe4\x51\xc1\xb5\x42\xcb\x9a\x5f\xa0\x25\x9d\x24\x83\xc2\x69\x02\x00\xa0\xd5\x1c\xee\xd9\x69\xbb\x9e\xb6\x67\x47\x06\xe7\xf0\x78\x6d\xf9\x53\x17\xb0\xc8\x0d\xb9\x30\xeb\xa5\x52\x0e\xbd\x8f\xf1\x7d\xfa\x0b\xbe\xc4\x29\xdf\x49\x34\x8a\x8b\x0d\xd5\x96\xe7\xf0\x78\xa5\x7f\x7d\xfc\x90\x64\xf0\x9a\xb4\x71\x83\x0c\xc5\x4e\xb6\x3b\x2c\xe6\x20\x6a\x2e\xd3\x48\xa3\xfc\x49\x73\xa9\x9c\x68\xc2\x38\x19\x9c\xec\x65\xce\xbf\x8b\xda\x70\x57\xa8\x72\x58\x09\x87\xa9\x90\x92\xb7\x45\xee\x99\x9c\x58\xe3\x14\x96\xa2\x12\x2b\x6d\x34\x6b\xf4\x19\x9c\x5c\x4a\x19\xc8\xec\x39\xb4\xbc\xd1\x14\xf9\x90\x08\x9c\x41\x28\x95\xfb\xae\x48\xbe\x22\xe7\xa8\x59\xbc\x9b\xdd\x79\x1a\xb6\x3e\x87\xd9\xb6\xd0\x6c\xdf\xa4\x4d\x67\x7b\x06\xe1\x77\x71\x01\x95\xb0\x5a\xa6\x93\x25\xd5\x46\x81\x25\x86\xae\x31\x38\x2c\xd0\xa1\x95\x08\x4c\x70\xf5\xf5\xe6\x09\xda\xfb\x93\xac\x9f\x21\x68\x19\xac\x12\x6c\x8a\x0e\x16\xa7\x07\x4c\x9d\x0b\xa5\xbe\x91\xc2\x3b\x94\xe4\x54\x1a\x75\x0f\xb6\xd0\x6a\x1a\xc5\x3a\x6b\x84\x67\x1c\x3f\xe0\x90\x51\xe8\x6f\x37\x5a\x73\x44\xc7\x18\x39\xf4\x50\xff\x1e\x63\x38\x28\xe8\x97\xb4\xd9\x68\x66\x54\x73\x58\x9c\x8e\x56\x98\x37\xdb\xcd\xa4\x3b\xf7\x75\xff\xbd\xe6\x03\xf1\x74\x71\x64\xdf\x63\x19\x83\x86\x37\x15\x3a\xc1\xe4\xb6\x4b\x3f\x80\xe8\x36\xb1\xb3\xc0\x51\xd0\xd6\xac\xb7\x82\xcb\x0c\xce\xce\xc0\x6a\x33\xf4\x67\xfb\x0d\x0d\xf9\x79\xf1\x13\xd3\xc5\x69\xbf\xef\x29\x30\xbd\xa3\x47\x5c\x3a\xb6\xce\x52\x54\x3b\xfb\xcb\xc1\xa7\xb3\xef\xad\xbd\xaf\x71\x71\xf2\x7a\xb4\xd9\x6d\xbd\x32\x5a\xbe\x9d\xc7\x1e\x0b\xbf\xff\xe5\x18\x5d\xcc\x0e\x68\x11\x91\xab\x42\x3f\x5f\x8e\xdb\x45\x73\x4d\x47\x69\xc1\xff\x50\xad\x1b\x24\x10\x9a\xfe\xc1\x68\xf7\xf6\x06\x68\x3c\xc2\x6b\x94\x56\xe8\xd9\xd1\xcb\xa0\x7d\x8f\x4f\xba\xe7\xdb\xef\x00\x00\x00\xff\xff\xee\x09\x72\x75\x7c\x06\x00\x00" +var _idtablestakingNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\x4f\x6f\xdb\x3e\x0c\xbd\xfb\x53\x10\x39\x14\x36\x90\x3a\x97\x1f\x7e\x18\x82\xb4\x45\x91\xa1\x40\xb1\x61\x2d\xfa\x67\x3d\xcb\x12\x1d\x6b\x55\x44\x43\xa2\xe7\x15\x45\xbf\xfb\x20\x3b\x89\x2d\x38\xeb\xd6\x1c\x1c\x8b\x7c\x22\x1f\x1f\x9f\xf5\xb6\x26\xc7\x70\x65\xa8\xbd\xfe\xfc\x20\x0a\x83\xf7\x2c\x9e\xb5\xdd\x40\xe9\x68\x0b\xb3\x69\x62\x96\x8c\xee\x3c\xd0\x33\xda\x11\xb4\x3b\x0f\x88\xc6\x6e\x74\x61\x30\x42\x8d\x63\xb3\x24\x59\x2c\xe0\xa1\xd2\x1e\xd8\x09\xeb\x85\x64\x4d\x16\xa4\x43\xc1\xe8\x41\x80\xc5\x16\x2c\x29\x04\xcf\xae\x91\x0c\x54\xfc\x40\xc9\xe1\x92\xb0\x0a\x9a\x5a\x75\x38\xae\x10\x6a\x47\x35\x79\x54\x70\xad\xd0\xb2\xe6\x17\xe8\x48\x27\xc9\xa8\x70\x9a\x00\x00\x68\xb5\x84\x7b\x76\xda\x6e\xe6\xdd\xd9\x91\xc1\x25\x3c\x5e\x5b\xfe\xd4\x07\x2c\x72\x4b\x2e\xcc\x7a\xa9\x94\x43\xef\x63\xfc\x90\xfe\x82\x2f\x71\xca\xf7\x12\x4d\xe2\x62\x4b\x8d\xe5\x25\x3c\x5e\xe9\x5f\xff\xff\x97\x64\xf0\x9a\x74\x71\x83\x0c\xe5\x5e\xb6\x3b\x2c\x97\x20\x1a\xae\xd2\x48\xa3\xfc\x49\x73\xa5\x9c\x68\xc3\x38\x19\x9c\x1c\x64\xce\xbf\x8b\xc6\x70\x5f\xa8\x76\x58\x0b\x87\xa9\x90\x92\x77\x45\xee\x99\x9c\xd8\xe0\x1c\xd6\xa2\x16\x85\x36\x9a\x35\xfa\x0c\x4e\x2e\xa5\x0c\x64\x0e\x1c\x3a\xde\x68\xca\x7c\x4c\x04\xce\x20\x94\xca\x7d\x5f\x24\x2f\xc8\x39\x6a\x57\x1f\x66\x77\x9e\x86\xad\x2f\x61\xb1\x2b\xb4\x38\x34\xe9\xd2\xd9\x81\x41\xf8\x5d\x5c\x40\x2d\xac\x96\xe9\x6c\x4d\x8d\x51\x60\x89\xa1\x6f\x0c\x0e\x4b\x74\x68\x25\x02\x13\x5c\x7d\xbd\x79\x82\xee\xfe\x2c\x1b\x66\x08\x5a\x06\xab\x04\x9b\xa2\x83\xd5\xe9\x11\x53\xe7\x42\xa9\x6f\xa4\xf0\x0e\x25\x39\x95\x46\xdd\x83\x2d\xb4\x9a\x47\xb1\xde\x1a\xe1\x19\xc7\x8f\x38\x64\x12\xfa\xd3\x8d\xce\x1c\xd1\x31\x46\x8e\x3d\x34\xbc\xc7\x18\x0e\x0a\xfa\x35\x6d\xb7\x9a\x19\xd5\x12\x56\xa7\x93\x15\xe6\xed\x6e\x33\xe9\xde\x7d\xfd\xff\xa0\xf9\x48\x3c\x5d\xbe\xb3\xef\xa9\x8c\x41\xc3\x9b\x1a\x9d\x60\x72\xbb\xa5\x1f\x41\xf4\x9b\xd8\x5b\xe0\x5d\xd0\xce\xac\xb7\x82\xab\x0c\xce\xce\xc0\x6a\x33\xf6\x67\xf7\x0d\x8d\xf9\x79\xf1\x13\xd3\xd5\xe9\xb0\xef\x39\x30\x7d\xa0\x47\x5c\x3a\xb6\xce\x5a\xd4\x7b\xfb\xcb\xd1\xa7\x73\xe8\xad\xbd\x6f\x70\x75\xf2\xfa\x6e\xb3\xdb\xa6\x30\x5a\xbe\x9d\xc7\x1e\x0b\xbf\x7f\xe5\x18\x5d\xcc\x8e\x68\x11\x91\xab\x43\x3f\x5f\x4d\xdb\x45\x73\xcd\x27\x69\xc1\x7f\x51\xad\x1f\xe4\x08\xa1\xfd\xdb\x1b\xa0\xf1\x08\xaf\x51\x5a\xa1\x67\x47\x2f\xa3\xee\x03\x3e\xe9\x9f\x6f\xbf\x03\x00\x00\xff\xff\x21\x31\x1a\x51\x7b\x06\x00\x00" func idtablestakingNodeRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -2750,7 +2750,7 @@ func idtablestakingNodeRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1a, 0xb7, 0xd, 0xea, 0x9d, 0xbf, 0x88, 0x55, 0x79, 0x66, 0xbe, 0x15, 0x7e, 0x81, 0x6e, 0x2a, 0x6c, 0x19, 0xcf, 0xd, 0x3d, 0x6d, 0xab, 0x5e, 0x57, 0x5e, 0x77, 0x98, 0xfe, 0x33, 0x8a, 0x1f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0x19, 0xb1, 0x1c, 0x44, 0x83, 0x7f, 0x3c, 0x39, 0xb9, 0x65, 0x5c, 0xe3, 0x3b, 0xaf, 0x79, 0x97, 0x21, 0x91, 0xad, 0xfd, 0x51, 0xaa, 0x2f, 0xb1, 0xd5, 0xa2, 0xf8, 0xdf, 0x48, 0x92, 0x9c}} return a, nil } @@ -3574,7 +3574,7 @@ func idtablestakingScriptsGet_weekly_payoutCdc() (*asset, error) { return a, nil } -var _inspect_fieldCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xc1\x09\x42\x31\x0c\x06\xe0\x7b\xa7\xf8\x8f\x7a\x91\x22\x5a\x1f\xde\xbc\x74\x01\x71\x80\xbe\x9a\x42\xc0\x26\x8f\x98\xea\x03\x71\x77\x17\x70\x81\x8f\xfb\xa2\xe6\xc8\x0f\x7d\x5f\xc9\x5e\x5c\xe9\x52\xab\x0e\x71\x34\xd3\x8e\xb8\xb6\xe9\x9e\x28\x1e\xa7\x34\xc7\xb2\x8f\xf5\x14\xc2\x32\x66\xb4\x21\xe8\x85\x65\xb3\x3d\xe3\x96\x79\x4d\x07\x7c\x02\x00\x18\xf9\x30\xf9\xe3\xed\xdc\x8a\x3c\x4b\x75\x56\xc9\x44\xe1\xfb\x0b\x00\x00\xff\xff\x7c\xe1\x51\x3b\x7a\x00\x00\x00" +var _inspect_fieldCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xc1\x09\x42\x31\x0c\x00\xd0\x7b\xa6\xc8\xf1\xff\x8b\x14\xd1\xef\xc7\x9b\x97\x2e\x20\x0e\x10\x63\x0a\x85\x36\x95\x34\xd5\x0f\xe2\xee\x2e\xe0\x02\x2f\xd7\x67\x33\xc7\x58\xda\xfb\x2a\xf6\xca\x2c\x17\xe6\x36\xd4\x31\x59\xab\x18\xb6\xb4\x3e\x16\x09\xc7\x75\xb9\x07\xda\x07\x3e\x01\x10\xb3\xf4\x3e\x51\x29\x33\xa4\xa1\x58\x29\xeb\x34\x9f\xf1\x16\xf3\xb6\x1c\xf0\x03\x88\x88\x26\x3e\x4c\xff\xb8\x3b\x37\xd2\x4e\xec\xb9\x69\x14\x81\x2f\xfc\x02\x00\x00\xff\xff\xf4\x3f\xc0\x1b\x83\x00\x00\x00" func inspect_fieldCdcBytes() ([]byte, error) { return bindataRead( @@ -3590,11 +3590,11 @@ func inspect_fieldCdc() (*asset, error) { } info := bindataFileInfo{name: "inspect_field.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x74, 0xeb, 0x82, 0x68, 0x87, 0xc8, 0xaf, 0x97, 0x60, 0xf6, 0x63, 0x18, 0x23, 0x85, 0x7b, 0xb6, 0xf6, 0xbb, 0x8c, 0x4d, 0x40, 0x9c, 0x25, 0xc, 0xc5, 0x56, 0xa, 0xdf, 0x63, 0xa8, 0x28, 0xea}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x77, 0xaa, 0x73, 0x29, 0xcb, 0x8, 0xbe, 0x22, 0x6c, 0x13, 0x10, 0x96, 0x6, 0xdb, 0x69, 0xf7, 0x2, 0x5b, 0xb1, 0x15, 0xd, 0x9c, 0x88, 0xa8, 0xdc, 0x41, 0xc3, 0x27, 0x76, 0x62, 0x32}} return a, nil } -var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\x72\x08\x64\xc0\x91\xbc\xc7\x1a\xce\x2e\x5c\x27\x8b\x16\x49\x9b\x60\x93\xee\x9e\xc7\x12\x6d\x11\x96\x49\x95\xa4\xec\x1a\x8b\xfc\xf7\x82\xa4\xbe\x28\x53\xf6\x7a\x91\x02\xcd\x21\xb0\xe5\x37\x33\x8f\x6f\x3e\x38\xa2\xdb\x82\x0b\x05\x0b\x71\x28\x14\x0f\xaa\x6f\x9f\x73\xbe\x7f\xe5\x1b\xc2\x60\x25\xf8\x16\xae\x9a\xef\x57\x0d\xa2\x64\x6b\xba\xcc\x89\x83\xea\x3e\x6b\x90\x8f\x3c\xd9\x90\xd4\x3c\x93\x16\x38\xf9\xe7\xf1\x69\xf1\x70\x7f\xf7\xfa\xf4\x70\xff\xe7\xfc\xee\xee\xcb\xfd\xcb\x4b\x10\xc4\x71\x0c\xaf\x02\x99\xc4\x44\x51\xce\x40\x65\xa8\x40\x65\x04\xb6\x48\x19\x28\x13\x07\xd3\x2d\x65\xb0\xe7\x65\x9e\x82\xa4\x6b\x66\x8c\x14\x87\x44\x10\x54\x04\x10\x64\x86\x82\xa4\x80\x49\xc2\x4b\xa6\x00\x59\x0a\xc8\xa0\x64\xb9\x21\x61\xe0\x68\x7f\x5a\x71\x01\x08\xa5\x24\x22\x08\x54\x1b\x36\x0c\x00\x00\x0a\x14\x8a\x62\x3e\xd7\xe1\x9e\xcb\x65\x4e\x93\x07\x72\x98\x56\x22\x45\x0f\xe4\xf0\x48\xa5\xba\x67\x4a\x1c\xc6\x10\xc7\xf0\x8d\xd0\x75\xa6\xa6\xf0\x61\x32\xe9\x9a\xff\x25\x89\xb8\xc0\xfa\x97\xca\x7a\x55\xe6\x97\x9a\x7e\x98\x4c\x26\xc1\x08\xe0\x7b\x60\xe3\x0b\x52\xa0\x20\xa1\x91\x6b\x0a\x58\xaa\x2c\xfc\x95\x0b\xc1\xf7\x5f\x31\x2f\xc9\x08\xae\xe7\x56\xa0\x51\x6d\xa1\xff\xe2\x18\x16\x56\x47\xad\x3a\x23\xfb\x5a\x46\x69\x75\x4c\x53\xfd\x03\x15\xb0\x21\x07\xd9\x58\xe5\x44\x55\xaa\x57\x3e\xe1\x16\xaa\x4f\x61\x81\x07\x22\xa6\x36\x6b\x23\xc7\x42\xeb\x7e\x0e\xdf\x18\x38\xee\x23\x1d\x3d\xc2\x34\x0d\x8b\x56\x1f\x6f\xbe\xa2\x06\x30\x86\x0c\x65\x36\xcf\xd7\x5c\x50\x95\x6d\x87\xf0\x0e\x68\x0c\xfb\x4a\x5c\x3f\xd8\xfe\x3a\xba\x9c\xa4\x93\xda\xf3\x1c\x5d\xf8\x69\x8a\x2e\xb6\x66\xd8\x50\xec\x88\xee\x25\x78\x54\x78\x27\xd8\x1d\x63\x07\xa8\x1d\x03\x8f\x78\xb5\x85\x87\x50\x08\xba\xd3\x9f\x72\xca\x36\xba\xb3\x75\x29\x4a\xc5\x75\x53\xef\xb0\xcc\x95\x53\x45\xe6\xc9\x02\x0b\x5c\xd2\x9c\xaa\x03\xdc\xba\x59\x68\xb0\xfa\x2f\xd2\x1e\x67\xa6\x15\x9c\x39\x15\x7d\xa3\x2a\x4b\x05\xee\x71\x99\xeb\xce\x68\x46\x5d\xf4\x55\x7b\xff\x18\x3a\x5e\x0c\xdd\x8a\x63\xbc\xaa\xa1\x06\x39\x3e\x02\x2a\x14\x6b\xa2\xa6\x10\xeb\x03\xe0\xba\x6f\xe0\xe0\x47\xce\xb7\x4f\x9f\xa0\x40\x46\x93\xf0\x6a\x61\x66\x1d\xe3\xca\x2a\xa2\xd9\x81\x9d\xb9\xc6\x07\x24\xcd\xe9\xaf\x5c\x45\x9b\x91\x68\x47\x5f\x35\x40\xb7\xc8\x70\x4d\x84\x69\xe8\x4a\x56\xaa\x40\xcf\x57\xad\xb3\x33\x3c\x1d\xa5\xf3\x76\x88\xff\x51\xb9\x98\xdd\x38\xa3\x3d\xb2\x01\x1f\x8f\x80\xa1\xc9\xd2\xb4\x9f\xac\xa1\xce\x91\xb8\x23\xe1\xec\xe6\x38\xe0\x18\x14\x9f\xba\x21\x8f\x83\xbd\x58\xa5\x9f\x51\x65\x1d\x39\xf4\x09\x54\x07\xf5\xce\x25\x73\x86\x93\xa7\x84\xce\x58\x3c\xdb\x02\xd3\xa7\x18\xae\xaa\x1f\x57\xa2\x71\x31\x3a\x55\x5a\x6e\x81\xf8\xeb\xaa\x11\xf2\x37\x9e\xa7\x83\x35\xf0\xda\x22\xdc\xa3\xdb\xa4\xce\xd3\x54\x10\x29\xa7\xbd\xc4\xa3\x7d\xec\x1e\xb8\x9b\xb5\xe9\x40\x0e\xdb\xe3\xf9\x47\x9d\xa9\x28\xc7\xeb\xec\xa6\x73\x88\x7e\xc0\x9e\xb2\x9d\xc3\x74\x24\x1d\x9f\x0b\x6a\x4a\xe7\x7a\xc8\x53\xaf\x24\x3c\xa9\xac\xfc\xfc\xce\x56\xdc\x4e\xce\xe3\x62\xf0\x16\x82\x9f\xae\x8f\x6d\x93\x4b\x73\xb1\xfd\x6f\x5b\xc2\x5e\xbb\xff\x51\x43\xc0\x8f\x4f\xde\xee\x02\xaa\xef\xa5\x6e\xb7\x78\x5b\xc4\xca\xca\xf3\x9c\xd8\x7d\xf6\xd6\x1a\x47\xd5\x65\xe0\xca\xba\x34\xdb\x99\xaf\x60\x7a\x6e\x3c\xca\xe9\x9d\x7a\xf8\xf4\x3d\xfb\x9f\x57\xc1\x52\x04\x41\x56\x44\x10\x96\x10\xad\x82\x95\x23\x69\xbc\x77\x85\xf0\x89\xa0\x9b\xbc\x5e\xf6\x9c\x80\x4e\xc5\x5d\x32\x20\xea\xd5\xbe\x6f\xda\xed\xc5\xe1\xc9\x32\xb7\x0b\xb2\xaf\x0d\x7c\x2d\x13\xc7\xf0\xb4\x23\x42\xd0\xd4\xee\xc8\x29\x59\x99\x4b\xb8\x7d\x5d\x12\x24\x21\x74\x47\xc4\xc0\xe5\xd6\x4c\x55\x4a\x64\x54\x32\xb3\x5e\xc9\x2c\x8c\xed\x9e\xd5\xee\x07\x5f\x2a\x37\xde\x2b\x5d\x6f\xe6\x75\x1c\xfb\x96\xb4\x45\xb1\x91\xf5\xb3\xea\xaa\x97\x80\xb2\x7d\xf1\xe9\x56\x67\xe7\x6a\x95\xed\x30\xed\xb7\x7d\xcd\xd5\x50\xad\x6a\x36\xa2\x52\x96\x64\x76\xfd\xdd\xed\xfd\x9a\xed\xdb\xc7\xf0\x92\xeb\xf9\xa4\x44\x26\x6c\xad\x8f\xe7\x12\xe9\xd3\x77\x93\x8b\x7a\xeb\x1a\x12\xd5\x3b\xbb\xe3\x18\x8a\x52\x01\xe3\x62\x8b\x79\x2b\x2f\x65\xfa\xa5\x52\xbf\x4d\x69\xe5\x4b\x46\xff\x2e\x09\x14\xdd\xe6\x69\xfa\xbd\x76\xff\x6e\x5a\x0e\xac\x8d\x3f\x2d\x5c\x9f\xe5\xa0\x62\x56\xe1\xcf\xa7\x74\xd3\xff\xdf\x82\xb7\xe0\xdf\x00\x00\x00\xff\xff\xce\xb1\x49\x39\x3e\x10\x00\x00" +var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x5b\x6f\xdb\x36\x14\x7e\xd7\xaf\x38\xc8\x43\x20\x03\x89\xe4\x3e\xce\x70\x5a\x78\x4e\x8a\x0d\xc9\x96\xa0\xc9\xda\xe7\x63\x89\xb6\x08\xd3\xa4\x46\x52\xf6\x8c\x22\xff\x7d\x20\xa9\x1b\x75\x71\xe2\xa2\x03\x96\x87\xc0\x92\xbe\x73\xe1\x77\xae\xa4\xbb\x5c\x48\x0d\x4b\x79\xcc\xb5\x08\xca\xa7\xcf\x4c\x1c\x5e\xc4\x96\x70\x58\x4b\xb1\x83\x8b\xfa\xf9\xa2\x46\x14\x7c\x43\x57\x8c\x78\xa8\xf6\xbb\x1a\xf9\x20\x92\x2d\x49\xed\x3b\xe5\x80\xd3\x7f\x1e\x1e\x97\xf7\x77\xb7\x2f\x8f\xf7\x77\x7f\x2e\x6e\x6f\xbf\xdc\x3d\x3f\x07\x41\x1c\xc7\xf0\x22\x91\x2b\x4c\x34\x15\x1c\x74\x86\x1a\x74\x46\x60\x87\x94\x83\xb6\x76\x30\xdd\x51\x0e\x07\x51\xb0\x14\x14\xdd\x70\x2b\xa4\x05\x24\x92\xa0\x26\x80\xa0\x32\x94\x24\x05\x4c\x12\x51\x70\x0d\xc8\x53\x40\x0e\x05\x67\xd6\x09\x0b\x47\xf7\x69\x2d\x24\x20\x14\x8a\xc8\x20\xd0\x8d\xd9\x30\x00\x00\xc8\x51\x6a\x8a\x6c\x61\xcc\x3d\x15\x2b\x46\x93\x7b\x72\x9c\x95\x24\x45\xf7\xe4\xf8\x40\x95\xbe\xe3\x5a\x1e\xaf\x20\x8e\xe1\x1b\xa1\x9b\x4c\xcf\xe0\xc3\x74\xda\x16\xff\x4b\x11\x79\x86\xf4\x2f\xa5\xf4\xba\x60\xe7\x8a\x7e\x98\x4e\xa7\xc1\x04\xe0\x7b\xe0\xec\x4b\x92\xa3\x24\xa1\xa5\x6b\x06\x58\xe8\x2c\xfc\x55\x48\x29\x0e\x5f\x91\x15\x64\x02\x97\x0b\x47\xd0\xa4\x92\x30\x7f\x71\x0c\x4b\xc7\xa3\x61\x9d\x93\x43\x45\xa3\x72\x3c\xa6\xa9\xf9\x40\x25\x6c\xc9\x51\xd5\x52\x8c\xe8\x92\xf5\x52\x27\xdc\x40\xf9\x2b\xcc\xf1\x48\xe4\xcc\x45\x6d\xe2\x49\x18\xde\xdf\xc2\xd7\x02\x9e\xfa\xc8\x58\x8f\x30\x4d\xc3\xbc\xe1\x67\x30\x5e\x51\x0d\xb8\x82\x0c\x55\xb6\x60\x1b\x21\xa9\xce\x76\x63\x78\x0f\x74\x05\x87\x92\xdc\x61\xb0\xfb\x3a\x39\xdf\x49\x2f\xb4\x6f\xfb\xe8\xc3\x4f\xbb\xe8\x63\x2b\x0f\x6b\x17\x5b\xa4\x0f\x3a\xd8\x4b\xbc\x13\xde\xf5\xb1\x23\xae\xf5\x81\x3d\xbf\x9a\xc4\x43\xc8\x25\xdd\x9b\x5f\x8c\xf2\xad\xa9\x6c\x93\x8a\x4a\x0b\x53\xd4\x7b\x2c\x98\xf6\xb2\xc8\xbe\x59\x62\x8e\x2b\xca\xa8\x3e\xc2\x8d\x1f\x85\x1a\x6b\xfe\x22\xa3\x71\x6e\x4b\xc1\xeb\x53\xd1\x37\xaa\xb3\x54\xe2\x01\x57\xcc\x54\x46\xdd\xea\xa2\xaf\x46\xfb\xc7\xd0\xd3\x62\xdd\x2d\x7d\x8c\xd7\x15\xd4\x22\xaf\x7a\x40\x8d\x72\x43\xf4\x0c\x62\x73\x00\xdc\x74\x05\x3c\xfc\xc4\x7b\xfa\xf4\x09\x72\xe4\x34\x09\x2f\x96\xb6\xd7\x71\xa1\x1d\x23\xc6\x3b\x70\x3d\xd7\xea\x80\xa4\x3e\xfd\x85\xcf\x68\xdd\x12\x5d\xeb\x2b\x1b\xe8\x0e\x39\x6e\x88\xb4\x05\x5d\xd2\x4a\x35\x98\xfe\x6a\x78\xf6\x9a\xa7\xc7\x34\x6b\x9a\xf8\x1f\xa5\x8a\xf9\xb5\xd7\xda\x23\x67\xf0\xa1\x07\x0c\x6d\x94\x66\xdd\x60\x8d\x55\x8e\xc2\x3d\x09\xe7\xd7\x7d\x83\x57\xa0\xc5\xcc\x37\xd9\x37\xf6\xec\x98\x7e\x42\x9d\xb5\xe8\x30\x27\xd0\x2d\xd4\x4f\x4e\x99\x37\x7c\x1a\x48\xa1\x37\x24\x9e\x5c\x82\x99\x53\x8c\x67\xd5\xfb\x99\xa8\x55\x4c\x4e\xa5\x96\x9f\x20\xc3\x79\x55\x13\xf9\x9b\x60\xe9\x68\x0e\xbc\x34\x08\xff\xe8\x2e\xa8\x8b\x34\x95\x44\xa9\x59\x27\xf0\xe8\x5e\xfb\x07\x6e\x47\x6d\x36\x12\xc3\xe6\x78\xc3\xad\xce\x66\x94\xa7\x75\x7e\xdd\x3a\x44\xd7\x60\x87\xd9\xd6\x61\x06\x29\x1d\xb6\x69\x33\xe7\x72\x4c\x51\x27\x23\x06\x22\x59\xea\xf9\x9d\xaf\x85\x6b\x9c\xfd\x5c\x18\xcc\x83\xf7\x7b\x5b\x87\xd2\xce\xb5\xff\x6d\x45\xb8\xa9\xfb\x1f\xd5\x03\xbc\xbf\xf1\xb6\xf7\x4f\x33\x96\xda\xc5\x32\x58\x21\x8e\x56\xc1\x18\x71\xeb\xec\x8d\x13\x8e\xca\x59\xe0\xd3\xba\xb2\xcb\xd9\x50\xc2\x74\xd4\x0c\x30\x67\x56\xea\xf1\xd3\x77\xe4\x7f\x9c\x05\xe7\x22\x48\xb2\x26\x92\xf0\x84\x18\x16\x1c\x1d\x49\xad\xbd\x4d\xc4\x10\x09\xa6\xc6\xab\x5d\xcf\x33\xe8\x65\xdc\x39\xfd\xa1\xda\xec\xbb\xa2\xed\x5a\x1c\x6f\x2c\x0b\xb7\x1f\x0f\x95\xc1\x50\xc9\xc4\x31\x3c\xee\x89\x94\x34\x75\x2b\x72\x4a\xd6\x76\x06\x37\xb7\x25\x49\x12\x42\xf7\x44\x8e\xcc\xb6\xba\xa9\x52\xa2\xa2\x82\xdb\xed\x4a\x65\x61\xec\xd6\xac\x66\x3d\xf8\x52\xaa\x19\x9c\xe8\x66\x31\xaf\xec\xb8\x4b\xd2\x0e\xe5\x56\x55\xef\xca\x49\xaf\x00\x55\x73\xef\x69\x67\x67\x6b\xb2\xaa\xa6\x97\x76\xcb\xbe\xf2\xd5\xba\x5a\xe6\x6c\x44\x95\x2a\xc8\xfc\xf2\xbb\x5f\xfb\x95\xb7\xaf\x1f\xc3\x73\xa6\xf3\x49\x8a\xac\xd9\x8a\x9f\x81\x19\xd2\x75\xdf\x0f\x2e\x9a\xa5\x6b\x8c\xd4\x91\xc8\xe6\x85\x06\x2e\xe4\x0e\x59\xc3\x2e\xe5\xe6\x4a\x69\xee\x52\x86\xf8\x82\xd3\xbf\x0b\x02\x79\xbb\x76\xea\x72\xaf\xb4\xff\x34\x2a\x47\x96\xc6\x1f\xe6\xad\xeb\xe5\x38\x63\x8e\xe1\xcf\x27\x78\x33\xff\x5f\x83\xd7\xe0\xdf\x00\x00\x00\xff\xff\x07\x96\xfa\xf9\x3c\x10\x00\x00" func lockedtokensAdminAdmin_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3610,7 +3610,7 @@ func lockedtokensAdminAdmin_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x30, 0xef, 0x44, 0x1d, 0x82, 0x62, 0x5d, 0x9d, 0x80, 0x51, 0xb5, 0x9b, 0x94, 0x2f, 0xfb, 0x5, 0x1e, 0xc4, 0x99, 0x6a, 0x32, 0xa4, 0x2a, 0x81, 0xb0, 0x5f, 0xed, 0x8c, 0xdb, 0xc7, 0x98, 0x97}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe7, 0x3c, 0x30, 0xfe, 0x2, 0xe1, 0xfa, 0xa3, 0x7b, 0x50, 0x20, 0xe8, 0xfe, 0xa7, 0x1c, 0x4d, 0x6e, 0x7b, 0x4f, 0xbb, 0x5a, 0x89, 0xa6, 0x72, 0xbb, 0x6e, 0xcf, 0x4, 0x21, 0x20, 0xc9, 0xea}} return a, nil } @@ -3714,7 +3714,7 @@ func lockedtokensAdminCheck_shared_registrationCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\xf6\xb0\x90\x01\x47\x4a\xaf\x86\x13\xc0\x75\xb2\x68\x91\xb4\x09\x36\xe9\xee\x79\x2c\x8d\x2d\x22\x34\xa9\x92\x94\x5d\x21\xc8\x7f\x2f\xf4\xd6\xc8\x52\x9c\x16\x45\x0f\xab\x83\x61\x89\xf3\xf8\xe6\x9b\x07\x47\xec\x53\x6d\x1c\xac\x4d\x9e\x3a\xed\xd5\x6f\x5f\xa4\x3e\x3e\xeb\x17\x52\xb0\x35\x7a\x0f\x9f\xda\xf7\x4f\xad\x44\xa6\x76\x62\x23\x89\x49\xf5\xbf\xb5\x92\xf7\x3a\x7a\xa1\xb8\xfc\x66\x2b\xc1\xcb\xbf\xee\x1f\xd6\x77\xb7\x37\xcf\x0f\x77\xb7\xbf\xaf\x6e\x6e\xbe\xde\x3e\x3d\x79\x5e\x18\x86\xf0\x6c\x50\x59\x8c\x9c\xd0\x0a\x5c\x82\x0e\x10\xa2\xcc\x3a\x1d\xe7\x90\x1a\x7d\x10\x31\x19\x38\xea\x4c\xc6\x60\xc5\x4e\x95\x2a\x4e\x43\x64\x08\x1d\x01\x82\x4d\xd0\x50\x0c\x18\x45\x3a\x53\x0e\x50\xc5\x80\x0a\x32\x25\x4b\x08\xa5\x78\x73\xb6\xd5\x06\x10\x32\x4b\xc6\xf3\x5c\xe7\xd5\xf7\x00\x00\xb6\x99\x94\xab\x78\x2f\xd4\x63\xb6\x91\x22\xba\xa3\x7c\x51\x13\x14\xdc\x51\x7e\x2f\xac\xbb\x55\xce\xe4\x73\x08\x43\xf8\x4e\x62\x97\xb8\x05\xfc\x74\x79\x79\xd9\x2a\xff\x61\xc9\xfc\x53\xdd\x19\xc0\xab\x57\x5a\x48\x0d\xa5\x68\xc8\xaf\x43\x7f\xac\x23\x5f\x00\x66\x2e\xf1\x7f\xd6\xc6\xe8\xe3\x37\x94\x19\xcd\xe0\xf3\xaa\x8a\x67\xd6\xe8\x16\x8f\x24\x57\x53\x51\x9f\xc2\x15\xd4\xff\xfc\x14\xf3\xc2\xd2\xc0\xf4\x8c\xe9\x16\xac\x7c\x5c\xb3\x55\x65\x2e\x83\x17\xca\x6d\x80\x71\xec\xa7\x1d\x0f\xa7\xbc\x06\xed\xe9\x1c\x12\xb4\xc9\x4a\xee\xb4\x11\x2e\xd9\x8f\x0a\x33\x89\x39\x1c\x6b\xfa\x46\x24\xab\xa3\x2e\xac\xe2\x69\x5f\x7a\xf1\x4d\xc2\x64\x19\x3c\x83\x92\xcb\xbe\x03\x92\x0b\xd6\x18\x01\x78\xe6\x0e\x98\x49\xb7\xc6\x14\x37\x42\x0a\x97\xc3\xd5\x80\xd8\xa8\x39\x12\x64\x03\xeb\xb4\xc1\x1d\xb1\x38\x03\x61\x6d\x46\xcb\xb2\x58\x58\x4b\x06\xdf\x85\x4b\x62\x83\x47\xdc\xc8\xa2\x76\xda\xae\x0e\xbe\x15\x3e\xaf\xfd\xb0\x36\x17\x6e\x9b\x93\xf2\x60\xc6\x01\xca\xae\xa1\x7f\x43\x85\x3b\x32\xb0\xbc\x60\x6d\x1e\x54\x1d\x79\x7f\x22\xe8\x97\xc1\x2d\x86\x31\x4e\x16\x51\x8d\x27\xb0\x78\x20\x7f\x79\x71\xea\x79\x0e\x4e\x2f\xb8\xef\x53\xaf\x4f\x95\x95\x47\x74\xc9\x20\x14\xd7\x93\xfa\x5f\x28\x3f\x83\xf4\xda\x67\x66\x8b\xe7\xe3\xb1\x31\xd5\xb1\x40\x7f\xd1\x32\x9e\x4c\xd6\x73\x27\xe1\x57\x3c\xaf\xe2\xd8\x90\xb5\x8b\x01\x19\x58\x7d\x9e\x33\xf2\x16\x13\x54\xf6\x60\xf4\xbb\x8e\xe5\x95\xe1\x5e\x5e\xf4\xa0\xce\x81\x9d\x9d\xa4\xba\x87\xb9\xc7\xc3\xdc\x3b\x4f\xc2\x1a\x53\xb8\x62\x90\xc6\x72\x5c\xa7\xf5\xf3\x94\xd3\x6b\xff\x03\x70\x66\xa3\x0c\x30\x77\xe5\x78\xb1\x89\xcf\x01\xce\x01\xdd\x68\x6d\xd7\x36\x7e\x55\x5b\x5d\x4d\x93\xa9\xca\x2e\x87\xe2\x0f\x5d\xd7\xb2\x4f\xc8\xba\x28\x64\x6d\xe0\x6a\x78\x49\xb5\xf9\xe4\xc1\x6d\xca\x9b\x74\x39\x06\x9e\x5b\xbc\xf6\x8b\xbd\xe5\xbd\x5c\xd4\x82\x13\x93\x66\x44\xb2\x68\xa3\xe6\x66\x65\xa8\x58\x86\xce\xb4\x20\x53\x6c\xd6\x9c\xa1\x6a\xbf\xea\x46\x15\xbb\x52\x59\x8c\x96\xcd\x58\x3b\x85\x21\x3c\x1c\xc8\x18\x11\x13\xb8\x84\x20\xa6\x6d\x31\xd2\x7b\x8b\xa3\xa1\x88\xc4\x81\x4c\x30\x31\xda\x59\xed\x65\xaa\x69\x81\xb0\xba\x6a\xbb\x1b\xe8\x6b\x6d\x87\x3b\xaf\x57\x3e\x45\xc7\xd6\x51\xb5\x30\xee\xd1\xbc\xd8\xe6\x5b\x5c\xc5\x63\x01\x6d\x4b\x4f\x30\x75\x97\xd9\x6e\x78\x4d\x35\xca\xd8\x6c\x78\xe5\x7d\xd1\xc0\x7d\x1b\xcc\x86\x33\xb7\xd2\xbb\x1c\xb1\x19\xc1\x52\x37\x0e\x9f\xa7\xb7\x18\x22\x93\xac\x8e\xce\xca\x30\x84\x34\x73\xa0\xb4\xd9\xa3\xec\xf8\x15\xaa\x58\xb1\x8b\xd5\xb4\xa0\x3e\x53\xe2\xcf\x8c\x20\x45\x97\x04\xa7\x93\xa7\xb1\xff\x9f\x91\x39\xb9\x9a\xfc\x4b\xe6\x86\x28\x27\x29\xab\x28\xfe\xf2\x1e\x71\xc5\xef\x9b\xf7\xe6\xfd\x1d\x00\x00\xff\xff\x09\x65\x11\xc6\x4b\x0d\x00\x00" +var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\xf6\xb0\x90\x01\x47\x4a\xaf\x86\x13\xc0\x75\xb2\x68\x91\xb4\x09\x36\xe9\xee\x79\x2c\x8d\x2d\x22\x34\xa9\xf2\x61\xd7\x08\xf2\xdf\x0b\xea\x65\x51\x16\xe3\xb4\x28\x7a\x58\x1d\x82\x98\x9c\xc7\x37\xdf\x3c\x38\x6c\x5b\x4a\x65\x60\xa9\x0e\xa5\x91\x51\xf3\xeb\x0b\x97\xfb\x67\xf9\x42\x02\xd6\x4a\x6e\xe1\x53\xf7\xfb\x53\x27\x61\xc5\x86\xad\x38\x79\x52\xfd\xb3\x4e\xf2\x5e\x66\x2f\x94\x57\x67\xba\x16\xbc\xfc\xeb\xfe\x61\x79\x77\x7b\xf3\xfc\x70\x77\xfb\xfb\xe2\xe6\xe6\xeb\xed\xd3\x53\x14\xa5\x69\x0a\xcf\x0a\x85\xc6\xcc\x30\x29\xc0\x14\x68\x00\x21\xb3\xda\xc8\xfc\x00\xa5\x92\x3b\x96\x93\x82\xbd\xb4\x3c\x07\xcd\x36\xa2\x52\x31\x12\x32\x45\x68\x08\x10\x74\x81\x8a\x72\xc0\x2c\x93\x56\x18\x40\x91\x03\x0a\xb0\x82\x57\x10\x2a\xf1\xf6\x6e\x2d\x15\x20\x58\x4d\x2a\x8a\xcc\xd1\x6b\x1c\x01\x00\xac\x2d\xe7\x8b\x7c\xcb\xc4\xa3\x5d\x71\x96\xdd\xd1\x61\xd6\x10\x94\xdc\xd1\xe1\x9e\x69\x73\x2b\x8c\x3a\x4c\x21\x4d\xe1\x3b\xb1\x4d\x61\x66\xf0\xd3\xe5\xe5\x65\xa7\xfc\x87\x26\xf5\x4f\x75\x27\x00\xaf\x51\x65\xa1\x54\x54\xa2\xa2\xb8\x09\xfd\xb1\x89\x7c\x06\x68\x4d\x11\xff\x2c\x95\x92\xfb\x6f\xc8\x2d\x4d\xe0\xf3\xa2\x8e\x67\xd2\xea\xba\x8f\x93\x69\xa8\x68\x6e\xe1\x0a\x9a\xff\xe2\x12\x0f\xce\xd2\xc0\xf4\xc4\xd3\x75\xac\x7c\x5c\xb3\x53\xf5\x5c\x26\x2f\x74\xd0\x09\xe6\x79\x5c\x1e\x79\x38\xe5\x35\xe9\x6e\xa7\x50\xa0\x2e\x16\x7c\x23\x15\x33\xc5\x76\x54\xd8\x93\x98\xc2\xbe\xa1\x6f\x44\xb2\xbe\xea\x81\xeb\xc5\x14\x84\xe6\x65\xed\x0c\x32\x5f\xf6\x1d\x60\xbe\xe0\x09\x2e\xc7\xf7\x0e\x2d\x37\x4b\x2c\x71\xc5\x38\x33\x07\xb8\x1a\x50\x99\xb5\x57\x8c\x74\xa2\x8d\x54\xb8\xa1\xce\x80\xfb\x12\xa6\xb5\xa5\x79\x55\x1e\x5e\x13\x26\xdf\x99\x29\x72\x85\x7b\x5c\x71\x57\x2d\x5d\x1f\x27\xdf\x9c\xcf\xeb\x38\x6d\xcc\xa5\xeb\xf6\xa6\xba\x18\x00\xe4\xc7\x16\xfe\x0d\x05\x6e\x48\xc1\xfc\xc2\x6b\xec\xa4\xee\xc1\xfb\x13\xc1\xb8\x0a\x6e\x36\x8c\x31\x58\x36\x0d\x9e\x44\xe3\x8e\xe2\xf9\xc5\xa9\xe7\x29\x18\x39\xf3\x7d\x9f\x7a\x7d\xaa\xad\x3c\xa2\x29\x06\xa1\x98\x9e\xd4\xff\x42\xf9\x19\xa4\xd7\xb1\x67\xd6\x7d\x1f\x8f\xcd\x53\x1d\x0b\xf4\x17\xc9\xf3\x60\xb2\x9e\x8f\x12\x71\xcd\xf3\x22\xcf\x15\x69\x3d\x1b\x90\x81\xf5\xf1\xd4\x23\x6f\x16\xa0\x32\xd0\x73\x5e\x5e\x3d\xdc\xf3\x8b\x1e\xd4\xa9\x77\x75\x92\xe9\x1e\xe4\x31\x1a\xc2\x14\x2c\xb1\x84\x2b\x0f\xd0\x58\x86\x9b\xa4\x7e\x0e\xf9\xbc\x8e\x3f\x80\x66\x32\x1a\xbf\xe7\xae\x1a\x2d\xba\x88\x7d\x80\x53\x40\x33\x5a\xd9\x8d\x8d\x5f\xc5\x5a\xd6\x93\x24\x54\xd7\xd5\x10\xfc\xa1\xab\x9a\xf7\x09\x59\xba\x32\x96\x0a\xae\x86\x8f\xd2\x78\x6c\xab\xea\xe1\x9c\x8f\x61\xf7\x0d\x5e\xc7\x6e\x4d\x79\x2f\x15\x8d\x60\x60\xcc\x8c\x48\xba\x1e\x6a\x1f\x52\x0f\x95\x97\xa0\x33\xfd\xe7\x29\xb6\x5b\xcd\x50\xb5\x5f\x74\xa3\x8a\xc7\x4a\x99\x8d\x56\xcd\x58\x37\xa5\x29\x3c\xec\x48\x29\x96\x13\x98\x82\x20\xa7\xb5\x9b\xe7\xbd\x3d\x51\x51\x46\x6c\x47\x2a\x09\xcc\x75\xaf\xf4\xac\x68\x3b\x20\xad\x5f\xd9\xe3\xf3\xf3\xb5\xb1\xe3\x3b\x6f\x36\x3c\x41\xfb\xce\x51\xbd\x1f\x6e\x51\xbd\xe8\xf6\x2c\xaf\xe3\xd1\x80\xba\xa3\x27\x09\x3d\x64\xfa\x38\xb9\x42\x7d\x32\x36\x1a\x5e\xfd\xb6\x68\xe1\xbe\x0d\x46\xc3\x99\x27\xe9\x5d\x8e\xbc\x11\xe1\xa5\x6e\x1c\xbe\x9f\x5e\x37\x43\x82\xac\x06\x72\x5b\x5a\x03\x42\xaa\x2d\xf2\x23\xbd\x4c\xb8\x85\xda\x2d\xa2\x8e\x79\x2b\xd8\x9f\x96\xa0\x44\x53\x24\xa7\x73\xa7\x35\xff\x9f\x71\x19\x5c\x4b\xfe\x25\x71\x43\x94\x61\xca\x6a\x8a\xbf\xbc\x43\x9c\xfb\xfb\x16\xbd\x45\x7f\x07\x00\x00\xff\xff\x3a\x81\x46\x09\x39\x0d\x00\x00" func lockedtokensAdminCustody_create_account_with_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3730,11 +3730,11 @@ func lockedtokensAdminCustody_create_account_with_lease_accountCdc() (*asset, er } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_account_with_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0x6e, 0x10, 0xe0, 0x22, 0x5e, 0x7b, 0x6, 0x25, 0xd8, 0x4d, 0x67, 0x7a, 0x65, 0x13, 0x95, 0x10, 0x3f, 0x27, 0x14, 0x25, 0x91, 0xa1, 0xb1, 0x7a, 0x1, 0xd7, 0xb7, 0x5e, 0x77, 0xef, 0xb3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x23, 0xd, 0xf4, 0x50, 0x6c, 0x79, 0xd3, 0x38, 0x1a, 0x22, 0x7b, 0xd6, 0xad, 0xce, 0xd1, 0xeb, 0x92, 0xa7, 0x96, 0xc1, 0xf2, 0x24, 0x40, 0x58, 0x13, 0x60, 0x6a, 0xf2, 0xbe, 0x3f, 0x4e, 0x62}} return a, nil } -var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x7b\x58\xc8\x80\x22\xa5\x57\xc3\x09\xe0\x3a\x59\xb4\x48\xda\x04\x9b\x60\xf7\x3c\x16\xc7\x16\x61\x5a\x54\x49\xca\xae\xb0\xc8\xbb\x17\xa4\x68\x59\x94\xa5\xec\xb6\x28\x7a\xa8\x0f\x41\x44\xce\xcf\x37\xdf\xfc\x70\xf8\xbe\x92\xca\xc0\x4a\x35\x95\x91\x91\xff\xfa\x24\xe4\xf1\x55\xee\xa8\x84\x8d\x92\x7b\xf8\xd0\x7d\x7f\xe8\x24\xea\x72\xcb\xd7\x82\x02\xa9\xfe\x59\x27\xf9\x28\xf3\x1d\x31\x77\xa6\x5b\xc1\xeb\x3f\x1f\x9f\x56\x0f\xf7\x77\xaf\x4f\x0f\xf7\xbf\x2f\xef\xee\x3e\xdf\xbf\xbc\x44\x51\x96\x65\xf0\xaa\xb0\xd4\x98\x1b\x2e\x4b\x30\x05\x1a\x40\xc8\x6b\x6d\x24\x6b\xa0\x52\xf2\xc0\x19\x29\x38\xca\x5a\x30\xd0\x7c\x5b\x3a\x15\x23\x21\x57\x84\x86\x00\x41\x17\xa8\x88\x01\xe6\xb9\xac\x4b\x03\x1b\xa9\x00\xa1\xd6\x56\xa9\x90\x80\x42\x11\xb2\xc6\x69\x15\xa8\xc1\x14\xc4\x15\xd4\xa5\x70\x00\x3b\xad\xd6\x1a\xb3\x62\x2d\xa6\x82\x2e\x85\x9c\xbe\x74\x28\xac\x1d\x30\x3d\xe0\x28\xb4\x8c\xa2\xde\x49\x1c\x01\x00\x6c\x6a\x21\x96\x6c\xcf\xcb\xe7\x7a\x2d\x78\xfe\x40\xcd\xdc\xb3\x9e\x3e\x50\xf3\xc8\xb5\xb9\x2f\x8d\x6a\x12\xc8\x32\xf8\x4a\x7c\x5b\x98\x39\xfc\x74\x7d\x7d\x1d\xcd\x00\xbe\x45\xce\x44\xa5\xa8\x42\x45\xb1\xe7\xe4\xd9\x53\x32\x07\xac\x4d\x11\xff\x2c\x95\x92\xc7\x2f\x28\x6a\x9a\xc1\xc7\x65\x8b\x34\x71\xf1\xfb\x0f\x2f\xf8\x62\xa4\xc2\x2d\x25\xb0\xc2\x0a\xd7\x5c\x70\xc3\x49\x9f\x55\x66\x27\x77\xf6\x27\xc8\x78\x5a\xfd\x2d\xdc\x80\xff\x2f\xae\xb0\xb1\xce\x07\x68\x66\x67\xe5\x40\x31\xdd\x51\xa3\x53\x64\x2c\xae\xce\x04\x5c\x92\x92\x76\xb7\x89\x65\xb9\x58\x8a\xad\x54\xdc\x14\xfb\x51\xe1\x40\x22\x81\xa3\xe7\x6d\x44\xb2\xbd\x9a\x85\x91\x1d\xb0\x16\xa6\x63\xa1\x81\x9b\x01\xe4\xbc\x47\x50\xaa\x5b\xda\x3a\x03\xf6\x97\x72\xad\x6b\x5a\x38\x5a\x83\xf2\x4f\xbf\x72\x53\x30\x85\x47\x5c\x0b\x9b\x8e\xae\x83\xd2\x2f\xd6\xe7\x6d\x9c\x79\x73\xd9\xe6\x74\xe3\x2e\x06\x00\xc5\xb9\x79\x7e\xc3\x12\xb7\xa4\x60\x71\x15\xb4\x54\xda\xd6\xeb\xe3\x85\x60\xec\x82\x9b\x0f\x63\x9c\x4c\x8f\xc7\x93\x6a\x3c\x50\xbc\xb8\xba\xf4\x9c\x80\x91\xf3\xd0\xf7\xa5\x57\x5f\x5b\xcf\x68\x8a\x41\x28\xa6\x27\xf5\x9f\x50\xfe\x1d\xa4\xb7\x71\x60\xd6\xfe\x7e\x3c\xb6\x40\x75\x2c\xd0\x5f\xa4\x60\x93\xc9\x7a\x3d\x4b\x84\x20\x5a\xd2\x97\x8c\x29\xd2\x7a\x3e\x60\x06\xdb\xe3\x24\xd0\xe8\xb3\x3a\x9f\xe0\x38\x1a\x01\xda\x9b\x0a\x61\xe6\x03\xeb\x8b\xab\x5e\x30\x43\xc7\x83\x5a\xe8\x05\xd5\x23\x2a\x19\x73\x3e\x60\x69\x85\x15\xdc\x04\x88\xc6\x8a\xc0\xe7\xfd\xe3\x94\xd3\xdb\xf8\x07\xe0\xcc\x46\x09\x08\xdc\xb9\xf9\xa3\x8b\x38\x04\x98\x00\x9a\xd1\xe2\xf7\x36\x7e\x2d\x37\xb2\x1d\x36\x53\xa5\xef\xe6\xd1\xff\xba\xf0\x45\x9f\x90\x95\xad\x74\xa9\xe0\x66\xf8\x3e\x74\xf9\x0c\x83\x5b\xbb\xd7\x6b\x31\x06\x3e\xb4\x78\x1b\xdb\x25\xe2\xbd\x5c\x78\xc1\x89\x51\x34\x22\x69\x5b\xeb\xf4\xa8\x05\xa8\x82\x0c\xfd\x9d\xb6\x3c\x2d\x0c\x43\xd5\x7e\xd5\x4d\xf7\xb3\x2b\x95\xf9\x68\xd9\x8c\xb5\x53\x96\xc1\xd3\x81\x94\xe2\x8c\xdc\x32\xc2\x68\x63\x67\x7e\x6f\x8b\x53\x94\x13\x3f\x90\x4a\x27\x66\x7f\x50\x7b\x75\x79\x6a\x81\xac\x7d\x8b\xcf\x4f\xd4\x67\x6f\x27\x74\xee\xf7\xaf\x92\x8e\x9d\xa3\x76\x7b\xdb\xa3\xda\xe9\xd3\x19\x6b\xe3\xd1\x80\xba\xa3\x27\x9d\x7a\xec\xf4\x79\x88\x4d\x35\xca\xd8\x6c\xf8\x16\xf6\xc5\x09\xee\xdb\x60\x36\x7c\xe7\xd9\x7a\x97\xa3\x60\x46\x8c\x0c\xef\x21\xfc\x30\xbd\x76\x88\x4c\xb2\x3a\x3a\x2b\xb3\x0c\xaa\xda\x40\x29\xd5\x1e\xc5\x99\x5f\x5e\xda\x7d\xd7\xae\x83\x96\xfa\xba\xe4\x7f\xd4\x04\x15\x9a\x22\xbd\x9c\x3c\x27\xfb\xff\x1a\x99\x93\xbb\xcb\x3f\x64\x6e\x88\x72\x92\xb2\x96\xe2\x4f\xef\x11\x67\xff\xbe\x45\x6f\xd1\x5f\x01\x00\x00\xff\xff\xde\x03\xdd\xf9\xd8\x0c\x00\x00" +var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x7b\x58\xc8\x80\x23\xa5\x57\xc3\x09\xe0\x3a\x59\xb4\x48\xda\x04\x9b\x60\xf7\x3c\x16\xc7\x16\x61\x5a\x54\x49\xca\xae\xb0\xc8\xbb\x17\xa4\x68\x49\x94\xa5\xec\xb6\x28\x7a\xa8\x0f\x41\x44\xce\xcf\x37\xdf\xfc\x70\xf8\xa1\x94\xca\xc0\x5a\xd5\xa5\x91\x91\xff\xfa\x24\xe4\xe9\x55\xee\xa9\x80\xad\x92\x07\xf8\xd0\x7e\x7f\x68\x25\xaa\x62\xc7\x37\x82\x02\xa9\xfe\x59\x2b\xf9\x28\xb3\x3d\x31\x77\xa6\x1b\xc1\xeb\x3f\x1f\x9f\xd6\x0f\xf7\x77\xaf\x4f\x0f\xf7\xbf\xaf\xee\xee\x3e\xdf\xbf\xbc\x44\x51\x9a\xa6\xf0\xaa\xb0\xd0\x98\x19\x2e\x0b\x30\x39\x1a\x40\xc8\x2a\x6d\x24\xab\xa1\x54\xf2\xc8\x19\x29\x38\xc9\x4a\x30\xd0\x7c\x57\x38\x15\x23\x21\x53\x84\x86\x00\x41\xe7\xa8\x88\x01\x66\x99\xac\x0a\x03\x5b\xa9\x00\xa1\xd2\x56\x29\x97\x80\x42\x11\xb2\xda\x69\xe5\xa8\xc1\xe4\xc4\x15\x54\x85\x70\x00\x5b\xad\xc6\x1a\xb3\x62\x0d\xa6\x9c\x2e\x85\x9c\xbe\x74\x28\xac\x1d\x30\x3d\xe0\x28\xb4\x8c\xa2\xde\x49\x1c\x01\x00\x6c\x2b\x21\x56\xec\xc0\x8b\xe7\x6a\x23\x78\xf6\x40\xf5\xc2\xb3\x9e\x3c\x50\xfd\xc8\xb5\xb9\x2f\x8c\xaa\xe7\x90\xa6\xf0\x95\xf8\x2e\x37\x0b\xf8\xe9\xfa\xfa\x3a\x9a\x01\x7c\x8b\x9c\x89\x52\x51\x89\x8a\x62\xcf\xc9\xb3\xa7\x64\x01\x58\x99\x3c\xfe\x59\x2a\x25\x4f\x5f\x50\x54\x34\x83\x8f\xab\x06\xe9\xdc\xc5\xef\x3f\xbc\xe0\x8b\x91\x0a\x77\x34\x87\x35\x96\xb8\xe1\x82\x1b\x4e\xba\x53\x99\x9d\xdd\xd9\x9f\x20\xe3\x69\xf5\xb7\x70\x03\xfe\xbf\xb8\xc4\xda\x3a\x1f\xa0\x99\x75\xca\x81\x62\xb2\xa7\x5a\x27\xc8\x58\x5c\x76\x04\x5c\x92\x92\xb4\xb7\x73\xcb\x72\xbe\x12\x3b\xa9\xb8\xc9\x0f\xa3\xc2\x81\xc4\x1c\x4e\x9e\xb7\x11\xc9\xe6\x6a\x16\x46\x76\xc4\x4a\x98\x96\x85\x1a\x6e\x06\x90\xb3\x1e\x41\x89\x6e\x68\x6b\x0d\xd8\x5f\xc2\xb5\xae\x68\xe9\x68\x0d\xca\x3f\xf9\xca\x4d\xce\x14\x9e\x70\x23\x6c\x3a\xda\x0e\x4a\xbe\x58\x9f\xb7\x71\xea\xcd\xa5\xdb\xf3\x8d\xbb\x18\x00\x14\x5d\xf3\xfc\x86\x05\xee\x48\xc1\xf2\x2a\x68\xa9\xa4\xa9\xd7\xc7\x0b\xc1\xd8\x05\xb7\x18\xc6\x38\x99\x1e\x8f\x27\xd1\x78\xa4\x78\x79\x75\xe9\x79\x0e\x46\x2e\x42\xdf\x97\x5e\x7d\x6d\x3d\xa3\xc9\x07\xa1\x98\x9e\xd4\x7f\x42\xf9\x77\x90\xde\xc6\x81\x59\xfb\xfb\xf1\xd8\x02\xd5\xb1\x40\x7f\x91\x82\x4d\x26\xeb\xb5\x93\x08\x41\x34\xa4\xaf\x18\x53\xa4\xf5\x62\xc0\x0c\x36\xc7\xf3\x40\xa3\xcf\xea\x62\x82\xe3\x68\x04\x68\x6f\x2a\x84\x99\x0f\xac\x2f\xaf\x7a\xc1\x0c\x1d\x0f\x6a\xa1\x17\xd4\x18\x51\xd3\x24\xad\xb1\x84\x9b\x00\xd0\x58\x0d\xf8\xb4\x7f\x9c\xf2\x79\x1b\xff\x00\x9a\xd9\x68\xfc\x81\x3b\x37\x7e\x74\x1e\x87\x00\xe7\x80\x66\xb4\xf6\xbd\x8d\x5f\x8b\xad\x6c\x66\xcd\x54\xe5\xbb\x71\xf4\xbf\xae\x7b\xd1\x27\x64\x6d\x0b\x5d\x2a\xb8\x19\x3e\x0f\xe3\xb1\x6d\xdc\xdb\xb5\x1c\xc3\x1e\x1a\xbc\x8d\xed\x0a\xf1\x5e\x2a\xbc\xe0\xc4\x20\x1a\x91\xb4\x8d\x75\x7e\xd2\x02\x54\x41\x82\xfe\x4e\x53\x9e\xd7\x85\xa1\x6a\xbf\xe8\xa6\xbb\xd9\x55\xca\x62\xb4\x6a\xc6\xba\x29\x4d\xe1\xe9\x48\x4a\x71\x46\x6e\x15\x61\xb4\xb5\x13\xbf\xb7\xc3\x29\xca\x88\x1f\x49\x25\x13\x93\x3f\x28\xbd\xaa\x38\x77\x40\xda\xbc\xc4\xdd\x03\xf5\xd9\xdb\x09\x9d\xfb\xed\xab\xa0\x53\xeb\xa8\xd9\xdd\x0e\xa8\xf6\xfa\x7c\xc6\x9a\x78\x34\xa0\x6e\xe9\x49\xa6\x9e\x3a\xdd\x8d\xb0\xa9\x3e\x19\x1b\x0d\xdf\xc2\xb6\x38\xc3\x7d\x1b\x8c\x86\xef\x3c\x5a\xef\x72\x14\x8c\x88\x91\xd1\x3d\x84\x1f\xa6\xd7\xce\x90\x49\x56\x27\x72\x5b\x56\x06\x0a\xa9\x0e\x28\x3a\x7a\x79\x61\x97\x5d\xbb\x0b\x5a\xe6\xab\x82\xff\x51\x11\x94\x68\xf2\xe4\x72\xee\x9c\xcd\xff\x6b\x5c\x4e\x2e\x2e\xff\x90\xb8\x21\xca\x69\xca\x1a\x8a\x3f\xbd\x43\x9c\xfd\xfb\x16\xbd\x45\x7f\x05\x00\x00\xff\xff\x0e\x36\xee\x1e\xd5\x0c\x00\x00" func lockedtokensAdminCustody_create_only_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3750,11 +3750,11 @@ func lockedtokensAdminCustody_create_only_lease_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0x6b, 0xe0, 0x60, 0x7, 0x69, 0x6c, 0x2c, 0x96, 0x6e, 0xcd, 0x35, 0x1a, 0x50, 0x50, 0x4d, 0x4b, 0x20, 0x10, 0x65, 0x13, 0xa4, 0xd, 0xc, 0xd0, 0x5f, 0x5a, 0xb6, 0x77, 0x48, 0x69, 0x5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0x82, 0x64, 0x9d, 0x19, 0xd2, 0x42, 0xf7, 0xe6, 0xe0, 0x26, 0x9e, 0x4b, 0x7f, 0xef, 0x35, 0x66, 0x75, 0x6f, 0x69, 0x4d, 0x91, 0xba, 0xc, 0x37, 0x85, 0xf6, 0x43, 0x33, 0x18, 0xeb, 0xed}} return a, nil } -var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x7b\x58\xc8\x80\x22\xb9\xc7\x1a\x4e\x00\xd7\xc9\xa2\x45\xd2\x26\xd8\xa4\xbb\xe7\xb1\x38\xb6\x88\xd0\xa2\x4a\x52\x76\x85\x45\xde\xbd\xa0\x44\xc9\xa2\x2c\x25\x9b\xa2\xe8\x61\x75\x30\x2c\x6a\x7e\xbe\xf9\xe6\x87\xc3\xf7\x85\x54\x06\xd6\xaa\x2a\x8c\x0c\xdc\xdb\x27\x21\x8f\x4f\xf2\x99\x72\xd8\x2a\xb9\x87\x0f\xdd\xfb\x87\x4e\xa2\xcc\x77\x7c\x23\xc8\x93\xea\x9f\x75\x92\x77\x32\x7d\x26\x56\x9f\xe9\x46\x70\xfe\xf7\xdd\xfd\xfa\xf6\xe6\xfa\xe9\xfe\xf6\xe6\x8f\xd5\xf5\xf5\xe7\x9b\xc7\xc7\x20\x48\x92\x04\x9e\x14\xe6\x1a\x53\xc3\x65\x0e\x26\x43\x03\x08\x69\xa9\x8d\x64\x15\x14\x4a\x1e\x38\x23\x05\x47\x59\x0a\x06\x9a\xef\xf2\x5a\xc5\x48\x48\x15\xa1\x21\x40\xd0\x19\x2a\x62\x80\x69\x2a\xcb\xdc\xc0\x56\x2a\x40\x28\xb5\x55\xca\x24\xa0\x50\x84\xac\xaa\xb5\x32\xd4\x60\x32\xe2\x0a\xca\x5c\xd4\x00\x3b\xad\xc6\x1a\xb3\x62\x0d\xa6\x8c\xce\x85\x6a\x7d\x59\xa3\xb0\x76\xc0\xf4\x80\xa3\xd0\x32\x08\x7a\x27\x61\x00\x00\x50\xa0\x32\x1c\xc5\x8a\xed\x79\xfe\x50\x6e\x04\x4f\x6f\xa9\x5a\x38\xe2\xe3\x5b\xaa\xee\xb8\x36\x37\xb9\x51\x55\x04\x49\x02\x5f\x89\xef\x32\xb3\x80\x9f\xe6\xf3\xbe\xfa\x9f\x9a\xd4\x3b\xb4\x7f\x9e\xcf\x83\x19\xc0\xb7\xa0\xb1\xa1\xa8\x40\x45\xa1\xe3\xf4\xc1\x51\xba\x00\x2c\x4d\x16\xfe\x22\x95\x92\xc7\x2f\x28\x4a\x9a\xc1\xc7\x55\x13\x69\x54\xf3\xe7\x5e\x9c\xe0\xa3\x91\x0a\x77\x14\xc1\x1a\x0b\xdc\x70\xc1\x0d\x27\x7d\x52\x99\xb5\xee\xec\x23\xc8\xb8\xb4\xb8\xaf\x70\x09\xee\x5f\x58\x60\x65\x9d\x0f\xd0\xcc\x4e\xca\x9e\x62\xfc\x4c\x95\x8e\x91\xb1\xb0\x38\xc5\x3f\x4a\x6a\xdc\x09\x44\x36\x51\xd9\x4a\xec\xa4\xe2\x26\xdb\x4f\xc9\x7b\x42\x11\x1c\x1d\x79\xe3\xc2\xcd\xd7\xd9\xfb\x41\x7a\xa9\x7b\x1b\xa3\x2f\xfe\x3a\x44\x5f\xb6\x45\xe8\x25\xe1\x80\xa5\x30\x5d\xc2\x2a\xb8\x1c\x00\x4f\x7b\xb9\x8c\x75\x93\xe1\xce\x80\x7d\x62\xae\x75\x49\xcb\xba\x02\xbc\x4e\x8f\xbf\x72\x93\x31\x85\x47\xdc\x08\x5b\x39\xdd\xb0\x88\xbf\x58\x9f\x57\x61\xe2\xcc\x25\xdb\xf6\x4b\xfd\x61\x00\x50\x9c\xe6\xc4\xef\x98\xe3\x8e\x14\x2c\x2f\xbc\xe9\x11\x37\xad\x79\x77\x26\x18\xd6\xc1\x2d\x86\x31\x4e\x56\x92\xc3\x13\x6b\x3c\x50\xb8\xbc\x38\xf7\x1c\x81\x91\x0b\xdf\xf7\xb9\x57\xd7\x06\x0f\x68\xb2\x41\x28\xa6\x27\xf5\xbf\x50\xfe\x06\xd2\xab\xd0\x33\x6b\x9f\xef\x8f\xcd\x53\x1d\x0b\xf4\x57\x29\xd8\x64\xb2\x9e\x4e\x12\x3e\x88\x86\xf4\x15\x63\x8a\xb4\x5e\x0c\x98\xc1\xe6\x38\xf2\x34\xfa\xac\x2e\x26\x38\x0e\x46\x80\xf6\x06\x98\x9f\x79\xcf\xfa\xf2\xa2\x17\xcc\xd0\xf1\xa0\x16\x7a\x41\xf5\x88\x8a\xc6\x9c\x0f\x58\x5a\x63\x01\x97\x1e\xa2\xb1\x22\x70\x79\xff\x38\xe5\xf4\x2a\xfc\x0e\x38\xb3\x51\x02\x3c\x77\xf5\x0c\xd2\x59\xe8\x03\x8c\x00\xcd\x68\xf1\x3b\x1b\xbf\xe5\x5b\xd9\x0c\x9b\xa9\xd2\xaf\x27\xe6\x0f\x5d\xf8\xa2\x4f\xc8\xda\x56\xba\x54\x70\x39\xbc\xca\xba\x7c\xfa\xc1\x6d\xea\x8b\x76\x39\x06\xde\xb7\x78\x15\xda\x7d\xe9\xb5\x5c\x38\xc1\x89\x51\x34\x22\x69\x5b\xab\xbd\x7f\x3d\x54\x5e\x86\xde\xd3\x96\xed\x6e\x34\x54\xed\x57\xdd\x74\x3f\xd7\xa5\xb2\x18\x2d\x9b\xb1\x76\x4a\x12\xb8\x3f\x90\x52\x9c\x51\xbd\x77\x31\xda\xda\x99\xdf\x5b\x58\x15\xa5\xc4\x0f\xa4\xe2\x89\xd9\xef\xd5\x5e\x99\xb7\x2d\x90\x34\xf7\xf1\xe9\x8a\xfa\xec\xec\xf8\xce\xdd\xaa\x99\xd3\xb1\x73\xd4\x2c\xaa\x7b\x54\xcf\xba\x3d\x63\x4d\x3c\x1a\x50\x77\xf4\xc4\x53\x97\x9d\x3e\x0d\xb1\xa9\x46\x19\x9b\x0d\xdf\xfc\xbe\x68\xe1\xbe\x0c\x66\xc3\x1b\xd7\xd6\xab\x1c\x79\x33\x62\x64\x78\x0f\xe1\xfb\xe9\xb5\x43\x64\x92\xd5\xd1\x59\x99\x24\x50\x94\x06\x72\xa9\xf6\x28\x4e\xfc\xf2\xdc\xae\xf6\x76\x73\xb5\xd4\x97\x39\xff\xab\x24\x28\xd0\x64\xf1\xf9\xe4\x69\xed\xff\x67\x64\x4e\xee\x2e\xff\x92\xb9\x21\xca\x49\xca\x1a\x8a\x3f\xbd\x46\x9c\xfd\x7d\x09\x5e\x82\x7f\x02\x00\x00\xff\xff\x47\x90\x12\x31\xc3\x0d\x00\x00" +var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\xf6\xb0\x90\x01\x47\x72\x8f\x35\x9c\x00\xae\x93\x45\x8b\xa4\x4d\xb0\x49\x77\xcf\x63\x71\x6c\x11\xa1\x45\x95\xa4\xec\x0a\x8b\xfc\xf7\x82\x12\xf5\xa0\x2c\x25\x9b\xa2\xe8\x61\x75\x30\x2c\x6a\x1e\xdf\x7c\xf3\xe0\xf0\x43\x2e\x95\x81\x8d\x2a\x73\x23\x03\xf7\xf6\x49\xc8\xd3\x93\x7c\xa6\x0c\x76\x4a\x1e\xe0\x43\xfb\xfe\xa1\x95\x28\xb2\x3d\xdf\x0a\xf2\xa4\xfa\x67\xad\xe4\x9d\x4c\x9e\x89\x55\x67\xba\x16\x5c\xfc\x7d\x77\xbf\xb9\xbd\xb9\x7e\xba\xbf\xbd\xf9\x63\x7d\x7d\xfd\xf9\xe6\xf1\x31\x08\xe2\x38\x86\x27\x85\x99\xc6\xc4\x70\x99\x81\x49\xd1\x00\x42\x52\x68\x23\x59\x09\xb9\x92\x47\xce\x48\xc1\x49\x16\x82\x81\xe6\xfb\xac\x52\x31\x12\x12\x45\x68\x08\x10\x74\x8a\x8a\x18\x60\x92\xc8\x22\x33\xb0\x93\x0a\x10\x0a\x6d\x95\x52\x09\x28\x14\x21\x2b\x2b\xad\x14\x35\x98\x94\xb8\x82\x22\x13\x15\xc0\x56\xab\xb6\xc6\xac\x58\x8d\x29\xa5\x73\xa1\x4a\x5f\x56\x28\xac\x1d\x30\x3d\xe0\x28\xb4\x0c\x82\xde\x49\x18\x00\x00\xe4\xa8\x0c\x47\xb1\x66\x07\x9e\x3d\x14\x5b\xc1\x93\x5b\x2a\x97\x8e\xf8\xe8\x96\xca\x3b\xae\xcd\x4d\x66\x54\x39\x87\x38\x86\xaf\xc4\xf7\xa9\x59\xc2\x4f\x8b\x45\x5f\xfd\x4f\x4d\xea\x1d\xda\x3f\x2f\x16\xc1\x0c\xe0\x5b\x50\xdb\x50\x94\xa3\xa2\xd0\x71\xfa\xe0\x28\x5d\x02\x16\x26\x0d\x7f\x91\x4a\xc9\xd3\x17\x14\x05\xcd\xe0\xe3\xba\x8e\x74\x5e\xf1\xe7\x5e\x9c\xe0\xa3\x91\x0a\xf7\x34\x87\x0d\xe6\xb8\xe5\x82\x1b\x4e\xba\x53\x99\x35\xee\xec\x23\xc8\xb8\xb4\xb8\xaf\x70\x09\xee\x5f\x98\x63\x69\x9d\x0f\xd0\xcc\x3a\x65\x4f\x31\x7a\xa6\x52\x47\xc8\x58\x98\x77\xf1\x8f\x92\x1a\xb5\x02\x73\x9b\xa8\x74\x2d\xf6\x52\x71\x93\x1e\xa6\xe4\x3d\xa1\x39\x9c\x1c\x79\xe3\xc2\xf5\xd7\xd9\xfb\x41\x7a\xa9\x7b\x1b\xa3\x2f\xfe\x3a\x44\x5f\xb6\x41\xe8\x25\xe1\x88\x85\x30\x6d\xc2\x4a\xb8\x1c\x00\x4f\x7a\xb9\x8c\x74\x9d\xe1\xd6\x80\x7d\x22\xae\x75\x41\xab\xaa\x02\xbc\x4e\x8f\xbe\x72\x93\x32\x85\x27\xdc\x0a\x5b\x39\xed\xb0\x88\xbe\x58\x9f\x57\x61\xec\xcc\xc5\xbb\xe6\x4b\xf5\x61\x00\x50\x74\x73\xe2\x77\xcc\x70\x4f\x0a\x56\x17\xde\xf4\x88\xea\xd6\xbc\x3b\x13\x0c\xab\xe0\x96\xc3\x18\x27\x2b\xc9\xe1\x89\x34\x1e\x29\x5c\x5d\x9c\x7b\x9e\x83\x91\x4b\xdf\xf7\xb9\x57\xd7\x06\x0f\x68\xd2\x41\x28\xa6\x27\xf5\xbf\x50\xfe\x06\xd2\xab\xd0\x33\x6b\x9f\xef\x8f\xcd\x53\x1d\x0b\xf4\x57\x29\xd8\x64\xb2\x9e\x3a\x09\x1f\x44\x4d\xfa\x9a\x31\x45\x5a\x2f\x07\xcc\x60\x7d\x3c\xf7\x34\xfa\xac\x2e\x27\x38\x0e\x46\x80\xf6\x06\x98\x9f\x79\xcf\xfa\xea\xa2\x17\xcc\xd0\xf1\xa0\x16\x7a\x41\x8d\x11\x35\x4d\xd2\x06\x73\xb8\xf4\x00\x8d\xd5\x80\x4b\xfb\xc7\x29\x9f\x57\xe1\x77\xa0\x99\x8d\xc6\xef\xb9\xab\x46\x90\x4e\x43\x1f\xe0\x1c\xd0\x8c\xd6\xbe\xb3\xf1\x5b\xb6\x93\xf5\xac\x99\xaa\xfc\x6a\x60\xfe\xd0\x75\x2f\xfa\x84\x6c\x6c\xa1\x4b\x05\x97\xc3\x9b\x6c\x3c\xb6\x6d\x75\xcd\xae\xc6\xb0\xfb\x06\xaf\x42\xbb\x2d\xbd\x96\x0a\x27\x38\x31\x88\x46\x24\x6d\x63\x35\xb7\xaf\x87\xca\x4b\xd0\x7b\x9a\xb2\xd9\x8c\x86\xaa\xfd\xa2\x9b\xee\xe6\xaa\x52\x96\xa3\x55\x33\xd6\x4d\x71\x0c\xf7\x47\x52\x8a\x33\xaa\xb6\x2e\x46\x3b\x3b\xf1\x7b\xeb\xaa\xa2\x84\xf8\x91\x54\x34\x31\xf9\xbd\xd2\x2b\xb2\xa6\x03\xe2\xfa\x36\xee\x2e\xa8\xcf\xce\x8e\xef\xdc\x2d\x9a\x19\x9d\x5a\x47\xf5\x9a\x7a\x40\xf5\xac\x9b\x33\x56\xc7\xa3\x01\x75\x4b\x4f\x34\x75\xd5\xe9\x6e\x84\x4d\xf5\xc9\xd8\x68\xf8\xe6\xb7\x45\x03\xf7\x65\x30\x1a\xde\xb8\xb4\x5e\xe5\xc8\x1b\x11\x23\xa3\x7b\x08\xdf\x4f\xaf\x9d\x21\x93\xac\x4e\xe4\x36\x2f\x0c\x64\x52\x1d\x50\x74\xf4\xf2\xcc\xee\xf5\x76\x6d\xb5\xcc\x17\x19\xff\xab\x20\xc8\xd1\xa4\xd1\xf9\xdc\x69\xcc\xff\x67\x5c\x4e\x2e\x2e\xff\x92\xb8\x21\xca\x69\xca\x6a\x8a\x3f\xbd\x42\x9c\xfd\x7d\x09\x5e\x82\x7f\x02\x00\x00\xff\xff\xcc\x7d\x08\x2a\xc0\x0d\x00\x00" func lockedtokensAdminCustody_create_only_shared_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3770,11 +3770,11 @@ func lockedtokensAdminCustody_create_only_shared_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_shared_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0x45, 0x4b, 0xda, 0x2, 0x66, 0xa4, 0x14, 0xaa, 0x12, 0x66, 0x13, 0x9f, 0x91, 0xf1, 0xed, 0x47, 0x16, 0xcf, 0x83, 0x72, 0x11, 0x42, 0xdd, 0x72, 0x1, 0x5f, 0x68, 0xeb, 0x8b, 0x94, 0x30}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0x48, 0x74, 0xb6, 0x2d, 0x33, 0xb1, 0x7f, 0xa7, 0x46, 0xd4, 0xf2, 0x89, 0xf2, 0xf8, 0xa7, 0xd6, 0x8b, 0x8, 0xe, 0x41, 0x5f, 0x2, 0xff, 0x57, 0x56, 0x68, 0xa1, 0x8d, 0xd9, 0xc0, 0x29}} return a, nil } -var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\xf6\xb0\x90\x01\x47\xf2\x1e\x6b\x38\x01\x5c\x27\x8b\x16\x49\x9b\x60\x93\xee\x9e\xc7\xd2\xd8\x22\x42\x93\x2a\x49\xd9\x35\x82\xfc\xf7\x82\xfa\xb2\x28\x51\x4e\x52\x14\x3d\x54\x87\x20\x12\xdf\xcc\x3c\x3e\x0e\x1f\x69\xb6\xcb\xa5\x32\xb0\x52\xc7\xdc\xc8\xa0\x7e\xfb\xca\xe5\xe1\x49\x3e\x93\x80\x8d\x92\x3b\xf8\xd4\xbe\x7f\x6a\x11\x85\xd8\xb2\x35\x27\x07\xd5\xfd\xd6\x22\xef\x64\xf2\x4c\x69\xf9\x4d\x57\xc0\xd9\x5f\x77\xf7\xab\xdb\x9b\xeb\xa7\xfb\xdb\x9b\xdf\x97\xd7\xd7\xdf\x6e\x1e\x1f\x83\x20\x8e\x63\x78\x52\x28\x34\x26\x86\x49\x01\x26\x43\x03\x08\x49\xa1\x8d\x4c\x8f\x90\x2b\xb9\x67\x29\x29\x38\xc8\x82\xa7\xa0\xd9\x56\x94\x21\x46\x42\xa2\x08\x0d\x01\x82\xce\x50\x51\x0a\x98\x24\xb2\x10\x06\x50\xa4\x80\x02\x0a\xc1\x4b\x0a\x25\xbc\x19\xdb\x48\x05\x08\x85\x26\x15\x04\xe6\x54\x35\x0c\x00\x00\x72\x54\x86\x21\x5f\xa6\x3b\x26\x1e\x8a\x35\x67\xc9\x2d\x1d\xe7\xb5\x46\xd1\x2d\x1d\xef\x98\x36\x37\xc2\xa8\xe3\x14\xe2\x18\x7e\x10\xdb\x66\x66\x0e\x5f\x66\xb3\x6e\xf8\x1f\x9a\xd4\x07\xa2\x7f\xaa\xa3\x37\x05\xff\x68\xe8\x97\xd9\x6c\x16\x4c\xe0\x25\xa8\xca\x2b\xca\x51\x51\x58\x2b\xf7\x50\x0b\x37\x07\x2c\x4c\x16\xfe\x2c\x95\x92\x87\xef\xc8\x0b\x9a\xc0\xe7\x65\x25\x47\x1b\x6b\x1f\x4e\xa6\x56\xb2\x1e\x85\x4b\xa8\xff\x0b\x73\x3c\xda\x4c\xbd\xd4\x13\x27\xd6\x8a\xfa\xfe\xc8\x36\xd4\x29\x19\x3d\xd3\x51\x47\x98\xa6\x61\x7e\x92\xc1\xbb\x2c\x51\x0b\x98\x42\x86\x3a\x5b\xf2\xad\x54\xcc\x64\xbb\x31\xbc\x03\x9a\xc2\xa1\xd6\xd0\x0f\xae\x46\x27\x1f\x27\xe9\xac\xe0\xdb\x1c\x5d\xf8\x79\x8a\x2e\xb6\x61\xd8\x52\xec\xc8\xef\x25\x38\xe8\xaf\x33\xec\x86\xd8\x11\x6a\x43\xe0\x80\x97\x6d\x8d\x3d\x16\xdc\xac\x30\xc7\x35\xe3\xcc\x1c\xe1\xb2\x27\x68\xd2\x0c\x31\xd2\x91\x36\x52\xe1\x96\xda\x04\xf6\x89\x98\xd6\x05\x2d\xca\x4e\x76\xec\x26\xfa\xc1\x4c\x96\x2a\x3c\xe0\x9a\xdb\xc6\x6e\x1d\x2b\xfa\x6e\x6b\x5e\x85\x71\x9d\x2e\xde\x34\x23\xe5\x40\x8f\x20\x3f\x99\xd5\x6f\x28\x70\x4b\x0a\x16\x17\x8e\x85\x45\x95\xdb\xdc\x0d\x80\x61\x39\xb9\x79\x7f\x8e\xa3\x1d\x5e\xf3\x89\x34\xee\x29\x5c\x5c\x0c\x2b\x4f\xc1\xc8\xb9\x5b\x7b\x58\xf5\xb1\xca\xf2\x80\x26\xeb\x4d\xc5\x74\x50\xff\x89\xe4\x6f\x30\xbd\x0a\x9d\xb4\xf6\x79\xff\xdc\x9c\x50\xdf\x44\x7f\x91\x3c\x1d\x5d\xac\xa7\x13\xc2\x25\x51\x89\xbe\x4c\x53\x45\x5a\xcf\x7b\xca\x60\xf5\x79\xea\x44\x74\x55\x9d\x8f\x68\x1c\x78\x88\x76\x77\xa5\xb3\xf2\x4e\xf6\xc5\x45\x67\x32\xfd\xc2\xbd\x5e\xe8\x4c\xaa\x23\xd4\xd4\x57\xbc\xa7\xd2\x0a\x73\xb8\x74\x18\xf9\x9a\xa0\x5e\xf7\xcf\x63\x45\xaf\xc2\x77\xd0\x99\x78\x05\x70\xca\x95\xee\xa3\xb3\xd0\x25\x38\x05\x34\xde\xe6\xaf\x73\xfc\x2a\x36\xb2\x32\x9b\xb1\xd6\x2f\x9d\xfc\x7f\xdd\xf8\xbc\x2b\xc8\xca\x76\xba\x54\x70\xd9\x3f\x62\xdb\xf5\x74\x27\xb7\x2e\xef\x01\x0b\x1f\x79\x37\xe3\x55\x68\x2f\x6d\xe7\xd6\xa2\x06\x8e\x58\x91\x07\x69\xb7\x56\x73\x2f\x70\x58\x39\x2b\xf4\x91\x6d\xd9\xdc\xf1\xfa\xa1\xdd\xae\x1b\xdf\xcf\x65\xab\xcc\xbd\x6d\xe3\xdb\x4e\x71\x0c\xf7\x7b\x52\x8a\xa5\x04\x26\x23\x48\x69\x63\x3d\xbf\x73\x6b\x56\x94\x10\xdb\x93\x8a\x46\xbc\xdf\xe9\xbd\x42\x34\x5b\x20\xae\x4e\xe2\xd3\x11\xf5\xad\xce\xe3\x16\xaf\xef\xbb\x82\x0e\x6d\xa1\xea\xb6\xbc\x43\xf5\xac\x9b\x6f\x69\x35\x1f\x0d\xa8\x5b\x79\xa2\xb1\xc3\x4e\x9f\x4c\x6c\x6c\xa3\xf8\xbc\xe1\xc5\xdd\x17\x0d\xdd\xd7\x9e\x37\xbc\x71\x6c\x9d\xd5\xc8\xf1\x08\x8f\x79\xf7\xe9\xbb\xcb\x6b\x4d\x64\x54\x55\xaf\x57\xc6\x31\xe4\x85\x01\x21\xd5\x0e\xf9\x49\x5f\x26\xec\xef\x0b\x7b\xb1\xb6\xd2\x17\x82\xfd\x59\x10\xe4\x68\xb2\x68\xe8\x3c\x4d\xfe\x7f\x4d\xcc\xd1\xbb\xcb\x3f\x54\xae\xcf\x72\x54\xb2\x4a\xe2\xaf\xe7\x84\xb3\x7f\x5f\x83\xd7\xe0\xef\x00\x00\x00\xff\xff\x0f\xf5\x21\x09\x48\x0e\x00\x00" +var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\xf6\xb0\x90\x01\x47\xf2\x1e\x6b\x38\x01\x5c\x27\x8b\x16\x49\x9b\x60\x93\xee\x9e\xc7\xd2\xd8\x22\x42\x93\x2a\x49\xd9\x35\x82\xfc\xf7\x82\xfa\xb2\x28\x89\x4e\x52\x14\x3d\x54\x87\x20\x12\xe7\xe3\xcd\x9b\xe1\x23\xcd\x76\xb9\x54\x06\x56\xea\x98\x1b\x19\xd4\x6f\x5f\xb9\x3c\x3c\xc9\x67\x12\xb0\x51\x72\x07\x9f\xda\xf7\x4f\xad\x45\x21\xb6\x6c\xcd\xc9\xb1\xea\x7e\x6b\x2d\xef\x64\xf2\x4c\x69\xf9\x4d\x57\x86\xb3\xbf\xee\xee\x57\xb7\x37\xd7\x4f\xf7\xb7\x37\xbf\x2f\xaf\xaf\xbf\xdd\x3c\x3e\x06\x41\x1c\xc7\xf0\xa4\x50\x68\x4c\x0c\x93\x02\x4c\x86\x06\x10\x92\x42\x1b\x99\x1e\x21\x57\x72\xcf\x52\x52\x70\x90\x05\x4f\x41\xb3\xad\x28\x5d\x8c\x84\x44\x11\x1a\x02\x04\x9d\xa1\xa2\x14\x30\x49\x64\x21\x0c\xa0\x48\x01\x05\x14\x82\x97\x10\x4a\xf3\x66\x6d\x23\x15\x20\x14\x9a\x54\x10\x98\x53\xd6\x30\x00\x00\xc8\x51\x19\x86\x7c\x99\xee\x98\x78\x28\xd6\x9c\x25\xb7\x74\x9c\xd7\x1c\x45\xb7\x74\xbc\x63\xda\xdc\x08\xa3\x8e\x53\x88\x63\xf8\x41\x6c\x9b\x99\x39\x7c\x99\xcd\xba\xee\x7f\x68\x52\x1f\xf0\xfe\xa9\xf6\xde\x14\xfc\xa3\xae\x5f\x66\xb3\x59\x30\x81\x97\xa0\x4a\xaf\x28\x47\x45\x61\xcd\xdc\x43\x4d\xdc\x1c\xb0\x30\x59\xf8\xb3\x54\x4a\x1e\xbe\x23\x2f\x68\x02\x9f\x97\x15\x1d\xad\xaf\x7d\x38\x99\x9a\xc9\x7a\x15\x2e\xa1\xfe\x2f\xcc\xf1\x68\x23\xf5\x42\x4f\x1c\x5f\x4b\xea\xfb\x3d\x5b\x57\x27\x65\xf4\x4c\x47\x1d\x61\x9a\x86\xf9\x89\x86\xd1\xb6\x44\xad\xc1\x14\x32\xd4\xd9\x92\x6f\xa5\x62\x26\xdb\xf9\xec\x1d\xa3\x29\x1c\x6a\x0e\xc7\x8d\xab\xd5\xc9\xc7\x41\x3a\x1d\x7c\x1b\xa3\x6b\x7e\x1e\xa2\x6b\xdb\x20\x6c\x21\x76\xe8\x1f\x05\x38\x98\xaf\x33\xe8\x86\xb6\x1e\x68\x43\xc3\x01\x2e\x3b\x1a\x7b\x2c\xb8\x59\x61\x8e\x6b\xc6\x99\x39\xc2\x65\x8f\xd0\xa4\x59\x62\xa4\x23\x6d\xa4\xc2\x2d\xb5\x01\xec\x13\x31\xad\x0b\x5a\x94\x93\xec\xc8\x4d\xf4\x83\x99\x2c\x55\x78\xc0\x35\xb7\x83\xdd\x2a\x56\xf4\xdd\xe6\xbc\x0a\xe3\x3a\x5c\xbc\x69\x56\xca\x85\x1e\x40\x7e\x12\xab\xdf\x50\xe0\x96\x14\x2c\x2e\x1c\x09\x8b\x2a\xb5\xb9\x1b\x18\x86\x65\x71\xf3\x7e\x8d\xde\x09\xaf\xf1\x44\x1a\xf7\x14\x2e\x2e\x86\x99\xa7\x60\xe4\xdc\xcd\x3d\xcc\xfa\x58\x45\x79\x40\x93\xf5\x4a\x31\x1d\xab\xff\x84\xf2\x37\x90\x5e\x85\x4e\x58\xfb\xbc\xbf\x36\xc7\x75\xac\xd0\x5f\x24\x4f\xbd\xcd\x7a\x3a\x59\xb8\x20\x2a\xd2\x97\x69\xaa\x48\xeb\x79\x8f\x19\xac\x3e\x4f\x1d\x8f\x2e\xab\x73\x0f\xc7\xc1\x08\xd0\xee\xae\x74\x3a\xef\x44\x5f\x5c\x74\x8a\xe9\x27\xee\xcd\x42\xa7\xa8\x31\xa2\xfc\x24\xad\x30\x87\x4b\x07\xd0\xd8\x0c\xd4\x6d\xff\xec\xcb\x79\x15\xbe\x03\xcd\x64\xb4\x7e\x27\x5d\x29\x3e\x3a\x0b\x5d\x80\x53\x40\x33\x3a\xfb\x75\x8c\x5f\xc5\x46\x56\x5a\xe3\x9b\xfc\x52\xc8\xff\xd7\x73\xcf\xbb\x84\xac\xec\xa0\x4b\x05\x97\xfd\x13\xb6\xed\xa7\x5b\xdc\xba\xbc\x06\x2c\xc6\xc0\xbb\x11\xaf\x42\x7b\x67\x3b\xd7\x8b\xda\xd0\xa3\x44\x23\x96\x76\x67\x35\xd7\x02\x07\x95\xd3\xa1\x8f\xec\xca\xe6\x8a\xd7\x77\xed\x4e\x9d\x7f\x3b\x97\xa3\x32\x1f\x1d\x9b\xb1\xed\x14\xc7\x70\xbf\x27\xa5\x58\x4a\x60\x32\x82\x94\x36\x56\xf2\x3b\x97\x66\x45\x09\xb1\x3d\xa9\xc8\x23\xfd\xce\xec\x15\xa2\xd9\x02\x71\x75\x10\x9f\x4e\xa8\x6f\x75\x1c\x37\x79\x7d\xdd\x15\x74\x68\x13\x55\x97\xe5\x1d\xaa\x67\xdd\x7c\x4b\xab\x7a\x34\xa0\x6e\xe9\x89\x7c\x67\x9d\x3e\x69\x98\x6f\xa3\x8c\x69\xc3\x8b\xbb\x2f\x1a\xb8\xaf\x3d\x6d\x78\xe3\xd4\x3a\xcb\x91\xa3\x11\x23\xda\xdd\x87\xef\xb6\xd7\x8a\x88\x97\x55\x4f\x6f\xf3\xc2\x80\x90\x6a\x87\xfc\x44\x2f\x13\xf6\xd7\x85\xbd\x56\x5b\xe6\x0b\xc1\xfe\x2c\x08\x72\x34\x59\x34\x14\x9e\x26\xfc\xbf\xc6\xa5\xf7\xe6\xf2\x0f\x89\xeb\xa3\xf4\x53\x56\x51\xfc\xf5\x0c\x71\xf6\xef\x6b\xf0\x1a\xfc\x1d\x00\x00\xff\xff\x82\x19\xef\x87\x46\x0e\x00\x00" func lockedtokensAdminCustody_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3790,11 +3790,11 @@ func lockedtokensAdminCustody_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0x6a, 0x4f, 0xaf, 0x4a, 0xfd, 0x21, 0x8e, 0x71, 0xd1, 0x6e, 0xad, 0x59, 0xc1, 0xc0, 0xbd, 0xa6, 0x99, 0xed, 0x9e, 0xec, 0x61, 0xee, 0x58, 0x54, 0x85, 0xb1, 0x10, 0xb8, 0x83, 0x3e, 0xe6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x91, 0xc6, 0xba, 0xbf, 0xeb, 0x77, 0xe0, 0xf6, 0x3e, 0xb3, 0xd4, 0x6a, 0x11, 0xde, 0x74, 0xb8, 0xe0, 0x23, 0xb2, 0x82, 0xde, 0x19, 0xe2, 0x58, 0xb8, 0x57, 0x7a, 0xbb, 0xd4, 0xf5, 0xdf, 0x8b}} return a, nil } -var _lockedtokensAdminCustody_setup_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\x4f\x6f\xc2\x30\x0c\xc5\xef\xfd\x14\x3e\xa1\x22\x15\xd8\x19\xb1\x49\xa8\x70\x02\x0d\xb4\xa2\xdd\x4d\xea\xad\x11\xa5\x89\x1c\xa7\xdb\x34\xf1\xdd\xa7\xae\x82\x11\xd6\xfd\xc1\x87\x1e\x5c\xc7\xef\xf7\x9e\xf5\xde\x1a\x16\x58\x1a\xb5\xa3\x7c\x63\x76\x54\x39\x78\x62\xb3\x87\x9b\xd7\xe5\x2a\x5d\xcc\x67\x9b\xd5\x62\x7e\x3f\x9d\xcd\x1e\xe6\x59\x16\x45\xc2\x58\x39\x54\xa2\x4d\x05\xef\x51\x04\x00\x60\x99\x2c\x32\xc5\xca\x3b\x31\xf9\xdb\x9a\x4d\xad\x73\xe2\x31\xa0\x97\x22\xce\xb0\xa6\x47\x2c\x3d\x25\x90\xa2\xc5\xad\x2e\xb5\x68\x72\x7d\xe8\x4d\x95\x32\xbe\x92\xfe\x71\x4f\x53\x25\x09\x60\xdb\x4f\x99\x50\x0c\xc3\x64\x10\xc0\x0d\x55\xd3\xa7\xb6\x35\x0d\x46\xe3\xfe\xd7\xa2\x0b\x98\xa1\x13\xc3\xf8\x4c\x43\x87\x35\xc5\xa7\xa9\xa6\x26\x83\x50\x30\x81\xe0\xb7\x98\x71\xa8\xdf\xa5\x9c\xb5\xdb\xd7\x28\x45\x72\x7a\x7d\x46\x33\x1a\x41\x8b\x0d\x15\xbd\x00\x93\x22\x5d\x13\x83\x14\x28\xb0\x47\xde\xb9\x63\x2f\x07\x69\x4f\x80\x0e\x7c\x55\x7e\x4a\x05\xe1\x94\x1d\xea\x29\x5a\xb8\xfd\xe6\x58\x9d\xa5\x7d\xb2\xaf\x9d\xf3\x34\xe9\xfd\x69\xe8\x2e\xcc\xe8\x9a\x00\xba\xfc\xff\xca\x66\xfd\xb6\xd4\xae\xb8\x9e\xea\x87\x2c\x92\x60\x08\xe5\x1f\xf7\x5b\x37\x08\xea\xf2\x7c\xcd\xf7\x10\x1d\xa2\x8f\x00\x00\x00\xff\xff\x8f\x22\xf9\xa7\x23\x03\x00\x00" +var _lockedtokensAdminCustody_setup_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x91\xcd\x6e\xc2\x30\x10\x84\xef\x79\x8a\x3d\xa1\x20\xf1\xd3\x33\xa2\x95\x50\xe0\x04\x2a\xa8\x41\xbd\x2f\xce\xb6\xb1\x08\xb6\xb5\x5e\xa7\xad\x2a\xde\xbd\x4a\x23\x28\xa6\xf4\x4f\xf5\x21\x87\x89\xbd\xf3\xcd\xac\xde\x39\xcb\x02\x0b\xab\xb6\x54\xac\xed\x96\x8c\x87\x07\xb6\x3b\xb8\x7a\x5e\x2c\xb3\xf9\x6c\xba\x5e\xce\x67\xb7\x93\xe9\xf4\x6e\x96\xe7\x49\x22\x8c\xc6\xa3\x12\x6d\x0d\xbc\x26\x09\x00\x80\x63\x72\xc8\x94\xaa\xe0\xc5\x16\x2f\x2b\xb6\xb5\x2e\x88\x47\x80\x41\xca\x34\xc7\x9a\xee\xb1\x0a\xd4\x83\x0c\x1d\x6e\x74\xa5\x45\x93\xef\x42\x67\xa2\x94\x0d\x46\xba\x87\x39\xcd\xa9\x48\x00\x5b\x3d\x63\x42\xb1\x0c\xe3\x7e\x04\x37\x50\x8d\x4e\xad\x34\x89\xae\xa6\xdd\x8f\x41\x67\x30\x03\x2f\x96\xf1\x91\x06\x1e\x6b\x4a\x8f\xb7\x9a\x33\xee\xc7\x86\xbd\xe8\xaf\xd8\x51\x6c\x7f\xc9\x38\x6f\x87\xaf\x50\xca\xe3\xe3\x13\x96\xe1\x10\x5a\x68\x30\xf4\x04\x4c\x8a\x74\x4d\x0c\x52\xa2\xc0\x0e\x79\xeb\x0f\x5a\x01\xd2\x2e\x00\x3d\x04\x53\xbd\x3b\x45\xd5\x54\x17\xcc\x33\x74\x70\xfd\x29\xaf\x3a\xe9\xfa\x18\x5e\x7b\x1f\x68\xdc\xf9\x31\xcf\x4d\xdc\xd0\x7f\xf3\x7f\xcb\xe6\xc2\xa6\xd2\xbe\xfc\x3b\xd5\x17\x5d\xc4\xeb\x43\xf9\xc5\xfa\x56\x0d\x82\x3a\xa3\x6f\xbe\xfb\x64\x9f\xbc\x05\x00\x00\xff\xff\x2b\xba\xc1\xdd\x20\x03\x00\x00" func lockedtokensAdminCustody_setup_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3810,7 +3810,7 @@ func lockedtokensAdminCustody_setup_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_setup_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0x40, 0x6a, 0x7b, 0x9d, 0xa1, 0x31, 0xd9, 0xc7, 0x91, 0x5, 0x6f, 0x52, 0xf7, 0x71, 0x70, 0x92, 0xf2, 0xd2, 0xbc, 0x15, 0x2e, 0xd5, 0x5d, 0x81, 0xa0, 0x1d, 0x37, 0xcc, 0xa9, 0xbf, 0xdf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x82, 0x15, 0x16, 0x69, 0x96, 0xd9, 0x5, 0x6f, 0xe2, 0xe8, 0xa7, 0x37, 0x60, 0x65, 0x4b, 0x87, 0xe3, 0xfa, 0x78, 0x3e, 0xb1, 0x43, 0xa3, 0x64, 0xeb, 0x86, 0x69, 0x35, 0x8a, 0xad, 0xe7, 0xc6}} return a, nil } @@ -4434,7 +4434,7 @@ func lockedtokensUserGet_multiple_unlock_limitsCdc() (*asset, error) { return a, nil } -var _lockedtokensUserGet_total_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5d\x4f\xdb\x30\x14\x7d\xcf\xaf\xb8\xe3\x81\xa5\x5a\x95\xf2\x30\xed\xa1\xa2\x48\xdd\x02\x5b\x45\x45\x11\x74\xdb\xb3\x1b\x3b\xad\x85\x6b\x47\xb6\x03\x4c\xa8\xff\x7d\x4a\x1c\x3b\x71\x9a\x94\x0e\x96\x87\x7e\xd8\xe7\xde\x73\x7c\xcf\xf5\x0d\xdd\x66\x42\x6a\xb8\xca\xf9\x9a\xae\x18\x59\x8a\x07\xc2\x21\x95\x62\x0b\x27\xde\xda\x49\x60\x91\x4c\x3c\x79\x28\xfb\xdf\x43\xcc\xe2\x25\x5a\x31\x72\xaf\xd1\x03\xe5\xeb\x06\xd4\xdf\x70\x31\x73\x91\x3c\x10\x5c\xe6\x51\x06\x7d\xf6\x3c\x5f\x7c\xbb\xbe\x8c\x97\x8b\xeb\xcb\x9b\x69\x1c\xdf\x5d\xde\xdf\x07\xc1\x68\x04\xcb\x0d\x55\xa0\x12\x49\x33\x0d\x6b\xa2\x15\xe8\x0d\x81\xe5\x62\x39\x9d\x03\xcf\xb7\x2b\x22\x41\xa4\x70\x35\x5f\xfc\x06\xc4\x01\x25\x89\xc8\xb9\x06\xf1\xc4\xd5\x10\x50\x22\x85\x52\x90\x73\x56\xd2\x0d\xc1\x7e\x23\x8e\x41\x19\x49\x51\x49\x32\xc5\x58\x41\x9e\x15\xb9\x15\xa9\xf2\xaa\x71\xb9\xa5\x8d\x48\xca\x81\x0b\xb9\x45\xcc\x72\x1c\xda\xb3\xc9\x0f\x62\x30\x61\x64\x8d\xf4\x1e\x4c\x6d\x90\x24\xb8\x9b\xc6\xdf\xeb\xa6\x69\x61\x1a\x34\x41\x80\x92\x84\x28\x15\x22\xc6\x06\x90\xe6\x1c\xb6\x88\xf2\x10\x61\x2c\x89\x52\xe3\xa2\x0a\xc5\x8f\xc1\x18\x7e\x5e\xd1\xe7\x2f\x9f\xe1\x25\x08\x00\x00\x1e\x91\x04\x95\x6f\x61\x02\x67\xd1\x99\x59\x62\x44\x3b\x86\x49\xe1\xcb\xd4\xfc\xb1\xc9\x06\x06\x46\xd3\x12\xf9\x88\x72\xa6\xef\x48\x0a\x13\x1b\x14\x25\x28\x43\x2b\xca\xa8\xa6\x44\x45\x2b\x21\xa5\x78\x3a\x3f\x75\xcd\x15\xfd\x2a\x22\x2e\xc2\x51\x96\xaf\x18\x4d\x46\xa9\xdd\xf8\x8a\x18\xe2\x09\x19\xc0\x4b\x99\xbf\x78\x8c\xb2\xe2\xf3\x93\x23\x8a\x56\x06\x57\x82\x76\x46\xcb\x68\x04\xdf\x89\x36\x85\x82\x6a\xdf\xf4\x5e\xd1\x51\xb6\x49\xac\xc0\x8f\x0a\xb8\xc0\xc4\x96\x18\x32\x21\x98\x72\x47\x17\x99\xa6\x82\x23\x76\x23\x70\xd9\xdb\x44\x7a\xa7\x73\xda\xba\x8f\xf9\xb2\x7f\x33\xa2\x3a\xd3\x6d\x79\xe4\xdd\x45\xe8\xb2\x14\xcf\x11\x21\xb7\x48\x6f\x5c\x8c\x6f\x00\x6f\xe9\xec\xd6\x5f\xd7\xd4\xc6\xcc\x78\x2a\x60\xd2\x47\x5e\xec\x86\x25\x2c\x1e\xfb\x14\x11\xc5\x83\x4e\x83\x6c\xd2\x48\x0b\x8d\x98\x19\x00\x33\x7e\x47\x12\x21\x71\x38\x78\x97\x5d\x55\xa3\x0b\xf9\x8a\x67\xb1\xc5\xfd\x0f\xcb\x5c\xb2\x6e\xd7\x9a\xfd\x5b\x85\xb9\x88\xda\xaa\x0f\x9e\x57\xd8\xd7\xd7\x29\xdb\x77\xca\x45\xf4\xdb\x15\x37\x21\xbe\x46\x6b\x60\x93\x37\x32\x8b\x43\x0f\x58\xd3\xb4\xd1\x14\x37\xfa\xae\xcb\x76\x4f\x61\x9f\xf7\x5d\xee\x6f\x08\xf8\x46\x83\xa9\x28\x38\x97\xfe\xec\x19\x6c\x5e\x2e\xd5\x40\x2a\x08\x8f\x31\x7a\x4d\xf4\xf9\x69\xf3\xb5\x14\x95\x5f\x3f\x04\xc3\x44\xb6\x5c\xf5\x60\x7b\x6c\x5d\x97\xd1\x77\x98\x75\x0b\x3c\xa8\xbf\x76\xdc\xbc\xae\xba\x4a\xd3\x1c\x7a\x6d\x07\xba\x38\x8b\x43\x7b\x64\xd5\x74\x0d\xab\xe1\xd1\x62\xb3\x97\x50\xa4\x80\x18\x2b\x97\xf6\x47\x64\x7d\x45\x7d\x71\x2e\x61\x63\x22\xcd\x62\x98\xf4\x0a\x2b\x07\x4c\x1c\x36\x27\xfd\x3b\x26\xd3\x2c\x1e\x78\x69\xfe\x71\x26\x35\x3a\xf3\xf5\xa2\xf4\x0c\xa2\x63\x2b\xd3\xb8\x66\x07\xca\x53\x5f\xe8\xfd\x1a\x1d\x5b\x62\x97\xa3\xa7\xd6\x6f\x9e\x2f\x7e\xe5\x87\x3d\x93\xa3\xed\xc9\x9b\x86\x46\xe3\xd9\x05\xfe\xaf\xca\x30\x49\x74\x2e\x79\x91\x33\xd8\x05\x7f\x03\x00\x00\xff\xff\xc1\x6b\x33\x5a\x00\x0b\x00\x00" +var _lockedtokensUserGet_total_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\xcd\x6e\xdb\x3c\x10\xbc\xeb\x29\xf6\xcb\xe1\xab\x8c\x1a\x72\x0e\x45\x0f\x46\x1d\xc0\xad\x92\xd6\x88\x11\x07\x89\xdb\x9e\x29\x91\xb2\x89\xd0\xa4\x40\x52\x49\x8a\xc0\xef\x5e\x48\x14\x29\x51\x96\x9c\xbf\xea\xe0\x1f\x72\x76\x67\xb8\xb3\x5c\xd1\x5d\x2e\xa4\x86\x8b\x82\x6f\x68\xc2\xc8\x5a\xdc\x11\x0e\x99\x14\x3b\x38\xf1\xd6\x4e\x02\x8b\x64\xe2\xc1\x43\xd9\xff\x1e\x62\x11\xaf\x51\xc2\xc8\xad\x46\x77\x94\x6f\x5a\x50\x7f\xc3\xc5\x2c\x45\x7a\x47\x70\x95\x47\x19\xf4\xe9\xe3\x72\xf5\xed\xf2\x3c\x5e\xaf\x2e\xcf\xaf\xe6\x71\x7c\x73\x7e\x7b\x1b\x04\x93\x09\xac\xb7\x54\x81\x4a\x25\xcd\x35\x6c\x88\x56\xa0\xb7\x04\xd6\xab\xf5\x7c\x09\xbc\xd8\x25\x44\x82\xc8\xe0\x62\xb9\xfa\x0d\x88\x03\x4a\x53\x51\x70\x0d\xe2\x81\xab\x31\xa0\x54\x0a\xa5\xa0\xe0\xac\xa2\x1b\x83\xfd\x46\x1c\x83\x32\x92\xa2\x8a\x64\x8e\xb1\x82\x22\x2f\x73\x2b\x52\xe7\x55\xd3\x6a\x4b\x1b\x91\x94\x03\x17\x72\x87\x98\xe5\x38\xb6\x67\x93\x1f\xc5\x60\xc2\xc8\x06\xe9\x03\x98\xda\x22\x49\x70\x3f\x8d\xbf\xd7\x4f\xd3\xc1\xb4\x68\x82\x00\xa5\x29\x51\x2a\x44\x8c\x8d\x20\x2b\x38\xec\x10\xe5\x21\xc2\x58\x12\xa5\xa6\x65\x15\xca\x1f\xa3\x29\xfc\xbc\xa0\x8f\x9f\x3f\xc1\x53\x10\x00\x00\xdc\x23\x09\xaa\xd8\xc1\x0c\x4e\xa3\x53\xb3\xc4\x88\x76\x0c\xb3\xd2\x97\xb9\xf9\x63\x93\x8d\x0c\x8c\x66\x15\xf2\x1e\x15\x4c\xdf\x90\x0c\x66\x36\x28\x4a\x51\x8e\x12\xca\xa8\xa6\x44\x45\x89\x90\x52\x3c\x7c\xf9\xdf\x35\x57\xf4\xab\x8c\x38\x0b\x27\x79\x91\x30\x9a\x4e\x32\xbb\xf1\x15\x31\xc4\x53\x32\x82\xa7\x2a\x7f\xf9\x18\x65\xe5\xe7\x47\x47\x14\x25\x06\x57\x81\xf6\x46\xcb\x64\x02\xdf\x89\x36\x85\x82\x7a\xdf\xf4\x5e\xd9\x51\xb6\x49\xac\xc0\x0f\x0a\xb8\xc0\xc4\x96\x18\x72\x21\x98\x72\x47\x17\xb9\xa6\x82\x23\x76\x25\x70\xd5\xdb\x44\x7a\xa7\x73\xda\xfa\x8f\xf9\x74\x78\x33\xa2\x26\xd3\x75\x75\xe4\xfd\x59\xe8\xb2\x94\xcf\x0b\x42\xae\x91\xde\xba\x18\xdf\x00\xde\xd1\xd9\xaf\xbf\xa9\xa9\x8d\x59\xf0\x4c\xc0\x6c\x88\xbc\xdc\x0d\x2b\x58\x3c\xf5\x29\x22\x8a\x47\xbd\x06\xd9\xa4\x91\x16\x1a\x31\x33\x00\x16\xfc\x86\xa4\x42\xe2\x70\xf4\x2e\xbb\xea\x46\x17\xf2\x19\xcf\x62\x8b\xfb\x17\x96\xb9\x64\xfd\xae\xb5\xfb\xb7\x0e\x73\x11\x8d\x55\xff\x79\x5e\x61\x5f\x5f\xaf\x6c\xdf\x29\x17\x31\x6c\x57\xdc\x86\xf8\x1a\xad\x81\x6d\xde\xc8\x2c\x8e\x3d\x60\x43\xd3\x45\x53\xdc\xea\xbb\x3e\xdb\x3d\x85\x43\xde\xf7\xb9\xbf\x25\xe0\x1b\x0d\xa6\xa2\xe0\x5c\xfa\x73\x60\xb0\x79\xb9\xd4\x03\xa9\x24\x7c\x8d\xd1\xed\x37\x53\x54\x7d\xfd\x10\x0c\x13\xd9\x31\xd6\x83\x1d\x10\x3e\x7b\x1f\x59\xbf\xc4\xa3\x27\x68\x3c\x37\x2f\xac\xbe\xe2\xb4\xc7\x5e\xd7\x83\x3e\xce\x68\x43\xb4\x47\x56\xcf\xd7\xb0\x96\xdb\x61\xb3\xd7\x50\x64\x80\x18\xab\x96\x0e\x87\x64\x73\x49\x7d\x71\x2e\x61\x6b\x26\x2d\x62\x98\x0d\x0a\xab\x46\x4c\x1c\xb6\x67\xfd\x3b\x66\xd3\x22\x1e\x79\x69\x5e\x39\x95\x5a\xbd\xf9\x7c\x51\x06\x46\xd1\x4b\x2b\xd3\xba\x68\x47\xca\xd3\x5c\xe9\xc3\x1a\xbd\xb4\xc4\x2e\xc7\x40\xad\xdf\x3c\x61\xfc\xca\x8f\x07\x66\x47\xd7\x93\x37\x8d\x8d\xd6\xb3\x0f\xfc\x5f\xb5\x61\x92\xe8\x42\xf2\x32\x67\xb0\x0f\xfe\x06\x00\x00\xff\xff\x6a\xcd\x5f\x35\x02\x0b\x00\x00" func lockedtokensUserGet_total_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -4450,7 +4450,7 @@ func lockedtokensUserGet_total_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_total_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa1, 0x83, 0x65, 0xde, 0x8e, 0x5f, 0x73, 0xa9, 0x48, 0x26, 0xc5, 0x33, 0xdc, 0xf6, 0xfc, 0x7d, 0x7e, 0x11, 0xc8, 0x82, 0x68, 0x99, 0xdd, 0xfc, 0x9, 0x19, 0x1, 0xc7, 0x81, 0xa7, 0xc0, 0xa2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa5, 0xa3, 0xaa, 0xc7, 0x30, 0xaf, 0x46, 0x51, 0x91, 0x45, 0xe, 0xb8, 0xd0, 0x82, 0x5d, 0x72, 0x4a, 0x44, 0xa9, 0xf7, 0xa8, 0x22, 0xb1, 0xb2, 0xdf, 0xe9, 0x39, 0xd3, 0xc5, 0xae, 0xc9, 0x76}} return a, nil } @@ -4554,7 +4554,7 @@ func nodeversionbeaconAdminHeartbeatCdc() (*asset, error) { return a, nil } -var _nodeversionbeaconAdminSet_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x6f\xda\x4e\x10\xbd\xfb\x53\x8c\x38\xe4\x67\x24\x64\xff\x0e\x55\x55\x59\x4d\x23\x48\x90\x9a\x43\x49\x04\x69\xee\xc3\x7a\x8c\xb7\xb5\x77\xdd\xdd\x31\xa4\xaa\xf2\xdd\xab\x5d\xdb\x60\x6c\x90\x7a\x42\xcc\xdf\x37\xef\x3d\xaf\x2c\x2b\x6d\x18\x56\x3a\xa5\x57\x32\x56\x6a\xb5\x20\x14\x5a\x41\x66\x74\x09\xff\xbf\xad\x9e\x1e\x96\xaf\xcb\xf5\xe6\xf1\x69\xb5\x58\xce\xef\x9f\x56\xf3\x87\x87\xf5\x72\xb3\x09\x82\x38\x8e\xe1\xc5\xa0\xb2\x28\x58\x6a\x05\x9c\x23\x03\x16\x85\x3e\xd8\xfe\xb8\x79\x5a\x4a\x05\xac\x01\xd3\x14\x10\x14\x1d\x60\xdf\x64\x5c\x90\x73\xf2\x83\x8e\x21\xdc\x16\x04\x29\x65\x52\x49\xb5\x03\x3c\x26\xb6\xba\x56\x29\x9a\xdf\x80\xec\x9a\x80\xd1\xec\x88\x17\x85\x16\x3f\xbf\x92\xdc\xe5\x1c\x04\x7c\x02\x13\x06\xe0\x36\x7d\xc3\x1f\xda\x24\xf0\xfd\x51\xf1\xa7\x59\x1b\x92\x6a\x18\x7a\x46\x16\xf9\x20\x64\x68\x4d\x05\xa1\xa5\x04\x36\x6c\xa4\xda\xdd\xb9\xcc\xf6\xb4\xae\xa9\xff\xf8\x21\x98\xc2\x9f\x20\x00\x28\xe8\x02\x89\xfe\xf6\x35\x65\x09\xdc\x8c\x72\x91\x4f\xb6\x9d\x8a\x0e\x5d\xb2\xbd\x33\x19\x4f\x8b\x06\x25\x6e\x6d\x65\xa8\x42\x43\x21\x0a\xc1\x09\x60\xcd\x79\xb8\xd0\xc6\xe8\xc3\x2b\x16\x35\x4d\xe1\x66\x2e\x84\xae\x15\x3b\x94\x00\x00\x71\x0c\xf7\x86\x90\xc9\x93\xd8\x17\xc3\xeb\xed\x82\x15\x5a\x4b\x29\x54\x68\xb0\x24\x26\x63\x7d\xe3\x39\x4a\xb8\xbd\x00\x6f\x43\xe5\x9e\x4c\xe8\xcb\x01\xca\x86\xfb\x4e\x85\x19\x94\x0d\xf3\x9d\x06\x33\xa8\x1a\xde\x3b\x05\x66\xee\x98\x23\xeb\x67\x22\xf8\x91\xd3\xc0\xff\x58\x2a\xb2\x68\xcc\xd7\x45\x44\x83\x9a\xf0\x4c\xbf\xde\x9f\x59\xc7\x42\xd2\xbb\xb1\xdd\x17\xc7\xd0\x30\x0a\x08\x86\x32\x32\xa4\x04\xb5\xd6\x1d\xfb\xdc\x90\xd5\xb5\x11\x74\x82\x7a\xd5\x14\x70\x0b\x4e\xb5\xc8\xb2\x36\xb8\xa3\x68\xeb\xb7\x7c\xbe\xe6\x94\x2f\x2d\xaf\xa1\x13\xea\x92\x3b\x7c\xd5\xa6\x19\xf6\x8c\x9c\x4f\xdb\x86\xbb\x3b\xa8\x50\x49\x11\x4e\xee\x75\x5d\xa4\xea\x3f\x86\x66\xd5\xb5\x19\xb0\x6e\x8f\x98\xb8\x11\xef\x8e\x06\x7a\x23\x51\x33\x9d\x4c\x34\x4f\xd3\x91\x83\x5a\x4e\xce\x3e\xe5\x7f\xe0\x21\xb2\xc4\x43\xa1\xf6\xc3\x8f\xe1\x8a\xea\x47\x80\x95\xb6\xdc\x80\x1b\x1f\xb5\x1b\xcf\xa7\x2c\x23\xc1\x72\x4f\xf3\xfe\x13\x72\xe6\x89\x69\xd4\x82\x68\x69\x04\x88\x2c\x1b\x29\x78\xf9\xab\xc6\xe2\x45\x87\x57\x20\x75\x6d\x53\x48\x60\xb2\xea\xd1\x73\x40\x0b\x4a\xb3\x7b\x07\x29\x1d\x90\xf5\xe2\xb8\x9a\xf8\x63\xde\x83\xbf\x01\x00\x00\xff\xff\xf2\x69\x4c\x0e\x93\x05\x00\x00" +var _nodeversionbeaconAdminSet_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x6f\xda\x4e\x10\xbd\xfb\x53\x8c\x38\xe4\x67\x24\x64\xff\x0e\x55\x55\x59\x4d\x23\x48\x90\x9a\x43\x49\x04\x69\xee\xc3\x7a\x0c\xdb\xda\xbb\xee\xee\x18\x52\x55\xf9\xee\xd5\xae\x17\x30\x36\x48\x3d\x21\xe6\xef\x9b\xf7\x9e\x57\x56\xb5\x36\x0c\x0b\x9d\xd3\x2b\x19\x2b\xb5\x9a\x11\x0a\xad\xa0\x30\xba\x82\xff\xdf\x16\x4f\x0f\xf3\xd7\xf9\x72\xf5\xf8\xb4\x98\xcd\xa7\xf7\x4f\x8b\xe9\xc3\xc3\x72\xbe\x5a\x45\x51\x9a\xa6\xf0\x62\x50\x59\x14\x2c\xb5\x02\xde\x22\x03\x96\xa5\xde\xdb\xee\xb8\x69\x5e\x49\x05\xac\x01\xf3\x1c\x10\x14\xed\x61\xd7\x66\x5c\x90\xb7\xe4\x07\x1d\x43\xb8\x2e\x09\x72\x2a\xa4\x92\x6a\x03\x78\x4c\xac\x75\xa3\x72\x34\xbf\x01\xd9\x35\x01\xa3\xd9\x10\xcf\x4a\x2d\x7e\x7e\x25\xb9\xd9\x72\x14\xf1\x09\x4c\x1c\x81\xdb\xf4\x0d\x7f\x68\x93\xc1\xf7\x47\xc5\x9f\x26\x21\x24\x55\x3f\xf4\x8c\x2c\xb6\xbd\x90\xa1\x25\x95\x84\x96\x32\x58\xb1\x91\x6a\x73\xe7\x32\xeb\xd3\xba\xb6\xfe\xe3\x87\x68\x0c\x7f\xa2\x08\xa0\xa4\x0b\x24\xfa\xdb\x97\x54\x64\x70\x33\xc8\x25\x3e\x19\x3a\x15\xed\x0f\xc9\x70\x67\x36\x9c\x96\xf4\x4a\xdc\xda\xda\x50\x8d\x86\x62\x14\x82\x33\xc0\x86\xb7\xf1\x4c\x1b\xa3\xf7\xaf\x58\x36\x34\x86\x9b\xa9\x10\xba\x51\xec\x50\x02\x00\xa4\x29\xdc\x1b\x42\x26\x4f\x62\x57\x0c\xaf\xb7\x0b\xd6\x68\x2d\xe5\x50\xa3\xc1\x8a\x98\x8c\xf5\x8d\xe7\x28\xe1\xf6\x02\xbc\x15\x55\x3b\x32\xb1\x2f\x07\xa8\x5a\xee\x0f\x2a\x4c\xa0\x6a\x99\x3f\x68\x30\x81\xba\xe5\xfd\xa0\xc0\xc4\x1d\x73\x64\xfd\x4c\x04\x3f\x72\x1c\xf9\x1f\x4b\x65\x91\x0c\xf9\xba\x88\xa8\x57\x13\x9f\xe9\xd7\xf9\x33\x39\xb0\x90\x75\x6e\x0c\xfb\xd2\x14\x5a\x46\x01\xc1\x50\x41\x86\x94\xa0\x60\xdd\xa1\xcf\x0d\x59\xdd\x18\x41\x27\xa8\x57\x4d\x01\xb7\xe0\x54\x4b\x2c\x6b\x83\x1b\x4a\xd6\x7e\xcb\xe7\x6b\x4e\xf9\x12\x78\x8d\x9d\x50\x97\xdc\xe1\xab\x56\xed\xb0\x67\xe4\xed\x38\x34\xdc\xdd\x41\x8d\x4a\x8a\x78\x74\xaf\x9b\x32\x57\xff\x31\xb4\xab\xae\xcd\x80\x65\x38\x62\xe4\x46\xbc\x3b\x1a\xe8\x8d\x44\xc3\x74\x32\xd1\x34\xcf\x07\x0e\x0a\x9c\x9c\x7d\xca\xff\xc0\x43\x62\x89\xfb\x42\xed\xfa\x1f\xc3\x15\xd5\x8f\x00\x6b\x6d\x39\xa0\x1b\x5e\xb5\x19\x2e\xa0\xa2\x20\xc1\x72\x47\xd3\xee\x1b\x72\x66\x8a\x71\x12\x50\x04\x1e\x01\x12\xcb\x46\x0a\x9e\xff\x6a\xb0\x7c\xd1\xf1\x15\x4c\x87\xb6\x31\x64\x30\x5a\x74\xf8\xd9\xa3\x05\xa5\xd9\x3d\x84\x94\xf7\xd8\x7a\x71\x64\x8d\xfc\x35\xef\xd1\xdf\x00\x00\x00\xff\xff\xb8\x6c\x5a\x7b\x94\x05\x00\x00" func nodeversionbeaconAdminSet_version_boundaryCdcBytes() ([]byte, error) { return bindataRead( @@ -4570,7 +4570,7 @@ func nodeversionbeaconAdminSet_version_boundaryCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/set_version_boundary.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x34, 0x77, 0xb4, 0xc1, 0x49, 0x52, 0xbe, 0xfa, 0xfd, 0x51, 0xfd, 0x35, 0x93, 0xb4, 0x58, 0xac, 0x55, 0x66, 0x3d, 0x6d, 0xd2, 0x10, 0x1, 0x71, 0x3b, 0xc4, 0xee, 0x79, 0x85, 0xd9, 0x6a, 0x98}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0xa9, 0x9b, 0x3e, 0x92, 0x3b, 0xbb, 0x60, 0x4a, 0x57, 0x3, 0x32, 0x3, 0xbd, 0x81, 0x1d, 0x66, 0x94, 0x9d, 0x9c, 0x94, 0x8b, 0xdb, 0x4a, 0x69, 0x8d, 0x6f, 0x9d, 0x9, 0xb5, 0x74, 0x39}} return a, nil } @@ -5094,7 +5094,7 @@ func stakingcollectionCreate_machine_accountCdc() (*asset, error) { return a, nil } -var _stakingcollectionCreate_new_tokenholder_acctCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x56\x4d\x6f\xe3\x36\x10\xbd\xe7\x57\xcc\xee\x61\x61\x03\x5e\xb9\x67\x23\x09\xe0\x3a\xee\x36\xb0\xbb\x09\x6a\x77\x2f\x45\x0f\x8c\x34\xb6\x58\xcb\xa4\x40\x8e\xec\x35\x82\xfc\xf7\x82\x1f\x92\x48\x59\x46\x1d\x2c\x50\xa0\xbe\x24\xfc\x98\xc7\xf7\xde\x0c\x47\xe4\xfb\x52\x2a\x82\x99\x3a\x95\x24\x6f\xfc\xe8\x97\x42\x1e\xd7\x72\x87\x02\x36\x4a\xee\xe1\x63\x33\xfe\x58\xef\x58\xca\x74\x87\x99\x9d\xd3\x6e\xd3\x4f\xdf\x97\x4f\xb3\xc5\xfc\x61\xfd\xb4\x98\x7f\x9d\x3e\x3c\xfc\x3e\x5f\xad\x42\xbc\x15\xb1\x1d\x17\xdb\x99\x2c\x0a\x4c\x89\x4b\x51\x87\xad\xd6\xd3\xc5\xe3\xd7\x2f\xb3\xa7\xe5\x72\x3e\x5b\x3f\x3e\x35\xc1\x37\xe3\x31\xac\x73\xae\x81\x14\x13\x9a\xb9\x20\x56\x14\xf2\xa8\x81\x72\x84\x54\x0a\x52\x06\x4e\x81\xdc\xd8\x99\xc2\xb2\x02\x96\xa6\xb2\x12\x64\xe2\x49\x42\xaa\x90\x11\x02\x03\x81\xc7\x88\x77\x62\xff\xfc\x2a\x8b\xcc\x20\xbc\xfc\x8d\x29\x01\x13\x19\x68\x92\x0a\x81\x13\x70\xe1\xa3\x02\x40\x56\x68\x09\x2c\xcb\xb8\xd8\x02\x03\xed\x44\x41\xda\xaa\xf2\x40\x24\x2d\xa3\x30\xda\x84\x2f\x10\x4b\x83\xbb\xe7\x22\x03\xca\x19\x01\x19\x85\x99\x44\x0d\x42\x9a\x23\x0f\xac\xe0\x99\x21\x6c\xc2\xf1\x3b\xd7\x64\x0e\x08\xa9\x06\x6c\xd6\x32\x8e\x60\x54\xaf\x8e\xe0\x24\x2b\x10\x88\x99\xa1\x82\x9c\x72\x54\x90\x61\x81\x1e\x39\x04\x54\xa8\x65\xa5\x52\x34\x88\xd2\x0c\x0f\x72\x87\xc6\x69\xd8\xe1\xc9\xa7\x37\xc4\xbe\xb9\x09\x32\x32\x28\xab\x97\x82\xa7\x0b\x3c\xe9\x09\xfc\xe9\xea\x28\x59\xe0\x69\xc9\x35\xcd\x05\xa9\xd3\x5f\x43\x78\xbd\x01\x00\x28\x15\x96\x4c\xe1\x40\xf3\xad\x40\x35\x01\x56\x51\x3e\xf8\x59\x2a\x25\x8f\xdf\x58\x51\xe1\x10\x3e\x4d\xdd\x01\x26\xc2\x86\x98\xdf\x78\x0c\x33\x97\xc2\x8e\xa1\x36\x59\x2c\xcb\xc0\x31\xb0\x64\x93\x26\xac\x40\x32\x9b\x3d\x22\xdc\x81\xff\x6f\x50\xb2\x93\x39\xdd\xb1\x18\x36\xfb\x37\x52\x19\x04\x93\x9c\x56\x91\x67\x5e\xff\x5a\xbc\xc4\x1e\xc6\xb2\xac\x95\x3f\x31\xe1\x49\x33\x1c\x41\xce\x74\x3e\x2d\xb6\x52\x71\xca\xf7\x6e\x35\x9a\x1a\xc1\x11\xf9\x36\x27\xb7\xe4\xfe\x6f\xf9\xbc\x45\x0e\x7c\x41\x6a\xd3\xf6\x1b\x13\x6c\x8b\x0a\x66\xac\x64\x2f\xbc\xe0\x74\xaa\x73\xd4\xbd\x02\xb1\x1d\x14\x04\x07\xb1\x77\xde\x8b\x24\xad\xe7\x38\xea\x64\x8b\x74\xfb\x29\xba\x2e\xc1\xc0\x83\xdc\x0f\x22\x7b\xfe\x65\xf7\xb3\xe2\x07\x46\xf8\xcc\x28\x6f\xc2\x86\x1f\x22\x99\x7f\x68\x97\xe5\xbd\x57\x98\xb6\x2c\xbb\x37\x39\x28\xe0\x1e\x95\xbe\xb2\x6f\x3f\xc7\xa4\x1c\x42\x10\x1a\x0b\x70\xe6\x4d\xb3\x4c\xa1\xd6\x75\x89\x98\x2c\x9b\xf1\x28\xda\x1a\x7a\x39\xb9\xe0\x6c\xab\x32\x12\xb9\x62\x87\xcb\x77\xb0\xa7\x71\xd8\x3a\x6f\xb4\xfb\x62\x6f\x9d\x69\xd5\x07\xe5\x69\x7a\x18\xdb\x62\xa2\xd9\x01\x63\x8d\xb7\x9f\x03\x83\xba\x9a\x26\x17\x1b\xe4\xca\x01\x9a\xe4\x8d\xfa\x74\x75\x9c\x9f\xb1\x12\xee\x42\x42\x51\x6d\xd5\xec\xb8\xd6\x15\x76\xaa\x2c\x38\xf3\xb5\xa7\xa0\x3c\xde\xa3\xd8\xc8\xb7\xfb\xc1\x15\x6c\x87\x7d\xf6\x44\x6c\xac\xa3\x3a\x1f\x9c\xe7\xb7\xd1\x12\x2d\x31\x9a\xf4\x95\x7a\xc0\xec\xd9\xe6\xe8\xcc\xab\x9e\x96\x16\x12\xb1\x2d\xc8\xe4\xde\x9e\x0d\xb9\xef\xf6\x22\x83\x4a\xf8\x6b\x7d\x60\x55\xd1\xb9\xd4\x6e\xc5\x57\xd1\x0f\x5b\x7e\x9d\xa5\x1f\x22\x06\x9b\xe6\xb5\x70\xf5\xf1\xcd\x83\x22\xf9\x66\x14\xdd\x0f\xc6\x7e\xc3\xb8\x01\xb3\x0b\xc1\x49\x3d\xe6\xb9\x46\xe0\x1f\x16\x10\xbc\x2c\x8c\x67\x65\x45\xfe\x1b\x5e\x9f\xdd\x20\xf0\x4d\xe4\x5a\x92\xe6\x98\xee\x06\xc3\xcb\xcd\xfe\xf2\x6d\x72\x37\xaa\xff\x81\xe3\xbb\xcd\xd9\xfc\x39\x82\xf9\xd5\x39\xb6\xba\x27\xad\xa9\xa3\xde\xdd\x41\x79\x4e\x22\x31\x67\xbb\x87\xe7\x00\xe6\x9e\xf7\x33\x3e\x9b\x09\xb2\x1e\xc1\x04\xdf\x29\xc0\x42\xe3\xff\xd6\x3b\xc1\x8b\xff\xde\xb2\xa8\x13\x3c\xbb\xf6\x03\xac\xf3\xb5\xb3\x4f\x5c\xeb\x42\xd6\xf3\xce\x8c\x9b\x80\xee\x92\x78\x57\xff\xbd\x52\xd8\xeb\x95\xfb\x5c\xf7\x7b\xeb\x3c\x0e\x88\xa9\x2d\xd2\x0f\xb9\x18\x7c\x6e\xde\xd5\xcb\xfb\xdc\x39\xeb\xe8\xef\x12\xd7\xa1\xe5\x92\xfa\xf6\x4f\x00\x00\x00\xff\xff\xdc\x53\x80\xb2\x4c\x0d\x00\x00" +var _stakingcollectionCreate_new_tokenholder_acctCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x56\x5d\x8f\xe2\x36\x17\xbe\xe7\x57\x9c\x77\x2f\x56\x20\xb1\xe1\xbd\x46\x33\x23\x51\x86\x6e\x47\xd0\x9d\x51\xa1\x7b\x53\xf5\xc2\x93\x1c\x12\x97\x60\x47\xf6\x09\x2c\x1a\xf1\xdf\x2b\xc7\x4e\x62\x87\xa0\x61\x54\xa9\x52\xb9\x01\x7f\x9c\x73\x9e\xe7\x39\x1f\x98\xef\x0b\xa9\x08\xe6\xea\x54\x90\x1c\xb8\xd5\xcf\xb9\x3c\x6e\xe4\x0e\x05\x6c\x95\xdc\xc3\xa7\x66\xfd\xa9\xbe\xb1\x92\xf1\x0e\x93\x6a\x4f\xdb\x4b\xff\xff\xb1\x7a\x9e\x2f\x17\x8f\x9b\xe7\xe5\xe2\xdb\xec\xf1\xf1\xb7\xc5\x7a\xed\xfb\x5b\x13\xdb\x71\x91\xce\x65\x9e\x63\x4c\x5c\x8a\xda\x6c\xbd\x99\x2d\x9f\xbe\x7d\x9d\x3f\xaf\x56\x8b\xf9\xe6\xe9\xb9\x31\x1e\x4c\x26\xb0\xc9\xb8\x06\x52\x4c\x68\x66\x8d\x58\x9e\xcb\xa3\x06\xca\x10\x62\x29\x48\x19\x77\x0a\xe4\xb6\xda\xc9\x2b\x54\xc0\xe2\x58\x96\x82\x8c\x3d\x49\x88\x15\x32\x42\x60\x20\xf0\x18\xe0\x8e\xaa\xaf\x5f\x64\x9e\x18\x0f\xaf\x7f\x61\x4c\xc0\x44\x02\x9a\xa4\x42\xe0\x04\x5c\x38\x2b\xcf\x21\xcb\xb5\x04\x96\x24\x5c\xa4\xc0\x40\x5b\x52\x10\xb7\xac\x9c\x23\x92\x15\x22\xdf\xda\x98\x2f\x11\x0b\xe3\x77\xcf\x45\x02\x94\x31\x02\x32\x0c\x13\x89\x1a\x84\x34\x21\x0f\x2c\xe7\x89\x01\x6c\xcc\xf1\x07\xd7\x64\x02\xf8\x50\x3d\x34\x1b\x19\x5a\x30\xaa\x4f\xc7\x70\x92\x25\x08\xc4\xc4\x40\x41\x4e\x19\x2a\x48\x30\x47\xe7\xd9\x77\xa8\x50\xcb\x52\xc5\x68\x3c\x4a\xb3\x3c\xc8\x1d\x1a\xa5\x61\x87\x27\x97\x5e\xdf\xf7\x60\xe0\x65\x64\x58\x94\xaf\x39\x8f\x97\x78\xd2\x53\xf8\xc3\xd6\x51\xb4\xc4\xd3\x8a\x6b\x5a\x08\x52\xa7\x3f\x47\xf0\x36\x00\x00\x28\x14\x16\x4c\xe1\x50\xf3\x54\xa0\x9a\x02\x2b\x29\x1b\xfe\x24\x95\x92\xc7\xef\x2c\x2f\x71\x04\x9f\x67\x36\x80\xb1\xa8\x4c\xcc\x67\x32\x81\xb9\x4d\x61\x47\xd0\x2a\x59\x2c\x49\xc0\x22\xa8\xc0\x46\x8d\x59\x8e\x64\x2e\x3b\x8f\x70\x0f\xee\xd7\xb0\x60\x27\x13\xdd\xa2\x18\x35\xf7\xb7\x52\x19\x0f\x26\x39\x2d\x23\x87\xbc\xfe\xb4\xfe\xa2\x2a\x18\x4b\x92\x96\xfe\xd4\x98\x47\xcd\x72\x0c\x19\xd3\xd9\x2c\x4f\xa5\xe2\x94\xed\xed\x69\xb0\x35\x86\x23\xf2\x34\x23\x7b\x64\x7f\xb7\x78\xce\x81\x02\x5f\x91\xda\xb4\xfd\xca\x04\x4b\x51\xc1\x9c\x15\xec\x95\xe7\x9c\x4e\x75\x8e\xba\x2d\x10\xca\x41\x9e\xb1\x67\x7b\xef\xb4\x88\xe2\x7a\x8f\xa3\x8e\x52\xa4\xbb\xcf\x41\xbb\x78\x0b\xe7\xe4\x61\x18\xc8\xf3\xce\xed\x17\xc5\x0f\x8c\xf0\x85\x51\xd6\x98\x8d\xfe\x17\xd0\xfc\x5d\xdb\x2c\xef\x1d\xc3\xb8\x45\xd9\xed\x64\xaf\x80\x7b\x58\xba\xca\xbe\xfb\x12\x82\xb2\x1e\x3c\xd3\x90\x80\x15\x6f\x96\x24\x0a\xb5\xae\x4b\xc4\x64\xd9\xac\xc7\xc1\x55\x5f\xcb\xe9\x15\x65\x5b\x96\x01\xc9\x35\x3b\x5c\xef\xc1\x9e\xc1\x51\xd5\x79\xc3\xdd\x15\x7b\xab\x4c\xcb\xde\x2b\x4f\x33\xc3\x58\x8a\x91\x66\x07\x0c\x39\xde\x7d\xf1\x04\xea\x72\x9a\x5e\x1d\x90\x6b\xeb\x30\x4c\xde\xe0\x9a\xf0\x73\x56\xc0\xbd\x8f\x27\x28\x2d\x07\x2e\x88\x1d\x71\xad\x4b\xec\x54\x9c\x17\xff\xad\xa7\xb8\x9c\xf3\x27\xb1\x95\xe7\x87\xe1\x0d\xc8\x47\x7d\x52\x05\xd0\x2a\x75\x75\x36\xbc\xcc\x75\x43\x2c\x38\x62\x34\xed\x2b\x7b\x0f\xd9\x4b\x95\xaf\xae\x6e\x3d\xd3\xcd\xc7\x51\x4d\x23\x53\x06\x55\x68\xc8\xdc\xe0\x17\x09\x94\xc2\x75\xf8\x81\x95\x79\xa7\xbf\xed\x89\x2b\xa8\x77\xe5\x7f\x4f\xf1\x0f\x2a\x6a\x00\x6c\x9b\x77\xc3\xcd\xd1\x9b\xa7\x45\xf4\xdd\x10\x7a\x18\x4e\xdc\x85\x49\xe3\xac\x3a\x68\x03\xf5\x48\x67\x27\x82\x7b\x61\x80\xf7\xc4\x30\x8a\x15\x25\xb9\x3f\xf3\x3a\x74\xe3\x81\x6f\x03\xcd\xa2\x38\xc3\x78\x37\x1c\x5d\x9f\xfa\xd7\xdb\xca\xb6\x56\xff\x4b\xc7\x8d\x9d\x8b\xfd\x4b\x0f\xe6\x53\x67\xb8\xa2\x3d\x6d\x35\x1d\xf7\xde\xf6\x6a\x73\x1a\x90\xb9\xb8\x3d\xba\x74\x60\x1a\xbe\x1f\xf1\xc5\x4e\x5f\xff\xdb\x5a\xae\x7f\x9d\x01\x73\x8d\xff\x59\xed\x04\xcf\xff\x7d\xc9\x82\x39\xf0\x62\x67\x0f\xb0\xce\xdf\x5e\xf5\xd6\xad\x54\x48\x7a\x1e\x9c\xe1\x08\xd0\x5d\x10\x37\x4d\x62\xbf\x19\x6f\x20\xf6\x76\xe3\x3d\x3b\xfa\xce\x9d\x57\x02\x31\x95\x22\xfd\x23\x15\xbd\x3f\x9e\x0f\x0d\xf2\x3e\x75\x2e\xc6\xf9\x87\xc8\x75\x60\xd9\xa4\x9e\xff\x0e\x00\x00\xff\xff\x14\x44\x50\xdb\x55\x0d\x00\x00" func stakingcollectionCreate_new_tokenholder_acctCdcBytes() ([]byte, error) { return bindataRead( @@ -5110,7 +5110,7 @@ func stakingcollectionCreate_new_tokenholder_acctCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/create_new_tokenholder_acct.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0x91, 0x11, 0x6d, 0x6c, 0xa4, 0x94, 0x79, 0x1a, 0x2, 0xfb, 0x50, 0xc9, 0x2d, 0xe3, 0xe4, 0x16, 0x82, 0x88, 0xaa, 0xd5, 0x4e, 0x0, 0xfe, 0x8e, 0x6d, 0x38, 0x35, 0x51, 0x35, 0x7c, 0xe6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9a, 0x67, 0x57, 0x61, 0xea, 0xa3, 0x2e, 0xb, 0xcb, 0x97, 0xbc, 0xc2, 0x25, 0x34, 0x7b, 0x1a, 0xa, 0xe2, 0x4a, 0x84, 0xbf, 0x4c, 0x75, 0x8c, 0xbb, 0xb2, 0x74, 0x4c, 0x9, 0x2c, 0x8, 0xcb}} return a, nil } @@ -5194,7 +5194,7 @@ func stakingcollectionRegister_multiple_nodesCdc() (*asset, error) { return a, nil } -var _stakingcollectionRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4d\x4f\xdb\x40\x10\xbd\xfb\x57\x4c\x39\x20\x47\x42\x86\x43\x55\x55\x56\x53\x94\x06\xa8\x50\x10\x54\x04\x7a\xa9\x7a\x58\xec\xb1\xbd\xca\x7a\xc7\x1a\x4f\x1a\x5c\xc8\x7f\xaf\xd6\x9b\x2f\x13\xa7\x6d\x0e\xce\xee\xce\xcc\x9b\x37\xfb\x9e\xad\xcb\x8a\x58\x60\xcc\x4d\x25\x14\xac\x76\x57\x86\x16\x53\x51\x33\x6d\xf3\x31\x19\x83\x89\x68\xb2\x90\x31\x95\x70\xf6\x3c\x7d\x18\x4d\xae\x6f\xbf\x8e\xef\x6e\x6e\x2e\xc7\x0f\xd7\x77\xb7\xa3\x8b\x8b\xfb\xcb\xe9\x34\x08\x4e\x4f\x4f\xe1\x1e\x73\x5d\x0b\x72\x0d\x0a\x52\x34\x98\x2b\x21\x06\x6d\x41\x0a\x84\xda\x63\x42\xb2\x05\x65\xac\x69\xce\x09\xb6\xc5\x19\xb1\xcf\xab\x30\xd1\x99\xc6\x14\x2c\xa5\x08\xda\x66\xc4\xa5\x6a\xf3\x95\x4d\xdb\x14\x55\xd2\xdc\x0a\x50\x06\x42\x33\xb4\x35\x08\x41\x42\x65\xa9\x25\x08\x84\x95\xad\x55\x8b\x1f\xea\x34\x86\xa9\xb0\xb6\xf9\x49\x00\x3b\x3f\x26\x83\x31\x3c\x5e\x5b\xf9\xd8\x0d\x58\x94\x05\xb1\xa3\x39\x4a\x53\xc6\xba\xee\xaf\xdf\xa6\x4d\xb0\xe9\x4f\x59\x4d\x7b\x30\xee\x47\x88\xe1\xf1\x4a\x3f\x7f\x78\xdf\x8d\x55\xf3\x27\xa3\x93\x09\x36\x75\x0c\x3f\xbc\x38\xd1\x04\x9b\x1b\x5d\xcb\xa5\x15\x6e\x7e\x9e\x0f\xe0\xa5\xad\x68\x1f\x06\x65\xdd\x6e\x2b\xd8\x3d\x66\x31\x1c\xf7\x6a\x19\xed\x9d\x04\x2d\x4e\xc5\x58\x29\xc6\x50\x25\x89\xe7\xa6\xe6\x52\x84\x5f\x88\x99\x16\xdf\x95\x99\xe3\x00\x8e\x47\x3e\xb6\xee\xdf\x4e\x8a\x26\x8b\xfa\xfa\xc3\x10\x56\x50\x51\x2d\xc4\x2a\xc7\xe8\xa9\x05\xfb\xf4\xbf\xbc\x3e\x87\xce\x76\x71\xbf\x25\xf7\xd3\xa7\xbe\xcb\x37\x25\xc5\xa0\x73\xa1\xe7\xe7\x50\x29\xab\x93\xf0\x68\x4c\x73\xe3\x8c\x25\xe0\xa9\x00\xa3\x33\x11\xec\x61\x1d\x0d\x82\x0d\x84\xce\xda\x3b\x2e\x55\x52\x68\x8b\xab\x2b\x80\xe1\xe1\xc9\x23\x5e\xbd\x08\xb7\x94\x62\xd8\xa1\xe2\x2c\xa9\xd3\x3e\x3b\xba\xe7\x3f\xdd\xb8\x77\xf4\x57\x63\x76\xb6\x87\xfd\xb9\x5d\xf7\x7b\xd4\xff\xbf\xf1\xa8\x6a\x90\xe3\xb5\xc0\x03\xd8\x04\x5f\xba\xe3\x66\x3b\x6e\x86\xe1\x10\xac\x36\xf0\xfa\xba\x73\xf8\x2e\x32\x68\x73\x29\x5c\xf0\xec\x4d\xb5\x6f\xe4\x85\x53\xd6\xa9\x56\x31\xfd\xd2\x29\xc2\x6f\x64\x82\x99\xc3\x5c\x7f\x36\x56\xea\xac\x19\x1d\x75\x1d\xb0\xec\xec\x5c\xcd\x0c\x1b\xf7\x65\xda\x21\xd2\xd3\xbc\x2b\x79\xe4\x1a\x46\x2a\x4d\xc3\x4d\x55\xec\x70\xa2\xcd\xf6\x04\x0a\x55\x17\x23\x93\x13\x6b\x29\x4a\x1f\xed\x1c\x9d\xc0\x02\x75\x5e\x88\x0f\xf9\xf5\x21\xaa\x7e\xb5\x0c\x96\xc1\x9f\x00\x00\x00\xff\xff\x7b\xe0\x31\xd1\xa9\x05\x00\x00" +var _stakingcollectionRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x4f\xdb\x4e\x10\xbd\xfb\x53\xcc\x8f\x03\x72\x24\x64\x38\xfc\x54\x55\x56\x53\x94\x06\xa8\x50\x10\x54\x04\x7a\xa9\x7a\x58\xec\xb1\xbd\xca\x7a\xc7\x1a\x4f\x1a\xdc\xc2\x77\xaf\xd6\xeb\xfc\x31\x71\xda\xe6\x90\xec\xee\xcc\xbc\x79\x3b\xef\x65\x75\x59\x11\x0b\x4c\xb9\xa9\x84\x82\x6e\x77\x65\x68\x35\x17\xb5\xd0\x36\x9f\x92\x31\x98\x88\x26\x0b\x19\x53\x09\x67\xcf\xf3\x87\xc9\xec\xfa\xf6\xf3\xf4\xee\xe6\xe6\x72\xfa\x70\x7d\x77\x3b\xb9\xb8\xb8\xbf\x9c\xcf\x83\xe0\xf4\xf4\x14\xee\x31\xd7\xb5\x20\xd7\xa0\x20\x45\x83\xb9\x12\x62\xd0\x16\xa4\x40\xa8\x3d\x26\x24\x5b\x50\xc6\x9a\x96\x9c\x60\x5b\x9c\x11\xfb\xbc\x0a\x13\x9d\x69\x4c\xc1\x52\x8a\xa0\x6d\x46\x5c\xaa\x36\x5f\xd9\xb4\x4d\x51\x25\x2d\xad\x00\x65\x20\xb4\x40\x5b\x83\x10\x24\x54\x96\x5a\x82\x40\x58\xd9\x5a\xb5\xf8\xa1\x4e\x63\x98\x0b\x6b\x9b\x9f\x04\xb0\xf3\x61\x32\x18\xc3\xe3\xb5\x95\xf7\xfd\x80\x45\x59\x11\x3b\x9a\x93\x34\x65\xac\xeb\xe1\xfa\x6d\xda\x0c\x9b\xe1\x94\xee\xb6\x07\xe3\xfe\x0a\x31\x3c\x5e\xe9\xe7\x77\xff\xf7\x63\xd5\xf2\xc9\xe8\x64\x86\x4d\x1d\xc3\x37\x2f\x4e\x34\xc3\xe6\x46\xd7\x72\x69\x85\x9b\xef\xe7\x23\xf8\x15\xb4\x25\x06\x65\xdd\x6a\x2b\xd6\x3d\x66\x31\x1c\x0f\xea\x18\xed\x9d\x78\x9c\x8a\xb1\x52\x8c\xa1\x4a\x12\xcf\x4b\x2d\xa5\x08\x3f\x11\x33\xad\xbe\x2a\xb3\xc4\x11\x1c\x4f\x7c\xcc\xf5\xde\xdc\x12\x4d\x16\x0d\xf5\x87\x31\x74\x50\x51\x2d\xc4\x2a\xc7\xe8\xa9\x05\xfb\xf0\xaf\xbc\x3e\x86\xce\x72\xf1\xb0\x1d\xf7\xd3\xe7\xbe\xcb\x17\x25\xc5\xa8\x37\xcc\xf3\x73\xa8\x94\xd5\x49\x78\x34\xa5\xa5\x71\xa6\x12\xf0\x54\x80\xd1\x19\x08\xf6\xb0\x8e\x46\xc1\x06\x42\x67\xed\x8c\x4b\x95\x14\xda\x62\x37\x02\x18\x1f\xbe\x79\xc4\xdd\x9f\xe0\x96\x52\x0c\x7b\x54\x9c\x1d\x75\x3a\x64\x45\xf7\xfd\x57\x27\xee\x1d\xfd\xd1\x94\xbd\xed\x61\x6f\x6e\xd7\xc3\xfe\xf4\xbf\x6f\xfc\xa9\x1a\xe4\x78\x2d\xf0\x26\xb4\x6b\x8c\x6e\x74\x5b\x27\xc3\x78\x0c\x56\x1b\x78\x79\xd9\x39\xfc\x2f\x32\x68\x73\x29\x5c\xf0\xec\x4d\xb5\x6f\xe4\x85\x53\xd6\xa9\x56\x31\xfd\xd0\x29\xc2\x4f\x64\x82\x85\xc3\x5c\x3f\x19\x9d\x3a\x6b\x46\x47\x7d\x07\xbc\xf6\x76\xae\x66\x81\x8d\x7b\x95\x76\x88\x0c\x34\xef\x4b\x1e\xb9\x86\x91\x4a\xd3\x70\x53\x15\x3b\x9c\x68\xb3\x3d\x81\x42\xd5\xc5\xc4\xe4\xc4\x5a\x8a\xd2\x47\x7b\x47\x27\xb0\x42\x9d\x17\xe2\x43\x7e\x7d\x88\xaa\x5f\xbd\x06\xaf\xc1\xef\x00\x00\x00\xff\xff\xbc\xfd\xa7\x58\xa5\x05\x00\x00" func stakingcollectionRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5210,7 +5210,7 @@ func stakingcollectionRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa5, 0x67, 0x34, 0x34, 0x86, 0xf6, 0x1c, 0x21, 0xb3, 0x55, 0x47, 0x82, 0xcd, 0x43, 0x84, 0xd4, 0x8c, 0xa8, 0xb7, 0xd2, 0x9, 0xcc, 0xc, 0x22, 0x3, 0x72, 0x8b, 0x34, 0xbc, 0xa9, 0x4b, 0x9d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0xfc, 0x6c, 0xa0, 0x8b, 0x13, 0x72, 0x14, 0x39, 0xde, 0x16, 0x2d, 0x5d, 0x96, 0xa1, 0x45, 0x7e, 0xfc, 0x37, 0x9, 0xcb, 0x40, 0x0, 0xc4, 0xd4, 0xd, 0x53, 0x8d, 0x54, 0xf5, 0xfa, 0xbd}} return a, nil } diff --git a/lib/go/templates/manifest.mainnet.json b/lib/go/templates/manifest.mainnet.json index b734805f8..33ede1d43 100755 --- a/lib/go/templates/manifest.mainnet.json +++ b/lib/go/templates/manifest.mainnet.json @@ -499,7 +499,7 @@ { "id": "SCO.03", "name": "Register Node", - "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n publicKeys: [Crypto.KeyListEntry]?) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account) \n {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys! {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n publicKeys: [Crypto.KeyListEntry]?) {\n\n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account\n ) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys! {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -619,7 +619,7 @@ } ], "network": "mainnet", - "hash": "003be62cb2b3b95740b1e6bb471708f39563bfea8847d53d1626802357bcd7e5" + "hash": "a670c9764138e72b36298137b40dc3084751094f56fb7315acb1ed50afdf3581" }, { "id": "SCO.04", diff --git a/lib/go/templates/manifest.testnet.json b/lib/go/templates/manifest.testnet.json index 8c2f56451..a3ed5f16a 100755 --- a/lib/go/templates/manifest.testnet.json +++ b/lib/go/templates/manifest.testnet.json @@ -499,7 +499,7 @@ { "id": "SCO.03", "name": "Register Node", - "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n publicKeys: [Crypto.KeyListEntry]?) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account) \n {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys! {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n publicKeys: [Crypto.KeyListEntry]?) {\n\n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account\n ) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys! {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -619,7 +619,7 @@ } ], "network": "testnet", - "hash": "71867c5a2f2986896c969d6ec7a3f1cb61cf1fd911dfe6bbfae14f59f351d536" + "hash": "a16e0fa9cb0afbd8246a16b9e0fb50626bdc799767ae8a572175f5fd2168d939" }, { "id": "SCO.04", diff --git a/transactions/lockedTokens/user/get_total_balance.cdc b/transactions/lockedTokens/user/get_total_balance.cdc index 3e30d7711..e6302b629 100644 --- a/transactions/lockedTokens/user/get_total_balance.cdc +++ b/transactions/lockedTokens/user/get_total_balance.cdc @@ -53,9 +53,9 @@ access(all) fun main(address: Address): UFix64 { // Get the locked account public capability let optionalLockedAccountInfoRef = account - .capabilities.get<&LockedTokens.TokenHolder>( + .capabilities.borrow<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - )! + ) if let lockedAccountInfoRef = optionalLockedAccountInfoRef { // Add the locked account balance From b373ce85f4428da17331c82809865935b333800e Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 22 Nov 2023 14:49:03 -0600 Subject: [PATCH 056/160] make sure epoch contracts work with capability controllers and entitlements --- contracts/FlowFees.cdc | 4 +- contracts/epochs/FlowEpoch.cdc | 133 +++++- lib/go/contracts/contracts.go | 28 +- lib/go/contracts/go.mod | 6 +- lib/go/contracts/go.sum | 9 + lib/go/templates/internal/assets/assets.go | 439 ++++++++++++------ lib/go/templates/manifest.mainnet.json | 68 +-- lib/go/templates/manifest.testnet.json | 68 +-- lib/go/test/flow_epoch_test.go | 76 ++- .../flowToken/scripts/get_balance.cdc | 2 +- .../delegation/delegator_add_capability.cdc | 2 +- .../delegation/register_delegator.cdc | 4 +- .../node/node_add_capability.cdc | 2 +- .../admin/admin_create_shared_accounts.cdc | 39 +- .../admin/admin_deploy_contract.cdc | 2 +- .../admin/admin_remove_delegator.cdc | 2 +- .../admin/get_unlocking_bad_accounts.cdc | 17 - .../unlock_tokens_for_multiple_accounts.cdc | 2 +- .../delegator/delegate_new_tokens.cdc | 6 +- .../delegator/delegate_rewarded_tokens.cdc | 3 +- .../delegator/delegate_unstaked_tokens.cdc | 3 +- .../delegator/register_delegator.cdc | 6 +- .../delegator/request_unstaking.cdc | 3 +- .../delegator/withdraw_rewarded_tokens.cdc | 5 +- .../withdraw_rewarded_tokens_locked.cdc | 3 +- .../delegator/withdraw_unstaked_tokens.cdc | 3 +- .../lockedTokens/staker/register_node.cdc | 6 +- .../lockedTokens/staker/request_unstaking.cdc | 5 +- .../lockedTokens/staker/stake_new_tokens.cdc | 7 +- .../staker/stake_rewarded_tokens.cdc | 5 +- .../staker/stake_unstaked_tokens.cdc | 5 +- .../lockedTokens/staker/unstake_all.cdc | 5 +- .../staker/update_networking_address.cdc | 5 +- .../staker/withdraw_rewarded_tokens.cdc | 5 +- .../withdraw_rewarded_tokens_locked.cdc | 5 +- .../staker/withdraw_unstaked_tokens.cdc | 5 +- .../lockedTokens/user/deposit_tokens.cdc | 2 +- .../lockedTokens/user/get_total_balance.cdc | 2 +- .../lockedTokens/user/withdraw_tokens.cdc | 8 +- 39 files changed, 622 insertions(+), 378 deletions(-) delete mode 100644 transactions/lockedTokens/admin/get_unlocking_bad_accounts.cdc diff --git a/contracts/FlowFees.cdc b/contracts/FlowFees.cdc index a4f73354e..ed18b37ef 100644 --- a/contracts/FlowFees.cdc +++ b/contracts/FlowFees.cdc @@ -182,11 +182,11 @@ access(all) contract FlowFees { return totalFees } - init(adminAccount: auth(SaveValue) &Account) { + init() { // Create a new FlowToken Vault and save it in storage self.vault <- FlowToken.createEmptyVault() as! @FlowToken.Vault let admin <- create Administrator() - adminAccount.storage.save(<-admin, to: /storage/flowFeesAdmin) + self.account.storage.save(<-admin, to: /storage/flowFeesAdmin) } } \ No newline at end of file diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 5c930ee2c..fc58381d6 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -57,6 +57,33 @@ access(all) contract FlowEpoch { access(all) case Access } + /// The Epoch Start service event is emitted when the contract transitions + /// to a new epoch in the staking auction phase. + access(all) event EpochStart ( + + /// The counter for the current epoch that is beginning + counter: UInt64, + + /// The first view (inclusive) of the current epoch. + firstView: UInt64, + + /// The last view (inclusive) of the current epoch's staking auction. + stakingAuctionEndView: UInt64, + + /// The last view (inclusive) of the current epoch. + finalView: UInt64, + + /// Total FLOW staked by all nodes and delegators for the current epoch. + totalStaked: UFix64, + + /// Total supply of all FLOW for the current epoch + /// Includes the rewards that will be paid for the previous epoch + totalFlowSupply: UFix64, + + /// The total rewards that will be paid out at the end of the current epoch. + totalRewards: UFix64, + ) + /// The Epoch Setup service event is emitted when we transition to the Epoch Setup /// phase. It contains the finalized identity table for the upcoming epoch. access(all) event EpochSetup( @@ -92,7 +119,12 @@ access(all) contract FlowEpoch { /// than the given deadline, it can safely transition to the next phase. DKGPhase1FinalView: UInt64, DKGPhase2FinalView: UInt64, - DKGPhase3FinalView: UInt64 + DKGPhase3FinalView: UInt64, + + /// The target duration for the upcoming epoch, in seconds + targetDuration: UInt64, + /// The target end time for the upcoming epoch, specified in second-precision Unix time + targetEndTime: UInt64 ) /// The EpochCommit service event is emitted when we transition from the Epoch @@ -246,6 +278,34 @@ access(all) contract FlowEpoch { } } + /// Configuration for epoch timing. + /// Each epoch is assigned a target end time when it is setup (within the EpochSetup event). + /// The configuration defines a reference epoch counter and timestamp, which defines + /// all future target end times. If `targetEpochCounter` is an upcoming epoch, then + /// its target end time is given by: + /// + /// targetEndTime = refTimestamp + duration * (targetEpochCounter-refCounter) + /// + access(all) struct EpochTimingConfig { + /// The duration of each epoch, in seconds + access(all) let duration: UInt64 + /// The counter of the reference epoch + access(all) let refCounter: UInt64 + /// The end time of the reference epoch, specified in second-precision Unix time + access(all) let refTimestamp: UInt64 + + /// Compute target switchover time based on offset from reference counter/switchover. + access(all) fun getTargetEndTimeForEpoch(_ targetEpochCounter: UInt64): UInt64 { + return self.refTimestamp + self.duration * (targetEpochCounter-self.refCounter) + } + + init(duration: UInt64, refCounter: UInt64, refTimestamp: UInt64) { + self.duration = duration + self.refCounter = refCounter + self.refTimestamp = refTimestamp + } + } + /// Holds the `FlowEpoch.Config` struct with the configurable metadata access(contract) let configurableMetadata: Config @@ -339,6 +399,14 @@ access(all) contract FlowEpoch { FlowEpoch.configurableMetadata.setNumViewsInDKGPhase(newPhaseViews) } + access(all) fun updateEpochTimingConfig(_ newConfig: EpochTimingConfig) { + pre { + FlowEpoch.currentEpochCounter >= newConfig.refCounter: "Reference epoch must be before next epoch" + } + FlowEpoch.account.storage.load(from: /storage/flowEpochTimingConfig) + FlowEpoch.account.storage.save(newConfig, to: /storage/flowEpochTimingConfig) + } + access(all) fun updateNumCollectorClusters(_ newNumClusters: UInt16) { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only update fields during the staking auction" @@ -443,13 +511,13 @@ access(all) contract FlowEpoch { } case EpochPhase.EPOCHSETUP: if FlowClusterQC.votingCompleted() && (FlowDKG.dkgCompleted() != nil) { + self.calculateAndSetRewards() self.startEpochCommit() } case EpochPhase.EPOCHCOMMIT: let currentBlock = getCurrentBlock() let currentEpochMetadata = FlowEpoch.getEpochMetadata(FlowEpoch.currentEpochCounter)! if currentBlock.view >= currentEpochMetadata.endView { - self.calculateAndSetRewards() self.endEpoch() } default: @@ -464,9 +532,9 @@ access(all) contract FlowEpoch { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only end staking auction during the staking auction" } - FlowEpoch.endStakingAuction() + let proposedNodeIDs = FlowEpoch.endStakingAuction() - FlowEpoch.startEpochSetup(randomSource: unsafeRandom().toString()) + FlowEpoch.startEpochSetup(proposedNodeIDs: proposedNodeIDs, randomSource: unsafeRandom().toString()) } /// Calls `FlowEpoch` functions to end the Epoch Setup phase @@ -551,7 +619,7 @@ access(all) contract FlowEpoch { if let previousEpochMetadata = self.getEpochMetadata(self.currentEpochCounter - 1) { if !previousEpochMetadata.rewardsPaid { let summary = FlowIDTableStaking.EpochRewardsSummary(totalRewards: previousEpochMetadata.totalRewards, breakdown: previousEpochMetadata.rewardAmounts) - self.borrowStakingAdmin().payRewards(summary) + self.borrowStakingAdmin().payRewards(forEpochCounter: previousEpochMetadata.counter, rewardsSummary: summary) previousEpochMetadata.setRewardsPaid(true) self.saveEpochMetadata(previousEpochMetadata) } @@ -570,25 +638,35 @@ access(all) contract FlowEpoch { self.borrowDKGAdmin().endDKG() } - self.borrowStakingAdmin().moveTokens() + self.borrowStakingAdmin().moveTokens(newEpochCounter: self.proposedEpochCounter()) self.currentEpochPhase = EpochPhase.STAKINGAUCTION // Update the epoch counters self.currentEpochCounter = self.proposedEpochCounter() + + let previousEpochMetadata = self.getEpochMetadata(self.currentEpochCounter - 1)! + let newEpochMetadata = self.getEpochMetadata(self.currentEpochCounter)! + + emit EpochStart ( + counter: self.currentEpochCounter, + firstView: newEpochMetadata.startView, + stakingAuctionEndView: newEpochMetadata.stakingEndView, + finalView: newEpochMetadata.endView, + totalStaked: FlowIDTableStaking.getTotalStaked(), + totalFlowSupply: FlowToken.totalSupply + previousEpochMetadata.totalRewards, + totalRewards: FlowIDTableStaking.getEpochTokenPayout(), + ) } /// Ends the staking Auction with all the proposed nodes approved - access(account) fun endStakingAuction() { - self.borrowStakingAdmin().endStakingAuction() + access(account) fun endStakingAuction(): [String] { + return self.borrowStakingAdmin().endStakingAuction() } /// Starts the EpochSetup phase and emits the epoch setup event /// This has to be called directly after `endStakingAuction` - access(account) fun startEpochSetup(randomSource: String) { - - // Get all the nodes that are proposed for the next epoch - let ids = FlowIDTableStaking.getProposedNodeIDs() + access(account) fun startEpochSetup(proposedNodeIDs: [String], randomSource: String) { // Holds the node Information of all the approved nodes var nodeInfoArray: [FlowIDTableStaking.NodeInfo] = [] @@ -602,7 +680,7 @@ access(all) contract FlowEpoch { // Get NodeInfo for all the nodes // Get all the collector and consensus nodes // to initialize the QC and DKG - for id in ids { + for id in proposedNodeIDs { let nodeInfo = FlowIDTableStaking.NodeInfo(nodeID: id) nodeInfoArray.append(nodeInfo) @@ -627,7 +705,7 @@ access(all) contract FlowEpoch { let currentEpochMetadata = self.getEpochMetadata(self.currentEpochCounter)! - // Initialze the metadata for the next epoch + // Initialize the metadata for the next epoch // QC and DKG metadata will be filled in later let proposedEpochMetadata = EpochMetadata(counter: self.proposedEpochCounter(), seed: randomSource, @@ -639,6 +717,11 @@ access(all) contract FlowEpoch { clusterQCs: [], dkgKeys: []) + // Compute the target end time for the next epoch + let timingConfig = self.getEpochTimingConfig() + let proposedTargetDuration = timingConfig.duration + let proposedTargetEndTime = timingConfig.getTargetEndTimeForEpoch(self.proposedEpochCounter()) + self.saveEpochMetadata(proposedEpochMetadata) self.currentEpochPhase = EpochPhase.EPOCHSETUP @@ -649,9 +732,11 @@ access(all) contract FlowEpoch { finalView: proposedEpochMetadata.endView, collectorClusters: collectorClusters, randomSource: randomSource, - DKGPhase1FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + self.configurableMetadata.numViewsInDKGPhase - 1, - DKGPhase2FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + (2 * self.configurableMetadata.numViewsInDKGPhase) - 1, - DKGPhase3FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + (3 * self.configurableMetadata.numViewsInDKGPhase) - 1) + DKGPhase1FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + self.configurableMetadata.numViewsInDKGPhase - 1 as UInt64, + DKGPhase2FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + (2 as UInt64 * self.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, + DKGPhase3FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + (3 as UInt64 * self.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, + targetDuration: proposedTargetDuration, + targetEndTime: proposedTargetEndTime) } /// Ends the EpochSetup phase when the QC and DKG are completed @@ -839,6 +924,13 @@ access(all) contract FlowEpoch { return self.configurableMetadata } + /// Returns the config for epoch timing, which can be configured by the admin. + /// Conceptually, this should be part of `Config`, however it was added later in an + /// upgrade which requires new fields be specified separately from existing structs. + access(all) fun getEpochTimingConfig(): EpochTimingConfig { + return self.account.storage.copy(from: /storage/flowEpochTimingConfig)! + } + /// The proposed Epoch counter is always the current counter plus 1 access(all) view fun proposedEpochCounter(): UInt64 { return self.currentEpochCounter + 1 as UInt64 @@ -881,6 +973,13 @@ access(all) contract FlowEpoch { numCollectorClusters: numCollectorClusters, FLOWsupplyIncreasePercentage: FLOWsupplyIncreasePercentage) + // Set a reasonable default for the epoch timing config targeting 1 block per second + let defaultEpochTimingConfig = EpochTimingConfig( + duration: numViewsInEpoch, + refCounter: currentEpochCounter, + refTimestamp: UInt64(getCurrentBlock().timestamp)+numViewsInEpoch) + FlowEpoch.account.storage.save(defaultEpochTimingConfig, to: /storage/flowEpochTimingConfig) + self.currentEpochCounter = currentEpochCounter self.currentEpochPhase = EpochPhase.STAKINGAUCTION self.adminStoragePath = /storage/flowEpochAdmin diff --git a/lib/go/contracts/contracts.go b/lib/go/contracts/contracts.go index f43ea7fd8..9c98690e1 100644 --- a/lib/go/contracts/contracts.go +++ b/lib/go/contracts/contracts.go @@ -173,6 +173,20 @@ func FlowFees(fungibleTokenAddress, flowTokenAddress, storageFees string) []byte withHexPrefix(storageFees), ) + // Replace the init method storage operations + code = strings.ReplaceAll( + code, + "self.account.storage.save(<-admin, to: /storage/flowFeesAdmin)", + "adminAccount.storage.save(<-admin, to: /storage/flowFeesAdmin)", + ) + + // Replace the init method admin account parameter + code = strings.ReplaceAll( + code, + "init()", + "init(adminAccount: auth(SaveValue) &Account)", + ) + return []byte(code) } @@ -386,8 +400,6 @@ func TESTFlowStakingCollection( code = strings.ReplaceAll(code, placeholderDKGAddr, withHexPrefix(dkgAddress)) code = strings.ReplaceAll(code, placeholderEpochAddr, withHexPrefix(epochAddress)) - code = strings.ReplaceAll(code, "access(self)", "pub") - return []byte(code) } @@ -412,17 +424,5 @@ func TestFlowFees(fungibleTokenAddress, flowTokenAddress, storageFeesAddress str withHexPrefix(storageFeesAddress), ) - code = strings.ReplaceAll( - code, - "init(adminAccount: &Account)", - "init()", - ) - - code = strings.ReplaceAll( - code, - "adminAccount.save(<-admin, to: /storage/flowFeesAdmin)", - "self.account.storage.save(<-admin, to: /storage/flowFeesAdmin)", - ) - return []byte(code) } diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 114c5bd7e..441857e28 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -4,9 +4,9 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20230921055403-cf7a05c90c20 + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231121165523-9e68e5a6ce6a github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2 - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230921055127-6493dc1ba948 + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20231120214141-b11e79f1bb27 github.com/stretchr/testify v1.8.4 ) @@ -45,4 +45,4 @@ require ( gopkg.in/yaml.v3 v3.0.1 // indirect ) -replace github.com/onflow/flow-ft/lib/go/contracts => ../../../../flow-ft/lib/go/contracts +// replace github.com/onflow/flow-ft/lib/go/contracts => ../../../../flow-ft/lib/go/contracts diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 414e77648..c6f62bb12 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -877,17 +877,26 @@ github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLA github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/olekukonko/tablewriter v0.0.2-0.20190409134802-7e037d187b0c/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= +github.com/onflow/atree v0.5.0/go.mod h1:gBHU0M05qCbv9NN0kijLWMgC47gHVNBIp4KmsVFi0tc= +github.com/onflow/atree v0.6.0/go.mod h1:gBHU0M05qCbv9NN0kijLWMgC47gHVNBIp4KmsVFi0tc= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f h1:Z8/PgTqOgOg02MTRpTBYO2k16FE6z4wEOtaC2WBR9Xo= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f/go.mod h1:xvP61FoOs95K7IYdIYRnNcYQGf4nbF/uuJ0tHf4DRuM= +github.com/onflow/cadence v0.39.13-stable-cadence/go.mod h1:SxT8/IEkS1drFj2ofUEK9S6KyJ5GQbrm0LX4EFCp/7Q= github.com/onflow/cadence v1.0.0-preview.1 h1:Y/q/43aDc93/1Atsxx3+e2V/dZiQuF1TqkXEVboA5pY= github.com/onflow/cadence v1.0.0-preview.1/go.mod h1:Q5Up9Kt+J6zuAFmgrsiKz6t//E/hR5/iuVjH62pdztk= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231121165523-9e68e5a6ce6a h1:pDUUKxDmHpO7P7lRUu2Niq0VbCcKU9IWEHclbTI37m0= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231121165523-9e68e5a6ce6a/go.mod h1:uugR8U8Rlk2Xbn1ne7WWkPIcLReOyyXeQ/6tBg2Lsu8= +github.com/onflow/flow-go-sdk v0.41.7-stable-cadence/go.mod h1:ejVN+bqcsTHVvRpDDJDoBNdmcxUfFMW4IvdTbMeQ/hQ= github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2 h1:vUVO6m85BiT8c50Oc8YGc3CU+sGqiKW9FZbmiRph2dU= github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2/go.mod h1:mbLrR3MkYbi9LH3yasDj1jrR4QTR8vjRLVFCm4jMHn0= github.com/onflow/flow-go/crypto v0.24.7 h1:RCLuB83At4z5wkAyUCF7MYEnPoIIOHghJaODuJyEoW0= github.com/onflow/flow-go/crypto v0.24.7/go.mod h1:fqCzkIBBMRRkciVrvW21rECKq1oD7Q6u+bCI78lfNX0= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230921055127-6493dc1ba948 h1:eQ+0hagtIcxzTy+6ONrxwABCjJQCQmBFfIU5qatUg0o= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230921055127-6493dc1ba948/go.mod h1:cWMAsK1grBHKPIKxYVUv2rX+Nz0Ttq+PEQz4OjqCmpU= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20231120214141-b11e79f1bb27 h1:qm4ErSz3B3lsdVy/usLYpLvpzibbG6xQTkxAIcmYuDs= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20231120214141-b11e79f1bb27/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= +github.com/onflow/sdks v0.5.0/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index d0b32a3af..572f4f3c3 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -34,6 +34,7 @@ // dkg/scripts/get_node_has_submitted.cdc (124B) // dkg/scripts/get_node_is_claimed.cdc (226B) // dkg/scripts/get_node_is_registered.cdc (131B) +// dkg/scripts/get_submissions_count.cdc (114B) // dkg/scripts/get_thresholds.cdc (448B) // dkg/scripts/get_whiteboard_messages.cdc (123B) // dkg/send_final_submission.cdc (432B) @@ -49,6 +50,7 @@ // epoch/admin/update_clusters.cdc (361B) // epoch/admin/update_dkg_phase_views.cdc (351B) // epoch/admin/update_epoch_config.cdc (1.778kB) +// epoch/admin/update_epoch_timing_config.cdc (483B) // epoch/admin/update_epoch_views.cdc (352B) // epoch/admin/update_reward.cdc (364B) // epoch/admin/update_staking_views.cdc (354B) @@ -62,41 +64,44 @@ // epoch/scripts/get_epoch_counter.cdc (113B) // epoch/scripts/get_epoch_metadata.cdc (162B) // epoch/scripts/get_epoch_phase.cdc (119B) +// epoch/scripts/get_epoch_timing_config.cdc (137B) // epoch/scripts/get_proposed_counter.cdc (116B) // epoch/scripts/get_randomize.cdc (128B) +// epoch/scripts/get_target_end_time_for_epoch.cdc (266B) // flowToken/burn_tokens.cdc (1.135kB) // flowToken/create_forwarder.cdc (2.027kB) // flowToken/mint_tokens.cdc (1.019kB) -// flowToken/scripts/get_balance.cdc (435B) +// flowToken/scripts/get_balance.cdc (412B) // flowToken/scripts/get_supply.cdc (208B) // flowToken/setup_account.cdc (1.476kB) // flowToken/transfer_tokens.cdc (1.331kB) -// idTableStaking/admin/add_approved_and_limits.cdc (1.627kB) +// idTableStaking/admin/add_approved_and_limits.cdc (1.635kB) // idTableStaking/admin/add_approved_nodes.cdc (1.055kB) -// idTableStaking/admin/capability_end_epoch.cdc (1.32kB) +// idTableStaking/admin/capability_end_epoch.cdc (1.374kB) // idTableStaking/admin/change_candidate_limits.cdc (727B) // idTableStaking/admin/change_cut.cdc (665B) // idTableStaking/admin/change_del_minimums.cdc (690B) // idTableStaking/admin/change_minimums.cdc (818B) // idTableStaking/admin/change_payout.cdc (625B) -// idTableStaking/admin/end_epoch.cdc (895B) -// idTableStaking/admin/end_epoch_change_payout.cdc (961B) +// idTableStaking/admin/end_epoch.cdc (913B) +// idTableStaking/admin/end_epoch_change_payout.cdc (979B) // idTableStaking/admin/end_staking.cdc (698B) -// idTableStaking/admin/move_tokens.cdc (580B) -// idTableStaking/admin/pay_rewards.cdc (650B) +// idTableStaking/admin/move_tokens.cdc (598B) +// idTableStaking/admin/pay_rewards.cdc (686B) // idTableStaking/admin/remove_approved_nodes.cdc (1.011kB) -// idTableStaking/admin/remove_invalid_nodes.cdc (675B) +// idTableStaking/admin/remove_invalid_nodes.cdc (697B) // idTableStaking/admin/remove_node.cdc (629B) // idTableStaking/admin/scale_rewards_test.cdc (713B) // idTableStaking/admin/set_approved_nodes.cdc (628B) // idTableStaking/admin/set_claimed.cdc (633B) // idTableStaking/admin/set_node_weight.cdc (650B) // idTableStaking/admin/set_non_operational.cdc (785B) -// idTableStaking/admin/set_slot_limits.cdc (1.335kB) +// idTableStaking/admin/set_open_access_node_slots.cdc (916B) +// idTableStaking/admin/set_slot_limits.cdc (1.572kB) // idTableStaking/admin/start_staking.cdc (597B) // idTableStaking/admin/transfer_admin.cdc (658B) // idTableStaking/admin/transfer_fees_admin.cdc (451B) -// idTableStaking/admin/transfer_minter_deploy.cdc (1.34kB) +// idTableStaking/admin/transfer_minter_deploy.cdc (1.344kB) // idTableStaking/admin/upgrade_set_claimed.cdc (691B) // idTableStaking/admin/upgrade_staking.cdc (159B) // idTableStaking/delegation/del_request_unstaking.cdc (670B) @@ -105,7 +110,7 @@ // idTableStaking/delegation/del_stake_unstaked.cdc (676B) // idTableStaking/delegation/del_withdraw_reward_tokens.cdc (952B) // idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc (952B) -// idTableStaking/delegation/delegator_add_capability.cdc (878B) +// idTableStaking/delegation/delegator_add_capability.cdc (892B) // idTableStaking/delegation/get_delegator_committed.cdc (321B) // idTableStaking/delegation/get_delegator_info.cdc (299B) // idTableStaking/delegation/get_delegator_info_from_address.cdc (505B) @@ -115,9 +120,9 @@ // idTableStaking/delegation/get_delegator_unstaked.cdc (319B) // idTableStaking/delegation/get_delegator_unstaking.cdc (321B) // idTableStaking/delegation/get_delegator_unstaking_request.cdc (330B) -// idTableStaking/delegation/register_delegator.cdc (977B) +// idTableStaking/delegation/register_delegator.cdc (985B) // idTableStaking/delegation/register_many_delegators.cdc (649B) -// idTableStaking/node/node_add_capability.cdc (886B) +// idTableStaking/node/node_add_capability.cdc (900B) // idTableStaking/node/register_many_nodes.cdc (1.175kB) // idTableStaking/node/register_node.cdc (1.659kB) // idTableStaking/node/request_unstake.cdc (644B) @@ -162,10 +167,10 @@ // idTableStaking/scripts/get_total_staked_by_type.cdc (256B) // idTableStaking/scripts/get_weekly_payout.cdc (202B) // inspect_field.cdc (131B) -// lockedTokens/admin/admin_create_shared_accounts.cdc (4.156kB) -// lockedTokens/admin/admin_deploy_contract.cdc (454B) +// lockedTokens/admin/admin_create_shared_accounts.cdc (3.914kB) +// lockedTokens/admin/admin_deploy_contract.cdc (463B) // lockedTokens/admin/admin_deposit_account_creator.cdc (818B) -// lockedTokens/admin/admin_remove_delegator.cdc (471B) +// lockedTokens/admin/admin_remove_delegator.cdc (469B) // lockedTokens/admin/check_main_registration.cdc (955B) // lockedTokens/admin/check_shared_registration.cdc (639B) // lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.385kB) @@ -174,39 +179,38 @@ // lockedTokens/admin/custody_create_shared_accounts.cdc (3.654kB) // lockedTokens/admin/custody_setup_account_creator.cdc (800B) // lockedTokens/admin/deposit_locked_tokens.cdc (1.688kB) -// lockedTokens/admin/get_unlocking_bad_accounts.cdc (477B) // lockedTokens/admin/unlock_tokens.cdc (599B) -// lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc (2.87kB) -// lockedTokens/delegator/delegate_new_tokens.cdc (1.232kB) -// lockedTokens/delegator/delegate_rewarded_tokens.cdc (550B) -// lockedTokens/delegator/delegate_unstaked_tokens.cdc (542B) +// lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc (2.884kB) +// lockedTokens/delegator/delegate_new_tokens.cdc (1.391kB) +// lockedTokens/delegator/delegate_rewarded_tokens.cdc (655B) +// lockedTokens/delegator/delegate_unstaked_tokens.cdc (647B) // lockedTokens/delegator/get_delegator_id.cdc (398B) // lockedTokens/delegator/get_delegator_info.cdc (1.464kB) // lockedTokens/delegator/get_delegator_node_id.cdc (402B) -// lockedTokens/delegator/register_delegator.cdc (1.604kB) -// lockedTokens/delegator/request_unstaking.cdc (544B) -// lockedTokens/delegator/withdraw_rewarded_tokens.cdc (828B) -// lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc (550B) -// lockedTokens/delegator/withdraw_unstaked_tokens.cdc (550B) +// lockedTokens/delegator/register_delegator.cdc (1.763kB) +// lockedTokens/delegator/request_unstaking.cdc (649B) +// lockedTokens/delegator/withdraw_rewarded_tokens.cdc (996B) +// lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc (655B) +// lockedTokens/delegator/withdraw_unstaked_tokens.cdc (655B) // lockedTokens/staker/get_node_id.cdc (393B) // lockedTokens/staker/get_staker_info.cdc (1.171kB) -// lockedTokens/staker/register_node.cdc (1.584kB) -// lockedTokens/staker/request_unstaking.cdc (545B) -// lockedTokens/staker/stake_new_tokens.cdc (1.284kB) -// lockedTokens/staker/stake_rewarded_tokens.cdc (548B) -// lockedTokens/staker/stake_unstaked_tokens.cdc (548B) -// lockedTokens/staker/unstake_all.cdc (511B) -// lockedTokens/staker/update_networking_address.cdc (505B) -// lockedTokens/staker/withdraw_rewarded_tokens.cdc (819B) -// lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc (551B) -// lockedTokens/staker/withdraw_unstaked_tokens.cdc (551B) -// lockedTokens/user/deposit_tokens.cdc (763B) +// lockedTokens/staker/register_node.cdc (1.743kB) +// lockedTokens/staker/request_unstaking.cdc (713B) +// lockedTokens/staker/stake_new_tokens.cdc (1.442kB) +// lockedTokens/staker/stake_rewarded_tokens.cdc (716B) +// lockedTokens/staker/stake_unstaked_tokens.cdc (716B) +// lockedTokens/staker/unstake_all.cdc (679B) +// lockedTokens/staker/update_networking_address.cdc (673B) +// lockedTokens/staker/withdraw_rewarded_tokens.cdc (987B) +// lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc (719B) +// lockedTokens/staker/withdraw_unstaked_tokens.cdc (719B) +// lockedTokens/user/deposit_tokens.cdc (796B) // lockedTokens/user/get_locked_account_address.cdc (407B) // lockedTokens/user/get_locked_account_balance.cdc (406B) // lockedTokens/user/get_multiple_unlock_limits.cdc (520B) -// lockedTokens/user/get_total_balance.cdc (2.818kB) +// lockedTokens/user/get_total_balance.cdc (2.817kB) // lockedTokens/user/get_unlock_limit.cdc (397B) -// lockedTokens/user/withdraw_tokens.cdc (730B) +// lockedTokens/user/withdraw_tokens.cdc (922B) // nodeVersionBeacon/admin/change_version_freeze_period.cdc (810B) // nodeVersionBeacon/admin/delete_version_boundary.cdc (835B) // nodeVersionBeacon/admin/heartbeat.cdc (635B) @@ -235,6 +239,9 @@ // quorumCertificate/scripts/get_voter_is_registered.cdc (206B) // quorumCertificate/scripts/get_voting_completed.cdc (195B) // quorumCertificate/submit_vote.cdc (607B) +// randomBeaconHistory/scripts/get_latest_source_of_randomness.cdc (200B) +// randomBeaconHistory/scripts/get_source_of_randomness.cdc (305B) +// randomBeaconHistory/scripts/get_source_of_randomness_page.cdc (326B) // stakingCollection/close_stake.cdc (781B) // stakingCollection/create_machine_account.cdc (1.175kB) // stakingCollection/create_new_tokenholder_acct.cdc (3.413kB) @@ -1034,6 +1041,26 @@ func dkgScriptsGet_node_is_registeredCdc() (*asset, error) { return a, nil } +var _dkgScriptsGet_submissions_countCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xc1\x0a\x82\x40\x10\x06\xe0\xfb\x3c\xc5\x7f\xd4\x4b\x74\x88\x0e\xde\xa2\x4d\x11\x6f\x2d\x3d\x80\x82\xc6\x80\x3b\x23\xeb\x0c\x05\xb2\xef\xde\xa9\x17\xf8\x38\x6d\x9a\x0d\xed\xaa\x9f\x30\x74\x58\xb2\x26\x9c\xbf\x61\xe8\x6e\x21\x3c\x1f\x31\x12\x6d\x3e\x61\x71\x41\x1a\x59\xaa\xba\x01\x8e\x5e\xac\xc1\xab\x17\xbb\x5e\x0a\x0e\x02\x80\x3c\x9b\x67\xf9\x33\xa7\xf7\x6c\x2d\xcb\xb8\x46\x9f\x12\xef\x3b\xab\xdc\xd5\xc5\xaa\x9a\x0a\xfd\x02\x00\x00\xff\xff\xe5\xd7\x26\xa5\x72\x00\x00\x00" + +func dkgScriptsGet_submissions_countCdcBytes() ([]byte, error) { + return bindataRead( + _dkgScriptsGet_submissions_countCdc, + "dkg/scripts/get_submissions_count.cdc", + ) +} + +func dkgScriptsGet_submissions_countCdc() (*asset, error) { + bytes, err := dkgScriptsGet_submissions_countCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "dkg/scripts/get_submissions_count.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc2, 0x62, 0x13, 0x4c, 0x53, 0x43, 0x18, 0xf7, 0xc7, 0xa8, 0x39, 0x4a, 0x6c, 0x6, 0x96, 0x10, 0xa8, 0x3c, 0x70, 0xe5, 0xaa, 0x27, 0x86, 0x32, 0x10, 0x17, 0x58, 0x9d, 0x83, 0x72, 0x85, 0x6e}} + return a, nil +} + var _dkgScriptsGet_thresholdsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xc1\x4a\x03\x31\x10\x86\xef\x79\x8a\xff\x98\x5c\x96\x3d\x94\x1e\x0a\x52\x84\xb5\x45\x0a\x22\xae\x3e\x40\x58\x27\x6d\x20\x9b\x48\x32\xd1\x82\xec\xbb\xcb\x46\x6d\xbb\xac\x60\x73\x1c\xbe\x6f\xfe\xc9\x6f\xfb\xb7\x10\x19\x1b\x17\x3e\x9a\xdd\x16\x26\x86\x1e\xf5\xb1\xd9\x6d\x6f\x9b\xe6\xe9\xae\x6d\x85\xd0\x5d\x47\x29\x49\xed\x9c\x42\xe2\x98\x3b\xc6\xf3\x21\x52\x3a\x04\xf7\x9a\xf0\x29\x00\xe0\x92\x71\xc4\xf0\x9a\xed\x3b\xad\xf0\x72\xef\x79\xb9\xf8\x13\x49\xda\xfc\x0f\x3c\x52\xec\xc8\xb3\xde\x8f\xe8\xc6\x1e\x97\x0b\x51\x58\xeb\x2d\x4b\xf5\x13\x3e\xbe\x44\xce\x54\xdf\xa9\xb8\xf9\xfd\x4d\xb5\x27\x7e\x28\xb3\x36\x97\xe5\xa7\xbb\xa5\x9a\x9a\x63\xd6\xd4\x6b\xb5\xb9\xca\x3a\x5f\x38\xf7\x4f\xe2\x19\x92\x0a\xeb\x35\xea\xaa\x2e\x9b\x06\x31\x4c\xfb\x35\xd9\xa3\xd7\xd6\x4b\xb5\x9a\x97\x1c\x89\x73\xf4\x17\x73\xa9\xc4\xf0\x15\x00\x00\xff\xff\x4c\xbf\xd4\x66\xc0\x01\x00\x00" func dkgScriptsGet_thresholdsCdcBytes() ([]byte, error) { @@ -1334,6 +1361,26 @@ func epochAdminUpdate_epoch_configCdc() (*asset, error) { return a, nil } +var _epochAdminUpdate_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\xc1\x6a\xc3\x30\x0c\x86\xef\x79\x0a\xd1\xc3\x48\x60\x84\x1d\xc6\x0e\x65\x5d\x09\x69\xc6\x76\x5a\x59\xba\x07\xf0\x1c\x27\x31\xc4\x96\x51\x14\x3a\x18\x7d\xf7\xe1\x98\x34\xc9\xaa\x83\x91\x65\xfd\xd2\xe7\x5f\x1b\x87\xc4\xf0\xda\xe1\xb9\x70\x28\x5b\xa8\x09\x0d\x3c\xfc\x14\xc7\x8f\xfc\x2d\x3b\x1c\x3e\x8b\xb2\x8c\x22\x26\x61\x7b\x21\x59\xa3\x8d\xab\x81\x84\x4f\xb6\xf0\xf5\x6e\xf9\xe9\xf1\x1e\x48\xd5\x39\x0e\x96\x15\xad\x6a\x27\x6d\x54\xcf\xc2\xb8\xa9\x9a\xc0\x6f\x04\x00\xe0\x48\x39\x41\x2a\xee\x75\x63\xbd\x26\x1b\xb8\xcd\xa4\xf4\x23\xa6\x16\x1f\x9d\x62\x50\x9e\x29\xab\x8c\xb6\xb0\x83\xd0\x9f\x7e\x23\x11\x9e\x9f\xef\xae\xcc\xe9\xd8\xf0\x12\x7b\xf4\xed\xfc\x95\x54\xf8\x72\xc9\x48\xa2\x51\x47\xc1\x6d\x72\x1d\xed\x63\xbf\x07\x27\xac\x96\xf1\x26\xc7\xa1\xab\xc0\x22\x43\x18\x0d\xa3\x30\x38\xd1\x07\x39\x38\xc1\xed\x26\x89\x56\x70\x12\x6d\xad\x1b\xd8\x2d\x56\x8e\xe7\x49\x1b\x6d\x9b\x7c\x7c\x5d\xd8\x35\x65\x6b\xc3\xe6\xfc\xbf\x69\xcb\xdb\x8c\x3e\x3b\x92\x0e\xae\x12\xac\x6e\x57\x06\xae\x20\xb9\x44\x97\xbf\x00\x00\x00\xff\xff\x8d\xbe\x84\x8a\xe3\x01\x00\x00" + +func epochAdminUpdate_epoch_timing_configCdcBytes() ([]byte, error) { + return bindataRead( + _epochAdminUpdate_epoch_timing_configCdc, + "epoch/admin/update_epoch_timing_config.cdc", + ) +} + +func epochAdminUpdate_epoch_timing_configCdc() (*asset, error) { + bytes, err := epochAdminUpdate_epoch_timing_configCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "epoch/admin/update_epoch_timing_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0x1f, 0x6d, 0xa3, 0x37, 0xf6, 0x2c, 0x57, 0xc5, 0x90, 0xee, 0xac, 0xac, 0x3c, 0xb6, 0x96, 0x6a, 0xe5, 0x89, 0x8e, 0xd9, 0x24, 0x2e, 0x57, 0xa, 0x3a, 0x27, 0x79, 0x9a, 0x26, 0xa4, 0xb}} + return a, nil +} + var _epochAdminUpdate_epoch_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xf4\x30\x10\x86\xef\xfd\x15\xc3\x1e\x96\xf6\x12\xbe\xc3\x87\x87\xa2\x2e\x75\xb7\xa2\x27\x17\x8b\x7b\x1f\xd3\x71\x1b\x68\x33\x21\x9d\x50\x41\xf6\xbf\x4b\x12\xed\x82\x73\x0a\x21\xef\xfb\x3c\x19\x33\x39\xf6\x02\x8f\x23\x2f\xad\x63\x3d\xc0\x87\xe7\x09\xfe\x7d\xb6\xc7\x97\xfd\x53\x73\x38\xbc\xb6\x5d\x57\x14\xe2\xd1\xce\xa8\xc5\xb0\x2d\x2d\x2d\x4d\x48\xc7\x93\xa1\x65\xae\xe1\xed\xd9\xca\xcd\xff\x0a\xbe\x0a\x00\x00\xe7\xc9\xa1\xa7\x72\x36\x67\x4b\xbe\x06\x0c\x32\x94\x0f\xec\x3d\x2f\x27\x1c\x03\x55\xb0\x6d\xb4\xe6\x60\xe5\x37\x11\x67\x24\x01\x8a\xfc\xa6\x9f\x8c\x85\x3b\xc8\x71\x35\x0b\x7b\x3c\x93\x7a\x4f\x05\xb7\xdb\xd5\x53\xa5\x87\xf7\x65\xd4\xad\xaf\xfa\x0a\xe3\x75\x97\x53\x47\x94\xa1\x5a\x11\x71\x76\x3b\x70\x68\x8d\x2e\x37\x7b\x0e\x63\x0f\x96\x05\x72\x35\xa4\x60\xfe\xfd\x0f\x14\x1c\xca\xb0\xa9\x8a\xb5\xe1\x2a\xa8\x82\xeb\x51\x28\x21\xd3\x16\xfe\x6e\x25\x63\x2f\xc5\xe5\x3b\x00\x00\xff\xff\xda\xda\xbd\xf3\x60\x01\x00\x00" func epochAdminUpdate_epoch_viewsCdcBytes() ([]byte, error) { @@ -1594,6 +1641,26 @@ func epochScriptsGet_epoch_phaseCdc() (*asset, error) { return a, nil } +var _epochScriptsGet_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x42\x68\xd3\x03\x93\x21\x99\xb9\x99\x79\xe9\xce\xf9\x79\x69\x99\xe9\x0a\xd5\x5c\x0a\x0a\x0a\x0a\x45\xa9\x25\xa5\x45\x79\x48\x0a\xd3\x53\x4b\x30\xd4\x6a\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x67\x19\xef\x12\x89\x00\x00\x00" + +func epochScriptsGet_epoch_timing_configCdcBytes() ([]byte, error) { + return bindataRead( + _epochScriptsGet_epoch_timing_configCdc, + "epoch/scripts/get_epoch_timing_config.cdc", + ) +} + +func epochScriptsGet_epoch_timing_configCdc() (*asset, error) { + bytes, err := epochScriptsGet_epoch_timing_configCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "epoch/scripts/get_epoch_timing_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe9, 0x6f, 0xa1, 0xa3, 0x69, 0xa0, 0x19, 0x38, 0xf6, 0x87, 0xe4, 0xc3, 0x4c, 0x63, 0x47, 0x64, 0xe, 0x15, 0x4f, 0x62, 0xbb, 0x5e, 0xa5, 0x7, 0x75, 0x3b, 0x4c, 0xe2, 0x67, 0xf5, 0x79, 0x35}} + return a, nil +} + var _epochScriptsGet_proposed_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\xf5\xcc\x2b\x31\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x18\xa5\x57\x50\x94\x5f\x90\x5f\x9c\x9a\x02\xe6\x39\xe7\x97\xe6\x95\xa4\x16\x69\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x55\xb5\xd8\x03\x74\x00\x00\x00" func epochScriptsGet_proposed_counterCdcBytes() ([]byte, error) { @@ -1634,6 +1701,26 @@ func epochScriptsGet_randomizeCdc() (*asset, error) { return a, nil } +var _epochScriptsGet_target_end_time_for_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xcf\xcf\x8a\xc2\x30\x10\x06\xf0\x7b\x9e\x62\x8e\xcd\x65\xd9\xc3\xb2\x87\x85\x15\xa4\x7f\xd0\x93\x62\xeb\x03\x84\x38\xad\x81\x64\x52\xa6\x09\x0a\xd2\x77\x97\xa6\x2d\x36\x87\x30\x90\xef\x97\x8f\x31\xae\xf7\x1c\xa0\xb2\xfe\x51\xf6\x5e\xdf\xa1\x65\xef\xe0\xfb\x59\x9e\x4f\xf9\x61\x5f\x14\x97\xb2\xae\x85\x50\x5a\xe3\x30\x64\xca\x5a\x09\x6d\x24\x70\xca\x50\x16\x14\x77\x18\x92\xfa\x83\xeb\x91\xc2\xef\x8f\x5c\x07\x78\x09\x00\x80\x9e\x71\x99\xa6\xb3\x01\xb0\xfb\xff\x74\x7e\xe9\xc8\x8c\x34\xbf\xe4\x3e\x52\x40\x4e\x68\x4c\xb7\xc5\x00\xda\x53\x6b\x3a\xd8\xa2\xf5\xab\xc6\x38\x43\x5d\x9e\x02\x99\x4c\x82\x31\x44\xa6\x05\x4d\xc1\x66\x6e\xa6\x5b\x63\x1c\x56\x9e\x13\xdc\x2e\x20\xc5\xf8\x0e\x00\x00\xff\xff\xbd\x1a\x61\x75\x0a\x01\x00\x00" + +func epochScriptsGet_target_end_time_for_epochCdcBytes() ([]byte, error) { + return bindataRead( + _epochScriptsGet_target_end_time_for_epochCdc, + "epoch/scripts/get_target_end_time_for_epoch.cdc", + ) +} + +func epochScriptsGet_target_end_time_for_epochCdc() (*asset, error) { + bytes, err := epochScriptsGet_target_end_time_for_epochCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "epoch/scripts/get_target_end_time_for_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb1, 0x91, 0x98, 0xde, 0xc1, 0xe8, 0xa1, 0x2c, 0xf, 0x6c, 0x74, 0x45, 0x1e, 0xa1, 0x93, 0x8e, 0xd8, 0x79, 0x4c, 0xee, 0x6c, 0xed, 0x14, 0xe3, 0x42, 0x3, 0x7d, 0xec, 0x57, 0xad, 0x88, 0x94}} + return a, nil +} + var _flowtokenBurn_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x3d\x73\x9b\x40\x10\xed\xf9\x15\x2f\x2a\x3c\xa8\x30\x34\x99\x14\x1a\x27\x8e\xed\x19\x97\xa9\x1c\xa7\x5e\x60\x25\x6e\x02\x77\xcc\xde\x11\xec\xf1\xf8\xbf\x67\x6e\x0f\x90\x28\xa4\x42\xc0\xdd\xee\xfb\xd8\xb7\x65\x89\x97\xd6\x78\x04\x21\xeb\xa9\x0e\xc6\x59\x18\x0f\x42\xe0\x7e\xe8\x28\x30\x8e\x4e\xe2\xe7\xc5\x7d\x68\x29\x64\x65\x89\xda\x8d\x5d\x83\x8a\x31\x7a\x6e\x50\xbd\x23\xb4\x0c\x6a\x7a\x63\x41\x75\xed\x46\x1b\x10\x1c\xaa\x51\x2c\x82\xfb\xcb\xd6\xc7\xa6\xa3\xb8\x3e\x16\x1a\x81\x0f\x4e\xb8\xc1\x2b\x8d\x5d\xc4\xcb\x54\x0b\x6b\x83\xb1\x27\x50\xaf\x10\xd3\xc2\x42\x18\x48\xa8\xe7\xc0\x12\x71\x23\xd9\x85\xaa\x2c\x33\xfd\xe0\x24\xe0\x79\xb4\x27\x53\x75\xfc\x12\x29\x13\xdd\x6e\x73\xb6\x5b\x2b\x3b\x37\x6d\xaa\x96\xef\x5d\x96\x5d\x20\xe7\x49\xc8\x01\xbf\x9f\xcd\xdb\xb7\xaf\x7b\x7c\x64\x19\x00\x94\x65\x92\x0e\x61\xef\x46\xa9\x59\x07\x83\xd6\x75\x8d\x4f\xea\xd4\x74\x3a\x25\x61\x54\x1c\x6d\x45\x7b\xdc\x28\x42\xc7\x01\xff\x22\xc4\x01\x3f\x37\x12\x8b\x34\x93\xb5\x48\x87\x7a\xc0\xcd\xaa\xb0\x78\x88\x27\xc6\x07\xa1\xe0\x24\x15\x0e\xc2\x03\x09\xe7\xde\x9c\x2c\xcb\x01\x34\x86\x36\x7f\x74\x22\x6e\x7a\xa5\x6e\xe4\x3d\x6e\x1e\x52\x2c\xab\x85\xd9\xc6\x1f\x13\xda\x46\x68\x5a\x14\x2f\x19\xcd\x61\xaa\x44\x18\xab\x81\xd1\x89\xd7\x56\xcf\xdd\xb1\x48\xb7\x77\xb7\x48\xbc\xc5\x5c\x54\x54\xca\x7c\xa7\x2a\xb6\xe6\x16\x3a\xaa\xba\x28\xea\x6c\x4a\x5d\xff\xc8\x23\xfd\x01\xe5\x0c\x54\x1e\x97\x7b\xbd\xde\x7f\x59\xe9\xe3\xaf\x98\x66\xb0\x35\xa5\xf4\xdc\x6f\x0c\x3e\x09\xc7\x55\x26\x08\x1f\x59\xd8\xc6\xac\xdc\xe5\xba\xea\xff\x9a\xe3\x35\xab\xa9\xec\xfb\x15\xa7\xd7\xd2\xb9\x6e\x48\xcb\xf6\x1b\x3f\xf7\xf7\x18\xc8\x9a\x3a\xdf\x3d\xe9\xde\x5b\x17\x90\xf0\xaf\xab\x5f\x74\xef\x12\xd4\x67\xb2\xce\x6f\x5c\x8f\x81\xf1\xb1\xe2\xc7\x4d\xd2\xed\x13\x8d\x6b\x75\x54\xd4\x3a\x9e\x5f\x3c\x3d\xea\x6d\x7e\x96\xb4\xbe\xa4\xbe\x22\x3e\x54\xba\x9f\x4d\xdd\xdd\x9e\x97\xe0\x62\xe6\x0d\xfb\x20\xee\x7d\x6e\x9b\x65\x7d\x66\xf8\x1f\x00\x00\xff\xff\x41\x06\x25\x6c\x6f\x04\x00\x00" func flowtokenBurn_tokensCdcBytes() ([]byte, error) { @@ -1694,7 +1781,7 @@ func flowtokenMint_tokensCdc() (*asset, error) { return a, nil } -var _flowtokenScriptsGet_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\xcb\x4e\xf3\x30\x10\x85\xf7\x7e\x8a\xa3\x2c\xfe\x3f\xd9\x24\x1b\xc4\xa2\x02\xaa\x82\xd4\x07\x40\x85\xfd\xc4\x19\xb7\x23\x5c\x3b\xf2\x85\x22\x55\x7d\x77\x94\x2b\x6a\x56\xb1\xe7\x9b\x73\xe6\x8c\x9b\x06\x87\x93\x44\x44\x1d\xa4\x4f\x08\x4c\x5d\x44\x3a\x31\x5a\xb2\xe4\x34\xc3\x08\xdb\x0e\xde\x80\x1c\x48\x6b\x9f\x5d\xfa\x1f\xb1\xb7\xfe\x72\xf0\x5f\xec\xf0\x3a\x71\x4a\xc9\xb9\xf7\x21\x61\x9f\xdd\x51\x5a\xcb\x53\xd5\x04\x7f\x46\x71\x77\x57\xac\xe4\xaa\x31\x53\xcb\xb9\x50\x8a\xb4\xe6\x18\x4b\xb2\xb6\x82\xc9\x0e\x67\x12\x57\xce\xf6\x1b\xec\xba\x2e\x70\x8c\xd5\x06\x1f\x7b\xf9\x79\x7c\xc0\x55\x29\x00\xb0\x9c\xf0\x4d\xd9\xa6\x77\x36\x78\xc6\x91\xd3\x6e\x6a\x59\x5a\xab\x11\x1b\xbe\x5a\x53\x4f\xad\x58\x49\xc2\xb1\x6e\x7d\x08\xfe\xf2\xf4\x6f\x1d\xa1\xfe\x1c\x64\xae\x77\x83\xd7\x73\xd4\xdb\x4b\xd9\xf4\xb9\xb5\xa2\x1b\xb3\xf0\x73\xe9\x4f\x7f\xbb\x45\x4f\x4e\x74\x59\xbc\xf9\x6c\x3b\x38\x9f\x30\xb9\x2c\x1b\x43\x60\xc3\x81\x87\xbf\xe4\xc7\x95\x8f\x9e\x45\x35\x65\x09\x9c\x72\x70\x6b\x9c\x7a\x7e\x0f\x75\x53\xbf\x01\x00\x00\xff\xff\xb2\x75\x14\x0e\xb3\x01\x00\x00" +var _flowtokenScriptsGet_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\xcd\x4e\xc3\x30\x10\x84\xef\x7e\x8a\x51\x0e\x90\x5c\x92\x0b\xe2\x50\x01\x55\x41\xea\x03\xa0\xc2\x7d\xe3\xac\xdb\x15\x8e\x1d\xf9\x87\x22\x21\xde\x1d\xe5\x17\xe1\x93\xed\x9d\xf9\x3c\x9e\xa6\xc1\xe9\x22\x11\x51\x07\x19\x12\x02\x53\x17\x91\x2e\x8c\x96\x2c\x39\xcd\x30\xc2\xb6\x83\x37\x20\x07\xd2\xda\x67\x97\x6e\x23\x8e\xd6\x5f\x4f\xfe\x83\x1d\x9e\x67\x9d\x52\xd2\x0f\x3e\x24\x1c\xb3\x3b\x4b\x6b\x79\x9e\x9a\xe0\x7b\x14\xff\xee\x8a\x4d\xb9\x31\x16\xd5\x7a\x2e\x94\x22\xad\x39\xc6\x92\xac\xad\x60\xb2\x43\x4f\xe2\xca\xe5\xf9\x1d\x0e\x5d\x17\x38\xc6\x6a\x87\xb7\xa3\x7c\xdd\xdf\xe1\x5b\x29\x00\xb0\x9c\xf0\x49\xd9\xa6\x57\x36\x78\xc4\x99\xd3\x61\xb6\xac\xd6\x6a\x92\x8d\xab\xd6\x34\x50\x2b\x56\x92\x70\xac\x5b\x1f\x82\xbf\x3e\xdc\x6c\x11\xea\xf7\x11\xf3\x54\x36\x43\x6e\xad\xe8\xc6\xac\x83\xe5\xbb\x7f\xa0\xfd\x1e\x03\x39\xd1\x65\xf1\xe2\xb3\xed\xe0\x7c\xc2\x8c\x5b\xab\x41\x60\xc3\x81\xc7\x5d\xf2\x53\xb7\x13\xbc\xa8\xe6\xd0\x81\x53\x0e\x6e\xcb\x5d\x2f\xc5\xab\x1f\xf5\x1b\x00\x00\xff\xff\x49\x8d\x76\xbc\x9c\x01\x00\x00" func flowtokenScriptsGet_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -1710,7 +1797,7 @@ func flowtokenScriptsGet_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/scripts/get_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8c, 0xff, 0xa, 0x56, 0x3f, 0xfb, 0xe0, 0xd, 0xb, 0x7, 0x18, 0x80, 0xea, 0xfa, 0x73, 0xb0, 0x94, 0x62, 0xb6, 0xb1, 0x47, 0x85, 0x6a, 0x9b, 0xcc, 0x47, 0xc4, 0x1e, 0x51, 0x88, 0xc3, 0x7e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb8, 0x8b, 0x72, 0xb5, 0x48, 0x4e, 0xa0, 0x6f, 0x49, 0xf1, 0x6b, 0x9f, 0xff, 0x13, 0x42, 0xa1, 0x7b, 0x79, 0x9b, 0x94, 0x95, 0x62, 0x98, 0x4c, 0x33, 0x9f, 0x99, 0x63, 0xfb, 0xb5, 0x48, 0xc6}} return a, nil } @@ -1774,7 +1861,7 @@ func flowtokenTransfer_tokensCdc() (*asset, error) { return a, nil } -var _idtablestakingAdminAdd_approved_and_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x4d\x8b\xe3\x46\x10\x3d\x4b\xbf\xa2\xd6\x87\x8d\x4c\x82\xcc\x5e\x4d\x9c\x65\x12\x13\x10\x0c\x4b\x58\x2f\xb9\x0c\x73\x68\x77\x97\xac\x4e\xda\x5d\xa2\xbb\x34\x9a\x61\xf0\x7f\x0f\xd5\x92\xfc\x31\xa3\x21\x7d\x11\xa8\x5f\xbd\x7a\x7a\xf5\x4a\xf6\xd8\x52\x60\xf8\xd3\x51\x5f\x6d\x7f\xa8\xbd\xc3\x1d\xab\x7f\xad\x3f\x40\x1d\xe8\x08\x8b\xf7\x17\x8b\x3c\x5f\xad\x56\xf0\xa3\xb1\x11\x38\x28\x1f\x95\x66\x4b\x1e\x94\x31\x11\x3c\x19\x84\x6a\x1b\x81\x09\xb8\x41\x70\x36\x32\x50\x0d\xaa\x6d\x03\x3d\xa1\x49\x80\x08\xd6\x27\x0e\x41\x54\x5b\x60\x61\x2f\x21\xbd\xaa\x18\x94\x8b\x04\xd6\xeb\x80\x2a\x62\x84\xe8\x88\xc1\xd9\xa3\xe5\x98\x10\xfb\x97\x54\xe7\xbb\xe3\x1e\x83\x70\x0f\x94\x7d\x43\xa0\x02\x8a\x0c\x34\x02\x1c\xe8\x6a\x50\xfe\x45\x50\x52\x23\x1a\xac\x39\xab\x50\x2e\xa0\x32\x2f\x80\xcf\xa2\xd2\xfa\x1b\x3d\xbf\x00\x37\x76\xe8\x78\xfd\x95\xbd\x75\x0e\x3c\x31\x04\x7c\xc2\xc0\x50\x58\x83\xc7\x96\x18\x3d\x2f\xf3\xfc\x0a\x59\x78\xec\xef\xc6\xaf\xae\xb6\x71\x0d\x0f\x3b\x0e\xd6\x1f\x1e\x97\xf0\x9a\xe7\x00\x00\xab\x15\xdc\x93\x56\x0e\x9e\x54\xb0\xd2\x12\x6a\x0a\xa0\x20\x60\x8d\x01\xbd\xc6\xc9\xc4\x6a\x0b\x69\x00\x70\x67\x8e\xd6\x03\xed\xff\x41\xcd\x89\xc2\x21\x83\x92\x97\xdf\xb1\x5e\xc3\xe7\xf7\xc3\x2a\x53\xc9\xd0\xaf\x0d\xd8\xaa\x80\x85\xd2\x9a\xd7\xa0\x3a\x6e\x8a\xdf\x29\x04\xea\xff\x56\xae\xc3\x25\x7c\xbe\xd3\x9a\x3a\xcf\x22\x10\xc6\x23\x7e\x27\xcc\x9c\x2e\xf5\x56\x8e\x9c\x88\xae\x2e\x27\x4d\xb0\x01\xe9\x56\x46\xa6\xa0\x0e\x58\x0e\x5c\xbf\x7e\x28\xf4\xb7\x42\x52\xb7\x9e\x89\x63\x39\x3e\x13\x6c\x37\xd0\xfd\xa5\xb8\x59\x9e\x1b\xcb\xf9\xfa\x15\x5a\xe5\xad\x2e\x16\x7f\x50\xe7\x4c\x1a\xd4\xa8\xff\x46\x7d\x1c\x33\x9e\x74\x2e\x06\x8e\xd3\xe0\x12\x3e\xa3\xee\x18\xe1\x35\xcf\x32\xb1\x37\x85\x43\x1a\x5f\x66\x09\x9b\x39\x81\x07\xe4\x09\x73\x6f\x23\x17\xcb\x3c\xcb\xb2\x39\x41\x8e\x94\xb9\x2c\x84\x6c\xc8\x62\x99\x8f\xdd\x24\xec\xf7\x29\xeb\x1f\x36\xf9\x4e\x0e\x77\x67\x58\x91\x4a\x57\x2b\xc9\x7d\x8a\xba\xc7\x7e\xda\x42\xe8\x1b\xab\x1b\x30\x84\xd1\xff\xc4\xf3\x71\x1f\x75\x24\x19\x23\x91\x37\xe7\xed\x4b\x10\xad\xbc\xb1\x46\x31\x0e\xbc\xc3\x2a\x26\xd8\xd5\x6a\xca\x5a\x7e\x19\x08\x24\xc5\xa8\x74\x03\x9a\x42\xc0\xd8\x92\x37\xe2\x75\x2a\x1e\xb6\x33\xcb\x04\xe3\xb1\xff\x46\x06\xab\xad\x68\xb9\xdd\x96\xe4\x7e\x66\xeb\x39\xf7\x1f\xce\x75\x8f\xf0\x69\x03\xde\xba\x31\xaf\x59\x96\x69\xf2\x6c\x7d\x87\x52\x7d\x12\x63\x92\xa9\xd2\xb9\xf2\x35\xcd\x5b\xfa\x6d\xbc\x2d\xce\xbc\xc9\xd2\xec\x32\x8a\x87\x89\xa0\x0c\xe4\xf0\x11\x36\xf0\xe1\xdd\x27\xf8\x19\xbe\xa4\xf2\xff\x51\xbe\x01\x0e\x49\xe7\x69\x9c\x5f\x44\xbe\x1e\xc8\x10\x8c\x69\xd3\x3a\x2f\xff\x1e\xba\xf8\x91\xec\xbf\x1a\x75\x9c\xdf\xbf\x32\xbe\x09\xe5\x8c\xaa\x29\x40\x3b\x71\x0a\xfb\x9b\xff\x6d\x96\xbd\xa3\xbb\x8a\xde\xc5\x85\xf5\x95\x23\xd3\x36\x9d\xfe\x0b\x00\x00\xff\xff\x32\x34\xbe\xa2\x5b\x06\x00\x00" +var _idtablestakingAdminAdd_approved_and_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x4d\x6f\xe3\x36\x10\x3d\x4b\xbf\x62\xd6\x87\xad\x8c\x16\x32\xf6\x6a\xd4\x5d\xa4\x35\x0a\x08\x08\x16\xc5\x7a\xd1\x4b\x90\x03\x4d\x8e\x2c\xb6\x34\x47\x20\x47\x51\x82\xc0\xff\xbd\x18\x4a\xf2\x47\xa2\xa0\xbc\x18\x30\xdf\xbc\x79\x7c\xf3\x46\xf6\xd8\x52\x60\xf8\xd3\x51\x5f\x6d\x7f\xa8\xbd\xc3\x1d\xab\x7f\xad\x3f\x40\x1d\xe8\x08\x8b\xf7\x17\x8b\x3c\x5f\xad\x56\xf0\xa3\xb1\x11\x38\x28\x1f\x95\x66\x4b\x1e\x94\x31\x11\x3c\x19\x84\x6a\x1b\x81\x09\xb8\x41\x70\x36\x32\x50\x0d\xaa\x6d\x03\x3d\xa1\x49\x80\x08\xd6\x27\x0e\x41\x54\x5b\x60\x61\x2f\x21\xfd\x55\x31\x28\x17\x09\xac\xd7\x01\x55\xc4\x08\xd1\x11\x83\xb3\x47\xcb\x31\x21\xf6\x2f\xa9\xce\x77\xc7\x3d\x06\xe1\x1e\x28\xfb\x86\x40\x05\x14\x19\x68\x04\x38\xd0\xd5\xa0\xfc\x8b\xa0\xa4\x46\x34\x58\x73\x56\xa1\x5c\x40\x65\x5e\x00\x9f\x45\xa5\xf5\x37\x7a\x7e\x01\x6e\xec\xd0\xf1\xfa\x95\xbd\x75\x0e\x3c\x31\x04\x7c\xc2\xc0\x50\x58\x83\xc7\x96\x18\x3d\x2f\xf3\xfc\x0a\x59\x78\xec\xef\xc6\x57\x57\xdb\xb8\x86\x87\x1d\x07\xeb\x0f\x8f\x4b\x78\xcd\x73\x00\x80\xd5\x0a\xee\x49\x2b\x07\x4f\x2a\x58\x69\x09\x35\x05\x50\x10\xb0\xc6\x80\x5e\xe3\x64\x62\xb5\x85\x34\x00\xb8\x33\x47\xeb\x81\xf6\xff\xa0\xe6\x44\xe1\x90\x41\xc9\x9f\xdf\xb1\x5e\xc3\xe7\xf7\xc3\x2a\x53\xc9\xd0\xaf\x0d\xd8\xaa\x80\x85\xd2\x9a\xd7\xa0\x3a\x6e\x8a\xdf\x29\x04\xea\xff\x56\xae\xc3\x25\x7c\xbe\xd3\x9a\x3a\xcf\x22\x10\xc6\x23\x7e\x27\xcc\x9c\x2e\xf5\x56\x8e\x9c\x88\xae\x2e\x27\x4d\xb0\x01\xe9\x56\x46\xa6\xa0\x0e\x58\x0e\x5c\xbf\x7e\x28\xf4\xb7\x42\x52\xb7\x9e\x89\x63\x39\xfe\x26\xd8\x6e\xa0\xfb\x4b\x71\xb3\x3c\x37\x96\xf3\xf5\x2b\xb4\xca\x5b\x5d\x2c\xfe\xa0\xce\x99\x34\xa8\x51\xff\x8d\xfa\x38\x66\x3c\xe9\x5c\x0c\x1c\xa7\xc1\x25\x7c\x46\xdd\x31\xc2\x6b\x9e\x65\x62\x6f\x0a\x87\x34\xbe\xcc\x12\x36\x73\x02\x0f\xc8\x13\xe6\xde\x46\x2e\x96\x79\x96\x65\x73\x82\x1c\x29\x73\x59\x08\xd9\x90\xc5\x32\x1f\xbb\x49\xd8\xef\x53\xd6\x3f\x6c\xf2\x9d\x1c\xee\xce\xb0\x22\x95\xae\x56\x92\xfb\x14\x75\x8f\xfd\xb4\x85\xd0\x37\x56\x37\x60\x08\xa3\xff\x89\xe7\xe3\x3e\xea\x48\x32\x46\x22\x6f\xce\xdb\x97\x20\x5a\x79\x63\x8d\x62\x1c\x78\x87\x55\x4c\xb0\xab\xd5\x94\xb5\xfc\x32\x10\x48\x8a\x51\xe9\x06\x34\x85\x80\xb1\x25\x6f\xc4\xeb\x54\x3c\x6c\x67\x96\x09\xc6\x63\xff\x8d\x0c\x56\x5b\xd1\x72\xbb\x2d\xc9\xfd\xcc\xd6\x73\xee\x3f\x9c\xeb\x1e\xe1\xd3\x06\xbc\x75\x63\x5e\xb3\x2c\xd3\xe4\xd9\xfa\x0e\xa5\xfa\x24\xc6\x24\x53\xa5\x73\xe5\x6b\x9a\xb7\xf4\xdb\x78\x5b\x24\xd8\x76\x7d\xd1\x95\xac\xcd\x2e\x23\x79\x98\x88\xca\x40\x0e\x1f\x61\x03\x1f\xde\x7d\x82\x9f\xe1\x4b\x2a\xff\x9f\x17\x6c\x80\x43\xd2\x7b\x1a\xe7\x18\x91\xaf\x07\x33\x04\x64\xda\xb8\xce\xcb\x37\x88\x2e\xbe\xa4\x31\x5c\x8d\x3c\xce\xef\x61\x19\xdf\x84\x73\x46\xd5\x14\xa4\x9d\x38\x86\xfd\xcd\x77\x37\xcb\xde\xd1\x5d\x45\xf0\xe2\xc2\xfa\xca\x91\x69\xab\x4e\xff\x05\x00\x00\xff\xff\xa0\x1b\xa9\x9a\x63\x06\x00\x00" func idtablestakingAdminAdd_approved_and_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -1790,7 +1877,7 @@ func idtablestakingAdminAdd_approved_and_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/add_approved_and_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x74, 0x9b, 0x7, 0xd2, 0x23, 0xf5, 0x4d, 0xf8, 0xe3, 0x52, 0xc4, 0xdc, 0x9, 0x87, 0x86, 0xbb, 0x4f, 0x41, 0x4d, 0x75, 0x63, 0xb1, 0xd1, 0x2f, 0x2b, 0x13, 0xa0, 0x8e, 0x65, 0x52, 0x18, 0xa4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0x5c, 0xc3, 0x2d, 0xdd, 0xd4, 0x3f, 0x6, 0xb, 0x28, 0xd4, 0x83, 0xa8, 0x94, 0xed, 0x21, 0x85, 0x73, 0x1f, 0x61, 0xf0, 0x2f, 0xba, 0x6c, 0xed, 0xc4, 0x1f, 0xbe, 0x46, 0xf9, 0x40, 0x80}} return a, nil } @@ -1814,7 +1901,7 @@ func idtablestakingAdminAdd_approved_nodesCdc() (*asset, error) { return a, nil } -var _idtablestakingAdminCapability_end_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x53\x41\x4f\xe4\x3a\x0c\xbe\xf7\x57\x58\x73\x40\x1d\x09\xb5\x97\xa7\x77\x18\xf1\x40\x3c\x58\x24\x24\x0e\x88\x61\xf7\x8a\xdc\xd4\x9d\x66\x69\xe3\x2a\x71\x28\x23\x34\xff\x7d\x95\xa6\x2d\xd3\x05\x76\x73\xc9\xc1\xfe\x3e\x7f\xb6\x3f\xeb\xb6\x63\x2b\x70\xd3\x70\x7f\x7b\xfd\x88\x45\x43\x5b\xc1\x67\x6d\x76\x50\x59\x6e\x61\xf5\x31\xb0\x4a\x92\x3c\x87\xc7\x5a\x3b\x10\x8b\xc6\xa1\x12\xcd\x06\xbc\x23\x07\x08\x6e\x44\x63\xd9\x6a\x03\x0a\x3b\x2c\x74\xa3\x65\x1f\x30\xc2\xd0\xe1\x1e\x2c\xf5\x68\x4b\x77\x0a\x64\x4a\x90\x9a\xde\x31\x7e\xa0\x3a\x05\x34\xe5\x1c\xa4\x8e\x55\x9d\x25\x79\x1e\x18\x6e\x05\x14\xb7\x85\x36\xe4\x86\x60\x87\xfb\xa7\x63\xba\xa7\x99\xca\x94\xd0\xf2\x0b\x3d\x09\x3f\x93\x59\x28\x75\x81\xa8\xaf\xb5\xaa\x03\xc2\x7d\xae\x20\xc6\x2d\x55\x3e\xa4\x18\x2e\xc9\x41\xaf\xa5\x06\x6d\x9c\xaf\x2a\xad\x34\x19\x19\x60\x14\xe8\xa6\x72\x0e\xc6\x7a\x05\x49\x4f\x64\xa0\xf0\xea\x99\xc4\x8d\xda\xb1\x71\x0c\x8e\x24\x0c\xca\x50\x1f\x93\x43\x13\xec\x05\x2a\xb6\x83\x16\x43\xaf\x12\xbb\x4e\x92\x23\xd9\xa9\x2e\xdd\x06\xde\xb6\x62\xb5\xd9\x6d\xe0\x7f\xe6\xe6\x70\x1a\x58\xee\x07\xf8\x06\xbe\xdf\xe8\xd7\x7f\xff\x59\xc3\x5b\x92\x00\x00\xe4\x39\xdc\xb1\xc2\x06\x5e\xd0\xea\xb0\xbe\xa1\x00\x86\x9e\xc8\x92\x51\x14\xd6\x11\xea\xdd\x5e\xc3\xb0\x5e\xb8\x1c\x56\xc6\xc5\x4f\x52\x32\x50\x34\x24\x71\x8f\x0f\x54\x6d\xe0\xe4\xa3\x15\xb2\x01\x12\xeb\x75\x96\x3a\xb4\x94\xa2\x52\xb2\x01\xf4\x52\xa7\x57\xdc\xed\x7f\x60\xe3\x69\x0d\x27\x97\x4a\xb1\x37\x12\xe4\xc1\xf8\x66\xfa\xab\xd9\x25\xf0\x1f\x04\x7c\xe6\x84\x2d\xee\x28\x53\xdc\xed\xcf\xde\xc3\xe7\x69\x30\xe5\xe6\x13\xb7\x66\xe3\x3f\x08\xda\x46\xf4\x3d\x4a\xbd\x9e\xab\x85\x77\x71\x01\x1d\x1a\xad\xd2\xd5\x15\xfb\xa6\x04\xc3\x02\x3b\x92\x23\x9b\x46\xd7\x63\x14\x0b\xa3\x8c\xd5\x3a\x99\x69\xf2\x1c\x0a\xb6\x96\xfb\xcf\x46\x89\xbf\x4f\x30\x3c\x47\x4d\x95\x4d\x63\x0c\x0d\x2e\x5b\xce\x22\xdd\xd9\x97\xe3\x3d\x4f\xff\xde\xc4\x28\x69\x21\x68\x71\x89\xab\xc8\x71\x88\x8d\xd0\x2b\x29\x2f\x34\x59\x65\x5a\xc6\x78\x49\x5b\xdf\xb6\x68\xc3\x2e\x16\xd2\x33\x85\x8d\xf2\x0d\x0a\x3d\xc4\xbc\x23\x5d\xcb\xc4\x0e\xf7\x53\xca\x92\xf2\x68\x8e\x4b\x84\x23\xf9\x16\x1c\xff\x18\x0e\x22\x1a\x3a\x9d\xad\xfd\x27\xd4\x65\xd7\x59\x7e\xa1\xf2\x4e\x3b\x09\x17\xf2\x65\x2e\x99\x72\xb2\x48\xbc\xf1\xf4\xcb\xd4\x70\xc8\x83\x90\xa9\xc3\x43\x72\x48\x7e\x05\x00\x00\xff\xff\xc5\xa8\x09\x99\x28\x05\x00\x00" +var _idtablestakingAdminCapability_end_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x4d\x6b\xe4\x48\x0c\xbd\xfb\x57\x88\x3e\x04\x37\x34\x36\xbb\x2c\x7b\x30\xd9\x84\x6c\x67\x02\x81\x1c\x42\x3a\x33\xd7\x20\x97\xe5\x76\x4d\xec\x92\xa9\x92\xe3\x34\x21\xff\x7d\x28\x97\xed\xb4\xf3\x31\x53\x97\xa6\x91\xde\xd3\x93\xf4\x64\xdd\xb4\x6c\x05\xae\x6a\xee\xaf\x2f\xef\x31\xaf\x69\x27\xf8\xa8\xcd\x1e\x4a\xcb\x0d\xac\x3e\x06\x56\x51\x94\xa6\x70\x5f\x69\x07\x62\xd1\x38\x54\xa2\xd9\x40\xe7\xc8\x01\x82\x1b\xd1\x58\x34\xda\x80\xc2\x16\x73\x5d\x6b\x39\x78\x8c\x30\xb4\x78\x00\x4b\x3d\xda\xc2\x6d\x80\x4c\x01\x52\xd1\x1b\xa6\x1b\xa8\x36\x80\xa6\x98\x83\xd4\xb2\xaa\x92\x28\x4d\x3d\xc3\xb5\x80\xe2\x26\xd7\x86\xdc\x10\x6c\xf1\xf0\x70\x4c\xf7\x30\x53\x99\x02\x1a\x7e\xa2\x07\xe1\x47\x32\x0b\xa5\xce\x13\xf5\x95\x56\x95\x47\xb8\xcf\x15\x84\xb8\xa5\xb2\xf3\x29\x86\x0b\x72\xd0\x6b\xa9\x40\x1b\xd7\x95\xa5\x56\x9a\x8c\x0c\x30\xf2\x74\x53\x39\x07\x63\xbd\x9c\xa4\x27\x32\x90\x77\xea\x91\xc4\x8d\xda\xb1\x76\x0c\x8e\xc4\x0f\xca\x50\x1f\x92\x7d\x13\xdc\x09\x94\x6c\x07\x2d\x86\x9e\x25\x74\x1d\x45\x47\xb2\x63\x5d\xb8\x0c\x5e\x76\x62\xb5\xd9\x67\xf0\x3f\x73\xfd\xba\xf1\x2c\xb7\x03\x3c\x83\xef\x57\xfa\xf9\xdf\x7f\xd6\xf0\x12\x45\x00\x00\x69\x0a\x37\xac\xb0\x86\x27\xb4\xda\xaf\x6f\x28\x80\xbe\x27\xb2\x64\x14\xf9\x75\xf8\x7a\xd7\x97\x30\xac\x17\x2e\x86\x95\x71\xfe\x93\x94\x0c\x14\x35\x49\xd8\xe3\x1d\x95\x19\x9c\x7c\xb4\x42\x32\x40\x42\xbd\xd6\x52\x8b\x96\x62\x54\x4a\x32\xc0\x4e\xaa\x78\xcb\xed\xe1\x07\xd6\x1d\xad\xe1\xe4\x42\x29\xee\x8c\x78\x79\x30\xbe\x99\x7e\x3b\xbb\x04\xfe\x03\x8f\x4f\x9c\xb0\xc5\x3d\x25\x8a\xdb\xc3\xe9\x5b\xf8\x2c\xf6\xa6\xcc\x3e\x71\x6b\x32\xfe\x0e\x82\x76\x01\x7d\x8b\x52\xad\xe7\x6a\xfe\x9d\x9f\x43\x8b\x46\xab\x78\xb5\xe5\xae\x2e\xc0\xb0\xc0\x9e\xe4\xc8\xa6\xc1\xf5\x18\xc4\xc2\x28\x63\xb5\x8e\x66\x9a\x34\x85\x9c\xad\xe5\xfe\xb3\x51\xe2\xfb\x09\xfa\xe7\xa8\x2e\x93\x69\x8c\xbe\xc1\x65\xcb\x49\xa0\x3b\xfd\x72\xbc\x67\xf1\x9f\x9b\x18\x25\x2d\x04\x2d\x2e\x71\x15\x38\x5e\x43\x23\xf4\x4c\xaa\x13\x9a\xac\x32\x2d\x63\xbc\xa4\x5d\xd7\x34\x68\xfd\x2e\x16\xd2\x13\x85\xb5\xea\x6a\x14\xba\x0b\x79\x47\xba\x96\x89\x2d\x1e\xa6\x94\x92\xed\x37\x6f\xe5\xad\x9f\x27\xd9\x0c\xfe\xda\xbc\x2b\x93\xbd\xfb\x7f\x34\xeb\x25\xab\x23\x19\xa8\xee\xfd\xd1\x04\xd3\xc7\xb3\xfd\x7f\x87\xba\x68\x5b\xcb\x4f\x54\xdc\x68\x27\xfe\x8a\xbe\xcc\x25\x53\x4c\x36\x0a\xdf\x81\xf8\xcb\x54\x7f\xec\x83\x10\xe7\x35\x2c\x5b\xfc\x7b\x9a\xf5\x6b\xf4\x2b\x00\x00\xff\xff\xad\x41\xde\x8f\x5e\x05\x00\x00" func idtablestakingAdminCapability_end_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1830,7 +1917,7 @@ func idtablestakingAdminCapability_end_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/capability_end_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0xf8, 0x4b, 0x45, 0x98, 0x5d, 0xd4, 0x6d, 0x7e, 0x79, 0xea, 0x39, 0xaf, 0xe4, 0x9e, 0x62, 0xbe, 0xc6, 0xe2, 0x1c, 0x59, 0xb9, 0x98, 0x81, 0x9f, 0xb8, 0x58, 0xbe, 0xd1, 0xb9, 0x7b, 0x94}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0xe8, 0x46, 0x80, 0xfa, 0x86, 0x18, 0x85, 0xdd, 0xa4, 0xf2, 0x3b, 0x47, 0x60, 0x5c, 0x35, 0x94, 0x4d, 0x3a, 0xa2, 0x2c, 0xc3, 0x36, 0x6b, 0x8c, 0x2a, 0xfb, 0xc5, 0x3d, 0x7b, 0x29, 0x9}} return a, nil } @@ -1934,7 +2021,7 @@ func idtablestakingAdminChange_payoutCdc() (*asset, error) { return a, nil } -var _idtablestakingAdminEnd_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x0c\x45\xba\x9b\xb6\xc1\x69\x28\x18\x72\x28\xb5\xe9\x35\xac\x56\x23\x6b\x6b\x79\x46\xec\x8e\xac\x96\xe0\xef\x5e\x56\x7f\x9c\xb8\x89\xf7\x62\xf0\xce\x7b\xef\xa7\xd9\xe7\x8e\xad\x78\xc5\xf7\x46\xfa\xcd\xe3\xce\x14\x0d\x6d\xd5\x1c\x1c\xef\x51\x79\x39\x62\xf1\xfe\x62\x91\x24\x79\x8e\x5d\xed\x02\xd4\x1b\x0e\xc6\xaa\x13\x06\x55\x15\x59\x75\x27\x6a\xfe\x82\xb8\x0c\xd0\x9a\x40\xad\xd8\x1a\x86\x4b\x04\x35\x5e\x03\x0c\x98\x7a\x08\x53\x96\xe4\x79\xf4\xd9\x28\xac\x1c\x0b\xc7\x34\x29\xb8\x7c\x0e\x13\x41\xd4\x1d\xe5\x44\xcf\x2a\x07\xe2\xab\xb8\x10\xb5\x7d\xed\x6c\xfd\x1a\x76\x91\x75\xc3\xc8\xa7\xe9\xde\x53\xd5\xc5\x11\x96\x92\x02\x7a\xa7\x35\x1c\x87\xae\xaa\x9c\x75\xc4\x3a\xc8\x28\xda\xcd\x71\x01\x53\x5e\x41\xda\x13\x31\x8a\xce\x1e\x48\x43\x92\xbc\x01\x48\x5d\x19\x56\x78\xd9\xaa\x77\xbc\x5f\xe1\x41\xa4\x39\x2f\xf1\x92\x24\x00\x90\xe7\x78\x12\x6b\x1a\x9c\x8c\x77\x71\x75\xa8\xc4\xc3\x44\x14\xf2\xc4\x96\xa0\x32\x20\x6f\x1e\x31\xac\x16\xeb\xf2\xe8\x18\x52\xfc\x26\xab\x83\x45\x43\x0a\x13\xff\xfc\x49\xd5\x0a\x77\xef\x9f\x21\x1b\x24\x63\x5e\xeb\xa9\x35\x9e\x52\x63\xad\xae\x60\x3a\xad\xd3\x07\xf1\x5e\xfa\x5f\xa6\xe9\x68\x89\xbb\xb5\xb5\xd2\xb1\x46\x40\x4c\x27\xcf\x51\x0c\x33\x1f\x71\x99\xff\x71\xe2\x09\xd4\x54\xd9\xcc\x84\x2f\x88\x69\x59\x50\xf1\x66\x4f\xd9\xe8\xf5\xf9\x26\xe8\xd7\x34\xf6\x69\xf5\x41\xd1\xb2\xe9\x77\x18\xdb\x8e\x76\x3f\x8c\xd6\xcb\x4b\x70\x3c\xf7\xf7\x68\x0d\x3b\x9b\x2e\xbe\x49\xd7\x94\x60\xd1\x99\xff\x8a\xfe\x52\x82\xe8\xb6\x18\x3d\xce\xe3\x96\xe8\x0f\xd9\x4e\xe9\xcd\x0e\xae\xbe\x28\x0b\xa4\xeb\xb6\xf5\x72\xa2\xf2\xc9\x05\x8d\x2f\xfc\xca\x70\x43\x43\x5c\xce\xf8\x63\xeb\xd2\x65\x72\x63\x34\x56\x6b\x37\x14\x2b\x9d\xb1\xce\xc9\xbf\x00\x00\x00\xff\xff\x3e\x55\xc6\xa8\x7f\x03\x00\x00" +var _idtablestakingAdminEnd_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\xcf\x6b\xdb\x4e\x10\xc5\xef\xfa\x2b\x1e\x3e\x04\x19\xbe\x48\xf0\x3d\x8a\xb6\x21\x3f\x5a\x30\xe4\x50\x6a\xd3\x6b\x58\xad\x46\xd6\xd6\xf2\x8c\xd8\x1d\x59\x2d\xc1\xff\x7b\x59\x49\x76\xe2\x26\xde\x8b\x40\x3b\xef\xbd\x8f\x66\x46\x6e\xdf\x89\x57\x7c\x6b\x65\x58\x3d\x6e\x4c\xd9\xd2\x5a\xcd\xce\xf1\x16\xb5\x97\x3d\x16\xef\x2f\x16\x49\x92\xe7\xd8\x34\x2e\x40\xbd\xe1\x60\xac\x3a\x61\x50\x5d\x93\x55\x77\xa0\xf6\x0f\x88\xab\x00\x6d\x08\xd4\x89\x6d\x60\xb8\x42\x50\xe3\x35\xc0\x80\x69\x80\x30\x65\x49\x9e\x47\x9f\x95\xc2\xca\xbe\x74\x4c\xb3\x82\xab\xe7\x30\x13\x44\xdd\x5e\x0e\xf4\xac\xb2\x23\xbe\x88\x0b\x51\x3b\x34\xce\x36\xaf\x61\x67\x59\x3f\x96\xfc\x37\xdf\x7b\xaa\xfb\x58\xc2\x52\x51\xc0\xe0\xb4\x81\xe3\xd0\xd7\xb5\xb3\x8e\x58\x47\x19\x45\xbb\x53\x5c\xc0\x9c\x57\x92\x0e\x44\x8c\xb2\xb7\x3b\xd2\x90\x24\x6f\x00\x52\x57\x85\x02\x2f\x6b\xf5\x8e\xb7\x05\xee\x45\xda\xe3\x12\x2f\x49\x02\x00\x79\x8e\x27\xb1\xa6\xc5\xc1\x78\x17\x5b\x87\x5a\x3c\x4c\x44\x21\x4f\x6c\x09\x2a\x23\xf2\xea\x11\x63\x6b\x71\x57\xed\x1d\x43\xca\x5f\x64\x75\xb4\x68\x49\x61\xe2\xcb\x1f\x54\x17\xb8\x79\x3f\x86\x6c\x94\x4c\x79\x9d\xa7\xce\x78\x4a\x8d\xb5\x5a\xc0\xf4\xda\xa4\xf7\xe2\xbd\x0c\x3f\x4d\xdb\xd3\x12\x37\x77\xd6\x4a\xcf\x1a\x01\x31\x9f\x3c\x47\x39\xd6\x7c\xc4\x65\xfe\xc5\x89\x27\x50\x5b\x67\x27\x26\x7c\x46\x4c\xcb\x82\x8a\x37\x5b\xca\x26\xaf\x4f\x57\x41\xbf\xa4\x71\x9f\x8a\x0f\x16\x2d\x9b\x9f\x63\xd9\x7a\xb2\xfb\x6e\xb4\x59\x9e\x83\xe3\xb9\xbd\x45\x67\xd8\xd9\x74\xf1\x20\x7d\x5b\x81\x45\x4f\xfc\x17\xf4\xe7\x25\x88\x6e\x8b\xc9\xe3\x38\x75\x89\x7e\x93\xed\x95\xde\xf4\xe0\xe2\x8b\xb2\x40\x7a\xd7\x75\x5e\x0e\x54\x3d\xb9\xa0\x71\xc2\xaf\x0c\x57\x34\xc4\xd5\x09\x7f\xda\xba\x74\x99\x5c\x29\x8d\xab\xb5\x19\x17\x2b\x65\x1a\xbe\xc6\x3f\xe3\x21\x0e\x85\x7c\x81\xff\x4f\xa0\xc7\xe4\x6f\x00\x00\x00\xff\xff\x8d\x3c\x5c\x65\x91\x03\x00\x00" func idtablestakingAdminEnd_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1950,11 +2037,11 @@ func idtablestakingAdminEnd_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/end_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa5, 0xd5, 0xe5, 0x1d, 0x36, 0xba, 0x41, 0xf1, 0xae, 0xd2, 0x8d, 0x31, 0x74, 0x62, 0x19, 0xb2, 0x61, 0x6b, 0x50, 0x1f, 0x71, 0xba, 0x69, 0x3e, 0x60, 0x96, 0x66, 0xa, 0xc, 0x6, 0x77, 0xa7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8a, 0x39, 0xa5, 0x67, 0xa9, 0xac, 0xdd, 0x37, 0xb9, 0xd1, 0xa, 0x19, 0x7d, 0x6a, 0xea, 0xd1, 0xc7, 0x67, 0x66, 0x30, 0x20, 0x98, 0x41, 0x85, 0x6a, 0x3c, 0x10, 0x5, 0x47, 0x5f, 0xc4, 0x20}} return a, nil } -var _idtablestakingAdminEnd_epoch_change_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\x4d\x6b\xdb\x40\x10\xbd\xeb\x57\x3c\x7c\x08\x32\x04\xe9\x52\x7a\x10\x6d\x83\xd3\x34\x60\xc8\x21\xd4\x6e\xaf\x61\xb5\x1a\x59\x5b\x4b\x3b\x62\x77\x64\x25\x04\xff\xf7\xb2\xfa\x70\x9b\x3a\xee\x5e\x04\xda\xf7\x35\x3b\xcf\x34\x2d\x3b\xc1\x7d\xcd\xfd\xfa\x6e\xab\xf2\x9a\x36\xa2\xf6\xc6\xee\x50\x3a\x6e\xb0\x38\xbf\x58\x44\x51\x9a\x62\x5b\x19\x0f\x71\xca\x7a\xa5\xc5\xb0\x05\x95\x25\x69\x31\x07\xaa\x5f\x40\xb6\xf0\x90\x8a\x40\x2d\xeb\x0a\xca\x16\xf0\xa2\x9c\x78\x28\x58\xea\xc1\x96\x92\x28\x4d\x83\xce\x5a\xa0\xb9\xc9\x8d\xa5\x89\x61\x8b\x27\x3f\x25\x08\xbc\x86\x0f\xf4\x24\xbc\x27\xfb\xc6\xce\x07\x6e\x5f\x19\x5d\xfd\x31\x3b\xd1\xba\x01\x72\x3d\xdd\x3b\x2a\xbb\x00\xb1\x5c\x90\x47\x6f\xa4\x82\xb1\xbe\x2b\x4b\xa3\x0d\x59\x19\x68\x14\xe4\x66\x3b\x8f\xc9\x2f\x27\xe9\x89\x2c\xf2\x4e\xef\x49\x7c\x14\xfd\x15\x20\x36\x85\xcf\xf0\xba\x11\x67\xec\x2e\xc3\x2d\x73\x7d\xbc\x0e\xc3\x3d\xaa\x17\xee\x24\xc3\x8f\x7b\xf3\xfc\xf1\xc3\x12\xaf\x51\x04\x00\x69\x8a\x07\xd6\xaa\xc6\x41\x39\x13\x5e\x13\x25\x3b\xa8\x90\x8e\x1c\x59\x4d\x10\x1e\xa6\x58\xdf\x61\x78\x6d\xac\x8a\xc6\x58\x70\xfe\x8b\xb4\x0c\x12\x35\x09\x54\xf8\xf9\x9d\xca\x0c\x57\xe7\x9b\x49\x06\xca\xe8\xd7\x3a\x6a\x95\xa3\x58\x69\x2d\x19\x54\x27\x55\x7c\xcb\xce\x71\xff\x53\xd5\x1d\x2d\x71\xb5\xd2\x9a\x3b\x2b\x21\x20\xa6\x93\xa6\xc8\x07\xcc\x7b\xb9\xd4\xbf\x71\xc2\xf1\x54\x97\xc9\x9c\x09\x9f\x11\xdc\x12\x2f\xec\xd4\x8e\x92\x51\xeb\xd3\xc5\xa0\x5f\xe2\x50\xb1\xec\x9d\xee\x25\xd3\x77\x80\x6d\x46\xb9\x47\x25\xd5\xf2\x64\x1c\xce\xcd\x0d\x5a\x65\x8d\x8e\x17\x5f\xb9\xab\x0b\x58\x96\x39\xff\x9b\xf4\xa7\x5e\x04\xb5\xc5\xa8\x71\x1c\x5f\x89\x9e\x49\x77\x42\xf3\x92\xce\x46\x4a\x3c\xc9\xb7\xd0\xe1\x6d\x68\xc4\xb8\xda\xf8\xb4\xe4\xe5\x7f\x58\xab\xb6\x75\x7c\xa0\xe2\xc1\x78\x09\x5d\xb9\x88\x25\x5b\xcc\xd3\x8e\xbd\x8d\x2f\x42\x43\x39\x87\x20\x3e\x9e\xa7\x38\x46\xbf\x03\x00\x00\xff\xff\x46\x98\x5c\x53\xc1\x03\x00\x00" +var _idtablestakingAdminEnd_epoch_change_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x0c\x41\x82\x52\x7a\x10\x6d\x43\xfe\x34\x60\xc8\x21\xd4\x6e\xaf\x61\xb5\x1a\x59\x5b\x4b\x3b\x62\x77\x64\x25\x04\x7f\xf7\xb2\xfa\xe3\x36\x75\xdc\xbd\x08\xb4\x33\xef\xfd\x66\xe7\x99\xa6\x65\x27\xb8\xaf\xb9\x5f\xdd\x6d\x54\x5e\xd3\x5a\xd4\xce\xd8\x2d\x4a\xc7\x0d\x16\xa7\x17\x8b\x28\x4a\x53\x6c\x2a\xe3\x21\x4e\x59\xaf\xb4\x18\xb6\xa0\xb2\x24\x2d\x66\x4f\xf5\x0b\xc8\x16\x1e\x52\x11\xa8\x65\x5d\x41\xd9\x02\x5e\x94\x13\x0f\x05\x4b\x3d\xd8\x52\x12\xa5\x69\xd0\x59\x09\x34\x37\xb9\xb1\x34\x75\xd8\xe2\xc9\x4f\x04\xa1\xaf\xe1\x3d\x3d\x09\xef\xc8\xbe\xb1\xf3\xa1\xb7\xaf\x8c\xae\xfe\x98\x1d\xdb\xba\xa1\xe4\x72\xba\x77\x54\x76\xa1\xc4\x72\x41\x1e\xbd\x91\x0a\xc6\xfa\xae\x2c\x8d\x36\x64\x65\x68\xa3\x20\x37\xdb\x79\x4c\x7e\x39\x49\x4f\x64\x91\x77\x7a\x47\xe2\xa3\xe8\x2f\x80\xd8\x14\x3e\xc3\xeb\x5a\x9c\xb1\xdb\x0c\x37\xcc\xf5\xe1\x32\x0c\xf7\xa8\x5e\xb8\x93\x0c\x3f\xee\xcd\xf3\xa7\x8f\x4b\xbc\x46\x11\x00\xa4\x29\x1e\x58\xab\x1a\x7b\xe5\x4c\x78\x4d\x94\xec\xa0\x02\x1d\x39\xb2\x9a\x20\x3c\x4c\xb1\xba\xc3\xf0\xda\xb8\x2e\x1a\x63\xc1\xf9\x2f\xd2\x32\x48\xd4\x24\x50\xe1\xe7\x77\x2a\x33\x5c\x9c\x6e\x26\x19\x5a\x46\xbf\xd6\x51\xab\x1c\xc5\x4a\x6b\xc9\xa0\x3a\xa9\xe2\x1b\x76\x8e\xfb\x9f\xaa\xee\x68\x89\x8b\x6b\xad\xb9\xb3\x12\x00\x31\x9d\x34\x45\x3e\xd4\xbc\xc7\xa5\xfe\xc5\x09\xc7\x53\x5d\x26\x33\x13\xbe\x20\xb8\x25\x5e\xd8\xa9\x2d\x25\xa3\xd6\xe7\xb3\xa0\x5f\xe3\x10\xb1\xec\x9d\xec\x25\xd3\x77\x28\x5b\x8f\x72\x8f\x4a\xaa\xe5\xd1\x38\x9c\xab\x2b\xb4\xca\x1a\x1d\x2f\x6e\xb9\xab\x0b\x58\x96\x99\xff\x0d\xfd\x31\x17\x41\x6d\x31\x6a\x1c\xc6\x57\xa2\x67\xd2\x9d\xd0\xbc\xa4\x93\x91\x12\x4f\xf2\x2d\x64\x78\x13\x12\x31\xae\x36\x3e\x2e\x79\xf9\x9f\xae\xeb\xb6\x75\xbc\xa7\xe2\xc1\x78\x09\x59\x39\x5b\x4b\xb6\x98\xa7\x1d\x73\x1b\x9f\x2d\x0d\xe1\x1c\x40\x7c\x60\x18\xb8\x6e\xc3\x0e\xc9\x65\xf8\x30\xcf\x75\x88\x7e\x07\x00\x00\xff\xff\x68\xee\x57\x96\xd3\x03\x00\x00" func idtablestakingAdminEnd_epoch_change_payoutCdcBytes() ([]byte, error) { return bindataRead( @@ -1970,7 +2057,7 @@ func idtablestakingAdminEnd_epoch_change_payoutCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/end_epoch_change_payout.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xe1, 0xca, 0x8e, 0x80, 0xb0, 0x14, 0x45, 0xf0, 0x71, 0xcf, 0x1, 0xe5, 0x2d, 0x72, 0xfa, 0xe3, 0xdc, 0x34, 0x68, 0x34, 0x37, 0x9b, 0x42, 0x1e, 0x3, 0x4d, 0xf4, 0x97, 0xac, 0x8d, 0xa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x3f, 0xf, 0xc8, 0x75, 0x2e, 0x7b, 0xe1, 0x35, 0x4d, 0x36, 0x48, 0x6d, 0x3c, 0xa5, 0x9c, 0x43, 0x74, 0xdf, 0x63, 0xab, 0xba, 0xae, 0x2c, 0xf9, 0xf4, 0xf4, 0xa, 0xb6, 0xd9, 0xbb, 0xb3}} return a, nil } @@ -1994,7 +2081,7 @@ func idtablestakingAdminEnd_stakingCdc() (*asset, error) { return a, nil } -var _idtablestakingAdminMove_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6f\x82\x40\x10\x85\xef\xfc\x8a\x17\x0e\x06\x2f\x70\x37\x6d\x8d\xad\x69\x62\xd2\x43\x53\x4d\xef\xc3\x3a\x08\x15\x76\xc8\xee\xa0\x4d\x8c\xff\xbd\x61\xd1\x46\xab\x9d\x0b\x09\xbc\x79\xef\x63\x5e\xd5\xb4\xe2\x14\xaf\xb5\xec\x17\xf3\x15\xe5\x35\x2f\x95\xb6\x95\xdd\xa0\x70\xd2\x20\xbe\xfd\x10\x47\x51\x96\x61\x55\x56\x1e\xea\xc8\x7a\x32\x5a\x89\x45\x23\x3b\xf6\x50\xd9\xb2\xf5\xc8\x59\xf7\xcc\x16\x79\x67\xb6\xac\x3e\x8a\x2e\x95\x87\x28\x02\x80\x2c\xc3\x9b\x18\xaa\xb1\x23\x57\xf5\xfe\x28\xc4\x81\xe0\xb8\x60\xc7\xd6\x30\x54\xa0\x25\x63\x31\x47\xc8\xc7\x6c\xdd\x54\x16\x92\x7f\xb1\xd1\x60\x51\xb3\x82\xfa\x97\x1f\x5c\x4c\x30\xba\x65\x4d\xc3\xca\x90\xd7\x3a\x6e\xc9\x71\x42\xc6\xe8\x04\xd4\x69\x99\x3c\x8b\x73\xb2\xff\xa4\xba\xe3\x31\x46\x33\x63\xa4\xb3\x3a\xc6\x21\xe8\x4f\x8c\x79\xd0\xdc\xe3\xa2\xbf\x38\xfd\x78\xae\x8b\xf4\xcc\x84\x47\xf4\x69\xa9\x57\x71\xb4\xe1\x74\xf0\x7a\xf8\x17\xf4\x29\xe9\x8f\x3e\xb9\xd3\x46\x7a\x7a\x06\xd9\x72\xb0\x7b\x27\x2d\xc7\xbf\xc1\xfd\x4c\xa7\x68\xc9\x56\x26\x89\x5f\xa4\xab\xd7\xb0\xa2\x67\xfe\x2b\x7a\x7f\xaa\x38\x70\xc6\x83\xc7\x71\xb8\x12\x7f\xb3\xe9\x94\x2f\x6e\x70\xf5\x47\x69\x5f\xf3\x2a\x94\x9c\x9c\xf7\x8e\x3f\x01\x00\x00\xff\xff\x2f\xf8\xa5\xef\x44\x02\x00\x00" +var _idtablestakingAdminMove_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\xab\x9b\x40\x14\x85\xf7\xfe\x8a\x83\x8b\x87\xd9\x28\x74\x29\x6d\x1f\xaf\x49\x0b\x81\x2e\x4a\x13\xba\xbf\x4e\xae\xd1\x46\xe7\xca\xcc\x35\x16\x42\xfe\x7b\x99\x31\x29\x49\x93\x37\x1b\x41\x8f\xe7\x7c\x73\x4e\xdb\x0f\xe2\x14\xdf\x3a\x99\xd6\xab\x2d\x55\x1d\x6f\x94\x0e\xad\xdd\xa3\x76\xd2\x23\x7d\xfc\x90\x26\x49\x51\x60\xdb\xb4\x1e\xea\xc8\x7a\x32\xda\x8a\x45\x2f\x47\xf6\x50\x39\xb0\xf5\xa8\x58\x27\x66\x8b\x6a\x34\x07\x56\x9f\x24\xb7\xca\x53\x92\x00\x40\x51\xe0\xbb\x18\xea\x70\x24\xd7\x06\x7f\xd4\xe2\x40\x70\x5c\xb3\x63\x6b\x18\x2a\xd0\x86\xb1\x5e\x21\xe6\xe3\x6d\xd7\xb7\x16\x52\xfd\x66\xa3\xd1\xa2\x63\x05\x85\x97\x3f\xb9\x2e\xf1\xf2\xc8\x9a\xc7\x5f\xe6\xbc\xc1\xf1\x40\x8e\x33\x32\x46\x4b\xd0\xa8\x4d\xf6\x45\x9c\x93\xe9\x17\x75\x23\x2f\xf0\xf2\x66\x8c\x8c\x56\x17\x38\x45\xfd\x85\xb1\x8a\x9a\x67\x5c\xf4\x3f\x4e\x38\x9e\xbb\x3a\xbf\x32\xe1\x13\x42\x5a\xee\x55\x1c\xed\x39\x9f\xbd\x3e\xbe\x0b\xfa\x39\x0b\xa5\x97\x4f\xd6\xc8\x2f\xcf\x28\xdb\xcc\x76\x3f\x48\x9b\xc5\xbf\xe0\x70\x5e\x5f\x31\x90\x6d\x4d\x96\x2e\x65\xec\x76\xb0\xa2\x57\xfe\x3b\x7a\x7f\x99\x38\x72\xa6\xb3\xc7\x79\x6e\x89\xff\xb0\x19\x95\x6f\x3a\xb8\xbb\x51\x1e\x66\xde\xc6\x91\x33\xcb\xd3\xd7\x41\x4c\xb3\x0c\xad\xb1\x2b\xf1\xe1\xea\x74\xfe\x1b\x00\x00\xff\xff\x57\x3b\x5b\xb4\x56\x02\x00\x00" func idtablestakingAdminMove_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2010,11 +2097,11 @@ func idtablestakingAdminMove_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/move_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8a, 0xe6, 0x9d, 0xb1, 0xe1, 0x26, 0x3, 0x9, 0x1e, 0x94, 0xc0, 0xcd, 0x21, 0x66, 0x45, 0xe1, 0xab, 0xcd, 0x70, 0x3c, 0xff, 0x6a, 0xc3, 0x43, 0xd9, 0x93, 0x7d, 0x60, 0x43, 0xc1, 0xea, 0xaf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0x12, 0x76, 0x16, 0xfb, 0xc4, 0x12, 0x4, 0xa9, 0x4, 0x1, 0x23, 0xe9, 0x22, 0x31, 0x3c, 0x95, 0x93, 0x2e, 0x67, 0x21, 0x9a, 0xcb, 0xeb, 0x32, 0x88, 0x84, 0x4b, 0x2c, 0x36, 0x3e, 0xea}} return a, nil } -var _idtablestakingAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x8f\xda\x30\x10\xc5\xef\xf9\x14\x4f\x39\xa0\xe4\x92\xdc\x51\x29\xa2\x45\x95\x90\x7a\xa8\x00\xf5\x3e\x38\x13\x92\xe2\xd8\x91\x3d\x29\x8b\x10\xdf\x7d\xe5\xfc\x59\xc1\xc2\xfa\x12\x29\x79\xf3\xde\x2f\x6f\x5c\x37\xad\x75\x82\x5f\xda\x9e\x37\xeb\x3d\x1d\x34\xef\x84\x4e\xb5\x39\xa2\x74\xb6\x41\xfc\xfc\x21\x8e\xa2\x3c\xc7\xbe\xaa\x3d\xc4\x91\xf1\xa4\xa4\xb6\x06\x2d\x5d\x3c\x1c\x9f\xc9\x15\x1e\x62\x41\x5a\x43\x2a\x86\x17\x3a\x71\x01\x63\x0b\xf6\x51\x74\x3f\x71\x8d\x22\x00\xc8\x73\xfc\xb6\x8a\x34\xfe\x93\xab\x43\x0e\x4a\xeb\x40\x70\x5c\xb2\x63\xa3\x38\xb8\x05\xa7\xcd\x1a\x3d\x07\x56\x45\x53\x1b\xd8\xc3\x3f\x56\xd2\x5b\x68\x16\x50\x78\xb9\xe5\x72\x8e\xd9\x33\x73\xd6\x8f\x0c\x79\xad\xe3\x96\x1c\x27\xa4\x94\xcc\x41\x9d\x54\xc9\x0f\xeb\x9c\x3d\xff\x25\xdd\x71\x8a\xd9\x4a\x29\xdb\x19\x49\x71\xed\xf5\x23\xe3\xa1\xd7\xbc\xe2\xa2\xcf\x38\xe1\x78\xd6\x65\x36\x31\x61\x81\x90\x96\x79\xb1\x8e\x8e\x9c\x0d\x5e\xdf\xbe\x04\xfd\x9e\x84\xf2\xe7\x2f\xb6\x92\x8d\xcf\x5e\xb6\x1b\xec\xfe\x90\x54\xe9\x47\x70\x38\xcb\x25\x5a\x32\xb5\x4a\xe2\x9f\xb6\xd3\xa1\x7c\x99\xf8\x1f\xe8\xfd\xb8\xea\x9e\x33\x1e\x3c\x6e\x43\x4b\xfc\xc6\xaa\x13\xbe\xeb\x20\x94\xec\xbb\xa6\x21\x77\xc1\xe2\xf1\xff\x32\x45\x5a\x75\x9a\x84\xb7\xc3\x05\x48\xd2\xd7\x45\x64\x2d\x5d\x26\xc9\xe8\x35\xa5\xde\xde\x03\x00\x00\xff\xff\xb9\x2a\x7a\x88\x8a\x02\x00\x00" +var _idtablestakingAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x0f\x1f\x82\x04\x45\xa2\x57\xd1\x34\xa4\x49\x0b\x81\x1e\x4a\x1c\x7a\x1f\xaf\x46\x91\x9a\xd5\x8e\x98\x1d\xd5\x35\x21\xff\xbd\xac\x64\x95\xa4\x76\xf6\x22\x90\xde\xbe\xf7\xe9\xcd\xf4\xc3\x28\x6a\xf8\xe6\x65\x7f\x77\xfb\x40\x3b\xcf\x5b\xa3\xa7\x3e\x3c\xa2\x55\x19\xb0\x39\xfd\xb0\xc9\xb2\xaa\xc2\x43\xd7\x47\x98\x52\x88\xe4\xac\x97\x80\x91\x0e\x11\xca\x7b\xd2\x26\xc2\x04\xe4\x3d\xac\x63\x44\xa3\x27\x6e\x10\xa4\xe1\x98\x65\xaf\x6f\x3c\x67\x19\x00\x54\x15\xbe\x8b\x23\x8f\xdf\xa4\x7d\xca\x41\x2b\x0a\x82\x72\xcb\xca\xc1\x71\x72\x4b\x4e\x77\xb7\x98\x39\x70\xdd\x0c\x7d\x80\xec\x7e\xb1\xb3\xd9\xc2\xb3\x81\xd2\xcb\x7b\x6e\x6b\x5c\x9c\x32\x97\xf3\x95\x25\x6f\x54\x1e\x49\x39\x27\xe7\xac\x06\x4d\xd6\xe5\x5f\x44\x55\xf6\x3f\xc9\x4f\x5c\xe0\xe2\xda\x39\x99\x82\x15\x78\x9e\xf5\x47\xc6\xdd\xac\x39\xc7\x45\xff\xe3\xa4\x13\xd9\xb7\xe5\xca\x84\x4b\xa4\xb4\x32\x9a\x28\x3d\x72\xb9\x78\x7d\x7a\x17\xf4\x73\x9e\xca\xaf\xcf\x4c\xa5\x3c\x3e\x67\xd9\x76\xb1\xfb\x41\xd6\x15\xff\x82\xd3\xb9\xba\xc2\x48\xa1\x77\xf9\xe6\x46\x26\x9f\xca\xb7\x95\xff\x0d\x7d\x3c\x8e\x7a\xe6\xdc\x2c\x1e\x2f\x4b\x4b\xfc\x87\xdd\x64\xfc\xaa\x83\x54\x72\x9c\x86\x81\xf4\x80\xcb\xb7\xff\x57\x3a\xf2\x6e\xf2\x64\x7c\xbf\x2c\x40\x5e\x9c\x2f\xa2\x1c\xe9\xb0\x4a\x5a\xd1\xaf\xa3\xb8\xee\x26\x95\xcd\x5a\xe3\xe3\x87\x75\x7f\xb6\x4b\x4c\xbd\xe6\xad\x64\x2f\x7f\x03\x00\x00\xff\xff\xca\xd7\x91\xe9\xae\x02\x00\x00" func idtablestakingAdminPay_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -2030,7 +2117,7 @@ func idtablestakingAdminPay_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/pay_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4f, 0x8d, 0xa7, 0xac, 0x1d, 0x3a, 0xd, 0x11, 0x73, 0x2b, 0x80, 0x21, 0x2b, 0xc6, 0x56, 0xc, 0x6, 0x47, 0xe2, 0xfa, 0xd7, 0x8b, 0x96, 0xda, 0x84, 0x45, 0x19, 0xc9, 0x73, 0x5d, 0x9d, 0xff}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x72, 0xa1, 0x77, 0xd1, 0xb0, 0xeb, 0xf3, 0x3e, 0x3d, 0x4e, 0x76, 0xb5, 0xee, 0x90, 0xec, 0xf4, 0xd4, 0xa5, 0x89, 0xb1, 0xe2, 0xc2, 0xf1, 0x5b, 0x49, 0x6b, 0x10, 0x62, 0xf2, 0x54, 0xaf, 0x4a}} return a, nil } @@ -2054,7 +2141,7 @@ func idtablestakingAdminRemove_approved_nodesCdc() (*asset, error) { return a, nil } -var _idtablestakingAdminRemove_invalid_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x51\x8b\xdb\x30\x0c\xc7\xdf\xf3\x29\xfe\xf4\xe1\x48\x61\x24\xef\x61\xdb\x71\xb7\x32\x28\x8c\x31\xd6\x63\xef\xaa\xa3\x34\xde\x5c\x2b\xd8\x72\x3b\x38\xfa\xdd\x87\x9d\xe6\xd8\xd6\x3b\xbd\x84\xc4\xd2\x4f\x3f\x45\xb6\xc7\x49\x82\xe2\xb3\x93\xf3\x76\xf3\x44\x7b\xc7\x3b\xa5\x5f\xd6\x1f\x30\x04\x39\x62\x75\x7b\xb0\xaa\xaa\xb6\xc5\xd3\x68\x23\x34\x90\x8f\x64\xd4\x8a\x07\xfb\x3e\x42\x47\x46\xbc\xd6\x53\x2a\x07\xef\x70\x1e\xad\x19\x11\x78\x48\x39\xc5\x4b\xcf\x11\x19\x71\xb6\x3a\xc2\xfa\x98\x86\xc1\x1a\xcb\x5e\x4b\x29\x57\xd5\x5f\xd8\xda\xf6\xb1\xc3\xf3\x4e\x83\xf5\x87\x0e\x8f\x22\xee\xb2\xc6\x73\x55\x01\x40\xdb\xe2\x8b\x18\x72\x38\x51\xb0\xd9\x10\x83\x04\x50\x6e\xc5\x81\xbd\x61\xa8\x14\xa5\xed\x06\x65\x02\x3c\xf4\x47\xeb\x21\xfb\x9f\x6c\xb4\x20\x1c\x2b\x28\x7f\xfc\xce\x43\x87\xbb\xdb\x69\x9b\x52\x32\xf7\x9b\x02\x4f\x14\xb8\x26\x63\xb4\x03\x25\x1d\xeb\x47\x09\x41\xce\x3f\xc8\x25\x5e\xe3\xee\xc1\x18\x49\x5e\xb3\x20\xae\xd1\xb6\xd8\x97\x9c\xd7\xbc\xe8\x7f\x9d\x1c\x91\xdd\xd0\x2c\x4e\xf8\x80\xdc\xad\x89\x2a\x81\x0e\xdc\xcc\xac\xf7\x6f\x8a\x7e\xac\xf3\xda\xba\x57\xf6\xd9\x5c\x9f\x25\x6d\x37\xe3\xbe\x91\x8e\xeb\x97\xc6\x39\xee\xef\x31\x91\xb7\xa6\x5e\x7d\x92\xe4\x7a\x78\xd1\xc5\xff\x1f\xfb\x97\x25\x67\xda\x6a\x66\x5c\xe6\xbf\xc4\xbf\xd9\x24\xe5\x65\x49\x37\x23\x35\x81\x8f\x72\xe2\xad\x3f\x91\xb3\xfd\xd7\x7c\x1d\x6a\x9a\xa6\x20\x27\x2e\x6f\xdb\x4d\xec\x60\xfb\xb8\x40\x2f\x7f\x02\x00\x00\xff\xff\xe8\xd6\x99\x50\xa3\x02\x00\x00" +var _idtablestakingAdminRemove_invalid_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x0c\x45\xba\x8b\xb6\xc1\x69\x28\x18\x42\x29\x75\xe8\x7d\xbc\x1a\x59\xd3\xae\x77\xc4\xee\xc8\x2e\x04\x7f\xf7\xb2\x92\x1d\xf2\xcf\x73\x11\x68\x67\xde\xfb\xcd\xbe\x95\xfd\xa0\xd1\xf0\xdd\xeb\x71\x7d\xff\x48\x5b\xcf\x1b\xa3\xbf\x12\x76\xe8\xa2\xee\xb1\x78\x7f\xb0\x28\x8a\xba\xc6\x63\x2f\x09\x16\x29\x24\x72\x26\x1a\xc0\xa1\x4d\xb0\x9e\x91\xce\xf3\x34\x4e\x07\x9f\x70\xec\xc5\xf5\x88\xdc\x8d\xb9\x25\x68\xcb\x09\x59\xe2\x28\xd6\x43\x42\x1a\xbb\x4e\x9c\x70\xb0\x69\x94\x8b\xe2\x85\x6c\x29\x6d\x6a\xf0\xb4\xb1\x28\x61\xd7\xe0\x4e\xd5\x9f\x96\x78\x2a\x0a\x00\xa8\x6b\x3c\xa8\x23\x8f\x03\x45\xc9\x84\xe8\x34\x82\xb2\x15\x47\x0e\x8e\x61\x3a\x21\xad\xef\x31\x6d\x80\x55\xbb\x97\x00\xdd\xfe\x61\x67\x93\x84\x67\x03\xe5\x9f\xbf\xb8\x6b\x70\xf3\x7e\xdb\x6a\x1a\x99\xfd\x86\xc8\x03\x45\x2e\xc9\x39\x6b\x40\xa3\xf5\xe5\x9d\xc6\xa8\xc7\xdf\xe4\x47\x5e\xe2\x66\xe5\x9c\x8e\xc1\x32\x20\xce\x55\xd7\xd8\x4e\x3d\x1f\x71\xd1\x5b\x9c\x5c\x89\x7d\x57\x5d\x98\xf0\x05\xd9\xad\x4a\xa6\x91\x76\x5c\xcd\x5a\x9f\xaf\x82\x7e\x2d\x73\x6c\xcd\x07\x79\x56\xe7\xef\xd4\xb6\x99\xe5\x7e\x92\xf5\xcb\x67\xe3\x5c\xb7\xb7\x18\x28\x88\x2b\x17\xdf\x74\xf4\x2d\x82\xda\x85\xff\x15\xfd\x73\xc8\x59\x6d\x31\x6b\x9c\xe6\x5b\xe2\x7f\xec\x46\xe3\x17\x77\xf0\x6a\xa3\x2a\xb1\xad\x86\x21\xea\x81\xdb\x07\x49\x96\x13\x5e\x5e\x69\x8d\xbc\xd7\x03\xaf\xc3\x81\xbc\xb4\x3f\xf2\xc3\x29\x2f\x56\xa7\xff\x01\x00\x00\xff\xff\x90\x7f\xa1\x57\xb9\x02\x00\x00" func idtablestakingAdminRemove_invalid_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2070,7 +2157,7 @@ func idtablestakingAdminRemove_invalid_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/remove_invalid_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4a, 0x11, 0x96, 0x38, 0x1b, 0x3c, 0x48, 0xf6, 0x63, 0x35, 0x22, 0x35, 0x1f, 0x16, 0xff, 0x98, 0xe8, 0x52, 0xfb, 0xfd, 0x5f, 0x55, 0xbb, 0xc8, 0xeb, 0xb9, 0xd6, 0xcf, 0x53, 0x18, 0x1b, 0x6d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0x2e, 0x4, 0x44, 0x5, 0x11, 0x74, 0xed, 0x35, 0xd5, 0x12, 0x3e, 0x87, 0x55, 0x45, 0x89, 0x30, 0x16, 0xa9, 0x35, 0x7b, 0x87, 0x79, 0x7a, 0x5, 0x9f, 0x18, 0xac, 0xb6, 0x2a, 0x5e, 0xa3}} return a, nil } @@ -2194,7 +2281,27 @@ func idtablestakingAdminSet_non_operationalCdc() (*asset, error) { return a, nil } -var _idtablestakingAdminSet_slot_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x53\x41\x4f\x1b\x3d\x10\xbd\xe7\x57\xbc\x2f\x07\x14\xc4\xc7\xa6\x91\x4a\x85\xa2\xa6\x88\x16\x55\x8a\xca\xa1\x2a\xb4\x97\xaa\x87\xc1\x99\xcd\xba\x38\xf6\xca\x9e\x25\xac\x50\xfe\x7b\x65\x3b\x64\xb3\x90\x76\x2e\x51\xd6\x33\xef\xbd\x99\x79\xa3\x57\xb5\xf3\x82\xcf\xc6\xad\xe7\x57\xb7\x74\x67\xf8\x46\xe8\x5e\xdb\x25\x4a\xef\x56\x18\xbe\x7e\x18\x0e\x06\xe3\x31\x6e\x2b\x1d\x20\x9e\x6c\x20\x25\xda\x59\x04\x96\x00\xa9\x18\xc1\x38\x81\xd1\x2b\x2d\x01\xa5\xf3\x60\x52\x15\xac\x5b\x30\xa4\xad\x19\xa9\x3a\xe6\x5c\xe7\x14\x1d\x40\xf8\x3e\xb7\x32\x79\x07\xf2\x9e\x5a\x48\x45\x02\xe5\xac\x90\xb6\x19\x32\xa1\x45\xb0\x58\xfb\x02\x4f\x5b\x38\xbf\x60\x9f\xf5\xbe\x39\x7d\x5b\x60\x2e\x11\xb5\x09\xbc\x80\x38\xd4\xae\x6e\x0c\x09\xc7\x5a\xc2\x42\x27\xb9\xe4\xb7\x3c\x15\x05\xdc\x73\x1b\x10\x2a\x5d\x0a\x2f\x70\x32\x41\x70\xf9\x4d\x2a\x6e\x41\x46\x2f\x6d\xac\x5d\x6b\xa9\x92\x1a\xb6\xcd\x8a\x3d\xc5\xe4\x9d\x8c\x90\xe9\x27\xa7\x67\x83\xc1\xde\x54\x46\x5d\xa3\x53\xfc\xcc\x5d\xfe\x3a\xc6\xd3\x60\x00\x00\xe3\x31\xae\x9d\x22\x83\x07\xf2\x3a\x4e\x38\xcd\x8b\xe0\xb9\x64\xcf\x56\x71\x94\x1f\x19\xe7\x57\x48\x1b\xc0\xe5\x62\x15\xfb\xbd\xfb\xcd\x4a\x12\x84\x61\x01\xc5\x8f\xdf\xb8\x9c\xe2\xe8\xf5\xb6\x8a\x54\x92\xf9\x6a\xcf\x35\x79\x1e\x91\x52\x32\x05\x35\x52\x8d\x3e\x3a\xef\xdd\xfa\x07\x99\x86\x8f\x71\x74\xa9\x94\x6b\xac\x44\x81\xd8\xc6\x78\x8c\xbb\x94\x73\x48\x17\xbd\x94\x13\x23\xb0\x29\x8b\x67\x4d\x98\x21\xb2\x15\x41\x9c\xa7\x25\x17\x19\xeb\xfd\x5f\x85\x7e\x18\xc5\x39\x4e\x0f\xf8\xb1\xd8\xfe\xa6\xb4\x9b\x0c\xf7\x95\xa4\x3a\xde\x11\xc7\xb8\xb8\x40\x4d\x56\xab\xd1\xf0\x93\x6b\x4c\x5c\x90\x3c\xeb\xef\xa9\x0f\x5b\x93\x27\x9d\xc3\x8c\xb1\xc9\x53\xe2\x47\x56\x8d\x70\x7f\x06\x09\x14\xba\xc4\x9a\xb1\x70\x09\x36\xd4\xac\x74\xd9\x82\x1f\x49\x89\x69\xe1\xec\xbe\xf7\x51\xb3\xcf\xf6\xf0\xce\xf0\x0e\x4a\x97\x7b\xde\x2f\x0c\xdb\xa5\x54\xf8\x6f\x86\xb3\x3d\xba\xb4\xaa\xdc\xc4\xfe\x81\x91\x5f\x36\x2b\xb6\x82\x55\x13\x3a\xf6\x7f\xb1\x0e\xbb\xd9\x6c\x7b\x8b\xf1\x40\xbe\xd3\x70\xb5\x3b\x87\x29\x9e\xa2\x3f\xcf\xa7\xdb\x63\xdc\x60\x86\xa7\x4d\xaf\xaa\xbb\x9d\x2f\xdc\xe6\xbc\x73\xcc\x30\xe9\xb0\xa3\x7f\x77\xd8\xf1\x34\xf7\x0e\xbd\xdf\xe0\x01\x05\x85\xb6\x81\xbd\x8c\xee\x23\x78\x8f\xeb\xff\x2e\xbd\xbf\xee\x5e\x16\x66\x2f\xfe\x9f\x60\x72\x68\x00\x3d\x83\x16\x81\xe5\x66\x27\xb2\x77\xaf\x07\x24\x3e\x1b\x65\xf3\x27\x00\x00\xff\xff\x09\x74\xf0\x87\x37\x05\x00\x00" +var _idtablestakingAdminSet_open_access_node_slotsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xc1\x6a\xdb\x40\x10\xbd\xeb\x2b\x1e\x39\x14\x05\x82\xd4\x1e\x5a\x8a\x68\x1a\xd4\x2a\x05\x43\x48\x4b\xec\x1e\x7a\x5c\xaf\x46\xd6\x26\xf2\x8e\xd8\x1d\xd9\x31\xc6\xff\x5e\x76\x65\xb5\xa9\xe3\xce\x45\xb0\x9a\xf7\xe6\xcd\xbc\x67\xd6\x3d\x3b\xc1\xb7\x8e\xb7\xb3\x6a\xa1\x96\x1d\xcd\x45\x3d\x19\xbb\x42\xe3\x78\x8d\xb7\xcf\xb3\xea\xf6\x7e\x31\x5b\xfc\x5a\x94\x5f\xee\x6e\xcb\xaa\x7a\xb8\x9d\xcf\x93\x24\xcf\x73\x2c\x5a\xe3\x21\x4e\x59\xaf\xb4\x18\xb6\xf0\x24\x1e\xd2\x12\xb8\x27\x0b\xcb\x35\xc1\x77\x2c\x1e\x0d\x3b\x28\xad\xc9\xfb\xf8\xea\x23\xfc\xfb\x49\x93\x72\x14\xc1\x76\x58\x2f\xc9\x81\x9b\xe3\xbb\xb4\x4a\xe2\xcf\xc0\x1a\x91\xa4\x74\x0b\xea\x59\xb7\x57\x70\xb4\x52\xae\xee\x02\x35\x37\x68\x79\x8b\xb5\xb2\xbb\x71\x0c\x1e\xd9\x58\xaa\x61\x6c\x24\xee\x1d\x6d\x0c\x0f\x7e\x84\x66\xc7\x1d\x68\x17\xc9\x1d\x35\x8e\x7c\x4b\xf5\x0b\xf6\x24\x79\xb1\x5d\x1a\xc6\x97\x71\x89\x79\xd0\x55\xe0\xe7\xcc\xca\xbb\x0f\x97\xd8\x27\x09\x00\xe4\x39\xee\x58\xab\x0e\x1b\xe5\x4c\x38\xe4\xb8\x76\x60\x26\x47\x56\x13\x84\xa3\x8e\x59\x85\x78\x68\x94\xf5\xda\x58\xf0\xf2\x91\xb4\x44\x8a\x8e\x04\x2a\x3c\x3e\x50\x53\xe0\xcd\x6b\x53\xb2\x08\x19\xe7\xf5\x8e\x7a\xe5\x28\x55\x5a\x4b\x81\x72\x90\xb6\xd4\x9a\x07\x2b\x41\x11\x8e\x95\xe7\x58\xb2\x73\xbc\x3d\x27\x44\x9d\xce\x0f\xe5\xa9\x6b\xb2\x49\x04\xae\x83\x6f\x92\x8d\x1c\x9f\xfe\xab\xe8\x73\x1a\xd2\x52\x9c\x89\x51\x76\xfc\xc6\xb6\xb9\xb0\x53\x2b\xfa\xa1\xa4\xbd\xfc\x33\x30\xd4\xcd\x0d\x7a\x65\x8d\x4e\x2f\xbe\xf2\xd0\xd5\xb0\x2c\x93\xee\x7f\x54\xfb\x63\x36\xa3\xbe\x8b\x91\xe3\x30\x9e\x83\x9e\x49\x0f\x42\x93\x1b\xa1\x36\xca\xc5\xd0\x04\xbf\x2a\x13\x5d\x54\x6e\x57\x60\x1f\x9c\xfb\x38\x19\x78\xc0\x35\xf6\x87\xbf\xa8\xd7\x88\xcc\x58\x4f\x4e\xd2\x27\xda\x15\x78\x7f\x85\x93\x24\x5c\x26\xc9\xf9\xeb\x65\x9e\x24\xa4\xfc\x9e\x6b\x8a\x9d\xe9\xc4\xed\x8b\x33\x63\xa6\x75\x0e\xbf\x03\x00\x00\xff\xff\xc9\x09\xa3\xcf\x94\x03\x00\x00" + +func idtablestakingAdminSet_open_access_node_slotsCdcBytes() ([]byte, error) { + return bindataRead( + _idtablestakingAdminSet_open_access_node_slotsCdc, + "idTableStaking/admin/set_open_access_node_slots.cdc", + ) +} + +func idtablestakingAdminSet_open_access_node_slotsCdc() (*asset, error) { + bytes, err := idtablestakingAdminSet_open_access_node_slotsCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "idTableStaking/admin/set_open_access_node_slots.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8a, 0x92, 0x6b, 0x66, 0xe9, 0x67, 0xd6, 0x9f, 0x61, 0x14, 0xbe, 0xf1, 0x4, 0x20, 0x33, 0xcf, 0xff, 0xee, 0x16, 0x1e, 0x5, 0xdb, 0xed, 0x7c, 0xe0, 0x4e, 0x35, 0x18, 0x75, 0x70, 0x77, 0xa7}} + return a, nil +} + +var _idtablestakingAdminSet_slot_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\xc1\x8e\xdb\x36\x10\xbd\xfb\x2b\x5e\x7d\x08\xbc\x48\x22\xd7\x40\x53\x04\x46\xdd\x20\xed\xa2\x80\xd1\x1c\x8a\x6e\xda\x4b\xd1\xc3\x98\x1a\x99\xec\x52\xa4\x40\x8e\xec\x18\x8b\xfd\xf7\x82\xa4\x2d\x59\x1b\xb7\xbc\x18\x32\x67\xde\xbc\x79\xf3\x86\xa6\xed\x7c\x10\xfc\x62\xfd\x71\x7b\xff\x99\x76\x96\x1f\x84\x1e\x8d\xdb\xa3\x09\xbe\xc5\xfc\xeb\x8b\xf9\x6c\xb6\x5c\x2e\xf1\x59\x9b\x08\x09\xe4\x22\x29\x31\xde\x21\xb2\x44\x88\x66\x44\xeb\x05\xd6\xb4\x46\x22\x1a\x1f\xc0\xa4\x34\x9c\xaf\x19\x72\xea\x18\x25\x3d\x05\x7d\x2a\x31\x26\x82\xf0\xc7\xd6\xc9\xea\x7b\x50\x08\x74\x82\x68\x12\x28\xef\x84\x8c\x2b\x98\x19\x2e\xa1\xe5\xe4\x17\x88\xc6\xc1\x87\x9a\x43\xa1\xfc\xed\xdb\xef\x2a\x6c\x25\xc1\xf6\x91\x6b\x88\x47\xe7\xbb\xde\x92\x70\x4e\x26\xd4\x26\x33\xa6\x70\xae\xa4\x29\xe2\x91\x4f\x11\x51\x9b\x46\xb8\xc6\xeb\x15\xa2\x2f\x77\xa2\xf9\x04\xb2\x66\xef\x72\xf2\xd1\x88\xce\x84\xd8\xf5\x2d\x07\x4a\xd1\x03\x91\x58\x08\xac\xde\xbe\xbb\x48\xc4\x81\x73\x7b\xce\x8b\xe6\x80\x96\x95\x26\x67\x62\x8b\xa3\x36\x4a\x83\xac\xf5\xc7\x22\x12\x21\x76\xac\x4c\x63\xb8\xce\xb9\xae\x6f\x77\x1c\xe0\x9b\xac\xd4\x4b\x21\x83\xb7\x8c\x8e\x03\xb8\xf3\x4a\x57\x39\x63\xdb\x14\xc6\x63\x91\xd4\x17\xe1\x40\xb6\xe7\x34\x9d\x73\x9d\x01\xe0\x0d\x8c\xe0\x68\xac\x85\x3f\x70\x08\xa6\x2e\xfa\x1c\x35\x09\x1f\x38\xe4\xf4\x1d\x73\x9e\xec\xa5\xf1\xe9\xcc\xab\xd9\xec\xea\x6b\x31\xce\x74\x8d\xbf\xca\x40\xff\xbe\xc3\xd3\x6c\x06\x00\xcb\x25\x3e\x79\x45\x16\x07\x0a\x26\xd9\xe9\x4c\x27\x70\xc3\x81\x9d\xe2\x34\xa8\xa4\xec\xf6\x1e\xd9\x6e\xf8\x58\xb7\x69\xb2\xbb\x7f\x58\x49\x86\xb0\x2c\xa0\xf4\xe7\xef\xdc\xac\xf1\xea\x6b\x6b\x56\x39\xa5\xd4\xeb\x02\x77\x14\x78\x41\x4a\xc9\x1a\xd4\x8b\x5e\xfc\xe4\x43\xf0\xc7\x3f\x93\x1e\x77\x78\xf5\x51\x29\xdf\x3b\x49\x04\x71\x3e\xcb\x25\x76\x39\xe6\x16\x2f\x7a\x49\x27\x9d\xc8\xb6\xa9\x2e\x9c\xb0\x41\xaa\x56\x45\xf1\x81\xf6\x5c\x15\xac\x1f\xfe\x93\xe8\x8f\x8b\xe4\x97\xf5\x8d\xe5\xab\xce\xbf\x39\xec\xa1\xc0\xfd\x46\xa2\xef\x86\xc2\xe9\x7c\xf8\x80\x8e\x9c\x51\x8b\xf9\xcf\xbe\xb7\xc9\x88\x72\xe1\x3f\x61\x1f\xcf\x1b\x9d\x79\xce\x0b\xc6\x73\x51\x89\xbf\xb0\xea\x85\xa7\x1a\x64\x50\x98\x06\x47\x46\xed\x33\x6c\x31\xe7\x09\xfc\x85\x94\xd8\x13\xbc\xbb\xde\xf3\x6c\xc5\xc1\x57\x03\x94\x69\xae\xd6\xbc\xb2\xec\xf6\xa2\xf1\xcd\x06\xef\xae\xca\xe5\x51\x95\x26\xae\x1f\x13\x0a\xfb\xbe\x65\x27\x68\xfb\x38\x56\xff\xbf\xaa\xf3\x51\x9b\x73\x6f\xe9\x1c\x28\x8c\x1c\xee\x87\xbd\x5f\xe3\x29\xf9\xf3\xfd\xfa\xfc\xee\x3c\x63\x83\xa7\xe7\x49\xd6\xf8\x48\xfc\xca\xa7\x12\xf7\x1e\x1b\xac\x46\xec\xe4\xdf\x01\x3b\x3d\x42\x57\x6f\xda\xb4\xc1\x1b\x0c\x2a\xe3\x22\x07\x59\x3c\x26\xf0\x49\xad\x37\x63\xf8\x74\xdc\x93\x28\x6c\x5e\x7c\xbf\xc6\xea\x96\x00\x13\x83\x56\x91\xe5\x61\x20\x39\xd9\xd7\x1b\x14\x2f\x46\x79\xfe\x37\x00\x00\xff\xff\xb3\xaf\x59\xc4\x24\x06\x00\x00" func idtablestakingAdminSet_slot_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -2210,7 +2317,7 @@ func idtablestakingAdminSet_slot_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_slot_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0xd0, 0x50, 0x62, 0x30, 0xf3, 0x1b, 0xb4, 0x2d, 0xdd, 0x2b, 0xfc, 0xc0, 0xec, 0xf7, 0x83, 0x11, 0x42, 0x76, 0x98, 0x3f, 0x47, 0xf7, 0x12, 0xc5, 0xa7, 0xab, 0xc6, 0x46, 0xc9, 0xb5, 0xff}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0xf1, 0xe8, 0x24, 0xbe, 0xac, 0x4a, 0x5d, 0x51, 0xdf, 0xdb, 0x3, 0x15, 0xe4, 0xb, 0xaa, 0x9e, 0x25, 0x75, 0x49, 0xeb, 0x51, 0x93, 0xbb, 0x48, 0x33, 0xbf, 0x80, 0x61, 0x29, 0xfd, 0x66}} return a, nil } @@ -2274,7 +2381,7 @@ func idtablestakingAdminTransfer_fees_adminCdc() (*asset, error) { return a, nil } -var _idtablestakingAdminTransfer_minter_deployCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4d\x4f\xe3\x48\x10\xbd\xfb\x57\x3c\xe5\x80\x1c\xad\x71\x40\x02\x84\x2c\xbc\x28\x9b\x5d\xa4\x15\x0c\x87\x61\x98\x0b\xca\xa1\x63\x57\xe2\x16\x76\x77\xd4\x5d\x4e\xc6\x8a\xf2\xdf\x47\xed\xb6\x9d\xc0\x64\xa4\xf1\xa1\x93\xae\x8f\x57\x55\xaf\xab\x4a\x56\x6b\x6d\x18\x33\xd3\xac\x59\x07\xdd\xed\xa1\xd4\xdb\x6f\xfa\x9d\x14\x96\x46\x57\x18\x0d\xf7\x51\x10\xb0\x11\xca\x8a\x8c\xa5\x56\xe1\xba\x5e\x94\x32\x7b\xa4\xc6\x26\x78\xf3\x10\xf1\x23\x35\x4f\xd2\xf2\x7f\x8a\x4d\x33\x8f\x90\x69\xc5\x46\x64\xfc\x2c\x2a\x4a\xf0\xc2\x46\xaa\x95\x93\xe6\x94\xe0\xed\xf5\x7f\xc5\xb7\xf3\x08\x86\xb6\xc2\xe4\xd3\x4a\xd7\x8a\x13\xbc\x3e\xc8\x1f\x37\x57\xbd\x74\x56\x1f\x89\x32\xa1\x72\x99\x0b\xa6\x67\x9d\xd3\x93\xac\x24\xdb\x0e\xe6\xe6\x6a\x3e\xc6\x2e\x08\x80\xb5\xa1\xb5\x30\x14\x5a\xb9\x52\x64\x12\x88\x9a\x8b\x70\x9a\xe7\x8f\xd4\x44\x78\x11\x1b\xfa\x2e\xca\x9a\x22\xfc\xa3\x8d\xd1\xdb\xf6\x32\xc6\xd9\x34\xcb\x5c\xf4\x0e\x03\x28\x89\x21\xb2\x8c\x91\xa2\x53\x85\x6b\xd1\x38\x3c\x8f\x3b\x6e\xad\xda\x63\xa9\x0d\xde\xa9\x81\x54\x38\x10\x82\x5d\xab\x73\x9f\x83\x89\xdf\xa9\xb1\xb1\xc8\xf3\x03\x67\x89\x73\x8a\x87\x6b\x84\x42\xd8\x62\x5a\xae\xb4\x91\x5c\x54\x5e\xfb\x41\x14\x61\x4b\x72\x55\xb0\x57\xf9\xff\x3e\x8d\xbd\xcf\x79\x32\x99\x74\x55\x41\xc0\xd0\x92\x0c\xa9\x8c\xc0\x1a\x5c\x50\xfb\xa8\xf0\xaf\x3a\xcd\x2b\xa9\x5c\xbe\x4e\x2e\x7c\x79\xb0\xac\x8d\x58\xd1\x50\xfd\xb2\x7f\x74\x6f\x9d\x76\x85\xc7\x9d\x5d\xbc\x68\x23\xdd\x9d\x0d\xcd\x11\xb7\x86\xd2\xb2\x11\xac\xcd\xdf\xa1\xeb\x9d\x04\x93\xce\x7e\xf2\x11\x6f\x3c\xd0\x73\x7f\x8f\xb5\x50\x32\x0b\x47\x33\x5d\x97\x39\x94\x66\x2c\xfe\xbc\x0a\x43\x56\xd7\x26\xa3\xd1\xf8\x40\xc2\xcc\x90\x60\x82\x38\xd4\xf0\x45\x2a\x26\xf3\xb5\xb3\xfd\xb5\x46\xaf\xc7\xdd\xf9\xa7\xb2\xe3\xac\x85\x7a\xa6\xad\xb7\x08\x45\x59\xea\x2d\x0d\xbd\x7a\x79\xd1\x7f\xf1\x45\x97\x40\xfb\xdc\x3d\x49\x56\x6c\x28\xbc\x3b\xff\x14\x27\x02\xeb\x53\xcc\x78\x6d\x8f\x63\x2d\x19\x0e\x4f\xb4\x7c\x5c\x92\x5a\x71\x81\x34\xc5\x75\x34\xf0\x08\xa0\x22\x6b\xc5\x8a\x12\x8c\x66\xbd\x17\x9c\x1b\x5a\x3f\x94\xd2\x32\x16\x35\xa3\x10\x1b\xc7\x4e\x07\xa3\x97\xb8\xee\xd9\x73\xa4\x9c\x88\xf8\xaf\xcc\x38\xc1\xae\x9d\xd7\x04\x7e\xde\xf6\x48\xb1\xdb\xb7\x5e\x1b\x61\x60\x74\x49\x5e\x75\x8b\x14\x97\xc1\x30\x1a\x65\x1b\x5b\xaa\x53\xb8\xc3\x94\xfc\x26\xe6\x9b\x43\x9d\x23\xf5\x20\x9d\xad\x93\x21\xf5\x3f\x7f\xe1\xf2\x78\x02\x5a\xee\xfb\x95\xe3\xe7\x4d\xb5\x8b\xe7\x78\x0d\xf5\xeb\xc7\x9d\x1f\x77\xcf\xd1\xce\x39\xb9\x6b\x5c\x4a\xae\x71\xf7\x41\xb0\x0f\x10\xfc\x0c\x00\x00\xff\xff\x83\x4c\x04\x12\x3c\x05\x00\x00" +var _idtablestakingAdminTransfer_minter_deployCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x4f\xdb\x4e\x10\xbd\xfb\x53\x3c\xe5\x80\x1c\xfd\x82\x03\x12\x20\x64\xe1\x1f\x4a\xd3\x22\x55\x50\x0e\xa5\xf4\x82\x38\x6c\xec\x49\xbc\xc2\xde\xb5\x76\xc7\x49\xad\x28\xdf\xbd\x5a\xaf\xed\x04\x9a\x4a\xf5\x61\x93\x9d\x3f\x6f\x66\xde\xce\x8c\x2c\x2b\x6d\x18\x73\xd3\x54\xac\x83\xee\x76\x57\xe8\xcd\x0f\xfd\x46\x0a\x4b\xa3\x4b\x8c\x86\xfb\x28\x08\xd8\x08\x65\x45\xca\x52\xab\xb0\xaa\x17\x85\x4c\xef\xa9\xb1\x31\x5e\x3c\x44\x74\x4f\xcd\x83\xb4\xfc\x45\xb1\x69\x5e\x27\x48\xb5\x62\x23\x52\x7e\x14\x25\xc5\x78\x62\x23\xd5\xca\x49\xb3\x83\x9b\xa1\x8d\x30\xd9\xac\xd4\xb5\xe2\x18\xcf\x77\xf2\xd7\xd5\x45\x2f\x9d\xd7\x07\xa2\x54\xa8\x4c\x66\x82\xe9\x51\x67\xf4\x20\x4b\xc9\x2e\xf0\xf3\x57\xc5\x57\x17\xaf\x63\x6c\x83\x00\xa8\x0c\x55\xc2\x50\x68\xe5\x4a\x91\x89\x21\x6a\xce\xc3\x59\x96\xdd\x53\x33\xc1\x93\x58\xd3\x4f\x51\xd4\x34\xc1\x27\x6d\x8c\xde\xb4\x97\x31\x4e\x66\x69\xea\xa2\x77\x18\x40\x41\x0c\x91\xa6\x8c\x04\x9d\x2a\xac\x44\xe3\xf0\x3c\xee\xb8\xb5\x6a\x8f\xa5\x36\x78\xa3\x06\x52\x61\xcf\x07\xb6\xad\xce\x7d\x0e\x26\x7a\xa3\xc6\x46\x22\xcb\xf6\x94\xc5\xce\x29\x1a\xae\x13\xe4\xc2\xe6\xb3\x62\xa5\x8d\xe4\xbc\xf4\xda\x77\xa2\x09\x36\x24\x57\x39\x7b\x95\xff\xef\xd3\xd8\xf9\x9c\xa7\xd3\x69\x57\x15\x04\x0c\x2d\xc9\x90\x4a\x09\xac\xc1\x39\xb5\x6f\x0a\xff\xa8\xb3\xac\x94\xca\xe5\xeb\xe4\xc2\x97\x07\xcb\xda\x88\x15\x0d\xd5\x2f\xfb\x37\xf7\xd6\x49\x57\x78\xd4\xd9\x45\x8b\x36\xd2\xcd\xc9\xd0\x1b\x51\x6b\x28\x2d\x1b\xc1\xda\xfc\x1f\xba\xd6\x89\x31\xed\xec\xa7\xef\xf1\xc6\x03\x3d\xb7\xb7\xa8\x84\x92\x69\x38\x9a\xeb\xba\xc8\xa0\x34\x63\xf1\xef\x55\x18\xb2\xba\x36\x29\x8d\xc6\x7b\x12\xe6\x86\x04\x13\xc4\xbe\x86\x6f\x52\x31\x99\xef\x9d\xed\x9f\x35\x7a\x3d\x6e\x4e\x3f\x94\x1d\xa5\x2d\xd4\x23\x6d\xbc\x45\x28\x8a\x42\x6f\x68\xe8\xd5\xf3\xb3\xfe\x8b\xce\xba\x04\xda\xe7\xee\x49\xb2\x62\x4d\xe1\xcd\xe9\x87\x38\x13\xb0\x3e\xc6\x8c\xd7\xf6\x38\xd6\x92\xe1\xf0\x48\xcb\x47\x05\xa9\x15\xe7\x48\x12\x5c\x4e\x06\x1e\x01\x94\x64\xad\x58\x51\x8c\xd1\xbc\xf7\x82\x73\x43\xeb\x87\x42\x5a\xc6\xa2\x66\xe4\x62\xed\xd8\xe9\x60\xf4\x12\x97\x3d\x7b\x8e\x94\x23\x11\x3f\xcb\x94\x63\x6c\xdd\xa0\x5d\xc7\xf0\xf3\xb6\x43\x82\xed\xae\xf5\x5a\x0b\x03\xa3\x0b\xf2\xaa\x6b\x24\x38\x0f\x86\xd1\x28\xda\xd8\x52\x1d\xc3\x1d\xa6\xe4\x2f\x31\x5f\x1c\xea\x2b\x12\x0f\xd2\xd9\x3a\x19\x12\xff\xf3\x1f\xce\x0f\x27\xa0\xe5\xbe\xdf\x38\x7e\xde\x54\xbb\x77\x0e\xb7\x50\xbf\x7d\xdc\x19\xd5\xbc\xbc\x7e\xbf\x80\x0e\x16\xcf\xd1\x85\xe3\xf2\x72\xdd\xbb\x0b\x82\x5d\x80\xe0\x77\x00\x00\x00\xff\xff\x21\x67\x62\x69\x40\x05\x00\x00" func idtablestakingAdminTransfer_minter_deployCdcBytes() ([]byte, error) { return bindataRead( @@ -2290,7 +2397,7 @@ func idtablestakingAdminTransfer_minter_deployCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/transfer_minter_deploy.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0xdd, 0xfe, 0x97, 0x5, 0xa5, 0xdb, 0xb0, 0xfb, 0xa2, 0x42, 0x12, 0x87, 0x4d, 0x1c, 0x36, 0xbf, 0x1e, 0xc, 0xeb, 0x4d, 0x3d, 0x8f, 0xc0, 0xe7, 0x54, 0x44, 0xed, 0x74, 0x9e, 0x78, 0xb6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbe, 0x1e, 0x95, 0xdc, 0x42, 0x25, 0x57, 0x4f, 0xdb, 0xbe, 0x75, 0x38, 0xea, 0x13, 0xcf, 0xba, 0x25, 0xcb, 0x98, 0x2a, 0x37, 0xfe, 0x7a, 0x6c, 0xec, 0xe4, 0xc3, 0x36, 0x5a, 0x3, 0x6b, 0x54}} return a, nil } @@ -2454,7 +2561,7 @@ func idtablestakingDelegationDel_withdraw_unstaked_tokensCdc() (*asset, error) { return a, nil } -var _idtablestakingDelegationDelegator_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\xcb\xce\x9b\x30\x10\x85\xf7\x7e\x8a\x51\x16\x11\x48\x15\xec\xa3\x5c\xd4\x36\xaa\xd4\x4d\x1b\x29\x51\xf7\x83\x19\xc0\x8d\x63\x23\x7b\x10\xad\x12\xde\xbd\x82\x34\x0e\x34\xe9\x7f\xf1\x0e\x98\xe3\xf3\xf1\x8d\x3a\xd5\xd6\x31\x7c\xd1\xb6\xfd\xba\x3d\x60\xa6\x69\xcf\x78\x54\xa6\x84\xc2\xd9\x13\xcc\x1e\x3f\xcc\xc4\x28\x73\xb0\x47\x32\xa3\xd1\xe1\x79\x26\x44\x9a\xc2\xa1\x52\x1e\xd8\xa1\xf1\x28\x59\x59\x03\x98\xe7\x1e\x10\xea\x26\xd3\x4a\x42\x4e\x9a\x4a\x64\xeb\x40\x62\x8d\x99\xd2\x8a\x7f\x03\x5b\x40\x03\x28\xa5\x6d\x0c\x43\xab\xb8\xea\x6f\x42\x03\xf4\x4b\x79\xee\xa9\xbe\xd9\x9c\xb6\x21\x6a\xb3\x9f\x24\x59\x88\x71\xcd\x59\x08\x00\x80\xda\x51\x8d\x8e\x22\x94\x92\x17\x80\x0d\x57\xd1\x27\xeb\x9c\x6d\x7f\xa0\x6e\x28\x86\xf9\xc7\x6b\x4b\x7c\x0b\xf4\x47\x15\x7d\x39\x27\x9e\xad\xc3\x92\x92\x6c\x48\x2c\x87\xf4\xa3\x89\x24\x80\x7c\x6f\x0d\xb9\x18\xe6\x4f\x66\x26\xc0\xeb\xa8\x57\xb5\x78\xa2\xfb\x7e\xd7\xfe\xda\xbd\x43\xae\x62\x58\xad\xc0\x28\x0d\x97\x4b\x40\xec\xcf\xc0\x18\xb4\x29\xf2\x49\x49\xbc\x9c\x9f\x5f\xab\xdf\x0d\xea\xbb\x75\x94\x5e\x97\x90\x16\xda\xb6\x7f\x27\xc3\x50\xbc\x49\x64\x45\xf2\x18\xc5\xb0\xd9\x40\x81\xda\x53\x28\x3f\x4f\x30\x1c\x71\xe3\x4c\x78\xd5\xdd\x3d\x6a\xe2\xfb\x82\x3f\x63\x0d\xab\x27\xcc\x37\xc9\xca\xfb\x86\xde\x43\x3f\x81\x78\xa3\xca\x90\x89\xc5\xff\x2d\x0e\x56\x7c\x35\x2d\x18\xff\xc7\x87\xe9\x1a\x78\x01\x2f\x99\xfc\xa7\xb3\x13\xdd\x9f\x00\x00\x00\xff\xff\xc4\xa7\x67\x81\x6e\x03\x00\x00" +var _idtablestakingDelegationDelegator_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\xcb\xae\x9b\x30\x10\x86\xf7\x7e\x8a\x51\x16\x11\x48\x11\xec\xa3\x5c\xd4\x26\xaa\xd4\x4d\x1b\x29\x51\xf7\x83\x19\xc0\x8d\x63\x23\x7b\x10\xad\x12\xde\xbd\x82\x34\x04\x4e\x72\x6e\xde\x81\x67\xe6\xff\xfc\x8d\x3a\x95\xd6\x31\x7c\xd3\xb6\xfe\xbe\x3d\x60\xa2\x69\xcf\x78\x54\x26\x87\xcc\xd9\x13\x4c\x1e\x2f\x26\x62\xd0\x73\xb0\x47\x32\x83\xd2\xee\x7b\x22\x44\x1c\xc3\xa1\x50\x1e\xd8\xa1\xf1\x28\x59\x59\x03\x98\xa6\x1e\x10\xca\x2a\xd1\x4a\x42\x4a\x9a\x72\x64\xeb\x40\x62\x89\x89\xd2\x8a\xff\x02\x5b\x40\x03\x28\xa5\xad\x0c\x43\xad\xb8\x68\x27\xa1\x01\xfa\xa3\x3c\xb7\x54\x3f\x6c\x4a\xdb\xbe\xd5\x26\xbf\x49\xb2\x10\xc3\x98\xb3\x10\x00\x00\xa5\xa3\x12\x1d\x05\x28\x25\xcf\x01\x2b\x2e\x82\xaf\xd6\x39\x5b\xff\x42\x5d\xd1\x0c\x36\xb7\x54\x45\x3e\x84\xe9\x97\x6b\x66\x78\x6b\x6f\x8f\xca\x5a\x14\x8e\x3c\x5b\x87\x39\x45\x49\xd7\xbf\xe8\x66\x3d\x7a\x89\x7a\xac\x9f\xb5\x21\x17\xc2\xf4\x49\xcd\x08\x7f\x15\xb4\xe2\xe6\x4f\xe4\xdf\x67\xed\xaf\xd9\x3b\xe4\x22\x84\xe5\x12\x8c\xd2\x70\xb9\xf4\x88\xed\xe9\x18\xe5\xe0\x39\x51\x4e\xbc\x98\x9e\xdf\x8b\xdf\x75\x8b\x68\x56\x41\x7c\x5d\x49\x9c\x69\x5b\xff\xaf\xec\x8b\xc2\x75\x24\x0b\x92\xc7\x20\x84\xf5\x1a\x32\xd4\x9e\xfa\xf0\xf3\x08\xc3\x11\x57\xce\xf4\xbf\x9a\xbb\x47\x4d\x7c\x5f\xf7\x06\x4b\x58\x3e\x61\xbe\x49\x56\xde\x57\xf4\x19\xfa\x11\xc4\x07\x55\xf6\x3d\xa1\x78\xdd\x62\x67\xc5\x17\xe3\x80\xe1\x3b\x66\xe3\x35\xf0\x1c\xde\x32\xf9\x22\xb3\x11\xcd\xbf\x00\x00\x00\xff\xff\xe8\x8a\xcb\x49\x7c\x03\x00\x00" func idtablestakingDelegationDelegator_add_capabilityCdcBytes() ([]byte, error) { return bindataRead( @@ -2470,7 +2577,7 @@ func idtablestakingDelegationDelegator_add_capabilityCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/delegator_add_capability.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc0, 0x83, 0xf5, 0x8d, 0x17, 0xd9, 0xb, 0xc, 0x11, 0xe1, 0xb6, 0xbe, 0xcc, 0x88, 0xe7, 0xd9, 0x44, 0x4, 0x29, 0x4a, 0x86, 0x3a, 0xd3, 0x23, 0x83, 0xd9, 0x60, 0xfd, 0x8b, 0xb3, 0xa6, 0xac}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xc2, 0x21, 0x2e, 0xa2, 0xb9, 0x97, 0xd6, 0xee, 0x84, 0x4, 0xc0, 0x18, 0x6c, 0x12, 0xc9, 0x80, 0x6f, 0xd0, 0x3a, 0xc6, 0xcc, 0xa3, 0x72, 0x33, 0xa7, 0xe4, 0xde, 0xb6, 0x7e, 0xfd, 0x12}} return a, nil } @@ -2654,7 +2761,7 @@ func idtablestakingDelegationGet_delegator_unstaking_requestCdc() (*asset, error return a, nil } -var _idtablestakingDelegationRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x8f\x9b\x30\x10\x85\xef\xfc\x8a\x11\x87\x08\xa4\x04\x2e\x55\x0f\x88\xee\xaa\x4a\x14\x69\xa5\x6a\xbb\x6a\xb6\xdd\xf3\x60\x06\xe2\xae\xb1\x91\x19\x4a\xa5\x55\xfe\x7b\x65\x48\x1c\x68\x53\x69\x7d\xb1\xc0\x6f\xfc\xde\xe7\x19\xd9\xb4\xc6\x32\xec\x95\x19\x1e\x76\xcf\x58\x28\x3a\x30\xbe\x4a\x5d\x43\x65\x4d\x03\xe1\xbf\x07\x61\x30\xab\x79\x36\xaf\xa4\x67\xd2\xf1\xfb\xaa\xe8\x75\x2d\x0b\x45\x0b\xd5\xfc\x5f\x18\x04\x6c\x51\x77\x28\x58\x1a\x1d\x69\x53\xd2\xc3\x2e\x83\x03\x5b\xa9\xeb\x35\x60\x63\x7a\xcd\x19\x7c\xdf\xcb\xdf\x1f\x3f\xc4\xf0\x16\x04\x00\x00\xad\xa5\x16\x2d\x45\x28\x04\x67\x80\x3d\x1f\xa3\x03\x1b\x8b\x35\xc5\xb0\xfa\x2c\x84\x2b\xf2\x62\xb7\x14\x31\x54\x97\x74\xdf\xa8\x82\x4f\xe0\x6a\x93\x6e\xaa\x4a\x0a\x63\xad\x19\xf2\xf1\xa6\x45\xbe\xe4\x45\xf2\xb1\xb4\x38\x38\xfe\x18\x56\x1e\x31\xf9\x81\xbd\xe2\xbb\xc8\x31\x65\x90\x9e\x2f\x4a\xbd\xc9\x78\x1c\xfb\x00\x6e\xdd\xdf\x43\x8b\x5a\x8a\x28\xdc\x9a\x5e\x95\xa0\x0d\xc3\x64\x0c\x96\x2a\xb2\xa4\x05\x01\x1b\xd8\x7f\xf9\xfa\x02\x63\x7d\x18\x5f\x11\xd2\x14\xb6\x96\x90\x09\x10\x34\x0d\x50\x92\xa2\x1a\xd9\x58\x30\xc5\x4f\x12\x0c\x95\xb1\xc0\x47\x02\xf7\x86\x0b\x70\x4d\xc3\xce\x8b\xf3\xcd\x8d\x56\x27\x96\x6a\xd9\x31\xd9\xc7\x99\xd4\x37\x63\xda\xd7\xc0\x8e\xab\xdb\x9a\xa6\x91\xcc\x54\x66\x90\x6f\xe6\x6f\x9a\x0c\xe7\xa7\x8a\x2e\x5d\x9b\xf6\x78\x09\xe1\x1a\x45\x63\xd0\xbf\x09\xbc\x6a\xd1\x9a\x0e\x7f\x51\x94\x6f\xe6\x10\x2e\x4a\x76\x0b\xc3\x2b\xce\xd3\xf0\x84\x7c\x8c\x97\x53\xe0\x4d\xb7\xd8\x5e\xa6\x40\x60\x8b\x85\x54\x92\x25\x75\xde\x57\x76\x5d\x4f\xf9\xea\xed\x86\xcd\xa3\x29\xc9\x5b\x3d\xf5\x85\x92\xe2\x74\x17\xbd\x3b\xcf\x02\xf3\xff\xde\xd1\x3c\xea\x1a\x90\x33\x48\xdb\xd1\x6c\x9c\xb2\xb3\x87\xb7\x98\xee\x3d\x05\xa7\x3f\x01\x00\x00\xff\xff\x20\x3d\x10\x42\xd1\x03\x00\x00" +var _idtablestakingDelegationRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xcd\x8e\x9b\x30\x10\xbe\xf3\x14\xa3\x1c\x22\x90\x12\xb8\x54\x3d\x20\xba\xab\x8a\x28\xd2\x4a\xd5\x76\xd5\x6c\xbb\xe7\xc1\x0c\xe0\x2e\xd8\xc8\x1e\x4a\xa5\x55\xde\xbd\x32\x24\x5e\x68\x73\xa8\x2f\x16\xf8\x9b\xef\x67\x66\x64\xd7\x6b\xc3\x70\x6c\xf5\xf8\x70\x78\xc6\xa2\xa5\x13\xe3\xab\x54\x35\x54\x46\x77\xb0\xf9\xf7\x61\x13\x2c\x6a\x9e\xf5\x2b\xa9\x05\x74\xfa\x7e\x47\x0c\xaa\x96\x45\x4b\x2b\xd4\xf2\xdf\x26\x08\xd8\xa0\xb2\x28\x58\x6a\x15\x2a\x5d\xd2\xc3\x21\x85\x13\x1b\xa9\xea\x1d\x60\xa7\x07\xc5\x29\x7c\x3f\xca\xdf\x1f\x3f\x44\xf0\x16\x04\x00\x00\xbd\xa1\x1e\x0d\x85\x28\x04\xa7\x80\x03\x37\xe1\x89\xb5\xc1\x9a\x76\x90\x63\x8f\x85\x6c\x25\x4b\xb2\x11\x6c\x3f\x0b\xe1\x28\x7c\xa9\x3b\x2d\x31\x54\x57\xaf\xdf\xa8\x82\x4f\xe0\x98\x62\x3b\x73\xc4\x85\x36\x46\x8f\xd9\xc4\xbb\x72\x1b\xbf\x48\x6e\x4a\x83\xa3\xeb\x46\x04\x5b\x1f\x38\xfe\x81\x43\xcb\x77\xa1\x4b\x98\x42\x72\x21\x4a\xbc\xc8\xf4\x1c\x79\x03\xee\xdc\xdf\x43\x8f\x4a\x8a\x70\x93\xeb\xa1\x2d\x41\x69\x86\x59\x18\x0c\x55\x64\x48\x09\x02\xd6\x70\xfc\xf2\xf5\x05\xa6\xfa\x4d\xf4\x1e\x21\x49\x20\x37\x84\x4c\x80\xa0\x68\x84\x92\x5a\xaa\x91\xb5\x01\x5d\xfc\x24\xc1\x50\x69\x03\xdc\x10\xb8\x8e\xae\x82\x2b\x1a\x0f\x1e\x9c\xed\x6f\x0c\x3e\x36\x54\x4b\xcb\x64\x1e\x17\x50\x3f\x9a\xf9\xde\x01\xbb\x5c\x36\xd7\x5d\x27\x99\xa9\x4c\x21\xdb\x2f\x7b\x1a\x8f\x97\x56\x85\xd7\x19\xce\x77\xb4\x0e\xe1\xc6\x46\x93\xd1\xbf\x13\x78\xd4\x6a\x34\x16\x7f\x51\x98\xed\x97\x21\x9c\x95\xf4\x56\x0c\x8f\xb8\xec\xc6\x13\x72\x13\xad\xb7\xc0\x8b\xe6\xd8\x5f\xb7\x40\x2c\x16\xc8\xeb\x4a\x6b\x07\xca\xb6\x6f\x37\x64\x1e\x75\x49\x5e\xea\x69\x28\x5a\x29\xce\x77\xe1\x7f\xfb\x59\xc5\x5c\x69\xf7\x8e\xcb\x36\xe1\xd2\xe4\x0e\x90\x53\x48\xa6\x27\x31\xed\xd7\x85\xdd\x93\xcf\x8c\xe7\xe0\xfc\x27\x00\x00\xff\xff\x92\xf7\xca\x6c\xd9\x03\x00\x00" func idtablestakingDelegationRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -2670,7 +2777,7 @@ func idtablestakingDelegationRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0xdc, 0x1e, 0xb2, 0x86, 0x5c, 0xaa, 0xf5, 0x25, 0xe0, 0x72, 0x16, 0xe3, 0xdf, 0x8b, 0x76, 0xa6, 0xe, 0x22, 0xe4, 0xc4, 0x4e, 0xa, 0xd7, 0xcc, 0xac, 0x5b, 0x30, 0x6f, 0x70, 0x65, 0xc0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x89, 0x9d, 0x7f, 0xe1, 0x2f, 0xae, 0x4a, 0x6a, 0x44, 0x4c, 0x28, 0x56, 0x94, 0x2c, 0xdf, 0x20, 0xd, 0x1f, 0xe6, 0x10, 0xa4, 0x91, 0xff, 0x38, 0x52, 0xc7, 0x1f, 0xd, 0x2e, 0x27, 0xd9, 0x6f}} return a, nil } @@ -2694,7 +2801,7 @@ func idtablestakingDelegationRegister_many_delegatorsCdc() (*asset, error) { return a, nil } -var _idtablestakingNodeNode_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xcf\x6b\xea\x40\x10\xc7\xef\xf9\x2b\x06\x0f\x92\xc0\x23\xde\xc5\x1f\xbc\xf7\x4a\xa1\x97\x56\x50\x7a\x9f\x6c\x46\xb3\x75\xdd\x09\xbb\x13\x6c\x51\xff\xf7\x92\x0d\xc6\x04\xb5\x75\x6f\x49\x66\xe6\xfb\xd9\xcf\x44\xef\x4a\x76\x02\xcf\x86\xf7\x2f\x4f\x2b\xcc\x0c\x2d\x05\xb7\xda\x6e\x60\xed\x78\x07\x83\xeb\x0f\x83\xa8\xd3\xb3\xe2\x2d\xd9\x4e\x69\x78\x1e\x44\xd1\x68\x04\xab\x42\x7b\x10\x87\xd6\xa3\x12\xcd\x16\x30\xcf\x3d\x20\x94\x55\x66\xb4\x02\xcb\x39\x81\xc2\x12\x33\x6d\xb4\x7c\x81\x30\xa0\x05\x54\x8a\x2b\x2b\xb0\xd7\x52\xd4\x43\xd0\x02\x7d\x6a\x2f\x35\xd0\x2b\xe7\x81\x81\x1c\x70\xf6\x41\x4a\xa2\xa8\x3b\xfe\x10\x45\x00\x00\xa5\xa3\x12\x1d\xc5\xa8\x94\x8c\x01\x2b\x29\xe2\x7f\xec\x1c\xef\xdf\xd1\x54\x94\xc0\xf0\x6f\x13\x91\x9c\x1b\xea\xa3\xd7\x75\xb2\xa4\x5e\xd8\xe1\x86\xd2\x2c\x74\x4c\x42\xf7\xb5\x81\xb4\x26\x79\x2b\xc9\xa1\xb0\x4b\x60\x78\xa7\xa2\x61\x9d\xc5\xb5\x9d\xf1\x0d\xc3\x9d\xa2\x65\x93\xbb\x40\x29\x12\x98\x4e\xc1\x6a\x03\xc7\x63\x8b\x57\x9f\xc0\xd7\xfa\xd2\xe4\xd3\x0d\xc9\x64\x78\xf8\x71\xee\x22\xb8\x3e\xcd\xee\x5d\xa2\x5b\x15\xc2\xe7\xa9\x2a\x48\x6d\xe3\x04\xe6\x73\x58\xa3\xf1\xd4\x42\x1c\x7a\x38\x8e\xa4\x72\xb6\x7d\x75\xba\xb8\x34\x24\x61\xb9\xcd\xec\xff\x58\xc2\xf4\x06\xfc\xd9\xb4\xf6\xbe\xa2\x87\xaf\xd1\x43\x78\xd4\x68\xdb\x94\x5c\x20\xaf\x81\xc2\x6f\xe9\x8b\x7e\x44\xef\x1e\x7f\xfa\xfb\x90\x5f\x76\x7a\xb1\xda\x01\x68\x5c\x9d\xbe\x03\x00\x00\xff\xff\x79\x57\x3a\x2e\x76\x03\x00\x00" +var _idtablestakingNodeNode_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6b\xc2\x40\x10\xc5\xef\xf9\x14\x83\x07\x49\x40\xe2\x5d\xfc\x43\x6b\x29\xf4\xd2\x0a\x4a\xef\x93\xcd\x68\xb6\xae\xbb\x61\x77\x82\x2d\xea\x77\x2f\xd9\x60\xdc\xa0\xb6\xce\x2d\xc9\xcc\x7b\xbf\x79\x13\xb9\x2b\x8d\x65\x78\x55\x66\xff\xf6\xb2\xc2\x4c\xd1\x92\x71\x2b\xf5\x06\xd6\xd6\xec\xa0\x77\xfd\xa1\x17\x05\x33\x2b\xb3\x25\x1d\xb4\xfa\xe7\x5e\x14\x0d\x87\xb0\x2a\xa4\x03\xb6\xa8\x1d\x0a\x96\x46\x03\xe6\xb9\x03\x84\xb2\xca\x94\x14\xa0\x4d\x4e\x20\xb0\xc4\x4c\x2a\xc9\x3f\xc0\x06\x50\x03\x0a\x61\x2a\xcd\xb0\x97\x5c\xd4\x22\xa8\x81\xbe\xa5\xe3\x1a\xe8\xdd\xe4\x9e\x81\x2c\x98\xec\x8b\x04\x47\x51\x28\x7f\x88\x22\x00\x80\xd2\x52\x89\x96\x62\x14\x82\x47\x80\x15\x17\xf1\xb3\xb1\xd6\xec\x3f\x51\x55\x34\x80\xf9\xd9\x52\x92\x4b\xa0\xff\xd4\x18\x26\xe7\xf1\xba\xe4\xba\xe6\xe0\xd4\xb1\xb1\xb8\xa1\x34\xf3\xf3\x63\xaf\x75\x9d\x47\x5a\x73\x7d\x94\x64\x91\x8d\x4d\xa0\x7f\xa7\xa3\x21\x9f\xc6\x75\x56\xa3\x1b\x79\x07\x4d\xcb\xc6\x77\x81\x5c\x24\x30\x99\x80\x96\x0a\x8e\xc7\x16\xaf\x2e\xcf\x27\x82\x55\xd2\x0d\xf1\xb8\x7f\xf8\x53\x77\xe1\x93\x3f\x4d\xef\x2d\x11\x76\x79\xf3\x59\x2a\x0a\x12\xdb\x38\x81\xd9\x0c\xd6\xa8\x1c\xb5\x10\x87\x0e\x8e\x25\xae\xac\x6e\x5f\x9d\x2e\x59\x2a\x62\x7f\xea\x46\x7b\x8e\x25\x4c\x6e\xc0\x9f\x93\x96\xce\x55\xf4\xf0\x1a\x1d\x84\x47\x13\x6d\x87\x92\x0b\xe4\x35\x90\xff\x49\x5d\xd1\xb5\xe8\xec\x31\xe8\xde\x83\xff\xb9\xe9\x25\xd5\x00\xa0\xc9\xea\xf4\x1b\x00\x00\xff\xff\x76\x70\x54\x96\x84\x03\x00\x00" func idtablestakingNodeNode_add_capabilityCdcBytes() ([]byte, error) { return bindataRead( @@ -2710,7 +2817,7 @@ func idtablestakingNodeNode_add_capabilityCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/node_add_capability.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcf, 0x17, 0x4d, 0x5d, 0x7, 0xb3, 0x43, 0x68, 0x13, 0xaa, 0x39, 0x72, 0x31, 0xf4, 0xc, 0x88, 0xb5, 0x10, 0x68, 0xa5, 0x95, 0xea, 0x92, 0x36, 0xba, 0xec, 0x58, 0x3e, 0x4a, 0x6a, 0x6f, 0xa4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xc4, 0x53, 0x4f, 0xc8, 0xa0, 0x67, 0x6e, 0x7a, 0xe2, 0x1e, 0x5c, 0xee, 0xad, 0xeb, 0x9e, 0x2e, 0x9f, 0x6f, 0x6c, 0xed, 0xcd, 0xad, 0xf3, 0xaa, 0x72, 0xd, 0x11, 0x47, 0xd4, 0x2a, 0xd0}} return a, nil } @@ -3594,7 +3701,7 @@ func inspect_fieldCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x5b\x6f\xdb\x36\x14\x7e\xd7\xaf\x38\xc8\x43\x20\x03\x89\xe4\x3e\xce\x70\x5a\x78\x4e\x8a\x0d\xc9\x96\xa0\xc9\xda\xe7\x63\x89\xb6\x08\xd3\xa4\x46\x52\xf6\x8c\x22\xff\x7d\x20\xa9\x1b\x75\x71\xe2\xa2\x03\x96\x87\xc0\x92\xbe\x73\xe1\x77\xae\xa4\xbb\x5c\x48\x0d\x4b\x79\xcc\xb5\x08\xca\xa7\xcf\x4c\x1c\x5e\xc4\x96\x70\x58\x4b\xb1\x83\x8b\xfa\xf9\xa2\x46\x14\x7c\x43\x57\x8c\x78\xa8\xf6\xbb\x1a\xf9\x20\x92\x2d\x49\xed\x3b\xe5\x80\xd3\x7f\x1e\x1e\x97\xf7\x77\xb7\x2f\x8f\xf7\x77\x7f\x2e\x6e\x6f\xbf\xdc\x3d\x3f\x07\x41\x1c\xc7\xf0\x22\x91\x2b\x4c\x34\x15\x1c\x74\x86\x1a\x74\x46\x60\x87\x94\x83\xb6\x76\x30\xdd\x51\x0e\x07\x51\xb0\x14\x14\xdd\x70\x2b\xa4\x05\x24\x92\xa0\x26\x80\xa0\x32\x94\x24\x05\x4c\x12\x51\x70\x0d\xc8\x53\x40\x0e\x05\x67\xd6\x09\x0b\x47\xf7\x69\x2d\x24\x20\x14\x8a\xc8\x20\xd0\x8d\xd9\x30\x00\x00\xc8\x51\x6a\x8a\x6c\x61\xcc\x3d\x15\x2b\x46\x93\x7b\x72\x9c\x95\x24\x45\xf7\xe4\xf8\x40\x95\xbe\xe3\x5a\x1e\xaf\x20\x8e\xe1\x1b\xa1\x9b\x4c\xcf\xe0\xc3\x74\xda\x16\xff\x4b\x11\x79\x86\xf4\x2f\xa5\xf4\xba\x60\xe7\x8a\x7e\x98\x4e\xa7\xc1\x04\xe0\x7b\xe0\xec\x4b\x92\xa3\x24\xa1\xa5\x6b\x06\x58\xe8\x2c\xfc\x55\x48\x29\x0e\x5f\x91\x15\x64\x02\x97\x0b\x47\xd0\xa4\x92\x30\x7f\x71\x0c\x4b\xc7\xa3\x61\x9d\x93\x43\x45\xa3\x72\x3c\xa6\xa9\xf9\x40\x25\x6c\xc9\x51\xd5\x52\x8c\xe8\x92\xf5\x52\x27\xdc\x40\xf9\x2b\xcc\xf1\x48\xe4\xcc\x45\x6d\xe2\x49\x18\xde\xdf\xc2\xd7\x02\x9e\xfa\xc8\x58\x8f\x30\x4d\xc3\xbc\xe1\x67\x30\x5e\x51\x0d\xb8\x82\x0c\x55\xb6\x60\x1b\x21\xa9\xce\x76\x63\x78\x0f\x74\x05\x87\x92\xdc\x61\xb0\xfb\x3a\x39\xdf\x49\x2f\xb4\x6f\xfb\xe8\xc3\x4f\xbb\xe8\x63\x2b\x0f\x6b\x17\x5b\xa4\x0f\x3a\xd8\x4b\xbc\x13\xde\xf5\xb1\x23\xae\xf5\x81\x3d\xbf\x9a\xc4\x43\xc8\x25\xdd\x9b\x5f\x8c\xf2\xad\xa9\x6c\x93\x8a\x4a\x0b\x53\xd4\x7b\x2c\x98\xf6\xb2\xc8\xbe\x59\x62\x8e\x2b\xca\xa8\x3e\xc2\x8d\x1f\x85\x1a\x6b\xfe\x22\xa3\x71\x6e\x4b\xc1\xeb\x53\xd1\x37\xaa\xb3\x54\xe2\x01\x57\xcc\x54\x46\xdd\xea\xa2\xaf\x46\xfb\xc7\xd0\xd3\x62\xdd\x2d\x7d\x8c\xd7\x15\xd4\x22\xaf\x7a\x40\x8d\x72\x43\xf4\x0c\x62\x73\x00\xdc\x74\x05\x3c\xfc\xc4\x7b\xfa\xf4\x09\x72\xe4\x34\x09\x2f\x96\xb6\xd7\x71\xa1\x1d\x23\xc6\x3b\x70\x3d\xd7\xea\x80\xa4\x3e\xfd\x85\xcf\x68\xdd\x12\x5d\xeb\x2b\x1b\xe8\x0e\x39\x6e\x88\xb4\x05\x5d\xd2\x4a\x35\x98\xfe\x6a\x78\xf6\x9a\xa7\xc7\x34\x6b\x9a\xf8\x1f\xa5\x8a\xf9\xb5\xd7\xda\x23\x67\xf0\xa1\x07\x0c\x6d\x94\x66\xdd\x60\x8d\x55\x8e\xc2\x3d\x09\xe7\xd7\x7d\x83\x57\xa0\xc5\xcc\x37\xd9\x37\xf6\xec\x98\x7e\x42\x9d\xb5\xe8\x30\x27\xd0\x2d\xd4\x4f\x4e\x99\x37\x7c\x1a\x48\xa1\x37\x24\x9e\x5c\x82\x99\x53\x8c\x67\xd5\xfb\x99\xa8\x55\x4c\x4e\xa5\x96\x9f\x20\xc3\x79\x55\x13\xf9\x9b\x60\xe9\x68\x0e\xbc\x34\x08\xff\xe8\x2e\xa8\x8b\x34\x95\x44\xa9\x59\x27\xf0\xe8\x5e\xfb\x07\x6e\x47\x6d\x36\x12\xc3\xe6\x78\xc3\xad\xce\x66\x94\xa7\x75\x7e\xdd\x3a\x44\xd7\x60\x87\xd9\xd6\x61\x06\x29\x1d\xb6\x69\x33\xe7\x72\x4c\x51\x27\x23\x06\x22\x59\xea\xf9\x9d\xaf\x85\x6b\x9c\xfd\x5c\x18\xcc\x83\xf7\x7b\x5b\x87\xd2\xce\xb5\xff\x6d\x45\xb8\xa9\xfb\x1f\xd5\x03\xbc\xbf\xf1\xb6\xf7\x4f\x33\x96\xda\xc5\x32\x58\x21\x8e\x56\xc1\x18\x71\xeb\xec\x8d\x13\x8e\xca\x59\xe0\xd3\xba\xb2\xcb\xd9\x50\xc2\x74\xd4\x0c\x30\x67\x56\xea\xf1\xd3\x77\xe4\x7f\x9c\x05\xe7\x22\x48\xb2\x26\x92\xf0\x84\x18\x16\x1c\x1d\x49\xad\xbd\x4d\xc4\x10\x09\xa6\xc6\xab\x5d\xcf\x33\xe8\x65\xdc\x39\xfd\xa1\xda\xec\xbb\xa2\xed\x5a\x1c\x6f\x2c\x0b\xb7\x1f\x0f\x95\xc1\x50\xc9\xc4\x31\x3c\xee\x89\x94\x34\x75\x2b\x72\x4a\xd6\x76\x06\x37\xb7\x25\x49\x12\x42\xf7\x44\x8e\xcc\xb6\xba\xa9\x52\xa2\xa2\x82\xdb\xed\x4a\x65\x61\xec\xd6\xac\x66\x3d\xf8\x52\xaa\x19\x9c\xe8\x66\x31\xaf\xec\xb8\x4b\xd2\x0e\xe5\x56\x55\xef\xca\x49\xaf\x00\x55\x73\xef\x69\x67\x67\x6b\xb2\xaa\xa6\x97\x76\xcb\xbe\xf2\xd5\xba\x5a\xe6\x6c\x44\x95\x2a\xc8\xfc\xf2\xbb\x5f\xfb\x95\xb7\xaf\x1f\xc3\x73\xa6\xf3\x49\x8a\xac\xd9\x8a\x9f\x81\x19\xd2\x75\xdf\x0f\x2e\x9a\xa5\x6b\x8c\xd4\x91\xc8\xe6\x85\x06\x2e\xe4\x0e\x59\xc3\x2e\xe5\xe6\x4a\x69\xee\x52\x86\xf8\x82\xd3\xbf\x0b\x02\x79\xbb\x76\xea\x72\xaf\xb4\xff\x34\x2a\x47\x96\xc6\x1f\xe6\xad\xeb\xe5\x38\x63\x8e\xe1\xcf\x27\x78\x33\xff\x5f\x83\xd7\xe0\xdf\x00\x00\x00\xff\xff\x07\x96\xfa\xf9\x3c\x10\x00\x00" +var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x39\x04\x0a\xe0\x58\xde\x63\x8d\x24\x0b\xd7\xc9\xa2\x45\xd2\x66\xb1\x49\x77\xcf\x63\x69\x6c\x11\xa6\x49\x95\xa4\xec\x1a\x8b\xbc\x7b\x41\x51\x92\x45\x59\x74\xd6\x6d\x2f\xd5\xc1\xb0\xa8\xf9\xfd\xe6\x97\x6c\x53\x48\x65\x60\xae\xf6\x85\x91\x51\xfd\xf6\x89\xcb\xdd\xab\x5c\x93\x80\xa5\x92\x1b\xb8\x68\xdf\x2f\x5a\x8a\x52\xac\xd8\x82\x93\x47\xd5\x3d\x6b\x29\x9f\x64\xba\xa6\xac\x3a\xd3\x8e\x70\xf2\xd7\xd3\xf3\xfc\xf1\xe1\xfe\xf5\xf9\xf1\xe1\xf7\xd9\xfd\xfd\x97\x87\x97\x97\x28\x4a\x92\x04\x5e\x15\x0a\x8d\xa9\x61\x52\x80\xc9\xd1\x80\xc9\x09\x36\xc8\x04\x98\x4a\x0f\x66\x1b\x26\x60\x27\x4b\x9e\x81\x66\x2b\x51\x31\x19\x09\xa9\x22\x34\x04\x08\x3a\x47\x45\x19\x60\x9a\xca\x52\x18\x40\x91\x01\x0a\x28\x05\xaf\x8c\xa8\xc8\xd1\x7d\x5a\x4a\x05\x08\xa5\x26\x15\x45\xe6\xa0\x36\x8e\x00\x00\x0a\x54\x86\x21\x9f\x59\x75\x9f\xcb\x05\x67\xe9\x23\xed\xa7\x35\x48\xe3\x47\xda\x3f\x31\x6d\x1e\x84\x51\xfb\x11\x24\x09\x7c\x23\xb6\xca\xcd\x14\x3e\x4c\x26\x5d\xf6\x3f\x34\xa9\x33\xb8\x7f\xaa\xb9\x97\x25\x3f\x97\xf5\xc3\x64\x32\x89\xae\x00\xbe\x47\x4e\xbf\xa2\x02\x15\xc5\x15\x5c\x53\xc0\xd2\xe4\xf1\xcf\x52\x29\xb9\xfb\x8a\xbc\xa4\x2b\xb8\x9c\x39\x80\xae\x1a\x0e\xfb\x24\x09\xcc\x1d\x8e\x16\x75\x41\xbb\x06\x46\xed\x70\xcc\x32\xfb\x81\x29\x58\xd3\x5e\xb7\x5c\x9c\x4c\x8d\x7a\x2d\x13\x6e\xa1\xfe\x17\x17\xb8\x27\x35\x75\x51\xbb\xf2\x38\x2c\xee\xef\xd1\xb7\x0c\x9e\xf8\xb1\xd5\x3e\xc6\x2c\x8b\x8b\x03\x3e\x83\xf1\x1a\xb7\x04\x23\xc8\x51\xe7\x33\xbe\x92\x8a\x99\x7c\x13\xa2\xf7\x88\x46\xb0\xab\xc1\x1d\x26\x76\x5f\xaf\xce\x37\xd2\x0b\xed\xfb\x36\xfa\xe4\xa7\x4d\xf4\x69\x1b\x0b\x5b\x13\x3b\xa0\x0f\x1a\x78\x94\x78\x27\xac\x3b\xa6\x0d\x98\x76\x4c\x78\x64\xd7\x21\xf1\x10\x0a\xc5\xb6\xf6\x1f\x67\x62\x6d\x2b\xdb\xa6\xa2\x36\xd2\x16\xf5\x16\x4b\x6e\xbc\x2c\xaa\x4e\xe6\x58\xe0\x82\x71\x66\xf6\x70\xdb\x8b\x42\xda\x7c\x62\xa4\xc7\x56\x0a\xae\x68\xcc\xb4\x2e\xa9\x15\x63\x9f\x9b\xaa\x40\xbc\xee\x35\xfe\xc6\x4c\x9e\x29\xdc\xe1\x82\xdb\x7a\x69\x1b\xe0\xf8\xab\xd5\x79\xe7\xf1\xc7\x49\x2d\x3b\x59\x36\x64\x15\x95\xef\x62\xdb\xa3\x5c\x2f\xaa\x3b\xda\x06\x05\xae\x48\x55\x15\x56\xfb\xc9\x0c\xd8\x86\x67\x1d\xf7\xba\x99\xe7\x3a\x3f\x74\xd5\xdf\x6a\x11\x37\xd7\x5e\xaf\x1d\x3b\x85\x4f\x47\x84\x71\x05\xdb\xb4\x8f\x5e\x28\x95\x1b\xdc\x34\x6e\x29\xbe\xb9\x3e\x56\x3c\x02\x23\xa7\xbe\xea\x63\xa5\x2f\x4e\xca\x67\x34\x79\x07\x16\xeb\x89\xe9\x50\x85\x63\xe9\x01\x7e\x22\xb0\x3f\x10\xcb\x77\x2c\xbd\x8b\x3d\x5d\xf6\xf9\x77\xbe\xfd\x22\x79\x16\x0c\xcf\xeb\x81\xc2\xd7\xeb\x70\x9e\x65\x99\x22\xad\xa7\xbd\x98\xa0\x3b\x1e\x79\x1c\x5d\x20\xa7\x01\x58\x5b\x86\x40\x5b\xf0\x82\xed\x17\xc9\x75\xc7\x99\xbe\xe2\x5e\xf8\x3b\x4e\x75\xb0\x19\xd2\x6d\x41\x62\x62\x29\xe7\x58\xc0\xad\x67\xc9\x89\x10\x5f\x86\x94\xf5\x42\x77\x9e\x4d\x43\x70\x78\x46\x54\xcd\x50\xe7\x71\x6d\xef\x08\xd0\x0c\xa6\x7d\xcd\xfc\xab\x58\x4a\xd7\xf4\x42\x89\x51\x4d\x94\xff\x7d\xca\x7b\xac\x61\x37\x25\xe7\xe4\x16\xbb\x5b\x37\xe0\x1b\x27\x7c\x37\x17\xd5\x9a\x32\x14\xe2\x9e\x98\x01\x9b\xed\x72\x19\x6e\x44\x3d\xfe\xb0\x07\xdd\xb7\x8f\x1f\xa1\x40\xc1\xd2\xf8\x62\x5e\x2d\x9d\x42\x1a\x70\x26\x82\xa2\x25\x29\x12\x29\xd9\x31\xe5\x16\xd3\xb4\x95\x7e\xd1\x01\x62\x08\x04\x5b\xc1\xcd\xd6\xe3\x29\xf4\x32\xe0\x9c\xea\x6f\x76\xdc\x3e\x6b\x37\x9d\xc3\x6d\x63\xe6\x36\xc5\xa1\xb4\x1c\x2a\xdb\x24\x81\xe7\x2d\x29\xc5\x32\xb7\x2c\x66\xb4\xb4\xc3\xa4\x73\x6f\x50\x94\x12\xdb\x92\x0a\x0c\x15\x2f\x9b\x4b\xd1\x94\x56\xe2\x16\x8e\xc3\x1c\xfd\x52\x8b\x19\x1c\xa5\x76\x45\x6d\xf4\xb8\xeb\xc2\x06\xd5\x5a\x37\x67\xf5\x88\xd5\x80\xfa\x70\x03\xe8\x66\x67\x67\x94\xe9\x43\xa7\x3c\x63\x8b\xb8\xb9\xfc\xee\x97\x5d\x63\xee\xdb\x5d\x7c\xce\xcc\xf8\x01\x8c\x1a\x84\x06\x66\x44\xdf\x01\x3f\xbc\xb6\x49\x05\x61\x0d\xc4\xb6\x28\x0d\x08\xa9\x36\xc8\x0f\xf8\x32\x61\xaf\x57\xf6\x5e\x61\xa1\x2f\x05\xfb\xb3\x24\x28\xba\xd5\xd3\x16\x7c\x23\xfd\xbf\x03\x33\xb8\x60\xfd\x53\xe4\xfa\x76\x86\x31\x73\x18\x7f\x3a\x81\x9c\xfd\x7d\x8b\xde\xa2\xbf\x03\x00\x00\xff\xff\x7d\xdd\xc8\xae\x4a\x0f\x00\x00" func lockedtokensAdminAdmin_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3610,11 +3717,11 @@ func lockedtokensAdminAdmin_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe7, 0x3c, 0x30, 0xfe, 0x2, 0xe1, 0xfa, 0xa3, 0x7b, 0x50, 0x20, 0xe8, 0xfe, 0xa7, 0x1c, 0x4d, 0x6e, 0x7b, 0x4f, 0xbb, 0x5a, 0x89, 0xa6, 0x72, 0xbb, 0x6e, 0xcf, 0x4, 0x21, 0x20, 0xc9, 0xea}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x91, 0x21, 0x12, 0x8, 0xc, 0xc8, 0x6b, 0xac, 0xc1, 0x5b, 0xa2, 0xd9, 0x7d, 0xed, 0x8f, 0x58, 0xd1, 0x9e, 0xed, 0x51, 0xd5, 0x91, 0x41, 0x71, 0x76, 0xbd, 0x29, 0x42, 0xf6, 0x76, 0x4, 0x86}} return a, nil } -var _lockedtokensAdminAdmin_deploy_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xc1\x4a\xc4\x30\x10\x86\xef\x7d\x8a\x39\x49\x0a\xa5\x0f\x50\xf0\xb0\x8a\x20\xac\x78\x51\xbc\x88\x87\x98\x8c\x6d\x68\x9b\x09\x93\x29\x6b\x90\x7d\x77\x69\x63\xbb\x95\xed\xe1\x6f\x26\xf3\xcf\x3f\xf9\xdc\x18\x88\x05\xee\x39\x05\xa1\xa2\x10\xd6\x3e\x6a\x23\x8e\xbc\x32\xe4\x85\xb5\x91\x67\x3d\x62\x03\x2f\xc2\xce\xb7\x15\x18\xb2\xbb\x2a\x4c\x9f\x83\x33\x47\x4c\xb1\x81\xf7\x1c\x52\x1f\x31\x3d\xb9\x28\x0f\x5e\x38\x7d\x94\xf0\x53\x00\x00\x2c\x12\x18\x83\x66\x54\xda\x8e\xce\x37\xa0\x27\xe9\xd4\x1d\x31\xd3\xe9\x4d\x0f\x13\x96\x70\x73\x30\x86\x26\x2f\xeb\xd4\xfc\x0d\x28\x30\x90\xe9\xd1\xbe\x52\x8f\x3e\xc2\x2d\xfc\xb9\x54\xd0\x09\xb9\x81\x25\xae\xbc\x0c\xec\xcc\xf5\x0a\x11\x6b\x6d\xad\xf2\x0b\xca\x1e\x6c\x05\x9a\xb5\xb6\x38\xff\x1e\xf1\x5b\x95\xd5\x9a\xba\xc5\x7e\x11\x43\x8f\x09\x9c\xdf\x51\xef\xde\x79\xb5\xba\xc7\x94\xb7\x6e\xf6\x66\x0e\xa8\xb7\xb2\x82\x4e\xc7\xee\x30\xb4\xc4\x4e\xba\x31\x77\xff\x5d\x55\x70\x42\xd7\x76\x92\x5b\xf9\x7c\x01\x3d\x17\x59\xcf\xc5\x6f\x00\x00\x00\xff\xff\x49\xce\x57\x4b\xc6\x01\x00\x00" +var _lockedtokensAdminAdmin_deploy_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xc1\x4a\xc4\x30\x10\x86\xef\x7d\x8a\x39\x49\x0b\xa5\x0f\x50\xf0\xb0\x8a\x20\xac\x78\x59\xf1\x22\x1e\xc6\x64\x6c\x43\xdb\x4c\x98\x4c\x59\x83\xec\xbb\x4b\x37\x76\xb7\x62\x0f\x7f\x33\x99\x7f\xfe\xc9\xe7\xa6\xc0\xa2\x70\x2f\x29\x28\x17\x85\x0a\xfa\x88\x46\x1d\xfb\xd2\xb0\x57\x41\xa3\xcf\x38\x51\x0b\x07\x15\xe7\xbb\x1a\x0c\xdb\x4d\x15\xe6\x8f\xd1\x99\x3d\xa5\xd8\xc2\x5b\x0e\x69\xf6\x94\x9e\x5c\xd4\x07\xaf\x92\xde\x2b\xf8\x2e\x00\x00\xce\x12\x84\x02\x0a\x95\x68\x27\xe7\x5b\xc0\x59\xfb\xf2\xa0\x2c\xd8\x51\x0d\x77\x2c\xc2\xc7\x57\x1c\x67\xaa\xe0\x66\x67\x0c\xcf\x5e\xd7\xf1\xe5\x1b\x49\x61\x64\x33\x90\x7d\xe1\x81\x7c\x84\x5b\xf8\x75\x95\x01\x13\x49\x0b\xe7\xdc\xea\x3a\xb0\x31\x37\x2b\x4d\x6c\xd0\xda\xd2\x9f\x99\xb6\x84\x2b\xd9\xa2\x8d\xa5\xe5\xf7\x48\x5f\x65\x55\xaf\xa9\x97\xd8\x4f\x16\x18\x28\x81\xf3\x1b\xfc\xcd\x3b\xff\xad\x1e\x28\xe5\xad\x17\x7b\xbb\x04\x34\x97\xb2\x86\x1e\x63\xbf\x1b\x3b\x16\xa7\xfd\x94\xbb\x7f\xae\x6a\x38\x92\xeb\x7a\xcd\xad\x7c\xbe\x82\x9e\x8a\xac\xa7\xe2\x27\x00\x00\xff\xff\x8f\x01\xaf\x74\xcf\x01\x00\x00" func lockedtokensAdminAdmin_deploy_contractCdcBytes() ([]byte, error) { return bindataRead( @@ -3630,7 +3737,7 @@ func lockedtokensAdminAdmin_deploy_contractCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_deploy_contract.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe8, 0x78, 0x94, 0xa7, 0x16, 0x32, 0xd, 0x11, 0xf4, 0x29, 0xaa, 0x47, 0xc9, 0x4f, 0x28, 0xb1, 0xb8, 0x59, 0x3, 0xce, 0x71, 0xab, 0xbd, 0x6e, 0xe3, 0xce, 0xbc, 0x63, 0xc, 0xbd, 0x5b, 0x92}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x61, 0x8, 0x4c, 0x45, 0x80, 0x10, 0x34, 0x60, 0xc1, 0xb0, 0xed, 0xeb, 0xc8, 0x43, 0x86, 0xb6, 0xd9, 0xa4, 0x12, 0x84, 0xc4, 0x57, 0x3, 0xce, 0xb7, 0x53, 0x94, 0x20, 0x92, 0x33, 0x8}} return a, nil } @@ -3654,7 +3761,7 @@ func lockedtokensAdminAdmin_deposit_account_creatorCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminAdmin_remove_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8f\x41\x6f\xb2\x40\x10\x86\xef\xfc\x8a\xf9\x3c\x18\x38\x7c\xa4\x67\x63\x6b\x54\x68\x62\xb4\xda\x08\x69\xd2\xe3\xb8\x8c\x48\x5c\x76\xc8\x30\xd4\x36\x8d\xff\xbd\x41\x4a\xb5\xa7\xce\x6d\x33\xef\xf3\xee\x33\x45\x59\xb1\x28\x3c\x5a\x3e\x2d\xa2\x14\x77\x96\x12\xc5\x63\xe1\x72\xd8\x0b\x97\x70\xf7\xbe\x88\xe2\x75\xba\x48\x5f\xd3\xe9\x6c\x15\x4f\xa3\x68\x1b\x27\x89\xf7\x4d\xad\xd8\x1c\x29\x4b\xf9\x48\xae\xee\xf3\xab\xcd\x7c\x19\x47\xe9\x66\x19\xaf\xfb\xb4\xa7\x82\xae\x46\xa3\x05\x3b\xf8\xf4\x3c\x00\x80\x4a\xa8\x42\x21\xbf\x2e\x72\x47\x32\x02\x6c\xf4\xe0\xcf\x58\x84\x4f\x2f\x68\x1b\x0a\x60\x38\x35\x86\x1b\xa7\x41\x8f\xb4\x63\x49\xa1\x44\x87\x39\xc9\x96\xf6\x70\x0f\x1d\x1f\xd6\xca\x82\x39\x85\xbb\x4b\xc3\x78\x78\x6b\x16\xde\x3c\x9e\x3a\xf6\xc1\x6f\x6d\x47\xf0\x47\x2c\xe9\x5a\x9f\x51\x0f\xc1\x8f\x42\x3b\x93\x09\x54\xe8\x0a\xe3\x0f\xe6\xdc\xd8\x0c\x1c\x2b\x74\x5f\x03\x82\xd0\x9e\x84\x9c\x21\x50\x06\x3d\x10\xd8\x4b\x31\x68\xdb\xdc\xdb\x0f\x82\xdf\x47\x65\x64\x29\x47\x65\x81\xf1\xff\x9b\x0b\x43\xa1\x92\xdf\x28\xea\xb7\x7e\xf0\xef\xca\x65\x54\xab\xf0\xc7\x95\xed\x56\x67\xef\xec\x7d\x05\x00\x00\xff\xff\xe2\x9e\x25\xbe\xd7\x01\x00\x00" +var _lockedtokensAdminAdmin_remove_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8f\xc1\x4e\xc2\x40\x10\x86\xef\xfb\x14\x63\x0f\xa4\x3d\xd8\x78\x26\x28\x41\x8a\x89\x01\xc5\x50\xe2\x7d\x68\x87\xd2\xb0\xdd\x69\xa6\x53\xd1\x18\xde\xdd\x94\x15\xa9\xf1\xe0\xdc\x36\xff\x7c\xff\x7e\x53\x56\x35\x8b\xc2\x83\xe5\xc3\x63\xb2\xc6\x8d\xa5\x54\x71\x5f\xba\x02\xb6\xc2\x15\x04\x7f\x83\xc0\x7c\x33\x0b\xce\xf6\x94\xaf\x79\x4f\xae\xf1\xdb\x37\xef\x8b\xe5\x74\x3e\x4b\xd6\xcb\xf9\xec\x79\x92\x24\xab\x59\x9a\x1a\xa3\x82\xae\xc1\x4c\x4b\x76\xf0\x69\x0c\x00\x40\x2d\x54\xa3\x50\xd8\x94\x85\x23\x19\x02\xb6\xba\x0b\xef\x59\x84\x0f\xaf\x68\x5b\x8a\x60\x30\xc9\x32\x6e\x9d\x46\x67\xa4\x1b\x4b\x0a\x15\x3a\x2c\x48\x56\xb4\x85\x5b\xf0\x7c\xdc\x28\x0b\x16\x14\x6f\x4e\x0d\xa3\x41\xdf\x2c\xee\x3d\x9e\x3c\x7b\x17\x76\xb6\x43\xf8\x67\x2d\xf5\xad\x2f\xa8\xbb\xe8\x47\xa1\x9b\xf1\x18\x6a\x74\x65\x16\x06\x53\x6e\x6d\x0e\x8e\x15\xfc\xd7\x80\x20\xb4\x25\x21\x97\x11\x28\x83\xee\x08\xec\xa9\x18\xb4\x6b\x3e\xdb\x07\xd1\xef\xa3\x72\xb2\x54\xa0\xb2\xc0\xe8\xba\x77\x61\x2c\x54\xf1\x1b\x25\xe7\x34\x8c\xae\x2e\x5c\x4e\x8d\x0a\x7f\x5c\x58\x1f\x1d\xcd\xd1\x7c\x05\x00\x00\xff\xff\xfd\xdb\x47\xd0\xd5\x01\x00\x00" func lockedtokensAdminAdmin_remove_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3670,7 +3777,7 @@ func lockedtokensAdminAdmin_remove_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_remove_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x27, 0x35, 0xc4, 0xb6, 0xf5, 0x3d, 0xc2, 0x47, 0x6d, 0x70, 0x6, 0xa, 0xe8, 0x19, 0x7e, 0x28, 0xa9, 0x66, 0x7e, 0xfe, 0xe1, 0x6a, 0xe, 0x78, 0x5d, 0xf9, 0x2f, 0x3e, 0x3e, 0x9b, 0xa5, 0x58}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x74, 0xd8, 0x9, 0x2e, 0xae, 0x30, 0xd3, 0x8a, 0x16, 0x8c, 0x2c, 0xb6, 0xbf, 0x31, 0xea, 0x75, 0xf9, 0xf9, 0x9e, 0xda, 0x21, 0x35, 0xe4, 0xdb, 0x5a, 0x60, 0x10, 0x2e, 0x43, 0x22, 0x93, 0x83}} return a, nil } @@ -3834,26 +3941,6 @@ func lockedtokensAdminDeposit_locked_tokensCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminGet_unlocking_bad_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x4f\x4f\x83\x40\x10\xc5\xef\x7c\x8a\xb1\x07\x03\x17\x7a\x31\x1e\x88\xd8\xa0\xc6\x0f\x60\xe2\xc9\x78\x58\x76\x87\x66\xc2\x76\x86\xec\x9f\x28\x21\x7c\x77\xd3\x42\xb1\x69\xd9\xd3\x6e\xf6\xbd\xf7\x7b\x33\x49\xa2\xb4\x46\xef\x53\x65\x6d\x06\x4d\x64\x38\x28\xe2\x34\x48\x8b\x5c\x99\x03\x71\x01\x95\x31\x0e\xbd\xcf\x0a\x18\xe6\x6b\x01\x9f\xef\xf4\xfb\xf8\x30\xc2\x90\x24\x00\x00\x16\x03\x68\xe9\x7a\x69\xde\x48\x07\x12\x56\xae\x5f\x93\x97\x30\x8c\xff\x0e\xa5\xb5\x44\x0e\x50\xc2\x1e\x43\x35\x3d\x2e\xc8\xd9\x49\xb8\xa8\xcd\x92\xfc\x81\x0d\x3a\x64\x8d\x50\x9e\x33\x72\xad\x3a\x55\x93\xa5\x40\xe8\xf3\x5a\x9c\x93\x9f\xa7\xfb\x9b\x02\xcf\xe9\xb6\x8b\xb5\x25\xbd\x8d\x6c\x45\xb7\xc4\xfb\x17\x65\x66\xb4\x9f\x80\xc7\xb3\xdb\x41\xa7\x98\x74\xba\x79\x95\x68\x0d\xb0\x84\x63\x47\xa8\x95\x39\x13\xfd\x45\xa1\x4d\x36\x0d\xd5\x88\x03\x35\x21\x81\x78\xad\x71\xde\x62\xef\x61\x58\x40\xd7\x4b\xfb\x9a\xed\xdf\x50\xae\xd9\x97\xef\xbb\x53\xc2\xbc\x4b\x87\x21\x3a\xbe\xc9\x4a\xc6\xbf\x00\x00\x00\xff\xff\x4f\xcb\x8e\xa1\xdd\x01\x00\x00" - -func lockedtokensAdminGet_unlocking_bad_accountsCdcBytes() ([]byte, error) { - return bindataRead( - _lockedtokensAdminGet_unlocking_bad_accountsCdc, - "lockedTokens/admin/get_unlocking_bad_accounts.cdc", - ) -} - -func lockedtokensAdminGet_unlocking_bad_accountsCdc() (*asset, error) { - bytes, err := lockedtokensAdminGet_unlocking_bad_accountsCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "lockedTokens/admin/get_unlocking_bad_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0xb7, 0x87, 0x31, 0xb3, 0x2d, 0x91, 0xa6, 0xa3, 0x48, 0x62, 0x10, 0x24, 0x2, 0xc7, 0x38, 0xec, 0xbc, 0x61, 0x3c, 0xef, 0xae, 0x58, 0x43, 0x81, 0x83, 0x14, 0xe3, 0xd5, 0x94, 0xf4, 0x46}} - return a, nil -} - var _lockedtokensAdminUnlock_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x91\x4f\x4f\xf3\x30\x0c\xc6\xef\xfd\x14\x7e\x77\xd8\x9b\x4a\xa8\xe2\x80\x38\x54\xc0\x54\xb6\x71\xd9\x60\x68\x7f\xb8\x9b\xd4\xdd\xa2\xb5\x49\xe5\xb8\x62\x12\xda\x77\x47\x6d\xa6\xd1\xed\x8a\x2f\x4e\x24\xfb\xc9\xef\x79\x62\xaa\xda\xb1\xc0\xdc\xe9\x3d\xe5\x6b\xb7\x27\xeb\xa1\x60\x57\xc1\xed\x61\xbe\x18\xcf\xa6\x93\xf5\x62\x36\x7d\xcb\x26\x93\xe5\x74\xb5\x8a\x22\x61\xb4\x1e\xb5\x18\x67\x95\x20\x6f\x49\x32\xad\x5d\x63\x25\x85\x2c\xcf\x99\xbc\xbf\x81\x9c\x4a\xc1\x14\x36\x2f\xe6\x70\x7f\x17\xc3\x77\x14\x01\x00\xd4\x4c\x35\x32\x29\xcc\x2b\x63\x53\xc0\x46\x76\xea\xd9\x31\xbb\xaf\x0f\x2c\x1b\x8a\x61\x78\x52\x3a\x6f\xb4\x55\x92\x40\xb7\xb1\xa4\x02\x1e\xc3\x31\xf1\xe2\x18\xb7\x94\x7c\x76\xeb\x0f\xc3\x3e\x7c\xd2\xb5\xac\x9d\x1b\xbb\xb2\xa4\x0e\xf5\x49\xb5\x96\xd2\x0b\x97\x49\xef\x72\x35\xbe\x0a\xfa\xef\x28\xbb\xf8\x4c\xd2\xd6\x68\x04\x35\x5a\xa3\xd5\x60\xec\x9a\x32\x07\xeb\x04\x02\x04\x20\x30\x15\xc4\x64\x35\x81\x38\x90\x1d\x05\x58\xd0\x67\xd9\x41\x7c\xe9\x4b\xda\xa7\x5f\xd1\xe2\x96\xb8\x67\x6f\x49\x45\xf2\x9b\xab\xc2\x10\x6b\x0a\x17\x71\xc7\xff\x4e\xee\xd5\x5f\x08\x1b\x4f\xfc\xdf\x07\x10\xa8\x02\x49\x9f\xf2\x8a\x30\x31\x56\x33\xa1\xa7\x8d\x2d\x9d\xde\xcf\x4d\x65\x44\x9d\x7e\xbb\x6b\x81\xe5\x18\x1d\xa3\x9f\x00\x00\x00\xff\xff\x7f\xbb\x35\x53\x57\x02\x00\x00" func lockedtokensAdminUnlock_tokensCdcBytes() ([]byte, error) { @@ -3874,7 +3961,7 @@ func lockedtokensAdminUnlock_tokensCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x6f\xe3\x46\x0c\xbd\xfb\x57\xb0\x7b\xd8\xca\x40\x60\xf7\x50\xf4\x60\x24\xbb\x70\x93\xb4\x0d\x36\xed\x2e\x92\xec\xa9\xe8\x81\xd6\xd0\xd6\x20\xd2\x8c\x31\x43\xd9\x09\x02\xff\xf7\x82\x33\x92\x3d\xfa\x88\x5b\x5d\x12\xcb\xe4\xe3\xd7\x23\x9f\x75\xb5\xb5\x8e\xe1\xde\xe6\xcf\xa4\x9e\xec\x33\x19\x0f\x6b\x67\x2b\xf8\xe9\xe5\xfe\xeb\xf5\x97\xdb\x9b\xa7\xaf\x5f\x6e\xff\x5a\xde\xdc\x3c\xdc\x3e\x3e\x4e\x26\xf3\x39\x3c\x15\xda\x03\x3b\x34\x1e\x73\xd6\xd6\x40\xed\xc9\x03\x17\x04\x65\x00\x01\x8e\x28\xa8\x2a\x6d\xc4\x81\x2d\x78\xe2\x60\x51\x1b\xb1\x81\x52\x57\x9a\x61\x6d\x1d\x54\x75\xc9\x7a\x5b\x12\x60\x9e\xdb\xda\xb0\x17\x07\x6d\x00\xc1\x6b\xb3\x29\x29\x0d\x14\x83\x1f\x4d\x01\x95\x72\xe4\x25\x78\xed\x49\x01\x7a\x78\xa6\xd7\x00\xe0\x0b\x5b\x97\x0a\x56\x94\x04\x15\x8b\xbe\xe3\x64\x92\xc0\x67\xd1\xee\xce\xac\xed\x02\xde\x96\xd1\x66\x01\xdf\x7f\xd3\x2f\xbf\xfc\x7c\x98\xc2\xdb\x64\x02\x00\xb0\x75\xb4\x45\x47\x59\x28\x6f\x01\x58\x73\x91\x3d\xb2\x75\xb8\xa1\x29\x7c\x5c\xc6\x10\x47\x6b\x79\xe6\x73\xf8\xde\xa6\xb0\x1c\xe4\xce\x05\x32\x14\xa8\xc0\xdb\x8a\xc0\xcb\x30\xec\x1a\xc8\x39\xeb\x52\x04\x74\x04\x9e\xad\x23\x25\xed\x61\x99\x81\xd2\x21\x6f\x74\xaf\xe0\xad\x54\xfa\x0a\x39\x1a\xa9\x5a\x1b\xbf\xa5\x9c\x49\x41\x89\x4c\x1d\x9c\xbb\x75\xe8\x49\x3a\x3f\x43\xa4\xbc\x4c\xc9\xd5\xe6\x34\x10\xd6\x15\xf9\x8b\xd4\x95\x0b\x32\xc1\x39\x09\xac\x3d\x18\xcb\x60\x77\xe4\xf6\x4e\x33\x93\x39\x7a\xec\xd0\xc1\x0a\x55\x53\xb1\x1f\xe9\x29\x5c\x45\x92\xcc\x7c\xec\xdf\xac\xb4\xa8\x2e\x07\x66\x9f\x32\x21\xe4\x02\xe6\x8d\xd9\x3c\x0e\x4a\x9b\xcd\xaf\x27\xf8\xe9\x31\xae\x3c\x9f\x3f\xc3\xdb\x41\x18\x31\x00\x3b\x8d\xa5\x24\x8e\xe1\x1f\x68\x3d\xc8\x64\x65\x9d\xb3\xfb\xcb\x8f\xe9\x5e\xcc\xc2\x9f\xa5\xd8\x5d\xdb\xb2\xa4\xd0\x84\x36\xb9\x8e\x61\xf2\xa1\x67\xde\x30\xe5\x1b\x72\x31\xc8\x78\x8b\x46\xe7\xd9\x87\xeb\xc0\x5d\xe9\x6a\x4c\x02\x10\x1c\xad\xc9\x91\xc9\x49\xa6\x24\x13\x08\xc9\x42\x7e\x84\xfd\x30\x3d\xd5\x25\x6b\xd5\x52\xbe\xa9\x5e\x28\x73\x62\xf7\x4c\xd6\x24\x25\x68\x33\xdf\x65\x59\x0a\xf5\x04\x5f\xaf\xa5\x3d\x3e\xb0\x6e\x45\x39\xd6\x9e\x60\x4f\xa0\xac\xf9\x91\x01\xf6\x68\x18\xd8\xf6\xfd\x1d\xed\xc8\xc5\x3d\x27\xc3\xda\x75\x59\xa6\xd7\x20\x3b\x8f\xba\xf4\x7d\x47\xb6\xb0\x69\x0e\x84\x36\x6b\xeb\x2a\x0c\x1e\x52\xc8\xf1\x0e\x34\x0b\xd3\x71\x8d\x59\x36\x67\xa7\x21\x82\x14\x18\x07\xba\x21\x6e\xde\x65\xbd\x76\x74\x3b\x2f\xcf\x2c\xc7\x2d\xae\x74\xa9\x59\x93\x3f\x33\xfc\x3f\x6c\xa9\xc8\x7d\xca\x46\xa6\x9d\xc4\xff\x56\xaf\x4a\x9d\x87\x19\xf7\xdb\xdc\x12\xaf\x93\x73\x3b\xa5\xab\xd1\x52\x66\x1b\xe2\xfb\x11\xf3\x6c\x3a\x84\xee\x74\x24\xf2\x2f\xfa\x3c\x50\x6e\x9d\x6a\x69\xde\xa0\xb6\xed\xc1\x76\x47\xc6\xb2\x92\x12\xfa\x61\xe4\x19\x7d\xd9\xc4\x0f\x0a\xf0\x27\x1a\xdc\x90\x8b\xc3\x78\x2f\xa3\xa6\xd7\xd9\x68\xa3\x12\x8a\xfc\xde\x15\x10\xac\xc2\x15\x0d\x42\xd5\x3f\x67\xe8\x36\x75\x45\x86\x93\x33\xf5\x2e\xb2\xdc\xa8\x08\xb9\x8c\x88\x57\xc9\x9e\xfc\xdd\xa3\xcd\x3f\x3f\x9c\x4d\xf1\xce\xe4\x8e\xd0\xd3\x50\xe8\x56\xaf\x71\x69\x43\x88\x77\x21\x7a\x4d\x9b\xe9\x06\x2f\x6a\xc7\xbd\x20\x65\x8a\x4a\xc6\x45\x27\xe5\x11\x16\x24\x49\x5d\x5b\xc3\xda\xd4\xc7\xc3\x61\xe8\x85\x41\x33\xb9\xb8\x62\xcd\xba\x97\xd6\x6e\xcf\xa1\xb4\x27\x80\x13\xf5\xf5\x75\x9e\x13\x29\x91\x55\xa3\x40\x59\x8a\x4a\x20\x62\x72\x0e\x8a\xad\x08\x54\x85\xee\x39\x4a\xf6\x0a\xdf\x37\xcf\x9b\xe4\x47\x0d\x0e\x83\xb7\x87\x2e\x27\x0f\x83\x03\xd7\x68\x1f\xbd\x50\x5e\x87\xf2\x2b\x7c\x26\x2f\x67\xa9\x20\x47\x90\x1d\x8b\x70\x84\x79\x11\x6c\xdb\x14\x00\x57\x76\x47\xd3\x3e\xa2\x66\xa8\x08\x8d\x0f\xe2\xcd\x85\x36\x1b\xd8\x0b\xf5\xf6\xce\xca\xbf\x9a\x8b\x84\x0d\xf2\xad\xdc\xb4\xa4\x8b\x7d\x3c\x69\xa5\xe6\x93\x22\xaf\x08\x3c\xee\x7a\x1d\x4d\x44\x75\x40\xd1\xf3\x04\x9e\x8c\xf4\xa6\xab\x7b\x12\x6d\x4c\x81\x93\x98\x17\xc0\xf6\x3f\xc5\xb8\xa3\xb2\x23\x26\xd7\xb8\x3d\x6a\x6e\xe7\xf6\xb6\x89\x68\xef\x6b\xba\xfc\x38\x92\xca\xff\xfc\x19\x30\x82\xbd\x95\xbb\xec\x8b\x6c\x3c\x9f\x0b\x40\x5e\xc0\x3c\x18\xe5\x67\xc0\x0f\x93\xc3\xe4\xdf\x00\x00\x00\xff\xff\x01\x17\x79\x30\x36\x0b\x00\x00" +var _lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x6f\xe3\x46\x0c\xbd\xfb\x57\xb0\x7b\xd8\xca\x40\x60\xf7\x50\xf4\x60\x24\xbb\x70\x9d\xb4\x0d\x36\xed\x2e\x92\xec\xa9\xe8\x81\xd6\xd0\xd6\x20\xd2\x8c\x31\x43\xc5\x09\x02\xff\xf7\x82\x33\x92\x3d\xfa\x88\x5b\x5d\x12\xcb\xe4\xe3\xd7\x23\x9f\x75\xb5\xb3\x8e\xe1\xce\xe6\x4f\xa4\x1e\xed\x13\x19\x0f\x1b\x67\x2b\xf8\xe9\xe5\xee\xeb\xea\xcb\xcd\xf5\xe3\xd7\x2f\x37\x7f\x2d\xaf\xaf\xef\x6f\x1e\x1e\x26\x93\xf9\x1c\x1e\x0b\xed\x81\x1d\x1a\x8f\x39\x6b\x6b\xa0\xf6\xe4\x81\x0b\x82\x32\x80\x00\x47\x14\x54\x95\x36\xe2\xc0\x16\x3c\x71\xb0\xa8\x8d\xd8\x40\xa9\x2b\xcd\xb0\xb1\x0e\xaa\xba\x64\xbd\x2b\x09\x30\xcf\x6d\x6d\xd8\x8b\x83\x36\x80\xe0\xb5\xd9\x96\x94\x06\x8a\xc1\x8f\xa6\x80\x4a\x39\xf2\x12\xbc\xf6\xa4\x00\x3d\x3c\xd1\x6b\x00\xf0\x85\xad\x4b\x05\x6b\x4a\x82\x8a\x45\xdf\x71\x32\x49\xe0\xb3\x68\x77\x6b\x36\x76\x01\x6f\xcb\x68\xb3\x80\xef\xbf\xe9\x97\x5f\x7e\x3e\x4c\xe1\x6d\x32\x01\x00\xd8\x39\xda\xa1\xa3\x2c\x94\xb7\x00\xac\xb9\xc8\x1e\xd8\x3a\xdc\xd2\x05\xac\x70\x87\x6b\x5d\x6a\xd6\xe4\xa7\xf0\x71\x19\x03\x1e\x7d\xe5\x99\xcf\xe1\x7b\x9b\xd0\x72\x50\x09\x17\xc8\x50\xa0\x02\x6f\x2b\x02\x2f\xa3\xb1\x1b\x20\xe7\xac\x4b\x11\xd0\x11\x78\xb6\x8e\x94\x34\x8b\x65\x22\x4a\x87\x2a\xd0\xbd\x82\xb7\x52\xf7\x2b\xe4\x68\xa4\x07\xda\xf8\x1d\xe5\x4c\x0a\x4a\x64\xea\xe0\xdc\x6e\x42\x87\xd2\x69\x1a\x22\xe5\x65\x66\xae\x36\xa7\xf1\xb0\xae\xc8\x5f\xa4\xae\x5c\x90\x09\xce\x49\x60\xed\xc1\x58\x06\xfb\x4c\x6e\xef\x34\x33\x99\xa3\xc7\x33\x3a\x58\xa3\x6a\x2a\xf6\x23\x1d\x86\xab\x48\x99\x99\x8f\xdd\x9c\x95\x16\xd5\xe5\xc0\xec\x53\x26\xf4\x5c\xc0\xbc\x31\x9b\xc7\xb1\x69\xb3\xfd\xf5\x04\x3f\x3d\xc6\x95\xe7\xf3\x67\x78\x3b\x08\x3f\x06\x60\xa7\xb1\x94\xc4\x31\xfc\x3d\x6d\x06\x99\xac\xad\x73\x76\x7f\xf9\x31\xdd\x92\x59\xf8\xb3\x14\xbb\x95\x2d\x4b\x0a\x4d\x68\x93\xeb\x18\x26\x1f\x7a\xe6\x0d\x6f\xbe\x21\x17\x83\x8c\x77\x68\x74\x9e\x7d\x58\x05\x26\x4b\x57\x63\x12\x80\xe0\x68\x43\x8e\x4c\x4e\x32\x25\x99\x40\x48\x16\xf2\x23\xec\x87\xe9\xa9\x2e\x59\xb2\x76\x01\x9a\xea\x85\x32\x27\xae\xcf\x64\x69\x52\x82\x36\xf3\x5d\x96\xa5\x50\x4f\xf0\xf5\x46\xda\xe3\x03\xeb\xd6\x94\x63\xed\x09\xf6\x04\xca\x9a\x1f\x19\x60\x8f\x86\x81\x6d\xdf\xdf\xd1\x33\xb9\xb8\xf5\x64\x58\xbb\x2e\xcb\xf4\x06\xe4\x02\xa0\x2e\x7d\xdf\x91\x2d\x6c\x9b\x73\xa1\xcd\xc6\xba\x0a\x83\x87\x14\x72\xbc\x0a\xcd\xc2\x74\x5c\x63\x96\xcd\x11\x6a\x88\x20\x05\xc6\x81\x6e\x89\x9b\x77\x59\xaf\x1d\xdd\xce\xcb\x33\xcb\x93\x35\x3e\x33\xfc\x3f\x6c\xa9\xc8\x7d\xca\x46\xa6\x9d\xc4\xff\x56\xaf\x4b\x9d\x87\x19\xf7\xdb\xdc\x12\xaf\x93\x73\x3b\xa5\xab\xd1\x52\x66\x5b\xe2\xbb\x11\xf3\x6c\x3a\x84\xee\x74\x24\xf2\x2f\xfa\xdc\x53\x6e\x9d\x6a\x69\xde\xa0\xb6\xed\xc1\x76\x47\xc6\xb2\x92\x12\xfa\x61\xe4\x19\x7d\xd9\xc4\x0f\x7a\xf0\x27\x1a\xdc\x92\x8b\xc3\x78\x2f\xa3\xa6\xd7\xd9\x68\xa3\x12\x8a\xfc\xde\x95\x13\xac\xc2\x15\x0d\xb2\xd5\x3f\x67\xe8\xb6\x75\x45\x86\x93\x33\xf5\x2e\xb2\xdc\xa8\x08\xb9\x8c\x88\x57\xc9\x9e\xfc\xdd\xa3\xcd\x3f\x3f\x9c\x4d\xf1\xd6\xe4\x8e\xd0\xd3\x50\xf6\xd6\xaf\x71\x69\x43\x88\x77\x21\x7a\x4d\x9b\xe9\x06\x2f\x6a\xc7\x9d\x20\x65\x8a\x4a\xc6\x45\x27\xe5\x11\x16\x24\x49\xad\xac\x61\x6d\xea\xe3\xe1\x30\xf4\xc2\xa0\x99\x5c\x5c\xb1\x66\xdd\x4b\x6b\x77\xe7\x50\xda\x13\xc0\x89\x16\xfb\x3a\xcf\x89\x94\x88\xac\x51\xa0\x2c\x45\x25\x10\x31\x39\x07\xc5\x56\x04\xaa\x42\xf7\x14\x05\x7c\x8d\xef\x9b\xe7\x4d\xf2\xa3\x06\x87\xc1\xdb\x43\x97\x93\x87\xc1\x81\x6b\xb4\x8f\x5e\x28\xaf\x43\xf9\x15\x3e\x91\x97\xb3\x54\x90\x23\xc8\x8e\x45\x38\xc2\xbc\x08\xb6\x6d\x0a\x80\x6b\xfb\x4c\xd3\x3e\xa2\x66\xa8\x08\x8d\x0f\xe2\xcd\x85\x36\x5b\xd8\x0b\xf5\xf6\xce\xca\xbf\x9a\x8b\x84\x0d\xf2\xad\xdc\xb4\xa4\x8b\x7d\x3c\x69\xa5\xe6\x93\x22\xaf\x09\x3c\x3e\xf7\x3a\x9a\x88\xea\x80\xa2\xe7\x09\x3c\x19\xe9\x4d\x57\xf7\x24\xda\x98\x02\x27\x31\x2f\x80\xed\x7f\x8a\x71\x47\x65\x47\x4c\x56\xb8\x3b\x6a\x6e\xe7\xf6\xb6\x89\x68\xef\x6b\xba\xfc\x38\x92\xca\xff\xfc\x19\x30\x82\xbd\x93\xbb\xec\x8b\x6c\x3c\x9f\x0b\x40\x5e\xc0\x3c\x18\xe5\x67\xc0\x0f\x93\xc3\xe4\xdf\x00\x00\x00\xff\xff\xb5\x30\x2f\x1a\x44\x0b\x00\x00" func lockedtokensAdminUnlock_tokens_for_multiple_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3890,11 +3977,11 @@ func lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0x91, 0xfe, 0x26, 0x3a, 0x56, 0xeb, 0x34, 0x12, 0xa2, 0x70, 0xa0, 0x43, 0x12, 0x68, 0xb5, 0x4d, 0xa7, 0xf5, 0xc1, 0x31, 0x5a, 0xf0, 0xa7, 0x29, 0xf0, 0xe5, 0xaa, 0x3a, 0x6e, 0xff, 0x1b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4c, 0x5, 0xef, 0x22, 0xf6, 0x7a, 0xca, 0x62, 0x9, 0xf1, 0x3c, 0x4c, 0x45, 0x6e, 0xf5, 0xd8, 0x8, 0x24, 0xd, 0x8c, 0x4b, 0x29, 0x89, 0xc0, 0xa0, 0xd7, 0x6f, 0x3b, 0xbc, 0xe, 0xfe, 0x44}} return a, nil } -var _lockedtokensDelegatorDelegate_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\xcd\x6e\x9b\x40\x10\xbe\xf3\x14\x53\x0e\x11\x1c\x42\x7a\xa8\x7a\xb0\xec\x46\x49\xec\xa8\x52\x22\x27\x8a\xd3\xf4\xbc\x86\xc1\x20\xaf\x19\xb4\x0c\xb5\x2b\xcb\xef\x5e\xed\x0f\x84\x25\xb2\x54\x29\x5c\x56\xec\xcc\x7e\xf3\xfd\x4c\xb9\xab\x49\x31\xdc\x4b\xda\xbf\xd2\x16\x2b\xc8\x15\xed\x20\xec\xff\xc3\xa0\xeb\x68\xab\x4d\xb9\x96\xe8\x75\x0d\xef\xfa\xce\x47\x4a\xb7\x98\x99\xbb\xc6\x36\x7e\x3d\x3c\x3e\xdd\x3d\x2c\xe6\xaf\x4f\x0f\x8b\xe5\xcd\x7c\xfe\xb2\x58\xad\x82\x80\x95\xa8\x1a\x91\x72\x49\x55\x24\x76\xd4\x56\x3c\x81\x5f\xf7\xe5\xe1\xfb\xb7\x18\x8e\x41\x00\x00\x20\x91\xa1\x20\x99\xa1\x7a\xc1\x7c\x02\x17\x43\xe8\xc4\x1c\x3f\x4d\xf5\xbd\xfb\x8f\x68\x25\xdb\xe6\x5e\x43\xf2\xa6\x2f\x6d\x4f\xad\xb0\x16\x0a\x23\x91\xa6\x76\xa2\x68\xb9\x88\x6e\x49\x29\xda\xbf\x09\xd9\x62\x0c\x17\x37\xb6\xa6\x59\x80\xfb\x1a\x94\x79\xd2\x33\x81\x19\xb8\xf7\x49\xc3\xa4\xc4\x06\x93\xb5\x41\x98\x9e\x65\xf8\x23\xd2\x4e\x4c\xe0\x5c\x7d\x65\x71\x9e\x05\x17\x71\x3f\x55\x7f\xd7\xd7\x50\x8b\xaa\x4c\xa3\xf0\x8e\x5a\x99\x41\x45\x0c\x76\x18\x28\xcc\x51\x61\x95\x22\x30\xc1\x00\x2b\x8c\x03\x9f\x78\x67\xca\x79\xde\xc6\x05\x2f\xce\xe4\x77\xc9\x45\xa6\xc4\x5e\xac\xa5\x36\x65\xe4\x66\xa7\xe7\xca\x01\x5d\xe5\x5d\xdd\x94\xff\x5b\x83\x7e\x06\x6c\x76\xca\xb0\x7c\x17\x15\x5a\x8c\x93\xd5\x82\x07\x4c\x5b\xc6\x41\x24\x3a\xed\x86\xc5\x16\xd5\xb3\xa2\xc3\x5f\x98\x8d\x42\x72\xd2\xe6\x28\x71\x23\x98\x54\x34\x70\x45\xbf\x95\x26\x89\x5b\x21\x85\x76\xf0\xc3\xeb\x0d\xb2\xcd\xca\x6d\x83\x6b\x1c\xa2\x94\x39\xd8\xbd\x85\xe9\x6c\x04\x77\x0c\x3c\x03\x06\x3c\x93\xcc\x12\xc2\x25\x5a\xbf\x9a\x7e\xf9\xed\x39\x18\x70\x02\x94\x0d\xea\x39\x91\x6b\x82\x4b\x7f\x50\xac\x47\x7b\x19\x27\xeb\xae\x32\xe6\xe0\xeb\xcb\xb0\xa6\xa6\x64\x17\xe3\xf4\xd2\x07\xd9\xbb\xf0\x47\xdc\x3e\x8c\x8f\x3f\xa3\x73\x24\xf3\xe8\x41\xb9\x85\x59\x12\x03\x56\xd4\x6e\x0a\xbb\x25\x8d\xde\x75\x33\xe6\x4b\x38\x40\x70\xab\x72\x0a\xfe\x05\x00\x00\xff\xff\x2d\xd2\xd3\x9f\xd0\x04\x00\x00" +var _lockedtokensDelegatorDelegate_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x6b\xdb\x40\x10\xbd\xeb\x57\x4c\x75\x28\x12\x34\x4a\x0f\xa5\x87\x60\x37\x24\xb1\x43\x21\xc1\x0e\x71\x9a\x9e\xd7\xd2\xc8\x16\x5e\x6b\xc4\xee\xa8\x76\x31\xfe\xef\x65\x3f\x24\x4b\x32\xfd\xa2\x54\x97\x45\x3b\x33\x6f\xde\x9b\x37\x5b\x6c\x2b\x52\x0c\xf7\x92\x76\x2f\xb4\xc1\x12\x72\x45\x5b\x08\xdb\xff\x30\x68\x32\xea\x72\x55\x2c\x25\xf6\xb2\xba\x77\x6d\xe6\x23\xa5\x1b\xcc\xec\x9d\x76\x89\xef\xf7\x8f\xf3\xbb\x87\xe9\xe4\x65\xfe\x30\x9d\xdd\x4c\x26\xcf\xd3\xc5\x22\x08\x58\x89\x52\x8b\x94\x0b\x2a\x23\xb1\xa5\xba\xe4\x2b\xf8\x72\x5f\xec\x3f\x7e\x88\xe1\x10\x04\x00\x00\x12\x19\xd6\x24\x33\x54\xcf\x98\x5f\x81\xa8\x79\x1d\x75\xe1\x13\x7b\xcc\x2b\x54\xc2\xc0\xe8\x77\x7d\x9a\xc9\xd7\x82\xd7\x99\x12\x3b\xb1\x94\x18\xc3\xdb\xf3\xd2\xcf\x16\xfc\xd4\xec\x9b\xa8\x25\x9f\x7a\xfd\x12\xad\x9d\x51\xf2\x6a\xaa\x1c\x48\xa5\xb0\x12\x0a\x23\x91\xa6\x4e\x91\xc5\xb9\x25\xa5\x68\xf7\x2a\x64\x6d\x0a\x6f\x5c\xcc\xa8\x04\xff\x69\x94\x79\xd2\x2a\x85\x31\xf8\xfa\x44\x33\x29\xb1\xc2\x64\x69\x11\x46\xff\x6b\x02\x9f\x22\x63\xd4\x15\xfc\x2c\xbe\x70\x34\x9e\x04\xaf\xe3\x96\xb4\xf9\xae\xaf\xa1\x12\x65\x91\x46\xe1\x1d\xd5\x32\x83\x92\x18\x1c\x57\x50\x98\xa3\xc2\x32\x45\x60\x82\x0e\x56\x18\x07\x7d\xdd\xcd\xd0\x7f\x23\xfb\x6f\xcc\x68\xf4\x5c\x7a\xa0\xcb\xbc\x89\xdb\xf0\x1f\x6b\x30\x65\xc0\x76\xe5\x2d\xcb\x93\xa8\xd0\x61\x1c\x9d\x16\xdc\x63\x5a\x33\x76\x1c\x35\xdb\xa4\x59\x6c\x50\x3d\x29\xda\x7f\x87\xf1\xc0\x63\x2f\x6d\x82\x12\x57\x82\x49\x45\x9d\xa9\x98\x5a\x69\x9d\xb8\x15\x52\x98\x09\x9e\x55\xaf\x90\x9d\x57\x7e\x99\x7c\x62\x17\xa5\xc8\xc1\x3d\x2b\x18\x8d\x07\x70\x87\xa0\x37\x80\x0e\xcf\x24\x73\x84\x70\x86\x6e\x5e\xba\x7d\x9b\xee\xec\x34\x38\x02\x4a\x8d\xa6\x4f\xe4\x93\xe0\xa2\xdf\x28\x36\xad\x7b\x1e\x27\xcb\x26\x32\xe4\xd0\xd7\x97\x61\x45\xba\x60\x6f\xe3\xe8\xa2\x0f\xb2\xf3\xe6\x0f\xb8\x9d\xb5\x8f\xff\x45\xe7\x40\xe6\xa1\x07\xe5\x17\x66\x46\x0c\x58\x52\xbd\x5a\xbb\x2d\xd1\x66\xd7\x6d\x9b\x37\x61\x07\xc1\xaf\xca\x31\xf8\x11\x00\x00\xff\xff\x0d\x24\x14\xe2\x6f\x05\x00\x00" func lockedtokensDelegatorDelegate_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3910,11 +3997,11 @@ func lockedtokensDelegatorDelegate_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5c, 0xfe, 0x21, 0x4, 0xcf, 0x58, 0xd9, 0x7a, 0xf8, 0x68, 0x82, 0xc2, 0xf9, 0x52, 0x42, 0x1a, 0x13, 0xb4, 0x7e, 0x98, 0x0, 0x1f, 0x68, 0x46, 0xe5, 0xb9, 0x80, 0xc5, 0x2c, 0x9, 0x29, 0x31}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x60, 0x11, 0xf, 0x4a, 0x79, 0x7f, 0x98, 0x58, 0xf8, 0xf1, 0xee, 0xf9, 0x5, 0xb5, 0xa1, 0x79, 0xee, 0x1e, 0x65, 0x76, 0xf5, 0x2a, 0xc4, 0x5a, 0x51, 0x1a, 0xa8, 0x81, 0x77, 0xb0, 0x92, 0x93}} return a, nil } -var _lockedtokensDelegatorDelegate_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xb1\x6e\xc2\x40\x0c\x86\xf7\x3c\x85\xc5\x80\xc2\x12\x75\xa8\x3a\xa0\x52\x44\x1b\xaa\x4a\x20\x40\x40\xbb\xbb\x39\x87\x9c\x08\xe7\xe8\xce\x29\xa9\x2a\xde\xbd\x22\x47\x02\x14\x35\x8b\x63\xd9\xfe\x7e\xff\x3e\xbd\x2b\xd8\x0a\x4c\x39\xd9\x92\x5a\xf3\x96\x8c\x83\xd4\xf2\x0e\xee\xaa\xe9\xfc\x65\x32\x8e\xd7\xf3\xc9\x78\x36\x8a\xe3\xe5\x78\xb5\x0a\x02\xb1\x68\x1c\x26\xa2\xd9\x84\xb8\xe3\xd2\x48\x1f\xde\x5f\x75\xf5\x70\xdf\x83\x9f\x00\x00\x20\x27\x01\xc3\x8a\x62\xca\x69\x83\xc2\x76\x61\xb9\xfa\xee\x5f\x29\x44\x3e\x99\xdd\xb4\x05\x35\xa2\xb0\x54\xa0\xa5\x10\x93\xc4\x2b\x60\x29\x59\xf8\xcc\xd6\xf2\xfe\x03\xf3\x92\x7a\xd0\x1d\xf9\x5a\xa3\xda\x28\x67\x9c\x2b\xb2\x4b\x4a\x61\x00\xa7\xf1\xc8\x09\x5b\xdc\x50\xf4\x59\x03\x1e\xbb\x57\x9b\xd4\xe1\xad\x9e\x7a\x0a\x8f\xc6\xff\x6c\x7a\x51\x5f\x79\xce\x02\x25\xeb\xb5\xa2\xc7\x6f\x38\x84\x02\x8d\x4e\xc2\xce\x45\x37\x68\x07\x86\x05\x1c\x7e\x91\x02\x14\x70\x05\x25\x3a\xd5\xa4\xa0\x40\xc9\x3a\x67\x44\xfb\xe3\x28\x4f\xa3\xdb\xdb\xc1\xe0\x6c\xeb\x64\xa2\x6d\x08\x3d\xe6\xe0\x0f\x47\x15\x25\xa5\xd0\xc5\x4d\xfe\x41\x46\xca\xa7\xb4\xa4\x3d\x5a\xd5\xb8\x6d\x9f\xd4\xc7\x86\x7d\x08\x7e\x03\x00\x00\xff\xff\x82\x67\xa8\xc5\x26\x02\x00\x00" +var _lockedtokensDelegatorDelegate_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x41\x6f\xb2\x40\x10\xbd\xf3\x2b\x26\x1c\xbe\x60\xf2\x85\xf4\xd0\xf4\x60\x6a\x8d\x2d\x9a\x26\x1a\x35\x6a\xdb\xf3\xc8\x0e\xb2\x11\x77\xc9\xee\x50\x69\x1a\xff\x7b\x03\x2b\x28\x35\xe5\x32\x0c\xf3\xe6\xbd\x37\x2f\xc8\x43\xae\x0d\xc3\x4c\xc7\x7b\x12\x1b\xbd\x27\x65\x21\x31\xfa\x00\x77\xe5\x6c\xf1\x32\x1d\x47\x9b\xc5\x74\x3c\x1f\x45\xd1\x6a\xbc\x5e\x7b\x67\xf4\xa4\x50\x3b\xb9\xcd\xa8\xc6\x3b\xb8\xdf\xf9\xe6\x7b\x1e\x1b\x54\x16\x63\x96\x5a\x05\x78\xd0\x85\xe2\x3e\xbc\x4d\x64\xf9\x70\xdf\x83\x6f\x0f\x00\x20\x23\x06\xa5\x05\x45\x94\xd1\x0e\x59\x9b\xa5\xd1\xe5\x57\xbf\xe3\x25\x74\xcd\xfc\x06\xe6\xd5\x14\xb9\xa1\x1c\x0d\x05\x18\xc7\x4e\x01\x0b\x4e\x83\x67\x6d\x8c\x3e\xbe\x63\x56\x50\x0f\xfe\x8d\xdc\xac\x51\x6d\x94\x53\x9d\x09\x32\x2b\x4a\x60\x00\xe7\xf5\xd0\xb2\x36\xb8\xa3\x70\x5b\x13\x3c\xd6\x64\x1d\x37\x75\x59\xe4\x64\xb0\xba\xcb\xfe\xef\x26\x11\x7e\x48\x4e\x85\xc1\x23\x6e\xb3\x4a\xf9\x76\xf5\xb5\x16\x7d\x0a\xaa\xc8\x7e\x1d\x7a\x35\x5f\x3b\x1b\x4b\xe4\xb4\xd7\x7a\xae\x9e\xe1\x10\x72\x54\x32\x0e\xfc\x2b\x34\x48\x0b\x4a\x33\x58\xfc\x24\x01\xc8\x60\x73\x8a\x65\x22\x49\x40\x8e\x9c\xfa\x17\x8a\xf6\xc5\x52\x96\x84\xb7\xd1\xc3\xe0\x92\xca\x39\x83\x16\x10\x38\x9a\x93\xcb\x9d\x4a\x8a\x0b\xa6\xab\x48\xff\xa0\x0c\x85\x6b\x69\x45\x47\x34\xa2\xb9\xb6\xfd\x23\x5c\x6d\xb8\x4f\xde\x4f\x00\x00\x00\xff\xff\x58\xe4\xc7\x50\x8f\x02\x00\x00" func lockedtokensDelegatorDelegate_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3930,11 +4017,11 @@ func lockedtokensDelegatorDelegate_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x83, 0x8f, 0xdf, 0xe7, 0x68, 0xbc, 0xec, 0x5f, 0x66, 0xce, 0xe3, 0x8d, 0xa5, 0x1f, 0xb2, 0x19, 0x24, 0x6d, 0xd6, 0x91, 0x2, 0x29, 0x5c, 0x58, 0x3c, 0x2, 0xd1, 0xb5, 0xcf, 0x4e, 0x19}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xbb, 0x43, 0xc3, 0xad, 0xef, 0xab, 0xce, 0xd1, 0x1d, 0x88, 0x31, 0x6d, 0xed, 0xb2, 0x80, 0x59, 0xae, 0x2, 0xb0, 0xd8, 0xb4, 0x99, 0xce, 0x2e, 0xbc, 0xce, 0x6d, 0x8f, 0xa9, 0x3a, 0x4a}} return a, nil } -var _lockedtokensDelegatorDelegate_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4f\x6f\xf2\x30\x0c\xc6\xef\xfd\x14\x16\x07\xd4\x5e\xaa\xf7\xf0\x6a\x07\x34\x86\xd8\xca\x34\x09\x04\x88\x3f\xbb\x7b\xa9\x4b\x23\x4a\x5c\x25\xee\xd6\x69\xe2\xbb\x4f\x34\xd0\x95\xa1\xe5\x62\x59\xb6\x7f\xcf\x63\x47\x1f\x4a\xb6\x02\x33\x56\x7b\x4a\x37\xbc\x27\xe3\x20\xb3\x7c\x80\x7f\xf5\x6c\xf1\x34\x9d\x24\x9b\xc5\x74\x32\x1f\x27\xc9\x6a\xb2\x5e\x07\x81\x58\x34\x0e\x95\x68\x36\x21\x1e\xb8\x32\x32\x80\xed\xb3\xae\xef\xfe\x47\xf0\x15\x00\x00\x14\x24\x60\x38\xa5\x84\x0a\xda\xa1\xb0\x5d\x5a\xae\x3f\x07\x57\x0a\xb1\x4f\xe6\x37\x6d\x41\x83\x28\x2d\x95\x68\x29\x44\xa5\xbc\x02\x56\x92\x87\x8f\x6c\x2d\x7f\xbc\x62\x51\x51\x04\xfd\xb1\xaf\x5d\x54\x2f\xca\x39\x17\x29\xd9\x15\x65\x30\x84\xf3\x78\xec\x84\x2d\xee\x28\x7e\x6b\x00\xf7\xfd\x2b\x27\x4d\x78\x69\xa6\x1e\xc2\xd3\xe2\xbf\x9c\x76\xea\x6b\xcf\x59\xa2\xe4\x51\x2b\x7a\x7a\xa3\x11\x94\x68\xb4\x0a\x7b\x9d\x6e\xd0\x0e\x0c\x0b\x38\x7c\xa7\x14\x50\xc0\x95\xa4\x74\xa6\x29\x85\x12\x25\xef\x45\x41\xcb\x70\x54\x64\xf1\xed\xcd\x60\xf8\xb3\xce\xd9\x7c\xdb\x10\x7a\x07\x47\x0f\xa1\x9a\x54\x25\xd4\xb9\xc5\x1f\xc8\x38\xf5\x29\x6d\x8d\x13\x6c\xb7\x6c\xbf\xd2\xc7\x0b\xfb\x18\x7c\x07\x00\x00\xff\xff\x5f\xbb\xfb\xa9\x1e\x02\x00\x00" +var _lockedtokensDelegatorDelegate_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4d\x6b\xf2\x40\x10\xbe\xe7\x57\x0c\x39\xbc\x24\xf0\x12\x7a\x28\x3d\x48\xad\xd8\x46\x29\x28\x2a\x7e\xb4\xe7\x31\x99\x98\xc5\xb8\xbb\xec\x4e\x6a\x4a\xf1\xbf\x97\x64\x35\x35\x95\xe6\xb2\x6c\xe6\x99\xe7\x8b\x15\x07\xad\x0c\xc3\x54\x25\x7b\x4a\xd7\x6a\x4f\xd2\x42\x66\xd4\x01\xee\xaa\xe9\xfc\x65\x32\x8a\xd7\xf3\xc9\x68\x36\x8c\xe3\xe5\x68\xb5\xf2\xce\xe8\x71\x29\x77\x62\x5b\x50\x83\x77\x70\xbf\xf3\xcf\xf7\x3c\x36\x28\x2d\x26\x2c\x94\x0c\xf0\xa0\x4a\xc9\x3d\xd8\x8c\x45\xf5\x70\x1f\xc2\x97\x07\x00\x50\x10\x83\x54\x29\xc5\x54\xd0\x0e\x59\x99\x85\x51\xd5\x67\xaf\xe3\x25\x72\x97\xd9\x0d\xcc\x6b\x28\xb4\x21\x8d\x86\x02\x4c\x12\xa7\x80\x25\xe7\xc1\xb3\x32\x46\x1d\xdf\xb0\x28\x29\x84\x7f\x43\x37\xbb\xa8\x5e\x94\x73\x55\xa4\x64\x96\x94\x41\x1f\xce\xeb\x91\x65\x65\x70\x47\xd1\xb6\x21\x78\x6c\xc8\x3a\x6e\x9a\x63\xae\xc9\x60\x9d\xcb\xfe\xef\x36\x11\xbd\x0b\xce\x53\x83\x47\xdc\x16\xb5\xf2\xed\xea\x6b\x23\xfa\x14\xd4\x95\xfd\x0a\x7a\x35\x5f\x39\x1b\x0b\xe4\x3c\x6c\x3d\xd7\xdf\x60\x00\x1a\xa5\x48\x02\xff\x0a\x0d\xc2\x82\x54\x0c\x16\x3f\x28\x05\x64\xb0\x9a\x12\x91\x09\x4a\x41\x23\xe7\x7e\xe8\xb5\x1c\x96\x8a\x2c\xba\xad\x1c\xfa\x3f\x6d\x9c\xb3\xb7\x80\xc0\x39\x38\x39\x12\xaa\x28\x29\x99\xae\xaa\xfc\x83\x32\x4a\xdd\x95\x36\xd2\x32\xb6\x29\xdb\x97\xe0\xce\x0b\xf7\xc9\xfb\x0e\x00\x00\xff\xff\x36\x20\x90\x15\x87\x02\x00\x00" func lockedtokensDelegatorDelegate_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3950,7 +4037,7 @@ func lockedtokensDelegatorDelegate_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd5, 0x50, 0x2c, 0x33, 0x7e, 0xb3, 0x8f, 0x30, 0xc2, 0x11, 0xc3, 0x5, 0x60, 0xe9, 0xb, 0x30, 0xa9, 0xe0, 0xf5, 0xd0, 0xc9, 0xab, 0x9e, 0xbe, 0xa6, 0xc5, 0x2f, 0x3c, 0x2a, 0x40, 0xb0, 0xa8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x94, 0x5c, 0x74, 0x66, 0x16, 0x8b, 0xed, 0xa0, 0xd8, 0xf2, 0x96, 0xe8, 0x1c, 0xcb, 0x4a, 0xb4, 0xc3, 0x9e, 0xae, 0x5d, 0xbe, 0xbd, 0xcd, 0x85, 0xd1, 0xfa, 0xba, 0xd9, 0x64, 0xf0, 0x94, 0x26}} return a, nil } @@ -4014,7 +4101,7 @@ func lockedtokensDelegatorGet_delegator_node_idCdc() (*asset, error) { return a, nil } -var _lockedtokensDelegatorRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x53\xc1\x4e\xdb\x40\x10\xbd\xfb\x2b\xa6\x3e\x20\x5b\x2a\xa6\x87\xaa\x87\x08\x8a\x80\x80\x8a\xa0\x01\x11\x4a\xcf\x1b\xef\xd8\x5e\x65\xbd\xeb\xee\x8e\x49\x2a\x94\x7f\xaf\xd6\xbb\x31\x76\xd2\xf4\x07\xea\x4b\x94\x9d\x37\x6f\xde\xbc\x99\x11\x75\xa3\x0d\xc1\x8d\xd4\xab\x67\xbd\x44\x05\x85\xd1\x35\xc4\xfd\xff\x38\x0a\x88\x7b\x9d\x2f\x91\x77\x6f\xd6\x83\x3e\xad\xef\x1f\xae\xee\xae\xa7\xcf\x0f\x77\xd7\xb3\x8b\xe9\xf4\xe9\x7a\x3e\x8f\x06\x7c\xb7\xd3\x67\xb6\x90\x38\x27\xb6\x14\xaa\x1c\x10\x8f\x03\x7d\x85\x9b\x56\x95\x62\x21\x71\xa4\x63\xf8\x16\x47\x11\x19\xa6\x2c\xcb\x49\x68\x95\x08\x3e\x81\x39\x19\xa1\xca\x8f\xc0\x6a\xdd\x2a\x9a\xc0\x8f\x1b\xb1\xfe\xf2\x39\x85\xb7\x28\x02\x00\x90\x48\x50\x69\xc9\xd1\x3c\x61\x31\x81\xa3\x61\x13\x59\xf7\xf3\xad\x8b\xbe\xa3\x5f\x59\x2b\xc9\x83\x7b\x0f\xb2\x17\xf7\xe8\x31\x8d\xc1\x86\x19\x4c\x58\x9e\xfb\x8a\xac\xa5\x2a\xb9\xd4\xc6\xe8\xd5\x0b\x93\x2d\xa6\x70\x74\xe1\x63\x4e\x05\x84\xcf\xa2\x2c\xb2\x5e\x09\x9c\x41\xc8\xcf\x2c\x69\xc3\x4a\xcc\x16\x1d\xc3\xe9\x41\x85\x5f\x13\x67\xc8\x04\x0e\xc5\xe7\x9e\xe7\x91\x51\x95\xf6\x55\xdd\x77\x7e\x0e\x0d\x53\x22\x4f\xe2\x01\x1a\x84\x05\xa5\x09\x2c\x7b\x45\x0e\x8c\xc0\x36\x98\x8b\x42\x20\x87\x86\x51\x15\xa7\xd1\x58\xf9\xd6\x95\xc3\xc2\x3b\x1b\x46\xd3\xca\x7e\x0a\xaa\xb8\x61\x2b\x37\xeb\x74\xcf\xce\x6d\x43\x27\x81\xe8\xa4\xd8\xc6\xbb\xf0\xa1\x26\xae\x74\x2b\x79\xa7\xdd\x17\x06\x97\x06\xd4\xad\x4c\xa7\x12\x0c\x16\x68\x50\xe5\x18\x7b\x8e\x8d\xef\x05\xd7\x98\xb7\x84\x83\x99\xb8\x71\xcb\xce\xce\x4b\x26\x99\xca\x11\xce\x76\xe6\x94\x95\x48\xde\xf0\x30\xd2\x00\x4c\x06\xfe\x88\x22\x2c\x1f\x9c\x9e\xed\xd0\xbd\x45\xa3\x26\x76\xb8\x73\x83\x8c\x70\xa6\x39\x4e\x51\x62\xc9\x48\x9b\x44\x69\x8e\xb7\xd3\x09\x08\x9e\x8e\x73\x9d\x56\x4b\x6c\x89\xe6\xd1\xe8\xf5\xef\x7d\xa5\xde\x8d\x77\xa6\x9d\xfc\x41\x6e\xc6\x3d\x08\x67\xe8\xfd\xb6\xc9\xf6\x7a\x42\x23\xc7\x7f\x39\x5f\x67\x45\xcf\xfe\x5d\x28\x51\xb7\xb5\x0b\xe1\x13\xfe\x6a\x85\xc1\x1a\x15\x25\xe9\xa0\xea\x06\x50\x5a\x74\xf6\x24\x49\xcf\x3b\xf2\x27\x75\x8e\x8d\xd6\x2b\x5b\x6c\x23\xff\xb6\x8e\x63\xa3\xad\xa0\xb0\x41\xa7\xc7\x63\x92\x55\xd8\xbb\xfd\xb6\xc6\xe5\x77\x2d\xfa\x1f\xc7\xf3\x36\x92\x11\x6e\x6c\xa6\x09\x50\xe9\xb6\xac\xfc\x61\x59\x20\xed\x25\x7e\x88\xdf\xef\x72\x13\xae\x6b\x13\xfd\x09\x00\x00\xff\xff\x42\xa1\x4c\xd9\x44\x06\x00\x00" +var _lockedtokensDelegatorRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x54\xc1\x4e\xdb\x40\x10\xbd\xfb\x2b\xa6\x3e\x54\xb6\x04\xa6\x87\xaa\x87\x08\x8a\x80\x80\x8a\xa0\x01\x11\x4a\xcf\x1b\xef\xd8\x59\x65\xbd\xeb\xee\x8e\x49\x2a\x94\x7f\xaf\xd6\xbb\x71\xec\xa4\x50\xf5\xd0\x53\x7d\x89\xe2\x99\x79\xf3\xde\x9b\x19\x8b\xaa\xd6\x86\xe0\x4a\xea\xe5\xa3\x5e\xa0\x82\xc2\xe8\x0a\xe2\xee\x7f\x1c\x85\x8c\x5b\x9d\x2f\x90\xb7\xef\xac\x4f\xfa\xb0\xba\xbd\xbb\xb8\xb9\x1c\x3f\xde\xdd\x5c\x4e\xce\xc6\xe3\x87\xcb\xe9\x34\xea\xe1\x5d\x8f\x1f\xd9\x4c\xe2\x94\xd8\x42\xa8\xb2\x07\x3c\x0c\x74\x1d\xae\x1a\x55\x8a\x99\xc4\x01\x8f\xfe\xbb\x38\x8a\xc8\x30\x65\x59\x4e\x42\xab\x44\xf0\x11\x4c\xc9\x08\x55\x1e\x00\xab\x74\xa3\x68\x04\xdf\xae\xc4\xea\xd3\xc7\x14\x5e\xa2\x08\x00\x40\x22\xc1\x5c\x4b\x8e\xe6\x01\x8b\x11\xb0\x86\xe6\x49\x5f\x48\xd6\xfe\xdc\xd5\x68\x98\x83\xb4\x07\x43\x12\xd9\x77\x41\x73\x6e\xd8\xd2\xd1\x4d\xe1\xfd\x7e\xe9\x97\x16\x7c\xdb\xec\x99\x35\x92\xb6\xbd\xde\x44\xeb\x3c\xce\x9e\x5c\x95\x07\xa9\x0d\xd6\xcc\x60\xc2\xf2\xdc\x2b\x6a\x71\xce\xb5\x31\x7a\xf9\xc4\x64\xe3\x0a\xcf\x7c\xcc\xa9\x84\xf0\x58\x94\x45\xd6\x29\x85\x13\x08\xf5\x99\x25\x6d\x58\x89\xd9\xac\x45\x38\xfe\x57\x0e\x7c\x4e\xdc\xbc\x46\xf0\x5a\x7c\xea\x69\xdc\x33\x9a\xa7\x1d\x69\xf7\x9c\x9e\x42\xcd\x94\xc8\x93\xb8\x97\x0d\xc2\x82\xd2\x04\x96\x3d\x23\x07\x46\x60\x6b\xcc\x45\x21\x90\x43\xcd\x68\x1e\xa7\xd1\x50\xf8\xc6\xf5\x3f\xe8\xfe\x9b\x69\x6c\x04\x1d\x05\xa0\xa3\x62\x13\x6f\xc3\xaf\x89\xb8\xd0\x8d\xe4\x2d\x77\xdf\x18\x5c\x19\x50\xbb\xd1\x2d\x4b\x30\x58\xa0\x41\x95\x63\xec\x31\xd6\x5e\x0b\xae\x30\x6f\x08\x7b\x23\x75\xeb\x24\x5b\x3b\xcf\x99\x64\x2a\x47\x38\xd9\x19\x73\x56\x22\x79\xc3\xc3\x46\x84\xc4\xa4\xe7\x8f\x28\xc2\x6d\xc0\xf1\xc9\x0e\xdc\x4b\x34\x10\xb1\x83\x9d\x1b\x64\x84\x13\xcd\x71\x8c\x12\x4b\x46\xda\x24\x4a\x73\xbc\x1e\x8f\x40\xf0\x74\x58\xeb\xb8\x5a\x62\x0b\x34\xf7\x46\xaf\x7e\xee\x33\xf5\x6e\x6c\x91\x76\xea\x7b\xb5\x19\xf7\x49\x38\x41\xef\xb7\x4d\x36\xc7\x1d\x84\x1c\xfe\xe6\xeb\xe2\xac\xe8\xd0\xbf\x0a\x25\xaa\xa6\x72\x21\x7c\xc0\x1f\x8d\x30\x58\xa1\xa2\x24\xed\x75\x5d\x03\x4a\x8b\xce\x9e\x24\xe9\x70\x07\xfe\xa4\xce\xb1\xc1\x7a\x65\xb3\x4d\xe4\x6d\xeb\x38\xd6\xda\x0a\x0a\x1b\x74\x7c\x38\x04\x59\x86\xbd\xdb\x97\x35\x6c\xbf\x6b\xd1\xff\x38\x9e\x97\x01\x8d\x70\x63\x13\x4d\x80\x4a\x37\xe5\xdc\x1f\x96\x05\xd2\x9e\xe2\xbb\x78\x7b\x97\xeb\x70\x5d\xeb\xe8\x57\x00\x00\x00\xff\xff\x6c\x80\xd8\x6f\xe3\x06\x00\x00" func lockedtokensDelegatorRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -4030,11 +4117,11 @@ func lockedtokensDelegatorRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7b, 0xa5, 0x28, 0x8a, 0xea, 0x5c, 0x35, 0x77, 0x33, 0x90, 0x99, 0xe5, 0xc4, 0x20, 0x76, 0x19, 0x7, 0x3b, 0x3e, 0xd9, 0xec, 0x9d, 0xc9, 0xa2, 0xf4, 0x6, 0xf5, 0xc1, 0x24, 0x84, 0x9e, 0x4e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0xe1, 0xe9, 0x2b, 0x3d, 0x53, 0x87, 0xf4, 0x3c, 0xa4, 0x29, 0xc0, 0xb2, 0x38, 0xbf, 0x8, 0xda, 0xb5, 0x8f, 0xb7, 0xcc, 0xed, 0xc9, 0xc1, 0x91, 0x92, 0xca, 0x95, 0x2d, 0x5, 0xe8, 0x15}} return a, nil } -var _lockedtokensDelegatorRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4f\x6f\xf2\x30\x0c\xc6\xef\xfd\x14\x16\x07\x54\x2e\xd5\x7b\x78\xb5\x03\x1a\x43\x6c\x65\x9a\x04\x02\xc4\x9f\xdd\xbd\xd4\xa5\x11\x25\xee\x12\x77\xeb\x34\xf1\xdd\x27\x1a\x28\x65\x68\xb9\x38\x91\xed\xdf\x63\x3f\xd1\xfb\x82\xad\xc0\x94\xd5\x8e\x92\x35\xef\xc8\x38\x48\x2d\xef\xe1\x5f\x35\x9d\x3f\x4d\xc6\xf1\x7a\x3e\x19\xcf\x46\x71\xbc\x1c\xaf\x56\x41\x20\x16\x8d\x43\x25\x9a\x4d\x88\x7b\x2e\x8d\xf4\x61\xf3\xac\xab\xbb\xff\x3d\xf8\x0e\x00\x00\x72\x12\x30\x9c\x50\x4c\x39\x6d\x51\xd8\x2e\x2c\x57\x5f\xfd\x2b\x85\xc8\x3f\x66\x37\x65\x41\x8d\x28\x2c\x15\x68\x29\x44\xa5\xbc\x02\x96\x92\x85\x8f\x6c\x2d\x7f\xbe\x62\x5e\x52\x0f\xba\x23\x9f\x3b\xab\x9e\x95\x33\xce\x13\xb2\x4b\x4a\x61\x00\xa7\xf6\xc8\x09\x5b\xdc\x52\xf4\x56\x03\xee\xbb\x57\x93\xd4\xe1\xa5\xee\x7a\x08\x8f\x8b\xff\x9a\xb4\x95\x5f\x79\xce\x02\x25\xeb\x35\xa2\xc7\x33\x1c\x42\x81\x46\xab\xb0\xd3\xaa\x06\xed\xc0\xb0\x80\xc3\x0f\x4a\x00\x05\x5c\x41\x4a\xa7\x9a\x12\x28\x50\xb2\xce\x05\xd1\x5c\x1c\xe5\x69\x74\xeb\x1d\x0c\x2e\x6b\x9d\x96\x68\x0a\x42\x8f\x39\x78\xe3\xa8\x22\x55\x0a\xb5\x3c\xf9\x03\x19\x59\x7a\x2f\xc9\xc9\xc6\x38\xc1\x9d\x36\xdb\xe6\x33\x7d\x3c\x53\x0f\xc1\x4f\x00\x00\x00\xff\xff\x5a\x36\xb3\xb4\x20\x02\x00\x00" +var _lockedtokensDelegatorRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4d\x6f\xe2\x30\x10\xbd\xe7\x57\x8c\x72\x58\x05\x69\x15\xed\x61\xb5\x07\xb4\x14\xd1\x06\x54\x09\x04\x88\x8f\xf6\x3c\x24\x93\xc4\x22\xd8\xae\x3d\x29\xa9\x2a\xfe\x7b\x95\x18\x02\x29\x6a\x2e\x13\x7b\xde\xbc\xf7\xe6\xc9\xe2\xa0\x95\x61\x98\xa9\x78\x4f\xc9\x46\xed\x49\x5a\x48\x8d\x3a\xc0\x9f\x6a\xb6\x78\x9a\x8e\xa3\xcd\x62\x3a\x9e\x8f\xa2\x68\x35\x5e\xaf\xbd\x33\x7a\x52\xca\x4c\xec\x0a\x6a\xf0\x0e\xee\x77\xee\x7c\xcf\x63\x83\xd2\x62\xcc\x42\xc9\x00\x0f\xaa\x94\xdc\x87\xed\x44\x54\xff\xfe\xf6\xe0\xd3\x03\x00\x28\x88\x41\xaa\x84\x22\x2a\x28\x43\x56\x66\x69\x54\xf5\xd1\xef\x78\x09\xdd\x61\x7e\x07\xf3\x1a\x0a\x6d\x48\xa3\xa1\x00\xe3\xd8\x29\x60\xc9\x79\xf0\xa8\x8c\x51\xc7\x17\x2c\x4a\xea\xc1\xaf\x91\xeb\x5d\x54\x2f\xca\xb9\x2a\x12\x32\x2b\x4a\x61\x00\xe7\xf1\xd0\xb2\x32\x98\x51\xb8\x6b\x08\xfe\x37\x64\x1d\x37\x4d\x59\x68\x32\x58\xef\x65\x7f\x77\x93\x08\x5f\x05\xe7\x89\xc1\x23\xee\x8a\x5a\xf9\x7e\xf4\xb9\x11\x7d\x08\xea\xc8\xbe\x2d\x7a\xd3\x5f\x3b\x1b\x4b\xe4\xbc\xd7\x7a\xae\xbf\xe1\x10\x34\x4a\x11\x07\xfe\x0d\x1a\x84\x05\xa9\x18\x2c\xbe\x53\x02\xc8\x60\x35\xc5\x22\x15\x94\x80\x46\xce\xfd\x2b\x45\xfb\x63\xa9\x48\xc3\xfb\xe8\x61\x70\x4d\xe5\x9c\x41\x0b\x08\x1c\xcd\xc9\xe5\x4e\x15\xc5\x25\xd3\x4d\xa4\x3f\x50\x86\x86\xde\x4a\xb2\xbc\x95\x96\x71\x2f\x64\xd6\xbe\x05\x57\x2f\xac\x27\xef\x2b\x00\x00\xff\xff\x13\x10\x51\x67\x89\x02\x00\x00" func lockedtokensDelegatorRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -4050,11 +4137,11 @@ func lockedtokensDelegatorRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb5, 0x5e, 0x1b, 0xf9, 0x3b, 0x7e, 0xb, 0xcd, 0xc5, 0xa4, 0x5a, 0x97, 0xaa, 0xee, 0xab, 0xac, 0x9d, 0x2, 0x2e, 0x78, 0x9c, 0xe4, 0xba, 0x19, 0x54, 0x63, 0xa1, 0x36, 0x4d, 0xf7, 0x22, 0x32}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x45, 0x91, 0x13, 0x8b, 0x53, 0x4f, 0x28, 0x9d, 0x15, 0x5c, 0x79, 0x70, 0x4, 0xf0, 0x27, 0xf9, 0x26, 0xf1, 0xb0, 0xbc, 0xb1, 0xb1, 0xf3, 0xae, 0x9c, 0x99, 0xd, 0xd5, 0xe4, 0xd7, 0xaf, 0x62}} return a, nil } -var _lockedtokensDelegatorWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x8f\xa2\x40\x10\x85\xef\xfc\x8a\x0a\x07\x03\x87\xc5\x3d\x6c\xf6\x60\x74\x8d\x2b\x9a\x49\x34\xa3\x51\xc7\x7b\x0f\x14\x42\x6c\x29\xd2\x14\xc2\x64\xe2\x7f\x9f\x40\x03\x83\x64\x9c\xc3\xf4\xa5\x03\xf5\xfa\xd5\xd7\xaf\x3a\xba\x24\xa4\x18\xd6\xe4\x9d\xd1\x3f\xd0\x19\xe3\x14\x02\x45\x17\xf8\x5d\xac\x37\xf3\xd5\xc2\x3d\x6c\x56\x8b\xe7\x99\xeb\xee\x16\xfb\xbd\x51\xab\x97\x92\xf2\x4a\xab\xa5\x66\xfb\x6d\x1a\x06\x2b\x11\xa7\xc2\xe3\x88\x62\x4b\x5c\x28\x8b\x79\x04\x2f\xcb\xa8\xf8\xfb\xc7\x86\x77\xc3\x00\x00\x90\xc8\x10\x92\xf4\x51\xed\x30\x18\xc1\xa0\xdb\xdc\xa9\xb6\xa7\xaa\xda\x8a\xaf\x22\x93\xac\xb5\x6d\x2b\xe7\x58\xfe\xd4\x86\x89\xc2\x44\x28\xb4\x84\xe7\xe9\x86\x22\xe3\xd0\xfa\x4f\x4a\x51\x7e\x14\x32\x43\x1b\x06\x33\x5d\x2b\x21\xa0\x5e\x29\xca\xc0\x69\x41\x60\x02\xf5\x79\x27\x65\x52\xe2\x84\xce\x6b\xe5\x30\x7e\x08\xf8\xcf\x2a\xef\x3f\x82\x47\xf5\xbd\xf6\xd9\x0a\x0e\xed\xb6\x6b\xb9\xa6\x53\x48\x44\x1c\x79\x96\x39\xa7\x4c\xfa\x10\x13\x83\x6e\x06\x0a\x03\x54\x18\x7b\x08\x4c\xd0\xf1\x32\x6d\xe3\x1e\xbc\x09\xe5\x1b\xee\x5e\x58\x0d\xee\xb0\xd6\x0d\x83\xa6\x5e\x95\x7f\x86\xf8\xf9\x16\xae\x65\xd2\xa6\x76\xb9\x69\x58\x2c\xd0\xcb\x18\x3b\x99\x97\xe3\xf4\x51\xe2\x49\x30\xa9\xad\xa2\xe2\x0d\x26\xbd\x41\xd4\xf8\x6e\xa3\xb2\x3a\x37\xbf\x3f\xea\xe4\x11\x87\xbe\x12\xf9\x0e\x73\xa1\xfc\x66\x04\xed\xbb\xd3\xbb\xfd\x75\x6e\x8e\x8f\x09\xa5\x11\xd7\xa1\x8c\x7f\xf5\x28\x1a\xef\xbe\x5b\x73\xc1\x9b\xf1\x11\x00\x00\xff\xff\xca\x7a\xb2\x50\x3c\x03\x00\x00" +var _lockedtokensDelegatorWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x6e\x9b\x40\x10\xbd\xf3\x15\x23\x0e\x11\x48\xed\xa6\x87\xaa\x07\x2b\x69\x94\xc6\x8e\x2a\x25\xaa\x23\x3b\x4d\xcf\x63\x18\x6c\x94\xf5\x0e\x1a\x96\x40\x55\xe5\xdf\xab\x65\x81\x02\xad\x2f\x95\xc2\x65\xc5\xce\xdb\x37\xef\xcd\x9b\xfc\x58\xb0\x58\xb8\xe7\xe4\x99\xd2\x47\x7e\x26\x53\x42\x26\x7c\x84\x0f\xcd\xfd\xfa\xe6\x6e\xb5\x7c\x5c\xdf\xad\xbe\x5d\x2f\x97\x9b\xd5\x76\x1b\x74\xe8\x5b\xcd\x75\x8b\xf5\xd0\x70\xf8\x0f\x07\x44\x65\xf6\xf9\x4e\xd3\x04\x35\xbe\x0b\x83\xc0\x0a\x9a\x12\x13\x9b\xb3\x89\xf0\xc8\x95\xb1\x0b\xf8\x7e\x9b\x37\x9f\x3e\xc6\xf0\x2b\x08\x00\x00\x34\x59\x38\xb0\x4e\x49\x36\x94\x2d\x00\x2b\x7b\x88\xc6\x52\x55\x7b\xac\x0b\x12\x74\x34\xe5\xbb\x69\x63\xf5\x23\xb7\x87\x54\xb0\xc6\x9d\xa6\x18\xce\xfe\x7e\xfa\xb5\x25\x1f\x7a\xbd\x60\xa5\x6d\xdb\xea\x6c\xf0\xa4\x9e\xdc\xa5\xd7\x53\x08\x15\x28\x14\x61\x92\x78\xbd\xad\xa2\x2f\x2c\xc2\xf5\x13\xea\xca\x35\xb9\xf6\x35\xe7\x01\xba\xaf\x24\x9d\xa9\xc1\x07\x5c\x42\xf7\x5e\x95\x96\x05\xf7\xa4\x76\x2d\xc3\xc5\x5b\xf9\xfb\x1c\xb9\x04\x16\x70\xaa\xbe\xf5\x32\x1e\xd0\x1e\xe2\x41\xb4\xfb\xae\xae\xa0\x40\x93\x27\x51\x78\xc3\x95\x4e\xc1\xb0\x05\xaf\x15\x84\x32\x12\x32\x09\x81\x65\x18\x71\x85\x71\x30\xf5\xdd\xcf\xf4\xb4\xed\xf9\xac\x7b\xb9\xe7\x1d\xee\x3c\xeb\xeb\x6d\xf9\xff\x24\xfe\xd9\xd9\x17\x17\x54\xe8\x59\x5e\xbd\x58\x6a\x28\xa9\x2c\x8d\x22\x73\xdb\x90\x92\xa6\x3d\x5a\x96\x07\xe1\xe6\x27\x5c\xce\x72\xec\xe4\x2f\x7b\x54\x34\x72\x3e\x7d\xaa\xea\x2e\xa7\x0d\xd5\x28\x69\x1f\xc1\xb0\xf5\xfe\x8c\xff\x3d\x37\x95\x52\xc1\x65\x6e\xbb\xa1\x5c\xbc\x9f\xa9\xe8\xb9\xe7\x6c\xbd\xc1\xd7\xe0\x77\x00\x00\x00\xff\xff\x68\x33\x20\xad\xe4\x03\x00\x00" func lockedtokensDelegatorWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4070,11 +4157,11 @@ func lockedtokensDelegatorWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb, 0x32, 0x4e, 0xd0, 0x52, 0xb8, 0x4c, 0x90, 0x2, 0xb, 0x9c, 0x8c, 0x61, 0x87, 0x18, 0x8c, 0xb2, 0x1e, 0x6e, 0xb3, 0x1a, 0x7, 0x94, 0x8d, 0x53, 0x1a, 0x3, 0xe0, 0xe8, 0x37, 0xcb, 0x5d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x48, 0x32, 0xda, 0x36, 0xd7, 0xa4, 0xfe, 0x6, 0xcb, 0x16, 0x39, 0x82, 0xfd, 0x39, 0xe6, 0xda, 0x53, 0xba, 0xf6, 0xe6, 0xcc, 0x1b, 0xa0, 0xee, 0x11, 0xd6, 0xe3, 0xae, 0x27, 0x6d, 0x98, 0x32}} return a, nil } -var _lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6f\xea\x30\x0c\xc7\xef\xfd\x14\x16\x07\x54\x2e\xd5\x3b\x3c\xbd\x03\x7a\x0c\xb1\x95\x69\x12\x08\x10\xb0\xdd\xbd\xc6\xa5\x11\x25\xae\x12\x77\xed\x34\xf1\xdd\x27\x1a\x5a\x60\x68\xb9\x38\x91\xed\xdf\xdf\x7f\x47\x1f\x0a\xb6\x02\x73\x4e\xf6\xa4\xb6\xbc\x27\xe3\x20\xb5\x7c\x80\x3f\xf5\x7c\xf9\x34\x9b\xc6\xdb\xe5\x6c\xba\x98\xc4\xf1\x7a\xba\xd9\x04\x81\x58\x34\x0e\x13\xd1\x6c\x42\x3c\x70\x69\x64\x08\xaf\xcf\xba\xfe\xf7\x77\x00\x5f\x01\x00\x40\x4e\x02\x86\x15\xc5\x94\xd3\x0e\x85\xed\xca\x72\xfd\x39\xbc\x51\x88\xfc\x63\x71\x57\x16\x34\x88\xc2\x52\x81\x96\x42\x4c\x12\xaf\x80\xa5\x64\xe1\x23\x5b\xcb\xd5\x1b\xe6\x25\x0d\xa0\x3f\xf1\xb9\x56\xb5\x55\xce\x38\x57\x64\xd7\x94\xc2\x08\xce\xed\x91\x13\xb6\xb8\xa3\xe8\xbd\x01\xfc\xef\xdf\x4c\xd2\x84\x97\xa6\xeb\x21\x3c\x19\xff\x31\xe9\x55\x7e\xe3\x39\x2b\x94\x6c\xd0\x89\x9e\xce\x78\x0c\x05\x1a\x9d\x84\xbd\xab\x6a\xd0\x0e\x0c\x0b\x38\xfc\x20\x05\x28\xe0\x0a\x4a\x74\xaa\x49\x41\x81\x92\xf5\x2e\x88\xee\xe2\x28\x4f\xa3\xfb\xdd\xc1\xe8\x62\xeb\x6c\xa2\x2b\x08\x3d\xe6\xe8\x17\x47\x35\x25\xa5\xd0\xd5\x4e\x7e\x41\x46\x95\x96\x4c\x59\xac\xd6\x54\xa1\x55\xad\xdb\xee\x4b\x7d\x6c\xd9\xc7\xe0\x3b\x00\x00\xff\xff\xe3\xbb\x11\x29\x26\x02\x00\x00" +var _lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6f\xba\x40\x10\xc5\xef\x7c\x8a\x09\x87\x7f\x30\xf9\x87\xf4\xd0\xf4\x60\x6a\x8d\x2d\x9a\x26\x1a\x35\x6a\xdb\xf3\x08\x83\x6c\xc4\x5d\xb2\x3b\x14\x9a\xc6\xef\xde\xc0\x02\x4a\x4d\xb9\x2c\xb0\x6f\xdf\x7b\xf3\xcb\x8a\x53\xa6\x34\xc3\x42\x85\x47\x8a\x76\xea\x48\xd2\x40\xac\xd5\x09\xee\xca\xc5\xea\x65\x3e\x0d\x76\xab\xf9\x74\x39\x09\x82\xcd\x74\xbb\x75\x1a\xf5\x2c\x97\x07\xb1\x4f\xa9\xd6\x5b\xb9\xdb\xfb\xe7\x3a\x0e\x6b\x94\x06\x43\x16\x4a\x7a\x78\x52\xb9\xe4\x21\xbc\xcd\x44\xf9\x70\x3f\x80\x6f\x07\x00\x20\x25\x06\xa9\x22\x0a\x28\xa5\x03\xb2\xd2\x6b\xad\xca\xaf\x61\xaf\x8b\x6f\x3f\x96\x37\x32\xa7\xb6\xc8\x34\x65\xa8\xc9\xc3\x30\xb4\x09\x98\x73\xe2\x3d\x2b\xad\x55\xf1\x8e\x69\x4e\x03\xf8\x37\xb1\x7b\x6d\x6a\x9b\x9c\xa8\x34\x22\xbd\xa1\x18\x46\xd0\x1c\xf7\x0d\x2b\x8d\x07\xf2\xf7\xb5\xc1\x63\x6d\xd6\x6b\x53\x2f\xab\x8c\x34\x56\x73\x99\xff\x7d\x12\xfe\x87\xe0\x24\xd2\x58\xe0\x3e\xad\x92\x6f\x8f\xbe\xd6\xa1\x4f\x5e\x85\xec\xd7\xa0\x57\xfb\x5b\x5b\x63\x8d\x9c\x0c\xba\xce\xd5\x33\x1e\x43\x86\x52\x84\x9e\x7b\xa5\x06\x61\x40\x2a\x06\x83\x9f\x14\x01\x32\x98\x8c\x42\x11\x0b\x8a\x20\x43\x4e\xdc\x8b\x45\xf7\x62\x28\x8d\xfd\x5b\xf4\x30\xba\x50\x69\x18\x74\x02\xcf\xda\x9c\x2d\x77\x2a\x29\xcc\x99\xae\x90\xfe\x61\xe9\x17\x0d\x92\x0d\x15\xa8\xa3\x76\xda\xee\x46\xd8\xb5\xf5\x3e\x3b\x3f\x01\x00\x00\xff\xff\x39\x38\x7e\xbc\x8f\x02\x00\x00" func lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdcBytes() ([]byte, error) { return bindataRead( @@ -4090,11 +4177,11 @@ func lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0xe7, 0xd, 0x57, 0x13, 0x6, 0xb5, 0xb6, 0x36, 0x28, 0xa9, 0xf9, 0xbe, 0x3b, 0x8c, 0xa2, 0x16, 0x59, 0x1e, 0xf2, 0x6, 0x18, 0xa6, 0x3a, 0x4d, 0xef, 0x56, 0x4, 0x32, 0x67, 0xa7, 0xa5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe4, 0xff, 0xf, 0xf2, 0xab, 0xa0, 0x11, 0x20, 0x3b, 0x70, 0xc3, 0x78, 0xe7, 0x7d, 0xf6, 0x66, 0x3d, 0x85, 0xdc, 0x72, 0xb0, 0x5a, 0x8, 0x3a, 0xa1, 0xc9, 0xff, 0x71, 0xa4, 0xdf, 0x12, 0xa2}} return a, nil } -var _lockedtokensDelegatorWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4f\x6f\xf2\x30\x0c\xc6\xef\xfd\x14\x16\x07\x54\x2e\xd5\x7b\x78\xb5\x03\x1a\x43\x6c\x65\x9a\x04\x02\xc4\x9f\xdd\xbd\xd4\xa5\x11\x25\xae\x12\x77\x74\x9a\xf8\xee\x13\x0d\x94\x32\xb4\x5c\x9c\xc8\xf6\xef\xf1\xe3\xe8\x7d\xc1\x56\x60\xca\x6a\x47\xc9\x9a\x77\x64\x1c\xa4\x96\xf7\xf0\xaf\x9a\xce\x5f\x26\xe3\x78\x3d\x9f\x8c\x67\xa3\x38\x5e\x8e\x57\xab\x20\x10\x8b\xc6\xa1\x12\xcd\x26\xc4\x3d\x97\x46\xfa\xb0\x79\xd5\xd5\xc3\xff\x1e\x7c\x07\x00\x00\x39\x09\x18\x4e\x28\xa6\x9c\xb6\x28\x6c\x17\x96\xab\xaf\xfe\x8d\x42\xe4\x1f\xb3\xbb\xb2\xa0\x46\x14\x96\x0a\xb4\x14\xa2\x52\x5e\x01\x4b\xc9\xc2\x67\xb6\x96\x0f\xef\x98\x97\xd4\x83\xee\xc8\xe7\x2e\xaa\x17\xe5\x8c\xf3\x84\xec\x92\x52\x18\xc0\xb9\x3d\x72\xc2\x16\xb7\x14\x7d\xd4\x80\xc7\xee\xcd\x24\x75\x78\xab\xbb\x9e\xc2\x93\xf1\x5f\x93\xb6\xf2\x2b\xcf\x59\xa0\x64\xbd\x46\xf4\x74\x86\x43\x28\xd0\x68\x15\x76\x5a\xd5\xa0\x1d\x18\x16\x70\xf8\x49\x09\xa0\x80\x2b\x48\xe9\x54\x53\x02\x05\x4a\xd6\xb9\x22\x9a\x8b\xa3\x3c\x8d\xee\x77\x07\x83\xab\xad\xb3\x89\xa6\x20\xf4\x98\xa3\x5f\x1c\x55\xa4\x4a\xa1\xd6\x4e\xfe\x40\x46\x07\x2d\x59\x62\xf1\xb0\x31\x4e\xb0\x71\xdb\x7c\xa9\x8f\x17\xf6\x31\xf8\x09\x00\x00\xff\xff\xcc\x8f\xa1\x07\x26\x02\x00\x00" +var _lockedtokensDelegatorWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6f\xaa\x40\x14\xc5\xf7\x7c\x8a\x1b\x16\x2f\x98\xbc\x90\xb7\x78\xe9\xc2\xd4\x1a\x5b\x34\x4d\x34\x6a\xfc\xd3\xae\xaf\x70\x91\x89\x38\x33\x99\xb9\x54\x9a\xc6\xef\xde\xc0\x20\x4a\x4d\xd9\x0c\x30\x67\xce\x39\xf7\x97\x11\x47\xad\x0c\xc3\x4c\xc5\x07\x4a\x36\xea\x40\xd2\x42\x6a\xd4\x11\xfe\x95\xb3\xc5\xcb\x74\x1c\x6d\x16\xd3\xf1\x7c\x14\x45\xab\xf1\x7a\xed\x35\xea\x49\x21\xf7\x62\x97\x53\xad\x77\x72\xbf\xf3\xcf\xf7\x3c\x36\x28\x2d\xc6\x2c\x94\x0c\xf0\xa8\x0a\xc9\x7d\xd8\x4e\x44\xf9\xf0\xbf\x07\x5f\x1e\x00\x40\x4e\x0c\x52\x25\x14\x51\x4e\x7b\x64\x65\x96\x46\x95\x9f\xfd\x4e\x97\xd0\x7d\xcc\xef\x64\x5e\x6d\xa1\x0d\x69\x34\x14\x60\x1c\xbb\x04\x2c\x38\x0b\x9e\x95\x31\xea\xf4\x86\x79\x41\x3d\xf8\x33\x72\x7b\x97\xd4\x4b\x72\xa6\xf2\x84\xcc\x8a\x52\x18\x40\x73\x3c\xb4\xac\x0c\xee\x29\xdc\xd5\x06\x8f\xb5\x59\xa7\x4d\xbd\x2c\x34\x19\xac\xe6\xb2\x7f\xbb\x24\xc2\x77\xc1\x59\x62\xf0\x84\xbb\xbc\x4a\xbe\x3f\xfa\x5a\x87\x3e\x05\x15\xb2\x1f\x83\xde\xec\xaf\x5d\x8d\x25\x72\xd6\x6b\x3b\x57\xcf\x70\x08\x1a\xa5\x88\x03\xff\x46\x0d\xc2\x82\x54\x0c\x16\x3f\x28\x01\x64\xb0\x9a\x62\x91\x0a\x4a\x40\x23\x67\xfe\xd5\xa2\x7d\xb1\x94\xa7\xe1\x3d\x7a\x18\x5c\xa9\x34\x0c\x5a\x41\xe0\x6c\xce\x8e\x3b\x95\x14\x17\x4c\x37\x48\x7f\xb1\x0c\x4f\x0d\x92\xad\xb4\x8c\xed\xb4\xed\x8d\x70\xeb\xc5\xfb\xec\x7d\x07\x00\x00\xff\xff\x16\x0c\xce\x92\x8f\x02\x00\x00" func lockedtokensDelegatorWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4110,7 +4197,7 @@ func lockedtokensDelegatorWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xd3, 0xcd, 0x71, 0xa1, 0x5c, 0x7f, 0x60, 0xae, 0xdb, 0x1e, 0xba, 0x6e, 0xb4, 0x9d, 0xd2, 0x64, 0xc8, 0x2b, 0xe4, 0x25, 0xd8, 0x3e, 0x5d, 0xa8, 0x40, 0x51, 0xf, 0xe2, 0xe3, 0x81, 0x27}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb7, 0x56, 0x75, 0x4a, 0x5f, 0xf3, 0x8d, 0xeb, 0x2a, 0x79, 0x50, 0x6d, 0xfe, 0xf2, 0xec, 0x4c, 0xc6, 0xd5, 0xb9, 0x61, 0xf4, 0xdf, 0x40, 0xd0, 0xcb, 0xe9, 0x6, 0xa, 0xed, 0xd4, 0x0, 0x4}} return a, nil } @@ -4154,7 +4241,7 @@ func lockedtokensStakerGet_staker_infoCdc() (*asset, error) { return a, nil } -var _lockedtokensStakerRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\xdf\x4f\xdb\x30\x10\x7e\xcf\x5f\x71\xcb\x03\x4a\x24\x08\x7b\x98\xa6\x29\xa2\x43\x85\xc2\x86\x8a\x0a\x22\xc0\xb6\x47\x37\xb9\xa4\x16\xae\x5d\x39\xce\x5a\x54\xf5\x7f\x9f\x1c\x3b\x89\x5d\xe8\xb4\x97\xe5\x21\x3f\xee\xbe\xdc\xf7\xdd\xf9\x3b\xba\x5c\x09\xa9\xe0\x9a\x89\xf5\xa3\x78\x41\x0e\xa5\x14\x4b\x08\xfb\xef\x30\xe8\x10\x0d\xaf\xe8\x9c\xa1\x87\x72\x63\x3d\xf2\x56\xe4\x2f\x58\xb4\xb1\xda\x00\x3f\x6e\x6e\xef\x2e\xa7\x57\x93\xc7\xbb\xe9\xd5\x6c\x3c\x99\x3c\x5c\x65\x59\x87\xce\x14\x79\xa1\xbc\xba\x97\x62\xf3\xda\xa1\xb3\xc7\xf1\xf4\x66\xf6\xed\xfe\xe1\xee\xe7\xaf\x0e\x1e\x28\x49\x78\x4d\x72\x45\x05\x8f\x68\x91\x42\xa6\x24\xe5\xd5\x31\x48\xc1\x30\x85\xa7\x1b\xae\xbe\x1c\x03\x47\xb5\x16\x52\x17\x1c\x17\x85\xc4\xba\x1e\x70\x43\x6a\x8a\xaf\x43\xb8\x36\xfc\x5e\x8c\x2c\x45\xc3\x55\x0a\x4f\xd7\x74\xf3\xf9\x53\x0c\xdb\x20\x00\x00\x60\xa8\x60\x21\x58\x81\xf2\x01\xcb\x14\x8e\xdc\x46\x93\xf6\xf1\xbd\xcd\x0e\xe8\xdf\xa4\x61\xca\x80\xfb\x89\x26\xcf\x3a\x68\x30\x2b\x89\x2b\x22\x31\x22\x79\x6e\x18\x49\xa3\x16\xd1\x85\x90\x52\xac\x9f\x09\x6b\x30\x86\xa3\xb1\xc9\x69\x15\x60\xaf\x1a\x59\x99\xf4\x4a\x60\x04\xf6\xff\xa4\x56\x42\x92\x0a\x93\x79\x5b\xe1\xec\xa0\xc2\xaf\x91\x9e\x74\x0a\x87\xf2\x99\xa9\x73\x4f\xd4\x22\xee\x59\xf5\x75\x7e\x0e\x2b\xc2\x69\x1e\x85\x97\xa2\x61\x05\x70\xa1\xc0\x90\x81\xc4\x12\x94\x00\xa7\x4a\x18\x07\xbe\xe4\x6e\x1c\x87\x15\xb7\xfd\x7b\xb6\x4a\x7e\x50\xb5\x28\x24\x59\x93\x39\xd3\xe3\xd8\x9b\x63\xd7\xc9\xa9\x2d\x74\x5a\x76\xf9\x36\xfd\xcf\xea\xf5\x6f\xa0\x5a\x6f\xb7\x2a\x75\x3b\x28\x91\xe7\x18\x9a\x1a\x3b\xd3\x0b\x6e\x30\x6f\x14\x3a\x87\xa1\xcf\x99\x8b\x02\x6f\x78\x29\x60\xe4\xf9\x39\x99\xd9\x78\xe4\xc8\x68\xb1\x93\x14\x68\x71\xec\x44\x8d\x8b\xf5\xdd\x8d\xbe\x63\xe7\x37\xa1\xf7\xf1\xad\x9f\xbd\x4f\x17\xe7\x9a\x7e\x78\xef\x01\xce\xb9\xe9\xee\x58\xeb\x92\x0b\xc2\x08\xcf\x11\x46\x7b\xf6\x4b\x2a\x54\xc6\x47\xd6\xa9\x16\x18\x39\x55\x68\x69\x77\x0a\xce\x46\x7b\xe5\xb6\x81\x77\x44\x7b\xb5\x73\x89\x44\xa1\x1e\xa3\x9e\x2b\xca\xa8\x9b\x74\xda\xcf\x7c\x58\x57\xf3\x74\x68\x77\x80\xac\x46\xcd\x1e\x45\x96\xff\xc4\xa7\x8f\xb5\x20\xcf\x9b\xc9\xbc\xcb\xfc\x5d\x59\x81\x2b\x51\x53\x65\xed\x77\x76\xe2\x17\x59\x5b\xd3\x46\xbe\xb6\x37\xf4\xf1\xff\xef\x7e\xeb\x31\x58\xff\xcf\x84\x02\xe4\xa2\xa9\x16\xc6\xf4\xb5\x5e\x5d\xed\x04\xfc\x10\x0e\x3b\xb3\xeb\xdf\xec\x0a\xec\x82\x3f\x01\x00\x00\xff\xff\xa6\x01\x19\xa7\x30\x06\x00\x00" +var _lockedtokensStakerRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x51\x4f\xdb\x30\x10\x7e\xcf\xaf\xb8\xf5\x61\x4a\xa4\x12\xf6\x30\x4d\x53\x44\x87\x0a\x85\x0d\x15\xb5\x88\x00\xdb\x1e\xdd\xe4\x92\x5a\x18\x3b\x72\x9c\xb5\x08\xf5\xbf\x4f\x8e\x9d\xc4\xa6\x8c\x6d\x0f\xf4\x81\x24\x77\x9f\xbf\xbb\xef\xfc\x1d\xf4\xa1\x12\x52\xc1\x39\x13\x9b\x1b\x71\x8f\x1c\x0a\x29\x1e\x60\xd4\x7f\x8f\x82\x0e\xd1\xf0\x92\xae\x18\x7a\x28\x37\xd6\x23\x2f\x45\x76\x8f\x79\x1b\xab\x0d\xf0\xc3\xf6\x72\x79\x3a\x3f\x9b\xdd\x2c\xe7\x67\x8b\xe9\x6c\x76\x7d\x96\xa6\x1d\x3a\x55\xe4\x9e\xf2\xf2\x4a\x8a\xed\x63\x87\x4e\x6f\xa6\xf3\x8b\xc5\xd7\xab\xeb\xe5\x8f\x9f\x1d\x3c\x50\x92\xf0\x9a\x64\x8a\x0a\x1e\xd2\x3c\x81\x54\x49\xca\xcb\x31\x48\xc1\x30\x81\xdb\x0b\xae\x3e\x8f\x81\xa3\xda\x08\xa9\x09\xa7\x79\x2e\xb1\xae\x07\xdc\x90\x9a\xe3\xe3\x10\xae\x4d\x7d\x2f\x46\x1e\x44\xc3\x55\x02\xb7\xe7\x74\xfb\xe9\x63\x04\x4f\x41\x00\x00\xc0\x50\xc1\x5a\xb0\x1c\xe5\x35\x16\x09\x90\x46\xad\x43\x57\x6c\xdc\x3e\x96\x15\x4a\xa2\xbb\xac\xc7\xfe\xd0\xe2\xef\x54\xad\x73\x49\x36\x64\xc5\x30\x82\xf7\xfb\x47\xbf\xb5\xe4\x43\xb1\x5f\xa4\x61\x6a\xa8\xf5\x2a\x5b\x7f\x63\xf1\x9d\x3e\x65\x48\x2a\x89\x15\x91\x18\x92\x2c\x33\x8a\x5a\x9e\x13\x21\xa5\xd8\xdc\x11\xd6\xe8\x83\x53\x93\xd3\x2a\xc1\xfe\x6a\x64\x45\xdc\x2b\x85\x09\xd8\xf3\x71\xad\x84\x24\x25\xc6\xab\x96\xe1\xe8\xad\x26\xf0\x25\xd4\x46\x48\xe0\x4f\xf9\xd4\xb4\x71\x45\xd4\x3a\xea\x9b\xd6\xbf\xe3\x63\xa8\x08\xa7\x59\x38\x3a\x15\x0d\xcb\x81\x0b\x05\xa6\x57\x90\x58\x80\x12\xe0\xb0\x8c\xa2\xc0\x57\xdc\x8d\xfb\x2f\x82\xff\xe7\x1a\x3a\x25\x87\x96\xe8\xb0\xe8\xf2\x6d\xfa\x9f\xbb\xd7\xc7\x40\xb5\xab\xd7\x76\xa9\xe5\xa0\x44\x9e\xe1\xc8\x70\xec\x8c\x16\xdc\x62\xd6\x28\x74\xee\x52\xfb\x88\x8b\x1c\x2f\x78\x21\x60\xe2\xad\x5b\xbc\xb0\xf1\xd0\x69\xa3\xc5\xce\x12\xa0\xf9\xd8\x89\x9a\x25\xd3\x7f\xdd\xe8\x0b\xdb\xb6\x17\x7a\x19\xdf\xae\x9b\xf7\xe9\xe2\xdc\x9d\x1c\xde\x7b\x80\x73\x6f\x5a\x1d\x6b\x5d\x72\x42\x18\xe1\x19\xc2\xe4\x99\x7b\xe3\x12\x95\xf1\x91\x35\xba\x05\x86\x0e\x0b\x2d\xec\xca\xc3\xd1\xe4\x19\xdd\x53\xe0\x5d\xd1\x33\xee\x4c\x22\x51\xa8\xc7\xa8\xe7\x8a\x32\xec\x26\x9d\xf4\x33\x1f\xfe\x9b\x98\xa7\x53\x76\x07\xc8\x6a\xd4\xd5\xc3\xd0\xd6\x3f\xf0\xcb\x47\xba\x21\xcf\x9b\xf1\xaa\xcb\xbc\xde\x59\x8e\x95\xa8\xa9\xb2\xf6\x3b\x3a\xf0\x49\x36\xd6\xb4\xa1\xdf\xdb\x5e\xf9\xe8\xed\xd5\x3f\x79\x15\xac\xff\x17\x42\x01\x72\xd1\x94\x6b\x63\xfa\x5a\xaf\xae\x76\x02\xbe\x1b\x0d\x3b\xb3\xeb\xdf\xec\x0a\xec\x82\xdf\x01\x00\x00\xff\xff\xd4\xe2\xb3\x9d\xcf\x06\x00\x00" func lockedtokensStakerRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -4170,11 +4257,11 @@ func lockedtokensStakerRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4f, 0xc0, 0x72, 0xe2, 0xe2, 0x53, 0x6, 0xbe, 0xed, 0xd7, 0x9, 0xc2, 0xb8, 0x3d, 0xd5, 0xb7, 0xe5, 0x27, 0x9c, 0x79, 0x80, 0x59, 0xbf, 0x60, 0x8e, 0x27, 0xe8, 0x9d, 0xaf, 0xfb, 0x33, 0xa5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb, 0x7f, 0x2f, 0x3e, 0xb2, 0xac, 0x6d, 0x0, 0x0, 0xf6, 0x3, 0x7d, 0x92, 0x3b, 0xcf, 0x5d, 0x45, 0x4, 0x10, 0xb3, 0x84, 0xa2, 0x8, 0xe4, 0x86, 0xba, 0x8b, 0x8a, 0xd, 0x95, 0x8f, 0xfe}} return a, nil } -var _lockedtokensStakerRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x51\x3d\x6f\xc2\x40\x0c\xdd\xf3\x2b\x2c\x06\x94\x2c\x51\x87\xaa\x03\x2a\x45\x14\xe8\x87\x40\x80\x08\x54\xed\x78\x3d\x1c\x88\x12\xce\xa9\xcf\x51\x53\x55\xfc\xf7\x2a\xb9\x00\x51\x25\xbc\x78\xf0\xf3\x7b\x7e\x7e\xc9\x21\x27\x16\x98\x91\x4e\x71\xbb\xa6\x14\x8d\x85\x98\xe9\x00\x37\xe5\x6c\x31\x9a\x4e\xc6\xeb\xc5\x74\x32\x1f\x8e\xc7\xab\x49\x14\x79\x0d\x3a\x12\x95\x26\x66\xb7\x64\x2a\x7f\x4e\xe8\x68\x3d\x9c\xbe\xce\x9f\x97\xab\xc5\xfb\xc7\x09\xee\x09\x2b\x63\x95\x96\x84\x8c\xaf\x0e\x54\x18\xe9\xc1\xe6\x29\x29\xef\x6e\x03\xf8\xf5\x3c\x00\x80\x0c\x05\xf6\x94\x6d\x91\x57\x18\xf7\xa0\xdb\xbe\x24\xac\xdb\x4b\x3d\x75\xe8\x9c\x31\x57\x8c\xbe\xd2\xda\xb1\xa9\x42\xf6\xfe\x23\x31\xd3\xf7\x9b\xca\x0a\x0c\xa0\x3b\x74\xb3\x4a\x01\x9a\xb2\x98\xc5\xe1\x59\x05\xfa\xd0\xec\x87\x56\x88\xd5\x0e\xc3\xcf\x9a\xe1\xfe\xaa\xfa\x83\x5f\xd9\xec\xc1\xb5\x79\xe4\x78\x96\x4a\xf6\xc1\x59\xb5\xaa\xc1\x00\x72\x65\x12\xed\x77\x46\x54\x64\x5b\x30\x24\xe0\xc4\x80\x31\x46\x46\xa3\x11\x84\xa0\xc5\xd5\x71\x0c\x47\xe7\x18\x4b\xd4\x85\x60\xcb\x4c\xf5\x31\x2b\x2a\x45\x76\x01\xf4\xff\xd9\x6b\xcc\x44\x35\xc4\x0f\xbc\xcb\x17\x2e\x4b\x21\xe3\x57\x81\x56\x36\xc6\xba\x2c\xcf\xf1\xb8\x7e\x3a\xe1\xe8\xfd\x05\x00\x00\xff\xff\x6a\x0a\x6b\x38\x21\x02\x00\x00" +var _lockedtokensStakerRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xcb\x6b\xab\x50\x10\xc6\xf7\xfe\x15\x83\x8b\x8b\xc2\x45\xee\xe2\xd2\x45\x68\x1a\xd2\x3c\xda\x92\x10\x43\x4c\xfa\x58\x9e\xe8\x18\x45\x73\x8e\x9d\x33\x12\x4b\xc9\xff\x5e\xf4\x98\x67\xe9\xb2\x67\x33\xe0\x7c\xf3\xcd\x8f\xcf\x49\xb7\x85\x22\x86\xa9\x0a\x33\x8c\x96\x2a\x43\xa9\x21\x26\xb5\x85\x7f\xd5\xd4\x1f\x4c\x46\xc3\xa5\x3f\x19\xcd\xfa\xc3\xe1\x62\x14\x04\x56\xab\x0e\x58\x64\xa9\xdc\xcc\x49\x55\x1f\x07\x75\xb0\xec\x4f\x9e\x66\x0f\xf3\x85\xff\xfa\x76\x25\x1f\x97\x72\x93\xae\x73\x6c\xec\x8d\xde\xbe\xf8\x66\x5b\x16\x93\x90\x5a\x84\x9c\x2a\xe9\x88\xad\x2a\x25\x77\x60\x35\x4e\xab\x9b\xff\x2e\x7c\x5a\x16\x00\x40\x8e\x0c\x89\xca\x23\xa4\x05\xc6\x1d\x10\x25\x27\xce\x39\xb7\xd7\x14\xbf\x40\x12\xb5\x8d\xfe\x7b\xb9\xd8\x7b\x49\x39\x89\x48\xec\xc4\x3a\x47\x17\xfe\x7c\x1f\x7d\x6c\xcc\xcd\xb2\x82\xb0\x10\x84\x8e\x08\x43\x03\xd3\xac\xbb\x57\x44\x6a\xf7\x2c\xf2\xb2\x76\xe8\x9b\x5e\x0d\x08\xed\xd3\x98\xc7\xde\x11\x12\xba\xd0\xce\x7b\x9a\x15\x89\x0d\x7a\xeb\xc6\xe1\xf6\xb7\xe0\xef\x9c\x3a\xde\x0e\xfc\xd4\x0f\x0c\xc6\x5c\x70\xe2\x1e\xa1\xeb\xd7\xeb\x41\x21\x64\x1a\x3a\xf6\x40\x95\x79\x04\x52\x31\x18\x56\x20\x8c\x91\x50\x86\x08\xac\xe0\xcc\xcb\x36\x0e\x7b\x13\x18\x56\x18\x96\x8c\x67\x59\xd4\xff\x4b\xb3\xc8\x90\xcc\xa1\x74\xaf\xd2\x69\xb3\x08\x1a\x89\xe3\x5a\xa7\x10\x4f\x43\x1e\xe1\x7b\x89\x9a\x57\x52\x9b\x9b\x3b\x1e\x87\xa9\x07\x84\xbd\xf5\x15\x00\x00\xff\xff\x5b\x51\x74\x79\xc9\x02\x00\x00" func lockedtokensStakerRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -4190,11 +4277,11 @@ func lockedtokensStakerRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9f, 0x1a, 0xee, 0x2a, 0x8c, 0x9a, 0xdd, 0x4a, 0xdc, 0xaf, 0x92, 0xed, 0x11, 0x44, 0x7c, 0x9c, 0xc9, 0xe, 0x9c, 0xca, 0x7, 0x5a, 0xa0, 0x2f, 0xe1, 0x7f, 0x93, 0x4a, 0xff, 0x9a, 0x47, 0xe3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0x18, 0xe4, 0xd7, 0x8e, 0x97, 0x3e, 0x8b, 0x5c, 0x2, 0xc4, 0x18, 0x5b, 0xd2, 0x14, 0xa0, 0xb8, 0x7a, 0xc2, 0x1a, 0x31, 0x3e, 0xaf, 0x33, 0xbe, 0xa4, 0x2f, 0xb5, 0x27, 0x89, 0x79, 0x73}} return a, nil } -var _lockedtokensStakerStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\x4f\x6f\xda\x4e\x10\xbd\xfb\x53\xcc\xcf\x87\xc8\x3e\xc4\xf9\x1d\xaa\x1e\x10\x34\x22\x81\xb4\x15\x11\x20\x4c\xd3\xf6\xb8\x98\x31\xb6\x58\x76\xad\xf5\xb8\x50\x21\xbe\x7b\xb5\x7f\x6c\x6c\x47\x48\x55\x7d\x31\x78\xde\xbc\x79\x6f\xe6\xe5\x87\x42\x2a\x82\x17\x2e\x8f\x6b\xb9\x47\x01\xa9\x92\x07\xf0\x9b\xff\xbe\x57\x23\x2a\xb1\xcb\x37\x1c\x3b\xa8\xf6\x37\xdf\xab\xa1\xaf\x32\xd9\xe3\xd6\x7c\x2c\x2d\xf2\xff\xd3\xeb\xe2\x79\x36\x9d\xac\x17\xb3\xe9\x7c\x3c\x99\xac\xa6\x71\x5c\xa3\x63\x62\xfb\x5c\xec\x96\x4a\x9e\x7e\xd7\xe8\x78\x3d\x9e\x7d\x9d\x7f\x5e\xae\x16\x3f\x7e\xd6\x70\x8f\x14\x13\x25\x4b\x28\x97\x22\x60\x07\x59\x09\x1a\xc0\xb7\x97\xfc\xf4\xf1\x43\x08\x67\xcf\x03\x00\xe0\x48\x90\x49\xbe\x45\xb5\xc2\x74\x00\x77\x6d\x25\x91\x79\x7d\x31\xd5\x2b\xfa\x17\xab\x38\x59\x70\xe3\x39\x7a\xd3\x1f\x2d\xa6\x50\x58\x30\x85\x01\x4b\x12\x3b\x91\x55\x94\x05\x4f\x52\x29\x79\x7c\x63\xbc\xc2\x10\xee\xc6\xb6\xa6\x55\x80\x7b\x4a\xe4\x69\xd4\x28\x81\x11\xb8\xfe\xa8\x24\xa9\xd8\x0e\xa3\x8d\x61\x18\xde\x54\xf8\x29\xd0\xab\x18\xc0\xad\x7a\x6c\x79\x96\x8c\xb2\xb0\x99\xaa\x9f\xc7\x47\x28\x98\xc8\x93\xc0\x7f\x96\x15\xdf\x82\x90\x04\x76\x18\x28\x4c\x51\xa1\x48\x10\x48\x42\x8b\xcb\x0f\xbd\xae\xf0\x7a\x29\xb7\x75\x9b\x2d\x74\xce\x1f\x7d\xcf\x29\xdb\x2a\x76\x64\x1b\xae\x97\xd2\xdb\x66\xed\xe7\xc1\x11\x3d\xa4\x75\xdd\x94\xff\xda\x83\x6e\x03\x32\x19\x34\x2a\xaf\xa6\x7c\xcb\x71\xb1\x5e\xf0\x84\x49\x45\xd8\x3a\x89\xbe\x76\x49\x6c\x8f\xca\x46\x6d\xd4\x3b\x92\xb3\x16\x1b\x48\xd0\x5a\x89\x6e\xe4\xe6\x0c\x4f\x8c\x33\xbd\xbe\x77\xad\x3b\x24\x7b\x28\x17\x05\x07\x6c\xb3\xe4\x29\xd8\xd0\xc2\x70\xd4\xa3\x3b\x7b\x1d\xf7\x2d\x91\x91\xf9\x3d\x47\xbb\xa9\xb2\x89\xbd\x7d\xb7\xd8\x2f\x80\xbc\x44\x3d\x24\x70\x20\xb8\xef\x4e\x09\xf5\xdc\xce\x75\xa3\x4d\x5d\xe9\x0b\xe8\x9a\xdb\x62\x21\xcb\x9c\xdc\x01\x87\xf7\x5d\x92\xa3\x3b\x7b\x4f\xdb\xbb\xf1\xe1\x3f\x9b\x6c\xb7\xf5\x0d\x9f\x3b\x55\x17\x9a\xb9\x24\x40\x21\xab\x5d\x66\x93\x52\xea\xbc\x9b\x21\xff\xf9\x57\xba\x8b\x8b\xcb\xc5\xfb\x13\x00\x00\xff\xff\x05\x34\x47\x6c\x04\x05\x00\x00" +var _lockedtokensStakerStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x8f\xda\x40\x0c\xbd\xe7\x57\xb8\x39\x54\x89\xd4\xcd\xf6\x50\xf5\x80\xa0\x2b\x76\x61\xdb\x8a\x15\x20\x42\xb7\xed\x71\x08\xce\x87\x18\x66\xa2\x99\x49\xa1\x42\xfc\xf7\x6a\x3e\x12\x92\xa0\x7e\x4a\xcd\x25\x10\x3f\x3f\xfb\xf9\xd9\xc5\xbe\xe4\x42\xc1\x23\xe5\x87\x35\xdf\x21\x83\x54\xf0\x3d\xf8\xcd\x7f\xdf\xab\x11\x15\xcb\x8a\x0d\xc5\x0e\xaa\xfd\xad\x41\x3e\xf1\x64\x87\x5b\xf3\x4d\x5a\xe0\xeb\xe3\xd3\xe2\x61\x36\x9d\xac\x17\xb3\xe9\x7c\x3c\x99\xac\xa6\x71\x5c\xa3\x63\x45\x76\x05\xcb\x96\x82\x1f\xbf\xd7\xe8\x78\x3d\x9e\x7d\x9c\xbf\x5f\xae\x16\x5f\xbe\xd6\x70\x4f\x09\xc2\x24\x49\x54\xc1\x59\x40\xf6\xbc\x62\x6a\x00\x9f\x1e\x8b\xe3\xdb\x37\x21\x9c\x3c\x0f\x00\x80\xa2\x82\x9c\xd3\x2d\x8a\x15\xa6\x03\x20\x95\xca\x83\x76\x37\x91\x79\x2d\x4a\x14\x44\xd3\xc8\x57\x5d\x55\xd1\xe7\x42\xe5\x5b\x41\x0e\x64\x43\x31\x84\x97\xd7\xa9\x1f\x0c\xf9\xa5\xd8\x37\x52\x51\x75\xa9\xf5\x4b\xb6\x66\xa4\xd1\xb3\xce\xb2\x24\xa5\xc0\x92\x08\x0c\x48\x92\x58\x45\x86\xe7\x9e\x0b\xc1\x0f\xcf\x84\x56\x3a\x71\x6c\x63\x5a\x25\xb8\x47\x22\x4d\xa3\x46\x29\x8c\xc0\xe5\x47\x52\x71\x41\x32\x8c\x36\x86\x61\xf8\xbf\x26\xf0\x2e\xd0\x4e\x0d\xe0\x67\xf1\xd8\xb6\xb1\x24\x2a\x0f\x9b\xa6\xf5\x73\x77\x07\x25\x61\x45\x12\xf8\x0f\xbc\xa2\x5b\x60\x5c\x81\xed\x15\x04\xa6\x28\x90\x25\x08\x8a\x43\x8b\xcb\x0f\xbd\xae\xee\x7a\xe8\xbf\x91\xfd\x37\x66\xd4\x7a\x6e\x1d\xd1\x6d\x5a\xc7\x4d\xf8\x8f\x35\xe8\x34\x50\xe6\x42\x4c\x97\x17\x51\xbe\xe5\x38\x5b\x2d\x78\xc4\xa4\x52\xd8\x72\x54\x6f\x93\x54\x64\x87\xc2\x5e\xc2\xa8\xe7\xb1\x93\x16\x1b\x48\xd0\x1a\x89\x4e\xa4\xc6\x86\x7b\x42\x89\x1e\xdf\x55\x6a\x86\xca\x1a\xe5\x36\xc9\x01\xdb\x2c\x45\x0a\xf6\xa6\x60\x38\xea\xd1\x9d\xbc\x8e\xfa\x56\x93\x91\xf9\x3d\x47\x3b\x29\xd9\x5c\xa5\x7d\xb7\xd8\xcf\x80\x54\xa2\x2e\x12\x38\x10\xdc\x74\xab\x84\xba\x6e\xc7\xdd\x68\x53\x47\xfa\x0d\x74\xc5\x6d\xb1\xe4\xb2\x50\xce\xc0\xe1\x4d\x97\xe4\xe0\x6c\xef\xf5\x76\x55\x3e\xfc\x67\x91\xed\xb4\xbe\xe0\x53\x27\xea\x96\x66\xce\x15\x20\xe3\x55\x96\xdb\x4d\x91\x7a\xdf\x4d\x91\x17\xfe\x85\xee\xec\xd6\xe5\xec\xfd\x08\x00\x00\xff\xff\xf5\xf3\x7f\x27\xa2\x05\x00\x00" func lockedtokensStakerStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4210,11 +4297,11 @@ func lockedtokensStakerStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x5a, 0xb6, 0x57, 0x56, 0x3a, 0xc9, 0x74, 0xb9, 0x53, 0xc5, 0x13, 0x6c, 0xaf, 0x5e, 0x39, 0xf2, 0xb6, 0x22, 0x8a, 0x65, 0xf6, 0x3d, 0x11, 0x2, 0xdd, 0xc8, 0x33, 0xd8, 0x68, 0x6b, 0x8d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xad, 0xc9, 0x23, 0xe, 0x54, 0xf8, 0xd8, 0xb7, 0xdf, 0xde, 0xf2, 0xa0, 0xee, 0x2e, 0x50, 0x47, 0x70, 0xea, 0xf7, 0x8f, 0x5e, 0xf3, 0xa2, 0xa8, 0x93, 0x75, 0x2f, 0xb4, 0x85, 0x18, 0xfc, 0x5}} return a, nil } -var _lockedtokensStakerStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x51\x4f\x6b\xfa\x40\x10\xbd\xe7\x53\x0c\x1e\x24\xb9\x84\xdf\xe1\x47\x0f\x52\x2b\x56\xed\x1f\x14\x95\xc4\x96\xf6\xb8\xdd\x4c\x34\x24\xee\x84\xc9\x04\x53\x8a\xdf\xbd\x24\x9b\x68\x28\xb8\x97\x59\x78\x6f\xde\x9b\x37\x93\x1c\x73\x62\x81\x15\xe9\x14\xa3\x1d\xa5\x68\x0a\x88\x99\x8e\xf0\xaf\x5a\x6d\x66\xcb\xc5\x7c\xb7\x59\x2e\xd6\xd3\xf9\x3c\x58\x84\xa1\xd3\xb2\x43\x51\x69\x62\xf6\x5b\xa6\xea\xbb\x63\x87\xbb\xe9\xf2\x75\xfd\xbc\x0d\x36\x1f\x9f\x1d\xdd\x11\x56\xa6\x50\x5a\x12\x32\xae\x3a\x52\x69\x64\x04\x6f\x4f\x49\x75\xf7\xdf\x83\x1f\xc7\x01\x00\xc8\x50\xe0\x40\x59\x84\x1c\x60\x3c\x82\x61\x7f\x12\xbf\x29\x2f\x0d\x6a\xd9\x39\x63\xae\x18\x5d\xa5\xb5\x55\x53\xa5\x1c\xdc\x47\x62\xa6\xd3\xbb\xca\x4a\xf4\x60\x38\xb5\x58\xed\x00\xed\x2b\x30\x8b\xfd\x8b\x0b\x8c\xa1\xed\xf7\x0b\x21\x56\x7b\xf4\xbf\x1a\x85\xfb\x9b\xee\x0f\x6e\x1d\x73\x04\xb7\xf0\xd0\xea\x6c\x95\x1c\xbc\x8b\x6b\xfd\x26\x13\xc8\x95\x49\xb4\x3b\x98\x51\x99\x45\x60\x48\xc0\x9a\x01\x63\x8c\x8c\x46\x23\x08\x41\x4f\x6b\x60\x15\xce\x36\x31\x56\xa8\x4b\xc1\x5e\x98\x7a\x63\x85\xa8\x14\xd9\x1e\x60\xfc\x27\x5e\x1b\x26\x6c\x28\xae\xe7\x5c\xb7\x70\x6d\xf2\x9b\x7f\x80\x27\xc5\x51\x97\xe7\x72\x21\x5b\xbb\x29\xce\xce\x6f\x00\x00\x00\xff\xff\xbd\x2d\xf6\xeb\x24\x02\x00\x00" +var _lockedtokensStakerStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4b\x6f\xab\x40\x0c\x85\xf7\xfc\x0a\x8b\xc5\x15\x48\x57\xe8\x2e\xae\xba\x88\x9a\x46\x69\x1e\x6d\x95\x28\x44\x90\xbe\x96\x0e\x98\x80\x20\x33\xc8\x0c\x0a\x55\x95\xff\x5e\x31\x43\x9e\x55\x97\x9d\xcd\x20\x7c\x7c\xfc\x71\x70\xb6\x2d\x25\x2b\x98\xcb\x28\xa7\x78\x25\x73\x12\x15\x24\x2c\xb7\xf0\xaf\x99\xfb\xa3\xd9\x64\xbc\xf2\x67\x93\xc5\x70\x3c\x0e\x26\x61\x68\x75\xea\x50\x61\x9e\x89\xcd\x92\x65\xf3\x71\x50\x87\xab\xe1\xec\x69\xf1\xb0\x0c\xfc\xb7\xf7\x2b\xf9\xb4\x16\x9b\x6c\x5d\x90\xb6\x37\x7a\xfb\xe2\x9d\x6d\x59\x8a\x51\x54\x18\xa9\x4c\x0a\x07\xb7\xb2\x16\xaa\x07\xcf\xd3\xac\xb9\xf9\xef\xc2\xa7\x65\x01\x00\x14\xa4\x20\x95\x45\x4c\x1c\x50\xd2\x03\xac\x55\xea\x9c\x73\x7b\xfa\xf2\x4b\x62\x6c\x6d\xaa\xbf\x97\x83\xbd\xd7\x4c\xa5\x31\xe3\x0e\xd7\x05\xb9\xf0\xe7\x7b\xeb\xa3\x36\x37\xc3\x4a\xa6\x12\x99\x1c\x8c\x22\x03\xa3\xc7\xdd\x4b\x66\xb9\x7b\xc1\xa2\x6e\x1d\x86\xa6\xd6\x02\x42\x77\x2a\x2a\x12\xef\x08\x09\x7d\xe8\xfa\xbd\x4a\x49\xc6\x0d\x79\x6b\xed\x70\xfb\x5b\xf0\x77\x4e\x1b\x6f\x0f\x7e\xaa\x87\x06\x63\x89\x2a\x75\x8f\xd0\xed\x19\x0c\xa0\x44\x91\x45\x8e\x3d\x92\x75\x11\x83\x90\x0a\x0c\x2b\x30\x25\xc4\x24\x22\x02\x25\xe1\xcc\xcb\x36\x0e\x7b\x13\x18\x35\x14\xd5\x8a\xce\xb2\x68\xff\x57\xa5\x30\x27\x36\x8b\xd2\xbf\x4a\xa7\xcb\x22\xd4\x12\xc7\xb5\x4e\x21\x9e\x9a\x3c\xfd\x1c\xd0\x0e\x39\x3e\x7c\xcf\x71\x3f\xcc\x7d\xa0\xd8\x5b\x5f\x01\x00\x00\xff\xff\x31\x2b\x18\x1a\xcc\x02\x00\x00" func lockedtokensStakerStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4230,11 +4317,11 @@ func lockedtokensStakerStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x64, 0xb5, 0x44, 0x8, 0xb9, 0x8e, 0x96, 0xd0, 0xbf, 0x1f, 0x32, 0x5f, 0xf3, 0xf6, 0xc4, 0xaf, 0xc, 0xd1, 0xda, 0x8e, 0xe7, 0xf, 0x3b, 0xca, 0xcc, 0x4e, 0x14, 0x1f, 0x21, 0x10, 0x3b, 0x3d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0x85, 0x25, 0xb1, 0xeb, 0x6f, 0x6d, 0xcf, 0xc2, 0x7c, 0xa3, 0x8a, 0x17, 0x27, 0x2d, 0x75, 0xb2, 0xd2, 0x29, 0x32, 0x0, 0x5a, 0x64, 0xdf, 0xa3, 0x7c, 0xee, 0xc, 0x7b, 0xec, 0xdd, 0x72}} return a, nil } -var _lockedtokensStakerStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x51\xcd\x6a\xf2\x50\x10\xdd\xe7\x29\x06\x17\x92\x6c\xc2\xb7\xf8\xe8\x42\x6a\xc5\xaa\xfd\x41\x51\x31\x5a\xda\xe5\xf4\x3a\xd1\x90\x78\x27\x4c\x26\x34\xa5\xf8\xee\x25\xb9\xf1\x87\x82\x77\x33\x17\xce\x99\x73\xe6\xcc\x24\x87\x9c\x45\x61\xc6\x26\xa5\xed\x9a\x53\xb2\x05\xc4\xc2\x07\xf8\x57\xcd\x16\xa3\xe9\x64\xbc\x5e\x4c\x27\xf3\xe1\x78\xbc\x9a\x44\x91\xd7\xb2\x23\xc5\x34\xb1\xbb\xa5\x70\xf5\x7d\x62\x47\xeb\xe1\xf4\x75\xfe\xbc\x5c\x2d\xde\x3f\x4e\x74\x4f\x05\x6d\x81\x46\x13\xb6\x3e\x1e\xb8\xb4\xda\x83\xcd\x53\x52\xdd\xfd\x0f\xe0\xc7\xf3\x00\x00\x32\x52\xd8\x73\xb6\x25\x59\x51\xdc\x83\xee\xf5\x24\x61\x53\x5e\x1a\xd4\xb1\x73\xa1\x1c\x85\x7c\x34\xc6\xa9\x61\xa9\x7b\xff\x91\x45\xf8\xeb\x0d\xb3\x92\x02\xe8\x0e\x1d\x56\x3b\x40\xfb\x0a\xca\xe2\xf0\xec\x02\x7d\x68\xfb\xc3\x42\x59\x70\x47\xe1\x67\xa3\x70\x7f\xd3\xfd\xc1\xaf\x63\xf6\xe0\x16\x1e\x39\x9d\x25\xea\x3e\x38\xbb\xd6\x6f\x30\x80\x1c\x6d\x62\xfc\xce\x88\xcb\x6c\x0b\x96\x15\x9c\x19\x08\xc5\x24\x64\x0d\x81\x32\x5c\x69\x75\x9c\xc2\xd1\x25\xa6\x8a\x4c\xa9\x74\x15\xa6\xde\x58\xa1\x98\x92\xb8\x03\xf4\xff\xc4\x6b\xc3\x44\x0d\xc5\x0f\xbc\xcb\x16\x2e\x4d\x61\xf3\xdf\xd8\xa6\xb4\x79\xce\x17\x72\xf5\x34\xc5\xd1\xfb\x0d\x00\x00\xff\xff\x92\x19\x46\xc5\x24\x02\x00\x00" +var _lockedtokensStakerStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4d\x6b\xbb\x40\x10\xc6\xef\x7e\x8a\xc1\xc3\x1f\x85\x3f\xd2\x43\xe9\x21\x34\x0d\x69\x5e\xda\x92\x10\x43\x4c\xfa\x72\x9c\xe8\x18\x45\xb3\x2b\xe3\x4a\x2c\x25\xdf\xbd\xb8\x6b\x5e\x4b\x8f\xdd\xcb\x88\xfb\xcc\x33\x3f\x1f\x27\xdd\x16\x92\x15\x4c\x65\x98\x51\xb4\x94\x19\x89\x12\x62\x96\x5b\xb8\xa9\xa7\xfe\x60\x32\x1a\x2e\xfd\xc9\x68\xd6\x1f\x0e\x17\xa3\x20\xb0\x5a\x75\xa0\x30\x4b\xc5\x66\xce\xb2\xfe\x3c\xa8\x83\x65\x7f\xf2\x32\x7b\x9a\x2f\xfc\xf7\x8f\x2b\xf9\xb8\x12\x9b\x74\x9d\x93\xb6\x37\x7a\xfb\xe2\x9d\x6d\x59\x8a\x51\x94\x18\xaa\x54\x0a\x07\xb7\xb2\x12\xaa\x03\xab\x71\x5a\xdf\xdd\xba\xf0\x65\x59\x00\x00\x39\x29\x48\x64\x1e\x11\x2f\x28\xee\x00\x56\x2a\x71\xce\xb9\x3d\x5d\xfc\x82\x18\x1b\x9b\xf2\xff\xe5\x60\xef\x2d\x55\x49\xc4\xb8\xc3\x75\x4e\x2e\xfc\xfb\xd9\xfa\xac\xcd\xcd\xb0\x82\xa9\x40\x26\x07\xc3\xd0\xc0\xe8\x71\x8f\x92\x59\xee\x5e\x31\xaf\x1a\x87\xbe\xb9\x6b\x00\xa1\x3d\x25\xe5\xb1\x77\x84\x84\x2e\xb4\xfd\x5e\xa9\x24\xe3\x86\xbc\xb5\x76\xb8\xff\x2b\xf8\x07\xa7\x89\xb7\x03\xbf\xdd\x07\x06\x63\x8e\x2a\x71\x8f\xd0\xcd\xe9\xf5\xa0\x40\x91\x86\x8e\x3d\x90\x55\x1e\x81\x90\x0a\x0c\x2b\x30\xc5\xc4\x24\x42\x02\x25\xe1\xcc\xcb\x36\x0e\x7b\x13\x18\xd5\x14\x56\x8a\xce\xb2\x68\xfe\x57\xa9\x30\x23\x36\x8b\xd2\xbd\x4a\xa7\xcd\x22\xd0\x12\xc7\xb5\x4e\x21\x9e\x9a\x3c\xfd\xbc\x12\xba\xb4\xdf\x73\xdc\x0f\x53\x0f\x14\x7b\xeb\x3b\x00\x00\xff\xff\x1e\x1f\xa8\x34\xcc\x02\x00\x00" func lockedtokensStakerStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4250,11 +4337,11 @@ func lockedtokensStakerStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0x4c, 0xf7, 0x6f, 0x39, 0x21, 0xa2, 0x2b, 0xf8, 0x87, 0x5e, 0x60, 0x8b, 0x7, 0xb7, 0x53, 0xc3, 0x5b, 0xaf, 0x7d, 0x59, 0x2a, 0x1b, 0x80, 0x29, 0xf, 0xa3, 0x8f, 0xdc, 0x92, 0x53, 0xc9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0xb5, 0x22, 0x4e, 0x64, 0x9c, 0xfa, 0xc4, 0xe8, 0x5d, 0xa7, 0xa3, 0x33, 0x9e, 0x82, 0xc8, 0x46, 0x19, 0x50, 0xef, 0x65, 0xbe, 0xef, 0xd0, 0x9d, 0x42, 0xa8, 0x50, 0xd5, 0xb9, 0xbe, 0x13}} return a, nil } -var _lockedtokensStakerUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x4f\x6b\xc2\x40\x10\xc5\xef\xf9\x14\x83\x07\xd9\x5c\x42\xcf\x52\x2b\xa9\x4a\x5b\x14\x15\x23\xa5\x3d\x6e\xd7\x89\x86\xac\x3b\x61\x32\x4b\x2d\xc5\xef\x5e\x92\x8d\x7f\x28\x38\x97\x65\x99\x37\xef\xc7\x7b\xc5\xa1\x22\x16\x98\x93\x29\x71\xbb\xa1\x12\x5d\x0d\x39\xd3\x01\x1e\x8e\xf3\xe5\x78\x36\x9d\x6c\x96\xb3\xe9\x22\x9d\x4c\xd6\xd3\x2c\x8b\x3a\x75\x26\xba\x2c\xdc\x6e\xc5\x74\xfc\x39\xab\xb3\x4d\x3a\x7b\x5b\xbc\xac\xd6\xcb\x8f\xcf\xb3\x3c\x12\xd6\xae\xd6\x46\x0a\x72\x2a\x86\xdf\x28\x02\x00\xb0\x28\xb0\x27\xbb\x45\x5e\x63\x3e\x80\xfe\x2d\x3b\x69\x9f\xd7\x76\x1b\xd4\x15\x63\xa5\x19\x95\x36\x86\xbc\x93\x01\x68\x2f\x7b\xf5\x4c\xcc\xf4\xfd\xae\xad\xc7\x18\xfa\x69\xd8\x35\x04\xe8\xa6\x46\x9b\x27\x17\x0a\x0c\xa1\xbb\x4f\x6a\x21\xd6\x3b\x4c\xbe\x5a\x87\xc7\xbb\xf4\x27\xd5\x04\x1b\xc0\xbd\x7d\x16\x7c\x56\x5a\xf6\xf1\x85\xda\xcc\x68\x04\x95\x76\x85\x51\xbd\x31\x79\xbb\x05\x47\x02\x01\x06\x8c\x39\x32\x3a\x83\x20\x04\x37\x5e\xbd\xe0\x70\x0a\x89\xf1\x88\xc6\x0b\xde\x84\x69\x1a\xab\x45\x97\xc8\xa1\xf2\xe1\xbf\x78\x5d\x98\xac\x95\xa8\x38\xba\xb6\x70\x3d\x4a\xbc\x6b\x7f\xa9\xb5\xea\x8c\x3b\x45\x7f\x01\x00\x00\xff\xff\x0f\xaf\xc1\x08\xff\x01\x00\x00" +var _lockedtokensStakerUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\x4b\x6b\x83\x40\x10\xbe\xfb\x2b\x06\x0f\x45\xa1\x48\xcf\xa1\x69\xb0\x49\xfa\x20\x21\x86\x18\xfa\x38\x6e\x74\x8c\xe2\x66\x57\xc6\x59\x92\x52\xf2\xdf\x8b\xae\x79\x96\x1e\x3b\x17\x71\xe7\x7b\xf1\xed\x16\x9b\x4a\x13\xc3\x54\x27\x25\xa6\x4b\x5d\xa2\xaa\x21\x23\xbd\x81\xbb\xdd\x34\x1a\x4e\xc6\xa3\x65\x34\x19\xcf\xc2\xd1\x68\x31\x8e\x63\xa7\x43\xc7\x2c\xca\x42\xad\xe7\xa4\x77\x5f\x07\x74\xbc\x0c\x27\xaf\xb3\xe7\xf9\x22\xfa\xf8\xbc\x82\x3f\x19\xb5\x2e\x56\x12\x5b\x79\x8b\x77\x2f\xce\x5c\xc7\x61\x12\xaa\x16\x09\x17\x5a\x79\x3e\x7c\x3b\x0e\x00\x80\x44\x86\x5c\xcb\x14\x69\x81\x59\x0f\x84\xe1\xdc\x3b\x4f\x1a\xb4\x9f\xa8\x42\x12\x0d\xb1\xbe\xbd\xb4\x0a\xde\x0b\xce\x53\x12\x5b\xb1\x92\xe8\xc3\xcd\x6f\xea\x4b\x2b\x6e\xcd\x2a\xc2\x4a\x10\x7a\x22\x49\xb4\x51\xdc\xd9\x3d\x6a\x22\xbd\x7d\x13\xd2\x34\x0a\xa1\xdd\x35\x01\xa1\x9b\x1a\x65\x16\x1c\x43\x42\x1f\x3a\x7e\x50\xb3\x26\xb1\xc6\x60\xd5\x2a\xdc\xff\x57\xf8\x07\xaf\x29\xb4\x07\x7f\xed\x63\x1b\x63\x2e\x38\xf7\x8f\xa1\x9b\x19\x0c\xa0\x12\xaa\x48\x3c\x77\xa8\x8d\x4c\x41\x69\x06\x9b\x15\x08\x33\x24\x54\x09\x02\x6b\x38\xd3\x72\xad\xc2\xde\x16\x86\x3b\x4c\x0c\xe3\x59\x17\xcd\x7d\xd5\x2c\x4a\x24\xfb\x34\xfa\x57\xed\x74\x5d\xc4\x2d\xc4\xf3\x9d\x53\x89\x27\x52\x60\x54\xfb\x17\x4a\xe9\x1d\xec\xf6\xce\x4f\x00\x00\x00\xff\xff\x33\xf3\xea\x19\xa7\x02\x00\x00" func lockedtokensStakerUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -4270,11 +4357,11 @@ func lockedtokensStakerUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe8, 0x1c, 0xb1, 0xa9, 0xc0, 0x4a, 0x9d, 0x51, 0xef, 0x61, 0xb, 0x64, 0x6b, 0xa2, 0xcf, 0x6e, 0x12, 0x78, 0xd6, 0xd2, 0x79, 0xc, 0x2a, 0x65, 0x51, 0xa2, 0x4d, 0xcd, 0x5f, 0x6b, 0x6, 0xd0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe8, 0x2, 0xbd, 0x75, 0x20, 0x7e, 0x5, 0xb9, 0x89, 0x96, 0xb4, 0x90, 0x78, 0x33, 0x11, 0xa1, 0x10, 0xce, 0xbd, 0xa5, 0x1, 0x6e, 0xc4, 0x8e, 0x43, 0x19, 0xee, 0xc5, 0x43, 0xe2, 0x56, 0xa0}} return a, nil } -var _lockedtokensStakerUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x07\x49\x2e\xa1\xe7\x50\x2b\x56\x85\x82\xa2\x62\xa4\xf7\xed\xee\x44\x43\xe2\x4e\x98\x9d\x45\x4b\xf1\xbf\x97\x64\x53\x0d\x05\xe7\xb2\x87\x37\xf3\xde\x7e\x33\xe5\xb9\x21\x16\x58\x93\xae\xd0\x1c\xa8\x42\xeb\xa0\x60\x3a\xc3\xcb\x75\xbd\x9d\xaf\x96\x8b\xc3\x76\xb5\xdc\xcc\x16\x8b\xfd\x32\xcf\xa3\x48\x58\x59\xa7\xb4\x94\x64\x63\x8b\x97\x99\x31\x8c\xce\x65\x90\x0b\x97\xf6\x98\xc0\x4f\x14\x01\x00\xd4\x28\x70\xa2\xda\x20\xef\xb1\xc8\x60\x3c\xb4\x4f\xbb\xe7\xa3\x53\x43\x77\xc3\xd8\x28\xc6\x58\x69\x4d\xde\x4a\x06\xca\xcb\x29\x7e\x27\x66\xba\x7c\xaa\xda\x63\x02\xe3\x59\xd0\xda\x04\xe8\xcb\x61\x5d\xa4\xf7\x14\x98\x40\x3f\x9f\x3a\x21\x56\x47\x4c\xbf\x3a\x87\xd7\xa7\xe9\x6f\x71\x4b\x9a\xc1\x33\x3d\x0f\x3e\x3b\x25\xa7\xe4\x9e\xda\xd6\x74\x0a\x8d\xb2\xa5\x8e\x47\x73\xf2\xb5\x01\x4b\x02\x21\x0c\x18\x0b\x64\xb4\x1a\x41\x08\x06\x5e\xa3\xe0\x70\x0b\xc4\x78\x45\xed\x05\x07\x30\xed\xc6\x9c\xa8\x0a\x79\xc7\x74\xfd\x86\xc9\x3f\xbc\x1e\x26\xef\x5a\xe2\x24\x7a\x6c\xe1\x31\x94\xfa\xc6\x28\xc1\x0d\xca\x85\xb8\x2a\xed\xb1\x3f\xcf\xe0\x52\x7f\xbf\xb8\x45\xbf\x01\x00\x00\xff\xff\xfc\x75\x1d\x8c\xf9\x01\x00\x00" +var _lockedtokensStakerUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x6b\xc2\x40\x10\xc5\xef\xf9\x14\x43\x0e\x25\x81\x12\x7a\x96\x5a\xb1\x6a\x29\x28\x2a\x46\xda\xf3\x9a\x4c\xfe\x90\xb8\x13\x66\x27\xc4\x52\xfc\xee\x25\xd9\x54\x63\x4b\x8f\x9d\x4b\x20\xf3\xe6\xcd\x8f\xb7\x93\x1f\x2b\x62\x81\x15\x45\x05\xc6\x7b\x2a\x50\x1b\x48\x98\x8e\xf0\x70\x5a\x6d\x66\xcb\xc5\x7c\xbf\x59\x2e\xd6\xd3\xf9\x7c\xb7\x08\x43\xa7\x57\xbf\xd4\x3a\xcd\x0f\x25\x76\x7a\x2b\x77\x6f\xfe\xb9\x8e\x23\xac\xb4\x51\x91\xe4\xa4\x3d\x8d\xcd\x34\x8e\x19\x8d\x19\x41\x28\x9c\xeb\xd4\x87\x4f\xc7\x01\x00\x28\x51\x20\xa3\x32\x46\xde\x61\x32\x02\x55\x4b\xe6\x0d\x61\x82\xee\xb3\xa9\x90\x55\x6b\x65\xee\x6f\x97\x07\xef\xb9\x64\x31\xab\x46\x1d\x4a\xf4\xe1\xee\xf7\xe8\x6b\x67\x6e\x97\x55\x8c\x95\x62\xf4\x54\x14\x51\xad\xa5\x5f\xf7\x4c\xcc\xd4\xbc\xa9\xb2\x6e\x1d\xa6\xb6\xd7\x02\x42\x5f\x06\xcb\x24\xb8\x40\xc2\x18\xfa\xf9\xc0\x08\xb1\x4a\x31\x38\x74\x0e\x8f\xff\x05\xff\xe4\xb5\x11\x8f\xe0\xaf\x7e\x68\x31\xb6\x4a\x32\xff\x02\xdd\xd6\x64\x02\x95\xd2\x79\xe4\xb9\x33\xaa\xcb\x18\x34\x09\x58\x56\x60\x4c\x90\x51\x47\x08\x42\x30\xf0\x72\xad\xc3\xd9\x06\x86\x27\x8c\x6a\xc1\x41\x16\xed\x7b\x19\x51\x05\xf2\x96\xe9\xf4\x01\xe3\x1f\xe9\xf4\x59\x84\x9d\xc4\xf3\x9d\x6b\x88\xd7\xa1\xa0\xae\x62\x25\xb8\x46\x69\x88\x8b\x5c\xa7\xfd\x71\x0c\xee\xe4\x9b\xe2\xec\x7c\x05\x00\x00\xff\xff\x87\x60\x47\xb0\xa1\x02\x00\x00" func lockedtokensStakerUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -4290,11 +4377,11 @@ func lockedtokensStakerUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x13, 0x3f, 0x91, 0xf6, 0x9d, 0x77, 0xd, 0x53, 0xb5, 0x7b, 0xac, 0xb1, 0xe7, 0x27, 0xcd, 0x2a, 0x84, 0xdb, 0x2b, 0xbd, 0x78, 0xa7, 0x1b, 0x12, 0x99, 0xb, 0x28, 0x36, 0xda, 0xb0, 0x7f, 0x8a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0x2d, 0x8f, 0xc1, 0x70, 0x46, 0x6b, 0x99, 0xc, 0x46, 0xbd, 0x74, 0x78, 0x75, 0xc5, 0xc9, 0x34, 0xa0, 0xf9, 0x2e, 0x92, 0x1e, 0x3b, 0x25, 0xc, 0x85, 0x88, 0xb2, 0xd0, 0x7d, 0x1b, 0xb4}} return a, nil } -var _lockedtokensStakerWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\x4d\xaf\x9a\x40\x14\xdd\xf3\x2b\x6e\x58\x18\x58\x14\xbb\x68\xba\x30\x5a\x63\xfd\x48\x13\x4d\x35\x62\xdd\x4f\xe1\x52\x88\xc8\x25\x97\x8b\xd0\xbc\xf8\xdf\x5f\x60\x00\x79\xe4\xf9\x16\x6f\x36\x13\x38\x67\xce\x39\xf7\xcc\x44\xd7\x94\x58\x60\x47\xde\x05\xfd\x13\x5d\x30\xc9\x20\x60\xba\xc2\xd7\x72\xb7\x5f\x6e\xd7\xab\xd3\x7e\xbb\xfe\xbd\x58\xad\x8e\x6b\xd7\x35\x1a\xf6\x26\xa6\xa2\xe6\x6a\xaa\xd9\x7d\x9b\x86\x21\xac\x92\x4c\x79\x12\x51\x62\xa9\x2b\xe5\x89\x4c\xe0\xcf\x26\x2a\xbf\x7f\xb3\xe1\xc5\x30\x00\x00\x62\x14\x08\x29\xf6\x91\x8f\x18\x4c\x60\xd4\x37\x77\xea\xed\x57\x8d\x76\xe4\x9b\xca\x63\xd1\xdc\xce\xca\x39\x57\x3f\xb5\x60\xca\x98\x2a\x46\x4b\x79\x9e\x36\x54\xb9\x84\xd6\x4f\x62\xa6\xe2\xac\xe2\x1c\x6d\x18\x2d\x34\x56\x85\x80\x66\x65\x18\x07\x4e\x17\x04\x66\xd0\x9c\x77\x32\x21\x56\xff\xd0\xf9\x5b\x2b\x4c\x9f\x06\xfc\x61\x55\xf3\x4f\xe0\x19\xee\x6a\x9d\x83\x92\xd0\xee\x5c\xab\x35\x9f\x43\xaa\x92\xc8\xb3\xcc\x25\xe5\xb1\x0f\x09\x09\x68\x33\x60\x0c\x90\x31\xf1\x10\x84\xa0\xa7\x65\xda\xc6\xdb\xe0\x6d\x29\x1f\xe4\x1e\x94\xd5\xc6\x1d\x37\xbc\x71\xd0\xe2\x35\xfc\xb9\x88\x8f\xb7\x70\xab\x9a\x36\xb5\xca\x5d\x87\xc5\x12\xbd\x5c\xb0\xd7\x79\x75\x9d\x99\xa8\x0b\xf2\x81\xa9\xfc\x0f\xb3\xc1\x2d\x34\xd9\xdd\x9a\x62\xf5\x67\x7e\x1c\x72\x8a\x48\x42\x9f\x55\x71\xc4\x42\xb1\xdf\x36\xdf\x3d\x37\xbd\xdb\xef\xd7\xe5\xf8\x98\x52\x16\x49\xd3\xc5\xf4\xcb\xc0\xbf\xd5\x1e\xaa\xb5\x73\xdd\x8d\xd7\x00\x00\x00\xff\xff\x8f\x30\x29\xb3\x33\x03\x00\x00" +var _lockedtokensStakerWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x6e\xdb\x30\x0c\xbd\xfb\x2b\x08\x1f\x0a\x1b\xd8\xd4\x1d\x86\x1d\x82\x76\x45\xd7\xa4\x18\xd0\x62\x29\x92\xae\x3b\x33\x36\xdd\x18\x51\x44\x83\x96\xeb\x0c\x43\xff\x7d\x90\x64\xbb\x8e\xb7\x5c\x06\x4c\x17\x41\xe2\xe3\xe3\x7b\x24\xcb\x7d\xc5\x62\xe1\x9e\xb3\x1d\xe5\x8f\xbc\x23\x53\x43\x21\xbc\x87\x0f\x87\xfb\xe5\xcd\xdd\x62\xfe\xb8\xbc\x5b\x7c\xbb\x9e\xcf\x57\x8b\xf5\x3a\xea\xd0\xb7\x9a\x5b\x8f\x0d\xd0\x78\x78\xc7\x03\xa2\x31\xcf\xe5\x46\xd3\x11\x6a\xfc\x17\x47\x91\x15\x34\x35\x66\xb6\x64\x93\xe0\x9e\x1b\x63\x67\xf0\xfd\xb6\x3c\x7c\xfa\x98\xc2\xaf\x28\x02\x00\xd0\x64\x61\xcb\x3a\x27\x59\x51\x31\x03\x6c\xec\x36\x19\x4b\x55\xfe\x5a\x56\x24\xe8\x68\xea\x77\xc7\x85\xd5\x8f\xd2\x6e\x73\xc1\x16\x37\x9a\x52\x38\xfb\x33\xf5\xab\x27\x1f\x6a\xbd\x60\xa3\xad\x2f\x75\x36\x78\x52\x4f\xee\x33\xe8\xa9\x84\x2a\x14\x4a\x30\xcb\x82\x5e\xaf\xe8\x0b\x8b\x70\xfb\x84\xba\x71\x45\xae\x43\xcc\x79\x80\xee\xd4\xa4\x0b\x35\xf8\x80\x4b\xe8\xf2\x55\x6d\x59\xf0\x99\xd4\xc6\x33\x5c\xfc\x2f\x7f\x9f\x13\x37\x81\x19\x9c\x8a\xaf\x83\x8c\x07\xb4\xdb\x74\x10\xed\xce\xd5\x15\x54\x68\xca\x2c\x89\x6f\xb8\xd1\x39\x18\xb6\x10\xb4\x82\x50\x41\x42\x26\x23\xb0\x0c\x23\xae\x38\x8d\x8e\x7d\xf7\x3d\x3d\x6d\x7b\xda\xeb\x5e\xee\x79\x87\x3b\x2f\xfa\xb8\x0f\xff\x9b\xc4\xb7\x9d\x7d\x71\x83\x8a\x03\xcb\x6b\x10\x4b\x07\xca\x1a\x4b\xa3\x91\xb9\x6d\xa8\x2d\xee\x48\x1e\x84\x0f\x3f\xe1\x72\x32\xc4\x4e\xfb\xda\x43\x92\xb1\xe7\xb7\x24\xd5\x76\xe3\x59\x51\x8b\x92\xf7\x9d\x1f\x96\x3d\xdc\xe9\xdf\xdb\xa5\x72\xaa\xb8\x2e\x6d\xd7\x8b\x8b\xf7\x93\xfa\x3d\xf7\x94\xad\xf7\xf5\x1a\xfd\x0e\x00\x00\xff\xff\xc4\x99\x67\x24\xdb\x03\x00\x00" func lockedtokensStakerWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4310,11 +4397,11 @@ func lockedtokensStakerWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x40, 0xf7, 0x20, 0xe9, 0xf7, 0x96, 0xc, 0x7a, 0xa8, 0xf7, 0xed, 0xfa, 0xc4, 0x29, 0x42, 0x6c, 0x6, 0xd0, 0xfb, 0xd2, 0x61, 0x87, 0x1c, 0xc9, 0x19, 0x3f, 0xac, 0x4f, 0xf0, 0x25, 0x42, 0x1f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x43, 0xd4, 0x3e, 0x9e, 0xe6, 0x2c, 0x78, 0x72, 0xa, 0x27, 0x76, 0x31, 0x19, 0xcf, 0xb8, 0x8f, 0xb0, 0x3b, 0x21, 0x6e, 0xa3, 0x81, 0xd, 0x9, 0x3f, 0xe9, 0x64, 0x7, 0xf9, 0xb9, 0x9b, 0x71}} return a, nil } -var _lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x51\x4d\x8f\xaa\x50\x0c\xdd\xf3\x2b\x1a\x17\x06\x36\xe4\x2d\x5e\xde\xc2\x3c\x9f\xf1\xa9\xf3\x11\x8d\x1a\x70\x26\x33\xcb\x3b\x97\x22\x04\xbc\x25\xa5\x04\x26\x13\xff\xfb\x04\x2e\xa8\x99\xc4\x6e\xba\x38\xa7\xe7\xf4\xb4\xe9\xa9\x20\x16\xd8\x90\xce\x30\x3a\x50\x86\xa6\x84\x98\xe9\x04\xbf\x9a\xcd\x6e\xb1\x5e\x2d\x0f\xbb\xf5\x6a\x3b\x5f\x2e\x83\x55\x18\x3a\x3d\x3b\x14\x95\xa5\xe6\xb8\x67\x6a\x3e\x07\x76\x78\x98\xaf\x9f\xb7\x8f\xfb\x60\xf7\xf6\x3e\xd0\x1d\x61\x65\x4a\xa5\x25\x25\xe3\xaa\x13\x55\x46\x26\xf0\xf2\x90\x36\x7f\x7e\x7b\xf0\xe5\x38\x00\x00\x39\x0a\x24\x94\x47\xc8\x01\xc6\x13\x18\xdf\x6e\xe2\x77\xed\xa9\x43\x2d\xbb\x60\x2c\x14\xa3\xab\xb4\xb6\x6a\xaa\x92\xc4\xfd\x4f\xcc\x54\xbf\xaa\xbc\x42\x0f\xc6\x73\x8b\xb5\x0e\xd0\x57\x89\x79\xec\x5f\x5c\x60\x0a\xfd\xbc\x5f\x0a\xb1\x3a\xa2\xff\xd1\x29\xfc\xbd\xeb\xfe\xcf\x6d\x63\x4e\xe0\x1e\x1e\x5a\x9d\xbd\x92\xc4\xbb\xb8\xb6\x35\x9b\x41\xa1\x4c\xaa\xdd\xd1\x82\xaa\x3c\x02\x43\x02\xd6\x0c\x18\x63\x64\x34\x1a\x41\x08\x6e\xb4\x46\x56\xe1\x6c\x13\x63\x83\xba\x12\xbc\x09\xd3\x5e\xac\x14\x95\x21\xdb\x07\x4c\x7f\xc4\xeb\xc3\x84\x1d\xc5\xf5\x9c\xeb\x15\xae\x43\x7e\x9d\x4a\x12\xb1\xaa\x03\xac\x15\x47\x43\xa4\xcb\x93\x6c\x1f\x16\x39\x3b\xdf\x01\x00\x00\xff\xff\x5b\x9a\x75\x42\x27\x02\x00\x00" +var _lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xcb\x6b\x83\x40\x10\xc6\xef\xfe\x15\x83\x87\xa2\x50\xa4\x87\xd2\x43\x68\x1a\xd2\x3c\xda\x92\x10\x83\xa6\xaf\xe3\x44\xc7\x28\x9a\x5d\x19\x57\xb4\x94\xfc\xef\x45\xd7\x3c\x4b\x8f\xdd\xcb\x82\xfb\xcd\x37\xbf\xf9\x9c\x64\x9b\x4b\x56\x30\x97\x41\x4a\xe1\x4a\xa6\x24\x0a\x88\x58\x6e\xe1\xa6\x9e\xbb\xa3\xd9\x64\xbc\x72\x67\x93\xc5\x70\x3c\xf6\x26\xbe\x6f\x74\x6a\x5f\x61\x9a\x88\xcd\x92\x65\xfd\xb5\x57\xfb\xab\xe1\xec\x65\xf1\xb4\xf4\xdc\x8f\xcf\x0b\xf9\xb4\x14\x9b\x64\x9d\x51\x6b\xaf\xf5\xe6\xd9\x37\xd3\x30\x14\xa3\x28\x30\x50\x89\x14\x16\x6e\x65\x29\x54\x0f\x5e\xa7\x49\x7d\x77\x6b\xc3\xb7\x61\x00\x00\x64\xa4\x20\x96\x59\x48\xec\x51\xd4\x03\x2c\x55\x6c\x9d\x72\x3b\xed\xe5\xe6\xc4\xd8\xd8\x14\xd7\xe7\x8d\x9d\xf7\x44\xc5\x21\x63\x85\xeb\x8c\x6c\xb8\xfa\x5d\xfa\xdc\x9a\xeb\x66\x39\x53\x8e\x4c\x16\x06\x81\x86\x69\xdb\x3d\x4a\x66\x59\xbd\x61\x56\x36\x0e\x43\xfd\xd6\x00\x42\x77\x0a\xca\x22\xe7\x00\x09\x7d\xe8\xea\x9d\x42\x49\xc6\x0d\x39\xeb\xd6\xe1\xfe\xbf\xe0\x1f\xac\x26\xde\x1e\xfc\xf5\xee\x6b\x8c\x25\xaa\xd8\x3e\x40\x37\x67\x30\x80\x1c\x45\x12\x58\xe6\x48\x96\x59\x08\x42\x2a\xd0\xac\xc0\x14\x11\x93\x08\x08\x94\x84\x13\x2f\x53\x3b\xec\x74\x60\x54\x53\x50\x2a\x3a\xc9\xa2\xf9\x5f\x85\xc2\x94\x58\x2f\x4a\xff\x22\x9d\x2e\x0b\xbf\x95\x58\xb6\x71\x0c\xf1\x58\xe4\x54\xdd\xdc\x1e\x55\xc8\xe1\x7e\xa4\xc3\x8a\xe8\x7b\x0f\xb2\x33\x7e\x02\x00\x00\xff\xff\xb7\x10\xb2\xbb\xcf\x02\x00\x00" func lockedtokensStakerWithdraw_rewarded_tokens_lockedCdcBytes() ([]byte, error) { return bindataRead( @@ -4330,11 +4417,11 @@ func lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa, 0xd2, 0xe9, 0xc3, 0xfb, 0x3c, 0xbe, 0x78, 0xa8, 0xac, 0x78, 0x83, 0xe, 0x51, 0x53, 0x4a, 0xe9, 0xf0, 0x25, 0xc5, 0x1f, 0x1a, 0xf7, 0x1e, 0xb1, 0xe3, 0xc8, 0xa9, 0x39, 0x55, 0x8a, 0x82}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0x3, 0x18, 0x3c, 0x52, 0xe9, 0x7d, 0xec, 0x4, 0x64, 0x8e, 0xea, 0xeb, 0x48, 0xae, 0xd2, 0x9d, 0xa2, 0xc4, 0x8d, 0x1, 0x71, 0x46, 0x5f, 0xa0, 0x74, 0xbe, 0x23, 0x71, 0x26, 0xd8, 0x66}} return a, nil } -var _lockedtokensStakerWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x51\x4d\x6b\xc2\x40\x10\xbd\xe7\x57\x0c\x1e\x24\xb9\x84\x1e\x4a\x0f\x52\x2b\x56\xed\x07\x8a\x8a\xd1\xd2\x1e\xb7\x9b\x89\x09\x89\x3b\x61\x32\xc1\x94\xe2\x7f\x2f\xc9\x46\x0d\x05\xf7\x32\xb0\xef\xcd\x7b\xf3\x66\x92\x43\x4e\x2c\xb0\x20\x9d\x62\xb8\xa5\x14\x4d\x01\x11\xd3\x01\xee\xaa\xc5\x6a\x32\x9f\x4d\xb7\xab\xf9\x6c\x39\x9e\x4e\x37\xb3\x20\x70\x5a\x76\x20\x2a\x4d\xcc\x7e\xcd\x54\xfd\x9c\xd9\xc1\x76\x3c\x7f\x5f\xbe\xae\x37\xab\xcf\xaf\x33\xdd\x11\x56\xa6\x50\x5a\x12\x32\xae\x3a\x50\x69\x64\x00\xbb\x97\xa4\x7a\xb8\xf7\xe0\xd7\x71\x00\x00\x32\x14\x88\x29\x0b\x91\x37\x18\x0d\xa0\xdf\x9d\xc4\x6f\xca\x5b\x83\x5a\x76\xce\x98\x2b\x46\x57\x69\x6d\xd5\x54\x29\xb1\xfb\x4c\xcc\x74\xfc\x50\x59\x89\x1e\xf4\xc7\x16\xab\x1d\xa0\x7d\x05\x66\x91\x7f\x71\x81\x21\xb4\xfd\x7e\x21\xc4\x6a\x8f\xfe\x77\xa3\xf0\x78\xd3\xfd\xc9\xad\x63\x0e\xe0\x16\x1e\x58\x9d\xb5\x92\xd8\xbb\xb8\xd6\x6f\x34\x82\x5c\x99\x44\xbb\xbd\x09\x95\x59\x08\x86\x04\xac\x19\x30\x46\xc8\x68\x34\x82\x10\x74\xb4\x7a\x56\xe1\x64\x13\x63\x85\xba\x14\xec\x84\xa9\x37\x56\x88\x4a\x91\xed\x01\x86\xff\xe2\xb5\x61\x82\x86\xe2\x7a\xce\x75\x0b\xd7\x26\xff\x98\x48\x1c\xb2\x3a\xee\x4c\xf3\xdb\x46\xba\x1c\xc9\xd6\xf3\x20\x27\xe7\x2f\x00\x00\xff\xff\x74\xae\xc5\x6c\x27\x02\x00\x00" +var _lockedtokensStakerWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xcb\x6a\xf3\x30\x10\x85\xf7\x7e\x8a\xc1\x8b\x1f\x1b\x7e\x4c\x17\xa5\x8b\xd0\x34\xa4\xb9\xb4\x25\x21\x0e\x71\xd2\xcb\x72\x62\x8f\x63\x63\x47\x32\x63\x99\xb8\x94\xbc\x7b\xb1\xe4\x5c\x4b\x97\xd5\x46\x20\x9d\x39\xf3\xe9\x68\xd2\x6d\x21\x59\xc1\x54\x86\x19\x45\x4b\x99\x91\x28\x21\x66\xb9\x85\x9b\x7a\xea\x0f\x26\xa3\xe1\xd2\x9f\x8c\x66\xfd\xe1\x70\x31\x0a\x02\xab\x55\x07\x0a\xb3\x54\x6c\xe6\x2c\xeb\xcf\x83\x3a\x58\xf6\x27\x2f\xb3\xa7\xf9\xc2\x7f\xff\xb8\x92\x8f\x2b\xb1\x49\xd7\x39\x69\x7b\xa3\xb7\x2f\xce\x6c\xcb\x52\x8c\xa2\xc4\x50\xa5\x52\x38\xb8\x95\x95\x50\x1d\x58\x8d\xd3\xfa\xee\xd6\x85\x2f\xcb\x02\x00\xc8\x49\x41\x22\xf3\x88\x78\x41\x71\x07\xb0\x52\x89\x73\xce\xed\xe9\xcd\x2f\x88\xb1\xb1\x29\xff\x5f\x36\xf6\xde\x52\x95\x44\x8c\x3b\x5c\xe7\xe4\xc2\xbf\x9f\xa5\xcf\xda\xdc\x34\x2b\x98\x0a\x64\x72\x30\x0c\x0d\x8c\x6e\xf7\x28\x99\xe5\xee\x15\xf3\xaa\x71\xe8\x9b\xbb\x06\x10\xda\x55\x52\x1e\x7b\x47\x48\xe8\x42\x5b\xef\x95\x4a\x32\x6e\xc8\x5b\x6b\x87\xfb\xbf\x82\x7f\x70\x9a\x78\x3b\xf0\xdb\x7d\x60\x30\xe6\xa8\x12\xf7\x08\xdd\xac\x5e\x0f\x0a\x14\x69\xe8\xd8\x03\x59\xe5\x11\x08\xa9\xc0\xb0\x02\x53\x4c\x4c\x22\x24\x50\x12\xce\xbc\x6c\xe3\xb0\x37\x81\x51\x4d\x61\xa5\xe8\x2c\x8b\xe6\xbf\x4a\x85\x19\xb1\x19\x94\xee\x55\x3a\x6d\x16\x81\x96\x38\xae\x75\x0a\xf1\x54\xe4\xed\xda\x77\xaf\x84\x3e\x6d\x9f\x74\x1c\x11\xb3\x1f\x40\xf6\xd6\x77\x00\x00\x00\xff\xff\x98\x24\x02\x95\xcf\x02\x00\x00" func lockedtokensStakerWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4350,11 +4437,11 @@ func lockedtokensStakerWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0xee, 0x22, 0x35, 0xdd, 0x6d, 0x55, 0x13, 0x2e, 0xb, 0x5b, 0x73, 0x15, 0x8b, 0xa6, 0xfa, 0xc5, 0x79, 0xf8, 0xbd, 0x1e, 0x6b, 0x8c, 0x3b, 0x89, 0xb0, 0x1a, 0x9a, 0xb7, 0xab, 0xcb, 0x74}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x18, 0x8e, 0x21, 0xf0, 0xf8, 0xe9, 0x4a, 0xd9, 0x3, 0xbc, 0x56, 0xef, 0x32, 0x22, 0xe7, 0xbc, 0x2c, 0x9e, 0x5c, 0x9b, 0x2b, 0x34, 0x4a, 0x58, 0xd8, 0x46, 0x50, 0x92, 0xc4, 0x4b, 0x8f, 0x3}} return a, nil } -var _lockedtokensUserDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\x4d\xab\xdb\x30\x10\xbc\xfb\x57\x2c\x3e\x04\xfb\x50\xa5\x87\xd2\x83\x49\x1b\xd2\x7c\x50\x48\x68\x4a\x92\xa6\x67\x45\x5e\xc7\x26\x8a\x64\xe4\x75\x1d\x28\xf9\xef\x0f\x49\xb6\x89\x1f\x18\x9e\x2f\xc2\xbb\xb3\xb3\x33\x23\x15\xf7\x52\x1b\x82\x4d\xad\xae\xc5\x45\xe2\x49\xdf\x50\x41\x66\xf4\x1d\xc2\x41\x2d\x0c\x3a\xa4\xd4\xcd\x00\xd5\xfd\xf7\x88\x9d\x16\x37\x4c\x5d\xad\xf2\xa0\xcf\x8f\xdd\x7e\xb9\x5d\xaf\x4e\xfb\xed\xfa\xd7\x62\xb5\x3a\xac\x8f\xc7\x20\x20\xc3\x55\xc5\x05\x15\x5a\x45\xfc\xae\x6b\x45\x09\xfc\xd9\x14\x8f\xaf\x5f\x62\xf8\x1f\x04\x00\x00\x12\x09\x72\x2d\x53\x34\x07\xcc\x12\x98\xbc\x52\x33\x77\xfc\x74\xdd\x1e\xfc\x8f\xd7\x92\x3c\xb6\x17\xc6\xce\xb6\xe8\x09\x4b\x83\x25\x37\x18\x71\x21\x28\x01\x5e\x53\x1e\xfd\xd0\xc6\xe8\xe6\xcc\x65\x8d\x31\x4c\x16\x42\x58\x25\x56\x01\xb4\x5f\x85\x32\x63\xbd\x0a\xf8\x06\x76\x98\x55\xa4\x0d\xbf\x22\xbb\xb8\xf1\xd9\xa8\xb4\xef\x91\x8d\x20\x81\xb1\xfe\xd1\xf3\xfc\xe6\x94\xc7\xfd\x4a\xfb\xcd\xe7\x50\x72\x55\x88\x28\x5c\xea\x5a\xa6\xa0\x34\x81\x5f\x06\x1c\x0c\x66\x68\x50\x09\x04\xd2\xf0\xc2\x16\xc6\xc1\x50\x77\x17\xc8\x88\x6c\x97\xc0\xe0\xa2\xd9\xdf\x82\xf2\xd4\xf0\x86\x5f\xa4\x0d\xe4\x5d\x8c\x9d\x9d\x69\x4b\x34\xcd\xba\xbe\x6b\x7f\xd8\x82\x1d\x03\x72\xef\xc8\x49\xb4\x8e\x42\x3f\xfd\xf4\x16\xf0\x81\xa2\x26\x1c\xbd\x08\x96\x62\xa9\xab\x82\x5a\x41\xb3\x4f\x03\xbf\xac\x69\x6d\xf4\x4f\xcb\x9f\x71\xb7\xe3\x19\xbc\x05\x00\x00\xff\xff\x28\xf7\xc5\x4b\xfb\x02\x00\x00" +var _lockedtokensUserDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x52\xcd\x6e\xf2\x30\x10\xbc\xe7\x29\x56\x39\xa0\xe4\xf0\x99\xef\x50\xf5\x80\x68\x11\xe5\x47\x95\x40\xa5\x02\x4a\xcf\xc6\xd9\x90\x08\x63\x47\xce\xa6\x41\xaa\x78\xf7\xca\xce\x8f\xc8\x21\x52\xeb\x8b\x15\xef\xcc\xec\xcc\x66\xd3\x4b\xa6\x0d\xc1\xb2\x50\xa7\xf4\x28\x71\xaf\xcf\xa8\x20\x36\xfa\x02\x7e\xe7\xcd\xf7\x1a\xa4\xd4\x65\x07\xd5\x7c\xb7\x88\xb5\x16\x67\x8c\xdc\x5b\x5e\x81\xfe\x5f\xd7\x9b\xd9\x6a\x31\xdf\x6f\x56\x8b\xb7\xe9\x7c\xbe\x5d\xec\x76\x9e\x47\x86\xab\x9c\x0b\x4a\xb5\x0a\xf8\x45\x17\x8a\x46\xf0\xb1\x4c\xaf\x8f\x0f\x21\x7c\x7b\x1e\x00\x80\x44\x82\x44\xcb\x08\xcd\x16\xe3\x11\x0c\xee\xa5\x99\xbb\x5e\x5d\xb5\x05\x7f\xf1\x42\x92\xc3\xf2\x82\x92\xa0\x13\x81\x7d\xa6\x94\x44\x86\x97\xfc\x28\x31\x84\x41\xeb\x9c\x1d\x2c\xab\xea\x98\x19\xcc\xb8\xc1\x80\x0b\x41\xb5\xc8\x8b\x36\x46\x97\x07\x2e\x0b\xcb\x9a\x0a\x61\xad\x5a\x8b\x50\x9f\x1c\x65\xcc\x5a\x9b\xf0\x04\x96\xcc\x72\xd2\x86\x9f\x90\x1d\x1d\x7d\xdc\xeb\xfd\x39\xb0\x33\x1a\x41\x5f\x7d\x57\xe9\xbc\x73\x4a\xc2\xb6\xa5\x3d\x93\x09\x64\x5c\xa5\x22\xf0\x67\xba\x90\x11\x28\x4d\x50\x35\x03\x0e\x06\x63\x34\xa8\x04\x02\x69\xb8\x53\xf3\x43\xaf\xeb\xbb\x99\x58\x8f\xed\x3f\x8f\xb1\x89\x33\xac\x85\x86\x71\x53\x77\xe5\x5f\x47\xb0\x34\x20\xb7\x68\xce\xa2\x4d\xe4\x57\xec\x5b\x15\x01\xaf\x28\x0a\xc2\xde\x1f\xc1\x22\xcc\x74\x9e\x52\x6d\x68\xfc\xaf\x93\x97\x95\x75\x8c\x76\xf7\xaa\x3b\x6c\x7a\xdc\xbc\x9f\x00\x00\x00\xff\xff\x17\xfc\xa1\x8a\x1c\x03\x00\x00" func lockedtokensUserDeposit_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4370,7 +4457,7 @@ func lockedtokensUserDeposit_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/deposit_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc4, 0x14, 0xd8, 0x6a, 0x6e, 0xe3, 0x3a, 0x83, 0x72, 0x23, 0xb6, 0x93, 0xe9, 0xe7, 0x11, 0xb6, 0xc9, 0x10, 0x2c, 0xc5, 0x3e, 0xce, 0x11, 0x92, 0x6b, 0xf4, 0xdc, 0xbc, 0xc5, 0x47, 0xce, 0x58}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0x3, 0x27, 0xf7, 0x27, 0x58, 0x6a, 0x48, 0x2b, 0xc6, 0x60, 0x59, 0xea, 0x48, 0x47, 0xf8, 0xc6, 0x8f, 0xa, 0xb6, 0xad, 0xf9, 0x4a, 0x75, 0x3, 0x49, 0x21, 0xb1, 0xad, 0x65, 0xfb, 0x1d}} return a, nil } @@ -4434,7 +4521,7 @@ func lockedtokensUserGet_multiple_unlock_limitsCdc() (*asset, error) { return a, nil } -var _lockedtokensUserGet_total_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\xcd\x6e\xdb\x3c\x10\xbc\xeb\x29\xf6\xcb\xe1\xab\x8c\x1a\x72\x0e\x45\x0f\x46\x1d\xc0\xad\x92\xd6\x88\x11\x07\x89\xdb\x9e\x29\x91\xb2\x89\xd0\xa4\x40\x52\x49\x8a\xc0\xef\x5e\x48\x14\x29\x51\x96\x9c\xbf\xea\xe0\x1f\x72\x76\x67\xb8\xb3\x5c\xd1\x5d\x2e\xa4\x86\x8b\x82\x6f\x68\xc2\xc8\x5a\xdc\x11\x0e\x99\x14\x3b\x38\xf1\xd6\x4e\x02\x8b\x64\xe2\xc1\x43\xd9\xff\x1e\x62\x11\xaf\x51\xc2\xc8\xad\x46\x77\x94\x6f\x5a\x50\x7f\xc3\xc5\x2c\x45\x7a\x47\x70\x95\x47\x19\xf4\xe9\xe3\x72\xf5\xed\xf2\x3c\x5e\xaf\x2e\xcf\xaf\xe6\x71\x7c\x73\x7e\x7b\x1b\x04\x93\x09\xac\xb7\x54\x81\x4a\x25\xcd\x35\x6c\x88\x56\xa0\xb7\x04\xd6\xab\xf5\x7c\x09\xbc\xd8\x25\x44\x82\xc8\xe0\x62\xb9\xfa\x0d\x88\x03\x4a\x53\x51\x70\x0d\xe2\x81\xab\x31\xa0\x54\x0a\xa5\xa0\xe0\xac\xa2\x1b\x83\xfd\x46\x1c\x83\x32\x92\xa2\x8a\x64\x8e\xb1\x82\x22\x2f\x73\x2b\x52\xe7\x55\xd3\x6a\x4b\x1b\x91\x94\x03\x17\x72\x87\x98\xe5\x38\xb6\x67\x93\x1f\xc5\x60\xc2\xc8\x06\xe9\x03\x98\xda\x22\x49\x70\x3f\x8d\xbf\xd7\x4f\xd3\xc1\xb4\x68\x82\x00\xa5\x29\x51\x2a\x44\x8c\x8d\x20\x2b\x38\xec\x10\xe5\x21\xc2\x58\x12\xa5\xa6\x65\x15\xca\x1f\xa3\x29\xfc\xbc\xa0\x8f\x9f\x3f\xc1\x53\x10\x00\x00\xdc\x23\x09\xaa\xd8\xc1\x0c\x4e\xa3\x53\xb3\xc4\x88\x76\x0c\xb3\xd2\x97\xb9\xf9\x63\x93\x8d\x0c\x8c\x66\x15\xf2\x1e\x15\x4c\xdf\x90\x0c\x66\x36\x28\x4a\x51\x8e\x12\xca\xa8\xa6\x44\x45\x89\x90\x52\x3c\x7c\xf9\xdf\x35\x57\xf4\xab\x8c\x38\x0b\x27\x79\x91\x30\x9a\x4e\x32\xbb\xf1\x15\x31\xc4\x53\x32\x82\xa7\x2a\x7f\xf9\x18\x65\xe5\xe7\x47\x47\x14\x25\x06\x57\x81\xf6\x46\xcb\x64\x02\xdf\x89\x36\x85\x82\x7a\xdf\xf4\x5e\xd9\x51\xb6\x49\xac\xc0\x0f\x0a\xb8\xc0\xc4\x96\x18\x72\x21\x98\x72\x47\x17\xb9\xa6\x82\x23\x76\x25\x70\xd5\xdb\x44\x7a\xa7\x73\xda\xfa\x8f\xf9\x74\x78\x33\xa2\x26\xd3\x75\x75\xe4\xfd\x59\xe8\xb2\x94\xcf\x0b\x42\xae\x91\xde\xba\x18\xdf\x00\xde\xd1\xd9\xaf\xbf\xa9\xa9\x8d\x59\xf0\x4c\xc0\x6c\x88\xbc\xdc\x0d\x2b\x58\x3c\xf5\x29\x22\x8a\x47\xbd\x06\xd9\xa4\x91\x16\x1a\x31\x33\x00\x16\xfc\x86\xa4\x42\xe2\x70\xf4\x2e\xbb\xea\x46\x17\xf2\x19\xcf\x62\x8b\xfb\x17\x96\xb9\x64\xfd\xae\xb5\xfb\xb7\x0e\x73\x11\x8d\x55\xff\x79\x5e\x61\x5f\x5f\xaf\x6c\xdf\x29\x17\x31\x6c\x57\xdc\x86\xf8\x1a\xad\x81\x6d\xde\xc8\x2c\x8e\x3d\x60\x43\xd3\x45\x53\xdc\xea\xbb\x3e\xdb\x3d\x85\x43\xde\xf7\xb9\xbf\x25\xe0\x1b\x0d\xa6\xa2\xe0\x5c\xfa\x73\x60\xb0\x79\xb9\xd4\x03\xa9\x24\x7c\x8d\xd1\xed\x37\x53\x54\x7d\xfd\x10\x0c\x13\xd9\x31\xd6\x83\x1d\x10\x3e\x7b\x1f\x59\xbf\xc4\xa3\x27\x68\x3c\x37\x2f\xac\xbe\xe2\xb4\xc7\x5e\xd7\x83\x3e\xce\x68\x43\xb4\x47\x56\xcf\xd7\xb0\x96\xdb\x61\xb3\xd7\x50\x64\x80\x18\xab\x96\x0e\x87\x64\x73\x49\x7d\x71\x2e\x61\x6b\x26\x2d\x62\x98\x0d\x0a\xab\x46\x4c\x1c\xb6\x67\xfd\x3b\x66\xd3\x22\x1e\x79\x69\x5e\x39\x95\x5a\xbd\xf9\x7c\x51\x06\x46\xd1\x4b\x2b\xd3\xba\x68\x47\xca\xd3\x5c\xe9\xc3\x1a\xbd\xb4\xc4\x2e\xc7\x40\xad\xdf\x3c\x61\xfc\xca\x8f\x07\x66\x47\xd7\x93\x37\x8d\x8d\xd6\xb3\x0f\xfc\x5f\xb5\x61\x92\xe8\x42\xf2\x32\x67\xb0\x0f\xfe\x06\x00\x00\xff\xff\x6a\xcd\x5f\x35\x02\x0b\x00\x00" +var _lockedtokensUserGet_total_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\xcb\x6e\xdb\x30\x10\xbc\xeb\x2b\x16\x39\xb4\x12\x6a\xc8\x39\x14\x3d\x18\x75\x00\xb7\x4a\x5a\x23\x46\x1c\x24\x6e\x7b\xa6\x44\xca\x26\x42\x93\x02\x49\x25\x29\x02\xff\x7b\x21\x51\xa4\x45\x59\x72\x5e\xd5\xc1\x0f\x72\x76\x67\xb8\xb3\x5c\xd1\x6d\x21\xa4\x86\x8b\x92\xaf\x69\xca\xc8\x4a\xdc\x11\x0e\xb9\x14\x5b\x38\xf1\xd6\x4e\x02\x8b\x64\xe2\xc1\x43\xd9\xff\x1e\x62\x9e\xac\x50\xca\xc8\xad\x46\x77\x94\xaf\x5b\x50\x7f\xc3\xc5\x2c\x44\x76\x47\x70\x9d\x47\x19\xf4\xe9\xe3\x62\xf9\xfd\xf2\x3c\x59\x2d\x2f\xcf\xaf\x66\x49\x72\x73\x7e\x7b\x1b\x04\xe3\x31\xac\x36\x54\x81\xca\x24\x2d\x34\xac\x89\x56\xa0\x37\x04\x56\xcb\xd5\x6c\x01\xbc\xdc\xa6\x44\x82\xc8\xe1\x62\xb1\xfc\x03\x88\x03\xca\x32\x51\x72\x0d\xe2\x81\xab\x11\xa0\x4c\x0a\xa5\xa0\xe4\xac\xa6\x1b\x81\xfd\x46\x1c\x83\x32\x92\xe2\x9a\x64\x86\xb1\x82\xb2\xa8\x72\x2b\xd2\xe4\x55\x93\x7a\x4b\x1b\x91\x94\x03\x17\x72\x8b\x98\xe5\x38\xb6\x67\x93\x1f\xc5\x60\xc2\xc8\x1a\xe9\x03\x98\xda\x20\x49\x70\x3f\x8d\xbf\xd7\x4f\xd3\xc1\xb4\x68\x82\x00\x65\x19\x51\x2a\x44\x8c\x45\x90\x97\x1c\xb6\x88\xf2\x10\x61\x2c\x89\x52\x93\xaa\x0a\xd5\x8f\x68\x02\xbf\x2e\xe8\xe3\x97\xcf\xf0\x14\x04\x00\x00\xf7\x48\x82\x2a\xb7\x30\x85\xd3\xf8\xd4\x2c\x31\xa2\x1d\xc3\xb4\xf2\x65\x66\xfe\xd8\x64\x91\x81\xd1\xbc\x46\xde\xa3\x92\xe9\x1b\x92\xc3\xd4\x06\xc5\x19\x2a\x50\x4a\x19\xd5\x94\xa8\x38\x15\x52\x8a\x87\xaf\x1f\x5c\x73\xc5\xbf\xab\x88\xb3\x70\x5c\x94\x29\xa3\xd9\x38\xb7\x1b\xdf\x10\x43\x3c\x23\x11\x3c\xd5\xf9\xab\xc7\x28\xab\x3e\x3f\x39\xa2\x38\x35\xb8\x1a\xb4\x33\x5a\xc6\x63\xf8\x41\xb4\x29\x14\x34\xfb\xa6\xf7\xaa\x8e\xb2\x4d\x62\x05\x7e\x54\xc0\x05\x26\xb6\xc4\x50\x08\xc1\x94\x3b\xba\x28\x34\x15\x1c\xb1\x2b\x81\xeb\xde\x26\xd2\x3b\x9d\xd3\xd6\x7f\xcc\xa7\xc3\x9b\x11\xef\x33\x5d\xd7\x47\xde\x9d\x85\x2e\x4b\xf5\xbc\x20\xe4\x1a\xe9\x8d\x8b\xf1\x0d\xe0\x1d\x9d\xfd\xfa\xf7\x35\xb5\x31\x73\x9e\x0b\x98\x0e\x91\x57\xbb\x61\x0d\x4b\x26\x3e\x45\x4c\x71\xd4\x6b\x90\x4d\x1a\x6b\xa1\x11\x33\x03\x60\xce\x6f\x48\x26\x24\x0e\xa3\x77\xd9\xd5\x34\xba\x90\xcf\x78\x96\x58\xdc\xff\xb0\xcc\x25\xeb\x77\xad\xdd\xbf\x4d\x98\x8b\x18\xb0\x0a\xfb\xf2\x7a\x55\xfb\x46\xb9\x88\x61\xb7\x92\x36\xc4\x97\x68\xfd\x6b\xf3\xc6\x66\x71\xe4\x01\xf7\x34\x5d\x34\xc5\xad\xb3\xf4\xb9\xee\x29\x1c\xb2\xbe\xcf\xfc\x0d\x01\xdf\x67\x30\x05\x05\x67\xd2\xdf\x03\x7f\xcd\xbb\xa5\x99\x47\x15\xe1\x6b\x7c\x6e\xbf\x98\xe2\xfa\xeb\xa7\x60\x98\xc8\x8e\xaf\x1e\xec\x80\xf0\xd9\xeb\xc8\xfa\x25\x1e\x3d\xc1\xde\x73\xf3\xbe\xea\x2b\x4e\x7b\xea\x75\x3d\xe8\xe3\x8c\xd7\x44\x7b\x64\xcd\x78\x0d\x1b\xb9\x1d\x36\x7b\x0b\x45\x0e\x88\xb1\x7a\xe9\x70\x46\xee\xef\xa8\x2f\xce\x25\x6c\x8d\xa4\x79\x02\xd3\x41\x61\xf5\x84\x49\xc2\xf6\xa8\x7f\xc7\x68\x9a\x27\x91\x97\xe6\x95\x43\xa9\xd5\x9b\xcf\x17\x65\x60\x12\xbd\xb4\x32\xad\x8b\x76\xa4\x3c\xfb\x2b\x7d\x58\xa3\x97\x96\xd8\xe5\x18\xa8\xf5\x9b\x27\x8c\x5f\xf9\xd1\xc0\xec\xe8\x7a\xf2\xa6\xb1\xd1\x7a\x76\x81\xff\xab\x31\x4c\x12\x5d\x4a\x5e\xe5\x0c\x76\xc1\xbf\x00\x00\x00\xff\xff\xc8\xe7\x34\xd9\x01\x0b\x00\x00" func lockedtokensUserGet_total_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -4450,7 +4537,7 @@ func lockedtokensUserGet_total_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_total_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa5, 0xa3, 0xaa, 0xc7, 0x30, 0xaf, 0x46, 0x51, 0x91, 0x45, 0xe, 0xb8, 0xd0, 0x82, 0x5d, 0x72, 0x4a, 0x44, 0xa9, 0xf7, 0xa8, 0x22, 0xb1, 0xb2, 0xdf, 0xe9, 0x39, 0xd3, 0xc5, 0xae, 0xc9, 0x76}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0xd3, 0x81, 0x3, 0x5, 0x4, 0xdd, 0x3c, 0xe, 0xce, 0x21, 0xa5, 0x45, 0x4b, 0xd, 0x39, 0x6e, 0x3e, 0x3f, 0xce, 0x25, 0xc9, 0x27, 0xce, 0x1e, 0x7a, 0xe9, 0xdd, 0xc5, 0x86, 0x4f, 0x8}} return a, nil } @@ -4474,7 +4561,7 @@ func lockedtokensUserGet_unlock_limitCdc() (*asset, error) { return a, nil } -var _lockedtokensUserWithdraw_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x8b\xe2\x40\x10\xc5\xef\xf9\x14\x45\x0e\x92\x1c\x36\xee\x61\xd9\x43\x70\x57\x1c\xff\x30\xa0\x8c\x83\x3a\xde\xdb\x4e\xc5\x04\xdb\xae\xd0\xa9\x4c\x84\xc1\xef\x3e\x74\xda\x04\x23\x08\xd3\x97\x26\x55\xaf\x5e\xfd\x78\xe9\xfc\x5c\x90\x61\x58\x54\xfa\x98\x1f\x14\xee\xe8\x84\x1a\x52\x43\x67\xf0\x7b\x35\xdf\x6b\x95\x8a\xea\x9e\xaa\xfd\xee\x14\x2b\x92\x27\x4c\x9a\x5a\xe9\x44\xbf\x2f\xab\xf5\x74\x39\x9f\xed\xd6\xcb\xf9\xdb\x64\x36\xdb\xcc\xb7\x5b\xcf\x63\x23\x74\x29\x24\xe7\xa4\x03\x71\xa6\x4a\x73\x0c\x1f\x8b\xfc\xf2\xf7\x4f\x08\x5f\x9e\x07\x00\xa0\x90\x21\x23\x95\xa0\xd9\x60\x1a\xc3\xe0\xde\x3a\x6a\xae\xd7\xa6\xdb\x89\x3f\x45\xa5\xd8\x69\x3b\xb0\x68\x6f\x8b\xce\xb0\x30\x58\x08\x83\x81\x90\x92\x63\x10\x15\x67\xc1\x0b\x19\x43\xf5\x5e\xa8\x0a\x43\x18\x4c\xa4\xb4\x24\x96\x00\x6e\xa7\x44\x95\x46\x1d\x05\xfc\x03\x3b\x1c\x95\x4c\x46\x1c\x31\x3a\x34\xe3\xa3\xa7\x68\xff\x03\x1b\x41\x0c\xcf\xfa\x5b\xe7\xf3\x2e\x38\x0b\xbb\x95\xf6\x8c\xc7\x50\x08\x9d\xcb\xc0\x9f\x52\xa5\x12\xd0\xc4\xe0\x96\x81\x00\x83\x29\x1a\xd4\x12\x81\x09\xee\xdc\xfc\xd0\xeb\x73\xb7\x81\x3c\xc3\x7e\x48\xa9\xa5\x1d\xde\x74\xc3\xb4\xed\x37\xed\x1f\x13\xda\x31\xe0\xe6\x99\x34\x04\x16\xd8\x77\xd3\x57\x47\x88\x17\x94\x15\xe3\x63\xce\x2d\x6f\x94\x60\x41\x65\xce\x37\x9e\xd1\xaf\xfe\x5f\x88\xea\x9c\xb3\xc4\x88\xba\x7b\x39\xee\x0e\xdb\x1d\x57\xef\x3b\x00\x00\xff\xff\xc9\xd6\xa2\x71\xda\x02\x00\x00" +var _lockedtokensUserWithdraw_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x5f\x4f\xc2\x30\x14\xc5\xdf\xf7\x29\x6e\xf6\x60\xb6\x44\x8b\x0f\xc6\x07\x82\x12\xe4\x4f\x4c\x20\x62\x00\xf1\xb9\x74\x77\x6c\xa1\xb4\x4b\x77\xe7\x48\x0c\xdf\xdd\x74\xff\x64\x1a\x89\x3e\xd8\x97\x66\xed\x3d\xe7\x9e\xdf\x6e\xe3\x7d\xa2\x0d\xc1\x24\x53\xdb\x78\x23\x71\xa5\x77\xa8\x20\x34\x7a\x0f\x6e\xeb\xcc\x75\xea\x4a\xa9\xf3\x56\x55\xfd\xdd\x54\xcc\xb4\xd8\x61\x50\x9c\xa5\x65\xd1\xf5\x61\x36\x1f\x4e\xc7\xa3\xd5\x7c\x3a\x7e\x1a\x8c\x46\x8b\xf1\x72\xe9\x38\x64\xb8\x4a\xb9\xa0\x58\x2b\x8f\xef\x75\xa6\xa8\x0b\x2f\x93\xf8\x70\x7b\xe3\xc3\xbb\xe3\x00\x00\x48\x24\x88\xb4\x0c\xd0\x2c\x30\xec\x02\xcf\x28\xf2\x4e\xed\x59\xb1\xcd\x13\x34\xdc\xda\xa4\x97\x6d\x10\xf6\x1a\x53\x14\x18\x9e\xf3\x8d\x44\x1f\x2e\xbe\x4b\x1f\x0b\xf3\xa6\xd7\x1b\xcf\x24\x7d\xb6\x3a\x6b\xd6\x80\xb3\xb5\x55\x95\x81\x13\x83\x09\x37\xe8\x71\x21\xa8\x32\x79\xd0\xc6\xe8\x7c\xcd\x65\x66\x55\x03\x21\x2c\xa9\x25\x84\x6a\xa5\x28\x43\xd6\x50\xc2\x1d\x58\x31\x4b\x49\x1b\xbe\x45\xb6\x29\xe4\xbd\xff\x42\xbf\xf7\xec\x84\xba\xf0\xd3\xfd\xb2\x8c\xf1\xcc\x29\xf2\x9b\xc4\x76\xf5\xfb\x90\x70\x15\x0b\xcf\x1d\xea\x4c\x06\xa0\x34\x41\x99\x15\x38\x18\x0c\xd1\xa0\x12\x08\xa4\xe1\xc4\xcd\xf5\x9d\x36\x76\xfd\xc3\xcf\x51\xff\x65\x0a\x35\x4e\xa7\x32\xea\x84\xf5\x7d\x71\xfd\x6b\x04\x2b\x03\x2a\x9e\x79\x11\xd1\x12\xb9\xa5\xfa\x58\x22\xe0\x01\x45\x46\xf8\x75\x8e\x35\x10\x0b\x30\xd1\x69\x4c\x55\x9e\xde\x55\x7b\xca\x2c\xaf\x30\x9a\x97\x5f\xee\x7e\xdd\xe3\xe8\x7c\x04\x00\x00\xff\xff\xf2\x89\xe1\xd6\x9a\x03\x00\x00" func lockedtokensUserWithdraw_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4490,7 +4577,7 @@ func lockedtokensUserWithdraw_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/withdraw_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdb, 0x6c, 0x0, 0x6c, 0x87, 0xe9, 0x48, 0xad, 0x1b, 0x48, 0x31, 0xc9, 0x53, 0x2, 0x39, 0xbc, 0x1d, 0x2f, 0x68, 0xbe, 0xff, 0x2, 0xb, 0xd3, 0x2b, 0x20, 0x9, 0x7a, 0x5b, 0x33, 0xf7, 0xb5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x0, 0x9, 0xaa, 0x2e, 0xe9, 0xe0, 0xa2, 0x7e, 0xa1, 0xd7, 0x2e, 0x12, 0xde, 0x32, 0x3f, 0xfe, 0x1b, 0xaa, 0xd7, 0xe6, 0xd6, 0x32, 0x74, 0x1b, 0xb5, 0xd8, 0x31, 0xea, 0x85, 0x4c, 0xc8}} return a, nil } @@ -5054,6 +5141,66 @@ func quorumcertificateSubmit_voteCdc() (*asset, error) { return a, nil } +var _randombeaconhistoryScriptsGet_latest_source_of_randomnessCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8d\xb1\xae\x83\x30\x0c\x45\xf7\x7c\xc5\x15\x13\x19\x1e\xd2\x5b\x19\xe9\xc2\x56\xa9\xfd\x82\x28\x35\x10\x15\xec\xca\x71\x86\xaa\xea\xbf\x57\x84\x15\x8f\xf7\x9c\x23\xa7\xed\x25\x6a\x68\x6e\x81\x1f\xb2\x0d\x14\xa2\xf0\x98\xb2\x89\xbe\x1b\xe7\x42\x8c\x94\x73\x1b\xd6\xd5\x63\x2a\x8c\x2d\x24\x6e\x7d\x8f\x13\xbb\x3b\xb6\xbb\x14\x8d\x84\x8f\x03\x00\x25\x2b\xca\xa7\x76\xae\xde\x75\x3a\x18\xef\x5f\x6a\xb2\x5f\xb0\x61\x95\xf8\x1c\x29\xcd\x8b\xf5\x98\xc9\x2e\x45\x95\xf8\x98\x5b\xdf\x2d\x95\xe0\x0f\xff\xb5\xf1\xee\xeb\x7e\x01\x00\x00\xff\xff\xf0\x98\xc8\x29\xc8\x00\x00\x00" + +func randombeaconhistoryScriptsGet_latest_source_of_randomnessCdcBytes() ([]byte, error) { + return bindataRead( + _randombeaconhistoryScriptsGet_latest_source_of_randomnessCdc, + "randomBeaconHistory/scripts/get_latest_source_of_randomness.cdc", + ) +} + +func randombeaconhistoryScriptsGet_latest_source_of_randomnessCdc() (*asset, error) { + bytes, err := randombeaconhistoryScriptsGet_latest_source_of_randomnessCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "randomBeaconHistory/scripts/get_latest_source_of_randomness.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0xa4, 0x75, 0x4f, 0xef, 0x7f, 0xaa, 0x32, 0x42, 0x97, 0x99, 0x27, 0x7f, 0xe5, 0x88, 0xed, 0x26, 0x42, 0xef, 0xc0, 0xfc, 0x6, 0xb9, 0xfe, 0x81, 0xc, 0x3, 0x7e, 0x1a, 0xdd, 0xca, 0x78}} + return a, nil +} + +var _randombeaconhistoryScriptsGet_source_of_randomnessCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xb1\x4e\x03\x31\x0c\x86\xf7\x3c\xc5\xaf\x4e\xbd\xa5\xb7\x20\x86\x8e\x9d\xca\x84\x74\x88\x07\x08\xa9\xc3\x45\x5c\x6c\xb0\x1d\x24\x84\x78\x77\xd4\x9c\x84\x44\x75\x63\xf2\xdb\xdf\xe7\xbf\xd4\x77\x51\xc7\x6e\x8a\x7c\x91\x7a\xa2\x98\x84\xcf\xc5\x5c\xf4\x6b\x17\xc2\x38\x8e\x98\xc8\xb5\xd0\x27\x19\x7c\x26\x98\x34\x4d\x04\xc9\xd0\xbe\xc1\x64\x86\x2c\xda\x43\xa5\x8f\x46\xe6\x74\xc1\xcb\x22\xe9\x0d\x33\x95\xd7\xd9\x91\x55\x6a\xcf\x37\x24\x48\xc2\xae\x31\xf9\xe1\x2a\x0b\x31\x25\x32\xdb\xc7\x65\x19\x90\x1b\xa3\xc6\xc2\xfb\xe8\xa7\x2b\xee\xdc\x69\x47\x3c\x3f\xb0\xdf\xdf\x0d\xc7\x2d\xdc\x61\xfd\x7b\x5a\xaf\xfc\x0e\x00\xa0\xe4\x4d\x79\x73\x7a\x6d\xf3\x98\xa7\xbf\x2e\xb7\xb2\x7f\xcf\x21\xfc\x84\xdf\x00\x00\x00\xff\xff\x5d\x21\x51\x1c\x31\x01\x00\x00" + +func randombeaconhistoryScriptsGet_source_of_randomnessCdcBytes() ([]byte, error) { + return bindataRead( + _randombeaconhistoryScriptsGet_source_of_randomnessCdc, + "randomBeaconHistory/scripts/get_source_of_randomness.cdc", + ) +} + +func randombeaconhistoryScriptsGet_source_of_randomnessCdc() (*asset, error) { + bytes, err := randombeaconhistoryScriptsGet_source_of_randomnessCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "randomBeaconHistory/scripts/get_source_of_randomness.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0xa6, 0x99, 0x82, 0xb8, 0xdc, 0x36, 0x48, 0xb8, 0x9f, 0xd3, 0xec, 0xc3, 0x76, 0x62, 0xbd, 0xbc, 0x45, 0xc2, 0x80, 0x8d, 0xaf, 0x6f, 0x37, 0xc6, 0x4a, 0xf1, 0x85, 0x7e, 0x56, 0xab, 0x12}} + return a, nil +} + +var _randombeaconhistoryScriptsGet_source_of_randomness_pageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8e\xb1\x4e\xc3\x40\x10\x44\xfb\xfb\x8a\x51\xaa\x58\x42\x71\x83\x28\x52\x52\x41\x87\x82\xf8\x80\xe3\x32\xb6\x4f\xd8\xb7\x66\x77\x8d\x84\x10\xff\x8e\x72\xa4\x70\xe1\x74\xab\x19\xbd\x7d\x93\xa7\x59\xd4\xb1\x3b\xc5\x72\x96\xe9\x91\x31\x49\x79\xca\xe6\xa2\xdf\xbb\x10\xda\xb6\xc5\x89\xae\x99\x5f\x34\xf8\x40\x98\x2c\x9a\x08\xe9\xa0\x95\x28\x34\x43\x27\x5a\x4b\xe5\xe7\x42\x73\x9e\xf1\x3e\x4a\xfa\xc0\xc0\xdc\x0f\x8e\x4e\x65\xaa\xfd\x86\x04\x49\x8a\x6b\x4c\x7e\xb8\xc8\x42\x4c\x89\x66\xfb\x38\x8e\x0d\xba\xa5\x60\x8a\xb9\xec\xe7\xd8\xf3\x88\xb7\xe7\xe2\x0f\xf7\x77\x98\xa9\x2f\xab\xa0\x39\x6e\xbd\x3d\xfc\x67\xaf\x75\xed\x35\xbb\x50\xf8\x09\x00\xa0\xf4\x45\xcb\x26\xd8\xd3\x6f\xb0\x75\xc7\xca\x7f\x3d\x9a\xf0\x1b\xfe\x02\x00\x00\xff\xff\xf6\xbd\xa5\x21\x46\x01\x00\x00" + +func randombeaconhistoryScriptsGet_source_of_randomness_pageCdcBytes() ([]byte, error) { + return bindataRead( + _randombeaconhistoryScriptsGet_source_of_randomness_pageCdc, + "randomBeaconHistory/scripts/get_source_of_randomness_page.cdc", + ) +} + +func randombeaconhistoryScriptsGet_source_of_randomness_pageCdc() (*asset, error) { + bytes, err := randombeaconhistoryScriptsGet_source_of_randomness_pageCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "randomBeaconHistory/scripts/get_source_of_randomness_page.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x56, 0xbb, 0xca, 0xd1, 0xca, 0xd5, 0xe, 0xe7, 0x65, 0x55, 0x6f, 0xbe, 0x6a, 0xc9, 0xb8, 0xc5, 0x74, 0x73, 0x5c, 0x48, 0xf8, 0xbe, 0xf8, 0x38, 0xf2, 0xa7, 0xc4, 0x61, 0x34, 0x67, 0xc0, 0x61}} + return a, nil +} + var _stakingcollectionClose_stakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xd4\x30\x10\xbd\xe7\x2b\x46\x3d\x54\x59\xa9\x4a\x11\xdc\x56\xc0\x6a\xc9\x16\xb4\xa2\x6a\x51\xb3\x70\x9f\x38\x93\xc4\xe0\x78\x22\x7b\xd2\x16\xa1\xfe\x3b\xb2\x4d\x02\x62\xf7\xb0\x3e\x24\xf2\xcb\xcc\x7b\x6f\xe6\x45\x0f\x23\x3b\x81\x8f\x86\x9f\x2a\xc1\x1f\xda\x76\x25\x1b\x43\x4a\x34\x5b\x68\x1d\x0f\xf0\xea\xb9\x3a\x6c\x3f\xef\xef\x3e\x95\xf7\xb7\xb7\x37\xe5\x61\x7f\x7f\xb7\xdd\xed\x1e\x6e\xaa\x2a\xcb\xae\xaf\xa1\x34\xec\xc9\x03\x4f\x02\x08\x3e\x51\x00\xd7\xdf\x49\x09\x68\x0b\xd2\xd3\x82\xaa\x85\x39\x34\x1e\x7a\xed\xa1\x61\xf2\x60\x59\xc0\xd1\xc0\x8f\x14\xcb\x1d\x29\x76\x4d\x12\x0f\x77\xdd\x90\x15\x2d\x3f\x41\xb0\x36\x74\x15\x7a\xeb\x49\x40\x4b\xea\x1e\x08\x83\x0c\x4a\x2c\x46\xa5\x78\xb2\x92\x00\x95\xbc\x69\x01\x85\x36\xa8\xd0\x23\xb9\x50\x42\x3e\xa2\xd8\xa1\xb6\x59\x26\x0e\xad\xc7\x68\x2c\xb7\xdc\xd0\x7e\xb7\x86\x4a\x9c\xb6\xdd\x15\x34\x64\xa8\x43\x61\x17\xc0\xaf\x7b\x2b\x6f\x5e\x6f\x56\xf0\x2b\x03\x00\x88\x0f\x43\x32\x0f\xf8\x77\x73\x0f\xd4\xae\xe1\xf2\xe4\x52\x8b\x23\x24\x8b\x3c\xa3\xa3\x11\x1d\xe5\x7f\x06\x58\x03\x4e\xd2\xe7\x1f\xd8\x39\x7e\xfa\x86\x66\xa2\x15\x5c\x6e\xd3\xb7\x59\x3f\x1c\x4f\xa6\x2d\x4e\xe9\xc3\xbb\x79\x17\x85\x17\x76\xd8\x51\x51\x47\xb2\xb7\xe7\xfa\x7a\x9f\x87\x08\xd6\xa7\xff\x8d\xe3\xf2\x2a\xa9\x7c\x41\xe9\x57\x8b\xbd\x70\x36\x1b\x18\xd1\x6a\x95\x5f\x94\x3c\x99\x26\xc6\x9d\xac\x80\xa3\x16\x84\xe1\x88\xeb\x22\x31\xbc\xa4\xd5\xd0\x33\xa9\x49\xe8\x9c\xa9\x8b\x18\x79\xe0\xa3\x25\xca\xf4\xfe\x2f\xca\x7f\x2e\xb3\xd6\x4b\xf6\x3b\x00\x00\xff\xff\x49\xe3\xbe\x0d\x0d\x03\x00\x00" func stakingcollectionClose_stakeCdcBytes() ([]byte, error) { @@ -6199,6 +6346,7 @@ var _bindata = map[string]func() (*asset, error){ "dkg/scripts/get_node_has_submitted.cdc": dkgScriptsGet_node_has_submittedCdc, "dkg/scripts/get_node_is_claimed.cdc": dkgScriptsGet_node_is_claimedCdc, "dkg/scripts/get_node_is_registered.cdc": dkgScriptsGet_node_is_registeredCdc, + "dkg/scripts/get_submissions_count.cdc": dkgScriptsGet_submissions_countCdc, "dkg/scripts/get_thresholds.cdc": dkgScriptsGet_thresholdsCdc, "dkg/scripts/get_whiteboard_messages.cdc": dkgScriptsGet_whiteboard_messagesCdc, "dkg/send_final_submission.cdc": dkgSend_final_submissionCdc, @@ -6214,6 +6362,7 @@ var _bindata = map[string]func() (*asset, error){ "epoch/admin/update_clusters.cdc": epochAdminUpdate_clustersCdc, "epoch/admin/update_dkg_phase_views.cdc": epochAdminUpdate_dkg_phase_viewsCdc, "epoch/admin/update_epoch_config.cdc": epochAdminUpdate_epoch_configCdc, + "epoch/admin/update_epoch_timing_config.cdc": epochAdminUpdate_epoch_timing_configCdc, "epoch/admin/update_epoch_views.cdc": epochAdminUpdate_epoch_viewsCdc, "epoch/admin/update_reward.cdc": epochAdminUpdate_rewardCdc, "epoch/admin/update_staking_views.cdc": epochAdminUpdate_staking_viewsCdc, @@ -6227,8 +6376,10 @@ var _bindata = map[string]func() (*asset, error){ "epoch/scripts/get_epoch_counter.cdc": epochScriptsGet_epoch_counterCdc, "epoch/scripts/get_epoch_metadata.cdc": epochScriptsGet_epoch_metadataCdc, "epoch/scripts/get_epoch_phase.cdc": epochScriptsGet_epoch_phaseCdc, + "epoch/scripts/get_epoch_timing_config.cdc": epochScriptsGet_epoch_timing_configCdc, "epoch/scripts/get_proposed_counter.cdc": epochScriptsGet_proposed_counterCdc, "epoch/scripts/get_randomize.cdc": epochScriptsGet_randomizeCdc, + "epoch/scripts/get_target_end_time_for_epoch.cdc": epochScriptsGet_target_end_time_for_epochCdc, "flowToken/burn_tokens.cdc": flowtokenBurn_tokensCdc, "flowToken/create_forwarder.cdc": flowtokenCreate_forwarderCdc, "flowToken/mint_tokens.cdc": flowtokenMint_tokensCdc, @@ -6257,6 +6408,7 @@ var _bindata = map[string]func() (*asset, error){ "idTableStaking/admin/set_claimed.cdc": idtablestakingAdminSet_claimedCdc, "idTableStaking/admin/set_node_weight.cdc": idtablestakingAdminSet_node_weightCdc, "idTableStaking/admin/set_non_operational.cdc": idtablestakingAdminSet_non_operationalCdc, + "idTableStaking/admin/set_open_access_node_slots.cdc": idtablestakingAdminSet_open_access_node_slotsCdc, "idTableStaking/admin/set_slot_limits.cdc": idtablestakingAdminSet_slot_limitsCdc, "idTableStaking/admin/start_staking.cdc": idtablestakingAdminStart_stakingCdc, "idTableStaking/admin/transfer_admin.cdc": idtablestakingAdminTransfer_adminCdc, @@ -6339,7 +6491,6 @@ var _bindata = map[string]func() (*asset, error){ "lockedTokens/admin/custody_create_shared_accounts.cdc": lockedtokensAdminCustody_create_shared_accountsCdc, "lockedTokens/admin/custody_setup_account_creator.cdc": lockedtokensAdminCustody_setup_account_creatorCdc, "lockedTokens/admin/deposit_locked_tokens.cdc": lockedtokensAdminDeposit_locked_tokensCdc, - "lockedTokens/admin/get_unlocking_bad_accounts.cdc": lockedtokensAdminGet_unlocking_bad_accountsCdc, "lockedTokens/admin/unlock_tokens.cdc": lockedtokensAdminUnlock_tokensCdc, "lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc": lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc, "lockedTokens/delegator/delegate_new_tokens.cdc": lockedtokensDelegatorDelegate_new_tokensCdc, @@ -6400,6 +6551,9 @@ var _bindata = map[string]func() (*asset, error){ "quorumCertificate/scripts/get_voter_is_registered.cdc": quorumcertificateScriptsGet_voter_is_registeredCdc, "quorumCertificate/scripts/get_voting_completed.cdc": quorumcertificateScriptsGet_voting_completedCdc, "quorumCertificate/submit_vote.cdc": quorumcertificateSubmit_voteCdc, + "randomBeaconHistory/scripts/get_latest_source_of_randomness.cdc": randombeaconhistoryScriptsGet_latest_source_of_randomnessCdc, + "randomBeaconHistory/scripts/get_source_of_randomness.cdc": randombeaconhistoryScriptsGet_source_of_randomnessCdc, + "randomBeaconHistory/scripts/get_source_of_randomness_page.cdc": randombeaconhistoryScriptsGet_source_of_randomness_pageCdc, "stakingCollection/close_stake.cdc": stakingcollectionClose_stakeCdc, "stakingCollection/create_machine_account.cdc": stakingcollectionCreate_machine_accountCdc, "stakingCollection/create_new_tokenholder_acct.cdc": stakingcollectionCreate_new_tokenholder_acctCdc, @@ -6541,6 +6695,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "get_node_has_submitted.cdc": {dkgScriptsGet_node_has_submittedCdc, map[string]*bintree{}}, "get_node_is_claimed.cdc": {dkgScriptsGet_node_is_claimedCdc, map[string]*bintree{}}, "get_node_is_registered.cdc": {dkgScriptsGet_node_is_registeredCdc, map[string]*bintree{}}, + "get_submissions_count.cdc": {dkgScriptsGet_submissions_countCdc, map[string]*bintree{}}, "get_thresholds.cdc": {dkgScriptsGet_thresholdsCdc, map[string]*bintree{}}, "get_whiteboard_messages.cdc": {dkgScriptsGet_whiteboard_messagesCdc, map[string]*bintree{}}, }}, @@ -6560,6 +6715,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "update_clusters.cdc": {epochAdminUpdate_clustersCdc, map[string]*bintree{}}, "update_dkg_phase_views.cdc": {epochAdminUpdate_dkg_phase_viewsCdc, map[string]*bintree{}}, "update_epoch_config.cdc": {epochAdminUpdate_epoch_configCdc, map[string]*bintree{}}, + "update_epoch_timing_config.cdc": {epochAdminUpdate_epoch_timing_configCdc, map[string]*bintree{}}, "update_epoch_views.cdc": {epochAdminUpdate_epoch_viewsCdc, map[string]*bintree{}}, "update_reward.cdc": {epochAdminUpdate_rewardCdc, map[string]*bintree{}}, "update_staking_views.cdc": {epochAdminUpdate_staking_viewsCdc, map[string]*bintree{}}, @@ -6577,8 +6733,10 @@ var _bintree = &bintree{nil, map[string]*bintree{ "get_epoch_counter.cdc": {epochScriptsGet_epoch_counterCdc, map[string]*bintree{}}, "get_epoch_metadata.cdc": {epochScriptsGet_epoch_metadataCdc, map[string]*bintree{}}, "get_epoch_phase.cdc": {epochScriptsGet_epoch_phaseCdc, map[string]*bintree{}}, + "get_epoch_timing_config.cdc": {epochScriptsGet_epoch_timing_configCdc, map[string]*bintree{}}, "get_proposed_counter.cdc": {epochScriptsGet_proposed_counterCdc, map[string]*bintree{}}, "get_randomize.cdc": {epochScriptsGet_randomizeCdc, map[string]*bintree{}}, + "get_target_end_time_for_epoch.cdc": {epochScriptsGet_target_end_time_for_epochCdc, map[string]*bintree{}}, }}, }}, "flowToken": {nil, map[string]*bintree{ @@ -6615,6 +6773,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "set_claimed.cdc": {idtablestakingAdminSet_claimedCdc, map[string]*bintree{}}, "set_node_weight.cdc": {idtablestakingAdminSet_node_weightCdc, map[string]*bintree{}}, "set_non_operational.cdc": {idtablestakingAdminSet_non_operationalCdc, map[string]*bintree{}}, + "set_open_access_node_slots.cdc": {idtablestakingAdminSet_open_access_node_slotsCdc, map[string]*bintree{}}, "set_slot_limits.cdc": {idtablestakingAdminSet_slot_limitsCdc, map[string]*bintree{}}, "start_staking.cdc": {idtablestakingAdminStart_stakingCdc, map[string]*bintree{}}, "transfer_admin.cdc": {idtablestakingAdminTransfer_adminCdc, map[string]*bintree{}}, @@ -6707,7 +6866,6 @@ var _bintree = &bintree{nil, map[string]*bintree{ "custody_create_shared_accounts.cdc": {lockedtokensAdminCustody_create_shared_accountsCdc, map[string]*bintree{}}, "custody_setup_account_creator.cdc": {lockedtokensAdminCustody_setup_account_creatorCdc, map[string]*bintree{}}, "deposit_locked_tokens.cdc": {lockedtokensAdminDeposit_locked_tokensCdc, map[string]*bintree{}}, - "get_unlocking_bad_accounts.cdc": {lockedtokensAdminGet_unlocking_bad_accountsCdc, map[string]*bintree{}}, "unlock_tokens.cdc": {lockedtokensAdminUnlock_tokensCdc, map[string]*bintree{}}, "unlock_tokens_for_multiple_accounts.cdc": {lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc, map[string]*bintree{}}, }}, @@ -6788,6 +6946,13 @@ var _bintree = &bintree{nil, map[string]*bintree{ }}, "submit_vote.cdc": {quorumcertificateSubmit_voteCdc, map[string]*bintree{}}, }}, + "randomBeaconHistory": {nil, map[string]*bintree{ + "scripts": {nil, map[string]*bintree{ + "get_latest_source_of_randomness.cdc": {randombeaconhistoryScriptsGet_latest_source_of_randomnessCdc, map[string]*bintree{}}, + "get_source_of_randomness.cdc": {randombeaconhistoryScriptsGet_source_of_randomnessCdc, map[string]*bintree{}}, + "get_source_of_randomness_page.cdc": {randombeaconhistoryScriptsGet_source_of_randomness_pageCdc, map[string]*bintree{}}, + }}, + }}, "stakingCollection": {nil, map[string]*bintree{ "close_stake.cdc": {stakingcollectionClose_stakeCdc, map[string]*bintree{}}, "create_machine_account.cdc": {stakingcollectionCreate_machine_accountCdc, map[string]*bintree{}}, diff --git a/lib/go/templates/manifest.mainnet.json b/lib/go/templates/manifest.mainnet.json index 33ede1d43..316490320 100755 --- a/lib/go/templates/manifest.mainnet.json +++ b/lib/go/templates/manifest.mainnet.json @@ -4,7 +4,7 @@ { "id": "TH.01", "name": "Withdraw Unlocked FLOW", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -19,12 +19,12 @@ } ], "network": "mainnet", - "hash": "7eaae3a9b5c879d47d6c20ac8194cfbe900a82a1981234861bdfc8257f834a9c" + "hash": "df3ae1b529ad2c869e82a5229ce5913a58d7caa204e1e9cac85570a17eaae9dd" }, { "id": "TH.02", "name": "Deposit Unlocked FLOW", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -39,12 +39,12 @@ } ], "network": "mainnet", - "hash": "cc17f3af647a27559b90cfe530e36548c624f28846d7e4dfb9a9b35908281e8d" + "hash": "ba4f11874097b90e870db4c95bb3e6a27942a23ad816cad2df477a6bc8f9e21d" }, { "id": "TH.06", "name": "Register Node", - "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow ref to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let nodeInfo = StakingProxy.NodeInfo(\n nodeID: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey\n )\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n \n }\n}\n", + "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow ref to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let nodeInfo = StakingProxy.NodeInfo(\n nodeID: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey\n )\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n \n }\n}\n", "arguments": [ { "type": "String", @@ -114,12 +114,12 @@ } ], "network": "mainnet", - "hash": "4a415dd00a67fcdea78f9280b85c60b311779b7d070c6cdc039e26e40b8864dc" + "hash": "0c06d0d630d34e81a25e31e39998afed9f37aad33312e22ea20c1547d3cf912e" }, { "id": "TH.08", "name": "Stake New Locked FLOW", - "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\n\nimport LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.stakeNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.stakeNewTokens(amount: amount)\n \n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.stakeNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.stakeNewTokens(amount: amount)\n \n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -134,12 +134,12 @@ } ], "network": "mainnet", - "hash": "24638d111c8cc94bb27d40a12d84ee6259050b3341b7ddf3befcbd9086f42fe1" + "hash": "66318a62781fe37c2cc65931e96a11aaf642675c326facc4c7c8193298471a73" }, { "id": "TH.09", "name": "Re-stake Unstaked FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -154,12 +154,12 @@ } ], "network": "mainnet", - "hash": "ea3ec34dd725eec75dbe183920f67046835af2c18694fc62124fa6ecd9dfb03c" + "hash": "92f5f89513d6739b21573a796576dc5fbfa25a6d2f137435c14acaa515d5efaf" }, { "id": "TH.10", "name": "Re-stake Rewarded FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeRewardedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeRewardedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -174,12 +174,12 @@ } ], "network": "mainnet", - "hash": "e3dd8ed6ebc615b5320d4123521d8034336b75f6cb934cf09a92a91e8635b0fe" + "hash": "d1e6e4a6a62e65d87ce45ca77b24edd8d6868fdc5547d0b36e80d7a670a8400b" }, { "id": "TH.11", "name": "Request Unstake of FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.requestUnstaking(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.requestUnstaking(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -194,20 +194,20 @@ } ], "network": "mainnet", - "hash": "b972bc22914df2476770c304f2d19dd07732a4b04a048bd699d6188a0d835bb3" + "hash": "9d43648974c7bd0ad3d91b1dabf53de751702dd7921c7ea5c98065579e715f17" }, { "id": "TH.12", "name": "Unstake All FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction() {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.unstakeAll()\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction() {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.unstakeAll()\n }\n}\n", "arguments": [], "network": "mainnet", - "hash": "6d8677806cec6f5b36cc7c8fe72e0656bd3249d9a9372fbeacecf86ec3788fb7" + "hash": "8c64610b77a6e33680a9dd38d00602a87b0ac165d22b287222b9e4c51744a34e" }, { "id": "TH.13", "name": "Withdraw Unstaked FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -222,12 +222,12 @@ } ], "network": "mainnet", - "hash": "f98acdead3010e539b345ec9ac2e00057a5e15b77989dcd279533d694e9475ec" + "hash": "8fdd79f1729915b2696d4cfa0be9a28ea0a0548f41b39ed9259ae32dee939193" }, { "id": "TH.14", "name": "Withdraw Rewarded FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FlowToken from 0x1654653399040a61\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -242,7 +242,7 @@ } ], "network": "mainnet", - "hash": "71108d7604c86c477c55d170142ab0e8ff46a6de7d1e0f6a2d3892f07997ad80" + "hash": "67737c7f2ad4c183cd36b6edc47ac41e823f225bac9ff1a88e2fe2c38144a6bb" }, { "id": "TH.16", @@ -289,7 +289,7 @@ { "id": "TH.17", "name": "Register Delegator", - "source": "import FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\nimport FlowIDTableStaking from 0x8624b52f9ddcd04a\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\nimport FlowIDTableStaking from 0x8624b52f9ddcd04a\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(id: String, amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -315,12 +315,12 @@ } ], "network": "mainnet", - "hash": "28b85fd7223b166dd80be92285d60dd0f91916c68bf54a09ef0bfd41a7f9384a" + "hash": "eef0a6040c0ae3c716a6a40206ae5f318e1ed98e6e5748c7fa7d8c5e325ce608" }, { "id": "TH.19", "name": "Delegate New Locked FLOW", - "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowDelegator()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.delegateNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.delegateNewTokens(amount: amount)\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowDelegator()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.delegateNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.delegateNewTokens(amount: amount)\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -335,12 +335,12 @@ } ], "network": "mainnet", - "hash": "5c885520bc33265385f193f0d44e527c09f4375edbd93e42c2f446456285121f" + "hash": "26deca47a5a914f6f43a6a0fc88fb66b7a42e0c8588bdc170eeb8d885ce42bbe" }, { "id": "TH.20", "name": "Re-delegate Unstaked FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -355,12 +355,12 @@ } ], "network": "mainnet", - "hash": "4c9db2ae14d53994a90ad11618ef996e0089a042fb6b9227a047ec374b20d7f0" + "hash": "1881925bb789e77a60a2259cb119a39a5acc0b2db631fbfe812664f6e3f4a885" }, { "id": "TH.21", "name": "Re-delegate Rewarded FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateRewardedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateRewardedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -375,12 +375,12 @@ } ], "network": "mainnet", - "hash": "d22c22bd82d04fb46de6c1cc7d79af196912d208a4b21ae7e3a69b2fc41b47dc" + "hash": "a1e31d1e216f5c881a398743df6c84eb62c71f7c3fb8478761607fd7a7c829ac" }, { "id": "TH.22", "name": "Unstake Delegated FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.requestUnstaking(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.requestUnstaking(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -395,12 +395,12 @@ } ], "network": "mainnet", - "hash": "9fee5b7a755f31992fda0fddb42edcc4f3362ef2d9f56f115304504d9a26e8ff" + "hash": "14d4da181ec5e5e9bf67a4ec1f76d91ba3f57e326cc3bcdb1f21793cceff7ce4" }, { "id": "TH.23", "name": "Withdraw Unstaked FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -415,12 +415,12 @@ } ], "network": "mainnet", - "hash": "9d23d2bcd097234184d2e768baf884d4a4b778786f09cc5feb93c43bb6630a9f" + "hash": "f2c7e52c726dfbb3fe01fb77f3bbd3c876845aa0bc9c36218323556167774862" }, { "id": "TH.24", "name": "Withdraw Rewarded FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FlowToken from 0x1654653399040a61\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let delegatorProxy = self.holderRef.borrowDelegator()\n\n delegatorProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let delegatorProxy = self.holderRef.borrowDelegator()\n\n delegatorProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -435,7 +435,7 @@ } ], "network": "mainnet", - "hash": "c207a5d9482bb27ac8339f0c2279c9c27d988d5d6cfa21f48497d9796df301b0" + "hash": "68f5607016e4b1d920be156edc01936bc4af89a2747ddd39842e89241933baaa" }, { "id": "TH.25", diff --git a/lib/go/templates/manifest.testnet.json b/lib/go/templates/manifest.testnet.json index a3ed5f16a..dd978784f 100755 --- a/lib/go/templates/manifest.testnet.json +++ b/lib/go/templates/manifest.testnet.json @@ -4,7 +4,7 @@ { "id": "TH.01", "name": "Withdraw Unlocked FLOW", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -19,12 +19,12 @@ } ], "network": "testnet", - "hash": "abcf1f449842f2c1da40295b13a312f766ae0984ff011e8ba2ddb0fec0e1a206" + "hash": "4b75a07c1313891183b11fbdd480a12b8257baa9f433b991bed8e68985e0ddd7" }, { "id": "TH.02", "name": "Deposit Unlocked FLOW", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -39,12 +39,12 @@ } ], "network": "testnet", - "hash": "90b47e234a0574e1b88aa5f5d7a9d8863bc50e7db68c03e091723534a52cbd03" + "hash": "7087bf3e7255597cf79cc99863173eb17c21b1433ca8577e3bac65c6ab0e69f4" }, { "id": "TH.06", "name": "Register Node", - "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow ref to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let nodeInfo = StakingProxy.NodeInfo(\n nodeID: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey\n )\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n \n }\n}\n", + "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow ref to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let nodeInfo = StakingProxy.NodeInfo(\n nodeID: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey\n )\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n \n }\n}\n", "arguments": [ { "type": "String", @@ -114,12 +114,12 @@ } ], "network": "testnet", - "hash": "fd4b992484a92eaadd209454e535a7326f8dac5a37dc6167e60836cb124a8591" + "hash": "c73a047e33ce1d4d2dcc3fe3785a06e4c98a2ea734571a16c34fd8756b272c2b" }, { "id": "TH.08", "name": "Stake New Locked FLOW", - "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\n\nimport LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.stakeNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.stakeNewTokens(amount: amount)\n \n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.stakeNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.stakeNewTokens(amount: amount)\n \n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -134,12 +134,12 @@ } ], "network": "testnet", - "hash": "3b1b5f17fa582bb7fda90eccc8e44492d88d0cd3f2bed44c634885d1b35eec69" + "hash": "cff4386eceffd120399e156bcdb59e2c6d4c6f547acb5e4c2260b174af718c3c" }, { "id": "TH.09", "name": "Re-stake Unstaked FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -154,12 +154,12 @@ } ], "network": "testnet", - "hash": "f733ce3941a148ff20736b0da9f023db1730d2f7289cf844e0cc33d801a76536" + "hash": "bcf2bdd7b79261695118939648b1a4c52af44a44da17461b8aaccda55bf39ede" }, { "id": "TH.10", "name": "Re-stake Rewarded FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeRewardedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeRewardedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -174,12 +174,12 @@ } ], "network": "testnet", - "hash": "92d8a971d4de4f721ae67796a47248cfdf010fa6ea585ea8187170a0b3e369df" + "hash": "afeb3d440bac434ca96cc27d0bd9492bf09556159d1cd9bb6ac2d80f99197d47" }, { "id": "TH.11", "name": "Request Unstake of FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.requestUnstaking(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.requestUnstaking(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -194,20 +194,20 @@ } ], "network": "testnet", - "hash": "2c4bc80178d0c3c18ea96c2fe0fbd25d96efadf75533af56ee3db86bd3cf0e3c" + "hash": "0f0bc2005f2104e28cfa129004739320945a9a1a20beef93522c504510e5159e" }, { "id": "TH.12", "name": "Unstake All FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction() {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.unstakeAll()\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction() {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.unstakeAll()\n }\n}\n", "arguments": [], "network": "testnet", - "hash": "ffc564b11bd2c83f5019932027d8a49da20c7a2cbf1b6540587860c63cd03a33" + "hash": "06c48b6484e12fd880289e7c98b9c8092e6616e5972312c13e454ea3f6ee5f79" }, { "id": "TH.13", "name": "Withdraw Unstaked FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -222,12 +222,12 @@ } ], "network": "testnet", - "hash": "7d6013cf9010a958cee506706dc75b1d2b3c1f2969e4c667f7494fccbfa43923" + "hash": "cdba1c889cc834e47085f9857e8d390c0a29776653859147cfcbe5ba0123a2e6" }, { "id": "TH.14", "name": "Withdraw Rewarded FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FlowToken from 0x7e60df042a9c0868\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -242,7 +242,7 @@ } ], "network": "testnet", - "hash": "87c3086c6627b73a2feb3045ba2d76cd05f05f57ffbd67744086b69e30653b7a" + "hash": "7342ec6c5da7f2f200f40ea1e134f7980b1c6fa970d0a66e1ebd4c73f3bc8fa2" }, { "id": "TH.16", @@ -289,7 +289,7 @@ { "id": "TH.17", "name": "Register Delegator", - "source": "import FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\nimport FlowIDTableStaking from 0x9eca2b38b18b5dfe\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\nimport FlowIDTableStaking from 0x9eca2b38b18b5dfe\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(id: String, amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -315,12 +315,12 @@ } ], "network": "testnet", - "hash": "35ded738834498f973995282e25c11c997fd94858f36cfffe393c3abe7a86be2" + "hash": "4f7cb63a61680eda92e91a6cd4b87f8efd2640493c4688c911fd20806f9347f2" }, { "id": "TH.19", "name": "Delegate New Locked FLOW", - "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowDelegator()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.delegateNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.delegateNewTokens(amount: amount)\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowDelegator()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.delegateNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.delegateNewTokens(amount: amount)\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -335,12 +335,12 @@ } ], "network": "testnet", - "hash": "5a460d73535d58b51151687f6b1c624e4cba03fd28d769109fcb81ed91d7385a" + "hash": "810f201ae72d94c1c08394bd0fb65c55597c036279be021857ea0d3e0ef5a4b5" }, { "id": "TH.20", "name": "Re-delegate Unstaked FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -355,12 +355,12 @@ } ], "network": "testnet", - "hash": "f3a66fb5b397db5d50379ea64ab6a4c3928dff3fcf660e24a95c7f80c4fcdb6b" + "hash": "1be166ba9de98713d8aa7be176b152beaa87a5329f720d8454eb8a60f53044c8" }, { "id": "TH.21", "name": "Re-delegate Rewarded FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateRewardedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateRewardedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -375,12 +375,12 @@ } ], "network": "testnet", - "hash": "58f47cf61fb47d3a3af05eb079b2d201111d3f28b92dc141815dd8d56c4f7b2f" + "hash": "d6548243b4ac0716cf4a9b7eb886ee9c182dc33dadffedede3a51115f1d5a1a0" }, { "id": "TH.22", "name": "Unstake Delegated FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.requestUnstaking(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.requestUnstaking(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -395,12 +395,12 @@ } ], "network": "testnet", - "hash": "e24f2dbf555438b4424ba4f6e86564bb2abb3c5d8b2238fdd9ccf3bdf45ec62e" + "hash": "b5a0279e3486772758b6073354908108fa153da9d75e5fc087f242a363b4b25b" }, { "id": "TH.23", "name": "Withdraw Unstaked FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -415,12 +415,12 @@ } ], "network": "testnet", - "hash": "e8bbb43125df0d3d6f5e8a458a12a4a1c087b72de6362f172de02140802dfeb3" + "hash": "41a6be3ccb335a5a303dea94c10ec9dc13a4ec71d24ad2b31b04a719b3cbaa68" }, { "id": "TH.24", "name": "Withdraw Rewarded FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FlowToken from 0x7e60df042a9c0868\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let delegatorProxy = self.holderRef.borrowDelegator()\n\n delegatorProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let delegatorProxy = self.holderRef.borrowDelegator()\n\n delegatorProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -435,7 +435,7 @@ } ], "network": "testnet", - "hash": "e4fd690e8069238d3aaca5a5f0e8b93e88955b2dead960649541671d3c766875" + "hash": "4a0e9cff6a5a04b99d45921af8a58dc262d64ee4ccdba6ae7ce9007597cd37b2" }, { "id": "TH.25", diff --git a/lib/go/test/flow_epoch_test.go b/lib/go/test/flow_epoch_test.go index b898c07aa..912c4765f 100644 --- a/lib/go/test/flow_epoch_test.go +++ b/lib/go/test/flow_epoch_test.go @@ -5,8 +5,6 @@ import ( "fmt" "testing" - "github.com/onflow/flow-go/module/signature" - "github.com/onflow/cadence" jsoncdc "github.com/onflow/cadence/encoding/json" "github.com/stretchr/testify/assert" @@ -86,7 +84,7 @@ func TestEpochClusters(t *testing.T) { // Deploys the staking contract, qc, dkg, and epoch lifecycle contract // staking contract is deployed with default values (1.25M rewards, 8% cut) - idTableAddress, _ := initializeAllEpochContracts(t, b, idTableAccountKey, IDTableSigner, &env, + _, _ = initializeAllEpochContracts(t, b, idTableAccountKey, IDTableSigner, &env, startEpochCounter, // start epoch counter numEpochViews, // num views per epoch numStakingViews, // num views for staking auction @@ -95,55 +93,39 @@ func TestEpochClusters(t *testing.T) { randomSource, // random source rewardIncreaseFactor) - // t.Run("Should be able to randomize an array of strings", func(t *testing.T) { + t.Run("Should be able to randomize an array of strings", func(t *testing.T) { - // adminString, _ := cadence.NewString(adminID) - // joshString, _ := cadence.NewString(joshID) - // maxString, _ := cadence.NewString(maxID) - // accessString, _ := cadence.NewString(accessID) - // idArray := cadence.NewArray([]cadence.Value{adminString, joshString, maxString, accessString}) - // result := executeScriptAndCheck(t, b, templates.GenerateGetRandomizeScript(env), [][]byte{jsoncdc.MustEncode(idArray)}) - // assertEqual(t, 4, len(result.(cadence.Array).Values)) + adminString, _ := cadence.NewString(adminID) + joshString, _ := cadence.NewString(joshID) + maxString, _ := cadence.NewString(maxID) + accessString, _ := cadence.NewString(accessID) + idArray := cadence.NewArray([]cadence.Value{adminString, joshString, maxString, accessString}) + result := executeScriptAndCheck(t, b, templates.GenerateGetRandomizeScript(env), [][]byte{jsoncdc.MustEncode(idArray)}) + assertEqual(t, 4, len(result.(cadence.Array).Values)) - // }) + }) - code := ` - transaction { - prepare(acct: AuthAccount) { - let number = unsafeRandom() - } - }` + // create new user accounts, mint tokens for them, and register them for staking + addresses, _, signers := registerAndMintManyAccounts(t, b, env, accountKeys, numEpochAccounts) + ids, _, _ := generateNodeIDs(numEpochAccounts) + _, stakingPublicKeys, _, networkingPublicKeys := generateManyNodeKeys(t, numEpochAccounts) + registerNodesForStaking(t, b, env, + addresses, + signers, + stakingPublicKeys, + networkingPublicKeys, + ids) - tx := createTxWithTemplateAndAuthorizer(b, []byte(fmt.Sprintf(code)), idTableAddress) - signAndSubmit( - t, b, tx, - []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, - false, - ) + t.Run("Should be able to create collector clusters from an array of ids signed up for staking", func(t *testing.T) { + string0, _ := cadence.NewString(ids[0]) + string1, _ := cadence.NewString(ids[1]) + string2, _ := cadence.NewString(ids[2]) + string3, _ := cadence.NewString(ids[3]) + idArray := cadence.NewArray([]cadence.Value{string0, string1, string2, string3}) + result := executeScriptAndCheck(t, b, templates.GenerateGetCreateClustersScript(env), [][]byte{jsoncdc.MustEncode(idArray)}) + assertEqual(t, 2, len(result.(cadence.Array).Values)) - // create new user accounts, mint tokens for them, and register them for staking - // addresses, _, signers := registerAndMintManyAccounts(t, b, env, accountKeys, numEpochAccounts) - // ids, _, _ := generateNodeIDs(numEpochAccounts) - // _, stakingPublicKeys, _, networkingPublicKeys := generateManyNodeKeys(t, numEpochAccounts) - // registerNodesForStaking(t, b, env, - // addresses, - // signers, - // stakingPublicKeys, - // networkingPublicKeys, - // ids) - - // t.Run("Should be able to create collector clusters from an array of ids signed up for staking", func(t *testing.T) { - // string0, _ := cadence.NewString(ids[0]) - // string1, _ := cadence.NewString(ids[1]) - // string2, _ := cadence.NewString(ids[2]) - // string3, _ := cadence.NewString(ids[3]) - // idArray := cadence.NewArray([]cadence.Value{string0, string1, string2, string3}) - // result := executeScriptAndCheck(t, b, templates.GenerateGetCreateClustersScript(env), [][]byte{jsoncdc.MustEncode(idArray)}) - // assertEqual(t, 2, len(result.(cadence.Array).Values)) - - // - // }) + }) } diff --git a/transactions/flowToken/scripts/get_balance.cdc b/transactions/flowToken/scripts/get_balance.cdc index 6f0e3b6f9..e7162aec3 100644 --- a/transactions/flowToken/scripts/get_balance.cdc +++ b/transactions/flowToken/scripts/get_balance.cdc @@ -6,7 +6,7 @@ import FlowToken from "FlowToken" access(all) fun main(account: Address): UFix64 { let vaultRef = getAccount(account) - .capabilities.borrow<&FlowToken.Vault{FungibleToken.Balance}>(/public/flowTokenBalance) + .capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) ?? panic("Could not borrow Balance reference to the Vault") return vaultRef.balance diff --git a/transactions/idTableStaking/delegation/delegator_add_capability.cdc b/transactions/idTableStaking/delegation/delegator_add_capability.cdc index effad19f1..4fe698825 100644 --- a/transactions/idTableStaking/delegation/delegator_add_capability.cdc +++ b/transactions/idTableStaking/delegation/delegator_add_capability.cdc @@ -6,7 +6,7 @@ import FlowToken from "FlowToken" transaction { - prepare(acct: auth(BorrowValue) &Account) { + prepare(acct: auth(BorrowValue, Capabilities) &Account) { if acct.storage.borrow(from: FlowIDTableStaking.DelegatorStoragePath) == nil || acct.capabilities.get<&{FlowIDTableStaking.NodeDelegatorPublic}>(/public/flowStakingDelegator)?.check() ?? false diff --git a/transactions/idTableStaking/delegation/register_delegator.cdc b/transactions/idTableStaking/delegation/register_delegator.cdc index 61046fe47..8b09431ad 100644 --- a/transactions/idTableStaking/delegation/register_delegator.cdc +++ b/transactions/idTableStaking/delegation/register_delegator.cdc @@ -4,7 +4,7 @@ import FungibleToken from "FungibleToken" transaction(nodeID: String, amount: UFix64) { - prepare(acct: auth(Storage) &Account) { + prepare(acct: auth(Storage, Capabilities) &Account) { let flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") @@ -16,6 +16,6 @@ transaction(nodeID: String, amount: UFix64) { acct.storage.save(<-newDelegator, to: FlowIDTableStaking.DelegatorStoragePath) let delegatorCap = acct.capabilities.storage.issue<&{FlowIDTableStaking.NodeDelegatorPublic}>(FlowIDTableStaking.DelegatorStoragePath) - acct.capabilities.storage.issue(delegatorCap, at: /public/flowStakingDelegator) + acct.capabilities.publish(delegatorCap, at: /public/flowStakingDelegator) } } \ No newline at end of file diff --git a/transactions/idTableStaking/node/node_add_capability.cdc b/transactions/idTableStaking/node/node_add_capability.cdc index c5114de0f..8f5c67819 100644 --- a/transactions/idTableStaking/node/node_add_capability.cdc +++ b/transactions/idTableStaking/node/node_add_capability.cdc @@ -6,7 +6,7 @@ import FlowToken from "FlowToken" transaction { - prepare(acct: auth(BorrowValue) &Account) { + prepare(acct: auth(BorrowValue, Capabilities) &Account) { if acct.storage.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) == nil || acct.capabilities.get<&{FlowIDTableStaking.NodeStakerPublic}>(FlowIDTableStaking.NodeStakerPublicPath)?.check() ?? false diff --git a/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc b/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc index c0f6adb71..a681e0fc5 100644 --- a/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc +++ b/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc @@ -25,44 +25,37 @@ transaction( userAccount.keys.add(publicKey: fullUserPublicKey.publicKey, hashAlgorithm: fullUserPublicKey.hashAlgorithm, weight: fullUserPublicKey.weight) // Create a private link to the stored vault - let vaultCapability = sharedAccount - .link( - /private/flowTokenVault, - target: /storage/flowTokenVault - ) - ?? panic("Could not link Flow Token Vault capability") + let vaultCapability = sharedAccount.capabilities.storage.issue + + (/storage/flowTokenVault) // create a locked token manager and stored it in the shared account let lockedTokenManager <- LockedTokens.createLockedTokenManager(vault: vaultCapability) - sharedAccount.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) + sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) let tokenManagerCapability = sharedAccount - .link( - LockedTokens.LockedTokenManagerPrivatePath, - target: LockedTokens.LockedTokenManagerStoragePath - ) ?? panic("Could not link token manager capability") + .capabilities.storage.issue( + LockedTokens.LockedTokenManagerStoragePath) let tokenHolder <- LockedTokens.createTokenHolder( lockedAddress: sharedAccount.address, tokenManager: tokenManagerCapability ) - userAccount.save( + userAccount.storage.save( <-tokenHolder, to: LockedTokens.TokenHolderStoragePath ) - userAccount.link<&LockedTokens.TokenHolder>( - LockedTokens.LockedAccountInfoPublicPath, - target: LockedTokens.TokenHolderStoragePath + let infoCap = userAccount.capabilities.storage.issue<&LockedTokens.TokenHolder>( + LockedTokens.TokenHolderStoragePath ) + userAccount.capabilities.publish(infoCap, at: LockedTokens.LockedAccountInfoPublicPath) let tokenAdminCapability = sharedAccount - .link( - LockedTokens.LockedTokenAdminPrivatePath, - target: LockedTokens.LockedTokenManagerStoragePath + .capabilities.storage.issue( + LockedTokens.LockedTokenManagerStoragePath ) - ?? panic("Could not link token admin to token manager") let tokenAdminCollection = admin.storage .borrow<&LockedTokens.TokenAdminCollection>( @@ -80,15 +73,15 @@ transaction( sharedAccount.capabilities.unpublish(/public/flowTokenReceiver) // create new receiver that marks received tokens as unlocked - let lockedTokensManagerCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) - sharedAccount.capabilties.publish( + let lockedTokensManagerCap = sharedAccount.capabilities.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) + sharedAccount.capabilities.publish( lockedTokensManagerCap, at: /public/flowTokenReceiver ) // put normal receiver in a separate unique path - let tokenReceiverCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) - sharedAccount.capabilties.publish( + let tokenReceiverCap = sharedAccount.capabilities.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) + sharedAccount.capabilities.publish( tokenReceiverCap, at: /public/lockedFlowTokenReceiver ) diff --git a/transactions/lockedTokens/admin/admin_deploy_contract.cdc b/transactions/lockedTokens/admin/admin_deploy_contract.cdc index 1c3765b4e..4995c45db 100644 --- a/transactions/lockedTokens/admin/admin_deploy_contract.cdc +++ b/transactions/lockedTokens/admin/admin_deploy_contract.cdc @@ -2,7 +2,7 @@ import Crypto transaction(contractName: String, code: String, publicKeys: [Crypto.KeyListEntry]) { - prepare(admin: auth(BorrowValue) &Account) { + prepare(admin: auth(Storage, BorrowValue) &Account) { let lockedTokens = Account(payer: admin) lockedTokens.contracts.add(name: contractName, code: code.decodeHex(), admin) diff --git a/transactions/lockedTokens/admin/admin_remove_delegator.cdc b/transactions/lockedTokens/admin/admin_remove_delegator.cdc index ac8e988ca..e5017662c 100644 --- a/transactions/lockedTokens/admin/admin_remove_delegator.cdc +++ b/transactions/lockedTokens/admin/admin_remove_delegator.cdc @@ -1,4 +1,4 @@ -import FlowIDTableStaking from 0xIDENTITYTABLEADDRESS +import FlowIDTableStaking from "FlowIDTableStaking" import LockedTokens from 0xLOCKEDTOKENADDRESS transaction { diff --git a/transactions/lockedTokens/admin/get_unlocking_bad_accounts.cdc b/transactions/lockedTokens/admin/get_unlocking_bad_accounts.cdc deleted file mode 100644 index 844c1a754..000000000 --- a/transactions/lockedTokens/admin/get_unlocking_bad_accounts.cdc +++ /dev/null @@ -1,17 +0,0 @@ - - -access(all) fun main(tokenAdmin: Address): {Address: UFix64} { - - let copyofDictionary: {Address: UFix64} = {} - - let account = getAccount(tokenAdmin) - - let dictionaryReference = account.capabilities.borrow<&{Address: UFix64}>(/public/unlockingBadAccounts) - ?? panic("Could not get bad accounts dictionary") - - for address in dictionaryReference.keys { - copyofDictionary[address] = dictionaryReference[address]! - } - - return copyofDictionary -} \ No newline at end of file diff --git a/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc b/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc index e7e0ab18d..d3ede5279 100644 --- a/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc +++ b/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc @@ -8,7 +8,7 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(unlockInfo: {Address: UFix64}) { - prepare(admin: auth(Storage) &Account) { + prepare(admin: auth(Storage, Capabilities) &Account) { // Unlocked Account addresses that had some sort of error // are stored in this dictionary so they can be inspected later diff --git a/transactions/lockedTokens/delegator/delegate_new_tokens.cdc b/transactions/lockedTokens/delegator/delegate_new_tokens.cdc index e3f4083bb..7b9415f82 100644 --- a/transactions/lockedTokens/delegator/delegate_new_tokens.cdc +++ b/transactions/lockedTokens/delegator/delegate_new_tokens.cdc @@ -4,12 +4,12 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(amount: UFix64) { - let holderRef: &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder - let vaultRef: &FlowToken.Vault + let vaultRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") self.vaultRef = account.storage.borrow(from: /storage/flowTokenVault) diff --git a/transactions/lockedTokens/delegator/delegate_rewarded_tokens.cdc b/transactions/lockedTokens/delegator/delegate_rewarded_tokens.cdc index 2f6d93af6..7cc5cc715 100644 --- a/transactions/lockedTokens/delegator/delegate_rewarded_tokens.cdc +++ b/transactions/lockedTokens/delegator/delegate_rewarded_tokens.cdc @@ -1,10 +1,11 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS +import FungibleToken from "FungibleToken" transaction(amount: UFix64) { let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy prepare(account: auth(BorrowValue) &Account) { - let holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + let holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("TokenHolder is not saved at specified path") self.nodeDelegatorProxy = holderRef.borrowDelegator() diff --git a/transactions/lockedTokens/delegator/delegate_unstaked_tokens.cdc b/transactions/lockedTokens/delegator/delegate_unstaked_tokens.cdc index 60c848256..9fffc0da5 100644 --- a/transactions/lockedTokens/delegator/delegate_unstaked_tokens.cdc +++ b/transactions/lockedTokens/delegator/delegate_unstaked_tokens.cdc @@ -1,10 +1,11 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS +import FungibleToken from "FungibleToken" transaction(amount: UFix64) { let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy prepare(account: auth(BorrowValue) &Account) { - let holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + let holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("TokenHolder is not saved at specified path") self.nodeDelegatorProxy = holderRef.borrowDelegator() diff --git a/transactions/lockedTokens/delegator/register_delegator.cdc b/transactions/lockedTokens/delegator/register_delegator.cdc index fac11a0d9..ac09b9ef7 100644 --- a/transactions/lockedTokens/delegator/register_delegator.cdc +++ b/transactions/lockedTokens/delegator/register_delegator.cdc @@ -5,12 +5,12 @@ import FungibleToken from "FungibleToken" transaction(id: String, amount: UFix64) { - let holderRef: &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder - let vaultRef: &FlowToken.Vault + let vaultRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("TokenHolder is not saved at specified path") self.vaultRef = account.storage.borrow(from: /storage/flowTokenVault) diff --git a/transactions/lockedTokens/delegator/request_unstaking.cdc b/transactions/lockedTokens/delegator/request_unstaking.cdc index 5ca0777a3..e11e83bbb 100644 --- a/transactions/lockedTokens/delegator/request_unstaking.cdc +++ b/transactions/lockedTokens/delegator/request_unstaking.cdc @@ -1,10 +1,11 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS +import FungibleToken from "FungibleToken" transaction(amount: UFix64) { let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy prepare(account: auth(BorrowValue) &Account) { - let holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + let holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("TokenHolder is not saved at specified path") self.nodeDelegatorProxy = holderRef.borrowDelegator() diff --git a/transactions/lockedTokens/delegator/withdraw_rewarded_tokens.cdc b/transactions/lockedTokens/delegator/withdraw_rewarded_tokens.cdc index 1de790ffc..ca94d9840 100644 --- a/transactions/lockedTokens/delegator/withdraw_rewarded_tokens.cdc +++ b/transactions/lockedTokens/delegator/withdraw_rewarded_tokens.cdc @@ -1,13 +1,14 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS import FlowToken from "FlowToken" +import FungibleToken from "FungibleToken" transaction(amount: UFix64) { - let holderRef: &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder let vaultRef: &FlowToken.Vault prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") self.vaultRef = account.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) diff --git a/transactions/lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc b/transactions/lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc index 220b9e981..aced814b3 100644 --- a/transactions/lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc +++ b/transactions/lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc @@ -1,10 +1,11 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS +import FungibleToken from "FungibleToken" transaction(amount: UFix64) { let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy prepare(account: auth(BorrowValue) &Account) { - let holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + let holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("TokenHolder is not saved at specified path") self.nodeDelegatorProxy = holderRef.borrowDelegator() diff --git a/transactions/lockedTokens/delegator/withdraw_unstaked_tokens.cdc b/transactions/lockedTokens/delegator/withdraw_unstaked_tokens.cdc index 3a2cc8ee6..d01be960a 100644 --- a/transactions/lockedTokens/delegator/withdraw_unstaked_tokens.cdc +++ b/transactions/lockedTokens/delegator/withdraw_unstaked_tokens.cdc @@ -1,10 +1,11 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS +import FungibleToken from "FungibleToken" transaction(amount: UFix64) { let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy prepare(account: auth(BorrowValue) &Account) { - let holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + let holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("TokenHolder is not saved at specified path") self.nodeDelegatorProxy = holderRef.borrowDelegator() diff --git a/transactions/lockedTokens/staker/register_node.cdc b/transactions/lockedTokens/staker/register_node.cdc index 66c803ddc..d6ba438c6 100644 --- a/transactions/lockedTokens/staker/register_node.cdc +++ b/transactions/lockedTokens/staker/register_node.cdc @@ -5,12 +5,12 @@ import StakingProxy from 0xSTAKINGPROXYADDRESS transaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) { - let holderRef: &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder - let vaultRef: &FlowToken.Vault + let vaultRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow ref to TokenHolder") self.vaultRef = account.storage.borrow(from: /storage/flowTokenVault) diff --git a/transactions/lockedTokens/staker/request_unstaking.cdc b/transactions/lockedTokens/staker/request_unstaking.cdc index 1f0a5364d..5b6b90289 100644 --- a/transactions/lockedTokens/staker/request_unstaking.cdc +++ b/transactions/lockedTokens/staker/request_unstaking.cdc @@ -1,12 +1,13 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS import StakingProxy from 0xSTAKINGPROXYADDRESS +import FungibleToken from "FungibleToken" transaction(amount: UFix64) { - let holderRef: &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") } diff --git a/transactions/lockedTokens/staker/stake_new_tokens.cdc b/transactions/lockedTokens/staker/stake_new_tokens.cdc index 799f947f4..5fe0ba2bf 100644 --- a/transactions/lockedTokens/staker/stake_new_tokens.cdc +++ b/transactions/lockedTokens/staker/stake_new_tokens.cdc @@ -1,17 +1,16 @@ import FlowToken from "FlowToken" import FungibleToken from "FungibleToken" - import LockedTokens from 0xLOCKEDTOKENADDRESS import StakingProxy from 0xSTAKINGPROXYADDRESS transaction(amount: UFix64) { - let holderRef: &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder - let vaultRef: &FlowToken.Vault + let vaultRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") self.vaultRef = account.storage.borrow(from: /storage/flowTokenVault) diff --git a/transactions/lockedTokens/staker/stake_rewarded_tokens.cdc b/transactions/lockedTokens/staker/stake_rewarded_tokens.cdc index de7382f86..a6b6edafe 100644 --- a/transactions/lockedTokens/staker/stake_rewarded_tokens.cdc +++ b/transactions/lockedTokens/staker/stake_rewarded_tokens.cdc @@ -1,12 +1,13 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS import StakingProxy from 0xSTAKINGPROXYADDRESS +import FungibleToken from "FungibleToken" transaction(amount: UFix64) { - let holderRef: &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") } diff --git a/transactions/lockedTokens/staker/stake_unstaked_tokens.cdc b/transactions/lockedTokens/staker/stake_unstaked_tokens.cdc index c56f9d86a..bdde9f282 100644 --- a/transactions/lockedTokens/staker/stake_unstaked_tokens.cdc +++ b/transactions/lockedTokens/staker/stake_unstaked_tokens.cdc @@ -1,12 +1,13 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS import StakingProxy from 0xSTAKINGPROXYADDRESS +import FungibleToken from "FungibleToken" transaction(amount: UFix64) { - let holderRef: &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") } diff --git a/transactions/lockedTokens/staker/unstake_all.cdc b/transactions/lockedTokens/staker/unstake_all.cdc index c7f8caddb..c77dd7215 100644 --- a/transactions/lockedTokens/staker/unstake_all.cdc +++ b/transactions/lockedTokens/staker/unstake_all.cdc @@ -1,12 +1,13 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS import StakingProxy from 0xSTAKINGPROXYADDRESS +import FungibleToken from "FungibleToken" transaction() { - let holderRef: &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") } diff --git a/transactions/lockedTokens/staker/update_networking_address.cdc b/transactions/lockedTokens/staker/update_networking_address.cdc index 1d9154570..2652763d5 100644 --- a/transactions/lockedTokens/staker/update_networking_address.cdc +++ b/transactions/lockedTokens/staker/update_networking_address.cdc @@ -1,11 +1,12 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS +import FungibleToken from "FungibleToken" transaction(newAddress: String) { - let holderRef: &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") } diff --git a/transactions/lockedTokens/staker/withdraw_rewarded_tokens.cdc b/transactions/lockedTokens/staker/withdraw_rewarded_tokens.cdc index 315b8fc65..311f7f77c 100644 --- a/transactions/lockedTokens/staker/withdraw_rewarded_tokens.cdc +++ b/transactions/lockedTokens/staker/withdraw_rewarded_tokens.cdc @@ -1,13 +1,14 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS import FlowToken from "FlowToken" +import FungibleToken from "FungibleToken" transaction(amount: UFix64) { - let holderRef: &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder let vaultRef: &FlowToken.Vault prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") self.vaultRef = account.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) diff --git a/transactions/lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc b/transactions/lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc index ff0334165..474123d1f 100644 --- a/transactions/lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc +++ b/transactions/lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc @@ -1,12 +1,13 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS import StakingProxy from 0xSTAKINGPROXYADDRESS +import FungibleToken from "FungibleToken" transaction(amount: UFix64) { - let holderRef: &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") } diff --git a/transactions/lockedTokens/staker/withdraw_unstaked_tokens.cdc b/transactions/lockedTokens/staker/withdraw_unstaked_tokens.cdc index 716f94159..cbc8d7d2f 100644 --- a/transactions/lockedTokens/staker/withdraw_unstaked_tokens.cdc +++ b/transactions/lockedTokens/staker/withdraw_unstaked_tokens.cdc @@ -1,12 +1,13 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS import StakingProxy from 0xSTAKINGPROXYADDRESS +import FungibleToken from "FungibleToken" transaction(amount: UFix64) { - let holderRef: &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") } diff --git a/transactions/lockedTokens/user/deposit_tokens.cdc b/transactions/lockedTokens/user/deposit_tokens.cdc index 7bd4a34f9..2b024f360 100644 --- a/transactions/lockedTokens/user/deposit_tokens.cdc +++ b/transactions/lockedTokens/user/deposit_tokens.cdc @@ -5,7 +5,7 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(amount: UFix64) { let holderRef: &LockedTokens.TokenHolder - let vaultRef: &FlowToken.Vault + let vaultRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault prepare(acct: auth(BorrowValue) &Account) { self.holderRef = acct.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) diff --git a/transactions/lockedTokens/user/get_total_balance.cdc b/transactions/lockedTokens/user/get_total_balance.cdc index e6302b629..aab369238 100644 --- a/transactions/lockedTokens/user/get_total_balance.cdc +++ b/transactions/lockedTokens/user/get_total_balance.cdc @@ -40,7 +40,7 @@ access(all) fun main(address: Address): UFix64 { let optionalDelegatorRef = account .capabilities.borrow<&{FlowIDTableStaking.NodeDelegatorPublic}>( /public/flowStakingDelegator - )! + ) if let delegatorRef = optionalDelegatorRef { let delegatorInfo = FlowIDTableStaking.DelegatorInfo( diff --git a/transactions/lockedTokens/user/withdraw_tokens.cdc b/transactions/lockedTokens/user/withdraw_tokens.cdc index 51ff37f13..54a03211c 100644 --- a/transactions/lockedTokens/user/withdraw_tokens.cdc +++ b/transactions/lockedTokens/user/withdraw_tokens.cdc @@ -4,14 +4,14 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(amount: UFix64) { - let holderRef: &LockedTokens.TokenHolder - let vaultRef: &FlowToken.Vault + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder + let vaultRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault prepare(acct: auth(BorrowValue) &Account) { - self.holderRef = acct.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = acct.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow a reference to TokenHolder") - self.vaultRef = acct.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) + self.vaultRef = acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow flow token vault ref") } From 298f47d2ac61d076292bc195a1873e9e606a5271 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Mon, 4 Dec 2023 14:21:54 -0600 Subject: [PATCH 057/160] update dependencies and add public burn tokens method --- contracts/FlowToken.cdc | 30 ++++++++++-------------------- lib/go/contracts/go.mod | 4 ++-- lib/go/contracts/go.sum | 4 ++++ 3 files changed, 16 insertions(+), 22 deletions(-) diff --git a/contracts/FlowToken.cdc b/contracts/FlowToken.cdc index 670dfb8b5..aa7a9b0e4 100644 --- a/contracts/FlowToken.cdc +++ b/contracts/FlowToken.cdc @@ -104,23 +104,6 @@ access(all) contract FlowToken: ViewResolver { destroy vault } - access(FungibleToken.Withdrawable) fun transfer(amount: UFix64, receiver: Capability<&{FungibleToken.Receiver}>) { - let transferVault <- self.withdraw(amount: amount) - - // Get a reference to the recipient's Receiver - let receiverRef = receiver.borrow() - ?? panic("Could not borrow receiver reference to the recipient's Vault") - - // Deposit the withdrawn tokens in the recipient's receiver - receiverRef.deposit(from: <-transferVault) - } - - destroy() { - if self.balance > 0.0 { - FlowToken.totalSupply = FlowToken.totalSupply - self.balance - } - } - /// Get all the Metadata Views implemented by FlowToken /// /// @return An array of Types defining the implemented views. This value will be used by @@ -275,9 +258,16 @@ access(all) contract FlowToken: ViewResolver { // total supply in the Vault destructor. // access(all) fun burnTokens(from: @FlowToken.Vault) { - let vault <- from as! @FlowToken.Vault - let amount = vault.balance - destroy vault + FlowToken.burnTokens(from: <-from) + } + } + + access(all) fun burnTokens(from: @FlowToken.Vault) { + let vault <- from as! @FlowToken.Vault + let amount = vault.balance + destroy vault + if amount > 0.0 { + FlowToken.totalSupply = FlowToken.totalSupply - amount emit TokensBurned(amount: amount) } } diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 441857e28..8bb61bfa4 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -4,9 +4,9 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231121165523-9e68e5a6ce6a + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231201182806-a95f9ec50b08 github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2 - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20231120214141-b11e79f1bb27 + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20231204201122-eb1dd9560768 github.com/stretchr/testify v1.8.4 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index c6f62bb12..32d69c5ed 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -886,6 +886,8 @@ github.com/onflow/cadence v1.0.0-preview.1 h1:Y/q/43aDc93/1Atsxx3+e2V/dZiQuF1Tqk github.com/onflow/cadence v1.0.0-preview.1/go.mod h1:Q5Up9Kt+J6zuAFmgrsiKz6t//E/hR5/iuVjH62pdztk= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231121165523-9e68e5a6ce6a h1:pDUUKxDmHpO7P7lRUu2Niq0VbCcKU9IWEHclbTI37m0= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231121165523-9e68e5a6ce6a/go.mod h1:uugR8U8Rlk2Xbn1ne7WWkPIcLReOyyXeQ/6tBg2Lsu8= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231201182806-a95f9ec50b08 h1:52o4zeQlBhn0EGkg/AWudypTYKr4nmKkT5qxfD0L9Hw= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231201182806-a95f9ec50b08/go.mod h1:uugR8U8Rlk2Xbn1ne7WWkPIcLReOyyXeQ/6tBg2Lsu8= github.com/onflow/flow-go-sdk v0.41.7-stable-cadence/go.mod h1:ejVN+bqcsTHVvRpDDJDoBNdmcxUfFMW4IvdTbMeQ/hQ= github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2 h1:vUVO6m85BiT8c50Oc8YGc3CU+sGqiKW9FZbmiRph2dU= github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2/go.mod h1:mbLrR3MkYbi9LH3yasDj1jrR4QTR8vjRLVFCm4jMHn0= @@ -895,6 +897,8 @@ github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230921055127-6493dc1ba948 github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230921055127-6493dc1ba948/go.mod h1:cWMAsK1grBHKPIKxYVUv2rX+Nz0Ttq+PEQz4OjqCmpU= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20231120214141-b11e79f1bb27 h1:qm4ErSz3B3lsdVy/usLYpLvpzibbG6xQTkxAIcmYuDs= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20231120214141-b11e79f1bb27/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20231204201122-eb1dd9560768 h1:MxeL05qV/fKEkrQhAmjJ8D9W2r8BuKfpljc1EOlg1q4= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20231204201122-eb1dd9560768/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/sdks v0.5.0/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= From 20e60570d199df10c3d462ea115c26b3a9928ef8 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Mon, 11 Dec 2023 10:46:59 -0600 Subject: [PATCH 058/160] remove view from getRandomSourceHistoryPage and use account.storage --- lib/go/test/random_beacon_test.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/go/test/random_beacon_test.go b/lib/go/test/random_beacon_test.go index 1b0990a60..a8050c027 100644 --- a/lib/go/test/random_beacon_test.go +++ b/lib/go/test/random_beacon_test.go @@ -14,6 +14,11 @@ import ( func TestRandomBeaconHistory(t *testing.T) { _, adapter := newBlockchain() + // env := templates.Environment{ + // FungibleTokenAddress: emulatorFTAddress, + // FlowTokenAddress: emulatorFlowTokenAddress, + // } + accountKeys := test.AccountKeyGenerator() // Create new keys for the DKG account and deploy @@ -27,4 +32,6 @@ func TestRandomBeaconHistory(t *testing.T) { }, }) assert.NoError(t, err) + + //env.DkgAddress = DKGAddress.Hex() } From 99ff4026bdd0534619a79c52fa3c3ec5e34c650d Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 12 Dec 2023 14:30:43 -0600 Subject: [PATCH 059/160] remove custom destructors and fix entitlement usage --- contracts/epochs/FlowClusterQC.cdc | 5 ----- contracts/epochs/FlowEpoch.cdc | 4 ++-- lib/go/contracts/go.mod | 4 ++-- lib/go/contracts/go.sum | 14 ++++---------- 4 files changed, 8 insertions(+), 19 deletions(-) diff --git a/contracts/epochs/FlowClusterQC.cdc b/contracts/epochs/FlowClusterQC.cdc index 8f8efda74..b4d85d4ac 100644 --- a/contracts/epochs/FlowClusterQC.cdc +++ b/contracts/epochs/FlowClusterQC.cdc @@ -279,11 +279,6 @@ access(all) contract FlowClusterQC { FlowClusterQC.voterClaimed[nodeID] = true } - // If the voter resource is destroyed, a new one could potentially be claimed - destroy () { - FlowClusterQC.voterClaimed[self.nodeID] = nil - } - /// Submits the given vote. Can be called only once per epoch /// /// Params: voteSignature: Signed `voteMessage` with the nodes `stakingKey` diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index fc58381d6..b0517f5b2 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -534,7 +534,7 @@ access(all) contract FlowEpoch { let proposedNodeIDs = FlowEpoch.endStakingAuction() - FlowEpoch.startEpochSetup(proposedNodeIDs: proposedNodeIDs, randomSource: unsafeRandom().toString()) + FlowEpoch.startEpochSetup(proposedNodeIDs: proposedNodeIDs, randomSource: revertibleRandom().toString()) } /// Calls `FlowEpoch` functions to end the Epoch Setup phase @@ -877,7 +877,7 @@ access(all) contract FlowEpoch { while i > 0 { // Pick a random index from 0 to i - var randomNum = unsafeRandom() + var randomNum = revertibleRandom() var randomIndex = randomNum % UInt64(i + 1) // Swap arr[i] with the element at random index diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 8bb61bfa4..0ef0bfdd6 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -4,9 +4,9 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231201182806-a95f9ec50b08 + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231212194336-a2802ba36596 github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2 - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20231204201122-eb1dd9560768 + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20231212194623-24d595274bdd github.com/stretchr/testify v1.8.4 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 32d69c5ed..266a5bee8 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -884,24 +884,18 @@ github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f/go.mod h1:xvP61FoOs github.com/onflow/cadence v0.39.13-stable-cadence/go.mod h1:SxT8/IEkS1drFj2ofUEK9S6KyJ5GQbrm0LX4EFCp/7Q= github.com/onflow/cadence v1.0.0-preview.1 h1:Y/q/43aDc93/1Atsxx3+e2V/dZiQuF1TqkXEVboA5pY= github.com/onflow/cadence v1.0.0-preview.1/go.mod h1:Q5Up9Kt+J6zuAFmgrsiKz6t//E/hR5/iuVjH62pdztk= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231121165523-9e68e5a6ce6a h1:pDUUKxDmHpO7P7lRUu2Niq0VbCcKU9IWEHclbTI37m0= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231121165523-9e68e5a6ce6a/go.mod h1:uugR8U8Rlk2Xbn1ne7WWkPIcLReOyyXeQ/6tBg2Lsu8= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231201182806-a95f9ec50b08 h1:52o4zeQlBhn0EGkg/AWudypTYKr4nmKkT5qxfD0L9Hw= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231201182806-a95f9ec50b08/go.mod h1:uugR8U8Rlk2Xbn1ne7WWkPIcLReOyyXeQ/6tBg2Lsu8= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231212194336-a2802ba36596 h1:MTgrwXkiWwNysYpWGzWjc1n9w1nfXvizmGkSAuEY6jk= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231212194336-a2802ba36596/go.mod h1:uugR8U8Rlk2Xbn1ne7WWkPIcLReOyyXeQ/6tBg2Lsu8= github.com/onflow/flow-go-sdk v0.41.7-stable-cadence/go.mod h1:ejVN+bqcsTHVvRpDDJDoBNdmcxUfFMW4IvdTbMeQ/hQ= github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2 h1:vUVO6m85BiT8c50Oc8YGc3CU+sGqiKW9FZbmiRph2dU= github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2/go.mod h1:mbLrR3MkYbi9LH3yasDj1jrR4QTR8vjRLVFCm4jMHn0= github.com/onflow/flow-go/crypto v0.24.7 h1:RCLuB83At4z5wkAyUCF7MYEnPoIIOHghJaODuJyEoW0= github.com/onflow/flow-go/crypto v0.24.7/go.mod h1:fqCzkIBBMRRkciVrvW21rECKq1oD7Q6u+bCI78lfNX0= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230921055127-6493dc1ba948 h1:eQ+0hagtIcxzTy+6ONrxwABCjJQCQmBFfIU5qatUg0o= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20230921055127-6493dc1ba948/go.mod h1:cWMAsK1grBHKPIKxYVUv2rX+Nz0Ttq+PEQz4OjqCmpU= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20231120214141-b11e79f1bb27 h1:qm4ErSz3B3lsdVy/usLYpLvpzibbG6xQTkxAIcmYuDs= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20231120214141-b11e79f1bb27/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20231204201122-eb1dd9560768 h1:MxeL05qV/fKEkrQhAmjJ8D9W2r8BuKfpljc1EOlg1q4= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20231204201122-eb1dd9560768/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20231212194623-24d595274bdd h1:ExvryNEp/B4bhLBGMVh9FHcviN4YloGncDpeSbDkCwg= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20231212194623-24d595274bdd/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/sdks v0.5.0/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= -github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= From 761f87992016518185441803cb1684f04c349c12 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 2 Jan 2024 15:48:05 -0600 Subject: [PATCH 060/160] get all go tests passing for cadence 1.0 --- .github/workflows/ci.yml | 6 +- Makefile | 4 +- contracts/NodeVersionBeacon.cdc | 24 +-- contracts/epochs/FlowEpoch.cdc | 12 +- .../testContracts/TestFlowIDTableStaking.cdc | 32 +-- lib/go/contracts/contracts.go | 3 + lib/go/contracts/go.mod | 15 +- lib/go/contracts/go.sum | 15 +- lib/go/templates/internal/assets/assets.go | 186 +++++++++--------- lib/go/templates/manifest.mainnet.json | 68 +++---- lib/go/templates/manifest.testnet.json | 68 +++---- .../admin/admin_create_shared_accounts.cdc | 7 +- .../admin/admin_deposit_account_creator.cdc | 6 +- ...tody_create_account_with_lease_account.cdc | 9 +- .../custody_create_only_lease_account.cdc | 9 +- .../custody_create_only_shared_account.cdc | 9 +- .../admin/custody_create_shared_accounts.cdc | 11 +- .../admin/custody_setup_account_creator.cdc | 2 +- .../stakingCollection/close_stake.cdc | 4 +- .../create_machine_account.cdc | 4 +- .../create_new_tokenholder_acct.cdc | 22 +-- .../stakingCollection/register_delegator.cdc | 4 +- .../register_multiple_delegators.cdc | 4 +- .../register_multiple_nodes.cdc | 4 +- .../stakingCollection/register_node.cdc | 4 +- .../stakingCollection/request_unstaking.cdc | 4 +- .../stakingCollection/restake_all_stakers.cdc | 4 +- .../setup_staking_collection.cdc | 18 +- .../stakingCollection/stake_new_tokens.cdc | 4 +- .../stake_rewarded_tokens.cdc | 4 +- .../stake_unstaked_tokens.cdc | 4 +- .../stakingCollection/transfer_delegator.cdc | 8 +- .../stakingCollection/transfer_node.cdc | 8 +- .../stakingCollection/unstake_all.cdc | 4 +- .../update_networking_address.cdc | 4 +- .../withdraw_from_machine_account.cdc | 4 +- .../withdraw_rewarded_tokens.cdc | 4 +- .../withdraw_unstaked_tokens.cdc | 4 +- transactions/stakingProxy/register_node.cdc | 6 +- .../stakingProxy/setup_node_account.cdc | 8 +- 40 files changed, 320 insertions(+), 300 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f725e152b..7ded1580b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,11 +11,11 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-go@v1 with: - go-version: '1.21.5' + go-version: '1.19' - name: Install Flow CLI - run: sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/feature/stable-cadence/install.sh)" + run: sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)" -- v1.5.0 - name: Flow cli Version - run: flow-c1 version + run: flow version - name: Update PATH run: echo "/root/.local/bin" >> $GITHUB_PATH - name: Run tests diff --git a/Makefile b/Makefile index 700b34e91..f19a9cb18 100644 --- a/Makefile +++ b/Makefile @@ -2,9 +2,9 @@ test: $(MAKE) generate -C lib/go $(MAKE) test -C lib/go - flow-c1 test --cover --covercode="contracts" tests/*.cdc + flow test --cover --covercode="contracts" tests/test_*.cdc .PHONY: ci ci: $(MAKE) ci -C lib/go - flow-c1 test --cover --covercode="contracts" tests/*.cdc + flow test --cover --covercode="contracts" tests/test_*.cdc diff --git a/contracts/NodeVersionBeacon.cdc b/contracts/NodeVersionBeacon.cdc index 2fec57dd3..2d982a4b5 100644 --- a/contracts/NodeVersionBeacon.cdc +++ b/contracts/NodeVersionBeacon.cdc @@ -37,7 +37,7 @@ access(all) contract NodeVersionBeacon { /// Returns version in Semver format (e.g. v..-) /// as a String - access(all) fun toString(): String { + access(all) view fun toString(): String { let semverCoreString = self.major.toString() .concat(".") .concat( @@ -58,7 +58,7 @@ access(all) contract NodeVersionBeacon { /// Returns true if Semver core is greater than /// passed Semver core and false otherwise - access(all) fun coreGreaterThan(_ other: Semver): Bool { + access(all) view fun coreGreaterThan(_ other: Semver): Bool { if (self.major != other.major) { return self.major > other.major } @@ -76,31 +76,31 @@ access(all) contract NodeVersionBeacon { /// Returns true if Semver core is greater than or /// equal to passed Semver core and false otherwise - access(all) fun coreGreaterThanOrEqualTo(_ other: Semver): Bool { + access(all) view fun coreGreaterThanOrEqualTo(_ other: Semver): Bool { return self.coreGreaterThan(other) || self.coreEqualTo(other) } /// Returns true if Semver core is less than /// passed Semver core and false otherwise - access(all) fun coreLessThan(_ other: Semver): Bool { + access(all) view fun coreLessThan(_ other: Semver): Bool { return !self.coreGreaterThanOrEqualTo(other) } /// Returns true if Semver core is less than or /// equal to passed Semver core and false otherwise - access(all) fun coreLessThanOrEqualTo(_ other: Semver): Bool { + access(all) view fun coreLessThanOrEqualTo(_ other: Semver): Bool { return !self.coreGreaterThan(other) } /// Returns true if Semver is equal to passed /// Semver core and false otherwise - access(all) fun coreEqualTo(_ other: Semver): Bool { + access(all) view fun coreEqualTo(_ other: Semver): Bool { return self.major == other.major && self.minor == other.minor && self.patch == other.patch } /// Returns true if Semver is *exactly* equal to passed /// Semver and false otherwise - access(all) fun strictEqualTo(_ other: Semver): Bool { + access(all) view fun strictEqualTo(_ other: Semver): Bool { return self.coreEqualTo(other) && self.preRelease == other.preRelease } } @@ -373,13 +373,13 @@ access(all) contract NodeVersionBeacon { } /// Returns the versionBoundaryFreezePeriod - access(all) fun getVersionBoundaryFreezePeriod(): UInt64 { + access(all) view fun getVersionBoundaryFreezePeriod(): UInt64 { return NodeVersionBeacon.versionBoundaryFreezePeriod } /// Returns the sequence number of the next version beacon event /// This can be used to verify that no version beacon events were missed. - access(all) fun getNextVersionBeaconSequence(): UInt64 { + access(all) view fun getNextVersionBeaconSequence(): UInt64 { return self.nextVersionBeaconEventSequence } @@ -412,7 +412,7 @@ access(all) contract NodeVersionBeacon { } /// Checks whether given version was compatible at the given historical block height - access(all) fun getVersionBoundary(effectiveAtBlockHeight: UInt64): VersionBoundary { + access(all) view fun getVersionBoundary(effectiveAtBlockHeight: UInt64): VersionBoundary { let block = self.searchForClosestHistoricalBlockBoundary(blockHeight: effectiveAtBlockHeight) return self.versionBoundary[block]! @@ -424,7 +424,7 @@ access(all) contract NodeVersionBeacon { access(all) let totalLength: Int access(all) let values : [VersionBoundary] - init(page: Int, perPage: Int, totalLength: Int, values: [VersionBoundary]) { + view init(page: Int, perPage: Int, totalLength: Int, values: [VersionBoundary]) { self.page = page self.perPage = perPage self.totalLength = totalLength @@ -463,7 +463,7 @@ access(all) contract NodeVersionBeacon { /// Binary search algorithm to find closest value key in versionTable that is <= target value - access(contract) fun searchForClosestHistoricalBlockBoundary(blockHeight: UInt64): UInt64 { + access(contract) view fun searchForClosestHistoricalBlockBoundary(blockHeight: UInt64): UInt64 { // Return last block boundary if target is beyond let length = self.versionBoundaryBlockList.length if blockHeight >= self.versionBoundaryBlockList[length - 1] { diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index b0517f5b2..cdb0e2487 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -534,7 +534,17 @@ access(all) contract FlowEpoch { let proposedNodeIDs = FlowEpoch.endStakingAuction() - FlowEpoch.startEpochSetup(proposedNodeIDs: proposedNodeIDs, randomSource: revertibleRandom().toString()) + /// random source must be a hex string of 32 characters (i.e 16 bytes or 128 bits) + /// `revertibleRandom` returns a UInt64 (8 bytes) + let randomLow = revertibleRandom().toBigEndianBytes() + let randomHigh = revertibleRandom().toBigEndianBytes() + var randomSource = String.encodeHex(randomHigh).concat(String.encodeHex(randomLow)) + assert ( + randomSource.length == 32, + message: "Random source must be a hex string of 32 characters" + ) + + FlowEpoch.startEpochSetup(proposedNodeIDs: proposedNodeIDs, randomSource: randomSource) } /// Calls `FlowEpoch` functions to end the Epoch Setup phase diff --git a/contracts/testContracts/TestFlowIDTableStaking.cdc b/contracts/testContracts/TestFlowIDTableStaking.cdc index 85fd1d041..6aff98b51 100644 --- a/contracts/testContracts/TestFlowIDTableStaking.cdc +++ b/contracts/testContracts/TestFlowIDTableStaking.cdc @@ -98,6 +98,8 @@ access(all) contract FlowIDTableStaking { } } + access(all) entitlement NodeOperator + /// Resource that the node operator controls for staking access(all) resource NodeStaker { @@ -108,42 +110,42 @@ access(all) contract FlowIDTableStaking { self.id = id } - access(all) fun updateNetworkingAddress(_ newAddress: String) { + access(NodeOperator) fun updateNetworkingAddress(_ newAddress: String) { } /// Add new tokens to the system to stake during the next epoch - access(all) fun stakeNewTokens(_ tokens: @{FungibleToken.Vault}) { + access(NodeOperator) fun stakeNewTokens(_ tokens: @{FungibleToken.Vault}) { destroy tokens } /// Stake tokens that are in the tokensUnstaked bucket /// but haven't been officially staked - access(all) fun stakeUnstakedTokens(amount: UFix64) { + access(NodeOperator) fun stakeUnstakedTokens(amount: UFix64) { } /// Stake tokens that are in the tokensRewarded bucket /// but haven't been officially staked - access(all) fun stakeRewardedTokens(amount: UFix64) { + access(NodeOperator) fun stakeRewardedTokens(amount: UFix64) { } /// Request amount tokens to be removed from staking /// at the end of the next epoch - access(all) fun requestUnstaking(amount: UFix64) { + access(NodeOperator) fun requestUnstaking(amount: UFix64) { } /// Requests to unstake all of the node operators staked and committed tokens, /// as well as all the staked and committed tokens of all of their delegators - access(all) fun unstakeAll() { + access(NodeOperator) fun unstakeAll() { } /// Withdraw tokens from the unstaked bucket - access(all) fun withdrawUnstakedTokens(amount: UFix64): @{FungibleToken.Vault} { + access(NodeOperator) fun withdrawUnstakedTokens(amount: UFix64): @{FungibleToken.Vault} { let flowTokenMinter = FlowIDTableStaking.account.storage.borrow<&FlowToken.Minter>(from: /storage/flowTokenMinter) ?? panic("Could not borrow minter reference") @@ -152,7 +154,7 @@ access(all) contract FlowIDTableStaking { } /// Withdraw tokens from the rewarded bucket - access(all) fun withdrawRewardedTokens(amount: UFix64): @{FungibleToken.Vault} { + access(NodeOperator) fun withdrawRewardedTokens(amount: UFix64): @{FungibleToken.Vault} { let flowTokenMinter = FlowIDTableStaking.account.storage.borrow<&FlowToken.Minter>(from: /storage/flowTokenMinter) ?? panic("Could not borrow minter reference") @@ -161,6 +163,8 @@ access(all) contract FlowIDTableStaking { } + access(all) entitlement DelegatorOwner + access(all) struct DelegatorInfo { access(all) let id: UInt32 @@ -202,28 +206,28 @@ access(all) contract FlowIDTableStaking { } /// Delegate new tokens to the node operator - access(all) fun delegateNewTokens(from: @{FungibleToken.Vault}) { + access(DelegatorOwner) fun delegateNewTokens(from: @{FungibleToken.Vault}) { destroy from } /// Delegate tokens from the unstaked bucket to the node operator - access(all) fun delegateUnstakedTokens(amount: UFix64) { + access(DelegatorOwner) fun delegateUnstakedTokens(amount: UFix64) { } /// Delegate tokens from the rewards bucket to the node operator - access(all) fun delegateRewardedTokens(amount: UFix64) { + access(DelegatorOwner) fun delegateRewardedTokens(amount: UFix64) { } /// Request to unstake delegated tokens during the next epoch - access(all) fun requestUnstaking(amount: UFix64) { + access(DelegatorOwner) fun requestUnstaking(amount: UFix64) { } /// Withdraw tokens from the unstaked bucket - access(all) fun withdrawUnstakedTokens(amount: UFix64): @{FungibleToken.Vault} { + access(DelegatorOwner) fun withdrawUnstakedTokens(amount: UFix64): @{FungibleToken.Vault} { let flowTokenMinter = FlowIDTableStaking.account.storage.borrow<&FlowToken.Minter>(from: /storage/flowTokenMinter) ?? panic("Could not borrow minter reference") @@ -231,7 +235,7 @@ access(all) contract FlowIDTableStaking { } /// Withdraw tokens from the rewarded bucket - access(all) fun withdrawRewardedTokens(amount: UFix64): @{FungibleToken.Vault} { + access(DelegatorOwner) fun withdrawRewardedTokens(amount: UFix64): @{FungibleToken.Vault} { let flowTokenMinter = FlowIDTableStaking.account.storage.borrow<&FlowToken.Minter>(from: /storage/flowTokenMinter) ?? panic("Could not borrow minter reference") diff --git a/lib/go/contracts/contracts.go b/lib/go/contracts/contracts.go index 9c98690e1..31bf082dc 100644 --- a/lib/go/contracts/contracts.go +++ b/lib/go/contracts/contracts.go @@ -400,6 +400,9 @@ func TESTFlowStakingCollection( code = strings.ReplaceAll(code, placeholderDKGAddr, withHexPrefix(dkgAddress)) code = strings.ReplaceAll(code, placeholderEpochAddr, withHexPrefix(epochAddress)) + code = strings.ReplaceAll(code, "access(self) fun getTokens", "access(all) fun getTokens") + code = strings.ReplaceAll(code, "access(self) fun depositTokens", "access(all) fun depositTokens") + return []byte(code) } diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 0ef0bfdd6..58fd1ebb7 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -37,12 +37,19 @@ require ( github.com/zeebo/blake3 v0.2.3 // indirect github.com/zeebo/xxh3 v1.0.2 // indirect go.opentelemetry.io/otel v1.14.0 // indirect - golang.org/x/crypto v0.7.0 // indirect + golang.org/x/crypto v0.17.0 // indirect golang.org/x/exp v0.0.0-20230321023759-10a507213a29 // indirect - golang.org/x/sys v0.6.0 // indirect - golang.org/x/text v0.8.0 // indirect + golang.org/x/sys v0.15.0 // indirect + golang.org/x/text v0.14.0 // indirect golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) -// replace github.com/onflow/flow-ft/lib/go/contracts => ../../../../flow-ft/lib/go/contracts +// This retraction block retracts version v1.2.3, which was tagged out-of-order. +// Currently go considers v1.2.3 to be the latest version, due to semver ordering, +// despite it being several months old and many revisions behind the tip. +// This retract block is based on https://go.dev/ref/mod#go-mod-file-retract. +retract ( + v1.2.4 // contains retraction only + v1.2.3 // accidentally published with out-of-order tag +) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 266a5bee8..8ccd4a1df 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1028,8 +1028,9 @@ golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5y golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw= -golang.org/x/crypto v0.7.0 h1:AvwMYaRytfdeVt3u6mLaxYtErKYjxA2OXjJ1HHq6t3A= golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= +golang.org/x/crypto v0.17.0 h1:r8bRNjWL3GshPW3gkd+RpvzWrZAwPS49OmTGZ/uhM4k= +golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -1072,7 +1073,6 @@ golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRu golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 h1:VLliZ0d+/avPrXXH+OakdXhpJuEoBZuwh1m2j7U6Iug= golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= @@ -1090,7 +1090,6 @@ golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= golang.org/x/mod v0.6.0/go.mod h1:4mET923SAdbXp2ki8ey+zGs1SLqsuM2Y0uvdZR/fUNI= golang.org/x/mod v0.7.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.8.0 h1:LUYupSeNrTNCGzR/hVBk2NHZO4hXcVaW1k4Qx7rjPx8= golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -1279,8 +1278,9 @@ golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.4.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= +golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= @@ -1303,8 +1303,9 @@ golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.5.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.6.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.8.0 h1:57P1ETyNKtuIjB4SRd15iJxuhj8Gc416Y78H3qgMh68= golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= +golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= +golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= @@ -1372,7 +1373,6 @@ golang.org/x/tools v0.1.9/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= golang.org/x/tools v0.2.0/go.mod h1:y4OqIKeOV/fWJetJ8bXPU1sEVniLMIyDAZWeHdV+NTA= golang.org/x/tools v0.3.0/go.mod h1:/rWhSS2+zyEVwoJf8YAX6L2f0ntZ7Kn/mGgAWcipA5k= -golang.org/x/tools v0.6.0 h1:BOw41kyTf3PuCW1pVQf8+Cyg8pMlkYB1oo9iJ6D/lKM= golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= @@ -1644,7 +1644,6 @@ gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8 gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= @@ -1670,7 +1669,6 @@ honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.1.3/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las= -lukechampine.com/blake3 v1.1.7 h1:GgRMhmdsuK8+ii6UZFDL8Nb+VyMwadAgcJyfYHxG6n0= lukechampine.com/blake3 v1.1.7/go.mod h1:tkKEOtDkNtklkXtLNEOGNq5tcV90tJiA1vAA12R78LA= lukechampine.com/uint128 v1.1.1/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= lukechampine.com/uint128 v1.2.0/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= @@ -1706,7 +1704,6 @@ modernc.org/strutil v1.1.3/go.mod h1:MEHNA7PdEnEwLvspRMtWTNnp2nnyvMfkimT1NKNAGbw modernc.org/tcl v1.13.1/go.mod h1:XOLfOwzhkljL4itZkK6T72ckMgvj0BDsnKNdZVUOecw= modernc.org/token v1.0.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= modernc.org/z v1.5.1/go.mod h1:eWFB510QWW5Th9YGZT81s+LwvaAs3Q2yr4sP0rmLkv8= -pgregory.net/rapid v0.4.7 h1:MTNRktPuv5FNqOO151TM9mDTa+XHcX6ypYeISDVD14g= pgregory.net/rapid v0.4.7/go.mod h1:UYpPVyjFHzYBGHIxLFoupi8vwk6rXNzRY9OMvVxFIOU= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 572f4f3c3..2f23aa15b 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -50,7 +50,7 @@ // epoch/admin/update_clusters.cdc (361B) // epoch/admin/update_dkg_phase_views.cdc (351B) // epoch/admin/update_epoch_config.cdc (1.778kB) -// epoch/admin/update_epoch_timing_config.cdc (483B) +// epoch/admin/update_epoch_timing_config.cdc (506B) // epoch/admin/update_epoch_views.cdc (352B) // epoch/admin/update_reward.cdc (364B) // epoch/admin/update_staking_views.cdc (354B) @@ -96,7 +96,7 @@ // idTableStaking/admin/set_claimed.cdc (633B) // idTableStaking/admin/set_node_weight.cdc (650B) // idTableStaking/admin/set_non_operational.cdc (785B) -// idTableStaking/admin/set_open_access_node_slots.cdc (916B) +// idTableStaking/admin/set_open_access_node_slots.cdc (936B) // idTableStaking/admin/set_slot_limits.cdc (1.572kB) // idTableStaking/admin/start_staking.cdc (597B) // idTableStaking/admin/transfer_admin.cdc (658B) @@ -167,17 +167,17 @@ // idTableStaking/scripts/get_total_staked_by_type.cdc (256B) // idTableStaking/scripts/get_weekly_payout.cdc (202B) // inspect_field.cdc (131B) -// lockedTokens/admin/admin_create_shared_accounts.cdc (3.914kB) +// lockedTokens/admin/admin_create_shared_accounts.cdc (3.685kB) // lockedTokens/admin/admin_deploy_contract.cdc (463B) -// lockedTokens/admin/admin_deposit_account_creator.cdc (818B) +// lockedTokens/admin/admin_deposit_account_creator.cdc (852B) // lockedTokens/admin/admin_remove_delegator.cdc (469B) // lockedTokens/admin/check_main_registration.cdc (955B) // lockedTokens/admin/check_shared_registration.cdc (639B) -// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.385kB) -// lockedTokens/admin/custody_create_only_lease_account.cdc (3.285kB) -// lockedTokens/admin/custody_create_only_shared_account.cdc (3.52kB) -// lockedTokens/admin/custody_create_shared_accounts.cdc (3.654kB) -// lockedTokens/admin/custody_setup_account_creator.cdc (800B) +// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.453kB) +// lockedTokens/admin/custody_create_only_lease_account.cdc (3.353kB) +// lockedTokens/admin/custody_create_only_shared_account.cdc (3.588kB) +// lockedTokens/admin/custody_create_shared_accounts.cdc (3.724kB) +// lockedTokens/admin/custody_setup_account_creator.cdc (764B) // lockedTokens/admin/deposit_locked_tokens.cdc (1.688kB) // lockedTokens/admin/unlock_tokens.cdc (599B) // lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc (2.884kB) @@ -242,16 +242,16 @@ // randomBeaconHistory/scripts/get_latest_source_of_randomness.cdc (200B) // randomBeaconHistory/scripts/get_source_of_randomness.cdc (305B) // randomBeaconHistory/scripts/get_source_of_randomness_page.cdc (326B) -// stakingCollection/close_stake.cdc (781B) -// stakingCollection/create_machine_account.cdc (1.175kB) -// stakingCollection/create_new_tokenholder_acct.cdc (3.413kB) +// stakingCollection/close_stake.cdc (869B) +// stakingCollection/create_machine_account.cdc (1.263kB) +// stakingCollection/create_new_tokenholder_acct.cdc (3.637kB) // stakingCollection/deploy_collection_contract.cdc (312B) -// stakingCollection/register_delegator.cdc (698B) -// stakingCollection/register_multiple_delegators.cdc (790B) -// stakingCollection/register_multiple_nodes.cdc (1.607kB) -// stakingCollection/register_node.cdc (1.445kB) -// stakingCollection/request_unstaking.cdc (707B) -// stakingCollection/restake_all_stakers.cdc (1.328kB) +// stakingCollection/register_delegator.cdc (786B) +// stakingCollection/register_multiple_delegators.cdc (878B) +// stakingCollection/register_multiple_nodes.cdc (1.695kB) +// stakingCollection/register_node.cdc (1.533kB) +// stakingCollection/request_unstaking.cdc (795B) +// stakingCollection/restake_all_stakers.cdc (1.416kB) // stakingCollection/scripts/does_account_have_staking_collection.cdc (260B) // stakingCollection/scripts/get_all_delegator_info.cdc (360B) // stakingCollection/scripts/get_all_node_info.cdc (340B) @@ -262,26 +262,26 @@ // stakingCollection/scripts/get_machine_accounts.cdc (321B) // stakingCollection/scripts/get_node_ids.cdc (251B) // stakingCollection/scripts/get_unlocked_tokens_used.cdc (297B) -// stakingCollection/setup_staking_collection.cdc (3.478kB) -// stakingCollection/stake_new_tokens.cdc (831B) -// stakingCollection/stake_rewarded_tokens.cdc (724B) -// stakingCollection/stake_unstaked_tokens.cdc (724B) +// stakingCollection/setup_staking_collection.cdc (3.511kB) +// stakingCollection/stake_new_tokens.cdc (919B) +// stakingCollection/stake_rewarded_tokens.cdc (812B) +// stakingCollection/stake_unstaked_tokens.cdc (812B) // stakingCollection/test/deposit_tokens.cdc (887B) // stakingCollection/test/get_tokens.cdc (693B) -// stakingCollection/transfer_delegator.cdc (2.027kB) -// stakingCollection/transfer_node.cdc (2.141kB) -// stakingCollection/unstake_all.cdc (633B) -// stakingCollection/update_networking_address.cdc (651B) -// stakingCollection/withdraw_from_machine_account.cdc (713B) -// stakingCollection/withdraw_rewarded_tokens.cdc (885B) -// stakingCollection/withdraw_unstaked_tokens.cdc (900B) +// stakingCollection/transfer_delegator.cdc (2.021kB) +// stakingCollection/transfer_node.cdc (2.135kB) +// stakingCollection/unstake_all.cdc (721B) +// stakingCollection/update_networking_address.cdc (739B) +// stakingCollection/withdraw_from_machine_account.cdc (801B) +// stakingCollection/withdraw_rewarded_tokens.cdc (973B) +// stakingCollection/withdraw_unstaked_tokens.cdc (988B) // stakingProxy/add_node_info.cdc (647B) // stakingProxy/get_node_info.cdc (468B) -// stakingProxy/register_node.cdc (1.13kB) +// stakingProxy/register_node.cdc (1.158kB) // stakingProxy/remove_node_info.cdc (330B) // stakingProxy/remove_staking_proxy.cdc (338B) // stakingProxy/request_unstaking.cdc (500B) -// stakingProxy/setup_node_account.cdc (685B) +// stakingProxy/setup_node_account.cdc (626B) // stakingProxy/stake_new_tokens.cdc (498B) // stakingProxy/stake_unstaked_tokens.cdc (503B) // stakingProxy/unstake_all.cdc (464B) @@ -1361,7 +1361,7 @@ func epochAdminUpdate_epoch_configCdc() (*asset, error) { return a, nil } -var _epochAdminUpdate_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\xc1\x6a\xc3\x30\x0c\x86\xef\x79\x0a\xd1\xc3\x48\x60\x84\x1d\xc6\x0e\x65\x5d\x09\x69\xc6\x76\x5a\x59\xba\x07\xf0\x1c\x27\x31\xc4\x96\x51\x14\x3a\x18\x7d\xf7\xe1\x98\x34\xc9\xaa\x83\x91\x65\xfd\xd2\xe7\x5f\x1b\x87\xc4\xf0\xda\xe1\xb9\x70\x28\x5b\xa8\x09\x0d\x3c\xfc\x14\xc7\x8f\xfc\x2d\x3b\x1c\x3e\x8b\xb2\x8c\x22\x26\x61\x7b\x21\x59\xa3\x8d\xab\x81\x84\x4f\xb6\xf0\xf5\x6e\xf9\xe9\xf1\x1e\x48\xd5\x39\x0e\x96\x15\xad\x6a\x27\x6d\x54\xcf\xc2\xb8\xa9\x9a\xc0\x6f\x04\x00\xe0\x48\x39\x41\x2a\xee\x75\x63\xbd\x26\x1b\xb8\xcd\xa4\xf4\x23\xa6\x16\x1f\x9d\x62\x50\x9e\x29\xab\x8c\xb6\xb0\x83\xd0\x9f\x7e\x23\x11\x9e\x9f\xef\xae\xcc\xe9\xd8\xf0\x12\x7b\xf4\xed\xfc\x95\x54\xf8\x72\xc9\x48\xa2\x51\x47\xc1\x6d\x72\x1d\xed\x63\xbf\x07\x27\xac\x96\xf1\x26\xc7\xa1\xab\xc0\x22\x43\x18\x0d\xa3\x30\x38\xd1\x07\x39\x38\xc1\xed\x26\x89\x56\x70\x12\x6d\xad\x1b\xd8\x2d\x56\x8e\xe7\x49\x1b\x6d\x9b\x7c\x7c\x5d\xd8\x35\x65\x6b\xc3\xe6\xfc\xbf\x69\xcb\xdb\x8c\x3e\x3b\x92\x0e\xae\x12\xac\x6e\x57\x06\xae\x20\xb9\x44\x97\xbf\x00\x00\x00\xff\xff\x8d\xbe\x84\x8a\xe3\x01\x00\x00" +var _epochAdminUpdate_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x50\x4d\x6b\xf3\x30\x0c\xbe\xe7\x57\x88\x1e\x4a\x02\x2f\xe1\x3d\x8c\x1d\xca\xba\xd2\xa5\x1d\xdb\x69\x65\xed\x76\xd7\x1c\x27\x31\xc4\x96\x71\x64\x3a\x18\xfd\xef\xc3\xf1\xd2\x24\x9b\x0e\x46\x96\xfd\xe8\xf9\x50\xda\x92\x63\x78\x6c\xe9\xbc\xb7\x24\x1a\xa8\x1c\x69\xf8\xff\xb9\x3f\xbc\x14\x4f\xdb\xdd\xee\x75\x7f\x3c\x26\x09\x3b\x34\x1d\x0a\x56\x64\xd2\xd2\x3b\x0c\xcd\x0a\xde\x9e\x0d\xdf\xde\xfc\x03\x27\xab\x82\xbc\x61\xe9\x66\xb3\x93\xd2\xb2\x63\xd4\x76\x98\x66\xf0\x95\x00\x00\x58\x27\x2d\x3a\x99\x76\xaa\x36\x01\x83\x9e\x9b\xf4\x81\x9c\xa3\xf3\x3b\xb6\x5e\x66\xb0\xdc\x0a\x11\x36\x0e\x88\x50\xad\x64\x90\x41\xe2\xb6\xd4\xca\xc0\x1a\x22\x3c\xef\x98\x1c\xd6\x32\xff\xe8\x17\xdc\x2d\xaf\x56\xf2\xfe\xe3\x7d\x1a\x1c\xad\x46\x87\x39\x86\xf1\x31\xa2\x0e\xc8\x4d\x76\xa5\x08\xb5\xd9\x80\x45\xa3\x44\xba\x28\xc8\xb7\x25\x18\x62\x88\xab\xa1\x07\xc6\x80\x7e\x48\xc1\x22\x37\x8b\x2c\x99\x89\x14\x64\x2a\x55\xc3\x7a\x42\xd9\x9f\x27\xa5\x95\xa9\x8b\xfe\x75\x92\xe2\xd0\xcd\x73\x1c\xfb\xdf\x59\x4e\x6f\xa3\xf4\x31\x99\xdc\xdb\x12\x59\xfe\xa5\x8c\xba\x22\xe4\x92\x5c\xbe\x03\x00\x00\xff\xff\x2d\x63\x07\xe0\xfa\x01\x00\x00" func epochAdminUpdate_epoch_timing_configCdcBytes() ([]byte, error) { return bindataRead( @@ -1377,7 +1377,7 @@ func epochAdminUpdate_epoch_timing_configCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_epoch_timing_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0x1f, 0x6d, 0xa3, 0x37, 0xf6, 0x2c, 0x57, 0xc5, 0x90, 0xee, 0xac, 0xac, 0x3c, 0xb6, 0x96, 0x6a, 0xe5, 0x89, 0x8e, 0xd9, 0x24, 0x2e, 0x57, 0xa, 0x3a, 0x27, 0x79, 0x9a, 0x26, 0xa4, 0xb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x32, 0x4c, 0x6e, 0x16, 0x6a, 0xf9, 0xc9, 0xf6, 0xfc, 0x23, 0x0, 0xe7, 0x75, 0xcf, 0x27, 0x54, 0x54, 0xcf, 0x9b, 0x9e, 0xdf, 0x19, 0xa9, 0x5a, 0x23, 0xd0, 0x19, 0xab, 0xb5, 0x2b, 0xac, 0x67}} return a, nil } @@ -2281,7 +2281,7 @@ func idtablestakingAdminSet_non_operationalCdc() (*asset, error) { return a, nil } -var _idtablestakingAdminSet_open_access_node_slotsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xc1\x6a\xdb\x40\x10\xbd\xeb\x2b\x1e\x39\x14\x05\x82\xd4\x1e\x5a\x8a\x68\x1a\xd4\x2a\x05\x43\x48\x4b\xec\x1e\x7a\x5c\xaf\x46\xd6\x26\xf2\x8e\xd8\x1d\xd9\x31\xc6\xff\x5e\x76\x65\xb5\xa9\xe3\xce\x45\xb0\x9a\xf7\xe6\xcd\xbc\x67\xd6\x3d\x3b\xc1\xb7\x8e\xb7\xb3\x6a\xa1\x96\x1d\xcd\x45\x3d\x19\xbb\x42\xe3\x78\x8d\xb7\xcf\xb3\xea\xf6\x7e\x31\x5b\xfc\x5a\x94\x5f\xee\x6e\xcb\xaa\x7a\xb8\x9d\xcf\x93\x24\xcf\x73\x2c\x5a\xe3\x21\x4e\x59\xaf\xb4\x18\xb6\xf0\x24\x1e\xd2\x12\xb8\x27\x0b\xcb\x35\xc1\x77\x2c\x1e\x0d\x3b\x28\xad\xc9\xfb\xf8\xea\x23\xfc\xfb\x49\x93\x72\x14\xc1\x76\x58\x2f\xc9\x81\x9b\xe3\xbb\xb4\x4a\xe2\xcf\xc0\x1a\x91\xa4\x74\x0b\xea\x59\xb7\x57\x70\xb4\x52\xae\xee\x02\x35\x37\x68\x79\x8b\xb5\xb2\xbb\x71\x0c\x1e\xd9\x58\xaa\x61\x6c\x24\xee\x1d\x6d\x0c\x0f\x7e\x84\x66\xc7\x1d\x68\x17\xc9\x1d\x35\x8e\x7c\x4b\xf5\x0b\xf6\x24\x79\xb1\x5d\x1a\xc6\x97\x71\x89\x79\xd0\x55\xe0\xe7\xcc\xca\xbb\x0f\x97\xd8\x27\x09\x00\xe4\x39\xee\x58\xab\x0e\x1b\xe5\x4c\x38\xe4\xb8\x76\x60\x26\x47\x56\x13\x84\xa3\x8e\x59\x85\x78\x68\x94\xf5\xda\x58\xf0\xf2\x91\xb4\x44\x8a\x8e\x04\x2a\x3c\x3e\x50\x53\xe0\xcd\x6b\x53\xb2\x08\x19\xe7\xf5\x8e\x7a\xe5\x28\x55\x5a\x4b\x81\x72\x90\xb6\xd4\x9a\x07\x2b\x41\x11\x8e\x95\xe7\x58\xb2\x73\xbc\x3d\x27\x44\x9d\xce\x0f\xe5\xa9\x6b\xb2\x49\x04\xae\x83\x6f\x92\x8d\x1c\x9f\xfe\xab\xe8\x73\x1a\xd2\x52\x9c\x89\x51\x76\xfc\xc6\xb6\xb9\xb0\x53\x2b\xfa\xa1\xa4\xbd\xfc\x33\x30\xd4\xcd\x0d\x7a\x65\x8d\x4e\x2f\xbe\xf2\xd0\xd5\xb0\x2c\x93\xee\x7f\x54\xfb\x63\x36\xa3\xbe\x8b\x91\xe3\x30\x9e\x83\x9e\x49\x0f\x42\x93\x1b\xa1\x36\xca\xc5\xd0\x04\xbf\x2a\x13\x5d\x54\x6e\x57\x60\x1f\x9c\xfb\x38\x19\x78\xc0\x35\xf6\x87\xbf\xa8\xd7\x88\xcc\x58\x4f\x4e\xd2\x27\xda\x15\x78\x7f\x85\x93\x24\x5c\x26\xc9\xf9\xeb\x65\x9e\x24\xa4\xfc\x9e\x6b\x8a\x9d\xe9\xc4\xed\x8b\x33\x63\xa6\x75\x0e\xbf\x03\x00\x00\xff\xff\xc9\x09\xa3\xcf\x94\x03\x00\x00" +var _idtablestakingAdminSet_open_access_node_slotsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xd1\x6a\xdb\x40\x10\x7c\xd7\x57\x0c\x7e\x08\x32\x04\x89\x3e\xb4\x14\xd1\x34\xa4\x0d\x85\x40\x69\x4b\x9d\xf6\x7d\x7d\x5a\x59\x97\xc8\xb7\xe2\x6e\x65\xd7\x18\xff\x7b\xb9\x93\xd5\xa6\xb6\xbb\x2f\x82\xd3\xce\xec\xec\xce\xd8\x75\x2f\x5e\xf1\xa9\x93\xed\xc3\xfd\x23\x2d\x3b\x5e\x28\x3d\x5b\xb7\x42\xe3\x65\x8d\xd9\xf9\x8f\x59\x96\x95\x65\x89\xc7\xd6\x06\xa8\x27\x17\xc8\xa8\x15\x87\xc0\x1a\xa0\x2d\x43\x7a\x76\x70\x52\x33\x42\x27\x1a\xd0\x88\x07\x19\xc3\x21\xa4\xd7\x90\xe0\x5f\x4f\x9a\xc8\x73\x02\xbb\x61\xbd\x64\x0f\x69\x8e\xef\xda\x92\xa6\x9f\x91\x35\x21\x99\x4c\x0b\xee\xc5\xb4\xd7\xf0\xbc\x22\x5f\x77\x91\x5a\x1a\xb4\xb2\xc5\x9a\xdc\x6e\x1c\x83\x27\xb1\x8e\x6b\x58\x97\x88\x7b\xcf\x1b\x2b\x43\x18\xa1\xc5\x71\x07\xde\x25\x72\xcf\x8d\xe7\xd0\x72\xfd\x82\x3d\xcb\x5e\x6c\x97\xc7\xf1\x77\x69\x89\x45\xd4\x55\xe1\xc7\x83\xd3\x57\x6f\xe6\xd8\x67\x19\x00\x94\x25\x3e\x8b\xa1\x0e\x1b\xf2\x36\x5e\x6b\x5c\x3b\x32\xb3\x67\x67\x18\x2a\x49\xc7\xc3\x3d\xd2\x35\x71\x57\xaf\xad\x83\x2c\x9f\xd8\x68\xa2\xe8\x58\x41\xf1\xf1\x3b\x37\x15\xae\xce\x2f\x5f\x24\xc8\x38\xaf\xf7\xdc\x93\xe7\x9c\x8c\xd1\x0a\x34\x68\x9b\x7f\x10\xef\x65\xfb\x93\xba\x81\xe7\xb8\xba\x33\x46\x06\xa7\x51\x20\x8e\x55\x96\x58\xa6\x9e\x4b\xba\xe8\x54\x4e\xac\xc0\x5d\x53\x4c\x9a\x70\x13\x6d\xd4\x22\xa8\x78\x5a\x71\x31\x72\xbd\xfb\xaf\xd0\xf7\x79\x8c\x50\x75\x21\x5b\xc5\xf1\x9b\xda\x16\x23\xdd\x37\xd2\x76\xfe\x67\x70\xac\xdb\x5b\xf4\xe4\xac\xc9\x67\x1f\x65\xe8\x6a\x38\xd1\x49\xff\x3f\xea\xc3\x31\xb0\x49\xe7\x6c\xe4\x38\x8c\x57\xe2\x5f\x6c\x06\xe5\xc9\xa4\x58\x1b\xf2\x29\x4b\xd1\xc6\x7b\x9b\xcc\x25\xbf\xab\xb0\x8f\x86\xbe\x9d\x7c\x3d\xe0\x06\xfb\xc3\x5f\xd4\x39\xa2\xb0\x2e\xb0\xd7\xfc\x99\x77\x15\x5e\x5f\xe3\x24\x20\xf3\xec\xf2\x11\x8b\xc0\x1a\xb3\xff\x45\x6a\x4e\x8d\xf9\x44\x1d\xaa\x0b\x53\xa6\x6d\x0e\xbf\x03\x00\x00\xff\xff\x2c\x22\xfd\x94\xa8\x03\x00\x00" func idtablestakingAdminSet_open_access_node_slotsCdcBytes() ([]byte, error) { return bindataRead( @@ -2297,7 +2297,7 @@ func idtablestakingAdminSet_open_access_node_slotsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_open_access_node_slots.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8a, 0x92, 0x6b, 0x66, 0xe9, 0x67, 0xd6, 0x9f, 0x61, 0x14, 0xbe, 0xf1, 0x4, 0x20, 0x33, 0xcf, 0xff, 0xee, 0x16, 0x1e, 0x5, 0xdb, 0xed, 0x7c, 0xe0, 0x4e, 0x35, 0x18, 0x75, 0x70, 0x77, 0xa7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3e, 0x9e, 0xf6, 0xa, 0x8d, 0x4, 0x32, 0x57, 0x37, 0xcc, 0x87, 0x7f, 0x70, 0xba, 0x58, 0xeb, 0x64, 0xa4, 0x47, 0xbb, 0xd5, 0xf6, 0xdf, 0x5d, 0x55, 0x98, 0xcb, 0x43, 0x52, 0xa, 0x5a, 0x5}} return a, nil } @@ -3701,7 +3701,7 @@ func inspect_fieldCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x39\x04\x0a\xe0\x58\xde\x63\x8d\x24\x0b\xd7\xc9\xa2\x45\xd2\x66\xb1\x49\x77\xcf\x63\x69\x6c\x11\xa6\x49\x95\xa4\xec\x1a\x8b\xbc\x7b\x41\x51\x92\x45\x59\x74\xd6\x6d\x2f\xd5\xc1\xb0\xa8\xf9\xfd\xe6\x97\x6c\x53\x48\x65\x60\xae\xf6\x85\x91\x51\xfd\xf6\x89\xcb\xdd\xab\x5c\x93\x80\xa5\x92\x1b\xb8\x68\xdf\x2f\x5a\x8a\x52\xac\xd8\x82\x93\x47\xd5\x3d\x6b\x29\x9f\x64\xba\xa6\xac\x3a\xd3\x8e\x70\xf2\xd7\xd3\xf3\xfc\xf1\xe1\xfe\xf5\xf9\xf1\xe1\xf7\xd9\xfd\xfd\x97\x87\x97\x97\x28\x4a\x92\x04\x5e\x15\x0a\x8d\xa9\x61\x52\x80\xc9\xd1\x80\xc9\x09\x36\xc8\x04\x98\x4a\x0f\x66\x1b\x26\x60\x27\x4b\x9e\x81\x66\x2b\x51\x31\x19\x09\xa9\x22\x34\x04\x08\x3a\x47\x45\x19\x60\x9a\xca\x52\x18\x40\x91\x01\x0a\x28\x05\xaf\x8c\xa8\xc8\xd1\x7d\x5a\x4a\x05\x08\xa5\x26\x15\x45\xe6\xa0\x36\x8e\x00\x00\x0a\x54\x86\x21\x9f\x59\x75\x9f\xcb\x05\x67\xe9\x23\xed\xa7\x35\x48\xe3\x47\xda\x3f\x31\x6d\x1e\x84\x51\xfb\x11\x24\x09\x7c\x23\xb6\xca\xcd\x14\x3e\x4c\x26\x5d\xf6\x3f\x34\xa9\x33\xb8\x7f\xaa\xb9\x97\x25\x3f\x97\xf5\xc3\x64\x32\x89\xae\x00\xbe\x47\x4e\xbf\xa2\x02\x15\xc5\x15\x5c\x53\xc0\xd2\xe4\xf1\xcf\x52\x29\xb9\xfb\x8a\xbc\xa4\x2b\xb8\x9c\x39\x80\xae\x1a\x0e\xfb\x24\x09\xcc\x1d\x8e\x16\x75\x41\xbb\x06\x46\xed\x70\xcc\x32\xfb\x81\x29\x58\xd3\x5e\xb7\x5c\x9c\x4c\x8d\x7a\x2d\x13\x6e\xa1\xfe\x17\x17\xb8\x27\x35\x75\x51\xbb\xf2\x38\x2c\xee\xef\xd1\xb7\x0c\x9e\xf8\xb1\xd5\x3e\xc6\x2c\x8b\x8b\x03\x3e\x83\xf1\x1a\xb7\x04\x23\xc8\x51\xe7\x33\xbe\x92\x8a\x99\x7c\x13\xa2\xf7\x88\x46\xb0\xab\xc1\x1d\x26\x76\x5f\xaf\xce\x37\xd2\x0b\xed\xfb\x36\xfa\xe4\xa7\x4d\xf4\x69\x1b\x0b\x5b\x13\x3b\xa0\x0f\x1a\x78\x94\x78\x27\xac\x3b\xa6\x0d\x98\x76\x4c\x78\x64\xd7\x21\xf1\x10\x0a\xc5\xb6\xf6\x1f\x67\x62\x6d\x2b\xdb\xa6\xa2\x36\xd2\x16\xf5\x16\x4b\x6e\xbc\x2c\xaa\x4e\xe6\x58\xe0\x82\x71\x66\xf6\x70\xdb\x8b\x42\xda\x7c\x62\xa4\xc7\x56\x0a\xae\x68\xcc\xb4\x2e\xa9\x15\x63\x9f\x9b\xaa\x40\xbc\xee\x35\xfe\xc6\x4c\x9e\x29\xdc\xe1\x82\xdb\x7a\x69\x1b\xe0\xf8\xab\xd5\x79\xe7\xf1\xc7\x49\x2d\x3b\x59\x36\x64\x15\x95\xef\x62\xdb\xa3\x5c\x2f\xaa\x3b\xda\x06\x05\xae\x48\x55\x15\x56\xfb\xc9\x0c\xd8\x86\x67\x1d\xf7\xba\x99\xe7\x3a\x3f\x74\xd5\xdf\x6a\x11\x37\xd7\x5e\xaf\x1d\x3b\x85\x4f\x47\x84\x71\x05\xdb\xb4\x8f\x5e\x28\x95\x1b\xdc\x34\x6e\x29\xbe\xb9\x3e\x56\x3c\x02\x23\xa7\xbe\xea\x63\xa5\x2f\x4e\xca\x67\x34\x79\x07\x16\xeb\x89\xe9\x50\x85\x63\xe9\x01\x7e\x22\xb0\x3f\x10\xcb\x77\x2c\xbd\x8b\x3d\x5d\xf6\xf9\x77\xbe\xfd\x22\x79\x16\x0c\xcf\xeb\x81\xc2\xd7\xeb\x70\x9e\x65\x99\x22\xad\xa7\xbd\x98\xa0\x3b\x1e\x79\x1c\x5d\x20\xa7\x01\x58\x5b\x86\x40\x5b\xf0\x82\xed\x17\xc9\x75\xc7\x99\xbe\xe2\x5e\xf8\x3b\x4e\x75\xb0\x19\xd2\x6d\x41\x62\x62\x29\xe7\x58\xc0\xad\x67\xc9\x89\x10\x5f\x86\x94\xf5\x42\x77\x9e\x4d\x43\x70\x78\x46\x54\xcd\x50\xe7\x71\x6d\xef\x08\xd0\x0c\xa6\x7d\xcd\xfc\xab\x58\x4a\xd7\xf4\x42\x89\x51\x4d\x94\xff\x7d\xca\x7b\xac\x61\x37\x25\xe7\xe4\x16\xbb\x5b\x37\xe0\x1b\x27\x7c\x37\x17\xd5\x9a\x32\x14\xe2\x9e\x98\x01\x9b\xed\x72\x19\x6e\x44\x3d\xfe\xb0\x07\xdd\xb7\x8f\x1f\xa1\x40\xc1\xd2\xf8\x62\x5e\x2d\x9d\x42\x1a\x70\x26\x82\xa2\x25\x29\x12\x29\xd9\x31\xe5\x16\xd3\xb4\x95\x7e\xd1\x01\x62\x08\x04\x5b\xc1\xcd\xd6\xe3\x29\xf4\x32\xe0\x9c\xea\x6f\x76\xdc\x3e\x6b\x37\x9d\xc3\x6d\x63\xe6\x36\xc5\xa1\xb4\x1c\x2a\xdb\x24\x81\xe7\x2d\x29\xc5\x32\xb7\x2c\x66\xb4\xb4\xc3\xa4\x73\x6f\x50\x94\x12\xdb\x92\x0a\x0c\x15\x2f\x9b\x4b\xd1\x94\x56\xe2\x16\x8e\xc3\x1c\xfd\x52\x8b\x19\x1c\xa5\x76\x45\x6d\xf4\xb8\xeb\xc2\x06\xd5\x5a\x37\x67\xf5\x88\xd5\x80\xfa\x70\x03\xe8\x66\x67\x67\x94\xe9\x43\xa7\x3c\x63\x8b\xb8\xb9\xfc\xee\x97\x5d\x63\xee\xdb\x5d\x7c\xce\xcc\xf8\x01\x8c\x1a\x84\x06\x66\x44\xdf\x01\x3f\xbc\xb6\x49\x05\x61\x0d\xc4\xb6\x28\x0d\x08\xa9\x36\xc8\x0f\xf8\x32\x61\xaf\x57\xf6\x5e\x61\xa1\x2f\x05\xfb\xb3\x24\x28\xba\xd5\xd3\x16\x7c\x23\xfd\xbf\x03\x33\xb8\x60\xfd\x53\xe4\xfa\x76\x86\x31\x73\x18\x7f\x3a\x81\x9c\xfd\x7d\x8b\xde\xa2\xbf\x03\x00\x00\xff\xff\x7d\xdd\xc8\xae\x4a\x0f\x00\x00" +var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x39\x04\x32\xe0\x58\xde\x63\x8d\x24\x0b\xd7\xc9\xa2\x45\xd2\x66\xb1\x49\x77\xcf\x63\x69\x6c\x11\xa6\x49\x95\xa4\xec\x1a\x41\xde\xbd\xa0\xa8\x3f\xca\x92\x13\xb7\xab\x43\x60\x51\xf3\xfb\xcd\xcc\xc7\x09\xdb\x66\x52\x19\x58\xa8\x43\x66\x64\x50\xbe\x7d\xe1\x72\xff\x22\x37\x24\x60\xa5\xe4\x16\x2e\xea\xf7\x8b\x5a\x22\x17\x6b\xb6\xe4\xe4\x49\xb5\xcf\x6a\xc9\x47\x19\x6f\x28\x29\xce\xb4\x13\x9c\xfe\xf3\xf8\xb4\x78\xb8\xbf\x7b\x79\x7a\xb8\xff\x73\x7e\x77\xf7\xed\xfe\xf9\x39\x08\xa2\x28\x82\x17\x85\x42\x63\x6c\x98\x14\x60\x52\x34\x60\x52\x82\x2d\x32\x01\xa6\xf0\x83\xc9\x96\x09\xd8\xcb\x9c\x27\xa0\xd9\x5a\x14\x4a\x46\x42\xac\x08\x0d\x01\x82\x4e\x51\x51\x02\x18\xc7\x32\x17\x06\x50\x24\x80\x02\x72\xc1\x8b\x20\x0a\x71\x74\x9f\x56\x52\x01\x42\xae\x49\x05\x81\x69\xdc\x86\x01\x00\x40\x86\xca\x30\xe4\x73\xeb\xee\x6b\xbe\xe4\x2c\x7e\xa0\xc3\xac\x04\x69\xf2\x40\x87\x47\xa6\xcd\xbd\x30\xea\x30\x86\x28\x82\x1f\xc4\xd6\xa9\x99\xc1\xa7\xe9\xb4\xad\xfe\x97\x26\x75\x86\xf6\x2f\xa5\xf6\x2a\xe7\xe7\xaa\x7e\x9a\x4e\xa7\xc1\x08\xe0\x35\x70\xfe\x15\x65\xa8\x28\x2c\xe0\x9a\x01\xe6\x26\x0d\x7f\x95\x4a\xc9\xfd\x77\xe4\x39\x8d\xe0\x72\xee\x00\x1a\x55\x1a\xf6\x89\x22\x58\x38\x1c\x2d\xea\x82\xf6\x15\x8c\xda\xe1\x98\x24\xf6\x03\x53\xb0\xa1\x83\xae\xb5\x38\x99\x12\xf5\xd2\x26\xdc\x40\xf9\x2b\xcc\xf0\x40\x6a\xe6\xaa\x36\xf2\x34\x2c\xee\xef\xc9\xd7\x0a\x9e\xf9\x89\xf5\x3e\xc1\x24\x09\xb3\x06\x9f\xde\x7a\x4d\x6a\x81\x31\xa4\xa8\xd3\x39\x5f\x4b\xc5\x4c\xba\x1d\x92\xf7\x84\xc6\xb0\x2f\xc1\xed\x17\x76\x5f\x47\xe7\x07\xe9\x95\xf6\xfd\x18\x7d\xf1\xd3\x21\xfa\xb2\x55\x84\x75\x88\x2d\xd0\x7b\x03\x3c\x6a\xbc\x13\xd1\x1d\xcb\x0e\x84\x76\x2c\x78\x14\x57\xd3\x78\x08\x99\x62\x3b\xfb\x8b\x33\xb1\xb1\x93\x6d\x5b\x51\x1b\x69\x87\x7a\x87\x39\x37\x5e\x17\x15\x27\x0b\xcc\x70\xc9\x38\x33\x07\xb8\xe9\x54\x21\xae\x3e\x31\xd2\x13\x6b\x05\xd7\x34\x61\x5a\xe7\x54\x9b\xb1\xcf\x75\x31\x20\x1e\x7b\x4d\x7e\x30\x93\x26\x0a\xf7\xb8\xe4\x76\x5e\x6a\x02\x9c\x7c\xb7\x3e\x6f\x3d\xfd\x30\x2a\x6d\x47\xab\x4a\xac\x90\xf2\x53\xac\x39\xca\x71\x51\xc9\x68\x5b\x14\xb8\x26\x55\x4c\x58\x99\x27\x33\x60\x09\xcf\x26\xee\xb1\x99\x97\x3a\x6f\x58\xf5\x8f\xd2\xc4\xf5\x95\xc7\xb5\x13\xe7\xf0\xf1\x48\x30\x2c\x60\x9b\x75\xd1\x1b\x6a\xe5\x0a\x37\x8d\x3b\x0a\xaf\xaf\x8e\x1d\x8f\xc1\xc8\x99\xef\xfa\xd8\xe9\xb3\xb3\xf2\x15\x4d\xda\x82\xc5\x66\x62\x5a\x52\xc3\xb5\xf4\x00\x3f\x51\xd8\x0f\xd4\xf2\x9d\x48\x6f\x43\xcf\x97\x7d\xfe\x5f\x6e\xbf\x49\x9e\x0c\x96\xe7\xa5\x91\xf0\xfd\x3a\x9c\xe7\x49\xa2\x48\xeb\x59\xa7\x26\xe8\x8e\xc7\x9e\x46\x1b\xc8\xd9\x00\xac\xb5\xc2\x00\x2d\x78\xc5\xf6\x87\xe4\xaa\x95\x4c\xd7\x71\xa7\xfc\xad\xa4\x5a\xd8\xf4\xf9\xb6\x20\x31\xb1\x92\x0b\xcc\xe0\xc6\x8b\xe4\x44\x89\x2f\x87\x9c\x75\x4a\x77\x5e\x4c\x7d\x70\x78\x41\x14\x64\xa8\xd3\xb0\x8c\x77\x0c\x68\x7a\xdb\xbe\x54\xfe\x5d\xac\xa4\x23\xbd\xa1\xc6\x28\x6e\x94\x85\xe4\x9c\xdc\xc6\x73\xe3\x6e\xbe\x2a\x5b\xbf\xe5\x97\xc5\xfd\xdd\x97\x7b\xc7\x4c\x4f\xff\xda\xad\x6b\x78\x42\x3b\xfa\x7d\xe8\xf8\x08\xd9\xe7\xf3\x67\xc8\x50\xb0\x38\xbc\x58\x14\xdb\x98\x90\x06\x5c\x88\xa0\x68\x45\x8a\x44\x4c\x96\xbf\xdd\xc6\x16\xd7\xd6\x2f\x5a\x40\xf4\x81\x60\x5b\xbb\x5a\x07\x3c\x87\xde\x00\x9c\x33\x16\xd5\xf2\xd7\x55\x6d\xd7\x79\x78\x9e\xe6\x6e\x85\xfa\xf8\x34\x45\x11\x3c\xed\x48\x29\x96\xb8\x3d\x2a\xa1\x95\xe5\xd9\xd6\x4a\xad\x28\x26\xb6\x23\x35\xc0\xb7\x5e\xcf\xe5\xa2\xea\xba\xc8\xdd\xc5\xcd\x15\xf3\xad\x34\xd3\x7b\xcb\xd8\xed\xad\xf2\xe3\x36\xe9\x2d\xaa\x8d\xae\xce\xca\xdb\x47\x03\xea\x66\x39\x6e\xf7\x67\x8b\xe5\x75\x93\xf6\x19\x17\xec\xf5\xe5\xab\x4f\xc2\x55\xb8\x6f\xb7\xe1\x39\x74\xfa\x01\x8c\x2a\x84\x7a\xe8\xb3\x9b\x80\x5f\x60\x3b\xbf\x83\xb0\x0e\xd4\x36\xcb\x0d\x08\xa9\xb6\xc8\x1b\x7c\x99\xb0\xff\x79\xd8\x95\xdb\x42\x9f\x0b\xf6\x77\x4e\x90\xb5\xe7\xa7\x1e\xf9\xca\xfa\xcf\x03\x73\x70\xf7\xf8\xaf\xc8\x75\xe3\x1c\xc6\xcc\x61\xfc\xe5\x04\x72\xf6\xef\x5b\xf0\x16\xfc\x1b\x00\x00\xff\xff\xa8\xb5\x30\x1c\x65\x0e\x00\x00" func lockedtokensAdminAdmin_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3717,7 +3717,7 @@ func lockedtokensAdminAdmin_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x91, 0x21, 0x12, 0x8, 0xc, 0xc8, 0x6b, 0xac, 0xc1, 0x5b, 0xa2, 0xd9, 0x7d, 0xed, 0x8f, 0x58, 0xd1, 0x9e, 0xed, 0x51, 0xd5, 0x91, 0x41, 0x71, 0x76, 0xbd, 0x29, 0x42, 0xf6, 0x76, 0x4, 0x86}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0xe0, 0x6e, 0xd7, 0x29, 0xcc, 0x46, 0xd5, 0x10, 0xeb, 0xed, 0x8b, 0xc9, 0xd6, 0x72, 0xda, 0xdf, 0x19, 0xf, 0xd4, 0x46, 0x6f, 0x5a, 0x2b, 0x22, 0xa6, 0xf2, 0xdc, 0x18, 0x69, 0x9a, 0x99}} return a, nil } @@ -3741,7 +3741,7 @@ func lockedtokensAdminAdmin_deploy_contractCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminAdmin_deposit_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\xc1\x6e\xdb\x30\x0c\x86\xef\x7e\x0a\xae\x87\xce\xbe\x24\x3b\x07\xeb\x8a\xcc\xc9\xa9\xc5\x1a\xb4\xc1\xee\x8c\xc4\xc6\x42\x15\x51\xa0\xe8\x74\xc5\xd0\x77\x1f\x64\x1b\xa9\x9d\x65\x18\x4f\x36\xc1\xff\x27\x3f\x8a\xee\x10\x59\x14\xee\xd9\xbc\x90\xdd\xf2\x0b\x85\x04\xcf\xc2\x07\xf8\xf2\xeb\xfe\xa1\xbe\x5b\xaf\xb6\x0f\x77\xeb\x1f\xcb\xd5\xea\x71\xfd\xf4\x54\x14\xf3\xf9\x1c\x34\x57\x01\xda\x83\x0b\x90\xdc\x3e\x24\xd0\xc6\x25\x50\xc1\x90\xd0\xa8\xe3\x00\xca\x60\x29\x72\x72\x0a\x08\x06\x23\xee\x9c\x77\xfa\xd6\xc9\x5d\x50\xce\xd9\x36\x29\xdb\x37\x88\xc2\x47\x67\x49\x3e\x27\x40\x63\xb8\x0d\x0a\xda\xa0\x02\x7a\xcf\xaf\xd9\x9a\x0e\xd9\x0e\xad\xed\xd4\x43\x4d\xca\x39\x6d\x08\x84\x0c\x8b\x2d\x8a\x51\xf7\x72\xb0\xde\x0c\xce\x4b\x6b\x85\x52\x5a\xc0\xf0\x51\xc1\xef\xa2\x00\x00\x88\x42\x11\x85\xca\x0e\x65\x01\xd8\x6a\x53\x7e\x67\x11\x7e\xfd\x89\xbe\xa5\x0a\xae\x97\x7d\xb7\x93\x22\x87\x27\x1d\x21\x3d\x92\x21\x77\x24\x81\x1b\xd8\x93\x0e\xf5\xff\x98\xa0\x3a\x79\xe4\x98\x9d\x4c\x1c\xa5\xd9\xae\xeb\xfb\xf5\x7a\xfc\x10\xb3\xfe\x67\x30\xad\x85\x50\x59\xbe\x95\x13\x97\x1c\xff\xd5\x6c\xda\x9d\x77\x66\x83\xda\x4c\xb4\xd3\x79\x6e\x6f\x21\x62\x70\xa6\xbc\xaa\xb9\xf5\x16\x02\x2b\xf4\x53\x8d\x70\xf3\xbe\x7b\x5e\xa1\x67\x12\x0a\x86\xae\xaa\xe9\x6e\xba\xf3\x58\xe6\x95\xd6\xec\x3d\xf5\x07\x71\xd3\xdf\xcb\x94\x79\x4f\x7a\x06\xbc\xbd\xa0\x3d\x03\xbe\x00\xfb\xa1\xda\x88\x3b\xa2\xd2\x84\xb4\xfa\xf4\x31\xdf\xdf\xef\x36\x43\x6b\xeb\x53\xb6\x34\x18\x17\x17\x09\xfa\x5d\xbd\x17\xef\xc5\x9f\x00\x00\x00\xff\xff\xe8\x42\x4a\xc5\x32\x03\x00\x00" +var _lockedtokensAdminAdmin_deposit_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x41\x6f\xdb\x30\x0c\x85\xef\xfe\x15\x5c\x0f\x9d\x0d\x0c\xce\xce\xc1\xba\x22\x73\x72\x6a\xb1\x06\x4d\xb0\x3b\x23\xb1\xb1\x50\x45\x34\x28\xba\x5d\x30\xf4\xbf\x0f\xb2\xbd\xcc\xce\x32\x54\x27\x5b\xe0\x7b\x7c\x1f\x45\x77\x68\x58\x14\xee\xd9\x3c\x93\xdd\xf2\x33\x85\x08\x4f\xc2\x07\xf8\xfc\xf3\xfe\xa1\xba\x5b\x2d\xb7\x0f\x77\xab\xef\x8b\xe5\xf2\x71\xb5\xd9\x64\xd9\x6c\x36\x03\x4d\x55\x80\xf6\xe0\x02\x44\xb7\x0f\x11\xb4\x76\x11\x54\x30\x44\x34\xea\x38\x80\x32\x58\x6a\x38\x3a\x05\x04\x83\x0d\xee\x9c\x77\x7a\xec\xe4\x2e\x28\xa7\xdb\x36\x2a\xdb\x23\x34\xc2\x2f\xce\x92\x7c\x8c\x80\xc6\x70\x1b\x14\xb4\x46\x05\xf4\x9e\x5f\x93\x35\x1d\x92\x1d\x5a\xdb\xa9\x87\x9a\x98\xee\xb4\x26\x10\x32\x2c\x36\xcb\x46\xdd\xf3\xc1\x7a\x3d\x38\x2f\xac\x15\x8a\x71\x0e\xc3\x47\x01\xbf\xb2\x0c\x00\xa0\x11\x6a\x50\x28\xef\x50\xe6\x80\xad\xd6\xf9\x37\x16\xe1\xd7\x1f\xe8\x5b\xfa\x04\xd5\x9f\xe4\x8e\x62\x01\xd7\x8b\xbe\xf7\x49\x9f\x8e\x27\x1d\x01\x3e\x92\x21\xf7\x42\x02\x37\xb0\x27\x1d\xea\xff\x93\xa7\x38\x79\xa4\x53\x9a\x51\xaf\x72\xd7\xa5\xf8\x72\x3d\x7e\x96\xb2\xff\x19\x4c\x2b\x21\x54\x96\xaf\xf9\xc4\x25\x9d\x77\x35\xeb\x76\xe7\x9d\x59\xa3\xd6\x13\xed\x34\xcf\xed\x2d\x34\x18\x9c\xc9\xaf\x2a\x6e\xbd\x85\xc0\x0a\x7d\xaa\x11\x6e\x9a\x7e\xcf\x2b\xf4\x44\x42\xc1\xd0\x55\x31\x9d\x4d\xb7\x2c\x8b\x34\xe0\x8a\xbd\xa7\x7e\x3d\x6e\xfa\xed\x99\x32\x47\x65\xc1\x3d\x95\x2e\xc6\x96\xce\xd0\xb7\x17\x5c\xce\xd0\x2f\x60\x5f\x52\x6d\xfa\x2e\x13\xfa\xe2\xc3\xdf\xcc\xff\xbe\x65\x89\xd6\x9e\x16\xe1\x98\x1b\x6c\xe6\x17\xa9\xfa\xf9\xbd\x65\x6f\xd9\xef\x00\x00\x00\xff\xff\xe2\x88\x28\xa2\x54\x03\x00\x00" func lockedtokensAdminAdmin_deposit_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3757,7 +3757,7 @@ func lockedtokensAdminAdmin_deposit_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_deposit_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0x9b, 0xd6, 0x2b, 0xef, 0xc1, 0x25, 0x88, 0xc2, 0x4f, 0x5a, 0x57, 0xd4, 0xda, 0xd7, 0xb, 0x75, 0xb8, 0x3f, 0xd6, 0xe4, 0x98, 0xc5, 0xea, 0xfe, 0xe2, 0xbe, 0x52, 0x22, 0x43, 0xc5, 0xa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb8, 0x23, 0x84, 0xa6, 0x9d, 0xef, 0xc4, 0xfb, 0x4f, 0x5c, 0x1d, 0x2b, 0x21, 0xe2, 0xac, 0x5c, 0x53, 0x69, 0xa2, 0x49, 0x64, 0xa, 0x89, 0x80, 0xa8, 0xb, 0x22, 0xf4, 0xab, 0x6e, 0x3b, 0xe7}} return a, nil } @@ -3821,7 +3821,7 @@ func lockedtokensAdminCheck_shared_registrationCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\xf6\xb0\x90\x01\x47\x4a\xaf\x86\x13\xc0\x75\xb2\x68\x91\xb4\x09\x36\xe9\xee\x79\x2c\x8d\x2d\x22\x34\xa9\xf2\x61\xd7\x08\xf2\xdf\x0b\xea\x65\x51\x16\xe3\xb4\x28\x7a\x58\x1d\x82\x98\x9c\xc7\x37\xdf\x3c\x38\x6c\x5b\x4a\x65\x60\xa9\x0e\xa5\x91\x51\xf3\xeb\x0b\x97\xfb\x67\xf9\x42\x02\xd6\x4a\x6e\xe1\x53\xf7\xfb\x53\x27\x61\xc5\x86\xad\x38\x79\x52\xfd\xb3\x4e\xf2\x5e\x66\x2f\x94\x57\x67\xba\x16\xbc\xfc\xeb\xfe\x61\x79\x77\x7b\xf3\xfc\x70\x77\xfb\xfb\xe2\xe6\xe6\xeb\xed\xd3\x53\x14\xa5\x69\x0a\xcf\x0a\x85\xc6\xcc\x30\x29\xc0\x14\x68\x00\x21\xb3\xda\xc8\xfc\x00\xa5\x92\x3b\x96\x93\x82\xbd\xb4\x3c\x07\xcd\x36\xa2\x52\x31\x12\x32\x45\x68\x08\x10\x74\x81\x8a\x72\xc0\x2c\x93\x56\x18\x40\x91\x03\x0a\xb0\x82\x57\x10\x2a\xf1\xf6\x6e\x2d\x15\x20\x58\x4d\x2a\x8a\xcc\xd1\x6b\x1c\x01\x00\xac\x2d\xe7\x8b\x7c\xcb\xc4\xa3\x5d\x71\x96\xdd\xd1\x61\xd6\x10\x94\xdc\xd1\xe1\x9e\x69\x73\x2b\x8c\x3a\x4c\x21\x4d\xe1\x3b\xb1\x4d\x61\x66\xf0\xd3\xe5\xe5\x65\xa7\xfc\x87\x26\xf5\x4f\x75\x27\x00\xaf\x51\x65\xa1\x54\x54\xa2\xa2\xb8\x09\xfd\xb1\x89\x7c\x06\x68\x4d\x11\xff\x2c\x95\x92\xfb\x6f\xc8\x2d\x4d\xe0\xf3\xa2\x8e\x67\xd2\xea\xba\x8f\x93\x69\xa8\x68\x6e\xe1\x0a\x9a\xff\xe2\x12\x0f\xce\xd2\xc0\xf4\xc4\xd3\x75\xac\x7c\x5c\xb3\x53\xf5\x5c\x26\x2f\x74\xd0\x09\xe6\x79\x5c\x1e\x79\x38\xe5\x35\xe9\x6e\xa7\x50\xa0\x2e\x16\x7c\x23\x15\x33\xc5\x76\x54\xd8\x93\x98\xc2\xbe\xa1\x6f\x44\xb2\xbe\xea\x81\xeb\xc5\x14\x84\xe6\x65\xed\x0c\x32\x5f\xf6\x1d\x60\xbe\xe0\x09\x2e\xc7\xf7\x0e\x2d\x37\x4b\x2c\x71\xc5\x38\x33\x07\xb8\x1a\x50\x99\xb5\x57\x8c\x74\xa2\x8d\x54\xb8\xa1\xce\x80\xfb\x12\xa6\xb5\xa5\x79\x55\x1e\x5e\x13\x26\xdf\x99\x29\x72\x85\x7b\x5c\x71\x57\x2d\x5d\x1f\x27\xdf\x9c\xcf\xeb\x38\x6d\xcc\xa5\xeb\xf6\xa6\xba\x18\x00\xe4\xc7\x16\xfe\x0d\x05\x6e\x48\xc1\xfc\xc2\x6b\xec\xa4\xee\xc1\xfb\x13\xc1\xb8\x0a\x6e\x36\x8c\x31\x58\x36\x0d\x9e\x44\xe3\x8e\xe2\xf9\xc5\xa9\xe7\x29\x18\x39\xf3\x7d\x9f\x7a\x7d\xaa\xad\x3c\xa2\x29\x06\xa1\x98\x9e\xd4\xff\x42\xf9\x19\xa4\xd7\xb1\x67\xd6\x7d\x1f\x8f\xcd\x53\x1d\x0b\xf4\x17\xc9\xf3\x60\xb2\x9e\x8f\x12\x71\xcd\xf3\x22\xcf\x15\x69\x3d\x1b\x90\x81\xf5\xf1\xd4\x23\x6f\x16\xa0\x32\xd0\x73\x5e\x5e\x3d\xdc\xf3\x8b\x1e\xd4\xa9\x77\x75\x92\xe9\x1e\xe4\x31\x1a\xc2\x14\x2c\xb1\x84\x2b\x0f\xd0\x58\x86\x9b\xa4\x7e\x0e\xf9\xbc\x8e\x3f\x80\x66\x32\x1a\xbf\xe7\xae\x1a\x2d\xba\x88\x7d\x80\x53\x40\x33\x5a\xd9\x8d\x8d\x5f\xc5\x5a\xd6\x93\x24\x54\xd7\xd5\x10\xfc\xa1\xab\x9a\xf7\x09\x59\xba\x32\x96\x0a\xae\x86\x8f\xd2\x78\x6c\xab\xea\xe1\x9c\x8f\x61\xf7\x0d\x5e\xc7\x6e\x4d\x79\x2f\x15\x8d\x60\x60\xcc\x8c\x48\xba\x1e\x6a\x1f\x52\x0f\x95\x97\xa0\x33\xfd\xe7\x29\xb6\x5b\xcd\x50\xb5\x5f\x74\xa3\x8a\xc7\x4a\x99\x8d\x56\xcd\x58\x37\xa5\x29\x3c\xec\x48\x29\x96\x13\x98\x82\x20\xa7\xb5\x9b\xe7\xbd\x3d\x51\x51\x46\x6c\x47\x2a\x09\xcc\x75\xaf\xf4\xac\x68\x3b\x20\xad\x5f\xd9\xe3\xf3\xf3\xb5\xb1\xe3\x3b\x6f\x36\x3c\x41\xfb\xce\x51\xbd\x1f\x6e\x51\xbd\xe8\xf6\x2c\xaf\xe3\xd1\x80\xba\xa3\x27\x09\x3d\x64\xfa\x38\xb9\x42\x7d\x32\x36\x1a\x5e\xfd\xb6\x68\xe1\xbe\x0d\x46\xc3\x99\x27\xe9\x5d\x8e\xbc\x11\xe1\xa5\x6e\x1c\xbe\x9f\x5e\x37\x43\x82\xac\x06\x72\x5b\x5a\x03\x42\xaa\x2d\xf2\x23\xbd\x4c\xb8\x85\xda\x2d\xa2\x8e\x79\x2b\xd8\x9f\x96\xa0\x44\x53\x24\xa7\x73\xa7\x35\xff\x9f\x71\x19\x5c\x4b\xfe\x25\x71\x43\x94\x61\xca\x6a\x8a\xbf\xbc\x43\x9c\xfb\xfb\x16\xbd\x45\x7f\x07\x00\x00\xff\xff\x3a\x81\x46\x09\x39\x0d\x00\x00" +var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x39\x2c\x64\xc0\x91\xd2\xab\xe1\x64\xe1\x3a\x59\xb4\x48\xda\x04\x9b\x74\xf7\x3c\x96\xc6\x16\x11\x9a\x54\x49\xca\xae\x11\xe4\xdd\x0b\x4a\xd4\x0f\x65\x29\x76\x8b\xa2\x87\xd5\x21\x88\xc9\xf9\xf9\xe6\x9b\x19\xce\xb0\x6d\x2e\x95\x81\xa5\x3a\xe4\x46\x06\xee\xd7\x17\x2e\xf7\x2f\xf2\x95\x04\xac\x95\xdc\xc2\x45\xf3\xfb\xa2\x91\x28\xc4\x86\xad\x38\x79\x52\xdd\xb3\x46\xf2\x41\x26\xaf\x94\x96\x67\xba\x12\xbc\xfa\xeb\xe1\x71\x79\x7f\x77\xfb\xf2\x78\x7f\xf7\xfb\xe2\xf6\xf6\xeb\xdd\xf3\x73\x10\xc4\x71\x0c\x2f\x0a\x85\xc6\xc4\x30\x29\xc0\x64\x68\x00\x21\x29\xb4\x91\xe9\x01\x72\x25\x77\x2c\x25\x05\x7b\x59\xf0\x14\x34\xdb\x88\x52\xc5\x48\x48\x14\xa1\x21\x40\xd0\x19\x2a\x4a\x01\x93\x44\x16\xc2\x00\x8a\x14\x50\x40\x21\x78\x09\xa1\x14\xaf\xef\xd6\x52\x01\x42\xa1\x49\x05\x81\x69\xbd\x86\x01\x00\xc0\xba\xe0\x7c\x91\x6e\x99\x78\x2a\x56\x9c\x25\xf7\x74\x98\x39\x82\xa2\x7b\x3a\x3c\x30\x6d\xee\x84\x51\x87\x29\xc4\x31\x7c\x27\xb6\xc9\xcc\x0c\x7e\xba\xba\xba\x6a\x94\xff\xd0\xa4\xfe\xa9\xee\x04\xe0\x2d\x28\x2d\xe4\x8a\x72\x54\x14\xba\xd0\x9f\x5c\xe4\x33\xc0\xc2\x64\xe1\xcf\x52\x29\xb9\xff\x86\xbc\xa0\x09\x7c\x5a\x54\xf1\x4c\x6a\x5d\xfb\x71\x32\x8e\x0a\x77\x0b\xd7\xe0\xfe\x0b\x73\x3c\x58\x4b\x3d\xd3\x13\x4f\xd7\xb2\x72\xbe\x66\xa3\xea\xb9\x8c\x5e\xe9\xa0\x23\x4c\xd3\x30\x6f\x79\x38\xe6\x35\x6a\x6e\xa7\x90\xa1\xce\x16\x7c\x23\x15\x33\xd9\x76\x50\xd8\x93\x98\xc2\xde\xd1\x37\x20\x59\x5d\x75\xc0\x75\x62\x1a\x85\xe6\x65\xed\x04\x32\x5f\xf6\x03\x60\xbe\xe0\x11\x2e\xcb\xf7\x0e\x0b\x6e\x96\x98\xe3\x8a\x71\x66\x0e\x70\xdd\xa3\x32\xa9\xaf\x18\xe9\x48\x1b\xa9\x70\x43\x8d\x01\xfb\x45\x4c\xeb\x82\xe6\x65\x79\x78\x4d\x18\x7d\x67\x26\x4b\x15\xee\x71\xc5\x6d\xb5\x34\x7d\x1c\x7d\xb3\x3e\x6f\xc2\xd8\x99\x8b\xd7\xf5\x4d\x79\xd1\x03\xc8\xdb\x16\xfe\x0d\x05\x6e\x48\xc1\xfc\xd2\x6b\xec\xa8\xea\xc1\x87\x23\xc1\xb0\x0c\x6e\xd6\x8f\x71\xb4\x6c\x1c\x9e\x48\xe3\x8e\xc2\xf9\xe5\xb1\xe7\x29\x18\x39\xf3\x7d\x1f\x7b\x7d\xae\xac\x3c\xa1\xc9\x7a\xa1\x98\x8e\xd4\xff\x42\xf9\x09\xa4\x37\xa1\x67\xd6\x7e\xe7\xc7\xe6\xa9\x0e\x05\xfa\x8b\xe4\xe9\x68\xb2\x5e\x5a\x89\xb0\xe2\x79\x91\xa6\x8a\xb4\x9e\xf5\xc8\xc0\xea\x78\xea\x91\x37\x1b\xa1\x72\xa4\xe7\xbc\xbc\x7a\xb8\xe7\x97\x1d\xa8\x53\xef\xea\x28\xd3\x1d\xc8\x43\x34\x8c\x53\xb0\xc4\x1c\xae\x3d\x40\x43\x19\x76\x49\xfd\x34\xe6\xf3\x26\x3c\x03\xcd\x64\x30\x7e\xcf\x5d\xf9\xb4\xe8\x2c\xf4\x01\x4e\x01\xcd\x60\x65\x3b\x1b\xbf\x8a\xb5\xac\x5e\x92\xb1\xba\x2e\x1f\xc1\x1f\xba\xaa\x79\x97\x90\xa5\x2d\x63\xa9\xe0\xba\x3f\x94\x86\x63\x5b\x95\x83\x73\x3e\x84\xdd\x37\x78\x13\xda\x35\xe5\xa3\x54\x38\xc1\xc1\xac\xdb\xef\xf3\x67\xc8\x51\xb0\x24\xbc\x58\x96\xdb\x8a\x90\x06\x2a\xf7\x2e\x82\x66\x0f\x49\x2a\x4b\x17\xdd\x38\x07\x3c\xd9\x1e\xac\x07\xb1\xe7\xc9\x4b\xf0\x89\xfe\xf5\x14\xeb\xad\xa8\xaf\xda\x2d\xda\x41\xc5\xb6\xd2\x66\x83\x55\x37\xd4\x8d\x71\x0c\x8f\x3b\x52\x8a\xa5\x04\x26\x23\x48\x69\x6d\xe7\x41\x67\xcf\x54\x94\x10\xdb\x91\x8a\x46\xe6\x82\x57\xba\x85\xa8\x3b\x28\xae\xa6\x74\x3b\xbe\xbe\x3a\x3b\xbe\x73\xb7\x21\x0a\xda\x37\x8e\xaa\xfd\x72\x8b\xea\x55\xd7\x67\x69\x15\x8f\x06\xd4\x0d\x3d\xd1\xd8\x20\xd4\xed\xcb\x77\x56\x9f\xd5\x6f\xcb\x9b\xdf\x57\x35\xde\xf7\xde\xdb\x72\x62\xa6\x9d\x41\x52\x4d\x91\x97\xbc\xe1\x00\xfc\x04\xdb\x57\x68\x94\xd7\x91\xec\xe6\x85\x01\x21\xd5\x16\x79\x4b\x30\x13\x76\x25\xb7\xab\xac\xe5\xbe\x10\xec\xcf\x82\x20\x47\x93\x45\xc7\x2f\x57\x6d\xfe\xbf\x63\x73\x74\xb3\xf9\xb7\xd4\xf5\x71\x8e\x93\x56\x91\xfc\xe5\x03\xea\xec\xdf\xf7\xe0\x3d\xf8\x3b\x00\x00\xff\xff\xd3\xa4\x6f\x04\x7d\x0d\x00\x00" func lockedtokensAdminCustody_create_account_with_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3837,11 +3837,11 @@ func lockedtokensAdminCustody_create_account_with_lease_accountCdc() (*asset, er } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_account_with_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x23, 0xd, 0xf4, 0x50, 0x6c, 0x79, 0xd3, 0x38, 0x1a, 0x22, 0x7b, 0xd6, 0xad, 0xce, 0xd1, 0xeb, 0x92, 0xa7, 0x96, 0xc1, 0xf2, 0x24, 0x40, 0x58, 0x13, 0x60, 0x6a, 0xf2, 0xbe, 0x3f, 0x4e, 0x62}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdc, 0xa1, 0xb5, 0xae, 0xbc, 0x6, 0x99, 0x49, 0x15, 0x8b, 0x44, 0x1d, 0x7c, 0xee, 0x56, 0xa8, 0xd6, 0x27, 0xfa, 0xe3, 0x1a, 0xae, 0xaf, 0xbd, 0x5d, 0xe6, 0x1c, 0xf0, 0x62, 0xdc, 0x1a, 0x9d}} return a, nil } -var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x7b\x58\xc8\x80\x23\xa5\x57\xc3\x09\xe0\x3a\x59\xb4\x48\xda\x04\x9b\x60\xf7\x3c\x16\xc7\x16\x61\x5a\x54\x49\xca\xae\xb0\xc8\xbb\x17\xa4\x68\x49\x94\xa5\xec\xb6\x28\x7a\xa8\x0f\x41\x44\xce\xcf\x37\xdf\xfc\x70\xf8\xa1\x94\xca\xc0\x5a\xd5\xa5\x91\x91\xff\xfa\x24\xe4\xe9\x55\xee\xa9\x80\xad\x92\x07\xf8\xd0\x7e\x7f\x68\x25\xaa\x62\xc7\x37\x82\x02\xa9\xfe\x59\x2b\xf9\x28\xb3\x3d\x31\x77\xa6\x1b\xc1\xeb\x3f\x1f\x9f\xd6\x0f\xf7\x77\xaf\x4f\x0f\xf7\xbf\xaf\xee\xee\x3e\xdf\xbf\xbc\x44\x51\x9a\xa6\xf0\xaa\xb0\xd0\x98\x19\x2e\x0b\x30\x39\x1a\x40\xc8\x2a\x6d\x24\xab\xa1\x54\xf2\xc8\x19\x29\x38\xc9\x4a\x30\xd0\x7c\x57\x38\x15\x23\x21\x53\x84\x86\x00\x41\xe7\xa8\x88\x01\x66\x99\xac\x0a\x03\x5b\xa9\x00\xa1\xd2\x56\x29\x97\x80\x42\x11\xb2\xda\x69\xe5\xa8\xc1\xe4\xc4\x15\x54\x85\x70\x00\x5b\xad\xc6\x1a\xb3\x62\x0d\xa6\x9c\x2e\x85\x9c\xbe\x74\x28\xac\x1d\x30\x3d\xe0\x28\xb4\x8c\xa2\xde\x49\x1c\x01\x00\x6c\x2b\x21\x56\xec\xc0\x8b\xe7\x6a\x23\x78\xf6\x40\xf5\xc2\xb3\x9e\x3c\x50\xfd\xc8\xb5\xb9\x2f\x8c\xaa\xe7\x90\xa6\xf0\x95\xf8\x2e\x37\x0b\xf8\xe9\xfa\xfa\x3a\x9a\x01\x7c\x8b\x9c\x89\x52\x51\x89\x8a\x62\xcf\xc9\xb3\xa7\x64\x01\x58\x99\x3c\xfe\x59\x2a\x25\x4f\x5f\x50\x54\x34\x83\x8f\xab\x06\xe9\xdc\xc5\xef\x3f\xbc\xe0\x8b\x91\x0a\x77\x34\x87\x35\x96\xb8\xe1\x82\x1b\x4e\xba\x53\x99\x9d\xdd\xd9\x9f\x20\xe3\x69\xf5\xb7\x70\x03\xfe\xbf\xb8\xc4\xda\x3a\x1f\xa0\x99\x75\xca\x81\x62\xb2\xa7\x5a\x27\xc8\x58\x5c\x76\x04\x5c\x92\x92\xb4\xb7\x73\xcb\x72\xbe\x12\x3b\xa9\xb8\xc9\x0f\xa3\xc2\x81\xc4\x1c\x4e\x9e\xb7\x11\xc9\xe6\x6a\x16\x46\x76\xc4\x4a\x98\x96\x85\x1a\x6e\x06\x90\xb3\x1e\x41\x89\x6e\x68\x6b\x0d\xd8\x5f\xc2\xb5\xae\x68\xe9\x68\x0d\xca\x3f\xf9\xca\x4d\xce\x14\x9e\x70\x23\x6c\x3a\xda\x0e\x4a\xbe\x58\x9f\xb7\x71\xea\xcd\xa5\xdb\xf3\x8d\xbb\x18\x00\x14\x5d\xf3\xfc\x86\x05\xee\x48\xc1\xf2\x2a\x68\xa9\xa4\xa9\xd7\xc7\x0b\xc1\xd8\x05\xb7\x18\xc6\x38\x99\x1e\x8f\x27\xd1\x78\xa4\x78\x79\x75\xe9\x79\x0e\x46\x2e\x42\xdf\x97\x5e\x7d\x6d\x3d\xa3\xc9\x07\xa1\x98\x9e\xd4\x7f\x42\xf9\x77\x90\xde\xc6\x81\x59\xfb\xfb\xf1\xd8\x02\xd5\xb1\x40\x7f\x91\x82\x4d\x26\xeb\xb5\x93\x08\x41\x34\xa4\xaf\x18\x53\xa4\xf5\x62\xc0\x0c\x36\xc7\xf3\x40\xa3\xcf\xea\x62\x82\xe3\x68\x04\x68\x6f\x2a\x84\x99\x0f\xac\x2f\xaf\x7a\xc1\x0c\x1d\x0f\x6a\xa1\x17\xd4\x18\x51\xd3\x24\xad\xb1\x84\x9b\x00\xd0\x58\x0d\xf8\xb4\x7f\x9c\xf2\x79\x1b\xff\x00\x9a\xd9\x68\xfc\x81\x3b\x37\x7e\x74\x1e\x87\x00\xe7\x80\x66\xb4\xf6\xbd\x8d\x5f\x8b\xad\x6c\x66\xcd\x54\xe5\xbb\x71\xf4\xbf\xae\x7b\xd1\x27\x64\x6d\x0b\x5d\x2a\xb8\x19\x3e\x0f\xe3\xb1\x6d\xdc\xdb\xb5\x1c\xc3\x1e\x1a\xbc\x8d\xed\x0a\xf1\x5e\x2a\xbc\xe0\xc4\x20\x1a\x91\xb4\x8d\x75\x7e\xd2\x02\x54\x41\x82\xfe\x4e\x53\x9e\xd7\x85\xa1\x6a\xbf\xe8\xa6\xbb\xd9\x55\xca\x62\xb4\x6a\xc6\xba\x29\x4d\xe1\xe9\x48\x4a\x71\x46\x6e\x15\x61\xb4\xb5\x13\xbf\xb7\xc3\x29\xca\x88\x1f\x49\x25\x13\x93\x3f\x28\xbd\xaa\x38\x77\x40\xda\xbc\xc4\xdd\x03\xf5\xd9\xdb\x09\x9d\xfb\xed\xab\xa0\x53\xeb\xa8\xd9\xdd\x0e\xa8\xf6\xfa\x7c\xc6\x9a\x78\x34\xa0\x6e\xe9\x49\xa6\x9e\x3a\xdd\x8d\xb0\xa9\x3e\x19\x1b\x0d\xdf\xc2\xb6\x38\xc3\x7d\x1b\x8c\x86\xef\x3c\x5a\xef\x72\x14\x8c\x88\x91\xd1\x3d\x84\x1f\xa6\xd7\xce\x90\x49\x56\x27\x72\x5b\x56\x06\x0a\xa9\x0e\x28\x3a\x7a\x79\x61\x97\x5d\xbb\x0b\x5a\xe6\xab\x82\xff\x51\x11\x94\x68\xf2\xe4\x72\xee\x9c\xcd\xff\x6b\x5c\x4e\x2e\x2e\xff\x90\xb8\x21\xca\x69\xca\x1a\x8a\x3f\xbd\x43\x9c\xfd\xfb\x16\xbd\x45\x7f\x05\x00\x00\xff\xff\x0e\x36\xee\x1e\xd5\x0c\x00\x00" +var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x39\x2c\x64\xc0\x91\xd2\xab\xe1\x64\xe1\x3a\x59\xb4\x48\xda\x04\x9b\x60\xf7\x3c\x16\x69\x8b\x08\x4d\xaa\x24\x65\x57\x58\xe4\xdd\x0b\x52\x94\x2c\xca\xd4\x6e\x5a\x14\x3d\x54\x87\x20\x26\xe7\xe7\x9b\x6f\x86\x33\xc3\xf6\x95\x54\x06\xd6\xaa\xa9\x8c\x4c\xfc\xaf\x4f\x5c\x1e\x5f\xe4\x2b\x15\xb0\x55\x72\x0f\x17\xfd\xef\x8b\x5e\xa2\x16\x3b\xb6\xe1\x34\x90\x1a\x9e\xf5\x92\x0f\xb2\x78\xa5\xc4\x9d\xe9\x56\xf0\xea\xcf\x87\xc7\xf5\xfd\xdd\xed\xcb\xe3\xfd\xdd\xef\xab\xdb\xdb\xcf\x77\xcf\xcf\x49\x92\xe7\x39\xbc\x28\x14\x1a\x0b\xc3\xa4\x00\x53\xa2\x01\x84\xa2\xd6\x46\x92\x06\x2a\x25\x0f\x8c\x50\x05\x47\x59\x73\x02\x9a\xed\x84\x53\x31\x12\x0a\x45\xd1\x50\x40\xd0\x25\x2a\x4a\x00\x8b\x42\xd6\xc2\xc0\x56\x2a\x40\xa8\xb5\x55\x2a\x25\x20\x57\x14\x49\xe3\xb4\x4a\xd4\x60\x4a\xca\x14\xd4\x82\x3b\x80\xbd\x56\x6b\x8d\x58\xb1\x16\x53\x49\xcf\x85\x9c\xbe\x74\x28\xac\x1d\x30\x03\xe0\xc8\xb5\x4c\x92\xc1\x49\x9a\x00\x00\x6c\x6b\xce\x57\x64\xcf\xc4\x53\xbd\xe1\xac\xb8\xa7\xcd\xc2\xb3\x9e\xdd\xd3\xe6\x81\x69\x73\x27\x8c\x6a\xe6\x90\xe7\xf0\x95\xb2\x5d\x69\x16\xf0\xd3\xd5\xd5\x55\x32\x03\xf8\x96\x38\x13\x95\xa2\x15\x2a\x9a\x7a\x4e\x9e\x3c\x25\x0b\xc0\xda\x94\xe9\xcf\x52\x29\x79\xfc\x82\xbc\xa6\x33\xf8\xb0\x6a\x91\xce\x5d\xfc\xfe\x87\x17\x7c\x36\x52\xe1\x8e\xce\x61\x8d\x15\x6e\x18\x67\x86\x51\x7d\x52\x99\x75\xee\xec\xc7\xa9\xf1\xb4\xfa\x5b\xb8\x06\xff\x5f\x5a\x61\x63\x9d\x8f\xd0\xcc\x4e\xca\x81\x62\xf6\x4a\x1b\x9d\x21\x21\x69\x75\x22\xe0\x9c\x94\xac\xbf\x9d\x5b\x96\xcb\x15\xdf\x49\xc5\x4c\xb9\x8f\x0a\x07\x12\x73\x38\x7a\xde\x22\x92\xed\xd5\x2c\x8c\xec\x80\x35\x37\x3d\x0b\x0d\x5c\x8f\x20\x17\x03\x82\x32\xdd\xd2\xd6\x1b\xb0\x5f\xc6\xb4\xae\xe9\xd2\xd1\x1a\x94\x7f\xf6\x95\x99\x92\x28\x3c\xe2\x86\xdb\x74\xf4\x2f\x28\xfb\x62\x7d\xde\xa4\xb9\x37\x97\x6f\xbb\x1b\x77\x31\x02\xc8\x4f\x8f\xe7\x37\x14\xb8\xa3\x0a\x96\x97\xc1\x93\xca\xda\x7a\x7d\x38\x13\x4c\x5d\x70\x8b\x71\x8c\x93\xe9\xf1\x78\x32\x8d\x07\x9a\x2e\x2f\xcf\x3d\xcf\xc1\xc8\x45\xe8\xfb\xdc\xab\xaf\xad\x27\x34\xe5\x28\x14\x33\x90\xfa\x4f\x28\xff\x01\xd2\x9b\x34\x30\x6b\xbf\xf7\xc7\x16\xa8\xc6\x02\xfd\x45\x72\x32\x99\xac\x97\x93\x44\x08\xa2\x25\x7d\x45\x88\xa2\x5a\x2f\x46\xcc\x60\x7b\x3c\x0f\x34\x86\xac\x2e\x26\x38\x4e\x22\x40\x07\x5d\x21\xcc\x7c\x60\x7d\x79\x39\x08\x66\xec\x78\x54\x0b\x83\xa0\x62\x44\x4d\x93\xb4\xc6\x0a\xae\x03\x40\xb1\x1a\xf0\x69\xff\x30\xe5\xf3\x26\x7d\x07\x9a\x59\x34\xfe\xc0\x9d\x6b\x3f\xba\x4c\x43\x80\x73\x40\x13\xad\x7d\x6f\xe3\x57\xb1\x95\x6d\xaf\x99\xaa\x7c\xd7\x8e\xfe\xd7\x75\xcf\x87\x84\xac\x6d\xa1\x4b\x05\xd7\xe3\xf1\x10\x8f\x6d\xe3\x66\xd7\x32\x86\x3d\x34\x78\x93\xda\x15\xe2\x7b\xa9\xf0\x82\xd1\xac\xdb\xef\xe3\x47\xa8\x50\xb0\x22\xbd\x58\xbb\x4d\x42\x48\x03\xad\x7b\x88\x6d\x02\x52\x5d\x0c\xe3\x8c\x78\xb2\x0f\xb3\x1b\x89\x81\xa7\x20\xc1\x7f\xe7\x51\x77\xeb\xc6\x58\x75\x58\xb4\xd3\xdd\xc0\x55\xda\x22\x5a\x75\xb1\xd7\x98\xe7\xf0\x78\xa0\x4a\x31\x42\xdd\x2a\x43\xe8\xd6\x4e\x8c\xc1\x0e\xa8\x68\x41\xd9\x81\xaa\x6c\x62\x72\x04\xa5\x5b\x8b\xee\x05\xe5\xed\x24\x3f\x0d\xb8\xcf\xde\x4e\xe8\xdc\x6f\x6f\x82\x1e\x7b\x47\xed\xee\xb7\x47\xf5\xaa\xbb\x33\xd2\xc6\xa3\x01\x75\x4f\x4f\x36\x35\x2a\xf5\xa9\x05\xbe\xeb\x9d\x75\xbd\xe5\x5b\xf8\xae\x3a\xbc\x6f\xa3\xde\xf2\x83\xa9\xf7\x0e\x92\x3a\x8a\x22\xcd\x7f\x1c\x40\x98\x60\xdb\x85\x26\x79\x9d\xc8\x6e\x55\x1b\x10\x52\xed\x91\x9f\x08\x66\xc2\xae\xcb\x76\x9b\xb4\xdc\xd7\x82\xfd\x51\x53\xa8\xd0\x94\xd9\x79\xe7\xea\xcc\xff\x7b\x6c\x4e\xee\x3e\xff\x94\xba\x31\xce\x69\xd2\x5a\x92\x3f\x7d\x87\x3a\xfb\xf7\x2d\x79\x4b\xfe\x0a\x00\x00\xff\xff\xfe\x48\x6c\xcc\x19\x0d\x00\x00" func lockedtokensAdminCustody_create_only_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3857,11 +3857,11 @@ func lockedtokensAdminCustody_create_only_lease_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0x82, 0x64, 0x9d, 0x19, 0xd2, 0x42, 0xf7, 0xe6, 0xe0, 0x26, 0x9e, 0x4b, 0x7f, 0xef, 0x35, 0x66, 0x75, 0x6f, 0x69, 0x4d, 0x91, 0xba, 0xc, 0x37, 0x85, 0xf6, 0x43, 0x33, 0x18, 0xeb, 0xed}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc5, 0xb7, 0x41, 0xa4, 0x72, 0x62, 0x65, 0xe7, 0xf6, 0xc7, 0x6e, 0xb6, 0x66, 0xdf, 0x1d, 0xef, 0x2d, 0x8b, 0x3a, 0x3d, 0xf9, 0x6, 0x77, 0x99, 0xdd, 0x17, 0xe2, 0xce, 0xb1, 0xdf, 0x21, 0xf5}} return a, nil } -var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\xf6\xb0\x90\x01\x47\x72\x8f\x35\x9c\x00\xae\x93\x45\x8b\xa4\x4d\xb0\x49\x77\xcf\x63\x71\x6c\x11\xa1\x45\x95\xa4\xec\x0a\x8b\xfc\xf7\x82\x12\xf5\xa0\x2c\x25\x9b\xa2\xe8\x61\x75\x30\x2c\x6a\x1e\xdf\x7c\xf3\xe0\xf0\x43\x2e\x95\x81\x8d\x2a\x73\x23\x03\xf7\xf6\x49\xc8\xd3\x93\x7c\xa6\x0c\x76\x4a\x1e\xe0\x43\xfb\xfe\xa1\x95\x28\xb2\x3d\xdf\x0a\xf2\xa4\xfa\x67\xad\xe4\x9d\x4c\x9e\x89\x55\x67\xba\x16\x5c\xfc\x7d\x77\xbf\xb9\xbd\xb9\x7e\xba\xbf\xbd\xf9\x63\x7d\x7d\xfd\xf9\xe6\xf1\x31\x08\xe2\x38\x86\x27\x85\x99\xc6\xc4\x70\x99\x81\x49\xd1\x00\x42\x52\x68\x23\x59\x09\xb9\x92\x47\xce\x48\xc1\x49\x16\x82\x81\xe6\xfb\xac\x52\x31\x12\x12\x45\x68\x08\x10\x74\x8a\x8a\x18\x60\x92\xc8\x22\x33\xb0\x93\x0a\x10\x0a\x6d\x95\x52\x09\x28\x14\x21\x2b\x2b\xad\x14\x35\x98\x94\xb8\x82\x22\x13\x15\xc0\x56\xab\xb6\xc6\xac\x58\x8d\x29\xa5\x73\xa1\x4a\x5f\x56\x28\xac\x1d\x30\x3d\xe0\x28\xb4\x0c\x82\xde\x49\x18\x00\x00\xe4\xa8\x0c\x47\xb1\x66\x07\x9e\x3d\x14\x5b\xc1\x93\x5b\x2a\x97\x8e\xf8\xe8\x96\xca\x3b\xae\xcd\x4d\x66\x54\x39\x87\x38\x86\xaf\xc4\xf7\xa9\x59\xc2\x4f\x8b\x45\x5f\xfd\x4f\x4d\xea\x1d\xda\x3f\x2f\x16\xc1\x0c\xe0\x5b\x50\xdb\x50\x94\xa3\xa2\xd0\x71\xfa\xe0\x28\x5d\x02\x16\x26\x0d\x7f\x91\x4a\xc9\xd3\x17\x14\x05\xcd\xe0\xe3\xba\x8e\x74\x5e\xf1\xe7\x5e\x9c\xe0\xa3\x91\x0a\xf7\x34\x87\x0d\xe6\xb8\xe5\x82\x1b\x4e\xba\x53\x99\x35\xee\xec\x23\xc8\xb8\xb4\xb8\xaf\x70\x09\xee\x5f\x98\x63\x69\x9d\x0f\xd0\xcc\x3a\x65\x4f\x31\x7a\xa6\x52\x47\xc8\x58\x98\x77\xf1\x8f\x92\x1a\xb5\x02\x73\x9b\xa8\x74\x2d\xf6\x52\x71\x93\x1e\xa6\xe4\x3d\xa1\x39\x9c\x1c\x79\xe3\xc2\xf5\xd7\xd9\xfb\x41\x7a\xa9\x7b\x1b\xa3\x2f\xfe\x3a\x44\x5f\xb6\x41\xe8\x25\xe1\x88\x85\x30\x6d\xc2\x4a\xb8\x1c\x00\x4f\x7a\xb9\x8c\x74\x9d\xe1\xd6\x80\x7d\x22\xae\x75\x41\xab\xaa\x02\xbc\x4e\x8f\xbe\x72\x93\x32\x85\x27\xdc\x0a\x5b\x39\xed\xb0\x88\xbe\x58\x9f\x57\x61\xec\xcc\xc5\xbb\xe6\x4b\xf5\x61\x00\x50\x74\x73\xe2\x77\xcc\x70\x4f\x0a\x56\x17\xde\xf4\x88\xea\xd6\xbc\x3b\x13\x0c\xab\xe0\x96\xc3\x18\x27\x2b\xc9\xe1\x89\x34\x1e\x29\x5c\x5d\x9c\x7b\x9e\x83\x91\x4b\xdf\xf7\xb9\x57\xd7\x06\x0f\x68\xd2\x41\x28\xa6\x27\xf5\xbf\x50\xfe\x06\xd2\xab\xd0\x33\x6b\x9f\xef\x8f\xcd\x53\x1d\x0b\xf4\x57\x29\xd8\x64\xb2\x9e\x3a\x09\x1f\x44\x4d\xfa\x9a\x31\x45\x5a\x2f\x07\xcc\x60\x7d\x3c\xf7\x34\xfa\xac\x2e\x27\x38\x0e\x46\x80\xf6\x06\x98\x9f\x79\xcf\xfa\xea\xa2\x17\xcc\xd0\xf1\xa0\x16\x7a\x41\x8d\x11\x35\x4d\xd2\x06\x73\xb8\xf4\x00\x8d\xd5\x80\x4b\xfb\xc7\x29\x9f\x57\xe1\x77\xa0\x99\x8d\xc6\xef\xb9\xab\x46\x90\x4e\x43\x1f\xe0\x1c\xd0\x8c\xd6\xbe\xb3\xf1\x5b\xb6\x93\xf5\xac\x99\xaa\xfc\x6a\x60\xfe\xd0\x75\x2f\xfa\x84\x6c\x6c\xa1\x4b\x05\x97\xc3\x9b\x6c\x3c\xb6\x6d\x75\xcd\xae\xc6\xb0\xfb\x06\xaf\x42\xbb\x2d\xbd\x96\x0a\x27\x38\x31\x88\x46\x24\x6d\x63\x35\xb7\xaf\x87\xca\x4b\xd0\x7b\x9a\xb2\xd9\x8c\x86\xaa\xfd\xa2\x9b\xee\xe6\xaa\x52\x96\xa3\x55\x33\xd6\x4d\x71\x0c\xf7\x47\x52\x8a\x33\xaa\xb6\x2e\x46\x3b\x3b\xf1\x7b\xeb\xaa\xa2\x84\xf8\x91\x54\x34\x31\xf9\xbd\xd2\x2b\xb2\xa6\x03\xe2\xfa\x36\xee\x2e\xa8\xcf\xce\x8e\xef\xdc\x2d\x9a\x19\x9d\x5a\x47\xf5\x9a\x7a\x40\xf5\xac\x9b\x33\x56\xc7\xa3\x01\x75\x4b\x4f\x34\x75\xd5\xe9\x6e\x84\x4d\xf5\xc9\xd8\x68\xf8\xe6\xb7\x45\x03\xf7\x65\x30\x1a\xde\xb8\xb4\x5e\xe5\xc8\x1b\x11\x23\xa3\x7b\x08\xdf\x4f\xaf\x9d\x21\x93\xac\x4e\xe4\x36\x2f\x0c\x64\x52\x1d\x50\x74\xf4\xf2\xcc\xee\xf5\x76\x6d\xb5\xcc\x17\x19\xff\xab\x20\xc8\xd1\xa4\xd1\xf9\xdc\x69\xcc\xff\x67\x5c\x4e\x2e\x2e\xff\x92\xb8\x21\xca\x69\xca\x6a\x8a\x3f\xbd\x42\x9c\xfd\x7d\x09\x5e\x82\x7f\x02\x00\x00\xff\xff\xcc\x7d\x08\x2a\xc0\x0d\x00\x00" +var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x39\x2c\x64\xc0\x91\xdc\x63\x0d\x27\x0b\xd7\xc9\xa2\x45\xd2\x26\xd8\xa4\xbb\xe7\xb1\x34\xb6\x88\xd0\xa4\x4a\x52\x76\x85\x20\xef\x5e\x50\xa2\x64\x51\x96\xf2\x53\x14\x3d\xac\x0e\x41\x44\xcd\xcf\x37\xdf\x0c\x67\xc6\x6c\x97\x4b\x65\x60\xa5\xca\xdc\xc8\xc0\xbd\x7d\xe1\xf2\xf0\x28\x9f\x48\xc0\x46\xc9\x1d\x9c\xb5\xef\x67\xad\x44\x21\xb6\x6c\xcd\xc9\x93\xea\x9e\xb5\x92\xb7\x32\x79\xa2\xb4\x3a\xd3\xb5\xe0\xec\xef\xdb\xbb\xd5\xcd\xf5\xd5\xe3\xdd\xcd\xf5\x1f\xcb\xab\xab\xaf\xd7\x0f\x0f\x41\x10\xc7\x31\x3c\x2a\x14\x1a\x13\xc3\xa4\x00\x93\xa1\x01\x84\xa4\xd0\x46\xa6\x25\xe4\x4a\xee\x59\x4a\x0a\x0e\xb2\xe0\x29\x68\xb6\x15\x95\x8a\x91\x90\x28\x42\x43\x80\xa0\x33\x54\x94\x02\x26\x89\x2c\x84\x81\x8d\x54\x80\x50\x68\xab\x94\x49\x40\xae\x08\xd3\xb2\xd2\xca\x50\x83\xc9\x88\x29\x28\x04\xaf\x00\xb6\x5a\xb5\xb5\xd4\x8a\xd5\x98\x32\x3a\x15\xaa\xf4\x65\x85\xc2\xda\x01\xd3\x01\x8e\x5c\xcb\x20\xe8\x9c\x84\x01\x00\x40\x8e\xca\x30\xe4\xcb\x74\xc7\xc4\x7d\xb1\xe6\x2c\xb9\xa1\x72\xee\x88\x8f\x6e\xa8\xbc\x65\xda\x5c\x0b\xa3\xca\x29\xc4\x31\x7c\x27\xb6\xcd\xcc\x1c\x7e\x9a\xcd\xba\xea\x7f\x6a\x52\x1f\xd0\xfe\x79\x36\x0b\x26\x00\xcf\x41\x6d\x43\x51\x8e\x8a\x42\xc7\xe9\xbd\xa3\x74\x0e\x58\x98\x2c\xfc\x45\x2a\x25\x0f\xdf\x90\x17\x34\x81\x4f\xcb\x3a\xd2\x69\xc5\x9f\x7b\x71\x82\x0f\x46\x2a\xdc\xd2\x14\x56\x98\xe3\x9a\x71\x66\x18\xe9\xa3\xca\xa4\x71\x67\x1f\x4e\xc6\xa5\xc5\x7d\x85\x0b\x70\xff\x85\x39\x96\xd6\x79\x0f\xcd\xe4\xa8\xec\x29\x46\x4f\x54\xea\x08\xd3\x34\xcc\x8f\xf1\x0f\x92\x1a\xb5\x02\x53\x9b\xa8\x6c\xc9\xb7\x52\x31\x93\xed\xc6\xe4\x3d\xa1\x29\x1c\x1c\x79\xc3\xc2\xf5\xd7\xc9\xc7\x41\x7a\xa9\x7b\x1b\xa3\x2f\xfe\x3a\x44\x5f\xb6\x41\xe8\x25\x61\x8f\x05\x37\x6d\xc2\x4a\xb8\xe8\x01\x4f\x3a\xb9\x8c\x74\x9d\xe1\xd6\x80\x7d\x22\xa6\x75\x41\x8b\xaa\x02\xbc\x9b\x1e\x7d\x67\x26\x4b\x15\x1e\x70\xcd\x6d\xe5\xb4\xcd\x22\xfa\x66\x7d\x5e\x86\xb1\x33\x17\x6f\x9a\x2f\xd5\x87\x1e\x40\x7e\xec\x13\xbf\xa3\xc0\x2d\x29\x58\x9c\x7b\xdd\x23\xaa\xaf\xe6\xed\x89\x60\x58\x05\x37\xef\xc7\x38\x5a\x49\x0e\x4f\xa4\x71\x4f\xe1\xe2\xfc\xd4\xf3\x14\x8c\x9c\xfb\xbe\x4f\xbd\xba\x6b\x70\x8f\x26\xeb\x85\x62\x3a\x52\xff\x0b\xe5\x6f\x20\xbd\x0c\x3d\xb3\xf6\x79\x7f\x6c\x9e\xea\x50\xa0\xbf\x4a\x9e\x8e\x26\xeb\xf1\x28\xe1\x83\xa8\x49\x5f\xa6\xa9\x22\xad\xe7\x3d\x66\xb0\x3e\x9e\x7a\x1a\x5d\x56\xe7\x23\x1c\x07\x03\x40\x3b\x0d\xcc\xcf\xbc\x67\x7d\x71\xde\x09\xa6\xef\xb8\x57\x0b\x9d\xa0\x86\x88\x1a\x27\x69\x85\x39\x5c\x78\x80\x86\x6a\xc0\xa5\xfd\xd3\x98\xcf\xcb\xf0\x1d\x68\x26\x83\xf1\x7b\xee\xaa\x16\xa4\xb3\xd0\x07\x38\x05\x34\x83\xb5\xef\x6c\xfc\x26\x36\xb2\xee\x35\x63\x95\x5f\x35\xcc\x1f\xba\xee\x79\x97\x90\x95\x2d\x74\xa9\xe0\xa2\x3f\xc9\x86\x63\x5b\x57\x63\x76\x31\x84\xdd\x37\x78\x19\xda\x6d\xe9\xb5\x54\x38\xc1\xc1\xac\xdb\xe7\xf3\x67\xc8\x51\xb0\x24\x3c\x5b\x55\x4b\x93\x90\x06\x6a\xf7\x30\xb4\xf4\x48\x75\xd6\x8d\x73\xc0\x93\xbd\x98\xcd\xf4\xf6\x3c\x79\x09\xfe\xc8\xa5\x6e\x36\xab\xbe\x6a\xb7\x68\xc7\xbb\x41\x55\x69\xf3\xc1\xaa\x1b\xba\x8d\x71\x0c\x77\x7b\x52\x8a\xa5\x54\x6d\x6d\x29\x6d\xec\xc4\xe8\xac\xbb\x8a\x12\x62\x7b\x52\xd1\xc8\xe4\xf0\x4a\xb7\x10\xcd\x0d\x8a\xeb\x69\x7e\x1c\x70\x5f\x9d\x1d\xdf\xb9\x5b\x54\x05\x1d\x5a\x47\xf5\x9a\xbb\x43\xf5\xa4\x9b\xb3\xb4\x8e\x47\x03\xea\x96\x9e\x68\x6c\x54\xea\x63\x0b\x7c\xd7\x3d\x6b\x7a\xcb\xb3\x7f\xaf\x1a\xbc\x2f\xbd\xde\xf2\xc6\xd4\x7b\x07\x49\x0d\x45\x03\xcd\xbf\x1f\x80\x9f\x60\xdb\x85\x46\x79\x1d\xc9\x6e\x5e\x18\x10\x52\xed\x90\x1f\x09\x66\xc2\xfe\x32\xb0\x8b\xaf\xe5\xbe\x10\xec\xaf\x82\x20\x47\x93\x45\xa7\x9d\xab\x31\xff\xdf\xb1\x39\xba\xfb\xfc\x5b\xea\xfa\x38\xc7\x49\xab\x49\xfe\xf2\x0a\x75\xf6\xef\x4b\xf0\x12\xfc\x13\x00\x00\xff\xff\xb1\x5d\x7b\xb4\x04\x0e\x00\x00" func lockedtokensAdminCustody_create_only_shared_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3877,11 +3877,11 @@ func lockedtokensAdminCustody_create_only_shared_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_shared_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0x48, 0x74, 0xb6, 0x2d, 0x33, 0xb1, 0x7f, 0xa7, 0x46, 0xd4, 0xf2, 0x89, 0xf2, 0xf8, 0xa7, 0xd6, 0x8b, 0x8, 0xe, 0x41, 0x5f, 0x2, 0xff, 0x57, 0x56, 0x68, 0xa1, 0x8d, 0xd9, 0xc0, 0x29}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc8, 0x7f, 0x61, 0x42, 0x63, 0x5a, 0xc6, 0x70, 0x29, 0x45, 0xa7, 0xa7, 0x7e, 0xd, 0xbe, 0x3e, 0x53, 0x33, 0xb6, 0x94, 0xba, 0x7b, 0x1, 0x72, 0x9e, 0x9a, 0x1b, 0x20, 0x6e, 0xee, 0xff, 0x54}} return a, nil } -var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\xf6\xb0\x90\x01\x47\xf2\x1e\x6b\x38\x01\x5c\x27\x8b\x16\x49\x9b\x60\x93\xee\x9e\xc7\xd2\xd8\x22\x42\x93\x2a\x49\xd9\x35\x82\xfc\xf7\x82\xfa\xb2\x28\x89\x4e\x52\x14\x3d\x54\x87\x20\x12\xe7\xe3\xcd\x9b\xe1\x23\xcd\x76\xb9\x54\x06\x56\xea\x98\x1b\x19\xd4\x6f\x5f\xb9\x3c\x3c\xc9\x67\x12\xb0\x51\x72\x07\x9f\xda\xf7\x4f\xad\x45\x21\xb6\x6c\xcd\xc9\xb1\xea\x7e\x6b\x2d\xef\x64\xf2\x4c\x69\xf9\x4d\x57\x86\xb3\xbf\xee\xee\x57\xb7\x37\xd7\x4f\xf7\xb7\x37\xbf\x2f\xaf\xaf\xbf\xdd\x3c\x3e\x06\x41\x1c\xc7\xf0\xa4\x50\x68\x4c\x0c\x93\x02\x4c\x86\x06\x10\x92\x42\x1b\x99\x1e\x21\x57\x72\xcf\x52\x52\x70\x90\x05\x4f\x41\xb3\xad\x28\x5d\x8c\x84\x44\x11\x1a\x02\x04\x9d\xa1\xa2\x14\x30\x49\x64\x21\x0c\xa0\x48\x01\x05\x14\x82\x97\x10\x4a\xf3\x66\x6d\x23\x15\x20\x14\x9a\x54\x10\x98\x53\xd6\x30\x00\x00\xc8\x51\x19\x86\x7c\x99\xee\x98\x78\x28\xd6\x9c\x25\xb7\x74\x9c\xd7\x1c\x45\xb7\x74\xbc\x63\xda\xdc\x08\xa3\x8e\x53\x88\x63\xf8\x41\x6c\x9b\x99\x39\x7c\x99\xcd\xba\xee\x7f\x68\x52\x1f\xf0\xfe\xa9\xf6\xde\x14\xfc\xa3\xae\x5f\x66\xb3\x59\x30\x81\x97\xa0\x4a\xaf\x28\x47\x45\x61\xcd\xdc\x43\x4d\xdc\x1c\xb0\x30\x59\xf8\xb3\x54\x4a\x1e\xbe\x23\x2f\x68\x02\x9f\x97\x15\x1d\xad\xaf\x7d\x38\x99\x9a\xc9\x7a\x15\x2e\xa1\xfe\x2f\xcc\xf1\x68\x23\xf5\x42\x4f\x1c\x5f\x4b\xea\xfb\x3d\x5b\x57\x27\x65\xf4\x4c\x47\x1d\x61\x9a\x86\xf9\x89\x86\xd1\xb6\x44\xad\xc1\x14\x32\xd4\xd9\x92\x6f\xa5\x62\x26\xdb\xf9\xec\x1d\xa3\x29\x1c\x6a\x0e\xc7\x8d\xab\xd5\xc9\xc7\x41\x3a\x1d\x7c\x1b\xa3\x6b\x7e\x1e\xa2\x6b\xdb\x20\x6c\x21\x76\xe8\x1f\x05\x38\x98\xaf\x33\xe8\x86\xb6\x1e\x68\x43\xc3\x01\x2e\x3b\x1a\x7b\x2c\xb8\x59\x61\x8e\x6b\xc6\x99\x39\xc2\x65\x8f\xd0\xa4\x59\x62\xa4\x23\x6d\xa4\xc2\x2d\xb5\x01\xec\x13\x31\xad\x0b\x5a\x94\x93\xec\xc8\x4d\xf4\x83\x99\x2c\x55\x78\xc0\x35\xb7\x83\xdd\x2a\x56\xf4\xdd\xe6\xbc\x0a\xe3\x3a\x5c\xbc\x69\x56\xca\x85\x1e\x40\x7e\x12\xab\xdf\x50\xe0\x96\x14\x2c\x2e\x1c\x09\x8b\x2a\xb5\xb9\x1b\x18\x86\x65\x71\xf3\x7e\x8d\xde\x09\xaf\xf1\x44\x1a\xf7\x14\x2e\x2e\x86\x99\xa7\x60\xe4\xdc\xcd\x3d\xcc\xfa\x58\x45\x79\x40\x93\xf5\x4a\x31\x1d\xab\xff\x84\xf2\x37\x90\x5e\x85\x4e\x58\xfb\xbc\xbf\x36\xc7\x75\xac\xd0\x5f\x24\x4f\xbd\xcd\x7a\x3a\x59\xb8\x20\x2a\xd2\x97\x69\xaa\x48\xeb\x79\x8f\x19\xac\x3e\x4f\x1d\x8f\x2e\xab\x73\x0f\xc7\xc1\x08\xd0\xee\xae\x74\x3a\xef\x44\x5f\x5c\x74\x8a\xe9\x27\xee\xcd\x42\xa7\xa8\x31\xa2\xfc\x24\xad\x30\x87\x4b\x07\xd0\xd8\x0c\xd4\x6d\xff\xec\xcb\x79\x15\xbe\x03\xcd\x64\xb4\x7e\x27\x5d\x29\x3e\x3a\x0b\x5d\x80\x53\x40\x33\x3a\xfb\x75\x8c\x5f\xc5\x46\x56\x5a\xe3\x9b\xfc\x52\xc8\xff\xd7\x73\xcf\xbb\x84\xac\xec\xa0\x4b\x05\x97\xfd\x13\xb6\xed\xa7\x5b\xdc\xba\xbc\x06\x2c\xc6\xc0\xbb\x11\xaf\x42\x7b\x67\x3b\xd7\x8b\xda\xd0\xa3\x44\x23\x96\x76\x67\x35\xd7\x02\x07\x95\xd3\xa1\x8f\xec\xca\xe6\x8a\xd7\x77\xed\x4e\x9d\x7f\x3b\x97\xa3\x32\x1f\x1d\x9b\xb1\xed\x14\xc7\x70\xbf\x27\xa5\x58\x4a\x60\x32\x82\x94\x36\x56\xf2\x3b\x97\x66\x45\x09\xb1\x3d\xa9\xc8\x23\xfd\xce\xec\x15\xa2\xd9\x02\x71\x75\x10\x9f\x4e\xa8\x6f\x75\x1c\x37\x79\x7d\xdd\x15\x74\x68\x13\x55\x97\xe5\x1d\xaa\x67\xdd\x7c\x4b\xab\x7a\x34\xa0\x6e\xe9\x89\x7c\x67\x9d\x3e\x69\x98\x6f\xa3\x8c\x69\xc3\x8b\xbb\x2f\x1a\xb8\xaf\x3d\x6d\x78\xe3\xd4\x3a\xcb\x91\xa3\x11\x23\xda\xdd\x87\xef\xb6\xd7\x8a\x88\x97\x55\x4f\x6f\xf3\xc2\x80\x90\x6a\x87\xfc\x44\x2f\x13\xf6\xd7\x85\xbd\x56\x5b\xe6\x0b\xc1\xfe\x2c\x08\x72\x34\x59\x34\x14\x9e\x26\xfc\xbf\xc6\xa5\xf7\xe6\xf2\x0f\x89\xeb\xa3\xf4\x53\x56\x51\xfc\xf5\x0c\x71\xf6\xef\x6b\xf0\x1a\xfc\x1d\x00\x00\xff\xff\x82\x19\xef\x87\x46\x0e\x00\x00" +var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x39\x2c\x64\xc0\x91\xbc\xc7\x1a\x4e\x16\xae\x93\x45\x8b\xa4\x4d\xb0\x49\x77\xcf\x63\x69\x6c\x11\xa1\x49\x95\xa4\xec\x1a\x41\xde\xbd\xa0\x44\xc9\xa2\x2c\x25\x76\x51\xf4\x50\x1e\x82\x88\x9c\x9f\x6f\xbe\x19\x0e\xc7\x6c\x93\x4b\x65\x60\xa1\xf6\xb9\x91\x81\xfb\xfa\xca\xe5\xee\x59\xbe\x90\x80\x95\x92\x1b\xb8\x68\xbe\x2f\x1a\x89\x42\xac\xd9\x92\x93\x27\xd5\xde\x6b\x24\xef\x65\xf2\x42\x69\xb9\xa7\x2b\xc1\xc9\x5f\xf7\x0f\x8b\xbb\xdb\x9b\xe7\x87\xbb\xdb\xdf\xe7\x37\x37\xdf\x6e\x9f\x9e\x82\x20\x8e\x63\x78\x56\x28\x34\x26\x86\x49\x01\x26\x43\x03\x08\x49\xa1\x8d\x4c\xf7\x90\x2b\xb9\x65\x29\x29\xd8\xc9\x82\xa7\xa0\xd9\x5a\x94\x2a\x46\x42\xa2\x08\x0d\x01\x82\xce\x50\x51\x0a\x98\x24\xb2\x10\x06\x50\xa4\x80\x02\x0a\xc1\x4b\x08\xa5\x78\x7d\xb6\x92\x0a\x10\x0a\x4d\x2a\x08\xcc\xc1\x6b\x18\x00\x00\xe4\xa8\x0c\x43\x3e\x4f\x37\x4c\x3c\x16\x4b\xce\x92\x3b\xda\x4f\x1d\x47\xd1\x1d\xed\xef\x99\x36\xb7\xc2\xa8\xfd\x18\xe2\x18\x7e\x10\x5b\x67\x66\x0a\x9f\x27\x93\xb6\xfa\x1f\x9a\xd4\x19\xda\x3f\x39\xed\x55\xc1\xcf\x55\xfd\x3c\x99\x4c\x82\x11\xbc\x06\x95\x7b\x45\x39\x2a\x0a\x1d\x73\x8f\x8e\xb8\x29\x60\x61\xb2\xf0\x67\xa9\x94\xdc\x7d\x47\x5e\xd0\x08\x3e\xcd\x2b\x3a\x1a\x5d\xbb\x38\x19\xc7\xa4\x3b\x85\x2b\x70\xff\x85\x39\xee\xad\xa5\x8e\xe9\x91\xa7\x6b\x49\x3d\x5d\xb3\x51\xf5\x5c\x46\x2f\xb4\xd7\x11\xa6\x69\x98\x1f\x68\xe8\x4d\x4b\xd4\x08\x8c\x21\x43\x9d\xcd\xf9\x5a\x2a\x66\xb2\xcd\x90\xbc\x27\x34\x86\x9d\xe3\xb0\x5f\xb8\x3a\x1d\x9d\x0f\xd2\xcb\xe0\xc7\x18\x7d\xf1\xf7\x21\xfa\xb2\x35\xc2\x06\x62\x8b\xfe\x5e\x80\x47\xf5\xf5\x0e\xba\x63\xd9\x01\x68\xc7\x82\x47\xb8\x6c\x69\x6c\xb1\xe0\x66\x81\x39\x2e\x19\x67\x66\x0f\x57\x1d\x42\x93\xfa\x88\x91\x8e\xb4\x91\x0a\xd7\xd4\x18\xb0\x2b\x62\x5a\x17\x34\x2b\x2b\xd9\x6b\x37\xd1\x0f\x66\xb2\x54\xe1\x0e\x97\xdc\x16\x76\xd3\xb1\xa2\xef\xd6\xe7\x75\x18\x3b\x73\xf1\xaa\x3e\x29\x0f\x3a\x00\xf9\xa1\x59\xfd\x86\x02\xd7\xa4\x60\x76\xe9\xb5\xb0\xa8\xea\x36\xf7\x47\x82\x61\x19\xdc\xb4\x1b\xe3\x60\x85\x3b\x3c\x91\xc6\x2d\x85\xb3\xcb\x63\xcf\x63\x30\x72\xea\xfb\x3e\xf6\xfa\x54\x59\x79\x44\x93\x75\x42\x31\x2d\xa9\xff\x84\xf2\x0f\x90\x5e\x87\x9e\x59\xbb\x4e\x8f\xcd\x53\xed\x0b\xf4\x17\xc9\xd3\xc1\x64\x3d\x1f\x24\x7c\x10\x15\xe9\xf3\x34\x55\xa4\xf5\xb4\xc3\x0c\x56\xdb\x63\x4f\xa3\xcd\xea\x74\x80\xe3\xa0\x07\x68\xfb\x56\x7a\x99\xf7\xac\xcf\x2e\x5b\xc1\x74\x1d\x77\x6a\xa1\x15\x54\x1f\x51\xc3\x24\x2d\x30\x87\x2b\x0f\x50\x5f\x0d\xb8\xb4\x7f\x1a\xf2\x79\x1d\x9e\x80\x66\xd4\x1b\xbf\xe7\xae\x6c\x3e\x3a\x0b\x7d\x80\x63\x40\xd3\x5b\xfb\xce\xc6\xaf\x62\x25\xab\x5e\x33\x54\xf9\x65\x23\xff\x5f\xd7\x3d\x6f\x13\xb2\xb0\x85\x2e\x15\x5c\x75\x5f\xd8\xfe\xd8\x96\xe5\x14\x30\xeb\xc3\xee\x1b\xbc\x0e\xed\xc8\xf6\x5e\x2a\x9c\x60\x6f\xd6\xed\xfa\xf2\x05\x72\x14\x2c\x09\x2f\x16\xe5\xe4\x26\xa4\x81\xca\x7d\x33\x8c\x25\x0e\xbc\xa2\x15\x29\x12\x09\x5d\xb4\x43\xed\x71\x66\xef\x66\x3d\x58\x78\xce\xbc\x1c\x9f\x73\xaf\xeb\x21\xb1\xab\xda\xae\xdb\xe1\x86\x50\x16\xdb\xb4\xb7\xf0\xfa\x2e\x64\x1c\xc3\xc3\x96\x94\x62\x29\x81\xc9\x08\x52\x5a\xd9\x47\xa3\x35\x76\x2b\x4a\x88\x6d\x49\x45\x03\x8f\x87\x57\xbd\x85\xa8\x2f\x51\x5c\x3d\xe5\x87\x37\xee\x9b\xb3\xe3\x3b\x77\x03\xb3\xa0\x5d\xe3\xa8\x1a\xb7\x37\xa8\x5e\x74\xbd\x97\x56\xf1\x68\x40\xdd\xd0\x13\x0d\xbd\x96\xfa\xd0\x05\x4f\xba\x6a\x75\x7b\x79\xf5\xaf\x56\x8d\xf7\xad\xd3\x5e\x3e\x78\xf8\x4e\x20\xa9\xa6\xa8\xa7\xff\x77\x03\xf0\x13\x6c\x1b\xd1\x20\xaf\x03\xd9\xcd\x0b\x03\x42\xaa\x0d\xf2\x03\xc1\x4c\xd8\x5f\x28\x76\x34\xb7\xdc\x17\x82\xfd\x59\x10\xe4\x68\xb2\xe8\xb8\x79\xd5\xe6\xff\x3d\x36\x07\xc7\x9f\x7f\x4a\x5d\x17\xe7\x30\x69\x15\xc9\x5f\xdf\xa1\xce\xfe\x7d\x0b\xde\x82\xbf\x03\x00\x00\xff\xff\xf8\xa1\x29\xbc\x8c\x0e\x00\x00" func lockedtokensAdminCustody_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3897,11 +3897,11 @@ func lockedtokensAdminCustody_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x91, 0xc6, 0xba, 0xbf, 0xeb, 0x77, 0xe0, 0xf6, 0x3e, 0xb3, 0xd4, 0x6a, 0x11, 0xde, 0x74, 0xb8, 0xe0, 0x23, 0xb2, 0x82, 0xde, 0x19, 0xe2, 0x58, 0xb8, 0x57, 0x7a, 0xbb, 0xd4, 0xf5, 0xdf, 0x8b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x46, 0x13, 0x58, 0xeb, 0x7c, 0xe4, 0xe4, 0xab, 0xd2, 0xcb, 0x76, 0xd3, 0x28, 0x7c, 0xdd, 0xaf, 0x32, 0x23, 0xc8, 0xd8, 0x88, 0x41, 0x3, 0x2f, 0xf6, 0xf5, 0xe7, 0xe5, 0xd4, 0xf2, 0xb5}} return a, nil } -var _lockedtokensAdminCustody_setup_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x91\xcd\x6e\xc2\x30\x10\x84\xef\x79\x8a\x3d\xa1\x20\xf1\xd3\x33\xa2\x95\x50\xe0\x04\x2a\xa8\x41\xbd\x2f\xce\xb6\xb1\x08\xb6\xb5\x5e\xa7\xad\x2a\xde\xbd\x4a\x23\x28\xa6\xf4\x4f\xf5\x21\x87\x89\xbd\xf3\xcd\xac\xde\x39\xcb\x02\x0b\xab\xb6\x54\xac\xed\x96\x8c\x87\x07\xb6\x3b\xb8\x7a\x5e\x2c\xb3\xf9\x6c\xba\x5e\xce\x67\xb7\x93\xe9\xf4\x6e\x96\xe7\x49\x22\x8c\xc6\xa3\x12\x6d\x0d\xbc\x26\x09\x00\x80\x63\x72\xc8\x94\xaa\xe0\xc5\x16\x2f\x2b\xb6\xb5\x2e\x88\x47\x80\x41\xca\x34\xc7\x9a\xee\xb1\x0a\xd4\x83\x0c\x1d\x6e\x74\xa5\x45\x93\xef\x42\x67\xa2\x94\x0d\x46\xba\x87\x39\xcd\xa9\x48\x00\x5b\x3d\x63\x42\xb1\x0c\xe3\x7e\x04\x37\x50\x8d\x4e\xad\x34\x89\xae\xa6\xdd\x8f\x41\x67\x30\x03\x2f\x96\xf1\x91\x06\x1e\x6b\x4a\x8f\xb7\x9a\x33\xee\xc7\x86\xbd\xe8\xaf\xd8\x51\x6c\x7f\xc9\x38\x6f\x87\xaf\x50\xca\xe3\xe3\x13\x96\xe1\x10\x5a\x68\x30\xf4\x04\x4c\x8a\x74\x4d\x0c\x52\xa2\xc0\x0e\x79\xeb\x0f\x5a\x01\xd2\x2e\x00\x3d\x04\x53\xbd\x3b\x45\xd5\x54\x17\xcc\x33\x74\x70\xfd\x29\xaf\x3a\xe9\xfa\x18\x5e\x7b\x1f\x68\xdc\xf9\x31\xcf\x4d\xdc\xd0\x7f\xf3\x7f\xcb\xe6\xc2\xa6\xd2\xbe\xfc\x3b\xd5\x17\x5d\xc4\xeb\x43\xf9\xc5\xfa\x56\x0d\x82\x3a\xa3\x6f\xbe\xfb\x64\x9f\xbc\x05\x00\x00\xff\xff\x2b\xba\xc1\xdd\x20\x03\x00\x00" +var _lockedtokensAdminCustody_setup_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x51\xcb\x6e\xea\x30\x10\xdd\xe7\x2b\x66\x85\x82\xc4\xe3\xae\x11\xb7\x12\x0a\xac\x40\x05\x35\xa8\xfb\xc1\x99\x36\x16\xc1\xb6\xc6\xe3\xb4\x55\xc5\xbf\x57\x69\x44\x8a\x29\x7d\x48\x9d\x45\x16\x27\xe3\xf3\x98\xa3\x0f\xce\xb2\xc0\xca\xaa\x3d\x15\x5b\xbb\x27\xe3\xe1\x81\xed\x01\xfe\x3d\xaf\xd6\xd9\x72\x31\xdf\xae\x97\x8b\xdb\xd9\x7c\x7e\xb7\xc8\xf3\x24\x11\x46\xe3\x51\x89\xb6\x06\x5e\x93\x04\x00\xc0\x31\x39\x64\x4a\x55\xf0\x62\x8b\x97\x0d\xdb\x5a\x17\xc4\x13\xc0\x20\x65\x9a\x63\x4d\xf7\x58\x05\x1a\x40\x86\x0e\x77\xba\xd2\xa2\xc9\xf7\xa1\x37\x53\xca\x06\x23\xfd\x13\x4f\x33\x15\x09\x60\x8b\x67\x4c\x28\x96\x61\x3a\x8c\xcc\x8d\x54\x83\x53\x0b\xcd\xa2\xd5\xb4\xff\x41\x74\x61\x66\xe4\xc5\x32\x3e\xd2\xc8\x63\x4d\x69\xb7\xd5\xcc\x74\x18\x0b\x0e\xa2\xbf\x62\x27\xb1\xfc\x35\xe1\xbc\x25\xdf\xa0\x94\xdd\xe3\x33\x2f\xe3\x31\xb4\xa6\xc1\xd0\x13\x30\x29\xd2\x35\x31\x48\x89\x02\x07\xe4\xbd\x3f\x61\x05\x48\x5b\x00\x7a\x08\xa6\x7a\x57\x8a\x4e\x53\x5d\x11\xcf\xd0\xc1\xff\x4f\x79\xd5\xd9\xad\xbb\xf0\xda\xfb\x40\xd3\xde\x8f\x79\x6e\xe2\x0b\xfd\x35\xff\xb7\xde\x5c\xd8\x55\xda\x97\xb1\xe2\x17\x39\xe3\x6a\x50\x7e\x51\xcd\xa6\xa1\x57\x17\xce\x9a\xef\x31\x39\x26\x6f\x01\x00\x00\xff\xff\x1d\xd2\x75\x2e\xfc\x02\x00\x00" func lockedtokensAdminCustody_setup_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3917,7 +3917,7 @@ func lockedtokensAdminCustody_setup_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_setup_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x82, 0x15, 0x16, 0x69, 0x96, 0xd9, 0x5, 0x6f, 0xe2, 0xe8, 0xa7, 0x37, 0x60, 0x65, 0x4b, 0x87, 0xe3, 0xfa, 0x78, 0x3e, 0xb1, 0x43, 0xa3, 0x64, 0xeb, 0x86, 0x69, 0x35, 0x8a, 0xad, 0xe7, 0xc6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0xdd, 0xa1, 0x11, 0xf0, 0xe6, 0xcf, 0x4b, 0xe7, 0xaf, 0xa4, 0xb8, 0x85, 0xc2, 0xc0, 0x7, 0x23, 0x96, 0xe1, 0x19, 0x0, 0xd1, 0x7f, 0x7, 0xf0, 0xe2, 0x84, 0x66, 0xd, 0xa9, 0x9b, 0x89}} return a, nil } @@ -5201,7 +5201,7 @@ func randombeaconhistoryScriptsGet_source_of_randomness_pageCdc() (*asset, error return a, nil } -var _stakingcollectionClose_stakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xd4\x30\x10\xbd\xe7\x2b\x46\x3d\x54\x59\xa9\x4a\x11\xdc\x56\xc0\x6a\xc9\x16\xb4\xa2\x6a\x51\xb3\x70\x9f\x38\x93\xc4\xe0\x78\x22\x7b\xd2\x16\xa1\xfe\x3b\xb2\x4d\x02\x62\xf7\xb0\x3e\x24\xf2\xcb\xcc\x7b\x6f\xe6\x45\x0f\x23\x3b\x81\x8f\x86\x9f\x2a\xc1\x1f\xda\x76\x25\x1b\x43\x4a\x34\x5b\x68\x1d\x0f\xf0\xea\xb9\x3a\x6c\x3f\xef\xef\x3e\x95\xf7\xb7\xb7\x37\xe5\x61\x7f\x7f\xb7\xdd\xed\x1e\x6e\xaa\x2a\xcb\xae\xaf\xa1\x34\xec\xc9\x03\x4f\x02\x08\x3e\x51\x00\xd7\xdf\x49\x09\x68\x0b\xd2\xd3\x82\xaa\x85\x39\x34\x1e\x7a\xed\xa1\x61\xf2\x60\x59\xc0\xd1\xc0\x8f\x14\xcb\x1d\x29\x76\x4d\x12\x0f\x77\xdd\x90\x15\x2d\x3f\x41\xb0\x36\x74\x15\x7a\xeb\x49\x40\x4b\xea\x1e\x08\x83\x0c\x4a\x2c\x46\xa5\x78\xb2\x92\x00\x95\xbc\x69\x01\x85\x36\xa8\xd0\x23\xb9\x50\x42\x3e\xa2\xd8\xa1\xb6\x59\x26\x0e\xad\xc7\x68\x2c\xb7\xdc\xd0\x7e\xb7\x86\x4a\x9c\xb6\xdd\x15\x34\x64\xa8\x43\x61\x17\xc0\xaf\x7b\x2b\x6f\x5e\x6f\x56\xf0\x2b\x03\x00\x88\x0f\x43\x32\x0f\xf8\x77\x73\x0f\xd4\xae\xe1\xf2\xe4\x52\x8b\x23\x24\x8b\x3c\xa3\xa3\x11\x1d\xe5\x7f\x06\x58\x03\x4e\xd2\xe7\x1f\xd8\x39\x7e\xfa\x86\x66\xa2\x15\x5c\x6e\xd3\xb7\x59\x3f\x1c\x4f\xa6\x2d\x4e\xe9\xc3\xbb\x79\x17\x85\x17\x76\xd8\x51\x51\x47\xb2\xb7\xe7\xfa\x7a\x9f\x87\x08\xd6\xa7\xff\x8d\xe3\xf2\x2a\xa9\x7c\x41\xe9\x57\x8b\xbd\x70\x36\x1b\x18\xd1\x6a\x95\x5f\x94\x3c\x99\x26\xc6\x9d\xac\x80\xa3\x16\x84\xe1\x88\xeb\x22\x31\xbc\xa4\xd5\xd0\x33\xa9\x49\xe8\x9c\xa9\x8b\x18\x79\xe0\xa3\x25\xca\xf4\xfe\x2f\xca\x7f\x2e\xb3\xd6\x4b\xf6\x3b\x00\x00\xff\xff\x49\xe3\xbe\x0d\x0d\x03\x00\x00" +var _stakingcollectionClose_stakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x6e\xd3\x40\x10\xbd\xfb\x2b\x46\x3d\x54\x8e\x54\xb9\x08\x6e\x11\x10\x05\xa7\xa0\x88\xaa\x41\x75\xe0\x3e\x59\x4f\x9c\x85\xcd\x4e\x34\x3b\x6e\x8a\x50\xff\x1d\xed\x6e\xe3\x22\xe2\x03\x17\xf6\x90\x78\xc7\x33\xef\xbd\x79\x7e\x76\x7f\x60\x51\xf8\xe8\xf8\xd8\x28\xfe\xb0\xbe\xab\xd9\x39\x32\x6a\xd9\xc3\x56\x78\x0f\xaf\x1e\x9b\xf5\xfc\xf3\xf2\xee\x53\xbd\xba\xbd\xbd\xa9\xd7\xcb\xd5\xdd\x7c\xb1\xb8\xbf\x69\x9a\xa2\xb8\xbe\x86\xda\x71\xa0\x00\xdc\x2b\x20\x84\x0c\x01\xbc\xf9\x4e\x46\xc1\x7a\xd0\x1d\x0d\x55\x33\x20\xc7\xc1\xf5\xce\x06\x68\x99\x02\x78\x56\x10\xda\xf3\x03\xa5\x76\x21\xc3\xd2\x66\xf2\x78\xb7\x2d\x79\xb5\xfa\x13\x14\x37\x8e\xae\xe2\xec\xa6\x57\xb0\x9a\xa7\xf7\x84\x91\x06\x35\x35\xa3\x31\xdc\x7b\xcd\x05\x93\xb5\x59\x05\x83\x3e\xb2\xd0\x03\x49\x6c\xa1\x90\xaa\xd8\xa1\xf5\x45\xa1\x82\x3e\x60\x12\x56\x7a\x6e\x69\xb9\x98\x42\xa3\x62\x7d\x77\x05\x2d\x39\xea\x50\x59\x62\xf1\xeb\xd2\xeb\x9b\xd7\xb3\x09\xfc\x2a\x00\x00\xd2\x8f\x23\x3d\x2d\xf8\xe2\xdc\x3d\x6d\xa7\x80\xbd\xee\xca\x51\x63\xab\x97\xc7\xd5\xd1\x93\x4c\xe0\x72\xbc\xef\xac\x52\x24\xce\x83\xd0\x01\x85\xca\xe7\x65\x9f\xa9\x3e\xb0\x08\x1f\xbf\xa1\xeb\x69\x02\x97\xf3\xfc\xee\xa4\x35\x9e\x40\x6e\x5b\x8d\x69\x85\x77\x27\xdf\xaa\xa0\x2c\xd8\x51\xb5\x49\x60\x6f\xff\xc7\x0e\xef\xcb\xf8\x69\xa7\xe3\x99\x3b\x6f\x6f\xb2\xa2\x2f\xa8\xbb\xc9\xb0\x4a\x3c\xb3\x19\x1c\xd0\x5b\x53\x5e\xd4\xdc\xbb\x36\xc5\x28\xcb\x06\xa1\x2d\x28\xc3\x19\xd6\x45\x46\x78\xca\x36\xd2\x23\x99\x5e\xe9\x5f\x1c\xaa\x52\x94\x22\x1e\x0d\x11\xc9\xff\x7f\x45\xe4\x8f\xcb\x89\xeb\xa9\xf8\x1d\x00\x00\xff\xff\x3a\xb0\x57\x13\x65\x03\x00\x00" func stakingcollectionClose_stakeCdcBytes() ([]byte, error) { return bindataRead( @@ -5217,11 +5217,11 @@ func stakingcollectionClose_stakeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/close_stake.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x0, 0x1c, 0x8d, 0x39, 0xe9, 0x23, 0x70, 0x9e, 0x68, 0x16, 0x36, 0x5d, 0x4d, 0x10, 0x51, 0xa4, 0x7c, 0x2e, 0x6e, 0x82, 0xd7, 0xf0, 0x21, 0xda, 0x12, 0xf0, 0xe8, 0x16, 0xd2, 0xee, 0x33, 0x7d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x95, 0x4a, 0x20, 0xe3, 0x1d, 0x9a, 0x1, 0xdb, 0x99, 0xa3, 0xc1, 0xdc, 0x33, 0xed, 0x2, 0x2d, 0xba, 0x8, 0x61, 0x38, 0x16, 0xee, 0x6c, 0x8f, 0xf0, 0xf8, 0xae, 0xe8, 0x7e, 0x80, 0x47, 0xbd}} return a, nil } -var _stakingcollectionCreate_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x6f\xdb\x3e\x0c\xbd\xfb\x53\xf0\xd7\x43\xe1\x00\x81\xdb\xb3\xf1\xcb\x8a\xcc\x49\x87\x20\x59\x3a\xd4\xc5\x2e\xc3\x0e\xac\x4d\xdb\x42\x14\xc9\x90\x98\xa5\xde\x9a\xef\x3e\xc8\x72\xdc\xfc\x05\xa6\x43\x62\x89\x26\xdf\xe3\xe3\x93\xc5\xba\xd6\x86\x21\x31\x4d\xcd\x3a\xe8\x76\x8f\x52\x6f\x53\xc6\x95\x50\x65\xa2\xa5\xa4\x8c\x85\x56\x50\x18\xbd\x86\xfb\xb7\xf4\x65\x3c\x9f\x2d\xbf\x24\x4f\x8b\xc5\x34\x79\x99\x3d\x2d\xc7\x93\xc9\xf3\x34\x4d\x83\xe0\xee\xee\x0e\x12\x43\xc8\x64\x01\x61\x8d\x59\x25\x14\x01\x66\x99\xde\x28\x86\x42\x1b\x40\x50\x3a\x27\xe0\x0a\x19\x84\x05\x94\x86\x30\x6f\x40\x28\xe0\x8a\xc0\x7a\x48\xc8\x7a\xcc\xb6\x24\xaa\x1c\x30\xcf\x2d\xd4\x9b\x57\x29\x32\x58\x51\x63\x81\x75\x9b\xa2\x68\xbb\x07\x08\x02\x36\xa8\x2c\xb6\x89\xa1\xc3\x99\x4d\x62\x48\xd9\x08\x55\x0e\xbb\xdc\x39\x35\x36\x86\x1f\xbe\xdb\x68\x4e\xcd\x42\x58\x9e\x2a\x36\xcd\xcf\x01\xfc\x09\x00\x00\xda\x1f\x49\xbc\x67\xf3\x21\xc0\x33\x15\x31\xdc\x5e\xd4\x26\x3a\x3b\x09\xda\x3a\xb5\xa1\x1a\x0d\x85\x1d\xc5\x18\x70\xc3\x55\xf8\x59\x1b\xa3\xb7\xdf\x51\x6e\x68\x00\xb7\x63\x1f\xdb\xe3\xbb\x65\x49\x16\xd1\x25\x7c\x18\xed\xbb\x8d\x2c\x6b\x83\x25\x45\xaf\x6d\xb1\xff\xff\x95\xd7\xa7\xd0\x8d\x31\xbe\x3c\xe2\xf3\xd7\x53\x8f\xf2\x0d\xb9\x1a\xf4\xf4\xdc\x7a\x78\x80\x1a\x95\xc8\xc2\x9b\x44\x6f\x64\x0e\x4a\x33\x78\x2a\x60\xa8\x70\xe3\x39\xab\x75\x33\x08\xfa\x12\xa2\x68\x35\xee\x3c\xd2\x49\x00\xa3\xeb\x9d\x47\x59\x6b\xac\xaf\x47\x09\x8f\xda\x4c\xdf\x84\x65\xa1\xca\xa5\xce\xa9\x1f\xba\xff\x1f\x42\x8d\x0d\x99\x78\x2f\xd9\xa1\xc2\x1d\x87\x0f\x57\xc0\x68\x04\x4a\x48\x78\x7f\x3f\x38\xfc\x2f\x92\xa4\x4a\xae\x5c\xf0\xfe\x24\xbb\x1d\x6f\xa7\x00\x2a\xd7\x7e\x6d\xf4\x2f\x91\x13\xfc\x26\xa3\xbd\x49\x9d\xe5\x9d\x4b\x4f\xae\xc2\xcd\xb1\x94\xbb\xa3\x9d\xcb\x59\x51\x7b\x27\x0e\xd8\x9d\x63\x1f\x4b\x17\x39\xbc\x08\xf3\x3c\xec\x93\x62\x57\x26\xea\xb7\x43\xa8\xd0\x56\x63\x59\x6a\x23\xb8\x5a\xfb\xe8\xd1\xd1\x10\xb6\x24\xca\x8a\x7d\xc8\x3f\x5f\x63\xba\x03\x92\x96\x4e\x68\x9d\x19\xc2\xcf\xec\xca\xb7\xa0\xbd\xbe\x3a\xa7\x03\x35\x7c\xfd\x5d\xb0\x0b\xfe\x06\x00\x00\xff\xff\x61\xe8\xc0\x7e\x97\x04\x00\x00" +var _stakingcollectionCreate_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x4f\x6f\xdb\x3e\x0c\xbd\xfb\x53\xf0\xd7\x43\xe1\x00\x81\xdb\xb3\xf1\xcb\x8a\xcc\x4d\x87\x22\x59\x32\xd4\xc5\x2e\xc3\x0e\xac\x4d\xdb\x42\x14\xc9\x90\x98\xa5\xde\x9a\xef\x3e\xc8\x72\x9c\xff\xc7\xf9\x90\x58\xa2\xc9\xf7\xf8\xf8\x24\xb1\xaa\xb5\x61\x48\x4c\x53\xb3\x0e\xba\xd5\x93\xd4\x9b\x94\x71\x29\x54\x99\x68\x29\x29\x63\xa1\x15\x14\x46\xaf\xe0\xfe\x3d\x7d\x1d\x4f\x9f\xe7\x5f\x92\xc5\x6c\x36\x49\x5e\x9f\x17\xf3\xf1\xe3\xe3\xcb\x24\x4d\x83\xe0\xee\xee\x0e\x12\x43\xc8\x64\x01\x61\x85\x59\x25\x14\x01\x66\x99\x5e\x2b\x86\x42\x1b\x40\x50\x3a\x27\xe0\x0a\x19\x84\x05\x94\x86\x30\x6f\x40\x28\xe0\x8a\xc0\x7a\x48\xc8\x7a\xcc\xb6\x24\xaa\x1c\x30\xcf\x2d\xd4\xeb\x37\x29\x32\x58\x52\x63\x81\x75\x9b\xa2\x68\xb3\x03\x08\x02\x36\xa8\x2c\xb6\x89\xa1\xc3\x79\x7e\x8c\x21\x65\x23\x54\x39\xec\x72\xa7\xd4\xd8\x18\x7e\xf8\x6e\xa3\x29\x35\x33\x61\x79\xa2\xd8\x34\x3f\x07\xf0\x27\x00\x00\x68\x7f\x24\xf1\x8e\xcd\x5e\x80\x17\x2a\x62\xc0\x35\x57\xe1\x45\x7d\xa2\xfd\xeb\x62\xa3\xc8\x0c\xe0\xf6\xf2\x77\x67\x3b\x41\x8b\x59\x1b\xaa\xd1\x50\xd8\xb5\xd3\x41\x7d\xd6\xc6\xe8\xcd\x77\x94\x6b\x1a\xc0\xed\xd8\xc7\x76\x5c\xdd\x63\x49\x16\xd1\x25\xae\x30\xda\x29\x13\x59\xd6\x06\x4b\x8a\xde\xda\x62\xff\xff\x8b\x1e\x3e\x85\xce\x1e\xf1\x65\xeb\x9c\x7f\x9e\x7a\x46\xdf\x90\xab\x41\xdf\x8a\x7b\x1e\x1e\xa0\x46\x25\xb2\xf0\x26\xd1\x6b\x99\x83\xd2\x0c\x9e\x36\x18\x2a\xdc\xd8\xcf\x6a\xdd\x0c\x82\xbe\x84\x28\xda\xd9\x75\xde\xeb\xe4\x82\xd1\x75\x95\xa2\xac\x35\xec\xd7\xa3\x84\x27\x6d\x26\xef\xc2\xb2\x50\xe5\x5c\xe7\xd4\x9b\xc9\xff\x0f\xa1\xc6\x86\x4c\xbc\x93\xf7\x70\x1a\x1d\x87\xbd\xdb\x60\x34\x02\x25\x24\x7c\x7c\x1c\x6c\xfe\x17\x49\x52\x25\x57\x2e\x78\x7f\x92\xdd\x5a\xa1\x53\x00\x95\x6b\xbf\x36\xfa\x97\xc8\x09\x7e\x93\xd1\xde\xfc\xee\x28\x39\xf7\x9f\x1c\xb1\x9b\x63\x29\xb7\x47\x2b\x97\xb3\xa4\xf6\xac\x1d\xb0\x3b\xc7\x3e\x96\x2e\x72\x78\x11\xe6\x79\xd8\x27\xc5\xae\x4c\xd4\x2f\x87\x50\xa1\xad\xc6\xb2\xd4\x46\x70\xb5\xf2\xd1\xa3\xad\x21\x6c\x48\x94\x15\xfb\x90\x7f\xbf\xc6\x74\x0b\x24\x2d\x9d\xd0\x3a\x33\x84\x9f\xd9\x95\x3b\xa6\xbd\x16\x74\x4e\x07\x6a\xf8\xfa\xdb\x60\x1b\xfc\x0d\x00\x00\xff\xff\x98\x53\xb2\x6e\xef\x04\x00\x00" func stakingcollectionCreate_machine_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -5237,11 +5237,11 @@ func stakingcollectionCreate_machine_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/create_machine_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7f, 0xd9, 0xb4, 0x5, 0x4f, 0xc4, 0xba, 0x4d, 0xdb, 0x96, 0x7e, 0xae, 0x7c, 0x9a, 0x13, 0xf9, 0x4, 0xb3, 0x56, 0xa6, 0xdb, 0xc9, 0xf3, 0x73, 0xe1, 0xf7, 0x79, 0x41, 0x9, 0x52, 0xa0, 0xdb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1b, 0x48, 0x67, 0x18, 0x1c, 0xdb, 0xb8, 0x24, 0x48, 0x1a, 0x36, 0xef, 0x79, 0xd, 0x71, 0x36, 0x5, 0x54, 0x3, 0x1d, 0xfe, 0x16, 0x9f, 0x37, 0x89, 0xa8, 0xa4, 0xe0, 0xc9, 0x22, 0xf2, 0x5}} return a, nil } -var _stakingcollectionCreate_new_tokenholder_acctCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x56\x5d\x8f\xe2\x36\x17\xbe\xe7\x57\x9c\x77\x2f\x56\x20\xb1\xe1\xbd\x46\x33\x23\x51\x86\x6e\x47\xd0\x9d\x51\xa1\x7b\x53\xf5\xc2\x93\x1c\x12\x97\x60\x47\xf6\x09\x2c\x1a\xf1\xdf\x2b\xc7\x4e\x62\x87\xa0\x61\x54\xa9\x52\xb9\x01\x7f\x9c\x73\x9e\xe7\x39\x1f\x98\xef\x0b\xa9\x08\xe6\xea\x54\x90\x1c\xb8\xd5\xcf\xb9\x3c\x6e\xe4\x0e\x05\x6c\x95\xdc\xc3\xa7\x66\xfd\xa9\xbe\xb1\x92\xf1\x0e\x93\x6a\x4f\xdb\x4b\xff\xff\xb1\x7a\x9e\x2f\x17\x8f\x9b\xe7\xe5\xe2\xdb\xec\xf1\xf1\xb7\xc5\x7a\xed\xfb\x5b\x13\xdb\x71\x91\xce\x65\x9e\x63\x4c\x5c\x8a\xda\x6c\xbd\x99\x2d\x9f\xbe\x7d\x9d\x3f\xaf\x56\x8b\xf9\xe6\xe9\xb9\x31\x1e\x4c\x26\xb0\xc9\xb8\x06\x52\x4c\x68\x66\x8d\x58\x9e\xcb\xa3\x06\xca\x10\x62\x29\x48\x19\x77\x0a\xe4\xb6\xda\xc9\x2b\x54\xc0\xe2\x58\x96\x82\x8c\x3d\x49\x88\x15\x32\x42\x60\x20\xf0\x18\xe0\x8e\xaa\xaf\x5f\x64\x9e\x18\x0f\xaf\x7f\x61\x4c\xc0\x44\x02\x9a\xa4\x42\xe0\x04\x5c\x38\x2b\xcf\x21\xcb\xb5\x04\x96\x24\x5c\xa4\xc0\x40\x5b\x52\x10\xb7\xac\x9c\x23\x92\x15\x22\xdf\xda\x98\x2f\x11\x0b\xe3\x77\xcf\x45\x02\x94\x31\x02\x32\x0c\x13\x89\x1a\x84\x34\x21\x0f\x2c\xe7\x89\x01\x6c\xcc\xf1\x07\xd7\x64\x02\xf8\x50\x3d\x34\x1b\x19\x5a\x30\xaa\x4f\xc7\x70\x92\x25\x08\xc4\xc4\x40\x41\x4e\x19\x2a\x48\x30\x47\xe7\xd9\x77\xa8\x50\xcb\x52\xc5\x68\x3c\x4a\xb3\x3c\xc8\x1d\x1a\xa5\x61\x87\x27\x97\x5e\xdf\xf7\x60\xe0\x65\x64\x58\x94\xaf\x39\x8f\x97\x78\xd2\x53\xf8\xc3\xd6\x51\xb4\xc4\xd3\x8a\x6b\x5a\x08\x52\xa7\x3f\x47\xf0\x36\x00\x00\x28\x14\x16\x4c\xe1\x50\xf3\x54\xa0\x9a\x02\x2b\x29\x1b\xfe\x24\x95\x92\xc7\xef\x2c\x2f\x71\x04\x9f\x67\x36\x80\xb1\xa8\x4c\xcc\x67\x32\x81\xb9\x4d\x61\x47\xd0\x2a\x59\x2c\x49\xc0\x22\xa8\xc0\x46\x8d\x59\x8e\x64\x2e\x3b\x8f\x70\x0f\xee\xd7\xb0\x60\x27\x13\xdd\xa2\x18\x35\xf7\xb7\x52\x19\x0f\x26\x39\x2d\x23\x87\xbc\xfe\xb4\xfe\xa2\x2a\x18\x4b\x92\x96\xfe\xd4\x98\x47\xcd\x72\x0c\x19\xd3\xd9\x2c\x4f\xa5\xe2\x94\xed\xed\x69\xb0\x35\x86\x23\xf2\x34\x23\x7b\x64\x7f\xb7\x78\xce\x81\x02\x5f\x91\xda\xb4\xfd\xca\x04\x4b\x51\xc1\x9c\x15\xec\x95\xe7\x9c\x4e\x75\x8e\xba\x2d\x10\xca\x41\x9e\xb1\x67\x7b\xef\xb4\x88\xe2\x7a\x8f\xa3\x8e\x52\xa4\xbb\xcf\x41\xbb\x78\x0b\xe7\xe4\x61\x18\xc8\xf3\xce\xed\x17\xc5\x0f\x8c\xf0\x85\x51\xd6\x98\x8d\xfe\x17\xd0\xfc\x5d\xdb\x2c\xef\x1d\xc3\xb8\x45\xd9\xed\x64\xaf\x80\x7b\x58\xba\xca\xbe\xfb\x12\x82\xb2\x1e\x3c\xd3\x90\x80\x15\x6f\x96\x24\x0a\xb5\xae\x4b\xc4\x64\xd9\xac\xc7\xc1\x55\x5f\xcb\xe9\x15\x65\x5b\x96\x01\xc9\x35\x3b\x5c\xef\xc1\x9e\xc1\x51\xd5\x79\xc3\xdd\x15\x7b\xab\x4c\xcb\xde\x2b\x4f\x33\xc3\x58\x8a\x91\x66\x07\x0c\x39\xde\x7d\xf1\x04\xea\x72\x9a\x5e\x1d\x90\x6b\xeb\x30\x4c\xde\xe0\x9a\xf0\x73\x56\xc0\xbd\x8f\x27\x28\x2d\x07\x2e\x88\x1d\x71\xad\x4b\xec\x54\x9c\x17\xff\xad\xa7\xb8\x9c\xf3\x27\xb1\x95\xe7\x87\xe1\x0d\xc8\x47\x7d\x52\x05\xd0\x2a\x75\x75\x36\xbc\xcc\x75\x43\x2c\x38\x62\x34\xed\x2b\x7b\x0f\xd9\x4b\x95\xaf\xae\x6e\x3d\xd3\xcd\xc7\x51\x4d\x23\x53\x06\x55\x68\xc8\xdc\xe0\x17\x09\x94\xc2\x75\xf8\x81\x95\x79\xa7\xbf\xed\x89\x2b\xa8\x77\xe5\x7f\x4f\xf1\x0f\x2a\x6a\x00\x6c\x9b\x77\xc3\xcd\xd1\x9b\xa7\x45\xf4\xdd\x10\x7a\x18\x4e\xdc\x85\x49\xe3\xac\x3a\x68\x03\xf5\x48\x67\x27\x82\x7b\x61\x80\xf7\xc4\x30\x8a\x15\x25\xb9\x3f\xf3\x3a\x74\xe3\x81\x6f\x03\xcd\xa2\x38\xc3\x78\x37\x1c\x5d\x9f\xfa\xd7\xdb\xca\xb6\x56\xff\x4b\xc7\x8d\x9d\x8b\xfd\x4b\x0f\xe6\x53\x67\xb8\xa2\x3d\x6d\x35\x1d\xf7\xde\xf6\x6a\x73\x1a\x90\xb9\xb8\x3d\xba\x74\x60\x1a\xbe\x1f\xf1\xc5\x4e\x5f\xff\xdb\x5a\xae\x7f\x9d\x01\x73\x8d\xff\x59\xed\x04\xcf\xff\x7d\xc9\x82\x39\xf0\x62\x67\x0f\xb0\xce\xdf\x5e\xf5\xd6\xad\x54\x48\x7a\x1e\x9c\xe1\x08\xd0\x5d\x10\x37\x4d\x62\xbf\x19\x6f\x20\xf6\x76\xe3\x3d\x3b\xfa\xce\x9d\x57\x02\x31\x95\x22\xfd\x23\x15\xbd\x3f\x9e\x0f\x0d\xf2\x3e\x75\x2e\xc6\xf9\x87\xc8\x75\x60\xd9\xa4\x9e\xff\x0e\x00\x00\xff\xff\x14\x44\x50\xdb\x55\x0d\x00\x00" +var _stakingcollectionCreate_new_tokenholder_acctCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x56\x5b\x8f\xe2\x36\x14\x7e\xe7\x57\x9c\xdd\x87\x51\x22\xb1\xa1\x7d\x45\x33\x23\x51\x86\x6e\x47\xd0\x65\x54\xe8\xf6\x61\xb5\x0f\x26\x39\x10\x17\x63\x47\xb6\x03\x8b\xaa\xf9\xef\x95\x63\x27\xb1\x43\xd0\xd0\x8b\x2a\x95\x17\x62\xfb\x5c\xbe\xf3\x9d\x8b\x4d\x0f\x85\x90\x1a\xa6\xf2\x5c\x68\x31\x70\xab\x1f\x99\x38\xad\xc5\x1e\x39\x6c\xa5\x38\xc0\xfb\x66\xfd\xbe\x91\x28\xf9\x8e\x6e\x18\x06\x52\xfe\x5e\x23\xb9\x10\xe9\x1e\xb3\x6a\x4f\x59\xc1\xef\xbe\x2d\x96\xd3\xf9\xec\x69\xbd\x9c\xcf\x3e\x4d\x9e\x9e\x7e\x99\xad\x56\xbe\xe7\x95\x26\x7b\xca\x77\x53\xc1\x18\xa6\x9a\x0a\x5e\xab\xad\xd6\x93\xf9\xf3\xa7\x8f\xd3\xe5\x62\x31\x9b\xae\x9f\x97\x8d\xf2\x60\x34\x82\x75\x4e\x15\x68\x49\xb8\x22\x56\x89\x30\x26\x4e\x0a\x74\x8e\x90\x0a\xae\xa5\x31\x27\x41\x6c\xab\x1d\x56\xa1\x02\x92\xa6\xa2\xe4\xda\xe8\x6b\x01\xa9\x44\xa2\x11\x08\x70\x3c\x05\xb8\x93\xea\xef\x27\xc1\x32\x63\x61\xf3\x3b\xa6\x1a\x08\xcf\x40\x69\x21\x11\xa8\x06\xca\x9d\x96\x67\x90\x30\x25\x80\x64\x19\xe5\x3b\x20\xa0\x6c\x50\x90\xb6\x51\x39\x43\x5a\x54\x88\x7c\x6d\xa3\x3e\x47\x2c\x8c\xdd\x03\xe5\x19\xe8\x9c\x68\xd0\x26\xc2\x4c\xa0\x02\x2e\x8c\xcb\x23\x61\x34\x33\x80\x8d\x3a\x7e\xa3\x4a\x1b\x07\x3e\x54\x0f\xcd\x5a\x84\x1a\x44\xd7\xa7\x43\x38\x8b\x12\x38\x62\x66\xa0\x20\xd5\x39\x4a\xc8\x90\xa1\xb3\xec\x1b\x94\xa8\x44\x29\x53\x34\x16\x85\x59\x1e\xc5\x1e\x0d\xd3\xb0\xc7\xb3\x4b\xaf\x6f\x7b\x30\xf0\x32\x12\x15\xe5\x86\xd1\x74\x8e\x67\x35\x86\x2f\xb6\xe2\x92\x39\x9e\x17\x54\xe9\x19\xd7\xf2\xfc\x35\x86\x3f\x06\x00\x00\x85\xc4\x82\x48\x8c\x14\xdd\x71\x94\x63\x20\xa5\xce\xa3\x1f\x84\x94\xe2\xf4\x99\xb0\x12\x87\xb0\xd2\x42\x92\x1d\x0e\x61\x4a\x0a\xb2\xa1\x8c\x6a\x8a\x2a\x86\xbb\x89\xf5\x6b\x0c\x55\x96\xcc\x6f\x34\x82\xa9\xcd\x6c\x87\xe7\x2a\x87\x24\xcb\xc0\x02\xab\x62\x48\x1a\x35\x86\xda\x08\x3b\x8b\xf0\x00\xee\x2b\x2a\xc8\xd9\x80\xb2\xe0\xe2\x46\x7e\x2b\xa4\xb1\x60\x72\xd6\x06\xea\x02\xaa\x7f\xad\xbd\xa4\x72\x46\xb2\xac\x65\x65\x6c\xd4\x93\x66\x39\x84\x9c\xa8\x7c\xc2\x76\x42\x52\x9d\x1f\xec\x69\xb0\x35\x84\x13\xd2\x5d\xae\xed\x91\xfd\x6e\xf1\xbc\x06\x0c\x7c\x44\xdd\x66\xf3\x67\xc2\xc9\x0e\x65\x4b\xde\xb9\x4e\x5d\xb7\x33\x42\x3a\xb4\xa7\xdc\xea\x4e\xdb\xee\x7a\x70\xac\x24\xa9\x97\x96\x44\xd9\x64\x25\x3b\xd4\xad\xac\x8a\xb6\x42\xbe\x10\x9d\x8f\xc3\x56\xf3\x16\xce\x93\xcb\xb5\x91\x8d\xbf\x7c\xff\xf5\xdd\x0d\x90\xe0\xe1\x4d\xac\x2d\xc4\x33\x10\xf5\xce\xe3\xe2\xbe\x2a\xb7\x60\x9a\x25\xbf\x51\x9d\x67\x92\x9c\xc8\x86\x61\x0c\x77\x6f\x20\x7e\x0c\xa8\xff\x55\xd9\xca\x3b\x38\xd6\x3d\xc7\xdd\xa1\xe3\xf5\x5a\x0f\xf3\xae\x09\xef\x3f\x84\x8c\x59\x0b\x9e\x6a\x14\xd4\x9c\x4d\xe8\x24\xcb\x24\x2a\x55\x97\xad\xa9\x3c\xb3\x1e\x06\xa2\x3e\x67\xe3\x2b\x0c\x36\x0a\x71\x10\xe4\x8a\x1c\xaf\x8f\x8b\x9e\x19\x57\xf5\x5e\x13\xbb\x6b\xc0\x96\x99\x36\x7a\xaf\x65\xea\x3a\x52\xe4\x88\x61\x8c\xf7\x1f\x3c\x82\xba\x31\x8d\xaf\xce\x72\xaf\xb2\xfa\xc2\xea\x10\x3f\x25\x05\x3c\xf8\x78\xfa\x8a\x3c\xf0\x9d\x50\xa5\x4a\xbc\xbf\xbb\xe6\xff\x31\xba\x01\x59\xdc\x47\x45\xe0\xba\x62\x4f\xe5\xd1\x65\x2e\x1b\xe0\x21\x27\x44\xf7\x36\x9d\x33\xfe\xcc\xb7\xe2\xa5\x4a\x48\x97\x98\x9e\x91\xea\x03\xa9\x46\xa0\xc9\x73\xe5\x1b\x72\x77\x09\xf1\x0c\x4a\xee\xc6\xca\x91\x94\xac\x33\x54\xec\x89\xab\x98\x37\xf9\x75\x94\xbe\xd1\xa2\xc3\x9e\x94\x2f\x0b\x94\xc4\xdc\x43\xaa\xdb\xc0\x7f\x3f\x23\x06\xff\xb6\x79\x2c\xfd\x4b\xe0\x63\xb8\x6b\x1e\x5c\xc9\x67\x43\xd8\x63\x34\x72\x16\x46\x8d\xb7\xea\xa0\x45\xd2\x93\x1a\x3b\x52\xdc\x6b\x0a\xbc\xe7\x94\xc9\x48\x51\x6a\xf7\x70\xa9\xb1\x35\x16\xe8\x36\xc8\x49\x92\xe6\x98\xee\xa3\xf8\xfa\x55\x76\xbd\x2f\x6d\x6f\xf6\xbf\xea\xdc\xdc\xba\xd8\xbf\xb4\x60\x7e\x75\x05\x55\x61\x8f\x5b\xd2\x87\xbd\xd2\x5e\xf1\x8f\x83\x60\x2e\xa4\xe3\x4b\x03\x66\x62\xf4\x23\xbe\xd8\xe9\x1b\x20\xb6\x57\xea\xaf\x57\x40\xa6\xf0\x7f\xcb\x1d\xa7\xec\xbf\xa7\x2c\x98\x33\x2f\x76\xb8\x01\xe9\xdc\x9b\xd5\xbb\xbe\x62\x21\xeb\x79\x5c\x87\x23\x46\x75\x41\xdc\x34\xca\xeb\xe9\x7d\x63\x60\x8f\x21\xf9\xff\x80\x0e\xef\x0a\xfa\x4b\x23\xbf\x2f\xcc\xcb\xc1\x7f\x23\xb0\xde\x1b\xc0\xa6\xe7\xf5\xcf\x00\x00\x00\xff\xff\xb1\x0e\x61\xfa\x35\x0e\x00\x00" func stakingcollectionCreate_new_tokenholder_acctCdcBytes() ([]byte, error) { return bindataRead( @@ -5257,7 +5257,7 @@ func stakingcollectionCreate_new_tokenholder_acctCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/create_new_tokenholder_acct.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9a, 0x67, 0x57, 0x61, 0xea, 0xa3, 0x2e, 0xb, 0xcb, 0x97, 0xbc, 0xc2, 0x25, 0x34, 0x7b, 0x1a, 0xa, 0xe2, 0x4a, 0x84, 0xbf, 0x4c, 0x75, 0x8c, 0xbb, 0xb2, 0x74, 0x4c, 0x9, 0x2c, 0x8, 0xcb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x40, 0x48, 0xae, 0x85, 0xf6, 0x46, 0xbd, 0x5f, 0x6d, 0xdd, 0xe2, 0xaf, 0x9d, 0xbf, 0x78, 0x58, 0x8b, 0x8f, 0x0, 0x24, 0x5e, 0x4a, 0x82, 0x3e, 0x44, 0x77, 0x3e, 0x21, 0x10, 0xa, 0xe2, 0x22}} return a, nil } @@ -5281,7 +5281,7 @@ func stakingcollectionDeploy_collection_contractCdc() (*asset, error) { return a, nil } -var _stakingcollectionRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x8f\x1c\x82\x0c\x45\xee\xa1\xf4\x20\xda\x06\xd7\x4e\x8a\x69\x48\x8a\x95\xf6\xbe\x5d\x8d\xe4\x25\xab\x1d\x31\x3b\x22\x86\x92\xef\x5e\xa4\x95\xe3\x83\x7d\xc8\x1e\x24\xd8\x3f\xbf\xf7\x66\xde\xb8\xae\x67\x51\xdc\x79\x7e\xa9\xd4\x3c\xbb\xd0\xae\xd9\x7b\xb2\xea\x38\xa0\x11\xee\xf0\xf1\x50\x3d\xad\x7e\x6e\x1f\x7e\xac\x1f\xef\xef\x6f\xd7\x4f\xdb\xc7\x87\xd5\x66\xb3\xbb\xad\xaa\x2c\x5b\x2e\x97\xd8\x51\xeb\xa2\x92\x44\x18\xd4\xe4\xa9\x35\xca\x02\x17\xa0\x7b\x42\x4c\x4c\xd8\x13\x54\x28\xf2\x20\x96\xa6\xc7\x0d\x4b\xba\xd7\x93\x75\x8d\xa3\x1a\x81\x6b\xda\x6e\x60\x42\x3d\x1d\x98\x8e\x87\xa0\xe0\x06\xca\xcf\x14\x22\x94\x61\xb9\xeb\x9c\x66\x99\x8a\x09\xd1\x4c\xd4\xdc\xd5\x25\x2a\x15\x17\xda\x0f\xf3\x9b\x12\xbf\xef\xdc\xe1\xf3\xa7\x05\xfe\x65\x00\x30\x7d\x3c\xe9\xd1\xd3\xa9\xce\x1d\x35\x25\xae\x2f\xb6\xa0\x38\xdb\xc9\x26\x4e\x2f\xd4\x1b\xa1\xdc\x58\x9b\xb4\xcc\xa0\xfb\xfc\x3b\x8b\xf0\xcb\x1f\xe3\x07\x5a\xe0\x7a\x95\xce\x8e\xfa\xe3\x8a\xe4\x9b\xe2\x92\x3e\xbe\x62\x46\x15\x51\x59\x4c\x4b\xc5\xdf\x09\xf6\xe5\xbd\xbe\xbe\xe5\x63\x5a\xe5\xe5\x24\xcf\xaf\x57\x49\xe5\x97\xd1\xfd\xe2\xcd\xde\xb8\x6e\x6e\xd0\x9b\xe0\x6c\x7e\xb5\xe6\xc1\x8f\x79\x28\x92\x15\x08\x8d\x29\xe0\x8c\x75\x95\x08\xaf\xa9\x35\x74\x20\x3b\x28\xbd\xa7\xea\x42\xe6\xd9\xd9\x1c\xe7\x26\x4f\xf1\x97\x70\xf5\x29\xc7\xf4\x5f\x24\xd8\x2c\xf5\x9a\xfd\x0f\x00\x00\xff\xff\xe2\xb1\x2b\x1a\xba\x02\x00\x00" +var _stakingcollectionRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6f\x9b\x40\x10\x85\xef\xfc\x8a\xa7\x1c\x22\x90\x2a\xdc\x43\xd5\x03\x6a\x1b\xb9\x76\x52\x59\x8d\xe2\xca\xa4\xbd\x6f\x97\x01\xaf\x02\x3b\x68\x76\x90\x2d\x55\xf9\xef\x15\xac\x5d\x1f\xcc\xa1\x97\xec\x01\x10\x3b\xf3\xcd\x9b\x99\xe7\xba\x9e\x45\xf1\xd0\xf2\xa1\x54\xf3\xe2\x7c\xb3\xe2\xb6\x25\xab\x8e\x3d\x6a\xe1\x0e\xef\x8f\xe5\xf3\xf2\xfb\xe6\xe9\xdb\x6a\xfb\xf8\x78\xbf\x7a\xde\x6c\x9f\x96\xeb\xf5\xee\xbe\x2c\x93\x64\xb1\x58\x60\x47\x8d\x0b\x4a\x12\x60\x50\x51\x4b\x8d\x51\x16\x38\x0f\xdd\x13\x42\x64\xc2\x5e\xa0\x42\x81\x07\xb1\x34\x25\xd7\x2c\x31\xae\x27\xeb\x6a\x47\x15\x3c\x57\xb4\x59\xc3\xf8\x6a\xba\x30\x1d\x0f\x5e\xc1\x35\x94\x5f\xc8\x07\x28\xc3\x72\xd7\x39\x4d\x12\x15\xe3\x83\x99\xa8\xa9\xab\x0a\x94\x2a\xce\x37\xef\x4e\x39\x05\x7e\x3e\xb8\xe3\xc7\x0f\x19\xfe\x24\x00\x30\x3d\x5a\xd2\xb3\xa6\x4b\x9f\x3b\xaa\x0b\x98\x41\xf7\xe9\xec\x18\xf2\xcb\xe7\xf6\xe0\x49\x32\xdc\xce\xc7\x5d\xfd\x49\xa6\x9a\xbd\x50\x6f\x84\x52\x63\x6d\xd4\x35\x95\xfa\xca\x22\x7c\xf8\x65\xda\x81\x32\xdc\x2e\xe3\xdd\x59\xeb\x78\x02\xb5\x75\x3e\xa7\x15\x9f\x71\x42\xe5\x41\x59\x4c\x43\xf9\xef\x09\xf6\xe9\x2d\x7a\xf8\x92\x8e\x2e\x28\xe6\x1d\x72\x1d\x5e\x46\x45\x3f\x8c\xee\xb3\x7f\xad\x8c\xe7\xee\x0e\xbd\xf1\xce\xa6\x37\x2b\x1e\xda\x71\xcf\x8a\x28\x1b\x42\xe3\x76\x71\xc5\xba\x89\x84\xd7\x38\x46\x3a\x92\x1d\x94\xfe\x67\x42\xb9\x9c\x3c\xb9\x3e\xfb\x31\x8d\xb6\x2a\xe0\xaa\x8b\x3f\xe2\x3b\x8b\xb0\x53\xa9\xd7\xe4\x6f\x00\x00\x00\xff\xff\xd7\x0f\xe1\x5f\x12\x03\x00\x00" func stakingcollectionRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -5297,11 +5297,11 @@ func stakingcollectionRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x78, 0x67, 0x8f, 0xee, 0xe4, 0xff, 0xfd, 0x78, 0x8b, 0x6e, 0xc4, 0xc0, 0xe3, 0x6a, 0x47, 0xfa, 0xac, 0xd6, 0x2c, 0x8f, 0x10, 0xf8, 0x9a, 0x26, 0x48, 0x80, 0x76, 0x27, 0xcc, 0x4e, 0x77}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdd, 0x26, 0xfa, 0x3b, 0xcb, 0x67, 0x49, 0xc5, 0x6f, 0x3d, 0xd5, 0xcc, 0x0, 0x6b, 0x6d, 0x28, 0x7d, 0xae, 0xd0, 0xb, 0xae, 0xb4, 0x68, 0x6d, 0xc7, 0x2a, 0xd7, 0xad, 0xb1, 0xfb, 0x14, 0x11}} return a, nil } -var _stakingcollectionRegister_multiple_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x8f\x1c\x82\x4c\x8b\x9c\x42\xe9\x41\x34\x0d\xae\x9d\x14\xd3\x90\x14\x2b\xed\x25\xf8\xb0\x5d\x8d\xe4\x21\xab\x5d\xb1\x3b\x6a\x0c\xc5\xff\xbd\xac\x64\x39\x29\x36\xa5\x7b\xd0\x61\x34\xfb\xcd\xdb\x79\x8f\x9b\xd6\x79\xc1\x8d\x71\xcf\x85\xa8\x27\xb6\xf5\xdc\x19\x43\x5a\xd8\x59\x54\xde\x35\xb8\xd8\x16\x0f\xb3\xaf\xcb\xbb\x2f\xf3\xfb\xdb\xdb\xeb\xf9\xc3\xf2\xfe\x6e\xb6\x58\xac\xae\x8b\x22\x49\xa6\xd3\x29\x56\x54\x73\x10\xf2\x01\x4d\x67\x84\x5b\x43\x28\xc9\x50\xad\xc4\xf9\x00\xb6\x90\x0d\x21\x0c\x6c\xe8\x17\xb8\xa7\xe0\x3a\xaf\xa9\x87\x54\xce\x0f\x7d\x2d\x69\xae\x98\x4a\x58\x57\xd2\x72\x11\xa0\x6c\x09\xd5\xb8\xce\x0a\x5c\x05\x71\x4f\x64\x03\xc4\x41\xbb\xa6\x61\x49\x12\xf1\xca\x06\xd5\x23\x53\x2e\x43\x8e\xc7\x42\x3c\xdb\x7a\xfd\x76\x7f\x2d\x96\xbe\xdf\xf0\xf6\xc3\xfb\xf5\x04\xbf\x13\x00\xe8\x3f\x86\x64\x94\xf5\xf2\xe4\x15\x55\x39\xce\x4f\x6e\x23\x3b\xaa\x24\x3d\xa7\xf5\xd4\x2a\x4f\xa9\xd2\x3a\x8e\xcb\xa1\x3a\xd9\xa4\x9f\x9d\xf7\xee\xf9\x87\x32\x1d\x4d\x70\x3e\x1b\xfe\x8d\xf3\xe3\x09\x64\xaa\xec\xd4\x7c\x5c\x62\x8f\xca\x82\x38\xaf\x6a\xca\x7e\xf6\xb0\x8f\xff\xab\xeb\x53\x1a\x8d\xcb\x4f\x9b\x7a\xdc\x5e\x0c\x53\xbe\x29\xd9\x4c\x0e\xf2\xe2\xb9\xba\x42\xab\x2c\xeb\xf4\x6c\xee\x3a\x13\x2d\x11\x0c\x52\xe0\x29\x7a\x81\x23\xd6\xd9\x40\xd8\x0d\xab\xa1\x2d\xe9\x4e\xe8\xd5\xab\x7f\x29\x0f\xc6\x25\x2e\x0e\x95\xe8\x3c\x97\x31\x27\x5c\x86\x57\x9d\xff\xdc\x51\xe6\xf7\xa1\x5b\x8c\x49\x4b\x87\xbc\xe4\xe0\x72\x34\x3e\x1f\x03\xf0\xc8\xeb\x49\x6f\xfb\x5f\xf0\x28\x83\xf1\x06\xef\x0e\xd5\xdd\x5e\xfb\x2e\xf9\x13\x00\x00\xff\xff\x82\xa4\x77\x0f\x16\x03\x00\x00" +var _stakingcollectionRegister_multiple_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4d\x6b\xdb\x40\x10\x86\xef\xfa\x15\x2f\x39\x04\x99\x16\x25\x85\xd2\x83\x68\x1a\x5c\x3b\x29\xa6\x21\x2e\x56\xda\x4b\xf0\x61\x2b\x8d\xe4\x21\xab\x5d\xb1\x3b\xaa\x0d\xc5\xff\xbd\xac\x3e\xec\x14\x9b\xde\xba\x07\x21\x46\xa3\x67\xdf\x9d\x7d\xb8\x6e\xac\x13\xdc\x6b\xbb\xcd\x44\xbd\xb0\xa9\x66\x56\x6b\xca\x85\xad\x41\xe9\x6c\x8d\xeb\x5d\xf6\x34\xfd\xba\x78\xfc\x32\x5b\x3e\x3c\xdc\xcd\x9e\x16\xcb\xc7\xe9\x7c\xbe\xba\xcb\xb2\x28\xba\xba\xba\xc2\x8a\x2a\xf6\x42\xce\xa3\x6e\xb5\x70\xa3\x09\x05\x69\xaa\x94\x58\xe7\xc1\x06\xb2\x21\xf8\x9e\x8d\xfc\x08\x77\xe4\x6d\xeb\x72\xea\x20\xa5\x75\x7d\x5f\x43\x39\x97\x4c\x05\x8c\x2d\x68\x31\xf7\x50\xa6\x80\xaa\x6d\x6b\x04\xb6\x84\xd8\x17\x32\x1e\x62\x91\xdb\xba\x66\x89\x22\x71\xca\x78\xd5\x21\x63\x2e\x7c\x8a\xe7\x4c\x1c\x9b\x6a\xfd\x76\xf8\x2d\x94\xbe\xdf\xf3\xee\xc3\xfb\xf5\x04\xbf\x23\x00\xe8\x1e\x9a\x64\x8c\x75\x3c\xf2\x8a\xca\x14\xaa\x95\x4d\x7c\x76\x22\xc9\xf1\x75\xb9\x35\xe4\x26\xb8\x3c\xdf\x77\x52\x89\xba\x3d\x1b\x47\x8d\x72\x14\xab\x3c\x0f\xd1\x86\xad\x3e\x5b\xe7\xec\xf6\x87\xd2\x2d\x4d\x70\x39\xed\xbf\x8d\x59\xc3\xf2\xa4\xcb\xe4\x5c\x56\xdc\x60\x40\x25\x5e\xac\x53\x15\x25\x3f\x3b\xd8\xc7\xff\x71\x86\x4f\x71\x10\x22\x3d\x2f\xcb\x69\x7b\xd6\x27\xfa\xa6\x64\x33\x39\x1c\x25\xac\xdb\x5b\x34\xca\x70\x1e\x5f\xcc\x6c\xab\xc3\x55\x0b\xfa\xd8\x70\x14\xee\x18\x27\xac\x8b\x9e\xb0\xef\xc7\x48\x3b\xca\x5b\xa1\x57\x13\xfa\xa5\x1c\x18\x37\xb8\x3e\x54\x82\x51\x5c\x04\xff\xb8\xf0\xaf\x3a\xff\x39\xcf\xc4\x0d\x32\xcf\x47\x83\xe3\xde\xc3\x14\x5c\x8c\x42\xa5\xa3\x58\xcf\xbc\x9e\x74\x3a\xfd\x05\x0f\x31\x18\x6f\xf0\xee\x50\xdd\x0f\xd9\xf7\xd1\x9f\x00\x00\x00\xff\xff\x18\xf8\x19\x12\x6e\x03\x00\x00" func stakingcollectionRegister_multiple_delegatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -5317,11 +5317,11 @@ func stakingcollectionRegister_multiple_delegatorsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_multiple_delegators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x59, 0x43, 0x92, 0xa5, 0xd8, 0x4f, 0xb4, 0xea, 0xfb, 0xfd, 0x2b, 0x49, 0x93, 0xa0, 0x62, 0xd5, 0x1c, 0xac, 0xb, 0x33, 0x43, 0xe5, 0xff, 0x98, 0x51, 0xe1, 0xe6, 0x2e, 0x9e, 0xcd, 0x77, 0xf5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0xe2, 0x6a, 0xd, 0xc2, 0x4a, 0xe7, 0x87, 0x9f, 0x74, 0x96, 0xa8, 0x5e, 0x7f, 0x41, 0xe5, 0xd7, 0x1d, 0x6b, 0x93, 0x36, 0x72, 0xe0, 0x11, 0x6a, 0xb6, 0xed, 0xd, 0x9f, 0xd6, 0x3f, 0xfc}} return a, nil } -var _stakingcollectionRegister_multiple_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x5d\x4f\xdb\x4a\x10\x7d\xf7\xaf\x98\xcb\x03\x72\x74\x23\xc3\x95\xae\xae\xae\xac\xa6\x28\x0d\x50\xa1\x20\xa8\x08\xed\x4b\x94\x87\xc5\x1e\xdb\x23\xd6\xbb\xd6\xec\x9a\xe0\x02\xff\xbd\x5a\xdb\xf9\x30\x76\x4a\xfd\x10\x65\x67\xce\x9c\x39\xde\x39\x63\xca\x0b\xcd\x16\x66\x5c\x15\x56\x7b\xed\xe9\x52\xea\xf5\xc2\x8a\x47\x52\xe9\x4c\x4b\x89\x91\x25\xad\x20\x61\x9d\xc3\xe9\xf3\xe2\x7e\x3a\xbf\xba\xf9\x3a\xbb\xbd\xbe\xbe\x98\xdd\x5f\xdd\xde\x4c\xcf\xcf\xef\x2e\x16\x0b\xcf\x3b\x39\x39\x81\x3b\x4c\xc9\x58\x64\x03\x79\x29\x2d\x15\x12\x41\xe9\x18\x0d\x90\x02\x9b\x21\x98\x86\x16\xa2\x1d\x2f\xa3\xd1\x25\x47\x58\xd7\x27\x9a\x1b\x5c\x81\x11\x25\x84\x71\x5d\x0e\xa4\x12\xcd\xb9\x70\x78\xcf\xb3\x2c\x94\x11\x75\xb1\x4f\xb1\x09\x61\xb9\xb0\x4c\x2a\x5d\x8d\x3d\xd8\x7b\x58\x4b\x74\xc9\xef\x57\xca\xfe\xff\x2e\xa7\xd0\xae\x35\x3b\x25\xd3\x38\x66\x34\x06\x0f\xd2\xec\xa0\x73\xac\x0e\xa2\xda\xf7\xfa\x1d\x44\xe4\xba\x54\xb6\x56\x74\x49\xcf\xff\xfd\xfb\x2e\x5d\x94\x0f\x92\xa2\x96\x60\xd9\x0c\x24\x98\x63\x75\x4d\xc6\x5e\x28\xcb\xd5\xea\x6c\x35\x82\x97\xba\xa6\xfe\x91\x68\x37\x6d\x77\x53\xba\xc3\x24\x84\xe3\xc1\x01\x06\xbd\x88\x57\xf3\x14\x8c\x85\x60\xf4\x45\x14\x39\x81\x21\x88\xd2\x66\xfe\x17\xcd\xac\xd7\x3f\x84\x2c\x71\x04\xc7\xd3\x26\xb7\xe9\x5f\xbf\x31\xca\x24\x18\xea\x0f\x13\x68\xa9\x02\x63\x35\x8b\x14\x83\x87\x9a\xec\xd3\x9f\xea\xfa\xec\x3b\xaf\x85\xc3\x3e\xec\xc3\x17\x4d\x97\x6f\xc2\x66\xa3\xce\x95\x9e\x9d\x41\x21\x14\x45\xfe\xd1\x4c\x97\xd2\x59\xc9\x42\x23\x05\x18\x13\xb0\x1a\x7a\x5c\x47\x23\x6f\x4b\xf1\x24\x18\x08\x26\x70\xba\x0b\x39\x7b\x52\xec\xcc\x4c\xb1\xd9\xbb\x0c\xf7\x50\x52\x8f\x24\x17\x51\x46\x0a\xdb\x1b\x83\xc9\xe1\x8b\x0a\xb8\x5d\x96\x1b\x1d\xa3\xdf\xe1\xaa\xf9\xe2\x10\x28\x1e\xf7\xe2\xce\xd7\x61\xe3\xee\x25\xad\xfa\xf9\x9e\xb7\xc3\x21\xbb\x7f\x50\x3a\xc7\x2a\x7c\x67\xfd\xc1\x8a\x9d\xef\xc3\xfd\x1d\x18\xc4\x36\x0b\x10\x6e\x16\x61\x10\x53\x88\x0a\x39\xdc\x18\x68\x04\x1d\xc0\x4b\xff\x8e\x92\xbd\xbd\x59\xd2\x0a\x26\x13\x50\x24\xe1\xf5\xb5\x1b\xff\x2b\x90\xa8\x52\x9b\xb9\xfc\xe9\x00\x4f\xd3\xba\xb1\x8a\x50\xce\x27\x05\xeb\x27\x8a\x11\x7e\x22\x6b\x78\xc4\xca\x6c\x3f\x4d\xed\x80\x37\x1a\x8f\x46\x3d\xb6\xb7\x5e\xc4\xd5\x3e\x62\xe5\x8c\xd3\xd5\x75\x40\x4b\xd7\x44\x81\xeb\x1f\x88\x38\xf6\xb7\xc5\xa1\xa3\x0b\xb6\xc7\x31\x64\xc2\x64\x53\x99\x6a\x26\x9b\xe5\x4d\xb6\x13\x1a\xc3\x1a\x29\xcd\x6c\x93\x6a\xfe\x7f\xa4\xbc\x7b\x72\xab\x40\xf0\x37\xfc\xe3\x75\xf3\x6f\xde\x9b\xf7\x2b\x00\x00\xff\xff\x63\xd0\x3c\xa9\x47\x06\x00\x00" +var _stakingcollectionRegister_multiple_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x4d\x4f\xe3\x48\x10\xbd\xfb\x57\xd4\x72\x40\xb1\x36\x32\xac\xb4\x5a\xad\xac\xc9\xa0\x4c\x80\x11\x0a\x82\x11\x61\xe6\x12\xe5\xd0\xd8\x65\xbb\x44\xbb\xdb\xaa\x6e\x13\x3c\xc0\x7f\x1f\xb5\xed\x7c\x18\x3b\xc3\x69\x7c\x88\xec\xaa\x57\xaf\x5f\x57\xd5\x0b\xe5\x85\x66\x0b\x33\xae\x0a\xab\xbd\xf6\xeb\x52\xea\xf5\xc2\x8a\x47\x52\xe9\x4c\x4b\x89\x91\x25\xad\x20\x61\x9d\xc3\xe9\xf3\xe2\x7e\x3a\xbf\xba\xf9\x3a\xbb\xbd\xbe\xbe\x98\xdd\x5f\xdd\xde\x4c\xcf\xcf\xef\x2e\x16\x0b\xcf\x3b\x39\x39\x81\x3b\x4c\xc9\x58\x64\x03\x79\x29\x2d\x15\x12\x41\xe9\x18\x0d\x90\x02\x9b\x21\x98\x86\x16\xa2\x1d\x2f\xa3\xd1\x25\x47\x58\xd7\x27\x9a\x1b\x5c\x81\x11\x25\x84\x71\x5d\x0e\xa4\x12\xcd\xb9\x70\x78\xcf\xb3\x2c\x94\x11\x75\xf1\x88\x62\x13\xc2\x72\x61\x99\x54\xba\x1a\x7b\xb0\xf7\xb0\x96\xe8\x92\xdf\xaf\x94\xfd\xff\x5d\x4e\xa1\x5d\x6b\x76\x4a\xa6\x71\xcc\x68\x0c\x1e\xa4\xd9\x41\xe7\x58\x1d\x44\xb5\xf7\xfa\x1d\x44\xe4\xba\x54\xb6\x56\x74\x49\xcf\xff\xfd\xfb\x2e\x5d\x94\x0f\x92\xa2\x96\x60\xd9\x0c\x24\x98\x63\x75\x4d\xc6\x5e\x28\xcb\xd5\xea\x6c\xe5\xc3\x4b\x5d\x53\xff\x48\xb4\x9b\x63\x77\x53\xba\xc3\x24\x04\x51\xda\x6c\x34\x38\xc4\x60\xf7\x7a\xbb\x56\xc8\x3e\x1c\x0f\xe3\x7a\x11\xaf\x3e\xb3\x60\x2c\x04\xe3\x48\x44\x91\xbb\x4c\x7b\xd4\x17\xcd\xac\xd7\x3f\x84\x2c\xd1\x87\xe3\x69\x93\xdb\x68\xad\xbb\x83\x32\x09\x86\xb4\xc2\x04\x5a\xaa\xc0\x58\xcd\x22\xc5\xe0\xa1\x26\xfb\xf4\x27\xee\xf0\x79\xe4\x76\x38\x1c\xde\xef\x3e\x7c\xd1\x28\xfa\x26\x6c\xe6\x77\x46\x75\x76\x06\x85\x50\x14\x8d\x8e\x66\xba\x94\x6e\x45\x2d\x34\xb2\x81\x31\x01\xab\xa1\xc7\x75\xe4\x7b\x5b\x8a\x27\xc1\x40\x30\x81\xd3\x5d\xc8\xad\x3d\xc5\xce\x24\x14\x9b\xbd\xc6\xb9\x87\x92\x7a\xd4\xb9\x88\x32\x52\xd8\x76\x17\x26\x87\x9b\x1a\x70\x6b\xc2\x1b\x1d\xe3\xa8\xc3\x55\xf3\xc5\x21\x50\x3c\xee\xc5\x9d\x5f\xc2\xc6\x35\x4b\x5a\xf5\xf3\x3d\xcf\x84\x43\x36\xfa\xa0\x74\x8e\x55\xf8\xce\x52\x83\x15\x3b\x3f\x85\xfb\xde\x1a\xc4\x36\xc6\x0a\x37\x06\x1b\xc4\x14\xa2\x42\x0e\x37\xcb\xe6\x43\x07\xf0\xd2\xef\x51\xb2\xe7\xc7\x25\xad\x60\x32\x01\x45\x12\x5e\x5f\xbb\xf1\xbf\x02\x89\x2a\xb5\x99\xcb\x9f\x0e\xf0\x34\x47\x37\xab\x22\x94\xdb\x93\x82\xf5\x13\xc5\x08\x3f\x91\x35\x3c\x62\x65\xb6\x7f\x79\xed\x80\x37\x1a\x8f\xfc\x1e\xdb\x5b\x2f\xe2\x6a\x1f\xb1\x72\x8b\xd3\xd5\x75\x40\x4b\x77\x89\x02\x77\x7e\x20\xe2\x78\xb4\x2d\x0e\x1d\x5d\xb0\xfd\x1c\x43\x26\x4c\x36\x95\xa9\x66\xb2\x59\xde\x64\x3b\xa1\x31\xac\x91\xd2\xcc\x36\xa9\xe6\xfd\x23\xe5\xdd\x2f\x67\x05\x82\xbf\xe1\x1f\xaf\x9b\x7f\xf3\xde\xbc\x5f\x01\x00\x00\xff\xff\x77\xdc\xd4\xaf\x9f\x06\x00\x00" func stakingcollectionRegister_multiple_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -5337,11 +5337,11 @@ func stakingcollectionRegister_multiple_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_multiple_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe0, 0x1b, 0x99, 0x14, 0xa2, 0xa, 0x48, 0x5a, 0x17, 0x20, 0x71, 0x7f, 0x8, 0x52, 0x45, 0xad, 0xc4, 0x69, 0x39, 0x73, 0x7b, 0x3b, 0xda, 0xf9, 0x2a, 0x2c, 0xef, 0xe3, 0x26, 0xed, 0x96, 0xc4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcf, 0xa8, 0x9f, 0x9, 0xd6, 0x5d, 0xe1, 0xfa, 0x9b, 0xfa, 0x6f, 0x63, 0xb2, 0xc4, 0xcc, 0xf9, 0xae, 0xc0, 0x6b, 0xb, 0x58, 0x2b, 0x22, 0xc6, 0x84, 0x8c, 0x7e, 0x82, 0x9a, 0x9a, 0x47, 0xa3}} return a, nil } -var _stakingcollectionRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x4f\xdb\x4e\x10\xbd\xfb\x53\xcc\x8f\x03\x72\x24\x64\x38\xfc\x54\x55\x56\x53\x94\x06\xa8\x50\x10\x54\x04\x7a\xa9\x7a\x58\xec\xb1\xbd\xca\x7a\xc7\x1a\x4f\x1a\xdc\xc2\x77\xaf\xd6\xeb\xfc\x31\x71\xda\xe6\x90\xec\xee\xcc\xbc\x79\x3b\xef\x65\x75\x59\x11\x0b\x4c\xb9\xa9\x84\x82\x6e\x77\x65\x68\x35\x17\xb5\xd0\x36\x9f\x92\x31\x98\x88\x26\x0b\x19\x53\x09\x67\xcf\xf3\x87\xc9\xec\xfa\xf6\xf3\xf4\xee\xe6\xe6\x72\xfa\x70\x7d\x77\x3b\xb9\xb8\xb8\xbf\x9c\xcf\x83\xe0\xf4\xf4\x14\xee\x31\xd7\xb5\x20\xd7\xa0\x20\x45\x83\xb9\x12\x62\xd0\x16\xa4\x40\xa8\x3d\x26\x24\x5b\x50\xc6\x9a\x96\x9c\x60\x5b\x9c\x11\xfb\xbc\x0a\x13\x9d\x69\x4c\xc1\x52\x8a\xa0\x6d\x46\x5c\xaa\x36\x5f\xd9\xb4\x4d\x51\x25\x2d\xad\x00\x65\x20\xb4\x40\x5b\x83\x10\x24\x54\x96\x5a\x82\x40\x58\xd9\x5a\xb5\xf8\xa1\x4e\x63\x98\x0b\x6b\x9b\x9f\x04\xb0\xf3\x61\x32\x18\xc3\xe3\xb5\x95\xf7\xfd\x80\x45\x59\x11\x3b\x9a\x93\x34\x65\xac\xeb\xe1\xfa\x6d\xda\x0c\x9b\xe1\x94\xee\xb6\x07\xe3\xfe\x0a\x31\x3c\x5e\xe9\xe7\x77\xff\xf7\x63\xd5\xf2\xc9\xe8\x64\x86\x4d\x1d\xc3\x37\x2f\x4e\x34\xc3\xe6\x46\xd7\x72\x69\x85\x9b\xef\xe7\x23\xf8\x15\xb4\x25\x06\x65\xdd\x6a\x2b\xd6\x3d\x66\x31\x1c\x0f\xea\x18\xed\x9d\x78\x9c\x8a\xb1\x52\x8c\xa1\x4a\x12\xcf\x4b\x2d\xa5\x08\x3f\x11\x33\xad\xbe\x2a\xb3\xc4\x11\x1c\x4f\x7c\xcc\xf5\xde\xdc\x12\x4d\x16\x0d\xf5\x87\x31\x74\x50\x51\x2d\xc4\x2a\xc7\xe8\xa9\x05\xfb\xf0\xaf\xbc\x3e\x86\xce\x72\xf1\xb0\x1d\xf7\xd3\xe7\xbe\xcb\x17\x25\xc5\xa8\x37\xcc\xf3\x73\xa8\x94\xd5\x49\x78\x34\xa5\xa5\x71\xa6\x12\xf0\x54\x80\xd1\x19\x08\xf6\xb0\x8e\x46\xc1\x06\x42\x67\xed\x8c\x4b\x95\x14\xda\x62\x37\x02\x18\x1f\xbe\x79\xc4\xdd\x9f\xe0\x96\x52\x0c\x7b\x54\x9c\x1d\x75\x3a\x64\x45\xf7\xfd\x57\x27\xee\x1d\xfd\xd1\x94\xbd\xed\x61\x6f\x6e\xd7\xc3\xfe\xf4\xbf\x6f\xfc\xa9\x1a\xe4\x78\x2d\xf0\x26\xb4\x6b\x8c\x6e\x74\x5b\x27\xc3\x78\x0c\x56\x1b\x78\x79\xd9\x39\xfc\x2f\x32\x68\x73\x29\x5c\xf0\xec\x4d\xb5\x6f\xe4\x85\x53\xd6\xa9\x56\x31\xfd\xd0\x29\xc2\x4f\x64\x82\x85\xc3\x5c\x3f\x19\x9d\x3a\x6b\x46\x47\x7d\x07\xbc\xf6\x76\xae\x66\x81\x8d\x7b\x95\x76\x88\x0c\x34\xef\x4b\x1e\xb9\x86\x91\x4a\xd3\x70\x53\x15\x3b\x9c\x68\xb3\x3d\x81\x42\xd5\xc5\xc4\xe4\xc4\x5a\x8a\xd2\x47\x7b\x47\x27\xb0\x42\x9d\x17\xe2\x43\x7e\x7d\x88\xaa\x5f\xbd\x06\xaf\xc1\xef\x00\x00\x00\xff\xff\xbc\xfd\xa7\x58\xa5\x05\x00\x00" +var _stakingcollectionRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x4f\x4f\xdb\x4e\x10\xbd\xfb\x53\xcc\x8f\x03\x72\x24\x64\x38\xfc\x54\x55\x56\x53\x94\x06\xa8\x50\x10\x54\x04\x7a\xa9\x7a\x58\xec\xb1\xbd\xca\x7a\xc7\x1a\x4f\x1a\xdc\xc2\x77\xaf\xd6\xeb\xfc\x31\x71\xda\x53\x73\x88\x77\x77\x66\xde\xbc\x9d\xf7\x6c\x5d\x56\xc4\x02\x53\x6e\x2a\xa1\xa0\xdb\x5d\x19\x5a\xcd\x45\x2d\xb4\xcd\xa7\x64\x0c\x26\xa2\xc9\x42\xc6\x54\xc2\xd9\xf3\xfc\x61\x32\xbb\xbe\xfd\x3c\xbd\xbb\xb9\xb9\x9c\x3e\x5c\xdf\xdd\x4e\x2e\x2e\xee\x2f\xe7\xf3\x20\x38\x3d\x3d\x85\x7b\xcc\x75\x2d\xc8\x35\x28\x48\xd1\x60\xae\x84\x18\xb4\x05\x29\x10\x6a\x8f\x09\xc9\x16\x94\xb1\xa6\x25\x27\xd8\x16\x67\xc4\x3e\xaf\xc2\x44\x67\x1a\x53\xb0\x94\x22\x68\x9b\x11\x97\xaa\xcd\x57\x36\x6d\x53\x54\x49\x4b\x2b\x40\x19\x08\x2d\xd0\xd6\x20\x04\x09\x95\xa5\x96\x20\x10\x56\xb6\x56\x2d\x7e\xa8\xd3\x18\xe6\xc2\xda\xe6\x27\x01\xec\xfc\x98\x0c\xc6\xf0\x78\x6d\xe5\x7d\x3f\x60\x51\x56\xc4\x8e\xe6\x24\x4d\x19\xeb\x7a\xb8\x7e\x9b\x36\xc3\x66\x38\xa5\xbb\xed\xc1\xb8\xbf\x42\x0c\x8f\x57\xfa\xf9\xdd\xff\xfd\x58\xb5\x7c\x32\x3a\x99\x61\x53\xc7\xf0\xcd\x8b\x13\xcd\xb0\xb9\xd1\xb5\x5c\x5a\xe1\xe6\xfb\xf9\x08\x7e\x05\x6d\x89\x41\x59\xb7\xda\x8a\x75\x8f\x59\x0c\x6a\x29\x45\x38\xa8\x65\xb4\x5d\xde\xad\x2c\xf2\x08\x8e\x87\xf3\xf6\x4e\x7c\xcf\x8a\xb1\x52\x8c\xa1\x4a\x12\x7f\x87\xb6\xd5\x27\x62\xa6\xd5\x57\x65\x96\x38\x82\xe3\x89\x8f\x39\x9e\x9b\x89\xa0\xc9\xa2\x21\xae\x30\x86\x0e\x2a\xaa\x85\x58\xe5\x18\x3d\xb5\x60\x1f\xfe\xc5\x1d\x3e\x86\xce\xca\xf1\xb0\xcd\xf7\xd3\xe7\x9e\xd1\x17\x25\xc5\xa8\x27\xd2\xf9\x39\x54\xca\xea\x24\x3c\x9a\xd2\xd2\x38\xb3\x0a\x78\xda\xc0\xe8\x8c\x09\x7b\x58\x47\xa3\x60\x03\xa1\xb3\x56\xbb\x52\x25\x85\xb6\xd8\x8d\x0b\xc6\x87\xa7\x14\x71\xf7\x72\xdd\x52\x8a\x61\x8f\x8a\xb3\xb9\x4e\x87\x2c\xee\xfe\xff\xea\xf0\xbd\xa3\x3f\x9a\xbd\xb7\x3d\xec\xf9\xed\x7a\xd8\xf7\xfe\xf9\xc6\xf7\xaa\x41\x8e\xd7\x66\xd8\x84\x76\x4d\xd4\x8d\x6e\xfb\x86\xc0\x78\x0c\x56\x1b\x78\x79\xd9\x39\xfc\x2f\x32\x68\x73\x29\x5c\xf0\xec\x4d\xb5\x6f\xe4\x85\x53\xd6\xa9\x56\x31\xfd\xd0\x29\xc2\x4f\x64\x82\x85\xc3\x5c\x7f\x8a\x3a\x75\xd6\x8c\x8e\xfa\x0e\x78\xed\xed\x5c\xcd\x02\x1b\xf7\xb5\xdb\x21\x32\xd0\xbc\x2f\x79\xe4\x1a\x46\x2a\x4d\xc3\x4d\x55\xec\x70\xa2\xcd\xf6\x04\x0a\x55\x17\x13\x93\x13\x6b\x29\x4a\x1f\xed\x1d\x9d\xc0\x0a\x75\x5e\x88\x0f\xf9\xf5\x21\xaa\x7e\xf5\x1a\xbc\x06\xbf\x03\x00\x00\xff\xff\xc4\x66\xa5\xbb\xfd\x05\x00\x00" func stakingcollectionRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5357,11 +5357,11 @@ func stakingcollectionRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0xfc, 0x6c, 0xa0, 0x8b, 0x13, 0x72, 0x14, 0x39, 0xde, 0x16, 0x2d, 0x5d, 0x96, 0xa1, 0x45, 0x7e, 0xfc, 0x37, 0x9, 0xcb, 0x40, 0x0, 0xc4, 0xd4, 0xd, 0x53, 0x8d, 0x54, 0xf5, 0xfa, 0xbd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x60, 0x99, 0xe, 0x98, 0xd6, 0x6e, 0xe4, 0xe3, 0xc3, 0x58, 0xd7, 0x65, 0x1c, 0xe2, 0xe2, 0x97, 0xc3, 0xf4, 0x32, 0x95, 0x34, 0xb3, 0xc7, 0xcc, 0xf0, 0x9f, 0xb5, 0xe1, 0x69, 0x2b, 0x26, 0x4f}} return a, nil } -var _stakingcollectionRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6a\xc2\x40\x10\xbd\xe7\x2b\x06\x0f\x12\x41\x62\x69\x4b\x0f\xa1\xad\xd8\xa8\x25\x54\xb4\x18\xed\x7d\x1b\x27\x71\xe9\xba\x93\x6e\x66\x51\x28\xfe\x7b\x49\xd6\x68\xa9\x1e\xdc\x43\x96\x99\xcc\xbc\xf7\x66\xdf\xc8\x4d\x41\x86\x61\xac\x68\x9b\xb0\xf8\x92\x3a\x8f\x48\x29\x4c\x59\x92\x86\xcc\xd0\x06\x6e\x76\xc9\x62\xf0\x16\x4f\x5f\xa3\xd9\x64\x32\x8a\x16\xf1\x6c\x3a\x18\x0e\xe7\xa3\x24\xf1\xbc\x5e\xaf\x07\x73\xfc\xb6\x58\x72\x09\x56\x97\x0e\x01\x32\x32\xc0\x6b\x84\xb2\xc0\x54\x66\x12\x57\xa0\x69\x85\x40\x06\x56\xa8\x30\x17\x4c\x06\xa4\x76\x25\x87\x96\xf4\xc8\xea\x79\x6c\x84\x2e\x45\x1d\xf8\x55\x63\x3c\x0c\x21\x61\x23\x75\xde\x3d\x01\x54\xc9\x65\xac\xf9\xee\xb6\xdf\x05\xb1\x21\xab\x39\x84\xe5\x58\xee\x1e\xee\x3b\xf0\xe3\x01\x00\xd4\x1f\x85\xdc\x90\x9c\x26\x9b\x63\x16\x42\xfb\xe2\xd0\xc1\x59\xc6\xab\x71\x0a\x83\x85\x30\xe8\x8b\x34\x75\x5c\xc2\xf2\xda\x7f\x21\x63\x68\xfb\x21\x94\xc5\x0e\xb4\x07\xee\x5f\xc3\x5f\x9d\x12\x55\x16\x5c\xe2\x87\x27\x38\x40\x05\x25\x93\x11\x39\x06\x9f\x35\xd8\xe3\xb5\xba\x9e\xfd\xca\x9f\xf0\xb2\x77\xe7\xe5\x89\x63\x79\x17\xbc\xee\x1c\xe5\x55\xa7\xdf\x87\x42\x68\x99\xfa\xad\x88\xac\xaa\xbc\x62\x70\x52\xc0\x60\x06\x4c\x70\x86\xd5\x72\x08\x7b\xf7\x34\xb8\xc3\xd4\x32\x5e\x33\x75\x60\xdc\xb6\x2c\x9b\x5d\x39\x1a\xec\xee\x7f\x06\xff\x09\x4e\x26\xbb\xbb\x51\xb0\xf7\x7e\x03\x00\x00\xff\xff\x44\xa6\xca\x7b\xc3\x02\x00\x00" +var _stakingcollectionRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\x4f\x6f\xaa\x40\x10\xbf\xf3\x29\x26\x1e\x0c\x24\x06\x5f\xde\x7b\xe9\x81\xb4\x35\x16\xb5\x21\x35\xda\x88\xf6\xbe\xc5\x01\x37\x5d\x77\xe9\x30\x44\x93\xc6\xef\xde\xc0\x8a\x34\x95\x43\x2f\xdd\x03\xcb\x2e\x33\xbf\x3f\xc3\x4f\xee\x73\x43\x0c\x33\x65\x0e\x31\x8b\x37\xa9\xb3\xd0\x28\x85\x09\x4b\xa3\x21\x25\xb3\x87\x3f\xc7\x78\x3d\x7e\x8a\x16\x8f\xe1\x72\x3e\x9f\x86\xeb\x68\xb9\x18\x4f\x26\xab\x69\x1c\x3b\xce\x70\x38\x84\x15\xbe\x97\x58\x70\x01\xa5\x2e\x2c\x02\xa4\x86\x80\x77\x08\x45\x8e\x89\x4c\x25\x6e\x41\x9b\x2d\x82\x21\xd8\xa2\xc2\x4c\xb0\x21\x90\xda\x96\x9c\x5b\x92\x0b\xab\xe3\x30\x09\x5d\x88\xfa\xe0\x56\x8d\xd1\x24\x80\x98\x49\xea\x6c\xd0\x02\x54\x97\x9b\x48\xf3\xbf\xbf\xa3\x01\x88\xbd\x29\x35\x07\xb0\x99\xc9\xe3\xcd\x7f\x0f\x3e\x1c\x00\x80\xfa\xa1\x90\x1b\x92\xd6\xd9\x0a\xd3\x00\x44\xc9\x3b\xb7\xd3\xb8\xdf\xbe\x2e\x0f\x1a\xc9\x83\x7e\x77\xdd\xd5\x8d\x53\x73\xe6\x84\xb9\x20\x74\x45\x92\x58\x5d\x35\xd5\x83\x21\x32\x87\x17\xa1\x4a\xf4\xa0\x3f\xb6\xdf\x1a\xad\xd5\x2a\x50\xa5\x7e\x97\x56\xb8\x83\x33\x94\x5f\xb0\x21\x91\xa1\xff\x5a\x83\xdd\xfe\x86\x87\x7b\xb7\xfa\xef\x41\x77\x26\xae\xcb\x63\xab\xe8\x59\xf0\xce\xbb\x58\xa9\xd6\x68\x04\xb9\xd0\x32\x71\x7b\xa1\x29\x55\x95\x01\x06\x2b\x1b\x08\x53\x60\x03\x57\x58\x3d\x8b\x70\xb2\x63\xc4\x23\x26\x25\xe3\x4f\x26\xe4\x93\x4d\xe1\xa6\xc9\xe0\x25\x38\x76\xff\x16\x9c\x2f\x87\x36\x3c\x76\x6f\x14\x9c\x9c\xcf\x00\x00\x00\xff\xff\xe8\x26\xc6\x6a\x1b\x03\x00\x00" func stakingcollectionRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -5377,11 +5377,11 @@ func stakingcollectionRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0x5c, 0x64, 0x51, 0xd2, 0x85, 0x1a, 0x5a, 0x33, 0x7f, 0x28, 0x77, 0x26, 0x50, 0xdc, 0x67, 0x81, 0x7b, 0xa, 0xc5, 0xf1, 0x87, 0xd0, 0x88, 0xd3, 0x40, 0xa, 0xd5, 0x79, 0x39, 0x46, 0x52}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8c, 0x3b, 0x83, 0x21, 0xc3, 0xf, 0xe9, 0xd0, 0x8b, 0x36, 0x43, 0xf5, 0x52, 0xb, 0x3f, 0xd7, 0x70, 0x34, 0xf8, 0xb, 0x19, 0x64, 0xca, 0x49, 0xb9, 0xdb, 0xbd, 0xd9, 0x7b, 0x86, 0xb, 0xc3}} return a, nil } -var _stakingcollectionRestake_all_stakersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x52\x4d\x6b\xdb\x40\x10\xbd\xef\xaf\x18\x7c\x08\x32\x04\xb9\x67\x53\x37\xb8\x52\x5a\x4c\x83\x52\x2c\xd3\xfb\x44\x1a\x39\xc2\xab\x1d\xb3\x5a\xe1\x40\xf0\x7f\x2f\xab\x95\xf5\x61\xc9\x6d\xa1\xd1\x61\x11\xbb\x33\x6f\xde\xbc\xf7\xf2\xe2\xc8\xda\xc0\x37\xc9\xa7\xd8\xe0\x21\x57\xfb\x80\xa5\xa4\xc4\xe4\xac\x20\xd3\x5c\xc0\xa7\xb7\x78\xb7\xfe\xb1\x89\xbe\x07\xcf\x4f\x4f\x8f\xc1\x6e\xf3\x1c\xad\xc3\x70\xfb\x18\xc7\xa2\xd7\xbc\x09\x77\xf8\x22\xa9\xc1\x70\x9d\xb3\xf1\xc3\x4c\x88\xc5\x62\x01\x01\x17\x45\x6e\x4a\xd0\x74\x42\x9d\x52\x0a\x86\x0f\xa4\x4a\x30\x0c\xa5\xc1\x03\x41\xc6\x1a\x50\x4a\x50\x9c\x52\x09\xa8\x52\x48\x49\xd2\x1e\x0d\xeb\x12\x72\x05\x08\x49\x4b\x53\x08\xa3\x51\x95\xe8\x38\xbf\x0b\x00\x80\xfa\x90\x64\x6a\xb8\xc1\x52\x5b\xca\x96\x70\x37\xb9\xaf\x3f\xba\x11\x35\xce\x51\xd3\x11\x35\x79\x98\x24\x5c\x29\xb3\x04\xac\xcc\xab\xf7\x95\xb5\xe6\xd3\x2f\x94\x15\xcd\xe1\x6e\xed\xde\xe6\xcd\x7c\xfb\x95\x24\x33\x7f\x6a\x3e\xac\xa0\x81\xf2\x4b\xc3\x1a\xf7\xe4\xbf\xd4\x60\x9f\xff\x95\xd7\x17\xcf\x0a\xbc\x9c\xb6\x6d\x5c\x1e\xbb\x29\x3f\xd1\xbc\xce\x5b\x7a\xf6\x7b\x78\x80\x23\xaa\x3c\xf1\x66\x01\x57\x32\x05\xc5\x06\x1c\x15\xd0\x94\x59\x3b\x46\x58\x33\x87\x70\x76\xd2\xd0\x1b\x25\x95\xa1\xde\xd6\x56\x74\xeb\xda\x26\x2c\x61\x75\x5b\x03\x7f\x4f\x26\x72\x65\xde\x5c\xb4\xdd\xd6\x77\xd7\x6d\x5d\xbe\xe0\xbc\x0f\x48\xb7\x13\x54\xc6\xb0\x9a\x48\x9f\x1f\x35\xaf\x9e\x03\x58\x36\x40\xc3\xdd\x6f\x53\xab\x23\xb8\x6d\xa2\xb9\xab\x93\x79\x85\x74\xdf\xc5\xb1\xbe\xcc\xe5\x3d\x60\xe1\xc2\x71\xa1\xe6\xbb\x4c\x5f\x70\xba\xe1\x67\x31\x10\xab\x17\xec\xbf\xe8\x15\x76\x33\x47\xa2\xb5\x28\x56\xb7\x1e\xe4\x58\xba\x8e\xf9\x4d\xfd\xc2\x7e\x49\xbb\x7a\xdb\xe8\xb7\x7f\xd1\x94\x1a\x13\x75\xd7\xda\x7f\x80\x11\xff\xc5\xa6\x73\x6b\xa0\xc6\x1f\x2c\x73\xe7\x59\xfc\x0e\x00\x00\xff\xff\x3e\x6b\x84\x01\x30\x05\x00\x00" +var _stakingcollectionRestake_all_stakersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x8b\xdb\x30\x10\xbd\xeb\x57\x0c\x39\x2c\x0e\x2c\x4e\xcf\xa1\xe9\x92\xda\xdb\x12\xba\x38\x25\x0e\xbd\xcf\xda\xe3\xac\x89\xac\x09\xb2\x4c\x16\x96\xfc\xf7\x22\xcb\xf1\xc7\xda\x69\x0f\xed\xea\x20\x84\x34\xf3\xe6\xcd\x9b\xa7\xbc\x38\xb1\x36\xf0\x4d\xf2\x39\x36\x78\xcc\xd5\x21\x60\x29\x29\x31\x39\x2b\xc8\x34\x17\xf0\xe9\x35\xde\xaf\x7f\x6c\xa2\xef\xc1\xf6\xe9\xe9\x31\xd8\x6f\xb6\xd1\x3a\x0c\x77\x8f\x71\x2c\x7a\xc9\x9b\x70\x8f\xcf\x92\x1a\x0c\x97\x39\x1b\x3f\xcc\x84\x58\x2c\x16\x10\x70\x51\xe4\xa6\x04\x4d\x67\xd4\x29\xa5\x60\xf8\x48\xaa\x04\xc3\x50\x1a\x3c\x12\x64\xac\x01\xa5\x04\xc5\x29\x95\x80\x2a\x85\x94\x24\x1d\xd0\xb0\x2e\x21\x57\x80\x90\xb4\x34\x85\x30\x1a\x55\x89\x8e\xf3\x9b\x00\x00\xa8\x37\x49\xa6\x86\x1b\x34\xb5\xa3\x6c\x09\x58\x99\x17\x6f\xb2\x67\xbf\x3b\x6e\xcf\x8a\xf4\x1c\xee\xa6\xe3\x46\x37\xa2\xae\x79\xd2\x74\x42\x4d\x1e\x26\x09\x57\xca\x34\xa5\xbe\xb2\xd6\x7c\xfe\x85\xb2\xa2\x39\xdc\xad\xdd\xdb\xbc\xe1\x6a\x57\x49\x32\xf3\xa7\xb8\xc2\x0a\x1a\x28\xbf\x34\xac\xf1\x40\xfe\x73\x0d\xf6\xf9\x23\x7a\xf8\xe2\xd9\xc1\x2d\xa7\xed\x30\x0e\x8f\x1d\xa3\x9f\x68\x5e\xe6\x6d\x2b\x76\x3d\x3c\xc0\x09\x55\x9e\x78\xb3\x80\x2b\x99\x82\x62\x03\x8e\x36\x68\xca\xec\x98\x47\x58\x33\x87\x70\x71\x32\xd2\x2b\x25\x95\xa1\x9e\x42\x76\x98\xd6\x0d\x9b\xb0\x84\xd5\x6d\xbd\xfc\x03\x99\xc8\x85\x79\x73\xd1\x66\x5b\x3f\xb9\x6c\xeb\x9e\x2b\xce\xdb\x80\x74\x5b\x41\x65\x0c\xab\x09\x57\xfb\x51\xf3\xea\x39\x80\x65\x03\x34\xec\xfd\x36\xb5\xda\xda\xbb\xc6\xf2\xfb\xda\xf1\xef\x90\xee\x3b\x9b\xd7\x97\xb9\xbc\x07\x2c\x9c\x91\xae\xd4\x7c\xf7\x57\xae\x38\x5d\xf1\x8b\x18\x88\xd5\xfb\x30\x7f\xd1\x2b\xec\x6a\x8e\x44\x6b\x51\xac\x6e\x3d\xc8\xb1\x74\x1d\xf3\x9b\xfa\x85\xfd\x90\xb6\xf5\x36\xd1\x6f\x4f\xd1\x94\x1a\x13\x71\xef\xb5\xff\x0f\x83\xf8\x27\x36\xdd\xb4\x06\x6a\xfc\x61\x64\x6e\xbf\x88\xdf\x01\x00\x00\xff\xff\xfb\x06\x01\xb0\x88\x05\x00\x00" func stakingcollectionRestake_all_stakersCdcBytes() ([]byte, error) { return bindataRead( @@ -5397,7 +5397,7 @@ func stakingcollectionRestake_all_stakersCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/restake_all_stakers.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf9, 0x73, 0x57, 0x44, 0x5e, 0xb8, 0xd0, 0x1d, 0xa0, 0xe3, 0xfa, 0x34, 0xe5, 0x7c, 0xab, 0x6d, 0x8a, 0x77, 0xd2, 0xa3, 0x2b, 0xd4, 0x3a, 0x74, 0xfa, 0x8e, 0xd0, 0x37, 0x6d, 0x3f, 0x65, 0x3d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x49, 0xda, 0xba, 0x52, 0x23, 0xe, 0xf6, 0x97, 0x44, 0xa5, 0xd4, 0xf4, 0x21, 0x73, 0x60, 0x80, 0xd6, 0xad, 0x1c, 0x30, 0x54, 0x65, 0xf, 0xc5, 0x68, 0x6b, 0x2a, 0x6b, 0x92, 0x99, 0x2, 0xd4}} return a, nil } @@ -5601,7 +5601,7 @@ func stakingcollectionScriptsGet_unlocked_tokens_usedCdc() (*asset, error) { return a, nil } -var _stakingcollectionSetup_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\x4d\x6f\xe3\x36\x10\xbd\xfb\x57\x4c\x72\x48\x2d\x20\x91\x7b\x36\x9c\x6c\x53\x3b\x6d\x8d\x04\xf1\x62\x6d\xec\x7d\x2c\x8d\x2c\xd6\x0c\x29\x90\x94\xdd\x20\xc8\x7f\x2f\x48\x7d\x32\x92\x12\x77\x5b\x74\x81\xe5\x21\x4a\x98\xf9\x7a\xef\x71\x38\x64\x4f\x99\x54\x06\x7e\xcb\xc5\x8e\x6d\x39\x6d\xe4\x9e\x04\x24\x4a\x3e\xc1\xb9\xb7\x77\x3e\xaa\x2c\xb9\x3c\x7a\x56\xd5\xdf\x9e\xc5\x72\xb1\xc1\x2d\xa7\xb5\xc1\x3d\x13\xbb\x96\xa9\xff\x8f\xda\xe7\x41\x46\x7b\x8a\x5d\x1c\x5d\x58\xff\xfc\xd7\xc3\x6a\x7e\x7f\xb7\xd8\xac\xee\xef\x1e\x6f\x17\x8b\x2f\x77\xeb\x75\x3b\x43\x19\x61\x2e\x39\xa7\xc8\x30\x29\x2a\xb7\xf5\xe6\xf6\x7e\xf9\xf8\xfb\x7c\xf5\xf0\x70\x37\xdf\x2c\x57\xb5\xf3\x68\x32\x99\xc0\x26\x65\x1a\x8c\x42\xa1\xb1\xf0\xd2\x64\x34\xe4\x19\xa0\x00\x8c\x22\x99\x0b\x03\x46\x42\xae\x09\x10\x74\x59\x7e\x54\x27\x71\x31\x96\x06\x8e\x8c\x73\x38\x4a\xb5\x07\x45\x3b\x54\x31\x27\xad\x41\x26\x70\x4c\xc9\xa4\xa4\xc0\xa4\xf4\x0c\x29\x1e\x6c\x14\x45\xbb\x9c\xa3\xaa\xc2\x5f\x02\x82\x39\xca\xab\x2a\x1b\x77\xd0\xc1\x14\xd8\x35\x99\x3c\xbb\x74\x69\xa4\xaa\x0b\x90\xdb\x3f\x29\x32\x1a\xb4\x91\x8a\x62\x60\xc2\x26\x80\x5c\x94\xbe\x65\xa8\xd1\xa8\x0d\xec\x65\x04\x00\x90\x29\xca\x50\xd1\x58\xb3\x9d\x20\x35\x05\xcc\x4d\x3a\xfe\x55\x2a\x25\x8f\x5f\x91\xe7\x14\xc0\xc5\x6d\xe1\x1d\xc0\xcb\xc8\xb9\xd8\x65\x51\x26\x36\x89\x22\x60\x5a\xfc\x64\x00\xb9\x22\x8c\x9f\xfb\x59\xa9\xdc\x58\x02\x45\xa2\xd0\x56\x8a\x3b\x0a\xb7\x2e\xd5\xec\xa2\x57\xb2\xb0\xb3\x73\x33\xb6\x2a\x4e\xfb\x15\xee\x9a\xaf\x8b\x2c\x9f\xd1\xa4\x01\x5c\x5f\x83\x60\xbc\x8d\xa2\x44\x32\x57\x84\x86\x20\x53\xec\x60\xbf\x11\x66\xb8\x65\x9c\x19\x46\x1a\x12\xe9\xc4\x2a\xe8\x87\x54\xf2\x98\x14\xa0\x88\x1b\x72\x0f\x98\x73\xe3\x85\xe4\x54\xa9\xf6\x47\x61\x7f\x5d\xa1\x6e\x87\xae\x29\x60\x5a\xe7\x34\xbb\x68\x1f\xf1\xd0\x7d\x0a\xef\x9b\xb1\x41\xb5\x23\x33\x85\x21\x8b\x36\xca\xb3\x4e\x25\x49\xdd\x90\x27\x95\x51\xf7\x6b\xf8\xd5\x02\x6b\xb2\x4f\x4a\xc3\x49\x1d\xd0\x19\x04\x67\x43\x7c\x22\x08\x3a\x42\xd5\xe2\xad\x46\xb4\xf4\x65\xb9\x01\x66\xec\x49\x2d\xc3\x7a\x41\x58\xe2\x11\x18\x46\x29\x45\xfb\x71\x50\x9e\xd9\xf6\x12\x74\x2c\xcf\x67\x0d\x44\xe3\x81\xc6\x1d\x43\xbb\x66\x57\x03\x07\x27\x72\x15\x77\xf6\xfb\xa3\xd8\x55\xa9\xef\x28\x98\x36\x1c\x5f\x0e\x7a\x98\x46\xaf\xa9\x07\xae\xd7\x23\xe8\x0f\x64\xe4\xb7\x1c\xfd\x4e\xa8\xc0\xdb\x79\x05\xe2\x9a\x7e\x18\x6e\x05\xe3\xdf\x9f\xd2\x4e\x4f\x7c\xce\xb7\x9c\xe9\x14\xb0\xb9\x5e\x9e\xed\x20\xb1\x77\x4b\xc1\x50\xdc\x73\x71\x86\x9d\x6e\xd6\x6f\x8b\x9a\x63\x06\xd7\x6d\xa9\x3e\x6a\xee\x13\x80\xbe\x9c\x68\xe7\x40\x45\xaf\x37\x5d\x2d\xab\x4b\xe3\x5f\x32\x1b\xf8\x3c\x0e\xa1\xcc\x0a\x72\xbb\x65\xf4\xb1\xd5\x31\xc2\xd3\xeb\x2c\x00\xf7\x94\xd9\x23\xfc\x64\x02\xc5\x70\x73\x23\x3e\x21\x45\x22\xa2\x4a\xf2\x77\x66\xa4\x55\xb9\xd9\xfe\x42\x49\x73\x6f\xff\xff\x43\xd3\x83\xf9\xe9\x13\x64\x28\x58\x34\x3e\x9f\xcb\x9c\xc7\x20\xa4\xa9\x20\x76\xf1\x34\x98\xcf\x83\xa1\x77\x83\x1d\x11\x32\x2e\xd8\x20\x55\xbe\x62\xaa\xd7\x4b\xfd\x1c\x6a\x46\xc5\x07\xcc\xbd\xff\xba\xf0\x5f\x96\xe1\xa3\x8c\xdd\xef\x76\xc0\x36\xf4\x0c\x1a\x79\x2f\x89\xb3\xea\x25\xf1\xb6\x3b\x1d\x9a\xd9\xd5\xdb\x32\xb8\xc4\x78\xf6\xcb\x7f\x5b\x84\x3f\xe8\xbd\x03\x13\x62\x1c\x5b\xa7\x95\xe3\x73\x3c\xbb\xb2\x65\x5d\xc2\x13\x46\x29\x13\x54\x76\xd0\x52\x24\xd2\x5d\x96\x43\x87\xd7\xd7\x29\x26\x4e\x3b\x34\xf2\x3b\xa8\xb4\xa8\x52\xbf\xc3\x51\x6d\x73\x9a\x4e\x0d\x9a\x7f\x28\xd6\x37\xd7\xf2\x81\x5c\xb5\x4f\xad\x59\x5d\x62\x5b\x9f\xe2\xe7\xeb\xe8\xef\x00\x00\x00\xff\xff\xe3\xee\x7e\x39\x96\x0d\x00\x00" +var _stakingcollectionSetup_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\x5d\x6f\xdb\x36\x14\x7d\xf7\xaf\xb8\xc9\x43\x26\x01\x8e\xbc\xe7\xc0\x49\x97\xd9\xd9\x66\x24\x88\x8b\xda\xe8\x9e\xaf\xa5\x2b\x8b\x33\x43\x0a\x24\x15\x2d\x28\xfa\xdf\x07\x52\x9f\x8c\xe4\xd4\xeb\x8a\x15\xa8\x1e\xa2\x98\xba\x5f\xe7\x1c\x5e\xf2\xb2\xa7\x5c\x2a\x03\xbf\x15\x62\xcf\x76\x9c\xb6\xf2\x40\x02\x52\x25\x9f\xe0\xdc\x5b\x3b\x9f\x34\x96\x5c\x96\x9e\x55\xf3\xdb\xb3\x58\x2d\xb7\xb8\xe3\xb4\x31\x78\x60\x62\xdf\x33\xf5\x3f\xb4\x3e\x0f\x32\x3e\x50\xe2\xe2\xe8\xca\xfa\xe7\xbf\x1f\xd6\x8b\xfb\xbb\xe5\x76\x7d\x7f\xf7\x78\xbb\x5c\x7e\xb8\xdb\x6c\xfa\x19\xea\x08\x0b\xc9\x39\xc5\x86\x49\xd1\xb8\x6d\xb6\xb7\xf7\xab\xc7\xdf\x17\xeb\x87\x87\xbb\xc5\x76\xb5\x6e\x9d\x27\xb3\xd9\x0c\xb6\x19\xd3\x60\x14\x0a\x8d\x95\x97\x26\xa3\xa1\xc8\x01\x05\x60\x1c\xcb\x42\x18\x30\x12\x0a\x4d\x80\xa0\xeb\xf2\xe3\x36\x89\x8b\xb1\x32\x50\x32\xce\xa1\x94\xea\x00\x8a\xf6\xa8\x12\x4e\x5a\x83\x4c\xa1\xcc\xc8\x64\xa4\xc0\x64\xf4\x02\x19\x3e\xdb\x28\x8a\xf6\x05\x47\xd5\x84\x9f\x02\x82\x29\xe5\x65\x93\x8d\x3b\xe8\x60\x2a\xec\x9a\x4c\x91\x4f\x5d\x1a\xa9\xda\x02\xe4\xee\x2f\x8a\x8d\x06\x6d\xa4\xa2\x04\x98\xb0\x09\xa0\x10\xb5\x6f\x1d\x6a\x32\xe9\x03\xfb\x34\x01\x00\xc8\x15\xe5\xa8\x28\xd0\x6c\x2f\x48\x5d\x01\x16\x26\x0b\x7e\x95\x4a\xc9\xf2\x23\xf2\x82\xa6\xb0\x31\x52\xe1\x9e\xa6\xb0\xc0\x1c\x77\x8c\x33\xc3\x48\x87\x70\x71\x5b\x05\x0d\xe1\xd3\xc4\x45\xb2\x8f\x05\x9f\xda\xdc\x8a\x80\x69\xf1\x93\x01\xe4\x8a\x30\x79\x19\x27\xab\x71\x63\x29\x54\xf9\x23\x5d\x25\x8b\x76\xae\x82\xf9\xc5\xa8\x92\xd1\x60\xe5\x26\xb0\xe2\x5e\x8d\x0b\x3f\x34\xaf\x21\xbd\x47\x93\x85\x70\x7d\x0d\x82\xf1\x3e\x8a\x1a\xc9\x42\x11\x1a\x82\x5c\xb1\x67\xfb\x8e\x7b\xf0\x21\x95\x4e\xc3\x4a\x15\xc8\x24\x4f\x48\x01\x8a\xa4\xe3\xfc\x19\x0b\x6e\xbc\x90\x9c\x1a\x31\xff\xa8\xec\xaf\x1b\xd4\xfd\xd0\x2d\x05\x4c\xeb\x82\xe6\x4e\x0f\xaf\xd3\xa2\x3f\x99\xc9\x12\x85\xa5\xed\x93\xa9\xd7\x19\x91\x7b\xad\x73\x52\x68\x61\x5a\x95\x86\x9f\xab\xe4\x37\xc1\xb1\x2f\x7d\x72\xce\x06\x00\xd2\xb6\xbd\xbf\x41\xf5\x21\x5c\xb4\xc7\x43\xf4\xd1\x12\x76\x13\xcc\xea\x08\xb3\x36\x93\xfb\x10\x9e\x1d\xd3\x07\x41\x50\x09\xcd\x49\xd2\xeb\x77\x2b\x47\x5e\x18\x60\xc6\x36\x44\x1d\xd6\x0b\xc2\x52\x4f\x90\x28\xce\x28\x3e\x04\x61\xdd\x1a\xfd\xe7\xd5\xf6\xd4\xf8\x4c\xc1\xc0\xc8\x3e\xf3\xcb\x23\x9b\x30\x76\xd5\x0e\xd6\xc7\xa3\xd8\xa7\xd9\x49\x0e\xfe\x55\x47\xfc\xf4\xa8\x87\xe9\x44\xbc\xf2\x80\x8d\x7a\x84\xe3\x81\x8c\xfc\x9a\x36\x1a\x84\x0a\xbd\x95\xcf\x40\x5c\xd3\x0f\xc1\xab\x60\xfc\xfb\xd3\x39\xe8\x85\xf7\xc5\x8e\x33\x9d\x01\x76\xc7\xd4\x8b\xbd\xa7\xec\x19\x55\x31\x94\x8c\x1c\xc0\xd1\xa0\xbd\xf5\xeb\xa2\x16\x98\x9f\xd4\xe9\xa7\x9f\xd4\x03\x6c\xff\x91\x9e\xd0\x27\x63\xac\xd4\xbc\x62\x67\x98\x7a\x0c\xee\x50\x47\x34\x27\x6b\xe8\x74\x88\x47\x6a\x1c\x91\x6e\x36\x83\xea\x9a\x73\x33\x40\x4a\x8a\x44\x4c\x8d\x68\x6f\xdc\x96\x56\xa7\x6e\xf9\x03\xa5\x9d\x40\xff\xff\xf5\xe9\xc1\x7c\xf7\x0e\x72\x14\x2c\x0e\xce\x17\xb2\xe0\x09\x08\x69\x1a\x88\x43\x3c\x1d\xe6\xf3\xf0\xd8\x04\x61\x0f\x77\x99\x54\x6c\x90\xaa\xc7\x9c\x66\xbc\x69\xe7\xa5\xee\x90\xff\x02\x73\x6f\xcf\x19\xfe\xe8\x19\x3d\xca\xc4\xfd\x6f\xef\xca\x8e\x9e\xa3\x46\xde\x4c\x71\xd6\xcc\x14\xaf\xfb\xcb\xa1\x99\x5f\xbe\x2e\x83\x4b\x4c\xe6\xbf\x7c\xdb\x22\xfc\xbb\xdb\xdb\x30\x11\x26\x89\x75\x5a\x3b\x3e\x83\xf9\xa5\x2d\x6b\x0a\x4f\x18\x67\x4c\x50\x3d\xd8\xad\x44\x2a\xdd\x71\x77\x6c\xf3\xfa\x3a\x25\xc4\x69\x8f\x46\x7e\x07\x95\x96\x4d\xea\x37\x38\x6a\x6d\x4e\xd3\xa9\x43\xf3\x2f\xc5\xfa\xea\x5a\xbe\x20\x57\xeb\xd3\x6a\xd6\x96\xd8\xd7\xa7\xfa\xfb\x79\xf2\x4f\x00\x00\x00\xff\xff\x54\xdc\x7e\x4c\xb7\x0d\x00\x00" func stakingcollectionSetup_staking_collectionCdcBytes() ([]byte, error) { return bindataRead( @@ -5617,11 +5617,11 @@ func stakingcollectionSetup_staking_collectionCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/setup_staking_collection.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd2, 0x95, 0x85, 0xac, 0x9, 0x9f, 0x4e, 0x20, 0xba, 0x1d, 0x60, 0x6a, 0x2a, 0xd2, 0xbf, 0x1e, 0xd, 0x80, 0x53, 0x48, 0xbe, 0xb6, 0xea, 0x70, 0xe2, 0x92, 0x89, 0x7b, 0x74, 0xfe, 0x18, 0x8c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x78, 0x7b, 0xdf, 0xf1, 0x5d, 0x48, 0x17, 0x24, 0xa3, 0x5f, 0xba, 0x81, 0x8, 0xdf, 0x31, 0x1, 0x8, 0x9f, 0x56, 0x70, 0xa5, 0xb, 0xd1, 0xa4, 0x42, 0x7, 0xfb, 0x9c, 0xc3, 0xcb, 0x8b, 0x5e}} return a, nil } -var _stakingcollectionStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6f\xda\x40\x10\xc5\xef\xfe\x14\x4f\x39\x44\x20\x21\xa8\xda\xaa\x07\xd4\x16\x51\x93\x54\xa8\x11\xa9\x62\xd2\xfb\xc6\x9e\x85\x15\xeb\x1d\x6b\x77\x5c\x53\x55\xf9\xee\x95\x77\x0b\x44\x81\x43\xf6\xe0\x95\xc7\xe3\xdf\x7b\xf3\xc7\xd4\x0d\x7b\xc1\xad\xe5\xae\x10\xb5\x33\x6e\x93\xb3\xb5\x54\x8a\x61\x07\xed\xb9\xc6\xbb\x7d\xb1\x9e\xff\x58\xae\xbe\xe7\xf7\x77\x77\x37\xf9\x7a\x79\xbf\x9a\x2f\x16\x0f\x37\x45\x91\x65\x93\xc9\x04\x39\xd7\xb5\x91\x00\x47\x1d\x84\x77\xe4\x02\x84\x11\x44\xed\x08\x9a\x3d\x64\x4b\x08\x0d\x95\x46\x1b\xaa\xe0\xb8\x22\xb0\x47\x45\x96\x36\x4a\xd8\xc3\xb8\x94\x92\xd4\x51\x1e\xe5\x23\x7d\xbd\xa5\x03\x35\xba\xe9\x53\x2d\x97\x3b\xaa\xf0\x5b\xb5\x56\xa0\x3c\xa1\x0d\x54\x41\x1b\x1f\x64\x04\xa3\x61\x04\xb4\x37\x41\x42\x24\x68\xb6\x96\x3b\xaa\xf0\xf4\x27\xfe\xfd\x9a\xd6\xba\x97\xbc\x2c\x13\xaf\x5c\x50\xd1\xc1\xa0\x77\xbb\x5c\x4c\x51\x88\x37\x6e\x33\x3a\xb9\xee\x83\x8f\x4b\x27\x1f\xde\xcf\x46\x50\x35\xb7\x4e\xa6\x78\xbc\x35\xfb\x4f\x1f\x87\xf8\x9b\x01\x40\x7c\x58\x92\x43\x65\xa7\xbe\x3e\x90\x9e\xe2\xfa\x62\xcb\xc7\x67\x91\x2c\x72\x1a\x4f\x8d\xf2\x34\x50\x65\x99\xb4\x54\x2b\xdb\xc1\x37\xf6\x9e\xbb\x5f\xca\xb6\x34\xc4\xf5\x3c\x7d\x3b\xe8\xf7\x27\x90\xd5\xe3\x4b\xfa\xf8\x82\xff\xa8\x71\x10\xf6\x6a\x43\xe3\xa7\x08\xfb\xfc\x56\x5f\x5f\x07\x7d\x07\xa7\x97\x37\xe7\x3c\xbd\x48\x2a\x3f\x95\x6c\x87\x47\x7b\xfd\x99\xcd\xd0\x28\x67\xca\xc1\x55\xce\xad\xed\x17\x44\x90\xac\xc0\x93\xee\x57\xe9\x8c\x75\x95\x08\xcf\xa9\x35\xb4\xa7\xb2\x15\x7a\x4b\xd5\x31\x48\x2b\xea\xd6\x71\x07\x8e\xe3\x4d\xf7\xab\xf1\xbe\x78\x39\x8d\x38\xdd\x07\xfd\xe7\xec\x5f\x00\x00\x00\xff\xff\x50\xd1\x10\x19\x3f\x03\x00\x00" +var _stakingcollectionStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x8f\xda\x30\x10\x85\xef\xf9\x15\x4f\x7b\x58\x05\x09\x41\xd5\x56\x3d\xa0\xb6\x88\x86\xdd\x0a\x75\x05\xd5\x86\xed\xdd\x9b\x4c\xc0\xc2\xf1\x44\xf6\xa4\xa1\xaa\xf6\xbf\x57\xb1\x0b\xac\x80\x43\x2f\xf5\x21\x4e\x9c\xc9\x7b\xdf\x4c\x9e\xae\x1b\x76\x82\x7b\xc3\x5d\x2e\x6a\xa7\xed\x26\x63\x63\xa8\x10\xcd\x16\x95\xe3\x1a\x6f\xf6\xf9\x7a\xf6\x6d\xb1\xfc\x9a\xad\x1e\x1e\xee\xb2\xf5\x62\xb5\x9c\xcd\xe7\x8f\x77\x79\x9e\x24\xe3\xf1\x18\x19\xd7\xb5\x16\x0f\x4b\x1d\x84\x77\x64\x3d\x84\xe1\x45\xed\x08\x15\x3b\xc8\x96\xe0\x1b\x2a\x74\xa5\xa9\x84\xe5\x92\xc0\x0e\x25\x19\xda\x28\x61\x07\x6d\x63\x49\x74\x47\x71\xb4\x0f\xea\xeb\x2d\x1d\x54\x03\x4d\x5f\x6a\xb8\xd8\x51\x89\x9f\xaa\x35\x02\xe5\x08\xad\xa7\x12\x95\x76\x5e\x86\xd0\x15\xb4\x80\xf6\xda\x8b\x0f\x0a\x15\x1b\xc3\x1d\x95\x78\xfe\x15\xbe\x3e\x57\x6b\xed\x6b\xbd\x24\x11\xa7\xac\x57\x81\x20\xed\x69\x17\xf3\x09\x72\x71\xda\x6e\x86\x27\xea\xfe\xf0\x69\x61\xe5\xdd\xdb\xe9\x10\xaa\xe6\xd6\xca\x04\x4f\xf7\x7a\xff\xe1\xfd\x00\xbf\x13\x00\x08\x17\x43\x72\xe8\xec\x34\xd7\x47\xaa\x26\x50\xad\x6c\xd3\xab\x63\x1f\x9d\x6e\x57\x9d\x25\x37\xc0\xed\xf5\xba\x8b\x93\x24\x78\x36\x8e\x1a\xe5\x28\x55\x45\x11\xb9\x82\xd5\x17\x76\x8e\xbb\x1f\xca\xb4\x34\xc0\xed\x2c\xbe\x3b\xb0\xf6\xcb\x93\xa9\x46\xd7\x58\xf1\x09\x7f\xa5\x46\x5e\xd8\xa9\x0d\x8d\x9e\x83\xd8\xc7\xff\xd1\xc3\xe7\xb4\xff\x33\x93\xeb\x89\xbc\x2c\xcf\x23\xd1\x77\x25\xdb\xc1\xb1\x95\x7e\x4d\xa7\x68\x94\xd5\x45\x7a\x93\x71\x6b\xfa\xe0\x09\x22\x36\x1c\x55\x7d\x44\x2f\xb4\x6e\xa2\xc2\x4b\x1c\x23\xed\xa9\x68\x85\xfe\x65\x42\xe1\x90\x96\xd4\xad\x43\xb6\x8e\xb1\x89\xfb\x59\x6c\x5e\x3d\x9c\xa2\x13\xf7\x83\xff\x4b\xf2\x27\x00\x00\xff\xff\x52\x0e\xe2\xe3\x97\x03\x00\x00" func stakingcollectionStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5637,11 +5637,11 @@ func stakingcollectionStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe0, 0xe, 0xa5, 0xea, 0x71, 0x59, 0x27, 0x84, 0xc6, 0x22, 0xd3, 0xf8, 0xe3, 0x61, 0x7f, 0xdb, 0x1e, 0xad, 0x8a, 0x92, 0xb8, 0x59, 0xe8, 0xd, 0xb7, 0x52, 0x4d, 0x40, 0x37, 0xa, 0x4f, 0xfe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x49, 0x73, 0x12, 0xbb, 0x22, 0xc5, 0xa3, 0xfb, 0xfe, 0xd0, 0xca, 0x7a, 0x7b, 0x76, 0xfe, 0xb6, 0x51, 0x59, 0x97, 0x32, 0x9d, 0xd5, 0xff, 0xd5, 0xe, 0xf2, 0x4d, 0xb2, 0x8c, 0x6b, 0x57, 0x64}} return a, nil } -var _stakingcollectionStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\x5d\xab\xda\x40\x10\x7d\xcf\xaf\x38\xdc\x87\x4b\x84\x4b\x2c\x6d\xe9\x43\x68\x2b\x36\xde\x5b\x42\x45\x8b\xd1\xbe\x6f\x93\x49\x5c\xdc\xec\x84\xcd\x04\x85\xe2\x7f\x2f\xc9\xfa\x51\xaa\x0f\xee\x43\x96\x99\xcc\x9e\x73\x66\xce\xe8\xba\x61\x27\x78\x33\xbc\xcf\x44\xed\xb4\xad\x12\x36\x86\x72\xd1\x6c\x51\x3a\xae\xf1\xee\x90\xad\xa7\x3f\xd2\xc5\xf7\x64\x39\x9f\xbf\x26\xeb\x74\xb9\x98\xce\x66\xab\xd7\x2c\x0b\x82\xf1\x78\x8c\x84\xeb\x5a\x4b\x0b\x47\x7b\xe5\x0a\x2a\x20\xbc\x23\xdb\x42\x18\xad\xa8\x1d\xa1\x64\x07\xd9\x12\xda\x86\x72\x5d\x6a\x2a\x60\xb9\x20\xb0\x43\x41\x86\x2a\x25\xec\xa0\xad\x2f\xf1\x12\x90\x5f\x34\x04\x81\x38\x65\x5b\x35\x04\x61\xff\x30\x9d\xc5\xc8\xc4\x69\x5b\xbd\x5c\x01\xfa\xe4\x26\xb5\xf2\xe1\xfd\xe4\x05\xaa\xe6\xce\x4a\x8c\xcd\x9b\x3e\x7c\xfa\x38\xc2\x9f\x00\x00\x86\x8f\x21\x39\x93\x5c\xfb\x5c\x51\x19\xe3\xf9\xee\x08\xa2\x9b\x4c\x30\xe0\x34\x8e\x1a\xe5\x28\x54\x79\xee\xb9\x54\x27\xdb\xf0\x1b\x3b\xc7\xfb\x5f\xca\x74\x34\xc2\xf3\xd4\xff\x3b\xf3\xf7\xa7\x25\x53\x46\xf7\xf8\xf1\x05\x27\xa8\xa8\x15\x76\xaa\xa2\xe8\xf7\x00\xf6\xf9\x51\x5d\x5f\xc3\xde\xad\xf8\xbe\x93\xb7\xe5\x99\x67\xf9\xa9\x64\x3b\xba\xc8\xeb\xcf\x64\x82\x46\x59\x9d\x87\x4f\x09\x77\xa6\xf7\x4a\xe0\xa5\xc0\x51\xd9\xbb\x7a\x83\xf5\xe4\x11\x8e\x7e\x34\x74\xa0\xbc\x13\x7a\xa4\xeb\x21\x49\xab\xd3\xe2\xac\x87\xbd\xb9\x78\xec\xef\xff\x3c\xfe\x27\xb8\xfa\xec\xef\xb3\x88\x63\xf0\x37\x00\x00\xff\xff\x84\xab\xee\x33\xd4\x02\x00\x00" +var _stakingcollectionStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x8f\x1c\x82\x0c\xc1\x2e\x6d\xe9\xc1\xb4\x35\xae\x9c\x14\xd3\x10\x17\xcb\xe9\x7d\x2b\x8d\xec\xc5\xab\x1d\x31\x1a\x21\x43\xc9\x7f\x2f\xd2\xc6\x56\xa9\x75\xe8\xa5\x7b\xd0\x6a\x46\xa3\x37\x6f\x86\xcf\x96\x15\x8b\xe2\xc1\x71\x9b\xaa\x39\x5a\xbf\x4f\xd8\x39\xca\xd4\xb2\x47\x21\x5c\xe2\xcd\x29\xdd\x2d\xbf\xad\x9f\xbe\x26\x9b\xc7\xc7\xfb\x64\xb7\xde\x3c\x2d\x57\xab\xed\x7d\x9a\x46\xd1\x6c\x36\x43\xc2\x65\x69\xb5\x86\x50\x6b\x24\xa7\x1c\xca\x47\xf2\x35\x94\x51\xab\x39\x12\x0a\x16\xe8\x81\x50\x57\x94\xd9\xc2\x52\x0e\xcf\x39\x81\x05\x39\x39\xda\x1b\x65\x81\xf5\xa1\x24\x58\x40\x76\xf1\x10\x45\x2a\xc6\xd7\xa6\x0f\xe2\xee\xc7\xf5\x6a\x8e\x54\xc5\xfa\xfd\xdd\x20\xd0\x25\x9f\xd7\x5e\xdf\xbd\x5d\xdc\xc1\x94\xdc\x78\x9d\xe3\xf9\xc1\x9e\x3e\xbc\x9f\xe0\x57\x04\x00\xfd\xc3\x91\x9e\x9b\x0c\x73\x6e\xa9\x98\xc3\x34\x7a\x88\x47\xd7\x30\x1d\x5e\x37\xad\x27\x99\xe0\x76\xbc\xee\x2a\x13\xf5\x3d\x2b\xa1\xca\x08\xc5\x26\xcb\x82\xaf\xbe\xd5\x17\x16\xe1\xf6\x87\x71\x0d\x4d\x70\xbb\x0c\xdf\xce\x5e\xbb\x53\x93\x2b\xa6\x63\x5e\xf1\x09\xaf\x52\xd3\x5a\x59\xcc\x9e\xa6\x3f\x7b\xb1\x8f\xff\x63\x86\xcf\x71\x47\xc1\x7c\x9c\x90\xeb\xf2\x34\x38\xfa\x6e\xf4\x30\xb9\x8c\xd2\x9d\xc5\x02\x95\xf1\x36\x8b\x6f\x12\x6e\x5c\xc7\x80\x22\xd8\x86\x50\xd1\xd1\x72\xa5\x75\x13\x14\x5e\xc2\x1a\xe9\x44\x59\xa3\xf4\x2f\x1b\xea\x93\xb4\x7d\x05\x72\xd7\xf3\x78\x61\x27\xdc\x7f\xb1\xf3\x47\x30\xf0\x13\xee\xb3\x89\x97\xe8\x77\x00\x00\x00\xff\xff\xdc\xc4\x11\xcd\x2c\x03\x00\x00" func stakingcollectionStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5657,11 +5657,11 @@ func stakingcollectionStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x4a, 0xab, 0xd7, 0x77, 0x3e, 0x68, 0x59, 0x49, 0xf9, 0x66, 0xa6, 0xf0, 0xe1, 0xb6, 0x2d, 0x6f, 0x75, 0xae, 0xd4, 0x77, 0xa4, 0xf5, 0xe2, 0x8, 0xe3, 0x68, 0xf1, 0xef, 0xcf, 0x7e, 0x8d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x77, 0x1b, 0xc9, 0x51, 0x7f, 0x17, 0x9, 0x53, 0x96, 0x9, 0x1d, 0x6f, 0x48, 0x5a, 0x8f, 0xcc, 0x8f, 0x4d, 0x96, 0x7a, 0xeb, 0x22, 0xa1, 0x5d, 0xe1, 0x26, 0xe8, 0x3c, 0xd, 0x55, 0xbc, 0x39}} return a, nil } -var _stakingcollectionStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\x4d\xab\xdb\x30\x10\xbc\xfb\x57\x0c\xef\xf0\x70\xe0\xe1\x94\xb6\xf4\x60\xda\x86\xd4\x79\xaf\x98\x86\xa4\xc4\x49\xef\xaa\xbd\x76\x44\x64\xad\x91\xd7\x24\x50\xf2\xdf\x8b\xad\x7c\x94\x26\x87\xe8\x60\xa1\xb1\x34\x33\xbb\xb3\xba\x6e\xd8\x09\xde\x0c\xef\x33\x51\x3b\x6d\xab\x84\x8d\xa1\x5c\x34\x5b\x94\x8e\x6b\xbc\x3b\x64\xeb\xe9\x8f\x74\xf1\x3d\x59\xce\xe7\xaf\xc9\x3a\x5d\x2e\xa6\xb3\xd9\xea\x35\xcb\x82\x60\x3c\x1e\x23\xe1\xba\xd6\xd2\xa2\xb3\xad\xa8\x1d\x15\x10\xde\x91\x6d\x21\x8c\x01\x40\xc9\x0e\xb2\x25\xb4\x0d\xe5\xba\xd4\x54\xc0\x72\x41\x60\x87\x82\x0c\x55\x4a\xd8\x41\x5b\x7f\xc5\x5b\x40\x7e\xf1\x10\x04\xe2\x94\x6d\xd5\x70\x08\xfb\x87\xe9\x2c\x46\x26\x4e\xdb\xea\xe5\x4a\xd0\x83\x9b\xd4\xca\x87\xf7\x93\x17\xa8\x9a\x3b\x2b\x31\x36\x6f\xfa\xf0\xe9\xe3\x08\x7f\x02\x00\x18\x3e\x86\xe4\x2c\x72\xad\x73\x45\x65\x8c\xe7\xbb\x2d\x88\x6e\x90\x60\xe0\x69\x1c\x35\xca\x51\xa8\xf2\xdc\x6b\xa9\x4e\xb6\xe1\x37\x76\x8e\xf7\xbf\x94\xe9\x68\x84\xe7\xa9\xff\x77\xd6\xef\x57\x4b\xa6\x8c\xee\xe9\xe3\x0b\x4e\x54\x51\x2b\xec\x54\x45\xd1\xef\x81\xec\xf3\xa3\xbe\xbe\x86\x7d\x5a\xf1\xfd\x24\x6f\xaf\x67\x5e\xe5\xa7\x92\xed\xe8\x62\xaf\x5f\x93\x09\x1a\x65\x75\x1e\x3e\x25\xdc\x99\x3e\x2b\x81\xb7\x02\x47\x65\x9f\xea\x0d\xd7\x93\x67\x38\xfa\xd6\xd0\x81\xf2\x4e\xe8\x91\xaa\x07\x90\x36\xa7\xc1\x59\x0f\x73\x73\xc9\xd8\xef\xff\x65\xfc\xcf\xe1\x9a\xb3\xdf\xcf\x26\x8e\xc1\xdf\x00\x00\x00\xff\xff\x0a\x6a\x2f\x6d\xd4\x02\x00\x00" +var _stakingcollectionStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x8f\x1c\x82\x0c\xc1\x2e\x6d\xe9\x41\xb4\x35\xae\x9c\x14\xd1\x10\x97\xc8\xee\x7d\x2b\x8d\xe4\xc5\xab\x1d\xb1\x1a\x61\x43\xc9\x7f\x2f\xda\x8d\xad\x52\xeb\xd0\x4b\xf7\xa0\xd5\x8c\x46\x6f\xde\x0c\x9f\x6e\x5a\x76\x82\x07\xc3\xc7\x5c\xd4\x41\xdb\x3a\x65\x63\xa8\x10\xcd\x16\x95\xe3\x06\x6f\x4e\xf9\x76\xf5\x2d\x7b\xfa\x9a\x6e\x1e\x1f\xef\xd3\x6d\xb6\x79\x5a\xad\xd7\xcf\xf7\x79\x1e\x45\x8b\xc5\x02\x29\x37\x8d\x96\x0e\xbd\xed\x44\x1d\xa8\x84\xf0\x81\x6c\x07\x61\xf8\x04\x2a\x76\x90\x3d\xa1\x6b\xa9\xd0\x95\xa6\x12\x96\x4b\x02\x3b\x94\x64\xa8\x56\xc2\x0e\xda\x86\x92\x60\x01\xc5\xc5\x43\x14\x89\x53\xb6\x53\x3e\x88\x87\x1f\xb3\x75\x82\x5c\x9c\xb6\xf5\xdd\x28\x30\x24\x77\x99\x95\x77\x6f\x97\x77\x50\x0d\xf7\x56\x12\xec\x1e\xf4\xe9\xc3\xfb\x19\x7e\x45\x00\xe0\x1f\x86\xe4\xdc\x64\x9c\xf3\x99\xaa\x04\xaa\x97\x7d\x3c\xb9\x86\xf9\xf8\xba\x39\x5a\x72\x33\xdc\x4e\xd7\x5d\x65\x22\xdf\xb3\x75\xd4\x2a\x47\xb1\x2a\x8a\xe0\xcb\xb7\xfa\xc2\xce\xf1\xf1\x87\x32\x3d\xcd\x70\xbb\x0a\xdf\xce\x5e\x87\xd3\x91\xa9\xe6\x53\x5e\xf1\x09\xaf\x52\xf3\x4e\xd8\xa9\x9a\xe6\x3f\xbd\xd8\xc7\xff\x31\xc3\xe7\x78\xa0\x20\x99\x26\xe4\xba\x3c\x0f\x8e\xbe\x2b\xd9\xcf\x2e\xa3\x0c\x67\xb9\x44\xab\xac\x2e\xe2\x9b\x94\x7b\x33\x30\x20\x08\xb6\xe1\xa8\x1a\x68\xb9\xd2\xba\x09\x0a\x2f\x61\x8d\x74\xa2\xa2\x17\xfa\x97\x0d\xf9\x24\xed\x5e\x81\xdc\x7a\x1e\x2f\xec\x84\xfb\x2f\x76\xfe\x08\x46\x7e\xc2\x7d\x36\xf1\x12\xfd\x0e\x00\x00\xff\xff\x00\x16\xf4\x72\x2c\x03\x00\x00" func stakingcollectionStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5677,7 +5677,7 @@ func stakingcollectionStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xc6, 0xe7, 0x7d, 0xaa, 0x7f, 0x55, 0xa2, 0x38, 0x5d, 0x28, 0x71, 0xa6, 0x68, 0xd5, 0x12, 0x81, 0xab, 0x11, 0xb4, 0x27, 0x8c, 0x2f, 0xaa, 0x71, 0xe1, 0x4, 0xad, 0x25, 0xf3, 0x7a, 0xb6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1d, 0xf8, 0xe5, 0x90, 0xc6, 0x1e, 0x76, 0xdb, 0x7b, 0xfd, 0x8d, 0x5f, 0xb5, 0x14, 0x4b, 0xf6, 0x4c, 0x38, 0xe2, 0x59, 0x68, 0x96, 0x7b, 0x89, 0x30, 0xdd, 0x4b, 0x22, 0x37, 0x7e, 0x3c, 0x2c}} return a, nil } @@ -5721,7 +5721,7 @@ func stakingcollectionTestGet_tokensCdc() (*asset, error) { return a, nil } -var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x4d\x4f\xdb\x40\x10\xbd\xe7\x57\x0c\x1c\x90\x23\x81\xa9\xda\x5b\xc4\x87\xd2\x84\xd2\xa8\x08\x10\xa1\xbd\x4f\xbc\xe3\x78\x5b\x67\xc7\xda\x1d\x07\x28\xe2\xbf\x57\x5e\x7f\x10\x63\xb7\x4d\x24\x7c\xb1\xec\x9d\x7d\x33\xf3\xde\x9b\x5d\xbd\xca\xd8\x0a\x7c\x49\xf9\x61\x2e\xf8\x4b\x9b\xe5\x84\xd3\x94\x22\xd1\x6c\x20\xb6\xbc\x82\x0f\x8f\xf3\xfb\xf1\xb7\xd9\xf5\xe5\xe4\xe6\xea\xea\x62\x72\x3f\xbb\xb9\x1e\x4f\xa7\x77\x17\xf3\xf9\x60\x70\x7c\x0c\xf7\x16\x8d\x8b\xc9\x3a\x40\xb8\x66\x45\x53\x4a\x69\x89\xc2\x16\x78\xf1\x93\x22\x29\x41\xd0\x00\xe6\x92\xb0\xd5\xbf\x7d\x68\x14\x31\xe7\x46\x0a\x00\x34\x0a\x50\x29\x07\x92\xd0\x1b\x04\x61\x40\xc3\x92\x90\xf5\x3b\x72\x23\x0e\xaa\x2a\xe1\xb5\xcc\x02\x44\x2b\x32\xa2\x63\x4d\x0a\x16\x4f\x1e\x49\x18\xc6\x4a\x59\x72\x2e\x1c\x0c\xa4\x28\x12\x7d\x74\x60\x58\xd1\x6c\x3a\x82\xb9\x58\x6d\x96\x87\xa0\xea\x74\xc5\xcf\xef\x33\x23\x9f\x3e\x1e\x82\xf0\xa8\xde\x3e\x84\xe7\x01\x00\x40\x4a\x65\x2f\x1d\x9a\xee\x28\x1e\xc1\x41\x2f\x83\x61\xe7\x4f\x03\x25\xdc\x59\x9b\x60\xb6\x3d\xd0\xf3\x96\x71\xb7\xf9\x22\xd5\xd1\xcb\xc0\x27\xce\x2c\x65\x68\x29\xa8\xd8\x1c\x79\x51\x82\xcf\x6c\x2d\x3f\xfc\xc0\x34\xa7\x21\x1c\x8c\xcb\xb5\xba\xed\xe2\x29\x64\x4e\xa8\xd6\xa0\xa0\x56\x2a\xd5\x7b\x44\xab\x64\x17\x86\x55\xee\x04\x12\x5c\x13\x20\xac\x31\xd5\xaa\x47\x3c\xd0\x06\xd8\x2a\xf2\x62\x5b\x8a\x48\xaf\xa9\x0b\x1a\x36\xa5\xe8\x18\x82\xbd\xfe\xd6\x15\x93\xab\x8a\xff\x8a\x6b\xea\x04\x04\x58\x0a\x3a\x02\xe1\xe1\x66\x7b\x9e\x19\x34\x3a\x0a\xf6\xa7\xe4\x44\x1b\xf4\x95\xd5\xed\x6e\xb6\xd1\xd3\x80\x23\x81\x3c\x0b\xf7\x87\x0d\x5e\x45\x76\xc5\xdc\x25\x09\x20\x58\x8a\xc9\x92\x89\xbc\x31\x8b\xfe\x36\xc7\xa1\xdf\x25\xc5\xe3\x28\x8d\xc3\xbf\xb9\x0e\x4e\xeb\x1a\x43\x27\x6c\x71\x49\xe1\xc2\x4b\x79\xb2\xad\x89\xce\x82\x02\x7b\xd4\x3f\xfe\xdd\xf0\x79\x99\xe5\x16\x25\x19\xb6\xd8\x3b\x3f\xaf\x09\x9c\x70\x9e\x2a\x30\x2c\x50\x96\x52\x34\x5e\xb4\xdc\xc1\xda\x1f\x76\x58\x2a\x68\x29\xed\x5a\xc9\x08\x1c\x97\x5c\x6d\x65\x3c\xe1\x10\x1a\xc8\x72\xc4\x6a\x9c\x53\x58\x92\x54\x1f\x81\x70\x3b\x75\x69\x7f\x40\x88\x30\xc3\x85\x4e\xb5\x3c\xd5\x22\x65\xbe\x1a\x58\x91\x24\xac\x1c\xe0\x1a\x75\x8a\x8b\x94\x80\x8d\x5f\xaf\x0c\xdb\x27\x61\xd8\xd6\xb0\x7f\xdc\xe1\xf4\xb5\xc8\xb0\x49\xaf\xc9\xb5\xd8\xdd\x55\xd5\x1d\x8f\x86\xb3\x60\xa7\xf8\xf7\x52\x7f\x63\x52\xe8\x91\xa2\x5c\xa8\x7d\xe2\xdc\xd1\x8a\xfb\xce\x82\xf2\x42\xf9\xef\x08\x85\x2d\x2b\x98\x16\xc2\xc9\xd1\xbf\x07\x2b\xb4\x3e\x77\xb3\xa1\xb9\x33\xca\xf7\x9b\x3b\x63\xe3\xa3\x6d\xac\x29\x65\xec\xb4\xf4\x5f\x6c\xef\x61\x9f\x10\x95\x6a\x40\x6f\xfc\xb9\x1b\x9c\x1c\xb5\x9b\xdd\xab\x99\x7e\xf9\x13\x00\x00\xff\xff\xf7\x72\x3a\xe6\xeb\x07\x00\x00" +var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x4f\x4f\xdb\x4e\x10\xbd\xe7\x53\x0c\x1c\x90\x2d\x81\xf9\xe9\xd7\x5b\x04\x45\x69\x42\x69\x54\x44\x10\xa1\xbd\x4f\xbc\xe3\x78\x5b\x67\xc7\xda\x1d\x07\x68\xc5\x77\xaf\xbc\xfe\x43\x8c\xdd\x36\x07\xea\x4b\x62\xef\xec\x9b\x37\xef\xcd\xec\xea\x4d\xce\x56\xe0\x63\xc6\x0f\x4b\xc1\xef\xda\xac\xa7\x9c\x65\x14\x8b\x66\x03\x89\xe5\x0d\xfc\xf7\xb8\xbc\x9f\x7c\x9e\xdf\x5c\x4d\x17\xd7\xd7\x97\xd3\xfb\xf9\xe2\x66\x32\x9b\xdd\x5d\x2e\x97\xa3\xd1\xe9\x29\xdc\x5b\x34\x2e\x21\xeb\x00\xe1\x86\x15\xcd\x28\xa3\x35\x0a\x5b\xe0\xd5\x37\x8a\xa5\x02\x41\x03\x58\x48\xca\x56\xff\xf0\xa1\x71\xcc\x5c\x18\x29\x01\xd0\x28\x40\xa5\x1c\x48\x4a\xaf\x10\x84\x01\x0d\x4b\x4a\xd6\xef\x28\x8c\x38\xa8\x59\xc2\x0b\xcd\x12\x44\x2b\x32\xa2\x13\x4d\x0a\x56\x4f\x1e\x49\x18\x26\x4a\x59\x72\x2e\x1a\x8d\xa4\x24\x89\x3e\x3a\x30\xac\x68\x3e\x1b\xc3\x52\xac\x36\xeb\x63\x50\x4d\xba\xf2\xe3\x97\xb9\x91\x77\xff\x1f\x83\xf0\xb8\xd9\x1e\xc2\xcf\x11\x00\x40\x46\x55\x2d\x3d\x99\xee\x28\x19\xfb\xea\x82\x41\x15\xa3\x97\xbf\x8b\x07\x43\x36\x84\xa3\xe1\xb8\xde\x97\x36\xad\x70\x6f\x6d\x8a\xf9\x78\x7f\x20\x8f\x94\x5b\xca\xd1\x52\x50\x4b\x59\x73\xfe\xc0\xd6\xf2\xc3\x57\xcc\x0a\x0a\xe1\x68\x52\xad\x35\x35\x97\x4f\xe9\x71\x4a\x8d\x01\xa5\xae\x52\x5b\x3e\xe0\x58\xed\xb9\x30\x6c\x0a\x27\x90\xe2\x96\x00\x61\x8b\x99\x56\x03\xce\x81\x36\xc0\x56\x91\x77\xda\x52\x4c\x7a\x4b\x7d\xd0\xa8\xa5\xa2\x13\x08\x0e\x86\x6b\x56\x4c\xae\x26\xff\x09\xb7\xd4\x0b\x08\xb0\x72\x73\x0c\xc2\xe1\x6e\x79\x5e\x19\x34\x3a\x0e\x0e\x67\xe4\x44\x1b\xf4\xcc\x9a\x72\x77\xcb\x18\x28\xc0\x91\x40\x91\x47\x87\x61\x8b\xf7\x3c\xda\x55\xee\x8a\x04\x10\x2c\x25\x64\xc9\xc4\xbe\x2b\xcb\xfa\x76\x67\x61\xd8\xf6\xf2\x71\x94\x25\xd1\xef\x5a\x0e\xce\x1b\x8e\x91\x13\xb6\xb8\xa6\x68\xe5\xad\x3c\xfb\x17\xad\xf8\x3e\x28\x79\x8c\x87\xcf\x89\x7e\xf8\xb2\x62\x74\x8b\x92\x86\x1d\xa5\x2f\x2e\x1a\xb1\xa7\x5c\x64\x0a\x0c\x0b\x54\xb4\x4b\x91\x4a\x79\x7a\x58\x87\x61\x4f\xd1\x52\xc2\xdb\x62\x95\xe9\xb8\xb6\x1c\x38\xa9\x74\xdd\xab\x49\x85\x23\x68\x21\xab\xf9\x6a\x70\xce\x61\x4d\x52\xbf\x04\xc2\xdd\xd4\xd5\xa8\x00\x42\x8c\x39\xae\x74\xa6\xe5\xa9\x31\x34\xf7\x6c\x60\x43\x92\xb2\x72\x80\x5b\xd4\x19\xae\x32\x02\x36\x7e\xbd\x6e\xee\x21\xbb\xa3\xae\xdf\xc3\xb3\x0e\xe7\x2f\x24\xa3\x36\xbd\x26\xd7\x51\xb7\xe9\x80\xfd\x5d\xdd\x33\xb0\x12\xfb\xad\xec\xdc\x19\x13\x7a\xa4\xb8\x10\xea\x1e\x37\x77\xb4\xe1\xa1\x83\xa0\xba\x4a\xfe\x3a\x3f\x51\xc7\x5b\xd3\x41\x38\x3b\xf9\xf3\x54\x45\xd6\xe7\x6e\x37\xb4\xb7\x45\xf5\xfb\xea\xb6\xd8\x79\xe9\x76\xca\x8c\x72\x76\x5a\x86\xaf\xb4\xb7\xe8\x87\x08\x95\x6a\x41\x17\xfe\xd0\x0d\xce\x4e\xba\xc5\x1e\x34\x4a\x3f\xff\x0a\x00\x00\xff\xff\x35\x5c\x9e\x72\xe5\x07\x00\x00" func stakingcollectionTransfer_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -5737,11 +5737,11 @@ func stakingcollectionTransfer_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/transfer_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0x8c, 0x49, 0xb, 0x6a, 0x4c, 0xbe, 0x46, 0xb1, 0x22, 0x1b, 0x70, 0xf0, 0x9a, 0x50, 0xf, 0x46, 0xe, 0x64, 0x69, 0xfd, 0xa9, 0x88, 0x11, 0xb0, 0xa2, 0x1f, 0xe4, 0xbb, 0x2e, 0xb5, 0x14}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0xf, 0x61, 0xe2, 0x2a, 0xbb, 0xf4, 0x2c, 0x51, 0x79, 0xcf, 0x19, 0x73, 0x29, 0xfe, 0x71, 0x7a, 0xef, 0x89, 0xff, 0xb3, 0x63, 0xf8, 0x3d, 0x6f, 0x49, 0x65, 0xbb, 0x5d, 0xf1, 0x0, 0x20}} return a, nil } -var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5d\x4f\xdb\x4a\x10\x7d\xcf\xaf\x18\x78\x40\x8e\x04\xe6\x3e\x47\x04\x94\x9b\x70\xb9\x51\x29\x20\x82\xfa\x52\xf5\x61\xe2\x1d\xc7\xdb\x3a\x3b\xd6\xee\x38\x94\x22\xfe\x7b\xb5\x5e\x3b\x1f\xd8\x6d\x40\xc2\x2f\x51\xec\xd9\x33\x67\xce\x39\xbb\xab\x97\x05\x5b\x81\xff\x72\x7e\x9c\x09\xfe\xd0\x66\x31\xe6\x3c\xa7\x44\x34\x1b\x48\x2d\x2f\xe1\x9f\x9f\xb3\x87\xd1\xa7\xe9\xcd\xd5\xf8\xf6\xfa\xfa\x72\xfc\x30\xbd\xbd\x19\x4d\x26\xf7\x97\xb3\x59\xaf\x77\x7a\x0a\x0f\x16\x8d\x4b\xc9\x3a\x40\xb8\x61\x45\x1e\x85\x2c\xf0\xfc\x3b\x25\x12\x10\xd0\x00\x96\x92\xb1\xd5\xbf\xaa\xba\x24\x61\x2e\x8d\xf8\xd5\x68\x14\xa0\x52\x0e\x24\xa3\xed\xe5\xc2\x80\x86\x25\x23\x5b\x95\x97\x46\x1c\xd4\xfc\x60\x43\xd0\x23\x68\x45\x46\x74\xaa\x49\xc1\xfc\xa9\x82\x11\x86\x91\x52\x96\x9c\x8b\x7b\x3d\xf1\xf4\xb0\xaa\x8e\x0c\x2b\x9a\x4e\x06\x30\x13\xab\xcd\xe2\x18\x84\x07\x4d\x65\x1f\x9e\x7b\x00\x00\x39\x05\xce\x2d\x2d\xee\x29\x1d\xc0\x51\xa7\x4c\x71\xeb\xcd\x1a\x4a\xb8\xf5\x6d\x8c\xc5\xdb\x81\x9e\xdf\x58\x77\x57\xce\x73\x9d\xbc\xf4\xaa\xc6\x85\xa5\x02\x2d\x45\xb5\x70\x83\x4a\xfc\xe8\x5f\xb6\x96\x1f\xbf\x60\x5e\x52\x1f\x8e\x46\xe1\x5b\x33\xb6\x7f\xbc\x97\x19\x35\x72\x7b\x15\xa5\xb6\xf6\xb5\x39\xb5\xb7\xc2\xb0\x2c\x9d\x40\x86\x2b\x02\x84\x15\xe6\x5a\x75\x98\x04\xda\x00\x5b\x15\x4c\xb5\x94\x90\x5e\xd1\x2b\xc4\x78\x4d\x42\xa7\x10\x1d\x74\x0f\xad\x98\x5c\x4d\xfb\x7f\x5c\x51\xab\x20\xc2\x60\xe5\x00\x84\xfb\xdb\x83\x55\x9a\xa0\xd1\x49\x74\x38\x21\x27\xda\x60\x45\xab\x19\x74\x7b\x86\x0e\xf6\x8e\x04\xca\x22\x3e\xec\xaf\xf1\x6a\x99\x6b\xcd\xae\x48\x00\xc1\x52\x4a\x96\x4c\x52\xa5\xcf\x0f\xb7\x1d\xf8\xee\x7c\xf8\xc7\x51\x9e\xc6\x7f\xca\x1b\x0c\x1b\x8e\xb1\x13\xb6\xb8\xa0\x78\x5e\x99\x78\xf6\xd6\xf8\x9c\x47\x1e\x7b\xd0\xbd\xbb\xdb\xe5\xb3\xd0\xe5\x0e\x25\xeb\xef\xa8\x77\x71\xd1\x08\x38\xe6\x32\x57\x60\x58\x20\x50\xf1\x83\xfb\x91\x5b\x58\x87\xfd\x96\x4a\x5e\x96\x10\xd4\xda\x46\xe0\x34\x68\xb5\x3f\x72\xc2\x31\xac\xf1\xc2\xce\x6a\x40\x86\xb0\x20\xa9\xff\x44\xc2\xbb\x7d\x43\xea\x01\x21\xc1\x02\xe7\x3a\xd7\xf2\xd4\x38\x54\x54\x54\x60\x49\x92\xb1\x72\x80\x2b\xd4\x39\xce\x73\x02\x36\xd5\xf7\x3a\xaa\x5d\xfe\xc5\xbb\x06\x76\xef\x72\x18\x6e\x48\xc6\xeb\xf6\x9a\xdc\x8e\xb4\xef\xb5\xf4\x9d\x27\xc2\x79\xf4\xae\xfa\x0f\xb7\xde\x5b\xb5\xc4\x24\xd3\x86\x6a\x29\xa6\x26\x65\x18\xfe\x3d\xf9\xf1\x82\xe4\xf3\xce\x2a\x17\xf5\xbf\x86\xe3\xfb\xdb\x5e\x7a\x8b\x4d\xcf\x75\xb4\xb4\xef\x9a\x72\xc8\x95\x2b\x28\x09\x37\x86\x87\x84\xe9\xe4\x55\x58\xef\x69\xc9\xad\x33\x2a\x5c\x65\x7b\xb7\x76\xbc\x33\xba\xd9\x2c\x3f\x3b\xd9\x33\xb3\xad\xba\xfa\x86\xeb\x8b\x2a\xfc\xee\x92\x9b\x50\xc1\x4e\x4b\xc7\x85\xf9\x11\xa1\x8d\x51\x29\x8f\x7a\x5b\x1d\xf1\xd1\xd9\xc9\xd6\x08\x07\xc7\x1d\x56\x0e\x3a\xde\x85\x04\xbd\xf4\x5e\x7e\x07\x00\x00\xff\xff\xb9\x90\x15\x27\x5d\x08\x00\x00" +var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x4d\x4f\xe3\x48\x10\xbd\xe7\x57\x14\x1c\x90\x2d\x81\xd9\x73\x44\x16\x65\x13\x96\x8d\x96\x25\x88\xa0\xbd\xac\xf6\x50\x71\x97\xe3\x9e\x71\xba\xac\xee\x72\x18\x66\xc4\x7f\x1f\xb5\xdb\xce\x07\xf6\x4c\x38\x30\xbe\x40\xec\xea\x57\xaf\xde\x7b\xdd\xad\xd7\x25\x5b\x81\x3f\x0b\x7e\x5e\x08\x7e\xd6\x66\x35\xe1\xa2\xa0\x54\x34\x1b\xc8\x2c\xaf\xe1\xb7\x2f\x8b\xa7\xf1\xdf\xb3\xfb\xdb\xc9\xfc\xee\xee\x66\xf2\x34\x9b\xdf\x8f\xa7\xd3\xc7\x9b\xc5\x62\x30\xb8\xbc\x84\x27\x8b\xc6\x65\x64\x1d\x20\xdc\xb3\x22\x8f\x42\x16\x78\xf9\x89\x52\x09\x08\x68\x00\x2b\xc9\xd9\xea\xaf\x75\x5d\x9a\x32\x57\x46\xfc\x6a\x34\x0a\x50\x29\x07\x92\xd3\xfe\x72\x61\x40\xc3\x92\x93\xad\xcb\x2b\x23\x0e\x1a\x7e\xb0\x23\xe8\x11\xb4\x22\x23\x3a\xd3\xa4\x60\xf9\x52\xc3\x08\xc3\x58\x29\x4b\xce\x25\x83\x81\x78\x7a\x58\x57\x47\x86\x15\xcd\xa6\x43\x58\x88\xd5\x66\x75\x0e\xc2\xc3\xb6\x32\x86\x6f\x03\x00\x80\x82\x02\xe7\x8e\x16\x8f\x94\x0d\xeb\x29\xa2\x5e\xa9\x92\xdd\xbf\xf3\x67\x43\x36\x86\xb3\xfe\xba\xce\x9b\x6d\x5b\xe1\xce\xb7\x09\x96\xc3\xf7\x03\xd5\x48\xa5\xa5\x12\x2d\x45\x8d\x6a\x0d\xe7\x3f\xd8\x5a\x7e\xfe\x17\x8b\x8a\x62\x38\x1b\x87\x6f\xed\xcc\xfe\xf1\x46\xe6\xd4\x6a\xed\x25\x94\xc6\xd7\xb7\xce\x34\xc6\x0a\xc3\xba\x72\x02\x39\x6e\x08\x10\x36\x58\x68\xd5\xe3\x10\x68\x03\x6c\x55\x70\xd4\x52\x4a\x7a\x43\x6f\x10\x93\x2d\x09\x9d\x41\x74\xd2\x3f\xad\x62\x72\x0d\xed\xbf\x70\x43\x9d\x82\x08\x83\x8f\x43\x10\x8e\xf7\x07\xab\x35\x41\xa3\xd3\xe8\x74\x4a\x4e\xb4\xc1\x9a\x56\x3b\xe8\xfe\x0c\x3d\xec\x1d\x09\x54\x65\x72\x1a\x6f\xf1\x5e\x07\xfb\x9a\xdd\x92\x00\x82\xa5\x8c\x2c\x99\xb4\x8e\x9e\x1f\x6e\x3f\xed\xfd\x86\xfb\xc7\x51\x91\x25\x3f\x0a\x1b\x8c\x5a\x8e\x89\x13\xb6\xb8\xa2\x64\x59\x9b\x78\xf5\x2b\x42\xf8\x7b\xe4\x79\x0c\xfb\x8f\x81\x6e\xf9\x22\x30\x7a\x40\xc9\xe3\x03\xa5\xaf\xaf\x5b\xb1\x27\x5c\x15\x0a\x0c\x0b\x04\xda\x5e\x24\x2f\x4f\x07\xeb\x34\xee\x28\xea\x25\x7c\xa8\x96\x85\x4e\x1b\xcb\x81\xb3\xa0\xeb\xf1\x78\x0a\x27\xb0\xc5\x0b\xdb\xaa\x05\x19\xc1\x8a\xa4\xf9\x11\x09\x1f\xf6\x0d\x3b\x04\x10\x52\x2c\x71\xa9\x0b\x2d\x2f\xad\x9b\x65\x4d\x05\xd6\x24\x39\x2b\x07\xb8\x41\x5d\xe0\xb2\x20\x60\x53\x7f\x6f\x62\xdd\xe7\x75\x72\x68\x76\xff\x16\x87\xd1\x8e\x64\xb2\x6d\xaf\xc9\x1d\x48\xdb\xda\xff\x7e\x4b\xdf\x59\x18\x94\xfe\x70\x2f\xbd\xf6\x6b\x4c\x73\x6d\xa8\x99\x6d\x66\x32\x86\xd1\xcf\x63\x9f\xac\x48\xfe\x39\x58\xe5\xa2\xf8\xbf\x70\x70\xff\x7f\x94\xde\x6a\xd7\x73\x9b\x15\xed\xbb\x66\x1c\x82\xe2\x4a\x4a\xc3\x5d\xe1\x21\x61\x36\x7d\x93\xbe\x47\x5a\x73\xe7\x80\x0a\x97\xd8\xd1\x7d\x9d\x1c\x8c\x6e\x76\xcb\xaf\x2e\x8e\xcc\x6c\xeb\xae\xbe\xe1\xf6\x8a\x0a\x7f\x0f\xc9\x4d\xa9\x64\xa7\xa5\xe7\xaa\xfc\x88\x14\x26\xa8\x94\x47\x9d\xd7\xe7\x7b\x74\x75\xb1\x37\xc2\xc9\x79\x8f\x95\xc3\x9e\x77\x21\x41\xaf\x83\xd7\xef\x01\x00\x00\xff\xff\x84\xde\x3f\xa0\x57\x08\x00\x00" func stakingcollectionTransfer_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5757,11 +5757,11 @@ func stakingcollectionTransfer_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/transfer_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe6, 0x1b, 0x1a, 0xa5, 0x3e, 0xdc, 0x67, 0xdb, 0x56, 0x2c, 0xe4, 0x41, 0xd2, 0xf0, 0xbe, 0x6b, 0x8f, 0xa9, 0xd1, 0xe2, 0xa2, 0xcf, 0x19, 0xfa, 0x65, 0x64, 0x60, 0x12, 0x9, 0x2f, 0x1f, 0xd8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa7, 0x50, 0x3a, 0x54, 0x28, 0x2b, 0x5f, 0x93, 0xd2, 0xc9, 0x33, 0xd2, 0x89, 0x97, 0x70, 0xbc, 0x7b, 0xca, 0x49, 0x15, 0xa5, 0xd9, 0xa6, 0x1a, 0x5c, 0xe5, 0xdb, 0xf9, 0xe5, 0x35, 0xa9, 0x17}} return a, nil } -var _stakingcollectionUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x8f\xda\x30\x10\x85\xef\xf9\x15\x4f\x1c\x50\xb8\x84\x9e\xa3\xb6\x28\x0d\xb4\x42\x8d\xa0\x22\xa8\x77\x6f\x98\x04\x0b\xe3\xc9\xda\x13\x81\xb4\xe2\xbf\xaf\x12\x03\x7b\x80\x03\x73\x48\x64\x7b\xe6\xcd\x37\x7e\xd6\xc7\x96\x9d\xe0\xb7\xe1\x53\x29\xea\xa0\x6d\x93\xb3\x31\x54\x89\x66\x8b\xda\xf1\x11\xdf\xce\xe5\x36\xfb\xbb\x5c\xfd\xc9\xd7\x45\xb1\xc8\xb7\xcb\xf5\x2a\x9b\xcf\x37\x8b\xb2\x8c\xa2\xe9\x74\x8a\x0d\xbd\x77\xe4\xc5\x43\x18\x9d\xf5\xa2\x0e\x84\xac\x28\x20\x7c\x20\xeb\x51\xb3\x83\xec\x09\xbe\xa5\x4a\xd7\x9a\x76\xb0\xbc\x23\xb0\xc3\x8e\x0c\x35\x4a\xd8\x41\xdb\x90\x12\x00\x50\xdd\x09\xa2\x48\x9c\xb2\x5e\x0d\x8b\xb8\x2f\x5c\xce\x53\x94\xe2\xb4\x6d\x26\xf8\x88\x00\x60\xf8\x18\x92\x5b\xf9\x17\xff\x86\xea\x14\xe3\xa7\xa3\x25\x0f\x3b\xd1\xa0\xd3\x3a\x6a\x95\xa3\x58\x55\x15\x77\x56\x52\xa8\x4e\xf6\xf1\x2f\x76\x8e\x4f\xff\x95\xe9\x68\x82\x71\x16\xce\x6e\xfd\xfb\xf0\x64\xea\xe4\x59\x7f\xfc\xc0\x55\x2a\xf1\xc2\x4e\x35\x94\xbc\x0d\x62\xdf\x5f\xe5\xfa\x19\xf7\x2e\xa4\xcf\x1d\x7a\x4c\x2f\x43\x97\x7f\x4a\xf6\x93\x3b\x5e\x1f\xb3\x19\x5a\x65\x75\x15\x8f\x72\xee\x4c\xef\x82\x20\xa0\xc0\x51\xdd\x9b\xf7\xa0\x35\x0a\x0a\x97\x70\x35\x74\xa6\xaa\x13\x7a\x65\xea\xe4\xfa\x0e\x32\x63\xee\xa6\x85\xff\x4d\xf1\x12\x7d\x06\x00\x00\xff\xff\x80\xd5\xe6\x87\x79\x02\x00\x00" +var _stakingcollectionUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x3b\x0f\xda\x30\x10\xc7\xf7\x7c\x8a\xbf\x18\x50\xb2\x84\xce\xa8\x2d\x4a\x03\xad\x50\x23\xa8\x08\xea\xee\x86\x4b\xb0\x30\xbe\xd4\xbe\x08\xa4\x8a\xef\x5e\x25\xe6\x31\x90\xa1\x4b\x6f\xc8\xc3\xbe\xfb\xdf\xef\x1e\xfa\xdc\xb2\x13\x7c\x35\x7c\x29\x45\x9d\xb4\x6d\x72\x36\x86\x2a\xd1\x6c\x51\x3b\x3e\xe3\xc3\xb5\xdc\x67\xdf\xd7\x9b\x6f\xf9\xb6\x28\x56\xf9\x7e\xbd\xdd\x64\xcb\xe5\x6e\x55\x96\x51\x34\x9b\xcd\xb0\xa3\xdf\x1d\x79\xf1\x10\x46\x67\xbd\xa8\x13\x21\x2b\x0a\x08\x9f\xc8\x7a\xd4\xec\x20\x47\x82\x6f\xa9\xd2\xb5\xa6\x03\x2c\x1f\x08\xec\x70\x20\x43\x8d\x12\x76\xd0\x36\xb8\x04\x00\x54\x4f\x82\x28\x12\xa7\xac\x57\xc3\x4f\xdc\x07\xae\x97\x73\x94\xe2\xb4\x6d\x12\xfc\x89\x00\x60\x78\x18\x92\x47\xf8\x8b\x7f\x47\xf5\x1c\xaa\x93\x63\x3c\x5a\x5e\xfa\xfa\xdc\x5e\x2c\xb9\x04\xd3\x71\xbf\xb7\x93\x68\xc8\xd9\x3a\x6a\x95\xa3\x58\x55\x15\x77\x56\xee\xa9\xbe\xb0\x73\x7c\xf9\xa9\x4c\x47\x09\xa6\x59\xb8\x7b\xb0\xf6\xe6\xc9\xd4\xe9\x18\x2b\x3e\xe1\x2e\x95\x7a\x61\xa7\x1a\x4a\x7f\x0d\x62\x1f\xff\x47\x0d\x9f\xe3\x7e\xba\xf3\xf1\xc9\xbf\xbb\x97\x81\xe8\x87\x92\x63\xf2\x2c\xa5\xb7\xc5\x02\xad\xb2\xba\x8a\x27\x39\x77\xa6\x9f\xae\x20\x60\xc3\x51\xdd\x2f\xc5\x9b\xd6\x24\x28\xdc\x42\x1b\xe9\x4a\x55\x27\xf4\x2f\x1d\x4a\xef\xfb\x95\x19\xf3\x5c\x86\xf0\x7e\x28\xde\xa2\xbf\x01\x00\x00\xff\xff\x89\x12\xc5\x5b\xd1\x02\x00\x00" func stakingcollectionUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -5777,11 +5777,11 @@ func stakingcollectionUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6d, 0x17, 0xa2, 0xd3, 0xb1, 0x6c, 0xbe, 0x14, 0x41, 0x99, 0x3, 0x23, 0xc7, 0x99, 0x16, 0xfb, 0xe0, 0xfb, 0x8d, 0x17, 0x28, 0xd3, 0xe0, 0xa0, 0x9b, 0xc5, 0xa4, 0xae, 0x58, 0xb5, 0x65, 0x26}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfb, 0xb4, 0xc0, 0xad, 0x23, 0xc7, 0x9e, 0x25, 0x95, 0xf1, 0x3b, 0x48, 0x99, 0xcf, 0x25, 0x70, 0x27, 0x9d, 0x38, 0xdb, 0x5d, 0xa2, 0xd5, 0x64, 0xf7, 0x6e, 0x8a, 0x82, 0xf1, 0xef, 0x2e, 0xec}} return a, nil } -var _stakingcollectionUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x51\xc1\x6a\xc2\x40\x10\xbd\xef\x57\x0c\x1e\x24\x42\x89\x3d\x87\xb6\x92\x46\x5b\xa4\xa2\xc5\x48\xef\xdb\x64\x92\x2c\x5d\x77\xc2\xee\x84\x08\xc5\x7f\x2f\xc9\xaa\xa5\x35\x07\xe7\x90\x2c\x33\xbb\xef\xbd\x79\x4f\xed\x6b\xb2\x0c\x2f\x9a\xda\x94\xe5\x97\x32\x65\x42\x5a\x63\xc6\x8a\x0c\x14\x96\xf6\x70\x7f\x48\x77\xf1\xdb\x72\xfd\x9a\x6c\x56\xab\x45\xb2\x5b\x6e\xd6\xf1\x7c\xbe\x5d\xa4\xa9\x10\xd3\xe9\x14\x92\x4a\x9a\x12\x1d\x70\x85\x60\x90\x5b\xb2\x1d\x0a\xc8\x3c\xb7\xe8\x1c\x14\x64\xfb\x91\xab\x31\x53\x85\xc2\x1c\x0c\xe5\x28\x04\x5b\x69\x9c\xec\x79\x82\xae\xb3\x9c\x47\x90\xb2\x55\xa6\xbc\x03\x83\x6d\xec\x9f\x9f\x7b\x13\xf8\x16\x00\x00\xfd\x47\x23\x83\xfb\x2f\x76\x8b\x45\x04\xe3\xc1\x3d\xc2\xab\x8e\xe8\x71\x6a\x8b\xb5\xb4\x18\xc8\x2c\xa3\xc6\x70\x04\xb2\xe1\x2a\x78\x26\x6b\xa9\xfd\x90\xba\xc1\x09\x8c\x63\x3f\x3b\xf3\x77\xe5\x50\x17\xe1\x10\x3f\x3c\xc2\x09\x2a\x74\x4c\x56\x96\x18\x7e\xf6\x60\x0f\xb7\xea\x7a\x0a\x3a\xcb\xa3\xe1\x38\xae\xaf\xa7\x9e\xe5\x5d\x72\x35\xb9\xc8\xeb\x6a\x36\x83\x5a\x1a\x95\x05\xa3\x84\x1a\xdd\x59\xce\xe0\xa5\x80\xc5\x02\x98\xe0\x0a\x6b\xe4\x11\x8e\xde\x1a\x3c\x60\xd6\x30\xde\xb2\x75\xd8\xd4\xb9\x64\x5c\x5f\xa2\x3f\x45\x77\x49\xd5\xff\xff\xa6\xfa\x7b\x3e\xd3\x1e\xc5\x4f\x00\x00\x00\xff\xff\x7b\x84\x12\x5a\x8b\x02\x00\x00" +var _stakingcollectionUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xcd\x6a\xf3\x40\x0c\xbc\xfb\x29\x44\x0e\xc1\x86\x0f\xe7\x3b\x87\xb6\xc1\x75\xd2\x12\x1a\x92\x12\x87\xde\xb7\xb6\xfc\x43\x37\x2b\xa3\x95\x71\xa0\xe4\xdd\x8b\xbd\xf9\xa1\x8d\x0f\xbd\x74\x0f\xf6\x22\x69\x67\x46\xd2\x54\xfb\x9a\x58\xe0\x49\x53\x9b\x88\xfa\xa8\x4c\x11\x93\xd6\x98\x4a\x45\x06\x72\xa6\x3d\xfc\x3f\x24\xbb\xe8\x65\xb9\x7e\x8e\x37\xab\xd5\x22\xde\x2d\x37\xeb\x68\x3e\xdf\x2e\x92\xc4\xf3\x26\x93\x09\xc4\xa5\x32\x05\x5a\x90\x12\xc1\xa0\xb4\xc4\x1d\x0a\xa8\x2c\x63\xb4\x16\x72\xe2\x3e\x65\x6b\x4c\xab\xbc\xc2\x0c\x0c\x65\xe8\x79\xc2\xca\x58\xd5\xf3\xf8\x5d\x64\x39\x9f\x42\x22\x5c\x99\xe2\x1f\x18\x6c\x23\xf7\xfc\x1c\x0b\xe0\xd3\x03\x00\xe8\x3f\x1a\x05\xec\x4f\xb1\x5b\xcc\xa7\xa0\x1a\x29\xfd\xc1\x5e\xc2\xeb\x75\xd3\x1a\xe4\x00\xc6\xc3\x75\x37\x11\xaf\xe7\xac\x19\x6b\xc5\xe8\xab\x34\xa5\xc6\xc8\x89\xea\x91\x98\xa9\x7d\x53\xba\xc1\x00\xc6\x91\xcb\x9d\xb5\x76\xc7\xa2\xce\xc3\x21\xad\x70\x0f\x27\xa8\xd0\x0a\xb1\x2a\x30\x7c\xef\xc1\xee\xfe\xa2\x87\x07\xbf\x5b\xe5\x74\x78\xcd\xb7\xe5\x89\x53\xf4\xaa\xa4\x0c\x2e\xad\x74\x67\x36\x83\x5a\x99\x2a\xf5\x47\x31\x35\xba\x5b\xa5\x80\x93\x0d\x8c\x39\x08\xc1\x0d\xd6\xc8\x21\x1c\xdd\x18\xf1\x80\x69\x23\xf8\x9b\x09\x85\x4d\x9d\x29\xc1\xf5\xc5\x52\x27\x4b\x5c\xdc\xe2\xfe\xdf\xdd\x72\xbd\x9f\x69\x8f\xde\x57\x00\x00\x00\xff\xff\x02\xfb\xb7\x33\xe3\x02\x00\x00" func stakingcollectionUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -5797,11 +5797,11 @@ func stakingcollectionUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x27, 0xe6, 0x78, 0x87, 0x1e, 0x25, 0x6, 0xc4, 0xf9, 0x65, 0xa7, 0x8b, 0x7f, 0xa8, 0x2e, 0x55, 0x33, 0x52, 0xb5, 0x9, 0x53, 0xe9, 0x1d, 0xf8, 0x8f, 0x2f, 0x11, 0x34, 0xdb, 0xd7, 0x5d, 0xd4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc5, 0x69, 0xda, 0xe, 0x23, 0x1e, 0xa7, 0xf, 0xf6, 0x63, 0x31, 0x56, 0x47, 0x87, 0x39, 0x2b, 0x9d, 0x11, 0xae, 0x64, 0xb3, 0xc5, 0x9e, 0x1b, 0xfd, 0x3f, 0x27, 0x63, 0x78, 0x6a, 0xaf, 0xa9}} return a, nil } -var _stakingcollectionWithdraw_from_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xcd\x8e\xd3\x30\x10\xbe\xe7\x29\x46\x7b\x58\xa5\x12\x4a\x39\x20\x0e\x11\xb0\x2a\xe9\x16\x55\x2c\xbb\xa8\x29\xdc\x07\x67\xd2\x58\x75\x3c\xc1\x19\x93\x22\xd4\x77\x47\x8e\x9b\x22\xd1\x1e\xea\x43\x2c\xc5\xe3\xef\xd7\xba\xed\xd8\x09\xac\x0c\x0f\xa5\xe0\x5e\xdb\x5d\xc1\xc6\x90\x12\xcd\x16\x6a\xc7\x2d\xbc\x3e\x94\xdb\xc5\xe7\xf5\xf3\xa7\xe2\xe5\xe9\xe9\xb1\xd8\xae\x5f\x9e\x17\xcb\xe5\xe6\xb1\x2c\x93\x64\x3e\x9f\xc3\x86\x7e\x7a\xea\x05\x84\x61\xd0\xd2\x54\x0e\x07\x10\xde\x93\xed\xe3\x7d\x69\x08\x5a\x54\x8d\xb6\x04\xa8\x14\x7b\x2b\xe3\xbd\x6d\x43\xd3\x1c\x3a\x02\xf4\xc2\x2d\x8a\x56\x68\xcc\x6f\xa8\xa8\xe3\x5e\x0b\x55\x01\x36\x20\x78\x6b\x58\xed\xa9\x9a\x20\xe0\x17\x7a\x23\x49\x22\x0e\x6d\x8f\xa3\xdc\xd4\x72\x45\xeb\x65\x0e\xa5\x38\x6d\x77\xaf\x00\xdb\x30\x99\xc3\xb7\x95\x3e\xbc\x7d\x33\x83\x3f\x09\x00\xc0\xf8\x31\x24\xd0\xff\xef\x77\x43\x75\x0e\xf7\x57\xa3\xc8\x2e\xfe\x24\x23\x4e\xe7\xa8\x43\x47\xe9\x49\x55\x1e\x6c\x34\xe9\x47\x76\x8e\x87\xef\x68\x3c\xcd\xe0\x7e\x11\xcf\x26\xfe\xb0\x7a\x32\x75\x76\x8d\x1f\xde\x4f\x06\xb3\x5e\xd8\xe1\x8e\xb2\x1f\x23\xd8\xbb\x5b\x75\x7d\x48\x43\xea\xf9\xf5\x46\x2f\xc7\xcb\xc8\xf2\x15\xa5\x99\x9d\xe5\x85\xf5\xf0\x00\x1d\x5a\xad\xd2\xbb\x82\xbd\xa9\xc0\xb2\x40\x94\x02\x8e\xea\x50\xcb\x05\xd6\x5d\x44\x38\xc6\x68\xe8\x40\xca\x0b\xdd\xe2\x3a\x9b\x1e\xce\xca\x71\xfb\x25\xbe\x95\x53\x6a\xe7\x52\xe3\xfe\xaf\xd4\xb8\x4f\x8c\xc7\xe4\x6f\x00\x00\x00\xff\xff\xa5\xbc\xf4\x59\xc9\x02\x00\x00" +var _stakingcollectionWithdraw_from_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x8e\xd3\x30\x10\xbd\xe7\x2b\x46\x7b\x58\xa5\x12\x4a\x39\x20\x0e\x15\xb0\x2a\xe9\x16\x55\x2c\x5b\xd4\x14\xee\x83\x33\x69\xac\x3a\x9e\xe0\x8c\x49\x11\xda\x7f\x47\x8e\x9b\xad\x44\x73\xe0\xb2\x3e\xc4\x51\xf2\xfc\xe6\xbd\xe7\xa7\x9b\x96\x9d\xc0\xda\x70\x5f\x08\x1e\xb5\x3d\xe4\x6c\x0c\x29\xd1\x6c\xa1\x72\xdc\xc0\xeb\x53\xb1\x5f\x7e\xde\x3c\x7e\xca\xb7\x0f\x0f\xf7\xf9\x7e\xb3\x7d\x5c\xae\x56\xbb\xfb\xa2\x48\x92\xf9\x7c\x0e\x3b\xfa\xe9\xa9\x13\x10\x86\x5e\x4b\x5d\x3a\xec\x41\xf8\x48\xb6\x8b\xe7\xa5\x26\x68\x50\xd5\xda\x12\xa0\x52\xec\xad\x0c\xe7\xf6\x35\x8d\x38\x74\x04\xe8\x85\x1b\x14\xad\xd0\x98\xdf\x50\x52\xcb\x9d\x16\x2a\x03\x6d\x60\xf0\xd6\xb0\x3a\x52\x39\x52\xc0\x2f\xf4\x46\x92\x44\x1c\xda\x0e\x07\xb9\xa9\xe5\x92\x36\xab\x05\x14\xe2\xb4\x3d\xbc\x02\x6c\x02\x72\x01\xdf\xd6\xfa\xf4\xf6\xcd\x0c\xfe\x24\x00\x00\xc3\xc3\x90\x40\xf7\xaf\xdf\x1d\x55\x8b\xa0\xa3\x4e\x27\xe3\xc8\x2e\xaf\xdb\xde\x92\x9b\xc1\xed\x34\xee\xea\x4b\x32\xcc\x6c\x1d\xb5\xe8\x28\x3d\x3b\x38\x8f\xfa\xc8\xce\x71\xff\x1d\x8d\xa7\x19\xdc\x2e\xe3\xbf\x51\x6b\x58\x1d\x99\x2a\x9b\xd2\x0a\xef\xc7\x30\xb2\x4e\xd8\xe1\x81\xb2\x1f\x03\xd9\xbb\x97\xf0\xf0\x21\x0d\xb7\xb9\x98\x6e\xca\x35\xbc\x88\x8a\xbe\xa2\xd4\xb3\x67\x2b\x61\xdd\xdd\x41\x8b\x56\xab\xf4\x26\x67\x6f\x4a\xb0\x2c\x10\x65\x83\xa3\x2a\x5c\xf7\x15\xd7\x4d\x64\x78\x8a\x31\xd2\x89\x94\x17\xfa\x9f\x84\xb2\xb1\x90\x6b\xc7\xcd\x97\xd8\xc1\x73\xc2\xcf\x65\x89\xfb\xa5\x2c\x71\x1f\x27\x3e\x25\x7f\x03\x00\x00\xff\xff\x9b\x4c\x56\x8f\x21\x03\x00\x00" func stakingcollectionWithdraw_from_machine_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -5817,11 +5817,11 @@ func stakingcollectionWithdraw_from_machine_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_from_machine_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa2, 0xe5, 0xbe, 0x51, 0xf0, 0xe1, 0x4c, 0x96, 0xc, 0x6a, 0xe7, 0x47, 0xcd, 0x69, 0x28, 0x7a, 0xa3, 0x99, 0xbf, 0xfb, 0xf4, 0x10, 0x60, 0xb0, 0xc3, 0xc0, 0x10, 0x80, 0x94, 0xc8, 0xf5, 0x45}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf6, 0xd9, 0x31, 0x48, 0x1b, 0x88, 0xd3, 0xaf, 0x9f, 0xb1, 0xd2, 0x2e, 0xd9, 0xfa, 0xcc, 0x3e, 0x5f, 0xbb, 0x74, 0x7c, 0xbe, 0xfb, 0x4f, 0xbc, 0xde, 0xa2, 0x80, 0x6d, 0x10, 0x2d, 0xd3, 0xfa}} return a, nil } -var _stakingcollectionWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x6f\xda\x40\x10\x85\xef\xfe\x15\x4f\x39\x44\x20\x21\xa8\xda\xaa\x07\xab\x2d\xa2\x90\x54\xa8\x51\x52\x61\xd2\xfb\xd4\x1e\xe3\x15\xcb\x8e\xbb\x1e\xd7\x44\x55\xfe\x7b\xb5\x36\x86\x28\x70\xc8\x1e\xbc\xf2\x7a\xfc\xcd\x9b\x7d\xcf\xec\x4a\xf1\x8a\x5b\x2b\x4d\xa2\xb4\x35\x6e\x33\x17\x6b\x39\x55\x23\x0e\xb9\x97\x1d\xde\xed\x93\xf5\xec\xc7\xf2\xfe\xfb\xfc\xe1\xee\xee\x66\xbe\x5e\x3e\xdc\xcf\x16\x8b\xd5\x4d\x92\x44\xd1\x64\x32\xc1\x8a\xff\xd4\x5c\x29\x54\xd0\x18\x2d\x32\x4f\x0d\x3c\x37\xe4\x33\xce\xa0\xb2\x65\x57\x21\x17\x0f\x2d\x18\x55\xc9\xa9\xc9\x0d\x67\x70\x92\x31\xc4\x23\x63\xcb\x1b\x52\xf1\x30\xae\x2b\xe9\x54\x20\x3d\xca\x68\xbb\xac\x0b\xee\x61\xe4\x19\x54\xab\xec\x48\x4d\x4a\xd6\x3e\x21\xe3\x52\x2a\xa3\x6d\xbf\x16\x52\x3b\x2b\xe9\x96\x33\x50\x9a\x4a\xed\x14\x7f\xa9\xb6\x8a\xdc\xf8\x4a\x47\x2d\x6f\xe6\xb2\x50\xe9\x40\xee\x09\x87\xe2\x17\xfc\x13\xd1\xb8\x03\xf3\x12\x31\x8a\xd4\x93\xab\xa8\xd5\x39\x08\x33\x2d\x17\x31\x12\xf5\xc6\x6d\x46\xa7\xd9\xc2\xe1\xe3\xd2\xe9\x87\xf7\xd3\x11\x68\x17\xfe\x8f\xf1\x78\x6b\xf6\x9f\x3e\x0e\xf1\x2f\x02\x80\xf6\x61\x59\xfb\xf9\x4f\x2e\xac\x38\x8f\x71\x7d\xd1\xa0\xf1\xd9\x49\xd4\x72\x4a\xcf\x25\x79\x1e\x1c\xb4\xc6\xe1\xba\x8a\xc1\x37\xf1\x5e\x9a\x5f\x64\x6b\x1e\xe2\x7a\xd6\x7d\xeb\xfb\x87\x55\xb1\xcd\xc7\x97\xfa\xe3\x4b\x3f\xf6\xb8\x52\xf1\xb4\xe1\xf1\xef\x16\xf6\xf9\xad\xba\xbe\x0e\x42\x96\xe2\xcb\x39\x3b\x2f\x4f\xba\x2e\x3f\x49\x8b\xe1\x51\x5e\x58\xd3\x29\x4a\x72\x26\x1d\x5c\xcd\xa5\xb6\x21\x46\x8a\x4e\x0a\x3c\xe7\xc1\xfe\x33\xd6\x55\x47\x78\xee\xae\x86\xf7\x9c\xd6\xca\x6f\x99\x7a\xdc\xc7\x79\x75\x48\xf3\xba\xcd\xc7\xd1\xe6\x6e\x7f\x65\xf3\x8b\x97\x93\xd5\xdd\xde\xeb\x78\x8e\xfe\x07\x00\x00\xff\xff\xb4\x6c\x2b\x9d\x75\x03\x00\x00" +var _stakingcollectionWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\xcd\x6e\xdb\x3c\x10\xbc\xeb\x29\x16\x39\x04\x32\x60\xc8\x1f\xbe\x16\x3d\x18\x6d\x0d\xd7\x4e\x0a\xa3\x41\x5c\x58\x4e\xef\x5b\x69\x65\x11\xa6\xb9\xea\x6a\x55\x39\x28\xf2\xee\x05\xf5\x63\x05\xb5\x0e\xbd\x94\x07\x51\xa2\x86\xb3\x33\xcb\xa1\x39\x15\x2c\x0a\xf7\x96\xeb\x58\xf1\x68\xdc\x61\xc5\xd6\x52\xa2\x86\x1d\x64\xc2\x27\xf8\xef\x1c\xef\x97\x5f\x36\x8f\x9f\x57\xdb\x87\x87\xbb\xd5\x7e\xb3\x7d\x5c\xae\xd7\xbb\xbb\x38\x0e\x82\xd9\x6c\x06\x3b\xfa\x51\x51\xa9\xa0\x0c\xb5\xd1\x3c\x15\xac\x41\xa8\x46\x49\x29\x05\xe5\x23\xb9\x12\x32\x16\xd0\x9c\xa0\x2c\x28\x31\x99\xa1\x14\x1c\xa7\x04\x2c\x90\x92\xa5\x03\x2a\x0b\x18\xd7\x42\x5a\x15\x90\x5c\x64\x34\x55\xf6\x39\xf5\x64\x28\x04\x58\x29\x9f\x50\x4d\x82\xd6\x3e\x43\x4a\x05\x97\x46\x9b\x7a\x0d\x49\xe5\x2c\x27\x47\x4a\x01\x93\x84\x2b\xa7\xf0\x13\x2b\xab\x90\x19\x29\x75\xda\xf0\x2d\x5d\xea\x91\x0e\xd0\x3d\x43\x07\x7e\xc5\x3f\x30\x1a\xd7\x71\x8e\x31\x06\x81\x0a\xba\x12\x1b\x9d\xa1\xf7\xb4\x59\xcf\x21\x56\x31\xee\x30\x1d\xbc\xf9\xc5\xa7\x8d\xd3\x37\xff\x2f\xa6\x80\x27\xbf\x7f\x0e\x4f\xf7\xe6\xfc\xee\xed\x04\x7e\x05\x00\x00\xcd\xc3\x92\xf6\xfe\x87\x53\xd8\x51\x36\xf7\x7e\xf3\x70\xf4\x90\xa2\xe1\x75\x5b\x3b\x92\x09\xdc\x8e\xe3\xae\x56\x82\xa6\x66\x21\x54\xa0\x50\xd8\xf9\xea\x4a\x7d\x62\x11\xae\xbf\xa1\xad\x68\x02\xb7\xcb\xf6\x5f\xaf\xd5\x8f\x92\x6c\x16\x8d\x69\x85\x0f\x7d\x8b\xa2\x52\x59\xf0\x40\xd1\xf7\x86\xec\xfd\xbf\xf0\xf0\x31\xf4\x19\x9d\x8f\xe7\xf7\x1a\x1e\xb7\x8a\xbe\xa2\xe6\x93\x8b\x15\x3f\x16\x0b\x28\xd0\x99\x24\xbc\x59\x71\x65\x7d\x3c\x15\x5a\xd9\x20\x94\xf9\x58\x5d\x71\xdd\xb4\x0c\x2f\x6d\x1b\xe9\x4c\x49\xa5\xf4\x37\x1d\x8a\xfa\x6b\xb2\xeb\x6e\xc9\xbe\xc9\xdd\x25\x3e\xed\xfc\x47\x7c\x5e\x7d\x0c\x11\x6a\xe7\x5e\xc7\x4b\xf0\x3b\x00\x00\xff\xff\x28\xb2\xdf\x7c\xcd\x03\x00\x00" func stakingcollectionWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5837,11 +5837,11 @@ func stakingcollectionWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0xe9, 0xbe, 0xff, 0x89, 0xe4, 0x6e, 0x20, 0xcb, 0xdb, 0x5b, 0x8f, 0xd9, 0x22, 0xa0, 0xe4, 0x98, 0xc9, 0xcb, 0xd9, 0x45, 0xdb, 0x27, 0x48, 0x38, 0xf6, 0x11, 0x4d, 0x33, 0x31, 0xb3, 0x96}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x42, 0x5, 0x1f, 0xba, 0x6a, 0x7a, 0x49, 0x51, 0x91, 0x45, 0x1b, 0xbf, 0xd4, 0xd1, 0x49, 0xa4, 0x66, 0xfa, 0x8b, 0x53, 0x3a, 0xed, 0xb1, 0xb1, 0xa3, 0x9c, 0x67, 0xe8, 0x70, 0xe7, 0xc8, 0xd0}} return a, nil } -var _stakingcollectionWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x6f\xda\x40\x10\x85\xef\xfe\x15\x4f\x39\x44\x46\x42\xa6\x6a\xab\x1e\xac\xb6\x88\x42\x52\xa1\x46\x49\x85\xa1\xf7\xad\x3d\xc6\x2b\x96\x1d\x77\x77\x5c\x88\xaa\xfc\xf7\x6a\x6d\x0c\x51\xe0\xc0\x1e\x58\xb1\x1e\x7d\xef\xcd\xcc\xd3\xdb\x9a\x9d\xe0\xde\xf0\x2e\x13\xb5\xd1\x76\x3d\x65\x63\x28\x17\xcd\x16\xa5\xe3\x2d\xde\xed\xb3\xe5\xe4\xc7\xfc\xf1\xfb\xf4\xe9\xe1\xe1\x6e\xba\x9c\x3f\x3d\x4e\x66\xb3\xc5\x5d\x96\x45\xd1\x68\x34\xc2\x82\xfe\x34\xe4\x05\xc2\xd8\x69\xa9\x0a\xa7\x76\x68\xac\x17\xb5\xa1\x02\xc2\x1b\xb2\x1e\x25\x3b\x48\x45\xf0\x35\xe5\xba\xd4\x54\xc0\x72\x41\x60\x87\x82\x0c\xad\x95\xb0\x83\xb6\x5d\x49\xe7\x02\xf9\xd1\x46\xab\xb2\xac\xa8\x87\x29\x47\x50\x8d\xf0\x56\x89\xce\x95\x31\xcf\x28\xa8\x66\xaf\xa5\xd5\x6b\x21\x8d\x35\x9c\x07\x7d\x95\xe7\xdc\x58\xc1\x5f\xd5\x18\x41\xa9\x9d\x97\x61\xcb\x9b\xd8\x22\x54\x5a\x28\xfb\x8c\x43\xf1\x2b\xfe\x89\xa8\xed\x81\x79\x91\xa8\x4b\x68\x81\xf6\xa1\xc2\x51\x14\x89\x53\xd6\xab\xd6\x76\x1c\x5a\x9c\xcf\x52\x64\xe2\xb4\x5d\x0f\x4f\xad\x86\xc7\xd5\xdc\xca\x87\xf7\xe3\x21\xd4\x36\xe0\x52\xac\xee\xf5\xfe\xd3\xc7\x01\xfe\x45\x00\xd0\xfe\x18\x92\x7e\x1c\xa7\xa5\x2c\xa8\x4c\x71\x7b\x71\x5f\xc9\xd9\x4b\xd4\x72\x6a\x47\xb5\x72\x14\x1f\xac\xa7\x61\x7a\x55\xfc\x8d\x9d\xe3\xdd\x2f\x65\x1a\x1a\xe0\x76\xd2\x7d\xeb\xf5\xc3\xf1\x64\xca\xe4\x92\x3e\xbe\xf4\x53\x48\xbc\xb0\x53\x6b\x4a\x7e\xb7\xb0\xcf\xd7\xfa\xfa\x1a\x87\x68\xa5\x97\x63\x77\x5e\x9e\x75\x2a\x3f\x95\x54\x83\xa3\xbd\x70\xc6\x63\xd4\xca\xea\x3c\xbe\x99\x72\x63\x42\xaa\x04\x9d\x15\x38\x2a\x43\x1a\xce\x58\x37\x1d\xe1\xa5\x1b\x0d\xed\x29\x6f\x84\xae\xe9\x3a\xe9\xd3\xbd\x3a\x84\x7b\xd9\xc6\xe5\xb8\xe6\xee\x7e\xb3\xe6\x57\x7f\x4e\xab\xee\xee\xde\xc7\x4b\xf4\x3f\x00\x00\xff\xff\xb0\x18\x28\xf9\x84\x03\x00\x00" +var _stakingcollectionWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x8f\xda\x30\x10\xbd\xe7\x57\x3c\xed\x61\x05\x12\x82\xaa\xad\x7a\x40\x6d\x11\x85\xdd\x0a\x75\xb5\x54\x04\x7a\x77\x93\x09\x58\x18\x4f\x6a\x4f\x1a\x56\xd5\xfe\xf7\xca\xf9\x20\xab\x92\x43\x2f\xeb\x43\x9c\x38\x4f\x6f\xde\x1b\xbf\xd1\xa7\x9c\x9d\xe0\xde\x70\x19\x8b\x3a\x6a\xbb\x5f\xb0\x31\x94\x88\x66\x8b\xcc\xf1\x09\x6f\xce\xf1\x76\xfe\x6d\xf5\xf8\x75\xb1\x7e\x78\xb8\x5b\x6c\x57\xeb\xc7\xf9\x72\xb9\xb9\x8b\xe3\x28\x9a\x4c\x26\xd8\xd0\xaf\x82\xbc\x40\x18\xa5\x96\x43\xea\x54\x89\xc2\x7a\x51\x47\x4a\x21\x7c\x24\xeb\x91\xb1\x83\x1c\x08\x3e\xa7\x44\x67\x9a\x52\x58\x4e\x09\xec\x90\x92\xa1\xbd\x12\x76\xd0\xb6\x86\xd4\x2a\x90\x5c\x64\x54\x55\xb6\x07\x6a\xc9\x94\x23\xa8\x42\xf8\xa4\x44\x27\xca\x98\x27\xa4\x94\xb3\xd7\x52\xd5\xab\x48\x0a\x6b\x38\x09\xf5\x55\x92\x70\x61\x05\xbf\x55\x61\x04\x99\x76\x5e\x46\x15\xdf\xdc\xa6\x01\x69\xa1\xec\x13\x1a\xf0\x0b\xfe\x8e\x51\xdb\x86\xb3\x97\x51\x67\xd0\x02\xed\x03\xc2\x51\x14\x89\x53\xd6\xab\x4a\xf6\x20\x58\x5c\x2d\xa7\x88\xc5\x69\xbb\x1f\x75\x56\xc3\xe1\x6e\x65\xe5\xdd\xdb\xd9\x08\xea\x14\xe8\xa6\xd8\xdd\xeb\xf3\x87\xf7\x43\xfc\x89\x00\xa0\x7a\x18\x92\xb6\x1d\xdd\xa5\x6c\x28\x9b\x06\xfb\x87\x41\xef\x9d\x8d\xbb\xd7\x75\x69\xc9\x0d\x71\xdb\x8f\xbb\x3a\x89\xaa\x9a\xb9\xa3\x5c\x39\x1a\x34\x36\x9b\x52\x5f\xd8\x39\x2e\x7f\x28\x53\xd0\x10\xb7\xf3\xfa\x5f\xab\x35\x2c\x4f\x26\x1b\xf7\x69\xc5\xa7\xb6\x63\x63\x2f\xec\xd4\x9e\xc6\x3f\x2b\xb2\x8f\xaf\xe1\xe1\xf3\x20\x44\x76\xda\x1f\xe7\x6b\x78\x5c\x2b\xfa\xae\xe4\x30\xbc\x58\x09\x6b\x36\x43\xae\xac\x4e\x06\x37\x0b\x2e\x4c\x48\xab\xa0\x96\x0d\x47\x59\x48\xd9\x15\xd7\x4d\xcd\xf0\x5c\xb7\x91\xce\x94\x14\x42\xff\xd3\xa1\x71\x3b\x35\xbb\x66\x68\xb6\x55\x0c\x2f\xf1\xa9\xf7\x7f\xe2\xf3\xe2\xa3\x8b\x50\xbd\xb7\x3a\x9e\xa3\xbf\x01\x00\x00\xff\xff\x88\xe7\xc7\x43\xdc\x03\x00\x00" func stakingcollectionWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5857,7 +5857,7 @@ func stakingcollectionWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe3, 0xb6, 0xff, 0xdd, 0x20, 0xae, 0xe3, 0x2c, 0x7b, 0x5f, 0xb1, 0x5, 0x77, 0xfe, 0x3, 0xe4, 0xb2, 0x6a, 0x92, 0x42, 0x65, 0xf6, 0xdd, 0x4e, 0xde, 0x76, 0xf9, 0x75, 0x8b, 0xb9, 0xc9, 0xd5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xae, 0x5b, 0xec, 0xe6, 0xcc, 0xd4, 0x73, 0x9b, 0x65, 0xc3, 0xa3, 0x35, 0x3a, 0x49, 0xa0, 0xfb, 0x1a, 0x13, 0xc3, 0x6, 0x53, 0xb1, 0xdf, 0x4f, 0xeb, 0xf0, 0x1e, 0xea, 0x6a, 0xfe, 0xa6, 0xf9}} return a, nil } @@ -5901,7 +5901,7 @@ func stakingproxyGet_node_infoCdc() (*asset, error) { return a, nil } -var _stakingproxyRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xcf\x8e\xda\x3c\x10\xbf\xe7\x29\x46\x1c\xf6\x4b\x24\x14\x7d\x87\xaa\x87\xa8\xec\x8a\x02\x6d\x57\xac\x00\x11\x5a\xb5\x47\x63\x4f\xc0\x22\x78\x22\x67\xa2\x82\x56\xbc\x7b\xe5\x38\xc9\x06\xb6\xdb\xd6\x17\x03\x33\xf3\xfb\x37\x46\x1f\x0b\xb2\x0c\x4f\x24\x0f\xa8\x36\x74\x40\x53\x42\x66\xe9\x08\xff\x9f\x9e\x96\x93\xf9\x6c\xba\x59\xce\x67\x8b\xf1\x74\xba\x9e\xa5\x69\xd0\x74\xa7\x2c\x0e\xda\xec\x56\x96\x4e\xe7\xb6\x3b\xdd\x8c\xe7\x8f\x8b\xcf\xab\xf5\xf2\xfb\x8f\xb6\x3d\x60\x2b\x4c\x29\x24\x6b\x32\xa1\x50\xca\x62\x59\x26\x30\xf6\x1f\x86\xa0\x55\x02\x29\x5b\x6d\x76\x43\x10\x47\xaa\x0c\x27\xf0\xf5\x93\x3e\xbd\x7f\x17\xc1\x73\x10\x00\x00\xe4\xc8\xb0\xa7\x5c\xa1\x5d\x63\x96\xc0\x5d\x5f\x67\x5c\x5f\x5f\xea\xaa\xef\x2e\x2c\x16\xc2\x62\x28\xa4\xf4\x68\xa2\xe2\x7d\xf8\x91\xac\xa5\x9f\xdf\x44\x5e\x61\x04\x77\x63\x5f\x73\x0c\xd0\x9c\x12\xf3\x2c\xee\x58\x60\x04\xcd\x7c\x5c\x32\x59\xb1\xc3\x78\x5b\x23\x7c\x78\x93\xfd\x3e\x74\x21\x24\xf0\x56\x3d\xf5\x38\x2b\xc1\xfb\xa8\x63\x75\xe7\xe1\x01\x0a\x61\xb4\x0c\x07\x13\xaa\x72\x05\x86\x18\x3c\x19\x58\xcc\xd0\xa2\x91\x08\x4c\xd0\xc3\x1a\x78\x84\x8b\x77\x8c\x27\x94\x15\x63\xcf\x8c\x4b\xcc\x90\xc2\x65\x81\x56\x30\x35\x8e\x76\xc8\x8d\xf1\x76\x0f\x51\x2c\x45\x21\xb6\x3a\xd7\xac\xb1\xbc\x52\xd5\xf9\xed\xef\x39\x5e\x90\x42\xf7\x03\xda\xfa\xbb\x57\xf3\xfc\xf7\x96\x55\xb5\xcd\xb5\xbc\xdc\x87\x57\x1c\xee\xbc\x9a\x6d\x35\x4f\x5a\x65\x67\x3f\xec\x82\xbb\x9a\xfe\xe7\x14\x5d\x12\x40\x0d\x2c\x14\x35\x1a\x74\xc6\xcf\x83\x28\x78\x15\xdc\xa3\xc9\x08\x46\xb7\x19\xc6\x3b\xe4\x45\x53\x0d\xeb\xb6\x69\x02\x5a\xfd\x51\x88\xf9\x8f\x5d\xf0\xa0\x1d\x62\x46\xd6\xc3\x4f\x47\x83\x58\x92\x91\x82\x43\xad\xa2\x9e\x80\xeb\x67\x18\x4b\x8b\x82\xf1\x25\xd2\xb0\x15\x97\x74\x32\x5f\xfe\x36\xfe\xfe\x8d\x9b\xde\x3a\x60\x74\x4b\xe1\x43\x6a\xe0\x7b\xc3\xb7\xde\x85\x52\xfd\x5d\x75\xfe\x5b\x1d\xb1\x56\x43\x28\x5c\x29\xb9\x25\x6d\x5f\xeb\x25\xf8\x15\x00\x00\xff\xff\xe2\x06\x92\xc2\x6a\x04\x00\x00" +var _stakingproxyRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x93\x41\x8f\xda\x30\x10\x85\xef\xf9\x15\x23\x0e\x34\x91\x90\xd5\x43\xd5\x43\x54\xba\xa2\x40\xdb\x15\x2b\x40\x84\x56\xed\xd1\xd8\x13\xb0\x08\x9e\xc8\x71\x54\x50\xb5\xff\xbd\x72\x1c\x67\x03\xb4\x55\xa5\xfa\x62\x60\x3c\x6f\xbe\xf7\x6c\xd4\xa9\x24\x63\xe1\x89\xc4\x11\xe5\x96\x8e\xa8\x2b\xc8\x0d\x9d\xe0\xf5\xf9\x69\x35\x5d\xcc\x67\xdb\xd5\x62\xbe\x9c\xcc\x66\x9b\x79\x96\x45\xed\xe9\xcc\xf2\xa3\xd2\xfb\xb5\xa1\xf3\x25\x9c\xce\xb6\x93\xc5\xe3\xf2\xd3\x7a\xb3\xfa\xf6\x3d\x1c\x8f\xac\xe1\xba\xe2\xc2\x2a\xd2\x31\x97\xd2\x60\x55\xa5\x30\xf1\x1f\x46\xa0\x64\x0a\x99\x35\x4a\xef\x47\xc0\x4f\x54\x6b\x9b\xc2\x97\x8f\xea\xfc\xf6\x4d\x02\x3f\xa3\x08\x00\xa0\x40\x0b\x07\x2a\x24\x9a\x0d\xe6\x29\xf0\xda\x1e\xe2\x3e\x2b\x6b\xb6\x55\x89\x86\xbb\x21\x55\x02\xc3\xfb\xf2\xe7\x46\xc0\x0b\x96\x06\x4b\x6e\x30\xe6\x42\xf8\x81\x8d\xe4\x07\x32\x86\x7e\x7c\xe5\x45\x8d\x09\x0c\x27\xbe\xe6\x20\xa0\x5d\x15\x16\x39\xeb\x40\x60\x0c\x6d\x3f\xab\x2c\x19\xbe\x47\xb6\x6b\x14\xde\xfd\x0f\xe0\xfb\xd8\x45\x99\xc2\x9f\xea\x99\x1f\xb5\xe6\xf6\x90\x74\x60\x6e\x3d\x3c\x40\xc9\xb5\x12\xf1\x60\x4a\x75\x21\x41\x93\x05\xcf\x03\x06\x73\x34\xa8\x05\x82\x25\xe8\x69\x0d\xbc\xc2\xb3\x0f\x05\xcf\x28\x6a\x8b\x3d\xbf\x2e\x77\x4d\x12\x3d\x38\xb5\xa6\xf7\x68\xdb\x6c\xc2\x6d\x26\x4c\xf0\x92\xef\x54\xa1\xac\xc2\xea\x8a\x2a\x44\x32\xec\xbf\x16\xb6\x24\x89\xee\x07\x34\xcd\xf7\xe0\xfc\xaa\xd3\xad\xbb\xa6\x40\x32\x0d\xf3\x2e\xeb\x7a\x57\x28\xe1\xe2\xb8\xea\xfe\xe7\x6c\x9c\x3f\xa0\x56\x16\xca\x46\x0d\x3a\x3b\x97\x41\x12\xdd\xc5\xf1\xa8\x73\x82\xf1\x6d\x32\x6c\x8f\x76\xd9\x56\xe3\xe6\xd8\x2c\x05\x25\xff\x0a\xa2\x5f\x59\x17\x27\x28\xa7\x98\x93\xf1\xf2\xb3\xf1\x80\x09\xd2\x82\xdb\x58\xc9\xa4\x07\x70\xfd\xfe\x98\x30\xc8\x2d\xbe\x64\x19\x07\xb8\xb4\xc3\x7c\xf9\x4b\xf9\xfd\x37\x6e\x7a\xf7\x00\xe3\xdb\x11\x3e\xa4\x56\xbe\xd7\x7c\xeb\x9d\x4b\xd9\xbf\xab\xce\x7f\xe0\x60\x4a\x8e\xa0\x74\xa5\xf4\x76\x68\x78\x83\xcf\xd1\xaf\x00\x00\x00\xff\xff\xcf\xd9\x9d\x4b\x86\x04\x00\x00" func stakingproxyRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5917,7 +5917,7 @@ func stakingproxyRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0xbd, 0x6a, 0x1b, 0xa4, 0xdb, 0xb0, 0xf, 0xe7, 0x71, 0x78, 0xd1, 0x20, 0xb5, 0xaa, 0x1f, 0xf6, 0xf6, 0x15, 0x62, 0x84, 0x12, 0x23, 0x5d, 0x8c, 0x21, 0xd6, 0xed, 0x88, 0x21, 0x1, 0xf6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb1, 0x25, 0xcc, 0x9, 0x6a, 0x2f, 0x36, 0xec, 0x3, 0x88, 0x62, 0x22, 0xb2, 0x59, 0x1a, 0x16, 0x38, 0x2c, 0xb6, 0xdd, 0x30, 0x6a, 0x7a, 0x41, 0x43, 0xa0, 0x95, 0x8b, 0x2f, 0x57, 0x30, 0xda}} return a, nil } @@ -5981,7 +5981,7 @@ func stakingproxyRequest_unstakingCdc() (*asset, error) { return a, nil } -var _stakingproxySetup_node_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\x41\x6b\x02\x31\x10\x85\xef\xf9\x15\x73\x92\x15\x54\x7a\x16\x5b\x90\x5a\xda\x52\xd0\xc5\x2d\xa5\x3d\x8e\x71\xaa\xa1\x6b\x12\x26\xb3\xa2\x88\xff\xbd\x04\xdb\x6d\x42\x29\x65\xe7\x90\x43\x98\xf7\xbe\xf7\x12\xb3\xf3\x8e\x05\x2a\xc1\x0f\x63\x37\x25\xbb\xc3\x11\xde\xd9\xed\xe0\xea\x50\x3d\x4f\x9f\x1e\xe7\xf7\xe5\x72\xf1\xfa\x36\x9d\xcd\x96\x77\x55\xa5\x94\x30\xda\x80\x5a\x8c\xb3\x45\x1f\x4e\x4a\x01\x00\x78\x26\x8f\x4c\x85\x75\x6b\x5a\x78\x62\x14\xc7\x63\xc0\x46\xb6\x45\x85\x7b\x7a\xc1\xba\xa1\x3e\xf4\xa6\x5a\xbb\xc6\x4a\x94\xc1\xd7\xd4\x24\xe0\x23\xf4\xc1\xd5\x6b\x62\x98\x0c\xb3\x28\x23\xcd\x84\x42\xe5\xcf\x46\xd1\x57\xad\x38\xc5\x8d\x82\x38\xc6\x0d\x8d\x02\xee\xa9\x98\x0c\x13\xd3\x01\x88\x1b\xe7\xb6\xf3\x44\x79\x8b\x1e\x57\xa6\x36\x72\xac\x2e\x16\x25\xca\x36\xa1\xc4\x88\x36\xdf\x87\xeb\x9c\xad\xbf\x2d\x0c\x85\x36\x88\x09\xa1\xa1\x49\xef\x17\x37\x5e\x10\x27\x95\x4e\xff\xaf\x94\xcd\xaa\x36\xfa\x7c\x53\xb4\xa9\xe2\x74\xab\xd4\x4a\xff\x7a\xc1\xac\x85\x8f\xc4\xb0\xed\x0c\xbc\x24\x8d\xbc\x41\x26\x45\xe9\xfa\x05\x49\xde\x78\x9e\xd5\x59\x7d\x06\x00\x00\xff\xff\xb2\x78\x1c\x10\xad\x02\x00\x00" +var _stakingproxySetup_node_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\xc1\x4a\x03\x31\x10\x86\xef\x79\x8a\x39\x95\x2d\xb4\xc5\x73\xa9\x42\xb1\xa2\x22\xb4\x4b\x23\xa2\xc7\x69\x3a\xb6\xc1\x6d\x12\x26\xb3\xa5\x45\xfa\xee\x12\x94\x35\xa9\x08\x3a\x87\x3d\x6c\x66\xfe\xef\x9b\xb1\xbb\xe0\x59\x40\x0b\xbe\x59\xb7\xa9\xd9\x1f\x8e\xf0\xca\x7e\x07\x17\x07\xfd\x38\x7d\xb8\x9f\xdf\xd6\xcb\xc5\xf3\xcb\x74\x36\x5b\xde\x68\xad\x94\x30\xba\x88\x46\xac\x77\x55\x1f\xde\x95\x02\x00\x08\x4c\x01\x99\x2a\xe7\xd7\xb4\x08\xc4\x28\x9e\xc7\x80\xad\x6c\x2b\x8d\x7b\x7a\xc2\xa6\xa5\x01\x5c\x63\xc0\x95\x6d\xac\x58\x8a\x7d\xe8\x4d\x8d\xf1\xad\x93\x14\x02\x5f\xd5\x90\x40\x48\x0a\x77\xbe\x59\x13\xc3\x64\x58\x88\x8d\x0c\x13\x0a\xd5\xdf\x1d\x55\x5f\x75\xc3\x39\x7c\x14\xc5\x33\x6e\x68\x14\x71\x4f\xd5\x64\x98\x85\x0e\x40\xfc\xb8\x8c\x9d\x67\x93\x9d\xe4\x51\x7f\x46\xd4\x28\xdb\x8c\x92\x14\x5d\xd9\x0f\x97\x25\xdb\x64\x7b\x76\x22\x36\xc6\x96\x26\xbd\x1f\xdc\xf4\x83\x38\x5b\xe9\xaa\xea\x58\xa9\xfe\x27\xda\x8d\xfe\x76\x97\xc2\x2d\xb4\xab\xc6\xc6\x6d\x09\x3c\x5b\x6e\x50\x3c\xa2\xfc\xe9\x74\x75\x0a\x36\x67\x42\xe9\x7b\x52\x27\xf5\x11\x00\x00\xff\xff\x16\xab\xcc\xf3\x72\x02\x00\x00" func stakingproxySetup_node_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -5997,7 +5997,7 @@ func stakingproxySetup_node_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/setup_node_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x55, 0x80, 0xca, 0x2d, 0xa8, 0x16, 0xc2, 0x4f, 0x8a, 0xbd, 0x4c, 0x54, 0x6, 0xb8, 0x80, 0x56, 0x74, 0xd7, 0xb1, 0x31, 0x76, 0x2d, 0x22, 0x9c, 0x44, 0xac, 0x42, 0xa4, 0x4f, 0x7a, 0x1d, 0xcf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x53, 0x2f, 0x19, 0x22, 0x4e, 0xb, 0x1d, 0x4c, 0x94, 0xc1, 0xf7, 0x95, 0xc6, 0xe0, 0xf0, 0x9e, 0xd7, 0xa9, 0x8a, 0xab, 0x84, 0xb5, 0x9b, 0xab, 0x86, 0x35, 0x5d, 0xef, 0x7c, 0x72, 0xc0, 0x14}} return a, nil } diff --git a/lib/go/templates/manifest.mainnet.json b/lib/go/templates/manifest.mainnet.json index 316490320..c038bf6c2 100755 --- a/lib/go/templates/manifest.mainnet.json +++ b/lib/go/templates/manifest.mainnet.json @@ -247,7 +247,7 @@ { "id": "TH.16", "name": "Register Operator Node", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).capabilities\n .borrow\u003c\u0026StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}\u003e(\n StakingProxy.NodeOperatorCapabilityPublicPath\n )\n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).capabilities\n .borrow\u003c\u0026StakingProxy.NodeStakerProxyHolder\u003e(\n StakingProxy.NodeOperatorCapabilityPublicPath\n )\n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", "arguments": [ { "type": "Address", @@ -284,7 +284,7 @@ } ], "network": "mainnet", - "hash": "b93128438ecb41c0a66ac921d2ede64ad85423d53a815e6b9e078eafc0fff282" + "hash": "56237b0ce7c4e3d166cfe1eb30fe184bf354b4bd25743bf92760cdeeebe2ba9c" }, { "id": "TH.17", @@ -460,15 +460,15 @@ { "id": "SCO.01", "name": "Setup Staking Collection", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport FlowIDTableStaking from 0x8624b52f9ddcd04a\nimport LockedTokens from 0x8d0e87b65159ae63\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// This transaction sets up an account to use a staking collection\n/// It will work regardless of whether they have a regular account, a two-account locked tokens setup,\n/// or staking objects stored in the unlocked account\n\ntransaction {\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // If there isn't already a staking collection\n if signer.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath) == nil {\n\n // Create private capabilities for the token holder and unlocked vault\n let lockedHolder = signer.capabilities.storage.issue\u003c\u0026LockedTokens.TokenHolder\u003e(target: LockedTokens.TokenHolderStoragePath)!\n let flowToken = signer.capabilities.storage.issue\u003c\u0026FlowToken.Vault\u003e(target: /storage/flowTokenVault)!\n\n // Create a new Staking Collection and put it in storage\n if lockedHolder.check() {\n newAccount.storage.save(\n \u003c- FlowStakingCollection.createStakingCollection(\n unlockedVault: flowToken,\n tokenHolder: lockedHolder\n ),\n to: FlowStakingCollection.StakingCollectionStoragePath\n )\n } else {\n newAccount.storage.save(\n \u003c- FlowStakingCollection.createStakingCollection(\n unlockedVault: flowToken,\n tokenHolder: nil\n ),\n to: FlowStakingCollection.StakingCollectionStoragePath\n )\n }\n\n // Publish a capability to the created staking collection.\n let stakingCollectionCap = newAccount.capabilities.storage.issue\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(\n target: FlowStakingCollection.StakingCollectionStoragePath\n )\n\n newAccount.capabilities.publish(\n stakingCollectionCap\n at: FlowStakingCollection.StakingCollectionPublicPath\n )\n }\n\n // borrow a reference to the staking collection\n let collectionRef = signer.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow staking collection reference\")\n\n // If there is a node staker object in the account, put it in the staking collection\n if signer.storage.borrow\u003c\u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath) != nil {\n let node \u003c- signer.storage.load\u003c@FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)!\n collectionRef.addNodeObject(\u003c-node, machineAccountInfo: nil)\n }\n\n // If there is a delegator object in the account, put it in the staking collection\n if signer.storage.borrow\u003c\u0026FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath) != nil {\n let delegator \u003c- signer.storage.load\u003c@FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath)!\n collectionRef.addDelegatorObject(\u003c-delegator)\n }\n }\n}\n", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport FlowIDTableStaking from 0x8624b52f9ddcd04a\nimport LockedTokens from 0x8d0e87b65159ae63\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// This transaction sets up an account to use a staking collection\n/// It will work regardless of whether they have a regular account, a two-account locked tokens setup,\n/// or staking objects stored in the unlocked account\n\ntransaction {\n prepare(signer: auth(BorrowValue, Storage, Capabilities) \u0026Account) {\n\n // If there isn't already a staking collection\n if signer.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath) == nil {\n\n // Create private capabilities for the token holder and unlocked vault\n let lockedHolder = signer.capabilities.storage.issue\u003cauth(FungibleToken.Withdrawable, LockedTokens.TokenOperations) \u0026LockedTokens.TokenHolder\u003e(LockedTokens.TokenHolderStoragePath)!\n let flowToken = signer.capabilities.storage.issue\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(/storage/flowTokenVault)!\n\n // Create a new Staking Collection and put it in storage\n if lockedHolder.check() {\n signer.storage.save(\n \u003c- FlowStakingCollection.createStakingCollection(\n unlockedVault: flowToken,\n tokenHolder: lockedHolder\n ),\n to: FlowStakingCollection.StakingCollectionStoragePath\n )\n } else {\n signer.storage.save(\n \u003c- FlowStakingCollection.createStakingCollection(\n unlockedVault: flowToken,\n tokenHolder: nil\n ),\n to: FlowStakingCollection.StakingCollectionStoragePath\n )\n }\n\n // Publish a capability to the created staking collection.\n let stakingCollectionCap = signer.capabilities.storage.issue\u003c\u0026FlowStakingCollection.StakingCollection\u003e(\n FlowStakingCollection.StakingCollectionStoragePath\n )\n\n signer.capabilities.publish(\n stakingCollectionCap,\n at: FlowStakingCollection.StakingCollectionPublicPath\n )\n }\n\n // borrow a reference to the staking collection\n let collectionRef = signer.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow staking collection reference\")\n\n // If there is a node staker object in the account, put it in the staking collection\n if signer.storage.borrow\u003c\u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath) != nil {\n let node \u003c- signer.storage.load\u003c@FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)!\n collectionRef.addNodeObject(\u003c-node, machineAccountInfo: nil)\n }\n\n // If there is a delegator object in the account, put it in the staking collection\n if signer.storage.borrow\u003c\u0026FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath) != nil {\n let delegator \u003c- signer.storage.load\u003c@FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath)!\n collectionRef.addDelegatorObject(\u003c-delegator)\n }\n }\n}\n", "arguments": [], "network": "mainnet", - "hash": "911e68d071a5b3847018e0270ebbd289fd0fb7e58c73f0e9cd917f3d822175bb" + "hash": "35b330564b034bcde216d816ba0030c5bb7284ca5913d8ecc33947281f129dc8" }, { "id": "SCO.02", "name": "Register Delegator", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Registers a delegator in the staking collection resource\n/// for the specified nodeID and the amount of tokens to commit\n\ntransaction(id: String, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.registerDelegator(nodeID: id, amount: amount) \n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Registers a delegator in the staking collection resource\n/// for the specified nodeID and the amount of tokens to commit\n\ntransaction(id: String, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.registerDelegator(nodeID: id, amount: amount) \n }\n}\n", "arguments": [ { "type": "String", @@ -494,12 +494,12 @@ } ], "network": "mainnet", - "hash": "150d5c5875805fd081e8f35b943df01eb4ae03ef61751db3a0ede5a6903ce17c" + "hash": "8137213e83a7e35462af3142a14d8472b7de791689454970950527f55482d90e" }, { "id": "SCO.03", "name": "Register Node", - "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n publicKeys: [Crypto.KeyListEntry]?) {\n\n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account\n ) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys! {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n publicKeys: [Crypto.KeyListEntry]?) {\n\n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account\n ) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys! {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -619,12 +619,12 @@ } ], "network": "mainnet", - "hash": "a670c9764138e72b36298137b40dc3084751094f56fb7315acb1ed50afdf3581" + "hash": "535eb69e4e776f40dcd96f5ec0ea9b3fec47d97dbde0de72790def9cda1356f0" }, { "id": "SCO.04", "name": "Create Machine Account", - "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Creates a machine account for a node that is already in the staking collection\n/// and adds public keys to the new account\n\ntransaction(nodeID: String, publicKeys: [Crypto.KeyListEntry]) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n } else {\n panic(\"Could not create a machine account for the node\")\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Creates a machine account for a node that is already in the staking collection\n/// and adds public keys to the new account\n\ntransaction(nodeID: String, publicKeys: [Crypto.KeyListEntry]) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n } else {\n panic(\"Could not create a machine account for the node\")\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -676,12 +676,12 @@ } ], "network": "mainnet", - "hash": "228675a04f21ba0daba3b8d225032fccc7dc606291f5aa6bb9d2868d9cf45a6c" + "hash": "8967a6b6642f1bb66a3fe18689de23b9837e01fdc9235c50afdab94b8f63fad3" }, { "id": "SCO.05", "name": "Request Unstaking", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Requests unstaking for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.requestUnstaking(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Requests unstaking for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.requestUnstaking(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -725,12 +725,12 @@ } ], "network": "mainnet", - "hash": "8f402f11f8b2924e91d3a559b3d6929387dbf86dcf6fe77772336b51805f4c23" + "hash": "89f788917c84f9749f595b24ee81ab7999f3a3ba4338b93218bde5864cc4e141" }, { "id": "SCO.06", "name": "Stake New Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits new tokens to stake for the specified node or delegator in the staking collection\n/// The tokens from the locked vault are used first, if it exists\n/// followed by the tokens from the unlocked vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeNewTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits new tokens to stake for the specified node or delegator in the staking collection\n/// The tokens from the locked vault are used first, if it exists\n/// followed by the tokens from the unlocked vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeNewTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -774,12 +774,12 @@ } ], "network": "mainnet", - "hash": "471d880b2d00005d6236b671867bc8f5f7879e61ac43fc9702ec688f533453ec" + "hash": "1421ed79bf556c3585476ea5475c9d6f51c6999eaa2b4c88d20370c024e7da9a" }, { "id": "SCO.07", "name": "Stake Rewarded Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits rewarded tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits rewarded tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -823,12 +823,12 @@ } ], "network": "mainnet", - "hash": "ad13f74292868cff1cb12988ef37582906c354c9d289e246ce0752a2f8fc0fd3" + "hash": "92cefda10b0c6bb92541d3d6724e746cd87a327cca6f55d5fba33ac932cc3601" }, { "id": "SCO.08", "name": "Stake Unstaked Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits unstaked tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits unstaked tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -872,12 +872,12 @@ } ], "network": "mainnet", - "hash": "445c0ada7fa24a8b6721833eb0e6815744e9c6411319dfbefe0dc4c51486f2cb" + "hash": "7c235396508b698b7025dcc20cd65dbfb8bcec61e495f34521a3d5f55c0c7a02" }, { "id": "SCO.09", "name": "Unstake All", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Requests to unstake ALL tokens for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.unstakeAll(nodeID: nodeID)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Requests to unstake ALL tokens for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.unstakeAll(nodeID: nodeID)\n }\n}\n", "arguments": [ { "type": "String", @@ -892,12 +892,12 @@ } ], "network": "mainnet", - "hash": "cdfa6534d531b6b8a62914ce0fbaad4e8418652057b921c2573ac7b6eca51212" + "hash": "dbf5f65cc34c59d102985fad7d4200949fa802934fb401551b2577ce227597e7" }, { "id": "SCO.10", "name": "Withdraw Rewarded Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw rewarded tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw rewarded tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -941,12 +941,12 @@ } ], "network": "mainnet", - "hash": "08bb26c1c7eef108bed93d98ebe74cbabe29b738cd13ee1666652cf525035584" + "hash": "9761a96ef85b73c0b4bb9e93110a5e774c128f37b0fcd91568aefb60cbeba034" }, { "id": "SCO.11", "name": "Withdraw Unstaked Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw unstaked tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault if it is there\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw unstaked tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault if it is there\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -990,12 +990,12 @@ } ], "network": "mainnet", - "hash": "4d3ccd5be7bc28aa5fc131b7a58e38a951b892313558444ed787244602fd0746" + "hash": "b794b6630e6fe69d84b149d4fc5df1305b132bae7e3dd954418ac2afcea2692b" }, { "id": "SCO.12", "name": "Close Stake", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Closes out a staking object in the staking collection\n// This does not remove the record from the identity table,\n// but it does mean that the account that closes it cannot ever access it again\n\ntransaction(nodeID: String, delegatorID: UInt32?) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.closeStake(nodeID: nodeID, delegatorID: delegatorID)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Closes out a staking object in the staking collection\n// This does not remove the record from the identity table,\n// but it does mean that the account that closes it cannot ever access it again\n\ntransaction(nodeID: String, delegatorID: UInt32?) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.closeStake(nodeID: nodeID, delegatorID: delegatorID)\n }\n}\n", "arguments": [ { "type": "String", @@ -1028,12 +1028,12 @@ } ], "network": "mainnet", - "hash": "2d48afaf9b2f8bf83ac1879cd77b726c1502d78cf6a103cfaee9633e6facc129" + "hash": "765791c3185adfbdbf5889bd45e5cb4f83930a7d49f9598c4c22908540d7c6c4" }, { "id": "SCO.13", "name": "Transfer Node", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeStaker object from an authorizers accoount\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeStaker object from an authorizers accoount\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", "arguments": [ { "type": "String", @@ -1059,12 +1059,12 @@ } ], "network": "mainnet", - "hash": "93199b9c534b50efff8b0296411597aeda77c00ac8e8626d87f6d371702fd5e1" + "hash": "45463dc2320d4cbd83b529448548d71319524c21c33abe5ab4f963dc4c4114b5" }, { "id": "SCO.14", "name": "Transfer Delegator", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeDelegator object from an authorizers accoount\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeDelegator object from an authorizers accoount\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", "arguments": [ { "type": "String", @@ -1101,12 +1101,12 @@ } ], "network": "mainnet", - "hash": "323dec8d78355bf2b1c0407df44db1f52eb3a8c67047d44965ecb6926f97401e" + "hash": "1264f0d5745092380fe945eebed4bbca63104cdc148f2b4a11012f28c72c1c86" }, { "id": "SCO.15", "name": "Withdraw From Machine Account", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw tokens from the machine account\n/// The tokens are automatically deposited to the unlocked account vault\n\ntransaction(nodeID: String, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawFromMachineAccount(nodeID: nodeID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw tokens from the machine account\n/// The tokens are automatically deposited to the unlocked account vault\n\ntransaction(nodeID: String, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawFromMachineAccount(nodeID: nodeID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -1132,12 +1132,12 @@ } ], "network": "mainnet", - "hash": "1e6c9182b99f81993136a908e7fb3972ba77123f34121e77328864188f5b314e" + "hash": "b0994287545820e8cd294f31a2329a884331903aa1ef91ed5a12368344f03740" }, { "id": "SCO.16", "name": "Update Networking Address", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Changes the networking address for the specified node\n\ntransaction(nodeID: String, newAddress: String) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.updateNetworkingAddress(nodeID: nodeID, newAddress: newAddress)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Changes the networking address for the specified node\n\ntransaction(nodeID: String, newAddress: String) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.updateNetworkingAddress(nodeID: nodeID, newAddress: newAddress)\n }\n}\n", "arguments": [ { "type": "String", @@ -1163,7 +1163,7 @@ } ], "network": "mainnet", - "hash": "689f6d8bf2246c1cf9e41edcbc8c7ad9be1e55d31182a27b1fa0c67fc68d1857" + "hash": "6881e92a48f6025ab8b86dd02590544d1517ee05a123e95e41668cafffe6f88d" } ] } \ No newline at end of file diff --git a/lib/go/templates/manifest.testnet.json b/lib/go/templates/manifest.testnet.json index dd978784f..1ee6d86fd 100755 --- a/lib/go/templates/manifest.testnet.json +++ b/lib/go/templates/manifest.testnet.json @@ -247,7 +247,7 @@ { "id": "TH.16", "name": "Register Operator Node", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).capabilities\n .borrow\u003c\u0026StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}\u003e(\n StakingProxy.NodeOperatorCapabilityPublicPath\n )\n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).capabilities\n .borrow\u003c\u0026StakingProxy.NodeStakerProxyHolder\u003e(\n StakingProxy.NodeOperatorCapabilityPublicPath\n )\n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", "arguments": [ { "type": "Address", @@ -284,7 +284,7 @@ } ], "network": "testnet", - "hash": "1e71a6cd21af513921408df289070468e0a90538c7b55934855aaba710099175" + "hash": "9768a26085d718e69939f898b33cbe17cdcc8ef33d6c8d7ffda057fdced8324f" }, { "id": "TH.17", @@ -460,15 +460,15 @@ { "id": "SCO.01", "name": "Setup Staking Collection", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport FlowIDTableStaking from 0x9eca2b38b18b5dfe\nimport LockedTokens from 0x95e019a17d0e23d7\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// This transaction sets up an account to use a staking collection\n/// It will work regardless of whether they have a regular account, a two-account locked tokens setup,\n/// or staking objects stored in the unlocked account\n\ntransaction {\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // If there isn't already a staking collection\n if signer.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath) == nil {\n\n // Create private capabilities for the token holder and unlocked vault\n let lockedHolder = signer.capabilities.storage.issue\u003c\u0026LockedTokens.TokenHolder\u003e(target: LockedTokens.TokenHolderStoragePath)!\n let flowToken = signer.capabilities.storage.issue\u003c\u0026FlowToken.Vault\u003e(target: /storage/flowTokenVault)!\n\n // Create a new Staking Collection and put it in storage\n if lockedHolder.check() {\n newAccount.storage.save(\n \u003c- FlowStakingCollection.createStakingCollection(\n unlockedVault: flowToken,\n tokenHolder: lockedHolder\n ),\n to: FlowStakingCollection.StakingCollectionStoragePath\n )\n } else {\n newAccount.storage.save(\n \u003c- FlowStakingCollection.createStakingCollection(\n unlockedVault: flowToken,\n tokenHolder: nil\n ),\n to: FlowStakingCollection.StakingCollectionStoragePath\n )\n }\n\n // Publish a capability to the created staking collection.\n let stakingCollectionCap = newAccount.capabilities.storage.issue\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(\n target: FlowStakingCollection.StakingCollectionStoragePath\n )\n\n newAccount.capabilities.publish(\n stakingCollectionCap\n at: FlowStakingCollection.StakingCollectionPublicPath\n )\n }\n\n // borrow a reference to the staking collection\n let collectionRef = signer.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow staking collection reference\")\n\n // If there is a node staker object in the account, put it in the staking collection\n if signer.storage.borrow\u003c\u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath) != nil {\n let node \u003c- signer.storage.load\u003c@FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)!\n collectionRef.addNodeObject(\u003c-node, machineAccountInfo: nil)\n }\n\n // If there is a delegator object in the account, put it in the staking collection\n if signer.storage.borrow\u003c\u0026FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath) != nil {\n let delegator \u003c- signer.storage.load\u003c@FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath)!\n collectionRef.addDelegatorObject(\u003c-delegator)\n }\n }\n}\n", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport FlowIDTableStaking from 0x9eca2b38b18b5dfe\nimport LockedTokens from 0x95e019a17d0e23d7\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// This transaction sets up an account to use a staking collection\n/// It will work regardless of whether they have a regular account, a two-account locked tokens setup,\n/// or staking objects stored in the unlocked account\n\ntransaction {\n prepare(signer: auth(BorrowValue, Storage, Capabilities) \u0026Account) {\n\n // If there isn't already a staking collection\n if signer.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath) == nil {\n\n // Create private capabilities for the token holder and unlocked vault\n let lockedHolder = signer.capabilities.storage.issue\u003cauth(FungibleToken.Withdrawable, LockedTokens.TokenOperations) \u0026LockedTokens.TokenHolder\u003e(LockedTokens.TokenHolderStoragePath)!\n let flowToken = signer.capabilities.storage.issue\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(/storage/flowTokenVault)!\n\n // Create a new Staking Collection and put it in storage\n if lockedHolder.check() {\n signer.storage.save(\n \u003c- FlowStakingCollection.createStakingCollection(\n unlockedVault: flowToken,\n tokenHolder: lockedHolder\n ),\n to: FlowStakingCollection.StakingCollectionStoragePath\n )\n } else {\n signer.storage.save(\n \u003c- FlowStakingCollection.createStakingCollection(\n unlockedVault: flowToken,\n tokenHolder: nil\n ),\n to: FlowStakingCollection.StakingCollectionStoragePath\n )\n }\n\n // Publish a capability to the created staking collection.\n let stakingCollectionCap = signer.capabilities.storage.issue\u003c\u0026FlowStakingCollection.StakingCollection\u003e(\n FlowStakingCollection.StakingCollectionStoragePath\n )\n\n signer.capabilities.publish(\n stakingCollectionCap,\n at: FlowStakingCollection.StakingCollectionPublicPath\n )\n }\n\n // borrow a reference to the staking collection\n let collectionRef = signer.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow staking collection reference\")\n\n // If there is a node staker object in the account, put it in the staking collection\n if signer.storage.borrow\u003c\u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath) != nil {\n let node \u003c- signer.storage.load\u003c@FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)!\n collectionRef.addNodeObject(\u003c-node, machineAccountInfo: nil)\n }\n\n // If there is a delegator object in the account, put it in the staking collection\n if signer.storage.borrow\u003c\u0026FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath) != nil {\n let delegator \u003c- signer.storage.load\u003c@FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath)!\n collectionRef.addDelegatorObject(\u003c-delegator)\n }\n }\n}\n", "arguments": [], "network": "testnet", - "hash": "4d421c0f4607d09422189ce322963a0114d4cf3aefa2f8e308a7a8ec62fd8074" + "hash": "0327a19adec5594c67e7a0d6e94697ab46443ea94c45ea014c6eaa09e71c91bf" }, { "id": "SCO.02", "name": "Register Delegator", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Registers a delegator in the staking collection resource\n/// for the specified nodeID and the amount of tokens to commit\n\ntransaction(id: String, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.registerDelegator(nodeID: id, amount: amount) \n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Registers a delegator in the staking collection resource\n/// for the specified nodeID and the amount of tokens to commit\n\ntransaction(id: String, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.registerDelegator(nodeID: id, amount: amount) \n }\n}\n", "arguments": [ { "type": "String", @@ -494,12 +494,12 @@ } ], "network": "testnet", - "hash": "ac57f3527fd8f0b9d005cf44983d354922845ccbd6e27ee2c28e31fb71940444" + "hash": "bbc61359628d6e0c30c1338bfba7a1dba424b866c3f5eb13388dfd3f633d6f02" }, { "id": "SCO.03", "name": "Register Node", - "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n publicKeys: [Crypto.KeyListEntry]?) {\n\n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account\n ) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys! {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n publicKeys: [Crypto.KeyListEntry]?) {\n\n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account\n ) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys! {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -619,12 +619,12 @@ } ], "network": "testnet", - "hash": "a16e0fa9cb0afbd8246a16b9e0fb50626bdc799767ae8a572175f5fd2168d939" + "hash": "a98abb80fe8321b37c65d66972d27cc7da9fe7d5e575fe39f95a71a84e306d31" }, { "id": "SCO.04", "name": "Create Machine Account", - "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Creates a machine account for a node that is already in the staking collection\n/// and adds public keys to the new account\n\ntransaction(nodeID: String, publicKeys: [Crypto.KeyListEntry]) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n } else {\n panic(\"Could not create a machine account for the node\")\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Creates a machine account for a node that is already in the staking collection\n/// and adds public keys to the new account\n\ntransaction(nodeID: String, publicKeys: [Crypto.KeyListEntry]) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n } else {\n panic(\"Could not create a machine account for the node\")\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -676,12 +676,12 @@ } ], "network": "testnet", - "hash": "b8e73c7cfa1f1ba619c91e142b26888ffacece1b356045dffceca589266200b4" + "hash": "f81cbe9d07980c4ac80257f63476fde140d08b0b040ed2ac8b3117067b95a19c" }, { "id": "SCO.05", "name": "Request Unstaking", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Requests unstaking for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.requestUnstaking(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Requests unstaking for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.requestUnstaking(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -725,12 +725,12 @@ } ], "network": "testnet", - "hash": "0b33bb090fd217f756976c20660fcf9cf362af676e000ef86cfa1f8aa5d611a1" + "hash": "0e868a8c719ebdf067198ec805e6d946b8d6b6ecc8780e141ecc6e7f1a23dcb4" }, { "id": "SCO.06", "name": "Stake New Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits new tokens to stake for the specified node or delegator in the staking collection\n/// The tokens from the locked vault are used first, if it exists\n/// followed by the tokens from the unlocked vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeNewTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits new tokens to stake for the specified node or delegator in the staking collection\n/// The tokens from the locked vault are used first, if it exists\n/// followed by the tokens from the unlocked vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeNewTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -774,12 +774,12 @@ } ], "network": "testnet", - "hash": "03ce1a64218ea46b104ead96da3135fb3343e4063aa286508108f7d46166b82b" + "hash": "bd567a1cff4472091604f49eaa32bbb8b25dea7f4bdb7f7a4a40b1f9865d0169" }, { "id": "SCO.07", "name": "Stake Rewarded Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits rewarded tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits rewarded tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -823,12 +823,12 @@ } ], "network": "testnet", - "hash": "0d8ec09b18015d164c498d3c69783dba670104e91068e3f1e11d5c1eb8ed1d92" + "hash": "39a656942f7255daaae8d414be2f9a55a7f1b2c0016d6506ccc60764dc2a5d24" }, { "id": "SCO.08", "name": "Stake Unstaked Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits unstaked tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits unstaked tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -872,12 +872,12 @@ } ], "network": "testnet", - "hash": "38f906b61a68a2fe47c08edba17b921a052fa1ecd4155f2ac3715d577439ac4f" + "hash": "8aa46983fcdd33905720c59b280743817f9153fb04252928ffef2b672e4b5c93" }, { "id": "SCO.09", "name": "Unstake All", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Requests to unstake ALL tokens for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.unstakeAll(nodeID: nodeID)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Requests to unstake ALL tokens for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.unstakeAll(nodeID: nodeID)\n }\n}\n", "arguments": [ { "type": "String", @@ -892,12 +892,12 @@ } ], "network": "testnet", - "hash": "7dab3b239fe8140fa1fcc89f7c63ca13d824b899427b5b5d4915b428f2f52c3b" + "hash": "20f46888d167b973bb903248dbbcef45d4529bc41b7f7e3a03148bd909988c60" }, { "id": "SCO.10", "name": "Withdraw Rewarded Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw rewarded tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw rewarded tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -941,12 +941,12 @@ } ], "network": "testnet", - "hash": "e0e26d5cae268a2b2b6e57509ed032d4dca113076feeb4039eb0abd6782f91c2" + "hash": "6dc4302bdebb2ce5c154fe7726f00d38a9cef741995494eb925bc793123d44ed" }, { "id": "SCO.11", "name": "Withdraw Unstaked Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw unstaked tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault if it is there\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw unstaked tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault if it is there\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -990,12 +990,12 @@ } ], "network": "testnet", - "hash": "f7aeface63d5469ed2ec4d828411dde7892daeb38af70dcea7d50f87bbe08d81" + "hash": "fe68dea0de693f29fdc7c46ed712f4c2c11b950d23edea0fdb767e04f71d6f34" }, { "id": "SCO.12", "name": "Close Stake", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Closes out a staking object in the staking collection\n// This does not remove the record from the identity table,\n// but it does mean that the account that closes it cannot ever access it again\n\ntransaction(nodeID: String, delegatorID: UInt32?) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.closeStake(nodeID: nodeID, delegatorID: delegatorID)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Closes out a staking object in the staking collection\n// This does not remove the record from the identity table,\n// but it does mean that the account that closes it cannot ever access it again\n\ntransaction(nodeID: String, delegatorID: UInt32?) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.closeStake(nodeID: nodeID, delegatorID: delegatorID)\n }\n}\n", "arguments": [ { "type": "String", @@ -1028,12 +1028,12 @@ } ], "network": "testnet", - "hash": "cfaf011638692861df2f78ee532e41fcc351be37e2cc345d32941f86dfc283e1" + "hash": "b488275765d1c1166028a072f381d7dd15aadd30805e3b9b8ecdb9e8cefde91c" }, { "id": "SCO.13", "name": "Transfer Node", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeStaker object from an authorizers accoount\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeStaker object from an authorizers accoount\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", "arguments": [ { "type": "String", @@ -1059,12 +1059,12 @@ } ], "network": "testnet", - "hash": "baed78fd47e1579f8fff8deba3060986cf79ed179027a094624da645612635d5" + "hash": "57859903fde52b65b166f1f8fee9c18d6c7260739a8753a79ef014b02f0b2fab" }, { "id": "SCO.14", "name": "Transfer Delegator", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeDelegator object from an authorizers accoount\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeDelegator object from an authorizers accoount\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", "arguments": [ { "type": "String", @@ -1101,12 +1101,12 @@ } ], "network": "testnet", - "hash": "d5f6d5d1bc21315467fdca5fb53255171c8355571241ce93937c8772fd8d01d4" + "hash": "770b1a66b462e46e2cfaedaebedfddc94fe4e3a877b7e73f73b444f802c8c578" }, { "id": "SCO.15", "name": "Withdraw From Machine Account", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw tokens from the machine account\n/// The tokens are automatically deposited to the unlocked account vault\n\ntransaction(nodeID: String, amount: UFix64) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawFromMachineAccount(nodeID: nodeID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw tokens from the machine account\n/// The tokens are automatically deposited to the unlocked account vault\n\ntransaction(nodeID: String, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawFromMachineAccount(nodeID: nodeID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -1132,12 +1132,12 @@ } ], "network": "testnet", - "hash": "1bd5490bd58f6984e0d9210aa2322086d0868e593331604b229f95ae4c44cef1" + "hash": "ffc0618f599477283475121bb54789e9c7b860fa74d0bcbfb90d8551d4adba57" }, { "id": "SCO.16", "name": "Update Networking Address", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Changes the networking address for the specified node\n\ntransaction(nodeID: String, newAddress: String) {\n \n let stakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.updateNetworkingAddress(nodeID: nodeID, newAddress: newAddress)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Changes the networking address for the specified node\n\ntransaction(nodeID: String, newAddress: String) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.updateNetworkingAddress(nodeID: nodeID, newAddress: newAddress)\n }\n}\n", "arguments": [ { "type": "String", @@ -1163,7 +1163,7 @@ } ], "network": "testnet", - "hash": "5d5c048a857b07ccbe5e53c9e11fb175e24e60a5a86d7e2e135951a1b7f5ace2" + "hash": "0b8b6fbdd32ebcf5adf1a431e88bd8ac31bde3a64443a735f3ed597ebca48ae6" } ] } \ No newline at end of file diff --git a/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc b/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc index a681e0fc5..f880789cc 100644 --- a/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc +++ b/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc @@ -52,11 +52,6 @@ transaction( ) userAccount.capabilities.publish(infoCap, at: LockedTokens.LockedAccountInfoPublicPath) - let tokenAdminCapability = sharedAccount - .capabilities.storage.issue( - LockedTokens.LockedTokenManagerStoragePath - ) - let tokenAdminCollection = admin.storage .borrow<&LockedTokens.TokenAdminCollection>( from: LockedTokens.LockedTokenAdminCollectionStoragePath @@ -66,7 +61,7 @@ transaction( tokenAdminCollection.addAccount( sharedAccountAddress: sharedAccount.address, unlockedAccountAddress: userAccount.address, - tokenAdmin: tokenAdminCapability + tokenAdmin: tokenManagerCapability ) // Override the default FlowToken receiver diff --git a/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc b/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc index 5a964bcac..70fd8f643 100644 --- a/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc +++ b/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc @@ -6,7 +6,7 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(custodyProviderAddress: Address) { - prepare(admin: auth(BorrowValue) &Account) { + prepare(admin: auth(BorrowValue, Capabilities) &Account) { let capabilityReceiver = getAccount(custodyProviderAddress) .capabilities.borrow<&LockedTokens.LockedAccountCreator>( @@ -14,8 +14,8 @@ transaction(custodyProviderAddress: Address) { ) ?? panic("Could not borrow capability receiver reference") - let tokenAdminCollection = admin.capabilities.get<&LockedTokens.TokenAdminCollection>( - LockedTokens.LockedTokenAdminPrivatePath + let tokenAdminCollection = admin.capabilities.storage.issue<&LockedTokens.TokenAdminCollection>( + LockedTokens.LockedTokenAdminCollectionStoragePath )! capabilityReceiver.addCapability(cap: tokenAdminCollection) diff --git a/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc b/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc index d0bf3b25f..04f8b99ce 100644 --- a/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc @@ -50,6 +50,7 @@ transaction( let lockedAccountCreator = custodyProvider.storage .borrow<&LockedTokens.LockedAccountCreator>(from: LockedTokens.LockedAccountCreatorStoragePath) + ?? panic("Could not borrow locked account creator") lockedAccountCreator.addAccount( sharedAccountAddress: sharedAccount.address, @@ -61,15 +62,15 @@ transaction( sharedAccount.capabilities.unpublish(/public/flowTokenReceiver) // create new receiver that marks received tokens as unlocked. - let lockedTokensManagerCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) - sharedAccount.capabilties.publish( + let lockedTokensManagerCap = sharedAccount.capabilities.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) + sharedAccount.capabilities.publish( lockedTokensManagerCap, at: /public/flowTokenReceiver ) // put normal receiver in a separate unique path. - let tokenReceiverCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) - sharedAccount.capabilties.publish( + let tokenReceiverCap = sharedAccount.capabilities.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) + sharedAccount.capabilities.publish( tokenReceiverCap, at: /public/lockedFlowTokenReceiver ) diff --git a/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc b/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc index d18495c1f..60f05b9c8 100644 --- a/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc @@ -51,6 +51,7 @@ transaction( let lockedAccountCreator = custodyProvider.storage .borrow<&LockedTokens.LockedAccountCreator>(from: LockedTokens.LockedAccountCreatorStoragePath) + ?? panic("Could not borrow locked account creator") lockedAccountCreator.addAccount( sharedAccountAddress: sharedAccount.address, @@ -62,15 +63,15 @@ transaction( sharedAccount.capabilities.unpublish(/public/flowTokenReceiver) // create new receiver that marks received tokens as unlocked. - let lockedTokensManagerCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) - sharedAccount.capabilties.publish( + let lockedTokensManagerCap = sharedAccount.capabilities.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) + sharedAccount.capabilities.publish( lockedTokensManagerCap, at: /public/flowTokenReceiver ) // put normal receiver in a separate unique path. - let tokenReceiverCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) - sharedAccount.capabilties.publish( + let tokenReceiverCap = sharedAccount.capabilities.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) + sharedAccount.capabilities.publish( tokenReceiverCap, at: /public/lockedFlowTokenReceiver ) diff --git a/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc b/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc index de3b7f14d..1f42579e1 100644 --- a/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc @@ -53,6 +53,7 @@ transaction( let lockedAccountCreator = custodyProvider.storage .borrow<&LockedTokens.LockedAccountCreator>(from: LockedTokens.LockedAccountCreatorStoragePath) + ?? panic("Could not borrow locked account creator") lockedAccountCreator.addAccount( sharedAccountAddress: sharedAccount.address, @@ -64,15 +65,15 @@ transaction( sharedAccount.capabilities.unpublish(/public/flowTokenReceiver) // create new receiver that marks received tokens as unlocked. - let lockedTokensManagerCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) - sharedAccount.capabilties.publish( + let lockedTokensManagerCap = sharedAccount.capabilities.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) + sharedAccount.capabilities.publish( lockedTokensManagerCap, at: /public/flowTokenReceiver ) // put normal receiver in a separate unique path. - let tokenReceiverCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) - sharedAccount.capabilties.publish( + let tokenReceiverCap = sharedAccount.capabilities.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) + sharedAccount.capabilities.publish( tokenReceiverCap, at: /public/lockedFlowTokenReceiver ) diff --git a/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc b/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc index 3e62ca800..bd03f096f 100644 --- a/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc +++ b/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc @@ -53,8 +53,9 @@ transaction( LockedTokens.LockedTokenManagerStoragePath ) - let lockedAccountCreator = custodyProvider.storage. + let lockedAccountCreator = custodyProvider.storage .borrow<&LockedTokens.LockedAccountCreator>(from: LockedTokens.LockedAccountCreatorStoragePath) + ?? panic("Could not borrow account creator reference") lockedAccountCreator.addAccount( sharedAccountAddress: sharedAccount.address, @@ -66,15 +67,15 @@ transaction( sharedAccount.capabilities.unpublish(/public/flowTokenReceiver) // create new receiver that marks received tokens as unlocked. - let lockedTokensManagerCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) - sharedAccount.capabilties.publish( + let lockedTokensManagerCap = sharedAccount.capabilities.storage.issue<&{FungibleToken.Receiver}>(LockedTokens.LockedTokenManagerStoragePath) + sharedAccount.capabilities.publish( lockedTokensManagerCap, at: /public/flowTokenReceiver ) // put normal receiver in a separate unique path. - let tokenReceiverCap = sharedAccount.capabilties.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) - sharedAccount.capabilties.publish( + let tokenReceiverCap = sharedAccount.capabilities.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenVault) + sharedAccount.capabilities.publish( tokenReceiverCap, at: /public/lockedFlowTokenReceiver ) diff --git a/transactions/lockedTokens/admin/custody_setup_account_creator.cdc b/transactions/lockedTokens/admin/custody_setup_account_creator.cdc index 0be021657..d16db0c87 100644 --- a/transactions/lockedTokens/admin/custody_setup_account_creator.cdc +++ b/transactions/lockedTokens/admin/custody_setup_account_creator.cdc @@ -16,7 +16,7 @@ transaction { LockedTokens.LockedAccountCreatorStoragePath ) - custodyProvider.capabilities.publish<&LockedTokens.LockedAccountCreator>( + custodyProvider.capabilities.publish( lockedAccountCreatorCap, at: LockedTokens.LockedAccountCreatorPublicPath ) diff --git a/transactions/stakingCollection/close_stake.cdc b/transactions/stakingCollection/close_stake.cdc index 0950a7b23..e8b53f7b6 100644 --- a/transactions/stakingCollection/close_stake.cdc +++ b/transactions/stakingCollection/close_stake.cdc @@ -6,10 +6,10 @@ import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS transaction(nodeID: String, delegatorID: UInt32?) { - let stakingCollectionRef: &FlowStakingCollection.StakingCollection + let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow ref to StakingCollection") } diff --git a/transactions/stakingCollection/create_machine_account.cdc b/transactions/stakingCollection/create_machine_account.cdc index 125f58008..8dcaa571d 100644 --- a/transactions/stakingCollection/create_machine_account.cdc +++ b/transactions/stakingCollection/create_machine_account.cdc @@ -6,10 +6,10 @@ import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS transaction(nodeID: String, publicKeys: [Crypto.KeyListEntry]) { - let stakingCollectionRef: &FlowStakingCollection.StakingCollection + let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow ref to StakingCollection") if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) { diff --git a/transactions/stakingCollection/create_new_tokenholder_acct.cdc b/transactions/stakingCollection/create_new_tokenholder_acct.cdc index ed6eae1bd..fccec326a 100644 --- a/transactions/stakingCollection/create_new_tokenholder_acct.cdc +++ b/transactions/stakingCollection/create_new_tokenholder_acct.cdc @@ -1,5 +1,6 @@ import Crypto import FlowToken from "FlowToken" +import FungibleToken from "FungibleToken" import LockedTokens from 0xLOCKEDTOKENADDRESS import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS @@ -12,7 +13,7 @@ import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS // or revoke all keys from that account transaction(publicKeys: [Crypto.KeyListEntry]) { - prepare(signer: auth(BorrowValue) &Account) { + prepare(signer: auth(BorrowValue, Storage, Capabilities) &Account) { // Create the new account and add public keys. let newAccount = Account(payer: signer) @@ -21,9 +22,8 @@ transaction(publicKeys: [Crypto.KeyListEntry]) { } // Get the TokenManager Capability from the locked account. - let tokenManagerCapability = signer.capabilities.get<&LockedTokens.LockedTokenManager>( - LockedTokens.LockedTokenManagerPrivatePath - )! + let tokenManagerCapabilityController = signer.capabilities.storage.getControllers(forPath: LockedTokens.LockedTokenManagerStoragePath)[1]! + let tokenManagerCapability = tokenManagerCapabilityController.capability as! Capability // Use the manager capability to create a new TokenHolder. let tokenHolder <- LockedTokens.createTokenHolder( @@ -38,16 +38,16 @@ transaction(publicKeys: [Crypto.KeyListEntry]) { ) let tokenHolderCap = newAccount.capabilities.storage - .issue<&LockedTokens.TokenHolder{LockedTokens.LockedAccountInfo}>(LockedTokens.TokenHolderStoragePath) + .issue<&LockedTokens.TokenHolder>(LockedTokens.TokenHolderStoragePath) newAccount.capabilities.publish( - tokenHolderCap + tokenHolderCap, at: LockedTokens.LockedAccountInfoPublicPath ) // Create capabilities for the token holder and unlocked vault. - let lockedHolder = newAccount.capabilities.storage.issue<&LockedTokens.TokenHolder>(LockedTokens.TokenHolderStoragePath) - let flowToken = newAccount.capabilities.storage.issue<&FlowToken.Vault>(/storage/flowTokenVault) + let lockedHolder = newAccount.capabilities.storage.issue(LockedTokens.TokenHolderStoragePath) + let flowToken = newAccount.capabilities.storage.issue(/storage/flowTokenVault) // Create a new Staking Collection and put it in storage. if lockedHolder.check() { @@ -69,12 +69,12 @@ transaction(publicKeys: [Crypto.KeyListEntry]) { } // Publish a capability to the created staking collection. - let stakingCollectionCap = newAccount.capabilities.storage.issue<&FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}>( - target: FlowStakingCollection.StakingCollectionStoragePath + let stakingCollectionCap = newAccount.capabilities.storage.issue<&FlowStakingCollection.StakingCollection>( + FlowStakingCollection.StakingCollectionStoragePath ) newAccount.capabilities.publish( - stakingCollectionCap + stakingCollectionCap, at: FlowStakingCollection.StakingCollectionPublicPath ) } diff --git a/transactions/stakingCollection/register_delegator.cdc b/transactions/stakingCollection/register_delegator.cdc index 09bcafdb5..a72f33d1e 100644 --- a/transactions/stakingCollection/register_delegator.cdc +++ b/transactions/stakingCollection/register_delegator.cdc @@ -5,10 +5,10 @@ import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS transaction(id: String, amount: UFix64) { - let stakingCollectionRef: &FlowStakingCollection.StakingCollection + let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow ref to StakingCollection") } diff --git a/transactions/stakingCollection/register_multiple_delegators.cdc b/transactions/stakingCollection/register_multiple_delegators.cdc index bf4df7de7..a8324ca89 100644 --- a/transactions/stakingCollection/register_multiple_delegators.cdc +++ b/transactions/stakingCollection/register_multiple_delegators.cdc @@ -5,10 +5,10 @@ import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS transaction(ids: [String], amounts: [UFix64]) { - let stakingCollectionRef: &FlowStakingCollection.StakingCollection + let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow ref to StakingCollection") } diff --git a/transactions/stakingCollection/register_multiple_nodes.cdc b/transactions/stakingCollection/register_multiple_nodes.cdc index b737935f0..aa3b1c9d4 100644 --- a/transactions/stakingCollection/register_multiple_nodes.cdc +++ b/transactions/stakingCollection/register_multiple_nodes.cdc @@ -12,10 +12,10 @@ transaction(ids: [String], amounts: [UFix64], publicKeys: [[Crypto.KeyListEntry]?]) { - let stakingCollectionRef: &FlowStakingCollection.StakingCollection + let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow ref to StakingCollection") var i = 0 diff --git a/transactions/stakingCollection/register_node.cdc b/transactions/stakingCollection/register_node.cdc index affbbc3a4..ded7587f8 100644 --- a/transactions/stakingCollection/register_node.cdc +++ b/transactions/stakingCollection/register_node.cdc @@ -12,10 +12,10 @@ transaction(id: String, amount: UFix64, publicKeys: [Crypto.KeyListEntry]?) { - let stakingCollectionRef: &FlowStakingCollection.StakingCollection + let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow ref to StakingCollection") if let machineAccount = self.stakingCollectionRef.registerNode( diff --git a/transactions/stakingCollection/request_unstaking.cdc b/transactions/stakingCollection/request_unstaking.cdc index f86de4dca..b22d4f163 100644 --- a/transactions/stakingCollection/request_unstaking.cdc +++ b/transactions/stakingCollection/request_unstaking.cdc @@ -4,10 +4,10 @@ import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS transaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) { - let stakingCollectionRef: &FlowStakingCollection.StakingCollection + let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow ref to StakingCollection") } diff --git a/transactions/stakingCollection/restake_all_stakers.cdc b/transactions/stakingCollection/restake_all_stakers.cdc index 28e02ab56..ff016fec1 100644 --- a/transactions/stakingCollection/restake_all_stakers.cdc +++ b/transactions/stakingCollection/restake_all_stakers.cdc @@ -5,10 +5,10 @@ import FlowIDTableStaking from "FlowIDTableStaking" transaction { - let stakingCollectionRef: &FlowStakingCollection.StakingCollection + let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow ref to StakingCollection") } diff --git a/transactions/stakingCollection/setup_staking_collection.cdc b/transactions/stakingCollection/setup_staking_collection.cdc index f1590f795..ef6aef1c7 100644 --- a/transactions/stakingCollection/setup_staking_collection.cdc +++ b/transactions/stakingCollection/setup_staking_collection.cdc @@ -9,18 +9,18 @@ import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS /// or staking objects stored in the unlocked account transaction { - prepare(signer: auth(BorrowValue) &Account) { + prepare(signer: auth(BorrowValue, Storage, Capabilities) &Account) { // If there isn't already a staking collection if signer.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) == nil { // Create private capabilities for the token holder and unlocked vault - let lockedHolder = signer.capabilities.storage.issue<&LockedTokens.TokenHolder>(target: LockedTokens.TokenHolderStoragePath)! - let flowToken = signer.capabilities.storage.issue<&FlowToken.Vault>(target: /storage/flowTokenVault)! + let lockedHolder = signer.capabilities.storage.issue(LockedTokens.TokenHolderStoragePath)! + let flowToken = signer.capabilities.storage.issue(/storage/flowTokenVault)! // Create a new Staking Collection and put it in storage if lockedHolder.check() { - newAccount.storage.save( + signer.storage.save( <- FlowStakingCollection.createStakingCollection( unlockedVault: flowToken, tokenHolder: lockedHolder @@ -28,7 +28,7 @@ transaction { to: FlowStakingCollection.StakingCollectionStoragePath ) } else { - newAccount.storage.save( + signer.storage.save( <- FlowStakingCollection.createStakingCollection( unlockedVault: flowToken, tokenHolder: nil @@ -38,12 +38,12 @@ transaction { } // Publish a capability to the created staking collection. - let stakingCollectionCap = newAccount.capabilities.storage.issue<&FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}>( - target: FlowStakingCollection.StakingCollectionStoragePath + let stakingCollectionCap = signer.capabilities.storage.issue<&FlowStakingCollection.StakingCollection>( + FlowStakingCollection.StakingCollectionStoragePath ) - newAccount.capabilities.publish( - stakingCollectionCap + signer.capabilities.publish( + stakingCollectionCap, at: FlowStakingCollection.StakingCollectionPublicPath ) } diff --git a/transactions/stakingCollection/stake_new_tokens.cdc b/transactions/stakingCollection/stake_new_tokens.cdc index 1d55bf0e8..cbccb54e9 100644 --- a/transactions/stakingCollection/stake_new_tokens.cdc +++ b/transactions/stakingCollection/stake_new_tokens.cdc @@ -6,10 +6,10 @@ import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS transaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) { - let stakingCollectionRef: &FlowStakingCollection.StakingCollection + let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow ref to StakingCollection") } diff --git a/transactions/stakingCollection/stake_rewarded_tokens.cdc b/transactions/stakingCollection/stake_rewarded_tokens.cdc index d463c94d5..eb6e43438 100644 --- a/transactions/stakingCollection/stake_rewarded_tokens.cdc +++ b/transactions/stakingCollection/stake_rewarded_tokens.cdc @@ -4,10 +4,10 @@ import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS transaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) { - let stakingCollectionRef: &FlowStakingCollection.StakingCollection + let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow ref to StakingCollection") } diff --git a/transactions/stakingCollection/stake_unstaked_tokens.cdc b/transactions/stakingCollection/stake_unstaked_tokens.cdc index 51fe6a5f4..597bda5e5 100644 --- a/transactions/stakingCollection/stake_unstaked_tokens.cdc +++ b/transactions/stakingCollection/stake_unstaked_tokens.cdc @@ -4,10 +4,10 @@ import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS transaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) { - let stakingCollectionRef: &FlowStakingCollection.StakingCollection + let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow ref to StakingCollection") } diff --git a/transactions/stakingCollection/transfer_delegator.cdc b/transactions/stakingCollection/transfer_delegator.cdc index 5254723ef..db39432ad 100644 --- a/transactions/stakingCollection/transfer_delegator.cdc +++ b/transactions/stakingCollection/transfer_delegator.cdc @@ -5,8 +5,8 @@ import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS // identified by the to Address. transaction(nodeID: String, delegatorID: UInt32, to: Address) { - let fromStakingCollectionRef: &FlowStakingCollection.StakingCollection - let toStakingCollectionCap: &FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic} + let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection + let toStakingCollectionCap: &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator. @@ -15,7 +15,7 @@ transaction(nodeID: String, delegatorID: UInt32, to: Address) { } // Get a reference to the authorizers StakingCollection - self.fromStakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + self.fromStakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow ref to StakingCollection") // Get the PublicAccount of the account to transfer the NodeDelegator to. @@ -23,7 +23,7 @@ transaction(nodeID: String, delegatorID: UInt32, to: Address) { // Borrow a capability to the public methods available on the receivers StakingCollection. self.toStakingCollectionCap = toAccount.capabilities - .borrow<&FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}>(FlowStakingCollection.StakingCollectionPublicPath) + .borrow<&FlowStakingCollection.StakingCollection>(FlowStakingCollection.StakingCollectionPublicPath) ?? panic("Could not borrow ref to StakingCollection") } diff --git a/transactions/stakingCollection/transfer_node.cdc b/transactions/stakingCollection/transfer_node.cdc index bf9f0de68..f67d73357 100644 --- a/transactions/stakingCollection/transfer_node.cdc +++ b/transactions/stakingCollection/transfer_node.cdc @@ -5,8 +5,8 @@ import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS // identified by the to Address. transaction(nodeID: String, to: Address) { - let fromStakingCollectionRef: &FlowStakingCollection.StakingCollection - let toStakingCollectionCap: &FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic} + let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection + let toStakingCollectionCap: &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker. @@ -15,7 +15,7 @@ transaction(nodeID: String, to: Address) { } // Get a reference to the authorizers StakingCollection - self.fromStakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + self.fromStakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow ref to StakingCollection") // Get the PublicAccount of the account to transfer the NodeStaker to. @@ -23,7 +23,7 @@ transaction(nodeID: String, to: Address) { // Borrow a capability to the public methods available on the receivers StakingCollection. self.toStakingCollectionCap = toAccount.capabilities - .borrow<&FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}>(FlowStakingCollection.StakingCollectionPublicPath) + .borrow<&FlowStakingCollection.StakingCollection>(FlowStakingCollection.StakingCollectionPublicPath) ?? panic("Could not borrow ref to StakingCollection") let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID] diff --git a/transactions/stakingCollection/unstake_all.cdc b/transactions/stakingCollection/unstake_all.cdc index 0ca7f136b..8beac0a77 100644 --- a/transactions/stakingCollection/unstake_all.cdc +++ b/transactions/stakingCollection/unstake_all.cdc @@ -4,10 +4,10 @@ import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS transaction(nodeID: String) { - let stakingCollectionRef: &FlowStakingCollection.StakingCollection + let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow ref to StakingCollection") } diff --git a/transactions/stakingCollection/update_networking_address.cdc b/transactions/stakingCollection/update_networking_address.cdc index 50f8d1d92..384b7261c 100644 --- a/transactions/stakingCollection/update_networking_address.cdc +++ b/transactions/stakingCollection/update_networking_address.cdc @@ -4,10 +4,10 @@ import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS transaction(nodeID: String, newAddress: String) { - let stakingCollectionRef: &FlowStakingCollection.StakingCollection + let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow ref to StakingCollection") } diff --git a/transactions/stakingCollection/withdraw_from_machine_account.cdc b/transactions/stakingCollection/withdraw_from_machine_account.cdc index c4c62b304..411318220 100644 --- a/transactions/stakingCollection/withdraw_from_machine_account.cdc +++ b/transactions/stakingCollection/withdraw_from_machine_account.cdc @@ -5,10 +5,10 @@ import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS transaction(nodeID: String, amount: UFix64) { - let stakingCollectionRef: &FlowStakingCollection.StakingCollection + let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow ref to StakingCollection") } diff --git a/transactions/stakingCollection/withdraw_rewarded_tokens.cdc b/transactions/stakingCollection/withdraw_rewarded_tokens.cdc index d9ec647d9..c3a1f3756 100644 --- a/transactions/stakingCollection/withdraw_rewarded_tokens.cdc +++ b/transactions/stakingCollection/withdraw_rewarded_tokens.cdc @@ -6,10 +6,10 @@ import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS transaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) { - let stakingCollectionRef: &FlowStakingCollection.StakingCollection + let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow ref to StakingCollection") } diff --git a/transactions/stakingCollection/withdraw_unstaked_tokens.cdc b/transactions/stakingCollection/withdraw_unstaked_tokens.cdc index a1427a64b..5f8328059 100644 --- a/transactions/stakingCollection/withdraw_unstaked_tokens.cdc +++ b/transactions/stakingCollection/withdraw_unstaked_tokens.cdc @@ -6,10 +6,10 @@ import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS transaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) { - let stakingCollectionRef: &FlowStakingCollection.StakingCollection + let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection prepare(account: auth(BorrowValue) &Account) { - self.stakingCollectionRef = account.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) + self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) ?? panic("Could not borrow ref to StakingCollection") } diff --git a/transactions/stakingProxy/register_node.cdc b/transactions/stakingProxy/register_node.cdc index 20a3c0f2e..4cb3907e8 100644 --- a/transactions/stakingProxy/register_node.cdc +++ b/transactions/stakingProxy/register_node.cdc @@ -3,16 +3,16 @@ import StakingProxy from 0xSTAKINGPROXYADDRESS transaction(address: Address, id: String, amount: UFix64) { - let holderRef: &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations) &LockedTokens.TokenHolder prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") } execute { let nodeOperatorRef = getAccount(address).capabilities - .borrow<&StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}>( + .borrow<&StakingProxy.NodeStakerProxyHolder>( StakingProxy.NodeOperatorCapabilityPublicPath ) ?? panic("Could not borrow node operator public capability") diff --git a/transactions/stakingProxy/setup_node_account.cdc b/transactions/stakingProxy/setup_node_account.cdc index 29505375e..efad35e26 100644 --- a/transactions/stakingProxy/setup_node_account.cdc +++ b/transactions/stakingProxy/setup_node_account.cdc @@ -2,18 +2,18 @@ import StakingProxy from 0xSTAKINGPROXYADDRESS transaction() { - prepare(nodeOperator: auth(SaveValue) &Account) { + prepare(nodeOperator: auth(SaveValue, Capabilities) &Account) { let proxyHolder <- StakingProxy.createProxyHolder() nodeOperator.storage.save(<-proxyHolder, to: StakingProxy.NodeOperatorCapabilityStoragePath) - let nodeOperatorCap = nodeOperator.capabilities.storage.issue<&StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}>( + let nodeOperatorCap = nodeOperator.capabilities.storage.issue<&StakingProxy.NodeStakerProxyHolder>( StakingProxy.NodeOperatorCapabilityStoragePath ) nodeOperator.capabilities.publish( - StakingProxy.NodeOperatorCapabilityPublicPath, - at: StakingProxy.NodeOperatorCapabilityStoragePath + nodeOperatorCap, + at: StakingProxy.NodeOperatorCapabilityPublicPath ) } } From 3f33ef037f51f524590b12aac77e41223c461cef Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 2 Jan 2024 15:49:01 -0600 Subject: [PATCH 061/160] make ci --- lib/go/contracts/go.sum | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 8ccd4a1df..fca20f30d 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -891,7 +891,6 @@ github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2 h1:vUVO6m85BiT8c50Oc8YGc3 github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2/go.mod h1:mbLrR3MkYbi9LH3yasDj1jrR4QTR8vjRLVFCm4jMHn0= github.com/onflow/flow-go/crypto v0.24.7 h1:RCLuB83At4z5wkAyUCF7MYEnPoIIOHghJaODuJyEoW0= github.com/onflow/flow-go/crypto v0.24.7/go.mod h1:fqCzkIBBMRRkciVrvW21rECKq1oD7Q6u+bCI78lfNX0= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20231204201122-eb1dd9560768/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20231212194623-24d595274bdd h1:ExvryNEp/B4bhLBGMVh9FHcviN4YloGncDpeSbDkCwg= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20231212194623-24d595274bdd/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= @@ -1073,6 +1072,7 @@ golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRu golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= +golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 h1:VLliZ0d+/avPrXXH+OakdXhpJuEoBZuwh1m2j7U6Iug= golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= @@ -1090,6 +1090,7 @@ golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= golang.org/x/mod v0.6.0/go.mod h1:4mET923SAdbXp2ki8ey+zGs1SLqsuM2Y0uvdZR/fUNI= golang.org/x/mod v0.7.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/mod v0.8.0 h1:LUYupSeNrTNCGzR/hVBk2NHZO4hXcVaW1k4Qx7rjPx8= golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -1373,6 +1374,7 @@ golang.org/x/tools v0.1.9/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= golang.org/x/tools v0.2.0/go.mod h1:y4OqIKeOV/fWJetJ8bXPU1sEVniLMIyDAZWeHdV+NTA= golang.org/x/tools v0.3.0/go.mod h1:/rWhSS2+zyEVwoJf8YAX6L2f0ntZ7Kn/mGgAWcipA5k= +golang.org/x/tools v0.6.0 h1:BOw41kyTf3PuCW1pVQf8+Cyg8pMlkYB1oo9iJ6D/lKM= golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= @@ -1644,6 +1646,7 @@ gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8 gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= @@ -1669,6 +1672,7 @@ honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.1.3/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las= +lukechampine.com/blake3 v1.1.7 h1:GgRMhmdsuK8+ii6UZFDL8Nb+VyMwadAgcJyfYHxG6n0= lukechampine.com/blake3 v1.1.7/go.mod h1:tkKEOtDkNtklkXtLNEOGNq5tcV90tJiA1vAA12R78LA= lukechampine.com/uint128 v1.1.1/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= lukechampine.com/uint128 v1.2.0/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= @@ -1704,6 +1708,7 @@ modernc.org/strutil v1.1.3/go.mod h1:MEHNA7PdEnEwLvspRMtWTNnp2nnyvMfkimT1NKNAGbw modernc.org/tcl v1.13.1/go.mod h1:XOLfOwzhkljL4itZkK6T72ckMgvj0BDsnKNdZVUOecw= modernc.org/token v1.0.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= modernc.org/z v1.5.1/go.mod h1:eWFB510QWW5Th9YGZT81s+LwvaAs3Q2yr4sP0rmLkv8= +pgregory.net/rapid v0.4.7 h1:MTNRktPuv5FNqOO151TM9mDTa+XHcX6ypYeISDVD14g= pgregory.net/rapid v0.4.7/go.mod h1:UYpPVyjFHzYBGHIxLFoupi8vwk6rXNzRY9OMvVxFIOU= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= From 6edd0e3d005b3567c63cdac77c1c3bf467df13bb Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 2 Jan 2024 15:51:03 -0600 Subject: [PATCH 062/160] make ci --- lib/go/templates/go.mod | 1 - lib/go/templates/go.sum | 27 ++++++++++++++------------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/lib/go/templates/go.mod b/lib/go/templates/go.mod index 6a81e8798..fca291d4d 100644 --- a/lib/go/templates/go.mod +++ b/lib/go/templates/go.mod @@ -20,7 +20,6 @@ require ( github.com/fsnotify/fsnotify v1.4.7 // indirect github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c // indirect github.com/fxamacker/circlehash v0.3.0 // indirect - github.com/go-test/deep v1.1.0 // indirect github.com/hashicorp/hcl v1.0.0 // indirect github.com/inconshreveable/mousetrap v1.0.0 // indirect github.com/k0kubun/pp v3.0.1+incompatible // indirect diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index d72c17b9a..a62c29029 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -135,8 +135,6 @@ github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V github.com/go-ole/go-ole v1.2.1/go.mod h1:7FAglXiTm7HKlQRDeOQ6ZNUHidzCWXuZWq/1dTyBNF8= github.com/go-sourcemap/sourcemap v2.1.2+incompatible/go.mod h1:F8jJfvm2KbVjc5NqelyYJmf/v5J0dwNLS2mL4sNA1Jg= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= -github.com/go-test/deep v1.1.0 h1:WOcxcdHcvdgThNXjw0t76K42FXTU7HpNQWHpA2HHNlg= -github.com/go-test/deep v1.1.0/go.mod h1:5C2ZWiW0ErCdrYzpqxLbTX7MG14M9iiw8DgHncVwcsE= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= @@ -238,7 +236,8 @@ github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxv github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= -github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0= +github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= +github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= @@ -255,8 +254,9 @@ github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovk github.com/mattn/go-ieproxy v0.0.0-20190610004146-91bb50d98149/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= github.com/mattn/go-ieproxy v0.0.0-20190702010315-6dee0af9227d/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= github.com/mattn/go-isatty v0.0.5-0.20180830101745-3fb116b82035/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= -github.com/mattn/go-isatty v0.0.16 h1:bq3VjFmv/sOjHtdEhmkEV4x1AJtvUvOJ2PFAZ5+peKQ= github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= +github.com/mattn/go-isatty v0.0.17 h1:BTarxUcIeDqL27Mc+vyvdWYSL28zpIhv3RoTdsLMPng= +github.com/mattn/go-isatty v0.0.17/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= github.com/mattn/go-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= @@ -271,8 +271,8 @@ github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXW github.com/olekukonko/tablewriter v0.0.2-0.20190409134802-7e037d187b0c/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f h1:Z8/PgTqOgOg02MTRpTBYO2k16FE6z4wEOtaC2WBR9Xo= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f/go.mod h1:xvP61FoOs95K7IYdIYRnNcYQGf4nbF/uuJ0tHf4DRuM= -github.com/onflow/cadence v1.0.0-preview.1 h1:Y/q/43aDc93/1Atsxx3+e2V/dZiQuF1TqkXEVboA5pY= -github.com/onflow/cadence v1.0.0-preview.1/go.mod h1:Q5Up9Kt+J6zuAFmgrsiKz6t//E/hR5/iuVjH62pdztk= +github.com/onflow/cadence v1.0.0-preview.1.0.20231213191345-0ff20e15e7e1 h1:xIFPRIA/pmyplEu5JxuMCfC6zfdqRW7QDHYJ8ogCNuc= +github.com/onflow/cadence v1.0.0-preview.1.0.20231213191345-0ff20e15e7e1/go.mod h1:60RhxKY5V4DXFQfvXQa48eZZVN19O7Lu9cp53FM54vo= github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2 h1:vUVO6m85BiT8c50Oc8YGc3CU+sGqiKW9FZbmiRph2dU= github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2/go.mod h1:mbLrR3MkYbi9LH3yasDj1jrR4QTR8vjRLVFCm4jMHn0= github.com/onflow/flow-go/crypto v0.24.7 h1:RCLuB83At4z5wkAyUCF7MYEnPoIIOHghJaODuJyEoW0= @@ -285,6 +285,7 @@ github.com/pborman/uuid v0.0.0-20170112150404-1b00554d8222/go.mod h1:VyrYX9gd7ir github.com/pelletier/go-toml v1.2.0 h1:T5zMGML61Wp+FlcbWjRDT7yAxhJNAiPPLOFECq181zc= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= github.com/peterh/liner v1.1.1-0.20190123174540-a2c9a5303de7/go.mod h1:CRroGNssyjTd/qIG2FyxByd2S8JEAZXBl4qUrZf8GS0= +github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= @@ -311,6 +312,7 @@ github.com/rjeczalik/notify v0.9.1/go.mod h1:rKwnCoCGeuQnwBtTSPL9Dad03Vh2n40ePRr github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= +github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= github.com/rs/cors v0.0.0-20160617231935-a62a804a8a00/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= github.com/rs/xhandler v0.0.0-20160618193221-ed27b6fd6521/go.mod h1:RvLn4FgxWubrpZHtQLnOf6EwhN2hEMusxZOhcW9H3UQ= github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= @@ -344,7 +346,6 @@ github.com/steakknife/hamming v0.0.0-20180906055917-c99c65617cd3/go.mod h1:hpGUW github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c= -github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= @@ -403,8 +404,8 @@ golang.org/x/crypto v0.0.0-20200311171314-f7b00557c8c4/go.mod h1:LzIPMQfyMNhhGPh golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.7.0 h1:AvwMYaRytfdeVt3u6mLaxYtErKYjxA2OXjJ1HHq6t3A= -golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= +golang.org/x/crypto v0.17.0 h1:r8bRNjWL3GshPW3gkd+RpvzWrZAwPS49OmTGZ/uhM4k= +golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= @@ -537,8 +538,8 @@ golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ= -golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= +golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -546,8 +547,8 @@ golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3 golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.8.0 h1:57P1ETyNKtuIjB4SRd15iJxuhj8Gc416Y78H3qgMh68= -golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= +golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= +golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= From 40e8ef09f7b723eaeb10977898c7f27db2961518 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 2 Jan 2024 16:26:01 -0600 Subject: [PATCH 063/160] update cli version for CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7ded1580b..450719651 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: with: go-version: '1.19' - name: Install Flow CLI - run: sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)" -- v1.5.0 + run: sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)" -- v1.9.2-stable-cadence.1 - name: Flow cli Version run: flow version - name: Update PATH From c4d2acb23b05b2b48ac68b5e74d2c7909b8ad86c Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 3 Jan 2024 12:52:22 -0600 Subject: [PATCH 064/160] update go version --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 450719651..c5ef038b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-go@v1 with: - go-version: '1.19' + go-version: '1.20' - name: Install Flow CLI run: sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)" -- v1.9.2-stable-cadence.1 - name: Flow cli Version From 8094b24648ec9a58a0d998d7aad396ae8d961b38 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 23 Jan 2024 12:54:28 -0600 Subject: [PATCH 065/160] update Withdrawable and createEmptyVault --- contracts/FlowFees.cdc | 4 +- contracts/FlowServiceAccount.cdc | 6 +- contracts/FlowToken.cdc | 71 +++--- lib/go/contracts/contracts.go | 13 +- lib/go/contracts/go.mod | 8 +- lib/go/contracts/go.sum | 10 +- lib/go/templates/internal/assets/assets.go | 222 +++++++++--------- lib/go/templates/manifest.mainnet.json | 72 +++--- lib/go/templates/manifest.testnet.json | 72 +++--- .../FlowServiceAccount/deposit_fees.cdc | 2 +- transactions/epoch/node/register_node.cdc | 4 +- transactions/flowToken/burn_tokens.cdc | 2 +- transactions/flowToken/transfer_tokens.cdc | 2 +- .../delegation/del_stake_new_tokens.cdc | 4 +- .../delegation/register_delegator.cdc | 2 +- .../node/register_many_nodes.cdc | 2 +- .../idTableStaking/node/register_node.cdc | 4 +- .../idTableStaking/node/stake_new_tokens.cdc | 4 +- .../admin/admin_create_shared_accounts.cdc | 4 +- ...tody_create_account_with_lease_account.cdc | 6 +- .../custody_create_only_lease_account.cdc | 6 +- .../custody_create_only_shared_account.cdc | 6 +- .../admin/custody_create_shared_accounts.cdc | 6 +- .../admin/deposit_locked_tokens.cdc | 2 +- .../delegator/delegate_new_tokens.cdc | 8 +- .../delegator/delegate_rewarded_tokens.cdc | 2 +- .../delegator/delegate_unstaked_tokens.cdc | 2 +- .../delegator/register_delegator.cdc | 8 +- .../delegator/request_unstaking.cdc | 2 +- .../delegator/withdraw_rewarded_tokens.cdc | 4 +- .../withdraw_rewarded_tokens_locked.cdc | 2 +- .../delegator/withdraw_unstaked_tokens.cdc | 2 +- .../lockedTokens/staker/register_node.cdc | 8 +- .../lockedTokens/staker/request_unstaking.cdc | 4 +- .../lockedTokens/staker/stake_new_tokens.cdc | 8 +- .../staker/stake_rewarded_tokens.cdc | 4 +- .../staker/stake_unstaked_tokens.cdc | 4 +- .../lockedTokens/staker/unstake_all.cdc | 4 +- .../staker/update_networking_address.cdc | 4 +- .../staker/withdraw_rewarded_tokens.cdc | 4 +- .../withdraw_rewarded_tokens_locked.cdc | 4 +- .../staker/withdraw_unstaked_tokens.cdc | 4 +- .../lockedTokens/user/deposit_tokens.cdc | 4 +- .../lockedTokens/user/withdraw_tokens.cdc | 8 +- .../create_new_tokenholder_acct.cdc | 6 +- .../setup_staking_collection.cdc | 4 +- 46 files changed, 305 insertions(+), 329 deletions(-) diff --git a/contracts/FlowFees.cdc b/contracts/FlowFees.cdc index ed18b37ef..f8de5b0c6 100644 --- a/contracts/FlowFees.cdc +++ b/contracts/FlowFees.cdc @@ -142,7 +142,7 @@ access(all) contract FlowFees { return } - let tokenVault = acct.storage.borrow(from: /storage/flowTokenVault) + let tokenVault = acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Unable to borrow reference to the default token vault") @@ -184,7 +184,7 @@ access(all) contract FlowFees { init() { // Create a new FlowToken Vault and save it in storage - self.vault <- FlowToken.createEmptyVault() as! @FlowToken.Vault + self.vault <- FlowToken.createEmptyVault(vaultType: Type<@FlowToken.Vault>()) as! @FlowToken.Vault let admin <- create Administrator() self.account.storage.save(<-admin, to: /storage/flowFeesAdmin) diff --git a/contracts/FlowServiceAccount.cdc b/contracts/FlowServiceAccount.cdc index f022eb8a1..66e52740c 100644 --- a/contracts/FlowServiceAccount.cdc +++ b/contracts/FlowServiceAccount.cdc @@ -27,7 +27,7 @@ access(all) contract FlowServiceAccount { /// Initialize an account with a FlowToken Vault and publish capabilities. access(all) fun initDefaultToken(_ acct: auth(SaveValue, Capabilities) &Account) { // Create a new FlowToken Vault and save it in storage - acct.storage.save(<-FlowToken.createEmptyVault(), to: /storage/flowTokenVault) + acct.storage.save(<-FlowToken.createEmptyVault(vaultType: Type<@FlowToken.Vault>()), to: /storage/flowTokenVault) // Create a public capability to the Vault that only exposes // the deposit function through the Receiver interface @@ -53,8 +53,8 @@ access(all) contract FlowServiceAccount { } /// Return a reference to the default token vault on an account - access(all) fun defaultTokenVault(_ acct: auth(BorrowValue) &Account): auth(FungibleToken.Withdrawable) &FlowToken.Vault { - return acct.storage.borrow(from: /storage/flowTokenVault) + access(all) fun defaultTokenVault(_ acct: auth(BorrowValue) &Account): auth(FungibleToken.Withdraw) &FlowToken.Vault { + return acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Unable to borrow reference to the default token vault") } diff --git a/contracts/FlowToken.cdc b/contracts/FlowToken.cdc index aa7a9b0e4..b6aa51987 100644 --- a/contracts/FlowToken.cdc +++ b/contracts/FlowToken.cdc @@ -1,22 +1,13 @@ import FungibleToken from "FungibleToken" import MetadataViews from "MetadataViews" import FungibleTokenMetadataViews from "FungibleTokenMetadataViews" -import ViewResolver from "ViewResolver" +//import ViewResolver from "ViewResolver" -access(all) contract FlowToken: ViewResolver { +access(all) contract FlowToken: FungibleToken { // Total supply of Flow tokens in existence access(all) var totalSupply: UFix64 - // Event that is emitted when the contract is created - access(all) event TokensInitialized(initialSupply: UFix64) - - // Event that is emitted when tokens are withdrawn from a Vault - access(all) event TokensWithdrawn(amount: UFix64, from: Address?) - - // Event that is emitted when tokens are deposited to a Vault - access(all) event TokensDeposited(amount: UFix64, to: Address?) - // Event that is emitted when new tokens are minted access(all) event TokensMinted(amount: UFix64) @@ -41,7 +32,7 @@ access(all) contract FlowToken: ViewResolver { // out of thin air. A special Minter resource needs to be defined to mint // new tokens. // - access(all) resource Vault: FungibleToken.Vault, FungibleToken.Provider, FungibleToken.Receiver, ViewResolver.Resolver { + access(all) resource Vault: FungibleToken.Vault { // holds the balance of a users tokens access(all) var balance: UFix64 @@ -64,16 +55,6 @@ access(all) contract FlowToken: ViewResolver { if (type == self.getType()) { return true } else { return false } } - /// Returns the storage path where the vault should typically be stored - access(all) view fun getDefaultStoragePath(): StoragePath? { - return /storage/flowTokenVault - } - - /// Returns the public path where this vault should have a public capability - access(all) view fun getDefaultPublicPath(): PublicPath? { - return /public/flowTokenReceiver - } - // withdraw // // Function that takes an integer amount as an argument @@ -83,9 +64,8 @@ access(all) contract FlowToken: ViewResolver { // created Vault to the context that called so it can be deposited // elsewhere. // - access(FungibleToken.Withdrawable) fun withdraw(amount: UFix64): @{FungibleToken.Vault} { + access(FungibleToken.Withdraw) fun withdraw(amount: UFix64): @{FungibleToken.Vault} { self.balance = self.balance - amount - emit TokensWithdrawn(amount: amount, from: self.owner?.address) return <-create Vault(balance: amount) } @@ -99,7 +79,6 @@ access(all) contract FlowToken: ViewResolver { access(all) fun deposit(from: @{FungibleToken.Vault}) { let vault <- from as! @FlowToken.Vault self.balance = self.balance + vault.balance - emit TokensDeposited(amount: vault.balance, to: self.owner?.address) vault.balance = 0.0 destroy vault } @@ -110,7 +89,7 @@ access(all) contract FlowToken: ViewResolver { /// developers to know which parameter to pass to the resolveView() method. /// access(all) view fun getViews(): [Type]{ - return FlowToken.getViews() + return FlowToken.getContractViews(resourceType: nil) } /// Get a Metadata View from FlowToken @@ -119,7 +98,7 @@ access(all) contract FlowToken: ViewResolver { /// @return A structure representing the requested view. /// access(all) fun resolveView(_ view: Type): AnyStruct? { - return FlowToken.resolveView(view) + return FlowToken.resolveContractView(resourceType: nil, viewType: view) } access(all) fun createEmptyVault(): @{FungibleToken.Vault} { @@ -134,11 +113,25 @@ access(all) contract FlowToken: ViewResolver { // and store the returned Vault in their storage in order to allow their // account to be able to receive deposits of this token type. // - access(all) fun createEmptyVault(): @FlowToken.Vault { + access(all) fun createEmptyVault(vaultType: Type): @FlowToken.Vault { return <-create Vault(balance: 0.0) } - access(all) view fun getViews(): [Type] { + /// Function that destroys a Vault instance, effectively burning the tokens. + /// + /// @param from: The Vault resource containing the tokens to burn + /// + /// Will need to add an update to total supply + /// See https://github.com/onflow/flips/pull/131 + access(all) fun burn(_ vault: @{FungibleToken.Vault}) { + if vault.balance > 0.0 { + FlowToken.totalSupply = FlowToken.totalSupply - vault.getBalance() + } + destroy vault + } + + /// Gets a list of the metadata views that this contract supports + access(all) view fun getContractViews(resourceType: Type?): [Type] { return [Type(), Type(), Type(), @@ -150,12 +143,12 @@ access(all) contract FlowToken: ViewResolver { /// @param view: The Type of the desired view. /// @return A structure representing the requested view. /// - access(all) fun resolveView(_ view: Type): AnyStruct? { - switch view { + access(all) fun resolveContractView(resourceType: Type?, viewType: Type): AnyStruct? { + switch viewType { case Type(): return FungibleTokenMetadataViews.FTView( - ftDisplay: self.resolveView(Type()) as! FungibleTokenMetadataViews.FTDisplay?, - ftVaultData: self.resolveView(Type()) as! FungibleTokenMetadataViews.FTVaultData? + ftDisplay: self.resolveContractView(resourceType: nil, viewType: Type()) as! FungibleTokenMetadataViews.FTDisplay?, + ftVaultData: self.resolveContractView(resourceType: nil, viewType: Type()) as! FungibleTokenMetadataViews.FTVaultData? ) case Type(): let media = MetadataViews.Media( @@ -176,16 +169,16 @@ access(all) contract FlowToken: ViewResolver { } ) case Type(): + let vaultRef = FlowToken.account.storage.borrow(from: /storage/flowTokenVault) + ?? panic("Could not borrow reference to the contract's Vault!") return FungibleTokenMetadataViews.FTVaultData( storagePath: /storage/flowTokenVault, receiverPath: /public/flowTokenReceiver, metadataPath: /public/flowTokenBalance, - providerPath: /private/flowTokenVault, receiverLinkedType: Type<&FlowToken.Vault>(), metadataLinkedType: Type<&FlowToken.Vault>(), - providerLinkedType: Type<&FlowToken.Vault>(), createEmptyVaultFunction: (fun (): @{FungibleToken.Vault} { - return <-FlowToken.createEmptyVault() + return <-vaultRef.createEmptyVault() }) ) case Type(): @@ -284,9 +277,6 @@ access(all) contract FlowToken: ViewResolver { // let vault <- create Vault(balance: self.totalSupply) - // Example of how to resolve a metadata view for a Vault - let ftView = vault.resolveView(Type()) - self.account.storage.save(<-vault, to: /storage/flowTokenVault) // Create a public capability to the stored Vault that only exposes @@ -304,8 +294,5 @@ access(all) contract FlowToken: ViewResolver { let admin <- create Administrator() self.account.storage.save(<-admin, to: /storage/flowTokenAdmin) - // Emit an event that shows that the contract was initialized - emit TokensInitialized(initialSupply: self.totalSupply) - } } diff --git a/lib/go/contracts/contracts.go b/lib/go/contracts/contracts.go index 31bf082dc..edb809184 100644 --- a/lib/go/contracts/contracts.go +++ b/lib/go/contracts/contracts.go @@ -49,7 +49,6 @@ const ( placeholderFungibleTokenAddress = "\"FungibleToken\"" placeholderFungibleTokenMVAddress = "\"FungibleTokenMetadataViews\"" placeholderMetadataViewsAddress = "\"MetadataViews\"" - placeholderViewResolverAddress = "\"ViewResolver\"" placeholderFlowTokenAddress = "\"FlowToken\"" placeholderIDTableAddress = "\"FlowIDTableStaking\"" placeholderStakingProxyAddress = "0xSTAKINGPROXYADDRESS" @@ -78,7 +77,7 @@ func withHexPrefix(address string) string { // FungibleToken returns the FungibleToken contract interface. func FungibleToken(viewResolverAddress string) []byte { - return ftcontracts.FungibleTokenV2(viewResolverAddress) + return ftcontracts.FungibleToken(viewResolverAddress) } // FungibleTokenMetadataViews returns the FungibleTokenMetadataViews contract interface. @@ -87,11 +86,11 @@ func FungibleTokenMetadataViews(fungibleTokenAddr, metadataViewsAddr, viewResolv } func NonFungibleToken(viewResolverAddress string) []byte { - return nftcontracts.NonFungibleTokenV2(flow.HexToAddress(viewResolverAddress)) + return nftcontracts.NonFungibleToken(flow.HexToAddress(viewResolverAddress)) } func ViewResolver() []byte { - return nftcontracts.Resolver() + return nftcontracts.ViewResolver() } // MetadataViews returns the MetadataViews contract interface. @@ -125,12 +124,6 @@ func FlowToken(fungibleTokenAddress, fungibleTokenMVAddress, metadataViewsAddres withHexPrefix(metadataViewsAddress), ) - code = strings.ReplaceAll( - code, - placeholderViewResolverAddress, - withHexPrefix(viewResolverAddress), - ) - // Replace the init method storage operations code = strings.ReplaceAll( code, diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 58fd1ebb7..8c46b5d6d 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -4,9 +4,9 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231212194336-a2802ba36596 + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240122215608-fc1538d92763 github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2 - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20231212194623-24d595274bdd + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240122215714-3c2b2d2c2e47 github.com/stretchr/testify v1.8.4 ) @@ -53,3 +53,7 @@ retract ( v1.2.4 // contains retraction only v1.2.3 // accidentally published with out-of-order tag ) + +replace github.com/onflow/flow-ft/lib/go/contracts => ../../../../../flow-ft/lib/go/contracts + +replace github.com/onflow/flow-nft/lib/go/contracts => ../../../../flow-nft/lib/go/contracts diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index fca20f30d..eb338324e 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -877,24 +877,16 @@ github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLA github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/olekukonko/tablewriter v0.0.2-0.20190409134802-7e037d187b0c/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= -github.com/onflow/atree v0.5.0/go.mod h1:gBHU0M05qCbv9NN0kijLWMgC47gHVNBIp4KmsVFi0tc= -github.com/onflow/atree v0.6.0/go.mod h1:gBHU0M05qCbv9NN0kijLWMgC47gHVNBIp4KmsVFi0tc= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f h1:Z8/PgTqOgOg02MTRpTBYO2k16FE6z4wEOtaC2WBR9Xo= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f/go.mod h1:xvP61FoOs95K7IYdIYRnNcYQGf4nbF/uuJ0tHf4DRuM= -github.com/onflow/cadence v0.39.13-stable-cadence/go.mod h1:SxT8/IEkS1drFj2ofUEK9S6KyJ5GQbrm0LX4EFCp/7Q= github.com/onflow/cadence v1.0.0-preview.1 h1:Y/q/43aDc93/1Atsxx3+e2V/dZiQuF1TqkXEVboA5pY= github.com/onflow/cadence v1.0.0-preview.1/go.mod h1:Q5Up9Kt+J6zuAFmgrsiKz6t//E/hR5/iuVjH62pdztk= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231212194336-a2802ba36596 h1:MTgrwXkiWwNysYpWGzWjc1n9w1nfXvizmGkSAuEY6jk= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231212194336-a2802ba36596/go.mod h1:uugR8U8Rlk2Xbn1ne7WWkPIcLReOyyXeQ/6tBg2Lsu8= -github.com/onflow/flow-go-sdk v0.41.7-stable-cadence/go.mod h1:ejVN+bqcsTHVvRpDDJDoBNdmcxUfFMW4IvdTbMeQ/hQ= github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2 h1:vUVO6m85BiT8c50Oc8YGc3CU+sGqiKW9FZbmiRph2dU= github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2/go.mod h1:mbLrR3MkYbi9LH3yasDj1jrR4QTR8vjRLVFCm4jMHn0= github.com/onflow/flow-go/crypto v0.24.7 h1:RCLuB83At4z5wkAyUCF7MYEnPoIIOHghJaODuJyEoW0= github.com/onflow/flow-go/crypto v0.24.7/go.mod h1:fqCzkIBBMRRkciVrvW21rECKq1oD7Q6u+bCI78lfNX0= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20231212194623-24d595274bdd h1:ExvryNEp/B4bhLBGMVh9FHcviN4YloGncDpeSbDkCwg= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20231212194623-24d595274bdd/go.mod h1:OKA2xWNugqqbaFSmxdb1VWixtuqSdz/VK1MlbdcIUxw= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= -github.com/onflow/sdks v0.5.0/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= +github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 2f23aa15b..f9f898523 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -1,7 +1,7 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: // FlowServiceAccount/add_account_creator.cdc (588B) -// FlowServiceAccount/deposit_fees.cdc (882B) +// FlowServiceAccount/deposit_fees.cdc (878B) // FlowServiceAccount/remove_account_creator.cdc (590B) // FlowServiceAccount/scripts/get_account_creators.cdc (141B) // FlowServiceAccount/scripts/get_account_fee.cdc (136B) @@ -55,7 +55,7 @@ // epoch/admin/update_reward.cdc (364B) // epoch/admin/update_staking_views.cdc (354B) // epoch/node/register_dkg_participant.cdc (556B) -// epoch/node/register_node.cdc (3.114kB) +// epoch/node/register_node.cdc (3.106kB) // epoch/node/register_qc_voter.cdc (547B) // epoch/scripts/get_bonus_tokens.cdc (111B) // epoch/scripts/get_config_metadata.cdc (124B) @@ -68,13 +68,13 @@ // epoch/scripts/get_proposed_counter.cdc (116B) // epoch/scripts/get_randomize.cdc (128B) // epoch/scripts/get_target_end_time_for_epoch.cdc (266B) -// flowToken/burn_tokens.cdc (1.135kB) +// flowToken/burn_tokens.cdc (1.131kB) // flowToken/create_forwarder.cdc (2.027kB) // flowToken/mint_tokens.cdc (1.019kB) // flowToken/scripts/get_balance.cdc (412B) // flowToken/scripts/get_supply.cdc (208B) // flowToken/setup_account.cdc (1.476kB) -// flowToken/transfer_tokens.cdc (1.331kB) +// flowToken/transfer_tokens.cdc (1.327kB) // idTableStaking/admin/add_approved_and_limits.cdc (1.635kB) // idTableStaking/admin/add_approved_nodes.cdc (1.055kB) // idTableStaking/admin/capability_end_epoch.cdc (1.374kB) @@ -105,7 +105,7 @@ // idTableStaking/admin/upgrade_set_claimed.cdc (691B) // idTableStaking/admin/upgrade_staking.cdc (159B) // idTableStaking/delegation/del_request_unstaking.cdc (670B) -// idTableStaking/delegation/del_stake_new_tokens.cdc (1.052kB) +// idTableStaking/delegation/del_stake_new_tokens.cdc (1.044kB) // idTableStaking/delegation/del_stake_rewarded.cdc (676B) // idTableStaking/delegation/del_stake_unstaked.cdc (676B) // idTableStaking/delegation/del_withdraw_reward_tokens.cdc (952B) @@ -120,13 +120,13 @@ // idTableStaking/delegation/get_delegator_unstaked.cdc (319B) // idTableStaking/delegation/get_delegator_unstaking.cdc (321B) // idTableStaking/delegation/get_delegator_unstaking_request.cdc (330B) -// idTableStaking/delegation/register_delegator.cdc (985B) +// idTableStaking/delegation/register_delegator.cdc (981B) // idTableStaking/delegation/register_many_delegators.cdc (649B) // idTableStaking/node/node_add_capability.cdc (900B) -// idTableStaking/node/register_many_nodes.cdc (1.175kB) -// idTableStaking/node/register_node.cdc (1.659kB) +// idTableStaking/node/register_many_nodes.cdc (1.171kB) +// idTableStaking/node/register_node.cdc (1.651kB) // idTableStaking/node/request_unstake.cdc (644B) -// idTableStaking/node/stake_new_tokens.cdc (1.016kB) +// idTableStaking/node/stake_new_tokens.cdc (1.008kB) // idTableStaking/node/stake_rewarded_tokens.cdc (647B) // idTableStaking/node/stake_unstaked_tokens.cdc (626B) // idTableStaking/node/unstake_all.cdc (608B) @@ -167,50 +167,50 @@ // idTableStaking/scripts/get_total_staked_by_type.cdc (256B) // idTableStaking/scripts/get_weekly_payout.cdc (202B) // inspect_field.cdc (131B) -// lockedTokens/admin/admin_create_shared_accounts.cdc (3.685kB) +// lockedTokens/admin/admin_create_shared_accounts.cdc (3.677kB) // lockedTokens/admin/admin_deploy_contract.cdc (463B) // lockedTokens/admin/admin_deposit_account_creator.cdc (852B) // lockedTokens/admin/admin_remove_delegator.cdc (469B) // lockedTokens/admin/check_main_registration.cdc (955B) // lockedTokens/admin/check_shared_registration.cdc (639B) -// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.453kB) -// lockedTokens/admin/custody_create_only_lease_account.cdc (3.353kB) -// lockedTokens/admin/custody_create_only_shared_account.cdc (3.588kB) -// lockedTokens/admin/custody_create_shared_accounts.cdc (3.724kB) +// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.441kB) +// lockedTokens/admin/custody_create_only_lease_account.cdc (3.341kB) +// lockedTokens/admin/custody_create_only_shared_account.cdc (3.576kB) +// lockedTokens/admin/custody_create_shared_accounts.cdc (3.712kB) // lockedTokens/admin/custody_setup_account_creator.cdc (764B) -// lockedTokens/admin/deposit_locked_tokens.cdc (1.688kB) +// lockedTokens/admin/deposit_locked_tokens.cdc (1.684kB) // lockedTokens/admin/unlock_tokens.cdc (599B) // lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc (2.884kB) -// lockedTokens/delegator/delegate_new_tokens.cdc (1.391kB) -// lockedTokens/delegator/delegate_rewarded_tokens.cdc (655B) -// lockedTokens/delegator/delegate_unstaked_tokens.cdc (647B) +// lockedTokens/delegator/delegate_new_tokens.cdc (1.375kB) +// lockedTokens/delegator/delegate_rewarded_tokens.cdc (651B) +// lockedTokens/delegator/delegate_unstaked_tokens.cdc (643B) // lockedTokens/delegator/get_delegator_id.cdc (398B) // lockedTokens/delegator/get_delegator_info.cdc (1.464kB) // lockedTokens/delegator/get_delegator_node_id.cdc (402B) -// lockedTokens/delegator/register_delegator.cdc (1.763kB) -// lockedTokens/delegator/request_unstaking.cdc (649B) -// lockedTokens/delegator/withdraw_rewarded_tokens.cdc (996B) -// lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc (655B) -// lockedTokens/delegator/withdraw_unstaked_tokens.cdc (655B) +// lockedTokens/delegator/register_delegator.cdc (1.747kB) +// lockedTokens/delegator/request_unstaking.cdc (645B) +// lockedTokens/delegator/withdraw_rewarded_tokens.cdc (988B) +// lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc (651B) +// lockedTokens/delegator/withdraw_unstaked_tokens.cdc (651B) // lockedTokens/staker/get_node_id.cdc (393B) // lockedTokens/staker/get_staker_info.cdc (1.171kB) -// lockedTokens/staker/register_node.cdc (1.743kB) -// lockedTokens/staker/request_unstaking.cdc (713B) -// lockedTokens/staker/stake_new_tokens.cdc (1.442kB) -// lockedTokens/staker/stake_rewarded_tokens.cdc (716B) -// lockedTokens/staker/stake_unstaked_tokens.cdc (716B) -// lockedTokens/staker/unstake_all.cdc (679B) -// lockedTokens/staker/update_networking_address.cdc (673B) -// lockedTokens/staker/withdraw_rewarded_tokens.cdc (987B) -// lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc (719B) -// lockedTokens/staker/withdraw_unstaked_tokens.cdc (719B) -// lockedTokens/user/deposit_tokens.cdc (796B) +// lockedTokens/staker/register_node.cdc (1.727kB) +// lockedTokens/staker/request_unstaking.cdc (705B) +// lockedTokens/staker/stake_new_tokens.cdc (1.426kB) +// lockedTokens/staker/stake_rewarded_tokens.cdc (708B) +// lockedTokens/staker/stake_unstaked_tokens.cdc (708B) +// lockedTokens/staker/unstake_all.cdc (671B) +// lockedTokens/staker/update_networking_address.cdc (665B) +// lockedTokens/staker/withdraw_rewarded_tokens.cdc (979B) +// lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc (711B) +// lockedTokens/staker/withdraw_unstaked_tokens.cdc (711B) +// lockedTokens/user/deposit_tokens.cdc (788B) // lockedTokens/user/get_locked_account_address.cdc (407B) // lockedTokens/user/get_locked_account_balance.cdc (406B) // lockedTokens/user/get_multiple_unlock_limits.cdc (520B) // lockedTokens/user/get_total_balance.cdc (2.817kB) // lockedTokens/user/get_unlock_limit.cdc (397B) -// lockedTokens/user/withdraw_tokens.cdc (922B) +// lockedTokens/user/withdraw_tokens.cdc (906B) // nodeVersionBeacon/admin/change_version_freeze_period.cdc (810B) // nodeVersionBeacon/admin/delete_version_boundary.cdc (835B) // nodeVersionBeacon/admin/heartbeat.cdc (635B) @@ -244,7 +244,7 @@ // randomBeaconHistory/scripts/get_source_of_randomness_page.cdc (326B) // stakingCollection/close_stake.cdc (869B) // stakingCollection/create_machine_account.cdc (1.263kB) -// stakingCollection/create_new_tokenholder_acct.cdc (3.637kB) +// stakingCollection/create_new_tokenholder_acct.cdc (3.625kB) // stakingCollection/deploy_collection_contract.cdc (312B) // stakingCollection/register_delegator.cdc (786B) // stakingCollection/register_multiple_delegators.cdc (878B) @@ -262,7 +262,7 @@ // stakingCollection/scripts/get_machine_accounts.cdc (321B) // stakingCollection/scripts/get_node_ids.cdc (251B) // stakingCollection/scripts/get_unlocked_tokens_used.cdc (297B) -// stakingCollection/setup_staking_collection.cdc (3.511kB) +// stakingCollection/setup_staking_collection.cdc (3.503kB) // stakingCollection/stake_new_tokens.cdc (919B) // stakingCollection/stake_rewarded_tokens.cdc (812B) // stakingCollection/stake_unstaked_tokens.cdc (812B) @@ -381,7 +381,7 @@ func flowserviceaccountAdd_account_creatorCdc() (*asset, error) { return a, nil } -var _flowserviceaccountDeposit_feesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x4f\x8f\xd3\x30\x10\xc5\xcf\xcd\xa7\x78\xf4\x00\xcd\x61\x13\x0e\x88\x43\x55\x58\x16\xda\x70\x41\x42\xda\x2e\xbb\x67\x37\x99\x24\x16\xae\x1d\xd9\x13\x52\x54\xed\x77\x47\xb1\xe3\x40\xc4\x61\x4f\x51\xc6\x6f\xde\xfc\xe6\x8f\x3c\x77\xc6\x32\x8a\x5e\x37\xf2\xa4\xe8\xc1\xfc\x24\x8d\xda\x9a\x33\xd6\x8b\xd8\x3a\x89\x4a\x65\x86\x85\x2a\xfe\x2f\x14\x05\x91\x0b\x82\xb7\x97\xe2\xdb\xf7\xa7\xe2\x70\x38\xde\xed\xf7\xf7\x87\xe3\x31\x49\xf2\x1c\x7b\xea\x8c\x93\x0c\x1e\x33\x1d\xd8\x80\x5b\xfa\x9b\xf9\x28\x7a\xc5\xa3\xce\x68\xf5\x1b\xb5\xb1\x60\x72\x2c\x75\x93\x24\x6c\x85\x76\xa2\x64\x69\xf4\x46\x9c\x4d\xaf\x79\x8b\x1f\x85\xbc\xbc\x7f\x97\xe2\x9a\x24\x00\x90\xe7\x78\x68\x29\x98\xc0\x92\x33\xbd\x2d\x09\xdc\x0a\x46\x6b\x54\xe5\x7c\xad\x58\x79\x8c\x0a\x4b\x38\x91\xd4\x0d\xbc\x7b\x4d\xd6\x52\xe5\xad\x14\x31\x1c\x69\xf6\x5e\x5b\x7c\xba\x2e\x86\x92\xf9\xf0\x73\xa8\xda\x59\xea\x84\xa5\x8d\x93\x8d\x26\xbb\x85\xe8\xb9\xdd\x7c\x36\xd6\x9a\xe1\x51\xa8\x9e\x52\xbc\xbe\x2b\xcb\x11\x78\x06\x9d\x60\xbf\x12\x43\xc0\x52\x4d\x96\xf4\x48\x1a\xa6\x11\x8c\xde\x38\x38\x36\x96\x2a\xfc\xf2\x43\x89\x79\x23\x99\x8f\xdc\x53\x8d\x0f\x93\x38\x1b\xa5\xa2\xa1\xec\xe4\xeb\xee\x3c\xc3\x12\xf9\x49\x72\x5b\x59\x31\x88\x93\x1a\x91\xe6\xf5\x85\x5e\x3e\x6e\xc6\xa5\x6d\x91\x4f\x46\x79\x1d\xdf\xfd\x73\x9a\xac\x56\xab\xdb\x5b\x74\x42\xcb\x72\xb3\xfe\x62\x7a\x55\x41\x1b\x46\xa8\xf7\x7f\x0f\x66\x08\x2d\xf8\xec\x57\xeb\x74\xd1\x77\x44\x89\xbb\xf0\xf7\xf2\x72\xe7\x8e\x54\x9d\xcd\x4b\xc1\xee\x66\x9e\x43\x36\x4c\x8e\xf3\x65\x84\x6f\xea\x73\xa7\x3d\xd1\x85\xca\x9e\x09\xd7\x7f\x51\xe6\x7b\x6c\x09\xd1\x44\x47\x2e\xa9\x97\xd7\xb9\xc4\x89\xe1\xac\x0a\x1e\xd3\x04\x77\x37\x4b\xce\xc8\xf0\xfc\x27\x00\x00\xff\xff\xcd\x7f\x6b\x64\x72\x03\x00\x00" +var _flowserviceaccountDeposit_feesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x4f\x8f\xd3\x30\x10\xc5\xcf\xcd\xa7\x78\xf4\xb0\x34\x87\x4d\x38\x20\x0e\x55\x61\x59\x68\xc3\x05\x09\x69\xbb\xec\x9e\xdd\x64\x92\x58\xa4\x76\x64\x4f\x48\x51\xb5\xdf\x1d\xc5\x8e\x03\x16\x07\x4e\x51\xc6\x6f\xde\xfc\xe6\x8f\x3c\xf7\xda\x30\x8a\x41\x35\xf2\xd4\xd1\xa3\xfe\x41\x0a\xb5\xd1\x67\xac\xa3\xd8\x3a\x09\xca\x4e\x8f\x91\x2a\xfc\x47\x8a\x82\xc8\x7a\xc1\x9b\x4b\xf1\xf5\xdb\x73\x71\x38\x1c\xef\xf7\xfb\x87\xc3\xf1\x98\x24\x79\x8e\x3d\xf5\xda\x4a\x06\x4f\x99\x16\xac\xc1\x2d\xfd\xc9\x7c\x12\x43\xc7\x93\x4e\xab\xee\x17\x6a\x6d\xc0\x64\x59\xaa\x26\x49\xd8\x08\x65\x45\xc9\x52\xab\x8d\x38\xeb\x41\xf1\x16\xdf\x0b\x79\x79\xf7\x36\xc5\x35\x49\x00\x20\xcf\xf1\xd8\x92\x37\x81\x21\xab\x07\x53\x12\xb8\x15\x8c\x56\x77\x95\x75\xb5\x42\xe5\x29\x2a\x0c\xe1\x44\x52\x35\x70\xee\x35\x19\x43\x95\xb3\xea\x88\x61\x49\xb1\xf3\xda\xe2\xe3\x35\x1a\x4a\xe6\xc2\x2f\xbe\x6a\x6f\xa8\x17\x86\x36\x56\x36\x8a\xcc\x16\x62\xe0\x76\xf3\x49\x1b\xa3\xc7\x27\xd1\x0d\x94\xe2\xe6\xbe\x2c\x27\xe0\x05\x74\x86\xfd\x42\x0c\x01\x43\x35\x19\x52\x13\xa9\x9f\x86\x37\x7a\x6d\x61\x59\x1b\xaa\xf0\xd3\x0d\x25\xe4\x4d\x64\x2e\xf2\x40\x35\xde\xcf\xe2\x6c\x92\x8a\x86\xb2\x93\xab\xbb\x73\x0c\x31\xf2\xb3\xe4\xb6\x32\x62\x4c\x71\xb3\xac\xce\xf7\xf1\x61\x33\x2d\x6c\x8b\x7c\x36\xc9\xeb\xf0\xee\x9e\xd3\x64\xb5\x5a\xdd\xdd\xa1\x17\x4a\x96\x9b\xf5\x67\x3d\x74\x15\x94\x66\xf8\x5a\xff\xf2\xeb\xd1\xe3\xbb\xec\x57\xeb\x34\xea\x39\x60\x84\x3d\xb8\x5b\xf9\x7f\xd7\x96\xba\x3a\x5b\x16\x82\xdd\xed\x32\x83\x6c\x9c\x1d\x97\xab\xf0\xdf\xd4\xe5\xce\x3b\xa2\x0b\x95\x03\x13\xae\x7f\xa3\x2c\xb7\xd8\x12\x82\x89\x0a\x5c\x52\xc5\x97\x19\xe3\x84\x70\x56\x79\x8f\x79\x82\xbb\xdb\x98\x33\x30\xbc\xfc\x0e\x00\x00\xff\xff\x7d\xc0\xb1\xea\x6e\x03\x00\x00" func flowserviceaccountDeposit_feesCdcBytes() ([]byte, error) { return bindataRead( @@ -397,7 +397,7 @@ func flowserviceaccountDeposit_feesCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/deposit_fees.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x49, 0xf5, 0x3c, 0xbb, 0x74, 0x3e, 0x25, 0xf7, 0x2a, 0x9f, 0x9f, 0xf5, 0x52, 0x54, 0x7c, 0x7b, 0xa1, 0xb8, 0xdd, 0x7a, 0x8d, 0x23, 0x6b, 0x2e, 0x22, 0x5f, 0xe9, 0x23, 0xf7, 0x32, 0xea, 0xb7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd, 0x1f, 0xa8, 0xfe, 0x85, 0xb4, 0x0, 0x7e, 0x62, 0x49, 0x9f, 0x99, 0x5e, 0xfd, 0x1f, 0x31, 0x6, 0x80, 0x27, 0x4d, 0x4, 0xb6, 0x75, 0xc6, 0x30, 0x2e, 0x66, 0x4b, 0xc6, 0x70, 0x91, 0x1e}} return a, nil } @@ -1461,7 +1461,7 @@ func epochNodeRegister_dkg_participantCdc() (*asset, error) { return a, nil } -var _epochNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x56\x4d\x6f\xe3\x36\x13\xbe\xfb\x57\x0c\x72\x08\x64\xc0\x91\xdf\xb7\x28\x8a\x42\x48\x76\x61\xc8\x49\x1a\x78\xd1\xcd\xd7\xee\x1e\x8a\x1e\x68\x72\x64\xb1\x91\x49\x95\x1c\xd5\x2b\x04\xfe\xef\x05\x45\x49\x16\x23\x6f\x76\x17\xed\xad\x39\x38\xe6\x7c\x3c\x9c\xe1\xcc\x3c\x63\xb9\x2d\xb5\x21\x48\x4d\x5d\x92\x9e\xb4\xa7\xab\x42\xef\x6e\x96\x8f\x6c\x5d\xe0\x03\xb1\x27\xa9\x36\x90\x19\xbd\x85\x93\xb1\xe2\x64\xe8\xf3\xa8\x9f\x50\x0d\x4c\x9b\x73\x60\x91\x16\x95\x25\x34\x77\xa9\xb7\xfa\xdf\xe7\xbb\x74\xb1\x5c\xde\x5f\x3e\x3c\x0c\xad\x96\xab\xeb\x4e\xbf\x5c\x5d\x1f\x31\xb8\x2c\x35\xcf\x3b\x93\xcb\xdb\xf7\xe9\x2f\x2f\x8d\x2a\xb5\x91\xeb\x02\x83\x88\x86\xb2\x93\xc9\x64\x3e\x87\xc7\x5c\x5a\x20\xc3\x94\x65\x9c\xa4\x56\xc0\x0d\x32\x42\x0b\x0c\x14\xee\x40\x69\x81\x60\xc9\x54\x9c\x40\xaf\xff\x40\x4e\xde\x09\xd5\x0c\x64\x06\x94\xa3\x37\x91\xce\x81\xeb\xa2\x40\x4e\xda\x34\xb2\xd9\x0b\x28\xc6\xb9\xae\x14\x01\x53\x02\x98\x10\x4e\x7c\x97\xb6\xa0\x40\x1a\x64\x03\x7d\x33\x06\x55\x16\x95\xad\x6c\x0b\x2a\xe9\xeb\xb8\xee\xf5\x02\xe0\xc9\x20\xc3\x68\x02\x00\x20\x45\x02\x0f\x64\xa4\xda\xcc\x9a\xb3\xd1\x05\x26\xf0\xe1\x46\xd1\xcf\x5e\xa0\x90\x76\xda\xb8\x02\x2f\x84\x30\x68\x6d\x68\x7f\x50\xaf\xb0\x0e\x55\xd6\xf7\xc5\x48\xce\xb6\x2e\xce\x04\x3e\x5c\xc9\xcf\x3f\xfd\xe8\x65\x65\xb5\x2e\x24\x5f\x61\x6d\x13\xf8\xcd\xb7\x60\xbc\xc2\xfa\x9d\xb4\x74\xa9\xc8\xd4\xbf\x4f\xa6\xf0\x3c\x69\x4c\x0b\x24\xc8\xba\x96\xba\xc7\x2c\x01\x56\x51\x1e\x05\x35\x8d\x3f\x49\xca\x85\x61\x3b\xd7\x9f\x53\x38\xed\x5b\x30\xfe\xc8\xaa\x82\x3c\x50\x69\xb0\x64\x06\x23\xc6\x39\xb5\x20\x0f\xa4\x0d\xdb\xe0\x0c\x52\x56\xb2\xb5\x2c\x24\x49\xb4\x33\x58\x08\xb1\xc2\x7a\x0a\xa7\x0b\xff\xc6\x7d\x2c\x4d\x9a\x58\x64\xf1\x30\x20\xb8\x70\xb5\xa0\xd8\x7a\xb0\x78\xad\x8d\xd1\xbb\xf3\xef\x8e\xf2\x4d\xe4\xba\x35\x81\x79\x0b\x34\xef\x2f\x69\xd4\xd3\x3e\x02\xf7\xf7\xf6\x2d\x94\x4c\x49\x1e\x9d\xa4\xba\x2a\x04\x28\x4d\xe0\x2f\x06\x83\x19\x1a\x54\x1c\x5d\x13\x5c\xbd\x7b\xff\x09\x1a\xff\x93\xe9\x21\x87\xf9\x1c\xee\x71\x23\xdd\x40\xc2\xaf\x5a\x60\xaf\x90\xd9\xd1\x5c\x4e\xc7\xe3\x1f\x3b\x3f\xf7\x1d\x4d\x17\xf8\xab\x46\xed\x53\xdf\x32\xca\xa7\x70\x71\x01\x4a\x16\xc3\x57\xed\x2a\xad\x7a\x07\x38\x3f\x3b\x86\xc8\x84\x70\xa0\xf7\xc8\xb5\x11\x51\xe0\xdf\xf5\xb7\x14\xb3\x91\xdc\xf7\xb9\xfb\x1c\xeb\x8e\xb4\xfc\x48\xf4\x9a\x57\xd3\xf1\xc1\x71\x6c\x3d\x1c\x8e\xc3\xf7\xb1\x1d\xb9\x7a\xdb\x54\x6f\xb7\x92\x08\x45\x02\xe7\x67\xa3\x86\x8b\x77\x6d\x1f\x45\xdd\x68\xf9\xff\x61\x87\x4c\xc3\xc7\x0d\xca\x6a\xd9\x5f\x18\x9d\x9f\x1d\x1e\x7b\x06\xa4\xbf\xa3\x80\xaf\xd5\x2d\x65\x65\x37\x11\x7c\x30\x55\xfd\xdd\xd2\xda\x0a\xcf\x4f\x9f\x5f\xbd\xec\xb6\xe1\x87\xfd\x9b\xe8\xdb\x43\x1a\x25\x1b\xdc\xde\x10\x8e\xcd\xa3\x20\xce\x19\x30\xfa\x4a\xd6\x3e\x90\xf0\x86\xfd\x21\xfd\x2e\xf5\x2f\xd3\xc0\xbf\x3c\x3a\xdf\x4a\x02\xcd\x22\x39\x30\x41\xb3\x07\xdb\xc8\xa0\x64\x94\x0f\xd9\xa0\x4b\xe2\x46\x65\x1a\x2e\xbe\x14\x8b\xd3\x36\xcf\x77\xb3\x4c\xba\x9c\x63\x29\x42\x56\x39\xb2\xc6\xba\xdd\xa8\xcd\x68\xa7\xf9\x85\x06\x0c\x2c\x72\xad\x04\x33\x75\xbf\xd5\x32\x6d\x1c\x92\x34\x60\x4b\xe4\x32\x93\xbc\xdd\x6c\x76\xc8\x55\x5d\xd4\xb1\x1b\x6c\xc7\x2a\xff\x07\x66\xfd\x36\x3b\x46\x2e\x5b\xc6\x73\xa9\x70\xc1\x39\xc1\x05\xb4\xe4\x1e\x95\xac\x46\x93\x34\xc5\x0b\x9f\xd7\xc5\xf0\x84\x35\x48\x35\xd8\x57\xf0\x3c\x9a\xd9\x01\x6c\xfc\x84\xb5\x75\x1c\x15\xf5\x1e\x89\xc3\x88\xfb\xe3\x0c\x72\x66\xf3\x45\xb1\xd1\x46\x52\xbe\xf5\xda\x40\x34\x83\x1d\xca\x4d\x4e\x5e\xe5\xbf\x87\x81\xed\xc7\xa9\xfd\xc9\x3f\x6a\x3a\x90\x66\xf3\x33\x29\xde\x20\xf5\x3f\xbb\x1a\xf5\xa0\xfd\xfb\x1a\x86\xd0\xc3\x5c\x5e\xb0\x45\x7b\xc5\x81\x2a\x7a\xec\xb8\x51\x1c\x27\x88\x3d\x60\x61\xf1\x68\xb1\x7e\xf8\xaf\x16\x4b\x3c\x6d\x6e\x99\x21\xc9\x65\xc9\x14\x8d\x6a\xb6\x5c\x5d\x0f\xd4\xff\xa8\x66\xe1\x4d\x87\xd2\x2d\x57\xd7\xf1\x40\x71\x94\x61\xf6\x13\xff\xb9\xff\x3b\x00\x00\xff\xff\xe5\x00\xd4\x00\x2a\x0c\x00\x00" +var _epochNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x56\x4b\x6f\xe3\xb6\x13\xbf\xfb\x53\x0c\x72\x08\x64\xc0\x91\xff\xff\xa2\x28\x0a\x21\xd9\x85\x21\x27\x69\xe0\x45\x37\xaf\xdd\x3d\x14\x3d\xd0\xe4\xc8\x62\x23\x93\x2a\x39\xaa\x57\x08\xfc\xdd\x0b\x8a\x92\x2c\x46\xde\xec\x2e\xda\x5b\x7d\x90\xc5\x79\xfc\x66\x86\xf3\x92\xdc\x96\xda\x10\xa4\xa6\x2e\x49\x4f\xda\xd3\x55\xa1\x77\x37\xcb\x47\xb6\x2e\xf0\x81\xd8\x93\x54\x1b\xc8\x8c\xde\xc2\xc9\x98\x71\x32\xd4\x79\xd4\x4f\xa8\x06\xa2\xcd\x39\x90\x48\x8b\xca\x12\x9a\xbb\xd4\x4b\xfd\xef\xf3\x5d\xba\x58\x2e\xef\x2f\x1f\x1e\x86\x52\xcb\xd5\x75\xc7\x5f\xae\xae\x8f\x08\x5c\x96\x9a\xe7\x9d\xc8\xe5\xed\xfb\xf4\x97\x97\x42\x95\xda\xc8\x75\x81\x81\x47\x43\xda\xc9\x64\x32\x9f\xc3\x63\x2e\x2d\x90\x61\xca\x32\x4e\x52\x2b\xe0\x06\x19\xa1\x05\x06\x0a\x77\xa0\xb4\x40\xb0\x64\x2a\x4e\xa0\xd7\x7f\x20\x27\xaf\x84\x6a\x06\x32\x03\xca\xd1\x8b\x48\xa7\xc0\x75\x51\x20\x27\x6d\x1a\xda\xec\x05\x14\xe3\x5c\x57\x8a\x80\x29\x01\x4c\x08\x47\xbe\x4b\x5b\x50\x20\x0d\xb2\x81\xbe\x19\x83\x2a\x8b\xca\x56\xb6\x05\x95\xf4\x75\x5c\x77\x7b\x01\xf0\x64\x10\x61\x34\x01\x00\x90\x22\x81\x07\x32\x52\x6d\x66\xcd\xd9\xe8\x02\x13\xf8\x70\xa3\xe8\x67\x4f\x50\x48\x3b\x6d\x5c\x82\x17\x42\x18\xb4\x36\x94\x3f\xb0\x57\x58\x87\x2c\xeb\xeb\x62\x44\x67\x5b\xe7\x67\x02\x1f\xae\xe4\xe7\x9f\x7e\xf4\xb4\xb2\x5a\x17\x92\xaf\xb0\xb6\x09\xfc\xe6\x4b\x30\x5e\x61\xfd\x4e\x5a\xba\x54\x64\xea\xdf\x27\x53\x78\x9e\x34\xa2\x05\x12\x64\x5d\x49\xdd\x63\x96\x00\xab\x28\x8f\x82\x9c\xc6\x9f\x24\xe5\xc2\xb0\xdd\x14\x4e\xfb\xf2\x8b\x3f\xb2\xaa\x20\x0f\x52\x1a\x2c\x99\xc1\x88\x71\x4e\x2d\xc0\x03\x69\xc3\x36\x38\x83\x94\x95\x6c\x2d\x0b\x49\x12\xed\x0c\x16\x42\xac\xb0\x9e\xc2\xe9\xc2\xdf\x6f\xef\x47\x13\x22\x16\x59\x3c\x74\x06\x2e\x5c\x1e\x28\xb6\x1e\x2c\x5e\x6b\x63\xf4\xee\xfc\xbb\x3c\x7c\x13\xb9\x2a\x4d\x60\xde\x82\xcc\x7b\x03\x0d\x7b\xda\x5b\x77\xbf\xb7\x6f\xa1\x64\x4a\xf2\xe8\x24\xd5\x55\x21\x40\x69\x02\x6f\x14\x0c\x66\x68\x50\x71\x74\xc9\xbf\x7a\xf7\xfe\x13\x34\xfa\x27\xd3\x83\xff\xf3\x39\xdc\xe3\x46\xba\x46\x84\x5f\xb5\xc0\x9e\x21\xb3\xa3\x71\x9c\x8e\xdb\x3e\x76\x7a\xee\x1d\x4d\xe7\xf8\xab\x42\xed\x35\xdf\x32\xca\xa7\x70\x71\x01\x4a\x16\xc3\x1b\xed\x32\xac\x7a\x05\x38\x3f\x3b\x86\xc8\x84\x70\xa0\xf7\xc8\xb5\x11\x51\xa0\xdf\xd5\xb5\x14\xb3\x11\xdd\xd7\xb7\x7b\x8e\x79\x47\x4a\x7d\x44\x7a\x4d\xab\xa9\xf4\xe0\x38\x96\x1e\x36\xc5\xe1\x7d\x2c\x47\x2e\xdf\x36\xd5\xdb\xad\x24\x42\x91\xc0\xf9\xd9\xa8\xd8\xe2\x5d\x5b\x43\x51\xd7\x52\xfe\x3f\xac\x90\x69\x78\xb9\x41\x5a\x2d\xfb\x0b\xa3\xf3\xb3\xc3\x65\xcf\x80\xf4\x77\x24\xf0\xb5\xbc\xa5\xac\xec\xba\x81\x0f\x3a\xaa\xb7\x2d\xad\xad\xf0\xfc\xf4\xf9\x55\x63\xb7\xcd\x5c\xd8\xbf\x89\xbe\xdd\xa5\x51\xb0\x81\xf5\x66\xd0\xd8\x3c\x0a\xfc\x9c\x01\xa3\xaf\x44\xed\x1d\x09\x2d\xec\x0f\xe1\x77\xa1\x7f\x79\x04\xfc\xcb\xad\xf3\xad\x43\xa0\x59\x20\x87\x49\xd0\xec\xbf\xd6\x33\x28\x19\xe5\xc3\x69\xd0\x05\x71\xa3\x32\x0d\x17\x5f\xf2\xc5\x71\x9b\xeb\xbb\x59\x26\x5d\xcc\xb1\x14\xe1\x54\x39\xb2\xbe\xba\x9d\xa8\xcd\x68\x97\xf9\x45\x06\x0c\x2c\x72\xad\x04\x33\x75\xbf\xcd\x32\x6d\x1c\x92\x34\x60\x4b\xe4\x32\x93\xbc\xdd\x68\x76\x38\xab\x3a\xaf\x63\xd7\xd8\x6e\xaa\xfc\x1f\x98\xf5\x5b\xec\xd8\x70\xd9\x32\x9e\x4b\x85\x0b\xce\x09\x2e\xa0\x1d\xec\x51\xc9\x6a\x34\x49\x93\xbc\xf0\x7a\x9d\x0f\x4f\x58\x83\x54\x83\x3d\x05\xcf\xa3\x9e\x1d\xc0\xc6\x4f\x58\x5b\x37\xa3\xa2\x5e\x23\x71\x18\x71\x7f\x9c\x41\xce\x6c\xbe\x28\x36\xda\x48\xca\xb7\x9e\x1b\x90\x66\xb0\x43\xb9\xc9\xc9\xb3\xfc\x7b\xe8\xd8\x7e\x1c\xda\x9f\xfc\xa3\xa6\xc3\xd0\x6c\x3e\x8f\xe2\x0d\x52\xff\xb9\xd5\xb0\x07\xe5\xdf\xe7\x30\x84\x1e\xc6\xf2\x62\x5a\xb4\x26\x0e\xa3\xa2\xc7\x8e\x1b\xc6\xf1\x01\xb1\x07\x2c\x2c\x1e\x4d\xd6\x0f\xff\xd5\x64\x89\xa7\xcd\x2d\x33\x24\xb9\x2c\x99\xa2\x51\xce\x96\xab\xeb\x01\xfb\x1f\xe5\x2c\xb4\x74\x48\xdd\x72\x75\x1d\x0f\x18\x47\x27\xcc\x7e\xe2\x9f\xfb\xbf\x03\x00\x00\xff\xff\x6d\x17\x29\x3f\x22\x0c\x00\x00" func epochNodeRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -1477,7 +1477,7 @@ func epochNodeRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/node/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x58, 0x67, 0xe, 0x45, 0xe1, 0x94, 0x4, 0x97, 0x13, 0x9c, 0xff, 0x78, 0x65, 0x73, 0xb4, 0x72, 0x8c, 0x69, 0xca, 0xca, 0x1c, 0x61, 0x86, 0xe4, 0xb8, 0xd7, 0x91, 0x3b, 0x9d, 0xfa, 0x97, 0x65}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfc, 0x12, 0xf1, 0x59, 0xe0, 0x96, 0xc, 0x24, 0xa7, 0xb6, 0x16, 0x51, 0xd, 0xe0, 0x79, 0x22, 0x59, 0x33, 0x89, 0xeb, 0x2f, 0xc3, 0x60, 0xa1, 0xee, 0x25, 0x7, 0x19, 0xb3, 0x7e, 0x34, 0x7e}} return a, nil } @@ -1721,7 +1721,7 @@ func epochScriptsGet_target_end_time_for_epochCdc() (*asset, error) { return a, nil } -var _flowtokenBurn_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x3d\x73\x9b\x40\x10\xed\xf9\x15\x2f\x2a\x3c\xa8\x30\x34\x99\x14\x1a\x27\x8e\xed\x19\x97\xa9\x1c\xa7\x5e\x60\x25\x6e\x02\x77\xcc\xde\x11\xec\xf1\xf8\xbf\x67\x6e\x0f\x90\x28\xa4\x42\xc0\xdd\xee\xfb\xd8\xb7\x65\x89\x97\xd6\x78\x04\x21\xeb\xa9\x0e\xc6\x59\x18\x0f\x42\xe0\x7e\xe8\x28\x30\x8e\x4e\xe2\xe7\xc5\x7d\x68\x29\x64\x65\x89\xda\x8d\x5d\x83\x8a\x31\x7a\x6e\x50\xbd\x23\xb4\x0c\x6a\x7a\x63\x41\x75\xed\x46\x1b\x10\x1c\xaa\x51\x2c\x82\xfb\xcb\xd6\xc7\xa6\xa3\xb8\x3e\x16\x1a\x81\x0f\x4e\xb8\xc1\x2b\x8d\x5d\xc4\xcb\x54\x0b\x6b\x83\xb1\x27\x50\xaf\x10\xd3\xc2\x42\x18\x48\xa8\xe7\xc0\x12\x71\x23\xd9\x85\xaa\x2c\x33\xfd\xe0\x24\xe0\x79\xb4\x27\x53\x75\xfc\x12\x29\x13\xdd\x6e\x73\xb6\x5b\x2b\x3b\x37\x6d\xaa\x96\xef\x5d\x96\x5d\x20\xe7\x49\xc8\x01\xbf\x9f\xcd\xdb\xb7\xaf\x7b\x7c\x64\x19\x00\x94\x65\x92\x0e\x61\xef\x46\xa9\x59\x07\x83\xd6\x75\x8d\x4f\xea\xd4\x74\x3a\x25\x61\x54\x1c\x6d\x45\x7b\xdc\x28\x42\xc7\x01\xff\x22\xc4\x01\x3f\x37\x12\x8b\x34\x93\xb5\x48\x87\x7a\xc0\xcd\xaa\xb0\x78\x88\x27\xc6\x07\xa1\xe0\x24\x15\x0e\xc2\x03\x09\xe7\xde\x9c\x2c\xcb\x01\x34\x86\x36\x7f\x74\x22\x6e\x7a\xa5\x6e\xe4\x3d\x6e\x1e\x52\x2c\xab\x85\xd9\xc6\x1f\x13\xda\x46\x68\x5a\x14\x2f\x19\xcd\x61\xaa\x44\x18\xab\x81\xd1\x89\xd7\x56\xcf\xdd\xb1\x48\xb7\x77\xb7\x48\xbc\xc5\x5c\x54\x54\xca\x7c\xa7\x2a\xb6\xe6\x16\x3a\xaa\xba\x28\xea\x6c\x4a\x5d\xff\xc8\x23\xfd\x01\xe5\x0c\x54\x1e\x97\x7b\xbd\xde\x7f\x59\xe9\xe3\xaf\x98\x66\xb0\x35\xa5\xf4\xdc\x6f\x0c\x3e\x09\xc7\x55\x26\x08\x1f\x59\xd8\xc6\xac\xdc\xe5\xba\xea\xff\x9a\xe3\x35\xab\xa9\xec\xfb\x15\xa7\xd7\xd2\xb9\x6e\x48\xcb\xf6\x1b\x3f\xf7\xf7\x18\xc8\x9a\x3a\xdf\x3d\xe9\xde\x5b\x17\x90\xf0\xaf\xab\x5f\x74\xef\x12\xd4\x67\xb2\xce\x6f\x5c\x8f\x81\xf1\xb1\xe2\xc7\x4d\xd2\xed\x13\x8d\x6b\x75\x54\xd4\x3a\x9e\x5f\x3c\x3d\xea\x6d\x7e\x96\xb4\xbe\xa4\xbe\x22\x3e\x54\xba\x9f\x4d\xdd\xdd\x9e\x97\xe0\x62\xe6\x0d\xfb\x20\xee\x7d\x6e\x9b\x65\x7d\x66\xf8\x1f\x00\x00\xff\xff\x41\x06\x25\x6c\x6f\x04\x00\x00" +var _flowtokenBurn_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x3d\x73\x9c\x30\x10\xed\xf9\x15\x2f\x57\x78\xa0\x30\x34\x99\x14\x37\x97\x38\xb6\x67\x5c\xa6\x72\x9c\x5a\xc0\xde\xa1\x09\x48\xcc\x4a\x04\x7b\x3c\xfe\xef\x19\xad\x40\x86\xe2\xae\x38\x40\xda\x7d\x1f\xfb\xb6\xaa\xf0\xdc\x69\x07\xcf\xca\x38\xd5\x78\x6d\x0d\xb4\x83\x82\xa7\x61\xec\x95\x27\x9c\x2d\x87\xcf\xcd\xbd\xef\x94\xcf\xaa\x0a\x8d\x9d\xfa\x16\x35\x61\x72\xd4\xa2\x7e\x83\xef\x08\xaa\x1d\xb4\x81\x6a\x1a\x3b\x19\x0f\x6f\x51\x4f\x6c\xe0\xed\x5f\x32\x2e\x34\x9d\xd9\x0e\xa1\x50\x33\x9c\xb7\x4c\x2d\x5e\xd4\xd4\x07\xbc\x4c\xb4\x90\x34\x68\x73\x81\x1a\x04\x62\x5e\x59\x14\x46\xc5\x6a\x20\x4f\x1c\x70\x03\xd9\x46\x55\x96\xe9\x61\xb4\xec\xf1\x34\x99\x8b\xae\x7b\x7a\x0e\x94\x91\xee\xb0\x3b\x3b\xa4\xca\xde\xce\xbb\xaa\xf5\xfb\x90\x65\x1b\xe4\x3c\x0a\x39\xe2\xf7\x93\x7e\xfd\xf6\xb5\xc0\x7b\x96\x01\x40\x55\x45\xe9\x60\x72\x76\xe2\x86\x64\x30\xe8\x6c\xdf\xba\xa8\x4e\x4c\xc7\x53\xc5\x84\x9a\x82\xad\x60\x8f\x5a\x41\xe8\xc9\xe3\x5f\x80\x38\xe2\xe7\x4e\x62\x19\x67\x92\x8a\x64\xa8\x47\xdc\x24\x85\xe5\x7d\x38\xd1\xce\xb3\xf2\x96\x63\xe1\xc8\x34\x2a\xa6\xdc\xe9\x8b\x21\x3e\x42\x4d\xbe\xcb\x1f\x2c\xb3\x9d\x5f\x54\x3f\x51\x81\x9b\xfb\x18\x4b\xb2\xb0\xd8\xf8\xa3\x7d\xd7\xb2\x9a\x57\xc5\x6b\x46\x4b\x98\x22\x11\xda\x48\x60\xea\x42\xa9\xd5\x51\x7f\x2e\xe3\xed\xe9\x16\x91\xb7\x5c\x8a\xca\x5a\x98\x4f\xa2\x62\x6f\x6e\xa5\x2b\xb6\x86\xc4\xf1\x8f\x3c\x50\x1f\x51\x2d\x20\xd5\x79\xbd\x97\xeb\xe2\x4b\xa2\x0e\xbf\x72\x5e\x80\x52\x42\xf1\x59\xec\xcc\x3d\x32\x85\x35\x56\x60\x3a\x13\x93\x09\x39\xd9\xed\xaa\xca\x7f\xca\xf0\x9a\xcd\x58\xf6\xfd\x8a\xcb\x6b\xc9\x5c\x37\x24\x65\xc5\xce\xcf\xdd\x1d\x46\x65\x74\x93\x1f\x1e\x65\xe7\x8d\xf5\x88\xf8\xd7\xd5\xaf\xba\x0f\x11\xea\x23\x5a\xa7\x57\x6a\x26\x4f\x78\x4f\xf8\x61\x8b\x64\xf3\x58\xa2\x4a\x8e\xca\x46\xc6\xf3\x8b\xe6\x07\xb9\xcd\x3f\x25\xa5\x97\xd8\x57\x86\x87\x48\x77\x8b\xa9\xd3\xed\xe7\x02\x6c\x66\xde\x92\xf3\x6c\xdf\x96\xb6\x45\xd6\x47\x86\xff\x01\x00\x00\xff\xff\xc1\xb3\x5c\x5c\x6b\x04\x00\x00" func flowtokenBurn_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1737,7 +1737,7 @@ func flowtokenBurn_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/burn_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0x9a, 0x5, 0x93, 0x58, 0x8e, 0x28, 0x8c, 0x2b, 0xdc, 0xa3, 0x4a, 0x21, 0xc4, 0x7e, 0xa1, 0x99, 0x4b, 0x2f, 0x3a, 0x41, 0xf7, 0x7f, 0x5e, 0xbe, 0xbc, 0x9f, 0xfd, 0x1b, 0x36, 0x35, 0xb8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0xab, 0x79, 0xb7, 0x68, 0xcb, 0x5f, 0xd1, 0x64, 0x9d, 0xc7, 0xd0, 0x52, 0xf7, 0xf0, 0x89, 0x6f, 0x7d, 0x6e, 0x44, 0xe6, 0xe9, 0x29, 0x7d, 0xed, 0xf4, 0x61, 0x3e, 0x14, 0xb1, 0x1d, 0xe0}} return a, nil } @@ -1841,7 +1841,7 @@ func flowtokenSetup_accountCdc() (*asset, error) { return a, nil } -var _flowtokenTransfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xcd\x4e\xdc\x30\x10\x3e\x93\xa7\x98\xee\x01\xb2\x52\x49\x2e\x55\x0f\x2b\x0a\xa5\xad\xe8\x1d\x51\x7a\x9e\x38\x93\x8d\x55\xaf\x1d\x8d\x27\x2c\x08\xed\xbb\x57\xb6\xe3\xb0\x01\xa9\x74\x2f\xab\x8c\x67\xbe\xf9\x7e\xec\xba\x86\xbb\x5e\x7b\x10\x46\xeb\x51\x89\x76\x16\xb4\x07\x04\xa1\xdd\x60\x50\x08\x3a\xc7\xe1\xf3\xe8\x5c\x7a\x94\xa2\xae\x41\xb9\xd1\xb4\xd0\x10\x8c\x9e\x5a\x68\x9e\x00\xed\x93\xb3\x04\xe2\xc0\x93\x6d\x41\xdc\x1f\xb2\x3e\x7c\xa2\x75\xd2\x13\x03\x2a\xe5\x46\x1b\x87\x03\x08\xf4\xe8\xa1\x21\xb2\xe0\x49\x60\x1c\x42\x2b\x93\x22\xfd\x40\xd3\x70\x55\xd4\x75\x11\x39\x12\xec\xb5\xf4\x2d\xe3\x1e\x70\x17\x40\x00\xc3\x8a\x9e\x32\x28\x74\xec\x76\xb0\x25\xb9\x7e\x59\xb2\xcf\x0c\x43\xdf\x80\x8c\x3b\x12\xe2\x48\x29\x54\x8e\x44\x15\x85\xde\x0d\x8e\x05\x6e\x46\xbb\xd5\x8d\xa1\xbb\xb0\x3f\x61\xae\x16\xb5\xd5\xdc\x69\xdc\x7e\xd1\x95\xbf\x57\x45\x71\x84\x5c\x26\xba\x1b\xf8\x75\xa3\x1f\x3f\x7f\xfa\x08\xe2\x36\x70\xdd\xb6\x4c\xde\xaf\xe1\xb9\x28\x00\x00\x26\x89\xf7\x38\x1a\x01\x26\xef\x46\x56\x34\x79\xe4\x4c\xeb\x13\xdd\xc9\xcf\x50\x45\x26\x68\x48\xdb\x6d\x12\xd1\x11\x33\xb5\x11\xca\x90\x04\xfb\x25\x62\x6d\xe0\xeb\x82\x7c\x15\xab\x69\xe7\xc0\x34\x20\x53\xe9\xf5\xd6\x12\x6f\x00\x47\xe9\xcb\x6f\x8e\xd9\xed\xef\xd1\x8c\xb4\x86\xd3\xc9\xca\x99\xe6\x44\xf5\x27\x09\x20\x30\x75\xc4\x64\x15\x65\x3b\x13\xd0\x99\x07\x2f\x8e\xa9\x85\x87\xb8\x2b\xcf\x05\x5e\xb1\x72\x4b\x1d\x7c\x99\x9a\xab\xd0\x8a\x5b\xaa\x9a\xb8\xf7\x22\x72\x58\x32\xfe\x3d\xc5\x8e\x8d\x09\x94\x66\x97\x93\x94\xcb\x32\x98\xbf\x81\x7a\x02\xaa\xbb\x7c\x1e\x8f\xd7\xc5\xc9\xc9\xc9\xd5\x15\x0c\x68\xb5\x2a\x57\xdf\xe3\x7d\xb0\x4e\x20\xed\x7b\xab\xc1\xed\x93\x84\x38\xfd\x61\xb5\x5e\xe8\xce\x54\x72\x12\x31\xf7\xf7\x95\x7b\x32\x5d\x35\x47\x02\x17\xe7\xb3\x0f\x55\xbe\xd3\xf3\x25\x49\xff\xeb\x38\x7b\x48\xcb\xe9\x91\xd4\x28\xf4\x7f\x19\x30\x29\x3d\x68\xb2\x72\xe6\xe1\x36\x3d\x25\x5e\x44\x30\xbd\x2f\x4e\x29\x1c\xbd\x97\x52\xdc\x7a\xee\x0c\xbf\x4a\xe1\x80\x8d\x36\x5a\x34\xf9\x1c\xd0\xe9\xf3\x32\x9d\xbc\xe3\x70\x59\xd6\xc3\xd8\x18\xad\x5e\x12\xc8\x67\xef\x87\x90\xfa\xfe\xad\x26\x9a\xf7\x2a\x90\x1f\x34\x38\xaf\x25\xf6\x66\x2b\x6d\x4e\x47\xdb\x37\x18\xfc\xda\x91\x23\x37\xaa\x36\x81\x4d\x17\xea\xe2\x7c\x19\x5b\x8e\xe4\x50\xfc\x0d\x00\x00\xff\xff\xcb\x74\x8b\xdb\x33\x05\x00\x00" +var _flowtokenTransfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x41\x4f\xdc\x3c\x10\x3d\x93\x5f\xf1\xbe\x3d\x40\x22\x7d\x24\x97\x4f\xdf\x61\x45\xa1\xb4\x15\xbd\x23\x4a\xcf\x4e\x32\xd9\x58\xcd\xda\xd1\x78\xc2\x82\x10\xff\xbd\xb2\x1d\x87\x0d\x48\xa5\x7b\x59\x65\x3c\xf3\xde\x9b\xf7\xec\xaa\xc2\x5d\xaf\x1d\x84\x95\x71\xaa\x11\x6d\x0d\xb4\x83\x82\xd0\x7e\x1c\x94\x10\x3a\xcb\xfe\xf3\xe8\x5c\x7a\x25\x59\x55\xa1\xb1\xd3\xd0\xa2\x26\x4c\x8e\x5a\xd4\x4f\x50\xe6\xc9\x1a\x82\x58\x38\x32\x2d\xc4\xfe\x22\xe3\xfc\xa7\x32\x56\x7a\x62\xa8\xa6\xb1\x93\x09\xc3\x1e\x04\xbd\x72\xa8\x89\x0c\x1c\x09\xa6\xd1\xb7\x32\x35\xa4\x1f\x68\x1e\x2e\xb3\xaa\xca\x82\x46\xc2\x41\x4b\xdf\xb2\x3a\x40\xed\x3d\x08\x94\xa7\xe8\x29\x81\xa2\x63\xbb\xc7\x8e\xe4\xfa\x95\xe4\x90\x14\xfa\xbe\x51\xb1\xda\x93\x10\x07\x49\xbe\x72\xb4\x54\x96\xe9\xfd\x68\x59\x70\x33\x99\x9d\xae\x07\xba\xf3\xfc\x11\x73\xb3\xaa\x6d\x96\xce\xc1\x1e\x56\x5d\xe9\x7b\x93\x65\x47\xc8\x79\x94\xbb\xc5\x8f\x1b\xfd\xf8\xff\x7f\xff\x42\xec\x16\xd7\x6d\xcb\xe4\x5c\x81\xe7\x2c\x03\x80\x79\xc5\x7b\x35\x0d\x02\x26\x67\x27\x6e\x68\xf6\xc8\x0e\xad\x8b\x72\x67\x3f\x7d\x55\x31\xa1\x26\x6d\x76\x71\x89\x8e\x98\xa9\x0d\x50\x03\x89\xb7\x5f\x02\xd6\x16\x9f\x57\xe2\xcb\x50\x8d\x9c\x23\xd3\xa8\x98\x72\xa7\x77\x86\x78\x0b\x35\x49\x9f\x7f\xb1\xcc\xf6\x70\xaf\x86\x89\x0a\x9c\xce\x56\x2e\x32\x67\xa9\xdf\x49\xa0\xc0\xd4\x11\x93\x69\x28\xd9\x19\x81\xce\x1c\x9c\x58\xa6\x16\x0f\x81\x2b\xcd\x79\x5d\xa1\x72\x4b\x1d\x3e\xcd\xcd\xa5\x6f\x55\x3b\x2a\xeb\xc0\x7b\x11\x34\xac\x15\xff\x9c\x63\x2f\x70\xba\x38\x1c\xd7\xb8\xcc\xbd\xf1\x5b\x54\x33\x48\xd5\xa5\xf3\x70\x5c\x64\x27\x27\x27\x57\x57\x18\x95\xd1\x4d\xbe\xf9\x1a\xee\x82\xb1\x82\xc8\xf5\x5e\xbf\x3d\x44\xf9\x61\xfa\x9f\x4d\xb1\xda\x39\xc9\x48\x29\x84\xcc\x3f\xde\xda\xd1\xd0\x95\x4b\x1c\xb8\x38\x5f\x3c\x28\xd3\x7d\x5e\x2e\x48\xfc\x2f\xc2\xec\x4b\x24\xa7\x47\x6a\x26\xa1\xbf\xf3\x9f\xa9\xd1\xa3\x26\x23\x67\x0e\xb7\xf1\x19\xf1\xca\xfe\xf9\x6d\x71\x4c\xe0\xe8\xad\xe4\x62\x8b\xa5\xd3\xff\xca\x46\x8d\xaa\xd6\x83\x16\x4d\x2e\x85\x73\xfa\xbc\x4e\x26\x71\xbc\x5c\xe6\xd5\x38\xd5\x83\x6e\x5e\x13\x48\x67\x1f\x87\x10\xfb\xfe\xbc\x4d\x30\xef\x4d\x20\xdf\x68\xb4\x4e\x4b\xe8\x4d\x56\x9a\x94\x8e\x36\xef\x30\xf8\xad\x23\x47\x6e\x94\x6d\x04\x9b\x2f\xd4\xc5\xf9\x3a\xb6\x14\xc9\x4b\xf6\x3b\x00\x00\xff\xff\xf7\x2a\x53\x84\x2f\x05\x00\x00" func flowtokenTransfer_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1857,7 +1857,7 @@ func flowtokenTransfer_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/transfer_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0xba, 0x25, 0xee, 0xa6, 0x70, 0x41, 0x3b, 0xa8, 0x36, 0xcf, 0x12, 0xd4, 0x60, 0xb5, 0x2d, 0x86, 0x12, 0xa0, 0xf7, 0x98, 0x93, 0x7d, 0x1e, 0xe9, 0xdb, 0xb6, 0x15, 0x43, 0x95, 0xb6, 0x59}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0x6a, 0x53, 0x3a, 0xa2, 0xb8, 0xe7, 0x84, 0x84, 0xde, 0x4c, 0x92, 0xe8, 0xa8, 0x54, 0x49, 0xdf, 0xa7, 0x97, 0xe, 0x83, 0x7a, 0x21, 0xad, 0xba, 0x30, 0x65, 0xe5, 0x5b, 0xf4, 0x7d, 0x8b}} return a, nil } @@ -2461,7 +2461,7 @@ func idtablestakingDelegationDel_request_unstakingCdc() (*asset, error) { return a, nil } -var _idtablestakingDelegationDel_stake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\x4d\x8b\xd4\x40\x10\xbd\xf7\xaf\x28\x72\x90\xe4\x60\x72\x11\x0f\xc3\xea\xa2\x2e\x03\xc2\xb2\x2b\xee\xba\x7b\xae\x74\x2a\x49\xbb\x3d\x5d\xa1\x53\x31\x03\x32\xff\x5d\x3a\x5f\x93\x61\x06\x51\xb1\x2e\x4d\xa7\x5e\xbd\xaa\xf7\x2a\x6d\x76\x0d\x7b\x81\xad\xe5\xfe\xf3\xcd\x23\xe6\x96\x1e\x04\x5f\x8c\xab\xa0\xf4\xbc\x83\xe8\x3c\x11\xa9\x55\xcd\x23\xbf\x90\x5b\x41\x87\xfb\x11\xd1\xb9\xca\xe4\x96\x4e\x50\xeb\x6f\x91\x52\x4a\x3c\xba\x16\xb5\x18\x76\x31\xee\xb8\x73\xb2\x81\x6f\x5b\xb3\x7f\xfb\x26\x81\x9f\x4a\x01\x00\x64\x19\xdc\xb2\x46\x0b\x3f\xd0\x9b\x30\x0a\x94\xec\x01\xc1\x53\x49\x9e\x9c\x26\x10\x06\xa9\x09\x0a\xb2\x54\xa1\xb0\x07\xce\xbf\x93\x96\xa1\xda\x92\x1c\x13\x5f\xa9\xdc\x00\x76\x52\xc7\xe7\xca\xd2\x9b\x19\x75\xdf\x3b\xf2\x09\xbc\xba\x80\xb9\xe3\x82\x16\x9c\x5a\x1a\x94\xb3\xf8\x55\x83\xb5\xd2\xf4\xd9\x48\x5d\x78\xec\x03\xd7\xc4\x3c\x26\x9e\xb0\xb3\x32\x12\x35\x9e\x1a\xf4\x14\xa3\xd6\x32\x91\x7c\x64\xef\xb9\x7f\x42\xdb\x85\xaa\x0f\x5a\x07\x83\x82\x31\x30\x45\x96\x41\x3e\x60\xfe\xd8\x8f\x10\x2d\xd9\x32\x5d\x9b\x02\xef\x20\x74\x4d\x5b\x61\x8f\x15\xa5\x23\xe7\xd5\x7f\x73\xea\x7d\x1c\xd6\xbf\xb9\xf0\xa3\x1d\xb9\x1e\xc6\xde\x5f\x50\xea\x64\x99\x34\xc4\xf5\x35\x34\xe8\x8c\x8e\xa3\x4f\xdc\xd9\x02\x1c\xcb\x2c\xfa\x44\xf2\x22\x28\x4a\xd4\xa9\xd4\xf5\x7a\x7e\x2b\xf5\x2f\x76\x36\x4b\xca\x26\xa2\x6c\x69\x32\xa4\xff\x4d\xc2\xf6\xf6\xfe\x19\x86\xfa\x59\xc3\x61\x3c\x68\x4f\xba\x13\x9a\x9f\xc4\xc5\x25\xce\x17\xba\xa3\x71\x90\x76\x1a\xf1\xea\xf5\x99\x0b\x69\x3f\x89\x5b\x1e\xdd\x78\x26\x4b\xdb\xc3\xaf\x00\x00\x00\xff\xff\xea\x14\x6a\xf6\x1c\x04\x00\x00" +var _idtablestakingDelegationDel_stake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\xcd\x6a\xdb\x40\x10\xbe\xef\x53\x0c\x3a\x04\xe9\x50\xe9\x52\x7a\x30\x69\x43\xdb\x60\x28\x84\xa4\x34\x69\x7c\x1e\xad\x46\xd2\xd6\xeb\x1d\xb1\x1a\x55\x86\xe2\x77\x2f\xfa\xb5\x8c\x4d\x31\x25\x7b\x11\xbb\xfb\xcd\x7c\x3f\xa3\x35\xbb\x8a\xbd\xc0\xda\x72\xfb\xed\xfe\x05\x53\x4b\xcf\x82\x5b\xe3\x0a\xc8\x3d\xef\x20\x38\xbf\x08\xd4\xa2\xe6\x85\xb7\xe4\x16\xd0\x7e\x7f\x44\x34\xae\x30\xa9\xa5\x13\xd4\xf2\x2c\x50\x4a\x89\x47\x57\xa3\x16\xc3\x2e\xc4\x1d\x37\x4e\x56\xf0\x73\x6d\xf6\x1f\xde\x47\xf0\x47\x29\x00\x80\x24\x81\x07\xd6\x68\xe1\x37\x7a\xd3\x49\x81\x9c\x3d\x20\x78\xca\xc9\x93\xd3\x04\xc2\x20\x25\x41\x46\x96\x0a\x14\xf6\xc0\xe9\x2f\xd2\xd2\x57\x5b\x92\xe3\xc5\x0f\xca\x57\x80\x8d\x94\xe1\xb9\xb3\xf8\x7e\x42\x3d\xb5\x8e\x7c\x04\x37\x17\x30\x8f\x9c\xd1\x8c\x53\x33\x41\x3e\x99\x5f\x10\x2c\x9d\xc6\x1b\x23\x65\xe6\xb1\x1d\xbb\x0e\x87\xaf\xd8\x58\x19\x9a\x54\x9e\x2a\xf4\x14\xa2\xd6\x32\x36\xf8\xc2\xde\x73\xfb\x8a\xb6\xa1\x08\x6e\x3e\x6b\xdd\x85\xd3\x85\x02\xe3\x4a\x12\x48\x7b\xcc\xd5\x59\x74\xab\x26\x9b\xc7\xcb\x40\xe0\x23\x74\xac\x71\x2d\xec\xb1\xa0\x78\xe8\x79\xfb\x66\x29\x7d\x0a\xbb\xd1\xaf\x2e\xfc\x64\xc7\x5e\xcf\x03\xf7\x77\x94\x32\x9a\x95\x76\xeb\xee\x0e\x2a\x74\x46\x87\xc1\x57\x6e\x6c\x06\x8e\x65\x32\x7d\x62\x79\x36\x14\x44\xea\xd4\xea\x72\x34\xff\xb4\x7a\xe5\xbc\x26\x3b\xc9\xd8\x24\x99\x09\xfa\xeb\xff\x93\xbf\x7e\x78\xda\x40\x5f\x3f\xe9\x3f\x0c\x1f\xda\x93\x6e\x84\xa6\xa7\x70\x71\x80\xd3\x86\x1e\x69\x10\x52\x8f\x12\x6f\xdf\x9d\x25\x10\xb7\xa3\xb1\xf9\xb1\x0d\xdf\x68\xa6\x3d\xfc\x0d\x00\x00\xff\xff\xc1\x80\x21\xc4\x14\x04\x00\x00" func idtablestakingDelegationDel_stake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2477,7 +2477,7 @@ func idtablestakingDelegationDel_stake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa, 0xe7, 0x19, 0x73, 0xa2, 0x35, 0x34, 0x20, 0xbc, 0x62, 0x5, 0xd1, 0xfc, 0xc5, 0x6d, 0x33, 0xd1, 0x8a, 0x5c, 0x74, 0x36, 0x2d, 0x7, 0x33, 0x8e, 0x5d, 0xc0, 0xd, 0xa8, 0x9, 0x96, 0xf2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xef, 0x10, 0x2b, 0x72, 0x96, 0xd1, 0x8e, 0xa0, 0x84, 0xd7, 0xe0, 0x69, 0x57, 0x1c, 0x1b, 0x5e, 0xf2, 0x48, 0x5f, 0x81, 0x81, 0x5c, 0xbe, 0x2, 0x4b, 0x1e, 0x7b, 0x4b, 0xf7, 0xbd, 0x9a, 0x2a}} return a, nil } @@ -2761,7 +2761,7 @@ func idtablestakingDelegationGet_delegator_unstaking_requestCdc() (*asset, error return a, nil } -var _idtablestakingDelegationRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xcd\x8e\x9b\x30\x10\xbe\xf3\x14\xa3\x1c\x22\x90\x12\xb8\x54\x3d\x20\xba\xab\x8a\x28\xd2\x4a\xd5\x76\xd5\x6c\xbb\xe7\xc1\x0c\xe0\x2e\xd8\xc8\x1e\x4a\xa5\x55\xde\xbd\x32\x24\x5e\x68\x73\xa8\x2f\x16\xf8\x9b\xef\x67\x66\x64\xd7\x6b\xc3\x70\x6c\xf5\xf8\x70\x78\xc6\xa2\xa5\x13\xe3\xab\x54\x35\x54\x46\x77\xb0\xf9\xf7\x61\x13\x2c\x6a\x9e\xf5\x2b\xa9\x05\x74\xfa\x7e\x47\x0c\xaa\x96\x45\x4b\x2b\xd4\xf2\xdf\x26\x08\xd8\xa0\xb2\x28\x58\x6a\x15\x2a\x5d\xd2\xc3\x21\x85\x13\x1b\xa9\xea\x1d\x60\xa7\x07\xc5\x29\x7c\x3f\xca\xdf\x1f\x3f\x44\xf0\x16\x04\x00\x00\xbd\xa1\x1e\x0d\x85\x28\x04\xa7\x80\x03\x37\xe1\x89\xb5\xc1\x9a\x76\x90\x63\x8f\x85\x6c\x25\x4b\xb2\x11\x6c\x3f\x0b\xe1\x28\x7c\xa9\x3b\x2d\x31\x54\x57\xaf\xdf\xa8\x82\x4f\xe0\x98\x62\x3b\x73\xc4\x85\x36\x46\x8f\xd9\xc4\xbb\x72\x1b\xbf\x48\x6e\x4a\x83\xa3\xeb\x46\x04\x5b\x1f\x38\xfe\x81\x43\xcb\x77\xa1\x4b\x98\x42\x72\x21\x4a\xbc\xc8\xf4\x1c\x79\x03\xee\xdc\xdf\x43\x8f\x4a\x8a\x70\x93\xeb\xa1\x2d\x41\x69\x86\x59\x18\x0c\x55\x64\x48\x09\x02\xd6\x70\xfc\xf2\xf5\x05\xa6\xfa\x4d\xf4\x1e\x21\x49\x20\x37\x84\x4c\x80\xa0\x68\x84\x92\x5a\xaa\x91\xb5\x01\x5d\xfc\x24\xc1\x50\x69\x03\xdc\x10\xb8\x8e\xae\x82\x2b\x1a\x0f\x1e\x9c\xed\x6f\x0c\x3e\x36\x54\x4b\xcb\x64\x1e\x17\x50\x3f\x9a\xf9\xde\x01\xbb\x5c\x36\xd7\x5d\x27\x99\xa9\x4c\x21\xdb\x2f\x7b\x1a\x8f\x97\x56\x85\xd7\x19\xce\x77\xb4\x0e\xe1\xc6\x46\x93\xd1\xbf\x13\x78\xd4\x6a\x34\x16\x7f\x51\x98\xed\x97\x21\x9c\x95\xf4\x56\x0c\x8f\xb8\xec\xc6\x13\x72\x13\xad\xb7\xc0\x8b\xe6\xd8\x5f\xb7\x40\x2c\x16\xc8\xeb\x4a\x6b\x07\xca\xb6\x6f\x37\x64\x1e\x75\x49\x5e\xea\x69\x28\x5a\x29\xce\x77\xe1\x7f\xfb\x59\xc5\x5c\x69\xf7\x8e\xcb\x36\xe1\xd2\xe4\x0e\x90\x53\x48\xa6\x27\x31\xed\xd7\x85\xdd\x93\xcf\x8c\xe7\xe0\xfc\x27\x00\x00\xff\xff\x92\xf7\xca\x6c\xd9\x03\x00\x00" +var _idtablestakingDelegationRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xcd\x8e\x9b\x30\x10\xbe\xf3\x14\xa3\x1c\x22\x90\x12\xb8\x54\x3d\x20\xba\xab\x8a\x28\xd2\x4a\xd5\x76\xd5\x6c\xbb\xe7\xc1\x0c\xe0\x2e\xd8\xc8\x1e\x4a\xa5\x55\xde\xbd\x32\x24\x5e\x68\x73\xa8\x2f\x16\xf8\x9b\xef\x67\x66\x64\xd7\x6b\xc3\x70\x6c\xf5\xf8\x70\x78\xc6\xa2\xa5\x13\xe3\xab\x54\x35\x54\x46\x77\xb0\xf9\xf7\x61\x13\x2c\x6a\x9e\xf5\x2b\xa9\x05\x74\xfa\x7e\x47\x0c\xaa\x96\x45\x4b\x2b\xd4\xf2\xdf\x26\x08\xd8\xa0\xb2\x28\x58\x6a\x15\x2a\x5d\xd2\xc3\x21\x85\x13\x1b\xa9\xea\x1d\x60\xa7\x07\xc5\x29\x7c\x3f\xca\xdf\x1f\x3f\x44\xf0\x16\x04\x00\x00\xbd\xa1\x1e\x0d\x85\x28\x04\xa7\x80\x03\x37\xe1\x89\xb5\xc1\x9a\x76\x90\x63\x8f\x85\x6c\x25\x4b\xb2\x11\x6c\x3f\x0b\xe1\x28\x7c\xa9\x3b\x2d\x31\x54\x57\xaf\xdf\xa8\x82\x4f\xe0\x98\x62\x3b\x73\xc4\x85\x36\x46\x8f\xd9\xc4\xbb\x72\x1b\xbf\x48\x6e\x4a\x83\x63\x04\x5b\x1f\x36\xfe\x81\x43\xcb\x77\xa1\x4b\x97\x42\x72\x21\x49\xbc\xc0\xf4\x1c\x79\x71\x77\xee\xef\xa1\x47\x25\x45\xb8\xc9\xf5\xd0\x96\xa0\x34\xc3\x2c\x0a\x86\x2a\x32\xa4\x04\x01\x6b\x38\x7e\xf9\xfa\x02\x53\xfd\x26\x7a\xb7\x9f\x24\x90\x1b\x42\x26\x40\x50\x34\x42\x49\x2d\xd5\xc8\xda\x80\x2e\x7e\x92\x60\xa8\xb4\x01\x6e\x08\x5c\x37\x57\xa1\x15\x8d\x07\x0f\xce\xf6\x37\x86\x1e\x1b\xaa\xa5\x65\x32\x8f\x0b\xa8\x1f\xcb\x7c\xef\x80\x5d\x2e\x9b\xeb\xae\x93\xcc\x54\xa6\x90\xed\x97\xfd\x8c\xc7\x4b\x9b\xc2\xeb\xfc\xe6\x3b\x5a\x87\x70\x23\xa3\xc9\xe8\xdf\x09\x3c\x6a\x35\x16\x8b\xbf\x28\xcc\xf6\xcb\x10\xce\x4a\x7a\x2b\x86\x47\x5c\xf6\xe2\x09\xb9\x89\xd6\x1b\xe0\x45\x73\xec\xaf\x1b\x20\x16\xcb\xe3\x75\xa5\xb5\x03\x65\xdb\xb7\x1b\x32\x8f\xba\x24\x2f\xf5\x34\x14\xad\x14\xe7\xbb\xf0\xbf\xfd\xac\x62\xae\xb4\x7b\xc7\x65\x9b\x70\x69\x72\x07\xc8\x29\x24\xd3\x93\x98\xf6\xeb\xc2\xee\xc9\x67\xc6\x73\x70\xfe\x13\x00\x00\xff\xff\xbb\xd1\x84\x7f\xd5\x03\x00\x00" func idtablestakingDelegationRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -2777,7 +2777,7 @@ func idtablestakingDelegationRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x89, 0x9d, 0x7f, 0xe1, 0x2f, 0xae, 0x4a, 0x6a, 0x44, 0x4c, 0x28, 0x56, 0x94, 0x2c, 0xdf, 0x20, 0xd, 0x1f, 0xe6, 0x10, 0xa4, 0x91, 0xff, 0x38, 0x52, 0xc7, 0x1f, 0xd, 0x2e, 0x27, 0xd9, 0x6f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xd1, 0x2c, 0x94, 0x87, 0xed, 0x6e, 0x56, 0x43, 0x77, 0xd5, 0x5, 0x39, 0x7, 0xf8, 0x30, 0x30, 0x29, 0x8b, 0x42, 0x51, 0x3f, 0x5e, 0x80, 0xb7, 0xdd, 0x39, 0x36, 0xbd, 0xbc, 0x2, 0x1b}} return a, nil } @@ -2821,7 +2821,7 @@ func idtablestakingNodeNode_add_capabilityCdc() (*asset, error) { return a, nil } -var _idtablestakingNodeRegister_many_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\x4f\x6b\xdb\x4e\x10\xbd\xeb\x53\x0c\x3e\x04\x89\x5f\x2c\xff\x0a\xa5\x94\xc5\x69\x08\x29\x86\x90\xd2\x96\x24\x6d\x0e\xc6\x87\xb5\x76\x64\x6d\x23\xed\x98\xd5\x28\x6a\x28\xf9\xee\x65\x57\x8a\xf5\x17\x3a\x07\x81\xde\xbc\x99\xb7\x33\xf3\x74\x71\x24\xcb\xb0\xc9\xa9\xbe\xf9\xfc\x20\xf7\x39\xde\xb3\x7c\xd2\xe6\x00\xa9\xa5\x02\x16\xd3\xc4\x22\xe8\xd5\x3c\xd0\x13\x9a\x1e\xd5\xff\x77\x8c\xca\x1c\xf4\x3e\xc7\x01\xab\x8f\x2d\x82\x80\xad\x34\xa5\x4c\x58\x93\x09\x03\x00\x00\xad\x4a\x01\xdb\x7b\xb6\xda\x1c\x76\xe7\x1e\xb2\x94\xa3\x03\x7f\xdc\x18\xfe\xd8\x62\x06\xb9\x26\xeb\x1e\x74\xa5\x94\xc5\xb2\xc4\x49\x59\x47\xb9\xc5\x97\x49\xb6\x6c\xc6\x99\x4b\xc9\x82\x2a\xc3\x5e\x71\xa3\x7f\x7f\x78\xdf\xc2\x47\xc9\x59\xc3\x25\x2b\x0f\xf8\x5d\x72\xb6\x0b\x22\xf8\x13\x34\x59\x8b\x47\x69\x31\x94\x49\xc2\x02\x64\xc5\x59\xd8\x12\x23\x38\xbb\x4a\x12\xd7\xf2\x44\x76\xf1\x2c\x2d\x68\xb8\x80\xff\x3b\x28\x25\xeb\x55\x40\x9b\x46\xad\xcf\x77\x91\x23\x43\xfa\xb6\xe7\x3b\x4c\xe1\x02\x9c\x5e\x5c\x36\x4a\xf1\x9e\xac\xa5\x7a\xed\xd5\x07\x9b\x8e\x1f\x35\x67\xca\xca\xda\x5d\x32\x82\xb3\xd3\xb1\xe2\x9f\xb2\xca\xf9\x53\xe8\xae\x23\x60\xd5\x36\x5a\x9d\x44\x7c\x3a\x1a\x3c\xc2\xc5\xe5\x25\x1c\xa5\xd1\x49\xb8\xb8\xa6\x2a\x57\x60\x88\xa1\x11\x07\x8b\x29\x5a\x34\x09\x02\x13\x6c\xbe\x7c\x7b\x04\xdf\x63\x11\x4d\x47\x61\xa7\x50\x5e\x53\x51\x68\x66\x54\xb0\x5e\x0e\xa6\x8b\xeb\xf6\xd1\x61\x73\x11\xf1\x76\x99\xad\xde\xcd\x74\x33\xa4\xbc\x49\xd1\xba\x46\x53\xe7\xc6\x52\xa9\xaf\xa4\xf0\x0e\x13\xb2\x2a\x9c\xcc\xa4\x95\x70\xee\xdb\xea\xf6\xde\xfd\x70\x16\x14\x8d\x11\x67\xf3\x13\x3b\x8a\x39\x87\xfe\xa3\xf4\x16\x5f\xc4\xc8\xb5\xb3\x15\x9d\x75\x45\xdf\xc6\xb3\xdc\xd1\x8a\x05\xac\x97\x23\x68\x50\x32\x5a\xeb\x6a\x05\xce\xc4\x08\x9c\xa1\xdf\x2f\xd0\xfe\x17\x26\x3c\x20\x0d\x1c\x58\xca\x67\x0c\xd7\xcb\xee\x16\xe7\xc0\x24\xbc\x9b\x47\xbd\x9d\xf7\x35\xfc\x07\xef\x4e\xe8\x6b\xd0\x7c\x83\xd7\xbf\x01\x00\x00\xff\xff\x96\xeb\x6f\xdd\x97\x04\x00\x00" +var _idtablestakingNodeRegister_many_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\x4f\x6b\xdb\x4e\x10\xbd\xeb\x53\x0c\x3e\x04\x89\x5f\x2c\xff\x0a\xa5\x94\xc5\x69\x08\x29\x86\x90\xd2\x96\x24\x6d\x0e\xc6\x87\xb5\x76\x64\x6d\x23\xed\x98\xd5\x28\x6a\x28\xf9\xee\x65\x57\x8a\xf5\x17\x3a\x07\x81\xde\xbc\x99\xb7\x33\xf3\x74\x71\x24\xcb\xb0\xc9\xa9\xbe\xf9\xfc\x20\xf7\x39\xde\xb3\x7c\xd2\xe6\x00\xa9\xa5\x02\x16\xd3\xc4\x22\xe8\xd5\x3c\xd0\x13\x9a\x1e\xd5\xff\x77\x8c\xca\x1c\xf4\x3e\xc7\x01\xab\x8f\x2d\x82\x80\xad\x34\xa5\x4c\x58\x93\x09\x03\x00\x00\xad\x4a\x01\xdb\x7b\xb6\xda\x1c\x76\xe7\x1e\xb2\x94\xa3\x03\x7f\xdc\x18\xfe\xd8\x62\x06\xb9\x26\xeb\x1e\x74\xa5\x94\xc5\xb2\xc4\x49\x59\x47\xb9\xc5\x97\x49\xb6\x6c\xc6\x99\x4b\xc9\x82\x2a\xc3\x5e\x71\xa3\x7f\x7f\x78\xdf\xc2\x47\xc9\x59\xc3\x25\x2b\x0f\xf8\x5d\x72\xb6\x0b\x22\xf8\x13\x34\x59\x8b\x47\x69\x31\x94\x49\xc2\x02\x64\xc5\x59\xd8\x12\x23\x38\xbb\x4a\x12\xd7\xf2\x44\x76\xf1\x2c\x2d\x68\xb8\x80\xff\x3b\x28\x25\xeb\x55\x40\x9b\x46\xad\xcf\x77\x91\x23\x43\xfa\xb6\xe7\x3b\x4c\xe1\x02\x9c\x5e\x5c\x36\x4a\xf1\x9e\xac\xa5\x7a\xed\xd5\x07\x9b\x8e\x1f\x35\x67\xca\xca\x3a\x82\xb3\xd3\xa1\xe2\x9f\xb2\xca\xf9\x53\xe8\x2e\x23\x60\xd5\x36\x59\x9d\x04\x7c\x3a\x1a\x3c\xc0\xc5\xe5\x25\x1c\xa5\xd1\x49\xb8\xb8\xa6\x2a\x57\x60\x88\xa1\x11\x06\x8b\x29\x5a\x34\x09\x02\x13\x6c\xbe\x7c\x7b\x04\xdf\x63\x11\x4d\xc7\x60\xa7\x50\x5e\x53\x51\x68\x66\x54\xb0\x5e\x0e\x26\x8b\xeb\xf6\xc1\x61\x73\x0d\xf1\x76\x95\xad\xde\xcd\x74\x33\xa4\xbc\x41\xd1\xba\x46\x53\xd7\xc6\x52\xa9\xaf\xa4\xf0\x0e\x13\xb2\x2a\x9c\xcc\xa4\x95\x70\xce\xdb\xea\xf6\xd6\xfd\x70\xf6\x13\x8d\x09\x67\xf3\x13\x2b\x8a\x39\x77\xfe\xa3\xf4\x16\x5f\xc4\xc8\xb1\xb3\x15\x9d\x6d\x45\xdf\xc2\xb3\xdc\xd1\x8a\x05\xac\x97\x23\x68\x50\x32\x5a\xeb\x6a\x05\xce\xc0\x08\x9c\xa1\xdf\x2f\xd0\xfe\x17\x26\x3c\x20\x0d\xdc\x57\xca\x67\x0c\xd7\xcb\xee\x16\xe7\xc0\x24\xbc\x93\x47\xbd\x9d\xef\x35\xfc\x07\xef\x4e\xe8\x6b\xd0\x7c\x83\xd7\xbf\x01\x00\x00\xff\xff\x0d\x4e\x7d\xd1\x93\x04\x00\x00" func idtablestakingNodeRegister_many_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2837,11 +2837,11 @@ func idtablestakingNodeRegister_many_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/register_many_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc2, 0xe6, 0xe8, 0x83, 0x9f, 0xca, 0x99, 0x96, 0xbd, 0x0, 0x9c, 0x7a, 0x9e, 0xc1, 0xb0, 0x59, 0x36, 0x41, 0xce, 0x4a, 0x5d, 0xfb, 0x32, 0x64, 0x13, 0xaa, 0xc1, 0x2d, 0x2, 0x54, 0xa6, 0xf8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x24, 0xe6, 0xd8, 0x4d, 0x7f, 0xa7, 0x90, 0xd1, 0xbd, 0x2e, 0x9d, 0x30, 0xb6, 0xc9, 0x30, 0x9a, 0xbd, 0x9b, 0x1, 0xae, 0xca, 0x83, 0xf9, 0xb4, 0x8b, 0xd9, 0x22, 0xa, 0x7c, 0x65, 0xe9}} return a, nil } -var _idtablestakingNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\x4f\x6f\xdb\x3e\x0c\xbd\xfb\x53\x10\x39\x14\x36\x90\x3a\x97\x1f\x7e\x18\x82\xb4\x45\x91\xa1\x40\xb1\x61\x2d\xfa\x67\x3d\xcb\x12\x1d\x6b\x55\x44\x43\xa2\xe7\x15\x45\xbf\xfb\x20\x3b\x89\x2d\x38\xeb\xd6\x1c\x1c\x8b\x7c\x22\x1f\x1f\x9f\xf5\xb6\x26\xc7\x70\x65\xa8\xbd\xfe\xfc\x20\x0a\x83\xf7\x2c\x9e\xb5\xdd\x40\xe9\x68\x0b\xb3\x69\x62\x96\x8c\xee\x3c\xd0\x33\xda\x11\xb4\x3b\x0f\x88\xc6\x6e\x74\x61\x30\x42\x8d\x63\xb3\x24\x59\x2c\xe0\xa1\xd2\x1e\xd8\x09\xeb\x85\x64\x4d\x16\xa4\x43\xc1\xe8\x41\x80\xc5\x16\x2c\x29\x04\xcf\xae\x91\x0c\x54\xfc\x40\xc9\xe1\x92\xb0\x0a\x9a\x5a\x75\x38\xae\x10\x6a\x47\x35\x79\x54\x70\xad\xd0\xb2\xe6\x17\xe8\x48\x27\xc9\xa8\x70\x9a\x00\x00\x68\xb5\x84\x7b\x76\xda\x6e\xe6\xdd\xd9\x91\xc1\x25\x3c\x5e\x5b\xfe\xd4\x07\x2c\x72\x4b\x2e\xcc\x7a\xa9\x94\x43\xef\x63\xfc\x90\xfe\x82\x2f\x71\xca\xf7\x12\x4d\xe2\x62\x4b\x8d\xe5\x25\x3c\x5e\xe9\x5f\xff\xff\x97\x64\xf0\x9a\x74\x71\x83\x0c\xe5\x5e\xb6\x3b\x2c\x97\x20\x1a\xae\xd2\x48\xa3\xfc\x49\x73\xa5\x9c\x68\xc3\x38\x19\x9c\x1c\x64\xce\xbf\x8b\xc6\x70\x5f\xa8\x76\x58\x0b\x87\xa9\x90\x92\x77\x45\xee\x99\x9c\xd8\xe0\x1c\xd6\xa2\x16\x85\x36\x9a\x35\xfa\x0c\x4e\x2e\xa5\x0c\x64\x0e\x1c\x3a\xde\x68\xca\x7c\x4c\x04\xce\x20\x94\xca\x7d\x5f\x24\x2f\xc8\x39\x6a\x57\x1f\x66\x77\x9e\x86\xad\x2f\x61\xb1\x2b\xb4\x38\x34\xe9\xd2\xd9\x81\x41\xf8\x5d\x5c\x40\x2d\xac\x96\xe9\x6c\x4d\x8d\x51\x60\x89\xa1\x6f\x0c\x0e\x4b\x74\x68\x25\x02\x13\x5c\x7d\xbd\x79\x82\xee\xfe\x2c\x1b\x66\x08\x5a\x06\xab\x04\x9b\xa2\x83\xd5\xe9\x11\x53\xe7\x42\xa9\x6f\xa4\xf0\x0e\x25\x39\x95\x46\xdd\x83\x2d\xb4\x9a\x47\xb1\xde\x1a\xe1\x19\xc7\x8f\x38\x64\x12\xfa\xd3\x8d\xce\x1c\xd1\x31\x46\x8e\x3d\x34\xbc\xc7\x18\x0e\x0a\xfa\x35\x6d\xb7\x9a\x19\xd5\x12\x56\xa7\x93\x15\xe6\xed\x6e\x33\xe9\xde\x7d\xfd\xff\xa0\xf9\x48\x3c\x5d\xbe\xb3\xef\xa9\x8c\x41\xc3\x9b\x1a\x9d\x60\x72\xbb\xa5\x1f\x41\xf4\x9b\xd8\x5b\xe0\x5d\xd0\xce\xac\xb7\x82\xab\x0c\xce\xce\xc0\x6a\x33\xf6\x67\xf7\x0d\x8d\xf9\x79\xf1\x13\xd3\xd5\xe9\xb0\xef\x39\x30\x7d\xa0\x47\x5c\x3a\xb6\xce\x5a\xd4\x7b\xfb\xcb\xd1\xa7\x73\xe8\xad\xbd\x6f\x70\x75\xf2\xfa\x6e\xb3\xdb\xa6\x30\x5a\xbe\x9d\xc7\x1e\x0b\xbf\x7f\xe5\x18\x5d\xcc\x8e\x68\x11\x91\xab\x43\x3f\x5f\x4d\xdb\x45\x73\xcd\x27\x69\xc1\x7f\x51\xad\x1f\xe4\x08\xa1\xfd\xdb\x1b\xa0\xf1\x08\xaf\x51\x5a\xa1\x67\x47\x2f\xa3\xee\x03\x3e\xe9\x9f\x6f\xbf\x03\x00\x00\xff\xff\x21\x31\x1a\x51\x7b\x06\x00\x00" +var _idtablestakingNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\x5f\x6b\xdb\x3e\x14\x7d\xf7\xa7\xb8\xe4\xa1\xd8\x90\x3a\x2f\x3f\x7e\x8c\x90\xb6\x94\x8c\x42\xd9\x58\x4b\xff\xac\xcf\xb2\x74\x1d\x6b\x55\x74\x8d\x74\x3d\xaf\x94\x7e\xf7\x21\x3b\x89\x2d\x9c\x75\x6b\x1e\x1c\xeb\xfe\x3b\x47\xe7\x1e\xeb\x6d\x4d\x8e\xe1\xca\x50\x7b\xfd\xf9\x41\x14\x06\xef\x59\x3c\x6b\xbb\x81\xd2\xd1\x16\x66\xd3\xc4\x2c\x19\xf5\x3c\xd0\x33\xda\x51\x69\x77\x1e\x2a\x1a\xbb\xd1\x85\xc1\xa8\x6a\x1c\x9b\x25\xc9\x62\x01\x0f\x95\xf6\xc0\x4e\x58\x2f\x24\x6b\xb2\x20\x1d\x0a\x46\x0f\x02\x2c\xb6\x60\x49\x21\x78\x76\x8d\x64\xa0\xe2\x07\x4a\x0e\x4d\xc2\x2a\x68\x6a\xd5\xd5\x71\x85\x50\x3b\xaa\xc9\xa3\x82\x6b\x85\x96\x35\xbf\x40\x47\x3a\x49\x46\x83\xd3\x04\x00\x40\xab\x25\xdc\xb3\xd3\x76\x33\xef\xce\x8e\x0c\x2e\xe1\xf1\xda\xf2\xa7\x3e\x60\x91\x5b\x72\xe1\xae\x97\x4a\x39\xf4\x3e\xae\x1f\xd2\x5f\xf0\x25\x4e\xf9\x5e\xa2\x49\x5c\x6c\xa9\xb1\xbc\x84\xc7\x2b\xfd\xeb\xff\xff\x92\x0c\x5e\x93\x2e\x6e\x90\xa1\xdc\xcb\x76\x87\xe5\x12\x44\xc3\x55\x1a\x69\x94\x3f\x69\xae\x94\x13\x6d\x06\x27\x07\x89\xf3\xef\xa2\x31\xdc\x0f\xa9\x1d\xd6\xc2\x61\x2a\xa4\xe4\xdd\x80\x7b\x26\x27\x36\x38\x87\xb5\xa8\x45\xa1\x8d\x66\x8d\x3e\x83\x93\x4b\x29\x03\x91\x03\x7e\xc7\x19\x4d\x99\x8f\x49\xc0\x19\x84\x51\xb9\xef\x87\xe4\x05\x39\x47\xed\xea\x43\xcc\xce\xd3\xb0\xed\x25\x2c\x76\x43\x16\x07\x80\x2e\x9d\x1d\xd0\xc3\xef\xe2\x02\x6a\x61\xb5\x4c\x67\x6b\x6a\x8c\x02\x4b\x0c\x3d\x28\x38\x2c\xd1\xa1\x95\x08\x4c\x70\xf5\xf5\xe6\x09\xba\xfe\x59\x36\xf0\x0f\x1a\x06\x8b\x04\x7b\xa2\x83\xd5\xe9\x11\x33\xe7\x42\xa9\x6f\xa4\xf0\x0e\x25\x39\x95\x46\xe8\xc1\x0e\x5a\xcd\xa3\x58\x6f\x89\xf0\x8c\xe3\x47\x9c\x31\x09\xfd\xa9\xa3\x33\x45\x74\x8c\x2b\xc7\xde\x19\xde\xe3\x1a\x0e\x0a\xfa\x35\x6d\xb7\x9a\x19\xd5\x12\x56\xa7\x93\xf5\xe5\xed\x6e\x2b\xe9\xde\x75\xfd\xff\xa0\xf9\x48\x3c\x5d\xbe\xb3\xeb\xa9\x8c\x41\xc3\x9b\x1a\x9d\x60\x72\xbb\xa5\x1f\xa9\xe8\x37\xb1\xb7\xc0\xbb\x45\x3b\xa3\xde\x0a\xae\x32\x38\x3b\x03\xab\xcd\xd8\x9b\xdd\xb7\x33\xe6\xe7\xc5\x4f\x4c\x57\xa7\xc3\xbe\xe7\xc0\xf4\x01\x8c\x78\x74\x6c\x9d\xb5\xa8\xf7\xd6\x97\xa3\xcf\xe6\x80\xad\xbd\x6f\x70\x75\xf2\xfa\x2e\xd8\x6d\x53\x18\x2d\xdf\xce\x63\x8f\x85\xdf\xbf\x72\x8c\x1a\xb3\x23\x5a\x44\xe4\xea\x80\xe7\xab\x29\x5c\x74\xaf\xf9\x24\x2d\xf8\x2f\xaa\xf5\x17\x39\x42\x68\xff\xf6\x06\x68\x3c\xc2\x6b\x94\x56\xe8\xd9\xd1\xcb\x08\x7d\xa8\x4f\xfa\xe7\xdb\xef\x00\x00\x00\xff\xff\xd7\xf7\xa2\x42\x73\x06\x00\x00" func idtablestakingNodeRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -2857,7 +2857,7 @@ func idtablestakingNodeRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0x19, 0xb1, 0x1c, 0x44, 0x83, 0x7f, 0x3c, 0x39, 0xb9, 0x65, 0x5c, 0xe3, 0x3b, 0xaf, 0x79, 0x97, 0x21, 0x91, 0xad, 0xfd, 0x51, 0xaa, 0x2f, 0xb1, 0xd5, 0xa2, 0xf8, 0xdf, 0x48, 0x92, 0x9c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0xcb, 0x2d, 0xbc, 0x35, 0x44, 0x32, 0x3e, 0x73, 0x50, 0x5f, 0xa1, 0x63, 0x18, 0x71, 0x7f, 0x5f, 0x26, 0xb5, 0x59, 0x98, 0x82, 0x74, 0xab, 0xa6, 0x15, 0x3c, 0x8f, 0xfa, 0x4d, 0x85, 0x69}} return a, nil } @@ -2881,7 +2881,7 @@ func idtablestakingNodeRequest_unstakeCdc() (*asset, error) { return a, nil } -var _idtablestakingNodeStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\xcf\x8e\xd3\x40\x0c\xc6\xef\x79\x0a\x2b\x07\x94\x1c\x48\x2e\x88\x43\xb5\xb0\xe2\x8f\x2a\x21\xad\x76\x11\x5d\x76\xcf\xee\xc4\x69\x87\x4e\xc7\x91\xe3\xd0\x95\x50\xdf\x1d\x4d\x26\x0d\x53\x15\x10\x20\xe6\xd2\x26\xfe\xfc\xd9\x3f\x7b\x62\xf7\x1d\x8b\xc2\xd2\xf1\xe1\xc3\xfb\x7b\x5c\x3b\x5a\x29\xee\xac\xdf\x40\x2b\xbc\x87\xfc\x32\x90\x67\x49\xce\x3d\xef\xc8\x27\xd2\xf1\xf9\x87\x62\xf0\x1b\xbb\x76\x74\xa6\x4a\xdf\xe5\x59\xa6\x82\xbe\x47\xa3\x96\x7d\x81\x7b\x1e\xbc\x2e\xe0\xf3\xd2\x3e\xbd\x7c\x51\xc2\xb7\x2c\x03\x00\xa8\x6b\xb8\x61\x83\x0e\xbe\xa2\xd8\xd0\x09\xb4\x2c\x80\x20\xd4\x92\x90\x37\x04\xca\xa0\x5b\x02\xcf\x0d\x01\xaf\xbf\x90\xd1\x31\xd1\x91\x42\xaf\xb8\x23\xf9\x44\xed\x02\x70\xd0\x6d\x71\x09\x54\xdd\x72\x43\x77\x1d\x09\x2a\x4b\x09\xcf\x7e\xa1\x58\x8d\x46\xd9\x6c\xdc\x9e\x70\x13\xef\x94\xad\x7a\xb4\xba\x6d\x04\x0f\xc1\x68\xb2\x8d\x81\x07\x1c\x9c\x46\xa3\x4e\xa8\x43\xa1\x02\x8d\xd1\xc9\xe4\x2d\x8b\xf0\xe1\x01\xdd\x10\xb2\xde\x18\x13\x66\x12\x66\x01\xd3\xa9\x6b\x58\x8f\x9a\x3f\x19\x41\x38\x3d\xb9\xb6\x9a\xe7\x00\xaf\x20\x54\xab\x7a\x65\xc1\x0d\x55\xd1\xeb\xea\x7f\x0c\xe7\x75\x11\x76\xbc\xf8\xc9\x6d\x4a\x44\xab\x58\xf7\x23\xea\xb6\x9c\x5b\x0c\xe7\xfa\x1a\x3a\xf4\xd6\x14\xf9\x3b\x1e\x5c\x03\x9e\xf5\x04\x7a\x86\xd9\x4f\x17\x14\x9b\xbd\xf5\x79\x99\x9d\x73\xa6\x6b\xf9\x2d\xea\x5f\xec\xea\xc4\x55\x4f\x46\xf5\x5c\x64\x0c\xff\x1b\xc6\xf2\xe6\xee\x11\xc6\xfc\x3c\x1a\x1c\x23\x09\x3d\x91\x19\x94\x92\x85\x9f\xef\x2f\xfe\xbb\xa5\xd8\x40\x5f\x5c\x3d\xbf\xe0\xae\x0e\x13\xce\xfc\x45\xc5\xdf\xf2\x54\xe8\x98\x7d\x0f\x00\x00\xff\xff\xbc\x5a\xce\x95\xf8\x03\x00\x00" +var _idtablestakingNodeStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\xcf\x6e\xdb\x30\x0c\xc6\xef\x7a\x0a\xc2\x87\xc2\x3e\xcc\xbe\x0c\x3b\x04\xdd\x8a\xfd\x41\x80\x01\x45\x3b\x2c\x5d\x7b\x66\x64\x3a\xd1\xa2\x88\x06\x4d\x2f\x05\x86\xbe\xfb\x60\xcb\xf1\x14\x64\x1b\x8a\xa1\xba\xd8\x96\x3e\x7e\xe4\x8f\x94\xdd\xbe\x65\x51\x58\x7a\x3e\x7c\xfe\x74\x87\x6b\x4f\x2b\xc5\x9d\x0b\x1b\x68\x84\xf7\x90\x9d\x1f\x64\x26\x89\xb9\xe3\x1d\x85\x44\x3a\x7e\xff\x56\xf4\x61\xe3\xd6\x9e\x4e\x54\xe9\x5e\x66\x8c\x0a\x86\x0e\xad\x3a\x0e\x39\xee\xb9\x0f\xba\x80\x6f\x4b\xf7\xf8\xe6\x75\x01\x3f\x8d\x01\x00\xa8\x2a\xb8\x66\x8b\x1e\x7e\xa0\xb8\xa1\x12\x68\x58\x00\x41\xa8\x21\xa1\x60\x09\x94\x41\xb7\x04\x81\x6b\x02\x5e\x7f\x27\xab\x63\xa0\x27\x85\x4e\x71\x47\xf2\x95\x9a\x05\x60\xaf\xdb\xfc\x1c\xa8\xbc\xe1\x9a\x6e\x5b\x12\x54\x96\x02\x2e\xfe\xa2\x58\x8d\x46\x66\x36\x6e\x8e\xb8\x89\x77\xca\x56\x3e\x38\xdd\xd6\x82\x87\xc9\x32\x6e\xde\x63\xef\x35\x9a\xb4\x42\x2d\x0a\xe5\x68\xad\x4e\x06\x1f\x58\x84\x0f\xf7\xe8\x7b\x2a\xe0\xe2\xbd\xb5\x43\x3f\x86\x3e\xc0\xb4\xaa\x0a\xd6\xa3\xe6\x39\xf8\xc3\xea\xc8\x37\xe5\xdc\x03\x78\x0b\x43\xb6\xb2\x53\x16\xdc\x50\x19\xbd\x2e\x5f\xa2\x31\xef\xf2\x61\xbe\x8b\x3f\xdc\xa4\x44\xb4\x8a\x79\xbf\xa0\x6e\x8b\xb9\xc4\x61\x5d\x5d\x41\x8b\xc1\xd9\x3c\xfb\xc8\xbd\xaf\x21\xb0\x1e\x41\x4f\x30\xbb\xe9\x72\x62\xbd\x77\x21\x2b\xcc\x29\x67\x3a\x92\x7f\xa2\x3e\x73\x4e\x47\xa6\x6a\x32\xa9\xe6\x04\xe3\xf1\xff\x21\x2c\xaf\x6f\x1f\x60\x8c\xcf\xa2\xc1\x53\xa4\xa0\x47\xb2\xbd\x52\x32\xec\xd3\xd9\xc5\xb7\x1b\x8a\x05\x74\xf9\xe5\xab\x33\xe6\xf2\x30\xa1\xcc\x7f\x52\x7c\x16\xc7\x44\x4f\xe6\x57\x00\x00\x00\xff\xff\x2e\x56\x90\x70\xf0\x03\x00\x00" func idtablestakingNodeStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2897,7 +2897,7 @@ func idtablestakingNodeStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x48, 0x57, 0xd, 0xb, 0x63, 0xdb, 0xf7, 0xdc, 0xab, 0x6e, 0xaf, 0xc, 0x38, 0x8e, 0xf, 0x74, 0x0, 0x40, 0x9d, 0x5a, 0xea, 0xf8, 0xa9, 0x60, 0xb, 0x2c, 0x6d, 0x9a, 0xa8, 0x58, 0x26, 0x39}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0xd, 0x0, 0x9f, 0x56, 0x91, 0x6d, 0x32, 0x3d, 0xa3, 0x10, 0xcb, 0x41, 0x84, 0x26, 0x62, 0x39, 0xa9, 0xe, 0x6f, 0x2, 0xd0, 0xa3, 0xa5, 0xf5, 0x1a, 0x67, 0xe7, 0x57, 0x0, 0xb3, 0xca}} return a, nil } @@ -3701,7 +3701,7 @@ func inspect_fieldCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x39\x04\x32\xe0\x58\xde\x63\x8d\x24\x0b\xd7\xc9\xa2\x45\xd2\x66\xb1\x49\x77\xcf\x63\x69\x6c\x11\xa6\x49\x95\xa4\xec\x1a\x41\xde\xbd\xa0\xa8\x3f\xca\x92\x13\xb7\xab\x43\x60\x51\xf3\xfb\xcd\xcc\xc7\x09\xdb\x66\x52\x19\x58\xa8\x43\x66\x64\x50\xbe\x7d\xe1\x72\xff\x22\x37\x24\x60\xa5\xe4\x16\x2e\xea\xf7\x8b\x5a\x22\x17\x6b\xb6\xe4\xe4\x49\xb5\xcf\x6a\xc9\x47\x19\x6f\x28\x29\xce\xb4\x13\x9c\xfe\xf3\xf8\xb4\x78\xb8\xbf\x7b\x79\x7a\xb8\xff\x73\x7e\x77\xf7\xed\xfe\xf9\x39\x08\xa2\x28\x82\x17\x85\x42\x63\x6c\x98\x14\x60\x52\x34\x60\x52\x82\x2d\x32\x01\xa6\xf0\x83\xc9\x96\x09\xd8\xcb\x9c\x27\xa0\xd9\x5a\x14\x4a\x46\x42\xac\x08\x0d\x01\x82\x4e\x51\x51\x02\x18\xc7\x32\x17\x06\x50\x24\x80\x02\x72\xc1\x8b\x20\x0a\x71\x74\x9f\x56\x52\x01\x42\xae\x49\x05\x81\x69\xdc\x86\x01\x00\x40\x86\xca\x30\xe4\x73\xeb\xee\x6b\xbe\xe4\x2c\x7e\xa0\xc3\xac\x04\x69\xf2\x40\x87\x47\xa6\xcd\xbd\x30\xea\x30\x86\x28\x82\x1f\xc4\xd6\xa9\x99\xc1\xa7\xe9\xb4\xad\xfe\x97\x26\x75\x86\xf6\x2f\xa5\xf6\x2a\xe7\xe7\xaa\x7e\x9a\x4e\xa7\xc1\x08\xe0\x35\x70\xfe\x15\x65\xa8\x28\x2c\xe0\x9a\x01\xe6\x26\x0d\x7f\x95\x4a\xc9\xfd\x77\xe4\x39\x8d\xe0\x72\xee\x00\x1a\x55\x1a\xf6\x89\x22\x58\x38\x1c\x2d\xea\x82\xf6\x15\x8c\xda\xe1\x98\x24\xf6\x03\x53\xb0\xa1\x83\xae\xb5\x38\x99\x12\xf5\xd2\x26\xdc\x40\xf9\x2b\xcc\xf0\x40\x6a\xe6\xaa\x36\xf2\x34\x2c\xee\xef\xc9\xd7\x0a\x9e\xf9\x89\xf5\x3e\xc1\x24\x09\xb3\x06\x9f\xde\x7a\x4d\x6a\x81\x31\xa4\xa8\xd3\x39\x5f\x4b\xc5\x4c\xba\x1d\x92\xf7\x84\xc6\xb0\x2f\xc1\xed\x17\x76\x5f\x47\xe7\x07\xe9\x95\xf6\xfd\x18\x7d\xf1\xd3\x21\xfa\xb2\x55\x84\x75\x88\x2d\xd0\x7b\x03\x3c\x6a\xbc\x13\xd1\x1d\xcb\x0e\x84\x76\x2c\x78\x14\x57\xd3\x78\x08\x99\x62\x3b\xfb\x8b\x33\xb1\xb1\x93\x6d\x5b\x51\x1b\x69\x87\x7a\x87\x39\x37\x5e\x17\x15\x27\x0b\xcc\x70\xc9\x38\x33\x07\xb8\xe9\x54\x21\xae\x3e\x31\xd2\x13\x6b\x05\xd7\x34\x61\x5a\xe7\x54\x9b\xb1\xcf\x75\x31\x20\x1e\x7b\x4d\x7e\x30\x93\x26\x0a\xf7\xb8\xe4\x76\x5e\x6a\x02\x9c\x7c\xb7\x3e\x6f\x3d\xfd\x30\x2a\x6d\x47\xab\x4a\xac\x90\xf2\x53\xac\x39\xca\x71\x51\xc9\x68\x5b\x14\xb8\x26\x55\x4c\x58\x99\x27\x33\x60\x09\xcf\x26\xee\xb1\x99\x97\x3a\x6f\x58\xf5\x8f\xd2\xc4\xf5\x95\xc7\xb5\x13\xe7\xf0\xf1\x48\x30\x2c\x60\x9b\x75\xd1\x1b\x6a\xe5\x0a\x37\x8d\x3b\x0a\xaf\xaf\x8e\x1d\x8f\xc1\xc8\x99\xef\xfa\xd8\xe9\xb3\xb3\xf2\x15\x4d\xda\x82\xc5\x66\x62\x5a\x52\xc3\xb5\xf4\x00\x3f\x51\xd8\x0f\xd4\xf2\x9d\x48\x6f\x43\xcf\x97\x7d\xfe\x5f\x6e\xbf\x49\x9e\x0c\x96\xe7\xa5\x91\xf0\xfd\x3a\x9c\xe7\x49\xa2\x48\xeb\x59\xa7\x26\xe8\x8e\xc7\x9e\x46\x1b\xc8\xd9\x00\xac\xb5\xc2\x00\x2d\x78\xc5\xf6\x87\xe4\xaa\x95\x4c\xd7\x71\xa7\xfc\xad\xa4\x5a\xd8\xf4\xf9\xb6\x20\x31\xb1\x92\x0b\xcc\xe0\xc6\x8b\xe4\x44\x89\x2f\x87\x9c\x75\x4a\x77\x5e\x4c\x7d\x70\x78\x41\x14\x64\xa8\xd3\xb0\x8c\x77\x0c\x68\x7a\xdb\xbe\x54\xfe\x5d\xac\xa4\x23\xbd\xa1\xc6\x28\x6e\x94\x85\xe4\x9c\xdc\xc6\x73\xe3\x6e\xbe\x2a\x5b\xbf\xe5\x97\xc5\xfd\xdd\x97\x7b\xc7\x4c\x4f\xff\xda\xad\x6b\x78\x42\x3b\xfa\x7d\xe8\xf8\x08\xd9\xe7\xf3\x67\xc8\x50\xb0\x38\xbc\x58\x14\xdb\x98\x90\x06\x5c\x88\xa0\x68\x45\x8a\x44\x4c\x96\xbf\xdd\xc6\x16\xd7\xd6\x2f\x5a\x40\xf4\x81\x60\x5b\xbb\x5a\x07\x3c\x87\xde\x00\x9c\x33\x16\xd5\xf2\xd7\x55\x6d\xd7\x79\x78\x9e\xe6\x6e\x85\xfa\xf8\x34\x45\x11\x3c\xed\x48\x29\x96\xb8\x3d\x2a\xa1\x95\xe5\xd9\xd6\x4a\xad\x28\x26\xb6\x23\x35\xc0\xb7\x5e\xcf\xe5\xa2\xea\xba\xc8\xdd\xc5\xcd\x15\xf3\xad\x34\xd3\x7b\xcb\xd8\xed\xad\xf2\xe3\x36\xe9\x2d\xaa\x8d\xae\xce\xca\xdb\x47\x03\xea\x66\x39\x6e\xf7\x67\x8b\xe5\x75\x93\xf6\x19\x17\xec\xf5\xe5\xab\x4f\xc2\x55\xb8\x6f\xb7\xe1\x39\x74\xfa\x01\x8c\x2a\x84\x7a\xe8\xb3\x9b\x80\x5f\x60\x3b\xbf\x83\xb0\x0e\xd4\x36\xcb\x0d\x08\xa9\xb6\xc8\x1b\x7c\x99\xb0\xff\x79\xd8\x95\xdb\x42\x9f\x0b\xf6\x77\x4e\x90\xb5\xe7\xa7\x1e\xf9\xca\xfa\xcf\x03\x73\x70\xf7\xf8\xaf\xc8\x75\xe3\x1c\xc6\xcc\x61\xfc\xe5\x04\x72\xf6\xef\x5b\xf0\x16\xfc\x1b\x00\x00\xff\xff\xa8\xb5\x30\x1c\x65\x0e\x00\x00" +var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x39\x04\x32\xe0\x48\xde\x63\x8d\x24\x0b\xd7\xc9\xa2\x45\xd2\x66\xb1\x49\x77\xcf\x13\x69\x6c\x11\xa6\x49\x95\xa4\xec\x1a\x8b\xbc\x7b\x41\x51\x7f\x94\x25\x67\xdd\xae\x0e\x81\x45\xcd\xef\x37\x33\x1f\x27\x6c\x9b\x4b\x65\x60\xa9\x0e\xb9\x91\x41\xf5\xf6\x89\xcb\xfd\x8b\xdc\x90\x80\x95\x92\x5b\xb8\x68\xde\x2f\x1a\x89\x42\xac\xd9\x2b\x27\x4f\xaa\x7b\xd6\x48\x3e\xca\x64\x43\x69\x79\xa6\x9d\xe0\xec\x9f\xc7\xa7\xe5\xc3\xfd\xdd\xcb\xd3\xc3\xfd\x9f\x8b\xbb\xbb\x2f\xf7\xcf\xcf\x41\x10\xc7\x31\xbc\x28\x14\x1a\x13\xc3\xa4\x00\x93\xa1\x01\x93\x11\x6c\x91\x09\x30\xa5\x1f\x4c\xb7\x4c\xc0\x5e\x16\x3c\x05\xcd\xd6\xa2\x54\x32\x12\x12\x45\x68\x08\x10\x74\x86\x8a\x52\xc0\x24\x91\x85\x30\x80\x22\x05\x14\x50\x08\x5e\x06\x51\x8a\xa3\xfb\xb4\x92\x0a\x10\x0a\x4d\x2a\x08\x4c\xeb\x36\x0c\x00\x00\x72\x54\x86\x21\x5f\x58\x77\x9f\x8b\x57\xce\x92\x07\x3a\xcc\x2b\x90\xa2\x07\x3a\x3c\x32\x6d\xee\x85\x51\x87\x29\xc4\x31\x7c\x23\xb6\xce\xcc\x1c\x3e\xcc\x66\x5d\xf5\xbf\x34\xa9\x33\xb4\x7f\xa9\xb4\x57\x05\x3f\x57\xf5\xc3\x6c\x36\x0b\x26\x00\xdf\x03\xe7\x5f\x51\x8e\x8a\xc2\x12\xae\x39\x60\x61\xb2\xf0\x57\xa9\x94\xdc\x7f\x45\x5e\xd0\x04\x2e\x17\x0e\xa0\x49\xad\x61\x9f\x38\x86\xa5\xc3\xd1\xa2\x2e\x68\x5f\xc3\xa8\x1d\x8e\x69\x6a\x3f\x30\x05\x1b\x3a\xe8\x46\x8b\x93\xa9\x50\xaf\x6c\xc2\x0d\x54\xbf\xc2\x1c\x0f\xa4\xe6\xae\x6a\x13\x4f\xc3\xe2\xfe\x9e\x7c\xa3\xe0\x99\x8f\xac\xf7\x08\xd3\x34\xcc\x5b\x7c\x06\xeb\x15\x35\x02\x53\xc8\x50\x67\x0b\xbe\x96\x8a\x99\x6c\x3b\x26\xef\x09\x4d\x61\x5f\x81\x3b\x2c\xec\xbe\x4e\xce\x0f\xd2\x2b\xed\xfb\x31\xfa\xe2\xa7\x43\xf4\x65\xeb\x08\x9b\x10\x3b\xa0\x0f\x06\x78\xd4\x78\x27\xa2\x3b\x96\x1d\x09\xed\x58\xf0\x28\xae\xb6\xf1\x10\x72\xc5\x76\xf6\x17\x67\x62\x63\x27\xdb\xb6\xa2\x36\xd2\x0e\xf5\x0e\x0b\x6e\xbc\x2e\x2a\x4f\x96\x98\xe3\x2b\xe3\xcc\x1c\xe0\xa6\x57\x85\xa4\xfe\xc4\x48\x47\xd6\x0a\xae\x29\x62\x5a\x17\xd4\x98\xb1\xcf\x75\x39\x20\x1e\x7b\x45\xdf\x98\xc9\x52\x85\xfb\x09\x5c\x36\xe4\x17\x7d\xb5\xfe\x6e\x3d\xdd\x30\xae\xec\xc6\xab\x5a\xac\x94\xf2\xd3\x6b\xf8\xc9\xf1\x50\xc5\x66\x5b\x14\xb8\x26\x55\x4e\x57\x95\x23\x33\x60\xc9\xce\x26\xed\x31\x99\x97\x36\x6f\x19\xf5\x8f\xca\xc4\xf5\x95\xc7\xb3\x91\x73\xf8\x78\x24\x18\x96\x90\xcd\xfb\xc8\x8d\xb5\x71\x8d\x99\xc6\x1d\x85\xd7\x57\xc7\x8e\xa7\x60\xe4\xdc\x77\x7d\xec\xf4\xd9\x59\xf9\x8c\x26\xeb\xc0\x62\x33\x31\x1d\xa9\xf1\x3a\x7a\x80\x9f\x28\xea\x3b\x75\x7c\x27\xca\xdb\xd0\xf3\x63\x9f\xff\x97\xd7\x6f\x92\xa7\xa3\xa5\x79\x69\x25\x7c\xbf\x0e\xe3\x45\x9a\x2a\xd2\x7a\xde\xab\x07\xba\xe3\xa9\xa7\xd1\x05\x71\x3e\x02\x69\xa3\x30\x42\x07\x5e\xa1\xfd\xe1\xb8\xea\x24\xd3\x77\xdc\x2b\x7d\x27\xa9\x0e\x36\x43\xbe\x2d\x48\x4c\xac\xe4\x12\x73\xb8\xf1\x22\x39\x51\xde\xcb\x31\x67\xbd\xd2\x9d\x17\xd3\x10\x1c\x5e\x10\x25\x09\xea\x2c\xac\xe2\x9d\x02\x9a\xc1\x96\xaf\x94\x7f\x17\x2b\xe9\xc8\x6e\xac\x31\xca\x9b\x64\x29\x39\x27\xb7\xe9\xdc\xb8\x1b\xaf\xce\xd6\x6f\xf7\xd7\xf2\xde\x1e\xca\xbd\x67\x66\xa0\x7f\xed\xb6\x35\x3e\x9d\x3d\xfd\x21\x74\x7c\x84\xec\xf3\xf1\x23\xe4\x28\x58\x12\x5e\x2c\xcb\x2d\x4c\x48\x03\x2e\x44\x50\xb4\x22\x45\x22\x21\xcb\xdb\x6e\x53\x4b\x1a\xeb\x17\x1d\x20\x86\x40\xb0\xad\x5d\xaf\x01\x9e\x43\x6f\x00\xce\x19\x8b\x7a\xe9\xeb\xab\x76\xeb\x3c\x3e\x4f\x0b\xb7\x3a\xfd\xf8\x34\xc5\x31\x3c\xed\x48\x29\x96\xba\xfd\x29\xa5\x95\xe5\xd8\xce\x2a\xad\x28\x21\xb6\x23\x35\xc2\xb5\x5e\xcf\x15\xa2\xee\xba\xd8\xdd\xc1\xed\xf5\xf2\xa5\x32\x33\x78\xc3\xd8\xad\xad\xf6\xe3\x36\xe8\x2d\xaa\x8d\xae\xcf\xaa\x9b\x47\x03\xea\x76\x29\xee\xf6\x67\x87\xe1\x75\x9b\xf6\x19\x17\xeb\xf5\xe5\x77\x9f\x80\xeb\x70\xdf\x6e\xc3\x73\xe8\xf4\x07\x30\xaa\x11\x1a\xa0\xcf\x7e\x02\x7e\x81\xed\xfc\x8e\xc2\x3a\x52\xdb\xbc\x30\x20\xa4\xda\x22\x6f\xf1\x65\xc2\xfe\xc7\x61\x57\x6d\x0b\x7d\x21\xd8\xdf\x05\x41\xde\x9d\x9f\x66\xe4\x6b\xeb\x3f\x0f\xcc\xd1\xbd\xe3\xbf\x22\xd7\x8f\x73\x1c\x33\x87\xf1\xa7\x13\xc8\xd9\xbf\x6f\xc1\x5b\xf0\x6f\x00\x00\x00\xff\xff\x4b\xe4\x54\x92\x5d\x0e\x00\x00" func lockedtokensAdminAdmin_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3717,7 +3717,7 @@ func lockedtokensAdminAdmin_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0xe0, 0x6e, 0xd7, 0x29, 0xcc, 0x46, 0xd5, 0x10, 0xeb, 0xed, 0x8b, 0xc9, 0xd6, 0x72, 0xda, 0xdf, 0x19, 0xf, 0xd4, 0x46, 0x6f, 0x5a, 0x2b, 0x22, 0xa6, 0xf2, 0xdc, 0x18, 0x69, 0x9a, 0x99}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x68, 0xf, 0xe1, 0xfd, 0xf, 0x9f, 0xbc, 0x7d, 0x4a, 0xbb, 0x7f, 0x3d, 0xc6, 0x7a, 0xef, 0x7e, 0x67, 0xdd, 0x80, 0x37, 0xcc, 0xfb, 0xd5, 0xc4, 0x9d, 0x54, 0x15, 0x71, 0x37, 0xd9, 0x8a, 0x57}} return a, nil } @@ -3821,7 +3821,7 @@ func lockedtokensAdminCheck_shared_registrationCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x39\x2c\x64\xc0\x91\xd2\xab\xe1\x64\xe1\x3a\x59\xb4\x48\xda\x04\x9b\x74\xf7\x3c\x96\xc6\x16\x11\x9a\x54\x49\xca\xae\x11\xe4\xdd\x0b\x4a\xd4\x0f\x65\x29\x76\x8b\xa2\x87\xd5\x21\x88\xc9\xf9\xf9\xe6\x9b\x19\xce\xb0\x6d\x2e\x95\x81\xa5\x3a\xe4\x46\x06\xee\xd7\x17\x2e\xf7\x2f\xf2\x95\x04\xac\x95\xdc\xc2\x45\xf3\xfb\xa2\x91\x28\xc4\x86\xad\x38\x79\x52\xdd\xb3\x46\xf2\x41\x26\xaf\x94\x96\x67\xba\x12\xbc\xfa\xeb\xe1\x71\x79\x7f\x77\xfb\xf2\x78\x7f\xf7\xfb\xe2\xf6\xf6\xeb\xdd\xf3\x73\x10\xc4\x71\x0c\x2f\x0a\x85\xc6\xc4\x30\x29\xc0\x64\x68\x00\x21\x29\xb4\x91\xe9\x01\x72\x25\x77\x2c\x25\x05\x7b\x59\xf0\x14\x34\xdb\x88\x52\xc5\x48\x48\x14\xa1\x21\x40\xd0\x19\x2a\x4a\x01\x93\x44\x16\xc2\x00\x8a\x14\x50\x40\x21\x78\x09\xa1\x14\xaf\xef\xd6\x52\x01\x42\xa1\x49\x05\x81\x69\xbd\x86\x01\x00\xc0\xba\xe0\x7c\x91\x6e\x99\x78\x2a\x56\x9c\x25\xf7\x74\x98\x39\x82\xa2\x7b\x3a\x3c\x30\x6d\xee\x84\x51\x87\x29\xc4\x31\x7c\x27\xb6\xc9\xcc\x0c\x7e\xba\xba\xba\x6a\x94\xff\xd0\xa4\xfe\xa9\xee\x04\xe0\x2d\x28\x2d\xe4\x8a\x72\x54\x14\xba\xd0\x9f\x5c\xe4\x33\xc0\xc2\x64\xe1\xcf\x52\x29\xb9\xff\x86\xbc\xa0\x09\x7c\x5a\x54\xf1\x4c\x6a\x5d\xfb\x71\x32\x8e\x0a\x77\x0b\xd7\xe0\xfe\x0b\x73\x3c\x58\x4b\x3d\xd3\x13\x4f\xd7\xb2\x72\xbe\x66\xa3\xea\xb9\x8c\x5e\xe9\xa0\x23\x4c\xd3\x30\x6f\x79\x38\xe6\x35\x6a\x6e\xa7\x90\xa1\xce\x16\x7c\x23\x15\x33\xd9\x76\x50\xd8\x93\x98\xc2\xde\xd1\x37\x20\x59\x5d\x75\xc0\x75\x62\x1a\x85\xe6\x65\xed\x04\x32\x5f\xf6\x03\x60\xbe\xe0\x11\x2e\xcb\xf7\x0e\x0b\x6e\x96\x98\xe3\x8a\x71\x66\x0e\x70\xdd\xa3\x32\xa9\xaf\x18\xe9\x48\x1b\xa9\x70\x43\x8d\x01\xfb\x45\x4c\xeb\x82\xe6\x65\x79\x78\x4d\x18\x7d\x67\x26\x4b\x15\xee\x71\xc5\x6d\xb5\x34\x7d\x1c\x7d\xb3\x3e\x6f\xc2\xd8\x99\x8b\xd7\xf5\x4d\x79\xd1\x03\xc8\xdb\x16\xfe\x0d\x05\x6e\x48\xc1\xfc\xd2\x6b\xec\xa8\xea\xc1\x87\x23\xc1\xb0\x0c\x6e\xd6\x8f\x71\xb4\x6c\x1c\x9e\x48\xe3\x8e\xc2\xf9\xe5\xb1\xe7\x29\x18\x39\xf3\x7d\x1f\x7b\x7d\xae\xac\x3c\xa1\xc9\x7a\xa1\x98\x8e\xd4\xff\x42\xf9\x09\xa4\x37\xa1\x67\xd6\x7e\xe7\xc7\xe6\xa9\x0e\x05\xfa\x8b\xe4\xe9\x68\xb2\x5e\x5a\x89\xb0\xe2\x79\x91\xa6\x8a\xb4\x9e\xf5\xc8\xc0\xea\x78\xea\x91\x37\x1b\xa1\x72\xa4\xe7\xbc\xbc\x7a\xb8\xe7\x97\x1d\xa8\x53\xef\xea\x28\xd3\x1d\xc8\x43\x34\x8c\x53\xb0\xc4\x1c\xae\x3d\x40\x43\x19\x76\x49\xfd\x34\xe6\xf3\x26\x3c\x03\xcd\x64\x30\x7e\xcf\x5d\xf9\xb4\xe8\x2c\xf4\x01\x4e\x01\xcd\x60\x65\x3b\x1b\xbf\x8a\xb5\xac\x5e\x92\xb1\xba\x2e\x1f\xc1\x1f\xba\xaa\x79\x97\x90\xa5\x2d\x63\xa9\xe0\xba\x3f\x94\x86\x63\x5b\x95\x83\x73\x3e\x84\xdd\x37\x78\x13\xda\x35\xe5\xa3\x54\x38\xc1\xc1\xac\xdb\xef\xf3\x67\xc8\x51\xb0\x24\xbc\x58\x96\xdb\x8a\x90\x06\x2a\xf7\x2e\x82\x66\x0f\x49\x2a\x4b\x17\xdd\x38\x07\x3c\xd9\x1e\xac\x07\xb1\xe7\xc9\x4b\xf0\x89\xfe\xf5\x14\xeb\xad\xa8\xaf\xda\x2d\xda\x41\xc5\xb6\xd2\x66\x83\x55\x37\xd4\x8d\x71\x0c\x8f\x3b\x52\x8a\xa5\x04\x26\x23\x48\x69\x6d\xe7\x41\x67\xcf\x54\x94\x10\xdb\x91\x8a\x46\xe6\x82\x57\xba\x85\xa8\x3b\x28\xae\xa6\x74\x3b\xbe\xbe\x3a\x3b\xbe\x73\xb7\x21\x0a\xda\x37\x8e\xaa\xfd\x72\x8b\xea\x55\xd7\x67\x69\x15\x8f\x06\xd4\x0d\x3d\xd1\xd8\x20\xd4\xed\xcb\x77\x56\x9f\xd5\x6f\xcb\x9b\xdf\x57\x35\xde\xf7\xde\xdb\x72\x62\xa6\x9d\x41\x52\x4d\x91\x97\xbc\xe1\x00\xfc\x04\xdb\x57\x68\x94\xd7\x91\xec\xe6\x85\x01\x21\xd5\x16\x79\x4b\x30\x13\x76\x25\xb7\xab\xac\xe5\xbe\x10\xec\xcf\x82\x20\x47\x93\x45\xc7\x2f\x57\x6d\xfe\xbf\x63\x73\x74\xb3\xf9\xb7\xd4\xf5\x71\x8e\x93\x56\x91\xfc\xe5\x03\xea\xec\xdf\xf7\xe0\x3d\xf8\x3b\x00\x00\xff\xff\xd3\xa4\x6f\x04\x7d\x0d\x00\x00" +var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x39\x04\x32\xe0\x48\xe9\xd5\x70\xb2\x70\x9d\x2c\x5a\x24\x6d\x82\x4d\xba\x7b\x9e\x48\x63\x8b\x08\x4d\xaa\xfc\xb1\x6b\x2c\xf2\xee\x05\x25\x4a\x16\x65\x29\x71\x8b\xf6\xb2\x3a\x04\x31\x39\x3f\xdf\x7c\x33\xc3\x19\xb6\x29\xa5\x32\xb0\x54\xfb\xd2\xc8\xc8\xff\xfa\xcc\xe5\xee\x59\xbe\x92\x80\x95\x92\x1b\x38\x6b\x7f\x9f\xb5\x12\x56\xac\xd9\x0b\xa7\x40\xaa\x7b\xd6\x4a\xde\xcb\xec\x95\xf2\xea\x4c\xd7\x82\x97\x7f\xdd\x3f\x2c\xef\x6e\x6f\x9e\x1f\xee\x6e\x7f\x5f\xdc\xdc\x7c\xb9\x7d\x7a\x8a\xa2\x34\x4d\xe1\x59\xa1\xd0\x98\x19\x26\x05\x98\x02\x0d\x20\x64\x56\x1b\x99\xef\xa1\x54\x72\xcb\x72\x52\xb0\x93\x96\xe7\xa0\xd9\x5a\x54\x2a\x46\x42\xa6\x08\x0d\x01\x82\x2e\x50\x51\x0e\x98\x65\xd2\x0a\x03\x28\x72\x40\x01\x56\xf0\x0a\x42\x25\xde\xdc\xad\xa4\x02\x04\xab\x49\x45\x91\x39\x78\x8d\x23\x00\x80\x95\xe5\x7c\x91\x6f\x98\x78\xb4\x2f\x9c\x65\x77\xb4\x9f\x79\x82\x92\x3b\xda\xdf\x33\x6d\x6e\x85\x51\xfb\x29\xa4\x29\x7c\x23\xb6\x2e\xcc\x0c\x7e\xba\xbc\xbc\x6c\x95\xff\xd0\xa4\xfe\xa9\xee\x04\xe0\x7b\x54\x59\x28\x15\x95\xa8\x28\xf6\xa1\x3f\xfa\xc8\x67\x80\xd6\x14\xf1\xcf\x52\x29\xb9\xfb\x8a\xdc\xd2\x04\xce\x17\x75\x3c\x93\x46\xd7\x7d\x9c\x8c\xa7\xc2\xdf\xc2\x15\xf8\xff\xe2\x12\xf7\xce\x52\xcf\xf4\x24\xd0\x75\xac\x9c\xae\xd9\xaa\x06\x2e\x93\x57\xda\xeb\x04\xf3\x3c\x2e\x0f\x3c\x1c\xf3\x9a\xb4\xb7\x53\x28\x50\x17\x0b\xbe\x96\x8a\x99\x62\x33\x28\x1c\x48\x4c\x61\xe7\xe9\x1b\x90\xac\xaf\x3a\xe0\x3a\x31\x8d\x42\x0b\xb2\xf6\x01\xb2\x50\xf6\x1d\x60\xa1\xe0\x11\x2e\xc7\xf7\x16\x2d\x37\x4b\x2c\xf1\x85\x71\x66\xf6\x70\xd5\xa3\x32\x6b\xae\x18\xe9\x44\x1b\xa9\x70\x4d\xad\x01\xf7\x25\x4c\x6b\x4b\xf3\xaa\x3c\x82\x26\x4c\xbe\x31\x53\xe4\x0a\x77\x13\x38\x6f\x7b\x38\xf9\xea\xfc\x5d\xc7\xa9\x37\x95\xae\x9a\x9b\xea\xa2\x07\x8e\x1f\xda\xf7\x37\x14\xb8\x26\x05\xf3\x8b\xa0\xa9\x93\xba\xff\xee\x8f\x04\xe3\x2a\xb0\x59\x3f\xbe\xd1\x92\xf1\x78\x12\x8d\x5b\x8a\xe7\x17\xc7\x9e\xa7\x60\xe4\x2c\xf4\x7d\xec\xf5\xa9\xb6\xf2\x88\xa6\xe8\x85\x62\x3a\x52\xff\x3b\xdd\x1f\xa0\xbc\x8e\x03\x93\xee\x3b\x3d\xae\x40\x75\x28\xc8\x5f\x24\xcf\x47\x13\xf5\x7c\x90\x88\x6b\x8e\x17\x79\xae\x48\xeb\x59\x8f\x08\xac\x8f\xa7\x01\x71\xb3\x11\x1a\x47\x7a\x2d\xc8\x69\x80\x7b\x7e\xd1\x81\x3a\x0d\xae\x8e\xb2\xdc\x81\x3c\x44\xc3\x38\x05\x4b\x2c\xe1\x2a\x00\x34\x94\x5d\x9f\xd0\xf3\x31\x9f\xd7\xf1\x09\x68\x26\x83\xf1\x07\xee\xaa\x27\x45\x17\x71\x08\x70\x0a\x68\x06\xab\xda\xdb\xf8\x55\xac\x64\xfd\x82\x8c\xd5\x74\xf5\xf8\xfd\xb0\x15\xcd\xbb\x64\x2c\x5d\x09\x4b\x05\x57\xfd\x41\x34\x1c\xd7\x4b\x35\x2c\xe7\x43\xd8\x43\x83\xd7\xb1\x5b\x4d\xde\x4b\x83\x17\x1c\xcc\xb8\xfb\x3e\x7d\x82\x12\x05\xcb\xe2\xb3\x65\xb5\xa1\x08\x69\xa0\x76\xef\x23\x68\x77\x8f\xac\xb6\x74\xd6\x8d\x73\xc0\x93\xeb\xbf\x66\xf8\x06\x9e\x82\xe4\x7e\xd0\xbb\x81\x62\xb3\x09\xf5\x55\xbb\x05\x3b\xa8\x78\xa8\xb2\xd9\x60\xc5\x0d\x75\x62\x9a\xc2\xc3\x96\x94\x62\x39\x81\x29\x08\x72\x5a\xb9\x39\xd0\xd9\x2d\x15\x65\xc4\xb6\xa4\x92\x91\x79\x10\x94\xad\x15\x4d\xf7\xa4\xf5\x64\x3e\x8c\xad\x2f\xde\x4e\xe8\xdc\x6f\x85\x82\x76\xad\xa3\x7a\xa7\xdc\xa0\x7a\xd5\xcd\x59\x5e\xc7\xa3\x01\x75\x4b\x4f\x32\x36\x00\xf5\xe1\xd5\x3b\xa9\xc7\x9a\x77\xe5\x7b\xd8\x53\x0d\xde\xb7\xde\xbb\xf2\xc1\x2c\x3b\x81\xa4\x86\xa2\x20\x79\xc3\x01\x84\x09\x76\x2f\xd0\x28\xaf\x23\xd9\x2d\xad\x01\x21\xd5\x06\xf9\x81\x60\x26\xdc\x1a\xee\xd6\x57\xc7\xbd\x15\xec\x4f\x4b\x50\xa2\x29\x92\xe3\x57\xab\x31\xff\xdf\xb1\x39\xba\xd1\xfc\x5b\xea\xfa\x38\xc7\x49\xab\x49\xfe\xfc\x0e\x75\xee\xef\x5b\xf4\x16\xfd\x1d\x00\x00\xff\xff\xf0\x55\x29\xf1\x71\x0d\x00\x00" func lockedtokensAdminCustody_create_account_with_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3837,11 +3837,11 @@ func lockedtokensAdminCustody_create_account_with_lease_accountCdc() (*asset, er } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_account_with_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdc, 0xa1, 0xb5, 0xae, 0xbc, 0x6, 0x99, 0x49, 0x15, 0x8b, 0x44, 0x1d, 0x7c, 0xee, 0x56, 0xa8, 0xd6, 0x27, 0xfa, 0xe3, 0x1a, 0xae, 0xaf, 0xbd, 0x5d, 0xe6, 0x1c, 0xf0, 0x62, 0xdc, 0x1a, 0x9d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0x51, 0xd3, 0x47, 0xdd, 0x63, 0x73, 0x17, 0xbf, 0xbb, 0x20, 0xd8, 0x4d, 0xdf, 0x4d, 0x44, 0xf6, 0x54, 0x7b, 0xfb, 0x61, 0x6f, 0x43, 0x34, 0xbc, 0x8e, 0x20, 0xaa, 0x47, 0xde, 0x4, 0xef}} return a, nil } -var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x39\x2c\x64\xc0\x91\xd2\xab\xe1\x64\xe1\x3a\x59\xb4\x48\xda\x04\x9b\x60\xf7\x3c\x16\x69\x8b\x08\x4d\xaa\x24\x65\x57\x58\xe4\xdd\x0b\x52\x94\x2c\xca\xd4\x6e\x5a\x14\x3d\x54\x87\x20\x26\xe7\xe7\x9b\x6f\x86\x33\xc3\xf6\x95\x54\x06\xd6\xaa\xa9\x8c\x4c\xfc\xaf\x4f\x5c\x1e\x5f\xe4\x2b\x15\xb0\x55\x72\x0f\x17\xfd\xef\x8b\x5e\xa2\x16\x3b\xb6\xe1\x34\x90\x1a\x9e\xf5\x92\x0f\xb2\x78\xa5\xc4\x9d\xe9\x56\xf0\xea\xcf\x87\xc7\xf5\xfd\xdd\xed\xcb\xe3\xfd\xdd\xef\xab\xdb\xdb\xcf\x77\xcf\xcf\x49\x92\xe7\x39\xbc\x28\x14\x1a\x0b\xc3\xa4\x00\x53\xa2\x01\x84\xa2\xd6\x46\x92\x06\x2a\x25\x0f\x8c\x50\x05\x47\x59\x73\x02\x9a\xed\x84\x53\x31\x12\x0a\x45\xd1\x50\x40\xd0\x25\x2a\x4a\x00\x8b\x42\xd6\xc2\xc0\x56\x2a\x40\xa8\xb5\x55\x2a\x25\x20\x57\x14\x49\xe3\xb4\x4a\xd4\x60\x4a\xca\x14\xd4\x82\x3b\x80\xbd\x56\x6b\x8d\x58\xb1\x16\x53\x49\xcf\x85\x9c\xbe\x74\x28\xac\x1d\x30\x03\xe0\xc8\xb5\x4c\x92\xc1\x49\x9a\x00\x00\x6c\x6b\xce\x57\x64\xcf\xc4\x53\xbd\xe1\xac\xb8\xa7\xcd\xc2\xb3\x9e\xdd\xd3\xe6\x81\x69\x73\x27\x8c\x6a\xe6\x90\xe7\xf0\x95\xb2\x5d\x69\x16\xf0\xd3\xd5\xd5\x55\x32\x03\xf8\x96\x38\x13\x95\xa2\x15\x2a\x9a\x7a\x4e\x9e\x3c\x25\x0b\xc0\xda\x94\xe9\xcf\x52\x29\x79\xfc\x82\xbc\xa6\x33\xf8\xb0\x6a\x91\xce\x5d\xfc\xfe\x87\x17\x7c\x36\x52\xe1\x8e\xce\x61\x8d\x15\x6e\x18\x67\x86\x51\x7d\x52\x99\x75\xee\xec\xc7\xa9\xf1\xb4\xfa\x5b\xb8\x06\xff\x5f\x5a\x61\x63\x9d\x8f\xd0\xcc\x4e\xca\x81\x62\xf6\x4a\x1b\x9d\x21\x21\x69\x75\x22\xe0\x9c\x94\xac\xbf\x9d\x5b\x96\xcb\x15\xdf\x49\xc5\x4c\xb9\x8f\x0a\x07\x12\x73\x38\x7a\xde\x22\x92\xed\xd5\x2c\x8c\xec\x80\x35\x37\x3d\x0b\x0d\x5c\x8f\x20\x17\x03\x82\x32\xdd\xd2\xd6\x1b\xb0\x5f\xc6\xb4\xae\xe9\xd2\xd1\x1a\x94\x7f\xf6\x95\x99\x92\x28\x3c\xe2\x86\xdb\x74\xf4\x2f\x28\xfb\x62\x7d\xde\xa4\xb9\x37\x97\x6f\xbb\x1b\x77\x31\x02\xc8\x4f\x8f\xe7\x37\x14\xb8\xa3\x0a\x96\x97\xc1\x93\xca\xda\x7a\x7d\x38\x13\x4c\x5d\x70\x8b\x71\x8c\x93\xe9\xf1\x78\x32\x8d\x07\x9a\x2e\x2f\xcf\x3d\xcf\xc1\xc8\x45\xe8\xfb\xdc\xab\xaf\xad\x27\x34\xe5\x28\x14\x33\x90\xfa\x4f\x28\xff\x01\xd2\x9b\x34\x30\x6b\xbf\xf7\xc7\x16\xa8\xc6\x02\xfd\x45\x72\x32\x99\xac\x97\x93\x44\x08\xa2\x25\x7d\x45\x88\xa2\x5a\x2f\x46\xcc\x60\x7b\x3c\x0f\x34\x86\xac\x2e\x26\x38\x4e\x22\x40\x07\x5d\x21\xcc\x7c\x60\x7d\x79\x39\x08\x66\xec\x78\x54\x0b\x83\xa0\x62\x44\x4d\x93\xb4\xc6\x0a\xae\x03\x40\xb1\x1a\xf0\x69\xff\x30\xe5\xf3\x26\x7d\x07\x9a\x59\x34\xfe\xc0\x9d\x6b\x3f\xba\x4c\x43\x80\x73\x40\x13\xad\x7d\x6f\xe3\x57\xb1\x95\x6d\xaf\x99\xaa\x7c\xd7\x8e\xfe\xd7\x75\xcf\x87\x84\xac\x6d\xa1\x4b\x05\xd7\xe3\xf1\x10\x8f\x6d\xe3\x66\xd7\x32\x86\x3d\x34\x78\x93\xda\x15\xe2\x7b\xa9\xf0\x82\xd1\xac\xdb\xef\xe3\x47\xa8\x50\xb0\x22\xbd\x58\xbb\x4d\x42\x48\x03\xad\x7b\x88\x6d\x02\x52\x5d\x0c\xe3\x8c\x78\xb2\x0f\xb3\x1b\x89\x81\xa7\x20\xc1\x7f\xe7\x51\x77\xeb\xc6\x58\x75\x58\xb4\xd3\xdd\xc0\x55\xda\x22\x5a\x75\xb1\xd7\x98\xe7\xf0\x78\xa0\x4a\x31\x42\xdd\x2a\x43\xe8\xd6\x4e\x8c\xc1\x0e\xa8\x68\x41\xd9\x81\xaa\x6c\x62\x72\x04\xa5\x5b\x8b\xee\x05\xe5\xed\x24\x3f\x0d\xb8\xcf\xde\x4e\xe8\xdc\x6f\x6f\x82\x1e\x7b\x47\xed\xee\xb7\x47\xf5\xaa\xbb\x33\xd2\xc6\xa3\x01\x75\x4f\x4f\x36\x35\x2a\xf5\xa9\x05\xbe\xeb\x9d\x75\xbd\xe5\x5b\xf8\xae\x3a\xbc\x6f\xa3\xde\xf2\x83\xa9\xf7\x0e\x92\x3a\x8a\x22\xcd\x7f\x1c\x40\x98\x60\xdb\x85\x26\x79\x9d\xc8\x6e\x55\x1b\x10\x52\xed\x91\x9f\x08\x66\xc2\xae\xcb\x76\x9b\xb4\xdc\xd7\x82\xfd\x51\x53\xa8\xd0\x94\xd9\x79\xe7\xea\xcc\xff\x7b\x6c\x4e\xee\x3e\xff\x94\xba\x31\xce\x69\xd2\x5a\x92\x3f\x7d\x87\x3a\xfb\xf7\x2d\x79\x4b\xfe\x0a\x00\x00\xff\xff\xfe\x48\x6c\xcc\x19\x0d\x00\x00" +var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x39\x04\x32\xe0\x48\xe9\xd5\x70\xb2\x70\x9d\x2c\x5a\x24\x6d\x82\x4d\xb0\x7b\x9e\x88\xb4\x45\x84\x26\x55\x92\xb2\x2b\x2c\xf2\xee\x05\x29\x4a\x16\x65\x6a\x93\x16\xed\xa5\x3a\x04\x31\x39\x3f\xdf\x7c\x33\x9c\x19\xb6\xab\xa4\x32\xb0\x56\x4d\x65\x64\xe2\x7f\x7d\xe6\xf2\xf0\x2c\x5f\xa9\x80\x8d\x92\x3b\x38\xeb\x7f\x9f\xf5\x12\xb5\xd8\xb2\x17\x4e\x03\xa9\xe1\x59\x2f\x79\x2f\x8b\x57\x4a\xdc\x99\x6e\x05\x2f\xff\xbc\x7f\x58\xdf\xdd\xde\x3c\x3f\xdc\xdd\xfe\xbe\xba\xb9\xf9\x72\xfb\xf4\x94\x24\x79\x9e\xc3\xb3\x42\xa1\xb1\x30\x4c\x0a\x30\x25\x1a\x40\x28\x6a\x6d\x24\x69\xa0\x52\x72\xcf\x08\x55\x70\x90\x35\x27\xa0\xd9\x56\x38\x15\x23\xa1\x50\x14\x0d\x05\x04\x5d\xa2\xa2\x04\xb0\x28\x64\x2d\x0c\x6c\xa4\x02\x84\x5a\x5b\xa5\x52\x02\x72\x45\x91\x34\x4e\xab\x44\x0d\xa6\xa4\x4c\x41\x2d\xb8\x03\xd8\x6b\xb5\xd6\x88\x15\x6b\x31\x95\xf4\x54\xc8\xe9\x4b\x87\xc2\xda\x01\x33\x00\x8e\x5c\xcb\x24\x19\x9c\xa4\x09\x00\xc0\xa6\xe6\x7c\x45\x76\x4c\x3c\xd6\x2f\x9c\x15\x77\xb4\x59\x78\xd6\xb3\x3b\xda\xdc\x33\x6d\x6e\x85\x51\xcd\x1c\xf2\x1c\xbe\x51\xb6\x2d\xcd\x02\x7e\xba\xbc\xbc\x4c\x66\x00\xdf\x13\x67\xa2\x52\xb4\x42\x45\x53\xcf\xc9\xa3\xa7\x64\x01\x58\x9b\x32\xfd\x59\x2a\x25\x0f\x5f\x91\xd7\x74\x06\xe7\xab\x16\xe9\xdc\xc5\xef\x7f\x78\xc1\x27\x23\x15\x6e\xe9\x1c\xd6\x58\xe1\x0b\xe3\xcc\x30\xaa\x8f\x2a\xb3\xce\x9d\xfd\x38\x35\x9e\x56\x7f\x0b\x57\xe0\xff\x4b\x2b\x6c\xac\xf3\x11\x9a\xd9\x51\x39\x50\xcc\x5e\x69\xa3\x33\x24\x24\xad\x8e\x04\x9c\x92\x92\xf5\xb7\x73\xcb\x72\xb9\xe2\x5b\xa9\x98\x29\x77\x51\xe1\x40\x62\x0e\x07\xcf\x5b\x44\xb2\xbd\x9a\x85\x91\xed\xb1\xe6\xa6\x67\xa1\x81\xab\x11\xe4\x62\x40\x50\xa6\x5b\xda\x7a\x03\xf6\xcb\x98\xd6\x35\x5d\x3a\x5a\x83\xf2\xcf\xbe\x31\x53\x12\x85\x87\x19\x9c\xf7\xaf\x27\xfb\x6a\xfd\x5d\xa7\xb9\x37\x95\x6f\xba\x1b\x77\x31\x02\xc7\x8f\x0f\xe7\x37\x14\xb8\xa5\x0a\x96\x17\xc1\x73\xca\xda\x5a\xbd\x3f\x11\x4c\x5d\x60\x8b\x71\x7c\x93\xa9\xf1\x78\x32\x8d\x7b\x9a\x2e\x2f\x4e\x3d\xcf\xc1\xc8\x45\xe8\xfb\xd4\xab\xaf\xab\x47\x34\xe5\x28\x14\x33\x90\xfa\xcf\xe9\x7e\x07\xe5\x75\x1a\x98\xb4\xdf\xc7\xe3\x0a\x54\x63\x41\xfe\x22\x39\x99\x4c\xd4\xf3\x51\x22\x04\xd1\x12\xbe\x22\x44\x51\xad\x17\x23\x56\xb0\x3d\x9e\x07\x1a\x43\x46\x17\x13\xfc\x26\x11\xa0\x83\x6e\x10\x66\x3d\xb0\xbe\xbc\x18\x04\x33\x76\x3c\xaa\x83\x41\x50\x31\xa2\xa6\x49\x5a\x63\x05\x57\x01\xa0\x58\xfe\x7d\xca\xcf\xa7\x7c\x5e\xa7\x1f\x40\x33\x8b\xc6\x1f\xb8\x73\x6d\x47\x97\x69\x08\x70\x0e\x68\xa2\x75\xef\x6d\xfc\x2a\x36\xb2\xed\x31\x53\x55\xef\xda\xd0\xff\xb6\xe6\xf9\x90\x8c\xb5\x2d\x72\xa9\xe0\x6a\x3c\x12\xe2\x71\xbd\xb8\x79\xb5\x8c\x61\x0f\x0d\x5e\xa7\x76\x6d\xf8\x51\x1a\xbc\x60\x34\xe3\xf6\xfb\xf4\x09\x2a\x14\xac\x48\xcf\xd6\x6e\x7b\x10\xd2\x40\xeb\x1e\x62\xd3\x5f\xaa\xb3\x61\x9c\x11\x4f\xf6\x51\x76\x63\x30\xf0\x14\x24\xf7\xef\x3c\xe8\x6e\xc5\x18\xab\x0e\x0b\x76\xba\x13\xb8\x2a\x5b\x44\x2b\x2e\xf6\x12\xf3\x1c\x1e\xf6\x54\x29\x46\xa8\x5b\x5f\x08\xdd\xd8\x49\x31\xd8\xfb\x14\x2d\x28\xdb\x53\x95\x4d\x4c\x8c\xa0\x6c\x6b\xd1\xbd\x9e\xbc\x9d\xde\xc7\xc1\xf6\xc5\xdb\x09\x9d\xfb\x8d\x4d\xd0\x43\xef\xa8\xdd\xf7\x76\xa8\x5e\x75\x77\x46\xda\x78\x34\xa0\xee\xe9\xc9\xa6\x46\xa4\x3e\xb6\xbf\x0f\xbd\xb1\xae\xaf\x7c\x0f\xdf\x54\x87\xf7\x6d\xd4\x57\xde\x99\x76\x1f\x20\xa9\xa3\x28\xd2\xf8\xc7\x01\x84\x09\xb6\x1d\x68\x92\xd7\x89\xec\x56\xb5\x01\x21\xd5\x0e\xf9\x91\x60\x26\xec\x8a\x6c\x37\x48\xcb\x7d\x2d\xd8\x1f\x35\x85\x0a\x4d\x99\x9d\x76\xad\xce\xfc\xbf\xc7\xe6\xe4\xce\xf3\x4f\xa9\x1b\xe3\x9c\x26\xad\x25\xf9\xf3\x0f\xa8\xb3\x7f\xdf\x92\xb7\xe4\xaf\x00\x00\x00\xff\xff\x7c\x6b\x87\x9d\x0d\x0d\x00\x00" func lockedtokensAdminCustody_create_only_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3857,11 +3857,11 @@ func lockedtokensAdminCustody_create_only_lease_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc5, 0xb7, 0x41, 0xa4, 0x72, 0x62, 0x65, 0xe7, 0xf6, 0xc7, 0x6e, 0xb6, 0x66, 0xdf, 0x1d, 0xef, 0x2d, 0x8b, 0x3a, 0x3d, 0xf9, 0x6, 0x77, 0x99, 0xdd, 0x17, 0xe2, 0xce, 0xb1, 0xdf, 0x21, 0xf5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x76, 0xec, 0x42, 0x51, 0xd6, 0x15, 0x6c, 0x1, 0x33, 0x27, 0x84, 0xfc, 0xa7, 0xd0, 0x18, 0xd5, 0x25, 0x3b, 0x19, 0xa, 0xac, 0x3d, 0xc5, 0xc1, 0x54, 0xed, 0x4d, 0xfb, 0xee, 0x73, 0x29, 0x3c}} return a, nil } -var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x39\x2c\x64\xc0\x91\xdc\x63\x0d\x27\x0b\xd7\xc9\xa2\x45\xd2\x26\xd8\xa4\xbb\xe7\xb1\x34\xb6\x88\xd0\xa4\x4a\x52\x76\x85\x20\xef\x5e\x50\xa2\x64\x51\x96\xf2\x53\x14\x3d\xac\x0e\x41\x44\xcd\xcf\x37\xdf\x0c\x67\xc6\x6c\x97\x4b\x65\x60\xa5\xca\xdc\xc8\xc0\xbd\x7d\xe1\xf2\xf0\x28\x9f\x48\xc0\x46\xc9\x1d\x9c\xb5\xef\x67\xad\x44\x21\xb6\x6c\xcd\xc9\x93\xea\x9e\xb5\x92\xb7\x32\x79\xa2\xb4\x3a\xd3\xb5\xe0\xec\xef\xdb\xbb\xd5\xcd\xf5\xd5\xe3\xdd\xcd\xf5\x1f\xcb\xab\xab\xaf\xd7\x0f\x0f\x41\x10\xc7\x31\x3c\x2a\x14\x1a\x13\xc3\xa4\x00\x93\xa1\x01\x84\xa4\xd0\x46\xa6\x25\xe4\x4a\xee\x59\x4a\x0a\x0e\xb2\xe0\x29\x68\xb6\x15\x95\x8a\x91\x90\x28\x42\x43\x80\xa0\x33\x54\x94\x02\x26\x89\x2c\x84\x81\x8d\x54\x80\x50\x68\xab\x94\x49\x40\xae\x08\xd3\xb2\xd2\xca\x50\x83\xc9\x88\x29\x28\x04\xaf\x00\xb6\x5a\xb5\xb5\xd4\x8a\xd5\x98\x32\x3a\x15\xaa\xf4\x65\x85\xc2\xda\x01\xd3\x01\x8e\x5c\xcb\x20\xe8\x9c\x84\x01\x00\x40\x8e\xca\x30\xe4\xcb\x74\xc7\xc4\x7d\xb1\xe6\x2c\xb9\xa1\x72\xee\x88\x8f\x6e\xa8\xbc\x65\xda\x5c\x0b\xa3\xca\x29\xc4\x31\x7c\x27\xb6\xcd\xcc\x1c\x7e\x9a\xcd\xba\xea\x7f\x6a\x52\x1f\xd0\xfe\x79\x36\x0b\x26\x00\xcf\x41\x6d\x43\x51\x8e\x8a\x42\xc7\xe9\xbd\xa3\x74\x0e\x58\x98\x2c\xfc\x45\x2a\x25\x0f\xdf\x90\x17\x34\x81\x4f\xcb\x3a\xd2\x69\xc5\x9f\x7b\x71\x82\x0f\x46\x2a\xdc\xd2\x14\x56\x98\xe3\x9a\x71\x66\x18\xe9\xa3\xca\xa4\x71\x67\x1f\x4e\xc6\xa5\xc5\x7d\x85\x0b\x70\xff\x85\x39\x96\xd6\x79\x0f\xcd\xe4\xa8\xec\x29\x46\x4f\x54\xea\x08\xd3\x34\xcc\x8f\xf1\x0f\x92\x1a\xb5\x02\x53\x9b\xa8\x6c\xc9\xb7\x52\x31\x93\xed\xc6\xe4\x3d\xa1\x29\x1c\x1c\x79\xc3\xc2\xf5\xd7\xc9\xc7\x41\x7a\xa9\x7b\x1b\xa3\x2f\xfe\x3a\x44\x5f\xb6\x41\xe8\x25\x61\x8f\x05\x37\x6d\xc2\x4a\xb8\xe8\x01\x4f\x3a\xb9\x8c\x74\x9d\xe1\xd6\x80\x7d\x22\xa6\x75\x41\x8b\xaa\x02\xbc\x9b\x1e\x7d\x67\x26\x4b\x15\x1e\x70\xcd\x6d\xe5\xb4\xcd\x22\xfa\x66\x7d\x5e\x86\xb1\x33\x17\x6f\x9a\x2f\xd5\x87\x1e\x40\x7e\xec\x13\xbf\xa3\xc0\x2d\x29\x58\x9c\x7b\xdd\x23\xaa\xaf\xe6\xed\x89\x60\x58\x05\x37\xef\xc7\x38\x5a\x49\x0e\x4f\xa4\x71\x4f\xe1\xe2\xfc\xd4\xf3\x14\x8c\x9c\xfb\xbe\x4f\xbd\xba\x6b\x70\x8f\x26\xeb\x85\x62\x3a\x52\xff\x0b\xe5\x6f\x20\xbd\x0c\x3d\xb3\xf6\x79\x7f\x6c\x9e\xea\x50\xa0\xbf\x4a\x9e\x8e\x26\xeb\xf1\x28\xe1\x83\xa8\x49\x5f\xa6\xa9\x22\xad\xe7\x3d\x66\xb0\x3e\x9e\x7a\x1a\x5d\x56\xe7\x23\x1c\x07\x03\x40\x3b\x0d\xcc\xcf\xbc\x67\x7d\x71\xde\x09\xa6\xef\xb8\x57\x0b\x9d\xa0\x86\x88\x1a\x27\x69\x85\x39\x5c\x78\x80\x86\x6a\xc0\xa5\xfd\xd3\x98\xcf\xcb\xf0\x1d\x68\x26\x83\xf1\x7b\xee\xaa\x16\xa4\xb3\xd0\x07\x38\x05\x34\x83\xb5\xef\x6c\xfc\x26\x36\xb2\xee\x35\x63\x95\x5f\x35\xcc\x1f\xba\xee\x79\x97\x90\x95\x2d\x74\xa9\xe0\xa2\x3f\xc9\x86\x63\x5b\x57\x63\x76\x31\x84\xdd\x37\x78\x19\xda\x6d\xe9\xb5\x54\x38\xc1\xc1\xac\xdb\xe7\xf3\x67\xc8\x51\xb0\x24\x3c\x5b\x55\x4b\x93\x90\x06\x6a\xf7\x30\xb4\xf4\x48\x75\xd6\x8d\x73\xc0\x93\xbd\x98\xcd\xf4\xf6\x3c\x79\x09\xfe\xc8\xa5\x6e\x36\xab\xbe\x6a\xb7\x68\xc7\xbb\x41\x55\x69\xf3\xc1\xaa\x1b\xba\x8d\x71\x0c\x77\x7b\x52\x8a\xa5\x54\x6d\x6d\x29\x6d\xec\xc4\xe8\xac\xbb\x8a\x12\x62\x7b\x52\xd1\xc8\xe4\xf0\x4a\xb7\x10\xcd\x0d\x8a\xeb\x69\x7e\x1c\x70\x5f\x9d\x1d\xdf\xb9\x5b\x54\x05\x1d\x5a\x47\xf5\x9a\xbb\x43\xf5\xa4\x9b\xb3\xb4\x8e\x47\x03\xea\x96\x9e\x68\x6c\x54\xea\x63\x0b\x7c\xd7\x3d\x6b\x7a\xcb\xb3\x7f\xaf\x1a\xbc\x2f\xbd\xde\xf2\xc6\xd4\x7b\x07\x49\x0d\x45\x03\xcd\xbf\x1f\x80\x9f\x60\xdb\x85\x46\x79\x1d\xc9\x6e\x5e\x18\x10\x52\xed\x90\x1f\x09\x66\xc2\xfe\x32\xb0\x8b\xaf\xe5\xbe\x10\xec\xaf\x82\x20\x47\x93\x45\xa7\x9d\xab\x31\xff\xdf\xb1\x39\xba\xfb\xfc\x5b\xea\xfa\x38\xc7\x49\xab\x49\xfe\xf2\x0a\x75\xf6\xef\x4b\xf0\x12\xfc\x13\x00\x00\xff\xff\xb1\x5d\x7b\xb4\x04\x0e\x00\x00" +var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x39\x04\x32\xe0\x48\xee\xb1\x86\x93\x85\xeb\x64\xd1\x22\x69\x13\x6c\xd2\xdd\xf3\x44\x1a\x5b\x44\x68\x52\x25\x29\xbb\xc2\x22\xef\x5e\x50\xa2\x64\x51\x96\x12\xa7\x68\x2f\xab\x43\x10\x51\xf3\xf3\xcd\x37\xc3\x99\x31\xdb\xe6\x52\x19\x58\xa9\x32\x37\x32\x70\x6f\x9f\xb9\xdc\x3f\xc9\x17\x12\xb0\x56\x72\x0b\x67\xed\xfb\x59\x2b\x51\x88\x0d\x7b\xe6\xe4\x49\x75\xcf\x5a\xc9\x3b\x99\xbc\x50\x5a\x9d\xe9\x5a\x70\xf6\xf7\xdd\xfd\xea\xf6\xe6\xfa\xe9\xfe\xf6\xe6\x8f\xe5\xf5\xf5\x97\x9b\xc7\xc7\x20\x88\xe3\x18\x9e\x14\x0a\x8d\x89\x61\x52\x80\xc9\xd0\x00\x42\x52\x68\x23\xd3\x12\x72\x25\x77\x2c\x25\x05\x7b\x59\xf0\x14\x34\xdb\x88\x4a\xc5\x48\x48\x14\xa1\x21\x40\xd0\x19\x2a\x4a\x01\x93\x44\x16\xc2\xc0\x5a\x2a\x40\x28\xb4\x55\xca\x24\x20\x57\x84\x69\x59\x69\x65\xa8\xc1\x64\xc4\x14\x14\x82\x57\x00\x5b\xad\xda\x5a\x6a\xc5\x6a\x4c\x19\x1d\x0b\x55\xfa\xb2\x42\x61\xed\x80\xe9\x00\x47\xae\x65\x10\x74\x4e\xc2\x00\x00\x20\x47\x65\x18\xf2\x65\xba\x65\xe2\xa1\x78\xe6\x2c\xb9\xa5\x72\xee\x88\x8f\x6e\xa9\xbc\x63\xda\xdc\x08\xa3\xca\x29\xc4\x31\x7c\x23\xb6\xc9\xcc\x1c\x7e\x9a\xcd\xba\xea\x7f\x6a\x52\x1f\xd0\xfe\x79\x36\x0b\x26\x00\xdf\x83\xda\x86\xa2\x1c\x15\x85\x8e\xd3\x07\x47\xe9\x1c\xb0\x30\x59\xf8\x8b\x54\x4a\xee\xbf\x22\x2f\x68\x02\xe7\xcb\x3a\xd2\x69\xc5\x9f\x7b\x71\x82\x8f\x46\x2a\xdc\xd0\x14\x56\x98\xe3\x33\xe3\xcc\x30\xd2\x07\x95\x49\xe3\xce\x3e\x9c\x8c\x4b\x8b\xfb\x0a\x97\xe0\xfe\x0b\x73\x2c\xad\xf3\x1e\x9a\xc9\x41\xd9\x53\x8c\x5e\xa8\xd4\x11\xa6\x69\x98\x1f\xe2\x1f\x24\x35\x6a\x05\xa6\x36\x51\xd9\x92\x6f\xa4\x62\x26\xdb\x8e\xc9\x7b\x42\x53\xd8\x3b\xf2\x86\x85\xeb\xaf\x93\x8f\x83\xf4\x52\xf7\x3e\x46\x5f\xfc\x6d\x88\xbe\x6c\x83\xd0\x4b\xc2\x0e\x0b\x6e\xda\x84\x95\x70\xd9\x03\x9e\x74\x72\x19\xe9\x3a\xc3\xad\x01\xfb\x44\x4c\xeb\x82\x16\x55\x05\x78\x37\x3d\xfa\xc6\x4c\x96\x2a\xdc\x4f\xe0\xbc\x6d\x14\xd1\x57\xeb\xef\x2a\x8c\x9d\xa9\x78\xdd\x7c\xa9\x3e\xf4\xc0\xf1\x43\x8f\xf8\x1d\x05\x6e\x48\xc1\xe2\xc2\xeb\x1c\x51\x7d\x2d\xef\x8e\x04\xc3\x2a\xb0\x79\x3f\xbe\xd1\x2a\x72\x78\x22\x8d\x3b\x0a\x17\x17\xc7\x9e\xa7\x60\xe4\xdc\xf7\x7d\xec\xd5\x5d\x81\x07\x34\x59\x2f\x14\xd3\x91\xfa\xdf\xe9\x7e\x07\xe5\x55\xe8\x99\xb4\xcf\xe9\x71\x79\xaa\x43\x41\xfe\x2a\x79\x3a\x9a\xa8\xa7\x83\x84\x0f\xa2\x26\x7c\x99\xa6\x8a\xb4\x9e\xf7\x58\xc1\xfa\x78\xea\x69\x74\x19\x9d\x8f\xf0\x1b\x0c\x00\xed\x34\x2e\x3f\xeb\x9e\xf5\xc5\x45\x27\x98\xbe\xe3\x5e\x1d\x74\x82\x1a\x22\x6a\x9c\xa4\x15\xe6\x70\xe9\x01\x1a\xca\xbf\x4b\xf9\xf9\x98\xcf\xab\xf0\x04\x34\x93\xc1\xf8\x3d\x77\x55\xeb\xd1\x59\xe8\x03\x9c\x02\x9a\xc1\xba\x77\x36\x7e\x13\x6b\x59\xf7\x98\xb1\xaa\xaf\x1a\xe5\x0f\x5b\xf3\xbc\x4b\xc6\xca\x16\xb9\x54\x70\xd9\x9f\x5e\xc3\x71\x3d\x57\xa3\x75\x31\x84\xdd\x37\x78\x15\xda\x0d\xe9\xad\x34\x38\xc1\xc1\x8c\xdb\xe7\xd3\x27\xc8\x51\xb0\x24\x3c\x5b\x55\x8b\x92\x90\x06\x6a\xf7\x30\xb4\xe8\x48\x75\xd6\x8d\x73\xc0\x93\xbd\x94\xcd\xc4\xf6\x3c\x79\xc9\xfd\xc8\x85\x6e\xb6\xa9\xbe\x6a\xb7\x60\xc7\x3b\x41\x55\x65\xf3\xc1\x8a\x1b\xba\x89\x71\x0c\xf7\x3b\x52\x8a\xa5\x54\x6d\x6a\x29\xad\xed\xa4\xe8\xac\xb8\x8a\x12\x62\x3b\x52\xd1\xc8\xc4\xf0\xca\xb6\x10\xcd\xed\x89\xeb\x09\x7e\x18\x6c\x5f\x9c\x1d\xdf\xb9\x5b\x4e\x05\xed\x5b\x47\xf5\x6a\xbb\x45\xf5\xa2\x9b\xb3\xb4\x8e\x47\x03\xea\x96\x9e\x68\x6c\x44\xea\x43\xfb\x3b\xe9\x8e\x35\x7d\xe5\xbb\x7f\xa7\x1a\xbc\xaf\xbd\xbe\xf2\xce\xb4\x3b\x81\xa4\x86\xa2\x81\xc6\xdf\x0f\xc0\x4f\xb0\xed\x40\xa3\xbc\x8e\x64\x37\x2f\x0c\x08\xa9\xb6\xc8\x0f\x04\x33\x61\x7f\x0d\xd8\x65\xd7\x72\x5f\x08\xf6\x57\x41\x90\xa3\xc9\xa2\xe3\xae\xd5\x98\xff\xef\xd8\x1c\xdd\x79\xfe\x2d\x75\x7d\x9c\xe3\xa4\xd5\x24\x7f\x7e\x83\x3a\xfb\xf7\x35\x78\x0d\xfe\x09\x00\x00\xff\xff\xee\x48\xf0\x0e\xf8\x0d\x00\x00" func lockedtokensAdminCustody_create_only_shared_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3877,11 +3877,11 @@ func lockedtokensAdminCustody_create_only_shared_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_shared_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc8, 0x7f, 0x61, 0x42, 0x63, 0x5a, 0xc6, 0x70, 0x29, 0x45, 0xa7, 0xa7, 0x7e, 0xd, 0xbe, 0x3e, 0x53, 0x33, 0xb6, 0x94, 0xba, 0x7b, 0x1, 0x72, 0x9e, 0x9a, 0x1b, 0x20, 0x6e, 0xee, 0xff, 0x54}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x62, 0xe0, 0x84, 0x6d, 0x58, 0xb1, 0x17, 0xf2, 0x32, 0xbd, 0xf8, 0x49, 0x7, 0x35, 0xd2, 0xbd, 0xb, 0xce, 0x42, 0x8f, 0x70, 0x52, 0xe9, 0x62, 0x91, 0x27, 0xb5, 0x7f, 0x4d, 0x9, 0x0, 0xb0}} return a, nil } -var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x39\x2c\x64\xc0\x91\xbc\xc7\x1a\x4e\x16\xae\x93\x45\x8b\xa4\x4d\xb0\x49\x77\xcf\x63\x69\x6c\x11\xa1\x49\x95\xa4\xec\x1a\x41\xde\xbd\xa0\x44\xc9\xa2\x2c\x25\x76\x51\xf4\x50\x1e\x82\x88\x9c\x9f\x6f\xbe\x19\x0e\xc7\x6c\x93\x4b\x65\x60\xa1\xf6\xb9\x91\x81\xfb\xfa\xca\xe5\xee\x59\xbe\x90\x80\x95\x92\x1b\xb8\x68\xbe\x2f\x1a\x89\x42\xac\xd9\x92\x93\x27\xd5\xde\x6b\x24\xef\x65\xf2\x42\x69\xb9\xa7\x2b\xc1\xc9\x5f\xf7\x0f\x8b\xbb\xdb\x9b\xe7\x87\xbb\xdb\xdf\xe7\x37\x37\xdf\x6e\x9f\x9e\x82\x20\x8e\x63\x78\x56\x28\x34\x26\x86\x49\x01\x26\x43\x03\x08\x49\xa1\x8d\x4c\xf7\x90\x2b\xb9\x65\x29\x29\xd8\xc9\x82\xa7\xa0\xd9\x5a\x94\x2a\x46\x42\xa2\x08\x0d\x01\x82\xce\x50\x51\x0a\x98\x24\xb2\x10\x06\x50\xa4\x80\x02\x0a\xc1\x4b\x08\xa5\x78\x7d\xb6\x92\x0a\x10\x0a\x4d\x2a\x08\xcc\xc1\x6b\x18\x00\x00\xe4\xa8\x0c\x43\x3e\x4f\x37\x4c\x3c\x16\x4b\xce\x92\x3b\xda\x4f\x1d\x47\xd1\x1d\xed\xef\x99\x36\xb7\xc2\xa8\xfd\x18\xe2\x18\x7e\x10\x5b\x67\x66\x0a\x9f\x27\x93\xb6\xfa\x1f\x9a\xd4\x19\xda\x3f\x39\xed\x55\xc1\xcf\x55\xfd\x3c\x99\x4c\x82\x11\xbc\x06\x95\x7b\x45\x39\x2a\x0a\x1d\x73\x8f\x8e\xb8\x29\x60\x61\xb2\xf0\x67\xa9\x94\xdc\x7d\x47\x5e\xd0\x08\x3e\xcd\x2b\x3a\x1a\x5d\xbb\x38\x19\xc7\xa4\x3b\x85\x2b\x70\xff\x85\x39\xee\xad\xa5\x8e\xe9\x91\xa7\x6b\x49\x3d\x5d\xb3\x51\xf5\x5c\x46\x2f\xb4\xd7\x11\xa6\x69\x98\x1f\x68\xe8\x4d\x4b\xd4\x08\x8c\x21\x43\x9d\xcd\xf9\x5a\x2a\x66\xb2\xcd\x90\xbc\x27\x34\x86\x9d\xe3\xb0\x5f\xb8\x3a\x1d\x9d\x0f\xd2\xcb\xe0\xc7\x18\x7d\xf1\xf7\x21\xfa\xb2\x35\xc2\x06\x62\x8b\xfe\x5e\x80\x47\xf5\xf5\x0e\xba\x63\xd9\x01\x68\xc7\x82\x47\xb8\x6c\x69\x6c\xb1\xe0\x66\x81\x39\x2e\x19\x67\x66\x0f\x57\x1d\x42\x93\xfa\x88\x91\x8e\xb4\x91\x0a\xd7\xd4\x18\xb0\x2b\x62\x5a\x17\x34\x2b\x2b\xd9\x6b\x37\xd1\x0f\x66\xb2\x54\xe1\x0e\x97\xdc\x16\x76\xd3\xb1\xa2\xef\xd6\xe7\x75\x18\x3b\x73\xf1\xaa\x3e\x29\x0f\x3a\x00\xf9\xa1\x59\xfd\x86\x02\xd7\xa4\x60\x76\xe9\xb5\xb0\xa8\xea\x36\xf7\x47\x82\x61\x19\xdc\xb4\x1b\xe3\x60\x85\x3b\x3c\x91\xc6\x2d\x85\xb3\xcb\x63\xcf\x63\x30\x72\xea\xfb\x3e\xf6\xfa\x54\x59\x79\x44\x93\x75\x42\x31\x2d\xa9\xff\x84\xf2\x0f\x90\x5e\x87\x9e\x59\xbb\x4e\x8f\xcd\x53\xed\x0b\xf4\x17\xc9\xd3\xc1\x64\x3d\x1f\x24\x7c\x10\x15\xe9\xf3\x34\x55\xa4\xf5\xb4\xc3\x0c\x56\xdb\x63\x4f\xa3\xcd\xea\x74\x80\xe3\xa0\x07\x68\xfb\x56\x7a\x99\xf7\xac\xcf\x2e\x5b\xc1\x74\x1d\x77\x6a\xa1\x15\x54\x1f\x51\xc3\x24\x2d\x30\x87\x2b\x0f\x50\x5f\x0d\xb8\xb4\x7f\x1a\xf2\x79\x1d\x9e\x80\x66\xd4\x1b\xbf\xe7\xae\x6c\x3e\x3a\x0b\x7d\x80\x63\x40\xd3\x5b\xfb\xce\xc6\xaf\x62\x25\xab\x5e\x33\x54\xf9\x65\x23\xff\x5f\xd7\x3d\x6f\x13\xb2\xb0\x85\x2e\x15\x5c\x75\x5f\xd8\xfe\xd8\x96\xe5\x14\x30\xeb\xc3\xee\x1b\xbc\x0e\xed\xc8\xf6\x5e\x2a\x9c\x60\x6f\xd6\xed\xfa\xf2\x05\x72\x14\x2c\x09\x2f\x16\xe5\xe4\x26\xa4\x81\xca\x7d\x33\x8c\x25\x0e\xbc\xa2\x15\x29\x12\x09\x5d\xb4\x43\xed\x71\x66\xef\x66\x3d\x58\x78\xce\xbc\x1c\x9f\x73\xaf\xeb\x21\xb1\xab\xda\xae\xdb\xe1\x86\x50\x16\xdb\xb4\xb7\xf0\xfa\x2e\x64\x1c\xc3\xc3\x96\x94\x62\x29\x81\xc9\x08\x52\x5a\xd9\x47\xa3\x35\x76\x2b\x4a\x88\x6d\x49\x45\x03\x8f\x87\x57\xbd\x85\xa8\x2f\x51\x5c\x3d\xe5\x87\x37\xee\x9b\xb3\xe3\x3b\x77\x03\xb3\xa0\x5d\xe3\xa8\x1a\xb7\x37\xa8\x5e\x74\xbd\x97\x56\xf1\x68\x40\xdd\xd0\x13\x0d\xbd\x96\xfa\xd0\x05\x4f\xba\x6a\x75\x7b\x79\xf5\xaf\x56\x8d\xf7\xad\xd3\x5e\x3e\x78\xf8\x4e\x20\xa9\xa6\xa8\xa7\xff\x77\x03\xf0\x13\x6c\x1b\xd1\x20\xaf\x03\xd9\xcd\x0b\x03\x42\xaa\x0d\xf2\x03\xc1\x4c\xd8\x5f\x28\x76\x34\xb7\xdc\x17\x82\xfd\x59\x10\xe4\x68\xb2\xe8\xb8\x79\xd5\xe6\xff\x3d\x36\x07\xc7\x9f\x7f\x4a\x5d\x17\xe7\x30\x69\x15\xc9\x5f\xdf\xa1\xce\xfe\x7d\x0b\xde\x82\xbf\x03\x00\x00\xff\xff\xf8\xa1\x29\xbc\x8c\x0e\x00\x00" +var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x39\x04\x32\xe0\x48\xde\x63\x0d\x27\x0b\xd7\xc9\xa2\x45\xd2\x26\xd8\xa4\xbb\xe7\x89\x34\xb6\x88\xc8\xa4\x4a\x52\x76\x8d\x45\xde\xbd\xa0\x44\xc9\xa2\x44\x25\x4e\xd1\x5e\xaa\x43\x10\x89\xf3\xf3\xcd\x37\xc3\x99\x31\xdb\x16\x42\x6a\x58\xc9\x43\xa1\x45\x60\xdf\xbe\xe4\x62\xff\x24\x5e\x88\xc3\x5a\x8a\x2d\x9c\xb5\xef\x67\xad\x44\xc9\x37\xec\x39\x27\x47\xaa\xfb\xad\x95\xbc\x13\xc9\x0b\xa5\xd5\x37\x55\x0b\xce\xfe\xba\xbb\x5f\xdd\xde\x5c\x3f\xdd\xdf\xde\xfc\xbe\xbc\xbe\xfe\x7a\xf3\xf8\x18\x04\x71\x1c\xc3\x93\x44\xae\x30\xd1\x4c\x70\xd0\x19\x6a\x40\x48\x4a\xa5\x45\x7a\x80\x42\x8a\x1d\x4b\x49\xc2\x5e\x94\x79\x0a\x8a\x6d\x78\xa5\xa2\x05\x24\x92\x50\x13\x20\xa8\x0c\x25\xa5\x80\x49\x22\x4a\xae\x01\x79\x0a\xc8\xa1\xe4\x79\x05\xa1\x12\x6f\xce\xd6\x42\x02\x42\xa9\x48\x06\x81\x3e\x7a\x0d\x03\x00\x80\x02\xa5\x66\x98\x2f\xd3\x2d\xe3\x0f\xe5\x73\xce\x92\x5b\x3a\xcc\x2d\x47\xd1\x2d\x1d\xee\x98\xd2\x37\x5c\xcb\xc3\x14\xe2\x18\xbe\x13\xdb\x64\x7a\x0e\x9f\x66\xb3\xae\xfa\x1f\x8a\xe4\x07\xb4\x7f\xb2\xda\xeb\x32\xff\xa8\xea\xa7\xd9\x6c\x16\x4c\xe0\x47\x50\xbb\x97\x54\xa0\xa4\xd0\x32\xf7\x60\x89\x9b\x03\x96\x3a\x0b\x7f\x16\x52\x8a\xfd\x37\xcc\x4b\x9a\xc0\xf9\xb2\xa6\xa3\xd5\x35\x4f\x4e\xda\x32\x69\x4f\xe1\x12\xec\x7f\x61\x81\x07\x63\xa9\x67\x7a\xe2\xe8\x1a\x52\x4f\xd7\x6c\x55\x1d\x97\xd1\x0b\x1d\x54\x84\x69\x1a\x16\x47\x1a\xbc\x69\x89\x5a\x81\x29\x64\xa8\xb2\x65\xbe\x11\x92\xe9\x6c\x3b\x26\xef\x08\x4d\x61\x6f\x39\xf4\x0b\xd7\xa7\x93\x8f\x83\x74\x32\xf8\x3e\x46\x57\xfc\x6d\x88\xae\x6c\x83\xb0\x85\xd8\xa1\xdf\x0b\x70\x50\x5f\x6f\xa0\x1b\xca\x8e\x40\x1b\x0a\x0e\x70\x99\xd2\xd8\x61\x99\xeb\x15\x16\xf8\xcc\x72\xa6\x0f\x70\xd9\x23\x34\x69\x8e\x18\xa9\x48\x69\x21\x71\x43\xad\x01\xf3\x44\x4c\xa9\x92\x16\x55\x25\x3b\xed\x26\xfa\xce\x74\x96\x4a\xdc\x4f\xe0\xbc\xed\x56\xd1\x37\xe3\xef\x2a\x8c\xad\xa9\x78\xdd\x9c\x54\x07\x3d\x70\xf9\xb1\x51\xfd\x86\x1c\x37\x24\x61\x71\xe1\xb4\xaf\xa8\xee\x34\x77\x03\xc1\xb0\x0a\x6c\xde\x8f\x6f\xb4\xba\x2d\x9e\x48\xe1\x8e\xc2\xc5\xc5\xd0\xf3\x14\xb4\x98\xbb\xbe\x87\x5e\x1f\x6b\x2b\x0f\xa8\xb3\x5e\x28\xba\x23\xf5\x9f\xd3\xfd\x0e\xca\xab\xd0\x31\x69\x9e\xd3\xe3\x72\x54\x7d\x41\xfe\x22\xf2\x74\x34\x51\x4f\x47\x09\x17\x44\x4d\xf8\x32\x4d\x25\x29\x35\xef\xb1\x82\xf5\xe7\xa9\xa3\xd1\x65\x74\x3e\xc2\x6f\xe0\x01\xda\xbd\x8d\x4e\xd6\x1d\xeb\x8b\x8b\x4e\x30\x7d\xc7\xbd\x3a\xe8\x04\xe5\x23\x6a\x9c\xa4\x15\x16\x70\xe9\x00\xf2\xe5\xdf\xa6\xfc\x7c\xcc\xe7\x55\x78\x02\x9a\x89\x37\x7e\xc7\x5d\xd5\x74\x54\x16\xba\x00\xa7\x80\xda\x5b\xf7\xd6\xc6\xaf\x7c\x2d\xea\x1e\x33\x56\xf5\x55\x03\xff\xdf\xd6\x7c\xde\x25\x63\x65\x8a\x5c\x48\xb8\xec\x4f\x55\x7f\x5c\xcf\xd5\xe4\x5f\xf8\xb0\xbb\x06\xaf\x42\xb3\xa6\xbd\x95\x06\x2b\xe8\xcd\xb8\x79\x3e\x7f\x86\x02\x39\x4b\xc2\xb3\x55\xb5\xad\x71\xa1\xa1\x76\xdf\x2e\x60\x89\x05\x2f\x69\x4d\x92\x78\x42\x67\xdd\x50\x3d\xce\xcc\xbd\x6c\x96\x09\xc7\x99\x93\xdf\x8f\xdc\xe9\x66\x31\xec\xab\x76\x6b\x76\xbc\x19\x54\x85\x36\xf7\x16\x9d\xef\x32\xc6\x31\xdc\xef\x48\x4a\x96\x12\xe8\x8c\x20\xa5\xb5\x19\x16\x9d\x55\x5b\x52\x42\x6c\x47\x32\x1a\x19\x1a\x4e\xe5\x96\xbc\xb9\x40\x71\x3d\xbe\x8f\xb3\xed\xab\xb5\xe3\x3a\xb7\x4b\x32\xa7\x7d\xeb\xa8\x5e\xb1\xb7\x28\x5f\x54\xf3\x2d\xad\xe3\x51\x80\xaa\xa5\x27\x1a\x9b\x92\xea\xd8\x01\x4f\xba\x66\x4d\x6b\xf9\xe1\x5e\xab\x06\xef\x6b\xaf\xb5\xbc\x33\xf0\x4e\x20\xa9\xa1\xc8\xd3\xfb\xfb\x01\xb8\x09\x36\x4d\x68\x94\xd7\x91\xec\x16\xa5\x06\x2e\xe4\x16\xf3\x23\xc1\x8c\x9b\x5f\x25\x66\x1d\x37\xdc\x97\x9c\xfd\x59\x12\x14\xa8\xb3\x68\xd8\xb8\x1a\xf3\xff\x1e\x9b\xa3\x6b\xcf\x3f\xa5\xae\x8f\x73\x9c\xb4\x9a\xe4\x2f\x6f\x50\x67\xfe\xbe\x06\xaf\xc1\xdf\x01\x00\x00\xff\xff\x30\x96\xb5\xbc\x80\x0e\x00\x00" func lockedtokensAdminCustody_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3897,7 +3897,7 @@ func lockedtokensAdminCustody_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x46, 0x13, 0x58, 0xeb, 0x7c, 0xe4, 0xe4, 0xab, 0xd2, 0xcb, 0x76, 0xd3, 0x28, 0x7c, 0xdd, 0xaf, 0x32, 0x23, 0xc8, 0xd8, 0x88, 0x41, 0x3, 0x2f, 0xf6, 0xf5, 0xe7, 0xe5, 0xd4, 0xf2, 0xb5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0x63, 0x56, 0x1e, 0x1a, 0xcf, 0x14, 0x17, 0x99, 0x68, 0x65, 0x5f, 0x32, 0x2c, 0xa6, 0xea, 0x46, 0xab, 0x3f, 0x83, 0xc3, 0x9, 0x56, 0xdb, 0x92, 0x6f, 0x8d, 0x67, 0x1a, 0xe8, 0x5e, 0xb6}} return a, nil } @@ -3921,7 +3921,7 @@ func lockedtokensAdminCustody_setup_account_creatorCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminDeposit_locked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4d\x4f\xdc\x30\x10\x3d\x93\x5f\x31\xe4\x00\x89\x04\xd9\x1e\xaa\x1e\x22\x3e\xba\xdd\x85\x1e\x40\xa5\x02\x4a\xcf\x8e\x33\xd9\xb8\x78\xed\xc8\x76\x58\x24\xc4\x7f\xaf\x6c\xc7\x69\xbc\xac\xa0\xb9\x44\x1e\xcf\xc7\x9b\x99\xf7\xcc\xd6\x9d\x54\x06\x2e\x7b\xb1\x62\x15\xc7\x7b\xf9\x88\x02\x1a\x25\xd7\x90\x46\xb6\x34\x09\x9e\x5c\x6e\x22\xaf\x70\x4e\x93\xe0\x72\x2d\xe9\x23\xd6\xce\xa8\xbd\xd7\xa7\xe7\xeb\x9b\xc5\xd5\xc5\xf2\xfe\xe6\xea\xe2\xc7\x7c\xb9\xbc\xbd\xb8\xbb\x4b\x12\xa3\x88\xd0\x84\x1a\x26\x45\x66\x64\x09\xf3\xba\x56\xa8\xf5\x11\x90\xb5\xec\x85\x29\xe1\xd7\x25\x7b\xfe\xf2\x39\x87\x97\x24\x01\x00\x98\xcd\xe0\xbe\x45\x78\x20\x3d\x37\xa0\x50\xcb\x5e\x51\x04\xd3\x12\x03\xad\xe4\xb5\x06\xd3\x22\x18\x5f\xd6\x59\x89\x42\xa8\x90\x89\x15\xb8\x52\x0d\x2a\x85\xb5\x4b\xc5\xd1\x80\x46\x61\x5c\xae\x12\xbe\xbe\x44\xcd\x16\xce\xfc\xea\xab\x76\x0a\x3b\xa2\x30\x23\xf5\x9a\x89\x12\x48\x6f\xda\xec\x9b\x54\x4a\x6e\x1e\x08\xef\x31\x87\x83\x39\xa5\x16\xef\x88\x73\xc0\xfa\x1d\x0d\x10\x50\xd8\xa0\x42\x61\x81\x4a\x07\xd0\xe5\x39\xd4\xa0\x8d\x54\x58\xc3\x93\x2d\x35\x86\x59\x5c\xce\x72\x8b\x0d\x9c\x7a\xdf\xc2\x7a\x92\x15\x16\x95\xab\x7a\xe2\x10\xc4\x78\x7f\x33\xd3\xd6\x8a\x6c\x48\xc5\x2d\xa0\x71\x27\xbe\x91\xb3\xcc\x2e\xa1\x84\xd9\x90\x68\xd6\x84\x7b\x77\x9d\x27\x7b\x7b\x7b\xe7\xe7\xd0\x11\xc1\x68\x96\x2e\x64\xcf\x6b\x10\xd2\x80\xaf\xf7\xb6\x03\xb9\x11\xa8\x0e\xb5\x5f\xc4\x7e\x9a\x27\x11\x7c\x87\x79\x07\xfc\xd1\xc9\x7e\xa1\x97\x83\x29\x57\x0a\xf7\x9b\xdb\xa0\x85\xe4\x1c\x1d\x33\xce\xb2\x28\xd0\x7e\xbe\x9b\x28\x72\x72\xd8\x8a\xbf\xf3\xd5\x7f\x12\xd3\x46\x89\xf2\xe8\xf4\x4e\xfb\x3b\x56\xc8\x5d\x35\x4f\x35\xdf\x24\xd0\xb1\xe0\x74\x1e\x44\x6b\x54\x26\xee\x20\xcc\xa7\x58\xa1\x19\x98\x93\x11\xcf\xfc\x12\x8c\xcc\x61\xff\x14\x04\xe3\x47\x51\xd0\x1a\xb5\x26\x2b\x2c\x21\xb5\x0a\xd0\x1d\x52\xd6\x30\xac\x81\xf8\x04\xc0\xb4\x83\x4c\x02\xb4\xc1\xbe\x0f\x0b\x22\xec\x85\x46\x51\x47\xb0\x75\x9a\xfc\x9b\xc4\x94\xb5\x81\x4a\x41\x48\x4e\xbf\x1f\xf2\x56\x23\x6f\x8a\x51\x50\x70\x72\x3c\xb2\xb8\xd8\x0c\x09\xb3\xa0\x6a\xff\xf7\xf3\x1f\x34\x86\xcf\x48\x7b\x83\x3b\x04\x64\x2b\x2b\xa4\xac\x63\x28\xcc\xa1\x86\xae\xaf\x38\xa3\x63\xdf\xb2\xfa\x83\x34\x96\xcf\xe8\x0d\xa7\x30\x19\xb1\x91\xf9\xff\xa8\x73\x5a\xeb\x16\x29\xb2\x27\x54\xdb\xe9\x9d\xd1\x33\x7c\x74\x8f\xd9\x4d\x49\x47\x2a\xc6\x99\x61\xa8\x47\xaa\x6f\xbd\x31\x21\xfb\xeb\x0e\x86\xcf\x7c\x9b\x33\xbf\xb1\x51\xce\x6f\x00\xf9\xf5\x7d\x24\x5f\x1f\xf4\x7e\xaf\x03\x37\xdc\xfa\xd2\x78\x52\x4b\xec\xa4\x66\x7e\x15\x61\x99\x22\xd0\x83\x89\x37\xa9\xd4\x36\xca\xc9\xc8\x8a\xda\x27\x1b\x5e\xa4\x93\xe3\x98\x38\x81\x14\xaf\xc9\xdf\x00\x00\x00\xff\xff\x7c\xc8\x24\x02\x98\x06\x00\x00" +var _lockedtokensAdminDeposit_locked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4d\x4f\xdc\x30\x10\x3d\x93\x5f\x31\xe4\x00\x89\x04\xd9\x1e\xaa\x1e\x56\x7c\x74\xbb\x0b\x3d\x80\x4a\x05\x94\x9e\xbd\xce\x64\xe3\xe2\xb5\x23\x7b\xc2\x22\x21\xfe\x7b\x15\x3b\x4e\xe3\x65\x05\xcd\x25\xf2\x78\x66\xde\x9b\x99\x37\x16\xeb\x46\x1b\x82\xcb\x56\xad\xc4\x52\xe2\xbd\x7e\x44\x05\x95\xd1\x6b\x48\x23\x5b\x9a\x04\x4f\xa9\x37\x91\x57\x38\xa7\x49\x70\xb9\xd6\xfc\x11\x4b\x67\xb4\xde\xeb\xd3\xf3\xf5\xcd\xfc\xea\x62\x71\x7f\x73\x75\xf1\x63\xb6\x58\xdc\x5e\xdc\xdd\x25\x09\x19\xa6\x2c\xe3\x24\xb4\xca\x48\x4f\x61\x56\x96\x06\xad\x3d\x02\xb6\xd6\xad\xa2\x29\xfc\xba\x14\xcf\x5f\x3e\xe7\xf0\x92\x24\x00\x00\x93\x09\xdc\xd7\x08\x0f\xac\x95\x04\x06\xad\x6e\x0d\x47\xa0\x9a\x11\xd4\x5a\x96\x16\xa8\x46\x20\x0f\xeb\xac\xcc\x20\x2c\x51\xa8\x15\x38\xa8\x0a\x8d\xc1\xd2\xa5\x92\x48\x60\x51\x91\xcb\x35\x85\xaf\x2f\x51\xb1\x85\x33\xbf\x7a\xd4\xc6\x60\xc3\x0c\x66\xac\x5c\x0b\x35\x05\xd6\x52\x9d\x7d\xd3\xc6\xe8\xcd\x03\x93\x2d\xe6\x70\x30\xe3\xbc\xe3\x3b\xf0\xec\xb9\x7e\x47\x02\x06\x06\x2b\x34\xa8\x3a\xa2\xda\x11\x74\x79\x0e\x2d\x58\xd2\x06\x4b\x78\xea\xa0\x86\xb0\x8e\x97\xb3\xdc\x62\x05\xa7\xde\xb7\xe8\x3c\xd9\x0a\x8b\xa5\x43\x3d\x71\x0c\x62\xbe\xbf\x05\xd5\xa5\x61\x9b\x1c\x0e\x86\x79\xf8\x22\xce\xb2\x6e\x00\x53\x98\xf4\x49\x26\x55\xb8\x77\xd7\x79\xb2\xb7\xb7\x77\x7e\x0e\x0d\x53\x82\x67\xe9\x5c\xb7\xb2\x04\xa5\x09\x3c\xd6\x5b\xf6\x7a\xa3\xd0\x1c\x5a\x3f\x84\xfd\x34\x4f\x22\xea\x8e\xef\x0e\xea\x83\x53\xf7\x85\x3a\x0e\xc6\x3a\x29\xdc\x6f\xd6\x05\xcd\xb5\x94\xe8\x54\x71\x96\x45\x81\xdd\xe7\xab\x89\x22\x47\x87\xad\xf8\x3b\x8f\xfe\x93\x51\x1d\x25\xca\xa3\xd3\x3b\xe5\xef\x18\x9f\x74\x68\x5e\x66\xbe\x48\xe0\x03\xe0\xb8\x1f\xcc\x5a\x34\x14\x57\x10\xfa\x53\xac\x90\x7a\xd5\x64\xcc\xab\x7e\x0a\xa4\x73\xd8\x3f\x05\x25\xe4\x51\x14\xb4\x46\x6b\xd9\x0a\xa7\x90\x76\xea\xb7\x0d\x72\x51\x09\x2c\x81\xf9\x04\x20\xac\xa3\xcc\x02\xb5\xde\xbe\x0f\x73\xa6\xba\x0b\x8b\xaa\x8c\x68\xdb\x34\xf9\xd7\x89\xb1\x62\x83\x8c\xc2\x12\xb9\xdd\xfd\x50\xb3\x16\x65\x55\x0c\xcb\x04\x27\xc7\x83\x82\x8b\x4d\x9f\x30\x0b\x1b\xed\xff\xbe\xff\xfd\x7e\xe1\x33\xf2\x96\x70\xc7\xf2\x74\xc8\x06\xb9\x68\x04\x2a\x3a\xb4\xd0\xb4\x4b\x29\xf8\x50\xb7\x5e\xfe\x41\x1e\xaf\xce\xe0\x0d\xa7\x30\x6a\x31\xe9\xfc\x7f\x36\x73\x8c\x75\x8b\x1c\xc5\x13\x9a\xed\xf4\xce\xe8\x15\x3e\xb8\xc7\xea\xe6\xac\x61\x4b\x21\x05\x09\xb4\x83\xd4\xb7\xde\x97\x90\xfd\x75\x87\xc2\x27\xbe\xcc\x89\x9f\xd8\xb0\xce\x6f\x08\xf9\xf1\x7d\xb4\xbe\x3e\xe8\xfd\x5a\x7b\x6d\xb8\xf1\xa5\x71\xa7\x16\xd8\x68\x2b\xfc\x28\xc2\x30\x55\x90\x87\x50\x6f\x52\x99\x6d\x96\xa3\x96\x15\xa5\x4f\xd6\xbf\x48\x27\xc7\xb1\x70\x82\x28\x5e\x93\xbf\x01\x00\x00\xff\xff\x40\x01\x77\x1a\x94\x06\x00\x00" func lockedtokensAdminDeposit_locked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3937,7 +3937,7 @@ func lockedtokensAdminDeposit_locked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/deposit_locked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbc, 0x81, 0x88, 0x9a, 0xe4, 0x6, 0x5d, 0x7e, 0x3, 0x4, 0xee, 0x1c, 0xf5, 0xaf, 0xb1, 0x75, 0x9, 0x91, 0x78, 0x3d, 0xc7, 0x51, 0x59, 0x90, 0x85, 0xdc, 0x56, 0x1b, 0xd7, 0x2a, 0xac, 0xe4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa1, 0x13, 0x71, 0x2a, 0xe7, 0x43, 0x81, 0x6d, 0xb2, 0x51, 0x15, 0xb8, 0x4f, 0x3b, 0xb4, 0x15, 0xd4, 0xc5, 0xce, 0xf0, 0xc4, 0xf1, 0xff, 0x64, 0xd7, 0xe7, 0xe3, 0x27, 0x23, 0x5, 0xdd, 0x78}} return a, nil } @@ -3981,7 +3981,7 @@ func lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc() (*asset, error) { return a, nil } -var _lockedtokensDelegatorDelegate_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x6b\xdb\x40\x10\xbd\xeb\x57\x4c\x75\x28\x12\x34\x4a\x0f\xa5\x87\x60\x37\x24\xb1\x43\x21\xc1\x0e\x71\x9a\x9e\xd7\xd2\xc8\x16\x5e\x6b\xc4\xee\xa8\x76\x31\xfe\xef\x65\x3f\x24\x4b\x32\xfd\xa2\x54\x97\x45\x3b\x33\x6f\xde\x9b\x37\x5b\x6c\x2b\x52\x0c\xf7\x92\x76\x2f\xb4\xc1\x12\x72\x45\x5b\x08\xdb\xff\x30\x68\x32\xea\x72\x55\x2c\x25\xf6\xb2\xba\x77\x6d\xe6\x23\xa5\x1b\xcc\xec\x9d\x76\x89\xef\xf7\x8f\xf3\xbb\x87\xe9\xe4\x65\xfe\x30\x9d\xdd\x4c\x26\xcf\xd3\xc5\x22\x08\x58\x89\x52\x8b\x94\x0b\x2a\x23\xb1\xa5\xba\xe4\x2b\xf8\x72\x5f\xec\x3f\x7e\x88\xe1\x10\x04\x00\x00\x12\x19\xd6\x24\x33\x54\xcf\x98\x5f\x81\xa8\x79\x1d\x75\xe1\x13\x7b\xcc\x2b\x54\xc2\xc0\xe8\x77\x7d\x9a\xc9\xd7\x82\xd7\x99\x12\x3b\xb1\x94\x18\xc3\xdb\xf3\xd2\xcf\x16\xfc\xd4\xec\x9b\xa8\x25\x9f\x7a\xfd\x12\xad\x9d\x51\xf2\x6a\xaa\x1c\x48\xa5\xb0\x12\x0a\x23\x91\xa6\x4e\x91\xc5\xb9\x25\xa5\x68\xf7\x2a\x64\x6d\x0a\x6f\x5c\xcc\xa8\x04\xff\x69\x94\x79\xd2\x2a\x85\x31\xf8\xfa\x44\x33\x29\xb1\xc2\x64\x69\x11\x46\xff\x6b\x02\x9f\x22\x63\xd4\x15\xfc\x2c\xbe\x70\x34\x9e\x04\xaf\xe3\x96\xb4\xf9\xae\xaf\xa1\x12\x65\x91\x46\xe1\x1d\xd5\x32\x83\x92\x18\x1c\x57\x50\x98\xa3\xc2\x32\x45\x60\x82\x0e\x56\x18\x07\x7d\xdd\xcd\xd0\x7f\x23\xfb\x6f\xcc\x68\xf4\x5c\x7a\xa0\xcb\xbc\x89\xdb\xf0\x1f\x6b\x30\x65\xc0\x76\xe5\x2d\xcb\x93\xa8\xd0\x61\x1c\x9d\x16\xdc\x63\x5a\x33\x76\x1c\x35\xdb\xa4\x59\x6c\x50\x3d\x29\xda\x7f\x87\xf1\xc0\x63\x2f\x6d\x82\x12\x57\x82\x49\x45\x9d\xa9\x98\x5a\x69\x9d\xb8\x15\x52\x98\x09\x9e\x55\xaf\x90\x9d\x57\x7e\x99\x7c\x62\x17\xa5\xc8\xc1\x3d\x2b\x18\x8d\x07\x70\x87\xa0\x37\x80\x0e\xcf\x24\x73\x84\x70\x86\x6e\x5e\xba\x7d\x9b\xee\xec\x34\x38\x02\x4a\x8d\xa6\x4f\xe4\x93\xe0\xa2\xdf\x28\x36\xad\x7b\x1e\x27\xcb\x26\x32\xe4\xd0\xd7\x97\x61\x45\xba\x60\x6f\xe3\xe8\xa2\x0f\xb2\xf3\xe6\x0f\xb8\x9d\xb5\x8f\xff\x45\xe7\x40\xe6\xa1\x07\xe5\x17\x66\x46\x0c\x58\x52\xbd\x5a\xbb\x2d\xd1\x66\xd7\x6d\x9b\x37\x61\x07\xc1\xaf\xca\x31\xf8\x11\x00\x00\xff\xff\x0d\x24\x14\xe2\x6f\x05\x00\x00" +var _lockedtokensDelegatorDelegate_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x6b\xdb\x40\x10\xbd\xeb\x57\x4c\x75\x08\x12\x34\x4a\x0f\xa5\x07\x63\x37\x24\xb1\x43\x21\xc1\x0e\x71\x9a\x9e\xd7\xd2\xc8\x16\x5e\x6b\xc4\xee\xa8\x76\x31\xfe\xef\x65\x3f\x2c\x4b\x32\xa1\x81\x12\x5d\x16\xed\xcc\xbc\x79\x6f\xde\x6c\xb1\xa9\x48\x31\xdc\x4b\xda\xbe\xd0\x1a\x4b\xc8\x15\x6d\x20\x6c\xfe\xc3\xe0\x98\x51\x97\xcb\x62\x21\xb1\x93\xd5\xbe\x6b\x32\x1f\x29\x5d\x63\x66\xef\xb4\x4b\xfc\xb2\x7b\x9c\xdd\x3d\x4c\xc6\x2f\xb3\x87\xc9\xf4\x66\x3c\x7e\x9e\xcc\xe7\x41\xc0\x4a\x94\x5a\xa4\x5c\x50\x19\x89\x0d\xd5\x25\x0f\xe0\xe7\x7d\xb1\xfb\xf6\x35\x86\x7d\x10\x00\x00\x48\x64\x58\x91\xcc\x50\x3d\x63\x3e\x00\x51\xf3\x2a\x6a\xc3\x27\xf6\x98\x55\xa8\x84\x81\xd1\x9f\xbb\x34\x93\x5f\x05\xaf\x32\x25\xb6\x31\x5c\x9c\x97\xfd\xb0\xc0\xa7\x46\xbf\x45\x2d\xf9\xd4\xe7\x4d\xa4\x66\x36\xc9\xab\xa9\x70\x00\x95\xc2\x4a\x28\x8c\x44\x9a\x3a\x25\x16\xe3\x96\x94\xa2\xed\xab\x90\x35\xc6\x70\x71\xe3\x62\x46\x1d\xf8\x4f\xa3\xcc\x93\x46\x21\x8c\xc0\xd7\x27\x9a\x49\x89\x25\x26\x0b\x8b\x30\xfc\x08\xe5\xdf\x23\x63\xce\x00\xde\x8a\xcf\x1d\x85\x27\xc1\xab\xb8\x21\x6c\xbe\xeb\x6b\xa8\x44\x59\xa4\x51\x78\x47\xb5\xcc\xa0\x24\x06\xc7\x13\x14\xe6\xa8\xb0\x4c\x11\x98\xa0\x85\x15\xc6\x41\x57\xf3\x71\xd8\xff\x90\xfc\x5e\x13\x8e\x5a\xae\x3c\xc8\x55\x7e\x8c\xdb\xf0\xbb\xf9\x9b\x32\x60\xbb\xe2\x96\xe1\x49\x50\xe8\x30\x0e\x4e\x07\xee\x30\xad\x19\x5b\x4e\x9a\x0d\xd2\x2c\xd6\xa8\x9e\x14\xed\xfe\xc0\xa8\xe7\xad\x97\x35\x46\x89\x4b\xc1\xa4\xa2\xd6\x44\x4c\xad\xb4\x2e\xdc\x0a\x29\xcc\xf4\xce\xaa\x97\xc8\xce\x27\xbf\x44\x3e\xb1\x8d\x52\xe4\xe0\x9e\x11\x0c\x47\x3d\xb8\x7d\xd0\x19\x40\x8b\x67\x92\x39\x42\x38\x45\x37\x2f\xdd\xbc\x45\x77\xb6\x1a\x1c\x00\xa5\x46\xd3\x27\xf2\x49\x70\xd9\x6d\x14\x9b\xd6\x1d\x7f\x93\xc5\x31\xd2\xe7\xd0\xd5\x97\x61\x45\xba\x60\x6f\xe3\xf0\xb2\x0b\xb2\xf5\xc6\xf7\xb8\x9d\xb5\x8f\xff\x47\x67\x4f\xe6\xbe\x03\xe5\x17\x66\x4a\x0c\x58\x52\xbd\x5c\xb9\x2d\xd1\x66\xcf\x6d\x9b\x4f\x61\x0b\xc1\xaf\xca\x21\xf8\x1b\x00\x00\xff\xff\x09\xf5\xc3\x5d\x5f\x05\x00\x00" func lockedtokensDelegatorDelegate_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3997,11 +3997,11 @@ func lockedtokensDelegatorDelegate_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x60, 0x11, 0xf, 0x4a, 0x79, 0x7f, 0x98, 0x58, 0xf8, 0xf1, 0xee, 0xf9, 0x5, 0xb5, 0xa1, 0x79, 0xee, 0x1e, 0x65, 0x76, 0xf5, 0x2a, 0xc4, 0x5a, 0x51, 0x1a, 0xa8, 0x81, 0x77, 0xb0, 0x92, 0x93}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x67, 0xb2, 0xbe, 0xab, 0x4b, 0x30, 0x88, 0x7, 0xe1, 0x1f, 0x8b, 0x7b, 0x65, 0x4c, 0x54, 0x90, 0x6, 0xcc, 0x7, 0x2a, 0xe1, 0x2d, 0xc9, 0x63, 0x4d, 0x41, 0xdc, 0xe4, 0x55, 0xbd, 0x56, 0x4c}} return a, nil } -var _lockedtokensDelegatorDelegate_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x41\x6f\xb2\x40\x10\xbd\xf3\x2b\x26\x1c\xbe\x60\xf2\x85\xf4\xd0\xf4\x60\x6a\x8d\x2d\x9a\x26\x1a\x35\x6a\xdb\xf3\xc8\x0e\xb2\x11\x77\xc9\xee\x50\x69\x1a\xff\x7b\x03\x2b\x28\x35\xe5\x32\x0c\xf3\xe6\xbd\x37\x2f\xc8\x43\xae\x0d\xc3\x4c\xc7\x7b\x12\x1b\xbd\x27\x65\x21\x31\xfa\x00\x77\xe5\x6c\xf1\x32\x1d\x47\x9b\xc5\x74\x3c\x1f\x45\xd1\x6a\xbc\x5e\x7b\x67\xf4\xa4\x50\x3b\xb9\xcd\xa8\xc6\x3b\xb8\xdf\xf9\xe6\x7b\x1e\x1b\x54\x16\x63\x96\x5a\x05\x78\xd0\x85\xe2\x3e\xbc\x4d\x64\xf9\x70\xdf\x83\x6f\x0f\x00\x20\x23\x06\xa5\x05\x45\x94\xd1\x0e\x59\x9b\xa5\xd1\xe5\x57\xbf\xe3\x25\x74\xcd\xfc\x06\xe6\xd5\x14\xb9\xa1\x1c\x0d\x05\x18\xc7\x4e\x01\x0b\x4e\x83\x67\x6d\x8c\x3e\xbe\x63\x56\x50\x0f\xfe\x8d\xdc\xac\x51\x6d\x94\x53\x9d\x09\x32\x2b\x4a\x60\x00\xe7\xf5\xd0\xb2\x36\xb8\xa3\x70\x5b\x13\x3c\xd6\x64\x1d\x37\x75\x59\xe4\x64\xb0\xba\xcb\xfe\xef\x26\x11\x7e\x48\x4e\x85\xc1\x23\x6e\xb3\x4a\xf9\x76\xf5\xb5\x16\x7d\x0a\xaa\xc8\x7e\x1d\x7a\x35\x5f\x3b\x1b\x4b\xe4\xb4\xd7\x7a\xae\x9e\xe1\x10\x72\x54\x32\x0e\xfc\x2b\x34\x48\x0b\x4a\x33\x58\xfc\x24\x01\xc8\x60\x73\x8a\x65\x22\x49\x40\x8e\x9c\xfa\x17\x8a\xf6\xc5\x52\x96\x84\xb7\xd1\xc3\xe0\x92\xca\x39\x83\x16\x10\x38\x9a\x93\xcb\x9d\x4a\x8a\x0b\xa6\xab\x48\xff\xa0\x0c\x85\x6b\x69\x45\x47\x34\xa2\xb9\xb6\xfd\x23\x5c\x6d\xb8\x4f\xde\x4f\x00\x00\x00\xff\xff\x58\xe4\xc7\x50\x8f\x02\x00\x00" +var _lockedtokensDelegatorDelegate_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4f\x6f\xaa\x40\x10\xbf\xf3\x29\x26\x1c\x0c\x24\x2f\xe4\x1d\x5e\xde\xc1\xd4\x1a\x5b\x34\x4d\x34\x6a\xd4\xb6\xe7\x91\x1d\x64\x23\xee\x92\xdd\xa1\xd2\x34\x7e\xf7\x46\x56\x50\x6a\xca\x65\x59\xe6\x37\xbf\x7f\x41\x1e\x0a\x6d\x18\x66\x3a\xd9\x93\xd8\xe8\x3d\x29\x0b\xa9\xd1\x07\xf8\x5b\xcd\x16\xcf\xd3\x71\xbc\x59\x4c\xc7\xf3\x51\x1c\xaf\xc6\xeb\xb5\x77\x41\x4f\x4a\xb5\x93\xdb\x9c\x6a\xbc\x83\xfb\x9d\x6f\xbe\xe7\xb1\x41\x65\x31\x61\xa9\x55\x80\x07\x5d\x2a\xee\xc3\xeb\x44\x56\xff\xff\x85\xf0\xe5\x01\x00\xe4\xc4\xa0\xb4\xa0\x98\x72\xda\x21\x6b\xb3\x34\xba\xfa\xec\x77\xbc\x44\xee\x32\xbf\x83\x79\x35\x45\x61\xa8\x40\x43\x01\x26\x89\x53\xc0\x92\xb3\xe0\x49\x1b\xa3\x8f\x6f\x98\x97\x14\x42\x6f\xe4\x66\x8d\x6a\xa3\x9c\xe9\x5c\x90\x59\x51\x0a\x03\xb8\xac\x47\x96\xb5\xc1\x1d\x45\xdb\x9a\xe0\xa1\x26\xeb\xb8\xa9\x8f\x45\x41\x06\xcf\xb9\xec\x9f\x6e\x13\xd1\xbb\xe4\x4c\x18\x3c\x86\xd0\xbb\x5f\x7b\xa9\x05\x1f\x83\x73\x5d\x3f\x42\xde\xcc\xd7\xce\xc2\x12\x39\x0b\x5b\xbf\xe7\x67\x38\x84\x02\x95\x4c\x02\xff\x06\x0d\xd2\x82\xd2\x0c\x16\x3f\x48\x00\x32\xd8\x82\x12\x99\x4a\x12\x50\x20\x67\xfe\x95\xa2\x7d\xb1\x94\xa7\xd1\x7d\xed\x30\xb8\x36\x72\xc9\xdf\x02\x02\x47\x73\x72\x9d\x53\x45\x49\xc9\x74\x53\xe7\x2f\x94\x91\x70\x57\x5a\xd1\x11\x8d\x68\xd2\xb6\x7f\x83\x3b\x1b\xee\x93\xf7\x1d\x00\x00\xff\xff\x9c\xb1\x39\xe2\x8b\x02\x00\x00" func lockedtokensDelegatorDelegate_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4017,11 +4017,11 @@ func lockedtokensDelegatorDelegate_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xbb, 0x43, 0xc3, 0xad, 0xef, 0xab, 0xce, 0xd1, 0x1d, 0x88, 0x31, 0x6d, 0xed, 0xb2, 0x80, 0x59, 0xae, 0x2, 0xb0, 0xd8, 0xb4, 0x99, 0xce, 0x2e, 0xbc, 0xce, 0x6d, 0x8f, 0xa9, 0x3a, 0x4a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x63, 0x33, 0x99, 0xe7, 0xa8, 0xae, 0x8e, 0x11, 0xea, 0xd3, 0xc3, 0x47, 0xb3, 0xf0, 0xf7, 0x21, 0x46, 0x9b, 0x23, 0x4f, 0x70, 0x5c, 0x14, 0x35, 0x81, 0x9e, 0x59, 0x34, 0x5f, 0xa0, 0x41, 0xe4}} return a, nil } -var _lockedtokensDelegatorDelegate_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4d\x6b\xf2\x40\x10\xbe\xe7\x57\x0c\x39\xbc\x24\xf0\x12\x7a\x28\x3d\x48\xad\xd8\x46\x29\x28\x2a\x7e\xb4\xe7\x31\x99\x98\xc5\xb8\xbb\xec\x4e\x6a\x4a\xf1\xbf\x97\x64\x35\x35\x95\xe6\xb2\x6c\xe6\x99\xe7\x8b\x15\x07\xad\x0c\xc3\x54\x25\x7b\x4a\xd7\x6a\x4f\xd2\x42\x66\xd4\x01\xee\xaa\xe9\xfc\x65\x32\x8a\xd7\xf3\xc9\x68\x36\x8c\xe3\xe5\x68\xb5\xf2\xce\xe8\x71\x29\x77\x62\x5b\x50\x83\x77\x70\xbf\xf3\xcf\xf7\x3c\x36\x28\x2d\x26\x2c\x94\x0c\xf0\xa0\x4a\xc9\x3d\xd8\x8c\x45\xf5\x70\x1f\xc2\x97\x07\x00\x50\x10\x83\x54\x29\xc5\x54\xd0\x0e\x59\x99\x85\x51\xd5\x67\xaf\xe3\x25\x72\x97\xd9\x0d\xcc\x6b\x28\xb4\x21\x8d\x86\x02\x4c\x12\xa7\x80\x25\xe7\xc1\xb3\x32\x46\x1d\xdf\xb0\x28\x29\x84\x7f\x43\x37\xbb\xa8\x5e\x94\x73\x55\xa4\x64\x96\x94\x41\x1f\xce\xeb\x91\x65\x65\x70\x47\xd1\xb6\x21\x78\x6c\xc8\x3a\x6e\x9a\x63\xae\xc9\x60\x9d\xcb\xfe\xef\x36\x11\xbd\x0b\xce\x53\x83\x47\xdc\x16\xb5\xf2\xed\xea\x6b\x23\xfa\x14\xd4\x95\xfd\x0a\x7a\x35\x5f\x39\x1b\x0b\xe4\x3c\x6c\x3d\xd7\xdf\x60\x00\x1a\xa5\x48\x02\xff\x0a\x0d\xc2\x82\x54\x0c\x16\x3f\x28\x05\x64\xb0\x9a\x12\x91\x09\x4a\x41\x23\xe7\x7e\xe8\xb5\x1c\x96\x8a\x2c\xba\xad\x1c\xfa\x3f\x6d\x9c\xb3\xb7\x80\xc0\x39\x38\x39\x12\xaa\x28\x29\x99\xae\xaa\xfc\x83\x32\x4a\xdd\x95\x36\xd2\x32\xb6\x29\xdb\x97\xe0\xce\x0b\xf7\xc9\xfb\x0e\x00\x00\xff\xff\x36\x20\x90\x15\x87\x02\x00\x00" +var _lockedtokensDelegatorDelegate_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xcd\x6a\xc2\x40\x10\xbe\xe7\x29\x86\x1c\x24\x81\x12\x7a\x28\x3d\x48\xad\xd8\x46\x29\x28\x2a\xfe\xb4\xe7\x31\x99\x98\xc5\xb8\xbb\xec\x4e\x6a\x4a\xf1\xdd\x8b\x59\x4d\x4d\xa5\xb9\x2c\x9b\xf9\xe6\xfb\x63\xc5\x5e\x2b\xc3\x30\x51\xc9\x8e\xd2\x95\xda\x91\xb4\x90\x19\xb5\x87\xfb\x6a\x32\x7b\x1d\x0f\xe3\xd5\x6c\x3c\x9c\x0e\xe2\x78\x31\x5c\x2e\xbd\x33\x7a\x54\xca\xad\xd8\x14\x54\xe3\x1d\xdc\x6f\xfd\xf3\x3d\x8f\x0d\x4a\x8b\x09\x0b\x25\x03\xdc\xab\x52\x72\x17\xd6\x23\x51\x3d\x3e\x84\xf0\xed\x01\x00\x14\xc4\x20\x55\x4a\x31\x15\xb4\x45\x56\x66\x6e\x54\xf5\xd5\x6d\x79\x89\xdc\x65\x7a\x03\xf3\x6a\x0a\x6d\x48\xa3\xa1\x00\x93\xc4\x29\x60\xc9\x79\xf0\xa2\x8c\x51\x87\x77\x2c\x4a\x0a\xa1\x33\x70\xb3\x8b\xea\x45\x39\x57\x45\x4a\x66\x41\x19\xf4\xe0\xbc\x1e\x59\x56\x06\xb7\x14\x6d\x6a\x82\xa7\x9a\xac\xe5\xa6\x3e\x66\x9a\x0c\x9e\x72\xd9\xbb\x76\x13\xd1\x87\xe0\x3c\x35\x78\x08\xa1\x73\xbb\xf6\x56\x0b\x3e\x07\xa7\xba\xfe\x84\xbc\x9a\x2f\x9d\x85\x39\x72\x1e\x36\x7e\x4f\x5f\xbf\x0f\x1a\xa5\x48\x02\xff\x0a\x0d\xc2\x82\x54\x0c\x16\x3f\x29\x05\x64\xb0\x9a\x12\x91\x09\x4a\x41\x23\xe7\x7e\xe8\x35\x1c\x96\x8a\x2c\xba\xad\x1b\x7a\xbf\x4d\x9c\x73\x37\x80\xc0\x39\x38\x3a\x12\xaa\x28\x29\x99\xae\x6a\xfc\x87\x32\x4a\xdd\x95\xd6\xd2\x32\x36\x29\x9b\x57\xe0\xce\x0b\xf7\xd1\xfb\x09\x00\x00\xff\xff\xab\x8a\x9f\x89\x83\x02\x00\x00" func lockedtokensDelegatorDelegate_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4037,7 +4037,7 @@ func lockedtokensDelegatorDelegate_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x94, 0x5c, 0x74, 0x66, 0x16, 0x8b, 0xed, 0xa0, 0xd8, 0xf2, 0x96, 0xe8, 0x1c, 0xcb, 0x4a, 0xb4, 0xc3, 0x9e, 0xae, 0x5d, 0xbe, 0xbd, 0xcd, 0x85, 0xd1, 0xfa, 0xba, 0xd9, 0x64, 0xf0, 0x94, 0x26}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x90, 0x57, 0xfc, 0xc5, 0x7f, 0xca, 0x8f, 0x47, 0xe, 0x13, 0xf5, 0x3a, 0x1b, 0x8c, 0x9, 0x4e, 0x4d, 0xc8, 0x33, 0xff, 0x39, 0x98, 0xa2, 0x80, 0x25, 0xbe, 0x1, 0x79, 0x4c, 0x2f, 0xd9, 0xfc}} return a, nil } @@ -4101,7 +4101,7 @@ func lockedtokensDelegatorGet_delegator_node_idCdc() (*asset, error) { return a, nil } -var _lockedtokensDelegatorRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x54\xc1\x4e\xdb\x40\x10\xbd\xfb\x2b\xa6\x3e\x54\xb6\x04\xa6\x87\xaa\x87\x08\x8a\x80\x80\x8a\xa0\x01\x11\x4a\xcf\x1b\xef\xd8\x59\x65\xbd\xeb\xee\x8e\x49\x2a\x94\x7f\xaf\xd6\xbb\x71\xec\xa4\x50\xf5\xd0\x53\x7d\x89\xe2\x99\x79\xf3\xde\x9b\x19\x8b\xaa\xd6\x86\xe0\x4a\xea\xe5\xa3\x5e\xa0\x82\xc2\xe8\x0a\xe2\xee\x7f\x1c\x85\x8c\x5b\x9d\x2f\x90\xb7\xef\xac\x4f\xfa\xb0\xba\xbd\xbb\xb8\xb9\x1c\x3f\xde\xdd\x5c\x4e\xce\xc6\xe3\x87\xcb\xe9\x34\xea\xe1\x5d\x8f\x1f\xd9\x4c\xe2\x94\xd8\x42\xa8\xb2\x07\x3c\x0c\x74\x1d\xae\x1a\x55\x8a\x99\xc4\x01\x8f\xfe\xbb\x38\x8a\xc8\x30\x65\x59\x4e\x42\xab\x44\xf0\x11\x4c\xc9\x08\x55\x1e\x00\xab\x74\xa3\x68\x04\xdf\xae\xc4\xea\xd3\xc7\x14\x5e\xa2\x08\x00\x40\x22\xc1\x5c\x4b\x8e\xe6\x01\x8b\x11\xb0\x86\xe6\x49\x5f\x48\xd6\xfe\xdc\xd5\x68\x98\x83\xb4\x07\x43\x12\xd9\x77\x41\x73\x6e\xd8\xd2\xd1\x4d\xe1\xfd\x7e\xe9\x97\x16\x7c\xdb\xec\x99\x35\x92\xb6\xbd\xde\x44\xeb\x3c\xce\x9e\x5c\x95\x07\xa9\x0d\xd6\xcc\x60\xc2\xf2\xdc\x2b\x6a\x71\xce\xb5\x31\x7a\xf9\xc4\x64\xe3\x0a\xcf\x7c\xcc\xa9\x84\xf0\x58\x94\x45\xd6\x29\x85\x13\x08\xf5\x99\x25\x6d\x58\x89\xd9\xac\x45\x38\xfe\x57\x0e\x7c\x4e\xdc\xbc\x46\xf0\x5a\x7c\xea\x69\xdc\x33\x9a\xa7\x1d\x69\xf7\x9c\x9e\x42\xcd\x94\xc8\x93\xb8\x97\x0d\xc2\x82\xd2\x04\x96\x3d\x23\x07\x46\x60\x6b\xcc\x45\x21\x90\x43\xcd\x68\x1e\xa7\xd1\x50\xf8\xc6\xf5\x3f\xe8\xfe\x9b\x69\x6c\x04\x1d\x05\xa0\xa3\x62\x13\x6f\xc3\xaf\x89\xb8\xd0\x8d\xe4\x2d\x77\xdf\x18\x5c\x19\x50\xbb\xd1\x2d\x4b\x30\x58\xa0\x41\x95\x63\xec\x31\xd6\x5e\x0b\xae\x30\x6f\x08\x7b\x23\x75\xeb\x24\x5b\x3b\xcf\x99\x64\x2a\x47\x38\xd9\x19\x73\x56\x22\x79\xc3\xc3\x46\x84\xc4\xa4\xe7\x8f\x28\xc2\x6d\xc0\xf1\xc9\x0e\xdc\x4b\x34\x10\xb1\x83\x9d\x1b\x64\x84\x13\xcd\x71\x8c\x12\x4b\x46\xda\x24\x4a\x73\xbc\x1e\x8f\x40\xf0\x74\x58\xeb\xb8\x5a\x62\x0b\x34\xf7\x46\xaf\x7e\xee\x33\xf5\x6e\x6c\x91\x76\xea\x7b\xb5\x19\xf7\x49\x38\x41\xef\xb7\x4d\x36\xc7\x1d\x84\x1c\xfe\xe6\xeb\xe2\xac\xe8\xd0\xbf\x0a\x25\xaa\xa6\x72\x21\x7c\xc0\x1f\x8d\x30\x58\xa1\xa2\x24\xed\x75\x5d\x03\x4a\x8b\xce\x9e\x24\xe9\x70\x07\xfe\xa4\xce\xb1\xc1\x7a\x65\xb3\x4d\xe4\x6d\xeb\x38\xd6\xda\x0a\x0a\x1b\x74\x7c\x38\x04\x59\x86\xbd\xdb\x97\x35\x6c\xbf\x6b\xd1\xff\x38\x9e\x97\x01\x8d\x70\x63\x13\x4d\x80\x4a\x37\xe5\xdc\x1f\x96\x05\xd2\x9e\xe2\xbb\x78\x7b\x97\xeb\x70\x5d\xeb\xe8\x57\x00\x00\x00\xff\xff\x6c\x80\xd8\x6f\xe3\x06\x00\x00" +var _lockedtokensDelegatorRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x54\xc1\x4e\xdb\x40\x10\xbd\xfb\x2b\xa6\x3e\x20\x5b\x02\xd3\x43\xd5\x43\x04\x45\x40\x40\x45\xd0\x80\x08\xa5\xe7\x8d\x77\xec\xac\xb2\xde\x75\x77\xc7\x24\x15\xca\xbf\x57\xeb\xdd\x38\x76\x68\xda\x5e\x7a\xaa\x2f\x51\x3c\x33\x6f\xde\x7b\x33\x63\x51\xd5\xda\x10\x5c\x4b\xbd\x7c\xd2\x0b\x54\x50\x18\x5d\x41\xdc\xfd\x8f\xa3\x90\x71\xa7\xf3\x05\xf2\xf6\x9d\xf5\x49\xef\x57\x77\xf7\x97\xb7\x57\xe3\xa7\xfb\xdb\xab\xc9\xf9\x78\xfc\x78\x35\x9d\x46\x3d\xbc\x9b\xf1\x13\x9b\x49\x9c\x12\x5b\x08\x55\xf6\x80\x87\x81\xae\xc3\x75\xa3\x4a\x31\x93\x38\xe0\xd1\x7f\x17\x47\x11\x19\xa6\x2c\xcb\x49\x68\x95\x08\x3e\x82\x29\x19\xa1\xca\x43\x60\x95\x6e\x14\x8d\xe0\xeb\xb5\x58\x7d\xfc\x90\xc2\x6b\x14\x01\x00\x48\x24\x98\x6b\xc9\xd1\x3c\x62\x31\x02\xd6\xd0\x3c\xe9\x0b\xc9\xda\x9f\xfb\x1a\x0d\x73\x90\xf6\x70\x48\x22\xfb\x26\x68\xce\x0d\x5b\xa6\x70\xf0\xb6\xec\x73\x0b\xbc\x6d\xf4\xc2\x1a\x49\xdb\x3e\x7b\x91\x3a\x6f\xb3\x67\x57\xe1\x01\x6a\x83\x35\x33\x98\xb0\x3c\xf7\x4a\x5a\x8c\x0b\x6d\x8c\x5e\x3e\x33\xd9\x60\x0a\x07\xe7\x3e\xe6\xd4\x41\x78\x2c\xca\x22\xeb\x14\xc2\x29\x84\xfa\xcc\x92\x36\xac\xc4\x6c\xd6\x22\x9c\xfc\x0b\xe5\x9f\x12\x37\xa3\x11\xec\x8b\x4f\x3d\x85\x07\x46\xf3\xb4\x23\xec\x9e\xb3\x33\xa8\x99\x12\x79\x12\xf7\xb2\x41\x58\x50\x9a\xc0\xb2\x17\xe4\xc0\x08\x6c\x8d\xb9\x28\x04\x72\xa8\x19\xcd\xe3\x34\x1a\x8a\xde\xb8\xfd\x07\xcd\x7f\x3b\x85\x8d\x98\xe3\x00\x72\x5c\x6c\xe2\x6d\x78\x9f\x80\x4b\xdd\x48\xde\xf2\xf6\x4d\xc1\x95\x01\xb5\x1b\xdc\x32\x04\x83\x05\x1a\x54\x39\xc6\x1e\x63\xed\x75\xe0\x0a\xf3\x86\xb0\x37\x4a\xb7\x42\xb2\xb5\xf2\x82\x49\xa6\x72\x84\xd3\x9d\xf1\x66\x25\x92\x37\x3b\x6c\x42\x48\x4c\x7a\xde\x88\x22\xdc\x02\x9c\x9c\xee\xc0\xbd\x46\x03\x11\x3b\xd8\xb9\x41\x46\x38\xd1\x1c\xc7\x28\xb1\x64\xa4\x4d\xa2\x34\xc7\x9b\xf1\x08\x04\x4f\x87\xb5\x8e\xab\x25\xb6\x40\xf3\x60\xf4\xea\xc7\x5b\xa6\xde\x8d\x2d\xd2\x4e\x7d\xaf\x36\xe3\x3e\x09\x27\xe8\xfd\xb6\xc9\xe6\x98\x83\x90\xa3\x5f\x7c\x4d\x9c\x15\x1d\xfa\x17\xa1\x44\xd5\x54\x2e\x84\x8f\xf8\xbd\x11\x06\x2b\x54\x94\xa4\xbd\xae\x6b\x40\x69\xd1\xd9\x93\x24\x1d\xee\xc0\x9f\xd4\x39\x36\x58\xad\x6c\xb6\x89\xfc\xde\x3a\x8e\xb5\xb6\x82\xc2\x06\x9d\x1c\x0d\x41\x96\x61\xe7\xde\xca\x1a\xb6\xdf\xb5\xe8\x7f\x1c\xcf\xeb\x80\x46\xb8\xb1\x89\x26\x40\xa5\x9b\x72\xee\x0f\xcb\x02\x69\x4f\xf1\x5d\xbc\xbd\xcb\x75\xb8\xae\x75\xf4\x33\x00\x00\xff\xff\x85\x44\x9f\x77\xd3\x06\x00\x00" func lockedtokensDelegatorRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -4117,11 +4117,11 @@ func lockedtokensDelegatorRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0xe1, 0xe9, 0x2b, 0x3d, 0x53, 0x87, 0xf4, 0x3c, 0xa4, 0x29, 0xc0, 0xb2, 0x38, 0xbf, 0x8, 0xda, 0xb5, 0x8f, 0xb7, 0xcc, 0xed, 0xc9, 0xc1, 0x91, 0x92, 0xca, 0x95, 0x2d, 0x5, 0xe8, 0x15}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0x62, 0x94, 0xf, 0x13, 0x9b, 0x8e, 0x1e, 0x50, 0xd5, 0xb6, 0x1a, 0x70, 0xa8, 0x5f, 0x6c, 0x9f, 0xf0, 0x91, 0xb0, 0xc2, 0x1, 0x3c, 0x91, 0x81, 0xd3, 0x2f, 0x42, 0xa4, 0xa1, 0x2d, 0x30}} return a, nil } -var _lockedtokensDelegatorRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4d\x6f\xe2\x30\x10\xbd\xe7\x57\x8c\x72\x58\x05\x69\x15\xed\x61\xb5\x07\xb4\x14\xd1\x06\x54\x09\x04\x88\x8f\xf6\x3c\x24\x93\xc4\x22\xd8\xae\x3d\x29\xa9\x2a\xfe\x7b\x95\x18\x02\x29\x6a\x2e\x13\x7b\xde\xbc\xf7\xe6\xc9\xe2\xa0\x95\x61\x98\xa9\x78\x4f\xc9\x46\xed\x49\x5a\x48\x8d\x3a\xc0\x9f\x6a\xb6\x78\x9a\x8e\xa3\xcd\x62\x3a\x9e\x8f\xa2\x68\x35\x5e\xaf\xbd\x33\x7a\x52\xca\x4c\xec\x0a\x6a\xf0\x0e\xee\x77\xee\x7c\xcf\x63\x83\xd2\x62\xcc\x42\xc9\x00\x0f\xaa\x94\xdc\x87\xed\x44\x54\xff\xfe\xf6\xe0\xd3\x03\x00\x28\x88\x41\xaa\x84\x22\x2a\x28\x43\x56\x66\x69\x54\xf5\xd1\xef\x78\x09\xdd\x61\x7e\x07\xf3\x1a\x0a\x6d\x48\xa3\xa1\x00\xe3\xd8\x29\x60\xc9\x79\xf0\xa8\x8c\x51\xc7\x17\x2c\x4a\xea\xc1\xaf\x91\xeb\x5d\x54\x2f\xca\xb9\x2a\x12\x32\x2b\x4a\x61\x00\xe7\xf1\xd0\xb2\x32\x98\x51\xb8\x6b\x08\xfe\x37\x64\x1d\x37\x4d\x59\x68\x32\x58\xef\x65\x7f\x77\x93\x08\x5f\x05\xe7\x89\xc1\x23\xee\x8a\x5a\xf9\x7e\xf4\xb9\x11\x7d\x08\xea\xc8\xbe\x2d\x7a\xd3\x5f\x3b\x1b\x4b\xe4\xbc\xd7\x7a\xae\xbf\xe1\x10\x34\x4a\x11\x07\xfe\x0d\x1a\x84\x05\xa9\x18\x2c\xbe\x53\x02\xc8\x60\x35\xc5\x22\x15\x94\x80\x46\xce\xfd\x2b\x45\xfb\x63\xa9\x48\xc3\xfb\xe8\x61\x70\x4d\xe5\x9c\x41\x0b\x08\x1c\xcd\xc9\xe5\x4e\x15\xc5\x25\xd3\x4d\xa4\x3f\x50\x86\x86\xde\x4a\xb2\xbc\x95\x96\x71\x2f\x64\xd6\xbe\x05\x57\x2f\xac\x27\xef\x2b\x00\x00\xff\xff\x13\x10\x51\x67\x89\x02\x00\x00" +var _lockedtokensDelegatorRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4d\x6f\x82\x40\x10\xbd\xf3\x2b\x26\x1c\x0c\x24\x0d\xe9\xa1\xe9\xc1\xd4\x1a\x5b\x34\x4d\x34\x6a\xfc\x68\xcf\x23\x0c\xb0\x11\x77\xe9\xee\x50\x69\x1a\xff\x7b\x23\xab\x28\x35\xe5\x32\xec\xce\x9b\xf7\xde\xbc\xac\xd8\x15\x4a\x33\x4c\x54\xb4\xa5\x78\xa5\xb6\x24\x0d\x24\x5a\xed\xe0\xbe\x9a\xcc\x5e\xc7\xc3\x70\x35\x1b\x0f\xa7\x83\x30\x5c\x0c\x97\x4b\xe7\x84\x1e\x95\x32\x15\x9b\x9c\x6a\xbc\x85\xbb\xad\x3b\xd7\x71\x58\xa3\x34\x18\xb1\x50\xd2\xc3\x9d\x2a\x25\x77\x61\x3d\x12\xd5\xe3\x83\x0f\x3f\x0e\x00\x40\x4e\x0c\x52\xc5\x14\x52\x4e\x29\xb2\xd2\x73\xad\xaa\xef\x6e\xcb\x4b\x60\x0f\xd3\x1b\x98\x53\x53\x14\x9a\x0a\xd4\xe4\x61\x14\x59\x05\x2c\x39\xf3\x5e\x94\xd6\x6a\xff\x8e\x79\x49\x3e\x74\x06\xb6\x77\x56\x3d\x2b\x67\x2a\x8f\x49\x2f\x28\x81\x1e\x9c\xc6\x03\xc3\x4a\x63\x4a\xc1\xa6\x26\x78\xaa\xc9\x5a\x6e\xea\x32\x2b\x48\xe3\x71\x2f\x73\xd7\x4e\x22\xf8\x10\x9c\xc5\x1a\xf7\x3e\x74\x6e\xc7\xde\x6a\xc1\x67\xef\x18\xd7\x9f\x25\xaf\xfa\x4b\x6b\x61\x8e\x9c\xf9\x8d\xdf\xe3\xd7\xef\x43\x81\x52\x44\x9e\x7b\x85\x06\x61\x40\x2a\x06\x83\x5f\x14\x03\x32\x98\x82\x22\x91\x08\x8a\xa1\x40\xce\xdc\x0b\x45\xf3\x63\x28\x4f\x82\xdb\xd8\xa1\x77\x49\xe4\xb4\x7f\x03\xf0\x2c\xcd\xc1\x66\x4e\x15\x45\x25\xd3\x55\x9c\xff\x50\x06\x9a\x3e\x4b\x32\xbc\x96\x86\x71\x2b\x64\xda\xbc\x03\x5b\xcf\xac\x07\xe7\x37\x00\x00\xff\xff\xbd\x32\xbd\x95\x85\x02\x00\x00" func lockedtokensDelegatorRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -4137,11 +4137,11 @@ func lockedtokensDelegatorRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x45, 0x91, 0x13, 0x8b, 0x53, 0x4f, 0x28, 0x9d, 0x15, 0x5c, 0x79, 0x70, 0x4, 0xf0, 0x27, 0xf9, 0x26, 0xf1, 0xb0, 0xbc, 0xb1, 0xb1, 0xf3, 0xae, 0x9c, 0x99, 0xd, 0xd5, 0xe4, 0xd7, 0xaf, 0x62}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa3, 0x3, 0x3f, 0xf1, 0xcd, 0xd7, 0xa2, 0xc3, 0x5f, 0xcd, 0x9b, 0xc6, 0x72, 0xa8, 0x89, 0x6, 0xe2, 0x73, 0xf2, 0x37, 0x57, 0xf1, 0x7f, 0x7, 0x98, 0x90, 0x58, 0x2e, 0x48, 0x39, 0x8d, 0xe2}} return a, nil } -var _lockedtokensDelegatorWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x6e\x9b\x40\x10\xbd\xf3\x15\x23\x0e\x11\x48\xed\xa6\x87\xaa\x07\x2b\x69\x94\xc6\x8e\x2a\x25\xaa\x23\x3b\x4d\xcf\x63\x18\x6c\x94\xf5\x0e\x1a\x96\x40\x55\xe5\xdf\xab\x65\x81\x02\xad\x2f\x95\xc2\x65\xc5\xce\xdb\x37\xef\xcd\x9b\xfc\x58\xb0\x58\xb8\xe7\xe4\x99\xd2\x47\x7e\x26\x53\x42\x26\x7c\x84\x0f\xcd\xfd\xfa\xe6\x6e\xb5\x7c\x5c\xdf\xad\xbe\x5d\x2f\x97\x9b\xd5\x76\x1b\x74\xe8\x5b\xcd\x75\x8b\xf5\xd0\x70\xf8\x0f\x07\x44\x65\xf6\xf9\x4e\xd3\x04\x35\xbe\x0b\x83\xc0\x0a\x9a\x12\x13\x9b\xb3\x89\xf0\xc8\x95\xb1\x0b\xf8\x7e\x9b\x37\x9f\x3e\xc6\xf0\x2b\x08\x00\x00\x34\x59\x38\xb0\x4e\x49\x36\x94\x2d\x00\x2b\x7b\x88\xc6\x52\x55\x7b\xac\x0b\x12\x74\x34\xe5\xbb\x69\x63\xf5\x23\xb7\x87\x54\xb0\xc6\x9d\xa6\x18\xce\xfe\x7e\xfa\xb5\x25\x1f\x7a\xbd\x60\xa5\x6d\xdb\xea\x6c\xf0\xa4\x9e\xdc\xa5\xd7\x53\x08\x15\x28\x14\x61\x92\x78\xbd\xad\xa2\x2f\x2c\xc2\xf5\x13\xea\xca\x35\xb9\xf6\x35\xe7\x01\xba\xaf\x24\x9d\xa9\xc1\x07\x5c\x42\xf7\x5e\x95\x96\x05\xf7\xa4\x76\x2d\xc3\xc5\x5b\xf9\xfb\x1c\xb9\x04\x16\x70\xaa\xbe\xf5\x32\x1e\xd0\x1e\xe2\x41\xb4\xfb\xae\xae\xa0\x40\x93\x27\x51\x78\xc3\x95\x4e\xc1\xb0\x05\xaf\x15\x84\x32\x12\x32\x09\x81\x65\x18\x71\x85\x71\x30\xf5\xdd\xcf\xf4\xb4\xed\xf9\xac\x7b\xb9\xe7\x1d\xee\x3c\xeb\xeb\x6d\xf9\xff\x24\xfe\xd9\xd9\x17\x17\x54\xe8\x59\x5e\xbd\x58\x6a\x28\xa9\x2c\x8d\x22\x73\xdb\x90\x92\xa6\x3d\x5a\x96\x07\xe1\xe6\x27\x5c\xce\x72\xec\xe4\x2f\x7b\x54\x34\x72\x3e\x7d\xaa\xea\x2e\xa7\x0d\xd5\x28\x69\x1f\xc1\xb0\xf5\xfe\x8c\xff\x3d\x37\x95\x52\xc1\x65\x6e\xbb\xa1\x5c\xbc\x9f\xa9\xe8\xb9\xe7\x6c\xbd\xc1\xd7\xe0\x77\x00\x00\x00\xff\xff\x68\x33\x20\xad\xe4\x03\x00\x00" +var _lockedtokensDelegatorWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x8f\x9b\x30\x10\x85\xef\xfc\x8a\x11\x87\x08\xa4\xd6\xdb\x43\xd5\x43\xb4\xdb\xd5\x76\xc9\xaa\xd2\x46\x4d\x94\xa4\xe9\xd9\x81\x21\xa0\x38\x1e\x34\x98\x40\x55\xe5\xbf\x57\x60\xa0\x40\x9b\x4b\xa5\xe5\x62\xe1\x79\x7e\xfe\xde\x8c\xd3\x73\x46\x6c\x60\x49\xe1\x09\xa3\x1d\x9d\x50\xe7\x10\x33\x9d\xe1\x43\xb5\x5c\x3d\xbf\x2e\x82\xdd\xea\x75\xf1\xed\x29\x08\x36\x8b\xed\xd6\x69\xd5\x2f\x8a\xca\x46\x6b\xa5\x6e\xff\xef\xf6\x8a\x42\x1f\xd3\x83\xc2\x91\x6a\xb8\xe7\x3a\x8e\x61\xa9\x73\x19\x9a\x94\xb4\x27\xcf\x54\x68\x33\x87\xef\x2f\x69\xf5\xe9\xa3\x0f\xbf\x1c\x07\x00\x40\xa1\x81\x84\x54\x84\xbc\xc1\x78\x0e\xb2\x30\x89\x37\x44\x15\xcd\xb2\xca\x90\x65\x6d\x93\xbf\x1b\x5f\x2c\x7e\xa4\x26\x89\x58\x96\x3e\xcc\xfe\x3e\xf6\xb5\x31\xee\xef\xb9\xc8\x42\x99\xe6\x9a\x59\x9f\x47\xec\xeb\x4d\xcb\x92\x31\x66\x92\xd1\x93\x61\x68\x59\x1b\x9a\x2f\xc4\x4c\xe5\x5e\xaa\x02\x7d\x98\x3d\xd9\x5a\xcd\x0f\xed\x97\xa3\x8a\x45\x9f\x01\x1e\xa0\x3d\x2f\x72\x43\x2c\x8f\x28\x0e\x8d\xc3\xfd\x5b\x64\xfb\xec\xd5\x9d\x9f\xc3\xad\xfa\xd6\x22\xac\xa5\x49\xfc\x1e\xb8\xfe\x1e\x1f\x21\x93\x3a\x0d\x3d\xf7\x99\x0a\x15\x81\x26\x03\x96\x13\x18\x63\x64\xd4\x21\x82\x21\x18\x78\xb9\xbe\x33\xce\xdc\xf5\xf3\x76\xe4\x69\x9f\x3b\xdc\xbb\x56\x77\x17\x77\xf5\xa6\xfc\x7f\x88\x7f\xde\xea\xa5\x1e\x92\x6b\x5d\xae\x16\x16\x2b\x0c\x0b\x83\x83\x71\xd5\x2f\x21\x42\x85\x47\x69\x88\xd7\x4c\xd5\x4f\x78\x98\xcc\xb0\xc5\x0f\x3a\x95\x37\x48\x3e\x3e\x2a\xca\x76\x46\x1b\x2c\x25\x47\xdd\x08\xfa\xd7\x6e\x57\xff\xdf\x7d\x13\x11\x66\x94\xa7\xa6\x6d\xca\xfd\xfb\x09\x45\xe7\x3d\x75\xeb\x02\x5e\x9d\xdf\x01\x00\x00\xff\xff\xe5\x82\x7e\x86\xdc\x03\x00\x00" func lockedtokensDelegatorWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4157,11 +4157,11 @@ func lockedtokensDelegatorWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x48, 0x32, 0xda, 0x36, 0xd7, 0xa4, 0xfe, 0x6, 0xcb, 0x16, 0x39, 0x82, 0xfd, 0x39, 0xe6, 0xda, 0x53, 0xba, 0xf6, 0xe6, 0xcc, 0x1b, 0xa0, 0xee, 0x11, 0xd6, 0xe3, 0xae, 0x27, 0x6d, 0x98, 0x32}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0x77, 0x9, 0x2c, 0x82, 0x96, 0x8b, 0x8, 0x1f, 0xbd, 0xce, 0xfc, 0x2f, 0xd4, 0xed, 0xbe, 0xd7, 0xde, 0xc, 0x45, 0xcb, 0xf7, 0x4b, 0xa8, 0x3b, 0x16, 0xd6, 0xf8, 0xbe, 0x86, 0x35, 0x56}} return a, nil } -var _lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6f\xba\x40\x10\xc5\xef\x7c\x8a\x09\x87\x7f\x30\xf9\x87\xf4\xd0\xf4\x60\x6a\x8d\x2d\x9a\x26\x1a\x35\x6a\xdb\xf3\x08\x83\x6c\xc4\x5d\xb2\x3b\x14\x9a\xc6\xef\xde\xc0\x02\x4a\x4d\xb9\x2c\xb0\x6f\xdf\x7b\xf3\xcb\x8a\x53\xa6\x34\xc3\x42\x85\x47\x8a\x76\xea\x48\xd2\x40\xac\xd5\x09\xee\xca\xc5\xea\x65\x3e\x0d\x76\xab\xf9\x74\x39\x09\x82\xcd\x74\xbb\x75\x1a\xf5\x2c\x97\x07\xb1\x4f\xa9\xd6\x5b\xb9\xdb\xfb\xe7\x3a\x0e\x6b\x94\x06\x43\x16\x4a\x7a\x78\x52\xb9\xe4\x21\xbc\xcd\x44\xf9\x70\x3f\x80\x6f\x07\x00\x20\x25\x06\xa9\x22\x0a\x28\xa5\x03\xb2\xd2\x6b\xad\xca\xaf\x61\xaf\x8b\x6f\x3f\x96\x37\x32\xa7\xb6\xc8\x34\x65\xa8\xc9\xc3\x30\xb4\x09\x98\x73\xe2\x3d\x2b\xad\x55\xf1\x8e\x69\x4e\x03\xf8\x37\xb1\x7b\x6d\x6a\x9b\x9c\xa8\x34\x22\xbd\xa1\x18\x46\xd0\x1c\xf7\x0d\x2b\x8d\x07\xf2\xf7\xb5\xc1\x63\x6d\xd6\x6b\x53\x2f\xab\x8c\x34\x56\x73\x99\xff\x7d\x12\xfe\x87\xe0\x24\xd2\x58\xe0\x3e\xad\x92\x6f\x8f\xbe\xd6\xa1\x4f\x5e\x85\xec\xd7\xa0\x57\xfb\x5b\x5b\x63\x8d\x9c\x0c\xba\xce\xd5\x33\x1e\x43\x86\x52\x84\x9e\x7b\xa5\x06\x61\x40\x2a\x06\x83\x9f\x14\x01\x32\x98\x8c\x42\x11\x0b\x8a\x20\x43\x4e\xdc\x8b\x45\xf7\x62\x28\x8d\xfd\x5b\xf4\x30\xba\x50\x69\x18\x74\x02\xcf\xda\x9c\x2d\x77\x2a\x29\xcc\x99\xae\x90\xfe\x61\xe9\x17\x0d\x92\x0d\x15\xa8\xa3\x76\xda\xee\x46\xd8\xb5\xf5\x3e\x3b\x3f\x01\x00\x00\xff\xff\x39\x38\x7e\xbc\x8f\x02\x00\x00" +var _lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4f\x6f\xaa\x40\x10\xbf\xf3\x29\x26\x1c\x0c\x24\x2f\xe4\x1d\x5e\xde\xc1\xd4\x1a\x5b\x34\x4d\x34\x6a\xd4\xb6\xe7\x11\x06\xd9\x88\xbb\x64\x77\x28\x34\x8d\xdf\xbd\x91\x05\x94\x9a\x72\x59\x60\x7e\xf3\xfb\x97\x15\xa7\x5c\x69\x86\x85\x8a\x8e\x14\xef\xd4\x91\xa4\x81\x44\xab\x13\xfc\xad\x16\xab\xe7\xf9\x34\xdc\xad\xe6\xd3\xe5\x24\x0c\x37\xd3\xed\xd6\x69\xd0\xb3\x42\x1e\xc4\x3e\xa3\x1a\x6f\xe1\x6e\xef\x9f\xeb\x38\xac\x51\x1a\x8c\x58\x28\xe9\xe1\x49\x15\x92\x87\xf0\x3a\x13\xd5\xff\x7f\x3e\x7c\x39\x00\x00\x19\x31\x48\x15\x53\x48\x19\x1d\x90\x95\x5e\x6b\x55\x7d\x0e\x7b\x5e\x02\xfb\xb1\xbc\x83\x39\x35\x45\xae\x29\x47\x4d\x1e\x46\x91\x55\xc0\x82\x53\xef\x49\x69\xad\xca\x37\xcc\x0a\xf2\x61\x30\xb1\xb3\x56\xb5\x55\x4e\x55\x16\x93\xde\x50\x02\x23\x68\xd6\x03\xc3\x4a\xe3\x81\x82\x7d\x4d\xf0\x50\x93\xf5\xdc\xd4\xc7\x2a\x27\x8d\x97\x5c\xe6\x4f\xbf\x89\xe0\x5d\x70\x1a\x6b\x2c\x7d\x18\xdc\xaf\xbd\xd4\x82\x8f\xde\xa5\xae\x1f\x21\x6f\xe6\x5b\x6b\x61\x8d\x9c\xfa\x9d\xdf\xcb\x33\x1e\x43\x8e\x52\x44\x9e\x7b\x83\x06\x61\x40\x2a\x06\x83\x1f\x14\x03\x32\x98\x9c\x22\x91\x08\x8a\x21\x47\x4e\xdd\x2b\x45\xf7\x62\x28\x4b\x82\xfb\xda\x61\x74\x6d\xa4\xc9\xdf\x01\x3c\x4b\x73\xb6\x9d\x53\x45\x51\xc1\x74\x53\xe7\x2f\x94\x41\xd9\xd4\xb1\xa1\x12\x75\xdc\xa6\xed\x6e\x83\x3d\x5b\xee\xb3\xf3\x1d\x00\x00\xff\xff\xfd\x6d\x80\x0e\x8b\x02\x00\x00" func lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdcBytes() ([]byte, error) { return bindataRead( @@ -4177,11 +4177,11 @@ func lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe4, 0xff, 0xf, 0xf2, 0xab, 0xa0, 0x11, 0x20, 0x3b, 0x70, 0xc3, 0x78, 0xe7, 0x7d, 0xf6, 0x66, 0x3d, 0x85, 0xdc, 0x72, 0xb0, 0x5a, 0x8, 0x3a, 0xa1, 0xc9, 0xff, 0x71, 0xa4, 0xdf, 0x12, 0xa2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x33, 0x27, 0xd3, 0x81, 0x5a, 0x29, 0x81, 0xe9, 0x6e, 0x56, 0xb, 0x88, 0x10, 0xd3, 0x32, 0x6a, 0xa7, 0x81, 0xe5, 0x98, 0x1a, 0xd, 0x1, 0xf2, 0x56, 0x72, 0x7f, 0xe8, 0x62, 0xb9, 0xf0, 0x37}} return a, nil } -var _lockedtokensDelegatorWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6f\xaa\x40\x14\xc5\xf7\x7c\x8a\x1b\x16\x2f\x98\xbc\x90\xb7\x78\xe9\xc2\xd4\x1a\x5b\x34\x4d\x34\x6a\xfc\xd3\xae\xaf\x70\x91\x89\x38\x33\x99\xb9\x54\x9a\xc6\xef\xde\xc0\x20\x4a\x4d\xd9\x0c\x30\x67\xce\x39\xf7\x97\x11\x47\xad\x0c\xc3\x4c\xc5\x07\x4a\x36\xea\x40\xd2\x42\x6a\xd4\x11\xfe\x95\xb3\xc5\xcb\x74\x1c\x6d\x16\xd3\xf1\x7c\x14\x45\xab\xf1\x7a\xed\x35\xea\x49\x21\xf7\x62\x97\x53\xad\x77\x72\xbf\xf3\xcf\xf7\x3c\x36\x28\x2d\xc6\x2c\x94\x0c\xf0\xa8\x0a\xc9\x7d\xd8\x4e\x44\xf9\xf0\xbf\x07\x5f\x1e\x00\x40\x4e\x0c\x52\x25\x14\x51\x4e\x7b\x64\x65\x96\x46\x95\x9f\xfd\x4e\x97\xd0\x7d\xcc\xef\x64\x5e\x6d\xa1\x0d\x69\x34\x14\x60\x1c\xbb\x04\x2c\x38\x0b\x9e\x95\x31\xea\xf4\x86\x79\x41\x3d\xf8\x33\x72\x7b\x97\xd4\x4b\x72\xa6\xf2\x84\xcc\x8a\x52\x18\x40\x73\x3c\xb4\xac\x0c\xee\x29\xdc\xd5\x06\x8f\xb5\x59\xa7\x4d\xbd\x2c\x34\x19\xac\xe6\xb2\x7f\xbb\x24\xc2\x77\xc1\x59\x62\xf0\x84\xbb\xbc\x4a\xbe\x3f\xfa\x5a\x87\x3e\x05\x15\xb2\x1f\x83\xde\xec\xaf\x5d\x8d\x25\x72\xd6\x6b\x3b\x57\xcf\x70\x08\x1a\xa5\x88\x03\xff\x46\x0d\xc2\x82\x54\x0c\x16\x3f\x28\x01\x64\xb0\x9a\x62\x91\x0a\x4a\x40\x23\x67\xfe\xd5\xa2\x7d\xb1\x94\xa7\xe1\x3d\x7a\x18\x5c\xa9\x34\x0c\x5a\x41\xe0\x6c\xce\x8e\x3b\x95\x14\x17\x4c\x37\x48\x7f\xb1\x0c\x4f\x0d\x92\xad\xb4\x8c\xed\xb4\xed\x8d\x70\xeb\xc5\xfb\xec\x7d\x07\x00\x00\xff\xff\x16\x0c\xce\x92\x8f\x02\x00\x00" +var _lockedtokensDelegatorWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xcd\x8e\xa2\x40\x10\xbe\xf3\x14\x15\x0e\x06\x92\x0d\xd9\xc3\x66\x0f\x66\x5d\xe3\x0c\x9a\x49\x34\x6a\xfc\x99\x39\x97\x50\x48\x47\xec\xee\x74\x17\x23\x93\x89\xef\x3e\x91\x46\x94\x31\xc3\xa5\x81\xfa\xea\xfb\x4b\x8b\xa3\x56\x86\x61\xa6\x92\x03\xa5\x1b\x75\x20\x69\x21\x33\xea\x08\xbf\xab\xd9\xe2\x79\x3a\x8e\x37\x8b\xe9\x78\x3e\x8a\xe3\xd5\x78\xbd\xf6\x1a\xf4\xa4\x94\x7b\xb1\x2b\xa8\xc6\x3b\xb8\xdf\xf9\xe7\x7b\x1e\x1b\x94\x16\x13\x16\x4a\x06\x78\x54\xa5\xe4\x3e\x6c\x27\xa2\xfa\xfb\x27\x84\x4f\x0f\x00\xa0\x20\x06\xa9\x52\x8a\xa9\xa0\x3d\xb2\x32\x4b\xa3\xaa\x8f\x7e\xc7\x4b\xe4\x3e\xe6\x0f\x30\xaf\xa6\xd0\x86\x34\x1a\x0a\x30\x49\x9c\x02\x96\x9c\x07\x4f\xca\x18\x75\x7a\xc5\xa2\xa4\x10\x7a\x23\x37\xbb\xaa\x5e\x95\x73\x55\xa4\x64\x56\x94\xc1\x00\x9a\xf5\xc8\xb2\x32\xb8\xa7\x68\x57\x13\xfc\xab\xc9\x3a\x6e\xea\x63\xa1\xc9\xe0\x25\x97\xfd\xd5\x6d\x22\x7a\x13\x9c\xa7\x06\x4f\x21\xf4\x1e\xd7\x5e\x6a\xc1\xff\xc1\xa5\xae\x6f\x21\xef\xe6\x6b\x67\x61\x89\x9c\x87\xad\xdf\xcb\x33\x1c\x82\x46\x29\x92\xc0\xbf\x43\x83\xb0\x20\x15\x83\xc5\x77\x4a\x01\x19\xac\xa6\x44\x64\x82\x52\xd0\xc8\xb9\x7f\xa3\x68\x5f\x2c\x15\x59\xf4\x58\x3b\x0c\x6e\x8d\x34\xf9\x5b\x40\xe0\x68\xce\xae\x73\xaa\x28\x29\x99\xee\xea\xfc\x81\x32\x3a\x35\x75\x6c\xa5\x65\x6c\xd3\xb6\xb7\xc1\x9d\x57\xee\xb3\xf7\x15\x00\x00\xff\xff\xd2\x59\x30\x20\x8b\x02\x00\x00" func lockedtokensDelegatorWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4197,7 +4197,7 @@ func lockedtokensDelegatorWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb7, 0x56, 0x75, 0x4a, 0x5f, 0xf3, 0x8d, 0xeb, 0x2a, 0x79, 0x50, 0x6d, 0xfe, 0xf2, 0xec, 0x4c, 0xc6, 0xd5, 0xb9, 0x61, 0xf4, 0xdf, 0x40, 0xd0, 0xcb, 0xe9, 0x6, 0xa, 0xed, 0xd4, 0x0, 0x4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3e, 0x9, 0x13, 0xa8, 0xe7, 0xd6, 0x9a, 0x87, 0x44, 0xef, 0x24, 0x60, 0x7c, 0xd0, 0xe7, 0xc7, 0xc4, 0xcd, 0x92, 0xd3, 0x84, 0x2a, 0x16, 0x9d, 0x93, 0x5f, 0x7e, 0x1a, 0x83, 0x5e, 0xcf, 0xbf}} return a, nil } @@ -4241,7 +4241,7 @@ func lockedtokensStakerGet_staker_infoCdc() (*asset, error) { return a, nil } -var _lockedtokensStakerRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x51\x4f\xdb\x30\x10\x7e\xcf\xaf\xb8\xf5\x61\x4a\xa4\x12\xf6\x30\x4d\x53\x44\x87\x0a\x85\x0d\x15\xb5\x88\x00\xdb\x1e\xdd\xe4\x92\x5a\x18\x3b\x72\x9c\xb5\x08\xf5\xbf\x4f\x8e\x9d\xc4\xa6\x8c\x6d\x0f\xf4\x81\x24\x77\x9f\xbf\xbb\xef\xfc\x1d\xf4\xa1\x12\x52\xc1\x39\x13\x9b\x1b\x71\x8f\x1c\x0a\x29\x1e\x60\xd4\x7f\x8f\x82\x0e\xd1\xf0\x92\xae\x18\x7a\x28\x37\xd6\x23\x2f\x45\x76\x8f\x79\x1b\xab\x0d\xf0\xc3\xf6\x72\x79\x3a\x3f\x9b\xdd\x2c\xe7\x67\x8b\xe9\x6c\x76\x7d\x96\xa6\x1d\x3a\x55\xe4\x9e\xf2\xf2\x4a\x8a\xed\x63\x87\x4e\x6f\xa6\xf3\x8b\xc5\xd7\xab\xeb\xe5\x8f\x9f\x1d\x3c\x50\x92\xf0\x9a\x64\x8a\x0a\x1e\xd2\x3c\x81\x54\x49\xca\xcb\x31\x48\xc1\x30\x81\xdb\x0b\xae\x3e\x8f\x81\xa3\xda\x08\xa9\x09\xa7\x79\x2e\xb1\xae\x07\xdc\x90\x9a\xe3\xe3\x10\xae\x4d\x7d\x2f\x46\x1e\x44\xc3\x55\x02\xb7\xe7\x74\xfb\xe9\x63\x04\x4f\x41\x00\x00\xc0\x50\xc1\x5a\xb0\x1c\xe5\x35\x16\x09\x90\x46\xad\x43\x57\x6c\xdc\x3e\x96\x15\x4a\xa2\xbb\xac\xc7\xfe\xd0\xe2\xef\x54\xad\x73\x49\x36\x64\xc5\x30\x82\xf7\xfb\x47\xbf\xb5\xe4\x43\xb1\x5f\xa4\x61\x6a\xa8\xf5\x2a\x5b\x7f\x63\xf1\x9d\x3e\x65\x48\x2a\x89\x15\x91\x18\x92\x2c\x33\x8a\x5a\x9e\x13\x21\xa5\xd8\xdc\x11\xd6\xe8\x83\x53\x93\xd3\x2a\xc1\xfe\x6a\x64\x45\xdc\x2b\x85\x09\xd8\xf3\x71\xad\x84\x24\x25\xc6\xab\x96\xe1\xe8\xad\x26\xf0\x25\xd4\x46\x48\xe0\x4f\xf9\xd4\xb4\x71\x45\xd4\x3a\xea\x9b\xd6\xbf\xe3\x63\xa8\x08\xa7\x59\x38\x3a\x15\x0d\xcb\x81\x0b\x05\xa6\x57\x90\x58\x80\x12\xe0\xb0\x8c\xa2\xc0\x57\xdc\x8d\xfb\x2f\x82\xff\xe7\x1a\x3a\x25\x87\x96\xe8\xb0\xe8\xf2\x6d\xfa\x9f\xbb\xd7\xc7\x40\xb5\xab\xd7\x76\xa9\xe5\xa0\x44\x9e\xe1\xc8\x70\xec\x8c\x16\xdc\x62\xd6\x28\x74\xee\x52\xfb\x88\x8b\x1c\x2f\x78\x21\x60\xe2\xad\x5b\xbc\xb0\xf1\xd0\x69\xa3\xc5\xce\x12\xa0\xf9\xd8\x89\x9a\x25\xd3\x7f\xdd\xe8\x0b\xdb\xb6\x17\x7a\x19\xdf\xae\x9b\xf7\xe9\xe2\xdc\x9d\x1c\xde\x7b\x80\x73\x6f\x5a\x1d\x6b\x5d\x72\x42\x18\xe1\x19\xc2\xe4\x99\x7b\xe3\x12\x95\xf1\x91\x35\xba\x05\x86\x0e\x0b\x2d\xec\xca\xc3\xd1\xe4\x19\xdd\x53\xe0\x5d\xd1\x33\xee\x4c\x22\x51\xa8\xc7\xa8\xe7\x8a\x32\xec\x26\x9d\xf4\x33\x1f\xfe\x9b\x98\xa7\x53\x76\x07\xc8\x6a\xd4\xd5\xc3\xd0\xd6\x3f\xf0\xcb\x47\xba\x21\xcf\x9b\xf1\xaa\xcb\xbc\xde\x59\x8e\x95\xa8\xa9\xb2\xf6\x3b\x3a\xf0\x49\x36\xd6\xb4\xa1\xdf\xdb\x5e\xf9\xe8\xed\xd5\x3f\x79\x15\xac\xff\x17\x42\x01\x72\xd1\x94\x6b\x63\xfa\x5a\xaf\xae\x76\x02\xbe\x1b\x0d\x3b\xb3\xeb\xdf\xec\x0a\xec\x82\xdf\x01\x00\x00\xff\xff\xd4\xe2\xb3\x9d\xcf\x06\x00\x00" +var _lockedtokensStakerRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x4f\x4f\xdc\x3e\x10\xbd\xe7\x53\xcc\x2f\x07\x94\x48\x4b\xf8\x1d\xaa\xaa\x8a\xd8\xa2\x85\x85\x16\x2d\xda\x45\x04\x68\x7b\x34\xc9\x24\x6b\x61\xec\xc8\x71\xba\x8b\xd0\x7e\xf7\xca\xb1\x93\xd8\xfc\x69\xb9\xb0\x07\x92\xcc\x3c\xbf\x99\x37\x7e\x03\x7d\xa8\x85\x54\x70\xc6\xc4\xe6\x5a\xdc\x23\x87\x52\x8a\x07\x08\x87\xef\x30\xe8\x11\x2d\xaf\xe8\x1d\x43\x0f\xe5\xc6\x06\xe4\x85\xc8\xef\xb1\xe8\x62\x8d\x01\xfe\xbf\xbd\x58\x9d\x2c\x4e\xe7\xd7\xab\xc5\xe9\x72\x36\x9f\x5f\x9d\x66\x59\x8f\xce\x14\xb9\xa7\xbc\xba\x94\x62\xfb\xd8\xa3\xb3\xeb\xd9\xe2\x7c\xf9\xed\xf2\x6a\xf5\xf3\x57\x0f\x0f\x94\x24\xbc\x21\xb9\xa2\x82\x47\xb4\x48\x21\x53\x92\xf2\x6a\x02\x52\x30\x4c\xe1\xe6\x9c\xab\x2f\x13\xe0\xa8\x36\x42\x6a\xc2\x59\x51\x48\x6c\x9a\x11\x37\xa6\x16\xf8\x38\x86\x1b\x53\xdf\x8b\x91\x07\xd1\x72\x95\xc2\xcd\x19\xdd\x7e\xfe\x14\xc3\x53\x10\x00\x00\x30\x54\xb0\x16\xac\x40\x79\x85\x65\x0a\xa4\x55\xeb\xc8\x15\x9b\x74\x8f\x55\x8d\x92\xe8\x2e\x9b\x89\x3f\xb4\xe4\x07\x55\xeb\x42\x92\x4d\x0c\x7b\x2f\x8f\x7d\xef\x88\xc7\x42\xbf\x49\xcb\xd4\x58\xe7\x4d\xa6\xe1\xa6\x92\x5b\x7d\xc2\x10\xd4\x12\x6b\x22\x31\x22\x79\x6e\x94\x74\x1c\xc7\x42\x4a\xb1\xb9\x25\xac\xc5\x18\xf6\x66\x26\xa7\xd5\x81\xfd\x35\xc8\xca\x64\x50\x08\x53\xb0\xe7\x93\x46\x09\x49\x2a\x4c\xee\x3a\x86\xc3\x8f\x50\xfe\x35\xd2\x97\x9f\xc2\x5b\xf9\xcc\xb4\x70\x49\xd4\x3a\x1e\x1a\xd6\xbf\xa3\x23\xa8\x09\xa7\x79\x14\x9e\x88\x96\x15\xc0\x85\x02\xd3\x27\x48\x2c\x41\x09\x70\x58\xc2\x38\xf0\xd5\xf6\x63\xfe\x87\xd8\xf7\x8e\xbf\x57\x71\x60\x49\x0e\xca\x3e\xdf\xa5\xdf\xdd\xb9\x3e\x06\xaa\x5b\xb5\xae\x43\x2d\x05\x25\xf2\x1c\x43\xc3\xb1\x33\x3a\x70\x8b\x79\xab\xd0\xb9\x43\xed\x1d\x2e\x0a\x3c\xe7\xa5\x80\xa9\xb7\x5e\xc9\xd2\xc6\x23\xa7\x8d\x0e\x3b\x4f\x81\x16\x13\x27\x6a\x96\x4a\xff\x75\xa3\xaf\x6c\xd7\x8b\xd0\xeb\xf8\x6e\xbd\xbc\x4f\x17\xe7\xee\xe0\xf8\x3e\x00\x9c\x3b\xd3\xea\x58\xe7\x90\x63\xc2\x08\xcf\x11\xa6\xcf\x5c\x9b\x54\xa8\x8c\x87\xac\xc1\x2d\x30\x72\x58\x68\x69\x57\x1c\x0e\xa7\xcf\xe8\x9e\x02\xef\x8a\x9e\x71\xe7\x12\x89\x42\x3d\x46\x3d\x57\x94\x51\x3f\xe9\x74\x98\xf9\xf8\xdf\xc3\x3c\x9d\xb2\x3b\x40\xd6\xa0\xae\x1e\x45\xb6\xfe\xbe\x5f\x3e\xd6\x0d\x79\xbe\x4c\xee\xfa\xcc\xdf\x3b\x2b\xb0\x16\x0d\x55\xd6\x7e\x87\xfb\x3e\xc9\xc6\x1a\x36\xf2\x7b\x7b\x51\x3e\xfe\x78\xf5\x4f\x5e\x05\xeb\xff\xa5\x50\x80\x5c\xb4\xd5\xda\x98\xbe\xd1\x6b\xab\x9d\x80\xff\x85\xe3\xce\xec\x86\x37\xbb\x02\xbb\xe0\x4f\x00\x00\x00\xff\xff\x17\x1b\x1e\x0b\xbf\x06\x00\x00" func lockedtokensStakerRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -4257,11 +4257,11 @@ func lockedtokensStakerRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb, 0x7f, 0x2f, 0x3e, 0xb2, 0xac, 0x6d, 0x0, 0x0, 0xf6, 0x3, 0x7d, 0x92, 0x3b, 0xcf, 0x5d, 0x45, 0x4, 0x10, 0xb3, 0x84, 0xa2, 0x8, 0xe4, 0x86, 0xba, 0x8b, 0x8a, 0xd, 0x95, 0x8f, 0xfe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6a, 0x21, 0x8d, 0x8, 0xb3, 0x75, 0x66, 0xf3, 0xe2, 0x1b, 0xf9, 0x7, 0x0, 0xd0, 0x5e, 0x60, 0x84, 0x71, 0xc2, 0x5, 0x5f, 0xa4, 0xff, 0xd1, 0x77, 0xe5, 0x92, 0x0, 0xb7, 0x96, 0x33, 0xa9}} return a, nil } -var _lockedtokensStakerRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xcb\x6b\xab\x50\x10\xc6\xf7\xfe\x15\x83\x8b\x8b\xc2\x45\xee\xe2\xd2\x45\x68\x1a\xd2\x3c\xda\x92\x10\x43\x4c\xfa\x58\x9e\xe8\x18\x45\x73\x8e\x9d\x33\x12\x4b\xc9\xff\x5e\xf4\x98\x67\xe9\xb2\x67\x33\xe0\x7c\xf3\xcd\x8f\xcf\x49\xb7\x85\x22\x86\xa9\x0a\x33\x8c\x96\x2a\x43\xa9\x21\x26\xb5\x85\x7f\xd5\xd4\x1f\x4c\x46\xc3\xa5\x3f\x19\xcd\xfa\xc3\xe1\x62\x14\x04\x56\xab\x0e\x58\x64\xa9\xdc\xcc\x49\x55\x1f\x07\x75\xb0\xec\x4f\x9e\x66\x0f\xf3\x85\xff\xfa\x76\x25\x1f\x97\x72\x93\xae\x73\x6c\xec\x8d\xde\xbe\xf8\x66\x5b\x16\x93\x90\x5a\x84\x9c\x2a\xe9\x88\xad\x2a\x25\x77\x60\x35\x4e\xab\x9b\xff\x2e\x7c\x5a\x16\x00\x40\x8e\x0c\x89\xca\x23\xa4\x05\xc6\x1d\x10\x25\x27\xce\x39\xb7\xd7\x14\xbf\x40\x12\xb5\x8d\xfe\x7b\xb9\xd8\x7b\x49\x39\x89\x48\xec\xc4\x3a\x47\x17\xfe\x7c\x1f\x7d\x6c\xcc\xcd\xb2\x82\xb0\x10\x84\x8e\x08\x43\x03\xd3\xac\xbb\x57\x44\x6a\xf7\x2c\xf2\xb2\x76\xe8\x9b\x5e\x0d\x08\xed\xd3\x98\xc7\xde\x11\x12\xba\xd0\xce\x7b\x9a\x15\x89\x0d\x7a\xeb\xc6\xe1\xf6\xb7\xe0\xef\x9c\x3a\xde\x0e\xfc\xd4\x0f\x0c\xc6\x5c\x70\xe2\x1e\xa1\xeb\xd7\xeb\x41\x21\x64\x1a\x3a\xf6\x40\x95\x79\x04\x52\x31\x18\x56\x20\x8c\x91\x50\x86\x08\xac\xe0\xcc\xcb\x36\x0e\x7b\x13\x18\x56\x18\x96\x8c\x67\x59\xd4\xff\x4b\xb3\xc8\x90\xcc\xa1\x74\xaf\xd2\x69\xb3\x08\x1a\x89\xe3\x5a\xa7\x10\x4f\x43\x1e\xe1\x7b\x89\x9a\x57\x52\x9b\x9b\x3b\x1e\x87\xa9\x07\x84\xbd\xf5\x15\x00\x00\xff\xff\x5b\x51\x74\x79\xc9\x02\x00\x00" +var _lockedtokensStakerRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xcb\x6b\xab\x50\x10\xc6\xf7\xfe\x15\x83\x8b\xa0\x70\x91\xbb\xb8\xdc\x45\xb8\xb9\x21\xcd\xa3\x2d\x09\x31\xc4\xa4\x8f\xe5\x89\x8e\x51\x34\xe7\xd8\x39\x23\xb1\x94\xfc\xef\x45\x8f\x79\x96\x2e\x7b\x36\x03\xce\x37\xdf\xfc\xf8\x9c\x74\x57\x28\x62\x98\xa9\x30\xc3\x68\xa5\x32\x94\x1a\x62\x52\x3b\xf8\x5d\xcd\xfc\xe1\x74\x3c\x5a\xf9\xd3\xf1\x7c\x30\x1a\x2d\xc7\x41\x60\xb5\xea\x80\x45\x96\xca\xed\x82\x54\xf5\x7e\x54\x07\xab\xc1\xf4\x71\x7e\xbf\x58\xfa\x2f\xaf\x37\xf2\x49\x29\xb7\xe9\x26\xc7\xc6\xde\xe8\xed\xab\x6f\xb6\x65\x31\x09\xa9\x45\xc8\xa9\x92\x8e\xd8\xa9\x52\x72\x17\xd6\x93\xb4\xfa\xfb\xc7\x85\x0f\xcb\x02\x00\xc8\x91\x21\x51\x79\x84\xb4\xc4\xb8\x0b\xa2\xe4\xc4\xb9\xe4\xf6\x9a\xe2\x17\x48\xa2\xb6\xd1\xbf\xae\x17\x7b\xcf\x29\x27\x11\x89\xbd\x0b\x9d\xaf\x63\x0f\x8d\xb1\x59\x54\x10\x16\x82\xd0\x11\x61\x68\x40\x9a\x55\x77\x8a\x48\xed\x9f\x44\x5e\xa2\x0b\x9d\x81\xe9\xd5\x70\xd0\x3e\x8d\x79\xec\x9d\x00\xa1\x07\xed\xbc\xa7\x59\x91\xd8\xa2\xb7\x69\x1c\xfe\xfd\x04\xf8\x7f\xa7\x8e\xb5\x0b\xdf\xf5\x03\x83\xb0\x10\x9c\xb8\x27\xe0\xfa\xf5\xfb\x50\x08\x99\x86\x8e\x3d\x54\x65\x1e\x81\x54\x0c\x86\x13\x08\x63\x24\x94\x21\x02\x2b\xb8\xf0\xb2\x8d\xc3\xc1\x84\x85\x15\x86\x25\xe3\x45\x0e\xf5\x7f\xd2\x2c\x32\x24\x73\x20\xbd\x9b\x64\xda\x1c\x82\x46\xe2\xb8\xd6\x39\xc0\xf3\x90\x47\xf8\x56\xa2\xe6\xb5\xd4\xe6\xd6\x4e\x47\x61\xea\x11\xe1\x60\x7d\x06\x00\x00\xff\xff\x4c\x06\x77\xdb\xc1\x02\x00\x00" func lockedtokensStakerRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -4277,11 +4277,11 @@ func lockedtokensStakerRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0x18, 0xe4, 0xd7, 0x8e, 0x97, 0x3e, 0x8b, 0x5c, 0x2, 0xc4, 0x18, 0x5b, 0xd2, 0x14, 0xa0, 0xb8, 0x7a, 0xc2, 0x1a, 0x31, 0x3e, 0xaf, 0x33, 0xbe, 0xa4, 0x2f, 0xb5, 0x27, 0x89, 0x79, 0x73}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7d, 0x6e, 0x5b, 0x96, 0x53, 0x78, 0x5b, 0x54, 0xb2, 0xc4, 0xc8, 0x53, 0xbf, 0xf2, 0x15, 0xaa, 0xa7, 0xa4, 0x7f, 0x42, 0x92, 0x82, 0x68, 0x84, 0x2f, 0xdd, 0xe2, 0x28, 0x89, 0x0, 0xcb, 0x8f}} return a, nil } -var _lockedtokensStakerStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x8f\xda\x40\x0c\xbd\xe7\x57\xb8\x39\x54\x89\xd4\xcd\xf6\x50\xf5\x80\xa0\x2b\x76\x61\xdb\x8a\x15\x20\x42\xb7\xed\x71\x08\xce\x87\x18\x66\xa2\x99\x49\xa1\x42\xfc\xf7\x6a\x3e\x12\x92\xa0\x7e\x4a\xcd\x25\x10\x3f\x3f\xfb\xf9\xd9\xc5\xbe\xe4\x42\xc1\x23\xe5\x87\x35\xdf\x21\x83\x54\xf0\x3d\xf8\xcd\x7f\xdf\xab\x11\x15\xcb\x8a\x0d\xc5\x0e\xaa\xfd\xad\x41\x3e\xf1\x64\x87\x5b\xf3\x4d\x5a\xe0\xeb\xe3\xd3\xe2\x61\x36\x9d\xac\x17\xb3\xe9\x7c\x3c\x99\xac\xa6\x71\x5c\xa3\x63\x45\x76\x05\xcb\x96\x82\x1f\xbf\xd7\xe8\x78\x3d\x9e\x7d\x9c\xbf\x5f\xae\x16\x5f\xbe\xd6\x70\x4f\x09\xc2\x24\x49\x54\xc1\x59\x40\xf6\xbc\x62\x6a\x00\x9f\x1e\x8b\xe3\xdb\x37\x21\x9c\x3c\x0f\x00\x80\xa2\x82\x9c\xd3\x2d\x8a\x15\xa6\x03\x20\x95\xca\x83\x76\x37\x91\x79\x2d\x4a\x14\x44\xd3\xc8\x57\x5d\x55\xd1\xe7\x42\xe5\x5b\x41\x0e\x64\x43\x31\x84\x97\xd7\xa9\x1f\x0c\xf9\xa5\xd8\x37\x52\x51\x75\xa9\xf5\x4b\xb6\x66\xa4\xd1\xb3\xce\xb2\x24\xa5\xc0\x92\x08\x0c\x48\x92\x58\x45\x86\xe7\x9e\x0b\xc1\x0f\xcf\x84\x56\x3a\x71\x6c\x63\x5a\x25\xb8\x47\x22\x4d\xa3\x46\x29\x8c\xc0\xe5\x47\x52\x71\x41\x32\x8c\x36\x86\x61\xf8\xbf\x26\xf0\x2e\xd0\x4e\x0d\xe0\x67\xf1\xd8\xb6\xb1\x24\x2a\x0f\x9b\xa6\xf5\x73\x77\x07\x25\x61\x45\x12\xf8\x0f\xbc\xa2\x5b\x60\x5c\x81\xed\x15\x04\xa6\x28\x90\x25\x08\x8a\x43\x8b\xcb\x0f\xbd\xae\xee\x7a\xe8\xbf\x91\xfd\x37\x66\xd4\x7a\x6e\x1d\xd1\x6d\x5a\xc7\x4d\xf8\x8f\x35\xe8\x34\x50\xe6\x42\x4c\x97\x17\x51\xbe\xe5\x38\x5b\x2d\x78\xc4\xa4\x52\xd8\x72\x54\x6f\x93\x54\x64\x87\xc2\x5e\xc2\xa8\xe7\xb1\x93\x16\x1b\x48\xd0\x1a\x89\x4e\xa4\xc6\x86\x7b\x42\x89\x1e\xdf\x55\x6a\x86\xca\x1a\xe5\x36\xc9\x01\xdb\x2c\x45\x0a\xf6\xa6\x60\x38\xea\xd1\x9d\xbc\x8e\xfa\x56\x93\x91\xf9\x3d\x47\x3b\x29\xd9\x5c\xa5\x7d\xb7\xd8\xcf\x80\x54\xa2\x2e\x12\x38\x10\xdc\x74\xab\x84\xba\x6e\xc7\xdd\x68\x53\x47\xfa\x0d\x74\xc5\x6d\xb1\xe4\xb2\x50\xce\xc0\xe1\x4d\x97\xe4\xe0\x6c\xef\xf5\x76\x55\x3e\xfc\x67\x91\xed\xb4\xbe\xe0\x53\x27\xea\x96\x66\xce\x15\x20\xe3\x55\x96\xdb\x4d\x91\x7a\xdf\x4d\x91\x17\xfe\x85\xee\xec\xd6\xe5\xec\xfd\x08\x00\x00\xff\xff\xf5\xf3\x7f\x27\xa2\x05\x00\x00" +var _lockedtokensStakerStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4f\x6f\xda\x4e\x10\xbd\xfb\x53\xcc\xcf\x87\xc8\x96\x7e\x71\x7a\xa8\x7a\x40\xd0\x88\x04\xd2\x56\x44\x80\x30\x4d\xdb\xe3\x62\xc6\x7f\xc4\xb2\x6b\xed\xae\x0b\x15\xe2\xbb\x57\xfb\xc7\xc6\x36\x8a\x1a\x55\xaa\x2f\x06\xcf\x9b\x37\xef\xed\x9b\x2d\xf6\x25\x17\x0a\x9e\x28\x3f\xac\xf9\x0e\x19\xa4\x82\xef\xc1\x6f\xfe\xfb\x5e\x8d\xa8\x58\x56\x6c\x28\x76\x50\xed\x6f\x0d\xf2\x99\x27\x3b\xdc\x9a\x6f\xd2\x02\xdf\x1d\x9f\x17\x8f\xb3\xe9\x64\xbd\x98\x4d\xe7\xe3\xc9\x64\x35\x8d\xe3\x1a\x1d\x2b\xb2\x2b\x58\xb6\x14\xfc\xf8\xab\x46\xc7\xeb\xf1\xec\xcb\xfc\xd3\x72\xb5\xf8\xfe\xa3\x86\x7b\x4a\x10\x26\x49\xa2\x0a\xce\x02\xb2\xe7\x15\x53\x03\xf8\xfa\x54\x1c\x3f\xbc\x0f\xe1\xe4\x79\x00\x00\x14\x15\xe4\x9c\x6e\x51\xac\x30\x1d\x00\xa9\x54\x1e\xb4\xd5\x44\xe6\xb5\x28\x51\x10\x4d\x23\xff\xef\xba\x8a\xbe\x15\x2a\xdf\x0a\x72\x08\xe1\xe6\xba\xed\xb3\x21\xbe\x0c\xfa\x49\x2a\xaa\x2e\x73\x5e\x65\x6a\x8e\x32\x7a\xd1\x1d\x96\xa0\x14\x58\x12\x81\x01\x49\x12\xeb\xc4\x70\x3c\x70\x21\xf8\xe1\x85\xd0\x0a\x43\xb8\x19\xdb\x9a\x76\x07\xee\x91\x48\xd3\xa8\x71\x08\x23\x70\xfd\x91\x54\x5c\x90\x0c\xa3\x8d\x61\x18\xfe\x0b\xe7\x1f\x03\x9d\xce\x00\x5e\xab\xc7\x56\xc2\x92\xa8\x3c\x6c\x04\xeb\xe7\xfe\x1e\x4a\xc2\x8a\x24\xf0\x1f\x79\x45\xb7\xc0\xb8\x02\xab\x13\x04\xa6\x28\x90\x25\x08\x8a\x43\x8b\xcb\x0f\xbd\xae\xe7\xfa\xb0\xff\x60\xf9\xad\x21\xd4\x5e\xee\x1c\xc9\x5d\x5a\xd7\x4d\xf9\xcd\xfa\x75\x1b\x28\x73\x23\x8c\xc2\x8b\x21\xdf\x72\x9c\xad\x0f\x3c\x62\x52\x29\x6c\x25\xa9\x37\x48\x2a\xb2\x43\x61\x37\x7f\xd4\xcb\xd6\xd9\x8a\x0d\x24\x68\x1d\x87\x6e\xa4\x26\x82\x07\x42\x89\x3e\xba\xab\xd6\x0c\x95\x0d\xc9\x6d\x90\x03\xb6\x59\x8a\x14\xec\x1d\x82\xe1\xa8\x47\x77\xf2\x3a\xee\x5b\x22\x23\xf3\x7b\x8e\xf6\xa4\x64\x73\x0b\xed\xbb\xc5\x7e\x06\xa4\x12\xf5\x90\xc0\x81\xe0\xb6\x3b\x25\xd4\x73\x3b\xc9\x46\x9b\xba\xd2\x17\xd0\x35\xb7\xc5\x92\xcb\x42\xb9\x00\x87\xb7\x5d\x92\x83\x8b\xbc\xa7\xed\x6a\x7c\xf8\xd7\x26\xdb\x6d\x7d\xc3\xa7\x4e\xd5\x2d\xcd\x9c\x2b\x40\xc6\xab\x2c\xb7\x9b\x22\xf5\xae\x9b\x21\xff\xf9\x17\xba\xb3\x5b\x97\xb3\xf7\x3b\x00\x00\xff\xff\x9f\x64\xca\xb7\x92\x05\x00\x00" func lockedtokensStakerStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4297,11 +4297,11 @@ func lockedtokensStakerStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xad, 0xc9, 0x23, 0xe, 0x54, 0xf8, 0xd8, 0xb7, 0xdf, 0xde, 0xf2, 0xa0, 0xee, 0x2e, 0x50, 0x47, 0x70, 0xea, 0xf7, 0x8f, 0x5e, 0xf3, 0xa2, 0xa8, 0x93, 0x75, 0x2f, 0xb4, 0x85, 0x18, 0xfc, 0x5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x15, 0x4f, 0xfa, 0x10, 0x8c, 0xe5, 0x53, 0x96, 0x64, 0x9c, 0xd, 0x60, 0x9a, 0x7f, 0x13, 0xae, 0x45, 0x82, 0x1e, 0x80, 0xd7, 0xe8, 0x1a, 0xbb, 0x7c, 0x33, 0xc0, 0xb0, 0x18, 0x3a, 0x9c, 0x1c}} return a, nil } -var _lockedtokensStakerStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4b\x6f\xab\x40\x0c\x85\xf7\xfc\x0a\x8b\xc5\x15\x48\x57\xe8\x2e\xae\xba\x88\x9a\x46\x69\x1e\x6d\x95\x28\x44\x90\xbe\x96\x0e\x98\x80\x20\x33\xc8\x0c\x0a\x55\x95\xff\x5e\x31\x43\x9e\x55\x97\x9d\xcd\x20\x7c\x7c\xfc\x71\x70\xb6\x2d\x25\x2b\x98\xcb\x28\xa7\x78\x25\x73\x12\x15\x24\x2c\xb7\xf0\xaf\x99\xfb\xa3\xd9\x64\xbc\xf2\x67\x93\xc5\x70\x3c\x0e\x26\x61\x68\x75\xea\x50\x61\x9e\x89\xcd\x92\x65\xf3\x71\x50\x87\xab\xe1\xec\x69\xf1\xb0\x0c\xfc\xb7\xf7\x2b\xf9\xb4\x16\x9b\x6c\x5d\x90\xb6\x37\x7a\xfb\xe2\x9d\x6d\x59\x8a\x51\x54\x18\xa9\x4c\x0a\x07\xb7\xb2\x16\xaa\x07\xcf\xd3\xac\xb9\xf9\xef\xc2\xa7\x65\x01\x00\x14\xa4\x20\x95\x45\x4c\x1c\x50\xd2\x03\xac\x55\xea\x9c\x73\x7b\xfa\xf2\x4b\x62\x6c\x6d\xaa\xbf\x97\x83\xbd\xd7\x4c\xa5\x31\xe3\x0e\xd7\x05\xb9\xf0\xe7\x7b\xeb\xa3\x36\x37\xc3\x4a\xa6\x12\x99\x1c\x8c\x22\x03\xa3\xc7\xdd\x4b\x66\xb9\x7b\xc1\xa2\x6e\x1d\x86\xa6\xd6\x02\x42\x77\x2a\x2a\x12\xef\x08\x09\x7d\xe8\xfa\xbd\x4a\x49\xc6\x0d\x79\x6b\xed\x70\xfb\x5b\xf0\x77\x4e\x1b\x6f\x0f\x7e\xaa\x87\x06\x63\x89\x2a\x75\x8f\xd0\xed\x19\x0c\xa0\x44\x91\x45\x8e\x3d\x92\x75\x11\x83\x90\x0a\x0c\x2b\x30\x25\xc4\x24\x22\x02\x25\xe1\xcc\xcb\x36\x0e\x7b\x13\x18\x35\x14\xd5\x8a\xce\xb2\x68\xff\x57\xa5\x30\x27\x36\x8b\xd2\xbf\x4a\xa7\xcb\x22\xd4\x12\xc7\xb5\x4e\x21\x9e\x9a\x3c\xfd\x1c\xd0\x0e\x39\x3e\x7c\xcf\x71\x3f\xcc\x7d\xa0\xd8\x5b\x5f\x01\x00\x00\xff\xff\x31\x2b\x18\x1a\xcc\x02\x00\x00" +var _lockedtokensStakerStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xcb\x8b\xa3\x40\x10\xc6\xef\xfe\x15\x85\x87\xa0\xb0\xc8\x1e\x96\x3d\x84\xcd\x86\x4c\x1e\x33\x43\x42\x0c\x9a\x79\x1d\x2b\x5a\x46\xd1\x74\x4b\xd9\x12\x87\x21\xff\xfb\x60\xb7\x79\x0e\x73\x9c\xbe\xb4\x58\x5f\x7d\xf5\xf3\xb3\xb2\x5d\x29\x59\xc1\x42\x46\x39\xc5\x6b\x99\x93\xa8\x20\x61\xb9\x83\xdf\xcd\xc2\x1f\xcf\xa7\x93\xb5\x3f\x9f\x2e\x47\x93\x49\x30\x0d\x43\xab\x53\x87\x0a\xf3\x4c\x6c\x57\x2c\x9b\xf7\xa3\x3a\x5c\x8f\xe6\x8f\xcb\xfb\x55\xe0\xbf\xbe\xdd\xc8\x67\xb5\xd8\x66\x9b\x82\xb4\xbd\xd1\xdb\x57\xef\x6c\xcb\x52\x8c\xa2\xc2\x48\x65\x52\x38\xb8\x93\xb5\x50\x7d\x78\x9a\x65\xcd\xdf\x3f\x2e\x7c\x58\x16\x00\x40\x41\x0a\x52\x59\xc4\xc4\x01\x25\x7d\xc0\x5a\xa5\xce\x25\xb7\xa7\x2f\xbf\x24\xc6\xd6\xa6\xfa\x75\x3d\xd8\x7b\xc9\x54\x1a\x33\xee\x5d\xe8\x7d\x6d\x7b\xd0\xc6\x66\x50\xc9\x54\x22\x93\x83\x51\x64\x40\xf4\xa8\x3b\xc9\x2c\xf7\xcf\x58\xd4\xe4\x42\x6f\x64\x6a\x2d\x1c\x74\xa7\xa2\x22\xf1\x4e\x80\x30\x80\xae\xdf\xab\x94\x64\xdc\x92\xb7\xd1\x0e\xff\x7e\x02\xfc\xbf\xd3\xc6\xda\x87\xef\xea\xa1\x41\x58\xa1\x4a\xdd\x13\x70\x7b\x86\x43\x28\x51\x64\x91\x63\x8f\x65\x5d\xc4\x20\xa4\x02\xc3\x09\x4c\x09\x31\x89\x88\x40\x49\xb8\xf0\xb2\x8d\xc3\xc1\x84\x45\x0d\x45\xb5\xa2\x8b\x1c\xda\xff\x54\x29\xcc\x89\xcd\x82\x0c\x6e\x92\xe9\x72\x08\xb5\xc4\x71\xad\x73\x80\xe7\x26\x4f\x3f\x07\xb4\x47\x8e\x8f\xdf\x73\xda\x0b\x73\x1f\x29\x0e\xd6\x67\x00\x00\x00\xff\xff\x4f\x04\x82\x6f\xc4\x02\x00\x00" func lockedtokensStakerStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4317,11 +4317,11 @@ func lockedtokensStakerStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0x85, 0x25, 0xb1, 0xeb, 0x6f, 0x6d, 0xcf, 0xc2, 0x7c, 0xa3, 0x8a, 0x17, 0x27, 0x2d, 0x75, 0xb2, 0xd2, 0x29, 0x32, 0x0, 0x5a, 0x64, 0xdf, 0xa3, 0x7c, 0xee, 0xc, 0x7b, 0xec, 0xdd, 0x72}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x12, 0x4c, 0xb4, 0x18, 0xc2, 0x2c, 0x6e, 0x8b, 0x63, 0xcb, 0x1d, 0x58, 0xa2, 0xfc, 0x7d, 0x7b, 0x7e, 0x7d, 0xd, 0x3c, 0xc4, 0x71, 0xe4, 0x51, 0x14, 0x84, 0x6a, 0x9, 0x3c, 0x44, 0x94, 0xa0}} return a, nil } -var _lockedtokensStakerStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4d\x6b\xbb\x40\x10\xc6\xef\x7e\x8a\xc1\xc3\x1f\x85\x3f\xd2\x43\xe9\x21\x34\x0d\x69\x5e\xda\x92\x10\x43\x4c\xfa\x72\x9c\xe8\x18\x45\xb3\x2b\xe3\x4a\x2c\x25\xdf\xbd\xb8\x6b\x5e\x4b\x8f\xdd\xcb\x88\xfb\xcc\x33\x3f\x1f\x27\xdd\x16\x92\x15\x4c\x65\x98\x51\xb4\x94\x19\x89\x12\x62\x96\x5b\xb8\xa9\xa7\xfe\x60\x32\x1a\x2e\xfd\xc9\x68\xd6\x1f\x0e\x17\xa3\x20\xb0\x5a\x75\xa0\x30\x4b\xc5\x66\xce\xb2\xfe\x3c\xa8\x83\x65\x7f\xf2\x32\x7b\x9a\x2f\xfc\xf7\x8f\x2b\xf9\xb8\x12\x9b\x74\x9d\x93\xb6\x37\x7a\xfb\xe2\x9d\x6d\x59\x8a\x51\x94\x18\xaa\x54\x0a\x07\xb7\xb2\x12\xaa\x03\xab\x71\x5a\xdf\xdd\xba\xf0\x65\x59\x00\x00\x39\x29\x48\x64\x1e\x11\x2f\x28\xee\x00\x56\x2a\x71\xce\xb9\x3d\x5d\xfc\x82\x18\x1b\x9b\xf2\xff\xe5\x60\xef\x2d\x55\x49\xc4\xb8\xc3\x75\x4e\x2e\xfc\xfb\xd9\xfa\xac\xcd\xcd\xb0\x82\xa9\x40\x26\x07\xc3\xd0\xc0\xe8\x71\x8f\x92\x59\xee\x5e\x31\xaf\x1a\x87\xbe\xb9\x6b\x00\xa1\x3d\x25\xe5\xb1\x77\x84\x84\x2e\xb4\xfd\x5e\xa9\x24\xe3\x86\xbc\xb5\x76\xb8\xff\x2b\xf8\x07\xa7\x89\xb7\x03\xbf\xdd\x07\x06\x63\x8e\x2a\x71\x8f\xd0\xcd\xe9\xf5\xa0\x40\x91\x86\x8e\x3d\x90\x55\x1e\x81\x90\x0a\x0c\x2b\x30\xc5\xc4\x24\x42\x02\x25\xe1\xcc\xcb\x36\x0e\x7b\x13\x18\xd5\x14\x56\x8a\xce\xb2\x68\xfe\x57\xa9\x30\x23\x36\x8b\xd2\xbd\x4a\xa7\xcd\x22\xd0\x12\xc7\xb5\x4e\x21\x9e\x9a\x3c\xfd\xbc\x12\xba\xb4\xdf\x73\xdc\x0f\x53\x0f\x14\x7b\xeb\x3b\x00\x00\xff\xff\x1e\x1f\xa8\x34\xcc\x02\x00\x00" +var _lockedtokensStakerStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4b\x6f\xab\x40\x0c\x85\xf7\xfc\x0a\x8b\x45\x04\xd2\x15\xba\x8b\xab\xbb\x88\x9a\x46\x69\x1e\x6d\x95\x28\x44\x21\xe9\x63\x39\x01\x13\x10\x64\x06\x19\xa3\x50\x55\xf9\xef\x15\x33\xe4\x59\x75\xd9\xd9\x18\x31\xc7\xc7\x1f\x07\xa7\xbb\x42\x11\xc3\x4c\x85\x19\x46\x2b\x95\xa1\x2c\x21\x26\xb5\x83\xbf\xf5\xcc\x1f\x4e\xc7\xa3\x95\x3f\x1d\xcf\x07\xa3\xd1\x72\x1c\x04\x56\xab\x0e\x58\x64\xa9\xdc\x2e\x48\xd5\x1f\x47\x75\xb0\x1a\x4c\x9f\xe7\x8f\x8b\xa5\xff\xf6\x7e\x23\x9f\x54\x72\x9b\x6e\x72\xd4\xf6\x46\x6f\x5f\xbd\xb3\x2d\x8b\x49\xc8\x52\x84\x9c\x2a\xe9\x88\x9d\xaa\x24\x77\x61\x3d\x49\xeb\xff\xff\x5c\xf8\xb4\x2c\x00\x80\x1c\x19\x12\x95\x47\x48\x4b\x8c\xbb\x20\x2a\x4e\x9c\x4b\x6e\x4f\x17\xbf\x40\x12\x8d\x4d\xf9\xe7\x7a\xb0\xf7\x9a\x72\x12\x91\xd8\xbb\xd0\xf9\xde\xf6\xa4\x8d\xcd\xa0\x82\xb0\x10\x84\x8e\x08\x43\x03\xa2\x47\x3d\x28\x22\xb5\x7f\x11\x79\x85\x2e\x74\x06\xe6\xae\x81\x83\xf6\x94\x98\xc7\xde\x09\x10\x7a\xd0\xf6\x7b\x25\x2b\x12\x5b\xf4\x36\xda\xe1\xee\x37\xc0\xef\x9d\x26\xd6\x2e\xfc\x74\x1f\x18\x84\x85\xe0\xc4\x3d\x01\x37\xa7\xdf\x87\x42\xc8\x34\x74\xec\xa1\xaa\xf2\x08\xa4\x62\x30\x9c\x40\x18\x23\xa1\x0c\x11\x58\xc1\x85\x97\x6d\x1c\x0e\x26\x2c\xac\x31\xac\x18\x2f\x72\x68\xfe\x53\xc9\x22\x43\x32\x0b\xd2\xbb\x49\xa6\xcd\x21\xd0\x12\xc7\xb5\xce\x01\x9e\x9b\x3c\xfd\xbc\x96\xba\xb4\xdf\x73\xda\x0b\x53\x8f\x14\x07\xeb\x2b\x00\x00\xff\xff\x60\x30\x32\x41\xc4\x02\x00\x00" func lockedtokensStakerStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4337,11 +4337,11 @@ func lockedtokensStakerStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0xb5, 0x22, 0x4e, 0x64, 0x9c, 0xfa, 0xc4, 0xe8, 0x5d, 0xa7, 0xa3, 0x33, 0x9e, 0x82, 0xc8, 0x46, 0x19, 0x50, 0xef, 0x65, 0xbe, 0xef, 0xd0, 0x9d, 0x42, 0xa8, 0x50, 0xd5, 0xb9, 0xbe, 0x13}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd7, 0x3d, 0xa6, 0xee, 0x16, 0x62, 0x86, 0xa8, 0x75, 0xe1, 0x9a, 0xb0, 0x46, 0x44, 0x31, 0x93, 0xbd, 0x11, 0xe3, 0x5, 0xc, 0x92, 0xc8, 0xd5, 0xb2, 0x95, 0xec, 0x89, 0x21, 0xb9, 0xdc, 0xed}} return a, nil } -var _lockedtokensStakerUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\x4b\x6b\x83\x40\x10\xbe\xfb\x2b\x06\x0f\x45\xa1\x48\xcf\xa1\x69\xb0\x49\xfa\x20\x21\x86\x18\xfa\x38\x6e\x74\x8c\xe2\x66\x57\xc6\x59\x92\x52\xf2\xdf\x8b\xae\x79\x96\x1e\x3b\x17\x71\xe7\x7b\xf1\xed\x16\x9b\x4a\x13\xc3\x54\x27\x25\xa6\x4b\x5d\xa2\xaa\x21\x23\xbd\x81\xbb\xdd\x34\x1a\x4e\xc6\xa3\x65\x34\x19\xcf\xc2\xd1\x68\x31\x8e\x63\xa7\x43\xc7\x2c\xca\x42\xad\xe7\xa4\x77\x5f\x07\x74\xbc\x0c\x27\xaf\xb3\xe7\xf9\x22\xfa\xf8\xbc\x82\x3f\x19\xb5\x2e\x56\x12\x5b\x79\x8b\x77\x2f\xce\x5c\xc7\x61\x12\xaa\x16\x09\x17\x5a\x79\x3e\x7c\x3b\x0e\x00\x80\x44\x86\x5c\xcb\x14\x69\x81\x59\x0f\x84\xe1\xdc\x3b\x4f\x1a\xb4\x9f\xa8\x42\x12\x0d\xb1\xbe\xbd\xb4\x0a\xde\x0b\xce\x53\x12\x5b\xb1\x92\xe8\xc3\xcd\x6f\xea\x4b\x2b\x6e\xcd\x2a\xc2\x4a\x10\x7a\x22\x49\xb4\x51\xdc\xd9\x3d\x6a\x22\xbd\x7d\x13\xd2\x34\x0a\xa1\xdd\x35\x01\xa1\x9b\x1a\x65\x16\x1c\x43\x42\x1f\x3a\x7e\x50\xb3\x26\xb1\xc6\x60\xd5\x2a\xdc\xff\x57\xf8\x07\xaf\x29\xb4\x07\x7f\xed\x63\x1b\x63\x2e\x38\xf7\x8f\xa1\x9b\x19\x0c\xa0\x12\xaa\x48\x3c\x77\xa8\x8d\x4c\x41\x69\x06\x9b\x15\x08\x33\x24\x54\x09\x02\x6b\x38\xd3\x72\xad\xc2\xde\x16\x86\x3b\x4c\x0c\xe3\x59\x17\xcd\x7d\xd5\x2c\x4a\x24\xfb\x34\xfa\x57\xed\x74\x5d\xc4\x2d\xc4\xf3\x9d\x53\x89\x27\x52\x60\x54\xfb\x17\x4a\xe9\x1d\xec\xf6\xce\x4f\x00\x00\x00\xff\xff\x33\xf3\xea\x19\xa7\x02\x00\x00" +var _lockedtokensStakerUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\x4b\x6b\xbb\x40\x10\xbf\xfb\x29\x06\x0f\x41\xe1\x8f\xfc\xcf\xa1\x69\xb0\x49\xfa\x20\x21\x86\x18\xfa\x38\x6e\x74\x8c\xe2\x66\x57\xc6\x59\x92\x52\xf2\xdd\x8b\xae\x79\x96\x1e\x3b\x17\x71\xe7\xf7\xe2\xb7\x5b\x6c\x2b\x4d\x0c\x33\x9d\x94\x98\xae\x74\x89\xaa\x86\x8c\xf4\x16\xfe\xef\x67\xd1\x68\x3a\x19\xaf\xa2\xe9\x64\x1e\x8e\xc7\xcb\x49\x1c\x3b\x1d\x3a\x66\x51\x16\x6a\xb3\x20\xbd\xff\x3c\xa2\xe3\x55\x38\x7d\x99\x3f\x2d\x96\xd1\xfb\xc7\x0d\xfc\xd1\xa8\x4d\xb1\x96\xd8\xca\x5b\xbc\x7b\x75\xe6\x3a\x0e\x93\x50\xb5\x48\xb8\xd0\xca\xf3\xe1\xcb\x71\x00\x00\x24\x32\xe4\x5a\xa6\x48\x4b\xcc\xfa\x20\x0c\xe7\xde\x65\xd2\xa0\xfd\x44\x15\x92\x68\x88\xf5\xbf\x6b\xab\xe0\xad\xe0\x3c\x25\xb1\xf3\xa1\xf7\x93\xf6\xdc\x0a\x5b\xa3\x8a\xb0\x12\x84\x9e\x48\x12\x6d\x14\x77\x56\x0f\x9a\x48\xef\x5e\x85\x34\xe8\x43\x2f\xb4\xbb\x26\x1c\x74\x53\xa3\xcc\x82\x53\x40\x18\x40\xc7\x0f\x6a\xd6\x24\x36\x18\xac\x5b\x85\xbb\xbf\x08\x7e\xef\x35\x45\xf6\xe1\xb7\x7d\x6c\x23\x2c\x04\xe7\xfe\x29\x70\x33\xc3\x21\x54\x42\x15\x89\xe7\x8e\xb4\x91\x29\x28\xcd\x60\x73\x02\x61\x86\x84\x2a\x41\x60\x0d\x17\x5a\xae\x55\x38\xd8\xb2\x70\x8f\x89\x61\xbc\xe8\xa1\xb9\xa7\x9a\x45\x89\x64\x9f\xc4\xe0\xa6\x99\xae\x87\xb8\x85\x78\xbe\x73\x2e\xf0\x4c\x0a\x8c\x6a\xff\x42\x29\xbd\xa3\xdd\xc1\xf9\x0e\x00\x00\xff\xff\x19\x16\xc4\x87\x9f\x02\x00\x00" func lockedtokensStakerUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -4357,11 +4357,11 @@ func lockedtokensStakerUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe8, 0x2, 0xbd, 0x75, 0x20, 0x7e, 0x5, 0xb9, 0x89, 0x96, 0xb4, 0x90, 0x78, 0x33, 0x11, 0xa1, 0x10, 0xce, 0xbd, 0xa5, 0x1, 0x6e, 0xc4, 0x8e, 0x43, 0x19, 0xee, 0xc5, 0x43, 0xe2, 0x56, 0xa0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xeb, 0x2e, 0xae, 0xc2, 0x32, 0xef, 0x6c, 0x93, 0x9f, 0x5e, 0x46, 0x7f, 0x86, 0xe0, 0x52, 0x5b, 0x7d, 0xab, 0x41, 0x2d, 0x3f, 0x47, 0xeb, 0x82, 0x59, 0xd9, 0xa3, 0x76, 0x43, 0x2e, 0xb9, 0xb8}} return a, nil } -var _lockedtokensStakerUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x6b\xc2\x40\x10\xc5\xef\xf9\x14\x43\x0e\x25\x81\x12\x7a\x96\x5a\xb1\x6a\x29\x28\x2a\x46\xda\xf3\x9a\x4c\xfe\x90\xb8\x13\x66\x27\xc4\x52\xfc\xee\x25\xd9\x54\x63\x4b\x8f\x9d\x4b\x20\xf3\xe6\xcd\x8f\xb7\x93\x1f\x2b\x62\x81\x15\x45\x05\xc6\x7b\x2a\x50\x1b\x48\x98\x8e\xf0\x70\x5a\x6d\x66\xcb\xc5\x7c\xbf\x59\x2e\xd6\xd3\xf9\x7c\xb7\x08\x43\xa7\x57\xbf\xd4\x3a\xcd\x0f\x25\x76\x7a\x2b\x77\x6f\xfe\xb9\x8e\x23\xac\xb4\x51\x91\xe4\xa4\x3d\x8d\xcd\x34\x8e\x19\x8d\x19\x41\x28\x9c\xeb\xd4\x87\x4f\xc7\x01\x00\x28\x51\x20\xa3\x32\x46\xde\x61\x32\x02\x55\x4b\xe6\x0d\x61\x82\xee\xb3\xa9\x90\x55\x6b\x65\xee\x6f\x97\x07\xef\xb9\x64\x31\xab\x46\x1d\x4a\xf4\xe1\xee\xf7\xe8\x6b\x67\x6e\x97\x55\x8c\x95\x62\xf4\x54\x14\x51\xad\xa5\x5f\xf7\x4c\xcc\xd4\xbc\xa9\xb2\x6e\x1d\xa6\xb6\xd7\x02\x42\x5f\x06\xcb\x24\xb8\x40\xc2\x18\xfa\xf9\xc0\x08\xb1\x4a\x31\x38\x74\x0e\x8f\xff\x05\xff\xe4\xb5\x11\x8f\xe0\xaf\x7e\x68\x31\xb6\x4a\x32\xff\x02\xdd\xd6\x64\x02\x95\xd2\x79\xe4\xb9\x33\xaa\xcb\x18\x34\x09\x58\x56\x60\x4c\x90\x51\x47\x08\x42\x30\xf0\x72\xad\xc3\xd9\x06\x86\x27\x8c\x6a\xc1\x41\x16\xed\x7b\x19\x51\x05\xf2\x96\xe9\xf4\x01\xe3\x1f\xe9\xf4\x59\x84\x9d\xc4\xf3\x9d\x6b\x88\xd7\xa1\xa0\xae\x62\x25\xb8\x46\x69\x88\x8b\x5c\xa7\xfd\x71\x0c\xee\xe4\x9b\xe2\xec\x7c\x05\x00\x00\xff\xff\x87\x60\x47\xb0\xa1\x02\x00\x00" +var _lockedtokensStakerUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x6b\xf2\x40\x10\xc6\xef\xf9\x14\x43\x0e\x92\xc0\x4b\x78\xcf\x52\x2b\x56\x2d\x05\x45\xc5\x48\x7b\x5e\x93\xc9\x1f\x12\x77\xc2\xec\x84\x58\x8a\xdf\xbd\x24\x9b\x6a\x6c\xe9\xb1\x73\x09\x64\x9e\x79\xe6\xc7\xb3\x93\x9f\x2a\x62\x81\x35\x45\x05\xc6\x07\x2a\x50\x1b\x48\x98\x4e\xf0\xff\xbc\xde\xce\x57\xcb\xc5\x61\xbb\x5a\x6e\x66\x8b\xc5\x7e\x19\x86\x4e\xaf\x7e\xae\x75\x9a\x1f\x4b\xec\xf4\x56\xee\xde\xfd\x73\x1d\x47\x58\x69\xa3\x22\xc9\x49\x7b\x1a\x9b\x59\x1c\x33\x1a\x33\x86\x50\x38\xd7\xa9\x0f\x1f\x8e\x03\x00\x50\xa2\x40\x46\x65\x8c\xbc\xc7\x64\x0c\xaa\x96\xcc\x1b\xc2\x04\xdd\x67\x5b\x21\xab\xd6\xca\xfc\xbb\x5f\x1e\xbc\xe5\x92\xc5\xac\x1a\x1f\x46\x3f\xc7\x5e\x3a\x63\xbb\xa8\x62\xac\x14\xa3\xa7\xa2\x88\x6a\x2d\xfd\xaa\x27\x62\xa6\xe6\x55\x95\x35\xfa\x30\x9a\xd9\x5e\x0b\x07\x7d\x19\x2c\x93\xe0\x0a\x08\x13\xe8\xe7\x03\x23\xc4\x2a\xc5\xe0\xd8\x39\x3c\xfc\x05\xf8\xa3\xd7\x46\x3b\x86\xdf\xfa\xa1\x45\xd8\x29\xc9\xfc\x2b\x70\x5b\xd3\x29\x54\x4a\xe7\x91\xe7\xce\xa9\x2e\x63\xd0\x24\x60\x39\x81\x31\x41\x46\x1d\x21\x08\xc1\xc0\xcb\xb5\x0e\x17\x1b\x16\x9e\x31\xaa\x05\x07\x39\xb4\xef\x64\x44\x15\xc8\x3b\xa6\xf3\x3b\x4c\xbe\x25\xd3\xe7\x10\x76\x12\xcf\x77\x6e\x01\xde\x86\x82\xba\x8a\x95\xe0\x06\xa5\x21\x2e\x72\x9d\xf6\x47\x31\xb8\x8f\x2f\x8a\x8b\xf3\x19\x00\x00\xff\xff\x52\x58\xde\x54\x99\x02\x00\x00" func lockedtokensStakerUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -4377,11 +4377,11 @@ func lockedtokensStakerUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0x2d, 0x8f, 0xc1, 0x70, 0x46, 0x6b, 0x99, 0xc, 0x46, 0xbd, 0x74, 0x78, 0x75, 0xc5, 0xc9, 0x34, 0xa0, 0xf9, 0x2e, 0x92, 0x1e, 0x3b, 0x25, 0xc, 0x85, 0x88, 0xb2, 0xd0, 0x7d, 0x1b, 0xb4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x97, 0x4a, 0x45, 0x76, 0x37, 0xf0, 0x22, 0xec, 0x4b, 0x84, 0xb9, 0x61, 0x7c, 0x2f, 0x48, 0xa2, 0xbb, 0x67, 0xdd, 0x75, 0x63, 0x69, 0x75, 0xf4, 0xa5, 0xe4, 0xde, 0x38, 0x7e, 0x30, 0x27, 0x71}} return a, nil } -var _lockedtokensStakerWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x6e\xdb\x30\x0c\xbd\xfb\x2b\x08\x1f\x0a\x1b\xd8\xd4\x1d\x86\x1d\x82\x76\x45\xd7\xa4\x18\xd0\x62\x29\x92\xae\x3b\x33\x36\xdd\x18\x51\x44\x83\x96\xeb\x0c\x43\xff\x7d\x90\x64\xbb\x8e\xb7\x5c\x06\x4c\x17\x41\xe2\xe3\xe3\x7b\x24\xcb\x7d\xc5\x62\xe1\x9e\xb3\x1d\xe5\x8f\xbc\x23\x53\x43\x21\xbc\x87\x0f\x87\xfb\xe5\xcd\xdd\x62\xfe\xb8\xbc\x5b\x7c\xbb\x9e\xcf\x57\x8b\xf5\x3a\xea\xd0\xb7\x9a\x5b\x8f\x0d\xd0\x78\x78\xc7\x03\xa2\x31\xcf\xe5\x46\xd3\x11\x6a\xfc\x17\x47\x91\x15\x34\x35\x66\xb6\x64\x93\xe0\x9e\x1b\x63\x67\xf0\xfd\xb6\x3c\x7c\xfa\x98\xc2\xaf\x28\x02\x00\xd0\x64\x61\xcb\x3a\x27\x59\x51\x31\x03\x6c\xec\x36\x19\x4b\x55\xfe\x5a\x56\x24\xe8\x68\xea\x77\xc7\x85\xd5\x8f\xd2\x6e\x73\xc1\x16\x37\x9a\x52\x38\xfb\x33\xf5\xab\x27\x1f\x6a\xbd\x60\xa3\xad\x2f\x75\x36\x78\x52\x4f\xee\x33\xe8\xa9\x84\x2a\x14\x4a\x30\xcb\x82\x5e\xaf\xe8\x0b\x8b\x70\xfb\x84\xba\x71\x45\xae\x43\xcc\x79\x80\xee\xd4\xa4\x0b\x35\xf8\x80\x4b\xe8\xf2\x55\x6d\x59\xf0\x99\xd4\xc6\x33\x5c\xfc\x2f\x7f\x9f\x13\x37\x81\x19\x9c\x8a\xaf\x83\x8c\x07\xb4\xdb\x74\x10\xed\xce\xd5\x15\x54\x68\xca\x2c\x89\x6f\xb8\xd1\x39\x18\xb6\x10\xb4\x82\x50\x41\x42\x26\x23\xb0\x0c\x23\xae\x38\x8d\x8e\x7d\xf7\x3d\x3d\x6d\x7b\xda\xeb\x5e\xee\x79\x87\x3b\x2f\xfa\xb8\x0f\xff\x9b\xc4\xb7\x9d\x7d\x71\x83\x8a\x03\xcb\x6b\x10\x4b\x07\xca\x1a\x4b\xa3\x91\xb9\x6d\xa8\x2d\xee\x48\x1e\x84\x0f\x3f\xe1\x72\x32\xc4\x4e\xfb\xda\x43\x92\xb1\xe7\xb7\x24\xd5\x76\xe3\x59\x51\x8b\x92\xf7\x9d\x1f\x96\x3d\xdc\xe9\xdf\xdb\xa5\x72\xaa\xb8\x2e\x6d\xd7\x8b\x8b\xf7\x93\xfa\x3d\xf7\x94\xad\xf7\xf5\x1a\xfd\x0e\x00\x00\xff\xff\xc4\x99\x67\x24\xdb\x03\x00\x00" +var _lockedtokensStakerWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x6e\x9b\x40\x10\xbd\xf3\x15\x23\x0e\x16\x48\xed\xa6\x87\xaa\x07\x2b\x69\x94\xc6\x8e\x2a\x25\xaa\x23\x93\xba\xe7\x35\x0c\x06\x79\xbd\x83\x86\xc5\x50\x55\xfe\xf7\x8a\x5d\xc0\x98\xd6\x97\x4a\xe5\xb2\x62\xe7\xed\x9b\xf7\xde\x4c\x7e\x28\x88\x0d\xbc\x50\xbc\xc7\xe4\x8d\xf6\xa8\x4b\x48\x99\x0e\xf0\xa1\x79\x59\x3d\x3e\x2f\x17\x6f\xab\xe7\xe5\xb7\x87\xc5\x62\xbd\x8c\x22\xaf\x43\x3f\x29\xaa\x2d\xd6\x41\xfd\xe1\xdf\x1f\x10\x95\xde\xe5\x5b\x85\x17\xa8\xf1\x9d\xef\x79\x86\xa5\x2e\x65\x6c\x72\xd2\x81\x3c\x50\xa5\xcd\x1c\xbe\x3f\xe5\xcd\xa7\x8f\x21\xfc\xf2\x3c\x00\x00\x85\x06\x32\x52\x09\xf2\x1a\xd3\x39\xc8\xca\x64\xc1\x58\xaa\xb0\xc7\xaa\x40\x96\x2d\x4d\xf9\xee\xb2\xb1\xf8\x91\x9b\x2c\x61\x59\x87\x30\xfb\xf3\xd9\x57\x4b\x3c\xf4\x39\xca\x4a\x19\xdb\x66\x36\xf8\x11\x9b\xf6\xd2\x69\x29\x18\x0b\xc9\x18\xc8\x38\x76\x5a\xad\x9a\x2f\xc4\x4c\xf5\x46\xaa\x0a\x43\x98\x3d\xb8\x5a\xab\x1f\xba\xaf\x44\x95\x8a\xc1\x03\xdc\x41\xf7\x5e\x94\x86\x58\xee\x50\x6c\x2d\xc3\xed\xff\xf0\xf6\x39\x68\x93\x9f\xc3\xb5\x7a\xe4\x24\xbc\x4a\x93\x85\x83\xe0\xf6\xbb\xbf\x87\x42\xea\x3c\x0e\xfc\x47\xaa\x54\x02\x9a\x0c\x38\x9d\xc0\x98\x22\xa3\x8e\x11\x0c\xc1\x88\xcb\x0f\xbd\x4b\xcf\x7d\x9e\xd7\x2d\x4f\x73\xee\xe5\xde\x74\xb8\x9b\xb4\xaf\xdb\xf2\xbf\x49\x3c\xef\xea\xb1\x1d\x92\xef\x58\x4e\x4e\x2c\x36\x18\x57\x06\x47\xe3\x6a\x37\xa1\x34\x72\x8f\xfc\xca\xd4\xfc\x84\xbb\xc9\x00\x3b\xed\x91\x85\x04\x63\xcf\xe7\x47\xa2\xee\x46\xb3\xc6\x5a\x72\xd2\x27\x3f\x2c\xb9\x3b\xc3\xbf\xc7\x25\x12\x2c\xa8\xcc\x4d\x97\xc5\xed\xfb\x49\xff\x9e\x7b\xca\xd6\xfb\x3a\x79\xbf\x03\x00\x00\xff\xff\x47\xfe\xbf\x7a\xd3\x03\x00\x00" func lockedtokensStakerWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4397,11 +4397,11 @@ func lockedtokensStakerWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x43, 0xd4, 0x3e, 0x9e, 0xe6, 0x2c, 0x78, 0x72, 0xa, 0x27, 0x76, 0x31, 0x19, 0xcf, 0xb8, 0x8f, 0xb0, 0x3b, 0x21, 0x6e, 0xa3, 0x81, 0xd, 0x9, 0x3f, 0xe9, 0x64, 0x7, 0xf9, 0xb9, 0x9b, 0x71}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0x2b, 0xa9, 0xc0, 0x4c, 0xcd, 0xfb, 0x1b, 0x12, 0x83, 0x2a, 0x7c, 0xe7, 0x6, 0xaa, 0xa9, 0x32, 0x2a, 0xd9, 0x67, 0x29, 0x3c, 0xfb, 0xc1, 0xc2, 0x4a, 0x8d, 0xbc, 0x90, 0x9a, 0xcd, 0x78}} return a, nil } -var _lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xcb\x6b\x83\x40\x10\xc6\xef\xfe\x15\x83\x87\xa2\x50\xa4\x87\xd2\x43\x68\x1a\xd2\x3c\xda\x92\x10\x83\xa6\xaf\xe3\x44\xc7\x28\x9a\x5d\x19\x57\xb4\x94\xfc\xef\x45\xd7\x3c\x4b\x8f\xdd\xcb\x82\xfb\xcd\x37\xbf\xf9\x9c\x64\x9b\x4b\x56\x30\x97\x41\x4a\xe1\x4a\xa6\x24\x0a\x88\x58\x6e\xe1\xa6\x9e\xbb\xa3\xd9\x64\xbc\x72\x67\x93\xc5\x70\x3c\xf6\x26\xbe\x6f\x74\x6a\x5f\x61\x9a\x88\xcd\x92\x65\xfd\xb5\x57\xfb\xab\xe1\xec\x65\xf1\xb4\xf4\xdc\x8f\xcf\x0b\xf9\xb4\x14\x9b\x64\x9d\x51\x6b\xaf\xf5\xe6\xd9\x37\xd3\x30\x14\xa3\x28\x30\x50\x89\x14\x16\x6e\x65\x29\x54\x0f\x5e\xa7\x49\x7d\x77\x6b\xc3\xb7\x61\x00\x00\x64\xa4\x20\x96\x59\x48\xec\x51\xd4\x03\x2c\x55\x6c\x9d\x72\x3b\xed\xe5\xe6\xc4\xd8\xd8\x14\xd7\xe7\x8d\x9d\xf7\x44\xc5\x21\x63\x85\xeb\x8c\x6c\xb8\xfa\x5d\xfa\xdc\x9a\xeb\x66\x39\x53\x8e\x4c\x16\x06\x81\x86\x69\xdb\x3d\x4a\x66\x59\xbd\x61\x56\x36\x0e\x43\xfd\xd6\x00\x42\x77\x0a\xca\x22\xe7\x00\x09\x7d\xe8\xea\x9d\x42\x49\xc6\x0d\x39\xeb\xd6\xe1\xfe\xbf\xe0\x1f\xac\x26\xde\x1e\xfc\xf5\xee\x6b\x8c\x25\xaa\xd8\x3e\x40\x37\x67\x30\x80\x1c\x45\x12\x58\xe6\x48\x96\x59\x08\x42\x2a\xd0\xac\xc0\x14\x11\x93\x08\x08\x94\x84\x13\x2f\x53\x3b\xec\x74\x60\x54\x53\x50\x2a\x3a\xc9\xa2\xf9\x5f\x85\xc2\x94\x58\x2f\x4a\xff\x22\x9d\x2e\x0b\xbf\x95\x58\xb6\x71\x0c\xf1\x58\xe4\x54\xdd\xdc\x1e\x55\xc8\xe1\x7e\xa4\xc3\x8a\xe8\x7b\x0f\xb2\x33\x7e\x02\x00\x00\xff\xff\xb7\x10\xb2\xbb\xcf\x02\x00\x00" +var _lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4d\x6b\xbb\x40\x10\xc6\xef\x7e\x8a\xc1\x43\x50\xf8\x23\xff\x43\xe9\x21\x34\x0d\x69\x5e\xda\x92\x10\x83\xa6\x6f\xc7\x89\x8e\x51\x34\xbb\x32\xae\x68\x29\xf9\xee\x45\xd7\xbc\x96\x1e\xbb\x97\x05\xf7\x99\x67\x7e\xf3\x38\xc9\x2e\x97\xac\x60\x21\x83\x94\xc2\xb5\x4c\x49\x14\x10\xb1\xdc\xc1\xff\x7a\xe1\x8e\xe7\xd3\xc9\xda\x9d\x4f\x97\xa3\xc9\xc4\x9b\xfa\xbe\xd1\xa9\x7d\x85\x69\x22\xb6\x2b\x96\xf5\xe7\x41\xed\xaf\x47\xf3\xe7\xe5\xe3\xca\x73\xdf\x3f\xae\xe4\xb3\x52\x6c\x93\x4d\x46\xad\xbd\xd6\x9b\x17\xdf\x4c\xc3\x50\x8c\xa2\xc0\x40\x25\x52\x58\xb8\x93\xa5\x50\x7d\x78\x99\x25\xf5\xed\x8d\x0d\x5f\x86\x01\x00\x90\x91\x82\x58\x66\x21\xb1\x47\x51\x1f\xb0\x54\xb1\x75\xce\xed\xb4\x97\x9b\x13\x63\x63\x53\xfc\xbb\x6c\xec\xbc\x25\x2a\x0e\x19\x2b\x1b\x7a\x3f\xcb\x9e\x5a\x63\xdd\x28\x67\xca\x91\xc9\xc2\x20\xd0\x20\x6d\xab\x07\xc9\x2c\xab\x57\xcc\x4a\xb2\xa1\x37\xd2\x6f\x0d\x1c\x74\xa7\xa0\x2c\x72\x8e\x80\x30\x80\xae\xde\x29\x94\x64\xdc\x92\xb3\x69\x1d\xee\xfe\x02\xfc\xde\x6a\x62\xed\xc3\x6f\xef\xbe\x46\x58\xa1\x8a\xed\x23\x70\x73\x86\x43\xc8\x51\x24\x81\x65\x8e\x65\x99\x85\x20\xa4\x02\xcd\x09\x4c\x11\x31\x89\x80\x40\x49\x38\xf3\x32\xb5\xc3\x5e\x87\x45\x35\x05\xa5\xa2\xb3\x1c\x9a\xff\x54\x28\x4c\x89\xf5\x82\x0c\xae\x92\xe9\x72\xf0\x5b\x89\x65\x1b\xa7\x00\x4f\x45\x4e\xd5\xcd\xec\x51\x85\x1c\x1e\x46\x3a\xae\x86\xbe\x0f\x20\x7b\xe3\x3b\x00\x00\xff\xff\xaf\x17\x1b\xe7\xc7\x02\x00\x00" func lockedtokensStakerWithdraw_rewarded_tokens_lockedCdcBytes() ([]byte, error) { return bindataRead( @@ -4417,11 +4417,11 @@ func lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0x3, 0x18, 0x3c, 0x52, 0xe9, 0x7d, 0xec, 0x4, 0x64, 0x8e, 0xea, 0xeb, 0x48, 0xae, 0xd2, 0x9d, 0xa2, 0xc4, 0x8d, 0x1, 0x71, 0x46, 0x5f, 0xa0, 0x74, 0xbe, 0x23, 0x71, 0x26, 0xd8, 0x66}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x25, 0x86, 0x34, 0xa6, 0x2e, 0xc3, 0xda, 0xba, 0x62, 0x15, 0x19, 0x67, 0xc5, 0x60, 0xa3, 0xb5, 0x8a, 0xeb, 0xa4, 0xe5, 0xef, 0xc, 0x40, 0xe1, 0x2a, 0xcf, 0x9, 0x47, 0xbb, 0xa9, 0xed, 0x6b}} return a, nil } -var _lockedtokensStakerWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xcb\x6a\xf3\x30\x10\x85\xf7\x7e\x8a\xc1\x8b\x1f\x1b\x7e\x4c\x17\xa5\x8b\xd0\x34\xa4\xb9\xb4\x25\x21\x0e\x71\xd2\xcb\x72\x62\x8f\x63\x63\x47\x32\x63\x99\xb8\x94\xbc\x7b\xb1\xe4\x5c\x4b\x97\xd5\x46\x20\x9d\x39\xf3\xe9\x68\xd2\x6d\x21\x59\xc1\x54\x86\x19\x45\x4b\x99\x91\x28\x21\x66\xb9\x85\x9b\x7a\xea\x0f\x26\xa3\xe1\xd2\x9f\x8c\x66\xfd\xe1\x70\x31\x0a\x02\xab\x55\x07\x0a\xb3\x54\x6c\xe6\x2c\xeb\xcf\x83\x3a\x58\xf6\x27\x2f\xb3\xa7\xf9\xc2\x7f\xff\xb8\x92\x8f\x2b\xb1\x49\xd7\x39\x69\x7b\xa3\xb7\x2f\xce\x6c\xcb\x52\x8c\xa2\xc4\x50\xa5\x52\x38\xb8\x95\x95\x50\x1d\x58\x8d\xd3\xfa\xee\xd6\x85\x2f\xcb\x02\x00\xc8\x49\x41\x22\xf3\x88\x78\x41\x71\x07\xb0\x52\x89\x73\xce\xed\xe9\xcd\x2f\x88\xb1\xb1\x29\xff\x5f\x36\xf6\xde\x52\x95\x44\x8c\x3b\x5c\xe7\xe4\xc2\xbf\x9f\xa5\xcf\xda\xdc\x34\x2b\x98\x0a\x64\x72\x30\x0c\x0d\x8c\x6e\xf7\x28\x99\xe5\xee\x15\xf3\xaa\x71\xe8\x9b\xbb\x06\x10\xda\x55\x52\x1e\x7b\x47\x48\xe8\x42\x5b\xef\x95\x4a\x32\x6e\xc8\x5b\x6b\x87\xfb\xbf\x82\x7f\x70\x9a\x78\x3b\xf0\xdb\x7d\x60\x30\xe6\xa8\x12\xf7\x08\xdd\xac\x5e\x0f\x0a\x14\x69\xe8\xd8\x03\x59\xe5\x11\x08\xa9\xc0\xb0\x02\x53\x4c\x4c\x22\x24\x50\x12\xce\xbc\x6c\xe3\xb0\x37\x81\x51\x4d\x61\xa5\xe8\x2c\x8b\xe6\xbf\x4a\x85\x19\xb1\x19\x94\xee\x55\x3a\x6d\x16\x81\x96\x38\xae\x75\x0a\xf1\x54\xe4\xed\xda\x77\xaf\x84\x3e\x6d\x9f\x74\x1c\x11\xb3\x1f\x40\xf6\xd6\x77\x00\x00\x00\xff\xff\x98\x24\x02\x95\xcf\x02\x00\x00" +var _lockedtokensStakerWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4b\x6b\xeb\x30\x10\x85\xf7\xfe\x15\x83\x17\xc1\x86\x8b\xb9\x8b\xcb\x5d\x84\xa6\x21\xcd\xa3\x2d\x09\x71\x88\x93\x3e\x96\x8a\x3d\x8e\x8d\x1d\xc9\x8c\xc7\xc4\xa5\xe4\xbf\x17\x4b\xce\xb3\x74\x59\x6d\x04\xd2\x99\x33\x9f\x8e\x26\xdd\x15\x8a\x18\x66\x2a\xcc\x30\x5a\xa9\x0c\x65\x09\x31\xa9\x1d\xfc\xad\x67\xfe\x70\x3a\x1e\xad\xfc\xe9\x78\x3e\x18\x8d\x96\xe3\x20\xb0\x5a\x75\xc0\x22\x4b\xe5\x76\x41\xaa\xfe\x38\xaa\x83\xd5\x60\xfa\x3c\x7f\x5c\x2c\xfd\xb7\xf7\x1b\xf9\xa4\x92\xdb\x74\x93\xa3\xb6\x37\x7a\xfb\xea\xcc\xb6\x2c\x26\x21\x4b\x11\x72\xaa\xa4\x23\x76\xaa\x92\xdc\x85\xf5\x24\xad\xff\xff\x73\xe1\xd3\xb2\x00\x00\x72\x64\x48\x54\x1e\x21\x2d\x31\xee\x82\xa8\x38\x71\x2e\xb9\x3d\xbd\xf9\x05\x92\x68\x6c\xca\x3f\xd7\x8d\xbd\xd7\x94\x93\x88\xc4\xde\x85\xce\xf7\xb2\x27\x6d\x6c\x1a\x15\x84\x85\x20\x74\x44\x18\x1a\x10\xdd\xea\x41\x11\xa9\xfd\x8b\xc8\x2b\x74\xa1\x33\x30\x77\x0d\x1c\xb4\xab\xc4\x3c\xf6\x4e\x80\xd0\x83\xb6\xde\x2b\x59\x91\xd8\xa2\xb7\xd1\x0e\x77\xbf\x01\x7e\xef\x34\xb1\x76\xe1\xa7\xfb\xc0\x20\x2c\x04\x27\xee\x09\xb8\x59\xfd\x3e\x14\x42\xa6\xa1\x63\x0f\x55\x95\x47\x20\x15\x83\xe1\x04\xc2\x18\x09\x65\x88\xc0\x0a\x2e\xbc\x6c\xe3\x70\x30\x61\x61\x8d\x61\xc5\x78\x91\x43\xf3\x4f\x25\x8b\x0c\xc9\x0c\x48\xef\x26\x99\x36\x87\x40\x4b\x1c\xd7\x3a\x07\x78\x2e\xf2\xf6\xed\x9b\xd7\x52\x9f\xb6\x4f\x3a\x8d\x86\xd9\x8f\x20\x07\xeb\x2b\x00\x00\xff\xff\x80\x23\xab\xc9\xc7\x02\x00\x00" func lockedtokensStakerWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4437,11 +4437,11 @@ func lockedtokensStakerWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x18, 0x8e, 0x21, 0xf0, 0xf8, 0xe9, 0x4a, 0xd9, 0x3, 0xbc, 0x56, 0xef, 0x32, 0x22, 0xe7, 0xbc, 0x2c, 0x9e, 0x5c, 0x9b, 0x2b, 0x34, 0x4a, 0x58, 0xd8, 0x46, 0x50, 0x92, 0xc4, 0x4b, 0x8f, 0x3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc, 0x11, 0xde, 0xf4, 0x53, 0xf1, 0x44, 0x19, 0x17, 0xd1, 0x91, 0x27, 0x12, 0xc9, 0xe4, 0x4f, 0xc6, 0xda, 0x2, 0xec, 0xb5, 0xae, 0x1f, 0x0, 0x90, 0x2d, 0xe2, 0x22, 0x84, 0x67, 0x54, 0x40}} return a, nil } -var _lockedtokensUserDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x52\xcd\x6e\xf2\x30\x10\xbc\xe7\x29\x56\x39\xa0\xe4\xf0\x99\xef\x50\xf5\x80\x68\x11\xe5\x47\x95\x40\xa5\x02\x4a\xcf\xc6\xd9\x90\x08\x63\x47\xce\xa6\x41\xaa\x78\xf7\xca\xce\x8f\xc8\x21\x52\xeb\x8b\x15\xef\xcc\xec\xcc\x66\xd3\x4b\xa6\x0d\xc1\xb2\x50\xa7\xf4\x28\x71\xaf\xcf\xa8\x20\x36\xfa\x02\x7e\xe7\xcd\xf7\x1a\xa4\xd4\x65\x07\xd5\x7c\xb7\x88\xb5\x16\x67\x8c\xdc\x5b\x5e\x81\xfe\x5f\xd7\x9b\xd9\x6a\x31\xdf\x6f\x56\x8b\xb7\xe9\x7c\xbe\x5d\xec\x76\x9e\x47\x86\xab\x9c\x0b\x4a\xb5\x0a\xf8\x45\x17\x8a\x46\xf0\xb1\x4c\xaf\x8f\x0f\x21\x7c\x7b\x1e\x00\x80\x44\x82\x44\xcb\x08\xcd\x16\xe3\x11\x0c\xee\xa5\x99\xbb\x5e\x5d\xb5\x05\x7f\xf1\x42\x92\xc3\xf2\x82\x92\xa0\x13\x81\x7d\xa6\x94\x44\x86\x97\xfc\x28\x31\x84\x41\xeb\x9c\x1d\x2c\xab\xea\x98\x19\xcc\xb8\xc1\x80\x0b\x41\xb5\xc8\x8b\x36\x46\x97\x07\x2e\x0b\xcb\x9a\x0a\x61\xad\x5a\x8b\x50\x9f\x1c\x65\xcc\x5a\x9b\xf0\x04\x96\xcc\x72\xd2\x86\x9f\x90\x1d\x1d\x7d\xdc\xeb\xfd\x39\xb0\x33\x1a\x41\x5f\x7d\x57\xe9\xbc\x73\x4a\xc2\xb6\xa5\x3d\x93\x09\x64\x5c\xa5\x22\xf0\x67\xba\x90\x11\x28\x4d\x50\x35\x03\x0e\x06\x63\x34\xa8\x04\x02\x69\xb8\x53\xf3\x43\xaf\xeb\xbb\x99\x58\x8f\xed\x3f\x8f\xb1\x89\x33\xac\x85\x86\x71\x53\x77\xe5\x5f\x47\xb0\x34\x20\xb7\x68\xce\xa2\x4d\xe4\x57\xec\x5b\x15\x01\xaf\x28\x0a\xc2\xde\x1f\xc1\x22\xcc\x74\x9e\x52\x6d\x68\xfc\xaf\x93\x97\x95\x75\x8c\x76\xf7\xaa\x3b\x6c\x7a\xdc\xbc\x9f\x00\x00\x00\xff\xff\x17\xfc\xa1\x8a\x1c\x03\x00\x00" +var _lockedtokensUserDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x92\xcb\x6e\xf2\x30\x10\x85\xf7\x79\x8a\x51\x16\x28\x59\xfc\xe6\x5f\x54\x5d\x20\x5a\x44\xb9\xa8\x12\xa8\x54\x40\xe9\xda\x38\x13\x12\x61\xec\xc8\x99\x34\x48\x15\xef\x5e\xd9\xb9\x88\x2c\x22\xb5\xde\x58\xf1\x9c\x39\xf3\x1d\xc7\xe9\x25\xd3\x86\x60\x59\xa8\x53\x7a\x94\xb8\xd7\x67\x54\x10\x1b\x7d\x01\xbf\x73\xe6\x7b\x8d\x52\xea\xb2\xa3\x6a\xbe\x5b\xc5\x5a\x8b\x33\x46\xee\x2c\xaf\x44\xff\xaf\xeb\xcd\x6c\xb5\x98\xef\x37\xab\xc5\xdb\x74\x3e\xdf\x2e\x76\x3b\xcf\x23\xc3\x55\xce\x05\xa5\x5a\x05\xfc\xa2\x0b\x45\x23\xf8\x58\xa6\xd7\xc7\x87\x10\xbe\x3d\x0f\x00\x40\x22\x41\xa2\x65\x84\x66\x8b\xf1\x08\x06\xf7\xd6\xcc\x6d\xaf\xae\xda\x8a\xbf\x78\x21\xc9\x69\x79\x41\x49\xd0\x89\xc0\x3e\x53\x4a\x22\xc3\xcb\x10\x06\x2d\x35\x3b\xd8\x8e\x6a\x5a\x66\x30\xe3\x06\x03\x2e\x04\xd5\x06\x2f\xda\x18\x5d\x1e\xb8\x2c\x30\x84\xc1\x54\x08\x8b\x69\xf1\xa0\x5e\x39\xca\x98\xb5\x88\xf0\x04\xb6\x99\xe5\xa4\x0d\x3f\x21\x3b\xba\xf6\x71\x2f\xf7\x73\x60\xef\x67\x04\x7d\xf5\x5d\xe5\xf3\xce\x29\x09\xdb\x91\x76\x4d\x26\x90\x71\x95\x8a\xc0\x9f\xe9\x42\x46\xa0\x34\x41\x35\x0c\x38\x18\x8c\xd1\xa0\x12\x08\xa4\xe1\xce\xcd\x0f\xbd\x2e\x77\x73\x5b\x3d\xd8\x7f\xba\xc2\x26\xca\xb0\x36\x19\xc6\x4d\xdd\x95\x7f\x8d\x6f\xdb\x80\xdc\x03\x73\x78\x36\x8d\x5f\x75\xdf\x2a\x7c\xbc\xa2\x28\x08\x7b\x7f\x02\x8b\x30\xd3\x79\x4a\x35\xd0\xf8\x5f\x27\x2b\x2b\xeb\x08\xed\x9b\xab\xf6\xb0\x99\x71\xf3\x7e\x02\x00\x00\xff\xff\x9e\x18\xa8\x05\x14\x03\x00\x00" func lockedtokensUserDeposit_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4457,7 +4457,7 @@ func lockedtokensUserDeposit_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/deposit_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0x3, 0x27, 0xf7, 0x27, 0x58, 0x6a, 0x48, 0x2b, 0xc6, 0x60, 0x59, 0xea, 0x48, 0x47, 0xf8, 0xc6, 0x8f, 0xa, 0xb6, 0xad, 0xf9, 0x4a, 0x75, 0x3, 0x49, 0x21, 0xb1, 0xad, 0x65, 0xfb, 0x1d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9b, 0xb9, 0x79, 0xed, 0xcd, 0xd, 0x2e, 0x84, 0xa0, 0xc1, 0x8d, 0x42, 0x96, 0x2a, 0xbf, 0x81, 0xcb, 0x53, 0x7c, 0x57, 0x1, 0x6b, 0xa0, 0x5a, 0xe5, 0xd6, 0x50, 0x52, 0x8f, 0x5f, 0x10, 0x5e}} return a, nil } @@ -4561,7 +4561,7 @@ func lockedtokensUserGet_unlock_limitCdc() (*asset, error) { return a, nil } -var _lockedtokensUserWithdraw_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x5f\x4f\xc2\x30\x14\xc5\xdf\xf7\x29\x6e\xf6\x60\xb6\x44\x8b\x0f\xc6\x07\x82\x12\xe4\x4f\x4c\x20\x62\x00\xf1\xb9\x74\x77\x6c\xa1\xb4\x4b\x77\xe7\x48\x0c\xdf\xdd\x74\xff\x64\x1a\x89\x3e\xd8\x97\x66\xed\x3d\xe7\x9e\xdf\x6e\xe3\x7d\xa2\x0d\xc1\x24\x53\xdb\x78\x23\x71\xa5\x77\xa8\x20\x34\x7a\x0f\x6e\xeb\xcc\x75\xea\x4a\xa9\xf3\x56\x55\xfd\xdd\x54\xcc\xb4\xd8\x61\x50\x9c\xa5\x65\xd1\xf5\x61\x36\x1f\x4e\xc7\xa3\xd5\x7c\x3a\x7e\x1a\x8c\x46\x8b\xf1\x72\xe9\x38\x64\xb8\x4a\xb9\xa0\x58\x2b\x8f\xef\x75\xa6\xa8\x0b\x2f\x93\xf8\x70\x7b\xe3\xc3\xbb\xe3\x00\x00\x48\x24\x88\xb4\x0c\xd0\x2c\x30\xec\x02\xcf\x28\xf2\x4e\xed\x59\xb1\xcd\x13\x34\xdc\xda\xa4\x97\x6d\x10\xf6\x1a\x53\x14\x18\x9e\xf3\x8d\x44\x1f\x2e\xbe\x4b\x1f\x0b\xf3\xa6\xd7\x1b\xcf\x24\x7d\xb6\x3a\x6b\xd6\x80\xb3\xb5\x55\x95\x81\x13\x83\x09\x37\xe8\x71\x21\xa8\x32\x79\xd0\xc6\xe8\x7c\xcd\x65\x66\x55\x03\x21\x2c\xa9\x25\x84\x6a\xa5\x28\x43\xd6\x50\xc2\x1d\x58\x31\x4b\x49\x1b\xbe\x45\xb6\x29\xe4\xbd\xff\x42\xbf\xf7\xec\x84\xba\xf0\xd3\xfd\xb2\x8c\xf1\xcc\x29\xf2\x9b\xc4\x76\xf5\xfb\x90\x70\x15\x0b\xcf\x1d\xea\x4c\x06\xa0\x34\x41\x99\x15\x38\x18\x0c\xd1\xa0\x12\x08\xa4\xe1\xc4\xcd\xf5\x9d\x36\x76\xfd\xc3\xcf\x51\xff\x65\x0a\x35\x4e\xa7\x32\xea\x84\xf5\x7d\x71\xfd\x6b\x04\x2b\x03\x2a\x9e\x79\x11\xd1\x12\xb9\xa5\xfa\x58\x22\xe0\x01\x45\x46\xf8\x75\x8e\x35\x10\x0b\x30\xd1\x69\x4c\x55\x9e\xde\x55\x7b\xca\x2c\xaf\x30\x9a\x97\x5f\xee\x7e\xdd\xe3\xe8\x7c\x04\x00\x00\xff\xff\xf2\x89\xe1\xd6\x9a\x03\x00\x00" +var _lockedtokensUserWithdraw_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xcb\x6e\xf2\x30\x10\x85\xf7\x79\x8a\x51\x16\x28\x91\xfe\xdf\x74\x51\x75\x81\x68\x11\xe5\xa2\x4a\xa0\x52\x01\xa5\x6b\xe3\x4c\x48\x84\xb1\x23\x67\xd2\x20\x55\xbc\x7b\xe5\xdc\x4a\x5a\x51\xb1\x69\x36\x56\xec\x39\x67\xce\xe7\x71\x7c\x48\xb4\x21\x98\x66\x6a\x17\x6f\x25\xae\xf5\x1e\x15\x84\x46\x1f\xc0\x6d\xed\xb9\x4e\x5d\x29\x75\xde\xaa\xaa\xff\x9b\x8a\xb9\x16\x7b\x0c\x8a\xbd\xb4\x2c\xba\x39\xce\x17\xa3\xd9\x64\xbc\x5e\xcc\x26\xcf\xc3\xf1\x78\x39\x59\xad\x1c\x87\x0c\x57\x29\x17\x14\x6b\xe5\xf1\x83\xce\x14\xf5\xe0\x75\x1a\x1f\xef\x6e\x7d\xf8\x70\x1c\x00\x00\x89\x04\x91\x96\x01\x9a\x25\x86\x3d\xe0\x19\x45\xde\xb9\x3d\x2b\x96\x45\x82\x86\x5b\x9b\xf4\x5f\x1b\x84\xbd\xc5\x14\x05\x86\xe7\x3e\x74\x7e\xca\x9e\x0a\xe3\xa6\xcf\x3b\xcf\x24\x7d\xb5\xb9\x68\xd4\x00\xb3\x8d\x55\x94\x41\x13\x83\x09\x37\xe8\x71\x21\xa8\x32\x78\xd4\xc6\xe8\x7c\xc3\x65\x86\x3e\x74\x86\x42\x58\x42\x4b\x06\xd5\x97\xa2\x0c\x59\x43\x07\xf7\x60\xc5\x2c\x25\x6d\xf8\x0e\xd9\xb6\x90\xf7\xff\x02\xf9\xc1\xb3\x53\xe9\xc1\xa5\xf3\x55\x19\xe1\x85\x53\xe4\x37\x69\xed\x37\x18\x40\xc2\x55\x2c\x3c\x77\xa4\x33\x19\x80\xd2\x04\x65\x4e\xe0\x60\x30\x44\x83\x4a\x20\x90\x86\x33\x37\xd7\x77\xda\xc8\xf5\x45\xff\x46\x7c\xed\xed\xd7\x28\xdd\xca\xa4\x1b\xd6\xe7\xc5\xf1\xd5\xf1\xad\x0c\xa8\x78\xd6\x45\x3c\x4b\xe3\x96\xea\x53\x19\x1f\x8f\x28\x32\xc2\xef\xf3\xab\x61\x58\x80\x89\x4e\x63\xaa\xf2\xf4\xff\xb7\xa7\xcb\xf2\x0a\xa1\x79\xe9\xe5\xea\xd7\x3d\x4e\xce\x67\x00\x00\x00\xff\xff\x99\x06\x1e\xd1\x8a\x03\x00\x00" func lockedtokensUserWithdraw_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4577,7 +4577,7 @@ func lockedtokensUserWithdraw_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/withdraw_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x0, 0x9, 0xaa, 0x2e, 0xe9, 0xe0, 0xa2, 0x7e, 0xa1, 0xd7, 0x2e, 0x12, 0xde, 0x32, 0x3f, 0xfe, 0x1b, 0xaa, 0xd7, 0xe6, 0xd6, 0x32, 0x74, 0x1b, 0xb5, 0xd8, 0x31, 0xea, 0x85, 0x4c, 0xc8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x20, 0x29, 0xc, 0x2a, 0x18, 0xd0, 0x50, 0x85, 0xfb, 0x9f, 0x61, 0x34, 0xcb, 0x8b, 0x42, 0xee, 0xe7, 0x40, 0xc, 0xea, 0xbc, 0xbc, 0xcd, 0xe1, 0xca, 0x2d, 0xc, 0xd0, 0xc0, 0xd8, 0xd7, 0xcc}} return a, nil } @@ -5241,7 +5241,7 @@ func stakingcollectionCreate_machine_accountCdc() (*asset, error) { return a, nil } -var _stakingcollectionCreate_new_tokenholder_acctCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x56\x5b\x8f\xe2\x36\x14\x7e\xe7\x57\x9c\xdd\x87\x51\x22\xb1\xa1\x7d\x45\x33\x23\x51\x86\x6e\x47\xd0\x65\x54\xe8\xf6\x61\xb5\x0f\x26\x39\x10\x17\x63\x47\xb6\x03\x8b\xaa\xf9\xef\x95\x63\x27\xb1\x43\xd0\xd0\x8b\x2a\x95\x17\x62\xfb\x5c\xbe\xf3\x9d\x8b\x4d\x0f\x85\x90\x1a\xa6\xf2\x5c\x68\x31\x70\xab\x1f\x99\x38\xad\xc5\x1e\x39\x6c\xa5\x38\xc0\xfb\x66\xfd\xbe\x91\x28\xf9\x8e\x6e\x18\x06\x52\xfe\x5e\x23\xb9\x10\xe9\x1e\xb3\x6a\x4f\x59\xc1\xef\xbe\x2d\x96\xd3\xf9\xec\x69\xbd\x9c\xcf\x3e\x4d\x9e\x9e\x7e\x99\xad\x56\xbe\xe7\x95\x26\x7b\xca\x77\x53\xc1\x18\xa6\x9a\x0a\x5e\xab\xad\xd6\x93\xf9\xf3\xa7\x8f\xd3\xe5\x62\x31\x9b\xae\x9f\x97\x8d\xf2\x60\x34\x82\x75\x4e\x15\x68\x49\xb8\x22\x56\x89\x30\x26\x4e\x0a\x74\x8e\x90\x0a\xae\xa5\x31\x27\x41\x6c\xab\x1d\x56\xa1\x02\x92\xa6\xa2\xe4\xda\xe8\x6b\x01\xa9\x44\xa2\x11\x08\x70\x3c\x05\xb8\x93\xea\xef\x27\xc1\x32\x63\x61\xf3\x3b\xa6\x1a\x08\xcf\x40\x69\x21\x11\xa8\x06\xca\x9d\x96\x67\x90\x30\x25\x80\x64\x19\xe5\x3b\x20\xa0\x6c\x50\x90\xb6\x51\x39\x43\x5a\x54\x88\x7c\x6d\xa3\x3e\x47\x2c\x8c\xdd\x03\xe5\x19\xe8\x9c\x68\xd0\x26\xc2\x4c\xa0\x02\x2e\x8c\xcb\x23\x61\x34\x33\x80\x8d\x3a\x7e\xa3\x4a\x1b\x07\x3e\x54\x0f\xcd\x5a\x84\x1a\x44\xd7\xa7\x43\x38\x8b\x12\x38\x62\x66\xa0\x20\xd5\x39\x4a\xc8\x90\xa1\xb3\xec\x1b\x94\xa8\x44\x29\x53\x34\x16\x85\x59\x1e\xc5\x1e\x0d\xd3\xb0\xc7\xb3\x4b\xaf\x6f\x7b\x30\xf0\x32\x12\x15\xe5\x86\xd1\x74\x8e\x67\x35\x86\x2f\xb6\xe2\x92\x39\x9e\x17\x54\xe9\x19\xd7\xf2\xfc\x35\x86\x3f\x06\x00\x00\x85\xc4\x82\x48\x8c\x14\xdd\x71\x94\x63\x20\xa5\xce\xa3\x1f\x84\x94\xe2\xf4\x99\xb0\x12\x87\xb0\xd2\x42\x92\x1d\x0e\x61\x4a\x0a\xb2\xa1\x8c\x6a\x8a\x2a\x86\xbb\x89\xf5\x6b\x0c\x55\x96\xcc\x6f\x34\x82\xa9\xcd\x6c\x87\xe7\x2a\x87\x24\xcb\xc0\x02\xab\x62\x48\x1a\x35\x86\xda\x08\x3b\x8b\xf0\x00\xee\x2b\x2a\xc8\xd9\x80\xb2\xe0\xe2\x46\x7e\x2b\xa4\xb1\x60\x72\xd6\x06\xea\x02\xaa\x7f\xad\xbd\xa4\x72\x46\xb2\xac\x65\x65\x6c\xd4\x93\x66\x39\x84\x9c\xa8\x7c\xc2\x76\x42\x52\x9d\x1f\xec\x69\xb0\x35\x84\x13\xd2\x5d\xae\xed\x91\xfd\x6e\xf1\xbc\x06\x0c\x7c\x44\xdd\x66\xf3\x67\xc2\xc9\x0e\x65\x4b\xde\xb9\x4e\x5d\xb7\x33\x42\x3a\xb4\xa7\xdc\xea\x4e\xdb\xee\x7a\x70\xac\x24\xa9\x97\x96\x44\xd9\x64\x25\x3b\xd4\xad\xac\x8a\xb6\x42\xbe\x10\x9d\x8f\xc3\x56\xf3\x16\xce\x93\xcb\xb5\x91\x8d\xbf\x7c\xff\xf5\xdd\x0d\x90\xe0\xe1\x4d\xac\x2d\xc4\x33\x10\xf5\xce\xe3\xe2\xbe\x2a\xb7\x60\x9a\x25\xbf\x51\x9d\x67\x92\x9c\xc8\x86\x61\x0c\x77\x6f\x20\x7e\x0c\xa8\xff\x55\xd9\xca\x3b\x38\xd6\x3d\xc7\xdd\xa1\xe3\xf5\x5a\x0f\xf3\xae\x09\xef\x3f\x84\x8c\x59\x0b\x9e\x6a\x14\xd4\x9c\x4d\xe8\x24\xcb\x24\x2a\x55\x97\xad\xa9\x3c\xb3\x1e\x06\xa2\x3e\x67\xe3\x2b\x0c\x36\x0a\x71\x10\xe4\x8a\x1c\xaf\x8f\x8b\x9e\x19\x57\xf5\x5e\x13\xbb\x6b\xc0\x96\x99\x36\x7a\xaf\x65\xea\x3a\x52\xe4\x88\x61\x8c\xf7\x1f\x3c\x82\xba\x31\x8d\xaf\xce\x72\xaf\xb2\xfa\xc2\xea\x10\x3f\x25\x05\x3c\xf8\x78\xfa\x8a\x3c\xf0\x9d\x50\xa5\x4a\xbc\xbf\xbb\xe6\xff\x31\xba\x01\x59\xdc\x47\x45\xe0\xba\x62\x4f\xe5\xd1\x65\x2e\x1b\xe0\x21\x27\x44\xf7\x36\x9d\x33\xfe\xcc\xb7\xe2\xa5\x4a\x48\x97\x98\x9e\x91\xea\x03\xa9\x46\xa0\xc9\x73\xe5\x1b\x72\x77\x09\xf1\x0c\x4a\xee\xc6\xca\x91\x94\xac\x33\x54\xec\x89\xab\x98\x37\xf9\x75\x94\xbe\xd1\xa2\xc3\x9e\x94\x2f\x0b\x94\xc4\xdc\x43\xaa\xdb\xc0\x7f\x3f\x23\x06\xff\xb6\x79\x2c\xfd\x4b\xe0\x63\xb8\x6b\x1e\x5c\xc9\x67\x43\xd8\x63\x34\x72\x16\x46\x8d\xb7\xea\xa0\x45\xd2\x93\x1a\x3b\x52\xdc\x6b\x0a\xbc\xe7\x94\xc9\x48\x51\x6a\xf7\x70\xa9\xb1\x35\x16\xe8\x36\xc8\x49\x92\xe6\x98\xee\xa3\xf8\xfa\x55\x76\xbd\x2f\x6d\x6f\xf6\xbf\xea\xdc\xdc\xba\xd8\xbf\xb4\x60\x7e\x75\x05\x55\x61\x8f\x5b\xd2\x87\xbd\xd2\x5e\xf1\x8f\x83\x60\x2e\xa4\xe3\x4b\x03\x66\x62\xf4\x23\xbe\xd8\xe9\x1b\x20\xb6\x57\xea\xaf\x57\x40\xa6\xf0\x7f\xcb\x1d\xa7\xec\xbf\xa7\x2c\x98\x33\x2f\x76\xb8\x01\xe9\xdc\x9b\xd5\xbb\xbe\x62\x21\xeb\x79\x5c\x87\x23\x46\x75\x41\xdc\x34\xca\xeb\xe9\x7d\x63\x60\x8f\x21\xf9\xff\x80\x0e\xef\x0a\xfa\x4b\x23\xbf\x2f\xcc\xcb\xc1\x7f\x23\xb0\xde\x1b\xc0\xa6\xe7\xf5\xcf\x00\x00\x00\xff\xff\xb1\x0e\x61\xfa\x35\x0e\x00\x00" +var _stakingcollectionCreate_new_tokenholder_acctCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x56\xdf\x8f\xe2\x36\x10\x7e\xe7\xaf\x98\xbb\x87\x55\x22\x71\xa1\x7d\x45\xbb\x2b\x51\x96\x5e\x57\xd0\x63\x55\xe8\xf5\xe1\x74\x0f\xde\x64\x20\x2e\xc1\x8e\x6c\x07\x16\x55\xfb\xbf\x57\xfe\x91\xc4\x0e\xa1\x4b\x7f\xa8\xd2\xf1\x42\xec\x78\x66\xbe\xf9\x66\xe6\x8b\xe9\xbe\xe4\x42\xc1\x54\x9c\x4a\xc5\x07\x6e\xf5\x63\xc1\x8f\x6b\xbe\x43\x06\x1b\xc1\xf7\xf0\xbe\x59\xbf\x6f\x4e\x54\x6c\x4b\x9f\x0b\x0c\x4e\xf9\x7b\xcd\xc9\x05\x4f\x77\x98\x99\x3d\x69\x0f\x7e\xf7\xb2\x58\x4e\xe7\xb3\x87\xf5\x72\x3e\xfb\x34\x79\x78\xf8\x65\xb6\x5a\xf9\x91\x57\x8a\xec\x28\xdb\x4e\x79\x51\x60\xaa\x28\x67\xb5\xd9\x6a\x3d\x99\x3f\x7e\xfa\x38\x5d\x2e\x16\xb3\xe9\xfa\x71\xd9\x18\x0f\x46\x23\x58\xe7\x54\x82\x12\x84\x49\x62\x8d\x48\x51\xf0\xa3\x04\x95\x23\xa4\x9c\x29\xa1\xdd\x09\xe0\x1b\xb3\x53\x18\x54\x40\xd2\x94\x57\x4c\x69\x7b\xc5\x21\x15\x48\x14\x02\x01\x86\xc7\x00\x77\x62\xfe\x7e\xe2\x45\xa6\x3d\x3c\xff\x8e\xa9\x02\xc2\x32\x90\x8a\x0b\x04\xaa\x80\x32\x67\xe5\x39\x24\x85\xe4\x40\xb2\x8c\xb2\x2d\x10\x90\x36\x29\x48\xdb\xac\x9c\x23\xc5\x0d\x22\xdf\x5a\x9b\xcf\x11\x4b\xed\x77\x4f\x59\x06\x2a\x27\x0a\x94\xce\x30\xe3\x28\x81\x71\x1d\xf2\x40\x0a\x9a\x69\xc0\xda\x1c\x5f\xa8\x54\x3a\x80\x0f\xd5\x43\xb3\xe6\xa1\x05\x51\xf5\xdb\x21\x9c\x78\x05\x0c\x31\xd3\x50\x90\xaa\x1c\x05\x64\x58\xa0\xf3\xec\x3b\x14\x28\x79\x25\x52\xd4\x1e\xb9\x5e\x1e\xf8\x0e\x35\xd3\xb0\xc3\x93\x2b\xaf\xef\x7b\x30\xf0\x2a\x12\x95\xd5\x73\x41\xd3\x39\x9e\xe4\x18\xbe\xd8\x8e\x4b\xe6\x78\x5a\x50\xa9\x66\x4c\x89\xd3\xd7\x18\xfe\x18\x00\x00\x94\x02\x4b\x22\x30\x92\x74\xcb\x50\x8c\x81\x54\x2a\x8f\x7e\xe0\x42\xf0\xe3\x67\x52\x54\x38\x84\x95\xe2\x82\x6c\x71\x08\x53\x52\x92\x67\x5a\x50\x45\x51\xc6\x70\x33\xb1\x71\xb5\x23\xe3\x49\xff\x46\x23\x98\xda\xca\x76\x78\x36\x35\x24\x59\x06\x16\x98\xc9\x21\x69\xcc\x0a\x54\xfa\xb0\xf3\x08\x77\xe0\x9e\xa2\x92\x9c\x34\x28\x0b\x2e\x6e\xce\x6f\xb8\xd0\x1e\x74\xcd\xda\x44\x5d\x42\xf5\xaf\xf5\x97\x98\x60\x24\xcb\x5a\x56\xc6\xda\x3c\x69\x96\x43\xc8\x89\xcc\x27\xc5\x96\x0b\xaa\xf2\xbd\x7d\x1b\x6c\x0d\xe1\x88\x74\x9b\x2b\xfb\xca\x3e\xb7\x78\x5e\x03\x06\x3e\xa2\x6a\xab\xf9\x33\x61\x64\x8b\xa2\x25\xef\x54\x97\xae\x3b\x19\x21\x1d\xca\x33\x6e\x6d\xa7\xed\x74\xdd\x39\x56\x92\xd4\x2b\x4b\x22\x6d\xb1\x92\x2d\xaa\xf6\xac\x8c\x36\x5c\x3c\x11\x95\x8f\xc3\x51\xf3\x16\x2e\x92\xab\xb5\x3e\x1b\x7f\xf9\xfe\xeb\xbb\x2b\x20\xc1\xdd\x9b\x58\x5b\x88\x27\x20\xf2\x9d\xc7\xc5\xad\x69\xb7\x40\xcd\x92\xdf\xa8\xca\x33\x41\x8e\x31\xdc\xbc\x81\xf6\x3e\xa0\xfd\x57\x69\xbb\x6e\xef\x18\xf7\x82\x76\x05\xc7\x9b\xb3\x1e\xd6\xdd\x00\xde\x7e\x08\xd9\xb2\x1e\x3c\xd3\x28\xe8\x37\x5b\xcc\x49\x96\x09\x94\xb2\x6e\x59\xdd\x75\x7a\x3d\x0c\x8e\xfa\x7c\x8d\x2f\xb0\xd7\x18\xc4\x41\x92\x2b\x72\xb8\x2c\x15\x3d\xfa\x66\xe6\xae\xc9\xdd\x0d\x5f\xcb\x4c\x9b\xbd\x37\x2e\x75\x0f\x49\x72\xc0\x30\xc7\xdb\x0f\x1e\x41\xdd\x9c\xc6\x17\x75\xdc\xeb\xaa\xbe\xb4\x3a\xc4\x4f\x49\x09\x77\x3e\x9e\xbe\x06\x0f\x62\x27\x54\xca\x0a\x6f\x6f\x2e\xc5\xbf\x8f\xae\x40\x16\xf7\x51\x11\x84\x36\xec\xc9\x3c\x3a\xaf\x65\x03\x3c\xe4\x84\xa8\xde\x81\x73\xce\x1f\xd9\x86\x3f\x99\x82\x74\x89\xe9\x91\x53\x1f\x88\x91\x3f\x5d\x67\x13\x1b\x72\xf7\x01\x62\x19\x54\xcc\x49\xca\x81\x54\x45\x47\x50\xec\x1b\xd7\x31\x6f\xf2\xeb\x28\xfd\x8b\xf1\x1c\xf6\x94\x7b\x59\xa2\x20\xfa\xfb\x23\xbb\xc3\xfb\xcf\xab\xa1\xb1\x6f\x9a\x4b\xd2\x7f\x00\x3c\x86\x9b\xe6\x92\x95\x7c\xd6\x44\xdd\x47\x23\x67\x3d\x6a\x22\x99\x17\x2d\x8a\x9e\x92\x58\x29\x71\x37\x28\xf0\xae\x50\xba\x12\x65\xa5\xdc\x65\xa5\xc6\xd5\x78\xa0\x9b\xa0\x16\x49\x9a\x63\xba\x8b\xe2\xcb\x9f\xaf\xcb\xf3\x68\x67\xb2\xff\x26\xe7\xf4\xea\x6c\xff\xdc\x83\xfe\xd5\x9d\x63\xd2\x1e\xb7\x84\x0f\x7b\x4f\x7b\x4d\x3f\x0e\x92\x39\x3b\x1d\x9f\x3b\xd0\x4a\xd1\x8f\xf8\x6c\xa7\x4f\x38\xec\x8c\xd4\x4f\xaf\x80\x85\xc4\x6f\x96\x3b\x46\x8b\xff\x9f\xb2\x40\x5f\x9e\xac\xa8\x01\xe9\x7c\x2f\xcd\x5d\xde\xb0\x90\xf5\x5c\xa8\x43\x69\x91\x5d\x10\x57\x49\x78\xad\xda\x57\x26\x76\x1f\x92\xff\x2f\xe8\xf0\x3e\x3d\x7f\x4b\xea\xfb\xd2\x3c\x17\xfc\x2b\x81\xf5\x2a\xbf\x2d\xcf\xeb\x9f\x01\x00\x00\xff\xff\x50\x4c\xc8\x2f\x29\x0e\x00\x00" func stakingcollectionCreate_new_tokenholder_acctCdcBytes() ([]byte, error) { return bindataRead( @@ -5257,7 +5257,7 @@ func stakingcollectionCreate_new_tokenholder_acctCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/create_new_tokenholder_acct.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x40, 0x48, 0xae, 0x85, 0xf6, 0x46, 0xbd, 0x5f, 0x6d, 0xdd, 0xe2, 0xaf, 0x9d, 0xbf, 0x78, 0x58, 0x8b, 0x8f, 0x0, 0x24, 0x5e, 0x4a, 0x82, 0x3e, 0x44, 0x77, 0x3e, 0x21, 0x10, 0xa, 0xe2, 0x22}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0x9d, 0xde, 0x4c, 0x9, 0x3, 0xbb, 0xce, 0xb3, 0xfa, 0x94, 0xe6, 0x7, 0xc6, 0xfc, 0x9a, 0x2b, 0x38, 0x84, 0x55, 0x40, 0xe4, 0xd2, 0x6c, 0x26, 0xf4, 0xbb, 0x67, 0x9f, 0x13, 0x81, 0xc7}} return a, nil } @@ -5601,7 +5601,7 @@ func stakingcollectionScriptsGet_unlocked_tokens_usedCdc() (*asset, error) { return a, nil } -var _stakingcollectionSetup_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\x5d\x6f\xdb\x36\x14\x7d\xf7\xaf\xb8\xc9\x43\x26\x01\x8e\xbc\xe7\xc0\x49\x97\xd9\xd9\x66\x24\x88\x8b\xda\xe8\x9e\xaf\xa5\x2b\x8b\x33\x43\x0a\x24\x15\x2d\x28\xfa\xdf\x07\x52\x9f\x8c\xe4\xd4\xeb\x8a\x15\xa8\x1e\xa2\x98\xba\x5f\xe7\x1c\x5e\xf2\xb2\xa7\x5c\x2a\x03\xbf\x15\x62\xcf\x76\x9c\xb6\xf2\x40\x02\x52\x25\x9f\xe0\xdc\x5b\x3b\x9f\x34\x96\x5c\x96\x9e\x55\xf3\xdb\xb3\x58\x2d\xb7\xb8\xe3\xb4\x31\x78\x60\x62\xdf\x33\xf5\x3f\xb4\x3e\x0f\x32\x3e\x50\xe2\xe2\xe8\xca\xfa\xe7\xbf\x1f\xd6\x8b\xfb\xbb\xe5\x76\x7d\x7f\xf7\x78\xbb\x5c\x7e\xb8\xdb\x6c\xfa\x19\xea\x08\x0b\xc9\x39\xc5\x86\x49\xd1\xb8\x6d\xb6\xb7\xf7\xab\xc7\xdf\x17\xeb\x87\x87\xbb\xc5\x76\xb5\x6e\x9d\x27\xb3\xd9\x0c\xb6\x19\xd3\x60\x14\x0a\x8d\x95\x97\x26\xa3\xa1\xc8\x01\x05\x60\x1c\xcb\x42\x18\x30\x12\x0a\x4d\x80\xa0\xeb\xf2\xe3\x36\x89\x8b\xb1\x32\x50\x32\xce\xa1\x94\xea\x00\x8a\xf6\xa8\x12\x4e\x5a\x83\x4c\xa1\xcc\xc8\x64\xa4\xc0\x64\xf4\x02\x19\x3e\xdb\x28\x8a\xf6\x05\x47\xd5\x84\x9f\x02\x82\x29\xe5\x65\x93\x8d\x3b\xe8\x60\x2a\xec\x9a\x4c\x91\x4f\x5d\x1a\xa9\xda\x02\xe4\xee\x2f\x8a\x8d\x06\x6d\xa4\xa2\x04\x98\xb0\x09\xa0\x10\xb5\x6f\x1d\x6a\x32\xe9\x03\xfb\x34\x01\x00\xc8\x15\xe5\xa8\x28\xd0\x6c\x2f\x48\x5d\x01\x16\x26\x0b\x7e\x95\x4a\xc9\xf2\x23\xf2\x82\xa6\xb0\x31\x52\xe1\x9e\xa6\xb0\xc0\x1c\x77\x8c\x33\xc3\x48\x87\x70\x71\x5b\x05\x0d\xe1\xd3\xc4\x45\xb2\x8f\x05\x9f\xda\xdc\x8a\x80\x69\xf1\x93\x01\xe4\x8a\x30\x79\x19\x27\xab\x71\x63\x29\x54\xf9\x23\x5d\x25\x8b\x76\xae\x82\xf9\xc5\xa8\x92\xd1\x60\xe5\x26\xb0\xe2\x5e\x8d\x0b\x3f\x34\xaf\x21\xbd\x47\x93\x85\x70\x7d\x0d\x82\xf1\x3e\x8a\x1a\xc9\x42\x11\x1a\x82\x5c\xb1\x67\xfb\x8e\x7b\xf0\x21\x95\x4e\xc3\x4a\x15\xc8\x24\x4f\x48\x01\x8a\xa4\xe3\xfc\x19\x0b\x6e\xbc\x90\x9c\x1a\x31\xff\xa8\xec\xaf\x1b\xd4\xfd\xd0\x2d\x05\x4c\xeb\x82\xe6\x4e\x0f\xaf\xd3\xa2\x3f\x99\xc9\x12\x85\xa5\xed\x93\xa9\xd7\x19\x91\x7b\xad\x73\x52\x68\x61\x5a\x95\x86\x9f\xab\xe4\x37\xc1\xb1\x2f\x7d\x72\xce\x06\x00\xd2\xb6\xbd\xbf\x41\xf5\x21\x5c\xb4\xc7\x43\xf4\xd1\x12\x76\x13\xcc\xea\x08\xb3\x36\x93\xfb\x10\x9e\x1d\xd3\x07\x41\x50\x09\xcd\x49\xd2\xeb\x77\x2b\x47\x5e\x18\x60\xc6\x36\x44\x1d\xd6\x0b\xc2\x52\x4f\x90\x28\xce\x28\x3e\x04\x61\xdd\x1a\xfd\xe7\xd5\xf6\xd4\xf8\x4c\xc1\xc0\xc8\x3e\xf3\xcb\x23\x9b\x30\x76\xd5\x0e\xd6\xc7\xa3\xd8\xa7\xd9\x49\x0e\xfe\x55\x47\xfc\xf4\xa8\x87\xe9\x44\xbc\xf2\x80\x8d\x7a\x84\xe3\x81\x8c\xfc\x9a\x36\x1a\x84\x0a\xbd\x95\xcf\x40\x5c\xd3\x0f\xc1\xab\x60\xfc\xfb\xd3\x39\xe8\x85\xf7\xc5\x8e\x33\x9d\x01\x76\xc7\xd4\x8b\xbd\xa7\xec\x19\x55\x31\x94\x8c\x1c\xc0\xd1\xa0\xbd\xf5\xeb\xa2\x16\x98\x9f\xd4\xe9\xa7\x9f\xd4\x03\x6c\xff\x91\x9e\xd0\x27\x63\xac\xd4\xbc\x62\x67\x98\x7a\x0c\xee\x50\x47\x34\x27\x6b\xe8\x74\x88\x47\x6a\x1c\x91\x6e\x36\x83\xea\x9a\x73\x33\x40\x4a\x8a\x44\x4c\x8d\x68\x6f\xdc\x96\x56\xa7\x6e\xf9\x03\xa5\x9d\x40\xff\xff\xf5\xe9\xc1\x7c\xf7\x0e\x72\x14\x2c\x0e\xce\x17\xb2\xe0\x09\x08\x69\x1a\x88\x43\x3c\x1d\xe6\xf3\xf0\xd8\x04\x61\x0f\x77\x99\x54\x6c\x90\xaa\xc7\x9c\x66\xbc\x69\xe7\xa5\xee\x90\xff\x02\x73\x6f\xcf\x19\xfe\xe8\x19\x3d\xca\xc4\xfd\x6f\xef\xca\x8e\x9e\xa3\x46\xde\x4c\x71\xd6\xcc\x14\xaf\xfb\xcb\xa1\x99\x5f\xbe\x2e\x83\x4b\x4c\xe6\xbf\x7c\xdb\x22\xfc\xbb\xdb\xdb\x30\x11\x26\x89\x75\x5a\x3b\x3e\x83\xf9\xa5\x2d\x6b\x0a\x4f\x18\x67\x4c\x50\x3d\xd8\xad\x44\x2a\xdd\x71\x77\x6c\xf3\xfa\x3a\x25\xc4\x69\x8f\x46\x7e\x07\x95\x96\x4d\xea\x37\x38\x6a\x6d\x4e\xd3\xa9\x43\xf3\x2f\xc5\xfa\xea\x5a\xbe\x20\x57\xeb\xd3\x6a\xd6\x96\xd8\xd7\xa7\xfa\xfb\x79\xf2\x4f\x00\x00\x00\xff\xff\x54\xdc\x7e\x4c\xb7\x0d\x00\x00" +var _stakingcollectionSetup_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\x5d\x6f\xdb\x36\x14\x7d\xf7\xaf\xb8\xc9\x43\x26\x01\x8e\xbc\xe7\xc0\x49\x97\xd9\xd9\x66\x24\x88\x8b\xda\xe8\x9e\xaf\xa5\x2b\x8b\x33\x43\x0a\x24\x15\x2d\x28\xfa\xdf\x07\x52\x9f\x8c\xe4\xd4\x6b\x87\x15\xa8\x1e\xa2\x98\xba\x5f\xe7\x1c\x5e\xf2\xb2\xa7\x5c\x2a\x03\xbf\x15\x62\xcf\x76\x9c\xb6\xf2\x40\x02\x52\x25\x9f\xe0\xdc\x5b\x3b\x9f\x34\x96\x5c\x96\x9e\x55\xf3\xdb\xb3\x58\x2d\xb7\xb8\xe3\xb4\x31\x78\x60\x62\xdf\x33\xf5\x3f\xb4\x3e\x0f\x32\x3e\x50\xe2\xe2\xe8\xca\xfa\xe7\xbf\x1f\xd6\x8b\xfb\xbb\xe5\x76\x7d\x7f\xf7\x78\xbb\x5c\x7e\xb8\xdb\x6c\xfa\x19\xea\x08\x0b\xc9\x39\xc5\x86\x49\xd1\xb8\x6d\xb6\xb7\xf7\xab\xc7\xdf\x17\xeb\x87\x87\xbb\xc5\x76\xb5\x6e\x9d\x27\xb3\xd9\x0c\xb6\x19\xd3\x60\x14\x0a\x8d\x95\x97\x26\xa3\xa1\xc8\x01\x05\x60\x1c\xcb\x42\x18\x30\x12\x0a\x4d\x80\xa0\xeb\xf2\xe3\x36\x89\x8b\xb1\x32\x50\x32\xce\xa1\x94\xea\x00\x8a\xf6\xa8\x12\x4e\x5a\x83\x4c\xa1\xcc\xc8\x64\xa4\xc0\x64\xf4\x02\x19\x3e\xdb\x28\x8a\xf6\x05\x47\xd5\x84\x9f\x02\x82\x29\xe5\x65\x93\x8d\x3b\xe8\x60\x2a\xec\x9a\x4c\x91\x4f\x5d\x1a\xa9\xda\x02\xe4\xee\x2f\x8a\x8d\x06\x6d\xa4\xa2\x04\x98\xb0\x09\xa0\x10\xb5\x6f\x1d\x6a\x32\xe9\x03\xfb\x34\x01\x00\xc8\x15\xe5\xa8\x28\xd0\x6c\x2f\x48\x5d\x01\x16\x26\x0b\x7e\x95\x4a\xc9\xf2\x23\xf2\x82\xa6\xb0\x31\x52\xe1\x9e\xa6\xb0\xc0\x1c\x77\x8c\x33\xc3\x48\x87\x70\x71\x5b\x05\x0d\xe1\xd3\xc4\x45\xb2\x8f\x05\x9f\xda\xdc\x8a\x80\x69\xf1\x93\x01\xe4\x8a\x30\x79\x19\x27\xab\x71\x63\x29\x54\xf9\x23\x5d\x25\x8b\x76\xae\x82\xf9\xc5\xa8\x92\xd1\x60\xe5\x26\xb0\xe2\x5e\x8d\x0b\x3f\x34\xaf\x21\xbd\x47\x93\x85\x70\x7d\x0d\x82\xf1\x3e\x8a\x1a\xc9\x42\x11\x1a\x82\x5c\xb1\x67\xfb\x8e\x7b\xf0\x21\x95\x4e\xc3\x4a\x15\xc8\x24\x4f\x48\x01\x8a\xa4\xe3\xfc\x19\x0b\x6e\xbc\x90\x9c\x1a\x31\xff\xa8\xec\xaf\x1b\xd4\xfd\xd0\x2d\x05\x4c\xeb\x82\xe6\x4e\x0f\xaf\xd3\xa2\x3f\x99\xc9\x12\x85\xe5\xd4\xeb\x8a\xc8\xbd\xd6\x39\x29\xb4\x10\xad\x42\xc3\xcf\x55\xe2\x9b\xe0\xd8\x97\x3e\x31\x67\x83\xe2\xd3\xb6\xb5\xbf\xb1\xf2\x10\x2e\xda\x63\x21\xfa\x68\x89\xba\x09\x66\xb5\xf7\xac\xcd\xe2\x3e\x84\x67\xc7\x74\x41\x10\x54\x42\x73\x82\xf4\xfa\xdc\xca\x90\x17\x06\x98\xb1\x8d\x50\x87\xf5\x82\xb0\xd4\x13\x22\x8a\x33\x8a\x0f\x41\x58\xb7\x44\xff\x79\xb5\x2d\x35\x3e\x53\x30\x30\xb2\xcf\xfc\xf2\xc8\xe6\x8b\x5d\xb5\x83\xf5\xf1\x28\xf6\x69\x76\x90\x83\x7f\xd5\x91\x3e\x3d\xea\x61\x3a\x01\xaf\x3c\x60\xa3\x1e\xe1\x78\x20\x23\xbf\xa6\x7d\x06\xa1\x42\x6f\xe5\x33\x10\xd7\xf4\x43\xf0\x2a\x18\xff\xfe\x74\x0e\x7a\xe1\x7d\xb1\xe3\x4c\x67\x80\xdd\xf1\xf4\x62\xef\x27\x7b\x36\x55\x0c\x25\x23\x07\x6f\x34\x68\x6d\xfd\xba\xa8\x05\xe6\x27\x75\xf9\xe9\x27\xf4\x00\xdb\x37\xd2\x13\xfa\x64\x8c\x95\x9a\x57\xec\x0c\x53\x8f\xc1\x1d\xea\x88\xe6\x64\x0d\x9d\x0e\xf1\x48\x8d\x23\xd2\xcd\x66\x50\x5d\x6f\xee\xee\x4f\x49\x91\x88\xa9\x11\xed\x8d\x5b\xd2\xea\xd4\x2d\x7f\xa0\xb4\x13\xe8\xff\xbf\x36\x3d\x98\xef\xde\x41\x8e\x82\xc5\xc1\xf9\x42\x16\x3c\x01\x21\x4d\x03\x71\x88\xa7\xc3\x7c\x1e\x1e\x9b\x1c\xec\xe1\x2e\x93\x8a\x0d\x52\xf5\x78\xd3\x8c\x35\xed\x9c\xd4\x1d\xf2\x5f\x60\xee\xed\xf9\xc2\x1f\x39\xa3\x47\x99\xb8\xff\xed\x3d\xd9\xd1\x73\xd4\xc8\x9b\x25\xce\x9a\x59\xe2\x75\x7f\x39\x34\xf3\xcb\xd7\x65\x70\x89\xc9\xfc\x97\xff\xb6\x08\xff\xde\xf6\x36\x4c\x84\x49\x62\x9d\xd6\x8e\xcf\x60\x7e\x69\xcb\x9a\xc2\x13\xc6\x19\x13\x54\x0f\x74\x2b\x91\x4a\x77\xdc\x1d\xdb\xbc\xbe\x4e\x09\x71\xda\xa3\x91\xdf\x41\xa5\x65\x93\xfa\x0d\x8e\x5a\x9b\xd3\x74\xea\xd0\xfc\x4b\xb1\xbe\xba\x96\x2f\xc8\xd5\xfa\xb4\x9a\xb5\x25\xf6\xf5\xa9\xfe\x7e\x9e\xfc\x13\x00\x00\xff\xff\x43\x2d\x07\x43\xaf\x0d\x00\x00" func stakingcollectionSetup_staking_collectionCdcBytes() ([]byte, error) { return bindataRead( @@ -5617,7 +5617,7 @@ func stakingcollectionSetup_staking_collectionCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/setup_staking_collection.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x78, 0x7b, 0xdf, 0xf1, 0x5d, 0x48, 0x17, 0x24, 0xa3, 0x5f, 0xba, 0x81, 0x8, 0xdf, 0x31, 0x1, 0x8, 0x9f, 0x56, 0x70, 0xa5, 0xb, 0xd1, 0xa4, 0x42, 0x7, 0xfb, 0x9c, 0xc3, 0xcb, 0x8b, 0x5e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc2, 0x50, 0xe3, 0xa8, 0x7b, 0x79, 0x59, 0x9e, 0x41, 0xae, 0xf0, 0x20, 0xf3, 0x4c, 0x34, 0xb5, 0xe6, 0x5b, 0xb7, 0x0, 0x49, 0x15, 0xc, 0x3, 0x75, 0x5a, 0x93, 0xd, 0xba, 0xe, 0x9e, 0x6b}} return a, nil } diff --git a/lib/go/templates/manifest.mainnet.json b/lib/go/templates/manifest.mainnet.json index c038bf6c2..6facae02c 100755 --- a/lib/go/templates/manifest.mainnet.json +++ b/lib/go/templates/manifest.mainnet.json @@ -4,7 +4,7 @@ { "id": "TH.01", "name": "Withdraw Unlocked FLOW", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -19,12 +19,12 @@ } ], "network": "mainnet", - "hash": "df3ae1b529ad2c869e82a5229ce5913a58d7caa204e1e9cac85570a17eaae9dd" + "hash": "6cead427704bc5c07c2920aeced30e1fddfee2021811b54fdeb64d4153e07926" }, { "id": "TH.02", "name": "Deposit Unlocked FLOW", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -39,12 +39,12 @@ } ], "network": "mainnet", - "hash": "ba4f11874097b90e870db4c95bb3e6a27942a23ad816cad2df477a6bc8f9e21d" + "hash": "50ab0c2826eb1854a1e77a32a45d3259e16ac46d9512378bc52bdb4c1bdda623" }, { "id": "TH.06", "name": "Register Node", - "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow ref to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let nodeInfo = StakingProxy.NodeInfo(\n nodeID: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey\n )\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n \n }\n}\n", + "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow ref to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let nodeInfo = StakingProxy.NodeInfo(\n nodeID: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey\n )\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n \n }\n}\n", "arguments": [ { "type": "String", @@ -114,12 +114,12 @@ } ], "network": "mainnet", - "hash": "0c06d0d630d34e81a25e31e39998afed9f37aad33312e22ea20c1547d3cf912e" + "hash": "3bea653bd94378e266cf3295213a577029404f88af417c234377d465e0a8ab4f" }, { "id": "TH.08", "name": "Stake New Locked FLOW", - "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.stakeNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.stakeNewTokens(amount: amount)\n \n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.stakeNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.stakeNewTokens(amount: amount)\n \n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -134,12 +134,12 @@ } ], "network": "mainnet", - "hash": "66318a62781fe37c2cc65931e96a11aaf642675c326facc4c7c8193298471a73" + "hash": "c7381b6ba748c617db233bebe52df07643933139f9b0de1c435fb00a89e52a89" }, { "id": "TH.09", "name": "Re-stake Unstaked FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -154,12 +154,12 @@ } ], "network": "mainnet", - "hash": "92f5f89513d6739b21573a796576dc5fbfa25a6d2f137435c14acaa515d5efaf" + "hash": "a156bf801fd212088c4f3bc69ba8e296e173c30041bd3c21ae2da18d816e3868" }, { "id": "TH.10", "name": "Re-stake Rewarded FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeRewardedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeRewardedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -174,12 +174,12 @@ } ], "network": "mainnet", - "hash": "d1e6e4a6a62e65d87ce45ca77b24edd8d6868fdc5547d0b36e80d7a670a8400b" + "hash": "f42402b6109bf9511f0000b30a07fad92b9f31b874fca70510f3fd37922a0e3f" }, { "id": "TH.11", "name": "Request Unstake of FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.requestUnstaking(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.requestUnstaking(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -194,20 +194,20 @@ } ], "network": "mainnet", - "hash": "9d43648974c7bd0ad3d91b1dabf53de751702dd7921c7ea5c98065579e715f17" + "hash": "49d08df9f71e675ce33fd7fb311dad8af537768db220bcee2bebf6f74375b907" }, { "id": "TH.12", "name": "Unstake All FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction() {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.unstakeAll()\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction() {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.unstakeAll()\n }\n}\n", "arguments": [], "network": "mainnet", - "hash": "8c64610b77a6e33680a9dd38d00602a87b0ac165d22b287222b9e4c51744a34e" + "hash": "b271186ce48929bb43398cc9a2c13ce3880375cf4743a2f55c2c11772794cb44" }, { "id": "TH.13", "name": "Withdraw Unstaked FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -222,12 +222,12 @@ } ], "network": "mainnet", - "hash": "8fdd79f1729915b2696d4cfa0be9a28ea0a0548f41b39ed9259ae32dee939193" + "hash": "ed1e4b6d77cb74e73e113763ac532e012d8222ee1d23c5b3b98bed359060cdd1" }, { "id": "TH.14", "name": "Withdraw Rewarded FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -242,7 +242,7 @@ } ], "network": "mainnet", - "hash": "67737c7f2ad4c183cd36b6edc47ac41e823f225bac9ff1a88e2fe2c38144a6bb" + "hash": "a164a0fbd5fc0fef64be9d28bb877a1b8914df3d1aa7bc811514b35410258655" }, { "id": "TH.16", @@ -289,7 +289,7 @@ { "id": "TH.17", "name": "Register Delegator", - "source": "import FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\nimport FlowIDTableStaking from 0x8624b52f9ddcd04a\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(id: String, amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\nimport FlowIDTableStaking from 0x8624b52f9ddcd04a\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(id: String, amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -315,12 +315,12 @@ } ], "network": "mainnet", - "hash": "eef0a6040c0ae3c716a6a40206ae5f318e1ed98e6e5748c7fa7d8c5e325ce608" + "hash": "a0f1fd883b855ce62f125668ca74363d4ec5c91809100f0ede98c5f323f4e5c6" }, { "id": "TH.19", "name": "Delegate New Locked FLOW", - "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowDelegator()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.delegateNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.delegateNewTokens(amount: amount)\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowDelegator()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.delegateNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.delegateNewTokens(amount: amount)\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -335,12 +335,12 @@ } ], "network": "mainnet", - "hash": "26deca47a5a914f6f43a6a0fc88fb66b7a42e0c8588bdc170eeb8d885ce42bbe" + "hash": "db5d44c8e74688ffbb2ebf63e22a18dc89e471b55c1e9183860c46b5b7d59178" }, { "id": "TH.20", "name": "Re-delegate Unstaked FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -355,12 +355,12 @@ } ], "network": "mainnet", - "hash": "1881925bb789e77a60a2259cb119a39a5acc0b2db631fbfe812664f6e3f4a885" + "hash": "0ff6d828a048b3fb976fae8d7e06c3dfd6411dc2dc3e93ce21b559a320be0d8d" }, { "id": "TH.21", "name": "Re-delegate Rewarded FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateRewardedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateRewardedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -375,12 +375,12 @@ } ], "network": "mainnet", - "hash": "a1e31d1e216f5c881a398743df6c84eb62c71f7c3fb8478761607fd7a7c829ac" + "hash": "624bdb1f1fa770deab68e209fc96614ed4890f04405602e8d01267f0d308c548" }, { "id": "TH.22", "name": "Unstake Delegated FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.requestUnstaking(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.requestUnstaking(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -395,12 +395,12 @@ } ], "network": "mainnet", - "hash": "14d4da181ec5e5e9bf67a4ec1f76d91ba3f57e326cc3bcdb1f21793cceff7ce4" + "hash": "c4c1afab046a018a255a55a91b5977622155f52b2026ea14b1203ddd53a5ddda" }, { "id": "TH.23", "name": "Withdraw Unstaked FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -415,12 +415,12 @@ } ], "network": "mainnet", - "hash": "f2c7e52c726dfbb3fe01fb77f3bbd3c876845aa0bc9c36218323556167774862" + "hash": "f943fb57cbe8f03124365b663ae73847c5ddf1559e110cd1ffe5d7f795190694" }, { "id": "TH.24", "name": "Withdraw Rewarded FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let delegatorProxy = self.holderRef.borrowDelegator()\n\n delegatorProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let delegatorProxy = self.holderRef.borrowDelegator()\n\n delegatorProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -435,7 +435,7 @@ } ], "network": "mainnet", - "hash": "68f5607016e4b1d920be156edc01936bc4af89a2747ddd39842e89241933baaa" + "hash": "36037c188e4e82abf8466bc20da3d29d4b31e3f5c6229900c3cdf66eed7c2fce" }, { "id": "TH.25", @@ -460,10 +460,10 @@ { "id": "SCO.01", "name": "Setup Staking Collection", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport FlowIDTableStaking from 0x8624b52f9ddcd04a\nimport LockedTokens from 0x8d0e87b65159ae63\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// This transaction sets up an account to use a staking collection\n/// It will work regardless of whether they have a regular account, a two-account locked tokens setup,\n/// or staking objects stored in the unlocked account\n\ntransaction {\n prepare(signer: auth(BorrowValue, Storage, Capabilities) \u0026Account) {\n\n // If there isn't already a staking collection\n if signer.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath) == nil {\n\n // Create private capabilities for the token holder and unlocked vault\n let lockedHolder = signer.capabilities.storage.issue\u003cauth(FungibleToken.Withdrawable, LockedTokens.TokenOperations) \u0026LockedTokens.TokenHolder\u003e(LockedTokens.TokenHolderStoragePath)!\n let flowToken = signer.capabilities.storage.issue\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(/storage/flowTokenVault)!\n\n // Create a new Staking Collection and put it in storage\n if lockedHolder.check() {\n signer.storage.save(\n \u003c- FlowStakingCollection.createStakingCollection(\n unlockedVault: flowToken,\n tokenHolder: lockedHolder\n ),\n to: FlowStakingCollection.StakingCollectionStoragePath\n )\n } else {\n signer.storage.save(\n \u003c- FlowStakingCollection.createStakingCollection(\n unlockedVault: flowToken,\n tokenHolder: nil\n ),\n to: FlowStakingCollection.StakingCollectionStoragePath\n )\n }\n\n // Publish a capability to the created staking collection.\n let stakingCollectionCap = signer.capabilities.storage.issue\u003c\u0026FlowStakingCollection.StakingCollection\u003e(\n FlowStakingCollection.StakingCollectionStoragePath\n )\n\n signer.capabilities.publish(\n stakingCollectionCap,\n at: FlowStakingCollection.StakingCollectionPublicPath\n )\n }\n\n // borrow a reference to the staking collection\n let collectionRef = signer.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow staking collection reference\")\n\n // If there is a node staker object in the account, put it in the staking collection\n if signer.storage.borrow\u003c\u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath) != nil {\n let node \u003c- signer.storage.load\u003c@FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)!\n collectionRef.addNodeObject(\u003c-node, machineAccountInfo: nil)\n }\n\n // If there is a delegator object in the account, put it in the staking collection\n if signer.storage.borrow\u003c\u0026FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath) != nil {\n let delegator \u003c- signer.storage.load\u003c@FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath)!\n collectionRef.addDelegatorObject(\u003c-delegator)\n }\n }\n}\n", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport FlowIDTableStaking from 0x8624b52f9ddcd04a\nimport LockedTokens from 0x8d0e87b65159ae63\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// This transaction sets up an account to use a staking collection\n/// It will work regardless of whether they have a regular account, a two-account locked tokens setup,\n/// or staking objects stored in the unlocked account\n\ntransaction {\n prepare(signer: auth(BorrowValue, Storage, Capabilities) \u0026Account) {\n\n // If there isn't already a staking collection\n if signer.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath) == nil {\n\n // Create private capabilities for the token holder and unlocked vault\n let lockedHolder = signer.capabilities.storage.issue\u003cauth(FungibleToken.Withdraw, LockedTokens.TokenOperations) \u0026LockedTokens.TokenHolder\u003e(LockedTokens.TokenHolderStoragePath)!\n let flowToken = signer.capabilities.storage.issue\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(/storage/flowTokenVault)!\n\n // Create a new Staking Collection and put it in storage\n if lockedHolder.check() {\n signer.storage.save(\n \u003c- FlowStakingCollection.createStakingCollection(\n unlockedVault: flowToken,\n tokenHolder: lockedHolder\n ),\n to: FlowStakingCollection.StakingCollectionStoragePath\n )\n } else {\n signer.storage.save(\n \u003c- FlowStakingCollection.createStakingCollection(\n unlockedVault: flowToken,\n tokenHolder: nil\n ),\n to: FlowStakingCollection.StakingCollectionStoragePath\n )\n }\n\n // Publish a capability to the created staking collection.\n let stakingCollectionCap = signer.capabilities.storage.issue\u003c\u0026FlowStakingCollection.StakingCollection\u003e(\n FlowStakingCollection.StakingCollectionStoragePath\n )\n\n signer.capabilities.publish(\n stakingCollectionCap,\n at: FlowStakingCollection.StakingCollectionPublicPath\n )\n }\n\n // borrow a reference to the staking collection\n let collectionRef = signer.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow staking collection reference\")\n\n // If there is a node staker object in the account, put it in the staking collection\n if signer.storage.borrow\u003c\u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath) != nil {\n let node \u003c- signer.storage.load\u003c@FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)!\n collectionRef.addNodeObject(\u003c-node, machineAccountInfo: nil)\n }\n\n // If there is a delegator object in the account, put it in the staking collection\n if signer.storage.borrow\u003c\u0026FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath) != nil {\n let delegator \u003c- signer.storage.load\u003c@FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath)!\n collectionRef.addDelegatorObject(\u003c-delegator)\n }\n }\n}\n", "arguments": [], "network": "mainnet", - "hash": "35b330564b034bcde216d816ba0030c5bb7284ca5913d8ecc33947281f129dc8" + "hash": "69f30decc15bd78107c631e200963398e8ddbc58bb61e577d223725f348fc2d9" }, { "id": "SCO.02", diff --git a/lib/go/templates/manifest.testnet.json b/lib/go/templates/manifest.testnet.json index 1ee6d86fd..993eb143d 100755 --- a/lib/go/templates/manifest.testnet.json +++ b/lib/go/templates/manifest.testnet.json @@ -4,7 +4,7 @@ { "id": "TH.01", "name": "Withdraw Unlocked FLOW", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -19,12 +19,12 @@ } ], "network": "testnet", - "hash": "4b75a07c1313891183b11fbdd480a12b8257baa9f433b991bed8e68985e0ddd7" + "hash": "baca378532499da57d1df14da64f07ca5a07f177cc3f65c3fe605347256ee2d7" }, { "id": "TH.02", "name": "Deposit Unlocked FLOW", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -39,12 +39,12 @@ } ], "network": "testnet", - "hash": "7087bf3e7255597cf79cc99863173eb17c21b1433ca8577e3bac65c6ab0e69f4" + "hash": "fc2b44ac4249a0e0a5a26d63b6e9ad7afbc08f311ba281ec59bdb8554f620e80" }, { "id": "TH.06", "name": "Register Node", - "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow ref to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let nodeInfo = StakingProxy.NodeInfo(\n nodeID: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey\n )\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n \n }\n}\n", + "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow ref to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let nodeInfo = StakingProxy.NodeInfo(\n nodeID: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey\n )\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n \n }\n}\n", "arguments": [ { "type": "String", @@ -114,12 +114,12 @@ } ], "network": "testnet", - "hash": "c73a047e33ce1d4d2dcc3fe3785a06e4c98a2ea734571a16c34fd8756b272c2b" + "hash": "af4a5bee843d4c45c4aaff6f4d047b86c00f13c53cf82d11d7fbe59245927914" }, { "id": "TH.08", "name": "Stake New Locked FLOW", - "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.stakeNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.stakeNewTokens(amount: amount)\n \n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.stakeNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.stakeNewTokens(amount: amount)\n \n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -134,12 +134,12 @@ } ], "network": "testnet", - "hash": "cff4386eceffd120399e156bcdb59e2c6d4c6f547acb5e4c2260b174af718c3c" + "hash": "0de2be29b4e3c0e672945f56e351bfa627f9b835bbebc24d69de3d6b914b0069" }, { "id": "TH.09", "name": "Re-stake Unstaked FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -154,12 +154,12 @@ } ], "network": "testnet", - "hash": "bcf2bdd7b79261695118939648b1a4c52af44a44da17461b8aaccda55bf39ede" + "hash": "9b2eed9099742a2f002df6941117df03c68f113c62b6b27f0150cb00ef97f21f" }, { "id": "TH.10", "name": "Re-stake Rewarded FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeRewardedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeRewardedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -174,12 +174,12 @@ } ], "network": "testnet", - "hash": "afeb3d440bac434ca96cc27d0bd9492bf09556159d1cd9bb6ac2d80f99197d47" + "hash": "9c11d765716accd6ccccaa71826efd030eaec491cd288f12b3578c30406d02d7" }, { "id": "TH.11", "name": "Request Unstake of FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.requestUnstaking(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.requestUnstaking(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -194,20 +194,20 @@ } ], "network": "testnet", - "hash": "0f0bc2005f2104e28cfa129004739320945a9a1a20beef93522c504510e5159e" + "hash": "8a16eb440a6f2b0ba055c988195d18f1ac0ae87c9c47b6e3148295783a2edca0" }, { "id": "TH.12", "name": "Unstake All FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction() {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.unstakeAll()\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction() {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.unstakeAll()\n }\n}\n", "arguments": [], "network": "testnet", - "hash": "06c48b6484e12fd880289e7c98b9c8092e6616e5972312c13e454ea3f6ee5f79" + "hash": "4e077e9ccdb995324823e202333ab3b31c52a773a3b33db070e9b1c3db8f24d4" }, { "id": "TH.13", "name": "Withdraw Unstaked FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -222,12 +222,12 @@ } ], "network": "testnet", - "hash": "cdba1c889cc834e47085f9857e8d390c0a29776653859147cfcbe5ba0123a2e6" + "hash": "f28537c488e3967c414acdc8c853579d7cde872dbc867418b71b6708d24654c9" }, { "id": "TH.14", "name": "Withdraw Rewarded FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -242,7 +242,7 @@ } ], "network": "testnet", - "hash": "7342ec6c5da7f2f200f40ea1e134f7980b1c6fa970d0a66e1ebd4c73f3bc8fa2" + "hash": "a48cf76e38ef6818acfb35123a68b138caa66a1f27f2ee07c932ba74d6eca26e" }, { "id": "TH.16", @@ -289,7 +289,7 @@ { "id": "TH.17", "name": "Register Delegator", - "source": "import FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\nimport FlowIDTableStaking from 0x9eca2b38b18b5dfe\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(id: String, amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\nimport FlowIDTableStaking from 0x9eca2b38b18b5dfe\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(id: String, amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -315,12 +315,12 @@ } ], "network": "testnet", - "hash": "4f7cb63a61680eda92e91a6cd4b87f8efd2640493c4688c911fd20806f9347f2" + "hash": "b1ea953e7aed9e212f2f0e855e9122d3e1c2126c2b1ce318ac5d05c2bc3afbea" }, { "id": "TH.19", "name": "Delegate New Locked FLOW", - "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowDelegator()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.delegateNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.delegateNewTokens(amount: amount)\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowDelegator()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.delegateNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.delegateNewTokens(amount: amount)\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -335,12 +335,12 @@ } ], "network": "testnet", - "hash": "810f201ae72d94c1c08394bd0fb65c55597c036279be021857ea0d3e0ef5a4b5" + "hash": "f39299420444e21759568d0b263b71826f17e406e2c0270840db2a4dad3b33d7" }, { "id": "TH.20", "name": "Re-delegate Unstaked FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -355,12 +355,12 @@ } ], "network": "testnet", - "hash": "1be166ba9de98713d8aa7be176b152beaa87a5329f720d8454eb8a60f53044c8" + "hash": "472c8c222dbeacd505e2db7fb20da0a709b45605e0a169ec8d4448c99fdfae95" }, { "id": "TH.21", "name": "Re-delegate Rewarded FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateRewardedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateRewardedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -375,12 +375,12 @@ } ], "network": "testnet", - "hash": "d6548243b4ac0716cf4a9b7eb886ee9c182dc33dadffedede3a51115f1d5a1a0" + "hash": "e618fbfde5089f5a0ab2fa05f908f65290296a404d23e9de1f0361c28e0e16fc" }, { "id": "TH.22", "name": "Unstake Delegated FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.requestUnstaking(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.requestUnstaking(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -395,12 +395,12 @@ } ], "network": "testnet", - "hash": "b5a0279e3486772758b6073354908108fa153da9d75e5fc087f242a363b4b25b" + "hash": "d7bc6c6cd0ecf6a1e327ce1a8b95585fd624ca6066c896ae14b58c4be85fc10e" }, { "id": "TH.23", "name": "Withdraw Unstaked FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -415,12 +415,12 @@ } ], "network": "testnet", - "hash": "41a6be3ccb335a5a303dea94c10ec9dc13a4ec71d24ad2b31b04a719b3cbaa68" + "hash": "b60067583b91ab8be3e76619f93985b4c1cdc03bc2c310e79e8065f84e65b1c6" }, { "id": "TH.24", "name": "Withdraw Rewarded FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let delegatorProxy = self.holderRef.borrowDelegator()\n\n delegatorProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let delegatorProxy = self.holderRef.borrowDelegator()\n\n delegatorProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -435,7 +435,7 @@ } ], "network": "testnet", - "hash": "4a0e9cff6a5a04b99d45921af8a58dc262d64ee4ccdba6ae7ce9007597cd37b2" + "hash": "efc7c6866b01b89cb2f1436e525b273deeca5f8e765ec823889656d5f46ccd31" }, { "id": "TH.25", @@ -460,10 +460,10 @@ { "id": "SCO.01", "name": "Setup Staking Collection", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport FlowIDTableStaking from 0x9eca2b38b18b5dfe\nimport LockedTokens from 0x95e019a17d0e23d7\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// This transaction sets up an account to use a staking collection\n/// It will work regardless of whether they have a regular account, a two-account locked tokens setup,\n/// or staking objects stored in the unlocked account\n\ntransaction {\n prepare(signer: auth(BorrowValue, Storage, Capabilities) \u0026Account) {\n\n // If there isn't already a staking collection\n if signer.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath) == nil {\n\n // Create private capabilities for the token holder and unlocked vault\n let lockedHolder = signer.capabilities.storage.issue\u003cauth(FungibleToken.Withdrawable, LockedTokens.TokenOperations) \u0026LockedTokens.TokenHolder\u003e(LockedTokens.TokenHolderStoragePath)!\n let flowToken = signer.capabilities.storage.issue\u003cauth(FungibleToken.Withdrawable) \u0026FlowToken.Vault\u003e(/storage/flowTokenVault)!\n\n // Create a new Staking Collection and put it in storage\n if lockedHolder.check() {\n signer.storage.save(\n \u003c- FlowStakingCollection.createStakingCollection(\n unlockedVault: flowToken,\n tokenHolder: lockedHolder\n ),\n to: FlowStakingCollection.StakingCollectionStoragePath\n )\n } else {\n signer.storage.save(\n \u003c- FlowStakingCollection.createStakingCollection(\n unlockedVault: flowToken,\n tokenHolder: nil\n ),\n to: FlowStakingCollection.StakingCollectionStoragePath\n )\n }\n\n // Publish a capability to the created staking collection.\n let stakingCollectionCap = signer.capabilities.storage.issue\u003c\u0026FlowStakingCollection.StakingCollection\u003e(\n FlowStakingCollection.StakingCollectionStoragePath\n )\n\n signer.capabilities.publish(\n stakingCollectionCap,\n at: FlowStakingCollection.StakingCollectionPublicPath\n )\n }\n\n // borrow a reference to the staking collection\n let collectionRef = signer.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow staking collection reference\")\n\n // If there is a node staker object in the account, put it in the staking collection\n if signer.storage.borrow\u003c\u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath) != nil {\n let node \u003c- signer.storage.load\u003c@FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)!\n collectionRef.addNodeObject(\u003c-node, machineAccountInfo: nil)\n }\n\n // If there is a delegator object in the account, put it in the staking collection\n if signer.storage.borrow\u003c\u0026FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath) != nil {\n let delegator \u003c- signer.storage.load\u003c@FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath)!\n collectionRef.addDelegatorObject(\u003c-delegator)\n }\n }\n}\n", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport FlowIDTableStaking from 0x9eca2b38b18b5dfe\nimport LockedTokens from 0x95e019a17d0e23d7\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// This transaction sets up an account to use a staking collection\n/// It will work regardless of whether they have a regular account, a two-account locked tokens setup,\n/// or staking objects stored in the unlocked account\n\ntransaction {\n prepare(signer: auth(BorrowValue, Storage, Capabilities) \u0026Account) {\n\n // If there isn't already a staking collection\n if signer.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath) == nil {\n\n // Create private capabilities for the token holder and unlocked vault\n let lockedHolder = signer.capabilities.storage.issue\u003cauth(FungibleToken.Withdraw, LockedTokens.TokenOperations) \u0026LockedTokens.TokenHolder\u003e(LockedTokens.TokenHolderStoragePath)!\n let flowToken = signer.capabilities.storage.issue\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(/storage/flowTokenVault)!\n\n // Create a new Staking Collection and put it in storage\n if lockedHolder.check() {\n signer.storage.save(\n \u003c- FlowStakingCollection.createStakingCollection(\n unlockedVault: flowToken,\n tokenHolder: lockedHolder\n ),\n to: FlowStakingCollection.StakingCollectionStoragePath\n )\n } else {\n signer.storage.save(\n \u003c- FlowStakingCollection.createStakingCollection(\n unlockedVault: flowToken,\n tokenHolder: nil\n ),\n to: FlowStakingCollection.StakingCollectionStoragePath\n )\n }\n\n // Publish a capability to the created staking collection.\n let stakingCollectionCap = signer.capabilities.storage.issue\u003c\u0026FlowStakingCollection.StakingCollection\u003e(\n FlowStakingCollection.StakingCollectionStoragePath\n )\n\n signer.capabilities.publish(\n stakingCollectionCap,\n at: FlowStakingCollection.StakingCollectionPublicPath\n )\n }\n\n // borrow a reference to the staking collection\n let collectionRef = signer.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow staking collection reference\")\n\n // If there is a node staker object in the account, put it in the staking collection\n if signer.storage.borrow\u003c\u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath) != nil {\n let node \u003c- signer.storage.load\u003c@FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)!\n collectionRef.addNodeObject(\u003c-node, machineAccountInfo: nil)\n }\n\n // If there is a delegator object in the account, put it in the staking collection\n if signer.storage.borrow\u003c\u0026FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath) != nil {\n let delegator \u003c- signer.storage.load\u003c@FlowIDTableStaking.NodeDelegator\u003e(from: FlowIDTableStaking.DelegatorStoragePath)!\n collectionRef.addDelegatorObject(\u003c-delegator)\n }\n }\n}\n", "arguments": [], "network": "testnet", - "hash": "0327a19adec5594c67e7a0d6e94697ab46443ea94c45ea014c6eaa09e71c91bf" + "hash": "861784e7ac135a9cfec90decdff2e53971a4d63135db77bcef3b273b710b1814" }, { "id": "SCO.02", diff --git a/transactions/FlowServiceAccount/deposit_fees.cdc b/transactions/FlowServiceAccount/deposit_fees.cdc index e91aa1714..1225086a8 100644 --- a/transactions/FlowServiceAccount/deposit_fees.cdc +++ b/transactions/FlowServiceAccount/deposit_fees.cdc @@ -13,7 +13,7 @@ transaction(amount: UFix64) { prepare(signer: auth(BorrowValue) &Account) { // Get a reference to the signer's stored vault - let vaultRef = signer.storage.borrow(from: /storage/flowTokenVault) + let vaultRef = signer.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to the owner's Vault!") // Withdraw tokens from the signer's stored vault diff --git a/transactions/epoch/node/register_node.cdc b/transactions/epoch/node/register_node.cdc index 35e2c8a6c..682e3a879 100644 --- a/transactions/epoch/node/register_node.cdc +++ b/transactions/epoch/node/register_node.cdc @@ -20,11 +20,11 @@ transaction( publicKeys: [Crypto.KeyListEntry] ) { - let flowTokenRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault + let flowTokenRef: auth(FungibleToken.Withdraw) &FlowToken.Vault prepare(acct: auth(Storage, Capabilities, AddKey) &Account) { - self.flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) + self.flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") // Register Node diff --git a/transactions/flowToken/burn_tokens.cdc b/transactions/flowToken/burn_tokens.cdc index b9a80e475..4707c3043 100644 --- a/transactions/flowToken/burn_tokens.cdc +++ b/transactions/flowToken/burn_tokens.cdc @@ -17,7 +17,7 @@ transaction(amount: UFix64) { prepare(signer: auth(BorrowValue) &Account) { // Withdraw tokens from the admin vault in storage - self.vault <- signer.storage.borrow(from: /storage/flowTokenVault)! + self.vault <- signer.storage.borrow(from: /storage/flowTokenVault)! .withdraw(amount: amount) // Create a reference to the admin admin resource in storage diff --git a/transactions/flowToken/transfer_tokens.cdc b/transactions/flowToken/transfer_tokens.cdc index a86c03f63..a75181e46 100644 --- a/transactions/flowToken/transfer_tokens.cdc +++ b/transactions/flowToken/transfer_tokens.cdc @@ -16,7 +16,7 @@ transaction(amount: UFix64, to: Address) { prepare(signer: auth(BorrowValue) &Account) { // Get a reference to the signer's stored vault - let vaultRef = signer.storage.borrow(from: /storage/flowTokenVault) + let vaultRef = signer.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to the owner's Vault!") // Withdraw tokens from the signer's stored vault diff --git a/transactions/idTableStaking/delegation/del_stake_new_tokens.cdc b/transactions/idTableStaking/delegation/del_stake_new_tokens.cdc index 75f978601..53a3615a7 100644 --- a/transactions/idTableStaking/delegation/del_stake_new_tokens.cdc +++ b/transactions/idTableStaking/delegation/del_stake_new_tokens.cdc @@ -8,14 +8,14 @@ transaction(amount: UFix64) { // Local variable for a reference to the delegator object let delegatorRef: auth(FlowIDTableStaking.DelegatorOwner) &FlowIDTableStaking.NodeDelegator - let flowTokenRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault + let flowTokenRef: auth(FungibleToken.Withdraw) &FlowToken.Vault prepare(acct: auth(BorrowValue) &Account) { // borrow a reference to the delegator object self.delegatorRef = acct.storage.borrow(from: FlowIDTableStaking.DelegatorStoragePath) ?? panic("Could not borrow reference to delegator") - self.flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) + self.flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") } diff --git a/transactions/idTableStaking/delegation/register_delegator.cdc b/transactions/idTableStaking/delegation/register_delegator.cdc index 8b09431ad..2bf96b299 100644 --- a/transactions/idTableStaking/delegation/register_delegator.cdc +++ b/transactions/idTableStaking/delegation/register_delegator.cdc @@ -6,7 +6,7 @@ transaction(nodeID: String, amount: UFix64) { prepare(acct: auth(Storage, Capabilities) &Account) { - let flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) + let flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") // Create a new delegator object for the node diff --git a/transactions/idTableStaking/node/register_many_nodes.cdc b/transactions/idTableStaking/node/register_many_nodes.cdc index 75f64bd28..8a5b12ce3 100644 --- a/transactions/idTableStaking/node/register_many_nodes.cdc +++ b/transactions/idTableStaking/node/register_many_nodes.cdc @@ -18,7 +18,7 @@ transaction( for path in paths { - let flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) + let flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") let tokensCommitted <- flowTokenRef.withdraw(amount: amounts[i]) diff --git a/transactions/idTableStaking/node/register_node.cdc b/transactions/idTableStaking/node/register_node.cdc index 67c27d872..7b1ff0909 100644 --- a/transactions/idTableStaking/node/register_node.cdc +++ b/transactions/idTableStaking/node/register_node.cdc @@ -14,11 +14,11 @@ transaction( amount: UFix64 ) { - let flowTokenRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault + let flowTokenRef: auth(FungibleToken.Withdraw) &FlowToken.Vault prepare(acct: auth(Storage, Capabilities) &Account) { - self.flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) + self.flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") let nodeStaker <- FlowIDTableStaking.addNodeRecord( diff --git a/transactions/idTableStaking/node/stake_new_tokens.cdc b/transactions/idTableStaking/node/stake_new_tokens.cdc index 8566a35e3..26c85abd7 100644 --- a/transactions/idTableStaking/node/stake_new_tokens.cdc +++ b/transactions/idTableStaking/node/stake_new_tokens.cdc @@ -7,14 +7,14 @@ transaction(amount: UFix64) { // Local variable for a reference to the node object let stakerRef: auth(FlowIDTableStaking.NodeOperator) &FlowIDTableStaking.NodeStaker - let flowTokenRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault + let flowTokenRef: auth(FungibleToken.Withdraw) &FlowToken.Vault prepare(acct: auth(BorrowValue) &Account) { // borrow a reference to the node object self.stakerRef = acct.storage.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) ?? panic("Could not borrow reference to staking admin") - self.flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) + self.flowTokenRef = acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to FLOW Vault") } diff --git a/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc b/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc index f880789cc..208453fd7 100644 --- a/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc +++ b/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc @@ -26,7 +26,7 @@ transaction( // Create a private link to the stored vault let vaultCapability = sharedAccount.capabilities.storage.issue - + (/storage/flowTokenVault) // create a locked token manager and stored it in the shared account @@ -34,7 +34,7 @@ transaction( sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) let tokenManagerCapability = sharedAccount - .capabilities.storage.issue( + .capabilities.storage.issue( LockedTokens.LockedTokenManagerStoragePath) let tokenHolder <- LockedTokens.createTokenHolder( diff --git a/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc b/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc index 04f8b99ce..80ad6466c 100644 --- a/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc @@ -22,14 +22,14 @@ transaction( userAccount.keys.add(publicKey: fullUserPublicKey.publicKey, hashAlgorithm: fullUserPublicKey.hashAlgorithm, weight: fullUserPublicKey.weight) let vaultCapability = sharedAccount.capabilities.storage - .issue(/storage/flowTokenVault) + .issue(/storage/flowTokenVault) let lockedTokenManager <- LockedTokens.createLockedTokenManager(vault: vaultCapability) sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) let tokenManagerCapability = sharedAccount.capabilities.storage - .issue( + .issue( LockedTokens.LockedTokenManagerStoragePath ) @@ -44,7 +44,7 @@ transaction( userAccount.capabilities.publish(tokenHolderCap, at: LockedTokens.LockedAccountInfoPublicPath) let tokenAdminCapability = sharedAccount.capabilities.storage - .issue( + .issue( LockedTokens.LockedTokenManagerStoragePath ) diff --git a/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc b/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc index 60f05b9c8..cb59bea1f 100644 --- a/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc @@ -20,14 +20,14 @@ transaction( sharedAccount.keys.add(publicKey: fullAdminPublicKey.publicKey, hashAlgorithm: fullAdminPublicKey.hashAlgorithm, weight: fullAdminPublicKey.weight) let vaultCapability = sharedAccount.capabilities.storage - .issue(/storage/flowTokenVault) + .issue(/storage/flowTokenVault) let lockedTokenManager <- LockedTokens.createLockedTokenManager(vault: vaultCapability) sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) let tokenManagerCapability = sharedAccount.capabilities.storage - .issue( + .issue( LockedTokens.LockedTokenManagerStoragePath ) @@ -45,7 +45,7 @@ transaction( userAccount.capabilities.publish(tokenHolderCap, at: LockedTokens.LockedAccountInfoPublicPath) let tokenAdminCapability = sharedAccount.capabilities.storage - .issue( + .issue( LockedTokens.LockedTokenManagerStoragePath ) diff --git a/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc b/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc index 1f42579e1..14943ac00 100644 --- a/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc @@ -22,14 +22,14 @@ transaction( sharedAccount.keys.add(publicKey: partialUserPublicKey.publicKey, hashAlgorithm: partialUserPublicKey.hashAlgorithm, weight: partialUserPublicKey.weight) let vaultCapability = sharedAccount.capabilities.storage - .issue(/storage/flowTokenVault) + .issue(/storage/flowTokenVault) let lockedTokenManager <- LockedTokens.createLockedTokenManager(vault: vaultCapability) sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) let tokenManagerCapability = sharedAccount.capabilities.storage - .issue( + .issue( LockedTokens.LockedTokenManagerStoragePath ) @@ -47,7 +47,7 @@ transaction( userAccount.capabilities.publish(tokenHolderCap, at: LockedTokens.LockedAccountInfoPublicPath) let tokenAdminCapability = sharedAccount.capabilities.storage - .issue( + .issue( LockedTokens.LockedTokenManagerStoragePath ) diff --git a/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc b/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc index bd03f096f..50de32a8b 100644 --- a/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc +++ b/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc @@ -24,14 +24,14 @@ transaction( userAccount.keys.add(publicKey: fullUserPublicKey.publicKey, hashAlgorithm: fullUserPublicKey.hashAlgorithm, weight: fullUserPublicKey.weight) let vaultCapability = sharedAccount.capabilities.storage - .issue(/storage/flowTokenVault) + .issue(/storage/flowTokenVault) let lockedTokenManager <- LockedTokens.createLockedTokenManager(vault: vaultCapability) sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) let tokenManagerCapability = sharedAccount.capabilities.storage - .issue( + .issue( LockedTokens.LockedTokenManagerStoragePath ) @@ -49,7 +49,7 @@ transaction( userAccount.capabilities.publish(tokenHolderCap, at: LockedTokens.LockedAccountInfoPublicPath) let tokenAdminCapability = sharedAccount.capabilities.storage - .issue( + .issue( LockedTokens.LockedTokenManagerStoragePath ) diff --git a/transactions/lockedTokens/admin/deposit_locked_tokens.cdc b/transactions/lockedTokens/admin/deposit_locked_tokens.cdc index 98ab5d9ff..014572c0c 100644 --- a/transactions/lockedTokens/admin/deposit_locked_tokens.cdc +++ b/transactions/lockedTokens/admin/deposit_locked_tokens.cdc @@ -11,7 +11,7 @@ transaction(to: Address, amount: UFix64) { prepare(admin: auth(BorrowValue) &Account) { // Get a reference to the admin's stored vault - let vaultRef = admin.storage.borrow(from: /storage/flowTokenVault) + let vaultRef = admin.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow reference to the owner's Vault!") let adminRef = admin.storage diff --git a/transactions/lockedTokens/delegator/delegate_new_tokens.cdc b/transactions/lockedTokens/delegator/delegate_new_tokens.cdc index 7b9415f82..c46546382 100644 --- a/transactions/lockedTokens/delegator/delegate_new_tokens.cdc +++ b/transactions/lockedTokens/delegator/delegate_new_tokens.cdc @@ -4,15 +4,15 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder - let vaultRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault + let vaultRef: auth(FungibleToken.Withdraw) &FlowToken.Vault prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") - self.vaultRef = account.storage.borrow(from: /storage/flowTokenVault) + self.vaultRef = account.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow flow token vault reference") } diff --git a/transactions/lockedTokens/delegator/delegate_rewarded_tokens.cdc b/transactions/lockedTokens/delegator/delegate_rewarded_tokens.cdc index 7cc5cc715..7494fe801 100644 --- a/transactions/lockedTokens/delegator/delegate_rewarded_tokens.cdc +++ b/transactions/lockedTokens/delegator/delegate_rewarded_tokens.cdc @@ -5,7 +5,7 @@ transaction(amount: UFix64) { let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy prepare(account: auth(BorrowValue) &Account) { - let holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + let holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("TokenHolder is not saved at specified path") self.nodeDelegatorProxy = holderRef.borrowDelegator() diff --git a/transactions/lockedTokens/delegator/delegate_unstaked_tokens.cdc b/transactions/lockedTokens/delegator/delegate_unstaked_tokens.cdc index 9fffc0da5..82b2852f6 100644 --- a/transactions/lockedTokens/delegator/delegate_unstaked_tokens.cdc +++ b/transactions/lockedTokens/delegator/delegate_unstaked_tokens.cdc @@ -5,7 +5,7 @@ transaction(amount: UFix64) { let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy prepare(account: auth(BorrowValue) &Account) { - let holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + let holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("TokenHolder is not saved at specified path") self.nodeDelegatorProxy = holderRef.borrowDelegator() diff --git a/transactions/lockedTokens/delegator/register_delegator.cdc b/transactions/lockedTokens/delegator/register_delegator.cdc index ac09b9ef7..fa2686fd8 100644 --- a/transactions/lockedTokens/delegator/register_delegator.cdc +++ b/transactions/lockedTokens/delegator/register_delegator.cdc @@ -5,15 +5,15 @@ import FungibleToken from "FungibleToken" transaction(id: String, amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder - let vaultRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault + let vaultRef: auth(FungibleToken.Withdraw) &FlowToken.Vault prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("TokenHolder is not saved at specified path") - self.vaultRef = account.storage.borrow(from: /storage/flowTokenVault) + self.vaultRef = account.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow flow token vault reference") } diff --git a/transactions/lockedTokens/delegator/request_unstaking.cdc b/transactions/lockedTokens/delegator/request_unstaking.cdc index e11e83bbb..d0f031d77 100644 --- a/transactions/lockedTokens/delegator/request_unstaking.cdc +++ b/transactions/lockedTokens/delegator/request_unstaking.cdc @@ -5,7 +5,7 @@ transaction(amount: UFix64) { let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy prepare(account: auth(BorrowValue) &Account) { - let holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + let holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("TokenHolder is not saved at specified path") self.nodeDelegatorProxy = holderRef.borrowDelegator() diff --git a/transactions/lockedTokens/delegator/withdraw_rewarded_tokens.cdc b/transactions/lockedTokens/delegator/withdraw_rewarded_tokens.cdc index ca94d9840..4164c039c 100644 --- a/transactions/lockedTokens/delegator/withdraw_rewarded_tokens.cdc +++ b/transactions/lockedTokens/delegator/withdraw_rewarded_tokens.cdc @@ -4,11 +4,11 @@ import FungibleToken from "FungibleToken" transaction(amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder let vaultRef: &FlowToken.Vault prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") self.vaultRef = account.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) diff --git a/transactions/lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc b/transactions/lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc index aced814b3..ea45adb77 100644 --- a/transactions/lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc +++ b/transactions/lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc @@ -5,7 +5,7 @@ transaction(amount: UFix64) { let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy prepare(account: auth(BorrowValue) &Account) { - let holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + let holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("TokenHolder is not saved at specified path") self.nodeDelegatorProxy = holderRef.borrowDelegator() diff --git a/transactions/lockedTokens/delegator/withdraw_unstaked_tokens.cdc b/transactions/lockedTokens/delegator/withdraw_unstaked_tokens.cdc index d01be960a..4c1de5f41 100644 --- a/transactions/lockedTokens/delegator/withdraw_unstaked_tokens.cdc +++ b/transactions/lockedTokens/delegator/withdraw_unstaked_tokens.cdc @@ -5,7 +5,7 @@ transaction(amount: UFix64) { let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy prepare(account: auth(BorrowValue) &Account) { - let holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + let holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("TokenHolder is not saved at specified path") self.nodeDelegatorProxy = holderRef.borrowDelegator() diff --git a/transactions/lockedTokens/staker/register_node.cdc b/transactions/lockedTokens/staker/register_node.cdc index d6ba438c6..8ed6563db 100644 --- a/transactions/lockedTokens/staker/register_node.cdc +++ b/transactions/lockedTokens/staker/register_node.cdc @@ -5,15 +5,15 @@ import StakingProxy from 0xSTAKINGPROXYADDRESS transaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder - let vaultRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault + let vaultRef: auth(FungibleToken.Withdraw) &FlowToken.Vault prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow ref to TokenHolder") - self.vaultRef = account.storage.borrow(from: /storage/flowTokenVault) + self.vaultRef = account.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow flow token vault reference") } diff --git a/transactions/lockedTokens/staker/request_unstaking.cdc b/transactions/lockedTokens/staker/request_unstaking.cdc index 5b6b90289..67c17e6de 100644 --- a/transactions/lockedTokens/staker/request_unstaking.cdc +++ b/transactions/lockedTokens/staker/request_unstaking.cdc @@ -4,10 +4,10 @@ import FungibleToken from "FungibleToken" transaction(amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") } diff --git a/transactions/lockedTokens/staker/stake_new_tokens.cdc b/transactions/lockedTokens/staker/stake_new_tokens.cdc index 5fe0ba2bf..8a7a98c19 100644 --- a/transactions/lockedTokens/staker/stake_new_tokens.cdc +++ b/transactions/lockedTokens/staker/stake_new_tokens.cdc @@ -5,15 +5,15 @@ import StakingProxy from 0xSTAKINGPROXYADDRESS transaction(amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder - let vaultRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault + let vaultRef: auth(FungibleToken.Withdraw) &FlowToken.Vault prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") - self.vaultRef = account.storage.borrow(from: /storage/flowTokenVault) + self.vaultRef = account.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow flow token vault reference") } diff --git a/transactions/lockedTokens/staker/stake_rewarded_tokens.cdc b/transactions/lockedTokens/staker/stake_rewarded_tokens.cdc index a6b6edafe..d8d5a6837 100644 --- a/transactions/lockedTokens/staker/stake_rewarded_tokens.cdc +++ b/transactions/lockedTokens/staker/stake_rewarded_tokens.cdc @@ -4,10 +4,10 @@ import FungibleToken from "FungibleToken" transaction(amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") } diff --git a/transactions/lockedTokens/staker/stake_unstaked_tokens.cdc b/transactions/lockedTokens/staker/stake_unstaked_tokens.cdc index bdde9f282..fdea2a8bb 100644 --- a/transactions/lockedTokens/staker/stake_unstaked_tokens.cdc +++ b/transactions/lockedTokens/staker/stake_unstaked_tokens.cdc @@ -4,10 +4,10 @@ import FungibleToken from "FungibleToken" transaction(amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") } diff --git a/transactions/lockedTokens/staker/unstake_all.cdc b/transactions/lockedTokens/staker/unstake_all.cdc index c77dd7215..ab365c8d3 100644 --- a/transactions/lockedTokens/staker/unstake_all.cdc +++ b/transactions/lockedTokens/staker/unstake_all.cdc @@ -4,10 +4,10 @@ import FungibleToken from "FungibleToken" transaction() { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") } diff --git a/transactions/lockedTokens/staker/update_networking_address.cdc b/transactions/lockedTokens/staker/update_networking_address.cdc index 2652763d5..274d5abc3 100644 --- a/transactions/lockedTokens/staker/update_networking_address.cdc +++ b/transactions/lockedTokens/staker/update_networking_address.cdc @@ -3,10 +3,10 @@ import FungibleToken from "FungibleToken" transaction(newAddress: String) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") } diff --git a/transactions/lockedTokens/staker/withdraw_rewarded_tokens.cdc b/transactions/lockedTokens/staker/withdraw_rewarded_tokens.cdc index 311f7f77c..acd4a28b3 100644 --- a/transactions/lockedTokens/staker/withdraw_rewarded_tokens.cdc +++ b/transactions/lockedTokens/staker/withdraw_rewarded_tokens.cdc @@ -4,11 +4,11 @@ import FungibleToken from "FungibleToken" transaction(amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder let vaultRef: &FlowToken.Vault prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") self.vaultRef = account.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) diff --git a/transactions/lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc b/transactions/lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc index 474123d1f..ed3aab5eb 100644 --- a/transactions/lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc +++ b/transactions/lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc @@ -4,10 +4,10 @@ import FungibleToken from "FungibleToken" transaction(amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") } diff --git a/transactions/lockedTokens/staker/withdraw_unstaked_tokens.cdc b/transactions/lockedTokens/staker/withdraw_unstaked_tokens.cdc index cbc8d7d2f..60423f4d4 100644 --- a/transactions/lockedTokens/staker/withdraw_unstaked_tokens.cdc +++ b/transactions/lockedTokens/staker/withdraw_unstaked_tokens.cdc @@ -4,10 +4,10 @@ import FungibleToken from "FungibleToken" transaction(amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder prepare(account: auth(BorrowValue) &Account) { - self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = account.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow reference to TokenHolder") } diff --git a/transactions/lockedTokens/user/deposit_tokens.cdc b/transactions/lockedTokens/user/deposit_tokens.cdc index 2b024f360..ac3f79e27 100644 --- a/transactions/lockedTokens/user/deposit_tokens.cdc +++ b/transactions/lockedTokens/user/deposit_tokens.cdc @@ -5,13 +5,13 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(amount: UFix64) { let holderRef: &LockedTokens.TokenHolder - let vaultRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault + let vaultRef: auth(FungibleToken.Withdraw) &FlowToken.Vault prepare(acct: auth(BorrowValue) &Account) { self.holderRef = acct.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow a reference to TokenHolder") - self.vaultRef = acct.storage.borrow(from: /storage/flowTokenVault) + self.vaultRef = acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow flow token vault ref") } diff --git a/transactions/lockedTokens/user/withdraw_tokens.cdc b/transactions/lockedTokens/user/withdraw_tokens.cdc index 54a03211c..6dfc29a35 100644 --- a/transactions/lockedTokens/user/withdraw_tokens.cdc +++ b/transactions/lockedTokens/user/withdraw_tokens.cdc @@ -4,14 +4,14 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS transaction(amount: UFix64) { - let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdrawable) &LockedTokens.TokenHolder - let vaultRef: auth(FungibleToken.Withdrawable) &FlowToken.Vault + let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) &LockedTokens.TokenHolder + let vaultRef: auth(FungibleToken.Withdraw) &FlowToken.Vault prepare(acct: auth(BorrowValue) &Account) { - self.holderRef = acct.storage.borrow(from: LockedTokens.TokenHolderStoragePath) + self.holderRef = acct.storage.borrow(from: LockedTokens.TokenHolderStoragePath) ?? panic("Could not borrow a reference to TokenHolder") - self.vaultRef = acct.storage.borrow(from: /storage/flowTokenVault) + self.vaultRef = acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow flow token vault ref") } diff --git a/transactions/stakingCollection/create_new_tokenholder_acct.cdc b/transactions/stakingCollection/create_new_tokenholder_acct.cdc index fccec326a..8d5af1295 100644 --- a/transactions/stakingCollection/create_new_tokenholder_acct.cdc +++ b/transactions/stakingCollection/create_new_tokenholder_acct.cdc @@ -23,7 +23,7 @@ transaction(publicKeys: [Crypto.KeyListEntry]) { // Get the TokenManager Capability from the locked account. let tokenManagerCapabilityController = signer.capabilities.storage.getControllers(forPath: LockedTokens.LockedTokenManagerStoragePath)[1]! - let tokenManagerCapability = tokenManagerCapabilityController.capability as! Capability + let tokenManagerCapability = tokenManagerCapabilityController.capability as! Capability // Use the manager capability to create a new TokenHolder. let tokenHolder <- LockedTokens.createTokenHolder( @@ -46,8 +46,8 @@ transaction(publicKeys: [Crypto.KeyListEntry]) { // Create capabilities for the token holder and unlocked vault. - let lockedHolder = newAccount.capabilities.storage.issue(LockedTokens.TokenHolderStoragePath) - let flowToken = newAccount.capabilities.storage.issue(/storage/flowTokenVault) + let lockedHolder = newAccount.capabilities.storage.issue(LockedTokens.TokenHolderStoragePath) + let flowToken = newAccount.capabilities.storage.issue(/storage/flowTokenVault) // Create a new Staking Collection and put it in storage. if lockedHolder.check() { diff --git a/transactions/stakingCollection/setup_staking_collection.cdc b/transactions/stakingCollection/setup_staking_collection.cdc index ef6aef1c7..182b1c065 100644 --- a/transactions/stakingCollection/setup_staking_collection.cdc +++ b/transactions/stakingCollection/setup_staking_collection.cdc @@ -15,8 +15,8 @@ transaction { if signer.storage.borrow<&FlowStakingCollection.StakingCollection>(from: FlowStakingCollection.StakingCollectionStoragePath) == nil { // Create private capabilities for the token holder and unlocked vault - let lockedHolder = signer.capabilities.storage.issue(LockedTokens.TokenHolderStoragePath)! - let flowToken = signer.capabilities.storage.issue(/storage/flowTokenVault)! + let lockedHolder = signer.capabilities.storage.issue(LockedTokens.TokenHolderStoragePath)! + let flowToken = signer.capabilities.storage.issue(/storage/flowTokenVault)! // Create a new Staking Collection and put it in storage if lockedHolder.check() { From 0c5bccb17e0b0b76b7bee024eb53c02a5cb04adf Mon Sep 17 00:00:00 2001 From: Supun Setunga Date: Tue, 23 Jan 2024 09:37:16 -0800 Subject: [PATCH 066/160] Update Cadence version (#406) --- lib/go/contracts/go.mod | 23 ++++++------- lib/go/contracts/go.sum | 73 ++++++++++++++++++++++++----------------- lib/go/templates/go.mod | 29 +++++++++++----- lib/go/templates/go.sum | 25 +++++++------- 4 files changed, 86 insertions(+), 64 deletions(-) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 8c46b5d6d..4ee32e175 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -4,14 +4,14 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240122215608-fc1538d92763 - github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2 - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240122215714-3c2b2d2c2e47 + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231212194336-a2802ba36596 + github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2.0.20240122164005-147ad40664ca + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240122215824-10d8a31d1991 github.com/stretchr/testify v1.8.4 ) require ( - github.com/SaveTheRbtz/mph v0.1.2 // indirect + github.com/SaveTheRbtz/mph v0.1.1-0.20240117162131-4166ec7869bc // indirect github.com/bits-and-blooms/bitset v1.5.0 // indirect github.com/btcsuite/btcd/btcec/v2 v2.2.1 // indirect github.com/davecgh/go-spew v1.1.1 // indirect @@ -19,26 +19,27 @@ require ( github.com/ethereum/go-ethereum v1.9.13 // indirect github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c // indirect github.com/fxamacker/circlehash v0.3.0 // indirect - github.com/go-test/deep v1.1.0 // indirect github.com/k0kubun/pp v3.0.1+incompatible // indirect github.com/klauspost/cpuid/v2 v2.2.4 // indirect + github.com/kr/pretty v0.3.1 // indirect + github.com/kr/text v0.2.0 // indirect github.com/logrusorgru/aurora/v4 v4.0.0 // indirect github.com/mattn/go-colorable v0.1.13 // indirect - github.com/mattn/go-isatty v0.0.16 // indirect + github.com/mattn/go-isatty v0.0.17 // indirect github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f // indirect - github.com/onflow/cadence v1.0.0-preview.1 // indirect + github.com/onflow/cadence v1.0.0-preview.2.0.20240122125204-5ce1f36f95bb // indirect github.com/onflow/flow-go/crypto v0.24.7 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/rivo/uniseg v0.4.4 // indirect + github.com/rogpeppe/go-internal v1.9.0 // indirect github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c // indirect github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d // indirect github.com/x448/float16 v0.8.4 // indirect github.com/zeebo/blake3 v0.2.3 // indirect - github.com/zeebo/xxh3 v1.0.2 // indirect go.opentelemetry.io/otel v1.14.0 // indirect golang.org/x/crypto v0.17.0 // indirect - golang.org/x/exp v0.0.0-20230321023759-10a507213a29 // indirect + golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc // indirect golang.org/x/sys v0.15.0 // indirect golang.org/x/text v0.14.0 // indirect golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect @@ -53,7 +54,3 @@ retract ( v1.2.4 // contains retraction only v1.2.3 // accidentally published with out-of-order tag ) - -replace github.com/onflow/flow-ft/lib/go/contracts => ../../../../../flow-ft/lib/go/contracts - -replace github.com/onflow/flow-nft/lib/go/contracts => ../../../../flow-nft/lib/go/contracts diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index eb338324e..d10d66633 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -538,8 +538,8 @@ github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c/go.mod h1:X0CRv0ky0k6m906ixxpzmDRLvX58TFUKS2eePweuyxk= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/OneOfOne/xxhash v1.2.5/go.mod h1:eZbhyaAYD41SGSSsnmcpxVoRiQ/MPUTjUdIIOT9Um7Q= -github.com/SaveTheRbtz/mph v0.1.2 h1:5l3W496Up+7BNOVJQnJhzcGBh+wWfxWdmPUAkx3WmaM= -github.com/SaveTheRbtz/mph v0.1.2/go.mod h1:V4+WtKQPe2+dEA5os1WnGsEB0NR9qgqqgIiSt73+sT4= +github.com/SaveTheRbtz/mph v0.1.1-0.20240117162131-4166ec7869bc h1:DCHzPQOcU/7gwDTWbFQZc5qHMPS1g0xTO56k8NXsv9M= +github.com/SaveTheRbtz/mph v0.1.1-0.20240117162131-4166ec7869bc/go.mod h1:LJM5a3zcIJ/8TmZwlUczvROEJT8ntOdhdG9jjcR1B0I= github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg= github.com/VictoriaMetrics/fastcache v1.5.3/go.mod h1:+jv9Ckb+za/P1ZRg/sulP5Ni1v49daAVERr0H3CuscE= github.com/ajstarks/deck v0.0.0-20200831202436-30c9fc6549a9/go.mod h1:JynElWSGnm/4RlzPXRlREEwqTHAN3T56Bv2ITsFT3gY= @@ -572,7 +572,6 @@ github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.6/go.mod h1:Lh/bc9XUf8CfOY6Jp github.com/aws/aws-sdk-go-v2/service/sts v1.18.7/go.mod h1:JuTnSoeePXmMVe9G8NcjjwgOKEfZ4cOjMuT2IBT/2eI= github.com/aws/smithy-go v1.13.5/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= -github.com/bits-and-blooms/bitset v1.2.2/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= github.com/bits-and-blooms/bitset v1.5.0 h1:NpE8frKRLGHIcEzkR+gZhiioW1+WbYV6fKwD6ZIpQT8= github.com/bits-and-blooms/bitset v1.5.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= github.com/boombuler/barcode v1.0.0/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= @@ -582,7 +581,7 @@ github.com/btcsuite/btcd/btcec/v2 v2.2.1 h1:xP60mv8fvp+0khmrN0zTdPC3cNm24rfeE6lh github.com/btcsuite/btcd/btcec/v2 v2.2.1/go.mod h1:9/CSmJxmuvqzX9Wh2fXMWToLOHhPd11lSPuIupwTkI8= github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1/go.mod h1:7SFka0XMvUgj3hfZtydOrQY2mwhPclbT2snogU7SQQc= github.com/bytecodealliance/wasmtime-go/v7 v7.0.0/go.mod h1:bu6fic7trDt20w+LMooX7j3fsOwv4/ln6j8gAdP6vmA= -github.com/c-bata/go-prompt v0.2.5/go.mod h1:vFnjEGDIIA/Lib7giyE4E9c50Lvl8j0S+7FVlAwDAVw= +github.com/c-bata/go-prompt v0.2.6/go.mod h1:/LMAke8wD2FsNu9EXNdHxNLbd9MedkPnCdfpU9wwHfY= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/census-instrumentation/opencensus-proto v0.3.0/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/census-instrumentation/opencensus-proto v0.4.1/go.mod h1:4T9NM4+4Vw91VeyqjLS6ao50K5bOcLKN6Q42XnYaRYw= @@ -683,9 +682,6 @@ github.com/go-pdf/fpdf v0.5.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhO github.com/go-pdf/fpdf v0.6.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= github.com/go-sourcemap/sourcemap v2.1.2+incompatible/go.mod h1:F8jJfvm2KbVjc5NqelyYJmf/v5J0dwNLS2mL4sNA1Jg= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= -github.com/go-test/deep v1.0.5/go.mod h1:QV8Hv/iy04NyLBxAdO9njL0iVPN1S4d/A3NVv1V36o8= -github.com/go-test/deep v1.1.0 h1:WOcxcdHcvdgThNXjw0t76K42FXTU7HpNQWHpA2HHNlg= -github.com/go-test/deep v1.1.0/go.mod h1:5C2ZWiW0ErCdrYzpqxLbTX7MG14M9iiw8DgHncVwcsE= github.com/goccy/go-json v0.9.11/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= @@ -832,8 +828,9 @@ github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= -github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0= github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk= +github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= +github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= @@ -857,14 +854,14 @@ github.com/mattn/go-isatty v0.0.5-0.20180830101745-3fb116b82035/go.mod h1:M+lRXT github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84= github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= -github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= -github.com/mattn/go-isatty v0.0.16 h1:bq3VjFmv/sOjHtdEhmkEV4x1AJtvUvOJ2PFAZ5+peKQ= github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= +github.com/mattn/go-isatty v0.0.17 h1:BTarxUcIeDqL27Mc+vyvdWYSL28zpIhv3RoTdsLMPng= +github.com/mattn/go-isatty v0.0.17/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= github.com/mattn/go-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.6/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= -github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= +github.com/mattn/go-runewidth v0.0.14/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= github.com/mattn/go-sqlite3 v1.14.14/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU= github.com/mattn/go-tty v0.0.3/go.mod h1:ihxohKRERHTVzN+aSVRwACLCeqIoZAWpoICkkvrWyR0= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= @@ -879,12 +876,18 @@ github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXW github.com/olekukonko/tablewriter v0.0.2-0.20190409134802-7e037d187b0c/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f h1:Z8/PgTqOgOg02MTRpTBYO2k16FE6z4wEOtaC2WBR9Xo= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f/go.mod h1:xvP61FoOs95K7IYdIYRnNcYQGf4nbF/uuJ0tHf4DRuM= -github.com/onflow/cadence v1.0.0-preview.1 h1:Y/q/43aDc93/1Atsxx3+e2V/dZiQuF1TqkXEVboA5pY= -github.com/onflow/cadence v1.0.0-preview.1/go.mod h1:Q5Up9Kt+J6zuAFmgrsiKz6t//E/hR5/iuVjH62pdztk= -github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2 h1:vUVO6m85BiT8c50Oc8YGc3CU+sGqiKW9FZbmiRph2dU= -github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2/go.mod h1:mbLrR3MkYbi9LH3yasDj1jrR4QTR8vjRLVFCm4jMHn0= +github.com/onflow/cadence v1.0.0-preview.2.0.20240122125204-5ce1f36f95bb h1:OpNQ8+ZPBg5DHchnZyiBySz/OQc4uIeptTm7cBfCvOA= +github.com/onflow/cadence v1.0.0-preview.2.0.20240122125204-5ce1f36f95bb/go.mod h1:odXGZZ/wGNA5mwT8bC9v8u8EXACHllB2ABSZK65TGL8= +github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= +github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231212194336-a2802ba36596 h1:MTgrwXkiWwNysYpWGzWjc1n9w1nfXvizmGkSAuEY6jk= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231212194336-a2802ba36596/go.mod h1:uugR8U8Rlk2Xbn1ne7WWkPIcLReOyyXeQ/6tBg2Lsu8= +github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2.0.20240122164005-147ad40664ca h1:7yG8dYqMzWzTZWJ17dnBdS01UDlOBnf1dd1rWKcFdY0= +github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2.0.20240122164005-147ad40664ca/go.mod h1:O5+TK1qs2c1R5X4TEQp4m2c/YhlCjwdW7bsRcUB1U8s= github.com/onflow/flow-go/crypto v0.24.7 h1:RCLuB83At4z5wkAyUCF7MYEnPoIIOHghJaODuJyEoW0= github.com/onflow/flow-go/crypto v0.24.7/go.mod h1:fqCzkIBBMRRkciVrvW21rECKq1oD7Q6u+bCI78lfNX0= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240122215824-10d8a31d1991 h1:UPDAaWUag3epvX+yJ5IrFESQr1P53rDDqw+ShGxg5/k= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240122215824-10d8a31d1991/go.mod h1:CPLntX0UYLgZvvgoHfEwaaeSL3IS/eFzAdfbT0aIhb4= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= @@ -904,7 +907,7 @@ github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI= github.com/pkg/sftp v1.13.1/go.mod h1:3HaPG6Dq1ILlpPZRO0HVMrsydcdLt6HRDccSgb87qRg= -github.com/pkg/term v1.1.0/go.mod h1:E25nymQcrSllhX42Ok8MRm1+hyBdHY0dCeiKZ9jpNGw= +github.com/pkg/term v1.2.0-beta.2/go.mod h1:E25nymQcrSllhX42Ok8MRm1+hyBdHY0dCeiKZ9jpNGw= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= @@ -916,7 +919,6 @@ github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R github.com/prometheus/tsdb v0.6.2-0.20190402121629-4f204dcbc150/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= -github.com/rivo/uniseg v0.2.1-0.20211004051800-57c86be7915a/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= github.com/rivo/uniseg v0.4.4 h1:8TfxU8dW6PdqD27gjM8MVNuicgxIjxpm4K7x4jp8sis= github.com/rivo/uniseg v0.4.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= github.com/rjeczalik/notify v0.9.1/go.mod h1:rKwnCoCGeuQnwBtTSPL9Dad03Vh2n40ePRrjvIXnJho= @@ -930,7 +932,7 @@ github.com/rs/xhandler v0.0.0-20160618193221-ed27b6fd6521/go.mod h1:RvLn4FgxWubr github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/ruudk/golang-pdf417 v0.0.0-20181029194003-1af4ab5afa58/go.mod h1:6lfFZQK844Gfx8o5WFuvpxWRwnSoipWe/p622j1v06w= github.com/ruudk/golang-pdf417 v0.0.0-20201230142125-a7e3863a1245/go.mod h1:pQAZKsJ8yyVxGRWYNEm9oFB8ieLgKFnamEyDmSA0BRk= -github.com/schollz/progressbar/v3 v3.8.3/go.mod h1:pWnVCjSBZsT2X3nx9HfRdnCDrpbevliMeoEVhStwHko= +github.com/schollz/progressbar/v3 v3.13.1/go.mod h1:xvrbki8kfT1fzWzBT/UZd9L6GA+jdL7HAgq2RFnO6fQ= github.com/sergi/go-diff v1.2.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/sirupsen/logrus v1.4.2 h1:SPIRibHv4MatM3XXNO2BJeFLZwZ2LvZgfQ5+UNI2im4= @@ -987,7 +989,6 @@ github.com/zeebo/blake3 v0.2.3 h1:TFoLXsjeXqRNFxSbk35Dk4YtszE/MQQGK10BH4ptoTg= github.com/zeebo/blake3 v0.2.3/go.mod h1:mjJjZpnsyIVtVgTOSpJ9vmRE4wgDeyt2HU3qXvvKCaQ= github.com/zeebo/pcg v1.0.1 h1:lyqfGeWiv4ahac6ttHs+I5hwtH/+1mrhlCtVNQM2kHo= github.com/zeebo/pcg v1.0.1/go.mod h1:09F0S9iiKrwn9rlI5yjLkmrug154/YRW6KnnXVDM/l4= -github.com/zeebo/xxh3 v1.0.2 h1:xZmwmqxHZA8AI603jOQ0tMqmBr9lPeFwGg6d+xy9DC0= github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= @@ -1014,12 +1015,12 @@ golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8U golang.org/x/crypto v0.0.0-20200311171314-f7b00557c8c4/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= -golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw= -golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= +golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliYc= +golang.org/x/crypto v0.16.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= golang.org/x/crypto v0.17.0 h1:r8bRNjWL3GshPW3gkd+RpvzWrZAwPS49OmTGZ/uhM4k= golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -1037,9 +1038,8 @@ golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u0 golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= golang.org/x/exp v0.0.0-20220827204233-334a2380cb91/go.mod h1:cyybsKvd6eL0RnXn6p/Grxp8F5bW7iYuBgsNCOHpMYE= -golang.org/x/exp v0.0.0-20221110155412-d0897a79cd37/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= -golang.org/x/exp v0.0.0-20230321023759-10a507213a29 h1:ooxPy7fPvB4kwsA2h+iBNHkAbp/4JxTSwCmvdjEYmug= -golang.org/x/exp v0.0.0-20230321023759-10a507213a29/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= +golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc h1:ao2WRsKSzW6KuUY9IWPwWahcHCgR0s52IfwutMfEbdM= +golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc/go.mod h1:iRJReGqOEeBhDZGkGbynYwcHlctCvnjTYIamk7uXpHI= golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= @@ -1080,10 +1080,11 @@ golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.5.0/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= -golang.org/x/mod v0.6.0/go.mod h1:4mET923SAdbXp2ki8ey+zGs1SLqsuM2Y0uvdZR/fUNI= golang.org/x/mod v0.7.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= -golang.org/x/mod v0.8.0 h1:LUYupSeNrTNCGzR/hVBk2NHZO4hXcVaW1k4Qx7rjPx8= golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/mod v0.14.0 h1:dGoOF9QVLYng8IHTm7BAyWqCqSheQ5pYWGhzW00YJr0= +golang.org/x/mod v0.14.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -1142,6 +1143,9 @@ golang.org/x/net v0.5.0/go.mod h1:DivGGAXEgPSlEBzxGzZI+ZLohi+xUj054jfeKui00ws= golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= +golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= +golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk= +golang.org/x/net v0.19.0/go.mod h1:CfAk/cbD4CthTvqiEl8NpboMuiuOYsAr/7NOjZJtv1U= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -1186,6 +1190,8 @@ golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= +golang.org/x/sync v0.5.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -1245,7 +1251,6 @@ golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210910150752-751e447fb3d0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= @@ -1272,16 +1277,20 @@ golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.4.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= -golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= golang.org/x/term v0.4.0/go.mod h1:9P2UbLfCdcvo3p/nzKvsmas4TnlujnuoV9hGgYzW1lQ= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= +golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= +golang.org/x/term v0.12.0/go.mod h1:owVbMEjm3cBLCHdkQu9b1opXd4ETQWc3BhuQGKgXgvU= +golang.org/x/term v0.15.0/go.mod h1:BDl952bC7+uMoWR75FIrCDx79TPU9oHkTZ9yRbYOrX0= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -1297,6 +1306,8 @@ golang.org/x/text v0.5.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.6.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= +golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= +golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= @@ -1364,10 +1375,11 @@ golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.8/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= golang.org/x/tools v0.1.9/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= -golang.org/x/tools v0.2.0/go.mod h1:y4OqIKeOV/fWJetJ8bXPU1sEVniLMIyDAZWeHdV+NTA= golang.org/x/tools v0.3.0/go.mod h1:/rWhSS2+zyEVwoJf8YAX6L2f0ntZ7Kn/mGgAWcipA5k= -golang.org/x/tools v0.6.0 h1:BOw41kyTf3PuCW1pVQf8+Cyg8pMlkYB1oo9iJ6D/lKM= golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= +golang.org/x/tools v0.13.0/go.mod h1:HvlwmtVNQAhOuCjW7xxvovg8wbNq7LwfXh/k7wXUl58= +golang.org/x/tools v0.16.0 h1:GO788SKMRunPIBCXiQyo2AaexLstOrVhuAL5YwsckQM= +golang.org/x/tools v0.16.0/go.mod h1:kYVVN6I1mBNoB1OX+noeBjbRk4IUEPa7JJ+TJMEooJ0= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= @@ -1381,6 +1393,7 @@ gonum.org/v1/gonum v0.0.0-20180816165407-929014505bf4/go.mod h1:Y+Yx5eoAFn32cQvJ gonum.org/v1/gonum v0.6.1/go.mod h1:9mxDZsDKxgMAuccQkewq682L+0eCu4dCN2yonUJTCLU= gonum.org/v1/gonum v0.8.2/go.mod h1:oe/vMfY3deqTw+1EZJhuvEW2iwGF1bW9wwu7XCu0+v0= gonum.org/v1/gonum v0.9.3/go.mod h1:TZumC3NeyVQskjXqmyWt4S3bINhy7B4eYwW69EbyX+0= +gonum.org/v1/gonum v0.11.0 h1:f1IJhK4Km5tBJmaiJXtk/PkL4cdVX6J+tGiM187uT5E= gonum.org/v1/gonum v0.11.0/go.mod h1:fSG4YDCxxUZQJ7rKsQrj0gMOg00Il0Z96/qMA4bVQhA= gonum.org/v1/netlib v0.0.0-20190313105609-8cb42192e0e0/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= gonum.org/v1/plot v0.0.0-20190515093506-e2840ee46a6b/go.mod h1:Wt8AAjI+ypCyYX3nZBvf6cAIx93T+c/OS2HFAYskSZc= diff --git a/lib/go/templates/go.mod b/lib/go/templates/go.mod index fca291d4d..04aa72a15 100644 --- a/lib/go/templates/go.mod +++ b/lib/go/templates/go.mod @@ -4,14 +4,14 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.24.0+incompatible - github.com/onflow/cadence v1.0.0-preview.1 - github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2 + github.com/onflow/cadence v1.0.0-preview.2.0.20240122125204-5ce1f36f95bb + github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2.0.20240122164005-147ad40664ca github.com/psiemens/sconfig v0.1.0 github.com/spf13/cobra v1.5.0 ) require ( - github.com/SaveTheRbtz/mph v0.1.2 // indirect + github.com/SaveTheRbtz/mph v0.1.1-0.20240117162131-4166ec7869bc // indirect github.com/bits-and-blooms/bitset v1.5.0 // indirect github.com/btcsuite/btcd/btcec/v2 v2.2.1 // indirect github.com/davecgh/go-spew v1.1.1 // indirect @@ -24,11 +24,12 @@ require ( github.com/inconshreveable/mousetrap v1.0.0 // indirect github.com/k0kubun/pp v3.0.1+incompatible // indirect github.com/klauspost/cpuid/v2 v2.2.4 // indirect + github.com/kr/pretty v0.3.1 // indirect github.com/kr/text v0.2.0 // indirect github.com/logrusorgru/aurora/v4 v4.0.0 // indirect github.com/magiconair/properties v1.8.0 // indirect github.com/mattn/go-colorable v0.1.13 // indirect - github.com/mattn/go-isatty v0.0.16 // indirect + github.com/mattn/go-isatty v0.0.17 // indirect github.com/mitchellh/mapstructure v1.1.2 // indirect github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f // indirect github.com/onflow/flow-go/crypto v0.24.7 // indirect @@ -36,6 +37,7 @@ require ( github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/rivo/uniseg v0.4.4 // indirect + github.com/rogpeppe/go-internal v1.9.0 // indirect github.com/spf13/afero v1.9.2 // indirect github.com/spf13/cast v1.3.0 // indirect github.com/spf13/jwalterweatherman v1.0.0 // indirect @@ -46,13 +48,22 @@ require ( github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d // indirect github.com/x448/float16 v0.8.4 // indirect github.com/zeebo/blake3 v0.2.3 // indirect - github.com/zeebo/xxh3 v1.0.2 // indirect go.opentelemetry.io/otel v1.14.0 // indirect - golang.org/x/crypto v0.7.0 // indirect - golang.org/x/exp v0.0.0-20230321023759-10a507213a29 // indirect - golang.org/x/sys v0.6.0 // indirect - golang.org/x/text v0.8.0 // indirect + golang.org/x/crypto v0.17.0 // indirect + golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc // indirect + golang.org/x/sys v0.15.0 // indirect + golang.org/x/text v0.14.0 // indirect golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect + gonum.org/v1/gonum v0.11.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) + +// This retraction block retracts version v1.2.3, which was tagged out-of-order. +// Currently go considers v1.2.3 to be the latest version, due to semver ordering, +// despite it being several months old and many revisions behind the tip. +// This retract block is based on https://go.dev/ref/mod#go-mod-file-retract. +retract ( + v1.2.4 // contains retraction only + v1.2.3 // accidentally published with out-of-order tag +) diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index a62c29029..09488640a 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -54,8 +54,8 @@ github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03 github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/OneOfOne/xxhash v1.2.5/go.mod h1:eZbhyaAYD41SGSSsnmcpxVoRiQ/MPUTjUdIIOT9Um7Q= -github.com/SaveTheRbtz/mph v0.1.2 h1:5l3W496Up+7BNOVJQnJhzcGBh+wWfxWdmPUAkx3WmaM= -github.com/SaveTheRbtz/mph v0.1.2/go.mod h1:V4+WtKQPe2+dEA5os1WnGsEB0NR9qgqqgIiSt73+sT4= +github.com/SaveTheRbtz/mph v0.1.1-0.20240117162131-4166ec7869bc h1:DCHzPQOcU/7gwDTWbFQZc5qHMPS1g0xTO56k8NXsv9M= +github.com/SaveTheRbtz/mph v0.1.1-0.20240117162131-4166ec7869bc/go.mod h1:LJM5a3zcIJ/8TmZwlUczvROEJT8ntOdhdG9jjcR1B0I= github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg= github.com/VictoriaMetrics/fastcache v1.5.3/go.mod h1:+jv9Ckb+za/P1ZRg/sulP5Ni1v49daAVERr0H3CuscE= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= @@ -271,10 +271,11 @@ github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXW github.com/olekukonko/tablewriter v0.0.2-0.20190409134802-7e037d187b0c/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f h1:Z8/PgTqOgOg02MTRpTBYO2k16FE6z4wEOtaC2WBR9Xo= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f/go.mod h1:xvP61FoOs95K7IYdIYRnNcYQGf4nbF/uuJ0tHf4DRuM= -github.com/onflow/cadence v1.0.0-preview.1.0.20231213191345-0ff20e15e7e1 h1:xIFPRIA/pmyplEu5JxuMCfC6zfdqRW7QDHYJ8ogCNuc= -github.com/onflow/cadence v1.0.0-preview.1.0.20231213191345-0ff20e15e7e1/go.mod h1:60RhxKY5V4DXFQfvXQa48eZZVN19O7Lu9cp53FM54vo= -github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2 h1:vUVO6m85BiT8c50Oc8YGc3CU+sGqiKW9FZbmiRph2dU= -github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2/go.mod h1:mbLrR3MkYbi9LH3yasDj1jrR4QTR8vjRLVFCm4jMHn0= +github.com/onflow/cadence v1.0.0-preview.2.0.20240122125204-5ce1f36f95bb h1:OpNQ8+ZPBg5DHchnZyiBySz/OQc4uIeptTm7cBfCvOA= +github.com/onflow/cadence v1.0.0-preview.2.0.20240122125204-5ce1f36f95bb/go.mod h1:odXGZZ/wGNA5mwT8bC9v8u8EXACHllB2ABSZK65TGL8= +github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= +github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2.0.20240122164005-147ad40664ca h1:7yG8dYqMzWzTZWJ17dnBdS01UDlOBnf1dd1rWKcFdY0= +github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2.0.20240122164005-147ad40664ca/go.mod h1:O5+TK1qs2c1R5X4TEQp4m2c/YhlCjwdW7bsRcUB1U8s= github.com/onflow/flow-go/crypto v0.24.7 h1:RCLuB83At4z5wkAyUCF7MYEnPoIIOHghJaODuJyEoW0= github.com/onflow/flow-go/crypto v0.24.7/go.mod h1:fqCzkIBBMRRkciVrvW21rECKq1oD7Q6u+bCI78lfNX0= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= @@ -379,8 +380,6 @@ github.com/zeebo/blake3 v0.2.3 h1:TFoLXsjeXqRNFxSbk35Dk4YtszE/MQQGK10BH4ptoTg= github.com/zeebo/blake3 v0.2.3/go.mod h1:mjJjZpnsyIVtVgTOSpJ9vmRE4wgDeyt2HU3qXvvKCaQ= github.com/zeebo/pcg v1.0.1 h1:lyqfGeWiv4ahac6ttHs+I5hwtH/+1mrhlCtVNQM2kHo= github.com/zeebo/pcg v1.0.1/go.mod h1:09F0S9iiKrwn9rlI5yjLkmrug154/YRW6KnnXVDM/l4= -github.com/zeebo/xxh3 v1.0.2 h1:xZmwmqxHZA8AI603jOQ0tMqmBr9lPeFwGg6d+xy9DC0= -github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= @@ -416,8 +415,8 @@ golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u0 golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= -golang.org/x/exp v0.0.0-20230321023759-10a507213a29 h1:ooxPy7fPvB4kwsA2h+iBNHkAbp/4JxTSwCmvdjEYmug= -golang.org/x/exp v0.0.0-20230321023759-10a507213a29/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= +golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc h1:ao2WRsKSzW6KuUY9IWPwWahcHCgR0s52IfwutMfEbdM= +golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc/go.mod h1:iRJReGqOEeBhDZGkGbynYwcHlctCvnjTYIamk7uXpHI= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= @@ -442,7 +441,7 @@ golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= -golang.org/x/mod v0.8.0 h1:LUYupSeNrTNCGzR/hVBk2NHZO4hXcVaW1k4Qx7rjPx8= +golang.org/x/mod v0.14.0 h1:dGoOF9QVLYng8IHTm7BAyWqCqSheQ5pYWGhzW00YJr0= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -600,13 +599,15 @@ golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4f golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= -golang.org/x/tools v0.6.0 h1:BOw41kyTf3PuCW1pVQf8+Cyg8pMlkYB1oo9iJ6D/lKM= +golang.org/x/tools v0.16.0 h1:GO788SKMRunPIBCXiQyo2AaexLstOrVhuAL5YwsckQM= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= +gonum.org/v1/gonum v0.11.0 h1:f1IJhK4Km5tBJmaiJXtk/PkL4cdVX6J+tGiM187uT5E= +gonum.org/v1/gonum v0.11.0/go.mod h1:fSG4YDCxxUZQJ7rKsQrj0gMOg00Il0Z96/qMA4bVQhA= google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= From 6430730739679d78f21fc8952472343ae59d17ad Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 24 Jan 2024 08:24:39 -0600 Subject: [PATCH 067/160] update createEmpty in staking --- contracts/FlowToken.cdc | 8 ++++++++ lib/go/contracts/go.mod | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/contracts/FlowToken.cdc b/contracts/FlowToken.cdc index b6aa51987..98eedad35 100644 --- a/contracts/FlowToken.cdc +++ b/contracts/FlowToken.cdc @@ -8,6 +8,12 @@ access(all) contract FlowToken: FungibleToken { // Total supply of Flow tokens in existence access(all) var totalSupply: UFix64 + // Event that is emitted when tokens are withdrawn from a Vault + access(all) event TokensWithdrawn(amount: UFix64, from: Address?) + + // Event that is emitted when tokens are deposited to a Vault + access(all) event TokensDeposited(amount: UFix64, to: Address?) + // Event that is emitted when new tokens are minted access(all) event TokensMinted(amount: UFix64) @@ -66,6 +72,7 @@ access(all) contract FlowToken: FungibleToken { // access(FungibleToken.Withdraw) fun withdraw(amount: UFix64): @{FungibleToken.Vault} { self.balance = self.balance - amount + emit TokensWithdrawn(amount: amount, from: self.owner?.address) return <-create Vault(balance: amount) } @@ -79,6 +86,7 @@ access(all) contract FlowToken: FungibleToken { access(all) fun deposit(from: @{FungibleToken.Vault}) { let vault <- from as! @FlowToken.Vault self.balance = self.balance + vault.balance + emit TokensDeposited(amount: vault.balance, to: self.owner?.address) vault.balance = 0.0 destroy vault } diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 4ee32e175..902abf425 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -4,9 +4,9 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231212194336-a2802ba36596 + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240123221015-9f24a7303954 github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2.0.20240122164005-147ad40664ca - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240122215824-10d8a31d1991 + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240123173621-bcf55c5668ad github.com/stretchr/testify v1.8.4 ) From 1376f64ebe775e8d18bb29fdaad5030f6d4d6c78 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 24 Jan 2024 18:15:20 -0600 Subject: [PATCH 068/160] use Burner and update dependencies --- contracts/FlowToken.cdc | 63 +- .../testContracts/TestFlowIDTableStaking.cdc | 11 +- lib/go/contracts/contracts.go | 20 +- lib/go/contracts/contracts_test.go | 2 +- lib/go/contracts/go.mod | 21 +- lib/go/contracts/go.sum | 1171 +++++++++++++++++ 6 files changed, 1215 insertions(+), 73 deletions(-) diff --git a/contracts/FlowToken.cdc b/contracts/FlowToken.cdc index 98eedad35..9e1d9e321 100644 --- a/contracts/FlowToken.cdc +++ b/contracts/FlowToken.cdc @@ -1,7 +1,7 @@ import FungibleToken from "FungibleToken" import MetadataViews from "MetadataViews" import FungibleTokenMetadataViews from "FungibleTokenMetadataViews" -//import ViewResolver from "ViewResolver" +import Burner from "Burner" access(all) contract FlowToken: FungibleToken { @@ -17,9 +17,6 @@ access(all) contract FlowToken: FungibleToken { // Event that is emitted when new tokens are minted access(all) event TokensMinted(amount: UFix64) - // Event that is emitted when tokens are destroyed - access(all) event TokensBurned(amount: UFix64) - // Event that is emitted when a new minter resource is created access(all) event MinterCreated(allowedAmount: UFix64) @@ -52,6 +49,14 @@ access(all) contract FlowToken: FungibleToken { self.balance = balance } + /// Called when a fungible token is burned via the `Burner.burn()` method + access(contract) fun burnCallback() { + if self.balance > 0.0 { + FlowToken.totalSupply = FlowToken.totalSupply - self.getBalance() + } + self.balance = 0.0 + } + /// getSupportedVaultTypes optionally returns a list of vault types that this receiver accepts access(all) view fun getSupportedVaultTypes(): {Type: Bool} { return {self.getType(): true} @@ -125,19 +130,6 @@ access(all) contract FlowToken: FungibleToken { return <-create Vault(balance: 0.0) } - /// Function that destroys a Vault instance, effectively burning the tokens. - /// - /// @param from: The Vault resource containing the tokens to burn - /// - /// Will need to add an update to total supply - /// See https://github.com/onflow/flips/pull/131 - access(all) fun burn(_ vault: @{FungibleToken.Vault}) { - if vault.balance > 0.0 { - FlowToken.totalSupply = FlowToken.totalSupply - vault.getBalance() - } - destroy vault - } - /// Gets a list of the metadata views that this contract supports access(all) view fun getContractViews(resourceType: Type?): [Type] { return [Type(), @@ -204,15 +196,6 @@ access(all) contract FlowToken: FungibleToken { emit MinterCreated(allowedAmount: allowedAmount) return <-create Minter(allowedAmount: allowedAmount) } - - // createNewBurner - // - // Function that creates and returns a new burner resource - // - access(all) fun createNewBurner(): @Burner { - emit BurnerCreated() - return <-create Burner() - } } // Minter @@ -245,34 +228,6 @@ access(all) contract FlowToken: FungibleToken { } } - // Burner - // - // Resource object that token admin accounts can hold to burn tokens. - // - access(all) resource Burner { - - // burnTokens - // - // Function that destroys a Vault instance, effectively burning the tokens. - // - // Note: the burned tokens are automatically subtracted from the - // total supply in the Vault destructor. - // - access(all) fun burnTokens(from: @FlowToken.Vault) { - FlowToken.burnTokens(from: <-from) - } - } - - access(all) fun burnTokens(from: @FlowToken.Vault) { - let vault <- from as! @FlowToken.Vault - let amount = vault.balance - destroy vault - if amount > 0.0 { - FlowToken.totalSupply = FlowToken.totalSupply - amount - emit TokensBurned(amount: amount) - } - } - /// Gets the Flow Logo XML URI from storage access(all) fun getLogoURI(): String { return FlowToken.account.storage.copy(from: /storage/flowTokenLogoURI) ?? "" diff --git a/contracts/testContracts/TestFlowIDTableStaking.cdc b/contracts/testContracts/TestFlowIDTableStaking.cdc index 6aff98b51..bbb8151d0 100644 --- a/contracts/testContracts/TestFlowIDTableStaking.cdc +++ b/contracts/testContracts/TestFlowIDTableStaking.cdc @@ -9,6 +9,7 @@ import FungibleToken from "FungibleToken" import FlowToken from "FlowToken" +import Burner from "Burner" access(all) contract FlowIDTableStaking { @@ -54,7 +55,7 @@ access(all) contract FlowIDTableStaking { self.networkingKey = networkingKey self.stakingKey = stakingKey - destroy tokensCommitted + Burner.burn(<-tokensCommitted) } } @@ -117,7 +118,7 @@ access(all) contract FlowIDTableStaking { /// Add new tokens to the system to stake during the next epoch access(NodeOperator) fun stakeNewTokens(_ tokens: @{FungibleToken.Vault}) { - destroy tokens + Burner.burn(<-tokens) } /// Stake tokens that are in the tokensUnstaked bucket @@ -208,7 +209,7 @@ access(all) contract FlowIDTableStaking { /// Delegate new tokens to the node operator access(DelegatorOwner) fun delegateNewTokens(from: @{FungibleToken.Vault}) { - destroy from + Burner.burn(<-from) } /// Delegate tokens from the unstaked bucket to the node operator @@ -254,7 +255,7 @@ access(all) contract FlowIDTableStaking { stakingKey: String, tokensCommitted: @{FungibleToken.Vault} ): @NodeStaker { - destroy tokensCommitted + Burner.burn(<-tokensCommitted) // return a new NodeStaker object that the node operator stores in their account return <-create NodeStaker(id: id) @@ -263,7 +264,7 @@ access(all) contract FlowIDTableStaking { access(all) fun registerNewDelegator(nodeID: String, tokensCommitted: @{FungibleToken.Vault}): @NodeDelegator { - destroy tokensCommitted + Burner.burn(<-tokensCommitted) return <-create NodeDelegator(id: 1, nodeID: nodeID) } diff --git a/lib/go/contracts/contracts.go b/lib/go/contracts/contracts.go index edb809184..3e4815e8f 100644 --- a/lib/go/contracts/contracts.go +++ b/lib/go/contracts/contracts.go @@ -51,6 +51,7 @@ const ( placeholderMetadataViewsAddress = "\"MetadataViews\"" placeholderFlowTokenAddress = "\"FlowToken\"" placeholderIDTableAddress = "\"FlowIDTableStaking\"" + placeholderBurnerAddress = "\"Burner\"" placeholderStakingProxyAddress = "0xSTAKINGPROXYADDRESS" placeholderQCAddr = "0xQCADDRESS" placeholderDKGAddr = "0xDKGADDRESS" @@ -76,8 +77,8 @@ func withHexPrefix(address string) string { } // FungibleToken returns the FungibleToken contract interface. -func FungibleToken(viewResolverAddress string) []byte { - return ftcontracts.FungibleToken(viewResolverAddress) +func FungibleToken(viewResolverAddress, burnerAddress string) []byte { + return ftcontracts.FungibleToken(viewResolverAddress, burnerAddress) } // FungibleTokenMetadataViews returns the FungibleTokenMetadataViews contract interface. @@ -93,6 +94,10 @@ func ViewResolver() []byte { return nftcontracts.ViewResolver() } +func Burner() []byte { + return ftcontracts.Burner() +} + // MetadataViews returns the MetadataViews contract interface. func MetadataViews(fungibleTokenAddr, nonFungibleTokenAddr, viewResolverAddr string) []byte { return nftcontracts.MetadataViews(flow.HexToAddress(fungibleTokenAddr), flow.HexToAddress(nonFungibleTokenAddr), flow.HexToAddress(viewResolverAddr)) @@ -101,7 +106,7 @@ func MetadataViews(fungibleTokenAddr, nonFungibleTokenAddr, viewResolverAddr str // FlowToken returns the FlowToken contract. // // The returned contract will import the FungibleToken contract from the specified address. -func FlowToken(fungibleTokenAddress, fungibleTokenMVAddress, metadataViewsAddress, viewResolverAddress string) []byte { +func FlowToken(fungibleTokenAddress, fungibleTokenMVAddress, metadataViewsAddress, burnerAddress string) []byte { code := assets.MustAssetString(flowTokenFilename) // Replace the fungible token placeholder address @@ -124,6 +129,12 @@ func FlowToken(fungibleTokenAddress, fungibleTokenMVAddress, metadataViewsAddres withHexPrefix(metadataViewsAddress), ) + code = strings.ReplaceAll( + code, + placeholderBurnerAddress, + withHexPrefix(burnerAddress), + ) + // Replace the init method storage operations code = strings.ReplaceAll( code, @@ -242,7 +253,7 @@ func FlowServiceAccount(fungibleTokenAddress, flowTokenAddress, flowFeesAddress, // # The staking contract imports the FungibleToken and FlowToken contracts // // Parameter: latest: indicates if the contract is the latest version, or an old version. Used to test upgrades -func FlowIDTableStaking(fungibleTokenAddress, flowTokenAddress, flowFeesAddress string, latest bool) []byte { +func FlowIDTableStaking(fungibleTokenAddress, flowTokenAddress, flowFeesAddress, burnerAddress string, latest bool) []byte { var code string code = assets.MustAssetString(flowIdentityTableFilename) @@ -250,6 +261,7 @@ func FlowIDTableStaking(fungibleTokenAddress, flowTokenAddress, flowFeesAddress code = strings.ReplaceAll(code, placeholderFungibleTokenAddress, withHexPrefix(fungibleTokenAddress)) code = strings.ReplaceAll(code, placeholderFlowTokenAddress, withHexPrefix(flowTokenAddress)) code = strings.ReplaceAll(code, placeholderFlowFeesAddress, withHexPrefix(flowFeesAddress)) + code = strings.ReplaceAll(code, placeholderBurnerAddress, withHexPrefix(burnerAddress)) return []byte(code) } diff --git a/lib/go/contracts/contracts_test.go b/lib/go/contracts/contracts_test.go index e27be412c..9213fff14 100644 --- a/lib/go/contracts/contracts_test.go +++ b/lib/go/contracts/contracts_test.go @@ -33,7 +33,7 @@ func TestFlowServiceAccountContract(t *testing.T) { } func TestFlowIdentityTableContract(t *testing.T) { - contract := contracts.FlowIDTableStaking(fakeAddr, fakeAddr, fakeAddr, true) + contract := contracts.FlowIDTableStaking(fakeAddr, fakeAddr, fakeAddr, fakeAddr, true) assert.NotNil(t, contract) } diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 902abf425..a74829e41 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -4,30 +4,32 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240123221015-9f24a7303954 - github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2.0.20240122164005-147ad40664ca - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240123173621-bcf55c5668ad + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240125000944-01706d1b6a69 + github.com/onflow/flow-go-sdk v0.44.1-0.20240124213231-78d9f08eeae1 + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125000928-4973179638e1 github.com/stretchr/testify v1.8.4 ) require ( github.com/SaveTheRbtz/mph v0.1.1-0.20240117162131-4166ec7869bc // indirect - github.com/bits-and-blooms/bitset v1.5.0 // indirect + github.com/bits-and-blooms/bitset v1.7.0 // indirect github.com/btcsuite/btcd/btcec/v2 v2.2.1 // indirect github.com/davecgh/go-spew v1.1.1 // indirect - github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect - github.com/ethereum/go-ethereum v1.9.13 // indirect + github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect + github.com/ethereum/go-ethereum v1.13.5 // indirect github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c // indirect github.com/fxamacker/circlehash v0.3.0 // indirect + github.com/holiman/uint256 v1.2.3 // indirect github.com/k0kubun/pp v3.0.1+incompatible // indirect - github.com/klauspost/cpuid/v2 v2.2.4 // indirect + github.com/klauspost/cpuid/v2 v2.2.5 // indirect github.com/kr/pretty v0.3.1 // indirect github.com/kr/text v0.2.0 // indirect github.com/logrusorgru/aurora/v4 v4.0.0 // indirect github.com/mattn/go-colorable v0.1.13 // indirect - github.com/mattn/go-isatty v0.0.17 // indirect + github.com/mattn/go-isatty v0.0.19 // indirect github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f // indirect github.com/onflow/cadence v1.0.0-preview.2.0.20240122125204-5ce1f36f95bb // indirect + github.com/onflow/crypto v0.25.0 // indirect github.com/onflow/flow-go/crypto v0.24.7 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect @@ -37,12 +39,13 @@ require ( github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d // indirect github.com/x448/float16 v0.8.4 // indirect github.com/zeebo/blake3 v0.2.3 // indirect - go.opentelemetry.io/otel v1.14.0 // indirect + go.opentelemetry.io/otel v1.16.0 // indirect golang.org/x/crypto v0.17.0 // indirect golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc // indirect golang.org/x/sys v0.15.0 // indirect golang.org/x/text v0.14.0 // indirect golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect + gonum.org/v1/gonum v0.13.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index d10d66633..5703d817c 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1,12 +1,15 @@ +cloud.google.com/go v0.0.0-20170206221025-ce650573d812/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= +cloud.google.com/go v0.43.0/go.mod h1:BOSR3VbTLkk6FDC/TcffxP4NF/FFBGA5ku+jvKOP7pg= cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= cloud.google.com/go v0.44.3/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= +cloud.google.com/go v0.51.0/go.mod h1:hWtGJ6gnXH+KgDv+V0zFGDvpi07n3z8ZNj3T1RW0Gcw= cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4= cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M= cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc= @@ -36,69 +39,130 @@ cloud.google.com/go v0.104.0/go.mod h1:OO6xxXdJyvuJPcEPBLN9BJPD+jep5G1+2U5B5gkRY cloud.google.com/go v0.105.0/go.mod h1:PrLgOJNe5nfE9UMxKxgXj4mD3voiP+YQ6gdt6KMFOKM= cloud.google.com/go v0.107.0/go.mod h1:wpc2eNrD7hXUTy8EKS10jkxpZBjASrORK7goS+3YX2I= cloud.google.com/go v0.110.0/go.mod h1:SJnCLqQ0FCFGSZMUNUf84MV3Aia54kn7pi8st7tMzaY= +cloud.google.com/go v0.110.2/go.mod h1:k04UEeEtb6ZBRTv3dZz4CeJC3jKGxyhl0sAiVVquxiw= +cloud.google.com/go v0.110.4/go.mod h1:+EYjdK8e5RME/VY/qLCAtuyALQ9q67dvuum8i+H5xsI= +cloud.google.com/go v0.110.6/go.mod h1:+EYjdK8e5RME/VY/qLCAtuyALQ9q67dvuum8i+H5xsI= +cloud.google.com/go v0.110.7/go.mod h1:+EYjdK8e5RME/VY/qLCAtuyALQ9q67dvuum8i+H5xsI= +cloud.google.com/go v0.110.8/go.mod h1:Iz8AkXJf1qmxC3Oxoep8R1T36w8B92yU29PcBhHO5fk= cloud.google.com/go/accessapproval v1.4.0/go.mod h1:zybIuC3KpDOvotz59lFe5qxRZx6C75OtwbisN56xYB4= cloud.google.com/go/accessapproval v1.5.0/go.mod h1:HFy3tuiGvMdcd/u+Cu5b9NkO1pEICJ46IR82PoUdplw= cloud.google.com/go/accessapproval v1.6.0/go.mod h1:R0EiYnwV5fsRFiKZkPHr6mwyk2wxUJ30nL4j2pcFY2E= +cloud.google.com/go/accessapproval v1.7.1/go.mod h1:JYczztsHRMK7NTXb6Xw+dwbs/WnOJxbo/2mTI+Kgg68= +cloud.google.com/go/accessapproval v1.7.2/go.mod h1:/gShiq9/kK/h8T/eEn1BTzalDvk0mZxJlhfw0p+Xuc0= cloud.google.com/go/accesscontextmanager v1.3.0/go.mod h1:TgCBehyr5gNMz7ZaH9xubp+CE8dkrszb4oK9CWyvD4o= cloud.google.com/go/accesscontextmanager v1.4.0/go.mod h1:/Kjh7BBu/Gh83sv+K60vN9QE5NJcd80sU33vIe2IFPE= cloud.google.com/go/accesscontextmanager v1.6.0/go.mod h1:8XCvZWfYw3K/ji0iVnp+6pu7huxoQTLmxAbVjbloTtM= +cloud.google.com/go/accesscontextmanager v1.7.0/go.mod h1:CEGLewx8dwa33aDAZQujl7Dx+uYhS0eay198wB/VumQ= +cloud.google.com/go/accesscontextmanager v1.8.0/go.mod h1:uI+AI/r1oyWK99NN8cQ3UK76AMelMzgZCvJfsi2c+ps= +cloud.google.com/go/accesscontextmanager v1.8.1/go.mod h1:JFJHfvuaTC+++1iL1coPiG1eu5D24db2wXCDWDjIrxo= +cloud.google.com/go/accesscontextmanager v1.8.2/go.mod h1:E6/SCRM30elQJ2PKtFMs2YhfJpZSNcJyejhuzoId4Zk= cloud.google.com/go/aiplatform v1.22.0/go.mod h1:ig5Nct50bZlzV6NvKaTwmplLLddFx0YReh9WfTO5jKw= cloud.google.com/go/aiplatform v1.24.0/go.mod h1:67UUvRBKG6GTayHKV8DBv2RtR1t93YRu5B1P3x99mYY= cloud.google.com/go/aiplatform v1.27.0/go.mod h1:Bvxqtl40l0WImSb04d0hXFU7gDOiq9jQmorivIiWcKg= cloud.google.com/go/aiplatform v1.35.0/go.mod h1:7MFT/vCaOyZT/4IIFfxH4ErVg/4ku6lKv3w0+tFTgXQ= +cloud.google.com/go/aiplatform v1.36.1/go.mod h1:WTm12vJRPARNvJ+v6P52RDHCNe4AhvjcIZ/9/RRHy/k= +cloud.google.com/go/aiplatform v1.37.0/go.mod h1:IU2Cv29Lv9oCn/9LkFiiuKfwrRTq+QQMbW+hPCxJGZw= +cloud.google.com/go/aiplatform v1.45.0/go.mod h1:Iu2Q7sC7QGhXUeOhAj/oCK9a+ULz1O4AotZiqjQ8MYA= +cloud.google.com/go/aiplatform v1.48.0/go.mod h1:Iu2Q7sC7QGhXUeOhAj/oCK9a+ULz1O4AotZiqjQ8MYA= +cloud.google.com/go/aiplatform v1.50.0/go.mod h1:IRc2b8XAMTa9ZmfJV1BCCQbieWWvDnP1A8znyz5N7y4= +cloud.google.com/go/aiplatform v1.51.0/go.mod h1:IRc2b8XAMTa9ZmfJV1BCCQbieWWvDnP1A8znyz5N7y4= +cloud.google.com/go/aiplatform v1.51.1/go.mod h1:kY3nIMAVQOK2XDqDPHaOuD9e+FdMA6OOpfBjsvaFSOo= cloud.google.com/go/analytics v0.11.0/go.mod h1:DjEWCu41bVbYcKyvlws9Er60YE4a//bK6mnhWvQeFNI= cloud.google.com/go/analytics v0.12.0/go.mod h1:gkfj9h6XRf9+TS4bmuhPEShsh3hH8PAZzm/41OOhQd4= cloud.google.com/go/analytics v0.17.0/go.mod h1:WXFa3WSym4IZ+JiKmavYdJwGG/CvpqiqczmL59bTD9M= cloud.google.com/go/analytics v0.18.0/go.mod h1:ZkeHGQlcIPkw0R/GW+boWHhCOR43xz9RN/jn7WcqfIE= +cloud.google.com/go/analytics v0.19.0/go.mod h1:k8liqf5/HCnOUkbawNtrWWc+UAzyDlW89doe8TtoDsE= +cloud.google.com/go/analytics v0.21.2/go.mod h1:U8dcUtmDmjrmUTnnnRnI4m6zKn/yaA5N9RlEkYFHpQo= +cloud.google.com/go/analytics v0.21.3/go.mod h1:U8dcUtmDmjrmUTnnnRnI4m6zKn/yaA5N9RlEkYFHpQo= +cloud.google.com/go/analytics v0.21.4/go.mod h1:zZgNCxLCy8b2rKKVfC1YkC2vTrpfZmeRCySM3aUbskA= cloud.google.com/go/apigateway v1.3.0/go.mod h1:89Z8Bhpmxu6AmUxuVRg/ECRGReEdiP3vQtk4Z1J9rJk= cloud.google.com/go/apigateway v1.4.0/go.mod h1:pHVY9MKGaH9PQ3pJ4YLzoj6U5FUDeDFBllIz7WmzJoc= cloud.google.com/go/apigateway v1.5.0/go.mod h1:GpnZR3Q4rR7LVu5951qfXPJCHquZt02jf7xQx7kpqN8= +cloud.google.com/go/apigateway v1.6.1/go.mod h1:ufAS3wpbRjqfZrzpvLC2oh0MFlpRJm2E/ts25yyqmXA= +cloud.google.com/go/apigateway v1.6.2/go.mod h1:CwMC90nnZElorCW63P2pAYm25AtQrHfuOkbRSHj0bT8= cloud.google.com/go/apigeeconnect v1.3.0/go.mod h1:G/AwXFAKo0gIXkPTVfZDd2qA1TxBXJ3MgMRBQkIi9jc= cloud.google.com/go/apigeeconnect v1.4.0/go.mod h1:kV4NwOKqjvt2JYR0AoIWo2QGfoRtn/pkS3QlHp0Ni04= cloud.google.com/go/apigeeconnect v1.5.0/go.mod h1:KFaCqvBRU6idyhSNyn3vlHXc8VMDJdRmwDF6JyFRqZ8= +cloud.google.com/go/apigeeconnect v1.6.1/go.mod h1:C4awq7x0JpLtrlQCr8AzVIzAaYgngRqWf9S5Uhg+wWs= +cloud.google.com/go/apigeeconnect v1.6.2/go.mod h1:s6O0CgXT9RgAxlq3DLXvG8riw8PYYbU/v25jqP3Dy18= cloud.google.com/go/apigeeregistry v0.4.0/go.mod h1:EUG4PGcsZvxOXAdyEghIdXwAEi/4MEaoqLMLDMIwKXY= cloud.google.com/go/apigeeregistry v0.5.0/go.mod h1:YR5+s0BVNZfVOUkMa5pAR2xGd0A473vA5M7j247o1wM= +cloud.google.com/go/apigeeregistry v0.6.0/go.mod h1:BFNzW7yQVLZ3yj0TKcwzb8n25CFBri51GVGOEUcgQsc= +cloud.google.com/go/apigeeregistry v0.7.1/go.mod h1:1XgyjZye4Mqtw7T9TsY4NW10U7BojBvG4RMD+vRDrIw= +cloud.google.com/go/apigeeregistry v0.7.2/go.mod h1:9CA2B2+TGsPKtfi3F7/1ncCCsL62NXBRfM6iPoGSM+8= cloud.google.com/go/apikeys v0.4.0/go.mod h1:XATS/yqZbaBK0HOssf+ALHp8jAlNHUgyfprvNcBIszU= cloud.google.com/go/apikeys v0.5.0/go.mod h1:5aQfwY4D+ewMMWScd3hm2en3hCj+BROlyrt3ytS7KLI= +cloud.google.com/go/apikeys v0.6.0/go.mod h1:kbpXu5upyiAlGkKrJgQl8A0rKNNJ7dQ377pdroRSSi8= cloud.google.com/go/appengine v1.4.0/go.mod h1:CS2NhuBuDXM9f+qscZ6V86m1MIIqPj3WC/UoEuR1Sno= cloud.google.com/go/appengine v1.5.0/go.mod h1:TfasSozdkFI0zeoxW3PTBLiNqRmzraodCWatWI9Dmak= cloud.google.com/go/appengine v1.6.0/go.mod h1:hg6i0J/BD2cKmDJbaFSYHFyZkgBEfQrDg/X0V5fJn84= +cloud.google.com/go/appengine v1.7.0/go.mod h1:eZqpbHFCqRGa2aCdope7eC0SWLV1j0neb/QnMJVWx6A= +cloud.google.com/go/appengine v1.7.1/go.mod h1:IHLToyb/3fKutRysUlFO0BPt5j7RiQ45nrzEJmKTo6E= +cloud.google.com/go/appengine v1.8.1/go.mod h1:6NJXGLVhZCN9aQ/AEDvmfzKEfoYBlfB80/BHiKVputY= +cloud.google.com/go/appengine v1.8.2/go.mod h1:WMeJV9oZ51pvclqFN2PqHoGnys7rK0rz6s3Mp6yMvDo= cloud.google.com/go/area120 v0.5.0/go.mod h1:DE/n4mp+iqVyvxHN41Vf1CR602GiHQjFPusMFW6bGR4= cloud.google.com/go/area120 v0.6.0/go.mod h1:39yFJqWVgm0UZqWTOdqkLhjoC7uFfgXRC8g/ZegeAh0= cloud.google.com/go/area120 v0.7.0/go.mod h1:a3+8EUD1SX5RUcCs3MY5YasiO1z6yLiNLRiFrykbynY= cloud.google.com/go/area120 v0.7.1/go.mod h1:j84i4E1RboTWjKtZVWXPqvK5VHQFJRF2c1Nm69pWm9k= +cloud.google.com/go/area120 v0.8.1/go.mod h1:BVfZpGpB7KFVNxPiQBuHkX6Ed0rS51xIgmGyjrAfzsg= +cloud.google.com/go/area120 v0.8.2/go.mod h1:a5qfo+x77SRLXnCynFWPUZhnZGeSgvQ+Y0v1kSItkh4= cloud.google.com/go/artifactregistry v1.6.0/go.mod h1:IYt0oBPSAGYj/kprzsBjZ/4LnG/zOcHyFHjWPCi6SAQ= cloud.google.com/go/artifactregistry v1.7.0/go.mod h1:mqTOFOnGZx8EtSqK/ZWcsm/4U8B77rbcLP6ruDU2Ixk= cloud.google.com/go/artifactregistry v1.8.0/go.mod h1:w3GQXkJX8hiKN0v+at4b0qotwijQbYUqF2GWkZzAhC0= cloud.google.com/go/artifactregistry v1.9.0/go.mod h1:2K2RqvA2CYvAeARHRkLDhMDJ3OXy26h3XW+3/Jh2uYc= cloud.google.com/go/artifactregistry v1.11.1/go.mod h1:lLYghw+Itq9SONbCa1YWBoWs1nOucMH0pwXN1rOBZFI= cloud.google.com/go/artifactregistry v1.11.2/go.mod h1:nLZns771ZGAwVLzTX/7Al6R9ehma4WUEhZGWV6CeQNQ= +cloud.google.com/go/artifactregistry v1.12.0/go.mod h1:o6P3MIvtzTOnmvGagO9v/rOjjA0HmhJ+/6KAXrmYDCI= +cloud.google.com/go/artifactregistry v1.13.0/go.mod h1:uy/LNfoOIivepGhooAUpL1i30Hgee3Cu0l4VTWHUC08= +cloud.google.com/go/artifactregistry v1.14.1/go.mod h1:nxVdG19jTaSTu7yA7+VbWL346r3rIdkZ142BSQqhn5E= +cloud.google.com/go/artifactregistry v1.14.2/go.mod h1:Xk+QbsKEb0ElmyeMfdHAey41B+qBq3q5R5f5xD4XT3U= +cloud.google.com/go/artifactregistry v1.14.3/go.mod h1:A2/E9GXnsyXl7GUvQ/2CjHA+mVRoWAXC0brg2os+kNI= cloud.google.com/go/asset v1.5.0/go.mod h1:5mfs8UvcM5wHhqtSv8J1CtxxaQq3AdBxxQi2jGW/K4o= cloud.google.com/go/asset v1.7.0/go.mod h1:YbENsRK4+xTiL+Ofoj5Ckf+O17kJtgp3Y3nn4uzZz5s= cloud.google.com/go/asset v1.8.0/go.mod h1:mUNGKhiqIdbr8X7KNayoYvyc4HbbFO9URsjbytpUaW0= cloud.google.com/go/asset v1.9.0/go.mod h1:83MOE6jEJBMqFKadM9NLRcs80Gdw76qGuHn8m3h8oHQ= cloud.google.com/go/asset v1.10.0/go.mod h1:pLz7uokL80qKhzKr4xXGvBQXnzHn5evJAEAtZiIb0wY= cloud.google.com/go/asset v1.11.1/go.mod h1:fSwLhbRvC9p9CXQHJ3BgFeQNM4c9x10lqlrdEUYXlJo= +cloud.google.com/go/asset v1.12.0/go.mod h1:h9/sFOa4eDIyKmH6QMpm4eUK3pDojWnUhTgJlk762Hg= +cloud.google.com/go/asset v1.13.0/go.mod h1:WQAMyYek/b7NBpYq/K4KJWcRqzoalEsxz/t/dTk4THw= +cloud.google.com/go/asset v1.14.1/go.mod h1:4bEJ3dnHCqWCDbWJ/6Vn7GVI9LerSi7Rfdi03hd+WTQ= +cloud.google.com/go/asset v1.15.0/go.mod h1:tpKafV6mEut3+vN9ScGvCHXHj7FALFVta+okxFECHcg= +cloud.google.com/go/asset v1.15.1/go.mod h1:yX/amTvFWRpp5rcFq6XbCxzKT8RJUam1UoboE179jU4= cloud.google.com/go/assuredworkloads v1.5.0/go.mod h1:n8HOZ6pff6re5KYfBXcFvSViQjDwxFkAkmUFffJRbbY= cloud.google.com/go/assuredworkloads v1.6.0/go.mod h1:yo2YOk37Yc89Rsd5QMVECvjaMKymF9OP+QXWlKXUkXw= cloud.google.com/go/assuredworkloads v1.7.0/go.mod h1:z/736/oNmtGAyU47reJgGN+KVoYoxeLBoj4XkKYscNI= cloud.google.com/go/assuredworkloads v1.8.0/go.mod h1:AsX2cqyNCOvEQC8RMPnoc0yEarXQk6WEKkxYfL6kGIo= cloud.google.com/go/assuredworkloads v1.9.0/go.mod h1:kFuI1P78bplYtT77Tb1hi0FMxM0vVpRC7VVoJC3ZoT0= cloud.google.com/go/assuredworkloads v1.10.0/go.mod h1:kwdUQuXcedVdsIaKgKTp9t0UJkE5+PAVNhdQm4ZVq2E= +cloud.google.com/go/assuredworkloads v1.11.1/go.mod h1:+F04I52Pgn5nmPG36CWFtxmav6+7Q+c5QyJoL18Lry0= +cloud.google.com/go/assuredworkloads v1.11.2/go.mod h1:O1dfr+oZJMlE6mw0Bp0P1KZSlj5SghMBvTpZqIcUAW4= cloud.google.com/go/automl v1.5.0/go.mod h1:34EjfoFGMZ5sgJ9EoLsRtdPSNZLcfflJR39VbVNS2M0= cloud.google.com/go/automl v1.6.0/go.mod h1:ugf8a6Fx+zP0D59WLhqgTDsQI9w07o64uf/Is3Nh5p8= cloud.google.com/go/automl v1.7.0/go.mod h1:RL9MYCCsJEOmt0Wf3z9uzG0a7adTT1fe+aObgSpkCt8= cloud.google.com/go/automl v1.8.0/go.mod h1:xWx7G/aPEe/NP+qzYXktoBSDfjO+vnKMGgsApGJJquM= cloud.google.com/go/automl v1.12.0/go.mod h1:tWDcHDp86aMIuHmyvjuKeeHEGq76lD7ZqfGLN6B0NuU= +cloud.google.com/go/automl v1.13.1/go.mod h1:1aowgAHWYZU27MybSCFiukPO7xnyawv7pt3zK4bheQE= +cloud.google.com/go/automl v1.13.2/go.mod h1:gNY/fUmDEN40sP8amAX3MaXkxcqPIn7F1UIIPZpy4Mg= cloud.google.com/go/baremetalsolution v0.3.0/go.mod h1:XOrocE+pvK1xFfleEnShBlNAXf+j5blPPxrhjKgnIFc= cloud.google.com/go/baremetalsolution v0.4.0/go.mod h1:BymplhAadOO/eBa7KewQ0Ppg4A4Wplbn+PsFKRLo0uI= cloud.google.com/go/baremetalsolution v0.5.0/go.mod h1:dXGxEkmR9BMwxhzBhV0AioD0ULBmuLZI8CdwalUxuss= +cloud.google.com/go/baremetalsolution v1.1.1/go.mod h1:D1AV6xwOksJMV4OSlWHtWuFNZZYujJknMAP4Qa27QIA= +cloud.google.com/go/baremetalsolution v1.2.0/go.mod h1:68wi9AwPYkEWIUT4SvSGS9UJwKzNpshjHsH4lzk8iOw= +cloud.google.com/go/baremetalsolution v1.2.1/go.mod h1:3qKpKIw12RPXStwQXcbhfxVj1dqQGEvcmA+SX/mUR88= cloud.google.com/go/batch v0.3.0/go.mod h1:TR18ZoAekj1GuirsUsR1ZTKN3FC/4UDnScjT8NXImFE= cloud.google.com/go/batch v0.4.0/go.mod h1:WZkHnP43R/QCGQsZ+0JyG4i79ranE2u8xvjq/9+STPE= cloud.google.com/go/batch v0.7.0/go.mod h1:vLZN95s6teRUqRQ4s3RLDsH8PvboqBK+rn1oevL159g= +cloud.google.com/go/batch v1.3.1/go.mod h1:VguXeQKXIYaeeIYbuozUmBR13AfL4SJP7IltNPS+A4A= +cloud.google.com/go/batch v1.4.1/go.mod h1:KdBmDD61K0ovcxoRHGrN6GmOBWeAOyCgKD0Mugx4Fkk= +cloud.google.com/go/batch v1.5.0/go.mod h1:KdBmDD61K0ovcxoRHGrN6GmOBWeAOyCgKD0Mugx4Fkk= +cloud.google.com/go/batch v1.5.1/go.mod h1:RpBuIYLkQu8+CWDk3dFD/t/jOCGuUpkpX+Y0n1Xccs8= cloud.google.com/go/beyondcorp v0.2.0/go.mod h1:TB7Bd+EEtcw9PCPQhCJtJGjk/7TC6ckmnSFS+xwTfm4= cloud.google.com/go/beyondcorp v0.3.0/go.mod h1:E5U5lcrcXMsCuoDNyGrpyTm/hn7ne941Jz2vmksAxW8= cloud.google.com/go/beyondcorp v0.4.0/go.mod h1:3ApA0mbhHx6YImmuubf5pyW8srKnCEPON32/5hj+RmM= +cloud.google.com/go/beyondcorp v0.5.0/go.mod h1:uFqj9X+dSfrheVp7ssLTaRHd2EHqSL4QZmH4e8WXGGU= +cloud.google.com/go/beyondcorp v0.6.1/go.mod h1:YhxDWw946SCbmcWo3fAhw3V4XZMSpQ/VYfcKGAEU8/4= +cloud.google.com/go/beyondcorp v1.0.0/go.mod h1:YhxDWw946SCbmcWo3fAhw3V4XZMSpQ/VYfcKGAEU8/4= +cloud.google.com/go/beyondcorp v1.0.1/go.mod h1:zl/rWWAFVeV+kx+X2Javly7o1EIQThU4WlkynffL/lk= cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= @@ -110,34 +174,67 @@ cloud.google.com/go/bigquery v1.43.0/go.mod h1:ZMQcXHsl+xmU1z36G2jNGZmKp9zNY5BUu cloud.google.com/go/bigquery v1.44.0/go.mod h1:0Y33VqXTEsbamHJvJHdFmtqHvMIY28aK1+dFsvaChGc= cloud.google.com/go/bigquery v1.47.0/go.mod h1:sA9XOgy0A8vQK9+MWhEQTY6Tix87M/ZurWFIxmF9I/E= cloud.google.com/go/bigquery v1.48.0/go.mod h1:QAwSz+ipNgfL5jxiaK7weyOhzdoAy1zFm0Nf1fysJac= +cloud.google.com/go/bigquery v1.49.0/go.mod h1:Sv8hMmTFFYBlt/ftw2uN6dFdQPzBlREY9yBh7Oy7/4Q= +cloud.google.com/go/bigquery v1.50.0/go.mod h1:YrleYEh2pSEbgTBZYMJ5SuSr0ML3ypjRB1zgf7pvQLU= +cloud.google.com/go/bigquery v1.52.0/go.mod h1:3b/iXjRQGU4nKa87cXeg6/gogLjO8C6PmuM8i5Bi/u4= +cloud.google.com/go/bigquery v1.53.0/go.mod h1:3b/iXjRQGU4nKa87cXeg6/gogLjO8C6PmuM8i5Bi/u4= +cloud.google.com/go/bigquery v1.55.0/go.mod h1:9Y5I3PN9kQWuid6183JFhOGOW3GcirA5LpsKCUn+2ec= +cloud.google.com/go/bigquery v1.56.0/go.mod h1:KDcsploXTEY7XT3fDQzMUZlpQLHzE4itubHrnmhUrZA= +cloud.google.com/go/bigtable v1.2.0/go.mod h1:JcVAOl45lrTmQfLj7T6TxyMzIN/3FGGcFm+2xVAli2o= cloud.google.com/go/billing v1.4.0/go.mod h1:g9IdKBEFlItS8bTtlrZdVLWSSdSyFUZKXNS02zKMOZY= cloud.google.com/go/billing v1.5.0/go.mod h1:mztb1tBc3QekhjSgmpf/CV4LzWXLzCArwpLmP2Gm88s= cloud.google.com/go/billing v1.6.0/go.mod h1:WoXzguj+BeHXPbKfNWkqVtDdzORazmCjraY+vrxcyvI= cloud.google.com/go/billing v1.7.0/go.mod h1:q457N3Hbj9lYwwRbnlD7vUpyjq6u5U1RAOArInEiD5Y= cloud.google.com/go/billing v1.12.0/go.mod h1:yKrZio/eu+okO/2McZEbch17O5CB5NpZhhXG6Z766ss= +cloud.google.com/go/billing v1.13.0/go.mod h1:7kB2W9Xf98hP9Sr12KfECgfGclsH3CQR0R08tnRlRbc= +cloud.google.com/go/billing v1.16.0/go.mod h1:y8vx09JSSJG02k5QxbycNRrN7FGZB6F3CAcgum7jvGA= +cloud.google.com/go/billing v1.17.0/go.mod h1:Z9+vZXEq+HwH7bhJkyI4OQcR6TSbeMrjlpEjO2vzY64= +cloud.google.com/go/billing v1.17.1/go.mod h1:Z9+vZXEq+HwH7bhJkyI4OQcR6TSbeMrjlpEjO2vzY64= +cloud.google.com/go/billing v1.17.2/go.mod h1:u/AdV/3wr3xoRBk5xvUzYMS1IawOAPwQMuHgHMdljDg= cloud.google.com/go/binaryauthorization v1.1.0/go.mod h1:xwnoWu3Y84jbuHa0zd526MJYmtnVXn0syOjaJgy4+dM= cloud.google.com/go/binaryauthorization v1.2.0/go.mod h1:86WKkJHtRcv5ViNABtYMhhNWRrD1Vpi//uKEy7aYEfI= cloud.google.com/go/binaryauthorization v1.3.0/go.mod h1:lRZbKgjDIIQvzYQS1p99A7/U1JqvqeZg0wiI5tp6tg0= cloud.google.com/go/binaryauthorization v1.4.0/go.mod h1:tsSPQrBd77VLplV70GUhBf/Zm3FsKmgSqgm4UmiDItk= cloud.google.com/go/binaryauthorization v1.5.0/go.mod h1:OSe4OU1nN/VswXKRBmciKpo9LulY41gch5c68htf3/Q= +cloud.google.com/go/binaryauthorization v1.6.1/go.mod h1:TKt4pa8xhowwffiBmbrbcxijJRZED4zrqnwZ1lKH51U= +cloud.google.com/go/binaryauthorization v1.7.0/go.mod h1:Zn+S6QqTMn6odcMU1zDZCJxPjU2tZPV1oDl45lWY154= +cloud.google.com/go/binaryauthorization v1.7.1/go.mod h1:GTAyfRWYgcbsP3NJogpV3yeunbUIjx2T9xVeYovtURE= cloud.google.com/go/certificatemanager v1.3.0/go.mod h1:n6twGDvcUBFu9uBgt4eYvvf3sQ6My8jADcOVwHmzadg= cloud.google.com/go/certificatemanager v1.4.0/go.mod h1:vowpercVFyqs8ABSmrdV+GiFf2H/ch3KyudYQEMM590= cloud.google.com/go/certificatemanager v1.6.0/go.mod h1:3Hh64rCKjRAX8dXgRAyOcY5vQ/fE1sh8o+Mdd6KPgY8= +cloud.google.com/go/certificatemanager v1.7.1/go.mod h1:iW8J3nG6SaRYImIa+wXQ0g8IgoofDFRp5UMzaNk1UqI= +cloud.google.com/go/certificatemanager v1.7.2/go.mod h1:15SYTDQMd00kdoW0+XY5d9e+JbOPjp24AvF48D8BbcQ= cloud.google.com/go/channel v1.8.0/go.mod h1:W5SwCXDJsq/rg3tn3oG0LOxpAo6IMxNa09ngphpSlnk= cloud.google.com/go/channel v1.9.0/go.mod h1:jcu05W0my9Vx4mt3/rEHpfxc9eKi9XwsdDL8yBMbKUk= cloud.google.com/go/channel v1.11.0/go.mod h1:IdtI0uWGqhEeatSB62VOoJ8FSUhJ9/+iGkJVqp74CGE= +cloud.google.com/go/channel v1.12.0/go.mod h1:VkxCGKASi4Cq7TbXxlaBezonAYpp1GCnKMY6tnMQnLU= +cloud.google.com/go/channel v1.16.0/go.mod h1:eN/q1PFSl5gyu0dYdmxNXscY/4Fi7ABmeHCJNf/oHmc= +cloud.google.com/go/channel v1.17.0/go.mod h1:RpbhJsGi/lXWAUM1eF4IbQGbsfVlg2o8Iiy2/YLfVT0= +cloud.google.com/go/channel v1.17.1/go.mod h1:xqfzcOZAcP4b/hUDH0GkGg1Sd5to6di1HOJn/pi5uBQ= cloud.google.com/go/cloudbuild v1.3.0/go.mod h1:WequR4ULxlqvMsjDEEEFnOG5ZSRSgWOywXYDb1vPE6U= cloud.google.com/go/cloudbuild v1.4.0/go.mod h1:5Qwa40LHiOXmz3386FrjrYM93rM/hdRr7b53sySrTqA= cloud.google.com/go/cloudbuild v1.6.0/go.mod h1:UIbc/w9QCbH12xX+ezUsgblrWv+Cv4Tw83GiSMHOn9M= cloud.google.com/go/cloudbuild v1.7.0/go.mod h1:zb5tWh2XI6lR9zQmsm1VRA+7OCuve5d8S+zJUul8KTg= +cloud.google.com/go/cloudbuild v1.9.0/go.mod h1:qK1d7s4QlO0VwfYn5YuClDGg2hfmLZEb4wQGAbIgL1s= +cloud.google.com/go/cloudbuild v1.10.1/go.mod h1:lyJg7v97SUIPq4RC2sGsz/9tNczhyv2AjML/ci4ulzU= +cloud.google.com/go/cloudbuild v1.13.0/go.mod h1:lyJg7v97SUIPq4RC2sGsz/9tNczhyv2AjML/ci4ulzU= +cloud.google.com/go/cloudbuild v1.14.0/go.mod h1:lyJg7v97SUIPq4RC2sGsz/9tNczhyv2AjML/ci4ulzU= +cloud.google.com/go/cloudbuild v1.14.1/go.mod h1:K7wGc/3zfvmYWOWwYTgF/d/UVJhS4pu+HAy7PL7mCsU= cloud.google.com/go/clouddms v1.3.0/go.mod h1:oK6XsCDdW4Ib3jCCBugx+gVjevp2TMXFtgxvPSee3OM= cloud.google.com/go/clouddms v1.4.0/go.mod h1:Eh7sUGCC+aKry14O1NRljhjyrr0NFC0G2cjwX0cByRk= cloud.google.com/go/clouddms v1.5.0/go.mod h1:QSxQnhikCLUw13iAbffF2CZxAER3xDGNHjsTAkQJcQA= +cloud.google.com/go/clouddms v1.6.1/go.mod h1:Ygo1vL52Ov4TBZQquhz5fiw2CQ58gvu+PlS6PVXCpZI= +cloud.google.com/go/clouddms v1.7.0/go.mod h1:MW1dC6SOtI/tPNCciTsXtsGNEM0i0OccykPvv3hiYeM= +cloud.google.com/go/clouddms v1.7.1/go.mod h1:o4SR8U95+P7gZ/TX+YbJxehOCsM+fe6/brlrFquiszk= cloud.google.com/go/cloudtasks v1.5.0/go.mod h1:fD92REy1x5woxkKEkLdvavGnPJGEn8Uic9nWuLzqCpY= cloud.google.com/go/cloudtasks v1.6.0/go.mod h1:C6Io+sxuke9/KNRkbQpihnW93SWDU3uXt92nu85HkYI= cloud.google.com/go/cloudtasks v1.7.0/go.mod h1:ImsfdYWwlWNJbdgPIIGJWC+gemEGTBK/SunNQQNCAb4= cloud.google.com/go/cloudtasks v1.8.0/go.mod h1:gQXUIwCSOI4yPVK7DgTVFiiP0ZW/eQkydWzwVMdHxrI= cloud.google.com/go/cloudtasks v1.9.0/go.mod h1:w+EyLsVkLWHcOaqNEyvcKAsWp9p29dL6uL9Nst1cI7Y= +cloud.google.com/go/cloudtasks v1.10.0/go.mod h1:NDSoTLkZ3+vExFEWu2UJV1arUyzVDAiZtdWcsUyNwBs= +cloud.google.com/go/cloudtasks v1.11.1/go.mod h1:a9udmnou9KO2iulGscKR0qBYjreuX8oHwpmFsKspEvM= +cloud.google.com/go/cloudtasks v1.12.1/go.mod h1:a9udmnou9KO2iulGscKR0qBYjreuX8oHwpmFsKspEvM= +cloud.google.com/go/cloudtasks v1.12.2/go.mod h1:A7nYkjNlW2gUoROg1kvJrQGhJP/38UaWwsnuBDOBVUk= cloud.google.com/go/compute v0.1.0/go.mod h1:GAesmwr110a34z04OlxYkATPBEfVhkymfTBXtfbBFow= cloud.google.com/go/compute v1.3.0/go.mod h1:cCZiE1NHEtai4wiufUhW8I8S1JKkAnhnQJWM7YD99wM= cloud.google.com/go/compute v1.5.0/go.mod h1:9SMHyhJlzhlkJqrPAc839t2BZFTSk6Jdj6mkzQJeu0M= @@ -151,6 +248,13 @@ cloud.google.com/go/compute v1.13.0/go.mod h1:5aPTS0cUNMIc1CE546K+Th6weJUNQErARy cloud.google.com/go/compute v1.14.0/go.mod h1:YfLtxrj9sU4Yxv+sXzZkyPjEyPBZfXHUvjxega5vAdo= cloud.google.com/go/compute v1.15.1/go.mod h1:bjjoF/NtFUrkD/urWfdHaKuOPDR5nWIs63rR+SXhcpA= cloud.google.com/go/compute v1.18.0/go.mod h1:1X7yHxec2Ga+Ss6jPyjxRxpu2uu7PLgsOVXvgU0yacs= +cloud.google.com/go/compute v1.19.0/go.mod h1:rikpw2y+UMidAe9tISo04EHNOIf42RLYF/q8Bs93scU= +cloud.google.com/go/compute v1.19.1/go.mod h1:6ylj3a05WF8leseCdIf77NK0g1ey+nj5IKd5/kvShxE= +cloud.google.com/go/compute v1.19.3/go.mod h1:qxvISKp/gYnXkSAD1ppcSOveRAmzxicEv/JlizULFrI= +cloud.google.com/go/compute v1.20.1/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM= +cloud.google.com/go/compute v1.21.0/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM= +cloud.google.com/go/compute v1.23.0/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM= +cloud.google.com/go/compute v1.23.1/go.mod h1:CqB3xpmPKKt3OJpW2ndFIXnA9A4xAy/F3Xp1ixncW78= cloud.google.com/go/compute/metadata v0.1.0/go.mod h1:Z1VN+bulIf6bt4P/C37K4DyZYZEXYonfTBHHFPO/4UU= cloud.google.com/go/compute/metadata v0.2.0/go.mod h1:zFmK7XCadkQkj6TtorcaGlCW1hT1fIilQDwofLpJ20k= cloud.google.com/go/compute/metadata v0.2.1/go.mod h1:jgHgmJd2RKBGzXqF5LR2EZMGxBkeanZ9wwa75XHJgOM= @@ -158,12 +262,26 @@ cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2Aawl cloud.google.com/go/contactcenterinsights v1.3.0/go.mod h1:Eu2oemoePuEFc/xKFPjbTuPSj0fYJcPls9TFlPNnHHY= cloud.google.com/go/contactcenterinsights v1.4.0/go.mod h1:L2YzkGbPsv+vMQMCADxJoT9YiTTnSEd6fEvCeHTYVck= cloud.google.com/go/contactcenterinsights v1.6.0/go.mod h1:IIDlT6CLcDoyv79kDv8iWxMSTZhLxSCofVV5W6YFM/w= +cloud.google.com/go/contactcenterinsights v1.9.1/go.mod h1:bsg/R7zGLYMVxFFzfh9ooLTruLRCG9fnzhH9KznHhbM= +cloud.google.com/go/contactcenterinsights v1.10.0/go.mod h1:bsg/R7zGLYMVxFFzfh9ooLTruLRCG9fnzhH9KznHhbM= +cloud.google.com/go/contactcenterinsights v1.11.0/go.mod h1:hutBdImE4XNZ1NV4vbPJKSFOnQruhC5Lj9bZqWMTKiU= +cloud.google.com/go/contactcenterinsights v1.11.1/go.mod h1:FeNP3Kg8iteKM80lMwSk3zZZKVxr+PGnAId6soKuXwE= cloud.google.com/go/container v1.6.0/go.mod h1:Xazp7GjJSeUYo688S+6J5V+n/t+G5sKBTFkKNudGRxg= cloud.google.com/go/container v1.7.0/go.mod h1:Dp5AHtmothHGX3DwwIHPgq45Y8KmNsgN3amoYfxVkLo= cloud.google.com/go/container v1.13.1/go.mod h1:6wgbMPeQRw9rSnKBCAJXnds3Pzj03C4JHamr8asWKy4= +cloud.google.com/go/container v1.14.0/go.mod h1:3AoJMPhHfLDxLvrlVWaK57IXzaPnLaZq63WX59aQBfM= +cloud.google.com/go/container v1.15.0/go.mod h1:ft+9S0WGjAyjDggg5S06DXj+fHJICWg8L7isCQe9pQA= +cloud.google.com/go/container v1.22.1/go.mod h1:lTNExE2R7f+DLbAN+rJiKTisauFCaoDq6NURZ83eVH4= +cloud.google.com/go/container v1.24.0/go.mod h1:lTNExE2R7f+DLbAN+rJiKTisauFCaoDq6NURZ83eVH4= +cloud.google.com/go/container v1.26.0/go.mod h1:YJCmRet6+6jnYYRS000T6k0D0xUXQgBSaJ7VwI8FBj4= +cloud.google.com/go/container v1.26.1/go.mod h1:5smONjPRUxeEpDG7bMKWfDL4sauswqEtnBK1/KKpR04= cloud.google.com/go/containeranalysis v0.5.1/go.mod h1:1D92jd8gRR/c0fGMlymRgxWD3Qw9C1ff6/T7mLgVL8I= cloud.google.com/go/containeranalysis v0.6.0/go.mod h1:HEJoiEIu+lEXM+k7+qLCci0h33lX3ZqoYFdmPcoO7s4= cloud.google.com/go/containeranalysis v0.7.0/go.mod h1:9aUL+/vZ55P2CXfuZjS4UjQ9AgXoSw8Ts6lemfmxBxI= +cloud.google.com/go/containeranalysis v0.9.0/go.mod h1:orbOANbwk5Ejoom+s+DUCTTJ7IBdBQJDcSylAx/on9s= +cloud.google.com/go/containeranalysis v0.10.1/go.mod h1:Ya2jiILITMY68ZLPaogjmOMNkwsDrWBSTyBubGXO7j0= +cloud.google.com/go/containeranalysis v0.11.0/go.mod h1:4n2e99ZwpGxpNcz+YsFT1dfOHPQFGcAC8FN2M2/ne/U= +cloud.google.com/go/containeranalysis v0.11.1/go.mod h1:rYlUOM7nem1OJMKwE1SadufX0JP3wnXj844EtZAwWLY= cloud.google.com/go/datacatalog v1.3.0/go.mod h1:g9svFY6tuR+j+hrTw3J2dNcmI0dzmSiyOzm8kpLq0a0= cloud.google.com/go/datacatalog v1.5.0/go.mod h1:M7GPLNQeLfWqeIm3iuiruhPzkt65+Bx8dAKvScX8jvs= cloud.google.com/go/datacatalog v1.6.0/go.mod h1:+aEyF8JKg+uXcIdAmmaMUmZ3q1b/lKLtXCmXdnc0lbc= @@ -171,39 +289,79 @@ cloud.google.com/go/datacatalog v1.7.0/go.mod h1:9mEl4AuDYWw81UGc41HonIHH7/sn52H cloud.google.com/go/datacatalog v1.8.0/go.mod h1:KYuoVOv9BM8EYz/4eMFxrr4DUKhGIOXxZoKYF5wdISM= cloud.google.com/go/datacatalog v1.8.1/go.mod h1:RJ58z4rMp3gvETA465Vg+ag8BGgBdnRPEMMSTr5Uv+M= cloud.google.com/go/datacatalog v1.12.0/go.mod h1:CWae8rFkfp6LzLumKOnmVh4+Zle4A3NXLzVJ1d1mRm0= +cloud.google.com/go/datacatalog v1.13.0/go.mod h1:E4Rj9a5ZtAxcQJlEBTLgMTphfP11/lNaAshpoBgemX8= +cloud.google.com/go/datacatalog v1.14.0/go.mod h1:h0PrGtlihoutNMp/uvwhawLQ9+c63Kz65UFqh49Yo+E= +cloud.google.com/go/datacatalog v1.14.1/go.mod h1:d2CevwTG4yedZilwe+v3E3ZBDRMobQfSG/a6cCCN5R4= +cloud.google.com/go/datacatalog v1.16.0/go.mod h1:d2CevwTG4yedZilwe+v3E3ZBDRMobQfSG/a6cCCN5R4= +cloud.google.com/go/datacatalog v1.17.1/go.mod h1:nCSYFHgtxh2MiEktWIz71s/X+7ds/UT9kp0PC7waCzE= +cloud.google.com/go/datacatalog v1.18.0/go.mod h1:nCSYFHgtxh2MiEktWIz71s/X+7ds/UT9kp0PC7waCzE= +cloud.google.com/go/datacatalog v1.18.1/go.mod h1:TzAWaz+ON1tkNr4MOcak8EBHX7wIRX/gZKM+yTVsv+A= cloud.google.com/go/dataflow v0.6.0/go.mod h1:9QwV89cGoxjjSR9/r7eFDqqjtvbKxAK2BaYU6PVk9UM= cloud.google.com/go/dataflow v0.7.0/go.mod h1:PX526vb4ijFMesO1o202EaUmouZKBpjHsTlCtB4parQ= cloud.google.com/go/dataflow v0.8.0/go.mod h1:Rcf5YgTKPtQyYz8bLYhFoIV/vP39eL7fWNcSOyFfLJE= +cloud.google.com/go/dataflow v0.9.1/go.mod h1:Wp7s32QjYuQDWqJPFFlnBKhkAtiFpMTdg00qGbnIHVw= +cloud.google.com/go/dataflow v0.9.2/go.mod h1:vBfdBZ/ejlTaYIGB3zB4T08UshH70vbtZeMD+urnUSo= cloud.google.com/go/dataform v0.3.0/go.mod h1:cj8uNliRlHpa6L3yVhDOBrUXH+BPAO1+KFMQQNSThKo= cloud.google.com/go/dataform v0.4.0/go.mod h1:fwV6Y4Ty2yIFL89huYlEkwUPtS7YZinZbzzj5S9FzCE= cloud.google.com/go/dataform v0.5.0/go.mod h1:GFUYRe8IBa2hcomWplodVmUx/iTL0FrsauObOM3Ipr0= cloud.google.com/go/dataform v0.6.0/go.mod h1:QPflImQy33e29VuapFdf19oPbE4aYTJxr31OAPV+ulA= +cloud.google.com/go/dataform v0.7.0/go.mod h1:7NulqnVozfHvWUBpMDfKMUESr+85aJsC/2O0o3jWPDE= +cloud.google.com/go/dataform v0.8.1/go.mod h1:3BhPSiw8xmppbgzeBbmDvmSWlwouuJkXsXsb8UBih9M= +cloud.google.com/go/dataform v0.8.2/go.mod h1:X9RIqDs6NbGPLR80tnYoPNiO1w0wenKTb8PxxlhTMKM= cloud.google.com/go/datafusion v1.4.0/go.mod h1:1Zb6VN+W6ALo85cXnM1IKiPw+yQMKMhB9TsTSRDo/38= cloud.google.com/go/datafusion v1.5.0/go.mod h1:Kz+l1FGHB0J+4XF2fud96WMmRiq/wj8N9u007vyXZ2w= cloud.google.com/go/datafusion v1.6.0/go.mod h1:WBsMF8F1RhSXvVM8rCV3AeyWVxcC2xY6vith3iw3S+8= +cloud.google.com/go/datafusion v1.7.1/go.mod h1:KpoTBbFmoToDExJUso/fcCiguGDk7MEzOWXUsJo0wsI= +cloud.google.com/go/datafusion v1.7.2/go.mod h1:62K2NEC6DRlpNmI43WHMWf9Vg/YvN6QVi8EVwifElI0= cloud.google.com/go/datalabeling v0.5.0/go.mod h1:TGcJ0G2NzcsXSE/97yWjIZO0bXj0KbVlINXMG9ud42I= cloud.google.com/go/datalabeling v0.6.0/go.mod h1:WqdISuk/+WIGeMkpw/1q7bK/tFEZxsrFJOJdY2bXvTQ= cloud.google.com/go/datalabeling v0.7.0/go.mod h1:WPQb1y08RJbmpM3ww0CSUAGweL0SxByuW2E+FU+wXcM= +cloud.google.com/go/datalabeling v0.8.1/go.mod h1:XS62LBSVPbYR54GfYQsPXZjTW8UxCK2fkDciSrpRFdY= +cloud.google.com/go/datalabeling v0.8.2/go.mod h1:cyDvGHuJWu9U/cLDA7d8sb9a0tWLEletStu2sTmg3BE= cloud.google.com/go/dataplex v1.3.0/go.mod h1:hQuRtDg+fCiFgC8j0zV222HvzFQdRd+SVX8gdmFcZzA= cloud.google.com/go/dataplex v1.4.0/go.mod h1:X51GfLXEMVJ6UN47ESVqvlsRplbLhcsAt0kZCCKsU0A= cloud.google.com/go/dataplex v1.5.2/go.mod h1:cVMgQHsmfRoI5KFYq4JtIBEUbYwc3c7tXmIDhRmNNVQ= +cloud.google.com/go/dataplex v1.6.0/go.mod h1:bMsomC/aEJOSpHXdFKFGQ1b0TDPIeL28nJObeO1ppRs= +cloud.google.com/go/dataplex v1.8.1/go.mod h1:7TyrDT6BCdI8/38Uvp0/ZxBslOslP2X2MPDucliyvSE= +cloud.google.com/go/dataplex v1.9.0/go.mod h1:7TyrDT6BCdI8/38Uvp0/ZxBslOslP2X2MPDucliyvSE= +cloud.google.com/go/dataplex v1.9.1/go.mod h1:7TyrDT6BCdI8/38Uvp0/ZxBslOslP2X2MPDucliyvSE= +cloud.google.com/go/dataplex v1.10.1/go.mod h1:1MzmBv8FvjYfc7vDdxhnLFNskikkB+3vl475/XdCDhs= cloud.google.com/go/dataproc v1.7.0/go.mod h1:CKAlMjII9H90RXaMpSxQ8EU6dQx6iAYNPcYPOkSbi8s= cloud.google.com/go/dataproc v1.8.0/go.mod h1:5OW+zNAH0pMpw14JVrPONsxMQYMBqJuzORhIBfBn9uI= cloud.google.com/go/dataproc v1.12.0/go.mod h1:zrF3aX0uV3ikkMz6z4uBbIKyhRITnxvr4i3IjKsKrw4= +cloud.google.com/go/dataproc/v2 v2.0.1/go.mod h1:7Ez3KRHdFGcfY7GcevBbvozX+zyWGcwLJvvAMwCaoZ4= +cloud.google.com/go/dataproc/v2 v2.2.0/go.mod h1:lZR7AQtwZPvmINx5J87DSOOpTfof9LVZju6/Qo4lmcY= +cloud.google.com/go/dataproc/v2 v2.2.1/go.mod h1:QdAJLaBjh+l4PVlVZcmrmhGccosY/omC1qwfQ61Zv/o= cloud.google.com/go/dataqna v0.5.0/go.mod h1:90Hyk596ft3zUQ8NkFfvICSIfHFh1Bc7C4cK3vbhkeo= cloud.google.com/go/dataqna v0.6.0/go.mod h1:1lqNpM7rqNLVgWBJyk5NF6Uen2PHym0jtVJonplVsDA= cloud.google.com/go/dataqna v0.7.0/go.mod h1:Lx9OcIIeqCrw1a6KdO3/5KMP1wAmTc0slZWwP12Qq3c= +cloud.google.com/go/dataqna v0.8.1/go.mod h1:zxZM0Bl6liMePWsHA8RMGAfmTG34vJMapbHAxQ5+WA8= +cloud.google.com/go/dataqna v0.8.2/go.mod h1:KNEqgx8TTmUipnQsScOoDpq/VlXVptUqVMZnt30WAPs= cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= cloud.google.com/go/datastore v1.10.0/go.mod h1:PC5UzAmDEkAmkfaknstTYbNpgE49HAgW2J1gcgUfmdM= +cloud.google.com/go/datastore v1.11.0/go.mod h1:TvGxBIHCS50u8jzG+AW/ppf87v1of8nwzFNgEZU1D3c= +cloud.google.com/go/datastore v1.12.0/go.mod h1:KjdB88W897MRITkvWWJrg2OUtrR5XVj1EoLgSp6/N70= +cloud.google.com/go/datastore v1.12.1/go.mod h1:KjdB88W897MRITkvWWJrg2OUtrR5XVj1EoLgSp6/N70= +cloud.google.com/go/datastore v1.13.0/go.mod h1:KjdB88W897MRITkvWWJrg2OUtrR5XVj1EoLgSp6/N70= +cloud.google.com/go/datastore v1.14.0/go.mod h1:GAeStMBIt9bPS7jMJA85kgkpsMkvseWWXiaHya9Jes8= +cloud.google.com/go/datastore v1.15.0/go.mod h1:GAeStMBIt9bPS7jMJA85kgkpsMkvseWWXiaHya9Jes8= cloud.google.com/go/datastream v1.2.0/go.mod h1:i/uTP8/fZwgATHS/XFu0TcNUhuA0twZxxQ3EyCUQMwo= cloud.google.com/go/datastream v1.3.0/go.mod h1:cqlOX8xlyYF/uxhiKn6Hbv6WjwPPuI9W2M9SAXwaLLQ= cloud.google.com/go/datastream v1.4.0/go.mod h1:h9dpzScPhDTs5noEMQVWP8Wx8AFBRyS0s8KWPx/9r0g= cloud.google.com/go/datastream v1.5.0/go.mod h1:6TZMMNPwjUqZHBKPQ1wwXpb0d5VDVPl2/XoS5yi88q4= cloud.google.com/go/datastream v1.6.0/go.mod h1:6LQSuswqLa7S4rPAOZFVjHIG3wJIjZcZrw8JDEDJuIs= +cloud.google.com/go/datastream v1.7.0/go.mod h1:uxVRMm2elUSPuh65IbZpzJNMbuzkcvu5CjMqVIUHrww= +cloud.google.com/go/datastream v1.9.1/go.mod h1:hqnmr8kdUBmrnk65k5wNRoHSCYksvpdZIcZIEl8h43Q= +cloud.google.com/go/datastream v1.10.0/go.mod h1:hqnmr8kdUBmrnk65k5wNRoHSCYksvpdZIcZIEl8h43Q= +cloud.google.com/go/datastream v1.10.1/go.mod h1:7ngSYwnw95YFyTd5tOGBxHlOZiL+OtpjheqU7t2/s/c= cloud.google.com/go/deploy v1.4.0/go.mod h1:5Xghikd4VrmMLNaF6FiRFDlHb59VM59YoDQnOUdsH/c= cloud.google.com/go/deploy v1.5.0/go.mod h1:ffgdD0B89tToyW/U/D2eL0jN2+IEV/3EMuXHA0l4r+s= cloud.google.com/go/deploy v1.6.0/go.mod h1:f9PTHehG/DjCom3QH0cntOVRm93uGBDt2vKzAPwpXQI= +cloud.google.com/go/deploy v1.8.0/go.mod h1:z3myEJnA/2wnB4sgjqdMfgxCA0EqC3RBTNcVPs93mtQ= +cloud.google.com/go/deploy v1.11.0/go.mod h1:tKuSUV5pXbn67KiubiUNUejqLs4f5cxxiCNCeyl0F2g= +cloud.google.com/go/deploy v1.13.0/go.mod h1:tKuSUV5pXbn67KiubiUNUejqLs4f5cxxiCNCeyl0F2g= +cloud.google.com/go/deploy v1.13.1/go.mod h1:8jeadyLkH9qu9xgO3hVWw8jVr29N1mnW42gRJT8GY6g= cloud.google.com/go/dialogflow v1.15.0/go.mod h1:HbHDWs33WOGJgn6rfzBW1Kv807BE3O1+xGbn59zZWI4= cloud.google.com/go/dialogflow v1.16.1/go.mod h1:po6LlzGfK+smoSmTBnbkIZY2w8ffjz/RcGSS+sh1el0= cloud.google.com/go/dialogflow v1.17.0/go.mod h1:YNP09C/kXA1aZdBgC/VtXX74G/TKn7XVCcVumTflA+8= @@ -211,57 +369,107 @@ cloud.google.com/go/dialogflow v1.18.0/go.mod h1:trO7Zu5YdyEuR+BhSNOqJezyFQ3aUzz cloud.google.com/go/dialogflow v1.19.0/go.mod h1:JVmlG1TwykZDtxtTXujec4tQ+D8SBFMoosgy+6Gn0s0= cloud.google.com/go/dialogflow v1.29.0/go.mod h1:b+2bzMe+k1s9V+F2jbJwpHPzrnIyHihAdRFMtn2WXuM= cloud.google.com/go/dialogflow v1.31.0/go.mod h1:cuoUccuL1Z+HADhyIA7dci3N5zUssgpBJmCzI6fNRB4= +cloud.google.com/go/dialogflow v1.32.0/go.mod h1:jG9TRJl8CKrDhMEcvfcfFkkpp8ZhgPz3sBGmAUYJ2qE= +cloud.google.com/go/dialogflow v1.38.0/go.mod h1:L7jnH+JL2mtmdChzAIcXQHXMvQkE3U4hTaNltEuxXn4= +cloud.google.com/go/dialogflow v1.40.0/go.mod h1:L7jnH+JL2mtmdChzAIcXQHXMvQkE3U4hTaNltEuxXn4= +cloud.google.com/go/dialogflow v1.43.0/go.mod h1:pDUJdi4elL0MFmt1REMvFkdsUTYSHq+rTCS8wg0S3+M= +cloud.google.com/go/dialogflow v1.44.0/go.mod h1:pDUJdi4elL0MFmt1REMvFkdsUTYSHq+rTCS8wg0S3+M= +cloud.google.com/go/dialogflow v1.44.1/go.mod h1:n/h+/N2ouKOO+rbe/ZnI186xImpqvCVj2DdsWS/0EAk= cloud.google.com/go/dlp v1.6.0/go.mod h1:9eyB2xIhpU0sVwUixfBubDoRwP+GjeUoxxeueZmqvmM= cloud.google.com/go/dlp v1.7.0/go.mod h1:68ak9vCiMBjbasxeVD17hVPxDEck+ExiHavX8kiHG+Q= cloud.google.com/go/dlp v1.9.0/go.mod h1:qdgmqgTyReTz5/YNSSuueR8pl7hO0o9bQ39ZhtgkWp4= +cloud.google.com/go/dlp v1.10.1/go.mod h1:IM8BWz1iJd8njcNcG0+Kyd9OPnqnRNkDV8j42VT5KOI= +cloud.google.com/go/dlp v1.10.2/go.mod h1:ZbdKIhcnyhILgccwVDzkwqybthh7+MplGC3kZVZsIOQ= cloud.google.com/go/documentai v1.7.0/go.mod h1:lJvftZB5NRiFSX4moiye1SMxHx0Bc3x1+p9e/RfXYiU= cloud.google.com/go/documentai v1.8.0/go.mod h1:xGHNEB7CtsnySCNrCFdCyyMz44RhFEEX2Q7UD0c5IhU= cloud.google.com/go/documentai v1.9.0/go.mod h1:FS5485S8R00U10GhgBC0aNGrJxBP8ZVpEeJ7PQDZd6k= cloud.google.com/go/documentai v1.10.0/go.mod h1:vod47hKQIPeCfN2QS/jULIvQTugbmdc0ZvxxfQY1bg4= cloud.google.com/go/documentai v1.16.0/go.mod h1:o0o0DLTEZ+YnJZ+J4wNfTxmDVyrkzFvttBXXtYRMHkM= +cloud.google.com/go/documentai v1.18.0/go.mod h1:F6CK6iUH8J81FehpskRmhLq/3VlwQvb7TvwOceQ2tbs= +cloud.google.com/go/documentai v1.20.0/go.mod h1:yJkInoMcK0qNAEdRnqY/D5asy73tnPe88I1YTZT+a8E= +cloud.google.com/go/documentai v1.22.0/go.mod h1:yJkInoMcK0qNAEdRnqY/D5asy73tnPe88I1YTZT+a8E= +cloud.google.com/go/documentai v1.22.1/go.mod h1:LKs22aDHbJv7ufXuPypzRO7rG3ALLJxzdCXDPutw4Qc= +cloud.google.com/go/documentai v1.23.0/go.mod h1:LKs22aDHbJv7ufXuPypzRO7rG3ALLJxzdCXDPutw4Qc= +cloud.google.com/go/documentai v1.23.2/go.mod h1:Q/wcRT+qnuXOpjAkvOV4A+IeQl04q2/ReT7SSbytLSo= cloud.google.com/go/domains v0.6.0/go.mod h1:T9Rz3GasrpYk6mEGHh4rymIhjlnIuB4ofT1wTxDeT4Y= cloud.google.com/go/domains v0.7.0/go.mod h1:PtZeqS1xjnXuRPKE/88Iru/LdfoRyEHYA9nFQf4UKpg= cloud.google.com/go/domains v0.8.0/go.mod h1:M9i3MMDzGFXsydri9/vW+EWz9sWb4I6WyHqdlAk0idE= +cloud.google.com/go/domains v0.9.1/go.mod h1:aOp1c0MbejQQ2Pjf1iJvnVyT+z6R6s8pX66KaCSDYfE= +cloud.google.com/go/domains v0.9.2/go.mod h1:3YvXGYzZG1Temjbk7EyGCuGGiXHJwVNmwIf+E/cUp5I= cloud.google.com/go/edgecontainer v0.1.0/go.mod h1:WgkZ9tp10bFxqO8BLPqv2LlfmQF1X8lZqwW4r1BTajk= cloud.google.com/go/edgecontainer v0.2.0/go.mod h1:RTmLijy+lGpQ7BXuTDa4C4ssxyXT34NIuHIgKuP4s5w= cloud.google.com/go/edgecontainer v0.3.0/go.mod h1:FLDpP4nykgwwIfcLt6zInhprzw0lEi2P1fjO6Ie0qbc= +cloud.google.com/go/edgecontainer v1.0.0/go.mod h1:cttArqZpBB2q58W/upSG++ooo6EsblxDIolxa3jSjbY= +cloud.google.com/go/edgecontainer v1.1.1/go.mod h1:O5bYcS//7MELQZs3+7mabRqoWQhXCzenBu0R8bz2rwk= +cloud.google.com/go/edgecontainer v1.1.2/go.mod h1:wQRjIzqxEs9e9wrtle4hQPSR1Y51kqN75dgF7UllZZ4= cloud.google.com/go/errorreporting v0.3.0/go.mod h1:xsP2yaAp+OAW4OIm60An2bbLpqIhKXdWR/tawvl7QzU= cloud.google.com/go/essentialcontacts v1.3.0/go.mod h1:r+OnHa5jfj90qIfZDO/VztSFqbQan7HV75p8sA+mdGI= cloud.google.com/go/essentialcontacts v1.4.0/go.mod h1:8tRldvHYsmnBCHdFpvU+GL75oWiBKl80BiqlFh9tp+8= cloud.google.com/go/essentialcontacts v1.5.0/go.mod h1:ay29Z4zODTuwliK7SnX8E86aUF2CTzdNtvv42niCX0M= +cloud.google.com/go/essentialcontacts v1.6.2/go.mod h1:T2tB6tX+TRak7i88Fb2N9Ok3PvY3UNbUsMag9/BARh4= +cloud.google.com/go/essentialcontacts v1.6.3/go.mod h1:yiPCD7f2TkP82oJEFXFTou8Jl8L6LBRPeBEkTaO0Ggo= cloud.google.com/go/eventarc v1.7.0/go.mod h1:6ctpF3zTnaQCxUjHUdcfgcA1A2T309+omHZth7gDfmc= cloud.google.com/go/eventarc v1.8.0/go.mod h1:imbzxkyAU4ubfsaKYdQg04WS1NvncblHEup4kvF+4gw= cloud.google.com/go/eventarc v1.10.0/go.mod h1:u3R35tmZ9HvswGRBnF48IlYgYeBcPUCjkr4BTdem2Kw= +cloud.google.com/go/eventarc v1.11.0/go.mod h1:PyUjsUKPWoRBCHeOxZd/lbOOjahV41icXyUY5kSTvVY= +cloud.google.com/go/eventarc v1.12.1/go.mod h1:mAFCW6lukH5+IZjkvrEss+jmt2kOdYlN8aMx3sRJiAI= +cloud.google.com/go/eventarc v1.13.0/go.mod h1:mAFCW6lukH5+IZjkvrEss+jmt2kOdYlN8aMx3sRJiAI= +cloud.google.com/go/eventarc v1.13.1/go.mod h1:EqBxmGHFrruIara4FUQ3RHlgfCn7yo1HYsu2Hpt/C3Y= cloud.google.com/go/filestore v1.3.0/go.mod h1:+qbvHGvXU1HaKX2nD0WEPo92TP/8AQuCVEBXNY9z0+w= cloud.google.com/go/filestore v1.4.0/go.mod h1:PaG5oDfo9r224f8OYXURtAsY+Fbyq/bLYoINEK8XQAI= cloud.google.com/go/filestore v1.5.0/go.mod h1:FqBXDWBp4YLHqRnVGveOkHDf8svj9r5+mUDLupOWEDs= +cloud.google.com/go/filestore v1.6.0/go.mod h1:di5unNuss/qfZTw2U9nhFqo8/ZDSc466dre85Kydllg= +cloud.google.com/go/filestore v1.7.1/go.mod h1:y10jsorq40JJnjR/lQ8AfFbbcGlw3g+Dp8oN7i7FjV4= +cloud.google.com/go/filestore v1.7.2/go.mod h1:TYOlyJs25f/omgj+vY7/tIG/E7BX369triSPzE4LdgE= cloud.google.com/go/firestore v1.9.0/go.mod h1:HMkjKHNTtRyZNiMzu7YAsLr9K3X2udY2AMwDaMEQiiE= +cloud.google.com/go/firestore v1.11.0/go.mod h1:b38dKhgzlmNNGTNZZwe7ZRFEuRab1Hay3/DBsIGKKy4= +cloud.google.com/go/firestore v1.12.0/go.mod h1:b38dKhgzlmNNGTNZZwe7ZRFEuRab1Hay3/DBsIGKKy4= +cloud.google.com/go/firestore v1.13.0/go.mod h1:QojqqOh8IntInDUSTAh0c8ZsPYAr68Ma8c5DWOy8xb8= cloud.google.com/go/functions v1.6.0/go.mod h1:3H1UA3qiIPRWD7PeZKLvHZ9SaQhR26XIJcC0A5GbvAk= cloud.google.com/go/functions v1.7.0/go.mod h1:+d+QBcWM+RsrgZfV9xo6KfA1GlzJfxcfZcRPEhDDfzg= cloud.google.com/go/functions v1.8.0/go.mod h1:RTZ4/HsQjIqIYP9a9YPbU+QFoQsAlYgrwOXJWHn1POY= cloud.google.com/go/functions v1.9.0/go.mod h1:Y+Dz8yGguzO3PpIjhLTbnqV1CWmgQ5UwtlpzoyquQ08= cloud.google.com/go/functions v1.10.0/go.mod h1:0D3hEOe3DbEvCXtYOZHQZmD+SzYsi1YbI7dGvHfldXw= +cloud.google.com/go/functions v1.12.0/go.mod h1:AXWGrF3e2C/5ehvwYo/GH6O5s09tOPksiKhz+hH8WkA= +cloud.google.com/go/functions v1.13.0/go.mod h1:EU4O007sQm6Ef/PwRsI8N2umygGqPBS/IZQKBQBcJ3c= +cloud.google.com/go/functions v1.15.1/go.mod h1:P5yNWUTkyU+LvW/S9O6V+V423VZooALQlqoXdoPz5AE= +cloud.google.com/go/functions v1.15.2/go.mod h1:CHAjtcR6OU4XF2HuiVeriEdELNcnvRZSk1Q8RMqy4lE= cloud.google.com/go/gaming v1.5.0/go.mod h1:ol7rGcxP/qHTRQE/RO4bxkXq+Fix0j6D4LFPzYTIrDM= cloud.google.com/go/gaming v1.6.0/go.mod h1:YMU1GEvA39Qt3zWGyAVA9bpYz/yAhTvaQ1t2sK4KPUA= cloud.google.com/go/gaming v1.7.0/go.mod h1:LrB8U7MHdGgFG851iHAfqUdLcKBdQ55hzXy9xBJz0+w= cloud.google.com/go/gaming v1.8.0/go.mod h1:xAqjS8b7jAVW0KFYeRUxngo9My3f33kFmua++Pi+ggM= cloud.google.com/go/gaming v1.9.0/go.mod h1:Fc7kEmCObylSWLO334NcO+O9QMDyz+TKC4v1D7X+Bc0= +cloud.google.com/go/gaming v1.10.1/go.mod h1:XQQvtfP8Rb9Rxnxm5wFVpAp9zCQkJi2bLIb7iHGwB3s= cloud.google.com/go/gkebackup v0.2.0/go.mod h1:XKvv/4LfG829/B8B7xRkk8zRrOEbKtEam6yNfuQNH60= cloud.google.com/go/gkebackup v0.3.0/go.mod h1:n/E671i1aOQvUxT541aTkCwExO/bTer2HDlj4TsBRAo= cloud.google.com/go/gkebackup v0.4.0/go.mod h1:byAyBGUwYGEEww7xsbnUTBHIYcOPy/PgUWUtOeRm9Vg= +cloud.google.com/go/gkebackup v1.3.0/go.mod h1:vUDOu++N0U5qs4IhG1pcOnD1Mac79xWy6GoBFlWCWBU= +cloud.google.com/go/gkebackup v1.3.1/go.mod h1:vUDOu++N0U5qs4IhG1pcOnD1Mac79xWy6GoBFlWCWBU= +cloud.google.com/go/gkebackup v1.3.2/go.mod h1:OMZbXzEJloyXMC7gqdSB+EOEQ1AKcpGYvO3s1ec5ixk= cloud.google.com/go/gkeconnect v0.5.0/go.mod h1:c5lsNAg5EwAy7fkqX/+goqFsU1Da/jQFqArp+wGNr/o= cloud.google.com/go/gkeconnect v0.6.0/go.mod h1:Mln67KyU/sHJEBY8kFZ0xTeyPtzbq9StAVvEULYK16A= cloud.google.com/go/gkeconnect v0.7.0/go.mod h1:SNfmVqPkaEi3bF/B3CNZOAYPYdg7sU+obZ+QTky2Myw= +cloud.google.com/go/gkeconnect v0.8.1/go.mod h1:KWiK1g9sDLZqhxB2xEuPV8V9NYzrqTUmQR9shJHpOZw= +cloud.google.com/go/gkeconnect v0.8.2/go.mod h1:6nAVhwchBJYgQCXD2pHBFQNiJNyAd/wyxljpaa6ZPrY= cloud.google.com/go/gkehub v0.9.0/go.mod h1:WYHN6WG8w9bXU0hqNxt8rm5uxnk8IH+lPY9J2TV7BK0= cloud.google.com/go/gkehub v0.10.0/go.mod h1:UIPwxI0DsrpsVoWpLB0stwKCP+WFVG9+y977wO+hBH0= cloud.google.com/go/gkehub v0.11.0/go.mod h1:JOWHlmN+GHyIbuWQPl47/C2RFhnFKH38jH9Ascu3n0E= +cloud.google.com/go/gkehub v0.12.0/go.mod h1:djiIwwzTTBrF5NaXCGv3mf7klpEMcST17VBTVVDcuaw= +cloud.google.com/go/gkehub v0.14.1/go.mod h1:VEXKIJZ2avzrbd7u+zeMtW00Y8ddk/4V9511C9CQGTY= +cloud.google.com/go/gkehub v0.14.2/go.mod h1:iyjYH23XzAxSdhrbmfoQdePnlMj2EWcvnR+tHdBQsCY= cloud.google.com/go/gkemulticloud v0.3.0/go.mod h1:7orzy7O0S+5kq95e4Hpn7RysVA7dPs8W/GgfUtsPbrA= cloud.google.com/go/gkemulticloud v0.4.0/go.mod h1:E9gxVBnseLWCk24ch+P9+B2CoDFJZTyIgLKSalC7tuI= cloud.google.com/go/gkemulticloud v0.5.0/go.mod h1:W0JDkiyi3Tqh0TJr//y19wyb1yf8llHVto2Htf2Ja3Y= +cloud.google.com/go/gkemulticloud v0.6.1/go.mod h1:kbZ3HKyTsiwqKX7Yw56+wUGwwNZViRnxWK2DVknXWfw= +cloud.google.com/go/gkemulticloud v1.0.0/go.mod h1:kbZ3HKyTsiwqKX7Yw56+wUGwwNZViRnxWK2DVknXWfw= +cloud.google.com/go/gkemulticloud v1.0.1/go.mod h1:AcrGoin6VLKT/fwZEYuqvVominLriQBCKmbjtnbMjG8= cloud.google.com/go/grafeas v0.2.0/go.mod h1:KhxgtF2hb0P191HlY5besjYm6MqTSTj3LSI+M+ByZHc= +cloud.google.com/go/grafeas v0.3.0/go.mod h1:P7hgN24EyONOTMyeJH6DxG4zD7fwiYa5Q6GUgyFSOU8= cloud.google.com/go/gsuiteaddons v1.3.0/go.mod h1:EUNK/J1lZEZO8yPtykKxLXI6JSVN2rg9bN8SXOa0bgM= cloud.google.com/go/gsuiteaddons v1.4.0/go.mod h1:rZK5I8hht7u7HxFQcFei0+AtfS9uSushomRlg+3ua1o= cloud.google.com/go/gsuiteaddons v1.5.0/go.mod h1:TFCClYLd64Eaa12sFVmUyG62tk4mdIsI7pAnSXRkcFo= +cloud.google.com/go/gsuiteaddons v1.6.1/go.mod h1:CodrdOqRZcLp5WOwejHWYBjZvfY0kOphkAKpF/3qdZY= +cloud.google.com/go/gsuiteaddons v1.6.2/go.mod h1:K65m9XSgs8hTF3X9nNTPi8IQueljSdYo9F+Mi+s4MyU= cloud.google.com/go/iam v0.1.0/go.mod h1:vcUNEa0pEm0qRVpmWepWaFMIAI8/hjB9mO8rNCJtF6c= cloud.google.com/go/iam v0.3.0/go.mod h1:XzJPvDayI+9zsASAFO68Hk07u3z+f+JrT2xXNdp4bnY= cloud.google.com/go/iam v0.5.0/go.mod h1:wPU9Vt0P4UmCux7mqtRu6jcpPAb74cP1fh50J3QpkUc= @@ -270,98 +478,189 @@ cloud.google.com/go/iam v0.7.0/go.mod h1:H5Br8wRaDGNc8XP3keLc4unfUUZeyH3Sfl9XpQE cloud.google.com/go/iam v0.8.0/go.mod h1:lga0/y3iH6CX7sYqypWJ33hf7kkfXJag67naqGESjkE= cloud.google.com/go/iam v0.11.0/go.mod h1:9PiLDanza5D+oWFZiH1uG+RnRCfEGKoyl6yo4cgWZGY= cloud.google.com/go/iam v0.12.0/go.mod h1:knyHGviacl11zrtZUoDuYpDgLjvr28sLQaG0YB2GYAY= +cloud.google.com/go/iam v0.13.0/go.mod h1:ljOg+rcNfzZ5d6f1nAUJ8ZIxOaZUVoS14bKCtaLZ/D0= +cloud.google.com/go/iam v1.0.1/go.mod h1:yR3tmSL8BcZB4bxByRv2jkSIahVmCtfKZwLYGBalRE8= +cloud.google.com/go/iam v1.1.0/go.mod h1:nxdHjaKfCr7fNYx/HJMM8LgiMugmveWlkatear5gVyk= +cloud.google.com/go/iam v1.1.1/go.mod h1:A5avdyVL2tCppe4unb0951eI9jreack+RJ0/d+KUZOU= +cloud.google.com/go/iam v1.1.2/go.mod h1:A5avdyVL2tCppe4unb0951eI9jreack+RJ0/d+KUZOU= +cloud.google.com/go/iam v1.1.3/go.mod h1:3khUlaBXfPKKe7huYgEpDn6FtgRyMEqbkvBxrQyY5SE= cloud.google.com/go/iap v1.4.0/go.mod h1:RGFwRJdihTINIe4wZ2iCP0zF/qu18ZwyKxrhMhygBEc= cloud.google.com/go/iap v1.5.0/go.mod h1:UH/CGgKd4KyohZL5Pt0jSKE4m3FR51qg6FKQ/z/Ix9A= cloud.google.com/go/iap v1.6.0/go.mod h1:NSuvI9C/j7UdjGjIde7t7HBz+QTwBcapPE07+sSRcLk= +cloud.google.com/go/iap v1.7.0/go.mod h1:beqQx56T9O1G1yNPph+spKpNibDlYIiIixiqsQXxLIo= +cloud.google.com/go/iap v1.7.1/go.mod h1:WapEwPc7ZxGt2jFGB/C/bm+hP0Y6NXzOYGjpPnmMS74= +cloud.google.com/go/iap v1.8.1/go.mod h1:sJCbeqg3mvWLqjZNsI6dfAtbbV1DL2Rl7e1mTyXYREQ= +cloud.google.com/go/iap v1.9.0/go.mod h1:01OFxd1R+NFrg78S+hoPV5PxEzv22HXaNqUUlmNHFuY= +cloud.google.com/go/iap v1.9.1/go.mod h1:SIAkY7cGMLohLSdBR25BuIxO+I4fXJiL06IBL7cy/5Q= cloud.google.com/go/ids v1.1.0/go.mod h1:WIuwCaYVOzHIj2OhN9HAwvW+DBdmUAdcWlFxRl+KubM= cloud.google.com/go/ids v1.2.0/go.mod h1:5WXvp4n25S0rA/mQWAg1YEEBBq6/s+7ml1RDCW1IrcY= cloud.google.com/go/ids v1.3.0/go.mod h1:JBdTYwANikFKaDP6LtW5JAi4gubs57SVNQjemdt6xV4= +cloud.google.com/go/ids v1.4.1/go.mod h1:np41ed8YMU8zOgv53MMMoCntLTn2lF+SUzlM+O3u/jw= +cloud.google.com/go/ids v1.4.2/go.mod h1:3vw8DX6YddRu9BncxuzMyWn0g8+ooUjI2gslJ7FH3vk= cloud.google.com/go/iot v1.3.0/go.mod h1:r7RGh2B61+B8oz0AGE+J72AhA0G7tdXItODWsaA2oLs= cloud.google.com/go/iot v1.4.0/go.mod h1:dIDxPOn0UvNDUMD8Ger7FIaTuvMkj+aGk94RPP0iV+g= cloud.google.com/go/iot v1.5.0/go.mod h1:mpz5259PDl3XJthEmh9+ap0affn/MqNSP4My77Qql9o= +cloud.google.com/go/iot v1.6.0/go.mod h1:IqdAsmE2cTYYNO1Fvjfzo9po179rAtJeVGUvkLN3rLE= +cloud.google.com/go/iot v1.7.1/go.mod h1:46Mgw7ev1k9KqK1ao0ayW9h0lI+3hxeanz+L1zmbbbk= +cloud.google.com/go/iot v1.7.2/go.mod h1:q+0P5zr1wRFpw7/MOgDXrG/HVA+l+cSwdObffkrpnSg= cloud.google.com/go/kms v1.4.0/go.mod h1:fajBHndQ+6ubNw6Ss2sSd+SWvjL26RNo/dr7uxsnnOA= cloud.google.com/go/kms v1.5.0/go.mod h1:QJS2YY0eJGBg3mnDfuaCyLauWwBJiHRboYxJ++1xJNg= cloud.google.com/go/kms v1.6.0/go.mod h1:Jjy850yySiasBUDi6KFUwUv2n1+o7QZFyuUJg6OgjA0= cloud.google.com/go/kms v1.8.0/go.mod h1:4xFEhYFqvW+4VMELtZyxomGSYtSQKzM178ylFW4jMAg= cloud.google.com/go/kms v1.9.0/go.mod h1:qb1tPTgfF9RQP8e1wq4cLFErVuTJv7UsSC915J8dh3w= +cloud.google.com/go/kms v1.10.0/go.mod h1:ng3KTUtQQU9bPX3+QGLsflZIHlkbn8amFAMY63m8d24= +cloud.google.com/go/kms v1.10.1/go.mod h1:rIWk/TryCkR59GMC3YtHtXeLzd634lBbKenvyySAyYI= +cloud.google.com/go/kms v1.11.0/go.mod h1:hwdiYC0xjnWsKQQCQQmIQnS9asjYVSK6jtXm+zFqXLM= +cloud.google.com/go/kms v1.12.1/go.mod h1:c9J991h5DTl+kg7gi3MYomh12YEENGrf48ee/N/2CDM= +cloud.google.com/go/kms v1.15.0/go.mod h1:c9J991h5DTl+kg7gi3MYomh12YEENGrf48ee/N/2CDM= +cloud.google.com/go/kms v1.15.2/go.mod h1:3hopT4+7ooWRCjc2DxgnpESFxhIraaI2IpAVUEhbT/w= +cloud.google.com/go/kms v1.15.3/go.mod h1:AJdXqHxS2GlPyduM99s9iGqi2nwbviBbhV/hdmt4iOQ= +cloud.google.com/go/kms v1.15.5/go.mod h1:cU2H5jnp6G2TDpUGZyqTCoy1n16fbubHZjmVXSMtwDI= cloud.google.com/go/language v1.4.0/go.mod h1:F9dRpNFQmJbkaop6g0JhSBXCNlO90e1KWx5iDdxbWic= cloud.google.com/go/language v1.6.0/go.mod h1:6dJ8t3B+lUYfStgls25GusK04NLh3eDLQnWM3mdEbhI= cloud.google.com/go/language v1.7.0/go.mod h1:DJ6dYN/W+SQOjF8e1hLQXMF21AkH2w9wiPzPCJa2MIE= cloud.google.com/go/language v1.8.0/go.mod h1:qYPVHf7SPoNNiCL2Dr0FfEFNil1qi3pQEyygwpgVKB8= cloud.google.com/go/language v1.9.0/go.mod h1:Ns15WooPM5Ad/5no/0n81yUetis74g3zrbeJBE+ptUY= +cloud.google.com/go/language v1.10.1/go.mod h1:CPp94nsdVNiQEt1CNjF5WkTcisLiHPyIbMhvR8H2AW0= +cloud.google.com/go/language v1.11.0/go.mod h1:uDx+pFDdAKTY8ehpWbiXyQdz8tDSYLJbQcXsCkjYyvQ= +cloud.google.com/go/language v1.11.1/go.mod h1:Xyid9MG9WOX3utvDbpX7j3tXDmmDooMyMDqgUVpH17U= cloud.google.com/go/lifesciences v0.5.0/go.mod h1:3oIKy8ycWGPUyZDR/8RNnTOYevhaMLqh5vLUXs9zvT8= cloud.google.com/go/lifesciences v0.6.0/go.mod h1:ddj6tSX/7BOnhxCSd3ZcETvtNr8NZ6t/iPhY2Tyfu08= cloud.google.com/go/lifesciences v0.8.0/go.mod h1:lFxiEOMqII6XggGbOnKiyZ7IBwoIqA84ClvoezaA/bo= +cloud.google.com/go/lifesciences v0.9.1/go.mod h1:hACAOd1fFbCGLr/+weUKRAJas82Y4vrL3O5326N//Wc= +cloud.google.com/go/lifesciences v0.9.2/go.mod h1:QHEOO4tDzcSAzeJg7s2qwnLM2ji8IRpQl4p6m5Z9yTA= cloud.google.com/go/logging v1.6.1/go.mod h1:5ZO0mHHbvm8gEmeEUHrmDlTDSu5imF6MUP9OfilNXBw= cloud.google.com/go/logging v1.7.0/go.mod h1:3xjP2CjkM3ZkO73aj4ASA5wRPGGCRrPIAeNqVNkzY8M= +cloud.google.com/go/logging v1.8.1/go.mod h1:TJjR+SimHwuC8MZ9cjByQulAMgni+RkXeI3wwctHJEI= cloud.google.com/go/longrunning v0.1.1/go.mod h1:UUFxuDWkv22EuY93jjmDMFT5GPQKeFVJBIF6QlTqdsE= cloud.google.com/go/longrunning v0.3.0/go.mod h1:qth9Y41RRSUE69rDcOn6DdK3HfQfsUI0YSmW3iIlLJc= cloud.google.com/go/longrunning v0.4.1/go.mod h1:4iWDqhBZ70CvZ6BfETbvam3T8FMvLK+eFj0E6AaRQTo= +cloud.google.com/go/longrunning v0.4.2/go.mod h1:OHrnaYyLUV6oqwh0xiS7e5sLQhP1m0QU9R+WhGDMgIQ= +cloud.google.com/go/longrunning v0.5.0/go.mod h1:0JNuqRShmscVAhIACGtskSAWtqtOoPkwP0YF1oVEchc= +cloud.google.com/go/longrunning v0.5.1/go.mod h1:spvimkwdz6SPWKEt/XBij79E9fiTkHSQl/fRUUQJYJc= +cloud.google.com/go/longrunning v0.5.2/go.mod h1:nqo6DQbNV2pXhGDbDMoN2bWz68MjZUzqv2YttZiveCs= cloud.google.com/go/managedidentities v1.3.0/go.mod h1:UzlW3cBOiPrzucO5qWkNkh0w33KFtBJU281hacNvsdE= cloud.google.com/go/managedidentities v1.4.0/go.mod h1:NWSBYbEMgqmbZsLIyKvxrYbtqOsxY1ZrGM+9RgDqInM= cloud.google.com/go/managedidentities v1.5.0/go.mod h1:+dWcZ0JlUmpuxpIDfyP5pP5y0bLdRwOS4Lp7gMni/LA= +cloud.google.com/go/managedidentities v1.6.1/go.mod h1:h/irGhTN2SkZ64F43tfGPMbHnypMbu4RB3yl8YcuEak= +cloud.google.com/go/managedidentities v1.6.2/go.mod h1:5c2VG66eCa0WIq6IylRk3TBW83l161zkFvCj28X7jn8= cloud.google.com/go/maps v0.1.0/go.mod h1:BQM97WGyfw9FWEmQMpZ5T6cpovXXSd1cGmFma94eubI= cloud.google.com/go/maps v0.6.0/go.mod h1:o6DAMMfb+aINHz/p/jbcY+mYeXBoZoxTfdSQ8VAJaCw= +cloud.google.com/go/maps v0.7.0/go.mod h1:3GnvVl3cqeSvgMcpRlQidXsPYuDGQ8naBis7MVzpXsY= +cloud.google.com/go/maps v1.3.0/go.mod h1:6mWTUv+WhnOwAgjVsSW2QPPECmW+s3PcRyOa9vgG/5s= +cloud.google.com/go/maps v1.4.0/go.mod h1:6mWTUv+WhnOwAgjVsSW2QPPECmW+s3PcRyOa9vgG/5s= +cloud.google.com/go/maps v1.4.1/go.mod h1:BxSa0BnW1g2U2gNdbq5zikLlHUuHW0GFWh7sgML2kIY= cloud.google.com/go/mediatranslation v0.5.0/go.mod h1:jGPUhGTybqsPQn91pNXw0xVHfuJ3leR1wj37oU3y1f4= cloud.google.com/go/mediatranslation v0.6.0/go.mod h1:hHdBCTYNigsBxshbznuIMFNe5QXEowAuNmmC7h8pu5w= cloud.google.com/go/mediatranslation v0.7.0/go.mod h1:LCnB/gZr90ONOIQLgSXagp8XUW1ODs2UmUMvcgMfI2I= +cloud.google.com/go/mediatranslation v0.8.1/go.mod h1:L/7hBdEYbYHQJhX2sldtTO5SZZ1C1vkapubj0T2aGig= +cloud.google.com/go/mediatranslation v0.8.2/go.mod h1:c9pUaDRLkgHRx3irYE5ZC8tfXGrMYwNZdmDqKMSfFp8= cloud.google.com/go/memcache v1.4.0/go.mod h1:rTOfiGZtJX1AaFUrOgsMHX5kAzaTQ8azHiuDoTPzNsE= cloud.google.com/go/memcache v1.5.0/go.mod h1:dk3fCK7dVo0cUU2c36jKb4VqKPS22BTkf81Xq617aWM= cloud.google.com/go/memcache v1.6.0/go.mod h1:XS5xB0eQZdHtTuTF9Hf8eJkKtR3pVRCcvJwtm68T3rA= cloud.google.com/go/memcache v1.7.0/go.mod h1:ywMKfjWhNtkQTxrWxCkCFkoPjLHPW6A7WOTVI8xy3LY= cloud.google.com/go/memcache v1.9.0/go.mod h1:8oEyzXCu+zo9RzlEaEjHl4KkgjlNDaXbCQeQWlzNFJM= +cloud.google.com/go/memcache v1.10.1/go.mod h1:47YRQIarv4I3QS5+hoETgKO40InqzLP6kpNLvyXuyaA= +cloud.google.com/go/memcache v1.10.2/go.mod h1:f9ZzJHLBrmd4BkguIAa/l/Vle6uTHzHokdnzSWOdQ6A= cloud.google.com/go/metastore v1.5.0/go.mod h1:2ZNrDcQwghfdtCwJ33nM0+GrBGlVuh8rakL3vdPY3XY= cloud.google.com/go/metastore v1.6.0/go.mod h1:6cyQTls8CWXzk45G55x57DVQ9gWg7RiH65+YgPsNh9s= cloud.google.com/go/metastore v1.7.0/go.mod h1:s45D0B4IlsINu87/AsWiEVYbLaIMeUSoxlKKDqBGFS8= cloud.google.com/go/metastore v1.8.0/go.mod h1:zHiMc4ZUpBiM7twCIFQmJ9JMEkDSyZS9U12uf7wHqSI= cloud.google.com/go/metastore v1.10.0/go.mod h1:fPEnH3g4JJAk+gMRnrAnoqyv2lpUCqJPWOodSaf45Eo= +cloud.google.com/go/metastore v1.11.1/go.mod h1:uZuSo80U3Wd4zi6C22ZZliOUJ3XeM/MlYi/z5OAOWRA= +cloud.google.com/go/metastore v1.12.0/go.mod h1:uZuSo80U3Wd4zi6C22ZZliOUJ3XeM/MlYi/z5OAOWRA= +cloud.google.com/go/metastore v1.13.0/go.mod h1:URDhpG6XLeh5K+Glq0NOt74OfrPKTwS62gEPZzb5SOk= +cloud.google.com/go/metastore v1.13.1/go.mod h1:IbF62JLxuZmhItCppcIfzBBfUFq0DIB9HPDoLgWrVOU= cloud.google.com/go/monitoring v1.7.0/go.mod h1:HpYse6kkGo//7p6sT0wsIC6IBDET0RhIsnmlA53dvEk= cloud.google.com/go/monitoring v1.8.0/go.mod h1:E7PtoMJ1kQXWxPjB6mv2fhC5/15jInuulFdYYtlcvT4= cloud.google.com/go/monitoring v1.12.0/go.mod h1:yx8Jj2fZNEkL/GYZyTLS4ZtZEZN8WtDEiEqG4kLK50w= +cloud.google.com/go/monitoring v1.13.0/go.mod h1:k2yMBAB1H9JT/QETjNkgdCGD9bPF712XiLTVr+cBrpw= +cloud.google.com/go/monitoring v1.15.1/go.mod h1:lADlSAlFdbqQuwwpaImhsJXu1QSdd3ojypXrFSMr2rM= +cloud.google.com/go/monitoring v1.16.0/go.mod h1:Ptp15HgAyM1fNICAojDMoNc/wUmn67mLHQfyqbw+poY= +cloud.google.com/go/monitoring v1.16.1/go.mod h1:6HsxddR+3y9j+o/cMJH6q/KJ/CBTvM/38L/1m7bTRJ4= cloud.google.com/go/networkconnectivity v1.4.0/go.mod h1:nOl7YL8odKyAOtzNX73/M5/mGZgqqMeryi6UPZTk/rA= cloud.google.com/go/networkconnectivity v1.5.0/go.mod h1:3GzqJx7uhtlM3kln0+x5wyFvuVH1pIBJjhCpjzSt75o= cloud.google.com/go/networkconnectivity v1.6.0/go.mod h1:OJOoEXW+0LAxHh89nXd64uGG+FbQoeH8DtxCHVOMlaM= cloud.google.com/go/networkconnectivity v1.7.0/go.mod h1:RMuSbkdbPwNMQjB5HBWD5MpTBnNm39iAVpC3TmsExt8= cloud.google.com/go/networkconnectivity v1.10.0/go.mod h1:UP4O4sWXJG13AqrTdQCD9TnLGEbtNRqjuaaA7bNjF5E= +cloud.google.com/go/networkconnectivity v1.11.0/go.mod h1:iWmDD4QF16VCDLXUqvyspJjIEtBR/4zq5hwnY2X3scM= +cloud.google.com/go/networkconnectivity v1.12.1/go.mod h1:PelxSWYM7Sh9/guf8CFhi6vIqf19Ir/sbfZRUwXh92E= +cloud.google.com/go/networkconnectivity v1.13.0/go.mod h1:SAnGPes88pl7QRLUen2HmcBSE9AowVAcdug8c0RSBFk= +cloud.google.com/go/networkconnectivity v1.14.0/go.mod h1:SAnGPes88pl7QRLUen2HmcBSE9AowVAcdug8c0RSBFk= +cloud.google.com/go/networkconnectivity v1.14.1/go.mod h1:LyGPXR742uQcDxZ/wv4EI0Vu5N6NKJ77ZYVnDe69Zug= cloud.google.com/go/networkmanagement v1.4.0/go.mod h1:Q9mdLLRn60AsOrPc8rs8iNV6OHXaGcDdsIQe1ohekq8= cloud.google.com/go/networkmanagement v1.5.0/go.mod h1:ZnOeZ/evzUdUsnvRt792H0uYEnHQEMaz+REhhzJRcf4= cloud.google.com/go/networkmanagement v1.6.0/go.mod h1:5pKPqyXjB/sgtvB5xqOemumoQNB7y95Q7S+4rjSOPYY= +cloud.google.com/go/networkmanagement v1.8.0/go.mod h1:Ho/BUGmtyEqrttTgWEe7m+8vDdK74ibQc+Be0q7Fof0= +cloud.google.com/go/networkmanagement v1.9.0/go.mod h1:UTUaEU9YwbCAhhz3jEOHr+2/K/MrBk2XxOLS89LQzFw= +cloud.google.com/go/networkmanagement v1.9.1/go.mod h1:CCSYgrQQvW73EJawO2QamemYcOb57LvrDdDU51F0mcI= cloud.google.com/go/networksecurity v0.5.0/go.mod h1:xS6fOCoqpVC5zx15Z/MqkfDwH4+m/61A3ODiDV1xmiQ= cloud.google.com/go/networksecurity v0.6.0/go.mod h1:Q5fjhTr9WMI5mbpRYEbiexTzROf7ZbDzvzCrNl14nyU= cloud.google.com/go/networksecurity v0.7.0/go.mod h1:mAnzoxx/8TBSyXEeESMy9OOYwo1v+gZ5eMRnsT5bC8k= +cloud.google.com/go/networksecurity v0.8.0/go.mod h1:B78DkqsxFG5zRSVuwYFRZ9Xz8IcQ5iECsNrPn74hKHU= +cloud.google.com/go/networksecurity v0.9.1/go.mod h1:MCMdxOKQ30wsBI1eI659f9kEp4wuuAueoC9AJKSPWZQ= +cloud.google.com/go/networksecurity v0.9.2/go.mod h1:jG0SeAttWzPMUILEHDUvFYdQTl8L/E/KC8iZDj85lEI= cloud.google.com/go/notebooks v1.2.0/go.mod h1:9+wtppMfVPUeJ8fIWPOq1UnATHISkGXGqTkxeieQ6UY= cloud.google.com/go/notebooks v1.3.0/go.mod h1:bFR5lj07DtCPC7YAAJ//vHskFBxA5JzYlH68kXVdk34= cloud.google.com/go/notebooks v1.4.0/go.mod h1:4QPMngcwmgb6uw7Po99B2xv5ufVoIQ7nOGDyL4P8AgA= cloud.google.com/go/notebooks v1.5.0/go.mod h1:q8mwhnP9aR8Hpfnrc5iN5IBhrXUy8S2vuYs+kBJ/gu0= cloud.google.com/go/notebooks v1.7.0/go.mod h1:PVlaDGfJgj1fl1S3dUwhFMXFgfYGhYQt2164xOMONmE= +cloud.google.com/go/notebooks v1.8.0/go.mod h1:Lq6dYKOYOWUCTvw5t2q1gp1lAp0zxAxRycayS0iJcqQ= +cloud.google.com/go/notebooks v1.9.1/go.mod h1:zqG9/gk05JrzgBt4ghLzEepPHNwE5jgPcHZRKhlC1A8= +cloud.google.com/go/notebooks v1.10.0/go.mod h1:SOPYMZnttHxqot0SGSFSkRrwE29eqnKPBJFqgWmiK2k= +cloud.google.com/go/notebooks v1.10.1/go.mod h1:5PdJc2SgAybE76kFQCWrTfJolCOUQXF97e+gteUUA6A= cloud.google.com/go/optimization v1.1.0/go.mod h1:5po+wfvX5AQlPznyVEZjGJTMr4+CAkJf2XSTQOOl9l4= cloud.google.com/go/optimization v1.2.0/go.mod h1:Lr7SOHdRDENsh+WXVmQhQTrzdu9ybg0NecjHidBq6xs= cloud.google.com/go/optimization v1.3.1/go.mod h1:IvUSefKiwd1a5p0RgHDbWCIbDFgKuEdB+fPPuP0IDLI= +cloud.google.com/go/optimization v1.4.1/go.mod h1:j64vZQP7h9bO49m2rVaTVoNM0vEBEN5eKPUPbZyXOrk= +cloud.google.com/go/optimization v1.5.0/go.mod h1:evo1OvTxeBRBu6ydPlrIRizKY/LJKo/drDMMRKqGEUU= +cloud.google.com/go/optimization v1.5.1/go.mod h1:NC0gnUD5MWVAF7XLdoYVPmYYVth93Q6BUzqAq3ZwtV8= cloud.google.com/go/orchestration v1.3.0/go.mod h1:Sj5tq/JpWiB//X/q3Ngwdl5K7B7Y0KZ7bfv0wL6fqVA= cloud.google.com/go/orchestration v1.4.0/go.mod h1:6W5NLFWs2TlniBphAViZEVhrXRSMgUGDfW7vrWKvsBk= cloud.google.com/go/orchestration v1.6.0/go.mod h1:M62Bevp7pkxStDfFfTuCOaXgaaqRAga1yKyoMtEoWPQ= +cloud.google.com/go/orchestration v1.8.1/go.mod h1:4sluRF3wgbYVRqz7zJ1/EUNc90TTprliq9477fGobD8= +cloud.google.com/go/orchestration v1.8.2/go.mod h1:T1cP+6WyTmh6LSZzeUhvGf0uZVmJyTx7t8z7Vg87+A0= cloud.google.com/go/orgpolicy v1.4.0/go.mod h1:xrSLIV4RePWmP9P3tBl8S93lTmlAxjm06NSm2UTmKvE= cloud.google.com/go/orgpolicy v1.5.0/go.mod h1:hZEc5q3wzwXJaKrsx5+Ewg0u1LxJ51nNFlext7Tanwc= cloud.google.com/go/orgpolicy v1.10.0/go.mod h1:w1fo8b7rRqlXlIJbVhOMPrwVljyuW5mqssvBtU18ONc= +cloud.google.com/go/orgpolicy v1.11.0/go.mod h1:2RK748+FtVvnfuynxBzdnyu7sygtoZa1za/0ZfpOs1M= +cloud.google.com/go/orgpolicy v1.11.1/go.mod h1:8+E3jQcpZJQliP+zaFfayC2Pg5bmhuLK755wKhIIUCE= +cloud.google.com/go/orgpolicy v1.11.2/go.mod h1:biRDpNwfyytYnmCRWZWxrKF22Nkz9eNVj9zyaBdpm1o= cloud.google.com/go/osconfig v1.7.0/go.mod h1:oVHeCeZELfJP7XLxcBGTMBvRO+1nQ5tFG9VQTmYS2Fs= cloud.google.com/go/osconfig v1.8.0/go.mod h1:EQqZLu5w5XA7eKizepumcvWx+m8mJUhEwiPqWiZeEdg= cloud.google.com/go/osconfig v1.9.0/go.mod h1:Yx+IeIZJ3bdWmzbQU4fxNl8xsZ4amB+dygAwFPlvnNo= cloud.google.com/go/osconfig v1.10.0/go.mod h1:uMhCzqC5I8zfD9zDEAfvgVhDS8oIjySWh+l4WK6GnWw= cloud.google.com/go/osconfig v1.11.0/go.mod h1:aDICxrur2ogRd9zY5ytBLV89KEgT2MKB2L/n6x1ooPw= +cloud.google.com/go/osconfig v1.12.0/go.mod h1:8f/PaYzoS3JMVfdfTubkowZYGmAhUCjjwnjqWI7NVBc= +cloud.google.com/go/osconfig v1.12.1/go.mod h1:4CjBxND0gswz2gfYRCUoUzCm9zCABp91EeTtWXyz0tE= +cloud.google.com/go/osconfig v1.12.2/go.mod h1:eh9GPaMZpI6mEJEuhEjUJmaxvQ3gav+fFEJon1Y8Iw0= cloud.google.com/go/oslogin v1.4.0/go.mod h1:YdgMXWRaElXz/lDk1Na6Fh5orF7gvmJ0FGLIs9LId4E= cloud.google.com/go/oslogin v1.5.0/go.mod h1:D260Qj11W2qx/HVF29zBg+0fd6YCSjSqLUkY/qEenQU= cloud.google.com/go/oslogin v1.6.0/go.mod h1:zOJ1O3+dTU8WPlGEkFSh7qeHPPSoxrcMbbK1Nm2iX70= cloud.google.com/go/oslogin v1.7.0/go.mod h1:e04SN0xO1UNJ1M5GP0vzVBFicIe4O53FOfcixIqTyXo= cloud.google.com/go/oslogin v1.9.0/go.mod h1:HNavntnH8nzrn8JCTT5fj18FuJLFJc4NaZJtBnQtKFs= +cloud.google.com/go/oslogin v1.10.1/go.mod h1:x692z7yAue5nE7CsSnoG0aaMbNoRJRXO4sn73R+ZqAs= +cloud.google.com/go/oslogin v1.11.0/go.mod h1:8GMTJs4X2nOAUVJiPGqIWVcDaF0eniEto3xlOxaboXE= +cloud.google.com/go/oslogin v1.11.1/go.mod h1:OhD2icArCVNUxKqtK0mcSmKL7lgr0LVlQz+v9s1ujTg= cloud.google.com/go/phishingprotection v0.5.0/go.mod h1:Y3HZknsK9bc9dMi+oE8Bim0lczMU6hrX0UpADuMefr0= cloud.google.com/go/phishingprotection v0.6.0/go.mod h1:9Y3LBLgy0kDTcYET8ZH3bq/7qni15yVUoAxiFxnlSUA= cloud.google.com/go/phishingprotection v0.7.0/go.mod h1:8qJI4QKHoda/sb/7/YmMQ2omRLSLYSu9bU0EKCNI+Lk= +cloud.google.com/go/phishingprotection v0.8.1/go.mod h1:AxonW7GovcA8qdEk13NfHq9hNx5KPtfxXNeUxTDxB6I= +cloud.google.com/go/phishingprotection v0.8.2/go.mod h1:LhJ91uyVHEYKSKcMGhOa14zMMWfbEdxG032oT6ECbC8= cloud.google.com/go/policytroubleshooter v1.3.0/go.mod h1:qy0+VwANja+kKrjlQuOzmlvscn4RNsAc0e15GGqfMxg= cloud.google.com/go/policytroubleshooter v1.4.0/go.mod h1:DZT4BcRw3QoO8ota9xw/LKtPa8lKeCByYeKTIf/vxdE= cloud.google.com/go/policytroubleshooter v1.5.0/go.mod h1:Rz1WfV+1oIpPdN2VvvuboLVRsB1Hclg3CKQ53j9l8vw= +cloud.google.com/go/policytroubleshooter v1.6.0/go.mod h1:zYqaPTsmfvpjm5ULxAyD/lINQxJ0DDsnWOP/GZ7xzBc= +cloud.google.com/go/policytroubleshooter v1.7.1/go.mod h1:0NaT5v3Ag1M7U5r0GfDCpUFkWd9YqpubBWsQlhanRv0= +cloud.google.com/go/policytroubleshooter v1.8.0/go.mod h1:tmn5Ir5EToWe384EuboTcVQT7nTag2+DuH3uHmKd1HU= +cloud.google.com/go/policytroubleshooter v1.9.0/go.mod h1:+E2Lga7TycpeSTj2FsH4oXxTnrbHJGRlKhVZBLGgU64= +cloud.google.com/go/policytroubleshooter v1.9.1/go.mod h1:MYI8i0bCrL8cW+VHN1PoiBTyNZTstCg2WUw2eVC4c4U= cloud.google.com/go/privatecatalog v0.5.0/go.mod h1:XgosMUvvPyxDjAVNDYxJ7wBW8//hLDDYmnsNcMGq1K0= cloud.google.com/go/privatecatalog v0.6.0/go.mod h1:i/fbkZR0hLN29eEWiiwue8Pb+GforiEIBnV9yrRUOKI= cloud.google.com/go/privatecatalog v0.7.0/go.mod h1:2s5ssIFO69F5csTXcwBP7NPFTZvps26xGzvQ2PQaBYg= +cloud.google.com/go/privatecatalog v0.8.0/go.mod h1:nQ6pfaegeDAq/Q5lrfCQzQLhubPiZhSaNhIgfJlnIXs= +cloud.google.com/go/privatecatalog v0.9.1/go.mod h1:0XlDXW2unJXdf9zFz968Hp35gl/bhF4twwpXZAW50JA= +cloud.google.com/go/privatecatalog v0.9.2/go.mod h1:RMA4ATa8IXfzvjrhhK8J6H4wwcztab+oZph3c6WmtFc= cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= @@ -369,8 +668,13 @@ cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjp cloud.google.com/go/pubsub v1.26.0/go.mod h1:QgBH3U/jdJy/ftjPhTkyXNj543Tin1pRYcdcPRnFIRI= cloud.google.com/go/pubsub v1.27.1/go.mod h1:hQN39ymbV9geqBnfQq6Xf63yNhUAhv9CZhzp5O6qsW0= cloud.google.com/go/pubsub v1.28.0/go.mod h1:vuXFpwaVoIPQMGXqRyUQigu/AX1S3IWugR9xznmcXX8= +cloud.google.com/go/pubsub v1.30.0/go.mod h1:qWi1OPS0B+b5L+Sg6Gmc9zD1Y+HaM0MdUr7LsupY1P4= +cloud.google.com/go/pubsub v1.32.0/go.mod h1:f+w71I33OMyxf9VpMVcZbnG5KSUkCOUHYpFd5U1GdRc= +cloud.google.com/go/pubsub v1.33.0/go.mod h1:f+w71I33OMyxf9VpMVcZbnG5KSUkCOUHYpFd5U1GdRc= cloud.google.com/go/pubsublite v1.5.0/go.mod h1:xapqNQ1CuLfGi23Yda/9l4bBCKz/wC3KIJ5gKcxveZg= cloud.google.com/go/pubsublite v1.6.0/go.mod h1:1eFCS0U11xlOuMFV/0iBqw3zP12kddMeCbj/F3FSj9k= +cloud.google.com/go/pubsublite v1.7.0/go.mod h1:8hVMwRXfDfvGm3fahVbtDbiLePT3gpoiJYJY+vxWxVM= +cloud.google.com/go/pubsublite v1.8.1/go.mod h1:fOLdU4f5xldK4RGJrBMm+J7zMWNj/k4PxwEZXy39QS0= cloud.google.com/go/recaptchaenterprise v1.3.1/go.mod h1:OdD+q+y4XGeAlxRaMn1Y7/GveP6zmq76byL6tjPE7d4= cloud.google.com/go/recaptchaenterprise/v2 v2.1.0/go.mod h1:w9yVqajwroDNTfGuhmOjPDN//rZGySaf6PtFVcSCa7o= cloud.google.com/go/recaptchaenterprise/v2 v2.2.0/go.mod h1:/Zu5jisWGeERrd5HnlS3EUGb/D335f9k51B/FVil0jk= @@ -378,78 +682,129 @@ cloud.google.com/go/recaptchaenterprise/v2 v2.3.0/go.mod h1:O9LwGCjrhGHBQET5CA7d cloud.google.com/go/recaptchaenterprise/v2 v2.4.0/go.mod h1:Am3LHfOuBstrLrNCBrlI5sbwx9LBg3te2N6hGvHn2mE= cloud.google.com/go/recaptchaenterprise/v2 v2.5.0/go.mod h1:O8LzcHXN3rz0j+LBC91jrwI3R+1ZSZEWrfL7XHgNo9U= cloud.google.com/go/recaptchaenterprise/v2 v2.6.0/go.mod h1:RPauz9jeLtB3JVzg6nCbe12qNoaa8pXc4d/YukAmcnA= +cloud.google.com/go/recaptchaenterprise/v2 v2.7.0/go.mod h1:19wVj/fs5RtYtynAPJdDTb69oW0vNHYDBTbB4NvMD9c= +cloud.google.com/go/recaptchaenterprise/v2 v2.7.2/go.mod h1:kR0KjsJS7Jt1YSyWFkseQ756D45kaYNTlDPPaRAvDBU= +cloud.google.com/go/recaptchaenterprise/v2 v2.8.0/go.mod h1:QuE8EdU9dEnesG8/kG3XuJyNsjEqMlMzg3v3scCJ46c= +cloud.google.com/go/recaptchaenterprise/v2 v2.8.1/go.mod h1:JZYZJOeZjgSSTGP4uz7NlQ4/d1w5hGmksVgM0lbEij0= cloud.google.com/go/recommendationengine v0.5.0/go.mod h1:E5756pJcVFeVgaQv3WNpImkFP8a+RptV6dDLGPILjvg= cloud.google.com/go/recommendationengine v0.6.0/go.mod h1:08mq2umu9oIqc7tDy8sx+MNJdLG0fUi3vaSVbztHgJ4= cloud.google.com/go/recommendationengine v0.7.0/go.mod h1:1reUcE3GIu6MeBz/h5xZJqNLuuVjNg1lmWMPyjatzac= +cloud.google.com/go/recommendationengine v0.8.1/go.mod h1:MrZihWwtFYWDzE6Hz5nKcNz3gLizXVIDI/o3G1DLcrE= +cloud.google.com/go/recommendationengine v0.8.2/go.mod h1:QIybYHPK58qir9CV2ix/re/M//Ty10OxjnnhWdaKS1Y= cloud.google.com/go/recommender v1.5.0/go.mod h1:jdoeiBIVrJe9gQjwd759ecLJbxCDED4A6p+mqoqDvTg= cloud.google.com/go/recommender v1.6.0/go.mod h1:+yETpm25mcoiECKh9DEScGzIRyDKpZ0cEhWGo+8bo+c= cloud.google.com/go/recommender v1.7.0/go.mod h1:XLHs/W+T8olwlGOgfQenXBTbIseGclClff6lhFVe9Bs= cloud.google.com/go/recommender v1.8.0/go.mod h1:PkjXrTT05BFKwxaUxQmtIlrtj0kph108r02ZZQ5FE70= cloud.google.com/go/recommender v1.9.0/go.mod h1:PnSsnZY7q+VL1uax2JWkt/UegHssxjUVVCrX52CuEmQ= +cloud.google.com/go/recommender v1.10.1/go.mod h1:XFvrE4Suqn5Cq0Lf+mCP6oBHD/yRMA8XxP5sb7Q7gpA= +cloud.google.com/go/recommender v1.11.0/go.mod h1:kPiRQhPyTJ9kyXPCG6u/dlPLbYfFlkwHNRwdzPVAoII= +cloud.google.com/go/recommender v1.11.1/go.mod h1:sGwFFAyI57v2Hc5LbIj+lTwXipGu9NW015rkaEM5B18= cloud.google.com/go/redis v1.7.0/go.mod h1:V3x5Jq1jzUcg+UNsRvdmsfuFnit1cfe3Z/PGyq/lm4Y= cloud.google.com/go/redis v1.8.0/go.mod h1:Fm2szCDavWzBk2cDKxrkmWBqoCiL1+Ctwq7EyqBCA/A= cloud.google.com/go/redis v1.9.0/go.mod h1:HMYQuajvb2D0LvMgZmLDZW8V5aOC/WxstZHiy4g8OiA= cloud.google.com/go/redis v1.10.0/go.mod h1:ThJf3mMBQtW18JzGgh41/Wld6vnDDc/F/F35UolRZPM= cloud.google.com/go/redis v1.11.0/go.mod h1:/X6eicana+BWcUda5PpwZC48o37SiFVTFSs0fWAJ7uQ= +cloud.google.com/go/redis v1.13.1/go.mod h1:VP7DGLpE91M6bcsDdMuyCm2hIpB6Vp2hI090Mfd1tcg= +cloud.google.com/go/redis v1.13.2/go.mod h1:0Hg7pCMXS9uz02q+LoEVl5dNHUkIQv+C/3L76fandSA= cloud.google.com/go/resourcemanager v1.3.0/go.mod h1:bAtrTjZQFJkiWTPDb1WBjzvc6/kifjj4QBYuKCCoqKA= cloud.google.com/go/resourcemanager v1.4.0/go.mod h1:MwxuzkumyTX7/a3n37gmsT3py7LIXwrShilPh3P1tR0= cloud.google.com/go/resourcemanager v1.5.0/go.mod h1:eQoXNAiAvCf5PXxWxXjhKQoTMaUSNrEfg+6qdf/wots= +cloud.google.com/go/resourcemanager v1.6.0/go.mod h1:YcpXGRs8fDzcUl1Xw8uOVmI8JEadvhRIkoXXUNVYcVo= +cloud.google.com/go/resourcemanager v1.7.0/go.mod h1:HlD3m6+bwhzj9XCouqmeiGuni95NTrExfhoSrkC/3EI= +cloud.google.com/go/resourcemanager v1.9.1/go.mod h1:dVCuosgrh1tINZ/RwBufr8lULmWGOkPS8gL5gqyjdT8= +cloud.google.com/go/resourcemanager v1.9.2/go.mod h1:OujkBg1UZg5lX2yIyMo5Vz9O5hf7XQOSV7WxqxxMtQE= cloud.google.com/go/resourcesettings v1.3.0/go.mod h1:lzew8VfESA5DQ8gdlHwMrqZs1S9V87v3oCnKCWoOuQU= cloud.google.com/go/resourcesettings v1.4.0/go.mod h1:ldiH9IJpcrlC3VSuCGvjR5of/ezRrOxFtpJoJo5SmXg= cloud.google.com/go/resourcesettings v1.5.0/go.mod h1:+xJF7QSG6undsQDfsCJyqWXyBwUoJLhetkRMDRnIoXA= +cloud.google.com/go/resourcesettings v1.6.1/go.mod h1:M7mk9PIZrC5Fgsu1kZJci6mpgN8o0IUzVx3eJU3y4Jw= +cloud.google.com/go/resourcesettings v1.6.2/go.mod h1:mJIEDd9MobzunWMeniaMp6tzg4I2GvD3TTmPkc8vBXk= cloud.google.com/go/retail v1.8.0/go.mod h1:QblKS8waDmNUhghY2TI9O3JLlFk8jybHeV4BF19FrE4= cloud.google.com/go/retail v1.9.0/go.mod h1:g6jb6mKuCS1QKnH/dpu7isX253absFl6iE92nHwlBUY= cloud.google.com/go/retail v1.10.0/go.mod h1:2gDk9HsL4HMS4oZwz6daui2/jmKvqShXKQuB2RZ+cCc= cloud.google.com/go/retail v1.11.0/go.mod h1:MBLk1NaWPmh6iVFSz9MeKG/Psyd7TAgm6y/9L2B4x9Y= cloud.google.com/go/retail v1.12.0/go.mod h1:UMkelN/0Z8XvKymXFbD4EhFJlYKRx1FGhQkVPU5kF14= +cloud.google.com/go/retail v1.14.1/go.mod h1:y3Wv3Vr2k54dLNIrCzenyKG8g8dhvhncT2NcNjb/6gE= +cloud.google.com/go/retail v1.14.2/go.mod h1:W7rrNRChAEChX336QF7bnMxbsjugcOCPU44i5kbLiL8= cloud.google.com/go/run v0.2.0/go.mod h1:CNtKsTA1sDcnqqIFR3Pb5Tq0usWxJJvsWOCPldRU3Do= cloud.google.com/go/run v0.3.0/go.mod h1:TuyY1+taHxTjrD0ZFk2iAR+xyOXEA0ztb7U3UNA0zBo= cloud.google.com/go/run v0.8.0/go.mod h1:VniEnuBwqjigv0A7ONfQUaEItaiCRVujlMqerPPiktM= +cloud.google.com/go/run v0.9.0/go.mod h1:Wwu+/vvg8Y+JUApMwEDfVfhetv30hCG4ZwDR/IXl2Qg= +cloud.google.com/go/run v1.2.0/go.mod h1:36V1IlDzQ0XxbQjUx6IYbw8H3TJnWvhii963WW3B/bo= +cloud.google.com/go/run v1.3.0/go.mod h1:S/osX/4jIPZGg+ssuqh6GNgg7syixKe3YnprwehzHKU= +cloud.google.com/go/run v1.3.1/go.mod h1:cymddtZOzdwLIAsmS6s+Asl4JoXIDm/K1cpZTxV4Q5s= cloud.google.com/go/scheduler v1.4.0/go.mod h1:drcJBmxF3aqZJRhmkHQ9b3uSSpQoltBPGPxGAWROx6s= cloud.google.com/go/scheduler v1.5.0/go.mod h1:ri073ym49NW3AfT6DZi21vLZrG07GXr5p3H1KxN5QlI= cloud.google.com/go/scheduler v1.6.0/go.mod h1:SgeKVM7MIwPn3BqtcBntpLyrIJftQISRrYB5ZtT+KOk= cloud.google.com/go/scheduler v1.7.0/go.mod h1:jyCiBqWW956uBjjPMMuX09n3x37mtyPJegEWKxRsn44= cloud.google.com/go/scheduler v1.8.0/go.mod h1:TCET+Y5Gp1YgHT8py4nlg2Sew8nUHMqcpousDgXJVQc= +cloud.google.com/go/scheduler v1.9.0/go.mod h1:yexg5t+KSmqu+njTIh3b7oYPheFtBWGcbVUYF1GGMIc= +cloud.google.com/go/scheduler v1.10.1/go.mod h1:R63Ldltd47Bs4gnhQkmNDse5w8gBRrhObZ54PxgR2Oo= +cloud.google.com/go/scheduler v1.10.2/go.mod h1:O3jX6HRH5eKCA3FutMw375XHZJudNIKVonSCHv7ropY= cloud.google.com/go/secretmanager v1.6.0/go.mod h1:awVa/OXF6IiyaU1wQ34inzQNc4ISIDIrId8qE5QGgKA= cloud.google.com/go/secretmanager v1.8.0/go.mod h1:hnVgi/bN5MYHd3Gt0SPuTPPp5ENina1/LxM+2W9U9J4= cloud.google.com/go/secretmanager v1.9.0/go.mod h1:b71qH2l1yHmWQHt9LC80akm86mX8AL6X1MA01dW8ht4= cloud.google.com/go/secretmanager v1.10.0/go.mod h1:MfnrdvKMPNra9aZtQFvBcvRU54hbPD8/HayQdlUgJpU= +cloud.google.com/go/secretmanager v1.11.1/go.mod h1:znq9JlXgTNdBeQk9TBW/FnR/W4uChEKGeqQWAJ8SXFw= +cloud.google.com/go/secretmanager v1.11.2/go.mod h1:MQm4t3deoSub7+WNwiC4/tRYgDBHJgJPvswqQVB1Vss= cloud.google.com/go/security v1.5.0/go.mod h1:lgxGdyOKKjHL4YG3/YwIL2zLqMFCKs0UbQwgyZmfJl4= cloud.google.com/go/security v1.7.0/go.mod h1:mZklORHl6Bg7CNnnjLH//0UlAlaXqiG7Lb9PsPXLfD0= cloud.google.com/go/security v1.8.0/go.mod h1:hAQOwgmaHhztFhiQ41CjDODdWP0+AE1B3sX4OFlq+GU= cloud.google.com/go/security v1.9.0/go.mod h1:6Ta1bO8LXI89nZnmnsZGp9lVoVWXqsVbIq/t9dzI+2Q= cloud.google.com/go/security v1.10.0/go.mod h1:QtOMZByJVlibUT2h9afNDWRZ1G96gVywH8T5GUSb9IA= cloud.google.com/go/security v1.12.0/go.mod h1:rV6EhrpbNHrrxqlvW0BWAIawFWq3X90SduMJdFwtLB8= +cloud.google.com/go/security v1.13.0/go.mod h1:Q1Nvxl1PAgmeW0y3HTt54JYIvUdtcpYKVfIB8AOMZ+0= +cloud.google.com/go/security v1.15.1/go.mod h1:MvTnnbsWnehoizHi09zoiZob0iCHVcL4AUBj76h9fXA= +cloud.google.com/go/security v1.15.2/go.mod h1:2GVE/v1oixIRHDaClVbHuPcZwAqFM28mXuAKCfMgYIg= cloud.google.com/go/securitycenter v1.13.0/go.mod h1:cv5qNAqjY84FCN6Y9z28WlkKXyWsgLO832YiWwkCWcU= cloud.google.com/go/securitycenter v1.14.0/go.mod h1:gZLAhtyKv85n52XYWt6RmeBdydyxfPeTrpToDPw4Auc= cloud.google.com/go/securitycenter v1.15.0/go.mod h1:PeKJ0t8MoFmmXLXWm41JidyzI3PJjd8sXWaVqg43WWk= cloud.google.com/go/securitycenter v1.16.0/go.mod h1:Q9GMaLQFUD+5ZTabrbujNWLtSLZIZF7SAR0wWECrjdk= cloud.google.com/go/securitycenter v1.18.1/go.mod h1:0/25gAzCM/9OL9vVx4ChPeM/+DlfGQJDwBy/UC8AKK0= +cloud.google.com/go/securitycenter v1.19.0/go.mod h1:LVLmSg8ZkkyaNy4u7HCIshAngSQ8EcIRREP3xBnyfag= +cloud.google.com/go/securitycenter v1.23.0/go.mod h1:8pwQ4n+Y9WCWM278R8W3nF65QtY172h4S8aXyI9/hsQ= +cloud.google.com/go/securitycenter v1.23.1/go.mod h1:w2HV3Mv/yKhbXKwOCu2i8bCuLtNP1IMHuiYQn4HJq5s= cloud.google.com/go/servicecontrol v1.4.0/go.mod h1:o0hUSJ1TXJAmi/7fLJAedOovnujSEvjKCAFNXPQ1RaU= cloud.google.com/go/servicecontrol v1.5.0/go.mod h1:qM0CnXHhyqKVuiZnGKrIurvVImCs8gmqWsDoqe9sU1s= cloud.google.com/go/servicecontrol v1.10.0/go.mod h1:pQvyvSRh7YzUF2efw7H87V92mxU8FnFDawMClGCNuAA= cloud.google.com/go/servicecontrol v1.11.0/go.mod h1:kFmTzYzTUIuZs0ycVqRHNaNhgR+UMUpw9n02l/pY+mc= +cloud.google.com/go/servicecontrol v1.11.1/go.mod h1:aSnNNlwEFBY+PWGQ2DoM0JJ/QUXqV5/ZD9DOLB7SnUk= cloud.google.com/go/servicedirectory v1.4.0/go.mod h1:gH1MUaZCgtP7qQiI+F+A+OpeKF/HQWgtAddhTbhL2bs= cloud.google.com/go/servicedirectory v1.5.0/go.mod h1:QMKFL0NUySbpZJ1UZs3oFAmdvVxhhxB6eJ/Vlp73dfg= cloud.google.com/go/servicedirectory v1.6.0/go.mod h1:pUlbnWsLH9c13yGkxCmfumWEPjsRs1RlmJ4pqiNjVL4= cloud.google.com/go/servicedirectory v1.7.0/go.mod h1:5p/U5oyvgYGYejufvxhgwjL8UVXjkuw7q5XcG10wx1U= cloud.google.com/go/servicedirectory v1.8.0/go.mod h1:srXodfhY1GFIPvltunswqXpVxFPpZjf8nkKQT7XcXaY= +cloud.google.com/go/servicedirectory v1.9.0/go.mod h1:29je5JjiygNYlmsGz8k6o+OZ8vd4f//bQLtvzkPPT/s= +cloud.google.com/go/servicedirectory v1.10.1/go.mod h1:Xv0YVH8s4pVOwfM/1eMTl0XJ6bzIOSLDt8f8eLaGOxQ= +cloud.google.com/go/servicedirectory v1.11.0/go.mod h1:Xv0YVH8s4pVOwfM/1eMTl0XJ6bzIOSLDt8f8eLaGOxQ= +cloud.google.com/go/servicedirectory v1.11.1/go.mod h1:tJywXimEWzNzw9FvtNjsQxxJ3/41jseeILgwU/QLrGI= cloud.google.com/go/servicemanagement v1.4.0/go.mod h1:d8t8MDbezI7Z2R1O/wu8oTggo3BI2GKYbdG4y/SJTco= cloud.google.com/go/servicemanagement v1.5.0/go.mod h1:XGaCRe57kfqu4+lRxaFEAuqmjzF0r+gWHjWqKqBvKFo= cloud.google.com/go/servicemanagement v1.6.0/go.mod h1:aWns7EeeCOtGEX4OvZUWCCJONRZeFKiptqKf1D0l/Jc= +cloud.google.com/go/servicemanagement v1.8.0/go.mod h1:MSS2TDlIEQD/fzsSGfCdJItQveu9NXnUniTrq/L8LK4= cloud.google.com/go/serviceusage v1.3.0/go.mod h1:Hya1cozXM4SeSKTAgGXgj97GlqUvF5JaoXacR1JTP/E= cloud.google.com/go/serviceusage v1.4.0/go.mod h1:SB4yxXSaYVuUBYUml6qklyONXNLt83U0Rb+CXyhjEeU= cloud.google.com/go/serviceusage v1.5.0/go.mod h1:w8U1JvqUqwJNPEOTQjrMHkw3IaIFLoLsPLvsE3xueec= +cloud.google.com/go/serviceusage v1.6.0/go.mod h1:R5wwQcbOWsyuOfbP9tGdAnCAc6B9DRwPG1xtWMDeuPA= cloud.google.com/go/shell v1.3.0/go.mod h1:VZ9HmRjZBsjLGXusm7K5Q5lzzByZmJHf1d0IWHEN5X4= cloud.google.com/go/shell v1.4.0/go.mod h1:HDxPzZf3GkDdhExzD/gs8Grqk+dmYcEjGShZgYa9URw= cloud.google.com/go/shell v1.6.0/go.mod h1:oHO8QACS90luWgxP3N9iZVuEiSF84zNyLytb+qE2f9A= +cloud.google.com/go/shell v1.7.1/go.mod h1:u1RaM+huXFaTojTbW4g9P5emOrrmLE69KrxqQahKn4g= +cloud.google.com/go/shell v1.7.2/go.mod h1:KqRPKwBV0UyLickMn0+BY1qIyE98kKyI216sH/TuHmc= cloud.google.com/go/spanner v1.41.0/go.mod h1:MLYDBJR/dY4Wt7ZaMIQ7rXOTLjYrmxLE/5ve9vFfWos= cloud.google.com/go/spanner v1.44.0/go.mod h1:G8XIgYdOK+Fbcpbs7p2fiprDw4CaZX63whnSMLVBxjk= +cloud.google.com/go/spanner v1.45.0/go.mod h1:FIws5LowYz8YAE1J8fOS7DJup8ff7xJeetWEo5REA2M= +cloud.google.com/go/spanner v1.47.0/go.mod h1:IXsJwVW2j4UKs0eYDqodab6HgGuA1bViSqW4uH9lfUI= +cloud.google.com/go/spanner v1.49.0/go.mod h1:eGj9mQGK8+hkgSVbHNQ06pQ4oS+cyc4tXXd6Dif1KoM= +cloud.google.com/go/spanner v1.50.0/go.mod h1:eGj9mQGK8+hkgSVbHNQ06pQ4oS+cyc4tXXd6Dif1KoM= cloud.google.com/go/speech v1.6.0/go.mod h1:79tcr4FHCimOp56lwC01xnt/WPJZc4v3gzyT7FoBkCM= cloud.google.com/go/speech v1.7.0/go.mod h1:KptqL+BAQIhMsj1kOP2la5DSEEerPDuOP/2mmkhHhZQ= cloud.google.com/go/speech v1.8.0/go.mod h1:9bYIl1/tjsAnMgKGHKmBZzXKEkGgtU+MpdDPTE9f7y0= cloud.google.com/go/speech v1.9.0/go.mod h1:xQ0jTcmnRFFM2RfX/U+rk6FQNUF6DQlydUSyoooSpco= cloud.google.com/go/speech v1.14.1/go.mod h1:gEosVRPJ9waG7zqqnsHpYTOoAS4KouMRLDFMekpJ0J0= +cloud.google.com/go/speech v1.15.0/go.mod h1:y6oH7GhqCaZANH7+Oe0BhgIogsNInLlz542tg3VqeYI= +cloud.google.com/go/speech v1.17.1/go.mod h1:8rVNzU43tQvxDaGvqOhpDqgkJTFowBpDvCJ14kGlJYo= +cloud.google.com/go/speech v1.19.0/go.mod h1:8rVNzU43tQvxDaGvqOhpDqgkJTFowBpDvCJ14kGlJYo= +cloud.google.com/go/speech v1.19.1/go.mod h1:WcuaWz/3hOlzPFOVo9DUsblMIHwxP589y6ZMtaG+iAA= cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= @@ -460,68 +815,130 @@ cloud.google.com/go/storage v1.22.1/go.mod h1:S8N1cAStu7BOeFfE8KAQzmyyLkK8p/vmRq cloud.google.com/go/storage v1.23.0/go.mod h1:vOEEDNFnciUMhBeT6hsJIn3ieU5cFRmzeLgDvXzfIXc= cloud.google.com/go/storage v1.27.0/go.mod h1:x9DOL8TK/ygDUMieqwfhdpQryTeEkhGKMi80i/iqR2s= cloud.google.com/go/storage v1.28.1/go.mod h1:Qnisd4CqDdo6BGs2AD5LLnEsmSQ80wQ5ogcBBKhU86Y= +cloud.google.com/go/storage v1.29.0/go.mod h1:4puEjyTKnku6gfKoTfNOU/W+a9JyuVNxjpS5GBrB8h4= +cloud.google.com/go/storage v1.30.1/go.mod h1:NfxhC0UJE1aXSx7CIIbCf7y9HKT7BiccwkR7+P7gN8E= cloud.google.com/go/storagetransfer v1.5.0/go.mod h1:dxNzUopWy7RQevYFHewchb29POFv3/AaBgnhqzqiK0w= cloud.google.com/go/storagetransfer v1.6.0/go.mod h1:y77xm4CQV/ZhFZH75PLEXY0ROiS7Gh6pSKrM8dJyg6I= cloud.google.com/go/storagetransfer v1.7.0/go.mod h1:8Giuj1QNb1kfLAiWM1bN6dHzfdlDAVC9rv9abHot2W4= +cloud.google.com/go/storagetransfer v1.8.0/go.mod h1:JpegsHHU1eXg7lMHkvf+KE5XDJ7EQu0GwNJbbVGanEw= +cloud.google.com/go/storagetransfer v1.10.0/go.mod h1:DM4sTlSmGiNczmV6iZyceIh2dbs+7z2Ayg6YAiQlYfA= +cloud.google.com/go/storagetransfer v1.10.1/go.mod h1:rS7Sy0BtPviWYTTJVWCSV4QrbBitgPeuK4/FKa4IdLs= cloud.google.com/go/talent v1.1.0/go.mod h1:Vl4pt9jiHKvOgF9KoZo6Kob9oV4lwd/ZD5Cto54zDRw= cloud.google.com/go/talent v1.2.0/go.mod h1:MoNF9bhFQbiJ6eFD3uSsg0uBALw4n4gaCaEjBw9zo8g= cloud.google.com/go/talent v1.3.0/go.mod h1:CmcxwJ/PKfRgd1pBjQgU6W3YBwiewmUzQYH5HHmSCmM= cloud.google.com/go/talent v1.4.0/go.mod h1:ezFtAgVuRf8jRsvyE6EwmbTK5LKciD4KVnHuDEFmOOA= cloud.google.com/go/talent v1.5.0/go.mod h1:G+ODMj9bsasAEJkQSzO2uHQWXHHXUomArjWQQYkqK6c= +cloud.google.com/go/talent v1.6.2/go.mod h1:CbGvmKCG61mkdjcqTcLOkb2ZN1SrQI8MDyma2l7VD24= +cloud.google.com/go/talent v1.6.3/go.mod h1:xoDO97Qd4AK43rGjJvyBHMskiEf3KulgYzcH6YWOVoo= cloud.google.com/go/texttospeech v1.4.0/go.mod h1:FX8HQHA6sEpJ7rCMSfXuzBcysDAuWusNNNvN9FELDd8= cloud.google.com/go/texttospeech v1.5.0/go.mod h1:oKPLhR4n4ZdQqWKURdwxMy0uiTS1xU161C8W57Wkea4= cloud.google.com/go/texttospeech v1.6.0/go.mod h1:YmwmFT8pj1aBblQOI3TfKmwibnsfvhIBzPXcW4EBovc= +cloud.google.com/go/texttospeech v1.7.1/go.mod h1:m7QfG5IXxeneGqTapXNxv2ItxP/FS0hCZBwXYqucgSk= +cloud.google.com/go/texttospeech v1.7.2/go.mod h1:VYPT6aTOEl3herQjFHYErTlSZJ4vB00Q2ZTmuVgluD4= cloud.google.com/go/tpu v1.3.0/go.mod h1:aJIManG0o20tfDQlRIej44FcwGGl/cD0oiRyMKG19IQ= cloud.google.com/go/tpu v1.4.0/go.mod h1:mjZaX8p0VBgllCzF6wcU2ovUXN9TONFLd7iz227X2Xg= cloud.google.com/go/tpu v1.5.0/go.mod h1:8zVo1rYDFuW2l4yZVY0R0fb/v44xLh3llq7RuV61fPM= +cloud.google.com/go/tpu v1.6.1/go.mod h1:sOdcHVIgDEEOKuqUoi6Fq53MKHJAtOwtz0GuKsWSH3E= +cloud.google.com/go/tpu v1.6.2/go.mod h1:NXh3NDwt71TsPZdtGWgAG5ThDfGd32X1mJ2cMaRlVgU= cloud.google.com/go/trace v1.3.0/go.mod h1:FFUE83d9Ca57C+K8rDl/Ih8LwOzWIV1krKgxg6N0G28= cloud.google.com/go/trace v1.4.0/go.mod h1:UG0v8UBqzusp+z63o7FK74SdFE+AXpCLdFb1rshXG+Y= cloud.google.com/go/trace v1.8.0/go.mod h1:zH7vcsbAhklH8hWFig58HvxcxyQbaIqMarMg9hn5ECA= +cloud.google.com/go/trace v1.9.0/go.mod h1:lOQqpE5IaWY0Ixg7/r2SjixMuc6lfTFeO4QGM4dQWOk= +cloud.google.com/go/trace v1.10.1/go.mod h1:gbtL94KE5AJLH3y+WVpfWILmqgc6dXcqgNXdOPAQTYk= +cloud.google.com/go/trace v1.10.2/go.mod h1:NPXemMi6MToRFcSxRl2uDnu/qAlAQ3oULUphcHGh1vA= cloud.google.com/go/translate v1.3.0/go.mod h1:gzMUwRjvOqj5i69y/LYLd8RrNQk+hOmIXTi9+nb3Djs= cloud.google.com/go/translate v1.4.0/go.mod h1:06Dn/ppvLD6WvA5Rhdp029IX2Mi3Mn7fpMRLPvXT5Wg= cloud.google.com/go/translate v1.5.0/go.mod h1:29YDSYveqqpA1CQFD7NQuP49xymq17RXNaUDdc0mNu0= cloud.google.com/go/translate v1.6.0/go.mod h1:lMGRudH1pu7I3n3PETiOB2507gf3HnfLV8qlkHZEyos= +cloud.google.com/go/translate v1.7.0/go.mod h1:lMGRudH1pu7I3n3PETiOB2507gf3HnfLV8qlkHZEyos= +cloud.google.com/go/translate v1.8.1/go.mod h1:d1ZH5aaOA0CNhWeXeC8ujd4tdCFw8XoNWRljklu5RHs= +cloud.google.com/go/translate v1.8.2/go.mod h1:d1ZH5aaOA0CNhWeXeC8ujd4tdCFw8XoNWRljklu5RHs= +cloud.google.com/go/translate v1.9.0/go.mod h1:d1ZH5aaOA0CNhWeXeC8ujd4tdCFw8XoNWRljklu5RHs= +cloud.google.com/go/translate v1.9.1/go.mod h1:TWIgDZknq2+JD4iRcojgeDtqGEp154HN/uL6hMvylS8= cloud.google.com/go/video v1.8.0/go.mod h1:sTzKFc0bUSByE8Yoh8X0mn8bMymItVGPfTuUBUyRgxk= cloud.google.com/go/video v1.9.0/go.mod h1:0RhNKFRF5v92f8dQt0yhaHrEuH95m068JYOvLZYnJSw= cloud.google.com/go/video v1.12.0/go.mod h1:MLQew95eTuaNDEGriQdcYn0dTwf9oWiA4uYebxM5kdg= cloud.google.com/go/video v1.13.0/go.mod h1:ulzkYlYgCp15N2AokzKjy7MQ9ejuynOJdf1tR5lGthk= +cloud.google.com/go/video v1.14.0/go.mod h1:SkgaXwT+lIIAKqWAJfktHT/RbgjSuY6DobxEp0C5yTQ= +cloud.google.com/go/video v1.15.0/go.mod h1:SkgaXwT+lIIAKqWAJfktHT/RbgjSuY6DobxEp0C5yTQ= +cloud.google.com/go/video v1.17.1/go.mod h1:9qmqPqw/Ib2tLqaeHgtakU+l5TcJxCJbhFXM7UJjVzU= +cloud.google.com/go/video v1.19.0/go.mod h1:9qmqPqw/Ib2tLqaeHgtakU+l5TcJxCJbhFXM7UJjVzU= +cloud.google.com/go/video v1.20.0/go.mod h1:U3G3FTnsvAGqglq9LxgqzOiBc/Nt8zis8S+850N2DUM= +cloud.google.com/go/video v1.20.1/go.mod h1:3gJS+iDprnj8SY6pe0SwLeC5BUW80NjhwX7INWEuWGU= cloud.google.com/go/videointelligence v1.6.0/go.mod h1:w0DIDlVRKtwPCn/C4iwZIJdvC69yInhW0cfi+p546uU= cloud.google.com/go/videointelligence v1.7.0/go.mod h1:k8pI/1wAhjznARtVT9U1llUaFNPh7muw8QyOUpavru4= cloud.google.com/go/videointelligence v1.8.0/go.mod h1:dIcCn4gVDdS7yte/w+koiXn5dWVplOZkE+xwG9FgK+M= cloud.google.com/go/videointelligence v1.9.0/go.mod h1:29lVRMPDYHikk3v8EdPSaL8Ku+eMzDljjuvRs105XoU= cloud.google.com/go/videointelligence v1.10.0/go.mod h1:LHZngX1liVtUhZvi2uNS0VQuOzNi2TkY1OakiuoUOjU= +cloud.google.com/go/videointelligence v1.11.1/go.mod h1:76xn/8InyQHarjTWsBR058SmlPCwQjgcvoW0aZykOvo= +cloud.google.com/go/videointelligence v1.11.2/go.mod h1:ocfIGYtIVmIcWk1DsSGOoDiXca4vaZQII1C85qtoplc= cloud.google.com/go/vision v1.2.0/go.mod h1:SmNwgObm5DpFBme2xpyOyasvBc1aPdjvMk2bBk0tKD0= cloud.google.com/go/vision/v2 v2.2.0/go.mod h1:uCdV4PpN1S0jyCyq8sIM42v2Y6zOLkZs+4R9LrGYwFo= cloud.google.com/go/vision/v2 v2.3.0/go.mod h1:UO61abBx9QRMFkNBbf1D8B1LXdS2cGiiCRx0vSpZoUo= cloud.google.com/go/vision/v2 v2.4.0/go.mod h1:VtI579ll9RpVTrdKdkMzckdnwMyX2JILb+MhPqRbPsY= cloud.google.com/go/vision/v2 v2.5.0/go.mod h1:MmaezXOOE+IWa+cS7OhRRLK2cNv1ZL98zhqFFZaaH2E= cloud.google.com/go/vision/v2 v2.6.0/go.mod h1:158Hes0MvOS9Z/bDMSFpjwsUrZ5fPrdwuyyvKSGAGMY= +cloud.google.com/go/vision/v2 v2.7.0/go.mod h1:H89VysHy21avemp6xcf9b9JvZHVehWbET0uT/bcuY/0= +cloud.google.com/go/vision/v2 v2.7.2/go.mod h1:jKa8oSYBWhYiXarHPvP4USxYANYUEdEsQrloLjrSwJU= +cloud.google.com/go/vision/v2 v2.7.3/go.mod h1:V0IcLCY7W+hpMKXK1JYE0LV5llEqVmj+UJChjvA1WsM= cloud.google.com/go/vmmigration v1.2.0/go.mod h1:IRf0o7myyWFSmVR1ItrBSFLFD/rJkfDCUTO4vLlJvsE= cloud.google.com/go/vmmigration v1.3.0/go.mod h1:oGJ6ZgGPQOFdjHuocGcLqX4lc98YQ7Ygq8YQwHh9A7g= cloud.google.com/go/vmmigration v1.5.0/go.mod h1:E4YQ8q7/4W9gobHjQg4JJSgXXSgY21nA5r8swQV+Xxc= +cloud.google.com/go/vmmigration v1.6.0/go.mod h1:bopQ/g4z+8qXzichC7GW1w2MjbErL54rk3/C843CjfY= +cloud.google.com/go/vmmigration v1.7.1/go.mod h1:WD+5z7a/IpZ5bKK//YmT9E047AD+rjycCAvyMxGJbro= +cloud.google.com/go/vmmigration v1.7.2/go.mod h1:iA2hVj22sm2LLYXGPT1pB63mXHhrH1m/ruux9TwWLd8= cloud.google.com/go/vmwareengine v0.1.0/go.mod h1:RsdNEf/8UDvKllXhMz5J40XxDrNJNN4sagiox+OI208= cloud.google.com/go/vmwareengine v0.2.2/go.mod h1:sKdctNJxb3KLZkE/6Oui94iw/xs9PRNC2wnNLXsHvH8= +cloud.google.com/go/vmwareengine v0.3.0/go.mod h1:wvoyMvNWdIzxMYSpH/R7y2h5h3WFkx6d+1TIsP39WGY= +cloud.google.com/go/vmwareengine v0.4.1/go.mod h1:Px64x+BvjPZwWuc4HdmVhoygcXqEkGHXoa7uyfTgSI0= +cloud.google.com/go/vmwareengine v1.0.0/go.mod h1:Px64x+BvjPZwWuc4HdmVhoygcXqEkGHXoa7uyfTgSI0= +cloud.google.com/go/vmwareengine v1.0.1/go.mod h1:aT3Xsm5sNx0QShk1Jc1B8OddrxAScYLwzVoaiXfdzzk= cloud.google.com/go/vpcaccess v1.4.0/go.mod h1:aQHVbTWDYUR1EbTApSVvMq1EnT57ppDmQzZ3imqIk4w= cloud.google.com/go/vpcaccess v1.5.0/go.mod h1:drmg4HLk9NkZpGfCmZ3Tz0Bwnm2+DKqViEpeEpOq0m8= cloud.google.com/go/vpcaccess v1.6.0/go.mod h1:wX2ILaNhe7TlVa4vC5xce1bCnqE3AeH27RV31lnmZes= +cloud.google.com/go/vpcaccess v1.7.1/go.mod h1:FogoD46/ZU+JUBX9D606X21EnxiszYi2tArQwLY4SXs= +cloud.google.com/go/vpcaccess v1.7.2/go.mod h1:mmg/MnRHv+3e8FJUjeSibVFvQF1cCy2MsFaFqxeY1HU= cloud.google.com/go/webrisk v1.4.0/go.mod h1:Hn8X6Zr+ziE2aNd8SliSDWpEnSS1u4R9+xXZmFiHmGE= cloud.google.com/go/webrisk v1.5.0/go.mod h1:iPG6fr52Tv7sGk0H6qUFzmL3HHZev1htXuWDEEsqMTg= cloud.google.com/go/webrisk v1.6.0/go.mod h1:65sW9V9rOosnc9ZY7A7jsy1zoHS5W9IAXv6dGqhMQMc= cloud.google.com/go/webrisk v1.7.0/go.mod h1:mVMHgEYH0r337nmt1JyLthzMr6YxwN1aAIEc2fTcq7A= cloud.google.com/go/webrisk v1.8.0/go.mod h1:oJPDuamzHXgUc+b8SiHRcVInZQuybnvEW72PqTc7sSg= +cloud.google.com/go/webrisk v1.9.1/go.mod h1:4GCmXKcOa2BZcZPn6DCEvE7HypmEJcJkr4mtM+sqYPc= +cloud.google.com/go/webrisk v1.9.2/go.mod h1:pY9kfDgAqxUpDBOrG4w8deLfhvJmejKB0qd/5uQIPBc= cloud.google.com/go/websecurityscanner v1.3.0/go.mod h1:uImdKm2wyeXQevQJXeh8Uun/Ym1VqworNDlBXQevGMo= cloud.google.com/go/websecurityscanner v1.4.0/go.mod h1:ebit/Fp0a+FWu5j4JOmJEV8S8CzdTkAS77oDsiSqYWQ= cloud.google.com/go/websecurityscanner v1.5.0/go.mod h1:Y6xdCPy81yi0SQnDY1xdNTNpfY1oAgXUlcfN3B3eSng= +cloud.google.com/go/websecurityscanner v1.6.1/go.mod h1:Njgaw3rttgRHXzwCB8kgCYqv5/rGpFCsBOvPbYgszpg= +cloud.google.com/go/websecurityscanner v1.6.2/go.mod h1:7YgjuU5tun7Eg2kpKgGnDuEOXWIrh8x8lWrJT4zfmas= cloud.google.com/go/workflows v1.6.0/go.mod h1:6t9F5h/unJz41YqfBmqSASJSXccBLtD1Vwf+KmJENM0= cloud.google.com/go/workflows v1.7.0/go.mod h1:JhSrZuVZWuiDfKEFxU0/F1PQjmpnpcoISEXH2bcHC3M= cloud.google.com/go/workflows v1.8.0/go.mod h1:ysGhmEajwZxGn1OhGOGKsTXc5PyxOc0vfKf5Af+to4M= cloud.google.com/go/workflows v1.9.0/go.mod h1:ZGkj1aFIOd9c8Gerkjjq7OW7I5+l6cSvT3ujaO/WwSA= cloud.google.com/go/workflows v1.10.0/go.mod h1:fZ8LmRmZQWacon9UCX1r/g/DfAXx5VcPALq2CxzdePw= +cloud.google.com/go/workflows v1.11.1/go.mod h1:Z+t10G1wF7h8LgdY/EmRcQY8ptBD/nvofaL6FqlET6g= +cloud.google.com/go/workflows v1.12.0/go.mod h1:PYhSk2b6DhZ508tj8HXKaBh+OFe+xdl0dHF/tJdzPQM= +cloud.google.com/go/workflows v1.12.1/go.mod h1:5A95OhD/edtOhQd/O741NSfIMezNTbCwLM1P1tBRGHM= +collectd.org v0.3.0/go.mod h1:A/8DzQBkF6abtvrT2j/AU/4tiBgJWYyh0y/oB/4MlWE= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= gioui.org v0.0.0-20210308172011-57750fc8a0a6/go.mod h1:RSH6KIUZ0p2xy5zHDxgAM4zumjgTw83q2ge/PI+yyw8= git.sr.ht/~sbinet/gg v0.3.1/go.mod h1:KGYtlADtqsqANL9ueOFkWymvzUvLMQllU5Ixo+8v3pc= +github.com/AndreasBriese/bbloom v0.0.0-20190306092124-e2d15f34fcf9/go.mod h1:bOvUY6CB00SOBii9/FifXqc0awNKxLFCL/+pkDPuyl8= github.com/Azure/azure-pipeline-go v0.2.1/go.mod h1:UGSo8XybXnIGZ3epmeBw7Jdz+HiUVpqIlpz/HKHylF4= github.com/Azure/azure-pipeline-go v0.2.2/go.mod h1:4rQ/NZncSvGqNkkOsNpOU1tgoNuIlp9AfUH5G1tvCHc= +github.com/Azure/azure-sdk-for-go/sdk/azcore v0.21.1/go.mod h1:fBF9PQNqB8scdgpZ3ufzaLntG0AG7C1WjPMsiFOmfHM= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0/go.mod h1:uGG2W01BaETf0Ozp+QxxKJdMBNRWPdstHG0Fmdwn1/U= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.6.0/go.mod h1:bjGvMhVMb+EEm3VRNQawDMUyMMjo+S5ewNjflkep/0Q= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.7.0/go.mod h1:bjGvMhVMb+EEm3VRNQawDMUyMMjo+S5ewNjflkep/0Q= +github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0/go.mod h1:+6sju8gk8FRmSajX3Oz4G5Gm7P+mbqE9FVaXXFYTkCM= +github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.3.0/go.mod h1:OQeznEEkTZ9OrhHJoDD8ZDq51FHgXjqtP9z6bEwBq9U= +github.com/Azure/azure-sdk-for-go/sdk/internal v0.8.3/go.mod h1:KLF4gFr6DcKFZwSuH8w8yEK6DpFl3LP5rhdvAb7Yz5I= +github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0/go.mod h1:eWRD7oawr1Mu1sLCawqVc0CUiF43ia3qQMxLscsKQ9w= +github.com/Azure/azure-sdk-for-go/sdk/internal v1.3.0/go.mod h1:okt5dMMTOFjX/aovMlrjvvXoPMBVSPzk9185BT0+eZM= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/internal v1.0.0/go.mod h1:ceIuwmxDWptoW3eCqSXlnPsZFKh4X+R38dWPv7GS9Vs= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources v1.0.0/go.mod h1:s1tW/At+xHqjNFvWU4G0c0Qv33KOhvbGNj0RCTQDV8s= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/armstorage v1.2.0/go.mod h1:c+Lifp3EDEamAkPVzMooRNOK6CZjNSdEnf1A7jsI9u4= +github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v0.3.0/go.mod h1:tPaiy8S5bQ+S5sOiDlINkp7+Ef339+Nz5L5XO+cnOHo= +github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.2.0/go.mod h1:+6KLcKIVgxoBDMqMO/Nvy7bZ9a0nbU3I1DtFQK3YvB4= github.com/Azure/azure-storage-blob-go v0.7.0/go.mod h1:f9YQKtsG1nMisotuTPpO0tjNuEjKRYAcJU8/ydDI++4= github.com/Azure/go-autorest/autorest v0.9.0/go.mod h1:xyHB1BMZT0cuDHU7I0+g046+BFDTQ8rEZB0s4Yfa6bI= github.com/Azure/go-autorest/autorest/adal v0.5.0/go.mod h1:8Z9fGy2MpX0PvDjB1pEgQTmVqjGhiHBW7RJJEciWzS0= @@ -533,54 +950,129 @@ github.com/Azure/go-autorest/autorest/mocks v0.2.0/go.mod h1:OTyCOPRA2IgIlWxVYxB github.com/Azure/go-autorest/autorest/mocks v0.3.0/go.mod h1:a8FDP3DYzQ4RYfVAxAN3SVSiiO77gL2j2ronKKP0syM= github.com/Azure/go-autorest/logger v0.1.0/go.mod h1:oExouG+K6PryycPJfVSxi/koC6LSNgds39diKLz7Vrc= github.com/Azure/go-autorest/tracing v0.5.0/go.mod h1:r/s2XiOKccPW3HrqB+W0TQzfbtp2fGCgRFtBroKn4Dk= +github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0/go.mod h1:Vt9sXTKwMyGcOxSmLDMnGPgqsUg7m8pe215qMLrDXw4= +github.com/AzureAD/microsoft-authentication-library-for-go v1.0.0/go.mod h1:kgDmCTgBzIEPFElEF+FK0SdjAor06dRq2Go927dnQ6o= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= +github.com/BurntSushi/toml v1.1.0/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= +github.com/BurntSushi/toml v1.2.1/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= +github.com/BurntSushi/toml v1.3.2/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= +github.com/CloudyKit/fastprinter v0.0.0-20170127035650-74b38d55f37a/go.mod h1:EFZQ978U7x8IRnstaskI3IysnWY5Ao3QgZUKOXlsAdw= +github.com/CloudyKit/jet v2.1.3-0.20180809161101-62edd43e4f88+incompatible/go.mod h1:HPYO+50pSWkPoj9Q/eq0aRGByCL6ScRlUmiEX5Zgm+w= +github.com/DATA-DOG/go-sqlmock v1.3.3/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM= +github.com/DataDog/zstd v1.4.5/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= +github.com/GoogleCloudPlatform/cloudsql-proxy v0.0.0-20190129172621-c8b1d7a94ddf/go.mod h1:aJ4qN3TfrelA6NZ6AXsXRfmEVaYin3EDbSPJrKS8OXo= +github.com/HdrHistogram/hdrhistogram-go v1.1.2/go.mod h1:yDgFjdqOqDEKOvasDdhWNXYg9BVp4O+o5f6V/ehm6Oo= github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c/go.mod h1:X0CRv0ky0k6m906ixxpzmDRLvX58TFUKS2eePweuyxk= +github.com/Joker/hpp v1.0.0/go.mod h1:8x5n+M1Hp5hC0g8okX3sR3vFQwynaX/UgSOM9MeBKzY= +github.com/Joker/jade v1.0.1-0.20190614124447-d475f43051e7/go.mod h1:6E6s8o2AE4KhCrqr6GRJjdC/gNfTdxkIXvuGZZda2VM= +github.com/Microsoft/go-winio v0.6.1/go.mod h1:LRdKpFKfdobln8UmuiYcKPot9D2v6svN5+sAH+4kjUM= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/OneOfOne/xxhash v1.2.5/go.mod h1:eZbhyaAYD41SGSSsnmcpxVoRiQ/MPUTjUdIIOT9Um7Q= github.com/SaveTheRbtz/mph v0.1.1-0.20240117162131-4166ec7869bc h1:DCHzPQOcU/7gwDTWbFQZc5qHMPS1g0xTO56k8NXsv9M= github.com/SaveTheRbtz/mph v0.1.1-0.20240117162131-4166ec7869bc/go.mod h1:LJM5a3zcIJ/8TmZwlUczvROEJT8ntOdhdG9jjcR1B0I= +github.com/Shopify/goreferrer v0.0.0-20181106222321-ec9c9a553398/go.mod h1:a1uqRtAwp2Xwc6WNPJEufxJ7fx3npB4UV/JOLmbu5I0= github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg= +github.com/StackExchange/wmi v1.2.1/go.mod h1:rcmrprowKIVzvc+NUiLncP2uuArMWLCbu9SBzvHz7e8= github.com/VictoriaMetrics/fastcache v1.5.3/go.mod h1:+jv9Ckb+za/P1ZRg/sulP5Ni1v49daAVERr0H3CuscE= +github.com/VictoriaMetrics/fastcache v1.6.0/go.mod h1:0qHz5QP0GMX4pfmMA/zt5RgfNuXJrTP0zS7DqpHGGTw= +github.com/VictoriaMetrics/fastcache v1.12.1/go.mod h1:tX04vaqcNoQeGLD+ra5pU5sWkuxnzWhEzLwhP9w653o= +github.com/aclements/go-gg v0.0.0-20170118225347-6dbb4e4fefb0/go.mod h1:55qNq4vcpkIuHowELi5C8e+1yUHtoLoOUR9QU5j7Tes= +github.com/aclements/go-moremath v0.0.0-20210112150236-f10218a38794/go.mod h1:7e+I0LQFUI9AXWxOfsQROs9xPhoJtbsyWcjJqDd4KPY= +github.com/ajg/form v1.5.1/go.mod h1:uL1WgH+h2mgNtvBq0339dVnzXdBETtL2LeUXaIv25UY= github.com/ajstarks/deck v0.0.0-20200831202436-30c9fc6549a9/go.mod h1:JynElWSGnm/4RlzPXRlREEwqTHAN3T56Bv2ITsFT3gY= github.com/ajstarks/deck/generate v0.0.0-20210309230005-c3f852c02e19/go.mod h1:T13YZdzov6OU0A1+RfKZiZN9ca6VeKdBdyDV+BY97Tk= github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw= +github.com/ajstarks/svgo v0.0.0-20210923152817-c3b6e2f0c527/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw= github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b/go.mod h1:1KcenG0jGWcpt8ov532z81sp/kMMUG485J2InIOyADM= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= github.com/allegro/bigcache v1.2.1-0.20190218064605-e24eb225f156/go.mod h1:Cb/ax3seSYIx7SuZdm2G2xzfwmv3TPSk2ucNfQESPXM= +github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883/go.mod h1:rCTlJbsFo29Kk6CurOXKm700vrz8f0KW0JNfpkRJY/8= github.com/andybalholm/brotli v1.0.4/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig= github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= +github.com/apache/arrow/go/arrow v0.0.0-20191024131854-af6fa24be0db/go.mod h1:VTxUBvSJ3s3eHAg65PNgrsn5BtqCRPdmyXh6rAfdxN0= github.com/apache/arrow/go/v10 v10.0.1/go.mod h1:YvhnlEePVnBS4+0z3fhPfUy7W1Ikj0Ih0vcRo/gZ1M0= +github.com/apache/arrow/go/v11 v11.0.0/go.mod h1:Eg5OsL5H+e299f7u5ssuXsuHQVEGC4xei5aX110hRiI= +github.com/apache/arrow/go/v12 v12.0.0/go.mod h1:d+tV/eHZZ7Dz7RPrFKtPK02tpr+c9/PEd/zm8mDS9Vg= github.com/apache/thrift v0.16.0/go.mod h1:PHK3hniurgQaNMZYaCLEqXKsYK8upmhPbmdP2FXSqgU= github.com/aristanetworks/goarista v0.0.0-20170210015632-ea17b1a17847/go.mod h1:D/tb0zPVXnP7fmsLZjtdUhSsumbK/ij54UXjjVgMGxQ= +github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8= github.com/aws/aws-sdk-go v1.25.48/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= +github.com/aws/aws-sdk-go-v2 v1.2.0/go.mod h1:zEQs02YRBw1DjK0PoJv3ygDYOFTre1ejlJWl8FwAuQo= github.com/aws/aws-sdk-go-v2 v1.17.3/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw= github.com/aws/aws-sdk-go-v2 v1.17.7/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw= +github.com/aws/aws-sdk-go-v2 v1.21.2/go.mod h1:ErQhvNuEMhJjweavOYhxVkn2RUx7kQXVATHrjKtxIpM= +github.com/aws/aws-sdk-go-v2 v1.23.1/go.mod h1:i1XDttT4rnf6vxc9AuskLc6s7XBee8rlLilKlc03uAA= +github.com/aws/aws-sdk-go-v2/config v1.1.1/go.mod h1:0XsVy9lBI/BCXm+2Tuvt39YmdHwS5unDQmxZOYe8F5Y= github.com/aws/aws-sdk-go-v2/config v1.18.19/go.mod h1:XvTmGMY8d52ougvakOv1RpiTLPz9dlG/OQHsKU/cMmY= +github.com/aws/aws-sdk-go-v2/config v1.18.45/go.mod h1:ZwDUgFnQgsazQTnWfeLWk5GjeqTQTL8lMkoE1UXzxdE= +github.com/aws/aws-sdk-go-v2/config v1.25.5/go.mod h1:Bf4gDvy4ZcFIK0rqDu1wp9wrubNba2DojiPB2rt6nvI= +github.com/aws/aws-sdk-go-v2/credentials v1.1.1/go.mod h1:mM2iIjwl7LULWtS6JCACyInboHirisUUdkBPoTHMOUo= github.com/aws/aws-sdk-go-v2/credentials v1.13.18/go.mod h1:vnwlwjIe+3XJPBYKu1et30ZPABG3VaXJYr8ryohpIyM= +github.com/aws/aws-sdk-go-v2/credentials v1.13.43/go.mod h1:zWJBz1Yf1ZtX5NGax9ZdNjhhI4rgjfgsyk6vTY1yfVg= +github.com/aws/aws-sdk-go-v2/credentials v1.16.4/go.mod h1:Kdh/okh+//vQ/AjEt81CjvkTo64+/zIE4OewP7RpfXk= +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.0.2/go.mod h1:3hGg3PpiEjHnrkrlasTfxFqUsZ2GCk/fMUn4CbKgSkM= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.1/go.mod h1:lfUx8puBRdM5lVVMQlwt2v+ofiG/X6Ms+dy0UkG/kXw= +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.13/go.mod h1:f/Ib/qYjhV2/qdsf79H3QP/eRE4AkVyEf6sk7XfZ1tg= +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.5/go.mod h1:VhnExhw6uXy9QzetvpXDolo1/hjhx4u9qukBGkuUwjs= github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.27/go.mod h1:a1/UpzeyBBerajpnP5nGZa9mGzsBn5cOKxm6NWQsvoI= github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.31/go.mod h1:QT0BqUvX1Bh2ABdTGnjqEjvjzrCfIniM9Sc8zn9Yndo= +github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.43/go.mod h1:auo+PiyLl0n1l8A0e8RIeR8tOzYPfZZH/JNlrJ8igTQ= +github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.4/go.mod h1:xEhvbJcyUf/31yfGSQBe01fukXwXJ0gxDp7rLfymWE0= github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.21/go.mod h1:+Gxn8jYn5k9ebfHEqlhrMirFjSW0v0C9fI+KN5vk2kE= github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.25/go.mod h1:zBHOPwhBc3FlQjQJE/D3IfPWiWaQmT06Vq9aNukDo0k= +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.37/go.mod h1:Qe+2KtKml+FEsQF/DHmDV+xjtche/hwoF75EG4UlHW8= +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.4/go.mod h1:dYvTNAggxDZy6y1AF7YDwXsPuHFy/VNEpEI/2dWK9IU= github.com/aws/aws-sdk-go-v2/internal/ini v1.3.32/go.mod h1:XGhIBZDEgfqmFIugclZ6FU7v75nHhBDtzuB4xB/tEi4= +github.com/aws/aws-sdk-go-v2/internal/ini v1.3.45/go.mod h1:lD5M20o09/LCuQ2mE62Mb/iSdSlCNuj6H5ci7tW7OsE= +github.com/aws/aws-sdk-go-v2/internal/ini v1.7.1/go.mod h1:6fQQgfuGmw8Al/3M2IgIllycxV7ZW7WCdVSqfBeUiCY= +github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.1/go.mod h1:l9ymW25HOqymeU2m1gbUQ3rUIsTwKs8gYHXkqDQUhiI= +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.0.2/go.mod h1:45MfaXZ0cNbeuT0KQ1XJylq8A6+OpVV2E5kvY/Kq+u8= github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.25/go.mod h1:/95IA+0lMnzW6XzqYJRpjjsAbKEORVeO0anQqjd2CNU= +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.37/go.mod h1:vBmDnwWXWxNPFRMmG2m/3MKOe+xEcMDo1tanpaWCcck= +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.4/go.mod h1:aYCGNjyUCUelhofxlZyj63srdxWUSsBSGg5l6MCuXuE= github.com/aws/aws-sdk-go-v2/service/kms v1.20.1/go.mod h1:13sjgMH7Xu4e46+0BEDhSnNh+cImHSYS5PpBjV3oXcU= +github.com/aws/aws-sdk-go-v2/service/kms v1.26.3/go.mod h1:N3++/sLV97B8Zliz7KRqNcojOX7iMBZWKiuit5FKtH0= +github.com/aws/aws-sdk-go-v2/service/route53 v1.1.1/go.mod h1:rLiOUrPLW/Er5kRcQ7NkwbjlijluLsrIbu/iyl35RO4= +github.com/aws/aws-sdk-go-v2/service/route53 v1.30.2/go.mod h1:TQZBt/WaQy+zTHoW++rnl8JBrmZ0VO6EUbVua1+foCA= +github.com/aws/aws-sdk-go-v2/service/sso v1.1.1/go.mod h1:SuZJxklHxLAXgLTc1iFXbEWkXs7QRTQpCLGaKIprQW0= github.com/aws/aws-sdk-go-v2/service/sso v1.12.6/go.mod h1:Y1VOmit/Fn6Tz1uFAeCO6Q7M2fmfXSCLeL5INVYsLuY= +github.com/aws/aws-sdk-go-v2/service/sso v1.15.2/go.mod h1:gsL4keucRCgW+xA85ALBpRFfdSLH4kHOVSnLMSuBECo= +github.com/aws/aws-sdk-go-v2/service/sso v1.17.3/go.mod h1:oA6VjNsLll2eVuUoF2D+CMyORgNzPEW/3PyUdq6WQjI= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.6/go.mod h1:Lh/bc9XUf8CfOY6Jp5aIkQtN+j1mc+nExc+KXj9jx2s= +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.17.3/go.mod h1:a7bHA82fyUXOm+ZSWKU6PIoBxrjSprdLoM8xPYvzYVg= +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.20.1/go.mod h1:hHL974p5auvXlZPIjJTblXJpbkfK4klBczlsEaMCGVY= +github.com/aws/aws-sdk-go-v2/service/sts v1.1.1/go.mod h1:Wi0EBZwiz/K44YliU0EKxqTCJGUfYTWXrrBwkq736bM= github.com/aws/aws-sdk-go-v2/service/sts v1.18.7/go.mod h1:JuTnSoeePXmMVe9G8NcjjwgOKEfZ4cOjMuT2IBT/2eI= +github.com/aws/aws-sdk-go-v2/service/sts v1.23.2/go.mod h1:Eows6e1uQEsc4ZaHANmsPRzAKcVDrcmjjWiih2+HUUQ= +github.com/aws/aws-sdk-go-v2/service/sts v1.25.4/go.mod h1:feTnm2Tk/pJxdX+eooEsxvlvTWBvDm6CasRZ+JOs2IY= +github.com/aws/smithy-go v1.1.0/go.mod h1:EzMw8dbp/YJL4A5/sbhGddag+NPT7q084agLbB9LgIw= github.com/aws/smithy-go v1.13.5/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA= +github.com/aws/smithy-go v1.15.0/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA= +github.com/aws/smithy-go v1.17.0/go.mod h1:NukqUGpCZIILqqiV0NIjeFh24kd/FAa4beRb6nbIUPE= +github.com/aymerick/raymond v2.0.3-0.20180322193309-b565731e1464+incompatible/go.mod h1:osfaiScAUVup+UC9Nfq76eWqDhXlp+4UYaA8uhTBO6g= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= +github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= github.com/bits-and-blooms/bitset v1.5.0 h1:NpE8frKRLGHIcEzkR+gZhiioW1+WbYV6fKwD6ZIpQT8= github.com/bits-and-blooms/bitset v1.5.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= +github.com/bits-and-blooms/bitset v1.7.0 h1:YjAGVd3XmtK9ktAbX8Zg2g2PwLIMjGREZJHlV4j7NEo= +github.com/bits-and-blooms/bitset v1.7.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= +github.com/bmizerany/pat v0.0.0-20170815010413-6226ea591a40/go.mod h1:8rLXio+WjiTceGBHIoTvn60HIbs7Hm7bcHjyrSqYB9c= +github.com/boltdb/bolt v1.3.1/go.mod h1:clJnj/oiGkjum5o1McbSZDSLxVThjynRyGBgiAx27Ps= github.com/boombuler/barcode v1.0.0/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= github.com/boombuler/barcode v1.0.1/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= github.com/btcsuite/btcd v0.0.0-20171128150713-2e60448ffcc6/go.mod h1:Dmm/EzmjnCiweXmzRIAiUWCInVmPgjkzgv5k4tVyXiQ= +github.com/btcsuite/btcd/btcec/v2 v2.2.0/go.mod h1:U7MHm051Al6XmscBQ0BoNydpOTsFAn707034b5nY8zU= github.com/btcsuite/btcd/btcec/v2 v2.2.1 h1:xP60mv8fvp+0khmrN0zTdPC3cNm24rfeE6lh2R/Yv3E= github.com/btcsuite/btcd/btcec/v2 v2.2.1/go.mod h1:9/CSmJxmuvqzX9Wh2fXMWToLOHhPd11lSPuIupwTkI8= github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1/go.mod h1:7SFka0XMvUgj3hfZtydOrQY2mwhPclbT2snogU7SQQc= github.com/bytecodealliance/wasmtime-go/v7 v7.0.0/go.mod h1:bu6fic7trDt20w+LMooX7j3fsOwv4/ln6j8gAdP6vmA= +github.com/c-bata/go-prompt v0.2.2/go.mod h1:VzqtzE2ksDBcdln8G7mk2RX9QyGjH+OVqOCSiVIqS34= github.com/c-bata/go-prompt v0.2.6/go.mod h1:/LMAke8wD2FsNu9EXNdHxNLbd9MedkPnCdfpU9wwHfY= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/census-instrumentation/opencensus-proto v0.3.0/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= @@ -589,12 +1081,18 @@ github.com/cespare/cp v0.1.0/go.mod h1:SOGHArjBr4JWaSDEVpWpo/hNg6RoKrls6Oh40hiwW github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= github.com/cespare/xxhash/v2 v2.0.1-0.20190104013014-3767db7a7e18/go.mod h1:HD5P3vAIAh+Y2GAxg0PrPN1P8WkepXGpjbUPDHJqqKM= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= +github.com/chzyer/logex v1.2.0/go.mod h1:9+9sk7u7pGNWYMkh0hdiL++6OeibzJccyQU4p4MedaY= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= +github.com/chzyer/readline v1.5.0/go.mod h1:x22KAscuvRqlLoK9CsoYsmxoXZMMFVyOl86cAH8qUic= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= +github.com/chzyer/test v0.0.0-20210722231415-061457976a23/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/cloudflare/cloudflare-go v0.10.2-0.20190916151808-a80f83b9add9/go.mod h1:1MxXX1Ux4x6mqPmjkUgTP1CdXIBXKX7T+Jk9Gxrmx+U= +github.com/cloudflare/cloudflare-go v0.14.0/go.mod h1:EnwdgGMaFOruiPZRFSgn+TsQ3hQ7C/YWzIGLeu5c304= +github.com/cloudflare/cloudflare-go v0.79.0/go.mod h1:gkHQf9xEubaQPEuerBuoinR9P8bf8a05Lq0X6WKy1Oc= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= @@ -607,14 +1105,45 @@ github.com/cncf/xds/go v0.0.0-20211001041855-01bcc9b48dfe/go.mod h1:eXthEFrGJvWH github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/cncf/xds/go v0.0.0-20220314180256-7f1daf1720fc/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= github.com/cncf/xds/go v0.0.0-20230105202645-06c439db220b/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20230310173818-32f1caf87195/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20230428030218-4003588d1b74/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20230607035331-e9ce68804cb4/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cockroachdb/datadriven v1.0.0/go.mod h1:5Ib8Meh+jk1RlHIXej6Pzevx/NLlNvQB9pmSBZErGA4= +github.com/cockroachdb/datadriven v1.0.3-0.20230413201302-be42291fc80f/go.mod h1:a9RdTaap04u637JoCzcUoIcDmvwSUtcUFtT/C3kJlTU= +github.com/cockroachdb/errors v1.6.1/go.mod h1:tm6FTP5G81vwJ5lC0SizQo374JNCOPrHyXGitRJoDqM= +github.com/cockroachdb/errors v1.8.1/go.mod h1:qGwQn6JmZ+oMjuLwjWzUNqblqk0xl4CVV3SQbGwK7Ac= +github.com/cockroachdb/logtags v0.0.0-20190617123548-eb05cc24525f/go.mod h1:i/u985jwjWRlyHXQbwatDASoW0RMlZ/3i9yJHE2xLkI= +github.com/cockroachdb/pebble v0.0.0-20230928194634-aa077af62593/go.mod h1:6hk1eMY/u5t+Cf18q5lFMUA1Rc+Sm5I6Ra1QuPyxXCo= +github.com/cockroachdb/redact v1.0.8/go.mod h1:BVNblN9mBWFyMyqK1k3AAiSxhvhfK2oOZZ2lK+dpvRg= +github.com/cockroachdb/sentry-go v0.6.1-cockroachdb.2/go.mod h1:8BT+cPK6xvFOcRlk0R8eg+OTkcqI6baNH4xAkpiYVvQ= +github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06/go.mod h1:7nc4anLGjupUW/PeY5qiNYsdNXj7zopG+eqsS7To5IQ= +github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0/go.mod h1:4Zcjuz89kmFXt9morQgcfYZAYZ5n8WHjt81YYWIwtTM= +github.com/consensys/bavard v0.1.8-0.20210406032232-f3452dc9b572/go.mod h1:Bpd0/3mZuaj6Sj+PqrmIquiOKy397AKGThQPaGzNXAQ= +github.com/consensys/bavard v0.1.13/go.mod h1:9ItSMtA/dXMAiL7BG6bqW2m3NdSEObYWoH223nGHukI= +github.com/consensys/gnark-crypto v0.4.1-0.20210426202927-39ac3d4b3f1f/go.mod h1:815PAHg3wvysy0SyIqanF8gZ0Y1wjk/hrDHD/iT88+Q= +github.com/consensys/gnark-crypto v0.10.0/go.mod h1:Iq/P3HHl0ElSjsg2E1gsMwhAyxnxoKK5nVyZKd+/KhU= +github.com/consensys/gnark-crypto v0.12.1/go.mod h1:v2Gy7L/4ZRosZ7Ivs+9SfUDr0f5UlG+EM5t7MPHiLuY= +github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= +github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= +github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk= +github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= +github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= +github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= +github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= +github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= +github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= +github.com/crate-crypto/go-ipa v0.0.0-20230601170251-1830d0757c80/go.mod h1:gzbVz57IDJgQ9rLQwfSk696JGWof8ftznEL9GoAv3NI= +github.com/crate-crypto/go-kzg-4844 v0.7.0/go.mod h1:1kMhvPgI0Ky3yIa+9lFySEBUBXkYxeOi8ZF1sYioxhc= github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= +github.com/cyberdelia/templates v0.0.0-20141128023046-ca7fffd4298c/go.mod h1:GyV+0YP4qX0UQ7r2MoYZ+AvYDp12OF5yg4q8rGnyNh4= github.com/dave/astrid v0.0.0-20170323122508-8c2895878b14/go.mod h1:Sth2QfxfATb/nW4EsrSi2KyJmbcniZ8TgTaji17D6ms= github.com/dave/brenda v1.1.0/go.mod h1:4wCUr6gSlu5/1Tk7akE5X7UorwiQ8Rij0SKH3/BGMOM= github.com/dave/courtney v0.3.0/go.mod h1:BAv3hA06AYfNUjfjQr+5gc6vxeBVOupLqrColj+QSD8= github.com/dave/dst v0.27.2/go.mod h1:jHh6EOibnHgcUW3WjKHisiooEkYwqpHLBSX1iOBhEyc= github.com/dave/gopackages v0.0.0-20170318123100-46e7023ec56e/go.mod h1:i00+b/gKdIDIxuLDFob7ustLAVqhsZRk2qVZrArELGQ= +github.com/dave/jennifer v1.2.0/go.mod h1:fIb+770HOpJ2fmN9EPPKOqm1vMGhB+TwXKMZhrIygKg= github.com/dave/jennifer v1.5.0/go.mod h1:4MnyiFIlZS3l5tSDn8VnzE6ffAhYBMB2SZntBsZGUok= github.com/dave/kerr v0.0.0-20170318121727-bc25dd6abe8e/go.mod h1:qZqlPyPvfsDJt+3wHJ1EvSXDuVjFTK0j2p/ca+gtsb8= github.com/dave/patsy v0.0.0-20210517141501-957256f50cba/go.mod h1:qfR88CgEGLoiqDaE+xxDCi5QA5v4vUoW0UCX2Nd5Tlc= @@ -623,17 +1152,41 @@ github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/deckarep/golang-set v0.0.0-20180603214616-504e848d77ea/go.mod h1:93vsz/8Wt4joVM7c2AVqh+YRMiUSc14yDtF28KmMOgQ= +github.com/deckarep/golang-set v1.8.0/go.mod h1:5nI87KwE7wgsBU1F4GKAw2Qod7p5kyS383rP6+o6qqo= +github.com/deckarep/golang-set/v2 v2.1.0/go.mod h1:VAky9rY/yGXJOLEDv3OMci+7wtDpOF4IN+y82NBOac4= github.com/decred/dcrd/crypto/blake256 v1.0.0/go.mod h1:sQl2p6Y26YV+ZOcSTP6thNdn47hh8kt6rqSlvmrXFAc= +github.com/decred/dcrd/crypto/blake256 v1.0.1/go.mod h1:2OfgNZ5wDpcsFmHmCK5gZTPcCXqlm2ArzUIkw9czNJo= github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 h1:YLtO71vCjJRCBcrPMtQ9nqBsqpA1m5sE92cU+pd5Mcc= github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1/go.mod h1:hyedUtir6IdtD/7lIxGeCxkaw7y45JueMRL4DIyJDKs= +github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 h1:8UrgZ3GkP4i/CLijOJx79Yu+etlyjdBU4sfcs2WYQMs= +github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0/go.mod h1:v57UDF4pDQJcEfFUCRop3lJL149eHGSe9Jvczhzjo/0= +github.com/deepmap/oapi-codegen v1.6.0/go.mod h1:ryDa9AgbELGeB+YEXE1dR53yAjHwFvE9iAUlWl9Al3M= +github.com/deepmap/oapi-codegen v1.8.2/go.mod h1:YLgSKSDv/bZQB7N4ws6luhozi3cEdRktEqrX88CvjIw= +github.com/dgraph-io/badger v1.6.0/go.mod h1:zwt7syl517jmP8s94KqSxTlM6IMsdhYy6psNgSztDR4= github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= +github.com/dgryski/go-bitstream v0.0.0-20180413035011-3522498ce2c8/go.mod h1:VMaSuZ+SZcx/wljOQKvp5srsbCiKDEb6K2wC4+PiBmQ= +github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2/go.mod h1:SqUrOPUnsFjfmXRMNPybcSiG0BgUW2AuFH8PAnS2iTw= github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= github.com/dlclark/regexp2 v1.2.0/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc= +github.com/dlclark/regexp2 v1.4.1-0.20201116162257-a2a8dda75c91/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc= +github.com/dlclark/regexp2 v1.7.0/go.mod h1:DHkYz0B9wPfa6wondMfaivmHpzrQ3v9q8cnmRbL6yW8= +github.com/dnaeon/go-vcr v1.1.0/go.mod h1:M7tiix8f0r6mKKJ3Yq/kqU1OYf3MnfmBWVbPx/yU9ko= +github.com/dnaeon/go-vcr v1.2.0/go.mod h1:R4UdLID7HZT3taECzJs4YgbbH6PIGXB6W/sc5OLb6RQ= github.com/docker/docker v1.4.2-0.20180625184442-8e610b2b55bf/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= +github.com/docker/docker v1.6.2/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= github.com/dop251/goja v0.0.0-20200219165308-d1232e640a87/go.mod h1:Mw6PkjjMXWbTj+nnj4s3QPXq1jaT0s5pC0iFD4+BOAA= +github.com/dop251/goja v0.0.0-20211022113120-dc8c55024d06/go.mod h1:R9ET47fwRVRPZnOGvHxxhuZcbrMCuiqOz3Rlrh4KSnk= +github.com/dop251/goja v0.0.0-20220405120441-9037c2b61cbf/go.mod h1:R9ET47fwRVRPZnOGvHxxhuZcbrMCuiqOz3Rlrh4KSnk= +github.com/dop251/goja v0.0.0-20230806174421-c933cf95e127/go.mod h1:QMWlm50DNe14hD7t24KEqZuUdC9sOTy8W6XbCU1mlw4= +github.com/dop251/goja_nodejs v0.0.0-20210225215109-d91c329300e7/go.mod h1:hn7BA7c8pLvoGndExHudxTDKZ84Pyvv+90pbBjbTz0Y= +github.com/dop251/goja_nodejs v0.0.0-20211022123610-8dd9abb0616d/go.mod h1:DngW8aVqWbuLRMHItjPUyqdj+HWPvnQe8V8y1nDpIbM= github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= +github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= +github.com/eclipse/paho.mqtt.golang v1.2.0/go.mod h1:H9keYFcgq3Qr5OUJm/JZI/i6U7joQ8SYLhZwfeOo6Ts= github.com/edsrzf/mmap-go v0.0.0-20160512033002-935e0e8a636c/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= +github.com/edsrzf/mmap-go v1.0.0/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= +github.com/eknkc/amber v0.0.0-20171010120322-cdade1c07385/go.mod h1:0vRUJqYpeSZifjYj7uP3BG/gKcuzL9xWVV/Y+cK33KM= github.com/elastic/gosigar v0.8.1-0.20180330100440-37f05ff46ffa/go.mod h1:cdorVVzy1fhmEqmtgqkoE3bYtCfSCkVyjTyCIo22xvs= github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= @@ -645,51 +1198,123 @@ github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.m github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0= github.com/envoyproxy/go-control-plane v0.10.2-0.20220325020618-49ff273808a1/go.mod h1:KJwIaB5Mv44NWtYuAOFCVOjcI94vtpEz2JU/D2v6IjE= github.com/envoyproxy/go-control-plane v0.10.3/go.mod h1:fJJn/j26vwOu972OllsvAgJJM//w9BV6Fxbg2LuVd34= +github.com/envoyproxy/go-control-plane v0.11.0/go.mod h1:VnHyVMpzcLvCFt9yUz1UnCwHLhwx1WguiVDV7pTG/tI= +github.com/envoyproxy/go-control-plane v0.11.1-0.20230524094728-9239064ad72f/go.mod h1:sfYdkwUW4BA3PbKjySwjJy+O4Pu0h62rlqCMHNk+K+Q= +github.com/envoyproxy/go-control-plane v0.11.1/go.mod h1:uhMcXKCQMEJHiAb0w+YGefQLaTEw+YhGluxZkrTmD0g= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/envoyproxy/protoc-gen-validate v0.6.7/go.mod h1:dyJXwwfPK2VSqiB9Klm1J6romD608Ba7Hij42vrOBCo= github.com/envoyproxy/protoc-gen-validate v0.9.1/go.mod h1:OKNgG7TCp5pF4d6XftA0++PMirau2/yoOwVac3AbF2w= +github.com/envoyproxy/protoc-gen-validate v0.10.0/go.mod h1:DRjgyB0I43LtJapqN6NiRwroiAU2PaFuvk/vjgh61ss= +github.com/envoyproxy/protoc-gen-validate v0.10.1/go.mod h1:DRjgyB0I43LtJapqN6NiRwroiAU2PaFuvk/vjgh61ss= +github.com/envoyproxy/protoc-gen-validate v1.0.1/go.mod h1:0vj8bNkYbSTNS2PIyH87KZaeN4x9zpL9Qt8fQC7d+vs= +github.com/envoyproxy/protoc-gen-validate v1.0.2/go.mod h1:GpiZQP3dDbg4JouG/NNS7QWXpgx6x8QiMKdmN72jogE= +github.com/etcd-io/bbolt v1.3.3/go.mod h1:ZF2nL25h33cCyBtcyWeZ2/I3HQOfTP+0PIEvHjkjCrw= +github.com/ethereum/c-kzg-4844 v0.4.0/go.mod h1:VewdlzQmpT5QSrVhbBuGoCdFJkpaJlO1aQputP83wc0= github.com/ethereum/go-ethereum v1.9.13 h1:rOPqjSngvs1VSYH2H+PMPiWt4VEulvNRbFgqiGqJM3E= github.com/ethereum/go-ethereum v1.9.13/go.mod h1:qwN9d1GLyDh0N7Ab8bMGd0H9knaji2jOBm2RrMGjXls= +github.com/ethereum/go-ethereum v1.10.26/go.mod h1:EYFyF19u3ezGLD4RqOkLq+ZCXzYbLoNDdZlMt7kyKFg= +github.com/ethereum/go-ethereum v1.13.5 h1:U6TCRciCqZRe4FPXmy1sMGxTfuk8P7u2UoinF3VbaFk= +github.com/ethereum/go-ethereum v1.13.5/go.mod h1:yMTu38GSuyxaYzQMViqNmQ1s3cE84abZexQmTgenWk0= +github.com/fasthttp-contrib/websocket v0.0.0-20160511215533-1f3b11f56072/go.mod h1:duJ4Jxv5lDcvg4QuQr0oowTf7dz4/CR8NtyCooz9HL8= github.com/fatih/color v1.3.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= +github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= +github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk= +github.com/fatih/structs v1.1.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga6PJ7M= +github.com/fjl/gencodec v0.0.0-20220412091415-8bb9e558978c/go.mod h1:AzA8Lj6YtixmJWL+wkKoBGsLWy9gFrAzi4g+5bCKwpY= +github.com/fjl/gencodec v0.0.0-20230517082657-f9840df7b83e/go.mod h1:AzA8Lj6YtixmJWL+wkKoBGsLWy9gFrAzi4g+5bCKwpY= github.com/fjl/memsize v0.0.0-20180418122429-ca190fb6ffbc/go.mod h1:VvhXpOYNQvB+uIk2RvXzuaQtkQJzzIx6lSBe1xv7hi0= +github.com/fjl/memsize v0.0.0-20190710130421-bcb5799ab5e5/go.mod h1:VvhXpOYNQvB+uIk2RvXzuaQtkQJzzIx6lSBe1xv7hi0= +github.com/flosch/pongo2 v0.0.0-20190707114632-bbf5a6c351f4/go.mod h1:T9YF2M40nIgbVgp3rreNmTged+9HrbNTIQf1PsaIiTA= github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= github.com/fogleman/gg v1.3.0/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= +github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= +github.com/fsnotify/fsnotify v1.6.0/go.mod h1:sl3t1tCWJFWoRz9R8WJCbQihKKwmorjAbSClcnxKAGw= github.com/fxamacker/cbor/v2 v2.4.1-0.20220515183430-ad2eae63303f/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c h1:5tm/Wbs9d9r+qZaUFXk59CWDD0+77PBqDREffYkyi5c= github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= github.com/fxamacker/circlehash v0.3.0 h1:XKdvTtIJV9t7DDUtsf0RIpC1OcxZtPbmgIH7ekx28WA= github.com/fxamacker/circlehash v0.3.0/go.mod h1:3aq3OfVvsWtkWMb6A1owjOQFA+TLsD5FgJflnaQwtMM= +github.com/garslo/gogen v0.0.0-20170306192744-1d203ffc1f61/go.mod h1:Q0X6pkwTILDlzrGEckF6HKjXe48EgsY/l7K7vhY4MW8= +github.com/gavv/httpexpect v2.0.0+incompatible/go.mod h1:x+9tiU1YnrOvnB725RkpoLv1M62hOWzwo5OXotisrKc= github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff/go.mod h1:x7DCsMOv1taUwEWCzT4cmDeAkigA5/QCwUodaVOe8Ww= +github.com/gballet/go-verkle v0.0.0-20230607174250-df487255f46b/go.mod h1:CDncRYVRSDqwakm282WEkjfaAj1hxU/v5RXxk5nXOiI= +github.com/getkin/kin-openapi v0.53.0/go.mod h1:7Yn5whZr5kJi6t+kShccXS8ae1APpYTW6yheSwk8Yi4= +github.com/getkin/kin-openapi v0.61.0/go.mod h1:7Yn5whZr5kJi6t+kShccXS8ae1APpYTW6yheSwk8Yi4= +github.com/ghemawat/stream v0.0.0-20171120220530-696b145b53b9/go.mod h1:106OIgooyS7OzLDOpUGgm9fA3bQENb/cFSyyBmMoJDs= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= +github.com/gin-contrib/sse v0.0.0-20190301062529-5545eab6dad3/go.mod h1:VJ0WA2NBN22VlZ2dKZQPAPnyWw5XTlK1KymzLKsr59s= +github.com/gin-gonic/gin v1.4.0/go.mod h1:OW2EZn3DO8Ln9oIKOvM++LBO+5UPHJJDH72/q/3rZdM= +github.com/glycerine/go-unsnap-stream v0.0.0-20180323001048-9f0cb55181dd/go.mod h1:/20jfyN9Y5QPEAprSgKAUr+glWDY39ZiUEAYOEv5dsE= +github.com/glycerine/goconvey v0.0.0-20190410193231-58a59202ab31/go.mod h1:Ogl1Tioa0aV7gstGFO7KhffUsb9M4ydbEbbxpcEDc24= +github.com/go-check/check v0.0.0-20180628173108-788fd7840127/go.mod h1:9ES+weclKsC9YodN5RgxqK/VD9HM9JsCSh7rNhMZE98= +github.com/go-chi/chi/v5 v5.0.0/go.mod h1:BBug9lr0cqtdAhsu6R4AAdvufI0/XBzAQSsUqJpoZOs= +github.com/go-errors/errors v1.0.1/go.mod h1:f4zRHt4oKfwPJE5k8C9vpYG+aDHdBFUsgrm6/TyX73Q= github.com/go-fonts/dejavu v0.1.0/go.mod h1:4Wt4I4OU2Nq9asgDCteaAaWZOV24E+0/Pwo0gppep4g= github.com/go-fonts/latin-modern v0.2.0/go.mod h1:rQVLdDMK+mK1xscDwsqM5J8U2jrRa3T0ecnM9pNujks= +github.com/go-fonts/latin-modern v0.3.0/go.mod h1:ysEQXnuT/sCDOAONxC7ImeEDVINbltClhasMAqEtRK0= github.com/go-fonts/liberation v0.1.1/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= github.com/go-fonts/liberation v0.2.0/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= +github.com/go-fonts/liberation v0.3.0/go.mod h1:jdJ+cqF+F4SUL2V+qxBth8fvBpBDS7yloUL5Fi8GTGY= github.com/go-fonts/stix v0.1.0/go.mod h1:w/c1f0ldAUlJmLBvlbkvVXLAD+tAMqobIIQpmnUIzUY= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY= github.com/go-latex/latex v0.0.0-20210118124228-b3d85cf34e07/go.mod h1:CO1AlKB2CSIqUrmQPqA0gdRIlnLEY0gK5JGjh37zN5U= github.com/go-latex/latex v0.0.0-20210823091927-c0d11ff05a81/go.mod h1:SX0U8uGpxhq9o2S/CELCSUxEWWAuoCUcVCQWv7G2OCk= +github.com/go-latex/latex v0.0.0-20230307184459-12ec69307ad9/go.mod h1:gWuR/CrFDDeVRFQwHPvsv9soJVB/iqymhuZQuJ3a9OM= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= +github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= +github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= github.com/go-logr/logr v1.2.3/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= +github.com/go-logr/logr v1.2.4/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= +github.com/go-martini/martini v0.0.0-20170121215854-22fa46961aab/go.mod h1:/P9AEU963A2AYjv4d1V5eVL1CQbEJq6aCNHDDjibzu8= github.com/go-ole/go-ole v1.2.1/go.mod h1:7FAglXiTm7HKlQRDeOQ6ZNUHidzCWXuZWq/1dTyBNF8= +github.com/go-ole/go-ole v1.2.5/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0= +github.com/go-openapi/jsonpointer v0.19.5/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= +github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= github.com/go-pdf/fpdf v0.5.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= github.com/go-pdf/fpdf v0.6.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= github.com/go-sourcemap/sourcemap v2.1.2+incompatible/go.mod h1:F8jJfvm2KbVjc5NqelyYJmf/v5J0dwNLS2mL4sNA1Jg= +github.com/go-sourcemap/sourcemap v2.1.3+incompatible/go.mod h1:F8jJfvm2KbVjc5NqelyYJmf/v5J0dwNLS2mL4sNA1Jg= +github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/go-stack/stack v1.8.1/go.mod h1:dcoOX6HbPZSZptuspn9bctJ+N/CnF5gGygcUP3XYfe4= +github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee/go.mod h1:L0fX3K22YWvt/FAX9NnzrNzcI4wNYi9Yku4O0LKYflo= +github.com/gobwas/pool v0.2.0/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6WezmKEw= +github.com/gobwas/ws v1.0.2/go.mod h1:szmBTxLgaFppYjEmNtny/v3w89xOydFnnZMcgRRu/EM= github.com/goccy/go-json v0.9.11/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= +github.com/goccy/go-json v0.10.2/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= +github.com/gofrs/flock v0.8.1/go.mod h1:F1TvTiK9OcQqauNUHlbJvyl9Qa1QvF/gOUDKA14jxHU= +github.com/gofrs/uuid v3.3.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= +github.com/gogo/googleapis v0.0.0-20180223154316-0cd9801be74a/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= +github.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= +github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= +github.com/gogo/protobuf v1.3.1/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= +github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= +github.com/gogo/status v1.1.0/go.mod h1:BFv9nrluPLmrS0EmGVvLaPNmRosr9KapBYd5/hpY1WM= +github.com/golang-jwt/jwt v3.2.1+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I= +github.com/golang-jwt/jwt/v4 v4.2.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= +github.com/golang-jwt/jwt/v4 v4.3.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= +github.com/golang-jwt/jwt/v4 v4.4.3/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0= +github.com/golang-jwt/jwt/v4 v4.5.0/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0= github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= +github.com/golang/geo v0.0.0-20190916061304-5b978397cfec/go.mod h1:QZ0nwyI2jOfgRAoBvP+ab5aRr7c9x7lhGEJrKvBwjWI= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4= +github.com/golang/glog v1.1.0/go.mod h1:pfYeQZ3JWZoXTV5sFc986z3HTpwQs9At6P4ImfuP3NQ= +github.com/golang/glog v1.1.2/go.mod h1:zR+okUeTbrL6EL3xHUDxZuEtGv04p5shwip1+mL/rLQ= +github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= @@ -717,11 +1342,22 @@ github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/golangci/lint-1 v0.0.0-20181222135242-d2cdd8c08219/go.mod h1:/X8TswGSh1pIozq4ZwCfxS0WA5JGXguxk94ar/4c87Y= +github.com/gomodule/redigo v1.7.1-0.20190724094224-574c33c3df38/go.mod h1:B4C85qUVwatsJoIUNIfCRsp7qO0iAmpGFZ4EELWSbC4= +github.com/gonum/blas v0.0.0-20181208220705-f22b278b28ac/go.mod h1:P32wAyui1PQ58Oce/KYkOqQv8cVw1zAapXOl+dRFGbc= +github.com/gonum/floats v0.0.0-20181209220543-c233463c7e82/go.mod h1:PxC8OnwL11+aosOB5+iEPoV3picfs8tUpkVd0pDo+Kg= +github.com/gonum/internal v0.0.0-20181124074243-f884aa714029/go.mod h1:Pu4dmpkhSyOzRwuXkOgAvijx4o+4YMUJJo9OvPYMkks= +github.com/gonum/lapack v0.0.0-20181123203213-e4cdc5a0bff9/go.mod h1:XA3DeT6rxh2EAE789SSiSJNqxPaC0aE9J8NTOI0Jo/A= +github.com/gonum/matrix v0.0.0-20181209220409-c518dec07be9/go.mod h1:0EXg4mc1CNP0HCqCz+K4ts155PXIlUywf0wqN+GfPZw= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= +github.com/google/flatbuffers v1.11.0/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= github.com/google/flatbuffers v2.0.8+incompatible/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= @@ -739,6 +1375,13 @@ github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8 github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/google/go-pkcs11 v0.2.0/go.mod h1:6eQoGcuNJpa7jnd5pMGdkSaQpNDYvPlXWMcjXXThLlY= +github.com/google/go-pkcs11 v0.2.1-0.20230907215043-c6f79328ddf9/go.mod h1:6eQoGcuNJpa7jnd5pMGdkSaQpNDYvPlXWMcjXXThLlY= +github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck= +github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU= +github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/gofuzz v1.1.1-0.20200604201612-c04b05f3adfa/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= @@ -759,14 +1402,29 @@ github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLe github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20230207041349-798e818bf904/go.mod h1:uglQLonpP8qtYCYyzA+8c/9qtqgA3qsXGYqCPKARAFg= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= +github.com/google/s2a-go v0.1.0/go.mod h1:OJpEgntRZo8ugHpF9hkoLJbS5dSI20XZeXJ9JVywLlM= +github.com/google/s2a-go v0.1.3/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A= +github.com/google/s2a-go v0.1.4/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A= +github.com/google/s2a-go v0.1.7/go.mod h1:50CgR4k1jNlWBu4UfS4AcfhVe1r6pdZPygJ3R8F0Qdw= +github.com/google/safehtml v0.0.2/go.mod h1:L4KWwDsUJdECRAEpZoBn3O64bQaywRscowZjJAzjHnU= +github.com/google/subcommands v1.2.0/go.mod h1:ZjhPrFU+Olkh9WazFPsl27BQ4UPiG37m3yTrtFlrHVk= +github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.2.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.3.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.4.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/googleapis/enterprise-certificate-proxy v0.0.0-20220520183353-fd19c99a87aa/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= github.com/googleapis/enterprise-certificate-proxy v0.1.0/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= github.com/googleapis/enterprise-certificate-proxy v0.2.0/go.mod h1:8C0jb7/mgJe/9KK8Lm7X9ctZC2t60YyIpYEI16jx0Qg= github.com/googleapis/enterprise-certificate-proxy v0.2.1/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= github.com/googleapis/enterprise-certificate-proxy v0.2.3/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= +github.com/googleapis/enterprise-certificate-proxy v0.2.4/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= +github.com/googleapis/enterprise-certificate-proxy v0.2.5/go.mod h1:RxW0N9901Cko1VOCW3SXCpWP+mlIEkk2tP7jnHy9a3w= +github.com/googleapis/enterprise-certificate-proxy v0.3.2/go.mod h1:VLSiSSBs/ksPL8kq3OBOQ6WRI2QnaFynd1DCjZ62+V0= +github.com/googleapis/gax-go v0.0.0-20161107002406-da06d194a00e/go.mod h1:SFVmujtThgffbyetf+mdk2eWhX2bMyUtNHzFKcPA9HY= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= @@ -778,31 +1436,97 @@ github.com/googleapis/gax-go/v2 v2.5.1/go.mod h1:h6B0KMMFNtI2ddbGJn3T3ZbwkeT6yqE github.com/googleapis/gax-go/v2 v2.6.0/go.mod h1:1mjbznJAPHFpesgE5ucqfYEscaz5kMdcIDwU/6+DDoY= github.com/googleapis/gax-go/v2 v2.7.0/go.mod h1:TEop28CZZQ2y+c0VxMUmu1lV+fQx57QpBWsYpwqHJx8= github.com/googleapis/gax-go/v2 v2.7.1/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= +github.com/googleapis/gax-go/v2 v2.8.0/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= +github.com/googleapis/gax-go/v2 v2.10.0/go.mod h1:4UOEnMCrxsSqQ940WnTiD6qJ63le2ev3xfyagutxiPw= +github.com/googleapis/gax-go/v2 v2.11.0/go.mod h1:DxmR61SGKkGLa2xigwuZIQpkCI2S5iydzRfb3peWZJI= +github.com/googleapis/gax-go/v2 v2.12.0/go.mod h1:y+aIqrI5eb1YGMVJfuV3185Ts/D7qKpsEkdD5+I6QGU= github.com/googleapis/go-type-adapters v1.0.0/go.mod h1:zHW75FOG2aur7gAO2B+MLby+cLsWGBF62rFAi7WjWO4= github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= +github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= +github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= +github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= github.com/gorilla/websocket v1.4.1-0.20190629185528-ae1634f6a989/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= +github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= github.com/graph-gophers/graphql-go v0.0.0-20191115155744-f33e81362277/go.mod h1:9CQHMSxwO4MprSdzoIEobiHpoLtHm77vfxsvsIN5Vuc= +github.com/graph-gophers/graphql-go v1.3.0/go.mod h1:9CQHMSxwO4MprSdzoIEobiHpoLtHm77vfxsvsIN5Vuc= +github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= +github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= +github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0/go.mod h1:hgWBS7lorOAVIJEQMi4ZsPv9hVvWI6+ch50m39Pf2Ks= github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3/go.mod h1:o//XUCC/F+yRGJoPO/VU0GSB0f8Nhgmxx0VIRUvaC0w= +github.com/guptarohit/asciigraph v0.5.5/go.mod h1:dYl5wwK4gNsnFf9Zp+l06rFiDZ5YtXM6x7SRWZ3KGag= +github.com/hashicorp/go-bexpr v0.1.10/go.mod h1:oxlubA2vC/gFVfX1A6JGp7ls7uCDlfJn732ehYYg+g0= +github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= +github.com/hashicorp/go-hclog v0.9.2/go.mod h1:5CU+agLiy3J7N7QjHK5d05KxGsuXiQLrjA0H7acj2lQ= +github.com/hashicorp/go-hclog v1.2.0/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ= +github.com/hashicorp/go-retryablehttp v0.7.4/go.mod h1:Jy/gPYAdjqffZ/yFGCFV2doI5wjtH1ewM9u8iYVjtX8= +github.com/hashicorp/go-version v1.2.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= github.com/hashicorp/golang-lru v0.0.0-20160813221303-0a025b7e63ad/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= +github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= +github.com/holiman/billy v0.0.0-20230718173358-1c7e68d277a7/go.mod h1:5GuXa7vkL8u9FkFuWdVvfR5ix8hRB7DbOAaYULamFpc= +github.com/holiman/bloomfilter/v2 v2.0.3/go.mod h1:zpoh+gs7qcpqrHr3dB55AMiJwo0iURXE7ZOP9L9hSkA= +github.com/holiman/uint256 v1.2.0/go.mod h1:y4ga/t+u+Xwd7CpDgZESaRcWy0I7XMlTMA25ApIH5Jw= +github.com/holiman/uint256 v1.2.3 h1:K8UWO1HUJpRMXBxbmaY1Y8IAMZC/RsKB+ArEnnK4l5o= +github.com/holiman/uint256 v1.2.3/go.mod h1:SC8Ryt4n+UBbPbIBKaG9zbbDlp4jOru9xFZmPzLUTxw= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/huin/goupnp v0.0.0-20161224104101-679507af18f3/go.mod h1:MZ2ZmwcBpvOoJ22IJsc7va19ZwoheaBk43rKg12SKag= +github.com/huin/goupnp v1.0.3/go.mod h1:ZxNlw5WqJj6wSsRK5+YfflQGXYfccj5VgQsMNixHM7Y= +github.com/huin/goupnp v1.3.0/go.mod h1:gnGPsThkYa7bFi/KWmEysQRf48l2dvR5bxr2OFckNX8= +github.com/huin/goutil v0.0.0-20170803182201-1ca381bf3150/go.mod h1:PpLOETDnJ0o3iZrZfqZzyLl6l7F3c6L1oWn7OICBi6o= +github.com/hydrogen18/memlistener v0.0.0-20141126152155-54553eb933fb/go.mod h1:qEIFzExnS6016fRpRfxrExeVn2gbClQA99gQhnIcdhE= github.com/iancoleman/strcase v0.2.0/go.mod h1:iwCmte+B7n89clKwxIoIXy/HfoL7AsD47ZCWhYzw7ho= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= +github.com/ianlancetaylor/demangle v0.0.0-20220319035150-800ac71e25c2/go.mod h1:aYm2/VgdVmcIU8iMfdMvDMsRAQjcfZSKFby6HOFvi/w= +github.com/imkira/go-interpol v1.1.0/go.mod h1:z0h2/2T3XF8kyEPpRgJ3kmNv+C43p+I/CoI+jC3w2iA= +github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= +github.com/influxdata/flux v0.65.1/go.mod h1:J754/zds0vvpfwuq7Gc2wRdVwEodfpCFM7mYlOw2LqY= github.com/influxdata/influxdb v1.2.3-0.20180221223340-01288bdb0883/go.mod h1:qZna6X/4elxqT3yI9iZYdZrWWdeFOOprn86kgg4+IzY= +github.com/influxdata/influxdb v1.8.3/go.mod h1:JugdFhsvvI8gadxOI6noqNeeBHvWNTbfYGtiAn+2jhI= +github.com/influxdata/influxdb-client-go/v2 v2.4.0/go.mod h1:vLNHdxTJkIf2mSLvGrpj8TCcISApPoXkaxP8g9uRlW8= +github.com/influxdata/influxdb1-client v0.0.0-20220302092344-a9ab5670611c/go.mod h1:qj24IKcXYK6Iy9ceXlo3Tc+vtHo9lIhSX5JddghvEPo= +github.com/influxdata/influxql v1.1.1-0.20200828144457-65d3ef77d385/go.mod h1:gHp9y86a/pxhjJ+zMjNXiQAA197Xk9wLxaz+fGG+kWk= +github.com/influxdata/line-protocol v0.0.0-20180522152040-32c6aa80de5e/go.mod h1:4kt73NQhadE3daL3WhR5EJ/J2ocX0PZzwxQ0gXJ7oFE= +github.com/influxdata/line-protocol v0.0.0-20200327222509-2487e7298839/go.mod h1:xaLFMmpvUxqXtVkUJfg9QmT88cDaCJ3ZKgdZ78oO8Qo= +github.com/influxdata/line-protocol v0.0.0-20210311194329-9aa0e372d097/go.mod h1:xaLFMmpvUxqXtVkUJfg9QmT88cDaCJ3ZKgdZ78oO8Qo= +github.com/influxdata/promql/v2 v2.12.0/go.mod h1:fxOPu+DY0bqCTCECchSRtWfc+0X19ybifQhZoQNF5D8= +github.com/influxdata/roaring v0.4.13-0.20180809181101-fc520f41fab6/go.mod h1:bSgUQ7q5ZLSO+bKBGqJiCBGAl+9DxyW63zLTujjUlOE= +github.com/influxdata/tdigest v0.0.0-20181121200506-bf2b5ad3c0a9/go.mod h1:Js0mqiSBE6Ffsg94weZZ2c+v/ciT8QRHFOap7EKDrR0= +github.com/influxdata/usage-client v0.0.0-20160829180054-6d3895376368/go.mod h1:Wbbw6tYNvwa5dlB6304Sd+82Z3f7PmVZHVKU637d4po= +github.com/iris-contrib/blackfriday v2.0.0+incompatible/go.mod h1:UzZ2bDEoaSGPbkg6SAB4att1aAwTmVIx/5gCVqeyUdI= +github.com/iris-contrib/go.uuid v2.0.0+incompatible/go.mod h1:iz2lgM/1UnEf1kP0L/+fafWORmlnuysV2EMP8MW+qe0= +github.com/iris-contrib/i18n v0.0.0-20171121225848-987a633949d0/go.mod h1:pMCz62A0xJL6I+umB2YTlFRwWXaDFA0jy+5HzGiJjqI= +github.com/iris-contrib/schema v0.0.1/go.mod h1:urYA3uvUNG1TIIjOSCzHr9/LmbQo8LrOcOqfqxa4hXw= github.com/jackpal/go-nat-pmp v1.0.2-0.20160603034137-1fa385a6f458/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc= +github.com/jackpal/go-nat-pmp v1.0.2/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc= +github.com/jedisct1/go-minisign v0.0.0-20190909160543-45766022959e/go.mod h1:G1CVv03EnqU1wYL2dFwXxW2An0az9JTl/ZsqXQeBlkU= +github.com/jedisct1/go-minisign v0.0.0-20230811132847-661be99b8267/go.mod h1:h1nSAbGFqGVzn6Jyl1R/iCcBUHN4g+gW1u9CoBTrb9E= github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= +github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= +github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= +github.com/jsternberg/zap-logfmt v1.0.0/go.mod h1:uvPs/4X51zdkcm5jXl5SYoN+4RK21K8mysFmDaM/h+o= +github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= +github.com/juju/errors v0.0.0-20181118221551-089d3ea4e4d5/go.mod h1:W54LbzXuIE0boCoNJfwqpmkKJ1O4TCTZMetAt6jGk7Q= +github.com/juju/loggo v0.0.0-20180524022052-584905176618/go.mod h1:vgyd7OREkbtVEN/8IXZe5Ooef3LQePvuBm9UWj6ZL8U= +github.com/juju/testing v0.0.0-20180920084828-472a3e8b2073/go.mod h1:63prj8cnj0tU0S9OHjGJn+b1h0ZghCndfnbQolrYTwA= github.com/julienschmidt/httprouter v1.1.1-0.20170430222011-975b5c4c7c21/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= +github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= +github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= github.com/jung-kurt/gofpdf v1.0.0/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= +github.com/jwilder/encoding v0.0.0-20170811194829-b4e1701a28ef/go.mod h1:Ct9fl0F6iIOGgxJ5npU/IUOhOhqlVrGjyIZc8/MagT0= github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 h1:uC1QfSlInpQF+M0ao65imhwqKnz3Q2z/d8PWZRMQvDM= github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88/go.mod h1:3w7q1U84EfirKl04SVQ/s7nPm1ZPhiXd34z40TNz36k= github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213/go.mod h1:vNUNkEQ1e29fT/6vq2aBdFsgNPmy8qMdSay1npru+Sw= @@ -810,20 +1534,40 @@ github.com/k0kubun/pp v3.0.1+incompatible h1:3tqvf7QgUnZ5tXO6pNAZlrvHgl6DvifjDrd github.com/k0kubun/pp v3.0.1+incompatible/go.mod h1:GWse8YhT0p8pT4ir3ZgBbfZild3tgzSScAn6HmfYukg= github.com/k0kubun/pp/v3 v3.2.0/go.mod h1:ODtJQbQcIRfAD3N+theGCV1m/CBxweERz2dapdz1EwA= github.com/karalabe/usb v0.0.0-20190919080040-51dc0efba356/go.mod h1:Od972xHfMJowv7NGVDiWVxk2zxnWgjLlJzE+F4F7AGU= +github.com/karalabe/usb v0.0.2/go.mod h1:Od972xHfMJowv7NGVDiWVxk2zxnWgjLlJzE+F4F7AGU= +github.com/kataras/golog v0.0.9/go.mod h1:12HJgwBIZFNGL0EJnMRhmvGA0PQGx8VFwrZtM4CqbAk= +github.com/kataras/iris/v12 v12.0.1/go.mod h1:udK4vLQKkdDqMGJJVd/msuMtN6hpYJhg/lSzuxjhO+U= +github.com/kataras/neffos v0.0.10/go.mod h1:ZYmJC07hQPW67eKuzlfY7SO3bC0mw83A3j6im82hfqw= +github.com/kataras/pio v0.0.0-20190103105442-ea782b38602d/go.mod h1:NV88laa9UiiDuX9AhMbDPkGYSPugBOV6yTZB1l2K9Z0= github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8= github.com/kevinburke/go-bindata v3.22.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= github.com/kevinburke/go-bindata v3.23.0+incompatible h1:rqNOXZlqrYhMVVAsQx8wuc+LaA73YcfbQ407wAykyS8= github.com/kevinburke/go-bindata v3.23.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= +github.com/kilic/bls12-381 v0.1.0/go.mod h1:vDTTHJONJ6G+P2R74EhnyotQDTliQDnFEwhdmfzw1ig= +github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= +github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00= +github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/klauspost/asmfmt v1.3.2/go.mod h1:AG8TuvYojzulgDAMCnYn50l/5QV3Bs/tp6j0HLHbNSE= +github.com/klauspost/compress v1.4.0/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= +github.com/klauspost/compress v1.8.2/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= +github.com/klauspost/compress v1.9.0/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= github.com/klauspost/compress v1.15.9/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHUDtV4Yw2GlzU= +github.com/klauspost/compress v1.15.15/go.mod h1:ZcK2JAFqKOpnBlxcLsJzYfrS9X1akm9fHZNnD9+Vo/4= +github.com/klauspost/cpuid v0.0.0-20170728055534-ae7887de9fa5/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= +github.com/klauspost/cpuid v1.2.1/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= github.com/klauspost/cpuid/v2 v2.0.12/go.mod h1:g2LTdtYhdyuGPqyWyv7qRAmj1WBqxuObKfj5c0PQa7c= github.com/klauspost/cpuid/v2 v2.2.0/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY= github.com/klauspost/cpuid/v2 v2.2.4 h1:acbojRNwl3o09bUq+yDCtZFc1aiwaAAxtcn8YkZXnvk= github.com/klauspost/cpuid/v2 v2.2.4/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY= +github.com/klauspost/cpuid/v2 v2.2.5 h1:0E5MSMDEoAulmXNFquVs//DdoomxaoTY1kUhbc/qbZg= +github.com/klauspost/cpuid/v2 v2.2.5/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= +github.com/klauspost/crc32 v0.0.0-20161016154125-cb6bfca970f6/go.mod h1:+ZoRqAPRLkC4NPOvfYeR5KNOrY6TD+/sAC3HXPZgDYg= +github.com/klauspost/pgzip v1.0.2-0.20170402124221-0bf5dcad4ada/go.mod h1:Ch1tH69qFZu15pkjo5kYi6mth2Zzwzt50oCQKQE9RUs= github.com/konsorten/go-windows-terminal-sequences v1.0.1 h1:mweAR1A6xJ3oS2pRaGiHgQ4OO8tzTaLawm8vnODuwDk= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= @@ -836,46 +1580,106 @@ github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= +github.com/kylelemons/godebug v0.0.0-20170224010052-a616ab194758/go.mod h1:B69LEHPfb2qLo0BaaOLcbitczOKLWTsrBG9LczfCD4k= github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= +github.com/labstack/echo/v4 v4.1.11/go.mod h1:i541M3Fj6f76NZtHSj7TXnyM8n2gaodfvfxNnFqi74g= +github.com/labstack/echo/v4 v4.2.1/go.mod h1:AA49e0DZ8kk5jTOOCKNuPR6oTnBS0dYiM4FW1e6jwpg= +github.com/labstack/gommon v0.3.0/go.mod h1:MULnywXg0yavhxWKc+lOruYdAhDwPK9wf0OL7NoOu+k= github.com/leanovate/gopter v0.2.9 h1:fQjYxZaynp97ozCzfOyOuAGOU4aU/z37zf/tOujFk7c= github.com/leanovate/gopter v0.2.9/go.mod h1:U2L/78B+KVFIx2VmW6onHJQzXtFb+p5y3y2Sh+Jxxv8= +github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/logrusorgru/aurora/v4 v4.0.0 h1:sRjfPpun/63iADiSvGGjgA1cAYegEWMPCJdUpJYn9JA= github.com/logrusorgru/aurora/v4 v4.0.0/go.mod h1:lP0iIa2nrnT/qoFXcOZSrZQpJ1o6n2CUf/hyHi2Q4ZQ= github.com/lyft/protoc-gen-star v0.6.0/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= github.com/lyft/protoc-gen-star v0.6.1/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= +github.com/lyft/protoc-gen-star/v2 v2.0.1/go.mod h1:RcCdONR2ScXaYnQC5tUzxzlpA3WVYF7/opLeUgcQs/o= +github.com/lyft/protoc-gen-star/v2 v2.0.3/go.mod h1:amey7yeodaJhXSbf/TlLvWiqQfLOSpEk//mLlc+axEk= +github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= +github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= +github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= +github.com/matryer/moq v0.0.0-20190312154309-6cfb0558e1bd/go.mod h1:9ELz6aaclSIGnZBoaSLZ3NAl1VTufbOrXBPvtcy6WiQ= +github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= github.com/mattn/go-colorable v0.1.0/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= +github.com/mattn/go-colorable v0.1.2/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= github.com/mattn/go-colorable v0.1.7/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= +github.com/mattn/go-colorable v0.1.8/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= +github.com/mattn/go-colorable v0.1.9/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= +github.com/mattn/go-colorable v0.1.12/go.mod h1:u5H1YNBxpqRaxsYJYSkiCWKzEfiAb1Gb520KVy5xxl4= github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= github.com/mattn/go-ieproxy v0.0.0-20190610004146-91bb50d98149/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= github.com/mattn/go-ieproxy v0.0.0-20190702010315-6dee0af9227d/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= +github.com/mattn/go-isatty v0.0.4/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= github.com/mattn/go-isatty v0.0.5-0.20180830101745-3fb116b82035/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= +github.com/mattn/go-isatty v0.0.7/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= +github.com/mattn/go-isatty v0.0.9/go.mod h1:YNRxwqDuOph6SZLI9vUUz6OYw3QyUt7WiY2yME+cCiQ= github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84= github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= +github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= github.com/mattn/go-isatty v0.0.17 h1:BTarxUcIeDqL27Mc+vyvdWYSL28zpIhv3RoTdsLMPng= github.com/mattn/go-isatty v0.0.17/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= +github.com/mattn/go-isatty v0.0.18/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= +github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APPA= +github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= github.com/mattn/go-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.6/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= +github.com/mattn/go-runewidth v0.0.7/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= +github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= github.com/mattn/go-runewidth v0.0.14/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= +github.com/mattn/go-sqlite3 v1.11.0/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= +github.com/mattn/go-sqlite3 v1.14.5/go.mod h1:WVKg1VTActs4Qso6iwGbiFih2UIHo0ENGwNd0Lj+XmI= github.com/mattn/go-sqlite3 v1.14.14/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU= +github.com/mattn/go-sqlite3 v1.14.15/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg= +github.com/mattn/go-tty v0.0.0-20180907095812-13ff1204f104/go.mod h1:XPvLUNfbS4fJH25nqRHfWLMa1ONC8Amw+mIA639KxkE= github.com/mattn/go-tty v0.0.3/go.mod h1:ihxohKRERHTVzN+aSVRwACLCeqIoZAWpoICkkvrWyR0= +github.com/mattn/go-tty v0.0.4/go.mod h1:u5GGXBtZU6RQoKV8gY5W6UhMudbR5vXnUe7j3pxse28= +github.com/mattn/goveralls v0.0.2/go.mod h1:8d1ZMHsd7fW6IRPKQh46F2WRpyib5/X4FOpevwGNQEw= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= +github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= +github.com/mediocregopher/mediocre-go-lib v0.0.0-20181029021733-cb65787f37ed/go.mod h1:dSsfyI2zABAdhcbvkXqgxOxrCsbYeHCPgrZkku60dSg= +github.com/mediocregopher/radix/v3 v3.3.0/go.mod h1:EmfVyvspXz1uZEyPBMyGK+kjWiKQGvsUt6O3Pj+LDCQ= +github.com/microcosm-cc/bluemonday v1.0.2/go.mod h1:iVP4YcDBq+n/5fb23BhYFvIMq/leAFZyRl6bYmGDlGc= github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8/go.mod h1:mC1jAcsrzbxHt8iiaC+zU4b1ylILSosueou12R++wfY= github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3/go.mod h1:RagcQ7I8IeTMnF8JTXieKnO4Z6JCsikNEzj0DwauVzE= github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db/go.mod h1:l0dey0ia/Uv7NcFFVbCLtqEBQbrT4OCwCSKTEv6enCw= +github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= +github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= +github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= +github.com/mitchellh/pointerstructure v1.2.0/go.mod h1:BRAsLI5zgXmw97Lf6s25bs8ohIXc3tViBH44KcwB2g4= +github.com/mmcloughlin/addchain v0.4.0/go.mod h1:A86O+tHqZLMNO4w6ZZ4FlVQEadcoqkyU72HC5wJ4RlU= +github.com/mmcloughlin/profile v0.1.1/go.mod h1:IhHD7q1ooxgwTgjxQYkACGA77oFTDdFVejUS1/tS/qU= +github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= +github.com/modocache/gover v0.0.0-20171022184752-b58185e213c5/go.mod h1:caMODM3PzxT8aQXRPkAt8xlV/e7d7w8GM5g0fa5F0D8= +github.com/montanaflynn/stats v0.6.6/go.mod h1:etXPPgVO6n31NxCd9KQUMvCM+ve0ruNzt6R8Bnaayow= +github.com/montanaflynn/stats v0.7.0/go.mod h1:etXPPgVO6n31NxCd9KQUMvCM+ve0ruNzt6R8Bnaayow= +github.com/moul/http2curl v1.0.0/go.mod h1:8UbvGypXm98wA/IqH45anm5Y2Z6ep6O31QGOAZ3H0fQ= +github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae/go.mod h1:qAyveg+e4CE+eKJXWVjKXM4ck2QobLqTDytGJbLLhJg= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/naoina/go-stringutil v0.1.0/go.mod h1:XJ2SJL9jCtBh+P9q5btrd/Ylo8XwT/h1USek5+NqSA0= github.com/naoina/toml v0.1.2-0.20170918210437-9fafd6967416/go.mod h1:NBIhNtsFMo3G2szEBne+bO4gS192HuIYRqfvOWb4i1E= +github.com/nats-io/nats.go v1.8.1/go.mod h1:BrFz9vVn0fU3AcH9Vn4Kd7W0NpJ651tD5omQ3M8LwxM= +github.com/nats-io/nkeys v0.0.2/go.mod h1:dab7URMsZm6Z/jp9Z5UGa87Uutgc2mVpXLC4B7TDb/4= +github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= +github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/olekukonko/tablewriter v0.0.2-0.20190409134802-7e037d187b0c/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= +github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY= +github.com/onflow/atree v0.6.0/go.mod h1:gBHU0M05qCbv9NN0kijLWMgC47gHVNBIp4KmsVFi0tc= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f h1:Z8/PgTqOgOg02MTRpTBYO2k16FE6z4wEOtaC2WBR9Xo= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f/go.mod h1:xvP61FoOs95K7IYdIYRnNcYQGf4nbF/uuJ0tHf4DRuM= +github.com/onflow/cadence v0.42.6/go.mod h1:raU8va8QRyTa/eUbhej4mbyW2ETePfSaywoo36MddgE= github.com/onflow/cadence v1.0.0-preview.2.0.20240122125204-5ce1f36f95bb h1:OpNQ8+ZPBg5DHchnZyiBySz/OQc4uIeptTm7cBfCvOA= github.com/onflow/cadence v1.0.0-preview.2.0.20240122125204-5ce1f36f95bb/go.mod h1:odXGZZ/wGNA5mwT8bC9v8u8EXACHllB2ABSZK65TGL8= github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= @@ -884,22 +1688,42 @@ github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231212194336-a2802ba36596 github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231212194336-a2802ba36596/go.mod h1:uugR8U8Rlk2Xbn1ne7WWkPIcLReOyyXeQ/6tBg2Lsu8= github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2.0.20240122164005-147ad40664ca h1:7yG8dYqMzWzTZWJ17dnBdS01UDlOBnf1dd1rWKcFdY0= github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2.0.20240122164005-147ad40664ca/go.mod h1:O5+TK1qs2c1R5X4TEQp4m2c/YhlCjwdW7bsRcUB1U8s= +github.com/onflow/flow-go-sdk v0.44.1-0.20240124213231-78d9f08eeae1 h1:mPPWgbBvXa1e4Szh4pScMJSB0JEOoUggLeargIaqrKk= +github.com/onflow/flow-go-sdk v0.44.1-0.20240124213231-78d9f08eeae1/go.mod h1:CfMN55RlTRb3WnKPynmjoqLO2qCmF0EgczN4SSa4gZk= github.com/onflow/flow-go/crypto v0.24.7 h1:RCLuB83At4z5wkAyUCF7MYEnPoIIOHghJaODuJyEoW0= github.com/onflow/flow-go/crypto v0.24.7/go.mod h1:fqCzkIBBMRRkciVrvW21rECKq1oD7Q6u+bCI78lfNX0= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240122215824-10d8a31d1991 h1:UPDAaWUag3epvX+yJ5IrFESQr1P53rDDqw+ShGxg5/k= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240122215824-10d8a31d1991/go.mod h1:CPLntX0UYLgZvvgoHfEwaaeSL3IS/eFzAdfbT0aIhb4= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= +github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= +github.com/onflow/sdks v0.5.0/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/ginkgo v1.10.3/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk= +github.com/onsi/ginkgo v1.13.0/go.mod h1:+REjRxOmWfHCjfv9TTWB1jD1Frx4XydAD3zm1lskyM0= +github.com/onsi/ginkgo v1.14.0/go.mod h1:iSB4RoI2tjJc9BBv4NKIKWKya62Rps+oPG/Lv9klQyY= github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= +github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY= +github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo= +github.com/opentracing/opentracing-go v1.0.2/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= +github.com/opentracing/opentracing-go v1.0.3-0.20180606204148-bd9c31933947/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= +github.com/paulbellamy/ratecounter v0.2.0/go.mod h1:Hfx1hDpSGoqxkVVpBi/IlYD7kChlfo5C6hzIHwPqfFE= github.com/pborman/uuid v0.0.0-20170112150404-1b00554d8222/go.mod h1:VyrYX9gd7irzKovcSS6BIIEwPRkP2Wm2m9ufcdFSJ34= +github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= +github.com/peterh/liner v1.0.1-0.20180619022028-8c1271fcf47f/go.mod h1:xIteQHvHuaLYG9IFj6mSxM0fCKrs34IrEQUhOYuGPHc= github.com/peterh/liner v1.1.1-0.20190123174540-a2c9a5303de7/go.mod h1:CRroGNssyjTd/qIG2FyxByd2S8JEAZXBl4qUrZf8GS0= +github.com/philhofer/fwd v1.0.0/go.mod h1:gk3iGcWd9+svBvR0sR+KPcfE+RNWozjowpeBVG3ZVNU= github.com/phpdave11/gofpdf v1.4.2/go.mod h1:zpO6xFn9yxo3YLyMvW8HcKWVdbNqgIfOOp2dXMnm1mY= github.com/phpdave11/gofpdi v1.0.12/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= github.com/phpdave11/gofpdi v1.0.13/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= +github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= github.com/pierrec/lz4/v4 v4.1.15/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= +github.com/pingcap/errors v0.11.4/go.mod h1:Oi8TUi2kEtXXLMJk9l1cGmz20kV3TaQ0usTwv5KuLY8= +github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4/go.mod h1:N6UoU20jOqggOuDwUaBQpluzLNDqif3kq9z2wpdYEfQ= +github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8/go.mod h1:HKlIX3XHQyzLZPlr7++PzdhaXEj94dEiJgZDTsxEqUI= github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= @@ -907,42 +1731,98 @@ github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI= github.com/pkg/sftp v1.13.1/go.mod h1:3HaPG6Dq1ILlpPZRO0HVMrsydcdLt6HRDccSgb87qRg= +github.com/pkg/term v0.0.0-20180730021639-bffc007b7fd5/go.mod h1:eCbImbZ95eXtAUIbLAuAVnBnwf83mjf6QIVH8SHYwqQ= github.com/pkg/term v1.2.0-beta.2/go.mod h1:E25nymQcrSllhX42Ok8MRm1+hyBdHY0dCeiKZ9jpNGw= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/prashantv/gostub v1.1.0/go.mod h1:A5zLQHz7ieHGG7is6LLXLz7I8+3LZzsrV0P1IAHhP5U= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= +github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= +github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0= +github.com/prometheus/client_golang v1.12.0/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= +github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.2.1-0.20210607210712-147c58e9608a/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= +github.com/prometheus/client_model v0.3.0/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= +github.com/prometheus/client_model v0.4.0/go.mod h1:oMQmHW1/JoDwqLtg57MGgP/Fb1CJEYF2imWWhWtMkYU= github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= +github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/common v0.6.0/go.mod h1:eBmuwkDJBwy6iBfxCBob6t6dR6ENT/y+J+Zk0j9GMYc= +github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= +github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= +github.com/prometheus/common v0.32.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= +github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= +github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= +github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= github.com/prometheus/tsdb v0.6.2-0.20190402121629-4f204dcbc150/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= +github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= +github.com/protolambda/bls12-381-util v0.0.0-20220416220906-d8552aa452c7/go.mod h1:IToEjHuttnUzwZI5KBSM/LOOW3qLbbrHOEfp3SbECGY= github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= +github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= +github.com/retailnext/hllpp v1.0.1-0.20180308014038-101a6d2f8b52/go.mod h1:RDpi1RftBQPUCDRw6SmxeaREsAaRKnOclghuzp/WRzc= github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= github.com/rivo/uniseg v0.4.4 h1:8TfxU8dW6PdqD27gjM8MVNuicgxIjxpm4K7x4jp8sis= github.com/rivo/uniseg v0.4.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= github.com/rjeczalik/notify v0.9.1/go.mod h1:rKwnCoCGeuQnwBtTSPL9Dad03Vh2n40ePRrjvIXnJho= +github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= +github.com/rogpeppe/go-internal v1.8.1/go.mod h1:JeRgkft04UBgHMgCIwADu4Pn6Mtm5d4nPKWu0nJ5d+o= github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= github.com/rs/cors v0.0.0-20160617231935-a62a804a8a00/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= +github.com/rs/cors v1.7.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= github.com/rs/xhandler v0.0.0-20160618193221-ed27b6fd6521/go.mod h1:RvLn4FgxWubrpZHtQLnOf6EwhN2hEMusxZOhcW9H3UQ= +github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= +github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/ruudk/golang-pdf417 v0.0.0-20181029194003-1af4ab5afa58/go.mod h1:6lfFZQK844Gfx8o5WFuvpxWRwnSoipWe/p622j1v06w= github.com/ruudk/golang-pdf417 v0.0.0-20201230142125-a7e3863a1245/go.mod h1:pQAZKsJ8yyVxGRWYNEm9oFB8ieLgKFnamEyDmSA0BRk= +github.com/ryanuber/columnize v2.1.0+incompatible/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= github.com/schollz/progressbar/v3 v3.13.1/go.mod h1:xvrbki8kfT1fzWzBT/UZd9L6GA+jdL7HAgq2RFnO6fQ= +github.com/sclevine/agouti v3.0.0+incompatible/go.mod h1:b4WX9W9L1sfQKXeJf1mUTLZKJ48R1S7H23Ji7oFO5Bw= +github.com/segmentio/kafka-go v0.1.0/go.mod h1:X6itGqS9L4jDletMsxZ7Dz+JFWxM6JHfPOCvTvk+EJo= +github.com/segmentio/kafka-go v0.2.0/go.mod h1:X6itGqS9L4jDletMsxZ7Dz+JFWxM6JHfPOCvTvk+EJo= +github.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo= +github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= github.com/sergi/go-diff v1.2.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= +github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC7eC3UO/RA= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.4.2 h1:SPIRibHv4MatM3XXNO2BJeFLZwZ2LvZgfQ5+UNI2im4= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= +github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= +github.com/sirupsen/logrus v1.9.0/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= +github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= +github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= +github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spaolacci/murmur3 v1.0.1-0.20190317074736-539464a789e9/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= +github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= github.com/spf13/afero v1.3.3/go.mod h1:5KUK8ByomD5Ti5Artl0RtHeI5pTF7MIDuXL3yY520V4= github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= github.com/spf13/afero v1.9.2/go.mod h1:iUV7ddyEEZPO5gA3zD4fJt6iStLlL+Lg4m2cihcDf8Y= +github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= +github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= +github.com/spf13/cobra v0.0.5/go.mod h1:3K3wKZymM7VvHMDS9+Akkh4K60UwM26emMESw8tLCHU= +github.com/spf13/cobra v1.0.0/go.mod h1:/6GTrnGXV9HjY+aR4k0oJ5tcvakLuG6EuKReYlHNrgE= +github.com/spf13/cobra v1.5.0/go.mod h1:dWXEIy2H428czQCjInthrTRUg7yKbok+2Qi/yBIJoUM= +github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= +github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= +github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= +github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s= +github.com/spf13/viper v1.4.0/go.mod h1:PTJ7Z/lr49W6bUbkmS1V3by4uWynFiR9p7+dSq/yZzE= github.com/status-im/keycard-go v0.0.0-20190316090335-8537d3370df4/go.mod h1:RZLeN1LMWmRsyYjvAu+I6Dm9QmlDaIIt+Y+4Kd7Tp+Q= +github.com/status-im/keycard-go v0.2.0/go.mod h1:wlp8ZLbsmrF6g6WjugPAx+IzoLrkdf9+mHxBEeo3Hbg= github.com/steakknife/bloomfilter v0.0.0-20180922174646-6819c0d2a570/go.mod h1:8OR4w3TdeIHIh1g6EMY5p0gVNOovcWC+1vpc7naMuAw= github.com/steakknife/hamming v0.0.0-20180906055917-c99c65617cd3/go.mod h1:hpGUWaI9xL8pRQCTXQgocU38Qw1g0Us7n5PxxTwTCYU= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= @@ -950,6 +1830,7 @@ github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+ github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= +github.com/stretchr/testify v1.2.0/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= @@ -957,24 +1838,60 @@ github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5 github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.7.2/go.mod h1:R6va5+xMeoiuVRoj+gSkQ7d3FALtqAAGI1FQKckRals= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/stretchr/testify v1.8.3/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= +github.com/supranational/blst v0.3.8-0.20220526154634-513d2456b344/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= github.com/supranational/blst v0.3.10 h1:CMciDZ/h4pXDDXQASe8ZGTNKUiVNxVVA5hpci2Uuhuk= github.com/supranational/blst v0.3.10/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= +github.com/supranational/blst v0.3.11/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= github.com/syndtr/goleveldb v1.0.1-0.20190923125748-758128399b1d/go.mod h1:9OrXJhf154huy1nPWmuSrkgjPUtUNhA+Zmy+6AESzuA= +github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7/go.mod h1:q4W45IWZaF22tdD+VEXcAWRA037jwmWEB5VWYORlTpc= github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c h1:HelZ2kAFadG0La9d+4htN4HzQ68Bm2iM9qKMSMES6xg= github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c/go.mod h1:JlzghshsemAMDGZLytTFY8C1JQxQPhnatWqNwUXjggo= github.com/tidwall/pretty v1.2.1/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU= +github.com/tinylib/msgp v1.0.2/go.mod h1:+d+yLhGm8mzTaHzB+wgMYrodPfmZrzkirds8fDWklFE= +github.com/tklauser/go-sysconf v0.3.5/go.mod h1:MkWzOF4RMCshBAMXuhXJs64Rte09mITnppBXY/rYEFI= +github.com/tklauser/go-sysconf v0.3.12/go.mod h1:Ho14jnntGE1fpdOqQEEaiKRpvIavV0hSfmBq8nJbHYI= +github.com/tklauser/numcpus v0.2.2/go.mod h1:x3qojaO3uyYt0i56EW/VUYs7uBvdl2fkfZFu0T9wgjM= +github.com/tklauser/numcpus v0.6.1/go.mod h1:1XfjsgE2zo8GVw7POkMbHENHzVg3GzmoZ9fESEdAacY= +github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d h1:5JInRQbk5UBX8JfUvKh2oYTLMVwj3p6n+wapDDm7hko= github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d/go.mod h1:Nlx5Y115XQvNcIdIy7dZXaNSUpzwBSge4/Ivk93/Yog= github.com/tyler-smith/go-bip39 v1.0.1-0.20181017060643-dbb3b84ba2ef/go.mod h1:sJ5fKU0s6JVwZjjcUEX2zFOnvq0ASQ2K9Zr6cf67kNs= +github.com/tyler-smith/go-bip39 v1.1.0/go.mod h1:gUYDtqQw1JS3ZJ8UWVcGTGqqr6YIN3CWg+kkNaLt55U= +github.com/ugorji/go v1.1.4/go.mod h1:uQMGLiO92mf5W77hV/PUCpI3pbzQx3CRekS0kk+RGrc= +github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljTbGfSG7qAOspJ7OScBnGdDN/yBr0sguwnwf0= github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= +github.com/urfave/cli/v2 v2.3.0/go.mod h1:LJmUH05zAU44vOAcrfzZQKsZbVcdbOG8rtL3/XcUArI= +github.com/urfave/cli/v2 v2.10.2/go.mod h1:f8iq5LtQ/bLxafbdBSLPPNsgaW0l/2fYYEHhAyPlwvo= +github.com/urfave/cli/v2 v2.24.1/go.mod h1:GHupkWPMM0M/sj1a2b4wUrWBPzazNrIjouW6fmdJLxc= +github.com/urfave/cli/v2 v2.25.7/go.mod h1:8qnjx1vcq5s2/wpsqoZFndg2CE5tNFyrTvS6SinrnYQ= +github.com/urfave/negroni v1.0.0/go.mod h1:Meg73S6kFm/4PpbYdq35yYWoCZ9mS/YSx+lKnmiohz4= +github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= +github.com/valyala/fasthttp v1.6.0/go.mod h1:FstJa9V+Pj9vQ7OJie2qMHdwemEDaDiSdBnvPM1Su9w= +github.com/valyala/fasttemplate v1.0.1/go.mod h1:UQGH1tvbgY+Nz5t2n7tXsz52dQxojPUpymEIMZ47gx8= +github.com/valyala/fasttemplate v1.2.1/go.mod h1:KHLXt3tVN2HBp8eijSv/kGJopbvo7S+qRAEEKiv+SiQ= +github.com/valyala/tcplisten v0.0.0-20161114210144-ceec8f93295a/go.mod h1:v3UYOV9WzVtRmSR+PDvWpU/qWl4Wa5LApYYX4ZtKbio= +github.com/willf/bitset v1.1.3/go.mod h1:RjeCKbqT1RxIR/KWY6phxZiaY1IyutSBfGjNPySAYV4= github.com/wsddn/go-ecdh v0.0.0-20161211032359-48726bab9208/go.mod h1:IotVbo4F+mw0EzQ08zFqg7pK3FebNXpaMsRy2RT+Ees= github.com/x448/float16 v0.8.4 h1:qLwI1I70+NjRFUR3zs1JPUCgaCXSh3SW62uAKT1mSBM= github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcYsOfg= +github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= +github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ= +github.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y= +github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= +github.com/xlab/treeprint v0.0.0-20180616005107-d6fb6747feb6/go.mod h1:ce1O1j6UtZfjr22oyGxGLbauSBp2YVXpARAosm7dHBg= +github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q= +github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673/go.mod h1:N3UwUGtsrSj3ccvlPHLoLsHnpR27oXr4ZE984MbSER8= +github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0/go.mod h1:/LWChgwKmvncFJFHJ7Gvn9wZArjbV5/FppcK2fKk/tI= +github.com/yudai/gojsondiff v1.0.0/go.mod h1:AY32+k2cwILAkW1fbgxQ5mUmMiZFgLIV+FBNExI05xg= +github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82/go.mod h1:lgjkn3NuSvDfVJdfcVVdX+jpBxNmX4rDAzaS45IcYoM= +github.com/yudai/pp v2.0.1+incompatible/go.mod h1:PuxR/8QJ7cyCkFp/aUDS+JY727OFEZkTdatxwunjIkc= github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= @@ -990,6 +1907,7 @@ github.com/zeebo/blake3 v0.2.3/go.mod h1:mjJjZpnsyIVtVgTOSpJ9vmRE4wgDeyt2HU3qXvv github.com/zeebo/pcg v1.0.1 h1:lyqfGeWiv4ahac6ttHs+I5hwtH/+1mrhlCtVNQM2kHo= github.com/zeebo/pcg v1.0.1/go.mod h1:09F0S9iiKrwn9rlI5yjLkmrug154/YRW6KnnXVDM/l4= github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= +go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= @@ -1001,25 +1919,53 @@ go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= go.opentelemetry.io/otel v1.8.0/go.mod h1:2pkj+iMj0o03Y+cW6/m8Y4WkRdYN3AvCXCnzRMp9yvM= go.opentelemetry.io/otel v1.14.0 h1:/79Huy8wbf5DnIPhemGB+zEPVwnN6fuQybr/SRXa6hM= go.opentelemetry.io/otel v1.14.0/go.mod h1:o4buv+dJzx8rohcUeRmWUZhqupFvzWis188WlggnNeU= +go.opentelemetry.io/otel v1.16.0 h1:Z7GVAX/UkAXPKsy94IU+i6thsQS4nb7LviLpnaNeW8s= +go.opentelemetry.io/otel v1.16.0/go.mod h1:vl0h9NUa1D5s1nv3A5vZOYWn8av4K8Ml6JDeHrT/bx4= +go.opentelemetry.io/otel/metric v1.16.0/go.mod h1:QE47cpOmkwipPiefDwo2wDzwJrlfxxNYodqc4xnGCo4= go.opentelemetry.io/otel/trace v1.8.0/go.mod h1:0Bt3PXY8w+3pheS3hQUt+wow8b1ojPaTBoTCh2zIFI4= go.opentelemetry.io/otel/trace v1.14.0/go.mod h1:8avnQLK+CG77yNLUae4ea2JDQ6iT+gozhnZjy/rw9G8= +go.opentelemetry.io/otel/trace v1.16.0/go.mod h1:Yt9vYq1SdNz3xdjZZK7wcXv1qv2pwLkqr2QVwea0ef0= go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= go.opentelemetry.io/proto/otlp v0.15.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= +go.opentelemetry.io/proto/otlp v0.19.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= +go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= +go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= +go.uber.org/automaxprocs v1.5.2/go.mod h1:eRbA25aqJrxAbsLO0xy5jVwPt7FQnRgjW+efnwa1WM0= go.uber.org/goleak v1.1.10 h1:z+mqJhf6ss6BSfSM671tgKyZBFPTTJM+HLxnhPC3wu0= go.uber.org/goleak v1.1.10/go.mod h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A= +go.uber.org/goleak v1.2.1/go.mod h1:qlT2yGI9QafXHhZZLxlSuNsMw3FFLxBr+tBRlmO1xH4= +go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= +go.uber.org/zap v1.9.1/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= +go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190909091759-094676da4a83/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200311171314-f7b00557c8c4/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= +golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.0.0-20220314234659-1baeb1ce4c0b/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw= +golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= +golang.org/x/crypto v0.9.0/go.mod h1:yrmDGqONDYtNj3tH8X9dzUun2m2lzPa9ngI6/RUPGR0= +golang.org/x/crypto v0.10.0/go.mod h1:o4eNf7Ede1fv+hwOwZsTHl9EsPFO6q6ZvYR8vYfY45I= +golang.org/x/crypto v0.11.0/go.mod h1:xgJhtzW8F9jGdVFWZESrid1U1bjeNy4zgy5cRr/CIio= +golang.org/x/crypto v0.12.0/go.mod h1:NF0Gs7EO5K4qLn+Ylc+fih8BSTeIjAP05siRnAh98yw= golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliYc= +golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= golang.org/x/crypto v0.16.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= golang.org/x/crypto v0.17.0 h1:r8bRNjWL3GshPW3gkd+RpvzWrZAwPS49OmTGZ/uhM4k= golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= @@ -1037,7 +1983,11 @@ golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u0 golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= +golang.org/x/exp v0.0.0-20220426173459-3bcf042a4bf5/go.mod h1:lgLbSvA5ygNOMpwM/9anMpWVlVJ7Z+cHWq/eFuinpGE= golang.org/x/exp v0.0.0-20220827204233-334a2380cb91/go.mod h1:cyybsKvd6eL0RnXn6p/Grxp8F5bW7iYuBgsNCOHpMYE= +golang.org/x/exp v0.0.0-20230321023759-10a507213a29/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= +golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df/go.mod h1:FXUEEKJgO7OQYeo8N01OfiKP8RXMtf6e8aTskBGqWdc= +golang.org/x/exp v0.0.0-20230905200255-921286631fa9/go.mod h1:S2oDrQGGwySpoQPVqRShND87VCbxmc6bL1Yd2oYrm6k= golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc h1:ao2WRsKSzW6KuUY9IWPwWahcHCgR0s52IfwutMfEbdM= golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc/go.mod h1:iRJReGqOEeBhDZGkGbynYwcHlctCvnjTYIamk7uXpHI= golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs= @@ -1053,6 +2003,8 @@ golang.org/x/image v0.0.0-20210607152325-775e3b0c77b9/go.mod h1:023OzeP/+EPmXeap golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= golang.org/x/image v0.0.0-20211028202545-6944b10bf410/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= golang.org/x/image v0.0.0-20220302094943-723b81ca9867/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= +golang.org/x/image v0.5.0/go.mod h1:FVC7BI/5Ym8R25iw5OLsgshdUBbT1h5jZTpA+mvAdZ4= +golang.org/x/image v0.6.0/go.mod h1:MXLdDR43H7cDJq5GEGXEVeeNhPgi+YYEQ2pC1byI1x0= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= @@ -1079,25 +2031,36 @@ golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.5.0/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= +golang.org/x/mod v0.6.0-dev.0.20211013180041-c96bc1413d57/go.mod h1:3p9vT2HGsQu2K1YbXdKPJLVgG5VJdoTa1poYQBtP1AY= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= +golang.org/x/mod v0.6.0/go.mod h1:4mET923SAdbXp2ki8ey+zGs1SLqsuM2Y0uvdZR/fUNI= golang.org/x/mod v0.7.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/mod v0.9.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/mod v0.10.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/mod v0.11.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/mod v0.14.0 h1:dGoOF9QVLYng8IHTm7BAyWqCqSheQ5pYWGhzW00YJr0= golang.org/x/mod v0.14.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190327091125-710a502c58a2/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190522155817-f3200d17e092/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= +golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= @@ -1108,20 +2071,27 @@ golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/ golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20200813134508-3edf25e44fcc/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20201010224723-4f7140c49acb/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210220033124-5f55cee0dc0d/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20210610132358-84b48f89b13b/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= @@ -1139,13 +2109,21 @@ golang.org/x/net v0.0.0-20221012135044-0b7e1fb9d458/go.mod h1:YDH+HFinaLZZlnHAfS golang.org/x/net v0.0.0-20221014081412-f15817d10f9b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco= golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY= +golang.org/x/net v0.4.0/go.mod h1:MBQ8lrhLObU/6UmLb4fmbmk5OcyYmqtbGd/9yIeKjEE= golang.org/x/net v0.5.0/go.mod h1:DivGGAXEgPSlEBzxGzZI+ZLohi+xUj054jfeKui00ws= golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= +golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= +golang.org/x/net v0.11.0/go.mod h1:2L/ixqYpgIVXmeoSA/4Lu7BzTG4KIyPIryS4IsOd1oQ= +golang.org/x/net v0.12.0/go.mod h1:zEVYFnQC7m/vmpQFELhcD1EWkZlX69l4oqgmer6hfKA= +golang.org/x/net v0.14.0/go.mod h1:PpSgVXXLK0OxS0F31C1/tv6XNguvCrnXIDrFMspZIUI= golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk= +golang.org/x/net v0.16.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= +golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= golang.org/x/net v0.19.0/go.mod h1:CfAk/cbD4CthTvqiEl8NpboMuiuOYsAr/7NOjZJtv1U= +golang.org/x/oauth2 v0.0.0-20170207211851-4464e7848382/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -1174,6 +2152,12 @@ golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783/go.mod h1:h4gKUeWbJ4rQPri golang.org/x/oauth2 v0.4.0/go.mod h1:RznEsdpjGAINPTOF0UH/t+xJ75L18YO3Ho6Pyn+uRec= golang.org/x/oauth2 v0.5.0/go.mod h1:9/XBHVqLaWO3/BRHs5jbpYCnOZVjj5V0ndyaAM7KB4I= golang.org/x/oauth2 v0.6.0/go.mod h1:ycmewcwgD4Rpr3eZJLSB4Kyyljb3qDh40vJ8STE5HKw= +golang.org/x/oauth2 v0.7.0/go.mod h1:hPLQkd9LyjfXTiRohC/41GhcFqxisoUQ99sCUOHO9x4= +golang.org/x/oauth2 v0.8.0/go.mod h1:yr7u4HXZRm1R1kBWqr/xKNqewf0plRYoB7sla+BCIXE= +golang.org/x/oauth2 v0.10.0/go.mod h1:kTpgurOux7LqtuxjuyZa4Gj2gdezIt/jQtGnNFfypQI= +golang.org/x/oauth2 v0.11.0/go.mod h1:LdF7O/8bLR/qWK9DrpXmbHLTouvRHK0SgJl0GmDBchk= +golang.org/x/oauth2 v0.13.0/go.mod h1:/JMhi4ZRXAf4HG9LiNmxvk+45+96RUlVThiH8FzNBn0= +golang.org/x/perf v0.0.0-20230113213139-801c7ef9e5c5/go.mod h1:UBKtEnL8aqnd+0JHqZ+2qoMDwtuy6cYhhKNoHLBiTQc= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -1190,11 +2174,16 @@ golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.2.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= +golang.org/x/sync v0.4.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= golang.org/x/sync v0.5.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181205085412-a5c9d58dba9a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -1204,12 +2193,20 @@ golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200107162124-548cf772de50/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -1222,43 +2219,59 @@ golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200519105757-fe76b779f299/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200814200057-3d37ad5750ed/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200826173525-f9321e4c35a6/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200909081042-eff7692f9009/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200918174421-af09f7315aff/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201101102859-da207088b7d1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210304124612-50617c2ba197/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210316164454-77fc1eacc6aa/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210324051608-47abb6519492/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210420205809-ac73e9fd8988/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210616045830-e2b7044e8c71/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211020174200-9d6173849985/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211210111614-af8b64212486/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220502124256-b6088ccd6cba/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= @@ -1268,28 +2281,44 @@ golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220624220833-87e55d714810/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220829200755-d48e67d00261/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220919091848-fb04ddd9f9c8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.4.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.9.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.10.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= +golang.org/x/term v0.3.0/go.mod h1:q750SLmJuPmVoN1blW3UFBPREJfb1KmY3vwxfr+nFDA= golang.org/x/term v0.4.0/go.mod h1:9P2UbLfCdcvo3p/nzKvsmas4TnlujnuoV9hGgYzW1lQ= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= +golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY= golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= +golang.org/x/term v0.9.0/go.mod h1:M6DEAAIenWoTxdKrOltXcmDY3rSplQUkrvaDU5FcQyo= +golang.org/x/term v0.10.0/go.mod h1:lpqdcUyK/oCiQxvxVrppt5ggO2KCZ5QblwqPnfZ6d5o= +golang.org/x/term v0.11.0/go.mod h1:zC9APTIj3jG3FdV/Ons+XE1riIZXG4aZ4GTHiPZJPIU= golang.org/x/term v0.12.0/go.mod h1:owVbMEjm3cBLCHdkQu9b1opXd4ETQWc3BhuQGKgXgvU= +golang.org/x/term v0.13.0/go.mod h1:LTmsnFJwVN6bCy1rVCoS+qHT1HhALEFxKncY3WNNh4U= golang.org/x/term v0.15.0/go.mod h1:BDl952bC7+uMoWR75FIrCDx79TPU9oHkTZ9yRbYOrX0= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -1307,22 +2336,33 @@ golang.org/x/text v0.6.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= +golang.org/x/text v0.10.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= +golang.org/x/text v0.11.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= +golang.org/x/text v0.12.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20201208040808-7e3f01d25324/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20220922220347-f3bd1da661af/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.1.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180525024113-a5b4c53f6e8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20181221001348-537d06c36207/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190206041539-40960b6deb8e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190327201419-c70d86f8b7cf/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= @@ -1338,9 +2378,11 @@ golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtn golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191126055441-b0650ceb63d9/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200108203644-89082a384178/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= @@ -1356,6 +2398,7 @@ golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roY golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= @@ -1365,6 +2408,7 @@ golang.org/x/tools v0.0.0-20201124115921-2c860bdd6e78/go.mod h1:emZCQorbCU4vsT4f golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= @@ -1372,11 +2416,17 @@ golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.8-0.20211029000441-d6a9af8af023/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= golang.org/x/tools v0.1.8/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= golang.org/x/tools v0.1.9/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= +golang.org/x/tools v0.2.0/go.mod h1:y4OqIKeOV/fWJetJ8bXPU1sEVniLMIyDAZWeHdV+NTA= golang.org/x/tools v0.3.0/go.mod h1:/rWhSS2+zyEVwoJf8YAX6L2f0ntZ7Kn/mGgAWcipA5k= golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= +golang.org/x/tools v0.7.0/go.mod h1:4pg6aUX35JBAogB10C9AtvVL+qowtN4pT3CGSQex14s= +golang.org/x/tools v0.8.0/go.mod h1:JxBZ99ISMI5ViVkT1tr6tdNmXeTrcpVSD3vZ1RsRdN4= +golang.org/x/tools v0.9.1/go.mod h1:owI94Op576fPu3cIGQeHs3joujW/2Oc6MtlxbF5dfNc= +golang.org/x/tools v0.10.0/go.mod h1:UJwyiVBsOA2uwvK/e5OY3GTpDUJriEd+/YlqAwLPmyM= golang.org/x/tools v0.13.0/go.mod h1:HvlwmtVNQAhOuCjW7xxvovg8wbNq7LwfXh/k7wXUl58= golang.org/x/tools v0.16.0 h1:GO788SKMRunPIBCXiQyo2AaexLstOrVhuAL5YwsckQM= golang.org/x/tools v0.16.0/go.mod h1:kYVVN6I1mBNoB1OX+noeBjbRk4IUEPa7JJ+TJMEooJ0= @@ -1390,15 +2440,22 @@ golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f/go.mod h1:K8+ghG5WaK9qNq golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= gonum.org/v1/gonum v0.0.0-20180816165407-929014505bf4/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo= +gonum.org/v1/gonum v0.0.0-20181121035319-3f7ecaa7e8ca/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo= +gonum.org/v1/gonum v0.6.0/go.mod h1:9mxDZsDKxgMAuccQkewq682L+0eCu4dCN2yonUJTCLU= gonum.org/v1/gonum v0.6.1/go.mod h1:9mxDZsDKxgMAuccQkewq682L+0eCu4dCN2yonUJTCLU= gonum.org/v1/gonum v0.8.2/go.mod h1:oe/vMfY3deqTw+1EZJhuvEW2iwGF1bW9wwu7XCu0+v0= gonum.org/v1/gonum v0.9.3/go.mod h1:TZumC3NeyVQskjXqmyWt4S3bINhy7B4eYwW69EbyX+0= gonum.org/v1/gonum v0.11.0 h1:f1IJhK4Km5tBJmaiJXtk/PkL4cdVX6J+tGiM187uT5E= gonum.org/v1/gonum v0.11.0/go.mod h1:fSG4YDCxxUZQJ7rKsQrj0gMOg00Il0Z96/qMA4bVQhA= +gonum.org/v1/gonum v0.13.0 h1:a0T3bh+7fhRyqeNbiC3qVHYmkiQgit3wnNan/2c0HMM= +gonum.org/v1/gonum v0.13.0/go.mod h1:/WPYRckkfWrhWefxyYTfrTtQR0KH4iyHNuzxqXAKyAU= +gonum.org/v1/netlib v0.0.0-20181029234149-ec6d1f5cefe6/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= gonum.org/v1/netlib v0.0.0-20190313105609-8cb42192e0e0/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= gonum.org/v1/plot v0.0.0-20190515093506-e2840ee46a6b/go.mod h1:Wt8AAjI+ypCyYX3nZBvf6cAIx93T+c/OS2HFAYskSZc= gonum.org/v1/plot v0.9.0/go.mod h1:3Pcqqmp6RHvJI72kgb8fThyUnav364FOsdDo2aGW5lY= +gonum.org/v1/plot v0.10.0/go.mod h1:JWIHJ7U20drSQb/aDpTetJzfC1KlAPldJLpkSy88dvQ= gonum.org/v1/plot v0.10.1/go.mod h1:VZW5OlhkL1mysU9vaqNHnsy86inf6Ot+jB3r+BczCEo= +google.golang.org/api v0.0.0-20170206182103-3d017632ea10/go.mod h1:4mhQ8q/RsB7i+udVvVy5NUi08OU8ZlA0gRVgrF7VFY0= google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= @@ -1456,6 +2513,15 @@ google.golang.org/api v0.108.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/ google.golang.org/api v0.110.0/go.mod h1:7FC4Vvx1Mooxh8C5HWjzZHcavuS2f6pmJpZx60ca7iI= google.golang.org/api v0.111.0/go.mod h1:qtFHvU9mhgTJegR31csQ+rwxyUTHOKFqCKWp1J0fdw0= google.golang.org/api v0.114.0/go.mod h1:ifYI2ZsFK6/uGddGfAD5BMxlnkBqCmqHSDUVi45N5Yg= +google.golang.org/api v0.118.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjYK+5E= +google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= +google.golang.org/api v0.124.0/go.mod h1:xu2HQurE5gi/3t1aFCvhPD781p0a3p11sdunTJ2BlP4= +google.golang.org/api v0.125.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= +google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= +google.golang.org/api v0.128.0/go.mod h1:Y611qgqaE92On/7g65MQgxYul3c0rEB894kniWLY750= +google.golang.org/api v0.139.0/go.mod h1:CVagp6Eekz9CjGZ718Z+sloknzkDJE7Vc1Ckj9+viBk= +google.golang.org/api v0.149.0/go.mod h1:Mwn1B7JTXrzXtnvmzQE2BD6bYZQ8DShKZDZbeN9I7qI= +google.golang.org/api v0.151.0/go.mod h1:ccy+MJ6nrYFgE3WgRx/AMXOxOmU8Q4hSa+jjibzhxcg= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -1463,11 +2529,13 @@ google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/genproto v0.0.0-20180518175338-11a468237815/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190716160619-c506a9f90610/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= @@ -1475,6 +2543,7 @@ google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvx google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200108215221-bd8f9a0ef82f/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA= @@ -1576,6 +2645,7 @@ google.golang.org/genproto v0.0.0-20221118155620-16455021b5e6/go.mod h1:rZS5c/ZV google.golang.org/genproto v0.0.0-20221201164419-0e50fba7f41c/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= google.golang.org/genproto v0.0.0-20221201204527-e3fa12d562f3/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= google.golang.org/genproto v0.0.0-20221202195650-67e5cbc046fd/go.mod h1:cTsE614GARnxrLsqKREzmNYJACSWWpAWdNMwnD7c2BE= +google.golang.org/genproto v0.0.0-20221207170731-23e4bf6bdc37/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= google.golang.org/genproto v0.0.0-20221227171554-f9683d7f8bef/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= google.golang.org/genproto v0.0.0-20230112194545-e10362b5ecf9/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= @@ -1590,8 +2660,67 @@ google.golang.org/genproto v0.0.0-20230222225845-10f96fb3dbec/go.mod h1:3Dl5ZL0q google.golang.org/genproto v0.0.0-20230223222841-637eb2293923/go.mod h1:3Dl5ZL0q0isWJt+FVcfpQyirqemEuLAK/iFvg1UP1Hw= google.golang.org/genproto v0.0.0-20230303212802-e74f57abe488/go.mod h1:TvhZT5f700eVlTNwND1xoEZQeWTB2RY/65kplwl/bFA= google.golang.org/genproto v0.0.0-20230306155012-7f2fa6fef1f4/go.mod h1:NWraEVixdDnqcqQ30jipen1STv2r/n24Wb7twVTGR4s= +google.golang.org/genproto v0.0.0-20230320184635-7606e756e683/go.mod h1:NWraEVixdDnqcqQ30jipen1STv2r/n24Wb7twVTGR4s= +google.golang.org/genproto v0.0.0-20230323212658-478b75c54725/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= +google.golang.org/genproto v0.0.0-20230330154414-c0448cd141ea/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= +google.golang.org/genproto v0.0.0-20230331144136-dcfb400f0633/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= +google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= +google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU= +google.golang.org/genproto v0.0.0-20230525234025-438c736192d0/go.mod h1:9ExIQyXL5hZrHzQceCwuSYwZZ5QZBazOcprJ5rgs3lY= +google.golang.org/genproto v0.0.0-20230526161137-0005af68ea54/go.mod h1:zqTuNwFlFRsw5zIts5VnzLQxSRqh+CGOTVMlYbY0Eyk= +google.golang.org/genproto v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:zqTuNwFlFRsw5zIts5VnzLQxSRqh+CGOTVMlYbY0Eyk= +google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:xZnkP7mREFX5MORlOPEzLMr+90PPZQ2QWzrVTWfAq64= +google.golang.org/genproto v0.0.0-20230629202037-9506855d4529/go.mod h1:xZnkP7mREFX5MORlOPEzLMr+90PPZQ2QWzrVTWfAq64= +google.golang.org/genproto v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:O9kGHb51iE/nOGvQaDUuadVYqovW56s5emA88lQnj6Y= +google.golang.org/genproto v0.0.0-20230711160842-782d3b101e98/go.mod h1:S7mY02OqCJTD0E1OiQy1F72PWFB4bZJ87cAtLPYgDR0= +google.golang.org/genproto v0.0.0-20230726155614-23370e0ffb3e/go.mod h1:0ggbjUrZYpy1q+ANUS30SEoGZ53cdfwtbuG7Ptgy108= +google.golang.org/genproto v0.0.0-20230803162519-f966b187b2e5/go.mod h1:oH/ZOT02u4kWEp7oYBGYFFkCdKS/uYR9Z7+0/xuuFp8= +google.golang.org/genproto v0.0.0-20230821184602-ccc8af3d0e93/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4= +google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4= +google.golang.org/genproto v0.0.0-20230913181813-007df8e322eb/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4= +google.golang.org/genproto v0.0.0-20230920204549-e6e6cdab5c13/go.mod h1:CCviP9RmpZ1mxVr8MUjCnSiY09IbAXZxhLE6EhHIdPU= +google.golang.org/genproto v0.0.0-20231002182017-d307bd883b97/go.mod h1:t1VqOqqvce95G3hIDCT5FeO3YUc6Q4Oe24L/+rNMxRk= +google.golang.org/genproto v0.0.0-20231012201019-e917dd12ba7a/go.mod h1:EMfReVxb80Dq1hhioy0sOsY9jCE46YDgHlJ7fWVUWRE= +google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b/go.mod h1:CgAqfJo+Xmu0GwA0411Ht3OU3OntXwsGmrmjI8ioGXI= +google.golang.org/genproto/googleapis/api v0.0.0-20230525234020-1aefcd67740a/go.mod h1:ts19tUU+Z0ZShN1y3aPyq2+O3d5FUNNgT6FtOzmrNn8= +google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= +google.golang.org/genproto/googleapis/api v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= +google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= +google.golang.org/genproto/googleapis/api v0.0.0-20230629202037-9506855d4529/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= +google.golang.org/genproto/googleapis/api v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:mPBs5jNgx2GuQGvFwUvVKqtn6HsUw9nP64BedgvqEsQ= +google.golang.org/genproto/googleapis/api v0.0.0-20230711160842-782d3b101e98/go.mod h1:rsr7RhLuwsDKL7RmgDDCUc6yaGr1iqceVb5Wv6f6YvQ= +google.golang.org/genproto/googleapis/api v0.0.0-20230726155614-23370e0ffb3e/go.mod h1:rsr7RhLuwsDKL7RmgDDCUc6yaGr1iqceVb5Wv6f6YvQ= +google.golang.org/genproto/googleapis/api v0.0.0-20230803162519-f966b187b2e5/go.mod h1:5DZzOUPCLYL3mNkQ0ms0F3EuUNZ7py1Bqeq6sxzI7/Q= +google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d/go.mod h1:KjSP20unUpOx5kyQUFa7k4OJg0qeJ7DEZflGDu2p6Bk= +google.golang.org/genproto/googleapis/api v0.0.0-20230913181813-007df8e322eb/go.mod h1:KjSP20unUpOx5kyQUFa7k4OJg0qeJ7DEZflGDu2p6Bk= +google.golang.org/genproto/googleapis/api v0.0.0-20230920204549-e6e6cdab5c13/go.mod h1:RdyHbowztCGQySiCvQPgWQWgWhGnouTdCflKoDBt32U= +google.golang.org/genproto/googleapis/api v0.0.0-20231002182017-d307bd883b97/go.mod h1:iargEX0SFPm3xcfMI0d1domjg0ZF4Aa0p2awqyxhvF0= +google.golang.org/genproto/googleapis/api v0.0.0-20231012201019-e917dd12ba7a/go.mod h1:SUBoKXbI1Efip18FClrQVGjWcyd0QZd8KkvdP34t7ww= +google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b/go.mod h1:IBQ646DjkDkvUIsVq/cc03FUFQ9wbZu7yE396YcL870= +google.golang.org/genproto/googleapis/bytestream v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:ylj+BE99M198VPbBh6A8d9n3w8fChvyLK3wwBOjXBFA= +google.golang.org/genproto/googleapis/bytestream v0.0.0-20230807174057-1744710a1577/go.mod h1:NjCQG/D8JandXxM57PZbAJL1DCNL6EypA0vPPwfsc7c= +google.golang.org/genproto/googleapis/bytestream v0.0.0-20231030173426-d783a09b4405/go.mod h1:GRUCuLdzVqZte8+Dl/D4N25yLzcGqqWaYkeVOwulFqw= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234015-3fc162c6f38a/go.mod h1:xURIpW9ES5+/GZhnV6beoEtxQrnkRGIfP5VQG2tCBLc= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230629202037-9506855d4529/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:8mL13HKkDa+IuJ8yruA3ci0q+0vsUz4m//+ottjwS5o= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98/go.mod h1:TUfxEVdsvPg18p6AslUXFoLdpED4oBnGwyqk3dV1XzM= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230731190214-cbb8c96f2d6d/go.mod h1:TUfxEVdsvPg18p6AslUXFoLdpED4oBnGwyqk3dV1XzM= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230803162519-f966b187b2e5/go.mod h1:zBEcrKX2ZOcEkHWxBPAIvYUWOKKMIhYcmNiUIu2ji3I= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230920183334-c177e329c48b/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230920204549-e6e6cdab5c13/go.mod h1:KSqppvjFjtoCI+KGd4PELB0qLNxdJHRGqRI09mB6pQA= +google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97/go.mod h1:v7nGkzlmW8P3n/bKmWBn2WpBjpOEx8Q6gMueudAmKfY= +google.golang.org/genproto/googleapis/rpc v0.0.0-20231012201019-e917dd12ba7a/go.mod h1:4cYg8o5yUbm77w8ZX00LhMVNl/YVBFJRYWDc0uYWMs0= +google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b/go.mod h1:swOH3j0KzcDDgGUWr+SNpyTen5YrXjS3eyPzFYKc6lc= +google.golang.org/genproto/googleapis/rpc v0.0.0-20231030173426-d783a09b4405/go.mod h1:67X1fPuzjcrkymZzZV1vvkFeTn2Rvc6lYF9MYFGCcwE= +google.golang.org/grpc v0.0.0-20170208002647-2a6bf6142e96/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= +google.golang.org/grpc v1.12.0/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= +google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY= @@ -1627,7 +2756,17 @@ google.golang.org/grpc v1.49.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCD google.golang.org/grpc v1.50.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= google.golang.org/grpc v1.50.1/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= google.golang.org/grpc v1.51.0/go.mod h1:wgNDFcnuBGmxLKI/qn4T+m5BtEBYXJPvibbUPsAIPww= +google.golang.org/grpc v1.52.0/go.mod h1:pu6fVzoFb+NBYNAvQL08ic+lvB2IojljRYuun5vorUY= +google.golang.org/grpc v1.52.3/go.mod h1:pu6fVzoFb+NBYNAvQL08ic+lvB2IojljRYuun5vorUY= google.golang.org/grpc v1.53.0/go.mod h1:OnIrk0ipVdj4N5d9IUoFUx72/VlD7+jUsHwZgwSMQpw= +google.golang.org/grpc v1.54.0/go.mod h1:PUSEXI6iWghWaB6lXM4knEgpJNu2qUcKfDtNci3EC2g= +google.golang.org/grpc v1.55.0/go.mod h1:iYEXKGkEBhg1PjZQvoYEVPTDkHo1/bjTnfwTeGONTY8= +google.golang.org/grpc v1.56.1/go.mod h1:I9bI3vqKfayGqPUAwGdOSu7kt6oIJLixfffKrpXqQ9s= +google.golang.org/grpc v1.56.2/go.mod h1:I9bI3vqKfayGqPUAwGdOSu7kt6oIJLixfffKrpXqQ9s= +google.golang.org/grpc v1.57.0/go.mod h1:Sd+9RMTACXwmub0zcNY2c4arhtrbBYD1AUHI/dt16Mo= +google.golang.org/grpc v1.58.2/go.mod h1:tgX3ZQDlNJGU96V6yHh1T/JeoBQ2TXdr43YbYSsCJk0= +google.golang.org/grpc v1.58.3/go.mod h1:tgX3ZQDlNJGU96V6yHh1T/JeoBQ2TXdr43YbYSsCJk0= +google.golang.org/grpc v1.59.0/go.mod h1:aUPDwccQo6OTjy7Hct4AfBPD1GptF4fyUjIkQ9YtF98= google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= @@ -1646,26 +2785,39 @@ google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqw google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.29.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= +gopkg.in/go-playground/assert.v1 v1.2.1/go.mod h1:9RXL0bg/zibRAgZUYszZSwO/z8Y/a8bDuhia5mkpMnE= +gopkg.in/go-playground/validator.v8 v8.18.2/go.mod h1:RX2a/7Ha8BgOhfk7j780h4/u/RRjR0eouCJSH80/M2Y= +gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce/go.mod h1:yeKp02qBN3iKW1OzL3MGk2IdtZzaj7SFntXj72NppTA= +gopkg.in/natefinch/lumberjack.v2 v2.0.0/go.mod h1:l0ndWWf7gzL7RNwBG7wST/UCcT4T24xpD6X8LsfU/+k= gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce/go.mod h1:5AcXVHNjg+BDxry382+8OKon8SEWiKktQR07RKPsv1c= gopkg.in/olebedev/go-duktape.v3 v3.0.0-20200316214253-d7b0ff38cac9/go.mod h1:uAJfkITjFhyEEuUfm7bsmCZRbW5WRq8s9EY8HZ6hCns= +gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= gopkg.in/src-d/go-billy.v4 v4.3.2/go.mod h1:nDjArDMp+XMs1aFAESLRjfGSgfvoYN0hDfzEk0GjC98= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= gopkg.in/urfave/cli.v1 v1.20.0/go.mod h1:vuBzUtMdQeixQj8LVd+/98pzhxNGQoyuPBlsXHOQNO0= +gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.0/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= @@ -1679,17 +2831,23 @@ honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9 honnef.co/go/tools v0.1.3/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las= lukechampine.com/blake3 v1.1.7 h1:GgRMhmdsuK8+ii6UZFDL8Nb+VyMwadAgcJyfYHxG6n0= lukechampine.com/blake3 v1.1.7/go.mod h1:tkKEOtDkNtklkXtLNEOGNq5tcV90tJiA1vAA12R78LA= +lukechampine.com/blake3 v1.2.1/go.mod h1:0OFRp7fBtAylGVCO40o87sbupkyIGgbpv1+M1k1LM6k= lukechampine.com/uint128 v1.1.1/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= lukechampine.com/uint128 v1.2.0/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= modernc.org/cc/v3 v3.36.0/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= modernc.org/cc/v3 v3.36.2/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= modernc.org/cc/v3 v3.36.3/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= +modernc.org/cc/v3 v3.37.0/go.mod h1:vtL+3mdHx/wcj3iEGz84rQa8vEqR6XM84v5Lcvfph20= +modernc.org/cc/v3 v3.40.0/go.mod h1:/bTg4dnWkSXowUO6ssQKnOV0yMVxDYNIsIrzqTFDGH0= modernc.org/ccgo/v3 v3.0.0-20220428102840-41399a37e894/go.mod h1:eI31LL8EwEBKPpNpA4bU1/i+sKOwOrQy8D87zWUcRZc= modernc.org/ccgo/v3 v3.0.0-20220430103911-bc99d88307be/go.mod h1:bwdAnOoaIt8Ax9YdWGjxWsdkPcZyRPHqrOvJxaKAKGw= +modernc.org/ccgo/v3 v3.0.0-20220904174949-82d86e1b6d56/go.mod h1:YSXjPL62P2AMSxBphRHPn7IkzhVHqkvOnRKAKh+W6ZI= modernc.org/ccgo/v3 v3.16.4/go.mod h1:tGtX0gE9Jn7hdZFeU88slbTh1UtCYKusWOoCJuvkWsQ= modernc.org/ccgo/v3 v3.16.6/go.mod h1:tGtX0gE9Jn7hdZFeU88slbTh1UtCYKusWOoCJuvkWsQ= modernc.org/ccgo/v3 v3.16.8/go.mod h1:zNjwkizS+fIFDrDjIAgBSCLkWbJuHF+ar3QRn+Z9aws= modernc.org/ccgo/v3 v3.16.9/go.mod h1:zNMzC9A9xeNUepy6KuZBbugn3c0Mc9TeiJO4lgvkJDo= +modernc.org/ccgo/v3 v3.16.13-0.20221017192402-261537637ce8/go.mod h1:fUB3Vn0nVPReA+7IG7yZDfjv1TMWjhQP8gCxrFAtL5g= +modernc.org/ccgo/v3 v3.16.13/go.mod h1:2Quk+5YgpImhPjv2Qsob1DnZ/4som1lJTodubIcoUkY= modernc.org/ccorpus v1.11.6/go.mod h1:2gEUTrWqdpH2pXsmTM1ZkjeSrUWDpjMu2T6m29L/ErQ= modernc.org/httpfs v1.0.6/go.mod h1:7dosgurJGp0sPaRanU53W4xZYKh14wfzX420oZADeHM= modernc.org/libc v0.0.0-20220428101251-2d5f3daf273b/go.mod h1:p7Mg4+koNjc8jkqwcoFBJx7tXkpj00G77X7A72jXPXA= @@ -1699,19 +2857,31 @@ modernc.org/libc v1.16.17/go.mod h1:hYIV5VZczAmGZAnG15Vdngn5HSF5cSkbvfz2B7GRuVU= modernc.org/libc v1.16.19/go.mod h1:p7Mg4+koNjc8jkqwcoFBJx7tXkpj00G77X7A72jXPXA= modernc.org/libc v1.17.0/go.mod h1:XsgLldpP4aWlPlsjqKRdHPqCxCjISdHfM/yeWC5GyW0= modernc.org/libc v1.17.1/go.mod h1:FZ23b+8LjxZs7XtFMbSzL/EhPxNbfZbErxEHc7cbD9s= +modernc.org/libc v1.17.4/go.mod h1:WNg2ZH56rDEwdropAJeZPQkXmDwh+JCA1s/htl6r2fA= +modernc.org/libc v1.18.0/go.mod h1:vj6zehR5bfc98ipowQOM2nIDUZnVew/wNC/2tOGS+q0= +modernc.org/libc v1.20.3/go.mod h1:ZRfIaEkgrYgZDl6pa4W39HgN5G/yDW+NRmNKZBDFrk0= +modernc.org/libc v1.21.4/go.mod h1:przBsL5RDOZajTVslkugzLBj1evTue36jEomFQOoYuI= +modernc.org/libc v1.22.2/go.mod h1:uvQavJ1pZ0hIoC/jfqNoMLURIMhKzINIWypNM17puug= modernc.org/mathutil v1.2.2/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= modernc.org/mathutil v1.4.1/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= modernc.org/mathutil v1.5.0/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= modernc.org/memory v1.1.1/go.mod h1:/0wo5ibyrQiaoUoH7f9D8dnglAmILJ5/cxZlRECf+Nw= modernc.org/memory v1.2.0/go.mod h1:/0wo5ibyrQiaoUoH7f9D8dnglAmILJ5/cxZlRECf+Nw= modernc.org/memory v1.2.1/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= +modernc.org/memory v1.3.0/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= +modernc.org/memory v1.4.0/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= +modernc.org/memory v1.5.0/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= modernc.org/opt v0.1.1/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0= modernc.org/opt v0.1.3/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0= modernc.org/sqlite v1.18.1/go.mod h1:6ho+Gow7oX5V+OiOQ6Tr4xeqbx13UZ6t+Fw9IRUG4d4= +modernc.org/sqlite v1.18.2/go.mod h1:kvrTLEWgxUcHa2GfHBQtanR1H9ht3hTJNtKpzH9k1u0= modernc.org/strutil v1.1.1/go.mod h1:DE+MQQ/hjKBZS2zNInV5hhcipt5rLPWkmpbGeW5mmdw= modernc.org/strutil v1.1.3/go.mod h1:MEHNA7PdEnEwLvspRMtWTNnp2nnyvMfkimT1NKNAGbw= modernc.org/tcl v1.13.1/go.mod h1:XOLfOwzhkljL4itZkK6T72ckMgvj0BDsnKNdZVUOecw= +modernc.org/tcl v1.13.2/go.mod h1:7CLiGIPo1M8Rv1Mitpv5akc2+8fxUd2y2UzC/MfMzy0= modernc.org/token v1.0.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= +modernc.org/token v1.0.1/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= +modernc.org/token v1.1.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= modernc.org/z v1.5.1/go.mod h1:eWFB510QWW5Th9YGZT81s+LwvaAs3Q2yr4sP0rmLkv8= pgregory.net/rapid v0.4.7 h1:MTNRktPuv5FNqOO151TM9mDTa+XHcX6ypYeISDVD14g= pgregory.net/rapid v0.4.7/go.mod h1:UYpPVyjFHzYBGHIxLFoupi8vwk6rXNzRY9OMvVxFIOU= @@ -1719,3 +2889,4 @@ rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8 rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= +rsc.io/tmplfunc v0.0.3/go.mod h1:AG3sTPzElb1Io3Yg4voV9AGZJuleGAwaVRxL9M49PhA= From c4cacb0b6fd13efa931f179f8ae089f53dde6686 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20M=C3=BCller?= Date: Wed, 24 Jan 2024 17:23:08 -0800 Subject: [PATCH 069/160] update to SDK v1.0.0-M1 --- lib/go/contracts/go.mod | 7 ++- lib/go/contracts/go.sum | 126 ++++------------------------------------ 2 files changed, 15 insertions(+), 118 deletions(-) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index a74829e41..96be06aa0 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -5,7 +5,7 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240125000944-01706d1b6a69 - github.com/onflow/flow-go-sdk v0.44.1-0.20240124213231-78d9f08eeae1 + github.com/onflow/flow-go-sdk v1.0.0-M1 github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125000928-4973179638e1 github.com/stretchr/testify v1.8.4 ) @@ -30,7 +30,6 @@ require ( github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f // indirect github.com/onflow/cadence v1.0.0-preview.2.0.20240122125204-5ce1f36f95bb // indirect github.com/onflow/crypto v0.25.0 // indirect - github.com/onflow/flow-go/crypto v0.24.7 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/rivo/uniseg v0.4.4 // indirect @@ -57,3 +56,7 @@ retract ( v1.2.4 // contains retraction only v1.2.3 // accidentally published with out-of-order tag ) + +replace github.com/onflow/flow-ft/lib/go/contracts => ../../../../flow-ft/lib/go/contracts + +replace github.com/onflow/flow-nft/lib/go/contracts => ../../../../flow-nft/lib/go/contracts diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 5703d817c..6ae261e56 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -923,8 +923,6 @@ dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7 gioui.org v0.0.0-20210308172011-57750fc8a0a6/go.mod h1:RSH6KIUZ0p2xy5zHDxgAM4zumjgTw83q2ge/PI+yyw8= git.sr.ht/~sbinet/gg v0.3.1/go.mod h1:KGYtlADtqsqANL9ueOFkWymvzUvLMQllU5Ixo+8v3pc= github.com/AndreasBriese/bbloom v0.0.0-20190306092124-e2d15f34fcf9/go.mod h1:bOvUY6CB00SOBii9/FifXqc0awNKxLFCL/+pkDPuyl8= -github.com/Azure/azure-pipeline-go v0.2.1/go.mod h1:UGSo8XybXnIGZ3epmeBw7Jdz+HiUVpqIlpz/HKHylF4= -github.com/Azure/azure-pipeline-go v0.2.2/go.mod h1:4rQ/NZncSvGqNkkOsNpOU1tgoNuIlp9AfUH5G1tvCHc= github.com/Azure/azure-sdk-for-go/sdk/azcore v0.21.1/go.mod h1:fBF9PQNqB8scdgpZ3ufzaLntG0AG7C1WjPMsiFOmfHM= github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0/go.mod h1:uGG2W01BaETf0Ozp+QxxKJdMBNRWPdstHG0Fmdwn1/U= github.com/Azure/azure-sdk-for-go/sdk/azcore v1.6.0/go.mod h1:bjGvMhVMb+EEm3VRNQawDMUyMMjo+S5ewNjflkep/0Q= @@ -939,17 +937,6 @@ github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources v1. github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/armstorage v1.2.0/go.mod h1:c+Lifp3EDEamAkPVzMooRNOK6CZjNSdEnf1A7jsI9u4= github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v0.3.0/go.mod h1:tPaiy8S5bQ+S5sOiDlINkp7+Ef339+Nz5L5XO+cnOHo= github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.2.0/go.mod h1:+6KLcKIVgxoBDMqMO/Nvy7bZ9a0nbU3I1DtFQK3YvB4= -github.com/Azure/azure-storage-blob-go v0.7.0/go.mod h1:f9YQKtsG1nMisotuTPpO0tjNuEjKRYAcJU8/ydDI++4= -github.com/Azure/go-autorest/autorest v0.9.0/go.mod h1:xyHB1BMZT0cuDHU7I0+g046+BFDTQ8rEZB0s4Yfa6bI= -github.com/Azure/go-autorest/autorest/adal v0.5.0/go.mod h1:8Z9fGy2MpX0PvDjB1pEgQTmVqjGhiHBW7RJJEciWzS0= -github.com/Azure/go-autorest/autorest/adal v0.8.0/go.mod h1:Z6vX6WXXuyieHAXwMj0S6HY6e6wcHn37qQMBQlvY3lc= -github.com/Azure/go-autorest/autorest/date v0.1.0/go.mod h1:plvfp3oPSKwf2DNjlBjWF/7vwR+cUD/ELuzDCXwHUVA= -github.com/Azure/go-autorest/autorest/date v0.2.0/go.mod h1:vcORJHLJEh643/Ioh9+vPmf1Ij9AEBM5FuBIXLmIy0g= -github.com/Azure/go-autorest/autorest/mocks v0.1.0/go.mod h1:OTyCOPRA2IgIlWxVYxBee2F5Gr4kF2zd2J5cFRaIDN0= -github.com/Azure/go-autorest/autorest/mocks v0.2.0/go.mod h1:OTyCOPRA2IgIlWxVYxBee2F5Gr4kF2zd2J5cFRaIDN0= -github.com/Azure/go-autorest/autorest/mocks v0.3.0/go.mod h1:a8FDP3DYzQ4RYfVAxAN3SVSiiO77gL2j2ronKKP0syM= -github.com/Azure/go-autorest/logger v0.1.0/go.mod h1:oExouG+K6PryycPJfVSxi/koC6LSNgds39diKLz7Vrc= -github.com/Azure/go-autorest/tracing v0.5.0/go.mod h1:r/s2XiOKccPW3HrqB+W0TQzfbtp2fGCgRFtBroKn4Dk= github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0/go.mod h1:Vt9sXTKwMyGcOxSmLDMnGPgqsUg7m8pe215qMLrDXw4= github.com/AzureAD/microsoft-authentication-library-for-go v1.0.0/go.mod h1:kgDmCTgBzIEPFElEF+FK0SdjAor06dRq2Go927dnQ6o= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= @@ -968,13 +955,11 @@ github.com/Joker/hpp v1.0.0/go.mod h1:8x5n+M1Hp5hC0g8okX3sR3vFQwynaX/UgSOM9MeBKz github.com/Joker/jade v1.0.1-0.20190614124447-d475f43051e7/go.mod h1:6E6s8o2AE4KhCrqr6GRJjdC/gNfTdxkIXvuGZZda2VM= github.com/Microsoft/go-winio v0.6.1/go.mod h1:LRdKpFKfdobln8UmuiYcKPot9D2v6svN5+sAH+4kjUM= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= -github.com/OneOfOne/xxhash v1.2.5/go.mod h1:eZbhyaAYD41SGSSsnmcpxVoRiQ/MPUTjUdIIOT9Um7Q= github.com/SaveTheRbtz/mph v0.1.1-0.20240117162131-4166ec7869bc h1:DCHzPQOcU/7gwDTWbFQZc5qHMPS1g0xTO56k8NXsv9M= github.com/SaveTheRbtz/mph v0.1.1-0.20240117162131-4166ec7869bc/go.mod h1:LJM5a3zcIJ/8TmZwlUczvROEJT8ntOdhdG9jjcR1B0I= github.com/Shopify/goreferrer v0.0.0-20181106222321-ec9c9a553398/go.mod h1:a1uqRtAwp2Xwc6WNPJEufxJ7fx3npB4UV/JOLmbu5I0= github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg= github.com/StackExchange/wmi v1.2.1/go.mod h1:rcmrprowKIVzvc+NUiLncP2uuArMWLCbu9SBzvHz7e8= -github.com/VictoriaMetrics/fastcache v1.5.3/go.mod h1:+jv9Ckb+za/P1ZRg/sulP5Ni1v49daAVERr0H3CuscE= github.com/VictoriaMetrics/fastcache v1.6.0/go.mod h1:0qHz5QP0GMX4pfmMA/zt5RgfNuXJrTP0zS7DqpHGGTw= github.com/VictoriaMetrics/fastcache v1.12.1/go.mod h1:tX04vaqcNoQeGLD+ra5pU5sWkuxnzWhEzLwhP9w653o= github.com/aclements/go-gg v0.0.0-20170118225347-6dbb4e4fefb0/go.mod h1:55qNq4vcpkIuHowELi5C8e+1yUHtoLoOUR9QU5j7Tes= @@ -999,66 +984,47 @@ github.com/apache/arrow/go/v10 v10.0.1/go.mod h1:YvhnlEePVnBS4+0z3fhPfUy7W1Ikj0I github.com/apache/arrow/go/v11 v11.0.0/go.mod h1:Eg5OsL5H+e299f7u5ssuXsuHQVEGC4xei5aX110hRiI= github.com/apache/arrow/go/v12 v12.0.0/go.mod h1:d+tV/eHZZ7Dz7RPrFKtPK02tpr+c9/PEd/zm8mDS9Vg= github.com/apache/thrift v0.16.0/go.mod h1:PHK3hniurgQaNMZYaCLEqXKsYK8upmhPbmdP2FXSqgU= -github.com/aristanetworks/goarista v0.0.0-20170210015632-ea17b1a17847/go.mod h1:D/tb0zPVXnP7fmsLZjtdUhSsumbK/ij54UXjjVgMGxQ= github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8= -github.com/aws/aws-sdk-go v1.25.48/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= github.com/aws/aws-sdk-go-v2 v1.2.0/go.mod h1:zEQs02YRBw1DjK0PoJv3ygDYOFTre1ejlJWl8FwAuQo= -github.com/aws/aws-sdk-go-v2 v1.17.3/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw= -github.com/aws/aws-sdk-go-v2 v1.17.7/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw= github.com/aws/aws-sdk-go-v2 v1.21.2/go.mod h1:ErQhvNuEMhJjweavOYhxVkn2RUx7kQXVATHrjKtxIpM= github.com/aws/aws-sdk-go-v2 v1.23.1/go.mod h1:i1XDttT4rnf6vxc9AuskLc6s7XBee8rlLilKlc03uAA= github.com/aws/aws-sdk-go-v2/config v1.1.1/go.mod h1:0XsVy9lBI/BCXm+2Tuvt39YmdHwS5unDQmxZOYe8F5Y= -github.com/aws/aws-sdk-go-v2/config v1.18.19/go.mod h1:XvTmGMY8d52ougvakOv1RpiTLPz9dlG/OQHsKU/cMmY= github.com/aws/aws-sdk-go-v2/config v1.18.45/go.mod h1:ZwDUgFnQgsazQTnWfeLWk5GjeqTQTL8lMkoE1UXzxdE= github.com/aws/aws-sdk-go-v2/config v1.25.5/go.mod h1:Bf4gDvy4ZcFIK0rqDu1wp9wrubNba2DojiPB2rt6nvI= github.com/aws/aws-sdk-go-v2/credentials v1.1.1/go.mod h1:mM2iIjwl7LULWtS6JCACyInboHirisUUdkBPoTHMOUo= -github.com/aws/aws-sdk-go-v2/credentials v1.13.18/go.mod h1:vnwlwjIe+3XJPBYKu1et30ZPABG3VaXJYr8ryohpIyM= github.com/aws/aws-sdk-go-v2/credentials v1.13.43/go.mod h1:zWJBz1Yf1ZtX5NGax9ZdNjhhI4rgjfgsyk6vTY1yfVg= github.com/aws/aws-sdk-go-v2/credentials v1.16.4/go.mod h1:Kdh/okh+//vQ/AjEt81CjvkTo64+/zIE4OewP7RpfXk= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.0.2/go.mod h1:3hGg3PpiEjHnrkrlasTfxFqUsZ2GCk/fMUn4CbKgSkM= -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.1/go.mod h1:lfUx8puBRdM5lVVMQlwt2v+ofiG/X6Ms+dy0UkG/kXw= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.13/go.mod h1:f/Ib/qYjhV2/qdsf79H3QP/eRE4AkVyEf6sk7XfZ1tg= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.5/go.mod h1:VhnExhw6uXy9QzetvpXDolo1/hjhx4u9qukBGkuUwjs= -github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.27/go.mod h1:a1/UpzeyBBerajpnP5nGZa9mGzsBn5cOKxm6NWQsvoI= -github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.31/go.mod h1:QT0BqUvX1Bh2ABdTGnjqEjvjzrCfIniM9Sc8zn9Yndo= github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.43/go.mod h1:auo+PiyLl0n1l8A0e8RIeR8tOzYPfZZH/JNlrJ8igTQ= github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.4/go.mod h1:xEhvbJcyUf/31yfGSQBe01fukXwXJ0gxDp7rLfymWE0= -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.21/go.mod h1:+Gxn8jYn5k9ebfHEqlhrMirFjSW0v0C9fI+KN5vk2kE= -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.25/go.mod h1:zBHOPwhBc3FlQjQJE/D3IfPWiWaQmT06Vq9aNukDo0k= github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.37/go.mod h1:Qe+2KtKml+FEsQF/DHmDV+xjtche/hwoF75EG4UlHW8= github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.4/go.mod h1:dYvTNAggxDZy6y1AF7YDwXsPuHFy/VNEpEI/2dWK9IU= -github.com/aws/aws-sdk-go-v2/internal/ini v1.3.32/go.mod h1:XGhIBZDEgfqmFIugclZ6FU7v75nHhBDtzuB4xB/tEi4= github.com/aws/aws-sdk-go-v2/internal/ini v1.3.45/go.mod h1:lD5M20o09/LCuQ2mE62Mb/iSdSlCNuj6H5ci7tW7OsE= github.com/aws/aws-sdk-go-v2/internal/ini v1.7.1/go.mod h1:6fQQgfuGmw8Al/3M2IgIllycxV7ZW7WCdVSqfBeUiCY= github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.1/go.mod h1:l9ymW25HOqymeU2m1gbUQ3rUIsTwKs8gYHXkqDQUhiI= github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.0.2/go.mod h1:45MfaXZ0cNbeuT0KQ1XJylq8A6+OpVV2E5kvY/Kq+u8= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.25/go.mod h1:/95IA+0lMnzW6XzqYJRpjjsAbKEORVeO0anQqjd2CNU= github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.37/go.mod h1:vBmDnwWXWxNPFRMmG2m/3MKOe+xEcMDo1tanpaWCcck= github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.4/go.mod h1:aYCGNjyUCUelhofxlZyj63srdxWUSsBSGg5l6MCuXuE= -github.com/aws/aws-sdk-go-v2/service/kms v1.20.1/go.mod h1:13sjgMH7Xu4e46+0BEDhSnNh+cImHSYS5PpBjV3oXcU= github.com/aws/aws-sdk-go-v2/service/kms v1.26.3/go.mod h1:N3++/sLV97B8Zliz7KRqNcojOX7iMBZWKiuit5FKtH0= github.com/aws/aws-sdk-go-v2/service/route53 v1.1.1/go.mod h1:rLiOUrPLW/Er5kRcQ7NkwbjlijluLsrIbu/iyl35RO4= github.com/aws/aws-sdk-go-v2/service/route53 v1.30.2/go.mod h1:TQZBt/WaQy+zTHoW++rnl8JBrmZ0VO6EUbVua1+foCA= github.com/aws/aws-sdk-go-v2/service/sso v1.1.1/go.mod h1:SuZJxklHxLAXgLTc1iFXbEWkXs7QRTQpCLGaKIprQW0= -github.com/aws/aws-sdk-go-v2/service/sso v1.12.6/go.mod h1:Y1VOmit/Fn6Tz1uFAeCO6Q7M2fmfXSCLeL5INVYsLuY= github.com/aws/aws-sdk-go-v2/service/sso v1.15.2/go.mod h1:gsL4keucRCgW+xA85ALBpRFfdSLH4kHOVSnLMSuBECo= github.com/aws/aws-sdk-go-v2/service/sso v1.17.3/go.mod h1:oA6VjNsLll2eVuUoF2D+CMyORgNzPEW/3PyUdq6WQjI= -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.6/go.mod h1:Lh/bc9XUf8CfOY6Jp5aIkQtN+j1mc+nExc+KXj9jx2s= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.17.3/go.mod h1:a7bHA82fyUXOm+ZSWKU6PIoBxrjSprdLoM8xPYvzYVg= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.20.1/go.mod h1:hHL974p5auvXlZPIjJTblXJpbkfK4klBczlsEaMCGVY= github.com/aws/aws-sdk-go-v2/service/sts v1.1.1/go.mod h1:Wi0EBZwiz/K44YliU0EKxqTCJGUfYTWXrrBwkq736bM= -github.com/aws/aws-sdk-go-v2/service/sts v1.18.7/go.mod h1:JuTnSoeePXmMVe9G8NcjjwgOKEfZ4cOjMuT2IBT/2eI= github.com/aws/aws-sdk-go-v2/service/sts v1.23.2/go.mod h1:Eows6e1uQEsc4ZaHANmsPRzAKcVDrcmjjWiih2+HUUQ= github.com/aws/aws-sdk-go-v2/service/sts v1.25.4/go.mod h1:feTnm2Tk/pJxdX+eooEsxvlvTWBvDm6CasRZ+JOs2IY= github.com/aws/smithy-go v1.1.0/go.mod h1:EzMw8dbp/YJL4A5/sbhGddag+NPT7q084agLbB9LgIw= -github.com/aws/smithy-go v1.13.5/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA= github.com/aws/smithy-go v1.15.0/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA= github.com/aws/smithy-go v1.17.0/go.mod h1:NukqUGpCZIILqqiV0NIjeFh24kd/FAa4beRb6nbIUPE= github.com/aymerick/raymond v2.0.3-0.20180322193309-b565731e1464+incompatible/go.mod h1:osfaiScAUVup+UC9Nfq76eWqDhXlp+4UYaA8uhTBO6g= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/bits-and-blooms/bitset v1.5.0 h1:NpE8frKRLGHIcEzkR+gZhiioW1+WbYV6fKwD6ZIpQT8= github.com/bits-and-blooms/bitset v1.5.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= github.com/bits-and-blooms/bitset v1.7.0 h1:YjAGVd3XmtK9ktAbX8Zg2g2PwLIMjGREZJHlV4j7NEo= github.com/bits-and-blooms/bitset v1.7.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= @@ -1066,7 +1032,6 @@ github.com/bmizerany/pat v0.0.0-20170815010413-6226ea591a40/go.mod h1:8rLXio+Wji github.com/boltdb/bolt v1.3.1/go.mod h1:clJnj/oiGkjum5o1McbSZDSLxVThjynRyGBgiAx27Ps= github.com/boombuler/barcode v1.0.0/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= github.com/boombuler/barcode v1.0.1/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= -github.com/btcsuite/btcd v0.0.0-20171128150713-2e60448ffcc6/go.mod h1:Dmm/EzmjnCiweXmzRIAiUWCInVmPgjkzgv5k4tVyXiQ= github.com/btcsuite/btcd/btcec/v2 v2.2.0/go.mod h1:U7MHm051Al6XmscBQ0BoNydpOTsFAn707034b5nY8zU= github.com/btcsuite/btcd/btcec/v2 v2.2.1 h1:xP60mv8fvp+0khmrN0zTdPC3cNm24rfeE6lh2R/Yv3E= github.com/btcsuite/btcd/btcec/v2 v2.2.1/go.mod h1:9/CSmJxmuvqzX9Wh2fXMWToLOHhPd11lSPuIupwTkI8= @@ -1079,7 +1044,6 @@ github.com/census-instrumentation/opencensus-proto v0.3.0/go.mod h1:f6KPmirojxKA github.com/census-instrumentation/opencensus-proto v0.4.1/go.mod h1:4T9NM4+4Vw91VeyqjLS6ao50K5bOcLKN6Q42XnYaRYw= github.com/cespare/cp v0.1.0/go.mod h1:SOGHArjBr4JWaSDEVpWpo/hNg6RoKrls6Oh40hiwW+s= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= -github.com/cespare/xxhash/v2 v2.0.1-0.20190104013014-3767db7a7e18/go.mod h1:HD5P3vAIAh+Y2GAxg0PrPN1P8WkepXGpjbUPDHJqqKM= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= @@ -1090,7 +1054,6 @@ github.com/chzyer/readline v1.5.0/go.mod h1:x22KAscuvRqlLoK9CsoYsmxoXZMMFVyOl86c github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= github.com/chzyer/test v0.0.0-20210722231415-061457976a23/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= -github.com/cloudflare/cloudflare-go v0.10.2-0.20190916151808-a80f83b9add9/go.mod h1:1MxXX1Ux4x6mqPmjkUgTP1CdXIBXKX7T+Jk9Gxrmx+U= github.com/cloudflare/cloudflare-go v0.14.0/go.mod h1:EnwdgGMaFOruiPZRFSgn+TsQ3hQ7C/YWzIGLeu5c304= github.com/cloudflare/cloudflare-go v0.79.0/go.mod h1:gkHQf9xEubaQPEuerBuoinR9P8bf8a05Lq0X6WKy1Oc= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= @@ -1151,12 +1114,10 @@ github.com/dave/rebecca v0.9.1/go.mod h1:N6XYdMD/OKw3lkF3ywh8Z6wPGuwNFDNtWYEMFWE github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/deckarep/golang-set v0.0.0-20180603214616-504e848d77ea/go.mod h1:93vsz/8Wt4joVM7c2AVqh+YRMiUSc14yDtF28KmMOgQ= github.com/deckarep/golang-set v1.8.0/go.mod h1:5nI87KwE7wgsBU1F4GKAw2Qod7p5kyS383rP6+o6qqo= github.com/deckarep/golang-set/v2 v2.1.0/go.mod h1:VAky9rY/yGXJOLEDv3OMci+7wtDpOF4IN+y82NBOac4= github.com/decred/dcrd/crypto/blake256 v1.0.0/go.mod h1:sQl2p6Y26YV+ZOcSTP6thNdn47hh8kt6rqSlvmrXFAc= github.com/decred/dcrd/crypto/blake256 v1.0.1/go.mod h1:2OfgNZ5wDpcsFmHmCK5gZTPcCXqlm2ArzUIkw9czNJo= -github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 h1:YLtO71vCjJRCBcrPMtQ9nqBsqpA1m5sE92cU+pd5Mcc= github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1/go.mod h1:hyedUtir6IdtD/7lIxGeCxkaw7y45JueMRL4DIyJDKs= github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 h1:8UrgZ3GkP4i/CLijOJx79Yu+etlyjdBU4sfcs2WYQMs= github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0/go.mod h1:v57UDF4pDQJcEfFUCRop3lJL149eHGSe9Jvczhzjo/0= @@ -1167,15 +1128,12 @@ github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZm github.com/dgryski/go-bitstream v0.0.0-20180413035011-3522498ce2c8/go.mod h1:VMaSuZ+SZcx/wljOQKvp5srsbCiKDEb6K2wC4+PiBmQ= github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2/go.mod h1:SqUrOPUnsFjfmXRMNPybcSiG0BgUW2AuFH8PAnS2iTw= github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= -github.com/dlclark/regexp2 v1.2.0/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc= github.com/dlclark/regexp2 v1.4.1-0.20201116162257-a2a8dda75c91/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc= github.com/dlclark/regexp2 v1.7.0/go.mod h1:DHkYz0B9wPfa6wondMfaivmHpzrQ3v9q8cnmRbL6yW8= github.com/dnaeon/go-vcr v1.1.0/go.mod h1:M7tiix8f0r6mKKJ3Yq/kqU1OYf3MnfmBWVbPx/yU9ko= github.com/dnaeon/go-vcr v1.2.0/go.mod h1:R4UdLID7HZT3taECzJs4YgbbH6PIGXB6W/sc5OLb6RQ= -github.com/docker/docker v1.4.2-0.20180625184442-8e610b2b55bf/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= github.com/docker/docker v1.6.2/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= -github.com/dop251/goja v0.0.0-20200219165308-d1232e640a87/go.mod h1:Mw6PkjjMXWbTj+nnj4s3QPXq1jaT0s5pC0iFD4+BOAA= github.com/dop251/goja v0.0.0-20211022113120-dc8c55024d06/go.mod h1:R9ET47fwRVRPZnOGvHxxhuZcbrMCuiqOz3Rlrh4KSnk= github.com/dop251/goja v0.0.0-20220405120441-9037c2b61cbf/go.mod h1:R9ET47fwRVRPZnOGvHxxhuZcbrMCuiqOz3Rlrh4KSnk= github.com/dop251/goja v0.0.0-20230806174421-c933cf95e127/go.mod h1:QMWlm50DNe14hD7t24KEqZuUdC9sOTy8W6XbCU1mlw4= @@ -1184,10 +1142,8 @@ github.com/dop251/goja_nodejs v0.0.0-20211022123610-8dd9abb0616d/go.mod h1:DngW8 github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= github.com/eclipse/paho.mqtt.golang v1.2.0/go.mod h1:H9keYFcgq3Qr5OUJm/JZI/i6U7joQ8SYLhZwfeOo6Ts= -github.com/edsrzf/mmap-go v0.0.0-20160512033002-935e0e8a636c/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= github.com/edsrzf/mmap-go v1.0.0/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= github.com/eknkc/amber v0.0.0-20171010120322-cdade1c07385/go.mod h1:0vRUJqYpeSZifjYj7uP3BG/gKcuzL9xWVV/Y+cK33KM= -github.com/elastic/gosigar v0.8.1-0.20180330100440-37f05ff46ffa/go.mod h1:cdorVVzy1fhmEqmtgqkoE3bYtCfSCkVyjTyCIo22xvs= github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= @@ -1210,19 +1166,15 @@ github.com/envoyproxy/protoc-gen-validate v1.0.1/go.mod h1:0vj8bNkYbSTNS2PIyH87K github.com/envoyproxy/protoc-gen-validate v1.0.2/go.mod h1:GpiZQP3dDbg4JouG/NNS7QWXpgx6x8QiMKdmN72jogE= github.com/etcd-io/bbolt v1.3.3/go.mod h1:ZF2nL25h33cCyBtcyWeZ2/I3HQOfTP+0PIEvHjkjCrw= github.com/ethereum/c-kzg-4844 v0.4.0/go.mod h1:VewdlzQmpT5QSrVhbBuGoCdFJkpaJlO1aQputP83wc0= -github.com/ethereum/go-ethereum v1.9.13 h1:rOPqjSngvs1VSYH2H+PMPiWt4VEulvNRbFgqiGqJM3E= -github.com/ethereum/go-ethereum v1.9.13/go.mod h1:qwN9d1GLyDh0N7Ab8bMGd0H9knaji2jOBm2RrMGjXls= github.com/ethereum/go-ethereum v1.10.26/go.mod h1:EYFyF19u3ezGLD4RqOkLq+ZCXzYbLoNDdZlMt7kyKFg= github.com/ethereum/go-ethereum v1.13.5 h1:U6TCRciCqZRe4FPXmy1sMGxTfuk8P7u2UoinF3VbaFk= github.com/ethereum/go-ethereum v1.13.5/go.mod h1:yMTu38GSuyxaYzQMViqNmQ1s3cE84abZexQmTgenWk0= github.com/fasthttp-contrib/websocket v0.0.0-20160511215533-1f3b11f56072/go.mod h1:duJ4Jxv5lDcvg4QuQr0oowTf7dz4/CR8NtyCooz9HL8= -github.com/fatih/color v1.3.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk= github.com/fatih/structs v1.1.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga6PJ7M= github.com/fjl/gencodec v0.0.0-20220412091415-8bb9e558978c/go.mod h1:AzA8Lj6YtixmJWL+wkKoBGsLWy9gFrAzi4g+5bCKwpY= github.com/fjl/gencodec v0.0.0-20230517082657-f9840df7b83e/go.mod h1:AzA8Lj6YtixmJWL+wkKoBGsLWy9gFrAzi4g+5bCKwpY= -github.com/fjl/memsize v0.0.0-20180418122429-ca190fb6ffbc/go.mod h1:VvhXpOYNQvB+uIk2RvXzuaQtkQJzzIx6lSBe1xv7hi0= github.com/fjl/memsize v0.0.0-20190710130421-bcb5799ab5e5/go.mod h1:VvhXpOYNQvB+uIk2RvXzuaQtkQJzzIx6lSBe1xv7hi0= github.com/flosch/pongo2 v0.0.0-20190707114632-bbf5a6c351f4/go.mod h1:T9YF2M40nIgbVgp3rreNmTged+9HrbNTIQf1PsaIiTA= github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= @@ -1280,7 +1232,6 @@ github.com/go-openapi/jsonpointer v0.19.5/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34 github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= github.com/go-pdf/fpdf v0.5.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= github.com/go-pdf/fpdf v0.6.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= -github.com/go-sourcemap/sourcemap v2.1.2+incompatible/go.mod h1:F8jJfvm2KbVjc5NqelyYJmf/v5J0dwNLS2mL4sNA1Jg= github.com/go-sourcemap/sourcemap v2.1.3+incompatible/go.mod h1:F8jJfvm2KbVjc5NqelyYJmf/v5J0dwNLS2mL4sNA1Jg= github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= @@ -1326,7 +1277,6 @@ github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3K github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.3.2-0.20190517061210-b285ee9cfc6c/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= @@ -1342,9 +1292,9 @@ github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= @@ -1373,8 +1323,8 @@ github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/ github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE= github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= github.com/google/go-pkcs11 v0.2.0/go.mod h1:6eQoGcuNJpa7jnd5pMGdkSaQpNDYvPlXWMcjXXThLlY= github.com/google/go-pkcs11 v0.2.1-0.20230907215043-c6f79328ddf9/go.mod h1:6eQoGcuNJpa7jnd5pMGdkSaQpNDYvPlXWMcjXXThLlY= @@ -1445,9 +1395,7 @@ github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8 github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= -github.com/gorilla/websocket v1.4.1-0.20190629185528-ae1634f6a989/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= -github.com/graph-gophers/graphql-go v0.0.0-20191115155744-f33e81362277/go.mod h1:9CQHMSxwO4MprSdzoIEobiHpoLtHm77vfxsvsIN5Vuc= github.com/graph-gophers/graphql-go v1.3.0/go.mod h1:9CQHMSxwO4MprSdzoIEobiHpoLtHm77vfxsvsIN5Vuc= github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= @@ -1462,7 +1410,6 @@ github.com/hashicorp/go-hclog v0.9.2/go.mod h1:5CU+agLiy3J7N7QjHK5d05KxGsuXiQLrj github.com/hashicorp/go-hclog v1.2.0/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ= github.com/hashicorp/go-retryablehttp v0.7.4/go.mod h1:Jy/gPYAdjqffZ/yFGCFV2doI5wjtH1ewM9u8iYVjtX8= github.com/hashicorp/go-version v1.2.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= -github.com/hashicorp/golang-lru v0.0.0-20160813221303-0a025b7e63ad/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= @@ -1473,7 +1420,6 @@ github.com/holiman/uint256 v1.2.0/go.mod h1:y4ga/t+u+Xwd7CpDgZESaRcWy0I7XMlTMA25 github.com/holiman/uint256 v1.2.3 h1:K8UWO1HUJpRMXBxbmaY1Y8IAMZC/RsKB+ArEnnK4l5o= github.com/holiman/uint256 v1.2.3/go.mod h1:SC8Ryt4n+UBbPbIBKaG9zbbDlp4jOru9xFZmPzLUTxw= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= -github.com/huin/goupnp v0.0.0-20161224104101-679507af18f3/go.mod h1:MZ2ZmwcBpvOoJ22IJsc7va19ZwoheaBk43rKg12SKag= github.com/huin/goupnp v1.0.3/go.mod h1:ZxNlw5WqJj6wSsRK5+YfflQGXYfccj5VgQsMNixHM7Y= github.com/huin/goupnp v1.3.0/go.mod h1:gnGPsThkYa7bFi/KWmEysQRf48l2dvR5bxr2OFckNX8= github.com/huin/goutil v0.0.0-20170803182201-1ca381bf3150/go.mod h1:PpLOETDnJ0o3iZrZfqZzyLl6l7F3c6L1oWn7OICBi6o= @@ -1485,7 +1431,6 @@ github.com/ianlancetaylor/demangle v0.0.0-20220319035150-800ac71e25c2/go.mod h1: github.com/imkira/go-interpol v1.1.0/go.mod h1:z0h2/2T3XF8kyEPpRgJ3kmNv+C43p+I/CoI+jC3w2iA= github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= github.com/influxdata/flux v0.65.1/go.mod h1:J754/zds0vvpfwuq7Gc2wRdVwEodfpCFM7mYlOw2LqY= -github.com/influxdata/influxdb v1.2.3-0.20180221223340-01288bdb0883/go.mod h1:qZna6X/4elxqT3yI9iZYdZrWWdeFOOprn86kgg4+IzY= github.com/influxdata/influxdb v1.8.3/go.mod h1:JugdFhsvvI8gadxOI6noqNeeBHvWNTbfYGtiAn+2jhI= github.com/influxdata/influxdb-client-go/v2 v2.4.0/go.mod h1:vLNHdxTJkIf2mSLvGrpj8TCcISApPoXkaxP8g9uRlW8= github.com/influxdata/influxdb1-client v0.0.0-20220302092344-a9ab5670611c/go.mod h1:qj24IKcXYK6Iy9ceXlo3Tc+vtHo9lIhSX5JddghvEPo= @@ -1501,11 +1446,9 @@ github.com/iris-contrib/blackfriday v2.0.0+incompatible/go.mod h1:UzZ2bDEoaSGPbk github.com/iris-contrib/go.uuid v2.0.0+incompatible/go.mod h1:iz2lgM/1UnEf1kP0L/+fafWORmlnuysV2EMP8MW+qe0= github.com/iris-contrib/i18n v0.0.0-20171121225848-987a633949d0/go.mod h1:pMCz62A0xJL6I+umB2YTlFRwWXaDFA0jy+5HzGiJjqI= github.com/iris-contrib/schema v0.0.1/go.mod h1:urYA3uvUNG1TIIjOSCzHr9/LmbQo8LrOcOqfqxa4hXw= -github.com/jackpal/go-nat-pmp v1.0.2-0.20160603034137-1fa385a6f458/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc= github.com/jackpal/go-nat-pmp v1.0.2/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc= github.com/jedisct1/go-minisign v0.0.0-20190909160543-45766022959e/go.mod h1:G1CVv03EnqU1wYL2dFwXxW2An0az9JTl/ZsqXQeBlkU= github.com/jedisct1/go-minisign v0.0.0-20230811132847-661be99b8267/go.mod h1:h1nSAbGFqGVzn6Jyl1R/iCcBUHN4g+gW1u9CoBTrb9E= -github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= @@ -1521,7 +1464,6 @@ github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfV github.com/juju/errors v0.0.0-20181118221551-089d3ea4e4d5/go.mod h1:W54LbzXuIE0boCoNJfwqpmkKJ1O4TCTZMetAt6jGk7Q= github.com/juju/loggo v0.0.0-20180524022052-584905176618/go.mod h1:vgyd7OREkbtVEN/8IXZe5Ooef3LQePvuBm9UWj6ZL8U= github.com/juju/testing v0.0.0-20180920084828-472a3e8b2073/go.mod h1:63prj8cnj0tU0S9OHjGJn+b1h0ZghCndfnbQolrYTwA= -github.com/julienschmidt/httprouter v1.1.1-0.20170430222011-975b5c4c7c21/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= github.com/jung-kurt/gofpdf v1.0.0/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= @@ -1533,14 +1475,12 @@ github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213/go.mod h1:vNUNkEQ1 github.com/k0kubun/pp v3.0.1+incompatible h1:3tqvf7QgUnZ5tXO6pNAZlrvHgl6DvifjDrd9g2S9Z40= github.com/k0kubun/pp v3.0.1+incompatible/go.mod h1:GWse8YhT0p8pT4ir3ZgBbfZild3tgzSScAn6HmfYukg= github.com/k0kubun/pp/v3 v3.2.0/go.mod h1:ODtJQbQcIRfAD3N+theGCV1m/CBxweERz2dapdz1EwA= -github.com/karalabe/usb v0.0.0-20190919080040-51dc0efba356/go.mod h1:Od972xHfMJowv7NGVDiWVxk2zxnWgjLlJzE+F4F7AGU= github.com/karalabe/usb v0.0.2/go.mod h1:Od972xHfMJowv7NGVDiWVxk2zxnWgjLlJzE+F4F7AGU= github.com/kataras/golog v0.0.9/go.mod h1:12HJgwBIZFNGL0EJnMRhmvGA0PQGx8VFwrZtM4CqbAk= github.com/kataras/iris/v12 v12.0.1/go.mod h1:udK4vLQKkdDqMGJJVd/msuMtN6hpYJhg/lSzuxjhO+U= github.com/kataras/neffos v0.0.10/go.mod h1:ZYmJC07hQPW67eKuzlfY7SO3bC0mw83A3j6im82hfqw= github.com/kataras/pio v0.0.0-20190103105442-ea782b38602d/go.mod h1:NV88laa9UiiDuX9AhMbDPkGYSPugBOV6yTZB1l2K9Z0= github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8= -github.com/kevinburke/go-bindata v3.22.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= github.com/kevinburke/go-bindata v3.23.0+incompatible h1:rqNOXZlqrYhMVVAsQx8wuc+LaA73YcfbQ407wAykyS8= github.com/kevinburke/go-bindata v3.23.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= github.com/kilic/bls12-381 v0.1.0/go.mod h1:vDTTHJONJ6G+P2R74EhnyotQDTliQDnFEwhdmfzw1ig= @@ -1559,13 +1499,10 @@ github.com/klauspost/cpuid v1.2.1/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgo github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= github.com/klauspost/cpuid/v2 v2.0.12/go.mod h1:g2LTdtYhdyuGPqyWyv7qRAmj1WBqxuObKfj5c0PQa7c= github.com/klauspost/cpuid/v2 v2.2.0/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY= -github.com/klauspost/cpuid/v2 v2.2.4 h1:acbojRNwl3o09bUq+yDCtZFc1aiwaAAxtcn8YkZXnvk= -github.com/klauspost/cpuid/v2 v2.2.4/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY= github.com/klauspost/cpuid/v2 v2.2.5 h1:0E5MSMDEoAulmXNFquVs//DdoomxaoTY1kUhbc/qbZg= github.com/klauspost/cpuid/v2 v2.2.5/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= github.com/klauspost/crc32 v0.0.0-20161016154125-cb6bfca970f6/go.mod h1:+ZoRqAPRLkC4NPOvfYeR5KNOrY6TD+/sAC3HXPZgDYg= github.com/klauspost/pgzip v1.0.2-0.20170402124221-0bf5dcad4ada/go.mod h1:Ch1tH69qFZu15pkjo5kYi6mth2Zzwzt50oCQKQE9RUs= -github.com/konsorten/go-windows-terminal-sequences v1.0.1 h1:mweAR1A6xJ3oS2pRaGiHgQ4OO8tzTaLawm8vnODuwDk= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= @@ -1599,7 +1536,6 @@ github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= github.com/matryer/moq v0.0.0-20190312154309-6cfb0558e1bd/go.mod h1:9ELz6aaclSIGnZBoaSLZ3NAl1VTufbOrXBPvtcy6WiQ= github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= -github.com/mattn/go-colorable v0.1.0/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= github.com/mattn/go-colorable v0.1.2/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= github.com/mattn/go-colorable v0.1.7/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= @@ -1608,10 +1544,7 @@ github.com/mattn/go-colorable v0.1.9/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope github.com/mattn/go-colorable v0.1.12/go.mod h1:u5H1YNBxpqRaxsYJYSkiCWKzEfiAb1Gb520KVy5xxl4= github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= -github.com/mattn/go-ieproxy v0.0.0-20190610004146-91bb50d98149/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= -github.com/mattn/go-ieproxy v0.0.0-20190702010315-6dee0af9227d/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= github.com/mattn/go-isatty v0.0.4/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= -github.com/mattn/go-isatty v0.0.5-0.20180830101745-3fb116b82035/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= github.com/mattn/go-isatty v0.0.7/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= github.com/mattn/go-isatty v0.0.9/go.mod h1:YNRxwqDuOph6SZLI9vUUz6OYw3QyUt7WiY2yME+cCiQ= @@ -1619,15 +1552,11 @@ github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcME github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= -github.com/mattn/go-isatty v0.0.17 h1:BTarxUcIeDqL27Mc+vyvdWYSL28zpIhv3RoTdsLMPng= github.com/mattn/go-isatty v0.0.17/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= -github.com/mattn/go-isatty v0.0.18/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APPA= github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= github.com/mattn/go-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= -github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.6/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= -github.com/mattn/go-runewidth v0.0.7/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= github.com/mattn/go-runewidth v0.0.14/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= @@ -1637,7 +1566,6 @@ github.com/mattn/go-sqlite3 v1.14.14/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4 github.com/mattn/go-sqlite3 v1.14.15/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg= github.com/mattn/go-tty v0.0.0-20180907095812-13ff1204f104/go.mod h1:XPvLUNfbS4fJH25nqRHfWLMa1ONC8Amw+mIA639KxkE= github.com/mattn/go-tty v0.0.3/go.mod h1:ihxohKRERHTVzN+aSVRwACLCeqIoZAWpoICkkvrWyR0= -github.com/mattn/go-tty v0.0.4/go.mod h1:u5GGXBtZU6RQoKV8gY5W6UhMudbR5vXnUe7j3pxse28= github.com/mattn/goveralls v0.0.2/go.mod h1:8d1ZMHsd7fW6IRPKQh46F2WRpyib5/X4FOpevwGNQEw= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= @@ -1673,45 +1601,30 @@ github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OS github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= -github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= -github.com/olekukonko/tablewriter v0.0.2-0.20190409134802-7e037d187b0c/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY= -github.com/onflow/atree v0.6.0/go.mod h1:gBHU0M05qCbv9NN0kijLWMgC47gHVNBIp4KmsVFi0tc= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f h1:Z8/PgTqOgOg02MTRpTBYO2k16FE6z4wEOtaC2WBR9Xo= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f/go.mod h1:xvP61FoOs95K7IYdIYRnNcYQGf4nbF/uuJ0tHf4DRuM= -github.com/onflow/cadence v0.42.6/go.mod h1:raU8va8QRyTa/eUbhej4mbyW2ETePfSaywoo36MddgE= +github.com/onflow/cadence v1.0.0-M3/go.mod h1:odXGZZ/wGNA5mwT8bC9v8u8EXACHllB2ABSZK65TGL8= github.com/onflow/cadence v1.0.0-preview.2.0.20240122125204-5ce1f36f95bb h1:OpNQ8+ZPBg5DHchnZyiBySz/OQc4uIeptTm7cBfCvOA= github.com/onflow/cadence v1.0.0-preview.2.0.20240122125204-5ce1f36f95bb/go.mod h1:odXGZZ/wGNA5mwT8bC9v8u8EXACHllB2ABSZK65TGL8= github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231212194336-a2802ba36596 h1:MTgrwXkiWwNysYpWGzWjc1n9w1nfXvizmGkSAuEY6jk= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20231212194336-a2802ba36596/go.mod h1:uugR8U8Rlk2Xbn1ne7WWkPIcLReOyyXeQ/6tBg2Lsu8= -github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2.0.20240122164005-147ad40664ca h1:7yG8dYqMzWzTZWJ17dnBdS01UDlOBnf1dd1rWKcFdY0= -github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2.0.20240122164005-147ad40664ca/go.mod h1:O5+TK1qs2c1R5X4TEQp4m2c/YhlCjwdW7bsRcUB1U8s= -github.com/onflow/flow-go-sdk v0.44.1-0.20240124213231-78d9f08eeae1 h1:mPPWgbBvXa1e4Szh4pScMJSB0JEOoUggLeargIaqrKk= -github.com/onflow/flow-go-sdk v0.44.1-0.20240124213231-78d9f08eeae1/go.mod h1:CfMN55RlTRb3WnKPynmjoqLO2qCmF0EgczN4SSa4gZk= -github.com/onflow/flow-go/crypto v0.24.7 h1:RCLuB83At4z5wkAyUCF7MYEnPoIIOHghJaODuJyEoW0= -github.com/onflow/flow-go/crypto v0.24.7/go.mod h1:fqCzkIBBMRRkciVrvW21rECKq1oD7Q6u+bCI78lfNX0= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240122215824-10d8a31d1991 h1:UPDAaWUag3epvX+yJ5IrFESQr1P53rDDqw+ShGxg5/k= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240122215824-10d8a31d1991/go.mod h1:CPLntX0UYLgZvvgoHfEwaaeSL3IS/eFzAdfbT0aIhb4= -github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= +github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= +github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= +github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= -github.com/onflow/sdks v0.5.0/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.10.3/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk= github.com/onsi/ginkgo v1.13.0/go.mod h1:+REjRxOmWfHCjfv9TTWB1jD1Frx4XydAD3zm1lskyM0= github.com/onsi/ginkgo v1.14.0/go.mod h1:iSB4RoI2tjJc9BBv4NKIKWKya62Rps+oPG/Lv9klQyY= -github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY= github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo= github.com/opentracing/opentracing-go v1.0.2/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= github.com/opentracing/opentracing-go v1.0.3-0.20180606204148-bd9c31933947/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= github.com/paulbellamy/ratecounter v0.2.0/go.mod h1:Hfx1hDpSGoqxkVVpBi/IlYD7kChlfo5C6hzIHwPqfFE= -github.com/pborman/uuid v0.0.0-20170112150404-1b00554d8222/go.mod h1:VyrYX9gd7irzKovcSS6BIIEwPRkP2Wm2m9ufcdFSJ34= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= github.com/peterh/liner v1.0.1-0.20180619022028-8c1271fcf47f/go.mod h1:xIteQHvHuaLYG9IFj6mSxM0fCKrs34IrEQUhOYuGPHc= github.com/peterh/liner v1.1.1-0.20190123174540-a2c9a5303de7/go.mod h1:CRroGNssyjTd/qIG2FyxByd2S8JEAZXBl4qUrZf8GS0= @@ -1762,7 +1675,6 @@ github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsT github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= -github.com/prometheus/tsdb v0.6.2-0.20190402121629-4f204dcbc150/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= github.com/protolambda/bls12-381-util v0.0.0-20220416220906-d8552aa452c7/go.mod h1:IToEjHuttnUzwZI5KBSM/LOOW3qLbbrHOEfp3SbECGY= github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= @@ -1779,9 +1691,7 @@ github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTE github.com/rogpeppe/go-internal v1.8.1/go.mod h1:JeRgkft04UBgHMgCIwADu4Pn6Mtm5d4nPKWu0nJ5d+o= github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= -github.com/rs/cors v0.0.0-20160617231935-a62a804a8a00/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= github.com/rs/cors v1.7.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= -github.com/rs/xhandler v0.0.0-20160618193221-ed27b6fd6521/go.mod h1:RvLn4FgxWubrpZHtQLnOf6EwhN2hEMusxZOhcW9H3UQ= github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= @@ -1798,15 +1708,14 @@ github.com/sergi/go-diff v1.2.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNX github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC7eC3UO/RA= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= -github.com/sirupsen/logrus v1.4.2 h1:SPIRibHv4MatM3XXNO2BJeFLZwZ2LvZgfQ5+UNI2im4= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= +github.com/sirupsen/logrus v1.9.0 h1:trlNQbNUG3OdDrDil03MCb1H2o9nJ1x4/5LYw7byDE0= github.com/sirupsen/logrus v1.9.0/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= -github.com/spaolacci/murmur3 v1.0.1-0.20190317074736-539464a789e9/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= github.com/spf13/afero v1.3.3/go.mod h1:5KUK8ByomD5Ti5Artl0RtHeI5pTF7MIDuXL3yY520V4= github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= @@ -1823,8 +1732,6 @@ github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DM github.com/spf13/viper v1.4.0/go.mod h1:PTJ7Z/lr49W6bUbkmS1V3by4uWynFiR9p7+dSq/yZzE= github.com/status-im/keycard-go v0.0.0-20190316090335-8537d3370df4/go.mod h1:RZLeN1LMWmRsyYjvAu+I6Dm9QmlDaIIt+Y+4Kd7Tp+Q= github.com/status-im/keycard-go v0.2.0/go.mod h1:wlp8ZLbsmrF6g6WjugPAx+IzoLrkdf9+mHxBEeo3Hbg= -github.com/steakknife/bloomfilter v0.0.0-20180922174646-6819c0d2a570/go.mod h1:8OR4w3TdeIHIh1g6EMY5p0gVNOovcWC+1vpc7naMuAw= -github.com/steakknife/hamming v0.0.0-20180906055917-c99c65617cd3/go.mod h1:hpGUWaI9xL8pRQCTXQgocU38Qw1g0Us7n5PxxTwTCYU= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= @@ -1846,10 +1753,7 @@ github.com/stretchr/testify v1.8.3/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXl github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= github.com/supranational/blst v0.3.8-0.20220526154634-513d2456b344/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= -github.com/supranational/blst v0.3.10 h1:CMciDZ/h4pXDDXQASe8ZGTNKUiVNxVVA5hpci2Uuhuk= -github.com/supranational/blst v0.3.10/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= github.com/supranational/blst v0.3.11/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= -github.com/syndtr/goleveldb v1.0.1-0.20190923125748-758128399b1d/go.mod h1:9OrXJhf154huy1nPWmuSrkgjPUtUNhA+Zmy+6AESzuA= github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7/go.mod h1:q4W45IWZaF22tdD+VEXcAWRA037jwmWEB5VWYORlTpc= github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c h1:HelZ2kAFadG0La9d+4htN4HzQ68Bm2iM9qKMSMES6xg= github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c/go.mod h1:JlzghshsemAMDGZLytTFY8C1JQxQPhnatWqNwUXjggo= @@ -1866,7 +1770,6 @@ github.com/tyler-smith/go-bip39 v1.0.1-0.20181017060643-dbb3b84ba2ef/go.mod h1:s github.com/tyler-smith/go-bip39 v1.1.0/go.mod h1:gUYDtqQw1JS3ZJ8UWVcGTGqqr6YIN3CWg+kkNaLt55U= github.com/ugorji/go v1.1.4/go.mod h1:uQMGLiO92mf5W77hV/PUCpI3pbzQx3CRekS0kk+RGrc= github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljTbGfSG7qAOspJ7OScBnGdDN/yBr0sguwnwf0= -github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= github.com/urfave/cli/v2 v2.3.0/go.mod h1:LJmUH05zAU44vOAcrfzZQKsZbVcdbOG8rtL3/XcUArI= github.com/urfave/cli/v2 v2.10.2/go.mod h1:f8iq5LtQ/bLxafbdBSLPPNsgaW0l/2fYYEHhAyPlwvo= github.com/urfave/cli/v2 v2.24.1/go.mod h1:GHupkWPMM0M/sj1a2b4wUrWBPzazNrIjouW6fmdJLxc= @@ -1878,7 +1781,6 @@ github.com/valyala/fasttemplate v1.0.1/go.mod h1:UQGH1tvbgY+Nz5t2n7tXsz52dQxojPU github.com/valyala/fasttemplate v1.2.1/go.mod h1:KHLXt3tVN2HBp8eijSv/kGJopbvo7S+qRAEEKiv+SiQ= github.com/valyala/tcplisten v0.0.0-20161114210144-ceec8f93295a/go.mod h1:v3UYOV9WzVtRmSR+PDvWpU/qWl4Wa5LApYYX4ZtKbio= github.com/willf/bitset v1.1.3/go.mod h1:RjeCKbqT1RxIR/KWY6phxZiaY1IyutSBfGjNPySAYV4= -github.com/wsddn/go-ecdh v0.0.0-20161211032359-48726bab9208/go.mod h1:IotVbo4F+mw0EzQ08zFqg7pK3FebNXpaMsRy2RT+Ees= github.com/x448/float16 v0.8.4 h1:qLwI1I70+NjRFUR3zs1JPUCgaCXSh3SW62uAKT1mSBM= github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcYsOfg= github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= @@ -1917,13 +1819,10 @@ go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= go.opentelemetry.io/otel v1.8.0/go.mod h1:2pkj+iMj0o03Y+cW6/m8Y4WkRdYN3AvCXCnzRMp9yvM= -go.opentelemetry.io/otel v1.14.0 h1:/79Huy8wbf5DnIPhemGB+zEPVwnN6fuQybr/SRXa6hM= -go.opentelemetry.io/otel v1.14.0/go.mod h1:o4buv+dJzx8rohcUeRmWUZhqupFvzWis188WlggnNeU= go.opentelemetry.io/otel v1.16.0 h1:Z7GVAX/UkAXPKsy94IU+i6thsQS4nb7LviLpnaNeW8s= go.opentelemetry.io/otel v1.16.0/go.mod h1:vl0h9NUa1D5s1nv3A5vZOYWn8av4K8Ml6JDeHrT/bx4= go.opentelemetry.io/otel/metric v1.16.0/go.mod h1:QE47cpOmkwipPiefDwo2wDzwJrlfxxNYodqc4xnGCo4= go.opentelemetry.io/otel/trace v1.8.0/go.mod h1:0Bt3PXY8w+3pheS3hQUt+wow8b1ojPaTBoTCh2zIFI4= -go.opentelemetry.io/otel/trace v1.14.0/go.mod h1:8avnQLK+CG77yNLUae4ea2JDQ6iT+gozhnZjy/rw9G8= go.opentelemetry.io/otel/trace v1.16.0/go.mod h1:Yt9vYq1SdNz3xdjZZK7wcXv1qv2pwLkqr2QVwea0ef0= go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= go.opentelemetry.io/proto/otlp v0.15.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= @@ -1931,8 +1830,8 @@ go.opentelemetry.io/proto/otlp v0.19.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/automaxprocs v1.5.2/go.mod h1:eRbA25aqJrxAbsLO0xy5jVwPt7FQnRgjW+efnwa1WM0= -go.uber.org/goleak v1.1.10 h1:z+mqJhf6ss6BSfSM671tgKyZBFPTTJM+HLxnhPC3wu0= go.uber.org/goleak v1.1.10/go.mod h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A= +go.uber.org/goleak v1.2.1 h1:NBol2c7O1ZokfZ0LEU9K6Whx/KnwvepVetCUhtKja4A= go.uber.org/goleak v1.2.1/go.mod h1:qlT2yGI9QafXHhZZLxlSuNsMw3FFLxBr+tBRlmO1xH4= go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= go.uber.org/zap v1.9.1/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= @@ -1946,7 +1845,6 @@ golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8U golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190909091759-094676da4a83/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20200311171314-f7b00557c8c4/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= @@ -2016,7 +1914,6 @@ golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRu golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 h1:VLliZ0d+/avPrXXH+OakdXhpJuEoBZuwh1m2j7U6Iug= golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= @@ -2445,7 +2342,6 @@ gonum.org/v1/gonum v0.6.0/go.mod h1:9mxDZsDKxgMAuccQkewq682L+0eCu4dCN2yonUJTCLU= gonum.org/v1/gonum v0.6.1/go.mod h1:9mxDZsDKxgMAuccQkewq682L+0eCu4dCN2yonUJTCLU= gonum.org/v1/gonum v0.8.2/go.mod h1:oe/vMfY3deqTw+1EZJhuvEW2iwGF1bW9wwu7XCu0+v0= gonum.org/v1/gonum v0.9.3/go.mod h1:TZumC3NeyVQskjXqmyWt4S3bINhy7B4eYwW69EbyX+0= -gonum.org/v1/gonum v0.11.0 h1:f1IJhK4Km5tBJmaiJXtk/PkL4cdVX6J+tGiM187uT5E= gonum.org/v1/gonum v0.11.0/go.mod h1:fSG4YDCxxUZQJ7rKsQrj0gMOg00Il0Z96/qMA4bVQhA= gonum.org/v1/gonum v0.13.0 h1:a0T3bh+7fhRyqeNbiC3qVHYmkiQgit3wnNan/2c0HMM= gonum.org/v1/gonum v0.13.0/go.mod h1:/WPYRckkfWrhWefxyYTfrTtQR0KH4iyHNuzxqXAKyAU= @@ -2785,6 +2681,7 @@ google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqw google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.29.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= @@ -2801,11 +2698,9 @@ gopkg.in/go-playground/validator.v8 v8.18.2/go.mod h1:RX2a/7Ha8BgOhfk7j780h4/u/R gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce/go.mod h1:yeKp02qBN3iKW1OzL3MGk2IdtZzaj7SFntXj72NppTA= gopkg.in/natefinch/lumberjack.v2 v2.0.0/go.mod h1:l0ndWWf7gzL7RNwBG7wST/UCcT4T24xpD6X8LsfU/+k= gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce/go.mod h1:5AcXVHNjg+BDxry382+8OKon8SEWiKktQR07RKPsv1c= -gopkg.in/olebedev/go-duktape.v3 v3.0.0-20200316214253-d7b0ff38cac9/go.mod h1:uAJfkITjFhyEEuUfm7bsmCZRbW5WRq8s9EY8HZ6hCns= gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= gopkg.in/src-d/go-billy.v4 v4.3.2/go.mod h1:nDjArDMp+XMs1aFAESLRjfGSgfvoYN0hDfzEk0GjC98= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= -gopkg.in/urfave/cli.v1 v1.20.0/go.mod h1:vuBzUtMdQeixQj8LVd+/98pzhxNGQoyuPBlsXHOQNO0= gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= @@ -2820,7 +2715,6 @@ gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C gopkg.in/yaml.v3 v3.0.0/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= @@ -2829,8 +2723,8 @@ honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.1.3/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las= -lukechampine.com/blake3 v1.1.7 h1:GgRMhmdsuK8+ii6UZFDL8Nb+VyMwadAgcJyfYHxG6n0= lukechampine.com/blake3 v1.1.7/go.mod h1:tkKEOtDkNtklkXtLNEOGNq5tcV90tJiA1vAA12R78LA= +lukechampine.com/blake3 v1.2.1 h1:YuqqRuaqsGV71BV/nm9xlI0MKUv4QC54jQnBChWbGnI= lukechampine.com/blake3 v1.2.1/go.mod h1:0OFRp7fBtAylGVCO40o87sbupkyIGgbpv1+M1k1LM6k= lukechampine.com/uint128 v1.1.1/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= lukechampine.com/uint128 v1.2.0/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= From b0d86ba521ba8bde3dd6dcffe8312b16100e85f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20M=C3=BCller?= Date: Wed, 24 Jan 2024 17:32:50 -0800 Subject: [PATCH 070/160] update NFT contracts, remove replace statements --- lib/go/contracts/go.mod | 6 +----- lib/go/contracts/go.sum | 4 ++++ 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 96be06aa0..3248d8c95 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -6,7 +6,7 @@ require ( github.com/kevinburke/go-bindata v3.23.0+incompatible github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240125000944-01706d1b6a69 github.com/onflow/flow-go-sdk v1.0.0-M1 - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125000928-4973179638e1 + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125012012-2118663ca817 github.com/stretchr/testify v1.8.4 ) @@ -56,7 +56,3 @@ retract ( v1.2.4 // contains retraction only v1.2.3 // accidentally published with out-of-order tag ) - -replace github.com/onflow/flow-ft/lib/go/contracts => ../../../../flow-ft/lib/go/contracts - -replace github.com/onflow/flow-nft/lib/go/contracts => ../../../../flow-nft/lib/go/contracts diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 6ae261e56..e6700cf1f 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1609,8 +1609,12 @@ github.com/onflow/cadence v1.0.0-preview.2.0.20240122125204-5ce1f36f95bb h1:OpNQ github.com/onflow/cadence v1.0.0-preview.2.0.20240122125204-5ce1f36f95bb/go.mod h1:odXGZZ/wGNA5mwT8bC9v8u8EXACHllB2ABSZK65TGL8= github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240125000944-01706d1b6a69 h1:QV31Qw7rPZM3jgjaosqr/MJjzpmO7ibnrHjUntSsJGY= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240125000944-01706d1b6a69/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125012012-2118663ca817 h1:ciQUDNptn8jSQjp4Oh7rnC8EZYCYkTvWYlrXhCsf/iQ= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125012012-2118663ca817/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= From 762d6d28d114b82000d27f1f2d06f19524c7fb9e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20M=C3=BCller?= Date: Wed, 24 Jan 2024 17:38:10 -0800 Subject: [PATCH 071/160] update to Cadence v1.0.0-M3 --- lib/go/contracts/go.mod | 2 +- lib/go/contracts/go.sum | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 3248d8c95..848104269 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -28,7 +28,7 @@ require ( github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-isatty v0.0.19 // indirect github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f // indirect - github.com/onflow/cadence v1.0.0-preview.2.0.20240122125204-5ce1f36f95bb // indirect + github.com/onflow/cadence v1.0.0-M3 // indirect github.com/onflow/crypto v0.25.0 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index e6700cf1f..361288cb4 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1604,9 +1604,8 @@ github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f h1:Z8/PgTqOgOg02MTRpTBYO2k16FE6z4wEOtaC2WBR9Xo= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f/go.mod h1:xvP61FoOs95K7IYdIYRnNcYQGf4nbF/uuJ0tHf4DRuM= +github.com/onflow/cadence v1.0.0-M3 h1:bSydJise9pU4aALloUKv/EWmDLITRlbBpuG8OPBydZM= github.com/onflow/cadence v1.0.0-M3/go.mod h1:odXGZZ/wGNA5mwT8bC9v8u8EXACHllB2ABSZK65TGL8= -github.com/onflow/cadence v1.0.0-preview.2.0.20240122125204-5ce1f36f95bb h1:OpNQ8+ZPBg5DHchnZyiBySz/OQc4uIeptTm7cBfCvOA= -github.com/onflow/cadence v1.0.0-preview.2.0.20240122125204-5ce1f36f95bb/go.mod h1:odXGZZ/wGNA5mwT8bC9v8u8EXACHllB2ABSZK65TGL8= github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240125000944-01706d1b6a69 h1:QV31Qw7rPZM3jgjaosqr/MJjzpmO7ibnrHjUntSsJGY= From ad07d0ececad6a3b355c7b9271a73294826b50bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20M=C3=BCller?= Date: Wed, 24 Jan 2024 17:39:52 -0800 Subject: [PATCH 072/160] update to Cadence v1.0.0-M3 and SDK v1.0.0-M1 --- lib/go/templates/go.mod | 25 +++---- lib/go/templates/go.sum | 151 +++++++++------------------------------- 2 files changed, 46 insertions(+), 130 deletions(-) diff --git a/lib/go/templates/go.mod b/lib/go/templates/go.mod index 04aa72a15..2a338f45d 100644 --- a/lib/go/templates/go.mod +++ b/lib/go/templates/go.mod @@ -4,35 +4,36 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.24.0+incompatible - github.com/onflow/cadence v1.0.0-preview.2.0.20240122125204-5ce1f36f95bb - github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2.0.20240122164005-147ad40664ca + github.com/onflow/cadence v1.0.0-M3 + github.com/onflow/flow-go-sdk v1.0.0-M1 github.com/psiemens/sconfig v0.1.0 github.com/spf13/cobra v1.5.0 ) require ( github.com/SaveTheRbtz/mph v0.1.1-0.20240117162131-4166ec7869bc // indirect - github.com/bits-and-blooms/bitset v1.5.0 // indirect + github.com/bits-and-blooms/bitset v1.7.0 // indirect github.com/btcsuite/btcd/btcec/v2 v2.2.1 // indirect github.com/davecgh/go-spew v1.1.1 // indirect - github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect - github.com/ethereum/go-ethereum v1.9.13 // indirect - github.com/fsnotify/fsnotify v1.4.7 // indirect + github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect + github.com/ethereum/go-ethereum v1.13.5 // indirect + github.com/fsnotify/fsnotify v1.6.0 // indirect github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c // indirect github.com/fxamacker/circlehash v0.3.0 // indirect github.com/hashicorp/hcl v1.0.0 // indirect + github.com/holiman/uint256 v1.2.3 // indirect github.com/inconshreveable/mousetrap v1.0.0 // indirect github.com/k0kubun/pp v3.0.1+incompatible // indirect - github.com/klauspost/cpuid/v2 v2.2.4 // indirect + github.com/klauspost/cpuid/v2 v2.2.5 // indirect github.com/kr/pretty v0.3.1 // indirect github.com/kr/text v0.2.0 // indirect github.com/logrusorgru/aurora/v4 v4.0.0 // indirect github.com/magiconair/properties v1.8.0 // indirect github.com/mattn/go-colorable v0.1.13 // indirect - github.com/mattn/go-isatty v0.0.17 // indirect - github.com/mitchellh/mapstructure v1.1.2 // indirect + github.com/mattn/go-isatty v0.0.19 // indirect + github.com/mitchellh/mapstructure v1.4.1 // indirect github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f // indirect - github.com/onflow/flow-go/crypto v0.24.7 // indirect + github.com/onflow/crypto v0.25.0 // indirect github.com/pelletier/go-toml v1.2.0 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect @@ -48,13 +49,13 @@ require ( github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d // indirect github.com/x448/float16 v0.8.4 // indirect github.com/zeebo/blake3 v0.2.3 // indirect - go.opentelemetry.io/otel v1.14.0 // indirect + go.opentelemetry.io/otel v1.16.0 // indirect golang.org/x/crypto v0.17.0 // indirect golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc // indirect golang.org/x/sys v0.15.0 // indirect golang.org/x/text v0.14.0 // indirect golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect - gonum.org/v1/gonum v0.11.0 // indirect + gonum.org/v1/gonum v0.13.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index 09488640a..4586cb4a1 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -36,51 +36,27 @@ cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RX cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= -github.com/Azure/azure-pipeline-go v0.2.1/go.mod h1:UGSo8XybXnIGZ3epmeBw7Jdz+HiUVpqIlpz/HKHylF4= -github.com/Azure/azure-pipeline-go v0.2.2/go.mod h1:4rQ/NZncSvGqNkkOsNpOU1tgoNuIlp9AfUH5G1tvCHc= -github.com/Azure/azure-storage-blob-go v0.7.0/go.mod h1:f9YQKtsG1nMisotuTPpO0tjNuEjKRYAcJU8/ydDI++4= -github.com/Azure/go-autorest/autorest v0.9.0/go.mod h1:xyHB1BMZT0cuDHU7I0+g046+BFDTQ8rEZB0s4Yfa6bI= -github.com/Azure/go-autorest/autorest/adal v0.5.0/go.mod h1:8Z9fGy2MpX0PvDjB1pEgQTmVqjGhiHBW7RJJEciWzS0= -github.com/Azure/go-autorest/autorest/adal v0.8.0/go.mod h1:Z6vX6WXXuyieHAXwMj0S6HY6e6wcHn37qQMBQlvY3lc= -github.com/Azure/go-autorest/autorest/date v0.1.0/go.mod h1:plvfp3oPSKwf2DNjlBjWF/7vwR+cUD/ELuzDCXwHUVA= -github.com/Azure/go-autorest/autorest/date v0.2.0/go.mod h1:vcORJHLJEh643/Ioh9+vPmf1Ij9AEBM5FuBIXLmIy0g= -github.com/Azure/go-autorest/autorest/mocks v0.1.0/go.mod h1:OTyCOPRA2IgIlWxVYxBee2F5Gr4kF2zd2J5cFRaIDN0= -github.com/Azure/go-autorest/autorest/mocks v0.2.0/go.mod h1:OTyCOPRA2IgIlWxVYxBee2F5Gr4kF2zd2J5cFRaIDN0= -github.com/Azure/go-autorest/autorest/mocks v0.3.0/go.mod h1:a8FDP3DYzQ4RYfVAxAN3SVSiiO77gL2j2ronKKP0syM= -github.com/Azure/go-autorest/logger v0.1.0/go.mod h1:oExouG+K6PryycPJfVSxi/koC6LSNgds39diKLz7Vrc= -github.com/Azure/go-autorest/tracing v0.5.0/go.mod h1:r/s2XiOKccPW3HrqB+W0TQzfbtp2fGCgRFtBroKn4Dk= github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= -github.com/OneOfOne/xxhash v1.2.5/go.mod h1:eZbhyaAYD41SGSSsnmcpxVoRiQ/MPUTjUdIIOT9Um7Q= github.com/SaveTheRbtz/mph v0.1.1-0.20240117162131-4166ec7869bc h1:DCHzPQOcU/7gwDTWbFQZc5qHMPS1g0xTO56k8NXsv9M= github.com/SaveTheRbtz/mph v0.1.1-0.20240117162131-4166ec7869bc/go.mod h1:LJM5a3zcIJ/8TmZwlUczvROEJT8ntOdhdG9jjcR1B0I= -github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg= -github.com/VictoriaMetrics/fastcache v1.5.3/go.mod h1:+jv9Ckb+za/P1ZRg/sulP5Ni1v49daAVERr0H3CuscE= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= -github.com/allegro/bigcache v1.2.1-0.20190218064605-e24eb225f156/go.mod h1:Cb/ax3seSYIx7SuZdm2G2xzfwmv3TPSk2ucNfQESPXM= -github.com/aristanetworks/goarista v0.0.0-20170210015632-ea17b1a17847/go.mod h1:D/tb0zPVXnP7fmsLZjtdUhSsumbK/ij54UXjjVgMGxQ= github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8= -github.com/aws/aws-sdk-go v1.25.48/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= -github.com/bits-and-blooms/bitset v1.5.0 h1:NpE8frKRLGHIcEzkR+gZhiioW1+WbYV6fKwD6ZIpQT8= -github.com/bits-and-blooms/bitset v1.5.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= -github.com/btcsuite/btcd v0.0.0-20171128150713-2e60448ffcc6/go.mod h1:Dmm/EzmjnCiweXmzRIAiUWCInVmPgjkzgv5k4tVyXiQ= +github.com/bits-and-blooms/bitset v1.7.0 h1:YjAGVd3XmtK9ktAbX8Zg2g2PwLIMjGREZJHlV4j7NEo= +github.com/bits-and-blooms/bitset v1.7.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= github.com/btcsuite/btcd/btcec/v2 v2.2.1 h1:xP60mv8fvp+0khmrN0zTdPC3cNm24rfeE6lh2R/Yv3E= github.com/btcsuite/btcd/btcec/v2 v2.2.1/go.mod h1:9/CSmJxmuvqzX9Wh2fXMWToLOHhPd11lSPuIupwTkI8= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= -github.com/cespare/cp v0.1.0/go.mod h1:SOGHArjBr4JWaSDEVpWpo/hNg6RoKrls6Oh40hiwW+s= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= -github.com/cespare/xxhash/v2 v2.0.1-0.20190104013014-3767db7a7e18/go.mod h1:HD5P3vAIAh+Y2GAxg0PrPN1P8WkepXGpjbUPDHJqqKM= -github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= -github.com/cloudflare/cloudflare-go v0.10.2-0.20190916151808-a80f83b9add9/go.mod h1:1MxXX1Ux4x6mqPmjkUgTP1CdXIBXKX7T+Jk9Gxrmx+U= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= @@ -91,40 +67,30 @@ github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3Ee github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= -github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/deckarep/golang-set v0.0.0-20180603214616-504e848d77ea/go.mod h1:93vsz/8Wt4joVM7c2AVqh+YRMiUSc14yDtF28KmMOgQ= -github.com/decred/dcrd/crypto/blake256 v1.0.0/go.mod h1:sQl2p6Y26YV+ZOcSTP6thNdn47hh8kt6rqSlvmrXFAc= -github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 h1:YLtO71vCjJRCBcrPMtQ9nqBsqpA1m5sE92cU+pd5Mcc= -github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1/go.mod h1:hyedUtir6IdtD/7lIxGeCxkaw7y45JueMRL4DIyJDKs= +github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 h1:8UrgZ3GkP4i/CLijOJx79Yu+etlyjdBU4sfcs2WYQMs= +github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0/go.mod h1:v57UDF4pDQJcEfFUCRop3lJL149eHGSe9Jvczhzjo/0= github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= -github.com/dlclark/regexp2 v1.2.0/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc= -github.com/docker/docker v1.4.2-0.20180625184442-8e610b2b55bf/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= -github.com/dop251/goja v0.0.0-20200219165308-d1232e640a87/go.mod h1:Mw6PkjjMXWbTj+nnj4s3QPXq1jaT0s5pC0iFD4+BOAA= -github.com/edsrzf/mmap-go v0.0.0-20160512033002-935e0e8a636c/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= -github.com/elastic/gosigar v0.8.1-0.20180330100440-37f05ff46ffa/go.mod h1:cdorVVzy1fhmEqmtgqkoE3bYtCfSCkVyjTyCIo22xvs= github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= -github.com/ethereum/go-ethereum v1.9.13 h1:rOPqjSngvs1VSYH2H+PMPiWt4VEulvNRbFgqiGqJM3E= -github.com/ethereum/go-ethereum v1.9.13/go.mod h1:qwN9d1GLyDh0N7Ab8bMGd0H9knaji2jOBm2RrMGjXls= -github.com/fatih/color v1.3.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= -github.com/fjl/memsize v0.0.0-20180418122429-ca190fb6ffbc/go.mod h1:VvhXpOYNQvB+uIk2RvXzuaQtkQJzzIx6lSBe1xv7hi0= -github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I= +github.com/ethereum/go-ethereum v1.13.5 h1:U6TCRciCqZRe4FPXmy1sMGxTfuk8P7u2UoinF3VbaFk= +github.com/ethereum/go-ethereum v1.13.5/go.mod h1:yMTu38GSuyxaYzQMViqNmQ1s3cE84abZexQmTgenWk0= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= +github.com/fsnotify/fsnotify v1.6.0 h1:n+5WquG0fcWoWp6xPWfHdbskMCQaFnG6PfBrh1Ky4HY= +github.com/fsnotify/fsnotify v1.6.0/go.mod h1:sl3t1tCWJFWoRz9R8WJCbQihKKwmorjAbSClcnxKAGw= github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c h1:5tm/Wbs9d9r+qZaUFXk59CWDD0+77PBqDREffYkyi5c= github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= github.com/fxamacker/circlehash v0.3.0 h1:XKdvTtIJV9t7DDUtsf0RIpC1OcxZtPbmgIH7ekx28WA= github.com/fxamacker/circlehash v0.3.0/go.mod h1:3aq3OfVvsWtkWMb6A1owjOQFA+TLsD5FgJflnaQwtMM= -github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff/go.mod h1:x7DCsMOv1taUwEWCzT4cmDeAkigA5/QCwUodaVOe8Ww= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= @@ -132,8 +98,6 @@ github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2 github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= -github.com/go-ole/go-ole v1.2.1/go.mod h1:7FAglXiTm7HKlQRDeOQ6ZNUHidzCWXuZWq/1dTyBNF8= -github.com/go-sourcemap/sourcemap v2.1.2+incompatible/go.mod h1:F8jJfvm2KbVjc5NqelyYJmf/v5J0dwNLS2mL4sNA1Jg= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= @@ -151,7 +115,6 @@ github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.3.2-0.20190517061210-b285ee9cfc6c/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= github.com/golang/protobuf v1.3.4/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw= @@ -164,7 +127,7 @@ github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvq github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= -github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= @@ -196,42 +159,33 @@ github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+ github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= -github.com/gorilla/websocket v1.4.1-0.20190629185528-ae1634f6a989/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= -github.com/graph-gophers/graphql-go v0.0.0-20191115155744-f33e81362277/go.mod h1:9CQHMSxwO4MprSdzoIEobiHpoLtHm77vfxsvsIN5Vuc= github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= -github.com/hashicorp/golang-lru v0.0.0-20160813221303-0a025b7e63ad/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= -github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= -github.com/huin/goupnp v0.0.0-20161224104101-679507af18f3/go.mod h1:MZ2ZmwcBpvOoJ22IJsc7va19ZwoheaBk43rKg12SKag= +github.com/holiman/uint256 v1.2.3 h1:K8UWO1HUJpRMXBxbmaY1Y8IAMZC/RsKB+ArEnnK4l5o= +github.com/holiman/uint256 v1.2.3/go.mod h1:SC8Ryt4n+UBbPbIBKaG9zbbDlp4jOru9xFZmPzLUTxw= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM= github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= -github.com/influxdata/influxdb v1.2.3-0.20180221223340-01288bdb0883/go.mod h1:qZna6X/4elxqT3yI9iZYdZrWWdeFOOprn86kgg4+IzY= -github.com/jackpal/go-nat-pmp v1.0.2-0.20160603034137-1fa385a6f458/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc= -github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= -github.com/julienschmidt/httprouter v1.1.1-0.20170430222011-975b5c4c7c21/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 h1:uC1QfSlInpQF+M0ao65imhwqKnz3Q2z/d8PWZRMQvDM= github.com/k0kubun/pp v3.0.1+incompatible h1:3tqvf7QgUnZ5tXO6pNAZlrvHgl6DvifjDrd9g2S9Z40= github.com/k0kubun/pp v3.0.1+incompatible/go.mod h1:GWse8YhT0p8pT4ir3ZgBbfZild3tgzSScAn6HmfYukg= -github.com/karalabe/usb v0.0.0-20190919080040-51dc0efba356/go.mod h1:Od972xHfMJowv7NGVDiWVxk2zxnWgjLlJzE+F4F7AGU= github.com/kevinburke/go-bindata v3.24.0+incompatible h1:qajFA3D0pH94OTLU4zcCCKCDgR+Zr2cZK/RPJHDdFoY= github.com/kevinburke/go-bindata v3.24.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/klauspost/cpuid/v2 v2.0.12/go.mod h1:g2LTdtYhdyuGPqyWyv7qRAmj1WBqxuObKfj5c0PQa7c= -github.com/klauspost/cpuid/v2 v2.2.4 h1:acbojRNwl3o09bUq+yDCtZFc1aiwaAAxtcn8YkZXnvk= -github.com/klauspost/cpuid/v2 v2.2.4/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY= -github.com/konsorten/go-windows-terminal-sequences v1.0.1 h1:mweAR1A6xJ3oS2pRaGiHgQ4OO8tzTaLawm8vnODuwDk= +github.com/klauspost/cpuid/v2 v2.2.5 h1:0E5MSMDEoAulmXNFquVs//DdoomxaoTY1kUhbc/qbZg= +github.com/klauspost/cpuid/v2 v2.2.5/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= @@ -242,53 +196,36 @@ github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= -github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= github.com/leanovate/gopter v0.2.9 h1:fQjYxZaynp97ozCzfOyOuAGOU4aU/z37zf/tOujFk7c= github.com/logrusorgru/aurora/v4 v4.0.0 h1:sRjfPpun/63iADiSvGGjgA1cAYegEWMPCJdUpJYn9JA= github.com/logrusorgru/aurora/v4 v4.0.0/go.mod h1:lP0iIa2nrnT/qoFXcOZSrZQpJ1o6n2CUf/hyHi2Q4ZQ= github.com/magiconair/properties v1.8.0 h1:LLgXmsheXeRoUOBOjtwPQCWIYqM/LU1ayDtDePerRcY= github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= -github.com/mattn/go-colorable v0.1.0/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= -github.com/mattn/go-ieproxy v0.0.0-20190610004146-91bb50d98149/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= -github.com/mattn/go-ieproxy v0.0.0-20190702010315-6dee0af9227d/go.mod h1:31jz6HNzdxOmlERGGEc4v/dMssOfmp2p5bT/okiKFFc= -github.com/mattn/go-isatty v0.0.5-0.20180830101745-3fb116b82035/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= -github.com/mattn/go-isatty v0.0.17 h1:BTarxUcIeDqL27Mc+vyvdWYSL28zpIhv3RoTdsLMPng= -github.com/mattn/go-isatty v0.0.17/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= -github.com/mattn/go-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= -github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= +github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APPA= +github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= -github.com/mitchellh/mapstructure v1.1.2 h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE= github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= +github.com/mitchellh/mapstructure v1.4.1 h1:CpVNEelQCZBooIPDn+AR3NpivK/TIKU8bDxdASFVQag= +github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= -github.com/naoina/go-stringutil v0.1.0/go.mod h1:XJ2SJL9jCtBh+P9q5btrd/Ylo8XwT/h1USek5+NqSA0= -github.com/naoina/toml v0.1.2-0.20170918210437-9fafd6967416/go.mod h1:NBIhNtsFMo3G2szEBne+bO4gS192HuIYRqfvOWb4i1E= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= -github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= -github.com/olekukonko/tablewriter v0.0.2-0.20190409134802-7e037d187b0c/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f h1:Z8/PgTqOgOg02MTRpTBYO2k16FE6z4wEOtaC2WBR9Xo= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f/go.mod h1:xvP61FoOs95K7IYdIYRnNcYQGf4nbF/uuJ0tHf4DRuM= -github.com/onflow/cadence v1.0.0-preview.2.0.20240122125204-5ce1f36f95bb h1:OpNQ8+ZPBg5DHchnZyiBySz/OQc4uIeptTm7cBfCvOA= -github.com/onflow/cadence v1.0.0-preview.2.0.20240122125204-5ce1f36f95bb/go.mod h1:odXGZZ/wGNA5mwT8bC9v8u8EXACHllB2ABSZK65TGL8= +github.com/onflow/cadence v1.0.0-M3 h1:bSydJise9pU4aALloUKv/EWmDLITRlbBpuG8OPBydZM= +github.com/onflow/cadence v1.0.0-M3/go.mod h1:odXGZZ/wGNA5mwT8bC9v8u8EXACHllB2ABSZK65TGL8= github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= -github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2.0.20240122164005-147ad40664ca h1:7yG8dYqMzWzTZWJ17dnBdS01UDlOBnf1dd1rWKcFdY0= -github.com/onflow/flow-go-sdk v0.44.0-stable-cadence.2.0.20240122164005-147ad40664ca/go.mod h1:O5+TK1qs2c1R5X4TEQp4m2c/YhlCjwdW7bsRcUB1U8s= -github.com/onflow/flow-go/crypto v0.24.7 h1:RCLuB83At4z5wkAyUCF7MYEnPoIIOHghJaODuJyEoW0= -github.com/onflow/flow-go/crypto v0.24.7/go.mod h1:fqCzkIBBMRRkciVrvW21rECKq1oD7Q6u+bCI78lfNX0= -github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= -github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= -github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= -github.com/pborman/uuid v0.0.0-20170112150404-1b00554d8222/go.mod h1:VyrYX9gd7irzKovcSS6BIIEwPRkP2Wm2m9ufcdFSJ34= +github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= +github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= +github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= +github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= github.com/pelletier/go-toml v1.2.0 h1:T5zMGML61Wp+FlcbWjRDT7yAxhJNAiPPLOFECq181zc= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= -github.com/peterh/liner v1.1.1-0.20190123174540-a2c9a5303de7/go.mod h1:CRroGNssyjTd/qIG2FyxByd2S8JEAZXBl4qUrZf8GS0= github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/sftp v1.13.1/go.mod h1:3HaPG6Dq1ILlpPZRO0HVMrsydcdLt6HRDccSgb87qRg= @@ -303,28 +240,21 @@ github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7q github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= -github.com/prometheus/tsdb v0.6.2-0.20190402121629-4f204dcbc150/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= github.com/psiemens/sconfig v0.1.0 h1:xfWqW+TRpih7mXZIqKYTmpRhlZLQ1kbxV8EjllPv76s= github.com/psiemens/sconfig v0.1.0/go.mod h1:+MLKqdledP/8G3rOBpknbLh0IclCf4WneJUtS26JB2U= github.com/rivo/uniseg v0.4.4 h1:8TfxU8dW6PdqD27gjM8MVNuicgxIjxpm4K7x4jp8sis= github.com/rivo/uniseg v0.4.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= -github.com/rjeczalik/notify v0.9.1/go.mod h1:rKwnCoCGeuQnwBtTSPL9Dad03Vh2n40ePRrjvIXnJho= github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= -github.com/rs/cors v0.0.0-20160617231935-a62a804a8a00/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= -github.com/rs/xhandler v0.0.0-20160618193221-ed27b6fd6521/go.mod h1:RvLn4FgxWubrpZHtQLnOf6EwhN2hEMusxZOhcW9H3UQ= github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= -github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= -github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= -github.com/sirupsen/logrus v1.4.2 h1:SPIRibHv4MatM3XXNO2BJeFLZwZ2LvZgfQ5+UNI2im4= +github.com/sirupsen/logrus v1.9.0 h1:trlNQbNUG3OdDrDil03MCb1H2o9nJ1x4/5LYw7byDE0= github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= -github.com/spaolacci/murmur3 v1.0.1-0.20190317074736-539464a789e9/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= github.com/spf13/afero v1.9.2 h1:j49Hj62F0n+DaZ1dDCvhABaPNSGNkt32oRFxI33IEMw= github.com/spf13/afero v1.9.2/go.mod h1:iUV7ddyEEZPO5gA3zD4fJt6iStLlL+Lg4m2cihcDf8Y= @@ -341,31 +271,22 @@ github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s= github.com/spf13/viper v1.4.0 h1:yXHLWeravcrgGyFSyCgdYpXQ9dR9c/WED3pg1RhxqEU= github.com/spf13/viper v1.4.0/go.mod h1:PTJ7Z/lr49W6bUbkmS1V3by4uWynFiR9p7+dSq/yZzE= -github.com/status-im/keycard-go v0.0.0-20190316090335-8537d3370df4/go.mod h1:RZLeN1LMWmRsyYjvAu+I6Dm9QmlDaIIt+Y+4Kd7Tp+Q= -github.com/steakknife/bloomfilter v0.0.0-20180922174646-6819c0d2a570/go.mod h1:8OR4w3TdeIHIh1g6EMY5p0gVNOovcWC+1vpc7naMuAw= -github.com/steakknife/hamming v0.0.0-20180906055917-c99c65617cd3/go.mod h1:hpGUWaI9xL8pRQCTXQgocU38Qw1g0Us7n5PxxTwTCYU= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= -github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= -github.com/supranational/blst v0.3.10 h1:CMciDZ/h4pXDDXQASe8ZGTNKUiVNxVVA5hpci2Uuhuk= -github.com/syndtr/goleveldb v1.0.1-0.20190923125748-758128399b1d/go.mod h1:9OrXJhf154huy1nPWmuSrkgjPUtUNhA+Zmy+6AESzuA= github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c h1:HelZ2kAFadG0La9d+4htN4HzQ68Bm2iM9qKMSMES6xg= github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c/go.mod h1:JlzghshsemAMDGZLytTFY8C1JQxQPhnatWqNwUXjggo= github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d h1:5JInRQbk5UBX8JfUvKh2oYTLMVwj3p6n+wapDDm7hko= github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d/go.mod h1:Nlx5Y115XQvNcIdIy7dZXaNSUpzwBSge4/Ivk93/Yog= -github.com/tyler-smith/go-bip39 v1.0.1-0.20181017060643-dbb3b84ba2ef/go.mod h1:sJ5fKU0s6JVwZjjcUEX2zFOnvq0ASQ2K9Zr6cf67kNs= github.com/ugorji/go v1.1.4/go.mod h1:uQMGLiO92mf5W77hV/PUCpI3pbzQx3CRekS0kk+RGrc= github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljTbGfSG7qAOspJ7OScBnGdDN/yBr0sguwnwf0= -github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= -github.com/wsddn/go-ecdh v0.0.0-20161211032359-48726bab9208/go.mod h1:IotVbo4F+mw0EzQ08zFqg7pK3FebNXpaMsRy2RT+Ees= github.com/x448/float16 v0.8.4 h1:qLwI1I70+NjRFUR3zs1JPUCgaCXSh3SW62uAKT1mSBM= github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcYsOfg= github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= @@ -387,8 +308,8 @@ go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= -go.opentelemetry.io/otel v1.14.0 h1:/79Huy8wbf5DnIPhemGB+zEPVwnN6fuQybr/SRXa6hM= -go.opentelemetry.io/otel v1.14.0/go.mod h1:o4buv+dJzx8rohcUeRmWUZhqupFvzWis188WlggnNeU= +go.opentelemetry.io/otel v1.16.0 h1:Z7GVAX/UkAXPKsy94IU+i6thsQS4nb7LviLpnaNeW8s= +go.opentelemetry.io/otel v1.16.0/go.mod h1:vl0h9NUa1D5s1nv3A5vZOYWn8av4K8Ml6JDeHrT/bx4= go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/goleak v1.1.10 h1:z+mqJhf6ss6BSfSM671tgKyZBFPTTJM+HLxnhPC3wu0= go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= @@ -399,7 +320,6 @@ golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACk golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20200311171314-f7b00557c8c4/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= @@ -444,7 +364,6 @@ golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.14.0 h1:dGoOF9QVLYng8IHTm7BAyWqCqSheQ5pYWGhzW00YJr0= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -498,7 +417,6 @@ golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181205085412-a5c9d58dba9a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -535,8 +453,10 @@ golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= @@ -606,8 +526,8 @@ golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8T golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= -gonum.org/v1/gonum v0.11.0 h1:f1IJhK4Km5tBJmaiJXtk/PkL4cdVX6J+tGiM187uT5E= -gonum.org/v1/gonum v0.11.0/go.mod h1:fSG4YDCxxUZQJ7rKsQrj0gMOg00Il0Z96/qMA4bVQhA= +gonum.org/v1/gonum v0.13.0 h1:a0T3bh+7fhRyqeNbiC3qVHYmkiQgit3wnNan/2c0HMM= +gonum.org/v1/gonum v0.13.0/go.mod h1:/WPYRckkfWrhWefxyYTfrTtQR0KH4iyHNuzxqXAKyAU= google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= @@ -697,17 +617,13 @@ google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2 google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= +google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= -gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= -gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce/go.mod h1:5AcXVHNjg+BDxry382+8OKon8SEWiKktQR07RKPsv1c= -gopkg.in/olebedev/go-duktape.v3 v3.0.0-20200316214253-d7b0ff38cac9/go.mod h1:uAJfkITjFhyEEuUfm7bsmCZRbW5WRq8s9EY8HZ6hCns= gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= -gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= -gopkg.in/urfave/cli.v1 v1.20.0/go.mod h1:vuBzUtMdQeixQj8LVd+/98pzhxNGQoyuPBlsXHOQNO0= gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= @@ -716,7 +632,6 @@ gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= @@ -724,7 +639,7 @@ honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWh honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= -lukechampine.com/blake3 v1.1.7 h1:GgRMhmdsuK8+ii6UZFDL8Nb+VyMwadAgcJyfYHxG6n0= +lukechampine.com/blake3 v1.2.1 h1:YuqqRuaqsGV71BV/nm9xlI0MKUv4QC54jQnBChWbGnI= pgregory.net/rapid v0.4.7 h1:MTNRktPuv5FNqOO151TM9mDTa+XHcX6ypYeISDVD14g= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= From 04dae1ad07837962d81e8074148d449cb7367e5d Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Thu, 25 Jan 2024 15:42:29 -0600 Subject: [PATCH 073/160] remove getBalance, add isAvailableToWithdraw --- contracts/FlowFees.cdc | 10 +++++----- contracts/FlowServiceAccount.cdc | 6 +++--- contracts/FlowStorageFees.cdc | 8 ++++---- contracts/FlowToken.cdc | 11 ++++++----- lib/go/contracts/go.mod | 4 ++-- lib/go/contracts/go.sum | 4 ++++ 6 files changed, 24 insertions(+), 19 deletions(-) diff --git a/contracts/FlowFees.cdc b/contracts/FlowFees.cdc index f8de5b0c6..22f149ff9 100644 --- a/contracts/FlowFees.cdc +++ b/contracts/FlowFees.cdc @@ -21,14 +21,14 @@ access(all) contract FlowFees { access(all) fun deposit(from: @{FungibleToken.Vault}) { let from <- from as! @FlowToken.Vault - let balance = from.getBalance() + let balance = from.balance self.vault.deposit(from: <-from) emit TokensDeposited(amount: balance) } /// Get the balance of the Fees Vault access(all) fun getFeeBalance(): UFix64 { - return self.vault.getBalance() + return self.vault.balance } access(all) resource Administrator { @@ -121,7 +121,7 @@ access(all) contract FlowFees { // In the edge case where the payer doesnt have a vault, treat the balance as 0. var balance = 0.0 if let tokenVault = payerAcct.storage.borrow<&FlowToken.Vault>(from: /storage/flowTokenVault) { - balance = tokenVault.getBalance() + balance = tokenVault.balance } return VerifyPayerBalanceResult( @@ -146,13 +146,13 @@ access(all) contract FlowFees { ?? panic("Unable to borrow reference to the default token vault") - if feeAmount > tokenVault.getBalance() { + if feeAmount > tokenVault.balance { // In the future this code path will never be reached, // as payers that are under account minimum balance will not have their transactions included in a collection // // Currently this is not used to fail the transaction (as that is the responsibility of the minimum account balance logic), // But is used to reduce the balance of the vault to 0.0, if the vault has less available balance than the transaction fees. - feeAmount = tokenVault.getBalance() + feeAmount = tokenVault.balance } let feeVault <- tokenVault.withdraw(amount: feeAmount) diff --git a/contracts/FlowServiceAccount.cdc b/contracts/FlowServiceAccount.cdc index 66e52740c..ba5026506 100644 --- a/contracts/FlowServiceAccount.cdc +++ b/contracts/FlowServiceAccount.cdc @@ -46,7 +46,7 @@ access(all) contract FlowServiceAccount { access(all) fun defaultTokenBalance(_ acct: &Account): UFix64 { var balance = 0.0 if let balanceRef = acct.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { - balance = balanceRef.getBalance() + balance = balanceRef.balance } return balance @@ -69,8 +69,8 @@ access(all) contract FlowServiceAccount { let tokenVault = self.defaultTokenVault(acct) var feeAmount = self.transactionFee - if self.transactionFee > tokenVault.getBalance() { - feeAmount = tokenVault.getBalance() + if self.transactionFee > tokenVault.balance { + feeAmount = tokenVault.balance } let feeVault <- tokenVault.withdraw(amount: feeAmount) diff --git a/contracts/FlowStorageFees.cdc b/contracts/FlowStorageFees.cdc index b0c78dac7..932fde128 100644 --- a/contracts/FlowStorageFees.cdc +++ b/contracts/FlowStorageFees.cdc @@ -68,7 +68,7 @@ access(all) contract FlowStorageFees { let acct = getAccount(accountAddress) if let balanceRef = acct.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { - balance = balanceRef.getBalance() + balance = balanceRef.balance } return self.accountBalanceToAccountStorageCapacity(balance) @@ -97,9 +97,9 @@ access(all) contract FlowStorageFees { if let balanceRef = acct.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { if accountAddress == payer { // if the account is the payer, deduct the maximum possible transaction fees from the balance - balance = balanceRef.getBalance().saturatingSubtract(maxTxFees) + balance = balanceRef.balance.saturatingSubtract(maxTxFees) } else { - balance = balanceRef.getBalance() + balance = balanceRef.balance } } @@ -157,7 +157,7 @@ access(all) contract FlowStorageFees { var balance = 0.0 if let balanceRef = acct.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { - balance = balanceRef.getBalance() + balance = balanceRef.balance } // get how much should be reserved for storage diff --git a/contracts/FlowToken.cdc b/contracts/FlowToken.cdc index 9e1d9e321..0dd4f0bfe 100644 --- a/contracts/FlowToken.cdc +++ b/contracts/FlowToken.cdc @@ -40,10 +40,6 @@ access(all) contract FlowToken: FungibleToken { // holds the balance of a users tokens access(all) var balance: UFix64 - access(all) view fun getBalance(): UFix64 { - return self.balance - } - // initialize the balance at resource creation time init(balance: UFix64) { self.balance = balance @@ -52,7 +48,7 @@ access(all) contract FlowToken: FungibleToken { /// Called when a fungible token is burned via the `Burner.burn()` method access(contract) fun burnCallback() { if self.balance > 0.0 { - FlowToken.totalSupply = FlowToken.totalSupply - self.getBalance() + FlowToken.totalSupply = FlowToken.totalSupply - self.balance } self.balance = 0.0 } @@ -66,6 +62,11 @@ access(all) contract FlowToken: FungibleToken { if (type == self.getType()) { return true } else { return false } } + /// Asks if the amount can be withdrawn from this vault + access(all) view fun isAvailableToWithdraw(amount: UFix64): Bool { + return amount <= self.balance + } + // withdraw // // Function that takes an integer amount as an argument diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 848104269..cbff4dfeb 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -4,9 +4,9 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240125000944-01706d1b6a69 + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240125205519-2e80d9b4bd01 github.com/onflow/flow-go-sdk v1.0.0-M1 - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125012012-2118663ca817 + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125205553-d2b571fb3fad github.com/stretchr/testify v1.8.4 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 361288cb4..18e00ce56 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1610,10 +1610,14 @@ github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240125000944-01706d1b6a69 h1:QV31Qw7rPZM3jgjaosqr/MJjzpmO7ibnrHjUntSsJGY= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240125000944-01706d1b6a69/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240125205519-2e80d9b4bd01 h1:8iKk5RuFvhe7NQyAO3c+xiVvv38RB/yopHdWxp4AbL8= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240125205519-2e80d9b4bd01/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125012012-2118663ca817 h1:ciQUDNptn8jSQjp4Oh7rnC8EZYCYkTvWYlrXhCsf/iQ= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125012012-2118663ca817/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125205553-d2b571fb3fad h1:I6LD9BOsilGbiqhGjP86FIIXJe0YdUz75d/oWdHFzDI= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125205553-d2b571fb3fad/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= From 61d01ea8cf30b38bf69d79d81653488b23e780d0 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 31 Jan 2024 18:11:44 -0600 Subject: [PATCH 074/160] update ft and nft deps --- lib/go/contracts/go.mod | 4 +- lib/go/contracts/go.sum | 6 +++ lib/go/test/staking_test_helpers.go | 69 +++++++++++++++-------------- 3 files changed, 43 insertions(+), 36 deletions(-) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index cbff4dfeb..11e42f1c2 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -4,9 +4,9 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240125205519-2e80d9b4bd01 + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240201000302-9141cd6d33e3 github.com/onflow/flow-go-sdk v1.0.0-M1 - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125205553-d2b571fb3fad + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240131235457-fdeb8eefcaeb github.com/stretchr/testify v1.8.4 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 18e00ce56..c078d5560 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1612,12 +1612,18 @@ github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240125000944-01706d1b6a69 github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240125000944-01706d1b6a69/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240125205519-2e80d9b4bd01 h1:8iKk5RuFvhe7NQyAO3c+xiVvv38RB/yopHdWxp4AbL8= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240125205519-2e80d9b4bd01/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240131235405-58ef81bc75b9 h1:wcOcQJVgi8ljBvVmcS2HgHaM6CMjeMK4Bbx6RupJf9Y= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240131235405-58ef81bc75b9/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240201000302-9141cd6d33e3 h1:xaRvN9rtoNtZ43xI3huViITxgiYG+h9SC8eFUcHgK9w= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240201000302-9141cd6d33e3/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125012012-2118663ca817 h1:ciQUDNptn8jSQjp4Oh7rnC8EZYCYkTvWYlrXhCsf/iQ= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125012012-2118663ca817/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125205553-d2b571fb3fad h1:I6LD9BOsilGbiqhGjP86FIIXJe0YdUz75d/oWdHFzDI= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125205553-d2b571fb3fad/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240131235457-fdeb8eefcaeb h1:riIroItP1JPuq24T5EyH73M8JnVsKXFI1S01No2w/44= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240131235457-fdeb8eefcaeb/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= diff --git a/lib/go/test/staking_test_helpers.go b/lib/go/test/staking_test_helpers.go index 9ea10b6a7..0ab339262 100644 --- a/lib/go/test/staking_test_helpers.go +++ b/lib/go/test/staking_test_helpers.go @@ -14,12 +14,13 @@ import ( "github.com/onflow/cadence" jsoncdc "github.com/onflow/cadence/encoding/json" "github.com/onflow/cadence/runtime/interpreter" - "github.com/onflow/crypto" "github.com/onflow/flow-emulator/emulator" "github.com/onflow/flow-go-sdk" - sdkcrypto "github.com/onflow/flow-go-sdk/crypto" + "github.com/onflow/flow-go-sdk/crypto" sdktemplates "github.com/onflow/flow-go-sdk/templates" + flow_crypto "github.com/onflow/flow-go/crypto" + "github.com/onflow/flow-core-contracts/lib/go/contracts" "github.com/onflow/flow-core-contracts/lib/go/templates" ) @@ -38,19 +39,19 @@ type EpochTotalRewardsPaid struct { type EpochTotalRewardsPaidEvent flow.Event func (evt EpochTotalRewardsPaidEvent) Total() cadence.UFix64 { - return cadence.SearchFieldByName(evt.Value, "total").(cadence.UFix64) + return evt.Value.Fields[0].(cadence.UFix64) } func (evt EpochTotalRewardsPaidEvent) FromFees() cadence.UFix64 { - return cadence.SearchFieldByName(evt.Value, "fromFees").(cadence.UFix64) + return evt.Value.Fields[1].(cadence.UFix64) } func (evt EpochTotalRewardsPaidEvent) Minted() cadence.UFix64 { - return cadence.SearchFieldByName(evt.Value, "minted").(cadence.UFix64) + return evt.Value.Fields[2].(cadence.UFix64) } func (evt EpochTotalRewardsPaidEvent) FeesBurned() cadence.UFix64 { - return cadence.SearchFieldByName(evt.Value, "feesBurned").(cadence.UFix64) + return evt.Value.Fields[3].(cadence.UFix64) } func stubInterpreter() *interpreter.Interpreter { @@ -71,7 +72,7 @@ func deployStakingContract( t *testing.T, b emulator.Emulator, IDTableAccountKey *flow.AccountKey, - IDTableSigner sdkcrypto.Signer, + IDTableSigner crypto.Signer, env *templates.Environment, latest bool, candidateNodeLimits []uint64, @@ -84,7 +85,7 @@ func deployStakingContract( cadencePublicKeys := cadence.NewArray(publicKeys) // Get the code byte-array for the fees contract - FeesCode := contracts.TestFlowFees(env.FungibleTokenAddress, env.FlowTokenAddress, env.StorageFeesAddress) + FeesCode := contracts.TestFlowFees(emulatorFTAddress, emulatorFlowTokenAddress, emulatorStorageFees) logger := zerolog.Nop() adapter := adapters.NewSDKAdapter(&logger, b) @@ -105,7 +106,7 @@ func deployStakingContract( env.FlowFeesAddress = feesAddr.Hex() // Get the code byte-array for the staking contract - IDTableCode, _ := cadence.NewString(string(contracts.FlowIDTableStaking(*env))[:]) + IDTableCode, _ := cadence.NewString(string(contracts.FlowIDTableStaking(emulatorFTAddress, emulatorFlowTokenAddress, feesAddr.String(), emulatorFTAddress, latest))[:]) // Create the deployment transaction that transfers a FlowToken minter // to the new account and deploys the IDTableStaking contract @@ -135,7 +136,7 @@ func deployStakingContract( signAndSubmit( t, b, tx, []flow.Address{}, - []sdkcrypto.Signer{}, + []crypto.Signer{}, false, ) @@ -149,7 +150,7 @@ func deployStakingContract( for _, result := range results { for _, event := range result.Events { if event.Type == flow.EventAccountCreated { - idTableAddress = flow.Address(cadence.SearchFieldByName(event.Value, "address").(cadence.Address)) + idTableAddress = flow.Address(event.Value.Fields[0].(cadence.Address)) } } } @@ -170,7 +171,7 @@ func deployStakingContract( signAndSubmit( t, b, tx, []flow.Address{feesAddr, idTableAddress}, - []sdkcrypto.Signer{IDTableSigner, IDTableSigner}, + []crypto.Signer{IDTableSigner, IDTableSigner}, false, ) @@ -285,13 +286,13 @@ func generateNodeIDs(numNodes int) ([]string, []cadence.Value, []cadence.Value) return ids, collectorIDs, consensusIDs } -// / Generates a key pair for staking, which uses the BLS_BLS12381 signing algorithm +// / Generates a key pair for staking, which uses the BLSBLS12381 signing algorithm // / Also generates a key pair for networking, which uses the ECDSA_P256 signing algorithm func generateKeysForNodeRegistration(t *testing.T) (crypto.PrivateKey, string, crypto.PrivateKey, string) { - stakingPrivateKey, publicKey := generateKeys(t, crypto.BLSBLS12381) + stakingPrivateKey, publicKey := generateKeys(t, flow_crypto.BLSBLS12381) stakingPublicKey := publicKey.String() stakingPublicKey = stakingPublicKey[2:] - networkingPrivateKey, publicKey := generateKeys(t, crypto.ECDSAP256) + networkingPrivateKey, publicKey := generateKeys(t, flow_crypto.ECDSAP256) networkingPublicKey := publicKey.String() networkingPublicKey = networkingPublicKey[2:] @@ -364,7 +365,7 @@ func registerNode(t *testing.T, b emulator.Emulator, env templates.Environment, authorizer flow.Address, - signer sdkcrypto.Signer, + signer crypto.Signer, nodeID, networkingAddress, networkingKey, stakingKey string, amount, tokensCommitted interpreter.UFix64Value, role uint8, @@ -389,7 +390,7 @@ func registerNode(t *testing.T, signAndSubmit( t, b, tx, []flow.Address{authorizer}, - []sdkcrypto.Signer{signer}, + []crypto.Signer{signer}, shouldFail, ) @@ -408,7 +409,7 @@ func registerDelegator(t *testing.T, b emulator.Emulator, env templates.Environment, authorizer flow.Address, - signer sdkcrypto.Signer, + signer crypto.Signer, nodeID string, shouldFail bool, ) { @@ -424,7 +425,7 @@ func registerDelegator(t *testing.T, signAndSubmit( t, b, tx, []flow.Address{authorizer}, - []sdkcrypto.Signer{signer}, + []crypto.Signer{signer}, shouldFail, ) } @@ -434,7 +435,7 @@ func endStakingMoveTokens(t *testing.T, b emulator.Emulator, env templates.Environment, authorizer flow.Address, - signer sdkcrypto.Signer, + signer crypto.Signer, nodeIDs []string, ) { // End staking auction and epoch @@ -447,7 +448,7 @@ func endStakingMoveTokens(t *testing.T, signAndSubmit( t, b, tx, []flow.Address{authorizer}, - []sdkcrypto.Signer{signer}, + []crypto.Signer{signer}, false, ) } @@ -460,7 +461,7 @@ func registerNodesForStaking( b emulator.Emulator, env templates.Environment, authorizers []flow.Address, - signers []sdkcrypto.Signer, + signers []crypto.Signer, stakingKeys []string, networkingkeys []string, ids []string) { @@ -504,7 +505,7 @@ func commitNewTokens(t *testing.T, b emulator.Emulator, env templates.Environment, authorizer flow.Address, - signer sdkcrypto.Signer, + signer crypto.Signer, amount, tokensCommitted interpreter.UFix64Value, shouldFail bool, ) ( @@ -524,7 +525,7 @@ func commitNewTokens(t *testing.T, signAndSubmit( t, b, tx, []flow.Address{authorizer}, - []sdkcrypto.Signer{signer}, + []crypto.Signer{signer}, shouldFail, ) @@ -542,7 +543,7 @@ func commitUnstaked(t *testing.T, b emulator.Emulator, env templates.Environment, authorizer flow.Address, - signer sdkcrypto.Signer, + signer crypto.Signer, amount, tokensCommitted, tokensUnstaked interpreter.UFix64Value, shouldFail bool, ) ( @@ -562,7 +563,7 @@ func commitUnstaked(t *testing.T, signAndSubmit( t, b, tx, []flow.Address{authorizer}, - []sdkcrypto.Signer{signer}, + []crypto.Signer{signer}, shouldFail, ) @@ -582,7 +583,7 @@ func commitRewarded(t *testing.T, b emulator.Emulator, env templates.Environment, authorizer flow.Address, - signer sdkcrypto.Signer, + signer crypto.Signer, amount, tokensCommitted, tokensRewarded interpreter.UFix64Value, shouldFail bool, ) ( @@ -601,7 +602,7 @@ func commitRewarded(t *testing.T, signAndSubmit( t, b, tx, []flow.Address{authorizer}, - []sdkcrypto.Signer{signer}, + []crypto.Signer{signer}, shouldFail, ) @@ -621,7 +622,7 @@ func requestUnstaking(t *testing.T, b emulator.Emulator, env templates.Environment, authorizer flow.Address, - signer sdkcrypto.Signer, + signer crypto.Signer, amount, tokensCommitted, tokensUnstaked, request interpreter.UFix64Value, shouldFail bool, ) ( @@ -640,7 +641,7 @@ func requestUnstaking(t *testing.T, signAndSubmit( t, b, tx, []flow.Address{authorizer}, - []sdkcrypto.Signer{signer}, + []crypto.Signer{signer}, shouldFail, ) @@ -878,7 +879,7 @@ func setNodeRoleOpenSlots( b emulator.Emulator, env templates.Environment, idTableAddress flow.Address, - idTableSigner sdkcrypto.Signer, + idTableSigner crypto.Signer, openSlots [5]uint16, ) { @@ -890,7 +891,7 @@ func setNodeRoleOpenSlots( signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{idTableSigner}, + []crypto.Signer{idTableSigner}, false, ) } @@ -901,7 +902,7 @@ func setNodeRoleSlotLimits( b emulator.Emulator, env templates.Environment, idTableAddress flow.Address, - idTableSigner sdkcrypto.Signer, + idTableSigner crypto.Signer, slotLimits [5]uint16, ) { // set the slot limits @@ -918,7 +919,7 @@ func setNodeRoleSlotLimits( signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []sdkcrypto.Signer{idTableSigner}, + []crypto.Signer{idTableSigner}, false, ) } From 99747723c07cfd92791b358c992545e3ef417a27 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Thu, 1 Feb 2024 11:06:51 -0600 Subject: [PATCH 075/160] update emulator dependencies and get tests passing --- .github/workflows/ci.yml | 2 +- contracts/testContracts/TestFlowIDTableStaking.cdc | 12 ++++++------ lib/go/templates/internal/assets/assets.go | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c5ef038b4..c6ef97e1d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: with: go-version: '1.20' - name: Install Flow CLI - run: sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)" -- v1.9.2-stable-cadence.1 + run: sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)" -- v1.12.0-cadence-v1.0.0-M4-2 - name: Flow cli Version run: flow version - name: Update PATH diff --git a/contracts/testContracts/TestFlowIDTableStaking.cdc b/contracts/testContracts/TestFlowIDTableStaking.cdc index bbb8151d0..b3b948506 100644 --- a/contracts/testContracts/TestFlowIDTableStaking.cdc +++ b/contracts/testContracts/TestFlowIDTableStaking.cdc @@ -9,7 +9,7 @@ import FungibleToken from "FungibleToken" import FlowToken from "FlowToken" -import Burner from "Burner" +// import Burner from "Burner" access(all) contract FlowIDTableStaking { @@ -55,7 +55,7 @@ access(all) contract FlowIDTableStaking { self.networkingKey = networkingKey self.stakingKey = stakingKey - Burner.burn(<-tokensCommitted) + destroy tokensCommitted } } @@ -118,7 +118,7 @@ access(all) contract FlowIDTableStaking { /// Add new tokens to the system to stake during the next epoch access(NodeOperator) fun stakeNewTokens(_ tokens: @{FungibleToken.Vault}) { - Burner.burn(<-tokens) + destroy tokens } /// Stake tokens that are in the tokensUnstaked bucket @@ -209,7 +209,7 @@ access(all) contract FlowIDTableStaking { /// Delegate new tokens to the node operator access(DelegatorOwner) fun delegateNewTokens(from: @{FungibleToken.Vault}) { - Burner.burn(<-from) + destroy from } /// Delegate tokens from the unstaked bucket to the node operator @@ -255,7 +255,7 @@ access(all) contract FlowIDTableStaking { stakingKey: String, tokensCommitted: @{FungibleToken.Vault} ): @NodeStaker { - Burner.burn(<-tokensCommitted) + destroy tokensCommitted // return a new NodeStaker object that the node operator stores in their account return <-create NodeStaker(id: id) @@ -264,7 +264,7 @@ access(all) contract FlowIDTableStaking { access(all) fun registerNewDelegator(nodeID: String, tokensCommitted: @{FungibleToken.Vault}): @NodeDelegator { - Burner.burn(<-tokensCommitted) + destroy tokensCommitted return <-create NodeDelegator(id: 1, nodeID: nodeID) } diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index f9f898523..d353d421b 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -121,7 +121,7 @@ // idTableStaking/delegation/get_delegator_unstaking.cdc (321B) // idTableStaking/delegation/get_delegator_unstaking_request.cdc (330B) // idTableStaking/delegation/register_delegator.cdc (981B) -// idTableStaking/delegation/register_many_delegators.cdc (649B) +// idTableStaking/delegation/register_many_delegators.cdc (684B) // idTableStaking/node/node_add_capability.cdc (900B) // idTableStaking/node/register_many_nodes.cdc (1.171kB) // idTableStaking/node/register_node.cdc (1.651kB) @@ -2781,7 +2781,7 @@ func idtablestakingDelegationRegister_delegatorCdc() (*asset, error) { return a, nil } -var _idtablestakingDelegationRegister_many_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x6f\x82\x40\x10\x85\xef\xfb\x2b\x26\x1e\x1a\x48\x15\xed\x95\xe8\xa1\xd1\x36\xf1\xd2\x34\xd1\x78\x31\x1e\xc6\x75\x84\xad\xcb\x2e\x59\x06\x4d\x63\xfc\xef\xcd\x82\x52\xa0\x9d\x13\xcc\xcc\xdb\x79\xef\x53\x59\x6e\x1d\xc3\xbb\xb6\x97\xe5\x62\x8d\x7b\x4d\x2b\xc6\x93\x32\x09\x1c\x9d\xcd\x60\xf0\x77\x30\x10\x2d\xcd\xda\x9e\xc8\xb4\x56\xab\xff\x81\x10\xec\xd0\x14\x28\x59\x59\x13\x18\x7b\xa0\xe5\xa2\x88\x61\xbb\x62\xa7\x4c\xb2\x1b\x42\x8e\x9c\xd6\x0d\xeb\x30\xa1\x4f\xe4\x74\x17\xc2\x55\x08\x00\x80\xdc\x51\x8e\x8e\x02\x94\x92\x63\xc0\x92\xd3\x60\x85\x67\xda\xa0\x2e\x29\x84\xa7\x57\x29\x6d\x69\xb8\x59\xf7\x75\x46\x07\x0a\x66\x30\xf9\x6d\x1d\xad\xab\xce\x80\x32\xf5\x39\xb8\x36\x33\x5f\xe3\x31\xcc\x1d\x21\x13\x20\x18\xba\xc0\x81\x34\x25\xc8\xd6\x81\xdd\x7f\x91\xe4\xea\x01\x4e\x09\xbc\xfd\x8e\x52\x13\x7b\xc5\xa2\x11\x4c\x47\xff\xf0\x8b\x1c\x25\xaa\x60\x72\x1f\xad\xd5\x3b\x8b\x18\xee\x4c\xb6\x6a\x37\x04\xf6\xcc\x8a\xb9\xcd\x32\xc5\x4c\x87\x18\xa6\xa3\x06\x65\x24\x2b\x8f\x6f\x59\xce\xdf\x1b\x2c\x35\x07\x61\x28\xfa\x39\x3c\x45\xaa\xbc\xf6\x43\x74\x36\x3d\xcf\xa8\xa8\x89\x47\x05\x9e\x29\x98\x8e\xda\x39\xbc\x93\xb8\x62\xd5\x3b\xe1\xc9\x2a\x78\x86\x97\x6e\xf7\xe8\x07\xb3\x47\x94\x48\x93\x49\x38\xed\x51\x7e\xc8\x27\x9d\xee\x4d\x74\xbf\x6e\x42\xdc\x7e\x02\x00\x00\xff\xff\xc8\xbe\xd2\x06\x89\x02\x00\x00" +var _idtablestakingDelegationRegister_many_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6f\xe2\x30\x10\x85\xef\xfe\x15\x23\x0e\xab\x44\x0b\x81\xbd\x46\x61\xd5\x0a\x5a\x89\x4b\x55\x09\xc4\x05\x71\x18\xc2\x90\xb8\x24\x76\xe4\x4c\x82\x10\xe2\xbf\x57\x36\x10\x92\xb4\x3e\x58\x30\xf3\x5e\x66\xde\x67\x99\x17\xda\x30\xbc\x67\xfa\xb4\x98\xaf\x70\x97\xd1\x92\xf1\x28\x55\x02\x07\xa3\x73\x18\xfc\x6c\x0c\x44\xcb\xb3\xd2\x47\x52\x2d\xa9\xfb\x3f\x10\x82\x0d\xaa\x12\x63\x96\x5a\x79\x4a\xef\x69\x31\x2f\x43\xd8\x2c\xd9\x48\x95\x6c\x87\x50\x20\xa7\xb7\x82\x36\x98\xd0\x27\x72\xba\xf5\xe1\x22\x04\x00\x40\x61\xa8\x40\x43\x1e\xc6\x31\x87\x80\x15\xa7\xde\x12\x6b\x5a\x63\x56\x91\x0f\x7f\x5e\xe3\x58\x57\x8a\x1b\xb9\x3d\x35\x1a\x90\x30\x85\xc9\xb3\x74\xd0\xc6\x8d\x01\xa9\x6e\xe3\xe0\xd2\xf4\xec\x19\x8f\x61\x66\x08\x99\x00\x41\xd1\x09\xf6\x94\x51\x82\xac\x0d\xe8\xdd\x17\xc5\xec\x3e\xc0\x29\x81\x5d\xbf\xe3\xcc\x88\xad\x63\xde\x18\xa2\xd1\x2f\xfc\x02\x43\x89\x2c\x99\xcc\x47\x4b\x7a\x67\x11\xc2\x9d\xc9\x46\x6e\x87\xc0\x96\x59\x39\xd3\x79\x2e\x99\x69\x1f\x42\x34\x6a\x50\x06\xb1\xdb\xf1\x2d\x2f\xf8\xbc\xc6\x2a\x63\xaf\xb6\xf7\xea\x5c\x50\x08\xf6\x8e\x5e\x9e\x5a\x27\xf8\xef\xf9\xbe\x2f\xfa\x51\x2d\x68\x72\x71\xfa\x39\x3b\x4a\x8b\x3c\x28\x6f\x8f\x12\x94\x58\x93\x17\x8d\xda\x51\xed\xb2\xa1\xc3\xd9\x1b\x61\xe1\x4b\xf8\x0b\xff\xba\xd5\x83\x6d\x4c\x1f\x69\x83\x8c\x54\xc2\x69\xef\x21\x1e\xf6\x49\xa7\x7a\x15\xdd\x5f\x57\x21\xae\xdf\x01\x00\x00\xff\xff\xdc\x28\xf5\x58\xac\x02\x00\x00" func idtablestakingDelegationRegister_many_delegatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -2797,7 +2797,7 @@ func idtablestakingDelegationRegister_many_delegatorsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/register_many_delegators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5, 0x40, 0x9f, 0x98, 0x5a, 0x10, 0xf9, 0x47, 0x21, 0xf4, 0x45, 0x35, 0x34, 0x50, 0xd4, 0x69, 0xed, 0x2a, 0xd8, 0xbe, 0xfd, 0x50, 0x7a, 0xd1, 0xbe, 0x27, 0x7f, 0x5f, 0x97, 0xd7, 0xe9, 0x7c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0x77, 0xf9, 0xad, 0xba, 0xdd, 0x3, 0x54, 0xa7, 0xa1, 0x6b, 0x8e, 0x5d, 0x19, 0x2b, 0x23, 0xea, 0x5, 0x9b, 0xd8, 0x21, 0x1d, 0x7b, 0x64, 0x8e, 0x76, 0x91, 0x58, 0xd4, 0xd2, 0xe2, 0x2f}} return a, nil } From 639f419d25e3d821580d84215cf1c2b777ff0830 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Thu, 1 Feb 2024 13:48:05 -0600 Subject: [PATCH 076/160] use FungibleToken.Balance instead of FlowToken.Vault --- contracts/FlowServiceAccount.cdc | 6 +++--- contracts/FlowStorageFees.cdc | 6 +++--- contracts/FlowToken.cdc | 8 ++++---- lib/go/contracts/go.mod | 4 ++-- lib/go/contracts/go.sum | 6 ++++++ lib/go/templates/internal/assets/assets.go | 12 ++++++------ transactions/flowToken/scripts/get_balance.cdc | 2 +- transactions/flowToken/setup_account.cdc | 10 +++++----- 8 files changed, 30 insertions(+), 24 deletions(-) diff --git a/contracts/FlowServiceAccount.cdc b/contracts/FlowServiceAccount.cdc index ba5026506..b04a59963 100644 --- a/contracts/FlowServiceAccount.cdc +++ b/contracts/FlowServiceAccount.cdc @@ -31,12 +31,12 @@ access(all) contract FlowServiceAccount { // Create a public capability to the Vault that only exposes // the deposit function through the Receiver interface - let receiverCapability = acct.capabilities.storage.issue<&FlowToken.Vault>(/storage/flowTokenVault) + let receiverCapability = acct.capabilities.storage.issue<&{FungibleToken.Receiver, FungibleToken.Vault}>(/storage/flowTokenVault) acct.capabilities.publish(receiverCapability, at: /public/flowTokenReceiver) // Create a public capability to the Vault that only exposes // the balance field through the Balance interface - let balanceCapability = acct.capabilities.storage.issue<&FlowToken.Vault>(/storage/flowTokenVault) + let balanceCapability = acct.capabilities.storage.issue<&{FungibleToken.Balance, FungibleToken.Vault}>(/storage/flowTokenVault) acct.capabilities.publish(balanceCapability, at: /public/flowTokenBalance) } @@ -45,7 +45,7 @@ access(all) contract FlowServiceAccount { /// Returns 0 if the account has no default balance access(all) fun defaultTokenBalance(_ acct: &Account): UFix64 { var balance = 0.0 - if let balanceRef = acct.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { + if let balanceRef = acct.capabilities.borrow<&{FungibleToken.Balance}>(/public/flowTokenBalance) { balance = balanceRef.balance } diff --git a/contracts/FlowStorageFees.cdc b/contracts/FlowStorageFees.cdc index 932fde128..b387541e6 100644 --- a/contracts/FlowStorageFees.cdc +++ b/contracts/FlowStorageFees.cdc @@ -67,7 +67,7 @@ access(all) contract FlowStorageFees { var balance = 0.0 let acct = getAccount(accountAddress) - if let balanceRef = acct.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { + if let balanceRef = acct.capabilities.borrow<&{FungibleToken.Balance}>(/public/flowTokenBalance) { balance = balanceRef.balance } @@ -94,7 +94,7 @@ access(all) contract FlowStorageFees { var balance = 0.0 let acct = getAccount(accountAddress) - if let balanceRef = acct.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { + if let balanceRef = acct.capabilities.borrow<&{FungibleToken.Balance}>(/public/flowTokenBalance) { if accountAddress == payer { // if the account is the payer, deduct the maximum possible transaction fees from the balance balance = balanceRef.balance.saturatingSubtract(maxTxFees) @@ -156,7 +156,7 @@ access(all) contract FlowStorageFees { let acct = getAccount(accountAddress) var balance = 0.0 - if let balanceRef = acct.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { + if let balanceRef = acct.capabilities.borrow<&{FungibleToken.Balance}>(/public/flowTokenBalance) { balance = balanceRef.balance } diff --git a/contracts/FlowToken.cdc b/contracts/FlowToken.cdc index 0dd4f0bfe..c126f2302 100644 --- a/contracts/FlowToken.cdc +++ b/contracts/FlowToken.cdc @@ -176,8 +176,8 @@ access(all) contract FlowToken: FungibleToken { storagePath: /storage/flowTokenVault, receiverPath: /public/flowTokenReceiver, metadataPath: /public/flowTokenBalance, - receiverLinkedType: Type<&FlowToken.Vault>(), - metadataLinkedType: Type<&FlowToken.Vault>(), + receiverLinkedType: Type<&{FungibleToken.Receiver, FungibleToken.Vault}>(), + metadataLinkedType: Type<&{FungibleToken.Balance, FungibleToken.Vault}>(), createEmptyVaultFunction: (fun (): @{FungibleToken.Vault} { return <-vaultRef.createEmptyVault() }) @@ -246,13 +246,13 @@ access(all) contract FlowToken: FungibleToken { // Create a public capability to the stored Vault that only exposes // the `deposit` method through the `Receiver` interface // - let receiverCapability = self.account.capabilities.storage.issue<&FlowToken.Vault>(/storage/flowTokenVault) + let receiverCapability = self.account.capabilities.storage.issue<&{FungibleToken.Receiver, FungibleToken.Vault}>(/storage/flowTokenVault) self.account.capabilities.publish(receiverCapability, at: /public/flowTokenReceiver) // Create a public capability to the stored Vault that only exposes // the `balance` field through the `Balance` interface // - let balanceCapability = self.account.capabilities.storage.issue<&FlowToken.Vault>(/storage/flowTokenVault) + let balanceCapability = self.account.capabilities.storage.issue<&{FungibleToken.Balance, FungibleToken.Vault}>(/storage/flowTokenVault) self.account.capabilities.publish(balanceCapability, at: /public/flowTokenBalance) let admin <- create Administrator() diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 11e42f1c2..829d3d886 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -4,9 +4,9 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240201000302-9141cd6d33e3 + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240201191527-4670592eba7c github.com/onflow/flow-go-sdk v1.0.0-M1 - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240131235457-fdeb8eefcaeb + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240201190730-ebdb001eb83c github.com/stretchr/testify v1.8.4 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index c078d5560..61d5614f5 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1616,6 +1616,8 @@ github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240131235405-58ef81bc75b9 github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240131235405-58ef81bc75b9/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240201000302-9141cd6d33e3 h1:xaRvN9rtoNtZ43xI3huViITxgiYG+h9SC8eFUcHgK9w= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240201000302-9141cd6d33e3/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240201191527-4670592eba7c h1:vIPQtIisemRAEpjwsDCa1Vh5iWe0v8Cp+BVrP/Le4ug= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240201191527-4670592eba7c/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125012012-2118663ca817 h1:ciQUDNptn8jSQjp4Oh7rnC8EZYCYkTvWYlrXhCsf/iQ= @@ -1624,6 +1626,10 @@ github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125205553-d2b571fb3fad github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125205553-d2b571fb3fad/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240131235457-fdeb8eefcaeb h1:riIroItP1JPuq24T5EyH73M8JnVsKXFI1S01No2w/44= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240131235457-fdeb8eefcaeb/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240201182055-912407f1d10f h1:AVtMqZOXjkt2i1xLttHLsTd1P0p8vFa0DEQmHeixkr0= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240201182055-912407f1d10f/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240201190730-ebdb001eb83c h1:RZCKW5l+JUILWd+UJqc036bC9LRoizlMrOeWOWyDRuI= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240201190730-ebdb001eb83c/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index d353d421b..9cb9e003e 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -71,9 +71,9 @@ // flowToken/burn_tokens.cdc (1.131kB) // flowToken/create_forwarder.cdc (2.027kB) // flowToken/mint_tokens.cdc (1.019kB) -// flowToken/scripts/get_balance.cdc (412B) +// flowToken/scripts/get_balance.cdc (420B) // flowToken/scripts/get_supply.cdc (208B) -// flowToken/setup_account.cdc (1.476kB) +// flowToken/setup_account.cdc (1.474kB) // flowToken/transfer_tokens.cdc (1.327kB) // idTableStaking/admin/add_approved_and_limits.cdc (1.635kB) // idTableStaking/admin/add_approved_nodes.cdc (1.055kB) @@ -1781,7 +1781,7 @@ func flowtokenMint_tokensCdc() (*asset, error) { return a, nil } -var _flowtokenScriptsGet_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\xcd\x4e\xc3\x30\x10\x84\xef\x7e\x8a\x51\x0e\x90\x5c\x92\x0b\xe2\x50\x01\x55\x41\xea\x03\xa0\xc2\x7d\xe3\xac\xdb\x15\x8e\x1d\xf9\x87\x22\x21\xde\x1d\xe5\x17\xe1\x93\xed\x9d\xf9\x3c\x9e\xa6\xc1\xe9\x22\x11\x51\x07\x19\x12\x02\x53\x17\x91\x2e\x8c\x96\x2c\x39\xcd\x30\xc2\xb6\x83\x37\x20\x07\xd2\xda\x67\x97\x6e\x23\x8e\xd6\x5f\x4f\xfe\x83\x1d\x9e\x67\x9d\x52\xd2\x0f\x3e\x24\x1c\xb3\x3b\x4b\x6b\x79\x9e\x9a\xe0\x7b\x14\xff\xee\x8a\x4d\xb9\x31\x16\xd5\x7a\x2e\x94\x22\xad\x39\xc6\x92\xac\xad\x60\xb2\x43\x4f\xe2\xca\xe5\xf9\x1d\x0e\x5d\x17\x38\xc6\x6a\x87\xb7\xa3\x7c\xdd\xdf\xe1\x5b\x29\x00\xb0\x9c\xf0\x49\xd9\xa6\x57\x36\x78\xc4\x99\xd3\x61\xb6\xac\xd6\x6a\x92\x8d\xab\xd6\x34\x50\x2b\x56\x92\x70\xac\x5b\x1f\x82\xbf\x3e\xdc\x6c\x11\xea\xf7\x11\xf3\x54\x36\x43\x6e\xad\xe8\xc6\xac\x83\xe5\xbb\x7f\xa0\xfd\x1e\x03\x39\xd1\x65\xf1\xe2\xb3\xed\xe0\x7c\xc2\x8c\x5b\xab\x41\x60\xc3\x81\xc7\x5d\xf2\x53\xb7\x13\xbc\xa8\xe6\xd0\x81\x53\x0e\x6e\xcb\x5d\x2f\xc5\xab\x1f\xf5\x1b\x00\x00\xff\xff\x49\x8d\x76\xbc\x9c\x01\x00\x00" +var _flowtokenScriptsGet_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\xcb\x4e\xf3\x30\x10\x85\xf7\x7e\x8a\xa3\x2c\xfe\x3f\xd9\x24\x1b\xc4\xa2\x02\xaa\x82\xd4\x07\x40\x85\xfd\xc4\x19\xb7\x23\x1c\x3b\xf2\x85\x22\x55\x7d\x77\x94\xe6\x82\xea\x95\xed\x39\x73\xfc\xf9\x4c\xd3\xe0\x70\x92\x88\xa8\x83\x0c\x09\x81\xa9\x8b\x48\x27\x46\x4b\x96\x9c\x66\x18\x61\xdb\xc1\x1b\x90\x03\x69\xed\xb3\x4b\xff\x23\xf6\xd6\x9f\x0f\xfe\x8b\x1d\x5e\x27\x9d\x52\xd2\x0f\x3e\x24\xec\xb3\x3b\x4a\x6b\x79\xaa\x9a\xe0\x7b\x14\x77\x77\xc5\xaa\x5c\x3d\x66\xd5\x72\x2e\x94\x22\xad\x39\xc6\x92\xac\xad\x60\xb2\x43\x4f\xe2\xca\xf9\xf9\x0d\x76\x5d\x17\x38\xc6\x6a\x83\x8f\xbd\xfc\x3c\x3e\xe0\xa2\x14\x00\x58\x4e\xf8\xa6\x6c\xd3\x3b\x1b\x3c\xe3\xc8\x69\x37\xb5\x2c\xad\xd5\x4d\x36\xae\x5a\xd3\x40\xad\x58\x49\xc2\xb1\x6e\x7d\x08\xfe\xfc\xf4\xef\x72\x47\x5a\xcf\x7f\xbb\xbe\x94\xcd\x90\x5b\x2b\xba\x31\x0b\xe3\x5c\xfa\x33\xdc\x6e\x31\x90\x13\x5d\x16\x6f\x3e\xdb\x0e\xce\x27\x4c\xb6\x4b\x44\x08\x6c\x38\xf0\xb8\x4b\xfe\x96\xf1\xe7\xc8\x5a\x54\x13\x7c\xe0\x94\x83\x5b\xf9\xeb\x79\x00\xea\xaa\x7e\x03\x00\x00\xff\xff\x0c\xc2\x32\xf4\xa4\x01\x00\x00" func flowtokenScriptsGet_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -1797,7 +1797,7 @@ func flowtokenScriptsGet_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/scripts/get_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb8, 0x8b, 0x72, 0xb5, 0x48, 0x4e, 0xa0, 0x6f, 0x49, 0xf1, 0x6b, 0x9f, 0xff, 0x13, 0x42, 0xa1, 0x7b, 0x79, 0x9b, 0x94, 0x95, 0x62, 0x98, 0x4c, 0x33, 0x9f, 0x99, 0x63, 0xfb, 0xb5, 0x48, 0xc6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9f, 0x43, 0x79, 0xfd, 0x4, 0xd6, 0xad, 0x3a, 0xc5, 0x7, 0x57, 0x5, 0x10, 0xbc, 0x51, 0x96, 0xe8, 0x27, 0x94, 0x74, 0x77, 0x6d, 0x23, 0xa3, 0x76, 0x56, 0xd2, 0xcf, 0x8f, 0x3b, 0xac, 0x5b}} return a, nil } @@ -1821,7 +1821,7 @@ func flowtokenScriptsGet_supplyCdc() (*asset, error) { return a, nil } -var _flowtokenSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x92\xcf\x6e\xdb\x30\x0c\xc6\xef\x7e\x8a\x0f\x39\x14\x0e\xd0\xc5\xf7\xa0\x29\xb0\x15\xdb\x03\x6c\xc5\xee\x8c\x4c\xc7\xc2\x14\x49\x90\xa8\x64\x41\x90\x77\x1f\xe4\x7f\x99\xd3\x76\x97\x0d\x3b\x54\x87\x20\x22\x3f\x91\x3f\xf2\x73\x51\x55\x78\x6e\x75\x84\x04\xb2\x91\x94\x68\x67\xa1\x23\x08\xc2\x7b\x6f\x48\x18\x8d\x0b\xf9\x7a\xcd\xe7\x37\xe2\x40\x75\x0d\xc2\x77\x4a\x46\x10\x38\xba\x14\x14\xe7\xb8\xb4\xac\x03\x48\x29\x97\xac\x64\x6d\xcc\x31\x92\x9c\x38\x41\x91\x45\x8a\x9c\x2f\x68\x8c\x3b\x3e\xbb\x1f\x6c\x8b\x42\xef\xbd\x0b\x82\x2f\xc9\xee\xf4\xd6\x70\x17\x45\x13\xdc\x1e\x8b\x59\x6c\x31\x29\xc7\xb7\xa3\x6a\xbc\x2f\x8a\xe2\xf7\x59\xce\x45\x01\x00\x3e\xb0\xa7\xc0\x65\xd4\x3b\xcb\x61\x0d\x4a\xd2\x96\xdf\xc4\x05\xda\xf1\x12\x77\x1f\x7b\xda\xe5\x28\xcf\x47\x37\xe8\xd5\xab\xd8\xeb\x56\x5b\x17\x82\x3b\x3e\xdc\x4d\xbd\x56\xdd\xf4\x8f\x65\x46\x58\xa3\x1a\x74\xd5\x34\x57\x97\x5e\x62\xb3\x81\xd5\x06\xe7\xa9\x74\x3e\x55\x85\xa7\xc0\x79\xc1\x04\xcb\xc7\xeb\x32\x86\x95\x92\xad\xe1\x93\x40\x0b\xb4\xc5\x50\x7a\x56\xe1\x86\x2e\xd2\x81\xcb\x87\x0f\x57\x38\xd5\x95\xff\xbc\xf7\x72\xea\x4a\x96\xcb\x7b\x88\x7b\x9b\xb3\x78\x93\xcf\xa7\xad\xd1\x0a\x8a\x3c\x6d\xb5\xd1\x72\x1a\x7c\x1e\x50\x3b\x77\x9d\x35\x27\xf0\x4f\xef\x22\xc7\xdb\x42\x59\x5a\xb3\x77\x51\x0b\x9a\x64\x7b\x67\xa4\x0d\x2e\xed\xda\x2e\xf9\x95\x15\xeb\x03\x07\x68\x2b\x1c\x1a\x52\xf3\x49\x0d\x0b\x0e\xb9\xd5\x13\x79\x6c\xc6\xc1\x27\x1c\xcd\x71\xda\x82\x8e\x31\xf1\x0b\x8b\xce\xb3\x8f\x68\x35\xb6\xbb\x3c\x96\xb3\x3e\x1d\xee\xeb\xdb\x99\xe9\x6e\x56\xf5\x1a\x4f\xb7\xb2\xd8\xfe\x0d\xc9\x38\xf1\xfd\x8b\x0c\xc9\x1a\x55\x6f\xca\x15\x73\x2c\xf5\x27\xd2\x7f\x6d\xea\x96\x0c\x59\xc5\x68\x34\x9b\x7a\xe6\xe8\xa7\x21\xf3\x7f\x0c\x1d\xba\xbd\x2b\x3f\x87\x99\x6e\x40\xc7\x7f\x97\xa2\xff\xbd\x14\xf8\x15\x00\x00\xff\xff\xf0\x50\x6a\x4c\xc4\x05\x00\x00" +var _flowtokenSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x54\x5d\x8f\xda\x30\x10\x7c\xcf\xaf\x18\xdd\xc3\x29\x48\x57\xf2\x8e\xe0\xa4\xf6\xd4\xfe\x80\xf6\xd4\xf7\xc5\x6c\x88\x55\x63\x5b\xf6\x1a\x8a\x10\xff\xbd\x72\xbe\x68\xe0\xa8\xaa\xb6\x52\xf3\x80\xf0\xee\x78\x76\x66\x27\x4a\x51\x55\x78\x6d\x74\x84\x04\xb2\x91\x94\x68\x67\xa1\x23\x08\xc2\x3b\x6f\x48\x18\xb5\x0b\xf9\x78\xe9\xe7\x3b\xe2\x40\x9b\x0d\x08\x5f\x29\x19\x41\xe0\xe8\x52\x50\x9c\xeb\xd2\xb0\x0e\x20\xa5\x5c\xb2\x92\xb1\x31\xd7\x48\x72\xe3\x08\x45\x16\x29\x72\x3e\xa0\x36\xee\xf0\xea\xbe\xb1\x2d\x0a\xbd\xf3\x2e\x08\x3e\x25\xbb\xd5\x6b\xc3\x6d\x15\x75\x70\x3b\x3c\x4c\x6a\x0f\x23\x72\xb8\x3b\xa0\x86\xf3\x43\x51\xfc\xec\xe5\x54\x14\x00\xe0\x03\x7b\x0a\x5c\x46\xbd\xb5\x1c\x16\xa0\x24\x4d\xf9\x45\x5c\xa0\x2d\xcf\xf0\xf8\xbe\x53\x3b\x1b\xe0\xf9\xd1\x35\x3a\xf4\x3c\x76\xb8\xf9\xda\x85\xe0\x0e\xcb\xc7\x71\xd6\xbc\x75\xff\x5c\x66\x09\x0b\x54\x3d\xae\x1a\x7d\xb5\xed\x19\x56\x2b\x58\x6d\x70\x1a\xa9\xf3\x53\x55\x78\x09\x9c\x17\x4c\xb0\x7c\xb8\x2c\xa3\x5f\x29\xd9\x0d\x7c\x12\x68\x81\xb6\xe8\xa9\x27\x0c\x57\xea\x22\xed\xb9\x5c\xbe\xbb\x88\x53\x2d\xfd\xc7\x9d\x97\x63\x4b\x59\xce\x9e\x20\xee\xbe\xce\xe2\xae\x3e\x9f\xd6\x46\x2b\x28\xf2\xb4\xd6\x46\xcb\xb1\xcf\xb9\x97\xda\xa6\xeb\xac\x39\x82\xbf\x7b\x17\x39\x5e\x13\x65\xe8\x86\xbd\x8b\x5a\x50\x27\xdb\x25\x23\x4d\x70\x69\xdb\xb4\xcd\xcf\xac\x58\xef\x39\x40\x5b\xe1\x50\x93\x9a\x3a\x35\x2c\xd8\xe7\x51\x2f\xe4\xb1\x1a\x8c\x8f\x72\x34\xc7\x71\x0b\x3a\xc6\xc4\xcb\xc7\xd3\xe4\xad\x99\x0f\xfc\x4f\xd3\x37\xac\xcb\xef\xfc\x5c\x4e\xa6\xb5\xa2\xdf\xde\xd1\x04\x77\xb5\xb0\xb7\x54\xb5\x8b\x8b\xcd\xdf\xeb\x19\xdc\x3f\xdd\x74\x48\x16\xa8\xba\x80\x2e\x62\x07\xfe\x5f\xe9\xfd\xd7\x01\xaf\xc9\x90\x55\x8c\x5a\xb3\xd9\x4c\xd2\xfd\xd0\x77\xee\x87\xdb\xdf\xfd\xd3\x78\xfb\x01\xff\x2d\xdd\x9b\x0f\xc2\xcd\xc4\x8b\xc1\xdf\x4c\xb0\xb7\x74\x25\x69\xf8\x77\x2e\xba\xdf\x73\x81\x1f\x01\x00\x00\xff\xff\x2d\x5c\x59\xc7\xc2\x05\x00\x00" func flowtokenSetup_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -1837,7 +1837,7 @@ func flowtokenSetup_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/setup_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8e, 0xd1, 0x69, 0x95, 0x48, 0x53, 0x7b, 0x5d, 0xc2, 0xc8, 0xde, 0x7e, 0xba, 0x29, 0xa1, 0xbc, 0x3b, 0xfb, 0x69, 0xa3, 0x2, 0x7, 0x85, 0x98, 0x8b, 0x3, 0x7c, 0xcc, 0x36, 0x44, 0xf2, 0x9d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x31, 0xfe, 0x29, 0xd3, 0x7b, 0xf7, 0x69, 0xc8, 0x96, 0xa0, 0x69, 0x79, 0x29, 0xaf, 0xed, 0x7a, 0x32, 0xee, 0xf7, 0x5d, 0x6b, 0x3f, 0xed, 0x5a, 0xd8, 0x8f, 0x87, 0xc7, 0x42, 0x93, 0x32, 0x5c}} return a, nil } diff --git a/transactions/flowToken/scripts/get_balance.cdc b/transactions/flowToken/scripts/get_balance.cdc index e7162aec3..9483f4b2a 100644 --- a/transactions/flowToken/scripts/get_balance.cdc +++ b/transactions/flowToken/scripts/get_balance.cdc @@ -6,7 +6,7 @@ import FlowToken from "FlowToken" access(all) fun main(account: Address): UFix64 { let vaultRef = getAccount(account) - .capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) + .capabilities.borrow<&{FungibleToken.Balance}>(/public/flowTokenBalance) ?? panic("Could not borrow Balance reference to the Vault") return vaultRef.balance diff --git a/transactions/flowToken/setup_account.cdc b/transactions/flowToken/setup_account.cdc index 1d6ca4578..5aa316d78 100644 --- a/transactions/flowToken/setup_account.cdc +++ b/transactions/flowToken/setup_account.cdc @@ -16,23 +16,23 @@ transaction { // Create a public capability to the Vault that only exposes // the deposit function through the Receiver interface - let vaultCap = signer.capabilities.storage.issue<&FlowToken.Vault{FungibleToken.Receiver}>( + let vaultCap = signer.capabilities.storage.issue<&{FungibleToken.Receiver, FungibleToken.Vault}>( /storage/flowTokenVault ) - signer.capabilities.publish<&FlowToken.Vault{FungibleToken.Receiver}>( + signer.capabilities.publish<&{FungibleToken.Receiver, FungibleToken.Vault}>( vaultCap, at: /public/flowTokenReceiver ) // Create a public capability to the Vault that only exposes // the balance field through the Balance interface - let vaultCap = signer.capabilities.storage.issue<&FlowToken.Vault{FungibleToken.Balance}>( + let balanceCap = signer.capabilities.storage.issue<&{FungibleToken.Balance, FungibleToken.Vault}>( /storage/flowTokenVault ) - signer.capabilities.publish<&FlowToken.Vault{FungibleToken.Receiver}>( - vaultCap, + signer.capabilities.publish<&FlowToken.Vault>( + balanceCap, at: /public/flowTokenBalance ) } From 5c18b63ad9cda5da9f7cdc3fddc83d60f832a87f Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Mon, 5 Feb 2024 17:52:01 -0600 Subject: [PATCH 077/160] use correct public path types --- contracts/FlowServiceAccount.cdc | 4 ++-- contracts/FlowStorageFees.cdc | 6 +++--- contracts/FlowToken.cdc | 4 ++-- lib/go/contracts/go.mod | 4 ++-- lib/go/contracts/go.sum | 4 ++++ lib/go/templates/internal/assets/assets.go | 6 +++--- transactions/flowToken/setup_account.cdc | 8 ++++---- 7 files changed, 20 insertions(+), 16 deletions(-) diff --git a/contracts/FlowServiceAccount.cdc b/contracts/FlowServiceAccount.cdc index b04a59963..73b2a0d90 100644 --- a/contracts/FlowServiceAccount.cdc +++ b/contracts/FlowServiceAccount.cdc @@ -31,12 +31,12 @@ access(all) contract FlowServiceAccount { // Create a public capability to the Vault that only exposes // the deposit function through the Receiver interface - let receiverCapability = acct.capabilities.storage.issue<&{FungibleToken.Receiver, FungibleToken.Vault}>(/storage/flowTokenVault) + let receiverCapability = acct.capabilities.storage.issue<&FlowToken.Vault>(/storage/flowTokenVault) acct.capabilities.publish(receiverCapability, at: /public/flowTokenReceiver) // Create a public capability to the Vault that only exposes // the balance field through the Balance interface - let balanceCapability = acct.capabilities.storage.issue<&{FungibleToken.Balance, FungibleToken.Vault}>(/storage/flowTokenVault) + let balanceCapability = acct.capabilities.storage.issue<&FlowToken.Vault>(/storage/flowTokenVault) acct.capabilities.publish(balanceCapability, at: /public/flowTokenBalance) } diff --git a/contracts/FlowStorageFees.cdc b/contracts/FlowStorageFees.cdc index b387541e6..932fde128 100644 --- a/contracts/FlowStorageFees.cdc +++ b/contracts/FlowStorageFees.cdc @@ -67,7 +67,7 @@ access(all) contract FlowStorageFees { var balance = 0.0 let acct = getAccount(accountAddress) - if let balanceRef = acct.capabilities.borrow<&{FungibleToken.Balance}>(/public/flowTokenBalance) { + if let balanceRef = acct.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { balance = balanceRef.balance } @@ -94,7 +94,7 @@ access(all) contract FlowStorageFees { var balance = 0.0 let acct = getAccount(accountAddress) - if let balanceRef = acct.capabilities.borrow<&{FungibleToken.Balance}>(/public/flowTokenBalance) { + if let balanceRef = acct.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { if accountAddress == payer { // if the account is the payer, deduct the maximum possible transaction fees from the balance balance = balanceRef.balance.saturatingSubtract(maxTxFees) @@ -156,7 +156,7 @@ access(all) contract FlowStorageFees { let acct = getAccount(accountAddress) var balance = 0.0 - if let balanceRef = acct.capabilities.borrow<&{FungibleToken.Balance}>(/public/flowTokenBalance) { + if let balanceRef = acct.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { balance = balanceRef.balance } diff --git a/contracts/FlowToken.cdc b/contracts/FlowToken.cdc index c126f2302..6d278b340 100644 --- a/contracts/FlowToken.cdc +++ b/contracts/FlowToken.cdc @@ -246,13 +246,13 @@ access(all) contract FlowToken: FungibleToken { // Create a public capability to the stored Vault that only exposes // the `deposit` method through the `Receiver` interface // - let receiverCapability = self.account.capabilities.storage.issue<&{FungibleToken.Receiver, FungibleToken.Vault}>(/storage/flowTokenVault) + let receiverCapability = self.account.capabilities.storage.issue<&FlowToken.Vault>(/storage/flowTokenVault) self.account.capabilities.publish(receiverCapability, at: /public/flowTokenReceiver) // Create a public capability to the stored Vault that only exposes // the `balance` field through the `Balance` interface // - let balanceCapability = self.account.capabilities.storage.issue<&{FungibleToken.Balance, FungibleToken.Vault}>(/storage/flowTokenVault) + let balanceCapability = self.account.capabilities.storage.issue<&FlowToken.Vault>(/storage/flowTokenVault) self.account.capabilities.publish(balanceCapability, at: /public/flowTokenBalance) let admin <- create Administrator() diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 829d3d886..76d19b603 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -4,9 +4,9 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240201191527-4670592eba7c + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240205224107-320aa3cf09e0 github.com/onflow/flow-go-sdk v1.0.0-M1 - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240201190730-ebdb001eb83c + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240205233530-86ee8c352fa6 github.com/stretchr/testify v1.8.4 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 61d5614f5..f60226f00 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1618,6 +1618,8 @@ github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240201000302-9141cd6d33e3 github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240201000302-9141cd6d33e3/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240201191527-4670592eba7c h1:vIPQtIisemRAEpjwsDCa1Vh5iWe0v8Cp+BVrP/Le4ug= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240201191527-4670592eba7c/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240205224107-320aa3cf09e0 h1:u6/YcUvO8jU0f3Evb/6agzXqeOo+VbL2a3mmj/5ifRs= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240205224107-320aa3cf09e0/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125012012-2118663ca817 h1:ciQUDNptn8jSQjp4Oh7rnC8EZYCYkTvWYlrXhCsf/iQ= @@ -1630,6 +1632,8 @@ github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240201182055-912407f1d10f github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240201182055-912407f1d10f/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240201190730-ebdb001eb83c h1:RZCKW5l+JUILWd+UJqc036bC9LRoizlMrOeWOWyDRuI= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240201190730-ebdb001eb83c/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240205233530-86ee8c352fa6 h1:/2vvjKkWG/3cKP3IpgiGNqXi0yskn4GmNTjmeCwMoz8= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240205233530-86ee8c352fa6/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 9cb9e003e..94585a4b5 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -73,7 +73,7 @@ // flowToken/mint_tokens.cdc (1.019kB) // flowToken/scripts/get_balance.cdc (420B) // flowToken/scripts/get_supply.cdc (208B) -// flowToken/setup_account.cdc (1.474kB) +// flowToken/setup_account.cdc (1.349kB) // flowToken/transfer_tokens.cdc (1.327kB) // idTableStaking/admin/add_approved_and_limits.cdc (1.635kB) // idTableStaking/admin/add_approved_nodes.cdc (1.055kB) @@ -1821,7 +1821,7 @@ func flowtokenScriptsGet_supplyCdc() (*asset, error) { return a, nil } -var _flowtokenSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x54\x5d\x8f\xda\x30\x10\x7c\xcf\xaf\x18\xdd\xc3\x29\x48\x57\xf2\x8e\xe0\xa4\xf6\xd4\xfe\x80\xf6\xd4\xf7\xc5\x6c\x88\x55\x63\x5b\xf6\x1a\x8a\x10\xff\xbd\x72\xbe\x68\xe0\xa8\xaa\xb6\x52\xf3\x80\xf0\xee\x78\x76\x66\x27\x4a\x51\x55\x78\x6d\x74\x84\x04\xb2\x91\x94\x68\x67\xa1\x23\x08\xc2\x3b\x6f\x48\x18\xb5\x0b\xf9\x78\xe9\xe7\x3b\xe2\x40\x9b\x0d\x08\x5f\x29\x19\x41\xe0\xe8\x52\x50\x9c\xeb\xd2\xb0\x0e\x20\xa5\x5c\xb2\x92\xb1\x31\xd7\x48\x72\xe3\x08\x45\x16\x29\x72\x3e\xa0\x36\xee\xf0\xea\xbe\xb1\x2d\x0a\xbd\xf3\x2e\x08\x3e\x25\xbb\xd5\x6b\xc3\x6d\x15\x75\x70\x3b\x3c\x4c\x6a\x0f\x23\x72\xb8\x3b\xa0\x86\xf3\x43\x51\xfc\xec\xe5\x54\x14\x00\xe0\x03\x7b\x0a\x5c\x46\xbd\xb5\x1c\x16\xa0\x24\x4d\xf9\x45\x5c\xa0\x2d\xcf\xf0\xf8\xbe\x53\x3b\x1b\xe0\xf9\xd1\x35\x3a\xf4\x3c\x76\xb8\xf9\xda\x85\xe0\x0e\xcb\xc7\x71\xd6\xbc\x75\xff\x5c\x66\x09\x0b\x54\x3d\xae\x1a\x7d\xb5\xed\x19\x56\x2b\x58\x6d\x70\x1a\xa9\xf3\x53\x55\x78\x09\x9c\x17\x4c\xb0\x7c\xb8\x2c\xa3\x5f\x29\xd9\x0d\x7c\x12\x68\x81\xb6\xe8\xa9\x27\x0c\x57\xea\x22\xed\xb9\x5c\xbe\xbb\x88\x53\x2d\xfd\xc7\x9d\x97\x63\x4b\x59\xce\x9e\x20\xee\xbe\xce\xe2\xae\x3e\x9f\xd6\x46\x2b\x28\xf2\xb4\xd6\x46\xcb\xb1\xcf\xb9\x97\xda\xa6\xeb\xac\x39\x82\xbf\x7b\x17\x39\x5e\x13\x65\xe8\x86\xbd\x8b\x5a\x50\x27\xdb\x25\x23\x4d\x70\x69\xdb\xb4\xcd\xcf\xac\x58\xef\x39\x40\x5b\xe1\x50\x93\x9a\x3a\x35\x2c\xd8\xe7\x51\x2f\xe4\xb1\x1a\x8c\x8f\x72\x34\xc7\x71\x0b\x3a\xc6\xc4\xcb\xc7\xd3\xe4\xad\x99\x0f\xfc\x4f\xd3\x37\xac\xcb\xef\xfc\x5c\x4e\xa6\xb5\xa2\xdf\xde\xd1\x04\x77\xb5\xb0\xb7\x54\xb5\x8b\x8b\xcd\xdf\xeb\x19\xdc\x3f\xdd\x74\x48\x16\xa8\xba\x80\x2e\x62\x07\xfe\x5f\xe9\xfd\xd7\x01\xaf\xc9\x90\x55\x8c\x5a\xb3\xd9\x4c\xd2\xfd\xd0\x77\xee\x87\xdb\xdf\xfd\xd3\x78\xfb\x01\xff\x2d\xdd\x9b\x0f\xc2\xcd\xc4\x8b\xc1\xdf\x4c\xb0\xb7\x74\x25\x69\xf8\x77\x2e\xba\xdf\x73\x81\x1f\x01\x00\x00\xff\xff\x2d\x5c\x59\xc7\xc2\x05\x00\x00" +var _flowtokenSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x51\xcd\x8e\x1a\x3d\x10\xbc\xfb\x29\x4a\x1c\x56\x20\xed\xc7\xdc\xd1\xf2\x49\xc9\x2a\x79\x80\x64\x95\x7b\x63\x7a\x18\x2b\xc6\xb6\xec\x36\x04\xad\xf6\xdd\x23\xcf\x6f\x86\x85\x28\x87\x5c\xe2\xc3\x68\xdc\x5d\xae\xae\xae\x52\x55\x85\x97\xc6\x24\x48\x24\x97\x48\x8b\xf1\x0e\x26\x81\x20\x7c\x0c\x96\x84\x51\xfb\x58\xae\x53\xbf\xbc\x11\x0f\xda\xef\x41\xf8\x46\xd9\x0a\x22\x27\x9f\xa3\xe6\x52\x97\x86\x4d\x04\x69\xed\xb3\x93\x82\x4d\xa5\x46\x52\x1a\x17\x68\x72\xc8\x89\xcb\x05\xb5\xf5\xe7\x17\xff\x9d\x9d\x52\xe6\x18\x7c\x14\x7c\xce\xee\x60\x76\x96\xdb\x2a\xea\xe8\x8f\x58\xcc\x6a\x8b\x11\x39\xbc\x1d\x50\xc3\x7d\xa1\xd4\xaf\xbb\xbc\x2a\x05\x00\x21\x72\xa0\xc8\xcb\x64\x0e\x8e\xe3\x06\x94\xa5\x59\x7e\x15\x1f\xe9\xc0\x2b\x3c\x7c\xe8\xd4\xae\x06\x78\x39\xa6\x46\x87\x5e\xa7\x0e\xb7\xde\xf9\x18\xfd\xf9\xe9\x61\x9c\xb5\x6e\xb7\xff\x7f\x59\x24\x6c\x50\xf5\xb8\x6a\xdc\xab\x6d\xaf\xb0\xdd\xc2\x19\x8b\xd7\x91\xba\x9c\xaa\xc2\x73\xe4\x62\x30\xc1\xf1\x79\x32\xa3\xb7\x94\xdc\x1e\x21\x0b\x8c\xc0\x38\xf4\xd4\x33\x86\x2b\x75\x89\x4e\xbc\x7c\xfa\x6f\x12\xa7\x5b\xfa\x4f\xc7\x20\x97\x96\x72\xb9\x7a\x84\xf8\xfb\x3a\xd5\x5d\x7d\x21\xef\xac\xd1\xd0\x14\x68\x67\xac\x91\x4b\x9f\x73\x2f\xb5\x4d\xd7\x3b\x7b\x01\xff\x08\x3e\x71\xba\x26\x2a\xd0\x3d\x07\x9f\x8c\xa0\xce\xae\x4b\x46\x9a\xe8\xf3\xa1\x69\x9b\x5f\x58\xb3\x39\x71\x84\x71\xc2\xb1\x26\x3d\xdf\xd4\xb2\xe0\x54\x46\x3d\x53\xc0\x76\x58\x7c\x94\x63\x38\x8d\x2e\x98\x94\x32\xdf\x88\x68\xc6\xd7\xca\xba\xed\xc2\x0c\x77\x65\xc9\xad\xb9\xad\x35\xa9\x79\xcf\x3f\xe8\x7d\x7c\xd7\x21\xd9\xa0\xea\x2c\x9d\x86\x0f\x0e\xfc\x6e\xfe\xdf\x8e\x64\x47\x96\x9c\x66\xd4\x86\xed\x7e\x96\xc7\xc7\xbe\x73\x3f\x8e\xfe\xed\x3f\x14\xc8\xa4\xf8\x0f\x23\xe9\x4d\xb8\x12\x30\xfc\xbd\xa9\xee\xfb\xa6\xf0\x33\x00\x00\xff\xff\x74\xcd\x81\x62\x45\x05\x00\x00" func flowtokenSetup_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -1837,7 +1837,7 @@ func flowtokenSetup_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/setup_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x31, 0xfe, 0x29, 0xd3, 0x7b, 0xf7, 0x69, 0xc8, 0x96, 0xa0, 0x69, 0x79, 0x29, 0xaf, 0xed, 0x7a, 0x32, 0xee, 0xf7, 0x5d, 0x6b, 0x3f, 0xed, 0x5a, 0xd8, 0x8f, 0x87, 0xc7, 0x42, 0x93, 0x32, 0x5c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x26, 0x3b, 0x9, 0x19, 0x12, 0xf7, 0x3d, 0x9c, 0x52, 0x2d, 0x2c, 0x62, 0x9c, 0x34, 0xbd, 0x30, 0x11, 0xa0, 0xaa, 0xb7, 0x70, 0xa, 0xf6, 0xc6, 0xed, 0xe4, 0x7d, 0x3f, 0xe5, 0xca, 0x4a, 0xf0}} return a, nil } diff --git a/transactions/flowToken/setup_account.cdc b/transactions/flowToken/setup_account.cdc index 5aa316d78..fb792aded 100644 --- a/transactions/flowToken/setup_account.cdc +++ b/transactions/flowToken/setup_account.cdc @@ -16,22 +16,22 @@ transaction { // Create a public capability to the Vault that only exposes // the deposit function through the Receiver interface - let vaultCap = signer.capabilities.storage.issue<&{FungibleToken.Receiver, FungibleToken.Vault}>( + let vaultCap = signer.capabilities.storage.issue<&FlowToken.Vault>( /storage/flowTokenVault ) - signer.capabilities.publish<&{FungibleToken.Receiver, FungibleToken.Vault}>( + signer.capabilities.publish( vaultCap, at: /public/flowTokenReceiver ) // Create a public capability to the Vault that only exposes // the balance field through the Balance interface - let balanceCap = signer.capabilities.storage.issue<&{FungibleToken.Balance, FungibleToken.Vault}>( + let balanceCap = signer.capabilities.storage.issue<&FlowToken.Vault>( /storage/flowTokenVault ) - signer.capabilities.publish<&FlowToken.Vault>( + signer.capabilities.publish( balanceCap, at: /public/flowTokenBalance ) From 23e522465ee64e0512bb74565b7c6197419ee5df Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Mon, 5 Feb 2024 18:13:24 -0600 Subject: [PATCH 078/160] update imports --- contracts/FlowFees.cdc | 2 +- contracts/FlowServiceAccount.cdc | 4 ++-- contracts/epochs/FlowEpoch.cdc | 6 +++--- lib/go/contracts/contracts.go | 18 +++++++++--------- lib/go/test/random_beacon_test.go | 7 ------- lib/go/test/staking_test_helpers.go | 4 ++-- 6 files changed, 17 insertions(+), 24 deletions(-) diff --git a/contracts/FlowFees.cdc b/contracts/FlowFees.cdc index 22f149ff9..0b4060f9e 100644 --- a/contracts/FlowFees.cdc +++ b/contracts/FlowFees.cdc @@ -1,6 +1,6 @@ import FungibleToken from "FungibleToken" import FlowToken from "FlowToken" -import FlowStorageFees from 0xFLOWSTORAGEFEESADDRESS +import FlowStorageFees from "FlowStorageFees" access(all) contract FlowFees { diff --git a/contracts/FlowServiceAccount.cdc b/contracts/FlowServiceAccount.cdc index 73b2a0d90..23e8530ae 100644 --- a/contracts/FlowServiceAccount.cdc +++ b/contracts/FlowServiceAccount.cdc @@ -1,7 +1,7 @@ import FungibleToken from "FungibleToken" import FlowToken from "FlowToken" -import FlowFees from 0xFLOWFEESADDRESS -import FlowStorageFees from 0xFLOWSTORAGEFEESADDRESS +import FlowFees from "FlowFees" +import FlowStorageFees from "FlowStorageFees" access(all) contract FlowServiceAccount { diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index cdb0e2487..715624534 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -1,9 +1,9 @@ import FungibleToken from "FungibleToken" import FlowToken from "FlowToken" import FlowIDTableStaking from "FlowIDTableStaking" -import FlowClusterQC from 0xQCADDRESS -import FlowDKG from 0xDKGADDRESS -import FlowFees from 0xFLOWFEESADDRESS +import FlowClusterQC from "FlowClusterQC" +import FlowDKG from "FlowDKG" +import FlowFees from "FlowFees" // The top-level smart contract managing the lifecycle of epochs. In Flow, // epochs are the smallest unit of time where the identity table (the set of diff --git a/lib/go/contracts/contracts.go b/lib/go/contracts/contracts.go index 3e4815e8f..12a4412e7 100644 --- a/lib/go/contracts/contracts.go +++ b/lib/go/contracts/contracts.go @@ -52,15 +52,15 @@ const ( placeholderFlowTokenAddress = "\"FlowToken\"" placeholderIDTableAddress = "\"FlowIDTableStaking\"" placeholderBurnerAddress = "\"Burner\"" - placeholderStakingProxyAddress = "0xSTAKINGPROXYADDRESS" - placeholderQCAddr = "0xQCADDRESS" - placeholderDKGAddr = "0xDKGADDRESS" - placeholderEpochAddr = "0xEPOCHADDRESS" - placeholderFlowFeesAddress = "0xFLOWFEESADDRESS" - placeholderStorageFeesAddress = "0xFLOWSTORAGEFEESADDRESS" - placeholderLockedTokensAddress = "0xLOCKEDTOKENSADDRESS" - placeholderStakingCollectionAddress = "0xFLOWSTAKINGCOLLECTIONADDRESS" - placeholderNodeVersionBeaconAddress = "0xNODEVERSIONBEACONADDRESS" + placeholderStakingProxyAddress = "\"StakingProxy\"" + placeholderQCAddr = "\"FlowClusterQC\"" + placeholderDKGAddr = "\"FlowDKG\"" + placeholderEpochAddr = "\"FlowEpoch\"" + placeholderFlowFeesAddress = "\"FlowFees\"" + placeholderStorageFeesAddress = "\"FlowStorageFees\"" + placeholderLockedTokensAddress = "\"LockedTokens\"" + placeholderStakingCollectionAddress = "\"FlowStakingCollection\"" + placeholderNodeVersionBeaconAddress = "\"NodeVersionBeacon\"" ) // Adds a `0x` prefix to the provided address string diff --git a/lib/go/test/random_beacon_test.go b/lib/go/test/random_beacon_test.go index a8050c027..1b0990a60 100644 --- a/lib/go/test/random_beacon_test.go +++ b/lib/go/test/random_beacon_test.go @@ -14,11 +14,6 @@ import ( func TestRandomBeaconHistory(t *testing.T) { _, adapter := newBlockchain() - // env := templates.Environment{ - // FungibleTokenAddress: emulatorFTAddress, - // FlowTokenAddress: emulatorFlowTokenAddress, - // } - accountKeys := test.AccountKeyGenerator() // Create new keys for the DKG account and deploy @@ -32,6 +27,4 @@ func TestRandomBeaconHistory(t *testing.T) { }, }) assert.NoError(t, err) - - //env.DkgAddress = DKGAddress.Hex() } diff --git a/lib/go/test/staking_test_helpers.go b/lib/go/test/staking_test_helpers.go index 0ab339262..06d91cdca 100644 --- a/lib/go/test/staking_test_helpers.go +++ b/lib/go/test/staking_test_helpers.go @@ -85,7 +85,7 @@ func deployStakingContract( cadencePublicKeys := cadence.NewArray(publicKeys) // Get the code byte-array for the fees contract - FeesCode := contracts.TestFlowFees(emulatorFTAddress, emulatorFlowTokenAddress, emulatorStorageFees) + FeesCode := contracts.TestFlowFees(emulatorFTAddress, emulatorFlowTokenAddress, emulatorServiceAccount) logger := zerolog.Nop() adapter := adapters.NewSDKAdapter(&logger, b) @@ -106,7 +106,7 @@ func deployStakingContract( env.FlowFeesAddress = feesAddr.Hex() // Get the code byte-array for the staking contract - IDTableCode, _ := cadence.NewString(string(contracts.FlowIDTableStaking(emulatorFTAddress, emulatorFlowTokenAddress, feesAddr.String(), emulatorFTAddress, latest))[:]) + IDTableCode, _ := cadence.NewString(string(contracts.FlowIDTableStaking(emulatorFTAddress, emulatorFlowTokenAddress, feesAddr.String(), emulatorServiceAccount, latest))[:]) // Create the deployment transaction that transfers a FlowToken minter // to the new account and deploys the IDTableStaking contract From 9f926bfc7e753e624158d1a74b01d668951ff99c Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Mon, 5 Feb 2024 18:17:01 -0600 Subject: [PATCH 079/160] go mod tidy --- lib/go/contracts/go.sum | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index f60226f00..157874140 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1608,30 +1608,10 @@ github.com/onflow/cadence v1.0.0-M3 h1:bSydJise9pU4aALloUKv/EWmDLITRlbBpuG8OPByd github.com/onflow/cadence v1.0.0-M3/go.mod h1:odXGZZ/wGNA5mwT8bC9v8u8EXACHllB2ABSZK65TGL8= github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240125000944-01706d1b6a69 h1:QV31Qw7rPZM3jgjaosqr/MJjzpmO7ibnrHjUntSsJGY= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240125000944-01706d1b6a69/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240125205519-2e80d9b4bd01 h1:8iKk5RuFvhe7NQyAO3c+xiVvv38RB/yopHdWxp4AbL8= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240125205519-2e80d9b4bd01/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240131235405-58ef81bc75b9 h1:wcOcQJVgi8ljBvVmcS2HgHaM6CMjeMK4Bbx6RupJf9Y= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240131235405-58ef81bc75b9/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240201000302-9141cd6d33e3 h1:xaRvN9rtoNtZ43xI3huViITxgiYG+h9SC8eFUcHgK9w= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240201000302-9141cd6d33e3/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240201191527-4670592eba7c h1:vIPQtIisemRAEpjwsDCa1Vh5iWe0v8Cp+BVrP/Le4ug= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240201191527-4670592eba7c/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240205224107-320aa3cf09e0 h1:u6/YcUvO8jU0f3Evb/6agzXqeOo+VbL2a3mmj/5ifRs= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240205224107-320aa3cf09e0/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125012012-2118663ca817 h1:ciQUDNptn8jSQjp4Oh7rnC8EZYCYkTvWYlrXhCsf/iQ= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125012012-2118663ca817/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125205553-d2b571fb3fad h1:I6LD9BOsilGbiqhGjP86FIIXJe0YdUz75d/oWdHFzDI= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240125205553-d2b571fb3fad/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240131235457-fdeb8eefcaeb h1:riIroItP1JPuq24T5EyH73M8JnVsKXFI1S01No2w/44= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240131235457-fdeb8eefcaeb/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240201182055-912407f1d10f h1:AVtMqZOXjkt2i1xLttHLsTd1P0p8vFa0DEQmHeixkr0= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240201182055-912407f1d10f/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240201190730-ebdb001eb83c h1:RZCKW5l+JUILWd+UJqc036bC9LRoizlMrOeWOWyDRuI= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240201190730-ebdb001eb83c/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240205233530-86ee8c352fa6 h1:/2vvjKkWG/3cKP3IpgiGNqXi0yskn4GmNTjmeCwMoz8= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240205233530-86ee8c352fa6/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= From d7951240957db33e4cb4a898e12e6245f75f183b Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Mon, 5 Feb 2024 18:26:13 -0600 Subject: [PATCH 080/160] add fungible token switchboard --- lib/go/contracts/contracts.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/go/contracts/contracts.go b/lib/go/contracts/contracts.go index 12a4412e7..218b405c6 100644 --- a/lib/go/contracts/contracts.go +++ b/lib/go/contracts/contracts.go @@ -86,6 +86,11 @@ func FungibleTokenMetadataViews(fungibleTokenAddr, metadataViewsAddr, viewResolv return ftcontracts.FungibleTokenMetadataViews(fungibleTokenAddr, metadataViewsAddr, viewResolverAddress) } +// FungibleTokenMetadataViews returns the FungibleTokenMetadataViews contract interface. +func FungibleTokenSwitchboard(fungibleTokenAddr string) []byte { + return ftcontracts.FungibleTokenMetadataViews(fungibleTokenAddr) +} + func NonFungibleToken(viewResolverAddress string) []byte { return nftcontracts.NonFungibleToken(flow.HexToAddress(viewResolverAddress)) } From d9617df656fcd617534c1b56cd62dbf1501837e2 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Mon, 5 Feb 2024 18:31:01 -0600 Subject: [PATCH 081/160] fix switchboard --- lib/go/contracts/contracts.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/go/contracts/contracts.go b/lib/go/contracts/contracts.go index 218b405c6..84281d89d 100644 --- a/lib/go/contracts/contracts.go +++ b/lib/go/contracts/contracts.go @@ -86,9 +86,9 @@ func FungibleTokenMetadataViews(fungibleTokenAddr, metadataViewsAddr, viewResolv return ftcontracts.FungibleTokenMetadataViews(fungibleTokenAddr, metadataViewsAddr, viewResolverAddress) } -// FungibleTokenMetadataViews returns the FungibleTokenMetadataViews contract interface. +// FungibleTokenSwitchboard returns the FungibleTokenSwitchboard contract interface. func FungibleTokenSwitchboard(fungibleTokenAddr string) []byte { - return ftcontracts.FungibleTokenMetadataViews(fungibleTokenAddr) + return ftcontracts.FungibleTokenSwitchboard(fungibleTokenAddr) } func NonFungibleToken(viewResolverAddress string) []byte { From 006447b614560cb280589a6c208ebd0b9fdf4032 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 7 Feb 2024 10:44:33 -0600 Subject: [PATCH 082/160] update error messages for ledger transactions --- lib/go/templates/internal/assets/assets.go | 102 +++++++++--------- lib/go/templates/manifest.mainnet.json | 68 ++++++------ lib/go/templates/manifest.testnet.json | 68 ++++++------ .../lockedTokens/user/deposit_tokens.cdc | 2 +- .../lockedTokens/user/withdraw_tokens.cdc | 2 +- .../stakingCollection/close_stake.cdc | 2 +- .../create_machine_account.cdc | 2 +- .../stakingCollection/register_delegator.cdc | 2 +- .../stakingCollection/register_node.cdc | 2 +- .../stakingCollection/request_unstaking.cdc | 2 +- .../stakingCollection/stake_new_tokens.cdc | 2 +- .../stake_rewarded_tokens.cdc | 2 +- .../stake_unstaked_tokens.cdc | 2 +- .../stakingCollection/transfer_delegator.cdc | 4 +- .../stakingCollection/transfer_node.cdc | 4 +- .../stakingCollection/unstake_all.cdc | 2 +- .../update_networking_address.cdc | 2 +- .../withdraw_from_machine_account.cdc | 2 +- .../withdraw_rewarded_tokens.cdc | 2 +- .../withdraw_unstaked_tokens.cdc | 2 +- 20 files changed, 138 insertions(+), 138 deletions(-) diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 94585a4b5..15c310556 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -204,13 +204,13 @@ // lockedTokens/staker/withdraw_rewarded_tokens.cdc (979B) // lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc (711B) // lockedTokens/staker/withdraw_unstaked_tokens.cdc (711B) -// lockedTokens/user/deposit_tokens.cdc (788B) +// lockedTokens/user/deposit_tokens.cdc (812B) // lockedTokens/user/get_locked_account_address.cdc (407B) // lockedTokens/user/get_locked_account_balance.cdc (406B) // lockedTokens/user/get_multiple_unlock_limits.cdc (520B) // lockedTokens/user/get_total_balance.cdc (2.817kB) // lockedTokens/user/get_unlock_limit.cdc (397B) -// lockedTokens/user/withdraw_tokens.cdc (906B) +// lockedTokens/user/withdraw_tokens.cdc (930B) // nodeVersionBeacon/admin/change_version_freeze_period.cdc (810B) // nodeVersionBeacon/admin/delete_version_boundary.cdc (835B) // nodeVersionBeacon/admin/heartbeat.cdc (635B) @@ -242,15 +242,15 @@ // randomBeaconHistory/scripts/get_latest_source_of_randomness.cdc (200B) // randomBeaconHistory/scripts/get_source_of_randomness.cdc (305B) // randomBeaconHistory/scripts/get_source_of_randomness_page.cdc (326B) -// stakingCollection/close_stake.cdc (869B) -// stakingCollection/create_machine_account.cdc (1.263kB) +// stakingCollection/close_stake.cdc (909B) +// stakingCollection/create_machine_account.cdc (1.303kB) // stakingCollection/create_new_tokenholder_acct.cdc (3.625kB) // stakingCollection/deploy_collection_contract.cdc (312B) -// stakingCollection/register_delegator.cdc (786B) +// stakingCollection/register_delegator.cdc (826B) // stakingCollection/register_multiple_delegators.cdc (878B) // stakingCollection/register_multiple_nodes.cdc (1.695kB) -// stakingCollection/register_node.cdc (1.533kB) -// stakingCollection/request_unstaking.cdc (795B) +// stakingCollection/register_node.cdc (1.573kB) +// stakingCollection/request_unstaking.cdc (835B) // stakingCollection/restake_all_stakers.cdc (1.416kB) // stakingCollection/scripts/does_account_have_staking_collection.cdc (260B) // stakingCollection/scripts/get_all_delegator_info.cdc (360B) @@ -263,18 +263,18 @@ // stakingCollection/scripts/get_node_ids.cdc (251B) // stakingCollection/scripts/get_unlocked_tokens_used.cdc (297B) // stakingCollection/setup_staking_collection.cdc (3.503kB) -// stakingCollection/stake_new_tokens.cdc (919B) -// stakingCollection/stake_rewarded_tokens.cdc (812B) -// stakingCollection/stake_unstaked_tokens.cdc (812B) +// stakingCollection/stake_new_tokens.cdc (959B) +// stakingCollection/stake_rewarded_tokens.cdc (852B) +// stakingCollection/stake_unstaked_tokens.cdc (852B) // stakingCollection/test/deposit_tokens.cdc (887B) // stakingCollection/test/get_tokens.cdc (693B) -// stakingCollection/transfer_delegator.cdc (2.021kB) -// stakingCollection/transfer_node.cdc (2.135kB) -// stakingCollection/unstake_all.cdc (721B) -// stakingCollection/update_networking_address.cdc (739B) -// stakingCollection/withdraw_from_machine_account.cdc (801B) -// stakingCollection/withdraw_rewarded_tokens.cdc (973B) -// stakingCollection/withdraw_unstaked_tokens.cdc (988B) +// stakingCollection/transfer_delegator.cdc (2.097kB) +// stakingCollection/transfer_node.cdc (2.211kB) +// stakingCollection/unstake_all.cdc (761B) +// stakingCollection/update_networking_address.cdc (779B) +// stakingCollection/withdraw_from_machine_account.cdc (841B) +// stakingCollection/withdraw_rewarded_tokens.cdc (1.013kB) +// stakingCollection/withdraw_unstaked_tokens.cdc (1.028kB) // stakingProxy/add_node_info.cdc (647B) // stakingProxy/get_node_info.cdc (468B) // stakingProxy/register_node.cdc (1.158kB) @@ -4441,7 +4441,7 @@ func lockedtokensStakerWithdraw_unstaked_tokensCdc() (*asset, error) { return a, nil } -var _lockedtokensUserDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x92\xcb\x6e\xf2\x30\x10\x85\xf7\x79\x8a\x51\x16\x28\x59\xfc\xe6\x5f\x54\x5d\x20\x5a\x44\xb9\xa8\x12\xa8\x54\x40\xe9\xda\x38\x13\x12\x61\xec\xc8\x99\x34\x48\x15\xef\x5e\xd9\xb9\x88\x2c\x22\xb5\xde\x58\xf1\x9c\x39\xf3\x1d\xc7\xe9\x25\xd3\x86\x60\x59\xa8\x53\x7a\x94\xb8\xd7\x67\x54\x10\x1b\x7d\x01\xbf\x73\xe6\x7b\x8d\x52\xea\xb2\xa3\x6a\xbe\x5b\xc5\x5a\x8b\x33\x46\xee\x2c\xaf\x44\xff\xaf\xeb\xcd\x6c\xb5\x98\xef\x37\xab\xc5\xdb\x74\x3e\xdf\x2e\x76\x3b\xcf\x23\xc3\x55\xce\x05\xa5\x5a\x05\xfc\xa2\x0b\x45\x23\xf8\x58\xa6\xd7\xc7\x87\x10\xbe\x3d\x0f\x00\x40\x22\x41\xa2\x65\x84\x66\x8b\xf1\x08\x06\xf7\xd6\xcc\x6d\xaf\xae\xda\x8a\xbf\x78\x21\xc9\x69\x79\x41\x49\xd0\x89\xc0\x3e\x53\x4a\x22\xc3\xcb\x10\x06\x2d\x35\x3b\xd8\x8e\x6a\x5a\x66\x30\xe3\x06\x03\x2e\x04\xd5\x06\x2f\xda\x18\x5d\x1e\xb8\x2c\x30\x84\xc1\x54\x08\x8b\x69\xf1\xa0\x5e\x39\xca\x98\xb5\x88\xf0\x04\xb6\x99\xe5\xa4\x0d\x3f\x21\x3b\xba\xf6\x71\x2f\xf7\x73\x60\xef\x67\x04\x7d\xf5\x5d\xe5\xf3\xce\x29\x09\xdb\x91\x76\x4d\x26\x90\x71\x95\x8a\xc0\x9f\xe9\x42\x46\xa0\x34\x41\x35\x0c\x38\x18\x8c\xd1\xa0\x12\x08\xa4\xe1\xce\xcd\x0f\xbd\x2e\x77\x73\x5b\x3d\xd8\x7f\xba\xc2\x26\xca\xb0\x36\x19\xc6\x4d\xdd\x95\x7f\x8d\x6f\xdb\x80\xdc\x03\x73\x78\x36\x8d\x5f\x75\xdf\x2a\x7c\xbc\xa2\x28\x08\x7b\x7f\x02\x8b\x30\xd3\x79\x4a\x35\xd0\xf8\x5f\x27\x2b\x2b\xeb\x08\xed\x9b\xab\xf6\xb0\x99\x71\xf3\x7e\x02\x00\x00\xff\xff\x9e\x18\xa8\x05\x14\x03\x00\x00" +var _lockedtokensUserDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x92\x3f\x6f\xdb\x30\x10\xc5\x77\x7d\x8a\x83\x06\x43\x1a\xaa\x74\x28\x3a\x18\x69\x83\x34\x76\x50\x20\x41\x53\xc4\x6e\x3a\x5f\xa8\x53\x44\x84\xe6\x09\xe4\x31\x76\x51\xf8\xbb\x17\xa4\xfe\xa0\x1a\x34\x84\x0b\x21\xde\xbb\x7b\xbf\x47\x51\x1f\x3a\x76\x02\xb7\xc1\xbe\xe8\x67\x43\x7b\x7e\x25\x0b\x8d\xe3\x03\xe4\xb3\xb3\x3c\x1b\x95\x86\x8f\x33\xd5\xf8\x3d\x29\xee\x59\xbd\x52\x9d\xce\x7c\x2f\xfa\x78\xba\x7f\xb8\xb9\xdb\x6e\xf6\x0f\x77\xdb\x1f\xd7\x9b\xcd\xe3\x76\xb7\xcb\x32\x71\x68\x3d\x2a\xd1\x6c\x0b\x3c\x70\xb0\xb2\x86\x5f\xb7\xfa\xf4\xf9\x53\x09\x7f\xb3\x0c\x00\xc0\x90\x40\xcb\xa6\x26\xf7\x48\xcd\x1a\x56\xff\x8f\xae\xd2\xf6\x3d\x55\x27\xf1\x1b\x06\x23\x49\x8b\x41\xda\x62\x16\xa1\xfa\xad\xa5\xad\x1d\x1e\x4b\x58\x4d\xd4\xd5\x53\xec\xe8\xdd\x3a\x47\x1d\x3a\x2a\x50\x29\x19\x06\x7c\x63\xe7\xf8\xf8\x84\x26\x50\x09\xab\x6b\xa5\x22\x66\xc4\x83\x61\x79\x32\x4d\x35\x21\xc2\x17\x88\xcd\x95\x17\x76\xf8\x42\xd5\x73\x6a\xbf\x5c\xe4\xfe\x5a\xc4\xfb\x59\xc3\x52\x7d\xd7\xcf\xf9\x89\xd2\x96\x93\x65\x5c\x57\x57\xd0\xa1\xd5\xaa\xc8\xf7\x2d\x41\xe7\xf4\x01\xdd\x1f\x08\x9e\x5c\x04\x88\x90\x50\x33\x79\xb0\x2c\xd0\xe2\x1b\x01\x5a\x40\xef\x59\x69\x14\xaa\xc1\x24\xbf\x51\x9a\x97\xd9\x3c\xcf\x78\x8b\x0b\x71\xde\x75\xb5\x63\xc4\x8b\x61\xc8\x45\x33\xd6\x53\x79\x29\xd6\x0d\x07\x53\x27\xfc\xde\x14\x62\x1b\x48\x7a\x78\x09\x0f\x1c\x35\x79\xdf\x7d\xee\xf1\xe9\x44\x2a\x08\x2d\xfe\x9c\xaa\xa6\x8e\xbd\x96\x01\xe8\xf2\xc3\x2c\x6b\x75\x1c\x22\x4c\x6f\xb1\xdf\xcb\xd1\xe3\x9c\xfd\x0b\x00\x00\xff\xff\x24\x0f\x94\xd3\x2c\x03\x00\x00" func lockedtokensUserDeposit_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4457,7 +4457,7 @@ func lockedtokensUserDeposit_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/deposit_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9b, 0xb9, 0x79, 0xed, 0xcd, 0xd, 0x2e, 0x84, 0xa0, 0xc1, 0x8d, 0x42, 0x96, 0x2a, 0xbf, 0x81, 0xcb, 0x53, 0x7c, 0x57, 0x1, 0x6b, 0xa0, 0x5a, 0xe5, 0xd6, 0x50, 0x52, 0x8f, 0x5f, 0x10, 0x5e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x1f, 0x6a, 0xd9, 0xd0, 0xf3, 0x38, 0x62, 0xfc, 0x28, 0x71, 0xaa, 0xf0, 0x12, 0x5e, 0x71, 0xe6, 0x2a, 0xd1, 0x88, 0x47, 0xa9, 0x1f, 0x46, 0x62, 0x8d, 0xaf, 0xff, 0x92, 0xe, 0xf2, 0xec}} return a, nil } @@ -4561,7 +4561,7 @@ func lockedtokensUserGet_unlock_limitCdc() (*asset, error) { return a, nil } -var _lockedtokensUserWithdraw_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xcb\x6e\xf2\x30\x10\x85\xf7\x79\x8a\x51\x16\x28\x91\xfe\xdf\x74\x51\x75\x81\x68\x11\xe5\xa2\x4a\xa0\x52\x01\xa5\x6b\xe3\x4c\x48\x84\xb1\x23\x67\xd2\x20\x55\xbc\x7b\xe5\xdc\x4a\x5a\x51\xb1\x69\x36\x56\xec\x39\x67\xce\xe7\x71\x7c\x48\xb4\x21\x98\x66\x6a\x17\x6f\x25\xae\xf5\x1e\x15\x84\x46\x1f\xc0\x6d\xed\xb9\x4e\x5d\x29\x75\xde\xaa\xaa\xff\x9b\x8a\xb9\x16\x7b\x0c\x8a\xbd\xb4\x2c\xba\x39\xce\x17\xa3\xd9\x64\xbc\x5e\xcc\x26\xcf\xc3\xf1\x78\x39\x59\xad\x1c\x87\x0c\x57\x29\x17\x14\x6b\xe5\xf1\x83\xce\x14\xf5\xe0\x75\x1a\x1f\xef\x6e\x7d\xf8\x70\x1c\x00\x00\x89\x04\x91\x96\x01\x9a\x25\x86\x3d\xe0\x19\x45\xde\xb9\x3d\x2b\x96\x45\x82\x86\x5b\x9b\xf4\x5f\x1b\x84\xbd\xc5\x14\x05\x86\xe7\x3e\x74\x7e\xca\x9e\x0a\xe3\xa6\xcf\x3b\xcf\x24\x7d\xb5\xb9\x68\xd4\x00\xb3\x8d\x55\x94\x41\x13\x83\x09\x37\xe8\x71\x21\xa8\x32\x78\xd4\xc6\xe8\x7c\xc3\x65\x86\x3e\x74\x86\x42\x58\x42\x4b\x06\xd5\x97\xa2\x0c\x59\x43\x07\xf7\x60\xc5\x2c\x25\x6d\xf8\x0e\xd9\xb6\x90\xf7\xff\x02\xf9\xc1\xb3\x53\xe9\xc1\xa5\xf3\x55\x19\xe1\x85\x53\xe4\x37\x69\xed\x37\x18\x40\xc2\x55\x2c\x3c\x77\xa4\x33\x19\x80\xd2\x04\x65\x4e\xe0\x60\x30\x44\x83\x4a\x20\x90\x86\x33\x37\xd7\x77\xda\xc8\xf5\x45\xff\x46\x7c\xed\xed\xd7\x28\xdd\xca\xa4\x1b\xd6\xe7\xc5\xf1\xd5\xf1\xad\x0c\xa8\x78\xd6\x45\x3c\x4b\xe3\x96\xea\x53\x19\x1f\x8f\x28\x32\xc2\xef\xf3\xab\x61\x58\x80\x89\x4e\x63\xaa\xf2\xf4\xff\xb7\xa7\xcb\xf2\x0a\xa1\x79\xe9\xe5\xea\xd7\x3d\x4e\xce\x67\x00\x00\x00\xff\xff\x99\x06\x1e\xd1\x8a\x03\x00\x00" +var _lockedtokensUserWithdraw_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x93\x41\x6f\xd4\x30\x10\x85\xef\xf9\x15\xa3\x1c\xaa\x44\x82\x94\x03\xe2\xb0\x2a\x54\xa5\xbb\x15\x52\x2b\x16\x75\x97\x72\x9e\x3a\x93\xc6\xaa\x37\x13\xd9\xe3\xee\x22\xd4\xff\x8e\xec\xc4\x81\x80\x16\x71\xa9\x2f\xd6\xda\xf3\xde\xbc\xcf\xb3\xd1\xbb\x9e\xad\xc0\x95\xef\x1e\xf4\xbd\xa1\x2d\x3f\x52\x07\x8d\xe5\x1d\xe4\xb3\xb3\x3c\x4b\x95\x86\xf7\xb3\xaa\xf4\x7b\xaa\xb8\x61\xf5\x48\x75\x3c\x73\x43\xd1\x9b\xc3\xcd\xfa\xf2\x7a\xb5\xdc\xae\xaf\x57\x9f\x2f\x96\xcb\xdb\xd5\x66\x93\x65\x62\xb1\x73\xa8\x44\x73\x57\xe0\x8e\x7d\x27\x0b\xf8\x7a\xa5\x0f\xef\xde\x96\xf0\x23\xcb\x00\x00\x0c\x09\xb4\x6c\x6a\xb2\xb7\xd4\x2c\x00\xbd\xb4\xc5\xef\xf6\x55\xdc\xd6\x3d\x59\x0c\x36\xee\xd5\x1c\xa4\xfa\xa6\xa5\xad\x2d\xee\x4b\x38\xf9\x5b\xf6\x29\x1a\x4f\x7d\x9e\xd0\x1b\xf9\xd5\xe6\xa8\xd1\x04\x5c\xdd\x05\xc5\x10\xb4\xb7\xd4\xa3\xa5\x02\x95\x92\xd1\xe0\x23\x5b\xcb\xfb\x3b\x34\x9e\x4a\x38\xb9\x50\x2a\x10\x06\x32\x18\x97\x23\xd3\x54\x13\x1d\xbc\x87\x20\xae\x9c\xb0\xc5\x07\xaa\xee\xa3\xfc\xec\x25\x90\x3f\x14\x61\x2a\x0b\x38\x76\xbf\x19\x22\x7c\x41\x69\xcb\x29\x6d\x58\xe7\xe7\xd0\x63\xa7\x55\x91\x6f\x5b\x82\xde\xea\x1d\xda\xef\xe0\x1d\xd9\x90\x3d\xf0\x41\xcd\xe4\xa0\x63\x81\x16\x9f\x08\xb0\x03\x74\x8e\x95\x46\xa1\x1a\x4c\xec\x97\x4a\xf3\x32\x9b\x3f\x45\x1a\xc0\xbf\x5e\xe2\x7f\xa7\x92\x10\x4f\x47\x93\xd3\x26\xdd\xc7\xeb\x63\x58\x97\xec\x4d\x1d\xe3\x0f\x4d\x21\xc8\x40\xe2\xdf\x3d\xc6\x03\x4b\x4d\x3e\xa8\x9f\x87\xf8\x74\x20\xe5\x85\xfe\x9c\x6b\x82\xa9\x6a\xea\xd9\x69\x19\xf3\x9c\xbd\x9e\x4f\xbd\xda\x8f\x08\xd3\x17\x30\xec\x65\xea\xf1\x9c\xfd\x0c\x00\x00\xff\xff\x97\x50\x2f\x26\xa2\x03\x00\x00" func lockedtokensUserWithdraw_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4577,7 +4577,7 @@ func lockedtokensUserWithdraw_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/withdraw_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x20, 0x29, 0xc, 0x2a, 0x18, 0xd0, 0x50, 0x85, 0xfb, 0x9f, 0x61, 0x34, 0xcb, 0x8b, 0x42, 0xee, 0xe7, 0x40, 0xc, 0xea, 0xbc, 0xbc, 0xcd, 0xe1, 0xca, 0x2d, 0xc, 0xd0, 0xc0, 0xd8, 0xd7, 0xcc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0xa3, 0xd2, 0xbe, 0xda, 0xaa, 0xde, 0xa4, 0x56, 0x70, 0xd8, 0x2, 0xde, 0x44, 0x5e, 0x62, 0x5f, 0x1c, 0x33, 0x6d, 0x38, 0x91, 0xad, 0x32, 0xe5, 0x84, 0x73, 0x91, 0x1e, 0x20, 0x39, 0x20}} return a, nil } @@ -5201,7 +5201,7 @@ func randombeaconhistoryScriptsGet_source_of_randomness_pageCdc() (*asset, error return a, nil } -var _stakingcollectionClose_stakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x6e\xd3\x40\x10\xbd\xfb\x2b\x46\x3d\x54\x8e\x54\xb9\x08\x6e\x11\x10\x05\xa7\xa0\x88\xaa\x41\x75\xe0\x3e\x59\x4f\x9c\x85\xcd\x4e\x34\x3b\x6e\x8a\x50\xff\x1d\xed\x6e\xe3\x22\xe2\x03\x17\xf6\x90\x78\xc7\x33\xef\xbd\x79\x7e\x76\x7f\x60\x51\xf8\xe8\xf8\xd8\x28\xfe\xb0\xbe\xab\xd9\x39\x32\x6a\xd9\xc3\x56\x78\x0f\xaf\x1e\x9b\xf5\xfc\xf3\xf2\xee\x53\xbd\xba\xbd\xbd\xa9\xd7\xcb\xd5\xdd\x7c\xb1\xb8\xbf\x69\x9a\xa2\xb8\xbe\x86\xda\x71\xa0\x00\xdc\x2b\x20\x84\x0c\x01\xbc\xf9\x4e\x46\xc1\x7a\xd0\x1d\x0d\x55\x33\x20\xc7\xc1\xf5\xce\x06\x68\x99\x02\x78\x56\x10\xda\xf3\x03\xa5\x76\x21\xc3\xd2\x66\xf2\x78\xb7\x2d\x79\xb5\xfa\x13\x14\x37\x8e\xae\xe2\xec\xa6\x57\xb0\x9a\xa7\xf7\x84\x91\x06\x35\x35\xa3\x31\xdc\x7b\xcd\x05\x93\xb5\x59\x05\x83\x3e\xb2\xd0\x03\x49\x6c\xa1\x90\xaa\xd8\xa1\xf5\x45\xa1\x82\x3e\x60\x12\x56\x7a\x6e\x69\xb9\x98\x42\xa3\x62\x7d\x77\x05\x2d\x39\xea\x50\x59\x62\xf1\xeb\xd2\xeb\x9b\xd7\xb3\x09\xfc\x2a\x00\x00\xd2\x8f\x23\x3d\x2d\xf8\xe2\xdc\x3d\x6d\xa7\x80\xbd\xee\xca\x51\x63\xab\x97\xc7\xd5\xd1\x93\x4c\xe0\x72\xbc\xef\xac\x52\x24\xce\x83\xd0\x01\x85\xca\xe7\x65\x9f\xa9\x3e\xb0\x08\x1f\xbf\xa1\xeb\x69\x02\x97\xf3\xfc\xee\xa4\x35\x9e\x40\x6e\x5b\x8d\x69\x85\x77\x27\xdf\xaa\xa0\x2c\xd8\x51\xb5\x49\x60\x6f\xff\xc7\x0e\xef\xcb\xf8\x69\xa7\xe3\x99\x3b\x6f\x6f\xb2\xa2\x2f\xa8\xbb\xc9\xb0\x4a\x3c\xb3\x19\x1c\xd0\x5b\x53\x5e\xd4\xdc\xbb\x36\xc5\x28\xcb\x06\xa1\x2d\x28\xc3\x19\xd6\x45\x46\x78\xca\x36\xd2\x23\x99\x5e\xe9\x5f\x1c\xaa\x52\x94\x22\x1e\x0d\x11\xc9\xff\x7f\x45\xe4\x8f\xcb\x89\xeb\xa9\xf8\x1d\x00\x00\xff\xff\x3a\xb0\x57\x13\x65\x03\x00\x00" +var _stakingcollectionClose_stakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x6e\xd3\x40\x10\xbd\xfb\x2b\x46\x3d\x14\x47\xaa\x5c\x04\xb7\x08\x88\x82\x53\x50\x44\xd5\xa0\x3a\x70\x9f\xac\x27\xce\xc2\x7a\xc7\x9a\x1d\x37\xad\x50\xff\x1d\xad\x37\x4e\x11\xc9\x81\x0b\x7b\x48\xbc\xe3\x37\xf3\xde\x3c\x3f\xdb\x76\x2c\x0a\x9f\x1c\xef\x2b\xc5\x9f\xd6\x37\x25\x3b\x47\x46\x2d\x7b\xd8\x0a\xb7\xf0\xfa\xb1\x5a\xcf\xbf\x2c\xef\x3e\x97\xab\xdb\xdb\x9b\x72\xbd\x5c\xdd\xcd\x17\x8b\xfb\x9b\xaa\xca\xb2\xeb\x6b\x28\x1d\x07\x0a\xc0\xbd\x02\x42\x48\x23\x80\x37\x3f\xc8\x28\x58\x0f\xba\xa3\x63\xd5\x1c\x27\xc7\xc6\xf5\xce\x06\xa8\x99\x02\x78\x56\x10\x6a\xf9\x81\x06\xb8\x90\x61\xa9\x13\x79\xbc\xdb\x9a\xbc\x5a\x7d\x02\xc5\x8d\xa3\xab\xd8\xbb\xe9\x15\xac\xa6\xee\x96\x30\xd2\xa0\x0e\x60\x34\x86\x7b\xaf\xa9\x60\x92\x36\xab\x60\xd0\x47\x16\x7a\x20\x89\x10\x0a\x43\x15\x1b\xb4\x3e\xcb\x54\xd0\x07\x1c\x84\xe5\x9e\x6b\x5a\x2e\xa6\x50\xa9\x58\xdf\x5c\x41\x4d\x8e\x1a\x54\x96\x58\xfc\xb6\xf4\xfa\xf6\xcd\x6c\x02\xbf\x32\x00\x80\xe1\xc7\x91\x8e\x0b\xbe\x38\x77\x4f\xdb\x29\x60\xaf\xbb\xfc\xac\xb1\xc5\xcb\xe3\x6a\xef\x49\x26\x70\x79\x1e\x77\x52\xc9\x06\xce\x4e\xa8\x43\xa1\xfc\xb0\xec\x81\xea\x23\x8b\xf0\xfe\x3b\xba\x9e\x26\x70\x39\x4f\xef\x46\xad\xf1\x04\x72\xdb\xe2\x9c\x56\x78\x3f\xfa\x56\x04\x65\xc1\x86\x8a\xcd\x30\xec\xdd\xff\xd8\xe1\x43\x1e\x3f\xed\xf4\x7c\xe6\x4e\xe1\x55\x52\xf4\x15\x75\x37\x39\xae\x12\xcf\x6c\x06\x1d\x7a\x6b\xf2\x8b\x92\x7b\x57\x0f\x31\x4a\xb2\x01\x41\x68\x4b\x42\xde\x10\x28\x03\xc2\x69\xb6\x0f\xd9\xec\xc4\xb6\x28\x4f\xd0\x07\x92\x57\x61\xb4\xe1\x22\x31\x3d\x27\xbb\xe9\x91\x4c\xaf\xf4\x2f\x4e\x16\x43\xe4\x22\x1b\x1d\xa3\x94\xfe\xff\x8a\xd2\x1f\x97\x91\xeb\x39\xfb\x1d\x00\x00\xff\xff\x39\x0c\xc1\xfa\x8d\x03\x00\x00" func stakingcollectionClose_stakeCdcBytes() ([]byte, error) { return bindataRead( @@ -5217,11 +5217,11 @@ func stakingcollectionClose_stakeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/close_stake.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x95, 0x4a, 0x20, 0xe3, 0x1d, 0x9a, 0x1, 0xdb, 0x99, 0xa3, 0xc1, 0xdc, 0x33, 0xed, 0x2, 0x2d, 0xba, 0x8, 0x61, 0x38, 0x16, 0xee, 0x6c, 0x8f, 0xf0, 0xf8, 0xae, 0xe8, 0x7e, 0x80, 0x47, 0xbd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0x28, 0x45, 0x62, 0x48, 0xb4, 0x60, 0xcc, 0xec, 0xf, 0xed, 0x7d, 0x4c, 0x87, 0xd5, 0x81, 0x35, 0xcc, 0xfe, 0x0, 0x2c, 0x2d, 0xa8, 0x50, 0xa3, 0x44, 0x50, 0xf8, 0x57, 0xdd, 0x16, 0xc6}} return a, nil } -var _stakingcollectionCreate_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x4f\x6f\xdb\x3e\x0c\xbd\xfb\x53\xf0\xd7\x43\xe1\x00\x81\xdb\xb3\xf1\xcb\x8a\xcc\x4d\x87\x22\x59\x32\xd4\xc5\x2e\xc3\x0e\xac\x4d\xdb\x42\x14\xc9\x90\x98\xa5\xde\x9a\xef\x3e\xc8\x72\x9c\xff\xc7\xf9\x90\x58\xa2\xc9\xf7\xf8\xf8\x24\xb1\xaa\xb5\x61\x48\x4c\x53\xb3\x0e\xba\xd5\x93\xd4\x9b\x94\x71\x29\x54\x99\x68\x29\x29\x63\xa1\x15\x14\x46\xaf\xe0\xfe\x3d\x7d\x1d\x4f\x9f\xe7\x5f\x92\xc5\x6c\x36\x49\x5e\x9f\x17\xf3\xf1\xe3\xe3\xcb\x24\x4d\x83\xe0\xee\xee\x0e\x12\x43\xc8\x64\x01\x61\x85\x59\x25\x14\x01\x66\x99\x5e\x2b\x86\x42\x1b\x40\x50\x3a\x27\xe0\x0a\x19\x84\x05\x94\x86\x30\x6f\x40\x28\xe0\x8a\xc0\x7a\x48\xc8\x7a\xcc\xb6\x24\xaa\x1c\x30\xcf\x2d\xd4\xeb\x37\x29\x32\x58\x52\x63\x81\x75\x9b\xa2\x68\xb3\x03\x08\x02\x36\xa8\x2c\xb6\x89\xa1\xc3\x79\x7e\x8c\x21\x65\x23\x54\x39\xec\x72\xa7\xd4\xd8\x18\x7e\xf8\x6e\xa3\x29\x35\x33\x61\x79\xa2\xd8\x34\x3f\x07\xf0\x27\x00\x00\x68\x7f\x24\xf1\x8e\xcd\x5e\x80\x17\x2a\x62\xc0\x35\x57\xe1\x45\x7d\xa2\xfd\xeb\x62\xa3\xc8\x0c\xe0\xf6\xf2\x77\x67\x3b\x41\x8b\x59\x1b\xaa\xd1\x50\xd8\xb5\xd3\x41\x7d\xd6\xc6\xe8\xcd\x77\x94\x6b\x1a\xc0\xed\xd8\xc7\x76\x5c\xdd\x63\x49\x16\xd1\x25\xae\x30\xda\x29\x13\x59\xd6\x06\x4b\x8a\xde\xda\x62\xff\xff\x8b\x1e\x3e\x85\xce\x1e\xf1\x65\xeb\x9c\x7f\x9e\x7a\x46\xdf\x90\xab\x41\xdf\x8a\x7b\x1e\x1e\xa0\x46\x25\xb2\xf0\x26\xd1\x6b\x99\x83\xd2\x0c\x9e\x36\x18\x2a\xdc\xd8\xcf\x6a\xdd\x0c\x82\xbe\x84\x28\xda\xd9\x75\xde\xeb\xe4\x82\xd1\x75\x95\xa2\xac\x35\xec\xd7\xa3\x84\x27\x6d\x26\xef\xc2\xb2\x50\xe5\x5c\xe7\xd4\x9b\xc9\xff\x0f\xa1\xc6\x86\x4c\xbc\x93\xf7\x70\x1a\x1d\x87\xbd\xdb\x60\x34\x02\x25\x24\x7c\x7c\x1c\x6c\xfe\x17\x49\x52\x25\x57\x2e\x78\x7f\x92\xdd\x5a\xa1\x53\x00\x95\x6b\xbf\x36\xfa\x97\xc8\x09\x7e\x93\xd1\xde\xfc\xee\x28\x39\xf7\x9f\x1c\xb1\x9b\x63\x29\xb7\x47\x2b\x97\xb3\xa4\xf6\xac\x1d\xb0\x3b\xc7\x3e\x96\x2e\x72\x78\x11\xe6\x79\xd8\x27\xc5\xae\x4c\xd4\x2f\x87\x50\xa1\xad\xc6\xb2\xd4\x46\x70\xb5\xf2\xd1\xa3\xad\x21\x6c\x48\x94\x15\xfb\x90\x7f\xbf\xc6\x74\x0b\x24\x2d\x9d\xd0\x3a\x33\x84\x9f\xd9\x95\x3b\xa6\xbd\x16\x74\x4e\x07\x6a\xf8\xfa\xdb\x60\x1b\xfc\x0d\x00\x00\xff\xff\x98\x53\xb2\x6e\xef\x04\x00\x00" +var _stakingcollectionCreate_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\xc1\x6e\xda\x40\x10\xbd\xfb\x2b\x5e\x73\x48\x41\x42\x4e\xce\xa8\x34\xa2\x84\x54\x51\xd2\xa4\x0a\x51\x2f\x55\x0f\x13\x7b\xb0\x57\x59\x76\xad\xd9\xa5\xc4\x6d\xf8\xf7\x6a\xbd\xc6\x81\x00\xc7\xfa\x00\xde\x5d\xcf\xbc\x37\x6f\xde\xac\x5a\x54\x56\x3c\x26\x52\x57\xde\x26\xed\xea\x4a\xdb\xd5\xcc\xd3\xb3\x32\xc5\xc4\x6a\xcd\x99\x57\xd6\x60\x2e\x76\x81\xf3\x97\xd9\xe3\xf8\xe6\xfa\xee\xeb\xe4\xfe\xf6\x76\x3a\x79\xbc\xbe\xbf\x1b\x5f\x5e\x3e\x4c\x67\xb3\x24\x39\x3b\x3b\xc3\x44\x98\x3c\x3b\x10\x16\x94\x95\xca\x30\x28\xcb\xec\xd2\x78\xcc\xad\x80\x60\x6c\xce\xf0\x25\x79\x28\x07\xd2\xc2\x94\xd7\x50\x06\xbe\x64\xb8\x08\x89\xac\xc3\x6c\x52\x92\xc9\x41\x79\xee\x50\x2d\x9f\xb4\xca\xf0\xcc\xb5\x83\xb7\x4d\x88\xe1\xd5\x06\x20\x49\xbc\x90\x71\xd4\x04\xf6\x02\xce\xf5\xe5\x10\x33\x2f\xca\x14\x83\x36\xf6\x86\x6b\x37\xc4\xcf\x58\x6d\x7a\xc3\xf5\xad\x72\x7e\x6a\xbc\xd4\xbf\xfa\xf8\x9b\x00\x40\xf3\xa3\xd9\x6f\xd8\xbc\x09\xf0\xc0\xf3\x21\x68\xe9\xcb\xde\x41\x7d\xd2\xb7\xd7\xfb\x95\x61\xe9\xe3\xf4\xf0\x77\x7b\x3b\x49\x83\x59\x09\x57\x24\xdc\x6b\xcb\x69\xa1\xbe\x58\x11\xbb\xfa\x41\x7a\xc9\x7d\x9c\x8e\xe3\xd9\x86\x6b\x78\x1c\xeb\x79\x7a\x88\x2b\x46\x1b\x65\x52\xe7\xad\x50\xc1\xe9\x53\x93\xec\xd3\xff\xa8\xe1\x73\x2f\xd8\x63\x78\xd8\x3a\xfb\x9f\xcf\x22\xa3\xef\xe4\xcb\x7e\x57\x4a\x78\x2e\x2e\x50\x91\x51\x59\xef\x64\x62\x97\x3a\x87\xb1\x1e\x91\x36\x08\xc2\x73\x16\x36\x19\x87\xf6\x13\xf6\x2d\xda\x1a\xa9\x12\xb5\x20\xa9\xb1\x74\x2c\x1f\xdd\x46\x86\x93\x7e\xd2\x41\xa9\x79\xd3\xe3\xd6\xa3\xad\xac\x18\x1d\x57\x33\xcd\x1a\x63\x7f\xdb\x09\xb8\xb2\x32\x7d\x51\xce\x2b\x53\xdc\xd9\x9c\x3b\xd3\xc5\xff\x01\x2a\xaa\x59\x86\x1b\xfc\xed\xae\xb5\x1c\xde\x5c\x89\xd1\x08\x46\x69\xbc\xbe\x6e\x6d\x7e\x48\x35\x9b\xc2\x97\xe1\xf0\xfc\x5d\x74\x63\x99\x56\x29\x32\x41\xa6\x4a\xec\x6f\x95\x33\xfe\xb0\xd8\x38\x24\x61\xe4\x82\x1e\xef\x46\xf1\x64\x57\xf2\xf5\xce\x2a\xc4\x3c\x73\x33\x93\x5b\xec\xf6\xb1\x77\xa5\x4b\x03\x5e\x4a\x79\xde\xeb\x82\x86\x21\x4d\xda\x2d\x07\x28\xc9\x95\x63\x5d\x58\x51\xbe\x5c\xc4\xd3\x9d\xad\x01\x56\xac\x8a\xd2\xc7\xa3\xf8\x7e\x8c\xe9\x1a\xac\x1d\xbf\xa3\xb5\x67\x9c\xd8\xb3\x23\x77\x51\x73\x7d\xd8\x9c\xb7\xd4\x88\xf9\xd7\xc9\x3a\xf9\x17\x00\x00\xff\xff\x6b\x55\xd8\x25\x17\x05\x00\x00" func stakingcollectionCreate_machine_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -5237,7 +5237,7 @@ func stakingcollectionCreate_machine_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/create_machine_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1b, 0x48, 0x67, 0x18, 0x1c, 0xdb, 0xb8, 0x24, 0x48, 0x1a, 0x36, 0xef, 0x79, 0xd, 0x71, 0x36, 0x5, 0x54, 0x3, 0x1d, 0xfe, 0x16, 0x9f, 0x37, 0x89, 0xa8, 0xa4, 0xe0, 0xc9, 0x22, 0xf2, 0x5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1d, 0xa4, 0x10, 0x94, 0x7e, 0xae, 0x9f, 0x3d, 0xcc, 0x8e, 0x8a, 0xab, 0xe0, 0xe5, 0xb3, 0x6c, 0x9d, 0x62, 0x4b, 0xb9, 0x28, 0xd5, 0x40, 0xe7, 0x88, 0xb5, 0x9f, 0xab, 0x54, 0x3e, 0x3f, 0x56}} return a, nil } @@ -5281,7 +5281,7 @@ func stakingcollectionDeploy_collection_contractCdc() (*asset, error) { return a, nil } -var _stakingcollectionRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6f\x9b\x40\x10\x85\xef\xfc\x8a\xa7\x1c\x22\x90\x2a\xdc\x43\xd5\x03\x6a\x1b\xb9\x76\x52\x59\x8d\xe2\xca\xa4\xbd\x6f\x97\x01\xaf\x02\x3b\x68\x76\x90\x2d\x55\xf9\xef\x15\xac\x5d\x1f\xcc\xa1\x97\xec\x01\x10\x3b\xf3\xcd\x9b\x99\xe7\xba\x9e\x45\xf1\xd0\xf2\xa1\x54\xf3\xe2\x7c\xb3\xe2\xb6\x25\xab\x8e\x3d\x6a\xe1\x0e\xef\x8f\xe5\xf3\xf2\xfb\xe6\xe9\xdb\x6a\xfb\xf8\x78\xbf\x7a\xde\x6c\x9f\x96\xeb\xf5\xee\xbe\x2c\x93\x64\xb1\x58\x60\x47\x8d\x0b\x4a\x12\x60\x50\x51\x4b\x8d\x51\x16\x38\x0f\xdd\x13\x42\x64\xc2\x5e\xa0\x42\x81\x07\xb1\x34\x25\xd7\x2c\x31\xae\x27\xeb\x6a\x47\x15\x3c\x57\xb4\x59\xc3\xf8\x6a\xba\x30\x1d\x0f\x5e\xc1\x35\x94\x5f\xc8\x07\x28\xc3\x72\xd7\x39\x4d\x12\x15\xe3\x83\x99\xa8\xa9\xab\x0a\x94\x2a\xce\x37\xef\x4e\x39\x05\x7e\x3e\xb8\xe3\xc7\x0f\x19\xfe\x24\x00\x30\x3d\x5a\xd2\xb3\xa6\x4b\x9f\x3b\xaa\x0b\x98\x41\xf7\xe9\xec\x18\xf2\xcb\xe7\xf6\xe0\x49\x32\xdc\xce\xc7\x5d\xfd\x49\xa6\x9a\xbd\x50\x6f\x84\x52\x63\x6d\xd4\x35\x95\xfa\xca\x22\x7c\xf8\x65\xda\x81\x32\xdc\x2e\xe3\xdd\x59\xeb\x78\x02\xb5\x75\x3e\xa7\x15\x9f\x71\x42\xe5\x41\x59\x4c\x43\xf9\xef\x09\xf6\xe9\x2d\x7a\xf8\x92\x8e\x2e\x28\xe6\x1d\x72\x1d\x5e\x46\x45\x3f\x8c\xee\xb3\x7f\xad\x8c\xe7\xee\x0e\xbd\xf1\xce\xa6\x37\x2b\x1e\xda\x71\xcf\x8a\x28\x1b\x42\xe3\x76\x71\xc5\xba\x89\x84\xd7\x38\x46\x3a\x92\x1d\x94\xfe\x67\x42\xb9\x9c\x3c\xb9\x3e\xfb\x31\x8d\xb6\x2a\xe0\xaa\x8b\x3f\xe2\x3b\x8b\xb0\x53\xa9\xd7\xe4\x6f\x00\x00\x00\xff\xff\xd7\x0f\xe1\x5f\x12\x03\x00\x00" +var _stakingcollectionRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6f\x9b\x4e\x10\xc5\xef\x7c\x8a\xa7\x1c\xf2\x07\xe9\x2f\xdc\x43\xd5\x03\x6a\x1b\xb9\x76\x52\x59\x8d\xe2\xca\xa4\xbd\x6f\x97\x01\xaf\x02\x3b\x68\x76\x90\x5d\x55\xf9\xee\x15\x2c\xae\x0f\xf6\xa1\x97\xee\x01\x10\x3b\xfb\xe6\xcd\xdb\x9f\xeb\x7a\x16\xc5\x43\xcb\x87\x52\xcd\x8b\xf3\xcd\x8a\xdb\x96\xac\x3a\xf6\xa8\x85\x3b\xbc\x39\x96\xcf\xcb\x2f\x9b\xa7\xcf\xab\xed\xe3\xe3\xfd\xea\x79\xb3\x7d\x5a\xae\xd7\xbb\xfb\xb2\x4c\x92\xc5\x62\x81\x1d\x35\x2e\x28\x49\x80\x41\x45\x2d\x35\x46\x59\xe0\x3c\x74\x4f\x08\x51\x13\xf6\x2c\x2a\x14\x78\x10\x4b\xd3\xe1\x9a\x25\xd6\xf5\x64\x5d\xed\xa8\x82\xe7\x8a\x36\x6b\x18\x5f\x4d\x1b\xa6\xe3\xc1\x2b\xb8\x86\xf2\x0b\xf9\x00\x65\x58\xee\x3a\xa7\x49\xa2\x62\x7c\x30\x93\x6a\xea\xaa\x02\xa5\x8a\xf3\xcd\xff\xf3\x99\x02\xdf\x1e\xdc\xf1\xdd\xdb\x0c\xbf\x12\x00\x98\x1e\x2d\xe9\xc9\xd3\x79\xce\x1d\xd5\x05\xcc\xa0\xfb\xf4\x6a\x0c\xf9\xf9\x73\x7b\xf0\x24\x19\x6e\xaf\xd7\x5d\xfc\x49\xa6\x9e\xbd\x50\x6f\x84\x52\x63\x6d\xf4\x35\xb5\xfa\xc4\x22\x7c\xf8\x6e\xda\x81\x32\xdc\x2e\xe3\xde\xc9\xeb\xb8\x02\xb5\x75\x7e\xcd\x2b\x3e\x60\x96\xca\x83\xb2\x98\x86\xf2\x1f\x93\xd8\xfb\x7f\x31\xc3\xc7\x74\xa4\xa0\xb8\x4e\xc8\x65\x79\x19\x1d\x7d\x35\xba\xcf\xfe\x8c\x32\xae\xbb\x3b\xf4\xc6\x3b\x9b\xde\xac\x78\x68\xc7\x7b\x56\x44\xdb\x30\x10\xaa\x49\xc8\x5b\x1a\xaf\xd7\xe0\x92\xc4\x19\xa7\x5e\x5c\x67\xe4\x27\x86\x40\xf2\x5f\x38\xc5\x70\x13\x3b\xbd\xc6\xb8\xe9\x48\x76\x50\xfa\x9b\x24\x73\x99\xd9\x5d\x9f\xb8\x4d\x23\x7e\x05\x5c\x75\xe6\x28\xbe\xb3\x28\x36\xb7\x7a\x4d\x7e\x07\x00\x00\xff\xff\x0e\x55\x57\xf6\x3a\x03\x00\x00" func stakingcollectionRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -5297,7 +5297,7 @@ func stakingcollectionRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdd, 0x26, 0xfa, 0x3b, 0xcb, 0x67, 0x49, 0xc5, 0x6f, 0x3d, 0xd5, 0xcc, 0x0, 0x6b, 0x6d, 0x28, 0x7d, 0xae, 0xd0, 0xb, 0xae, 0xb4, 0x68, 0x6d, 0xc7, 0x2a, 0xd7, 0xad, 0xb1, 0xfb, 0x14, 0x11}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x29, 0x23, 0xd5, 0xe3, 0xf4, 0x90, 0xb5, 0x30, 0xcd, 0xcf, 0x93, 0x28, 0x44, 0x60, 0x35, 0x9b, 0x9d, 0xdc, 0x62, 0xfe, 0x4f, 0x6a, 0xcf, 0x2a, 0x4b, 0xd3, 0x3d, 0x2, 0xd3, 0x94, 0x99, 0x4f}} return a, nil } @@ -5341,7 +5341,7 @@ func stakingcollectionRegister_multiple_nodesCdc() (*asset, error) { return a, nil } -var _stakingcollectionRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x4f\x4f\xdb\x4e\x10\xbd\xfb\x53\xcc\x8f\x03\x72\x24\x64\x38\xfc\x54\x55\x56\x53\x94\x06\xa8\x50\x10\x54\x04\x7a\xa9\x7a\x58\xec\xb1\xbd\xca\x7a\xc7\x1a\x4f\x1a\xdc\xc2\x77\xaf\xd6\xeb\xfc\x31\x71\xda\x53\x73\x88\x77\x77\x66\xde\xbc\x9d\xf7\x6c\x5d\x56\xc4\x02\x53\x6e\x2a\xa1\xa0\xdb\x5d\x19\x5a\xcd\x45\x2d\xb4\xcd\xa7\x64\x0c\x26\xa2\xc9\x42\xc6\x54\xc2\xd9\xf3\xfc\x61\x32\xbb\xbe\xfd\x3c\xbd\xbb\xb9\xb9\x9c\x3e\x5c\xdf\xdd\x4e\x2e\x2e\xee\x2f\xe7\xf3\x20\x38\x3d\x3d\x85\x7b\xcc\x75\x2d\xc8\x35\x28\x48\xd1\x60\xae\x84\x18\xb4\x05\x29\x10\x6a\x8f\x09\xc9\x16\x94\xb1\xa6\x25\x27\xd8\x16\x67\xc4\x3e\xaf\xc2\x44\x67\x1a\x53\xb0\x94\x22\x68\x9b\x11\x97\xaa\xcd\x57\x36\x6d\x53\x54\x49\x4b\x2b\x40\x19\x08\x2d\xd0\xd6\x20\x04\x09\x95\xa5\x96\x20\x10\x56\xb6\x56\x2d\x7e\xa8\xd3\x18\xe6\xc2\xda\xe6\x27\x01\xec\xfc\x98\x0c\xc6\xf0\x78\x6d\xe5\x7d\x3f\x60\x51\x56\xc4\x8e\xe6\x24\x4d\x19\xeb\x7a\xb8\x7e\x9b\x36\xc3\x66\x38\xa5\xbb\xed\xc1\xb8\xbf\x42\x0c\x8f\x57\xfa\xf9\xdd\xff\xfd\x58\xb5\x7c\x32\x3a\x99\x61\x53\xc7\xf0\xcd\x8b\x13\xcd\xb0\xb9\xd1\xb5\x5c\x5a\xe1\xe6\xfb\xf9\x08\x7e\x05\x6d\x89\x41\x59\xb7\xda\x8a\x75\x8f\x59\x0c\x6a\x29\x45\x38\xa8\x65\xb4\x5d\xde\xad\x2c\xf2\x08\x8e\x87\xf3\xf6\x4e\x7c\xcf\x8a\xb1\x52\x8c\xa1\x4a\x12\x7f\x87\xb6\xd5\x27\x62\xa6\xd5\x57\x65\x96\x38\x82\xe3\x89\x8f\x39\x9e\x9b\x89\xa0\xc9\xa2\x21\xae\x30\x86\x0e\x2a\xaa\x85\x58\xe5\x18\x3d\xb5\x60\x1f\xfe\xc5\x1d\x3e\x86\xce\xca\xf1\xb0\xcd\xf7\xd3\xe7\x9e\xd1\x17\x25\xc5\xa8\x27\xd2\xf9\x39\x54\xca\xea\x24\x3c\x9a\xd2\xd2\x38\xb3\x0a\x78\xda\xc0\xe8\x8c\x09\x7b\x58\x47\xa3\x60\x03\xa1\xb3\x56\xbb\x52\x25\x85\xb6\xd8\x8d\x0b\xc6\x87\xa7\x14\x71\xf7\x72\xdd\x52\x8a\x61\x8f\x8a\xb3\xb9\x4e\x87\x2c\xee\xfe\xff\xea\xf0\xbd\xa3\x3f\x9a\xbd\xb7\x3d\xec\xf9\xed\x7a\xd8\xf7\xfe\xf9\xc6\xf7\xaa\x41\x8e\xd7\x66\xd8\x84\x76\x4d\xd4\x8d\x6e\xfb\x86\xc0\x78\x0c\x56\x1b\x78\x79\xd9\x39\xfc\x2f\x32\x68\x73\x29\x5c\xf0\xec\x4d\xb5\x6f\xe4\x85\x53\xd6\xa9\x56\x31\xfd\xd0\x29\xc2\x4f\x64\x82\x85\xc3\x5c\x7f\x8a\x3a\x75\xd6\x8c\x8e\xfa\x0e\x78\xed\xed\x5c\xcd\x02\x1b\xf7\xb5\xdb\x21\x32\xd0\xbc\x2f\x79\xe4\x1a\x46\x2a\x4d\xc3\x4d\x55\xec\x70\xa2\xcd\xf6\x04\x0a\x55\x17\x13\x93\x13\x6b\x29\x4a\x1f\xed\x1d\x9d\xc0\x0a\x75\x5e\x88\x0f\xf9\xf5\x21\xaa\x7e\xf5\x1a\xbc\x06\xbf\x03\x00\x00\xff\xff\xc4\x66\xa5\xbb\xfd\x05\x00\x00" +var _stakingcollectionRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x4d\x6f\xd3\x40\x10\xbd\xfb\x57\x0c\x3d\x14\x47\xaa\xdc\x1e\x10\x42\x16\xa1\x0a\x69\x8b\xaa\x54\x2d\x6a\x5a\x2e\x88\xc3\xd6\x1e\xdb\xab\xac\x77\xac\xd9\x35\xa9\xa1\xf9\xef\x68\xbd\xce\x87\x1b\x07\x4e\xe4\x90\xec\xee\x7c\xbd\x99\x37\x2f\xb2\xac\x88\x2d\x4c\xb9\xa9\x2c\x05\xdd\xed\x4a\xd1\x72\x6e\xc5\x42\xea\x7c\x4a\x4a\x61\x62\x25\x69\xc8\x98\x4a\x38\x7b\x9e\x3f\x4c\x66\xd7\xb7\x5f\xa6\x77\x37\x37\x97\xd3\x87\xeb\xbb\xdb\xc9\xc5\xc5\xfd\xe5\x7c\x1e\x04\xa7\xa7\xa7\x70\x8f\xb9\x34\x16\xd9\x80\x80\x14\x15\xe6\xc2\x12\x83\xd4\x60\x0b\x04\xe3\x73\x42\xb2\x4d\xca\x68\xa8\xe6\x04\xdb\xe0\x8c\xd8\xfb\x55\x98\xc8\x4c\x62\x0a\x9a\x52\x04\xa9\x33\xe2\x52\xb4\xfe\x42\xa7\xad\x8b\x28\xa9\xd6\x16\x28\x03\x4b\x0b\xd4\x06\x2c\x41\x42\x65\x29\x6d\x10\x58\x16\xda\x88\x36\x7f\x28\xd3\x18\xe6\x96\xa5\xce\x4f\x02\xd8\xf9\x30\x29\x8c\xe1\xf1\x5a\xdb\x0f\x7d\x83\x46\xbb\x24\x76\x30\x27\x69\xca\x68\xcc\x70\xfc\xd6\x6d\x86\xcd\xb0\x4b\xd7\xed\x41\xbb\x6f\x21\x86\xc7\x2b\xf9\xfc\xfe\x5d\xdf\x56\xd5\x4f\x4a\x26\x33\x6c\x4c\x0c\xdf\x3d\x39\xd1\x0c\x9b\x1b\x69\xec\xa5\xb6\xdc\xfc\x38\x1f\xc1\xef\xa0\x0d\x51\x68\xd7\xa5\xb6\x64\xdd\x63\x16\x83\xa8\x6d\x11\x0e\x72\x19\x6d\x8f\x77\x4b\x8d\x3c\x82\xe3\x61\xbf\xbd\x17\x5f\xb3\x62\xac\x04\x63\x28\x92\xc4\xf7\xd0\x96\xfa\x4c\xcc\xb4\xfc\x26\x54\x8d\x23\x38\x9e\x78\x9b\xc3\xb9\x99\x08\xaa\x2c\x1a\xc2\x0a\x63\xe8\x52\x45\xc6\x12\x8b\x1c\xa3\xa7\x36\xd9\xc7\xff\xd1\xc3\xa7\xd0\xad\x72\x3c\xbc\xe6\xfb\xee\x73\x8f\xe8\xab\xb0\xc5\xa8\x47\xd2\xf9\x39\x54\x42\xcb\x24\x3c\x9a\x52\xad\xdc\xb2\x5a\xf0\xb0\x41\x00\x63\x86\x8c\x3a\x41\xb7\x99\x02\xf6\xe5\xd4\x69\xa2\x62\x59\x0a\x6e\xa0\x36\xc8\x6f\xcd\x7a\x0c\x47\xa3\x60\x53\x4a\x66\x2d\xc7\xa5\x48\x0a\xa9\xb1\x1b\x2b\x8c\x0f\x4f\x33\xe2\x4e\x84\xb7\x94\x62\xd8\x83\xec\xe4\x20\xd3\x21\x29\xb8\xef\x7f\x2a\x61\xef\xe9\xaf\xa2\xe8\x5d\x0f\x6b\x63\x7b\x1e\xd6\x87\xff\x7d\xa5\x0f\xd1\x20\xc7\xeb\x69\x6d\x4c\xbb\xcb\xd6\x8d\x6e\xab\x24\x18\x8f\x41\x4b\x05\x2f\x2f\x3b\x8f\x6f\x22\x85\x3a\xb7\x85\x33\x9e\xbd\x8a\xf6\x85\x3c\xc1\x42\x3b\x76\x2b\xa6\x9f\x32\x45\xf8\x85\x4c\xb0\x70\x39\xd7\x7f\x59\x1d\x3b\x3b\xfc\xed\x66\x59\xf5\x6e\x2e\x66\x81\x8d\xdb\x80\x1d\x20\x03\xc5\xfb\x94\x47\xae\x60\x24\xd2\x34\xdc\x44\xc5\x2e\x4f\xb4\xb9\x9e\x40\x21\x4c\x31\x51\x39\xb1\xb4\x45\xe9\xad\xbd\xa7\x13\x58\xa2\xcc\x0b\xeb\x4d\xfe\x7c\x08\xaa\x3f\xad\x82\x55\xf0\x27\x00\x00\xff\xff\x25\xe0\x8e\x84\x25\x06\x00\x00" func stakingcollectionRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5357,11 +5357,11 @@ func stakingcollectionRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x60, 0x99, 0xe, 0x98, 0xd6, 0x6e, 0xe4, 0xe3, 0xc3, 0x58, 0xd7, 0x65, 0x1c, 0xe2, 0xe2, 0x97, 0xc3, 0xf4, 0x32, 0x95, 0x34, 0xb3, 0xc7, 0xcc, 0xf0, 0x9f, 0xb5, 0xe1, 0x69, 0x2b, 0x26, 0x4f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0x7f, 0x24, 0x5b, 0x90, 0xb0, 0x58, 0x23, 0x9, 0x9f, 0x2e, 0x8c, 0xe3, 0x8b, 0x25, 0x9b, 0xc3, 0x4c, 0x7f, 0x60, 0xb9, 0xd8, 0x9b, 0x28, 0xb5, 0x4, 0xa2, 0x1, 0x5c, 0x75, 0x90, 0x99}} return a, nil } -var _stakingcollectionRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\x4f\x6f\xaa\x40\x10\xbf\xf3\x29\x26\x1e\x0c\x24\x06\x5f\xde\x7b\xe9\x81\xb4\x35\x16\xb5\x21\x35\xda\x88\xf6\xbe\xc5\x01\x37\x5d\x77\xe9\x30\x44\x93\xc6\xef\xde\xc0\x8a\x34\x95\x43\x2f\xdd\x03\xcb\x2e\x33\xbf\x3f\xc3\x4f\xee\x73\x43\x0c\x33\x65\x0e\x31\x8b\x37\xa9\xb3\xd0\x28\x85\x09\x4b\xa3\x21\x25\xb3\x87\x3f\xc7\x78\x3d\x7e\x8a\x16\x8f\xe1\x72\x3e\x9f\x86\xeb\x68\xb9\x18\x4f\x26\xab\x69\x1c\x3b\xce\x70\x38\x84\x15\xbe\x97\x58\x70\x01\xa5\x2e\x2c\x02\xa4\x86\x80\x77\x08\x45\x8e\x89\x4c\x25\x6e\x41\x9b\x2d\x82\x21\xd8\xa2\xc2\x4c\xb0\x21\x90\xda\x96\x9c\x5b\x92\x0b\xab\xe3\x30\x09\x5d\x88\xfa\xe0\x56\x8d\xd1\x24\x80\x98\x49\xea\x6c\xd0\x02\x54\x97\x9b\x48\xf3\xbf\xbf\xa3\x01\x88\xbd\x29\x35\x07\xb0\x99\xc9\xe3\xcd\x7f\x0f\x3e\x1c\x00\x80\xfa\xa1\x90\x1b\x92\xd6\xd9\x0a\xd3\x00\x44\xc9\x3b\xb7\xd3\xb8\xdf\xbe\x2e\x0f\x1a\xc9\x83\x7e\x77\xdd\xd5\x8d\x53\x73\xe6\x84\xb9\x20\x74\x45\x92\x58\x5d\x35\xd5\x83\x21\x32\x87\x17\xa1\x4a\xf4\xa0\x3f\xb6\xdf\x1a\xad\xd5\x2a\x50\xa5\x7e\x97\x56\xb8\x83\x33\x94\x5f\xb0\x21\x91\xa1\xff\x5a\x83\xdd\xfe\x86\x87\x7b\xb7\xfa\xef\x41\x77\x26\xae\xcb\x63\xab\xe8\x59\xf0\xce\xbb\x58\xa9\xd6\x68\x04\xb9\xd0\x32\x71\x7b\xa1\x29\x55\x95\x01\x06\x2b\x1b\x08\x53\x60\x03\x57\x58\x3d\x8b\x70\xb2\x63\xc4\x23\x26\x25\xe3\x4f\x26\xe4\x93\x4d\xe1\xa6\xc9\xe0\x25\x38\x76\xff\x16\x9c\x2f\x87\x36\x3c\x76\x6f\x14\x9c\x9c\xcf\x00\x00\x00\xff\xff\xe8\x26\xc6\x6a\x1b\x03\x00\x00" +var _stakingcollectionRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x8f\xd3\x30\x10\x85\xef\xf9\x15\x4f\x7b\x58\x52\x69\x95\x22\x40\x1c\x2a\xa0\x2a\xed\x2e\xaa\x58\x6d\x51\xb3\xe5\x6e\xdc\x49\x6b\xe1\xda\x61\x3c\x56\x8b\x50\xff\x3b\x4a\xdc\xb4\x88\xe6\xc0\x05\x1f\xe2\xd8\x99\x99\xf7\x66\xf2\x99\x5d\xed\x59\xf0\x60\xfd\xbe\x14\xf5\xdd\xb8\xcd\xd4\x5b\x4b\x5a\x8c\x77\xa8\xd8\xef\xf0\xf2\x50\x3e\x4f\x3e\xcf\x9f\x3e\x4d\x17\x8f\x8f\xf7\xd3\xe7\xf9\xe2\x69\x32\x9b\x2d\xef\xcb\x32\xcb\x86\xc3\x21\x96\xf4\x23\x52\x90\x80\xe8\x42\xaa\x80\xca\x33\x64\x4b\x08\x35\x69\x53\x19\x5a\xc3\xf9\x35\xc1\x33\xd6\x64\x69\xa3\xc4\x33\x8c\x4b\x21\xa7\x14\x7d\x56\xcd\x32\x61\xe5\x82\x6a\x0f\x79\x93\x38\x9f\x8d\x50\x0a\x1b\xb7\xb9\xbb\x14\x68\x2e\x57\x73\x27\xaf\x5f\x8d\xef\xa0\x76\x3e\x3a\x19\x61\xf5\x60\x0e\x6f\xdf\x0c\xf0\x2b\x03\x80\xf6\x61\x49\x3a\x91\x4b\x67\x4b\xaa\x46\x50\x51\xb6\x79\x6f\xe3\xc5\xe5\x75\xb1\x77\xc4\x03\xdc\xf6\xc7\x5d\xdd\x64\xad\x66\xcd\x54\x2b\xa6\x5c\x69\x9d\x7c\xb5\x52\x1f\x3d\xb3\xdf\x7f\x55\x36\xd2\x00\xb7\x93\xf4\xad\xf3\xda\xac\x40\xb6\x2a\xfa\xbc\xe2\x3d\x4e\xa5\x8a\x20\x9e\xd5\x86\x8a\x6f\x6d\xb1\x77\xff\xa3\x87\x0f\x79\xf3\xdf\x47\xfd\x4c\x5c\x87\x97\xc9\xd1\x17\x25\xdb\xc1\xb9\x95\x66\x8d\xc7\xa8\x95\x33\x3a\xbf\x99\xfa\x68\x1b\x06\x04\xc9\x36\x14\x98\x2a\x62\x72\x9a\x20\x1e\x0a\xd7\xec\x9d\xf8\xa8\xd9\xec\x14\xff\x44\x0c\xc4\x2f\x42\x37\x86\x9b\xa4\x74\x4c\xe3\xa6\x03\xe9\x28\xf4\x2f\x93\x2c\x38\xd1\xba\xea\x58\x3d\x03\x96\xf6\xbf\x00\xfb\xe3\x70\x81\x2c\xed\x9d\x83\x63\xf6\x3b\x00\x00\xff\xff\xcc\x83\x9c\x97\x43\x03\x00\x00" func stakingcollectionRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -5377,7 +5377,7 @@ func stakingcollectionRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8c, 0x3b, 0x83, 0x21, 0xc3, 0xf, 0xe9, 0xd0, 0x8b, 0x36, 0x43, 0xf5, 0x52, 0xb, 0x3f, 0xd7, 0x70, 0x34, 0xf8, 0xb, 0x19, 0x64, 0xca, 0x49, 0xb9, 0xdb, 0xbd, 0xd9, 0x7b, 0x86, 0xb, 0xc3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5f, 0xa6, 0x49, 0xb3, 0x37, 0xb3, 0xec, 0xcb, 0x4, 0xc5, 0x2e, 0x27, 0x94, 0xe9, 0xb, 0x5b, 0xf2, 0xaf, 0xb6, 0xd7, 0x0, 0x78, 0x3d, 0x36, 0x37, 0x2b, 0x55, 0x62, 0x3a, 0x27, 0x55, 0x43}} return a, nil } @@ -5621,7 +5621,7 @@ func stakingcollectionSetup_staking_collectionCdc() (*asset, error) { return a, nil } -var _stakingcollectionStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x8f\xda\x30\x10\x85\xef\xf9\x15\x4f\x7b\x58\x05\x09\x41\xd5\x56\x3d\xa0\xb6\x88\x86\xdd\x0a\x75\x05\xd5\x86\xed\xdd\x9b\x4c\xc0\xc2\xf1\x44\xf6\xa4\xa1\xaa\xf6\xbf\x57\xb1\x0b\xac\x80\x43\x2f\xf5\x21\x4e\x9c\xc9\x7b\xdf\x4c\x9e\xae\x1b\x76\x82\x7b\xc3\x5d\x2e\x6a\xa7\xed\x26\x63\x63\xa8\x10\xcd\x16\x95\xe3\x1a\x6f\xf6\xf9\x7a\xf6\x6d\xb1\xfc\x9a\xad\x1e\x1e\xee\xb2\xf5\x62\xb5\x9c\xcd\xe7\x8f\x77\x79\x9e\x24\xe3\xf1\x18\x19\xd7\xb5\x16\x0f\x4b\x1d\x84\x77\x64\x3d\x84\xe1\x45\xed\x08\x15\x3b\xc8\x96\xe0\x1b\x2a\x74\xa5\xa9\x84\xe5\x92\xc0\x0e\x25\x19\xda\x28\x61\x07\x6d\x63\x49\x74\x47\x71\xb4\x0f\xea\xeb\x2d\x1d\x54\x03\x4d\x5f\x6a\xb8\xd8\x51\x89\x9f\xaa\x35\x02\xe5\x08\xad\xa7\x12\x95\x76\x5e\x86\xd0\x15\xb4\x80\xf6\xda\x8b\x0f\x0a\x15\x1b\xc3\x1d\x95\x78\xfe\x15\xbe\x3e\x57\x6b\xed\x6b\xbd\x24\x11\xa7\xac\x57\x81\x20\xed\x69\x17\xf3\x09\x72\x71\xda\x6e\x86\x27\xea\xfe\xf0\x69\x61\xe5\xdd\xdb\xe9\x10\xaa\xe6\xd6\xca\x04\x4f\xf7\x7a\xff\xe1\xfd\x00\xbf\x13\x00\x08\x17\x43\x72\xe8\xec\x34\xd7\x47\xaa\x26\x50\xad\x6c\xd3\xab\x63\x1f\x9d\x6e\x57\x9d\x25\x37\xc0\xed\xf5\xba\x8b\x93\x24\x78\x36\x8e\x1a\xe5\x28\x55\x45\x11\xb9\x82\xd5\x17\x76\x8e\xbb\x1f\xca\xb4\x34\xc0\xed\x2c\xbe\x3b\xb0\xf6\xcb\x93\xa9\x46\xd7\x58\xf1\x09\x7f\xa5\x46\x5e\xd8\xa9\x0d\x8d\x9e\x83\xd8\xc7\xff\xd1\xc3\xe7\xb4\xff\x33\x93\xeb\x89\xbc\x2c\xcf\x23\xd1\x77\x25\xdb\xc1\xb1\x95\x7e\x4d\xa7\x68\x94\xd5\x45\x7a\x93\x71\x6b\xfa\xe0\x09\x22\x36\x1c\x55\x7d\x44\x2f\xb4\x6e\xa2\xc2\x4b\x1c\x23\xed\xa9\x68\x85\xfe\x65\x42\xe1\x90\x96\xd4\xad\x43\xb6\x8e\xb1\x89\xfb\x59\x6c\x5e\x3d\x9c\xa2\x13\xf7\x83\xff\x4b\xf2\x27\x00\x00\xff\xff\x52\x0e\xe2\xe3\x97\x03\x00\x00" +var _stakingcollectionStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6f\xda\x4e\x10\xc5\xef\xfe\x14\x4f\x39\xe4\x0f\x12\x82\xbf\xda\xaa\x07\xd4\x16\x51\x48\x2a\xd4\x08\xaa\x98\xf4\xbe\xb1\xc7\xb0\x62\xbd\x63\xcd\x8e\x6b\xa2\x2a\xdf\xbd\xf2\x3a\x40\x14\x38\xf4\xd2\x3d\x78\xed\xf5\xf8\xbd\x37\xe3\x9f\x2d\x2b\x16\xc5\xad\xe3\x26\x55\xb3\xb3\x7e\x33\x63\xe7\x28\x53\xcb\x1e\x85\x70\x89\xff\xf7\xe9\x7a\xfa\x7d\xb1\xfc\x36\x5b\xdd\xdd\xdd\xcc\xd6\x8b\xd5\x72\x3a\x9f\xdf\xdf\xa4\x69\x92\x8c\x46\x23\xcc\xb8\x2c\xad\x06\x78\x6a\xa0\xbc\x23\x1f\xa0\x8c\xa0\x66\x47\x28\x58\xa0\x5b\x42\xa8\x28\xb3\x85\xa5\x1c\x9e\x73\x02\x0b\x72\x72\xb4\x31\xca\x02\xeb\xbb\x92\xce\x1d\xd9\xd1\x3e\xaa\xaf\xb7\x74\x50\x8d\x69\xda\x52\xc7\xd9\x8e\x72\xfc\x32\xb5\x53\x18\x21\xd4\x81\x72\x14\x56\x82\x0e\x60\x0b\x58\x05\xed\x6d\xd0\x10\x15\x0a\x76\x8e\x1b\xca\xf1\xf8\x14\xbf\x7e\xab\x56\xfb\xd7\x7a\x49\xa2\x62\x7c\x30\x31\x41\xaf\x4d\xbb\x98\x8f\x91\xaa\x58\xbf\x19\x9c\x52\xb7\x87\x0f\x0b\xaf\xef\xdf\x4d\x06\x30\x25\xd7\x5e\xc7\x78\xb8\xb5\xfb\x8f\x1f\xfa\xf8\x9d\x00\x40\xbc\x38\xd2\x43\x67\xa7\xb9\xde\x53\x31\x86\xa9\x75\xdb\xbb\x38\xf6\xe1\xe9\x76\xd5\x78\x92\x3e\xae\x2f\xd7\x9d\x9d\x24\xd1\xb3\x12\xaa\x8c\x50\xcf\x64\x59\x97\x2b\x5a\x7d\x65\x11\x6e\x7e\x1a\x57\x53\x1f\xd7\xd3\xee\xdd\x21\x6b\xbb\x02\xb9\x62\x78\x29\x2b\x3e\xe3\x45\x6a\x18\x94\xc5\x6c\x68\xf8\x18\xc5\x3e\xfd\x8b\x1e\xbe\xf4\xda\x3f\x33\xbe\x4c\xe4\x79\x79\xda\x25\xfa\x61\x74\xdb\x3f\xb6\xd2\xae\xc9\x04\x95\xf1\x36\xeb\x5d\xcd\xb8\x76\x2d\x78\x8a\x2e\x36\x0c\x84\x0a\x12\xf2\x59\x4b\x03\x0c\xce\xc9\x7f\x81\xb2\x12\x5b\x1a\x79\x6a\x01\x93\xff\xc2\x61\x0c\x57\x9d\xd3\x73\x37\x6e\xda\x53\x56\x2b\xfd\xcd\x24\xe3\x21\x2d\xa9\x59\x47\x06\x8f\x78\x75\xfb\x1b\xbc\x5e\x3d\x9c\x10\xeb\xf6\x83\xff\x73\xf2\x27\x00\x00\xff\xff\x66\xba\x2a\xf3\xbf\x03\x00\x00" func stakingcollectionStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5637,11 +5637,11 @@ func stakingcollectionStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x49, 0x73, 0x12, 0xbb, 0x22, 0xc5, 0xa3, 0xfb, 0xfe, 0xd0, 0xca, 0x7a, 0x7b, 0x76, 0xfe, 0xb6, 0x51, 0x59, 0x97, 0x32, 0x9d, 0xd5, 0xff, 0xd5, 0xe, 0xf2, 0x4d, 0xb2, 0x8c, 0x6b, 0x57, 0x64}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0x11, 0x5b, 0x73, 0xf2, 0xa5, 0xfe, 0x4c, 0x26, 0x50, 0x4, 0xb1, 0x6b, 0xca, 0xf2, 0x4, 0xd0, 0x28, 0x76, 0x7f, 0xdc, 0xcd, 0xa8, 0xdb, 0xdd, 0x20, 0x8f, 0x6d, 0xfa, 0xca, 0xe8, 0xa5}} return a, nil } -var _stakingcollectionStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x8f\x1c\x82\x0c\xc1\x2e\x6d\xe9\xc1\xb4\x35\xae\x9c\x14\xd3\x10\x17\xcb\xe9\x7d\x2b\x8d\xec\xc5\xab\x1d\x31\x1a\x21\x43\xc9\x7f\x2f\xd2\xc6\x56\xa9\x75\xe8\xa5\x7b\xd0\x6a\x46\xa3\x37\x6f\x86\xcf\x96\x15\x8b\xe2\xc1\x71\x9b\xaa\x39\x5a\xbf\x4f\xd8\x39\xca\xd4\xb2\x47\x21\x5c\xe2\xcd\x29\xdd\x2d\xbf\xad\x9f\xbe\x26\x9b\xc7\xc7\xfb\x64\xb7\xde\x3c\x2d\x57\xab\xed\x7d\x9a\x46\xd1\x6c\x36\x43\xc2\x65\x69\xb5\x86\x50\x6b\x24\xa7\x1c\xca\x47\xf2\x35\x94\x51\xab\x39\x12\x0a\x16\xe8\x81\x50\x57\x94\xd9\xc2\x52\x0e\xcf\x39\x81\x05\x39\x39\xda\x1b\x65\x81\xf5\xa1\x24\x58\x40\x76\xf1\x10\x45\x2a\xc6\xd7\xa6\x0f\xe2\xee\xc7\xf5\x6a\x8e\x54\xc5\xfa\xfd\xdd\x20\xd0\x25\x9f\xd7\x5e\xdf\xbd\x5d\xdc\xc1\x94\xdc\x78\x9d\xe3\xf9\xc1\x9e\x3e\xbc\x9f\xe0\x57\x04\x00\xfd\xc3\x91\x9e\x9b\x0c\x73\x6e\xa9\x98\xc3\x34\x7a\x88\x47\xd7\x30\x1d\x5e\x37\xad\x27\x99\xe0\x76\xbc\xee\x2a\x13\xf5\x3d\x2b\xa1\xca\x08\xc5\x26\xcb\x82\xaf\xbe\xd5\x17\x16\xe1\xf6\x87\x71\x0d\x4d\x70\xbb\x0c\xdf\xce\x5e\xbb\x53\x93\x2b\xa6\x63\x5e\xf1\x09\xaf\x52\xd3\x5a\x59\xcc\x9e\xa6\x3f\x7b\xb1\x8f\xff\x63\x86\xcf\x71\x47\xc1\x7c\x9c\x90\xeb\xf2\x34\x38\xfa\x6e\xf4\x30\xb9\x8c\xd2\x9d\xc5\x02\x95\xf1\x36\x8b\x6f\x12\x6e\x5c\xc7\x80\x22\xd8\x86\x50\xd1\xd1\x72\xa5\x75\x13\x14\x5e\xc2\x1a\xe9\x44\x59\xa3\xf4\x2f\x1b\xea\x93\xb4\x7d\x05\x72\xd7\xf3\x78\x61\x27\xdc\x7f\xb1\xf3\x47\x30\xf0\x13\xee\xb3\x89\x97\xe8\x77\x00\x00\x00\xff\xff\xdc\xc4\x11\xcd\x2c\x03\x00\x00" +var _stakingcollectionStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x8f\xd3\x40\x0c\xc5\xef\xf9\x14\x4f\x7b\x58\x52\x69\xd5\x22\x40\x1c\x2a\xa0\x2a\xe9\x2e\xaa\x58\x6d\x51\xd3\xe5\x6e\x12\xa7\x1d\x35\x19\x47\x8e\xa3\x16\xa1\xfd\xee\x28\x99\xfe\x41\xb4\x07\x2e\xcc\x21\x13\x3b\x8e\xfd\xfc\xf4\x73\x55\x2d\x6a\x78\x28\x65\x97\x1a\x6d\x9d\x5f\x27\x52\x96\x9c\x99\x13\x8f\x42\xa5\xc2\xeb\x7d\xba\x9a\x7e\x9d\x3f\x7d\x49\x16\x8f\x8f\xf7\xc9\x6a\xbe\x78\x9a\xce\x66\xcb\xfb\x34\x8d\xa2\xd1\x68\x84\x44\xaa\xca\x59\x03\xe5\x1d\x69\xce\x39\x4c\xb6\xec\x1b\x98\xa0\x31\xda\x32\x0a\x51\xd8\x86\xd1\xd4\x9c\xb9\xc2\x71\x0e\x2f\x39\x43\x14\x39\x97\xbc\x26\x13\x85\xf3\xa1\x24\x48\x40\x76\xd2\x10\x45\xa6\xe4\x1b\xea\x83\xb8\xfb\x71\x3e\x1b\x23\x35\x75\x7e\x7d\x77\x6e\xd0\x25\x9f\xe7\xde\xde\xbe\x99\xdc\x81\x2a\x69\xbd\x8d\xf1\xfc\xe0\xf6\xef\xdf\x0d\xf0\x2b\x02\x80\xfe\x51\xb2\x1d\x87\x9c\xf7\x5c\x72\x31\x06\xb5\xb6\x89\xaf\xda\x30\x3c\xbf\x2e\x76\x9e\x75\x80\xdb\xeb\x75\x17\x99\xa8\x9f\x59\x2b\xd7\xa4\x1c\x53\x96\x05\x5d\xfd\xa8\xcf\xa2\x2a\xbb\xef\x54\xb6\x3c\xc0\xed\x34\x7c\x3b\x6a\xed\x4e\xc3\x65\x31\xbc\xa6\x15\x1f\x71\x68\x35\x6c\x4c\x94\xd6\x3c\xfc\xd1\x37\xfb\xf0\x3f\x76\xf8\x14\x77\x14\x8c\xaf\x13\x72\x59\x9e\x06\x45\xdf\xc8\x36\x83\xd3\x2a\xdd\x99\x4c\x50\x93\x77\x59\x7c\x93\x48\x5b\x76\x0c\x18\x82\x6c\x10\x94\x0b\x56\xf6\x19\x77\xd4\x10\x2e\x49\x3c\xf0\x51\xab\xab\x48\x7f\xa2\x6d\x58\x5f\x35\x47\x1b\x6e\xc2\xa4\x97\x60\x37\xef\x39\x6b\x8d\xff\xc5\xc9\x3e\xc9\xcb\x03\xb8\xab\x9e\xdb\x13\x63\xe1\xfe\x8b\xb1\x3f\x82\x33\x67\xe1\x3e\x8a\x78\x89\x7e\x07\x00\x00\xff\xff\x48\x90\xd8\x9c\x54\x03\x00\x00" func stakingcollectionStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5657,11 +5657,11 @@ func stakingcollectionStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x77, 0x1b, 0xc9, 0x51, 0x7f, 0x17, 0x9, 0x53, 0x96, 0x9, 0x1d, 0x6f, 0x48, 0x5a, 0x8f, 0xcc, 0x8f, 0x4d, 0x96, 0x7a, 0xeb, 0x22, 0xa1, 0x5d, 0xe1, 0x26, 0xe8, 0x3c, 0xd, 0x55, 0xbc, 0x39}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xba, 0x1e, 0x46, 0xa7, 0xd0, 0xf1, 0x93, 0x27, 0x50, 0x80, 0xd6, 0x57, 0xfe, 0x5b, 0xf0, 0xaf, 0xef, 0x9e, 0x16, 0x5f, 0xbd, 0x55, 0x28, 0xbe, 0x53, 0x12, 0xd1, 0x8d, 0x28, 0x51, 0xe9, 0x30}} return a, nil } -var _stakingcollectionStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x8f\x1c\x82\x0c\xc1\x2e\x6d\xe9\x41\xb4\x35\xae\x9c\x14\xd1\x10\x97\xc8\xee\x7d\x2b\x8d\xe4\xc5\xab\x1d\xb1\x1a\x61\x43\xc9\x7f\x2f\xda\x8d\xad\x52\xeb\xd0\x4b\xf7\xa0\xd5\x8c\x46\x6f\xde\x0c\x9f\x6e\x5a\x76\x82\x07\xc3\xc7\x5c\xd4\x41\xdb\x3a\x65\x63\xa8\x10\xcd\x16\x95\xe3\x06\x6f\x4e\xf9\x76\xf5\x2d\x7b\xfa\x9a\x6e\x1e\x1f\xef\xd3\x6d\xb6\x79\x5a\xad\xd7\xcf\xf7\x79\x1e\x45\x8b\xc5\x02\x29\x37\x8d\x96\x0e\xbd\xed\x44\x1d\xa8\x84\xf0\x81\x6c\x07\x61\xf8\x04\x2a\x76\x90\x3d\xa1\x6b\xa9\xd0\x95\xa6\x12\x96\x4b\x02\x3b\x94\x64\xa8\x56\xc2\x0e\xda\x86\x92\x60\x01\xc5\xc5\x43\x14\x89\x53\xb6\x53\x3e\x88\x87\x1f\xb3\x75\x82\x5c\x9c\xb6\xf5\xdd\x28\x30\x24\x77\x99\x95\x77\x6f\x97\x77\x50\x0d\xf7\x56\x12\xec\x1e\xf4\xe9\xc3\xfb\x19\x7e\x45\x00\xe0\x1f\x86\xe4\xdc\x64\x9c\xf3\x99\xaa\x04\xaa\x97\x7d\x3c\xb9\x86\xf9\xf8\xba\x39\x5a\x72\x33\xdc\x4e\xd7\x5d\x65\x22\xdf\xb3\x75\xd4\x2a\x47\xb1\x2a\x8a\xe0\xcb\xb7\xfa\xc2\xce\xf1\xf1\x87\x32\x3d\xcd\x70\xbb\x0a\xdf\xce\x5e\x87\xd3\x91\xa9\xe6\x53\x5e\xf1\x09\xaf\x52\xf3\x4e\xd8\xa9\x9a\xe6\x3f\xbd\xd8\xc7\xff\x31\xc3\xe7\x78\xa0\x20\x99\x26\xe4\xba\x3c\x0f\x8e\xbe\x2b\xd9\xcf\x2e\xa3\x0c\x67\xb9\x44\xab\xac\x2e\xe2\x9b\x94\x7b\x33\x30\x20\x08\xb6\xe1\xa8\x1a\x68\xb9\xd2\xba\x09\x0a\x2f\x61\x8d\x74\xa2\xa2\x17\xfa\x97\x0d\xf9\x24\xed\x5e\x81\xdc\x7a\x1e\x2f\xec\x84\xfb\x2f\x76\xfe\x08\x46\x7e\xc2\x7d\x36\xf1\x12\xfd\x0e\x00\x00\xff\xff\x00\x16\xf4\x72\x2c\x03\x00\x00" +var _stakingcollectionStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x8f\xd3\x40\x0c\xc5\xef\xf9\x14\x4f\x7b\x58\x52\x69\xd5\x22\x40\x1c\x2a\xa0\x2a\xe9\x2e\xaa\x58\x6d\xd1\xa6\xe5\x3e\xa4\x4e\x3b\x6a\x32\x8e\x3c\x8e\x5a\x84\xf6\xbb\xa3\xcc\xf4\x0f\xa2\x39\x70\x61\x0e\x99\xd8\x71\xec\xe7\xa7\x9f\xad\x1b\x16\xc5\x43\xc5\xfb\x5c\xcd\xce\xba\x4d\xc6\x55\x45\x85\x5a\x76\x28\x85\x6b\xbc\x3e\xe4\xcb\xe9\xd7\xf9\xd3\x97\x6c\xf1\xf8\x78\x9f\x2d\xe7\x8b\xa7\xe9\x6c\xf6\x7c\x9f\xe7\x49\x32\x1a\x8d\x90\x71\x5d\x5b\xf5\x68\x9d\x57\xb3\xa3\x35\x94\x77\xe4\x3c\x94\x11\x12\x28\x59\xa0\x5b\x82\x6f\xa8\xb0\xa5\xa5\x35\x1c\xaf\x09\x2c\x58\x53\x45\x1b\xa3\x2c\xb0\x2e\x96\x44\x09\x28\xce\x1a\x92\x44\xc5\x38\x6f\x42\x90\x76\x3f\xce\x67\x63\xe4\x2a\xd6\x6d\xee\x2e\x0d\xba\xe4\x6a\xee\xf4\xed\x9b\xc9\x1d\x4c\xcd\xad\xd3\x31\x56\x0f\xf6\xf0\xfe\xdd\x00\xbf\x12\x00\x08\x8f\x8a\xf4\x34\xe4\xb2\xe7\x33\x95\x63\x98\x56\xb7\x69\xaf\x0d\xc3\xcb\xeb\x62\xef\x48\x06\xb8\xed\xaf\xbb\xca\x24\x61\x66\x23\xd4\x18\xa1\xd4\x14\x45\xd4\x15\x46\x7d\x66\x11\xde\x7f\x37\x55\x4b\x03\xdc\x4e\xe3\xb7\x93\xd6\xee\x78\xaa\xca\x61\x9f\x56\x7c\xc4\xb1\xd5\xd0\x2b\x8b\xd9\xd0\xf0\x47\x68\xf6\xe1\x7f\xec\xf0\x29\xed\x28\x18\xf7\x13\x72\x5d\x9e\x47\x45\xdf\x8c\x6e\x07\xe7\x55\xba\x33\x99\xa0\x31\xce\x16\xe9\x4d\xc6\x6d\xd5\x31\xa0\x88\xb2\x61\x20\x54\x92\x90\x2b\xa8\xa3\xc6\xe0\x9a\xc4\x23\x1f\x8d\xd8\xda\xc8\x4f\xb4\x9e\xe4\x95\x3f\xd9\x70\x13\x27\xbd\x44\xbb\xe9\x40\x45\xab\xf4\x2f\x4e\x86\x24\xad\x8e\xe0\x2e\x03\xb7\x67\xc6\xe2\xfd\x17\x63\x7f\x04\x17\xce\xe2\x7d\x12\xf1\x92\xfc\x0e\x00\x00\xff\xff\xd3\x6f\x58\xdd\x54\x03\x00\x00" func stakingcollectionStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5677,7 +5677,7 @@ func stakingcollectionStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1d, 0xf8, 0xe5, 0x90, 0xc6, 0x1e, 0x76, 0xdb, 0x7b, 0xfd, 0x8d, 0x5f, 0xb5, 0x14, 0x4b, 0xf6, 0x4c, 0x38, 0xe2, 0x59, 0x68, 0x96, 0x7b, 0x89, 0x30, 0xdd, 0x4b, 0x22, 0x37, 0x7e, 0x3c, 0x2c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa9, 0xeb, 0xc7, 0xe1, 0xaa, 0xac, 0xa4, 0xdf, 0xee, 0x1b, 0x14, 0x9f, 0x51, 0x3a, 0x43, 0xd2, 0x54, 0x7a, 0x6e, 0xef, 0x6, 0x30, 0xdb, 0xce, 0x70, 0xd1, 0x65, 0xef, 0x58, 0xb1, 0x46, 0x7d}} return a, nil } @@ -5721,7 +5721,7 @@ func stakingcollectionTestGet_tokensCdc() (*asset, error) { return a, nil } -var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x4f\x4f\xdb\x4e\x10\xbd\xe7\x53\x0c\x1c\x90\x2d\x81\xf9\xe9\xd7\x5b\x04\x45\x69\x42\x69\x54\x44\x10\xa1\xbd\x4f\xbc\xe3\x78\x5b\x67\xc7\xda\x1d\x07\x68\xc5\x77\xaf\xbc\xfe\x43\x8c\xdd\x36\x07\xea\x4b\x62\xef\xec\x9b\x37\xef\xcd\xec\xea\x4d\xce\x56\xe0\x63\xc6\x0f\x4b\xc1\xef\xda\xac\xa7\x9c\x65\x14\x8b\x66\x03\x89\xe5\x0d\xfc\xf7\xb8\xbc\x9f\x7c\x9e\xdf\x5c\x4d\x17\xd7\xd7\x97\xd3\xfb\xf9\xe2\x66\x32\x9b\xdd\x5d\x2e\x97\xa3\xd1\xe9\x29\xdc\x5b\x34\x2e\x21\xeb\x00\xe1\x86\x15\xcd\x28\xa3\x35\x0a\x5b\xe0\xd5\x37\x8a\xa5\x02\x41\x03\x58\x48\xca\x56\xff\xf0\xa1\x71\xcc\x5c\x18\x29\x01\xd0\x28\x40\xa5\x1c\x48\x4a\xaf\x10\x84\x01\x0d\x4b\x4a\xd6\xef\x28\x8c\x38\xa8\x59\xc2\x0b\xcd\x12\x44\x2b\x32\xa2\x13\x4d\x0a\x56\x4f\x1e\x49\x18\x26\x4a\x59\x72\x2e\x1a\x8d\xa4\x24\x89\x3e\x3a\x30\xac\x68\x3e\x1b\xc3\x52\xac\x36\xeb\x63\x50\x4d\xba\xf2\xe3\x97\xb9\x91\x77\xff\x1f\x83\xf0\xb8\xd9\x1e\xc2\xcf\x11\x00\x40\x46\x55\x2d\x3d\x99\xee\x28\x19\xfb\xea\x82\x41\x15\xa3\x97\xbf\x8b\x07\x43\x36\x84\xa3\xe1\xb8\xde\x97\x36\xad\x70\x6f\x6d\x8a\xf9\x78\x7f\x20\x8f\x94\x5b\xca\xd1\x52\x50\x4b\x59\x73\xfe\xc0\xd6\xf2\xc3\x57\xcc\x0a\x0a\xe1\x68\x52\xad\x35\x35\x97\x4f\xe9\x71\x4a\x8d\x01\xa5\xae\x52\x5b\x3e\xe0\x58\xed\xb9\x30\x6c\x0a\x27\x90\xe2\x96\x00\x61\x8b\x99\x56\x03\xce\x81\x36\xc0\x56\x91\x77\xda\x52\x4c\x7a\x4b\x7d\xd0\xa8\xa5\xa2\x13\x08\x0e\x86\x6b\x56\x4c\xae\x26\xff\x09\xb7\xd4\x0b\x08\xb0\x72\x73\x0c\xc2\xe1\x6e\x79\x5e\x19\x34\x3a\x0e\x0e\x67\xe4\x44\x1b\xf4\xcc\x9a\x72\x77\xcb\x18\x28\xc0\x91\x40\x91\x47\x87\x61\x8b\xf7\x3c\xda\x55\xee\x8a\x04\x10\x2c\x25\x64\xc9\xc4\xbe\x2b\xcb\xfa\x76\x67\x61\xd8\xf6\xf2\x71\x94\x25\xd1\xef\x5a\x0e\xce\x1b\x8e\x91\x13\xb6\xb8\xa6\x68\xe5\xad\x3c\xfb\x17\xad\xf8\x3e\x28\x79\x8c\x87\xcf\x89\x7e\xf8\xb2\x62\x74\x8b\x92\x86\x1d\xa5\x2f\x2e\x1a\xb1\xa7\x5c\x64\x0a\x0c\x0b\x54\xb4\x4b\x91\x4a\x79\x7a\x58\x87\x61\x4f\xd1\x52\xc2\xdb\x62\x95\xe9\xb8\xb6\x1c\x38\xa9\x74\xdd\xab\x49\x85\x23\x68\x21\xab\xf9\x6a\x70\xce\x61\x4d\x52\xbf\x04\xc2\xdd\xd4\xd5\xa8\x00\x42\x8c\x39\xae\x74\xa6\xe5\xa9\x31\x34\xf7\x6c\x60\x43\x92\xb2\x72\x80\x5b\xd4\x19\xae\x32\x02\x36\x7e\xbd\x6e\xee\x21\xbb\xa3\xae\xdf\xc3\xb3\x0e\xe7\x2f\x24\xa3\x36\xbd\x26\xd7\x51\xb7\xe9\x80\xfd\x5d\xdd\x33\xb0\x12\xfb\xad\xec\xdc\x19\x13\x7a\xa4\xb8\x10\xea\x1e\x37\x77\xb4\xe1\xa1\x83\xa0\xba\x4a\xfe\x3a\x3f\x51\xc7\x5b\xd3\x41\x38\x3b\xf9\xf3\x54\x45\xd6\xe7\x6e\x37\xb4\xb7\x45\xf5\xfb\xea\xb6\xd8\x79\xe9\x76\xca\x8c\x72\x76\x5a\x86\xaf\xb4\xb7\xe8\x87\x08\x95\x6a\x41\x17\xfe\xd0\x0d\xce\x4e\xba\xc5\x1e\x34\x4a\x3f\xff\x0a\x00\x00\xff\xff\x35\x5c\x9e\x72\xe5\x07\x00\x00" +var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\xcd\x4e\xdb\x40\x10\xbe\xe7\x29\x06\x0e\xd4\x91\xc0\x54\xed\x2d\x82\xa2\x90\x50\x1a\x15\x11\x44\x68\xef\x13\xef\x38\xd9\xd6\xde\xb1\x76\xc7\x01\x5a\xf1\xee\x95\x7f\xd6\xc4\xd8\x2d\x51\xd5\xfa\x92\xd8\x1e\x7f\xfb\xfd\xcc\xec\xea\x34\x63\x2b\xf0\x31\xe1\xfb\x85\xe0\x77\x6d\x56\x13\x4e\x12\x8a\x44\xb3\x81\xd8\x72\x0a\x6f\x1f\x16\x77\xe3\xcf\xb3\xeb\xcb\xc9\xfc\xea\xea\x62\x72\x37\x9b\x5f\x8f\xa7\xd3\xdb\x8b\xc5\x62\x30\x38\x3e\x86\x3b\x8b\xc6\xc5\x64\x1d\x20\x5c\xb3\xa2\x29\x25\xb4\x42\x61\x0b\xbc\xfc\x46\x91\x54\x20\x68\x00\x73\x59\xb3\xd5\x3f\xca\xd2\x28\x62\xce\x8d\x14\x00\x68\x14\xa0\x52\x0e\x64\x4d\x2f\x10\x84\x01\x0d\xcb\x9a\x6c\xf9\x45\x6e\xc4\x41\xcd\x12\x9e\x69\x16\x20\x5a\x91\x11\x1d\x6b\x52\xb0\x7c\x2c\x91\x84\x61\xac\x94\x25\xe7\xc2\xc1\x40\x0a\x92\x58\x56\x07\x86\x15\xcd\xa6\x23\x58\x88\xd5\x66\x75\x08\xca\x2f\x57\x3c\xfc\x32\x33\xf2\xfe\xdd\x21\x08\x8f\xfc\xe7\x43\xf8\x39\x00\x00\x48\xa8\xd2\xd2\xb1\xe9\x96\xe2\x51\xa9\x2e\xe8\x75\x31\x7c\xfe\x3b\xbf\x37\x64\x87\x70\xd0\x5f\xd7\x79\xd2\x2c\x2b\xdc\x79\x37\xc1\x6c\xb4\x3b\x50\x89\x94\x59\xca\xd0\x52\x50\x5b\x59\x73\x3e\x67\x6b\xf9\xfe\x2b\x26\x39\x0d\xe1\x60\x5c\xbd\xf3\x9a\x8b\xab\xc8\x78\x4d\x3e\x80\xc2\x57\xa9\x23\xef\x49\xac\xce\x5c\x18\xd2\xdc\x09\xac\x71\x43\x80\xb0\xc1\x44\xab\x9e\xe4\x40\x1b\x60\xab\xa8\x4c\xda\x52\x44\x7a\x43\x5d\xd0\xb0\xa1\xa2\x63\x08\xf6\xfa\x35\x2b\x26\x57\x93\xff\x84\x1b\xea\x14\x04\x58\xa5\x39\x02\xe1\xe1\xb6\xbc\xd2\x19\x34\x3a\x0a\xf6\xa7\xe4\x44\x1b\x2c\x99\x79\xb9\xdb\x32\x7a\x04\x38\x12\xc8\xb3\x70\x7f\xd8\xe0\x3d\x0d\xb6\x9d\xbb\x24\x01\x04\x4b\x31\x59\x32\x51\xd9\x95\x85\xbe\xed\x59\xe8\x8f\xbd\xb8\x1c\x25\x71\xf8\xbb\x96\x83\x53\xcf\x31\x74\xc2\x16\x57\x14\x2e\xcb\x28\x4f\xfe\x47\x2b\x7e\x08\x0a\x1e\xa3\xfe\x7d\xa2\x5b\xbe\xa8\x18\xdd\xa0\xac\x87\x2d\xa7\xcf\xce\xbc\xd9\x13\xce\x13\x05\x86\x05\x2a\xda\x2f\x6d\xc2\xae\x31\x45\xbb\x14\xee\x65\x56\xa7\x68\x1f\x21\x77\x64\xdf\x38\x6f\xc3\xfe\xb0\xe3\x7c\x51\x7c\x93\x2f\x13\x1d\xd5\xad\x01\x1c\x57\xfe\xef\xd4\xcc\xc2\x21\x34\x90\xd5\x1c\x7a\x9c\x53\x58\x91\xd4\x37\x81\x70\x7b\xe9\x73\x2f\x28\xc2\x0c\x97\x3a\xd1\xf2\xe8\x83\xcf\x4a\x36\x90\x92\xac\x59\x39\xc0\x0d\xea\x04\x97\x09\x01\x57\xd2\xea\x21\xe8\x6b\x8b\xb0\xdd\x17\xfd\x7b\x02\x9c\x3e\x93\x0c\x9b\xe5\x35\xb9\x56\x0a\xbe\x53\x76\x4f\x7f\xc7\xc2\xca\xec\xbf\x89\x1d\xd3\x57\x63\xf7\xde\xb4\x22\xdf\x1a\x39\x7a\xa0\x28\x17\x6a\x6f\x5d\xb7\x94\x72\xdf\xa6\x52\x1d\x4b\xaf\xce\x62\xd8\xca\xdf\xb4\x10\x4e\x8e\xfe\x3c\xa1\xa1\x2d\xd7\x6e\x3e\x68\x4e\x9e\xea\xf7\xc5\xc9\xb3\x75\xd3\xee\xa6\x29\x65\xec\xb4\xf4\x1f\x8f\xff\xa2\x67\x42\x54\xaa\x01\x9d\x97\x1b\x78\x70\x72\xd4\x16\xbb\xe7\x9d\x7e\xfa\x15\x00\x00\xff\xff\x83\x0e\x4b\x39\x31\x08\x00\x00" func stakingcollectionTransfer_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -5737,11 +5737,11 @@ func stakingcollectionTransfer_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/transfer_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0xf, 0x61, 0xe2, 0x2a, 0xbb, 0xf4, 0x2c, 0x51, 0x79, 0xcf, 0x19, 0x73, 0x29, 0xfe, 0x71, 0x7a, 0xef, 0x89, 0xff, 0xb3, 0x63, 0xf8, 0x3d, 0x6f, 0x49, 0x65, 0xbb, 0x5d, 0xf1, 0x0, 0x20}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf1, 0xb7, 0xb9, 0xcb, 0x3e, 0xc1, 0xaf, 0xb8, 0x76, 0x1c, 0xd2, 0xa0, 0xc0, 0xf6, 0xc2, 0xe3, 0x5f, 0x66, 0xd2, 0xd7, 0x35, 0xf8, 0x2c, 0x3e, 0x6, 0x85, 0xa3, 0x9f, 0x1d, 0x68, 0xe6, 0xea}} return a, nil } -var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x4d\x4f\xe3\x48\x10\xbd\xe7\x57\x14\x1c\x90\x2d\x81\xd9\x73\x44\x16\x65\x13\x96\x8d\x96\x25\x88\xa0\xbd\xac\xf6\x50\x71\x97\xe3\x9e\x71\xba\xac\xee\x72\x18\x66\xc4\x7f\x1f\xb5\xdb\xce\x07\xf6\x4c\x38\x30\xbe\x40\xec\xea\x57\xaf\xde\x7b\xdd\xad\xd7\x25\x5b\x81\x3f\x0b\x7e\x5e\x08\x7e\xd6\x66\x35\xe1\xa2\xa0\x54\x34\x1b\xc8\x2c\xaf\xe1\xb7\x2f\x8b\xa7\xf1\xdf\xb3\xfb\xdb\xc9\xfc\xee\xee\x66\xf2\x34\x9b\xdf\x8f\xa7\xd3\xc7\x9b\xc5\x62\x30\xb8\xbc\x84\x27\x8b\xc6\x65\x64\x1d\x20\xdc\xb3\x22\x8f\x42\x16\x78\xf9\x89\x52\x09\x08\x68\x00\x2b\xc9\xd9\xea\xaf\x75\x5d\x9a\x32\x57\x46\xfc\x6a\x34\x0a\x50\x29\x07\x92\xd3\xfe\x72\x61\x40\xc3\x92\x93\xad\xcb\x2b\x23\x0e\x1a\x7e\xb0\x23\xe8\x11\xb4\x22\x23\x3a\xd3\xa4\x60\xf9\x52\xc3\x08\xc3\x58\x29\x4b\xce\x25\x83\x81\x78\x7a\x58\x57\x47\x86\x15\xcd\xa6\x43\x58\x88\xd5\x66\x75\x0e\xc2\xc3\xb6\x32\x86\x6f\x03\x00\x80\x82\x02\xe7\x8e\x16\x8f\x94\x0d\xeb\x29\xa2\x5e\xa9\x92\xdd\xbf\xf3\x67\x43\x36\x86\xb3\xfe\xba\xce\x9b\x6d\x5b\xe1\xce\xb7\x09\x96\xc3\xf7\x03\xd5\x48\xa5\xa5\x12\x2d\x45\x8d\x6a\x0d\xe7\x3f\xd8\x5a\x7e\xfe\x17\x8b\x8a\x62\x38\x1b\x87\x6f\xed\xcc\xfe\xf1\x46\xe6\xd4\x6a\xed\x25\x94\xc6\xd7\xb7\xce\x34\xc6\x0a\xc3\xba\x72\x02\x39\x6e\x08\x10\x36\x58\x68\xd5\xe3\x10\x68\x03\x6c\x55\x70\xd4\x52\x4a\x7a\x43\x6f\x10\x93\x2d\x09\x9d\x41\x74\xd2\x3f\xad\x62\x72\x0d\xed\xbf\x70\x43\x9d\x82\x08\x83\x8f\x43\x10\x8e\xf7\x07\xab\x35\x41\xa3\xd3\xe8\x74\x4a\x4e\xb4\xc1\x9a\x56\x3b\xe8\xfe\x0c\x3d\xec\x1d\x09\x54\x65\x72\x1a\x6f\xf1\x5e\x07\xfb\x9a\xdd\x92\x00\x82\xa5\x8c\x2c\x99\xb4\x8e\x9e\x1f\x6e\x3f\xed\xfd\x86\xfb\xc7\x51\x91\x25\x3f\x0a\x1b\x8c\x5a\x8e\x89\x13\xb6\xb8\xa2\x64\x59\x9b\x78\xf5\x2b\x42\xf8\x7b\xe4\x79\x0c\xfb\x8f\x81\x6e\xf9\x22\x30\x7a\x40\xc9\xe3\x03\xa5\xaf\xaf\x5b\xb1\x27\x5c\x15\x0a\x0c\x0b\x04\xda\x5e\x24\x2f\x4f\x07\xeb\x34\xee\x28\xea\x25\x7c\xa8\x96\x85\x4e\x1b\xcb\x81\xb3\xa0\xeb\xf1\x78\x0a\x27\xb0\xc5\x0b\xdb\xaa\x05\x19\xc1\x8a\xa4\xf9\x11\x09\x1f\xf6\x0d\x3b\x04\x10\x52\x2c\x71\xa9\x0b\x2d\x2f\xad\x9b\x65\x4d\x05\xd6\x24\x39\x2b\x07\xb8\x41\x5d\xe0\xb2\x20\x60\x53\x7f\x6f\x62\xdd\xe7\x75\x72\x68\x76\xff\x16\x87\xd1\x8e\x64\xb2\x6d\xaf\xc9\x1d\x48\xdb\xda\xff\x7e\x4b\xdf\x59\x18\x94\xfe\x70\x2f\xbd\xf6\x6b\x4c\x73\x6d\xa8\x99\x6d\x66\x32\x86\xd1\xcf\x63\x9f\xac\x48\xfe\x39\x58\xe5\xa2\xf8\xbf\x70\x70\xff\x7f\x94\xde\x6a\xd7\x73\x9b\x15\xed\xbb\x66\x1c\x82\xe2\x4a\x4a\xc3\x5d\xe1\x21\x61\x36\x7d\x93\xbe\x47\x5a\x73\xe7\x80\x0a\x97\xd8\xd1\x7d\x9d\x1c\x8c\x6e\x76\xcb\xaf\x2e\x8e\xcc\x6c\xeb\xae\xbe\xe1\xf6\x8a\x0a\x7f\x0f\xc9\x4d\xa9\x64\xa7\xa5\xe7\xaa\xfc\x88\x14\x26\xa8\x94\x47\x9d\xd7\xe7\x7b\x74\x75\xb1\x37\xc2\xc9\x79\x8f\x95\xc3\x9e\x77\x21\x41\xaf\x83\xd7\xef\x01\x00\x00\xff\xff\x84\xde\x3f\xa0\x57\x08\x00\x00" +var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\xcd\x4e\xfb\x46\x10\xbf\xe7\x29\x06\x0e\xd4\x96\xc0\xf4\x1c\x91\xa2\x90\x50\x1a\x95\x12\x44\x50\x2f\x55\x0f\x13\xef\x38\xde\xd6\xd9\xb1\x76\xc7\xa1\xb4\xe2\xdd\xab\xf5\xda\xf9\xb2\xdb\x70\xf8\xe3\x4b\x62\x7b\x76\xe6\xf7\xe5\x5d\xbd\x2e\xd9\x0a\xfc\x58\xf0\xdb\x42\xf0\x4f\x6d\x56\x13\x2e\x0a\x4a\x45\xb3\x81\xcc\xf2\x1a\xbe\xff\x6b\xf1\x3a\xfe\x79\xf6\xf4\x30\x99\x3f\x3e\xde\x4f\x5e\x67\xf3\xa7\xf1\x74\xfa\x72\xbf\x58\x0c\x06\xd7\xd7\xf0\x6a\xd1\xb8\x8c\xac\x03\x84\x27\x56\xe4\xbb\x90\x05\x5e\xfe\x41\xa9\x84\x0e\x68\x00\x2b\xc9\xd9\xea\xbf\xeb\xba\x34\x65\xae\x8c\xf8\xd5\x68\x14\xa0\x52\x0e\x24\xa7\xfd\xe5\xc2\x80\x86\x25\x27\x5b\x97\x57\x46\x1c\x34\xf8\x60\x07\xd0\x77\xd0\x8a\x8c\xe8\x4c\x93\x82\xe5\x7b\xdd\x46\x18\xc6\x4a\x59\x72\x2e\x19\x0c\xc4\xc3\xc3\xba\x3a\x32\xac\x68\x36\x1d\xc2\x42\xac\x36\xab\x4b\x10\x1e\xb6\x95\x31\xfc\x33\x00\x00\x28\x28\x60\xee\x68\xf1\x42\xd9\xb0\x66\x11\xf5\x4a\x95\xec\xfe\xce\xdf\x0c\xd9\x18\x2e\xfa\xeb\x3a\x4f\xb6\x63\x85\x3b\xef\x26\x58\x0e\x3f\xdf\xa8\xee\x54\x5a\x2a\xd1\x52\xd4\xa8\xd6\x60\xbe\x63\x6b\xf9\xed\x57\x2c\x2a\x8a\xe1\x62\x1c\xde\xb5\x9c\xfd\xe5\x8d\xcc\xa9\xd5\xda\x4b\x28\x8d\xaf\xc7\xce\x34\xc6\x0a\xc3\xba\x72\x02\x39\x6e\x08\x10\x36\x58\x68\xd5\xe3\x10\x68\x03\x6c\x55\x70\xd4\x52\x4a\x7a\x43\x47\x1d\x93\x2d\x08\x9d\x41\x74\xd6\xcf\x56\x31\xb9\x06\xf6\x4f\xb8\xa1\x4e\x41\x84\xc1\xc7\x21\x08\xc7\xfb\xc4\x6a\x4d\xd0\xe8\x34\x3a\x9f\x92\x13\x6d\xb0\x86\xd5\x12\xdd\xe7\xd0\x83\xde\x91\x40\x55\x26\xe7\xf1\xb6\xdf\xc7\x60\x5f\xb3\x07\x12\x40\xb0\x94\x91\x25\x93\xd6\xd1\xf3\xe4\xf6\xd3\xde\x6f\xb8\xbf\x1c\x15\x59\xf2\x5f\x61\x83\x51\x8b\x31\x71\xc2\x16\x57\x94\x2c\x6b\x13\x6f\xbe\x22\x84\x3f\x44\x1e\xc7\xb0\x7f\x1b\xe8\x96\x2f\x02\xa2\x67\x94\x3c\x3e\x50\xfa\xf6\xb6\x15\x7b\xc2\x55\xa1\xc0\xb0\x40\x80\x7d\x2c\x13\x76\x85\xf1\x59\xf1\xea\x95\x56\xaf\xd1\xbe\x43\xe5\xc8\x7e\xe7\x5a\x19\xce\xe3\x8e\xf2\xbe\xf8\xb9\x5a\x16\x3a\x6d\xa2\x01\x9c\x05\xfd\x4f\xc7\x58\x38\x81\x6d\xbf\xf0\xf9\xb5\x4d\x46\xb0\x22\x69\x6e\x22\xe1\xc3\xb9\x77\x2d\x9b\x14\x4b\x5c\xea\x42\xcb\x7b\xeb\x7a\x59\x43\x81\x35\x49\xce\xca\x01\x6e\x50\x17\xb8\x2c\x08\x38\xf0\x6a\xe2\xdf\x97\x89\xe4\x30\x14\xfd\x5b\x01\x8c\x76\x20\x93\xed\x78\x4d\xee\xc0\x82\x36\x26\x9f\xb7\xfe\x93\x85\x41\xe9\x2f\xf2\xbc\xd5\xa6\xdf\x6f\xef\xcf\x1a\xd3\x5c\x1b\x6a\xf8\xcf\x4c\xc6\x30\xfa\xff\x4f\x28\x59\x91\xfc\x72\xb0\xca\x45\xf1\x6f\xe1\x10\xf8\xfd\x24\x85\xd5\x6e\xe6\x36\x4f\xda\x4f\xcd\x38\x84\xc9\x95\x94\x86\x73\xc7\xb7\x84\xd9\xf4\x28\xa1\x2f\xb4\xe6\xce\x66\x17\x0e\xc4\x93\x7b\x44\x72\x40\xdd\xec\x96\xdf\x5c\x9d\xe0\x6c\xeb\xa9\x7e\xe0\xf6\xb8\x0b\xbf\x87\xe0\xa6\x54\xb2\xd3\xd2\x73\xec\x7e\x8b\xa4\x26\xa8\x94\xef\x3a\xaf\xcf\x8a\xe8\xe6\x6a\x8f\xc2\xd9\x65\x8f\x95\xc3\x9e\x67\x21\x65\x1f\x83\x8f\x7f\x03\x00\x00\xff\xff\x48\xcc\xbf\x2b\xa3\x08\x00\x00" func stakingcollectionTransfer_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5757,11 +5757,11 @@ func stakingcollectionTransfer_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/transfer_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa7, 0x50, 0x3a, 0x54, 0x28, 0x2b, 0x5f, 0x93, 0xd2, 0xc9, 0x33, 0xd2, 0x89, 0x97, 0x70, 0xbc, 0x7b, 0xca, 0x49, 0x15, 0xa5, 0xd9, 0xa6, 0x1a, 0x5c, 0xe5, 0xdb, 0xf9, 0xe5, 0x35, 0xa9, 0x17}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0xdc, 0xc4, 0xb8, 0xac, 0xab, 0x45, 0x1, 0x3c, 0xe8, 0xe9, 0xae, 0x8d, 0x58, 0x6, 0xb, 0x7c, 0x9e, 0x82, 0x58, 0x7d, 0x32, 0x19, 0x62, 0x96, 0x4b, 0x9e, 0x1f, 0xcf, 0xe, 0x15, 0xa5}} return a, nil } -var _stakingcollectionUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x3b\x0f\xda\x30\x10\xc7\xf7\x7c\x8a\xbf\x18\x50\xb2\x84\xce\xa8\x2d\x4a\x03\xad\x50\x23\xa8\x08\xea\xee\x86\x4b\xb0\x30\xbe\xd4\xbe\x08\xa4\x8a\xef\x5e\x25\xe6\x31\x90\xa1\x4b\x6f\xc8\xc3\xbe\xfb\xdf\xef\x1e\xfa\xdc\xb2\x13\x7c\x35\x7c\x29\x45\x9d\xb4\x6d\x72\x36\x86\x2a\xd1\x6c\x51\x3b\x3e\xe3\xc3\xb5\xdc\x67\xdf\xd7\x9b\x6f\xf9\xb6\x28\x56\xf9\x7e\xbd\xdd\x64\xcb\xe5\x6e\x55\x96\x51\x34\x9b\xcd\xb0\xa3\xdf\x1d\x79\xf1\x10\x46\x67\xbd\xa8\x13\x21\x2b\x0a\x08\x9f\xc8\x7a\xd4\xec\x20\x47\x82\x6f\xa9\xd2\xb5\xa6\x03\x2c\x1f\x08\xec\x70\x20\x43\x8d\x12\x76\xd0\x36\xb8\x04\x00\x54\x4f\x82\x28\x12\xa7\xac\x57\xc3\x4f\xdc\x07\xae\x97\x73\x94\xe2\xb4\x6d\x12\xfc\x89\x00\x60\x78\x18\x92\x47\xf8\x8b\x7f\x47\xf5\x1c\xaa\x93\x63\x3c\x5a\x5e\xfa\xfa\xdc\x5e\x2c\xb9\x04\xd3\x71\xbf\xb7\x93\x68\xc8\xd9\x3a\x6a\x95\xa3\x58\x55\x15\x77\x56\xee\xa9\xbe\xb0\x73\x7c\xf9\xa9\x4c\x47\x09\xa6\x59\xb8\x7b\xb0\xf6\xe6\xc9\xd4\xe9\x18\x2b\x3e\xe1\x2e\x95\x7a\x61\xa7\x1a\x4a\x7f\x0d\x62\x1f\xff\x47\x0d\x9f\xe3\x7e\xba\xf3\xf1\xc9\xbf\xbb\x97\x81\xe8\x87\x92\x63\xf2\x2c\xa5\xb7\xc5\x02\xad\xb2\xba\x8a\x27\x39\x77\xa6\x9f\xae\x20\x60\xc3\x51\xdd\x2f\xc5\x9b\xd6\x24\x28\xdc\x42\x1b\xe9\x4a\x55\x27\xf4\x2f\x1d\x4a\xef\xfb\x95\x19\xf3\x5c\x86\xf0\x7e\x28\xde\xa2\xbf\x01\x00\x00\xff\xff\x89\x12\xc5\x5b\xd1\x02\x00\x00" +var _stakingcollectionUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\x3d\x8f\xda\x40\x10\xed\xfd\x2b\x9e\xae\xb8\x98\xc6\xa4\x46\x49\x4e\x0e\x5c\x22\x14\x74\x44\xf8\x94\x7e\xb3\x8c\x61\xc5\xb2\xe3\xcc\xce\x8a\x8b\xa2\xfb\xef\x91\x59\xcc\x15\xb8\x48\x93\x29\xf6\x73\x3e\xde\xcc\x7b\xee\xd8\xb1\x28\xbe\x78\x3e\x35\x6a\x0e\x2e\xec\xe6\xec\x3d\x59\x75\x1c\xd0\x0a\x1f\xf1\xfe\xa5\x79\xae\xbf\x2d\x9f\xbe\xce\xd7\xab\xd5\xe3\xfc\x79\xb9\x7e\xaa\x17\x8b\xcd\x63\xd3\x14\xc5\x74\x3a\xc5\x86\x7e\x25\x8a\x1a\xa1\x8c\x14\xa2\x9a\x03\xa1\x5e\xad\xa0\x7c\xa0\x10\xd1\xb2\x40\xf7\x84\xd8\x91\x75\xad\xa3\x2d\x02\x6f\x09\x2c\xd8\x92\xa7\x9d\x51\x16\xb8\x90\x5d\x32\x00\xd8\x2b\x82\xa2\x50\x31\x21\x9a\xf3\xa5\xec\x03\x97\x8b\x19\x1a\x15\x17\x76\x13\xfc\x29\x00\xe0\xbc\x78\xd2\x21\xfc\x0d\xff\x86\xda\x19\x4c\xd2\x7d\x39\xda\x5e\xf5\x76\x5c\x9f\x02\xc9\x04\xf7\xe3\x7e\x37\x2f\xc5\xb9\x66\x27\xd4\x19\xa1\xd2\x58\xcb\x29\xe8\xa5\xd4\x67\x16\xe1\xd3\x0f\xe3\x13\x4d\x70\x5f\xe7\xbf\x01\x6b\x6f\x91\x7c\x5b\x8d\x61\xc5\x47\x5c\x52\x55\x51\x59\xcc\x8e\xaa\x9f\xe7\x64\x1f\xfe\x47\x0f\x9f\xca\x9e\xdd\xd9\x38\xf3\xb7\xee\x4d\x46\xf4\xdd\xe8\x7e\x72\x6d\xa5\xb7\x87\x07\x74\x26\x38\x5b\xde\xcd\x39\xf9\x9e\x5d\x45\x86\x0d\x03\xa1\x96\x84\x82\xa5\x5e\x1c\x06\xb7\x0a\xbb\x30\xdf\x89\x3b\x1a\xf9\x8d\x14\x49\xde\xc5\x61\x0c\x77\xb9\xd2\x6b\x1e\x37\xbd\x90\x4d\x4a\xff\x32\xc9\xea\xa2\xc3\xda\xfb\xab\x68\xf2\x3e\x64\x7c\x2d\xfe\x06\x00\x00\xff\xff\x2b\xd3\x78\xad\xf9\x02\x00\x00" func stakingcollectionUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -5777,11 +5777,11 @@ func stakingcollectionUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfb, 0xb4, 0xc0, 0xad, 0x23, 0xc7, 0x9e, 0x25, 0x95, 0xf1, 0x3b, 0x48, 0x99, 0xcf, 0x25, 0x70, 0x27, 0x9d, 0x38, 0xdb, 0x5d, 0xa2, 0xd5, 0x64, 0xf7, 0x6e, 0x8a, 0x82, 0xf1, 0xef, 0x2e, 0xec}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc0, 0x88, 0xd9, 0xcd, 0x9b, 0x59, 0xf7, 0x9f, 0xb1, 0x33, 0x7b, 0xa2, 0x3d, 0x65, 0x26, 0x33, 0x88, 0x1e, 0xba, 0xeb, 0x8c, 0xfc, 0x5, 0x61, 0xd3, 0x24, 0xea, 0xb0, 0x28, 0x95, 0xa1, 0x50}} return a, nil } -var _stakingcollectionUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xcd\x6a\xf3\x40\x0c\xbc\xfb\x29\x44\x0e\xc1\x86\x0f\xe7\x3b\x87\xb6\xc1\x75\xd2\x12\x1a\x92\x12\x87\xde\xb7\xb6\xfc\x43\x37\x2b\xa3\x95\x71\xa0\xe4\xdd\x8b\xbd\xf9\xa1\x8d\x0f\xbd\x74\x0f\xf6\x22\x69\x67\x46\xd2\x54\xfb\x9a\x58\xe0\x49\x53\x9b\x88\xfa\xa8\x4c\x11\x93\xd6\x98\x4a\x45\x06\x72\xa6\x3d\xfc\x3f\x24\xbb\xe8\x65\xb9\x7e\x8e\x37\xab\xd5\x22\xde\x2d\x37\xeb\x68\x3e\xdf\x2e\x92\xc4\xf3\x26\x93\x09\xc4\xa5\x32\x05\x5a\x90\x12\xc1\xa0\xb4\xc4\x1d\x0a\xa8\x2c\x63\xb4\x16\x72\xe2\x3e\x65\x6b\x4c\xab\xbc\xc2\x0c\x0c\x65\xe8\x79\xc2\xca\x58\xd5\xf3\xf8\x5d\x64\x39\x9f\x42\x22\x5c\x99\xe2\x1f\x18\x6c\x23\xf7\xfc\x1c\x0b\xe0\xd3\x03\x00\xe8\x3f\x1a\x05\xec\x4f\xb1\x5b\xcc\xa7\xa0\x1a\x29\xfd\xc1\x5e\xc2\xeb\x75\xd3\x1a\xe4\x00\xc6\xc3\x75\x37\x11\xaf\xe7\xac\x19\x6b\xc5\xe8\xab\x34\xa5\xc6\xc8\x89\xea\x91\x98\xa9\x7d\x53\xba\xc1\x00\xc6\x91\xcb\x9d\xb5\x76\xc7\xa2\xce\xc3\x21\xad\x70\x0f\x27\xa8\xd0\x0a\xb1\x2a\x30\x7c\xef\xc1\xee\xfe\xa2\x87\x07\xbf\x5b\xe5\x74\x78\xcd\xb7\xe5\x89\x53\xf4\xaa\xa4\x0c\x2e\xad\x74\x67\x36\x83\x5a\x99\x2a\xf5\x47\x31\x35\xba\x5b\xa5\x80\x93\x0d\x8c\x39\x08\xc1\x0d\xd6\xc8\x21\x1c\xdd\x18\xf1\x80\x69\x23\xf8\x9b\x09\x85\x4d\x9d\x29\xc1\xf5\xc5\x52\x27\x4b\x5c\xdc\xe2\xfe\xdf\xdd\x72\xbd\x9f\x69\x8f\xde\x57\x00\x00\x00\xff\xff\x02\xfb\xb7\x33\xe3\x02\x00\x00" +var _stakingcollectionUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x6f\xba\x50\x0c\xbe\xf3\x57\x34\x1e\xfc\x41\xf2\x0b\xee\x6c\xb6\x19\x86\x6e\x31\x33\xba\x88\xd9\xbd\x83\x02\x2f\xc3\xf7\x48\x5f\x09\x2e\x8b\xff\xfb\x02\x88\x66\x93\xc3\x2e\xeb\x01\x9a\xb6\xaf\xdf\xd7\xf6\x53\xfb\xd2\xb0\xc0\x63\x61\xea\x48\xf0\x5d\xe9\x2c\x34\x45\x41\xb1\x28\xa3\x21\x65\xb3\x87\x9b\x43\xb4\x0b\x9e\x97\xeb\xa7\x70\xb3\x5a\x2d\xc2\xdd\x72\xb3\x0e\xe6\xf3\xed\x22\x8a\x1c\x67\x32\x99\x40\x98\xa3\xce\xc8\x82\xe4\x04\x9a\xa4\x36\xdc\x74\x01\x4c\x12\x26\x6b\x21\x35\xdc\xa6\x6c\x49\xb1\x4a\x15\x25\xa0\x4d\x42\x8e\x23\x8c\xda\x62\x8b\xe3\x36\x91\xe5\x7c\x0a\x91\xb0\xd2\xd9\x7f\xd0\x54\x07\xdd\xf3\x3e\xe6\xc1\xa7\x03\x00\xd0\x7e\x0a\x12\xb0\x3f\xc9\x6e\x29\x9d\x02\x56\x92\xbb\x83\xb3\xf8\x17\x77\x53\x6b\x62\x0f\xc6\xc3\x75\x57\x11\xa7\xc5\x2c\x99\x4a\x64\x72\x31\x8e\x4d\xa5\xe5\x04\xf5\x60\x98\x4d\xfd\x8a\x45\x45\x1e\x8c\x83\x2e\xd7\x73\x6d\xcc\x52\x91\xfa\x43\x5c\xe1\x0e\x4e\xad\x7c\x2b\x86\x31\x23\xff\xad\x6d\x76\xfb\x17\x33\xdc\xbb\xcd\x29\xa7\xc3\x67\xbe\x2e\x8f\x3a\x46\x2f\x28\xb9\x77\x1e\xa5\xb1\xd9\x0c\x4a\xd4\x2a\x76\x47\xa1\xa9\x8a\xe6\x94\x02\x1d\x6d\x40\x60\x4a\x89\x49\xc7\x04\x62\x00\xe1\x5a\x4e\x4a\xb7\x4a\x28\x59\xed\x91\x3f\xa0\xb2\xc4\xff\x6c\xbf\x86\x51\x87\x74\xec\xd6\x4d\x07\x8a\x2b\xa1\xdf\x6c\xd2\xaf\xca\x04\x85\xd6\x67\xe9\x9d\xa4\x73\x56\x55\xf7\xff\xae\xaa\x8b\xdf\xc3\x1e\x9d\xaf\x00\x00\x00\xff\xff\x92\x19\x8f\x80\x0b\x03\x00\x00" func stakingcollectionUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -5797,11 +5797,11 @@ func stakingcollectionUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc5, 0x69, 0xda, 0xe, 0x23, 0x1e, 0xa7, 0xf, 0xf6, 0x63, 0x31, 0x56, 0x47, 0x87, 0x39, 0x2b, 0x9d, 0x11, 0xae, 0x64, 0xb3, 0xc5, 0x9e, 0x1b, 0xfd, 0x3f, 0x27, 0x63, 0x78, 0x6a, 0xaf, 0xa9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x23, 0xe6, 0xfa, 0x51, 0x84, 0x12, 0xe3, 0xbb, 0xff, 0xd1, 0xdb, 0x75, 0xb2, 0xc5, 0x1, 0xc2, 0x69, 0x28, 0xc3, 0x4d, 0x54, 0xb, 0x85, 0x69, 0x3a, 0x17, 0x9, 0x8b, 0xeb, 0x4b, 0xf0, 0xc1}} return a, nil } -var _stakingcollectionWithdraw_from_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x8e\xd3\x30\x10\xbd\xe7\x2b\x46\x7b\x58\xa5\x12\x4a\x39\x20\x0e\x15\xb0\x2a\xe9\x16\x55\x2c\x5b\xd4\x14\xee\x83\x33\x69\xac\x3a\x9e\xe0\x8c\x49\x11\xda\x7f\x47\x8e\x9b\xad\x44\x73\xe0\xb2\x3e\xc4\x51\xf2\xfc\xe6\xbd\xe7\xa7\x9b\x96\x9d\xc0\xda\x70\x5f\x08\x1e\xb5\x3d\xe4\x6c\x0c\x29\xd1\x6c\xa1\x72\xdc\xc0\xeb\x53\xb1\x5f\x7e\xde\x3c\x7e\xca\xb7\x0f\x0f\xf7\xf9\x7e\xb3\x7d\x5c\xae\x56\xbb\xfb\xa2\x48\x92\xf9\x7c\x0e\x3b\xfa\xe9\xa9\x13\x10\x86\x5e\x4b\x5d\x3a\xec\x41\xf8\x48\xb6\x8b\xe7\xa5\x26\x68\x50\xd5\xda\x12\xa0\x52\xec\xad\x0c\xe7\xf6\x35\x8d\x38\x74\x04\xe8\x85\x1b\x14\xad\xd0\x98\xdf\x50\x52\xcb\x9d\x16\x2a\x03\x6d\x60\xf0\xd6\xb0\x3a\x52\x39\x52\xc0\x2f\xf4\x46\x92\x44\x1c\xda\x0e\x07\xb9\xa9\xe5\x92\x36\xab\x05\x14\xe2\xb4\x3d\xbc\x02\x6c\x02\x72\x01\xdf\xd6\xfa\xf4\xf6\xcd\x0c\xfe\x24\x00\x00\xc3\xc3\x90\x40\xf7\xaf\xdf\x1d\x55\x8b\xa0\xa3\x4e\x27\xe3\xc8\x2e\xaf\xdb\xde\x92\x9b\xc1\xed\x34\xee\xea\x4b\x32\xcc\x6c\x1d\xb5\xe8\x28\x3d\x3b\x38\x8f\xfa\xc8\xce\x71\xff\x1d\x8d\xa7\x19\xdc\x2e\xe3\xbf\x51\x6b\x58\x1d\x99\x2a\x9b\xd2\x0a\xef\xc7\x30\xb2\x4e\xd8\xe1\x81\xb2\x1f\x03\xd9\xbb\x97\xf0\xf0\x21\x0d\xb7\xb9\x98\x6e\xca\x35\xbc\x88\x8a\xbe\xa2\xd4\xb3\x67\x2b\x61\xdd\xdd\x41\x8b\x56\xab\xf4\x26\x67\x6f\x4a\xb0\x2c\x10\x65\x83\xa3\x2a\x5c\xf7\x15\xd7\x4d\x64\x78\x8a\x31\xd2\x89\x94\x17\xfa\x9f\x84\xb2\xb1\x90\x6b\xc7\xcd\x97\xd8\xc1\x73\xc2\xcf\x65\x89\xfb\xa5\x2c\x71\x1f\x27\x3e\x25\x7f\x03\x00\x00\xff\xff\x9b\x4c\x56\x8f\x21\x03\x00\x00" +var _stakingcollectionWithdraw_from_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6f\xd3\x40\x10\x85\xef\xfe\x15\xa3\x1e\x4a\x22\x21\x87\x03\xe2\x10\x01\x55\x48\x1a\x14\x51\x1a\x14\x07\xee\xc3\x7a\x12\xaf\xb2\xde\x31\xb3\xb3\x38\x15\xea\x7f\x47\xf6\xc6\xad\x44\x72\xe0\xd2\x3d\x78\x2d\x7b\x76\xe6\xbd\xb7\x9f\xad\x1b\x16\x85\xa5\xe3\xb6\x50\x3c\x58\xbf\x9f\xb3\x73\x64\xd4\xb2\x87\x9d\x70\x0d\x6f\x8e\xc5\x76\xf6\x65\x75\xff\x79\xbe\xbe\xbb\xbb\x9d\x6f\x57\xeb\xfb\xd9\x62\xb1\xb9\x2d\x8a\x2c\x9b\x4c\x26\xb0\xa1\x5f\x91\x82\x82\x32\xb4\x56\xab\x52\xb0\x05\xe5\x03\xf9\x90\xce\x6b\x45\x50\xa3\xa9\xac\x27\x40\x63\x38\x7a\xed\xcf\x6d\x2b\x1a\xea\x50\x08\x30\x2a\xd7\xa8\xd6\xa0\x73\x0f\x50\x52\xc3\xc1\x2a\x95\x5d\xdb\xae\x43\xf4\x8e\xcd\x81\xca\xa1\x05\xfc\xc6\xe8\x34\xcb\x54\xd0\x07\xec\xe5\x8e\x3c\x97\xb4\x5a\x4c\xa1\x50\xb1\x7e\xff\x1a\xb0\xee\x2a\xa7\xf0\x7d\x69\x8f\xef\xde\x8e\xe1\x4f\x06\x00\xd0\x3f\x1c\x29\x84\x7f\xfd\x6e\x68\x37\xed\x74\x54\xa3\x8b\x71\xe4\xcf\xaf\xeb\xd6\x93\x8c\xe1\xfa\x72\xdd\xd9\x97\xac\x9f\xd9\x08\x35\x28\x34\x3a\x39\x38\x8d\xfa\xc4\x22\xdc\xfe\x40\x17\x69\x0c\xd7\xb3\xf4\x6f\xd0\xda\xad\x40\x6e\x97\x5f\xd2\x0a\x1f\x86\x30\xf2\xa0\x2c\xb8\xa7\xfc\x67\xdf\xec\xfd\x4b\x78\xf8\x38\xea\x6e\x73\x7a\x99\x94\xf3\xf2\x22\x29\xfa\x86\x5a\x8d\x9f\xac\x74\xeb\xe6\x06\x1a\xf4\xd6\x8c\xae\xe6\x1c\x5d\x09\x9e\x15\x92\x6c\x40\x10\xda\x91\x90\x37\x1d\x19\x80\x70\x4e\xa4\xf5\x3d\x0d\x8d\xd8\x1a\xe5\x01\x62\x20\x79\x15\x86\x18\xae\xd2\xa4\xc7\x14\x37\x1d\xc9\x44\xa5\xff\x49\x32\x1f\xc0\x5d\x0a\xd7\x5f\x13\xab\xa7\x9b\x78\x82\x2a\xed\xcf\x50\xa5\x7d\x98\xf8\x98\xfd\x0d\x00\x00\xff\xff\xb5\x4f\x35\x21\x49\x03\x00\x00" func stakingcollectionWithdraw_from_machine_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -5817,11 +5817,11 @@ func stakingcollectionWithdraw_from_machine_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_from_machine_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf6, 0xd9, 0x31, 0x48, 0x1b, 0x88, 0xd3, 0xaf, 0x9f, 0xb1, 0xd2, 0x2e, 0xd9, 0xfa, 0xcc, 0x3e, 0x5f, 0xbb, 0x74, 0x7c, 0xbe, 0xfb, 0x4f, 0xbc, 0xde, 0xa2, 0x80, 0x6d, 0x10, 0x2d, 0xd3, 0xfa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0x3b, 0xc9, 0x9c, 0x4c, 0x41, 0x9c, 0x7c, 0x5, 0x22, 0x96, 0x35, 0x24, 0x23, 0x96, 0x41, 0x83, 0x79, 0x89, 0x8f, 0x73, 0x68, 0x2f, 0xcd, 0x3, 0xbe, 0xa6, 0x3b, 0xa1, 0x7e, 0x49, 0x84}} return a, nil } -var _stakingcollectionWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\xcd\x6e\xdb\x3c\x10\xbc\xeb\x29\x16\x39\x04\x32\x60\xc8\x1f\xbe\x16\x3d\x18\x6d\x0d\xd7\x4e\x0a\xa3\x41\x5c\x58\x4e\xef\x5b\x69\x65\x11\xa6\xb9\xea\x6a\x55\x39\x28\xf2\xee\x05\xf5\x63\x05\xb5\x0e\xbd\x94\x07\x51\xa2\x86\xb3\x33\xcb\xa1\x39\x15\x2c\x0a\xf7\x96\xeb\x58\xf1\x68\xdc\x61\xc5\xd6\x52\xa2\x86\x1d\x64\xc2\x27\xf8\xef\x1c\xef\x97\x5f\x36\x8f\x9f\x57\xdb\x87\x87\xbb\xd5\x7e\xb3\x7d\x5c\xae\xd7\xbb\xbb\x38\x0e\x82\xd9\x6c\x06\x3b\xfa\x51\x51\xa9\xa0\x0c\xb5\xd1\x3c\x15\xac\x41\xa8\x46\x49\x29\x05\xe5\x23\xb9\x12\x32\x16\xd0\x9c\xa0\x2c\x28\x31\x99\xa1\x14\x1c\xa7\x04\x2c\x90\x92\xa5\x03\x2a\x0b\x18\xd7\x42\x5a\x15\x90\x5c\x64\x34\x55\xf6\x39\xf5\x64\x28\x04\x58\x29\x9f\x50\x4d\x82\xd6\x3e\x43\x4a\x05\x97\x46\x9b\x7a\x0d\x49\xe5\x2c\x27\x47\x4a\x01\x93\x84\x2b\xa7\xf0\x13\x2b\xab\x90\x19\x29\x75\xda\xf0\x2d\x5d\xea\x91\x0e\xd0\x3d\x43\x07\x7e\xc5\x3f\x30\x1a\xd7\x71\x8e\x31\x06\x81\x0a\xba\x12\x1b\x9d\xa1\xf7\xb4\x59\xcf\x21\x56\x31\xee\x30\x1d\xbc\xf9\xc5\xa7\x8d\xd3\x37\xff\x2f\xa6\x80\x27\xbf\x7f\x0e\x4f\xf7\xe6\xfc\xee\xed\x04\x7e\x05\x00\x00\xcd\xc3\x92\xf6\xfe\x87\x53\xd8\x51\x36\xf7\x7e\xf3\x70\xf4\x90\xa2\xe1\x75\x5b\x3b\x92\x09\xdc\x8e\xe3\xae\x56\x82\xa6\x66\x21\x54\xa0\x50\xd8\xf9\xea\x4a\x7d\x62\x11\xae\xbf\xa1\xad\x68\x02\xb7\xcb\xf6\x5f\xaf\xd5\x8f\x92\x6c\x16\x8d\x69\x85\x0f\x7d\x8b\xa2\x52\x59\xf0\x40\xd1\xf7\x86\xec\xfd\xbf\xf0\xf0\x31\xf4\x19\x9d\x8f\xe7\xf7\x1a\x1e\xb7\x8a\xbe\xa2\xe6\x93\x8b\x15\x3f\x16\x0b\x28\xd0\x99\x24\xbc\x59\x71\x65\x7d\x3c\x15\x5a\xd9\x20\x94\xf9\x58\x5d\x71\xdd\xb4\x0c\x2f\x6d\x1b\xe9\x4c\x49\xa5\xf4\x37\x1d\x8a\xfa\x6b\xb2\xeb\x6e\xc9\xbe\xc9\xdd\x25\x3e\xed\xfc\x47\x7c\x5e\x7d\x0c\x11\x6a\xe7\x5e\xc7\x4b\xf0\x3b\x00\x00\xff\xff\x28\xb2\xdf\x7c\xcd\x03\x00\x00" +var _stakingcollectionWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x8f\x12\x41\x10\xbd\xcf\xaf\x78\xd9\xc3\x0a\x09\x01\xa3\xc6\x03\x51\x09\xc2\xae\x21\x6e\x16\xc3\xb0\xde\xcb\x99\x1a\xe8\xd0\x74\x8f\x35\x35\x0e\xc4\xec\x7f\x37\x3d\x1f\xb0\x11\x0e\x5e\xec\x03\xcd\xf4\xd4\xbc\x8f\xea\x57\x66\x9f\x7b\x51\xdc\x5b\x5f\xc5\x4a\x3b\xe3\x36\x33\x6f\x2d\x27\x6a\xbc\x43\x26\x7e\x8f\xd7\x87\x78\x3d\xfd\xba\x78\xfc\x32\x5b\x3e\x3c\xdc\xcd\xd6\x8b\xe5\xe3\x74\x3e\x5f\xdd\xc5\x71\x14\x8d\x46\x23\xac\xf8\x67\xc9\x85\x42\x3d\x2a\xa3\xdb\x54\xa8\x82\x70\x45\x92\x72\x0a\xf5\x3b\x76\x05\x32\x2f\xd0\x2d\xa3\xc8\x39\x31\x99\xe1\x14\xce\xa7\x0c\x2f\x48\xd9\xf2\x86\xd4\x0b\x8c\x6b\x4a\x1a\x15\x48\x4e\x32\x6a\x96\xf5\x96\x3b\x30\x12\x06\x95\xea\xf7\xa4\x26\x21\x6b\x8f\x48\x39\xf7\x85\xd1\x9a\xaf\x06\x29\x9d\xf5\xc9\x8e\x53\x50\x92\xf8\xd2\x29\x7e\x51\x69\x15\x99\x91\x42\x07\x35\xde\xd4\xa5\xa1\xd2\x81\xdc\x11\x6d\xf1\x0b\xfc\x33\xa2\x71\x2d\xe6\x35\xc4\x28\x52\x21\x57\x50\xad\xb3\x17\x3c\x2d\xe6\x63\xc4\x2a\xc6\x6d\x06\x67\x6f\xe1\xf0\x69\xe1\xf4\xed\x9b\xc9\x00\xb4\x0f\xdf\x8f\xf1\x74\x6f\x0e\xef\xdf\xf5\xf1\x3b\x02\x80\xfa\xc7\xb2\x76\xfe\xcf\xb7\xb0\xe2\x6c\x1c\xfc\x6e\x7b\x57\x2f\x69\x78\xfe\xbb\xac\x1c\x4b\x1f\xb7\xd7\xeb\x2e\x4e\xa2\x9a\x33\x17\xce\x49\xb8\xd7\xfa\x6a\xa9\x3e\x7b\x11\x5f\x7d\x27\x5b\x72\x1f\xb7\xd3\xe6\x5d\xa7\x35\xac\x82\x6d\x36\xbc\xa6\x15\x1f\xbb\x16\x0d\x0b\xf5\x42\x1b\x1e\xfe\xa8\xc1\x3e\xfc\x0f\x0f\x9f\x7a\x21\xa3\xe3\xeb\xf9\xbd\x2c\x8f\x1b\x45\xdf\x48\xb7\xfd\x93\x95\xb0\x26\x13\xe4\xe4\x4c\xd2\xbb\x99\xf9\xd2\x86\x78\x2a\x1a\xd9\x20\x08\x67\x2c\xec\x92\x90\x40\x10\x2e\xe7\xa4\x8d\x6e\x2e\x66\x4f\x72\x44\x59\xb0\xbc\x2a\xba\x36\xdc\x34\x4c\xcf\x4d\xbb\xf9\xc0\x49\xa9\xfc\x2f\x9d\x1c\x76\xe3\xb4\x6a\xa7\x69\x5d\xe7\xf3\x14\xb3\x66\xff\x2b\x66\x2f\x1e\xce\x51\x6b\xf6\x4e\xc7\x73\xf4\x27\x00\x00\xff\xff\x45\xf4\x6f\xf1\xf5\x03\x00\x00" func stakingcollectionWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5837,11 +5837,11 @@ func stakingcollectionWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x42, 0x5, 0x1f, 0xba, 0x6a, 0x7a, 0x49, 0x51, 0x91, 0x45, 0x1b, 0xbf, 0xd4, 0xd1, 0x49, 0xa4, 0x66, 0xfa, 0x8b, 0x53, 0x3a, 0xed, 0xb1, 0xb1, 0xa3, 0x9c, 0x67, 0xe8, 0x70, 0xe7, 0xc8, 0xd0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0x58, 0x73, 0x11, 0x73, 0x4a, 0xdc, 0x2f, 0x1d, 0xa1, 0xe1, 0xd9, 0xcf, 0x2d, 0x48, 0xfa, 0x8e, 0x3, 0x52, 0xa1, 0x4e, 0x79, 0x94, 0x22, 0x3, 0xd6, 0xb5, 0x8c, 0x19, 0xd5, 0x88, 0x71}} return a, nil } -var _stakingcollectionWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x8f\xda\x30\x10\xbd\xe7\x57\x3c\xed\x61\x05\x12\x82\xaa\xad\x7a\x40\x6d\x11\x85\xdd\x0a\x75\xb5\x54\x04\x7a\x77\x93\x09\x58\x18\x4f\x6a\x4f\x1a\x56\xd5\xfe\xf7\xca\xf9\x20\xab\x92\x43\x2f\xeb\x43\x9c\x38\x4f\x6f\xde\x1b\xbf\xd1\xa7\x9c\x9d\xe0\xde\x70\x19\x8b\x3a\x6a\xbb\x5f\xb0\x31\x94\x88\x66\x8b\xcc\xf1\x09\x6f\xce\xf1\x76\xfe\x6d\xf5\xf8\x75\xb1\x7e\x78\xb8\x5b\x6c\x57\xeb\xc7\xf9\x72\xb9\xb9\x8b\xe3\x28\x9a\x4c\x26\xd8\xd0\xaf\x82\xbc\x40\x18\xa5\x96\x43\xea\x54\x89\xc2\x7a\x51\x47\x4a\x21\x7c\x24\xeb\x91\xb1\x83\x1c\x08\x3e\xa7\x44\x67\x9a\x52\x58\x4e\x09\xec\x90\x92\xa1\xbd\x12\x76\xd0\xb6\x86\xd4\x2a\x90\x5c\x64\x54\x55\xb6\x07\x6a\xc9\x94\x23\xa8\x42\xf8\xa4\x44\x27\xca\x98\x27\xa4\x94\xb3\xd7\x52\xd5\xab\x48\x0a\x6b\x38\x09\xf5\x55\x92\x70\x61\x05\xbf\x55\x61\x04\x99\x76\x5e\x46\x15\xdf\xdc\xa6\x01\x69\xa1\xec\x13\x1a\xf0\x0b\xfe\x8e\x51\xdb\x86\xb3\x97\x51\x67\xd0\x02\xed\x03\xc2\x51\x14\x89\x53\xd6\xab\x4a\xf6\x20\x58\x5c\x2d\xa7\x88\xc5\x69\xbb\x1f\x75\x56\xc3\xe1\x6e\x65\xe5\xdd\xdb\xd9\x08\xea\x14\xe8\xa6\xd8\xdd\xeb\xf3\x87\xf7\x43\xfc\x89\x00\xa0\x7a\x18\x92\xb6\x1d\xdd\xa5\x6c\x28\x9b\x06\xfb\x87\x41\xef\x9d\x8d\xbb\xd7\x75\x69\xc9\x0d\x71\xdb\x8f\xbb\x3a\x89\xaa\x9a\xb9\xa3\x5c\x39\x1a\x34\x36\x9b\x52\x5f\xd8\x39\x2e\x7f\x28\x53\xd0\x10\xb7\xf3\xfa\x5f\xab\x35\x2c\x4f\x26\x1b\xf7\x69\xc5\xa7\xb6\x63\x63\x2f\xec\xd4\x9e\xc6\x3f\x2b\xb2\x8f\xaf\xe1\xe1\xf3\x20\x44\x76\xda\x1f\xe7\x6b\x78\x5c\x2b\xfa\xae\xe4\x30\xbc\x58\x09\x6b\x36\x43\xae\xac\x4e\x06\x37\x0b\x2e\x4c\x48\xab\xa0\x96\x0d\x47\x59\x48\xd9\x15\xd7\x4d\xcd\xf0\x5c\xb7\x91\xce\x94\x14\x42\xff\xd3\xa1\x71\x3b\x35\xbb\x66\x68\xb6\x55\x0c\x2f\xf1\xa9\xf7\x7f\xe2\xf3\xe2\xa3\x8b\x50\xbd\xb7\x3a\x9e\xa3\xbf\x01\x00\x00\xff\xff\x88\xe7\xc7\x43\xdc\x03\x00\x00" +var _stakingcollectionWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x6f\xda\x40\x10\xbd\xfb\x57\x3c\xe5\x90\x82\x14\x91\xaa\xad\x7a\x40\x6d\x23\x0a\x49\x85\x1a\x85\x0a\x43\xef\x53\x7b\x0c\x2b\x96\x5d\x77\x76\x5c\x40\x55\xfe\x7b\xb5\xfe\x80\xa8\x70\xe8\xa5\x7b\xf0\xda\xeb\xd1\xfb\x98\x7d\x63\xb6\xa5\x17\xc5\x83\xf5\xbb\x54\x69\x63\xdc\x6a\xec\xad\xe5\x4c\x8d\x77\x28\xc4\x6f\xf1\x7a\x9f\x2e\x46\x5f\xa7\x4f\x5f\xc6\xb3\xc7\xc7\xfb\xf1\x62\x3a\x7b\x1a\x4d\x26\xf3\xfb\x34\x4d\x92\xdb\xdb\x5b\xcc\xf9\x67\xc5\x41\xa1\x1e\x3b\xa3\xeb\x5c\x68\x87\xca\x05\xa5\x0d\xe7\x50\xbf\x61\x17\x50\x78\x81\xae\x19\xa1\xe4\xcc\x14\x86\x73\x38\x9f\x33\xbc\x20\x67\xcb\x2b\x52\x2f\x30\xae\x29\x69\x54\x20\x3b\xca\xa8\x59\x16\x6b\xee\xc0\x48\x18\x54\xa9\xdf\x92\x9a\x8c\xac\x3d\x20\xe7\xd2\x07\xa3\x35\x5f\x0d\x52\x39\xeb\xb3\xc8\x4f\x59\xe6\x2b\xa7\xf8\x45\x95\x55\x14\x46\x82\xde\xd4\x78\x23\x97\xc7\x4a\x07\x72\x07\xb4\xc5\x2f\xf0\x4f\x88\xc6\xb5\x98\x17\x11\x4d\x01\xa3\x30\x21\x56\x08\x27\x89\x0a\xb9\x40\xb5\xec\x5e\xb4\x38\x9d\x0c\x91\xaa\x18\xb7\xba\x39\x59\x8d\x87\xcb\xa9\xd3\xb7\x6f\xee\x6e\x40\xdb\x08\x37\xc4\xf2\xc1\xec\xdf\xbf\xeb\xe3\x77\x02\x00\xf5\xc3\xb2\x76\xed\x38\x5d\xca\x9c\x8b\x61\xb4\xbf\xee\x5d\xbc\xb3\xc1\xe9\x75\xb6\x73\x2c\x7d\x5c\x5f\xae\x3b\x3b\x49\x6a\xce\x52\xb8\x24\xe1\x5e\x6b\xb3\xa5\xfa\xec\x45\xfc\xee\x3b\xd9\x8a\xfb\xb8\x1e\x35\xff\x3a\xad\x71\x05\xb6\xc5\xe0\x92\x56\x7c\xec\x3a\x36\x08\xea\x85\x56\x3c\xf8\x51\x83\x7d\xf8\x1f\x1e\x3e\xf5\x62\x64\x87\x97\xe3\x7c\x5e\x9e\x36\x8a\xbe\x91\xae\xfb\x47\x2b\x71\xdd\xdd\xa1\x24\x67\xb2\xde\xd5\xd8\x57\x36\xa6\x55\xd1\xc8\x06\x41\xb8\x60\x61\x97\xc5\x40\x82\x70\x3e\x36\x6d\x92\x4b\x31\x5b\x92\x03\xaa\xc0\xf2\x2a\x74\x6d\xb8\x6a\x98\x9e\x9b\x76\xf3\x9e\xb3\x4a\xf9\x5f\x3a\x39\xe8\xa6\x6b\xd9\x0e\xd7\xa2\x8e\xeb\x31\x66\xcd\xfe\x57\xcc\x5e\x7c\x9c\xa2\xd6\xec\x9d\x8e\xe7\xe4\x4f\x00\x00\x00\xff\xff\x53\xcd\x56\x18\x04\x04\x00\x00" func stakingcollectionWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5857,7 +5857,7 @@ func stakingcollectionWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xae, 0x5b, 0xec, 0xe6, 0xcc, 0xd4, 0x73, 0x9b, 0x65, 0xc3, 0xa3, 0x35, 0x3a, 0x49, 0xa0, 0xfb, 0x1a, 0x13, 0xc3, 0x6, 0x53, 0xb1, 0xdf, 0x4f, 0xeb, 0xf0, 0x1e, 0xea, 0x6a, 0xfe, 0xa6, 0xf9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb3, 0x27, 0x90, 0x24, 0x2e, 0x4f, 0xd6, 0x1d, 0x1d, 0x59, 0x53, 0x39, 0x4e, 0x23, 0x42, 0x99, 0x80, 0x6b, 0xb4, 0xca, 0x61, 0x90, 0xbb, 0x87, 0xe2, 0xfb, 0xa3, 0xed, 0x88, 0x78, 0x75, 0x55}} return a, nil } diff --git a/lib/go/templates/manifest.mainnet.json b/lib/go/templates/manifest.mainnet.json index 6facae02c..606176932 100755 --- a/lib/go/templates/manifest.mainnet.json +++ b/lib/go/templates/manifest.mainnet.json @@ -4,7 +4,7 @@ { "id": "TH.01", "name": "Withdraw Unlocked FLOW", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"The primary user account does not have an associated locked account\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -19,12 +19,12 @@ } ], "network": "mainnet", - "hash": "6cead427704bc5c07c2920aeced30e1fddfee2021811b54fdeb64d4153e07926" + "hash": "4a830e6f93f74179a99e17c7ae762980c7fdc428bc949767529be2f071ac52b9" }, { "id": "TH.02", "name": "Deposit Unlocked FLOW", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"The primary user account does not have an associated locked account\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -39,7 +39,7 @@ } ], "network": "mainnet", - "hash": "50ab0c2826eb1854a1e77a32a45d3259e16ac46d9512378bc52bdb4c1bdda623" + "hash": "038382a947fa96bf2f4dfe5aa9b4b2abee1ef0975955175e80cf911c3edf4b61" }, { "id": "TH.06", @@ -468,7 +468,7 @@ { "id": "SCO.02", "name": "Register Delegator", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Registers a delegator in the staking collection resource\n/// for the specified nodeID and the amount of tokens to commit\n\ntransaction(id: String, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.registerDelegator(nodeID: id, amount: amount) \n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Registers a delegator in the staking collection resource\n/// for the specified nodeID and the amount of tokens to commit\n\ntransaction(id: String, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.registerDelegator(nodeID: id, amount: amount) \n }\n}\n", "arguments": [ { "type": "String", @@ -494,12 +494,12 @@ } ], "network": "mainnet", - "hash": "8137213e83a7e35462af3142a14d8472b7de791689454970950527f55482d90e" + "hash": "0a41e53ad3c9c1c16c8732dd8331b8ca66063617d433b01d4d09c47300448744" }, { "id": "SCO.03", "name": "Register Node", - "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n publicKeys: [Crypto.KeyListEntry]?) {\n\n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account\n ) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys! {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n publicKeys: [Crypto.KeyListEntry]?) {\n\n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account\n ) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys! {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -619,12 +619,12 @@ } ], "network": "mainnet", - "hash": "535eb69e4e776f40dcd96f5ec0ea9b3fec47d97dbde0de72790def9cda1356f0" + "hash": "4073ffd5a78fda78e2292f5cea7e19443158c1eae7ba27ea24fee5c043060290" }, { "id": "SCO.04", "name": "Create Machine Account", - "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Creates a machine account for a node that is already in the staking collection\n/// and adds public keys to the new account\n\ntransaction(nodeID: String, publicKeys: [Crypto.KeyListEntry]) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n } else {\n panic(\"Could not create a machine account for the node\")\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Creates a machine account for a node that is already in the staking collection\n/// and adds public keys to the new account\n\ntransaction(nodeID: String, publicKeys: [Crypto.KeyListEntry]) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n } else {\n panic(\"Could not create a machine account for the node\")\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -676,12 +676,12 @@ } ], "network": "mainnet", - "hash": "8967a6b6642f1bb66a3fe18689de23b9837e01fdc9235c50afdab94b8f63fad3" + "hash": "333e2035ff1cf7fe636722804837c1498cdd3b93b1d412f56bca060a5a55aed8" }, { "id": "SCO.05", "name": "Request Unstaking", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Requests unstaking for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.requestUnstaking(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Requests unstaking for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.requestUnstaking(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -725,12 +725,12 @@ } ], "network": "mainnet", - "hash": "89f788917c84f9749f595b24ee81ab7999f3a3ba4338b93218bde5864cc4e141" + "hash": "f26c058a127500fcd8445ba9fcf55149fe8f1a1a7cd212688d13fcd6ee276529" }, { "id": "SCO.06", "name": "Stake New Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits new tokens to stake for the specified node or delegator in the staking collection\n/// The tokens from the locked vault are used first, if it exists\n/// followed by the tokens from the unlocked vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeNewTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits new tokens to stake for the specified node or delegator in the staking collection\n/// The tokens from the locked vault are used first, if it exists\n/// followed by the tokens from the unlocked vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.stakeNewTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -774,12 +774,12 @@ } ], "network": "mainnet", - "hash": "1421ed79bf556c3585476ea5475c9d6f51c6999eaa2b4c88d20370c024e7da9a" + "hash": "4c0658934352486097cc89fa06b98bac21e514770fc6a4d70a7adc4bec6d711d" }, { "id": "SCO.07", "name": "Stake Rewarded Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits rewarded tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits rewarded tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.stakeRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -823,12 +823,12 @@ } ], "network": "mainnet", - "hash": "92cefda10b0c6bb92541d3d6724e746cd87a327cca6f55d5fba33ac932cc3601" + "hash": "c989e8b3beb9c2eb5af2ee1e11d592c9f1131e76e7ef105a0d40cf1610d1e348" }, { "id": "SCO.08", "name": "Stake Unstaked Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits unstaked tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits unstaked tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.stakeUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -872,12 +872,12 @@ } ], "network": "mainnet", - "hash": "7c235396508b698b7025dcc20cd65dbfb8bcec61e495f34521a3d5f55c0c7a02" + "hash": "fe6adb75bf22b2033800e916fa7e3a7810417e9a36d35320de7f4b5f7ec4f1b8" }, { "id": "SCO.09", "name": "Unstake All", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Requests to unstake ALL tokens for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.unstakeAll(nodeID: nodeID)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Requests to unstake ALL tokens for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.unstakeAll(nodeID: nodeID)\n }\n}\n", "arguments": [ { "type": "String", @@ -892,12 +892,12 @@ } ], "network": "mainnet", - "hash": "dbf5f65cc34c59d102985fad7d4200949fa802934fb401551b2577ce227597e7" + "hash": "1c8256fb857f6c6fd929511ecac8624d0159877cf72c884f7128297dfb069510" }, { "id": "SCO.10", "name": "Withdraw Rewarded Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw rewarded tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw rewarded tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -941,12 +941,12 @@ } ], "network": "mainnet", - "hash": "9761a96ef85b73c0b4bb9e93110a5e774c128f37b0fcd91568aefb60cbeba034" + "hash": "fbd8ebbfff7a88b6b667ff4e3f9f904eaaba71cbf02a140f3b7007c61fbd8f34" }, { "id": "SCO.11", "name": "Withdraw Unstaked Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw unstaked tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault if it is there\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw unstaked tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault if it is there\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -990,12 +990,12 @@ } ], "network": "mainnet", - "hash": "b794b6630e6fe69d84b149d4fc5df1305b132bae7e3dd954418ac2afcea2692b" + "hash": "c2484f17e640e285769c3edaa6f2d090dcef1f2f57983f82b7179c3c047290ca" }, { "id": "SCO.12", "name": "Close Stake", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Closes out a staking object in the staking collection\n// This does not remove the record from the identity table,\n// but it does mean that the account that closes it cannot ever access it again\n\ntransaction(nodeID: String, delegatorID: UInt32?) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.closeStake(nodeID: nodeID, delegatorID: delegatorID)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Closes out a staking object in the staking collection\n// This does not remove the record from the identity table,\n// but it does mean that the account that closes it cannot ever access it again\n\ntransaction(nodeID: String, delegatorID: UInt32?) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.closeStake(nodeID: nodeID, delegatorID: delegatorID)\n }\n}\n", "arguments": [ { "type": "String", @@ -1028,12 +1028,12 @@ } ], "network": "mainnet", - "hash": "765791c3185adfbdbf5889bd45e5cb4f83930a7d49f9598c4c22908540d7c6c4" + "hash": "a0fad319bf8aede66212257ad0d21532858381e2c9d7c4cec179b28180f5be93" }, { "id": "SCO.13", "name": "Transfer Node", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeStaker object from an authorizers accoount\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeStaker object from an authorizers accoount\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the receiver's account\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", "arguments": [ { "type": "String", @@ -1059,12 +1059,12 @@ } ], "network": "mainnet", - "hash": "45463dc2320d4cbd83b529448548d71319524c21c33abe5ab4f963dc4c4114b5" + "hash": "38bfd23b200ecef4d13fa3c2ea998b51e6a24f3a8ceb260d2affab7c918a97d0" }, { "id": "SCO.14", "name": "Transfer Delegator", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeDelegator object from an authorizers accoount\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeDelegator object from an authorizers accoount\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow a referamce to a StakingCollection in the receiver's account\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", "arguments": [ { "type": "String", @@ -1101,12 +1101,12 @@ } ], "network": "mainnet", - "hash": "1264f0d5745092380fe945eebed4bbca63104cdc148f2b4a11012f28c72c1c86" + "hash": "11e2107d2ccd96cb6b3fa3a704491dcd9e1736215137304e0494243c21befc76" }, { "id": "SCO.15", "name": "Withdraw From Machine Account", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw tokens from the machine account\n/// The tokens are automatically deposited to the unlocked account vault\n\ntransaction(nodeID: String, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawFromMachineAccount(nodeID: nodeID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw tokens from the machine account\n/// The tokens are automatically deposited to the unlocked account vault\n\ntransaction(nodeID: String, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawFromMachineAccount(nodeID: nodeID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -1132,12 +1132,12 @@ } ], "network": "mainnet", - "hash": "b0994287545820e8cd294f31a2329a884331903aa1ef91ed5a12368344f03740" + "hash": "e12b16ef4218b8ce52189ae5814b381272bf473436978fae94d01c10c0369034" }, { "id": "SCO.16", "name": "Update Networking Address", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Changes the networking address for the specified node\n\ntransaction(nodeID: String, newAddress: String) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.updateNetworkingAddress(nodeID: nodeID, newAddress: newAddress)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Changes the networking address for the specified node\n\ntransaction(nodeID: String, newAddress: String) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.updateNetworkingAddress(nodeID: nodeID, newAddress: newAddress)\n }\n}\n", "arguments": [ { "type": "String", @@ -1163,7 +1163,7 @@ } ], "network": "mainnet", - "hash": "6881e92a48f6025ab8b86dd02590544d1517ee05a123e95e41668cafffe6f88d" + "hash": "68d24560d9e49318dca82ab0975f526a8663d934225f0cb715cd1ff188def16d" } ] } \ No newline at end of file diff --git a/lib/go/templates/manifest.testnet.json b/lib/go/templates/manifest.testnet.json index 993eb143d..61a118e99 100755 --- a/lib/go/templates/manifest.testnet.json +++ b/lib/go/templates/manifest.testnet.json @@ -4,7 +4,7 @@ { "id": "TH.01", "name": "Withdraw Unlocked FLOW", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"The primary user account does not have an associated locked account\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -19,12 +19,12 @@ } ], "network": "testnet", - "hash": "baca378532499da57d1df14da64f07ca5a07f177cc3f65c3fe605347256ee2d7" + "hash": "094798e93daeacaa9ff262486a3683ec5a5e2204407e7d00bc3416fbf3efa3b1" }, { "id": "TH.02", "name": "Deposit Unlocked FLOW", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow a reference to TokenHolder\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"The primary user account does not have an associated locked account\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -39,7 +39,7 @@ } ], "network": "testnet", - "hash": "fc2b44ac4249a0e0a5a26d63b6e9ad7afbc08f311ba281ec59bdb8554f620e80" + "hash": "17ffcd60667893674d8d4044bdd8232959dc8b694df1dd88d1b9c5443352f253" }, { "id": "TH.06", @@ -468,7 +468,7 @@ { "id": "SCO.02", "name": "Register Delegator", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Registers a delegator in the staking collection resource\n/// for the specified nodeID and the amount of tokens to commit\n\ntransaction(id: String, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.registerDelegator(nodeID: id, amount: amount) \n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Registers a delegator in the staking collection resource\n/// for the specified nodeID and the amount of tokens to commit\n\ntransaction(id: String, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.registerDelegator(nodeID: id, amount: amount) \n }\n}\n", "arguments": [ { "type": "String", @@ -494,12 +494,12 @@ } ], "network": "testnet", - "hash": "bbc61359628d6e0c30c1338bfba7a1dba424b866c3f5eb13388dfd3f633d6f02" + "hash": "e093df9c425be9cdbee44bdbbd721f6aff523e41802a50cf0ff353873e9f9483" }, { "id": "SCO.03", "name": "Register Node", - "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n publicKeys: [Crypto.KeyListEntry]?) {\n\n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account\n ) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys! {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n publicKeys: [Crypto.KeyListEntry]?) {\n\n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account\n ) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys! {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -619,12 +619,12 @@ } ], "network": "testnet", - "hash": "a98abb80fe8321b37c65d66972d27cc7da9fe7d5e575fe39f95a71a84e306d31" + "hash": "ea29e83e0a6e6d4382001a9e2e0397b6ee19be4fb5850c29f271673f2db85b3a" }, { "id": "SCO.04", "name": "Create Machine Account", - "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Creates a machine account for a node that is already in the staking collection\n/// and adds public keys to the new account\n\ntransaction(nodeID: String, publicKeys: [Crypto.KeyListEntry]) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n } else {\n panic(\"Could not create a machine account for the node\")\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Creates a machine account for a node that is already in the staking collection\n/// and adds public keys to the new account\n\ntransaction(nodeID: String, publicKeys: [Crypto.KeyListEntry]) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n } else {\n panic(\"Could not create a machine account for the node\")\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -676,12 +676,12 @@ } ], "network": "testnet", - "hash": "f81cbe9d07980c4ac80257f63476fde140d08b0b040ed2ac8b3117067b95a19c" + "hash": "bb2b73496d87ca467d5409fa41901ab80ec02d41a66b5c097b4f60625e11c69d" }, { "id": "SCO.05", "name": "Request Unstaking", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Requests unstaking for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.requestUnstaking(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Requests unstaking for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.requestUnstaking(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -725,12 +725,12 @@ } ], "network": "testnet", - "hash": "0e868a8c719ebdf067198ec805e6d946b8d6b6ecc8780e141ecc6e7f1a23dcb4" + "hash": "2d59f2c2c402f919c8dba30009e31480d54e2b250d2e10456e1ff029bd7cce99" }, { "id": "SCO.06", "name": "Stake New Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits new tokens to stake for the specified node or delegator in the staking collection\n/// The tokens from the locked vault are used first, if it exists\n/// followed by the tokens from the unlocked vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeNewTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits new tokens to stake for the specified node or delegator in the staking collection\n/// The tokens from the locked vault are used first, if it exists\n/// followed by the tokens from the unlocked vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.stakeNewTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -774,12 +774,12 @@ } ], "network": "testnet", - "hash": "bd567a1cff4472091604f49eaa32bbb8b25dea7f4bdb7f7a4a40b1f9865d0169" + "hash": "cf2b03950077352487e6344ab65edc3e1856731ab9cf68aa2ebbe279ae496d4b" }, { "id": "SCO.07", "name": "Stake Rewarded Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits rewarded tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits rewarded tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.stakeRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -823,12 +823,12 @@ } ], "network": "testnet", - "hash": "39a656942f7255daaae8d414be2f9a55a7f1b2c0016d6506ccc60764dc2a5d24" + "hash": "4395faf2e515eea4d40f82416ad387575f0d5a580612223c361130e53e72f00b" }, { "id": "SCO.08", "name": "Stake Unstaked Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits unstaked tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.stakeUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits unstaked tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.stakeUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -872,12 +872,12 @@ } ], "network": "testnet", - "hash": "8aa46983fcdd33905720c59b280743817f9153fb04252928ffef2b672e4b5c93" + "hash": "0b1721f2a8ef6c0c4121ef83c7b38f2141eebcd65c72dab9ebaafe1b4d66fea8" }, { "id": "SCO.09", "name": "Unstake All", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Requests to unstake ALL tokens for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.unstakeAll(nodeID: nodeID)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Requests to unstake ALL tokens for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.unstakeAll(nodeID: nodeID)\n }\n}\n", "arguments": [ { "type": "String", @@ -892,12 +892,12 @@ } ], "network": "testnet", - "hash": "20f46888d167b973bb903248dbbcef45d4529bc41b7f7e3a03148bd909988c60" + "hash": "c84843e3399be2ce95ea00e7c17d72db3c5c3363ec008c7a1c1cfa5b6afe70ae" }, { "id": "SCO.10", "name": "Withdraw Rewarded Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw rewarded tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw rewarded tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -941,12 +941,12 @@ } ], "network": "testnet", - "hash": "6dc4302bdebb2ce5c154fe7726f00d38a9cef741995494eb925bc793123d44ed" + "hash": "5a07ca4c016973bdeb168590e111b2c2855833b5ece11ffb28b08b8668f258a8" }, { "id": "SCO.11", "name": "Withdraw Unstaked Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw unstaked tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault if it is there\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw unstaked tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault if it is there\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -990,12 +990,12 @@ } ], "network": "testnet", - "hash": "fe68dea0de693f29fdc7c46ed712f4c2c11b950d23edea0fdb767e04f71d6f34" + "hash": "01fd4ea83d20510d24ed9f245873a7ee2715aefb774495c80bce7e3e34d6442e" }, { "id": "SCO.12", "name": "Close Stake", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Closes out a staking object in the staking collection\n// This does not remove the record from the identity table,\n// but it does mean that the account that closes it cannot ever access it again\n\ntransaction(nodeID: String, delegatorID: UInt32?) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.closeStake(nodeID: nodeID, delegatorID: delegatorID)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Closes out a staking object in the staking collection\n// This does not remove the record from the identity table,\n// but it does mean that the account that closes it cannot ever access it again\n\ntransaction(nodeID: String, delegatorID: UInt32?) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.closeStake(nodeID: nodeID, delegatorID: delegatorID)\n }\n}\n", "arguments": [ { "type": "String", @@ -1028,12 +1028,12 @@ } ], "network": "testnet", - "hash": "b488275765d1c1166028a072f381d7dd15aadd30805e3b9b8ecdb9e8cefde91c" + "hash": "7e216d96d75414b27c2301a3b0a7816804d43014337a14731d1493531116d185" }, { "id": "SCO.13", "name": "Transfer Node", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeStaker object from an authorizers accoount\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeStaker object from an authorizers accoount\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the receiver's account\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", "arguments": [ { "type": "String", @@ -1059,12 +1059,12 @@ } ], "network": "testnet", - "hash": "57859903fde52b65b166f1f8fee9c18d6c7260739a8753a79ef014b02f0b2fab" + "hash": "311f4071dda8b17ac6cbc6f0a27e98bd426026825d3c68308903fead884e616e" }, { "id": "SCO.14", "name": "Transfer Delegator", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeDelegator object from an authorizers accoount\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeDelegator object from an authorizers accoount\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow a referamce to a StakingCollection in the receiver's account\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", "arguments": [ { "type": "String", @@ -1101,12 +1101,12 @@ } ], "network": "testnet", - "hash": "770b1a66b462e46e2cfaedaebedfddc94fe4e3a877b7e73f73b444f802c8c578" + "hash": "f9fa239cb78b3e07b8f8d56e173e2673b4b53aeb07d507a769c8d96eaf400b8d" }, { "id": "SCO.15", "name": "Withdraw From Machine Account", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw tokens from the machine account\n/// The tokens are automatically deposited to the unlocked account vault\n\ntransaction(nodeID: String, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawFromMachineAccount(nodeID: nodeID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw tokens from the machine account\n/// The tokens are automatically deposited to the unlocked account vault\n\ntransaction(nodeID: String, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.withdrawFromMachineAccount(nodeID: nodeID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -1132,12 +1132,12 @@ } ], "network": "testnet", - "hash": "ffc0618f599477283475121bb54789e9c7b860fa74d0bcbfb90d8551d4adba57" + "hash": "fdd40862af04dc36dd0e9e727966c6f81dd6be8246b9c70afd18297aac9e86a8" }, { "id": "SCO.16", "name": "Update Networking Address", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Changes the networking address for the specified node\n\ntransaction(nodeID: String, newAddress: String) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n self.stakingCollectionRef.updateNetworkingAddress(nodeID: nodeID, newAddress: newAddress)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Changes the networking address for the specified node\n\ntransaction(nodeID: String, newAddress: String) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n }\n\n execute {\n self.stakingCollectionRef.updateNetworkingAddress(nodeID: nodeID, newAddress: newAddress)\n }\n}\n", "arguments": [ { "type": "String", @@ -1163,7 +1163,7 @@ } ], "network": "testnet", - "hash": "0b8b6fbdd32ebcf5adf1a431e88bd8ac31bde3a64443a735f3ed597ebca48ae6" + "hash": "3a68789d8cd56e6c7b064057045a56340746aac710db57700de2c33eb6610e5f" } ] } \ No newline at end of file diff --git a/transactions/lockedTokens/user/deposit_tokens.cdc b/transactions/lockedTokens/user/deposit_tokens.cdc index ac3f79e27..29d4a24f6 100644 --- a/transactions/lockedTokens/user/deposit_tokens.cdc +++ b/transactions/lockedTokens/user/deposit_tokens.cdc @@ -9,7 +9,7 @@ transaction(amount: UFix64) { prepare(acct: auth(BorrowValue) &Account) { self.holderRef = acct.storage.borrow<&LockedTokens.TokenHolder>(from: LockedTokens.TokenHolderStoragePath) - ?? panic("Could not borrow a reference to TokenHolder") + ?? panic("The primary user account does not have an associated locked account") self.vaultRef = acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow flow token vault ref") diff --git a/transactions/lockedTokens/user/withdraw_tokens.cdc b/transactions/lockedTokens/user/withdraw_tokens.cdc index 6dfc29a35..cff2768b7 100644 --- a/transactions/lockedTokens/user/withdraw_tokens.cdc +++ b/transactions/lockedTokens/user/withdraw_tokens.cdc @@ -9,7 +9,7 @@ transaction(amount: UFix64) { prepare(acct: auth(BorrowValue) &Account) { self.holderRef = acct.storage.borrow(from: LockedTokens.TokenHolderStoragePath) - ?? panic("Could not borrow a reference to TokenHolder") + ?? panic("The primary user account does not have an associated locked account") self.vaultRef = acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Could not borrow flow token vault ref") diff --git a/transactions/stakingCollection/close_stake.cdc b/transactions/stakingCollection/close_stake.cdc index e8b53f7b6..22899cba8 100644 --- a/transactions/stakingCollection/close_stake.cdc +++ b/transactions/stakingCollection/close_stake.cdc @@ -10,7 +10,7 @@ transaction(nodeID: String, delegatorID: UInt32?) { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") } execute { diff --git a/transactions/stakingCollection/create_machine_account.cdc b/transactions/stakingCollection/create_machine_account.cdc index 8dcaa571d..9492318de 100644 --- a/transactions/stakingCollection/create_machine_account.cdc +++ b/transactions/stakingCollection/create_machine_account.cdc @@ -10,7 +10,7 @@ transaction(nodeID: String, publicKeys: [Crypto.KeyListEntry]) { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) { if publicKeys == nil || publicKeys!.length == 0 { diff --git a/transactions/stakingCollection/register_delegator.cdc b/transactions/stakingCollection/register_delegator.cdc index a72f33d1e..c99fea38e 100644 --- a/transactions/stakingCollection/register_delegator.cdc +++ b/transactions/stakingCollection/register_delegator.cdc @@ -9,7 +9,7 @@ transaction(id: String, amount: UFix64) { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") } execute { diff --git a/transactions/stakingCollection/register_node.cdc b/transactions/stakingCollection/register_node.cdc index ded7587f8..18d7964d5 100644 --- a/transactions/stakingCollection/register_node.cdc +++ b/transactions/stakingCollection/register_node.cdc @@ -16,7 +16,7 @@ transaction(id: String, prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") if let machineAccount = self.stakingCollectionRef.registerNode( id: id, diff --git a/transactions/stakingCollection/request_unstaking.cdc b/transactions/stakingCollection/request_unstaking.cdc index b22d4f163..44129a2ab 100644 --- a/transactions/stakingCollection/request_unstaking.cdc +++ b/transactions/stakingCollection/request_unstaking.cdc @@ -8,7 +8,7 @@ transaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") } execute { diff --git a/transactions/stakingCollection/stake_new_tokens.cdc b/transactions/stakingCollection/stake_new_tokens.cdc index cbccb54e9..af26f4f56 100644 --- a/transactions/stakingCollection/stake_new_tokens.cdc +++ b/transactions/stakingCollection/stake_new_tokens.cdc @@ -10,7 +10,7 @@ transaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") } execute { diff --git a/transactions/stakingCollection/stake_rewarded_tokens.cdc b/transactions/stakingCollection/stake_rewarded_tokens.cdc index eb6e43438..4a79dda94 100644 --- a/transactions/stakingCollection/stake_rewarded_tokens.cdc +++ b/transactions/stakingCollection/stake_rewarded_tokens.cdc @@ -8,7 +8,7 @@ transaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") } execute { diff --git a/transactions/stakingCollection/stake_unstaked_tokens.cdc b/transactions/stakingCollection/stake_unstaked_tokens.cdc index 597bda5e5..4b9c285e4 100644 --- a/transactions/stakingCollection/stake_unstaked_tokens.cdc +++ b/transactions/stakingCollection/stake_unstaked_tokens.cdc @@ -8,7 +8,7 @@ transaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") } execute { diff --git a/transactions/stakingCollection/transfer_delegator.cdc b/transactions/stakingCollection/transfer_delegator.cdc index db39432ad..b9cbdc0ef 100644 --- a/transactions/stakingCollection/transfer_delegator.cdc +++ b/transactions/stakingCollection/transfer_delegator.cdc @@ -16,7 +16,7 @@ transaction(nodeID: String, delegatorID: UInt32, to: Address) { // Get a reference to the authorizers StakingCollection self.fromStakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") // Get the PublicAccount of the account to transfer the NodeDelegator to. let toAccount = getAccount(to) @@ -24,7 +24,7 @@ transaction(nodeID: String, delegatorID: UInt32, to: Address) { // Borrow a capability to the public methods available on the receivers StakingCollection. self.toStakingCollectionCap = toAccount.capabilities .borrow<&FlowStakingCollection.StakingCollection>(FlowStakingCollection.StakingCollectionPublicPath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic("Could not borrow a referamce to a StakingCollection in the receiver's account") } execute { diff --git a/transactions/stakingCollection/transfer_node.cdc b/transactions/stakingCollection/transfer_node.cdc index f67d73357..9958c6eda 100644 --- a/transactions/stakingCollection/transfer_node.cdc +++ b/transactions/stakingCollection/transfer_node.cdc @@ -16,7 +16,7 @@ transaction(nodeID: String, to: Address) { // Get a reference to the authorizers StakingCollection self.fromStakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") // Get the PublicAccount of the account to transfer the NodeStaker to. let toAccount = getAccount(to) @@ -24,7 +24,7 @@ transaction(nodeID: String, to: Address) { // Borrow a capability to the public methods available on the receivers StakingCollection. self.toStakingCollectionCap = toAccount.capabilities .borrow<&FlowStakingCollection.StakingCollection>(FlowStakingCollection.StakingCollectionPublicPath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic("Could not borrow a reference to a StakingCollection in the receiver's account") let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID] ?? panic("Could not get machine account info for the specified node ID") diff --git a/transactions/stakingCollection/unstake_all.cdc b/transactions/stakingCollection/unstake_all.cdc index 8beac0a77..4030bdf4f 100644 --- a/transactions/stakingCollection/unstake_all.cdc +++ b/transactions/stakingCollection/unstake_all.cdc @@ -8,7 +8,7 @@ transaction(nodeID: String) { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") } execute { diff --git a/transactions/stakingCollection/update_networking_address.cdc b/transactions/stakingCollection/update_networking_address.cdc index 384b7261c..5e3cf4ae0 100644 --- a/transactions/stakingCollection/update_networking_address.cdc +++ b/transactions/stakingCollection/update_networking_address.cdc @@ -8,7 +8,7 @@ transaction(nodeID: String, newAddress: String) { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") } execute { diff --git a/transactions/stakingCollection/withdraw_from_machine_account.cdc b/transactions/stakingCollection/withdraw_from_machine_account.cdc index 411318220..7e139289f 100644 --- a/transactions/stakingCollection/withdraw_from_machine_account.cdc +++ b/transactions/stakingCollection/withdraw_from_machine_account.cdc @@ -9,7 +9,7 @@ transaction(nodeID: String, amount: UFix64) { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") } execute { diff --git a/transactions/stakingCollection/withdraw_rewarded_tokens.cdc b/transactions/stakingCollection/withdraw_rewarded_tokens.cdc index c3a1f3756..e44b14df0 100644 --- a/transactions/stakingCollection/withdraw_rewarded_tokens.cdc +++ b/transactions/stakingCollection/withdraw_rewarded_tokens.cdc @@ -10,7 +10,7 @@ transaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") } execute { diff --git a/transactions/stakingCollection/withdraw_unstaked_tokens.cdc b/transactions/stakingCollection/withdraw_unstaked_tokens.cdc index 5f8328059..4e69e38ee 100644 --- a/transactions/stakingCollection/withdraw_unstaked_tokens.cdc +++ b/transactions/stakingCollection/withdraw_unstaked_tokens.cdc @@ -10,7 +10,7 @@ transaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") } execute { From 47f335460784286c36bdc2538a8ffca8555b13dd Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Fri, 9 Feb 2024 13:38:35 -0600 Subject: [PATCH 083/160] add updated manifests with new account, FT, and NFT transactions and removed locked token staking txs --- lib/go/templates/cmd/manifest/manifest.go | 255 +- lib/go/templates/go.mod | 8 +- lib/go/templates/go.sum | 2172 +++++++++++++++++- lib/go/templates/internal/assets/assets.go | 71 + lib/go/templates/manifest.mainnet.json | 1087 ++++++--- lib/go/templates/manifest.testnet.json | 1087 ++++++--- lib/go/templates/service_templates.go | 16 +- lib/go/templates/templates.go | 69 +- transactions/accounts/add_key.cdc | 17 +- transactions/accounts/create_new_account.cdc | 22 +- transactions/accounts/revoke_key.cdc | 8 +- 11 files changed, 3963 insertions(+), 849 deletions(-) diff --git a/lib/go/templates/cmd/manifest/manifest.go b/lib/go/templates/cmd/manifest/manifest.go index 8cecd00e8..099f6bfe0 100644 --- a/lib/go/templates/cmd/manifest/manifest.go +++ b/lib/go/templates/cmd/manifest/manifest.go @@ -6,7 +6,10 @@ import ( "github.com/onflow/cadence" jsoncdc "github.com/onflow/cadence/encoding/json" + "github.com/onflow/cadence/runtime/common" "github.com/onflow/flow-go-sdk" + sdktemplates "github.com/onflow/flow-go-sdk/templates" + "github.com/onflow/flow-go-sdk/test" "github.com/onflow/flow-core-contracts/lib/go/templates" ) @@ -91,14 +94,14 @@ func generateManifest(env templates.Environment) *manifest { panic(err) } - sampleKeyWeightRaw, err := cadence.NewUFix64("1000.0") - if err != nil { - panic(err) - } - sampleKeyWeight := cadenceValue{sampleKeyWeightRaw} - - sampleSigAlgoEnumRawValue := cadenceValue{cadence.NewUInt8(1)} - sampleHashAlgoEnumRawValue := cadenceValue{cadence.NewUInt8(1)} + accountKeys := test.AccountKeyGenerator() + sampleFlowAccountKey, _ := accountKeys.NewWithSigner() + publicKeys := make([]cadence.Value, 1) + cadenceAccountKey, err := sdktemplates.AccountKeyToCadenceCryptoKey(sampleFlowAccountKey) + sampleCadenceAccountKey := cadenceValue{cadenceAccountKey} + publicKeys[0] = cadenceAccountKey + cadencePublicKeys := cadence.NewArray(publicKeys) + sampleCadenceAccountKeys := cadenceValue{cadencePublicKeys} sampleKeyIndex := cadenceValue{cadence.NewInt(1)} @@ -108,8 +111,10 @@ func generateManifest(env templates.Environment) *manifest { sampleID := cadenceValue{cadence.NewUInt64(10)} sampleNFTContractName := cadenceValue{cadence.String("TopShot")} - sampleStoragePathID := cadenceValue{cadence.String("flowTokenVault")} - samplePublicPathID := cadenceValue{cadence.String("flowTokenReceiver")} + cadenceStoragePath := cadence.Path{Domain: common.PathDomainStorage, Identifier: "samplePathIdentifier"} + sampleStoragePath := cadenceValue{cadenceStoragePath} + cadencePublicPath := cadence.Path{Domain: common.PathDomainStorage, Identifier: "samplePathIdentifier"} + samplePublicPath := cadenceValue{cadencePublicPath} sampleNodeID := cadenceValue{ cadence.String("88549335e1db7b5b46c2ad58ddb70b7a45e770cc5fe779650ba26f10e6bae5e6"), @@ -141,71 +146,40 @@ func generateManifest(env templates.Environment) *manifest { sampleDelegatorID := cadenceValue{cadence.NewUInt32(42)} - sampleRawKey := cadence.String("f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164") - sampleKey := cadenceValue{sampleRawKey} + sampleEmptyPublicKeys := cadence.NewArray([]cadence.Value{}) + + sampleOnePublicKey := cadence.NewArray([]cadence.Value{ + cadence.String("f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164"), + }) + + sampleThreePublicKeys := cadence.NewArray([]cadence.Value{ + cadence.String("f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164"), + cadence.String("f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164"), + cadence.String("f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164"), + }) m.addTemplate(generateTemplate( "FA.01", "Create Account", env, templates.GenerateCreateAccountScript, - []argument{ - { - Type: "String", - Name: "key", - Label: "Public Key", - SampleValues: []cadenceValue{sampleKey}, - }, - { - Type: "UInt8", - Name: "signatureAlgorithm", - Label: "Raw Value for Signature Algorithm Enum", - SampleValues: []cadenceValue{sampleSigAlgoEnumRawValue}, - }, - { - Type: "UInt8", - Name: "hashAlgorithm", - Label: "Raw Value for Hash Algorithm Enum", - SampleValues: []cadenceValue{sampleHashAlgoEnumRawValue}, - }, - { - Type: "UFix64", - Name: "weight", - Label: "Key Weight", - SampleValues: []cadenceValue{sampleKeyWeight}, - }, - }, + []argument{{ + Type: "[Crypto.KeyListEntry]", + Name: "publicKeys", + Label: "Public Keys", + SampleValues: []cadenceValue{sampleCadenceAccountKeys}, + }}, )) m.addTemplate(generateTemplate( "FA.02", "Add Key", env, templates.GenerateAddKeyScript, - []argument{ - { - Type: "String", - Name: "key", - Label: "Public Key", - SampleValues: []cadenceValue{sampleKey}, - }, - { - Type: "UInt8", - Name: "signatureAlgorithm", - Label: "Raw Value for Signature Algorithm Enum", - SampleValues: []cadenceValue{sampleSigAlgoEnumRawValue}, - }, - { - Type: "UInt8", - Name: "hashAlgorithm", - Label: "Raw Value for Hash Algorithm Enum", - SampleValues: []cadenceValue{sampleHashAlgoEnumRawValue}, - }, - { - Type: "UFix64", - Name: "weight", - Label: "Key Weight", - SampleValues: []cadenceValue{sampleKeyWeight}, - }, - }, + []argument{{ + Type: "Crypto.KeyListEntry", + Name: "key", + Label: "Public Key", + SampleValues: []cadenceValue{sampleCadenceAccountKey}, + }}, )) m.addTemplate(generateTemplate( @@ -241,9 +215,9 @@ func generateManifest(env templates.Environment) *manifest { )) m.addTemplate(generateTemplate( - "FT.02", "Transfer Fungible Token with Paths", + "FT.02", "Transfer Fungible Token", env, - templates.GenerateTransferGenericVaultWithPathsScript, + templates.GenerateTransferGenericVaultScript, []argument{ { Type: "UFix64", @@ -258,48 +232,16 @@ func generateManifest(env templates.Environment) *manifest { SampleValues: []cadenceValue{sampleAddress(env.Network)}, }, { - Type: "String", - Name: "senderPathIdentifier", - Label: "Sender's Collection Path Identifier", - SampleValues: []cadenceValue{sampleStoragePathID}, + Type: "StoragePath", + Name: "senderPath", + Label: "Sender's Collection Path", + SampleValues: []cadenceValue{sampleStoragePath}, }, { - Type: "String", - Name: "receiverPathIdentifier", - Label: "Recipient's Receiver Path Identifier", - SampleValues: []cadenceValue{samplePublicPathID}, - }, - }, - )) - - m.addTemplate(generateTemplate( - "FT.03", "Transfer Fungible Token with Address", - env, - templates.GenerateTransferGenericVaultWithAddressScript, - []argument{ - { - Type: "UFix64", - Name: "amount", - Label: "Amount", - SampleValues: []cadenceValue{sampleAmount}, - }, - { - Type: "Address", - Name: "to", - Label: "Recipient", - SampleValues: []cadenceValue{sampleAddress(env.Network)}, - }, - { - Type: "Address", - Name: "contractAddress", - Label: "FT Contract Address", - SampleValues: []cadenceValue{sampleAddress(env.Network)}, - }, - { - Type: "String", - Name: "contractName", - Label: "FT Contract Name", - SampleValues: []cadenceValue{sampleFTContractName}, + Type: "PublicPath", + Name: "receiverPath", + Label: "Recipient's Receiver Path", + SampleValues: []cadenceValue{samplePublicPath}, }, }, )) @@ -325,42 +267,16 @@ func generateManifest(env templates.Environment) *manifest { )) m.addTemplate(generateTemplate( - "NFT.02", "Transfer NFT with Paths", + "NFT.02", "Transfer NFT", env, - templates.GenerateTransferGenericNFTWithPathsScript, + templates.GenerateTransferGenericNFTScript, []argument{ - { - Type: "Address", - Name: "to", - Label: "Recipient", - SampleValues: []cadenceValue{sampleAddress(env.Network)}, - }, { Type: "UInt64", Name: "id", Label: "NFT ID to Transfer", SampleValues: []cadenceValue{sampleID}, }, - { - Type: "String", - Name: "senderPathIdentifier", - Label: "Sender's Collection Path Identifier", - SampleValues: []cadenceValue{sampleStoragePathID}, - }, - { - Type: "String", - Name: "receiverPathIdentifier", - Label: "Recipient's Receiver Path Identifier", - SampleValues: []cadenceValue{samplePublicPathID}, - }, - }, - )) - - m.addTemplate(generateTemplate( - "NFT.03", "Transfer NFT with Address", - env, - templates.GenerateTransferGenericNFTWithAddressScript, - []argument{ { Type: "Address", Name: "to", @@ -368,22 +284,16 @@ func generateManifest(env templates.Environment) *manifest { SampleValues: []cadenceValue{sampleAddress(env.Network)}, }, { - Type: "UInt64", - Name: "id", - Label: "NFT ID to Transfer", - SampleValues: []cadenceValue{sampleID}, - }, - { - Type: "Address", - Name: "contractAddress", - Label: "NFT Contract Address", - SampleValues: []cadenceValue{sampleAddress(env.Network)}, + Type: "StoragePath", + Name: "senderPath", + Label: "Sender's Collection Path", + SampleValues: []cadenceValue{sampleStoragePath}, }, { - Type: "String", - Name: "contractName", - Label: "NFT Contract Name", - SampleValues: []cadenceValue{sampleNFTContractName}, + Type: "PublicPath", + Name: "receiverPath", + Label: "Recipient's Receiver Path", + SampleValues: []cadenceValue{samplePublicPath}, }, }, )) @@ -481,22 +391,15 @@ func generateManifest(env templates.Environment) *manifest { SampleValues: []cadenceValue{sampleAmount}, }, { - Type: "String", - Name: "machineAccountKey", - Label: "Machine Account Public Key", - SampleValues: []cadenceValue{sampleKey}, - }, - { - Type: "UInt8", - Name: "machineAccountKeySignatureAlgorithm", - Label: "Raw Value for Machine Account Signature Algorithm Enum", - SampleValues: []cadenceValue{sampleSigAlgoEnumRawValue}, - }, - { - Type: "UInt8", - Name: "machineAccountKeyHashAlgorithm", - Label: "Raw Value for Machine Account Hash Algorithm Enum", - SampleValues: []cadenceValue{sampleHashAlgoEnumRawValue}, + Type: "[String]?", + Name: "publicKeys", + Label: "Public Keys", + SampleValues: []cadenceValue{ + sampleNullOptional, + optionalCadenceValue(sampleEmptyPublicKeys), + optionalCadenceValue(sampleOnePublicKey), + optionalCadenceValue(sampleThreePublicKeys), + }, }, }, )) @@ -513,22 +416,14 @@ func generateManifest(env templates.Environment) *manifest { SampleValues: []cadenceValue{sampleNodeID}, }, { - Type: "String", - Name: "machineAccountKey", - Label: "Machine Account Public Key", - SampleValues: []cadenceValue{sampleKey}, - }, - { - Type: "UInt8", - Name: "machineAccountKeySignatureAlgorithm", - Label: "Raw Value for Machine Account Signature Algorithm Enum", - SampleValues: []cadenceValue{sampleSigAlgoEnumRawValue}, - }, - { - Type: "UInt8", - Name: "machineAccountKeyHashAlgorithm", - Label: "Raw Value for Machine Account Hash Algorithm Enum", - SampleValues: []cadenceValue{sampleHashAlgoEnumRawValue}, + Type: "[String]", + Name: "publicKeys", + Label: "Public Keys", + SampleValues: []cadenceValue{ + {sampleEmptyPublicKeys}, + {sampleOnePublicKey}, + {sampleThreePublicKeys}, + }, }, }, )) diff --git a/lib/go/templates/go.mod b/lib/go/templates/go.mod index 2a338f45d..5c16b0ed0 100644 --- a/lib/go/templates/go.mod +++ b/lib/go/templates/go.mod @@ -5,7 +5,9 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.24.0+incompatible github.com/onflow/cadence v1.0.0-M3 + github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240209175139-2ab8303b23b7 github.com/onflow/flow-go-sdk v1.0.0-M1 + github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240209175113-e3b2202ee7a7 github.com/psiemens/sconfig v0.1.0 github.com/spf13/cobra v1.5.0 ) @@ -20,6 +22,7 @@ require ( github.com/fsnotify/fsnotify v1.6.0 // indirect github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c // indirect github.com/fxamacker/circlehash v0.3.0 // indirect + github.com/golang/protobuf v1.5.3 // indirect github.com/hashicorp/hcl v1.0.0 // indirect github.com/holiman/uint256 v1.2.3 // indirect github.com/inconshreveable/mousetrap v1.0.0 // indirect @@ -34,6 +37,8 @@ require ( github.com/mitchellh/mapstructure v1.4.1 // indirect github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f // indirect github.com/onflow/crypto v0.25.0 // indirect + github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 // indirect + github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba // indirect github.com/pelletier/go-toml v1.2.0 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect @@ -50,12 +55,13 @@ require ( github.com/x448/float16 v0.8.4 // indirect github.com/zeebo/blake3 v0.2.3 // indirect go.opentelemetry.io/otel v1.16.0 // indirect - golang.org/x/crypto v0.17.0 // indirect + golang.org/x/crypto v0.16.0 // indirect golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc // indirect golang.org/x/sys v0.15.0 // indirect golang.org/x/text v0.14.0 // indirect golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect gonum.org/v1/gonum v0.13.0 // indirect + google.golang.org/protobuf v1.31.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index 4586cb4a1..fa252451d 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -1,12 +1,15 @@ +cloud.google.com/go v0.0.0-20170206221025-ce650573d812/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= +cloud.google.com/go v0.43.0/go.mod h1:BOSR3VbTLkk6FDC/TcffxP4NF/FFBGA5ku+jvKOP7pg= cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= cloud.google.com/go v0.44.3/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= +cloud.google.com/go v0.51.0/go.mod h1:hWtGJ6gnXH+KgDv+V0zFGDvpi07n3z8ZNj3T1RW0Gcw= cloud.google.com/go v0.52.0/go.mod h1:pXajvRH/6o3+F9jDHZWQ5PbGhn+o8w9qiu/CffaVdO4= cloud.google.com/go v0.53.0/go.mod h1:fp/UouUEsRkN6ryDKNW/Upv/JBKnv6WDthjR6+vze6M= cloud.google.com/go v0.54.0/go.mod h1:1rq2OEkV3YMf6n/9ZvGWI3GWw0VoqH/1x2nd8Is/bPc= @@ -17,49 +20,1073 @@ cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHOb cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPTY= +cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg= +cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8= +cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0= +cloud.google.com/go v0.83.0/go.mod h1:Z7MJUsANfY0pYPdw0lbnivPx4/vhy/e2FEkSkF7vAVY= +cloud.google.com/go v0.84.0/go.mod h1:RazrYuxIK6Kb7YrzzhPoLmCVzl7Sup4NrbKPg8KHSUM= +cloud.google.com/go v0.87.0/go.mod h1:TpDYlFy7vuLzZMMZ+B6iRiELaY7z/gJPaqbMx6mlWcY= +cloud.google.com/go v0.90.0/go.mod h1:kRX0mNRHe0e2rC6oNakvwQqzyDmg57xJ+SZU1eT2aDQ= +cloud.google.com/go v0.93.3/go.mod h1:8utlLll2EF5XMAV15woO4lSbWQlk8rer9aLOfLh7+YI= +cloud.google.com/go v0.94.1/go.mod h1:qAlAugsXlC+JWO+Bke5vCtc9ONxjQT3drlTTnAplMW4= +cloud.google.com/go v0.97.0/go.mod h1:GF7l59pYBVlXQIBLx3a761cZ41F9bBH3JUlihCt2Udc= +cloud.google.com/go v0.99.0/go.mod h1:w0Xx2nLzqWJPuozYQX+hFfCSI8WioryfRDzkoI/Y2ZA= +cloud.google.com/go v0.100.1/go.mod h1:fs4QogzfH5n2pBXBP9vRiU+eCny7lD2vmFZy79Iuw1U= +cloud.google.com/go v0.100.2/go.mod h1:4Xra9TjzAeYHrl5+oeLlzbM2k3mjVhZh4UqTZ//w99A= +cloud.google.com/go v0.102.0/go.mod h1:oWcCzKlqJ5zgHQt9YsaeTY9KzIvjyy0ArmiBUgpQ+nc= +cloud.google.com/go v0.102.1/go.mod h1:XZ77E9qnTEnrgEOvr4xzfdX5TRo7fB4T2F4O6+34hIU= +cloud.google.com/go v0.104.0/go.mod h1:OO6xxXdJyvuJPcEPBLN9BJPD+jep5G1+2U5B5gkRYtA= +cloud.google.com/go v0.105.0/go.mod h1:PrLgOJNe5nfE9UMxKxgXj4mD3voiP+YQ6gdt6KMFOKM= +cloud.google.com/go v0.107.0/go.mod h1:wpc2eNrD7hXUTy8EKS10jkxpZBjASrORK7goS+3YX2I= +cloud.google.com/go v0.110.0/go.mod h1:SJnCLqQ0FCFGSZMUNUf84MV3Aia54kn7pi8st7tMzaY= +cloud.google.com/go v0.110.2/go.mod h1:k04UEeEtb6ZBRTv3dZz4CeJC3jKGxyhl0sAiVVquxiw= +cloud.google.com/go v0.110.4/go.mod h1:+EYjdK8e5RME/VY/qLCAtuyALQ9q67dvuum8i+H5xsI= +cloud.google.com/go v0.110.6/go.mod h1:+EYjdK8e5RME/VY/qLCAtuyALQ9q67dvuum8i+H5xsI= +cloud.google.com/go v0.110.7/go.mod h1:+EYjdK8e5RME/VY/qLCAtuyALQ9q67dvuum8i+H5xsI= +cloud.google.com/go v0.110.8/go.mod h1:Iz8AkXJf1qmxC3Oxoep8R1T36w8B92yU29PcBhHO5fk= +cloud.google.com/go/accessapproval v1.4.0/go.mod h1:zybIuC3KpDOvotz59lFe5qxRZx6C75OtwbisN56xYB4= +cloud.google.com/go/accessapproval v1.5.0/go.mod h1:HFy3tuiGvMdcd/u+Cu5b9NkO1pEICJ46IR82PoUdplw= +cloud.google.com/go/accessapproval v1.6.0/go.mod h1:R0EiYnwV5fsRFiKZkPHr6mwyk2wxUJ30nL4j2pcFY2E= +cloud.google.com/go/accessapproval v1.7.1/go.mod h1:JYczztsHRMK7NTXb6Xw+dwbs/WnOJxbo/2mTI+Kgg68= +cloud.google.com/go/accessapproval v1.7.2/go.mod h1:/gShiq9/kK/h8T/eEn1BTzalDvk0mZxJlhfw0p+Xuc0= +cloud.google.com/go/accesscontextmanager v1.3.0/go.mod h1:TgCBehyr5gNMz7ZaH9xubp+CE8dkrszb4oK9CWyvD4o= +cloud.google.com/go/accesscontextmanager v1.4.0/go.mod h1:/Kjh7BBu/Gh83sv+K60vN9QE5NJcd80sU33vIe2IFPE= +cloud.google.com/go/accesscontextmanager v1.6.0/go.mod h1:8XCvZWfYw3K/ji0iVnp+6pu7huxoQTLmxAbVjbloTtM= +cloud.google.com/go/accesscontextmanager v1.7.0/go.mod h1:CEGLewx8dwa33aDAZQujl7Dx+uYhS0eay198wB/VumQ= +cloud.google.com/go/accesscontextmanager v1.8.0/go.mod h1:uI+AI/r1oyWK99NN8cQ3UK76AMelMzgZCvJfsi2c+ps= +cloud.google.com/go/accesscontextmanager v1.8.1/go.mod h1:JFJHfvuaTC+++1iL1coPiG1eu5D24db2wXCDWDjIrxo= +cloud.google.com/go/accesscontextmanager v1.8.2/go.mod h1:E6/SCRM30elQJ2PKtFMs2YhfJpZSNcJyejhuzoId4Zk= +cloud.google.com/go/aiplatform v1.22.0/go.mod h1:ig5Nct50bZlzV6NvKaTwmplLLddFx0YReh9WfTO5jKw= +cloud.google.com/go/aiplatform v1.24.0/go.mod h1:67UUvRBKG6GTayHKV8DBv2RtR1t93YRu5B1P3x99mYY= +cloud.google.com/go/aiplatform v1.27.0/go.mod h1:Bvxqtl40l0WImSb04d0hXFU7gDOiq9jQmorivIiWcKg= +cloud.google.com/go/aiplatform v1.35.0/go.mod h1:7MFT/vCaOyZT/4IIFfxH4ErVg/4ku6lKv3w0+tFTgXQ= +cloud.google.com/go/aiplatform v1.36.1/go.mod h1:WTm12vJRPARNvJ+v6P52RDHCNe4AhvjcIZ/9/RRHy/k= +cloud.google.com/go/aiplatform v1.37.0/go.mod h1:IU2Cv29Lv9oCn/9LkFiiuKfwrRTq+QQMbW+hPCxJGZw= +cloud.google.com/go/aiplatform v1.45.0/go.mod h1:Iu2Q7sC7QGhXUeOhAj/oCK9a+ULz1O4AotZiqjQ8MYA= +cloud.google.com/go/aiplatform v1.48.0/go.mod h1:Iu2Q7sC7QGhXUeOhAj/oCK9a+ULz1O4AotZiqjQ8MYA= +cloud.google.com/go/aiplatform v1.50.0/go.mod h1:IRc2b8XAMTa9ZmfJV1BCCQbieWWvDnP1A8znyz5N7y4= +cloud.google.com/go/aiplatform v1.51.0/go.mod h1:IRc2b8XAMTa9ZmfJV1BCCQbieWWvDnP1A8znyz5N7y4= +cloud.google.com/go/aiplatform v1.51.1/go.mod h1:kY3nIMAVQOK2XDqDPHaOuD9e+FdMA6OOpfBjsvaFSOo= +cloud.google.com/go/analytics v0.11.0/go.mod h1:DjEWCu41bVbYcKyvlws9Er60YE4a//bK6mnhWvQeFNI= +cloud.google.com/go/analytics v0.12.0/go.mod h1:gkfj9h6XRf9+TS4bmuhPEShsh3hH8PAZzm/41OOhQd4= +cloud.google.com/go/analytics v0.17.0/go.mod h1:WXFa3WSym4IZ+JiKmavYdJwGG/CvpqiqczmL59bTD9M= +cloud.google.com/go/analytics v0.18.0/go.mod h1:ZkeHGQlcIPkw0R/GW+boWHhCOR43xz9RN/jn7WcqfIE= +cloud.google.com/go/analytics v0.19.0/go.mod h1:k8liqf5/HCnOUkbawNtrWWc+UAzyDlW89doe8TtoDsE= +cloud.google.com/go/analytics v0.21.2/go.mod h1:U8dcUtmDmjrmUTnnnRnI4m6zKn/yaA5N9RlEkYFHpQo= +cloud.google.com/go/analytics v0.21.3/go.mod h1:U8dcUtmDmjrmUTnnnRnI4m6zKn/yaA5N9RlEkYFHpQo= +cloud.google.com/go/analytics v0.21.4/go.mod h1:zZgNCxLCy8b2rKKVfC1YkC2vTrpfZmeRCySM3aUbskA= +cloud.google.com/go/apigateway v1.3.0/go.mod h1:89Z8Bhpmxu6AmUxuVRg/ECRGReEdiP3vQtk4Z1J9rJk= +cloud.google.com/go/apigateway v1.4.0/go.mod h1:pHVY9MKGaH9PQ3pJ4YLzoj6U5FUDeDFBllIz7WmzJoc= +cloud.google.com/go/apigateway v1.5.0/go.mod h1:GpnZR3Q4rR7LVu5951qfXPJCHquZt02jf7xQx7kpqN8= +cloud.google.com/go/apigateway v1.6.1/go.mod h1:ufAS3wpbRjqfZrzpvLC2oh0MFlpRJm2E/ts25yyqmXA= +cloud.google.com/go/apigateway v1.6.2/go.mod h1:CwMC90nnZElorCW63P2pAYm25AtQrHfuOkbRSHj0bT8= +cloud.google.com/go/apigeeconnect v1.3.0/go.mod h1:G/AwXFAKo0gIXkPTVfZDd2qA1TxBXJ3MgMRBQkIi9jc= +cloud.google.com/go/apigeeconnect v1.4.0/go.mod h1:kV4NwOKqjvt2JYR0AoIWo2QGfoRtn/pkS3QlHp0Ni04= +cloud.google.com/go/apigeeconnect v1.5.0/go.mod h1:KFaCqvBRU6idyhSNyn3vlHXc8VMDJdRmwDF6JyFRqZ8= +cloud.google.com/go/apigeeconnect v1.6.1/go.mod h1:C4awq7x0JpLtrlQCr8AzVIzAaYgngRqWf9S5Uhg+wWs= +cloud.google.com/go/apigeeconnect v1.6.2/go.mod h1:s6O0CgXT9RgAxlq3DLXvG8riw8PYYbU/v25jqP3Dy18= +cloud.google.com/go/apigeeregistry v0.4.0/go.mod h1:EUG4PGcsZvxOXAdyEghIdXwAEi/4MEaoqLMLDMIwKXY= +cloud.google.com/go/apigeeregistry v0.5.0/go.mod h1:YR5+s0BVNZfVOUkMa5pAR2xGd0A473vA5M7j247o1wM= +cloud.google.com/go/apigeeregistry v0.6.0/go.mod h1:BFNzW7yQVLZ3yj0TKcwzb8n25CFBri51GVGOEUcgQsc= +cloud.google.com/go/apigeeregistry v0.7.1/go.mod h1:1XgyjZye4Mqtw7T9TsY4NW10U7BojBvG4RMD+vRDrIw= +cloud.google.com/go/apigeeregistry v0.7.2/go.mod h1:9CA2B2+TGsPKtfi3F7/1ncCCsL62NXBRfM6iPoGSM+8= +cloud.google.com/go/apikeys v0.4.0/go.mod h1:XATS/yqZbaBK0HOssf+ALHp8jAlNHUgyfprvNcBIszU= +cloud.google.com/go/apikeys v0.5.0/go.mod h1:5aQfwY4D+ewMMWScd3hm2en3hCj+BROlyrt3ytS7KLI= +cloud.google.com/go/apikeys v0.6.0/go.mod h1:kbpXu5upyiAlGkKrJgQl8A0rKNNJ7dQ377pdroRSSi8= +cloud.google.com/go/appengine v1.4.0/go.mod h1:CS2NhuBuDXM9f+qscZ6V86m1MIIqPj3WC/UoEuR1Sno= +cloud.google.com/go/appengine v1.5.0/go.mod h1:TfasSozdkFI0zeoxW3PTBLiNqRmzraodCWatWI9Dmak= +cloud.google.com/go/appengine v1.6.0/go.mod h1:hg6i0J/BD2cKmDJbaFSYHFyZkgBEfQrDg/X0V5fJn84= +cloud.google.com/go/appengine v1.7.0/go.mod h1:eZqpbHFCqRGa2aCdope7eC0SWLV1j0neb/QnMJVWx6A= +cloud.google.com/go/appengine v1.7.1/go.mod h1:IHLToyb/3fKutRysUlFO0BPt5j7RiQ45nrzEJmKTo6E= +cloud.google.com/go/appengine v1.8.1/go.mod h1:6NJXGLVhZCN9aQ/AEDvmfzKEfoYBlfB80/BHiKVputY= +cloud.google.com/go/appengine v1.8.2/go.mod h1:WMeJV9oZ51pvclqFN2PqHoGnys7rK0rz6s3Mp6yMvDo= +cloud.google.com/go/area120 v0.5.0/go.mod h1:DE/n4mp+iqVyvxHN41Vf1CR602GiHQjFPusMFW6bGR4= +cloud.google.com/go/area120 v0.6.0/go.mod h1:39yFJqWVgm0UZqWTOdqkLhjoC7uFfgXRC8g/ZegeAh0= +cloud.google.com/go/area120 v0.7.0/go.mod h1:a3+8EUD1SX5RUcCs3MY5YasiO1z6yLiNLRiFrykbynY= +cloud.google.com/go/area120 v0.7.1/go.mod h1:j84i4E1RboTWjKtZVWXPqvK5VHQFJRF2c1Nm69pWm9k= +cloud.google.com/go/area120 v0.8.1/go.mod h1:BVfZpGpB7KFVNxPiQBuHkX6Ed0rS51xIgmGyjrAfzsg= +cloud.google.com/go/area120 v0.8.2/go.mod h1:a5qfo+x77SRLXnCynFWPUZhnZGeSgvQ+Y0v1kSItkh4= +cloud.google.com/go/artifactregistry v1.6.0/go.mod h1:IYt0oBPSAGYj/kprzsBjZ/4LnG/zOcHyFHjWPCi6SAQ= +cloud.google.com/go/artifactregistry v1.7.0/go.mod h1:mqTOFOnGZx8EtSqK/ZWcsm/4U8B77rbcLP6ruDU2Ixk= +cloud.google.com/go/artifactregistry v1.8.0/go.mod h1:w3GQXkJX8hiKN0v+at4b0qotwijQbYUqF2GWkZzAhC0= +cloud.google.com/go/artifactregistry v1.9.0/go.mod h1:2K2RqvA2CYvAeARHRkLDhMDJ3OXy26h3XW+3/Jh2uYc= +cloud.google.com/go/artifactregistry v1.11.1/go.mod h1:lLYghw+Itq9SONbCa1YWBoWs1nOucMH0pwXN1rOBZFI= +cloud.google.com/go/artifactregistry v1.11.2/go.mod h1:nLZns771ZGAwVLzTX/7Al6R9ehma4WUEhZGWV6CeQNQ= +cloud.google.com/go/artifactregistry v1.12.0/go.mod h1:o6P3MIvtzTOnmvGagO9v/rOjjA0HmhJ+/6KAXrmYDCI= +cloud.google.com/go/artifactregistry v1.13.0/go.mod h1:uy/LNfoOIivepGhooAUpL1i30Hgee3Cu0l4VTWHUC08= +cloud.google.com/go/artifactregistry v1.14.1/go.mod h1:nxVdG19jTaSTu7yA7+VbWL346r3rIdkZ142BSQqhn5E= +cloud.google.com/go/artifactregistry v1.14.2/go.mod h1:Xk+QbsKEb0ElmyeMfdHAey41B+qBq3q5R5f5xD4XT3U= +cloud.google.com/go/artifactregistry v1.14.3/go.mod h1:A2/E9GXnsyXl7GUvQ/2CjHA+mVRoWAXC0brg2os+kNI= +cloud.google.com/go/asset v1.5.0/go.mod h1:5mfs8UvcM5wHhqtSv8J1CtxxaQq3AdBxxQi2jGW/K4o= +cloud.google.com/go/asset v1.7.0/go.mod h1:YbENsRK4+xTiL+Ofoj5Ckf+O17kJtgp3Y3nn4uzZz5s= +cloud.google.com/go/asset v1.8.0/go.mod h1:mUNGKhiqIdbr8X7KNayoYvyc4HbbFO9URsjbytpUaW0= +cloud.google.com/go/asset v1.9.0/go.mod h1:83MOE6jEJBMqFKadM9NLRcs80Gdw76qGuHn8m3h8oHQ= +cloud.google.com/go/asset v1.10.0/go.mod h1:pLz7uokL80qKhzKr4xXGvBQXnzHn5evJAEAtZiIb0wY= +cloud.google.com/go/asset v1.11.1/go.mod h1:fSwLhbRvC9p9CXQHJ3BgFeQNM4c9x10lqlrdEUYXlJo= +cloud.google.com/go/asset v1.12.0/go.mod h1:h9/sFOa4eDIyKmH6QMpm4eUK3pDojWnUhTgJlk762Hg= +cloud.google.com/go/asset v1.13.0/go.mod h1:WQAMyYek/b7NBpYq/K4KJWcRqzoalEsxz/t/dTk4THw= +cloud.google.com/go/asset v1.14.1/go.mod h1:4bEJ3dnHCqWCDbWJ/6Vn7GVI9LerSi7Rfdi03hd+WTQ= +cloud.google.com/go/asset v1.15.0/go.mod h1:tpKafV6mEut3+vN9ScGvCHXHj7FALFVta+okxFECHcg= +cloud.google.com/go/asset v1.15.1/go.mod h1:yX/amTvFWRpp5rcFq6XbCxzKT8RJUam1UoboE179jU4= +cloud.google.com/go/assuredworkloads v1.5.0/go.mod h1:n8HOZ6pff6re5KYfBXcFvSViQjDwxFkAkmUFffJRbbY= +cloud.google.com/go/assuredworkloads v1.6.0/go.mod h1:yo2YOk37Yc89Rsd5QMVECvjaMKymF9OP+QXWlKXUkXw= +cloud.google.com/go/assuredworkloads v1.7.0/go.mod h1:z/736/oNmtGAyU47reJgGN+KVoYoxeLBoj4XkKYscNI= +cloud.google.com/go/assuredworkloads v1.8.0/go.mod h1:AsX2cqyNCOvEQC8RMPnoc0yEarXQk6WEKkxYfL6kGIo= +cloud.google.com/go/assuredworkloads v1.9.0/go.mod h1:kFuI1P78bplYtT77Tb1hi0FMxM0vVpRC7VVoJC3ZoT0= +cloud.google.com/go/assuredworkloads v1.10.0/go.mod h1:kwdUQuXcedVdsIaKgKTp9t0UJkE5+PAVNhdQm4ZVq2E= +cloud.google.com/go/assuredworkloads v1.11.1/go.mod h1:+F04I52Pgn5nmPG36CWFtxmav6+7Q+c5QyJoL18Lry0= +cloud.google.com/go/assuredworkloads v1.11.2/go.mod h1:O1dfr+oZJMlE6mw0Bp0P1KZSlj5SghMBvTpZqIcUAW4= +cloud.google.com/go/automl v1.5.0/go.mod h1:34EjfoFGMZ5sgJ9EoLsRtdPSNZLcfflJR39VbVNS2M0= +cloud.google.com/go/automl v1.6.0/go.mod h1:ugf8a6Fx+zP0D59WLhqgTDsQI9w07o64uf/Is3Nh5p8= +cloud.google.com/go/automl v1.7.0/go.mod h1:RL9MYCCsJEOmt0Wf3z9uzG0a7adTT1fe+aObgSpkCt8= +cloud.google.com/go/automl v1.8.0/go.mod h1:xWx7G/aPEe/NP+qzYXktoBSDfjO+vnKMGgsApGJJquM= +cloud.google.com/go/automl v1.12.0/go.mod h1:tWDcHDp86aMIuHmyvjuKeeHEGq76lD7ZqfGLN6B0NuU= +cloud.google.com/go/automl v1.13.1/go.mod h1:1aowgAHWYZU27MybSCFiukPO7xnyawv7pt3zK4bheQE= +cloud.google.com/go/automl v1.13.2/go.mod h1:gNY/fUmDEN40sP8amAX3MaXkxcqPIn7F1UIIPZpy4Mg= +cloud.google.com/go/baremetalsolution v0.3.0/go.mod h1:XOrocE+pvK1xFfleEnShBlNAXf+j5blPPxrhjKgnIFc= +cloud.google.com/go/baremetalsolution v0.4.0/go.mod h1:BymplhAadOO/eBa7KewQ0Ppg4A4Wplbn+PsFKRLo0uI= +cloud.google.com/go/baremetalsolution v0.5.0/go.mod h1:dXGxEkmR9BMwxhzBhV0AioD0ULBmuLZI8CdwalUxuss= +cloud.google.com/go/baremetalsolution v1.1.1/go.mod h1:D1AV6xwOksJMV4OSlWHtWuFNZZYujJknMAP4Qa27QIA= +cloud.google.com/go/baremetalsolution v1.2.0/go.mod h1:68wi9AwPYkEWIUT4SvSGS9UJwKzNpshjHsH4lzk8iOw= +cloud.google.com/go/baremetalsolution v1.2.1/go.mod h1:3qKpKIw12RPXStwQXcbhfxVj1dqQGEvcmA+SX/mUR88= +cloud.google.com/go/batch v0.3.0/go.mod h1:TR18ZoAekj1GuirsUsR1ZTKN3FC/4UDnScjT8NXImFE= +cloud.google.com/go/batch v0.4.0/go.mod h1:WZkHnP43R/QCGQsZ+0JyG4i79ranE2u8xvjq/9+STPE= +cloud.google.com/go/batch v0.7.0/go.mod h1:vLZN95s6teRUqRQ4s3RLDsH8PvboqBK+rn1oevL159g= +cloud.google.com/go/batch v1.3.1/go.mod h1:VguXeQKXIYaeeIYbuozUmBR13AfL4SJP7IltNPS+A4A= +cloud.google.com/go/batch v1.4.1/go.mod h1:KdBmDD61K0ovcxoRHGrN6GmOBWeAOyCgKD0Mugx4Fkk= +cloud.google.com/go/batch v1.5.0/go.mod h1:KdBmDD61K0ovcxoRHGrN6GmOBWeAOyCgKD0Mugx4Fkk= +cloud.google.com/go/batch v1.5.1/go.mod h1:RpBuIYLkQu8+CWDk3dFD/t/jOCGuUpkpX+Y0n1Xccs8= +cloud.google.com/go/beyondcorp v0.2.0/go.mod h1:TB7Bd+EEtcw9PCPQhCJtJGjk/7TC6ckmnSFS+xwTfm4= +cloud.google.com/go/beyondcorp v0.3.0/go.mod h1:E5U5lcrcXMsCuoDNyGrpyTm/hn7ne941Jz2vmksAxW8= +cloud.google.com/go/beyondcorp v0.4.0/go.mod h1:3ApA0mbhHx6YImmuubf5pyW8srKnCEPON32/5hj+RmM= +cloud.google.com/go/beyondcorp v0.5.0/go.mod h1:uFqj9X+dSfrheVp7ssLTaRHd2EHqSL4QZmH4e8WXGGU= +cloud.google.com/go/beyondcorp v0.6.1/go.mod h1:YhxDWw946SCbmcWo3fAhw3V4XZMSpQ/VYfcKGAEU8/4= +cloud.google.com/go/beyondcorp v1.0.0/go.mod h1:YhxDWw946SCbmcWo3fAhw3V4XZMSpQ/VYfcKGAEU8/4= +cloud.google.com/go/beyondcorp v1.0.1/go.mod h1:zl/rWWAFVeV+kx+X2Javly7o1EIQThU4WlkynffL/lk= cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= cloud.google.com/go/bigquery v1.3.0/go.mod h1:PjpwJnslEMmckchkHFfq+HTD2DmtT67aNFKH1/VBDHE= cloud.google.com/go/bigquery v1.4.0/go.mod h1:S8dzgnTigyfTmLBfrtrhyYhwRxG72rYxvftPBK2Dvzc= cloud.google.com/go/bigquery v1.5.0/go.mod h1:snEHRnqQbz117VIFhE8bmtwIDY80NLUZUMb4Nv6dBIg= cloud.google.com/go/bigquery v1.7.0/go.mod h1://okPTzCYNXSlb24MZs83e2Do+h+VXtc4gLoIoXIAPc= cloud.google.com/go/bigquery v1.8.0/go.mod h1:J5hqkt3O0uAFnINi6JXValWIb1v0goeZM77hZzJN/fQ= +cloud.google.com/go/bigquery v1.42.0/go.mod h1:8dRTJxhtG+vwBKzE5OseQn/hiydoQN3EedCaOdYmxRA= +cloud.google.com/go/bigquery v1.43.0/go.mod h1:ZMQcXHsl+xmU1z36G2jNGZmKp9zNY5BUua5wDgmNCfw= +cloud.google.com/go/bigquery v1.44.0/go.mod h1:0Y33VqXTEsbamHJvJHdFmtqHvMIY28aK1+dFsvaChGc= +cloud.google.com/go/bigquery v1.47.0/go.mod h1:sA9XOgy0A8vQK9+MWhEQTY6Tix87M/ZurWFIxmF9I/E= +cloud.google.com/go/bigquery v1.48.0/go.mod h1:QAwSz+ipNgfL5jxiaK7weyOhzdoAy1zFm0Nf1fysJac= +cloud.google.com/go/bigquery v1.49.0/go.mod h1:Sv8hMmTFFYBlt/ftw2uN6dFdQPzBlREY9yBh7Oy7/4Q= +cloud.google.com/go/bigquery v1.50.0/go.mod h1:YrleYEh2pSEbgTBZYMJ5SuSr0ML3ypjRB1zgf7pvQLU= +cloud.google.com/go/bigquery v1.52.0/go.mod h1:3b/iXjRQGU4nKa87cXeg6/gogLjO8C6PmuM8i5Bi/u4= +cloud.google.com/go/bigquery v1.53.0/go.mod h1:3b/iXjRQGU4nKa87cXeg6/gogLjO8C6PmuM8i5Bi/u4= +cloud.google.com/go/bigquery v1.55.0/go.mod h1:9Y5I3PN9kQWuid6183JFhOGOW3GcirA5LpsKCUn+2ec= +cloud.google.com/go/bigquery v1.56.0/go.mod h1:KDcsploXTEY7XT3fDQzMUZlpQLHzE4itubHrnmhUrZA= +cloud.google.com/go/bigtable v1.2.0/go.mod h1:JcVAOl45lrTmQfLj7T6TxyMzIN/3FGGcFm+2xVAli2o= +cloud.google.com/go/billing v1.4.0/go.mod h1:g9IdKBEFlItS8bTtlrZdVLWSSdSyFUZKXNS02zKMOZY= +cloud.google.com/go/billing v1.5.0/go.mod h1:mztb1tBc3QekhjSgmpf/CV4LzWXLzCArwpLmP2Gm88s= +cloud.google.com/go/billing v1.6.0/go.mod h1:WoXzguj+BeHXPbKfNWkqVtDdzORazmCjraY+vrxcyvI= +cloud.google.com/go/billing v1.7.0/go.mod h1:q457N3Hbj9lYwwRbnlD7vUpyjq6u5U1RAOArInEiD5Y= +cloud.google.com/go/billing v1.12.0/go.mod h1:yKrZio/eu+okO/2McZEbch17O5CB5NpZhhXG6Z766ss= +cloud.google.com/go/billing v1.13.0/go.mod h1:7kB2W9Xf98hP9Sr12KfECgfGclsH3CQR0R08tnRlRbc= +cloud.google.com/go/billing v1.16.0/go.mod h1:y8vx09JSSJG02k5QxbycNRrN7FGZB6F3CAcgum7jvGA= +cloud.google.com/go/billing v1.17.0/go.mod h1:Z9+vZXEq+HwH7bhJkyI4OQcR6TSbeMrjlpEjO2vzY64= +cloud.google.com/go/billing v1.17.1/go.mod h1:Z9+vZXEq+HwH7bhJkyI4OQcR6TSbeMrjlpEjO2vzY64= +cloud.google.com/go/billing v1.17.2/go.mod h1:u/AdV/3wr3xoRBk5xvUzYMS1IawOAPwQMuHgHMdljDg= +cloud.google.com/go/binaryauthorization v1.1.0/go.mod h1:xwnoWu3Y84jbuHa0zd526MJYmtnVXn0syOjaJgy4+dM= +cloud.google.com/go/binaryauthorization v1.2.0/go.mod h1:86WKkJHtRcv5ViNABtYMhhNWRrD1Vpi//uKEy7aYEfI= +cloud.google.com/go/binaryauthorization v1.3.0/go.mod h1:lRZbKgjDIIQvzYQS1p99A7/U1JqvqeZg0wiI5tp6tg0= +cloud.google.com/go/binaryauthorization v1.4.0/go.mod h1:tsSPQrBd77VLplV70GUhBf/Zm3FsKmgSqgm4UmiDItk= +cloud.google.com/go/binaryauthorization v1.5.0/go.mod h1:OSe4OU1nN/VswXKRBmciKpo9LulY41gch5c68htf3/Q= +cloud.google.com/go/binaryauthorization v1.6.1/go.mod h1:TKt4pa8xhowwffiBmbrbcxijJRZED4zrqnwZ1lKH51U= +cloud.google.com/go/binaryauthorization v1.7.0/go.mod h1:Zn+S6QqTMn6odcMU1zDZCJxPjU2tZPV1oDl45lWY154= +cloud.google.com/go/binaryauthorization v1.7.1/go.mod h1:GTAyfRWYgcbsP3NJogpV3yeunbUIjx2T9xVeYovtURE= +cloud.google.com/go/certificatemanager v1.3.0/go.mod h1:n6twGDvcUBFu9uBgt4eYvvf3sQ6My8jADcOVwHmzadg= +cloud.google.com/go/certificatemanager v1.4.0/go.mod h1:vowpercVFyqs8ABSmrdV+GiFf2H/ch3KyudYQEMM590= +cloud.google.com/go/certificatemanager v1.6.0/go.mod h1:3Hh64rCKjRAX8dXgRAyOcY5vQ/fE1sh8o+Mdd6KPgY8= +cloud.google.com/go/certificatemanager v1.7.1/go.mod h1:iW8J3nG6SaRYImIa+wXQ0g8IgoofDFRp5UMzaNk1UqI= +cloud.google.com/go/certificatemanager v1.7.2/go.mod h1:15SYTDQMd00kdoW0+XY5d9e+JbOPjp24AvF48D8BbcQ= +cloud.google.com/go/channel v1.8.0/go.mod h1:W5SwCXDJsq/rg3tn3oG0LOxpAo6IMxNa09ngphpSlnk= +cloud.google.com/go/channel v1.9.0/go.mod h1:jcu05W0my9Vx4mt3/rEHpfxc9eKi9XwsdDL8yBMbKUk= +cloud.google.com/go/channel v1.11.0/go.mod h1:IdtI0uWGqhEeatSB62VOoJ8FSUhJ9/+iGkJVqp74CGE= +cloud.google.com/go/channel v1.12.0/go.mod h1:VkxCGKASi4Cq7TbXxlaBezonAYpp1GCnKMY6tnMQnLU= +cloud.google.com/go/channel v1.16.0/go.mod h1:eN/q1PFSl5gyu0dYdmxNXscY/4Fi7ABmeHCJNf/oHmc= +cloud.google.com/go/channel v1.17.0/go.mod h1:RpbhJsGi/lXWAUM1eF4IbQGbsfVlg2o8Iiy2/YLfVT0= +cloud.google.com/go/channel v1.17.1/go.mod h1:xqfzcOZAcP4b/hUDH0GkGg1Sd5to6di1HOJn/pi5uBQ= +cloud.google.com/go/cloudbuild v1.3.0/go.mod h1:WequR4ULxlqvMsjDEEEFnOG5ZSRSgWOywXYDb1vPE6U= +cloud.google.com/go/cloudbuild v1.4.0/go.mod h1:5Qwa40LHiOXmz3386FrjrYM93rM/hdRr7b53sySrTqA= +cloud.google.com/go/cloudbuild v1.6.0/go.mod h1:UIbc/w9QCbH12xX+ezUsgblrWv+Cv4Tw83GiSMHOn9M= +cloud.google.com/go/cloudbuild v1.7.0/go.mod h1:zb5tWh2XI6lR9zQmsm1VRA+7OCuve5d8S+zJUul8KTg= +cloud.google.com/go/cloudbuild v1.9.0/go.mod h1:qK1d7s4QlO0VwfYn5YuClDGg2hfmLZEb4wQGAbIgL1s= +cloud.google.com/go/cloudbuild v1.10.1/go.mod h1:lyJg7v97SUIPq4RC2sGsz/9tNczhyv2AjML/ci4ulzU= +cloud.google.com/go/cloudbuild v1.13.0/go.mod h1:lyJg7v97SUIPq4RC2sGsz/9tNczhyv2AjML/ci4ulzU= +cloud.google.com/go/cloudbuild v1.14.0/go.mod h1:lyJg7v97SUIPq4RC2sGsz/9tNczhyv2AjML/ci4ulzU= +cloud.google.com/go/cloudbuild v1.14.1/go.mod h1:K7wGc/3zfvmYWOWwYTgF/d/UVJhS4pu+HAy7PL7mCsU= +cloud.google.com/go/clouddms v1.3.0/go.mod h1:oK6XsCDdW4Ib3jCCBugx+gVjevp2TMXFtgxvPSee3OM= +cloud.google.com/go/clouddms v1.4.0/go.mod h1:Eh7sUGCC+aKry14O1NRljhjyrr0NFC0G2cjwX0cByRk= +cloud.google.com/go/clouddms v1.5.0/go.mod h1:QSxQnhikCLUw13iAbffF2CZxAER3xDGNHjsTAkQJcQA= +cloud.google.com/go/clouddms v1.6.1/go.mod h1:Ygo1vL52Ov4TBZQquhz5fiw2CQ58gvu+PlS6PVXCpZI= +cloud.google.com/go/clouddms v1.7.0/go.mod h1:MW1dC6SOtI/tPNCciTsXtsGNEM0i0OccykPvv3hiYeM= +cloud.google.com/go/clouddms v1.7.1/go.mod h1:o4SR8U95+P7gZ/TX+YbJxehOCsM+fe6/brlrFquiszk= +cloud.google.com/go/cloudtasks v1.5.0/go.mod h1:fD92REy1x5woxkKEkLdvavGnPJGEn8Uic9nWuLzqCpY= +cloud.google.com/go/cloudtasks v1.6.0/go.mod h1:C6Io+sxuke9/KNRkbQpihnW93SWDU3uXt92nu85HkYI= +cloud.google.com/go/cloudtasks v1.7.0/go.mod h1:ImsfdYWwlWNJbdgPIIGJWC+gemEGTBK/SunNQQNCAb4= +cloud.google.com/go/cloudtasks v1.8.0/go.mod h1:gQXUIwCSOI4yPVK7DgTVFiiP0ZW/eQkydWzwVMdHxrI= +cloud.google.com/go/cloudtasks v1.9.0/go.mod h1:w+EyLsVkLWHcOaqNEyvcKAsWp9p29dL6uL9Nst1cI7Y= +cloud.google.com/go/cloudtasks v1.10.0/go.mod h1:NDSoTLkZ3+vExFEWu2UJV1arUyzVDAiZtdWcsUyNwBs= +cloud.google.com/go/cloudtasks v1.11.1/go.mod h1:a9udmnou9KO2iulGscKR0qBYjreuX8oHwpmFsKspEvM= +cloud.google.com/go/cloudtasks v1.12.1/go.mod h1:a9udmnou9KO2iulGscKR0qBYjreuX8oHwpmFsKspEvM= +cloud.google.com/go/cloudtasks v1.12.2/go.mod h1:A7nYkjNlW2gUoROg1kvJrQGhJP/38UaWwsnuBDOBVUk= +cloud.google.com/go/compute v0.1.0/go.mod h1:GAesmwr110a34z04OlxYkATPBEfVhkymfTBXtfbBFow= +cloud.google.com/go/compute v1.3.0/go.mod h1:cCZiE1NHEtai4wiufUhW8I8S1JKkAnhnQJWM7YD99wM= +cloud.google.com/go/compute v1.5.0/go.mod h1:9SMHyhJlzhlkJqrPAc839t2BZFTSk6Jdj6mkzQJeu0M= +cloud.google.com/go/compute v1.6.0/go.mod h1:T29tfhtVbq1wvAPo0E3+7vhgmkOYeXjhFvz/FMzPu0s= +cloud.google.com/go/compute v1.6.1/go.mod h1:g85FgpzFvNULZ+S8AYq87axRKuf2Kh7deLqV/jJ3thU= +cloud.google.com/go/compute v1.7.0/go.mod h1:435lt8av5oL9P3fv1OEzSbSUe+ybHXGMPQHHZWZxy9U= +cloud.google.com/go/compute v1.10.0/go.mod h1:ER5CLbMxl90o2jtNbGSbtfOpQKR0t15FOtRsugnLrlU= +cloud.google.com/go/compute v1.12.0/go.mod h1:e8yNOBcBONZU1vJKCvCoDw/4JQsA0dpM4x/6PIIOocU= +cloud.google.com/go/compute v1.12.1/go.mod h1:e8yNOBcBONZU1vJKCvCoDw/4JQsA0dpM4x/6PIIOocU= +cloud.google.com/go/compute v1.13.0/go.mod h1:5aPTS0cUNMIc1CE546K+Th6weJUNQErARyZtRXDJ8GE= +cloud.google.com/go/compute v1.14.0/go.mod h1:YfLtxrj9sU4Yxv+sXzZkyPjEyPBZfXHUvjxega5vAdo= +cloud.google.com/go/compute v1.15.1/go.mod h1:bjjoF/NtFUrkD/urWfdHaKuOPDR5nWIs63rR+SXhcpA= +cloud.google.com/go/compute v1.18.0/go.mod h1:1X7yHxec2Ga+Ss6jPyjxRxpu2uu7PLgsOVXvgU0yacs= +cloud.google.com/go/compute v1.19.0/go.mod h1:rikpw2y+UMidAe9tISo04EHNOIf42RLYF/q8Bs93scU= +cloud.google.com/go/compute v1.19.1/go.mod h1:6ylj3a05WF8leseCdIf77NK0g1ey+nj5IKd5/kvShxE= +cloud.google.com/go/compute v1.19.3/go.mod h1:qxvISKp/gYnXkSAD1ppcSOveRAmzxicEv/JlizULFrI= +cloud.google.com/go/compute v1.20.1/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM= +cloud.google.com/go/compute v1.21.0/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM= +cloud.google.com/go/compute v1.23.0/go.mod h1:4tCnrn48xsqlwSAiLf1HXMQk8CONslYbdiEZc9FEIbM= +cloud.google.com/go/compute v1.23.1/go.mod h1:CqB3xpmPKKt3OJpW2ndFIXnA9A4xAy/F3Xp1ixncW78= +cloud.google.com/go/compute/metadata v0.1.0/go.mod h1:Z1VN+bulIf6bt4P/C37K4DyZYZEXYonfTBHHFPO/4UU= +cloud.google.com/go/compute/metadata v0.2.0/go.mod h1:zFmK7XCadkQkj6TtorcaGlCW1hT1fIilQDwofLpJ20k= +cloud.google.com/go/compute/metadata v0.2.1/go.mod h1:jgHgmJd2RKBGzXqF5LR2EZMGxBkeanZ9wwa75XHJgOM= +cloud.google.com/go/compute/metadata v0.2.3/go.mod h1:VAV5nSsACxMJvgaAuX6Pk2AawlZn8kiOGuCv6gTkwuA= +cloud.google.com/go/contactcenterinsights v1.3.0/go.mod h1:Eu2oemoePuEFc/xKFPjbTuPSj0fYJcPls9TFlPNnHHY= +cloud.google.com/go/contactcenterinsights v1.4.0/go.mod h1:L2YzkGbPsv+vMQMCADxJoT9YiTTnSEd6fEvCeHTYVck= +cloud.google.com/go/contactcenterinsights v1.6.0/go.mod h1:IIDlT6CLcDoyv79kDv8iWxMSTZhLxSCofVV5W6YFM/w= +cloud.google.com/go/contactcenterinsights v1.9.1/go.mod h1:bsg/R7zGLYMVxFFzfh9ooLTruLRCG9fnzhH9KznHhbM= +cloud.google.com/go/contactcenterinsights v1.10.0/go.mod h1:bsg/R7zGLYMVxFFzfh9ooLTruLRCG9fnzhH9KznHhbM= +cloud.google.com/go/contactcenterinsights v1.11.0/go.mod h1:hutBdImE4XNZ1NV4vbPJKSFOnQruhC5Lj9bZqWMTKiU= +cloud.google.com/go/contactcenterinsights v1.11.1/go.mod h1:FeNP3Kg8iteKM80lMwSk3zZZKVxr+PGnAId6soKuXwE= +cloud.google.com/go/container v1.6.0/go.mod h1:Xazp7GjJSeUYo688S+6J5V+n/t+G5sKBTFkKNudGRxg= +cloud.google.com/go/container v1.7.0/go.mod h1:Dp5AHtmothHGX3DwwIHPgq45Y8KmNsgN3amoYfxVkLo= +cloud.google.com/go/container v1.13.1/go.mod h1:6wgbMPeQRw9rSnKBCAJXnds3Pzj03C4JHamr8asWKy4= +cloud.google.com/go/container v1.14.0/go.mod h1:3AoJMPhHfLDxLvrlVWaK57IXzaPnLaZq63WX59aQBfM= +cloud.google.com/go/container v1.15.0/go.mod h1:ft+9S0WGjAyjDggg5S06DXj+fHJICWg8L7isCQe9pQA= +cloud.google.com/go/container v1.22.1/go.mod h1:lTNExE2R7f+DLbAN+rJiKTisauFCaoDq6NURZ83eVH4= +cloud.google.com/go/container v1.24.0/go.mod h1:lTNExE2R7f+DLbAN+rJiKTisauFCaoDq6NURZ83eVH4= +cloud.google.com/go/container v1.26.0/go.mod h1:YJCmRet6+6jnYYRS000T6k0D0xUXQgBSaJ7VwI8FBj4= +cloud.google.com/go/container v1.26.1/go.mod h1:5smONjPRUxeEpDG7bMKWfDL4sauswqEtnBK1/KKpR04= +cloud.google.com/go/containeranalysis v0.5.1/go.mod h1:1D92jd8gRR/c0fGMlymRgxWD3Qw9C1ff6/T7mLgVL8I= +cloud.google.com/go/containeranalysis v0.6.0/go.mod h1:HEJoiEIu+lEXM+k7+qLCci0h33lX3ZqoYFdmPcoO7s4= +cloud.google.com/go/containeranalysis v0.7.0/go.mod h1:9aUL+/vZ55P2CXfuZjS4UjQ9AgXoSw8Ts6lemfmxBxI= +cloud.google.com/go/containeranalysis v0.9.0/go.mod h1:orbOANbwk5Ejoom+s+DUCTTJ7IBdBQJDcSylAx/on9s= +cloud.google.com/go/containeranalysis v0.10.1/go.mod h1:Ya2jiILITMY68ZLPaogjmOMNkwsDrWBSTyBubGXO7j0= +cloud.google.com/go/containeranalysis v0.11.0/go.mod h1:4n2e99ZwpGxpNcz+YsFT1dfOHPQFGcAC8FN2M2/ne/U= +cloud.google.com/go/containeranalysis v0.11.1/go.mod h1:rYlUOM7nem1OJMKwE1SadufX0JP3wnXj844EtZAwWLY= +cloud.google.com/go/datacatalog v1.3.0/go.mod h1:g9svFY6tuR+j+hrTw3J2dNcmI0dzmSiyOzm8kpLq0a0= +cloud.google.com/go/datacatalog v1.5.0/go.mod h1:M7GPLNQeLfWqeIm3iuiruhPzkt65+Bx8dAKvScX8jvs= +cloud.google.com/go/datacatalog v1.6.0/go.mod h1:+aEyF8JKg+uXcIdAmmaMUmZ3q1b/lKLtXCmXdnc0lbc= +cloud.google.com/go/datacatalog v1.7.0/go.mod h1:9mEl4AuDYWw81UGc41HonIHH7/sn52H0/tc8f8ZbZIE= +cloud.google.com/go/datacatalog v1.8.0/go.mod h1:KYuoVOv9BM8EYz/4eMFxrr4DUKhGIOXxZoKYF5wdISM= +cloud.google.com/go/datacatalog v1.8.1/go.mod h1:RJ58z4rMp3gvETA465Vg+ag8BGgBdnRPEMMSTr5Uv+M= +cloud.google.com/go/datacatalog v1.12.0/go.mod h1:CWae8rFkfp6LzLumKOnmVh4+Zle4A3NXLzVJ1d1mRm0= +cloud.google.com/go/datacatalog v1.13.0/go.mod h1:E4Rj9a5ZtAxcQJlEBTLgMTphfP11/lNaAshpoBgemX8= +cloud.google.com/go/datacatalog v1.14.0/go.mod h1:h0PrGtlihoutNMp/uvwhawLQ9+c63Kz65UFqh49Yo+E= +cloud.google.com/go/datacatalog v1.14.1/go.mod h1:d2CevwTG4yedZilwe+v3E3ZBDRMobQfSG/a6cCCN5R4= +cloud.google.com/go/datacatalog v1.16.0/go.mod h1:d2CevwTG4yedZilwe+v3E3ZBDRMobQfSG/a6cCCN5R4= +cloud.google.com/go/datacatalog v1.17.1/go.mod h1:nCSYFHgtxh2MiEktWIz71s/X+7ds/UT9kp0PC7waCzE= +cloud.google.com/go/datacatalog v1.18.0/go.mod h1:nCSYFHgtxh2MiEktWIz71s/X+7ds/UT9kp0PC7waCzE= +cloud.google.com/go/datacatalog v1.18.1/go.mod h1:TzAWaz+ON1tkNr4MOcak8EBHX7wIRX/gZKM+yTVsv+A= +cloud.google.com/go/dataflow v0.6.0/go.mod h1:9QwV89cGoxjjSR9/r7eFDqqjtvbKxAK2BaYU6PVk9UM= +cloud.google.com/go/dataflow v0.7.0/go.mod h1:PX526vb4ijFMesO1o202EaUmouZKBpjHsTlCtB4parQ= +cloud.google.com/go/dataflow v0.8.0/go.mod h1:Rcf5YgTKPtQyYz8bLYhFoIV/vP39eL7fWNcSOyFfLJE= +cloud.google.com/go/dataflow v0.9.1/go.mod h1:Wp7s32QjYuQDWqJPFFlnBKhkAtiFpMTdg00qGbnIHVw= +cloud.google.com/go/dataflow v0.9.2/go.mod h1:vBfdBZ/ejlTaYIGB3zB4T08UshH70vbtZeMD+urnUSo= +cloud.google.com/go/dataform v0.3.0/go.mod h1:cj8uNliRlHpa6L3yVhDOBrUXH+BPAO1+KFMQQNSThKo= +cloud.google.com/go/dataform v0.4.0/go.mod h1:fwV6Y4Ty2yIFL89huYlEkwUPtS7YZinZbzzj5S9FzCE= +cloud.google.com/go/dataform v0.5.0/go.mod h1:GFUYRe8IBa2hcomWplodVmUx/iTL0FrsauObOM3Ipr0= +cloud.google.com/go/dataform v0.6.0/go.mod h1:QPflImQy33e29VuapFdf19oPbE4aYTJxr31OAPV+ulA= +cloud.google.com/go/dataform v0.7.0/go.mod h1:7NulqnVozfHvWUBpMDfKMUESr+85aJsC/2O0o3jWPDE= +cloud.google.com/go/dataform v0.8.1/go.mod h1:3BhPSiw8xmppbgzeBbmDvmSWlwouuJkXsXsb8UBih9M= +cloud.google.com/go/dataform v0.8.2/go.mod h1:X9RIqDs6NbGPLR80tnYoPNiO1w0wenKTb8PxxlhTMKM= +cloud.google.com/go/datafusion v1.4.0/go.mod h1:1Zb6VN+W6ALo85cXnM1IKiPw+yQMKMhB9TsTSRDo/38= +cloud.google.com/go/datafusion v1.5.0/go.mod h1:Kz+l1FGHB0J+4XF2fud96WMmRiq/wj8N9u007vyXZ2w= +cloud.google.com/go/datafusion v1.6.0/go.mod h1:WBsMF8F1RhSXvVM8rCV3AeyWVxcC2xY6vith3iw3S+8= +cloud.google.com/go/datafusion v1.7.1/go.mod h1:KpoTBbFmoToDExJUso/fcCiguGDk7MEzOWXUsJo0wsI= +cloud.google.com/go/datafusion v1.7.2/go.mod h1:62K2NEC6DRlpNmI43WHMWf9Vg/YvN6QVi8EVwifElI0= +cloud.google.com/go/datalabeling v0.5.0/go.mod h1:TGcJ0G2NzcsXSE/97yWjIZO0bXj0KbVlINXMG9ud42I= +cloud.google.com/go/datalabeling v0.6.0/go.mod h1:WqdISuk/+WIGeMkpw/1q7bK/tFEZxsrFJOJdY2bXvTQ= +cloud.google.com/go/datalabeling v0.7.0/go.mod h1:WPQb1y08RJbmpM3ww0CSUAGweL0SxByuW2E+FU+wXcM= +cloud.google.com/go/datalabeling v0.8.1/go.mod h1:XS62LBSVPbYR54GfYQsPXZjTW8UxCK2fkDciSrpRFdY= +cloud.google.com/go/datalabeling v0.8.2/go.mod h1:cyDvGHuJWu9U/cLDA7d8sb9a0tWLEletStu2sTmg3BE= +cloud.google.com/go/dataplex v1.3.0/go.mod h1:hQuRtDg+fCiFgC8j0zV222HvzFQdRd+SVX8gdmFcZzA= +cloud.google.com/go/dataplex v1.4.0/go.mod h1:X51GfLXEMVJ6UN47ESVqvlsRplbLhcsAt0kZCCKsU0A= +cloud.google.com/go/dataplex v1.5.2/go.mod h1:cVMgQHsmfRoI5KFYq4JtIBEUbYwc3c7tXmIDhRmNNVQ= +cloud.google.com/go/dataplex v1.6.0/go.mod h1:bMsomC/aEJOSpHXdFKFGQ1b0TDPIeL28nJObeO1ppRs= +cloud.google.com/go/dataplex v1.8.1/go.mod h1:7TyrDT6BCdI8/38Uvp0/ZxBslOslP2X2MPDucliyvSE= +cloud.google.com/go/dataplex v1.9.0/go.mod h1:7TyrDT6BCdI8/38Uvp0/ZxBslOslP2X2MPDucliyvSE= +cloud.google.com/go/dataplex v1.9.1/go.mod h1:7TyrDT6BCdI8/38Uvp0/ZxBslOslP2X2MPDucliyvSE= +cloud.google.com/go/dataplex v1.10.1/go.mod h1:1MzmBv8FvjYfc7vDdxhnLFNskikkB+3vl475/XdCDhs= +cloud.google.com/go/dataproc v1.7.0/go.mod h1:CKAlMjII9H90RXaMpSxQ8EU6dQx6iAYNPcYPOkSbi8s= +cloud.google.com/go/dataproc v1.8.0/go.mod h1:5OW+zNAH0pMpw14JVrPONsxMQYMBqJuzORhIBfBn9uI= +cloud.google.com/go/dataproc v1.12.0/go.mod h1:zrF3aX0uV3ikkMz6z4uBbIKyhRITnxvr4i3IjKsKrw4= +cloud.google.com/go/dataproc/v2 v2.0.1/go.mod h1:7Ez3KRHdFGcfY7GcevBbvozX+zyWGcwLJvvAMwCaoZ4= +cloud.google.com/go/dataproc/v2 v2.2.0/go.mod h1:lZR7AQtwZPvmINx5J87DSOOpTfof9LVZju6/Qo4lmcY= +cloud.google.com/go/dataproc/v2 v2.2.1/go.mod h1:QdAJLaBjh+l4PVlVZcmrmhGccosY/omC1qwfQ61Zv/o= +cloud.google.com/go/dataqna v0.5.0/go.mod h1:90Hyk596ft3zUQ8NkFfvICSIfHFh1Bc7C4cK3vbhkeo= +cloud.google.com/go/dataqna v0.6.0/go.mod h1:1lqNpM7rqNLVgWBJyk5NF6Uen2PHym0jtVJonplVsDA= +cloud.google.com/go/dataqna v0.7.0/go.mod h1:Lx9OcIIeqCrw1a6KdO3/5KMP1wAmTc0slZWwP12Qq3c= +cloud.google.com/go/dataqna v0.8.1/go.mod h1:zxZM0Bl6liMePWsHA8RMGAfmTG34vJMapbHAxQ5+WA8= +cloud.google.com/go/dataqna v0.8.2/go.mod h1:KNEqgx8TTmUipnQsScOoDpq/VlXVptUqVMZnt30WAPs= cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= cloud.google.com/go/datastore v1.1.0/go.mod h1:umbIZjpQpHh4hmRpGhH4tLFup+FVzqBi1b3c64qFpCk= +cloud.google.com/go/datastore v1.10.0/go.mod h1:PC5UzAmDEkAmkfaknstTYbNpgE49HAgW2J1gcgUfmdM= +cloud.google.com/go/datastore v1.11.0/go.mod h1:TvGxBIHCS50u8jzG+AW/ppf87v1of8nwzFNgEZU1D3c= +cloud.google.com/go/datastore v1.12.0/go.mod h1:KjdB88W897MRITkvWWJrg2OUtrR5XVj1EoLgSp6/N70= +cloud.google.com/go/datastore v1.12.1/go.mod h1:KjdB88W897MRITkvWWJrg2OUtrR5XVj1EoLgSp6/N70= +cloud.google.com/go/datastore v1.13.0/go.mod h1:KjdB88W897MRITkvWWJrg2OUtrR5XVj1EoLgSp6/N70= +cloud.google.com/go/datastore v1.14.0/go.mod h1:GAeStMBIt9bPS7jMJA85kgkpsMkvseWWXiaHya9Jes8= +cloud.google.com/go/datastore v1.15.0/go.mod h1:GAeStMBIt9bPS7jMJA85kgkpsMkvseWWXiaHya9Jes8= +cloud.google.com/go/datastream v1.2.0/go.mod h1:i/uTP8/fZwgATHS/XFu0TcNUhuA0twZxxQ3EyCUQMwo= +cloud.google.com/go/datastream v1.3.0/go.mod h1:cqlOX8xlyYF/uxhiKn6Hbv6WjwPPuI9W2M9SAXwaLLQ= +cloud.google.com/go/datastream v1.4.0/go.mod h1:h9dpzScPhDTs5noEMQVWP8Wx8AFBRyS0s8KWPx/9r0g= +cloud.google.com/go/datastream v1.5.0/go.mod h1:6TZMMNPwjUqZHBKPQ1wwXpb0d5VDVPl2/XoS5yi88q4= +cloud.google.com/go/datastream v1.6.0/go.mod h1:6LQSuswqLa7S4rPAOZFVjHIG3wJIjZcZrw8JDEDJuIs= +cloud.google.com/go/datastream v1.7.0/go.mod h1:uxVRMm2elUSPuh65IbZpzJNMbuzkcvu5CjMqVIUHrww= +cloud.google.com/go/datastream v1.9.1/go.mod h1:hqnmr8kdUBmrnk65k5wNRoHSCYksvpdZIcZIEl8h43Q= +cloud.google.com/go/datastream v1.10.0/go.mod h1:hqnmr8kdUBmrnk65k5wNRoHSCYksvpdZIcZIEl8h43Q= +cloud.google.com/go/datastream v1.10.1/go.mod h1:7ngSYwnw95YFyTd5tOGBxHlOZiL+OtpjheqU7t2/s/c= +cloud.google.com/go/deploy v1.4.0/go.mod h1:5Xghikd4VrmMLNaF6FiRFDlHb59VM59YoDQnOUdsH/c= +cloud.google.com/go/deploy v1.5.0/go.mod h1:ffgdD0B89tToyW/U/D2eL0jN2+IEV/3EMuXHA0l4r+s= +cloud.google.com/go/deploy v1.6.0/go.mod h1:f9PTHehG/DjCom3QH0cntOVRm93uGBDt2vKzAPwpXQI= +cloud.google.com/go/deploy v1.8.0/go.mod h1:z3myEJnA/2wnB4sgjqdMfgxCA0EqC3RBTNcVPs93mtQ= +cloud.google.com/go/deploy v1.11.0/go.mod h1:tKuSUV5pXbn67KiubiUNUejqLs4f5cxxiCNCeyl0F2g= +cloud.google.com/go/deploy v1.13.0/go.mod h1:tKuSUV5pXbn67KiubiUNUejqLs4f5cxxiCNCeyl0F2g= +cloud.google.com/go/deploy v1.13.1/go.mod h1:8jeadyLkH9qu9xgO3hVWw8jVr29N1mnW42gRJT8GY6g= +cloud.google.com/go/dialogflow v1.15.0/go.mod h1:HbHDWs33WOGJgn6rfzBW1Kv807BE3O1+xGbn59zZWI4= +cloud.google.com/go/dialogflow v1.16.1/go.mod h1:po6LlzGfK+smoSmTBnbkIZY2w8ffjz/RcGSS+sh1el0= +cloud.google.com/go/dialogflow v1.17.0/go.mod h1:YNP09C/kXA1aZdBgC/VtXX74G/TKn7XVCcVumTflA+8= +cloud.google.com/go/dialogflow v1.18.0/go.mod h1:trO7Zu5YdyEuR+BhSNOqJezyFQ3aUzz0njv7sMx/iek= +cloud.google.com/go/dialogflow v1.19.0/go.mod h1:JVmlG1TwykZDtxtTXujec4tQ+D8SBFMoosgy+6Gn0s0= +cloud.google.com/go/dialogflow v1.29.0/go.mod h1:b+2bzMe+k1s9V+F2jbJwpHPzrnIyHihAdRFMtn2WXuM= +cloud.google.com/go/dialogflow v1.31.0/go.mod h1:cuoUccuL1Z+HADhyIA7dci3N5zUssgpBJmCzI6fNRB4= +cloud.google.com/go/dialogflow v1.32.0/go.mod h1:jG9TRJl8CKrDhMEcvfcfFkkpp8ZhgPz3sBGmAUYJ2qE= +cloud.google.com/go/dialogflow v1.38.0/go.mod h1:L7jnH+JL2mtmdChzAIcXQHXMvQkE3U4hTaNltEuxXn4= +cloud.google.com/go/dialogflow v1.40.0/go.mod h1:L7jnH+JL2mtmdChzAIcXQHXMvQkE3U4hTaNltEuxXn4= +cloud.google.com/go/dialogflow v1.43.0/go.mod h1:pDUJdi4elL0MFmt1REMvFkdsUTYSHq+rTCS8wg0S3+M= +cloud.google.com/go/dialogflow v1.44.0/go.mod h1:pDUJdi4elL0MFmt1REMvFkdsUTYSHq+rTCS8wg0S3+M= +cloud.google.com/go/dialogflow v1.44.1/go.mod h1:n/h+/N2ouKOO+rbe/ZnI186xImpqvCVj2DdsWS/0EAk= +cloud.google.com/go/dlp v1.6.0/go.mod h1:9eyB2xIhpU0sVwUixfBubDoRwP+GjeUoxxeueZmqvmM= +cloud.google.com/go/dlp v1.7.0/go.mod h1:68ak9vCiMBjbasxeVD17hVPxDEck+ExiHavX8kiHG+Q= +cloud.google.com/go/dlp v1.9.0/go.mod h1:qdgmqgTyReTz5/YNSSuueR8pl7hO0o9bQ39ZhtgkWp4= +cloud.google.com/go/dlp v1.10.1/go.mod h1:IM8BWz1iJd8njcNcG0+Kyd9OPnqnRNkDV8j42VT5KOI= +cloud.google.com/go/dlp v1.10.2/go.mod h1:ZbdKIhcnyhILgccwVDzkwqybthh7+MplGC3kZVZsIOQ= +cloud.google.com/go/documentai v1.7.0/go.mod h1:lJvftZB5NRiFSX4moiye1SMxHx0Bc3x1+p9e/RfXYiU= +cloud.google.com/go/documentai v1.8.0/go.mod h1:xGHNEB7CtsnySCNrCFdCyyMz44RhFEEX2Q7UD0c5IhU= +cloud.google.com/go/documentai v1.9.0/go.mod h1:FS5485S8R00U10GhgBC0aNGrJxBP8ZVpEeJ7PQDZd6k= +cloud.google.com/go/documentai v1.10.0/go.mod h1:vod47hKQIPeCfN2QS/jULIvQTugbmdc0ZvxxfQY1bg4= +cloud.google.com/go/documentai v1.16.0/go.mod h1:o0o0DLTEZ+YnJZ+J4wNfTxmDVyrkzFvttBXXtYRMHkM= +cloud.google.com/go/documentai v1.18.0/go.mod h1:F6CK6iUH8J81FehpskRmhLq/3VlwQvb7TvwOceQ2tbs= +cloud.google.com/go/documentai v1.20.0/go.mod h1:yJkInoMcK0qNAEdRnqY/D5asy73tnPe88I1YTZT+a8E= +cloud.google.com/go/documentai v1.22.0/go.mod h1:yJkInoMcK0qNAEdRnqY/D5asy73tnPe88I1YTZT+a8E= +cloud.google.com/go/documentai v1.22.1/go.mod h1:LKs22aDHbJv7ufXuPypzRO7rG3ALLJxzdCXDPutw4Qc= +cloud.google.com/go/documentai v1.23.0/go.mod h1:LKs22aDHbJv7ufXuPypzRO7rG3ALLJxzdCXDPutw4Qc= +cloud.google.com/go/documentai v1.23.2/go.mod h1:Q/wcRT+qnuXOpjAkvOV4A+IeQl04q2/ReT7SSbytLSo= +cloud.google.com/go/domains v0.6.0/go.mod h1:T9Rz3GasrpYk6mEGHh4rymIhjlnIuB4ofT1wTxDeT4Y= +cloud.google.com/go/domains v0.7.0/go.mod h1:PtZeqS1xjnXuRPKE/88Iru/LdfoRyEHYA9nFQf4UKpg= +cloud.google.com/go/domains v0.8.0/go.mod h1:M9i3MMDzGFXsydri9/vW+EWz9sWb4I6WyHqdlAk0idE= +cloud.google.com/go/domains v0.9.1/go.mod h1:aOp1c0MbejQQ2Pjf1iJvnVyT+z6R6s8pX66KaCSDYfE= +cloud.google.com/go/domains v0.9.2/go.mod h1:3YvXGYzZG1Temjbk7EyGCuGGiXHJwVNmwIf+E/cUp5I= +cloud.google.com/go/edgecontainer v0.1.0/go.mod h1:WgkZ9tp10bFxqO8BLPqv2LlfmQF1X8lZqwW4r1BTajk= +cloud.google.com/go/edgecontainer v0.2.0/go.mod h1:RTmLijy+lGpQ7BXuTDa4C4ssxyXT34NIuHIgKuP4s5w= +cloud.google.com/go/edgecontainer v0.3.0/go.mod h1:FLDpP4nykgwwIfcLt6zInhprzw0lEi2P1fjO6Ie0qbc= +cloud.google.com/go/edgecontainer v1.0.0/go.mod h1:cttArqZpBB2q58W/upSG++ooo6EsblxDIolxa3jSjbY= +cloud.google.com/go/edgecontainer v1.1.1/go.mod h1:O5bYcS//7MELQZs3+7mabRqoWQhXCzenBu0R8bz2rwk= +cloud.google.com/go/edgecontainer v1.1.2/go.mod h1:wQRjIzqxEs9e9wrtle4hQPSR1Y51kqN75dgF7UllZZ4= +cloud.google.com/go/errorreporting v0.3.0/go.mod h1:xsP2yaAp+OAW4OIm60An2bbLpqIhKXdWR/tawvl7QzU= +cloud.google.com/go/essentialcontacts v1.3.0/go.mod h1:r+OnHa5jfj90qIfZDO/VztSFqbQan7HV75p8sA+mdGI= +cloud.google.com/go/essentialcontacts v1.4.0/go.mod h1:8tRldvHYsmnBCHdFpvU+GL75oWiBKl80BiqlFh9tp+8= +cloud.google.com/go/essentialcontacts v1.5.0/go.mod h1:ay29Z4zODTuwliK7SnX8E86aUF2CTzdNtvv42niCX0M= +cloud.google.com/go/essentialcontacts v1.6.2/go.mod h1:T2tB6tX+TRak7i88Fb2N9Ok3PvY3UNbUsMag9/BARh4= +cloud.google.com/go/essentialcontacts v1.6.3/go.mod h1:yiPCD7f2TkP82oJEFXFTou8Jl8L6LBRPeBEkTaO0Ggo= +cloud.google.com/go/eventarc v1.7.0/go.mod h1:6ctpF3zTnaQCxUjHUdcfgcA1A2T309+omHZth7gDfmc= +cloud.google.com/go/eventarc v1.8.0/go.mod h1:imbzxkyAU4ubfsaKYdQg04WS1NvncblHEup4kvF+4gw= +cloud.google.com/go/eventarc v1.10.0/go.mod h1:u3R35tmZ9HvswGRBnF48IlYgYeBcPUCjkr4BTdem2Kw= +cloud.google.com/go/eventarc v1.11.0/go.mod h1:PyUjsUKPWoRBCHeOxZd/lbOOjahV41icXyUY5kSTvVY= +cloud.google.com/go/eventarc v1.12.1/go.mod h1:mAFCW6lukH5+IZjkvrEss+jmt2kOdYlN8aMx3sRJiAI= +cloud.google.com/go/eventarc v1.13.0/go.mod h1:mAFCW6lukH5+IZjkvrEss+jmt2kOdYlN8aMx3sRJiAI= +cloud.google.com/go/eventarc v1.13.1/go.mod h1:EqBxmGHFrruIara4FUQ3RHlgfCn7yo1HYsu2Hpt/C3Y= +cloud.google.com/go/filestore v1.3.0/go.mod h1:+qbvHGvXU1HaKX2nD0WEPo92TP/8AQuCVEBXNY9z0+w= +cloud.google.com/go/filestore v1.4.0/go.mod h1:PaG5oDfo9r224f8OYXURtAsY+Fbyq/bLYoINEK8XQAI= +cloud.google.com/go/filestore v1.5.0/go.mod h1:FqBXDWBp4YLHqRnVGveOkHDf8svj9r5+mUDLupOWEDs= +cloud.google.com/go/filestore v1.6.0/go.mod h1:di5unNuss/qfZTw2U9nhFqo8/ZDSc466dre85Kydllg= +cloud.google.com/go/filestore v1.7.1/go.mod h1:y10jsorq40JJnjR/lQ8AfFbbcGlw3g+Dp8oN7i7FjV4= +cloud.google.com/go/filestore v1.7.2/go.mod h1:TYOlyJs25f/omgj+vY7/tIG/E7BX369triSPzE4LdgE= +cloud.google.com/go/firestore v1.9.0/go.mod h1:HMkjKHNTtRyZNiMzu7YAsLr9K3X2udY2AMwDaMEQiiE= +cloud.google.com/go/firestore v1.11.0/go.mod h1:b38dKhgzlmNNGTNZZwe7ZRFEuRab1Hay3/DBsIGKKy4= +cloud.google.com/go/firestore v1.12.0/go.mod h1:b38dKhgzlmNNGTNZZwe7ZRFEuRab1Hay3/DBsIGKKy4= +cloud.google.com/go/firestore v1.13.0/go.mod h1:QojqqOh8IntInDUSTAh0c8ZsPYAr68Ma8c5DWOy8xb8= +cloud.google.com/go/functions v1.6.0/go.mod h1:3H1UA3qiIPRWD7PeZKLvHZ9SaQhR26XIJcC0A5GbvAk= +cloud.google.com/go/functions v1.7.0/go.mod h1:+d+QBcWM+RsrgZfV9xo6KfA1GlzJfxcfZcRPEhDDfzg= +cloud.google.com/go/functions v1.8.0/go.mod h1:RTZ4/HsQjIqIYP9a9YPbU+QFoQsAlYgrwOXJWHn1POY= +cloud.google.com/go/functions v1.9.0/go.mod h1:Y+Dz8yGguzO3PpIjhLTbnqV1CWmgQ5UwtlpzoyquQ08= +cloud.google.com/go/functions v1.10.0/go.mod h1:0D3hEOe3DbEvCXtYOZHQZmD+SzYsi1YbI7dGvHfldXw= +cloud.google.com/go/functions v1.12.0/go.mod h1:AXWGrF3e2C/5ehvwYo/GH6O5s09tOPksiKhz+hH8WkA= +cloud.google.com/go/functions v1.13.0/go.mod h1:EU4O007sQm6Ef/PwRsI8N2umygGqPBS/IZQKBQBcJ3c= +cloud.google.com/go/functions v1.15.1/go.mod h1:P5yNWUTkyU+LvW/S9O6V+V423VZooALQlqoXdoPz5AE= +cloud.google.com/go/functions v1.15.2/go.mod h1:CHAjtcR6OU4XF2HuiVeriEdELNcnvRZSk1Q8RMqy4lE= +cloud.google.com/go/gaming v1.5.0/go.mod h1:ol7rGcxP/qHTRQE/RO4bxkXq+Fix0j6D4LFPzYTIrDM= +cloud.google.com/go/gaming v1.6.0/go.mod h1:YMU1GEvA39Qt3zWGyAVA9bpYz/yAhTvaQ1t2sK4KPUA= +cloud.google.com/go/gaming v1.7.0/go.mod h1:LrB8U7MHdGgFG851iHAfqUdLcKBdQ55hzXy9xBJz0+w= +cloud.google.com/go/gaming v1.8.0/go.mod h1:xAqjS8b7jAVW0KFYeRUxngo9My3f33kFmua++Pi+ggM= +cloud.google.com/go/gaming v1.9.0/go.mod h1:Fc7kEmCObylSWLO334NcO+O9QMDyz+TKC4v1D7X+Bc0= +cloud.google.com/go/gaming v1.10.1/go.mod h1:XQQvtfP8Rb9Rxnxm5wFVpAp9zCQkJi2bLIb7iHGwB3s= +cloud.google.com/go/gkebackup v0.2.0/go.mod h1:XKvv/4LfG829/B8B7xRkk8zRrOEbKtEam6yNfuQNH60= +cloud.google.com/go/gkebackup v0.3.0/go.mod h1:n/E671i1aOQvUxT541aTkCwExO/bTer2HDlj4TsBRAo= +cloud.google.com/go/gkebackup v0.4.0/go.mod h1:byAyBGUwYGEEww7xsbnUTBHIYcOPy/PgUWUtOeRm9Vg= +cloud.google.com/go/gkebackup v1.3.0/go.mod h1:vUDOu++N0U5qs4IhG1pcOnD1Mac79xWy6GoBFlWCWBU= +cloud.google.com/go/gkebackup v1.3.1/go.mod h1:vUDOu++N0U5qs4IhG1pcOnD1Mac79xWy6GoBFlWCWBU= +cloud.google.com/go/gkebackup v1.3.2/go.mod h1:OMZbXzEJloyXMC7gqdSB+EOEQ1AKcpGYvO3s1ec5ixk= +cloud.google.com/go/gkeconnect v0.5.0/go.mod h1:c5lsNAg5EwAy7fkqX/+goqFsU1Da/jQFqArp+wGNr/o= +cloud.google.com/go/gkeconnect v0.6.0/go.mod h1:Mln67KyU/sHJEBY8kFZ0xTeyPtzbq9StAVvEULYK16A= +cloud.google.com/go/gkeconnect v0.7.0/go.mod h1:SNfmVqPkaEi3bF/B3CNZOAYPYdg7sU+obZ+QTky2Myw= +cloud.google.com/go/gkeconnect v0.8.1/go.mod h1:KWiK1g9sDLZqhxB2xEuPV8V9NYzrqTUmQR9shJHpOZw= +cloud.google.com/go/gkeconnect v0.8.2/go.mod h1:6nAVhwchBJYgQCXD2pHBFQNiJNyAd/wyxljpaa6ZPrY= +cloud.google.com/go/gkehub v0.9.0/go.mod h1:WYHN6WG8w9bXU0hqNxt8rm5uxnk8IH+lPY9J2TV7BK0= +cloud.google.com/go/gkehub v0.10.0/go.mod h1:UIPwxI0DsrpsVoWpLB0stwKCP+WFVG9+y977wO+hBH0= +cloud.google.com/go/gkehub v0.11.0/go.mod h1:JOWHlmN+GHyIbuWQPl47/C2RFhnFKH38jH9Ascu3n0E= +cloud.google.com/go/gkehub v0.12.0/go.mod h1:djiIwwzTTBrF5NaXCGv3mf7klpEMcST17VBTVVDcuaw= +cloud.google.com/go/gkehub v0.14.1/go.mod h1:VEXKIJZ2avzrbd7u+zeMtW00Y8ddk/4V9511C9CQGTY= +cloud.google.com/go/gkehub v0.14.2/go.mod h1:iyjYH23XzAxSdhrbmfoQdePnlMj2EWcvnR+tHdBQsCY= +cloud.google.com/go/gkemulticloud v0.3.0/go.mod h1:7orzy7O0S+5kq95e4Hpn7RysVA7dPs8W/GgfUtsPbrA= +cloud.google.com/go/gkemulticloud v0.4.0/go.mod h1:E9gxVBnseLWCk24ch+P9+B2CoDFJZTyIgLKSalC7tuI= +cloud.google.com/go/gkemulticloud v0.5.0/go.mod h1:W0JDkiyi3Tqh0TJr//y19wyb1yf8llHVto2Htf2Ja3Y= +cloud.google.com/go/gkemulticloud v0.6.1/go.mod h1:kbZ3HKyTsiwqKX7Yw56+wUGwwNZViRnxWK2DVknXWfw= +cloud.google.com/go/gkemulticloud v1.0.0/go.mod h1:kbZ3HKyTsiwqKX7Yw56+wUGwwNZViRnxWK2DVknXWfw= +cloud.google.com/go/gkemulticloud v1.0.1/go.mod h1:AcrGoin6VLKT/fwZEYuqvVominLriQBCKmbjtnbMjG8= +cloud.google.com/go/grafeas v0.2.0/go.mod h1:KhxgtF2hb0P191HlY5besjYm6MqTSTj3LSI+M+ByZHc= +cloud.google.com/go/grafeas v0.3.0/go.mod h1:P7hgN24EyONOTMyeJH6DxG4zD7fwiYa5Q6GUgyFSOU8= +cloud.google.com/go/gsuiteaddons v1.3.0/go.mod h1:EUNK/J1lZEZO8yPtykKxLXI6JSVN2rg9bN8SXOa0bgM= +cloud.google.com/go/gsuiteaddons v1.4.0/go.mod h1:rZK5I8hht7u7HxFQcFei0+AtfS9uSushomRlg+3ua1o= +cloud.google.com/go/gsuiteaddons v1.5.0/go.mod h1:TFCClYLd64Eaa12sFVmUyG62tk4mdIsI7pAnSXRkcFo= +cloud.google.com/go/gsuiteaddons v1.6.1/go.mod h1:CodrdOqRZcLp5WOwejHWYBjZvfY0kOphkAKpF/3qdZY= +cloud.google.com/go/gsuiteaddons v1.6.2/go.mod h1:K65m9XSgs8hTF3X9nNTPi8IQueljSdYo9F+Mi+s4MyU= +cloud.google.com/go/iam v0.1.0/go.mod h1:vcUNEa0pEm0qRVpmWepWaFMIAI8/hjB9mO8rNCJtF6c= +cloud.google.com/go/iam v0.3.0/go.mod h1:XzJPvDayI+9zsASAFO68Hk07u3z+f+JrT2xXNdp4bnY= +cloud.google.com/go/iam v0.5.0/go.mod h1:wPU9Vt0P4UmCux7mqtRu6jcpPAb74cP1fh50J3QpkUc= +cloud.google.com/go/iam v0.6.0/go.mod h1:+1AH33ueBne5MzYccyMHtEKqLE4/kJOibtffMHDMFMc= +cloud.google.com/go/iam v0.7.0/go.mod h1:H5Br8wRaDGNc8XP3keLc4unfUUZeyH3Sfl9XpQEYOeg= +cloud.google.com/go/iam v0.8.0/go.mod h1:lga0/y3iH6CX7sYqypWJ33hf7kkfXJag67naqGESjkE= +cloud.google.com/go/iam v0.11.0/go.mod h1:9PiLDanza5D+oWFZiH1uG+RnRCfEGKoyl6yo4cgWZGY= +cloud.google.com/go/iam v0.12.0/go.mod h1:knyHGviacl11zrtZUoDuYpDgLjvr28sLQaG0YB2GYAY= +cloud.google.com/go/iam v0.13.0/go.mod h1:ljOg+rcNfzZ5d6f1nAUJ8ZIxOaZUVoS14bKCtaLZ/D0= +cloud.google.com/go/iam v1.0.1/go.mod h1:yR3tmSL8BcZB4bxByRv2jkSIahVmCtfKZwLYGBalRE8= +cloud.google.com/go/iam v1.1.0/go.mod h1:nxdHjaKfCr7fNYx/HJMM8LgiMugmveWlkatear5gVyk= +cloud.google.com/go/iam v1.1.1/go.mod h1:A5avdyVL2tCppe4unb0951eI9jreack+RJ0/d+KUZOU= +cloud.google.com/go/iam v1.1.2/go.mod h1:A5avdyVL2tCppe4unb0951eI9jreack+RJ0/d+KUZOU= +cloud.google.com/go/iam v1.1.3/go.mod h1:3khUlaBXfPKKe7huYgEpDn6FtgRyMEqbkvBxrQyY5SE= +cloud.google.com/go/iap v1.4.0/go.mod h1:RGFwRJdihTINIe4wZ2iCP0zF/qu18ZwyKxrhMhygBEc= +cloud.google.com/go/iap v1.5.0/go.mod h1:UH/CGgKd4KyohZL5Pt0jSKE4m3FR51qg6FKQ/z/Ix9A= +cloud.google.com/go/iap v1.6.0/go.mod h1:NSuvI9C/j7UdjGjIde7t7HBz+QTwBcapPE07+sSRcLk= +cloud.google.com/go/iap v1.7.0/go.mod h1:beqQx56T9O1G1yNPph+spKpNibDlYIiIixiqsQXxLIo= +cloud.google.com/go/iap v1.7.1/go.mod h1:WapEwPc7ZxGt2jFGB/C/bm+hP0Y6NXzOYGjpPnmMS74= +cloud.google.com/go/iap v1.8.1/go.mod h1:sJCbeqg3mvWLqjZNsI6dfAtbbV1DL2Rl7e1mTyXYREQ= +cloud.google.com/go/iap v1.9.0/go.mod h1:01OFxd1R+NFrg78S+hoPV5PxEzv22HXaNqUUlmNHFuY= +cloud.google.com/go/iap v1.9.1/go.mod h1:SIAkY7cGMLohLSdBR25BuIxO+I4fXJiL06IBL7cy/5Q= +cloud.google.com/go/ids v1.1.0/go.mod h1:WIuwCaYVOzHIj2OhN9HAwvW+DBdmUAdcWlFxRl+KubM= +cloud.google.com/go/ids v1.2.0/go.mod h1:5WXvp4n25S0rA/mQWAg1YEEBBq6/s+7ml1RDCW1IrcY= +cloud.google.com/go/ids v1.3.0/go.mod h1:JBdTYwANikFKaDP6LtW5JAi4gubs57SVNQjemdt6xV4= +cloud.google.com/go/ids v1.4.1/go.mod h1:np41ed8YMU8zOgv53MMMoCntLTn2lF+SUzlM+O3u/jw= +cloud.google.com/go/ids v1.4.2/go.mod h1:3vw8DX6YddRu9BncxuzMyWn0g8+ooUjI2gslJ7FH3vk= +cloud.google.com/go/iot v1.3.0/go.mod h1:r7RGh2B61+B8oz0AGE+J72AhA0G7tdXItODWsaA2oLs= +cloud.google.com/go/iot v1.4.0/go.mod h1:dIDxPOn0UvNDUMD8Ger7FIaTuvMkj+aGk94RPP0iV+g= +cloud.google.com/go/iot v1.5.0/go.mod h1:mpz5259PDl3XJthEmh9+ap0affn/MqNSP4My77Qql9o= +cloud.google.com/go/iot v1.6.0/go.mod h1:IqdAsmE2cTYYNO1Fvjfzo9po179rAtJeVGUvkLN3rLE= +cloud.google.com/go/iot v1.7.1/go.mod h1:46Mgw7ev1k9KqK1ao0ayW9h0lI+3hxeanz+L1zmbbbk= +cloud.google.com/go/iot v1.7.2/go.mod h1:q+0P5zr1wRFpw7/MOgDXrG/HVA+l+cSwdObffkrpnSg= +cloud.google.com/go/kms v1.4.0/go.mod h1:fajBHndQ+6ubNw6Ss2sSd+SWvjL26RNo/dr7uxsnnOA= +cloud.google.com/go/kms v1.5.0/go.mod h1:QJS2YY0eJGBg3mnDfuaCyLauWwBJiHRboYxJ++1xJNg= +cloud.google.com/go/kms v1.6.0/go.mod h1:Jjy850yySiasBUDi6KFUwUv2n1+o7QZFyuUJg6OgjA0= +cloud.google.com/go/kms v1.8.0/go.mod h1:4xFEhYFqvW+4VMELtZyxomGSYtSQKzM178ylFW4jMAg= +cloud.google.com/go/kms v1.9.0/go.mod h1:qb1tPTgfF9RQP8e1wq4cLFErVuTJv7UsSC915J8dh3w= +cloud.google.com/go/kms v1.10.0/go.mod h1:ng3KTUtQQU9bPX3+QGLsflZIHlkbn8amFAMY63m8d24= +cloud.google.com/go/kms v1.10.1/go.mod h1:rIWk/TryCkR59GMC3YtHtXeLzd634lBbKenvyySAyYI= +cloud.google.com/go/kms v1.11.0/go.mod h1:hwdiYC0xjnWsKQQCQQmIQnS9asjYVSK6jtXm+zFqXLM= +cloud.google.com/go/kms v1.12.1/go.mod h1:c9J991h5DTl+kg7gi3MYomh12YEENGrf48ee/N/2CDM= +cloud.google.com/go/kms v1.15.0/go.mod h1:c9J991h5DTl+kg7gi3MYomh12YEENGrf48ee/N/2CDM= +cloud.google.com/go/kms v1.15.2/go.mod h1:3hopT4+7ooWRCjc2DxgnpESFxhIraaI2IpAVUEhbT/w= +cloud.google.com/go/kms v1.15.3/go.mod h1:AJdXqHxS2GlPyduM99s9iGqi2nwbviBbhV/hdmt4iOQ= +cloud.google.com/go/kms v1.15.5/go.mod h1:cU2H5jnp6G2TDpUGZyqTCoy1n16fbubHZjmVXSMtwDI= +cloud.google.com/go/language v1.4.0/go.mod h1:F9dRpNFQmJbkaop6g0JhSBXCNlO90e1KWx5iDdxbWic= +cloud.google.com/go/language v1.6.0/go.mod h1:6dJ8t3B+lUYfStgls25GusK04NLh3eDLQnWM3mdEbhI= +cloud.google.com/go/language v1.7.0/go.mod h1:DJ6dYN/W+SQOjF8e1hLQXMF21AkH2w9wiPzPCJa2MIE= +cloud.google.com/go/language v1.8.0/go.mod h1:qYPVHf7SPoNNiCL2Dr0FfEFNil1qi3pQEyygwpgVKB8= +cloud.google.com/go/language v1.9.0/go.mod h1:Ns15WooPM5Ad/5no/0n81yUetis74g3zrbeJBE+ptUY= +cloud.google.com/go/language v1.10.1/go.mod h1:CPp94nsdVNiQEt1CNjF5WkTcisLiHPyIbMhvR8H2AW0= +cloud.google.com/go/language v1.11.0/go.mod h1:uDx+pFDdAKTY8ehpWbiXyQdz8tDSYLJbQcXsCkjYyvQ= +cloud.google.com/go/language v1.11.1/go.mod h1:Xyid9MG9WOX3utvDbpX7j3tXDmmDooMyMDqgUVpH17U= +cloud.google.com/go/lifesciences v0.5.0/go.mod h1:3oIKy8ycWGPUyZDR/8RNnTOYevhaMLqh5vLUXs9zvT8= +cloud.google.com/go/lifesciences v0.6.0/go.mod h1:ddj6tSX/7BOnhxCSd3ZcETvtNr8NZ6t/iPhY2Tyfu08= +cloud.google.com/go/lifesciences v0.8.0/go.mod h1:lFxiEOMqII6XggGbOnKiyZ7IBwoIqA84ClvoezaA/bo= +cloud.google.com/go/lifesciences v0.9.1/go.mod h1:hACAOd1fFbCGLr/+weUKRAJas82Y4vrL3O5326N//Wc= +cloud.google.com/go/lifesciences v0.9.2/go.mod h1:QHEOO4tDzcSAzeJg7s2qwnLM2ji8IRpQl4p6m5Z9yTA= +cloud.google.com/go/logging v1.6.1/go.mod h1:5ZO0mHHbvm8gEmeEUHrmDlTDSu5imF6MUP9OfilNXBw= +cloud.google.com/go/logging v1.7.0/go.mod h1:3xjP2CjkM3ZkO73aj4ASA5wRPGGCRrPIAeNqVNkzY8M= +cloud.google.com/go/logging v1.8.1/go.mod h1:TJjR+SimHwuC8MZ9cjByQulAMgni+RkXeI3wwctHJEI= +cloud.google.com/go/longrunning v0.1.1/go.mod h1:UUFxuDWkv22EuY93jjmDMFT5GPQKeFVJBIF6QlTqdsE= +cloud.google.com/go/longrunning v0.3.0/go.mod h1:qth9Y41RRSUE69rDcOn6DdK3HfQfsUI0YSmW3iIlLJc= +cloud.google.com/go/longrunning v0.4.1/go.mod h1:4iWDqhBZ70CvZ6BfETbvam3T8FMvLK+eFj0E6AaRQTo= +cloud.google.com/go/longrunning v0.4.2/go.mod h1:OHrnaYyLUV6oqwh0xiS7e5sLQhP1m0QU9R+WhGDMgIQ= +cloud.google.com/go/longrunning v0.5.0/go.mod h1:0JNuqRShmscVAhIACGtskSAWtqtOoPkwP0YF1oVEchc= +cloud.google.com/go/longrunning v0.5.1/go.mod h1:spvimkwdz6SPWKEt/XBij79E9fiTkHSQl/fRUUQJYJc= +cloud.google.com/go/longrunning v0.5.2/go.mod h1:nqo6DQbNV2pXhGDbDMoN2bWz68MjZUzqv2YttZiveCs= +cloud.google.com/go/managedidentities v1.3.0/go.mod h1:UzlW3cBOiPrzucO5qWkNkh0w33KFtBJU281hacNvsdE= +cloud.google.com/go/managedidentities v1.4.0/go.mod h1:NWSBYbEMgqmbZsLIyKvxrYbtqOsxY1ZrGM+9RgDqInM= +cloud.google.com/go/managedidentities v1.5.0/go.mod h1:+dWcZ0JlUmpuxpIDfyP5pP5y0bLdRwOS4Lp7gMni/LA= +cloud.google.com/go/managedidentities v1.6.1/go.mod h1:h/irGhTN2SkZ64F43tfGPMbHnypMbu4RB3yl8YcuEak= +cloud.google.com/go/managedidentities v1.6.2/go.mod h1:5c2VG66eCa0WIq6IylRk3TBW83l161zkFvCj28X7jn8= +cloud.google.com/go/maps v0.1.0/go.mod h1:BQM97WGyfw9FWEmQMpZ5T6cpovXXSd1cGmFma94eubI= +cloud.google.com/go/maps v0.6.0/go.mod h1:o6DAMMfb+aINHz/p/jbcY+mYeXBoZoxTfdSQ8VAJaCw= +cloud.google.com/go/maps v0.7.0/go.mod h1:3GnvVl3cqeSvgMcpRlQidXsPYuDGQ8naBis7MVzpXsY= +cloud.google.com/go/maps v1.3.0/go.mod h1:6mWTUv+WhnOwAgjVsSW2QPPECmW+s3PcRyOa9vgG/5s= +cloud.google.com/go/maps v1.4.0/go.mod h1:6mWTUv+WhnOwAgjVsSW2QPPECmW+s3PcRyOa9vgG/5s= +cloud.google.com/go/maps v1.4.1/go.mod h1:BxSa0BnW1g2U2gNdbq5zikLlHUuHW0GFWh7sgML2kIY= +cloud.google.com/go/mediatranslation v0.5.0/go.mod h1:jGPUhGTybqsPQn91pNXw0xVHfuJ3leR1wj37oU3y1f4= +cloud.google.com/go/mediatranslation v0.6.0/go.mod h1:hHdBCTYNigsBxshbznuIMFNe5QXEowAuNmmC7h8pu5w= +cloud.google.com/go/mediatranslation v0.7.0/go.mod h1:LCnB/gZr90ONOIQLgSXagp8XUW1ODs2UmUMvcgMfI2I= +cloud.google.com/go/mediatranslation v0.8.1/go.mod h1:L/7hBdEYbYHQJhX2sldtTO5SZZ1C1vkapubj0T2aGig= +cloud.google.com/go/mediatranslation v0.8.2/go.mod h1:c9pUaDRLkgHRx3irYE5ZC8tfXGrMYwNZdmDqKMSfFp8= +cloud.google.com/go/memcache v1.4.0/go.mod h1:rTOfiGZtJX1AaFUrOgsMHX5kAzaTQ8azHiuDoTPzNsE= +cloud.google.com/go/memcache v1.5.0/go.mod h1:dk3fCK7dVo0cUU2c36jKb4VqKPS22BTkf81Xq617aWM= +cloud.google.com/go/memcache v1.6.0/go.mod h1:XS5xB0eQZdHtTuTF9Hf8eJkKtR3pVRCcvJwtm68T3rA= +cloud.google.com/go/memcache v1.7.0/go.mod h1:ywMKfjWhNtkQTxrWxCkCFkoPjLHPW6A7WOTVI8xy3LY= +cloud.google.com/go/memcache v1.9.0/go.mod h1:8oEyzXCu+zo9RzlEaEjHl4KkgjlNDaXbCQeQWlzNFJM= +cloud.google.com/go/memcache v1.10.1/go.mod h1:47YRQIarv4I3QS5+hoETgKO40InqzLP6kpNLvyXuyaA= +cloud.google.com/go/memcache v1.10.2/go.mod h1:f9ZzJHLBrmd4BkguIAa/l/Vle6uTHzHokdnzSWOdQ6A= +cloud.google.com/go/metastore v1.5.0/go.mod h1:2ZNrDcQwghfdtCwJ33nM0+GrBGlVuh8rakL3vdPY3XY= +cloud.google.com/go/metastore v1.6.0/go.mod h1:6cyQTls8CWXzk45G55x57DVQ9gWg7RiH65+YgPsNh9s= +cloud.google.com/go/metastore v1.7.0/go.mod h1:s45D0B4IlsINu87/AsWiEVYbLaIMeUSoxlKKDqBGFS8= +cloud.google.com/go/metastore v1.8.0/go.mod h1:zHiMc4ZUpBiM7twCIFQmJ9JMEkDSyZS9U12uf7wHqSI= +cloud.google.com/go/metastore v1.10.0/go.mod h1:fPEnH3g4JJAk+gMRnrAnoqyv2lpUCqJPWOodSaf45Eo= +cloud.google.com/go/metastore v1.11.1/go.mod h1:uZuSo80U3Wd4zi6C22ZZliOUJ3XeM/MlYi/z5OAOWRA= +cloud.google.com/go/metastore v1.12.0/go.mod h1:uZuSo80U3Wd4zi6C22ZZliOUJ3XeM/MlYi/z5OAOWRA= +cloud.google.com/go/metastore v1.13.0/go.mod h1:URDhpG6XLeh5K+Glq0NOt74OfrPKTwS62gEPZzb5SOk= +cloud.google.com/go/metastore v1.13.1/go.mod h1:IbF62JLxuZmhItCppcIfzBBfUFq0DIB9HPDoLgWrVOU= +cloud.google.com/go/monitoring v1.7.0/go.mod h1:HpYse6kkGo//7p6sT0wsIC6IBDET0RhIsnmlA53dvEk= +cloud.google.com/go/monitoring v1.8.0/go.mod h1:E7PtoMJ1kQXWxPjB6mv2fhC5/15jInuulFdYYtlcvT4= +cloud.google.com/go/monitoring v1.12.0/go.mod h1:yx8Jj2fZNEkL/GYZyTLS4ZtZEZN8WtDEiEqG4kLK50w= +cloud.google.com/go/monitoring v1.13.0/go.mod h1:k2yMBAB1H9JT/QETjNkgdCGD9bPF712XiLTVr+cBrpw= +cloud.google.com/go/monitoring v1.15.1/go.mod h1:lADlSAlFdbqQuwwpaImhsJXu1QSdd3ojypXrFSMr2rM= +cloud.google.com/go/monitoring v1.16.0/go.mod h1:Ptp15HgAyM1fNICAojDMoNc/wUmn67mLHQfyqbw+poY= +cloud.google.com/go/monitoring v1.16.1/go.mod h1:6HsxddR+3y9j+o/cMJH6q/KJ/CBTvM/38L/1m7bTRJ4= +cloud.google.com/go/networkconnectivity v1.4.0/go.mod h1:nOl7YL8odKyAOtzNX73/M5/mGZgqqMeryi6UPZTk/rA= +cloud.google.com/go/networkconnectivity v1.5.0/go.mod h1:3GzqJx7uhtlM3kln0+x5wyFvuVH1pIBJjhCpjzSt75o= +cloud.google.com/go/networkconnectivity v1.6.0/go.mod h1:OJOoEXW+0LAxHh89nXd64uGG+FbQoeH8DtxCHVOMlaM= +cloud.google.com/go/networkconnectivity v1.7.0/go.mod h1:RMuSbkdbPwNMQjB5HBWD5MpTBnNm39iAVpC3TmsExt8= +cloud.google.com/go/networkconnectivity v1.10.0/go.mod h1:UP4O4sWXJG13AqrTdQCD9TnLGEbtNRqjuaaA7bNjF5E= +cloud.google.com/go/networkconnectivity v1.11.0/go.mod h1:iWmDD4QF16VCDLXUqvyspJjIEtBR/4zq5hwnY2X3scM= +cloud.google.com/go/networkconnectivity v1.12.1/go.mod h1:PelxSWYM7Sh9/guf8CFhi6vIqf19Ir/sbfZRUwXh92E= +cloud.google.com/go/networkconnectivity v1.13.0/go.mod h1:SAnGPes88pl7QRLUen2HmcBSE9AowVAcdug8c0RSBFk= +cloud.google.com/go/networkconnectivity v1.14.0/go.mod h1:SAnGPes88pl7QRLUen2HmcBSE9AowVAcdug8c0RSBFk= +cloud.google.com/go/networkconnectivity v1.14.1/go.mod h1:LyGPXR742uQcDxZ/wv4EI0Vu5N6NKJ77ZYVnDe69Zug= +cloud.google.com/go/networkmanagement v1.4.0/go.mod h1:Q9mdLLRn60AsOrPc8rs8iNV6OHXaGcDdsIQe1ohekq8= +cloud.google.com/go/networkmanagement v1.5.0/go.mod h1:ZnOeZ/evzUdUsnvRt792H0uYEnHQEMaz+REhhzJRcf4= +cloud.google.com/go/networkmanagement v1.6.0/go.mod h1:5pKPqyXjB/sgtvB5xqOemumoQNB7y95Q7S+4rjSOPYY= +cloud.google.com/go/networkmanagement v1.8.0/go.mod h1:Ho/BUGmtyEqrttTgWEe7m+8vDdK74ibQc+Be0q7Fof0= +cloud.google.com/go/networkmanagement v1.9.0/go.mod h1:UTUaEU9YwbCAhhz3jEOHr+2/K/MrBk2XxOLS89LQzFw= +cloud.google.com/go/networkmanagement v1.9.1/go.mod h1:CCSYgrQQvW73EJawO2QamemYcOb57LvrDdDU51F0mcI= +cloud.google.com/go/networksecurity v0.5.0/go.mod h1:xS6fOCoqpVC5zx15Z/MqkfDwH4+m/61A3ODiDV1xmiQ= +cloud.google.com/go/networksecurity v0.6.0/go.mod h1:Q5fjhTr9WMI5mbpRYEbiexTzROf7ZbDzvzCrNl14nyU= +cloud.google.com/go/networksecurity v0.7.0/go.mod h1:mAnzoxx/8TBSyXEeESMy9OOYwo1v+gZ5eMRnsT5bC8k= +cloud.google.com/go/networksecurity v0.8.0/go.mod h1:B78DkqsxFG5zRSVuwYFRZ9Xz8IcQ5iECsNrPn74hKHU= +cloud.google.com/go/networksecurity v0.9.1/go.mod h1:MCMdxOKQ30wsBI1eI659f9kEp4wuuAueoC9AJKSPWZQ= +cloud.google.com/go/networksecurity v0.9.2/go.mod h1:jG0SeAttWzPMUILEHDUvFYdQTl8L/E/KC8iZDj85lEI= +cloud.google.com/go/notebooks v1.2.0/go.mod h1:9+wtppMfVPUeJ8fIWPOq1UnATHISkGXGqTkxeieQ6UY= +cloud.google.com/go/notebooks v1.3.0/go.mod h1:bFR5lj07DtCPC7YAAJ//vHskFBxA5JzYlH68kXVdk34= +cloud.google.com/go/notebooks v1.4.0/go.mod h1:4QPMngcwmgb6uw7Po99B2xv5ufVoIQ7nOGDyL4P8AgA= +cloud.google.com/go/notebooks v1.5.0/go.mod h1:q8mwhnP9aR8Hpfnrc5iN5IBhrXUy8S2vuYs+kBJ/gu0= +cloud.google.com/go/notebooks v1.7.0/go.mod h1:PVlaDGfJgj1fl1S3dUwhFMXFgfYGhYQt2164xOMONmE= +cloud.google.com/go/notebooks v1.8.0/go.mod h1:Lq6dYKOYOWUCTvw5t2q1gp1lAp0zxAxRycayS0iJcqQ= +cloud.google.com/go/notebooks v1.9.1/go.mod h1:zqG9/gk05JrzgBt4ghLzEepPHNwE5jgPcHZRKhlC1A8= +cloud.google.com/go/notebooks v1.10.0/go.mod h1:SOPYMZnttHxqot0SGSFSkRrwE29eqnKPBJFqgWmiK2k= +cloud.google.com/go/notebooks v1.10.1/go.mod h1:5PdJc2SgAybE76kFQCWrTfJolCOUQXF97e+gteUUA6A= +cloud.google.com/go/optimization v1.1.0/go.mod h1:5po+wfvX5AQlPznyVEZjGJTMr4+CAkJf2XSTQOOl9l4= +cloud.google.com/go/optimization v1.2.0/go.mod h1:Lr7SOHdRDENsh+WXVmQhQTrzdu9ybg0NecjHidBq6xs= +cloud.google.com/go/optimization v1.3.1/go.mod h1:IvUSefKiwd1a5p0RgHDbWCIbDFgKuEdB+fPPuP0IDLI= +cloud.google.com/go/optimization v1.4.1/go.mod h1:j64vZQP7h9bO49m2rVaTVoNM0vEBEN5eKPUPbZyXOrk= +cloud.google.com/go/optimization v1.5.0/go.mod h1:evo1OvTxeBRBu6ydPlrIRizKY/LJKo/drDMMRKqGEUU= +cloud.google.com/go/optimization v1.5.1/go.mod h1:NC0gnUD5MWVAF7XLdoYVPmYYVth93Q6BUzqAq3ZwtV8= +cloud.google.com/go/orchestration v1.3.0/go.mod h1:Sj5tq/JpWiB//X/q3Ngwdl5K7B7Y0KZ7bfv0wL6fqVA= +cloud.google.com/go/orchestration v1.4.0/go.mod h1:6W5NLFWs2TlniBphAViZEVhrXRSMgUGDfW7vrWKvsBk= +cloud.google.com/go/orchestration v1.6.0/go.mod h1:M62Bevp7pkxStDfFfTuCOaXgaaqRAga1yKyoMtEoWPQ= +cloud.google.com/go/orchestration v1.8.1/go.mod h1:4sluRF3wgbYVRqz7zJ1/EUNc90TTprliq9477fGobD8= +cloud.google.com/go/orchestration v1.8.2/go.mod h1:T1cP+6WyTmh6LSZzeUhvGf0uZVmJyTx7t8z7Vg87+A0= +cloud.google.com/go/orgpolicy v1.4.0/go.mod h1:xrSLIV4RePWmP9P3tBl8S93lTmlAxjm06NSm2UTmKvE= +cloud.google.com/go/orgpolicy v1.5.0/go.mod h1:hZEc5q3wzwXJaKrsx5+Ewg0u1LxJ51nNFlext7Tanwc= +cloud.google.com/go/orgpolicy v1.10.0/go.mod h1:w1fo8b7rRqlXlIJbVhOMPrwVljyuW5mqssvBtU18ONc= +cloud.google.com/go/orgpolicy v1.11.0/go.mod h1:2RK748+FtVvnfuynxBzdnyu7sygtoZa1za/0ZfpOs1M= +cloud.google.com/go/orgpolicy v1.11.1/go.mod h1:8+E3jQcpZJQliP+zaFfayC2Pg5bmhuLK755wKhIIUCE= +cloud.google.com/go/orgpolicy v1.11.2/go.mod h1:biRDpNwfyytYnmCRWZWxrKF22Nkz9eNVj9zyaBdpm1o= +cloud.google.com/go/osconfig v1.7.0/go.mod h1:oVHeCeZELfJP7XLxcBGTMBvRO+1nQ5tFG9VQTmYS2Fs= +cloud.google.com/go/osconfig v1.8.0/go.mod h1:EQqZLu5w5XA7eKizepumcvWx+m8mJUhEwiPqWiZeEdg= +cloud.google.com/go/osconfig v1.9.0/go.mod h1:Yx+IeIZJ3bdWmzbQU4fxNl8xsZ4amB+dygAwFPlvnNo= +cloud.google.com/go/osconfig v1.10.0/go.mod h1:uMhCzqC5I8zfD9zDEAfvgVhDS8oIjySWh+l4WK6GnWw= +cloud.google.com/go/osconfig v1.11.0/go.mod h1:aDICxrur2ogRd9zY5ytBLV89KEgT2MKB2L/n6x1ooPw= +cloud.google.com/go/osconfig v1.12.0/go.mod h1:8f/PaYzoS3JMVfdfTubkowZYGmAhUCjjwnjqWI7NVBc= +cloud.google.com/go/osconfig v1.12.1/go.mod h1:4CjBxND0gswz2gfYRCUoUzCm9zCABp91EeTtWXyz0tE= +cloud.google.com/go/osconfig v1.12.2/go.mod h1:eh9GPaMZpI6mEJEuhEjUJmaxvQ3gav+fFEJon1Y8Iw0= +cloud.google.com/go/oslogin v1.4.0/go.mod h1:YdgMXWRaElXz/lDk1Na6Fh5orF7gvmJ0FGLIs9LId4E= +cloud.google.com/go/oslogin v1.5.0/go.mod h1:D260Qj11W2qx/HVF29zBg+0fd6YCSjSqLUkY/qEenQU= +cloud.google.com/go/oslogin v1.6.0/go.mod h1:zOJ1O3+dTU8WPlGEkFSh7qeHPPSoxrcMbbK1Nm2iX70= +cloud.google.com/go/oslogin v1.7.0/go.mod h1:e04SN0xO1UNJ1M5GP0vzVBFicIe4O53FOfcixIqTyXo= +cloud.google.com/go/oslogin v1.9.0/go.mod h1:HNavntnH8nzrn8JCTT5fj18FuJLFJc4NaZJtBnQtKFs= +cloud.google.com/go/oslogin v1.10.1/go.mod h1:x692z7yAue5nE7CsSnoG0aaMbNoRJRXO4sn73R+ZqAs= +cloud.google.com/go/oslogin v1.11.0/go.mod h1:8GMTJs4X2nOAUVJiPGqIWVcDaF0eniEto3xlOxaboXE= +cloud.google.com/go/oslogin v1.11.1/go.mod h1:OhD2icArCVNUxKqtK0mcSmKL7lgr0LVlQz+v9s1ujTg= +cloud.google.com/go/phishingprotection v0.5.0/go.mod h1:Y3HZknsK9bc9dMi+oE8Bim0lczMU6hrX0UpADuMefr0= +cloud.google.com/go/phishingprotection v0.6.0/go.mod h1:9Y3LBLgy0kDTcYET8ZH3bq/7qni15yVUoAxiFxnlSUA= +cloud.google.com/go/phishingprotection v0.7.0/go.mod h1:8qJI4QKHoda/sb/7/YmMQ2omRLSLYSu9bU0EKCNI+Lk= +cloud.google.com/go/phishingprotection v0.8.1/go.mod h1:AxonW7GovcA8qdEk13NfHq9hNx5KPtfxXNeUxTDxB6I= +cloud.google.com/go/phishingprotection v0.8.2/go.mod h1:LhJ91uyVHEYKSKcMGhOa14zMMWfbEdxG032oT6ECbC8= +cloud.google.com/go/policytroubleshooter v1.3.0/go.mod h1:qy0+VwANja+kKrjlQuOzmlvscn4RNsAc0e15GGqfMxg= +cloud.google.com/go/policytroubleshooter v1.4.0/go.mod h1:DZT4BcRw3QoO8ota9xw/LKtPa8lKeCByYeKTIf/vxdE= +cloud.google.com/go/policytroubleshooter v1.5.0/go.mod h1:Rz1WfV+1oIpPdN2VvvuboLVRsB1Hclg3CKQ53j9l8vw= +cloud.google.com/go/policytroubleshooter v1.6.0/go.mod h1:zYqaPTsmfvpjm5ULxAyD/lINQxJ0DDsnWOP/GZ7xzBc= +cloud.google.com/go/policytroubleshooter v1.7.1/go.mod h1:0NaT5v3Ag1M7U5r0GfDCpUFkWd9YqpubBWsQlhanRv0= +cloud.google.com/go/policytroubleshooter v1.8.0/go.mod h1:tmn5Ir5EToWe384EuboTcVQT7nTag2+DuH3uHmKd1HU= +cloud.google.com/go/policytroubleshooter v1.9.0/go.mod h1:+E2Lga7TycpeSTj2FsH4oXxTnrbHJGRlKhVZBLGgU64= +cloud.google.com/go/policytroubleshooter v1.9.1/go.mod h1:MYI8i0bCrL8cW+VHN1PoiBTyNZTstCg2WUw2eVC4c4U= +cloud.google.com/go/privatecatalog v0.5.0/go.mod h1:XgosMUvvPyxDjAVNDYxJ7wBW8//hLDDYmnsNcMGq1K0= +cloud.google.com/go/privatecatalog v0.6.0/go.mod h1:i/fbkZR0hLN29eEWiiwue8Pb+GforiEIBnV9yrRUOKI= +cloud.google.com/go/privatecatalog v0.7.0/go.mod h1:2s5ssIFO69F5csTXcwBP7NPFTZvps26xGzvQ2PQaBYg= +cloud.google.com/go/privatecatalog v0.8.0/go.mod h1:nQ6pfaegeDAq/Q5lrfCQzQLhubPiZhSaNhIgfJlnIXs= +cloud.google.com/go/privatecatalog v0.9.1/go.mod h1:0XlDXW2unJXdf9zFz968Hp35gl/bhF4twwpXZAW50JA= +cloud.google.com/go/privatecatalog v0.9.2/go.mod h1:RMA4ATa8IXfzvjrhhK8J6H4wwcztab+oZph3c6WmtFc= cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= cloud.google.com/go/pubsub v1.1.0/go.mod h1:EwwdRX2sKPjnvnqCa270oGRyludottCI76h+R3AArQw= cloud.google.com/go/pubsub v1.2.0/go.mod h1:jhfEVHT8odbXTkndysNHCcx0awwzvfOlguIAii9o8iA= cloud.google.com/go/pubsub v1.3.1/go.mod h1:i+ucay31+CNRpDW4Lu78I4xXG+O1r/MAHgjpRVR+TSU= +cloud.google.com/go/pubsub v1.26.0/go.mod h1:QgBH3U/jdJy/ftjPhTkyXNj543Tin1pRYcdcPRnFIRI= +cloud.google.com/go/pubsub v1.27.1/go.mod h1:hQN39ymbV9geqBnfQq6Xf63yNhUAhv9CZhzp5O6qsW0= +cloud.google.com/go/pubsub v1.28.0/go.mod h1:vuXFpwaVoIPQMGXqRyUQigu/AX1S3IWugR9xznmcXX8= +cloud.google.com/go/pubsub v1.30.0/go.mod h1:qWi1OPS0B+b5L+Sg6Gmc9zD1Y+HaM0MdUr7LsupY1P4= +cloud.google.com/go/pubsub v1.32.0/go.mod h1:f+w71I33OMyxf9VpMVcZbnG5KSUkCOUHYpFd5U1GdRc= +cloud.google.com/go/pubsub v1.33.0/go.mod h1:f+w71I33OMyxf9VpMVcZbnG5KSUkCOUHYpFd5U1GdRc= +cloud.google.com/go/pubsublite v1.5.0/go.mod h1:xapqNQ1CuLfGi23Yda/9l4bBCKz/wC3KIJ5gKcxveZg= +cloud.google.com/go/pubsublite v1.6.0/go.mod h1:1eFCS0U11xlOuMFV/0iBqw3zP12kddMeCbj/F3FSj9k= +cloud.google.com/go/pubsublite v1.7.0/go.mod h1:8hVMwRXfDfvGm3fahVbtDbiLePT3gpoiJYJY+vxWxVM= +cloud.google.com/go/pubsublite v1.8.1/go.mod h1:fOLdU4f5xldK4RGJrBMm+J7zMWNj/k4PxwEZXy39QS0= +cloud.google.com/go/recaptchaenterprise v1.3.1/go.mod h1:OdD+q+y4XGeAlxRaMn1Y7/GveP6zmq76byL6tjPE7d4= +cloud.google.com/go/recaptchaenterprise/v2 v2.1.0/go.mod h1:w9yVqajwroDNTfGuhmOjPDN//rZGySaf6PtFVcSCa7o= +cloud.google.com/go/recaptchaenterprise/v2 v2.2.0/go.mod h1:/Zu5jisWGeERrd5HnlS3EUGb/D335f9k51B/FVil0jk= +cloud.google.com/go/recaptchaenterprise/v2 v2.3.0/go.mod h1:O9LwGCjrhGHBQET5CA7dd5NwwNQUErSgEDit1DLNTdo= +cloud.google.com/go/recaptchaenterprise/v2 v2.4.0/go.mod h1:Am3LHfOuBstrLrNCBrlI5sbwx9LBg3te2N6hGvHn2mE= +cloud.google.com/go/recaptchaenterprise/v2 v2.5.0/go.mod h1:O8LzcHXN3rz0j+LBC91jrwI3R+1ZSZEWrfL7XHgNo9U= +cloud.google.com/go/recaptchaenterprise/v2 v2.6.0/go.mod h1:RPauz9jeLtB3JVzg6nCbe12qNoaa8pXc4d/YukAmcnA= +cloud.google.com/go/recaptchaenterprise/v2 v2.7.0/go.mod h1:19wVj/fs5RtYtynAPJdDTb69oW0vNHYDBTbB4NvMD9c= +cloud.google.com/go/recaptchaenterprise/v2 v2.7.2/go.mod h1:kR0KjsJS7Jt1YSyWFkseQ756D45kaYNTlDPPaRAvDBU= +cloud.google.com/go/recaptchaenterprise/v2 v2.8.0/go.mod h1:QuE8EdU9dEnesG8/kG3XuJyNsjEqMlMzg3v3scCJ46c= +cloud.google.com/go/recaptchaenterprise/v2 v2.8.1/go.mod h1:JZYZJOeZjgSSTGP4uz7NlQ4/d1w5hGmksVgM0lbEij0= +cloud.google.com/go/recommendationengine v0.5.0/go.mod h1:E5756pJcVFeVgaQv3WNpImkFP8a+RptV6dDLGPILjvg= +cloud.google.com/go/recommendationengine v0.6.0/go.mod h1:08mq2umu9oIqc7tDy8sx+MNJdLG0fUi3vaSVbztHgJ4= +cloud.google.com/go/recommendationengine v0.7.0/go.mod h1:1reUcE3GIu6MeBz/h5xZJqNLuuVjNg1lmWMPyjatzac= +cloud.google.com/go/recommendationengine v0.8.1/go.mod h1:MrZihWwtFYWDzE6Hz5nKcNz3gLizXVIDI/o3G1DLcrE= +cloud.google.com/go/recommendationengine v0.8.2/go.mod h1:QIybYHPK58qir9CV2ix/re/M//Ty10OxjnnhWdaKS1Y= +cloud.google.com/go/recommender v1.5.0/go.mod h1:jdoeiBIVrJe9gQjwd759ecLJbxCDED4A6p+mqoqDvTg= +cloud.google.com/go/recommender v1.6.0/go.mod h1:+yETpm25mcoiECKh9DEScGzIRyDKpZ0cEhWGo+8bo+c= +cloud.google.com/go/recommender v1.7.0/go.mod h1:XLHs/W+T8olwlGOgfQenXBTbIseGclClff6lhFVe9Bs= +cloud.google.com/go/recommender v1.8.0/go.mod h1:PkjXrTT05BFKwxaUxQmtIlrtj0kph108r02ZZQ5FE70= +cloud.google.com/go/recommender v1.9.0/go.mod h1:PnSsnZY7q+VL1uax2JWkt/UegHssxjUVVCrX52CuEmQ= +cloud.google.com/go/recommender v1.10.1/go.mod h1:XFvrE4Suqn5Cq0Lf+mCP6oBHD/yRMA8XxP5sb7Q7gpA= +cloud.google.com/go/recommender v1.11.0/go.mod h1:kPiRQhPyTJ9kyXPCG6u/dlPLbYfFlkwHNRwdzPVAoII= +cloud.google.com/go/recommender v1.11.1/go.mod h1:sGwFFAyI57v2Hc5LbIj+lTwXipGu9NW015rkaEM5B18= +cloud.google.com/go/redis v1.7.0/go.mod h1:V3x5Jq1jzUcg+UNsRvdmsfuFnit1cfe3Z/PGyq/lm4Y= +cloud.google.com/go/redis v1.8.0/go.mod h1:Fm2szCDavWzBk2cDKxrkmWBqoCiL1+Ctwq7EyqBCA/A= +cloud.google.com/go/redis v1.9.0/go.mod h1:HMYQuajvb2D0LvMgZmLDZW8V5aOC/WxstZHiy4g8OiA= +cloud.google.com/go/redis v1.10.0/go.mod h1:ThJf3mMBQtW18JzGgh41/Wld6vnDDc/F/F35UolRZPM= +cloud.google.com/go/redis v1.11.0/go.mod h1:/X6eicana+BWcUda5PpwZC48o37SiFVTFSs0fWAJ7uQ= +cloud.google.com/go/redis v1.13.1/go.mod h1:VP7DGLpE91M6bcsDdMuyCm2hIpB6Vp2hI090Mfd1tcg= +cloud.google.com/go/redis v1.13.2/go.mod h1:0Hg7pCMXS9uz02q+LoEVl5dNHUkIQv+C/3L76fandSA= +cloud.google.com/go/resourcemanager v1.3.0/go.mod h1:bAtrTjZQFJkiWTPDb1WBjzvc6/kifjj4QBYuKCCoqKA= +cloud.google.com/go/resourcemanager v1.4.0/go.mod h1:MwxuzkumyTX7/a3n37gmsT3py7LIXwrShilPh3P1tR0= +cloud.google.com/go/resourcemanager v1.5.0/go.mod h1:eQoXNAiAvCf5PXxWxXjhKQoTMaUSNrEfg+6qdf/wots= +cloud.google.com/go/resourcemanager v1.6.0/go.mod h1:YcpXGRs8fDzcUl1Xw8uOVmI8JEadvhRIkoXXUNVYcVo= +cloud.google.com/go/resourcemanager v1.7.0/go.mod h1:HlD3m6+bwhzj9XCouqmeiGuni95NTrExfhoSrkC/3EI= +cloud.google.com/go/resourcemanager v1.9.1/go.mod h1:dVCuosgrh1tINZ/RwBufr8lULmWGOkPS8gL5gqyjdT8= +cloud.google.com/go/resourcemanager v1.9.2/go.mod h1:OujkBg1UZg5lX2yIyMo5Vz9O5hf7XQOSV7WxqxxMtQE= +cloud.google.com/go/resourcesettings v1.3.0/go.mod h1:lzew8VfESA5DQ8gdlHwMrqZs1S9V87v3oCnKCWoOuQU= +cloud.google.com/go/resourcesettings v1.4.0/go.mod h1:ldiH9IJpcrlC3VSuCGvjR5of/ezRrOxFtpJoJo5SmXg= +cloud.google.com/go/resourcesettings v1.5.0/go.mod h1:+xJF7QSG6undsQDfsCJyqWXyBwUoJLhetkRMDRnIoXA= +cloud.google.com/go/resourcesettings v1.6.1/go.mod h1:M7mk9PIZrC5Fgsu1kZJci6mpgN8o0IUzVx3eJU3y4Jw= +cloud.google.com/go/resourcesettings v1.6.2/go.mod h1:mJIEDd9MobzunWMeniaMp6tzg4I2GvD3TTmPkc8vBXk= +cloud.google.com/go/retail v1.8.0/go.mod h1:QblKS8waDmNUhghY2TI9O3JLlFk8jybHeV4BF19FrE4= +cloud.google.com/go/retail v1.9.0/go.mod h1:g6jb6mKuCS1QKnH/dpu7isX253absFl6iE92nHwlBUY= +cloud.google.com/go/retail v1.10.0/go.mod h1:2gDk9HsL4HMS4oZwz6daui2/jmKvqShXKQuB2RZ+cCc= +cloud.google.com/go/retail v1.11.0/go.mod h1:MBLk1NaWPmh6iVFSz9MeKG/Psyd7TAgm6y/9L2B4x9Y= +cloud.google.com/go/retail v1.12.0/go.mod h1:UMkelN/0Z8XvKymXFbD4EhFJlYKRx1FGhQkVPU5kF14= +cloud.google.com/go/retail v1.14.1/go.mod h1:y3Wv3Vr2k54dLNIrCzenyKG8g8dhvhncT2NcNjb/6gE= +cloud.google.com/go/retail v1.14.2/go.mod h1:W7rrNRChAEChX336QF7bnMxbsjugcOCPU44i5kbLiL8= +cloud.google.com/go/run v0.2.0/go.mod h1:CNtKsTA1sDcnqqIFR3Pb5Tq0usWxJJvsWOCPldRU3Do= +cloud.google.com/go/run v0.3.0/go.mod h1:TuyY1+taHxTjrD0ZFk2iAR+xyOXEA0ztb7U3UNA0zBo= +cloud.google.com/go/run v0.8.0/go.mod h1:VniEnuBwqjigv0A7ONfQUaEItaiCRVujlMqerPPiktM= +cloud.google.com/go/run v0.9.0/go.mod h1:Wwu+/vvg8Y+JUApMwEDfVfhetv30hCG4ZwDR/IXl2Qg= +cloud.google.com/go/run v1.2.0/go.mod h1:36V1IlDzQ0XxbQjUx6IYbw8H3TJnWvhii963WW3B/bo= +cloud.google.com/go/run v1.3.0/go.mod h1:S/osX/4jIPZGg+ssuqh6GNgg7syixKe3YnprwehzHKU= +cloud.google.com/go/run v1.3.1/go.mod h1:cymddtZOzdwLIAsmS6s+Asl4JoXIDm/K1cpZTxV4Q5s= +cloud.google.com/go/scheduler v1.4.0/go.mod h1:drcJBmxF3aqZJRhmkHQ9b3uSSpQoltBPGPxGAWROx6s= +cloud.google.com/go/scheduler v1.5.0/go.mod h1:ri073ym49NW3AfT6DZi21vLZrG07GXr5p3H1KxN5QlI= +cloud.google.com/go/scheduler v1.6.0/go.mod h1:SgeKVM7MIwPn3BqtcBntpLyrIJftQISRrYB5ZtT+KOk= +cloud.google.com/go/scheduler v1.7.0/go.mod h1:jyCiBqWW956uBjjPMMuX09n3x37mtyPJegEWKxRsn44= +cloud.google.com/go/scheduler v1.8.0/go.mod h1:TCET+Y5Gp1YgHT8py4nlg2Sew8nUHMqcpousDgXJVQc= +cloud.google.com/go/scheduler v1.9.0/go.mod h1:yexg5t+KSmqu+njTIh3b7oYPheFtBWGcbVUYF1GGMIc= +cloud.google.com/go/scheduler v1.10.1/go.mod h1:R63Ldltd47Bs4gnhQkmNDse5w8gBRrhObZ54PxgR2Oo= +cloud.google.com/go/scheduler v1.10.2/go.mod h1:O3jX6HRH5eKCA3FutMw375XHZJudNIKVonSCHv7ropY= +cloud.google.com/go/secretmanager v1.6.0/go.mod h1:awVa/OXF6IiyaU1wQ34inzQNc4ISIDIrId8qE5QGgKA= +cloud.google.com/go/secretmanager v1.8.0/go.mod h1:hnVgi/bN5MYHd3Gt0SPuTPPp5ENina1/LxM+2W9U9J4= +cloud.google.com/go/secretmanager v1.9.0/go.mod h1:b71qH2l1yHmWQHt9LC80akm86mX8AL6X1MA01dW8ht4= +cloud.google.com/go/secretmanager v1.10.0/go.mod h1:MfnrdvKMPNra9aZtQFvBcvRU54hbPD8/HayQdlUgJpU= +cloud.google.com/go/secretmanager v1.11.1/go.mod h1:znq9JlXgTNdBeQk9TBW/FnR/W4uChEKGeqQWAJ8SXFw= +cloud.google.com/go/secretmanager v1.11.2/go.mod h1:MQm4t3deoSub7+WNwiC4/tRYgDBHJgJPvswqQVB1Vss= +cloud.google.com/go/security v1.5.0/go.mod h1:lgxGdyOKKjHL4YG3/YwIL2zLqMFCKs0UbQwgyZmfJl4= +cloud.google.com/go/security v1.7.0/go.mod h1:mZklORHl6Bg7CNnnjLH//0UlAlaXqiG7Lb9PsPXLfD0= +cloud.google.com/go/security v1.8.0/go.mod h1:hAQOwgmaHhztFhiQ41CjDODdWP0+AE1B3sX4OFlq+GU= +cloud.google.com/go/security v1.9.0/go.mod h1:6Ta1bO8LXI89nZnmnsZGp9lVoVWXqsVbIq/t9dzI+2Q= +cloud.google.com/go/security v1.10.0/go.mod h1:QtOMZByJVlibUT2h9afNDWRZ1G96gVywH8T5GUSb9IA= +cloud.google.com/go/security v1.12.0/go.mod h1:rV6EhrpbNHrrxqlvW0BWAIawFWq3X90SduMJdFwtLB8= +cloud.google.com/go/security v1.13.0/go.mod h1:Q1Nvxl1PAgmeW0y3HTt54JYIvUdtcpYKVfIB8AOMZ+0= +cloud.google.com/go/security v1.15.1/go.mod h1:MvTnnbsWnehoizHi09zoiZob0iCHVcL4AUBj76h9fXA= +cloud.google.com/go/security v1.15.2/go.mod h1:2GVE/v1oixIRHDaClVbHuPcZwAqFM28mXuAKCfMgYIg= +cloud.google.com/go/securitycenter v1.13.0/go.mod h1:cv5qNAqjY84FCN6Y9z28WlkKXyWsgLO832YiWwkCWcU= +cloud.google.com/go/securitycenter v1.14.0/go.mod h1:gZLAhtyKv85n52XYWt6RmeBdydyxfPeTrpToDPw4Auc= +cloud.google.com/go/securitycenter v1.15.0/go.mod h1:PeKJ0t8MoFmmXLXWm41JidyzI3PJjd8sXWaVqg43WWk= +cloud.google.com/go/securitycenter v1.16.0/go.mod h1:Q9GMaLQFUD+5ZTabrbujNWLtSLZIZF7SAR0wWECrjdk= +cloud.google.com/go/securitycenter v1.18.1/go.mod h1:0/25gAzCM/9OL9vVx4ChPeM/+DlfGQJDwBy/UC8AKK0= +cloud.google.com/go/securitycenter v1.19.0/go.mod h1:LVLmSg8ZkkyaNy4u7HCIshAngSQ8EcIRREP3xBnyfag= +cloud.google.com/go/securitycenter v1.23.0/go.mod h1:8pwQ4n+Y9WCWM278R8W3nF65QtY172h4S8aXyI9/hsQ= +cloud.google.com/go/securitycenter v1.23.1/go.mod h1:w2HV3Mv/yKhbXKwOCu2i8bCuLtNP1IMHuiYQn4HJq5s= +cloud.google.com/go/servicecontrol v1.4.0/go.mod h1:o0hUSJ1TXJAmi/7fLJAedOovnujSEvjKCAFNXPQ1RaU= +cloud.google.com/go/servicecontrol v1.5.0/go.mod h1:qM0CnXHhyqKVuiZnGKrIurvVImCs8gmqWsDoqe9sU1s= +cloud.google.com/go/servicecontrol v1.10.0/go.mod h1:pQvyvSRh7YzUF2efw7H87V92mxU8FnFDawMClGCNuAA= +cloud.google.com/go/servicecontrol v1.11.0/go.mod h1:kFmTzYzTUIuZs0ycVqRHNaNhgR+UMUpw9n02l/pY+mc= +cloud.google.com/go/servicecontrol v1.11.1/go.mod h1:aSnNNlwEFBY+PWGQ2DoM0JJ/QUXqV5/ZD9DOLB7SnUk= +cloud.google.com/go/servicedirectory v1.4.0/go.mod h1:gH1MUaZCgtP7qQiI+F+A+OpeKF/HQWgtAddhTbhL2bs= +cloud.google.com/go/servicedirectory v1.5.0/go.mod h1:QMKFL0NUySbpZJ1UZs3oFAmdvVxhhxB6eJ/Vlp73dfg= +cloud.google.com/go/servicedirectory v1.6.0/go.mod h1:pUlbnWsLH9c13yGkxCmfumWEPjsRs1RlmJ4pqiNjVL4= +cloud.google.com/go/servicedirectory v1.7.0/go.mod h1:5p/U5oyvgYGYejufvxhgwjL8UVXjkuw7q5XcG10wx1U= +cloud.google.com/go/servicedirectory v1.8.0/go.mod h1:srXodfhY1GFIPvltunswqXpVxFPpZjf8nkKQT7XcXaY= +cloud.google.com/go/servicedirectory v1.9.0/go.mod h1:29je5JjiygNYlmsGz8k6o+OZ8vd4f//bQLtvzkPPT/s= +cloud.google.com/go/servicedirectory v1.10.1/go.mod h1:Xv0YVH8s4pVOwfM/1eMTl0XJ6bzIOSLDt8f8eLaGOxQ= +cloud.google.com/go/servicedirectory v1.11.0/go.mod h1:Xv0YVH8s4pVOwfM/1eMTl0XJ6bzIOSLDt8f8eLaGOxQ= +cloud.google.com/go/servicedirectory v1.11.1/go.mod h1:tJywXimEWzNzw9FvtNjsQxxJ3/41jseeILgwU/QLrGI= +cloud.google.com/go/servicemanagement v1.4.0/go.mod h1:d8t8MDbezI7Z2R1O/wu8oTggo3BI2GKYbdG4y/SJTco= +cloud.google.com/go/servicemanagement v1.5.0/go.mod h1:XGaCRe57kfqu4+lRxaFEAuqmjzF0r+gWHjWqKqBvKFo= +cloud.google.com/go/servicemanagement v1.6.0/go.mod h1:aWns7EeeCOtGEX4OvZUWCCJONRZeFKiptqKf1D0l/Jc= +cloud.google.com/go/servicemanagement v1.8.0/go.mod h1:MSS2TDlIEQD/fzsSGfCdJItQveu9NXnUniTrq/L8LK4= +cloud.google.com/go/serviceusage v1.3.0/go.mod h1:Hya1cozXM4SeSKTAgGXgj97GlqUvF5JaoXacR1JTP/E= +cloud.google.com/go/serviceusage v1.4.0/go.mod h1:SB4yxXSaYVuUBYUml6qklyONXNLt83U0Rb+CXyhjEeU= +cloud.google.com/go/serviceusage v1.5.0/go.mod h1:w8U1JvqUqwJNPEOTQjrMHkw3IaIFLoLsPLvsE3xueec= +cloud.google.com/go/serviceusage v1.6.0/go.mod h1:R5wwQcbOWsyuOfbP9tGdAnCAc6B9DRwPG1xtWMDeuPA= +cloud.google.com/go/shell v1.3.0/go.mod h1:VZ9HmRjZBsjLGXusm7K5Q5lzzByZmJHf1d0IWHEN5X4= +cloud.google.com/go/shell v1.4.0/go.mod h1:HDxPzZf3GkDdhExzD/gs8Grqk+dmYcEjGShZgYa9URw= +cloud.google.com/go/shell v1.6.0/go.mod h1:oHO8QACS90luWgxP3N9iZVuEiSF84zNyLytb+qE2f9A= +cloud.google.com/go/shell v1.7.1/go.mod h1:u1RaM+huXFaTojTbW4g9P5emOrrmLE69KrxqQahKn4g= +cloud.google.com/go/shell v1.7.2/go.mod h1:KqRPKwBV0UyLickMn0+BY1qIyE98kKyI216sH/TuHmc= +cloud.google.com/go/spanner v1.41.0/go.mod h1:MLYDBJR/dY4Wt7ZaMIQ7rXOTLjYrmxLE/5ve9vFfWos= +cloud.google.com/go/spanner v1.44.0/go.mod h1:G8XIgYdOK+Fbcpbs7p2fiprDw4CaZX63whnSMLVBxjk= +cloud.google.com/go/spanner v1.45.0/go.mod h1:FIws5LowYz8YAE1J8fOS7DJup8ff7xJeetWEo5REA2M= +cloud.google.com/go/spanner v1.47.0/go.mod h1:IXsJwVW2j4UKs0eYDqodab6HgGuA1bViSqW4uH9lfUI= +cloud.google.com/go/spanner v1.49.0/go.mod h1:eGj9mQGK8+hkgSVbHNQ06pQ4oS+cyc4tXXd6Dif1KoM= +cloud.google.com/go/spanner v1.50.0/go.mod h1:eGj9mQGK8+hkgSVbHNQ06pQ4oS+cyc4tXXd6Dif1KoM= +cloud.google.com/go/speech v1.6.0/go.mod h1:79tcr4FHCimOp56lwC01xnt/WPJZc4v3gzyT7FoBkCM= +cloud.google.com/go/speech v1.7.0/go.mod h1:KptqL+BAQIhMsj1kOP2la5DSEEerPDuOP/2mmkhHhZQ= +cloud.google.com/go/speech v1.8.0/go.mod h1:9bYIl1/tjsAnMgKGHKmBZzXKEkGgtU+MpdDPTE9f7y0= +cloud.google.com/go/speech v1.9.0/go.mod h1:xQ0jTcmnRFFM2RfX/U+rk6FQNUF6DQlydUSyoooSpco= +cloud.google.com/go/speech v1.14.1/go.mod h1:gEosVRPJ9waG7zqqnsHpYTOoAS4KouMRLDFMekpJ0J0= +cloud.google.com/go/speech v1.15.0/go.mod h1:y6oH7GhqCaZANH7+Oe0BhgIogsNInLlz542tg3VqeYI= +cloud.google.com/go/speech v1.17.1/go.mod h1:8rVNzU43tQvxDaGvqOhpDqgkJTFowBpDvCJ14kGlJYo= +cloud.google.com/go/speech v1.19.0/go.mod h1:8rVNzU43tQvxDaGvqOhpDqgkJTFowBpDvCJ14kGlJYo= +cloud.google.com/go/speech v1.19.1/go.mod h1:WcuaWz/3hOlzPFOVo9DUsblMIHwxP589y6ZMtaG+iAA= cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0ZeosJ0Rtdos= cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo= +cloud.google.com/go/storage v1.22.1/go.mod h1:S8N1cAStu7BOeFfE8KAQzmyyLkK8p/vmRq6kuBTW58Y= +cloud.google.com/go/storage v1.23.0/go.mod h1:vOEEDNFnciUMhBeT6hsJIn3ieU5cFRmzeLgDvXzfIXc= +cloud.google.com/go/storage v1.27.0/go.mod h1:x9DOL8TK/ygDUMieqwfhdpQryTeEkhGKMi80i/iqR2s= +cloud.google.com/go/storage v1.28.1/go.mod h1:Qnisd4CqDdo6BGs2AD5LLnEsmSQ80wQ5ogcBBKhU86Y= +cloud.google.com/go/storage v1.29.0/go.mod h1:4puEjyTKnku6gfKoTfNOU/W+a9JyuVNxjpS5GBrB8h4= +cloud.google.com/go/storage v1.30.1/go.mod h1:NfxhC0UJE1aXSx7CIIbCf7y9HKT7BiccwkR7+P7gN8E= +cloud.google.com/go/storagetransfer v1.5.0/go.mod h1:dxNzUopWy7RQevYFHewchb29POFv3/AaBgnhqzqiK0w= +cloud.google.com/go/storagetransfer v1.6.0/go.mod h1:y77xm4CQV/ZhFZH75PLEXY0ROiS7Gh6pSKrM8dJyg6I= +cloud.google.com/go/storagetransfer v1.7.0/go.mod h1:8Giuj1QNb1kfLAiWM1bN6dHzfdlDAVC9rv9abHot2W4= +cloud.google.com/go/storagetransfer v1.8.0/go.mod h1:JpegsHHU1eXg7lMHkvf+KE5XDJ7EQu0GwNJbbVGanEw= +cloud.google.com/go/storagetransfer v1.10.0/go.mod h1:DM4sTlSmGiNczmV6iZyceIh2dbs+7z2Ayg6YAiQlYfA= +cloud.google.com/go/storagetransfer v1.10.1/go.mod h1:rS7Sy0BtPviWYTTJVWCSV4QrbBitgPeuK4/FKa4IdLs= +cloud.google.com/go/talent v1.1.0/go.mod h1:Vl4pt9jiHKvOgF9KoZo6Kob9oV4lwd/ZD5Cto54zDRw= +cloud.google.com/go/talent v1.2.0/go.mod h1:MoNF9bhFQbiJ6eFD3uSsg0uBALw4n4gaCaEjBw9zo8g= +cloud.google.com/go/talent v1.3.0/go.mod h1:CmcxwJ/PKfRgd1pBjQgU6W3YBwiewmUzQYH5HHmSCmM= +cloud.google.com/go/talent v1.4.0/go.mod h1:ezFtAgVuRf8jRsvyE6EwmbTK5LKciD4KVnHuDEFmOOA= +cloud.google.com/go/talent v1.5.0/go.mod h1:G+ODMj9bsasAEJkQSzO2uHQWXHHXUomArjWQQYkqK6c= +cloud.google.com/go/talent v1.6.2/go.mod h1:CbGvmKCG61mkdjcqTcLOkb2ZN1SrQI8MDyma2l7VD24= +cloud.google.com/go/talent v1.6.3/go.mod h1:xoDO97Qd4AK43rGjJvyBHMskiEf3KulgYzcH6YWOVoo= +cloud.google.com/go/texttospeech v1.4.0/go.mod h1:FX8HQHA6sEpJ7rCMSfXuzBcysDAuWusNNNvN9FELDd8= +cloud.google.com/go/texttospeech v1.5.0/go.mod h1:oKPLhR4n4ZdQqWKURdwxMy0uiTS1xU161C8W57Wkea4= +cloud.google.com/go/texttospeech v1.6.0/go.mod h1:YmwmFT8pj1aBblQOI3TfKmwibnsfvhIBzPXcW4EBovc= +cloud.google.com/go/texttospeech v1.7.1/go.mod h1:m7QfG5IXxeneGqTapXNxv2ItxP/FS0hCZBwXYqucgSk= +cloud.google.com/go/texttospeech v1.7.2/go.mod h1:VYPT6aTOEl3herQjFHYErTlSZJ4vB00Q2ZTmuVgluD4= +cloud.google.com/go/tpu v1.3.0/go.mod h1:aJIManG0o20tfDQlRIej44FcwGGl/cD0oiRyMKG19IQ= +cloud.google.com/go/tpu v1.4.0/go.mod h1:mjZaX8p0VBgllCzF6wcU2ovUXN9TONFLd7iz227X2Xg= +cloud.google.com/go/tpu v1.5.0/go.mod h1:8zVo1rYDFuW2l4yZVY0R0fb/v44xLh3llq7RuV61fPM= +cloud.google.com/go/tpu v1.6.1/go.mod h1:sOdcHVIgDEEOKuqUoi6Fq53MKHJAtOwtz0GuKsWSH3E= +cloud.google.com/go/tpu v1.6.2/go.mod h1:NXh3NDwt71TsPZdtGWgAG5ThDfGd32X1mJ2cMaRlVgU= +cloud.google.com/go/trace v1.3.0/go.mod h1:FFUE83d9Ca57C+K8rDl/Ih8LwOzWIV1krKgxg6N0G28= +cloud.google.com/go/trace v1.4.0/go.mod h1:UG0v8UBqzusp+z63o7FK74SdFE+AXpCLdFb1rshXG+Y= +cloud.google.com/go/trace v1.8.0/go.mod h1:zH7vcsbAhklH8hWFig58HvxcxyQbaIqMarMg9hn5ECA= +cloud.google.com/go/trace v1.9.0/go.mod h1:lOQqpE5IaWY0Ixg7/r2SjixMuc6lfTFeO4QGM4dQWOk= +cloud.google.com/go/trace v1.10.1/go.mod h1:gbtL94KE5AJLH3y+WVpfWILmqgc6dXcqgNXdOPAQTYk= +cloud.google.com/go/trace v1.10.2/go.mod h1:NPXemMi6MToRFcSxRl2uDnu/qAlAQ3oULUphcHGh1vA= +cloud.google.com/go/translate v1.3.0/go.mod h1:gzMUwRjvOqj5i69y/LYLd8RrNQk+hOmIXTi9+nb3Djs= +cloud.google.com/go/translate v1.4.0/go.mod h1:06Dn/ppvLD6WvA5Rhdp029IX2Mi3Mn7fpMRLPvXT5Wg= +cloud.google.com/go/translate v1.5.0/go.mod h1:29YDSYveqqpA1CQFD7NQuP49xymq17RXNaUDdc0mNu0= +cloud.google.com/go/translate v1.6.0/go.mod h1:lMGRudH1pu7I3n3PETiOB2507gf3HnfLV8qlkHZEyos= +cloud.google.com/go/translate v1.7.0/go.mod h1:lMGRudH1pu7I3n3PETiOB2507gf3HnfLV8qlkHZEyos= +cloud.google.com/go/translate v1.8.1/go.mod h1:d1ZH5aaOA0CNhWeXeC8ujd4tdCFw8XoNWRljklu5RHs= +cloud.google.com/go/translate v1.8.2/go.mod h1:d1ZH5aaOA0CNhWeXeC8ujd4tdCFw8XoNWRljklu5RHs= +cloud.google.com/go/translate v1.9.0/go.mod h1:d1ZH5aaOA0CNhWeXeC8ujd4tdCFw8XoNWRljklu5RHs= +cloud.google.com/go/translate v1.9.1/go.mod h1:TWIgDZknq2+JD4iRcojgeDtqGEp154HN/uL6hMvylS8= +cloud.google.com/go/video v1.8.0/go.mod h1:sTzKFc0bUSByE8Yoh8X0mn8bMymItVGPfTuUBUyRgxk= +cloud.google.com/go/video v1.9.0/go.mod h1:0RhNKFRF5v92f8dQt0yhaHrEuH95m068JYOvLZYnJSw= +cloud.google.com/go/video v1.12.0/go.mod h1:MLQew95eTuaNDEGriQdcYn0dTwf9oWiA4uYebxM5kdg= +cloud.google.com/go/video v1.13.0/go.mod h1:ulzkYlYgCp15N2AokzKjy7MQ9ejuynOJdf1tR5lGthk= +cloud.google.com/go/video v1.14.0/go.mod h1:SkgaXwT+lIIAKqWAJfktHT/RbgjSuY6DobxEp0C5yTQ= +cloud.google.com/go/video v1.15.0/go.mod h1:SkgaXwT+lIIAKqWAJfktHT/RbgjSuY6DobxEp0C5yTQ= +cloud.google.com/go/video v1.17.1/go.mod h1:9qmqPqw/Ib2tLqaeHgtakU+l5TcJxCJbhFXM7UJjVzU= +cloud.google.com/go/video v1.19.0/go.mod h1:9qmqPqw/Ib2tLqaeHgtakU+l5TcJxCJbhFXM7UJjVzU= +cloud.google.com/go/video v1.20.0/go.mod h1:U3G3FTnsvAGqglq9LxgqzOiBc/Nt8zis8S+850N2DUM= +cloud.google.com/go/video v1.20.1/go.mod h1:3gJS+iDprnj8SY6pe0SwLeC5BUW80NjhwX7INWEuWGU= +cloud.google.com/go/videointelligence v1.6.0/go.mod h1:w0DIDlVRKtwPCn/C4iwZIJdvC69yInhW0cfi+p546uU= +cloud.google.com/go/videointelligence v1.7.0/go.mod h1:k8pI/1wAhjznARtVT9U1llUaFNPh7muw8QyOUpavru4= +cloud.google.com/go/videointelligence v1.8.0/go.mod h1:dIcCn4gVDdS7yte/w+koiXn5dWVplOZkE+xwG9FgK+M= +cloud.google.com/go/videointelligence v1.9.0/go.mod h1:29lVRMPDYHikk3v8EdPSaL8Ku+eMzDljjuvRs105XoU= +cloud.google.com/go/videointelligence v1.10.0/go.mod h1:LHZngX1liVtUhZvi2uNS0VQuOzNi2TkY1OakiuoUOjU= +cloud.google.com/go/videointelligence v1.11.1/go.mod h1:76xn/8InyQHarjTWsBR058SmlPCwQjgcvoW0aZykOvo= +cloud.google.com/go/videointelligence v1.11.2/go.mod h1:ocfIGYtIVmIcWk1DsSGOoDiXca4vaZQII1C85qtoplc= +cloud.google.com/go/vision v1.2.0/go.mod h1:SmNwgObm5DpFBme2xpyOyasvBc1aPdjvMk2bBk0tKD0= +cloud.google.com/go/vision/v2 v2.2.0/go.mod h1:uCdV4PpN1S0jyCyq8sIM42v2Y6zOLkZs+4R9LrGYwFo= +cloud.google.com/go/vision/v2 v2.3.0/go.mod h1:UO61abBx9QRMFkNBbf1D8B1LXdS2cGiiCRx0vSpZoUo= +cloud.google.com/go/vision/v2 v2.4.0/go.mod h1:VtI579ll9RpVTrdKdkMzckdnwMyX2JILb+MhPqRbPsY= +cloud.google.com/go/vision/v2 v2.5.0/go.mod h1:MmaezXOOE+IWa+cS7OhRRLK2cNv1ZL98zhqFFZaaH2E= +cloud.google.com/go/vision/v2 v2.6.0/go.mod h1:158Hes0MvOS9Z/bDMSFpjwsUrZ5fPrdwuyyvKSGAGMY= +cloud.google.com/go/vision/v2 v2.7.0/go.mod h1:H89VysHy21avemp6xcf9b9JvZHVehWbET0uT/bcuY/0= +cloud.google.com/go/vision/v2 v2.7.2/go.mod h1:jKa8oSYBWhYiXarHPvP4USxYANYUEdEsQrloLjrSwJU= +cloud.google.com/go/vision/v2 v2.7.3/go.mod h1:V0IcLCY7W+hpMKXK1JYE0LV5llEqVmj+UJChjvA1WsM= +cloud.google.com/go/vmmigration v1.2.0/go.mod h1:IRf0o7myyWFSmVR1ItrBSFLFD/rJkfDCUTO4vLlJvsE= +cloud.google.com/go/vmmigration v1.3.0/go.mod h1:oGJ6ZgGPQOFdjHuocGcLqX4lc98YQ7Ygq8YQwHh9A7g= +cloud.google.com/go/vmmigration v1.5.0/go.mod h1:E4YQ8q7/4W9gobHjQg4JJSgXXSgY21nA5r8swQV+Xxc= +cloud.google.com/go/vmmigration v1.6.0/go.mod h1:bopQ/g4z+8qXzichC7GW1w2MjbErL54rk3/C843CjfY= +cloud.google.com/go/vmmigration v1.7.1/go.mod h1:WD+5z7a/IpZ5bKK//YmT9E047AD+rjycCAvyMxGJbro= +cloud.google.com/go/vmmigration v1.7.2/go.mod h1:iA2hVj22sm2LLYXGPT1pB63mXHhrH1m/ruux9TwWLd8= +cloud.google.com/go/vmwareengine v0.1.0/go.mod h1:RsdNEf/8UDvKllXhMz5J40XxDrNJNN4sagiox+OI208= +cloud.google.com/go/vmwareengine v0.2.2/go.mod h1:sKdctNJxb3KLZkE/6Oui94iw/xs9PRNC2wnNLXsHvH8= +cloud.google.com/go/vmwareengine v0.3.0/go.mod h1:wvoyMvNWdIzxMYSpH/R7y2h5h3WFkx6d+1TIsP39WGY= +cloud.google.com/go/vmwareengine v0.4.1/go.mod h1:Px64x+BvjPZwWuc4HdmVhoygcXqEkGHXoa7uyfTgSI0= +cloud.google.com/go/vmwareengine v1.0.0/go.mod h1:Px64x+BvjPZwWuc4HdmVhoygcXqEkGHXoa7uyfTgSI0= +cloud.google.com/go/vmwareengine v1.0.1/go.mod h1:aT3Xsm5sNx0QShk1Jc1B8OddrxAScYLwzVoaiXfdzzk= +cloud.google.com/go/vpcaccess v1.4.0/go.mod h1:aQHVbTWDYUR1EbTApSVvMq1EnT57ppDmQzZ3imqIk4w= +cloud.google.com/go/vpcaccess v1.5.0/go.mod h1:drmg4HLk9NkZpGfCmZ3Tz0Bwnm2+DKqViEpeEpOq0m8= +cloud.google.com/go/vpcaccess v1.6.0/go.mod h1:wX2ILaNhe7TlVa4vC5xce1bCnqE3AeH27RV31lnmZes= +cloud.google.com/go/vpcaccess v1.7.1/go.mod h1:FogoD46/ZU+JUBX9D606X21EnxiszYi2tArQwLY4SXs= +cloud.google.com/go/vpcaccess v1.7.2/go.mod h1:mmg/MnRHv+3e8FJUjeSibVFvQF1cCy2MsFaFqxeY1HU= +cloud.google.com/go/webrisk v1.4.0/go.mod h1:Hn8X6Zr+ziE2aNd8SliSDWpEnSS1u4R9+xXZmFiHmGE= +cloud.google.com/go/webrisk v1.5.0/go.mod h1:iPG6fr52Tv7sGk0H6qUFzmL3HHZev1htXuWDEEsqMTg= +cloud.google.com/go/webrisk v1.6.0/go.mod h1:65sW9V9rOosnc9ZY7A7jsy1zoHS5W9IAXv6dGqhMQMc= +cloud.google.com/go/webrisk v1.7.0/go.mod h1:mVMHgEYH0r337nmt1JyLthzMr6YxwN1aAIEc2fTcq7A= +cloud.google.com/go/webrisk v1.8.0/go.mod h1:oJPDuamzHXgUc+b8SiHRcVInZQuybnvEW72PqTc7sSg= +cloud.google.com/go/webrisk v1.9.1/go.mod h1:4GCmXKcOa2BZcZPn6DCEvE7HypmEJcJkr4mtM+sqYPc= +cloud.google.com/go/webrisk v1.9.2/go.mod h1:pY9kfDgAqxUpDBOrG4w8deLfhvJmejKB0qd/5uQIPBc= +cloud.google.com/go/websecurityscanner v1.3.0/go.mod h1:uImdKm2wyeXQevQJXeh8Uun/Ym1VqworNDlBXQevGMo= +cloud.google.com/go/websecurityscanner v1.4.0/go.mod h1:ebit/Fp0a+FWu5j4JOmJEV8S8CzdTkAS77oDsiSqYWQ= +cloud.google.com/go/websecurityscanner v1.5.0/go.mod h1:Y6xdCPy81yi0SQnDY1xdNTNpfY1oAgXUlcfN3B3eSng= +cloud.google.com/go/websecurityscanner v1.6.1/go.mod h1:Njgaw3rttgRHXzwCB8kgCYqv5/rGpFCsBOvPbYgszpg= +cloud.google.com/go/websecurityscanner v1.6.2/go.mod h1:7YgjuU5tun7Eg2kpKgGnDuEOXWIrh8x8lWrJT4zfmas= +cloud.google.com/go/workflows v1.6.0/go.mod h1:6t9F5h/unJz41YqfBmqSASJSXccBLtD1Vwf+KmJENM0= +cloud.google.com/go/workflows v1.7.0/go.mod h1:JhSrZuVZWuiDfKEFxU0/F1PQjmpnpcoISEXH2bcHC3M= +cloud.google.com/go/workflows v1.8.0/go.mod h1:ysGhmEajwZxGn1OhGOGKsTXc5PyxOc0vfKf5Af+to4M= +cloud.google.com/go/workflows v1.9.0/go.mod h1:ZGkj1aFIOd9c8Gerkjjq7OW7I5+l6cSvT3ujaO/WwSA= +cloud.google.com/go/workflows v1.10.0/go.mod h1:fZ8LmRmZQWacon9UCX1r/g/DfAXx5VcPALq2CxzdePw= +cloud.google.com/go/workflows v1.11.1/go.mod h1:Z+t10G1wF7h8LgdY/EmRcQY8ptBD/nvofaL6FqlET6g= +cloud.google.com/go/workflows v1.12.0/go.mod h1:PYhSk2b6DhZ508tj8HXKaBh+OFe+xdl0dHF/tJdzPQM= +cloud.google.com/go/workflows v1.12.1/go.mod h1:5A95OhD/edtOhQd/O741NSfIMezNTbCwLM1P1tBRGHM= +collectd.org v0.3.0/go.mod h1:A/8DzQBkF6abtvrT2j/AU/4tiBgJWYyh0y/oB/4MlWE= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= -github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ= +gioui.org v0.0.0-20210308172011-57750fc8a0a6/go.mod h1:RSH6KIUZ0p2xy5zHDxgAM4zumjgTw83q2ge/PI+yyw8= +git.sr.ht/~sbinet/gg v0.3.1/go.mod h1:KGYtlADtqsqANL9ueOFkWymvzUvLMQllU5Ixo+8v3pc= +github.com/AndreasBriese/bbloom v0.0.0-20190306092124-e2d15f34fcf9/go.mod h1:bOvUY6CB00SOBii9/FifXqc0awNKxLFCL/+pkDPuyl8= +github.com/Azure/azure-sdk-for-go/sdk/azcore v0.21.1/go.mod h1:fBF9PQNqB8scdgpZ3ufzaLntG0AG7C1WjPMsiFOmfHM= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.0.0/go.mod h1:uGG2W01BaETf0Ozp+QxxKJdMBNRWPdstHG0Fmdwn1/U= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.6.0/go.mod h1:bjGvMhVMb+EEm3VRNQawDMUyMMjo+S5ewNjflkep/0Q= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.7.0/go.mod h1:bjGvMhVMb+EEm3VRNQawDMUyMMjo+S5ewNjflkep/0Q= +github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.0.0/go.mod h1:+6sju8gk8FRmSajX3Oz4G5Gm7P+mbqE9FVaXXFYTkCM= +github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.3.0/go.mod h1:OQeznEEkTZ9OrhHJoDD8ZDq51FHgXjqtP9z6bEwBq9U= +github.com/Azure/azure-sdk-for-go/sdk/internal v0.8.3/go.mod h1:KLF4gFr6DcKFZwSuH8w8yEK6DpFl3LP5rhdvAb7Yz5I= +github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0/go.mod h1:eWRD7oawr1Mu1sLCawqVc0CUiF43ia3qQMxLscsKQ9w= +github.com/Azure/azure-sdk-for-go/sdk/internal v1.3.0/go.mod h1:okt5dMMTOFjX/aovMlrjvvXoPMBVSPzk9185BT0+eZM= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/internal v1.0.0/go.mod h1:ceIuwmxDWptoW3eCqSXlnPsZFKh4X+R38dWPv7GS9Vs= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources v1.0.0/go.mod h1:s1tW/At+xHqjNFvWU4G0c0Qv33KOhvbGNj0RCTQDV8s= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/armstorage v1.2.0/go.mod h1:c+Lifp3EDEamAkPVzMooRNOK6CZjNSdEnf1A7jsI9u4= +github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v0.3.0/go.mod h1:tPaiy8S5bQ+S5sOiDlINkp7+Ef339+Nz5L5XO+cnOHo= +github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.2.0/go.mod h1:+6KLcKIVgxoBDMqMO/Nvy7bZ9a0nbU3I1DtFQK3YvB4= +github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0/go.mod h1:Vt9sXTKwMyGcOxSmLDMnGPgqsUg7m8pe215qMLrDXw4= +github.com/AzureAD/microsoft-authentication-library-for-go v1.0.0/go.mod h1:kgDmCTgBzIEPFElEF+FK0SdjAor06dRq2Go927dnQ6o= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= +github.com/BurntSushi/toml v1.1.0/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= +github.com/BurntSushi/toml v1.2.1/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= +github.com/BurntSushi/toml v1.3.2 h1:o7IhLm0Msx3BaB+n3Ag7L8EVlByGnpq14C4YWiu/gL8= +github.com/BurntSushi/toml v1.3.2/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= +github.com/CloudyKit/fastprinter v0.0.0-20170127035650-74b38d55f37a/go.mod h1:EFZQ978U7x8IRnstaskI3IysnWY5Ao3QgZUKOXlsAdw= +github.com/CloudyKit/jet v2.1.3-0.20180809161101-62edd43e4f88+incompatible/go.mod h1:HPYO+50pSWkPoj9Q/eq0aRGByCL6ScRlUmiEX5Zgm+w= +github.com/DATA-DOG/go-sqlmock v1.3.3/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM= +github.com/DataDog/zstd v1.4.5/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= +github.com/GoogleCloudPlatform/cloudsql-proxy v0.0.0-20190129172621-c8b1d7a94ddf/go.mod h1:aJ4qN3TfrelA6NZ6AXsXRfmEVaYin3EDbSPJrKS8OXo= +github.com/HdrHistogram/hdrhistogram-go v1.1.2/go.mod h1:yDgFjdqOqDEKOvasDdhWNXYg9BVp4O+o5f6V/ehm6Oo= +github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c/go.mod h1:X0CRv0ky0k6m906ixxpzmDRLvX58TFUKS2eePweuyxk= +github.com/Joker/hpp v1.0.0/go.mod h1:8x5n+M1Hp5hC0g8okX3sR3vFQwynaX/UgSOM9MeBKzY= +github.com/Joker/jade v1.0.1-0.20190614124447-d475f43051e7/go.mod h1:6E6s8o2AE4KhCrqr6GRJjdC/gNfTdxkIXvuGZZda2VM= +github.com/Microsoft/go-winio v0.6.1/go.mod h1:LRdKpFKfdobln8UmuiYcKPot9D2v6svN5+sAH+4kjUM= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/SaveTheRbtz/mph v0.1.1-0.20240117162131-4166ec7869bc h1:DCHzPQOcU/7gwDTWbFQZc5qHMPS1g0xTO56k8NXsv9M= github.com/SaveTheRbtz/mph v0.1.1-0.20240117162131-4166ec7869bc/go.mod h1:LJM5a3zcIJ/8TmZwlUczvROEJT8ntOdhdG9jjcR1B0I= +github.com/Shopify/goreferrer v0.0.0-20181106222321-ec9c9a553398/go.mod h1:a1uqRtAwp2Xwc6WNPJEufxJ7fx3npB4UV/JOLmbu5I0= +github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg= +github.com/StackExchange/wmi v1.2.1/go.mod h1:rcmrprowKIVzvc+NUiLncP2uuArMWLCbu9SBzvHz7e8= +github.com/VictoriaMetrics/fastcache v1.6.0/go.mod h1:0qHz5QP0GMX4pfmMA/zt5RgfNuXJrTP0zS7DqpHGGTw= +github.com/VictoriaMetrics/fastcache v1.12.1/go.mod h1:tX04vaqcNoQeGLD+ra5pU5sWkuxnzWhEzLwhP9w653o= +github.com/aclements/go-gg v0.0.0-20170118225347-6dbb4e4fefb0/go.mod h1:55qNq4vcpkIuHowELi5C8e+1yUHtoLoOUR9QU5j7Tes= +github.com/aclements/go-moremath v0.0.0-20210112150236-f10218a38794/go.mod h1:7e+I0LQFUI9AXWxOfsQROs9xPhoJtbsyWcjJqDd4KPY= +github.com/ajg/form v1.5.1/go.mod h1:uL1WgH+h2mgNtvBq0339dVnzXdBETtL2LeUXaIv25UY= +github.com/ajstarks/deck v0.0.0-20200831202436-30c9fc6549a9/go.mod h1:JynElWSGnm/4RlzPXRlREEwqTHAN3T56Bv2ITsFT3gY= +github.com/ajstarks/deck/generate v0.0.0-20210309230005-c3f852c02e19/go.mod h1:T13YZdzov6OU0A1+RfKZiZN9ca6VeKdBdyDV+BY97Tk= +github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw= +github.com/ajstarks/svgo v0.0.0-20210923152817-c3b6e2f0c527/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw= +github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b/go.mod h1:1KcenG0jGWcpt8ov532z81sp/kMMUG485J2InIOyADM= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho= +github.com/allegro/bigcache v1.2.1-0.20190218064605-e24eb225f156/go.mod h1:Cb/ax3seSYIx7SuZdm2G2xzfwmv3TPSk2ucNfQESPXM= +github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883/go.mod h1:rCTlJbsFo29Kk6CurOXKm700vrz8f0KW0JNfpkRJY/8= +github.com/andybalholm/brotli v1.0.4/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig= +github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= +github.com/apache/arrow/go/arrow v0.0.0-20191024131854-af6fa24be0db/go.mod h1:VTxUBvSJ3s3eHAg65PNgrsn5BtqCRPdmyXh6rAfdxN0= +github.com/apache/arrow/go/v10 v10.0.1/go.mod h1:YvhnlEePVnBS4+0z3fhPfUy7W1Ikj0Ih0vcRo/gZ1M0= +github.com/apache/arrow/go/v11 v11.0.0/go.mod h1:Eg5OsL5H+e299f7u5ssuXsuHQVEGC4xei5aX110hRiI= +github.com/apache/arrow/go/v12 v12.0.0/go.mod h1:d+tV/eHZZ7Dz7RPrFKtPK02tpr+c9/PEd/zm8mDS9Vg= +github.com/apache/thrift v0.16.0/go.mod h1:PHK3hniurgQaNMZYaCLEqXKsYK8upmhPbmdP2FXSqgU= github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8= +github.com/aws/aws-sdk-go-v2 v1.2.0/go.mod h1:zEQs02YRBw1DjK0PoJv3ygDYOFTre1ejlJWl8FwAuQo= +github.com/aws/aws-sdk-go-v2 v1.21.2/go.mod h1:ErQhvNuEMhJjweavOYhxVkn2RUx7kQXVATHrjKtxIpM= +github.com/aws/aws-sdk-go-v2 v1.23.1/go.mod h1:i1XDttT4rnf6vxc9AuskLc6s7XBee8rlLilKlc03uAA= +github.com/aws/aws-sdk-go-v2/config v1.1.1/go.mod h1:0XsVy9lBI/BCXm+2Tuvt39YmdHwS5unDQmxZOYe8F5Y= +github.com/aws/aws-sdk-go-v2/config v1.18.45/go.mod h1:ZwDUgFnQgsazQTnWfeLWk5GjeqTQTL8lMkoE1UXzxdE= +github.com/aws/aws-sdk-go-v2/config v1.25.5/go.mod h1:Bf4gDvy4ZcFIK0rqDu1wp9wrubNba2DojiPB2rt6nvI= +github.com/aws/aws-sdk-go-v2/credentials v1.1.1/go.mod h1:mM2iIjwl7LULWtS6JCACyInboHirisUUdkBPoTHMOUo= +github.com/aws/aws-sdk-go-v2/credentials v1.13.43/go.mod h1:zWJBz1Yf1ZtX5NGax9ZdNjhhI4rgjfgsyk6vTY1yfVg= +github.com/aws/aws-sdk-go-v2/credentials v1.16.4/go.mod h1:Kdh/okh+//vQ/AjEt81CjvkTo64+/zIE4OewP7RpfXk= +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.0.2/go.mod h1:3hGg3PpiEjHnrkrlasTfxFqUsZ2GCk/fMUn4CbKgSkM= +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.13/go.mod h1:f/Ib/qYjhV2/qdsf79H3QP/eRE4AkVyEf6sk7XfZ1tg= +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.5/go.mod h1:VhnExhw6uXy9QzetvpXDolo1/hjhx4u9qukBGkuUwjs= +github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.43/go.mod h1:auo+PiyLl0n1l8A0e8RIeR8tOzYPfZZH/JNlrJ8igTQ= +github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.4/go.mod h1:xEhvbJcyUf/31yfGSQBe01fukXwXJ0gxDp7rLfymWE0= +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.37/go.mod h1:Qe+2KtKml+FEsQF/DHmDV+xjtche/hwoF75EG4UlHW8= +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.4/go.mod h1:dYvTNAggxDZy6y1AF7YDwXsPuHFy/VNEpEI/2dWK9IU= +github.com/aws/aws-sdk-go-v2/internal/ini v1.3.45/go.mod h1:lD5M20o09/LCuQ2mE62Mb/iSdSlCNuj6H5ci7tW7OsE= +github.com/aws/aws-sdk-go-v2/internal/ini v1.7.1/go.mod h1:6fQQgfuGmw8Al/3M2IgIllycxV7ZW7WCdVSqfBeUiCY= +github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.1/go.mod h1:l9ymW25HOqymeU2m1gbUQ3rUIsTwKs8gYHXkqDQUhiI= +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.0.2/go.mod h1:45MfaXZ0cNbeuT0KQ1XJylq8A6+OpVV2E5kvY/Kq+u8= +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.37/go.mod h1:vBmDnwWXWxNPFRMmG2m/3MKOe+xEcMDo1tanpaWCcck= +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.4/go.mod h1:aYCGNjyUCUelhofxlZyj63srdxWUSsBSGg5l6MCuXuE= +github.com/aws/aws-sdk-go-v2/service/kms v1.26.3/go.mod h1:N3++/sLV97B8Zliz7KRqNcojOX7iMBZWKiuit5FKtH0= +github.com/aws/aws-sdk-go-v2/service/route53 v1.1.1/go.mod h1:rLiOUrPLW/Er5kRcQ7NkwbjlijluLsrIbu/iyl35RO4= +github.com/aws/aws-sdk-go-v2/service/route53 v1.30.2/go.mod h1:TQZBt/WaQy+zTHoW++rnl8JBrmZ0VO6EUbVua1+foCA= +github.com/aws/aws-sdk-go-v2/service/sso v1.1.1/go.mod h1:SuZJxklHxLAXgLTc1iFXbEWkXs7QRTQpCLGaKIprQW0= +github.com/aws/aws-sdk-go-v2/service/sso v1.15.2/go.mod h1:gsL4keucRCgW+xA85ALBpRFfdSLH4kHOVSnLMSuBECo= +github.com/aws/aws-sdk-go-v2/service/sso v1.17.3/go.mod h1:oA6VjNsLll2eVuUoF2D+CMyORgNzPEW/3PyUdq6WQjI= +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.17.3/go.mod h1:a7bHA82fyUXOm+ZSWKU6PIoBxrjSprdLoM8xPYvzYVg= +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.20.1/go.mod h1:hHL974p5auvXlZPIjJTblXJpbkfK4klBczlsEaMCGVY= +github.com/aws/aws-sdk-go-v2/service/sts v1.1.1/go.mod h1:Wi0EBZwiz/K44YliU0EKxqTCJGUfYTWXrrBwkq736bM= +github.com/aws/aws-sdk-go-v2/service/sts v1.23.2/go.mod h1:Eows6e1uQEsc4ZaHANmsPRzAKcVDrcmjjWiih2+HUUQ= +github.com/aws/aws-sdk-go-v2/service/sts v1.25.4/go.mod h1:feTnm2Tk/pJxdX+eooEsxvlvTWBvDm6CasRZ+JOs2IY= +github.com/aws/smithy-go v1.1.0/go.mod h1:EzMw8dbp/YJL4A5/sbhGddag+NPT7q084agLbB9LgIw= +github.com/aws/smithy-go v1.15.0/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA= +github.com/aws/smithy-go v1.17.0/go.mod h1:NukqUGpCZIILqqiV0NIjeFh24kd/FAa4beRb6nbIUPE= +github.com/aymerick/raymond v2.0.3-0.20180322193309-b565731e1464+incompatible/go.mod h1:osfaiScAUVup+UC9Nfq76eWqDhXlp+4UYaA8uhTBO6g= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= +github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= +github.com/bits-and-blooms/bitset v1.5.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= github.com/bits-and-blooms/bitset v1.7.0 h1:YjAGVd3XmtK9ktAbX8Zg2g2PwLIMjGREZJHlV4j7NEo= github.com/bits-and-blooms/bitset v1.7.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA= +github.com/bmizerany/pat v0.0.0-20170815010413-6226ea591a40/go.mod h1:8rLXio+WjiTceGBHIoTvn60HIbs7Hm7bcHjyrSqYB9c= +github.com/boltdb/bolt v1.3.1/go.mod h1:clJnj/oiGkjum5o1McbSZDSLxVThjynRyGBgiAx27Ps= +github.com/boombuler/barcode v1.0.0/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= +github.com/boombuler/barcode v1.0.1/go.mod h1:paBWMcWSl3LHKBqUq+rly7CNSldXjb2rDl3JlRe0mD8= +github.com/btcsuite/btcd/btcec/v2 v2.2.0/go.mod h1:U7MHm051Al6XmscBQ0BoNydpOTsFAn707034b5nY8zU= github.com/btcsuite/btcd/btcec/v2 v2.2.1 h1:xP60mv8fvp+0khmrN0zTdPC3cNm24rfeE6lh2R/Yv3E= github.com/btcsuite/btcd/btcec/v2 v2.2.1/go.mod h1:9/CSmJxmuvqzX9Wh2fXMWToLOHhPd11lSPuIupwTkI8= +github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1/go.mod h1:7SFka0XMvUgj3hfZtydOrQY2mwhPclbT2snogU7SQQc= +github.com/bytecodealliance/wasmtime-go/v7 v7.0.0/go.mod h1:bu6fic7trDt20w+LMooX7j3fsOwv4/ln6j8gAdP6vmA= +github.com/c-bata/go-prompt v0.2.2/go.mod h1:VzqtzE2ksDBcdln8G7mk2RX9QyGjH+OVqOCSiVIqS34= +github.com/c-bata/go-prompt v0.2.6/go.mod h1:/LMAke8wD2FsNu9EXNdHxNLbd9MedkPnCdfpU9wwHfY= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= +github.com/census-instrumentation/opencensus-proto v0.3.0/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= +github.com/census-instrumentation/opencensus-proto v0.4.1/go.mod h1:4T9NM4+4Vw91VeyqjLS6ao50K5bOcLKN6Q42XnYaRYw= +github.com/cespare/cp v0.1.0/go.mod h1:SOGHArjBr4JWaSDEVpWpo/hNg6RoKrls6Oh40hiwW+s= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= +github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= +github.com/chzyer/logex v1.2.0/go.mod h1:9+9sk7u7pGNWYMkh0hdiL++6OeibzJccyQU4p4MedaY= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= +github.com/chzyer/readline v1.5.0/go.mod h1:x22KAscuvRqlLoK9CsoYsmxoXZMMFVyOl86cAH8qUic= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= +github.com/chzyer/test v0.0.0-20210722231415-061457976a23/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/cloudflare/cloudflare-go v0.14.0/go.mod h1:EnwdgGMaFOruiPZRFSgn+TsQ3hQ7C/YWzIGLeu5c304= +github.com/cloudflare/cloudflare-go v0.79.0/go.mod h1:gkHQf9xEubaQPEuerBuoinR9P8bf8a05Lq0X6WKy1Oc= github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc= github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk= +github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= +github.com/cncf/udpa/go v0.0.0-20220112060539-c52dc94e7fbe/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI= +github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20210805033703-aa0b78936158/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20211001041855-01bcc9b48dfe/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20220314180256-7f1daf1720fc/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20230105202645-06c439db220b/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20230310173818-32f1caf87195/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20230428030218-4003588d1b74/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cncf/xds/go v0.0.0-20230607035331-e9ce68804cb4/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs= +github.com/cockroachdb/datadriven v1.0.0/go.mod h1:5Ib8Meh+jk1RlHIXej6Pzevx/NLlNvQB9pmSBZErGA4= +github.com/cockroachdb/datadriven v1.0.3-0.20230413201302-be42291fc80f/go.mod h1:a9RdTaap04u637JoCzcUoIcDmvwSUtcUFtT/C3kJlTU= +github.com/cockroachdb/errors v1.6.1/go.mod h1:tm6FTP5G81vwJ5lC0SizQo374JNCOPrHyXGitRJoDqM= +github.com/cockroachdb/errors v1.8.1/go.mod h1:qGwQn6JmZ+oMjuLwjWzUNqblqk0xl4CVV3SQbGwK7Ac= +github.com/cockroachdb/logtags v0.0.0-20190617123548-eb05cc24525f/go.mod h1:i/u985jwjWRlyHXQbwatDASoW0RMlZ/3i9yJHE2xLkI= +github.com/cockroachdb/pebble v0.0.0-20230928194634-aa077af62593/go.mod h1:6hk1eMY/u5t+Cf18q5lFMUA1Rc+Sm5I6Ra1QuPyxXCo= +github.com/cockroachdb/redact v1.0.8/go.mod h1:BVNblN9mBWFyMyqK1k3AAiSxhvhfK2oOZZ2lK+dpvRg= +github.com/cockroachdb/sentry-go v0.6.1-cockroachdb.2/go.mod h1:8BT+cPK6xvFOcRlk0R8eg+OTkcqI6baNH4xAkpiYVvQ= +github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06/go.mod h1:7nc4anLGjupUW/PeY5qiNYsdNXj7zopG+eqsS7To5IQ= +github.com/codegangsta/inject v0.0.0-20150114235600-33e0aa1cb7c0/go.mod h1:4Zcjuz89kmFXt9morQgcfYZAYZ5n8WHjt81YYWIwtTM= +github.com/consensys/bavard v0.1.8-0.20210406032232-f3452dc9b572/go.mod h1:Bpd0/3mZuaj6Sj+PqrmIquiOKy397AKGThQPaGzNXAQ= +github.com/consensys/bavard v0.1.13/go.mod h1:9ItSMtA/dXMAiL7BG6bqW2m3NdSEObYWoH223nGHukI= +github.com/consensys/gnark-crypto v0.4.1-0.20210426202927-39ac3d4b3f1f/go.mod h1:815PAHg3wvysy0SyIqanF8gZ0Y1wjk/hrDHD/iT88+Q= +github.com/consensys/gnark-crypto v0.10.0/go.mod h1:Iq/P3HHl0ElSjsg2E1gsMwhAyxnxoKK5nVyZKd+/KhU= +github.com/consensys/gnark-crypto v0.12.1/go.mod h1:v2Gy7L/4ZRosZ7Ivs+9SfUDr0f5UlG+EM5t7MPHiLuY= github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk= @@ -67,45 +1094,180 @@ github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3Ee github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= +github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= +github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= +github.com/crate-crypto/go-ipa v0.0.0-20230601170251-1830d0757c80/go.mod h1:gzbVz57IDJgQ9rLQwfSk696JGWof8ftznEL9GoAv3NI= +github.com/crate-crypto/go-kzg-4844 v0.7.0/go.mod h1:1kMhvPgI0Ky3yIa+9lFySEBUBXkYxeOi8ZF1sYioxhc= +github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= +github.com/cyberdelia/templates v0.0.0-20141128023046-ca7fffd4298c/go.mod h1:GyV+0YP4qX0UQ7r2MoYZ+AvYDp12OF5yg4q8rGnyNh4= +github.com/dave/astrid v0.0.0-20170323122508-8c2895878b14/go.mod h1:Sth2QfxfATb/nW4EsrSi2KyJmbcniZ8TgTaji17D6ms= +github.com/dave/brenda v1.1.0/go.mod h1:4wCUr6gSlu5/1Tk7akE5X7UorwiQ8Rij0SKH3/BGMOM= +github.com/dave/courtney v0.3.0/go.mod h1:BAv3hA06AYfNUjfjQr+5gc6vxeBVOupLqrColj+QSD8= +github.com/dave/dst v0.27.2/go.mod h1:jHh6EOibnHgcUW3WjKHisiooEkYwqpHLBSX1iOBhEyc= +github.com/dave/gopackages v0.0.0-20170318123100-46e7023ec56e/go.mod h1:i00+b/gKdIDIxuLDFob7ustLAVqhsZRk2qVZrArELGQ= +github.com/dave/jennifer v1.2.0/go.mod h1:fIb+770HOpJ2fmN9EPPKOqm1vMGhB+TwXKMZhrIygKg= +github.com/dave/jennifer v1.5.0/go.mod h1:4MnyiFIlZS3l5tSDn8VnzE6ffAhYBMB2SZntBsZGUok= +github.com/dave/kerr v0.0.0-20170318121727-bc25dd6abe8e/go.mod h1:qZqlPyPvfsDJt+3wHJ1EvSXDuVjFTK0j2p/ca+gtsb8= +github.com/dave/patsy v0.0.0-20210517141501-957256f50cba/go.mod h1:qfR88CgEGLoiqDaE+xxDCi5QA5v4vUoW0UCX2Nd5Tlc= +github.com/dave/rebecca v0.9.1/go.mod h1:N6XYdMD/OKw3lkF3ywh8Z6wPGuwNFDNtWYEMFWEmXBA= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/deckarep/golang-set v1.8.0/go.mod h1:5nI87KwE7wgsBU1F4GKAw2Qod7p5kyS383rP6+o6qqo= +github.com/deckarep/golang-set/v2 v2.1.0/go.mod h1:VAky9rY/yGXJOLEDv3OMci+7wtDpOF4IN+y82NBOac4= +github.com/decred/dcrd/crypto/blake256 v1.0.0/go.mod h1:sQl2p6Y26YV+ZOcSTP6thNdn47hh8kt6rqSlvmrXFAc= +github.com/decred/dcrd/crypto/blake256 v1.0.1/go.mod h1:2OfgNZ5wDpcsFmHmCK5gZTPcCXqlm2ArzUIkw9czNJo= +github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1/go.mod h1:hyedUtir6IdtD/7lIxGeCxkaw7y45JueMRL4DIyJDKs= github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 h1:8UrgZ3GkP4i/CLijOJx79Yu+etlyjdBU4sfcs2WYQMs= github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0/go.mod h1:v57UDF4pDQJcEfFUCRop3lJL149eHGSe9Jvczhzjo/0= +github.com/deepmap/oapi-codegen v1.6.0/go.mod h1:ryDa9AgbELGeB+YEXE1dR53yAjHwFvE9iAUlWl9Al3M= +github.com/deepmap/oapi-codegen v1.8.2/go.mod h1:YLgSKSDv/bZQB7N4ws6luhozi3cEdRktEqrX88CvjIw= +github.com/dgraph-io/badger v1.6.0/go.mod h1:zwt7syl517jmP8s94KqSxTlM6IMsdhYy6psNgSztDR4= github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= +github.com/dgryski/go-bitstream v0.0.0-20180413035011-3522498ce2c8/go.mod h1:VMaSuZ+SZcx/wljOQKvp5srsbCiKDEb6K2wC4+PiBmQ= +github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2/go.mod h1:SqUrOPUnsFjfmXRMNPybcSiG0BgUW2AuFH8PAnS2iTw= github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= +github.com/dlclark/regexp2 v1.4.1-0.20201116162257-a2a8dda75c91/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc= +github.com/dlclark/regexp2 v1.7.0/go.mod h1:DHkYz0B9wPfa6wondMfaivmHpzrQ3v9q8cnmRbL6yW8= +github.com/dnaeon/go-vcr v1.1.0/go.mod h1:M7tiix8f0r6mKKJ3Yq/kqU1OYf3MnfmBWVbPx/yU9ko= +github.com/dnaeon/go-vcr v1.2.0/go.mod h1:R4UdLID7HZT3taECzJs4YgbbH6PIGXB6W/sc5OLb6RQ= +github.com/docker/docker v1.6.2/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= +github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE= +github.com/dop251/goja v0.0.0-20211022113120-dc8c55024d06/go.mod h1:R9ET47fwRVRPZnOGvHxxhuZcbrMCuiqOz3Rlrh4KSnk= +github.com/dop251/goja v0.0.0-20220405120441-9037c2b61cbf/go.mod h1:R9ET47fwRVRPZnOGvHxxhuZcbrMCuiqOz3Rlrh4KSnk= +github.com/dop251/goja v0.0.0-20230806174421-c933cf95e127/go.mod h1:QMWlm50DNe14hD7t24KEqZuUdC9sOTy8W6XbCU1mlw4= +github.com/dop251/goja_nodejs v0.0.0-20210225215109-d91c329300e7/go.mod h1:hn7BA7c8pLvoGndExHudxTDKZ84Pyvv+90pbBjbTz0Y= +github.com/dop251/goja_nodejs v0.0.0-20211022123610-8dd9abb0616d/go.mod h1:DngW8aVqWbuLRMHItjPUyqdj+HWPvnQe8V8y1nDpIbM= +github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= +github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= +github.com/eclipse/paho.mqtt.golang v1.2.0/go.mod h1:H9keYFcgq3Qr5OUJm/JZI/i6U7joQ8SYLhZwfeOo6Ts= +github.com/edsrzf/mmap-go v1.0.0/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= +github.com/eknkc/amber v0.0.0-20171010120322-cdade1c07385/go.mod h1:0vRUJqYpeSZifjYj7uP3BG/gKcuzL9xWVV/Y+cK33KM= github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98= github.com/envoyproxy/go-control-plane v0.9.7/go.mod h1:cwu0lG7PUMfa9snN8LXBig5ynNVH9qI8YYLbd1fK2po= github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= +github.com/envoyproxy/go-control-plane v0.9.9-0.20210217033140-668b12f5399d/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk= +github.com/envoyproxy/go-control-plane v0.9.9-0.20210512163311-63b5d3c536b0/go.mod h1:hliV/p42l8fGbc6Y9bQ70uLwIvmJyVE5k4iMKlh8wCQ= +github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0= +github.com/envoyproxy/go-control-plane v0.10.2-0.20220325020618-49ff273808a1/go.mod h1:KJwIaB5Mv44NWtYuAOFCVOjcI94vtpEz2JU/D2v6IjE= +github.com/envoyproxy/go-control-plane v0.10.3/go.mod h1:fJJn/j26vwOu972OllsvAgJJM//w9BV6Fxbg2LuVd34= +github.com/envoyproxy/go-control-plane v0.11.0/go.mod h1:VnHyVMpzcLvCFt9yUz1UnCwHLhwx1WguiVDV7pTG/tI= +github.com/envoyproxy/go-control-plane v0.11.1-0.20230524094728-9239064ad72f/go.mod h1:sfYdkwUW4BA3PbKjySwjJy+O4Pu0h62rlqCMHNk+K+Q= +github.com/envoyproxy/go-control-plane v0.11.1/go.mod h1:uhMcXKCQMEJHiAb0w+YGefQLaTEw+YhGluxZkrTmD0g= github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= +github.com/envoyproxy/protoc-gen-validate v0.6.7/go.mod h1:dyJXwwfPK2VSqiB9Klm1J6romD608Ba7Hij42vrOBCo= +github.com/envoyproxy/protoc-gen-validate v0.9.1/go.mod h1:OKNgG7TCp5pF4d6XftA0++PMirau2/yoOwVac3AbF2w= +github.com/envoyproxy/protoc-gen-validate v0.10.0/go.mod h1:DRjgyB0I43LtJapqN6NiRwroiAU2PaFuvk/vjgh61ss= +github.com/envoyproxy/protoc-gen-validate v0.10.1/go.mod h1:DRjgyB0I43LtJapqN6NiRwroiAU2PaFuvk/vjgh61ss= +github.com/envoyproxy/protoc-gen-validate v1.0.1/go.mod h1:0vj8bNkYbSTNS2PIyH87KZaeN4x9zpL9Qt8fQC7d+vs= +github.com/envoyproxy/protoc-gen-validate v1.0.2/go.mod h1:GpiZQP3dDbg4JouG/NNS7QWXpgx6x8QiMKdmN72jogE= +github.com/etcd-io/bbolt v1.3.3/go.mod h1:ZF2nL25h33cCyBtcyWeZ2/I3HQOfTP+0PIEvHjkjCrw= +github.com/ethereum/c-kzg-4844 v0.4.0/go.mod h1:VewdlzQmpT5QSrVhbBuGoCdFJkpaJlO1aQputP83wc0= +github.com/ethereum/go-ethereum v1.10.26/go.mod h1:EYFyF19u3ezGLD4RqOkLq+ZCXzYbLoNDdZlMt7kyKFg= github.com/ethereum/go-ethereum v1.13.5 h1:U6TCRciCqZRe4FPXmy1sMGxTfuk8P7u2UoinF3VbaFk= github.com/ethereum/go-ethereum v1.13.5/go.mod h1:yMTu38GSuyxaYzQMViqNmQ1s3cE84abZexQmTgenWk0= +github.com/fasthttp-contrib/websocket v0.0.0-20160511215533-1f3b11f56072/go.mod h1:duJ4Jxv5lDcvg4QuQr0oowTf7dz4/CR8NtyCooz9HL8= +github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= +github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk= +github.com/fatih/structs v1.1.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga6PJ7M= +github.com/fjl/gencodec v0.0.0-20220412091415-8bb9e558978c/go.mod h1:AzA8Lj6YtixmJWL+wkKoBGsLWy9gFrAzi4g+5bCKwpY= +github.com/fjl/gencodec v0.0.0-20230517082657-f9840df7b83e/go.mod h1:AzA8Lj6YtixmJWL+wkKoBGsLWy9gFrAzi4g+5bCKwpY= +github.com/fjl/memsize v0.0.0-20190710130421-bcb5799ab5e5/go.mod h1:VvhXpOYNQvB+uIk2RvXzuaQtkQJzzIx6lSBe1xv7hi0= +github.com/flosch/pongo2 v0.0.0-20190707114632-bbf5a6c351f4/go.mod h1:T9YF2M40nIgbVgp3rreNmTged+9HrbNTIQf1PsaIiTA= +github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= +github.com/fogleman/gg v1.3.0/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= +github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= github.com/fsnotify/fsnotify v1.6.0 h1:n+5WquG0fcWoWp6xPWfHdbskMCQaFnG6PfBrh1Ky4HY= github.com/fsnotify/fsnotify v1.6.0/go.mod h1:sl3t1tCWJFWoRz9R8WJCbQihKKwmorjAbSClcnxKAGw= +github.com/fxamacker/cbor/v2 v2.4.1-0.20220515183430-ad2eae63303f/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c h1:5tm/Wbs9d9r+qZaUFXk59CWDD0+77PBqDREffYkyi5c= github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= github.com/fxamacker/circlehash v0.3.0 h1:XKdvTtIJV9t7DDUtsf0RIpC1OcxZtPbmgIH7ekx28WA= github.com/fxamacker/circlehash v0.3.0/go.mod h1:3aq3OfVvsWtkWMb6A1owjOQFA+TLsD5FgJflnaQwtMM= +github.com/garslo/gogen v0.0.0-20170306192744-1d203ffc1f61/go.mod h1:Q0X6pkwTILDlzrGEckF6HKjXe48EgsY/l7K7vhY4MW8= +github.com/gavv/httpexpect v2.0.0+incompatible/go.mod h1:x+9tiU1YnrOvnB725RkpoLv1M62hOWzwo5OXotisrKc= +github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff/go.mod h1:x7DCsMOv1taUwEWCzT4cmDeAkigA5/QCwUodaVOe8Ww= +github.com/gballet/go-verkle v0.0.0-20230607174250-df487255f46b/go.mod h1:CDncRYVRSDqwakm282WEkjfaAj1hxU/v5RXxk5nXOiI= +github.com/getkin/kin-openapi v0.53.0/go.mod h1:7Yn5whZr5kJi6t+kShccXS8ae1APpYTW6yheSwk8Yi4= +github.com/getkin/kin-openapi v0.61.0/go.mod h1:7Yn5whZr5kJi6t+kShccXS8ae1APpYTW6yheSwk8Yi4= +github.com/ghemawat/stream v0.0.0-20171120220530-696b145b53b9/go.mod h1:106OIgooyS7OzLDOpUGgm9fA3bQENb/cFSyyBmMoJDs= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= +github.com/gin-contrib/sse v0.0.0-20190301062529-5545eab6dad3/go.mod h1:VJ0WA2NBN22VlZ2dKZQPAPnyWw5XTlK1KymzLKsr59s= +github.com/gin-gonic/gin v1.4.0/go.mod h1:OW2EZn3DO8Ln9oIKOvM++LBO+5UPHJJDH72/q/3rZdM= +github.com/glycerine/go-unsnap-stream v0.0.0-20180323001048-9f0cb55181dd/go.mod h1:/20jfyN9Y5QPEAprSgKAUr+glWDY39ZiUEAYOEv5dsE= +github.com/glycerine/goconvey v0.0.0-20190410193231-58a59202ab31/go.mod h1:Ogl1Tioa0aV7gstGFO7KhffUsb9M4ydbEbbxpcEDc24= +github.com/go-check/check v0.0.0-20180628173108-788fd7840127/go.mod h1:9ES+weclKsC9YodN5RgxqK/VD9HM9JsCSh7rNhMZE98= +github.com/go-chi/chi/v5 v5.0.0/go.mod h1:BBug9lr0cqtdAhsu6R4AAdvufI0/XBzAQSsUqJpoZOs= +github.com/go-errors/errors v1.0.1/go.mod h1:f4zRHt4oKfwPJE5k8C9vpYG+aDHdBFUsgrm6/TyX73Q= +github.com/go-fonts/dejavu v0.1.0/go.mod h1:4Wt4I4OU2Nq9asgDCteaAaWZOV24E+0/Pwo0gppep4g= +github.com/go-fonts/latin-modern v0.2.0/go.mod h1:rQVLdDMK+mK1xscDwsqM5J8U2jrRa3T0ecnM9pNujks= +github.com/go-fonts/latin-modern v0.3.0/go.mod h1:ysEQXnuT/sCDOAONxC7ImeEDVINbltClhasMAqEtRK0= +github.com/go-fonts/liberation v0.1.1/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= +github.com/go-fonts/liberation v0.2.0/go.mod h1:K6qoJYypsmfVjWg8KOVDQhLc8UDgIK2HYqyqAO9z7GY= +github.com/go-fonts/liberation v0.3.0/go.mod h1:jdJ+cqF+F4SUL2V+qxBth8fvBpBDS7yloUL5Fi8GTGY= +github.com/go-fonts/stix v0.1.0/go.mod h1:w/c1f0ldAUlJmLBvlbkvVXLAD+tAMqobIIQpmnUIzUY= github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY= +github.com/go-latex/latex v0.0.0-20210118124228-b3d85cf34e07/go.mod h1:CO1AlKB2CSIqUrmQPqA0gdRIlnLEY0gK5JGjh37zN5U= +github.com/go-latex/latex v0.0.0-20210823091927-c0d11ff05a81/go.mod h1:SX0U8uGpxhq9o2S/CELCSUxEWWAuoCUcVCQWv7G2OCk= +github.com/go-latex/latex v0.0.0-20230307184459-12ec69307ad9/go.mod h1:gWuR/CrFDDeVRFQwHPvsv9soJVB/iqymhuZQuJ3a9OM= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= +github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= +github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= +github.com/go-logr/logr v1.2.3/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= +github.com/go-logr/logr v1.2.4/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= +github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= +github.com/go-martini/martini v0.0.0-20170121215854-22fa46961aab/go.mod h1:/P9AEU963A2AYjv4d1V5eVL1CQbEJq6aCNHDDjibzu8= +github.com/go-ole/go-ole v1.2.1/go.mod h1:7FAglXiTm7HKlQRDeOQ6ZNUHidzCWXuZWq/1dTyBNF8= +github.com/go-ole/go-ole v1.2.5/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0= +github.com/go-openapi/jsonpointer v0.19.5/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg= +github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk= +github.com/go-pdf/fpdf v0.5.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= +github.com/go-pdf/fpdf v0.6.0/go.mod h1:HzcnA+A23uwogo0tp9yU+l3V+KXhiESpt1PMayhOh5M= +github.com/go-sourcemap/sourcemap v2.1.3+incompatible/go.mod h1:F8jJfvm2KbVjc5NqelyYJmf/v5J0dwNLS2mL4sNA1Jg= +github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/go-stack/stack v1.8.1/go.mod h1:dcoOX6HbPZSZptuspn9bctJ+N/CnF5gGygcUP3XYfe4= +github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee/go.mod h1:L0fX3K22YWvt/FAX9NnzrNzcI4wNYi9Yku4O0LKYflo= +github.com/gobwas/pool v0.2.0/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6WezmKEw= +github.com/gobwas/ws v1.0.2/go.mod h1:szmBTxLgaFppYjEmNtny/v3w89xOydFnnZMcgRRu/EM= +github.com/goccy/go-json v0.9.11/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= +github.com/goccy/go-json v0.10.2/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= +github.com/gofrs/flock v0.8.1/go.mod h1:F1TvTiK9OcQqauNUHlbJvyl9Qa1QvF/gOUDKA14jxHU= +github.com/gofrs/uuid v3.3.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= +github.com/gogo/googleapis v0.0.0-20180223154316-0cd9801be74a/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= +github.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= +github.com/gogo/protobuf v1.3.1/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o= +github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= +github.com/gogo/status v1.1.0/go.mod h1:BFv9nrluPLmrS0EmGVvLaPNmRosr9KapBYd5/hpY1WM= +github.com/golang-jwt/jwt v3.2.1+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I= +github.com/golang-jwt/jwt/v4 v4.2.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= +github.com/golang-jwt/jwt/v4 v4.3.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= +github.com/golang-jwt/jwt/v4 v4.4.3/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0= +github.com/golang-jwt/jwt/v4 v4.5.0/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0= +github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= +github.com/golang/geo v0.0.0-20190916061304-5b978397cfec/go.mod h1:QZ0nwyI2jOfgRAoBvP+ab5aRr7c9x7lhGEJrKvBwjWI= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= +github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4= +github.com/golang/glog v1.1.0/go.mod h1:pfYeQZ3JWZoXTV5sFc986z3HTpwQs9At6P4ImfuP3NQ= +github.com/golang/glog v1.1.2/go.mod h1:zR+okUeTbrL6EL3xHUDxZuEtGv04p5shwip1+mL/rLQ= github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= @@ -113,6 +1275,8 @@ github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt github.com/golang/mock v1.4.1/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.3/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt3cw= github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= +github.com/golang/mock v1.5.0/go.mod h1:CWnOUgYIOo4TcNZ0wHX3YZCqsaM1I1Jvs6v3mP3KVu8= +github.com/golang/mock v1.6.0/go.mod h1:p6yTPP+5HYm5mzsMV8JkE6ZKdX+/wYM6Hr+LicevLPs= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= @@ -127,9 +1291,26 @@ github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvq github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8= github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= +github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg= +github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/golang/snappy v0.0.3/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/golangci/lint-1 v0.0.0-20181222135242-d2cdd8c08219/go.mod h1:/X8TswGSh1pIozq4ZwCfxS0WA5JGXguxk94ar/4c87Y= +github.com/gomodule/redigo v1.7.1-0.20190724094224-574c33c3df38/go.mod h1:B4C85qUVwatsJoIUNIfCRsp7qO0iAmpGFZ4EELWSbC4= +github.com/gonum/blas v0.0.0-20181208220705-f22b278b28ac/go.mod h1:P32wAyui1PQ58Oce/KYkOqQv8cVw1zAapXOl+dRFGbc= +github.com/gonum/floats v0.0.0-20181209220543-c233463c7e82/go.mod h1:PxC8OnwL11+aosOB5+iEPoV3picfs8tUpkVd0pDo+Kg= +github.com/gonum/internal v0.0.0-20181124074243-f884aa714029/go.mod h1:Pu4dmpkhSyOzRwuXkOgAvijx4o+4YMUJJo9OvPYMkks= +github.com/gonum/lapack v0.0.0-20181123203213-e4cdc5a0bff9/go.mod h1:XA3DeT6rxh2EAE789SSiSJNqxPaC0aE9J8NTOI0Jo/A= +github.com/gonum/matrix v0.0.0-20181209220409-c518dec07be9/go.mod h1:0EXg4mc1CNP0HCqCz+K4ts155PXIlUywf0wqN+GfPZw= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= +github.com/google/flatbuffers v1.11.0/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= +github.com/google/flatbuffers v2.0.8+incompatible/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= @@ -138,11 +1319,26 @@ github.com/google/go-cmp v0.4.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/ github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.3/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE= +github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= +github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= +github.com/google/go-pkcs11 v0.2.0/go.mod h1:6eQoGcuNJpa7jnd5pMGdkSaQpNDYvPlXWMcjXXThLlY= +github.com/google/go-pkcs11 v0.2.1-0.20230907215043-c6f79328ddf9/go.mod h1:6eQoGcuNJpa7jnd5pMGdkSaQpNDYvPlXWMcjXXThLlY= +github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck= +github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU= +github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/gofuzz v1.1.1-0.20200604201612-c04b05f3adfa/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= +github.com/google/martian/v3 v3.2.1/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= +github.com/google/martian/v3 v3.3.2/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/pprof v0.0.0-20191218002539-d4f498aebedc/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= @@ -153,114 +1349,397 @@ github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hf github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210609004039-a478d1d731e9/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= +github.com/google/pprof v0.0.0-20230207041349-798e818bf904/go.mod h1:uglQLonpP8qtYCYyzA+8c/9qtqgA3qsXGYqCPKARAFg= github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= +github.com/google/s2a-go v0.1.0/go.mod h1:OJpEgntRZo8ugHpF9hkoLJbS5dSI20XZeXJ9JVywLlM= +github.com/google/s2a-go v0.1.3/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A= +github.com/google/s2a-go v0.1.4/go.mod h1:Ej+mSEMGRnqRzjc7VtF+jdBwYG5fuJfiZ8ELkjEwM0A= +github.com/google/s2a-go v0.1.7/go.mod h1:50CgR4k1jNlWBu4UfS4AcfhVe1r6pdZPygJ3R8F0Qdw= +github.com/google/safehtml v0.0.2/go.mod h1:L4KWwDsUJdECRAEpZoBn3O64bQaywRscowZjJAzjHnU= +github.com/google/subcommands v1.2.0/go.mod h1:ZjhPrFU+Olkh9WazFPsl27BQ4UPiG37m3yTrtFlrHVk= +github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.2.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.3.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.4.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/googleapis/enterprise-certificate-proxy v0.0.0-20220520183353-fd19c99a87aa/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= +github.com/googleapis/enterprise-certificate-proxy v0.1.0/go.mod h1:17drOmN3MwGY7t0e+Ei9b45FFGA3fBs3x36SsCg1hq8= +github.com/googleapis/enterprise-certificate-proxy v0.2.0/go.mod h1:8C0jb7/mgJe/9KK8Lm7X9ctZC2t60YyIpYEI16jx0Qg= +github.com/googleapis/enterprise-certificate-proxy v0.2.1/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= +github.com/googleapis/enterprise-certificate-proxy v0.2.3/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= +github.com/googleapis/enterprise-certificate-proxy v0.2.4/go.mod h1:AwSRAtLfXpU5Nm3pW+v7rGDHp09LsPtGY9MduiEsR9k= +github.com/googleapis/enterprise-certificate-proxy v0.2.5/go.mod h1:RxW0N9901Cko1VOCW3SXCpWP+mlIEkk2tP7jnHy9a3w= +github.com/googleapis/enterprise-certificate-proxy v0.3.2/go.mod h1:VLSiSSBs/ksPL8kq3OBOQ6WRI2QnaFynd1DCjZ62+V0= +github.com/googleapis/gax-go v0.0.0-20161107002406-da06d194a00e/go.mod h1:SFVmujtThgffbyetf+mdk2eWhX2bMyUtNHzFKcPA9HY= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= +github.com/googleapis/gax-go/v2 v2.1.0/go.mod h1:Q3nei7sK6ybPYH7twZdmQpAd1MKb7pfu6SK+H1/DsU0= +github.com/googleapis/gax-go/v2 v2.1.1/go.mod h1:hddJymUZASv3XPyGkUpKj8pPO47Rmb0eJc8R6ouapiM= +github.com/googleapis/gax-go/v2 v2.2.0/go.mod h1:as02EH8zWkzwUoLbBaFeQ+arQaj/OthfcblKl4IGNaM= +github.com/googleapis/gax-go/v2 v2.3.0/go.mod h1:b8LNqSzNabLiUpXKkY7HAR5jr6bIT99EXz9pXxye9YM= +github.com/googleapis/gax-go/v2 v2.4.0/go.mod h1:XOTVJ59hdnfJLIP/dh8n5CGryZR2LxK9wbMD5+iXC6c= +github.com/googleapis/gax-go/v2 v2.5.1/go.mod h1:h6B0KMMFNtI2ddbGJn3T3ZbwkeT6yqEF02fYlzkUCyo= +github.com/googleapis/gax-go/v2 v2.6.0/go.mod h1:1mjbznJAPHFpesgE5ucqfYEscaz5kMdcIDwU/6+DDoY= +github.com/googleapis/gax-go/v2 v2.7.0/go.mod h1:TEop28CZZQ2y+c0VxMUmu1lV+fQx57QpBWsYpwqHJx8= +github.com/googleapis/gax-go/v2 v2.7.1/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= +github.com/googleapis/gax-go/v2 v2.8.0/go.mod h1:4orTrqY6hXxxaUL4LHIPl6lGo8vAE38/qKbhSAKP6QI= +github.com/googleapis/gax-go/v2 v2.10.0/go.mod h1:4UOEnMCrxsSqQ940WnTiD6qJ63le2ev3xfyagutxiPw= +github.com/googleapis/gax-go/v2 v2.11.0/go.mod h1:DxmR61SGKkGLa2xigwuZIQpkCI2S5iydzRfb3peWZJI= +github.com/googleapis/gax-go/v2 v2.12.0/go.mod h1:y+aIqrI5eb1YGMVJfuV3185Ts/D7qKpsEkdD5+I6QGU= +github.com/googleapis/go-type-adapters v1.0.0/go.mod h1:zHW75FOG2aur7gAO2B+MLby+cLsWGBF62rFAi7WjWO4= github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= +github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= +github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So= github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= +github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= +github.com/graph-gophers/graphql-go v1.3.0/go.mod h1:9CQHMSxwO4MprSdzoIEobiHpoLtHm77vfxsvsIN5Vuc= github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= +github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0/go.mod h1:hgWBS7lorOAVIJEQMi4ZsPv9hVvWI6+ch50m39Pf2Ks= +github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3/go.mod h1:o//XUCC/F+yRGJoPO/VU0GSB0f8Nhgmxx0VIRUvaC0w= +github.com/guptarohit/asciigraph v0.5.5/go.mod h1:dYl5wwK4gNsnFf9Zp+l06rFiDZ5YtXM6x7SRWZ3KGag= +github.com/hashicorp/go-bexpr v0.1.10/go.mod h1:oxlubA2vC/gFVfX1A6JGp7ls7uCDlfJn732ehYYg+g0= +github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= +github.com/hashicorp/go-hclog v0.9.2/go.mod h1:5CU+agLiy3J7N7QjHK5d05KxGsuXiQLrjA0H7acj2lQ= +github.com/hashicorp/go-hclog v1.2.0/go.mod h1:whpDNt7SSdeAju8AWKIWsul05p54N/39EeqMAyrmvFQ= +github.com/hashicorp/go-retryablehttp v0.7.4/go.mod h1:Jy/gPYAdjqffZ/yFGCFV2doI5wjtH1ewM9u8iYVjtX8= +github.com/hashicorp/go-version v1.2.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= +github.com/holiman/billy v0.0.0-20230718173358-1c7e68d277a7/go.mod h1:5GuXa7vkL8u9FkFuWdVvfR5ix8hRB7DbOAaYULamFpc= +github.com/holiman/bloomfilter/v2 v2.0.3/go.mod h1:zpoh+gs7qcpqrHr3dB55AMiJwo0iURXE7ZOP9L9hSkA= +github.com/holiman/uint256 v1.2.0/go.mod h1:y4ga/t+u+Xwd7CpDgZESaRcWy0I7XMlTMA25ApIH5Jw= github.com/holiman/uint256 v1.2.3 h1:K8UWO1HUJpRMXBxbmaY1Y8IAMZC/RsKB+ArEnnK4l5o= github.com/holiman/uint256 v1.2.3/go.mod h1:SC8Ryt4n+UBbPbIBKaG9zbbDlp4jOru9xFZmPzLUTxw= +github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= +github.com/huin/goupnp v1.0.3/go.mod h1:ZxNlw5WqJj6wSsRK5+YfflQGXYfccj5VgQsMNixHM7Y= +github.com/huin/goupnp v1.3.0/go.mod h1:gnGPsThkYa7bFi/KWmEysQRf48l2dvR5bxr2OFckNX8= +github.com/huin/goutil v0.0.0-20170803182201-1ca381bf3150/go.mod h1:PpLOETDnJ0o3iZrZfqZzyLl6l7F3c6L1oWn7OICBi6o= +github.com/hydrogen18/memlistener v0.0.0-20141126152155-54553eb933fb/go.mod h1:qEIFzExnS6016fRpRfxrExeVn2gbClQA99gQhnIcdhE= +github.com/iancoleman/strcase v0.2.0/go.mod h1:iwCmte+B7n89clKwxIoIXy/HfoL7AsD47ZCWhYzw7ho= github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= +github.com/ianlancetaylor/demangle v0.0.0-20220319035150-800ac71e25c2/go.mod h1:aYm2/VgdVmcIU8iMfdMvDMsRAQjcfZSKFby6HOFvi/w= +github.com/imkira/go-interpol v1.1.0/go.mod h1:z0h2/2T3XF8kyEPpRgJ3kmNv+C43p+I/CoI+jC3w2iA= github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM= github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= +github.com/influxdata/flux v0.65.1/go.mod h1:J754/zds0vvpfwuq7Gc2wRdVwEodfpCFM7mYlOw2LqY= +github.com/influxdata/influxdb v1.8.3/go.mod h1:JugdFhsvvI8gadxOI6noqNeeBHvWNTbfYGtiAn+2jhI= +github.com/influxdata/influxdb-client-go/v2 v2.4.0/go.mod h1:vLNHdxTJkIf2mSLvGrpj8TCcISApPoXkaxP8g9uRlW8= +github.com/influxdata/influxdb1-client v0.0.0-20220302092344-a9ab5670611c/go.mod h1:qj24IKcXYK6Iy9ceXlo3Tc+vtHo9lIhSX5JddghvEPo= +github.com/influxdata/influxql v1.1.1-0.20200828144457-65d3ef77d385/go.mod h1:gHp9y86a/pxhjJ+zMjNXiQAA197Xk9wLxaz+fGG+kWk= +github.com/influxdata/line-protocol v0.0.0-20180522152040-32c6aa80de5e/go.mod h1:4kt73NQhadE3daL3WhR5EJ/J2ocX0PZzwxQ0gXJ7oFE= +github.com/influxdata/line-protocol v0.0.0-20200327222509-2487e7298839/go.mod h1:xaLFMmpvUxqXtVkUJfg9QmT88cDaCJ3ZKgdZ78oO8Qo= +github.com/influxdata/line-protocol v0.0.0-20210311194329-9aa0e372d097/go.mod h1:xaLFMmpvUxqXtVkUJfg9QmT88cDaCJ3ZKgdZ78oO8Qo= +github.com/influxdata/promql/v2 v2.12.0/go.mod h1:fxOPu+DY0bqCTCECchSRtWfc+0X19ybifQhZoQNF5D8= +github.com/influxdata/roaring v0.4.13-0.20180809181101-fc520f41fab6/go.mod h1:bSgUQ7q5ZLSO+bKBGqJiCBGAl+9DxyW63zLTujjUlOE= +github.com/influxdata/tdigest v0.0.0-20181121200506-bf2b5ad3c0a9/go.mod h1:Js0mqiSBE6Ffsg94weZZ2c+v/ciT8QRHFOap7EKDrR0= +github.com/influxdata/usage-client v0.0.0-20160829180054-6d3895376368/go.mod h1:Wbbw6tYNvwa5dlB6304Sd+82Z3f7PmVZHVKU637d4po= +github.com/iris-contrib/blackfriday v2.0.0+incompatible/go.mod h1:UzZ2bDEoaSGPbkg6SAB4att1aAwTmVIx/5gCVqeyUdI= +github.com/iris-contrib/go.uuid v2.0.0+incompatible/go.mod h1:iz2lgM/1UnEf1kP0L/+fafWORmlnuysV2EMP8MW+qe0= +github.com/iris-contrib/i18n v0.0.0-20171121225848-987a633949d0/go.mod h1:pMCz62A0xJL6I+umB2YTlFRwWXaDFA0jy+5HzGiJjqI= +github.com/iris-contrib/schema v0.0.1/go.mod h1:urYA3uvUNG1TIIjOSCzHr9/LmbQo8LrOcOqfqxa4hXw= +github.com/jackpal/go-nat-pmp v1.0.2/go.mod h1:QPH045xvCAeXUZOxsnwmrtiCoxIr9eob+4orBN1SBKc= +github.com/jedisct1/go-minisign v0.0.0-20190909160543-45766022959e/go.mod h1:G1CVv03EnqU1wYL2dFwXxW2An0az9JTl/ZsqXQeBlkU= +github.com/jedisct1/go-minisign v0.0.0-20230811132847-661be99b8267/go.mod h1:h1nSAbGFqGVzn6Jyl1R/iCcBUHN4g+gW1u9CoBTrb9E= +github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo= +github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U= github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= +github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/json-iterator/go v1.1.10/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.11/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/XSXhF0NWZEnDohbsk= +github.com/jsternberg/zap-logfmt v1.0.0/go.mod h1:uvPs/4X51zdkcm5jXl5SYoN+4RK21K8mysFmDaM/h+o= +github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= +github.com/juju/errors v0.0.0-20181118221551-089d3ea4e4d5/go.mod h1:W54LbzXuIE0boCoNJfwqpmkKJ1O4TCTZMetAt6jGk7Q= +github.com/juju/loggo v0.0.0-20180524022052-584905176618/go.mod h1:vgyd7OREkbtVEN/8IXZe5Ooef3LQePvuBm9UWj6ZL8U= +github.com/juju/testing v0.0.0-20180920084828-472a3e8b2073/go.mod h1:63prj8cnj0tU0S9OHjGJn+b1h0ZghCndfnbQolrYTwA= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= +github.com/julienschmidt/httprouter v1.3.0/go.mod h1:JR6WtHb+2LUe8TCKY3cZOxFyyO8IZAc4RVcycCCAKdM= +github.com/jung-kurt/gofpdf v1.0.0/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= +github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5/go.mod h1:7Id9E/uU8ce6rXgefFLlgrJj/GYY22cpxn+r32jIOes= +github.com/jwilder/encoding v0.0.0-20170811194829-b4e1701a28ef/go.mod h1:Ct9fl0F6iIOGgxJ5npU/IUOhOhqlVrGjyIZc8/MagT0= github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 h1:uC1QfSlInpQF+M0ao65imhwqKnz3Q2z/d8PWZRMQvDM= +github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88/go.mod h1:3w7q1U84EfirKl04SVQ/s7nPm1ZPhiXd34z40TNz36k= +github.com/k0kubun/go-ansi v0.0.0-20180517002512-3bf9e2903213/go.mod h1:vNUNkEQ1e29fT/6vq2aBdFsgNPmy8qMdSay1npru+Sw= github.com/k0kubun/pp v3.0.1+incompatible h1:3tqvf7QgUnZ5tXO6pNAZlrvHgl6DvifjDrd9g2S9Z40= github.com/k0kubun/pp v3.0.1+incompatible/go.mod h1:GWse8YhT0p8pT4ir3ZgBbfZild3tgzSScAn6HmfYukg= +github.com/k0kubun/pp/v3 v3.2.0/go.mod h1:ODtJQbQcIRfAD3N+theGCV1m/CBxweERz2dapdz1EwA= +github.com/karalabe/usb v0.0.2/go.mod h1:Od972xHfMJowv7NGVDiWVxk2zxnWgjLlJzE+F4F7AGU= +github.com/kataras/golog v0.0.9/go.mod h1:12HJgwBIZFNGL0EJnMRhmvGA0PQGx8VFwrZtM4CqbAk= +github.com/kataras/iris/v12 v12.0.1/go.mod h1:udK4vLQKkdDqMGJJVd/msuMtN6hpYJhg/lSzuxjhO+U= +github.com/kataras/neffos v0.0.10/go.mod h1:ZYmJC07hQPW67eKuzlfY7SO3bC0mw83A3j6im82hfqw= +github.com/kataras/pio v0.0.0-20190103105442-ea782b38602d/go.mod h1:NV88laa9UiiDuX9AhMbDPkGYSPugBOV6yTZB1l2K9Z0= +github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8= +github.com/kevinburke/go-bindata v3.23.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= github.com/kevinburke/go-bindata v3.24.0+incompatible h1:qajFA3D0pH94OTLU4zcCCKCDgR+Zr2cZK/RPJHDdFoY= github.com/kevinburke/go-bindata v3.24.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= +github.com/kilic/bls12-381 v0.1.0/go.mod h1:vDTTHJONJ6G+P2R74EhnyotQDTliQDnFEwhdmfzw1ig= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= +github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00= +github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/klauspost/asmfmt v1.3.2/go.mod h1:AG8TuvYojzulgDAMCnYn50l/5QV3Bs/tp6j0HLHbNSE= +github.com/klauspost/compress v1.4.0/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= +github.com/klauspost/compress v1.8.2/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= +github.com/klauspost/compress v1.9.0/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A= +github.com/klauspost/compress v1.15.9/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHUDtV4Yw2GlzU= +github.com/klauspost/compress v1.15.15/go.mod h1:ZcK2JAFqKOpnBlxcLsJzYfrS9X1akm9fHZNnD9+Vo/4= +github.com/klauspost/cpuid v0.0.0-20170728055534-ae7887de9fa5/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= +github.com/klauspost/cpuid v1.2.1/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= +github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= github.com/klauspost/cpuid/v2 v2.0.12/go.mod h1:g2LTdtYhdyuGPqyWyv7qRAmj1WBqxuObKfj5c0PQa7c= +github.com/klauspost/cpuid/v2 v2.2.0/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY= github.com/klauspost/cpuid/v2 v2.2.5 h1:0E5MSMDEoAulmXNFquVs//DdoomxaoTY1kUhbc/qbZg= github.com/klauspost/cpuid/v2 v2.2.5/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= +github.com/klauspost/crc32 v0.0.0-20161016154125-cb6bfca970f6/go.mod h1:+ZoRqAPRLkC4NPOvfYeR5KNOrY6TD+/sAC3HXPZgDYg= +github.com/klauspost/pgzip v1.0.2-0.20170402124221-0bf5dcad4ada/go.mod h1:Ch1tH69qFZu15pkjo5kYi6mth2Zzwzt50oCQKQE9RUs= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= +github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk= github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= +github.com/kylelemons/godebug v0.0.0-20170224010052-a616ab194758/go.mod h1:B69LEHPfb2qLo0BaaOLcbitczOKLWTsrBG9LczfCD4k= +github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw= +github.com/labstack/echo/v4 v4.1.11/go.mod h1:i541M3Fj6f76NZtHSj7TXnyM8n2gaodfvfxNnFqi74g= +github.com/labstack/echo/v4 v4.2.1/go.mod h1:AA49e0DZ8kk5jTOOCKNuPR6oTnBS0dYiM4FW1e6jwpg= +github.com/labstack/gommon v0.3.0/go.mod h1:MULnywXg0yavhxWKc+lOruYdAhDwPK9wf0OL7NoOu+k= github.com/leanovate/gopter v0.2.9 h1:fQjYxZaynp97ozCzfOyOuAGOU4aU/z37zf/tOujFk7c= +github.com/leanovate/gopter v0.2.9/go.mod h1:U2L/78B+KVFIx2VmW6onHJQzXtFb+p5y3y2Sh+Jxxv8= +github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/logrusorgru/aurora/v4 v4.0.0 h1:sRjfPpun/63iADiSvGGjgA1cAYegEWMPCJdUpJYn9JA= github.com/logrusorgru/aurora/v4 v4.0.0/go.mod h1:lP0iIa2nrnT/qoFXcOZSrZQpJ1o6n2CUf/hyHi2Q4ZQ= +github.com/lyft/protoc-gen-star v0.6.0/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= +github.com/lyft/protoc-gen-star v0.6.1/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= +github.com/lyft/protoc-gen-star/v2 v2.0.1/go.mod h1:RcCdONR2ScXaYnQC5tUzxzlpA3WVYF7/opLeUgcQs/o= +github.com/lyft/protoc-gen-star/v2 v2.0.3/go.mod h1:amey7yeodaJhXSbf/TlLvWiqQfLOSpEk//mLlc+axEk= github.com/magiconair/properties v1.8.0 h1:LLgXmsheXeRoUOBOjtwPQCWIYqM/LU1ayDtDePerRcY= github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= +github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= +github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= +github.com/matryer/moq v0.0.0-20190312154309-6cfb0558e1bd/go.mod h1:9ELz6aaclSIGnZBoaSLZ3NAl1VTufbOrXBPvtcy6WiQ= +github.com/mattn/go-colorable v0.0.9/go.mod h1:9vuHe8Xs5qXnSaW/c/ABM9alt+Vo+STaOChaDxuIBZU= +github.com/mattn/go-colorable v0.1.2/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= +github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE= +github.com/mattn/go-colorable v0.1.7/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= +github.com/mattn/go-colorable v0.1.8/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= +github.com/mattn/go-colorable v0.1.9/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= +github.com/mattn/go-colorable v0.1.12/go.mod h1:u5H1YNBxpqRaxsYJYSkiCWKzEfiAb1Gb520KVy5xxl4= github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= +github.com/mattn/go-isatty v0.0.4/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= +github.com/mattn/go-isatty v0.0.7/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= +github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s= +github.com/mattn/go-isatty v0.0.9/go.mod h1:YNRxwqDuOph6SZLI9vUUz6OYw3QyUt7WiY2yME+cCiQ= +github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84= +github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= +github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= +github.com/mattn/go-isatty v0.0.17/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APPA= github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= +github.com/mattn/go-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= +github.com/mattn/go-runewidth v0.0.6/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= +github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI= +github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= +github.com/mattn/go-runewidth v0.0.14/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w= +github.com/mattn/go-sqlite3 v1.11.0/go.mod h1:FPy6KqzDD04eiIsT53CuJW3U88zkxoIYsOqkbpncsNc= +github.com/mattn/go-sqlite3 v1.14.5/go.mod h1:WVKg1VTActs4Qso6iwGbiFih2UIHo0ENGwNd0Lj+XmI= +github.com/mattn/go-sqlite3 v1.14.14/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU= +github.com/mattn/go-sqlite3 v1.14.15/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg= +github.com/mattn/go-tty v0.0.0-20180907095812-13ff1204f104/go.mod h1:XPvLUNfbS4fJH25nqRHfWLMa1ONC8Amw+mIA639KxkE= +github.com/mattn/go-tty v0.0.3/go.mod h1:ihxohKRERHTVzN+aSVRwACLCeqIoZAWpoICkkvrWyR0= +github.com/mattn/goveralls v0.0.2/go.mod h1:8d1ZMHsd7fW6IRPKQh46F2WRpyib5/X4FOpevwGNQEw= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= +github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4= +github.com/mediocregopher/mediocre-go-lib v0.0.0-20181029021733-cb65787f37ed/go.mod h1:dSsfyI2zABAdhcbvkXqgxOxrCsbYeHCPgrZkku60dSg= +github.com/mediocregopher/radix/v3 v3.3.0/go.mod h1:EmfVyvspXz1uZEyPBMyGK+kjWiKQGvsUt6O3Pj+LDCQ= +github.com/microcosm-cc/bluemonday v1.0.2/go.mod h1:iVP4YcDBq+n/5fb23BhYFvIMq/leAFZyRl6bYmGDlGc= +github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8/go.mod h1:mC1jAcsrzbxHt8iiaC+zU4b1ylILSosueou12R++wfY= +github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3/go.mod h1:RagcQ7I8IeTMnF8JTXieKnO4Z6JCsikNEzj0DwauVzE= +github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db/go.mod h1:l0dey0ia/Uv7NcFFVbCLtqEBQbrT4OCwCSKTEv6enCw= github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= github.com/mitchellh/mapstructure v1.4.1 h1:CpVNEelQCZBooIPDn+AR3NpivK/TIKU8bDxdASFVQag= github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= +github.com/mitchellh/pointerstructure v1.2.0/go.mod h1:BRAsLI5zgXmw97Lf6s25bs8ohIXc3tViBH44KcwB2g4= +github.com/mmcloughlin/addchain v0.4.0/go.mod h1:A86O+tHqZLMNO4w6ZZ4FlVQEadcoqkyU72HC5wJ4RlU= +github.com/mmcloughlin/profile v0.1.1/go.mod h1:IhHD7q1ooxgwTgjxQYkACGA77oFTDdFVejUS1/tS/qU= +github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= +github.com/modocache/gover v0.0.0-20171022184752-b58185e213c5/go.mod h1:caMODM3PzxT8aQXRPkAt8xlV/e7d7w8GM5g0fa5F0D8= +github.com/montanaflynn/stats v0.6.6/go.mod h1:etXPPgVO6n31NxCd9KQUMvCM+ve0ruNzt6R8Bnaayow= +github.com/montanaflynn/stats v0.7.0/go.mod h1:etXPPgVO6n31NxCd9KQUMvCM+ve0ruNzt6R8Bnaayow= +github.com/moul/http2curl v1.0.0/go.mod h1:8UbvGypXm98wA/IqH45anm5Y2Z6ep6O31QGOAZ3H0fQ= +github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae/go.mod h1:qAyveg+e4CE+eKJXWVjKXM4ck2QobLqTDytGJbLLhJg= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/naoina/go-stringutil v0.1.0/go.mod h1:XJ2SJL9jCtBh+P9q5btrd/Ylo8XwT/h1USek5+NqSA0= +github.com/naoina/toml v0.1.2-0.20170918210437-9fafd6967416/go.mod h1:NBIhNtsFMo3G2szEBne+bO4gS192HuIYRqfvOWb4i1E= +github.com/nats-io/nats.go v1.8.1/go.mod h1:BrFz9vVn0fU3AcH9Vn4Kd7W0NpJ651tD5omQ3M8LwxM= +github.com/nats-io/nkeys v0.0.2/go.mod h1:dab7URMsZm6Z/jp9Z5UGa87Uutgc2mVpXLC4B7TDb/4= +github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= +github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= +github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= +github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f h1:Z8/PgTqOgOg02MTRpTBYO2k16FE6z4wEOtaC2WBR9Xo= github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f/go.mod h1:xvP61FoOs95K7IYdIYRnNcYQGf4nbF/uuJ0tHf4DRuM= github.com/onflow/cadence v1.0.0-M3 h1:bSydJise9pU4aALloUKv/EWmDLITRlbBpuG8OPBydZM= github.com/onflow/cadence v1.0.0-M3/go.mod h1:odXGZZ/wGNA5mwT8bC9v8u8EXACHllB2ABSZK65TGL8= github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= +github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240209175139-2ab8303b23b7 h1:gTfNhnUGDdHStqqsPqWjqQ5ewqeWBH+VttcOWyh2EP4= +github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240209175139-2ab8303b23b7/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= +github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240209175113-e3b2202ee7a7 h1:7pHK+IcNjHjXqV87V5cTeNXTYtF3LjBLNDuh2SiGUug= +github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240209175113-e3b2202ee7a7/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= +github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= +github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba h1:rIehuhO6bj4FkwE4VzwEjX7MoAlOhUJENBJLqDqVxAo= +github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= +github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/ginkgo v1.10.3/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk= +github.com/onsi/ginkgo v1.13.0/go.mod h1:+REjRxOmWfHCjfv9TTWB1jD1Frx4XydAD3zm1lskyM0= +github.com/onsi/ginkgo v1.14.0/go.mod h1:iSB4RoI2tjJc9BBv4NKIKWKya62Rps+oPG/Lv9klQyY= +github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY= +github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo= +github.com/opentracing/opentracing-go v1.0.2/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= +github.com/opentracing/opentracing-go v1.0.3-0.20180606204148-bd9c31933947/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= +github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= +github.com/paulbellamy/ratecounter v0.2.0/go.mod h1:Hfx1hDpSGoqxkVVpBi/IlYD7kChlfo5C6hzIHwPqfFE= github.com/pelletier/go-toml v1.2.0 h1:T5zMGML61Wp+FlcbWjRDT7yAxhJNAiPPLOFECq181zc= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= +github.com/peterh/liner v1.0.1-0.20180619022028-8c1271fcf47f/go.mod h1:xIteQHvHuaLYG9IFj6mSxM0fCKrs34IrEQUhOYuGPHc= +github.com/peterh/liner v1.1.1-0.20190123174540-a2c9a5303de7/go.mod h1:CRroGNssyjTd/qIG2FyxByd2S8JEAZXBl4qUrZf8GS0= +github.com/philhofer/fwd v1.0.0/go.mod h1:gk3iGcWd9+svBvR0sR+KPcfE+RNWozjowpeBVG3ZVNU= +github.com/phpdave11/gofpdf v1.4.2/go.mod h1:zpO6xFn9yxo3YLyMvW8HcKWVdbNqgIfOOp2dXMnm1mY= +github.com/phpdave11/gofpdi v1.0.12/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= +github.com/phpdave11/gofpdi v1.0.13/go.mod h1:vBmVV0Do6hSBHC8uKUQ71JGW+ZGQq74llk/7bXwjDoI= +github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= +github.com/pierrec/lz4/v4 v4.1.15/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4= +github.com/pingcap/errors v0.11.4/go.mod h1:Oi8TUi2kEtXXLMJk9l1cGmz20kV3TaQ0usTwv5KuLY8= +github.com/pkg/browser v0.0.0-20210115035449-ce105d075bb4/go.mod h1:N6UoU20jOqggOuDwUaBQpluzLNDqif3kq9z2wpdYEfQ= +github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8/go.mod h1:HKlIX3XHQyzLZPlr7++PzdhaXEj94dEiJgZDTsxEqUI= github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/sftp v1.10.1/go.mod h1:lYOWFsE0bwd1+KfKJaKeuokY15vzFx25BLbzYYoAxZI= github.com/pkg/sftp v1.13.1/go.mod h1:3HaPG6Dq1ILlpPZRO0HVMrsydcdLt6HRDccSgb87qRg= +github.com/pkg/term v0.0.0-20180730021639-bffc007b7fd5/go.mod h1:eCbImbZ95eXtAUIbLAuAVnBnwf83mjf6QIVH8SHYwqQ= +github.com/pkg/term v1.2.0-beta.2/go.mod h1:E25nymQcrSllhX42Ok8MRm1+hyBdHY0dCeiKZ9jpNGw= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/prashantv/gostub v1.1.0/go.mod h1:A5zLQHz7ieHGG7is6LLXLz7I8+3LZzsrV0P1IAHhP5U= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= +github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= +github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0= +github.com/prometheus/client_golang v1.12.0/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.2.1-0.20210607210712-147c58e9608a/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= +github.com/prometheus/client_model v0.3.0/go.mod h1:LDGWKZIo7rky3hgvBe+caln+Dr3dPggB5dvjtD7w9+w= +github.com/prometheus/client_model v0.4.0/go.mod h1:oMQmHW1/JoDwqLtg57MGgP/Fb1CJEYF2imWWhWtMkYU= github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/common v0.6.0/go.mod h1:eBmuwkDJBwy6iBfxCBob6t6dR6ENT/y+J+Zk0j9GMYc= +github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo= +github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc= +github.com/prometheus/common v0.32.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= +github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU= +github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= +github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= +github.com/protolambda/bls12-381-util v0.0.0-20220416220906-d8552aa452c7/go.mod h1:IToEjHuttnUzwZI5KBSM/LOOW3qLbbrHOEfp3SbECGY= github.com/psiemens/sconfig v0.1.0 h1:xfWqW+TRpih7mXZIqKYTmpRhlZLQ1kbxV8EjllPv76s= github.com/psiemens/sconfig v0.1.0/go.mod h1:+MLKqdledP/8G3rOBpknbLh0IclCf4WneJUtS26JB2U= +github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= +github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= +github.com/retailnext/hllpp v1.0.1-0.20180308014038-101a6d2f8b52/go.mod h1:RDpi1RftBQPUCDRw6SmxeaREsAaRKnOclghuzp/WRzc= +github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= github.com/rivo/uniseg v0.4.4 h1:8TfxU8dW6PdqD27gjM8MVNuicgxIjxpm4K7x4jp8sis= github.com/rivo/uniseg v0.4.4/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88= +github.com/rjeczalik/notify v0.9.1/go.mod h1:rKwnCoCGeuQnwBtTSPL9Dad03Vh2n40ePRrjvIXnJho= github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= +github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= +github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= +github.com/rogpeppe/go-internal v1.8.1/go.mod h1:JeRgkft04UBgHMgCIwADu4Pn6Mtm5d4nPKWu0nJ5d+o= github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= +github.com/rs/cors v1.7.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= +github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= +github.com/ruudk/golang-pdf417 v0.0.0-20181029194003-1af4ab5afa58/go.mod h1:6lfFZQK844Gfx8o5WFuvpxWRwnSoipWe/p622j1v06w= +github.com/ruudk/golang-pdf417 v0.0.0-20201230142125-a7e3863a1245/go.mod h1:pQAZKsJ8yyVxGRWYNEm9oFB8ieLgKFnamEyDmSA0BRk= +github.com/ryanuber/columnize v2.1.0+incompatible/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= +github.com/schollz/progressbar/v3 v3.13.1/go.mod h1:xvrbki8kfT1fzWzBT/UZd9L6GA+jdL7HAgq2RFnO6fQ= +github.com/sclevine/agouti v3.0.0+incompatible/go.mod h1:b4WX9W9L1sfQKXeJf1mUTLZKJ48R1S7H23Ji7oFO5Bw= +github.com/segmentio/kafka-go v0.1.0/go.mod h1:X6itGqS9L4jDletMsxZ7Dz+JFWxM6JHfPOCvTvk+EJo= +github.com/segmentio/kafka-go v0.2.0/go.mod h1:X6itGqS9L4jDletMsxZ7Dz+JFWxM6JHfPOCvTvk+EJo= +github.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo= +github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= +github.com/sergi/go-diff v1.2.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= +github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC7eC3UO/RA= +github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= +github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= +github.com/sirupsen/logrus v1.6.0/go.mod h1:7uNnSEd1DgxDLC74fIahvMZmmYsHGZGEOFrfsX/uA88= github.com/sirupsen/logrus v1.9.0 h1:trlNQbNUG3OdDrDil03MCb1H2o9nJ1x4/5LYw7byDE0= +github.com/sirupsen/logrus v1.9.0/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ= +github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= +github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= +github.com/spf13/afero v1.3.3/go.mod h1:5KUK8ByomD5Ti5Artl0RtHeI5pTF7MIDuXL3yY520V4= +github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= github.com/spf13/afero v1.9.2 h1:j49Hj62F0n+DaZ1dDCvhABaPNSGNkt32oRFxI33IEMw= github.com/spf13/afero v1.9.2/go.mod h1:iUV7ddyEEZPO5gA3zD4fJt6iStLlL+Lg4m2cihcDf8Y= github.com/spf13/cast v1.3.0 h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8= github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= +github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= github.com/spf13/cobra v0.0.5/go.mod h1:3K3wKZymM7VvHMDS9+Akkh4K60UwM26emMESw8tLCHU= +github.com/spf13/cobra v1.0.0/go.mod h1:/6GTrnGXV9HjY+aR4k0oJ5tcvakLuG6EuKReYlHNrgE= github.com/spf13/cobra v1.5.0 h1:X+jTBEBqF0bHN+9cSMgmfuvv2VHJ9ezmFNf9Y/XstYU= github.com/spf13/cobra v1.5.0/go.mod h1:dWXEIy2H428czQCjInthrTRUg7yKbok+2Qi/yBIJoUM= github.com/spf13/jwalterweatherman v1.0.0 h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk= @@ -271,36 +1750,85 @@ github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s= github.com/spf13/viper v1.4.0 h1:yXHLWeravcrgGyFSyCgdYpXQ9dR9c/WED3pg1RhxqEU= github.com/spf13/viper v1.4.0/go.mod h1:PTJ7Z/lr49W6bUbkmS1V3by4uWynFiR9p7+dSq/yZzE= +github.com/status-im/keycard-go v0.0.0-20190316090335-8537d3370df4/go.mod h1:RZLeN1LMWmRsyYjvAu+I6Dm9QmlDaIIt+Y+4Kd7Tp+Q= +github.com/status-im/keycard-go v0.2.0/go.mod h1:wlp8ZLbsmrF6g6WjugPAx+IzoLrkdf9+mHxBEeo3Hbg= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= github.com/stretchr/objx v0.5.0 h1:1zr/of2m5FGMsad5YfcqgdqdWrIhu+EBEJRhR1U7z/c= +github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= +github.com/stretchr/testify v1.2.0/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= +github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA= +github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= +github.com/stretchr/testify v1.7.2/go.mod h1:R6va5+xMeoiuVRoj+gSkQ7d3FALtqAAGI1FQKckRals= +github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= +github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/stretchr/testify v1.8.3/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= +github.com/supranational/blst v0.3.8-0.20220526154634-513d2456b344/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= +github.com/supranational/blst v0.3.11/go.mod h1:jZJtfjgudtNl4en1tzwPIV3KjUnQUvG3/j+w+fVonLw= +github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7/go.mod h1:q4W45IWZaF22tdD+VEXcAWRA037jwmWEB5VWYORlTpc= github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c h1:HelZ2kAFadG0La9d+4htN4HzQ68Bm2iM9qKMSMES6xg= github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c/go.mod h1:JlzghshsemAMDGZLytTFY8C1JQxQPhnatWqNwUXjggo= +github.com/tidwall/pretty v1.2.1/go.mod h1:ITEVvHYasfjBbM0u2Pg8T2nJnzm8xPwvNhhsoaGGjNU= +github.com/tinylib/msgp v1.0.2/go.mod h1:+d+yLhGm8mzTaHzB+wgMYrodPfmZrzkirds8fDWklFE= +github.com/tklauser/go-sysconf v0.3.5/go.mod h1:MkWzOF4RMCshBAMXuhXJs64Rte09mITnppBXY/rYEFI= +github.com/tklauser/go-sysconf v0.3.12/go.mod h1:Ho14jnntGE1fpdOqQEEaiKRpvIavV0hSfmBq8nJbHYI= +github.com/tklauser/numcpus v0.2.2/go.mod h1:x3qojaO3uyYt0i56EW/VUYs7uBvdl2fkfZFu0T9wgjM= +github.com/tklauser/numcpus v0.6.1/go.mod h1:1XfjsgE2zo8GVw7POkMbHENHzVg3GzmoZ9fESEdAacY= github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d h1:5JInRQbk5UBX8JfUvKh2oYTLMVwj3p6n+wapDDm7hko= github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d/go.mod h1:Nlx5Y115XQvNcIdIy7dZXaNSUpzwBSge4/Ivk93/Yog= +github.com/tyler-smith/go-bip39 v1.0.1-0.20181017060643-dbb3b84ba2ef/go.mod h1:sJ5fKU0s6JVwZjjcUEX2zFOnvq0ASQ2K9Zr6cf67kNs= +github.com/tyler-smith/go-bip39 v1.1.0/go.mod h1:gUYDtqQw1JS3ZJ8UWVcGTGqqr6YIN3CWg+kkNaLt55U= github.com/ugorji/go v1.1.4/go.mod h1:uQMGLiO92mf5W77hV/PUCpI3pbzQx3CRekS0kk+RGrc= github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljTbGfSG7qAOspJ7OScBnGdDN/yBr0sguwnwf0= +github.com/urfave/cli/v2 v2.3.0/go.mod h1:LJmUH05zAU44vOAcrfzZQKsZbVcdbOG8rtL3/XcUArI= +github.com/urfave/cli/v2 v2.10.2/go.mod h1:f8iq5LtQ/bLxafbdBSLPPNsgaW0l/2fYYEHhAyPlwvo= +github.com/urfave/cli/v2 v2.24.1/go.mod h1:GHupkWPMM0M/sj1a2b4wUrWBPzazNrIjouW6fmdJLxc= +github.com/urfave/cli/v2 v2.25.7/go.mod h1:8qnjx1vcq5s2/wpsqoZFndg2CE5tNFyrTvS6SinrnYQ= +github.com/urfave/negroni v1.0.0/go.mod h1:Meg73S6kFm/4PpbYdq35yYWoCZ9mS/YSx+lKnmiohz4= +github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= +github.com/valyala/fasthttp v1.6.0/go.mod h1:FstJa9V+Pj9vQ7OJie2qMHdwemEDaDiSdBnvPM1Su9w= +github.com/valyala/fasttemplate v1.0.1/go.mod h1:UQGH1tvbgY+Nz5t2n7tXsz52dQxojPUpymEIMZ47gx8= +github.com/valyala/fasttemplate v1.2.1/go.mod h1:KHLXt3tVN2HBp8eijSv/kGJopbvo7S+qRAEEKiv+SiQ= +github.com/valyala/tcplisten v0.0.0-20161114210144-ceec8f93295a/go.mod h1:v3UYOV9WzVtRmSR+PDvWpU/qWl4Wa5LApYYX4ZtKbio= +github.com/willf/bitset v1.1.3/go.mod h1:RjeCKbqT1RxIR/KWY6phxZiaY1IyutSBfGjNPySAYV4= github.com/x448/float16 v0.8.4 h1:qLwI1I70+NjRFUR3zs1JPUCgaCXSh3SW62uAKT1mSBM= github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcYsOfg= +github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= +github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ= +github.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y= github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= +github.com/xlab/treeprint v0.0.0-20180616005107-d6fb6747feb6/go.mod h1:ce1O1j6UtZfjr22oyGxGLbauSBp2YVXpARAosm7dHBg= github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q= +github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673/go.mod h1:N3UwUGtsrSj3ccvlPHLoLsHnpR27oXr4ZE984MbSER8= +github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0/go.mod h1:/LWChgwKmvncFJFHJ7Gvn9wZArjbV5/FppcK2fKk/tI= +github.com/yudai/gojsondiff v1.0.0/go.mod h1:AY32+k2cwILAkW1fbgxQ5mUmMiZFgLIV+FBNExI05xg= +github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82/go.mod h1:lgjkn3NuSvDfVJdfcVVdX+jpBxNmX4rDAzaS45IcYoM= +github.com/yudai/pp v2.0.1+incompatible/go.mod h1:PuxR/8QJ7cyCkFp/aUDS+JY727OFEZkTdatxwunjIkc= github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74= +github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= +github.com/yuin/goldmark v1.4.1/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= +github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY= github.com/zeebo/assert v1.1.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= github.com/zeebo/assert v1.3.0 h1:g7C04CbJuIDKNPFHmsk4hwZDO5O+kntRxzaUoNXj+IQ= +github.com/zeebo/assert v1.3.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0= github.com/zeebo/blake3 v0.2.3 h1:TFoLXsjeXqRNFxSbk35Dk4YtszE/MQQGK10BH4ptoTg= github.com/zeebo/blake3 v0.2.3/go.mod h1:mjJjZpnsyIVtVgTOSpJ9vmRE4wgDeyt2HU3qXvvKCaQ= github.com/zeebo/pcg v1.0.1 h1:lyqfGeWiv4ahac6ttHs+I5hwtH/+1mrhlCtVNQM2kHo= github.com/zeebo/pcg v1.0.1/go.mod h1:09F0S9iiKrwn9rlI5yjLkmrug154/YRW6KnnXVDM/l4= +github.com/zeebo/xxh3 v1.0.2/go.mod h1:5NWz9Sef7zIDm2JHfFlcQvNekmcEl9ekUZQQKCYaDcA= go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= @@ -308,37 +1836,92 @@ go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk= +go.opencensus.io v0.23.0/go.mod h1:XItmlyltB5F7CS4xOC1DcqMoFqwtC6OG2xF7mCv7P7E= +go.opencensus.io v0.24.0/go.mod h1:vNK8G9p7aAivkbmorf4v+7Hgx+Zs0yY+0fOtgBfjQKo= +go.opentelemetry.io/otel v1.8.0/go.mod h1:2pkj+iMj0o03Y+cW6/m8Y4WkRdYN3AvCXCnzRMp9yvM= go.opentelemetry.io/otel v1.16.0 h1:Z7GVAX/UkAXPKsy94IU+i6thsQS4nb7LviLpnaNeW8s= go.opentelemetry.io/otel v1.16.0/go.mod h1:vl0h9NUa1D5s1nv3A5vZOYWn8av4K8Ml6JDeHrT/bx4= +go.opentelemetry.io/otel/metric v1.16.0/go.mod h1:QE47cpOmkwipPiefDwo2wDzwJrlfxxNYodqc4xnGCo4= +go.opentelemetry.io/otel/trace v1.8.0/go.mod h1:0Bt3PXY8w+3pheS3hQUt+wow8b1ojPaTBoTCh2zIFI4= +go.opentelemetry.io/otel/trace v1.16.0/go.mod h1:Yt9vYq1SdNz3xdjZZK7wcXv1qv2pwLkqr2QVwea0ef0= +go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= +go.opentelemetry.io/proto/otlp v0.15.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= +go.opentelemetry.io/proto/otlp v0.19.0/go.mod h1:H7XAot3MsfNsj7EXtrA2q5xSNQ10UqI405h3+duxN4U= +go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= -go.uber.org/goleak v1.1.10 h1:z+mqJhf6ss6BSfSM671tgKyZBFPTTJM+HLxnhPC3wu0= +go.uber.org/automaxprocs v1.5.2/go.mod h1:eRbA25aqJrxAbsLO0xy5jVwPt7FQnRgjW+efnwa1WM0= +go.uber.org/goleak v1.1.10/go.mod h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A= +go.uber.org/goleak v1.2.1 h1:NBol2c7O1ZokfZ0LEU9K6Whx/KnwvepVetCUhtKja4A= +go.uber.org/goleak v1.2.1/go.mod h1:qlT2yGI9QafXHhZZLxlSuNsMw3FFLxBr+tBRlmO1xH4= go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= +go.uber.org/zap v1.9.1/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190909091759-094676da4a83/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= +golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= +golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.17.0 h1:r8bRNjWL3GshPW3gkd+RpvzWrZAwPS49OmTGZ/uhM4k= -golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= +golang.org/x/crypto v0.0.0-20220314234659-1baeb1ce4c0b/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.0.0-20220511200225-c6db032c6c88/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4= +golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw= +golang.org/x/crypto v0.7.0/go.mod h1:pYwdfH91IfpZVANVyUOhSIPZaFoJGxTFbZhFTx+dXZU= +golang.org/x/crypto v0.9.0/go.mod h1:yrmDGqONDYtNj3tH8X9dzUun2m2lzPa9ngI6/RUPGR0= +golang.org/x/crypto v0.10.0/go.mod h1:o4eNf7Ede1fv+hwOwZsTHl9EsPFO6q6ZvYR8vYfY45I= +golang.org/x/crypto v0.11.0/go.mod h1:xgJhtzW8F9jGdVFWZESrid1U1bjeNy4zgy5cRr/CIio= +golang.org/x/crypto v0.12.0/go.mod h1:NF0Gs7EO5K4qLn+Ylc+fih8BSTeIjAP05siRnAh98yw= +golang.org/x/crypto v0.13.0/go.mod h1:y6Z2r+Rw4iayiXXAIxJIDAJ1zMW4yaTpebo8fPOliYc= +golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= +golang.org/x/crypto v0.16.0 h1:mMMrFzRSCF0GvB7Ne27XVtVAaXLrPmgPC7/v0tkwHaY= +golang.org/x/crypto v0.16.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4= +golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= +golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= +golang.org/x/exp v0.0.0-20190125153040-c74c464bbbf2/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= +golang.org/x/exp v0.0.0-20191002040644-a1355ae1e2c3/go.mod h1:NOZ3BPKG0ec/BKJQgnvsSFpcKLM5xXVWnvZS97DWHgE= golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= +golang.org/x/exp v0.0.0-20220426173459-3bcf042a4bf5/go.mod h1:lgLbSvA5ygNOMpwM/9anMpWVlVJ7Z+cHWq/eFuinpGE= +golang.org/x/exp v0.0.0-20220827204233-334a2380cb91/go.mod h1:cyybsKvd6eL0RnXn6p/Grxp8F5bW7iYuBgsNCOHpMYE= +golang.org/x/exp v0.0.0-20230321023759-10a507213a29/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc= +golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df/go.mod h1:FXUEEKJgO7OQYeo8N01OfiKP8RXMtf6e8aTskBGqWdc= +golang.org/x/exp v0.0.0-20230905200255-921286631fa9/go.mod h1:S2oDrQGGwySpoQPVqRShND87VCbxmc6bL1Yd2oYrm6k= golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc h1:ao2WRsKSzW6KuUY9IWPwWahcHCgR0s52IfwutMfEbdM= golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc/go.mod h1:iRJReGqOEeBhDZGkGbynYwcHlctCvnjTYIamk7uXpHI= +golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/image v0.0.0-20190910094157-69e4b8554b2a/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/image v0.0.0-20200119044424-58c23975cae1/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/image v0.0.0-20200430140353-33d19683fad8/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/image v0.0.0-20200618115811-c13761719519/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/image v0.0.0-20201208152932-35266b937fa6/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/image v0.0.0-20210216034530-4410531fe030/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/image v0.0.0-20210607152325-775e3b0c77b9/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= +golang.org/x/image v0.0.0-20210628002857-a66eb6448b8d/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= +golang.org/x/image v0.0.0-20211028202545-6944b10bf410/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= +golang.org/x/image v0.0.0-20220302094943-723b81ca9867/go.mod h1:023OzeP/+EPmXeapQh35lcL3II3LrY8Ic+EFFKVhULM= +golang.org/x/image v0.5.0/go.mod h1:FVC7BI/5Ym8R25iw5OLsgshdUBbT1h5jZTpA+mvAdZ4= +golang.org/x/image v0.6.0/go.mod h1:MXLdDR43H7cDJq5GEGXEVeeNhPgi+YYEQ2pC1byI1x0= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= @@ -350,7 +1933,7 @@ golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRu golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 h1:VLliZ0d+/avPrXXH+OakdXhpJuEoBZuwh1m2j7U6Iug= +golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= @@ -361,22 +1944,39 @@ golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= +golang.org/x/mod v0.5.0/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= +golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= +golang.org/x/mod v0.6.0-dev.0.20211013180041-c96bc1413d57/go.mod h1:3p9vT2HGsQu2K1YbXdKPJLVgG5VJdoTa1poYQBtP1AY= +golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= +golang.org/x/mod v0.6.0/go.mod h1:4mET923SAdbXp2ki8ey+zGs1SLqsuM2Y0uvdZR/fUNI= +golang.org/x/mod v0.7.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/mod v0.9.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/mod v0.10.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/mod v0.11.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/mod v0.14.0 h1:dGoOF9QVLYng8IHTm7BAyWqCqSheQ5pYWGhzW00YJr0= +golang.org/x/mod v0.14.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190327091125-710a502c58a2/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190522155817-f3200d17e092/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= +golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190628185345-da137c7871d7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190827160401-ba9fcec4b297/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200202094626-16171245cfb2/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= @@ -387,15 +1987,59 @@ golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/ golang.org/x/net v0.0.0-20200501053045-e0ff5e5a1de5/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200506145744-7e3656a0809f/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200513185701-a91f0712d120/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20200813134508-3edf25e44fcc/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= +golang.org/x/net v0.0.0-20201010224723-4f7140c49acb/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= +golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210220033124-5f55cee0dc0d/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= +golang.org/x/net v0.0.0-20210316092652-d523dce5a7f4/go.mod h1:RBQZq4jEuRlivfhVLdyRGr576XBO4/greRjx4P4O3yc= +golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM= +golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20210610132358-84b48f89b13b/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= +golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220325170049-de3da57026de/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220412020605-290c469a71a5/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220425223048-2871e0cb64e4/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk= +golang.org/x/net v0.0.0-20220607020251-c690dde0001d/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.0.0-20220617184016-355a448f1bc9/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= +golang.org/x/net v0.0.0-20220909164309-bea034e7d591/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= +golang.org/x/net v0.0.0-20221012135044-0b7e1fb9d458/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= +golang.org/x/net v0.0.0-20221014081412-f15817d10f9b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= +golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco= +golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY= +golang.org/x/net v0.4.0/go.mod h1:MBQ8lrhLObU/6UmLb4fmbmk5OcyYmqtbGd/9yIeKjEE= +golang.org/x/net v0.5.0/go.mod h1:DivGGAXEgPSlEBzxGzZI+ZLohi+xUj054jfeKui00ws= +golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= +golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= +golang.org/x/net v0.8.0/go.mod h1:QVkue5JL9kW//ek3r6jTKnTFis1tRmNAW2P1shuFdJc= +golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns= +golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= +golang.org/x/net v0.11.0/go.mod h1:2L/ixqYpgIVXmeoSA/4Lu7BzTG4KIyPIryS4IsOd1oQ= +golang.org/x/net v0.12.0/go.mod h1:zEVYFnQC7m/vmpQFELhcD1EWkZlX69l4oqgmer6hfKA= +golang.org/x/net v0.14.0/go.mod h1:PpSgVXXLK0OxS0F31C1/tv6XNguvCrnXIDrFMspZIUI= +golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk= +golang.org/x/net v0.16.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= +golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= +golang.org/x/net v0.19.0/go.mod h1:CfAk/cbD4CthTvqiEl8NpboMuiuOYsAr/7NOjZJtv1U= +golang.org/x/oauth2 v0.0.0-20170207211851-4464e7848382/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -405,6 +2049,31 @@ golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43/go.mod h1:KelEdhl1UZF7XfJ golang.org/x/oauth2 v0.0.0-20201109201403-9fd604954f58/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= golang.org/x/oauth2 v0.0.0-20210218202405-ba52d332ba99/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210220000619-9bb904979d93/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210313182246-cd4f82c27b84/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210805134026-6f1e6394065a/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8/go.mod h1:KelEdhl1UZF7XfJ4dDtk6s++YSgaE7mD/BuKKDLBl4A= +golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= +golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= +golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5/go.mod h1:DAh4E804XQdzx2j+YRIaUnCqCV2RuMz24cGBJ5QYIrc= +golang.org/x/oauth2 v0.0.0-20220608161450-d0670ef3b1eb/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= +golang.org/x/oauth2 v0.0.0-20220622183110-fd043fe589d2/go.mod h1:jaDAt6Dkxork7LmZnYtzbRWj0W47D86a3TGe0YHBvmE= +golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.0.0-20221006150949-b44042a4b9c1/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783/go.mod h1:h4gKUeWbJ4rQPri7E0u6Gs4e9Ri2zaLxzw5DI5XGrYg= +golang.org/x/oauth2 v0.4.0/go.mod h1:RznEsdpjGAINPTOF0UH/t+xJ75L18YO3Ho6Pyn+uRec= +golang.org/x/oauth2 v0.5.0/go.mod h1:9/XBHVqLaWO3/BRHs5jbpYCnOZVjj5V0ndyaAM7KB4I= +golang.org/x/oauth2 v0.6.0/go.mod h1:ycmewcwgD4Rpr3eZJLSB4Kyyljb3qDh40vJ8STE5HKw= +golang.org/x/oauth2 v0.7.0/go.mod h1:hPLQkd9LyjfXTiRohC/41GhcFqxisoUQ99sCUOHO9x4= +golang.org/x/oauth2 v0.8.0/go.mod h1:yr7u4HXZRm1R1kBWqr/xKNqewf0plRYoB7sla+BCIXE= +golang.org/x/oauth2 v0.10.0/go.mod h1:kTpgurOux7LqtuxjuyZa4Gj2gdezIt/jQtGnNFfypQI= +golang.org/x/oauth2 v0.11.0/go.mod h1:LdF7O/8bLR/qWK9DrpXmbHLTouvRHK0SgJl0GmDBchk= +golang.org/x/oauth2 v0.13.0/go.mod h1:/JMhi4ZRXAf4HG9LiNmxvk+45+96RUlVThiH8FzNBn0= +golang.org/x/perf v0.0.0-20230113213139-801c7ef9e5c5/go.mod h1:UBKtEnL8aqnd+0JHqZ+2qoMDwtuy6cYhhKNoHLBiTQc= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -415,23 +2084,47 @@ golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220819030929-7fc1605a5dde/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.2.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.3.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= +golang.org/x/sync v0.4.0/go.mod h1:FU7BRWz2tNW+3quACPkgCx/L+uEAv1htQ0V83Z9Rj+Y= +golang.org/x/sync v0.5.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181205085412-a5c9d58dba9a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200107162124-548cf772de50/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200122134326-e047566fdf82/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200212091648-12a6c2dcc1e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -442,42 +2135,150 @@ golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200519105757-fe76b779f299/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200803210538-64077c9b5642/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200814200057-3d37ad5750ed/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200826173525-f9321e4c35a6/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200905004654-be1d3432aa8f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200909081042-eff7692f9009/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200918174421-af09f7315aff/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20201101102859-da207088b7d1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20201201145000-ef89a241ccb3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210304124612-50617c2ba197/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210316164454-77fc1eacc6aa/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210324051608-47abb6519492/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210420205809-ac73e9fd8988/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210616045830-e2b7044e8c71/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211020174200-9d6173849985/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211210111614-af8b64212486/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220502124256-b6088ccd6cba/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220503163025-988cb79eb6c6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220610221304-9f5ed59c137d/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220615213510-4f61da869c0c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220624220833-87e55d714810/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220829200755-d48e67d00261/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220919091848-fb04ddd9f9c8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.4.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.9.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.10.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc= golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= +golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= +golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc= +golang.org/x/term v0.3.0/go.mod h1:q750SLmJuPmVoN1blW3UFBPREJfb1KmY3vwxfr+nFDA= +golang.org/x/term v0.4.0/go.mod h1:9P2UbLfCdcvo3p/nzKvsmas4TnlujnuoV9hGgYzW1lQ= +golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= +golang.org/x/term v0.6.0/go.mod h1:m6U89DPEgQRMq3DNkDClhWw02AUbt2daBVO4cn4Hv9U= +golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY= +golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= +golang.org/x/term v0.9.0/go.mod h1:M6DEAAIenWoTxdKrOltXcmDY3rSplQUkrvaDU5FcQyo= +golang.org/x/term v0.10.0/go.mod h1:lpqdcUyK/oCiQxvxVrppt5ggO2KCZ5QblwqPnfZ6d5o= +golang.org/x/term v0.11.0/go.mod h1:zC9APTIj3jG3FdV/Ons+XE1riIZXG4aZ4GTHiPZJPIU= +golang.org/x/term v0.12.0/go.mod h1:owVbMEjm3cBLCHdkQu9b1opXd4ETQWc3BhuQGKgXgvU= +golang.org/x/term v0.13.0/go.mod h1:LTmsnFJwVN6bCy1rVCoS+qHT1HhALEFxKncY3WNNh4U= +golang.org/x/term v0.15.0/go.mod h1:BDl952bC7+uMoWR75FIrCDx79TPU9oHkTZ9yRbYOrX0= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= +golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= +golang.org/x/text v0.3.8/go.mod h1:E6s5w1FMmriuDzIBO73fBruAKo1PCIq6d2Q6DHfQ8WQ= +golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.5.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.6.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= +golang.org/x/text v0.8.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= +golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= +golang.org/x/text v0.10.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= +golang.org/x/text v0.11.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= +golang.org/x/text v0.12.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= +golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ= golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20201208040808-7e3f01d25324/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20220922220347-f3bd1da661af/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.1.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20180525024113-a5b4c53f6e8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20181221001348-537d06c36207/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190206041539-40960b6deb8e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190327201419-c70d86f8b7cf/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= @@ -486,14 +2287,18 @@ golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgw golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20190927191325-030b2cf1153e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191108193012-7d206e10da11/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191115202509-3a792d9c32b2/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191126055441-b0650ceb63d9/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191130070609-6e064ea0cf2d/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20191227053925-7b8e75db28f4/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20200108203644-89082a384178/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= @@ -509,25 +2314,63 @@ golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roY golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= +golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE= golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20201124115921-2c860bdd6e78/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= +golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= +golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= +golang.org/x/tools v0.1.8-0.20211029000441-d6a9af8af023/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= +golang.org/x/tools v0.1.8/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= +golang.org/x/tools v0.1.9/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= +golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= +golang.org/x/tools v0.2.0/go.mod h1:y4OqIKeOV/fWJetJ8bXPU1sEVniLMIyDAZWeHdV+NTA= +golang.org/x/tools v0.3.0/go.mod h1:/rWhSS2+zyEVwoJf8YAX6L2f0ntZ7Kn/mGgAWcipA5k= +golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU= +golang.org/x/tools v0.7.0/go.mod h1:4pg6aUX35JBAogB10C9AtvVL+qowtN4pT3CGSQex14s= +golang.org/x/tools v0.8.0/go.mod h1:JxBZ99ISMI5ViVkT1tr6tdNmXeTrcpVSD3vZ1RsRdN4= +golang.org/x/tools v0.9.1/go.mod h1:owI94Op576fPu3cIGQeHs3joujW/2Oc6MtlxbF5dfNc= +golang.org/x/tools v0.10.0/go.mod h1:UJwyiVBsOA2uwvK/e5OY3GTpDUJriEd+/YlqAwLPmyM= +golang.org/x/tools v0.13.0/go.mod h1:HvlwmtVNQAhOuCjW7xxvovg8wbNq7LwfXh/k7wXUl58= golang.org/x/tools v0.16.0 h1:GO788SKMRunPIBCXiQyo2AaexLstOrVhuAL5YwsckQM= +golang.org/x/tools v0.16.0/go.mod h1:kYVVN6I1mBNoB1OX+noeBjbRk4IUEPa7JJ+TJMEooJ0= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= +golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk= golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8= +gonum.org/v1/gonum v0.0.0-20180816165407-929014505bf4/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo= +gonum.org/v1/gonum v0.0.0-20181121035319-3f7ecaa7e8ca/go.mod h1:Y+Yx5eoAFn32cQvJDxZx5Dpnq+c3wtXuadVZAcxbbBo= +gonum.org/v1/gonum v0.6.0/go.mod h1:9mxDZsDKxgMAuccQkewq682L+0eCu4dCN2yonUJTCLU= +gonum.org/v1/gonum v0.6.1/go.mod h1:9mxDZsDKxgMAuccQkewq682L+0eCu4dCN2yonUJTCLU= +gonum.org/v1/gonum v0.8.2/go.mod h1:oe/vMfY3deqTw+1EZJhuvEW2iwGF1bW9wwu7XCu0+v0= +gonum.org/v1/gonum v0.9.3/go.mod h1:TZumC3NeyVQskjXqmyWt4S3bINhy7B4eYwW69EbyX+0= +gonum.org/v1/gonum v0.11.0/go.mod h1:fSG4YDCxxUZQJ7rKsQrj0gMOg00Il0Z96/qMA4bVQhA= gonum.org/v1/gonum v0.13.0 h1:a0T3bh+7fhRyqeNbiC3qVHYmkiQgit3wnNan/2c0HMM= gonum.org/v1/gonum v0.13.0/go.mod h1:/WPYRckkfWrhWefxyYTfrTtQR0KH4iyHNuzxqXAKyAU= +gonum.org/v1/netlib v0.0.0-20181029234149-ec6d1f5cefe6/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= +gonum.org/v1/netlib v0.0.0-20190313105609-8cb42192e0e0/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw= +gonum.org/v1/plot v0.0.0-20190515093506-e2840ee46a6b/go.mod h1:Wt8AAjI+ypCyYX3nZBvf6cAIx93T+c/OS2HFAYskSZc= +gonum.org/v1/plot v0.9.0/go.mod h1:3Pcqqmp6RHvJI72kgb8fThyUnav364FOsdDo2aGW5lY= +gonum.org/v1/plot v0.10.0/go.mod h1:JWIHJ7U20drSQb/aDpTetJzfC1KlAPldJLpkSy88dvQ= +gonum.org/v1/plot v0.10.1/go.mod h1:VZW5OlhkL1mysU9vaqNHnsy86inf6Ot+jB3r+BczCEo= +google.golang.org/api v0.0.0-20170206182103-3d017632ea10/go.mod h1:4mhQ8q/RsB7i+udVvVy5NUi08OU8ZlA0gRVgrF7VFY0= google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= @@ -547,6 +2390,53 @@ google.golang.org/api v0.30.0/go.mod h1:QGmEvQ87FHZNiUVJkT14jQNYJ4ZJjdRF23ZXz513 google.golang.org/api v0.35.0/go.mod h1:/XrVsuzM0rZmrsbjJutiuftIzeuTQcEeaYcSk/mQ1dg= google.golang.org/api v0.36.0/go.mod h1:+z5ficQTmoYpPn8LCUNVpK5I7hwkpjbcgqA7I34qYtE= google.golang.org/api v0.40.0/go.mod h1:fYKFpnQN0DsDSKRVRcQSDQNtqWPfM9i+zNPxepjRCQ8= +google.golang.org/api v0.41.0/go.mod h1:RkxM5lITDfTzmyKFPt+wGrCJbVfniCr2ool8kTBzRTU= +google.golang.org/api v0.43.0/go.mod h1:nQsDGjRXMo4lvh5hP0TKqF244gqhGcr/YSIykhUk/94= +google.golang.org/api v0.47.0/go.mod h1:Wbvgpq1HddcWVtzsVLyfLp8lDg6AA241LmgIL59tHXo= +google.golang.org/api v0.48.0/go.mod h1:71Pr1vy+TAZRPkPs/xlCf5SsU8WjuAWv1Pfjbtukyy4= +google.golang.org/api v0.50.0/go.mod h1:4bNT5pAuq5ji4SRZm+5QIkjny9JAyVD/3gaSihNefaw= +google.golang.org/api v0.51.0/go.mod h1:t4HdrdoNgyN5cbEfm7Lum0lcLDLiise1F8qDKX00sOU= +google.golang.org/api v0.54.0/go.mod h1:7C4bFFOvVDGXjfDTAsgGwDgAxRDeQ4X8NvUedIt6z3k= +google.golang.org/api v0.55.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= +google.golang.org/api v0.56.0/go.mod h1:38yMfeP1kfjsl8isn0tliTjIb1rJXcQi4UXlbqivdVE= +google.golang.org/api v0.57.0/go.mod h1:dVPlbZyBo2/OjBpmvNdpn2GRm6rPy75jyU7bmhdrMgI= +google.golang.org/api v0.61.0/go.mod h1:xQRti5UdCmoCEqFxcz93fTl338AVqDgyaDRuOZ3hg9I= +google.golang.org/api v0.63.0/go.mod h1:gs4ij2ffTRXwuzzgJl/56BdwJaA194ijkfn++9tDuPo= +google.golang.org/api v0.67.0/go.mod h1:ShHKP8E60yPsKNw/w8w+VYaj9H6buA5UqDp8dhbQZ6g= +google.golang.org/api v0.70.0/go.mod h1:Bs4ZM2HGifEvXwd50TtW70ovgJffJYw2oRCOFU/SkfA= +google.golang.org/api v0.71.0/go.mod h1:4PyU6e6JogV1f9eA4voyrTY2batOLdgZ5qZ5HOCc4j8= +google.golang.org/api v0.74.0/go.mod h1:ZpfMZOVRMywNyvJFeqL9HRWBgAuRfSjJFpe9QtRRyDs= +google.golang.org/api v0.75.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= +google.golang.org/api v0.77.0/go.mod h1:pU9QmyHLnzlpar1Mjt4IbapUCy8J+6HD6GeELN69ljA= +google.golang.org/api v0.78.0/go.mod h1:1Sg78yoMLOhlQTeF+ARBoytAcH1NNyyl390YMy6rKmw= +google.golang.org/api v0.80.0/go.mod h1:xY3nI94gbvBrE0J6NHXhxOmW97HG7Khjkku6AFB3Hyg= +google.golang.org/api v0.84.0/go.mod h1:NTsGnUFJMYROtiquksZHBWtHfeMC7iYthki7Eq3pa8o= +google.golang.org/api v0.85.0/go.mod h1:AqZf8Ep9uZ2pyTvgL+x0D3Zt0eoT9b5E8fmzfu6FO2g= +google.golang.org/api v0.90.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= +google.golang.org/api v0.93.0/go.mod h1:+Sem1dnrKlrXMR/X0bPnMWyluQe4RsNoYfmNLhOIkzw= +google.golang.org/api v0.95.0/go.mod h1:eADj+UBuxkh5zlrSntJghuNeg8HwQ1w5lTKkuqaETEI= +google.golang.org/api v0.96.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= +google.golang.org/api v0.97.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= +google.golang.org/api v0.98.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= +google.golang.org/api v0.99.0/go.mod h1:1YOf74vkVndF7pG6hIHuINsM7eWwpVTAfNMNiL91A08= +google.golang.org/api v0.100.0/go.mod h1:ZE3Z2+ZOr87Rx7dqFsdRQkRBk36kDtp/h+QpHbB7a70= +google.golang.org/api v0.102.0/go.mod h1:3VFl6/fzoA+qNuS1N1/VfXY4LjoXN/wzeIp7TweWwGo= +google.golang.org/api v0.103.0/go.mod h1:hGtW6nK1AC+d9si/UBhw8Xli+QMOf6xyNAyJw4qU9w0= +google.golang.org/api v0.106.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= +google.golang.org/api v0.107.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= +google.golang.org/api v0.108.0/go.mod h1:2Ts0XTHNVWxypznxWOYUeI4g3WdP9Pk2Qk58+a/O9MY= +google.golang.org/api v0.110.0/go.mod h1:7FC4Vvx1Mooxh8C5HWjzZHcavuS2f6pmJpZx60ca7iI= +google.golang.org/api v0.111.0/go.mod h1:qtFHvU9mhgTJegR31csQ+rwxyUTHOKFqCKWp1J0fdw0= +google.golang.org/api v0.114.0/go.mod h1:ifYI2ZsFK6/uGddGfAD5BMxlnkBqCmqHSDUVi45N5Yg= +google.golang.org/api v0.118.0/go.mod h1:76TtD3vkgmZ66zZzp72bUUklpmQmKlhh6sYtIjYK+5E= +google.golang.org/api v0.122.0/go.mod h1:gcitW0lvnyWjSp9nKxAbdHKIZ6vF4aajGueeslZOyms= +google.golang.org/api v0.124.0/go.mod h1:xu2HQurE5gi/3t1aFCvhPD781p0a3p11sdunTJ2BlP4= +google.golang.org/api v0.125.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= +google.golang.org/api v0.126.0/go.mod h1:mBwVAtz+87bEN6CbA1GtZPDOqY2R5ONPqJeIlvyo4Aw= +google.golang.org/api v0.128.0/go.mod h1:Y611qgqaE92On/7g65MQgxYul3c0rEB894kniWLY750= +google.golang.org/api v0.139.0/go.mod h1:CVagp6Eekz9CjGZ718Z+sloknzkDJE7Vc1Ckj9+viBk= +google.golang.org/api v0.149.0/go.mod h1:Mwn1B7JTXrzXtnvmzQE2BD6bYZQ8DShKZDZbeN9I7qI= +google.golang.org/api v0.151.0/go.mod h1:ccy+MJ6nrYFgE3WgRx/AMXOxOmU8Q4hSa+jjibzhxcg= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -554,11 +2444,13 @@ google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww google.golang.org/appengine v1.6.5/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/appengine v1.6.6/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= google.golang.org/appengine v1.6.7/go.mod h1:8WjMMxjGQR8xUklV/ARdw2HLXBOI7O7uCIDZVag1xfc= +google.golang.org/genproto v0.0.0-20180518175338-11a468237815/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190716160619-c506a9f90610/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= @@ -566,6 +2458,7 @@ google.golang.org/genproto v0.0.0-20191108220845-16a3f7862a1a/go.mod h1:n3cpQtvx google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20191230161307-f3c370f40bfb/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/genproto v0.0.0-20200108215221-bd8f9a0ef82f/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20200115191322-ca5a22157cba/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20200122232147-0452cf42e150/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= google.golang.org/genproto v0.0.0-20200204135345-fa8e72b47b90/go.mod h1:GmwEX6Z4W5gMy59cAlVYjN9JhxgbQH6Gn+gFDQe2lzA= @@ -577,6 +2470,7 @@ google.golang.org/genproto v0.0.0-20200312145019-da6875a35672/go.mod h1:55QSHmfG google.golang.org/genproto v0.0.0-20200331122359-1ee6d9798940/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200511104702-f5ebc3bea380/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= +google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c= google.golang.org/genproto v0.0.0-20200515170657-fc4c6c6a6587/go.mod h1:YsZOwe1myG/8QRHRsmBRE1LrgQY60beZKjly0O1fX9U= google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo= google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7FcilCzHH/e9qn6dsT145K34l5v+OpcnNgKAAA= @@ -589,7 +2483,156 @@ google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6D google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210108203827-ffc7fda8c3d7/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210226172003-ab064af71705/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= +google.golang.org/genproto v0.0.0-20210329143202-679c6ae281ee/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= +google.golang.org/genproto v0.0.0-20210402141018-6c239bbf2bb1/go.mod h1:9lPAdzaEmUacj36I+k7YKbEc5CXzPIeORRgDAUOu28A= +google.golang.org/genproto v0.0.0-20210513213006-bf773b8c8384/go.mod h1:P3QM42oQyzQSnHPnZ/vqoCdDmzH28fzWByN9asMeM8A= +google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20210604141403-392c879c8b08/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20210608205507-b6d2f5bf0d7d/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0= +google.golang.org/genproto v0.0.0-20210624195500-8bfb893ecb84/go.mod h1:SzzZ/N+nwJDaO1kznhnlzqS8ocJICar6hYhVyhi++24= +google.golang.org/genproto v0.0.0-20210713002101-d411969a0d9a/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= +google.golang.org/genproto v0.0.0-20210716133855-ce7ef5c701ea/go.mod h1:AxrInvYm1dci+enl5hChSFPOmmUF1+uAa/UsgNRWd7k= +google.golang.org/genproto v0.0.0-20210728212813-7823e685a01f/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= +google.golang.org/genproto v0.0.0-20210805201207-89edb61ffb67/go.mod h1:ob2IJxKrgPT52GcgX759i1sleT07tiKowYBGbczaW48= +google.golang.org/genproto v0.0.0-20210813162853-db860fec028c/go.mod h1:cFeNkxwySK631ADgubI+/XFU/xp8FD5KIVV4rj8UC5w= +google.golang.org/genproto v0.0.0-20210821163610-241b8fcbd6c8/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210903162649-d08c68adba83/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210909211513-a8c4777a87af/go.mod h1:eFjDcFEctNawg4eG61bRv87N7iHBWyVhJu7u1kqDUXY= +google.golang.org/genproto v0.0.0-20210924002016-3dee208752a0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211118181313-81c1377c94b1/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211206160659-862468c7d6e0/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20211221195035-429b39de9b1c/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20220126215142-9970aeb2e350/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20220207164111-0872dc986b00/go.mod h1:5CzLGKJ67TSI2B9POpiiyGha0AjJvZIUgRMt1dSmuhc= +google.golang.org/genproto v0.0.0-20220218161850-94dd64e39d7c/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220222213610-43724f9ea8cf/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220304144024-325a89244dc8/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220310185008-1973136f34c6/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220324131243-acbaeb5b85eb/go.mod h1:hAL49I2IFola2sVEjAn7MEwsja0xp51I0tlGAf9hz4E= +google.golang.org/genproto v0.0.0-20220329172620-7be39ac1afc7/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220413183235-5e96e2839df9/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220414192740-2d67ff6cf2b4/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220421151946-72621c1f0bd3/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220429170224-98d788798c3e/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= +google.golang.org/genproto v0.0.0-20220502173005-c8bf987b8c21/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220505152158-f39f71e6c8f3/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220518221133-4f43b3371335/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220523171625-347a074981d8/go.mod h1:RAyBrSAP7Fh3Nc84ghnVLDPuV51xc9agzmm4Ph6i0Q4= +google.golang.org/genproto v0.0.0-20220608133413-ed9918b62aac/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220616135557-88e70c0c3a90/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220617124728-180714bec0ad/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220624142145-8cd45d7dbd1f/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220628213854-d9e0b6570c03/go.mod h1:KEWEmljWE5zPzLBa/oHl6DaEt9LmfH6WtH1OHIvleBA= +google.golang.org/genproto v0.0.0-20220722212130-b98a9ff5e252/go.mod h1:GkXuJDJ6aQ7lnJcRF+SJVgFdQhypqgl3LB1C9vabdRE= +google.golang.org/genproto v0.0.0-20220801145646-83ce21fca29f/go.mod h1:iHe1svFLAZg9VWz891+QbRMwUv9O/1Ww+/mngYeThbc= +google.golang.org/genproto v0.0.0-20220815135757-37a418bb8959/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220817144833-d7fd3f11b9b1/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220822174746-9e6da59bd2fc/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220829144015-23454907ede3/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220829175752-36a9c930ecbf/go.mod h1:dbqgFATTzChvnt+ujMdZwITVAJHFtfyN1qUhDqEiIlk= +google.golang.org/genproto v0.0.0-20220913154956-18f8339a66a5/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220914142337-ca0e39ece12f/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220915135415-7fd63a7952de/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220916172020-2692e8806bfa/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220919141832-68c03719ef51/go.mod h1:0Nb8Qy+Sk5eDzHnzlStwW3itdNaWoZA5XeSG+R3JHSo= +google.golang.org/genproto v0.0.0-20220920201722-2b89144ce006/go.mod h1:ht8XFiar2npT/g4vkk7O0WYS1sHOHbdujxbEp7CJWbw= +google.golang.org/genproto v0.0.0-20220926165614-551eb538f295/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI= +google.golang.org/genproto v0.0.0-20220926220553-6981cbe3cfce/go.mod h1:woMGP53BroOrRY3xTxlbr8Y3eB/nzAvvFM83q7kG2OI= +google.golang.org/genproto v0.0.0-20221010155953-15ba04fc1c0e/go.mod h1:3526vdqwhZAwq4wsRUaVG555sVgsNmIjRtO7t/JH29U= +google.golang.org/genproto v0.0.0-20221014173430-6e2ab493f96b/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= +google.golang.org/genproto v0.0.0-20221014213838-99cd37c6964a/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= +google.golang.org/genproto v0.0.0-20221024153911-1573dae28c9c/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= +google.golang.org/genproto v0.0.0-20221024183307-1bc688fe9f3e/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= +google.golang.org/genproto v0.0.0-20221027153422-115e99e71e1c/go.mod h1:CGI5F/G+E5bKwmfYo09AXuVN4dD894kIKUFmVbP2/Fo= +google.golang.org/genproto v0.0.0-20221109142239-94d6d90a7d66/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= +google.golang.org/genproto v0.0.0-20221114212237-e4508ebdbee1/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= +google.golang.org/genproto v0.0.0-20221117204609-8f9c96812029/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= +google.golang.org/genproto v0.0.0-20221118155620-16455021b5e6/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= +google.golang.org/genproto v0.0.0-20221201164419-0e50fba7f41c/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= +google.golang.org/genproto v0.0.0-20221201204527-e3fa12d562f3/go.mod h1:rZS5c/ZVYMaOGBfO68GWtjOw/eLaZM1X6iVtgjZ+EWg= +google.golang.org/genproto v0.0.0-20221202195650-67e5cbc046fd/go.mod h1:cTsE614GARnxrLsqKREzmNYJACSWWpAWdNMwnD7c2BE= +google.golang.org/genproto v0.0.0-20221207170731-23e4bf6bdc37/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20221227171554-f9683d7f8bef/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230112194545-e10362b5ecf9/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230113154510-dbe35b8444a5/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230123190316-2c411cf9d197/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230124163310-31e0e69b6fc2/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230125152338-dcaf20b6aeaa/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230127162408-596548ed4efa/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230209215440-0dfe4f8abfcc/go.mod h1:RGgjbofJ8xD9Sq1VVhDM1Vok1vRONV+rg+CjzG4SZKM= +google.golang.org/genproto v0.0.0-20230216225411-c8e22ba71e44/go.mod h1:8B0gmkoRebU8ukX6HP+4wrVQUY1+6PkQ44BSyIlflHA= +google.golang.org/genproto v0.0.0-20230222225845-10f96fb3dbec/go.mod h1:3Dl5ZL0q0isWJt+FVcfpQyirqemEuLAK/iFvg1UP1Hw= +google.golang.org/genproto v0.0.0-20230223222841-637eb2293923/go.mod h1:3Dl5ZL0q0isWJt+FVcfpQyirqemEuLAK/iFvg1UP1Hw= +google.golang.org/genproto v0.0.0-20230303212802-e74f57abe488/go.mod h1:TvhZT5f700eVlTNwND1xoEZQeWTB2RY/65kplwl/bFA= +google.golang.org/genproto v0.0.0-20230306155012-7f2fa6fef1f4/go.mod h1:NWraEVixdDnqcqQ30jipen1STv2r/n24Wb7twVTGR4s= +google.golang.org/genproto v0.0.0-20230320184635-7606e756e683/go.mod h1:NWraEVixdDnqcqQ30jipen1STv2r/n24Wb7twVTGR4s= +google.golang.org/genproto v0.0.0-20230323212658-478b75c54725/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= +google.golang.org/genproto v0.0.0-20230330154414-c0448cd141ea/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= +google.golang.org/genproto v0.0.0-20230331144136-dcfb400f0633/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= +google.golang.org/genproto v0.0.0-20230403163135-c38d8f061ccd/go.mod h1:UUQDJDOlWu4KYeJZffbWgBkS1YFobzKbLVfK69pe0Ak= +google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU= +google.golang.org/genproto v0.0.0-20230525234025-438c736192d0/go.mod h1:9ExIQyXL5hZrHzQceCwuSYwZZ5QZBazOcprJ5rgs3lY= +google.golang.org/genproto v0.0.0-20230526161137-0005af68ea54/go.mod h1:zqTuNwFlFRsw5zIts5VnzLQxSRqh+CGOTVMlYbY0Eyk= +google.golang.org/genproto v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:zqTuNwFlFRsw5zIts5VnzLQxSRqh+CGOTVMlYbY0Eyk= +google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:xZnkP7mREFX5MORlOPEzLMr+90PPZQ2QWzrVTWfAq64= +google.golang.org/genproto v0.0.0-20230629202037-9506855d4529/go.mod h1:xZnkP7mREFX5MORlOPEzLMr+90PPZQ2QWzrVTWfAq64= +google.golang.org/genproto v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:O9kGHb51iE/nOGvQaDUuadVYqovW56s5emA88lQnj6Y= +google.golang.org/genproto v0.0.0-20230711160842-782d3b101e98/go.mod h1:S7mY02OqCJTD0E1OiQy1F72PWFB4bZJ87cAtLPYgDR0= +google.golang.org/genproto v0.0.0-20230726155614-23370e0ffb3e/go.mod h1:0ggbjUrZYpy1q+ANUS30SEoGZ53cdfwtbuG7Ptgy108= +google.golang.org/genproto v0.0.0-20230803162519-f966b187b2e5/go.mod h1:oH/ZOT02u4kWEp7oYBGYFFkCdKS/uYR9Z7+0/xuuFp8= +google.golang.org/genproto v0.0.0-20230821184602-ccc8af3d0e93/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4= +google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4= +google.golang.org/genproto v0.0.0-20230913181813-007df8e322eb/go.mod h1:yZTlhN0tQnXo3h00fuXNCxJdLdIdnVFVBaRJ5LWBbw4= +google.golang.org/genproto v0.0.0-20230920204549-e6e6cdab5c13/go.mod h1:CCviP9RmpZ1mxVr8MUjCnSiY09IbAXZxhLE6EhHIdPU= +google.golang.org/genproto v0.0.0-20231002182017-d307bd883b97/go.mod h1:t1VqOqqvce95G3hIDCT5FeO3YUc6Q4Oe24L/+rNMxRk= +google.golang.org/genproto v0.0.0-20231012201019-e917dd12ba7a/go.mod h1:EMfReVxb80Dq1hhioy0sOsY9jCE46YDgHlJ7fWVUWRE= +google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b/go.mod h1:CgAqfJo+Xmu0GwA0411Ht3OU3OntXwsGmrmjI8ioGXI= +google.golang.org/genproto/googleapis/api v0.0.0-20230525234020-1aefcd67740a/go.mod h1:ts19tUU+Z0ZShN1y3aPyq2+O3d5FUNNgT6FtOzmrNn8= +google.golang.org/genproto/googleapis/api v0.0.0-20230525234035-dd9d682886f9/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= +google.golang.org/genproto/googleapis/api v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= +google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= +google.golang.org/genproto/googleapis/api v0.0.0-20230629202037-9506855d4529/go.mod h1:vHYtlOoi6TsQ3Uk2yxR7NI5z8uoV+3pZtR4jmHIkRig= +google.golang.org/genproto/googleapis/api v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:mPBs5jNgx2GuQGvFwUvVKqtn6HsUw9nP64BedgvqEsQ= +google.golang.org/genproto/googleapis/api v0.0.0-20230711160842-782d3b101e98/go.mod h1:rsr7RhLuwsDKL7RmgDDCUc6yaGr1iqceVb5Wv6f6YvQ= +google.golang.org/genproto/googleapis/api v0.0.0-20230726155614-23370e0ffb3e/go.mod h1:rsr7RhLuwsDKL7RmgDDCUc6yaGr1iqceVb5Wv6f6YvQ= +google.golang.org/genproto/googleapis/api v0.0.0-20230803162519-f966b187b2e5/go.mod h1:5DZzOUPCLYL3mNkQ0ms0F3EuUNZ7py1Bqeq6sxzI7/Q= +google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d/go.mod h1:KjSP20unUpOx5kyQUFa7k4OJg0qeJ7DEZflGDu2p6Bk= +google.golang.org/genproto/googleapis/api v0.0.0-20230913181813-007df8e322eb/go.mod h1:KjSP20unUpOx5kyQUFa7k4OJg0qeJ7DEZflGDu2p6Bk= +google.golang.org/genproto/googleapis/api v0.0.0-20230920204549-e6e6cdab5c13/go.mod h1:RdyHbowztCGQySiCvQPgWQWgWhGnouTdCflKoDBt32U= +google.golang.org/genproto/googleapis/api v0.0.0-20231002182017-d307bd883b97/go.mod h1:iargEX0SFPm3xcfMI0d1domjg0ZF4Aa0p2awqyxhvF0= +google.golang.org/genproto/googleapis/api v0.0.0-20231012201019-e917dd12ba7a/go.mod h1:SUBoKXbI1Efip18FClrQVGjWcyd0QZd8KkvdP34t7ww= +google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b/go.mod h1:IBQ646DjkDkvUIsVq/cc03FUFQ9wbZu7yE396YcL870= +google.golang.org/genproto/googleapis/bytestream v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:ylj+BE99M198VPbBh6A8d9n3w8fChvyLK3wwBOjXBFA= +google.golang.org/genproto/googleapis/bytestream v0.0.0-20230807174057-1744710a1577/go.mod h1:NjCQG/D8JandXxM57PZbAJL1DCNL6EypA0vPPwfsc7c= +google.golang.org/genproto/googleapis/bytestream v0.0.0-20231030173426-d783a09b4405/go.mod h1:GRUCuLdzVqZte8+Dl/D4N25yLzcGqqWaYkeVOwulFqw= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234015-3fc162c6f38a/go.mod h1:xURIpW9ES5+/GZhnV6beoEtxQrnkRGIfP5VQG2tCBLc= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230526203410-71b5a4ffd15e/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230629202037-9506855d4529/go.mod h1:66JfowdXAEgad5O9NnYcsNPLCPZJD++2L9X0PCMODrA= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230706204954-ccb25ca9f130/go.mod h1:8mL13HKkDa+IuJ8yruA3ci0q+0vsUz4m//+ottjwS5o= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98/go.mod h1:TUfxEVdsvPg18p6AslUXFoLdpED4oBnGwyqk3dV1XzM= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230731190214-cbb8c96f2d6d/go.mod h1:TUfxEVdsvPg18p6AslUXFoLdpED4oBnGwyqk3dV1XzM= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230803162519-f966b187b2e5/go.mod h1:zBEcrKX2ZOcEkHWxBPAIvYUWOKKMIhYcmNiUIu2ji3I= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230920183334-c177e329c48b/go.mod h1:+Bk1OCOj40wS2hwAMA+aCW9ypzm63QTBBHp6lQ3p+9M= +google.golang.org/genproto/googleapis/rpc v0.0.0-20230920204549-e6e6cdab5c13/go.mod h1:KSqppvjFjtoCI+KGd4PELB0qLNxdJHRGqRI09mB6pQA= +google.golang.org/genproto/googleapis/rpc v0.0.0-20231002182017-d307bd883b97/go.mod h1:v7nGkzlmW8P3n/bKmWBn2WpBjpOEx8Q6gMueudAmKfY= +google.golang.org/genproto/googleapis/rpc v0.0.0-20231012201019-e917dd12ba7a/go.mod h1:4cYg8o5yUbm77w8ZX00LhMVNl/YVBFJRYWDc0uYWMs0= +google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b/go.mod h1:swOH3j0KzcDDgGUWr+SNpyTen5YrXjS3eyPzFYKc6lc= +google.golang.org/genproto/googleapis/rpc v0.0.0-20231030173426-d783a09b4405/go.mod h1:67X1fPuzjcrkymZzZV1vvkFeTn2Rvc6lYF9MYFGCcwE= +google.golang.org/grpc v0.0.0-20170208002647-2a6bf6142e96/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= +google.golang.org/grpc v1.12.0/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= @@ -604,9 +2647,42 @@ google.golang.org/grpc v1.29.1/go.mod h1:itym6AZVZYACWQqET3MqgPpjcuV5QH3BxFS3Iji google.golang.org/grpc v1.30.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= google.golang.org/grpc v1.31.0/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= google.golang.org/grpc v1.31.1/go.mod h1:N36X2cJ7JwdamYAgDz+s+rVMFjt3numwzf/HckM8pak= +google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0= google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc= google.golang.org/grpc v1.34.0/go.mod h1:WotjhfgOW/POjDeRt8vscBtXq+2VjORFy659qA51WJ8= google.golang.org/grpc v1.35.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/grpc v1.36.1/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU= +google.golang.org/grpc v1.37.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.37.1/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQdJfM= +google.golang.org/grpc v1.39.0/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= +google.golang.org/grpc v1.39.1/go.mod h1:PImNr+rS9TWYb2O4/emRugxiyHZ5JyHW5F+RPnDzfrE= +google.golang.org/grpc v1.40.0/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= +google.golang.org/grpc v1.40.1/go.mod h1:ogyxbiOoUXAkP+4+xa6PZSE9DZgIHtSpzjDTB9KAK34= +google.golang.org/grpc v1.42.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= +google.golang.org/grpc v1.44.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU= +google.golang.org/grpc v1.45.0/go.mod h1:lN7owxKUQEqMfSyQikvvk5tf/6zMPsrK+ONuO11+0rQ= +google.golang.org/grpc v1.46.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.46.2/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.47.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.48.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk= +google.golang.org/grpc v1.49.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= +google.golang.org/grpc v1.50.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= +google.golang.org/grpc v1.50.1/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI= +google.golang.org/grpc v1.51.0/go.mod h1:wgNDFcnuBGmxLKI/qn4T+m5BtEBYXJPvibbUPsAIPww= +google.golang.org/grpc v1.52.0/go.mod h1:pu6fVzoFb+NBYNAvQL08ic+lvB2IojljRYuun5vorUY= +google.golang.org/grpc v1.52.3/go.mod h1:pu6fVzoFb+NBYNAvQL08ic+lvB2IojljRYuun5vorUY= +google.golang.org/grpc v1.53.0/go.mod h1:OnIrk0ipVdj4N5d9IUoFUx72/VlD7+jUsHwZgwSMQpw= +google.golang.org/grpc v1.54.0/go.mod h1:PUSEXI6iWghWaB6lXM4knEgpJNu2qUcKfDtNci3EC2g= +google.golang.org/grpc v1.55.0/go.mod h1:iYEXKGkEBhg1PjZQvoYEVPTDkHo1/bjTnfwTeGONTY8= +google.golang.org/grpc v1.56.1/go.mod h1:I9bI3vqKfayGqPUAwGdOSu7kt6oIJLixfffKrpXqQ9s= +google.golang.org/grpc v1.56.2/go.mod h1:I9bI3vqKfayGqPUAwGdOSu7kt6oIJLixfffKrpXqQ9s= +google.golang.org/grpc v1.57.0/go.mod h1:Sd+9RMTACXwmub0zcNY2c4arhtrbBYD1AUHI/dt16Mo= +google.golang.org/grpc v1.58.2/go.mod h1:tgX3ZQDlNJGU96V6yHh1T/JeoBQ2TXdr43YbYSsCJk0= +google.golang.org/grpc v1.58.3/go.mod h1:tgX3ZQDlNJGU96V6yHh1T/JeoBQ2TXdr43YbYSsCJk0= +google.golang.org/grpc v1.59.0/go.mod h1:aUPDwccQo6OTjy7Hct4AfBPD1GptF4fyUjIkQ9YtF98= +google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0/go.mod h1:6Kw0yEErY5E/yWrBtf03jp27GLLJujG4z/JK95pnjjw= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= @@ -617,19 +2693,46 @@ google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2 google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4= google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= +google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.29.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= +google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= +google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= +gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q= gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= +gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= +gopkg.in/go-playground/assert.v1 v1.2.1/go.mod h1:9RXL0bg/zibRAgZUYszZSwO/z8Y/a8bDuhia5mkpMnE= +gopkg.in/go-playground/validator.v8 v8.18.2/go.mod h1:RX2a/7Ha8BgOhfk7j780h4/u/RRjR0eouCJSH80/M2Y= +gopkg.in/mgo.v2 v2.0.0-20180705113604-9856a29383ce/go.mod h1:yeKp02qBN3iKW1OzL3MGk2IdtZzaj7SFntXj72NppTA= +gopkg.in/natefinch/lumberjack.v2 v2.0.0/go.mod h1:l0ndWWf7gzL7RNwBG7wST/UCcT4T24xpD6X8LsfU/+k= +gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce/go.mod h1:5AcXVHNjg+BDxry382+8OKon8SEWiKktQR07RKPsv1c= gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= +gopkg.in/src-d/go-billy.v4 v4.3.2/go.mod h1:nDjArDMp+XMs1aFAESLRjfGSgfvoYN0hDfzEk0GjC98= +gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gopkg.in/yaml.v3 v3.0.0/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= @@ -639,8 +2742,65 @@ honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWh honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k= +honnef.co/go/tools v0.1.3/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las= +lukechampine.com/blake3 v1.1.7/go.mod h1:tkKEOtDkNtklkXtLNEOGNq5tcV90tJiA1vAA12R78LA= lukechampine.com/blake3 v1.2.1 h1:YuqqRuaqsGV71BV/nm9xlI0MKUv4QC54jQnBChWbGnI= +lukechampine.com/blake3 v1.2.1/go.mod h1:0OFRp7fBtAylGVCO40o87sbupkyIGgbpv1+M1k1LM6k= +lukechampine.com/uint128 v1.1.1/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= +lukechampine.com/uint128 v1.2.0/go.mod h1:c4eWIwlEGaxC/+H1VguhU4PHXNWDCDMUlWdIWl2j1gk= +modernc.org/cc/v3 v3.36.0/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= +modernc.org/cc/v3 v3.36.2/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= +modernc.org/cc/v3 v3.36.3/go.mod h1:NFUHyPn4ekoC/JHeZFfZurN6ixxawE1BnVonP/oahEI= +modernc.org/cc/v3 v3.37.0/go.mod h1:vtL+3mdHx/wcj3iEGz84rQa8vEqR6XM84v5Lcvfph20= +modernc.org/cc/v3 v3.40.0/go.mod h1:/bTg4dnWkSXowUO6ssQKnOV0yMVxDYNIsIrzqTFDGH0= +modernc.org/ccgo/v3 v3.0.0-20220428102840-41399a37e894/go.mod h1:eI31LL8EwEBKPpNpA4bU1/i+sKOwOrQy8D87zWUcRZc= +modernc.org/ccgo/v3 v3.0.0-20220430103911-bc99d88307be/go.mod h1:bwdAnOoaIt8Ax9YdWGjxWsdkPcZyRPHqrOvJxaKAKGw= +modernc.org/ccgo/v3 v3.0.0-20220904174949-82d86e1b6d56/go.mod h1:YSXjPL62P2AMSxBphRHPn7IkzhVHqkvOnRKAKh+W6ZI= +modernc.org/ccgo/v3 v3.16.4/go.mod h1:tGtX0gE9Jn7hdZFeU88slbTh1UtCYKusWOoCJuvkWsQ= +modernc.org/ccgo/v3 v3.16.6/go.mod h1:tGtX0gE9Jn7hdZFeU88slbTh1UtCYKusWOoCJuvkWsQ= +modernc.org/ccgo/v3 v3.16.8/go.mod h1:zNjwkizS+fIFDrDjIAgBSCLkWbJuHF+ar3QRn+Z9aws= +modernc.org/ccgo/v3 v3.16.9/go.mod h1:zNMzC9A9xeNUepy6KuZBbugn3c0Mc9TeiJO4lgvkJDo= +modernc.org/ccgo/v3 v3.16.13-0.20221017192402-261537637ce8/go.mod h1:fUB3Vn0nVPReA+7IG7yZDfjv1TMWjhQP8gCxrFAtL5g= +modernc.org/ccgo/v3 v3.16.13/go.mod h1:2Quk+5YgpImhPjv2Qsob1DnZ/4som1lJTodubIcoUkY= +modernc.org/ccorpus v1.11.6/go.mod h1:2gEUTrWqdpH2pXsmTM1ZkjeSrUWDpjMu2T6m29L/ErQ= +modernc.org/httpfs v1.0.6/go.mod h1:7dosgurJGp0sPaRanU53W4xZYKh14wfzX420oZADeHM= +modernc.org/libc v0.0.0-20220428101251-2d5f3daf273b/go.mod h1:p7Mg4+koNjc8jkqwcoFBJx7tXkpj00G77X7A72jXPXA= +modernc.org/libc v1.16.0/go.mod h1:N4LD6DBE9cf+Dzf9buBlzVJndKr/iJHG97vGLHYnb5A= +modernc.org/libc v1.16.1/go.mod h1:JjJE0eu4yeK7tab2n4S1w8tlWd9MxXLRzheaRnAKymU= +modernc.org/libc v1.16.17/go.mod h1:hYIV5VZczAmGZAnG15Vdngn5HSF5cSkbvfz2B7GRuVU= +modernc.org/libc v1.16.19/go.mod h1:p7Mg4+koNjc8jkqwcoFBJx7tXkpj00G77X7A72jXPXA= +modernc.org/libc v1.17.0/go.mod h1:XsgLldpP4aWlPlsjqKRdHPqCxCjISdHfM/yeWC5GyW0= +modernc.org/libc v1.17.1/go.mod h1:FZ23b+8LjxZs7XtFMbSzL/EhPxNbfZbErxEHc7cbD9s= +modernc.org/libc v1.17.4/go.mod h1:WNg2ZH56rDEwdropAJeZPQkXmDwh+JCA1s/htl6r2fA= +modernc.org/libc v1.18.0/go.mod h1:vj6zehR5bfc98ipowQOM2nIDUZnVew/wNC/2tOGS+q0= +modernc.org/libc v1.20.3/go.mod h1:ZRfIaEkgrYgZDl6pa4W39HgN5G/yDW+NRmNKZBDFrk0= +modernc.org/libc v1.21.4/go.mod h1:przBsL5RDOZajTVslkugzLBj1evTue36jEomFQOoYuI= +modernc.org/libc v1.22.2/go.mod h1:uvQavJ1pZ0hIoC/jfqNoMLURIMhKzINIWypNM17puug= +modernc.org/mathutil v1.2.2/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= +modernc.org/mathutil v1.4.1/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= +modernc.org/mathutil v1.5.0/go.mod h1:mZW8CKdRPY1v87qxC/wUdX5O1qDzXMP5TH3wjfpga6E= +modernc.org/memory v1.1.1/go.mod h1:/0wo5ibyrQiaoUoH7f9D8dnglAmILJ5/cxZlRECf+Nw= +modernc.org/memory v1.2.0/go.mod h1:/0wo5ibyrQiaoUoH7f9D8dnglAmILJ5/cxZlRECf+Nw= +modernc.org/memory v1.2.1/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= +modernc.org/memory v1.3.0/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= +modernc.org/memory v1.4.0/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= +modernc.org/memory v1.5.0/go.mod h1:PkUhL0Mugw21sHPeskwZW4D6VscE/GQJOnIpCnW6pSU= +modernc.org/opt v0.1.1/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0= +modernc.org/opt v0.1.3/go.mod h1:WdSiB5evDcignE70guQKxYUl14mgWtbClRi5wmkkTX0= +modernc.org/sqlite v1.18.1/go.mod h1:6ho+Gow7oX5V+OiOQ6Tr4xeqbx13UZ6t+Fw9IRUG4d4= +modernc.org/sqlite v1.18.2/go.mod h1:kvrTLEWgxUcHa2GfHBQtanR1H9ht3hTJNtKpzH9k1u0= +modernc.org/strutil v1.1.1/go.mod h1:DE+MQQ/hjKBZS2zNInV5hhcipt5rLPWkmpbGeW5mmdw= +modernc.org/strutil v1.1.3/go.mod h1:MEHNA7PdEnEwLvspRMtWTNnp2nnyvMfkimT1NKNAGbw= +modernc.org/tcl v1.13.1/go.mod h1:XOLfOwzhkljL4itZkK6T72ckMgvj0BDsnKNdZVUOecw= +modernc.org/tcl v1.13.2/go.mod h1:7CLiGIPo1M8Rv1Mitpv5akc2+8fxUd2y2UzC/MfMzy0= +modernc.org/token v1.0.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= +modernc.org/token v1.0.1/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= +modernc.org/token v1.1.0/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM= +modernc.org/z v1.5.1/go.mod h1:eWFB510QWW5Th9YGZT81s+LwvaAs3Q2yr4sP0rmLkv8= pgregory.net/rapid v0.4.7 h1:MTNRktPuv5FNqOO151TM9mDTa+XHcX6ypYeISDVD14g= +pgregory.net/rapid v0.4.7/go.mod h1:UYpPVyjFHzYBGHIxLFoupi8vwk6rXNzRY9OMvVxFIOU= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= +rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= +rsc.io/tmplfunc v0.0.3/go.mod h1:AG3sTPzElb1Io3Yg4voV9AGZJuleGAwaVRxL9M49PhA= diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 15c310556..c8cbf912b 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -18,6 +18,9 @@ // FlowServiceAccount/set_is_account_creation_restricted.cdc (609B) // FlowServiceAccount/set_tx_fee_parameters.cdc (629B) // FlowServiceAccount/set_tx_fee_surge_factor.cdc (488B) +// accounts/add_key.cdc (189B) +// accounts/create_new_account.cdc (311B) +// accounts/revoke_key.cdc (106B) // dkg/admin/force_stop_dkg.cdc (353B) // dkg/admin/publish_participant.cdc (317B) // dkg/admin/set_safe_threshold.cdc (444B) @@ -721,6 +724,66 @@ func flowserviceaccountSet_tx_fee_surge_factorCdc() (*asset, error) { return a, nil } +var _accountsAdd_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xcc\x41\x0a\xc3\x20\x10\x05\xd0\x75\x3c\x85\xcb\x04\x82\x07\xc8\x2e\x94\xae\xd2\x4b\x58\x33\xc4\xc1\x44\x65\x1c\x29\x43\xc9\xdd\x4b\x6b\x29\x74\xf7\xff\x7f\xf0\xf1\xc8\x89\x58\x5f\x48\x32\x27\xa5\x98\x6c\x2c\xd6\x31\xa6\xd8\x07\x90\xe9\x0b\x66\x01\xb9\x61\xe1\x6b\x64\x92\x41\x3f\x55\x97\x09\xb2\x25\xe8\x0b\x6e\x11\x68\xd2\x73\x65\x3f\x3b\x97\x6a\xe4\x8f\x77\x0d\x4c\x00\x29\xc6\xae\x6b\x9f\xeb\x7d\x47\xb7\xbc\x3f\x03\x88\xf9\xd5\x51\x7b\x5b\xfc\xbc\x6f\x89\x90\xfd\xd1\xf4\x6f\x1a\xf5\x03\x70\xf3\xdc\xa8\xe5\x41\x75\xa7\x3a\x5f\x01\x00\x00\xff\xff\x1b\x32\x5d\xb7\xbd\x00\x00\x00" + +func accountsAdd_keyCdcBytes() ([]byte, error) { + return bindataRead( + _accountsAdd_keyCdc, + "accounts/add_key.cdc", + ) +} + +func accountsAdd_keyCdc() (*asset, error) { + bytes, err := accountsAdd_keyCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "accounts/add_key.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbc, 0x3f, 0x3d, 0x52, 0x1f, 0x71, 0xd8, 0x7e, 0x4c, 0x73, 0x89, 0xb2, 0xdb, 0xf7, 0x67, 0x8b, 0x95, 0xb9, 0x2f, 0xc3, 0x39, 0x30, 0x63, 0x84, 0x91, 0x21, 0xdf, 0x4c, 0x1c, 0x85, 0x1e, 0xa}} + return a, nil +} + +var _accountsCreate_new_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\xb1\x6a\xc4\x30\x0c\x86\x67\xe9\x29\x34\x26\x70\xe4\xf6\x40\x87\x50\x3a\x5d\xdf\xa0\x74\x50\x13\x35\x36\xcd\xd9\x46\x56\x28\xa6\xe4\xdd\x4b\xe2\xa3\xd7\xdb\xe4\xff\xfb\x3f\xdb\xf2\xd7\x14\xd5\xe8\x59\x4b\xb2\x88\x68\xca\x21\xf3\x68\x3e\x86\x26\xad\x1f\x8b\x1f\x2f\x52\x72\x4f\x6f\xb5\xd0\x5d\xa4\xbc\xfa\x6c\x2f\xc1\xb4\xbc\xb7\xf4\x83\x90\x54\x12\xab\x34\xd9\xcf\x41\xb4\xa7\x61\x35\x37\x8c\x63\x5c\x83\x1d\x1c\x16\x31\xe2\x1a\xd0\xd3\x7f\xdc\x24\x2e\xbb\x51\xcd\x16\x11\xe0\x7c\x26\x9e\x26\xe2\x65\x21\x73\x42\x5f\x52\x32\x59\x3c\xe6\xdb\x15\x08\xf0\x19\x75\x27\xe4\x03\xdd\xbf\x78\x3c\x05\xb7\x52\xb7\x8b\x1d\x4f\xd3\x7d\x87\x7e\x57\xba\xbf\xe3\x89\x1c\x67\x37\x2c\x73\x54\x6f\xee\x5a\xe9\x43\x74\xa2\x6f\xf1\xb3\xb3\x8a\xea\xdc\x22\xc0\x86\xb0\xe1\xf6\x1b\x00\x00\xff\xff\x85\xcc\x76\xbd\x37\x01\x00\x00" + +func accountsCreate_new_accountCdcBytes() ([]byte, error) { + return bindataRead( + _accountsCreate_new_accountCdc, + "accounts/create_new_account.cdc", + ) +} + +func accountsCreate_new_accountCdc() (*asset, error) { + bytes, err := accountsCreate_new_accountCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "accounts/create_new_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfc, 0xc2, 0xf3, 0xb, 0xfb, 0xe5, 0xe5, 0xaa, 0x3b, 0x71, 0x3b, 0xd7, 0xcc, 0xb0, 0x44, 0x76, 0x4d, 0xce, 0x93, 0x31, 0x3a, 0xa5, 0x23, 0x13, 0x39, 0x67, 0x9e, 0x37, 0x1, 0x5c, 0x52, 0x76}} + return a, nil +} + +var _accountsRevoke_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x29\x4a\xcc\x2b\x4e\x4c\x2e\xc9\xcc\xcf\xd3\xc8\x4e\xad\xf4\xcc\x4b\x49\xad\xb0\x52\xf0\xcc\x2b\xd1\x54\xa8\xe6\xe2\x2c\x28\x4a\x2d\x48\x2c\x4a\xd5\x28\xce\x4c\xcf\x4b\x2d\xb2\x52\x70\x2c\x2d\xc9\x70\x4c\x4e\xce\x2f\x85\xca\x73\x42\x24\xf4\xb2\x53\x2b\x8b\xf5\x8a\x52\xcb\xf2\xb3\x53\x91\x4c\x81\xb1\x34\xb9\x38\x6b\xb9\x6a\x01\x01\x00\x00\xff\xff\x01\x6a\x3c\x7a\x6a\x00\x00\x00" + +func accountsRevoke_keyCdcBytes() ([]byte, error) { + return bindataRead( + _accountsRevoke_keyCdc, + "accounts/revoke_key.cdc", + ) +} + +func accountsRevoke_keyCdc() (*asset, error) { + bytes, err := accountsRevoke_keyCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "accounts/revoke_key.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xec, 0x5d, 0xcc, 0x59, 0x18, 0xa2, 0x47, 0x34, 0xf3, 0xdd, 0xd7, 0xd6, 0x87, 0xb6, 0x13, 0x8e, 0x33, 0xd2, 0xe2, 0xa7, 0xab, 0xe, 0xd, 0x81, 0x5f, 0x4b, 0x87, 0x3a, 0x7b, 0x76, 0x2a, 0xc5}} + return a, nil +} + var _dkgAdminForce_stop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x4f\x6b\x83\x40\x10\xc5\xef\x7e\x8a\x47\x0e\xc1\x5c\xa4\x67\x69\x1b\x6c\x4d\x3d\x78\x29\x15\x7a\xdf\xae\xa3\x91\xae\x3b\x32\xce\x92\x40\xc8\x77\x2f\xba\x4d\x21\x87\xbe\xdb\x2e\xf3\x7b\x7f\x86\x71\x62\x51\xbc\x39\x3e\x95\x75\x85\x4e\x78\xc4\xc3\xb9\xac\xab\xa2\x2c\x3f\x0e\x4d\x93\x24\x2a\xc6\xcf\xc6\xea\xc0\x1e\x97\x24\x01\x00\x47\x8a\xf6\xbb\x2f\xda\x71\xf0\x39\xb6\xbf\x70\xb6\xbe\xe3\xc5\x24\x34\x19\xa1\x74\x1e\x7a\x4f\x92\xc3\x04\x3d\xa6\x2f\x2c\xc2\xa7\x4f\xe3\x02\xed\xb0\x2d\xac\xe5\xe0\x75\x87\xcb\x4a\x2c\x9a\xc9\x75\xd9\xcd\x18\x4f\x88\x74\x36\x2b\x8b\xe9\x29\xfb\x5a\xf9\xc7\xfb\xbc\xe7\x74\xe9\x9c\xe3\xee\xb3\x89\xc4\xbb\xd1\xe3\xee\xcf\x7d\xd1\x7e\x8f\xc9\xf8\xc1\xa6\x9b\x57\x0e\xae\x85\x67\x45\xb4\xc5\x32\x3f\x06\x0b\x75\x24\xe4\x2d\x6d\x22\x7c\x8d\x9b\xe8\x4c\x36\x28\xfd\xd7\x37\xeb\x58\x2c\x1d\x7c\x5b\xd6\x55\x7a\x03\xaf\xc9\x4f\x00\x00\x00\xff\xff\x30\xb9\x84\xa5\x61\x01\x00\x00" func dkgAdminForce_stop_dkgCdcBytes() ([]byte, error) { @@ -6330,6 +6393,9 @@ var _bindata = map[string]func() (*asset, error){ "FlowServiceAccount/set_is_account_creation_restricted.cdc": flowserviceaccountSet_is_account_creation_restrictedCdc, "FlowServiceAccount/set_tx_fee_parameters.cdc": flowserviceaccountSet_tx_fee_parametersCdc, "FlowServiceAccount/set_tx_fee_surge_factor.cdc": flowserviceaccountSet_tx_fee_surge_factorCdc, + "accounts/add_key.cdc": accountsAdd_keyCdc, + "accounts/create_new_account.cdc": accountsCreate_new_accountCdc, + "accounts/revoke_key.cdc": accountsRevoke_keyCdc, "dkg/admin/force_stop_dkg.cdc": dkgAdminForce_stop_dkgCdc, "dkg/admin/publish_participant.cdc": dkgAdminPublish_participantCdc, "dkg/admin/set_safe_threshold.cdc": dkgAdminSet_safe_thresholdCdc, @@ -6675,6 +6741,11 @@ var _bintree = &bintree{nil, map[string]*bintree{ "set_tx_fee_parameters.cdc": {flowserviceaccountSet_tx_fee_parametersCdc, map[string]*bintree{}}, "set_tx_fee_surge_factor.cdc": {flowserviceaccountSet_tx_fee_surge_factorCdc, map[string]*bintree{}}, }}, + "accounts": {nil, map[string]*bintree{ + "add_key.cdc": {accountsAdd_keyCdc, map[string]*bintree{}}, + "create_new_account.cdc": {accountsCreate_new_accountCdc, map[string]*bintree{}}, + "revoke_key.cdc": {accountsRevoke_keyCdc, map[string]*bintree{}}, + }}, "dkg": {nil, map[string]*bintree{ "admin": {nil, map[string]*bintree{ "force_stop_dkg.cdc": {dkgAdminForce_stop_dkgCdc, map[string]*bintree{}}, diff --git a/lib/go/templates/manifest.mainnet.json b/lib/go/templates/manifest.mainnet.json index 606176932..2fee01f7b 100755 --- a/lib/go/templates/manifest.mainnet.json +++ b/lib/go/templates/manifest.mainnet.json @@ -2,164 +2,777 @@ "network": "mainnet", "templates": [ { - "id": "TH.01", - "name": "Withdraw Unlocked FLOW", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"The primary user account does not have an associated locked account\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "id": "FA.01", + "name": "Create Account", + "source": "import Crypto\n\ntransaction(publicKeys: [Crypto.KeyListEntry]) {\n\tprepare(signer: AuthAccount) {\n\t\tlet account = AuthAccount(payer: signer)\n\n\t\t// add all the keys to the account\n\t\tfor key in publicKeys {\n\t\t\taccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n\t\t}\n\t}\n}", "arguments": [ { - "type": "UFix64", - "name": "amount", - "label": "Amount", + "type": "[Crypto.KeyListEntry]", + "name": "publicKeys", + "label": "Public Keys", "sampleValues": [ { - "value": "92233720368.54775808", - "type": "UFix64" + "value": [ + { + "value": { + "id": "I.Crypto.Crypto.KeyListEntry", + "fields": [ + { + "value": { + "value": "1000", + "type": "Int" + }, + "name": "keyIndex" + }, + { + "value": { + "value": { + "id": "PublicKey", + "fields": [ + { + "value": { + "value": [ + { + "value": "97", + "type": "UInt8" + }, + { + "value": "12", + "type": "UInt8" + }, + { + "value": "124", + "type": "UInt8" + }, + { + "value": "219", + "type": "UInt8" + }, + { + "value": "204", + "type": "UInt8" + }, + { + "value": "59", + "type": "UInt8" + }, + { + "value": "7", + "type": "UInt8" + }, + { + "value": "91", + "type": "UInt8" + }, + { + "value": "97", + "type": "UInt8" + }, + { + "value": "129", + "type": "UInt8" + }, + { + "value": "185", + "type": "UInt8" + }, + { + "value": "79", + "type": "UInt8" + }, + { + "value": "239", + "type": "UInt8" + }, + { + "value": "14", + "type": "UInt8" + }, + { + "value": "225", + "type": "UInt8" + }, + { + "value": "138", + "type": "UInt8" + }, + { + "value": "73", + "type": "UInt8" + }, + { + "value": "165", + "type": "UInt8" + }, + { + "value": "97", + "type": "UInt8" + }, + { + "value": "50", + "type": "UInt8" + }, + { + "value": "130", + "type": "UInt8" + }, + { + "value": "75", + "type": "UInt8" + }, + { + "value": "20", + "type": "UInt8" + }, + { + "value": "18", + "type": "UInt8" + }, + { + "value": "65", + "type": "UInt8" + }, + { + "value": "93", + "type": "UInt8" + }, + { + "value": "134", + "type": "UInt8" + }, + { + "value": "219", + "type": "UInt8" + }, + { + "value": "149", + "type": "UInt8" + }, + { + "value": "255", + "type": "UInt8" + }, + { + "value": "224", + "type": "UInt8" + }, + { + "value": "164", + "type": "UInt8" + }, + { + "value": "11", + "type": "UInt8" + }, + { + "value": "117", + "type": "UInt8" + }, + { + "value": "167", + "type": "UInt8" + }, + { + "value": "23", + "type": "UInt8" + }, + { + "value": "13", + "type": "UInt8" + }, + { + "value": "229", + "type": "UInt8" + }, + { + "value": "66", + "type": "UInt8" + }, + { + "value": "42", + "type": "UInt8" + }, + { + "value": "182", + "type": "UInt8" + }, + { + "value": "239", + "type": "UInt8" + }, + { + "value": "41", + "type": "UInt8" + }, + { + "value": "49", + "type": "UInt8" + }, + { + "value": "164", + "type": "UInt8" + }, + { + "value": "6", + "type": "UInt8" + }, + { + "value": "195", + "type": "UInt8" + }, + { + "value": "226", + "type": "UInt8" + }, + { + "value": "122", + "type": "UInt8" + }, + { + "value": "138", + "type": "UInt8" + }, + { + "value": "105", + "type": "UInt8" + }, + { + "value": "221", + "type": "UInt8" + }, + { + "value": "9", + "type": "UInt8" + }, + { + "value": "138", + "type": "UInt8" + }, + { + "value": "217", + "type": "UInt8" + }, + { + "value": "173", + "type": "UInt8" + }, + { + "value": "11", + "type": "UInt8" + }, + { + "value": "177", + "type": "UInt8" + }, + { + "value": "59", + "type": "UInt8" + }, + { + "value": "116", + "type": "UInt8" + }, + { + "value": "136", + "type": "UInt8" + }, + { + "value": "64", + "type": "UInt8" + }, + { + "value": "203", + "type": "UInt8" + }, + { + "value": "230", + "type": "UInt8" + } + ], + "type": "Array" + }, + "name": "publicKey" + }, + { + "value": { + "value": { + "id": "SignatureAlgorithm", + "fields": [ + { + "value": { + "value": "1", + "type": "UInt8" + }, + "name": "rawValue" + } + ] + }, + "type": "Enum" + }, + "name": "signatureAlgorithm" + } + ] + }, + "type": "Struct" + }, + "name": "publicKey" + }, + { + "value": { + "value": { + "id": "HashAlgorithm", + "fields": [ + { + "value": { + "value": "3", + "type": "UInt8" + }, + "name": "rawValue" + } + ] + }, + "type": "Enum" + }, + "name": "hashAlgorithm" + }, + { + "value": { + "value": "1000.00000000", + "type": "UFix64" + }, + "name": "weight" + }, + { + "value": { + "value": false, + "type": "Bool" + }, + "name": "isRevoked" + } + ] + }, + "type": "Struct" + } + ], + "type": "Array" } ] } ], "network": "mainnet", - "hash": "4a830e6f93f74179a99e17c7ae762980c7fdc428bc949767529be2f071ac52b9" + "hash": "fcc2f30bfbe5e5aa3b713bd7ccb044764dce93313aa5231339679e37015c5276" }, { - "id": "TH.02", - "name": "Deposit Unlocked FLOW", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"The primary user account does not have an associated locked account\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", + "id": "FA.02", + "name": "Add Key", + "source": "import Crypto\n\ntransaction(key: Crypto.KeyListEntry) {\n\tprepare(signer: AuthAccount) {\n\t\tsigner.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n\t}\n}", "arguments": [ { - "type": "UFix64", - "name": "amount", - "label": "Amount", + "type": "Crypto.KeyListEntry", + "name": "key", + "label": "Public Key", "sampleValues": [ { - "value": "92233720368.54775808", - "type": "UFix64" + "value": { + "id": "I.Crypto.Crypto.KeyListEntry", + "fields": [ + { + "value": { + "value": "1000", + "type": "Int" + }, + "name": "keyIndex" + }, + { + "value": { + "value": { + "id": "PublicKey", + "fields": [ + { + "value": { + "value": [ + { + "value": "97", + "type": "UInt8" + }, + { + "value": "12", + "type": "UInt8" + }, + { + "value": "124", + "type": "UInt8" + }, + { + "value": "219", + "type": "UInt8" + }, + { + "value": "204", + "type": "UInt8" + }, + { + "value": "59", + "type": "UInt8" + }, + { + "value": "7", + "type": "UInt8" + }, + { + "value": "91", + "type": "UInt8" + }, + { + "value": "97", + "type": "UInt8" + }, + { + "value": "129", + "type": "UInt8" + }, + { + "value": "185", + "type": "UInt8" + }, + { + "value": "79", + "type": "UInt8" + }, + { + "value": "239", + "type": "UInt8" + }, + { + "value": "14", + "type": "UInt8" + }, + { + "value": "225", + "type": "UInt8" + }, + { + "value": "138", + "type": "UInt8" + }, + { + "value": "73", + "type": "UInt8" + }, + { + "value": "165", + "type": "UInt8" + }, + { + "value": "97", + "type": "UInt8" + }, + { + "value": "50", + "type": "UInt8" + }, + { + "value": "130", + "type": "UInt8" + }, + { + "value": "75", + "type": "UInt8" + }, + { + "value": "20", + "type": "UInt8" + }, + { + "value": "18", + "type": "UInt8" + }, + { + "value": "65", + "type": "UInt8" + }, + { + "value": "93", + "type": "UInt8" + }, + { + "value": "134", + "type": "UInt8" + }, + { + "value": "219", + "type": "UInt8" + }, + { + "value": "149", + "type": "UInt8" + }, + { + "value": "255", + "type": "UInt8" + }, + { + "value": "224", + "type": "UInt8" + }, + { + "value": "164", + "type": "UInt8" + }, + { + "value": "11", + "type": "UInt8" + }, + { + "value": "117", + "type": "UInt8" + }, + { + "value": "167", + "type": "UInt8" + }, + { + "value": "23", + "type": "UInt8" + }, + { + "value": "13", + "type": "UInt8" + }, + { + "value": "229", + "type": "UInt8" + }, + { + "value": "66", + "type": "UInt8" + }, + { + "value": "42", + "type": "UInt8" + }, + { + "value": "182", + "type": "UInt8" + }, + { + "value": "239", + "type": "UInt8" + }, + { + "value": "41", + "type": "UInt8" + }, + { + "value": "49", + "type": "UInt8" + }, + { + "value": "164", + "type": "UInt8" + }, + { + "value": "6", + "type": "UInt8" + }, + { + "value": "195", + "type": "UInt8" + }, + { + "value": "226", + "type": "UInt8" + }, + { + "value": "122", + "type": "UInt8" + }, + { + "value": "138", + "type": "UInt8" + }, + { + "value": "105", + "type": "UInt8" + }, + { + "value": "221", + "type": "UInt8" + }, + { + "value": "9", + "type": "UInt8" + }, + { + "value": "138", + "type": "UInt8" + }, + { + "value": "217", + "type": "UInt8" + }, + { + "value": "173", + "type": "UInt8" + }, + { + "value": "11", + "type": "UInt8" + }, + { + "value": "177", + "type": "UInt8" + }, + { + "value": "59", + "type": "UInt8" + }, + { + "value": "116", + "type": "UInt8" + }, + { + "value": "136", + "type": "UInt8" + }, + { + "value": "64", + "type": "UInt8" + }, + { + "value": "203", + "type": "UInt8" + }, + { + "value": "230", + "type": "UInt8" + } + ], + "type": "Array" + }, + "name": "publicKey" + }, + { + "value": { + "value": { + "id": "SignatureAlgorithm", + "fields": [ + { + "value": { + "value": "1", + "type": "UInt8" + }, + "name": "rawValue" + } + ] + }, + "type": "Enum" + }, + "name": "signatureAlgorithm" + } + ] + }, + "type": "Struct" + }, + "name": "publicKey" + }, + { + "value": { + "value": { + "id": "HashAlgorithm", + "fields": [ + { + "value": { + "value": "3", + "type": "UInt8" + }, + "name": "rawValue" + } + ] + }, + "type": "Enum" + }, + "name": "hashAlgorithm" + }, + { + "value": { + "value": "1000.00000000", + "type": "UFix64" + }, + "name": "weight" + }, + { + "value": { + "value": false, + "type": "Bool" + }, + "name": "isRevoked" + } + ] + }, + "type": "Struct" } ] } ], "network": "mainnet", - "hash": "038382a947fa96bf2f4dfe5aa9b4b2abee1ef0975955175e80cf911c3edf4b61" + "hash": "bc3f3d521f71d87e4c7389b2dbf7678b95b92fc3393063849121df4c1c851e0a" }, { - "id": "TH.06", - "name": "Register Node", - "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow ref to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let nodeInfo = StakingProxy.NodeInfo(\n nodeID: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey\n )\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n \n }\n}\n", + "id": "FA.03", + "name": "Remove Key", + "source": "transaction(keyIndex: Int) {\n\tprepare(signer: AuthAccount) {\n\t\tsigner.keys.revoke(keyIndex: keyIndex)\n\t}\n}", "arguments": [ { - "type": "String", - "name": "id", - "label": "Node ID", - "sampleValues": [ - { - "value": "88549335e1db7b5b46c2ad58ddb70b7a45e770cc5fe779650ba26f10e6bae5e6", - "type": "String" - } - ] - }, - { - "type": "UInt8", - "name": "role", - "label": "Node Role", + "type": "Int", + "name": "keyIndex", + "label": "Key Index", "sampleValues": [ { "value": "1", - "type": "UInt8" - } - ] - }, - { - "type": "String", - "name": "networkingAddress", - "label": "Networking Address", - "sampleValues": [ - { - "value": "flow-node.test:3569", - "type": "String" - } - ] - }, - { - "type": "String", - "name": "networkingKey", - "label": "Networking Key", - "sampleValues": [ - { - "value": "1348307bc77c688e80049de9d081aa09755da33e6997605fa059db2144fc85e560cbe6f7da8d74b453f5916618cb8fd392c2db856f3e78221dc68db1b1d914e4", - "type": "String" - } - ] - }, - { - "type": "String", - "name": "stakingKey", - "label": "Staking Key", - "sampleValues": [ - { - "value": "9e9ae0d645fd5fd9050792e0b0daa82cc1686d9133afa0f81a784b375c42ae48567d1545e7a9e1965f2c1a32f73cf8575ebb7a967f6e4d104d2df78eb8be409135d12da0499b8a00771f642c1b9c49397f22b440439f036c3bdee82f5309dab3", - "type": "String" - } - ] - }, - { - "type": "UFix64", - "name": "amount", - "label": "Amount", - "sampleValues": [ - { - "value": "92233720368.54775808", - "type": "UFix64" + "type": "Int" } ] } ], "network": "mainnet", - "hash": "3bea653bd94378e266cf3295213a577029404f88af417c234377d465e0a8ab4f" + "hash": "ec5dcc5918a24734f3ddd7d687b6138e33d2e2a7ab0e0d815f4b873a7b762ac5" }, { - "id": "TH.08", - "name": "Stake New Locked FLOW", - "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.stakeNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.stakeNewTokens(amount: amount)\n \n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "id": "FT.01", + "name": "Setup Fungible Token Vault", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FungibleTokenMetadataViews from 0xf233dcee88fe0abe\n\n/// This transaction is what an account would run\n/// to set itself up to manage fungible tokens. This function\n/// uses views to know where to set up the vault\n/// in storage and to create the empty vault.\n\ntransaction(contractAddress: Address, contractName: String) {\n\n prepare(signer: auth(SaveValue, Capabilities) \u0026Account) {\n // Borrow a reference to the vault stored on the passed account at the passed publicPath\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026FungibleToken\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the fungible token contract\")\n\n // Use that reference to retrieve the FTView \n let ftVaultData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cFungibleTokenMetadataViews.FTVaultData\u003e()) as! FungibleTokenMetadataViews.FTVaultData?\n ?? panic(\"Could not resolve the FTVaultData view for the given Fungible token contract\")\n\n // Create a new empty vault using the createEmptyVault function inside the FTVaultData\n let emptyVault \u003c-ftVaultData.createEmptyVault()\n\n // Save it to the account\n signer.storage.save(\u003c-emptyVault, to: ftVaultData.storagePath)\n \n // Create a public capability for the vault which includes the .Resolver interface\n let vaultCap = signer.capabilities.storage.issue\u003c\u0026{FungibleToken.Vault}\u003e(ftVaultData.storagePath)\n signer.capabilities.publish(vaultCap, at: ftVaultData.metadataPath)\n\n // Create a public capability for the vault exposing the receiver interface\n let receiverCap = signer.capabilities.storage.issue\u003c\u0026{FungibleToken.Receiver}\u003e(ftVaultData.storagePath)\n signer.capabilities.publish(receiverCap, at: ftVaultData.receiverPath)\n\n }\n}\n ", "arguments": [ { - "type": "UFix64", - "name": "amount", - "label": "Amount", + "type": "Address", + "name": "contractAddress", + "label": "FT Contract Address", "sampleValues": [ { - "value": "92233720368.54775808", - "type": "UFix64" + "value": "0xe467b9dd11fa00df", + "type": "Address" } ] - } - ], - "network": "mainnet", - "hash": "c7381b6ba748c617db233bebe52df07643933139f9b0de1c435fb00a89e52a89" - }, - { - "id": "TH.09", - "name": "Re-stake Unstaked FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeUnstakedTokens(amount: amount)\n }\n}\n", - "arguments": [ + }, { - "type": "UFix64", - "name": "amount", - "label": "Amount", + "type": "String", + "name": "contractName", + "label": "FT Contract Name", "sampleValues": [ { - "value": "92233720368.54775808", - "type": "UFix64" + "value": "FiatToken", + "type": "String" } ] } ], "network": "mainnet", - "hash": "a156bf801fd212088c4f3bc69ba8e296e173c30041bd3c21ae2da18d816e3868" + "hash": "8713336b58ccf609c9692f24d1529b7beac7fd1ed2a389e35d6a01856a2650c8" }, { - "id": "TH.10", - "name": "Re-stake Rewarded FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeRewardedTokens(amount: amount)\n }\n}\n", + "id": "FT.02", + "name": "Transfer Fungible Token", + "source": "import FungibleToken from 0xf233dcee88fe0abe\n\n/// Can pass in any storage path and receiver path instead of just the default.\n/// This lets you choose the token you want to send as well the capability you want to send it to.\n///\n/// Any token path can be passed as an argument here, so wallets should\n/// should check argument values to make sure the intended token path is passed in\n///\ntransaction(amount: UFix64, to: Address, senderPath: StoragePath, receiverPath: PublicPath) {\n\n // The Vault resource that holds the tokens that are being transferred\n let tempVault: @{FungibleToken.Vault}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Get a reference to the signer's stored vault\n let vaultRef = signer.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026{FungibleToken.Provider}\u003e(from: senderPath)\n\t\t\t?? panic(\"Could not borrow reference to the owner's Vault!\")\n\n self.tempVault \u003c- vaultRef.withdraw(amount: amount)\n }\n\n execute {\n let recipient = getAccount(to)\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{FungibleToken.Receiver}\u003e(receiverPath)\n ?? panic(\"Could not borrow reference to the recipient's Receiver!\")\n\n // Transfer tokens from the signer's stored vault to the receiver capability\n receiverRef.deposit(from: \u003c-self.tempVault)\n }\n}", "arguments": [ { "type": "UFix64", @@ -171,88 +784,59 @@ "type": "UFix64" } ] - } - ], - "network": "mainnet", - "hash": "f42402b6109bf9511f0000b30a07fad92b9f31b874fca70510f3fd37922a0e3f" - }, - { - "id": "TH.11", - "name": "Request Unstake of FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.requestUnstaking(amount: amount)\n }\n}\n", - "arguments": [ + }, { - "type": "UFix64", - "name": "amount", - "label": "Amount", + "type": "Address", + "name": "to", + "label": "Recipient", "sampleValues": [ { - "value": "92233720368.54775808", - "type": "UFix64" + "value": "0xe467b9dd11fa00df", + "type": "Address" } ] - } - ], - "network": "mainnet", - "hash": "49d08df9f71e675ce33fd7fb311dad8af537768db220bcee2bebf6f74375b907" - }, - { - "id": "TH.12", - "name": "Unstake All FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction() {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.unstakeAll()\n }\n}\n", - "arguments": [], - "network": "mainnet", - "hash": "b271186ce48929bb43398cc9a2c13ce3880375cf4743a2f55c2c11772794cb44" - }, - { - "id": "TH.13", - "name": "Withdraw Unstaked FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", - "arguments": [ + }, { - "type": "UFix64", - "name": "amount", - "label": "Amount", + "type": "StoragePath", + "name": "senderPath", + "label": "Sender's Collection Path", "sampleValues": [ { - "value": "92233720368.54775808", - "type": "UFix64" + "value": { + "domain": "storage", + "identifier": "samplePathIdentifier" + }, + "type": "Path" } ] - } - ], - "network": "mainnet", - "hash": "ed1e4b6d77cb74e73e113763ac532e012d8222ee1d23c5b3b98bed359060cdd1" - }, - { - "id": "TH.14", - "name": "Withdraw Rewarded FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", - "arguments": [ + }, { - "type": "UFix64", - "name": "amount", - "label": "Amount", + "type": "PublicPath", + "name": "receiverPath", + "label": "Recipient's Receiver Path", "sampleValues": [ { - "value": "92233720368.54775808", - "type": "UFix64" + "value": { + "domain": "storage", + "identifier": "samplePathIdentifier" + }, + "type": "Path" } ] } ], "network": "mainnet", - "hash": "a164a0fbd5fc0fef64be9d28bb877a1b8914df3d1aa7bc811514b35410258655" + "hash": "45f365ce6b9a048f85b02c03d3311961358e0b623e5c87165ab25bcc90638c60" }, { - "id": "TH.16", - "name": "Register Operator Node", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).capabilities\n .borrow\u003c\u0026StakingProxy.NodeStakerProxyHolder\u003e(\n StakingProxy.NodeOperatorCapabilityPublicPath\n )\n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", + "id": "NFT.01", + "name": "Setup NFT Collection", + "source": "/// This transaction is what an account would run\n/// to set itself up to receive NFTs. This function\n/// uses views to know where to set up the collection\n/// in storage and to create the empty collection.\n\nimport NonFungibleToken from 0x1d7e57aa55817448\nimport MetadataViews from 0x1d7e57aa55817448\n\ntransaction(contractAddress: Address, contractName: String) {\n\n prepare(signer: auth(IssueStorageCapabilityController, PublishCapability, SaveValue) \u0026Account) {\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026NonFungibleToken\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n let collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n // Create a new empty collections\n let emptyCollection \u003c- collectionData.createEmptyCollection()\n\n // save it to the account\n signer.storage.save(\u003c-emptyCollection, to: collectionData.storagePath)\n\n // create a public capability for the collection\n let collectionCap = signer.capabilities.storage.issue\u003c\u0026{NonFungibleToken.Collection}\u003e(\n collectionData.storagePath\n )\n signer.capabilities.publish(collectionCap, at: collectionData.publicPath)\n }\n}\n", "arguments": [ { "type": "Address", - "name": "address", - "label": "Operator Address", + "name": "contractAddress", + "label": "NFT Contract Address", "sampleValues": [ { "value": "0xe467b9dd11fa00df", @@ -262,145 +846,82 @@ }, { "type": "String", - "name": "id", - "label": "Node ID", + "name": "contractName", + "label": "NFT Contract Name", "sampleValues": [ { - "value": "88549335e1db7b5b46c2ad58ddb70b7a45e770cc5fe779650ba26f10e6bae5e6", + "value": "TopShot", "type": "String" } ] - }, - { - "type": "UFix64", - "name": "amount", - "label": "Amount", - "sampleValues": [ - { - "value": "92233720368.54775808", - "type": "UFix64" - } - ] } ], "network": "mainnet", - "hash": "56237b0ce7c4e3d166cfe1eb30fe184bf354b4bd25743bf92760cdeeebe2ba9c" + "hash": "ee7f8c201bd8607b1f576aef742e72fccee7fb429ae5ba708e60acc852428ae1" }, { - "id": "TH.17", - "name": "Register Delegator", - "source": "import FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\nimport FlowIDTableStaking from 0x8624b52f9ddcd04a\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(id: String, amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "id": "NFT.02", + "name": "Transfer NFT", + "source": "/// This transaction is for transferring an ExampleNFT from one account to another\n\nimport \"ViewResolver\"\nimport \"MetadataViews\"\nimport 0x1d7e57aa55817448\nimport \"ExampleNFT\"\n\ntransaction(contractAddress: Address, contractName: String, recipient: Address, withdrawID: UInt64) {\n\n /// Reference to the withdrawer's collection\n let withdrawRef: auth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\n\n /// Reference of the collection to deposit the NFT to\n let receiverRef: \u0026{NonFungibleToken.Receiver}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // borrow the NFT contract as ViewResolver reference\n let viewResolver = getAccount(contractAddress).contracts.borrow\u003c\u0026ViewResolver\u003e(name: contractName)\n ?? panic(\"Could not borrow ViewResolver of given name from address\")\n\n // resolve the NFT collection data from the NFT contract\n let collectionData = viewResolver.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"ViewResolver does not resolve NFTCollectionData view\")\n\n // borrow a reference to the signer's NFT collection\n self.withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: collectionData.storagePath\n ) ?? panic(\"Account does not store an object at the specified path\")\n\n // get the recipients public account object\n let recipient = getAccount(recipient)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(collectionData.publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n self.receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n }\n\n execute {\n\n let nft \u003c- self.withdrawRef.withdraw(withdrawID: withdrawID)\n self.receiverRef.deposit(token: \u003c-nft)\n\n }\n\n post {\n !self.withdrawRef.getIDs().contains(withdrawID): \"Original owner should not have the NFT anymore\"\n }\n}\n", "arguments": [ { - "type": "String", + "type": "UInt64", "name": "id", - "label": "Node ID", + "label": "NFT ID to Transfer", "sampleValues": [ { - "value": "88549335e1db7b5b46c2ad58ddb70b7a45e770cc5fe779650ba26f10e6bae5e6", - "type": "String" + "value": "10", + "type": "UInt64" } ] }, { - "type": "UFix64", - "name": "amount", - "label": "Amount", - "sampleValues": [ - { - "value": "92233720368.54775808", - "type": "UFix64" - } - ] - } - ], - "network": "mainnet", - "hash": "a0f1fd883b855ce62f125668ca74363d4ec5c91809100f0ede98c5f323f4e5c6" - }, - { - "id": "TH.19", - "name": "Delegate New Locked FLOW", - "source": "import FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowDelegator()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.delegateNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.delegateNewTokens(amount: amount)\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", - "arguments": [ - { - "type": "UFix64", - "name": "amount", - "label": "Amount", - "sampleValues": [ - { - "value": "92233720368.54775808", - "type": "UFix64" - } - ] - } - ], - "network": "mainnet", - "hash": "db5d44c8e74688ffbb2ebf63e22a18dc89e471b55c1e9183860c46b5b7d59178" - }, - { - "id": "TH.20", - "name": "Re-delegate Unstaked FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateUnstakedTokens(amount: amount)\n }\n}\n", - "arguments": [ - { - "type": "UFix64", - "name": "amount", - "label": "Amount", + "type": "Address", + "name": "to", + "label": "Recipient", "sampleValues": [ { - "value": "92233720368.54775808", - "type": "UFix64" + "value": "0xe467b9dd11fa00df", + "type": "Address" } ] - } - ], - "network": "mainnet", - "hash": "0ff6d828a048b3fb976fae8d7e06c3dfd6411dc2dc3e93ce21b559a320be0d8d" - }, - { - "id": "TH.21", - "name": "Re-delegate Rewarded FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateRewardedTokens(amount: amount)\n }\n}\n", - "arguments": [ + }, { - "type": "UFix64", - "name": "amount", - "label": "Amount", + "type": "StoragePath", + "name": "senderPath", + "label": "Sender's Collection Path", "sampleValues": [ { - "value": "92233720368.54775808", - "type": "UFix64" + "value": { + "domain": "storage", + "identifier": "samplePathIdentifier" + }, + "type": "Path" } ] - } - ], - "network": "mainnet", - "hash": "624bdb1f1fa770deab68e209fc96614ed4890f04405602e8d01267f0d308c548" - }, - { - "id": "TH.22", - "name": "Unstake Delegated FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.requestUnstaking(amount: amount)\n }\n}\n", - "arguments": [ + }, { - "type": "UFix64", - "name": "amount", - "label": "Amount", + "type": "PublicPath", + "name": "receiverPath", + "label": "Recipient's Receiver Path", "sampleValues": [ { - "value": "92233720368.54775808", - "type": "UFix64" + "value": { + "domain": "storage", + "identifier": "samplePathIdentifier" + }, + "type": "Path" } ] } ], "network": "mainnet", - "hash": "c4c1afab046a018a255a55a91b5977622155f52b2026ea14b1203ddd53a5ddda" + "hash": "7c63278cf0421fd292c97bc953461939d40665833437ce5b4fb48655199fc285" }, { - "id": "TH.23", - "name": "Withdraw Unstaked FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", + "id": "TH.01", + "name": "Withdraw Unlocked FLOW", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"The primary user account does not have an associated locked account\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -415,12 +936,12 @@ } ], "network": "mainnet", - "hash": "f943fb57cbe8f03124365b663ae73847c5ddf1559e110cd1ffe5d7f795190694" + "hash": "4a830e6f93f74179a99e17c7ae762980c7fdc428bc949767529be2f071ac52b9" }, { - "id": "TH.24", - "name": "Withdraw Rewarded FLOW", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport FlowToken from 0x1654653399040a61\nimport FungibleToken from 0xf233dcee88fe0abe\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let delegatorProxy = self.holderRef.borrowDelegator()\n\n delegatorProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "id": "TH.02", + "name": "Deposit Unlocked FLOW", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FlowToken from 0x1654653399040a61\nimport LockedTokens from 0x8d0e87b65159ae63\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"The primary user account does not have an associated locked account\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -435,27 +956,7 @@ } ], "network": "mainnet", - "hash": "36037c188e4e82abf8466bc20da3d29d4b31e3f5c6229900c3cdf66eed7c2fce" - }, - { - "id": "TH.25", - "name": "Update Networking Address", - "source": "import FlowIDTableStaking from 0x8624b52f9ddcd04a\n\ntransaction(newAddress: String) {\n\n // Local variable for a reference to the node object\n let stakerRef: auth(FlowIDTableStaking.NodeOperator) \u0026FlowIDTableStaking.NodeStaker\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n // borrow a reference to the node object\n self.stakerRef = acct.storage.borrow\u003cauth(FlowIDTableStaking.NodeOperator) \u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)\n ?? panic(\"Could not borrow reference to staking admin\")\n }\n\n execute {\n self.stakerRef.updateNetworkingAddress(newAddress)\n }\n}\n", - "arguments": [ - { - "type": "String", - "name": "address", - "label": "Address", - "sampleValues": [ - { - "value": "flow-node.test:3569", - "type": "String" - } - ] - } - ], - "network": "mainnet", - "hash": "6a6bda6e2933c6e323ce9af9472d2397db70336f538bd36eb69d18604317c535" + "hash": "038382a947fa96bf2f4dfe5aa9b4b2abee1ef0975955175e80cf911c3edf4b61" }, { "id": "SCO.01", diff --git a/lib/go/templates/manifest.testnet.json b/lib/go/templates/manifest.testnet.json index 61a118e99..b14df0391 100755 --- a/lib/go/templates/manifest.testnet.json +++ b/lib/go/templates/manifest.testnet.json @@ -2,164 +2,777 @@ "network": "testnet", "templates": [ { - "id": "TH.01", - "name": "Withdraw Unlocked FLOW", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"The primary user account does not have an associated locked account\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "id": "FA.01", + "name": "Create Account", + "source": "import Crypto\n\ntransaction(publicKeys: [Crypto.KeyListEntry]) {\n\tprepare(signer: AuthAccount) {\n\t\tlet account = AuthAccount(payer: signer)\n\n\t\t// add all the keys to the account\n\t\tfor key in publicKeys {\n\t\t\taccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n\t\t}\n\t}\n}", "arguments": [ { - "type": "UFix64", - "name": "amount", - "label": "Amount", + "type": "[Crypto.KeyListEntry]", + "name": "publicKeys", + "label": "Public Keys", "sampleValues": [ { - "value": "92233720368.54775808", - "type": "UFix64" + "value": [ + { + "value": { + "id": "I.Crypto.Crypto.KeyListEntry", + "fields": [ + { + "value": { + "value": "1000", + "type": "Int" + }, + "name": "keyIndex" + }, + { + "value": { + "value": { + "id": "PublicKey", + "fields": [ + { + "value": { + "value": [ + { + "value": "97", + "type": "UInt8" + }, + { + "value": "12", + "type": "UInt8" + }, + { + "value": "124", + "type": "UInt8" + }, + { + "value": "219", + "type": "UInt8" + }, + { + "value": "204", + "type": "UInt8" + }, + { + "value": "59", + "type": "UInt8" + }, + { + "value": "7", + "type": "UInt8" + }, + { + "value": "91", + "type": "UInt8" + }, + { + "value": "97", + "type": "UInt8" + }, + { + "value": "129", + "type": "UInt8" + }, + { + "value": "185", + "type": "UInt8" + }, + { + "value": "79", + "type": "UInt8" + }, + { + "value": "239", + "type": "UInt8" + }, + { + "value": "14", + "type": "UInt8" + }, + { + "value": "225", + "type": "UInt8" + }, + { + "value": "138", + "type": "UInt8" + }, + { + "value": "73", + "type": "UInt8" + }, + { + "value": "165", + "type": "UInt8" + }, + { + "value": "97", + "type": "UInt8" + }, + { + "value": "50", + "type": "UInt8" + }, + { + "value": "130", + "type": "UInt8" + }, + { + "value": "75", + "type": "UInt8" + }, + { + "value": "20", + "type": "UInt8" + }, + { + "value": "18", + "type": "UInt8" + }, + { + "value": "65", + "type": "UInt8" + }, + { + "value": "93", + "type": "UInt8" + }, + { + "value": "134", + "type": "UInt8" + }, + { + "value": "219", + "type": "UInt8" + }, + { + "value": "149", + "type": "UInt8" + }, + { + "value": "255", + "type": "UInt8" + }, + { + "value": "224", + "type": "UInt8" + }, + { + "value": "164", + "type": "UInt8" + }, + { + "value": "11", + "type": "UInt8" + }, + { + "value": "117", + "type": "UInt8" + }, + { + "value": "167", + "type": "UInt8" + }, + { + "value": "23", + "type": "UInt8" + }, + { + "value": "13", + "type": "UInt8" + }, + { + "value": "229", + "type": "UInt8" + }, + { + "value": "66", + "type": "UInt8" + }, + { + "value": "42", + "type": "UInt8" + }, + { + "value": "182", + "type": "UInt8" + }, + { + "value": "239", + "type": "UInt8" + }, + { + "value": "41", + "type": "UInt8" + }, + { + "value": "49", + "type": "UInt8" + }, + { + "value": "164", + "type": "UInt8" + }, + { + "value": "6", + "type": "UInt8" + }, + { + "value": "195", + "type": "UInt8" + }, + { + "value": "226", + "type": "UInt8" + }, + { + "value": "122", + "type": "UInt8" + }, + { + "value": "138", + "type": "UInt8" + }, + { + "value": "105", + "type": "UInt8" + }, + { + "value": "221", + "type": "UInt8" + }, + { + "value": "9", + "type": "UInt8" + }, + { + "value": "138", + "type": "UInt8" + }, + { + "value": "217", + "type": "UInt8" + }, + { + "value": "173", + "type": "UInt8" + }, + { + "value": "11", + "type": "UInt8" + }, + { + "value": "177", + "type": "UInt8" + }, + { + "value": "59", + "type": "UInt8" + }, + { + "value": "116", + "type": "UInt8" + }, + { + "value": "136", + "type": "UInt8" + }, + { + "value": "64", + "type": "UInt8" + }, + { + "value": "203", + "type": "UInt8" + }, + { + "value": "230", + "type": "UInt8" + } + ], + "type": "Array" + }, + "name": "publicKey" + }, + { + "value": { + "value": { + "id": "SignatureAlgorithm", + "fields": [ + { + "value": { + "value": "1", + "type": "UInt8" + }, + "name": "rawValue" + } + ] + }, + "type": "Enum" + }, + "name": "signatureAlgorithm" + } + ] + }, + "type": "Struct" + }, + "name": "publicKey" + }, + { + "value": { + "value": { + "id": "HashAlgorithm", + "fields": [ + { + "value": { + "value": "3", + "type": "UInt8" + }, + "name": "rawValue" + } + ] + }, + "type": "Enum" + }, + "name": "hashAlgorithm" + }, + { + "value": { + "value": "1000.00000000", + "type": "UFix64" + }, + "name": "weight" + }, + { + "value": { + "value": false, + "type": "Bool" + }, + "name": "isRevoked" + } + ] + }, + "type": "Struct" + } + ], + "type": "Array" } ] } ], "network": "testnet", - "hash": "094798e93daeacaa9ff262486a3683ec5a5e2204407e7d00bc3416fbf3efa3b1" + "hash": "fcc2f30bfbe5e5aa3b713bd7ccb044764dce93313aa5231339679e37015c5276" }, { - "id": "TH.02", - "name": "Deposit Unlocked FLOW", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"The primary user account does not have an associated locked account\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", + "id": "FA.02", + "name": "Add Key", + "source": "import Crypto\n\ntransaction(key: Crypto.KeyListEntry) {\n\tprepare(signer: AuthAccount) {\n\t\tsigner.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n\t}\n}", "arguments": [ { - "type": "UFix64", - "name": "amount", - "label": "Amount", + "type": "Crypto.KeyListEntry", + "name": "key", + "label": "Public Key", "sampleValues": [ { - "value": "92233720368.54775808", - "type": "UFix64" + "value": { + "id": "I.Crypto.Crypto.KeyListEntry", + "fields": [ + { + "value": { + "value": "1000", + "type": "Int" + }, + "name": "keyIndex" + }, + { + "value": { + "value": { + "id": "PublicKey", + "fields": [ + { + "value": { + "value": [ + { + "value": "97", + "type": "UInt8" + }, + { + "value": "12", + "type": "UInt8" + }, + { + "value": "124", + "type": "UInt8" + }, + { + "value": "219", + "type": "UInt8" + }, + { + "value": "204", + "type": "UInt8" + }, + { + "value": "59", + "type": "UInt8" + }, + { + "value": "7", + "type": "UInt8" + }, + { + "value": "91", + "type": "UInt8" + }, + { + "value": "97", + "type": "UInt8" + }, + { + "value": "129", + "type": "UInt8" + }, + { + "value": "185", + "type": "UInt8" + }, + { + "value": "79", + "type": "UInt8" + }, + { + "value": "239", + "type": "UInt8" + }, + { + "value": "14", + "type": "UInt8" + }, + { + "value": "225", + "type": "UInt8" + }, + { + "value": "138", + "type": "UInt8" + }, + { + "value": "73", + "type": "UInt8" + }, + { + "value": "165", + "type": "UInt8" + }, + { + "value": "97", + "type": "UInt8" + }, + { + "value": "50", + "type": "UInt8" + }, + { + "value": "130", + "type": "UInt8" + }, + { + "value": "75", + "type": "UInt8" + }, + { + "value": "20", + "type": "UInt8" + }, + { + "value": "18", + "type": "UInt8" + }, + { + "value": "65", + "type": "UInt8" + }, + { + "value": "93", + "type": "UInt8" + }, + { + "value": "134", + "type": "UInt8" + }, + { + "value": "219", + "type": "UInt8" + }, + { + "value": "149", + "type": "UInt8" + }, + { + "value": "255", + "type": "UInt8" + }, + { + "value": "224", + "type": "UInt8" + }, + { + "value": "164", + "type": "UInt8" + }, + { + "value": "11", + "type": "UInt8" + }, + { + "value": "117", + "type": "UInt8" + }, + { + "value": "167", + "type": "UInt8" + }, + { + "value": "23", + "type": "UInt8" + }, + { + "value": "13", + "type": "UInt8" + }, + { + "value": "229", + "type": "UInt8" + }, + { + "value": "66", + "type": "UInt8" + }, + { + "value": "42", + "type": "UInt8" + }, + { + "value": "182", + "type": "UInt8" + }, + { + "value": "239", + "type": "UInt8" + }, + { + "value": "41", + "type": "UInt8" + }, + { + "value": "49", + "type": "UInt8" + }, + { + "value": "164", + "type": "UInt8" + }, + { + "value": "6", + "type": "UInt8" + }, + { + "value": "195", + "type": "UInt8" + }, + { + "value": "226", + "type": "UInt8" + }, + { + "value": "122", + "type": "UInt8" + }, + { + "value": "138", + "type": "UInt8" + }, + { + "value": "105", + "type": "UInt8" + }, + { + "value": "221", + "type": "UInt8" + }, + { + "value": "9", + "type": "UInt8" + }, + { + "value": "138", + "type": "UInt8" + }, + { + "value": "217", + "type": "UInt8" + }, + { + "value": "173", + "type": "UInt8" + }, + { + "value": "11", + "type": "UInt8" + }, + { + "value": "177", + "type": "UInt8" + }, + { + "value": "59", + "type": "UInt8" + }, + { + "value": "116", + "type": "UInt8" + }, + { + "value": "136", + "type": "UInt8" + }, + { + "value": "64", + "type": "UInt8" + }, + { + "value": "203", + "type": "UInt8" + }, + { + "value": "230", + "type": "UInt8" + } + ], + "type": "Array" + }, + "name": "publicKey" + }, + { + "value": { + "value": { + "id": "SignatureAlgorithm", + "fields": [ + { + "value": { + "value": "1", + "type": "UInt8" + }, + "name": "rawValue" + } + ] + }, + "type": "Enum" + }, + "name": "signatureAlgorithm" + } + ] + }, + "type": "Struct" + }, + "name": "publicKey" + }, + { + "value": { + "value": { + "id": "HashAlgorithm", + "fields": [ + { + "value": { + "value": "3", + "type": "UInt8" + }, + "name": "rawValue" + } + ] + }, + "type": "Enum" + }, + "name": "hashAlgorithm" + }, + { + "value": { + "value": "1000.00000000", + "type": "UFix64" + }, + "name": "weight" + }, + { + "value": { + "value": false, + "type": "Bool" + }, + "name": "isRevoked" + } + ] + }, + "type": "Struct" } ] } ], "network": "testnet", - "hash": "17ffcd60667893674d8d4044bdd8232959dc8b694df1dd88d1b9c5443352f253" + "hash": "bc3f3d521f71d87e4c7389b2dbf7678b95b92fc3393063849121df4c1c851e0a" }, { - "id": "TH.06", - "name": "Register Node", - "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow ref to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let nodeInfo = StakingProxy.NodeInfo(\n nodeID: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey\n )\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n \n }\n}\n", + "id": "FA.03", + "name": "Remove Key", + "source": "transaction(keyIndex: Int) {\n\tprepare(signer: AuthAccount) {\n\t\tsigner.keys.revoke(keyIndex: keyIndex)\n\t}\n}", "arguments": [ { - "type": "String", - "name": "id", - "label": "Node ID", - "sampleValues": [ - { - "value": "88549335e1db7b5b46c2ad58ddb70b7a45e770cc5fe779650ba26f10e6bae5e6", - "type": "String" - } - ] - }, - { - "type": "UInt8", - "name": "role", - "label": "Node Role", + "type": "Int", + "name": "keyIndex", + "label": "Key Index", "sampleValues": [ { "value": "1", - "type": "UInt8" - } - ] - }, - { - "type": "String", - "name": "networkingAddress", - "label": "Networking Address", - "sampleValues": [ - { - "value": "flow-node.test:3569", - "type": "String" - } - ] - }, - { - "type": "String", - "name": "networkingKey", - "label": "Networking Key", - "sampleValues": [ - { - "value": "1348307bc77c688e80049de9d081aa09755da33e6997605fa059db2144fc85e560cbe6f7da8d74b453f5916618cb8fd392c2db856f3e78221dc68db1b1d914e4", - "type": "String" - } - ] - }, - { - "type": "String", - "name": "stakingKey", - "label": "Staking Key", - "sampleValues": [ - { - "value": "9e9ae0d645fd5fd9050792e0b0daa82cc1686d9133afa0f81a784b375c42ae48567d1545e7a9e1965f2c1a32f73cf8575ebb7a967f6e4d104d2df78eb8be409135d12da0499b8a00771f642c1b9c49397f22b440439f036c3bdee82f5309dab3", - "type": "String" - } - ] - }, - { - "type": "UFix64", - "name": "amount", - "label": "Amount", - "sampleValues": [ - { - "value": "92233720368.54775808", - "type": "UFix64" + "type": "Int" } ] } ], "network": "testnet", - "hash": "af4a5bee843d4c45c4aaff6f4d047b86c00f13c53cf82d11d7fbe59245927914" + "hash": "ec5dcc5918a24734f3ddd7d687b6138e33d2e2a7ab0e0d815f4b873a7b762ac5" }, { - "id": "TH.08", - "name": "Stake New Locked FLOW", - "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.stakeNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.stakeNewTokens(amount: amount)\n \n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "id": "FT.01", + "name": "Setup Fungible Token Vault", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FungibleTokenMetadataViews from 0x9a0766d93b6608b7\n\n/// This transaction is what an account would run\n/// to set itself up to manage fungible tokens. This function\n/// uses views to know where to set up the vault\n/// in storage and to create the empty vault.\n\ntransaction(contractAddress: Address, contractName: String) {\n\n prepare(signer: auth(SaveValue, Capabilities) \u0026Account) {\n // Borrow a reference to the vault stored on the passed account at the passed publicPath\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026FungibleToken\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the fungible token contract\")\n\n // Use that reference to retrieve the FTView \n let ftVaultData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cFungibleTokenMetadataViews.FTVaultData\u003e()) as! FungibleTokenMetadataViews.FTVaultData?\n ?? panic(\"Could not resolve the FTVaultData view for the given Fungible token contract\")\n\n // Create a new empty vault using the createEmptyVault function inside the FTVaultData\n let emptyVault \u003c-ftVaultData.createEmptyVault()\n\n // Save it to the account\n signer.storage.save(\u003c-emptyVault, to: ftVaultData.storagePath)\n \n // Create a public capability for the vault which includes the .Resolver interface\n let vaultCap = signer.capabilities.storage.issue\u003c\u0026{FungibleToken.Vault}\u003e(ftVaultData.storagePath)\n signer.capabilities.publish(vaultCap, at: ftVaultData.metadataPath)\n\n // Create a public capability for the vault exposing the receiver interface\n let receiverCap = signer.capabilities.storage.issue\u003c\u0026{FungibleToken.Receiver}\u003e(ftVaultData.storagePath)\n signer.capabilities.publish(receiverCap, at: ftVaultData.receiverPath)\n\n }\n}\n ", "arguments": [ { - "type": "UFix64", - "name": "amount", - "label": "Amount", + "type": "Address", + "name": "contractAddress", + "label": "FT Contract Address", "sampleValues": [ { - "value": "92233720368.54775808", - "type": "UFix64" + "value": "0x8c5303eaa26202d6", + "type": "Address" } ] - } - ], - "network": "testnet", - "hash": "0de2be29b4e3c0e672945f56e351bfa627f9b835bbebc24d69de3d6b914b0069" - }, - { - "id": "TH.09", - "name": "Re-stake Unstaked FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeUnstakedTokens(amount: amount)\n }\n}\n", - "arguments": [ + }, { - "type": "UFix64", - "name": "amount", - "label": "Amount", + "type": "String", + "name": "contractName", + "label": "FT Contract Name", "sampleValues": [ { - "value": "92233720368.54775808", - "type": "UFix64" + "value": "FiatToken", + "type": "String" } ] } ], "network": "testnet", - "hash": "9b2eed9099742a2f002df6941117df03c68f113c62b6b27f0150cb00ef97f21f" + "hash": "61eb858316b62fedbec6a9d155076a4f394315edaa91a6335b267d2efbea255e" }, { - "id": "TH.10", - "name": "Re-stake Rewarded FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.stakeRewardedTokens(amount: amount)\n }\n}\n", + "id": "FT.02", + "name": "Transfer Fungible Token", + "source": "import FungibleToken from 0x9a0766d93b6608b7\n\n/// Can pass in any storage path and receiver path instead of just the default.\n/// This lets you choose the token you want to send as well the capability you want to send it to.\n///\n/// Any token path can be passed as an argument here, so wallets should\n/// should check argument values to make sure the intended token path is passed in\n///\ntransaction(amount: UFix64, to: Address, senderPath: StoragePath, receiverPath: PublicPath) {\n\n // The Vault resource that holds the tokens that are being transferred\n let tempVault: @{FungibleToken.Vault}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Get a reference to the signer's stored vault\n let vaultRef = signer.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026{FungibleToken.Provider}\u003e(from: senderPath)\n\t\t\t?? panic(\"Could not borrow reference to the owner's Vault!\")\n\n self.tempVault \u003c- vaultRef.withdraw(amount: amount)\n }\n\n execute {\n let recipient = getAccount(to)\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{FungibleToken.Receiver}\u003e(receiverPath)\n ?? panic(\"Could not borrow reference to the recipient's Receiver!\")\n\n // Transfer tokens from the signer's stored vault to the receiver capability\n receiverRef.deposit(from: \u003c-self.tempVault)\n }\n}", "arguments": [ { "type": "UFix64", @@ -171,88 +784,59 @@ "type": "UFix64" } ] - } - ], - "network": "testnet", - "hash": "9c11d765716accd6ccccaa71826efd030eaec491cd288f12b3578c30406d02d7" - }, - { - "id": "TH.11", - "name": "Request Unstake of FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.requestUnstaking(amount: amount)\n }\n}\n", - "arguments": [ + }, { - "type": "UFix64", - "name": "amount", - "label": "Amount", + "type": "Address", + "name": "to", + "label": "Recipient", "sampleValues": [ { - "value": "92233720368.54775808", - "type": "UFix64" + "value": "0x8c5303eaa26202d6", + "type": "Address" } ] - } - ], - "network": "testnet", - "hash": "8a16eb440a6f2b0ba055c988195d18f1ac0ae87c9c47b6e3148295783a2edca0" - }, - { - "id": "TH.12", - "name": "Unstake All FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction() {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.unstakeAll()\n }\n}\n", - "arguments": [], - "network": "testnet", - "hash": "4e077e9ccdb995324823e202333ab3b31c52a773a3b33db070e9b1c3db8f24d4" - }, - { - "id": "TH.13", - "name": "Withdraw Unstaked FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", - "arguments": [ + }, { - "type": "UFix64", - "name": "amount", - "label": "Amount", + "type": "StoragePath", + "name": "senderPath", + "label": "Sender's Collection Path", "sampleValues": [ { - "value": "92233720368.54775808", - "type": "UFix64" + "value": { + "domain": "storage", + "identifier": "samplePathIdentifier" + }, + "type": "Path" } ] - } - ], - "network": "testnet", - "hash": "f28537c488e3967c414acdc8c853579d7cde872dbc867418b71b6708d24654c9" - }, - { - "id": "TH.14", - "name": "Withdraw Rewarded FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowStaker()\n\n stakerProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", - "arguments": [ + }, { - "type": "UFix64", - "name": "amount", - "label": "Amount", + "type": "PublicPath", + "name": "receiverPath", + "label": "Recipient's Receiver Path", "sampleValues": [ { - "value": "92233720368.54775808", - "type": "UFix64" + "value": { + "domain": "storage", + "identifier": "samplePathIdentifier" + }, + "type": "Path" } ] } ], "network": "testnet", - "hash": "a48cf76e38ef6818acfb35123a68b138caa66a1f27f2ee07c932ba74d6eca26e" + "hash": "fbe5032968d55b004d4f38e40ccaeff0d98140d21276995144469899bff56735" }, { - "id": "TH.16", - "name": "Register Operator Node", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations) \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).capabilities\n .borrow\u003c\u0026StakingProxy.NodeStakerProxyHolder\u003e(\n StakingProxy.NodeOperatorCapabilityPublicPath\n )\n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", + "id": "NFT.01", + "name": "Setup NFT Collection", + "source": "/// This transaction is what an account would run\n/// to set itself up to receive NFTs. This function\n/// uses views to know where to set up the collection\n/// in storage and to create the empty collection.\n\nimport NonFungibleToken from 0x631e88ae7f1d7c20\nimport MetadataViews from 0x631e88ae7f1d7c20\n\ntransaction(contractAddress: Address, contractName: String) {\n\n prepare(signer: auth(IssueStorageCapabilityController, PublishCapability, SaveValue) \u0026Account) {\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026NonFungibleToken\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n let collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n // Create a new empty collections\n let emptyCollection \u003c- collectionData.createEmptyCollection()\n\n // save it to the account\n signer.storage.save(\u003c-emptyCollection, to: collectionData.storagePath)\n\n // create a public capability for the collection\n let collectionCap = signer.capabilities.storage.issue\u003c\u0026{NonFungibleToken.Collection}\u003e(\n collectionData.storagePath\n )\n signer.capabilities.publish(collectionCap, at: collectionData.publicPath)\n }\n}\n", "arguments": [ { "type": "Address", - "name": "address", - "label": "Operator Address", + "name": "contractAddress", + "label": "NFT Contract Address", "sampleValues": [ { "value": "0x8c5303eaa26202d6", @@ -262,145 +846,82 @@ }, { "type": "String", - "name": "id", - "label": "Node ID", + "name": "contractName", + "label": "NFT Contract Name", "sampleValues": [ { - "value": "88549335e1db7b5b46c2ad58ddb70b7a45e770cc5fe779650ba26f10e6bae5e6", + "value": "TopShot", "type": "String" } ] - }, - { - "type": "UFix64", - "name": "amount", - "label": "Amount", - "sampleValues": [ - { - "value": "92233720368.54775808", - "type": "UFix64" - } - ] } ], "network": "testnet", - "hash": "9768a26085d718e69939f898b33cbe17cdcc8ef33d6c8d7ffda057fdced8324f" + "hash": "98966f4ef503ab75eeebe2d24d2dd3d2fb92d7d945db5bc76f79a6c60070bd33" }, { - "id": "TH.17", - "name": "Register Delegator", - "source": "import FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\nimport FlowIDTableStaking from 0x9eca2b38b18b5dfe\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(id: String, amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n self.holderRef.createNodeDelegator(nodeID: id)\n\n let stakerProxy = self.holderRef.borrowDelegator()\n\n stakerProxy.delegateNewTokens(amount: amount - FlowIDTableStaking.getDelegatorMinimumStakeRequirement())\n\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", + "id": "NFT.02", + "name": "Transfer NFT", + "source": "/// This transaction is for transferring an ExampleNFT from one account to another\n\nimport \"ViewResolver\"\nimport \"MetadataViews\"\nimport 0x631e88ae7f1d7c20\nimport \"ExampleNFT\"\n\ntransaction(contractAddress: Address, contractName: String, recipient: Address, withdrawID: UInt64) {\n\n /// Reference to the withdrawer's collection\n let withdrawRef: auth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\n\n /// Reference of the collection to deposit the NFT to\n let receiverRef: \u0026{NonFungibleToken.Receiver}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // borrow the NFT contract as ViewResolver reference\n let viewResolver = getAccount(contractAddress).contracts.borrow\u003c\u0026ViewResolver\u003e(name: contractName)\n ?? panic(\"Could not borrow ViewResolver of given name from address\")\n\n // resolve the NFT collection data from the NFT contract\n let collectionData = viewResolver.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"ViewResolver does not resolve NFTCollectionData view\")\n\n // borrow a reference to the signer's NFT collection\n self.withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: collectionData.storagePath\n ) ?? panic(\"Account does not store an object at the specified path\")\n\n // get the recipients public account object\n let recipient = getAccount(recipient)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(collectionData.publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n self.receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n }\n\n execute {\n\n let nft \u003c- self.withdrawRef.withdraw(withdrawID: withdrawID)\n self.receiverRef.deposit(token: \u003c-nft)\n\n }\n\n post {\n !self.withdrawRef.getIDs().contains(withdrawID): \"Original owner should not have the NFT anymore\"\n }\n}\n", "arguments": [ { - "type": "String", + "type": "UInt64", "name": "id", - "label": "Node ID", + "label": "NFT ID to Transfer", "sampleValues": [ { - "value": "88549335e1db7b5b46c2ad58ddb70b7a45e770cc5fe779650ba26f10e6bae5e6", - "type": "String" + "value": "10", + "type": "UInt64" } ] }, { - "type": "UFix64", - "name": "amount", - "label": "Amount", - "sampleValues": [ - { - "value": "92233720368.54775808", - "type": "UFix64" - } - ] - } - ], - "network": "testnet", - "hash": "b1ea953e7aed9e212f2f0e855e9122d3e1c2126c2b1ce318ac5d05c2bc3afbea" - }, - { - "id": "TH.19", - "name": "Delegate New Locked FLOW", - "source": "import FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault reference\")\n }\n\n execute {\n let stakerProxy = self.holderRef.borrowDelegator()\n\n let lockedBalance = self.holderRef.getLockedAccountBalance()\n\n if amount \u003c= lockedBalance {\n\n stakerProxy.delegateNewTokens(amount: amount)\n\n } else if ((amount - lockedBalance) \u003c= self.vaultRef.balance) {\n\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount - lockedBalance))\n\n stakerProxy.delegateNewTokens(amount: amount)\n } else {\n panic(\"Not enough tokens to stake!\")\n }\n }\n}\n", - "arguments": [ - { - "type": "UFix64", - "name": "amount", - "label": "Amount", - "sampleValues": [ - { - "value": "92233720368.54775808", - "type": "UFix64" - } - ] - } - ], - "network": "testnet", - "hash": "f39299420444e21759568d0b263b71826f17e406e2c0270840db2a4dad3b33d7" - }, - { - "id": "TH.20", - "name": "Re-delegate Unstaked FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n\n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateUnstakedTokens(amount: amount)\n }\n}\n", - "arguments": [ - { - "type": "UFix64", - "name": "amount", - "label": "Amount", + "type": "Address", + "name": "to", + "label": "Recipient", "sampleValues": [ { - "value": "92233720368.54775808", - "type": "UFix64" + "value": "0x8c5303eaa26202d6", + "type": "Address" } ] - } - ], - "network": "testnet", - "hash": "472c8c222dbeacd505e2db7fb20da0a709b45605e0a169ec8d4448c99fdfae95" - }, - { - "id": "TH.21", - "name": "Re-delegate Rewarded FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.delegateRewardedTokens(amount: amount)\n }\n}\n", - "arguments": [ + }, { - "type": "UFix64", - "name": "amount", - "label": "Amount", + "type": "StoragePath", + "name": "senderPath", + "label": "Sender's Collection Path", "sampleValues": [ { - "value": "92233720368.54775808", - "type": "UFix64" + "value": { + "domain": "storage", + "identifier": "samplePathIdentifier" + }, + "type": "Path" } ] - } - ], - "network": "testnet", - "hash": "e618fbfde5089f5a0ab2fa05f908f65290296a404d23e9de1f0361c28e0e16fc" - }, - { - "id": "TH.22", - "name": "Unstake Delegated FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.requestUnstaking(amount: amount)\n }\n}\n", - "arguments": [ + }, { - "type": "UFix64", - "name": "amount", - "label": "Amount", + "type": "PublicPath", + "name": "receiverPath", + "label": "Recipient's Receiver Path", "sampleValues": [ { - "value": "92233720368.54775808", - "type": "UFix64" + "value": { + "domain": "storage", + "identifier": "samplePathIdentifier" + }, + "type": "Path" } ] } ], "network": "testnet", - "hash": "d7bc6c6cd0ecf6a1e327ce1a8b95585fd624ca6066c896ae14b58c4be85fc10e" + "hash": "cbbf41e79e3c8e8bea325427e15c2c098441da45cff0ab95131848ec8aefa0cd" }, { - "id": "TH.23", - "name": "Withdraw Unstaked FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n let nodeDelegatorProxy: LockedTokens.LockedNodeDelegatorProxy\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n let holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"TokenHolder is not saved at specified path\")\n \n self.nodeDelegatorProxy = holderRef.borrowDelegator()\n }\n\n execute {\n self.nodeDelegatorProxy.withdrawUnstakedTokens(amount: amount)\n }\n}\n", + "id": "TH.01", + "name": "Withdraw Unlocked FLOW", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"The primary user account does not have an associated locked account\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -415,12 +936,12 @@ } ], "network": "testnet", - "hash": "b60067583b91ab8be3e76619f93985b4c1cdc03bc2c310e79e8065f84e65b1c6" + "hash": "094798e93daeacaa9ff262486a3683ec5a5e2204407e7d00bc3416fbf3efa3b1" }, { - "id": "TH.24", - "name": "Withdraw Rewarded FLOW", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport FlowToken from 0x7e60df042a9c0868\nimport FungibleToken from 0x9a0766d93b6608b7\n\ntransaction(amount: UFix64) {\n\n let holderRef: auth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\n let vaultRef: \u0026FlowToken.Vault\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003cauth(LockedTokens.TokenOperations, FungibleToken.Withdraw) \u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n\n self.vaultRef = account.storage.borrow\u003c\u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow reference to FlowToken value\")\n }\n\n execute {\n let delegatorProxy = self.holderRef.borrowDelegator()\n\n delegatorProxy.withdrawRewardedTokens(amount: amount)\n self.vaultRef.deposit(from: \u003c-self.holderRef.withdraw(amount: amount))\n }\n}\n", + "id": "TH.02", + "name": "Deposit Unlocked FLOW", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FlowToken from 0x7e60df042a9c0868\nimport LockedTokens from 0x95e019a17d0e23d7\n\ntransaction(amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n let vaultRef: auth(FungibleToken.Withdraw) \u0026FlowToken.Vault\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n self.holderRef = acct.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"The primary user account does not have an associated locked account\")\n\n self.vaultRef = acct.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026FlowToken.Vault\u003e(from: /storage/flowTokenVault)\n ?? panic(\"Could not borrow flow token vault ref\")\n }\n\n execute {\n self.holderRef.deposit(from: \u003c-self.vaultRef.withdraw(amount: amount))\n }\n}\n", "arguments": [ { "type": "UFix64", @@ -435,27 +956,7 @@ } ], "network": "testnet", - "hash": "efc7c6866b01b89cb2f1436e525b273deeca5f8e765ec823889656d5f46ccd31" - }, - { - "id": "TH.25", - "name": "Update Networking Address", - "source": "import FlowIDTableStaking from 0x9eca2b38b18b5dfe\n\ntransaction(newAddress: String) {\n\n // Local variable for a reference to the node object\n let stakerRef: auth(FlowIDTableStaking.NodeOperator) \u0026FlowIDTableStaking.NodeStaker\n\n prepare(acct: auth(BorrowValue) \u0026Account) {\n // borrow a reference to the node object\n self.stakerRef = acct.storage.borrow\u003cauth(FlowIDTableStaking.NodeOperator) \u0026FlowIDTableStaking.NodeStaker\u003e(from: FlowIDTableStaking.NodeStakerStoragePath)\n ?? panic(\"Could not borrow reference to staking admin\")\n }\n\n execute {\n self.stakerRef.updateNetworkingAddress(newAddress)\n }\n}\n", - "arguments": [ - { - "type": "String", - "name": "address", - "label": "Address", - "sampleValues": [ - { - "value": "flow-node.test:3569", - "type": "String" - } - ] - } - ], - "network": "testnet", - "hash": "876e4967516a8e8635b2f0818fcf25583c50105e41093d7ba62c3e408091cfb3" + "hash": "17ffcd60667893674d8d4044bdd8232959dc8b694df1dd88d1b9c5443352f253" }, { "id": "SCO.01", diff --git a/lib/go/templates/service_templates.go b/lib/go/templates/service_templates.go index 8dc2463b1..e07415512 100644 --- a/lib/go/templates/service_templates.go +++ b/lib/go/templates/service_templates.go @@ -71,24 +71,16 @@ func GenerateSetupFTAccountFromAddressScript(env Environment) []byte { return ft_templates.GenerateSetupAccountFromAddressScript(env.FungibleTokenAddress, env.FungibleTokenMetadataViewsAddress) } -func GenerateTransferGenericVaultWithPathsScript(env Environment) []byte { - return ft_templates.GenerateTransferGenericVaultWithPathsScript(env.FungibleTokenAddress) -} - -func GenerateTransferGenericVaultWithAddressScript(env Environment) []byte { - return ft_templates.GenerateTransferGenericVaultWithAddressScript(env.FungibleTokenAddress, env.FungibleTokenMetadataViewsAddress) +func GenerateTransferGenericVaultScript(env Environment) []byte { + return ft_templates.GenerateTransferGenericVaultScript(env.FungibleTokenAddress) } func GenerateSetupNFTAccountFromAddressScript(env Environment) []byte { return nft_templates.GenerateSetupAccountFromAddressScript(env.NonFungibleTokenAddress, env.MetadataViewsAddress) } -func GenerateTransferGenericNFTWithPathsScript(env Environment) []byte { - return nft_templates.GenerateTransferGenericNFTWithPathsScript(env.NonFungibleTokenAddress) -} - -func GenerateTransferGenericNFTWithAddressScript(env Environment) []byte { - return nft_templates.GenerateTransferGenericNFTWithAddressScript(env.NonFungibleTokenAddress, env.MetadataViewsAddress) +func GenerateTransferGenericNFTScript(env Environment) []byte { + return nft_templates.GenerateTransferGenericNFTScript(env.NonFungibleTokenAddress) } // FlowToken Templates diff --git a/lib/go/templates/templates.go b/lib/go/templates/templates.go index 84cff4f97..261b1afef 100644 --- a/lib/go/templates/templates.go +++ b/lib/go/templates/templates.go @@ -14,38 +14,43 @@ import ( ) const ( - placeholderFungibleTokenAddress = "\"FungibleToken\"" - OLD_placeholderFungibleTokenAddress = "0xFUNGIBLETOKENADDRESS" - placeholderFlowTokenAddress = "\"FlowToken\"" - OLD_placeholderFlowTokenAddress = "0xFLOWTOKENADDRESS" - placeholderIDTableAddress = "\"FlowIDTableStaking\"" - placeholderLockedTokensAddress = "\"LockedTokens\"" - OLD_placeholderLockedTokensAddress = "0xLOCKEDTOKENADDRESS" - placeholderStakingProxyAddress = "0xSTAKINGPROXYADDRESS" - placeholderQuorumCertificateAddress = "0xQCADDRESS" - placeholderFlowFeesAddress = "0xFLOWFEESADDRESS" - placeholderStorageFeesAddress = "0xFLOWSTORAGEFEESADDRESS" - placeholderServiceAccountAddress = "0xFLOWSERVICEADDRESS" - placeholderDKGAddress = "0xDKGADDRESS" - placeholderEpochAddress = "0xEPOCHADDRESS" - placeholderStakingCollectionAddress = "0xSTAKINGCOLLECTIONADDRESS" - placeholderNodeVersionBeaconAddress = "0xNODEVERSIONBEACONADDRESS" + placeholderFungibleTokenAddress = "\"FungibleToken\"" + OLD_placeholderFungibleTokenAddress = "0xFUNGIBLETOKENADDRESS" + placeholderFlowTokenAddress = "\"FlowToken\"" + OLD_placeholderFlowTokenAddress = "0xFLOWTOKENADDRESS" + placeholderIDTableAddress = "\"FlowIDTableStaking\"" + placeholderLockedTokensAddress = "\"LockedTokens\"" + OLD_placeholderLockedTokensAddress = "0xLOCKEDTOKENADDRESS" + placeholderStakingProxyAddress = "0xSTAKINGPROXYADDRESS" + placeholderQuorumCertificateAddress = "0xQCADDRESS" + placeholderFlowFeesAddress = "0xFLOWFEESADDRESS" + placeholderStorageFeesAddress = "0xFLOWSTORAGEFEESADDRESS" + placeholderServiceAccountAddress = "0xFLOWSERVICEADDRESS" + placeholderDKGAddress = "0xDKGADDRESS" + placeholderEpochAddress = "0xEPOCHADDRESS" + placeholderStakingCollectionAddress = "0xSTAKINGCOLLECTIONADDRESS" + placeholderNodeVersionBeaconAddress = "0xNODEVERSIONBEACONADDRESS" + placeholderRandomBeaconHistoryAddress = "0xRANDOMBEACONHISTORYADDRESS" ) type Environment struct { - Network string - FungibleTokenAddress string - FlowTokenAddress string - IDTableAddress string - LockedTokensAddress string - StakingProxyAddress string - QuorumCertificateAddress string - DkgAddress string - EpochAddress string - StorageFeesAddress string - FlowFeesAddress string - ServiceAccountAddress string - NodeVersionBeaconAddress string + Network string + FungibleTokenAddress string + NonFungibleTokenAddress string + MetadataViewsAddress string + FungibleTokenMetadataViewsAddress string + FlowTokenAddress string + IDTableAddress string + LockedTokensAddress string + StakingProxyAddress string + QuorumCertificateAddress string + DkgAddress string + EpochAddress string + StorageFeesAddress string + FlowFeesAddress string + ServiceAccountAddress string + NodeVersionBeaconAddress string + RandomBeaconHistoryAddress string } func withHexPrefix(address string) string { @@ -158,5 +163,11 @@ func ReplaceAddresses(code string, env Environment) string { withHexPrefix(env.NodeVersionBeaconAddress), ) + code = strings.ReplaceAll( + code, + placeholderRandomBeaconHistoryAddress, + withHexPrefix(env.RandomBeaconHistoryAddress), + ) + return code } diff --git a/transactions/accounts/add_key.cdc b/transactions/accounts/add_key.cdc index 24b86e1ea..8e69de7cf 100644 --- a/transactions/accounts/add_key.cdc +++ b/transactions/accounts/add_key.cdc @@ -1,18 +1,7 @@ import Crypto -transaction(key: String, signatureAlgorithm: UInt8, hashAlgorithm: UInt8, weight: UFix64) { - - prepare(signer: auth(AddKey) &Account) { - pre { - signatureAlgorithm >= 1 && signatureAlgorithm <= 3: "Must provide a signature algorithm raw value that is 1, 2, or 3" - hashAlgorithm >= 1 && hashAlgorithm <= 6: "Must provide a hash algorithm raw value that is between 1 and 6" - weight <= 1000.0: "The key weight must be between 0 and 1000" - } - let publicKey = PublicKey( - publicKey: key.decodeHex(), - signatureAlgorithm: SignatureAlgorithm(rawValue: signatureAlgorithm)! - ) - - signer.keys.add(publicKey: publicKey, hashAlgorithm: HashAlgorithm(rawValue: hashAlgorithm)!, weight: weight) +transaction(key: Crypto.KeyListEntry) { + prepare(signer: AuthAccount) { + signer.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight) } } \ No newline at end of file diff --git a/transactions/accounts/create_new_account.cdc b/transactions/accounts/create_new_account.cdc index 21cc820b6..d2a03a8f0 100644 --- a/transactions/accounts/create_new_account.cdc +++ b/transactions/accounts/create_new_account.cdc @@ -1,20 +1,12 @@ import Crypto -transaction(key: String, signatureAlgorithm: UInt8, hashAlgorithm: UInt8, weight: UFix64) { - prepare(signer: auth(BorrowValue, Storage) &Account) { - pre { - signatureAlgorithm >= 1 && signatureAlgorithm <= 3: "Must provide a signature algorithm raw value that is 1, 2, or 3" - hashAlgorithm >= 1 && hashAlgorithm <= 6: "Must provide a hash algorithm raw value that is between 1 and 6" - weight <= 1000.0: "The key weight must be between 0 and 1000" - } - - let publicKey = PublicKey( - publicKey: key.decodeHex(), - signatureAlgorithm: SignatureAlgorithm(rawValue: signatureAlgorithm)! - ) +transaction(publicKeys: [Crypto.KeyListEntry]) { + prepare(signer: AuthAccount) { + let account = AuthAccount(payer: signer) - let account = Account(payer: signer) - - account.keys.add(publicKey: publicKey, hashAlgorithm: HashAlgorithm(rawValue: hashAlgorithm)!, weight: weight) + // add all the keys to the account + for key in publicKeys { + account.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight) + } } } \ No newline at end of file diff --git a/transactions/accounts/revoke_key.cdc b/transactions/accounts/revoke_key.cdc index 1f0c810ce..9b454ffbc 100644 --- a/transactions/accounts/revoke_key.cdc +++ b/transactions/accounts/revoke_key.cdc @@ -1,9 +1,5 @@ transaction(keyIndex: Int) { - prepare(signer: auth(RevokeKey) &Account) { - if let key = signer.keys.get(keyIndex: keyIndex) { - signer.keys.revoke(keyIndex: keyIndex) - } else { - panic("No key with the given index exists on the authorizer's account") - } + prepare(signer: AuthAccount) { + signer.keys.revoke(keyIndex: keyIndex) } } \ No newline at end of file From b56d319e5c0ffb93a57daad1d5de93d0d7421324 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Mon, 12 Feb 2024 14:44:49 -0600 Subject: [PATCH 084/160] update account transactions to use simple arguments --- lib/go/templates/cmd/manifest/manifest.go | 85 +- lib/go/templates/internal/assets/assets.go | 18 +- lib/go/templates/manifest.mainnet.json | 771 ++----------------- lib/go/templates/manifest.testnet.json | 771 ++----------------- tests/test_account_txs.cdc | 178 +++++ transactions/accounts/add_key.cdc | 17 +- transactions/accounts/create_new_account.cdc | 22 +- transactions/accounts/revoke_key.cdc | 8 +- 8 files changed, 445 insertions(+), 1425 deletions(-) create mode 100644 tests/test_account_txs.cdc diff --git a/lib/go/templates/cmd/manifest/manifest.go b/lib/go/templates/cmd/manifest/manifest.go index 099f6bfe0..a8ce0b8e2 100644 --- a/lib/go/templates/cmd/manifest/manifest.go +++ b/lib/go/templates/cmd/manifest/manifest.go @@ -8,8 +8,6 @@ import ( jsoncdc "github.com/onflow/cadence/encoding/json" "github.com/onflow/cadence/runtime/common" "github.com/onflow/flow-go-sdk" - sdktemplates "github.com/onflow/flow-go-sdk/templates" - "github.com/onflow/flow-go-sdk/test" "github.com/onflow/flow-core-contracts/lib/go/templates" ) @@ -94,14 +92,14 @@ func generateManifest(env templates.Environment) *manifest { panic(err) } - accountKeys := test.AccountKeyGenerator() - sampleFlowAccountKey, _ := accountKeys.NewWithSigner() - publicKeys := make([]cadence.Value, 1) - cadenceAccountKey, err := sdktemplates.AccountKeyToCadenceCryptoKey(sampleFlowAccountKey) - sampleCadenceAccountKey := cadenceValue{cadenceAccountKey} - publicKeys[0] = cadenceAccountKey - cadencePublicKeys := cadence.NewArray(publicKeys) - sampleCadenceAccountKeys := cadenceValue{cadencePublicKeys} + sampleKeyWeightRaw, err := cadence.NewUFix64("1000.0") + if err != nil { + panic(err) + } + sampleKeyWeight := cadenceValue{sampleKeyWeightRaw} + + sampleSigAlgoEnumRawValue := cadenceValue{cadence.NewUInt8(1)} + sampleHashAlgoEnumRawValue := cadenceValue{cadence.NewUInt8(1)} sampleKeyIndex := cadenceValue{cadence.NewInt(1)} @@ -148,6 +146,9 @@ func generateManifest(env templates.Environment) *manifest { sampleEmptyPublicKeys := cadence.NewArray([]cadence.Value{}) + sampleRawKey := cadence.String("f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164") + sampleKey := cadenceValue{sampleRawKey} + sampleOnePublicKey := cadence.NewArray([]cadence.Value{ cadence.String("f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164"), }) @@ -162,24 +163,64 @@ func generateManifest(env templates.Environment) *manifest { "FA.01", "Create Account", env, templates.GenerateCreateAccountScript, - []argument{{ - Type: "[Crypto.KeyListEntry]", - Name: "publicKeys", - Label: "Public Keys", - SampleValues: []cadenceValue{sampleCadenceAccountKeys}, - }}, + []argument{ + { + Type: "String", + Name: "key", + Label: "Public Key", + SampleValues: []cadenceValue{sampleKey}, + }, + { + Type: "UInt8", + Name: "signatureAlgorithm", + Label: "Raw Value for Signature Algorithm Enum", + SampleValues: []cadenceValue{sampleSigAlgoEnumRawValue}, + }, + { + Type: "UInt8", + Name: "hashAlgorithm", + Label: "Raw Value for Hash Algorithm Enum", + SampleValues: []cadenceValue{sampleHashAlgoEnumRawValue}, + }, + { + Type: "UFix64", + Name: "weight", + Label: "Key Weight", + SampleValues: []cadenceValue{sampleKeyWeight}, + }, + }, )) m.addTemplate(generateTemplate( "FA.02", "Add Key", env, templates.GenerateAddKeyScript, - []argument{{ - Type: "Crypto.KeyListEntry", - Name: "key", - Label: "Public Key", - SampleValues: []cadenceValue{sampleCadenceAccountKey}, - }}, + []argument{ + { + Type: "String", + Name: "key", + Label: "Public Key", + SampleValues: []cadenceValue{sampleKey}, + }, + { + Type: "UInt8", + Name: "signatureAlgorithm", + Label: "Raw Value for Signature Algorithm Enum", + SampleValues: []cadenceValue{sampleSigAlgoEnumRawValue}, + }, + { + Type: "UInt8", + Name: "hashAlgorithm", + Label: "Raw Value for Hash Algorithm Enum", + SampleValues: []cadenceValue{sampleHashAlgoEnumRawValue}, + }, + { + Type: "UFix64", + Name: "weight", + Label: "Key Weight", + SampleValues: []cadenceValue{sampleKeyWeight}, + }, + }, )) m.addTemplate(generateTemplate( diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index c8cbf912b..90423f801 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -18,9 +18,9 @@ // FlowServiceAccount/set_is_account_creation_restricted.cdc (609B) // FlowServiceAccount/set_tx_fee_parameters.cdc (629B) // FlowServiceAccount/set_tx_fee_surge_factor.cdc (488B) -// accounts/add_key.cdc (189B) -// accounts/create_new_account.cdc (311B) -// accounts/revoke_key.cdc (106B) +// accounts/add_key.cdc (711B) +// accounts/create_new_account.cdc (766B) +// accounts/revoke_key.cdc (263B) // dkg/admin/force_stop_dkg.cdc (353B) // dkg/admin/publish_participant.cdc (317B) // dkg/admin/set_safe_threshold.cdc (444B) @@ -724,7 +724,7 @@ func flowserviceaccountSet_tx_fee_surge_factorCdc() (*asset, error) { return a, nil } -var _accountsAdd_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xcc\x41\x0a\xc3\x20\x10\x05\xd0\x75\x3c\x85\xcb\x04\x82\x07\xc8\x2e\x94\xae\xd2\x4b\x58\x33\xc4\xc1\x44\x65\x1c\x29\x43\xc9\xdd\x4b\x6b\x29\x74\xf7\xff\x7f\xf0\xf1\xc8\x89\x58\x5f\x48\x32\x27\xa5\x98\x6c\x2c\xd6\x31\xa6\xd8\x07\x90\xe9\x0b\x66\x01\xb9\x61\xe1\x6b\x64\x92\x41\x3f\x55\x97\x09\xb2\x25\xe8\x0b\x6e\x11\x68\xd2\x73\x65\x3f\x3b\x97\x6a\xe4\x8f\x77\x0d\x4c\x00\x29\xc6\xae\x6b\x9f\xeb\x7d\x47\xb7\xbc\x3f\x03\x88\xf9\xd5\x51\x7b\x5b\xfc\xbc\x6f\x89\x90\xfd\xd1\xf4\x6f\x1a\xf5\x03\x70\xf3\xdc\xa8\xe5\x41\x75\xa7\x3a\x5f\x01\x00\x00\xff\xff\x1b\x32\x5d\xb7\xbd\x00\x00\x00" +var _accountsAdd_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x51\x6b\xdb\x30\x14\x85\x9f\xa5\x5f\x71\x9a\x87\x60\x83\x09\xce\x3a\xc2\x10\xcd\x20\x0c\x46\x47\x19\x0c\xba\xee\x5d\xb1\x2e\xb1\x88\x2d\x19\xf9\xba\xae\x19\xf9\xef\x43\xf1\xe6\x26\x38\xec\x49\xf2\xf5\xb9\xe7\xd3\x3d\x5c\x5b\x37\x3e\x30\xbe\x84\xa1\x61\x2f\x25\x07\xed\x5a\x5d\xb0\xf5\x2e\x39\xd2\xa0\xf0\xcc\xc1\xba\x43\x86\xd6\x1e\x9c\xe6\x2e\xd0\xae\x3a\xf8\x60\xb9\xac\x15\x5e\xbe\x39\xfe\x94\xa1\xd4\x6d\x39\xaf\xf6\x64\x0f\x25\x2b\xbc\x7c\xb5\x6f\x9b\x8f\x29\x7e\x4b\x29\x9a\x40\x8d\x0e\x94\x44\x33\x0a\x0a\xba\xe3\x32\xd9\x19\xf3\x44\x43\x8a\xe5\xae\x28\x7c\xe7\x38\x4a\x45\x94\x9e\x4f\x31\x07\xe3\xf3\x16\x6b\x2c\x97\x37\xde\x84\x87\x2d\xee\x15\x16\xdf\xbb\x96\xd1\x04\xff\x6a\x0d\x41\xbf\x0b\xa1\x47\x65\x8d\xa0\x7b\xbc\xea\xaa\x23\x70\xa9\x19\xb6\xc5\x3a\xc3\x87\x0c\x3e\xe0\x7e\x11\xb9\x57\x53\x4d\xc8\xeb\xea\xc3\x16\x9b\x39\x2d\x6a\xfe\x07\xda\x13\xf7\x44\x0e\x6b\x68\x67\xb0\x39\xd3\xc6\xb4\xa2\xe1\x3a\xcf\xf3\x55\xae\xb0\xf8\x59\x12\x8e\x34\xfc\x0d\x12\x75\x84\xec\x69\xea\xce\xcf\xdd\x51\x1d\x0d\x4e\x52\x88\x8a\x18\x4d\xb7\xaf\x6c\xf1\x44\x03\xb6\xf8\xf1\xef\x9e\x44\xc2\xf4\x47\x45\xd7\x95\xa1\xc2\x1b\x7a\xa4\xb7\x24\xcd\x6e\xc7\xac\xf0\x3c\xab\x25\x41\xf7\xbf\xe2\x30\xea\x46\xf8\xe9\x9d\x14\x22\x95\x72\x34\xa3\xb0\x3a\xd2\xd0\xae\xb4\x31\xc9\x05\x7b\xba\xce\xf6\xe6\xf1\xf2\xf3\x02\x74\x25\x4b\xef\xde\x37\x6b\x3c\x53\x29\x4e\xf2\xf4\x27\x00\x00\xff\xff\xb4\x9a\xbc\xc4\xc7\x02\x00\x00" func accountsAdd_keyCdcBytes() ([]byte, error) { return bindataRead( @@ -740,11 +740,11 @@ func accountsAdd_keyCdc() (*asset, error) { } info := bindataFileInfo{name: "accounts/add_key.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbc, 0x3f, 0x3d, 0x52, 0x1f, 0x71, 0xd8, 0x7e, 0x4c, 0x73, 0x89, 0xb2, 0xdb, 0xf7, 0x67, 0x8b, 0x95, 0xb9, 0x2f, 0xc3, 0x39, 0x30, 0x63, 0x84, 0x91, 0x21, 0xdf, 0x4c, 0x1c, 0x85, 0x1e, 0xa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0xd4, 0xe8, 0x7d, 0xf1, 0x71, 0xcc, 0xbe, 0x1, 0x5e, 0xfe, 0x69, 0xdc, 0x2f, 0xfd, 0x24, 0x81, 0x4c, 0x5f, 0xc0, 0xf2, 0xe3, 0x64, 0xda, 0xf5, 0xc8, 0x5, 0x15, 0xce, 0x4a, 0x8b, 0xd9}} return a, nil } -var _accountsCreate_new_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\xb1\x6a\xc4\x30\x0c\x86\x67\xe9\x29\x34\x26\x70\xe4\xf6\x40\x87\x50\x3a\x5d\xdf\xa0\x74\x50\x13\x35\x36\xcd\xd9\x46\x56\x28\xa6\xe4\xdd\x4b\xe2\xa3\xd7\xdb\xe4\xff\xfb\x3f\xdb\xf2\xd7\x14\xd5\xe8\x59\x4b\xb2\x88\x68\xca\x21\xf3\x68\x3e\x86\x26\xad\x1f\x8b\x1f\x2f\x52\x72\x4f\x6f\xb5\xd0\x5d\xa4\xbc\xfa\x6c\x2f\xc1\xb4\xbc\xb7\xf4\x83\x90\x54\x12\xab\x34\xd9\xcf\x41\xb4\xa7\x61\x35\x37\x8c\x63\x5c\x83\x1d\x1c\x16\x31\xe2\x1a\xd0\xd3\x7f\xdc\x24\x2e\xbb\x51\xcd\x16\x11\xe0\x7c\x26\x9e\x26\xe2\x65\x21\x73\x42\x5f\x52\x32\x59\x3c\xe6\xdb\x15\x08\xf0\x19\x75\x27\xe4\x03\xdd\xbf\x78\x3c\x05\xb7\x52\xb7\x8b\x1d\x4f\xd3\x7d\x87\x7e\x57\xba\xbf\xe3\x89\x1c\x67\x37\x2c\x73\x54\x6f\xee\x5a\xe9\x43\x74\xa2\x6f\xf1\xb3\xb3\x8a\xea\xdc\x22\xc0\x86\xb0\xe1\xf6\x1b\x00\x00\xff\xff\x85\xcc\x76\xbd\x37\x01\x00\x00" +var _accountsCreate_new_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\xd1\x6a\xdb\x40\x10\x7c\x96\xbe\x62\xe2\x07\x23\x81\x30\x72\x53\x4c\x39\xa2\x42\x5a\x28\x29\xa5\x50\x70\xd3\xf7\xb5\xb4\x48\x87\x6d\x9d\x58\xad\xe2\x88\xe2\x7f\x2f\x27\x39\x8e\x8d\x4c\x9f\xee\xb4\x9a\xdd\x99\x9b\x1d\xbb\x6f\x9c\x28\xbe\x4a\xdf\xa8\x0b\x43\x15\xaa\x5b\xca\xd5\xba\x3a\xda\x72\x6f\xb0\x56\xb1\x75\x99\xa0\xb5\x65\x4d\xda\x09\x3f\xee\x4a\x27\x56\xab\xbd\xc1\xf3\xf7\x5a\x3f\x25\xa8\xa8\xad\xa6\xd5\x03\xdb\xb2\x52\x83\xe7\x6f\xf6\x75\xf5\x31\xc6\xdf\x30\x68\x84\x1b\x12\x8e\xfc\x2c\x16\x03\xea\xb4\x8a\xbe\x38\x11\x77\xf8\x43\xbb\x8e\x13\xac\xd5\x09\x95\x1c\x63\xfe\x98\xe7\xae\xab\x75\xe8\xf3\x8d\xc3\x19\x4c\x55\xe0\x73\x86\x25\xe6\xf3\x1b\x02\xf1\x90\xe1\xde\x60\xf6\xb3\x6b\x15\x8d\xb8\x17\x5b\x30\xe8\x1d\x08\x1a\x91\x7b\x08\x1d\xf0\xe2\x15\x40\x2b\x52\xd8\x16\xcb\x04\x1f\x12\x38\xc1\xfd\xcc\xf3\x5e\x3d\xf1\x4c\x79\x5d\x7d\xc8\xb0\x9a\xb2\x79\xcc\xff\x88\x36\xac\x07\xe6\x1a\x4b\x50\x5d\x60\x35\xb0\x8d\xd6\xf9\x81\xcb\x34\x4d\x17\xa9\xc1\xec\x77\xc5\xd8\x72\x7f\x72\x15\x7b\x4f\xb2\xe1\x73\x77\x3a\x74\x7b\xb4\x1f\x70\x0c\xc3\x20\xd8\xb1\xa2\xe9\x36\x3b\x9b\xff\xe0\x1e\x19\x7e\xbd\xdd\x23\x4f\x71\xfe\x63\xfc\xd8\x45\xc1\xb9\x2b\xf8\x89\x5f\xa3\x38\xb9\xed\xb3\xc1\x7a\x52\x8b\x84\xc6\xc5\x99\x1b\xee\xc7\x77\x61\x10\xc4\x6f\x4a\x68\x5c\x27\x32\x9c\x16\x1b\x35\xd4\xfb\x0c\x8c\x59\x18\x70\x27\xcc\x62\xcb\x7d\xbb\xa0\xa2\x88\x2e\x44\x9e\xaf\x93\xb8\x3d\x5d\x7e\x5e\x28\xba\x82\xc5\x77\xef\x81\x1c\xcf\x38\x0c\x8e\xe1\xf1\x5f\x00\x00\x00\xff\xff\xa8\xb7\x9a\x9f\xfe\x02\x00\x00" func accountsCreate_new_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -760,11 +760,11 @@ func accountsCreate_new_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "accounts/create_new_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfc, 0xc2, 0xf3, 0xb, 0xfb, 0xe5, 0xe5, 0xaa, 0x3b, 0x71, 0x3b, 0xd7, 0xcc, 0xb0, 0x44, 0x76, 0x4d, 0xce, 0x93, 0x31, 0x3a, 0xa5, 0x23, 0x13, 0x39, 0x67, 0x9e, 0x37, 0x1, 0x5c, 0x52, 0x76}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x63, 0xd8, 0xb6, 0xa0, 0x45, 0xbf, 0x8e, 0x61, 0x96, 0x19, 0x81, 0x84, 0xdb, 0x68, 0x5c, 0x2c, 0xf2, 0x29, 0x32, 0x50, 0x3c, 0xcb, 0x2d, 0xcb, 0x85, 0xc7, 0xd2, 0xdc, 0x4, 0xc8, 0x82, 0xba}} return a, nil } -var _accountsRevoke_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x29\x4a\xcc\x2b\x4e\x4c\x2e\xc9\xcc\xcf\xd3\xc8\x4e\xad\xf4\xcc\x4b\x49\xad\xb0\x52\xf0\xcc\x2b\xd1\x54\xa8\xe6\xe2\x2c\x28\x4a\x2d\x48\x2c\x4a\xd5\x28\xce\x4c\xcf\x4b\x2d\xb2\x52\x70\x2c\x2d\xc9\x70\x4c\x4e\xce\x2f\x85\xca\x73\x42\x24\xf4\xb2\x53\x2b\x8b\xf5\x8a\x52\xcb\xf2\xb3\x53\x91\x4c\x81\xb1\x34\xb9\x38\x6b\xb9\x6a\x01\x01\x00\x00\xff\xff\x01\x6a\x3c\x7a\x6a\x00\x00\x00" +var _accountsRevoke_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4e\xc4\x30\x10\x45\x6b\xfb\x14\xa3\x2d\xc0\xdb\xec\x01\x56\xa2\xa0\x5c\x21\x51\x70\x03\xcb\x7c\x92\x91\x57\xe3\xc8\x9e\x84\x18\x94\xbb\xa3\xd8\x20\xa5\xa0\xb3\xe4\xf7\xde\x7c\xcd\x5e\x8a\x0f\xca\x49\x5c\x44\xbd\xc9\x3b\xd6\x2b\xdd\x44\xcf\xf4\x6d\xcd\x94\x31\xf9\x0c\x57\x78\x10\xe4\x2b\xf9\x59\x47\xf7\x86\x25\x45\xbc\xa0\x9e\xe9\xe1\x39\x84\x34\xff\xc2\x86\x3f\xe8\x0e\xa5\x88\x4a\x4f\xd4\x95\x4b\x44\x2d\x97\x01\x7a\x88\xff\xbd\xba\x64\x8e\x60\x6e\xe9\xff\x58\x6b\xcc\x46\xb8\x17\x74\x69\xf2\xc2\xc1\x9d\x5e\x53\xbb\xf6\xc9\x3a\x92\x8e\xa0\x81\x17\x08\xf1\x6e\x10\x56\x2e\x5a\x28\x49\xfb\xd9\x97\xa7\xcc\x5f\xc8\x8f\x85\x7c\x5f\x7d\x6a\x55\x6b\x36\xbb\xfd\x04\x00\x00\xff\xff\x57\x3a\xd3\x8c\x07\x01\x00\x00" func accountsRevoke_keyCdcBytes() ([]byte, error) { return bindataRead( @@ -780,7 +780,7 @@ func accountsRevoke_keyCdc() (*asset, error) { } info := bindataFileInfo{name: "accounts/revoke_key.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xec, 0x5d, 0xcc, 0x59, 0x18, 0xa2, 0x47, 0x34, 0xf3, 0xdd, 0xd7, 0xd6, 0x87, 0xb6, 0x13, 0x8e, 0x33, 0xd2, 0xe2, 0xa7, 0xab, 0xe, 0xd, 0x81, 0x5f, 0x4b, 0x87, 0x3a, 0x7b, 0x76, 0x2a, 0xc5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0x7a, 0xb7, 0x28, 0x37, 0xfd, 0xce, 0x77, 0xa9, 0x10, 0xf6, 0xfc, 0xc, 0x62, 0x2c, 0x6c, 0x4d, 0x5b, 0x17, 0xf6, 0xfb, 0xf7, 0x29, 0x5f, 0x34, 0x5d, 0x50, 0xd3, 0x50, 0x8d, 0xd5, 0x15}} return a, nil } diff --git a/lib/go/templates/manifest.mainnet.json b/lib/go/templates/manifest.mainnet.json index 2fee01f7b..fdc865d6e 100755 --- a/lib/go/templates/manifest.mainnet.json +++ b/lib/go/templates/manifest.mainnet.json @@ -4,724 +4,113 @@ { "id": "FA.01", "name": "Create Account", - "source": "import Crypto\n\ntransaction(publicKeys: [Crypto.KeyListEntry]) {\n\tprepare(signer: AuthAccount) {\n\t\tlet account = AuthAccount(payer: signer)\n\n\t\t// add all the keys to the account\n\t\tfor key in publicKeys {\n\t\t\taccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n\t\t}\n\t}\n}", + "source": "import Crypto\n\ntransaction(key: String, signatureAlgorithm: UInt8, hashAlgorithm: UInt8, weight: UFix64) {\n\tprepare(signer: auth(BorrowValue, Storage) \u0026Account) {\n\t\tpre {\n\t\t\tsignatureAlgorithm \u003e= 1 \u0026\u0026 signatureAlgorithm \u003c= 3: \"Must provide a signature algoritm raw value that is 1, 2, or 3\"\n\t\t\thashAlgorithm \u003e= 1 \u0026\u0026 hashAlgorithm \u003c= 6: \"Must provide a hash algoritm raw value that is between 1 and 6\"\n\t\t\tweight \u003c= 1000.0: \"The key weight must be between 0 and 1000\"\n\t\t}\n\n\t\tlet publicKey = PublicKey(\n\t\t\tpublicKey: key.decodeHex(),\n\t\t\tsignatureAlgorithm: SignatureAlgorithm(rawValue: signatureAlgorithm)!\n\t\t)\n\n\t\tlet account = Account(payer: signer)\n\n\t\taccount.keys.add(publicKey: publicKey, hashAlgorithm: HashAlgorithm(rawValue: hashAlgorithm)!, weight: weight)\n\t}\n}", "arguments": [ { - "type": "[Crypto.KeyListEntry]", - "name": "publicKeys", - "label": "Public Keys", + "type": "String", + "name": "key", + "label": "Public Key", "sampleValues": [ { - "value": [ - { - "value": { - "id": "I.Crypto.Crypto.KeyListEntry", - "fields": [ - { - "value": { - "value": "1000", - "type": "Int" - }, - "name": "keyIndex" - }, - { - "value": { - "value": { - "id": "PublicKey", - "fields": [ - { - "value": { - "value": [ - { - "value": "97", - "type": "UInt8" - }, - { - "value": "12", - "type": "UInt8" - }, - { - "value": "124", - "type": "UInt8" - }, - { - "value": "219", - "type": "UInt8" - }, - { - "value": "204", - "type": "UInt8" - }, - { - "value": "59", - "type": "UInt8" - }, - { - "value": "7", - "type": "UInt8" - }, - { - "value": "91", - "type": "UInt8" - }, - { - "value": "97", - "type": "UInt8" - }, - { - "value": "129", - "type": "UInt8" - }, - { - "value": "185", - "type": "UInt8" - }, - { - "value": "79", - "type": "UInt8" - }, - { - "value": "239", - "type": "UInt8" - }, - { - "value": "14", - "type": "UInt8" - }, - { - "value": "225", - "type": "UInt8" - }, - { - "value": "138", - "type": "UInt8" - }, - { - "value": "73", - "type": "UInt8" - }, - { - "value": "165", - "type": "UInt8" - }, - { - "value": "97", - "type": "UInt8" - }, - { - "value": "50", - "type": "UInt8" - }, - { - "value": "130", - "type": "UInt8" - }, - { - "value": "75", - "type": "UInt8" - }, - { - "value": "20", - "type": "UInt8" - }, - { - "value": "18", - "type": "UInt8" - }, - { - "value": "65", - "type": "UInt8" - }, - { - "value": "93", - "type": "UInt8" - }, - { - "value": "134", - "type": "UInt8" - }, - { - "value": "219", - "type": "UInt8" - }, - { - "value": "149", - "type": "UInt8" - }, - { - "value": "255", - "type": "UInt8" - }, - { - "value": "224", - "type": "UInt8" - }, - { - "value": "164", - "type": "UInt8" - }, - { - "value": "11", - "type": "UInt8" - }, - { - "value": "117", - "type": "UInt8" - }, - { - "value": "167", - "type": "UInt8" - }, - { - "value": "23", - "type": "UInt8" - }, - { - "value": "13", - "type": "UInt8" - }, - { - "value": "229", - "type": "UInt8" - }, - { - "value": "66", - "type": "UInt8" - }, - { - "value": "42", - "type": "UInt8" - }, - { - "value": "182", - "type": "UInt8" - }, - { - "value": "239", - "type": "UInt8" - }, - { - "value": "41", - "type": "UInt8" - }, - { - "value": "49", - "type": "UInt8" - }, - { - "value": "164", - "type": "UInt8" - }, - { - "value": "6", - "type": "UInt8" - }, - { - "value": "195", - "type": "UInt8" - }, - { - "value": "226", - "type": "UInt8" - }, - { - "value": "122", - "type": "UInt8" - }, - { - "value": "138", - "type": "UInt8" - }, - { - "value": "105", - "type": "UInt8" - }, - { - "value": "221", - "type": "UInt8" - }, - { - "value": "9", - "type": "UInt8" - }, - { - "value": "138", - "type": "UInt8" - }, - { - "value": "217", - "type": "UInt8" - }, - { - "value": "173", - "type": "UInt8" - }, - { - "value": "11", - "type": "UInt8" - }, - { - "value": "177", - "type": "UInt8" - }, - { - "value": "59", - "type": "UInt8" - }, - { - "value": "116", - "type": "UInt8" - }, - { - "value": "136", - "type": "UInt8" - }, - { - "value": "64", - "type": "UInt8" - }, - { - "value": "203", - "type": "UInt8" - }, - { - "value": "230", - "type": "UInt8" - } - ], - "type": "Array" - }, - "name": "publicKey" - }, - { - "value": { - "value": { - "id": "SignatureAlgorithm", - "fields": [ - { - "value": { - "value": "1", - "type": "UInt8" - }, - "name": "rawValue" - } - ] - }, - "type": "Enum" - }, - "name": "signatureAlgorithm" - } - ] - }, - "type": "Struct" - }, - "name": "publicKey" - }, - { - "value": { - "value": { - "id": "HashAlgorithm", - "fields": [ - { - "value": { - "value": "3", - "type": "UInt8" - }, - "name": "rawValue" - } - ] - }, - "type": "Enum" - }, - "name": "hashAlgorithm" - }, - { - "value": { - "value": "1000.00000000", - "type": "UFix64" - }, - "name": "weight" - }, - { - "value": { - "value": false, - "type": "Bool" - }, - "name": "isRevoked" - } - ] - }, - "type": "Struct" - } - ], - "type": "Array" + "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "type": "String" + } + ] + }, + { + "type": "UInt8", + "name": "signatureAlgorithm", + "label": "Raw Value for Signature Algorithm Enum", + "sampleValues": [ + { + "value": "1", + "type": "UInt8" + } + ] + }, + { + "type": "UInt8", + "name": "hashAlgorithm", + "label": "Raw Value for Hash Algorithm Enum", + "sampleValues": [ + { + "value": "1", + "type": "UInt8" + } + ] + }, + { + "type": "UFix64", + "name": "weight", + "label": "Key Weight", + "sampleValues": [ + { + "value": "1000.00000000", + "type": "UFix64" } ] } ], "network": "mainnet", - "hash": "fcc2f30bfbe5e5aa3b713bd7ccb044764dce93313aa5231339679e37015c5276" + "hash": "63d8b6a045bf8e6196198184db685c2cf22932503ccb2dcb85c7d2dc04c882ba" }, { "id": "FA.02", "name": "Add Key", - "source": "import Crypto\n\ntransaction(key: Crypto.KeyListEntry) {\n\tprepare(signer: AuthAccount) {\n\t\tsigner.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n\t}\n}", + "source": "import Crypto\n\ntransaction(key: String, signatureAlgorithm: UInt8, hashAlgorithm: UInt8, weight: UFix64) {\n\n\tprepare(signer: auth(AddKey) \u0026Account) {\n\t\tpre {\n\t\t\tsignatureAlgorithm \u003e= 1 \u0026\u0026 signatureAlgorithm \u003c= 3: \"Must provide a signature algoritm raw value that is 1, 2, or 3\"\n\t\t\thashAlgorithm \u003e= 1 \u0026\u0026 hashAlgorithm \u003c= 6: \"Must provide a hash algoritm raw value that is between 1 and 6\"\n\t\t\tweight \u003c= 1000.0: \"The key weight must be between 0 and 1000\"\n\t\t}\n\t\tlet publicKey = PublicKey(\n\t\t\tpublicKey: key.decodeHex(),\n\t\t\tsignatureAlgorithm: SignatureAlgorithm(rawValue: signatureAlgorithm)!\n\t\t)\n\n\t\tsigner.keys.add(publicKey: publicKey, hashAlgorithm: HashAlgorithm(rawValue: hashAlgorithm)!, weight: weight)\n\t}\n}", "arguments": [ { - "type": "Crypto.KeyListEntry", + "type": "String", "name": "key", "label": "Public Key", "sampleValues": [ { - "value": { - "id": "I.Crypto.Crypto.KeyListEntry", - "fields": [ - { - "value": { - "value": "1000", - "type": "Int" - }, - "name": "keyIndex" - }, - { - "value": { - "value": { - "id": "PublicKey", - "fields": [ - { - "value": { - "value": [ - { - "value": "97", - "type": "UInt8" - }, - { - "value": "12", - "type": "UInt8" - }, - { - "value": "124", - "type": "UInt8" - }, - { - "value": "219", - "type": "UInt8" - }, - { - "value": "204", - "type": "UInt8" - }, - { - "value": "59", - "type": "UInt8" - }, - { - "value": "7", - "type": "UInt8" - }, - { - "value": "91", - "type": "UInt8" - }, - { - "value": "97", - "type": "UInt8" - }, - { - "value": "129", - "type": "UInt8" - }, - { - "value": "185", - "type": "UInt8" - }, - { - "value": "79", - "type": "UInt8" - }, - { - "value": "239", - "type": "UInt8" - }, - { - "value": "14", - "type": "UInt8" - }, - { - "value": "225", - "type": "UInt8" - }, - { - "value": "138", - "type": "UInt8" - }, - { - "value": "73", - "type": "UInt8" - }, - { - "value": "165", - "type": "UInt8" - }, - { - "value": "97", - "type": "UInt8" - }, - { - "value": "50", - "type": "UInt8" - }, - { - "value": "130", - "type": "UInt8" - }, - { - "value": "75", - "type": "UInt8" - }, - { - "value": "20", - "type": "UInt8" - }, - { - "value": "18", - "type": "UInt8" - }, - { - "value": "65", - "type": "UInt8" - }, - { - "value": "93", - "type": "UInt8" - }, - { - "value": "134", - "type": "UInt8" - }, - { - "value": "219", - "type": "UInt8" - }, - { - "value": "149", - "type": "UInt8" - }, - { - "value": "255", - "type": "UInt8" - }, - { - "value": "224", - "type": "UInt8" - }, - { - "value": "164", - "type": "UInt8" - }, - { - "value": "11", - "type": "UInt8" - }, - { - "value": "117", - "type": "UInt8" - }, - { - "value": "167", - "type": "UInt8" - }, - { - "value": "23", - "type": "UInt8" - }, - { - "value": "13", - "type": "UInt8" - }, - { - "value": "229", - "type": "UInt8" - }, - { - "value": "66", - "type": "UInt8" - }, - { - "value": "42", - "type": "UInt8" - }, - { - "value": "182", - "type": "UInt8" - }, - { - "value": "239", - "type": "UInt8" - }, - { - "value": "41", - "type": "UInt8" - }, - { - "value": "49", - "type": "UInt8" - }, - { - "value": "164", - "type": "UInt8" - }, - { - "value": "6", - "type": "UInt8" - }, - { - "value": "195", - "type": "UInt8" - }, - { - "value": "226", - "type": "UInt8" - }, - { - "value": "122", - "type": "UInt8" - }, - { - "value": "138", - "type": "UInt8" - }, - { - "value": "105", - "type": "UInt8" - }, - { - "value": "221", - "type": "UInt8" - }, - { - "value": "9", - "type": "UInt8" - }, - { - "value": "138", - "type": "UInt8" - }, - { - "value": "217", - "type": "UInt8" - }, - { - "value": "173", - "type": "UInt8" - }, - { - "value": "11", - "type": "UInt8" - }, - { - "value": "177", - "type": "UInt8" - }, - { - "value": "59", - "type": "UInt8" - }, - { - "value": "116", - "type": "UInt8" - }, - { - "value": "136", - "type": "UInt8" - }, - { - "value": "64", - "type": "UInt8" - }, - { - "value": "203", - "type": "UInt8" - }, - { - "value": "230", - "type": "UInt8" - } - ], - "type": "Array" - }, - "name": "publicKey" - }, - { - "value": { - "value": { - "id": "SignatureAlgorithm", - "fields": [ - { - "value": { - "value": "1", - "type": "UInt8" - }, - "name": "rawValue" - } - ] - }, - "type": "Enum" - }, - "name": "signatureAlgorithm" - } - ] - }, - "type": "Struct" - }, - "name": "publicKey" - }, - { - "value": { - "value": { - "id": "HashAlgorithm", - "fields": [ - { - "value": { - "value": "3", - "type": "UInt8" - }, - "name": "rawValue" - } - ] - }, - "type": "Enum" - }, - "name": "hashAlgorithm" - }, - { - "value": { - "value": "1000.00000000", - "type": "UFix64" - }, - "name": "weight" - }, - { - "value": { - "value": false, - "type": "Bool" - }, - "name": "isRevoked" - } - ] - }, - "type": "Struct" + "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "type": "String" + } + ] + }, + { + "type": "UInt8", + "name": "signatureAlgorithm", + "label": "Raw Value for Signature Algorithm Enum", + "sampleValues": [ + { + "value": "1", + "type": "UInt8" + } + ] + }, + { + "type": "UInt8", + "name": "hashAlgorithm", + "label": "Raw Value for Hash Algorithm Enum", + "sampleValues": [ + { + "value": "1", + "type": "UInt8" + } + ] + }, + { + "type": "UFix64", + "name": "weight", + "label": "Key Weight", + "sampleValues": [ + { + "value": "1000.00000000", + "type": "UFix64" } ] } ], "network": "mainnet", - "hash": "bc3f3d521f71d87e4c7389b2dbf7678b95b92fc3393063849121df4c1c851e0a" + "hash": "21d4e87df171ccbe015efe69dc2ffd24814c5fc0f2e364daf5c80515ce4a8bd9" }, { "id": "FA.03", "name": "Remove Key", - "source": "transaction(keyIndex: Int) {\n\tprepare(signer: AuthAccount) {\n\t\tsigner.keys.revoke(keyIndex: keyIndex)\n\t}\n}", + "source": "transaction(keyIndex: Int) {\n\tprepare(signer: auth(RevokeKey) \u0026Account) {\n\t\tif let key = signer.keys.get(keyIndex: keyIndex) {\n\t\t\tsigner.keys.revoke(keyIndex: keyIndex)\n\t\t} else {\n\t\t\tpanic(\"No key with the given index exists on the authorizer's account\")\n\t\t}\n\t}\n}", "arguments": [ { "type": "Int", @@ -736,7 +125,7 @@ } ], "network": "mainnet", - "hash": "ec5dcc5918a24734f3ddd7d687b6138e33d2e2a7ab0e0d815f4b873a7b762ac5" + "hash": "6c7ab72837fdce77a910f6fc0c622c6c4d5b17f6fbf7295f345d50d3508dd515" }, { "id": "FT.01", diff --git a/lib/go/templates/manifest.testnet.json b/lib/go/templates/manifest.testnet.json index b14df0391..631ece4e0 100755 --- a/lib/go/templates/manifest.testnet.json +++ b/lib/go/templates/manifest.testnet.json @@ -4,724 +4,113 @@ { "id": "FA.01", "name": "Create Account", - "source": "import Crypto\n\ntransaction(publicKeys: [Crypto.KeyListEntry]) {\n\tprepare(signer: AuthAccount) {\n\t\tlet account = AuthAccount(payer: signer)\n\n\t\t// add all the keys to the account\n\t\tfor key in publicKeys {\n\t\t\taccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n\t\t}\n\t}\n}", + "source": "import Crypto\n\ntransaction(key: String, signatureAlgorithm: UInt8, hashAlgorithm: UInt8, weight: UFix64) {\n\tprepare(signer: auth(BorrowValue, Storage) \u0026Account) {\n\t\tpre {\n\t\t\tsignatureAlgorithm \u003e= 1 \u0026\u0026 signatureAlgorithm \u003c= 3: \"Must provide a signature algoritm raw value that is 1, 2, or 3\"\n\t\t\thashAlgorithm \u003e= 1 \u0026\u0026 hashAlgorithm \u003c= 6: \"Must provide a hash algoritm raw value that is between 1 and 6\"\n\t\t\tweight \u003c= 1000.0: \"The key weight must be between 0 and 1000\"\n\t\t}\n\n\t\tlet publicKey = PublicKey(\n\t\t\tpublicKey: key.decodeHex(),\n\t\t\tsignatureAlgorithm: SignatureAlgorithm(rawValue: signatureAlgorithm)!\n\t\t)\n\n\t\tlet account = Account(payer: signer)\n\n\t\taccount.keys.add(publicKey: publicKey, hashAlgorithm: HashAlgorithm(rawValue: hashAlgorithm)!, weight: weight)\n\t}\n}", "arguments": [ { - "type": "[Crypto.KeyListEntry]", - "name": "publicKeys", - "label": "Public Keys", + "type": "String", + "name": "key", + "label": "Public Key", "sampleValues": [ { - "value": [ - { - "value": { - "id": "I.Crypto.Crypto.KeyListEntry", - "fields": [ - { - "value": { - "value": "1000", - "type": "Int" - }, - "name": "keyIndex" - }, - { - "value": { - "value": { - "id": "PublicKey", - "fields": [ - { - "value": { - "value": [ - { - "value": "97", - "type": "UInt8" - }, - { - "value": "12", - "type": "UInt8" - }, - { - "value": "124", - "type": "UInt8" - }, - { - "value": "219", - "type": "UInt8" - }, - { - "value": "204", - "type": "UInt8" - }, - { - "value": "59", - "type": "UInt8" - }, - { - "value": "7", - "type": "UInt8" - }, - { - "value": "91", - "type": "UInt8" - }, - { - "value": "97", - "type": "UInt8" - }, - { - "value": "129", - "type": "UInt8" - }, - { - "value": "185", - "type": "UInt8" - }, - { - "value": "79", - "type": "UInt8" - }, - { - "value": "239", - "type": "UInt8" - }, - { - "value": "14", - "type": "UInt8" - }, - { - "value": "225", - "type": "UInt8" - }, - { - "value": "138", - "type": "UInt8" - }, - { - "value": "73", - "type": "UInt8" - }, - { - "value": "165", - "type": "UInt8" - }, - { - "value": "97", - "type": "UInt8" - }, - { - "value": "50", - "type": "UInt8" - }, - { - "value": "130", - "type": "UInt8" - }, - { - "value": "75", - "type": "UInt8" - }, - { - "value": "20", - "type": "UInt8" - }, - { - "value": "18", - "type": "UInt8" - }, - { - "value": "65", - "type": "UInt8" - }, - { - "value": "93", - "type": "UInt8" - }, - { - "value": "134", - "type": "UInt8" - }, - { - "value": "219", - "type": "UInt8" - }, - { - "value": "149", - "type": "UInt8" - }, - { - "value": "255", - "type": "UInt8" - }, - { - "value": "224", - "type": "UInt8" - }, - { - "value": "164", - "type": "UInt8" - }, - { - "value": "11", - "type": "UInt8" - }, - { - "value": "117", - "type": "UInt8" - }, - { - "value": "167", - "type": "UInt8" - }, - { - "value": "23", - "type": "UInt8" - }, - { - "value": "13", - "type": "UInt8" - }, - { - "value": "229", - "type": "UInt8" - }, - { - "value": "66", - "type": "UInt8" - }, - { - "value": "42", - "type": "UInt8" - }, - { - "value": "182", - "type": "UInt8" - }, - { - "value": "239", - "type": "UInt8" - }, - { - "value": "41", - "type": "UInt8" - }, - { - "value": "49", - "type": "UInt8" - }, - { - "value": "164", - "type": "UInt8" - }, - { - "value": "6", - "type": "UInt8" - }, - { - "value": "195", - "type": "UInt8" - }, - { - "value": "226", - "type": "UInt8" - }, - { - "value": "122", - "type": "UInt8" - }, - { - "value": "138", - "type": "UInt8" - }, - { - "value": "105", - "type": "UInt8" - }, - { - "value": "221", - "type": "UInt8" - }, - { - "value": "9", - "type": "UInt8" - }, - { - "value": "138", - "type": "UInt8" - }, - { - "value": "217", - "type": "UInt8" - }, - { - "value": "173", - "type": "UInt8" - }, - { - "value": "11", - "type": "UInt8" - }, - { - "value": "177", - "type": "UInt8" - }, - { - "value": "59", - "type": "UInt8" - }, - { - "value": "116", - "type": "UInt8" - }, - { - "value": "136", - "type": "UInt8" - }, - { - "value": "64", - "type": "UInt8" - }, - { - "value": "203", - "type": "UInt8" - }, - { - "value": "230", - "type": "UInt8" - } - ], - "type": "Array" - }, - "name": "publicKey" - }, - { - "value": { - "value": { - "id": "SignatureAlgorithm", - "fields": [ - { - "value": { - "value": "1", - "type": "UInt8" - }, - "name": "rawValue" - } - ] - }, - "type": "Enum" - }, - "name": "signatureAlgorithm" - } - ] - }, - "type": "Struct" - }, - "name": "publicKey" - }, - { - "value": { - "value": { - "id": "HashAlgorithm", - "fields": [ - { - "value": { - "value": "3", - "type": "UInt8" - }, - "name": "rawValue" - } - ] - }, - "type": "Enum" - }, - "name": "hashAlgorithm" - }, - { - "value": { - "value": "1000.00000000", - "type": "UFix64" - }, - "name": "weight" - }, - { - "value": { - "value": false, - "type": "Bool" - }, - "name": "isRevoked" - } - ] - }, - "type": "Struct" - } - ], - "type": "Array" + "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "type": "String" + } + ] + }, + { + "type": "UInt8", + "name": "signatureAlgorithm", + "label": "Raw Value for Signature Algorithm Enum", + "sampleValues": [ + { + "value": "1", + "type": "UInt8" + } + ] + }, + { + "type": "UInt8", + "name": "hashAlgorithm", + "label": "Raw Value for Hash Algorithm Enum", + "sampleValues": [ + { + "value": "1", + "type": "UInt8" + } + ] + }, + { + "type": "UFix64", + "name": "weight", + "label": "Key Weight", + "sampleValues": [ + { + "value": "1000.00000000", + "type": "UFix64" } ] } ], "network": "testnet", - "hash": "fcc2f30bfbe5e5aa3b713bd7ccb044764dce93313aa5231339679e37015c5276" + "hash": "63d8b6a045bf8e6196198184db685c2cf22932503ccb2dcb85c7d2dc04c882ba" }, { "id": "FA.02", "name": "Add Key", - "source": "import Crypto\n\ntransaction(key: Crypto.KeyListEntry) {\n\tprepare(signer: AuthAccount) {\n\t\tsigner.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n\t}\n}", + "source": "import Crypto\n\ntransaction(key: String, signatureAlgorithm: UInt8, hashAlgorithm: UInt8, weight: UFix64) {\n\n\tprepare(signer: auth(AddKey) \u0026Account) {\n\t\tpre {\n\t\t\tsignatureAlgorithm \u003e= 1 \u0026\u0026 signatureAlgorithm \u003c= 3: \"Must provide a signature algoritm raw value that is 1, 2, or 3\"\n\t\t\thashAlgorithm \u003e= 1 \u0026\u0026 hashAlgorithm \u003c= 6: \"Must provide a hash algoritm raw value that is between 1 and 6\"\n\t\t\tweight \u003c= 1000.0: \"The key weight must be between 0 and 1000\"\n\t\t}\n\t\tlet publicKey = PublicKey(\n\t\t\tpublicKey: key.decodeHex(),\n\t\t\tsignatureAlgorithm: SignatureAlgorithm(rawValue: signatureAlgorithm)!\n\t\t)\n\n\t\tsigner.keys.add(publicKey: publicKey, hashAlgorithm: HashAlgorithm(rawValue: hashAlgorithm)!, weight: weight)\n\t}\n}", "arguments": [ { - "type": "Crypto.KeyListEntry", + "type": "String", "name": "key", "label": "Public Key", "sampleValues": [ { - "value": { - "id": "I.Crypto.Crypto.KeyListEntry", - "fields": [ - { - "value": { - "value": "1000", - "type": "Int" - }, - "name": "keyIndex" - }, - { - "value": { - "value": { - "id": "PublicKey", - "fields": [ - { - "value": { - "value": [ - { - "value": "97", - "type": "UInt8" - }, - { - "value": "12", - "type": "UInt8" - }, - { - "value": "124", - "type": "UInt8" - }, - { - "value": "219", - "type": "UInt8" - }, - { - "value": "204", - "type": "UInt8" - }, - { - "value": "59", - "type": "UInt8" - }, - { - "value": "7", - "type": "UInt8" - }, - { - "value": "91", - "type": "UInt8" - }, - { - "value": "97", - "type": "UInt8" - }, - { - "value": "129", - "type": "UInt8" - }, - { - "value": "185", - "type": "UInt8" - }, - { - "value": "79", - "type": "UInt8" - }, - { - "value": "239", - "type": "UInt8" - }, - { - "value": "14", - "type": "UInt8" - }, - { - "value": "225", - "type": "UInt8" - }, - { - "value": "138", - "type": "UInt8" - }, - { - "value": "73", - "type": "UInt8" - }, - { - "value": "165", - "type": "UInt8" - }, - { - "value": "97", - "type": "UInt8" - }, - { - "value": "50", - "type": "UInt8" - }, - { - "value": "130", - "type": "UInt8" - }, - { - "value": "75", - "type": "UInt8" - }, - { - "value": "20", - "type": "UInt8" - }, - { - "value": "18", - "type": "UInt8" - }, - { - "value": "65", - "type": "UInt8" - }, - { - "value": "93", - "type": "UInt8" - }, - { - "value": "134", - "type": "UInt8" - }, - { - "value": "219", - "type": "UInt8" - }, - { - "value": "149", - "type": "UInt8" - }, - { - "value": "255", - "type": "UInt8" - }, - { - "value": "224", - "type": "UInt8" - }, - { - "value": "164", - "type": "UInt8" - }, - { - "value": "11", - "type": "UInt8" - }, - { - "value": "117", - "type": "UInt8" - }, - { - "value": "167", - "type": "UInt8" - }, - { - "value": "23", - "type": "UInt8" - }, - { - "value": "13", - "type": "UInt8" - }, - { - "value": "229", - "type": "UInt8" - }, - { - "value": "66", - "type": "UInt8" - }, - { - "value": "42", - "type": "UInt8" - }, - { - "value": "182", - "type": "UInt8" - }, - { - "value": "239", - "type": "UInt8" - }, - { - "value": "41", - "type": "UInt8" - }, - { - "value": "49", - "type": "UInt8" - }, - { - "value": "164", - "type": "UInt8" - }, - { - "value": "6", - "type": "UInt8" - }, - { - "value": "195", - "type": "UInt8" - }, - { - "value": "226", - "type": "UInt8" - }, - { - "value": "122", - "type": "UInt8" - }, - { - "value": "138", - "type": "UInt8" - }, - { - "value": "105", - "type": "UInt8" - }, - { - "value": "221", - "type": "UInt8" - }, - { - "value": "9", - "type": "UInt8" - }, - { - "value": "138", - "type": "UInt8" - }, - { - "value": "217", - "type": "UInt8" - }, - { - "value": "173", - "type": "UInt8" - }, - { - "value": "11", - "type": "UInt8" - }, - { - "value": "177", - "type": "UInt8" - }, - { - "value": "59", - "type": "UInt8" - }, - { - "value": "116", - "type": "UInt8" - }, - { - "value": "136", - "type": "UInt8" - }, - { - "value": "64", - "type": "UInt8" - }, - { - "value": "203", - "type": "UInt8" - }, - { - "value": "230", - "type": "UInt8" - } - ], - "type": "Array" - }, - "name": "publicKey" - }, - { - "value": { - "value": { - "id": "SignatureAlgorithm", - "fields": [ - { - "value": { - "value": "1", - "type": "UInt8" - }, - "name": "rawValue" - } - ] - }, - "type": "Enum" - }, - "name": "signatureAlgorithm" - } - ] - }, - "type": "Struct" - }, - "name": "publicKey" - }, - { - "value": { - "value": { - "id": "HashAlgorithm", - "fields": [ - { - "value": { - "value": "3", - "type": "UInt8" - }, - "name": "rawValue" - } - ] - }, - "type": "Enum" - }, - "name": "hashAlgorithm" - }, - { - "value": { - "value": "1000.00000000", - "type": "UFix64" - }, - "name": "weight" - }, - { - "value": { - "value": false, - "type": "Bool" - }, - "name": "isRevoked" - } - ] - }, - "type": "Struct" + "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "type": "String" + } + ] + }, + { + "type": "UInt8", + "name": "signatureAlgorithm", + "label": "Raw Value for Signature Algorithm Enum", + "sampleValues": [ + { + "value": "1", + "type": "UInt8" + } + ] + }, + { + "type": "UInt8", + "name": "hashAlgorithm", + "label": "Raw Value for Hash Algorithm Enum", + "sampleValues": [ + { + "value": "1", + "type": "UInt8" + } + ] + }, + { + "type": "UFix64", + "name": "weight", + "label": "Key Weight", + "sampleValues": [ + { + "value": "1000.00000000", + "type": "UFix64" } ] } ], "network": "testnet", - "hash": "bc3f3d521f71d87e4c7389b2dbf7678b95b92fc3393063849121df4c1c851e0a" + "hash": "21d4e87df171ccbe015efe69dc2ffd24814c5fc0f2e364daf5c80515ce4a8bd9" }, { "id": "FA.03", "name": "Remove Key", - "source": "transaction(keyIndex: Int) {\n\tprepare(signer: AuthAccount) {\n\t\tsigner.keys.revoke(keyIndex: keyIndex)\n\t}\n}", + "source": "transaction(keyIndex: Int) {\n\tprepare(signer: auth(RevokeKey) \u0026Account) {\n\t\tif let key = signer.keys.get(keyIndex: keyIndex) {\n\t\t\tsigner.keys.revoke(keyIndex: keyIndex)\n\t\t} else {\n\t\t\tpanic(\"No key with the given index exists on the authorizer's account\")\n\t\t}\n\t}\n}", "arguments": [ { "type": "Int", @@ -736,7 +125,7 @@ } ], "network": "testnet", - "hash": "ec5dcc5918a24734f3ddd7d687b6138e33d2e2a7ab0e0d815f4b873a7b762ac5" + "hash": "6c7ab72837fdce77a910f6fc0c622c6c4d5b17f6fbf7295f345d50d3508dd515" }, { "id": "FT.01", diff --git a/tests/test_account_txs.cdc b/tests/test_account_txs.cdc new file mode 100644 index 000000000..d4438bc50 --- /dev/null +++ b/tests/test_account_txs.cdc @@ -0,0 +1,178 @@ +import Test +import BlockchainHelpers + +access(all) let admin = Test.getAccount(0x0000000000000007) + +access(all) +fun setup() { +} + +access(all) +fun testCreateAccount() { + let key = "7d5305c22cb7da418396f32c474c6d84b0bb87ca311d6aa6edfd70a1120ded9dc11427ac31261c24e4e7a6c2affea28ff3da7b00fe285029877fb0b5970dc110" + + // Should fail + var txResult = executeTransaction( + "../transactions/accounts/create_new_account.cdc", + [key, UInt8(0), UInt8(1), 1000.0], + admin + ) + Test.expect(txResult, Test.beFailed()) + Test.assertError( + txResult, + errorMessage: "Must provide a signature algoritm raw value that is 1, 2, or 3" + ) + + // Should fail + txResult = executeTransaction( + "../transactions/accounts/create_new_account.cdc", + [key, UInt8(5), UInt8(1), 1000.0], + admin + ) + Test.expect(txResult, Test.beFailed()) + Test.assertError( + txResult, + errorMessage: "Must provide a signature algoritm raw value that is 1, 2, or 3" + ) + + // Should fail + txResult = executeTransaction( + "../transactions/accounts/create_new_account.cdc", + [key, UInt8(1), UInt8(0), 1000.0], + admin + ) + Test.expect(txResult, Test.beFailed()) + Test.assertError( + txResult, + errorMessage: "Must provide a hash algoritm raw value that is between 1 and 6" + ) + + // Should fail + txResult = executeTransaction( + "../transactions/accounts/create_new_account.cdc", + [key, UInt8(1), UInt8(10), 1000.0], + admin + ) + Test.expect(txResult, Test.beFailed()) + Test.assertError( + txResult, + errorMessage: "Must provide a hash algoritm raw value that is between 1 and 6" + ) + + // Should fail + txResult = executeTransaction( + "../transactions/accounts/create_new_account.cdc", + [key, UInt8(1), UInt8(1), 1222100.0], + admin + ) + Test.expect(txResult, Test.beFailed()) + Test.assertError( + txResult, + errorMessage: "The key weight must be between 0 and 1000" + ) + + // Should succeed + txResult = executeTransaction( + "../transactions/accounts/create_new_account.cdc", + [key, UInt8(1), UInt8(1), 1000.0], + admin + ) + Test.expect(txResult, Test.beSucceeded()) +} + +access(all) +fun testAddKey() { + let key = "7d5305c22cb7da418396f32c474c6d84b0bb87ca311d6aa6edfd70a1120ded9dc11427ac31261c24e4e7a6c2affea28ff3da7b00fe285029877fb0b5970dc110" + + // Should fail + var txResult = executeTransaction( + "../transactions/accounts/add_key.cdc", + [key, UInt8(0), UInt8(1), 1000.0], + admin + ) + Test.expect(txResult, Test.beFailed()) + Test.assertError( + txResult, + errorMessage: "Must provide a signature algoritm raw value that is 1, 2, or 3" + ) + + // Should fail + txResult = executeTransaction( + "../transactions/accounts/add_key.cdc", + [key, UInt8(5), UInt8(1), 1000.0], + admin + ) + Test.expect(txResult, Test.beFailed()) + Test.assertError( + txResult, + errorMessage: "Must provide a signature algoritm raw value that is 1, 2, or 3" + ) + + // Should fail + txResult = executeTransaction( + "../transactions/accounts/add_key.cdc", + [key, UInt8(1), UInt8(0), 1000.0], + admin + ) + Test.expect(txResult, Test.beFailed()) + Test.assertError( + txResult, + errorMessage: "Must provide a hash algoritm raw value that is between 1 and 6" + ) + + // Should fail + txResult = executeTransaction( + "../transactions/accounts/add_key.cdc", + [key, UInt8(1), UInt8(10), 1000.0], + admin + ) + Test.expect(txResult, Test.beFailed()) + Test.assertError( + txResult, + errorMessage: "Must provide a hash algoritm raw value that is between 1 and 6" + ) + + // Should fail + txResult = executeTransaction( + "../transactions/accounts/add_key.cdc", + [key, UInt8(1), UInt8(1), 1222100.0], + admin + ) + Test.expect(txResult, Test.beFailed()) + Test.assertError( + txResult, + errorMessage: "The key weight must be between 0 and 1000" + ) + + // Should succeed + txResult = executeTransaction( + "../transactions/accounts/add_key.cdc", + [key, UInt8(1), UInt8(1), 1000.0], + admin + ) + Test.expect(txResult, Test.beSucceeded()) +} + +access(all) +fun testRevokeKey() { + + // Should fail because no key with that index exists + var txResult = executeTransaction( + "../transactions/accounts/revoke_key.cdc", + [8], + admin + ) + Test.expect(txResult, Test.beFailed()) + Test.assertError( + txResult, + errorMessage: "No key with the given index exists on the authorizer's account" + ) + + // Should succeed + txResult = executeTransaction( + "../transactions/accounts/revoke_key.cdc", + [1], + admin + ) + Test.expect(txResult, Test.beSucceeded()) +} \ No newline at end of file diff --git a/transactions/accounts/add_key.cdc b/transactions/accounts/add_key.cdc index 8e69de7cf..3430207e2 100644 --- a/transactions/accounts/add_key.cdc +++ b/transactions/accounts/add_key.cdc @@ -1,7 +1,18 @@ import Crypto -transaction(key: Crypto.KeyListEntry) { - prepare(signer: AuthAccount) { - signer.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight) +transaction(key: String, signatureAlgorithm: UInt8, hashAlgorithm: UInt8, weight: UFix64) { + + prepare(signer: auth(AddKey) &Account) { + pre { + signatureAlgorithm >= 1 && signatureAlgorithm <= 3: "Must provide a signature algoritm raw value that is 1, 2, or 3" + hashAlgorithm >= 1 && hashAlgorithm <= 6: "Must provide a hash algoritm raw value that is between 1 and 6" + weight <= 1000.0: "The key weight must be between 0 and 1000" + } + let publicKey = PublicKey( + publicKey: key.decodeHex(), + signatureAlgorithm: SignatureAlgorithm(rawValue: signatureAlgorithm)! + ) + + signer.keys.add(publicKey: publicKey, hashAlgorithm: HashAlgorithm(rawValue: hashAlgorithm)!, weight: weight) } } \ No newline at end of file diff --git a/transactions/accounts/create_new_account.cdc b/transactions/accounts/create_new_account.cdc index d2a03a8f0..d610ce56d 100644 --- a/transactions/accounts/create_new_account.cdc +++ b/transactions/accounts/create_new_account.cdc @@ -1,12 +1,20 @@ import Crypto -transaction(publicKeys: [Crypto.KeyListEntry]) { - prepare(signer: AuthAccount) { - let account = AuthAccount(payer: signer) - - // add all the keys to the account - for key in publicKeys { - account.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight) +transaction(key: String, signatureAlgorithm: UInt8, hashAlgorithm: UInt8, weight: UFix64) { + prepare(signer: auth(BorrowValue, Storage) &Account) { + pre { + signatureAlgorithm >= 1 && signatureAlgorithm <= 3: "Must provide a signature algoritm raw value that is 1, 2, or 3" + hashAlgorithm >= 1 && hashAlgorithm <= 6: "Must provide a hash algoritm raw value that is between 1 and 6" + weight <= 1000.0: "The key weight must be between 0 and 1000" } + + let publicKey = PublicKey( + publicKey: key.decodeHex(), + signatureAlgorithm: SignatureAlgorithm(rawValue: signatureAlgorithm)! + ) + + let account = Account(payer: signer) + + account.keys.add(publicKey: publicKey, hashAlgorithm: HashAlgorithm(rawValue: hashAlgorithm)!, weight: weight) } } \ No newline at end of file diff --git a/transactions/accounts/revoke_key.cdc b/transactions/accounts/revoke_key.cdc index 9b454ffbc..1f0c810ce 100644 --- a/transactions/accounts/revoke_key.cdc +++ b/transactions/accounts/revoke_key.cdc @@ -1,5 +1,9 @@ transaction(keyIndex: Int) { - prepare(signer: AuthAccount) { - signer.keys.revoke(keyIndex: keyIndex) + prepare(signer: auth(RevokeKey) &Account) { + if let key = signer.keys.get(keyIndex: keyIndex) { + signer.keys.revoke(keyIndex: keyIndex) + } else { + panic("No key with the given index exists on the authorizer's account") + } } } \ No newline at end of file From 15339368a3d7d071b19bbf6b4db1645d6abfae9f Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 13 Feb 2024 16:43:24 -0600 Subject: [PATCH 085/160] update manifest to include both styles of token transfer transactions: --- lib/go/templates/cmd/manifest/manifest.go | 111 ++++++++++---- lib/go/templates/go.mod | 8 +- lib/go/templates/go.sum | 9 +- lib/go/templates/manifest.mainnet.json | 170 +++++++++++++++++----- lib/go/templates/manifest.testnet.json | 170 +++++++++++++++++----- lib/go/templates/service_templates.go | 16 +- 6 files changed, 368 insertions(+), 116 deletions(-) diff --git a/lib/go/templates/cmd/manifest/manifest.go b/lib/go/templates/cmd/manifest/manifest.go index a8ce0b8e2..9772dd0dc 100644 --- a/lib/go/templates/cmd/manifest/manifest.go +++ b/lib/go/templates/cmd/manifest/manifest.go @@ -6,7 +6,6 @@ import ( "github.com/onflow/cadence" jsoncdc "github.com/onflow/cadence/encoding/json" - "github.com/onflow/cadence/runtime/common" "github.com/onflow/flow-go-sdk" "github.com/onflow/flow-core-contracts/lib/go/templates" @@ -109,10 +108,8 @@ func generateManifest(env templates.Environment) *manifest { sampleID := cadenceValue{cadence.NewUInt64(10)} sampleNFTContractName := cadenceValue{cadence.String("TopShot")} - cadenceStoragePath := cadence.Path{Domain: common.PathDomainStorage, Identifier: "samplePathIdentifier"} - sampleStoragePath := cadenceValue{cadenceStoragePath} - cadencePublicPath := cadence.Path{Domain: common.PathDomainStorage, Identifier: "samplePathIdentifier"} - samplePublicPath := cadenceValue{cadencePublicPath} + sampleStoragePathID := cadenceValue{cadence.String("flowTokenVault")} + samplePublicPathID := cadenceValue{cadence.String("flowTokenReceiver")} sampleNodeID := cadenceValue{ cadence.String("88549335e1db7b5b46c2ad58ddb70b7a45e770cc5fe779650ba26f10e6bae5e6"), @@ -256,9 +253,9 @@ func generateManifest(env templates.Environment) *manifest { )) m.addTemplate(generateTemplate( - "FT.02", "Transfer Fungible Token", + "FT.02", "Transfer Fungible Token with Paths", env, - templates.GenerateTransferGenericVaultScript, + templates.GenerateTransferGenericVaultWithPathsScript, []argument{ { Type: "UFix64", @@ -273,16 +270,48 @@ func generateManifest(env templates.Environment) *manifest { SampleValues: []cadenceValue{sampleAddress(env.Network)}, }, { - Type: "StoragePath", - Name: "senderPath", - Label: "Sender's Collection Path", - SampleValues: []cadenceValue{sampleStoragePath}, + Type: "String", + Name: "senderPathIdentifier", + Label: "Sender's Collection Path Identifier", + SampleValues: []cadenceValue{sampleStoragePathID}, + }, + { + Type: "String", + Name: "receiverPathIdentifier", + Label: "Recipient's Receiver Path Identifier", + SampleValues: []cadenceValue{samplePublicPathID}, + }, + }, + )) + + m.addTemplate(generateTemplate( + "FT.03", "Transfer Fungible Token with Address", + env, + templates.GenerateTransferGenericVaultWithAddressScript, + []argument{ + { + Type: "UFix64", + Name: "amount", + Label: "Amount", + SampleValues: []cadenceValue{sampleAmount}, }, { - Type: "PublicPath", - Name: "receiverPath", - Label: "Recipient's Receiver Path", - SampleValues: []cadenceValue{samplePublicPath}, + Type: "Address", + Name: "to", + Label: "Recipient", + SampleValues: []cadenceValue{sampleAddress(env.Network)}, + }, + { + Type: "Address", + Name: "contractAddress", + Label: "FT Contract Address", + SampleValues: []cadenceValue{sampleAddress(env.Network)}, + }, + { + Type: "String", + Name: "contractName", + Label: "FT Contract Name", + SampleValues: []cadenceValue{sampleFTContractName}, }, }, )) @@ -308,16 +337,42 @@ func generateManifest(env templates.Environment) *manifest { )) m.addTemplate(generateTemplate( - "NFT.02", "Transfer NFT", + "NFT.02", "Transfer NFT with Paths", env, - templates.GenerateTransferGenericNFTScript, + templates.GenerateTransferGenericNFTWithPathsScript, []argument{ + { + Type: "Address", + Name: "to", + Label: "Recipient", + SampleValues: []cadenceValue{sampleAddress(env.Network)}, + }, { Type: "UInt64", Name: "id", Label: "NFT ID to Transfer", SampleValues: []cadenceValue{sampleID}, }, + { + Type: "String", + Name: "senderPathIdentifier", + Label: "Sender's Collection Path Identifier", + SampleValues: []cadenceValue{sampleStoragePathID}, + }, + { + Type: "String", + Name: "receiverPathIdentifier", + Label: "Recipient's Receiver Path Identifier", + SampleValues: []cadenceValue{samplePublicPathID}, + }, + }, + )) + + m.addTemplate(generateTemplate( + "NFT.03", "Transfer NFT with Address", + env, + templates.GenerateTransferGenericNFTWithAddressScript, + []argument{ { Type: "Address", Name: "to", @@ -325,16 +380,22 @@ func generateManifest(env templates.Environment) *manifest { SampleValues: []cadenceValue{sampleAddress(env.Network)}, }, { - Type: "StoragePath", - Name: "senderPath", - Label: "Sender's Collection Path", - SampleValues: []cadenceValue{sampleStoragePath}, + Type: "UInt64", + Name: "id", + Label: "NFT ID to Transfer", + SampleValues: []cadenceValue{sampleID}, + }, + { + Type: "Address", + Name: "contractAddress", + Label: "NFT Contract Address", + SampleValues: []cadenceValue{sampleAddress(env.Network)}, }, { - Type: "PublicPath", - Name: "receiverPath", - Label: "Recipient's Receiver Path", - SampleValues: []cadenceValue{samplePublicPath}, + Type: "String", + Name: "contractName", + Label: "NFT Contract Name", + SampleValues: []cadenceValue{sampleNFTContractName}, }, }, )) diff --git a/lib/go/templates/go.mod b/lib/go/templates/go.mod index 5c16b0ed0..9e6694cb4 100644 --- a/lib/go/templates/go.mod +++ b/lib/go/templates/go.mod @@ -5,9 +5,9 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.24.0+incompatible github.com/onflow/cadence v1.0.0-M3 - github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240209175139-2ab8303b23b7 + github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876 github.com/onflow/flow-go-sdk v1.0.0-M1 - github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240209175113-e3b2202ee7a7 + github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8 github.com/psiemens/sconfig v0.1.0 github.com/spf13/cobra v1.5.0 ) @@ -22,7 +22,6 @@ require ( github.com/fsnotify/fsnotify v1.6.0 // indirect github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c // indirect github.com/fxamacker/circlehash v0.3.0 // indirect - github.com/golang/protobuf v1.5.3 // indirect github.com/hashicorp/hcl v1.0.0 // indirect github.com/holiman/uint256 v1.2.3 // indirect github.com/inconshreveable/mousetrap v1.0.0 // indirect @@ -37,8 +36,6 @@ require ( github.com/mitchellh/mapstructure v1.4.1 // indirect github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f // indirect github.com/onflow/crypto v0.25.0 // indirect - github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 // indirect - github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba // indirect github.com/pelletier/go-toml v1.2.0 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect @@ -61,7 +58,6 @@ require ( golang.org/x/text v0.14.0 // indirect golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect gonum.org/v1/gonum v0.13.0 // indirect - google.golang.org/protobuf v1.31.0 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index fa252451d..007d9a268 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -1615,15 +1615,14 @@ github.com/onflow/cadence v1.0.0-M3 h1:bSydJise9pU4aALloUKv/EWmDLITRlbBpuG8OPByd github.com/onflow/cadence v1.0.0-M3/go.mod h1:odXGZZ/wGNA5mwT8bC9v8u8EXACHllB2ABSZK65TGL8= github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= -github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240209175139-2ab8303b23b7 h1:gTfNhnUGDdHStqqsPqWjqQ5ewqeWBH+VttcOWyh2EP4= -github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240209175139-2ab8303b23b7/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= +github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876 h1:fZj39XxayIL7uvKvonNI3MtQM3wsFJ8oRl/XW/0rn7A= +github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= -github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240209175113-e3b2202ee7a7 h1:7pHK+IcNjHjXqV87V5cTeNXTYtF3LjBLNDuh2SiGUug= -github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240209175113-e3b2202ee7a7/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= +github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8 h1:BqgQgXktxVFv8erjCaSHpL0CP+pa5M8g655GyF/t4JM= +github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= -github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba h1:rIehuhO6bj4FkwE4VzwEjX7MoAlOhUJENBJLqDqVxAo= github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.10.3/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= diff --git a/lib/go/templates/manifest.mainnet.json b/lib/go/templates/manifest.mainnet.json index fdc865d6e..adff78d60 100755 --- a/lib/go/templates/manifest.mainnet.json +++ b/lib/go/templates/manifest.mainnet.json @@ -160,8 +160,8 @@ }, { "id": "FT.02", - "name": "Transfer Fungible Token", - "source": "import FungibleToken from 0xf233dcee88fe0abe\n\n/// Can pass in any storage path and receiver path instead of just the default.\n/// This lets you choose the token you want to send as well the capability you want to send it to.\n///\n/// Any token path can be passed as an argument here, so wallets should\n/// should check argument values to make sure the intended token path is passed in\n///\ntransaction(amount: UFix64, to: Address, senderPath: StoragePath, receiverPath: PublicPath) {\n\n // The Vault resource that holds the tokens that are being transferred\n let tempVault: @{FungibleToken.Vault}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Get a reference to the signer's stored vault\n let vaultRef = signer.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026{FungibleToken.Provider}\u003e(from: senderPath)\n\t\t\t?? panic(\"Could not borrow reference to the owner's Vault!\")\n\n self.tempVault \u003c- vaultRef.withdraw(amount: amount)\n }\n\n execute {\n let recipient = getAccount(to)\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{FungibleToken.Receiver}\u003e(receiverPath)\n ?? panic(\"Could not borrow reference to the recipient's Receiver!\")\n\n // Transfer tokens from the signer's stored vault to the receiver capability\n receiverRef.deposit(from: \u003c-self.tempVault)\n }\n}", + "name": "Transfer Fungible Token with Paths", + "source": "import FungibleToken from 0xf233dcee88fe0abe\n\n/// Can pass in any storage path and receiver path identifier instead of just the default.\n/// This lets you choose the token you want to send as well the capability you want to send it to.\n///\n/// Any token path can be passed as an argument here, so wallets should\n/// should check argument values to make sure the intended token path is passed in\n///\ntransaction(amount: UFix64, to: Address, senderPathIdentifier: String, receiverPathIdentifier: String) {\n\n // The Vault resource that holds the tokens that are being transferred\n let tempVault: @{FungibleToken.Vault}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n let storagePath = StoragePath(identifier: senderPathIdentifier)\n ?? panic(\"Could not construct a storage path from the provided path identifier string\")\n\n // Get a reference to the signer's stored vault\n let vaultRef = signer.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026{FungibleToken.Provider}\u003e(from: storagePath)\n\t\t\t?? panic(\"Could not borrow reference to the owner's Vault!\")\n\n self.tempVault \u003c- vaultRef.withdraw(amount: amount)\n }\n\n execute {\n let publicPath = PublicPath(identifier: receiverPathIdentifier)\n ?? panic(\"Could not construct a public path from the provided path identifier string\")\n\n let recipient = getAccount(to)\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{FungibleToken.Receiver}\u003e(publicPath)\n ?? panic(\"Could not borrow reference to the recipient's Receiver!\")\n\n // Transfer tokens from the signer's stored vault to the receiver capability\n receiverRef.deposit(from: \u003c-self.tempVault)\n }\n}", "arguments": [ { "type": "UFix64", @@ -186,36 +186,83 @@ ] }, { - "type": "StoragePath", - "name": "senderPath", - "label": "Sender's Collection Path", + "type": "String", + "name": "senderPathIdentifier", + "label": "Sender's Collection Path Identifier", "sampleValues": [ { - "value": { - "domain": "storage", - "identifier": "samplePathIdentifier" - }, - "type": "Path" + "value": "flowTokenVault", + "type": "String" } ] }, { - "type": "PublicPath", - "name": "receiverPath", - "label": "Recipient's Receiver Path", + "type": "String", + "name": "receiverPathIdentifier", + "label": "Recipient's Receiver Path Identifier", "sampleValues": [ { - "value": { - "domain": "storage", - "identifier": "samplePathIdentifier" - }, - "type": "Path" + "value": "flowTokenReceiver", + "type": "String" + } + ] + } + ], + "network": "mainnet", + "hash": "6e5b8c83a3e8445eaa4bed391978443f124d9aa457fabdbaa016e0f65b57591e" + }, + { + "id": "FT.03", + "name": "Transfer Fungible Token with Address", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FungibleTokenMetadataViews from 0xf233dcee88fe0abe\n\n/// Can pass in any contract address and name to transfer a token from that contract\n/// This lets you choose the token you want to send\n///\n/// Any contract can be chosen here, so wallets should check argument values\n/// to make sure the intended token path is passed in\n///\ntransaction(amount: UFix64, to: Address, contractAddress: Address, contractName: String) {\n\n // The Vault resource that holds the tokens that are being transferred\n let tempVault: @{FungibleToken.Vault}\n\n // FTVaultData struct to get paths from\n let vaultData: FungibleTokenMetadataViews.FTVaultData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the vault stored on the passed account at the passed publicPath\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026FungibleToken\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the fungible token contract\")\n\n // Use that reference to retrieve the FTView \n self.vaultData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cFungibleTokenMetadataViews.FTVaultData\u003e()) as! FungibleTokenMetadataViews.FTVaultData?\n ?? panic(\"Could not resolve the FTVaultData view for the given Fungible token contract\")\n\n // Get a reference to the signer's stored vault\n let vaultRef = signer.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026{FungibleToken.Provider}\u003e(from: self.vaultData.storagePath)\n\t\t\t?? panic(\"Could not borrow reference to the owner's Vault!\")\n\n self.tempVault \u003c- vaultRef.withdraw(amount: amount)\n }\n\n execute {\n let recipient = getAccount(to)\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{FungibleToken.Receiver}\u003e(self.vaultData.receiverPath)\n ?? panic(\"Could not borrow reference to the recipient's Receiver!\")\n\n // Transfer tokens from the signer's stored vault to the receiver capability\n receiverRef.deposit(from: \u003c-self.tempVault)\n }\n}", + "arguments": [ + { + "type": "UFix64", + "name": "amount", + "label": "Amount", + "sampleValues": [ + { + "value": "92233720368.54775808", + "type": "UFix64" + } + ] + }, + { + "type": "Address", + "name": "to", + "label": "Recipient", + "sampleValues": [ + { + "value": "0xe467b9dd11fa00df", + "type": "Address" + } + ] + }, + { + "type": "Address", + "name": "contractAddress", + "label": "FT Contract Address", + "sampleValues": [ + { + "value": "0xe467b9dd11fa00df", + "type": "Address" + } + ] + }, + { + "type": "String", + "name": "contractName", + "label": "FT Contract Name", + "sampleValues": [ + { + "value": "FiatToken", + "type": "String" } ] } ], "network": "mainnet", - "hash": "45f365ce6b9a048f85b02c03d3311961358e0b623e5c87165ab25bcc90638c60" + "hash": "efa05208b7db01aa887f3f70ff8a3bf155749d5f8ff91f723707f2786261db36" }, { "id": "NFT.01", @@ -250,9 +297,20 @@ }, { "id": "NFT.02", - "name": "Transfer NFT", - "source": "/// This transaction is for transferring an ExampleNFT from one account to another\n\nimport \"ViewResolver\"\nimport \"MetadataViews\"\nimport 0x1d7e57aa55817448\nimport \"ExampleNFT\"\n\ntransaction(contractAddress: Address, contractName: String, recipient: Address, withdrawID: UInt64) {\n\n /// Reference to the withdrawer's collection\n let withdrawRef: auth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\n\n /// Reference of the collection to deposit the NFT to\n let receiverRef: \u0026{NonFungibleToken.Receiver}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // borrow the NFT contract as ViewResolver reference\n let viewResolver = getAccount(contractAddress).contracts.borrow\u003c\u0026ViewResolver\u003e(name: contractName)\n ?? panic(\"Could not borrow ViewResolver of given name from address\")\n\n // resolve the NFT collection data from the NFT contract\n let collectionData = viewResolver.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"ViewResolver does not resolve NFTCollectionData view\")\n\n // borrow a reference to the signer's NFT collection\n self.withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: collectionData.storagePath\n ) ?? panic(\"Account does not store an object at the specified path\")\n\n // get the recipients public account object\n let recipient = getAccount(recipient)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(collectionData.publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n self.receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n }\n\n execute {\n\n let nft \u003c- self.withdrawRef.withdraw(withdrawID: withdrawID)\n self.receiverRef.deposit(token: \u003c-nft)\n\n }\n\n post {\n !self.withdrawRef.getIDs().contains(withdrawID): \"Original owner should not have the NFT anymore\"\n }\n}\n", + "name": "Transfer NFT with Paths", + "source": "import NonFungibleToken from 0x1d7e57aa55817448\n\n/// Can pass in any storage path and receiver path instead of just the default.\n/// This lets you choose the token you want to send as well the capability you want to send it to.\n///\n/// Any token path can be passed as an argument here, so wallets should\n/// should check argument values to make sure the intended token path is passed in\n///\ntransaction(to: Address, id: UInt64, senderPathIdentifier: String, receiverPathIdentifier: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n let storagePath = StoragePath(identifier: senderPathIdentifier)\n ?? panic(\"Could not construct a storage path from the provided path identifier string\")\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n let publicPath = PublicPath(identifier: receiverPathIdentifier)\n ?? panic(\"Could not construct a public path from the provided path identifier string\")\n\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n let receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", "arguments": [ + { + "type": "Address", + "name": "to", + "label": "Recipient", + "sampleValues": [ + { + "value": "0xe467b9dd11fa00df", + "type": "Address" + } + ] + }, { "type": "UInt64", "name": "id", @@ -264,6 +322,37 @@ } ] }, + { + "type": "String", + "name": "senderPathIdentifier", + "label": "Sender's Collection Path Identifier", + "sampleValues": [ + { + "value": "flowTokenVault", + "type": "String" + } + ] + }, + { + "type": "String", + "name": "receiverPathIdentifier", + "label": "Recipient's Receiver Path Identifier", + "sampleValues": [ + { + "value": "flowTokenReceiver", + "type": "String" + } + ] + } + ], + "network": "mainnet", + "hash": "4c509996ec971e19f26d497a7daa7563bdb10d2a401b5cf214eff95beec565fc" + }, + { + "id": "NFT.03", + "name": "Transfer NFT with Address", + "source": "import NonFungibleToken from 0x1d7e57aa55817448\nimport MetadataViews from 0x1d7e57aa55817448\n\n/// Can pass in any contract address and name\n/// This lets you choose the token you want to send because\n/// the transaction gets the metadata from the provided contract.\n///\ntransaction(to: Address, id: UInt64, contractAddress: Address, contractName: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n // NFTCollectionData struct to get paths from\n let collectionData: MetadataViews.NFTCollectionData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026NonFungibleToken\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n self.collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: self.collectionData.storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(self.collectionData.publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n let receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", + "arguments": [ { "type": "Address", "name": "to", @@ -276,36 +365,41 @@ ] }, { - "type": "StoragePath", - "name": "senderPath", - "label": "Sender's Collection Path", + "type": "UInt64", + "name": "id", + "label": "NFT ID to Transfer", "sampleValues": [ { - "value": { - "domain": "storage", - "identifier": "samplePathIdentifier" - }, - "type": "Path" + "value": "10", + "type": "UInt64" } ] }, { - "type": "PublicPath", - "name": "receiverPath", - "label": "Recipient's Receiver Path", + "type": "Address", + "name": "contractAddress", + "label": "NFT Contract Address", "sampleValues": [ { - "value": { - "domain": "storage", - "identifier": "samplePathIdentifier" - }, - "type": "Path" + "value": "0xe467b9dd11fa00df", + "type": "Address" + } + ] + }, + { + "type": "String", + "name": "contractName", + "label": "NFT Contract Name", + "sampleValues": [ + { + "value": "TopShot", + "type": "String" } ] } ], "network": "mainnet", - "hash": "7c63278cf0421fd292c97bc953461939d40665833437ce5b4fb48655199fc285" + "hash": "4787be99c4a72becd7193a28dfd4f4cef3d00610b2b0dfdaba79df41792f69df" }, { "id": "TH.01", diff --git a/lib/go/templates/manifest.testnet.json b/lib/go/templates/manifest.testnet.json index 631ece4e0..6fc36dfa8 100755 --- a/lib/go/templates/manifest.testnet.json +++ b/lib/go/templates/manifest.testnet.json @@ -160,8 +160,8 @@ }, { "id": "FT.02", - "name": "Transfer Fungible Token", - "source": "import FungibleToken from 0x9a0766d93b6608b7\n\n/// Can pass in any storage path and receiver path instead of just the default.\n/// This lets you choose the token you want to send as well the capability you want to send it to.\n///\n/// Any token path can be passed as an argument here, so wallets should\n/// should check argument values to make sure the intended token path is passed in\n///\ntransaction(amount: UFix64, to: Address, senderPath: StoragePath, receiverPath: PublicPath) {\n\n // The Vault resource that holds the tokens that are being transferred\n let tempVault: @{FungibleToken.Vault}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Get a reference to the signer's stored vault\n let vaultRef = signer.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026{FungibleToken.Provider}\u003e(from: senderPath)\n\t\t\t?? panic(\"Could not borrow reference to the owner's Vault!\")\n\n self.tempVault \u003c- vaultRef.withdraw(amount: amount)\n }\n\n execute {\n let recipient = getAccount(to)\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{FungibleToken.Receiver}\u003e(receiverPath)\n ?? panic(\"Could not borrow reference to the recipient's Receiver!\")\n\n // Transfer tokens from the signer's stored vault to the receiver capability\n receiverRef.deposit(from: \u003c-self.tempVault)\n }\n}", + "name": "Transfer Fungible Token with Paths", + "source": "import FungibleToken from 0x9a0766d93b6608b7\n\n/// Can pass in any storage path and receiver path identifier instead of just the default.\n/// This lets you choose the token you want to send as well the capability you want to send it to.\n///\n/// Any token path can be passed as an argument here, so wallets should\n/// should check argument values to make sure the intended token path is passed in\n///\ntransaction(amount: UFix64, to: Address, senderPathIdentifier: String, receiverPathIdentifier: String) {\n\n // The Vault resource that holds the tokens that are being transferred\n let tempVault: @{FungibleToken.Vault}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n let storagePath = StoragePath(identifier: senderPathIdentifier)\n ?? panic(\"Could not construct a storage path from the provided path identifier string\")\n\n // Get a reference to the signer's stored vault\n let vaultRef = signer.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026{FungibleToken.Provider}\u003e(from: storagePath)\n\t\t\t?? panic(\"Could not borrow reference to the owner's Vault!\")\n\n self.tempVault \u003c- vaultRef.withdraw(amount: amount)\n }\n\n execute {\n let publicPath = PublicPath(identifier: receiverPathIdentifier)\n ?? panic(\"Could not construct a public path from the provided path identifier string\")\n\n let recipient = getAccount(to)\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{FungibleToken.Receiver}\u003e(publicPath)\n ?? panic(\"Could not borrow reference to the recipient's Receiver!\")\n\n // Transfer tokens from the signer's stored vault to the receiver capability\n receiverRef.deposit(from: \u003c-self.tempVault)\n }\n}", "arguments": [ { "type": "UFix64", @@ -186,36 +186,83 @@ ] }, { - "type": "StoragePath", - "name": "senderPath", - "label": "Sender's Collection Path", + "type": "String", + "name": "senderPathIdentifier", + "label": "Sender's Collection Path Identifier", "sampleValues": [ { - "value": { - "domain": "storage", - "identifier": "samplePathIdentifier" - }, - "type": "Path" + "value": "flowTokenVault", + "type": "String" } ] }, { - "type": "PublicPath", - "name": "receiverPath", - "label": "Recipient's Receiver Path", + "type": "String", + "name": "receiverPathIdentifier", + "label": "Recipient's Receiver Path Identifier", "sampleValues": [ { - "value": { - "domain": "storage", - "identifier": "samplePathIdentifier" - }, - "type": "Path" + "value": "flowTokenReceiver", + "type": "String" + } + ] + } + ], + "network": "testnet", + "hash": "c9b9a6156280812703c15dde74df95cd0d7d1034dd2d8bf0cccf72b607142988" + }, + { + "id": "FT.03", + "name": "Transfer Fungible Token with Address", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FungibleTokenMetadataViews from 0x9a0766d93b6608b7\n\n/// Can pass in any contract address and name to transfer a token from that contract\n/// This lets you choose the token you want to send\n///\n/// Any contract can be chosen here, so wallets should check argument values\n/// to make sure the intended token path is passed in\n///\ntransaction(amount: UFix64, to: Address, contractAddress: Address, contractName: String) {\n\n // The Vault resource that holds the tokens that are being transferred\n let tempVault: @{FungibleToken.Vault}\n\n // FTVaultData struct to get paths from\n let vaultData: FungibleTokenMetadataViews.FTVaultData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the vault stored on the passed account at the passed publicPath\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026FungibleToken\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the fungible token contract\")\n\n // Use that reference to retrieve the FTView \n self.vaultData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cFungibleTokenMetadataViews.FTVaultData\u003e()) as! FungibleTokenMetadataViews.FTVaultData?\n ?? panic(\"Could not resolve the FTVaultData view for the given Fungible token contract\")\n\n // Get a reference to the signer's stored vault\n let vaultRef = signer.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026{FungibleToken.Provider}\u003e(from: self.vaultData.storagePath)\n\t\t\t?? panic(\"Could not borrow reference to the owner's Vault!\")\n\n self.tempVault \u003c- vaultRef.withdraw(amount: amount)\n }\n\n execute {\n let recipient = getAccount(to)\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{FungibleToken.Receiver}\u003e(self.vaultData.receiverPath)\n ?? panic(\"Could not borrow reference to the recipient's Receiver!\")\n\n // Transfer tokens from the signer's stored vault to the receiver capability\n receiverRef.deposit(from: \u003c-self.tempVault)\n }\n}", + "arguments": [ + { + "type": "UFix64", + "name": "amount", + "label": "Amount", + "sampleValues": [ + { + "value": "92233720368.54775808", + "type": "UFix64" + } + ] + }, + { + "type": "Address", + "name": "to", + "label": "Recipient", + "sampleValues": [ + { + "value": "0x8c5303eaa26202d6", + "type": "Address" + } + ] + }, + { + "type": "Address", + "name": "contractAddress", + "label": "FT Contract Address", + "sampleValues": [ + { + "value": "0x8c5303eaa26202d6", + "type": "Address" + } + ] + }, + { + "type": "String", + "name": "contractName", + "label": "FT Contract Name", + "sampleValues": [ + { + "value": "FiatToken", + "type": "String" } ] } ], "network": "testnet", - "hash": "fbe5032968d55b004d4f38e40ccaeff0d98140d21276995144469899bff56735" + "hash": "53afddb176f6838569124f85d06da085b69ebaa6b81dcfeb00fb9199d48a7197" }, { "id": "NFT.01", @@ -250,9 +297,20 @@ }, { "id": "NFT.02", - "name": "Transfer NFT", - "source": "/// This transaction is for transferring an ExampleNFT from one account to another\n\nimport \"ViewResolver\"\nimport \"MetadataViews\"\nimport 0x631e88ae7f1d7c20\nimport \"ExampleNFT\"\n\ntransaction(contractAddress: Address, contractName: String, recipient: Address, withdrawID: UInt64) {\n\n /// Reference to the withdrawer's collection\n let withdrawRef: auth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\n\n /// Reference of the collection to deposit the NFT to\n let receiverRef: \u0026{NonFungibleToken.Receiver}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // borrow the NFT contract as ViewResolver reference\n let viewResolver = getAccount(contractAddress).contracts.borrow\u003c\u0026ViewResolver\u003e(name: contractName)\n ?? panic(\"Could not borrow ViewResolver of given name from address\")\n\n // resolve the NFT collection data from the NFT contract\n let collectionData = viewResolver.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"ViewResolver does not resolve NFTCollectionData view\")\n\n // borrow a reference to the signer's NFT collection\n self.withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: collectionData.storagePath\n ) ?? panic(\"Account does not store an object at the specified path\")\n\n // get the recipients public account object\n let recipient = getAccount(recipient)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(collectionData.publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n self.receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n }\n\n execute {\n\n let nft \u003c- self.withdrawRef.withdraw(withdrawID: withdrawID)\n self.receiverRef.deposit(token: \u003c-nft)\n\n }\n\n post {\n !self.withdrawRef.getIDs().contains(withdrawID): \"Original owner should not have the NFT anymore\"\n }\n}\n", + "name": "Transfer NFT with Paths", + "source": "import NonFungibleToken from 0x631e88ae7f1d7c20\n\n/// Can pass in any storage path and receiver path instead of just the default.\n/// This lets you choose the token you want to send as well the capability you want to send it to.\n///\n/// Any token path can be passed as an argument here, so wallets should\n/// should check argument values to make sure the intended token path is passed in\n///\ntransaction(to: Address, id: UInt64, senderPathIdentifier: String, receiverPathIdentifier: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n let storagePath = StoragePath(identifier: senderPathIdentifier)\n ?? panic(\"Could not construct a storage path from the provided path identifier string\")\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n let publicPath = PublicPath(identifier: receiverPathIdentifier)\n ?? panic(\"Could not construct a public path from the provided path identifier string\")\n\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n let receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", "arguments": [ + { + "type": "Address", + "name": "to", + "label": "Recipient", + "sampleValues": [ + { + "value": "0x8c5303eaa26202d6", + "type": "Address" + } + ] + }, { "type": "UInt64", "name": "id", @@ -264,6 +322,37 @@ } ] }, + { + "type": "String", + "name": "senderPathIdentifier", + "label": "Sender's Collection Path Identifier", + "sampleValues": [ + { + "value": "flowTokenVault", + "type": "String" + } + ] + }, + { + "type": "String", + "name": "receiverPathIdentifier", + "label": "Recipient's Receiver Path Identifier", + "sampleValues": [ + { + "value": "flowTokenReceiver", + "type": "String" + } + ] + } + ], + "network": "testnet", + "hash": "267278a2c41182ced41877d4ecdec086e07ee152d17e8f5b8ba910b9c91aabde" + }, + { + "id": "NFT.03", + "name": "Transfer NFT with Address", + "source": "import NonFungibleToken from 0x631e88ae7f1d7c20\nimport MetadataViews from 0x631e88ae7f1d7c20\n\n/// Can pass in any contract address and name\n/// This lets you choose the token you want to send because\n/// the transaction gets the metadata from the provided contract.\n///\ntransaction(to: Address, id: UInt64, contractAddress: Address, contractName: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n // NFTCollectionData struct to get paths from\n let collectionData: MetadataViews.NFTCollectionData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026NonFungibleToken\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n self.collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: self.collectionData.storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(self.collectionData.publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n let receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", + "arguments": [ { "type": "Address", "name": "to", @@ -276,36 +365,41 @@ ] }, { - "type": "StoragePath", - "name": "senderPath", - "label": "Sender's Collection Path", + "type": "UInt64", + "name": "id", + "label": "NFT ID to Transfer", "sampleValues": [ { - "value": { - "domain": "storage", - "identifier": "samplePathIdentifier" - }, - "type": "Path" + "value": "10", + "type": "UInt64" } ] }, { - "type": "PublicPath", - "name": "receiverPath", - "label": "Recipient's Receiver Path", + "type": "Address", + "name": "contractAddress", + "label": "NFT Contract Address", "sampleValues": [ { - "value": { - "domain": "storage", - "identifier": "samplePathIdentifier" - }, - "type": "Path" + "value": "0x8c5303eaa26202d6", + "type": "Address" + } + ] + }, + { + "type": "String", + "name": "contractName", + "label": "NFT Contract Name", + "sampleValues": [ + { + "value": "TopShot", + "type": "String" } ] } ], "network": "testnet", - "hash": "cbbf41e79e3c8e8bea325427e15c2c098441da45cff0ab95131848ec8aefa0cd" + "hash": "977f1fab609f8845472f60a23d163d810a09c0eefc111fab70e816a789a0ca7a" }, { "id": "TH.01", diff --git a/lib/go/templates/service_templates.go b/lib/go/templates/service_templates.go index e07415512..8dc2463b1 100644 --- a/lib/go/templates/service_templates.go +++ b/lib/go/templates/service_templates.go @@ -71,16 +71,24 @@ func GenerateSetupFTAccountFromAddressScript(env Environment) []byte { return ft_templates.GenerateSetupAccountFromAddressScript(env.FungibleTokenAddress, env.FungibleTokenMetadataViewsAddress) } -func GenerateTransferGenericVaultScript(env Environment) []byte { - return ft_templates.GenerateTransferGenericVaultScript(env.FungibleTokenAddress) +func GenerateTransferGenericVaultWithPathsScript(env Environment) []byte { + return ft_templates.GenerateTransferGenericVaultWithPathsScript(env.FungibleTokenAddress) +} + +func GenerateTransferGenericVaultWithAddressScript(env Environment) []byte { + return ft_templates.GenerateTransferGenericVaultWithAddressScript(env.FungibleTokenAddress, env.FungibleTokenMetadataViewsAddress) } func GenerateSetupNFTAccountFromAddressScript(env Environment) []byte { return nft_templates.GenerateSetupAccountFromAddressScript(env.NonFungibleTokenAddress, env.MetadataViewsAddress) } -func GenerateTransferGenericNFTScript(env Environment) []byte { - return nft_templates.GenerateTransferGenericNFTScript(env.NonFungibleTokenAddress) +func GenerateTransferGenericNFTWithPathsScript(env Environment) []byte { + return nft_templates.GenerateTransferGenericNFTWithPathsScript(env.NonFungibleTokenAddress) +} + +func GenerateTransferGenericNFTWithAddressScript(env Environment) []byte { + return nft_templates.GenerateTransferGenericNFTWithAddressScript(env.NonFungibleTokenAddress, env.MetadataViewsAddress) } // FlowToken Templates From 96d94e22791a94e4cad0f04504482ec2576b01bd Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 14 Feb 2024 17:12:17 -0600 Subject: [PATCH 086/160] use string args for NFT contracts --- lib/go/contracts/contracts.go | 6 ++---- lib/go/contracts/go.mod | 4 ++-- lib/go/contracts/go.sum | 6 ++++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/go/contracts/contracts.go b/lib/go/contracts/contracts.go index 84281d89d..4a74c1617 100644 --- a/lib/go/contracts/contracts.go +++ b/lib/go/contracts/contracts.go @@ -10,8 +10,6 @@ import ( ftcontracts "github.com/onflow/flow-ft/lib/go/contracts" nftcontracts "github.com/onflow/flow-nft/lib/go/contracts" - "github.com/onflow/flow-go-sdk" - "github.com/onflow/flow-core-contracts/lib/go/contracts/internal/assets" ) @@ -92,7 +90,7 @@ func FungibleTokenSwitchboard(fungibleTokenAddr string) []byte { } func NonFungibleToken(viewResolverAddress string) []byte { - return nftcontracts.NonFungibleToken(flow.HexToAddress(viewResolverAddress)) + return nftcontracts.NonFungibleToken(viewResolverAddress) } func ViewResolver() []byte { @@ -105,7 +103,7 @@ func Burner() []byte { // MetadataViews returns the MetadataViews contract interface. func MetadataViews(fungibleTokenAddr, nonFungibleTokenAddr, viewResolverAddr string) []byte { - return nftcontracts.MetadataViews(flow.HexToAddress(fungibleTokenAddr), flow.HexToAddress(nonFungibleTokenAddr), flow.HexToAddress(viewResolverAddr)) + return nftcontracts.MetadataViews(fungibleTokenAddr, nonFungibleTokenAddr, viewResolverAddr) } // FlowToken returns the FlowToken contract. diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 76d19b603..15bca2089 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -5,8 +5,7 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.23.0+incompatible github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240205224107-320aa3cf09e0 - github.com/onflow/flow-go-sdk v1.0.0-M1 - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240205233530-86ee8c352fa6 + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240214230837-cd2c42e54b4a github.com/stretchr/testify v1.8.4 ) @@ -30,6 +29,7 @@ require ( github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f // indirect github.com/onflow/cadence v1.0.0-M3 // indirect github.com/onflow/crypto v0.25.0 // indirect + github.com/onflow/flow-go-sdk v1.0.0-M1 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/rivo/uniseg v0.4.4 // indirect diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 157874140..d6ee12580 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1612,8 +1612,10 @@ github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240205224107-320aa3cf09e0 github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240205224107-320aa3cf09e0/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240205233530-86ee8c352fa6 h1:/2vvjKkWG/3cKP3IpgiGNqXi0yskn4GmNTjmeCwMoz8= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240205233530-86ee8c352fa6/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240214171305-1bf01d6aa9f9 h1:KSE5ppVoa4Du/DEqcuaPadiQL9eMzPHeJMcvqyls+Rs= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240214171305-1bf01d6aa9f9/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240214230837-cd2c42e54b4a h1:xMEtuQp4+ltfEZcw+4smv4wechSBAus4yEAtPghXZeQ= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240214230837-cd2c42e54b4a/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= From 59a36e032ee92f9e8276fe1836dcd11f9a2c27a8 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 14 Feb 2024 18:21:06 -0600 Subject: [PATCH 087/160] update collection machine account transactions to not use keylist entry --- lib/go/templates/cmd/manifest/manifest.go | 61 +++++---- lib/go/templates/internal/assets/assets.go | 12 +- lib/go/templates/manifest.mainnet.json | 129 ++++++++---------- lib/go/templates/manifest.testnet.json | 129 ++++++++---------- .../create_machine_account.cdc | 22 ++- .../stakingCollection/register_node.cdc | 21 ++- 6 files changed, 175 insertions(+), 199 deletions(-) diff --git a/lib/go/templates/cmd/manifest/manifest.go b/lib/go/templates/cmd/manifest/manifest.go index 9772dd0dc..8cecd00e8 100644 --- a/lib/go/templates/cmd/manifest/manifest.go +++ b/lib/go/templates/cmd/manifest/manifest.go @@ -141,21 +141,9 @@ func generateManifest(env templates.Environment) *manifest { sampleDelegatorID := cadenceValue{cadence.NewUInt32(42)} - sampleEmptyPublicKeys := cadence.NewArray([]cadence.Value{}) - sampleRawKey := cadence.String("f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164") sampleKey := cadenceValue{sampleRawKey} - sampleOnePublicKey := cadence.NewArray([]cadence.Value{ - cadence.String("f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164"), - }) - - sampleThreePublicKeys := cadence.NewArray([]cadence.Value{ - cadence.String("f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164"), - cadence.String("f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164"), - cadence.String("f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164"), - }) - m.addTemplate(generateTemplate( "FA.01", "Create Account", env, @@ -493,15 +481,22 @@ func generateManifest(env templates.Environment) *manifest { SampleValues: []cadenceValue{sampleAmount}, }, { - Type: "[String]?", - Name: "publicKeys", - Label: "Public Keys", - SampleValues: []cadenceValue{ - sampleNullOptional, - optionalCadenceValue(sampleEmptyPublicKeys), - optionalCadenceValue(sampleOnePublicKey), - optionalCadenceValue(sampleThreePublicKeys), - }, + Type: "String", + Name: "machineAccountKey", + Label: "Machine Account Public Key", + SampleValues: []cadenceValue{sampleKey}, + }, + { + Type: "UInt8", + Name: "machineAccountKeySignatureAlgorithm", + Label: "Raw Value for Machine Account Signature Algorithm Enum", + SampleValues: []cadenceValue{sampleSigAlgoEnumRawValue}, + }, + { + Type: "UInt8", + Name: "machineAccountKeyHashAlgorithm", + Label: "Raw Value for Machine Account Hash Algorithm Enum", + SampleValues: []cadenceValue{sampleHashAlgoEnumRawValue}, }, }, )) @@ -518,14 +513,22 @@ func generateManifest(env templates.Environment) *manifest { SampleValues: []cadenceValue{sampleNodeID}, }, { - Type: "[String]", - Name: "publicKeys", - Label: "Public Keys", - SampleValues: []cadenceValue{ - {sampleEmptyPublicKeys}, - {sampleOnePublicKey}, - {sampleThreePublicKeys}, - }, + Type: "String", + Name: "machineAccountKey", + Label: "Machine Account Public Key", + SampleValues: []cadenceValue{sampleKey}, + }, + { + Type: "UInt8", + Name: "machineAccountKeySignatureAlgorithm", + Label: "Raw Value for Machine Account Signature Algorithm Enum", + SampleValues: []cadenceValue{sampleSigAlgoEnumRawValue}, + }, + { + Type: "UInt8", + Name: "machineAccountKeyHashAlgorithm", + Label: "Raw Value for Machine Account Hash Algorithm Enum", + SampleValues: []cadenceValue{sampleHashAlgoEnumRawValue}, }, }, )) diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 90423f801..74866af23 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -246,13 +246,13 @@ // randomBeaconHistory/scripts/get_source_of_randomness.cdc (305B) // randomBeaconHistory/scripts/get_source_of_randomness_page.cdc (326B) // stakingCollection/close_stake.cdc (909B) -// stakingCollection/create_machine_account.cdc (1.303kB) +// stakingCollection/create_machine_account.cdc (1.705kB) // stakingCollection/create_new_tokenholder_acct.cdc (3.625kB) // stakingCollection/deploy_collection_contract.cdc (312B) // stakingCollection/register_delegator.cdc (826B) // stakingCollection/register_multiple_delegators.cdc (878B) // stakingCollection/register_multiple_nodes.cdc (1.695kB) -// stakingCollection/register_node.cdc (1.573kB) +// stakingCollection/register_node.cdc (1.96kB) // stakingCollection/request_unstaking.cdc (835B) // stakingCollection/restake_all_stakers.cdc (1.416kB) // stakingCollection/scripts/does_account_have_staking_collection.cdc (260B) @@ -5284,7 +5284,7 @@ func stakingcollectionClose_stakeCdc() (*asset, error) { return a, nil } -var _stakingcollectionCreate_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\xc1\x6e\xda\x40\x10\xbd\xfb\x2b\x5e\x73\x48\x41\x42\x4e\xce\xa8\x34\xa2\x84\x54\x51\xd2\xa4\x0a\x51\x2f\x55\x0f\x13\x7b\xb0\x57\x59\x76\xad\xd9\xa5\xc4\x6d\xf8\xf7\x6a\xbd\xc6\x81\x00\xc7\xfa\x00\xde\x5d\xcf\xbc\x37\x6f\xde\xac\x5a\x54\x56\x3c\x26\x52\x57\xde\x26\xed\xea\x4a\xdb\xd5\xcc\xd3\xb3\x32\xc5\xc4\x6a\xcd\x99\x57\xd6\x60\x2e\x76\x81\xf3\x97\xd9\xe3\xf8\xe6\xfa\xee\xeb\xe4\xfe\xf6\x76\x3a\x79\xbc\xbe\xbf\x1b\x5f\x5e\x3e\x4c\x67\xb3\x24\x39\x3b\x3b\xc3\x44\x98\x3c\x3b\x10\x16\x94\x95\xca\x30\x28\xcb\xec\xd2\x78\xcc\xad\x80\x60\x6c\xce\xf0\x25\x79\x28\x07\xd2\xc2\x94\xd7\x50\x06\xbe\x64\xb8\x08\x89\xac\xc3\x6c\x52\x92\xc9\x41\x79\xee\x50\x2d\x9f\xb4\xca\xf0\xcc\xb5\x83\xb7\x4d\x88\xe1\xd5\x06\x20\x49\xbc\x90\x71\xd4\x04\xf6\x02\xce\xf5\xe5\x10\x33\x2f\xca\x14\x83\x36\xf6\x86\x6b\x37\xc4\xcf\x58\x6d\x7a\xc3\xf5\xad\x72\x7e\x6a\xbc\xd4\xbf\xfa\xf8\x9b\x00\x40\xf3\xa3\xd9\x6f\xd8\xbc\x09\xf0\xc0\xf3\x21\x68\xe9\xcb\xde\x41\x7d\xd2\xb7\xd7\xfb\x95\x61\xe9\xe3\xf4\xf0\x77\x7b\x3b\x49\x83\x59\x09\x57\x24\xdc\x6b\xcb\x69\xa1\xbe\x58\x11\xbb\xfa\x41\x7a\xc9\x7d\x9c\x8e\xe3\xd9\x86\x6b\x78\x1c\xeb\x79\x7a\x88\x2b\x46\x1b\x65\x52\xe7\xad\x50\xc1\xe9\x53\x93\xec\xd3\xff\xa8\xe1\x73\x2f\xd8\x63\x78\xd8\x3a\xfb\x9f\xcf\x22\xa3\xef\xe4\xcb\x7e\x57\x4a\x78\x2e\x2e\x50\x91\x51\x59\xef\x64\x62\x97\x3a\x87\xb1\x1e\x91\x36\x08\xc2\x73\x16\x36\x19\x87\xf6\x13\xf6\x2d\xda\x1a\xa9\x12\xb5\x20\xa9\xb1\x74\x2c\x1f\xdd\x46\x86\x93\x7e\xd2\x41\xa9\x79\xd3\xe3\xd6\xa3\xad\xac\x18\x1d\x57\x33\xcd\x1a\x63\x7f\xdb\x09\xb8\xb2\x32\x7d\x51\xce\x2b\x53\xdc\xd9\x9c\x3b\xd3\xc5\xff\x01\x2a\xaa\x59\x86\x1b\xfc\xed\xae\xb5\x1c\xde\x5c\x89\xd1\x08\x46\x69\xbc\xbe\x6e\x6d\x7e\x48\x35\x9b\xc2\x97\xe1\xf0\xfc\x5d\x74\x63\x99\x56\x29\x32\x41\xa6\x4a\xec\x6f\x95\x33\xfe\xb0\xd8\x38\x24\x61\xe4\x82\x1e\xef\x46\xf1\x64\x57\xf2\xf5\xce\x2a\xc4\x3c\x73\x33\x93\x5b\xec\xf6\xb1\x77\xa5\x4b\x03\x5e\x4a\x79\xde\xeb\x82\x86\x21\x4d\xda\x2d\x07\x28\xc9\x95\x63\x5d\x58\x51\xbe\x5c\xc4\xd3\x9d\xad\x01\x56\xac\x8a\xd2\xc7\xa3\xf8\x7e\x8c\xe9\x1a\xac\x1d\xbf\xa3\xb5\x67\x9c\xd8\xb3\x23\x77\x51\x73\x7d\xd8\x9c\xb7\xd4\x88\xf9\xd7\xc9\x3a\xf9\x17\x00\x00\xff\xff\x6b\x55\xd8\x25\x17\x05\x00\x00" +var _stakingcollectionCreate_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x4d\x4f\xdb\x40\x14\x3c\xe3\x5f\x31\xe2\x40\x6d\x29\x32\xe9\xad\xb2\x9a\xa2\x34\x40\x89\xa0\x80\x30\xed\xfd\xe1\x7d\xb1\x57\x38\xbb\xd6\xee\x9a\x60\x55\xfc\xf7\xca\x5f\x21\x21\x86\xc2\xa1\x3e\x38\xb6\xb5\xb3\x33\x3b\x6f\xde\x8b\x5c\x16\xda\x38\xcc\x4c\x55\x38\xed\x75\x6f\xa7\xb9\x5e\xc5\x8e\xee\xa5\x4a\x67\x3a\xcf\x39\x71\x52\x2b\x2c\x8c\x5e\x62\xfc\x18\xdf\x4e\xcf\xe7\x97\x3f\x66\x57\x17\x17\x27\xb3\xdb\xf9\xd5\xe5\xf4\xf8\xf8\xe6\x24\x8e\x3d\xef\xf0\xf0\x10\x33\xc3\xe4\xd8\x82\xb0\xa4\x24\x93\x8a\x41\x49\xa2\x4b\xe5\xb0\xd0\x06\x04\xa5\x05\xc3\x65\xe4\x20\x2d\x28\x37\x4c\xa2\x82\x54\x70\x19\xc3\xb6\x94\x48\xd6\x9c\xcd\x96\xa4\x04\x48\x08\x8b\xa2\xbc\xcb\x65\x82\x7b\xae\x2c\x9c\x6e\x20\x8a\x57\x3d\x81\xe7\x39\x43\xca\x52\x03\xf4\x6b\x9e\xf9\x71\x84\xd8\x19\xa9\xd2\x11\x3c\x6c\x5c\x9d\xb4\x69\x0b\x3c\xe7\xea\xbd\xeb\x62\x99\x2a\x72\xa5\xe1\x69\x9e\x6a\x23\x5d\xb6\x8c\xf0\x6b\xae\xdc\x97\x7f\x01\xcf\xc8\x66\x2f\x31\x01\xfe\x34\xa0\xe6\x96\xb3\xeb\xcf\xff\x6c\xf9\x0d\x2f\x22\x50\xe9\x32\x7f\xb0\x22\xe1\xf3\xe3\xd5\x4a\xb1\x09\x70\x30\xbc\x6e\xe7\x8b\xd7\x70\x16\x86\x0b\x32\xec\x77\x06\x76\x54\xdf\xb5\x31\x7a\xf5\x9b\xf2\x92\x03\x1c\x74\x47\xe8\xb5\xd6\x97\xe5\x7c\x11\x0e\x69\xc5\xa4\xaf\x45\x68\x9d\x36\x94\x72\x78\xd7\x6c\xf6\xf5\x7f\x9c\xe1\x9b\x5f\x07\x32\x1a\x0e\xeb\xee\xf2\xb8\x55\x74\x4d\x2e\x0b\xb6\x6a\x75\x74\x84\x82\x94\x4c\xfc\xfd\x99\x2e\x73\x01\xa5\x1d\x5a\xd9\x20\x18\x5e\xb0\x61\x95\x70\x1d\x38\xc2\x6e\x53\x74\xd1\x2d\x8c\x5c\x92\xa9\x50\x5a\x36\x9f\x6c\x6f\xc3\x7e\xe0\xad\xa9\xe4\xa2\xa9\xf1\x76\x32\x30\x79\xdd\xcd\x30\x69\x5a\xe9\xe7\x16\xe0\x54\x9b\x93\x47\x69\x9d\x54\xe9\xa5\x16\xbc\x8e\x79\xfb\x3b\x42\x41\x15\x9b\xa8\xe7\xdf\xac\xda\x3a\x64\x32\xad\x83\x88\x09\x76\xc3\xec\x1b\x6a\x0b\x1f\xbd\x27\xfa\xdb\x36\xbe\x66\x65\xca\x0e\x54\xb3\xb6\x68\x50\x0f\x6f\xe7\x49\x6d\x9e\xa1\x15\x58\x95\x4b\x3c\xd4\xdc\x28\x8c\x7e\x90\x82\xc5\xa6\x7b\xbd\xfa\xac\xeb\x23\x4c\xb0\xd5\x52\x6f\x29\xdf\x5a\xf8\x11\xd1\x35\xd9\xc7\xf4\x6e\xee\xbb\xa3\xbd\x1d\x5f\xe7\x5c\x61\x82\xeb\xfe\xd9\xf7\xf6\xf6\xf6\x9a\x66\xec\xbf\x0c\x9c\x20\x14\x9c\x68\xc1\x67\xfc\xe8\x07\xa3\x1e\x60\x07\x66\x51\x57\x5c\xaf\x5d\x11\xbc\x31\x93\xc2\x7a\x8a\x86\x24\x84\xbf\x41\xbc\x7e\x1c\xad\x8d\xee\x36\xee\x5f\x47\x58\xb1\x4c\x33\x17\xe1\xf3\x78\x3c\x0e\xc7\xcf\x14\x4f\xe0\xdc\xf2\x8b\xc0\xed\x18\xdb\x66\xfa\x95\x7f\x87\x66\xa0\x6b\xc1\x1b\x46\x3e\x79\xed\xfd\xc9\xfb\x1b\x00\x00\xff\xff\x16\xcf\x40\xcb\xa9\x06\x00\x00" func stakingcollectionCreate_machine_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -5300,7 +5300,7 @@ func stakingcollectionCreate_machine_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/create_machine_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1d, 0xa4, 0x10, 0x94, 0x7e, 0xae, 0x9f, 0x3d, 0xcc, 0x8e, 0x8a, 0xab, 0xe0, 0xe5, 0xb3, 0x6c, 0x9d, 0x62, 0x4b, 0xb9, 0x28, 0xd5, 0x40, 0xe7, 0x88, 0xb5, 0x9f, 0xab, 0x54, 0x3e, 0x3f, 0x56}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf1, 0x98, 0x78, 0x5f, 0x62, 0xed, 0x2d, 0x91, 0x6b, 0x7e, 0x7e, 0xaa, 0x4e, 0xf9, 0xff, 0x40, 0x7, 0xb3, 0xb4, 0xc5, 0xa0, 0x46, 0x91, 0x5e, 0xca, 0xdc, 0xe, 0x68, 0x3e, 0xf6, 0xab, 0x34}} return a, nil } @@ -5404,7 +5404,7 @@ func stakingcollectionRegister_multiple_nodesCdc() (*asset, error) { return a, nil } -var _stakingcollectionRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x4d\x6f\xd3\x40\x10\xbd\xfb\x57\x0c\x3d\x14\x47\xaa\xdc\x1e\x10\x42\x16\xa1\x0a\x69\x8b\xaa\x54\x2d\x6a\x5a\x2e\x88\xc3\xd6\x1e\xdb\xab\xac\x77\xac\xd9\x35\xa9\xa1\xf9\xef\x68\xbd\xce\x87\x1b\x07\x4e\xe4\x90\xec\xee\x7c\xbd\x99\x37\x2f\xb2\xac\x88\x2d\x4c\xb9\xa9\x2c\x05\xdd\xed\x4a\xd1\x72\x6e\xc5\x42\xea\x7c\x4a\x4a\x61\x62\x25\x69\xc8\x98\x4a\x38\x7b\x9e\x3f\x4c\x66\xd7\xb7\x5f\xa6\x77\x37\x37\x97\xd3\x87\xeb\xbb\xdb\xc9\xc5\xc5\xfd\xe5\x7c\x1e\x04\xa7\xa7\xa7\x70\x8f\xb9\x34\x16\xd9\x80\x80\x14\x15\xe6\xc2\x12\x83\xd4\x60\x0b\x04\xe3\x73\x42\xb2\x4d\xca\x68\xa8\xe6\x04\xdb\xe0\x8c\xd8\xfb\x55\x98\xc8\x4c\x62\x0a\x9a\x52\x04\xa9\x33\xe2\x52\xb4\xfe\x42\xa7\xad\x8b\x28\xa9\xd6\x16\x28\x03\x4b\x0b\xd4\x06\x2c\x41\x42\x65\x29\x6d\x10\x58\x16\xda\x88\x36\x7f\x28\xd3\x18\xe6\x96\xa5\xce\x4f\x02\xd8\xf9\x30\x29\x8c\xe1\xf1\x5a\xdb\x0f\x7d\x83\x46\xbb\x24\x76\x30\x27\x69\xca\x68\xcc\x70\xfc\xd6\x6d\x86\xcd\xb0\x4b\xd7\xed\x41\xbb\x6f\x21\x86\xc7\x2b\xf9\xfc\xfe\x5d\xdf\x56\xd5\x4f\x4a\x26\x33\x6c\x4c\x0c\xdf\x3d\x39\xd1\x0c\x9b\x1b\x69\xec\xa5\xb6\xdc\xfc\x38\x1f\xc1\xef\xa0\x0d\x51\x68\xd7\xa5\xb6\x64\xdd\x63\x16\x83\xa8\x6d\x11\x0e\x72\x19\x6d\x8f\x77\x4b\x8d\x3c\x82\xe3\x61\xbf\xbd\x17\x5f\xb3\x62\xac\x04\x63\x28\x92\xc4\xf7\xd0\x96\xfa\x4c\xcc\xb4\xfc\x26\x54\x8d\x23\x38\x9e\x78\x9b\xc3\xb9\x99\x08\xaa\x2c\x1a\xc2\x0a\x63\xe8\x52\x45\xc6\x12\x8b\x1c\xa3\xa7\x36\xd9\xc7\xff\xd1\xc3\xa7\xd0\xad\x72\x3c\xbc\xe6\xfb\xee\x73\x8f\xe8\xab\xb0\xc5\xa8\x47\xd2\xf9\x39\x54\x42\xcb\x24\x3c\x9a\x52\xad\xdc\xb2\x5a\xf0\xb0\x41\x00\x63\x86\x8c\x3a\x41\xb7\x99\x02\xf6\xe5\xd4\x69\xa2\x62\x59\x0a\x6e\xa0\x36\xc8\x6f\xcd\x7a\x0c\x47\xa3\x60\x53\x4a\x66\x2d\xc7\xa5\x48\x0a\xa9\xb1\x1b\x2b\x8c\x0f\x4f\x33\xe2\x4e\x84\xb7\x94\x62\xd8\x83\xec\xe4\x20\xd3\x21\x29\xb8\xef\x7f\x2a\x61\xef\xe9\xaf\xa2\xe8\x5d\x0f\x6b\x63\x7b\x1e\xd6\x87\xff\x7d\xa5\x0f\xd1\x20\xc7\xeb\x69\x6d\x4c\xbb\xcb\xd6\x8d\x6e\xab\x24\x18\x8f\x41\x4b\x05\x2f\x2f\x3b\x8f\x6f\x22\x85\x3a\xb7\x85\x33\x9e\xbd\x8a\xf6\x85\x3c\xc1\x42\x3b\x76\x2b\xa6\x9f\x32\x45\xf8\x85\x4c\xb0\x70\x39\xd7\x7f\x59\x1d\x3b\x3b\xfc\xed\x66\x59\xf5\x6e\x2e\x66\x81\x8d\xdb\x80\x1d\x20\x03\xc5\xfb\x94\x47\xae\x60\x24\xd2\x34\xdc\x44\xc5\x2e\x4f\xb4\xb9\x9e\x40\x21\x4c\x31\x51\x39\xb1\xb4\x45\xe9\xad\xbd\xa7\x13\x58\xa2\xcc\x0b\xeb\x4d\xfe\x7c\x08\xaa\x3f\xad\x82\x55\xf0\x27\x00\x00\xff\xff\x25\xe0\x8e\x84\x25\x06\x00\x00" +var _stakingcollectionRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x4d\x4f\xdb\x4c\x10\x3e\xe3\x5f\x31\xe2\xc0\xeb\x48\x91\xc9\x2b\x55\x55\x65\x35\x45\x69\x80\x82\x40\x80\x30\xf4\x3e\x78\xc7\xf6\x0a\x7b\xd7\x9a\x5d\x13\xa2\x8a\xff\x5e\xd9\x6b\x27\x71\xe3\x84\x72\x68\x0e\xce\x7e\x3c\x33\xf3\xcc\xc7\xb3\xb2\x28\x35\x5b\x98\xf3\xb2\xb4\xda\x6b\x77\xe7\xb9\x5e\x44\x16\x9f\xa5\x4a\xe7\x3a\xcf\x29\xb6\x52\x2b\x48\x58\x17\x30\x79\x8d\x1e\x66\x57\x97\x37\x3f\xe6\xb7\xd7\xd7\x67\xf3\x87\xcb\xdb\x9b\xd9\xe9\xe9\xfd\x59\x14\x79\xde\xf1\xf1\x31\xdc\x53\x2a\x8d\x25\x36\x80\x20\x28\xa7\x14\xad\x66\x90\x0a\x6c\x46\x60\x9c\x4f\x88\xd7\x4e\x99\x8c\xae\x38\xa6\xc6\x38\xd1\xec\x70\x25\xc5\x32\x91\x24\x40\x69\x41\x20\x55\xa2\xb9\xc0\x06\x8f\x4a\x34\x10\x2c\x74\xa5\x2c\xe8\x04\xac\x7e\x26\x65\xc0\x6a\x88\x75\x51\x48\xeb\x79\x96\x51\x19\x6c\xfc\xfb\x52\x84\x10\x59\x96\x2a\x1d\x7b\xb0\xf1\x63\x9d\x53\x08\x8f\x97\xca\x7e\xe9\x5f\x28\xb2\x0b\xcd\x35\xcd\x99\x10\x4c\xc6\x0c\xdb\xaf\x61\x57\xb4\x1c\x86\xb4\xd9\xee\xbc\x77\x29\x84\xf0\x78\x2e\x5f\x3f\x7f\xea\xdf\x15\x18\x67\x52\xd1\x2c\x8e\x6b\xcc\xa6\x0b\xd8\x8f\x8b\x64\xaa\xd0\x56\x4c\xb3\x3c\xd5\x2c\x6d\x56\x74\x59\xbe\x63\x78\x81\x26\xfb\xd3\x66\x04\xbf\xbc\xc6\x2a\x27\xdb\xa5\xb3\x1e\x88\x7b\x4a\x42\xc0\xca\x66\xfe\xe0\xbc\x04\xeb\xe5\xed\x42\x11\x8f\xe0\x68\x18\xb7\x75\xe2\x62\x96\x4c\x25\x32\xf9\xe8\x28\xb6\xa1\xbe\x6b\x66\xbd\xf8\x89\x79\x45\x23\x38\x6a\xe9\xd7\x3c\x57\x55\xa7\x3c\x09\x86\xb8\xc2\x14\x5a\x57\x81\xb1\x9a\x31\xa5\xe0\xa9\x71\xf6\xf5\x5f\xe4\xf0\xcd\xaf\xe5\x12\x0e\x4b\x69\x1b\x1e\x39\x46\x77\x68\xb3\x51\xaf\x4f\x27\x27\x50\xa2\x92\xb1\x7f\x38\xd7\x55\x5e\x0b\xc2\x82\xa3\x0d\x08\x4c\x09\x31\xa9\x98\xea\xe9\x47\xd8\x96\x6c\xab\xbb\x92\x65\x81\xbc\x84\xca\x10\xff\x67\xba\x32\x1c\x8e\xbc\x55\x28\x99\x34\x3d\xee\x4f\x05\x4c\x77\x57\x33\xe0\x56\xe8\x37\x5a\x90\xdf\xa3\x5c\x4b\x4e\x8a\x21\xb9\xd5\xdf\x77\xd5\xb6\x75\xb4\x57\x78\xbd\xed\x6e\xfd\xad\xd7\xc3\x1a\x74\xff\xfd\xbb\x12\x97\xc4\x61\x57\xad\xd5\xd5\xe6\xb0\xad\xb4\x21\xd3\x5a\x3b\x30\x85\x6d\xfd\xf9\x8c\x6e\x5e\xc3\xbf\x51\x6b\xbf\xfb\xbb\x26\x20\x25\x0b\x58\x47\x75\xd6\x80\x9d\xb9\x7b\xa4\xeb\x9e\x33\x2e\x80\x54\x55\xc0\x4b\x1d\x1b\x4a\xd6\x2f\x52\x90\xd8\x6c\x7a\xc7\x3e\x6b\xa5\x0f\x53\xe8\xbd\x02\xfb\x98\xf7\x80\x1f\x21\x5d\x07\xfb\x18\xdf\x4d\xbf\x5b\xdc\xcb\xea\x29\x97\xf1\x15\x2d\x61\x0a\x77\xdd\xda\xf7\x0e\x0e\x0e\x9a\x16\x76\x27\x03\x19\x04\x82\x62\x2d\xe8\x82\x5e\xfd\xd1\xb8\x33\x30\x03\xcf\x67\xdb\x5c\xcf\x21\x46\x7b\x9e\xd1\xe0\x99\x96\x26\x40\x21\xfc\x8d\xc0\xab\xe5\x78\x55\xe8\xd6\x71\xb7\x1d\xc3\x82\x64\x9a\xd9\x10\xfe\x9f\x4c\x26\xc1\x64\x1d\xe2\xcd\x73\xdf\x37\xef\x77\x00\x00\x00\xff\xff\x1e\xb4\xdf\xf4\xa8\x07\x00\x00" func stakingcollectionRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5420,7 +5420,7 @@ func stakingcollectionRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0x7f, 0x24, 0x5b, 0x90, 0xb0, 0x58, 0x23, 0x9, 0x9f, 0x2e, 0x8c, 0xe3, 0x8b, 0x25, 0x9b, 0xc3, 0x4c, 0x7f, 0x60, 0xb9, 0xd8, 0x9b, 0x28, 0xb5, 0x4, 0xa2, 0x1, 0x5c, 0x75, 0x90, 0x99}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcb, 0x44, 0x70, 0x88, 0xcc, 0x80, 0x9b, 0x27, 0xa9, 0xeb, 0x96, 0xcd, 0x97, 0x22, 0xf5, 0xa5, 0xdb, 0xd5, 0xcd, 0xb4, 0x8, 0x5e, 0x66, 0xb, 0xf4, 0x26, 0xe2, 0xf7, 0xf0, 0x1d, 0xeb, 0xba}} return a, nil } diff --git a/lib/go/templates/manifest.mainnet.json b/lib/go/templates/manifest.mainnet.json index adff78d60..84f0c2abf 100755 --- a/lib/go/templates/manifest.mainnet.json +++ b/lib/go/templates/manifest.mainnet.json @@ -483,7 +483,7 @@ { "id": "SCO.03", "name": "Register Node", - "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n publicKeys: [Crypto.KeyListEntry]?) {\n\n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account\n ) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys! {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n machineAccountKey: String, \n machineAccountKeySignatureAlgorithm: UInt8, \n machineAccountKeyHashAlgorithm: UInt8) {\n\n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account\n ) {\n let sigAlgo = SignatureAlgorithm(rawValue: machineAccountKeySignatureAlgorithm)\n ?? panic(\"Could not get a signature algorithm from the raw enum value provided\")\n\n let hashAlgo = HashAlgorithm(rawValue: machineAccountKeyHashAlgorithm)\n ?? panic(\"Could not get a hash algorithm from the raw enum value provided\")\n \n let publicKey = PublicKey(\n\t\t\t publicKey: machineAccountKey.decodeHex(),\n\t\t\t signatureAlgorithm: sigAlgo\n\t\t )\n machineAccount.keys.add(publicKey: publicKey, hashAlgorithm: hashAlgo, weight: 1000.0)\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -552,63 +552,46 @@ ] }, { - "type": "[String]?", - "name": "publicKeys", - "label": "Public Keys", + "type": "String", + "name": "machineAccountKey", + "label": "Machine Account Public Key", "sampleValues": [ { - "value": null, - "type": "Optional" - }, - { - "value": { - "value": [], - "type": "Array" - }, - "type": "Optional" - }, + "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "type": "String" + } + ] + }, + { + "type": "UInt8", + "name": "machineAccountKeySignatureAlgorithm", + "label": "Raw Value for Machine Account Signature Algorithm Enum", + "sampleValues": [ { - "value": { - "value": [ - { - "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", - "type": "String" - } - ], - "type": "Array" - }, - "type": "Optional" - }, + "value": "1", + "type": "UInt8" + } + ] + }, + { + "type": "UInt8", + "name": "machineAccountKeyHashAlgorithm", + "label": "Raw Value for Machine Account Hash Algorithm Enum", + "sampleValues": [ { - "value": { - "value": [ - { - "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", - "type": "String" - }, - { - "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", - "type": "String" - }, - { - "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", - "type": "String" - } - ], - "type": "Array" - }, - "type": "Optional" + "value": "1", + "type": "UInt8" } ] } ], "network": "mainnet", - "hash": "4073ffd5a78fda78e2292f5cea7e19443158c1eae7ba27ea24fee5c043060290" + "hash": "3b0b2bbc3a2ad674122c182112f7008a8d3d1b60b107033c0ebe7bbe50df5267" }, { "id": "SCO.04", "name": "Create Machine Account", - "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Creates a machine account for a node that is already in the staking collection\n/// and adds public keys to the new account\n\ntransaction(nodeID: String, publicKeys: [Crypto.KeyListEntry]) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n } else {\n panic(\"Could not create a machine account for the node\")\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Creates a machine account for a node that is already in the staking collection\n/// and adds public keys to the new account\n\ntransaction(nodeID: String, \n machineAccountKey: String, \n machineAccountKeySignatureAlgorithm: UInt8, \n machineAccountKeyHashAlgorithm: UInt8) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) {\n let sigAlgo = SignatureAlgorithm(rawValue: machineAccountKeySignatureAlgorithm)\n ?? panic(\"Could not get a signature algorithm from the raw enum value provided\")\n\n let hashAlgo = HashAlgorithm(rawValue: machineAccountKeyHashAlgorithm)\n ?? panic(\"Could not get a hash algorithm from the raw enum value provided\")\n \n let publicKey = PublicKey(\n\t\t\t publicKey: machineAccountKey.decodeHex(),\n\t\t\t signatureAlgorithm: sigAlgo\n\t\t )\n machineAccount.keys.add(publicKey: publicKey, hashAlgorithm: hashAlgo, weight: 1000.0)\n } else {\n panic(\"Could not create a machine account for the node\")\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -622,45 +605,41 @@ ] }, { - "type": "[String]", - "name": "publicKeys", - "label": "Public Keys", + "type": "String", + "name": "machineAccountKey", + "label": "Machine Account Public Key", "sampleValues": [ { - "value": [], - "type": "Array" - }, + "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "type": "String" + } + ] + }, + { + "type": "UInt8", + "name": "machineAccountKeySignatureAlgorithm", + "label": "Raw Value for Machine Account Signature Algorithm Enum", + "sampleValues": [ { - "value": [ - { - "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", - "type": "String" - } - ], - "type": "Array" - }, + "value": "1", + "type": "UInt8" + } + ] + }, + { + "type": "UInt8", + "name": "machineAccountKeyHashAlgorithm", + "label": "Raw Value for Machine Account Hash Algorithm Enum", + "sampleValues": [ { - "value": [ - { - "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", - "type": "String" - }, - { - "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", - "type": "String" - }, - { - "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", - "type": "String" - } - ], - "type": "Array" + "value": "1", + "type": "UInt8" } ] } ], "network": "mainnet", - "hash": "333e2035ff1cf7fe636722804837c1498cdd3b93b1d412f56bca060a5a55aed8" + "hash": "f0a6cedb6703cd4ce4cc3b735e5edb5a7e5b17a87a725343d745e5d53b7c0a01" }, { "id": "SCO.05", diff --git a/lib/go/templates/manifest.testnet.json b/lib/go/templates/manifest.testnet.json index 6fc36dfa8..d9a9fe5c0 100755 --- a/lib/go/templates/manifest.testnet.json +++ b/lib/go/templates/manifest.testnet.json @@ -483,7 +483,7 @@ { "id": "SCO.03", "name": "Register Node", - "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n publicKeys: [Crypto.KeyListEntry]?) {\n\n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account\n ) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys! {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n machineAccountKey: String, \n machineAccountKeySignatureAlgorithm: UInt8, \n machineAccountKeyHashAlgorithm: UInt8) {\n\n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account\n ) {\n let sigAlgo = SignatureAlgorithm(rawValue: machineAccountKeySignatureAlgorithm)\n ?? panic(\"Could not get a signature algorithm from the raw enum value provided\")\n\n let hashAlgo = HashAlgorithm(rawValue: machineAccountKeyHashAlgorithm)\n ?? panic(\"Could not get a hash algorithm from the raw enum value provided\")\n \n let publicKey = PublicKey(\n\t\t\t publicKey: machineAccountKey.decodeHex(),\n\t\t\t signatureAlgorithm: sigAlgo\n\t\t )\n machineAccount.keys.add(publicKey: publicKey, hashAlgorithm: hashAlgo, weight: 1000.0)\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -552,63 +552,46 @@ ] }, { - "type": "[String]?", - "name": "publicKeys", - "label": "Public Keys", + "type": "String", + "name": "machineAccountKey", + "label": "Machine Account Public Key", "sampleValues": [ { - "value": null, - "type": "Optional" - }, - { - "value": { - "value": [], - "type": "Array" - }, - "type": "Optional" - }, + "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "type": "String" + } + ] + }, + { + "type": "UInt8", + "name": "machineAccountKeySignatureAlgorithm", + "label": "Raw Value for Machine Account Signature Algorithm Enum", + "sampleValues": [ { - "value": { - "value": [ - { - "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", - "type": "String" - } - ], - "type": "Array" - }, - "type": "Optional" - }, + "value": "1", + "type": "UInt8" + } + ] + }, + { + "type": "UInt8", + "name": "machineAccountKeyHashAlgorithm", + "label": "Raw Value for Machine Account Hash Algorithm Enum", + "sampleValues": [ { - "value": { - "value": [ - { - "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", - "type": "String" - }, - { - "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", - "type": "String" - }, - { - "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", - "type": "String" - } - ], - "type": "Array" - }, - "type": "Optional" + "value": "1", + "type": "UInt8" } ] } ], "network": "testnet", - "hash": "ea29e83e0a6e6d4382001a9e2e0397b6ee19be4fb5850c29f271673f2db85b3a" + "hash": "deb5f758f3eb3b125cd9b14a6528f18d535377709fcef41e743751eb82800921" }, { "id": "SCO.04", "name": "Create Machine Account", - "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Creates a machine account for a node that is already in the staking collection\n/// and adds public keys to the new account\n\ntransaction(nodeID: String, publicKeys: [Crypto.KeyListEntry]) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) {\n if publicKeys == nil || publicKeys!.length == 0 {\n panic(\"Cannot provide zero keys for the machine account\")\n }\n for key in publicKeys {\n machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight)\n }\n } else {\n panic(\"Could not create a machine account for the node\")\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Creates a machine account for a node that is already in the staking collection\n/// and adds public keys to the new account\n\ntransaction(nodeID: String, \n machineAccountKey: String, \n machineAccountKeySignatureAlgorithm: UInt8, \n machineAccountKeyHashAlgorithm: UInt8) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) {\n let sigAlgo = SignatureAlgorithm(rawValue: machineAccountKeySignatureAlgorithm)\n ?? panic(\"Could not get a signature algorithm from the raw enum value provided\")\n\n let hashAlgo = HashAlgorithm(rawValue: machineAccountKeyHashAlgorithm)\n ?? panic(\"Could not get a hash algorithm from the raw enum value provided\")\n \n let publicKey = PublicKey(\n\t\t\t publicKey: machineAccountKey.decodeHex(),\n\t\t\t signatureAlgorithm: sigAlgo\n\t\t )\n machineAccount.keys.add(publicKey: publicKey, hashAlgorithm: hashAlgo, weight: 1000.0)\n } else {\n panic(\"Could not create a machine account for the node\")\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -622,45 +605,41 @@ ] }, { - "type": "[String]", - "name": "publicKeys", - "label": "Public Keys", + "type": "String", + "name": "machineAccountKey", + "label": "Machine Account Public Key", "sampleValues": [ { - "value": [], - "type": "Array" - }, + "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", + "type": "String" + } + ] + }, + { + "type": "UInt8", + "name": "machineAccountKeySignatureAlgorithm", + "label": "Raw Value for Machine Account Signature Algorithm Enum", + "sampleValues": [ { - "value": [ - { - "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", - "type": "String" - } - ], - "type": "Array" - }, + "value": "1", + "type": "UInt8" + } + ] + }, + { + "type": "UInt8", + "name": "machineAccountKeyHashAlgorithm", + "label": "Raw Value for Machine Account Hash Algorithm Enum", + "sampleValues": [ { - "value": [ - { - "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", - "type": "String" - }, - { - "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", - "type": "String" - }, - { - "value": "f845b8406e4f43f79d3c1d8cacb3d5f3e7aeedb29feaeb4559fdb71a97e2fd0438565310e87670035d83bc10fe67fe314dba5363c81654595d64884b1ecad1512a64e65e020164", - "type": "String" - } - ], - "type": "Array" + "value": "1", + "type": "UInt8" } ] } ], "network": "testnet", - "hash": "bb2b73496d87ca467d5409fa41901ab80ec02d41a66b5c097b4f60625e11c69d" + "hash": "4c1ad61500bcd0d32d7aa7eb84ca9b7417219ed6d524e05de8c55fb7d50940e4" }, { "id": "SCO.05", diff --git a/transactions/stakingCollection/create_machine_account.cdc b/transactions/stakingCollection/create_machine_account.cdc index 9492318de..3d29b032a 100644 --- a/transactions/stakingCollection/create_machine_account.cdc +++ b/transactions/stakingCollection/create_machine_account.cdc @@ -4,7 +4,10 @@ import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS /// Creates a machine account for a node that is already in the staking collection /// and adds public keys to the new account -transaction(nodeID: String, publicKeys: [Crypto.KeyListEntry]) { +transaction(nodeID: String, + machineAccountKey: String, + machineAccountKeySignatureAlgorithm: UInt8, + machineAccountKeyHashAlgorithm: UInt8) { let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection @@ -13,12 +16,17 @@ transaction(nodeID: String, publicKeys: [Crypto.KeyListEntry]) { ?? panic("Could not borrow a reference to a StakingCollection in the primary user's account") if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) { - if publicKeys == nil || publicKeys!.length == 0 { - panic("Cannot provide zero keys for the machine account") - } - for key in publicKeys { - machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight) - } + let sigAlgo = SignatureAlgorithm(rawValue: machineAccountKeySignatureAlgorithm) + ?? panic("Could not get a signature algorithm from the raw enum value provided") + + let hashAlgo = HashAlgorithm(rawValue: machineAccountKeyHashAlgorithm) + ?? panic("Could not get a hash algorithm from the raw enum value provided") + + let publicKey = PublicKey( + publicKey: machineAccountKey.decodeHex(), + signatureAlgorithm: sigAlgo + ) + machineAccount.keys.add(publicKey: publicKey, hashAlgorithm: hashAlgo, weight: 1000.0) } else { panic("Could not create a machine account for the node") } diff --git a/transactions/stakingCollection/register_node.cdc b/transactions/stakingCollection/register_node.cdc index 18d7964d5..9aff5e5a3 100644 --- a/transactions/stakingCollection/register_node.cdc +++ b/transactions/stakingCollection/register_node.cdc @@ -10,7 +10,9 @@ transaction(id: String, networkingKey: String, stakingKey: String, amount: UFix64, - publicKeys: [Crypto.KeyListEntry]?) { + machineAccountKey: String, + machineAccountKeySignatureAlgorithm: UInt8, + machineAccountKeyHashAlgorithm: UInt8) { let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) &FlowStakingCollection.StakingCollection @@ -27,12 +29,17 @@ transaction(id: String, amount: amount, payer: account ) { - if publicKeys == nil || publicKeys!.length == 0 { - panic("Cannot provide zero keys for the machine account") - } - for key in publicKeys! { - machineAccount.keys.add(publicKey: key.publicKey, hashAlgorithm: key.hashAlgorithm, weight: key.weight) - } + let sigAlgo = SignatureAlgorithm(rawValue: machineAccountKeySignatureAlgorithm) + ?? panic("Could not get a signature algorithm from the raw enum value provided") + + let hashAlgo = HashAlgorithm(rawValue: machineAccountKeyHashAlgorithm) + ?? panic("Could not get a hash algorithm from the raw enum value provided") + + let publicKey = PublicKey( + publicKey: machineAccountKey.decodeHex(), + signatureAlgorithm: sigAlgo + ) + machineAccount.keys.add(publicKey: publicKey, hashAlgorithm: hashAlgo, weight: 1000.0) } } } From 426ec6e20d32f196acdfcbe3bd473d09db519fd3 Mon Sep 17 00:00:00 2001 From: Joshua Hannan Date: Tue, 27 Feb 2024 16:10:51 -0600 Subject: [PATCH 088/160] Update contract getter methods to use env (#410) * update import addresses to better format and use env * update deps * update go mod * re-add lockedaccountinfo * update ft and nft dependencies --- lib/go/contracts/contracts.go | 174 +-- lib/go/contracts/contracts_test.go | 50 +- lib/go/contracts/go.mod | 21 +- lib/go/contracts/go.sum | 29 +- lib/go/templates/go.mod | 2 +- lib/go/templates/go.sum | 2 + lib/go/templates/internal/assets/assets.go | 1065 ++++++++--------- lib/go/templates/templates.go | 49 +- lib/go/test/staking_test_helpers.go | 4 +- .../FlowServiceAccount/deposit_fees.cdc | 2 +- transactions/dkg/create_participant.cdc | 2 +- transactions/epoch/admin/advance_view.cdc | 2 +- .../epoch/admin/calculate_rewards.cdc | 2 +- transactions/epoch/admin/pay_rewards.cdc | 2 +- transactions/epoch/admin/reset_epoch.cdc | 2 +- transactions/epoch/admin/update_clusters.cdc | 2 +- .../epoch/admin/update_dkg_phase_views.cdc | 2 +- .../epoch/admin/update_epoch_config.cdc | 2 +- .../epoch/admin/update_epoch_views.cdc | 2 +- transactions/epoch/admin/update_reward.cdc | 2 +- .../epoch/admin/update_staking_views.cdc | 2 +- .../epoch/node/register_dkg_participant.cdc | 4 +- transactions/epoch/node/register_node.cdc | 6 +- transactions/epoch/node/register_qc_voter.cdc | 4 +- .../epoch/scripts/get_create_clusters.cdc | 2 +- transactions/epoch/scripts/get_randomize.cdc | 2 +- transactions/flowToken/create_forwarder.cdc | 2 +- .../admin/transfer_fees_admin.cdc | 2 +- transactions/inspect_field.cdc | 6 - .../admin/admin_create_shared_accounts.cdc | 2 +- .../admin/admin_deposit_account_creator.cdc | 2 +- .../admin/admin_remove_delegator.cdc | 2 +- .../admin/check_main_registration.cdc | 2 +- ...tody_create_account_with_lease_account.cdc | 2 +- .../custody_create_only_lease_account.cdc | 2 +- .../custody_create_only_shared_account.cdc | 2 +- .../admin/custody_create_shared_accounts.cdc | 2 +- .../admin/custody_setup_account_creator.cdc | 2 +- .../admin/deposit_locked_tokens.cdc | 2 +- .../unlock_tokens_for_multiple_accounts.cdc | 2 +- .../delegator/delegate_new_tokens.cdc | 2 +- .../delegator/delegate_rewarded_tokens.cdc | 2 +- .../delegator/delegate_unstaked_tokens.cdc | 2 +- .../delegator/get_delegator_id.cdc | 2 +- .../delegator/get_delegator_info.cdc | 2 +- .../delegator/get_delegator_node_id.cdc | 2 +- .../delegator/register_delegator.cdc | 2 +- .../delegator/request_unstaking.cdc | 2 +- .../delegator/withdraw_rewarded_tokens.cdc | 2 +- .../withdraw_rewarded_tokens_locked.cdc | 2 +- .../delegator/withdraw_unstaked_tokens.cdc | 2 +- .../lockedTokens/staker/get_node_id.cdc | 2 +- .../lockedTokens/staker/get_staker_info.cdc | 2 +- .../lockedTokens/staker/register_node.cdc | 4 +- .../lockedTokens/staker/request_unstaking.cdc | 4 +- .../lockedTokens/staker/stake_new_tokens.cdc | 4 +- .../staker/stake_rewarded_tokens.cdc | 4 +- .../staker/stake_unstaked_tokens.cdc | 4 +- .../lockedTokens/staker/unstake_all.cdc | 3 +- .../staker/update_networking_address.cdc | 2 +- .../staker/withdraw_rewarded_tokens.cdc | 2 +- .../withdraw_rewarded_tokens_locked.cdc | 3 +- .../staker/withdraw_unstaked_tokens.cdc | 3 +- .../lockedTokens/user/deposit_tokens.cdc | 2 +- .../user/get_locked_account_address.cdc | 2 +- .../user/get_locked_account_balance.cdc | 2 +- .../user/get_multiple_unlock_limits.cdc | 2 +- .../lockedTokens/user/get_total_balance.cdc | 2 +- .../lockedTokens/user/get_unlock_limit.cdc | 2 +- .../lockedTokens/user/withdraw_tokens.cdc | 2 +- .../admin/set_version_boundary.cdc | 2 +- .../quorumCertificate/admin/publish_voter.cdc | 2 +- .../quorumCertificate/create_voter.cdc | 2 +- .../stakingCollection/close_stake.cdc | 2 +- .../create_machine_account.cdc | 2 +- .../create_new_tokenholder_acct.cdc | 4 +- .../stakingCollection/register_delegator.cdc | 2 +- .../register_multiple_delegators.cdc | 2 +- .../register_multiple_nodes.cdc | 2 +- .../stakingCollection/register_node.cdc | 2 +- .../stakingCollection/request_unstaking.cdc | 2 +- .../stakingCollection/restake_all_stakers.cdc | 2 +- .../scripts/get_all_delegator_info.cdc | 2 +- .../scripts/get_all_node_info.cdc | 2 +- .../scripts/get_does_stake_exist.cdc | 2 +- .../setup_staking_collection.cdc | 4 +- .../stakingCollection/stake_new_tokens.cdc | 2 +- .../stake_rewarded_tokens.cdc | 2 +- .../stake_unstaked_tokens.cdc | 2 +- .../stakingCollection/test/deposit_tokens.cdc | 4 +- .../stakingCollection/test/get_tokens.cdc | 4 +- .../stakingCollection/transfer_delegator.cdc | 2 +- .../stakingCollection/transfer_node.cdc | 2 +- .../stakingCollection/unstake_all.cdc | 2 +- .../update_networking_address.cdc | 2 +- .../withdraw_from_machine_account.cdc | 2 +- .../withdraw_rewarded_tokens.cdc | 2 +- .../withdraw_unstaked_tokens.cdc | 2 +- transactions/stakingProxy/get_node_info.cdc | 2 +- transactions/stakingProxy/register_node.cdc | 4 +- .../stakingProxy/setup_node_account.cdc | 2 +- 101 files changed, 780 insertions(+), 835 deletions(-) delete mode 100644 transactions/inspect_field.cdc diff --git a/lib/go/contracts/contracts.go b/lib/go/contracts/contracts.go index 4a74c1617..eca5d7d72 100644 --- a/lib/go/contracts/contracts.go +++ b/lib/go/contracts/contracts.go @@ -10,6 +10,8 @@ import ( ftcontracts "github.com/onflow/flow-ft/lib/go/contracts" nftcontracts "github.com/onflow/flow-nft/lib/go/contracts" + "github.com/onflow/flow-core-contracts/lib/go/templates" + "github.com/onflow/flow-core-contracts/lib/go/contracts/internal/assets" ) @@ -20,7 +22,7 @@ import ( /// /// Example /// -/// flowTokenCode := contracts.FlowToken(fungibleTokenAddr) +/// flowTokenCode := contracts.FlowToken(env) /// const ( @@ -75,22 +77,22 @@ func withHexPrefix(address string) string { } // FungibleToken returns the FungibleToken contract interface. -func FungibleToken(viewResolverAddress, burnerAddress string) []byte { - return ftcontracts.FungibleToken(viewResolverAddress, burnerAddress) +func FungibleToken(env templates.Environment) []byte { + return ftcontracts.FungibleToken(env.ViewResolverAddress, env.BurnerAddress) } // FungibleTokenMetadataViews returns the FungibleTokenMetadataViews contract interface. -func FungibleTokenMetadataViews(fungibleTokenAddr, metadataViewsAddr, viewResolverAddress string) []byte { - return ftcontracts.FungibleTokenMetadataViews(fungibleTokenAddr, metadataViewsAddr, viewResolverAddress) +func FungibleTokenMetadataViews(env templates.Environment) []byte { + return ftcontracts.FungibleTokenMetadataViews(env.FungibleTokenAddress, env.MetadataViewsAddress, env.ViewResolverAddress) } // FungibleTokenSwitchboard returns the FungibleTokenSwitchboard contract interface. -func FungibleTokenSwitchboard(fungibleTokenAddr string) []byte { - return ftcontracts.FungibleTokenSwitchboard(fungibleTokenAddr) +func FungibleTokenSwitchboard(env templates.Environment) []byte { + return ftcontracts.FungibleTokenSwitchboard(env.FungibleTokenAddress) } -func NonFungibleToken(viewResolverAddress string) []byte { - return nftcontracts.NonFungibleToken(viewResolverAddress) +func NonFungibleToken(env templates.Environment) []byte { + return nftcontracts.NonFungibleToken(env.ViewResolverAddress) } func ViewResolver() []byte { @@ -102,41 +104,17 @@ func Burner() []byte { } // MetadataViews returns the MetadataViews contract interface. -func MetadataViews(fungibleTokenAddr, nonFungibleTokenAddr, viewResolverAddr string) []byte { - return nftcontracts.MetadataViews(fungibleTokenAddr, nonFungibleTokenAddr, viewResolverAddr) +func MetadataViews(env templates.Environment) []byte { + return nftcontracts.MetadataViews(env.FungibleTokenAddress, env.NonFungibleTokenAddress, env.ViewResolverAddress) } // FlowToken returns the FlowToken contract. // // The returned contract will import the FungibleToken contract from the specified address. -func FlowToken(fungibleTokenAddress, fungibleTokenMVAddress, metadataViewsAddress, burnerAddress string) []byte { +func FlowToken(env templates.Environment) []byte { code := assets.MustAssetString(flowTokenFilename) - // Replace the fungible token placeholder address - // with the provided address - code = strings.ReplaceAll( - code, - placeholderFungibleTokenAddress, - withHexPrefix(fungibleTokenAddress), - ) - - code = strings.ReplaceAll( - code, - placeholderFungibleTokenMVAddress, - withHexPrefix(fungibleTokenMVAddress), - ) - - code = strings.ReplaceAll( - code, - placeholderMetadataViewsAddress, - withHexPrefix(metadataViewsAddress), - ) - - code = strings.ReplaceAll( - code, - placeholderBurnerAddress, - withHexPrefix(burnerAddress), - ) + code = templates.ReplaceAddresses(code, env) // Replace the init method storage operations code = strings.ReplaceAll( @@ -159,26 +137,10 @@ func FlowToken(fungibleTokenAddress, fungibleTokenMVAddress, metadataViewsAddres // // The returned contract will import the FungibleToken and FlowToken // contracts from the specified addresses. -func FlowFees(fungibleTokenAddress, flowTokenAddress, storageFees string) []byte { +func FlowFees(env templates.Environment) []byte { code := assets.MustAssetString(flowFeesFilename) - code = strings.ReplaceAll( - code, - placeholderFungibleTokenAddress, - withHexPrefix(fungibleTokenAddress), - ) - - code = strings.ReplaceAll( - code, - placeholderFlowTokenAddress, - withHexPrefix(flowTokenAddress), - ) - - code = strings.ReplaceAll( - code, - placeholderStorageFeesAddress, - withHexPrefix(storageFees), - ) + code = templates.ReplaceAddresses(code, env) // Replace the init method storage operations code = strings.ReplaceAll( @@ -199,20 +161,10 @@ func FlowFees(fungibleTokenAddress, flowTokenAddress, storageFees string) []byte // FlowStorageFees returns the FlowStorageFees contract // which imports the fungible token and flow token contracts -func FlowStorageFees(fungibleTokenAddress, flowTokenAddress string) []byte { +func FlowStorageFees(env templates.Environment) []byte { code := assets.MustAssetString(storageFeesFilename) - code = strings.ReplaceAll( - code, - placeholderFungibleTokenAddress, - withHexPrefix(fungibleTokenAddress), - ) - - code = strings.ReplaceAll( - code, - placeholderFlowTokenAddress, - withHexPrefix(flowTokenAddress), - ) + code = templates.ReplaceAddresses(code, env) return []byte(code) } @@ -221,50 +173,19 @@ func FlowStorageFees(fungibleTokenAddress, flowTokenAddress string) []byte { // // The returned contract will import the FungibleToken, FlowToken, FlowFees, and FlowStorageFees // contracts from the specified addresses. -func FlowServiceAccount(fungibleTokenAddress, flowTokenAddress, flowFeesAddress, storageFeesAddress string) []byte { +func FlowServiceAccount(env templates.Environment) []byte { code := assets.MustAssetString(flowServiceAccountFilename) - code = strings.ReplaceAll( - code, - placeholderFungibleTokenAddress, - withHexPrefix(fungibleTokenAddress), - ) - - code = strings.ReplaceAll( - code, - placeholderFlowTokenAddress, - withHexPrefix(flowTokenAddress), - ) - - code = strings.ReplaceAll( - code, - placeholderFlowFeesAddress, - withHexPrefix(flowFeesAddress), - ) - - code = strings.ReplaceAll( - code, - placeholderStorageFeesAddress, - withHexPrefix(storageFeesAddress), - ) + code = templates.ReplaceAddresses(code, env) return []byte(code) } // FlowIDTableStaking returns the FlowIDTableStaking contract -// -// # The staking contract imports the FungibleToken and FlowToken contracts -// -// Parameter: latest: indicates if the contract is the latest version, or an old version. Used to test upgrades -func FlowIDTableStaking(fungibleTokenAddress, flowTokenAddress, flowFeesAddress, burnerAddress string, latest bool) []byte { - var code string +func FlowIDTableStaking(env templates.Environment) []byte { + code := assets.MustAssetString(flowIdentityTableFilename) - code = assets.MustAssetString(flowIdentityTableFilename) - - code = strings.ReplaceAll(code, placeholderFungibleTokenAddress, withHexPrefix(fungibleTokenAddress)) - code = strings.ReplaceAll(code, placeholderFlowTokenAddress, withHexPrefix(flowTokenAddress)) - code = strings.ReplaceAll(code, placeholderFlowFeesAddress, withHexPrefix(flowFeesAddress)) - code = strings.ReplaceAll(code, placeholderBurnerAddress, withHexPrefix(burnerAddress)) + code = templates.ReplaceAddresses(code, env) return []byte(code) } @@ -277,27 +198,11 @@ func FlowStakingProxy() []byte { // FlowStakingCollection returns the StakingCollection contract. func FlowStakingCollection( - fungibleTokenAddress, - flowTokenAddress, - idTableAddress, - stakingProxyAddress, - lockedTokensAddress, - storageFeesAddress, - qcAddress, - dkgAddress, - epochAddress string, + env templates.Environment, ) []byte { code := assets.MustAssetString(flowStakingCollectionFilename) - code = strings.ReplaceAll(code, placeholderFungibleTokenAddress, withHexPrefix(fungibleTokenAddress)) - code = strings.ReplaceAll(code, placeholderFlowTokenAddress, withHexPrefix(flowTokenAddress)) - code = strings.ReplaceAll(code, placeholderIDTableAddress, withHexPrefix(idTableAddress)) - code = strings.ReplaceAll(code, placeholderStakingProxyAddress, withHexPrefix(stakingProxyAddress)) - code = strings.ReplaceAll(code, placeholderLockedTokensAddress, withHexPrefix(lockedTokensAddress)) - code = strings.ReplaceAll(code, placeholderStorageFeesAddress, withHexPrefix(storageFeesAddress)) - code = strings.ReplaceAll(code, placeholderQCAddr, withHexPrefix(qcAddress)) - code = strings.ReplaceAll(code, placeholderDKGAddr, withHexPrefix(dkgAddress)) - code = strings.ReplaceAll(code, placeholderEpochAddr, withHexPrefix(epochAddress)) + code = templates.ReplaceAddresses(code, env) return []byte(code) } @@ -306,19 +211,11 @@ func FlowStakingCollection( // // Locked Tokens imports FungibleToken, FlowToken, FlowIDTableStaking, StakingProxy, and FlowStorageFees func FlowLockedTokens( - fungibleTokenAddress, - flowTokenAddress, - idTableAddress, - stakingProxyAddress, - storageFeesAddress string, + env templates.Environment, ) []byte { code := assets.MustAssetString(flowLockedTokensFilename) - code = strings.ReplaceAll(code, placeholderFungibleTokenAddress, withHexPrefix(fungibleTokenAddress)) - code = strings.ReplaceAll(code, placeholderFlowTokenAddress, withHexPrefix(flowTokenAddress)) - code = strings.ReplaceAll(code, placeholderIDTableAddress, withHexPrefix(idTableAddress)) - code = strings.ReplaceAll(code, placeholderStakingProxyAddress, withHexPrefix(stakingProxyAddress)) - code = strings.ReplaceAll(code, placeholderStorageFeesAddress, withHexPrefix(storageFeesAddress)) + code = templates.ReplaceAddresses(code, env) return []byte(code) } @@ -338,21 +235,10 @@ func FlowDKG() []byte { } // FlowEpoch returns the FlowEpoch contract. -func FlowEpoch(fungibleTokenAddress, - flowTokenAddress, - idTableAddress, - qcAddress, - dkgAddress string, - flowFeesAddress string, -) []byte { +func FlowEpoch(env templates.Environment) []byte { code := assets.MustAssetString(flowEpochFilename) - code = strings.ReplaceAll(code, placeholderFungibleTokenAddress, withHexPrefix(fungibleTokenAddress)) - code = strings.ReplaceAll(code, placeholderFlowTokenAddress, withHexPrefix(flowTokenAddress)) - code = strings.ReplaceAll(code, placeholderIDTableAddress, withHexPrefix(idTableAddress)) - code = strings.ReplaceAll(code, placeholderQCAddr, withHexPrefix(qcAddress)) - code = strings.ReplaceAll(code, placeholderDKGAddr, withHexPrefix(dkgAddress)) - code = strings.ReplaceAll(code, placeholderFlowFeesAddress, withHexPrefix(flowFeesAddress)) + code = templates.ReplaceAddresses(code, env) return []byte(code) } diff --git a/lib/go/contracts/contracts_test.go b/lib/go/contracts/contracts_test.go index 9213fff14..2b568da19 100644 --- a/lib/go/contracts/contracts_test.go +++ b/lib/go/contracts/contracts_test.go @@ -5,6 +5,8 @@ import ( "github.com/stretchr/testify/assert" + "github.com/onflow/flow-core-contracts/lib/go/templates" + "github.com/onflow/flow-core-contracts/lib/go/contracts" ) @@ -13,27 +15,53 @@ const ( ) func TestFlowTokenContract(t *testing.T) { - contract := contracts.FlowToken(fakeAddr, fakeAddr, fakeAddr, fakeAddr) + env := templates.Environment{ + FungibleTokenAddress: fakeAddr, + ViewResolverAddress: fakeAddr, + BurnerAddress: fakeAddr, + } + contract := contracts.FlowToken(env) assert.NotNil(t, contract) } func TestFlowFeesContract(t *testing.T) { - contract := contracts.FlowFees(fakeAddr, fakeAddr, fakeAddr) + env := templates.Environment{ + FungibleTokenAddress: fakeAddr, + FlowTokenAddress: fakeAddr, + StorageFeesAddress: fakeAddr, + } + contract := contracts.FlowFees(env) assert.NotNil(t, contract) } func TestStorageFeesContract(t *testing.T) { - contract := contracts.FlowStorageFees(fakeAddr, fakeAddr) + env := templates.Environment{ + FungibleTokenAddress: fakeAddr, + FlowTokenAddress: fakeAddr, + } + contract := contracts.FlowStorageFees(env) assert.NotNil(t, contract) } func TestFlowServiceAccountContract(t *testing.T) { - contract := contracts.FlowServiceAccount(fakeAddr, fakeAddr, fakeAddr, fakeAddr) + env := templates.Environment{ + FungibleTokenAddress: fakeAddr, + FlowTokenAddress: fakeAddr, + StorageFeesAddress: fakeAddr, + FlowFeesAddress: fakeAddr, + } + contract := contracts.FlowServiceAccount(env) assert.NotNil(t, contract) } func TestFlowIdentityTableContract(t *testing.T) { - contract := contracts.FlowIDTableStaking(fakeAddr, fakeAddr, fakeAddr, fakeAddr, true) + env := templates.Environment{ + FungibleTokenAddress: fakeAddr, + FlowTokenAddress: fakeAddr, + BurnerAddress: fakeAddr, + FlowFeesAddress: fakeAddr, + } + contract := contracts.FlowIDTableStaking(env) assert.NotNil(t, contract) } @@ -43,7 +71,17 @@ func TestFlowQCContract(t *testing.T) { } func TestStakingCollection(t *testing.T) { - contract := contracts.FlowStakingCollection(fakeAddr, fakeAddr, fakeAddr, fakeAddr, fakeAddr, fakeAddr, fakeAddr, fakeAddr, fakeAddr) + env := templates.Environment{ + FungibleTokenAddress: fakeAddr, + FlowTokenAddress: fakeAddr, + StorageFeesAddress: fakeAddr, + IDTableAddress: fakeAddr, + LockedTokensAddress: fakeAddr, + QuorumCertificateAddress: fakeAddr, + DkgAddress: fakeAddr, + EpochAddress: fakeAddr, + } + contract := contracts.FlowStakingCollection(env) assert.NotNil(t, contract) } diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 15bca2089..f100cf28d 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -3,8 +3,9 @@ module github.com/onflow/flow-core-contracts/lib/go/contracts go 1.18 require ( - github.com/kevinburke/go-bindata v3.23.0+incompatible - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240205224107-320aa3cf09e0 + github.com/kevinburke/go-bindata v3.24.0+incompatible + github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9 + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240213220156-959b70719876 github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240214230837-cd2c42e54b4a github.com/stretchr/testify v1.8.4 ) @@ -16,24 +17,39 @@ require ( github.com/davecgh/go-spew v1.1.1 // indirect github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect github.com/ethereum/go-ethereum v1.13.5 // indirect + github.com/fsnotify/fsnotify v1.6.0 // indirect github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c // indirect github.com/fxamacker/circlehash v0.3.0 // indirect + github.com/hashicorp/hcl v1.0.0 // indirect github.com/holiman/uint256 v1.2.3 // indirect + github.com/inconshreveable/mousetrap v1.0.0 // indirect github.com/k0kubun/pp v3.0.1+incompatible // indirect github.com/klauspost/cpuid/v2 v2.2.5 // indirect github.com/kr/pretty v0.3.1 // indirect github.com/kr/text v0.2.0 // indirect github.com/logrusorgru/aurora/v4 v4.0.0 // indirect + github.com/magiconair/properties v1.8.0 // indirect github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-isatty v0.0.19 // indirect + github.com/mitchellh/mapstructure v1.4.1 // indirect github.com/onflow/atree v0.6.1-0.20230711151834-86040b30171f // indirect github.com/onflow/cadence v1.0.0-M3 // indirect github.com/onflow/crypto v0.25.0 // indirect + github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876 // indirect github.com/onflow/flow-go-sdk v1.0.0-M1 // indirect + github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8 // indirect + github.com/pelletier/go-toml v1.2.0 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect + github.com/psiemens/sconfig v0.1.0 // indirect github.com/rivo/uniseg v0.4.4 // indirect github.com/rogpeppe/go-internal v1.9.0 // indirect + github.com/spf13/afero v1.9.2 // indirect + github.com/spf13/cast v1.3.0 // indirect + github.com/spf13/cobra v1.5.0 // indirect + github.com/spf13/jwalterweatherman v1.0.0 // indirect + github.com/spf13/pflag v1.0.5 // indirect + github.com/spf13/viper v1.4.0 // indirect github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c // indirect github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d // indirect github.com/x448/float16 v0.8.4 // indirect @@ -45,6 +61,7 @@ require ( golang.org/x/text v0.14.0 // indirect golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect gonum.org/v1/gonum v0.13.0 // indirect + gopkg.in/yaml.v2 v2.4.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index d6ee12580..14ae6ebd9 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -942,6 +942,7 @@ github.com/AzureAD/microsoft-authentication-library-for-go v1.0.0/go.mod h1:kgDm github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/toml v1.1.0/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= github.com/BurntSushi/toml v1.2.1/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= +github.com/BurntSushi/toml v1.3.2 h1:o7IhLm0Msx3BaB+n3Ag7L8EVlByGnpq14C4YWiu/gL8= github.com/BurntSushi/toml v1.3.2/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/CloudyKit/fastprinter v0.0.0-20170127035650-74b38d55f37a/go.mod h1:EFZQ978U7x8IRnstaskI3IysnWY5Ao3QgZUKOXlsAdw= @@ -1181,6 +1182,7 @@ github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90/go.mod h1:R/bRT+9gY/ github.com/fogleman/gg v1.3.0/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= +github.com/fsnotify/fsnotify v1.6.0 h1:n+5WquG0fcWoWp6xPWfHdbskMCQaFnG6PfBrh1Ky4HY= github.com/fsnotify/fsnotify v1.6.0/go.mod h1:sl3t1tCWJFWoRz9R8WJCbQihKKwmorjAbSClcnxKAGw= github.com/fxamacker/cbor/v2 v2.4.1-0.20220515183430-ad2eae63303f/go.mod h1:TA1xS00nchWmaBnEIxPSE5oHLuJBAVvqrtAnWBwBCVo= github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c h1:5tm/Wbs9d9r+qZaUFXk59CWDD0+77PBqDREffYkyi5c= @@ -1413,6 +1415,7 @@ github.com/hashicorp/go-version v1.2.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09 github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= +github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= github.com/holiman/billy v0.0.0-20230718173358-1c7e68d277a7/go.mod h1:5GuXa7vkL8u9FkFuWdVvfR5ix8hRB7DbOAaYULamFpc= github.com/holiman/bloomfilter/v2 v2.0.3/go.mod h1:zpoh+gs7qcpqrHr3dB55AMiJwo0iURXE7ZOP9L9hSkA= @@ -1429,6 +1432,7 @@ github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1: github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc= github.com/ianlancetaylor/demangle v0.0.0-20220319035150-800ac71e25c2/go.mod h1:aYm2/VgdVmcIU8iMfdMvDMsRAQjcfZSKFby6HOFvi/w= github.com/imkira/go-interpol v1.1.0/go.mod h1:z0h2/2T3XF8kyEPpRgJ3kmNv+C43p+I/CoI+jC3w2iA= +github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM= github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= github.com/influxdata/flux v0.65.1/go.mod h1:J754/zds0vvpfwuq7Gc2wRdVwEodfpCFM7mYlOw2LqY= github.com/influxdata/influxdb v1.8.3/go.mod h1:JugdFhsvvI8gadxOI6noqNeeBHvWNTbfYGtiAn+2jhI= @@ -1481,8 +1485,9 @@ github.com/kataras/iris/v12 v12.0.1/go.mod h1:udK4vLQKkdDqMGJJVd/msuMtN6hpYJhg/l github.com/kataras/neffos v0.0.10/go.mod h1:ZYmJC07hQPW67eKuzlfY7SO3bC0mw83A3j6im82hfqw= github.com/kataras/pio v0.0.0-20190103105442-ea782b38602d/go.mod h1:NV88laa9UiiDuX9AhMbDPkGYSPugBOV6yTZB1l2K9Z0= github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8= -github.com/kevinburke/go-bindata v3.23.0+incompatible h1:rqNOXZlqrYhMVVAsQx8wuc+LaA73YcfbQ407wAykyS8= github.com/kevinburke/go-bindata v3.23.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= +github.com/kevinburke/go-bindata v3.24.0+incompatible h1:qajFA3D0pH94OTLU4zcCCKCDgR+Zr2cZK/RPJHDdFoY= +github.com/kevinburke/go-bindata v3.24.0+incompatible/go.mod h1:/pEEZ72flUW2p0yi30bslSp9YqD9pysLxunQDdb2CPM= github.com/kilic/bls12-381 v0.1.0/go.mod h1:vDTTHJONJ6G+P2R74EhnyotQDTliQDnFEwhdmfzw1ig= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/errcheck v1.2.0/go.mod h1:/BMXB+zMLi60iA8Vv6Ksmxu/1UDYcXs4uQLJ+jE2L00= @@ -1531,6 +1536,7 @@ github.com/lyft/protoc-gen-star v0.6.0/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuz github.com/lyft/protoc-gen-star v0.6.1/go.mod h1:TGAoBVkt8w7MPG72TrKIu85MIdXwDuzJYeZuUPFPNwA= github.com/lyft/protoc-gen-star/v2 v2.0.1/go.mod h1:RcCdONR2ScXaYnQC5tUzxzlpA3WVYF7/opLeUgcQs/o= github.com/lyft/protoc-gen-star/v2 v2.0.3/go.mod h1:amey7yeodaJhXSbf/TlLvWiqQfLOSpEk//mLlc+axEk= +github.com/magiconair/properties v1.8.0 h1:LLgXmsheXeRoUOBOjtwPQCWIYqM/LU1ayDtDePerRcY= github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= @@ -1577,6 +1583,7 @@ github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3/go.mod h1:RagcQ7I8Ie github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db/go.mod h1:l0dey0ia/Uv7NcFFVbCLtqEBQbrT4OCwCSKTEv6enCw= github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= +github.com/mitchellh/mapstructure v1.4.1 h1:CpVNEelQCZBooIPDn+AR3NpivK/TIKU8bDxdASFVQag= github.com/mitchellh/mapstructure v1.4.1/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/mitchellh/pointerstructure v1.2.0/go.mod h1:BRAsLI5zgXmw97Lf6s25bs8ohIXc3tViBH44KcwB2g4= github.com/mmcloughlin/addchain v0.4.0/go.mod h1:A86O+tHqZLMNO4w6ZZ4FlVQEadcoqkyU72HC5wJ4RlU= @@ -1608,14 +1615,20 @@ github.com/onflow/cadence v1.0.0-M3 h1:bSydJise9pU4aALloUKv/EWmDLITRlbBpuG8OPByd github.com/onflow/cadence v1.0.0-M3/go.mod h1:odXGZZ/wGNA5mwT8bC9v8u8EXACHllB2ABSZK65TGL8= github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= +github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9 h1:rTemckPWir+N/m1GyhT8jdiETj0RiWc8FiwItE2Nxyg= +github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9/go.mod h1:PZrrCsllIt/Bu4HlJtisXfvDrOt1aLKU5R70vsZHKRc= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240205224107-320aa3cf09e0 h1:u6/YcUvO8jU0f3Evb/6agzXqeOo+VbL2a3mmj/5ifRs= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240205224107-320aa3cf09e0/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240213220156-959b70719876 h1:mV3OXBTDJ+nP3sJkoEUgrBXG2bMGFqsDTDr0nVmj2ec= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240213220156-959b70719876/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= +github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876 h1:fZj39XxayIL7uvKvonNI3MtQM3wsFJ8oRl/XW/0rn7A= +github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240214171305-1bf01d6aa9f9 h1:KSE5ppVoa4Du/DEqcuaPadiQL9eMzPHeJMcvqyls+Rs= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240214171305-1bf01d6aa9f9/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240214230837-cd2c42e54b4a h1:xMEtuQp4+ltfEZcw+4smv4wechSBAus4yEAtPghXZeQ= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240214230837-cd2c42e54b4a/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= +github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8 h1:BqgQgXktxVFv8erjCaSHpL0CP+pa5M8g655GyF/t4JM= +github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= @@ -1630,6 +1643,7 @@ github.com/opentracing/opentracing-go v1.0.2/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFSt github.com/opentracing/opentracing-go v1.0.3-0.20180606204148-bd9c31933947/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= github.com/paulbellamy/ratecounter v0.2.0/go.mod h1:Hfx1hDpSGoqxkVVpBi/IlYD7kChlfo5C6hzIHwPqfFE= +github.com/pelletier/go-toml v1.2.0 h1:T5zMGML61Wp+FlcbWjRDT7yAxhJNAiPPLOFECq181zc= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= github.com/peterh/liner v1.0.1-0.20180619022028-8c1271fcf47f/go.mod h1:xIteQHvHuaLYG9IFj6mSxM0fCKrs34IrEQUhOYuGPHc= github.com/peterh/liner v1.1.1-0.20190123174540-a2c9a5303de7/go.mod h1:CRroGNssyjTd/qIG2FyxByd2S8JEAZXBl4qUrZf8GS0= @@ -1682,6 +1696,8 @@ github.com/prometheus/procfs v0.6.0/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1 github.com/prometheus/procfs v0.7.3/go.mod h1:cz+aTbrPOrUb4q7XlbU9ygM+/jj0fzG6c1xBZuNvfVA= github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= github.com/protolambda/bls12-381-util v0.0.0-20220416220906-d8552aa452c7/go.mod h1:IToEjHuttnUzwZI5KBSM/LOOW3qLbbrHOEfp3SbECGY= +github.com/psiemens/sconfig v0.1.0 h1:xfWqW+TRpih7mXZIqKYTmpRhlZLQ1kbxV8EjllPv76s= +github.com/psiemens/sconfig v0.1.0/go.mod h1:+MLKqdledP/8G3rOBpknbLh0IclCf4WneJUtS26JB2U= github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= github.com/retailnext/hllpp v1.0.1-0.20180308014038-101a6d2f8b52/go.mod h1:RDpi1RftBQPUCDRw6SmxeaREsAaRKnOclghuzp/WRzc= @@ -1724,16 +1740,22 @@ github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasO github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= github.com/spf13/afero v1.3.3/go.mod h1:5KUK8ByomD5Ti5Artl0RtHeI5pTF7MIDuXL3yY520V4= github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I= +github.com/spf13/afero v1.9.2 h1:j49Hj62F0n+DaZ1dDCvhABaPNSGNkt32oRFxI33IEMw= github.com/spf13/afero v1.9.2/go.mod h1:iUV7ddyEEZPO5gA3zD4fJt6iStLlL+Lg4m2cihcDf8Y= +github.com/spf13/cast v1.3.0 h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8= github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= github.com/spf13/cobra v0.0.5/go.mod h1:3K3wKZymM7VvHMDS9+Akkh4K60UwM26emMESw8tLCHU= github.com/spf13/cobra v1.0.0/go.mod h1:/6GTrnGXV9HjY+aR4k0oJ5tcvakLuG6EuKReYlHNrgE= +github.com/spf13/cobra v1.5.0 h1:X+jTBEBqF0bHN+9cSMgmfuvv2VHJ9ezmFNf9Y/XstYU= github.com/spf13/cobra v1.5.0/go.mod h1:dWXEIy2H428czQCjInthrTRUg7yKbok+2Qi/yBIJoUM= +github.com/spf13/jwalterweatherman v1.0.0 h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk= github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= +github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s= +github.com/spf13/viper v1.4.0 h1:yXHLWeravcrgGyFSyCgdYpXQ9dR9c/WED3pg1RhxqEU= github.com/spf13/viper v1.4.0/go.mod h1:PTJ7Z/lr49W6bUbkmS1V3by4uWynFiR9p7+dSq/yZzE= github.com/status-im/keycard-go v0.0.0-20190316090335-8537d3370df4/go.mod h1:RZLeN1LMWmRsyYjvAu+I6Dm9QmlDaIIt+Y+4Kd7Tp+Q= github.com/status-im/keycard-go v0.2.0/go.mod h1:wlp8ZLbsmrF6g6WjugPAx+IzoLrkdf9+mHxBEeo3Hbg= @@ -2714,6 +2736,7 @@ gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.5/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/lib/go/templates/go.mod b/lib/go/templates/go.mod index 9e6694cb4..378706612 100644 --- a/lib/go/templates/go.mod +++ b/lib/go/templates/go.mod @@ -7,7 +7,7 @@ require ( github.com/onflow/cadence v1.0.0-M3 github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876 github.com/onflow/flow-go-sdk v1.0.0-M1 - github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8 + github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240214230837-cd2c42e54b4a github.com/psiemens/sconfig v0.1.0 github.com/spf13/cobra v1.5.0 ) diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index 007d9a268..90fe47dad 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -1621,6 +1621,8 @@ github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSE github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8 h1:BqgQgXktxVFv8erjCaSHpL0CP+pa5M8g655GyF/t4JM= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= +github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240214230837-cd2c42e54b4a h1:Ark2dPAaSxSr45G5WJjB1P5H0tFtXnHcOIp+dM146yo= +github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240214230837-cd2c42e54b4a/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 74866af23..414c6c7f6 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -1,14 +1,14 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: // FlowServiceAccount/add_account_creator.cdc (588B) -// FlowServiceAccount/deposit_fees.cdc (878B) +// FlowServiceAccount/deposit_fees.cdc (871B) // FlowServiceAccount/remove_account_creator.cdc (590B) // FlowServiceAccount/scripts/get_account_creators.cdc (141B) // FlowServiceAccount/scripts/get_account_fee.cdc (136B) // FlowServiceAccount/scripts/get_execution_effort_weights.cdc (155B) // FlowServiceAccount/scripts/get_execution_memory_limit.cdc (143B) // FlowServiceAccount/scripts/get_execution_memory_weights.cdc (155B) -// FlowServiceAccount/scripts/get_fees_balance.cdc (110B) +// FlowServiceAccount/scripts/get_fees_balance.cdc (103B) // FlowServiceAccount/scripts/get_is_account_creation_restricted.cdc (145B) // FlowServiceAccount/scripts/get_is_account_creator.cdc (157B) // FlowServiceAccount/scripts/get_tx_fee_parameters.cdc (129B) @@ -16,63 +16,63 @@ // FlowServiceAccount/set_execution_memory_limit.cdc (287B) // FlowServiceAccount/set_execution_memory_weights.cdc (315B) // FlowServiceAccount/set_is_account_creation_restricted.cdc (609B) -// FlowServiceAccount/set_tx_fee_parameters.cdc (629B) -// FlowServiceAccount/set_tx_fee_surge_factor.cdc (488B) +// FlowServiceAccount/set_tx_fee_parameters.cdc (622B) +// FlowServiceAccount/set_tx_fee_surge_factor.cdc (481B) // accounts/add_key.cdc (711B) // accounts/create_new_account.cdc (766B) // accounts/revoke_key.cdc (263B) -// dkg/admin/force_stop_dkg.cdc (353B) -// dkg/admin/publish_participant.cdc (317B) -// dkg/admin/set_safe_threshold.cdc (444B) -// dkg/admin/start_dkg.cdc (385B) -// dkg/admin/stop_dkg.cdc (348B) -// dkg/create_participant.cdc (445B) -// dkg/scripts/get_consensus_nodes.cdc (111B) -// dkg/scripts/get_dkg_canonical_final_submission.cdc (106B) -// dkg/scripts/get_dkg_completed.cdc (107B) -// dkg/scripts/get_dkg_enabled.cdc (96B) -// dkg/scripts/get_final_submissions.cdc (114B) -// dkg/scripts/get_latest_whiteboard_messages.cdc (338B) -// dkg/scripts/get_node_final_submission.cdc (136B) -// dkg/scripts/get_node_has_submitted.cdc (124B) -// dkg/scripts/get_node_is_claimed.cdc (226B) -// dkg/scripts/get_node_is_registered.cdc (131B) -// dkg/scripts/get_submissions_count.cdc (114B) -// dkg/scripts/get_thresholds.cdc (448B) -// dkg/scripts/get_whiteboard_messages.cdc (123B) -// dkg/send_final_submission.cdc (432B) -// dkg/send_whiteboard_message.cdc (415B) -// epoch/admin/advance_view.cdc (670B) -// epoch/admin/calculate_rewards.cdc (382B) +// dkg/admin/force_stop_dkg.cdc (350B) +// dkg/admin/publish_participant.cdc (314B) +// dkg/admin/set_safe_threshold.cdc (441B) +// dkg/admin/start_dkg.cdc (382B) +// dkg/admin/stop_dkg.cdc (345B) +// dkg/create_participant.cdc (442B) +// dkg/scripts/get_consensus_nodes.cdc (108B) +// dkg/scripts/get_dkg_canonical_final_submission.cdc (103B) +// dkg/scripts/get_dkg_completed.cdc (104B) +// dkg/scripts/get_dkg_enabled.cdc (93B) +// dkg/scripts/get_final_submissions.cdc (111B) +// dkg/scripts/get_latest_whiteboard_messages.cdc (335B) +// dkg/scripts/get_node_final_submission.cdc (133B) +// dkg/scripts/get_node_has_submitted.cdc (121B) +// dkg/scripts/get_node_is_claimed.cdc (223B) +// dkg/scripts/get_node_is_registered.cdc (128B) +// dkg/scripts/get_submissions_count.cdc (111B) +// dkg/scripts/get_thresholds.cdc (445B) +// dkg/scripts/get_whiteboard_messages.cdc (120B) +// dkg/send_final_submission.cdc (429B) +// dkg/send_whiteboard_message.cdc (412B) +// epoch/admin/advance_view.cdc (667B) +// epoch/admin/calculate_rewards.cdc (379B) // epoch/admin/deploy_epoch.cdc (1.188kB) // epoch/admin/deploy_qc_dkg.cdc (310B) -// epoch/admin/pay_rewards.cdc (500B) -// epoch/admin/reset_epoch.cdc (1.669kB) -// epoch/admin/set_automatic_rewards.cdc (379B) +// epoch/admin/pay_rewards.cdc (497B) +// epoch/admin/reset_epoch.cdc (1.666kB) +// epoch/admin/set_automatic_rewards.cdc (376B) // epoch/admin/set_bonus_tokens.cdc (624B) -// epoch/admin/update_clusters.cdc (361B) -// epoch/admin/update_dkg_phase_views.cdc (351B) -// epoch/admin/update_epoch_config.cdc (1.778kB) -// epoch/admin/update_epoch_timing_config.cdc (506B) -// epoch/admin/update_epoch_views.cdc (352B) -// epoch/admin/update_reward.cdc (364B) -// epoch/admin/update_staking_views.cdc (354B) -// epoch/node/register_dkg_participant.cdc (556B) -// epoch/node/register_node.cdc (3.106kB) -// epoch/node/register_qc_voter.cdc (547B) -// epoch/scripts/get_bonus_tokens.cdc (111B) -// epoch/scripts/get_config_metadata.cdc (124B) -// epoch/scripts/get_create_clusters.cdc (204B) +// epoch/admin/update_clusters.cdc (358B) +// epoch/admin/update_dkg_phase_views.cdc (348B) +// epoch/admin/update_epoch_config.cdc (1.775kB) +// epoch/admin/update_epoch_timing_config.cdc (503B) +// epoch/admin/update_epoch_views.cdc (349B) +// epoch/admin/update_reward.cdc (361B) +// epoch/admin/update_staking_views.cdc (351B) +// epoch/node/register_dkg_participant.cdc (550B) +// epoch/node/register_node.cdc (3.104kB) +// epoch/node/register_qc_voter.cdc (548B) +// epoch/scripts/get_bonus_tokens.cdc (108B) +// epoch/scripts/get_config_metadata.cdc (121B) +// epoch/scripts/get_create_clusters.cdc (201B) // epoch/scripts/get_current_view.cdc (147B) -// epoch/scripts/get_epoch_counter.cdc (113B) -// epoch/scripts/get_epoch_metadata.cdc (162B) -// epoch/scripts/get_epoch_phase.cdc (119B) -// epoch/scripts/get_epoch_timing_config.cdc (137B) -// epoch/scripts/get_proposed_counter.cdc (116B) -// epoch/scripts/get_randomize.cdc (128B) -// epoch/scripts/get_target_end_time_for_epoch.cdc (266B) +// epoch/scripts/get_epoch_counter.cdc (110B) +// epoch/scripts/get_epoch_metadata.cdc (159B) +// epoch/scripts/get_epoch_phase.cdc (116B) +// epoch/scripts/get_epoch_timing_config.cdc (134B) +// epoch/scripts/get_proposed_counter.cdc (113B) +// epoch/scripts/get_randomize.cdc (125B) +// epoch/scripts/get_target_end_time_for_epoch.cdc (263B) // flowToken/burn_tokens.cdc (1.131kB) -// flowToken/create_forwarder.cdc (2.027kB) +// flowToken/create_forwarder.cdc (2.025kB) // flowToken/mint_tokens.cdc (1.019kB) // flowToken/scripts/get_balance.cdc (420B) // flowToken/scripts/get_supply.cdc (208B) @@ -103,7 +103,7 @@ // idTableStaking/admin/set_slot_limits.cdc (1.572kB) // idTableStaking/admin/start_staking.cdc (597B) // idTableStaking/admin/transfer_admin.cdc (658B) -// idTableStaking/admin/transfer_fees_admin.cdc (451B) +// idTableStaking/admin/transfer_fees_admin.cdc (444B) // idTableStaking/admin/transfer_minter_deploy.cdc (1.344kB) // idTableStaking/admin/upgrade_set_claimed.cdc (691B) // idTableStaking/admin/upgrade_staking.cdc (159B) @@ -169,127 +169,126 @@ // idTableStaking/scripts/get_total_staked.cdc (463B) // idTableStaking/scripts/get_total_staked_by_type.cdc (256B) // idTableStaking/scripts/get_weekly_payout.cdc (202B) -// inspect_field.cdc (131B) -// lockedTokens/admin/admin_create_shared_accounts.cdc (3.677kB) +// lockedTokens/admin/admin_create_shared_accounts.cdc (3.671kB) // lockedTokens/admin/admin_deploy_contract.cdc (463B) -// lockedTokens/admin/admin_deposit_account_creator.cdc (852B) -// lockedTokens/admin/admin_remove_delegator.cdc (469B) -// lockedTokens/admin/check_main_registration.cdc (955B) -// lockedTokens/admin/check_shared_registration.cdc (639B) -// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.441kB) -// lockedTokens/admin/custody_create_only_lease_account.cdc (3.341kB) -// lockedTokens/admin/custody_create_only_shared_account.cdc (3.576kB) -// lockedTokens/admin/custody_create_shared_accounts.cdc (3.712kB) -// lockedTokens/admin/custody_setup_account_creator.cdc (764B) -// lockedTokens/admin/deposit_locked_tokens.cdc (1.684kB) -// lockedTokens/admin/unlock_tokens.cdc (599B) -// lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc (2.884kB) -// lockedTokens/delegator/delegate_new_tokens.cdc (1.375kB) -// lockedTokens/delegator/delegate_rewarded_tokens.cdc (651B) -// lockedTokens/delegator/delegate_unstaked_tokens.cdc (643B) -// lockedTokens/delegator/get_delegator_id.cdc (398B) -// lockedTokens/delegator/get_delegator_info.cdc (1.464kB) -// lockedTokens/delegator/get_delegator_node_id.cdc (402B) -// lockedTokens/delegator/register_delegator.cdc (1.747kB) -// lockedTokens/delegator/request_unstaking.cdc (645B) -// lockedTokens/delegator/withdraw_rewarded_tokens.cdc (988B) -// lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc (651B) -// lockedTokens/delegator/withdraw_unstaked_tokens.cdc (651B) -// lockedTokens/staker/get_node_id.cdc (393B) -// lockedTokens/staker/get_staker_info.cdc (1.171kB) -// lockedTokens/staker/register_node.cdc (1.727kB) -// lockedTokens/staker/request_unstaking.cdc (705B) -// lockedTokens/staker/stake_new_tokens.cdc (1.426kB) -// lockedTokens/staker/stake_rewarded_tokens.cdc (708B) -// lockedTokens/staker/stake_unstaked_tokens.cdc (708B) -// lockedTokens/staker/unstake_all.cdc (671B) -// lockedTokens/staker/update_networking_address.cdc (665B) -// lockedTokens/staker/withdraw_rewarded_tokens.cdc (979B) -// lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc (711B) -// lockedTokens/staker/withdraw_unstaked_tokens.cdc (711B) -// lockedTokens/user/deposit_tokens.cdc (812B) -// lockedTokens/user/get_locked_account_address.cdc (407B) -// lockedTokens/user/get_locked_account_balance.cdc (406B) -// lockedTokens/user/get_multiple_unlock_limits.cdc (520B) -// lockedTokens/user/get_total_balance.cdc (2.817kB) -// lockedTokens/user/get_unlock_limit.cdc (397B) -// lockedTokens/user/withdraw_tokens.cdc (930B) -// nodeVersionBeacon/admin/change_version_freeze_period.cdc (810B) -// nodeVersionBeacon/admin/delete_version_boundary.cdc (835B) -// nodeVersionBeacon/admin/heartbeat.cdc (635B) -// nodeVersionBeacon/admin/set_version_boundary.cdc (1.428kB) -// nodeVersionBeacon/scripts/get_current_node_version.cdc (244B) -// nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc (271B) -// nodeVersionBeacon/scripts/get_next_version_boundary.cdc (275B) -// nodeVersionBeacon/scripts/get_next_version_update_sequence.cdc (214B) -// nodeVersionBeacon/scripts/get_version_boundaries.cdc (301B) -// nodeVersionBeacon/scripts/get_version_boundary_freeze_period.cdc (329B) -// quorumCertificate/admin/publish_voter.cdc (407B) -// quorumCertificate/admin/start_voting.cdc (1.518kB) -// quorumCertificate/admin/stop_voting.cdc (377B) -// quorumCertificate/create_voter.cdc (1.123kB) -// quorumCertificate/scripts/generate_quorum_certificate.cdc (329B) -// quorumCertificate/scripts/get_cluster.cdc (192B) -// quorumCertificate/scripts/get_cluster_complete.cdc (244B) -// quorumCertificate/scripts/get_cluster_node_weights.cdc (199B) -// quorumCertificate/scripts/get_cluster_vote_threshold.cdc (193B) -// quorumCertificate/scripts/get_cluster_votes.cdc (253B) -// quorumCertificate/scripts/get_cluster_weight.cdc (189B) -// quorumCertificate/scripts/get_clusters.cdc (273B) -// quorumCertificate/scripts/get_node_has_voted.cdc (488B) -// quorumCertificate/scripts/get_node_weight.cdc (323B) -// quorumCertificate/scripts/get_qc_enabled.cdc (109B) -// quorumCertificate/scripts/get_voter_is_registered.cdc (206B) -// quorumCertificate/scripts/get_voting_completed.cdc (195B) -// quorumCertificate/submit_vote.cdc (607B) +// lockedTokens/admin/admin_deposit_account_creator.cdc (846B) +// lockedTokens/admin/admin_remove_delegator.cdc (463B) +// lockedTokens/admin/check_main_registration.cdc (949B) +// lockedTokens/admin/check_shared_registration.cdc (633B) +// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.435kB) +// lockedTokens/admin/custody_create_only_lease_account.cdc (3.335kB) +// lockedTokens/admin/custody_create_only_shared_account.cdc (3.57kB) +// lockedTokens/admin/custody_create_shared_accounts.cdc (3.706kB) +// lockedTokens/admin/custody_setup_account_creator.cdc (758B) +// lockedTokens/admin/deposit_locked_tokens.cdc (1.678kB) +// lockedTokens/admin/unlock_tokens.cdc (593B) +// lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc (2.878kB) +// lockedTokens/delegator/delegate_new_tokens.cdc (1.369kB) +// lockedTokens/delegator/delegate_rewarded_tokens.cdc (645B) +// lockedTokens/delegator/delegate_unstaked_tokens.cdc (637B) +// lockedTokens/delegator/get_delegator_id.cdc (392B) +// lockedTokens/delegator/get_delegator_info.cdc (1.458kB) +// lockedTokens/delegator/get_delegator_node_id.cdc (396B) +// lockedTokens/delegator/register_delegator.cdc (1.741kB) +// lockedTokens/delegator/request_unstaking.cdc (639B) +// lockedTokens/delegator/withdraw_rewarded_tokens.cdc (982B) +// lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc (645B) +// lockedTokens/delegator/withdraw_unstaked_tokens.cdc (645B) +// lockedTokens/staker/get_node_id.cdc (387B) +// lockedTokens/staker/get_staker_info.cdc (1.165kB) +// lockedTokens/staker/register_node.cdc (1.714kB) +// lockedTokens/staker/request_unstaking.cdc (692B) +// lockedTokens/staker/stake_new_tokens.cdc (1.413kB) +// lockedTokens/staker/stake_rewarded_tokens.cdc (695B) +// lockedTokens/staker/stake_unstaked_tokens.cdc (695B) +// lockedTokens/staker/unstake_all.cdc (618B) +// lockedTokens/staker/update_networking_address.cdc (659B) +// lockedTokens/staker/withdraw_rewarded_tokens.cdc (973B) +// lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc (658B) +// lockedTokens/staker/withdraw_unstaked_tokens.cdc (658B) +// lockedTokens/user/deposit_tokens.cdc (806B) +// lockedTokens/user/get_locked_account_address.cdc (401B) +// lockedTokens/user/get_locked_account_balance.cdc (400B) +// lockedTokens/user/get_multiple_unlock_limits.cdc (514B) +// lockedTokens/user/get_total_balance.cdc (2.811kB) +// lockedTokens/user/get_unlock_limit.cdc (391B) +// lockedTokens/user/withdraw_tokens.cdc (924B) +// nodeVersionBeacon/admin/change_version_freeze_period.cdc (803B) +// nodeVersionBeacon/admin/delete_version_boundary.cdc (828B) +// nodeVersionBeacon/admin/heartbeat.cdc (628B) +// nodeVersionBeacon/admin/set_version_boundary.cdc (1.421kB) +// nodeVersionBeacon/scripts/get_current_node_version.cdc (237B) +// nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc (264B) +// nodeVersionBeacon/scripts/get_next_version_boundary.cdc (268B) +// nodeVersionBeacon/scripts/get_next_version_update_sequence.cdc (207B) +// nodeVersionBeacon/scripts/get_version_boundaries.cdc (294B) +// nodeVersionBeacon/scripts/get_version_boundary_freeze_period.cdc (322B) +// quorumCertificate/admin/publish_voter.cdc (411B) +// quorumCertificate/admin/start_voting.cdc (1.522kB) +// quorumCertificate/admin/stop_voting.cdc (381B) +// quorumCertificate/create_voter.cdc (1.127kB) +// quorumCertificate/scripts/generate_quorum_certificate.cdc (333B) +// quorumCertificate/scripts/get_cluster.cdc (196B) +// quorumCertificate/scripts/get_cluster_complete.cdc (248B) +// quorumCertificate/scripts/get_cluster_node_weights.cdc (203B) +// quorumCertificate/scripts/get_cluster_vote_threshold.cdc (197B) +// quorumCertificate/scripts/get_cluster_votes.cdc (257B) +// quorumCertificate/scripts/get_cluster_weight.cdc (193B) +// quorumCertificate/scripts/get_clusters.cdc (277B) +// quorumCertificate/scripts/get_node_has_voted.cdc (492B) +// quorumCertificate/scripts/get_node_weight.cdc (327B) +// quorumCertificate/scripts/get_qc_enabled.cdc (113B) +// quorumCertificate/scripts/get_voter_is_registered.cdc (210B) +// quorumCertificate/scripts/get_voting_completed.cdc (199B) +// quorumCertificate/submit_vote.cdc (611B) // randomBeaconHistory/scripts/get_latest_source_of_randomness.cdc (200B) // randomBeaconHistory/scripts/get_source_of_randomness.cdc (305B) // randomBeaconHistory/scripts/get_source_of_randomness_page.cdc (326B) -// stakingCollection/close_stake.cdc (909B) -// stakingCollection/create_machine_account.cdc (1.705kB) -// stakingCollection/create_new_tokenholder_acct.cdc (3.625kB) +// stakingCollection/close_stake.cdc (906B) +// stakingCollection/create_machine_account.cdc (1.702kB) +// stakingCollection/create_new_tokenholder_acct.cdc (3.616kB) // stakingCollection/deploy_collection_contract.cdc (312B) -// stakingCollection/register_delegator.cdc (826B) -// stakingCollection/register_multiple_delegators.cdc (878B) -// stakingCollection/register_multiple_nodes.cdc (1.695kB) -// stakingCollection/register_node.cdc (1.96kB) -// stakingCollection/request_unstaking.cdc (835B) -// stakingCollection/restake_all_stakers.cdc (1.416kB) -// stakingCollection/scripts/does_account_have_staking_collection.cdc (260B) -// stakingCollection/scripts/get_all_delegator_info.cdc (360B) -// stakingCollection/scripts/get_all_node_info.cdc (340B) -// stakingCollection/scripts/get_delegator_ids.cdc (289B) -// stakingCollection/scripts/get_does_stake_exist.cdc (418B) -// stakingCollection/scripts/get_locked_tokens_used.cdc (292B) -// stakingCollection/scripts/get_machine_account_address.cdc (443B) -// stakingCollection/scripts/get_machine_accounts.cdc (321B) -// stakingCollection/scripts/get_node_ids.cdc (251B) -// stakingCollection/scripts/get_unlocked_tokens_used.cdc (297B) -// stakingCollection/setup_staking_collection.cdc (3.503kB) -// stakingCollection/stake_new_tokens.cdc (959B) -// stakingCollection/stake_rewarded_tokens.cdc (852B) -// stakingCollection/stake_unstaked_tokens.cdc (852B) -// stakingCollection/test/deposit_tokens.cdc (887B) -// stakingCollection/test/get_tokens.cdc (693B) -// stakingCollection/transfer_delegator.cdc (2.097kB) -// stakingCollection/transfer_node.cdc (2.211kB) -// stakingCollection/unstake_all.cdc (761B) -// stakingCollection/update_networking_address.cdc (779B) -// stakingCollection/withdraw_from_machine_account.cdc (841B) -// stakingCollection/withdraw_rewarded_tokens.cdc (1.013kB) -// stakingCollection/withdraw_unstaked_tokens.cdc (1.028kB) -// stakingProxy/add_node_info.cdc (647B) -// stakingProxy/get_node_info.cdc (468B) -// stakingProxy/register_node.cdc (1.158kB) -// stakingProxy/remove_node_info.cdc (330B) -// stakingProxy/remove_staking_proxy.cdc (338B) -// stakingProxy/request_unstaking.cdc (500B) -// stakingProxy/setup_node_account.cdc (626B) -// stakingProxy/stake_new_tokens.cdc (498B) -// stakingProxy/stake_unstaked_tokens.cdc (503B) -// stakingProxy/unstake_all.cdc (464B) -// stakingProxy/withdraw_rewards.cdc (506B) -// stakingProxy/withdraw_unstaked.cdc (506B) +// stakingCollection/register_delegator.cdc (823B) +// stakingCollection/register_multiple_delegators.cdc (875B) +// stakingCollection/register_multiple_nodes.cdc (1.692kB) +// stakingCollection/register_node.cdc (1.957kB) +// stakingCollection/request_unstaking.cdc (832B) +// stakingCollection/restake_all_stakers.cdc (1.413kB) +// stakingCollection/scripts/does_account_have_staking_collection.cdc (257B) +// stakingCollection/scripts/get_all_delegator_info.cdc (357B) +// stakingCollection/scripts/get_all_node_info.cdc (337B) +// stakingCollection/scripts/get_delegator_ids.cdc (286B) +// stakingCollection/scripts/get_does_stake_exist.cdc (415B) +// stakingCollection/scripts/get_locked_tokens_used.cdc (289B) +// stakingCollection/scripts/get_machine_account_address.cdc (440B) +// stakingCollection/scripts/get_machine_accounts.cdc (318B) +// stakingCollection/scripts/get_node_ids.cdc (248B) +// stakingCollection/scripts/get_unlocked_tokens_used.cdc (294B) +// stakingCollection/setup_staking_collection.cdc (3.494kB) +// stakingCollection/stake_new_tokens.cdc (956B) +// stakingCollection/stake_rewarded_tokens.cdc (849B) +// stakingCollection/stake_unstaked_tokens.cdc (849B) +// stakingCollection/test/deposit_tokens.cdc (878B) +// stakingCollection/test/get_tokens.cdc (684B) +// stakingCollection/transfer_delegator.cdc (2.094kB) +// stakingCollection/transfer_node.cdc (2.208kB) +// stakingCollection/unstake_all.cdc (758B) +// stakingCollection/update_networking_address.cdc (776B) +// stakingCollection/withdraw_from_machine_account.cdc (838B) +// stakingCollection/withdraw_rewarded_tokens.cdc (1.01kB) +// stakingCollection/withdraw_unstaked_tokens.cdc (1.025kB) +// stakingProxy/add_node_info.cdc (640B) +// stakingProxy/get_node_info.cdc (461B) +// stakingProxy/register_node.cdc (1.145kB) +// stakingProxy/remove_node_info.cdc (323B) +// stakingProxy/remove_staking_proxy.cdc (331B) +// stakingProxy/request_unstaking.cdc (493B) +// stakingProxy/setup_node_account.cdc (619B) +// stakingProxy/stake_new_tokens.cdc (491B) +// stakingProxy/stake_unstaked_tokens.cdc (496B) +// stakingProxy/unstake_all.cdc (457B) +// stakingProxy/withdraw_rewards.cdc (499B) +// stakingProxy/withdraw_unstaked.cdc (499B) // storageFees/admin/set_parameters.cdc (854B) // storageFees/scripts/get_account_available_balance.cdc (185B) // storageFees/scripts/get_accounts_capacity_for_transaction_storage_check.cdc (324B) @@ -364,7 +363,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _flowserviceaccountAdd_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x4f\x4b\xc3\x40\x10\xc5\xcf\xbb\x9f\x62\xe8\xa1\x24\x97\xc4\x73\x50\x4b\xec\x1f\x10\x04\xa1\xd1\x7a\x9e\xee\x4e\xda\x85\x74\x37\xcc\x6e\x6c\x41\xfa\xdd\x25\xdb\x1c\x5a\x8d\x78\x7e\x33\xf3\x7e\xef\x8d\x39\xb4\x8e\x03\xac\x1a\x77\xac\x88\x3f\x8d\xa2\x52\x29\xd7\xd9\x00\x35\xbb\x03\xdc\x9d\x56\x2f\xaf\x1f\xd5\x72\xbd\x79\x9e\x2f\xcb\xc5\x62\xbd\xac\x2a\x29\xf3\x1c\xde\xf6\xc6\x43\x60\xb4\x1e\x55\x30\xce\x02\x6a\xed\x01\xc1\xd2\x11\x70\xb8\xa0\x98\x18\x83\x63\x79\x35\x97\x0c\xe2\x9c\xa9\x97\x0a\x28\xb5\x66\xf2\x3e\x85\x2f\x29\x45\x43\x01\xfc\x0d\x46\xa9\x0f\xc6\x16\x30\xfd\x0d\x98\x45\xc9\xf8\x70\xf1\x90\xa2\x65\x6a\x91\x29\xf1\x66\x67\x89\x0b\xc0\x2e\xec\x93\x27\xc7\xec\x8e\x1b\x6c\x3a\x4a\x61\x3a\xac\xf6\x66\x42\xe4\x39\x5c\x54\x60\xaa\x89\xc9\x2a\x82\xe0\xc6\xaa\xb8\x71\x02\x26\xef\x3a\x56\x94\xc5\x1b\x52\x08\x4f\x4d\x9d\x8d\x60\xc3\x03\x5c\x58\x32\x1f\x1c\xe3\x8e\xb2\x6d\xf4\xbb\xff\x37\xcd\x63\xd2\xb7\x5f\x40\x3e\x2c\xe6\xf5\xd5\x42\x3f\x98\x4a\x21\xc4\x6c\x06\x2d\x5a\xa3\x92\xc9\xbb\xc5\x6d\x13\xe9\xb7\x23\x89\x70\x14\x7f\x92\x4a\x71\x96\x82\x4e\xa4\xba\x40\xb1\x91\xbf\x82\x64\xa8\x75\x79\xf3\xb7\x1f\x6f\x8c\xa7\xce\xdf\x01\x00\x00\xff\xff\xa5\xbd\xb1\xfd\x4c\x02\x00\x00" +var _flowserviceaccountAdd_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\xcb\x6e\xab\x30\x10\x5d\xdb\x5f\x31\x62\x11\xc1\xc6\xde\xa3\x7b\x1b\xd1\x4a\xfd\x81\x3e\xf6\x13\x7b\x48\x2c\x81\x8d\xc6\xa6\x54\xaa\xf2\xef\x15\x86\x45\x68\xa8\xba\x3e\x73\x9e\xe3\xfa\x21\x70\x82\xe7\x2e\x4c\x2f\xc4\x1f\xce\x50\x63\x4c\x18\x7d\x82\x96\x43\x0f\xc5\x3d\x50\x48\xa9\x35\xbc\x5e\x5c\x84\xc4\xe8\x23\x9a\xe4\x82\x07\xb4\x36\x02\x82\xa7\x09\x70\x55\x30\x4c\x8c\x29\xb0\xbc\xb9\x2b\x57\xf0\x89\x69\x86\x6a\x68\xac\x65\x8a\xb1\x82\x2f\x29\x45\x47\x09\xe2\xc6\xad\xb1\xbd\xf3\x35\x1c\xee\x73\xa8\x0c\xb9\x98\x16\x0f\x29\x06\xa6\x01\x99\xca\xe8\xce\x9e\xb8\x06\x1c\xd3\xa5\x7c\x0c\xcc\x61\x7a\xc7\x6e\xa4\x0a\x0e\x2b\x75\x36\x13\x42\x6b\x58\x50\x60\x6a\x89\xc9\x1b\x82\x14\xf6\xa6\xd8\x38\x01\x53\x0c\x23\x1b\x52\x59\x43\x0a\x11\xa9\x6b\xd5\x4e\x6c\xf8\x0f\x4b\x16\x15\x53\x60\x3c\x93\x3a\x65\xbf\x7f\x7f\xb6\x79\x28\xe7\xf5\x6b\xd0\x2b\x51\xb7\x37\x84\xf9\xb0\x92\x42\x88\xe3\x11\x06\xf4\xce\x94\xc5\x9b\xc7\x53\x97\xd3\x9f\x76\x1a\xe1\x6e\xfc\xa2\x92\xe2\x2a\x05\x7d\x92\x19\x13\xe5\x45\x7e\x2b\xa2\xd0\xda\x66\xf3\xb7\x1f\x6f\xcc\x52\xd7\xef\x00\x00\x00\xff\xff\x30\x9d\x0e\x50\x4c\x02\x00\x00" func flowserviceaccountAdd_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -380,11 +379,11 @@ func flowserviceaccountAdd_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/add_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3, 0x8e, 0x9b, 0xc4, 0x39, 0xea, 0xfd, 0x2f, 0xb0, 0x8d, 0xbf, 0x36, 0xf2, 0x31, 0x84, 0xda, 0xf9, 0x77, 0x48, 0x7, 0x78, 0xce, 0xe3, 0x22, 0xb8, 0xc2, 0x2c, 0xc2, 0xaf, 0xe2, 0x58, 0x52}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb1, 0x11, 0x91, 0x94, 0xe5, 0x6c, 0x4, 0x20, 0xe4, 0x66, 0x6, 0x20, 0xd3, 0xd9, 0xf8, 0xab, 0x9b, 0xa9, 0xec, 0xe1, 0x9e, 0x25, 0x9b, 0x99, 0x68, 0xeb, 0xa9, 0x9f, 0xcf, 0x7a, 0xb4, 0xa2}} return a, nil } -var _flowserviceaccountDeposit_feesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x4f\x8f\xd3\x30\x10\xc5\xcf\xcd\xa7\x78\xf4\xb0\x34\x87\x4d\x38\x20\x0e\x55\x61\x59\x68\xc3\x05\x09\x69\xbb\xec\x9e\xdd\x64\x92\x58\xa4\x76\x64\x4f\x48\x51\xb5\xdf\x1d\xc5\x8e\x03\x16\x07\x4e\x51\xc6\x6f\xde\xfc\xe6\x8f\x3c\xf7\xda\x30\x8a\x41\x35\xf2\xd4\xd1\xa3\xfe\x41\x0a\xb5\xd1\x67\xac\xa3\xd8\x3a\x09\xca\x4e\x8f\x91\x2a\xfc\x47\x8a\x82\xc8\x7a\xc1\x9b\x4b\xf1\xf5\xdb\x73\x71\x38\x1c\xef\xf7\xfb\x87\xc3\xf1\x98\x24\x79\x8e\x3d\xf5\xda\x4a\x06\x4f\x99\x16\xac\xc1\x2d\xfd\xc9\x7c\x12\x43\xc7\x93\x4e\xab\xee\x17\x6a\x6d\xc0\x64\x59\xaa\x26\x49\xd8\x08\x65\x45\xc9\x52\xab\x8d\x38\xeb\x41\xf1\x16\xdf\x0b\x79\x79\xf7\x36\xc5\x35\x49\x00\x20\xcf\xf1\xd8\x92\x37\x81\x21\xab\x07\x53\x12\xb8\x15\x8c\x56\x77\x95\x75\xb5\x42\xe5\x29\x2a\x0c\xe1\x44\x52\x35\x70\xee\x35\x19\x43\x95\xb3\xea\x88\x61\x49\xb1\xf3\xda\xe2\xe3\x35\x1a\x4a\xe6\xc2\x2f\xbe\x6a\x6f\xa8\x17\x86\x36\x56\x36\x8a\xcc\x16\x62\xe0\x76\xf3\x49\x1b\xa3\xc7\x27\xd1\x0d\x94\xe2\xe6\xbe\x2c\x27\xe0\x05\x74\x86\xfd\x42\x0c\x01\x43\x35\x19\x52\x13\xa9\x9f\x86\x37\x7a\x6d\x61\x59\x1b\xaa\xf0\xd3\x0d\x25\xe4\x4d\x64\x2e\xf2\x40\x35\xde\xcf\xe2\x6c\x92\x8a\x86\xb2\x93\xab\xbb\x73\x0c\x31\xf2\xb3\xe4\xb6\x32\x62\x4c\x71\xb3\xac\xce\xf7\xf1\x61\x33\x2d\x6c\x8b\x7c\x36\xc9\xeb\xf0\xee\x9e\xd3\x64\xb5\x5a\xdd\xdd\xa1\x17\x4a\x96\x9b\xf5\x67\x3d\x74\x15\x94\x66\xf8\x5a\xff\xf2\xeb\xd1\xe3\xbb\xec\x57\xeb\x34\xea\x39\x60\x84\x3d\xb8\x5b\xf9\x7f\xd7\x96\xba\x3a\x5b\x16\x82\xdd\xed\x32\x83\x6c\x9c\x1d\x97\xab\xf0\xdf\xd4\xe5\xce\x3b\xa2\x0b\x95\x03\x13\xae\x7f\xa3\x2c\xb7\xd8\x12\x82\x89\x0a\x5c\x52\xc5\x97\x19\xe3\x84\x70\x56\x79\x8f\x79\x82\xbb\xdb\x98\x33\x30\xbc\xfc\x0e\x00\x00\xff\xff\x7d\xc0\xb1\xea\x6e\x03\x00\x00" +var _flowserviceaccountDeposit_feesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x4f\x8f\x94\x40\x10\xc5\xcf\xcb\xa7\x78\x72\x58\xe1\xb0\x70\x31\x1e\x26\xa3\xeb\xbf\x8c\x77\xb3\xae\xe7\x1e\x28\xa0\x23\xd3\x45\xaa\x0b\x59\x33\xd9\xef\x6e\x68\x68\x5c\xe2\xc1\x13\xa1\xfa\xd5\xab\x5f\xfd\xb1\x97\x81\x45\x71\x1a\x5d\x6b\xcf\x3d\x3d\xf0\x4f\x72\x68\x84\x2f\x48\x77\xb1\x34\x89\xca\x9e\xa7\x9d\x2a\xfe\xef\x14\x27\x22\xff\x42\x30\xff\xa6\x49\x52\x96\xf8\x42\x03\x7b\xab\xd0\x39\xc5\x43\x19\xda\xd1\xdf\x94\x47\x33\xf6\x3a\xeb\xd8\xf5\xbf\xd1\xb0\x40\xc9\xab\x75\x6d\x92\xa8\x18\xe7\x4d\xa5\x96\x5d\x66\x2e\x3c\x3a\x3d\xe0\xfb\xc9\x3e\xbd\x7d\x93\xe3\x9a\x24\x00\x50\x96\x78\xe8\x68\x31\x81\x90\xe7\x51\x2a\x82\x76\x46\xd1\x71\x5f\xfb\x50\x2b\x56\x9e\xa3\x46\x08\x67\xb2\xae\x45\x70\x6f\x48\x84\xea\x60\xd5\x93\xc2\x93\xd3\xe0\x75\xc0\x87\xeb\x6e\x1a\x45\x08\x3f\x2f\x55\x07\xa1\xc1\x08\x65\xde\xb6\x8e\xe4\x00\x33\x6a\x97\x7d\x62\x11\x9e\x1e\x4d\x3f\x52\x8e\xdb\x8f\x55\x35\x03\x6f\xa0\x2b\xec\x57\x52\x18\x08\x35\x24\xe4\x66\xd2\x65\x1a\x8b\xd1\x6b\x0f\xaf\x2c\x54\xe3\x57\x18\x4a\xcc\x9b\xc9\x42\xe4\x1b\x35\x78\xb7\x8a\x8b\x59\x6a\x5a\x2a\xce\xa1\xee\x31\x30\xec\x91\x7f\x58\xed\x6a\x31\x53\x8e\xdb\x6d\x67\x4b\x1f\xef\xb3\x79\x53\x07\x94\xab\x49\xd9\xc4\xf7\xf0\x9c\x27\x37\x37\x37\xf7\xf7\x18\x8c\xb3\x55\x96\x7e\xe6\xb1\xaf\xe1\x58\xb1\xd4\xfa\x97\x9f\xa7\x05\x3f\x64\xbf\x4a\xf3\x5d\xcf\x11\x23\xee\x21\x1c\xc9\xff\xbb\xf6\xd4\x37\xc5\xb6\x10\x1c\xef\xb6\x19\x14\xd3\xea\xb8\x5d\xc5\xf2\xcd\x43\xee\xba\x23\x7a\xa2\x6a\x54\xc2\xf5\x25\xca\x76\x8b\x1d\x21\x9a\xb8\xc8\x65\xdd\xfe\x32\xf7\x38\x31\x5c\xd4\x8b\xc7\x3a\xc1\xe3\xdd\x9e\x33\x32\x3c\xff\x09\x00\x00\xff\xff\xbb\x16\x8b\x19\x67\x03\x00\x00" func flowserviceaccountDeposit_feesCdcBytes() ([]byte, error) { return bindataRead( @@ -400,11 +399,11 @@ func flowserviceaccountDeposit_feesCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/deposit_fees.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd, 0x1f, 0xa8, 0xfe, 0x85, 0xb4, 0x0, 0x7e, 0x62, 0x49, 0x9f, 0x99, 0x5e, 0xfd, 0x1f, 0x31, 0x6, 0x80, 0x27, 0x4d, 0x4, 0xb6, 0x75, 0xc6, 0x30, 0x2e, 0x66, 0x4b, 0xc6, 0x70, 0x91, 0x1e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7d, 0x52, 0x74, 0xf2, 0x10, 0x54, 0xe7, 0x92, 0xfb, 0xd8, 0xeb, 0x33, 0x4f, 0x97, 0x24, 0x5, 0xe9, 0x43, 0xe, 0x3e, 0x92, 0xa, 0xbe, 0x33, 0xf9, 0xca, 0x6b, 0xe9, 0xf5, 0xb4, 0x56, 0x9}} return a, nil } -var _flowserviceaccountRemove_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xcf\x6a\xf3\x30\x10\xc4\xcf\xd2\x53\x2c\x39\x04\xfb\x62\x7d\x67\xf3\xb5\xc1\xcd\x1f\x28\x14\x0a\x71\x9b\x9e\x15\x65\x9d\x08\x6c\xad\x59\xc9\x49\xa0\xe4\xdd\x4b\x64\x1f\x92\xd6\xa5\xe7\xd9\xdd\xf9\xed\x8c\x6d\x5a\xe2\x00\xab\x9a\x4e\x25\xf2\xd1\x1a\x2c\x8c\xa1\xce\x05\xa8\x98\x1a\xf8\x77\x5e\xbd\xbc\x7e\x94\xcb\xf5\xe6\x79\xbe\x2c\x16\x8b\xf5\xb2\x2c\xa5\x54\x0a\xde\x0e\xd6\x43\x60\xed\xbc\x36\xc1\x92\x03\xc6\x86\x8e\xe8\x41\x3b\xd0\xc3\x05\xc3\xa8\x03\xb1\xbc\x19\x4b\x06\x6d\xde\x4b\x39\x14\xbb\x1d\xa3\xf7\x29\x7c\x4a\x29\x6a\x0c\xe0\xef\x28\x8a\x5d\x63\x5d\x0e\xd3\x9f\x7c\x59\x94\xac\x0f\x1c\x3d\xa4\x68\x19\x5b\xcd\x98\x78\xbb\x77\xc8\x39\xe8\x2e\x1c\x92\x27\x62\xa6\xd3\x46\xd7\x1d\xa6\x30\x1d\x56\xaf\x66\x42\x28\x05\xbd\x0a\x8c\x15\x32\x3a\x83\x10\x68\x2c\x89\x3b\x27\x60\xf4\xd4\xb1\xc1\x2c\xde\x90\x42\x78\xac\xab\x6c\x04\x1b\x1e\xa0\x67\xc9\x7c\x20\xd6\x7b\xcc\xb6\xd1\xef\xff\x9f\xdf\x3c\x26\xd7\xf0\x73\x50\xc3\xa2\xaa\x6e\x16\xae\x83\xa9\x14\x42\xcc\x66\xd0\x6a\x67\x4d\x32\x79\x77\x7a\x5b\x47\xfa\xed\xc8\x47\x7a\x14\x7f\x92\x4a\x71\x91\x02\xcf\x68\xba\x80\x31\x91\xdf\x1e\xc9\xfa\x6e\x8b\xbb\xea\xbe\x35\x19\xaf\x5d\xbe\x02\x00\x00\xff\xff\xc4\xb5\x2f\x92\x4e\x02\x00\x00" +var _flowserviceaccountRemove_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\xbd\x6e\x83\x30\x10\x9e\xed\xa7\x38\x31\x44\xb0\xd8\x3b\x6a\x1b\xd1\x4a\x7d\x81\xfe\xec\x17\xe7\x48\x2c\x81\x0f\x9d\x4d\x52\xa9\xca\xbb\x57\x31\x0c\xa1\xa1\xea\xfc\xdd\x7d\xbf\xbe\x1f\x58\x12\xbc\x76\x7c\x7e\x23\x39\x79\x47\x8d\x73\x3c\x86\x04\xad\x70\x0f\xc5\x3d\x50\x68\x6d\x2d\xbc\x1f\x7d\x84\x24\x18\x22\xba\xe4\x39\x80\x50\xcf\x27\x8a\x80\x01\x70\x66\x70\x42\x98\x58\xf4\xcd\x59\x39\x63\x2f\x13\x54\x43\xb3\xdf\x0b\xc5\x58\xc1\xb7\xd6\xaa\xa3\x04\x71\x21\xd6\xec\x7b\x1f\x6a\xd8\xdc\xdb\x30\x19\xf2\x31\x49\xd6\xd0\x6a\x10\x1a\x50\xa8\x8c\xfe\x10\x48\x6a\xc0\x31\x1d\xcb\x67\x16\xe1\xf3\x27\x76\x23\x55\xb0\x99\x5f\xaf\x62\x4a\x59\x0b\x13\x0a\x42\x2d\x09\x05\x47\x90\x78\xad\x89\x85\x12\x08\x45\x1e\xc5\x91\xc9\x1c\x5a\xa9\x48\x5d\x6b\x56\x6c\xc3\x23\x4c\x5e\x4c\x4c\x2c\x78\x20\xb3\xcb\x7a\x0f\xff\xa6\x79\x2a\xaf\xe5\xd7\x60\xe7\x47\xdb\xde\x3c\x5c\x0f\x2b\xad\x94\xda\x6e\x61\xc0\xe0\x5d\x59\x7c\x04\xdc\x75\xd9\xfd\x6e\x25\x11\xae\xda\x2f\x2a\xad\x2e\x5a\xd1\x17\xb9\x31\x51\x6e\xe4\xaf\x20\x66\xda\xb6\x59\x4c\xf7\x6b\xc9\xcc\x76\xf9\x09\x00\x00\xff\xff\xec\x46\x77\xa5\x4e\x02\x00\x00" func flowserviceaccountRemove_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -420,11 +419,11 @@ func flowserviceaccountRemove_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/remove_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x59, 0xcf, 0x63, 0xc, 0x35, 0x3b, 0x20, 0x1f, 0x3d, 0xff, 0xde, 0x3e, 0x41, 0xd3, 0x5, 0x97, 0x5d, 0x6c, 0x89, 0xfb, 0xf4, 0x2a, 0x5b, 0x6c, 0x3, 0x55, 0xa0, 0x10, 0xe2, 0xaf, 0x76, 0x85}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf0, 0x88, 0x85, 0x67, 0xec, 0xe6, 0x1a, 0x23, 0xf6, 0xee, 0x4f, 0xc, 0x7c, 0x58, 0x34, 0x3e, 0xf2, 0x45, 0x36, 0xc2, 0x8d, 0xbe, 0x5, 0xcc, 0xdf, 0x1a, 0xcc, 0x9c, 0x8c, 0xe9, 0x29, 0x21}} return a, nil } -var _flowserviceaccountScriptsGet_account_creatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xbd\x0a\xc2\x30\x14\x06\xd0\x3d\x4f\xf1\x8d\xc9\x22\xce\x6e\xa1\x4d\x41\x10\x84\x06\x74\x10\x87\x90\xde\x4a\x20\x3f\x72\x93\xa8\x20\xbe\xbb\x8b\xa3\xdb\x99\x4e\x48\xf7\xc2\x0d\x53\x2c\x4f\x4b\xfc\x08\x9e\xb4\xf7\xa5\xe7\x86\x95\x4b\xc2\xf6\x35\x1d\x8e\x67\x6b\xe6\xd3\x7e\x30\x7a\x1c\x67\x63\xad\x10\xce\x7b\xaa\x55\xba\x18\x15\xd6\x9e\x91\x5c\xc8\x52\xed\x70\xd1\xcb\xc2\x54\xeb\x15\x6f\x01\x00\x4c\xad\x73\xfe\x93\x6f\x6e\xd4\x7e\x1c\x98\x5c\x2b\x5c\xa5\x12\x9f\x6f\x00\x00\x00\xff\xff\xac\xbe\xf0\x47\x8d\x00\x00\x00" +var _flowserviceaccountScriptsGet_account_creatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x31\x0a\x02\x31\x10\x46\xe1\x3e\xa7\xf8\xd9\x2a\x69\x3c\x80\xdd\x22\x78\x01\x4b\xb1\x08\xb3\x13\x09\x24\x19\x99\x99\x68\x21\xde\xdd\xc6\xce\xed\x1e\x3c\xf8\x6a\x7f\x88\x3a\xce\x4d\x5e\x17\xd6\x67\x25\x5e\x89\x64\x0e\x47\x51\xe9\x58\xfe\xc7\x12\x42\x26\x62\xb3\x98\x5b\x4b\x28\x73\xa0\xe7\x3a\x62\x3a\xe2\xba\x6e\x9b\xb2\xd9\x0d\xef\x00\x00\xca\x3e\x75\xec\xe0\x87\x3b\xfb\x2f\x4f\xca\xd9\x45\x2d\xa6\xf0\xf9\x06\x00\x00\xff\xff\x70\x58\x63\xbb\x8d\x00\x00\x00" func flowserviceaccountScriptsGet_account_creatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -440,11 +439,11 @@ func flowserviceaccountScriptsGet_account_creatorsCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_account_creators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6a, 0x89, 0x94, 0x44, 0xe4, 0x7d, 0x37, 0xc8, 0x6f, 0xc5, 0x14, 0x10, 0x8, 0xe9, 0xea, 0x77, 0x26, 0x7a, 0x54, 0xa8, 0x63, 0x83, 0x49, 0x8c, 0x64, 0x3d, 0x7f, 0xd0, 0xd7, 0x71, 0x5a, 0x43}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb, 0x29, 0xe1, 0xc2, 0xd2, 0x0, 0xb4, 0xb8, 0x57, 0xa9, 0x8f, 0xc, 0x63, 0xa1, 0x40, 0x25, 0x23, 0xfd, 0x83, 0xcf, 0xb3, 0xef, 0xe1, 0x16, 0xe9, 0x84, 0xcf, 0xe7, 0x86, 0xa0, 0x5c, 0x7f}} return a, nil } -var _flowserviceaccountScriptsGet_account_feeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x4e\x2d\x2a\xcb\x4c\x4e\x75\x4c\x4e\xce\x2f\xcd\x2b\x51\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x0f\x76\x0d\x0a\xf3\x74\x76\x75\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\xc3\x62\xb2\x5e\x22\x84\x76\x2e\x4a\x4d\x2c\xc9\xcc\xcf\x73\x4b\x4d\xe5\xaa\x05\x04\x00\x00\xff\xff\x60\x7f\x8e\xd2\x88\x00\x00\x00" +var _flowserviceaccountScriptsGet_account_feeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x4e\x2d\x2a\xcb\x4c\x4e\x75\x4c\x4e\xce\x2f\xcd\x2b\x51\x48\x2b\xca\xcf\x55\x50\xc2\x94\x50\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\xc3\x62\xb2\x5e\x22\x84\x76\x2e\x4a\x4d\x2c\xc9\xcc\xcf\x73\x4b\x4d\xe5\xaa\x05\x04\x00\x00\xff\xff\xd5\x0c\xb4\x55\x88\x00\x00\x00" func flowserviceaccountScriptsGet_account_feeCdcBytes() ([]byte, error) { return bindataRead( @@ -460,11 +459,11 @@ func flowserviceaccountScriptsGet_account_feeCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_account_fee.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xca, 0xd7, 0x87, 0x82, 0xb, 0xc5, 0xd3, 0xf0, 0x7e, 0x40, 0x79, 0xba, 0x34, 0x9f, 0xff, 0xd, 0xa, 0x43, 0x60, 0xc9, 0xad, 0x77, 0xd0, 0xba, 0xc5, 0x6, 0xb6, 0xa9, 0x1e, 0x65, 0xae, 0xc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd7, 0xc5, 0xf3, 0x5c, 0xe4, 0x84, 0x40, 0x9d, 0xd7, 0xb, 0x6b, 0x49, 0x46, 0x8c, 0xa5, 0xdd, 0xa3, 0x90, 0x91, 0x78, 0x62, 0xa8, 0xe, 0xa4, 0x2, 0x22, 0xba, 0xd8, 0x8c, 0x90, 0xf2, 0x66}} return a, nil } -var _flowserviceaccountScriptsGet_execution_effort_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcd\xb1\x0a\xc2\x30\x10\x06\xe0\x3d\x4f\xf1\x8f\xed\x22\x0e\xe2\xd0\xad\xd8\x14\x0a\x82\xd0\xa0\x9d\x4b\xb8\xd4\x40\x9b\xc8\xe5\xa2\x85\xd2\x77\x77\x70\x75\xfa\xc6\xcf\x2f\xaf\xc8\x82\x76\x8e\x1f\x43\xfc\xf6\x96\x6a\x6b\x63\x0e\x02\xc7\x71\xc1\x71\x6d\xaf\xb7\xc1\xe8\xfe\xd1\x5d\x74\xdd\x34\xbd\x36\x46\xa9\xd1\x5a\x4a\xa9\x18\xe7\xb9\x84\xcb\x01\xcb\xe8\x43\x51\x56\xd8\xee\x5d\x90\xf3\xa9\xc2\xcf\x1d\x9b\x02\x00\x26\xc9\x1c\xfe\x1c\x87\x89\x44\xaf\x64\xb3\xf8\x18\xb4\x73\x91\x65\x20\x3f\x3d\x25\x15\xa5\xda\xbf\x01\x00\x00\xff\xff\x6c\xde\xc4\x2a\x9b\x00\x00\x00" +var _flowserviceaccountScriptsGet_execution_effort_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcd\xa1\x0e\xc2\x30\x10\x87\x71\xdf\xa7\xf8\x67\x6a\x33\x28\x82\x98\x43\x8c\x04\x4d\x08\x7a\xb9\x5c\x47\x93\xf6\x8e\x5c\xaf\x40\xb2\xec\xdd\x11\x48\x50\x9f\xf8\xc4\x2f\x95\x87\x9a\xe3\x94\xf5\x75\x61\x7b\x26\xe2\x23\x91\x36\x71\x44\xd3\x82\xee\x77\x74\x21\xcc\x44\x5c\x6b\x3f\xe7\x3c\x20\x36\x41\x99\x93\xf4\xc3\x88\xf5\x7a\x16\x3f\xec\x47\x7c\xbb\x61\x0d\x00\x60\xec\xcd\xe4\x8f\xb1\x5b\xd8\xa7\x37\x53\xf3\xa4\x32\xc5\xa8\xe6\x37\x4e\xcb\xdd\x6b\x3f\x84\xed\x13\x00\x00\xff\xff\xed\xee\xad\x32\x9b\x00\x00\x00" func flowserviceaccountScriptsGet_execution_effort_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -480,11 +479,11 @@ func flowserviceaccountScriptsGet_execution_effort_weightsCdc() (*asset, error) } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_execution_effort_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xce, 0xbd, 0x4a, 0xa4, 0x1a, 0x9, 0xd, 0xf4, 0xd3, 0xa7, 0x2e, 0xca, 0xde, 0x52, 0xaa, 0x56, 0xbb, 0xd6, 0xb4, 0xa4, 0xa3, 0x3, 0xfe, 0x81, 0xea, 0x8, 0x51, 0x92, 0x8a, 0x8, 0xba, 0x8c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbc, 0x96, 0xc3, 0x69, 0xc1, 0xcc, 0x19, 0x11, 0xbd, 0xe0, 0x19, 0x1e, 0xb1, 0x38, 0xab, 0xae, 0x1, 0x48, 0x4, 0x1e, 0x57, 0xcf, 0x63, 0xee, 0x28, 0x4e, 0xf7, 0x13, 0x65, 0x30, 0xd6, 0x93}} return a, nil } -var _flowserviceaccountScriptsGet_execution_memory_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xb1\x0a\xc2\x30\x10\x00\xd0\x3d\x5f\x71\x63\xbb\x88\x83\x38\xb8\x15\x9b\x42\xa1\x22\x34\xa8\x73\x09\x57\x39\x48\xee\xe4\x7a\xd1\x8a\xf8\xef\xfe\x80\x3f\xf0\x28\x3f\x44\x0d\xba\x24\xaf\x80\xfa\xa4\x88\x4d\x8c\x52\xd8\x60\x56\xc9\xb0\x5d\xbb\xe1\x7c\x0b\x7e\xbc\xf6\x47\xdf\xb4\xed\xe8\x43\x70\x6e\x8a\x11\x97\xa5\x9a\x52\xaa\x61\x2e\x0c\x79\x22\xae\xea\x03\x5c\x7a\xb6\xfd\x0e\x3e\x0e\x00\x40\xd1\x8a\xf2\x1f\x79\x73\x47\xf3\x2b\xc6\x62\x24\x7c\xc2\x2c\xfa\x1e\x28\x93\x55\xb5\xfb\xfe\x02\x00\x00\xff\xff\x05\xa5\x88\xd1\x8f\x00\x00\x00" +var _flowserviceaccountScriptsGet_execution_memory_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x3d\xaa\x42\x31\x10\x06\xd0\x3e\xab\xf8\xb8\x55\xd2\xbc\xea\x61\x61\x67\xa1\x20\x68\x25\x2e\x20\x0c\x73\x65\x20\x99\x91\xb9\x13\x7f\x10\xf7\xee\x02\xb4\x3e\x70\xa4\x5f\xcd\x03\xbb\x66\xf7\x13\xfb\x4d\x88\x37\x44\x36\x34\x30\xbb\x75\x4c\xdf\x30\xa5\x54\x89\x78\x59\x72\x6d\xad\x60\x1e\x8a\x5e\x45\x73\x59\xe3\xbc\xd7\x58\xfd\xe3\x95\x00\xc0\x39\x86\xeb\x8f\xf9\xef\xc2\xb1\x7d\x30\x8d\x10\xd3\x23\x77\xf3\xe7\x41\xba\x44\x2e\xe9\xfd\x09\x00\x00\xff\xff\xc8\x94\x6c\xb5\x8f\x00\x00\x00" func flowserviceaccountScriptsGet_execution_memory_limitCdcBytes() ([]byte, error) { return bindataRead( @@ -500,11 +499,11 @@ func flowserviceaccountScriptsGet_execution_memory_limitCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_execution_memory_limit.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x89, 0x88, 0x34, 0xd0, 0x22, 0xfe, 0x48, 0x54, 0xac, 0xd8, 0xd3, 0xae, 0xc7, 0x20, 0x32, 0x21, 0xad, 0xb3, 0x31, 0x41, 0x2, 0xdf, 0xae, 0xc, 0xaa, 0xc2, 0xa1, 0x4e, 0xce, 0x2b, 0x77, 0xaa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd5, 0x92, 0xbb, 0x36, 0x1b, 0xad, 0x73, 0x48, 0xdd, 0x41, 0x54, 0x99, 0x1e, 0xfa, 0x9b, 0x50, 0x6f, 0xbd, 0x17, 0xf5, 0xe3, 0xc6, 0xa1, 0x52, 0xaf, 0x15, 0xe0, 0x6c, 0x4d, 0x9c, 0x46, 0xd2}} return a, nil } -var _flowserviceaccountScriptsGet_execution_memory_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcd\x31\x0b\x82\x40\x14\x07\xf0\xfd\x3e\xc5\x7f\xd4\x25\x1a\xa2\xc1\x4d\xf2\x04\xa1\x08\x3c\xca\x59\x8e\xa7\x1d\x78\x77\xf1\x7c\x57\x86\xf8\xdd\x1b\x5a\x9b\x7e\xe3\xcf\xf9\x67\x64\x41\x3d\xc5\xb7\x21\x7e\x39\x4b\xa5\xb5\x31\x05\xc1\xc0\xd1\x63\xbf\xd4\xe7\x6b\x67\x74\x7b\x6f\x4e\xba\xac\xaa\x56\x1b\xa3\x54\x6f\x2d\xcd\x73\xd6\x4f\x53\x8e\x21\x05\xf8\xde\x85\x2c\x2f\xb0\xde\x9a\x20\xc7\x43\x81\x9f\x1b\x56\x05\x00\x4c\x92\x38\xfc\x39\x76\x23\x89\x5e\xc8\x26\x71\x31\x5c\xc8\x47\xfe\x74\xe4\xc6\x87\xcc\x59\xae\xb6\x6f\x00\x00\x00\xff\xff\x10\x82\x47\xa5\x9b\x00\x00\x00" +var _flowserviceaccountScriptsGet_execution_memory_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x4e\x2d\x2a\xcb\x4c\x4e\x75\x4c\x4e\xce\x2f\xcd\x2b\x51\x48\x2b\xca\xcf\x55\x50\xc2\x94\x50\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\xa8\x0e\xf5\xcc\x2b\x31\x33\xb1\x52\x80\xd0\xb5\x0a\xd5\x5c\x0a\x0a\x0a\x0a\x45\xa9\x25\xa5\x45\x79\x58\xec\xd0\x4b\x4f\x2d\x71\xad\x48\x4d\x2e\x2d\xc9\xcc\xcf\xf3\x4d\xcd\xcd\x2f\xaa\x0c\x4f\xcd\x4c\xcf\x28\x29\xd6\xd0\xe4\xaa\x05\x04\x00\x00\xff\xff\x91\xb2\x2e\xbd\x9b\x00\x00\x00" func flowserviceaccountScriptsGet_execution_memory_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -520,11 +519,11 @@ func flowserviceaccountScriptsGet_execution_memory_weightsCdc() (*asset, error) } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_execution_memory_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe, 0xcf, 0x4e, 0x4b, 0x9, 0xcc, 0xef, 0xbb, 0x14, 0x1b, 0xec, 0xa2, 0x2b, 0x99, 0x8d, 0xa4, 0x59, 0x33, 0xa5, 0x47, 0xf1, 0xa4, 0xc5, 0x1b, 0xd4, 0x1, 0xf6, 0x99, 0xe7, 0xb1, 0x83, 0x2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5, 0xcd, 0xd0, 0x38, 0x82, 0x36, 0xe4, 0x74, 0xde, 0x36, 0x36, 0x84, 0x3f, 0xa6, 0xf5, 0xb4, 0x59, 0x3a, 0x3b, 0x17, 0x7f, 0xa0, 0xbc, 0x82, 0xd6, 0xcc, 0x7c, 0xae, 0x39, 0x5c, 0x78, 0xe5}} return a, nil } -var _flowserviceaccountScriptsGet_fees_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x77\x73\x75\x0d\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x1b\xa6\x97\x9e\x5a\xe2\x96\x9a\xea\x94\x98\x93\x98\x97\x9c\xaa\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\xcf\x3b\x2e\x2a\x6e\x00\x00\x00" +var _flowserviceaccountScriptsGet_fees_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x50\x82\x71\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\xdd\x32\x2b\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\xe0\xa6\xe8\xa5\xa7\x96\xb8\xa5\xa6\x3a\x25\xe6\x24\xe6\x25\xa7\x6a\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x36\xc6\xa0\x51\x67\x00\x00\x00" func flowserviceaccountScriptsGet_fees_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -540,11 +539,11 @@ func flowserviceaccountScriptsGet_fees_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_fees_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaf, 0xb3, 0xe5, 0xbe, 0x7a, 0xbc, 0xe8, 0x99, 0x4f, 0x9f, 0x20, 0xf, 0x3d, 0x11, 0x31, 0x93, 0x3a, 0xbb, 0x1f, 0x61, 0x27, 0x23, 0x43, 0xe8, 0x3d, 0x41, 0x39, 0xd9, 0xa, 0x67, 0x54, 0xd2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc6, 0xb4, 0xfa, 0x5d, 0x2c, 0x2f, 0x77, 0x80, 0x79, 0xa9, 0xb6, 0x97, 0xa3, 0x19, 0x3e, 0x2f, 0x94, 0xaa, 0x9, 0xa2, 0x75, 0x90, 0x67, 0x6b, 0x19, 0xc, 0xd, 0x59, 0xdc, 0x42, 0xc4, 0x4a}} return a, nil } -var _flowserviceaccountScriptsGet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xb1\xca\xc2\x30\x10\x00\xe0\x3d\x4f\x71\x63\xbb\xfc\xfc\xb3\x5b\x6d\x53\x10\x04\x21\x01\x9d\xc3\x79\x85\x83\x24\x27\x97\x8b\x0a\xe2\xbb\xbb\x38\xba\x7d\xd3\xc7\xe5\x26\x6a\xb0\x66\x79\x44\xd2\x3b\x23\x4d\x88\xd2\xab\xc1\xa6\x52\xe0\xff\xb9\x1e\x4f\x97\xe8\xc3\xf9\x30\xfb\x69\x59\x82\x8f\xd1\xb9\x84\x48\xad\x0d\x29\xe7\x11\xb6\x5e\xa1\x24\xae\xc3\xb8\x83\xbd\x48\x86\x97\x03\x00\x50\xb2\xae\xf5\xc7\xfb\xc7\xed\xab\x59\x29\x19\x4b\x0d\xd4\x4c\x19\x8d\xae\xc3\xe8\xde\x9f\x00\x00\x00\xff\xff\x00\xd7\xce\x85\x91\x00\x00\x00" +var _flowserviceaccountScriptsGet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x31\x0a\x82\x31\x0c\x47\xf1\xbd\xa7\xf8\xf3\x4d\xed\xe2\x01\xdc\x54\xf0\x00\x7a\x82\x12\x53\x08\xb4\x89\xa4\xa9\x0e\xe2\xdd\x5d\xdc\x74\x7b\xf0\xe0\x27\xe3\x6e\x1e\x38\x77\x7b\x5e\xd9\x1f\x42\x7c\x20\xb2\xa5\x81\xe6\x36\xb0\xfd\x8e\x2d\xa5\x4a\xc4\x73\xe6\xda\x7b\x41\x5b\x8a\x51\x45\x73\xd9\xe3\x68\xd6\xf1\x4a\x00\xe0\x1c\xcb\xf5\x8f\xbb\x93\xf9\xad\x93\x73\x0d\x31\xbd\xf0\x0c\x17\x0a\xbe\xe5\x92\xde\x9f\x00\x00\x00\xff\xff\xdd\x1a\x44\xaa\x91\x00\x00\x00" func flowserviceaccountScriptsGet_is_account_creation_restrictedCdcBytes() ([]byte, error) { return bindataRead( @@ -560,11 +559,11 @@ func flowserviceaccountScriptsGet_is_account_creation_restrictedCdc() (*asset, e } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_is_account_creation_restricted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x30, 0x10, 0xbe, 0xc5, 0x7d, 0xb7, 0x8a, 0x89, 0x8a, 0xa8, 0xea, 0x76, 0x11, 0xaa, 0xdd, 0x97, 0x83, 0xca, 0xc0, 0x60, 0x1f, 0xe0, 0xf9, 0x7, 0x5, 0x2, 0xdc, 0x4e, 0x8a, 0x89, 0x61, 0x59}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x78, 0x7f, 0x4b, 0x85, 0x11, 0xb6, 0x26, 0xa3, 0x91, 0xc, 0xc6, 0x56, 0x2f, 0x17, 0x6d, 0x44, 0x49, 0x35, 0x2f, 0xa, 0x6d, 0x2b, 0xc1, 0x30, 0xf1, 0x1e, 0xd5, 0x30, 0xec, 0x9a, 0x80, 0x23}} return a, nil } -var _flowserviceaccountScriptsGet_is_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcd\xb1\xaa\xc2\x30\x14\x87\xf1\x3d\x4f\xf1\x1f\xdb\xe5\x72\xe7\x6e\xb1\x4d\x41\x10\x84\x06\x74\x0e\xe9\x29\x04\x92\x1c\x39\x49\x54\x10\xdf\xdd\x41\xdd\xdc\x7e\xd3\xf7\x85\x74\x61\xa9\x98\x23\xdf\x2c\xc9\x35\x78\xd2\xde\x73\xcb\x15\x9b\x70\xc2\xff\x7d\x3e\x1c\xcf\xd6\x2c\xa7\xfd\x68\xf4\x34\x2d\xc6\x5a\xa5\x9c\xf7\x54\x4a\xe7\x62\xec\xb1\xb5\x8c\xe4\x42\xee\xdc\xba\x0a\x95\x32\x40\xbf\xd1\x0f\xd8\x31\x47\x3c\x14\x00\x08\xd5\x26\xf9\xc7\xe7\x2f\x94\x8f\x46\x21\x57\x59\xbe\xa1\x5e\x3d\x5f\x01\x00\x00\xff\xff\x52\x31\xc0\x1c\x9d\x00\x00\x00" +var _flowserviceaccountScriptsGet_is_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcd\x31\x0a\x02\x31\x10\x85\xe1\x3e\xa7\x78\x6c\xb5\x69\x3c\xc0\x76\xab\xe0\x05\x3c\xc1\x30\x3b\x0b\x81\x24\x23\x33\x13\x2d\xc4\xbb\x5b\xa8\x95\x76\x1f\x3c\x78\x7f\x69\x57\xb5\xc0\xb9\xea\xfd\x22\x76\x2b\x2c\x2b\xb3\x8e\x1e\xd8\x4d\x1b\xa6\xdf\x61\x4a\x89\x98\xc5\x7d\xa6\x5a\x33\xf6\xd1\xd1\xa8\xf4\x99\xb6\xcd\xc4\x7d\xc1\xfa\x46\x5e\x70\x54\xad\x78\x24\x00\x30\x89\x61\xfd\x4f\xe7\x50\xfc\xa3\x93\x09\x85\xda\xf7\x28\xa7\xe7\x2b\x00\x00\xff\xff\x9d\xb0\x81\x18\x9d\x00\x00\x00" func flowserviceaccountScriptsGet_is_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -580,7 +579,7 @@ func flowserviceaccountScriptsGet_is_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_is_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc8, 0x8e, 0x8, 0x40, 0xf7, 0x6e, 0x2d, 0x2b, 0x73, 0xd5, 0xcf, 0x2d, 0x12, 0x1e, 0x4a, 0x5d, 0xfe, 0x93, 0xa7, 0xc8, 0xf, 0x2e, 0x2e, 0x1c, 0xd7, 0x1f, 0x7c, 0xfe, 0xb, 0xbc, 0x16, 0xb6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x95, 0xb8, 0x4e, 0xec, 0x66, 0x4a, 0x50, 0xbb, 0x8b, 0xb0, 0xb8, 0x52, 0x16, 0x26, 0xc, 0x19, 0xb, 0x4, 0x17, 0x3b, 0x4d, 0xb7, 0xe0, 0xa8, 0xc, 0x8f, 0x1e, 0xb3, 0xd2, 0xeb, 0x1f}} return a, nil } @@ -664,7 +663,7 @@ func flowserviceaccountSet_execution_memory_weightsCdc() (*asset, error) { return a, nil } -var _flowserviceaccountSet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\x5d\x6b\xc2\x30\x14\x7d\x4e\x7e\xc5\xc5\x07\x69\x5f\xda\x3d\x97\x6d\xe2\x27\x08\x83\x81\xdd\xdc\xab\x31\xde\x6a\xa0\x26\xe5\xe6\x56\x85\xe1\x7f\x1f\x8d\x65\xab\xac\x63\xaf\x39\x39\x5f\xf7\x98\x63\xe5\x88\x61\x51\xba\x73\x8e\x74\x32\x1a\xc7\x5a\xbb\xda\x32\x14\xe4\x8e\xf0\x70\x59\xbc\xbc\x7e\xe4\xf3\xd5\x7a\x39\x9d\x8f\x67\xb3\xd5\x3c\xcf\xa5\x4c\x53\x78\x3b\x18\x0f\x4c\xca\x7a\xa5\xd9\x38\x0b\xfa\xa0\xec\x1e\x3d\x6c\x8c\x07\xd5\x4a\x68\x24\x15\x40\x42\xcf\x64\x34\xe3\x6e\x03\x27\x55\xd6\x28\x3b\xd4\xe8\x07\xcd\x60\xe2\x5c\x19\xc3\xa7\x94\xa2\x44\x06\x7f\x17\x69\xbc\x3b\x1a\x9b\xc1\xf0\x77\xd8\x24\x40\xc6\x33\x29\x76\x24\xa5\xa8\x08\x2b\x45\x18\x79\xb3\xb7\x48\x19\xa8\x9a\x0f\xd1\xc4\x11\xb9\xf3\xba\xf1\x8f\x61\xd8\x52\x1b\x33\x21\xd2\x14\x6e\x28\x10\x16\x48\x68\x35\x02\xbb\xbe\xb3\xdc\x39\x35\xc5\x5c\x4d\x1a\x93\xa0\x21\x85\xf0\x58\x16\x49\x4f\x6c\x78\x82\x5b\x96\xc4\xb3\x23\xb5\xc7\x64\x1b\xfc\x1e\xff\x6d\xf3\x1c\x35\x4b\x64\x90\xb6\xc4\xb4\xe8\x10\x9a\x8f\xb1\x14\x42\x8c\x46\x50\x29\x6b\x74\x34\x78\xb7\x6a\x5b\x86\xf4\xdb\x9e\x46\xaa\x37\xfe\x20\x96\xe2\x2a\x05\x5e\x50\xd7\x8c\xe1\x22\x7f\x15\x49\x3c\xf2\xd2\xb7\x2f\x53\xc2\x30\xf0\xea\x7b\xc1\xce\x98\x41\xf3\xfa\x15\x00\x00\xff\xff\x3a\xab\xaa\x68\x61\x02\x00\x00" +var _flowserviceaccountSet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\x4d\x6b\xc2\x40\x10\x3d\xef\xfe\x8a\x21\x07\x49\x2e\xc9\x3d\xb4\x15\x2d\x14\x7a\xed\xd7\xd9\x71\x9d\xe8\x42\xdc\x09\xb3\x13\x2d\x14\xff\x7b\xc9\x1a\x5a\xc5\x94\x5e\xf7\xed\xfb\x9a\xe7\xf7\x1d\x8b\xc2\x53\xcb\xc7\x57\x92\x83\x77\xb4\x70\x8e\xfb\xa0\xd0\x08\xef\x21\xbb\x05\x32\x6b\xab\x0a\xde\x76\x3e\x82\x0a\x86\x88\x4e\x3d\x07\x70\x3b\x0c\x5b\x8a\xb0\xf2\x11\x70\x94\x70\x24\x98\x40\xa1\xa8\xe2\x9d\xd2\x66\x05\x07\x6c\x7b\xb2\x17\xd4\xfc\x17\xad\x61\xc9\xdc\x16\xf0\x65\xad\x69\x49\x21\x5e\x39\x2f\x36\x7b\x1f\x6a\x98\xdd\x66\x2a\x13\xe4\xa3\x0a\x2a\x8b\xb5\xa6\x13\xea\x50\x28\x8f\x7e\x1b\x48\x6a\xc0\x5e\x77\xf9\x92\x45\xf8\xf8\x31\xf8\x17\x30\x1b\xa9\x83\x99\x31\x55\x05\x67\x14\x84\x1a\x12\x0a\x8e\x40\x79\xea\x2c\x57\x4e\x43\x31\xee\xc5\x51\x99\x34\xac\x31\x91\xda\xa6\x9c\x88\x0d\xf7\x70\xce\x52\x46\x65\xc1\x2d\x95\xeb\xe4\x77\xf7\x6f\x9b\x87\x7c\x58\xa2\x86\x6a\x24\x56\xcd\x05\x61\xf8\x58\x58\x63\xcc\x7c\x0e\x1d\x06\xef\xf2\xec\x3d\xe0\xba\x4d\xe9\xd7\x13\x8d\x70\x32\x7e\x56\x58\x73\xb2\x86\x3e\xc9\xf5\x4a\xe9\x22\x7f\x15\x29\x23\xe9\x73\x1c\x5f\x1e\x85\xd2\xc0\x2f\x3f\x0b\x5e\x8c\x99\x34\x4f\xdf\x01\x00\x00\xff\xff\x81\x61\xec\x6a\x61\x02\x00\x00" func flowserviceaccountSet_is_account_creation_restrictedCdcBytes() ([]byte, error) { return bindataRead( @@ -680,11 +679,11 @@ func flowserviceaccountSet_is_account_creation_restrictedCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_is_account_creation_restricted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0x71, 0x42, 0x66, 0x4, 0xde, 0x47, 0xbf, 0xae, 0x2c, 0x11, 0x4d, 0xd8, 0x6f, 0x6d, 0x12, 0xba, 0x83, 0x4a, 0x43, 0xed, 0x2d, 0xde, 0x41, 0xe4, 0x4d, 0xfe, 0x3d, 0xfe, 0xe8, 0xe2, 0xc6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x3d, 0xd6, 0x34, 0xd1, 0xea, 0xb6, 0x5e, 0x1f, 0xc8, 0xe2, 0xef, 0xf3, 0xff, 0xc2, 0x1d, 0xb0, 0x58, 0xd4, 0x2d, 0x2a, 0x99, 0x74, 0xde, 0x50, 0xe7, 0x21, 0x74, 0x5b, 0x8f, 0x11, 0x2}} return a, nil } -var _flowserviceaccountSet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\x41\x6b\xdb\x40\x10\x85\xcf\xbb\xbf\x62\xf0\xc1\x48\x50\xa4\x1e\x4a\x0f\xa2\xad\x71\x6b\xe9\x54\x68\x89\xe3\xe4\xbc\xde\x8c\xec\x05\x69\x47\xcc\x8c\xb0\x21\xf8\xbf\x07\xcb\x8e\xed\x80\x9c\xe3\xbe\x99\xfd\xde\x63\x5e\x68\x3b\x62\x85\xaa\xa1\x5d\x85\x28\x50\x33\xb5\xf0\x75\x5f\xfd\xfd\xf7\x5c\x95\xe5\x72\xbe\x58\x3c\x94\xcb\xa5\xb5\x79\x0e\x8f\xdb\x20\xa0\xec\xa2\x38\xaf\x81\x22\x08\xaa\x80\x6e\xf1\xfa\xbb\x73\xec\x5a\x54\x64\xb1\x37\x8b\x89\xf4\xbc\xc1\xca\x79\x25\x2e\x60\x55\x85\xfd\xf7\x6f\x5f\x20\x44\xdf\xf4\x12\x28\x96\x75\x4d\xac\x7f\x48\xf4\x3a\xc4\x3d\xfa\x5e\x47\x87\x29\xbc\x5a\xd3\xa0\x42\x7d\x76\x9d\x7b\x4f\x7d\xd4\xf9\x4b\x1b\x62\x01\xd3\xf7\x30\xd9\x20\x04\x51\x76\x4a\x6c\xad\xe9\x18\x3b\xc7\x98\x48\xd8\x44\xe4\x02\x5c\xaf\xdb\xe4\x37\x31\xd3\xee\xc9\x35\x3d\xa6\x30\x3d\xa3\x06\x0b\x23\xd8\xd4\xd9\x98\x09\xfc\x84\x13\x23\x13\x25\x76\x1b\xcc\xd6\x03\xe5\xc7\x1d\xef\x5f\xc9\xf1\xaa\x05\xe4\xe7\xf5\xfc\x02\x3d\x6e\xa5\xd6\x18\x33\x9b\x41\xe7\x62\xf0\xc9\x64\x15\xdd\xba\x41\x50\x82\x13\x14\x18\x6b\x64\x8c\x7e\xd0\xdc\x2d\x17\x18\x85\x7a\xf6\x38\x49\xad\x39\x58\x73\x3a\x1a\x7e\x1e\x3e\x13\xd4\x0a\xf1\xff\xa5\xa9\x8f\xed\xdc\x3c\xee\x54\x34\x22\xde\xe9\x6b\x44\x1c\x82\x1e\xde\x02\x00\x00\xff\xff\x8d\x8b\xf8\x5f\x75\x02\x00\x00" +var _flowserviceaccountSet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\xcf\x6a\xf3\x30\x10\xc4\xcf\xd2\x53\x2c\x3e\x04\x1b\x3e\xec\xcb\x47\x0f\xa6\x6d\x48\x4b\x7d\xee\xa1\xe9\x5d\x51\xd7\x89\xc0\xd6\x9a\xdd\x15\x09\x94\xbc\x7b\x89\xf3\xb7\xe0\xf4\xa8\xd9\xd5\x6f\x86\x9d\xd0\x0f\xc4\x0a\x4d\x47\xdb\x06\x51\xa0\x65\xea\x21\x3b\x3f\x33\x6b\xab\x0a\x3e\x36\x41\x40\xd9\x45\x71\x5e\x03\x45\x10\x54\x01\xdd\xe0\xf5\xdb\xe0\xd8\xf5\xa8\xc8\x62\x6f\x16\x73\x49\xbc\xc6\xc6\x79\x25\xae\x61\xd9\x84\xdd\xc3\xff\x7f\x10\xa2\xef\x92\x04\x8a\x6f\x6d\x4b\xac\xaf\x24\x7a\x1d\xe2\x0e\x7d\xd2\xc9\x61\x01\xdf\xd6\x74\xa8\xd0\x9e\x5c\x17\xde\x53\x8a\xba\xf8\xea\x43\xac\x61\x76\x0e\x53\x8e\x42\x10\x65\xa7\xc4\xd6\x9a\x81\x71\x70\x8c\xb9\x84\x75\x44\xae\xc1\x25\xdd\xe4\x2f\xc4\x4c\xdb\x4f\xd7\x25\x2c\x60\x76\x42\x8d\x16\x46\xb0\x6b\xcb\x29\x13\x78\x82\x23\xa3\x14\x25\x76\x6b\x2c\x57\x23\xe5\xf1\x8e\xf7\x73\x7e\x38\x67\x0d\xd5\x69\xbd\xba\x40\x0f\x5b\x85\x35\xc6\xcc\xe7\x30\xb8\x18\x7c\x9e\x2d\xa3\x5b\x75\x08\x4a\x70\x84\x02\x63\x8b\x8c\xd1\x8f\x9a\xbb\xe5\x02\xa3\x50\x62\x8f\x59\x61\xcd\xde\x9a\xe3\xd1\xf0\xef\xf0\xa5\xa0\x36\x88\xef\x97\xa6\x7e\xb7\x73\xf3\xb8\x53\xd1\x84\x78\xa7\xaf\x09\x71\x0c\xba\xff\x09\x00\x00\xff\xff\x3f\x59\x3d\x32\x6e\x02\x00\x00" func flowserviceaccountSet_tx_fee_parametersCdcBytes() ([]byte, error) { return bindataRead( @@ -700,11 +699,11 @@ func flowserviceaccountSet_tx_fee_parametersCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_tx_fee_parameters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0xc4, 0x3c, 0x54, 0x65, 0x79, 0xfd, 0xb5, 0xbc, 0xb0, 0x5a, 0x97, 0x50, 0x33, 0xc4, 0x3b, 0x8, 0xd2, 0x19, 0x68, 0x6d, 0x35, 0x4c, 0x5a, 0x2a, 0xc4, 0x62, 0x76, 0x10, 0xd1, 0x9c, 0x9c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7, 0x44, 0xba, 0x8b, 0xc3, 0xc9, 0x40, 0xba, 0x19, 0x23, 0xf3, 0x15, 0x57, 0xbc, 0x3a, 0x15, 0xd5, 0x73, 0xa0, 0x4, 0xae, 0x10, 0xc7, 0x3c, 0x8d, 0x23, 0xf0, 0xe3, 0xef, 0x69, 0x6c, 0xa2}} return a, nil } -var _flowserviceaccountSet_tx_fee_surge_factorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x41\x6b\xeb\x30\x10\x84\xcf\xd2\xaf\x58\x72\x08\xf6\xc5\x7e\x87\xc7\x3b\x98\xd7\x86\x94\x44\xa7\x42\xa1\x6e\xda\xb3\xa2\x8e\x13\x81\x2d\x99\xd5\x9a\x04\x4a\xfe\x7b\x89\x93\x36\x29\xb4\x3d\xee\x30\xf3\xcd\x32\xbe\xeb\x23\x0b\x99\x36\xee\x0c\x90\xa8\xe1\xd8\xd1\x9f\xbd\xb9\x7f\x78\x31\xcb\x65\x3d\x5f\x2c\x1e\x97\x75\xad\x75\x59\xd2\xd3\xd6\x27\x12\xb6\x21\x59\x27\x3e\x06\x4a\x90\x44\xb2\xc5\x25\xdd\x5b\xb6\x1d\x04\x9c\xf4\x95\x31\x4b\x03\x6f\x60\xac\x93\xc8\x15\xad\x8c\xdf\xff\xfb\x9b\xd3\x9b\x56\x2d\x84\x9a\x73\x76\xee\x5c\x1c\x82\xcc\x5f\x3b\x1f\x2a\x9a\x7e\x20\x8b\x51\xf0\x49\xd8\x4a\x64\xad\x55\xcf\xe8\x2d\x23\x4b\x7e\x13\xc0\x15\xd9\x41\xb6\xd9\x5d\x64\x8e\xbb\x67\xdb\x0e\xc8\x69\x7a\x46\x8d\x15\x2a\xa1\x6d\x8a\xef\x4a\xe8\x86\x4e\x8c\x22\x49\x64\xbb\x41\xb1\x1e\x29\xff\x7f\xe8\xbe\xcd\x8e\xdb\x54\x54\x9e\xed\xe5\x27\xf4\xe8\xca\xb5\x52\x6a\x36\xa3\xde\x06\xef\xb2\xc9\x2a\xd8\x75\x0b\x92\x48\x27\x28\x31\x1a\x30\x82\x1b\x35\x7b\xcd\x25\x46\x8a\x03\x3b\x4c\x72\xad\x0e\x5a\x61\x0f\x37\x08\x7e\x7f\xbe\x48\x10\x03\xd4\x97\x61\xbf\x8e\x7c\x75\x8c\xd4\xc3\x7b\x00\x00\x00\xff\xff\x2f\xc7\xf7\xdd\xe8\x01\x00\x00" +var _flowserviceaccountSet_tx_fee_surge_factorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xb1\x6a\xf3\x40\x10\x84\xeb\xbb\xa7\x58\x54\x18\xa9\x91\x9a\x9f\xbf\x10\x49\x8c\x53\xe8\x05\x12\xa7\x3f\x5f\x46\xf6\x81\x74\x27\x76\xf7\xb0\x21\xf8\xdd\x83\x65\x3b\x76\x20\x49\xb9\xc3\xcc\x37\xcb\x84\x71\x4a\xac\xd4\x0d\x69\xdf\x01\x42\x3d\xa7\x91\x8a\xeb\x59\x58\xdb\x34\xf4\xba\x0b\x42\xca\x2e\x8a\xf3\x1a\x52\x24\x81\x0a\xe9\x0e\xb7\xd8\xe4\xd8\x8d\x50\xb0\xd8\x3b\x63\x29\x99\xb7\xe8\x9c\xd7\xc4\x2d\xad\xbb\x70\xf8\xff\xaf\xa2\x0f\x6b\x06\x28\xf5\x97\xec\xca\xfb\x94\xa3\xae\xde\xc7\x10\x5b\x5a\x5c\x91\xf5\x2c\x04\x51\x76\x9a\xd8\x5a\x33\x31\x26\xc7\x28\x25\x6c\x23\xb8\x25\x97\x75\x57\x3e\x27\xe6\xb4\x7f\x73\x43\x46\x45\x8b\x0b\x6a\xae\x30\x82\xa1\xaf\x7f\x2a\xa1\x47\x3a\x33\x6a\xd1\xc4\x6e\x8b\x7a\x33\x53\x1e\x7e\xe9\x7e\x2a\x4f\xa3\xb4\xd4\x5c\xec\xcd\x17\xf4\xe4\xaa\xac\x31\x66\xb9\xa4\xc9\xc5\xe0\xcb\x62\x1d\xdd\x66\x00\x69\xa2\x33\x94\x18\x3d\x18\xd1\xcf\x9a\xbb\xe7\x12\x43\x52\x66\x8f\xa2\xb2\xe6\x68\x0d\x0e\xf0\x59\xf1\xf7\xf3\xb5\x40\x3b\xe0\xe5\x36\xec\xf7\x91\xef\x8e\x99\x7a\xfc\x0c\x00\x00\xff\xff\x3b\xbd\x5d\x8d\xe1\x01\x00\x00" func flowserviceaccountSet_tx_fee_surge_factorCdcBytes() ([]byte, error) { return bindataRead( @@ -720,7 +719,7 @@ func flowserviceaccountSet_tx_fee_surge_factorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_tx_fee_surge_factor.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0xa8, 0x68, 0xff, 0x31, 0x16, 0xd5, 0x7a, 0xb4, 0x74, 0x23, 0xc5, 0xad, 0x1c, 0x8c, 0x72, 0xf, 0x17, 0x52, 0x0, 0xad, 0xca, 0x79, 0xd2, 0xb0, 0xf2, 0x8d, 0xb, 0x3c, 0x8a, 0x3f, 0xd2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x64, 0xef, 0xd8, 0xdc, 0x37, 0x2e, 0x4d, 0x8a, 0x1c, 0x33, 0x3d, 0x68, 0x59, 0xbd, 0xda, 0xe, 0x13, 0xad, 0x59, 0x87, 0xb7, 0x74, 0x45, 0xa3, 0xd1, 0xef, 0xa8, 0x33, 0x79, 0x24, 0x93, 0xb0}} return a, nil } @@ -784,7 +783,7 @@ func accountsRevoke_keyCdc() (*asset, error) { return a, nil } -var _dkgAdminForce_stop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x4f\x6b\x83\x40\x10\xc5\xef\x7e\x8a\x47\x0e\xc1\x5c\xa4\x67\x69\x1b\x6c\x4d\x3d\x78\x29\x15\x7a\xdf\xae\xa3\x91\xae\x3b\x32\xce\x92\x40\xc8\x77\x2f\xba\x4d\x21\x87\xbe\xdb\x2e\xf3\x7b\x7f\x86\x71\x62\x51\xbc\x39\x3e\x95\x75\x85\x4e\x78\xc4\xc3\xb9\xac\xab\xa2\x2c\x3f\x0e\x4d\x93\x24\x2a\xc6\xcf\xc6\xea\xc0\x1e\x97\x24\x01\x00\x47\x8a\xf6\xbb\x2f\xda\x71\xf0\x39\xb6\xbf\x70\xb6\xbe\xe3\xc5\x24\x34\x19\xa1\x74\x1e\x7a\x4f\x92\xc3\x04\x3d\xa6\x2f\x2c\xc2\xa7\x4f\xe3\x02\xed\xb0\x2d\xac\xe5\xe0\x75\x87\xcb\x4a\x2c\x9a\xc9\x75\xd9\xcd\x18\x4f\x88\x74\x36\x2b\x8b\xe9\x29\xfb\x5a\xf9\xc7\xfb\xbc\xe7\x74\xe9\x9c\xe3\xee\xb3\x89\xc4\xbb\xd1\xe3\xee\xcf\x7d\xd1\x7e\x8f\xc9\xf8\xc1\xa6\x9b\x57\x0e\xae\x85\x67\x45\xb4\xc5\x32\x3f\x06\x0b\x75\x24\xe4\x2d\x6d\x22\x7c\x8d\x9b\xe8\x4c\x36\x28\xfd\xd7\x37\xeb\x58\x2c\x1d\x7c\x5b\xd6\x55\x7a\x03\xaf\xc9\x4f\x00\x00\x00\xff\xff\x30\xb9\x84\xa5\x61\x01\x00\x00" +var _dkgAdminForce_stop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xbf\x6a\xc3\x30\x10\xc6\x77\x3f\xc5\x87\x87\xa0\x2c\x7a\x00\xd3\x36\xa4\x4d\x9b\x21\x4b\xa1\xd0\x5d\x95\xcf\x8e\xa8\xac\x33\xe7\x13\x29\x84\xbc\x7b\xb1\x95\x14\x32\xf4\xb6\x3b\xee\xf7\xfd\x09\xc3\xc8\xa2\x78\x8b\x7c\xda\x1d\xf6\xe8\x84\x07\xd4\xd7\xad\xae\x2a\x15\x97\x26\xe7\x35\x70\xc2\xb9\xaa\x00\x20\x92\xa2\xfd\xee\xb7\xed\x10\x52\x83\xd5\xf5\xd7\x2e\x7b\xf9\x18\x85\x46\x27\x64\xa6\xd0\x27\x92\x06\x2e\xeb\xd1\x3c\xb3\x08\x9f\x3e\x5d\xcc\xb4\xc6\x6a\xeb\x3d\xe7\xa4\x6b\x9c\x17\x62\x9e\x89\x62\x67\x6f\xc2\x78\x44\xa1\xed\xa4\x2c\xae\x27\xfb\xb5\xf0\x0f\xf7\x7e\x4f\x66\x0e\xdc\xe0\xee\xf8\x51\x88\x77\xa7\xc7\xf5\x9f\xfa\x3c\x9b\x0d\x46\x97\x82\x37\xf5\x0b\xe7\xd8\x22\xb1\xa2\xc8\x62\xee\x5e\x8c\x85\x3a\x12\x4a\x9e\xea\x02\x5f\x4a\x27\xfa\x21\x9f\x95\xfe\xcb\x6b\x3b\x16\x4f\xaf\xa9\xdd\x1d\xf6\xe6\x06\x5e\xaa\xdf\x00\x00\x00\xff\xff\x8e\x1e\xeb\xa5\x5e\x01\x00\x00" func dkgAdminForce_stop_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -800,11 +799,11 @@ func dkgAdminForce_stop_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/force_stop_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0xb8, 0x22, 0xe9, 0x40, 0x5, 0x41, 0x8c, 0x99, 0x9e, 0x1e, 0x56, 0xfb, 0x91, 0x5b, 0xf3, 0xa9, 0xd5, 0xfa, 0x7b, 0xdd, 0x5b, 0x0, 0x6a, 0x6b, 0xf9, 0xf3, 0xaf, 0xea, 0x97, 0x8b, 0xd7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd, 0x7, 0x7c, 0x9c, 0xa1, 0xca, 0xf3, 0xe6, 0x91, 0x69, 0x51, 0x5d, 0xe5, 0x2c, 0xbc, 0x86, 0x32, 0xf5, 0xb5, 0x87, 0xed, 0x11, 0x8e, 0x29, 0xe6, 0x7c, 0x43, 0xc6, 0x29, 0x64, 0x8b, 0x6d}} return a, nil } -var _dkgAdminPublish_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xf3\x40\x10\x86\xef\xfb\x2b\xde\xef\x52\x12\xf8\x48\x3c\x17\x15\x42\xa3\x3d\xf4\x22\xc6\x3f\x30\xdd\x6e\x93\xc1\xcd\xee\xb2\x33\x41\xa5\xf4\xbf\x4b\x13\x95\x0a\xce\x6d\x86\xf7\x79\x5e\x86\xc7\x14\xb3\xe2\xd1\xc7\xb7\x76\xb7\xc5\x31\xc7\x11\x37\xef\xed\x6e\xdb\xb4\xed\xf3\x43\xd7\x19\x53\xd7\x78\x19\x58\xa0\x99\x82\x90\x55\x8e\x01\x2c\x88\xc1\x7f\xe0\x18\x33\xd4\x89\x72\xe8\xff\x19\x73\x9d\x38\x19\x03\x00\x29\xbb\x44\xd9\x15\xc2\x7d\x70\x79\x0d\x9a\x74\x28\x36\x94\x68\xcf\x9e\x95\x9d\x94\x58\x35\xd6\xc6\x29\x68\x89\xd3\x8c\x5c\xc6\x3b\x05\x1d\x46\x0e\x1b\x4a\xb8\xc3\x42\x57\xf6\x8a\xab\x44\x63\xa6\xde\x55\x2c\x32\xb9\xdb\xd5\xd7\x03\x55\x73\xa1\xee\x8b\x5f\x6b\xb7\x44\x9f\x48\x87\xf2\xa7\xe2\x2f\x67\x9a\xf6\x9e\x65\x28\xbe\xab\xff\x83\x74\x8d\x7a\x3e\xdb\xfa\xf0\xda\xcf\xba\xc5\x71\x36\x67\xf3\x19\x00\x00\xff\xff\x85\xcb\x65\x7f\x3d\x01\x00\x00" +var _dkgAdminPublish_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x9e\x3d\x94\x04\x24\xb9\x17\x15\x4a\x45\x0f\x5e\x04\xfd\x03\xd3\xed\x36\x19\xdc\xec\x2e\x33\x13\x44\x4a\xff\xbb\x34\xa9\x12\xc1\xbd\xbd\xe5\x7d\xdf\x1b\x1e\x4a\x16\xc3\x53\xcc\x9f\x8f\x2f\xcf\x38\x4a\x1e\xb0\xba\xa6\x95\x73\x6d\x8b\xf7\x9e\x15\x26\x94\x94\xbc\x71\x4e\x60\x45\x4e\xf1\x0b\xc7\x2c\xb0\xa0\xc6\xa9\xbb\x71\x6e\xd9\x38\x39\x07\x00\x45\x42\x21\x09\x95\x72\x97\x82\x6c\x40\xa3\xf5\xd5\x8e\x0a\xed\x39\xb2\x71\xd0\x1a\xeb\xad\xf7\x79\x4c\x56\xe3\x34\x21\x97\x17\x83\x81\x0e\x03\xa7\x1d\x15\xdc\x63\xa6\x1b\xbf\xe0\x1a\xb5\x2c\xd4\x85\x86\x55\xc7\x70\xb7\xbe\xde\xdb\x6c\x2f\xd4\x43\xf5\x27\xbe\xcd\xd5\x57\xb2\xbe\xfe\x9d\xf8\xcf\x59\xc6\x7d\x64\xed\xab\x9f\xe9\x5b\x90\x6d\xd0\x4e\xdf\xbe\x3d\x7c\x74\x93\x6e\x76\x9c\xdd\xd9\x7d\x07\x00\x00\xff\xff\x7d\x13\x3d\x16\x3a\x01\x00\x00" func dkgAdminPublish_participantCdcBytes() ([]byte, error) { return bindataRead( @@ -820,11 +819,11 @@ func dkgAdminPublish_participantCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/publish_participant.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe, 0xde, 0x73, 0xec, 0x8d, 0xaf, 0x2d, 0xc7, 0xb, 0x91, 0x59, 0x37, 0xa5, 0x34, 0x14, 0x91, 0x58, 0xd0, 0xf8, 0x61, 0xe0, 0x60, 0x4b, 0xae, 0xf2, 0x3f, 0xe2, 0x35, 0x3c, 0xd3, 0xd, 0xa5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x80, 0x1f, 0x80, 0x25, 0x1a, 0x97, 0xdc, 0x4d, 0x5, 0x1a, 0xfe, 0x33, 0x88, 0x86, 0x54, 0x16, 0xe2, 0xc9, 0x2b, 0x7e, 0xaa, 0x72, 0xdf, 0x55, 0x8f, 0x4a, 0x51, 0xd6, 0xe7, 0x59, 0x4e, 0xe}} return a, nil } -var _dkgAdminSet_safe_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x31\x6b\xc3\x30\x10\x85\x77\xff\x8a\x23\x43\x70\x16\xd3\xa1\x74\x30\x6d\x83\x5b\x37\x19\xb2\x84\xba\xed\xae\xca\x67\x5b\x54\xd6\x99\xd3\x09\x1b\x4a\xfe\x7b\x71\x94\x04\x02\xcd\x6d\x3a\xf4\xbe\x77\xef\x99\x7e\x20\x16\xd8\x58\x1a\xcb\xdd\x16\x1a\xa6\x1e\xee\xa6\x72\xb7\x2d\xca\xf2\xfd\xad\xaa\x92\x44\x58\x39\xaf\xb4\x18\x72\xa9\xc3\xf1\xa3\x63\xf4\x1d\xd9\x7a\x8f\xac\xd1\x89\x6a\x31\x87\xcf\x8d\x99\x1e\xee\xd7\x2b\xf8\x4d\x12\x00\x00\x8b\x02\xf5\x4f\x5b\xd4\xbd\x71\x39\x2c\x4f\xf4\xec\xf8\x8e\x3f\x06\xc6\x41\x31\xa6\xde\xb4\x0e\x39\x07\x15\xa4\x4b\x5f\x88\x99\xc6\x2f\x65\x03\xae\x60\x59\x68\x4d\xc1\xc9\x0c\x85\xd3\x78\xb4\x4d\x76\x06\xc3\x13\x44\x75\xe6\x85\x58\xb5\x98\x7d\x1f\xf5\x8f\xd7\x7e\xcf\xe9\x1c\x2a\x87\xab\x65\x15\x15\x7b\x25\xdd\xea\x42\x9f\x67\xbd\x86\x41\x39\xa3\xd3\xc5\x2b\x05\x5b\x83\x23\x81\x88\x85\xb9\x9f\x68\xcc\xd8\x20\xa3\xd3\xb8\x88\xe2\x43\xcc\x84\x13\xea\x20\x78\xeb\xde\xcc\xa3\x54\xaa\xc1\x2a\x68\x8d\xde\x5f\x8a\xbc\xd9\xea\xff\xfb\xb3\xe5\x21\xf9\x0b\x00\x00\xff\xff\xf8\x23\x32\xee\xbc\x01\x00\x00" +var _dkgAdminSet_safe_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x31\x6b\xc3\x30\x10\x85\x77\xff\x8a\xc3\x43\x70\x16\x4f\xa5\x83\x69\x1b\xd2\x96\x74\xe8\x12\x70\xdb\x5d\x95\x9f\x6d\x51\x59\x32\xa7\x13\x0e\x94\xfc\xf7\xe2\xc8\x09\x04\x9a\xdb\xee\xd0\xfb\x9e\xde\x33\xc3\xe8\x59\x68\x67\xfd\xf4\xfa\xfe\x46\x2d\xfb\x81\xf2\x65\xcb\xb3\x4c\x58\xb9\xa0\xb4\x18\xef\x0a\x87\xe9\xa3\x67\x84\xde\xdb\x66\x0f\xd6\x70\xa2\x3a\x54\xf4\xb9\x33\x87\xfb\xbb\xcd\x9a\x7e\xb3\x8c\x88\xc8\x42\xa8\xf9\xe9\xb6\xcd\x60\x5c\x45\xab\x05\x56\x9e\xf6\xf4\x62\x64\x8c\x8a\x51\x04\xd3\x39\x70\x45\x2a\x4a\x5f\x3c\x7b\x66\x3f\x7d\x29\x1b\xb1\xa6\xd5\x56\x6b\x1f\x9d\xcc\x50\x5a\x26\xc0\xb6\xe5\x19\x4c\x8f\x94\xd4\x65\x10\xcf\xaa\x43\xf9\x7d\xd2\x3f\x5c\xfb\x3d\x15\x73\xa2\x8a\xae\x8e\x75\x52\xec\x95\xf4\xeb\x0b\x7d\x9e\xcd\x86\x46\xe5\x8c\x2e\xf2\x17\x1f\x6d\x43\xce\x0b\x25\x2c\xcd\xe5\x24\x63\x46\x0b\x86\xd3\xc8\x93\xf8\x98\x32\xe1\x00\x1d\x05\xb7\xfe\x5b\x06\x48\xad\x5a\xd4\x51\x6b\x84\x70\x29\xf2\x66\xab\xff\xdf\xcf\x96\xc7\xec\x2f\x00\x00\xff\xff\x3c\x47\xb5\xfd\xb9\x01\x00\x00" func dkgAdminSet_safe_thresholdCdcBytes() ([]byte, error) { return bindataRead( @@ -840,11 +839,11 @@ func dkgAdminSet_safe_thresholdCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/set_safe_threshold.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa1, 0x7, 0x87, 0xd3, 0x19, 0x7b, 0x78, 0xde, 0x7c, 0xbe, 0x68, 0x46, 0x27, 0x29, 0xc7, 0x9c, 0x1c, 0xed, 0x26, 0xef, 0xe7, 0xab, 0xf3, 0x70, 0xcb, 0x0, 0xdd, 0x38, 0x6d, 0xc3, 0x54, 0x74}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0x67, 0xe6, 0xde, 0x86, 0xdf, 0xcb, 0xd9, 0x80, 0x6d, 0xf1, 0xfc, 0x5, 0xef, 0x4e, 0x31, 0xed, 0x61, 0xe0, 0x8e, 0xfa, 0xbd, 0x3f, 0xae, 0x92, 0x1e, 0x10, 0x99, 0xb1, 0x3d, 0x43, 0xa6}} return a, nil } -var _dkgAdminStart_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x41\x4b\xf4\x30\x10\x86\xef\xfd\x15\x2f\x7b\x58\xda\x4b\xf9\xce\xe5\xd3\xa5\x1a\x2d\xd2\x8b\x58\xf0\x22\x1e\x62\x3a\xed\x06\xdb\xa4\x4c\xa6\xec\x82\xec\x7f\x97\x6e\xba\xca\x1e\x9c\x53\x12\xf2\x3c\x33\xf3\xda\x71\xf2\x2c\x78\x1c\xfc\x41\xd5\x15\x3a\xf6\x23\xfe\x1d\x55\x5d\x95\x4a\xbd\x3c\x34\x4d\x92\x08\x6b\x17\xb4\x11\xeb\x5d\xea\x7c\x4b\x4f\x2a\x14\x78\x6b\x84\xad\xeb\xdf\x33\x7c\x25\x09\x00\x0c\x24\x68\x3f\xfb\xb2\x1d\xad\x2b\xb0\x5d\x7d\xf9\xf9\x1e\x7f\x4c\x4c\x93\x66\x4a\x83\xed\x1d\x71\x01\x3d\xcb\x3e\xbd\xf3\xcc\xfe\xf0\xaa\x87\x99\x32\x6c\x4b\x63\xfc\xec\x64\x91\x62\xad\x40\x43\x97\x5f\xc4\xb8\x41\xa4\xf3\x20\x9e\x75\x4f\xf9\xc7\x99\xff\x7f\xdd\xef\x36\x5d\xd6\x28\x70\xf5\xd8\x44\xe2\x59\xcb\x3e\xfb\xb1\x2f\xb5\xdb\x61\xd2\xce\x9a\x74\x73\xef\xe7\xa1\x85\xf3\x82\xa8\xc5\x92\x48\x6c\xcc\xd4\x11\x93\x33\xb4\x89\xf0\x29\xee\x44\x47\x32\xb3\xd0\x5f\xf3\xe6\x41\x34\x8b\xaa\xab\xdf\xe0\xd6\xc3\xc5\x72\x4a\xbe\x03\x00\x00\xff\xff\xe5\x59\x1c\xb8\x81\x01\x00\x00" +var _dkgAdminStart_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xb1\x6a\xc3\x30\x10\x86\x77\x3f\xc5\x8f\x87\x60\x2f\x7e\x00\xd3\x36\xa4\x35\x0d\x25\x4b\x21\xd0\xa5\x74\x50\xe5\xb3\x23\x6a\xeb\xcc\xe9\x44\x0a\x25\xef\x5e\x1c\x39\x2d\x19\x72\x93\x4e\xe8\xfb\x4e\xf7\xbb\x71\x62\x51\x3c\x0f\x7c\x6c\x76\x5b\x74\xc2\x23\xf2\xa5\xcb\xb3\x4c\xc5\xf8\x60\xac\x3a\xf6\x85\xe7\x96\x5e\x9a\x50\xe3\x7d\xaf\xe2\x7c\xff\x51\xe2\x27\xcb\x00\x60\x20\x45\xfb\xd5\x6f\xda\xd1\xf9\x1a\xab\x05\xaf\xce\x7d\x7a\x31\x09\x4d\x46\xa8\x08\xae\xf7\x24\x35\x4c\xd4\x43\xf1\xc8\x22\x7c\x7c\x33\x43\xa4\x12\xab\x8d\xb5\x1c\xbd\xce\x52\x2c\x15\x68\xe8\xaa\x8b\x18\xf7\x48\x74\x15\x94\xc5\xf4\x54\x7d\x9e\xf9\xbb\xeb\x79\x0f\xc5\xbc\x43\x8d\xab\xcb\x7d\x22\x5e\x8d\x1e\xca\x3f\xfb\x5c\xeb\x35\x26\xe3\x9d\x2d\xf2\x27\x8e\x43\x0b\xcf\x8a\xa4\xc5\x1c\x47\x1a\x2c\xd4\x91\x90\xb7\x94\x27\xf8\x94\x76\xa2\x6f\xb2\x51\xe9\xd6\x7f\xab\xa0\x46\xb4\xd9\x6d\xff\x83\x5b\x0e\x17\xcb\x29\xfb\x0d\x00\x00\xff\xff\x5b\x70\x21\x9a\x7e\x01\x00\x00" func dkgAdminStart_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -860,11 +859,11 @@ func dkgAdminStart_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/start_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0xdc, 0xf6, 0xc7, 0xa3, 0xf5, 0x9e, 0xb8, 0xdc, 0xf2, 0x98, 0x40, 0xd2, 0x90, 0x5d, 0x10, 0xea, 0xd, 0xa7, 0x85, 0x99, 0x86, 0x90, 0x7, 0x56, 0x34, 0x18, 0xd3, 0xd4, 0xb0, 0xc8, 0x56}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0xad, 0x9e, 0x9d, 0xaa, 0x32, 0xd9, 0x6a, 0x40, 0x16, 0x36, 0x35, 0x82, 0x11, 0xeb, 0x74, 0x9f, 0xfc, 0x95, 0xaa, 0xa7, 0x64, 0x9c, 0xf0, 0xc5, 0x3c, 0x4a, 0xd9, 0xb, 0x1e, 0x18, 0xb7}} return a, nil } -var _dkgAdminStop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x4f\x6b\xb3\x40\x10\xc6\xef\x7e\x8a\x87\x1c\x82\x5e\xe4\x3d\xcb\xdb\x06\x5b\x5b\x0f\x5e\x4a\x85\xde\xb7\xeb\x68\xa4\xeb\x8e\x8c\xb3\x24\x10\xf2\xdd\x8b\x6e\x53\xc8\xa1\xcf\x6d\x97\xf9\x3d\x7f\xc6\x69\x66\x51\xbc\x3a\x3e\x55\x4d\x8d\x5e\x78\xc2\xbf\x73\xd5\xd4\x65\x55\xbd\xbf\xb4\x6d\x92\xa8\x18\xbf\x18\xab\x23\x7b\x5c\x92\x04\x00\x1c\x29\xba\xaf\xa1\xec\xa6\xd1\x17\xd8\xff\xc0\xf9\xf6\x8e\x17\xb3\xd0\x6c\x84\xd2\x65\x1c\x3c\x49\x01\x13\xf4\x98\x3e\xb1\x08\x9f\x3e\x8c\x0b\x94\x61\x5f\x5a\xcb\xc1\x6b\x86\xcb\x46\xac\x5a\xc8\xf5\xf9\xcd\x18\x0f\x88\x74\xbe\x28\x8b\x19\x28\xff\xdc\xf8\xff\xf7\x79\x8f\xe9\xda\xb9\xc0\xdd\x67\x1b\x89\x37\xa3\xc7\xec\xd7\x7d\xd5\xe1\x80\xd9\xf8\xd1\xa6\xbb\x67\x0e\xae\x83\x67\x45\xb4\xc5\x3a\x3f\x06\x0b\xf5\x24\xe4\x2d\xed\x22\x7c\x8d\x9b\xe8\x4c\x36\x28\xfd\xd5\x37\x27\xdf\x55\x4d\x9d\xde\x98\x6b\xf2\x1d\x00\x00\xff\xff\x85\x1b\x18\x69\x5c\x01\x00\x00" +var _dkgAdminStop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xcd\x6a\xeb\x30\x10\x85\xf7\x7e\x8a\x83\x17\x41\xde\xe8\x01\xcc\xbd\x0d\x69\x43\xb3\xc8\xa6\x50\xe8\x5e\x95\xc7\x8e\xa8\xac\x31\xe3\x11\x29\x84\xbc\x7b\xb1\x95\x14\xb2\xe8\xec\x66\x98\xef\xfc\x84\x71\x62\x51\xbc\x46\x3e\xef\x8f\x07\xf4\xc2\x23\xea\xdb\x56\x57\x95\x8a\x4b\xb3\xf3\x1a\x38\xe1\x52\x55\x00\x10\x49\xd1\x7d\x0d\xbb\x6e\x0c\xa9\xc5\xe6\xf6\x6b\xd7\xbd\x7c\x4c\x42\x93\x13\x32\x73\x18\x12\x49\x0b\x97\xf5\x64\x9e\x59\x84\xcf\x1f\x2e\x66\x6a\xb0\xd9\x79\xcf\x39\x69\x83\xcb\x4a\x2c\x33\x53\xec\xed\x5d\x18\xff\x51\x68\x3b\x2b\x8b\x1b\xc8\x7e\xae\xfc\xbf\x47\xbf\x27\xb3\x04\x6e\xf1\x70\x7c\x2f\xc4\x9b\xd3\x53\xf3\xab\xbe\xcc\x76\x8b\xc9\xa5\xe0\x4d\xfd\xc2\x39\x76\x48\xac\x28\xb2\x58\xba\x17\x63\xa1\x9e\x84\x92\xa7\xba\xc0\xd7\xd2\x89\xbe\xc9\x67\xa5\xbf\xf2\x5a\x4a\xdd\xfe\x78\x30\x77\xe6\x5a\xfd\x04\x00\x00\xff\xff\x87\x3a\x5a\x8e\x59\x01\x00\x00" func dkgAdminStop_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -880,11 +879,11 @@ func dkgAdminStop_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/stop_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x61, 0x13, 0xc0, 0xf4, 0x19, 0xac, 0x6, 0xbb, 0xc9, 0x50, 0x80, 0xec, 0xc5, 0x28, 0x61, 0x10, 0xda, 0x43, 0x52, 0x11, 0xe7, 0x84, 0x7d, 0xbd, 0xcf, 0xf1, 0xdd, 0x88, 0x5, 0x7f, 0xa1, 0xdf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xda, 0x6d, 0xdc, 0x10, 0x3a, 0xa6, 0xb1, 0xad, 0x8f, 0x3, 0x9, 0x74, 0xf9, 0xc6, 0x3e, 0x5a, 0x8e, 0x69, 0xcf, 0x6e, 0x2a, 0xe, 0xed, 0x75, 0x9c, 0xf3, 0x4d, 0x37, 0x62, 0x8f, 0x9e, 0x5f}} return a, nil } -var _dkgCreate_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\x41\x8b\xea\x30\x10\x80\xef\xfd\x15\x83\x07\x49\x41\xe3\x3b\x17\xdf\x93\xf2\xfa\x9e\x2c\x5e\x64\x0b\x7b\x1f\x93\xb1\x06\x6b\x12\x26\x53\x5d\x58\xfc\xef\x8b\xa6\x2e\x3a\x97\x84\x4c\xbe\x6f\x26\x13\x77\x8a\x81\x05\xfe\xf7\xe1\xd2\x6c\xd6\xb0\xe7\x70\x82\x5f\x9f\xcd\x66\x5d\x37\xcd\xfb\xbf\xb6\x2d\x0a\x61\xf4\x09\x8d\xb8\xe0\x15\x5a\xcb\x94\x52\x05\x75\xde\xcc\xc0\x07\x4b\x6f\x4d\x05\xad\xb0\xf3\x5d\x09\x5f\x45\x01\x00\x10\x99\x22\x32\xa9\xe4\x3a\x4f\x5c\x01\x0e\x72\x50\x2d\x9e\xe9\x03\xfb\x81\x4a\x98\xd6\xc6\x84\xc1\xcb\x0d\x80\x31\x7a\x12\x40\x7b\x72\x1e\x7e\x43\x47\x32\xde\x78\xd4\x2c\xb5\xc1\x88\x3b\xd7\x3b\x71\x94\xf4\x2e\x30\x87\xcb\x72\x3a\x36\xae\xeb\x1b\xf8\x47\x2d\xe2\xb0\xeb\x9d\x59\xd8\x63\x77\x3f\x29\x7f\xec\xf7\x58\xad\x20\xa2\x77\x46\x4d\xfe\x86\xa1\xb7\xe0\x83\x40\x36\x8d\x95\x99\xf6\xc4\xe4\x0d\x4d\xca\xe2\xa5\x31\x7b\xec\xb6\xc8\xe2\x8c\x8b\xe8\x05\x96\xf3\x0c\x68\xc3\x84\x42\x4f\x29\xf5\x98\x48\x5e\x9f\x34\x79\x16\x3a\x49\x60\xec\x48\x27\x3c\x93\x5a\xce\x5f\xc5\x33\x90\x50\x3d\x7e\x43\x3f\x25\xda\x4c\x6d\x51\x0e\xf9\x4d\xd7\xa2\xb8\x7e\x07\x00\x00\xff\xff\x55\x4a\x21\x15\xbd\x01\x00\x00" +var _dkgCreate_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\x4f\x8b\x32\x31\x0c\xc6\xef\xfd\x14\x61\x0e\xd2\x01\xad\xf7\xc1\xf7\x15\x59\xd9\x65\xd9\x8b\x20\xec\x3d\xb6\x71\x2c\xd6\xb6\xa4\x19\x3d\x2c\x7e\xf7\x45\x3b\x2e\x9a\x4b\xff\xa4\xcf\x2f\xe9\x13\x7f\xca\x89\x05\xde\x43\xba\xac\xbf\x3e\x60\xcf\xe9\x04\xcd\x78\x6a\x94\x12\xc6\x58\xd0\x8a\x4f\x51\xa3\x73\x4c\xa5\x74\xb0\xaa\x9b\x29\xc4\xe4\xe8\x73\xdd\xc1\x56\xd8\xc7\xbe\x85\x1f\xa5\x00\x00\x32\x53\x46\x26\x5d\x7c\x1f\x89\x3b\xc0\x41\x0e\x7a\x8b\x67\xfa\xc6\x30\x50\x0b\x93\x95\xb5\x69\x88\x72\x13\xc0\x18\x81\x04\xd0\x9d\x7c\x84\x7f\xd0\x93\x8c\x2f\x1e\x35\x5b\x63\x31\xe3\xce\x07\x2f\x9e\x8a\xd9\x25\xe6\x74\x59\x4c\xc6\x3e\xcd\xea\x26\xfc\xaf\xe7\x79\xd8\x05\x6f\xe7\xee\xd8\xdf\x6f\xda\x3f\xfa\x3d\x96\x4b\xc8\x18\xbd\xd5\xcd\x5b\x1a\x82\x83\x98\x04\x2a\x69\xac\xcc\xb4\x27\xa6\x68\xa9\x69\xd5\x4b\x63\xee\xd8\x6f\x90\xc5\x5b\x9f\x31\x0a\x2c\x66\x55\x60\x2c\x13\x0a\x3d\xa5\xf4\xc3\x91\xba\x3e\x61\xaa\x17\xa6\x48\x62\xec\xc9\x14\x3c\x93\x5e\xcc\x5e\xc1\x53\x90\xd4\x3d\x46\x61\x9e\x12\xdb\xaa\xda\xa0\x1c\xea\x9f\xae\x4a\x5d\x7f\x03\x00\x00\xff\xff\x98\xcb\x3b\x89\xba\x01\x00\x00" func dkgCreate_participantCdcBytes() ([]byte, error) { return bindataRead( @@ -900,11 +899,11 @@ func dkgCreate_participantCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/create_participant.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2f, 0x65, 0x31, 0x8a, 0xd1, 0x16, 0x1b, 0x11, 0x22, 0x80, 0xb, 0xc8, 0x8f, 0x2, 0x22, 0xd3, 0xbc, 0xd7, 0x56, 0x70, 0xbc, 0x66, 0x61, 0x29, 0xf3, 0xd7, 0xb7, 0xb3, 0xaa, 0x3b, 0x39, 0x4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc8, 0xd2, 0xd0, 0x2c, 0xe0, 0x71, 0x8f, 0x21, 0x72, 0xbf, 0x1e, 0x92, 0xa8, 0x50, 0xdd, 0x8b, 0x75, 0xf3, 0x9, 0xba, 0x2d, 0x99, 0x6, 0xd7, 0x5c, 0x10, 0x6f, 0x42, 0xe8, 0xd7, 0x40, 0x67}} return a, nil } -var _dkgScriptsGet_consensus_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xb1\x0a\xc2\x30\x10\x06\xe0\x3d\x4f\xf1\x8f\xcd\x22\xce\x6e\x62\xb4\x48\xc1\xc1\x8c\xe2\x10\xea\xb5\x04\x92\x3b\xb9\x4b\x50\x10\xdf\xdd\xc9\x17\xf8\x72\x7d\x8a\x36\x9c\x8a\xbc\xc2\x34\x62\x51\xa9\xd8\xbe\xc3\x34\xee\x43\xb8\x1e\x63\x74\x2e\xcd\x33\x99\x0d\xa9\x14\x8f\xa5\x33\x6a\xca\x3c\xf8\x1d\x6e\xb1\x69\xe6\xf5\x8e\x8f\x03\x00\xa5\xd6\x95\xff\xd0\x66\xa5\x76\x10\x36\x62\xeb\x76\x91\x07\x9d\x83\x0d\xde\x7d\x7f\x01\x00\x00\xff\xff\x60\x8c\xcb\x25\x6f\x00\x00\x00" +var _dkgScriptsGet_consensus_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\xa2\x83\x4b\x8a\x32\xf3\xd2\x63\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xa6\xe8\xa5\xa7\x96\x38\xe7\xe7\x15\xa7\xe6\x15\x97\x16\xfb\xe5\xa7\xa4\x7a\xba\x14\x6b\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x03\x4f\x6a\x43\x6c\x00\x00\x00" func dkgScriptsGet_consensus_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -920,11 +919,11 @@ func dkgScriptsGet_consensus_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_consensus_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0xc3, 0x8d, 0x18, 0xc3, 0x4e, 0xd0, 0x79, 0xb8, 0x29, 0xa, 0xcd, 0x95, 0x6e, 0xf5, 0xf0, 0x2, 0x58, 0x8e, 0xc5, 0x88, 0x6f, 0x4a, 0x29, 0xdc, 0x2e, 0x1d, 0xcf, 0x87, 0x29, 0x1d, 0xc5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe7, 0x3d, 0x2d, 0xb4, 0x11, 0x55, 0x1c, 0x12, 0x8c, 0xef, 0x55, 0x49, 0x4, 0x87, 0x30, 0xe, 0x30, 0x30, 0x9, 0xbc, 0x2b, 0x37, 0x38, 0xda, 0x84, 0x9d, 0x4e, 0xf2, 0xc0, 0x6b, 0x83, 0xaa}} return a, nil } -var _dkgScriptsGet_dkg_canonical_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x88\x0e\x2e\x29\xca\xcc\x4b\xb7\x8f\xb5\x57\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x19\xa5\x97\x92\x9d\xee\x9c\x9f\x5b\x90\x93\x5a\x92\x9a\xa2\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\xce\x4e\x4f\xd2\x6a\x00\x00\x00" +var _dkgScriptsGet_dkg_canonical_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\xa2\x83\x4b\x8a\x32\xf3\xd2\xed\x63\xed\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xe6\xe8\xa5\x64\xa7\x3b\xe7\xe7\x16\xe4\xa4\x96\xa4\xa6\x68\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x4a\x98\xa7\xb9\x67\x00\x00\x00" func dkgScriptsGet_dkg_canonical_final_submissionCdcBytes() ([]byte, error) { return bindataRead( @@ -940,11 +939,11 @@ func dkgScriptsGet_dkg_canonical_final_submissionCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_dkg_canonical_final_submission.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0xea, 0xf4, 0xe4, 0x20, 0x5d, 0x4c, 0xb7, 0x19, 0x78, 0x89, 0xd1, 0x97, 0x27, 0x7a, 0x7a, 0x1b, 0xd7, 0x38, 0xed, 0x37, 0xd9, 0x50, 0x38, 0xf, 0x4c, 0x16, 0x2a, 0x5b, 0xf2, 0x51, 0xe3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x57, 0xf2, 0x83, 0x6, 0xda, 0x92, 0xb2, 0x41, 0x12, 0x21, 0xe4, 0x90, 0x6e, 0x29, 0x13, 0xef, 0x81, 0x0, 0xf0, 0xe9, 0xfd, 0xb9, 0x93, 0x8f, 0x9d, 0xd0, 0x11, 0x19, 0xe6, 0x76, 0x9c}} return a, nil } -var _dkgScriptsGet_dkg_completedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x70\xca\xcf\xcf\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x19\xa2\x97\x92\x9d\xee\x9c\x9f\x5b\x90\x93\x5a\x92\x9a\xa2\xa1\xa9\xa0\x68\xab\x90\x97\x99\xc3\x55\x0b\x08\x00\x00\xff\xff\xfe\x3a\x11\x65\x6b\x00\x00\x00" +var _dkgScriptsGet_dkg_completedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x9c\xf2\xf3\x73\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\x26\xe8\xa5\x64\xa7\x3b\xe7\xe7\x16\xe4\xa4\x96\xa4\xa6\x68\x68\x2a\x28\xda\x2a\xe4\x65\xe6\x70\xd5\x02\x02\x00\x00\xff\xff\x11\x95\xaf\x8f\x68\x00\x00\x00" func dkgScriptsGet_dkg_completedCdcBytes() ([]byte, error) { return bindataRead( @@ -960,11 +959,11 @@ func dkgScriptsGet_dkg_completedCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_dkg_completed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd5, 0x4d, 0x2e, 0xb8, 0x6c, 0x19, 0xdc, 0xb0, 0x4d, 0x3c, 0x2f, 0xad, 0x19, 0x41, 0x24, 0x1f, 0xc0, 0x24, 0x26, 0x16, 0x8a, 0x0, 0x54, 0x17, 0x73, 0x47, 0x36, 0xd3, 0x9f, 0x14, 0x87, 0x33}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x3d, 0xd5, 0x9b, 0xea, 0x53, 0x7d, 0x55, 0xf4, 0xf3, 0x4b, 0x20, 0x1b, 0x34, 0x62, 0x55, 0xf8, 0x5, 0x8c, 0x9a, 0x74, 0x89, 0xae, 0x91, 0x6, 0x82, 0xe4, 0x48, 0xf6, 0x4e, 0x8d, 0xee}} return a, nil } -var _dkgScriptsGet_dkg_enabledCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x70\xca\xcf\xcf\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x19\xa2\x97\x92\x9d\xee\x9a\x97\x98\x94\x93\x9a\xc2\x55\x0b\x08\x00\x00\xff\xff\x31\x60\x50\x0e\x60\x00\x00\x00" +var _dkgScriptsGet_dkg_enabledCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x9c\xf2\xf3\x73\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\x26\xe8\xa5\x64\xa7\xbb\xe6\x25\x26\xe5\xa4\xa6\x70\xd5\x02\x02\x00\x00\xff\xff\x55\x28\x2f\xf2\x5d\x00\x00\x00" func dkgScriptsGet_dkg_enabledCdcBytes() ([]byte, error) { return bindataRead( @@ -980,11 +979,11 @@ func dkgScriptsGet_dkg_enabledCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_dkg_enabled.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfa, 0x6b, 0xcd, 0xb3, 0x66, 0x51, 0xc, 0x1, 0xc6, 0xf9, 0x15, 0xcc, 0xe2, 0x38, 0x3e, 0x60, 0xa0, 0x94, 0x9e, 0x94, 0x8e, 0xe, 0x90, 0xb6, 0x9d, 0x80, 0xf4, 0xec, 0x8d, 0x3a, 0x6c, 0xc7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x68, 0xfc, 0x94, 0x94, 0xc2, 0x47, 0xe4, 0x85, 0xd6, 0xa7, 0x3e, 0x3d, 0xda, 0x58, 0x72, 0xa9, 0x4e, 0xf0, 0xd3, 0x49, 0xc0, 0x9e, 0x16, 0x91, 0x58, 0x35, 0xa, 0xb6, 0x16, 0x38, 0x76, 0x3c}} return a, nil } -var _dkgScriptsGet_final_submissionsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xb1\x0a\xc2\x30\x10\x06\xe0\x3d\x4f\xf1\x8f\xc9\x22\xce\x2e\x22\xc4\x76\xe8\x66\xc6\xd2\x21\x96\xb4\x1c\x24\x17\xb9\x4b\x50\x10\xdf\xdd\xa9\x2f\xf0\x51\x79\x55\x69\x18\x72\x7d\xfb\x69\xc4\x26\xb5\xe0\xfc\xf1\xd3\x78\xf3\xfe\x71\x0f\xc1\x98\xb8\xae\x49\xd5\xc6\x9c\x1d\xb6\xce\x28\x91\xd8\xba\x0b\xe6\x39\x34\x21\xde\xaf\xcb\x82\xaf\x01\x00\x49\xad\x0b\x1f\xd6\x69\x4f\x6d\x20\x8e\x39\xf4\x67\x21\x55\xaa\xac\xd6\x99\xdf\x3f\x00\x00\xff\xff\x33\x68\x74\xa3\x72\x00\x00\x00" +var _dkgScriptsGet_final_submissionsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\xa2\xa3\x83\x4b\x8a\x32\xf3\xd2\xed\x63\x63\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\x06\xe9\xa5\xa7\x96\xb8\x65\xe6\x25\xe6\x04\x97\x26\xe5\x66\x16\x17\x67\xe6\xe7\x15\x6b\x68\x72\xd5\x02\x02\x00\x00\xff\xff\xdf\x0a\xe3\xa8\x6f\x00\x00\x00" func dkgScriptsGet_final_submissionsCdcBytes() ([]byte, error) { return bindataRead( @@ -1000,11 +999,11 @@ func dkgScriptsGet_final_submissionsCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_final_submissions.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb5, 0x60, 0x32, 0x7f, 0x64, 0xf7, 0xb2, 0x57, 0xd6, 0x91, 0xaf, 0x11, 0x29, 0xf8, 0x18, 0x9c, 0x9a, 0x3f, 0x5d, 0x9, 0x66, 0x4c, 0xcb, 0x77, 0x73, 0xb5, 0x90, 0xad, 0xa0, 0xd9, 0x1, 0x71}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xee, 0xfe, 0xb9, 0x5, 0x6d, 0x2e, 0x29, 0xa0, 0x6e, 0x49, 0x94, 0x63, 0x61, 0xb4, 0xe8, 0x3, 0x6a, 0x1a, 0xa2, 0xc1, 0xd8, 0x3b, 0x19, 0x42, 0x60, 0x55, 0xeb, 0x52, 0x69, 0x6f, 0x7, 0x63}} return a, nil } -var _dkgScriptsGet_latest_whiteboard_messagesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\xc3\x30\x10\x85\x77\xff\x8a\x37\xda\x14\x4c\xbb\x86\x7a\x68\x71\x1b\x42\xe8\xd2\x0c\x1d\x8c\x87\x23\xbe\xd8\x07\xb2\x64\xa4\x4b\x13\x28\xf9\xef\xc5\xaa\x2d\x68\xe9\xa2\xe1\xe9\xbb\xf7\x3d\x19\x27\xe7\x15\xaf\xc6\x5d\xea\xfd\x16\x27\xef\x46\xdc\x5f\xeb\xfd\xf6\xa9\xae\xdf\x5f\x0e\x87\x2c\xa3\xe3\x91\x43\xc8\xc9\x98\x02\xa7\xb3\xc5\x48\x62\xf3\x99\xdb\xd9\x8e\xaf\x1b\xec\xac\x16\x1b\x34\x4b\x43\xf9\xc6\x21\x50\xcf\x2d\xbe\x32\x00\x30\xac\x18\x7f\xa2\x80\x6a\xf5\x94\x3d\xeb\xc7\x20\xca\xcf\x8e\x7c\xb7\x9c\x84\xbc\x88\x27\x9f\xe4\x61\x48\x39\xe8\xfa\xf1\x5f\x7d\x85\xa6\x4d\xb8\xa0\x42\x9a\x14\xd3\xcb\x20\x86\x21\x78\x4c\xf6\xd2\xb0\xed\x75\x58\x76\xc5\x6d\xbf\x24\x25\x4d\x13\xdb\x2e\x5f\xf9\x46\xda\x22\xa1\xb3\x40\x70\x87\x87\x98\xdc\xe2\xeb\x59\xcf\xde\xfe\x69\xc9\x6e\xdf\x01\x00\x00\xff\xff\x64\xd3\xce\xa2\x52\x01\x00\x00" +var _dkgScriptsGet_latest_whiteboard_messagesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x4f\x4b\xc3\x40\x14\xc4\xef\xf9\x14\x43\x4f\x09\xc2\x82\xd7\x62\x2e\x22\x4a\x11\xcf\x1e\x42\x0e\x8f\xe6\x35\x79\xb0\x7f\xc2\xee\xab\x15\xa4\xdf\x5d\xba\x6e\x16\x14\x2f\x0b\x3b\x6f\x66\x7e\x23\x6e\x0d\x51\xf1\x6c\xc3\xe5\xe9\xf5\x05\xa7\x18\x1c\x76\xe5\xb7\x6b\x1a\x3a\x1e\x39\xa5\x96\xac\xed\x70\x3a\x7b\x38\x12\xdf\xde\x4c\x07\x3f\xf1\xe7\x1e\x07\xaf\xdd\x1e\x43\x09\x98\x37\x4e\x89\x66\x1e\xf1\xd5\x00\x80\x65\x85\xfb\x91\x12\xfa\x0d\x62\x66\xd6\xf7\x45\x94\x1f\x03\xc5\xa9\x44\x52\xdb\xe5\xc8\x07\x45\x58\x52\x4e\xba\x1d\xfe\xab\xef\x31\x8c\xd5\x2e\xe8\x51\x27\x65\xf5\xb2\x88\x65\x08\x1e\x2a\xdd\x58\xf6\xb3\x2e\x65\x57\xde\xf6\x0b\x62\x68\x5d\xd9\x4f\xed\xe6\x1f\x64\xec\xaa\xf5\x06\x10\xdc\xe1\x3e\x2b\xd7\xfc\x46\xd6\x73\xf4\x7f\x5a\x9a\xeb\x77\x00\x00\x00\xff\xff\xc3\xba\x75\xf6\x4f\x01\x00\x00" func dkgScriptsGet_latest_whiteboard_messagesCdcBytes() ([]byte, error) { return bindataRead( @@ -1020,11 +1019,11 @@ func dkgScriptsGet_latest_whiteboard_messagesCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_latest_whiteboard_messages.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcb, 0xcd, 0xe3, 0xda, 0x2f, 0x97, 0x67, 0x40, 0xfc, 0xfb, 0x2f, 0xb9, 0x94, 0x2a, 0x31, 0x7f, 0xbe, 0x64, 0x98, 0xc6, 0x50, 0xb8, 0xca, 0x45, 0xe8, 0xcf, 0xd6, 0x12, 0xa9, 0xe0, 0x7, 0x11}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x55, 0x96, 0xf2, 0x4, 0x13, 0x63, 0xa6, 0xbb, 0x97, 0x4b, 0xe2, 0x69, 0xfe, 0x46, 0xd0, 0xe0, 0xbd, 0x99, 0xf0, 0x9c, 0x62, 0xfc, 0x72, 0x85, 0x97, 0x67, 0xff, 0x8b, 0xf9, 0xc1, 0xfa}} return a, nil } -var _dkgScriptsGet_node_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xbd\x0a\xc2\x30\x14\x06\xd0\x3d\x4f\xf1\xb9\x35\x8b\x38\x77\x11\x21\xb6\x48\xc1\xc1\x8c\xe2\x10\xdb\xb4\x5c\x48\xee\x95\xfc\xa0\x20\xbe\xbb\x43\xe9\x76\xa6\x43\xf1\x25\xa9\xa0\x0b\xf2\x36\x43\x8f\x39\x49\xc4\xe1\x63\x86\xfe\x64\xcc\xed\x6c\xad\x52\x6e\x1c\x7d\xce\x8d\x0b\x41\x63\xae\x8c\xe8\x88\x1b\x96\xc9\x5f\x4c\x0b\x5b\x12\xf1\xa2\x5b\xdc\x57\x1d\x1f\xf8\x2a\x00\x48\xbe\xd4\xc4\xdb\xbb\x5f\x7c\xb9\xca\xe4\x3b\x62\x17\x6c\x7d\x46\xca\x99\x64\x6b\xf4\x4e\xfd\xfe\x01\x00\x00\xff\xff\x0f\xf0\x73\xe4\x88\x00\x00\x00" +var _dkgScriptsGet_node_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\xf2\xf2\x53\x52\x3d\x5d\xac\x14\x82\x4b\x8a\x32\xf3\xd2\x35\xad\x14\xa2\x21\x2c\xfb\x58\x85\x6a\x2e\x05\x05\x05\x85\xa2\xd4\x92\xd2\xa2\x3c\x98\xa1\x7a\xe9\xa9\x25\x7e\xf9\x29\xa9\x6e\x99\x79\x89\x39\xc1\xa5\x49\xb9\x99\xc5\xc5\x99\xf9\x30\x63\x34\x15\xb9\x6a\x01\x01\x00\x00\xff\xff\x26\x0a\xc4\x4b\x85\x00\x00\x00" func dkgScriptsGet_node_final_submissionCdcBytes() ([]byte, error) { return bindataRead( @@ -1040,11 +1039,11 @@ func dkgScriptsGet_node_final_submissionCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_node_final_submission.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5, 0xa3, 0xd, 0x76, 0xe5, 0x82, 0x16, 0xf2, 0x5e, 0xed, 0x5f, 0xef, 0x1f, 0x6b, 0xd9, 0xa9, 0x3, 0x80, 0x1e, 0x47, 0xcb, 0x8f, 0xf0, 0x15, 0xc5, 0x8d, 0x97, 0xb4, 0x3f, 0x5e, 0x2e, 0xab}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0x5c, 0x55, 0x20, 0xed, 0x65, 0x8c, 0x26, 0x11, 0xb8, 0x8f, 0xf3, 0x5d, 0x8f, 0x70, 0x73, 0x12, 0x8e, 0xb2, 0xf3, 0xf7, 0x40, 0x45, 0x6e, 0xf1, 0x7d, 0xb5, 0x91, 0x60, 0xae, 0x86, 0x8a}} return a, nil } -var _dkgScriptsGet_node_has_submittedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xb1\x0a\xc2\x30\x10\x87\xf1\x3d\x4f\xf1\x1f\xdb\x45\x9c\xbb\x29\xa7\x55\xba\x99\x27\x88\x6d\x2a\x81\xe4\x4e\x2e\x17\x14\xc4\x77\x17\x41\xf7\xef\xfb\xa5\x72\x17\x35\x1c\xb3\x3c\x68\x1a\xb1\xaa\x14\x6c\x9f\x34\x8d\x3b\xa2\xcb\xc1\x7b\xe7\xc2\x3c\xc7\x5a\xbb\x90\x73\x8f\xb5\x31\x4a\x48\xdc\xb1\x2c\xf1\x4c\x03\xbc\x69\xe2\x5b\x3f\x60\x2f\x92\xf1\x72\x00\xa0\xd1\x9a\xf2\x9f\xdc\x7c\xd3\x53\xa8\xbe\x5d\x4b\x32\x8b\xcb\xef\xed\xdd\xfb\x13\x00\x00\xff\xff\x4a\x97\x2c\xe5\x7c\x00\x00\x00" +var _dkgScriptsGet_node_has_submittedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\xf2\xf2\x53\x52\x3d\x5d\xac\x14\x82\x4b\x8a\x32\xf3\xd2\x35\xad\x14\x9c\xf2\xf3\x73\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xe6\xe9\x81\x94\x7a\x24\x16\x07\x97\x26\xe5\x66\x96\x94\xa4\xa6\x40\xf5\x6a\x72\xd5\x02\x02\x00\x00\xff\xff\x85\x3a\x25\x9d\x79\x00\x00\x00" func dkgScriptsGet_node_has_submittedCdcBytes() ([]byte, error) { return bindataRead( @@ -1060,11 +1059,11 @@ func dkgScriptsGet_node_has_submittedCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_node_has_submitted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe9, 0x7c, 0x5e, 0x2e, 0x7c, 0xb9, 0x27, 0x61, 0x3f, 0xe6, 0x38, 0xb0, 0x9d, 0x50, 0xc6, 0x78, 0x8b, 0x3f, 0xc9, 0x5b, 0xae, 0x58, 0xe2, 0x44, 0xec, 0x20, 0x4b, 0x7a, 0xba, 0xef, 0x25, 0x55}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x53, 0xcd, 0x46, 0x4c, 0xce, 0x40, 0xef, 0x90, 0xf4, 0xd1, 0xe6, 0x7a, 0x2d, 0x67, 0xb9, 0x57, 0xc4, 0xcd, 0xf5, 0xd, 0x39, 0xb5, 0x3d, 0xda, 0x2f, 0xc0, 0x9, 0xda, 0x68, 0x71, 0x0, 0x95}} return a, nil } -var _dkgScriptsGet_node_is_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xcc\xbd\x0a\xc2\x30\x14\xc5\xf1\x3d\x4f\x71\xba\xb5\x8b\x38\x17\x1c\xd4\x68\x29\xdd\xec\x13\x84\x36\x91\x0b\x37\x37\x25\x49\x51\x90\xbe\xbb\xf8\xd1\xc9\xc5\x33\x9f\xdf\x9f\xfc\x14\x62\xc6\x99\xc3\x4d\x77\x0d\x5c\x0c\x1e\xdb\xbb\xee\x9a\xbd\xd6\x97\x53\xdf\x2b\x65\x86\xc1\xa6\x54\x1a\xe6\x0a\x6e\x16\x78\x43\x52\x4a\x18\x6d\xab\x6b\xf4\x39\x92\x5c\xab\x1a\x87\x10\x18\x0f\x05\x00\xe4\xd6\xdc\x66\x32\x31\xd3\x40\x93\x91\xdc\xa6\x23\x1b\xf2\x76\xfc\xda\x0a\xc5\x0e\x42\x2b\x7a\x2d\xda\x3c\x47\xf9\x0b\x17\x6f\xb4\xc0\x72\xb2\xbf\x05\x67\x38\xd9\xcf\x43\x2d\xcf\x00\x00\x00\xff\xff\x75\x78\xfb\xf8\xe2\x00\x00\x00" +var _dkgScriptsGet_node_is_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xcc\x31\xaa\xc2\x40\x10\xc6\xf1\x7e\x4f\xf1\x25\x55\xd2\xbc\x03\x04\x5e\xa3\x41\x09\x96\x9e\x60\x48\x66\x65\x60\x76\x36\xec\x6e\xb0\x90\xdc\x5d\xd4\xa4\xb2\x71\xba\x81\xef\xf7\x97\x30\xc7\x54\x70\xd2\x78\xef\x2f\x67\xf8\x14\x03\xea\xed\xab\x9d\xa3\x71\xe4\x9c\x1b\x52\x6d\xe1\x17\x43\x20\xb1\xc6\xe2\xc4\x43\xdf\xe1\x5a\x92\xd8\xad\xed\x70\x88\x51\xf1\x70\x00\x20\x7e\x6f\xfd\xcd\x94\x8a\x8c\x32\x93\x95\x21\x1f\x95\x24\xf0\xb4\xd9\x16\xd5\x3f\x4c\x76\xf4\xba\xc4\x65\x49\xf6\x13\xae\xde\x68\x05\x6b\xe6\xef\x82\x27\xcd\xfc\x59\xb8\xf5\x19\x00\x00\xff\xff\xad\xe0\xc3\x42\xdf\x00\x00\x00" func dkgScriptsGet_node_is_claimedCdcBytes() ([]byte, error) { return bindataRead( @@ -1080,11 +1079,11 @@ func dkgScriptsGet_node_is_claimedCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_node_is_claimed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x2d, 0x0, 0x7a, 0x87, 0xc2, 0x5e, 0x9f, 0xd7, 0x7b, 0x61, 0x16, 0x93, 0x0, 0xe0, 0xff, 0x3, 0x4, 0xe8, 0xee, 0x25, 0x1b, 0x2a, 0x77, 0x82, 0xec, 0x6c, 0x3a, 0x61, 0xd3, 0x76, 0x4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0x3d, 0x29, 0x69, 0x3d, 0x84, 0x68, 0x8e, 0xa8, 0x92, 0xb8, 0x48, 0x92, 0xfe, 0x2a, 0x93, 0xa2, 0x96, 0x40, 0x52, 0xb, 0x8d, 0x15, 0x2d, 0x84, 0x22, 0x1c, 0x17, 0x15, 0x31, 0xba, 0xd1}} return a, nil } -var _dkgScriptsGet_node_is_registeredCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\x31\xaa\x83\x40\x10\x06\xe0\x7e\x4f\xf1\x97\xda\x3c\x5e\x6d\x97\xb0\x89\x88\x9d\x9e\x60\xd1\x51\x06\xd6\x99\x65\x76\x24\x81\x90\xbb\xa7\x49\x2e\xf0\xf1\x51\xd4\x1c\xf7\xac\x8f\x38\xf6\xd8\x4c\x0f\xfc\x3f\xe3\xd8\x5f\x62\x9c\x6e\xf3\x1c\x42\x5a\x16\xaa\xb5\x49\x39\xb7\xd8\x4e\xc1\x91\x58\x1a\xd1\x95\x86\xd8\x61\x76\x63\xd9\xdb\x0e\x57\xd5\x8c\x57\x00\x00\x23\x3f\x4d\x7e\xe4\x5f\x49\xe6\xbc\x70\x49\xe2\x43\x9d\x68\xe7\xea\x64\xb4\x7e\x89\x36\xbc\x3f\x01\x00\x00\xff\xff\xb5\x2b\x42\x1d\x83\x00\x00\x00" +var _dkgScriptsGet_node_is_registeredCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\x31\x0e\xc2\x30\x0c\x05\xd0\x3d\xa7\xf8\xea\xd4\x2c\x1c\xa0\x23\xaa\x40\x15\x1b\x9c\x20\x4a\xdd\xca\x52\x62\x47\x8e\x2b\x06\xc4\xdd\x59\xca\xf8\x96\xc7\xb5\xa9\x39\x6e\x45\xdf\xf3\xe3\x8e\xcd\xb4\x62\x38\x35\x84\x90\x72\xa6\xde\xc7\x54\x4a\xc4\x76\x08\x6a\x62\x19\x45\x57\x5a\xe6\x09\x2f\x37\x96\x3d\x4e\xb8\xaa\x16\x7c\x02\x00\x18\xf9\x61\xf2\xff\x2e\x2d\x99\x73\xe6\x96\xc4\x97\xfe\xa4\x9d\xbb\x93\xd1\x7a\x16\x31\x7c\x7f\x01\x00\x00\xff\xff\xe5\x2c\x0e\x21\x80\x00\x00\x00" func dkgScriptsGet_node_is_registeredCdcBytes() ([]byte, error) { return bindataRead( @@ -1100,11 +1099,11 @@ func dkgScriptsGet_node_is_registeredCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_node_is_registered.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0x11, 0x49, 0x45, 0xb2, 0x99, 0x20, 0x4e, 0xca, 0x7, 0x6c, 0x5b, 0x22, 0xc1, 0xb7, 0x1c, 0x6f, 0x14, 0x98, 0x87, 0xec, 0x63, 0x77, 0xb9, 0x3f, 0x2d, 0x62, 0xd0, 0x3c, 0xb0, 0xf6, 0xa4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0xa4, 0xcf, 0x88, 0xda, 0x35, 0xe9, 0xac, 0xe7, 0x73, 0x15, 0xf6, 0xf9, 0x64, 0xcd, 0x8e, 0x5c, 0x6f, 0xa0, 0x50, 0x9a, 0xbe, 0x2, 0x44, 0x72, 0x74, 0x82, 0xf9, 0x15, 0x37, 0x4b, 0x4d}} return a, nil } -var _dkgScriptsGet_submissions_countCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xc1\x0a\x82\x40\x10\x06\xe0\xfb\x3c\xc5\x7f\xd4\x4b\x74\x88\x0e\xde\xa2\x4d\x11\x6f\x2d\x3d\x80\x82\xc6\x80\x3b\x23\xeb\x0c\x05\xb2\xef\xde\xa9\x17\xf8\x38\x6d\x9a\x0d\xed\xaa\x9f\x30\x74\x58\xb2\x26\x9c\xbf\x61\xe8\x6e\x21\x3c\x1f\x31\x12\x6d\x3e\x61\x71\x41\x1a\x59\xaa\xba\x01\x8e\x5e\xac\xc1\xab\x17\xbb\x5e\x0a\x0e\x02\x80\x3c\x9b\x67\xf9\x33\xa7\xf7\x6c\x2d\xcb\xb8\x46\x9f\x12\xef\x3b\xab\xdc\xd5\xc5\xaa\x9a\x0a\xfd\x02\x00\x00\xff\xff\xe5\xd7\x26\xa5\x72\x00\x00\x00" +var _dkgScriptsGet_submissions_countCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xb1\x0a\x82\x70\x10\x06\xf0\xfd\x9e\xe2\xc3\x49\x97\xa6\x68\x70\x2d\x0c\x69\x8c\x1e\x40\x41\xe3\xc0\xff\x77\x72\xde\xd1\x20\xbe\x7b\x4b\x8d\xbf\xe5\xa7\x65\x35\x0f\x74\x8b\x7d\x6e\x8f\x3b\x66\xb7\x82\xea\xa7\x4a\x64\xcd\x11\x73\x12\x65\x50\xd6\x4d\x0b\xec\x3d\xa3\xc5\xab\x67\x5c\xce\x07\x76\x01\x00\x9f\x22\x9d\xff\xe3\xf4\x9e\xa2\x53\x0e\xcb\x33\xc7\xa2\xdb\xa6\xc6\xab\x25\xa3\x6e\xe4\x90\x6f\x00\x00\x00\xff\xff\x09\xb5\xb1\xae\x6f\x00\x00\x00" func dkgScriptsGet_submissions_countCdcBytes() ([]byte, error) { return bindataRead( @@ -1120,11 +1119,11 @@ func dkgScriptsGet_submissions_countCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_submissions_count.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc2, 0x62, 0x13, 0x4c, 0x53, 0x43, 0x18, 0xf7, 0xc7, 0xa8, 0x39, 0x4a, 0x6c, 0x6, 0x96, 0x10, 0xa8, 0x3c, 0x70, 0xe5, 0xaa, 0x27, 0x86, 0x32, 0x10, 0x17, 0x58, 0x9d, 0x83, 0x72, 0x85, 0x6e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0x77, 0xc4, 0x99, 0x13, 0xc6, 0xc8, 0x2b, 0x1e, 0xfe, 0xa5, 0x3a, 0x39, 0x80, 0x42, 0x1e, 0x35, 0x84, 0xa1, 0xa6, 0x33, 0x61, 0x61, 0x91, 0x52, 0xf2, 0x8d, 0xb2, 0x36, 0x4d, 0x5d, 0x9e}} return a, nil } -var _dkgScriptsGet_thresholdsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xc1\x4a\x03\x31\x10\x86\xef\x79\x8a\xff\x98\x5c\x96\x3d\x94\x1e\x0a\x52\x84\xb5\x45\x0a\x22\xae\x3e\x40\x58\x27\x6d\x20\x9b\x48\x32\xd1\x82\xec\xbb\xcb\x46\x6d\xbb\xac\x60\x73\x1c\xbe\x6f\xfe\xc9\x6f\xfb\xb7\x10\x19\x1b\x17\x3e\x9a\xdd\x16\x26\x86\x1e\xf5\xb1\xd9\x6d\x6f\x9b\xe6\xe9\xae\x6d\x85\xd0\x5d\x47\x29\x49\xed\x9c\x42\xe2\x98\x3b\xc6\xf3\x21\x52\x3a\x04\xf7\x9a\xf0\x29\x00\xe0\x92\x71\xc4\xf0\x9a\xed\x3b\xad\xf0\x72\xef\x79\xb9\xf8\x13\x49\xda\xfc\x0f\x3c\x52\xec\xc8\xb3\xde\x8f\xe8\xc6\x1e\x97\x0b\x51\x58\xeb\x2d\x4b\xf5\x13\x3e\xbe\x44\xce\x54\xdf\xa9\xb8\xf9\xfd\x4d\xb5\x27\x7e\x28\xb3\x36\x97\xe5\xa7\xbb\xa5\x9a\x9a\x63\xd6\xd4\x6b\xb5\xb9\xca\x3a\x5f\x38\xf7\x4f\xe2\x19\x92\x0a\xeb\x35\xea\xaa\x2e\x9b\x06\x31\x4c\xfb\x35\xd9\xa3\xd7\xd6\x4b\xb5\x9a\x97\x1c\x89\x73\xf4\x17\x73\xa9\xc4\xf0\x15\x00\x00\xff\xff\x4c\xbf\xd4\x66\xc0\x01\x00\x00" +var _dkgScriptsGet_thresholdsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcf\x4a\x03\x31\x10\xc6\xef\x79\x8a\x8f\x9e\x92\xcb\xd2\x43\xe9\xa1\x20\xbd\x48\x45\x04\x11\xaa\x0f\x10\xe2\xa4\x0d\x64\x13\x49\x26\x2a\xc8\xbe\xbb\x6c\xac\xfb\x87\x15\x6c\x6e\x19\x7e\xbf\xf9\x66\xc6\xb5\x6f\x31\x31\x0e\x3e\x7e\xdc\x3e\xdc\xc1\xa6\xd8\x62\x75\xf9\xad\x84\xd0\xc6\x50\xce\x52\x7b\xaf\x90\x39\x15\xc3\x78\x3e\x27\xca\xe7\xe8\x5f\x33\xbe\x04\x00\x4c\x19\x4f\x8c\xa0\xd9\xbd\xd3\x0e\x2f\xf7\x81\xb7\x9b\x3f\x91\xac\xed\xff\xc0\x13\x25\x43\x81\xf5\xa9\x47\x0f\xee\x73\xbb\x11\x95\x75\xc1\xb1\x54\x97\xf0\xfe\x65\xf2\xb6\xf9\x49\xc5\xcd\xef\x2a\xcd\x89\xf8\xb1\xd6\x8e\xa5\x36\x1f\xe6\x96\x6a\x6e\xf6\x59\x73\xef\xa8\xed\x55\xd6\x38\xe1\xd2\x1f\xc4\x11\x92\x0a\xfb\x3d\xd6\xcd\xba\x76\xea\x44\x37\xbf\xaf\x2d\x01\xad\x76\x41\xaa\xdd\xf2\xc8\x89\xb8\xa4\x30\xa9\x4b\x25\xba\xef\x00\x00\x00\xff\xff\xb3\xea\x59\x20\xbd\x01\x00\x00" func dkgScriptsGet_thresholdsCdcBytes() ([]byte, error) { return bindataRead( @@ -1140,11 +1139,11 @@ func dkgScriptsGet_thresholdsCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_thresholds.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0x27, 0x9c, 0x2e, 0x14, 0xaf, 0x10, 0x7d, 0xb6, 0x68, 0xda, 0xe8, 0xbc, 0x60, 0x39, 0x64, 0x39, 0xbb, 0xf4, 0xd2, 0x8a, 0x9f, 0x20, 0x6f, 0xcd, 0x16, 0x7, 0x2d, 0x16, 0x7e, 0x9e, 0x37}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x22, 0xd8, 0x8, 0xe9, 0xf9, 0x79, 0xd1, 0x2c, 0xce, 0xe5, 0x62, 0x4d, 0x9f, 0xd2, 0x6, 0xdf, 0x1d, 0x2d, 0x17, 0xa7, 0x40, 0x6d, 0x40, 0x6, 0xa2, 0x7a, 0x0, 0xbd, 0x7c, 0xf2, 0x89}} return a, nil } -var _dkgScriptsGet_whiteboard_messagesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x88\x86\xea\xd1\xf3\x4d\x2d\x2e\x4e\x4c\x4f\x8d\x55\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x99\xa8\x97\x9e\x5a\x12\x9e\x91\x59\x92\xea\x94\x9f\x58\x94\x02\x55\x5a\xac\xa1\xa9\xc0\x55\x0b\x08\x00\x00\xff\xff\x20\x79\xf1\x15\x7b\x00\x00\x00" +var _dkgScriptsGet_whiteboard_messagesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\xa2\xa1\x4a\xf4\x7c\x53\x8b\x8b\x13\xd3\x53\x63\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xc6\xe9\xa5\xa7\x96\x84\x67\x64\x96\xa4\x3a\xe5\x27\x16\xa5\x40\x95\x16\x6b\x68\x2a\x70\xd5\x02\x02\x00\x00\xff\xff\x68\x14\x95\x1b\x78\x00\x00\x00" func dkgScriptsGet_whiteboard_messagesCdcBytes() ([]byte, error) { return bindataRead( @@ -1160,11 +1159,11 @@ func dkgScriptsGet_whiteboard_messagesCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_whiteboard_messages.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0x4a, 0x1, 0x6b, 0xb, 0xd, 0x6a, 0x3b, 0x80, 0x95, 0x62, 0xac, 0x6d, 0x92, 0xec, 0x52, 0x86, 0xb5, 0x56, 0xf9, 0xc9, 0x1f, 0x93, 0x7f, 0x14, 0xc1, 0xaa, 0x92, 0x12, 0x7e, 0x8e, 0x91}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0xd3, 0xb2, 0xb6, 0xfe, 0x25, 0x93, 0xf1, 0x4f, 0x70, 0x8a, 0x81, 0xe6, 0x35, 0x7e, 0xb7, 0x82, 0xca, 0x41, 0xba, 0xe7, 0xc5, 0x37, 0x28, 0x1d, 0xf3, 0xb4, 0xe, 0x87, 0x1b, 0xdb, 0xf9}} return a, nil } -var _dkgSend_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xb1\x6a\xc3\x30\x10\x86\x77\x3f\xc5\x91\x21\x38\x8b\xe9\x6c\xda\x9a\xb4\x6e\x32\x64\x09\x35\x74\x29\x1d\x2e\xca\xd9\x11\xb5\x4f\xe2\x74\x22\x81\x92\x77\x2f\xae\xd2\xe0\x42\xe8\x8d\x92\xee\xfb\xf5\xfd\x76\xf0\x4e\x14\x56\xbd\x3b\xd6\x9b\x35\xb4\xe2\x06\xb8\x3b\xd5\x9b\xf5\xb2\xae\x5f\x5f\x9a\x26\xcb\x54\x90\x03\x1a\xb5\x8e\xf3\x10\x77\x83\x0d\xc1\x3a\x2e\xe1\xbd\x51\xb1\xdc\x55\x1f\x0b\xf8\xca\x32\x00\x80\x9e\x14\xf6\x9f\xdd\x16\x45\xad\xb1\x1e\x59\x4b\x98\x5f\xc8\xc5\xe4\x34\xbd\xf6\x42\x1e\x85\xf2\x60\x3b\x26\x29\x01\xa3\x1e\xf2\x27\x27\xe2\x8e\x6f\xd8\x47\x5a\xc0\x7c\x69\x8c\x8b\xac\x63\x00\x5c\x26\x50\xdf\x16\x7f\x43\xe0\x01\x12\xa3\x08\xea\x04\x3b\x2a\x76\x3f\x94\xfb\x5b\xd9\x8f\xf9\xa8\x58\xc2\x8d\xab\x26\x6d\x6f\x51\x0f\x8b\x6b\xde\x38\x55\x05\x1e\xd9\x9a\x7c\xf6\x8c\xcc\x4e\x21\xf1\x47\x57\xf0\x93\x7f\x08\xb5\x24\xc4\x86\x66\x69\xff\x9c\x44\xe9\x44\x26\x2a\xfd\x2f\x51\x04\xe2\xfd\xca\x32\xf6\xcd\xb5\xe3\x49\xdd\xbf\xc0\xf3\x77\x00\x00\x00\xff\xff\x1f\x4c\xc5\x1b\xb0\x01\x00\x00" +var _dkgSend_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xbd\x6a\xc3\x40\x0c\xc7\x77\x3f\x85\xf0\x10\xec\xc5\x0f\x60\xda\x9a\x7e\x90\x0e\x5d\x02\x86\x2e\xa5\x83\x72\x91\x9d\xa3\xb6\x74\xe8\x64\x52\x28\x79\xf7\xe2\x9e\x1b\x5c\x08\xd5\x76\x1f\xfa\xfd\xf5\x93\x1f\x83\xa8\xc1\x76\x90\xd3\xd3\xcb\x33\x74\x2a\x23\xe4\xcb\x29\xcf\x32\x53\xe4\x88\xce\xbc\x70\x11\xa7\xfd\xe8\x63\xf4\xc2\x35\xbc\xb5\xa6\x9e\xfb\xe6\xbd\x84\xaf\x2c\x03\x00\x18\xc8\xe0\xf0\xd1\xef\x50\xcd\x3b\x1f\x90\xad\x86\xcd\x02\xaa\x56\xb7\xe9\x77\x50\x0a\xa8\x54\x44\xdf\x33\x69\x0d\x38\xd9\xb1\x78\x10\x55\x39\xbd\xe2\x30\x51\x09\x9b\x7b\xe7\x64\x62\x9b\x03\x60\xa9\x48\x43\x57\xfd\x0d\x81\x5b\x48\x8c\x2a\x9a\x28\xf6\x54\xed\x7f\x28\x37\xd7\xb2\xef\x8a\xd9\xaf\x86\x2b\x4f\x6d\xea\xde\xa1\x1d\xcb\x4b\xde\x5c\x4d\x03\x01\xd9\xbb\x22\x7f\x44\x66\x31\x48\xfc\xd9\x15\xc2\x6a\x0e\xa5\x8e\x94\xd8\x51\x9e\xfa\xcf\x49\x94\x3e\xc9\x4d\x46\xff\x4b\x54\x91\xf8\xb0\xf5\x8c\x43\x7b\xd9\xf1\x6a\xdd\xbf\xc0\xf3\x77\x00\x00\x00\xff\xff\x55\xc6\xf9\x32\xad\x01\x00\x00" func dkgSend_final_submissionCdcBytes() ([]byte, error) { return bindataRead( @@ -1180,11 +1179,11 @@ func dkgSend_final_submissionCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/send_final_submission.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9f, 0x56, 0x32, 0xaa, 0x57, 0xf5, 0x84, 0xa1, 0x79, 0xb5, 0x4d, 0x23, 0x4e, 0x17, 0x9a, 0xbf, 0x40, 0xa3, 0x2d, 0x6b, 0x47, 0x1a, 0x46, 0x56, 0x42, 0x97, 0x96, 0x67, 0x77, 0xaa, 0x23, 0xbe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd1, 0xc, 0x5e, 0xac, 0xc6, 0x72, 0x16, 0x6c, 0xf2, 0x1f, 0x31, 0x41, 0x51, 0x0, 0xcd, 0x15, 0x99, 0x86, 0xb3, 0xd3, 0x8a, 0x56, 0xf2, 0xf1, 0xf8, 0xf1, 0x9f, 0xd4, 0x36, 0xa4, 0x8, 0xba}} return a, nil } -var _dkgSend_whiteboard_messageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xc1\x4a\xc3\x40\x10\x86\xef\x79\x8a\xa1\x87\x92\x5c\x82\xe7\xa0\x96\x6a\xb4\x87\x22\x14\x03\xde\xc7\x75\x92\x2e\xa6\x33\xcb\xec\x84\x16\xa4\xef\x2e\xeb\xb6\x52\xa1\x38\xc7\xdd\xf9\xbf\x7f\xbf\xf5\xbb\x20\x6a\xf0\x3c\xca\xbe\x5d\xaf\xa0\x57\xd9\xc1\xcd\xa1\x5d\xaf\x96\x6d\xfb\xfa\xd4\x75\x45\x61\x8a\x1c\xd1\x99\x17\x2e\x9d\xb0\x11\x5b\x03\x9d\xa9\xe7\xa1\x82\xaf\xa2\x00\x00\x18\xc9\xe0\xe3\x73\xd8\xa0\x9a\x77\x3e\x60\x5a\x99\x9f\x98\xf5\xc5\x69\xde\x0e\x4a\x01\x95\xca\xe8\x07\x26\x6d\x00\x27\xdb\x96\x0f\xa2\x2a\xfb\x37\x1c\x27\xaa\x60\xbe\x74\x4e\x26\xb6\x54\x00\xa7\x89\x34\xf6\xf5\xdf\x12\xb8\x83\xcc\xa8\xa3\x89\xe2\x40\xf5\xfb\x0f\xe5\xf6\x5a\xf7\x7d\x99\xe4\x1a\xb8\x72\xd5\xe5\xf4\x06\x6d\x5b\xfd\xf6\xa5\x59\x2c\x20\x20\x7b\x57\xce\x1e\x91\x59\x0c\x32\x3f\xb9\x42\xb8\x78\x87\x52\x4f\x4a\xec\x68\x96\xf3\xc7\x2c\x4a\x07\x72\x93\xd1\xff\x12\x75\x90\x68\x2f\x14\x23\x0e\x74\xfe\xe0\x33\xe5\xf8\x1d\x00\x00\xff\xff\x77\xba\x5b\x73\x9f\x01\x00\x00" +var _dkgSend_whiteboard_messageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcf\x6a\xc3\x30\x0c\x87\xef\x79\x0a\x91\x43\x49\x2e\x7e\x80\xb0\xad\xec\x0f\xdb\x61\x0c\x0a\x85\xdd\x35\x4f\x71\xcd\x52\xc9\xc8\x0a\x1d\x8c\xbe\xfb\xf0\x9c\x8e\x0e\xca\x74\xb3\x2d\x7d\x3f\x7f\x8a\xfb\x24\x6a\xf0\x38\xc9\xe1\xe1\xf9\x09\x46\x95\x3d\xb4\xcb\xa9\x6d\x1a\x53\xe4\x8c\xde\xa2\x70\xe7\x85\x8d\xd8\x06\xd8\x9a\x46\x0e\x3d\x7c\x35\x0d\x00\xc0\x44\x06\xef\x1f\x61\x83\x6a\xd1\xc7\x84\xa5\x65\xb5\x20\xdc\xd9\x6d\xed\x4e\x4a\x09\x95\xba\x1c\x03\x93\x0e\x80\xb3\xed\xba\x3b\x51\x95\xc3\x2b\x4e\x33\xf5\xb0\xba\xf5\x5e\x66\xb6\x12\x00\x4b\x65\x9a\x46\xf7\x37\x04\xae\xa1\x32\x5c\x36\x51\x0c\xe4\xde\x7e\x28\x57\x97\xb2\x6f\xba\x62\x36\xc0\x85\xa7\x6d\x9d\xde\xa0\xed\xfa\xdf\xbc\x52\xeb\x35\x24\xe4\xe8\xbb\xf6\x1e\x99\xc5\xa0\xf2\x8b\x2b\xa4\xb3\x7f\x28\x8d\xa4\xc4\x9e\xda\x3a\x7f\xac\xa2\xf4\x49\x7e\x36\xfa\x5f\xc2\x25\xc9\xf6\x42\x39\x63\xa0\xd3\x82\x4f\x94\xe3\x77\x00\x00\x00\xff\xff\xc6\xb5\x3f\x3f\x9c\x01\x00\x00" func dkgSend_whiteboard_messageCdcBytes() ([]byte, error) { return bindataRead( @@ -1200,11 +1199,11 @@ func dkgSend_whiteboard_messageCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/send_whiteboard_message.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x23, 0xf1, 0x36, 0x79, 0xa6, 0x58, 0xb9, 0xed, 0xe3, 0x3, 0x75, 0xf7, 0x43, 0xe7, 0xa2, 0x79, 0xfa, 0xdb, 0x3b, 0x62, 0xa5, 0xa5, 0x85, 0xce, 0xd0, 0x18, 0xc9, 0x6, 0x20, 0xf9, 0x5, 0x1d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcb, 0xec, 0x78, 0xab, 0x6e, 0x8, 0xc7, 0xa7, 0x9c, 0x52, 0x92, 0x14, 0x8d, 0x49, 0x3e, 0xa1, 0x55, 0xf3, 0xe3, 0xaf, 0xa9, 0x17, 0x5e, 0xbf, 0x42, 0x66, 0xd4, 0x93, 0x31, 0x7b, 0xd0, 0x18}} return a, nil } -var _epochAdminAdvance_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x6f\xe2\x30\x10\x85\xef\xf9\x15\xa3\x1c\x50\x72\x89\xf6\x8c\x96\x45\x90\x64\x05\xda\xa5\xa0\x86\xf6\x3e\x84\x21\xb1\x70\x6c\xcb\x99\x94\x4a\x15\xff\xbd\x8a\x03\x21\x52\x4b\x99\x83\x2f\x9e\xf7\xcd\x7b\x4f\x54\x46\x5b\x86\xbf\x52\x9f\x52\xa3\xf3\x12\x0e\x56\x57\xf0\xeb\x3d\xdd\xac\xe3\xc5\x2c\x49\x9e\xd3\x2c\xf3\x06\x4b\xcb\x64\x8b\x3b\x49\x19\xe3\x51\xa8\xa2\xdb\xf6\xbf\x7e\xf8\x9e\xc7\x16\x55\x8d\x39\x0b\xad\x02\x53\x62\x4d\x63\xc8\xd8\x0a\x55\x84\xf0\xe1\x01\x00\x18\x4b\x06\x2d\x05\xb5\x28\x14\xd9\x31\x60\xc3\x65\x30\xd7\xd6\xea\xd3\x2b\xca\x86\x42\x18\xcd\xf2\x5c\x37\x8a\xaf\x8a\x76\x24\x31\x94\x84\x96\x77\x84\x0c\x13\xe8\xd4\x51\xcd\xda\x62\x41\xd1\xce\xe9\x7f\x8f\xfa\x40\xd1\xe2\xba\xfc\x27\x68\xdd\x8e\x6f\x59\xa3\x9e\x93\x75\xea\x0d\x72\x19\xf6\x97\xda\x99\x4e\xc1\xa0\x12\x79\xe0\xc7\xba\x91\x7b\x50\x9a\xa1\x3b\x31\x30\xe1\x4a\xb8\x18\x00\x83\x5c\xfa\xa1\xd7\x53\xc4\x01\x5c\x7a\x98\x4c\xc0\x77\xad\x66\xe9\xf6\x65\xe3\x0f\x22\xb5\xd3\xd3\x22\x52\xfb\x4b\x89\xb3\xa6\x6b\xef\x66\xe9\x0c\x24\x6b\xfa\x86\x19\xaf\x57\xab\xe5\xf6\x3e\xb4\x66\xb4\xec\x42\xc7\xba\xaa\x04\x3f\x62\x3e\x25\x0e\xfb\xa3\x4b\x87\x7b\x00\x9a\xff\x5f\xc7\xff\xee\x53\x70\xff\x86\x2a\xa7\xb9\xd4\xf9\x71\x48\xf2\xba\xf7\xfc\x19\x00\x00\xff\xff\xe7\xd6\x03\x37\x9e\x02\x00\x00" +var _epochAdminAdvance_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x6f\x82\x40\x10\x85\xef\xfc\x8a\xc9\x1e\x0c\x5c\xf8\x01\xa6\xd6\x28\xda\x68\x5a\xab\x09\xb6\xf7\x71\x1d\x61\xe3\xb2\xbb\x59\x86\x7a\x68\xfc\xef\x0d\xa0\x48\x93\x5a\xe7\x40\x42\x76\xde\x37\xef\x3d\x55\x38\xeb\x19\x5e\xb4\x3d\xcd\x9d\x95\x39\x1c\xbc\x2d\x40\x74\xff\x22\xe8\x6d\x2c\x67\x5b\xdc\x69\x4a\x19\x8f\xca\x64\xbd\xd5\xdf\x0f\x22\x08\xd8\xa3\x29\x51\xb2\xb2\x26\x74\x39\x96\x34\x84\x94\xbd\x32\x59\x04\xdf\x01\x00\x80\xf3\xe4\xd0\x53\x58\xaa\xcc\x90\x1f\x02\x56\x9c\x87\x53\xeb\xbd\x3d\x7d\xa2\xae\x28\x82\xc1\x44\x4a\x5b\x19\xbe\x2a\xea\xd1\xc4\x90\x13\x7a\xde\x11\x32\x8c\xa0\x55\xc7\x25\x5b\x8f\x19\xc5\xbb\x46\xff\x34\xe8\xdc\xc7\x8b\xeb\xf2\x73\x58\xbb\x1d\xde\x82\xc6\x1d\x27\x6d\xd5\x1b\xe4\x3c\xea\x2e\xd5\x33\x1e\x83\x43\xa3\x64\x28\x12\x5b\xe9\x3d\x18\xcb\xd0\x9e\xe8\x99\x68\x4a\xb8\x18\x00\x87\x9c\x8b\x28\xe8\x28\xea\x00\x4d\x7a\x18\x8d\x40\xcc\x37\xeb\x64\x91\xce\xb7\x1f\x1b\xd1\x8b\x54\x4f\x47\x8b\xc9\xec\x2f\x25\x4e\xaa\xb6\xbd\x9b\xa5\x33\x90\x2e\xe9\x0f\x66\xb2\x5e\xad\x96\xdb\xfb\xd0\x92\xd1\x73\x13\x3a\xb1\x45\xa1\xf8\x11\xf3\x7d\xd6\x60\xff\x75\xd9\xe0\x1e\x80\xa6\x6f\xeb\xe4\xf5\x3e\x05\xf7\x5f\x68\x24\x4d\xb5\x95\xc7\x3e\x29\x68\xbf\xe7\x9f\x00\x00\x00\xff\xff\x77\x36\x16\x2b\x9b\x02\x00\x00" func epochAdminAdvance_viewCdcBytes() ([]byte, error) { return bindataRead( @@ -1220,11 +1219,11 @@ func epochAdminAdvance_viewCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/advance_view.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe7, 0xe4, 0x58, 0x8a, 0x95, 0x60, 0x99, 0x35, 0xc8, 0x7, 0x2a, 0xa, 0x5e, 0xf9, 0xdf, 0x44, 0xae, 0x6b, 0x97, 0x2d, 0x2b, 0xce, 0xef, 0x7c, 0x4f, 0x13, 0x9b, 0x70, 0x24, 0x40, 0x9a, 0xf5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0xe1, 0x89, 0x75, 0x40, 0x79, 0x27, 0x42, 0xfc, 0x75, 0x5f, 0x1a, 0xb6, 0xef, 0xa4, 0xea, 0x47, 0xb1, 0x9b, 0x15, 0x59, 0x37, 0x8, 0x70, 0xe9, 0xb3, 0xc6, 0x77, 0xe7, 0xfc, 0xd8, 0x5c}} return a, nil } -var _epochAdminCalculate_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xcf\x4e\x83\x40\x10\xc6\xef\xfb\x14\x13\x0e\xcd\x72\x21\x9e\x1b\xb5\xa9\x05\x53\x4f\x36\xc5\x78\x1f\x96\x11\x88\xdb\x9d\xcd\x30\x04\x13\xd3\x77\x37\x14\x8b\x4d\x9c\xeb\x7c\xbf\xef\x4f\x77\x8a\x2c\x0a\xcf\x9e\xc7\x22\xb2\x6b\xe1\x43\xf8\x04\x77\x5f\xc5\xe1\x75\xb7\xdf\xe6\xf9\xb1\x28\x4b\x73\x23\x7a\xc9\xdf\xb0\xf2\x54\x2a\x7e\x76\xa1\x99\xd5\xc9\xff\x47\x62\x8c\x0a\x86\x1e\x9d\x76\x1c\x6c\x0a\xdf\x06\x00\x20\x0a\x45\x14\xb2\x7d\xd7\x04\x92\x35\xe0\xa0\xad\x7d\x62\x11\x1e\xdf\xd1\x0f\x94\xc2\x6a\xeb\x1c\x0f\x41\xaf\xc4\x74\x9e\x14\x5a\x42\xd1\x8a\x50\xe1\x01\x66\x3a\xeb\x95\x05\x1b\xca\xaa\x0b\x7f\xbf\x5a\x36\x64\xfb\xab\xf8\xd1\x4e\x05\xd7\x7f\xf3\xb2\xc5\xa7\x9c\xe9\x03\x6a\x9b\x2e\x49\xd3\x6d\x36\x10\x31\x74\xce\x26\x3b\x1e\x7c\x0d\x81\x15\xe6\x88\x9b\x12\x97\xdd\xbf\x05\x20\xa2\xb6\x49\x6a\x16\x97\x45\x96\x39\xf4\x6e\xf0\xa8\xb4\x0d\x75\x49\x7a\xa4\x11\xa5\xee\xed\x1c\x78\x36\xe7\x9f\x00\x00\x00\xff\xff\xae\x92\x7e\xa9\x7e\x01\x00\x00" +var _epochAdminCalculate_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\xcd\x4e\xec\x30\x0c\x85\xf7\x79\x0a\xab\x8b\x51\xba\xe9\x03\x8c\xee\x65\x34\xfc\x09\x76\x88\x22\xf6\x6e\x6a\xda\x88\x4c\x1c\xb9\x8e\xba\x40\xf3\xee\xa8\x53\x26\x14\xef\xa2\x9c\xcf\xe7\xb3\x3f\x25\x16\x85\xc7\xc0\xf3\x43\x62\x37\xc2\x87\xf0\x09\xaa\xf2\xae\xcc\x26\xf1\x7c\xff\x86\x5d\xa0\x56\xf1\xd3\xc7\x61\x13\xfd\xfb\x51\x19\xa3\x82\x71\x42\xa7\x9e\xa3\xad\xe1\xcb\x00\x00\x24\xa1\x84\x42\x76\xf2\x43\x24\xd9\x03\x66\x1d\xed\x2d\x8b\xf0\xfc\x8e\x21\x53\x0d\xbb\xa3\x73\x9c\xa3\x5e\x89\x65\x02\x29\x8c\x84\xa2\x1d\xa1\xc2\x7f\x58\xe9\x66\x52\x16\x1c\xa8\xe9\x2e\xfc\xbf\x5d\x11\x6e\x9e\xae\xe1\x1b\xbb\x08\xee\x7f\x6f\x6b\xca\x9e\x76\xa5\x5f\x50\xc7\xba\x34\x2d\x73\x38\x40\xc2\xe8\x9d\xad\xee\x38\x87\x1e\x22\x2b\xac\x15\x1b\x89\xcb\xdd\x3f\x02\x90\x50\xc7\xaa\x36\x65\x4b\x89\x35\x0e\x83\xcb\x01\x95\x8e\xb1\x6f\x49\x5f\x69\x46\xe9\x27\xbb\x16\x9e\xcd\xf9\x3b\x00\x00\xff\xff\x06\x87\xee\x45\x7b\x01\x00\x00" func epochAdminCalculate_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -1240,7 +1239,7 @@ func epochAdminCalculate_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/calculate_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x91, 0x2b, 0xc1, 0x75, 0x0, 0xc3, 0xde, 0x73, 0x1, 0x53, 0x92, 0x20, 0x2d, 0x68, 0x6f, 0x62, 0xc0, 0x5c, 0xd6, 0x22, 0x8b, 0x41, 0xd1, 0xd, 0xfc, 0x11, 0xd8, 0x83, 0xf5, 0x88, 0xb6, 0x7a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6a, 0x28, 0xde, 0x44, 0x27, 0x64, 0x4f, 0xc3, 0x72, 0xfc, 0x29, 0x96, 0x71, 0x49, 0x1e, 0x7e, 0xf1, 0xf, 0x75, 0x6b, 0x4c, 0x31, 0x40, 0x4b, 0xf, 0x62, 0xa5, 0x65, 0x0, 0x94, 0xc0, 0x81}} return a, nil } @@ -1284,7 +1283,7 @@ func epochAdminDeploy_qc_dkgCdc() (*asset, error) { return a, nil } -var _epochAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6f\xa3\x30\x10\x86\xef\xfe\x15\x23\x0e\x11\x48\x2b\xb2\xe7\x68\x77\xa3\x6c\x3e\x94\x9c\x8a\x42\xd5\xfb\x00\x93\xd8\xaa\x63\x5b\xc3\x10\x8a\xaa\xfc\xf7\x0a\x48\x69\xaa\xce\x0d\xf1\xbc\xf3\x8e\x1f\x73\x09\x9e\x05\x76\xd6\xb7\xdb\xe0\x4b\x0d\x27\xf6\x17\xf8\xfd\xb6\xcd\x9e\xd6\xfb\xd5\x66\x73\xdc\xe6\xb9\x7a\x80\x0e\x9b\x67\x2c\x2c\xe5\x82\xaf\xc6\x9d\x47\x3a\xfa\xf9\x23\x52\x6a\x3e\x9f\x43\x86\x5d\x0d\xa2\x09\x98\x5a\xe4\xaa\x86\x93\xe7\xe1\x3b\x30\x5d\x8d\x6f\x6a\xa0\xbe\x74\x60\x0f\xa7\x6f\xa4\xc6\x2b\x01\x5a\x26\xac\x3a\x28\x88\x1c\x04\x34\xd5\xaf\x31\x8d\xdd\x85\x9c\x40\x6b\xac\x05\xe7\x05\x34\x86\x40\x4e\x29\x61\x74\x35\x96\x62\xbc\x83\x77\x05\x00\x7d\x51\x40\xa6\xb8\x36\x67\x47\xbc\x00\x6c\x44\xc7\xff\x3d\xb3\x6f\x5f\xd0\x36\x94\xc0\x6c\x55\x96\xbe\x71\x92\xdc\x13\xfd\x58\x12\xd0\x84\x2c\x05\xa1\xc0\x5f\x18\xd3\x69\x2d\x9e\xf1\x4c\x69\x31\xe4\xff\xcc\x26\x6b\xe9\xfe\x13\xfe\x17\xf7\x4a\x16\x5f\x42\xd3\x69\x4f\x3e\xa6\x33\x14\x9d\x4c\x4d\xfd\x2c\x97\x10\xd0\x99\x32\x8e\xd6\xbe\xb1\xd5\xf0\xa2\xb1\xe2\xe1\x88\xc1\xf4\xfd\x00\x08\x28\x3a\x4a\xd4\xb4\x65\xc2\xd2\x80\xdd\x71\x34\xb8\xf3\x9c\xdd\x2d\x0f\x87\xc4\x63\xe9\x4d\xdd\x3e\x02\x00\x00\xff\xff\xbe\x35\x89\x58\xf4\x01\x00\x00" +var _epochAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\x4f\x6b\xc3\x30\x0c\xc5\xef\xfe\x14\x22\x87\x92\xc0\x48\xef\x65\x5b\xd9\xbf\xb2\xde\xca\x3a\x76\x57\x12\xb5\x36\x73\x2d\xa3\x28\x0d\x61\xf4\xbb\x8f\x24\x5d\x96\xea\x26\xfc\x9e\xde\xf3\xcf\x9d\x22\x8b\xc2\xc6\x73\xfb\x16\xb9\xb4\x70\x10\x3e\x41\x32\xed\x89\x99\x29\xb6\xaf\x9f\x58\x78\xda\x2b\x7e\xbb\x70\x9c\x49\x6f\x1f\x12\x63\x96\xcb\x25\xec\xb0\xab\x41\x2d\x81\x50\x8b\x52\xd5\x70\x60\x19\xf6\x28\x74\x76\xdc\xd4\x40\x7d\xc2\xa0\xdd\x1e\x6e\x94\x16\xcf\x04\xe8\x85\xb0\xea\xa0\x20\x0a\x10\xd1\x55\x77\xa3\x1b\xbb\x13\x05\x85\xd6\x79\x0f\x81\x15\x2c\xc6\x48\xc1\x18\x15\x0c\x35\x96\xea\x38\xc0\x8f\x01\x80\x3e\x28\xa2\x50\x5a\xbb\x63\x20\x59\x01\x36\x6a\xd3\x67\x16\xe1\xf6\x0b\x7d\x43\x19\x2c\x9e\xca\x92\x9b\xa0\xd9\xd5\xd1\x8f\x27\x05\x4b\x28\x5a\x10\x2a\x3c\xc0\xe8\xce\x6b\x65\xc1\x23\xe5\xc5\xe0\xbf\x5f\x4c\x88\xf2\xf7\x3f\xf1\x63\xda\x23\x59\xfd\xd3\xcc\xa7\x3b\xfb\xd1\xbd\x43\xb5\xd9\x94\xd4\xcf\x7a\x0d\x11\x83\x2b\xd3\xe4\x85\x1b\x5f\x0d\x3f\x1a\x23\x66\x25\x06\xd2\xd7\x02\x10\x51\x6d\x92\x99\xe9\xca\x24\xcb\x23\x76\x1f\x23\xc1\x0d\xcb\xee\x4a\x79\x28\x92\x8e\xa1\x17\x73\xf9\x0d\x00\x00\xff\xff\x18\x65\x13\x72\xf1\x01\x00\x00" func epochAdminPay_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -1300,11 +1299,11 @@ func epochAdminPay_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/pay_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4a, 0x40, 0x49, 0xa1, 0x6e, 0x43, 0x74, 0xf7, 0x5e, 0xa4, 0x86, 0xba, 0x50, 0x29, 0x43, 0x3b, 0x46, 0x6b, 0x71, 0xfb, 0x3, 0xcb, 0xc4, 0xe5, 0xd1, 0xdc, 0xbb, 0xda, 0xc4, 0x34, 0xa3, 0x2e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc5, 0x44, 0xb, 0xf, 0x17, 0x22, 0x70, 0x23, 0x47, 0x80, 0xe0, 0x8d, 0xa, 0x3c, 0x31, 0x58, 0xc8, 0xd8, 0xe5, 0x97, 0x7b, 0xb3, 0x3b, 0x2a, 0x68, 0x2, 0xa, 0xcf, 0xcb, 0xe8, 0x50, 0x83}} return a, nil } -var _epochAdminReset_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x6f\xdb\x3a\x10\xbc\xeb\x57\x2c\x7c\xc8\xb3\x11\x47\x7e\x01\x1e\xde\xc1\x68\x1b\xa4\xb6\x8b\x06\x3d\x34\xad\xd3\x5c\x8a\x1e\x56\xd2\x5a\x22\x2c\x91\x02\x77\x19\xc7\x28\xf2\xdf\x0b\x92\xfe\x52\xab\x26\xf1\xc9\x24\x67\x86\xc3\x99\x95\x6a\x5a\x63\x05\x3e\xd4\x66\xb3\x68\x4d\x5e\xc1\xca\x9a\x06\xfe\x7d\x5c\xdc\x7e\x9e\x7d\xbc\x9e\xcf\xbf\x2e\x96\xcb\xe4\x04\x74\x33\xbf\xc3\xac\xa6\xa5\xe0\x5a\xe9\x32\xa2\x07\x7f\x1e\x0c\x92\x64\x32\x81\xbb\x8a\xc0\x12\x93\x44\x69\xb1\xa8\x19\x73\x51\x46\x03\xe9\x82\x41\x2a\x82\xdc\x59\x4b\x5a\x80\x02\x44\xe9\xb0\x79\xb4\xc3\x0d\x5a\x81\xdc\x68\xb1\x98\x8b\x17\x45\x5d\x40\x46\xa5\xd2\x0c\x08\x9a\x36\x3b\xe6\x46\x49\x15\xb8\xa5\x7a\x20\xed\x19\x2b\x55\x3a\x8b\xfe\xb6\x34\x38\x39\x62\xb1\xde\xe0\x96\xa1\x42\xf6\x82\xc1\x85\x71\x5a\xc8\xee\xdd\x84\xbb\x67\x71\xef\xfc\x32\xd2\x4f\xdd\x33\xe9\x82\x2c\x34\x8e\x05\x5a\x6b\x1e\x54\x41\x41\xc6\xcb\xf5\x48\xc0\x30\xa3\x95\xb1\x11\x13\x02\x01\xc1\x35\x31\xb4\x35\xe6\x34\x02\xf4\x4f\x61\x5c\x91\x6c\xa1\xa1\xbc\x42\xad\xb8\x49\x93\xc9\xc4\xeb\xcd\x9d\xf5\x49\x6b\x92\x8d\xb1\x6b\xe0\xd6\xd8\x35\x8f\x83\x54\x66\x8c\xb0\x58\x6c\x5b\x2a\xbc\x0f\x31\xb9\xa9\x81\x05\x85\x40\xb1\x0f\x33\x26\x14\xa3\x1c\xf6\x3e\x6e\x34\xde\x87\x7a\xd2\x94\x62\x70\x4c\x05\x88\x01\xef\xa6\x8c\xce\x63\x78\xfb\xa8\x5e\x51\x55\x98\x8e\xbe\x3c\xc4\xf4\xba\x81\x73\xb8\x1c\x8d\x81\x0d\x48\x85\x02\x4a\xfe\x61\xaf\xc7\x8a\xc5\x8f\x48\xa8\x78\xdf\xd8\x33\x6f\x4f\xe3\xec\x29\xee\x76\x56\x19\x57\x17\x60\x74\xbd\x85\x8c\xe2\xfb\x0e\x43\x63\x9c\xb4\x4e\xc0\xac\xba\xda\xe0\x44\xd5\x4a\xb6\x53\xaf\x08\x61\xb5\x4b\x21\x84\x75\x21\x8f\x17\x68\x4b\x4e\x92\x93\x8b\xfa\x1e\x36\x85\x6f\x37\x5a\xfe\xff\x6f\x9c\xc0\xc9\xcf\xa2\x2e\x4c\xb3\x34\xce\xe6\x34\x85\xa5\xf8\x9e\xbb\x08\x16\xb4\x72\xaf\x68\xd3\x2f\xc0\xf1\x63\x5b\xe8\xe2\xef\x18\xea\x1e\x8e\xe0\x67\x12\xce\x5b\x4b\x2d\x5a\x1a\xb2\x2a\xb5\x37\x88\x4e\xaa\xe1\x7b\x63\xad\xd9\xdc\x63\xed\x68\x04\x67\xd7\x79\xe8\xda\x53\xf6\x6a\x35\xed\xbe\xd4\xeb\xa2\x51\x1a\xde\x42\xa4\xa7\x2c\xc6\x62\x49\x69\x16\x04\xde\x9c\x1d\xa6\x22\x0d\xc0\x77\x43\x3f\x0a\xd3\xe3\xb0\xa4\xe8\xb7\x97\x91\x75\x8b\x52\x8d\x3a\xa6\xaf\xae\xa0\x45\xad\xf2\xe1\x60\x16\x4a\xd3\x46\x20\x4a\x43\x45\x68\x25\x23\x94\x38\x5d\xbb\x8b\xa1\x45\xa9\x06\xa3\xe4\xa0\x72\x34\x99\x1e\xe7\xba\xbf\x9a\x9e\xcd\x6e\x84\xbf\xff\xba\xbd\x9d\xae\x9e\xe7\x9d\xd6\x79\xf8\xfb\x32\xa5\x53\x71\x77\xfd\x02\xf9\xd0\x3d\xbd\x0a\x9e\x9b\xba\xa6\x5c\x8c\x9d\xd5\x8e\x85\x2c\x4f\xe1\xfb\x8f\x97\x38\x11\xfa\x65\xf6\x1a\x70\xb1\x2e\x6f\x5d\xf6\x89\xb6\x01\x1c\x2b\x7f\x4a\x9e\x92\x5f\x01\x00\x00\xff\xff\x25\xdb\x46\xaf\x85\x06\x00\x00" +var _epochAdminReset_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x6f\xdb\x38\x10\xbd\xeb\x57\x0c\x7c\xc8\xda\x88\x23\x23\xc0\x62\x0f\xc6\xee\x06\x59\x27\x0b\x04\xbd\xa4\x70\x9a\x4b\xd1\xc3\x48\x1a\x4b\x84\x25\x8e\xc0\x19\xc5\x35\x8a\xfc\xf7\x82\xa4\x3f\xa4\x42\x4d\xe2\x93\x49\xbe\xf7\xf8\xf8\xde\xc8\x34\x2d\x3b\x85\xff\x6b\xde\xdd\xb7\x9c\x57\xb0\x71\xdc\xc0\xe4\xb4\x9e\x24\x3d\xc4\xc3\xdd\x13\x66\x35\xad\x15\xb7\xc6\x96\x3d\xe8\xf0\x60\x92\x24\x8b\x05\x3c\x55\x04\x8e\x84\x34\xea\xaa\x43\x2b\x98\xab\x61\x0b\x64\x0b\x01\xad\x08\xf2\xce\x39\xb2\x0a\x14\x20\xc6\x86\xcd\xb3\x17\x69\xd0\x29\xe4\x6c\xd5\x61\xae\x5e\x14\x6d\x01\x19\x95\xc6\x0a\x20\x58\xda\x1d\x98\x3b\xa3\x55\xe0\x96\xe6\x85\xac\x67\x6c\x4c\xd9\x39\xf4\xb7\xa5\xc1\xc9\x19\x8b\xf5\x0e\xf7\x02\x15\x8a\x17\x0c\x2e\xb8\xb3\x4a\xee\xe8\x26\xdc\xbd\x8a\x7b\x97\xd7\x91\xde\x77\x2f\x64\x0b\x72\xd0\x74\xa2\xd0\x3a\x7e\x31\x05\x05\x19\x2f\x37\x22\x01\xd3\x8c\x36\xec\x22\x26\x04\x02\x8a\x5b\x12\x68\x6b\xcc\x69\x06\xe8\x9f\x22\xb8\x21\xdd\x43\x43\x79\x85\xd6\x48\x93\x26\x8b\x85\xd7\xbb\xeb\x9c\x4f\xda\x92\xee\xd8\x6d\x41\x5a\x76\x5b\x99\x07\xa9\x8c\x59\x45\x1d\xb6\x2d\x15\xde\x87\x72\xce\x35\x88\xa2\x12\x18\xf1\x61\xc6\x84\x62\x94\xd3\xd1\xc7\xcd\xe6\xc7\x50\x7b\x4d\x19\x81\x4e\xa8\x00\x65\xf0\x6e\xca\xe8\x3c\x86\x77\x8c\xea\x03\x55\x85\xe9\x18\xcb\x43\x79\xd4\x0d\x5c\xc2\xf5\x6c\x0e\xc2\xa0\x15\x2a\x18\xfd\x43\xbc\x9e\x18\x51\x3f\x22\xa1\xe2\x63\x63\x6f\xbc\x3d\x8d\xb3\x67\x64\xd8\x59\xc5\x5d\x5d\x00\xdb\x7a\x0f\x19\xc5\xf7\x9d\x86\x86\x3b\x6d\x3b\x05\xde\x0c\xb5\xa1\x53\x53\x1b\xdd\x2f\xbd\x22\x84\xd5\x21\x85\x10\xd6\x95\x7e\xbf\x42\x57\x4a\x92\xf4\x2e\x1a\x7b\xd8\x12\xbe\x3c\x58\xfd\xeb\xcf\x79\x02\xbd\x9f\x43\x5b\x70\xb3\xe6\xce\xe5\xb4\x84\xb5\xfa\x9e\x87\x08\x51\x74\xfa\x6c\x68\x37\x2e\x20\xf1\x63\xbb\xb7\xc5\xef\x31\x34\x3c\x9c\xc1\x8f\x24\x9c\xb7\x8e\x5a\x74\x34\x15\x53\x5a\x6f\x10\x3b\xad\xa6\xff\xb1\x73\xbc\x7b\xc6\xba\xa3\x19\x5c\xdc\xe6\xa1\x6b\x4f\x39\xaa\xd5\x74\xf8\x52\x6f\x8b\xc6\x58\xf8\x07\x22\x3d\x15\x65\x87\x25\xa5\x59\x10\xf8\xfb\xe2\x34\x15\x69\x00\xfe\x3b\xf5\xa3\xb0\x3c\x0f\x4b\x8a\x7e\x7b\x1d\x59\x8f\xa8\xd5\x6c\x60\xfa\xe6\x06\x5a\xb4\x26\x9f\x4e\x56\xa1\x34\xcb\x0a\x51\x1a\x2a\x42\xa7\x19\xa1\xc6\xe9\x3a\x5c\x0c\x2d\x6a\x35\x99\x25\x27\x95\xb3\xc9\xf4\x3c\xd7\xe3\xd5\x8c\x6c\x0e\x23\xfc\xf5\x37\xec\xad\xbf\x7a\x9b\xd7\xaf\xf3\xf4\xf7\x7d\xca\xa0\xe2\xe1\xfa\x1d\xf2\xa9\x7b\xfa\x10\x3c\xe7\xba\xa6\x5c\xd9\xad\xea\x4e\x94\x9c\x2c\xe1\xeb\xb7\xf7\x38\x11\xfa\x79\xf5\x11\x70\xb1\x2d\x1f\xbb\xec\x13\xed\x03\x38\x56\xfe\x9a\xbc\x26\x3f\x03\x00\x00\xff\xff\x12\x4d\x3d\x2b\x82\x06\x00\x00" func epochAdminReset_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1320,11 +1319,11 @@ func epochAdminReset_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/reset_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0xb9, 0x7, 0xec, 0x44, 0xde, 0x7e, 0xdb, 0x58, 0xd6, 0x54, 0x2a, 0x28, 0x85, 0xc0, 0x91, 0xd7, 0xcf, 0x68, 0x49, 0x9d, 0xf4, 0xb6, 0x5a, 0x1, 0x3c, 0x91, 0x48, 0x42, 0x77, 0xd2, 0xc9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe8, 0x2c, 0xf0, 0xa9, 0xd5, 0x3f, 0xb4, 0x42, 0x85, 0x42, 0x5a, 0xbb, 0xe2, 0x54, 0xb2, 0xdd, 0x90, 0x88, 0xc7, 0x55, 0xbe, 0x47, 0x6b, 0x78, 0xd0, 0xf3, 0x25, 0x54, 0xf6, 0xe9, 0x7a, 0x2b}} return a, nil } -var _epochAdminSet_automatic_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xc1\x6a\xc3\x30\x0c\x86\xef\x79\x0a\xd1\x43\x49\x2e\x61\xe7\xb0\xad\xa4\x6d\xc6\x6e\x2b\x0d\xec\xae\x3a\x5a\x63\x70\x2c\xa3\xc8\x64\x30\xfa\xee\x23\xf1\x96\x5e\x36\x1d\x8d\xbf\x5f\x9f\x7e\x3b\x04\x16\x85\x17\xc7\x53\x13\xd8\xf4\xf0\x21\x3c\xc0\xc3\x67\x73\x7a\x3b\xbc\xd6\xc7\xe3\xb9\x69\xdb\x2c\x53\x41\x3f\xa2\x51\xcb\x3e\xc7\xa8\x3c\xa0\x5a\x73\xa6\x09\xa5\x1b\x1b\x8f\x17\x47\x5d\x05\x7b\x66\x57\xc0\x57\x06\x00\x10\x84\x02\x0a\xe5\xa3\xbd\x7a\x92\x0a\x30\x6a\x9f\xef\x59\x84\xa7\x77\x74\x91\x0a\xd8\xd6\xc6\x70\xf4\xfa\x4b\xcc\xe3\x48\x81\x66\x8b\xba\x1b\xac\x87\x27\x48\x78\x39\x2a\x0b\x5e\xa9\xbc\x2c\x01\x8f\xdb\xd5\xb6\x5c\x3e\x3e\xe7\xb3\x74\x75\x3f\xa2\xc4\xf9\xb9\x4d\xd4\x09\xb5\x2f\xd6\x15\xf3\xec\x76\x10\xd0\x5b\x93\x6f\x0e\x1c\x5d\x07\x9e\x15\x52\x34\x2c\x60\xea\xe0\x67\x29\x04\xd4\x7e\x53\x64\x6b\xc2\x5d\xb0\x8c\xa1\x43\xa5\xfa\xef\x42\xfe\x2b\x2a\xb9\xdc\xb2\xdb\x77\x00\x00\x00\xff\xff\x6c\xc1\x14\x1d\x7b\x01\x00\x00" +var _epochAdminSet_automatic_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xb1\x4e\xc4\x30\x10\x44\xfb\x7c\xc5\x2a\xc5\x29\x69\xfc\x01\x11\x70\xca\xa1\xa3\x46\x20\xd1\xef\xd9\xcb\xc5\x92\xe3\xb5\x36\x6b\xa5\x40\xf7\xef\xc8\x31\xe4\x1a\x98\xce\x96\x67\xe6\x79\xfc\x9c\x58\x14\x5e\x02\xaf\xe7\xc4\x76\x82\x4f\xe1\x19\xda\xfd\xdc\x36\x8d\x0a\xc6\x05\xad\x7a\x8e\x1d\x66\xe5\x19\xd5\xdb\x37\x5a\x51\xdc\x72\x8e\x78\x09\xe4\x06\x38\x31\x87\x1e\xbe\x1a\x00\x80\x24\x94\x50\xa8\x5b\xfc\x35\x92\x0c\x80\x59\xa7\xee\xc4\x22\xbc\x7e\x60\xc8\xd4\xc3\x61\xb4\x96\x73\xd4\x5f\x47\x51\x20\x05\x2a\x95\xa3\x9b\x7d\x84\x47\xa8\x76\xb3\x28\x0b\x5e\xc9\x5c\xb6\x80\x87\xc3\x8e\x66\xb6\x87\x4f\x5d\x21\x1e\xee\x3f\x30\x58\xae\xdf\xab\xeb\x15\x75\xea\xf7\x8a\xa2\xe3\x11\x12\x46\x6f\xbb\xf6\x99\x73\x70\x10\x59\xa1\x46\xc3\x66\xac\x03\xfc\x94\x42\x42\x9d\xda\xbe\xd9\x13\xee\x80\x26\x27\x87\x4a\xe3\xdf\x83\xfc\x37\x54\x65\xb9\x35\xb7\xef\x00\x00\x00\xff\xff\x14\xdd\x64\x3c\x78\x01\x00\x00" func epochAdminSet_automatic_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -1340,7 +1339,7 @@ func epochAdminSet_automatic_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/set_automatic_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0xc0, 0x50, 0xf3, 0xab, 0x50, 0x1c, 0x5d, 0x25, 0xd6, 0x2f, 0xe9, 0x5a, 0x9a, 0x47, 0xed, 0xfd, 0xa2, 0xba, 0xbd, 0xdb, 0x21, 0x58, 0x25, 0x99, 0xf8, 0x69, 0xde, 0x64, 0x59, 0x1c, 0x3c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xd6, 0xdc, 0xeb, 0xa4, 0xe1, 0xef, 0xb3, 0x7b, 0x5, 0x20, 0x54, 0xbe, 0xeb, 0xff, 0x1b, 0x2a, 0xcd, 0xde, 0xf5, 0x11, 0xeb, 0x9e, 0x29, 0xb, 0xa3, 0x57, 0x6f, 0x14, 0x6d, 0xa8, 0x16}} return a, nil } @@ -1364,7 +1363,7 @@ func epochAdminSet_bonus_tokensCdc() (*asset, error) { return a, nil } -var _epochAdminUpdate_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xc1\x4a\xc3\x40\x10\x86\xef\x79\x8a\xa1\x87\x92\x5c\x82\x5e\x3c\x04\xb5\xc4\x34\xa2\x17\x2d\x06\xbd\x8f\x9b\xb1\x09\x6c\x76\x96\xc9\x2c\x11\xa4\xef\x2e\x9b\x68\x03\x9d\xe3\xb2\xdf\xfc\xdf\xfc\xfd\xe0\x59\x14\x1e\x2d\x4f\xb5\x67\xd3\xc1\x97\xf0\x00\x57\xdf\xf5\xe1\xb5\x7a\x2a\xf7\xfb\xb7\xba\x69\x92\x44\x05\xdd\x88\x46\x7b\x76\xa9\xa3\xe9\x25\x0c\x95\x0d\xa3\x92\x8c\x05\xbc\x3f\x3b\xbd\xbe\xc9\xe0\x27\x01\x00\xf0\x42\x1e\x85\xd2\xb1\x3f\x3a\x92\x02\x30\x68\x97\x3e\xb0\x08\x4f\x1f\x68\x03\x65\xb0\x2d\x8d\xe1\xe0\x34\x12\x33\x12\xc7\x92\x02\xc5\xfc\xb2\x1d\x7a\x07\x77\xb0\xf0\xf9\xa8\x2c\x78\xa4\xfc\x73\xde\x70\xbb\x3d\x7b\xe6\xf3\xc7\xfb\x34\xea\x16\xab\x7e\x8e\xf1\xb9\x59\xa8\x03\x6a\x97\x9d\x23\xe2\xec\x76\xe0\xd1\xf5\x26\xdd\x54\x1c\x6c\x0b\x8e\x15\x96\xd5\x30\x83\xcb\xf5\x7f\xa1\xe0\x51\xbb\x4d\xb6\x4a\xae\x82\x79\xf0\x2d\x2a\xc5\x1e\xd8\x5a\x32\xca\xf2\x5f\xc8\x45\x3f\x4b\xfe\x29\x39\xfd\x06\x00\x00\xff\xff\xa3\xe1\xda\x3e\x69\x01\x00\x00" +var _epochAdminUpdate_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xf4\x30\x10\x86\xef\xfd\x15\x43\x0f\x4b\x7b\x09\x7c\x97\xef\x50\xd4\x65\x5d\x14\xbc\x88\x20\x7a\x1f\xd3\x71\x1b\x48\x33\x61\x32\xa1\x07\xd9\xff\x2e\x69\xb4\x05\xe7\x96\x90\x67\xde\x27\xaf\x9b\x23\x8b\xc2\xa3\xe7\xe5\x21\xb2\x9d\xe0\x53\x78\x86\x76\x3b\xb7\x4d\xa3\x82\x21\xa1\x55\xc7\xa1\x0b\xb4\x3c\xe7\xf9\xec\x73\x52\x92\x34\xc0\xdb\x53\xd0\x7f\xff\x7b\xf8\x6a\x00\x00\xa2\x50\x44\xa1\x2e\xb9\x4b\x20\x19\x00\xb3\x4e\xdd\x3d\x8b\xf0\xf2\x8e\x3e\x53\x0f\x87\x93\xb5\x9c\x83\x16\x62\x45\xca\x78\x52\xa0\x12\x76\x1a\x67\x17\xe0\x16\x2a\x6f\x92\xb2\xe0\x85\xcc\xc7\xba\xe1\xe6\xb0\x49\x99\xf5\xe1\x5d\x57\x5c\x87\xdd\xdd\x60\xb9\x7e\xad\xd4\x0b\xea\xd4\x6f\x11\x65\x8e\x47\x88\x18\x9c\xed\xda\x33\x67\x3f\x42\x60\x85\xba\x1a\x56\xb0\x7e\xfd\x27\x14\x22\xea\xd4\xf6\xbb\xe4\x2e\x68\x72\x1c\x51\xa9\xf4\xc0\xde\x93\x55\x96\xdf\x42\xfe\xf4\x53\xf3\xaf\xcd\xf5\x3b\x00\x00\xff\xff\xa4\x93\x38\x91\x66\x01\x00\x00" func epochAdminUpdate_clustersCdcBytes() ([]byte, error) { return bindataRead( @@ -1380,11 +1379,11 @@ func epochAdminUpdate_clustersCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_clusters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x30, 0x5d, 0x1c, 0xc7, 0x3b, 0xa4, 0x9b, 0x61, 0x88, 0xc0, 0x72, 0xc3, 0x5f, 0x76, 0x35, 0x4a, 0x68, 0x81, 0x77, 0x20, 0x81, 0xa4, 0x4e, 0x9b, 0xbf, 0x13, 0x24, 0x2f, 0x63, 0x1d, 0x2b, 0x3f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0x2d, 0x63, 0x8c, 0xa3, 0x90, 0x7, 0x27, 0x5f, 0x26, 0x35, 0x5c, 0xa4, 0x14, 0xfc, 0xe7, 0x15, 0xcf, 0x58, 0xf0, 0x63, 0xa9, 0x64, 0xac, 0x59, 0x2f, 0x89, 0xc9, 0x99, 0x40, 0x69, 0xf8}} return a, nil } -var _epochAdminUpdate_dkg_phase_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\x4f\x6b\xb4\x30\x10\xc6\xef\x7e\x8a\x61\x0f\x8b\x5e\xe4\x3d\xbc\xf4\x20\x6d\x17\xbb\xda\x3f\xf4\x50\xa9\x74\xef\x53\x9d\xae\x01\xcd\x84\x64\x82\x85\xb2\xdf\xbd\xc4\xb4\x4a\xe7\x18\xf2\x3c\xbf\xdf\x8c\x9a\x0c\x5b\x81\xfb\x91\xe7\xda\x70\x37\xc0\x87\xe5\x09\xfe\x7d\xd6\xcd\xcb\xf1\xb1\xac\xaa\xd7\xba\x6d\x93\x44\x2c\x6a\x87\x9d\x28\xd6\xa9\xa6\xb9\x19\xd0\xd1\x49\xd1\xec\x0a\x78\x7b\xd2\x72\xf5\x3f\x83\xaf\x04\x00\xc0\x58\x32\x68\x29\x75\xea\xac\xc9\x16\x80\x5e\x86\xf4\x8e\xad\xe5\xf9\x84\xa3\xa7\x0c\xf6\x65\xd7\xb1\xd7\xf2\x9b\x08\x33\x92\x00\x05\x7a\xd9\x4f\x4a\xc3\x0d\xc4\x78\xee\x84\x2d\x9e\x29\x7f\x5f\x0a\xae\xf7\xab\x65\xbe\x7c\xbc\x4d\x83\x6c\xb1\xc9\xe7\x18\x9e\xdb\x98\x6a\x50\x86\x6c\x45\x84\x39\x1c\xc0\xa0\x56\x5d\xba\x3b\xb2\x1f\x7b\xd0\x2c\x10\xab\x61\x09\xc6\xdd\x7f\xa0\x60\x50\x86\x5d\x96\xac\x0d\x9b\x60\xee\x4d\x8f\x42\xd5\xf3\xc3\x76\x88\xbf\x67\x89\xdc\x4b\x72\xf9\x0e\x00\x00\xff\xff\x59\x08\x52\x6a\x5f\x01\x00\x00" +var _epochAdminUpdate_dkg_phase_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\x4d\x4b\xc4\x30\x10\x86\xef\xfd\x15\x43\x0f\x4b\x7a\xc9\x49\x3c\x14\x75\x59\x3f\x11\x2f\x0b\xe2\xde\xc7\x74\xdc\x04\xda\x4c\x48\x26\xf4\x20\xfb\xdf\x25\x8d\xb6\x38\xb7\x84\xbc\xef\xf3\x64\xdc\x14\x38\x0a\x3c\x8f\x3c\x3f\x05\x36\x16\xbe\x22\x4f\xd0\xae\xe7\xb6\x69\x24\xa2\x4f\x68\xc4\xb1\x57\x9e\xe6\xa3\xc5\x44\x27\x47\x73\xea\xe1\xe3\xd5\xcb\xf5\x55\x07\xdf\x0d\x00\x40\x88\x14\x30\x92\x4a\xee\xec\x29\xf6\x80\x59\xac\xba\xe7\x18\x79\x3e\xe1\x98\xa9\x83\xdd\xc1\x18\xce\x5e\xfe\x12\x65\x46\x12\xa0\x82\x3a\x0c\x93\xf3\x70\x0b\x35\xae\x93\x70\xc4\x33\xe9\xcf\xa5\xe0\x66\xb7\x2a\xe9\xe5\xe1\x9d\x2a\xa6\xfd\x66\xae\xb1\x5c\xbf\xd7\xd4\x11\xc5\x76\x2b\xa2\xcc\x7e\x0f\x01\xbd\x33\xaa\x7d\xe0\x3c\x0e\xe0\x59\xa0\x56\xc3\x12\xac\x1f\xff\x85\x42\x40\xb1\x6d\xd7\xac\x0d\x9b\xa0\xce\x61\x40\xa1\xc7\xb7\x97\x6d\x11\xff\xd7\x52\xb9\x97\xe6\xf2\x13\x00\x00\xff\xff\x94\xd7\x29\x1e\x5c\x01\x00\x00" func epochAdminUpdate_dkg_phase_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1400,11 +1399,11 @@ func epochAdminUpdate_dkg_phase_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_dkg_phase_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x89, 0x8b, 0x7a, 0xd, 0xae, 0x66, 0x1b, 0x51, 0xc0, 0x64, 0x65, 0xa2, 0x4e, 0xae, 0xc5, 0x5d, 0x83, 0x1a, 0x91, 0x11, 0x9c, 0xfe, 0xdb, 0x9c, 0xb9, 0xd1, 0xd5, 0x84, 0x2b, 0xf1, 0x5d, 0xcd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x82, 0xa0, 0x30, 0xce, 0xb4, 0x51, 0x7b, 0xb0, 0x89, 0x4c, 0xa1, 0x7c, 0x59, 0xaa, 0xcd, 0x18, 0xb8, 0x5d, 0x4a, 0xb, 0xca, 0x8f, 0x30, 0x58, 0xd0, 0xa4, 0x14, 0x7c, 0x48, 0x80, 0x98, 0x3}} return a, nil } -var _epochAdminUpdate_epoch_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x94\xc1\x6e\xdb\x3c\x10\x84\xef\x7e\x8a\xf9\x73\x08\x6c\xc0\xbf\xd2\x43\xd1\x83\xd1\x26\x70\x63\x37\x09\xd2\x26\x41\x9d\xa6\xe7\xb5\xb4\x92\x88\x48\xa4\x40\xae\xe2\x02\x45\xde\xbd\x20\x69\x5b\x92\x51\x34\x08\x8a\xea\xe0\x03\xcd\x99\xd9\xfd\x48\xae\xaa\x1b\x63\x05\x9f\x2a\xb3\x59\x36\x26\x2d\x91\x5b\x53\xe3\xcd\x8f\xe5\xdd\xed\xf9\xe5\x7c\xb1\xf8\xba\x5c\xad\x46\x23\xb1\xa4\x1d\xa5\xa2\x8c\x1e\x67\x8f\xc5\x5d\x49\x8e\x3f\xb3\x9e\xe1\xdb\x95\x96\x77\x6f\xa7\x70\x42\x8f\x4a\x17\x83\x35\xf6\x7e\xbd\x95\x09\x7e\x8e\x00\xa0\xb1\xdc\x90\xe5\xb1\x53\x85\x66\x3b\x03\xb5\x52\x8e\x3f\x1a\x6b\xcd\xe6\x81\xaa\x96\x27\x38\x9e\xa7\xa9\x69\xb5\xec\x14\xfe\xab\x58\xa2\xe3\x3c\xab\x95\xc6\x07\x44\x79\xe2\xc4\x58\x2a\x38\x59\x07\x83\xf7\xc7\xfb\x4e\x92\xb0\xf1\x74\xec\x1b\x9a\x75\x0d\x26\xe4\x97\x57\x51\x75\x47\x52\x4e\xf6\x11\xfe\x3b\x3b\x43\x43\x5a\xa5\xe3\xa3\x73\xd3\x56\x19\xb4\x11\x44\x6b\x04\x61\xe4\xb3\x0d\x45\x43\x52\x1e\x4d\x46\x7b\x07\x95\xe3\xbf\x2e\x49\xb9\x07\xaa\x54\x16\x68\x9d\x1b\x9d\xab\xa2\xb5\x14\x18\x76\xb8\xa6\xe8\xf1\xec\x98\xf5\x3b\x0f\xcc\x62\x4d\x37\xbc\x41\x3c\xa6\x07\xc5\x1b\x87\xba\x75\x82\x35\xa3\xb0\x4c\xc2\x16\x52\x92\x86\x94\x0c\xd7\xd6\x30\xf9\xee\x58\x40\x3a\xc3\xe2\xfa\x02\x21\x08\x4f\x5e\x7b\xd4\xf5\xfd\xdc\x35\x70\x72\x72\x82\x45\xcb\x10\x13\x6c\x72\x4a\xc5\x9b\x6e\xd1\xff\x7d\xea\x20\x68\xc3\xd1\xaa\x6d\x32\x12\x0e\x0e\x31\x26\x0d\xb0\xa0\xa2\x6b\x6a\xac\xe5\x54\x60\x6c\xc6\x36\xc1\x7d\xa9\x1c\x9e\x3c\xd8\xc0\x12\xca\x21\x33\x9a\x61\x34\x98\xd2\x72\x60\x31\x88\x8b\x31\x09\x2e\xcd\x26\xf8\xea\xb6\x5e\xb3\xf5\x05\x87\xd2\x76\x71\x51\xaf\x1c\xd6\xec\x9b\x88\xaa\x0c\x19\x0b\xdb\x5a\x69\x76\x61\x57\x28\x66\x60\xaf\x34\x36\xa5\x4a\x4b\xef\x1b\x38\x5d\xe9\x70\x54\xd3\xde\xc2\x2a\x92\x99\xb7\xe1\x29\x4d\x03\xa1\xee\xdf\xc5\xf5\x45\x44\xa5\x99\x33\x7f\x04\x6b\xde\xc7\xbb\x36\x2d\xe3\x49\xf8\xf4\x5e\xfb\x0d\x39\xc7\x2e\x19\x94\xf2\x3f\x94\x4e\x2d\x93\xf3\x0d\x1c\x94\x33\xdb\xe1\x3e\x58\xc7\x9a\x73\x63\xf9\xd5\xc5\x1e\x04\x67\xfc\x8a\xe0\x61\x42\x08\xf8\x1d\x8e\x17\x2a\x1b\x54\x70\x73\x7b\xbf\x9c\xe1\x3b\x83\x9c\x6b\x6b\x46\xc9\x96\x3b\x6e\xfe\x36\x36\xc1\xb3\x62\x5d\x48\x38\xe6\xda\x93\x75\x35\x55\xd5\xe0\x2a\x6f\xef\xf0\x76\x5f\x6e\x2c\xa8\xaa\xd0\x18\x61\x2d\x8a\xaa\xed\x05\xdb\x3e\xe8\x1e\x7f\x95\xef\x1f\x31\x4e\x7b\x63\xa7\x60\x89\x33\xe0\x0b\x0b\x65\x24\x34\x9e\x24\x87\x47\x70\xf0\xe8\xbb\x71\x97\x44\x74\x61\x57\x50\x8c\xf7\x83\xe2\xcf\x8a\x2d\xa2\xa8\xe9\xa6\xce\x0b\xaa\x1d\xf9\x28\xeb\x0d\xa8\xde\xcc\x00\x57\x8e\x5f\x2a\xf8\x9f\xc5\xbf\x1e\xcf\xf3\x28\xfe\x3e\xff\x0a\x00\x00\xff\xff\x1b\xd1\x45\xfa\xf2\x06\x00\x00" +var _epochAdminUpdate_epoch_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x94\x4f\x4f\xdc\x3a\x14\xc5\xf7\xf3\x29\xce\x9b\x05\x9a\x91\xe6\x85\xcd\xd3\x5b\x8c\x5a\x10\x05\x4a\x11\x2d\x45\x82\xd2\xf5\x9d\xe4\x26\xb1\x48\xec\xc8\xbe\x21\x8b\x8a\xef\x5e\xd9\xce\xe4\xcf\xa8\x2a\x42\x55\xb3\x40\xc2\xe3\x73\xce\xbd\x3f\xdb\x57\xd5\x8d\xb1\x82\x8f\x95\xe9\x2e\x1b\x93\x96\xc8\xad\xa9\xb1\x1c\xfe\x5f\x2e\x16\x62\x49\x3b\x4a\x45\x19\xbd\xca\x9e\x8a\xbb\x92\x1c\x7f\x66\xbd\xc5\xb7\x6b\x2d\xff\xff\xb7\x81\x13\x7a\x52\xba\x98\xad\xb1\x17\x4f\x56\xd6\xf8\xb1\x00\x80\xc6\x72\x43\x96\x57\x4e\x15\x9a\xed\x16\xd4\x4a\xb9\xfa\x60\xac\x35\xdd\x23\x55\x2d\xaf\x71\x74\x96\xa6\xa6\xd5\xb2\x57\xf8\xaf\x62\x89\x8e\x67\x59\xad\x34\xde\x23\xca\x13\x27\xc6\x52\xc1\xc9\x2e\x18\xbc\x3b\x1a\xca\x4e\xc2\xc6\x93\x95\xef\x66\x3b\x76\x97\x90\x5f\xbe\x8f\xaa\x3b\x92\x72\x3d\x44\xf8\xef\xf4\x14\x0d\x69\x95\xae\x96\xe7\xa6\xad\x32\x68\x23\x88\xd6\x08\xc2\x08\xa7\x0f\x45\x43\x52\x2e\xd7\x8b\xc1\x41\xe5\xf8\x67\x4c\x52\xee\x91\x2a\x95\x05\x5a\xe7\x46\xe7\xaa\x68\x2d\x05\x86\x23\xae\x0d\x26\x3c\x47\x66\xd3\xce\x03\xb3\x58\xd3\x2d\x77\x88\x67\xf4\xa8\xb8\x73\xa8\x5b\x27\xd8\x31\x0a\xcb\x24\x6c\x21\x25\x69\x48\xc9\x70\x6d\x0d\x93\xef\x8f\x05\xa4\x33\x5c\xdc\x5c\x21\x04\xe1\xd9\x6b\x97\x63\xdf\x2f\x63\x03\xc7\xc7\xc7\xb8\x68\x19\x62\x82\x4d\x4e\xa9\x78\xd3\x1e\xfd\x9f\xa7\xce\x82\x3a\x8e\x56\x6d\x93\x91\x70\x70\x88\x31\x69\x80\x05\x15\x5d\x53\x63\x2d\xa7\x02\x63\x33\xb6\x09\x1e\x4a\xe5\xf0\xec\xc1\x06\x96\x50\x0e\x99\xd1\x0c\xa3\xc1\x94\x96\x33\x8b\x59\x5c\x8c\x49\xf0\xc9\x74\xc1\x57\xb7\xf5\x8e\xad\x2f\x38\x94\xb6\x8f\x8b\x7a\xe5\xb0\x63\xdf\x44\x54\x65\xc8\x58\xd8\xd6\x4a\xb3\x0b\xbb\x42\x31\x33\x7b\xa5\xd1\x95\x2a\x2d\xbd\x6f\xe0\x74\xad\xc3\x51\x6d\x26\x0b\xf7\x91\xcc\x59\x1b\x9e\xd2\x26\x10\x1a\x7f\xbd\xb8\xb9\x8a\xa8\x34\x73\xe6\x8f\x60\xc7\x43\xbc\x6b\xd3\x32\x9e\x84\x4f\x9f\xb4\xdf\x90\x73\xec\x92\x59\x29\xff\x42\xe9\xd4\x32\x39\xdf\xc0\x41\x39\xdb\x3d\xee\x83\x75\xec\x38\x37\x96\xdf\x5c\xec\x41\x70\xc6\x6f\x08\x9e\x27\x84\x80\x5f\xe1\x78\xa5\xb2\x59\x05\xb7\x5f\x1f\x2e\xb7\xf8\xce\x20\xe7\xda\x9a\x51\xb2\xe5\x91\x9b\xbf\x8d\x4d\xf0\xac\x58\x17\x12\x8e\xb9\xf6\x64\x5d\x4d\x55\x35\xbb\xca\xfd\x1d\xee\xf7\xe5\xc6\x82\xaa\x0a\x8d\x11\xd6\xa2\xa8\xea\x2f\x58\xff\xa0\x27\xfc\x55\x3e\x3c\x62\x9c\x4c\xc6\x4e\xc1\x12\x67\xc0\x17\x16\xca\x48\x68\xb5\x4e\x0e\x8f\xe0\xe0\xd1\x8f\xe3\x2e\x89\xe8\xc2\xae\xa0\x58\x0d\x83\xe2\xf7\x8a\x1e\x51\xd4\x8c\x53\xe7\x15\xd5\x9e\x7c\x94\x4d\x06\xd4\x64\x66\x80\x2b\xc7\xaf\x15\xfc\xd7\xe2\xdf\x8e\xe7\x65\x11\xff\xbe\xfc\x0c\x00\x00\xff\xff\x69\x95\xf0\xa2\xef\x06\x00\x00" func epochAdminUpdate_epoch_configCdcBytes() ([]byte, error) { return bindataRead( @@ -1420,11 +1419,11 @@ func epochAdminUpdate_epoch_configCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_epoch_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0xbf, 0x44, 0xd1, 0x3d, 0x58, 0x92, 0x1b, 0xbe, 0xa2, 0xe5, 0x64, 0x67, 0xc3, 0x57, 0xcd, 0x62, 0xfa, 0x24, 0xf5, 0x3f, 0x6e, 0xa, 0x8b, 0x36, 0x5d, 0x58, 0xa7, 0xbe, 0x4c, 0xd7, 0x7d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0xcd, 0x55, 0xcb, 0x2d, 0xe5, 0x21, 0x62, 0x30, 0xa4, 0xa3, 0x99, 0x58, 0x9e, 0xa2, 0xb1, 0x47, 0x7d, 0x26, 0xa1, 0x75, 0xd8, 0x12, 0x3f, 0xf, 0xf5, 0xc5, 0x3e, 0xf1, 0x44, 0x72, 0x60}} return a, nil } -var _epochAdminUpdate_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x50\x4d\x6b\xf3\x30\x0c\xbe\xe7\x57\x88\x1e\x4a\x02\x2f\xe1\x3d\x8c\x1d\xca\xba\xd2\xa5\x1d\xdb\x69\x65\xed\x76\xd7\x1c\x27\x31\xc4\x96\x71\x64\x3a\x18\xfd\xef\xc3\xf1\xd2\x24\x9b\x0e\x46\x96\xfd\xe8\xf9\x50\xda\x92\x63\x78\x6c\xe9\xbc\xb7\x24\x1a\xa8\x1c\x69\xf8\xff\xb9\x3f\xbc\x14\x4f\xdb\xdd\xee\x75\x7f\x3c\x26\x09\x3b\x34\x1d\x0a\x56\x64\xd2\xd2\x3b\x0c\xcd\x0a\xde\x9e\x0d\xdf\xde\xfc\x03\x27\xab\x82\xbc\x61\xe9\x66\xb3\x93\xd2\xb2\x63\xd4\x76\x98\x66\xf0\x95\x00\x00\x58\x27\x2d\x3a\x99\x76\xaa\x36\x01\x83\x9e\x9b\xf4\x81\x9c\xa3\xf3\x3b\xb6\x5e\x66\xb0\xdc\x0a\x11\x36\x0e\x88\x50\xad\x64\x90\x41\xe2\xb6\xd4\xca\xc0\x1a\x22\x3c\xef\x98\x1c\xd6\x32\xff\xe8\x17\xdc\x2d\xaf\x56\xf2\xfe\xe3\x7d\x1a\x1c\xad\x46\x87\x39\x86\xf1\x31\xa2\x0e\xc8\x4d\x76\xa5\x08\xb5\xd9\x80\x45\xa3\x44\xba\x28\xc8\xb7\x25\x18\x62\x88\xab\xa1\x07\xc6\x80\x7e\x48\xc1\x22\x37\x8b\x2c\x99\x89\x14\x64\x2a\x55\xc3\x7a\x42\xd9\x9f\x27\xa5\x95\xa9\x8b\xfe\x75\x92\xe2\xd0\xcd\x73\x1c\xfb\xdf\x59\x4e\x6f\xa3\xf4\x31\x99\xdc\xdb\x12\x59\xfe\xa5\x8c\xba\x22\xe4\x92\x5c\xbe\x03\x00\x00\xff\xff\x2d\x63\x07\xe0\xfa\x01\x00\x00" +var _epochAdminUpdate_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x50\x4d\x6b\xf3\x30\x0c\xbe\xe7\x57\x88\x1c\x4a\x02\x2f\x39\xbd\xec\x50\xd6\x95\xae\x6c\xb0\xdb\x60\xdd\xee\x9a\xe3\x24\x86\xd8\x32\x8a\x4c\x0f\xa3\xff\x7d\x38\x5e\xbe\x36\x1d\x82\xa4\xf8\xf9\xd0\x63\xac\x27\x16\x78\xee\xe9\xfa\xe4\x49\x75\xd0\x30\x59\xc8\xe7\x39\xcf\x32\x61\x74\x03\x2a\x31\xe4\x8a\x3a\x30\xc6\x66\x0f\xef\x2f\x4e\xee\xfe\xff\x03\xd6\xcd\x99\x82\x13\xcd\x9b\xdd\xc5\x58\x3d\x08\x5a\x3f\x6d\x4b\xf8\xca\x00\x00\x3c\x6b\x8f\xac\x8b\xc1\xb4\x2e\x62\x30\x48\x57\x3c\x12\x33\x5d\x3f\xb0\x0f\xba\x84\xdd\x49\xa9\xc8\x38\x21\x62\xf5\x5a\x40\x47\x3f\xa7\xda\x1a\x07\x07\x48\xf0\x6a\x10\x62\x6c\x75\xf5\x39\x12\xdc\xef\x66\xdf\xd5\xf8\xf0\xa1\x88\xe7\xec\x97\xf3\x2a\x8c\xeb\xb7\x84\x7a\x45\xe9\xca\x59\x22\xd6\xf1\x08\x1e\x9d\x51\x45\x7e\xa6\xd0\xd7\xe0\x48\x20\x51\xc3\x08\x4c\xe9\xfc\x88\x82\x47\xe9\xf2\x32\xdb\x98\x54\xe4\x1a\xd3\xc2\x61\x25\x39\x7e\x2f\xc6\x1a\xd7\x9e\xc7\xbf\xab\x14\xa7\x6e\x9b\xe3\xd2\xff\xce\x72\x3d\x2d\xd6\x97\x64\xaa\xe0\x6b\x14\xfd\x57\x32\xf9\x4a\x90\x5b\x76\xfb\x0e\x00\x00\xff\xff\xe3\x9c\x76\xf0\xf7\x01\x00\x00" func epochAdminUpdate_epoch_timing_configCdcBytes() ([]byte, error) { return bindataRead( @@ -1440,11 +1439,11 @@ func epochAdminUpdate_epoch_timing_configCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_epoch_timing_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x32, 0x4c, 0x6e, 0x16, 0x6a, 0xf9, 0xc9, 0xf6, 0xfc, 0x23, 0x0, 0xe7, 0x75, 0xcf, 0x27, 0x54, 0x54, 0xcf, 0x9b, 0x9e, 0xdf, 0x19, 0xa9, 0x5a, 0x23, 0xd0, 0x19, 0xab, 0xb5, 0x2b, 0xac, 0x67}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd5, 0x60, 0x43, 0x69, 0x61, 0x53, 0x36, 0x3b, 0x34, 0x20, 0x40, 0x4b, 0xee, 0xa4, 0xd9, 0x27, 0x7a, 0x77, 0x2e, 0xc2, 0x5f, 0x9, 0x20, 0x44, 0x58, 0x2, 0x82, 0xd2, 0x40, 0xc3, 0xc9, 0xce}} return a, nil } -var _epochAdminUpdate_epoch_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xf4\x30\x10\x86\xef\xfd\x15\xc3\x1e\x96\xf6\x12\xbe\xc3\x87\x87\xa2\x2e\x75\xb7\xa2\x27\x17\x8b\x7b\x1f\xd3\x71\x1b\x68\x33\x21\x9d\x50\x41\xf6\xbf\x4b\x12\xed\x82\x73\x0a\x21\xef\xfb\x3c\x19\x33\x39\xf6\x02\x8f\x23\x2f\xad\x63\x3d\xc0\x87\xe7\x09\xfe\x7d\xb6\xc7\x97\xfd\x53\x73\x38\xbc\xb6\x5d\x57\x14\xe2\xd1\xce\xa8\xc5\xb0\x2d\x2d\x2d\x4d\x48\xc7\x93\xa1\x65\xae\xe1\xed\xd9\xca\xcd\xff\x0a\xbe\x0a\x00\x00\xe7\xc9\xa1\xa7\x72\x36\x67\x4b\xbe\x06\x0c\x32\x94\x0f\xec\x3d\x2f\x27\x1c\x03\x55\xb0\x6d\xb4\xe6\x60\xe5\x37\x11\x67\x24\x01\x8a\xfc\xa6\x9f\x8c\x85\x3b\xc8\x71\x35\x0b\x7b\x3c\x93\x7a\x4f\x05\xb7\xdb\xd5\x53\xa5\x87\xf7\x65\xd4\xad\xaf\xfa\x0a\xe3\x75\x97\x53\x47\x94\xa1\x5a\x11\x71\x76\x3b\x70\x68\x8d\x2e\x37\x7b\x0e\x63\x0f\x96\x05\x72\x35\xa4\x60\xfe\xfd\x0f\x14\x1c\xca\xb0\xa9\x8a\xb5\xe1\x2a\xa8\x82\xeb\x51\x28\x21\xd3\x16\xfe\x6e\x25\x63\x2f\xc5\xe5\x3b\x00\x00\xff\xff\xda\xda\xbd\xf3\x60\x01\x00\x00" +var _epochAdminUpdate_epoch_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xc4\x30\x10\x85\xef\xfd\x15\x8f\x1e\x96\xf6\xd2\x93\x78\x28\xea\x52\x45\xc1\x9b\x20\xee\x7d\x4c\xc7\x6d\xa0\xcd\x84\x74\x42\x0f\xb2\xff\x5d\x92\x68\x17\x9c\x53\x12\xf2\xde\xf7\xe6\xd9\xc5\x4b\x50\xbc\xcc\xb2\x3d\x7b\x31\x13\xbe\x82\x2c\xa8\xf7\x7b\x5d\x55\x1a\xc8\xad\x64\xd4\x8a\x6b\x1c\x6f\x43\xcc\xc7\x93\xe5\x6d\xed\xf1\xf1\xea\xf4\xf6\xa6\xc5\x77\x05\x00\x3e\xb0\xa7\xc0\xcd\x6a\xcf\x8e\x43\x0f\x8a\x3a\x35\x8f\x12\x82\x6c\x27\x9a\x23\xb7\x38\x0c\xc6\x48\x74\xfa\xa7\x48\x33\xb3\x82\x13\x6c\x18\x17\xeb\x70\x8f\x22\xef\x56\x95\x40\x67\xee\x3e\xb3\xc1\xdd\x61\x0f\xd5\xe5\x8f\x0f\x4d\xca\xda\x5f\xb3\x77\x94\x9e\xdf\x8b\xea\x8d\x74\x6a\x77\x44\x9a\xe3\x11\x9e\x9c\x35\x4d\xfd\x24\x71\x1e\xe1\x44\x51\xac\x91\x85\x65\xf5\x5f\x28\x3c\xe9\x54\xb7\xd5\xee\x70\x0d\xd8\x45\x3f\x92\x72\x46\xe6\x16\xfe\xb7\x52\xb0\x97\xea\xf2\x13\x00\x00\xff\xff\x08\x1f\x1c\x16\x5d\x01\x00\x00" func epochAdminUpdate_epoch_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1460,11 +1459,11 @@ func epochAdminUpdate_epoch_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_epoch_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0xf2, 0x1e, 0xff, 0x58, 0x74, 0x21, 0xea, 0x1f, 0x45, 0xe4, 0xff, 0x4e, 0x3c, 0x33, 0x53, 0x58, 0xe2, 0xfb, 0x70, 0x69, 0x60, 0x9a, 0x8e, 0xfd, 0x45, 0xde, 0xc9, 0x99, 0xab, 0xe2, 0x64}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1d, 0xaf, 0x8a, 0x1f, 0xbf, 0xa6, 0x25, 0x31, 0x9e, 0xff, 0x30, 0x9, 0x34, 0xd3, 0x90, 0xa4, 0xfd, 0x12, 0x32, 0x1f, 0x2, 0x95, 0xf1, 0x49, 0xb6, 0x85, 0x28, 0xf9, 0x7f, 0x47, 0x75, 0x8d}} return a, nil } -var _epochAdminUpdate_rewardCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\x4f\x4b\xc3\x40\x10\xc5\xef\xf9\x14\x43\x0f\x25\xb9\x04\x0f\xe2\xa1\xa8\x25\xf6\x0f\x0a\x42\x43\x83\x8a\xc7\x71\x33\x26\x0b\xc9\xce\x32\x99\x25\x15\xe9\x77\x97\x24\x9a\xe2\x3b\x2e\xfb\x7b\xef\xb7\x6b\x5b\xcf\xa2\xb0\x6f\xb8\xdf\x79\x36\x35\x7c\x0a\xb7\x70\x75\xda\xe5\x87\xcd\x63\xb6\xdd\x1e\x77\x45\x11\x45\x2a\xe8\x3a\x34\x6a\xd9\xc5\x8e\xfa\x23\xf5\x28\x65\x96\xbf\xaf\xe0\x65\x6f\x4f\x37\xd7\x09\x7c\x47\x00\x00\x5e\xc8\xa3\x50\xdc\xd9\xca\x91\xac\x00\x83\xd6\xf1\x03\x8b\x70\xff\x8a\x4d\xa0\x04\x96\x99\x31\x1c\x9c\xfe\x11\x43\x1a\x52\xa0\x61\x3c\x2b\x5b\xeb\xe0\x0e\x26\x3c\xed\x94\x05\x2b\x4a\x3f\xc6\x82\xdb\xe5\x2c\x99\x8e\x17\xef\xe3\xc1\x75\x75\x71\x4f\x71\x38\x2e\x26\x2a\x47\xad\x93\x79\x62\xc8\x7a\x0d\x1e\x9d\x35\xf1\x62\xc3\xa1\x29\xc1\xb1\xc2\x54\x0d\x23\x38\x3d\xfd\x77\x14\x3c\x6a\xbd\x48\xa2\xb9\xe1\x22\x98\x06\x5f\xa2\xd2\xfe\xf9\xf0\x56\x04\xef\x9b\xaf\x27\x67\x84\xb0\xa3\x9c\xc4\x90\x53\xac\xe8\xdf\x27\x4d\x16\xe7\xe8\xfc\x13\x00\x00\xff\xff\x3c\x85\xfa\xd9\x6c\x01\x00\x00" +var _epochAdminUpdate_rewardCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\xc1\x4a\xc4\x30\x10\x86\xef\x7d\x8a\xa1\x87\xa5\xbd\xf4\x24\x1e\x8a\xba\x54\xb1\x20\x08\x16\x17\x15\x8f\x63\x3a\xb6\x81\x36\x13\xa6\x13\xaa\xc8\xbe\xbb\xb4\xd1\x2e\x3b\xb7\x84\x7c\xff\xff\x65\xec\xe8\x59\x14\xea\x81\xe7\x7b\xcf\xa6\x87\x4f\xe1\x11\xd2\xed\x9c\x26\x89\x0a\xba\x09\x8d\x5a\x76\x99\xa3\xf9\x99\x66\x94\xb6\x6a\xde\x4b\x78\xa9\xed\xd7\xe5\x45\x0e\x3f\x09\x00\x80\x17\xf2\x28\x94\x4d\xb6\x73\x24\x25\x60\xd0\x3e\xbb\x65\x11\x9e\x5f\x71\x08\x94\xc3\xae\x32\x86\x83\xd3\x7f\x62\x99\x81\x14\x68\x69\xaa\xda\xd1\x3a\xb8\x86\x88\x17\x93\xb2\x60\x47\xc5\xc7\x1a\x70\xb5\xdb\x8c\x8a\xf5\xe1\x4d\xb6\x88\x96\x27\xf1\x02\x97\xeb\x43\xa4\x1a\xd4\x3e\xdf\x2a\x96\xd9\xef\xc1\xa3\xb3\x26\x4b\xef\x38\x0c\x2d\x38\x56\x88\xd1\xb0\x82\xf1\xdf\x7f\xa5\xe0\x51\xfb\x34\x4f\xb6\x84\x93\x60\x11\x7c\x8b\x4a\xf5\xe3\xd3\xdb\x21\x78\x3f\x7c\x3f\x38\x23\x84\x13\x35\x24\x86\x9c\x62\x47\x67\x4b\x8a\x16\xc7\xe4\xf8\x1b\x00\x00\xff\xff\x36\x0b\xb8\x8f\x69\x01\x00\x00" func epochAdminUpdate_rewardCdcBytes() ([]byte, error) { return bindataRead( @@ -1480,11 +1479,11 @@ func epochAdminUpdate_rewardCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_reward.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf5, 0x2, 0x3d, 0xb, 0xab, 0x39, 0xe2, 0x16, 0x8c, 0xbf, 0x88, 0x83, 0xe7, 0x2d, 0xdf, 0x3d, 0x95, 0x8, 0x37, 0x6f, 0x2c, 0x91, 0x1a, 0x20, 0xef, 0x99, 0xa4, 0xd6, 0xe4, 0xd6, 0x48, 0xee}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0x15, 0x3f, 0xbe, 0xe9, 0xbe, 0xe7, 0xe5, 0x26, 0x20, 0xbc, 0x39, 0x7e, 0xe9, 0x8e, 0x3e, 0x10, 0xb7, 0x38, 0x63, 0x11, 0xfc, 0x1, 0xbc, 0xa9, 0xb7, 0x56, 0xc3, 0x3, 0x42, 0x57, 0x9b}} return a, nil } -var _epochAdminUpdate_staking_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x43\x0f\x25\xb9\x04\x0f\xe2\x21\xa8\x25\xb6\x11\x3d\x59\x0c\xf6\x3e\x26\x63\xb2\x98\xcc\x2c\x9b\x59\x22\x48\xff\xbb\x64\x57\x53\xf0\x1d\x97\x7d\xef\x7d\xf3\xcc\x68\xc5\x29\x3c\x0e\x32\x57\x56\x9a\x1e\x3e\x9c\x8c\x70\xf5\x55\x1d\x5f\xf6\x4f\xe5\xe1\xf0\x5a\xd5\x75\x92\xa8\x43\x9e\xb0\x51\x23\x9c\x32\xcd\xb5\xe2\xa7\xe1\xee\x64\x68\x9e\x0a\x78\x7b\x66\xbd\xb9\xce\xe0\x3b\x01\x00\xb0\x8e\x2c\x3a\x4a\x27\xd3\x31\xb9\x02\xd0\x6b\x9f\x3e\x88\x73\x32\x9f\x70\xf0\x94\xc1\xb6\x6c\x1a\xf1\xac\x7f\x8e\x45\x03\x29\xd0\xd2\x5f\xb6\xa3\x61\xb8\x83\x68\xcf\x27\x15\x87\x1d\xe5\xef\x21\xe0\x76\xbb\x72\xe6\xe1\xe3\x7d\xba\xe0\x16\x17\xfc\x1c\x97\xe7\x3a\xba\x8e\xa8\x7d\xb6\x56\x2c\xda\xed\xc0\x22\x9b\x26\xdd\xec\xc5\x0f\x2d\xb0\x28\xc4\x68\x08\xc6\x78\xfd\x6f\x29\x58\xd4\x7e\x93\x25\x6b\xc2\x05\x30\xf7\xb6\x45\xa5\xd2\x87\x49\xc2\x0e\xff\x77\x89\xc5\xe7\xe4\xfc\x13\x00\x00\xff\xff\x85\xd3\x6b\x51\x62\x01\x00\x00" +var _epochAdminUpdate_staking_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xc4\x30\x10\x85\xef\xfd\x15\x43\x0f\x4b\x7b\xc9\x49\x3c\x14\x75\xa9\xa2\xe0\x4d\x58\xdc\xfb\x98\x8e\x6d\xb0\x9d\x09\xe9\x84\x1e\x64\xff\xbb\x24\xd1\x2e\xf8\x6e\x09\x79\xef\x7d\x79\x6e\xf1\x12\x14\x5e\x66\xd9\x9e\xbd\xd8\x09\x3e\x83\x2c\x50\xef\xe7\xba\xaa\x34\x20\xaf\x68\xd5\x09\x37\x4c\xdb\x49\xf1\xcb\xf1\x78\x76\xb4\xad\x1d\xbc\xbf\xb2\xde\xde\xb4\xf0\x5d\x01\x00\xf8\x40\x1e\x03\x35\xab\x1b\x99\x42\x07\x18\x75\x6a\x1e\x25\x04\xd9\xce\x38\x47\x6a\xe1\xd0\x5b\x2b\x91\xf5\xcf\x91\x34\x93\x02\xa5\xb2\x7e\x58\x1c\xc3\x3d\x14\xbb\x59\x55\x02\x8e\x64\x3e\x72\xc0\xdd\x61\x87\x32\xf9\xe1\x43\x93\x58\xbb\x2b\xbb\xc1\x74\x7d\x2a\xae\x37\xd4\xa9\xdd\x2b\x92\x8e\x47\xf0\xc8\xce\x36\xf5\x93\xc4\x79\x00\x16\x85\x12\x0d\xd9\x58\xbe\xfe\x5b\x0a\x1e\x75\xaa\xdb\x6a\x4f\xb8\x02\x9a\xe8\x07\x54\xea\x63\x9e\x24\xef\xf0\x7f\x97\x52\x7c\xa9\x2e\x3f\x01\x00\x00\xff\xff\x86\xa7\x6b\x09\x5f\x01\x00\x00" func epochAdminUpdate_staking_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1500,11 +1499,11 @@ func epochAdminUpdate_staking_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_staking_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0xa5, 0x3, 0x6a, 0x49, 0xa6, 0xd2, 0xf2, 0xf9, 0x18, 0xf9, 0x76, 0x20, 0x71, 0xea, 0x79, 0x7d, 0xed, 0x5e, 0x53, 0x4a, 0x92, 0x20, 0xb0, 0x12, 0x66, 0x4, 0xcf, 0x2, 0xc7, 0x48, 0xc9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0xc5, 0xe9, 0xd8, 0x71, 0xef, 0xa, 0x19, 0xd, 0xc0, 0x54, 0x1c, 0x22, 0x6f, 0x41, 0xf5, 0xc4, 0x93, 0x64, 0x53, 0x59, 0xf5, 0xac, 0xb0, 0x85, 0xa0, 0x42, 0x71, 0x7c, 0x86, 0x6d, 0xba}} return a, nil } -var _epochNodeRegister_dkg_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\xd1\x6a\xf2\x40\x10\x85\xef\xf3\x14\x43\x2e\x24\x81\xdf\xf0\x5f\x07\x5b\x11\x63\x6d\x11\x5a\x31\x7d\x81\x71\x33\x26\x8b\x71\x67\x99\x8c\xb5\x50\x7c\xf7\xa2\x31\x36\xd6\xee\xd5\xc2\x9c\x39\xf3\xcd\x19\xbb\xf3\x2c\x0a\x4f\x35\x1f\x66\x9e\x4d\x05\x1b\xe1\x1d\xfc\xff\x9c\x2d\xdf\xa6\xcf\x93\x2c\x5b\xcd\xf2\x3c\xe8\x89\x5e\xb2\x77\x5c\xd7\x94\x2b\x6e\xad\x2b\x5b\x75\x78\x5f\x08\xfb\x3d\xd9\x62\xde\xd9\x66\x8b\x79\x67\x1a\xa8\xa0\x6b\xd0\xa8\x65\x17\xc5\xf0\x15\x04\x00\x00\x5e\xc8\xa3\x50\xd4\xd8\xd2\x91\xa4\x80\x7b\xad\xa2\x5c\x59\xb0\xa4\x18\x06\x13\x63\x78\xef\xf4\x2a\x3f\xbd\x9a\x14\x1c\x17\xb4\xa2\x0d\x3c\x40\xdb\x98\x34\x6d\x4b\xb2\x66\x11\x3e\x8c\x06\xf7\x88\xc9\x2b\x17\xe7\x3f\xc9\x63\x74\xc2\x4b\xff\x58\xb0\x27\xba\x40\x2c\x51\xab\xf8\x3a\xfb\xf4\xc6\x63\xf0\xe8\xac\x89\xc2\x29\xef\xeb\x02\x1c\x2b\xb4\x63\xcf\x58\x20\xb4\x21\x21\x67\xa8\x0d\xe1\x42\x06\x1e\xb5\x0a\xe3\xdb\x35\x8a\x6d\xb9\x44\x51\x6b\xac\x47\xa7\x30\x1a\xfe\x1c\x26\x29\x49\xb3\xc5\xbc\x57\x8e\xdc\x95\x2d\xed\x02\xe8\xf9\xfd\x0a\xa2\xc1\x0f\x8a\x46\xc3\xdb\x09\xff\x40\x39\xed\x6e\x94\xf4\x0a\x37\xcb\x9e\x2d\x8f\xc1\xf1\x3b\x00\x00\xff\xff\x17\xa8\x74\xb3\x2c\x02\x00\x00" +var _epochNodeRegister_dkg_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x51\x6e\xc2\x30\x0c\x86\xdf\x7b\x0a\xab\x0f\x28\x95\x46\x0f\x50\xb1\xa1\x69\xdd\xd0\x84\x34\xa1\xb1\x0b\x98\xd4\xb4\x11\x25\x8e\x5c\x33\x1e\x26\xee\x3e\x41\xa1\x4b\xb7\xf9\x29\x91\x7f\xdb\x9f\x7f\xbb\x7d\x60\x51\x78\x69\xf9\xf8\x1c\xd8\x36\xb0\x15\xde\x43\x3a\xfc\xd3\x24\x52\xbc\x96\x1f\xb8\x69\x69\xad\xb8\x73\xbe\x8e\xa4\xe3\xc4\xa8\xa6\x5c\x2e\x22\x61\xb9\x5c\xa4\x49\xa2\x82\xbe\x43\xab\x8e\xbd\xc9\xe0\x2b\x49\x00\x00\x82\x50\x40\x21\xd3\xb9\xda\x93\x14\x80\x07\x6d\xcc\x5a\x59\xb0\xa6\x0c\x26\x8f\xd6\xf2\xc1\xeb\x20\x3f\x47\x4b\x0a\x9e\x2b\x7a\xa7\x2d\xdc\x43\x5f\x98\x77\x7d\x49\xbe\x61\x11\x3e\xce\x26\x7f\xf9\xf2\x37\xae\x2e\x6f\x92\x07\x73\x66\x2b\xfe\xd9\x2e\x12\x5d\x21\x56\xa8\x4d\x36\xcc\x3e\xc7\x7c\x0e\x01\xbd\xb3\x26\x7d\xe2\x43\x5b\x81\x67\x85\x7e\xec\x05\x0b\x84\xb6\x24\xe4\x2d\xf5\x0e\x5c\xc9\x20\xa0\x36\x69\x36\x5e\xa3\xda\xd5\x2b\x14\x75\xd6\x05\xf4\x0a\xb3\xe9\xcf\x49\xf2\x9a\xb4\x5c\x2e\xa2\xb4\xf1\x03\x5b\x71\x33\x20\xea\xf7\xcb\x88\x0e\x3f\xc9\xcc\xa6\xe3\x09\x77\xa0\x5c\xdc\x0e\x94\x47\x89\xd1\xb2\x97\x96\xa7\xe4\xf4\x1d\x00\x00\xff\xff\x4e\x62\x63\xb2\x26\x02\x00\x00" func epochNodeRegister_dkg_participantCdcBytes() ([]byte, error) { return bindataRead( @@ -1520,11 +1519,11 @@ func epochNodeRegister_dkg_participantCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/node/register_dkg_participant.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x94, 0x6e, 0x40, 0x33, 0x40, 0x23, 0x2d, 0xc2, 0x2a, 0xb7, 0x14, 0x66, 0x4f, 0xc8, 0x48, 0x15, 0xe0, 0x3c, 0xbc, 0x1b, 0xc0, 0xbb, 0xe6, 0x85, 0x3a, 0x44, 0x9e, 0xc6, 0xdb, 0xa7, 0x47, 0x1b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0xdd, 0x3f, 0x15, 0x1e, 0xf, 0x7e, 0x70, 0x58, 0xec, 0x18, 0xf8, 0x58, 0xb3, 0x8e, 0x70, 0xd4, 0x98, 0xda, 0x47, 0xb5, 0xc2, 0x4b, 0x55, 0xa9, 0xa6, 0x77, 0x76, 0x6e, 0xfb, 0xdb, 0x66}} return a, nil } -var _epochNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x56\x4b\x6f\xe3\xb6\x13\xbf\xfb\x53\x0c\x72\x08\x64\xc0\x91\xff\xff\xa2\x28\x0a\x21\xd9\x85\x21\x27\x69\xe0\x45\x37\xaf\xdd\x3d\x14\x3d\xd0\xe4\xc8\x62\x23\x93\x2a\x39\xaa\x57\x08\xfc\xdd\x0b\x8a\x92\x2c\x46\xde\xec\x2e\xda\x5b\x7d\x90\xc5\x79\xfc\x66\x86\xf3\x92\xdc\x96\xda\x10\xa4\xa6\x2e\x49\x4f\xda\xd3\x55\xa1\x77\x37\xcb\x47\xb6\x2e\xf0\x81\xd8\x93\x54\x1b\xc8\x8c\xde\xc2\xc9\x98\x71\x32\xd4\x79\xd4\x4f\xa8\x06\xa2\xcd\x39\x90\x48\x8b\xca\x12\x9a\xbb\xd4\x4b\xfd\xef\xf3\x5d\xba\x58\x2e\xef\x2f\x1f\x1e\x86\x52\xcb\xd5\x75\xc7\x5f\xae\xae\x8f\x08\x5c\x96\x9a\xe7\x9d\xc8\xe5\xed\xfb\xf4\x97\x97\x42\x95\xda\xc8\x75\x81\x81\x47\x43\xda\xc9\x64\x32\x9f\xc3\x63\x2e\x2d\x90\x61\xca\x32\x4e\x52\x2b\xe0\x06\x19\xa1\x05\x06\x0a\x77\xa0\xb4\x40\xb0\x64\x2a\x4e\xa0\xd7\x7f\x20\x27\xaf\x84\x6a\x06\x32\x03\xca\xd1\x8b\x48\xa7\xc0\x75\x51\x20\x27\x6d\x1a\xda\xec\x05\x14\xe3\x5c\x57\x8a\x80\x29\x01\x4c\x08\x47\xbe\x4b\x5b\x50\x20\x0d\xb2\x81\xbe\x19\x83\x2a\x8b\xca\x56\xb6\x05\x95\xf4\x75\x5c\x77\x7b\x01\xf0\x64\x10\x61\x34\x01\x00\x90\x22\x81\x07\x32\x52\x6d\x66\xcd\xd9\xe8\x02\x13\xf8\x70\xa3\xe8\x67\x4f\x50\x48\x3b\x6d\x5c\x82\x17\x42\x18\xb4\x36\x94\x3f\xb0\x57\x58\x87\x2c\xeb\xeb\x62\x44\x67\x5b\xe7\x67\x02\x1f\xae\xe4\xe7\x9f\x7e\xf4\xb4\xb2\x5a\x17\x92\xaf\xb0\xb6\x09\xfc\xe6\x4b\x30\x5e\x61\xfd\x4e\x5a\xba\x54\x64\xea\xdf\x27\x53\x78\x9e\x34\xa2\x05\x12\x64\x5d\x49\xdd\x63\x96\x00\xab\x28\x8f\x82\x9c\xc6\x9f\x24\xe5\xc2\xb0\xdd\x14\x4e\xfb\xf2\x8b\x3f\xb2\xaa\x20\x0f\x52\x1a\x2c\x99\xc1\x88\x71\x4e\x2d\xc0\x03\x69\xc3\x36\x38\x83\x94\x95\x6c\x2d\x0b\x49\x12\xed\x0c\x16\x42\xac\xb0\x9e\xc2\xe9\xc2\xdf\x6f\xef\x47\x13\x22\x16\x59\x3c\x74\x06\x2e\x5c\x1e\x28\xb6\x1e\x2c\x5e\x6b\x63\xf4\xee\xfc\xbb\x3c\x7c\x13\xb9\x2a\x4d\x60\xde\x82\xcc\x7b\x03\x0d\x7b\xda\x5b\x77\xbf\xb7\x6f\xa1\x64\x4a\xf2\xe8\x24\xd5\x55\x21\x40\x69\x02\x6f\x14\x0c\x66\x68\x50\x71\x74\xc9\xbf\x7a\xf7\xfe\x13\x34\xfa\x27\xd3\x83\xff\xf3\x39\xdc\xe3\x46\xba\x46\x84\x5f\xb5\xc0\x9e\x21\xb3\xa3\x71\x9c\x8e\xdb\x3e\x76\x7a\xee\x1d\x4d\xe7\xf8\xab\x42\xed\x35\xdf\x32\xca\xa7\x70\x71\x01\x4a\x16\xc3\x1b\xed\x32\xac\x7a\x05\x38\x3f\x3b\x86\xc8\x84\x70\xa0\xf7\xc8\xb5\x11\x51\xa0\xdf\xd5\xb5\x14\xb3\x11\xdd\xd7\xb7\x7b\x8e\x79\x47\x4a\x7d\x44\x7a\x4d\xab\xa9\xf4\xe0\x38\x96\x1e\x36\xc5\xe1\x7d\x2c\x47\x2e\xdf\x36\xd5\xdb\xad\x24\x42\x91\xc0\xf9\xd9\xa8\xd8\xe2\x5d\x5b\x43\x51\xd7\x52\xfe\x3f\xac\x90\x69\x78\xb9\x41\x5a\x2d\xfb\x0b\xa3\xf3\xb3\xc3\x65\xcf\x80\xf4\x77\x24\xf0\xb5\xbc\xa5\xac\xec\xba\x81\x0f\x3a\xaa\xb7\x2d\xad\xad\xf0\xfc\xf4\xf9\x55\x63\xb7\xcd\x5c\xd8\xbf\x89\xbe\xdd\xa5\x51\xb0\x81\xf5\x66\xd0\xd8\x3c\x0a\xfc\x9c\x01\xa3\xaf\x44\xed\x1d\x09\x2d\xec\x0f\xe1\x77\xa1\x7f\x79\x04\xfc\xcb\xad\xf3\xad\x43\xa0\x59\x20\x87\x49\xd0\xec\xbf\xd6\x33\x28\x19\xe5\xc3\x69\xd0\x05\x71\xa3\x32\x0d\x17\x5f\xf2\xc5\x71\x9b\xeb\xbb\x59\x26\x5d\xcc\xb1\x14\xe1\x54\x39\xb2\xbe\xba\x9d\xa8\xcd\x68\x97\xf9\x45\x06\x0c\x2c\x72\xad\x04\x33\x75\xbf\xcd\x32\x6d\x1c\x92\x34\x60\x4b\xe4\x32\x93\xbc\xdd\x68\x76\x38\xab\x3a\xaf\x63\xd7\xd8\x6e\xaa\xfc\x1f\x98\xf5\x5b\xec\xd8\x70\xd9\x32\x9e\x4b\x85\x0b\xce\x09\x2e\xa0\x1d\xec\x51\xc9\x6a\x34\x49\x93\xbc\xf0\x7a\x9d\x0f\x4f\x58\x83\x54\x83\x3d\x05\xcf\xa3\x9e\x1d\xc0\xc6\x4f\x58\x5b\x37\xa3\xa2\x5e\x23\x71\x18\x71\x7f\x9c\x41\xce\x6c\xbe\x28\x36\xda\x48\xca\xb7\x9e\x1b\x90\x66\xb0\x43\xb9\xc9\xc9\xb3\xfc\x7b\xe8\xd8\x7e\x1c\xda\x9f\xfc\xa3\xa6\xc3\xd0\x6c\x3e\x8f\xe2\x0d\x52\xff\xb9\xd5\xb0\x07\xe5\xdf\xe7\x30\x84\x1e\xc6\xf2\x62\x5a\xb4\x26\x0e\xa3\xa2\xc7\x8e\x1b\xc6\xf1\x01\xb1\x07\x2c\x2c\x1e\x4d\xd6\x0f\xff\xd5\x64\x89\xa7\xcd\x2d\x33\x24\xb9\x2c\x99\xa2\x51\xce\x96\xab\xeb\x01\xfb\x1f\xe5\x2c\xb4\x74\x48\xdd\x72\x75\x1d\x0f\x18\x47\x27\xcc\x7e\xe2\x9f\xfb\xbf\x03\x00\x00\xff\xff\x6d\x17\x29\x3f\x22\x0c\x00\x00" +var _epochNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x56\x4b\x8f\xdb\x36\x10\xbe\xfb\x57\x0c\xf6\xb0\x90\x01\xad\x8c\x16\x45\x51\x08\x76\x02\xc3\xce\x2e\x0c\x07\xed\x66\x77\x93\x1c\x8a\x1e\x68\x72\x64\xb1\x96\x49\x95\x1c\xd5\x15\x16\xfe\xef\x05\xf5\x66\xe4\x6c\x12\xb4\xb7\xf8\x20\x8b\xf3\xf8\x66\x86\xf3\x92\x3c\xe6\xda\x10\xac\x4c\x99\x93\x9e\x34\xa7\xdb\x4c\x9f\x36\xeb\x27\xb6\xcb\xf0\x91\xd8\x41\xaa\x3d\x24\x46\x1f\xe1\x6a\xcc\xb8\x1a\xea\x3c\xe9\x03\xaa\x81\x68\x75\xf6\x24\x56\x59\x61\x09\xcd\xbb\xd5\x40\xaa\xa3\x79\x92\xeb\xed\xdd\x40\x66\xbd\xbd\xf3\xb8\x6f\x72\xcd\xd3\x01\xbf\x3a\xf7\x12\x85\xda\xcb\x5d\x86\x9e\x3f\x43\xda\xd5\x64\x32\x9b\xc1\x53\x2a\x2d\x90\x61\xca\x32\x4e\x52\x2b\xe0\x06\x19\xa1\x05\x06\x0a\x4f\xa0\xb4\x40\xb0\x64\x0a\x4e\xa0\x77\x7f\x22\xa7\x5a\x09\x55\x08\x32\x01\x4a\xb1\x16\x91\x4e\x81\xeb\x2c\x43\x4e\xda\x54\xb4\xf0\x13\x28\xc6\xb9\x2e\x14\x01\x53\x02\x98\x10\x8e\xfc\x6e\xd5\x80\x02\x69\x90\x15\xf4\x66\x0c\xaa\x2c\x2a\x5b\xd8\x06\x54\xd2\x97\x71\xdd\xbd\x79\xc0\x93\x41\x84\xc1\x04\x00\x40\x8a\x18\x1e\xc9\x48\xb5\x0f\xab\xb3\xd1\x19\xc6\xf0\x7e\xa3\xe8\x97\x9a\xa0\x90\x4e\xda\xb8\xf4\x2e\x85\x30\x68\xad\x2f\xdf\xb3\xb7\x58\xfa\x2c\x5b\x57\xc5\x88\xce\x8e\xce\xcf\x18\xde\xdf\xca\x7f\x7e\xfe\xa9\xa6\xe5\xc5\x2e\x93\x7c\x8b\xa5\x8d\xe1\xf7\xba\x00\xa3\x2d\x96\x6f\xa5\xa5\x37\x8a\x4c\xf9\xc7\x64\x0a\xcf\x93\x4a\x34\x43\x82\xa4\x2d\xa8\x07\x4c\x62\x60\x05\xa5\x81\x97\xd3\xe8\xa3\xa4\x54\x18\x76\x9a\xc2\x75\x57\x7c\xd1\x07\x56\x64\x54\x83\xe4\x06\x73\x66\x30\x60\x9c\x53\x03\xf0\x48\xda\xb0\x3d\x86\xb0\x62\x39\xdb\xc9\x4c\x92\x44\x1b\xc2\x52\x88\x2d\x96\x53\xb8\x5e\xd6\xf7\xdb\xf9\x51\x85\x88\x59\x12\x0d\x9d\x81\x85\xcb\x03\x45\xb6\x06\x8b\x76\xda\x18\x7d\x9a\x7f\x93\x87\xaf\x02\x57\xa5\x31\xcc\x1a\x90\x59\x67\xa0\x62\x4f\x3b\xeb\xee\xf7\xfa\x35\xe4\x4c\x49\x1e\x5c\xad\x74\x91\x09\x50\x9a\xa0\x36\x0a\x06\x13\x34\xa8\x38\xba\xe4\xdf\xbe\xfd\xed\x23\x54\xfa\x57\xd3\xde\xff\xd9\x0c\x1e\x70\x2f\x5d\xcb\xc1\xaf\x5a\x60\xc7\x90\xc9\xc5\x38\xae\xc7\x4d\x1f\x39\x3d\xf7\x8e\xa6\x75\xfc\x45\xa1\xe6\x9a\xef\x19\xa5\x53\x58\x2c\x40\xc9\x6c\x78\xa3\x6d\x86\x55\xa7\x00\xf3\x9b\x4b\x88\x4c\x08\x07\xfa\x80\x5c\x1b\x11\x78\xfa\x6d\x5d\x4b\x11\x8e\xe8\x75\x7d\xbb\xe7\x98\x77\xa1\xd4\x47\xa4\x97\xb4\xaa\x4a\xf7\x8e\x63\xe9\x61\x53\xf4\xef\x63\x39\x72\xf9\xb6\x2b\x7d\x3c\x4a\x22\x14\x31\xcc\x6f\x46\xc5\x16\x9d\x9a\x1a\x0a\xda\x96\xaa\xff\xfd\x0a\x99\xfa\x97\xeb\xa5\xd5\xb2\xbf\x31\x98\xdf\xf4\x97\x1d\x02\xe9\x6f\x48\xe0\x4b\x79\x5b\xb1\xbc\xed\x06\x3e\xe8\xa8\xce\xb6\xb4\xb6\xc0\xf9\xf5\xf3\x8b\xc6\xee\xab\xb9\x70\x7e\x15\x7c\xbd\x4b\xa3\x60\x3d\xeb\xd5\xa0\xb1\x69\xe0\xf9\x19\x02\xa3\x2f\x44\x5d\x3b\xe2\x5b\x38\xf7\xe1\xb7\xa1\x7f\x7e\x04\xfc\xcf\xad\xf3\xb5\x43\xa0\x5a\x20\xfd\x24\xa8\xf6\x5f\xe3\x19\xe4\x8c\xd2\xe1\x34\x68\x83\xd8\xa8\x44\xc3\xe2\x73\xbe\x38\x6e\x75\x7d\x9b\x75\xdc\xc6\x1c\x49\xe1\x4f\x95\x0b\xeb\xab\xdd\x89\xda\x8c\x76\x59\xbd\xc8\x80\x81\x45\xae\x95\x60\xa6\xec\xb6\x59\xa2\x8d\x43\x92\x06\x6c\x8e\x5c\x26\x92\x37\x1b\xcd\x0e\x67\x55\xeb\x75\xe4\x1a\xdb\x4d\x95\x1f\x80\xd9\x7a\x8b\x5d\x1a\x2e\x47\xc6\x53\xa9\x70\xc9\x39\xc1\x02\x9a\xc1\x1e\xe4\xac\x44\x13\x57\xc9\xf3\xaf\xd7\xf9\x70\xc0\x12\xa4\x1a\xec\x29\x78\x1e\xf5\xec\x00\x36\x3a\x60\x69\xdd\x8c\x0a\x3a\x8d\xd8\x61\x44\xdd\x31\x84\x94\xd9\x74\x99\xed\xb5\x91\x94\x1e\x6b\xae\x47\x0a\xe1\x84\x72\x9f\x52\xcd\xaa\xdf\x7d\xc7\xce\xe3\xd0\xfe\xe2\x1f\x34\xf5\x43\xb3\xfa\x16\x8a\xf6\x48\xdd\x87\x55\xc5\x1e\x94\x7f\x97\x43\x1f\x7a\x18\xcb\x27\xd3\xa2\x31\xd1\x8f\x8a\x0e\x3b\xaa\x18\x97\x07\xc4\x19\x30\xb3\x78\x31\x59\x3f\x7e\xaf\xc9\x12\x87\xfd\x3d\x33\x24\xb9\xcc\x99\xa2\x51\xce\xd6\xdb\xbb\x01\xfb\x3f\xe5\xcc\xb7\xd4\xa7\x6e\xbd\xbd\x8b\x06\x8c\x8b\x13\xe6\x3c\xa9\x9f\xe7\x7f\x03\x00\x00\xff\xff\x02\xb2\x4a\x46\x20\x0c\x00\x00" func epochNodeRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -1540,11 +1539,11 @@ func epochNodeRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/node/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfc, 0x12, 0xf1, 0x59, 0xe0, 0x96, 0xc, 0x24, 0xa7, 0xb6, 0x16, 0x51, 0xd, 0xe0, 0x79, 0x22, 0x59, 0x33, 0x89, 0xeb, 0x2f, 0xc3, 0x60, 0xa1, 0xee, 0x25, 0x7, 0x19, 0xb3, 0x7e, 0x34, 0x7e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x68, 0x71, 0x8d, 0x2a, 0x43, 0x15, 0x3f, 0xea, 0xe6, 0xaf, 0x8c, 0x46, 0xaa, 0x5, 0x11, 0x3d, 0x13, 0x3d, 0x30, 0xf1, 0x3b, 0x87, 0xc6, 0xa3, 0x39, 0x96, 0xcf, 0x3d, 0x75, 0x77, 0xbb, 0x90}} return a, nil } -var _epochNodeRegister_qc_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x4f\x4f\xc2\x40\x10\xc5\xef\xfd\x14\x93\x1e\xc8\x36\x91\xc6\x73\x83\x12\x52\x30\x7a\x51\xa0\xc6\xfb\xb2\x0c\x6d\x63\xd9\x59\xa7\x53\x31\x31\x7c\x77\x43\xff\xd9\x8a\x7b\xda\x64\xde\xbc\xf9\xbd\x99\xfc\xe8\x88\x05\x1e\x0a\x3a\xad\x1c\x99\x0c\x0e\x4c\x47\xb8\xfd\x5a\xad\x5f\xe2\xc7\xc5\x72\xb9\x5d\x25\x89\x37\x10\x3d\x2d\x5f\xf5\xae\xc0\x44\xf4\x7b\x6e\xd3\x46\xed\x5f\x17\xfc\x61\x4f\x5c\x54\xa5\x20\x6f\xe2\xce\x7c\x13\x77\xce\x9e\xb0\xb6\xa5\x36\x92\x93\x55\x01\x7c\x7b\x1e\x00\x80\x63\x74\x9a\x51\x95\x79\x6a\x91\x23\xd0\x95\x64\x2a\x11\x62\x9d\x62\x00\x93\x85\x31\x54\x59\xe9\xe5\x97\x57\xa0\x80\xa5\x3d\x6e\xf1\x00\x77\xd0\x34\x86\x65\xd3\x12\xee\x88\x99\x4e\xb3\xc9\x35\x67\xf8\x4c\xfb\xfa\x8f\x7c\xaf\x2e\x74\xd1\x3f\x29\x07\xa2\x16\x62\xad\x25\x0b\xfa\xd9\x97\x37\x9f\x83\xd3\x36\x37\xca\x8f\xa9\x2a\xf6\x60\x49\xa0\x19\x5b\x63\x01\xe3\x01\x19\xad\xc1\x66\x07\x2d\x19\x38\x2d\x99\x1f\x8c\x63\x7c\x98\x37\x12\x64\x98\x4d\x7f\xcf\x12\xa6\x28\xfd\x1a\xeb\xb2\xb2\x3d\x54\xd4\x25\x1f\x18\xfd\xd9\x40\xa9\x3f\x51\xcd\xa6\xad\xf5\x0d\x08\x45\xe3\xd3\x84\x75\x61\x14\xaf\xf6\x3a\x7b\xe7\x9f\x00\x00\x00\xff\xff\x76\xf1\x95\x7f\x23\x02\x00\x00" +var _epochNodeRegister_qc_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\xcd\x4e\x84\x40\x0c\xc7\xef\xf3\x14\x0d\x87\xcd\x90\xb8\x3c\x00\x41\x37\x06\x35\xf1\x62\xd4\x35\xde\x67\x87\xf2\x11\xd9\xe9\x58\x8a\x7b\x30\xfb\xee\x86\x0f\x47\x50\x7b\x82\xe9\xbf\xed\xef\xdf\x36\x47\x4f\x2c\x70\xd7\xd2\xe9\xd6\x93\xad\xa1\x64\x3a\x42\x14\xfe\x23\xb5\x50\xdc\xdf\xbc\x98\x43\x8b\x7b\x31\x6f\x8d\xab\x16\xd2\x75\x62\x55\x93\xb7\x7d\x27\xc8\x4f\xf9\x42\x1e\xde\x22\xa5\x84\x8d\xeb\x8c\x95\x86\x9c\x8e\xe1\x53\x29\x00\x00\xcf\xe8\x0d\xa3\xee\x9a\xca\x21\xa7\x60\x7a\xa9\xf5\x5e\x88\x4d\x85\x31\x6c\xae\xad\xa5\xde\x49\x90\x0f\xd1\xa2\x80\xa3\x02\x9f\xb1\x84\x4b\x98\x0a\x93\x6e\x2a\x49\x0e\xc4\x4c\xa7\x6c\xf3\x97\x35\x79\xa0\x62\xfc\x46\xbe\xd2\x03\x61\xfa\x8f\xd3\x85\x68\x86\x78\x34\x52\xc7\x61\xf6\x10\xbb\x1d\x78\xe3\x1a\xab\xa3\x9c\xfa\xb6\x00\x47\x02\xd3\xd8\x11\x0b\x18\x4b\x64\x74\x16\xa7\x3d\xcc\x64\xe0\x8d\xd4\x51\xbc\xb6\xf1\x6e\x5f\x49\x90\x21\xdb\xfe\xdc\x25\xa9\x50\xc2\xda\xc6\xb4\x76\x01\x2a\xfd\x76\xbe\x68\xf4\x6b\x03\x9d\xf9\x40\x9d\x6d\xe7\xd6\x17\x20\x94\xae\xcf\x93\x8c\x89\x95\xbd\xb1\xd7\x59\x9d\xbf\x02\x00\x00\xff\xff\x2b\x73\x77\x18\x24\x02\x00\x00" func epochNodeRegister_qc_voterCdcBytes() ([]byte, error) { return bindataRead( @@ -1560,11 +1559,11 @@ func epochNodeRegister_qc_voterCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/node/register_qc_voter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4, 0x90, 0xb, 0x9c, 0xab, 0xb5, 0xe, 0xdd, 0xe5, 0x14, 0x8d, 0x54, 0xe4, 0xa, 0x48, 0x56, 0xab, 0x87, 0x86, 0xb2, 0x48, 0x8a, 0x92, 0x5, 0xb4, 0x55, 0x14, 0x19, 0xbd, 0xd1, 0x3b, 0xce}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe3, 0x85, 0x38, 0x83, 0x3f, 0x29, 0xc8, 0x67, 0xf8, 0x39, 0x18, 0x90, 0x30, 0x95, 0xd7, 0xfb, 0xcb, 0x28, 0xff, 0x42, 0xeb, 0x66, 0x30, 0x6, 0x8b, 0x32, 0xc, 0x6a, 0x41, 0x3f, 0x8d, 0xc0}} return a, nil } -var _epochScriptsGet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x18\xa5\x97\x9e\x5a\xe2\x94\x9f\x57\x5a\x1c\x92\x9f\x9d\x9a\x57\xac\xa1\xc9\x55\xcb\x05\x08\x00\x00\xff\xff\x33\x71\xc3\xef\x6f\x00\x00\x00" +var _epochScriptsGet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\xdd\x32\x2b\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\xe6\xe8\xa5\xa7\x96\x38\xe5\xe7\x95\x16\x87\xe4\x67\xa7\xe6\x15\x6b\x68\x72\xd5\x72\x01\x02\x00\x00\xff\xff\x76\x1b\x5a\x11\x6c\x00\x00\x00" func epochScriptsGet_bonus_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1580,11 +1579,11 @@ func epochScriptsGet_bonus_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_bonus_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb9, 0xba, 0x38, 0xb3, 0x71, 0x3, 0x50, 0x8f, 0x89, 0x88, 0x91, 0x63, 0x37, 0x2b, 0x23, 0xdc, 0xcc, 0x6d, 0x13, 0xb3, 0x24, 0xaa, 0x78, 0x8c, 0x95, 0xee, 0x8, 0x37, 0xd, 0xb3, 0x10, 0xa4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdf, 0xb7, 0x12, 0xf4, 0xd5, 0x3, 0x5c, 0xc, 0xe2, 0x8f, 0xba, 0x1, 0xf6, 0xeb, 0xf5, 0x5e, 0x78, 0xa2, 0xa7, 0x95, 0x60, 0x32, 0x30, 0x36, 0x18, 0xe8, 0xde, 0xb7, 0x4d, 0xbd, 0xd3, 0xa}} return a, nil } -var _epochScriptsGet_config_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x42\x68\xd3\x73\xce\xcf\x4b\xcb\x4c\x57\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x92\x4d\x4f\x2d\x81\x28\xf0\x4d\x2d\x49\x4c\x49\x2c\x49\xd4\xd0\xe4\xaa\xe5\x02\x04\x00\x00\xff\xff\x63\x4d\x7a\xe5\x7c\x00\x00\x00" +var _epochScriptsGet_config_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x10\x7a\xf4\x9c\xf3\xf3\xd2\x32\xd3\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x90\x64\xd3\x53\x4b\x20\x0a\x7c\x53\x4b\x12\x53\x12\x4b\x12\x35\x34\xb9\x6a\xb9\x00\x01\x00\x00\xff\xff\x49\x98\x62\x2b\x79\x00\x00\x00" func epochScriptsGet_config_metadataCdcBytes() ([]byte, error) { return bindataRead( @@ -1600,11 +1599,11 @@ func epochScriptsGet_config_metadataCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_config_metadata.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe8, 0x73, 0x53, 0x3c, 0x3c, 0xe9, 0x80, 0xbb, 0x35, 0xa5, 0xdd, 0xe6, 0xac, 0x3f, 0x41, 0x5, 0x10, 0x5d, 0x54, 0xf, 0x58, 0x6f, 0x73, 0xb0, 0x62, 0xb2, 0xc8, 0x3e, 0xb0, 0xc5, 0xdf, 0xdf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdc, 0x29, 0xb6, 0xd6, 0xa0, 0xb4, 0x99, 0xd, 0x4b, 0x96, 0x98, 0x11, 0xa1, 0x5d, 0x26, 0xa8, 0xa1, 0xfe, 0x9c, 0xbd, 0x5f, 0xbc, 0xac, 0xc5, 0x8, 0xcc, 0xe7, 0xf2, 0x6d, 0xd2, 0x51, 0xb7}} return a, nil } -var _epochScriptsGet_create_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x31\xef\x82\x30\x14\x04\xf0\xbd\x9f\xe2\x46\x58\xc8\x7f\x66\xfb\xa7\x60\x74\x52\x64\x24\x0c\x4d\x7d\x28\x49\xe9\x23\xaf\x6d\xd4\x18\xbf\xbb\x89\x81\xa8\xdb\x0d\xbf\xdc\xdd\x38\xcd\x2c\x11\x1b\xc7\xd7\x7a\x66\x7b\xc1\x20\x3c\xe1\xef\x56\x1f\xf6\x7a\xfb\x5f\x55\xc7\xba\x6d\xd5\x17\xd2\x2e\x85\x48\xd2\xe8\x15\x36\x7a\x55\xca\x58\x4b\x21\x64\xc6\xb9\x1c\x43\xf2\x98\xcc\xe8\x33\x23\x62\xee\x25\xba\x36\xca\xe8\xcf\x7d\x5e\xa2\xfb\xe9\x29\x96\xd4\xe3\xa1\x00\x40\x28\x26\xf1\x9f\x43\x85\x15\x32\x91\x34\x3b\x47\x36\xb2\x2c\x3c\x64\x9e\x4f\xb4\xab\x42\x89\xf7\x42\xae\x9e\xea\x15\x00\x00\xff\xff\xef\xe4\x5a\xe3\xcc\x00\x00\x00" +var _epochScriptsGet_create_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x3f\x0b\xc2\x30\x10\x05\xf0\x3d\x9f\xe2\xd1\xa9\x5d\x8a\x73\x37\x49\x2b\x38\xd6\x8e\xa5\x43\x88\x57\x2d\xa4\xb9\x72\x49\x50\x11\xbf\xbb\xa0\xc5\x3f\xdb\x1d\xfc\x78\xef\x4d\xf3\xc2\x12\xb1\x73\x7c\x69\x16\xb6\x67\x8c\xc2\x33\xb2\xcf\x9f\xa9\x1f\xa1\x5d\x0a\x91\xa4\xd5\x6f\xb5\xb9\xb6\x7a\x5b\xd7\x87\xa6\xeb\x94\x32\xd6\x52\x08\xb9\x71\xae\xc0\x98\x3c\x66\x33\xf9\xdc\x88\x98\x5b\x85\xbe\x8b\x32\xf9\xd3\x50\x54\xe8\xff\x72\xca\xf5\x1a\x70\x57\x00\x20\x14\x93\xf8\xef\x9a\xd2\x0a\x99\x48\x9a\x9d\x23\x1b\x59\x56\x1e\x72\xcf\x47\xda\xd7\xa1\xc2\xab\xa1\x50\x0f\xf5\x0c\x00\x00\xff\xff\x69\xfc\x1b\x8a\xc9\x00\x00\x00" func epochScriptsGet_create_clustersCdcBytes() ([]byte, error) { return bindataRead( @@ -1620,7 +1619,7 @@ func epochScriptsGet_create_clustersCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_create_clusters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf2, 0x75, 0x93, 0xb8, 0xe3, 0x7f, 0x0, 0xa8, 0xde, 0x72, 0xf9, 0xe2, 0x78, 0x90, 0x3, 0x6f, 0x78, 0xbb, 0x58, 0x61, 0x15, 0xa8, 0x2d, 0xbb, 0xd0, 0x60, 0x22, 0xe4, 0x25, 0x21, 0xfb, 0x80}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x43, 0x5b, 0x6, 0xc4, 0xd6, 0xe4, 0xb3, 0x2c, 0xf1, 0xfe, 0x96, 0x6d, 0x60, 0x48, 0xbc, 0xbf, 0xd0, 0x12, 0xa6, 0x12, 0xa0, 0x15, 0x51, 0x7b, 0x6e, 0x52, 0x46, 0xf3, 0xa1, 0x5a, 0x48, 0x46}} return a, nil } @@ -1644,7 +1643,7 @@ func epochScriptsGet_current_viewCdc() (*asset, error) { return a, nil } -var _epochScriptsGet_epoch_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\xf5\xcc\x2b\x31\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x18\xa5\x97\x5c\x5a\x54\x94\x9a\x57\x02\xe6\x38\xe7\x97\xe6\x95\xa4\x16\x71\xd5\x02\x02\x00\x00\xff\xff\x59\x5e\x04\x35\x71\x00\x00\x00" +var _epochScriptsGet_epoch_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\x3d\xf3\x4a\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\xe6\xe8\x25\x97\x16\x15\xa5\xe6\x95\x80\x39\xce\xf9\xa5\x79\x25\xa9\x45\x5c\xb5\x80\x00\x00\x00\xff\xff\xc6\x93\x6d\x15\x6e\x00\x00\x00" func epochScriptsGet_epoch_counterCdcBytes() ([]byte, error) { return bindataRead( @@ -1660,11 +1659,11 @@ func epochScriptsGet_epoch_counterCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_epoch_counter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc9, 0xd5, 0xfd, 0x2, 0x55, 0x15, 0x31, 0x3, 0xcb, 0x7e, 0x88, 0xf1, 0xce, 0x48, 0x45, 0xee, 0xca, 0x5b, 0xab, 0x94, 0xfc, 0xd5, 0x59, 0xec, 0x85, 0x7b, 0x74, 0xbf, 0x2d, 0x4a, 0xc4, 0xd8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x83, 0x42, 0x10, 0xa0, 0xad, 0xb7, 0x47, 0xa, 0x61, 0x20, 0xe3, 0xe2, 0xef, 0x4c, 0x70, 0xe6, 0x10, 0xef, 0x4d, 0x43, 0x5e, 0xcb, 0xa9, 0x60, 0x2d, 0x66, 0x4, 0xf2, 0xee, 0x88, 0xd2, 0x26}} return a, nil } -var _epochScriptsGet_epoch_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x05\xa9\x77\xce\x2f\xcd\x2b\x49\x2d\xb2\x52\x08\xf5\xcc\x2b\x31\x33\xd1\xb4\x42\x18\xa5\x07\x26\x7d\x53\x4b\x12\x53\x12\x4b\x12\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x90\x14\xa5\xa7\x96\xa0\xa8\x43\x31\x56\x53\x91\xab\x16\x10\x00\x00\xff\xff\x7f\x11\xb3\x7c\xa2\x00\x00\x00" +var _epochScriptsGet_epoch_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x52\x41\x92\xce\xf9\xa5\x79\x25\xa9\x45\x56\x0a\xa1\x9e\x79\x25\x66\x26\x9a\x56\x08\x73\xf4\xc0\xa4\x6f\x6a\x49\x62\x4a\x62\x49\xa2\x42\x35\x97\x82\x82\x82\x42\x51\x6a\x49\x69\x51\x1e\x92\xa2\xf4\xd4\x12\x14\x75\x28\xc6\x6a\x2a\x72\xd5\x02\x02\x00\x00\xff\xff\xc7\x41\x13\xa2\x9f\x00\x00\x00" func epochScriptsGet_epoch_metadataCdcBytes() ([]byte, error) { return bindataRead( @@ -1680,11 +1679,11 @@ func epochScriptsGet_epoch_metadataCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_epoch_metadata.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb1, 0x5e, 0xb9, 0xfa, 0xa9, 0xac, 0x39, 0x1, 0x5f, 0x6a, 0x16, 0xe8, 0xc4, 0x93, 0x4e, 0x82, 0x1a, 0x49, 0x3c, 0x14, 0xc5, 0xfe, 0xac, 0xbb, 0x70, 0x44, 0xf6, 0xc3, 0x49, 0x18, 0x89, 0xa5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xf7, 0x5b, 0xef, 0xc4, 0x5f, 0xa4, 0xcf, 0xc5, 0x9e, 0x16, 0x2e, 0xa9, 0x19, 0x76, 0x2b, 0x9f, 0x9, 0xdf, 0x16, 0x2c, 0xf3, 0x59, 0x48, 0x8c, 0x36, 0x26, 0xc, 0x9c, 0xd6, 0xb8, 0x12}} return a, nil } -var _epochScriptsGet_epoch_phaseCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\xf5\xcc\x2b\xb1\x50\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x98\xa4\x97\x5c\x5a\x54\x94\x9a\x57\x02\xe6\x04\x64\x24\x16\xa7\xea\x15\x25\x96\x87\x25\xe6\x94\xa6\x72\xd5\x02\x02\x00\x00\xff\xff\x47\xc3\xf6\x42\x77\x00\x00\x00" +var _epochScriptsGet_epoch_phaseCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xcc\xb1\x0a\xc2\x40\x0c\x06\xe0\xfd\x9e\xe2\xa7\x53\xbb\x74\x16\x77\x05\x37\x17\xdd\xc3\x91\xd2\x42\x2e\x29\xb9\x84\x0e\xe2\xbb\x0b\x0e\x3a\x7e\xcb\xb7\xb5\xdd\x3c\x70\x15\x3b\x2e\xbb\xd5\x15\x8b\x5b\xc3\xf0\xf3\x50\x0a\xd5\xca\xbd\x8f\x24\x32\x61\x49\x45\xa3\x4d\xc7\xe9\x8c\xc7\x4d\xe3\x84\x57\x01\x00\xe7\x48\xd7\x7f\x33\xd7\x74\x67\x8d\x2f\xee\x2b\x75\x9e\x9d\x8e\x27\x49\x72\x79\x7f\x02\x00\x00\xff\xff\xd2\xb5\x20\xc1\x74\x00\x00\x00" func epochScriptsGet_epoch_phaseCdcBytes() ([]byte, error) { return bindataRead( @@ -1700,11 +1699,11 @@ func epochScriptsGet_epoch_phaseCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_epoch_phase.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfb, 0x78, 0xa1, 0xb5, 0x83, 0x19, 0xc, 0xba, 0x63, 0xac, 0x58, 0x17, 0x11, 0x24, 0x41, 0x57, 0xa0, 0xd4, 0x2a, 0xc, 0x71, 0x62, 0x96, 0x5e, 0xe9, 0xa6, 0x18, 0xb4, 0xfd, 0x5f, 0x23, 0x11}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8e, 0xc2, 0x92, 0xc6, 0x5c, 0xd7, 0x19, 0x5d, 0xed, 0x1d, 0xe8, 0xfc, 0x5a, 0xfa, 0x53, 0x75, 0x8a, 0x15, 0x52, 0x13, 0xdf, 0x55, 0xae, 0x71, 0x7e, 0xcc, 0xc, 0x81, 0x95, 0xdc, 0xc7, 0xc5}} return a, nil } -var _epochScriptsGet_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x42\x68\xd3\x03\x93\x21\x99\xb9\x99\x79\xe9\xce\xf9\x79\x69\x99\xe9\x0a\xd5\x5c\x0a\x0a\x0a\x0a\x45\xa9\x25\xa5\x45\x79\x48\x0a\xd3\x53\x4b\x30\xd4\x6a\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x67\x19\xef\x12\x89\x00\x00\x00" +var _epochScriptsGet_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x10\x7a\xf4\xc0\x64\x48\x66\x6e\x66\x5e\xba\x73\x7e\x5e\x5a\x66\xba\x42\x35\x97\x82\x82\x82\x42\x51\x6a\x49\x69\x51\x1e\x92\xc2\xf4\xd4\x12\x0c\xb5\x1a\x9a\x5c\xb5\x80\x00\x00\x00\xff\xff\xd4\x6d\x92\x2d\x86\x00\x00\x00" func epochScriptsGet_epoch_timing_configCdcBytes() ([]byte, error) { return bindataRead( @@ -1720,11 +1719,11 @@ func epochScriptsGet_epoch_timing_configCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_epoch_timing_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe9, 0x6f, 0xa1, 0xa3, 0x69, 0xa0, 0x19, 0x38, 0xf6, 0x87, 0xe4, 0xc3, 0x4c, 0x63, 0x47, 0x64, 0xe, 0x15, 0x4f, 0x62, 0xbb, 0x5e, 0xa5, 0x7, 0x75, 0x3b, 0x4c, 0xe2, 0x67, 0xf5, 0x79, 0x35}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0x3f, 0xce, 0x1b, 0x5d, 0x2, 0xa1, 0xda, 0x74, 0x91, 0x1e, 0x7f, 0x30, 0x80, 0x4b, 0xa1, 0xc5, 0xbc, 0x78, 0x58, 0xe2, 0x85, 0xa3, 0x36, 0x62, 0x7a, 0x19, 0xcc, 0x30, 0xc4, 0x9e, 0x8c}} return a, nil } -var _epochScriptsGet_proposed_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\xf5\xcc\x2b\x31\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x18\xa5\x57\x50\x94\x5f\x90\x5f\x9c\x9a\x02\xe6\x39\xe7\x97\xe6\x95\xa4\x16\x69\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x55\xb5\xd8\x03\x74\x00\x00\x00" +var _epochScriptsGet_proposed_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\x3d\xf3\x4a\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\xe6\xe8\x15\x14\xe5\x17\xe4\x17\xa7\xa6\x80\x79\xce\xf9\xa5\x79\x25\xa9\x45\x1a\x9a\x5c\xb5\x80\x00\x00\x00\xff\xff\x47\x3a\xad\xbf\x71\x00\x00\x00" func epochScriptsGet_proposed_counterCdcBytes() ([]byte, error) { return bindataRead( @@ -1740,11 +1739,11 @@ func epochScriptsGet_proposed_counterCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_proposed_counter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x65, 0xa1, 0x50, 0xe6, 0x27, 0x2, 0x37, 0xc0, 0x59, 0x7f, 0xc6, 0xed, 0xc7, 0xee, 0x56, 0x4e, 0xea, 0x60, 0x8d, 0xac, 0xfb, 0xe9, 0xfe, 0x8a, 0x5c, 0x5e, 0x29, 0x8d, 0x40, 0x30, 0xa8, 0x67}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0xc4, 0xf8, 0x7c, 0xf, 0x29, 0xc7, 0x76, 0xb4, 0x12, 0x90, 0xa3, 0x44, 0x2d, 0x55, 0x7e, 0x6f, 0x2e, 0x42, 0xac, 0x6e, 0x97, 0xb6, 0x9d, 0xf3, 0x7f, 0x88, 0xf4, 0x20, 0x92, 0xed, 0x42}} return a, nil } -var _epochScriptsGet_randomizeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x2c\x2a\x4a\xac\xb4\x52\x88\x0e\x2e\x29\xca\xcc\x4b\x8f\xd5\x44\x30\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\x66\xeb\x15\x25\xe6\xa5\xe4\xe7\x66\x56\xa5\x42\xf4\x6a\x72\xd5\x72\x01\x02\x00\x00\xff\xff\x1e\x03\x7b\x82\x80\x00\x00\x00" +var _epochScriptsGet_randomizeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x12\x8b\x8a\x12\x2b\xad\x14\xa2\x83\x4b\x8a\x32\xf3\xd2\x63\x35\x11\x4c\x85\x6a\x2e\x05\x05\x05\x85\xa2\xd4\x92\xd2\xa2\x3c\x84\xc1\x7a\x45\x89\x79\x29\xf9\xb9\x99\x55\xa9\x10\xbd\x9a\x5c\xb5\x5c\x80\x00\x00\x00\xff\xff\x71\xcc\x71\x38\x7d\x00\x00\x00" func epochScriptsGet_randomizeCdcBytes() ([]byte, error) { return bindataRead( @@ -1760,11 +1759,11 @@ func epochScriptsGet_randomizeCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_randomize.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0x24, 0x39, 0xc1, 0x29, 0x52, 0x9c, 0x5a, 0x9e, 0x90, 0x88, 0x2b, 0x91, 0x68, 0xc8, 0xf, 0xe1, 0xdf, 0x2f, 0xf, 0x8b, 0x8, 0xf2, 0x36, 0xdd, 0x11, 0x22, 0xd2, 0x46, 0xdc, 0x87, 0x8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0x12, 0xd9, 0x65, 0x36, 0xf, 0xe4, 0x3b, 0x80, 0x3b, 0xdd, 0x29, 0x6b, 0xfd, 0x50, 0x6a, 0x2e, 0xa5, 0xa1, 0x70, 0x41, 0xc2, 0x79, 0xec, 0xfb, 0x14, 0x51, 0xc, 0xe8, 0xb8, 0xcb, 0xb4}} return a, nil } -var _epochScriptsGet_target_end_time_for_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xcf\xcf\x8a\xc2\x30\x10\x06\xf0\x7b\x9e\x62\x8e\xcd\x65\xd9\xc3\xb2\x87\x85\x15\xa4\x7f\xd0\x93\x62\xeb\x03\x84\x38\xad\x81\x64\x52\xa6\x09\x0a\xd2\x77\x97\xa6\x2d\x36\x87\x30\x90\xef\x97\x8f\x31\xae\xf7\x1c\xa0\xb2\xfe\x51\xf6\x5e\xdf\xa1\x65\xef\xe0\xfb\x59\x9e\x4f\xf9\x61\x5f\x14\x97\xb2\xae\x85\x50\x5a\xe3\x30\x64\xca\x5a\x09\x6d\x24\x70\xca\x50\x16\x14\x77\x18\x92\xfa\x83\xeb\x91\xc2\xef\x8f\x5c\x07\x78\x09\x00\x80\x9e\x71\x99\xa6\xb3\x01\xb0\xfb\xff\x74\x7e\xe9\xc8\x8c\x34\xbf\xe4\x3e\x52\x40\x4e\x68\x4c\xb7\xc5\x00\xda\x53\x6b\x3a\xd8\xa2\xf5\xab\xc6\x38\x43\x5d\x9e\x02\x99\x4c\x82\x31\x44\xa6\x05\x4d\xc1\x66\x6e\xa6\x5b\x63\x1c\x56\x9e\x13\xdc\x2e\x20\xc5\xf8\x0e\x00\x00\xff\xff\xbd\x1a\x61\x75\x0a\x01\x00\x00" +var _epochScriptsGet_target_end_time_for_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8f\x31\x8b\xc3\x30\x0c\x85\x77\xff\x8a\x47\xa6\x78\xb9\xe9\xb8\xe1\xa0\x5d\x42\x03\xdd\xd3\x1f\x60\x5c\x25\x35\xd8\x72\x50\x6c\x3a\x94\xfc\xf7\x12\x27\x69\xa3\x41\x3c\xa1\xf7\xe9\x21\x17\xc6\x28\x09\xad\x8f\xcf\xcb\x18\xed\x03\xbd\xc4\x80\xea\x33\x57\x4a\x19\x6b\x69\x9a\x6a\xe3\xbd\x46\x9f\x19\xc1\x38\xae\x93\x91\x81\x52\xb1\xfc\xe3\x76\xe5\xf4\xf7\xab\x77\x81\x97\x02\x80\x51\x68\x53\x4b\x1d\x00\x9c\x4f\xdf\xc0\x1f\x9b\x45\x88\xd7\x4d\x13\x33\x27\x92\x02\xcd\xa5\x7b\x4a\xb0\x91\x7b\x37\xe0\x08\xed\xa7\x3a\x17\x1c\x0f\x4d\x31\xd4\xba\x10\x42\x29\x0b\x6f\xd0\x62\xec\xd6\x64\xbe\x77\x2e\x50\x1b\xa5\x80\xc7\x07\xb4\x9a\xdf\x01\x00\x00\xff\xff\x48\xb4\xb0\xb3\x07\x01\x00\x00" func epochScriptsGet_target_end_time_for_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1780,7 +1779,7 @@ func epochScriptsGet_target_end_time_for_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_target_end_time_for_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb1, 0x91, 0x98, 0xde, 0xc1, 0xe8, 0xa1, 0x2c, 0xf, 0x6c, 0x74, 0x45, 0x1e, 0xa1, 0x93, 0x8e, 0xd8, 0x79, 0x4c, 0xee, 0x6c, 0xed, 0x14, 0xe3, 0x42, 0x3, 0x7d, 0xec, 0x57, 0xad, 0x88, 0x94}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x2c, 0x9a, 0x3f, 0xf9, 0x63, 0x6b, 0x6, 0x62, 0x77, 0x4b, 0xf8, 0x7c, 0xfa, 0xc0, 0x87, 0x40, 0xcb, 0x6c, 0x11, 0x6, 0x75, 0xc3, 0x10, 0x56, 0xdc, 0xf7, 0x79, 0x9, 0xa4, 0x6f, 0xd4}} return a, nil } @@ -1804,7 +1803,7 @@ func flowtokenBurn_tokensCdc() (*asset, error) { return a, nil } -var _flowtokenCreate_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\x4d\x6f\xe3\x36\x10\xbd\xf3\x57\x4c\xf7\xb0\xb5\x03\x47\xee\xe7\xc5\xc8\x16\x48\x93\xa6\xd8\xcb\x16\x48\x82\xed\xb1\x3b\x26\x47\x26\xbb\x12\x29\x90\x23\xab\x46\x90\xff\x5e\x90\x94\x68\x29\x40\x72\x5a\x9d\x44\xcd\xcc\x9b\xf7\xde\x0c\xb5\xbd\xb8\x10\xe2\x51\x9b\x00\xec\xd1\x06\x94\x6c\x9c\x05\x13\x00\x81\xa9\xed\x1a\x64\x82\xda\xf9\x78\x9c\xc5\x59\x23\x83\x74\x7d\xa3\x60\x4f\xd0\x07\x52\x82\x1d\x04\x62\xe8\x3b\x40\x0b\x28\xa5\xeb\x2d\x03\xbb\x58\x3c\xa0\x57\xa0\xa8\x73\xc1\x30\x29\x60\xf7\x95\x6c\x88\x31\xb4\x8e\x35\x79\xf0\x24\xc9\x1c\xc9\x57\x42\x7c\xac\x01\xed\xc9\x59\x82\x40\x56\x85\x79\x72\xec\xe3\xbf\x0f\x70\x97\x11\xc9\xc3\xfd\x58\xb7\x11\xac\xa9\x9c\x60\x30\x4d\x03\xff\xf6\x81\x4b\x73\xd6\x2e\xd0\x0c\x2b\xa6\x7f\xc6\xbe\xe1\xac\x44\x63\x80\x3d\x91\x15\x51\x01\x86\x14\xf6\x24\x4d\x67\xc8\x32\xa0\x55\x40\xad\x89\x2f\x40\xc7\xf8\x25\x15\x19\xab\x8c\x44\xa6\x20\x06\x6d\xa4\x4e\xec\xa6\x86\x51\xa5\x9e\x1a\x56\xa3\xc1\x03\x9e\x36\x60\xa2\x3e\x70\x75\x7d\x29\x35\x1a\x0b\x81\xfc\xd1\x48\x82\x01\x2d\x27\x6a\xad\xb3\x86\x9d\x87\x41\xbb\x38\x86\x11\xd0\xd8\x83\x38\xd3\x37\xbc\x01\xc3\x20\xd1\xc2\x80\x2c\x75\xa6\x95\x42\x81\x08\x06\x4d\x9e\x66\x04\x40\x62\x4b\x50\x7b\xd7\x56\x42\x3c\x30\x75\x63\x66\x9e\x56\x1e\x55\x80\xc1\xb0\xce\x05\x45\x85\xdf\x09\xf1\x63\x05\x8f\x9a\xe0\xae\xb7\x07\xb3\x6f\x08\x1e\x53\x86\x74\x96\x3d\xca\xe8\x02\x93\xaf\x51\x12\x04\x9d\xf6\x01\x1b\x4f\xa8\x4e\x71\x2f\x14\x75\x8d\x3b\x91\x82\xe0\x5a\x4a\xa4\xc4\x4f\x19\x0d\xbb\xae\x31\x12\x23\x1e\x2f\xf1\x46\x94\x59\x75\x25\x7e\xce\x45\xb3\x89\x8c\xeb\x35\x26\x6b\x3c\x12\xe0\x38\xd0\xb8\xac\x9c\xf6\x39\x03\x7b\x42\x26\x25\x00\x20\x0d\x32\xb0\xf3\xa4\xc0\x58\x30\x1c\xd2\x09\x0f\x94\xb5\x23\x74\xfd\xbe\x31\x41\x93\x2a\xbb\x24\x7e\xa9\xe0\x36\x11\x49\x7e\x7e\x49\xea\xef\xca\x4c\x2a\xa9\xe4\x97\x33\xf9\xb4\xa5\xca\xd4\x35\xf9\x19\x4d\xf1\x6b\x15\x77\x16\x10\x2c\x0d\x70\x9d\x3f\xee\xe0\x26\x31\x4b\xb0\x93\x1e\xeb\x7c\x8b\x4d\x73\xda\x24\xba\xac\xc9\x82\xef\x6d\xee\x9c\x85\xfc\x53\x46\x93\x5b\xcf\x2e\x65\x2e\x3a\x10\xb3\xb1\x07\x58\x5c\x88\x38\xfa\x45\xa3\xbc\xc0\x2f\x16\xbd\x12\x17\x5b\x21\x4c\xdb\x39\xcf\x65\xde\x79\xdc\x09\xe0\xdd\xe2\xdb\xbb\x92\xd9\xb8\x61\x91\x35\x9d\x4b\xc6\x0b\xd3\x72\xde\x0f\xff\xdd\xfd\x75\xff\xf7\xf5\xfd\xed\xc7\x4f\x7f\x5e\xdf\xde\xde\xff\xf1\xf0\x20\xc4\x4c\xce\x6a\xfa\x29\xec\xe0\x5a\x29\x4f\x21\xac\xe1\x49\x24\x8d\x9d\xa7\x0e\x3d\xad\x50\x4a\xde\x01\xf6\xac\x57\xbf\x3b\xef\xdd\xf0\x19\x9b\x9e\x36\x70\x83\x1d\xee\x4d\x63\xd8\x50\x58\xc3\xfb\xd1\xf1\x58\x0e\xe3\xd3\x10\xcf\xd6\xe9\x43\x74\x6d\xcc\x2a\x6d\xd7\x25\x39\x3e\x95\x9c\x61\x56\x07\xe2\xab\xf7\x4f\x0b\x3b\xaa\xc9\xec\xe7\xdf\x56\xdb\xb4\x47\x72\x5b\x4f\x4e\x4c\xb1\xf5\x77\x62\x41\xe1\x98\x36\xf6\xea\xf2\xa5\x43\x55\x1e\xf6\x27\x1a\xca\xbf\x6e\x55\xe8\xee\xce\xcc\xcf\x1c\xa3\x15\xd5\xb8\xcd\x55\xc0\x23\xad\xae\x2e\x13\xfa\x06\xd8\xed\x60\x3b\x86\xce\x94\x0a\xf0\xfa\x4c\xc9\xd4\x89\x95\xc4\x0e\x3e\x64\xc4\x6f\xa3\x7a\x66\xfc\xd8\x46\x62\x57\x49\x4d\xf2\xeb\xea\x65\xb0\x88\x59\xb4\xee\xed\x78\x35\xdf\xe8\xb2\x80\x79\x16\xe7\xb7\x85\xe5\xe5\xfe\xdc\xbc\xa2\x72\x32\xd1\x84\xd0\xd3\x9b\x7a\xdf\xf2\xf4\x75\x29\xa3\x90\xb7\x90\x17\x4a\xe6\x84\x37\x8b\x08\xf2\x0e\x5e\xb5\xa3\x64\x66\x2e\xcf\xe2\x59\xfc\x1f\x00\x00\xff\xff\xd3\x00\x07\x52\xeb\x07\x00\x00" +var _flowtokenCreate_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\x4d\x6f\xe3\x36\x10\xbd\xf3\x57\x4c\x73\xd8\xda\x81\x23\xa3\x5f\x17\x23\x5b\x60\x9b\x22\x40\x2f\x3d\xb4\xc1\x5e\xbb\x63\x72\x64\xb2\x2b\x91\x02\x39\xb2\x60\x2c\xf2\xdf\x0b\x7e\x88\x96\x0c\x24\xa7\xfa\x64\x72\x66\xde\xbc\xf7\x66\xa8\xfd\xfd\xbd\x10\x2f\xda\x04\x60\x8f\x36\xa0\x64\xe3\x2c\x98\x00\x08\x4c\xfd\xd0\x21\x13\xb4\xce\xc7\xe3\x22\xce\x1a\x19\xa4\x1b\x3b\x05\x47\x82\x31\x90\x12\xec\x20\x10\xc3\x38\x00\x5a\x40\x29\xdd\x68\x19\xd8\xc5\xe2\x09\xbd\x02\x45\x83\x0b\x86\x49\x01\xbb\xaf\x64\x43\x8c\xa1\x75\xac\xc9\x83\x27\x49\xe6\x4c\xbe\x11\xe2\x8f\x16\xd0\x5e\x9c\x25\x08\x64\x55\x58\x26\xc7\x3e\xfe\xfb\x00\xcf\x19\x91\x3c\xfc\x55\xea\x76\x82\x35\xd5\x13\x4c\xa6\xeb\xe0\xdf\x31\x70\x6d\xce\xda\x05\x5a\x60\xc5\xf4\xcf\x38\x76\x9c\x95\x68\x0c\x70\x24\xb2\x22\x2a\xc0\x90\xc2\x9e\xa4\x19\x0c\x59\x06\xb4\x0a\xa8\x37\xf1\x0f\xd0\x39\xde\xa4\x22\x63\x95\x91\xc8\x14\xc4\xa4\x8d\xd4\x89\xdd\xdc\x30\xaa\xd4\x73\xc3\xa6\x18\x3c\xe1\x65\x07\x26\xea\x03\xd7\xb6\x0f\x52\xa3\xb1\x10\xc8\x9f\x8d\x24\x98\xd0\x72\xa2\xd6\x3b\x6b\xd8\x79\x98\xb4\x8b\x63\x28\x80\xc6\x9e\xc4\x95\xbe\xe1\x1d\x18\x06\x89\x16\x26\x64\xa9\x33\xad\x14\x0a\x44\x30\x69\xf2\xb4\x20\x00\x12\x7b\x82\xd6\xbb\xbe\x11\xe2\x6f\xa6\xa1\x64\xe6\x69\xe5\x51\x05\x98\x0c\xeb\x5c\x50\x55\xf8\x83\x10\x3f\x34\xf0\xa2\x09\x9e\x47\x7b\x32\xc7\x8e\xe0\x25\x65\x48\x67\xd9\xa3\x8c\x2e\x30\xf9\x16\x25\x41\xd0\x69\x1f\xb0\xf3\x84\xea\x12\xf7\x42\xd1\xd0\xb9\x0b\x29\x08\xae\xa7\x44\x4a\xfc\x98\xd1\x70\x18\x3a\x23\x31\xe2\xf1\x1a\xaf\xa0\x2c\xaa\x1b\xf1\x53\x2e\x5a\x4c\xa4\xac\x57\x49\xd6\x78\x26\xc0\x32\xd0\xb8\xac\x9c\xf6\x39\x03\x7b\x42\x26\x25\x00\x20\x0d\x32\xb0\xf3\xa4\xc0\x58\x30\x1c\xd2\x09\x4f\x94\xb5\x23\x0c\xe3\xb1\x33\x41\x93\xaa\xbb\x24\x7e\x6e\xe0\xf7\x44\x24\xf9\xf9\x25\xa9\x7f\xae\x33\x69\xa4\x92\x5f\xae\xe4\xd3\x96\x2a\xd3\xb6\xe4\x17\x34\xc5\x2f\x4d\xdc\x59\x40\xb0\x34\xc1\xa7\x7c\x79\x80\xa7\xc4\x2c\xc1\xce\x7a\xac\xf3\x3d\x76\xdd\x65\x97\xe8\xb2\x26\x0b\x7e\xb4\xb9\x73\x16\xf2\x4f\x1d\x4d\x6e\xbd\x78\x94\xb9\xe8\x44\xcc\xc6\x9e\x60\xf5\x20\xe2\xe8\x57\x8d\xf2\x02\xdf\x2c\x7a\x23\xee\xf7\x42\x98\x7e\x70\x9e\xeb\xbc\xf3\xb8\x13\xc0\xdd\xea\xee\xae\x66\x76\x6e\x5a\x65\xcd\xe7\x9a\x71\x63\x5a\xc9\xbb\xb9\xbd\x13\x62\x21\x66\x33\x7f\x12\x0e\xf0\x49\x29\x4f\x21\x6c\xe1\x9b\x48\x0a\x07\x4f\x03\x7a\xda\xa0\x94\x7c\x00\x1c\x59\x6f\x7e\x73\xde\xbb\xe9\x33\x76\x23\xed\xe0\x09\x07\x3c\x9a\xce\xb0\xa1\xb0\x85\x0f\xc5\xef\x58\x0e\xe5\xd7\x11\x2f\x96\xe9\x63\xf4\xac\x64\xd5\xb6\xdb\x9a\x1c\x7f\x8d\x5c\x60\x36\x27\xe2\xc7\x0f\xdf\x56\x66\x34\xb3\xd5\xaf\xbf\x6e\xf6\x69\x8b\xe4\xbe\x9d\x7d\x98\x63\xdb\xef\xc4\x8a\xc2\x39\xed\xeb\xe3\xc3\xad\x3f\x4d\x1e\xf5\x9f\x34\xd5\x2f\xdd\xa6\xd2\x3d\x5c\x99\x5f\x39\x46\x2b\x9a\xb2\xcb\x4d\xc0\x33\x6d\x1e\x1f\x12\xfa\x0e\xd8\x1d\x60\x5f\x42\x57\x4a\x15\x78\x7b\xa5\x64\xda\xc4\x4a\xe2\x00\x1f\x33\xe2\xff\xa3\x7a\x61\x7c\x69\x23\x71\x68\xa4\x26\xf9\x75\x73\x1b\xac\x62\x56\xad\x47\x5b\x1e\xe6\x3b\x5d\x56\x30\xaf\xe2\xfa\x6f\x65\x79\x7d\x3d\x4f\x6f\xa8\x9c\x4d\x34\x21\x8c\xf4\xae\xde\xf7\x3c\x7d\x5b\x4a\x11\xf2\x1e\xf2\x4a\xc9\x92\xf0\x6e\x15\x41\x3e\xc0\x9b\x76\xd4\xcc\xcc\xe5\x55\xbc\x8a\xff\x02\x00\x00\xff\xff\x9f\xd7\x66\x7a\xe9\x07\x00\x00" func flowtokenCreate_forwarderCdcBytes() ([]byte, error) { return bindataRead( @@ -1820,7 +1819,7 @@ func flowtokenCreate_forwarderCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/create_forwarder.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x2d, 0xc9, 0x6c, 0x1d, 0x48, 0x2c, 0x76, 0xf6, 0xe3, 0xf9, 0x4e, 0xbd, 0xf, 0xb, 0x5f, 0x88, 0x18, 0x20, 0xb2, 0x46, 0x85, 0xd9, 0x3, 0xae, 0xc8, 0xc, 0xc5, 0xb, 0x20, 0xfd, 0x2c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x52, 0xf4, 0x68, 0x6a, 0x7f, 0xc6, 0x10, 0x5d, 0xeb, 0x73, 0x26, 0xb1, 0xf5, 0xf9, 0xea, 0x93, 0x64, 0xae, 0xa6, 0x4, 0x9d, 0x63, 0xa4, 0xdc, 0xfa, 0x8f, 0xa1, 0x28, 0x46, 0xf4, 0x43, 0x5a}} return a, nil } @@ -2424,7 +2423,7 @@ func idtablestakingAdminTransfer_adminCdc() (*asset, error) { return a, nil } -var _idtablestakingAdminTransfer_fees_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x41\x6b\x02\x31\x10\x46\xef\xf9\x15\x5f\x2f\xed\x0a\xea\xf6\x2c\x52\x2a\xe8\x9e\x84\x42\x17\xda\xf3\x74\x1d\x35\x18\x33\x21\x19\xd7\x96\xe2\x7f\x2f\x9b\xba\x0b\x16\x9a\x63\x78\xf3\xf1\x9e\x3d\x06\x89\x8a\xca\xc9\xb9\x62\x4e\xd8\x46\x39\xe2\xf1\xb3\x5a\xbf\xbc\x57\xab\x55\xbd\x58\x2e\x5f\x57\x75\x6d\x8c\x46\xf2\x89\x1a\xb5\xe2\xf1\x6d\x0c\x00\x84\xc8\x81\x22\x17\x72\xf6\x1c\x67\xa0\x93\xee\x8b\xb5\xd0\xe6\x8d\xdc\x89\x47\xb8\x5f\x34\x8d\x9c\xbc\x8e\x11\xb9\x61\xdb\x0e\x4c\x4d\x2d\xff\x61\x46\xfd\x66\xf7\xca\x12\x6b\xeb\x0f\xd0\x3d\x23\x29\x1d\xac\xdf\x81\x36\x47\xeb\xd1\x50\xa0\x0f\xeb\xac\x7e\x41\x05\x84\x10\x6d\x4b\xca\x08\x8e\x1a\x1e\xee\x1d\x2b\xb6\xcc\x69\x91\x6f\xe6\x13\x64\xc1\x69\x52\x89\xb4\xe3\xa9\x13\xda\xcc\x9f\xfb\xe0\x69\xa6\x6c\xd2\x48\x2a\xf1\xa9\xe8\xfa\x67\x28\xaf\x70\xb9\xbd\x62\x99\x1a\xdd\xdd\x48\x76\x1d\x59\xf2\x56\xab\xfb\xe9\x8b\x1f\x12\xe8\xb7\x10\xd7\xc5\x61\xa0\x47\x06\xaf\x44\x2d\x17\xf3\xc9\x60\x3e\x86\xca\xbf\x26\x79\xe6\x62\xcc\xc5\xc0\xfc\x04\x00\x00\xff\xff\x85\xb4\xed\xdf\xc3\x01\x00\x00" +var _idtablestakingAdminTransfer_fees_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x31\x6b\xc3\x30\x10\x46\x77\xfd\x8a\xaf\x19\x5a\x07\x92\x78\x0f\xa1\x34\x4b\xa6\x6c\x85\xee\x57\xe5\x9c\x88\xc8\x3a\x21\x9d\x1d\x4a\xc9\x7f\x2f\x56\x6d\x43\x0a\xf5\x66\xf1\xee\xe3\x3d\xd7\x46\x49\x8a\x83\x97\xdb\x81\x39\xa3\x49\xd2\x62\x31\xfd\x2e\x8c\xd1\x44\x21\x93\x55\x27\x01\xdf\xc6\x00\x40\x4c\x1c\x29\x71\x25\xb7\xc0\x69\x0b\xea\xf4\x52\x1d\x85\x4e\x1f\xe4\x3b\x5e\xe2\x79\x6f\xad\x74\x41\x57\x48\x6c\xd9\xf5\x33\xf3\x4e\x3d\xff\x61\x96\xd3\xe6\xf0\xd5\x35\x8e\x2e\x5c\xa1\x17\x46\x56\xba\xba\x70\x06\x9d\x5a\x17\x60\x29\xd2\xa7\xf3\x4e\xbf\xa0\x02\x42\x4c\xae\x27\x65\x44\x4f\x96\xe7\x7b\xcf\x8a\x86\x39\xef\xcb\xcd\x6e\x8d\x22\xb8\xc9\x2a\x89\xce\xbc\xf1\x42\xa7\xdd\xdb\x94\xb6\x29\x94\xcb\x9a\x48\x25\xbd\x56\x43\xf8\x16\xf5\x08\xd7\xcd\x88\x15\x6a\xf9\xf4\x20\x39\x74\x14\xc9\x47\xad\xe1\x65\x2a\x7e\xc9\xa0\xdf\x42\x8c\x8b\xf3\xc0\x84\xcc\x5e\x99\x7a\xae\x76\xeb\xd9\x7c\x05\x95\x7f\x4d\xca\xcc\xdd\x98\xbb\x81\xf9\x09\x00\x00\xff\xff\x99\xa2\xe7\xfc\xbc\x01\x00\x00" func idtablestakingAdminTransfer_fees_adminCdcBytes() ([]byte, error) { return bindataRead( @@ -2440,7 +2439,7 @@ func idtablestakingAdminTransfer_fees_adminCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/transfer_fees_admin.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0xc, 0x75, 0x15, 0xac, 0x9f, 0x96, 0x91, 0xb5, 0xed, 0x71, 0x26, 0x7b, 0x7d, 0x35, 0xf6, 0xb8, 0x89, 0xc4, 0x81, 0x46, 0x1f, 0xdd, 0x6f, 0xc6, 0xbb, 0xe3, 0xd9, 0x5, 0x45, 0xd, 0xe8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xc1, 0xdf, 0xbd, 0x8e, 0xdc, 0xe3, 0xd0, 0x75, 0x45, 0x73, 0x94, 0x3, 0xfc, 0x88, 0x86, 0xe4, 0xe3, 0x76, 0x0, 0x2f, 0x71, 0xde, 0x33, 0x80, 0x84, 0xa8, 0xfe, 0xdd, 0xbc, 0xa6, 0x4d}} return a, nil } @@ -3744,27 +3743,7 @@ func idtablestakingScriptsGet_weekly_payoutCdc() (*asset, error) { return a, nil } -var _inspect_fieldCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xc1\x09\x42\x31\x0c\x00\xd0\x7b\xa6\xc8\xf1\xff\x8b\x14\xd1\xef\xc7\x9b\x97\x2e\x20\x0e\x10\x63\x0a\x85\x36\x95\x34\xd5\x0f\xe2\xee\x2e\xe0\x02\x2f\xd7\x67\x33\xc7\x58\xda\xfb\x2a\xf6\xca\x2c\x17\xe6\x36\xd4\x31\x59\xab\x18\xb6\xb4\x3e\x16\x09\xc7\x75\xb9\x07\xda\x07\x3e\x01\x10\xb3\xf4\x3e\x51\x29\x33\xa4\xa1\x58\x29\xeb\x34\x9f\xf1\x16\xf3\xb6\x1c\xf0\x03\x88\x88\x26\x3e\x4c\xff\xb8\x3b\x37\xd2\x4e\xec\xb9\x69\x14\x81\x2f\xfc\x02\x00\x00\xff\xff\xf4\x3f\xc0\x1b\x83\x00\x00\x00" - -func inspect_fieldCdcBytes() ([]byte, error) { - return bindataRead( - _inspect_fieldCdc, - "inspect_field.cdc", - ) -} - -func inspect_fieldCdc() (*asset, error) { - bytes, err := inspect_fieldCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "inspect_field.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x77, 0xaa, 0x73, 0x29, 0xcb, 0x8, 0xbe, 0x22, 0x6c, 0x13, 0x10, 0x96, 0x6, 0xdb, 0x69, 0xf7, 0x2, 0x5b, 0xb1, 0x15, 0xd, 0x9c, 0x88, 0xa8, 0xdc, 0x41, 0xc3, 0x27, 0x76, 0x62, 0x32}} - return a, nil -} - -var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x39\x04\x32\xe0\x48\xde\x63\x8d\x24\x0b\xd7\xc9\xa2\x45\xd2\x66\xb1\x49\x77\xcf\x13\x69\x6c\x11\xa6\x49\x95\xa4\xec\x1a\x8b\xbc\x7b\x41\x51\x7f\x94\x25\x67\xdd\xae\x0e\x81\x45\xcd\xef\x37\x33\x1f\x27\x6c\x9b\x4b\x65\x60\xa9\x0e\xb9\x91\x41\xf5\xf6\x89\xcb\xfd\x8b\xdc\x90\x80\x95\x92\x5b\xb8\x68\xde\x2f\x1a\x89\x42\xac\xd9\x2b\x27\x4f\xaa\x7b\xd6\x48\x3e\xca\x64\x43\x69\x79\xa6\x9d\xe0\xec\x9f\xc7\xa7\xe5\xc3\xfd\xdd\xcb\xd3\xc3\xfd\x9f\x8b\xbb\xbb\x2f\xf7\xcf\xcf\x41\x10\xc7\x31\xbc\x28\x14\x1a\x13\xc3\xa4\x00\x93\xa1\x01\x93\x11\x6c\x91\x09\x30\xa5\x1f\x4c\xb7\x4c\xc0\x5e\x16\x3c\x05\xcd\xd6\xa2\x54\x32\x12\x12\x45\x68\x08\x10\x74\x86\x8a\x52\xc0\x24\x91\x85\x30\x80\x22\x05\x14\x50\x08\x5e\x06\x51\x8a\xa3\xfb\xb4\x92\x0a\x10\x0a\x4d\x2a\x08\x4c\xeb\x36\x0c\x00\x00\x72\x54\x86\x21\x5f\x58\x77\x9f\x8b\x57\xce\x92\x07\x3a\xcc\x2b\x90\xa2\x07\x3a\x3c\x32\x6d\xee\x85\x51\x87\x29\xc4\x31\x7c\x23\xb6\xce\xcc\x1c\x3e\xcc\x66\x5d\xf5\xbf\x34\xa9\x33\xb4\x7f\xa9\xb4\x57\x05\x3f\x57\xf5\xc3\x6c\x36\x0b\x26\x00\xdf\x03\xe7\x5f\x51\x8e\x8a\xc2\x12\xae\x39\x60\x61\xb2\xf0\x57\xa9\x94\xdc\x7f\x45\x5e\xd0\x04\x2e\x17\x0e\xa0\x49\xad\x61\x9f\x38\x86\xa5\xc3\xd1\xa2\x2e\x68\x5f\xc3\xa8\x1d\x8e\x69\x6a\x3f\x30\x05\x1b\x3a\xe8\x46\x8b\x93\xa9\x50\xaf\x6c\xc2\x0d\x54\xbf\xc2\x1c\x0f\xa4\xe6\xae\x6a\x13\x4f\xc3\xe2\xfe\x9e\x7c\xa3\xe0\x99\x8f\xac\xf7\x08\xd3\x34\xcc\x5b\x7c\x06\xeb\x15\x35\x02\x53\xc8\x50\x67\x0b\xbe\x96\x8a\x99\x6c\x3b\x26\xef\x09\x4d\x61\x5f\x81\x3b\x2c\xec\xbe\x4e\xce\x0f\xd2\x2b\xed\xfb\x31\xfa\xe2\xa7\x43\xf4\x65\xeb\x08\x9b\x10\x3b\xa0\x0f\x06\x78\xd4\x78\x27\xa2\x3b\x96\x1d\x09\xed\x58\xf0\x28\xae\xb6\xf1\x10\x72\xc5\x76\xf6\x17\x67\x62\x63\x27\xdb\xb6\xa2\x36\xd2\x0e\xf5\x0e\x0b\x6e\xbc\x2e\x2a\x4f\x96\x98\xe3\x2b\xe3\xcc\x1c\xe0\xa6\x57\x85\xa4\xfe\xc4\x48\x47\xd6\x0a\xae\x29\x62\x5a\x17\xd4\x98\xb1\xcf\x75\x39\x20\x1e\x7b\x45\xdf\x98\xc9\x52\x85\xfb\x09\x5c\x36\xe4\x17\x7d\xb5\xfe\x6e\x3d\xdd\x30\xae\xec\xc6\xab\x5a\xac\x94\xf2\xd3\x6b\xf8\xc9\xf1\x50\xc5\x66\x5b\x14\xb8\x26\x55\x4e\x57\x95\x23\x33\x60\xc9\xce\x26\xed\x31\x99\x97\x36\x6f\x19\xf5\x8f\xca\xc4\xf5\x95\xc7\xb3\x91\x73\xf8\x78\x24\x18\x96\x90\xcd\xfb\xc8\x8d\xb5\x71\x8d\x99\xc6\x1d\x85\xd7\x57\xc7\x8e\xa7\x60\xe4\xdc\x77\x7d\xec\xf4\xd9\x59\xf9\x8c\x26\xeb\xc0\x62\x33\x31\x1d\xa9\xf1\x3a\x7a\x80\x9f\x28\xea\x3b\x75\x7c\x27\xca\xdb\xd0\xf3\x63\x9f\xff\x97\xd7\x6f\x92\xa7\xa3\xa5\x79\x69\x25\x7c\xbf\x0e\xe3\x45\x9a\x2a\xd2\x7a\xde\xab\x07\xba\xe3\xa9\xa7\xd1\x05\x71\x3e\x02\x69\xa3\x30\x42\x07\x5e\xa1\xfd\xe1\xb8\xea\x24\xd3\x77\xdc\x2b\x7d\x27\xa9\x0e\x36\x43\xbe\x2d\x48\x4c\xac\xe4\x12\x73\xb8\xf1\x22\x39\x51\xde\xcb\x31\x67\xbd\xd2\x9d\x17\xd3\x10\x1c\x5e\x10\x25\x09\xea\x2c\xac\xe2\x9d\x02\x9a\xc1\x96\xaf\x94\x7f\x17\x2b\xe9\xc8\x6e\xac\x31\xca\x9b\x64\x29\x39\x27\xb7\xe9\xdc\xb8\x1b\xaf\xce\xd6\x6f\xf7\xd7\xf2\xde\x1e\xca\xbd\x67\x66\xa0\x7f\xed\xb6\x35\x3e\x9d\x3d\xfd\x21\x74\x7c\x84\xec\xf3\xf1\x23\xe4\x28\x58\x12\x5e\x2c\xcb\x2d\x4c\x48\x03\x2e\x44\x50\xb4\x22\x45\x22\x21\xcb\xdb\x6e\x53\x4b\x1a\xeb\x17\x1d\x20\x86\x40\xb0\xad\x5d\xaf\x01\x9e\x43\x6f\x00\xce\x19\x8b\x7a\xe9\xeb\xab\x76\xeb\x3c\x3e\x4f\x0b\xb7\x3a\xfd\xf8\x34\xc5\x31\x3c\xed\x48\x29\x96\xba\xfd\x29\xa5\x95\xe5\xd8\xce\x2a\xad\x28\x21\xb6\x23\x35\xc2\xb5\x5e\xcf\x15\xa2\xee\xba\xd8\xdd\xc1\xed\xf5\xf2\xa5\x32\x33\x78\xc3\xd8\xad\xad\xf6\xe3\x36\xe8\x2d\xaa\x8d\xae\xcf\xaa\x9b\x47\x03\xea\x76\x29\xee\xf6\x67\x87\xe1\x75\x9b\xf6\x19\x17\xeb\xf5\xe5\x77\x9f\x80\xeb\x70\xdf\x6e\xc3\x73\xe8\xf4\x07\x30\xaa\x11\x1a\xa0\xcf\x7e\x02\x7e\x81\xed\xfc\x8e\xc2\x3a\x52\xdb\xbc\x30\x20\xa4\xda\x22\x6f\xf1\x65\xc2\xfe\xc7\x61\x57\x6d\x0b\x7d\x21\xd8\xdf\x05\x41\xde\x9d\x9f\x66\xe4\x6b\xeb\x3f\x0f\xcc\xd1\xbd\xe3\xbf\x22\xd7\x8f\x73\x1c\x33\x87\xf1\xa7\x13\xc8\xd9\xbf\x6f\xc1\x5b\xf0\x6f\x00\x00\x00\xff\xff\x4b\xe4\x54\x92\x5d\x0e\x00\x00" +var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xde\x63\x8d\x24\x0b\xd7\xe8\xa2\xc5\xa6\xe8\xa2\x4d\x77\xcf\x13\x69\x6c\x11\xa6\x48\x95\xa4\x6c\x18\x8b\xbc\x7b\x41\x51\x7f\x94\x25\x3b\x6e\x57\x87\xc0\xa2\xe6\xf7\x9b\x99\x8f\x13\x96\x17\x52\x19\xd8\xa8\x53\x61\x64\x50\xbf\x7d\xe2\xf2\xf8\x22\xf7\x24\x60\xab\x64\x0e\xb3\xf6\x7d\xd6\x4a\x94\x62\xc7\x5e\x39\x79\x52\xfd\xb3\x56\xf2\x59\x26\x7b\x4a\xab\x33\x5d\x0b\xf6\x8f\x66\x41\x10\xc7\x31\xbc\x28\x14\x1a\x13\xc3\xa4\x00\x93\xa1\x01\x93\x11\xe4\xc8\x04\x98\xca\x03\xa6\x39\x13\x70\x94\x25\x4f\x41\xb3\x9d\xa8\x94\x8c\x84\x44\x11\x1a\x02\x04\x9d\xa1\xa2\x14\x30\x49\x64\x29\x0c\xa0\x48\x01\x05\x94\x82\x57\xbe\x2a\x71\x74\x9f\xb6\x52\x01\x42\xa9\x49\x05\x81\xe9\xdc\x86\x01\x00\x40\x81\xca\x30\xe4\x6b\xeb\xee\x4b\xf9\xca\x59\xf2\x99\x4e\xab\x1a\x9e\xe8\x33\x9d\x9e\x99\x36\xbf\x08\xa3\x4e\x0b\x88\x63\xf8\x46\x6c\x97\x99\x15\x7c\x58\x2e\xfb\xea\x7f\x6b\x52\x37\x68\xff\x54\x6b\x6f\x4b\x7e\xab\xea\x87\xe5\x72\x19\xcc\x01\xbe\x07\xce\xbf\xa2\x02\x15\x85\x15\x5c\x2b\xc0\xd2\x64\xe1\xcf\x52\x29\x79\xfc\x8a\xbc\xa4\x39\xdc\xad\x1d\x40\xf3\x46\xc3\x3e\x71\x0c\x1b\x87\xa3\x45\x5d\xd0\xb1\x81\x51\x3b\x1c\xd3\xd4\x7e\x60\x0a\xf6\x74\xd2\xad\x16\x27\x53\xa3\x5e\xdb\x84\x47\xa8\x7f\x85\x05\x9e\x48\xad\x5c\xd5\xe6\x9e\x86\xc5\xfd\x9a\x7c\xab\xe0\x99\x8f\xac\xf7\x08\xd3\x34\x2c\x3a\x7c\x46\xeb\x15\xb5\x02\x0b\xc8\x50\x67\x6b\xbe\x93\x8a\x99\x2c\x9f\x92\xf7\x84\x16\x70\xac\xc1\x1d\x17\x76\x5f\xe7\xb7\x07\xe9\x95\xf6\x7a\x8c\xbe\xf8\xe5\x10\x7d\xd9\x26\xc2\x36\xc4\x1e\xe8\xa3\x01\x9e\x35\xde\x85\xe8\xce\x65\x27\x42\x3b\x17\x3c\x8b\xab\x6b\x3c\x84\x42\xb1\x83\xfd\xc5\x99\xd8\xdb\xc9\xb6\xad\xa8\x8d\xb4\x43\x7d\xc0\x92\x1b\xaf\x8b\xaa\x93\x0d\x16\xf8\xca\x38\x33\x27\x78\x1c\x54\x21\x69\x3e\x31\xd2\x91\xb5\x82\x3b\x8a\x98\xd6\x25\xb5\x66\xec\xf3\x50\x0d\x88\xc7\x5b\xd1\x37\x66\xb2\x54\xe1\x71\x0e\x77\x2d\xed\x45\x5f\xad\xbf\x27\x4f\x37\x8c\x6b\xbb\xf1\xb6\x11\xab\xa4\xfc\xf4\x5a\x7e\x72\x3c\x54\xb3\x59\x8e\x02\x77\xa4\xaa\xe9\xaa\x73\x64\x06\x2c\xd9\xd9\xa4\x3d\x26\xf3\xd2\xe6\x1d\x71\xfe\x5e\x9b\x78\xb8\xf7\x18\x36\x72\x0e\x9f\xcf\x04\xc3\x0a\xb2\xd5\x10\xb9\xa9\x36\x6e\x30\xd3\x78\xa0\xf0\xe1\xfe\xdc\xf1\x02\x8c\x5c\xf9\xae\xcf\x9d\xfe\xe5\xac\x7c\x41\x93\xf5\x60\xb1\x99\x98\x9e\xd4\x74\x1d\x3d\xc0\x2f\x14\xf5\x4a\x1d\xaf\x44\xf9\x14\x7a\x7e\xec\xf3\xff\xf2\xfa\x55\xf2\x74\xb2\x34\x2f\x9d\x84\xef\xd7\x61\xbc\x4e\x53\x45\x5a\xaf\x06\xf5\x40\x77\xbc\xf0\x34\xfa\x20\xae\x26\x20\x6d\x15\x26\xe8\xc0\x2b\xb4\x3f\x1c\xf7\xbd\x64\x86\x8e\x07\xa5\xef\x25\xd5\xc3\x66\xcc\xb7\x05\x89\x89\xad\xdc\x60\x01\x8f\x5e\x24\x17\xca\x7b\x37\xe5\x6c\x50\xba\xdb\x62\x1a\x83\xc3\x0b\xa2\x22\x41\x9d\x85\x75\xbc\x0b\x40\x33\xda\xf2\xb5\xf2\x6f\x62\x2b\x1d\xd9\x4d\x35\x46\x75\x93\x6c\x24\xe7\xe4\x36\x9d\x47\x77\xe3\x35\xd9\xfa\xed\xfe\x5a\xdd\xdb\x63\xb9\x0f\xcc\x8c\xf4\xaf\xdd\xb3\xa6\xa7\x73\xa0\x3f\x86\x8e\x8f\x90\x7d\x3e\x7e\x84\x02\x05\x4b\xc2\xd9\xa6\xda\xc2\x84\x34\xe0\x42\x04\x45\x5b\x52\x24\x12\xb2\xbc\xed\x36\xb5\xa4\xb5\x3e\xeb\x01\x31\x06\x82\x6d\xed\x66\x0d\xf0\x1c\x7a\x03\x70\xcb\x58\x34\x4b\xdf\x50\xb5\x5f\xe7\xe9\x79\x5a\xbb\xd5\xe9\xfd\xd3\x14\xc7\xf0\xc7\x81\x94\x62\xa9\xdb\x9f\x52\xda\x5a\x8e\xed\x2d\xd1\x8a\x12\x62\x07\x52\x13\x5c\xeb\xf5\x5c\x29\x9a\xae\x8b\xdd\x1d\xdc\x5d\x2f\x7f\xd6\x66\x46\x6f\x18\xbb\xb5\x35\x7e\xdc\x06\x9d\xa3\xda\xeb\xe6\xac\xbe\x79\x34\xa0\xee\x96\xe2\x7e\x7f\xf6\x18\x5e\x77\x69\xdf\x70\xb1\x3e\xdc\x7d\xf7\x09\xb8\x09\xf7\xed\x29\xbc\x85\x4e\xdf\x81\x51\x83\xd0\x08\x7d\x0e\x13\xf0\x0b\x6c\xe7\x77\x12\xd6\x89\xda\x16\xa5\x01\x21\x55\x8e\xbc\xc3\x97\x09\xfb\x1f\x87\x5d\xb5\x2d\xf4\xa5\x60\xff\x94\x04\x45\x7f\x7e\xda\x91\x6f\xac\xff\x38\x30\x27\xf7\x8e\xff\x8a\xdc\x30\xce\x69\xcc\x1c\xc6\x9f\x2e\x20\x67\xff\xbe\x05\x6f\xc1\xbf\x01\x00\x00\xff\xff\xaf\xee\x68\xd2\x57\x0e\x00\x00" func lockedtokensAdminAdmin_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3780,7 +3759,7 @@ func lockedtokensAdminAdmin_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x68, 0xf, 0xe1, 0xfd, 0xf, 0x9f, 0xbc, 0x7d, 0x4a, 0xbb, 0x7f, 0x3d, 0xc6, 0x7a, 0xef, 0x7e, 0x67, 0xdd, 0x80, 0x37, 0xcc, 0xfb, 0xd5, 0xc4, 0x9d, 0x54, 0x15, 0x71, 0x37, 0xd9, 0x8a, 0x57}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8, 0x7d, 0x60, 0xa4, 0xb3, 0xc9, 0x1d, 0x40, 0x3b, 0xe2, 0xeb, 0x74, 0xb5, 0x11, 0x4b, 0x52, 0xa3, 0x6d, 0xd6, 0xa3, 0x70, 0x4d, 0xea, 0x5, 0xab, 0xb5, 0x40, 0x3f, 0x87, 0x25, 0xb2, 0xb8}} return a, nil } @@ -3804,7 +3783,7 @@ func lockedtokensAdminAdmin_deploy_contractCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminAdmin_deposit_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x41\x6f\xdb\x30\x0c\x85\xef\xfe\x15\x5c\x0f\x9d\x0d\x0c\xce\xce\xc1\xba\x22\x73\x72\x6a\xb1\x06\x4d\xb0\x3b\x23\xb1\xb1\x50\x45\x34\x28\xba\x5d\x30\xf4\xbf\x0f\xb2\xbd\xcc\xce\x32\x54\x27\x5b\xe0\x7b\x7c\x1f\x45\x77\x68\x58\x14\xee\xd9\x3c\x93\xdd\xf2\x33\x85\x08\x4f\xc2\x07\xf8\xfc\xf3\xfe\xa1\xba\x5b\x2d\xb7\x0f\x77\xab\xef\x8b\xe5\xf2\x71\xb5\xd9\x64\xd9\x6c\x36\x03\x4d\x55\x80\xf6\xe0\x02\x44\xb7\x0f\x11\xb4\x76\x11\x54\x30\x44\x34\xea\x38\x80\x32\x58\x6a\x38\x3a\x05\x04\x83\x0d\xee\x9c\x77\x7a\xec\xe4\x2e\x28\xa7\xdb\x36\x2a\xdb\x23\x34\xc2\x2f\xce\x92\x7c\x8c\x80\xc6\x70\x1b\x14\xb4\x46\x05\xf4\x9e\x5f\x93\x35\x1d\x92\x1d\x5a\xdb\xa9\x87\x9a\x98\xee\xb4\x26\x10\x32\x2c\x36\xcb\x46\xdd\xf3\xc1\x7a\x3d\x38\x2f\xac\x15\x8a\x71\x0e\xc3\x47\x01\xbf\xb2\x0c\x00\xa0\x11\x6a\x50\x28\xef\x50\xe6\x80\xad\xd6\xf9\x37\x16\xe1\xd7\x1f\xe8\x5b\xfa\x04\xd5\x9f\xe4\x8e\x62\x01\xd7\x8b\xbe\xf7\x49\x9f\x8e\x27\x1d\x01\x3e\x92\x21\xf7\x42\x02\x37\xb0\x27\x1d\xea\xff\x93\xa7\x38\x79\xa4\x53\x9a\x51\xaf\x72\xd7\xa5\xf8\x72\x3d\x7e\x96\xb2\xff\x19\x4c\x2b\x21\x54\x96\xaf\xf9\xc4\x25\x9d\x77\x35\xeb\x76\xe7\x9d\x59\xa3\xd6\x13\xed\x34\xcf\xed\x2d\x34\x18\x9c\xc9\xaf\x2a\x6e\xbd\x85\xc0\x0a\x7d\xaa\x11\x6e\x9a\x7e\xcf\x2b\xf4\x44\x42\xc1\xd0\x55\x31\x9d\x4d\xb7\x2c\x8b\x34\xe0\x8a\xbd\xa7\x7e\x3d\x6e\xfa\xed\x99\x32\x47\x65\xc1\x3d\x95\x2e\xc6\x96\xce\xd0\xb7\x17\x5c\xce\xd0\x2f\x60\x5f\x52\x6d\xfa\x2e\x13\xfa\xe2\xc3\xdf\xcc\xff\xbe\x65\x89\xd6\x9e\x16\xe1\x98\x1b\x6c\xe6\x17\xa9\xfa\xf9\xbd\x65\x6f\xd9\xef\x00\x00\x00\xff\xff\xe2\x88\x28\xa2\x54\x03\x00\x00" +var _lockedtokensAdminAdmin_deposit_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x41\x6f\xdb\x30\x0c\x85\xef\xfa\x15\x5c\x0e\x9d\x0d\x0c\xce\x3d\x58\x57\x64\xb9\xee\x10\x6c\xc5\xee\x8c\xc4\xc6\x42\x15\x51\xa0\xe8\x16\xc1\xd0\xff\x3e\xc8\xf2\x32\x3b\xcb\x50\x9d\x2c\x42\xef\xf1\x7d\x34\xfd\x29\xb1\x28\x7c\x63\xfb\x4c\xee\x91\x9f\x29\x66\x78\x12\x3e\xc1\x6a\x5e\x5a\x19\xb3\x5e\xaf\x41\xcb\x05\xd0\x9d\x7c\x84\xec\x8f\x31\x83\xf6\x3e\x83\x0a\xc6\x8c\x56\x3d\x47\x50\x06\x47\x89\xb3\x57\x40\xb0\x98\xf0\xe0\x83\xd7\xf3\x28\xf7\x51\xb9\x54\x87\xac\xec\xce\x90\x84\x5f\xbc\x23\xf9\x98\x01\xad\xe5\x21\x2a\x68\x8f\x0a\x18\x02\xbf\x16\x6b\x3a\x15\x3b\x74\x6e\x54\x4f\x6f\x72\xa9\x69\x4f\x20\x64\x59\x9c\x31\xb3\xee\xcd\x64\xbd\x9f\x9c\xb7\xce\x09\xe5\xbc\x81\xe9\xa3\x85\x5f\xc6\x00\x00\x24\xa1\x84\x42\xcd\x88\xb2\x01\x1c\xb4\x6f\xbe\xb2\x08\xbf\xfe\xc4\x30\xd0\x27\xd8\xfd\x49\xee\x29\xb7\x70\xb7\xad\xbd\x2f\xfa\x72\x02\xe9\x0c\xf0\x3b\x59\xf2\x2f\x24\x70\x0f\x47\xd2\xe9\xfd\x7f\xf2\xb4\x17\x8f\x72\x3a\x3b\xeb\xd5\x1d\xc6\x14\x9f\xef\xe6\xd3\xef\xea\x65\x32\xdd\x09\xa1\xb2\x7c\x69\x16\x2e\xe5\xbc\xab\xd9\x0f\x87\xe0\xed\x1e\xb5\x5f\x68\x97\x79\x1e\x1e\x20\x61\xf4\xb6\x59\xed\x78\x08\x0e\x22\x2b\xd4\x54\x33\xdc\x32\xfd\xca\x2b\xf4\x44\x42\xd1\xd2\xaa\x5d\xce\x66\x5c\x96\x6d\x19\xf0\x8e\x43\xa0\xba\x1e\xf7\x75\x7b\x96\xcc\x59\x59\xf0\x48\x9d\xcf\x79\xa0\x2b\xf4\xc7\x1b\x2e\x57\xe8\x37\xb0\x6f\xa9\x7e\xd4\x2e\x0b\xfa\xf6\xc3\xdf\xcc\xff\xfe\xcb\x0e\x9d\xbb\x2c\xc2\xb9\xb1\x98\x36\x37\xa9\xea\xfc\xde\xcc\x9b\xf9\x1d\x00\x00\xff\xff\x84\x09\x5b\x53\x4e\x03\x00\x00" func lockedtokensAdminAdmin_deposit_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3820,11 +3799,11 @@ func lockedtokensAdminAdmin_deposit_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_deposit_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb8, 0x23, 0x84, 0xa6, 0x9d, 0xef, 0xc4, 0xfb, 0x4f, 0x5c, 0x1d, 0x2b, 0x21, 0xe2, 0xac, 0x5c, 0x53, 0x69, 0xa2, 0x49, 0x64, 0xa, 0x89, 0x80, 0xa8, 0xb, 0x22, 0xf4, 0xab, 0x6e, 0x3b, 0xe7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0x82, 0x4, 0xe6, 0x5b, 0xce, 0x35, 0x7d, 0x2e, 0xd, 0x46, 0xda, 0x8a, 0x52, 0x1a, 0xd5, 0x89, 0x30, 0xea, 0xb4, 0xdf, 0xc2, 0xb0, 0xbe, 0xb3, 0xdb, 0xf6, 0x5e, 0x8d, 0x29, 0x66, 0xd7}} return a, nil } -var _lockedtokensAdminAdmin_remove_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8f\xc1\x4e\xc2\x40\x10\x86\xef\xfb\x14\x63\x0f\xa4\x3d\xd8\x78\x26\x28\x41\x8a\x89\x01\xc5\x50\xe2\x7d\x68\x87\xd2\xb0\xdd\x69\xa6\x53\xd1\x18\xde\xdd\x94\x15\xa9\xf1\xe0\xdc\x36\xff\x7c\xff\x7e\x53\x56\x35\x8b\xc2\x83\xe5\xc3\x63\xb2\xc6\x8d\xa5\x54\x71\x5f\xba\x02\xb6\xc2\x15\x04\x7f\x83\xc0\x7c\x33\x0b\xce\xf6\x94\xaf\x79\x4f\xae\xf1\xdb\x37\xef\x8b\xe5\x74\x3e\x4b\xd6\xcb\xf9\xec\x79\x92\x24\xab\x59\x9a\x1a\xa3\x82\xae\xc1\x4c\x4b\x76\xf0\x69\x0c\x00\x40\x2d\x54\xa3\x50\xd8\x94\x85\x23\x19\x02\xb6\xba\x0b\xef\x59\x84\x0f\xaf\x68\x5b\x8a\x60\x30\xc9\x32\x6e\x9d\x46\x67\xa4\x1b\x4b\x0a\x15\x3a\x2c\x48\x56\xb4\x85\x5b\xf0\x7c\xdc\x28\x0b\x16\x14\x6f\x4e\x0d\xa3\x41\xdf\x2c\xee\x3d\x9e\x3c\x7b\x17\x76\xb6\x43\xf8\x67\x2d\xf5\xad\x2f\xa8\xbb\xe8\x47\xa1\x9b\xf1\x18\x6a\x74\x65\x16\x06\x53\x6e\x6d\x0e\x8e\x15\xfc\xd7\x80\x20\xb4\x25\x21\x97\x11\x28\x83\xee\x08\xec\xa9\x18\xb4\x6b\x3e\xdb\x07\xd1\xef\xa3\x72\xb2\x54\xa0\xb2\xc0\xe8\xba\x77\x61\x2c\x54\xf1\x1b\x25\xe7\x34\x8c\xae\x2e\x5c\x4e\x8d\x0a\x7f\x5c\x58\x1f\x1d\xcd\xd1\x7c\x05\x00\x00\xff\xff\xfd\xdb\x47\xd0\xd5\x01\x00\x00" +var _lockedtokensAdminAdmin_remove_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x9e\x39\x94\xe4\x60\x7e\x40\xa9\x16\xb5\x08\x82\x82\xd8\xe2\x7d\xba\x99\xa6\xa1\x9b\x9d\x30\x99\x58\x44\xfa\xdf\x25\x4d\x6b\x23\x1e\x9c\xdb\xee\x9b\xef\xcd\x7b\x55\xdd\x88\x1a\x1e\x83\xec\x9f\x16\x2b\x5a\x07\x5e\x1a\xed\xaa\x58\x62\xa3\x52\x23\xf9\x2b\x24\xee\xc4\x3c\x8b\xdf\x71\xb1\x92\x1d\xc7\xf6\xb4\x3d\xfe\x4a\x9c\x33\xa5\xd8\x92\xb7\x4a\x22\xbe\x9c\x03\x80\x46\xb9\x21\xe5\xb4\xad\xca\xc8\x3a\x05\x75\xb6\x4d\xef\x45\x55\xf6\xef\x14\x3a\xce\x30\xb9\xf3\x5e\xba\x68\xd9\x19\xe9\x27\xb0\xa1\xa6\x48\x25\xeb\x1b\x6f\x70\x83\x81\xcf\x5b\x13\xa5\x92\xf3\xf5\xd1\x61\x36\x19\x07\xc8\x47\x8f\x97\x81\xbd\x4d\xfb\x9c\x53\xfc\xb3\xb6\x1c\x5c\x5f\xc9\xb6\xd9\x4f\x84\x7e\xe6\x73\x34\x14\x2b\x9f\x26\x0f\xd2\x85\x02\x51\x0c\xc3\x69\x10\x94\x37\xac\x1c\x3d\xc3\x04\xb6\x65\x84\xa3\x31\xac\x77\x3e\xa7\x4f\xb2\xdf\xa5\x0a\x0e\x5c\x92\x89\x62\x76\x3d\x6a\x98\x2b\xd7\xf2\xc1\x8b\xb3\x9a\x66\x57\x17\xae\xe0\xd6\x54\x3e\x2f\xec\x20\x1d\xdc\xc1\x7d\x07\x00\x00\xff\xff\x04\xab\xd5\xde\xcf\x01\x00\x00" func lockedtokensAdminAdmin_remove_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3840,11 +3819,11 @@ func lockedtokensAdminAdmin_remove_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_remove_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x74, 0xd8, 0x9, 0x2e, 0xae, 0x30, 0xd3, 0x8a, 0x16, 0x8c, 0x2c, 0xb6, 0xbf, 0x31, 0xea, 0x75, 0xf9, 0xf9, 0x9e, 0xda, 0x21, 0x35, 0xe4, 0xdb, 0x5a, 0x60, 0x10, 0x2e, 0x43, 0x22, 0x93, 0x83}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdf, 0xa8, 0x3f, 0x3a, 0x74, 0xce, 0x68, 0x6e, 0x7, 0xc0, 0x36, 0x29, 0x95, 0x78, 0x26, 0xc2, 0x17, 0xe2, 0xa9, 0x89, 0x16, 0xce, 0x87, 0x20, 0xb3, 0xe6, 0x1f, 0x1d, 0x99, 0x77, 0x55, 0x20}} return a, nil } -var _lockedtokensAdminCheck_main_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\x4d\x6b\xdc\x30\x14\xbc\xfb\x57\x4c\x7c\x08\x36\x14\xd3\xb3\xe9\x26\x6c\x77\xb7\xb4\x24\x34\x21\xbb\xf4\xfe\x56\x7e\xf6\x8a\xc8\x92\x91\x64\x52\x28\xf9\xef\xc5\xf2\x07\x56\x1b\x72\x89\x2e\x8b\xde\xce\xcc\x9b\x19\x4b\xb6\x9d\xb1\x1e\xdf\x7a\xdd\xc8\xb3\xe2\x93\x79\x66\x8d\xda\x9a\x16\x69\x34\x4b\x93\x19\xa9\xcc\x4b\x84\x9a\xef\x69\x32\x43\xee\x8d\x78\xe6\x2a\x0c\xdd\x88\xfa\xfc\xfb\xfe\x61\x77\x77\xd8\x9f\x1e\xee\x0e\x3f\xb7\xfb\xfd\xd3\xe1\x78\x4c\x12\x6f\x49\x3b\x12\x5e\x1a\x9d\xb5\x24\xf5\x56\x08\xd3\x6b\x5f\x62\x5b\x55\x96\x9d\xcb\xf1\x27\x49\x00\xa0\xb3\xdc\x91\xe5\xcc\xc9\x46\xb3\x2d\x41\xbd\xbf\x64\x5f\x8d\xb5\xe6\xe5\x17\xa9\x9e\x73\x5c\x4f\xdc\x85\x32\x1c\xc5\x1e\x54\xb5\x52\x3f\x71\x8d\x0d\x46\x76\xe1\xbc\xb1\xd4\x70\x71\x0e\xfc\x2f\xd7\x6b\xb7\x45\xf8\xd9\x0e\x9c\x9d\x51\x8a\x83\xb7\x9b\x6c\xc8\x50\x46\xb1\x8a\xd5\xe5\x1f\xf8\x71\xd4\x7f\x24\x7f\xc9\x17\x2b\xc3\xb9\xbd\x45\x47\x5a\x8a\x2c\xdd\x99\x5e\x55\xd0\xc6\x63\x34\x01\x82\xe5\x9a\x2d\x6b\xc1\xf0\x06\xfe\xc2\x50\x61\x01\x7c\xa8\x3a\xa4\x80\x58\x76\xa4\x79\x9c\x72\x04\x4f\x1d\xfc\xd0\xb5\x19\x13\x37\xec\xa7\xd9\xba\xdf\xd8\x55\x21\xa8\xa3\xb3\x54\xd2\x4b\x76\xef\x94\xf2\xdd\xa8\x8a\xed\x4d\xf6\x46\x0b\xab\xbd\x8f\xfd\x59\x49\xf1\x91\xec\x5d\x50\xc0\x7f\xca\xef\x46\xc6\xe6\xcd\x0a\x8a\x86\x7d\x24\x34\x3d\xac\x6c\xa5\x45\xce\xb1\xf5\x59\xe4\x76\x7e\x34\xc5\xaa\x40\x1a\xa9\x65\xbc\x28\xc7\xd5\x06\x5a\xaa\x4f\x11\xbf\x65\xe7\xa8\xe1\x12\xe9\xe9\xc2\x70\x1d\x0b\x59\x4b\xae\x40\x93\x5b\xe9\x42\x01\x34\x7f\xe4\x69\x7e\x85\x1d\xe9\xe1\x0f\xc7\xba\x8a\x1e\x80\x4b\x17\xfd\xb1\xd7\xd7\xe4\x35\xf9\x1b\x00\x00\xff\xff\xc8\x2d\x1b\x07\xbb\x03\x00\x00" +var _lockedtokensAdminCheck_main_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\xc1\x6a\xdc\x30\x14\xbc\xfb\x2b\x26\x3e\x04\x1b\x8a\x3f\xc0\x74\x13\xb6\x0b\xa5\x85\x1e\x42\x1b\x7a\x7f\x2b\x3d\x7b\x45\x64\xc9\x48\xcf\xe4\x50\xf2\xef\xc5\xb2\xbd\x58\x6d\xd8\x4b\x74\x59\xf4\x76\x66\xde\xcc\x58\x66\x18\x7d\x10\x7c\x9d\x5c\x6f\xce\x96\x9f\xfd\x0b\x3b\x74\xc1\x0f\x28\xb3\x59\x59\x6c\x48\xeb\x5f\x33\xd4\x76\x2f\x8b\x0d\xf2\xc3\xab\x17\xd6\x69\x18\x57\xd4\x7e\x54\x16\x85\x04\x72\x91\x94\x18\xef\xaa\x81\x8c\x3b\x2a\xe5\x27\x27\x2d\x8e\x5a\x07\x8e\xb1\xc6\x9f\xa2\x00\x80\x31\xf0\x48\x81\xab\x68\x7a\xc7\xa1\x05\x4d\x72\xa9\xbe\xf8\x10\xfc\xeb\x6f\xb2\x13\xd7\xb8\x5f\xb9\x57\xca\x7c\x2c\x0b\x48\x0f\xc6\xfd\xe4\x0e\x07\x2c\xec\x26\x8a\x0f\xd4\x73\x73\x4e\xfc\xcf\xf7\x7b\x53\x4d\xfa\x39\xce\x9c\x93\xb7\x96\x93\xb7\x87\x6a\x76\xdf\x66\x81\x9a\xdd\xe5\x1f\xf8\xaf\x45\xff\x89\xe4\x52\x5f\xad\xcc\xe7\xf1\x11\x23\x39\xa3\xaa\xf2\xe4\x27\xab\xe1\xbc\x60\x31\x01\x42\xe0\x8e\x03\x3b\xc5\x10\x0f\xb9\x30\x6c\x5a\x00\x49\x25\xa7\x14\x50\xd7\x1d\x65\x9d\xa7\x5c\xc0\x6b\x07\xdf\x5d\xe7\x97\xc4\x3d\xcb\x3a\xdb\xf7\x9b\xbb\x6a\x14\x8d\x74\x36\xd6\x88\xe1\x78\xa3\x94\x6f\xde\x6a\x0e\x0f\xd5\x3b\x2d\xec\xf6\x3e\x4d\x67\x6b\xd4\x47\xb2\x8f\x49\x01\xff\x29\xdf\x8c\x8c\xc3\xbb\x15\x34\x3d\x4b\x26\xb4\x3e\xac\x6a\xa7\x45\x31\x72\x90\x2a\x73\xbb\x3d\x9a\x66\x57\x20\x2d\xd4\x36\x5f\x54\xe3\xee\x00\x67\xec\xa7\x8c\x3f\x70\x8c\xd4\x73\x8b\xf2\xf9\xc2\x88\x23\x2b\xd3\x19\xd6\xa0\xd5\xad\x89\xa9\x00\xda\x3e\xf2\x3a\xbf\xc3\x89\xdc\xfc\x47\x64\xa7\xb3\x07\x10\xcb\xab\xfe\xd2\xeb\x5b\xf1\x56\xfc\x0d\x00\x00\xff\xff\x9d\x91\x65\xc1\xb5\x03\x00\x00" func lockedtokensAdminCheck_main_registrationCdcBytes() ([]byte, error) { return bindataRead( @@ -3860,11 +3839,11 @@ func lockedtokensAdminCheck_main_registrationCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/check_main_registration.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0xc0, 0x78, 0xc8, 0x9a, 0xaf, 0x7c, 0xa6, 0x7f, 0x30, 0x91, 0x5c, 0x56, 0x52, 0x4e, 0x10, 0x2a, 0xd8, 0xac, 0xea, 0xa4, 0xc0, 0x2e, 0x28, 0xf, 0x40, 0xed, 0x8, 0x99, 0x57, 0xdd, 0x40}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0x92, 0xbe, 0x27, 0xf, 0xc8, 0x19, 0xb2, 0x24, 0xd8, 0xfb, 0x9, 0x26, 0x43, 0xec, 0x91, 0x14, 0xe, 0xaf, 0x4a, 0x9, 0xd, 0x12, 0xde, 0xa, 0x73, 0x8d, 0x3, 0x5d, 0x53, 0xd0, 0xc6}} return a, nil } -var _lockedtokensAdminCheck_shared_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x6f\x9c\x30\x14\x84\xef\xfe\x15\x13\x0e\x11\x48\x15\xea\x19\x35\x8d\x28\xbb\xbd\x24\x6a\xaa\xec\xaa\xf7\x17\xf3\x00\x2b\xc6\x46\xb6\x51\x2a\x55\xfb\xdf\x2b\xec\x85\x2e\xf5\x05\xf9\x31\x9f\xdf\xcc\xa8\x71\xb2\x2e\xe0\xfb\x6c\x7a\xf5\xa6\xf9\x6c\xdf\xd9\xa0\x73\x76\x44\xb6\x9b\x65\x62\x55\x6a\xfb\xb1\x53\xad\xf7\x4c\xac\x92\x67\x2b\xdf\xb9\x8d\x43\x9f\x54\x9f\x7f\x3f\xbf\x34\x4f\xc7\xc3\xf9\xe5\xe9\xf8\xa3\x3e\x1c\x5e\x8f\xa7\x93\x10\xc1\x91\xf1\x24\x83\xb2\x26\xd7\x91\xa9\xa5\xb4\xb3\x09\x15\xea\xb6\x75\xec\x7d\x81\x3f\x42\x00\xc0\xe4\x78\x22\xc7\xb9\x57\xbd\x61\x57\x81\xe6\x30\xe4\xdf\xac\x73\xf6\xe3\x17\xe9\x99\x0b\xdc\x5f\xd9\x0d\x59\x8e\xe6\x00\x6a\x47\x65\x5e\xb9\xc3\x03\x12\x5d\xfa\x60\x1d\xf5\x5c\xbe\x45\xfe\xcb\xfd\xad\xdf\x32\x7e\xea\x85\x69\xac\xd6\x1c\xdd\x7d\xcd\x97\x14\xd5\x2e\x58\x79\x73\xf9\x4f\x7e\x4a\xef\xff\xa4\x30\x14\x9b\x95\xe5\x3c\x3e\x62\x22\xa3\x64\x9e\x35\x76\xd6\x2d\x8c\x0d\x48\x26\x40\x70\xdc\xb1\x63\x23\x19\xc1\x22\x0c\x8c\x54\x09\x42\x2c\x3b\xa6\x80\xdc\x76\x64\xc5\xbf\x94\xe4\x3d\xbb\x80\x7c\xb7\x6b\x8d\x5d\xf6\x1c\xae\xd5\xe4\x94\x5a\xad\xb0\x6b\xbb\xc0\xdd\x03\x8c\xd2\x9f\x76\xfc\xc8\xde\x53\xcf\x15\xb2\xf3\xc0\xf0\x13\x4b\xd5\x29\x6e\x41\x09\x82\xf2\xd1\x3e\xad\x36\xaf\xf3\x3b\x34\x64\x96\x1f\x9e\x4d\xbb\x8b\xe0\xb3\xed\xfd\xd4\xca\x45\x5c\xc4\xdf\x00\x00\x00\xff\xff\x8b\xd1\x84\xfd\x7f\x02\x00\x00" +var _lockedtokensAdminCheck_shared_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x50\x4d\x6b\xe3\x30\x14\xbc\xeb\x57\x4c\x74\x08\x36\x2c\xfe\x01\x66\xb3\x21\x1b\xe8\xa9\x87\xd2\x86\xde\x5f\xe4\x67\x5b\x44\x96\x8c\x24\x93\x43\xc9\x7f\x2f\x96\x3f\x1a\x57\x17\xa1\xd1\xcc\x7b\x33\xa3\xbb\xde\xf9\x88\x97\xc1\x36\xfa\x6a\xf8\xe2\x6e\x6c\x51\x7b\xd7\x41\x6e\x30\x29\x16\xa6\x71\xf7\x0d\x6b\x79\x4b\xb1\x50\x5e\x9d\xba\x71\x95\xc0\x30\xb3\x9e\x21\x29\x44\xf4\x64\x03\xa9\xa8\x9d\xcd\x4c\xfa\x3a\x29\xe5\x06\x1b\x4b\x9c\xaa\xca\x73\x08\x39\xbe\x84\x00\x80\xde\x73\x4f\x9e\xb3\xa0\x1b\xcb\xbe\x04\x0d\xb1\xcd\xfe\x3b\xef\xdd\xfd\x93\xcc\xc0\x39\xf6\xb3\x76\x95\x8c\xc7\x70\x04\x55\x9d\xb6\xef\x5c\xe3\x80\x49\x5d\x84\xe8\x3c\x35\x5c\x5c\x93\xfe\xef\xfe\xd9\x56\x91\xae\xd3\xa8\x39\x3b\x63\x38\xb9\xfb\x97\x8d\xfe\xcb\x4d\xa4\xe2\xe9\xf1\x8b\xfe\x31\xcd\x7f\xa3\xd8\xe6\xab\x95\xf1\x1c\x8f\xe8\xc9\x6a\x95\xc9\xb3\x1b\x4c\x05\xeb\x22\x26\x13\x20\x78\xae\xd9\xb3\x55\x8c\xe8\x10\x5b\xc6\x54\x09\x62\xaa\x39\xa5\x80\x5a\x77\xc8\xfc\x27\x25\x85\xc0\x3e\x22\xdb\xec\x5a\x62\x17\x0d\xc7\xb9\x9a\x8c\xa6\x56\x4b\x6c\xda\xce\xb1\x3b\xc0\x6a\xf3\x67\xa3\xef\x38\x04\x6a\xb8\x84\xbc\xb4\x8c\xd0\xb3\xd2\xb5\xe6\x0a\x34\x89\xa0\x43\xb2\x4f\x8b\xcd\x19\xdf\xe1\x4c\x76\xfc\x08\x6c\xab\x4d\x84\x20\xd7\xf9\x53\x2b\x0f\xf1\x10\xdf\x01\x00\x00\xff\xff\xc7\x12\xd7\xca\x79\x02\x00\x00" func lockedtokensAdminCheck_shared_registrationCdcBytes() ([]byte, error) { return bindataRead( @@ -3880,11 +3859,11 @@ func lockedtokensAdminCheck_shared_registrationCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/check_shared_registration.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc0, 0x63, 0x70, 0xca, 0x39, 0x95, 0x6b, 0x65, 0x78, 0x87, 0x9b, 0x56, 0xa5, 0xa, 0x10, 0xa8, 0xfa, 0xab, 0x38, 0xee, 0x5c, 0x23, 0xfe, 0x8, 0xf, 0xd6, 0x21, 0xa5, 0x2b, 0x89, 0xac, 0x74}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5f, 0xce, 0x2e, 0x8a, 0xa6, 0x4e, 0x37, 0xb0, 0x50, 0xb0, 0xe3, 0x24, 0x8c, 0xa4, 0xea, 0x43, 0x5f, 0xc7, 0xa6, 0xa1, 0x26, 0x54, 0x66, 0x7c, 0x8d, 0xd8, 0xa7, 0xe6, 0xb, 0xb6, 0x72, 0x84}} return a, nil } -var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x39\x04\x32\xe0\x48\xe9\xd5\x70\xb2\x70\x9d\x2c\x5a\x24\x6d\x82\x4d\xba\x7b\x9e\x48\x63\x8b\x08\x4d\xaa\xfc\xb1\x6b\x2c\xf2\xee\x05\x25\x4a\x16\x65\x29\x71\x8b\xf6\xb2\x3a\x04\x31\x39\x3f\xdf\x7c\x33\xc3\x19\xb6\x29\xa5\x32\xb0\x54\xfb\xd2\xc8\xc8\xff\xfa\xcc\xe5\xee\x59\xbe\x92\x80\x95\x92\x1b\x38\x6b\x7f\x9f\xb5\x12\x56\xac\xd9\x0b\xa7\x40\xaa\x7b\xd6\x4a\xde\xcb\xec\x95\xf2\xea\x4c\xd7\x82\x97\x7f\xdd\x3f\x2c\xef\x6e\x6f\x9e\x1f\xee\x6e\x7f\x5f\xdc\xdc\x7c\xb9\x7d\x7a\x8a\xa2\x34\x4d\xe1\x59\xa1\xd0\x98\x19\x26\x05\x98\x02\x0d\x20\x64\x56\x1b\x99\xef\xa1\x54\x72\xcb\x72\x52\xb0\x93\x96\xe7\xa0\xd9\x5a\x54\x2a\x46\x42\xa6\x08\x0d\x01\x82\x2e\x50\x51\x0e\x98\x65\xd2\x0a\x03\x28\x72\x40\x01\x56\xf0\x0a\x42\x25\xde\xdc\xad\xa4\x02\x04\xab\x49\x45\x91\x39\x78\x8d\x23\x00\x80\x95\xe5\x7c\x91\x6f\x98\x78\xb4\x2f\x9c\x65\x77\xb4\x9f\x79\x82\x92\x3b\xda\xdf\x33\x6d\x6e\x85\x51\xfb\x29\xa4\x29\x7c\x23\xb6\x2e\xcc\x0c\x7e\xba\xbc\xbc\x6c\x95\xff\xd0\xa4\xfe\xa9\xee\x04\xe0\x7b\x54\x59\x28\x15\x95\xa8\x28\xf6\xa1\x3f\xfa\xc8\x67\x80\xd6\x14\xf1\xcf\x52\x29\xb9\xfb\x8a\xdc\xd2\x04\xce\x17\x75\x3c\x93\x46\xd7\x7d\x9c\x8c\xa7\xc2\xdf\xc2\x15\xf8\xff\xe2\x12\xf7\xce\x52\xcf\xf4\x24\xd0\x75\xac\x9c\xae\xd9\xaa\x06\x2e\x93\x57\xda\xeb\x04\xf3\x3c\x2e\x0f\x3c\x1c\xf3\x9a\xb4\xb7\x53\x28\x50\x17\x0b\xbe\x96\x8a\x99\x62\x33\x28\x1c\x48\x4c\x61\xe7\xe9\x1b\x90\xac\xaf\x3a\xe0\x3a\x31\x8d\x42\x0b\xb2\xf6\x01\xb2\x50\xf6\x1d\x60\xa1\xe0\x11\x2e\xc7\xf7\x16\x2d\x37\x4b\x2c\xf1\x85\x71\x66\xf6\x70\xd5\xa3\x32\x6b\xae\x18\xe9\x44\x1b\xa9\x70\x4d\xad\x01\xf7\x25\x4c\x6b\x4b\xf3\xaa\x3c\x82\x26\x4c\xbe\x31\x53\xe4\x0a\x77\x13\x38\x6f\x7b\x38\xf9\xea\xfc\x5d\xc7\xa9\x37\x95\xae\x9a\x9b\xea\xa2\x07\x8e\x1f\xda\xf7\x37\x14\xb8\x26\x05\xf3\x8b\xa0\xa9\x93\xba\xff\xee\x8f\x04\xe3\x2a\xb0\x59\x3f\xbe\xd1\x92\xf1\x78\x12\x8d\x5b\x8a\xe7\x17\xc7\x9e\xa7\x60\xe4\x2c\xf4\x7d\xec\xf5\xa9\xb6\xf2\x88\xa6\xe8\x85\x62\x3a\x52\xff\x3b\xdd\x1f\xa0\xbc\x8e\x03\x93\xee\x3b\x3d\xae\x40\x75\x28\xc8\x5f\x24\xcf\x47\x13\xf5\x7c\x90\x88\x6b\x8e\x17\x79\xae\x48\xeb\x59\x8f\x08\xac\x8f\xa7\x01\x71\xb3\x11\x1a\x47\x7a\x2d\xc8\x69\x80\x7b\x7e\xd1\x81\x3a\x0d\xae\x8e\xb2\xdc\x81\x3c\x44\xc3\x38\x05\x4b\x2c\xe1\x2a\x00\x34\x94\x5d\x9f\xd0\xf3\x31\x9f\xd7\xf1\x09\x68\x26\x83\xf1\x07\xee\xaa\x27\x45\x17\x71\x08\x70\x0a\x68\x06\xab\xda\xdb\xf8\x55\xac\x64\xfd\x82\x8c\xd5\x74\xf5\xf8\xfd\xb0\x15\xcd\xbb\x64\x2c\x5d\x09\x4b\x05\x57\xfd\x41\x34\x1c\xd7\x4b\x35\x2c\xe7\x43\xd8\x43\x83\xd7\xb1\x5b\x4d\xde\x4b\x83\x17\x1c\xcc\xb8\xfb\x3e\x7d\x82\x12\x05\xcb\xe2\xb3\x65\xb5\xa1\x08\x69\xa0\x76\xef\x23\x68\x77\x8f\xac\xb6\x74\xd6\x8d\x73\xc0\x93\xeb\xbf\x66\xf8\x06\x9e\x82\xe4\x7e\xd0\xbb\x81\x62\xb3\x09\xf5\x55\xbb\x05\x3b\xa8\x78\xa8\xb2\xd9\x60\xc5\x0d\x75\x62\x9a\xc2\xc3\x96\x94\x62\x39\x81\x29\x08\x72\x5a\xb9\x39\xd0\xd9\x2d\x15\x65\xc4\xb6\xa4\x92\x91\x79\x10\x94\xad\x15\x4d\xf7\xa4\xf5\x64\x3e\x8c\xad\x2f\xde\x4e\xe8\xdc\x6f\x85\x82\x76\xad\xa3\x7a\xa7\xdc\xa0\x7a\xd5\xcd\x59\x5e\xc7\xa3\x01\x75\x4b\x4f\x32\x36\x00\xf5\xe1\xd5\x3b\xa9\xc7\x9a\x77\xe5\x7b\xd8\x53\x0d\xde\xb7\xde\xbb\xf2\xc1\x2c\x3b\x81\xa4\x86\xa2\x20\x79\xc3\x01\x84\x09\x76\x2f\xd0\x28\xaf\x23\xd9\x2d\xad\x01\x21\xd5\x06\xf9\x81\x60\x26\xdc\x1a\xee\xd6\x57\xc7\xbd\x15\xec\x4f\x4b\x50\xa2\x29\x92\xe3\x57\xab\x31\xff\xdf\xb1\x39\xba\xd1\xfc\x5b\xea\xfa\x38\xc7\x49\xab\x49\xfe\xfc\x0e\x75\xee\xef\x5b\xf4\x16\xfd\x1d\x00\x00\xff\xff\xf0\x55\x29\xf1\x71\x0d\x00\x00" +var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xe9\xd5\x70\xb2\x48\x8d\x2e\x5a\x6c\x8a\x06\x6d\xba\x7b\x9e\x88\x63\x8b\x08\x4d\xaa\xfc\xb1\x61\x04\x79\xf7\x82\x12\x25\x8b\xb2\x94\xb8\x45\x7b\x59\x1d\x82\x98\x9c\x9f\x6f\xbe\x99\xe1\x0c\xdf\x55\x4a\x5b\x58\xeb\x63\x65\x55\x12\x7e\x7d\x16\xea\xf0\xa4\x5e\x48\xc2\x46\xab\x1d\xcc\xba\xdf\xb3\x4e\xc2\xc9\x2d\x7f\x16\x14\x49\xf5\xcf\x3a\xc9\x07\x55\xbc\x10\xab\xcf\x4c\x10\xec\x1f\xcd\x92\x24\xcf\x73\x78\xd2\x28\x0d\x16\x96\x2b\x09\xb6\x44\x0b\x08\x85\x33\x56\xb1\x23\x54\x5a\xed\x39\x23\x0d\x07\xe5\x04\x03\xc3\xb7\xb2\x56\xb1\x0a\x0a\x4d\x68\x09\x10\x4c\x89\x9a\x18\x60\x51\x28\x27\x2d\xa0\x64\x80\x12\x9c\x14\xb5\xa7\x5a\xbc\xbd\xdb\x28\x0d\x08\xce\x90\x4e\x12\x7b\xf2\x9a\x26\x00\x00\x1b\x27\xc4\x3d\xdb\x71\xf9\xe8\x9e\x05\x2f\xbe\xd0\x71\x19\xa8\xc9\xbe\xd0\xf1\x81\x1b\xfb\x93\xb4\xfa\xb8\x80\x3c\x87\x6f\xc4\xb7\xa5\x5d\xc2\x0f\x37\x37\x37\x9d\xf2\x9f\x86\xf4\x3f\xd5\x9d\x03\xbc\x26\xb5\x85\x4a\x53\x85\x9a\xd2\x10\xfa\x63\x88\x7c\x09\xe8\x6c\x99\xfe\xa8\xb4\x56\x87\xaf\x28\x1c\xcd\xe1\xea\xbe\x89\x67\xde\xea\xfa\x4f\x90\x0d\x54\x84\x5b\xb8\x85\xf0\x5f\x5a\xe1\xd1\x5b\x1a\x98\x9e\x47\xba\x9e\x95\xcb\x35\x3b\xd5\xc8\x65\xf6\x42\x47\x93\x21\x63\x69\x75\xe2\xe1\x9c\xd7\xac\xbb\x5d\x40\x89\xa6\xbc\x17\x5b\xa5\xb9\x2d\x77\xa3\xc2\x91\xc4\x02\x0e\x81\xbe\x11\xc9\xe6\xaa\x07\xae\x17\xd3\x24\xb4\x28\x6b\x1f\x20\x8b\x65\xdf\x01\x16\x0b\x9e\xe1\xf2\x7c\xef\xd1\x09\xbb\xc6\x0a\x9f\xb9\xe0\xf6\x08\xb7\x03\x2a\x8b\xf6\x8a\x93\xc9\x8c\x55\x1a\xb7\xd4\x19\xf0\x5f\xc6\x8d\x71\xb4\xaa\xcb\x23\x6a\xbf\xec\x1b\xb7\x25\xd3\x78\x98\xc3\x55\xd7\xbd\xd9\x57\xef\xef\x2e\xcd\x83\xa9\x7c\xd3\xde\xd4\x17\x03\x70\xe2\xd4\xa5\xbf\xa2\xc4\x2d\x69\x58\x5d\x47\xed\x9c\x35\xfd\xf7\x70\x26\x98\xd6\x81\x2d\x87\xf1\x4d\x96\x4c\xc0\x93\x19\xdc\x53\xba\xba\x3e\xf7\xbc\x00\xab\x96\xb1\xef\x73\xaf\x7f\x34\x56\x1e\xd1\x96\x83\x50\x6c\x4f\xea\x7f\xa7\xfb\x03\x94\x77\x69\x64\xd2\x7f\x97\xc7\x15\xa9\x8e\x05\xf9\xb3\x12\x6c\x32\x51\x4f\x27\x89\xb4\xe1\xf8\x9e\x31\x4d\xc6\x2c\x07\x44\x60\x73\xbc\x88\x88\x5b\x4e\xd0\x38\xd1\x6b\x51\x4e\x23\xdc\xab\xeb\x1e\xd4\x45\x74\x75\x96\xe5\x1e\xe4\x31\x1a\xa6\x29\x58\x63\x05\xb7\x11\xa0\xb1\xec\x86\x84\x5e\x4d\xf9\xbc\x4b\x2f\x40\x33\x1f\x8d\x3f\x72\x57\x3f\x29\xa6\x4c\x63\x80\x0b\x40\x3b\x5a\xd5\xc1\xc6\x2f\x72\xa3\x9a\x17\x64\xaa\xa6\xeb\xc7\xef\xbb\xad\x68\xd1\x27\x63\xed\x4b\x58\x69\xb8\x1d\x0e\xa2\xf1\xb8\x9e\xeb\x61\xb9\x1a\xc3\x1e\x1b\xbc\x4b\xfd\x52\xf2\x5e\x1a\x82\xe0\x68\xc6\xfd\xf7\xe9\x13\x54\x28\x79\x91\xce\xd6\xf5\x86\x22\x95\x85\xc6\x7d\x88\xa0\xdb\x3d\x8a\xc6\xd2\xac\x1f\xe7\x88\x27\xdf\x7f\xed\xf0\x8d\x3c\x45\xc9\xfd\xa0\x77\x23\xc5\x76\x13\x1a\xaa\xf6\x0b\x76\x54\xf1\x54\x65\xcb\xd1\x8a\x1b\xeb\xc4\x3c\x87\xdf\xf6\xa4\x35\x67\x04\xb6\x24\x60\xb4\xf1\x73\xa0\xb7\x55\x6a\x2a\x88\xef\x49\x67\x13\xf3\x20\x2a\x5b\x27\xdb\xee\xc9\x9b\xc9\x7c\x1a\x5b\xbf\x07\x3b\xb1\xf3\xb0\x15\x4a\x3a\x74\x8e\x9a\x9d\x72\x87\xfa\xc5\xb4\x67\xac\x89\xc7\x00\x9a\x8e\x9e\x6c\x6a\x00\x9a\xd3\xab\x77\x51\x8f\xb5\xef\xca\x6b\xdc\x53\x2d\xde\xb7\xc1\xbb\xf2\xc1\x2c\xbb\x80\xa4\x96\xa2\x28\x79\xe3\x01\xc4\x09\xf6\x2f\xd0\x24\xaf\x13\xd9\xad\x9c\x05\xa9\xf4\x0e\xc5\x89\x60\x2e\xfd\x1a\xee\xd7\x57\xcf\xbd\x93\xfc\x2f\x47\x50\xa1\x2d\xb3\xf3\x57\xab\x35\xff\xdf\xb1\x39\xb9\xd1\xfc\x5b\xea\x86\x38\xa7\x49\x6b\x48\xfe\xfc\x0e\x75\xfe\xef\x5b\xf2\x96\xfc\x1d\x00\x00\xff\xff\x44\x3c\xd7\x13\x6b\x0d\x00\x00" func lockedtokensAdminCustody_create_account_with_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3900,11 +3879,11 @@ func lockedtokensAdminCustody_create_account_with_lease_accountCdc() (*asset, er } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_account_with_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0x51, 0xd3, 0x47, 0xdd, 0x63, 0x73, 0x17, 0xbf, 0xbb, 0x20, 0xd8, 0x4d, 0xdf, 0x4d, 0x44, 0xf6, 0x54, 0x7b, 0xfb, 0x61, 0x6f, 0x43, 0x34, 0xbc, 0x8e, 0x20, 0xaa, 0x47, 0xde, 0x4, 0xef}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0xea, 0x4d, 0xc, 0xc6, 0x6b, 0x93, 0xc7, 0x45, 0xb4, 0x90, 0x7c, 0xb1, 0xdc, 0xc1, 0xd5, 0x1a, 0xd8, 0x8d, 0x8c, 0xb3, 0x98, 0x32, 0x8f, 0x37, 0x9a, 0x21, 0x37, 0x53, 0x2a, 0x88, 0x7d}} return a, nil } -var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x39\x04\x32\xe0\x48\xe9\xd5\x70\xb2\x70\x9d\x2c\x5a\x24\x6d\x82\x4d\xb0\x7b\x9e\x88\xb4\x45\x84\x26\x55\x92\xb2\x2b\x2c\xf2\xee\x05\x29\x4a\x16\x65\x6a\x93\x16\xed\xa5\x3a\x04\x31\x39\x3f\xdf\x7c\x33\x9c\x19\xb6\xab\xa4\x32\xb0\x56\x4d\x65\x64\xe2\x7f\x7d\xe6\xf2\xf0\x2c\x5f\xa9\x80\x8d\x92\x3b\x38\xeb\x7f\x9f\xf5\x12\xb5\xd8\xb2\x17\x4e\x03\xa9\xe1\x59\x2f\x79\x2f\x8b\x57\x4a\xdc\x99\x6e\x05\x2f\xff\xbc\x7f\x58\xdf\xdd\xde\x3c\x3f\xdc\xdd\xfe\xbe\xba\xb9\xf9\x72\xfb\xf4\x94\x24\x79\x9e\xc3\xb3\x42\xa1\xb1\x30\x4c\x0a\x30\x25\x1a\x40\x28\x6a\x6d\x24\x69\xa0\x52\x72\xcf\x08\x55\x70\x90\x35\x27\xa0\xd9\x56\x38\x15\x23\xa1\x50\x14\x0d\x05\x04\x5d\xa2\xa2\x04\xb0\x28\x64\x2d\x0c\x6c\xa4\x02\x84\x5a\x5b\xa5\x52\x02\x72\x45\x91\x34\x4e\xab\x44\x0d\xa6\xa4\x4c\x41\x2d\xb8\x03\xd8\x6b\xb5\xd6\x88\x15\x6b\x31\x95\xf4\x54\xc8\xe9\x4b\x87\xc2\xda\x01\x33\x00\x8e\x5c\xcb\x24\x19\x9c\xa4\x09\x00\xc0\xa6\xe6\x7c\x45\x76\x4c\x3c\xd6\x2f\x9c\x15\x77\xb4\x59\x78\xd6\xb3\x3b\xda\xdc\x33\x6d\x6e\x85\x51\xcd\x1c\xf2\x1c\xbe\x51\xb6\x2d\xcd\x02\x7e\xba\xbc\xbc\x4c\x66\x00\xdf\x13\x67\xa2\x52\xb4\x42\x45\x53\xcf\xc9\xa3\xa7\x64\x01\x58\x9b\x32\xfd\x59\x2a\x25\x0f\x5f\x91\xd7\x74\x06\xe7\xab\x16\xe9\xdc\xc5\xef\x7f\x78\xc1\x27\x23\x15\x6e\xe9\x1c\xd6\x58\xe1\x0b\xe3\xcc\x30\xaa\x8f\x2a\xb3\xce\x9d\xfd\x38\x35\x9e\x56\x7f\x0b\x57\xe0\xff\x4b\x2b\x6c\xac\xf3\x11\x9a\xd9\x51\x39\x50\xcc\x5e\x69\xa3\x33\x24\x24\xad\x8e\x04\x9c\x92\x92\xf5\xb7\x73\xcb\x72\xb9\xe2\x5b\xa9\x98\x29\x77\x51\xe1\x40\x62\x0e\x07\xcf\x5b\x44\xb2\xbd\x9a\x85\x91\xed\xb1\xe6\xa6\x67\xa1\x81\xab\x11\xe4\x62\x40\x50\xa6\x5b\xda\x7a\x03\xf6\xcb\x98\xd6\x35\x5d\x3a\x5a\x83\xf2\xcf\xbe\x31\x53\x12\x85\x87\x19\x9c\xf7\xaf\x27\xfb\x6a\xfd\x5d\xa7\xb9\x37\x95\x6f\xba\x1b\x77\x31\x02\xc7\x8f\x0f\xe7\x37\x14\xb8\xa5\x0a\x96\x17\xc1\x73\xca\xda\x5a\xbd\x3f\x11\x4c\x5d\x60\x8b\x71\x7c\x93\xa9\xf1\x78\x32\x8d\x7b\x9a\x2e\x2f\x4e\x3d\xcf\xc1\xc8\x45\xe8\xfb\xd4\xab\xaf\xab\x47\x34\xe5\x28\x14\x33\x90\xfa\xcf\xe9\x7e\x07\xe5\x75\x1a\x98\xb4\xdf\xc7\xe3\x0a\x54\x63\x41\xfe\x22\x39\x99\x4c\xd4\xf3\x51\x22\x04\xd1\x12\xbe\x22\x44\x51\xad\x17\x23\x56\xb0\x3d\x9e\x07\x1a\x43\x46\x17\x13\xfc\x26\x11\xa0\x83\x6e\x10\x66\x3d\xb0\xbe\xbc\x18\x04\x33\x76\x3c\xaa\x83\x41\x50\x31\xa2\xa6\x49\x5a\x63\x05\x57\x01\xa0\x58\xfe\x7d\xca\xcf\xa7\x7c\x5e\xa7\x1f\x40\x33\x8b\xc6\x1f\xb8\x73\x6d\x47\x97\x69\x08\x70\x0e\x68\xa2\x75\xef\x6d\xfc\x2a\x36\xb2\xed\x31\x53\x55\xef\xda\xd0\xff\xb6\xe6\xf9\x90\x8c\xb5\x2d\x72\xa9\xe0\x6a\x3c\x12\xe2\x71\xbd\xb8\x79\xb5\x8c\x61\x0f\x0d\x5e\xa7\x76\x6d\xf8\x51\x1a\xbc\x60\x34\xe3\xf6\xfb\xf4\x09\x2a\x14\xac\x48\xcf\xd6\x6e\x7b\x10\xd2\x40\xeb\x1e\x62\xd3\x5f\xaa\xb3\x61\x9c\x11\x4f\xf6\x51\x76\x63\x30\xf0\x14\x24\xf7\xef\x3c\xe8\x6e\xc5\x18\xab\x0e\x0b\x76\xba\x13\xb8\x2a\x5b\x44\x2b\x2e\xf6\x12\xf3\x1c\x1e\xf6\x54\x29\x46\xa8\x5b\x5f\x08\xdd\xd8\x49\x31\xd8\xfb\x14\x2d\x28\xdb\x53\x95\x4d\x4c\x8c\xa0\x6c\x6b\xd1\xbd\x9e\xbc\x9d\xde\xc7\xc1\xf6\xc5\xdb\x09\x9d\xfb\x8d\x4d\xd0\x43\xef\xa8\xdd\xf7\x76\xa8\x5e\x75\x77\x46\xda\x78\x34\xa0\xee\xe9\xc9\xa6\x46\xa4\x3e\xb6\xbf\x0f\xbd\xb1\xae\xaf\x7c\x0f\xdf\x54\x87\xf7\x6d\xd4\x57\xde\x99\x76\x1f\x20\xa9\xa3\x28\xd2\xf8\xc7\x01\x84\x09\xb6\x1d\x68\x92\xd7\x89\xec\x56\xb5\x01\x21\xd5\x0e\xf9\x91\x60\x26\xec\x8a\x6c\x37\x48\xcb\x7d\x2d\xd8\x1f\x35\x85\x0a\x4d\x99\x9d\x76\xad\xce\xfc\xbf\xc7\xe6\xe4\xce\xf3\x4f\xa9\x1b\xe3\x9c\x26\xad\x25\xf9\xf3\x0f\xa8\xb3\x7f\xdf\x92\xb7\xe4\xaf\x00\x00\x00\xff\xff\x7c\x6b\x87\x9d\x0d\x0d\x00\x00" +var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xe9\xd5\x70\xb2\x48\x8d\x2e\x5a\x6c\x8a\x06\x6d\xb0\x7b\x9e\x88\x63\x8b\x08\x4d\xaa\x24\x65\x43\x58\xe4\xdd\x0b\x52\x94\x2c\xca\xd2\xae\x5b\xb4\x97\xea\x10\xc4\xe4\xfc\x7c\xf3\xcd\x70\x66\xf8\xa1\x52\xda\xc2\x56\x37\x95\x55\x49\xf8\xf5\x51\xa8\xd3\x8b\x7a\x23\x09\x3b\xad\x0e\xb0\xe8\x7f\x2f\x7a\x89\x5a\xee\xf9\xab\xa0\x48\x6a\x78\xd6\x4b\x3e\xa9\xe2\x8d\x98\x3f\x33\x41\x70\x78\xb4\x48\x92\x3c\xcf\xe1\x45\xa3\x34\x58\x58\xae\x24\xd8\x12\x2d\x20\x14\xb5\xb1\x8a\x35\x50\x69\x75\xe4\x8c\x34\x9c\x54\x2d\x18\x18\xbe\x97\x5e\xc5\x2a\x28\x34\xa1\x25\x40\x30\x25\x6a\x62\x80\x45\xa1\x6a\x69\x61\xa7\x34\x20\xd4\xc6\x29\x95\x0a\x50\x68\x42\xd6\x78\xad\x12\x0d\xd8\x92\xb8\x86\x5a\x0a\x8f\xa3\xd7\x6a\xad\x31\x27\xd6\x62\x2a\xe9\x52\xc8\xeb\x2b\x8f\xc2\xd9\x01\x3b\x00\x8e\xc2\xa8\x24\x19\x9c\xa4\x09\x00\xc0\xae\x16\xe2\x91\x1d\xb8\x7c\xae\x5f\x05\x2f\x3e\x51\xb3\x0e\x7c\x67\x9f\xa8\x79\xe2\xc6\xfe\x24\xad\x6e\x56\x90\xe7\xf0\x85\xf8\xbe\xb4\x6b\xf8\xe1\xee\xee\x2e\x59\x02\x7c\x4d\xbc\x89\x4a\x53\x85\x9a\xd2\xc0\xc9\x73\xa0\x64\x0d\x58\xdb\x32\xfd\x51\x69\xad\x4e\x9f\x51\xd4\xb4\x84\x9b\xc7\x16\xe9\xca\xc7\x1f\x7e\x04\xc1\x3f\xac\xd2\xb8\xa7\x15\x6c\xb1\xc2\x57\x2e\xb8\xe5\x64\xce\x2a\xcb\xce\x9d\xfb\x04\xd9\x40\x6b\xb8\x85\x7b\x08\xff\xa5\x15\x36\xce\xf9\x08\xcd\xf2\xac\x1c\x29\x66\x6f\xd4\x98\x0c\x19\x4b\xab\x33\x01\x97\xa4\x64\xfd\xed\xca\xb1\x5c\x3e\x8a\xbd\xd2\xdc\x96\x87\x49\xe1\x48\x62\x05\xa7\xc0\xdb\x84\x64\x7b\xb5\x8c\x23\x3b\x62\x2d\x6c\xcf\x42\x03\xf7\x23\xc8\xc5\x80\xa0\xcc\xb4\xb4\xf5\x06\xdc\x97\x71\x63\x6a\xda\x78\x5a\xa3\xc2\xcf\xbe\x70\x5b\x32\x8d\xa7\x25\xdc\xf4\xef\x26\xfb\xec\xfc\x3d\xa4\x79\x30\x95\xef\xba\x1b\x7f\x31\x02\x27\xce\xef\xe3\x57\x94\xb8\x27\x0d\x9b\xdb\xe8\x21\x65\x6d\xad\x3e\x5d\x08\xa6\x3e\xb0\xf5\x38\xbe\xd9\xd4\x04\x3c\x99\xc1\x23\xa5\x9b\xdb\x4b\xcf\x2b\xb0\x6a\x1d\xfb\xbe\xf4\x1a\xea\xea\x19\x6d\x39\x0a\xc5\x0e\xa4\xfe\x73\xba\xbf\x83\xf2\x21\x8d\x4c\xba\xef\xfa\xb8\x22\xd5\xa9\x20\x7f\x56\x82\xcd\x26\xea\xe5\x2c\x11\x83\x68\x09\x7f\x64\x4c\x93\x31\xeb\x11\x2b\xd8\x1e\xaf\x22\x8d\x21\xa3\xeb\x19\x7e\x93\x09\xa0\x83\x6e\x10\x67\x3d\xb2\xbe\xb9\x1d\x04\x33\x76\x3c\xaa\x83\x41\x50\x53\x44\xcd\x93\xb4\xc5\x0a\xee\x23\x40\x53\xf9\x0f\x29\xbf\x99\xf3\xf9\x90\x5e\x81\x66\x39\x19\x7f\xe4\xce\xb7\x1d\x53\xa6\x31\xc0\x15\xa0\x9d\xac\xfb\x60\xe3\x17\xb9\x53\x6d\x8f\x99\xab\x7a\xdf\x86\xfe\xb7\x35\x2f\x86\x64\x6c\x5d\x91\x2b\x0d\xf7\xe3\x91\x30\x1d\xd7\xab\x9f\x57\x9b\x29\xec\xb1\xc1\x87\xd4\x2d\x0c\xdf\x4a\x43\x10\x9c\xcc\xb8\xfb\x3e\x7c\x80\x0a\x25\x2f\xd2\xc5\xd6\x6f\x0f\x52\x59\x68\xdd\xc3\xd4\xf4\x57\x7a\x31\x8c\x73\xc2\x93\x7b\x94\xdd\x18\x8c\x3c\x45\xc9\xfd\x3b\x0f\xba\x5b\x31\xc6\xaa\xc3\x82\x9d\xef\x04\xbe\xca\xd6\x93\x15\x37\xf5\x12\xf3\x1c\x7e\x3b\x92\xd6\x9c\x91\x5f\x5f\x18\xed\xdc\xa4\x18\x6c\x7c\x9a\x0a\xe2\x47\xd2\xd9\xcc\xc4\x88\xca\xb6\x96\xdd\xeb\xc9\xdb\xe9\x7d\x1e\x6c\xbf\x07\x3b\xb1\xf3\xb0\xb1\x49\x3a\xf5\x8e\xda\x7d\xef\x80\xfa\xcd\x74\x67\xac\x8d\xc7\x00\x9a\x9e\x9e\x6c\x6e\x44\x9a\x73\xfb\xbb\xea\x8d\x75\x7d\xe5\x6b\xfc\xa6\x3a\xbc\xef\xa3\xbe\xf2\x9d\x69\x77\x05\x49\x1d\x45\x13\x8d\x7f\x1c\x40\x9c\x60\xd7\x81\x66\x79\x9d\xc9\x6e\x55\x5b\x90\x4a\x1f\x50\x9c\x09\xe6\xd2\xad\xc8\x6e\x83\x74\xdc\xd7\x92\xff\x59\x13\x54\x68\xcb\xec\xb2\x6b\x75\xe6\xff\x3d\x36\x67\x77\x9e\x7f\x4a\xdd\x18\xe7\x3c\x69\x2d\xc9\x1f\xbf\x41\x9d\xfb\xfb\x9e\xbc\x27\x7f\x05\x00\x00\xff\xff\xe2\x38\x62\x8b\x07\x0d\x00\x00" func lockedtokensAdminCustody_create_only_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3920,11 +3899,11 @@ func lockedtokensAdminCustody_create_only_lease_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x76, 0xec, 0x42, 0x51, 0xd6, 0x15, 0x6c, 0x1, 0x33, 0x27, 0x84, 0xfc, 0xa7, 0xd0, 0x18, 0xd5, 0x25, 0x3b, 0x19, 0xa, 0xac, 0x3d, 0xc5, 0xc1, 0x54, 0xed, 0x4d, 0xfb, 0xee, 0x73, 0x29, 0x3c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x16, 0xfa, 0xe7, 0x1, 0x8d, 0x5d, 0xca, 0x94, 0x12, 0x96, 0x29, 0x39, 0xb8, 0xa6, 0x56, 0x88, 0xde, 0xb0, 0xdf, 0x9b, 0xfe, 0xdd, 0xd, 0x16, 0xaa, 0xa7, 0xb5, 0x85, 0xb3, 0xbc, 0x7c, 0xe3}} return a, nil } -var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x39\x04\x32\xe0\x48\xee\xb1\x86\x93\x85\xeb\x64\xd1\x22\x69\x13\x6c\xd2\xdd\xf3\x44\x1a\x5b\x44\x68\x52\x25\x29\xbb\xc2\x22\xef\x5e\x50\xa2\x64\x51\x96\x12\xa7\x68\x2f\xab\x43\x10\x51\xf3\xf3\xcd\x37\xc3\x99\x31\xdb\xe6\x52\x19\x58\xa9\x32\x37\x32\x70\x6f\x9f\xb9\xdc\x3f\xc9\x17\x12\xb0\x56\x72\x0b\x67\xed\xfb\x59\x2b\x51\x88\x0d\x7b\xe6\xe4\x49\x75\xcf\x5a\xc9\x3b\x99\xbc\x50\x5a\x9d\xe9\x5a\x70\xf6\xf7\xdd\xfd\xea\xf6\xe6\xfa\xe9\xfe\xf6\xe6\x8f\xe5\xf5\xf5\x97\x9b\xc7\xc7\x20\x88\xe3\x18\x9e\x14\x0a\x8d\x89\x61\x52\x80\xc9\xd0\x00\x42\x52\x68\x23\xd3\x12\x72\x25\x77\x2c\x25\x05\x7b\x59\xf0\x14\x34\xdb\x88\x4a\xc5\x48\x48\x14\xa1\x21\x40\xd0\x19\x2a\x4a\x01\x93\x44\x16\xc2\xc0\x5a\x2a\x40\x28\xb4\x55\xca\x24\x20\x57\x84\x69\x59\x69\x65\xa8\xc1\x64\xc4\x14\x14\x82\x57\x00\x5b\xad\xda\x5a\x6a\xc5\x6a\x4c\x19\x1d\x0b\x55\xfa\xb2\x42\x61\xed\x80\xe9\x00\x47\xae\x65\x10\x74\x4e\xc2\x00\x00\x20\x47\x65\x18\xf2\x65\xba\x65\xe2\xa1\x78\xe6\x2c\xb9\xa5\x72\xee\x88\x8f\x6e\xa9\xbc\x63\xda\xdc\x08\xa3\xca\x29\xc4\x31\x7c\x23\xb6\xc9\xcc\x1c\x7e\x9a\xcd\xba\xea\x7f\x6a\x52\x1f\xd0\xfe\x79\x36\x0b\x26\x00\xdf\x83\xda\x86\xa2\x1c\x15\x85\x8e\xd3\x07\x47\xe9\x1c\xb0\x30\x59\xf8\x8b\x54\x4a\xee\xbf\x22\x2f\x68\x02\xe7\xcb\x3a\xd2\x69\xc5\x9f\x7b\x71\x82\x8f\x46\x2a\xdc\xd0\x14\x56\x98\xe3\x33\xe3\xcc\x30\xd2\x07\x95\x49\xe3\xce\x3e\x9c\x8c\x4b\x8b\xfb\x0a\x97\xe0\xfe\x0b\x73\x2c\xad\xf3\x1e\x9a\xc9\x41\xd9\x53\x8c\x5e\xa8\xd4\x11\xa6\x69\x98\x1f\xe2\x1f\x24\x35\x6a\x05\xa6\x36\x51\xd9\x92\x6f\xa4\x62\x26\xdb\x8e\xc9\x7b\x42\x53\xd8\x3b\xf2\x86\x85\xeb\xaf\x93\x8f\x83\xf4\x52\xf7\x3e\x46\x5f\xfc\x6d\x88\xbe\x6c\x83\xd0\x4b\xc2\x0e\x0b\x6e\xda\x84\x95\x70\xd9\x03\x9e\x74\x72\x19\xe9\x3a\xc3\xad\x01\xfb\x44\x4c\xeb\x82\x16\x55\x05\x78\x37\x3d\xfa\xc6\x4c\x96\x2a\xdc\x4f\xe0\xbc\x6d\x14\xd1\x57\xeb\xef\x2a\x8c\x9d\xa9\x78\xdd\x7c\xa9\x3e\xf4\xc0\xf1\x43\x8f\xf8\x1d\x05\x6e\x48\xc1\xe2\xc2\xeb\x1c\x51\x7d\x2d\xef\x8e\x04\xc3\x2a\xb0\x79\x3f\xbe\xd1\x2a\x72\x78\x22\x8d\x3b\x0a\x17\x17\xc7\x9e\xa7\x60\xe4\xdc\xf7\x7d\xec\xd5\x5d\x81\x07\x34\x59\x2f\x14\xd3\x91\xfa\xdf\xe9\x7e\x07\xe5\x55\xe8\x99\xb4\xcf\xe9\x71\x79\xaa\x43\x41\xfe\x2a\x79\x3a\x9a\xa8\xa7\x83\x84\x0f\xa2\x26\x7c\x99\xa6\x8a\xb4\x9e\xf7\x58\xc1\xfa\x78\xea\x69\x74\x19\x9d\x8f\xf0\x1b\x0c\x00\xed\x34\x2e\x3f\xeb\x9e\xf5\xc5\x45\x27\x98\xbe\xe3\x5e\x1d\x74\x82\x1a\x22\x6a\x9c\xa4\x15\xe6\x70\xe9\x01\x1a\xca\xbf\x4b\xf9\xf9\x98\xcf\xab\xf0\x04\x34\x93\xc1\xf8\x3d\x77\x55\xeb\xd1\x59\xe8\x03\x9c\x02\x9a\xc1\xba\x77\x36\x7e\x13\x6b\x59\xf7\x98\xb1\xaa\xaf\x1a\xe5\x0f\x5b\xf3\xbc\x4b\xc6\xca\x16\xb9\x54\x70\xd9\x9f\x5e\xc3\x71\x3d\x57\xa3\x75\x31\x84\xdd\x37\x78\x15\xda\x0d\xe9\xad\x34\x38\xc1\xc1\x8c\xdb\xe7\xd3\x27\xc8\x51\xb0\x24\x3c\x5b\x55\x8b\x92\x90\x06\x6a\xf7\x30\xb4\xe8\x48\x75\xd6\x8d\x73\xc0\x93\xbd\x94\xcd\xc4\xf6\x3c\x79\xc9\xfd\xc8\x85\x6e\xb6\xa9\xbe\x6a\xb7\x60\xc7\x3b\x41\x55\x65\xf3\xc1\x8a\x1b\xba\x89\x71\x0c\xf7\x3b\x52\x8a\xa5\x54\x6d\x6a\x29\xad\xed\xa4\xe8\xac\xb8\x8a\x12\x62\x3b\x52\xd1\xc8\xc4\xf0\xca\xb6\x10\xcd\xed\x89\xeb\x09\x7e\x18\x6c\x5f\x9c\x1d\xdf\xb9\x5b\x4e\x05\xed\x5b\x47\xf5\x6a\xbb\x45\xf5\xa2\x9b\xb3\xb4\x8e\x47\x03\xea\x96\x9e\x68\x6c\x44\xea\x43\xfb\x3b\xe9\x8e\x35\x7d\xe5\xbb\x7f\xa7\x1a\xbc\xaf\xbd\xbe\xf2\xce\xb4\x3b\x81\xa4\x86\xa2\x81\xc6\xdf\x0f\xc0\x4f\xb0\xed\x40\xa3\xbc\x8e\x64\x37\x2f\x0c\x08\xa9\xb6\xc8\x0f\x04\x33\x61\x7f\x0d\xd8\x65\xd7\x72\x5f\x08\xf6\x57\x41\x90\xa3\xc9\xa2\xe3\xae\xd5\x98\xff\xef\xd8\x1c\xdd\x79\xfe\x2d\x75\x7d\x9c\xe3\xa4\xd5\x24\x7f\x7e\x83\x3a\xfb\xf7\x35\x78\x0d\xfe\x09\x00\x00\xff\xff\xee\x48\xf0\x0e\xf8\x0d\x00\x00" +var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\x7c\x08\x64\xc0\x91\xd2\x63\x0d\x27\x8b\xd4\xe8\xa2\xc5\xa6\x68\xd0\xa6\xbb\xe7\x89\x38\xb6\x88\xd0\xa4\x4a\x52\x36\x84\x20\xff\xbd\xa0\x44\x3d\x28\x4b\x79\x14\xed\x65\x75\x08\x22\x6a\x1e\xdf\x7c\x33\x9c\x19\xf3\x43\xa1\xb4\x85\xad\xae\x0a\xab\x22\xff\xf6\x59\xa8\xd3\x83\x7a\x22\x09\x3b\xad\x0e\xb0\xe8\xde\x17\x9d\x44\x29\xf7\xfc\x51\x50\x20\x35\x3c\xeb\x24\xef\x54\xf6\x44\xac\x3e\x33\x5e\x70\x78\xb4\x88\xa2\x34\x4d\xe1\x41\xa3\x34\x98\x59\xae\x24\xd8\x1c\x2d\x20\x64\xa5\xb1\x8a\x55\x50\x68\x75\xe4\x8c\x34\x9c\x54\x29\x18\x18\xbe\x97\xb5\x8a\x55\x90\x69\x42\x4b\x80\x60\x72\xd4\xc4\x00\xb3\x4c\x95\xd2\xc2\x4e\x69\x40\x28\x8d\x53\xca\x15\xa0\xd0\x84\xac\xaa\xb5\x72\x34\x60\x73\xe2\x1a\x4a\x29\x6a\x1c\x9d\x56\x63\x8d\x39\xb1\x06\x53\x4e\xe7\x42\xb5\xbe\xaa\x51\x38\x3b\x60\x07\xc0\x51\x18\x15\x45\x83\x93\x38\x02\x00\x28\x50\x5b\x8e\xe2\x96\x1d\xb8\xbc\x2f\x1f\x05\xcf\xbe\x50\xb5\xf6\x94\x27\x5f\xa8\xba\xe3\xc6\xfe\x2c\xad\xae\x56\x90\xa6\xf0\x8d\xf8\x3e\xb7\x6b\xf8\xe1\xea\x6a\xa8\xfe\x97\x21\xfd\x01\xed\x1f\xaf\xae\xa2\x25\xc0\x73\xd4\xd8\xd0\x54\xa0\xa6\xd8\x73\x7a\xef\x29\x5d\x03\x96\x36\x8f\x7f\x52\x5a\xab\xd3\x57\x14\x25\x2d\xe1\xe2\xb6\x89\x74\x55\xf3\xe7\x5f\xbc\xe0\x9f\x56\x69\xdc\xd3\x0a\xb6\x58\xe0\x23\x17\xdc\x72\x32\xbd\xca\xb2\x75\xe7\x1e\x41\xd6\xa7\xc5\x7f\x85\x6b\xf0\xff\xc5\x05\x56\xce\xf9\x08\xcd\xb2\x57\x0e\x14\x93\x27\xaa\x4c\x82\x8c\xc5\x45\x1f\xff\x24\xa9\x49\x27\xb0\x72\x89\xca\x6f\xc5\x5e\x69\x6e\xf3\xc3\x9c\x7c\x20\xb4\x82\x93\x27\x6f\x5a\xb8\xf9\xba\xfc\x38\xc8\x20\x75\x6f\x63\x0c\xc5\x5f\x87\x18\xca\xb6\x08\x83\x24\x1c\xb1\x14\xb6\x4b\x58\x05\xd7\x23\xe0\xd9\x20\x97\x89\x69\x32\xdc\x19\x70\x4f\xc2\x8d\x29\x69\x53\x57\x40\x70\xc7\x93\x6f\xdc\xe6\x4c\xe3\x69\x09\x17\x5d\x8b\x48\xbe\x3a\x7f\x37\x71\xea\x4d\xa5\xbb\xf6\x4b\xfd\x61\x04\x4e\xf4\xad\xe0\x37\x94\xb8\x27\x0d\x9b\xcb\xa0\x67\x24\xcd\xb5\xbc\x3b\x13\x8c\xeb\xc0\xd6\xe3\xf8\x66\xab\xc8\xe3\x49\x0c\x1e\x29\xde\x5c\x9e\x7b\x5e\x81\x55\xeb\xd0\xf7\xb9\x57\x7f\x05\xee\xd1\xe6\xa3\x50\xec\x40\xea\x7f\xa7\xfb\x0d\x94\x37\x71\x60\xd2\x3d\xef\x8f\x2b\x50\x9d\x0a\xf2\x17\x25\xd8\x6c\xa2\x1e\x7a\x89\x10\x44\x43\xf8\x2d\x63\x9a\x8c\x59\x8f\x58\xc1\xe6\x78\x15\x68\x0c\x19\x5d\xcf\xf0\x1b\x4d\x00\x1d\x34\xae\x30\xeb\x81\xf5\xcd\xe5\x20\x98\xb1\xe3\x51\x1d\x0c\x82\x9a\x22\x6a\x9e\xa4\x2d\x16\x70\x1d\x00\x9a\xca\xbf\x4f\xf9\xc5\x9c\xcf\x9b\xf8\x1d\x68\x96\x93\xf1\x07\xee\xea\xd6\x63\xf2\x38\x04\xb8\x02\xb4\x93\x75\xef\x6d\xfc\x2a\x77\xaa\xe9\x31\x73\x55\x5f\x37\xca\xef\xb6\xe6\xc5\x90\x8c\xad\x2b\x72\xa5\xe1\x7a\x3c\xbd\xa6\xe3\x7a\xac\x47\xeb\x66\x0a\x7b\x68\xf0\x26\x76\xbb\xd1\x6b\x69\xf0\x82\x93\x19\x77\xcf\xa7\x4f\x50\xa0\xe4\x59\xbc\xd8\xd6\x8b\x92\x54\x16\x1a\xf7\x30\xb5\xe8\x28\xbd\x18\xc6\x39\xe1\xc9\x5d\xca\x76\x62\x07\x9e\x82\xe4\x7e\xe4\x42\xb7\xdb\xd4\x58\x75\x58\xb0\xf3\x9d\xa0\xae\xb2\xf5\x64\xc5\x4d\xdd\xc4\x34\x85\xdf\x8f\xa4\x35\x67\x54\x6f\x6a\x8c\x76\x6e\x52\x0c\x96\x5b\x4d\x19\xf1\x23\xe9\x64\x66\x62\x04\x65\x5b\xca\xf6\xf6\xa4\xcd\x04\xef\x07\xdb\x1f\xde\x4e\xe8\xdc\x2f\xa7\x92\x4e\x9d\xa3\x66\xb5\x3d\xa0\x7e\x32\xed\x19\x6b\xe2\x31\x80\xa6\xa3\x27\x99\x1b\x91\xa6\x6f\x7f\xef\xba\x63\x6d\x5f\x79\x0e\xef\x54\x8b\xf7\x65\xd4\x57\xde\x98\x76\xef\x20\xa9\xa5\x68\xa2\xf1\x8f\x03\x08\x13\xec\x3a\xd0\x2c\xaf\x33\xd9\x2d\x4a\x0b\x52\xe9\x03\x8a\x9e\x60\x2e\xdd\xaf\x01\xb7\xec\x3a\xee\x4b\xc9\xff\x2e\x09\x0a\xb4\x79\x72\xde\xb5\x5a\xf3\xff\x1d\x9b\xb3\x3b\xcf\xbf\xa5\x6e\x8c\x73\x9e\xb4\x86\xe4\xcf\xaf\x50\xe7\xfe\xbe\x44\x2f\xd1\x3f\x01\x00\x00\xff\xff\x54\x81\x36\x64\xf2\x0d\x00\x00" func lockedtokensAdminCustody_create_only_shared_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3940,11 +3919,11 @@ func lockedtokensAdminCustody_create_only_shared_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_shared_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x62, 0xe0, 0x84, 0x6d, 0x58, 0xb1, 0x17, 0xf2, 0x32, 0xbd, 0xf8, 0x49, 0x7, 0x35, 0xd2, 0xbd, 0xb, 0xce, 0x42, 0x8f, 0x70, 0x52, 0xe9, 0x62, 0x91, 0x27, 0xb5, 0x7f, 0x4d, 0x9, 0x0, 0xb0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0xe5, 0xf1, 0xe3, 0x9c, 0x8f, 0xa1, 0xf1, 0xe8, 0x70, 0x0, 0xa1, 0xcd, 0x92, 0x19, 0x17, 0x49, 0xf2, 0x4e, 0x68, 0xef, 0x32, 0x85, 0xb6, 0xac, 0x41, 0x2a, 0x9b, 0xfe, 0xa8, 0x96, 0x31}} return a, nil } -var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x39\x04\x32\xe0\x48\xde\x63\x0d\x27\x0b\xd7\xc9\xa2\x45\xd2\x26\xd8\xa4\xbb\xe7\x89\x34\xb6\x88\xc8\xa4\x4a\x52\x76\x8d\x45\xde\xbd\xa0\x44\xc9\xa2\x44\x25\x4e\xd1\x5e\xaa\x43\x10\x89\xf3\xf3\xcd\x37\xc3\x99\x31\xdb\x16\x42\x6a\x58\xc9\x43\xa1\x45\x60\xdf\xbe\xe4\x62\xff\x24\x5e\x88\xc3\x5a\x8a\x2d\x9c\xb5\xef\x67\xad\x44\xc9\x37\xec\x39\x27\x47\xaa\xfb\xad\x95\xbc\x13\xc9\x0b\xa5\xd5\x37\x55\x0b\xce\xfe\xba\xbb\x5f\xdd\xde\x5c\x3f\xdd\xdf\xde\xfc\xbe\xbc\xbe\xfe\x7a\xf3\xf8\x18\x04\x71\x1c\xc3\x93\x44\xae\x30\xd1\x4c\x70\xd0\x19\x6a\x40\x48\x4a\xa5\x45\x7a\x80\x42\x8a\x1d\x4b\x49\xc2\x5e\x94\x79\x0a\x8a\x6d\x78\xa5\xa2\x05\x24\x92\x50\x13\x20\xa8\x0c\x25\xa5\x80\x49\x22\x4a\xae\x01\x79\x0a\xc8\xa1\xe4\x79\x05\xa1\x12\x6f\xce\xd6\x42\x02\x42\xa9\x48\x06\x81\x3e\x7a\x0d\x03\x00\x80\x02\xa5\x66\x98\x2f\xd3\x2d\xe3\x0f\xe5\x73\xce\x92\x5b\x3a\xcc\x2d\x47\xd1\x2d\x1d\xee\x98\xd2\x37\x5c\xcb\xc3\x14\xe2\x18\xbe\x13\xdb\x64\x7a\x0e\x9f\x66\xb3\xae\xfa\x1f\x8a\xe4\x07\xb4\x7f\xb2\xda\xeb\x32\xff\xa8\xea\xa7\xd9\x6c\x16\x4c\xe0\x47\x50\xbb\x97\x54\xa0\xa4\xd0\x32\xf7\x60\x89\x9b\x03\x96\x3a\x0b\x7f\x16\x52\x8a\xfd\x37\xcc\x4b\x9a\xc0\xf9\xb2\xa6\xa3\xd5\x35\x4f\x4e\xda\x32\x69\x4f\xe1\x12\xec\x7f\x61\x81\x07\x63\xa9\x67\x7a\xe2\xe8\x1a\x52\x4f\xd7\x6c\x55\x1d\x97\xd1\x0b\x1d\x54\x84\x69\x1a\x16\x47\x1a\xbc\x69\x89\x5a\x81\x29\x64\xa8\xb2\x65\xbe\x11\x92\xe9\x6c\x3b\x26\xef\x08\x4d\x61\x6f\x39\xf4\x0b\xd7\xa7\x93\x8f\x83\x74\x32\xf8\x3e\x46\x57\xfc\x6d\x88\xae\x6c\x83\xb0\x85\xd8\xa1\xdf\x0b\x70\x50\x5f\x6f\xa0\x1b\xca\x8e\x40\x1b\x0a\x0e\x70\x99\xd2\xd8\x61\x99\xeb\x15\x16\xf8\xcc\x72\xa6\x0f\x70\xd9\x23\x34\x69\x8e\x18\xa9\x48\x69\x21\x71\x43\xad\x01\xf3\x44\x4c\xa9\x92\x16\x55\x25\x3b\xed\x26\xfa\xce\x74\x96\x4a\xdc\x4f\xe0\xbc\xed\x56\xd1\x37\xe3\xef\x2a\x8c\xad\xa9\x78\xdd\x9c\x54\x07\x3d\x70\xf9\xb1\x51\xfd\x86\x1c\x37\x24\x61\x71\xe1\xb4\xaf\xa8\xee\x34\x77\x03\xc1\xb0\x0a\x6c\xde\x8f\x6f\xb4\xba\x2d\x9e\x48\xe1\x8e\xc2\xc5\xc5\xd0\xf3\x14\xb4\x98\xbb\xbe\x87\x5e\x1f\x6b\x2b\x0f\xa8\xb3\x5e\x28\xba\x23\xf5\x9f\xd3\xfd\x0e\xca\xab\xd0\x31\x69\x9e\xd3\xe3\x72\x54\x7d\x41\xfe\x22\xf2\x74\x34\x51\x4f\x47\x09\x17\x44\x4d\xf8\x32\x4d\x25\x29\x35\xef\xb1\x82\xf5\xe7\xa9\xa3\xd1\x65\x74\x3e\xc2\x6f\xe0\x01\xda\xbd\x8d\x4e\xd6\x1d\xeb\x8b\x8b\x4e\x30\x7d\xc7\xbd\x3a\xe8\x04\xe5\x23\x6a\x9c\xa4\x15\x16\x70\xe9\x00\xf2\xe5\xdf\xa6\xfc\x7c\xcc\xe7\x55\x78\x02\x9a\x89\x37\x7e\xc7\x5d\xd5\x74\x54\x16\xba\x00\xa7\x80\xda\x5b\xf7\xd6\xc6\xaf\x7c\x2d\xea\x1e\x33\x56\xf5\x55\x03\xff\xdf\xd6\x7c\xde\x25\x63\x65\x8a\x5c\x48\xb8\xec\x4f\x55\x7f\x5c\xcf\xd5\xe4\x5f\xf8\xb0\xbb\x06\xaf\x42\xb3\xa6\xbd\x95\x06\x2b\xe8\xcd\xb8\x79\x3e\x7f\x86\x02\x39\x4b\xc2\xb3\x55\xb5\xad\x71\xa1\xa1\x76\xdf\x2e\x60\x89\x05\x2f\x69\x4d\x92\x78\x42\x67\xdd\x50\x3d\xce\xcc\xbd\x6c\x96\x09\xc7\x99\x93\xdf\x8f\xdc\xe9\x66\x31\xec\xab\x76\x6b\x76\xbc\x19\x54\x85\x36\xf7\x16\x9d\xef\x32\xc6\x31\xdc\xef\x48\x4a\x96\x12\xe8\x8c\x20\xa5\xb5\x19\x16\x9d\x55\x5b\x52\x42\x6c\x47\x32\x1a\x19\x1a\x4e\xe5\x96\xbc\xb9\x40\x71\x3d\xbe\x8f\xb3\xed\xab\xb5\xe3\x3a\xb7\x4b\x32\xa7\x7d\xeb\xa8\x5e\xb1\xb7\x28\x5f\x54\xf3\x2d\xad\xe3\x51\x80\xaa\xa5\x27\x1a\x9b\x92\xea\xd8\x01\x4f\xba\x66\x4d\x6b\xf9\xe1\x5e\xab\x06\xef\x6b\xaf\xb5\xbc\x33\xf0\x4e\x20\xa9\xa1\xc8\xd3\xfb\xfb\x01\xb8\x09\x36\x4d\x68\x94\xd7\x91\xec\x16\xa5\x06\x2e\xe4\x16\xf3\x23\xc1\x8c\x9b\x5f\x25\x66\x1d\x37\xdc\x97\x9c\xfd\x59\x12\x14\xa8\xb3\x68\xd8\xb8\x1a\xf3\xff\x1e\x9b\xa3\x6b\xcf\x3f\xa5\xae\x8f\x73\x9c\xb4\x9a\xe4\x2f\x6f\x50\x67\xfe\xbe\x06\xaf\xc1\xdf\x01\x00\x00\xff\xff\x30\x96\xb5\xbc\x80\x0e\x00\x00" +var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xde\x63\x0d\x27\x8b\xd4\xe8\xa2\xc5\xa6\x68\xd0\xa6\xbb\xe7\x89\x34\xb6\x88\xc8\xa4\xca\x1f\x1b\x46\x90\x77\x2f\x28\x51\xb2\x28\x51\x89\x53\xb4\x97\xf2\x10\x44\xe4\xfc\x7c\xf3\xcd\x70\x38\x66\xfb\x4a\x48\x0d\x1b\x79\xaa\xb4\x88\xdc\xd7\x97\x52\x1c\x1f\xc5\x33\x71\xd8\x4a\xb1\x87\x59\xf7\x3d\xeb\x24\x0c\xdf\xb1\xa7\x92\x3c\xa9\xfe\x5e\x27\x79\x2f\xb2\x67\xca\xeb\x3d\xe5\x04\xfb\x5b\xb3\x28\x4a\xd3\x14\x1e\x25\x72\x85\x99\x66\x82\x83\x2e\x50\x03\x42\x66\x94\x16\xf9\x09\x2a\x29\x0e\x2c\x27\x09\x47\x61\xca\x1c\x14\xdb\xf1\x5a\x45\x0b\xc8\x24\xa1\x26\x40\x50\x05\x4a\xca\x01\xb3\x4c\x18\xae\x01\x79\x0e\xc8\xc1\xf0\xb2\xf6\x54\x8b\xb7\x67\x5b\x21\x01\xc1\x28\x92\x51\xa4\xcf\x5e\xe3\x08\x00\xa0\x42\xa9\x19\x96\x77\xf9\x9e\xf1\x07\xf3\x54\xb2\xec\x2b\x9d\x56\x8e\x9d\xe4\x2b\x9d\xee\x99\xd2\x3f\x71\x2d\x4f\x0b\x48\x53\xf8\x4e\x6c\x57\xe8\x15\x7c\x5a\x2e\xfb\xea\x7f\x2a\x92\x1f\xd0\xfe\xc1\x69\x6f\x4d\xf9\x51\xd5\x4f\xcb\xe5\x32\x9a\xc3\x4b\xd4\xb8\x97\x54\xa1\xa4\xd8\x31\xf7\xe0\x88\x5b\x01\x1a\x5d\xc4\x3f\x0a\x29\xc5\xf1\x1b\x96\x86\xe6\x70\x75\xd7\xd0\xd1\xe9\xda\x55\x92\x76\x4c\xba\x53\xb8\x01\xf7\x5f\x5c\xe1\xc9\x5a\x1a\x98\x9e\x7b\xba\x96\xd4\xcb\x35\x3b\x55\xcf\x65\xf2\x4c\x27\x95\x60\x9e\xc7\xd5\x99\x86\x60\x5a\x92\x4e\x60\x01\x05\xaa\xe2\xae\xdc\x09\xc9\x74\xb1\x9f\x92\xf7\x84\x16\x70\x74\x1c\x86\x85\x9b\xd3\xf9\xc7\x41\x7a\x19\x7c\x1f\xa3\x2f\xfe\x36\x44\x5f\xb6\x45\xd8\x41\xec\xd1\x1f\x04\x38\xaa\xaf\x37\xd0\x8d\x65\x27\xa0\x8d\x05\x47\xb8\x6c\x69\x1c\xd0\x94\x7a\x83\x15\x3e\xb1\x92\xe9\x13\xdc\x0c\x08\xcd\xda\x23\x46\x2a\x51\x5a\x48\xdc\x51\x67\xc0\xae\x84\x29\x65\x68\x5d\x57\xb2\xd7\x68\x92\xef\x4c\x17\xb9\xc4\xe3\x1c\xae\xba\x3e\x95\x7c\xb3\xfe\x6e\xe3\xd4\x99\x4a\xb7\xed\x49\x7d\x30\x00\x57\x9e\xfb\xd1\xaf\xc8\x71\x47\x12\xd6\xd7\x5e\xe3\x4a\x9a\x4e\x73\x3f\x12\x8c\xeb\xc0\x56\xc3\xf8\x26\xab\xdb\xe1\x49\x14\x1e\x28\x5e\x5f\x8f\x3d\x2f\x40\x8b\x95\xef\x7b\xec\xf5\x8f\xc6\xca\x03\xea\x62\x10\x8a\xee\x49\xfd\xe7\x74\xbf\x83\xf2\x36\xf6\x4c\xda\x75\x79\x5c\x9e\x6a\x28\xc8\x9f\x45\x99\x4f\x26\xea\xf1\x2c\xe1\x83\x68\x08\xbf\xcb\x73\x49\x4a\xad\x06\xac\x60\xb3\xbd\xf0\x34\xfa\x8c\xae\x26\xf8\x8d\x02\x40\xfb\xb7\xd1\xcb\xba\x67\x7d\x7d\xdd\x0b\x66\xe8\x78\x50\x07\xbd\xa0\x42\x44\x4d\x93\xb4\xc1\x0a\x6e\x3c\x40\xa1\xfc\xbb\x94\x5f\x4d\xf9\xbc\x8d\x2f\x40\x33\x0f\xc6\xef\xb9\xab\x9b\x8e\x2a\x62\x1f\xe0\x02\x50\x07\xeb\xde\xd9\xf8\x85\x6f\x45\xd3\x63\xa6\xaa\xbe\x6e\xe0\xff\xdb\x9a\x2f\xfb\x64\x6c\x6c\x91\x0b\x09\x37\xc3\x57\x35\x1c\xd7\x53\xfd\xf2\xaf\x43\xd8\x7d\x83\xb7\xb1\x1d\xd0\xde\x4a\x83\x13\x0c\x66\xdc\xae\xcf\x9f\xa1\x42\xce\xb2\x78\xb6\xa9\xa7\x35\x2e\x34\x34\xee\xbb\x01\x2c\x73\xe0\x25\x6d\x49\x12\xcf\x68\xd6\x0f\x35\xe0\xcc\xde\xcb\x76\x98\xf0\x9c\x79\xf9\xfd\xc8\x9d\x6e\x07\xc3\xa1\x6a\xbf\x66\xa7\x9b\x41\x5d\x68\xab\x60\xd1\x85\x2e\x63\x9a\xc2\x6f\x07\x92\x92\xe5\x04\xba\x20\xc8\x69\x6b\x1f\x8b\xde\x90\x2d\x29\x23\x76\x20\x99\x4c\x3c\x1a\x5e\xe5\x1a\xde\x5e\xa0\xb4\x79\xbe\xcf\x6f\xdb\xef\xce\x8e\xef\xdc\x0d\xc9\x9c\x8e\x9d\xa3\x66\xc4\xde\xa3\x7c\x56\xed\x5e\xde\xc4\xa3\x00\x55\x47\x4f\x32\xf5\x4a\xaa\x73\x07\xbc\xe8\x9a\xb5\xad\xe5\xc5\xbf\x56\x2d\xde\xd7\x41\x6b\x79\xe7\xc1\xbb\x80\xa4\x96\xa2\x40\xef\x1f\x06\xe0\x27\xd8\x36\xa1\x49\x5e\x27\xb2\x5b\x19\x0d\x5c\xc8\x3d\x96\x67\x82\x19\xb7\xbf\x4a\xec\x38\x6e\xb9\x37\x9c\xfd\x65\x08\x2a\xd4\x45\x32\x6e\x5c\xad\xf9\x7f\x8f\xcd\xc9\xb1\xe7\x9f\x52\x37\xc4\x39\x4d\x5a\x43\xf2\x97\x37\xa8\xb3\x7f\x5f\xa3\xd7\xe8\xef\x00\x00\x00\xff\xff\x49\x24\x03\x98\x7a\x0e\x00\x00" func lockedtokensAdminCustody_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3960,11 +3939,11 @@ func lockedtokensAdminCustody_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0x63, 0x56, 0x1e, 0x1a, 0xcf, 0x14, 0x17, 0x99, 0x68, 0x65, 0x5f, 0x32, 0x2c, 0xa6, 0xea, 0x46, 0xab, 0x3f, 0x83, 0xc3, 0x9, 0x56, 0xdb, 0x92, 0x6f, 0x8d, 0x67, 0x1a, 0xe8, 0x5e, 0xb6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8d, 0x9c, 0xa9, 0xa6, 0xfd, 0xba, 0xcb, 0xf6, 0x70, 0x43, 0xa6, 0x9a, 0x65, 0x1e, 0x20, 0xa, 0xe3, 0x83, 0x0, 0x12, 0xfd, 0xaa, 0xf5, 0x47, 0x97, 0x51, 0xdd, 0xcd, 0x30, 0xd9, 0x8d, 0x16}} return a, nil } -var _lockedtokensAdminCustody_setup_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x51\xcb\x6e\xea\x30\x10\xdd\xe7\x2b\x66\x85\x82\xc4\xe3\xae\x11\xb7\x12\x0a\xac\x40\x05\x35\xa8\xfb\xc1\x99\x36\x16\xc1\xb6\xc6\xe3\xb4\x55\xc5\xbf\x57\x69\x44\x8a\x29\x7d\x48\x9d\x45\x16\x27\xe3\xf3\x98\xa3\x0f\xce\xb2\xc0\xca\xaa\x3d\x15\x5b\xbb\x27\xe3\xe1\x81\xed\x01\xfe\x3d\xaf\xd6\xd9\x72\x31\xdf\xae\x97\x8b\xdb\xd9\x7c\x7e\xb7\xc8\xf3\x24\x11\x46\xe3\x51\x89\xb6\x06\x5e\x93\x04\x00\xc0\x31\x39\x64\x4a\x55\xf0\x62\x8b\x97\x0d\xdb\x5a\x17\xc4\x13\xc0\x20\x65\x9a\x63\x4d\xf7\x58\x05\x1a\x40\x86\x0e\x77\xba\xd2\xa2\xc9\xf7\xa1\x37\x53\xca\x06\x23\xfd\x13\x4f\x33\x15\x09\x60\x8b\x67\x4c\x28\x96\x61\x3a\x8c\xcc\x8d\x54\x83\x53\x0b\xcd\xa2\xd5\xb4\xff\x41\x74\x61\x66\xe4\xc5\x32\x3e\xd2\xc8\x63\x4d\x69\xb7\xd5\xcc\x74\x18\x0b\x0e\xa2\xbf\x62\x27\xb1\xfc\x35\xe1\xbc\x25\xdf\xa0\x94\xdd\xe3\x33\x2f\xe3\x31\xb4\xa6\xc1\xd0\x13\x30\x29\xd2\x35\x31\x48\x89\x02\x07\xe4\xbd\x3f\x61\x05\x48\x5b\x00\x7a\x08\xa6\x7a\x57\x8a\x4e\x53\x5d\x11\xcf\xd0\xc1\xff\x4f\x79\xd5\xd9\xad\xbb\xf0\xda\xfb\x40\xd3\xde\x8f\x79\x6e\xe2\x0b\xfd\x35\xff\xb7\xde\x5c\xd8\x55\xda\x97\xb1\xe2\x17\x39\xe3\x6a\x50\x7e\x51\xcd\xa6\xa1\x57\x17\xce\x9a\xef\x31\x39\x26\x6f\x01\x00\x00\xff\xff\x1d\xd2\x75\x2e\xfc\x02\x00\x00" +var _lockedtokensAdminCustody_setup_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x51\xcb\x6a\xeb\x30\x10\xdd\xeb\x2b\x86\x2c\x82\x03\x79\xec\x43\xee\x85\x90\x6d\x17\x86\x94\xee\x27\xf2\xb4\x16\x96\x25\x31\x1a\xb9\x94\x92\x7f\x2f\xae\x89\x6b\xa5\xe9\x03\x3a\x0b\x2f\x8e\x47\xe7\x35\xa6\x0d\x9e\x05\xee\xbc\x6e\xa8\xba\xf7\x0d\xb9\x08\x8f\xec\x5b\x98\x4d\xa1\x99\x52\xc2\xe8\x22\x6a\x31\xde\xc1\xab\x52\x00\x00\x81\x29\x20\x53\xa1\x53\x14\x5f\xbd\x94\xec\x3b\x53\x11\x6f\x01\x93\xd4\xc5\x11\x3b\x7a\x40\x9b\x68\x09\x07\x0c\x78\x32\xd6\x88\xa1\xb8\x80\xf9\x5e\x6b\x9f\x9c\x2c\x2e\x3c\xfd\x58\x12\xc0\x01\x3f\x30\xa1\x78\x86\xdd\x2a\xb3\xb5\xd6\x3d\x4e\x03\xb4\xcf\x56\x8b\xc5\x07\xd1\x95\x99\x75\x14\xcf\xf8\x44\xeb\x88\x1d\x15\xe3\x56\x3f\xbb\x55\x2e\xb8\xcc\xfe\x8a\xdf\xe6\xf2\xb7\x84\x8f\x03\x79\x89\x52\x8f\x8f\x27\x5e\x36\x1b\x18\x4c\x83\xa3\x67\x60\xd2\x64\x3a\x62\x90\x1a\x05\x5a\xe4\x26\x5e\xb0\x0a\x64\xa8\x1e\x23\x24\x67\xdf\x95\xb2\x6a\xec\x0d\xf1\x03\x06\xf8\xf7\x29\xaf\x9e\x74\x3d\x86\x37\x31\x26\xda\xcd\x7f\xcc\xf3\x3f\x6f\xe8\xaf\xf9\xbf\xf5\x16\xd2\xc9\x9a\x58\xe7\x8a\x5f\xe4\xcc\x4f\x83\xf2\x8b\xd3\x94\x3d\xbd\xbe\x72\xd6\x7f\xcf\xea\xac\xde\x02\x00\x00\xff\xff\xb3\xbb\x63\xe2\xf6\x02\x00\x00" func lockedtokensAdminCustody_setup_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3980,11 +3959,11 @@ func lockedtokensAdminCustody_setup_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_setup_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0xdd, 0xa1, 0x11, 0xf0, 0xe6, 0xcf, 0x4b, 0xe7, 0xaf, 0xa4, 0xb8, 0x85, 0xc2, 0xc0, 0x7, 0x23, 0x96, 0xe1, 0x19, 0x0, 0xd1, 0x7f, 0x7, 0xf0, 0xe2, 0x84, 0x66, 0xd, 0xa9, 0x9b, 0x89}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcb, 0x18, 0xe4, 0x77, 0xf3, 0x8, 0x1c, 0x54, 0xd1, 0x5, 0x32, 0x49, 0x92, 0x5f, 0x1e, 0x68, 0xe1, 0x59, 0x8d, 0x29, 0x7e, 0x52, 0xc6, 0x8e, 0x2e, 0x6b, 0xc4, 0xe4, 0xe8, 0x87, 0x58, 0x72}} return a, nil } -var _lockedtokensAdminDeposit_locked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4d\x4f\xdc\x30\x10\x3d\x93\x5f\x31\xe4\x00\x89\x04\xd9\x1e\xaa\x1e\x56\x7c\x74\xbb\x0b\x3d\x80\x4a\x05\x94\x9e\xbd\xce\x64\xe3\xe2\xb5\x23\x7b\xc2\x22\x21\xfe\x7b\x15\x3b\x4e\xe3\x65\x05\xcd\x25\xf2\x78\x66\xde\x9b\x99\x37\x16\xeb\x46\x1b\x82\xcb\x56\xad\xc4\x52\xe2\xbd\x7e\x44\x05\x95\xd1\x6b\x48\x23\x5b\x9a\x04\x4f\xa9\x37\x91\x57\x38\xa7\x49\x70\xb9\xd6\xfc\x11\x4b\x67\xb4\xde\xeb\xd3\xf3\xf5\xcd\xfc\xea\x62\x71\x7f\x73\x75\xf1\x63\xb6\x58\xdc\x5e\xdc\xdd\x25\x09\x19\xa6\x2c\xe3\x24\xb4\xca\x48\x4f\x61\x56\x96\x06\xad\x3d\x02\xb6\xd6\xad\xa2\x29\xfc\xba\x14\xcf\x5f\x3e\xe7\xf0\x92\x24\x00\x00\x93\x09\xdc\xd7\x08\x0f\xac\x95\x04\x06\xad\x6e\x0d\x47\xa0\x9a\x11\xd4\x5a\x96\x16\xa8\x46\x20\x0f\xeb\xac\xcc\x20\x2c\x51\xa8\x15\x38\xa8\x0a\x8d\xc1\xd2\xa5\x92\x48\x60\x51\x91\xcb\x35\x85\xaf\x2f\x51\xb1\x85\x33\xbf\x7a\xd4\xc6\x60\xc3\x0c\x66\xac\x5c\x0b\x35\x05\xd6\x52\x9d\x7d\xd3\xc6\xe8\xcd\x03\x93\x2d\xe6\x70\x30\xe3\xbc\xe3\x3b\xf0\xec\xb9\x7e\x47\x02\x06\x06\x2b\x34\xa8\x3a\xa2\xda\x11\x74\x79\x0e\x2d\x58\xd2\x06\x4b\x78\xea\xa0\x86\xb0\x8e\x97\xb3\xdc\x62\x05\xa7\xde\xb7\xe8\x3c\xd9\x0a\x8b\xa5\x43\x3d\x71\x0c\x62\xbe\xbf\x05\xd5\xa5\x61\x9b\x1c\x0e\x86\x79\xf8\x22\xce\xb2\x6e\x00\x53\x98\xf4\x49\x26\x55\xb8\x77\xd7\x79\xb2\xb7\xb7\x77\x7e\x0e\x0d\x53\x82\x67\xe9\x5c\xb7\xb2\x04\xa5\x09\x3c\xd6\x5b\xf6\x7a\xa3\xd0\x1c\x5a\x3f\x84\xfd\x34\x4f\x22\xea\x8e\xef\x0e\xea\x83\x53\xf7\x85\x3a\x0e\xc6\x3a\x29\xdc\x6f\xd6\x05\xcd\xb5\x94\xe8\x54\x71\x96\x45\x81\xdd\xe7\xab\x89\x22\x47\x87\xad\xf8\x3b\x8f\xfe\x93\x51\x1d\x25\xca\xa3\xd3\x3b\xe5\xef\x18\x9f\x74\x68\x5e\x66\xbe\x48\xe0\x03\xe0\xb8\x1f\xcc\x5a\x34\x14\x57\x10\xfa\x53\xac\x90\x7a\xd5\x64\xcc\xab\x7e\x0a\xa4\x73\xd8\x3f\x05\x25\xe4\x51\x14\xb4\x46\x6b\xd9\x0a\xa7\x90\x76\xea\xb7\x0d\x72\x51\x09\x2c\x81\xf9\x04\x20\xac\xa3\xcc\x02\xb5\xde\xbe\x0f\x73\xa6\xba\x0b\x8b\xaa\x8c\x68\xdb\x34\xf9\xd7\x89\xb1\x62\x83\x8c\xc2\x12\xb9\xdd\xfd\x50\xb3\x16\x65\x55\x0c\xcb\x04\x27\xc7\x83\x82\x8b\x4d\x9f\x30\x0b\x1b\xed\xff\xbe\xff\xfd\x7e\xe1\x33\xf2\x96\x70\xc7\xf2\x74\xc8\x06\xb9\x68\x04\x2a\x3a\xb4\xd0\xb4\x4b\x29\xf8\x50\xb7\x5e\xfe\x41\x1e\xaf\xce\xe0\x0d\xa7\x30\x6a\x31\xe9\xfc\x7f\x36\x73\x8c\x75\x8b\x1c\xc5\x13\x9a\xed\xf4\xce\xe8\x15\x3e\xb8\xc7\xea\xe6\xac\x61\x4b\x21\x05\x09\xb4\x83\xd4\xb7\xde\x97\x90\xfd\x75\x87\xc2\x27\xbe\xcc\x89\x9f\xd8\xb0\xce\x6f\x08\xf9\xf1\x7d\xb4\xbe\x3e\xe8\xfd\x5a\x7b\x6d\xb8\xf1\xa5\x71\xa7\x16\xd8\x68\x2b\xfc\x28\xc2\x30\x55\x90\x87\x50\x6f\x52\x99\x6d\x96\xa3\x96\x15\xa5\x4f\xd6\xbf\x48\x27\xc7\xb1\x70\x82\x28\x5e\x93\xbf\x01\x00\x00\xff\xff\x40\x01\x77\x1a\x94\x06\x00\x00" +var _lockedtokensAdminDeposit_locked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x4f\xdc\x3e\x10\x3d\x93\x4f\x31\xe4\x00\x89\x04\xd9\xcb\x4f\xbf\x43\xc4\x9f\x52\x2a\x7a\xe9\xa1\xa2\x94\x9e\x1d\x67\xb2\x71\xf1\xda\x91\x3d\x61\x91\x10\xdf\xbd\x8a\x1d\xbb\xf1\xee\x0a\x9a\x4b\xe4\xf1\xcc\xbc\x37\x33\x6f\x2c\x36\x83\x36\x04\x77\xa3\x5a\x8b\x46\xe2\x83\x7e\x42\x05\x9d\xd1\x1b\xc8\x13\x5b\x9e\x05\x4f\xa9\xb7\x89\x57\x38\xe7\x59\x70\xf9\xa6\xf9\x13\xb6\xce\x68\x67\xaf\xa5\x29\xcf\x32\x32\x4c\x59\xc6\x49\x68\x55\x90\xae\xe1\xa6\x6d\x0d\x5a\x7b\x06\x6c\xa3\x47\x45\x35\xfc\xbc\x13\x2f\xff\xff\x57\xc2\x6b\x96\x01\x00\xac\x56\xf0\xd0\x23\x3c\xb2\x51\x12\x18\xb4\x7a\x34\x1c\x81\x7a\x46\xd0\x6b\xd9\x5a\xa0\x1e\x81\x3c\xa0\xb3\x32\x83\xd0\xa0\x50\x6b\x70\x50\x1d\x1a\x83\xad\x4b\x25\x91\xc0\xa2\x22\x97\xab\x86\x4f\xaf\x49\x99\x95\x33\xbf\x79\xd4\xc1\xe0\xc0\x0c\x16\xac\xdd\x08\x55\x03\x1b\xa9\x2f\x3e\x6b\x63\xf4\xf6\x91\xc9\x11\x4b\x38\xb9\xe1\x7c\xe2\x1b\x79\xce\x5c\xbf\x22\x01\x03\x83\x1d\x1a\x54\x13\x51\xed\x08\xba\x3c\xa7\x16\x2c\x69\x83\x2d\x3c\x4f\x50\x31\x6c\xe2\xe5\x2c\xf7\xd8\xc1\xa5\xf7\xad\x26\x4f\xb6\xc6\xaa\x71\xa8\x17\x8e\x41\xca\xf7\x97\xa0\xbe\x35\x6c\x5b\xc2\x49\x9c\x84\x2f\xe2\xaa\x98\x5a\x5f\xc3\x6a\x4e\xb2\xea\xc2\xbd\xbb\x2e\xb3\xa3\xa3\xa3\xeb\x6b\x18\x98\x12\xbc\xc8\x6f\xf5\x28\x5b\x50\x9a\xc0\x63\xed\xb3\xd7\x5b\x85\xe6\xd4\xfa\x21\x1c\xe7\x65\x96\x50\x77\x7c\x0f\x50\x8f\x4e\xd3\x17\xea\x38\x59\xca\xa1\x72\xbf\x9b\x29\xe8\x56\x4b\x89\x4e\x15\x57\x45\x12\x38\x7d\xbe\x9a\x24\x72\x71\xd8\x89\xff\xe1\xd1\xbf\x33\xea\x93\x44\x65\x72\x7a\xa7\xfc\x03\xe3\x93\x0e\xcd\xcb\xcc\x17\x09\x3c\x02\x2e\xfb\xc1\xac\x45\x43\x69\x05\xa1\x3f\xd5\x1a\x69\x56\x4d\xc1\xbc\xea\x6b\x20\x5d\xc2\xf1\x25\x28\x21\xcf\x92\xa0\x0d\x5a\xcb\xd6\x58\x43\x3e\xa9\xdf\x0e\xc8\x45\x27\xb0\x05\xe6\x13\x80\xb0\x8e\x32\x0b\xd4\x66\xfb\x31\xdc\x32\x35\x5d\x58\x54\x6d\x42\xdb\xe6\xd9\xdf\x4e\x2c\x15\x1b\x64\x14\x96\xc8\x6d\xed\x87\x9a\xb5\x28\xbb\x2a\x2e\x13\x5c\x9c\x47\x05\x57\xdb\x39\x61\x11\x36\xda\xff\x7d\xff\xe7\xfd\xc2\x17\xe4\x23\xe1\x81\xe5\x99\x90\x0d\x72\x31\x08\x54\x74\x6a\x61\x18\x1b\x29\x78\xac\x5b\x37\xbf\x91\xa7\xab\x13\xbd\xe1\x12\x16\x2d\x26\x5d\xfe\xcb\x66\x2e\xb1\xee\x91\xa3\x78\x46\xb3\x9b\xde\x19\xbd\xc2\xa3\x7b\xaa\x6e\xce\x06\xd6\x08\x29\x48\xa0\x8d\x52\xdf\x79\x5f\x42\xf6\xb7\x03\x0a\x5f\xf9\x32\x57\x7e\x62\x71\x9d\xf7\x08\xf9\xf1\x7d\xb4\xbe\x3e\xe8\xfd\x5a\x67\x6d\xb8\xf1\xe5\x69\xa7\xbe\xe0\xa0\xad\xf0\xa3\x08\xc3\x54\x41\x1e\x42\xed\xa5\x32\xbb\x2c\x17\x2d\xab\x5a\x9f\x6c\x7e\x91\x2e\xce\x53\xe1\x04\x51\xbc\x65\x7f\x02\x00\x00\xff\xff\x94\x91\x54\x35\x8e\x06\x00\x00" func lockedtokensAdminDeposit_locked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4000,11 +3979,11 @@ func lockedtokensAdminDeposit_locked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/deposit_locked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa1, 0x13, 0x71, 0x2a, 0xe7, 0x43, 0x81, 0x6d, 0xb2, 0x51, 0x15, 0xb8, 0x4f, 0x3b, 0xb4, 0x15, 0xd4, 0xc5, 0xce, 0xf0, 0xc4, 0xf1, 0xff, 0x64, 0xd7, 0xe7, 0xe3, 0x27, 0x23, 0x5, 0xdd, 0x78}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0x20, 0xf3, 0x69, 0x56, 0x19, 0x68, 0x47, 0x94, 0x66, 0xf4, 0x82, 0x18, 0xa4, 0xba, 0x93, 0xed, 0x42, 0x70, 0xeb, 0xaf, 0xac, 0x53, 0x45, 0x32, 0x2e, 0xd2, 0x81, 0xf9, 0x8, 0xa6, 0x11}} return a, nil } -var _lockedtokensAdminUnlock_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x91\x4f\x4f\xf3\x30\x0c\xc6\xef\xfd\x14\x7e\x77\xd8\x9b\x4a\xa8\xe2\x80\x38\x54\xc0\x54\xb6\x71\xd9\x60\x68\x7f\xb8\x9b\xd4\xdd\xa2\xb5\x49\xe5\xb8\x62\x12\xda\x77\x47\x6d\xa6\xd1\xed\x8a\x2f\x4e\x24\xfb\xc9\xef\x79\x62\xaa\xda\xb1\xc0\xdc\xe9\x3d\xe5\x6b\xb7\x27\xeb\xa1\x60\x57\xc1\xed\x61\xbe\x18\xcf\xa6\x93\xf5\x62\x36\x7d\xcb\x26\x93\xe5\x74\xb5\x8a\x22\x61\xb4\x1e\xb5\x18\x67\x95\x20\x6f\x49\x32\xad\x5d\x63\x25\x85\x2c\xcf\x99\xbc\xbf\x81\x9c\x4a\xc1\x14\x36\x2f\xe6\x70\x7f\x17\xc3\x77\x14\x01\x00\xd4\x4c\x35\x32\x29\xcc\x2b\x63\x53\xc0\x46\x76\xea\xd9\x31\xbb\xaf\x0f\x2c\x1b\x8a\x61\x78\x52\x3a\x6f\xb4\x55\x92\x40\xb7\xb1\xa4\x02\x1e\xc3\x31\xf1\xe2\x18\xb7\x94\x7c\x76\xeb\x0f\xc3\x3e\x7c\xd2\xb5\xac\x9d\x1b\xbb\xb2\xa4\x0e\xf5\x49\xb5\x96\xd2\x0b\x97\x49\xef\x72\x35\xbe\x0a\xfa\xef\x28\xbb\xf8\x4c\xd2\xd6\x68\x04\x35\x5a\xa3\xd5\x60\xec\x9a\x32\x07\xeb\x04\x02\x04\x20\x30\x15\xc4\x64\x35\x81\x38\x90\x1d\x05\x58\xd0\x67\xd9\x41\x7c\xe9\x4b\xda\xa7\x5f\xd1\xe2\x96\xb8\x67\x6f\x49\x45\xf2\x9b\xab\xc2\x10\x6b\x0a\x17\x71\xc7\xff\x4e\xee\xd5\x5f\x08\x1b\x4f\xfc\xdf\x07\x10\xa8\x02\x49\x9f\xf2\x8a\x30\x31\x56\x33\xa1\xa7\x8d\x2d\x9d\xde\xcf\x4d\x65\x44\x9d\x7e\xbb\x6b\x81\xe5\x18\x1d\xa3\x9f\x00\x00\x00\xff\xff\x7f\xbb\x35\x53\x57\x02\x00\x00" +var _lockedtokensAdminUnlock_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x91\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x63\x0e\x75\x03\x92\x93\x78\x08\x6a\xa9\x05\x4f\x15\xa4\x5a\xef\xe3\x66\xd2\x2e\xdd\xec\x84\xd9\x09\x0a\xd2\xff\x2e\xc9\x96\x9a\xf6\xea\x5c\x26\x59\x66\xde\x7e\xef\xad\x6b\x3b\x16\x85\x15\xdb\x3d\xd5\xef\xbc\xa7\x10\xa1\x11\x6e\x21\x9f\x1e\xe5\x59\xa6\x82\x21\xa2\x55\xc7\xc1\x28\xca\x96\x74\x61\x2d\xf7\x41\x2b\x58\xd4\xb5\x50\x8c\x37\x50\x93\x57\xac\x60\xf3\xec\xbe\xef\x6e\x0b\xf8\xc9\x32\x00\x80\x4e\xa8\x43\x21\x83\x75\xeb\x42\x05\xd8\xeb\xce\x3c\xb1\x08\x7f\x7d\xa0\xef\xa9\x80\xd9\x51\xe9\xb4\x31\x94\x27\x85\x71\x63\x4d\x0d\x3c\xa4\xcf\x32\x2a\x0b\x6e\xa9\xfc\x1c\xd7\xef\x67\x53\xc6\x72\x6c\x8b\x61\x6e\xc9\xde\xd3\x88\xfa\x68\x06\x33\xd5\x99\xbf\x72\xf2\x73\x31\xfe\x96\xf4\x5f\x51\x77\xc5\x89\x64\xa8\xf9\x1c\x3a\x0c\xce\x9a\x7c\xc9\xbd\xaf\x21\xb0\x42\x82\x00\x04\xa1\x86\x84\x82\x25\x50\x06\xdd\x51\x82\x05\x7b\x92\xcd\x8b\x73\x5f\x3a\x5c\xfd\x82\x01\xb7\x24\x13\x7b\x6b\x6a\xca\xbf\x5c\x0d\xa6\x58\x2b\x38\x8b\xbb\xb8\x3a\xba\x37\xff\x21\xec\x23\xc9\x75\x4c\x20\xd0\x26\x92\x29\xe5\x05\x61\xe9\x82\x15\xc2\x48\x9b\xe0\xd9\xee\x57\xae\x75\x6a\x8e\xaf\x3d\xb6\xc4\x72\xc8\x0e\xd9\x6f\x00\x00\x00\xff\xff\xfd\x94\x1c\x78\x51\x02\x00\x00" func lockedtokensAdminUnlock_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4020,11 +3999,11 @@ func lockedtokensAdminUnlock_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/unlock_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xae, 0xe, 0xc8, 0x2b, 0x80, 0x51, 0x6f, 0xc3, 0xa, 0xc4, 0xea, 0x7f, 0x76, 0x1f, 0x32, 0x48, 0x28, 0xd, 0xd, 0xd0, 0x4b, 0x7c, 0xb2, 0x26, 0x85, 0x0, 0xcb, 0xf2, 0xc8, 0x32, 0x6c, 0x1c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x69, 0x90, 0x59, 0xfe, 0x29, 0x32, 0xe, 0xe7, 0xbe, 0x46, 0xb8, 0xce, 0x1a, 0x34, 0xdd, 0x1f, 0x52, 0x19, 0x81, 0x95, 0x62, 0x32, 0xfe, 0xdc, 0xb7, 0xcf, 0xca, 0xde, 0x73, 0x50, 0xb4, 0x10}} return a, nil } -var _lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x6f\xe3\x46\x0c\xbd\xfb\x57\xb0\x7b\xd8\xca\x40\x60\xf7\x50\xf4\x60\x24\xbb\x70\x9d\xb4\x0d\x36\xed\x2e\x92\xec\xa9\xe8\x81\xd6\xd0\xd6\x20\xd2\x8c\x31\x43\xc5\x09\x02\xff\xf7\x82\x33\x92\x3d\xfa\x88\x5b\x5d\x12\xcb\xe4\xe3\xd7\x23\x9f\x75\xb5\xb3\x8e\xe1\xce\xe6\x4f\xa4\x1e\xed\x13\x19\x0f\x1b\x67\x2b\xf8\xe9\xe5\xee\xeb\xea\xcb\xcd\xf5\xe3\xd7\x2f\x37\x7f\x2d\xaf\xaf\xef\x6f\x1e\x1e\x26\x93\xf9\x1c\x1e\x0b\xed\x81\x1d\x1a\x8f\x39\x6b\x6b\xa0\xf6\xe4\x81\x0b\x82\x32\x80\x00\x47\x14\x54\x95\x36\xe2\xc0\x16\x3c\x71\xb0\xa8\x8d\xd8\x40\xa9\x2b\xcd\xb0\xb1\x0e\xaa\xba\x64\xbd\x2b\x09\x30\xcf\x6d\x6d\xd8\x8b\x83\x36\x80\xe0\xb5\xd9\x96\x94\x06\x8a\xc1\x8f\xa6\x80\x4a\x39\xf2\x12\xbc\xf6\xa4\x00\x3d\x3c\xd1\x6b\x00\xf0\x85\xad\x4b\x05\x6b\x4a\x82\x8a\x45\xdf\x71\x32\x49\xe0\xb3\x68\x77\x6b\x36\x76\x01\x6f\xcb\x68\xb3\x80\xef\xbf\xe9\x97\x5f\x7e\x3e\x4c\xe1\x6d\x32\x01\x00\xd8\x39\xda\xa1\xa3\x2c\x94\xb7\x00\xac\xb9\xc8\x1e\xd8\x3a\xdc\xd2\x05\xac\x70\x87\x6b\x5d\x6a\xd6\xe4\xa7\xf0\x71\x19\x03\x1e\x7d\xe5\x99\xcf\xe1\x7b\x9b\xd0\x72\x50\x09\x17\xc8\x50\xa0\x02\x6f\x2b\x02\x2f\xa3\xb1\x1b\x20\xe7\xac\x4b\x11\xd0\x11\x78\xb6\x8e\x94\x34\x8b\x65\x22\x4a\x87\x2a\xd0\xbd\x82\xb7\x52\xf7\x2b\xe4\x68\xa4\x07\xda\xf8\x1d\xe5\x4c\x0a\x4a\x64\xea\xe0\xdc\x6e\x42\x87\xd2\x69\x1a\x22\xe5\x65\x66\xae\x36\xa7\xf1\xb0\xae\xc8\x5f\xa4\xae\x5c\x90\x09\xce\x49\x60\xed\xc1\x58\x06\xfb\x4c\x6e\xef\x34\x33\x99\xa3\xc7\x33\x3a\x58\xa3\x6a\x2a\xf6\x23\x1d\x86\xab\x48\x99\x99\x8f\xdd\x9c\x95\x16\xd5\xe5\xc0\xec\x53\x26\xf4\x5c\xc0\xbc\x31\x9b\xc7\xb1\x69\xb3\xfd\xf5\x04\x3f\x3d\xc6\x95\xe7\xf3\x67\x78\x3b\x08\x3f\x06\x60\xa7\xb1\x94\xc4\x31\xfc\x3d\x6d\x06\x99\xac\xad\x73\x76\x7f\xf9\x31\xdd\x92\x59\xf8\xb3\x14\xbb\x95\x2d\x4b\x0a\x4d\x68\x93\xeb\x18\x26\x1f\x7a\xe6\x0d\x6f\xbe\x21\x17\x83\x8c\x77\x68\x74\x9e\x7d\x58\x05\x26\x4b\x57\x63\x12\x80\xe0\x68\x43\x8e\x4c\x4e\x32\x25\x99\x40\x48\x16\xf2\x23\xec\x87\xe9\xa9\x2e\x59\xb2\x76\x01\x9a\xea\x85\x32\x27\xae\xcf\x64\x69\x52\x82\x36\xf3\x5d\x96\xa5\x50\x4f\xf0\xf5\x46\xda\xe3\x03\xeb\xd6\x94\x63\xed\x09\xf6\x04\xca\x9a\x1f\x19\x60\x8f\x86\x81\x6d\xdf\xdf\xd1\x33\xb9\xb8\xf5\x64\x58\xbb\x2e\xcb\xf4\x06\xe4\x02\xa0\x2e\x7d\xdf\x91\x2d\x6c\x9b\x73\xa1\xcd\xc6\xba\x0a\x83\x87\x14\x72\xbc\x0a\xcd\xc2\x74\x5c\x63\x96\xcd\x11\x6a\x88\x20\x05\xc6\x81\x6e\x89\x9b\x77\x59\xaf\x1d\xdd\xce\xcb\x33\xcb\x93\x35\x3e\x33\xfc\x3f\x6c\xa9\xc8\x7d\xca\x46\xa6\x9d\xc4\xff\x56\xaf\x4b\x9d\x87\x19\xf7\xdb\xdc\x12\xaf\x93\x73\x3b\xa5\xab\xd1\x52\x66\x5b\xe2\xbb\x11\xf3\x6c\x3a\x84\xee\x74\x24\xf2\x2f\xfa\xdc\x53\x6e\x9d\x6a\x69\xde\xa0\xb6\xed\xc1\x76\x47\xc6\xb2\x92\x12\xfa\x61\xe4\x19\x7d\xd9\xc4\x0f\x7a\xf0\x27\x1a\xdc\x92\x8b\xc3\x78\x2f\xa3\xa6\xd7\xd9\x68\xa3\x12\x8a\xfc\xde\x95\x13\xac\xc2\x15\x0d\xb2\xd5\x3f\x67\xe8\xb6\x75\x45\x86\x93\x33\xf5\x2e\xb2\xdc\xa8\x08\xb9\x8c\x88\x57\xc9\x9e\xfc\xdd\xa3\xcd\x3f\x3f\x9c\x4d\xf1\xd6\xe4\x8e\xd0\xd3\x50\xf6\xd6\xaf\x71\x69\x43\x88\x77\x21\x7a\x4d\x9b\xe9\x06\x2f\x6a\xc7\x9d\x20\x65\x8a\x4a\xc6\x45\x27\xe5\x11\x16\x24\x49\xad\xac\x61\x6d\xea\xe3\xe1\x30\xf4\xc2\xa0\x99\x5c\x5c\xb1\x66\xdd\x4b\x6b\x77\xe7\x50\xda\x13\xc0\x89\x16\xfb\x3a\xcf\x89\x94\x88\xac\x51\xa0\x2c\x45\x25\x10\x31\x39\x07\xc5\x56\x04\xaa\x42\xf7\x14\x05\x7c\x8d\xef\x9b\xe7\x4d\xf2\xa3\x06\x87\xc1\xdb\x43\x97\x93\x87\xc1\x81\x6b\xb4\x8f\x5e\x28\xaf\x43\xf9\x15\x3e\x91\x97\xb3\x54\x90\x23\xc8\x8e\x45\x38\xc2\xbc\x08\xb6\x6d\x0a\x80\x6b\xfb\x4c\xd3\x3e\xa2\x66\xa8\x08\x8d\x0f\xe2\xcd\x85\x36\x5b\xd8\x0b\xf5\xf6\xce\xca\xbf\x9a\x8b\x84\x0d\xf2\xad\xdc\xb4\xa4\x8b\x7d\x3c\x69\xa5\xe6\x93\x22\xaf\x09\x3c\x3e\xf7\x3a\x9a\x88\xea\x80\xa2\xe7\x09\x3c\x19\xe9\x4d\x57\xf7\x24\xda\x98\x02\x27\x31\x2f\x80\xed\x7f\x8a\x71\x47\x65\x47\x4c\x56\xb8\x3b\x6a\x6e\xe7\xf6\xb6\x89\x68\xef\x6b\xba\xfc\x38\x92\xca\xff\xfc\x19\x30\x82\xbd\x93\xbb\xec\x8b\x6c\x3c\x9f\x0b\x40\x5e\xc0\x3c\x18\xe5\x67\xc0\x0f\x93\xc3\xe4\xdf\x00\x00\x00\xff\xff\xb5\x30\x2f\x1a\x44\x0b\x00\x00" +var _lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x6f\xe3\x36\x10\xbd\xfb\x57\x4c\x73\x48\x65\x20\xb0\x2f\x45\x0f\x46\xb2\x0b\x37\x40\xdb\x00\x29\xb0\xd8\xee\x9e\x8a\x1e\xc6\xe4\xd8\x22\x22\x91\x06\x39\xb2\x13\x04\xfe\xef\xc5\x90\x92\x4d\x7d\xc4\x5d\x5d\x12\xcb\x33\x6f\xbe\xde\xcc\xb3\xa9\xf7\xce\x33\x3c\x3b\xf5\x42\xfa\x9b\x7b\x21\x1b\x60\xeb\x5d\x0d\x37\xf9\xab\x9b\xd9\x6c\xb9\x84\x6f\xa5\x09\xc0\x1e\x6d\x40\xc5\xc6\x59\x68\x02\x05\xe0\x92\xa0\x8a\xb6\xc0\xc9\x1f\x75\x6d\xac\x38\xb0\x83\x40\x1c\x2d\x1a\x2b\x36\x50\x99\xda\x30\x6c\x9d\x87\xba\xa9\xd8\xec\x2b\x02\x54\xca\x35\x96\x83\x38\x18\x0b\x08\xc1\xd8\x5d\x45\x79\xa0\x14\xfc\x6c\x0a\xa8\xb5\xa7\x20\xc1\x9b\x40\x1a\x30\xc0\x0b\xbd\x45\x80\x50\xba\xa6\xd2\xb0\xa1\x2c\xa8\x58\x0c\x1d\x67\xb3\x0c\xbe\x48\x76\x4f\x76\xeb\x56\xf0\xbe\x4e\x36\x2b\xf8\xfe\xbb\x79\xfd\xf5\x97\xd3\x1c\xde\x67\x33\x00\x80\xbd\xa7\x3d\x7a\x2a\x62\x79\x2b\xc0\x86\xcb\xe2\x6f\x76\x1e\x77\x74\x07\x8f\xb8\xc7\x8d\xa9\x0c\x1b\x0a\x73\xb8\x5d\xa7\x80\x67\x5f\x79\x96\x4b\xf8\xde\x25\xb4\x1e\x55\xc2\x25\x32\x94\xa8\x21\xb8\x9a\x20\xc8\x50\xdc\x16\xc8\x7b\xe7\x73\x04\xf4\x04\x81\x9d\x27\x2d\xcd\x62\x99\x88\x36\xb1\x0a\xf4\x6f\x10\x9c\xd4\xfd\x06\x0a\xad\xf4\xc0\xd8\xb0\x27\xc5\xa4\xa1\x42\xa6\x1e\xce\xd3\x36\x76\x28\x9f\xa6\x25\xd2\x41\x66\xe6\x1b\x7b\x19\x0f\x9b\x9a\xc2\x5d\xee\xca\x25\xd9\xe8\x9c\x05\x36\x01\xac\x63\x70\x07\xf2\x47\x6f\x98\xc9\x9e\x3d\x0e\xe8\x61\x83\xba\xad\x38\x4c\x74\x18\x1e\x12\x65\x16\x21\x75\x73\x51\x39\xd4\xf7\x23\xb3\x4f\x85\x10\x73\x05\xcb\xd6\x6c\x99\xc6\x66\xec\xee\xb7\x0b\xfc\xfc\x1c\x57\x9e\xcf\x9f\xe1\xfd\x24\xfc\x18\x81\x5d\xc6\x52\x11\xa7\xf0\x5f\x69\x3b\xca\x64\xe3\xbc\x77\xc7\xfb\xdb\x7c\x19\x16\xf1\xcf\x5a\xec\x1e\x5d\x55\x51\x6c\x42\x97\x5c\xcf\x30\xfb\x30\x30\x6f\x79\xf3\x05\xb9\x1c\x65\xbc\x47\x6b\x54\x71\xf3\x18\x99\x2c\x5d\x4d\x49\x00\x82\xa7\x2d\x79\xb2\x8a\x64\x4a\x32\x81\x98\x2c\xa8\x33\xec\xcd\xfc\x52\x97\x2c\x59\xb7\x00\x6d\xf5\x42\x99\x0b\xd7\x17\xb2\x34\x39\x41\xdb\xf9\xae\xab\x4a\xa8\x27\xf8\x66\x2b\xed\x09\x91\x75\x1b\x52\xd8\x04\x82\x23\x81\x76\xf6\x67\x06\x38\xa2\x65\x60\x37\xf4\xf7\x74\x20\x9f\xb6\x9e\x2c\x1b\xdf\x67\x99\xd9\x82\x5c\x00\x34\x55\x18\x3a\xb2\x83\x5d\x7b\x2e\x8c\xdd\x3a\x5f\x63\xf4\x90\x42\xce\x57\xa1\x5d\x98\x9e\x6b\xca\xb2\x3d\x42\x2d\x11\xa4\xc0\x34\xd0\x1d\x71\xfb\xae\x18\xb4\xa3\xdf\x79\x79\x16\x2a\x5b\xe3\x2b\xc3\xff\xd3\x55\x9a\xfc\xa7\x62\x62\xda\x59\xfc\x2f\xcd\xa6\x32\x2a\xce\x78\xd8\xe6\x8e\x78\xbd\x9c\xbb\x29\x3d\x4c\x96\xb2\xd8\x11\x3f\x4f\x98\x17\xf3\x31\x74\xaf\x23\x89\x7f\xc9\xe7\x2b\x29\xe7\x75\x47\xf3\x16\xb5\x6b\x0f\x76\x3b\x32\x95\x95\x94\x30\x0c\x23\xcf\xe4\xcb\x36\x7e\xd4\x83\xbf\xd0\xe2\x8e\x7c\x1a\xc6\x47\x19\xb5\xbd\x2e\x26\x1b\x95\x51\xe4\x8f\xbe\x9c\x60\x1d\xaf\x68\x14\xac\xe1\x39\x43\xbf\x6b\x6a\xb2\x9c\x9d\xa9\x0f\x91\xe5\x46\x25\xc8\x75\x42\x7c\xc8\xf6\xe4\x9f\x01\x6d\xfe\xfd\xe9\x6a\x8a\x4f\x56\x79\xc2\x40\x63\xd9\xdb\xbc\xa5\xa5\x8d\x21\x3e\x84\x18\x34\x6d\x61\x5a\xbc\xa4\x1d\xcf\x82\x54\x68\xaa\x18\x57\xbd\x94\x27\x58\x90\x25\xf5\xe8\x2c\x1b\xdb\x9c\x0f\x87\xa5\x57\x06\xc3\xe4\xd3\x8a\xb5\xeb\x5e\x39\xb7\xbf\x86\xd2\x9d\x00\xce\xb4\x38\x34\x4a\x11\x69\x11\x59\xab\x41\x3b\x4a\x4a\x20\x62\x72\x0d\x8a\x9d\x08\x54\x8d\xfe\x25\x09\xf8\x06\x3f\x36\x57\x6d\xf2\x93\x06\xa7\xd1\xdb\x53\x9f\x93\xa7\xd1\x81\x6b\xb5\x8f\x5e\x49\x35\xb1\xfc\x1a\x5f\x28\xc8\x59\x2a\xc9\x13\x14\xe7\x22\x3c\xa1\x2a\xa3\x6d\x97\x02\xe0\xc6\x1d\x68\x3e\x44\x34\x0c\x35\xa1\x0d\x51\xbc\xb9\x34\x76\x07\x47\xa1\xde\xd1\x3b\xf9\xd7\x70\x99\xb1\x41\xbe\x95\x9b\x96\x75\x71\x88\x27\xad\x34\x7c\x51\xe4\x0d\x41\xc0\xc3\xa0\xa3\x99\xa8\x8e\x28\x7a\x9d\xc0\xb3\x89\xde\xf4\x75\x4f\xa2\x4d\x29\x70\x16\xf3\x0e\xd8\xfd\xaf\x18\xf7\x54\x76\xc2\xe4\x11\xf7\x67\xcd\xed\xdd\xde\x2e\x11\x13\x42\x43\xf7\xb7\x13\xa9\xfc\xe0\xcf\x80\x09\xec\xbd\xdc\xe5\x50\x16\xd3\xf9\xdc\x01\xf2\x0a\x96\xd1\x48\x5d\x01\x3f\xcd\x4e\xb3\xff\x02\x00\x00\xff\xff\x96\x5e\x9c\xb2\x3e\x0b\x00\x00" func lockedtokensAdminUnlock_tokens_for_multiple_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -4040,11 +4019,11 @@ func lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4c, 0x5, 0xef, 0x22, 0xf6, 0x7a, 0xca, 0x62, 0x9, 0xf1, 0x3c, 0x4c, 0x45, 0x6e, 0xf5, 0xd8, 0x8, 0x24, 0xd, 0x8c, 0x4b, 0x29, 0x89, 0xc0, 0xa0, 0xd7, 0x6f, 0x3b, 0xbc, 0xe, 0xfe, 0x44}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x2d, 0x48, 0xce, 0xc5, 0xd4, 0xe6, 0xfb, 0x53, 0xc1, 0x93, 0x3b, 0xed, 0x3b, 0x3c, 0xa3, 0x70, 0x2d, 0xac, 0x89, 0xe5, 0x3d, 0x8a, 0xd2, 0xa8, 0xe6, 0x77, 0xa5, 0xd9, 0xfb, 0xfc, 0xef}} return a, nil } -var _lockedtokensDelegatorDelegate_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x6b\xdb\x40\x10\xbd\xeb\x57\x4c\x75\x08\x12\x34\x4a\x0f\xa5\x07\x63\x37\x24\xb1\x43\x21\xc1\x0e\x71\x9a\x9e\xd7\xd2\xc8\x16\x5e\x6b\xc4\xee\xa8\x76\x31\xfe\xef\x65\x3f\x2c\x4b\x32\xa1\x81\x12\x5d\x16\xed\xcc\xbc\x79\x6f\xde\x6c\xb1\xa9\x48\x31\xdc\x4b\xda\xbe\xd0\x1a\x4b\xc8\x15\x6d\x20\x6c\xfe\xc3\xe0\x98\x51\x97\xcb\x62\x21\xb1\x93\xd5\xbe\x6b\x32\x1f\x29\x5d\x63\x66\xef\xb4\x4b\xfc\xb2\x7b\x9c\xdd\x3d\x4c\xc6\x2f\xb3\x87\xc9\xf4\x66\x3c\x7e\x9e\xcc\xe7\x41\xc0\x4a\x94\x5a\xa4\x5c\x50\x19\x89\x0d\xd5\x25\x0f\xe0\xe7\x7d\xb1\xfb\xf6\x35\x86\x7d\x10\x00\x00\x48\x64\x58\x91\xcc\x50\x3d\x63\x3e\x00\x51\xf3\x2a\x6a\xc3\x27\xf6\x98\x55\xa8\x84\x81\xd1\x9f\xbb\x34\x93\x5f\x05\xaf\x32\x25\xb6\x31\x5c\x9c\x97\xfd\xb0\xc0\xa7\x46\xbf\x45\x2d\xf9\xd4\xe7\x4d\xa4\x66\x36\xc9\xab\xa9\x70\x00\x95\xc2\x4a\x28\x8c\x44\x9a\x3a\x25\x16\xe3\x96\x94\xa2\xed\xab\x90\x35\xc6\x70\x71\xe3\x62\x46\x1d\xf8\x4f\xa3\xcc\x93\x46\x21\x8c\xc0\xd7\x27\x9a\x49\x89\x25\x26\x0b\x8b\x30\xfc\x08\xe5\xdf\x23\x63\xce\x00\xde\x8a\xcf\x1d\x85\x27\xc1\xab\xb8\x21\x6c\xbe\xeb\x6b\xa8\x44\x59\xa4\x51\x78\x47\xb5\xcc\xa0\x24\x06\xc7\x13\x14\xe6\xa8\xb0\x4c\x11\x98\xa0\x85\x15\xc6\x41\x57\xf3\x71\xd8\xff\x90\xfc\x5e\x13\x8e\x5a\xae\x3c\xc8\x55\x7e\x8c\xdb\xf0\xbb\xf9\x9b\x32\x60\xbb\xe2\x96\xe1\x49\x50\xe8\x30\x0e\x4e\x07\xee\x30\xad\x19\x5b\x4e\x9a\x0d\xd2\x2c\xd6\xa8\x9e\x14\xed\xfe\xc0\xa8\xe7\xad\x97\x35\x46\x89\x4b\xc1\xa4\xa2\xd6\x44\x4c\xad\xb4\x2e\xdc\x0a\x29\xcc\xf4\xce\xaa\x97\xc8\xce\x27\xbf\x44\x3e\xb1\x8d\x52\xe4\xe0\x9e\x11\x0c\x47\x3d\xb8\x7d\xd0\x19\x40\x8b\x67\x92\x39\x42\x38\x45\x37\x2f\xdd\xbc\x45\x77\xb6\x1a\x1c\x00\xa5\x46\xd3\x27\xf2\x49\x70\xd9\x6d\x14\x9b\xd6\x1d\x7f\x93\xc5\x31\xd2\xe7\xd0\xd5\x97\x61\x45\xba\x60\x6f\xe3\xf0\xb2\x0b\xb2\xf5\xc6\xf7\xb8\x9d\xb5\x8f\xff\x47\x67\x4f\xe6\xbe\x03\xe5\x17\x66\x4a\x0c\x58\x52\xbd\x5c\xb9\x2d\xd1\x66\xcf\x6d\x9b\x4f\x61\x0b\xc1\xaf\xca\x21\xf8\x1b\x00\x00\xff\xff\x09\xf5\xc3\x5d\x5f\x05\x00\x00" +var _lockedtokensDelegatorDelegate_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x6b\xdb\x40\x10\xbd\xeb\x57\x4c\x75\x08\x12\x34\xca\xa5\xf4\x60\xec\x86\xa6\x25\xf4\x50\xd2\xd0\x8f\xf4\xbc\x96\x46\x96\xf0\x5a\x23\x76\x47\xb5\x8b\xf1\x7f\x2f\xfb\x21\x79\x57\x26\x34\x50\xaa\xcb\xa2\x9d\x99\x37\xef\xcd\x9b\x6d\x77\x3d\x29\x86\x7b\x49\xfb\xef\xb4\xc5\x0e\x6a\x45\x3b\x48\xa7\xff\x34\x19\x33\x86\x6e\xd3\xae\x25\x46\x59\xe1\xdd\x94\xf9\x99\xca\x2d\x56\xf6\x4e\xfb\xc4\xf0\x2a\x4d\x12\x56\xa2\xd3\xa2\xe4\x96\xba\x4c\xec\x68\xe8\x78\x01\x3f\xee\xdb\xc3\xdb\x37\x39\x1c\x93\x04\x00\x40\x22\x43\x43\xb2\x42\xf5\x15\xeb\x05\x88\x81\x9b\x2c\x44\x29\xec\xf1\xa5\x47\x25\x0c\x8c\x7e\x1d\x13\x2c\x7e\xb6\xdc\x54\x4a\xec\x73\xb8\xba\x2c\xfb\x64\x81\xcf\x8d\x7e\x89\x41\xf2\xb9\xcf\xb3\x48\xd3\x54\x8a\x27\x53\xe1\x00\x7a\x85\xbd\x50\x98\x89\xb2\x74\x4a\x2c\xc6\x1d\x29\x45\xfb\x27\x21\x07\xcc\xe1\xea\xbd\x8b\x19\x75\xe0\x3f\x8d\xb2\x2e\x26\x85\xb0\x02\x5f\x5f\x68\x26\x25\x36\x58\xac\x2d\xc2\xf2\x7f\x28\x7f\x97\x19\x5b\x16\xf0\x5c\xfc\x9b\xa3\xf0\x28\xb8\xc9\x27\xc2\xe6\xbb\xbd\x85\x5e\x74\x6d\x99\xa5\x1f\x68\x90\x15\x74\xc4\xe0\x78\x82\xc2\x1a\x15\x76\x25\x02\x13\x04\x58\x69\x9e\xc4\x9a\xc7\x61\xff\x45\xf2\x4b\x4d\x18\xb5\xdc\x78\x90\x9b\x7a\x8c\xdb\xf0\x8b\xf9\x9b\x32\x60\xbb\xdc\x96\xe1\x59\x50\xea\x30\x4e\x4e\x07\x1e\xb0\x1c\x18\x03\x27\xcd\x06\x69\x16\x5b\x54\x8f\x8a\x0e\xbf\x61\x35\xf3\xd6\xcb\xfa\x88\x12\x37\x82\x49\x65\xc1\x44\x4c\xad\xb4\x2e\xdc\x09\x29\xcc\xf4\x2e\xaa\x37\xc8\xce\x27\xbf\x44\x3e\x31\x44\x69\x6b\x70\xcf\x08\x96\xab\x19\xdc\x31\x89\x06\x10\xf0\x2c\x2a\x47\x08\x1f\xd0\xcd\x4b\x4f\x6f\xd1\x9d\x41\x83\x13\xa0\xd4\x68\xfa\x64\x3e\x09\xae\xe3\x46\xb9\x69\x1d\xf9\x5b\xac\xc7\xc8\x9c\x43\xac\xaf\xc2\x9e\x74\xcb\xde\xc6\xe5\x75\x0c\xb2\xf7\xc6\xcf\xb8\x5d\xb4\xcf\xff\x45\xe7\x4c\xe6\x31\x82\xf2\x0b\xf3\x40\x0c\xd8\xd1\xb0\x69\xdc\x96\x68\xb3\xe7\xb6\xcd\xab\x34\x40\xf0\xab\x72\x4a\xfe\x04\x00\x00\xff\xff\x27\x2b\xab\x74\x59\x05\x00\x00" func lockedtokensDelegatorDelegate_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4060,11 +4039,11 @@ func lockedtokensDelegatorDelegate_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x67, 0xb2, 0xbe, 0xab, 0x4b, 0x30, 0x88, 0x7, 0xe1, 0x1f, 0x8b, 0x7b, 0x65, 0x4c, 0x54, 0x90, 0x6, 0xcc, 0x7, 0x2a, 0xe1, 0x2d, 0xc9, 0x63, 0x4d, 0x41, 0xdc, 0xe4, 0x55, 0xbd, 0x56, 0x4c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3e, 0xfd, 0xc4, 0x42, 0x2b, 0x91, 0x5b, 0x9a, 0x45, 0x5d, 0x9a, 0x60, 0xe7, 0xda, 0xab, 0x8, 0x8a, 0x76, 0xda, 0xf2, 0xe4, 0xb7, 0x0, 0x52, 0xc0, 0xe5, 0x43, 0xbf, 0xb5, 0xb5, 0x26, 0xd5}} return a, nil } -var _lockedtokensDelegatorDelegate_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4f\x6f\xaa\x40\x10\xbf\xf3\x29\x26\x1c\x0c\x24\x2f\xe4\x1d\x5e\xde\xc1\xd4\x1a\x5b\x34\x4d\x34\x6a\xd4\xb6\xe7\x91\x1d\x64\x23\xee\x92\xdd\xa1\xd2\x34\x7e\xf7\x46\x56\x50\x6a\xca\x65\x59\xe6\x37\xbf\x7f\x41\x1e\x0a\x6d\x18\x66\x3a\xd9\x93\xd8\xe8\x3d\x29\x0b\xa9\xd1\x07\xf8\x5b\xcd\x16\xcf\xd3\x71\xbc\x59\x4c\xc7\xf3\x51\x1c\xaf\xc6\xeb\xb5\x77\x41\x4f\x4a\xb5\x93\xdb\x9c\x6a\xbc\x83\xfb\x9d\x6f\xbe\xe7\xb1\x41\x65\x31\x61\xa9\x55\x80\x07\x5d\x2a\xee\xc3\xeb\x44\x56\xff\xff\x85\xf0\xe5\x01\x00\xe4\xc4\xa0\xb4\xa0\x98\x72\xda\x21\x6b\xb3\x34\xba\xfa\xec\x77\xbc\x44\xee\x32\xbf\x83\x79\x35\x45\x61\xa8\x40\x43\x01\x26\x89\x53\xc0\x92\xb3\xe0\x49\x1b\xa3\x8f\x6f\x98\x97\x14\x42\x6f\xe4\x66\x8d\x6a\xa3\x9c\xe9\x5c\x90\x59\x51\x0a\x03\xb8\xac\x47\x96\xb5\xc1\x1d\x45\xdb\x9a\xe0\xa1\x26\xeb\xb8\xa9\x8f\x45\x41\x06\xcf\xb9\xec\x9f\x6e\x13\xd1\xbb\xe4\x4c\x18\x3c\x86\xd0\xbb\x5f\x7b\xa9\x05\x1f\x83\x73\x5d\x3f\x42\xde\xcc\xd7\xce\xc2\x12\x39\x0b\x5b\xbf\xe7\x67\x38\x84\x02\x95\x4c\x02\xff\x06\x0d\xd2\x82\xd2\x0c\x16\x3f\x48\x00\x32\xd8\x82\x12\x99\x4a\x12\x50\x20\x67\xfe\x95\xa2\x7d\xb1\x94\xa7\xd1\x7d\xed\x30\xb8\x36\x72\xc9\xdf\x02\x02\x47\x73\x72\x9d\x53\x45\x49\xc9\x74\x53\xe7\x2f\x94\x91\x70\x57\x5a\xd1\x11\x8d\x68\xd2\xb6\x7f\x83\x3b\x1b\xee\x93\xf7\x1d\x00\x00\xff\xff\x9c\xb1\x39\xe2\x8b\x02\x00\x00" +var _lockedtokensDelegatorDelegate_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xcb\x6a\xeb\x30\x10\xdd\xfb\x2b\x06\x2f\x82\x0d\x17\xaf\x2e\x5d\x84\xa6\xa1\xa5\x84\x2e\x4a\x1b\xd2\xd7\x7a\x62\x8d\x63\x11\x47\x12\xa3\x71\x93\x52\xf2\xef\x25\x96\xed\xd8\x0d\xf5\x46\xd6\xe8\xe8\xbc\x90\xde\x39\xcb\x02\x8f\x36\xdf\x92\x7a\xb5\x5b\x32\x1e\x0a\xb6\x3b\x88\x87\xa3\x38\x6a\x71\x8b\xda\x6c\xf4\xba\xa2\x66\xdc\x02\x47\xb3\x38\x8a\x84\xd1\x78\xcc\x45\x5b\x93\xe0\xce\xd6\x46\xa6\xf0\xb6\xd0\x87\xab\xff\x29\x7c\x47\x00\x00\x15\x09\x18\xab\xe8\x9e\x2a\xda\xa0\x58\x5e\xb2\x3d\x7c\x4d\x47\x2e\xb2\xb0\x79\xba\x80\x45\x0d\x85\x63\x72\xc8\x94\x60\x9e\x07\x05\xac\xa5\x4c\xee\x2c\xb3\xdd\xbf\x63\x55\x53\x0a\x93\xdb\x70\xd6\xa9\x76\xca\xa5\xad\x14\xf1\x8a\x0a\x98\x41\x7b\x3d\xf3\x62\x19\x37\x94\xad\x1b\x82\xeb\x86\x6c\xe4\xa6\x59\x9e\x1d\x31\x9e\x72\xf9\x7f\xe3\x26\xb2\x0f\x2d\xa5\x62\xdc\xa7\x30\xb9\xbc\xf6\xd0\x08\xde\x24\xa7\xba\x7e\x85\x1c\x9c\xbf\x04\x0b\x4b\x94\x32\xed\xfd\x9e\xbe\xf9\x1c\x1c\x1a\x9d\x27\xf1\x00\x0d\xda\x83\xb1\x02\x1e\x3f\x49\x01\x0a\x78\x47\xb9\x2e\x34\x29\x70\x28\x65\x7c\xa6\xe8\x7f\x3c\x55\x45\x76\x59\x3b\xcc\xce\x8d\xb4\xf9\x7b\x40\x12\x68\x8e\xa1\x73\x3a\x50\x5e\x0b\x0d\xea\xfc\x83\x32\x53\x61\x4b\x2b\xda\x23\xab\x2e\x6d\xff\x1a\xc2\xda\x71\x1f\xa3\x9f\x00\x00\x00\xff\xff\xea\xe0\x30\x4d\x85\x02\x00\x00" func lockedtokensDelegatorDelegate_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4080,11 +4059,11 @@ func lockedtokensDelegatorDelegate_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x63, 0x33, 0x99, 0xe7, 0xa8, 0xae, 0x8e, 0x11, 0xea, 0xd3, 0xc3, 0x47, 0xb3, 0xf0, 0xf7, 0x21, 0x46, 0x9b, 0x23, 0x4f, 0x70, 0x5c, 0x14, 0x35, 0x81, 0x9e, 0x59, 0x34, 0x5f, 0xa0, 0x41, 0xe4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd4, 0x98, 0x5, 0x2f, 0xf1, 0x93, 0xc8, 0x5b, 0xf1, 0x7e, 0x2d, 0x4e, 0xc0, 0x43, 0xef, 0xdb, 0xcc, 0x0, 0xc1, 0xf8, 0xcc, 0xd9, 0x4, 0x9a, 0xc0, 0x5c, 0x31, 0xaf, 0xb7, 0x3b, 0x43, 0x40}} return a, nil } -var _lockedtokensDelegatorDelegate_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xcd\x6a\xc2\x40\x10\xbe\xe7\x29\x86\x1c\x24\x81\x12\x7a\x28\x3d\x48\xad\xd8\x46\x29\x28\x2a\xfe\xb4\xe7\x31\x99\x98\xc5\xb8\xbb\xec\x4e\x6a\x4a\xf1\xdd\x8b\x59\x4d\x4d\xa5\xb9\x2c\x9b\xf9\xe6\xfb\x63\xc5\x5e\x2b\xc3\x30\x51\xc9\x8e\xd2\x95\xda\x91\xb4\x90\x19\xb5\x87\xfb\x6a\x32\x7b\x1d\x0f\xe3\xd5\x6c\x3c\x9c\x0e\xe2\x78\x31\x5c\x2e\xbd\x33\x7a\x54\xca\xad\xd8\x14\x54\xe3\x1d\xdc\x6f\xfd\xf3\x3d\x8f\x0d\x4a\x8b\x09\x0b\x25\x03\xdc\xab\x52\x72\x17\xd6\x23\x51\x3d\x3e\x84\xf0\xed\x01\x00\x14\xc4\x20\x55\x4a\x31\x15\xb4\x45\x56\x66\x6e\x54\xf5\xd5\x6d\x79\x89\xdc\x65\x7a\x03\xf3\x6a\x0a\x6d\x48\xa3\xa1\x00\x93\xc4\x29\x60\xc9\x79\xf0\xa2\x8c\x51\x87\x77\x2c\x4a\x0a\xa1\x33\x70\xb3\x8b\xea\x45\x39\x57\x45\x4a\x66\x41\x19\xf4\xe0\xbc\x1e\x59\x56\x06\xb7\x14\x6d\x6a\x82\xa7\x9a\xac\xe5\xa6\x3e\x66\x9a\x0c\x9e\x72\xd9\xbb\x76\x13\xd1\x87\xe0\x3c\x35\x78\x08\xa1\x73\xbb\xf6\x56\x0b\x3e\x07\xa7\xba\xfe\x84\xbc\x9a\x2f\x9d\x85\x39\x72\x1e\x36\x7e\x4f\x5f\xbf\x0f\x1a\xa5\x48\x02\xff\x0a\x0d\xc2\x82\x54\x0c\x16\x3f\x29\x05\x64\xb0\x9a\x12\x91\x09\x4a\x41\x23\xe7\x7e\xe8\x35\x1c\x96\x8a\x2c\xba\xad\x1b\x7a\xbf\x4d\x9c\x73\x37\x80\xc0\x39\x38\x3a\x12\xaa\x28\x29\x99\xae\x6a\xfc\x87\x32\x4a\xdd\x95\xd6\xd2\x32\x36\x29\x9b\x57\xe0\xce\x0b\xf7\xd1\xfb\x09\x00\x00\xff\xff\xab\x8a\x9f\x89\x83\x02\x00\x00" +var _lockedtokensDelegatorDelegate_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4f\x4b\xeb\x40\x10\xbf\xe7\x53\x0c\x39\x94\x04\x1e\x39\x3d\xde\xa1\xbc\x5a\x14\x29\x1e\x44\x8b\x5a\x3d\x4f\x77\x27\xcd\xd2\x74\x67\xd9\x9d\xd8\x8a\xf4\xbb\x4b\xb3\x69\x4c\x2c\xe6\xb2\xec\xec\x6f\x7e\xff\x88\xd9\x39\xf6\x02\xf7\xac\xb6\xa4\x5f\x78\x4b\x36\x40\xe9\x79\x07\xe9\x70\x94\x26\x1d\x6e\xd1\xd8\x8d\x59\xd7\xd4\x8e\x3b\xe0\x68\x96\x26\x89\x78\xb4\x01\x95\x18\xb6\x19\xee\xb8\xb1\x32\x85\xd5\xc2\x1c\xfe\xfd\xcd\xe1\x33\x01\x00\xa8\x49\xc0\xb2\xa6\x5b\xaa\x69\x83\xc2\x7e\xe9\xf9\xf0\x31\x1d\xb9\x28\xe2\xe5\xe1\x02\x96\xb4\x14\xce\x93\x43\x4f\x19\x2a\x15\x15\xb0\x91\x2a\xbb\x61\xef\x79\xff\x8a\x75\x43\x39\x4c\xae\xe3\xdb\x59\xf5\xac\x5c\x71\xad\xc9\x3f\x51\x09\x33\xe8\xd6\x8b\x20\xec\x71\x43\xc5\xba\x25\xf8\xdf\x92\x8d\xdc\xb4\xc7\xa3\x23\x8f\xa7\x5c\xe1\xcf\xb8\x89\xe2\xcd\x48\xa5\x3d\xee\x73\x98\x5c\xae\xdd\xb5\x82\x57\xd9\xa9\xae\x1f\x21\x07\xef\xcf\xd1\xc2\x12\xa5\xca\x7b\xbf\xa7\x6f\x3e\x07\x87\xd6\xa8\x2c\x1d\xa0\xc1\x04\xb0\x2c\x10\xf0\x9d\x34\xa0\x40\x70\xa4\x4c\x69\x48\x83\x43\xa9\xd2\x3c\xe9\x39\x02\xd5\x65\x71\x59\x37\xcc\xbe\x9b\xe8\x72\xf7\x80\x2c\x3a\x38\x46\x12\x3a\x90\x6a\x84\x06\x35\xfe\x42\x59\xe8\x78\xa5\x95\x0d\x82\x7d\xca\xfe\x2f\x88\xe7\x99\xfb\x98\x7c\x05\x00\x00\xff\xff\xbf\x32\xa6\x32\x7d\x02\x00\x00" func lockedtokensDelegatorDelegate_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4100,11 +4079,11 @@ func lockedtokensDelegatorDelegate_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x90, 0x57, 0xfc, 0xc5, 0x7f, 0xca, 0x8f, 0x47, 0xe, 0x13, 0xf5, 0x3a, 0x1b, 0x8c, 0x9, 0x4e, 0x4d, 0xc8, 0x33, 0xff, 0x39, 0x98, 0xa2, 0x80, 0x25, 0xbe, 0x1, 0x79, 0x4c, 0x2f, 0xd9, 0xfc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0x83, 0x51, 0xb4, 0x43, 0xb4, 0x5a, 0x2, 0xbf, 0x7, 0xab, 0xdf, 0x75, 0x84, 0x56, 0xd, 0x4a, 0xbe, 0x18, 0xa4, 0x1, 0x5e, 0xcc, 0xc5, 0xf0, 0x4, 0xe, 0x42, 0xc8, 0x24, 0xa0, 0x99}} return a, nil } -var _lockedtokensDelegatorGet_delegator_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcf\x6a\xf3\x30\x10\xc4\xef\x7a\x8a\xf9\x72\xf8\xb0\x2f\xa6\xb4\xb7\xd0\x36\x84\x38\xd0\x10\xd3\x84\x24\x7d\x00\x59\x5e\xbb\x22\xb2\xd6\x48\x6b\x5a\x28\x7d\xf7\x12\xbb\x4d\xff\xce\x45\x20\x66\xe6\xb7\x63\xdb\x8e\x83\xa0\x60\x73\xa4\xea\xc0\x47\xf2\x11\x75\xe0\x16\x17\xcf\xc5\x66\xb1\x5e\xe6\x87\xcd\x7a\x79\x3f\xcf\xf3\xdd\x72\xbf\x57\x4a\x1b\x43\x31\x26\xda\xb9\x14\x75\xef\xd1\x6a\xeb\x13\x6d\x0c\xf7\x5e\xa6\x98\x57\x55\xa0\x18\xd3\x29\x1e\x56\x5e\xae\x2e\xf1\xa2\x14\x00\x38\x12\xb8\x81\x30\x1f\xad\x2b\x5f\xf3\x8e\x6a\xdc\xa0\x21\x79\xff\xfb\xa8\x49\x87\xc8\x49\x99\xd1\x9d\x2e\xad\xb3\x62\x29\x66\x25\x87\xc0\x4f\xd7\xff\xbf\x9e\x9a\x0d\xcf\x1d\xbb\x8a\xc2\x6d\x72\x0e\x9e\xf4\xcd\x56\xfc\x84\x6f\xfb\xd2\x59\xb3\xd5\xf2\x78\x0e\x7d\x72\x67\x33\x74\xda\x5b\x93\x4c\x16\xdc\xbb\x0a\x9e\x05\x23\x1d\x1a\x81\x6a\x0a\xe4\x0d\x41\x18\xdd\x50\x83\x5f\xf5\x93\x74\x1c\x1e\x48\xfa\xe0\xff\xdc\x9e\x35\x24\x39\x39\x6a\xb4\x70\x58\xe5\x49\xfa\x4f\xbd\xaa\xb7\x00\x00\x00\xff\xff\x25\x15\x38\xf9\x8e\x01\x00\x00" +var _lockedtokensDelegatorGet_delegator_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcd\x4e\xc3\x30\x10\x84\xef\x7e\x8a\x21\x07\x94\x5c\x72\x80\x5b\x05\x54\x15\x3d\x10\xa9\x87\x0a\xc1\x03\x38\xce\x26\x58\x75\xbc\xd1\x7a\x2d\x0e\x88\x77\x47\x4d\xa0\x94\x9f\xbd\x58\x1a\xcd\x7c\xe3\xf1\xe3\xc4\xa2\xd8\xb1\x3b\x50\xf7\xc4\x07\x8a\x09\xbd\xf0\x88\xe2\x5c\x2a\x8c\xb1\xce\x51\x4a\xa5\x0d\xa1\x42\x9f\x23\x46\xeb\x63\x69\x9d\xe3\x1c\x75\x85\x4d\xd7\x09\xa5\x54\xad\xf0\xdc\x44\xbd\xbe\xc2\x9b\x31\x00\x10\x48\x11\x66\xd0\x66\xb1\x36\xb1\xe7\x47\xea\x71\x8b\x81\xf4\x53\xfb\xc2\x54\x73\xe4\x78\xb5\xb3\x93\x6d\x7d\xf0\xea\x29\xd5\x2d\x8b\xf0\xeb\xcd\xe5\xf9\x8f\xea\xf9\x79\xe0\xd0\x91\xdc\x95\xa7\xe0\xf1\x7e\xd8\x76\xbf\xcb\xf7\xb9\x0d\xde\xed\xad\xbe\x9c\x42\xdf\xbd\xeb\x35\x26\x1b\xbd\x2b\x8b\x7b\xce\xa1\x43\x64\xc5\xd2\x0e\x0b\xa1\x9e\x84\xa2\x23\x28\x63\x9a\x31\xf8\x83\x2f\xaa\x65\xb8\x90\x66\x89\xff\x6e\xaf\x07\xd2\x2d\x05\x1a\xac\xb2\x34\xdb\xb2\xba\x30\xef\xe6\x23\x00\x00\xff\xff\x3e\xb8\x32\x69\x88\x01\x00\x00" func lockedtokensDelegatorGet_delegator_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4120,11 +4099,11 @@ func lockedtokensDelegatorGet_delegator_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x82, 0x5a, 0x4d, 0xf6, 0x36, 0xfc, 0x9, 0xdc, 0x2b, 0x31, 0xb, 0x69, 0xb7, 0x23, 0x56, 0x1d, 0xe5, 0x81, 0xb7, 0x7e, 0xc4, 0x61, 0xcd, 0x39, 0x6a, 0x94, 0x30, 0x25, 0x80, 0x62, 0xd3, 0xd0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x12, 0xcf, 0xbd, 0xf4, 0xb4, 0xe2, 0x96, 0x6a, 0xb, 0x7b, 0x4f, 0xdf, 0xfe, 0x86, 0x5a, 0xbc, 0xa7, 0xae, 0x48, 0x8a, 0x9f, 0x27, 0xf1, 0x4c, 0xdb, 0x2a, 0x8c, 0xf4, 0x72, 0xc0, 0x88}} return a, nil } -var _lockedtokensDelegatorGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4d\x8f\xda\x30\x14\xbc\xe7\x57\x3c\xf6\x80\x12\x69\x15\x7a\x46\x4d\x25\xd4\x50\x15\xed\x8a\x5d\x01\xb7\xd5\x1e\x9c\xf8\x05\x5c\x8c\x5f\x64\x3b\xa2\x15\xe2\xbf\x57\xf9\x20\xc4\x9b\x50\xd1\xcd\x25\xc2\x9e\x19\x8f\xdf\x4c\x10\x87\x9c\xb4\x85\x1f\x92\x8e\x8b\x78\xc3\x12\x89\x6b\xcb\xf6\x42\x6d\x21\xd3\x74\x80\x87\xfe\xc6\x83\xd7\x70\x9e\x29\xdd\x23\xdf\xd0\x1e\x95\xa9\xd1\x5f\x7e\x3f\xbf\x7c\x7f\x9a\xc7\x9b\x97\xa7\xf9\x72\x16\xc7\xab\xf9\x7a\xed\x79\x93\x09\xac\xd0\x16\x5a\x19\x60\x0a\x98\xd6\xec\x0f\x50\x06\x31\x4a\xdc\x32\x4b\x7a\xa1\x32\x02\x4a\x7e\x61\x6a\x0d\xd8\x1d\xb3\x60\x77\x08\x2c\x4d\xa9\x50\x16\x52\x52\x56\x93\x34\xa5\x8c\x50\x20\xac\x01\x45\xfa\xc0\x64\x8b\x60\x8a\x83\xd9\x31\x8d\xfc\xb2\xe4\x79\x2c\x4d\xd1\x18\x9f\x49\x19\x40\x56\x28\x38\x30\xa1\xfc\x66\x77\x0a\x33\xce\x35\x1a\x13\x4c\xe1\xad\x7f\xbf\xd0\x31\xf6\x0e\x27\xcf\x03\x00\x90\x68\x81\x77\x77\x66\xe5\x45\xee\x52\x88\xe0\xed\xfd\x2a\x92\x17\xc9\xac\x71\x1e\xc1\x16\x6d\xf3\xe3\xe2\x2e\xb8\x22\x29\xb7\x82\x14\x93\xad\xdc\x0a\x33\x88\x3a\x02\x15\xb2\x7c\xc2\x94\xe5\x2c\x11\x52\x58\x81\x26\x4c\x48\x6b\x3a\x7e\x1d\x9f\x06\xac\x2d\x89\x63\xab\xf7\x5a\x24\x52\xa4\xe7\x6f\x7e\x2b\x54\x3e\x93\xbc\x5a\x9e\x64\x92\x8e\x0d\xad\x65\xb4\xc0\xc6\xa6\xc8\xdc\xc1\xd4\x0e\x07\x8d\x9f\x5a\x6e\xc9\x10\x65\xe8\xd1\x40\xef\xdc\xe1\xb9\xce\x14\x71\x5c\xc4\x53\xe7\xb8\xb0\x5e\x7c\x74\x80\xd7\xa0\x3e\xa2\x05\xef\x5c\xa1\x0f\xbf\xe4\x1a\xb2\x3c\x47\xc5\xfd\xd2\x66\x8d\x3b\xf7\x73\xa9\x3f\x80\x26\x8b\x92\xfa\x9f\xf9\x74\x3f\xa0\xb0\x7a\xfd\x24\xc9\x51\x7f\xc8\xc3\x81\xf5\xce\xac\x33\x7c\x65\x76\x77\x23\x1b\x39\xec\xf2\x9f\x97\x70\xb3\xaa\x27\x0c\xd1\xa0\x54\xb8\x45\xdb\x46\xb6\xac\x90\x7e\xe0\xd0\x3b\x61\xdc\xa3\x51\xf1\x5b\x01\x91\x5d\x8e\x1f\x45\xa0\x84\x84\xf1\xd8\x11\x6c\x56\x4f\xce\xc4\x3e\x5d\xb0\x6e\xc9\xea\xf7\xe8\xb1\x07\x18\x2e\xd7\x22\x1e\x39\xc8\xe0\x46\x21\x6f\x37\xac\x6e\x59\xa7\x6b\xba\xfa\xd7\x1c\xe0\x7a\x67\xef\x6f\x00\x00\x00\xff\xff\x46\x00\x85\xd2\xb8\x05\x00\x00" +var _lockedtokensDelegatorGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4d\x8b\xdb\x30\x14\xbc\xfb\x57\xbc\xe4\x10\x6c\x58\x9c\x7b\xa8\x0b\x81\x50\x1a\x28\xcb\xb2\xdd\xdb\xb2\x87\x67\xeb\x39\x51\xa3\xe8\x19\x49\x26\x94\x90\xff\x5e\xfc\x11\xc5\x5a\x3b\x25\xad\x2f\x26\x4f\x33\xa3\x91\x66\x62\x79\xac\xd8\x38\xf8\xa6\xf8\xb4\xdd\xbc\x61\xae\xe8\xa7\xc3\x83\xd4\x3b\x28\x0d\x1f\x61\x3e\x5e\x98\x47\x3d\xe7\x07\x17\x07\x12\x6f\x7c\x20\x6d\x7b\xf4\x70\x34\x8f\xa2\xe5\x12\x5e\xc9\xd5\x46\x5b\x40\x0d\x68\x0c\xfe\x06\x2e\x61\x43\x8a\x76\xe8\xd8\x6c\x75\xc9\xc0\xf9\x2f\x2a\x9c\x05\xb7\x47\x07\x6e\x4f\x80\x45\xc1\xb5\x76\x50\xb0\x76\x86\x95\x6d\x64\xa4\x06\xe9\x2c\x68\x36\x47\x54\x1e\x81\x5a\x80\xdd\xa3\x21\x71\x1d\x45\x11\x16\x05\x59\x1b\xa3\x52\x09\x94\xb5\x86\x23\x4a\x1d\xf7\xab\x2b\x58\x0b\x61\xc8\xda\x64\x05\xef\xe3\x93\xa5\x81\xb1\x0f\x38\x47\x11\x00\x80\x22\x07\x62\xb8\xb2\x6e\x0e\xf2\x90\x42\x06\xef\x1f\x37\x91\xaa\xce\xd7\xbd\xf3\x0c\x76\xe4\xfa\x1f\x57\x77\xc9\x0d\xc9\x95\x93\xac\x51\x79\xb9\x57\x2a\x21\x1b\x08\xb4\xc8\xe6\x49\x0b\xac\x30\x97\x4a\x3a\x49\x36\xcd\xd9\x18\x3e\x7d\x59\x9c\x27\xac\x3d\xb3\x20\xaf\xf7\x52\xe7\x4a\x16\x97\xaf\xb1\x17\x6a\x9e\x65\xd5\x8e\x97\xa5\xe2\x53\x4f\xf3\x0c\x0f\xec\x6d\xca\x32\xbc\x98\xce\xe1\xa4\xf1\xb3\xe7\x36\x0c\xd9\x84\x9e\x4d\x34\x2e\xbc\xbc\xd0\x99\x66\x41\xdb\xcd\x2a\xd8\x2e\xed\x86\x4f\x01\xf0\x16\xd4\x67\xb4\x14\x83\x23\x8c\xe1\xd7\x5c\x53\xac\x2a\xd2\x22\x6e\x6c\x76\xb8\xcb\x38\x97\xae\xe7\x7d\x16\x0d\xf5\x1f\xf3\x19\xfe\x4f\xd2\xf6\xf5\x9d\x95\x20\xf3\x29\x8f\x00\x36\xda\xb3\xcb\xf0\x05\xdd\xfe\x4e\x36\x6a\xda\xe5\x5f\x0f\x11\x66\xd5\xdd\x30\x64\x93\x52\xe9\x8e\x9c\x8f\xec\xb9\x45\xc6\x49\x40\x1f\x84\xf1\x88\x46\xcb\xf7\x02\xb2\xbc\x6e\x3f\xcb\x40\x4b\x05\x8b\x45\x20\xd8\x4f\xcf\xc1\x8d\xfd\x77\xc1\x86\x25\xeb\xde\xb3\xa7\x11\x60\xba\x5c\xdb\xcd\x2c\x40\x26\x77\x0a\x79\xbf\x61\x5d\xcb\x06\x5d\x33\xed\x57\x73\x82\x1b\x5d\xa2\x3f\x01\x00\x00\xff\xff\xc7\x86\x6b\x79\xb2\x05\x00\x00" func lockedtokensDelegatorGet_delegator_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -4140,11 +4119,11 @@ func lockedtokensDelegatorGet_delegator_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x68, 0xfa, 0x45, 0x3, 0xde, 0xf8, 0x83, 0x56, 0x56, 0x95, 0xb2, 0xb8, 0x4f, 0x46, 0x9a, 0x39, 0x7e, 0x9a, 0x44, 0x23, 0x6a, 0x1c, 0x59, 0x48, 0x8, 0xe9, 0x9a, 0xeb, 0xf1, 0xa8, 0x3a, 0xf6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa9, 0x5c, 0xc3, 0x5a, 0x3c, 0x1a, 0xd2, 0x9d, 0x8d, 0xd9, 0xb6, 0x51, 0x45, 0x55, 0x69, 0xac, 0x7b, 0x6b, 0x27, 0x53, 0x9f, 0xd8, 0xc7, 0xf1, 0x19, 0xf9, 0xa9, 0x40, 0x26, 0x69, 0xf2, 0x3f}} return a, nil } -var _lockedtokensDelegatorGet_delegator_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcf\x6a\xf3\x30\x10\xc4\xef\x7a\x8a\xfd\x72\xf8\xb0\x2f\xa6\xe7\xd0\x36\x98\xd8\xd0\x10\x93\x84\x38\x2f\x20\x4b\x6b\x57\x44\xd6\x9a\xd5\x9a\x16\x4a\xdf\xbd\xc4\x6e\xd3\xbf\x73\x11\x88\x99\xf9\xed\xb8\x7e\x20\x16\xa8\xc8\x9c\xd1\x9e\xe8\x8c\x21\x42\xcb\xd4\xc3\xcd\x73\xb5\x5f\x6f\xcb\xe2\xb4\xdf\x96\xbb\xbc\x28\x8e\x65\x5d\x2b\xa5\x8d\xc1\x18\x13\xed\x7d\x0a\xed\x18\xa0\xd7\x2e\x24\xda\x18\x1a\x83\x2c\x21\xb7\x96\x31\xc6\x74\x09\xb5\xb0\x0b\x1d\xbc\x28\x05\x00\xe0\x51\xc0\x4f\x84\x7c\xb6\x6e\x42\x4b\x47\x6c\xe1\x0e\x3a\x94\xf7\xbf\x8f\x9a\x74\x8a\x5c\x94\x19\x3d\xe8\xc6\x79\x27\x0e\x63\xd6\x10\x33\x3d\xdd\xfe\xff\x7a\x6a\x36\x3d\x0f\xe4\x2d\xf2\x7d\x72\x0d\x5e\xf4\xcd\x56\xfd\x84\x1f\xc6\xc6\x3b\x73\xd0\xf2\x78\x0d\x7d\x72\x57\x2b\x18\x74\x70\x26\x59\xac\x69\xf4\x16\x02\x09\xcc\x74\xd0\xc0\xd8\x22\x63\x30\x08\x42\x30\x4c\x35\xf0\xab\x7e\x91\xce\xc3\x19\x65\xe4\xf0\xe7\xf6\xac\x43\x29\xd0\x63\xa7\x85\x78\x47\x16\x37\x45\x92\xfe\x53\xaf\xea\x2d\x00\x00\xff\xff\x48\x1a\x69\xcc\x92\x01\x00\x00" +var _lockedtokensDelegatorGet_delegator_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcf\x4e\xf3\x30\x10\xc4\xef\x7e\x8a\xf9\x72\xf8\x94\x5c\xf2\x00\x15\x50\x55\xf4\x40\xa5\x0a\x55\xc0\x0b\x38\xf6\x26\x58\x75\xbc\xd1\x7a\x2d\x0e\x88\x77\x47\x4d\xa0\x94\x3f\x7b\xb1\x34\x9a\xf9\x8d\x27\x8c\x13\x8b\x62\xcf\xee\x48\xfe\x89\x8f\x94\x32\x7a\xe1\x11\xd5\xa5\x54\x19\x63\x9d\xa3\x9c\x6b\x1b\x63\x83\xbe\x24\x8c\x36\xa4\xda\x3a\xc7\x25\xe9\x0a\x1b\xef\x85\x72\x6e\x56\x78\x54\x09\x69\xc0\xab\x31\x00\x10\x49\x11\x67\xd0\x66\xb1\xee\x52\xcf\x0f\xd4\xe3\x1a\x03\xe9\x87\xf6\x89\x69\xe6\xc8\xe9\x5a\x67\x27\xdb\x85\x18\x34\x50\x6e\x3b\x16\xe1\x97\xab\xff\x97\x3f\x6a\xe7\xe7\x8e\xa3\x27\xb9\xa9\xcf\xc1\xd3\x7d\xb3\xed\x7f\x96\x1f\x4a\x17\x83\x3b\x58\x7d\x3e\x87\xbe\x7a\xd7\x6b\x4c\x36\x05\x57\x57\xb7\x5c\xa2\x47\x62\xc5\xd2\x0e\x0b\xa1\x9e\x84\x92\x23\x28\x63\x9a\x31\xf8\x85\xaf\x9a\x65\xb8\x90\x16\x49\x7f\x6e\x6f\x07\xd2\x2d\x45\x1a\xac\xb2\xdc\xb3\xa7\xdd\xb6\x6e\xfe\x99\x37\xf3\x1e\x00\x00\xff\xff\x2b\x7f\x31\x90\x8c\x01\x00\x00" func lockedtokensDelegatorGet_delegator_node_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4160,11 +4139,11 @@ func lockedtokensDelegatorGet_delegator_node_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_node_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0xf2, 0x8d, 0xfd, 0xd3, 0x74, 0x8f, 0xcb, 0x79, 0x88, 0x24, 0x6, 0x60, 0x63, 0x2f, 0xa7, 0x9f, 0x1b, 0x6f, 0x9f, 0xa9, 0xce, 0xcc, 0x82, 0x81, 0x51, 0xb9, 0x51, 0x38, 0x32, 0xe7, 0x8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xee, 0x61, 0xcb, 0xb1, 0x59, 0xce, 0x22, 0xfb, 0x43, 0x23, 0xf2, 0x1, 0xc5, 0x22, 0xa9, 0x53, 0xc9, 0x52, 0xbb, 0x83, 0x3c, 0x7d, 0xdb, 0xcd, 0xfa, 0x13, 0x12, 0xf1, 0x57, 0xe7, 0x31, 0xdc}} return a, nil } -var _lockedtokensDelegatorRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x54\xc1\x4e\xdb\x40\x10\xbd\xfb\x2b\xa6\x3e\x20\x5b\x02\xd3\x43\xd5\x43\x04\x45\x40\x40\x45\xd0\x80\x08\xa5\xe7\x8d\x77\xec\xac\xb2\xde\x75\x77\xc7\x24\x15\xca\xbf\x57\xeb\xdd\x38\x76\x68\xda\x5e\x7a\xaa\x2f\x51\x3c\x33\x6f\xde\x7b\x33\x63\x51\xd5\xda\x10\x5c\x4b\xbd\x7c\xd2\x0b\x54\x50\x18\x5d\x41\xdc\xfd\x8f\xa3\x90\x71\xa7\xf3\x05\xf2\xf6\x9d\xf5\x49\xef\x57\x77\xf7\x97\xb7\x57\xe3\xa7\xfb\xdb\xab\xc9\xf9\x78\xfc\x78\x35\x9d\x46\x3d\xbc\x9b\xf1\x13\x9b\x49\x9c\x12\x5b\x08\x55\xf6\x80\x87\x81\xae\xc3\x75\xa3\x4a\x31\x93\x38\xe0\xd1\x7f\x17\x47\x11\x19\xa6\x2c\xcb\x49\x68\x95\x08\x3e\x82\x29\x19\xa1\xca\x43\x60\x95\x6e\x14\x8d\xe0\xeb\xb5\x58\x7d\xfc\x90\xc2\x6b\x14\x01\x00\x48\x24\x98\x6b\xc9\xd1\x3c\x62\x31\x02\xd6\xd0\x3c\xe9\x0b\xc9\xda\x9f\xfb\x1a\x0d\x73\x90\xf6\x70\x48\x22\xfb\x26\x68\xce\x0d\x5b\xa6\x70\xf0\xb6\xec\x73\x0b\xbc\x6d\xf4\xc2\x1a\x49\xdb\x3e\x7b\x91\x3a\x6f\xb3\x67\x57\xe1\x01\x6a\x83\x35\x33\x98\xb0\x3c\xf7\x4a\x5a\x8c\x0b\x6d\x8c\x5e\x3e\x33\xd9\x60\x0a\x07\xe7\x3e\xe6\xd4\x41\x78\x2c\xca\x22\xeb\x14\xc2\x29\x84\xfa\xcc\x92\x36\xac\xc4\x6c\xd6\x22\x9c\xfc\x0b\xe5\x9f\x12\x37\xa3\x11\xec\x8b\x4f\x3d\x85\x07\x46\xf3\xb4\x23\xec\x9e\xb3\x33\xa8\x99\x12\x79\x12\xf7\xb2\x41\x58\x50\x9a\xc0\xb2\x17\xe4\xc0\x08\x6c\x8d\xb9\x28\x04\x72\xa8\x19\xcd\xe3\x34\x1a\x8a\xde\xb8\xfd\x07\xcd\x7f\x3b\x85\x8d\x98\xe3\x00\x72\x5c\x6c\xe2\x6d\x78\x9f\x80\x4b\xdd\x48\xde\xf2\xf6\x4d\xc1\x95\x01\xb5\x1b\xdc\x32\x04\x83\x05\x1a\x54\x39\xc6\x1e\x63\xed\x75\xe0\x0a\xf3\x86\xb0\x37\x4a\xb7\x42\xb2\xb5\xf2\x82\x49\xa6\x72\x84\xd3\x9d\xf1\x66\x25\x92\x37\x3b\x6c\x42\x48\x4c\x7a\xde\x88\x22\xdc\x02\x9c\x9c\xee\xc0\xbd\x46\x03\x11\x3b\xd8\xb9\x41\x46\x38\xd1\x1c\xc7\x28\xb1\x64\xa4\x4d\xa2\x34\xc7\x9b\xf1\x08\x04\x4f\x87\xb5\x8e\xab\x25\xb6\x40\xf3\x60\xf4\xea\xc7\x5b\xa6\xde\x8d\x2d\xd2\x4e\x7d\xaf\x36\xe3\x3e\x09\x27\xe8\xfd\xb6\xc9\xe6\x98\x83\x90\xa3\x5f\x7c\x4d\x9c\x15\x1d\xfa\x17\xa1\x44\xd5\x54\x2e\x84\x8f\xf8\xbd\x11\x06\x2b\x54\x94\xa4\xbd\xae\x6b\x40\x69\xd1\xd9\x93\x24\x1d\xee\xc0\x9f\xd4\x39\x36\x58\xad\x6c\xb6\x89\xfc\xde\x3a\x8e\xb5\xb6\x82\xc2\x06\x9d\x1c\x0d\x41\x96\x61\xe7\xde\xca\x1a\xb6\xdf\xb5\xe8\x7f\x1c\xcf\xeb\x80\x46\xb8\xb1\x89\x26\x40\xa5\x9b\x72\xee\x0f\xcb\x02\x69\x4f\xf1\x5d\xbc\xbd\xcb\x75\xb8\xae\x75\xf4\x33\x00\x00\xff\xff\x85\x44\x9f\x77\xd3\x06\x00\x00" +var _lockedtokensDelegatorRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x54\x41\x6f\xdb\x3c\x0c\xbd\xfb\x57\xf0\xf3\xa1\xb0\x81\xd6\xbd\x7c\xd8\x21\x68\x56\xac\x0b\x8a\x15\xd8\xb2\xa2\xe9\xba\xb3\x62\xd1\xb6\x10\x59\xf2\x24\xba\xc9\x10\xe4\xbf\x0f\xb2\x14\xc7\x4e\x96\x6d\x97\x9d\xe6\x4b\x51\x91\x7c\x7c\xef\x91\x8c\xa8\x1b\x6d\x08\xee\xa5\x5e\x3f\xeb\x15\x2a\x28\x8c\xae\x21\xee\xff\x8f\xa3\x90\xf1\x51\xe7\x2b\xe4\xdd\x9b\x0d\x49\xc3\xa7\x3e\xcf\x55\x3e\xcc\x9e\xd9\x52\xe2\x82\xd8\x4a\xa8\x72\x00\x39\x0e\x1c\x6a\x5a\x55\x8a\xa5\xc4\x11\x83\xe1\x5b\x1c\x45\x64\x98\xb2\x2c\x27\xa1\x55\x22\xf8\x04\x16\x64\x84\x2a\x2f\x81\xd5\xba\x55\x34\x81\x2f\xf7\x62\xf3\xe6\xff\x14\xb6\x51\x04\x00\x20\x91\xa0\xd2\x92\xa3\x79\xc2\x62\x02\xac\xa5\x2a\x19\xf2\xcd\xba\x3f\x9f\x1b\x34\xcc\x41\xda\xcb\x31\x89\xec\xab\xa0\x8a\x1b\xb6\x4e\xe1\xe2\xb4\xec\x43\x07\x7c\x68\xf4\xca\x5a\x49\x87\x3e\x67\x91\x7a\x57\xb3\x17\x57\xe1\x01\x1a\x83\x0d\x33\x98\xb0\x3c\xf7\x4a\x3a\x8c\x3b\x6d\x8c\x5e\xbf\x30\xd9\x62\x0a\x17\xef\x7c\xcc\xa9\x83\xf0\x59\x94\x45\xd6\x2b\x84\x29\x84\xfa\xcc\x92\x36\xac\xc4\x6c\xd9\x21\xdc\xfc\x0d\xe5\x6f\x13\x37\xa3\x09\x9c\x8b\x2f\x3c\x85\x47\x46\x55\xda\x13\x76\xdf\xed\x2d\x34\x4c\x89\x3c\x89\x07\xd9\x20\x2c\x28\x4d\x60\xd9\x2b\x72\x60\x04\xb6\xc1\x5c\x14\x02\x39\x34\x8c\xaa\x38\x8d\xc6\xa2\xf7\x6e\xff\x46\xf3\x9f\x4e\x61\x2f\xe6\x3a\x80\x5c\x17\xfb\x78\x17\x3e\x27\xe0\xbd\x6e\x25\xef\x78\xfb\xa6\xe0\xca\x80\xba\x0d\xee\x18\x82\xc1\x02\x0d\xaa\x1c\x63\x8f\xb1\xf3\x3a\x70\x83\x79\x4b\x38\x18\xa5\x5b\x21\xd9\x59\x79\xc7\x24\x53\x39\xc2\xf4\x68\xbc\x59\x89\xe4\xcd\x0e\x9b\x10\x12\x93\x81\x37\xa2\x08\xb7\x00\x37\xd3\x23\xb8\x6d\x34\x12\x71\x84\x9d\x1b\x64\x84\x73\xcd\x71\x86\x12\x4b\x46\xda\x24\x4a\x73\x7c\x98\x4d\x40\xf0\x74\x5c\xeb\xb8\x5a\x62\x2b\x34\x8f\x46\x6f\xbe\x9f\x32\xf5\x6e\x1c\x90\x8e\xea\x07\xb5\x19\xf7\x49\x38\x47\xef\xb7\x4d\xf6\xc7\x1c\x84\x5c\xfd\xe4\xd7\xc4\x59\xd1\xa3\x7f\x12\x4a\xd4\x6d\xed\x42\xf8\x84\xdf\x5a\x61\xb0\x46\x45\x49\x3a\xe8\xba\x03\x94\x16\x9d\x3d\x49\xd2\xe3\x8e\xfc\x49\x9d\x63\xa3\xd5\xca\x96\xfb\xc8\xaf\xad\xe3\xd8\x68\x2b\x28\x6c\xd0\xcd\xd5\x18\x64\x1d\x76\xee\x54\xd6\xb8\xfd\xb1\x45\xff\xe2\x78\xb6\x23\x1a\xe1\xc6\xe6\x9a\x00\x95\x6e\xcb\xca\x1f\x96\x05\xd2\x9e\xe2\x7f\xf1\xe1\x2e\x77\xe1\xba\x76\xd1\x8f\x00\x00\x00\xff\xff\xff\xca\xcc\xa6\xcd\x06\x00\x00" func lockedtokensDelegatorRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -4180,11 +4159,11 @@ func lockedtokensDelegatorRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0x62, 0x94, 0xf, 0x13, 0x9b, 0x8e, 0x1e, 0x50, 0xd5, 0xb6, 0x1a, 0x70, 0xa8, 0x5f, 0x6c, 0x9f, 0xf0, 0x91, 0xb0, 0xc2, 0x1, 0x3c, 0x91, 0x81, 0xd3, 0x2f, 0x42, 0xa4, 0xa1, 0x2d, 0x30}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0xbb, 0xe3, 0x9f, 0x58, 0x2d, 0xa7, 0x68, 0x5e, 0x3e, 0x8b, 0x4a, 0xbe, 0x59, 0xab, 0xc6, 0xae, 0x8e, 0xfe, 0x37, 0xc, 0xdc, 0x3a, 0xc5, 0xb2, 0x4d, 0x34, 0x53, 0x6e, 0xef, 0x38, 0x69}} return a, nil } -var _lockedtokensDelegatorRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4d\x6f\x82\x40\x10\xbd\xf3\x2b\x26\x1c\x0c\x24\x0d\xe9\xa1\xe9\xc1\xd4\x1a\x5b\x34\x4d\x34\x6a\xfc\x68\xcf\x23\x0c\xb0\x11\x77\xe9\xee\x50\x69\x1a\xff\x7b\x23\xab\x28\x35\xe5\x32\xec\xce\x9b\xf7\xde\xbc\xac\xd8\x15\x4a\x33\x4c\x54\xb4\xa5\x78\xa5\xb6\x24\x0d\x24\x5a\xed\xe0\xbe\x9a\xcc\x5e\xc7\xc3\x70\x35\x1b\x0f\xa7\x83\x30\x5c\x0c\x97\x4b\xe7\x84\x1e\x95\x32\x15\x9b\x9c\x6a\xbc\x85\xbb\xad\x3b\xd7\x71\x58\xa3\x34\x18\xb1\x50\xd2\xc3\x9d\x2a\x25\x77\x61\x3d\x12\xd5\xe3\x83\x0f\x3f\x0e\x00\x40\x4e\x0c\x52\xc5\x14\x52\x4e\x29\xb2\xd2\x73\xad\xaa\xef\x6e\xcb\x4b\x60\x0f\xd3\x1b\x98\x53\x53\x14\x9a\x0a\xd4\xe4\x61\x14\x59\x05\x2c\x39\xf3\x5e\x94\xd6\x6a\xff\x8e\x79\x49\x3e\x74\x06\xb6\x77\x56\x3d\x2b\x67\x2a\x8f\x49\x2f\x28\x81\x1e\x9c\xc6\x03\xc3\x4a\x63\x4a\xc1\xa6\x26\x78\xaa\xc9\x5a\x6e\xea\x32\x2b\x48\xe3\x71\x2f\x73\xd7\x4e\x22\xf8\x10\x9c\xc5\x1a\xf7\x3e\x74\x6e\xc7\xde\x6a\xc1\x67\xef\x18\xd7\x9f\x25\xaf\xfa\x4b\x6b\x61\x8e\x9c\xf9\x8d\xdf\xe3\xd7\xef\x43\x81\x52\x44\x9e\x7b\x85\x06\x61\x40\x2a\x06\x83\x5f\x14\x03\x32\x98\x82\x22\x91\x08\x8a\xa1\x40\xce\xdc\x0b\x45\xf3\x63\x28\x4f\x82\xdb\xd8\xa1\x77\x49\xe4\xb4\x7f\x03\xf0\x2c\xcd\xc1\x66\x4e\x15\x45\x25\xd3\x55\x9c\xff\x50\x06\x9a\x3e\x4b\x32\xbc\x96\x86\x71\x2b\x64\xda\xbc\x03\x5b\xcf\xac\x07\xe7\x37\x00\x00\xff\xff\xbd\x32\xbd\x95\x85\x02\x00\x00" +var _lockedtokensDelegatorRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xc1\x4e\xab\x50\x10\xdd\xf3\x15\x13\x16\x0d\x24\x2f\xac\x5e\xde\xa2\x79\xb5\xd1\x98\xc6\x85\xd1\x46\xad\xae\xa7\x30\xc0\x4d\xe9\x1d\x9c\x3b\xd8\x1a\xd3\x7f\x37\xe5\x52\x0a\x36\xb2\x19\x98\x39\x73\xce\x99\x13\xcc\xb6\x66\x51\xb8\xe7\x74\x43\xd9\x0b\x6f\xc8\x3a\xc8\x85\xb7\x10\x0e\x5b\x61\xd0\xe1\x16\x8d\x2d\xcc\xba\xa2\xb6\xdd\x01\x47\xbd\x30\x08\x54\xd0\x3a\x4c\xd5\xb0\x8d\x70\xcb\x8d\xd5\x29\xac\x16\x66\xff\xef\x6f\x0c\x5f\x01\x00\x40\x45\x0a\x96\x33\xba\xa5\x8a\x0a\x54\x96\xa5\xf0\xfe\x73\x3a\x72\x91\xf8\x8f\x87\x0b\x58\xd0\x52\xd4\x42\x35\x0a\x45\x98\xa6\x5e\x01\x1b\x2d\xa3\x1b\x16\xe1\xdd\x2b\x56\x0d\xc5\x30\xb9\xf6\xb3\x93\xea\x49\xb9\xe4\x2a\x23\x79\xa2\x1c\x66\xd0\xad\x27\x4e\x59\xb0\xa0\x64\xdd\x12\xfc\x6f\xc9\x46\x6e\xda\xf2\x58\x93\xe0\xf1\x2e\xf7\x67\x9c\x44\xf2\x66\xb4\xcc\x04\x77\x31\x4c\x2e\xd7\xee\x5a\xc1\xab\xe8\x18\xd7\x8f\x23\x07\xf3\x67\x6f\x61\x89\x5a\xc6\xbd\xdf\xe3\x33\x9f\x43\x8d\xd6\xa4\x51\x38\x40\x83\x71\x60\x59\xc1\xe1\x07\x65\x80\x0a\xae\xa6\xd4\xe4\x86\x32\xa8\x51\xcb\xf0\x4c\xd1\xbf\x38\xaa\xf2\xe4\x32\x76\x98\x9d\x13\xe9\xee\xef\x01\x91\xa7\x39\xf8\xcc\x69\x4f\x69\xa3\x34\x88\xf3\x17\xca\x44\xe8\xbd\x21\xa7\x2b\xeb\x14\x37\xc6\x16\xfd\x7f\xe0\xeb\x89\xf5\x10\x7c\x07\x00\x00\xff\xff\x6f\x65\xa9\x7e\x7f\x02\x00\x00" func lockedtokensDelegatorRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -4200,11 +4179,11 @@ func lockedtokensDelegatorRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa3, 0x3, 0x3f, 0xf1, 0xcd, 0xd7, 0xa2, 0xc3, 0x5f, 0xcd, 0x9b, 0xc6, 0x72, 0xa8, 0x89, 0x6, 0xe2, 0x73, 0xf2, 0x37, 0x57, 0xf1, 0x7f, 0x7, 0x98, 0x90, 0x58, 0x2e, 0x48, 0x39, 0x8d, 0xe2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0x38, 0x26, 0x65, 0xbe, 0x12, 0x28, 0x9a, 0x64, 0x62, 0xf9, 0x85, 0x12, 0x94, 0xe3, 0xcb, 0x8c, 0xba, 0x20, 0x9b, 0x44, 0xed, 0x73, 0x7c, 0x4b, 0xa0, 0x91, 0x6c, 0x85, 0x78, 0x4d, 0x5b}} return a, nil } -var _lockedtokensDelegatorWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x8f\x9b\x30\x10\x85\xef\xfc\x8a\x11\x87\x08\xa4\xd6\xdb\x43\xd5\x43\xb4\xdb\xd5\x76\xc9\xaa\xd2\x46\x4d\x94\xa4\xe9\xd9\x81\x21\xa0\x38\x1e\x34\x98\x40\x55\xe5\xbf\x57\x60\xa0\x40\x9b\x4b\xa5\xe5\x62\xe1\x79\x7e\xfe\xde\x8c\xd3\x73\x46\x6c\x60\x49\xe1\x09\xa3\x1d\x9d\x50\xe7\x10\x33\x9d\xe1\x43\xb5\x5c\x3d\xbf\x2e\x82\xdd\xea\x75\xf1\xed\x29\x08\x36\x8b\xed\xd6\x69\xd5\x2f\x8a\xca\x46\x6b\xa5\x6e\xff\xef\xf6\x8a\x42\x1f\xd3\x83\xc2\x91\x6a\xb8\xe7\x3a\x8e\x61\xa9\x73\x19\x9a\x94\xb4\x27\xcf\x54\x68\x33\x87\xef\x2f\x69\xf5\xe9\xa3\x0f\xbf\x1c\x07\x00\x40\xa1\x81\x84\x54\x84\xbc\xc1\x78\x0e\xb2\x30\x89\x37\x44\x15\xcd\xb2\xca\x90\x65\x6d\x93\xbf\x1b\x5f\x2c\x7e\xa4\x26\x89\x58\x96\x3e\xcc\xfe\x3e\xf6\xb5\x31\xee\xef\xb9\xc8\x42\x99\xe6\x9a\x59\x9f\x47\xec\xeb\x4d\xcb\x92\x31\x66\x92\xd1\x93\x61\x68\x59\x1b\x9a\x2f\xc4\x4c\xe5\x5e\xaa\x02\x7d\x98\x3d\xd9\x5a\xcd\x0f\xed\x97\xa3\x8a\x45\x9f\x01\x1e\xa0\x3d\x2f\x72\x43\x2c\x8f\x28\x0e\x8d\xc3\xfd\x5b\x64\xfb\xec\xd5\x9d\x9f\xc3\xad\xfa\xd6\x22\xac\xa5\x49\xfc\x1e\xb8\xfe\x1e\x1f\x21\x93\x3a\x0d\x3d\xf7\x99\x0a\x15\x81\x26\x03\x96\x13\x18\x63\x64\xd4\x21\x82\x21\x18\x78\xb9\xbe\x33\xce\xdc\xf5\xf3\x76\xe4\x69\x9f\x3b\xdc\xbb\x56\x77\x17\x77\xf5\xa6\xfc\x7f\x88\x7f\xde\xea\xa5\x1e\x92\x6b\x5d\xae\x16\x16\x2b\x0c\x0b\x83\x83\x71\xd5\x2f\x21\x42\x85\x47\x69\x88\xd7\x4c\xd5\x4f\x78\x98\xcc\xb0\xc5\x0f\x3a\x95\x37\x48\x3e\x3e\x2a\xca\x76\x46\x1b\x2c\x25\x47\xdd\x08\xfa\xd7\x6e\x57\xff\xdf\x7d\x13\x11\x66\x94\xa7\xa6\x6d\xca\xfd\xfb\x09\x45\xe7\x3d\x75\xeb\x02\x5e\x9d\xdf\x01\x00\x00\xff\xff\xe5\x82\x7e\x86\xdc\x03\x00\x00" +var _lockedtokensDelegatorWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xcf\x6e\xa3\x30\x10\xc6\xef\x3c\xc5\x88\x43\x04\xd2\xae\x73\x59\xed\x21\x4a\x36\xda\x3f\x8a\xf6\x50\xa9\x51\xda\xa6\x67\x07\x86\x80\xe2\x78\xd0\x60\x42\xaa\x2a\xef\x5e\x81\x0d\x01\xda\x5c\x2a\x95\x8b\xc5\xcc\xf8\xf3\xef\x9b\x99\xec\x98\x13\x1b\xb8\xa3\xe8\x80\xf1\x23\x1d\x50\x17\x90\x30\x1d\xc1\xef\x87\x7c\xcf\xd5\xad\x14\x55\x4d\xc8\x15\x75\xff\xd7\x8a\x52\xef\xb3\x9d\xc2\x41\x55\x3f\xe6\x7b\x9e\x61\xa9\x0b\x19\x99\x8c\x74\x20\x8f\x54\x6a\x33\x83\xa7\x55\x76\xfe\xf9\x23\x84\x57\xcf\x03\x00\x50\x68\x20\x25\x15\x23\x6f\x30\x99\x81\x2c\x4d\x1a\xf4\x89\x44\x73\xdc\xe7\xc8\xb2\x96\x29\xbe\x0d\x1f\x16\xcf\x99\x49\x63\x96\x55\x08\x93\xf7\xd7\xfe\x37\xc2\xdd\x3b\x27\x59\x2a\xd3\x3c\x33\xe9\xfc\x88\x6d\x1d\xb4\x2c\x39\x63\x2e\x19\x03\x19\x45\x96\xb5\xa1\xf9\x43\xcc\x54\x6d\xa5\x2a\x31\x84\xc9\x6f\x9b\xab\xf9\xc1\x7d\x05\xaa\x44\x74\x1e\x60\x01\xee\xbe\x28\x0c\xb1\xdc\xa3\xd8\x35\x0a\xf3\xaf\xf0\xf6\x2b\xa8\x3b\x3f\x83\x5b\xf9\x07\x8b\xb0\x96\x26\x0d\x3b\xe0\xfa\x5b\x2e\x21\x97\x3a\x8b\x02\xff\x2f\x95\x2a\x06\x4d\x06\x2c\x27\x30\x26\xc8\xa8\x23\x04\x43\xd0\xd3\xf2\x43\x6f\xe8\xb9\xed\xe7\x6d\xcb\xe3\x3e\xb7\xb8\x53\x57\x37\x4d\xda\x7c\x93\xfe\x1c\xe2\x75\x57\x4f\xf5\x90\x7c\xab\x72\xb1\xb0\x78\xc6\xa8\x34\xd8\x1b\x57\xbd\x09\x31\x2a\xdc\x4b\x43\xbc\x66\x3a\xbf\xc0\x62\x34\x43\x87\xff\xaf\xad\x0a\x7a\xce\x87\x57\x45\xe5\x66\xb4\xc1\x4a\x72\xdc\x8e\xa0\xdb\x76\x7b\x86\x1f\xf7\x4d\xc4\x98\x53\x91\x19\xd7\x94\xf9\xf7\x11\x45\xab\x3d\x56\x6b\x0d\x5e\xbc\xb7\x00\x00\x00\xff\xff\x0e\x35\x51\xeb\xd6\x03\x00\x00" func lockedtokensDelegatorWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4220,11 +4199,11 @@ func lockedtokensDelegatorWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0x77, 0x9, 0x2c, 0x82, 0x96, 0x8b, 0x8, 0x1f, 0xbd, 0xce, 0xfc, 0x2f, 0xd4, 0xed, 0xbe, 0xd7, 0xde, 0xc, 0x45, 0xcb, 0xf7, 0x4b, 0xa8, 0x3b, 0x16, 0xd6, 0xf8, 0xbe, 0x86, 0x35, 0x56}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x94, 0x24, 0x6d, 0x9c, 0xe, 0x60, 0xf7, 0xf3, 0x2c, 0x32, 0x60, 0x16, 0x15, 0x5d, 0x1b, 0x7f, 0x82, 0x13, 0x92, 0x79, 0x2a, 0x26, 0x1f, 0xbd, 0xc6, 0x8e, 0x23, 0xe0, 0x48, 0x1c, 0x44, 0xdd}} return a, nil } -var _lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4f\x6f\xaa\x40\x10\xbf\xf3\x29\x26\x1c\x0c\x24\x2f\xe4\x1d\x5e\xde\xc1\xd4\x1a\x5b\x34\x4d\x34\x6a\xd4\xb6\xe7\x11\x06\xd9\x88\xbb\x64\x77\x28\x34\x8d\xdf\xbd\x91\x05\x94\x9a\x72\x59\x60\x7e\xf3\xfb\x97\x15\xa7\x5c\x69\x86\x85\x8a\x8e\x14\xef\xd4\x91\xa4\x81\x44\xab\x13\xfc\xad\x16\xab\xe7\xf9\x34\xdc\xad\xe6\xd3\xe5\x24\x0c\x37\xd3\xed\xd6\x69\xd0\xb3\x42\x1e\xc4\x3e\xa3\x1a\x6f\xe1\x6e\xef\x9f\xeb\x38\xac\x51\x1a\x8c\x58\x28\xe9\xe1\x49\x15\x92\x87\xf0\x3a\x13\xd5\xff\x7f\x3e\x7c\x39\x00\x00\x19\x31\x48\x15\x53\x48\x19\x1d\x90\x95\x5e\x6b\x55\x7d\x0e\x7b\x5e\x02\xfb\xb1\xbc\x83\x39\x35\x45\xae\x29\x47\x4d\x1e\x46\x91\x55\xc0\x82\x53\xef\x49\x69\xad\xca\x37\xcc\x0a\xf2\x61\x30\xb1\xb3\x56\xb5\x55\x4e\x55\x16\x93\xde\x50\x02\x23\x68\xd6\x03\xc3\x4a\xe3\x81\x82\x7d\x4d\xf0\x50\x93\xf5\xdc\xd4\xc7\x2a\x27\x8d\x97\x5c\xe6\x4f\xbf\x89\xe0\x5d\x70\x1a\x6b\x2c\x7d\x18\xdc\xaf\xbd\xd4\x82\x8f\xde\xa5\xae\x1f\x21\x6f\xe6\x5b\x6b\x61\x8d\x9c\xfa\x9d\xdf\xcb\x33\x1e\x43\x8e\x52\x44\x9e\x7b\x83\x06\x61\x40\x2a\x06\x83\x1f\x14\x03\x32\x98\x9c\x22\x91\x08\x8a\x21\x47\x4e\xdd\x2b\x45\xf7\x62\x28\x4b\x82\xfb\xda\x61\x74\x6d\xa4\xc9\xdf\x01\x3c\x4b\x73\xb6\x9d\x53\x45\x51\xc1\x74\x53\xe7\x2f\x94\x41\xd9\xd4\xb1\xa1\x12\x75\xdc\xa6\xed\x6e\x83\x3d\x5b\xee\xb3\xf3\x1d\x00\x00\xff\xff\xfd\x6d\x80\x0e\x8b\x02\x00\x00" +var _lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4f\x6b\xa3\x50\x10\xbf\xfb\x29\x06\x0f\x41\x61\xf1\xb4\xec\x21\x6c\x36\x6c\x29\xa1\x87\xd2\x86\xf4\xdf\x79\xa2\x63\x7c\xc4\xbc\x91\x79\x63\x4d\x29\xf9\xee\x25\x3e\x35\xda\x50\x2f\x4f\xe7\xfd\xe6\xf7\x0f\xcd\xa1\x62\x51\xb8\xe7\x74\x4f\xd9\x33\xef\xc9\x3a\xc8\x85\x0f\x10\x8e\x47\x61\xd0\xe1\x56\xb5\xdd\x99\x6d\x49\xed\xb8\x03\x4e\x66\x61\x10\xa8\xa0\x75\x98\xaa\x61\x1b\xe1\x81\x6b\xab\x73\x78\x59\x99\xe3\x9f\xdf\x31\x7c\x06\x00\x00\x25\x29\x58\xce\xe8\x96\x4a\xda\xa1\xb2\xac\x85\x8f\x1f\xf3\x89\x8b\xc4\x7f\x3c\x5c\xc1\x82\x96\xa2\x12\xaa\x50\x28\xc2\x34\xf5\x0a\x58\x6b\x11\xdd\xb0\x08\x37\xaf\x58\xd6\x14\xc3\xec\xbf\xbf\xeb\x55\x7b\xe5\x82\xcb\x8c\x64\x43\x39\x2c\xa0\x5b\x4f\x9c\xb2\xe0\x8e\x92\x6d\x4b\xf0\xb7\x25\x9b\xb8\x69\x8f\xc7\x8a\x04\xcf\xb9\xdc\xaf\x69\x13\xc9\x9b\xd1\x22\x13\x6c\x62\x98\x5d\xaf\xdd\xb5\x82\xff\xa2\x73\x5d\xdf\x42\x8e\xee\x9f\xbc\x85\x35\x6a\x11\x0f\x7e\xcf\xcf\x72\x09\x15\x5a\x93\x46\xe1\x08\x0d\xc6\x81\x65\x05\x87\xef\x94\x01\x2a\xb8\x8a\x52\x93\x1b\xca\xa0\x42\x2d\xc2\x0b\xc5\xf0\xe2\xa8\xcc\x93\xeb\xda\x61\x71\x69\xa4\xcb\x3f\x00\x22\x4f\x73\xf2\x9d\xd3\x91\xd2\x5a\x69\x54\xe7\x0f\x94\x49\xd3\xd5\xb1\xa1\x06\x25\xeb\xd3\x0e\x7f\x83\x3f\x7b\xee\x53\xf0\x15\x00\x00\xff\xff\x8b\x3c\x89\xa1\x85\x02\x00\x00" func lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdcBytes() ([]byte, error) { return bindataRead( @@ -4240,11 +4219,11 @@ func lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x33, 0x27, 0xd3, 0x81, 0x5a, 0x29, 0x81, 0xe9, 0x6e, 0x56, 0xb, 0x88, 0x10, 0xd3, 0x32, 0x6a, 0xa7, 0x81, 0xe5, 0x98, 0x1a, 0xd, 0x1, 0xf2, 0x56, 0x72, 0x7f, 0xe8, 0x62, 0xb9, 0xf0, 0x37}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0xbe, 0x82, 0xa7, 0xde, 0x1f, 0xfd, 0xc2, 0x7d, 0x57, 0x2, 0xd5, 0x9d, 0xb0, 0x5e, 0xde, 0xad, 0x51, 0xee, 0xe9, 0x0, 0x5b, 0x77, 0xbf, 0xff, 0xbc, 0x87, 0xf0, 0x16, 0x44, 0x76, 0x94}} return a, nil } -var _lockedtokensDelegatorWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xcd\x8e\xa2\x40\x10\xbe\xf3\x14\x15\x0e\x06\x92\x0d\xd9\xc3\x66\x0f\x66\x5d\xe3\x0c\x9a\x49\x34\x6a\xfc\x99\x39\x97\x50\x48\x47\xec\xee\x74\x17\x23\x93\x89\xef\x3e\x91\x46\x94\x31\xc3\xa5\x81\xfa\xea\xfb\x4b\x8b\xa3\x56\x86\x61\xa6\x92\x03\xa5\x1b\x75\x20\x69\x21\x33\xea\x08\xbf\xab\xd9\xe2\x79\x3a\x8e\x37\x8b\xe9\x78\x3e\x8a\xe3\xd5\x78\xbd\xf6\x1a\xf4\xa4\x94\x7b\xb1\x2b\xa8\xc6\x3b\xb8\xdf\xf9\xe7\x7b\x1e\x1b\x94\x16\x13\x16\x4a\x06\x78\x54\xa5\xe4\x3e\x6c\x27\xa2\xfa\xfb\x27\x84\x4f\x0f\x00\xa0\x20\x06\xa9\x52\x8a\xa9\xa0\x3d\xb2\x32\x4b\xa3\xaa\x8f\x7e\xc7\x4b\xe4\x3e\xe6\x0f\x30\xaf\xa6\xd0\x86\x34\x1a\x0a\x30\x49\x9c\x02\x96\x9c\x07\x4f\xca\x18\x75\x7a\xc5\xa2\xa4\x10\x7a\x23\x37\xbb\xaa\x5e\x95\x73\x55\xa4\x64\x56\x94\xc1\x00\x9a\xf5\xc8\xb2\x32\xb8\xa7\x68\x57\x13\xfc\xab\xc9\x3a\x6e\xea\x63\xa1\xc9\xe0\x25\x97\xfd\xd5\x6d\x22\x7a\x13\x9c\xa7\x06\x4f\x21\xf4\x1e\xd7\x5e\x6a\xc1\xff\xc1\xa5\xae\x6f\x21\xef\xe6\x6b\x67\x61\x89\x9c\x87\xad\xdf\xcb\x33\x1c\x82\x46\x29\x92\xc0\xbf\x43\x83\xb0\x20\x15\x83\xc5\x77\x4a\x01\x19\xac\xa6\x44\x64\x82\x52\xd0\xc8\xb9\x7f\xa3\x68\x5f\x2c\x15\x59\xf4\x58\x3b\x0c\x6e\x8d\x34\xf9\x5b\x40\xe0\x68\xce\xae\x73\xaa\x28\x29\x99\xee\xea\xfc\x81\x32\x3a\x35\x75\x6c\xa5\x65\x6c\xd3\xb6\xb7\xc1\x9d\x57\xee\xb3\xf7\x15\x00\x00\xff\xff\xd2\x59\x30\x20\x8b\x02\x00\x00" +var _lockedtokensDelegatorWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4d\x4f\xb3\x40\x10\xbe\xf3\x2b\x26\x1c\x1a\x48\xde\x70\x7a\xe3\xa1\xb1\x36\x1a\xd3\x78\x30\xda\xa8\xd5\xf3\x74\x19\xca\xa6\x74\x67\xb3\x3b\xd8\x1a\xd3\xff\x6e\xca\x52\x0a\x12\xb9\x2c\xcc\x3e\xf3\x7c\x05\xbd\xb3\xec\x04\x1e\x59\x6d\x29\x7f\xe3\x2d\x19\x0f\x85\xe3\x1d\xc4\xfd\x51\x1c\xb5\xb8\x45\x6d\x36\x7a\x5d\x51\x33\x6e\x81\x83\x59\x1c\x45\xe2\xd0\x78\x54\xa2\xd9\x24\xb8\xe3\xda\xc8\x14\x56\x0b\x7d\xb8\xfa\x9f\xc2\x77\x04\x00\x50\x91\x80\xe1\x9c\xee\xa9\xa2\x0d\x0a\xbb\xa5\xe3\xc3\xd7\x74\xe0\x22\x0b\x1f\x4f\x23\x58\xd4\x50\x58\x47\x16\x1d\x25\xa8\x54\x50\xc0\x5a\xca\xe4\x8e\x9d\xe3\xfd\x3b\x56\x35\xa5\x30\xb9\x0d\x77\x67\xd5\xb3\x72\xc9\x55\x4e\xee\x85\x0a\x98\x41\xbb\x9e\x79\x61\x87\x1b\xca\xd6\x0d\xc1\x75\x43\x36\x70\xd3\x1c\xcf\x96\x1c\x9e\x72\xf9\x7f\xc3\x26\xb2\x0f\x2d\x65\xee\x70\x9f\xc2\x64\xbc\xf6\xd0\x08\xde\x24\xa7\xba\x7e\x85\xec\xdd\xbf\x06\x0b\x4b\x94\x32\xed\xfc\x9e\x9e\xf9\x1c\x2c\x1a\xad\x92\xb8\x87\x06\xed\xc1\xb0\x80\xc7\x4f\xca\x01\x05\xbc\x25\xa5\x0b\x4d\x39\x58\x94\x32\xbe\x50\x74\x2f\x9e\xaa\x22\x1b\xd7\x0e\xb3\x4b\x23\x6d\xfe\x0e\x90\x04\x9a\x63\xe8\x9c\x0e\xa4\x6a\xa1\x5e\x9d\x7f\x50\x66\xfb\xb6\x8e\x95\xf1\x82\x5d\xda\xee\x6f\x08\xe7\x99\xfb\x18\xfd\x04\x00\x00\xff\xff\xa4\x08\x39\x8f\x85\x02\x00\x00" func lockedtokensDelegatorWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4260,11 +4239,11 @@ func lockedtokensDelegatorWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3e, 0x9, 0x13, 0xa8, 0xe7, 0xd6, 0x9a, 0x87, 0x44, 0xef, 0x24, 0x60, 0x7c, 0xd0, 0xe7, 0xc7, 0xc4, 0xcd, 0x92, 0xd3, 0x84, 0x2a, 0x16, 0x9d, 0x93, 0x5f, 0x7e, 0x1a, 0x83, 0x5e, 0xcf, 0xbf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x97, 0xad, 0xe8, 0x0, 0x2f, 0x41, 0x5f, 0x1e, 0x2a, 0x37, 0x13, 0xff, 0x4f, 0xde, 0x3f, 0xe4, 0xaf, 0x70, 0x62, 0x1d, 0x9d, 0xbb, 0x53, 0x40, 0x87, 0x7e, 0xed, 0xc8, 0x1b, 0x46, 0xaf, 0xab}} return a, nil } -var _lockedtokensStakerGet_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcd\x6a\xeb\x30\x14\x84\xf7\x7a\x8a\xb9\x59\x5c\xec\x8d\xe9\x3a\xb4\x0d\x26\x36\x34\xc4\x24\x21\xce\x0b\xc8\xd2\xb1\x2b\x22\xeb\x18\x49\xa6\x85\xd2\x77\x2f\xb1\xdb\xf4\x77\x36\x02\x31\x33\xdf\x19\xd3\x0f\xec\x23\x2a\x56\x67\xd2\x27\x3e\x93\x0b\x68\x3d\xf7\xb8\x79\xae\xf6\xeb\x6d\x59\x9c\xf6\xdb\x72\x97\x17\xc5\xb1\xac\x6b\x21\xa4\x52\x14\x42\x22\xad\x4d\xd1\x8e\x0e\xbd\x34\x2e\x91\x4a\xf1\xe8\xe2\x12\xb9\xd6\x9e\x42\x48\x97\xa8\xa3\x37\xae\xc3\x8b\x10\x00\x60\x29\xc2\x4e\x84\x7c\xb6\x6e\x5c\xcb\x47\x6a\x71\x87\x8e\xe2\xfb\xdf\x47\x4d\x3a\x45\x2e\xca\x94\x1c\x64\x63\xac\x89\x86\x42\xd6\xb0\xf7\xfc\x74\xfb\xff\xeb\xa9\xd9\xf4\x3c\xb0\xd5\xe4\xef\x93\x6b\xf0\xa2\x6f\xb6\xea\x27\xfc\x30\x36\xd6\xa8\x83\x8c\x8f\xd7\xd0\x27\x77\xb5\xc2\x20\x9d\x51\xc9\x62\xcd\xa3\xd5\x70\x1c\x31\xd3\x21\xe1\xa9\x25\x4f\x4e\x11\x22\x63\x98\x6a\xf0\xab\x7e\x91\xce\xc3\x3d\xc5\xd1\xbb\x3f\xb7\x67\x1d\xc5\x1d\x6b\xda\x14\x49\xfa\x4f\xbc\x8a\xb7\x00\x00\x00\xff\xff\x3c\x30\xd3\x8b\x89\x01\x00\x00" +var _lockedtokensStakerGet_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcd\x4e\xc3\x30\x10\x84\xef\x7e\x8a\x21\x07\x94\x5c\xf2\x00\x15\x50\x55\x70\xa0\x52\x85\x2a\xe0\x05\x1c\x7b\x13\xac\x3a\xde\x68\xbd\x16\x07\xc4\xbb\xa3\x26\x50\xca\xcf\x5e\x2c\x8d\x66\xbe\xf1\x84\x71\x62\x51\xec\xd8\x1d\xc8\x3f\xf3\x81\x52\x46\x2f\x3c\xa2\x3a\x97\x2a\x63\xac\x73\x94\x73\x6d\x63\x6c\xd0\x97\x84\xd1\x86\x54\x5b\xe7\xb8\x24\x5d\x61\xe3\xbd\x50\xce\xcd\x0a\x4f\x2a\x21\x0d\x78\x33\x06\x00\x22\x29\xe2\x0c\xda\x2c\xd6\x6d\xea\xf9\x91\x7a\x5c\x63\x20\xfd\xd4\xbe\x30\xcd\x1c\x39\x5e\xeb\xec\x64\xbb\x10\x83\x06\xca\x6d\xc7\x22\xfc\x7a\x75\x79\xfe\xa3\x76\x7e\xee\x39\x7a\x92\x9b\xfa\x14\x3c\xde\x0f\xdb\xee\x77\xf9\xbe\x74\x31\xb8\xbd\xd5\x97\x53\xe8\xbb\x77\xbd\xc6\x64\x53\x70\x75\x75\xcb\x25\x7a\x24\x56\x2c\xed\xb0\x10\xea\x49\x28\x39\x82\x32\xa6\x19\x83\x3f\xf8\xaa\x59\x86\x0b\x69\x91\xf4\xef\xf6\x76\x20\x7d\x60\x4f\xdb\xbb\xba\xb9\x30\xef\xe6\x23\x00\x00\xff\xff\x0f\x71\x7a\xf7\x83\x01\x00\x00" func lockedtokensStakerGet_node_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4280,11 +4259,11 @@ func lockedtokensStakerGet_node_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/get_node_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc, 0x8d, 0x95, 0xc6, 0xec, 0x4e, 0xe4, 0xfe, 0xc9, 0x39, 0xfd, 0x1e, 0x88, 0x58, 0x1a, 0xf9, 0x41, 0x9e, 0xb9, 0x50, 0xd9, 0x4c, 0x4d, 0x57, 0x2f, 0x6, 0xb5, 0x4, 0xec, 0x49, 0xaa, 0x8b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0x84, 0xe, 0x5d, 0x19, 0x55, 0x83, 0xac, 0xfc, 0xd7, 0x38, 0x2e, 0x90, 0xd2, 0x96, 0x6, 0xf1, 0x2f, 0x3e, 0x2d, 0x2c, 0x94, 0x18, 0xed, 0x24, 0xeb, 0x46, 0x62, 0x19, 0xf7, 0xa4, 0x79}} return a, nil } -var _lockedtokensStakerGet_staker_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xc1\x8e\xda\x30\x14\xbc\xe7\x2b\x9e\xf6\x50\x25\x97\x6c\xcf\xa8\xa9\x84\x1a\xaa\xa2\x5d\xed\xae\x80\xdb\x6a\x0f\x2f\xf6\x0b\xb8\x18\xbf\xc8\x76\xb4\xad\x10\xff\x5e\x39\x09\x21\x29\x50\xda\xfa\x82\xb0\x67\xc6\xf3\x66\xac\xa8\x5d\xc5\xd6\xc3\x57\xcd\xef\xf3\x7c\x85\x85\xa6\xa5\xc7\xad\x32\x6b\x28\x2d\xef\xe0\xee\xfc\xe0\x2e\xea\x38\x8f\x2c\xb6\x24\x57\xbc\x25\xe3\x5a\xf4\xc7\x1f\x8f\xcf\x5f\x1e\x66\xf9\xea\xf9\x61\xf6\x34\xcd\xf3\xc5\x6c\xb9\x8c\xa2\xfb\x7b\x58\x90\xaf\xad\x71\x80\x06\xd0\x5a\xfc\x09\x5c\xc2\x13\x4b\x9a\x9b\x92\x81\x8b\xef\x24\xbc\x03\xbf\x41\x0f\x7e\x43\x80\x42\x70\x6d\x3c\x08\x36\xde\xb2\x76\x41\x41\x19\x50\xde\x81\x61\xbb\x43\xdd\x23\xd0\x48\x70\x1b\xb4\x24\x8f\x5b\x51\x84\x42\x90\x73\x31\x6a\x9d\x40\x59\x1b\xd8\xa1\x32\x71\x77\x3a\x81\xa9\x94\x96\x9c\x4b\x26\xf0\x7a\x3e\x5a\x7a\xf4\xf4\x06\xfb\x28\x02\x00\xd0\xe4\xc1\x74\x9b\xd3\xe0\xfc\x16\x2f\x83\xd7\xb7\x13\xb5\xaa\x8b\x69\x67\x35\x83\x35\xf9\xee\xcf\xd1\x4e\x72\x42\x72\xe5\x15\x1b\xd4\x41\x29\xa8\x92\x5d\x50\x09\xd9\x40\xa1\x81\x86\x95\x0a\xac\xb0\x50\x5a\x79\x45\x2e\x2d\xd8\x5a\x7e\xff\xf4\x61\x7f\xc5\x56\x2b\xf6\x52\x17\x5a\x89\xc3\xe7\xb8\x57\x09\xeb\x2f\x28\x2f\xe8\x37\x3d\xa7\xf3\xab\xca\x3e\x97\xa1\xd5\xcb\x23\xec\x7b\x76\xe0\xa8\x50\x78\x76\xed\xe2\x10\x61\xdc\xc4\x9d\x4f\xc6\xf2\xa9\x92\x49\x2f\x34\x2a\x24\xc5\xaa\x22\x23\xe3\xa0\xdc\x42\x0e\xe7\xa9\xb6\x4f\xb5\x0b\x32\x50\xff\x31\xdc\xe1\x53\x4f\x9b\x9f\x6f\xac\x25\xd9\xdf\xf2\x1c\xc1\xce\xee\xbc\x19\xa8\xbe\xec\xf2\x8f\x43\x9c\xe2\x1d\xb4\x32\xcf\x21\xbb\xa8\x96\xae\xc9\x37\x41\xe7\x71\x32\xa0\xfe\x67\x3b\xf3\x3c\x19\x49\xdc\xe8\xa5\xed\x66\xd0\x90\x6d\xbe\x0a\x63\x5a\x74\x88\x7e\x05\x00\x00\xff\xff\xb4\x6c\x9a\x8a\x93\x04\x00\x00" +var _lockedtokensStakerGet_staker_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xc1\x8a\xdb\x30\x10\xbd\xeb\x2b\x86\x1c\x8a\x7d\xf1\xde\x43\x5d\x08\x98\xd2\x40\x29\xcb\x76\x6f\xcb\x1e\xc6\xd2\x38\x51\xa3\x68\x8c\x34\x66\x29\x21\xff\x5e\xe4\x38\x8e\xdd\x64\x9b\xb6\xba\x84\x48\xef\x3d\xbd\x79\x4f\xd8\xee\x5b\x0e\x02\x9f\x1d\xbf\xad\xab\x67\xac\x1d\x7d\x17\xdc\x59\xbf\x81\x26\xf0\x1e\x16\xd7\x07\x0b\x35\x70\xbe\xb2\xde\x91\x79\xe6\x1d\xf9\x38\xa0\xa7\x5b\x0b\xa5\x1e\x1e\xe0\x89\xa4\x0b\x3e\x02\x7a\xc0\x10\xf0\x27\x70\x03\xdf\xd8\xd0\xda\x37\x0c\x5c\xff\x20\x2d\x11\x64\x8b\x02\xb2\x25\x40\xad\xb9\xf3\x02\x9a\xbd\x04\x76\x31\x29\x58\x0f\x56\x22\x78\x0e\x7b\x74\x23\x02\xbd\x81\xb8\xc5\x40\xe6\xbc\xa5\x14\x6a\x4d\x31\x66\xe8\x5c\x0e\x4d\xe7\x61\x8f\xd6\x67\xc3\xe9\x12\x56\xc6\x04\x8a\x31\x5f\xc2\xcb\xf5\x50\xc5\xd9\xd3\x2b\x1c\x94\x02\x00\x70\x24\xe0\x87\xcd\x55\x72\x7e\x8f\x57\xc2\xcb\xeb\x85\xda\x76\xf5\x6a\xb0\x5a\xc2\x86\x64\xf8\x73\xb6\x93\x5f\x90\xdc\x8a\x65\x8f\x2e\x29\x25\x55\x0a\x4f\xd4\x40\x39\x51\xe8\xa1\x69\x15\x1a\x5b\xac\xad\xb3\x62\x29\x16\x35\x87\xc0\x6f\x1f\x3f\x1c\xde\xb1\x75\x12\x7b\xec\x6a\x67\xf5\xf1\x53\x36\xaa\xa4\xf5\x17\x94\x47\x94\xed\xc8\x19\xfc\xda\x66\xcc\x65\x6a\xf5\xf6\x08\x87\x91\x9d\x38\x36\x15\x5e\xbe\x77\x71\x8a\x30\xeb\xe3\xae\x96\x73\xf9\xc2\x9a\x7c\x14\x9a\x15\x52\x60\xdb\x92\x37\x59\x52\x3e\x41\x8e\xd7\xa9\x9e\x5e\xe4\x10\x64\xa2\xfe\x63\xb8\xd3\x17\x5d\xf4\x3f\x5f\xd8\x19\x0a\xbf\xe5\x39\x83\x5d\xdd\x79\x37\x50\x77\xdb\xe5\x1f\x87\xb8\xc4\x3b\x69\x65\x5d\x41\x79\x53\xad\xd8\x90\xf4\x41\x57\x59\x3e\xa1\xfe\x67\x3b\xeb\x2a\x9f\x49\xdc\xe9\xe5\xd4\xcd\xa4\xa1\xd0\x7f\x15\xe6\x34\x75\x54\xbf\x02\x00\x00\xff\xff\x2f\x27\xba\xbf\x8d\x04\x00\x00" func lockedtokensStakerGet_staker_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -4300,11 +4279,11 @@ func lockedtokensStakerGet_staker_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/get_staker_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x99, 0x7d, 0x68, 0x3c, 0x28, 0x9c, 0xb5, 0x1c, 0x9a, 0x60, 0x8a, 0x99, 0xf5, 0x71, 0x5c, 0xef, 0xc4, 0xab, 0x72, 0x68, 0x33, 0xba, 0x87, 0xeb, 0x57, 0xb7, 0x13, 0x22, 0xeb, 0x59, 0xae, 0xac}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x12, 0x2d, 0x71, 0xfd, 0xfb, 0x2c, 0xe0, 0x95, 0x39, 0x71, 0xb4, 0xb2, 0xbe, 0x29, 0xf5, 0x53, 0xef, 0xa9, 0xc4, 0x22, 0x24, 0xed, 0x2b, 0x64, 0x26, 0xca, 0xb9, 0xaa, 0x28, 0xf8, 0xf4, 0xf9}} return a, nil } -var _lockedtokensStakerRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x4f\x4f\xdc\x3e\x10\xbd\xe7\x53\xcc\x2f\x07\x94\x48\x4b\xf8\x1d\xaa\xaa\x8a\xd8\xa2\x85\x85\x16\x2d\xda\x45\x04\x68\x7b\x34\xc9\x24\x6b\x61\xec\xc8\x71\xba\x8b\xd0\x7e\xf7\xca\xb1\x93\xd8\xfc\x69\xb9\xb0\x07\x92\xcc\x3c\xbf\x99\x37\x7e\x03\x7d\xa8\x85\x54\x70\xc6\xc4\xe6\x5a\xdc\x23\x87\x52\x8a\x07\x08\x87\xef\x30\xe8\x11\x2d\xaf\xe8\x1d\x43\x0f\xe5\xc6\x06\xe4\x85\xc8\xef\xb1\xe8\x62\x8d\x01\xfe\xbf\xbd\x58\x9d\x2c\x4e\xe7\xd7\xab\xc5\xe9\x72\x36\x9f\x5f\x9d\x66\x59\x8f\xce\x14\xb9\xa7\xbc\xba\x94\x62\xfb\xd8\xa3\xb3\xeb\xd9\xe2\x7c\xf9\xed\xf2\x6a\xf5\xf3\x57\x0f\x0f\x94\x24\xbc\x21\xb9\xa2\x82\x47\xb4\x48\x21\x53\x92\xf2\x6a\x02\x52\x30\x4c\xe1\xe6\x9c\xab\x2f\x13\xe0\xa8\x36\x42\x6a\xc2\x59\x51\x48\x6c\x9a\x11\x37\xa6\x16\xf8\x38\x86\x1b\x53\xdf\x8b\x91\x07\xd1\x72\x95\xc2\xcd\x19\xdd\x7e\xfe\x14\xc3\x53\x10\x00\x00\x30\x54\xb0\x16\xac\x40\x79\x85\x65\x0a\xa4\x55\xeb\xc8\x15\x9b\x74\x8f\x55\x8d\x92\xe8\x2e\x9b\x89\x3f\xb4\xe4\x07\x55\xeb\x42\x92\x4d\x0c\x7b\x2f\x8f\x7d\xef\x88\xc7\x42\xbf\x49\xcb\xd4\x58\xe7\x4d\xa6\xe1\xa6\x92\x5b\x7d\xc2\x10\xd4\x12\x6b\x22\x31\x22\x79\x6e\x94\x74\x1c\xc7\x42\x4a\xb1\xb9\x25\xac\xc5\x18\xf6\x66\x26\xa7\xd5\x81\xfd\x35\xc8\xca\x64\x50\x08\x53\xb0\xe7\x93\x46\x09\x49\x2a\x4c\xee\x3a\x86\xc3\x8f\x50\xfe\x35\xd2\x97\x9f\xc2\x5b\xf9\xcc\xb4\x70\x49\xd4\x3a\x1e\x1a\xd6\xbf\xa3\x23\xa8\x09\xa7\x79\x14\x9e\x88\x96\x15\xc0\x85\x02\xd3\x27\x48\x2c\x41\x09\x70\x58\xc2\x38\xf0\xd5\xf6\x63\xfe\x87\xd8\xf7\x8e\xbf\x57\x71\x60\x49\x0e\xca\x3e\xdf\xa5\xdf\xdd\xb9\x3e\x06\xaa\x5b\xb5\xae\x43\x2d\x05\x25\xf2\x1c\x43\xc3\xb1\x33\x3a\x70\x8b\x79\xab\xd0\xb9\x43\xed\x1d\x2e\x0a\x3c\xe7\xa5\x80\xa9\xb7\x5e\xc9\xd2\xc6\x23\xa7\x8d\x0e\x3b\x4f\x81\x16\x13\x27\x6a\x96\x4a\xff\x75\xa3\xaf\x6c\xd7\x8b\xd0\xeb\xf8\x6e\xbd\xbc\x4f\x17\xe7\xee\xe0\xf8\x3e\x00\x9c\x3b\xd3\xea\x58\xe7\x90\x63\xc2\x08\xcf\x11\xa6\xcf\x5c\x9b\x54\xa8\x8c\x87\xac\xc1\x2d\x30\x72\x58\x68\x69\x57\x1c\x0e\xa7\xcf\xe8\x9e\x02\xef\x8a\x9e\x71\xe7\x12\x89\x42\x3d\x46\x3d\x57\x94\x51\x3f\xe9\x74\x98\xf9\xf8\xdf\xc3\x3c\x9d\xb2\x3b\x40\xd6\xa0\xae\x1e\x45\xb6\xfe\xbe\x5f\x3e\xd6\x0d\x79\xbe\x4c\xee\xfa\xcc\xdf\x3b\x2b\xb0\x16\x0d\x55\xd6\x7e\x87\xfb\x3e\xc9\xc6\x1a\x36\xf2\x7b\x7b\x51\x3e\xfe\x78\xf5\x4f\x5e\x05\xeb\xff\xa5\x50\x80\x5c\xb4\xd5\xda\x98\xbe\xd1\x6b\xab\x9d\x80\xff\x85\xe3\xce\xec\x86\x37\xbb\x02\xbb\xe0\x4f\x00\x00\x00\xff\xff\x17\x1b\x1e\x0b\xbf\x06\x00\x00" +var _lockedtokensStakerRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x51\x4f\xdb\x30\x10\x7e\xcf\xaf\xb8\xe5\x01\x25\x52\x09\x2f\xd3\x34\x45\x74\x08\x36\xa1\xa1\x4d\x0c\x8d\xc1\x9e\xdd\xe4\x92\x5a\x75\xed\xc8\xb9\xac\x45\x55\xff\xfb\xe4\xd8\x49\xec\x16\x36\x5e\xe8\x03\x49\xee\x3e\x7f\x77\xdf\xf9\x3b\xf8\xba\x51\x9a\xe0\x5a\xa8\xcd\x2f\xb5\x42\x09\x95\x56\x6b\x88\xc7\xef\x38\x1a\x10\x9d\xac\xf9\x42\x60\x80\xf2\x63\x23\xf2\xbb\x2a\x56\x58\xf6\xb1\xd6\x01\xfd\xd0\x88\xbb\x27\xb6\xe2\xb2\xbe\xd3\x6a\xfb\xe4\x70\x7e\x28\x8e\x22\xd2\x4c\xb6\xac\x20\xae\x64\xc2\xcb\x1c\xee\x49\x73\x59\xcf\x40\x2b\x81\x39\x3c\xdc\x48\xfa\x38\x03\x89\xb4\x51\xda\x1c\xbb\x2c\x4b\x8d\x6d\x3b\xe1\xa6\xd4\x37\x7c\x9a\xc2\xad\xad\x12\xc4\xd8\x5a\x75\x92\x72\x78\xb8\xe6\xdb\x0f\xef\x53\xd8\x45\x11\x00\x80\x40\x82\xa5\x12\x25\xea\x9f\x58\xe5\xc0\x3a\x5a\x26\xbe\x98\xac\x7f\xfc\x68\x50\x33\xd3\x65\x3b\x0b\xe7\x94\xfd\xe6\xb4\x2c\x35\xdb\xa4\x70\x72\x7c\xec\x6b\x4f\x3c\x15\xfa\xc3\x3a\x41\x53\x9d\x17\x99\xc6\xcb\xc9\x1e\xcd\x09\x4b\xd0\x68\x6c\x98\xc6\x84\x15\x85\x55\xd2\x73\x5c\x29\xad\xd5\xe6\x91\x89\x0e\x53\x38\xb9\xb4\x39\xa3\x0e\xdc\xaf\x45\x51\x65\xa3\x42\x98\x83\x3b\x9f\xb5\xa4\x34\xab\x31\x5b\xf4\x0c\xe7\x6f\xa1\xfc\x53\x62\x6e\x3d\x87\x97\xf2\xf7\xb6\x85\x3b\x46\xcb\x74\x6c\xd8\xfc\x2e\x2e\xa0\x61\x92\x17\x49\xfc\x59\x75\xa2\x04\xa9\x08\x6c\x9f\xa0\xb1\x02\x52\xe0\xb1\xc4\x69\x14\xaa\x1d\xc6\xfc\x1f\xb1\xaf\x1d\xff\xa0\xe2\xcc\x91\x9c\x55\x43\xbe\x4f\xbf\xba\x73\x73\x0c\xa8\xdf\xae\xbe\x43\x23\x05\x35\xca\x02\x63\xcb\xb1\xb7\x3a\x70\x8b\x45\x47\xe8\xdd\xa1\xf1\x8e\x54\x25\xde\xc8\x4a\xc1\x3c\xd8\xab\xec\xd6\xc5\x13\xaf\x8d\x1e\xfb\x25\x07\x5e\xce\xbc\xa8\x5d\x2a\xf3\xd7\x8f\x3e\xb3\x5d\x47\xa1\xe7\xf1\xfd\x7a\x05\x9f\x3e\xce\xdf\xc1\xe9\x7d\x04\x78\x77\x66\xd4\x89\xde\x21\x57\x4c\x30\x59\x20\xcc\x0f\x5c\x9b\xd5\x48\xd6\x43\xce\xe0\x0e\x98\x78\x2c\xbc\x72\x2b\x0e\xe7\xf3\x03\xba\x5d\x14\x5c\xd1\x01\x77\xa1\x91\x11\x9a\x31\x9a\xb9\xa2\x4e\x86\x49\xe7\xe3\xcc\xa7\xff\x1e\xf6\xe9\x95\xdd\x03\x8a\x16\x4d\xf5\x24\x71\xf5\x4f\xc3\xf2\xa9\x69\x28\xf0\x65\xb6\x18\x32\xff\xee\xac\xc4\x46\xb5\x9c\x9c\xfd\xce\x4f\x43\x92\x8d\x33\x6c\x12\xf6\x76\x54\x3e\x7d\x7b\xf5\xbb\xa0\x82\xf3\xff\xad\x22\x40\xa9\xba\x7a\x69\x4d\xdf\x9a\xb5\x35\x4e\xc0\x77\xf1\xb4\x33\xfb\xf1\xcd\xad\xc0\x3e\xfa\x1b\x00\x00\xff\xff\x8e\x3f\xa9\xa3\xb2\x06\x00\x00" func lockedtokensStakerRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -4320,11 +4299,11 @@ func lockedtokensStakerRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6a, 0x21, 0x8d, 0x8, 0xb3, 0x75, 0x66, 0xf3, 0xe2, 0x1b, 0xf9, 0x7, 0x0, 0xd0, 0x5e, 0x60, 0x84, 0x71, 0xc2, 0x5, 0x5f, 0xa4, 0xff, 0xd1, 0x77, 0xe5, 0x92, 0x0, 0xb7, 0x96, 0x33, 0xa9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdb, 0x99, 0x9d, 0x62, 0xc7, 0xa4, 0x1f, 0xa9, 0x34, 0x1a, 0x76, 0xe, 0xd5, 0x14, 0x51, 0x9d, 0x15, 0xbc, 0xd1, 0x4, 0x50, 0x20, 0xe8, 0x57, 0xf2, 0xc4, 0xd8, 0xe, 0x23, 0x49, 0x96, 0xfe}} return a, nil } -var _lockedtokensStakerRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xcb\x6b\xab\x50\x10\xc6\xf7\xfe\x15\x83\x8b\xa0\x70\x91\xbb\xb8\xdc\x45\xb8\xb9\x21\xcd\xa3\x2d\x09\x31\xc4\xa4\x8f\xe5\x89\x8e\x51\x34\xe7\xd8\x39\x23\xb1\x94\xfc\xef\x45\x8f\x79\x96\x2e\x7b\x36\x03\xce\x37\xdf\xfc\xf8\x9c\x74\x57\x28\x62\x98\xa9\x30\xc3\x68\xa5\x32\x94\x1a\x62\x52\x3b\xf8\x5d\xcd\xfc\xe1\x74\x3c\x5a\xf9\xd3\xf1\x7c\x30\x1a\x2d\xc7\x41\x60\xb5\xea\x80\x45\x96\xca\xed\x82\x54\xf5\x7e\x54\x07\xab\xc1\xf4\x71\x7e\xbf\x58\xfa\x2f\xaf\x37\xf2\x49\x29\xb7\xe9\x26\xc7\xc6\xde\xe8\xed\xab\x6f\xb6\x65\x31\x09\xa9\x45\xc8\xa9\x92\x8e\xd8\xa9\x52\x72\x17\xd6\x93\xb4\xfa\xfb\xc7\x85\x0f\xcb\x02\x00\xc8\x91\x21\x51\x79\x84\xb4\xc4\xb8\x0b\xa2\xe4\xc4\xb9\xe4\xf6\x9a\xe2\x17\x48\xa2\xb6\xd1\xbf\xae\x17\x7b\xcf\x29\x27\x11\x89\xbd\x0b\x9d\xaf\x63\x0f\x8d\xb1\x59\x54\x10\x16\x82\xd0\x11\x61\x68\x40\x9a\x55\x77\x8a\x48\xed\x9f\x44\x5e\xa2\x0b\x9d\x81\xe9\xd5\x70\xd0\x3e\x8d\x79\xec\x9d\x00\xa1\x07\xed\xbc\xa7\x59\x91\xd8\xa2\xb7\x69\x1c\xfe\xfd\x04\xf8\x7f\xa7\x8e\xb5\x0b\xdf\xf5\x03\x83\xb0\x10\x9c\xb8\x27\xe0\xfa\xf5\xfb\x50\x08\x99\x86\x8e\x3d\x54\x65\x1e\x81\x54\x0c\x86\x13\x08\x63\x24\x94\x21\x02\x2b\xb8\xf0\xb2\x8d\xc3\xc1\x84\x85\x15\x86\x25\xe3\x45\x0e\xf5\x7f\xd2\x2c\x32\x24\x73\x20\xbd\x9b\x64\xda\x1c\x82\x46\xe2\xb8\xd6\x39\xc0\xf3\x90\x47\xf8\x56\xa2\xe6\xb5\xd4\xe6\xd6\x4e\x47\x61\xea\x11\xe1\x60\x7d\x06\x00\x00\xff\xff\x4c\x06\x77\xdb\xc1\x02\x00\x00" +var _lockedtokensStakerRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x43\x0e\x25\x01\xc9\x49\x3c\x14\x6b\x51\xa1\x78\x10\x2c\xd6\xea\x79\x9a\x4c\x9a\x90\x74\x27\xce\xce\xd2\x8a\xf4\xbf\x4b\xb2\x31\x4d\x15\x8f\xee\x65\x61\xf6\xcd\x9b\x8f\xb7\x53\xee\x1a\x16\x85\x47\x4e\x2b\xca\x5e\xb8\x22\x63\x21\x17\xde\x41\x38\x2e\x85\x41\xaf\x5b\x29\x56\xa5\xd9\x2e\x85\x0f\x1f\xbd\x6e\x5c\x1a\x74\x0b\x67\xb6\xe5\xa6\xa6\xae\xbd\x17\x9e\xd5\xc2\x20\x50\x41\x63\x31\xd5\x92\x4d\x84\x3b\x76\x46\xa7\xb0\x5e\x94\x87\xab\xcb\x18\x3e\x83\x00\x00\xa0\x26\x85\x82\xeb\x8c\xe4\x99\xf2\x29\xa0\xd3\x22\x1a\x73\x25\xdd\xf5\xd4\x90\x60\x6b\x63\x2f\xce\x07\x27\x6f\xa5\x16\x99\xe0\x3e\x86\xc9\xef\xb6\x87\xce\xd8\x0f\x6a\x84\x1a\x14\x8a\x30\x4d\x3d\x48\x37\xea\x8e\x45\x78\xff\x8a\xb5\xa3\x18\x26\xb7\xfe\xad\x85\x83\xfe\x58\xaa\xf3\x64\x00\x84\x19\xf4\xfd\x89\x55\x16\xdc\x52\xb2\xe9\x1c\xae\xff\x03\xfc\x26\x6a\x63\x9d\xc2\x5f\xef\x2b\x8f\xb0\x44\x2d\xe2\x01\xb8\x3d\xf3\x39\x34\x68\xca\x34\x0a\xef\xd9\xd5\x19\x18\x56\xf0\x9c\x20\x94\x93\x90\x49\x09\x94\x61\xe4\x15\x7a\x87\xa3\x0f\x8b\x0e\x94\x3a\xa5\x51\x0e\xed\x3f\x59\xc5\x8a\xc4\x6f\xc6\xec\x47\x32\x7d\x0e\xab\x4e\x12\xc5\xc1\x29\xc0\x53\x53\x22\xf4\xee\xc8\xea\xda\x58\xbf\x51\xc3\x52\xf8\xfb\x1b\xe1\x18\x7c\x05\x00\x00\xff\xff\x8c\x90\x77\x98\xb4\x02\x00\x00" func lockedtokensStakerRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -4340,11 +4319,11 @@ func lockedtokensStakerRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7d, 0x6e, 0x5b, 0x96, 0x53, 0x78, 0x5b, 0x54, 0xb2, 0xc4, 0xc8, 0x53, 0xbf, 0xf2, 0x15, 0xaa, 0xa7, 0xa4, 0x7f, 0x42, 0x92, 0x82, 0x68, 0x84, 0x2f, 0xdd, 0xe2, 0x28, 0x89, 0x0, 0xcb, 0x8f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x43, 0x96, 0xc0, 0xc3, 0xf5, 0xcd, 0xe1, 0xb9, 0xfa, 0x2f, 0x25, 0x5a, 0x6c, 0x3b, 0x3d, 0xc4, 0x1a, 0xa9, 0x3, 0x7c, 0x91, 0xfe, 0x22, 0x28, 0x3c, 0xb9, 0x98, 0x62, 0xb4, 0xd0, 0xb2, 0xbf}} return a, nil } -var _lockedtokensStakerStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4f\x6f\xda\x4e\x10\xbd\xfb\x53\xcc\xcf\x87\xc8\x96\x7e\x71\x7a\xa8\x7a\x40\xd0\x88\x04\xd2\x56\x44\x80\x30\x4d\xdb\xe3\x62\xc6\x7f\xc4\xb2\x6b\xed\xae\x0b\x15\xe2\xbb\x57\xfb\xc7\xc6\x36\x8a\x1a\x55\xaa\x2f\x06\xcf\x9b\x37\xef\xed\x9b\x2d\xf6\x25\x17\x0a\x9e\x28\x3f\xac\xf9\x0e\x19\xa4\x82\xef\xc1\x6f\xfe\xfb\x5e\x8d\xa8\x58\x56\x6c\x28\x76\x50\xed\x6f\x0d\xf2\x99\x27\x3b\xdc\x9a\x6f\xd2\x02\xdf\x1d\x9f\x17\x8f\xb3\xe9\x64\xbd\x98\x4d\xe7\xe3\xc9\x64\x35\x8d\xe3\x1a\x1d\x2b\xb2\x2b\x58\xb6\x14\xfc\xf8\xab\x46\xc7\xeb\xf1\xec\xcb\xfc\xd3\x72\xb5\xf8\xfe\xa3\x86\x7b\x4a\x10\x26\x49\xa2\x0a\xce\x02\xb2\xe7\x15\x53\x03\xf8\xfa\x54\x1c\x3f\xbc\x0f\xe1\xe4\x79\x00\x00\x14\x15\xe4\x9c\x6e\x51\xac\x30\x1d\x00\xa9\x54\x1e\xb4\xd5\x44\xe6\xb5\x28\x51\x10\x4d\x23\xff\xef\xba\x8a\xbe\x15\x2a\xdf\x0a\x72\x08\xe1\xe6\xba\xed\xb3\x21\xbe\x0c\xfa\x49\x2a\xaa\x2e\x73\x5e\x65\x6a\x8e\x32\x7a\xd1\x1d\x96\xa0\x14\x58\x12\x81\x01\x49\x12\xeb\xc4\x70\x3c\x70\x21\xf8\xe1\x85\xd0\x0a\x43\xb8\x19\xdb\x9a\x76\x07\xee\x91\x48\xd3\xa8\x71\x08\x23\x70\xfd\x91\x54\x5c\x90\x0c\xa3\x8d\x61\x18\xfe\x0b\xe7\x1f\x03\x9d\xce\x00\x5e\xab\xc7\x56\xc2\x92\xa8\x3c\x6c\x04\xeb\xe7\xfe\x1e\x4a\xc2\x8a\x24\xf0\x1f\x79\x45\xb7\xc0\xb8\x02\xab\x13\x04\xa6\x28\x90\x25\x08\x8a\x43\x8b\xcb\x0f\xbd\xae\xe7\xfa\xb0\xff\x60\xf9\xad\x21\xd4\x5e\xee\x1c\xc9\x5d\x5a\xd7\x4d\xf9\xcd\xfa\x75\x1b\x28\x73\x23\x8c\xc2\x8b\x21\xdf\x72\x9c\xad\x0f\x3c\x62\x52\x29\x6c\x25\xa9\x37\x48\x2a\xb2\x43\x61\x37\x7f\xd4\xcb\xd6\xd9\x8a\x0d\x24\x68\x1d\x87\x6e\xa4\x26\x82\x07\x42\x89\x3e\xba\xab\xd6\x0c\x95\x0d\xc9\x6d\x90\x03\xb6\x59\x8a\x14\xec\x1d\x82\xe1\xa8\x47\x77\xf2\x3a\xee\x5b\x22\x23\xf3\x7b\x8e\xf6\xa4\x64\x73\x0b\xed\xbb\xc5\x7e\x06\xa4\x12\xf5\x90\xc0\x81\xe0\xb6\x3b\x25\xd4\x73\x3b\xc9\x46\x9b\xba\xd2\x17\xd0\x35\xb7\xc5\x92\xcb\x42\xb9\x00\x87\xb7\x5d\x92\x83\x8b\xbc\xa7\xed\x6a\x7c\xf8\xd7\x26\xdb\x6d\x7d\xc3\xa7\x4e\xd5\x2d\xcd\x9c\x2b\x40\xc6\xab\x2c\xb7\x9b\x22\xf5\xae\x9b\x21\xff\xf9\x17\xba\xb3\x5b\x97\xb3\xf7\x3b\x00\x00\xff\xff\x9f\x64\xca\xb7\x92\x05\x00\x00" +var _lockedtokensStakerStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x8b\xdb\x30\x10\xbd\xfb\x57\x4c\x7d\x58\x6c\xe8\x7a\x2f\xa5\x87\x90\x74\xe9\x16\x96\x1e\xca\x76\x69\xda\xed\x59\xb1\xc7\x1f\x44\x91\x8c\x34\x6e\x52\x42\xfe\x7b\xd1\x87\x1d\xc9\x61\x69\x28\xd4\x17\x25\x9a\x37\x6f\xe6\xcd\x1b\x75\xbb\x5e\x2a\x82\x47\x2e\xf7\xdf\xe5\x16\x05\xd4\x4a\xee\x20\x9d\xfe\xa7\xc9\x88\x18\x44\xd3\x6d\x38\x46\xa8\xf0\x6e\x42\x7e\x91\xe5\x16\x2b\x7b\xa7\x3d\x30\xbc\x9a\x70\x6b\x62\xdb\x4e\x34\xcf\x4a\x1e\x7e\x7b\x5c\x78\x95\x26\x09\x29\x26\x34\x2b\xa9\x93\x22\x63\x3b\x39\x08\x5a\xc0\x8f\xc7\xee\xf0\xfe\x5d\x0e\xc7\x24\x01\x00\xe0\x48\xd0\x4a\x5e\xa1\xfa\x86\xf5\x02\xd8\x40\x6d\x16\x56\x2b\xec\xf1\xb5\x47\xc5\x0c\x8d\x7e\x1b\x0b\x29\x7e\x76\xd4\x56\x8a\xed\x73\xb8\xb9\x4c\xfb\x6c\x89\xcf\x85\x7e\xb1\x81\xd3\xb9\xce\xab\x4c\xd3\xf4\x8a\x17\x93\xe1\x08\x7a\x85\x3d\x53\x98\xb1\xb2\x74\x4a\x2c\xc7\x83\x54\x4a\xee\x5f\x18\x1f\x30\x87\x9b\x8f\x2e\x66\xd4\x81\xff\x34\xf2\xba\x98\x14\xc2\x0a\x7c\x7e\xa1\x49\x2a\xd6\x60\xb1\xb1\x0c\xcb\xff\xa1\xfc\x43\x66\x6c\x59\xc0\x6b\xf1\xb5\x6b\xe1\x99\x51\x9b\x4f\x0d\x9b\xef\xfe\x1e\x7a\x26\xba\x32\x4b\x3f\xc9\x81\x57\x20\x24\x81\xeb\x13\x14\xd6\xa8\x50\x94\x08\x24\x21\xe0\x4a\xf3\x24\xd6\x3c\x0e\xfb\x2f\x92\xaf\x35\x61\xd4\x72\xe7\x49\xee\xea\x31\x6e\xc3\x57\xf7\x6f\xd2\x80\xec\x23\xb0\x1d\x9e\x05\xa5\x8e\xe3\xe4\x74\xe0\x01\xcb\x81\x30\x70\xd2\x6c\x90\x26\xb6\x45\xe5\x56\x7e\x35\xf3\xd6\xcb\x5a\x5b\x48\x16\x8c\xc3\x24\x72\x6b\xc1\x03\xe3\xcc\x8c\xee\x22\xb5\x41\x72\x26\xf9\x0d\xf2\xc0\x90\xa5\xab\xc1\xbd\x21\x58\xae\x66\x74\xc7\x24\x52\x1f\x34\x59\xd8\xdf\x4f\xe8\x26\xa5\xa7\x57\xe8\xce\x80\xfd\x04\xc8\x35\x9a\x22\x99\x07\xc1\x6d\x5c\x25\x37\x75\x23\x67\x8b\xcd\x18\x99\x37\x10\x8b\xab\xb0\x97\xba\x23\x6f\xe0\xf2\x36\x26\xd9\x7b\xcb\x67\xbd\x5d\x94\xcf\xff\x59\x64\x98\x36\x17\x7c\x8c\xa2\x7e\x69\x9e\x24\x01\x0a\x39\x34\xad\xdb\x14\x6d\x76\xdd\x16\x79\x93\x9e\xe9\x4e\x7e\x5d\x4e\xc9\x9f\x00\x00\x00\xff\xff\x73\x2a\x82\xe7\x85\x05\x00\x00" func lockedtokensStakerStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4360,11 +4339,11 @@ func lockedtokensStakerStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x15, 0x4f, 0xfa, 0x10, 0x8c, 0xe5, 0x53, 0x96, 0x64, 0x9c, 0xd, 0x60, 0x9a, 0x7f, 0x13, 0xae, 0x45, 0x82, 0x1e, 0x80, 0xd7, 0xe8, 0x1a, 0xbb, 0x7c, 0x33, 0xc0, 0xb0, 0x18, 0x3a, 0x9c, 0x1c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0x94, 0xa9, 0xe1, 0x94, 0x21, 0x96, 0x84, 0xaa, 0x9a, 0xa0, 0xb6, 0xdb, 0x1c, 0x29, 0x14, 0x18, 0x54, 0xdd, 0x63, 0xda, 0x32, 0x1c, 0xa8, 0xae, 0xbc, 0x10, 0x74, 0xb7, 0x33, 0xdf, 0x90}} return a, nil } -var _lockedtokensStakerStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xcb\x8b\xa3\x40\x10\xc6\xef\xfe\x15\x85\x87\xa0\xb0\xc8\x1e\x96\x3d\x84\xcd\x86\x4c\x1e\x33\x43\x42\x0c\x9a\x79\x1d\x2b\x5a\x46\xd1\x74\x4b\xd9\x12\x87\x21\xff\xfb\x60\xb7\x79\x0e\x73\x9c\xbe\xb4\x58\x5f\x7d\xf5\xf3\xb3\xb2\x5d\x29\x59\xc1\x42\x46\x39\xc5\x6b\x99\x93\xa8\x20\x61\xb9\x83\xdf\xcd\xc2\x1f\xcf\xa7\x93\xb5\x3f\x9f\x2e\x47\x93\x49\x30\x0d\x43\xab\x53\x87\x0a\xf3\x4c\x6c\x57\x2c\x9b\xf7\xa3\x3a\x5c\x8f\xe6\x8f\xcb\xfb\x55\xe0\xbf\xbe\xdd\xc8\x67\xb5\xd8\x66\x9b\x82\xb4\xbd\xd1\xdb\x57\xef\x6c\xcb\x52\x8c\xa2\xc2\x48\x65\x52\x38\xb8\x93\xb5\x50\x7d\x78\x9a\x65\xcd\xdf\x3f\x2e\x7c\x58\x16\x00\x40\x41\x0a\x52\x59\xc4\xc4\x01\x25\x7d\xc0\x5a\xa5\xce\x25\xb7\xa7\x2f\xbf\x24\xc6\xd6\xa6\xfa\x75\x3d\xd8\x7b\xc9\x54\x1a\x33\xee\x5d\xe8\x7d\x6d\x7b\xd0\xc6\x66\x50\xc9\x54\x22\x93\x83\x51\x64\x40\xf4\xa8\x3b\xc9\x2c\xf7\xcf\x58\xd4\xe4\x42\x6f\x64\x6a\x2d\x1c\x74\xa7\xa2\x22\xf1\x4e\x80\x30\x80\xae\xdf\xab\x94\x64\xdc\x92\xb7\xd1\x0e\xff\x7e\x02\xfc\xbf\xd3\xc6\xda\x87\xef\xea\xa1\x41\x58\xa1\x4a\xdd\x13\x70\x7b\x86\x43\x28\x51\x64\x91\x63\x8f\x65\x5d\xc4\x20\xa4\x02\xc3\x09\x4c\x09\x31\x89\x88\x40\x49\xb8\xf0\xb2\x8d\xc3\xc1\x84\x45\x0d\x45\xb5\xa2\x8b\x1c\xda\xff\x54\x29\xcc\x89\xcd\x82\x0c\x6e\x92\xe9\x72\x08\xb5\xc4\x71\xad\x73\x80\xe7\x26\x4f\x3f\x07\xb4\x47\x8e\x8f\xdf\x73\xda\x0b\x73\x1f\x29\x0e\xd6\x67\x00\x00\x00\xff\xff\x4f\x04\x82\x6f\xc4\x02\x00\x00" +var _lockedtokensStakerStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x6b\x83\x40\x10\xc5\xef\x7e\x8a\xc1\x43\x50\x28\x9e\x4a\x0f\xa1\x69\x68\x0b\xa1\x87\x42\x43\xd2\x3f\xe7\x89\x8e\x71\xd1\xec\xc8\x38\x92\x94\x92\xef\x5e\xdc\x35\xc6\xb4\xf4\xd8\xbd\xac\xcc\xbe\x79\xf3\xf3\xed\x9a\x5d\xcd\xa2\xf0\xcc\x69\x49\xd9\x2b\x97\x64\x1b\xc8\x85\x77\x10\x8e\x4b\x61\xd0\xeb\xd6\x8a\xa5\xb1\xdb\xa5\xf0\xe1\xb3\xd7\x8d\x4b\x83\x6e\xd1\xda\xad\xd9\x54\xe4\xda\x7b\xe1\x45\x2d\x0c\x02\x15\xb4\x0d\xa6\x6a\xd8\x46\xb8\xe3\xd6\xea\x14\xde\x16\xe6\x70\x73\x1d\xc3\x57\x10\x00\x00\x54\xa4\x50\x70\x95\x91\xac\x28\x9f\x02\xb6\x5a\x44\x63\xae\xc4\x6d\x2f\x35\x09\x76\x36\xcd\xd5\xe5\xe0\xe4\xc3\x68\x91\x09\xee\x63\x98\xfc\x6e\x7b\x72\xc6\x7e\x50\x2d\x54\xa3\x50\x84\x69\xea\x41\xdc\xa8\x07\x16\xe1\xfd\x3b\x56\x2d\xc5\x30\xb9\xf7\x67\x1d\x1c\xf4\xab\xa1\x2a\x4f\x06\x40\x98\x41\xdf\x9f\x34\xca\x82\x5b\x4a\x36\xce\xe1\xf6\x3f\xc0\xef\xa2\x2e\xd6\x29\xfc\x75\xbe\xf6\x08\x4b\xd4\x22\x1e\x80\xbb\x35\x9f\x43\x8d\xd6\xa4\x51\xf8\xc8\x6d\x95\x81\x65\x05\xcf\x09\x42\x39\x09\xd9\x94\x40\x19\x46\x5e\xa1\x77\x38\xfa\xb0\xe8\x40\x69\xab\x34\xca\xa1\xbb\xa7\x46\xb1\x24\xf1\x2f\x63\xf6\x23\x99\x3e\x87\xb5\x93\x44\x71\x70\x0e\xf0\xdc\x94\xb8\xef\x15\xed\x51\xb2\xd3\xff\x0c\xef\xc2\xef\x27\x8a\x63\xf0\x1d\x00\x00\xff\xff\xd0\xbf\x36\xd9\xb7\x02\x00\x00" func lockedtokensStakerStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4380,11 +4359,11 @@ func lockedtokensStakerStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x12, 0x4c, 0xb4, 0x18, 0xc2, 0x2c, 0x6e, 0x8b, 0x63, 0xcb, 0x1d, 0x58, 0xa2, 0xfc, 0x7d, 0x7b, 0x7e, 0x7d, 0xd, 0x3c, 0xc4, 0x71, 0xe4, 0x51, 0x14, 0x84, 0x6a, 0x9, 0x3c, 0x44, 0x94, 0xa0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0xa0, 0x71, 0x36, 0x7, 0x30, 0xc6, 0x7b, 0x66, 0x12, 0xac, 0xed, 0xc2, 0xbc, 0x68, 0x9a, 0xe6, 0xbd, 0xa3, 0x1, 0xa2, 0x22, 0x15, 0xe4, 0xda, 0xdd, 0xae, 0xe4, 0x5c, 0xa2, 0x96, 0x31}} return a, nil } -var _lockedtokensStakerStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4b\x6f\xab\x40\x0c\x85\xf7\xfc\x0a\x8b\x45\x04\xd2\x15\xba\x8b\xab\xbb\x88\x9a\x46\x69\x1e\x6d\x95\x28\x44\x21\xe9\x63\x39\x01\x13\x10\x64\x06\x19\xa3\x50\x55\xf9\xef\x15\x33\xe4\x59\x75\xd9\xd9\x18\x31\xc7\xc7\x1f\x07\xa7\xbb\x42\x11\xc3\x4c\x85\x19\x46\x2b\x95\xa1\x2c\x21\x26\xb5\x83\xbf\xf5\xcc\x1f\x4e\xc7\xa3\x95\x3f\x1d\xcf\x07\xa3\xd1\x72\x1c\x04\x56\xab\x0e\x58\x64\xa9\xdc\x2e\x48\xd5\x1f\x47\x75\xb0\x1a\x4c\x9f\xe7\x8f\x8b\xa5\xff\xf6\x7e\x23\x9f\x54\x72\x9b\x6e\x72\xd4\xf6\x46\x6f\x5f\xbd\xb3\x2d\x8b\x49\xc8\x52\x84\x9c\x2a\xe9\x88\x9d\xaa\x24\x77\x61\x3d\x49\xeb\xff\xff\x5c\xf8\xb4\x2c\x00\x80\x1c\x19\x12\x95\x47\x48\x4b\x8c\xbb\x20\x2a\x4e\x9c\x4b\x6e\x4f\x17\xbf\x40\x12\x8d\x4d\xf9\xe7\x7a\xb0\xf7\x9a\x72\x12\x91\xd8\xbb\xd0\xf9\xde\xf6\xa4\x8d\xcd\xa0\x82\xb0\x10\x84\x8e\x08\x43\x03\xa2\x47\x3d\x28\x22\xb5\x7f\x11\x79\x85\x2e\x74\x06\xe6\xae\x81\x83\xf6\x94\x98\xc7\xde\x09\x10\x7a\xd0\xf6\x7b\x25\x2b\x12\x5b\xf4\x36\xda\xe1\xee\x37\xc0\xef\x9d\x26\xd6\x2e\xfc\x74\x1f\x18\x84\x85\xe0\xc4\x3d\x01\x37\xa7\xdf\x87\x42\xc8\x34\x74\xec\xa1\xaa\xf2\x08\xa4\x62\x30\x9c\x40\x18\x23\xa1\x0c\x11\x58\xc1\x85\x97\x6d\x1c\x0e\x26\x2c\xac\x31\xac\x18\x2f\x72\x68\xfe\x53\xc9\x22\x43\x32\x0b\xd2\xbb\x49\xa6\xcd\x21\xd0\x12\xc7\xb5\xce\x01\x9e\x9b\x3c\xfd\xbc\x96\xba\xb4\xdf\x73\xda\x0b\x53\x8f\x14\x07\xeb\x2b\x00\x00\xff\xff\x60\x30\x32\x41\xc4\x02\x00\x00" +var _lockedtokensStakerStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6b\xe3\x40\x0c\x85\xef\xfe\x15\xc2\x87\x60\xc3\xe2\xd3\xb2\x87\xb0\xd9\xb0\x2d\x84\x1e\x0a\x0d\x4d\xd3\x9e\x15\x5b\x8e\x07\x3b\x23\x23\xcb\x24\xa5\xe4\xbf\x17\xcf\x4c\x1d\xa7\xa5\xc7\xce\x45\x41\xf3\xf4\xf4\xe5\x79\xcc\xa1\x65\x51\xb8\xe7\xbc\xa6\xe2\x89\x6b\xb2\x1d\x94\xc2\x07\x88\xa7\xad\x38\x0a\xba\x8d\x62\x6d\xec\x7e\x2d\x7c\x7a\x0d\xba\x69\x6b\xd4\xad\x7a\xbb\x37\xbb\x86\xdc\x78\x10\x5e\xf5\xe2\x28\x52\x41\xdb\x61\xae\x86\x6d\x82\x07\xee\xad\xce\x61\xbb\x32\xa7\x3f\xbf\x53\x78\x8b\x22\x00\x80\x86\x14\x2a\x6e\x0a\x92\x47\x2a\xe7\x80\xbd\x56\xc9\x94\x2b\x73\xe5\xa1\x25\xc1\xc1\xa6\xfb\x75\xbd\x38\x7b\x31\x5a\x15\x82\xc7\x14\x66\x5f\xc7\xee\x9c\xb1\x5f\xd4\x0a\xb5\x28\x94\x60\x9e\x7b\x10\xb7\xea\x86\x45\xf8\xf8\x8c\x4d\x4f\x29\xcc\xfe\xfb\xbb\x01\x0e\xc2\xe9\xa8\x29\xb3\x11\x10\x16\x10\xe6\xb3\x4e\x59\x70\x4f\xd9\xce\x39\xfc\xfd\x09\xf0\x7f\xc9\x10\xeb\x1c\xbe\xbb\xdf\x78\x84\x35\x6a\x95\x8e\xc0\xc3\x59\x2e\xa1\x45\x6b\xf2\x24\xbe\xe5\xbe\x29\xc0\xb2\x82\xe7\x04\xa1\x92\x84\x6c\x4e\xa0\x0c\x13\xaf\xd8\x3b\x9c\x7d\x58\x74\xa2\xbc\x57\x9a\xe4\x30\x7c\xa7\x4e\xb1\x26\xf1\x2f\x63\xf1\x29\x99\x90\xc3\xc6\x49\x92\x34\xba\x04\x78\x19\xca\xdc\xef\xad\x75\x25\xfc\x9f\xf1\x5d\xf8\xfa\x41\x71\x8e\xde\x03\x00\x00\xff\xff\xff\x8b\x86\xf7\xb7\x02\x00\x00" func lockedtokensStakerStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4400,11 +4379,11 @@ func lockedtokensStakerStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd7, 0x3d, 0xa6, 0xee, 0x16, 0x62, 0x86, 0xa8, 0x75, 0xe1, 0x9a, 0xb0, 0x46, 0x44, 0x31, 0x93, 0xbd, 0x11, 0xe3, 0x5, 0xc, 0x92, 0xc8, 0xd5, 0xb2, 0x95, 0xec, 0x89, 0x21, 0xb9, 0xdc, 0xed}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x12, 0xf1, 0x86, 0x58, 0x5d, 0x91, 0x7f, 0x1a, 0x15, 0x92, 0xc5, 0xf3, 0xa7, 0xa6, 0xd3, 0x7a, 0x72, 0xd0, 0x90, 0x7c, 0xc2, 0x70, 0x26, 0x1f, 0xbc, 0xcf, 0x67, 0xa, 0x38, 0x17, 0x82, 0xc7}} return a, nil } -var _lockedtokensStakerUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\x4b\x6b\xbb\x40\x10\xbf\xfb\x29\x06\x0f\x41\xe1\x8f\xfc\xcf\xa1\x69\xb0\x49\xfa\x20\x21\x86\x18\xfa\x38\x6e\x74\x8c\xe2\x66\x57\xc6\x59\x92\x52\xf2\xdd\x8b\xae\x79\x96\x1e\x3b\x17\x71\xe7\xf7\xe2\xb7\x5b\x6c\x2b\x4d\x0c\x33\x9d\x94\x98\xae\x74\x89\xaa\x86\x8c\xf4\x16\xfe\xef\x67\xd1\x68\x3a\x19\xaf\xa2\xe9\x64\x1e\x8e\xc7\xcb\x49\x1c\x3b\x1d\x3a\x66\x51\x16\x6a\xb3\x20\xbd\xff\x3c\xa2\xe3\x55\x38\x7d\x99\x3f\x2d\x96\xd1\xfb\xc7\x0d\xfc\xd1\xa8\x4d\xb1\x96\xd8\xca\x5b\xbc\x7b\x75\xe6\x3a\x0e\x93\x50\xb5\x48\xb8\xd0\xca\xf3\xe1\xcb\x71\x00\x00\x24\x32\xe4\x5a\xa6\x48\x4b\xcc\xfa\x20\x0c\xe7\xde\x65\xd2\xa0\xfd\x44\x15\x92\x68\x88\xf5\xbf\x6b\xab\xe0\xad\xe0\x3c\x25\xb1\xf3\xa1\xf7\x93\xf6\xdc\x0a\x5b\xa3\x8a\xb0\x12\x84\x9e\x48\x12\x6d\x14\x77\x56\x0f\x9a\x48\xef\x5e\x85\x34\xe8\x43\x2f\xb4\xbb\x26\x1c\x74\x53\xa3\xcc\x82\x53\x40\x18\x40\xc7\x0f\x6a\xd6\x24\x36\x18\xac\x5b\x85\xbb\xbf\x08\x7e\xef\x35\x45\xf6\xe1\xb7\x7d\x6c\x23\x2c\x04\xe7\xfe\x29\x70\x33\xc3\x21\x54\x42\x15\x89\xe7\x8e\xb4\x91\x29\x28\xcd\x60\x73\x02\x61\x86\x84\x2a\x41\x60\x0d\x17\x5a\xae\x55\x38\xd8\xb2\x70\x8f\x89\x61\xbc\xe8\xa1\xb9\xa7\x9a\x45\x89\x64\x9f\xc4\xe0\xa6\x99\xae\x87\xb8\x85\x78\xbe\x73\x2e\xf0\x4c\x0a\x8c\x6a\xff\x42\x29\xbd\xa3\xdd\xc1\xf9\x0e\x00\x00\xff\xff\x19\x16\xc4\x87\x9f\x02\x00\x00" +var _lockedtokensStakerUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x51\x4d\x4b\xf3\x40\x10\xbe\xef\xaf\x18\x72\x28\x1b\x78\xc9\x0f\x28\x6f\x2d\x55\x10\x0f\x82\xc5\x8a\x9e\xa7\x9b\x49\x13\xb2\xdd\x09\x93\x59\x5a\x91\xfe\x77\xc9\x87\x6d\xaa\x78\x74\x2e\x21\x33\xcf\x17\xcf\x56\xfb\x86\x45\xe1\x91\x5d\x4d\xf9\x0b\xd7\x14\x5a\x28\x84\xf7\x90\x4c\x57\x89\x19\x71\xf7\x31\xec\xaa\xad\xa7\x7e\x3d\x02\xaf\x76\x89\x31\x2a\x18\x5a\x74\x5a\x71\xb0\x29\x7c\x18\x03\x00\xe0\x49\xa1\x64\x9f\x93\x3c\x53\x31\x07\x8c\x5a\xda\xa9\x43\xd6\x7f\x9e\x1a\x12\xec\x88\xed\xbf\x6b\xab\xec\xad\xd2\x32\x17\x3c\xa4\x30\xfb\x49\x7b\xe8\x85\x07\xa3\x46\xa8\x41\x21\x8b\xce\x71\x0c\x3a\x5a\xdd\xb2\x08\x1f\x5e\xd1\x47\x4a\x61\xb6\x1a\x6e\x5d\x38\x18\xa7\x25\x5f\x64\xe7\x80\xb0\x80\x91\x9f\xb5\xca\x82\x3b\xca\xb6\xbd\xc2\xff\xbf\x08\x7e\x63\xbb\x22\xe7\xf0\xdb\x7d\x33\x44\x58\xa3\x96\xe9\x39\x70\x37\xcb\x25\x34\x18\x2a\x67\x93\x3b\x8e\x3e\x87\xc0\x0a\x43\x4e\x10\x2a\x48\x28\x38\x02\x65\x98\x68\x25\x83\xc2\x69\x28\x8b\x8e\xe4\xa2\xd2\xa4\x87\xee\x9d\x5a\xc5\x9a\x64\x2d\x7c\x7c\x87\xc5\xb7\x66\xc6\x1e\x36\x3d\xc4\xa6\xe6\x52\xe0\x85\x94\xc5\xd0\xff\xad\xbc\xb7\x5f\x76\x27\xf3\x19\x00\x00\xff\xff\x30\xca\xb7\x9c\x6a\x02\x00\x00" func lockedtokensStakerUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -4420,11 +4399,11 @@ func lockedtokensStakerUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xeb, 0x2e, 0xae, 0xc2, 0x32, 0xef, 0x6c, 0x93, 0x9f, 0x5e, 0x46, 0x7f, 0x86, 0xe0, 0x52, 0x5b, 0x7d, 0xab, 0x41, 0x2d, 0x3f, 0x47, 0xeb, 0x82, 0x59, 0xd9, 0xa3, 0x76, 0x43, 0x2e, 0xb9, 0xb8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdc, 0xc1, 0xaf, 0x7a, 0x10, 0xfb, 0xfd, 0x3b, 0x33, 0xc6, 0xc6, 0xce, 0xa3, 0x80, 0xcf, 0x7f, 0x17, 0xf2, 0x6f, 0xae, 0x9a, 0xba, 0x53, 0xa9, 0x11, 0x16, 0x37, 0xb0, 0x94, 0xa3, 0x4c, 0x20}} return a, nil } -var _lockedtokensStakerUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x6b\xf2\x40\x10\xc6\xef\xf9\x14\x43\x0e\x92\xc0\x4b\x78\xcf\x52\x2b\x56\x2d\x05\x45\xc5\x48\x7b\x5e\x93\xc9\x1f\x12\x77\xc2\xec\x84\x58\x8a\xdf\xbd\x24\x9b\x6a\x6c\xe9\xb1\x73\x09\x64\x9e\x79\xe6\xc7\xb3\x93\x9f\x2a\x62\x81\x35\x45\x05\xc6\x07\x2a\x50\x1b\x48\x98\x4e\xf0\xff\xbc\xde\xce\x57\xcb\xc5\x61\xbb\x5a\x6e\x66\x8b\xc5\x7e\x19\x86\x4e\xaf\x7e\xae\x75\x9a\x1f\x4b\xec\xf4\x56\xee\xde\xfd\x73\x1d\x47\x58\x69\xa3\x22\xc9\x49\x7b\x1a\x9b\x59\x1c\x33\x1a\x33\x86\x50\x38\xd7\xa9\x0f\x1f\x8e\x03\x00\x50\xa2\x40\x46\x65\x8c\xbc\xc7\x64\x0c\xaa\x96\xcc\x1b\xc2\x04\xdd\x67\x5b\x21\xab\xd6\xca\xfc\xbb\x5f\x1e\xbc\xe5\x92\xc5\xac\x1a\x1f\x46\x3f\xc7\x5e\x3a\x63\xbb\xa8\x62\xac\x14\xa3\xa7\xa2\x88\x6a\x2d\xfd\xaa\x27\x62\xa6\xe6\x55\x95\x35\xfa\x30\x9a\xd9\x5e\x0b\x07\x7d\x19\x2c\x93\xe0\x0a\x08\x13\xe8\xe7\x03\x23\xc4\x2a\xc5\xe0\xd8\x39\x3c\xfc\x05\xf8\xa3\xd7\x46\x3b\x86\xdf\xfa\xa1\x45\xd8\x29\xc9\xfc\x2b\x70\x5b\xd3\x29\x54\x4a\xe7\x91\xe7\xce\xa9\x2e\x63\xd0\x24\x60\x39\x81\x31\x41\x46\x1d\x21\x08\xc1\xc0\xcb\xb5\x0e\x17\x1b\x16\x9e\x31\xaa\x05\x07\x39\xb4\xef\x64\x44\x15\xc8\x3b\xa6\xf3\x3b\x4c\xbe\x25\xd3\xe7\x10\x76\x12\xcf\x77\x6e\x01\xde\x86\x82\xba\x8a\x95\xe0\x06\xa5\x21\x2e\x72\x9d\xf6\x47\x31\xb8\x8f\x2f\x8a\x8b\xf3\x19\x00\x00\xff\xff\x52\x58\xde\x54\x99\x02\x00\x00" +var _lockedtokensStakerUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xcd\x6a\xeb\x30\x10\x85\xf7\x7e\x8a\xc1\x8b\x60\xc3\xc5\x0f\x10\x6e\x6e\xc8\x2d\x94\x2e\x4a\x1b\x9a\xd2\xae\x15\x69\x6c\x0b\x3b\x1a\x33\x1a\xe1\x94\x92\x77\x2f\xb6\xd5\xc4\x69\xe9\xb2\xda\x18\xe6\xe7\x9c\x8f\xe3\xb1\x87\x8e\x58\xe0\x9e\x74\x83\xe6\x99\x1a\x74\x1e\x4a\xa6\x03\xa4\xf3\x52\x9a\xc4\xb9\xdb\xe0\x2a\xbb\x6f\x71\x2c\xc7\xc1\xab\x5a\x9a\x24\xc2\xca\x79\xa5\xc5\x92\xcb\x1c\xf6\x1b\x63\x18\xbd\x5f\xc2\x4e\xd8\xba\x2a\x87\xf7\x24\x01\x00\x68\x51\xa0\xa6\xd6\x20\x3f\x61\xb9\x04\x15\xa4\xce\xe6\x9e\xc5\xf8\x79\xec\x90\xd5\x20\xe5\xff\x5c\x9b\x17\xaf\x56\x6a\xc3\xaa\xcf\x61\xf1\x7d\xed\x6e\x14\x9e\x8c\x3a\xc6\x4e\x31\x66\x4a\x6b\x0a\x4e\xa2\xd5\x7f\x62\xa6\xfe\x45\xb5\x01\x73\x58\x6c\xa6\xde\x00\x07\xf1\x79\x6c\xcb\xe2\x0c\x08\x2b\x88\xfb\x85\x17\x62\x55\x61\xb1\x1f\x15\xfe\xfe\x06\xf8\xbf\x6c\x88\x76\x09\x3f\xf5\x77\x13\xc2\x56\x49\x9d\x9f\x81\x87\xb7\x5e\x43\xa7\x9c\xd5\x59\x7a\x43\xa1\x35\xe0\x48\x60\xe2\x04\xc6\x12\x19\x9d\x46\x10\x82\x99\x56\x3a\x29\x9c\xa6\xb0\xf0\x88\x3a\x08\xce\x72\x18\xfe\x93\x17\xd5\x20\x6f\x99\x8e\x6f\xb0\xfa\x92\x4c\xcc\x61\x37\x8e\x64\x79\x72\x09\xf0\xb2\x54\x84\xce\x28\xc1\x07\x94\x9e\xb8\xb1\xae\x8a\x47\x31\xbb\x8f\x4f\x8a\x53\xf2\x11\x00\x00\xff\xff\x4a\x3a\x43\x6d\x93\x02\x00\x00" func lockedtokensStakerUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -4440,11 +4419,11 @@ func lockedtokensStakerUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x97, 0x4a, 0x45, 0x76, 0x37, 0xf0, 0x22, 0xec, 0x4b, 0x84, 0xb9, 0x61, 0x7c, 0x2f, 0x48, 0xa2, 0xbb, 0x67, 0xdd, 0x75, 0x63, 0x69, 0x75, 0xf4, 0xa5, 0xe4, 0xde, 0x38, 0x7e, 0x30, 0x27, 0x71}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7d, 0xe2, 0x2b, 0x45, 0xf7, 0x48, 0x74, 0x1b, 0x7a, 0xf8, 0xba, 0x91, 0x56, 0x13, 0x38, 0x14, 0xae, 0x4d, 0x1c, 0xdf, 0x80, 0xc7, 0x48, 0xcc, 0x45, 0x7d, 0xf9, 0x69, 0x6b, 0xb, 0x49, 0x9f}} return a, nil } -var _lockedtokensStakerWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x6e\x9b\x40\x10\xbd\xf3\x15\x23\x0e\x16\x48\xed\xa6\x87\xaa\x07\x2b\x69\x94\xc6\x8e\x2a\x25\xaa\x23\x93\xba\xe7\x35\x0c\x06\x79\xbd\x83\x86\xc5\x50\x55\xfe\xf7\x8a\x5d\xc0\x98\xd6\x97\x4a\xe5\xb2\x62\xe7\xed\x9b\xf7\xde\x4c\x7e\x28\x88\x0d\xbc\x50\xbc\xc7\xe4\x8d\xf6\xa8\x4b\x48\x99\x0e\xf0\xa1\x79\x59\x3d\x3e\x2f\x17\x6f\xab\xe7\xe5\xb7\x87\xc5\x62\xbd\x8c\x22\xaf\x43\x3f\x29\xaa\x2d\xd6\x41\xfd\xe1\xdf\x1f\x10\x95\xde\xe5\x5b\x85\x17\xa8\xf1\x9d\xef\x79\x86\xa5\x2e\x65\x6c\x72\xd2\x81\x3c\x50\xa5\xcd\x1c\xbe\x3f\xe5\xcd\xa7\x8f\x21\xfc\xf2\x3c\x00\x00\x85\x06\x32\x52\x09\xf2\x1a\xd3\x39\xc8\xca\x64\xc1\x58\xaa\xb0\xc7\xaa\x40\x96\x2d\x4d\xf9\xee\xb2\xb1\xf8\x91\x9b\x2c\x61\x59\x87\x30\xfb\xf3\xd9\x57\x4b\x3c\xf4\x39\xca\x4a\x19\xdb\x66\x36\xf8\x11\x9b\xf6\xd2\x69\x29\x18\x0b\xc9\x18\xc8\x38\x76\x5a\xad\x9a\x2f\xc4\x4c\xf5\x46\xaa\x0a\x43\x98\x3d\xb8\x5a\xab\x1f\xba\xaf\x44\x95\x8a\xc1\x03\xdc\x41\xf7\x5e\x94\x86\x58\xee\x50\x6c\x2d\xc3\xed\xff\xf0\xf6\x39\x68\x93\x9f\xc3\xb5\x7a\xe4\x24\xbc\x4a\x93\x85\x83\xe0\xf6\xbb\xbf\x87\x42\xea\x3c\x0e\xfc\x47\xaa\x54\x02\x9a\x0c\x38\x9d\xc0\x98\x22\xa3\x8e\x11\x0c\xc1\x88\xcb\x0f\xbd\x4b\xcf\x7d\x9e\xd7\x2d\x4f\x73\xee\xe5\xde\x74\xb8\x9b\xb4\xaf\xdb\xf2\xbf\x49\x3c\xef\xea\xb1\x1d\x92\xef\x58\x4e\x4e\x2c\x36\x18\x57\x06\x47\xe3\x6a\x37\xa1\x34\x72\x8f\xfc\xca\xd4\xfc\x84\xbb\xc9\x00\x3b\xed\x91\x85\x04\x63\xcf\xe7\x47\xa2\xee\x46\xb3\xc6\x5a\x72\xd2\x27\x3f\x2c\xb9\x3b\xc3\xbf\xc7\x25\x12\x2c\xa8\xcc\x4d\x97\xc5\xed\xfb\x49\xff\x9e\x7b\xca\xd6\xfb\x3a\x79\xbf\x03\x00\x00\xff\xff\x47\xfe\xbf\x7a\xd3\x03\x00\x00" +var _lockedtokensStakerWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xc1\x8e\xda\x30\x10\x86\xef\x79\x8a\x51\x0e\x28\x91\x5a\x73\xa9\x7a\x40\x50\xd4\x56\x42\x3d\x54\x2a\x82\x96\x9e\x4d\x32\x21\x11\xc6\x13\x4d\x1c\xc2\x6a\xc5\xbb\xaf\x62\x3b\x21\x64\x97\xcb\x4a\x9b\x8b\x95\x99\xf1\x3f\xdf\x3f\xe3\xe2\x54\x12\x1b\xf8\x4d\xc9\x11\xd3\xbf\x74\x44\x5d\x41\xc6\x74\x82\x70\x18\x0a\x03\x5f\xb7\x52\xd4\xd8\x90\x2f\xea\xff\x6f\x15\xb5\x3e\x14\x7b\x85\x77\x55\xc3\x58\x18\x04\x86\xa5\xae\x64\x62\x0a\xd2\x91\x3c\x51\xad\xcd\x0c\xfe\xad\x8a\xcb\xd7\x2f\x31\x3c\x07\x01\x00\x80\x42\x03\x39\xa9\x14\x79\x83\xd9\x0c\x64\x6d\xf2\x68\x48\x24\xec\xf1\xa7\x44\x96\xad\x4c\xf5\xe9\xbe\xb1\xf8\x5f\x98\x3c\x65\xd9\xc4\x30\x79\x7d\xed\x97\x15\xee\xfb\x9c\x65\xad\x8c\x6d\x33\xe9\xfd\x88\x5d\x1b\x74\x2c\x25\x63\x29\x19\x23\x99\x24\x8e\xd5\xd2\xfc\x20\x66\x6a\x76\x52\xd5\x18\xc3\xe4\xbb\xcb\xb5\xfc\xe0\xbf\x0a\x55\x26\x7a\x0f\xb0\x00\x7f\x5f\x54\x86\x58\x1e\x50\xec\xad\xc2\xfc\x23\xbc\x7d\x8b\xda\xc9\xcf\xe0\x51\x7e\xeb\x10\xd6\xd2\xe4\x71\x0f\xdc\x7e\xcb\x25\x94\x52\x17\x49\x14\xfe\xa4\x5a\xa5\xa0\xc9\x80\xe3\x04\xc6\x0c\x19\x75\x82\x60\x08\x06\x5a\x61\x1c\xdc\x7b\xee\xe6\xf9\xd8\xf2\x78\xce\x1d\xee\xd4\xd7\x4d\xb3\x2e\x6f\xd3\xef\x43\xbc\xbd\xd5\x73\xbb\xa4\xd0\xa9\x5c\x1d\x2c\x5e\x30\xa9\x0d\x0e\xd6\xd5\xbe\x84\xca\xc8\x23\xf2\x9a\xe9\xf2\x04\x8b\xd1\x02\x3d\xfb\xd6\x96\x44\x43\xcf\xb7\x4b\xa2\xf1\xab\xd9\x60\x23\x39\xed\x26\xdf\x3f\x72\x77\xc6\x6f\x8f\x4b\xa4\x58\x52\x55\x18\x3f\x8b\xf9\xe7\x51\xff\x4e\x7b\xac\xd6\xf9\xba\x06\x2f\x01\x00\x00\xff\xff\x84\xb1\x80\xaf\xcd\x03\x00\x00" func lockedtokensStakerWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4460,11 +4439,11 @@ func lockedtokensStakerWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0x2b, 0xa9, 0xc0, 0x4c, 0xcd, 0xfb, 0x1b, 0x12, 0x83, 0x2a, 0x7c, 0xe7, 0x6, 0xaa, 0xa9, 0x32, 0x2a, 0xd9, 0x67, 0x29, 0x3c, 0xfb, 0xc1, 0xc2, 0x4a, 0x8d, 0xbc, 0x90, 0x9a, 0xcd, 0x78}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0xee, 0xf6, 0x2e, 0xef, 0x76, 0x89, 0x30, 0x4a, 0x84, 0xd5, 0xa7, 0x97, 0xb6, 0xc8, 0x9c, 0xfc, 0xc3, 0xc6, 0xd8, 0x30, 0x74, 0x8, 0xb5, 0x6e, 0x92, 0x38, 0x2d, 0xb6, 0x35, 0xeb, 0x38}} return a, nil } -var _lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4d\x6b\xbb\x40\x10\xc6\xef\x7e\x8a\xc1\x43\x50\xf8\x23\xff\x43\xe9\x21\x34\x0d\x69\x5e\xda\x92\x10\x83\xa6\x6f\xc7\x89\x8e\x51\x34\xbb\x32\xae\x68\x29\xf9\xee\x45\xd7\xbc\x96\x1e\xbb\x97\x05\xf7\x99\x67\x7e\xf3\x38\xc9\x2e\x97\xac\x60\x21\x83\x94\xc2\xb5\x4c\x49\x14\x10\xb1\xdc\xc1\xff\x7a\xe1\x8e\xe7\xd3\xc9\xda\x9d\x4f\x97\xa3\xc9\xc4\x9b\xfa\xbe\xd1\xa9\x7d\x85\x69\x22\xb6\x2b\x96\xf5\xe7\x41\xed\xaf\x47\xf3\xe7\xe5\xe3\xca\x73\xdf\x3f\xae\xe4\xb3\x52\x6c\x93\x4d\x46\xad\xbd\xd6\x9b\x17\xdf\x4c\xc3\x50\x8c\xa2\xc0\x40\x25\x52\x58\xb8\x93\xa5\x50\x7d\x78\x99\x25\xf5\xed\x8d\x0d\x5f\x86\x01\x00\x90\x91\x82\x58\x66\x21\xb1\x47\x51\x1f\xb0\x54\xb1\x75\xce\xed\xb4\x97\x9b\x13\x63\x63\x53\xfc\xbb\x6c\xec\xbc\x25\x2a\x0e\x19\x2b\x1b\x7a\x3f\xcb\x9e\x5a\x63\xdd\x28\x67\xca\x91\xc9\xc2\x20\xd0\x20\x6d\xab\x07\xc9\x2c\xab\x57\xcc\x4a\xb2\xa1\x37\xd2\x6f\x0d\x1c\x74\xa7\xa0\x2c\x72\x8e\x80\x30\x80\xae\xde\x29\x94\x64\xdc\x92\xb3\x69\x1d\xee\xfe\x02\xfc\xde\x6a\x62\xed\xc3\x6f\xef\xbe\x46\x58\xa1\x8a\xed\x23\x70\x73\x86\x43\xc8\x51\x24\x81\x65\x8e\x65\x99\x85\x20\xa4\x02\xcd\x09\x4c\x11\x31\x89\x80\x40\x49\x38\xf3\x32\xb5\xc3\x5e\x87\x45\x35\x05\xa5\xa2\xb3\x1c\x9a\xff\x54\x28\x4c\x89\xf5\x82\x0c\xae\x92\xe9\x72\xf0\x5b\x89\x65\x1b\xa7\x00\x4f\x45\x4e\xd5\xcd\xec\x51\x85\x1c\x1e\x46\x3a\xae\x86\xbe\x0f\x20\x7b\xe3\x3b\x00\x00\xff\xff\xaf\x17\x1b\xe7\xc7\x02\x00\x00" +var _lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x6b\x83\x40\x10\xc5\xef\xfb\x29\x06\x0f\x41\xa1\x78\x2a\x3d\x84\xa6\xa1\x2d\x84\x1e\x0a\x0d\x49\xff\x9c\x27\xeb\x18\x25\x66\x47\xc6\x11\x53\x4a\xbe\x7b\xd1\x35\xc6\xb4\xf4\xd8\xbd\x2c\xcc\xce\xbc\xf7\x9b\xa7\xf9\xbe\x64\x51\x78\x66\xbb\xa3\xe4\x95\x77\xe4\x2a\x48\x85\xf7\x10\x8c\x4b\x81\xe9\xfb\x16\xb5\xdb\xe6\x9b\x82\xba\x72\xdf\x78\x51\x0b\x8c\x51\x41\x57\xa1\xd5\x9c\x5d\x88\x7b\xae\x9d\x4e\xe1\x6d\x91\x1f\x6e\xae\x23\xf8\x32\x06\x00\xa0\x20\x85\x8c\x8b\x84\x64\x45\xe9\x14\xb0\xd6\x2c\x1c\xfb\xc5\xdd\xf5\x52\x92\x60\x2b\x53\x5d\x5d\x1a\xc7\x1f\xb9\x66\x89\x60\x13\xc1\xe4\xf7\xd8\x53\x27\xec\x8d\x4a\xa1\x12\x85\x42\xb4\xd6\x83\x74\x56\x0f\x2c\xc2\xcd\x3b\x16\x35\x45\x30\xb9\xf7\x6f\x2d\x1c\xf4\xa7\xa2\x22\x8d\x07\x40\x98\x41\x3f\x1f\x57\xca\x82\x5b\x8a\x37\x9d\xc2\xed\x7f\x80\xdf\x85\x6d\xac\x53\xf8\xeb\x7d\xed\x11\x96\xa8\x59\x34\x00\xb7\x67\x3e\x87\x12\x5d\x6e\xc3\xe0\x91\xeb\x22\x01\xc7\x0a\x9e\x13\x84\x52\x12\x72\x96\x40\x19\x46\x5a\x81\x57\x38\xfa\xb0\xe8\x40\xb6\x56\x1a\xe5\xd0\x7e\xa7\x4a\x71\x47\xb2\x14\x3e\x7c\xc2\xec\x47\x32\x7d\x0e\xeb\xae\x25\x8c\xcc\x39\xc0\xf3\x50\xdc\xf4\x3b\xaf\xa8\x41\x49\x4e\x2b\x0d\xbf\x86\xbf\x4f\x20\x47\xf3\x1d\x00\x00\xff\xff\x3e\x0d\x58\x54\x92\x02\x00\x00" func lockedtokensStakerWithdraw_rewarded_tokens_lockedCdcBytes() ([]byte, error) { return bindataRead( @@ -4480,11 +4459,11 @@ func lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x25, 0x86, 0x34, 0xa6, 0x2e, 0xc3, 0xda, 0xba, 0x62, 0x15, 0x19, 0x67, 0xc5, 0x60, 0xa3, 0xb5, 0x8a, 0xeb, 0xa4, 0xe5, 0xef, 0xc, 0x40, 0xe1, 0x2a, 0xcf, 0x9, 0x47, 0xbb, 0xa9, 0xed, 0x6b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x13, 0xa5, 0xaf, 0x96, 0x28, 0x9e, 0xf5, 0x9, 0x1d, 0x5, 0x22, 0x6d, 0x55, 0xb5, 0x0, 0x1e, 0x47, 0xd, 0x10, 0x2b, 0x1b, 0xe6, 0x12, 0x5c, 0x4b, 0xc4, 0x95, 0x48, 0xf8, 0x64, 0x8c, 0x43}} return a, nil } -var _lockedtokensStakerWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4b\x6b\xeb\x30\x10\x85\xf7\xfe\x15\x83\x17\xc1\x86\x8b\xb9\x8b\xcb\x5d\x84\xa6\x21\xcd\xa3\x2d\x09\x71\x88\x93\x3e\x96\x8a\x3d\x8e\x8d\x1d\xc9\x8c\xc7\xc4\xa5\xe4\xbf\x17\x4b\xce\xb3\x74\x59\x6d\x04\xd2\x99\x33\x9f\x8e\x26\xdd\x15\x8a\x18\x66\x2a\xcc\x30\x5a\xa9\x0c\x65\x09\x31\xa9\x1d\xfc\xad\x67\xfe\x70\x3a\x1e\xad\xfc\xe9\x78\x3e\x18\x8d\x96\xe3\x20\xb0\x5a\x75\xc0\x22\x4b\xe5\x76\x41\xaa\xfe\x38\xaa\x83\xd5\x60\xfa\x3c\x7f\x5c\x2c\xfd\xb7\xf7\x1b\xf9\xa4\x92\xdb\x74\x93\xa3\xb6\x37\x7a\xfb\xea\xcc\xb6\x2c\x26\x21\x4b\x11\x72\xaa\xa4\x23\x76\xaa\x92\xdc\x85\xf5\x24\xad\xff\xff\x73\xe1\xd3\xb2\x00\x00\x72\x64\x48\x54\x1e\x21\x2d\x31\xee\x82\xa8\x38\x71\x2e\xb9\x3d\xbd\xf9\x05\x92\x68\x6c\xca\x3f\xd7\x8d\xbd\xd7\x94\x93\x88\xc4\xde\x85\xce\xf7\xb2\x27\x6d\x6c\x1a\x15\x84\x85\x20\x74\x44\x18\x1a\x10\xdd\xea\x41\x11\xa9\xfd\x8b\xc8\x2b\x74\xa1\x33\x30\x77\x0d\x1c\xb4\xab\xc4\x3c\xf6\x4e\x80\xd0\x83\xb6\xde\x2b\x59\x91\xd8\xa2\xb7\xd1\x0e\x77\xbf\x01\x7e\xef\x34\xb1\x76\xe1\xa7\xfb\xc0\x20\x2c\x04\x27\xee\x09\xb8\x59\xfd\x3e\x14\x42\xa6\xa1\x63\x0f\x55\x95\x47\x20\x15\x83\xe1\x04\xc2\x18\x09\x65\x88\xc0\x0a\x2e\xbc\x6c\xe3\x70\x30\x61\x61\x8d\x61\xc5\x78\x91\x43\xf3\x4f\x25\x8b\x0c\xc9\x0c\x48\xef\x26\x99\x36\x87\x40\x4b\x1c\xd7\x3a\x07\x78\x2e\xf2\xf6\xed\x9b\xd7\x52\x9f\xb6\x4f\x3a\x8d\x86\xd9\x8f\x20\x07\xeb\x2b\x00\x00\xff\xff\x80\x23\xab\xc9\xc7\x02\x00\x00" +var _lockedtokensStakerWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6b\xe3\x40\x0c\x85\xef\xf3\x2b\x84\x0f\xc1\x86\xc5\xa7\x65\x0f\x61\xb3\x61\x5b\x08\x3d\x14\x1a\x9a\xa6\x3d\x2b\x63\x39\x36\x71\x46\x46\x96\x49\x4a\xc9\x7f\x2f\x9e\x99\x26\x4e\x4b\x8f\x9d\xcb\x80\x46\x7a\xef\xd3\xb3\xeb\x7d\xcb\xa2\x70\xcf\x76\x47\xc5\x13\xef\xc8\x75\x50\x0a\xef\x21\x19\x97\x12\x13\xfb\x16\xbd\xdb\xd6\x9b\x86\x7c\x39\x36\x5e\xd5\x12\x63\x54\xd0\x75\x68\xb5\x66\x97\xe2\x9e\x7b\xa7\x53\x58\x2f\xea\xe3\x9f\xdf\x19\xbc\x19\x03\x00\xd0\x90\x42\xc5\x4d\x41\xf2\x48\xe5\x14\xb0\xd7\x2a\x1d\xfb\xe5\xfe\x7a\x68\x49\x70\x90\xe9\x7e\x5d\x1b\xe7\x2f\xb5\x56\x85\xe0\x21\x83\xc9\xd7\xb1\x3b\x2f\x1c\x8c\x5a\xa1\x16\x85\x52\xb4\x36\x80\x78\xab\x1b\x16\xe1\xc3\x33\x36\x3d\x65\x30\xf9\x1f\xde\x06\x38\x88\xa7\xa3\xa6\xcc\xcf\x80\x30\x83\x38\x9f\x77\xca\x82\x5b\xca\x37\x5e\xe1\xef\x4f\x80\xff\x4b\x87\x58\xa7\xf0\xdd\xfb\x2a\x20\x2c\x51\xab\xec\x0c\x3c\x9c\xf9\x1c\x5a\x74\xb5\x4d\x93\x5b\xee\x9b\x02\x1c\x2b\x04\x4e\x10\x2a\x49\xc8\x59\x02\x65\x18\x69\x25\x41\xe1\x14\xc2\xa2\x23\xd9\x5e\x69\x94\xc3\xf0\x9d\x3a\xc5\x1d\xc9\x52\xf8\xf8\x0a\xb3\x4f\xc9\xc4\x1c\x56\xbe\x25\xcd\xcc\x25\xc0\xcb\x50\x7e\x88\x3b\xaf\x9d\xaf\xc6\x95\xce\xbf\x46\xb8\x3f\x40\x4e\xe6\x3d\x00\x00\xff\xff\x11\x39\xe8\x7a\x92\x02\x00\x00" func lockedtokensStakerWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4500,11 +4479,11 @@ func lockedtokensStakerWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc, 0x11, 0xde, 0xf4, 0x53, 0xf1, 0x44, 0x19, 0x17, 0xd1, 0x91, 0x27, 0x12, 0xc9, 0xe4, 0x4f, 0xc6, 0xda, 0x2, 0xec, 0xb5, 0xae, 0x1f, 0x0, 0x90, 0x2d, 0xe2, 0x22, 0x84, 0x67, 0x54, 0x40}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0x46, 0x2b, 0xa7, 0xad, 0xfb, 0xcd, 0x79, 0xce, 0xdd, 0xec, 0x78, 0xff, 0x7c, 0x42, 0x3d, 0x6e, 0x19, 0xe, 0x4c, 0x1f, 0x75, 0xdb, 0xd5, 0x69, 0xe9, 0x9c, 0xc8, 0x54, 0xbd, 0x4f, 0xcb}} return a, nil } -var _lockedtokensUserDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x92\x3f\x6f\xdb\x30\x10\xc5\x77\x7d\x8a\x83\x06\x43\x1a\xaa\x74\x28\x3a\x18\x69\x83\x34\x76\x50\x20\x41\x53\xc4\x6e\x3a\x5f\xa8\x53\x44\x84\xe6\x09\xe4\x31\x76\x51\xf8\xbb\x17\xa4\xfe\xa0\x1a\x34\x84\x0b\x21\xde\xbb\x7b\xbf\x47\x51\x1f\x3a\x76\x02\xb7\xc1\xbe\xe8\x67\x43\x7b\x7e\x25\x0b\x8d\xe3\x03\xe4\xb3\xb3\x3c\x1b\x95\x86\x8f\x33\xd5\xf8\x3d\x29\xee\x59\xbd\x52\x9d\xce\x7c\x2f\xfa\x78\xba\x7f\xb8\xb9\xdb\x6e\xf6\x0f\x77\xdb\x1f\xd7\x9b\xcd\xe3\x76\xb7\xcb\x32\x71\x68\x3d\x2a\xd1\x6c\x0b\x3c\x70\xb0\xb2\x86\x5f\xb7\xfa\xf4\xf9\x53\x09\x7f\xb3\x0c\x00\xc0\x90\x40\xcb\xa6\x26\xf7\x48\xcd\x1a\x56\xff\x8f\xae\xd2\xf6\x3d\x55\x27\xf1\x1b\x06\x23\x49\x8b\x41\xda\x62\x16\xa1\xfa\xad\xa5\xad\x1d\x1e\x4b\x58\x4d\xd4\xd5\x53\xec\xe8\xdd\x3a\x47\x1d\x3a\x2a\x50\x29\x19\x06\x7c\x63\xe7\xf8\xf8\x84\x26\x50\x09\xab\x6b\xa5\x22\x66\xc4\x83\x61\x79\x32\x4d\x35\x21\xc2\x17\x88\xcd\x95\x17\x76\xf8\x42\xd5\x73\x6a\xbf\x5c\xe4\xfe\x5a\xc4\xfb\x59\xc3\x52\x7d\xd7\xcf\xf9\x89\xd2\x96\x93\x65\x5c\x57\x57\xd0\xa1\xd5\xaa\xc8\xf7\x2d\x41\xe7\xf4\x01\xdd\x1f\x08\x9e\x5c\x04\x88\x90\x50\x33\x79\xb0\x2c\xd0\xe2\x1b\x01\x5a\x40\xef\x59\x69\x14\xaa\xc1\x24\xbf\x51\x9a\x97\xd9\x3c\xcf\x78\x8b\x0b\x71\xde\x75\xb5\x63\xc4\x8b\x61\xc8\x45\x33\xd6\x53\x79\x29\xd6\x0d\x07\x53\x27\xfc\xde\x14\x62\x1b\x48\x7a\x78\x09\x0f\x1c\x35\x79\xdf\x7d\xee\xf1\xe9\x44\x2a\x08\x2d\xfe\x9c\xaa\xa6\x8e\xbd\x96\x01\xe8\xf2\xc3\x2c\x6b\x75\x1c\x22\x4c\x6f\xb1\xdf\xcb\xd1\xe3\x9c\xfd\x0b\x00\x00\xff\xff\x24\x0f\x94\xd3\x2c\x03\x00\x00" +var _lockedtokensUserDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x92\xbf\x6e\xdc\x30\x0c\xc6\x77\x3f\x05\xe1\xe1\x60\x0f\x55\x96\xa2\xc3\x21\x6d\xd0\x16\x08\x3a\x74\x28\xda\x34\x9d\x19\x99\x8e\x85\x93\x45\x43\xa2\xce\x57\x14\xf7\xee\x85\xe4\x3f\x38\x0f\x1e\xa2\x45\x30\xf9\x91\xfc\x7d\xb4\x4c\x3f\xb0\x17\x78\x8c\xee\xd5\xbc\x58\x7a\xe2\x13\x39\x68\x3d\xf7\x50\x6e\x62\x65\xb1\x28\x2d\x8f\x1b\xd5\xf2\xbd\x2a\xbe\xb3\x3e\x51\x93\x63\x61\x16\xdd\x86\xca\xa2\x10\x8f\x2e\xa0\x16\xc3\xae\xc2\x9e\xa3\x93\x23\xfc\x7e\x34\x97\x0f\xef\x6b\xf8\x57\x14\x00\x00\x96\x04\x3a\xb6\x0d\xf9\x9f\xd4\x1e\xe1\x70\xdb\x41\xe5\xeb\x5b\xce\xae\xe2\x33\x46\x2b\x59\x8b\x51\xba\x6a\x03\xaf\xfe\x18\xe9\x1a\x8f\x63\x0d\x87\x95\x57\x3d\xa7\x8a\x69\xda\xe0\x69\x40\x4f\x15\x6a\x2d\x73\x83\x2f\xec\x3d\x8f\xcf\x68\x23\xd5\x70\xf8\xac\x75\xc2\x4c\x78\x30\x9f\x40\xb6\x55\x2b\x22\x7c\x84\x54\xac\x82\xb0\xc7\x57\x52\x2f\xb9\xfc\x7e\x97\xfb\x53\x95\x36\x73\x84\xbd\xfc\xaf\xa9\xcf\x0f\x94\xae\x5e\x47\xa6\xf3\xf0\x00\x03\x3a\xa3\xab\xf2\xa9\x23\x18\xbc\xe9\xd1\xff\x85\x18\xc8\x27\x80\x04\x09\x0d\x53\x00\xc7\x02\x1d\x9e\x09\xd0\x01\x86\xc0\xda\xa0\x50\x03\x36\xcf\x5b\xa4\x65\x5d\x6c\xfd\x2c\x5b\xdc\xb1\xf3\xa6\xd5\x2e\x16\xef\xe6\x26\x77\xed\x92\xcf\xe9\x3d\x5b\x5f\x39\xda\x26\xe3\x4f\x43\x21\x95\x81\xe4\x27\x97\xf1\xc0\x53\x5b\x4e\xd5\xd7\x09\x9f\x2e\xa4\xa3\xd0\xee\xcf\x51\x0d\x0d\x1c\x8c\xcc\x40\xf7\xef\x36\x5e\xd5\x38\x5b\x58\xdf\xe2\x74\xd7\xcb\x8c\x6b\xf1\x3f\x00\x00\xff\xff\x06\xda\x11\x7f\x26\x03\x00\x00" func lockedtokensUserDeposit_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4520,11 +4499,11 @@ func lockedtokensUserDeposit_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/deposit_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x1f, 0x6a, 0xd9, 0xd0, 0xf3, 0x38, 0x62, 0xfc, 0x28, 0x71, 0xaa, 0xf0, 0x12, 0x5e, 0x71, 0xe6, 0x2a, 0xd1, 0x88, 0x47, 0xa9, 0x1f, 0x46, 0x62, 0x8d, 0xaf, 0xff, 0x92, 0xe, 0xf2, 0xec}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0xa5, 0xe5, 0x96, 0x71, 0x49, 0x43, 0x2c, 0x42, 0xb0, 0x75, 0x57, 0xe2, 0x55, 0x9a, 0x95, 0xfe, 0xf3, 0xec, 0xdf, 0x91, 0x6e, 0x41, 0x44, 0xc, 0x5b, 0x1, 0x46, 0x8e, 0x83, 0xab, 0xd7}} return a, nil } -var _lockedtokensUserGet_locked_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x6a\xeb\x30\x10\x45\xf7\xfa\x8a\x4b\x16\x0f\x7b\x63\xde\xba\xb4\x0d\x26\x36\xb4\xc4\x34\x21\xc9\x0f\xc8\xf2\x38\x15\x91\x35\x46\x1a\xd3\x42\xe9\xbf\x97\xd8\xa9\xdb\xb4\x9d\x8d\x84\x98\x73\x8f\x66\x6c\xd7\x73\x10\x54\x6c\x4e\xd4\x1c\xf8\x44\x3e\xa2\x0d\xdc\xe1\xff\x6b\xb5\x59\xad\xcb\xe2\xb0\x59\x97\x4f\x79\x51\xec\xca\xfd\x5e\x29\x6d\x0c\xc5\x98\x68\xe7\x52\xb4\x83\x47\xa7\xad\x4f\xb4\x31\x3c\x78\xb9\x41\xde\x34\x81\x62\x4c\xe7\x1b\xde\x94\x02\x00\x47\x02\x37\x2a\xf2\xa9\xf7\xd1\xb7\xbc\xa3\x16\x77\x38\x92\x5c\xde\x3e\x73\xd2\x11\x39\x57\x66\x74\xaf\x6b\xeb\xac\x58\x8a\x59\xcd\x21\xf0\xcb\xed\xbf\xef\x7f\xcd\xc6\xe3\x81\x5d\x43\xe1\x3e\x99\xc1\x73\x5d\xb5\x55\x3f\xe5\xdb\xa1\x76\xd6\x6c\xb5\x3c\xcf\xd0\x97\x77\xb9\x44\xaf\xbd\x35\xc9\x62\xc5\x83\x6b\xe0\x59\x30\xd9\xa1\x11\xa8\xa5\x40\xde\x10\x84\xd1\x8f\x31\xf8\x15\xbf\x48\xa7\xc1\x03\xc9\x10\xfc\x9f\xb3\x67\x47\x92\x2b\xee\xb2\xb3\x24\x55\xef\xea\x23\x00\x00\xff\xff\xa3\x13\x04\x31\x97\x01\x00\x00" +var _lockedtokensUserGet_locked_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x4e\xc3\x30\x0c\x86\xef\x79\x8a\x5f\x3d\xa0\xf6\xd2\x07\x40\xc0\x34\x71\x01\x69\x87\x09\xf1\x02\x69\xe2\x8c\x68\x69\x5c\x39\x8e\x38\x20\xde\x1d\xad\x1d\x65\x03\x7c\x49\x64\xf9\xfb\xfe\x38\x71\x9c\x58\x14\x3b\x76\x47\xf2\xaf\x7c\xa4\x5c\x10\x84\x47\x34\x97\xad\xc6\x18\xeb\x1c\x95\xd2\xda\x94\x3a\x84\x9a\x31\xda\x98\x5b\xeb\x1c\xd7\xac\xb7\xd8\x7a\x2f\x54\x4a\xb7\xde\xf0\x61\x0c\x00\x24\x52\xa4\xd9\xb4\x5d\x66\x9f\x73\xe0\x17\x0a\xb8\xc7\x81\xf4\xdc\xfb\xf6\x74\x33\x72\xaa\xde\xd9\xc9\x0e\x31\x45\x8d\x54\xfa\x81\x45\xf8\xfd\xee\xe6\xf2\x49\xfd\x7c\x3c\x71\xf2\x24\x0f\xed\x0a\x9e\xea\x6a\x6c\xf7\x3b\x7c\x5f\x87\x14\xdd\xde\xea\xdb\x0a\xfd\xe4\x6e\x36\x98\x6c\x8e\xae\x6d\x1e\xb9\x26\x8f\xcc\x8a\x25\x1d\x16\x42\x81\x84\xb2\x23\x28\x63\x9a\x35\xf8\xa3\x6f\xba\x65\x71\x21\xad\x92\xff\xdd\xbd\x3f\x90\x5e\x71\xe7\x3f\x6b\x3b\xf3\x69\xbe\x02\x00\x00\xff\xff\x5f\x74\xcf\x97\x91\x01\x00\x00" func lockedtokensUserGet_locked_account_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -4540,11 +4519,11 @@ func lockedtokensUserGet_locked_account_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_locked_account_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa0, 0xee, 0x12, 0xd0, 0xaf, 0x24, 0x3e, 0x2a, 0xd, 0xb3, 0xdd, 0x7d, 0x78, 0x32, 0xfa, 0x16, 0xeb, 0xd5, 0x9c, 0xf6, 0x40, 0x13, 0x2f, 0x48, 0x2f, 0x17, 0xdb, 0x35, 0x9, 0x8, 0x30, 0x40}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x1c, 0x7f, 0x55, 0xaa, 0x4, 0xd5, 0x1d, 0x5b, 0xbd, 0xdf, 0x3f, 0x2f, 0xe4, 0x4f, 0x2f, 0x22, 0x93, 0x27, 0x85, 0x4b, 0x23, 0x56, 0xaf, 0x5e, 0xc5, 0xd, 0x28, 0x5f, 0xee, 0x60, 0x44}} return a, nil } -var _lockedtokensUserGet_locked_account_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xf3\x40\x10\x86\xef\xfb\x2b\x5e\x7a\xf8\x48\x2e\xe1\x3b\x88\x87\xa2\x96\xda\x46\x94\x06\x5b\xda\xfa\x03\x26\x9b\x49\x5d\xba\xd9\x09\xbb\x1b\x2c\x88\xff\x5d\x9a\x68\xb5\xea\x5c\x16\x96\x79\xde\x67\x5e\xd3\xb4\xe2\x23\x0a\xd1\x7b\xae\xb6\xb2\x67\x17\x50\x7b\x69\xf0\xff\x50\x2c\x67\x8b\x7c\xbe\x5d\x2e\xf2\xc7\xe9\x7c\xbe\xce\x37\x1b\xa5\x48\x6b\x0e\x21\x21\x6b\x53\xd4\x9d\x43\x43\xc6\x25\xa4\xb5\x74\x2e\x8e\x31\xad\x2a\xcf\x21\xa4\x63\x3c\xdd\x99\xc3\xe5\x05\x5e\x95\x02\x00\xcb\x11\xb6\x37\x4c\x87\xd5\x07\x57\xcb\x9a\x6b\x5c\x63\xc7\xf1\xe3\xef\x33\x26\xed\x91\xe3\x64\x9a\x5a\x2a\x8d\x35\xd1\x70\xc8\x4a\xf1\x5e\x5e\xae\xfe\x7d\x3f\x35\xeb\x9f\x7b\xb1\x15\xfb\x9b\xe4\x04\x1e\xe7\x6c\xad\xf8\x29\x5f\x75\xa5\x35\x7a\x45\xf1\xf9\x04\x7d\x79\x27\x13\xb4\xe4\x8c\x4e\x46\x33\xe9\x6c\x05\x27\x11\x83\x1d\x04\xcf\x35\x7b\x76\x9a\x11\x05\x6d\x1f\x83\x5f\xf1\xa3\x74\x28\xee\x39\x76\xde\xfd\xd9\x3d\xdb\x71\x3c\xe3\x6e\xc9\x92\xd3\x9c\xa4\xea\x4d\xbd\x07\x00\x00\xff\xff\x51\xcf\xd0\xa1\x96\x01\x00\x00" +var _lockedtokensUserGet_locked_account_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4a\xc3\x40\x10\x86\xef\xfb\x14\x3f\x39\x48\x72\xc9\x49\x3c\x14\xb5\x54\x41\x14\x7a\x28\xa2\x0f\x30\xd9\x4c\xea\xd2\xcd\x4e\x98\x9d\xa0\x20\xbe\xbb\x34\xd1\xda\xaa\x73\x59\x18\xe6\xfb\xfe\xfd\x43\x3f\x88\x1a\xd6\xe2\x77\xdc\x3e\xc9\x8e\x53\x46\xa7\xd2\xa3\x38\x5e\x15\xce\x91\xf7\x9c\x73\x49\x31\x56\xe8\xc6\x84\x9e\x42\x2a\xc9\x7b\x19\x93\x2d\xb0\x6a\x5b\xe5\x9c\xab\x05\x9e\xef\xc2\xdb\xc5\x39\xde\x9d\x03\x80\xc8\x86\x38\x89\x56\xf3\xe9\x43\xea\xe4\x91\x3b\x5c\x61\xcb\xf6\xb5\xfb\xd6\x54\x13\xb2\x9f\xda\xd3\x40\x4d\x88\xc1\x02\xe7\xba\x11\x55\x79\xbd\x3c\x3b\xfe\x51\x3d\x3d\xf7\x12\x5b\xd6\xeb\xf2\x00\xee\xe7\xe4\x6c\xfd\x3b\x7c\x33\x36\x31\xf8\x0d\xd9\xcb\x01\xfa\xc9\x5d\x2e\x31\x50\x0a\xbe\x2c\x6e\x65\x8c\x2d\x92\x18\xe6\x74\x10\x94\x3b\x56\x4e\x9e\x61\x82\x61\xd2\xe0\x8f\xbe\xa8\xe6\xe2\xca\x36\x6a\xfa\xb7\x7b\xbd\x65\x3b\xe1\x6e\x28\x52\xf2\x5c\x56\xee\xc3\x7d\x06\x00\x00\xff\xff\xf4\x54\xe0\xd6\x90\x01\x00\x00" func lockedtokensUserGet_locked_account_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -4560,11 +4539,11 @@ func lockedtokensUserGet_locked_account_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_locked_account_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0xb9, 0x88, 0x9f, 0x36, 0x87, 0x86, 0x21, 0x2f, 0xd1, 0x89, 0x78, 0xd, 0x96, 0x5d, 0xe1, 0xdf, 0x4, 0x17, 0x7d, 0x6e, 0xab, 0xa8, 0x39, 0x91, 0x2b, 0x5e, 0x13, 0xc9, 0xdd, 0xf3, 0x43}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x2d, 0x23, 0x62, 0x8e, 0xdd, 0x89, 0x34, 0xc5, 0x3e, 0x78, 0xc5, 0xcd, 0x35, 0x2e, 0xcf, 0xa3, 0x3a, 0xed, 0x97, 0x92, 0x6e, 0x8, 0x74, 0x90, 0x9d, 0x36, 0x9d, 0x94, 0xe3, 0xc0, 0x6d}} return a, nil } -var _lockedtokensUserGet_multiple_unlock_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x4f\x6f\xe2\x30\x14\xc4\xef\xfe\x14\x23\x0e\xab\xe4\x12\xed\x61\xb5\x07\x54\x8a\x10\x50\xb5\x22\x2a\x88\x3f\x27\xc4\xc1\x38\x2f\xd4\xc2\xf1\x8b\x6c\xa7\x45\x42\x7c\xf7\x2a\x09\xb4\x4d\xdb\x77\x49\xe4\x79\x33\xfe\x79\x74\x51\xb2\x0b\x48\x59\x1d\x29\x5b\xf3\x91\xac\x47\xee\xb8\xc0\xdf\x53\x3a\x1f\xcf\xa6\x93\xf5\x7c\x36\x7d\x1e\x4d\x26\xcb\xe9\x6a\x25\x84\x54\x8a\xbc\x8f\xa4\x31\x31\xf2\xca\xa2\x90\xda\x46\x52\x29\xae\x6c\xf0\x7d\x6c\x47\x59\xe6\xc8\xfb\x5d\xdc\xc7\x76\xf3\xa0\x4f\xff\xff\xed\x70\x16\x02\x00\x5e\xa5\x83\xd1\x85\x6e\xf6\x6e\xda\x00\xdb\x5d\x2b\xe7\xec\x70\x0d\x82\xb6\xb7\x5f\x8f\x73\xa3\xd6\x63\x28\xc0\x34\x9c\xa3\x56\x7c\xb2\x39\x2f\x29\xc7\x00\x07\x0a\xd7\xb3\x1b\x4c\xfc\x61\xab\x27\x51\xb2\x94\x7b\x6d\x74\xd0\xe4\x93\x3d\x3b\xc7\x6f\x77\x7f\xbe\x3e\x3a\x69\x3e\x8f\x6c\x32\x72\xf7\x51\xc7\x5c\x4f\x67\x35\xfd\x0e\xb1\xa8\xf6\x46\xab\x85\x0c\x2f\x1d\x63\x97\x61\x38\x44\x29\xad\x56\x51\x6f\xcc\x95\xc9\x60\x39\xa0\x25\x81\x84\xa3\x9c\x1c\x59\x45\x08\x8c\xb2\x89\xc3\x8f\x6b\x7a\xb1\xf8\x2c\xa3\x69\x32\x91\x65\x49\x36\x8b\x7e\xab\x25\x39\x50\xd8\xd8\x5a\x49\xeb\xdd\x28\x6e\x71\x2e\x6d\x86\xa3\x50\x39\x7b\x8d\x11\x17\xf1\x1e\x00\x00\xff\xff\x91\x29\xc0\x8b\x08\x02\x00\x00" +var _lockedtokensUserGet_multiple_unlock_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x6b\xfb\x30\x10\xc5\x77\x7d\x8a\x87\x87\x3f\xf6\xe2\xe9\x4f\x87\xd0\x34\x84\x42\x69\x21\x43\x28\xcd\x14\x32\x28\xf2\x39\x15\x91\x75\xe6\x24\xb7\x85\x90\xef\x5e\x2c\xc7\x6d\xdc\xf6\x16\x89\x7b\x77\x4f\x3f\x3d\xdb\xb4\x2c\x11\x2b\x36\x47\xaa\x5e\xf8\x48\x3e\xa0\x16\x6e\x90\x5d\xb7\x32\xa5\xb4\x31\x14\x42\xae\x9d\x2b\x50\x77\x1e\x8d\xb6\x3e\xd7\xc6\x70\xe7\x63\x98\x61\xbb\xac\x2a\xa1\x10\x76\xc5\x0c\xdb\xcd\x83\xfd\xb8\xf9\xbf\xc3\x49\x29\x00\x78\xd3\x02\x67\x1b\x9b\xe6\x46\x6d\x8e\xed\x6e\x90\x6b\x16\x5c\x8c\x60\xfd\x78\x0d\x38\x25\xb5\x2f\x47\x11\x2e\xe1\x2c\x07\xf1\xc9\xd7\xfc\x4c\x35\xe6\x38\x50\xbc\xf4\x46\x98\xe2\x6b\xad\xaf\xd2\xe8\x56\xef\xad\xb3\xd1\x52\x28\xf7\x2c\xc2\xef\xb7\xff\xae\xff\x56\xa6\xe3\x91\x5d\x45\x72\x97\x4f\x96\xfb\x9a\x8c\xae\x7e\x42\xac\xbb\xbd\xb3\x66\xad\xe3\xeb\x64\x71\xca\xb0\x58\xa0\xd5\xde\x9a\x3c\xbb\xe7\xce\x55\xf0\x1c\x31\x90\x40\x43\xa8\x26\x21\x6f\x08\x91\xd1\x26\x3b\xfc\x7a\x26\x2b\xd4\x77\x18\x29\xc9\x52\xb7\x2d\xf9\x2a\xff\x2b\x96\xf2\x40\x71\xe3\x7b\x65\xd5\xcf\xe6\xc5\x80\x73\x1e\x3c\x84\x62\x27\xfe\x62\xa3\xce\xea\x33\x00\x00\xff\xff\x76\x76\x5f\x52\x02\x02\x00\x00" func lockedtokensUserGet_multiple_unlock_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -4580,11 +4559,11 @@ func lockedtokensUserGet_multiple_unlock_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_multiple_unlock_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0x67, 0x4, 0xcc, 0x3e, 0xbe, 0x5b, 0x53, 0xa4, 0xb6, 0x1c, 0xf7, 0xd3, 0x66, 0x9e, 0x8c, 0xf2, 0x8b, 0x61, 0xd4, 0xf, 0x31, 0xa, 0x4, 0x1d, 0xb2, 0x4b, 0x2e, 0x47, 0x83, 0xbc, 0x45}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0xe, 0xa9, 0x44, 0x29, 0x58, 0xa8, 0xea, 0x68, 0x48, 0xe8, 0xbc, 0x31, 0xbe, 0x7d, 0xc4, 0x5e, 0x8c, 0xb8, 0xaa, 0x3e, 0x37, 0xdb, 0xc9, 0xe, 0x63, 0xbd, 0xc1, 0xcf, 0x8b, 0x36, 0x1a}} return a, nil } -var _lockedtokensUserGet_total_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\xcb\x6e\xdb\x30\x10\xbc\xeb\x2b\x16\x39\xb4\x12\x6a\xc8\x39\x14\x3d\x18\x75\x00\xb7\x4a\x5a\x23\x46\x1c\x24\x6e\x7b\xa6\x44\xca\x26\x42\x93\x02\x49\x25\x29\x02\xff\x7b\x21\x51\xa4\x45\x59\x72\x5e\xd5\xc1\x0f\x72\x76\x67\xb8\xb3\x5c\xd1\x6d\x21\xa4\x86\x8b\x92\xaf\x69\xca\xc8\x4a\xdc\x11\x0e\xb9\x14\x5b\x38\xf1\xd6\x4e\x02\x8b\x64\xe2\xc1\x43\xd9\xff\x1e\x62\x9e\xac\x50\xca\xc8\xad\x46\x77\x94\xaf\x5b\x50\x7f\xc3\xc5\x2c\x44\x76\x47\x70\x9d\x47\x19\xf4\xe9\xe3\x62\xf9\xfd\xf2\x3c\x59\x2d\x2f\xcf\xaf\x66\x49\x72\x73\x7e\x7b\x1b\x04\xe3\x31\xac\x36\x54\x81\xca\x24\x2d\x34\xac\x89\x56\xa0\x37\x04\x56\xcb\xd5\x6c\x01\xbc\xdc\xa6\x44\x82\xc8\xe1\x62\xb1\xfc\x03\x88\x03\xca\x32\x51\x72\x0d\xe2\x81\xab\x11\xa0\x4c\x0a\xa5\xa0\xe4\xac\xa6\x1b\x81\xfd\x46\x1c\x83\x32\x92\xe2\x9a\x64\x86\xb1\x82\xb2\xa8\x72\x2b\xd2\xe4\x55\x93\x7a\x4b\x1b\x91\x94\x03\x17\x72\x8b\x98\xe5\x38\xb6\x67\x93\x1f\xc5\x60\xc2\xc8\x1a\xe9\x03\x98\xda\x20\x49\x70\x3f\x8d\xbf\xd7\x4f\xd3\xc1\xb4\x68\x82\x00\x65\x19\x51\x2a\x44\x8c\x45\x90\x97\x1c\xb6\x88\xf2\x10\x61\x2c\x89\x52\x93\xaa\x0a\xd5\x8f\x68\x02\xbf\x2e\xe8\xe3\x97\xcf\xf0\x14\x04\x00\x00\xf7\x48\x82\x2a\xb7\x30\x85\xd3\xf8\xd4\x2c\x31\xa2\x1d\xc3\xb4\xf2\x65\x66\xfe\xd8\x64\x91\x81\xd1\xbc\x46\xde\xa3\x92\xe9\x1b\x92\xc3\xd4\x06\xc5\x19\x2a\x50\x4a\x19\xd5\x94\xa8\x38\x15\x52\x8a\x87\xaf\x1f\x5c\x73\xc5\xbf\xab\x88\xb3\x70\x5c\x94\x29\xa3\xd9\x38\xb7\x1b\xdf\x10\x43\x3c\x23\x11\x3c\xd5\xf9\xab\xc7\x28\xab\x3e\x3f\x39\xa2\x38\x35\xb8\x1a\xb4\x33\x5a\xc6\x63\xf8\x41\xb4\x29\x14\x34\xfb\xa6\xf7\xaa\x8e\xb2\x4d\x62\x05\x7e\x54\xc0\x05\x26\xb6\xc4\x50\x08\xc1\x94\x3b\xba\x28\x34\x15\x1c\xb1\x2b\x81\xeb\xde\x26\xd2\x3b\x9d\xd3\xd6\x7f\xcc\xa7\xc3\x9b\x11\xef\x33\x5d\xd7\x47\xde\x9d\x85\x2e\x4b\xf5\xbc\x20\xe4\x1a\xe9\x8d\x8b\xf1\x0d\xe0\x1d\x9d\xfd\xfa\xf7\x35\xb5\x31\x73\x9e\x0b\x98\x0e\x91\x57\xbb\x61\x0d\x4b\x26\x3e\x45\x4c\x71\xd4\x6b\x90\x4d\x1a\x6b\xa1\x11\x33\x03\x60\xce\x6f\x48\x26\x24\x0e\xa3\x77\xd9\xd5\x34\xba\x90\xcf\x78\x96\x58\xdc\xff\xb0\xcc\x25\xeb\x77\xad\xdd\xbf\x4d\x98\x8b\x18\xb0\x0a\xfb\xf2\x7a\x55\xfb\x46\xb9\x88\x61\xb7\x92\x36\xc4\x97\x68\xfd\x6b\xf3\xc6\x66\x71\xe4\x01\xf7\x34\x5d\x34\xc5\xad\xb3\xf4\xb9\xee\x29\x1c\xb2\xbe\xcf\xfc\x0d\x01\xdf\x67\x30\x05\x05\x67\xd2\xdf\x03\x7f\xcd\xbb\xa5\x99\x47\x15\xe1\x6b\x7c\x6e\xbf\x98\xe2\xfa\xeb\xa7\x60\x98\xc8\x8e\xaf\x1e\xec\x80\xf0\xd9\xeb\xc8\xfa\x25\x1e\x3d\xc1\xde\x73\xf3\xbe\xea\x2b\x4e\x7b\xea\x75\x3d\xe8\xe3\x8c\xd7\x44\x7b\x64\xcd\x78\x0d\x1b\xb9\x1d\x36\x7b\x0b\x45\x0e\x88\xb1\x7a\xe9\x70\x46\xee\xef\xa8\x2f\xce\x25\x6c\x8d\xa4\x79\x02\xd3\x41\x61\xf5\x84\x49\xc2\xf6\xa8\x7f\xc7\x68\x9a\x27\x91\x97\xe6\x95\x43\xa9\xd5\x9b\xcf\x17\x65\x60\x12\xbd\xb4\x32\xad\x8b\x76\xa4\x3c\xfb\x2b\x7d\x58\xa3\x97\x96\xd8\xe5\x18\xa8\xf5\x9b\x27\x8c\x5f\xf9\xd1\xc0\xec\xe8\x7a\xf2\xa6\xb1\xd1\x7a\x76\x81\xff\xab\x31\x4c\x12\x5d\x4a\x5e\xe5\x0c\x76\xc1\xbf\x00\x00\x00\xff\xff\xc8\xe7\x34\xd9\x01\x0b\x00\x00" +var _lockedtokensUserGet_total_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x4d\x6f\xdb\x38\x10\xbd\xeb\x57\x0c\x72\xd8\x95\xb0\x86\x9c\xc3\xa2\x07\xa3\x0e\x90\x42\x48\x6b\x20\x68\x82\xd4\x6d\xcf\x94\x48\xd9\x44\x68\x52\x20\xa9\xa4\x45\xe0\xff\x5e\x88\x14\x69\x52\x96\x9c\xaf\xea\xe0\x0f\xf2\xcd\xbc\xc7\x79\xc3\x11\xdd\x35\x42\x6a\xb8\x6a\xf9\x86\x96\x8c\xac\xc5\x3d\xe1\x50\x4b\xb1\x83\xb3\x68\xed\x2c\x71\x48\x26\x1e\x23\x94\xfb\x1f\x21\x56\xc5\x1a\x95\x8c\x7c\xd3\xe8\x9e\xf2\x4d\x00\x8d\x37\x7c\xcc\xb5\xa8\xee\x09\x36\x79\x54\x8f\x0e\x97\xce\x92\x64\x3e\x87\xf5\x96\x2a\x50\x95\xa4\x8d\x86\x0d\xd1\x0a\xf4\x96\xc0\xfa\x66\x7d\x79\x0d\xbc\xdd\x95\x44\x82\xa8\xe1\xea\xfa\xe6\x27\x20\x0e\xa8\xaa\x44\xcb\x35\x88\x47\xae\x66\x80\x2a\x29\x94\x82\x96\x33\x93\x75\x06\xee\x1b\x71\x0c\xca\x8a\xc9\x0d\xc9\x25\xc6\x0a\xda\xa6\xcb\xad\x48\x9f\x57\x2d\xcc\x96\xb6\xf2\x28\x07\x2e\xe4\x0e\x31\xc7\x71\x6a\xcf\x25\x3f\x89\xc1\x84\x91\x0d\xd2\x47\x30\xb5\x45\x92\xe0\x71\x9a\x78\x6f\x9c\x66\x80\x09\x68\x92\x04\x55\x15\x51\x2a\x45\x8c\x65\x50\xb7\x1c\x76\x88\xf2\x14\x61\x2c\x89\x52\x8b\xae\x0a\xdd\x8f\x6c\x01\xdf\xaf\xe8\xaf\x0f\xff\xc3\x53\x92\x00\x00\x3c\x20\x09\xaa\xdd\xc1\x12\xce\xf3\x73\xbb\xc4\x88\xf6\x0c\xcb\xce\x97\x4b\xfb\xc7\x25\xcb\x2c\x8c\xd6\x06\xf9\x80\x5a\xa6\xef\x48\x0d\x4b\x17\x94\x57\xa8\x41\x25\x65\x54\x53\xa2\xf2\x52\x48\x29\x1e\x3f\xfe\xe3\xdb\x2a\xff\xd1\x45\x5c\xa4\xf3\xa6\x2d\x19\xad\xe6\xb5\xdb\xf8\x84\x18\xe2\x15\xc9\xe0\xc9\xe4\xef\x1e\xab\xac\xfb\xfc\xcf\x13\xe5\xa5\xc5\x19\xd0\xde\x6a\x99\xcf\xe1\x33\xd1\xb6\x50\xd0\xef\xdb\xae\xeb\x3a\xca\x35\x89\x13\xf8\xaf\x02\x2e\x30\x71\x25\x86\x46\x08\xa6\xfc\xd1\x45\xa3\xa9\xe0\x88\x7d\x15\xd8\x74\x35\x91\xd1\xe9\xbc\xb6\xf1\x63\x3e\x1d\xdf\x89\xfc\x90\xe9\xd6\x1c\x79\x7f\x91\xfa\x2c\xdd\xf3\x82\x90\x5b\xa4\xb7\x3e\x26\x36\x80\x0f\x74\x8e\xeb\x3f\xd4\xd4\xc5\xac\x78\x2d\x60\x39\x45\xde\xed\xa6\x06\x56\x2c\x62\x8a\x9c\xe2\x6c\xd4\x20\x97\x34\xd7\x42\x23\x66\xef\xf9\x8a\xdf\x91\x4a\x48\x9c\x66\xef\xb2\xab\x6f\x74\x21\x9f\xf1\xac\x70\xb8\xbf\x61\x99\x4f\x36\xee\x5a\xd8\xbf\x7d\x98\x8f\x98\xb0\x0a\xc7\xf2\x46\x55\xc7\x46\xf9\x88\x69\xb7\x8a\x10\x12\x4b\x74\xfe\x85\xbc\xb9\x5d\x9c\x45\xc0\x03\xcd\x10\x4d\x71\x70\x96\x31\xd7\x23\x85\x53\xd6\x8f\x99\xbf\x25\x10\xfb\x0c\xb6\xa0\xe0\x4d\xfa\x7d\xe4\xaf\x7d\x85\xf4\xf3\xa8\x23\x7c\x8d\xcf\xe1\xfb\x27\x37\x5f\x5f\x04\xc3\x44\x0e\x7c\x8d\x60\x47\x84\xcf\x5e\x47\x36\x2e\xf1\xe4\x09\x0e\x9e\xdb\xf7\xd5\x58\x71\xc2\xa9\x37\xf4\x60\x8c\x33\xdf\x10\x1d\x91\xf5\xe3\x35\xed\xe5\x0e\xd8\xdc\x2d\x14\x35\x20\xc6\xcc\xd2\xf1\x8c\x3c\xdc\xd1\x58\x9c\x4f\x18\x8c\xa4\x55\x01\xcb\x49\x61\x66\xc2\x14\x69\x38\xea\xdf\x31\x9a\x56\x45\x16\xa5\x79\xe5\x50\x0a\x7a\xf3\xf9\xa2\x4c\x4c\xa2\x97\x56\x26\xb8\x68\x27\xca\x73\xb8\xd2\xc7\x35\x7a\x69\x89\x7d\x8e\x89\x5a\xbf\x79\xc2\xc4\x95\x9f\x4d\xcc\x8e\xa1\x27\x6f\x1a\x1b\xc1\xb3\x4f\xe2\x5f\xbd\x61\x92\xe8\x56\xf2\x2e\x67\xb2\x4f\xfe\x04\x00\x00\xff\xff\xff\xc7\x1b\xb5\xfb\x0a\x00\x00" func lockedtokensUserGet_total_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -4600,11 +4579,11 @@ func lockedtokensUserGet_total_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_total_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0xd3, 0x81, 0x3, 0x5, 0x4, 0xdd, 0x3c, 0xe, 0xce, 0x21, 0xa5, 0x45, 0x4b, 0xd, 0x39, 0x6e, 0x3e, 0x3f, 0xce, 0x25, 0xc9, 0x27, 0xce, 0x1e, 0x7a, 0xe9, 0xdd, 0xc5, 0x86, 0x4f, 0x8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x55, 0x8, 0x27, 0xe, 0x25, 0x30, 0xdf, 0xb4, 0x9b, 0xdf, 0x6d, 0x5, 0xd5, 0xf1, 0xd8, 0x3a, 0xef, 0xc2, 0x45, 0x3a, 0xa1, 0xd2, 0x90, 0x9, 0xf6, 0x54, 0x3c, 0xdb, 0x11, 0x6e, 0xa9, 0x9e}} return a, nil } -var _lockedtokensUserGet_unlock_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x4d\x6a\xc3\x30\x14\x84\xf7\x3a\xc5\x90\x45\xb1\x37\xa6\x8b\xd2\x45\x68\x1b\x42\x92\xd2\x12\xd3\x84\xfc\x1c\x40\x96\x9f\x53\x11\x59\xcf\x48\xcf\x34\x50\x7a\xf7\x62\xbb\x4d\x7f\x67\x23\x90\x66\xe6\xd3\xd8\xba\xe1\x20\xc8\xd9\x1c\xa9\xdc\xf1\x91\x7c\x44\x15\xb8\xc6\xe5\x29\x5f\xcd\x96\x8b\xf9\x6e\xb5\x5c\x3c\x4d\xe7\xf3\xcd\x62\xbb\x55\x4a\x1b\x43\x31\x26\xda\xb9\x14\x55\xeb\x51\x6b\xeb\x13\x6d\x0c\xb7\x5e\xc6\x98\x96\x65\xa0\x18\xd3\x31\xf6\xf7\xf6\x74\x7d\x85\x57\xa5\x00\xc0\x91\xc0\xf5\x84\xe9\x60\x7d\xf4\x15\x6f\xa8\xc2\x2d\x0e\x24\x1f\x77\x9f\x35\x69\x1f\xe9\x94\x19\xdd\xe8\xc2\x3a\x2b\x96\x62\x56\x70\x08\xfc\x72\x73\xf1\xfd\xab\x59\x7f\x3c\xb0\x2b\x29\xdc\x25\xe7\x60\xa7\x1f\xb6\xfc\x37\x7c\xdd\x16\xce\x9a\xb5\x96\xe7\x73\xe8\x8b\x3b\x99\xa0\xd1\xde\x9a\x64\x34\xe3\xd6\x95\xf0\x2c\x18\xe8\xd0\x08\x54\x51\x20\x6f\x08\xc2\x68\xfa\x1a\xfc\xa9\x1f\xa5\xc3\xf0\x40\xd2\x06\xff\xef\xf6\xec\x40\xb2\xf7\xdd\x4b\x6e\x6b\x2b\x49\xaa\xde\xd4\x7b\x00\x00\x00\xff\xff\x41\x2c\x60\x75\x8d\x01\x00\x00" +var _lockedtokensUserGet_unlock_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x1e\x39\x48\x72\xc9\x49\x3c\x14\xb5\x14\x41\x14\x72\x28\x62\x7f\xc0\x66\x33\xa9\x4b\x37\x3b\x61\x76\x16\x05\xf1\xbf\x4b\x12\xad\x55\x3b\x97\x85\xd9\xf7\xbe\x37\xcf\x0f\x23\x8b\xa2\x61\x77\xa0\xee\x99\x0f\x14\x13\x7a\xe1\x01\xc5\xe9\xaa\x30\xc6\x3a\x47\x29\x95\x36\x84\x0a\x7d\x8e\x18\xac\x8f\xa5\x75\x8e\x73\xd4\x15\x36\x5d\x27\x94\x52\xb5\xc2\xee\xde\xbf\x5d\x5d\xe2\xdd\x18\x00\x08\xa4\x08\x33\x68\xb3\x48\x1f\x63\xcf\x4f\xd4\xe3\x06\x7b\xd2\xaf\xdd\x37\xa6\x9a\x2d\xd3\xd4\xce\x8e\xb6\xf5\xc1\xab\xa7\x54\xb7\x2c\xc2\xaf\xd7\x17\xa7\x17\xd5\xf3\xf3\xc0\xa1\x23\xb9\x2d\x8f\xc6\x69\x7e\xc9\x9a\xbf\xe1\xdb\xdc\x06\xef\xb6\x56\x5f\x8e\xa6\x9f\xdc\xf5\x1a\xa3\x8d\xde\x95\xc5\x1d\xe7\xd0\x21\xb2\x62\x49\x87\x85\x50\x4f\x42\xd1\x11\x94\x31\xce\x18\xfc\xc3\x17\xd5\x52\x5c\x48\xb3\xc4\xb3\xdd\xeb\x3d\xe9\x2e\x4e\x3f\x8d\x1f\xbc\x96\x95\xf9\x30\x9f\x01\x00\x00\xff\xff\x4e\xa6\xd0\xc0\x87\x01\x00\x00" func lockedtokensUserGet_unlock_limitCdcBytes() ([]byte, error) { return bindataRead( @@ -4620,11 +4599,11 @@ func lockedtokensUserGet_unlock_limitCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_unlock_limit.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0x7e, 0xa8, 0x61, 0xd1, 0xfa, 0x9f, 0xeb, 0x5c, 0xb8, 0xde, 0x5c, 0xae, 0xd1, 0xf0, 0x64, 0x54, 0xd7, 0x86, 0x64, 0x24, 0x4a, 0x10, 0x1e, 0xbc, 0x51, 0x5d, 0x28, 0x9e, 0xd, 0xe5, 0x7b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6f, 0xf9, 0x2, 0x6b, 0x3a, 0x2a, 0x9b, 0x2f, 0xb6, 0xec, 0x74, 0x3b, 0x63, 0xa6, 0x99, 0x2e, 0x44, 0xaa, 0xa7, 0xfd, 0xf7, 0x7f, 0x81, 0xb1, 0x1c, 0x70, 0xf, 0xe3, 0xf1, 0x6f, 0xe4, 0xd4}} return a, nil } -var _lockedtokensUserWithdraw_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x93\x41\x6f\xd4\x30\x10\x85\xef\xf9\x15\xa3\x1c\xaa\x44\x82\x94\x03\xe2\xb0\x2a\x54\xa5\xbb\x15\x52\x2b\x16\x75\x97\x72\x9e\x3a\x93\xc6\xaa\x37\x13\xd9\xe3\xee\x22\xd4\xff\x8e\xec\xc4\x81\x80\x16\x71\xa9\x2f\xd6\xda\xf3\xde\xbc\xcf\xb3\xd1\xbb\x9e\xad\xc0\x95\xef\x1e\xf4\xbd\xa1\x2d\x3f\x52\x07\x8d\xe5\x1d\xe4\xb3\xb3\x3c\x4b\x95\x86\xf7\xb3\xaa\xf4\x7b\xaa\xb8\x61\xf5\x48\x75\x3c\x73\x43\xd1\x9b\xc3\xcd\xfa\xf2\x7a\xb5\xdc\xae\xaf\x57\x9f\x2f\x96\xcb\xdb\xd5\x66\x93\x65\x62\xb1\x73\xa8\x44\x73\x57\xe0\x8e\x7d\x27\x0b\xf8\x7a\xa5\x0f\xef\xde\x96\xf0\x23\xcb\x00\x00\x0c\x09\xb4\x6c\x6a\xb2\xb7\xd4\x2c\x00\xbd\xb4\xc5\xef\xf6\x55\xdc\xd6\x3d\x59\x0c\x36\xee\xd5\x1c\xa4\xfa\xa6\xa5\xad\x2d\xee\x4b\x38\xf9\x5b\xf6\x29\x1a\x4f\x7d\x9e\xd0\x1b\xf9\xd5\xe6\xa8\xd1\x04\x5c\xdd\x05\xc5\x10\xb4\xb7\xd4\xa3\xa5\x02\x95\x92\xd1\xe0\x23\x5b\xcb\xfb\x3b\x34\x9e\x4a\x38\xb9\x50\x2a\x10\x06\x32\x18\x97\x23\xd3\x54\x13\x1d\xbc\x87\x20\xae\x9c\xb0\xc5\x07\xaa\xee\xa3\xfc\xec\x25\x90\x3f\x14\x61\x2a\x0b\x38\x76\xbf\x19\x22\x7c\x41\x69\xcb\x29\x6d\x58\xe7\xe7\xd0\x63\xa7\x55\x91\x6f\x5b\x82\xde\xea\x1d\xda\xef\xe0\x1d\xd9\x90\x3d\xf0\x41\xcd\xe4\xa0\x63\x81\x16\x9f\x08\xb0\x03\x74\x8e\x95\x46\xa1\x1a\x4c\xec\x97\x4a\xf3\x32\x9b\x3f\x45\x1a\xc0\xbf\x5e\xe2\x7f\xa7\x92\x10\x4f\x47\x93\xd3\x26\xdd\xc7\xeb\x63\x58\x97\xec\x4d\x1d\xe3\x0f\x4d\x21\xc8\x40\xe2\xdf\x3d\xc6\x03\x4b\x4d\x3e\xa8\x9f\x87\xf8\x74\x20\xe5\x85\xfe\x9c\x6b\x82\xa9\x6a\xea\xd9\x69\x19\xf3\x9c\xbd\x9e\x4f\xbd\xda\x8f\x08\xd3\x17\x30\xec\x65\xea\xf1\x9c\xfd\x0c\x00\x00\xff\xff\x97\x50\x2f\x26\xa2\x03\x00\x00" +var _lockedtokensUserWithdraw_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x93\x41\x6f\xd4\x30\x10\x85\xef\xf9\x15\xa3\x1c\xaa\x44\x02\xf7\x82\x38\xac\x0a\x15\x20\x55\x1c\x90\x40\x50\xca\x79\xea\x4c\x1a\xab\x8e\x27\xb2\xc7\x4d\x11\xea\x7f\x47\x76\xe2\xb0\x01\x2d\xe2\x82\x2f\xd6\xda\xf3\xde\xbc\xcf\xb3\x31\xe3\xc4\x5e\xe0\x2a\xba\x3b\x73\x6b\xe9\x9a\xef\xc9\x41\xef\x79\x84\x7a\x77\x56\x57\xa5\xd2\xf2\xbc\xab\x2a\xbf\xb7\x8a\x0f\xac\xef\xa9\xcb\x67\x61\x2d\x3a\x3e\xaa\xab\x4a\x3c\xba\x80\x5a\x0c\xbb\x06\x47\x8e\x4e\x0e\xf0\xf5\xca\x3c\xbe\x7c\xd1\xc2\x8f\xaa\x02\x00\xb0\x24\x30\xb0\xed\xc8\x7f\xa6\xfe\x00\x18\x65\x68\x8e\x5d\x54\xde\x3e\x4e\xe4\x31\xd9\x84\x67\x7b\x04\xf5\xcd\xc8\xd0\x79\x9c\x5b\x38\xfb\x53\xf6\x3e\x1b\x6f\x7d\x1e\x30\x5a\xf9\xd5\xe6\xa4\xd1\x86\xaa\x6e\x92\x62\x09\x3a\x79\x9a\xd0\x53\x83\x5a\xcb\x6a\xf0\x96\xbd\xe7\xf9\x06\x6d\xa4\x16\xce\xde\x68\x9d\x08\x13\x19\xac\x2b\x90\xed\xd5\x46\x07\xaf\x20\x89\x55\x10\xf6\x78\x47\xea\x36\xcb\x2f\xfe\x07\xf2\xeb\x26\xcd\xe3\x00\xa7\xee\xbf\x2c\x11\x3e\xa1\x0c\xed\x96\x36\xad\xcb\x4b\x98\xd0\x19\xdd\xd4\xd7\x03\xc1\xe4\xcd\x88\xfe\x3b\xc4\x40\x3e\x65\x4f\x7c\xd0\x31\x05\x70\x2c\x30\xe0\x03\x01\x3a\xc0\x10\x58\x1b\x14\xea\xc0\xe6\x7e\xa5\xb4\x6e\xab\xfd\x53\x94\x01\xfc\xed\x25\xfe\x75\x2a\x05\xf1\x7c\x35\x39\xef\xcb\x7d\xbe\x3e\x85\xf5\x8e\xa3\xed\x72\xfc\xa5\x29\x24\x19\x48\xfe\xa3\xe7\x78\xe0\xa9\xaf\x17\xf5\xd3\x12\x9f\x1e\x49\x47\xa1\xdf\xe7\x5a\x60\x54\x47\x13\x07\x23\x6b\x9e\x8b\xe7\xfb\xa9\xab\x79\x45\xd8\xbe\x80\x65\x6f\x4b\x8f\xa7\xea\x67\x00\x00\x00\xff\xff\x10\x94\xa0\x76\x9c\x03\x00\x00" func lockedtokensUserWithdraw_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4640,11 +4619,11 @@ func lockedtokensUserWithdraw_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/withdraw_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0xa3, 0xd2, 0xbe, 0xda, 0xaa, 0xde, 0xa4, 0x56, 0x70, 0xd8, 0x2, 0xde, 0x44, 0x5e, 0x62, 0x5f, 0x1c, 0x33, 0x6d, 0x38, 0x91, 0xad, 0x32, 0xe5, 0x84, 0x73, 0x91, 0x1e, 0x20, 0x39, 0x20}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9b, 0xeb, 0x8e, 0xc2, 0xbe, 0x58, 0xf9, 0x1, 0x8a, 0x51, 0x9, 0xe7, 0x16, 0x2a, 0x38, 0xa2, 0xab, 0x0, 0xe5, 0x81, 0xa7, 0x55, 0x73, 0xaf, 0xb7, 0x5c, 0x78, 0x54, 0x71, 0x19, 0x9a, 0xd5}} return a, nil } -var _nodeversionbeaconAdminChange_version_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x41\x6f\xd3\x40\x10\x85\xef\xfe\x15\x4f\x39\x14\xe7\x62\x73\x40\x1c\x2c\x42\x95\x34\x41\xea\x25\xa9\x12\x9a\xfb\xb2\x1e\xc7\x2b\xd9\x3b\xd6\xec\x2c\x29\xa0\xfe\x77\x64\x3b\x40\x55\x93\x1e\xbd\x33\xf3\xbe\xf7\x66\xec\xda\x8e\x45\xb1\xe5\x92\x8e\x24\xc1\xb1\x5f\x91\xb1\xec\x51\x09\xb7\x78\xff\xb4\xdd\xad\x37\xc7\xcd\xfe\x70\xbf\xdb\xae\x36\xcb\xbb\xdd\x76\xb9\x5e\xef\x37\x87\x43\x92\xe4\x79\x8e\xaf\x62\x7c\x30\x56\x1d\x7b\x68\x6d\x14\xa6\x69\xf8\x1c\x5e\xca\x2d\xcb\xd6\x79\x28\xc3\xd6\xc6\x9f\x68\x18\xd3\x9a\x50\x52\xe5\x3c\x95\xf8\x3e\xb6\x3d\x76\xa5\x51\x5a\xc5\xaa\x22\x49\x12\xfd\xa7\x9b\x7a\x3a\x7f\x11\xa2\x9f\xf4\x40\xe2\xb8\x2c\xf0\x78\xef\xf5\xe3\x87\x39\x7e\x25\x09\xd0\xd0\x7f\xcc\x0f\xcc\x3d\x55\x05\x6e\x26\xb5\x6c\x28\xf6\xa3\x9d\x50\x67\x84\x52\x63\xad\x16\x30\x51\xeb\x74\xc5\x22\x7c\x3e\x9a\x26\xd2\x1c\x37\x4b\x6b\x39\x7a\xed\x49\x00\x90\xe7\x18\xeb\x30\x10\xaa\x48\xc8\x5b\xea\x93\xf5\x71\x26\x89\x5d\xdb\x35\xd4\x92\x57\xe7\x4f\x10\x0a\x1c\xc5\xd2\xa0\x13\xa8\xa9\xb2\xab\x9e\xb1\x40\x6f\x28\x0b\xca\x62\x4e\x94\x7d\x1b\x90\x9f\xae\x05\xf9\x3c\x48\x02\x69\x7f\xaf\x62\xba\x8a\xb1\xeb\x30\x8a\x3d\x18\xad\xe7\x97\x81\xdb\x5b\x74\xc6\x3b\x9b\xce\xee\x38\x36\xa5\x7f\xa7\x18\x51\xd7\x34\xb0\xbf\x84\x98\xf5\x12\xcf\xfd\x06\xe9\x89\x6c\x54\xba\xec\xe7\xed\x5c\x59\x20\xfd\x53\xe0\xe8\x4b\x23\x3f\x5e\x9e\x75\x7a\xe6\x57\x0f\x7f\xa1\x1d\x07\x1d\x81\x53\xa3\xa7\xb7\x19\x73\x2c\x16\xaf\x75\x51\x60\x36\x7e\xa3\x1b\x1f\xce\x26\xc0\xb3\x22\x0e\xbf\x64\x39\x1b\xc0\xcf\xc9\xef\x00\x00\x00\xff\xff\x59\x5a\xce\xc0\x2a\x03\x00\x00" +var _nodeversionbeaconAdminChange_version_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x4f\x6f\xd4\x40\x0c\xc5\xef\xf9\x14\x4f\x39\x94\xec\x25\xb9\x20\x0e\x11\x4b\xd5\x45\x42\xe2\x82\xaa\x42\x7b\x1f\x66\x9c\xcd\x48\x89\x1d\x79\x3c\x2c\x7f\xd4\xef\x8e\x92\x2c\x50\x35\x6c\x8f\xb1\xc7\xef\xf7\x9e\x9d\x38\x4e\xa2\x86\x4f\x12\xe8\x81\x34\x45\xe1\x03\x39\x2f\x8c\x4e\x65\x44\xb9\xa9\x97\x45\xd1\x34\x0d\xbe\xa8\xe3\xe4\xbc\x45\x61\x58\xef\x0c\x6e\x18\xe4\x94\x9e\xea\xdc\x84\x31\x32\x4c\xe0\x7b\xc7\x47\x5a\xc6\xac\x27\x04\xea\x22\x53\xc0\xb7\xf5\xd9\xfd\x14\x9c\xd1\x21\x77\x1d\x69\x51\xd8\x3f\xdd\x8a\xe9\xf4\x41\x89\x7e\xd2\x2d\x69\x94\xd0\xe2\xfe\x23\xdb\x9b\xd7\x3b\xfc\x2a\x0a\x60\xa0\xff\xb8\x5e\x98\x77\xd4\xb5\xb8\xda\xf4\xea\xa5\x39\x8f\x4e\x4a\x93\x53\xaa\x9c\xf7\xd6\xc2\x65\xeb\xab\x83\xa8\xca\xe9\xc1\x0d\x99\x76\xb8\xba\xf1\x5e\x32\xdb\x4c\x02\x80\xa6\xc1\xda\x87\x83\x52\x47\x4a\xec\x69\x4e\x36\xc7\xd9\x24\x8e\xe3\x34\xd0\x48\x6c\x91\x8f\x50\x4a\x92\xd5\xd3\xa2\x93\x68\xe8\xea\x8b\x9e\xb1\xc7\x6c\xa8\x4e\x26\xea\x8e\x54\x7f\x5d\x90\x6f\x2f\x05\x79\xb7\x48\x02\xd5\x7c\xa8\x76\xbb\x8a\xf5\xd5\xe7\x55\xec\xd6\x59\xbf\x3b\x0f\x5c\x5f\x63\x72\x1c\x7d\x55\xbe\x97\x3c\x04\x7e\x65\x58\x51\x97\x34\x70\x77\x0e\x51\xce\x12\x8f\xf3\x06\xe9\x3b\xf9\x6c\x74\xde\xcf\xcb\xb9\xea\x44\xf6\xa7\x21\x99\x83\xd3\x1f\x4f\xcf\xba\x3d\xf3\xb3\xc2\x5f\xe8\x24\xc9\x56\xe0\xd6\xe8\xf1\x65\xc6\x0e\xfb\xfd\x73\x5d\xb4\x28\xd7\x6f\x4c\x6b\xe1\xe4\x12\x58\x0c\x79\xf9\x25\x43\xb9\x80\x1f\x8b\xdf\x01\x00\x00\xff\xff\x1f\xd2\xbe\x76\x23\x03\x00\x00" func nodeversionbeaconAdminChange_version_freeze_periodCdcBytes() ([]byte, error) { return bindataRead( @@ -4660,11 +4639,11 @@ func nodeversionbeaconAdminChange_version_freeze_periodCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/change_version_freeze_period.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x95, 0xcc, 0x3e, 0xc0, 0x1f, 0xde, 0x4b, 0x62, 0xc5, 0xbd, 0xea, 0xab, 0x44, 0x0, 0xcc, 0x9d, 0x76, 0x27, 0x6a, 0x76, 0x53, 0x5a, 0x49, 0x32, 0x2c, 0x4f, 0x5, 0x24, 0x96, 0xc6, 0x55, 0x54}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4c, 0x60, 0x96, 0xf7, 0x76, 0x86, 0xbe, 0x53, 0x4e, 0x92, 0x54, 0x6, 0xb1, 0x20, 0x8d, 0x20, 0xf8, 0x11, 0x29, 0xfe, 0x14, 0x3e, 0xf6, 0x77, 0xe1, 0x2, 0x7a, 0xf3, 0x56, 0x5f, 0x27, 0xd3}} return a, nil } -var _nodeversionbeaconAdminDelete_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xd3\x40\x14\xbc\xfb\x2b\x46\x3d\x14\xe7\x62\x73\x40\x1c\x2c\xa0\x4a\xea\x48\xf4\x92\xa0\x24\xe4\xfe\xb2\x7e\x8e\x57\xac\x77\xad\xf5\x33\x2d\x42\xfd\x77\xb4\x6b\xa7\x0d\x4a\x83\xb8\xee\xbc\x99\x37\x6f\x76\x74\xdb\x39\x2f\x58\xb9\x8a\xf7\xec\x7b\xed\xec\x82\x49\x39\x8b\xda\xbb\x16\xef\x9f\x56\xeb\x72\xb9\x5f\x6e\xb6\x0f\xeb\xd5\x62\x39\xbf\x5f\xaf\xe6\x65\xb9\x59\x6e\xb7\x49\x92\xe7\x39\x76\x9e\x6c\x4f\x4a\xb4\xb3\x90\x86\x04\x64\x8c\x7b\xec\xcf\xe5\xe6\x55\xab\x2d\xc4\xa1\x62\xc3\xc2\x90\x86\x23\xf5\xe7\x08\xe3\xe0\x06\x5b\x91\xff\x85\x96\xba\x4e\xdb\x23\xc2\x74\xc3\x27\x7c\x47\x07\xc3\x20\x89\x6f\x7d\xc7\x4a\xd7\x9a\xab\xa8\x70\x30\x4e\xfd\x40\xc3\xfa\xd8\x08\x3a\xf2\xd4\xb2\xb0\x4f\x12\x79\x35\x95\xc6\x99\xaf\x71\x64\x31\x2d\xda\xb9\x32\x3a\x29\xf0\xfd\xc1\xca\xc7\x0f\x33\xfc\x4e\x12\xc0\xf0\x1b\x29\x44\xf3\x1b\xae\x0b\xdc\x5e\x60\x59\x04\x03\xb5\xf3\xdc\x91\xe7\x94\x94\x92\x02\x34\x48\x93\x2e\x9c\xf7\xee\x71\x4f\x66\xe0\x19\x6e\xe7\x4a\xb9\xc1\x4a\xd8\x04\x00\x79\x8e\x11\x07\xc1\x73\xcd\x9e\xad\xe2\x10\x51\xb8\xf1\x22\x3a\xcf\xbd\x1b\xbc\xe2\x48\xed\xd9\xd4\xd9\x55\x9b\xf8\x8c\xe0\x21\xeb\xc5\x79\x3a\x72\x76\x88\x5b\x3e\x5d\xf3\xfe\x25\x4a\x02\x69\xf8\xeb\xe2\xf2\xfa\x71\x6a\x3b\x8a\x7d\x23\x69\x66\x13\xe1\xee\x0e\x1d\x59\xad\xd2\x9b\x7b\x37\x98\xca\xbe\x13\x8c\xab\xae\x24\x88\xcd\x74\xc3\x4d\x50\x78\x0e\x99\xf1\x13\xab\x41\xf8\x35\x91\xf2\xa5\x1e\x2f\xd5\x88\x15\x3c\x7f\x90\x37\xcb\xf0\x77\x11\x4e\x7d\xfa\x8f\xb8\xb2\xb1\x92\x27\x6c\x22\x9e\x77\xa6\xc0\x3f\x0a\x34\xdd\xf2\xfc\x27\x00\x00\xff\xff\x10\x6d\xc1\xfb\x43\x03\x00\x00" +var _nodeversionbeaconAdminDelete_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xd4\x30\x10\xbd\xe7\x2b\x9e\xf6\x50\xb2\x97\xe4\x82\x38\x44\x40\xd5\xa5\x07\xb8\x20\x54\x96\xde\x67\x9d\xc9\xc6\xc2\xf1\x58\xce\x84\x82\x50\xff\x1d\xd9\xc9\xb6\x8b\xd2\x45\x5c\xfd\x66\xde\xbc\xf7\xfc\xec\x10\x24\x2a\x3e\x4b\xcb\xf7\x1c\x47\x2b\x7e\xc7\x64\xc4\xa3\x8b\x32\x60\xb3\x7a\xdf\x14\x45\x5d\xd7\xd8\x47\xf2\x23\x19\xb5\xe2\xa1\x3d\x29\xc8\x39\x79\x18\xcf\x79\x6e\xda\xc1\x7a\xa8\xa0\x65\xc7\xca\xd0\x9e\xf3\xea\x8f\x19\xc6\x41\x26\xdf\x52\xfc\x85\x81\x42\xb0\xfe\x88\x34\xdd\xf3\x09\xdf\xd3\xc1\x31\x48\xf3\xdb\x18\xd8\xd8\xce\x72\x9b\x19\x0e\x4e\xcc\x77\xf4\x6c\x8f\xbd\x22\x50\xa4\x81\x95\x63\x51\xe8\xb3\xa8\x32\xcf\x7c\xcc\x23\xbb\xe5\xd0\x5e\x6e\xb3\x92\x06\xdf\x3e\x79\x7d\xf3\x7a\x8b\xdf\x45\x01\x38\x7e\xc1\x7e\x16\x7f\xc7\x5d\x83\xab\x15\x56\x65\x30\xad\x86\xc8\x81\x22\x97\x64\x8c\x36\xa0\x49\xfb\x72\x27\x31\xca\xc3\x3d\xb9\x89\xb7\xb8\xba\x31\x46\x26\xaf\xe9\x12\x00\xd4\x35\x66\x1c\x84\xc8\x1d\x47\xf6\x86\x53\x44\xc9\xe3\x2a\xba\xc8\xa3\x4c\xd1\x70\x5e\x1d\xd9\x75\xd5\x45\x99\x78\x87\xa4\xa1\x1a\x55\x22\x1d\xb9\x3a\xe4\x2b\x6f\x2f\x69\x7f\x9f\x29\x81\x32\x7d\x72\xb3\x76\x3f\x4f\x7d\x9d\xc9\xbe\x90\xf6\xdb\x65\xe1\xfa\x1a\x81\xbc\x35\xe5\xe6\x83\x4c\xae\xf5\xaf\x14\xf3\xa9\x0b\x09\xe2\x6e\xf1\xb0\x49\x0c\x8f\x29\x33\xfe\xc9\x66\x52\x7e\x4e\xe4\xf6\xa9\x1e\x4f\xd5\xc8\xdd\x3b\x7f\xd0\x17\xcb\xf0\x77\x11\x4e\x7d\xfa\x8f\xb8\xaa\xb9\x92\x27\x6c\x59\x3c\xef\x4c\x83\x7f\x14\x68\xf1\xf2\xf8\x27\x00\x00\xff\xff\xb2\x03\xaa\xae\x3c\x03\x00\x00" func nodeversionbeaconAdminDelete_version_boundaryCdcBytes() ([]byte, error) { return bindataRead( @@ -4680,11 +4659,11 @@ func nodeversionbeaconAdminDelete_version_boundaryCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/delete_version_boundary.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0xa7, 0x33, 0xc0, 0x23, 0xac, 0xc1, 0x26, 0x63, 0xde, 0x10, 0x85, 0x27, 0xa4, 0x75, 0xf3, 0x5e, 0x16, 0x50, 0xe4, 0x3f, 0x98, 0x80, 0x74, 0x80, 0xe1, 0x21, 0x84, 0x8d, 0x76, 0xfe, 0x17}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xce, 0xdd, 0x99, 0x3c, 0x5e, 0x76, 0xfe, 0x27, 0x22, 0xe4, 0x7b, 0x78, 0x77, 0x89, 0xb6, 0x82, 0x89, 0x60, 0x66, 0xee, 0x3b, 0x76, 0xe7, 0xef, 0x52, 0xe7, 0xe7, 0x7a, 0x6b, 0x65, 0x71}} return a, nil } -var _nodeversionbeaconAdminHeartbeatCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x41\x8f\xa2\x40\x10\x85\xef\xfc\x8a\x17\x0f\x2e\x5e\x60\xcf\x66\x77\x0d\x2a\xc9\xee\x05\x37\x90\x78\x2f\x9b\x42\x3a\x81\x2e\xd2\x14\xab\xc9\xc6\xff\x3e\x11\x1c\xc7\xc4\x89\xc3\x89\xea\xae\xfa\xde\x7b\xd5\xb6\xed\xc4\x2b\x32\x29\x79\xcf\xbe\xb7\xe2\xd6\x4c\x46\x1c\x2a\x2f\x2d\xbe\x9f\xb3\xdd\x36\xdd\xa7\x79\xf1\x67\x97\xad\xd3\x64\xb3\xcb\x92\xed\x36\x4f\x8b\x22\x08\xe2\x18\x1b\x6a\x9a\x1e\x5a\x33\x5a\xd6\x5a\x4a\x68\x4d\x0a\x6e\xad\x4e\xa7\x4a\x87\x86\x71\xb2\x5a\x8f\xa5\x75\x46\x5a\xeb\x8e\xf8\x37\x29\xf5\x81\x7a\x72\x3d\x19\xb5\xe2\xc2\x05\xfe\x07\x01\x00\x34\xfc\x89\x9f\xdf\x4c\x5e\x0f\x4c\x9a\x73\xb5\xc4\xfc\xe9\x3e\xba\x37\x4c\x90\xce\x73\x47\x9e\x43\x32\x46\x97\xa0\x41\xeb\x70\x2d\xde\xcb\x69\x4f\xcd\xc0\x0b\xcc\x13\x63\x64\x70\x7a\x55\xc5\xed\x8b\x63\x4c\x3d\x20\x78\xae\xd8\xb3\x33\x0c\x95\xd1\xfc\x83\x62\x52\xb6\xd6\xc1\x73\x2f\x83\x37\x7c\x1f\xef\xb9\xa9\xa2\x97\xc6\xf1\x13\x57\x3f\x51\xaf\xe2\xe9\xc8\xd1\x61\x54\xfb\xf1\x2a\xcd\xaf\x3b\x1e\x08\xaf\x6f\xb2\x7c\xde\xcd\x47\x77\x31\x81\xff\x92\xd6\x8b\x87\xc1\xd5\x0a\x1d\x39\x6b\xc2\xd9\x46\x86\xa6\x74\xdf\x14\x93\xf4\x2b\x16\xf2\x5b\xc0\xd9\x84\xba\x00\x18\x7f\xf8\xcc\x66\x50\x7e\x58\xdc\xd7\xc9\xa3\xfa\xbd\x08\x6f\xb4\xe0\xf2\x16\x00\x00\xff\xff\x54\xfb\xb5\x0e\x7b\x02\x00\x00" +var _nodeversionbeaconAdminHeartbeatCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x41\x6f\xe2\x40\x0c\x85\xef\xf9\x15\x4f\x39\xb0\xe1\x92\xdc\xd1\xee\x22\xe0\xd2\x53\x55\x51\x89\xbb\x99\x38\x64\xa4\x64\x1c\x79\x9c\x52\xa9\xe2\xbf\x57\x64\x28\x45\xa2\xa2\x73\x1a\x7b\xec\xef\x3d\x7b\x7c\x3f\x88\x1a\x9e\xa5\xe6\x1d\x6b\xf4\x12\xd6\x4c\x4e\x02\x1a\x95\x1e\xf9\x5d\x3e\xcf\xb2\xaa\xc2\x86\xba\x2e\xc2\x5a\x46\xcf\xd6\x4a\x0d\x6b\xc9\xc0\xbd\xb7\x94\x35\xda\x77\x8c\xa3\xb7\x76\x0a\x7d\x70\xd2\xfb\x70\xc0\x5b\x42\xc5\xcc\x94\x42\x24\x67\x5e\x42\x31\xc7\x47\x96\x01\x40\xc7\x3f\x18\x79\x62\x52\xdb\x33\xd9\x96\x9b\x05\x66\x77\xef\xe5\xb5\x20\x41\x06\xe5\x81\x94\x0b\x72\xce\x16\xa0\xd1\xda\x62\x2d\xaa\x72\xdc\x51\x37\xf2\x1c\xb3\x95\x73\x32\x06\x3b\xab\xe2\x72\xaa\x0a\xa9\x06\x04\xe5\x86\x95\x83\x63\x98\x4c\xe6\x6f\x14\x57\x75\xef\x03\x94\xa3\x8c\xea\xf8\xda\x1e\xb9\x6b\xca\x87\xc6\xf1\x0f\x67\x3f\x65\x34\x51\x3a\x70\xb9\x9f\xd4\xfe\x3e\x9a\xe6\xff\x15\x0f\x14\xe7\xcf\x58\xdc\xef\xe6\xbb\xfa\x35\x81\x5f\xc8\xda\xf9\x4d\xe3\x72\x89\x81\x82\x77\x45\xbe\x91\xb1\xab\xc3\x1f\x43\x92\x7e\xc4\xc2\xf6\x32\x60\x9e\x50\x27\x00\xd3\x85\xdf\xd9\x8d\xc6\x37\x8b\xfb\x7d\xf2\xb2\xfd\x0a\x8a\x0b\x2d\x3b\x7d\x06\x00\x00\xff\xff\x23\xcb\x77\xbd\x74\x02\x00\x00" func nodeversionbeaconAdminHeartbeatCdcBytes() ([]byte, error) { return bindataRead( @@ -4700,11 +4679,11 @@ func nodeversionbeaconAdminHeartbeatCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/heartbeat.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x75, 0x85, 0x1, 0x64, 0x21, 0x6, 0x66, 0x6e, 0x88, 0xa7, 0x74, 0x21, 0x28, 0x33, 0x58, 0xe8, 0xdf, 0xa9, 0x1c, 0x4b, 0xeb, 0x83, 0x11, 0x97, 0xb3, 0x47, 0xfc, 0x5c, 0x1c, 0x80, 0xa1, 0xb8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9f, 0x2e, 0x33, 0xc2, 0x68, 0xee, 0x46, 0xb8, 0xb7, 0xd6, 0xdc, 0x46, 0x84, 0x75, 0x4a, 0xb1, 0xc1, 0x19, 0x4b, 0xaf, 0x3d, 0xb9, 0x5, 0x88, 0x7d, 0xd2, 0x59, 0x36, 0x2b, 0x5e, 0x7, 0x29}} return a, nil } -var _nodeversionbeaconAdminSet_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x6f\xda\x4e\x10\xbd\xfb\x53\x8c\x38\xe4\x67\x24\x64\xff\x0e\x55\x55\x59\x4d\x23\x48\x90\x9a\x43\x49\x04\x69\xee\xc3\x7a\x0c\xdb\xda\xbb\xee\xee\x18\x52\x55\xf9\xee\xd5\xae\x17\x30\x36\x48\x3d\x21\xe6\xef\x9b\xf7\x9e\x57\x56\xb5\x36\x0c\x0b\x9d\xd3\x2b\x19\x2b\xb5\x9a\x11\x0a\xad\xa0\x30\xba\x82\xff\xdf\x16\x4f\x0f\xf3\xd7\xf9\x72\xf5\xf8\xb4\x98\xcd\xa7\xf7\x4f\x8b\xe9\xc3\xc3\x72\xbe\x5a\x45\x51\x9a\xa6\xf0\x62\x50\x59\x14\x2c\xb5\x02\xde\x22\x03\x96\xa5\xde\xdb\xee\xb8\x69\x5e\x49\x05\xac\x01\xf3\x1c\x10\x14\xed\x61\xd7\x66\x5c\x90\xb7\xe4\x07\x1d\x43\xb8\x2e\x09\x72\x2a\xa4\x92\x6a\x03\x78\x4c\xac\x75\xa3\x72\x34\xbf\x01\xd9\x35\x01\xa3\xd9\x10\xcf\x4a\x2d\x7e\x7e\x25\xb9\xd9\x72\x14\xf1\x09\x4c\x1c\x81\xdb\xf4\x0d\x7f\x68\x93\xc1\xf7\x47\xc5\x9f\x26\x21\x24\x55\x3f\xf4\x8c\x2c\xb6\xbd\x90\xa1\x25\x95\x84\x96\x32\x58\xb1\x91\x6a\x73\xe7\x32\xeb\xd3\xba\xb6\xfe\xe3\x87\x68\x0c\x7f\xa2\x08\xa0\xa4\x0b\x24\xfa\xdb\x97\x54\x64\x70\x33\xc8\x25\x3e\x19\x3a\x15\xed\x0f\xc9\x70\x67\x36\x9c\x96\xf4\x4a\xdc\xda\xda\x50\x8d\x86\x62\x14\x82\x33\xc0\x86\xb7\xf1\x4c\x1b\xa3\xf7\xaf\x58\x36\x34\x86\x9b\xa9\x10\xba\x51\xec\x50\x02\x00\xa4\x29\xdc\x1b\x42\x26\x4f\x62\x57\x0c\xaf\xb7\x0b\xd6\x68\x2d\xe5\x50\xa3\xc1\x8a\x98\x8c\xf5\x8d\xe7\x28\xe1\xf6\x02\xbc\x15\x55\x3b\x32\xb1\x2f\x07\xa8\x5a\xee\x0f\x2a\x4c\xa0\x6a\x99\x3f\x68\x30\x81\xba\xe5\xfd\xa0\xc0\xc4\x1d\x73\x64\xfd\x4c\x04\x3f\x72\x1c\xf9\x1f\x4b\x65\x91\x0c\xf9\xba\x88\xa8\x57\x13\x9f\xe9\xd7\xf9\x33\x39\xb0\x90\x75\x6e\x0c\xfb\xd2\x14\x5a\x46\x01\xc1\x50\x41\x86\x94\xa0\x60\xdd\xa1\xcf\x0d\x59\xdd\x18\x41\x27\xa8\x57\x4d\x01\xb7\xe0\x54\x4b\x2c\x6b\x83\x1b\x4a\xd6\x7e\xcb\xe7\x6b\x4e\xf9\x12\x78\x8d\x9d\x50\x97\xdc\xe1\xab\x56\xed\xb0\x67\xe4\xed\x38\x34\xdc\xdd\x41\x8d\x4a\x8a\x78\x74\xaf\x9b\x32\x57\xff\x31\xb4\xab\xae\xcd\x80\x65\x38\x62\xe4\x46\xbc\x3b\x1a\xe8\x8d\x44\xc3\x74\x32\xd1\x34\xcf\x07\x0e\x0a\x9c\x9c\x7d\xca\xff\xc0\x43\x62\x89\xfb\x42\xed\xfa\x1f\xc3\x15\xd5\x8f\x00\x6b\x6d\x39\xa0\x1b\x5e\xb5\x19\x2e\xa0\xa2\x20\xc1\x72\x47\xd3\xee\x1b\x72\x66\x8a\x71\x12\x50\x04\x1e\x01\x12\xcb\x46\x0a\x9e\xff\x6a\xb0\x7c\xd1\xf1\x15\x4c\x87\xb6\x31\x64\x30\x5a\x74\xf8\xd9\xa3\x05\xa5\xd9\x3d\x84\x94\xf7\xd8\x7a\x71\x64\x8d\xfc\x35\xef\xd1\xdf\x00\x00\x00\xff\xff\xb8\x6c\x5a\x7b\x94\x05\x00\x00" +var _nodeversionbeaconAdminSet_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x6b\xdb\x4e\x10\xbd\xeb\x53\x3c\x7c\xc8\x4f\x06\x23\x5d\x7e\x94\x22\x9a\x06\x27\x14\xda\x43\x43\x48\xdc\xdc\xc7\xab\x91\xad\x56\xda\x55\x77\x47\x76\x4b\xc9\x77\x2f\x2b\xad\x6d\x59\xb2\xa1\x27\xe3\xf9\xfb\xe6\xbd\xa7\x2d\xeb\xc6\x58\xc1\xa3\xc9\xf9\x95\xad\x2b\x8d\xbe\x67\x52\x46\xa3\xb0\xa6\xc6\x6c\x12\x9f\x45\x51\x9a\xa6\x58\x59\xd2\x8e\x94\x94\x46\x43\xb6\x24\xa0\xaa\x32\x7b\x37\x9c\xb3\xcc\xeb\x52\x43\x0c\x28\xcf\x41\xd0\xbc\xc7\xae\xcf\xf8\xa0\x6c\xb9\x1b\x74\x0c\xd1\xba\x62\xe4\x5c\x94\xba\xd4\x1b\xd0\x31\xb1\x36\xad\xce\xc9\xfe\x06\x89\x6f\x82\x90\xdd\xb0\xdc\x57\x46\xfd\xf8\xcc\xe5\x66\x2b\x51\x24\x27\x30\x71\x04\xbf\xe9\x2b\x7d\x37\x36\xc3\xb7\x2f\x5a\xde\x2f\x42\xa8\xd4\xe3\xd0\x13\x89\xda\x8e\x42\x96\x9f\xb9\x62\x72\x9c\xe1\x45\x6c\xa9\x37\x77\x3e\xb3\x3e\xad\xeb\xeb\xdf\xfd\x1f\xcd\xf1\x27\x8a\x80\x8a\x2f\xb0\xd7\xdd\xfe\xcc\x45\x86\x9b\x49\x2e\xe9\x92\xa1\x53\xf3\xfe\x90\x0c\x77\x66\xd3\x69\xc9\xa8\xc4\xaf\x6d\x2c\x37\x64\x39\x26\xa5\x24\x03\xb5\xb2\x8d\xef\x8d\xb5\x66\xff\x4a\x55\xcb\x73\xdc\x2c\x95\x32\xad\x16\x8f\x12\x00\xd2\x14\x0f\x96\x49\xb8\x23\x71\x28\x46\x27\xb4\x0f\x36\xe4\x1c\xe7\x68\xc8\x52\xcd\xc2\xd6\x75\x8d\xe7\x28\x71\x7b\x01\xde\x0b\xd7\x3b\xb6\x71\x57\x0e\xd4\x3d\xf7\x07\x15\x16\xa8\x7b\xe6\x0f\x1a\x2c\xd0\xf4\xbc\x1f\x14\x58\xf8\x63\x8e\xac\x9f\x89\xd0\x8d\x9c\x47\xdd\x8f\xe3\xaa\x48\xa6\x7c\x5d\x44\x34\xaa\x89\xcf\xf4\x1b\xfc\x59\x1c\x58\xc8\x06\x37\x86\x7d\x69\x8a\x9e\x51\x10\x2c\x17\x6c\x59\x2b\x0e\xd6\x9d\xfa\xdc\xb2\x33\xad\x55\x7c\x82\x7a\xd5\x14\xb8\x85\x57\x2d\x71\x62\x2c\x6d\x38\x59\x77\x5b\x3e\x5c\x73\xca\xc7\xc0\x6b\xec\x85\xba\xe4\x8e\xae\xea\xa5\x1f\xf6\x44\xb2\x9d\x87\x86\xbb\x3b\x34\xa4\x4b\x15\xcf\x1e\x4c\x5b\xe5\xfa\x3f\x41\xbf\xea\xda\x0c\x3c\x87\x23\x66\x7e\xc4\x9b\xa7\x81\x7f\xb1\x6a\x85\x4f\x26\x5a\xe6\xf9\xc4\x41\x81\x93\xb3\x4f\xf9\x1f\x78\x48\x1c\xcb\x58\xa8\xdd\xf8\x63\xb8\xa2\xfa\x11\x60\x63\x9c\x04\x74\xd3\xab\x36\xd3\x05\x5c\x14\xac\xa4\xdc\xf1\x72\xf8\x86\x9c\x99\x62\x9e\x04\x14\x81\x47\x20\x71\x62\x4b\x25\x9f\x7e\xb6\x54\xad\x4c\x7c\x05\xd3\xa1\x6d\x8e\x0c\xb3\xc7\x01\x3f\x7b\x72\xd0\x46\xfc\x43\xc8\xf9\x88\xad\x95\x27\x6b\xd6\x5d\xf3\x16\xfd\x0d\x00\x00\xff\xff\x4f\xa8\x29\x9e\x8d\x05\x00\x00" func nodeversionbeaconAdminSet_version_boundaryCdcBytes() ([]byte, error) { return bindataRead( @@ -4720,11 +4699,11 @@ func nodeversionbeaconAdminSet_version_boundaryCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/set_version_boundary.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0xa9, 0x9b, 0x3e, 0x92, 0x3b, 0xbb, 0x60, 0x4a, 0x57, 0x3, 0x32, 0x3, 0xbd, 0x81, 0x1d, 0x66, 0x94, 0x9d, 0x9c, 0x94, 0x8b, 0xdb, 0x4a, 0x69, 0x8d, 0x6f, 0x9d, 0x9, 0xb5, 0x74, 0x39}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0x5f, 0x19, 0x8f, 0xfe, 0x87, 0x52, 0x72, 0x46, 0xb0, 0x81, 0xa2, 0xc2, 0xf7, 0x57, 0xb4, 0x96, 0xcb, 0xa2, 0xcc, 0xe3, 0xf0, 0x47, 0x81, 0x59, 0x45, 0x5f, 0xf7, 0xcb, 0x2a, 0x8e, 0xb5}} return a, nil } -var _nodeversionbeaconScriptsGet_current_node_versionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\x4e\xc4\x30\x10\x44\x7b\x7f\xc5\x74\x24\xcd\x85\x9a\xee\xee\x12\x21\x1a\x47\x3a\xa3\xeb\x8d\xbd\x01\x4b\xf1\x1a\xad\xd7\x27\x10\xe2\xdf\x29\x42\x2a\x68\x67\x9e\x66\x5e\xca\xef\x45\x14\xb6\x44\xba\x92\xd4\x54\xf8\x44\x3e\x14\xc6\x22\x25\xe3\xfe\xc3\xce\xe3\x74\x9d\x2e\xee\x69\xb6\xa7\xe9\x78\x9e\xed\x71\x1c\x2f\x93\x73\xc6\x0c\xc3\x80\x47\xd2\x0a\x7d\x23\x84\x26\x42\xac\xb8\x6d\x1b\x88\xb4\x24\xa6\x88\xc4\x5b\x5d\x58\xc5\x07\xbd\xab\x3b\xf1\xec\x5f\x56\x32\x3e\x04\xaa\xb5\xf3\xeb\xda\x63\x69\x8c\xec\x13\x77\xfd\xc3\x5f\x9d\x83\xa3\x7c\x23\xc1\x97\x01\x00\x21\x6d\xc2\xff\x50\xaf\xa4\xe7\xcd\x64\xcf\x4b\xe3\xe8\xe5\xb3\xeb\x0f\xbf\xc7\xe6\xdb\xfc\x04\x00\x00\xff\xff\x47\x41\x59\xb1\xf4\x00\x00\x00" +var _nodeversionbeaconScriptsGet_current_node_versionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xae\xc2\x30\x10\x04\x7b\x7f\xc5\x2a\xcd\x4b\x9a\xa4\x7f\x25\x14\x74\x34\x20\x7a\x63\x5f\xc0\x52\x7c\x87\xce\xe7\x48\x08\xf1\xef\x14\x21\x55\x68\x67\x47\xda\x49\xf9\x21\x6a\x38\x4a\xa4\x0b\x69\x49\xc2\x3b\xf2\x41\x18\xa3\x4a\x46\xb3\xe1\x8d\x73\xc3\x30\xe0\x40\x56\x60\x77\x42\xa8\xaa\xc4\x86\x79\x91\x10\x69\x4c\x4c\x11\x89\x97\x59\xd8\xd4\x07\xfb\x2b\xab\x71\xf6\xd7\x89\x9c\x0f\x81\x4a\x69\xfd\x34\x75\x18\x2b\x23\xfb\xc4\x6d\xf7\xbf\xed\xe8\x4f\x94\x67\x52\xbc\x1c\x00\x28\x59\x55\xfe\x61\xdd\xc8\xf6\x4b\xc9\xca\xa5\x72\xf4\xfa\x6c\xbb\xfe\x7b\xec\xde\xee\x13\x00\x00\xff\xff\x85\x05\xca\x6f\xed\x00\x00\x00" func nodeversionbeaconScriptsGet_current_node_versionCdcBytes() ([]byte, error) { return bindataRead( @@ -4740,11 +4719,11 @@ func nodeversionbeaconScriptsGet_current_node_versionCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_current_node_version.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0xda, 0xbd, 0xd1, 0x7e, 0x56, 0x32, 0x8f, 0x92, 0x35, 0xa8, 0x28, 0x92, 0xb9, 0xd0, 0xf, 0x32, 0xf6, 0x4a, 0xfa, 0x60, 0x0, 0xe4, 0xd2, 0xf0, 0xc5, 0x29, 0x96, 0xb3, 0xb, 0xc0, 0x5f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0xcf, 0xc4, 0xaa, 0x86, 0xfc, 0xd, 0x40, 0xfc, 0xe6, 0xbb, 0xcc, 0x27, 0xcc, 0xf8, 0x3f, 0x97, 0x44, 0xb5, 0x3, 0x35, 0xb9, 0xe4, 0xe4, 0xa6, 0x73, 0x22, 0xa5, 0xc3, 0x50, 0x54, 0x87}} return a, nil } -var _nodeversionbeaconScriptsGet_current_node_version_as_stringCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\x31\x4f\x84\x40\x10\x85\xfb\xfd\x15\xaf\x84\x06\xac\x4d\x2c\xee\x0e\x62\x6c\x20\x39\xcc\xf5\x73\x30\x9c\x9b\xc0\xac\x99\x9d\x35\x1a\xe3\x7f\x37\x81\xd5\xe6\xda\xf7\x66\xbe\xf7\xf9\xf5\x3d\xa8\xa1\x0b\x13\x5f\x58\xa3\x0f\x72\x64\x1a\x83\x60\xd6\xb0\xe2\xe1\xb3\xeb\x9b\xf6\xd2\x9e\x87\x97\xbe\x3b\xb6\x87\x53\xdf\x1d\x9a\xe6\xdc\x0e\x83\x73\x75\x5d\xe3\x99\x2d\xc2\xde\x18\x63\x52\x65\x31\x7c\xec\x0c\x4c\x3c\x7b\xe1\x09\x5e\xb6\x3a\xc7\xaf\x74\x5d\x78\x7b\xa4\x08\xc2\x60\xea\xe5\x56\x39\x1a\x47\x8e\xb1\xa0\x65\x29\x31\x27\xc1\x4a\x5e\x8a\xf2\x31\xf7\xf8\x76\x00\xb0\xb0\xe1\x1a\x92\x4c\xa4\x5f\x78\xba\x17\xae\x6e\x6c\xa7\xdd\xe2\x2f\xcf\xd7\x45\xb9\x01\x94\x2d\xa9\xfc\x33\xaa\xec\x54\x59\xd8\x77\x8a\xd2\xfd\xb8\xdf\x00\x00\x00\xff\xff\x35\x6a\x96\x0b\x0f\x01\x00\x00" +var _nodeversionbeaconScriptsGet_current_node_version_as_stringCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\xb1\x4e\x04\x31\x0c\x44\xfb\x7c\xc5\xe8\xaa\xa4\xc9\xf6\x48\x34\x50\xd0\xd1\x80\xe8\x7d\x89\xf7\x88\x94\x75\x90\xe3\x20\x21\xc4\xbf\x23\xed\x06\x9a\x6d\xdf\x8c\xc7\xaf\x6c\x1f\x4d\x0d\xcf\x2d\xf3\x1b\x6b\x2f\x4d\x1e\x98\x52\x13\xac\xda\x36\x5c\x4e\xfc\xe2\xdc\xb2\x2c\x78\x62\xeb\xb0\x77\x46\x1a\xaa\x2c\x86\xcf\xa3\x84\xcc\x6b\x11\xce\x28\xb2\xc7\x13\xbf\xd2\xb5\xf2\x7e\x48\x1d\x84\x17\xd3\x22\xb7\xe8\x28\x25\xee\xdd\x53\xad\x01\xeb\x10\x6c\x54\xc4\x87\xbb\x99\xe3\xdb\x01\x40\x65\xc3\xb5\x0d\xc9\xa4\x5f\xb8\x3f\x9b\xc6\x1b\xdb\xe3\x61\xf1\xc7\x67\xdb\x87\x7d\x40\xd9\x86\xca\xff\x46\x9c\x4e\xd1\xda\xf1\xc7\x07\xf7\xe3\x7e\x03\x00\x00\xff\xff\xb6\xe8\xbb\xb2\x08\x01\x00\x00" func nodeversionbeaconScriptsGet_current_node_version_as_stringCdcBytes() ([]byte, error) { return bindataRead( @@ -4760,11 +4739,11 @@ func nodeversionbeaconScriptsGet_current_node_version_as_stringCdc() (*asset, er } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x56, 0xe6, 0x27, 0x42, 0x24, 0xcc, 0xd6, 0xfd, 0x7f, 0xbb, 0xf3, 0xf8, 0xbd, 0x9d, 0x60, 0x8a, 0xa8, 0x84, 0x6c, 0x5a, 0x7b, 0xd6, 0x71, 0x7e, 0x30, 0x72, 0x58, 0xfd, 0x22, 0xe4, 0xa7, 0x7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x95, 0x4a, 0x28, 0x9c, 0x3d, 0x34, 0xab, 0xe4, 0x22, 0xbd, 0x8d, 0x1f, 0x3b, 0x1f, 0xeb, 0x42, 0xe7, 0xa4, 0x2, 0xb1, 0xec, 0x6d, 0x34, 0x10, 0xc1, 0xd8, 0x6c, 0xc2, 0xec, 0xcd, 0x9f, 0x68}} return a, nil } -var _nodeversionbeaconScriptsGet_next_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x3d\x6b\xc3\x40\x10\x44\xfb\xfb\x15\x53\x4a\x4d\x94\x3a\x4d\xb0\x23\x15\x69\x4e\x20\x81\xfb\x8b\xb4\x72\x16\x74\xbb\x66\xef\xce\x28\x84\xfc\xf7\x90\xaf\x26\x72\x39\xf0\xde\x63\x38\x5e\xd4\x32\xbc\xce\x74\x22\x4b\xac\x72\xa4\x30\xa9\x60\x31\x8d\xb8\xdf\x7c\xdf\x76\xa7\x6e\x18\x9f\x7b\x7f\xec\x0e\x4f\xbd\x3f\xb4\xed\xd0\x8d\xa3\x73\x4d\xd3\x60\xa0\x6c\x4c\x57\x4a\xc8\xaf\x04\xa1\x2d\xe3\xfa\x53\xc1\x8b\x16\x99\x83\xbd\x41\x0d\xc2\xeb\x37\xce\xcb\x17\x67\x04\x4e\x10\x45\xb9\x4c\x1a\x59\xce\x7b\x67\xa6\x85\x85\x66\x17\xa6\x89\x52\xaa\xc2\xba\xd6\x58\x8a\x20\x06\x96\xaa\x7e\xd8\xdf\xbd\xfb\x5b\xbf\x85\x47\xbc\x3b\x00\x30\xca\xc5\xe4\x06\x7f\xa6\xec\x69\xcb\xff\xb4\xaa\x76\x1f\xee\x33\x00\x00\xff\xff\x89\xa3\xee\xcb\x13\x01\x00\x00" +var _nodeversionbeaconScriptsGet_next_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xbf\x6a\xc4\x30\x0c\xc7\xf1\xdd\x4f\xf1\x23\x53\xb2\x34\x7b\x97\x42\x1f\x20\x43\x87\xee\xae\x2d\xa7\x82\x58\x0a\xb2\x1d\x52\xca\xbd\xfb\x71\xff\x96\xcb\x8d\x12\x9f\xaf\x10\xe7\x55\xad\x62\xd2\x48\xdf\x64\x85\x55\x3e\xc9\x07\x15\x24\xd3\x8c\xee\xb0\xef\x9c\x1b\xc7\x11\x5f\x54\x8d\x69\xa3\x82\xfa\x4b\x10\xda\x2b\xb6\x1b\xc3\x8f\x36\x89\xde\xfe\xa0\x06\xe1\xe5\xca\x39\x5d\x9c\x11\xb8\x40\x14\x6d\x0d\x9a\x59\xe6\x63\x13\x29\xb1\x50\x74\x3e\x04\x2a\xa5\xf7\xcb\x32\x20\x35\x41\xf6\x2c\xfd\xf0\x7e\xfc\xf3\xed\x31\xdd\x2f\x7c\xe0\xdf\x01\x80\x51\x6d\x26\x2f\xfc\x4c\x75\xa2\xbd\x3e\x65\xfd\xe0\x4e\xee\x1c\x00\x00\xff\xff\x75\x24\x24\x44\x0c\x01\x00\x00" func nodeversionbeaconScriptsGet_next_version_boundaryCdcBytes() ([]byte, error) { return bindataRead( @@ -4780,11 +4759,11 @@ func nodeversionbeaconScriptsGet_next_version_boundaryCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_next_version_boundary.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5f, 0xa3, 0x70, 0xc8, 0x50, 0x45, 0x45, 0xf5, 0x2f, 0x3d, 0xf5, 0x1c, 0x62, 0x1f, 0xfd, 0xb6, 0x13, 0xb, 0xdc, 0xec, 0x0, 0x9, 0xb0, 0x42, 0x65, 0x91, 0xed, 0x4b, 0xb8, 0xcd, 0xd4, 0x5f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x75, 0xb3, 0x64, 0xda, 0xd6, 0x80, 0x83, 0xd1, 0x25, 0x20, 0x2d, 0x41, 0xf5, 0x29, 0xd2, 0xd2, 0x6a, 0x68, 0x45, 0x17, 0x46, 0x2a, 0x5a, 0x4b, 0x8, 0xc5, 0x33, 0xd4, 0xfa, 0xbd, 0xc1, 0x4d}} return a, nil } -var _nodeversionbeaconScriptsGet_next_version_update_sequenceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\xb1\x4e\xc3\x30\x18\x06\x77\x3f\xc5\x37\x26\x0b\x61\x40\x0c\x6c\x2d\x89\x50\x17\x47\xaa\x45\x77\xd7\xf9\x02\x91\xe2\xdf\xc1\xfe\x8d\x22\x21\xde\x1d\x09\xb1\xa0\xae\x77\xc3\xdd\x12\xb7\x94\x15\x36\x4d\xbc\x30\x97\x25\xc9\x91\x3e\x24\xc1\x9c\x53\xc4\xfd\x6e\xc7\x7e\xb8\x0c\x67\x77\x1a\xed\x71\x38\x3c\x8f\xf6\xd0\xf7\xe7\xc1\x39\x63\xba\xae\xc3\x0b\xb5\x40\xdf\x09\xe1\xae\x28\xfc\xa8\x94\x40\x48\x8d\x57\x66\xcc\x29\xff\x4a\xf5\xd7\x95\xa8\xdb\xe4\x95\x13\xf8\x49\x51\xe3\x43\x60\x29\x8d\x5f\xd7\x16\x73\x15\x44\xbf\x48\xd3\x3e\xe1\xf5\x24\xfa\xf8\x80\x2f\x03\x00\x99\x5a\xb3\xdc\xce\xdd\xbd\x51\x2d\x77\xfd\x07\xdd\x5f\xbd\x69\xcd\xf7\x4f\x00\x00\x00\xff\xff\x7b\x67\x35\x0d\xd6\x00\x00\x00" +var _nodeversionbeaconScriptsGet_next_version_update_sequenceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xce\x31\x8b\xc2\x40\x14\xc4\xf1\x7e\x3f\xc5\x90\x2a\x69\x2e\xcd\x71\xc5\x95\x36\x62\x93\x46\xb4\xdf\x6c\x26\x1a\xc8\xbe\x8d\x6f\xdf\x4a\x40\xfc\xee\x82\xd8\x48\xda\xdf\x14\xf3\x9f\xe2\x92\xd4\xd0\xa5\x81\x67\x6a\x9e\x92\xec\xe8\x43\x12\x8c\x9a\x22\xaa\x8d\x57\xce\xb5\x6d\x8b\x3d\x2d\xc3\xae\x84\x70\x35\x64\xde\x0a\x25\x10\x52\x62\x4f\xc5\x98\xf4\x3d\x9a\xef\x67\xa2\x2c\x83\x37\x0e\xe0\x9d\x62\xce\x87\xc0\x9c\x6b\x3f\xcf\x0d\xc6\x22\x88\x7e\x92\xba\xf9\xc7\xe9\x20\xf6\xf7\x8b\x87\x03\x00\xa5\x15\x95\x6d\xd5\xcf\x85\xd6\x71\xb5\x2f\x3c\x7e\xde\xeb\xc6\x3d\x5f\x01\x00\x00\xff\xff\x15\x0c\xe6\x10\xcf\x00\x00\x00" func nodeversionbeaconScriptsGet_next_version_update_sequenceCdcBytes() ([]byte, error) { return bindataRead( @@ -4800,11 +4779,11 @@ func nodeversionbeaconScriptsGet_next_version_update_sequenceCdc() (*asset, erro } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_next_version_update_sequence.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8c, 0xd8, 0x13, 0x8d, 0x9d, 0x9, 0x9c, 0xb1, 0x35, 0x73, 0xc3, 0xac, 0xd9, 0x26, 0x60, 0xbf, 0xb5, 0x3c, 0x63, 0x5d, 0xd3, 0x22, 0xca, 0xc5, 0x1f, 0xb7, 0xba, 0x6a, 0xe2, 0x88, 0xf1, 0x7a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0x59, 0xeb, 0x83, 0xb9, 0x7c, 0xaf, 0x1c, 0x21, 0xdf, 0x42, 0x68, 0xcd, 0x9, 0x94, 0x45, 0xa5, 0xd4, 0xc4, 0x6d, 0xa6, 0x19, 0x7f, 0xac, 0x69, 0x9a, 0x84, 0xe7, 0xe6, 0x74, 0x11, 0x3}} return a, nil } -var _nodeversionbeaconScriptsGet_version_boundariesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x4f\x6b\x84\x30\x10\xc5\xef\xf9\x14\xef\xb8\x42\x59\x7b\xde\xdb\x6e\xf5\xb0\x17\x2d\x0a\xde\x07\x1d\xd3\xc0\x3a\x91\x49\x94\x96\xd2\xef\x5e\x62\x2d\xf4\xcf\x5e\x42\x66\xe6\x3d\x7e\x3f\x37\xcd\x5e\x23\x2a\x3f\x70\xc7\x1a\x9c\x97\x0b\x53\xef\x05\xa3\xfa\x09\x8f\xaf\x55\x5d\x94\x5d\xd9\xb4\xd7\xba\xba\x94\xe7\xa7\xba\x3a\x17\x45\x53\xb6\xad\x31\x79\x9e\xa3\xe1\xb8\xa8\x04\xc4\x17\xc6\xba\xd7\xfd\x22\x03\xa9\xe3\x80\x99\x2c\x63\xf4\xba\x9d\xad\x5b\x59\xbe\x56\x24\x03\x66\xd6\x67\xb2\x7c\x34\xd4\xf7\x1c\xc2\x81\x6e\xb7\x0c\xe3\x22\x98\xc8\xc9\x21\xc5\x4e\xb8\x4a\x7c\xf8\x0e\x6e\x53\x76\xfa\x2f\x7a\xec\x7e\x71\xdf\x52\x18\xef\x06\x00\x74\xb3\xbb\x53\xb1\x1c\xbb\xbf\xb6\xa9\xb7\x73\xd3\xfb\x03\xbc\x7f\x32\xf3\xf1\x19\x00\x00\xff\xff\xd8\x87\x25\x09\x2d\x01\x00\x00" +var _nodeversionbeaconScriptsGet_version_boundariesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x3f\xcb\x83\x30\x10\xc6\xf7\x7c\x8a\x07\x27\x85\x17\xdd\x1d\xdf\xad\x4b\x29\x1d\xdc\x0f\x3d\xd3\x80\x5e\xe4\x12\x85\x52\xfa\xdd\x4b\xac\x85\xb6\x76\x09\xb9\xe7\x0f\xcf\xcf\x8d\x93\xd7\x88\xa3\xef\xb8\x61\x0d\xce\xcb\x3f\x53\xeb\x05\xbd\xfa\x11\xd9\x4e\xcf\x8c\xa9\xaa\x0a\x67\x8e\xb3\x4a\x40\xbc\x30\x96\xcd\xf7\xb3\x74\xa4\x8e\x03\x26\xb2\x8c\xde\xeb\x6a\x5b\xb7\xb0\x3c\x25\x92\x0e\x13\xeb\x89\x2c\x97\x86\xda\x96\x43\xc8\x69\x18\x0a\xf4\xb3\x60\x24\x27\x79\x8a\xd5\x38\x48\xfc\x7b\x05\xd7\xab\xa8\xf7\x84\x65\xf3\xb1\x7b\x4d\x61\xdc\x0c\x00\xe8\x4a\xf7\xa3\x62\x39\x36\xdf\xb4\xa9\xb7\xed\xa6\xf7\x6d\x78\xfb\x14\xe6\xfe\x08\x00\x00\xff\xff\xca\xa3\xbd\xbb\x26\x01\x00\x00" func nodeversionbeaconScriptsGet_version_boundariesCdcBytes() ([]byte, error) { return bindataRead( @@ -4820,11 +4799,11 @@ func nodeversionbeaconScriptsGet_version_boundariesCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_version_boundaries.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x0, 0x6e, 0xe3, 0xa1, 0x72, 0x53, 0xfd, 0x7f, 0x89, 0xab, 0xac, 0xcd, 0x72, 0x9c, 0xcf, 0x8c, 0xa9, 0x53, 0x25, 0x7c, 0x6d, 0x65, 0x67, 0x8, 0x6f, 0x5f, 0x64, 0xa4, 0x76, 0x27, 0x25, 0x5a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0xa1, 0x9, 0x94, 0xd7, 0xa0, 0x68, 0x9d, 0xa1, 0x3f, 0x5d, 0xe9, 0xd1, 0x3a, 0x52, 0x92, 0x56, 0xf0, 0xc1, 0x29, 0x9b, 0x93, 0xef, 0x15, 0x57, 0x95, 0x86, 0x70, 0xb4, 0xa4, 0x2b, 0xe2}} return a, nil } -var _nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xd0\x3f\x4f\x84\x40\x10\x05\xf0\x9e\x4f\xf1\xca\xa3\x11\x0b\x63\x61\x77\x27\x98\x5c\x03\x06\x22\xfd\xc2\x0e\xec\x46\x76\x96\xec\xce\x7a\xfe\x89\xdf\xdd\x84\xc3\xca\xd8\xcf\xfc\x66\xde\xb3\x6e\xf5\x41\x50\x7b\x4d\x3d\x85\x68\x3d\x9f\x48\x8d\x9e\x31\x05\xef\x70\xfb\x5e\x37\x65\xd5\x57\x6d\x77\x6e\xea\x53\x75\x7c\x6c\xea\x63\x59\xb6\x55\xd7\x65\x59\x51\x14\x68\x49\x52\xe0\x08\x31\x84\xb7\x7d\xdd\x27\xd6\x2a\x7c\x3c\x05\xa2\x4f\x7a\xa6\x60\xbd\xc6\xc5\xd8\xd1\x40\xd3\x64\x99\xae\xd3\xce\xb2\x75\xc9\x81\x93\x1b\x28\xc0\x4f\x18\x16\x3f\xbe\xc6\x8d\x15\xa3\x04\x2e\x45\xc1\xaa\x62\xc4\x40\x72\x21\x62\xa4\x55\x2b\xb1\x3c\x43\xfd\x1e\x83\x62\x0d\x2b\x71\xa7\xf5\x15\x81\x21\x3b\x1b\xd9\xa8\x61\x7f\x27\x53\xe3\x48\x31\x1e\xd4\xb2\xe4\x98\x12\xc3\x29\xcb\x87\xfc\x01\x2f\x67\x96\xfb\x3b\x7c\x65\x00\x10\xb6\x3c\x7f\xdb\xb8\x99\x49\xfa\xff\xf3\x1d\xf2\xec\xfb\x27\x00\x00\xff\xff\xb5\x6c\x77\xbf\x49\x01\x00\x00" +var _nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xd0\xb1\x4e\xc4\x30\x0c\x06\xe0\x3d\x4f\xf1\xeb\xa6\x76\xa1\x0b\x62\x60\x64\x40\x62\x41\x08\x89\xdb\xdd\xc4\x6d\x2c\x1a\xa7\x4a\x1c\x4e\x80\x78\x77\xa4\x5e\x99\x2a\x56\xdb\xfa\xec\xdf\x92\xd6\x5c\x0c\xcf\x39\xf0\x99\x4b\x95\xac\x0f\x4c\x3e\x2b\xa6\x92\x13\x4e\x87\xfa\xc9\xb9\x61\x18\xf0\xca\xd6\x8a\x56\x58\x64\x7c\xec\xfd\xdc\x34\x50\xf9\x7c\x2c\xcc\x5f\xfc\xc2\x45\x72\xc0\x25\x8a\x8f\x08\x3c\x89\xf2\x75\x3a\x89\x4a\x6a\x09\xda\xd2\xc8\x05\x79\xc2\xb8\x64\xff\x5e\x37\xd6\x22\x19\x52\xab\x86\x95\x6a\xc5\xc8\x76\x61\x56\xb4\x35\x90\x89\xce\xa0\xbf\x65\x20\x0d\x10\xab\x3b\x1d\xae\x08\x22\xcb\x1c\x6d\xa3\xc6\xfd\x1c\x47\xde\x73\xad\x1d\x2d\x4b\x8f\xa9\x29\x12\x89\x76\xfd\x3d\xde\x9e\xd4\xee\x6e\xf1\xed\x00\xa0\x6c\x79\x8e\x6f\xb8\x99\xd9\xce\xff\xe7\xeb\x7a\xf7\xf3\x1b\x00\x00\xff\xff\x2f\xba\x20\x02\x42\x01\x00\x00" func nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdcBytes() ([]byte, error) { return bindataRead( @@ -4840,11 +4819,11 @@ func nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdc() (*asset, er } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_version_boundary_freeze_period.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7f, 0xf5, 0x7b, 0xf6, 0x9, 0x90, 0x24, 0x7d, 0x58, 0xd, 0x5a, 0x95, 0x8d, 0x78, 0xa3, 0x31, 0xed, 0xb1, 0x7c, 0xca, 0x9a, 0x88, 0x77, 0x8f, 0x5a, 0x5, 0x9e, 0x5b, 0xb5, 0x29, 0x49, 0xa8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0x6, 0x8b, 0x76, 0x1c, 0x24, 0xee, 0x96, 0x38, 0x5f, 0x6a, 0xf, 0x88, 0xd6, 0x73, 0xa4, 0x44, 0x22, 0xa4, 0x98, 0xb7, 0x60, 0x1, 0x71, 0x29, 0xb4, 0xf9, 0xdd, 0x3c, 0xd0, 0xa2, 0x32}} return a, nil } -var _quorumcertificateAdminPublish_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x6a\xf3\x30\x10\x84\xef\x7a\x8a\x39\x05\x07\x7e\xec\xff\x1c\xda\x42\x50\xda\x73\xdd\xf4\x05\x36\xee\xc6\x16\x28\x5a\xb1\x5a\x27\x85\x90\x77\x2f\x8e\xdb\x92\x42\x74\x5c\xf4\x7d\x33\x4c\x38\x64\x51\xc3\x4b\x94\x93\x8f\x63\x31\xd6\xd6\x63\xaf\x72\xc0\xff\xcf\xd6\xaf\x37\x9b\xb7\xe7\xed\xd6\xb9\xa6\xc1\x3b\x17\x83\x29\xa5\x42\x9d\x05\x49\xd8\x8b\xc2\x06\x46\xeb\x41\x1f\x87\x90\x60\x82\x3c\xee\x62\x28\x03\x08\xca\x7b\x56\x4e\x1d\x4f\xac\x0d\x64\xa0\x18\xe5\x54\x40\x5d\x27\x63\xb2\x32\x7d\x57\xee\xc3\x94\x79\x75\xb5\x1e\x47\xb1\x90\x7a\xe7\x6e\x63\xce\xce\x01\x40\x56\xce\xa4\x5c\x95\xd0\x27\xd6\x15\x68\xb4\xa1\xf2\x94\x69\x17\x62\xb0\xc0\x65\x89\xc5\x7a\x56\x2f\x71\xbe\x22\xd3\x8b\x6c\x73\x3b\x4f\x19\x8f\x98\xe9\xba\xbb\xe1\xea\x62\xa2\xd4\x73\x1d\x4a\x19\xf9\x61\xf1\x67\x8a\x7a\x3d\xb1\x4f\xd5\x9d\xe3\x76\xc6\x5e\xc9\x86\xe5\x6f\xdc\x3d\xff\xf7\x26\xd5\x4f\x8d\x7f\x20\x5b\xa1\xb9\x9e\xbb\xe6\x28\xc6\xea\x95\xc9\x44\x67\xcf\xc5\x5d\xdc\x57\x00\x00\x00\xff\xff\xdd\x2c\xc9\x3f\x97\x01\x00\x00" +var _quorumcertificateAdminPublish_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x6a\xf3\x30\x10\x84\xef\x7a\x8a\x21\x87\xe0\xc0\x8f\x7d\x0f\x7f\x0b\x41\xd0\x73\x43\xfb\x02\x1b\x75\x63\x0b\x14\xad\x58\xad\x93\x43\xc8\xbb\x17\xdb\x6d\x49\x20\x3a\x0e\xfa\xbe\x19\x29\x9e\x8a\xa8\xe1\x2d\xc9\xc5\xa7\xb1\x1a\xeb\xde\xe3\xa8\x72\xc2\xea\x21\x5b\x39\xd7\x75\xf8\xe4\x6a\x30\xa5\x5c\x29\x58\x94\x8c\xa3\x28\x6c\x60\xec\x3d\xe8\xeb\x14\x33\x4c\x50\xc6\x43\x8a\x75\x00\x41\xf9\xc8\xca\x39\xf0\xc4\xda\x40\x06\x4a\x49\x2e\x15\x14\x82\x8c\xd9\xea\x74\x5d\xb9\x8f\x53\xc7\xec\xda\x7b\x9c\xc5\x62\xee\x9d\xbb\xaf\xb9\x3a\x07\x00\x45\xb9\x90\x72\x53\x63\x9f\x59\xb7\xa0\xd1\x86\xc6\x53\xa1\x43\x4c\xd1\x22\xd7\x0d\xd6\xbb\x45\xbd\xc1\x75\x46\xa6\x93\xd8\x96\x75\x9e\x0a\x5e\xb0\xd0\x6d\xb8\xe3\xda\x6a\xa2\xd4\x73\x1b\x6b\x1d\xf9\xff\xfa\xe1\xe9\xed\x6e\x62\x5f\x9b\x27\xe1\xc7\x82\xbd\x93\x0d\x9b\xbf\xba\x67\xfe\x9f\x3f\x69\x7e\x67\xfc\x03\xd9\x16\xdd\x1c\x87\xee\x2c\xc6\xea\x95\xc9\x44\x17\xcf\xcd\xdd\xdc\x77\x00\x00\x00\xff\xff\xbf\xcc\x5d\xab\x9b\x01\x00\x00" func quorumcertificateAdminPublish_voterCdcBytes() ([]byte, error) { return bindataRead( @@ -4860,11 +4839,11 @@ func quorumcertificateAdminPublish_voterCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/admin/publish_voter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0x38, 0x19, 0x4d, 0xca, 0xfd, 0x2d, 0xde, 0x32, 0x79, 0x40, 0x23, 0x2e, 0xde, 0xe9, 0xcf, 0x59, 0x38, 0xa9, 0x87, 0x36, 0xa0, 0xb9, 0x3d, 0xed, 0x98, 0xe0, 0xa0, 0xe, 0x43, 0xc0, 0x3f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2f, 0xd7, 0x84, 0xd7, 0x6, 0xe, 0x60, 0xa8, 0x8, 0xe9, 0x87, 0x59, 0x2c, 0x71, 0xbf, 0x8c, 0x9e, 0xd2, 0xe2, 0xa3, 0x9c, 0x39, 0xfc, 0xfe, 0x41, 0xe8, 0x1f, 0xc2, 0x19, 0x5b, 0x40, 0xe6}} return a, nil } -var _quorumcertificateAdminStart_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\xc1\x6e\xdb\x38\x10\xbd\xeb\x2b\x1e\x72\xc8\xca\xd8\xc0\x4e\x80\x45\x0e\xc2\x7a\x03\xaf\xdd\x02\xbe\x14\x75\xdc\xa6\x07\x41\x07\x86\xa2\x2d\x16\x32\xa9\x92\xa3\x38\x81\xe1\x7f\x2f\x48\x4a\x8e\x18\xbb\x02\x0c\xc8\xe2\x7b\x33\x6f\x66\xde\x50\xee\x1a\x6d\x08\x9f\x6b\xbd\x9f\xd7\xad\x25\x61\x56\x73\x6c\x8c\xde\xe1\xf6\x75\x35\x9f\x2d\x16\x8f\x9f\xd6\xeb\x24\x99\x4c\xf0\x4d\x58\x02\x19\xa6\x2c\xe3\x24\xb5\xc2\x46\x1b\x50\x25\xb0\x9a\x83\x95\x3b\xa9\x40\x1a\x96\x98\xa1\xfe\xeb\x8b\x26\xa9\xb6\x68\x84\x91\xba\x74\x21\xf6\x92\x2a\x30\x30\x63\xd8\x1b\xf4\x06\x5c\xd7\xb5\xe0\xa4\x0d\x94\x2e\x05\x78\x10\x60\x7d\xba\x99\xd9\xb6\x3b\xa1\xc8\x66\xee\x9f\xfb\x49\x55\x4a\x2e\x6c\x86\x99\x1a\x84\x08\x9c\xfe\xd0\xe1\xba\x4f\x5f\x74\x29\x96\x0b\x07\xef\xb1\x9e\x64\xfd\x5b\x5d\x7b\x91\x3e\xed\x72\x61\x21\x15\x04\xe3\x55\xcf\x75\x61\xdc\xd9\x0f\x21\xb7\x15\x5d\x8e\xe1\xb9\xfb\x00\x38\xe3\x27\x83\x46\xa5\x27\xe1\xf9\xf7\xa5\xa2\xbb\xfb\xe2\xe6\x4c\x63\x9e\xaf\xc9\x48\xb5\x2d\x8a\x9b\x38\x71\xee\x39\xf7\xff\x14\xc5\x08\x87\x24\x01\x80\xc6\x88\x86\x19\x91\x5a\xb9\x55\xc2\x64\x60\x2d\x55\xe9\xff\xda\x18\xbd\x7f\x62\x75\x2b\x46\xb8\x9e\x71\xae\x5b\x45\x27\x8a\x7b\x26\x13\x04\x10\x18\x8c\xd8\x08\x23\x14\x17\x6e\x66\xd1\x0c\xf5\xf3\x4f\xc1\xe9\x44\xaa\x05\x85\x83\x47\xb1\xc1\x14\x21\xe5\xd8\x92\x36\x6c\x2b\xc6\xcf\x3e\xde\xbf\xd7\x91\x7b\xc6\x33\x87\xff\x2f\x75\x26\xca\x70\xe1\x68\x1d\xd8\x5f\x19\x55\xa3\x53\x22\xf7\x3c\x3c\xa0\x61\x4a\xf2\xf4\x6a\xae\xdb\xba\x84\xd2\x84\x90\x22\x16\xfc\x8b\x07\x4d\x57\xa3\x24\x12\xda\xfb\x27\x43\x1e\xa7\xed\xde\x0a\x4c\x91\x17\x27\xca\xb0\x33\x4b\x12\x86\x91\x00\x55\x46\xb7\xdb\x2a\x1a\x26\x98\x2a\xc1\xb5\xb2\x64\x5a\x4e\x60\xe8\xc2\x7d\xec\x95\xdb\x07\xa9\x4a\xf1\xea\xdc\xd0\xcd\x7c\x38\x80\x5e\xe6\x60\xbe\x0b\xe9\x1d\xc2\xcc\x5b\x86\x43\x70\x40\x86\x30\xf0\x23\xa6\x38\x1c\x23\xf2\x0b\x33\x90\x98\xe2\x36\x8e\x39\x99\x60\x2d\x28\x48\x76\xb1\xff\xb2\x90\xa5\x17\x1d\xdc\xf9\x11\x3c\x67\x35\x6f\xeb\x50\xad\xeb\x27\xb1\xba\x43\xfa\x12\x22\x1f\x0f\xa9\x9b\x6e\x4f\x97\x0b\x57\x60\xec\xe0\xdc\x17\x5e\xe0\x10\x31\x86\x15\x5b\x4c\x87\x95\x77\x84\x3f\xc2\x03\xac\xe3\xd8\x5c\x16\xc9\x19\xf4\x62\x1f\xf3\xa0\xb0\x88\xb2\x9d\x73\x5d\x1b\x25\xfe\xc6\x5d\x74\x72\x8c\x81\xbd\x9f\xc6\xac\x69\x84\x2a\xd3\x8b\xa6\x4a\x7d\x21\x59\x98\xfc\x87\xe5\xbd\xa8\x70\xf4\x6e\xfa\x63\xb4\x9d\x6b\x7f\x77\xae\xe6\x78\x0a\xf7\xa6\xbf\x2d\xdd\x88\x6c\xdb\x34\xb5\x14\xe5\xfb\x05\xd9\xb3\xfa\xd5\x1c\xfb\x7b\x37\xf0\xd2\xf7\x35\xe8\xdf\x42\xc6\x63\x72\xfc\x1d\x00\x00\xff\xff\x35\x3b\x0b\xd9\xee\x05\x00\x00" +var _quorumcertificateAdminStart_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\xc1\x6e\xdb\x38\x10\xbd\xeb\x2b\x1e\x7c\xc8\xca\xd8\xc0\xde\x00\x8b\x1c\x84\xf5\x06\xae\x8d\x02\xbe\x14\x4d\xdd\xa6\x07\x41\x07\x86\xa2\x25\x16\x32\xa9\x92\xa3\xb8\x81\xe1\x7f\x2f\x48\x4a\x8e\x18\xbb\x02\x0c\xc8\xe2\x7b\x33\x6f\x66\xde\x50\xee\x5b\x6d\x08\x1f\x1b\x7d\x58\x35\x9d\x25\x61\x1e\x57\xd8\x19\xbd\xc7\x24\xfa\x36\x49\x92\xf9\x1c\x5f\x85\x25\x90\x61\xca\x32\x4e\x52\x2b\xec\xb4\x01\xd5\x02\x8f\x2b\xb0\x72\x2f\x15\x48\xc3\x12\x33\x34\x7c\x7d\xd1\x24\x55\x85\x56\x18\xa9\x4b\x17\xe2\x20\xa9\x06\x03\x33\x86\xbd\x42\xef\xc0\x75\xd3\x08\x4e\xda\x40\xe9\x52\x80\x87\x84\xd6\xa7\x5b\x9a\xaa\xdb\x0b\x45\x36\x73\xff\xdc\x4f\xaa\x52\x72\x61\x33\x2c\xd5\x28\x44\xe0\x0c\x87\x0e\xd7\x7f\xfa\xa4\x4b\xb1\x59\x3b\xf8\x80\xf5\x24\xeb\xdf\x9a\xc6\x8b\xf4\x69\x37\x6b\x0b\xa9\x20\x18\xaf\x07\xae\x0b\xe3\xce\xbe\x0b\x59\xd5\x74\x3d\x86\xe7\x1e\x02\xe0\x82\x9f\x8c\x1a\x95\x9e\x85\xe7\xdf\x36\x8a\xee\xee\x8b\xdb\x0b\x8d\x79\xbe\x25\x23\x55\x55\x14\xb7\x71\xe2\xdc\x73\xee\xff\x2d\x8a\x29\x8e\x49\x02\x00\xad\x11\x2d\x33\x22\xb5\xb2\x52\xc2\x64\x60\x1d\xd5\xe9\x07\x6d\x8c\x3e\x3c\xb1\xa6\x13\x53\xdc\x2c\x39\xd7\x9d\xa2\x33\xc5\x3d\xf3\x39\x02\x08\x0c\x46\xec\x84\x11\x8a\x0b\x37\xb3\x68\x86\xfa\xf9\x87\xe0\x74\x26\x35\x82\xc2\xc1\x17\xb1\xc3\x02\x21\xe5\xcc\x92\x36\xac\x12\xb3\x67\x1f\xef\xbf\x9b\xc8\x2d\xb3\xa5\xc3\xff\x9f\x3a\x23\x65\xb8\x72\xb4\x0d\xec\xcf\x8c\xea\xe9\x39\x91\x7b\x1e\x1e\xd0\x32\x25\x79\x3a\x59\xe9\xae\x29\xa1\x34\x21\xa4\x88\x05\xff\xe4\x41\xd3\x64\x9a\x44\x42\x07\xff\x64\xc8\xe3\xb4\xfd\x5b\x81\x05\xf2\xe2\x4c\x19\x77\x66\x43\xc2\x30\x12\xa0\xda\xe8\xae\xaa\xa3\x61\x82\xa9\x12\x5c\x2b\x4b\xa6\xe3\x04\x86\x3e\xdc\xfb\x5e\xb9\x7d\x90\xaa\x14\xbf\x9c\x1b\xfa\x99\x8f\x07\x30\xc8\x1c\xcd\x77\x2d\xbd\x43\x98\x79\xcd\x70\x0c\x0e\xc8\x10\x06\x7e\xc2\x02\xc7\x53\x44\x7e\x61\x06\x12\x0b\xfc\x13\xc7\x9c\xcf\xb1\x15\x14\x24\xbb\xd8\x7f\x59\xc8\xd2\x8b\x0e\xee\x7c\x0f\x5e\xb1\x86\x77\x4d\xa8\xd6\xf5\x93\x58\xd3\x23\x7d\x09\x91\x8f\xc7\xd4\x5d\xbf\xa7\x9b\xb5\x2b\x30\x76\x70\xee\x0b\x2f\x70\x8c\x18\xe3\x8a\x2d\x16\xe3\xca\x7b\xc2\x1f\xe1\x01\xd6\x73\x6c\x2e\x8b\xe4\x02\x7a\xb5\x8f\x79\x50\x58\x44\xd9\x2e\xb9\xae\x8d\x12\x7f\xe3\x2e\x3a\x39\xc5\xc0\xc1\x4f\x33\xd6\xb6\x42\x95\xe9\x55\x53\xa5\xbe\x90\x2c\x4c\xfe\xdd\xf2\x5e\x55\x38\x7d\x33\xfd\x29\xda\xce\xad\xbf\x3b\x1f\x57\x78\x0a\xf7\xa6\xbf\x2d\xdd\x88\x6c\xd7\xb6\x8d\x14\xe5\xdb\x05\x39\xb0\x86\xd5\x9c\xf9\x7b\x37\xf0\xd2\xb7\x35\x18\xde\x42\xc6\x53\x72\xfa\x1d\x00\x00\xff\xff\xd2\x6f\xc8\x6d\xf2\x05\x00\x00" func quorumcertificateAdminStart_votingCdcBytes() ([]byte, error) { return bindataRead( @@ -4880,11 +4859,11 @@ func quorumcertificateAdminStart_votingCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/admin/start_voting.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe4, 0xf3, 0x66, 0x1a, 0x46, 0x4b, 0xab, 0xcc, 0xa2, 0xce, 0x14, 0x89, 0xee, 0xf8, 0x11, 0x2, 0x66, 0x76, 0xa4, 0x4d, 0x48, 0x84, 0xb1, 0x88, 0x9a, 0x4e, 0x97, 0x80, 0x8f, 0xd0, 0xc3, 0xc4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2a, 0x25, 0xc2, 0xfc, 0x62, 0x2e, 0xbc, 0xbe, 0xa8, 0x6, 0x15, 0x20, 0x12, 0xd0, 0x13, 0xe, 0x7, 0x1e, 0x52, 0x3, 0x82, 0xe1, 0xca, 0x1d, 0xcb, 0xfc, 0xda, 0x7b, 0x42, 0x3f, 0xa0, 0xfd}} return a, nil } -var _quorumcertificateAdminStop_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x4e\xc3\x30\x10\x44\xef\xfe\x8a\x51\x0f\x55\x72\x69\x39\x57\x40\x55\x52\x38\xd3\x16\xf5\x6e\xdc\x4d\x62\x29\xf1\x9a\xf5\x86\x22\x55\xfd\x77\xe4\x44\x54\x20\x31\x47\x7b\xdf\xce\xcc\xfa\x3e\xb2\x28\x5e\x3a\x3e\x57\xdd\x90\x94\x64\x57\xa1\x16\xee\x71\xf7\xb5\xab\x36\xdb\xed\xfe\xf9\x70\x30\x66\xb9\xc4\x1b\x25\x85\x8a\x0d\xc9\x3a\xf5\x1c\x50\xb3\x40\x5b\xc2\xae\x82\xe3\xa0\x62\x9d\x42\x19\x49\x39\x8e\xef\x9f\xac\x3e\x34\x88\x24\x9e\x4f\xc6\xfc\x46\x2f\xc6\x00\x40\x14\x8a\x56\xa8\x48\xbe\x09\x24\x2b\xd8\x41\xdb\xe2\x89\x45\xf8\x7c\xb4\xdd\x40\x25\xe6\x1b\xe7\x78\x08\x5a\xe2\x32\x12\x59\x1d\x29\xec\xa9\xf7\x61\x4f\x35\x1e\x30\xc1\x8b\xa4\x2c\xb6\xa1\xc5\xfb\x88\xdf\xcf\xff\x34\x5a\x6c\xf2\xfc\x63\x91\x8b\xad\xf0\xcf\xd7\x61\xa2\x5f\xad\xb6\xe5\xcd\x28\x6b\xbd\x46\xb4\xc1\xbb\x62\x56\xf1\xd0\x9d\x10\x58\x31\x59\x40\xa8\x26\xa1\xe0\x28\xb7\xfe\x70\x53\xa6\x59\x69\x6e\xfc\x4f\xc8\x9c\x2d\x1e\xc7\x6b\x14\xd3\xf6\xab\xb9\x7e\x07\x00\x00\xff\xff\x19\x6a\xd3\xa1\x79\x01\x00\x00" +var _quorumcertificateAdminStop_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x4f\xc3\x30\x14\x84\x77\xff\x8a\x53\x86\x2a\x59\xd2\xbd\x02\xaa\x12\x89\x99\x02\xea\x6e\x9c\x97\xc4\x52\xe2\x67\x9e\x5f\xe8\x50\xf5\xbf\x23\x27\xa2\xa2\x12\x37\x9e\xfd\xf9\xee\xec\xa7\xc8\xa2\x78\x19\xf9\xdc\x8c\x73\x52\x92\x63\x83\x4e\x78\x42\x71\xe7\x15\xc6\x6c\xb7\xf8\xa0\xa4\x50\xb1\x21\x59\xa7\x9e\x03\x3a\x16\xe8\x40\x38\x36\x70\x1c\x54\xac\x53\x28\x23\x29\xc7\xc5\xff\x66\xf5\xa1\x47\x24\xf1\xdc\x1a\xf3\x17\xbd\x18\x03\x00\x51\x28\x5a\xa1\x32\xf9\x3e\x90\xec\x60\x67\x1d\xca\x67\x16\xe1\xf3\xc9\x8e\x33\x55\xd8\x1c\x9c\xe3\x39\x68\x85\xcb\x42\x64\x8d\xa4\xb0\xed\xe4\xc3\x1b\x75\x78\xc4\x0a\xd7\x49\x59\x6c\x4f\xf5\xe7\x82\x3f\x6c\xee\x16\xd4\x87\x7c\xff\xa9\xcc\xe3\x76\xf8\xe7\xe8\x7d\xa5\x5f\xad\x0e\xd5\x2d\x28\x6b\xbf\x47\xb4\xc1\xbb\xb2\x68\x78\x1e\x5b\x04\x56\xac\x11\x10\xea\x48\x28\x38\xca\xab\xbf\xdc\xda\xa9\xa8\xcc\x8d\xff\x2d\x99\xbb\xc5\xd3\xf2\x1b\xe5\xfa\xfa\xd5\x5c\x7f\x02\x00\x00\xff\xff\x0d\x6e\x1d\x9b\x7d\x01\x00\x00" func quorumcertificateAdminStop_votingCdcBytes() ([]byte, error) { return bindataRead( @@ -4900,11 +4879,11 @@ func quorumcertificateAdminStop_votingCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/admin/stop_voting.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0xc1, 0xae, 0x47, 0x8f, 0x3c, 0x13, 0x43, 0x2, 0xaf, 0xdf, 0x0, 0x51, 0xdf, 0xb3, 0x8b, 0x3a, 0x90, 0x31, 0x47, 0x72, 0x4b, 0xb6, 0xbb, 0xe1, 0x54, 0xcc, 0x36, 0x4d, 0xc4, 0x32, 0xcc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x77, 0xe8, 0x1e, 0x53, 0x15, 0x63, 0xab, 0xf7, 0x58, 0xcf, 0x72, 0xc3, 0x9c, 0x7f, 0xb1, 0x1c, 0x0, 0x14, 0xa6, 0x2f, 0x3e, 0xad, 0x97, 0xe2, 0x6d, 0xfa, 0xe9, 0x25, 0xc2, 0xec, 0xfb}} return a, nil } -var _quorumcertificateCreate_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x54\x41\x6f\x1a\x4d\x0c\xbd\xf3\x2b\xac\x1c\xa2\x45\x4a\x96\xef\x8c\x92\x2f\x42\x9b\xb6\xaa\x7a\x68\x08\x51\x7a\x36\x33\x86\x9d\x66\x98\xd9\x7a\xbc\x50\x54\xe5\xbf\x57\x9e\xd9\x00\xab\xae\x84\x18\xcf\xda\xcf\x7e\xcf\x0f\xdc\xae\x8b\x2c\xf0\xd9\xc7\x43\xe3\xfb\x24\xc4\xcb\x06\x36\x1c\x77\xf0\xdf\xef\x65\xb3\x78\x7c\x7c\xfe\xb4\x5a\x4d\x26\xb3\x19\xbc\x50\x12\x78\x61\x0c\x09\x8d\xb8\x18\x60\x13\x19\x10\x42\xb4\x04\x12\x81\xe9\x57\xaf\x19\x08\xcb\x06\x5e\xa3\x10\xc3\xf7\xf5\x4f\x32\x52\xd0\xa4\x25\x30\x31\x08\xa3\x11\x45\xfb\xe1\xbc\x87\x35\x41\xdf\x59\x14\xb2\x8a\xd0\x27\xca\x69\xd4\x45\xd3\x9e\x92\xe1\xd0\x52\x00\x69\x51\xc0\x25\x30\x71\xd7\x79\x12\xb2\x79\xa2\x96\x60\x9f\x3b\xc5\xd2\x29\x06\x7f\x84\x40\x64\x93\xe2\xad\x09\x0c\x53\x46\x8f\xc1\x10\x60\xb0\x0a\xb1\x47\xef\x6c\x1e\x9e\xf6\xc4\x47\xd8\xf4\xd2\xf3\xd0\x55\x51\x0f\x2d\x71\x19\x24\x53\x73\x09\x70\xa8\x49\x82\x6f\x64\xf3\x75\x56\xe4\x09\x19\x77\x24\xc4\x69\xae\xa1\x7e\xd0\xee\x5c\x58\x58\xcb\x94\xd2\x3c\x83\x60\x09\x20\x6e\x72\xb8\x6c\x4a\xce\xa5\x64\x7a\x5f\x14\x53\xa9\x14\x46\x5b\x7c\x7d\x2c\x00\xce\x7e\xd4\x16\xa9\x55\x89\x0c\x6c\x4c\xec\x43\x56\x25\x76\xc4\x28\x2e\x6c\xb5\x56\xa7\x74\x61\xfb\x8d\x8e\xf3\xac\xd0\x10\xc3\x1b\x1d\x33\xeb\xb2\x09\xef\xc9\x48\xe4\x81\x8c\x9c\xd7\x5a\x8d\x29\x0c\x87\x9b\xd3\x48\x2b\x61\x17\xb6\x37\xa3\x36\xe5\x6e\x0a\x7f\x26\x13\x00\x80\x8e\xa9\x43\xa6\x2a\xb9\x6d\x20\x9e\x03\xf6\xd2\x56\x2b\xdc\xd3\x2b\xfa\x9e\xa6\x70\xbd\x28\xa3\x9f\x0a\xf4\x99\xcd\xe0\x0b\x0d\xcc\xb2\x40\x4c\x1b\x62\xd2\xc5\x9d\x0c\x54\x5e\x0c\xc4\x4f\x95\x9e\x64\x78\x73\x0f\x5b\x92\x01\x7c\xc4\x63\xfa\x6f\xf2\x33\x6d\xe0\xbe\x1c\x6b\x83\x1d\xae\x9d\x77\xe2\x28\xd5\xeb\xc8\x1c\x0f\x77\xd7\xa3\x9f\x44\xbd\xd0\xc4\xff\xab\x59\xd7\xaf\xbd\x33\xb3\x6c\xbb\x46\xdd\x15\xf9\x0c\xae\xcf\xc3\x03\x74\x18\x9c\xa9\xae\x9a\xd8\x7b\x75\x8b\x40\x81\x04\xbc\xe0\x24\xf1\xcc\xe8\x6a\x3a\x92\x21\xc3\x92\xba\xee\xd2\xdb\xea\xde\x84\x7b\x02\x27\x5a\x9c\x24\x32\x6e\x69\xc4\xab\xe4\xdf\xdd\x9e\x08\xd6\xc5\xff\xd9\x5b\xd5\xc7\x02\xcb\xf7\x78\x81\xe7\xf3\xc5\x28\x65\x7d\xf5\xd0\xa9\xd6\xe6\xd5\xdd\x6d\x6e\x72\x03\x12\xe7\xe3\x3f\x8d\x3a\x77\x59\x95\xe4\x27\x94\xb6\xc8\xf2\x3e\x79\xff\x1b\x00\x00\xff\xff\x17\xb3\x35\x5f\x63\x04\x00\x00" +var _quorumcertificateCreate_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x54\xc1\x6e\xdb\x30\x0c\xbd\xe7\x2b\x88\x1c\x0a\x07\x68\x9d\x7b\xd0\xae\x28\x32\x6c\x18\x76\x58\xbb\x16\xdd\x99\x91\x99\x58\xab\x22\x7a\x14\x9d\x20\x18\xfa\xef\x03\x25\xd7\x89\x31\x03\x41\x24\x9a\x7c\xe4\x7b\x7c\x89\xdf\x77\x2c\x0a\x5f\x02\x1f\xd7\xa1\x4f\x4a\xf2\xb4\x86\xad\xf0\x1e\xe6\x93\xd8\x7c\x36\x5b\x2e\xe1\x85\x92\xc2\x8b\x60\x4c\xe8\xd4\x73\x84\x2d\x0b\x20\x44\x6e\x08\x94\x41\xe8\x4f\x6f\x19\x08\x4f\x6b\x78\x65\x25\x81\x1f\x9b\xdf\xe4\xb4\x20\x6a\x4b\xe0\x38\xaa\xa0\x53\x43\xfb\xe5\x43\x80\x0d\x41\xdf\x35\xa8\xd4\x18\x42\x9f\x28\xa7\x51\xc7\xae\x1d\x93\xe1\xd8\x52\x04\x6d\x51\xc1\x27\x70\xbc\xef\x02\x29\x35\x79\xa2\x96\xe0\x90\x3b\x71\xe9\xc4\x31\x9c\x20\x12\x35\xc9\xf0\x36\x04\x4e\x28\xa3\x73\x74\x04\x18\x1b\x83\x38\x60\xf0\x4d\x1e\x9e\x0e\x24\x27\xd8\xf6\xda\xcb\xd0\xd5\x50\x8f\x2d\x49\x19\x24\x53\xf3\x09\x70\xa8\x49\x8a\x6f\xd4\xe4\x70\x56\xe4\x11\x05\xf7\xa4\x24\x69\x65\x57\xfb\x60\xb3\xf7\xf1\xa1\x69\x84\x52\x5a\x65\x10\x2c\x17\xe0\x6d\xbe\x3e\xad\x4b\xce\xa5\x64\x16\x2f\x8a\x99\x54\x06\x63\x2d\xbe\x7d\x2e\x00\xbe\xf9\xa8\x2d\x52\x9b\x12\x19\xd8\x39\xee\x63\x56\x85\x3b\x12\x54\x1f\x77\x56\x6b\x53\xfa\xb8\xfb\x4e\xa7\x55\x56\x68\xb8\xc3\x1b\x9d\x32\xeb\xb2\x89\x10\xc8\x29\xcb\x40\x46\xcf\x6b\xad\xa6\x14\x86\xc3\xf5\x38\xd2\xb3\x8a\x8f\xbb\xeb\x49\x9b\x12\x5b\xc0\xdf\xd9\x0c\x00\xa0\x13\xea\x50\xa8\x4a\x7e\x17\x49\x56\x80\xbd\xb6\xd5\x33\x1e\xe8\x15\x43\x4f\x0b\xb8\x7a\x28\xa3\x8f\x05\xf6\x2c\x97\xf0\x95\x06\x66\x59\x20\xa1\x2d\x09\xd9\xe2\x46\x03\x95\x17\x03\xf1\xb1\x32\x90\x0e\x6f\xee\x60\x47\x3a\x80\x4f\x78\x2c\xfe\x4f\xfe\x49\x5b\xb8\x2b\xc7\xda\x61\x87\x1b\x1f\xbc\x7a\x4a\xf5\x86\x45\xf8\x78\x7b\x35\xf9\x09\xd4\x0f\x96\xf8\xa9\x5a\x76\xfd\x26\x78\xb7\xcc\xb6\x5b\x9b\xbb\x58\xce\xe0\xf6\xdc\xdf\x43\x87\xd1\xbb\x6a\xbe\xe6\x3e\x98\x5b\x14\x0a\x24\xe0\x05\x27\xe5\x33\xa3\xf9\x62\x22\x43\x86\x25\x73\xdd\xa5\xb7\xcd\xbd\x09\x0f\x04\x5e\xad\x38\x29\x0b\xee\x68\xc2\xab\xe4\xdf\xde\x8c\x04\xeb\xe2\xff\xec\xad\xea\x63\x81\xe5\x7b\xba\xc0\xf3\xf9\x62\x94\xb2\xbe\x7a\xe8\x54\x5b\xf3\xea\xf6\x26\x37\xb9\x06\xe5\xd5\xf4\x8f\xa3\xce\x5d\x9e\x4b\xf2\x23\x6a\x5b\x64\x79\x9f\xbd\xff\x0b\x00\x00\xff\xff\x8f\x15\x72\x2c\x67\x04\x00\x00" func quorumcertificateCreate_voterCdcBytes() ([]byte, error) { return bindataRead( @@ -4920,11 +4899,11 @@ func quorumcertificateCreate_voterCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/create_voter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe9, 0x48, 0xa6, 0x6f, 0xa7, 0x22, 0x17, 0x90, 0xdd, 0x8b, 0x56, 0x49, 0x45, 0x60, 0xb, 0x78, 0x4d, 0x45, 0x46, 0x85, 0x69, 0xb, 0xf, 0x31, 0x4f, 0x87, 0x38, 0xaf, 0xfd, 0x78, 0x6f, 0xde}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xad, 0x49, 0x65, 0x97, 0x80, 0x97, 0x22, 0x49, 0xa2, 0xf8, 0x29, 0x1b, 0x8, 0xa4, 0xf, 0x7f, 0xbe, 0xec, 0x14, 0x9f, 0x6a, 0x19, 0xfc, 0x68, 0x8a, 0xca, 0xa2, 0xab, 0x45, 0x42, 0x14, 0xcd}} return a, nil } -var _quorumcertificateScriptsGenerate_quorum_certificateCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\x31\x4b\x43\x31\x14\x46\xf7\xfc\x8a\x8f\x2e\x26\x4b\xab\x8b\x43\x41\x8a\xa4\x2a\x1d\x9f\xc5\x49\x1c\x42\x7a\x5f\x0d\xe4\xdd\xd4\xdc\x1b\x2c\x88\xff\x5d\x6c\x5f\xad\x9a\x2d\x70\x0e\xe7\xbb\x69\xd8\x95\xaa\xb8\xcf\xe5\xdd\xe7\x26\x4a\xb5\xf3\xe8\x6b\x19\x70\xb9\xef\xfc\xed\x72\xf9\x78\xb7\x5e\x1b\x33\x9b\xe1\x81\x54\xa0\xaf\x04\xd1\xa0\x4d\x50\x7a\x04\xc4\xa3\x73\x21\xe8\x3c\xb6\xc4\x54\x83\xa6\xc2\xc6\x84\x18\x49\xc4\x86\x9c\x1d\xfa\xc6\x18\x42\x62\x3b\xd2\x2b\xde\xd0\x7e\x8e\xa7\x15\xeb\xd5\xb5\x9b\xff\x8d\x4f\xcf\x33\x3e\x8c\x01\x80\x4c\x7a\xea\x08\x6e\xfe\xd1\x5b\xd2\xf1\x23\xd6\x1d\xf9\x4a\xda\x2a\xff\x28\xcf\xbf\xab\x2f\xd3\x71\x24\x75\xad\xd4\x36\x78\xaa\x9a\xfa\x14\x83\x92\x75\x07\xfb\xfb\x2d\x16\xd8\x05\x4e\xd1\x4e\x7c\x69\x79\x03\x2e\x7a\x3a\x8e\xf0\x76\x10\x11\xcf\xe6\xc4\x19\xf3\xf9\x15\x00\x00\xff\xff\x89\x80\x11\x90\x49\x01\x00\x00" +var _quorumcertificateScriptsGenerate_quorum_certificateCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\x41\x4b\x03\x31\x10\x85\xef\xf9\x15\x8f\xbd\x98\x5c\x5a\xbc\x78\x28\x48\x0f\x01\xa5\xc7\x3d\x78\x12\x0f\x21\x9d\xad\x81\x64\x52\x33\x13\x14\xc4\xff\x2e\xb6\x5b\xeb\x3a\xb7\x19\xbe\x8f\xf7\x26\x95\x63\x6d\x8a\x87\x5c\xdf\x7d\xee\xa2\xd4\x46\x8f\xa9\xd5\x82\x61\x71\x1b\x8c\x59\xaf\xf1\x48\x2a\xd0\x57\x82\x68\xd0\x2e\xa8\x13\x02\xe2\x99\xb9\x11\x8c\x1e\x07\x62\x6a\x41\x53\x65\x63\x42\x8c\x24\x62\x43\xce\x0e\x53\x67\x94\x90\xd8\xce\xf4\x8e\xf7\xf4\xb1\xc1\xd3\x8e\xf5\xf6\xce\x6d\x96\x05\x56\xd7\x2a\x9f\xc6\x00\x40\x26\xbd\xe4\x08\xee\xff\xd1\x07\xd2\x79\x11\xeb\xce\x7c\x23\xed\x8d\x7f\x95\xe7\xbf\xa9\x2f\xab\xb9\x24\x8d\xbd\xb6\x5e\x3c\x35\x4d\x53\x8a\x41\xc9\xba\x93\xfd\x33\xdb\x2d\x8e\x81\x53\xb4\x83\xaf\x3d\xef\xc1\x55\x2f\xcf\x11\xde\x4e\x22\xe2\xd5\x1c\x9c\x31\x5f\xdf\x01\x00\x00\xff\xff\x81\x01\xe7\xc1\x4d\x01\x00\x00" func quorumcertificateScriptsGenerate_quorum_certificateCdcBytes() ([]byte, error) { return bindataRead( @@ -4940,11 +4919,11 @@ func quorumcertificateScriptsGenerate_quorum_certificateCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/generate_quorum_certificate.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0x22, 0x2c, 0xc9, 0x96, 0x79, 0xd0, 0x1e, 0x97, 0xfc, 0x77, 0xb, 0xa7, 0xe9, 0xdc, 0xcb, 0x79, 0x40, 0x96, 0xad, 0x14, 0x84, 0x2e, 0x5e, 0xe0, 0xbc, 0xd6, 0xb2, 0xf, 0x1e, 0x9, 0xc5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0x7e, 0xec, 0xe8, 0x58, 0x2b, 0x59, 0xe0, 0xfa, 0xc3, 0x3, 0xd8, 0xb2, 0xbd, 0xf7, 0xe1, 0xda, 0xa1, 0x9b, 0x9c, 0x12, 0x5, 0x3d, 0xdd, 0x99, 0x39, 0x29, 0x37, 0x8c, 0xee, 0x72, 0x48}} return a, nil } -var _quorumcertificateScriptsGet_clusterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x30\xa8\x08\x74\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x68\xf0\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\xb4\x42\x35\x4b\x0f\xca\x52\xa8\xe6\xe2\x52\x50\x50\x50\xc8\x49\x2d\x51\x80\xea\x2b\x56\xb0\x45\x53\x9b\x9e\x5a\x02\xe5\x14\x6b\x68\x42\xd4\x17\xa5\x96\x94\x16\xe5\xc1\xb5\x44\x23\xdb\x19\xcb\xc5\x55\x0b\x08\x00\x00\xff\xff\x03\x73\xf2\x7e\xc0\x00\x00\x00" +var _quorumcertificateScriptsGet_clusterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x50\x42\x11\x53\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x28\xf0\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\xb4\x42\x35\x4f\x0f\xca\x52\xa8\xe6\xe2\x52\x50\x50\x50\xc8\x49\x2d\x51\x80\xea\x2b\x56\xb0\x45\x53\x9b\x9e\x5a\x02\xe5\x14\x6b\x68\x42\xd4\x17\xa5\x96\x94\x16\xe5\xc1\xb5\x44\x23\xdb\x19\xcb\xc5\x55\x0b\x08\x00\x00\xff\xff\xf7\xb0\x6f\x1a\xc4\x00\x00\x00" func quorumcertificateScriptsGet_clusterCdcBytes() ([]byte, error) { return bindataRead( @@ -4960,11 +4939,11 @@ func quorumcertificateScriptsGet_clusterCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0xfb, 0x4c, 0x6f, 0xc7, 0xd1, 0x51, 0x95, 0xef, 0xad, 0x6e, 0x4f, 0x9, 0x54, 0x1b, 0x66, 0xa4, 0x35, 0x9b, 0xf2, 0xd7, 0x77, 0xbb, 0x39, 0xa9, 0xbe, 0x75, 0xb, 0x4d, 0xf2, 0x68, 0x74}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0x25, 0x34, 0x4, 0xee, 0x6c, 0x4f, 0xfe, 0x9f, 0x3c, 0x45, 0xb8, 0x36, 0x94, 0x90, 0xe, 0xd1, 0xe0, 0x85, 0x2c, 0x17, 0x23, 0xb8, 0x1d, 0xda, 0x3a, 0xc0, 0x29, 0xde, 0x80, 0x86, 0x3d}} return a, nil } -var _quorumcertificateScriptsGet_cluster_completeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\x31\x4b\x03\x41\x10\x85\xfb\xf9\x15\xcf\xca\xbb\x26\xd1\xc6\x22\x90\x42\x37\x2a\x29\xcf\x60\x25\x16\xcb\x39\x17\x17\xe6\x66\xc2\xce\x2c\x06\xc4\xff\x6e\x91\x28\x5a\x3e\xf8\xbe\xf7\x5e\x99\x0f\x56\x03\x0f\x62\x1f\x49\x9a\x07\xd7\x21\x61\xaa\x36\xe3\xea\x38\xa4\xdb\xcd\xe6\xe9\x7e\xb7\x23\x5a\x2e\xf1\xc8\xe1\x88\x77\x86\x47\x8e\xe6\xb0\x09\x19\xe3\xc9\xb9\x74\x0c\x09\x7b\x56\xae\x39\x8a\x29\x51\x1e\x47\x76\xef\xb2\x48\x8f\xa9\x29\xe6\x5c\xb4\x3b\xd3\x5b\x7d\xe3\xe3\x0a\xcf\x5b\x8d\xeb\x9b\x7e\x85\x3b\x33\xc1\x27\x11\x00\x08\xc7\x4f\xa9\x63\xfd\xff\xd7\x62\xcf\x71\x0e\xde\xf5\x27\xbe\x72\xb4\xaa\xbf\xca\xcb\xdf\x89\xd7\x45\xf1\x64\xf3\x41\x38\xb8\xeb\x71\xb1\x86\x16\x21\xfa\xfa\x0e\x00\x00\xff\xff\x4c\xba\x16\xcd\xf4\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_completeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\x3f\x4b\x43\x41\x10\xc4\xfb\xfd\x14\x63\x1a\xdf\x35\x09\x36\x16\x81\x34\x1e\x28\x29\x53\x58\x89\xc5\xf1\xdc\x17\x0f\xf6\x76\xc3\xed\x1e\x0a\xe2\x77\xb7\x48\x14\x53\xce\xf0\x9b\x3f\xb5\x9d\xac\x07\x1e\xc5\x3e\xb2\x0c\x0f\xee\x87\x8c\xa5\x5b\xc3\xea\xca\x5b\x11\x6d\x36\x78\xe2\x70\xc4\x3b\xc3\xa3\xc4\x70\xd8\x82\x82\xf9\xcc\xdc\x3a\x0e\x19\x47\x56\xee\x25\xaa\x29\x51\x99\x67\x76\x9f\x8a\x48\xc2\x32\x14\xad\x54\x9d\x2e\xf4\x5e\xdf\xf8\x73\x8b\xe7\xbd\xc6\xdd\x7d\xda\xe2\xc1\x4c\xf0\x45\x04\x00\xc2\xf1\x5b\xea\xd8\x5d\x7f\x5b\x1f\x39\x2e\xc2\xa7\x74\xe6\x3b\xc7\xe8\xfa\x17\x79\xf9\x3f\xf1\xba\xae\x9e\xad\x9d\x84\x83\xa7\x84\x9b\x1d\xb4\x0a\xd1\xf7\x4f\x00\x00\x00\xff\xff\xf4\x49\xb4\xa1\xf8\x00\x00\x00" func quorumcertificateScriptsGet_cluster_completeCdcBytes() ([]byte, error) { return bindataRead( @@ -4980,11 +4959,11 @@ func quorumcertificateScriptsGet_cluster_completeCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_complete.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0x6a, 0x87, 0xb9, 0x21, 0x3c, 0xce, 0x6f, 0xaa, 0x69, 0xff, 0x1f, 0x8e, 0x92, 0xfa, 0x95, 0x1f, 0x72, 0x87, 0x80, 0xe6, 0x83, 0xe3, 0x60, 0xc2, 0xb8, 0x39, 0x84, 0xe0, 0xbb, 0x6c, 0x71}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x3, 0xb, 0xcc, 0xb6, 0x3, 0x6, 0x7, 0xb7, 0xb7, 0x52, 0x1, 0xe3, 0xa5, 0x66, 0x48, 0x6e, 0xc6, 0xb9, 0x38, 0xdc, 0x35, 0x47, 0x51, 0x62, 0x9c, 0x7b, 0x6b, 0xc4, 0x86, 0xff, 0x13}} return a, nil } -var _quorumcertificateScriptsGet_cluster_node_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xcd\xb1\xaa\x83\x40\x10\x85\xe1\x7e\x9f\xe2\x94\xda\xc8\xbd\x10\x2c\x84\x14\x41\x13\xb0\x34\x12\x52\x84\x14\xa2\xa3\x59\x58\x67\xc3\xee\x48\x04\xf1\xdd\x53\xac\x84\xa4\x9c\xe1\x7c\xfc\x7a\x7c\x5a\x27\x38\x19\xfb\xca\xcd\xe4\x85\x5c\x95\xa3\x77\x76\xc4\xdf\x5c\xe5\x87\xa2\x38\x1f\xeb\x5a\xa9\xa6\x6d\xc9\xfb\xa8\x31\x26\x46\x3f\x31\xc6\x46\x73\xd4\x06\x50\x72\x47\x73\x86\x4b\xc9\xf2\x9f\xc6\x19\x96\x5a\x9c\xe6\x21\x7c\xd2\xdd\x8a\x45\x29\x00\x30\x24\xd8\x88\xc7\xfe\x37\x99\x0c\x24\xdb\xe1\xa3\x38\xec\x1d\xc9\xe4\xf8\x43\x6e\xdf\xb9\x7b\xc2\xb6\xa3\x2b\xe9\xe1\x21\x5e\xa9\xf5\x1d\x00\x00\xff\xff\x18\xc7\x43\xd0\xc7\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_node_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8d\xb1\xaa\x83\x40\x10\x45\xfb\xfd\x8a\x8b\x95\x36\xc2\x83\x87\x85\x90\x4a\x08\x58\x86\x10\x52\x84\x14\xa2\xa3\x59\x58\x67\xc3\xcc\x48\x02\xe2\xbf\xa7\x50\x42\x2c\xef\xe5\x1c\x8e\x1f\x9f\x51\x0c\xc7\x10\x5f\x55\x98\xd4\x48\x4e\x15\x7a\x89\x23\x92\xdd\x97\x38\xd7\xb4\x2d\xa9\xa6\x4d\x08\x19\xfa\x89\x31\x36\x9e\xd3\x76\x05\x6a\xee\xe8\x5d\xe2\x52\xb3\xfd\x15\x59\x89\xf9\x6c\xe2\x79\x58\x9f\xe2\x7f\xc1\xec\x1c\x00\x04\x32\x6c\x8a\xe2\xb0\xcf\xe6\x03\xd9\x36\x34\xcd\x56\x5e\xc8\x26\xe1\xaf\x72\xfb\xcd\xdd\x73\x8e\x1d\x5d\xc9\x0f\x0f\x53\xe7\x96\x4f\x00\x00\x00\xff\xff\x3d\x36\xdc\x4a\xcb\x00\x00\x00" func quorumcertificateScriptsGet_cluster_node_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -5000,11 +4979,11 @@ func quorumcertificateScriptsGet_cluster_node_weightsCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_node_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0x9d, 0xc0, 0x2a, 0x9c, 0x34, 0xb, 0xc5, 0x43, 0x3d, 0xa, 0x57, 0x8, 0x63, 0x2c, 0xce, 0xe6, 0xa9, 0x9d, 0xb7, 0xc7, 0x13, 0x37, 0xe6, 0xc6, 0x3a, 0xe8, 0xf, 0x65, 0x94, 0xa6, 0x25}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x29, 0x1d, 0x52, 0x4, 0x6b, 0x83, 0x52, 0x76, 0x40, 0x43, 0xaf, 0xa, 0xe2, 0xe4, 0xd8, 0xcb, 0x79, 0x13, 0xea, 0xc6, 0xca, 0x2a, 0x11, 0x64, 0x1c, 0x9e, 0x29, 0xfc, 0x74, 0x8, 0xeb, 0x69}} return a, nil } -var _quorumcertificateScriptsGet_cluster_vote_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8d\x31\x0b\x82\x50\x14\x85\xf7\xf7\x2b\xce\xa8\x8b\x14\x84\x43\xd0\x10\x5a\xe0\x68\xd6\x14\x0d\xa2\xd7\x14\x9e\xef\xc5\xbd\xd7\x12\xa2\xff\x1e\xa1\x44\x6d\xe7\xc0\xf7\xf1\x75\xfd\xcd\xb3\x62\x6f\xfd\x23\xb1\x83\x28\x71\x9e\xa0\x61\xdf\x63\x31\xe6\xc9\x36\x4d\x0f\xbb\xa2\x30\xa6\xac\x2a\x12\x09\x4a\x6b\x43\x34\x83\x43\x5f\x76\x2e\xa8\x26\x21\x73\x35\x8d\x6b\x9c\x32\xa7\xcb\x38\x9c\x46\xbc\xc2\xd3\x18\x00\xb0\xa4\x98\x41\xc1\xe6\x3f\x14\x5d\x49\xe7\x23\x41\x38\xf1\x4c\x3a\xb0\xfb\x2a\xe7\xdf\xc8\x25\xba\x7b\xa5\x63\xcb\x24\xad\xb7\xf5\x47\x79\xbd\x03\x00\x00\xff\xff\x25\xf2\x70\xe5\xc1\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_vote_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x50\x42\x11\x53\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x28\xf0\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\x84\x30\xcc\x4c\x14\xaa\xb9\xb8\x14\x14\x14\x14\x72\x52\x4b\x14\xa0\x0a\x8b\x15\x6c\x51\x2d\xd3\x4b\x4f\x2d\x81\x72\x8a\x35\x34\x21\xea\x8b\x52\x4b\x4a\x8b\xf2\xe0\x5a\xa2\x91\x2d\x89\xd5\x2b\xcb\x2f\x49\x0d\xc9\x28\x4a\x2d\xce\xc8\xcf\x49\x01\x69\xa9\x05\x04\x00\x00\xff\xff\xe3\x59\xc4\x5f\xc5\x00\x00\x00" func quorumcertificateScriptsGet_cluster_vote_thresholdCdcBytes() ([]byte, error) { return bindataRead( @@ -5020,11 +4999,11 @@ func quorumcertificateScriptsGet_cluster_vote_thresholdCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_vote_threshold.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xee, 0x85, 0xb, 0xfb, 0x48, 0x6f, 0x59, 0x3b, 0x72, 0xcd, 0x94, 0x9, 0x31, 0xb9, 0xb6, 0x1e, 0x2, 0xf0, 0xe3, 0x7b, 0xc6, 0x6b, 0xee, 0xb4, 0xb0, 0x14, 0x17, 0x99, 0x35, 0xaa, 0x66, 0xc1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x90, 0x39, 0xfc, 0xde, 0xe2, 0xb0, 0x6e, 0xbb, 0x43, 0x4, 0x67, 0x78, 0x3e, 0x0, 0x52, 0x62, 0x27, 0xd5, 0x72, 0x9a, 0xcb, 0xd8, 0x3c, 0x8e, 0x11, 0xc6, 0xdb, 0x82, 0x38, 0x3f, 0xb5, 0xd1}} return a, nil } -var _quorumcertificateScriptsGet_cluster_votesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xb1\x4e\xc3\x40\x10\x44\xfb\xfd\x8a\x29\xed\xc6\x81\x86\x22\x12\x05\x72\x40\x4a\x99\x44\xd0\x44\x29\x4e\x97\x3d\x38\xe9\x7c\x17\xed\xae\xc1\x08\xf1\xef\xc8\xd8\xa0\xb8\x5c\xed\xcc\x9b\x17\xbb\x4b\x11\xc3\x53\x2a\x1f\x6d\xea\xd5\x58\x76\x2d\x82\x94\x0e\x37\xc3\xae\x7d\xd8\x6c\xf6\x8f\x87\x03\xd1\x6a\x85\x3d\x5b\x2f\x59\xe1\x32\x9c\x88\xfb\x44\x09\x78\x29\xc6\x8a\x50\x04\xf6\xc6\xd0\x0b\xfb\x18\x22\x9f\xe1\x27\x14\x91\xf3\x9e\x55\x2b\x97\x52\x8d\xd0\x67\x74\x2e\xe6\x6a\xfe\x6e\xf3\x99\x87\x35\x9e\xb7\xd9\x6e\xef\xea\x35\x8e\x0b\x89\x66\x64\x9f\xf0\x45\x04\x00\x89\xed\x0f\xaa\xb8\x5f\xea\x36\xaf\x6c\xf3\xa1\x55\x3d\xe5\xe5\x57\xf6\xbf\x72\xbc\x9e\x3c\x35\xef\xa3\x36\xd1\xf7\x4f\x00\x00\x00\xff\xff\x8d\xd6\x4b\xbd\xfd\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_votesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xbd\x4a\xc5\x40\x10\x85\xfb\x79\x8a\xc3\xad\x92\x26\x17\x1b\x8b\x0b\x56\x01\x21\xa5\x82\x36\x21\xc5\xb2\x99\xd5\x85\xcd\x6e\x98\x99\xf8\x83\xf8\xee\x12\x13\xe5\xa6\x9c\x9f\x73\xbe\x2f\x4e\x73\x11\xc3\x7d\x2a\xef\x6d\x5a\xd4\x58\x1e\x5a\x04\x29\x13\x4e\x87\xdd\x89\xe8\x7c\xc6\x23\xdb\x22\x59\xe1\x32\x9c\x88\xfb\x44\x09\x78\x2e\xc6\x8a\x50\x04\xf6\xca\xd0\x99\x7d\x0c\x91\x47\xf8\x2d\x4a\xe4\xbc\x67\xd5\xca\xa5\x54\x23\x2c\x19\x93\x8b\xb9\xda\xaf\x5d\x1e\xf9\xe3\x82\xa7\x2e\xdb\xcd\x6d\x7d\x41\x7f\x80\x36\x6b\xf7\x80\x2f\x22\x00\x48\x6c\x7f\xa5\x8a\xbb\xa3\x72\xf3\xc2\xb6\x0f\x5a\xd5\xdb\xbf\xfc\xca\xfe\x47\xfa\x6b\xe4\xd0\xbc\xad\xda\x44\xdf\x3f\x01\x00\x00\xff\xff\xc7\xaa\x11\x90\x01\x01\x00\x00" func quorumcertificateScriptsGet_cluster_votesCdcBytes() ([]byte, error) { return bindataRead( @@ -5040,11 +5019,11 @@ func quorumcertificateScriptsGet_cluster_votesCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_votes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2d, 0x38, 0x54, 0xe3, 0xf6, 0x3b, 0xb4, 0x8b, 0x51, 0x8a, 0xfd, 0x54, 0x1b, 0x41, 0x4f, 0xe1, 0x79, 0x4a, 0xc8, 0x46, 0xc9, 0x29, 0xed, 0xbb, 0x9b, 0xb, 0xdb, 0x8e, 0x6c, 0xee, 0xd2, 0xc8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0x5d, 0xff, 0x6e, 0xd7, 0xf9, 0x68, 0xe, 0xcb, 0x93, 0xff, 0xd6, 0xd2, 0xad, 0xc1, 0xc5, 0xa6, 0x42, 0x74, 0x84, 0x25, 0xb9, 0x41, 0x5, 0x9b, 0x72, 0x51, 0x1e, 0x7d, 0xec, 0x22, 0xbd}} return a, nil } -var _quorumcertificateScriptsGet_cluster_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8d\xb1\xaa\xc2\x40\x10\x45\xfb\xf9\x8a\x5b\x26\x4d\x78\x0f\x24\x85\x60\x21\x89\x42\xca\x18\xc4\x42\x2c\x96\x38\x89\x81\xc9\xae\xec\x4e\x30\x20\xfe\xbb\xc5\x06\xd1\xee\x5e\x38\x87\x33\x8c\x77\xe7\x15\x7b\x71\x8f\x42\xa6\xa0\xec\xeb\x02\x9d\x77\x23\xfe\xe6\xba\xd8\x96\xe5\x61\xd7\x34\x44\xa6\x6d\x39\x84\xc4\x88\xa4\xe8\x26\x8b\xd1\x0c\x36\x69\xa3\x50\xd9\x2b\xcf\x6b\x1c\x2b\xab\xff\x79\x1a\x47\xbe\xc2\x93\x08\x00\x84\x15\x0b\x18\xb0\xf9\x0d\x65\x3d\xeb\x72\x42\x92\x46\xde\xb3\x4e\xde\x7e\x94\xf3\x77\xe4\x92\xa9\x53\x23\x27\x1e\xfa\x9b\x12\xbd\xde\x01\x00\x00\xff\xff\xd7\x12\x87\x05\xbd\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8d\x31\x0b\xc2\x30\x14\x84\xf7\xf7\x2b\x8e\x4e\xed\x52\x10\xa4\x83\xe0\x54\x10\x3a\x3a\x88\x83\x38\x84\xfa\x5a\x03\x2f\x89\x24\x2f\x28\x88\xff\xdd\x21\x45\xec\x76\x77\x7c\xc7\x67\xdd\x23\x44\xc5\x41\xc2\xb3\x97\x9c\x94\xe3\xb1\xc7\x14\x83\x43\xb5\xda\x2a\x22\x33\x8e\x9c\x52\x6d\x44\x1a\x4c\xd9\xc3\x19\xeb\xeb\xb1\x00\x83\xbf\xf1\x6b\x87\xd3\xe0\x75\xd3\x35\x25\x74\x5b\xbc\x89\x00\x40\x58\xb1\x80\x09\xfb\xb5\xac\x9d\x59\x97\x92\xea\xa6\xf0\x91\x35\x47\xff\xbb\x5c\xfe\x25\xd7\x56\x83\x1a\x39\xb3\x9d\xef\x4a\xf4\xf9\x06\x00\x00\xff\xff\xf1\x3a\x40\x1a\xc1\x00\x00\x00" func quorumcertificateScriptsGet_cluster_weightCdcBytes() ([]byte, error) { return bindataRead( @@ -5060,11 +5039,11 @@ func quorumcertificateScriptsGet_cluster_weightCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_weight.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa, 0xcc, 0x4b, 0x39, 0xb0, 0xf0, 0xf0, 0x4b, 0x31, 0xde, 0xcb, 0x4e, 0xa3, 0x3f, 0x27, 0xe7, 0xbc, 0xf9, 0x75, 0x85, 0xff, 0x90, 0x67, 0x4f, 0x84, 0x61, 0x2f, 0xe, 0xbb, 0x8, 0x20, 0x26}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7c, 0x30, 0x57, 0xa9, 0x38, 0x97, 0xfa, 0xe9, 0x63, 0xc9, 0x3a, 0x59, 0xce, 0x31, 0x44, 0x6f, 0x2a, 0xc0, 0xf6, 0xab, 0x44, 0xe5, 0x12, 0x7c, 0x6a, 0xcb, 0x8b, 0xe8, 0x57, 0x7e, 0xce, 0x2d}} return a, nil } -var _quorumcertificateScriptsGet_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\x31\x6b\xc3\x40\x0c\x85\x77\xfd\x8a\x37\xda\x4b\xd2\x2e\x1d\x02\x1d\x8a\xd3\x42\xc6\xd4\x74\x0a\x19\xc4\x45\x6e\x0e\x74\x77\x41\x27\x93\x94\xd2\xff\x5e\x4a\x6c\xa8\x37\x81\xf4\xf4\x7d\x2f\xa6\x4b\x31\xc7\x9b\x96\x6b\xa7\x63\x75\xb1\x7d\x87\xc1\x4a\xc2\xc3\x6d\xdf\xbd\x6c\xb7\xef\xaf\x7d\x4f\xb4\x5e\xa3\x0f\x16\x2f\x0e\x2f\x30\xf1\xd1\x32\x38\x83\xcd\xf8\x0b\x65\x40\x57\x54\x25\x78\x31\x4c\x5f\x2a\xae\xd1\xcf\x60\xd5\xbf\xb5\x9f\x25\x1a\x92\x38\x9f\xd8\x99\x88\x43\x90\x5a\x1b\x56\x6d\x31\x8c\x19\x89\x63\x6e\xc2\x3d\xb9\xcb\x27\xb9\x6d\xf0\xb1\xcb\xfe\xf8\xd4\x6e\x70\x58\xb8\xad\xa6\xe9\x88\x6f\x22\x00\x50\x71\x84\x99\xf9\xbc\x2c\xb2\xfa\x14\x9f\x7d\x9a\xf6\x7e\x3f\xc9\xcf\x91\xc3\x7f\xea\x91\xe8\xe7\x37\x00\x00\xff\xff\xc0\x0e\x28\x76\x11\x01\x00\x00" +var _quorumcertificateScriptsGet_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\x31\x6b\xc3\x40\x0c\x85\x77\xfd\x8a\x47\x26\x7b\x49\xe8\xd2\x21\xd0\xc9\x50\xc8\x58\x4a\xa7\x90\x41\x5c\xe4\xfa\x40\x77\x67\x74\x32\x6e\x29\xfd\xef\xa5\xd8\x86\x78\x13\x92\x3e\xde\xf7\x62\x1a\x8b\x39\x5e\xb5\xcc\x9d\x4e\xd5\xc5\xde\x3a\xf4\x56\x12\x0e\xbb\xdd\x81\xe8\x74\xc2\x7b\xb0\x38\x3a\xbc\xc0\xc4\x27\xcb\xe0\x0c\x36\xe3\x6f\x94\x1e\x5d\x51\x95\xe0\xc5\xb0\x52\x15\x73\xf4\x01\xac\xfa\x7f\xf6\x41\xa2\x21\x89\xf3\x9d\x9d\x89\x38\x04\xa9\xb5\x61\xd5\x16\xfd\x94\x91\x38\xe6\x26\x2c\xe4\x25\xdf\xe5\xeb\x8c\x8f\x4b\xf6\xa7\xe7\xf6\x8c\xeb\xce\xe5\xb8\x4e\x37\xfc\x10\x01\x80\x8a\x23\x6c\x99\x2f\xfb\x32\xc7\x4f\xf1\xcd\xa7\x69\x97\xff\x55\x7e\x43\xae\x8f\xa9\x37\xa2\xdf\xbf\x00\x00\x00\xff\xff\xa6\xc7\x74\x36\x15\x01\x00\x00" func quorumcertificateScriptsGet_clustersCdcBytes() ([]byte, error) { return bindataRead( @@ -5080,11 +5059,11 @@ func quorumcertificateScriptsGet_clustersCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_clusters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x74, 0x48, 0xd8, 0xc7, 0x4d, 0x2d, 0x1b, 0xe2, 0x53, 0xed, 0x2e, 0xeb, 0x53, 0x68, 0x55, 0xf5, 0x45, 0x85, 0xb3, 0xc3, 0xcb, 0x4c, 0x91, 0xf7, 0xd5, 0x35, 0xad, 0x9a, 0x60, 0x5b, 0xcb, 0x89}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0xfa, 0xb0, 0xff, 0x20, 0xaf, 0xe0, 0x18, 0x68, 0x21, 0x71, 0xea, 0x8d, 0x67, 0x52, 0xa1, 0x54, 0x7b, 0xe3, 0x84, 0xef, 0xbd, 0x91, 0xcf, 0x60, 0x8, 0x86, 0xd8, 0xe, 0xed, 0xb7, 0xea}} return a, nil } -var _quorumcertificateScriptsGet_node_has_votedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x91\x41\x6f\xd3\x40\x10\x85\xef\xfb\x2b\xde\xa9\x4a\xa4\x2a\xe1\xdc\x1b\x24\x45\xf4\x82\x68\x5c\xb8\x4f\xed\x71\x76\xd5\xf5\x8c\xb5\x33\x8e\x41\x88\xff\x8e\xd6\x4e\x24\xe8\xd9\x9e\xf7\xbe\xf7\x6d\x1a\x46\x2d\x8e\xcf\x59\xe7\x43\x9e\xcc\xb9\x3c\x1f\xd0\x17\x1d\xf0\xe1\xe7\xf3\xe1\xe3\xf1\x78\x7a\x6c\x9a\x10\xf6\x7b\x9c\xd8\xa7\x22\x06\xc2\xab\x6a\x66\x12\x24\xe9\x52\x4b\x9e\xe4\x8c\xd4\x83\x20\xda\x31\x22\x19\x6c\x7a\x1d\x92\x3b\x77\x20\x5c\xd4\x19\xbd\x16\x78\x4c\x06\x1e\xb5\x8d\x21\x50\xdb\xb2\xd9\x86\x72\xde\xa2\x9f\x04\x03\x25\xd9\xd4\xf3\xa7\xe3\x03\x1a\x2f\x49\xce\xdb\x07\x7c\x52\xcd\xf8\x1d\x02\x00\xec\xf7\x78\xea\x31\x33\xa8\x30\x92\xc0\x23\xc3\x9c\xde\x6a\x39\x4d\xad\x27\x15\x8c\x91\x8c\xb1\xb9\xe8\x82\x24\xea\xf5\xc7\xb1\xe8\xb9\xb0\xd9\xf6\x7e\xb9\xa9\x38\x76\x4b\x5c\x76\x66\x32\x5f\xb9\x96\x6c\xf3\x94\x33\xcc\xb5\x54\x7c\xe9\x96\x55\x5f\xc8\x7e\x68\xdd\x53\xb8\xea\x32\xbc\x94\x89\x77\x68\x92\xb4\x8c\x99\x6f\x79\x2a\xf9\x17\x66\x12\x87\x2b\xde\x44\x67\xcc\x91\x3d\x72\xa9\xe0\x91\x2e\x6b\x7d\x77\xd5\xc1\x38\x7c\x3f\x9d\x1e\xbf\xbe\xac\xed\xf7\xd0\x21\xf9\xaa\xa9\x25\xe3\xdd\x92\x5a\x16\xeb\xff\xbf\xcf\x2e\xc9\xb7\xeb\x2a\xdc\xdd\xbd\xfb\xf6\x2f\xee\x55\xe9\x36\x84\x3f\x7f\x03\x00\x00\xff\xff\xf4\xed\x7f\xae\xe8\x01\x00\x00" +var _quorumcertificateScriptsGet_node_has_votedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x91\x41\x8f\xd3\x30\x10\x85\xef\xfe\x15\x4f\x7b\x58\x35\xd2\xaa\xb9\xef\x91\x02\x62\x2f\x08\xba\x0b\xf7\xd9\x64\x52\x5b\x75\x66\x22\xcf\xa4\x11\x42\xfc\x77\xe4\xa4\x95\x28\x57\xdb\xf3\xe6\x7b\x9f\xd3\x38\x69\x71\x7c\xce\xba\x1c\xf2\x6c\xce\xe5\xfb\x01\x43\xd1\x11\x0f\x77\x67\x0f\x21\xb4\x2d\x8e\xec\x73\x11\x03\xe1\x5d\x35\x33\x09\x92\xf4\xa9\x23\x4f\x72\x42\x1a\x40\x10\xed\x19\x91\x0c\x36\xbf\x8f\xc9\x9d\x7b\x10\x2e\xea\x8c\x41\x0b\x3c\x26\x03\x4f\xda\xc5\x10\xa8\xeb\xd8\x6c\x47\x39\x37\x18\x66\xc1\x48\x49\x76\x75\xfc\xe5\xe3\x33\x5e\xbd\x24\x39\x35\xcf\xf8\xa0\x9a\xf1\x3b\x04\x00\x68\x5b\xbc\x0c\x58\x18\x54\x18\x49\xe0\x91\x61\x4e\xe7\xba\x9c\xe6\xce\x93\x0a\xa6\x48\xc6\xd8\x5d\x74\x45\x12\xf5\xfa\x70\x2a\x7a\x2a\x6c\xd6\x3c\xad\x33\x15\xc7\x6e\x89\x6b\xd7\x4c\xe6\x1b\xd7\x9a\x6d\x9e\x72\x86\xb9\x96\x8a\x2f\xfd\xda\xea\x0b\xd9\x4f\xad\x7d\x0a\x57\x65\x86\xb7\x32\xf3\x1e\xaf\x49\x3a\xc6\xc2\xb7\x3c\x95\xfc\x0b\x0b\x89\xc3\x15\x67\xd1\x05\x4b\x64\x8f\x5c\x2a\x78\xa4\xcb\xb6\xbe\xbf\xea\x60\x1c\x7e\x1c\x8f\x9f\xbe\xbe\x6d\xdb\x9f\xa0\x63\xf2\x4d\x53\x47\xc6\xfb\x35\xb5\xac\xd6\xef\xff\x68\x9f\xe4\xdb\xb5\x15\x1e\x1f\xff\xbb\xfb\x17\xf7\xaa\xb4\x09\xe1\xcf\xdf\x00\x00\x00\xff\xff\xa0\xa8\x11\xb6\xec\x01\x00\x00" func quorumcertificateScriptsGet_node_has_votedCdcBytes() ([]byte, error) { return bindataRead( @@ -5100,11 +5079,11 @@ func quorumcertificateScriptsGet_node_has_votedCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_node_has_voted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x27, 0x1a, 0x33, 0x57, 0xd0, 0x60, 0xe9, 0xde, 0xa1, 0x2a, 0x25, 0x87, 0x6c, 0x9, 0xfe, 0x8d, 0x8c, 0x10, 0x40, 0x41, 0x74, 0x7b, 0xc8, 0x3d, 0x1b, 0x1, 0xfb, 0x9a, 0xe4, 0x4e, 0x61, 0x94}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0xf8, 0x21, 0xe, 0xb3, 0x57, 0x9d, 0x37, 0xd, 0xfa, 0xd5, 0x9e, 0x93, 0xb5, 0xaf, 0xf1, 0x62, 0xd9, 0x2b, 0x82, 0xe9, 0x2c, 0x36, 0x3c, 0x6d, 0xc5, 0x18, 0x2b, 0xdd, 0x26, 0x8e, 0xf1}} return a, nil } -var _quorumcertificateScriptsGet_node_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x5e\x6f\x09\x48\xa9\x20\x3d\x14\x7a\x90\x44\x21\xc7\x1a\xc4\x43\xe9\x61\x49\x27\x71\x61\x33\x2b\x3b\x13\x2c\x84\xfc\x77\x49\x36\x88\xe2\xc9\xb9\x0d\xf3\xbe\xf7\x31\xae\xff\x08\x51\xf1\xec\xc3\x67\xe1\x07\x51\x8a\xa7\x02\x6d\x0c\x3d\x76\xb7\x53\xf1\x58\x96\x2f\x4f\x75\x6d\x8c\x6d\x1a\x12\xc9\xac\xf7\x39\xda\x81\xd1\x5b\xc7\x59\x93\x80\x8a\xaf\x74\x3b\xe0\xb5\x62\xbd\xdf\xdf\x81\xc3\x95\xaa\xf2\x80\x5a\xa3\xe3\x2e\x4f\x87\xfd\x03\x46\x63\x00\xc0\x93\x62\x05\x05\xc7\xdf\xe2\x6d\x47\xba\x2e\x92\xe5\x29\xef\xda\xef\xf8\xf9\xa7\xf0\xb2\x9d\x45\x6f\xe4\xba\x77\x95\x73\x92\x5e\xb0\x39\x82\x9d\xc7\xb8\xa0\xf3\x44\xd2\x21\xf2\x3f\x2a\x36\x0b\x3a\x81\xbc\xd0\xdf\x9e\x1d\xac\xac\x0f\xa5\x9c\x31\xd3\x57\x00\x00\x00\xff\xff\xe0\x8f\x48\xf8\x43\x01\x00\x00" +var _quorumcertificateScriptsGet_node_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8f\x31\x4b\xc4\x40\x10\x85\xfb\xfd\x15\xef\xae\x4a\x40\x0e\x05\xb9\xe2\xe0\xaa\x88\x90\x52\x44\x2c\x42\x8a\x25\x99\xc4\x85\xcd\xac\xec\x4c\x50\x08\xf9\xef\x92\x6c\x10\x83\xd5\x6d\xb7\x33\xdf\x7b\x1f\xe3\x86\xcf\x10\x15\xcf\x3e\x7c\x15\x7e\x14\xa5\xf8\x52\xa0\x8b\x61\xc0\x71\x37\x3b\x1a\x63\x9b\x86\x44\x32\xeb\x7d\x8e\x6e\x64\x0c\xd6\x71\xd6\x24\xa0\xe4\x96\xbe\x2f\x78\x2b\x59\x1f\xce\x77\xe0\xd0\x52\xf9\x74\xc1\xab\x46\xc7\x7d\x9e\x16\xe7\x47\x4c\xc6\x00\x80\x27\xc5\x16\x14\x5c\xf7\xf2\x53\x4f\xba\x7d\x24\xcb\x13\xef\xba\x5f\xbc\xfa\x2b\xac\x4f\x8b\xe8\x9d\x5c\xff\xa1\x52\x25\x69\x8d\xc3\x15\xec\x3c\xa6\x35\xba\xbc\x48\x3a\x46\xbe\xa1\xe2\xb0\x46\x67\x90\x17\xfa\xdf\x73\x0f\x2b\xdb\x41\x89\x33\x66\xfe\x09\x00\x00\xff\xff\x50\x00\x3d\xc8\x47\x01\x00\x00" func quorumcertificateScriptsGet_node_weightCdcBytes() ([]byte, error) { return bindataRead( @@ -5120,11 +5099,11 @@ func quorumcertificateScriptsGet_node_weightCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_node_weight.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfc, 0xbc, 0xc8, 0xca, 0x86, 0x57, 0x6c, 0xe8, 0xd3, 0xaf, 0x8c, 0xa, 0x39, 0xc9, 0x48, 0x9b, 0xb4, 0xf6, 0x81, 0x54, 0x5a, 0xcc, 0x8f, 0x4a, 0xc8, 0xcc, 0x5e, 0x54, 0x10, 0xec, 0xe1, 0x27}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x93, 0x25, 0xfa, 0x54, 0x63, 0x59, 0xc9, 0xed, 0x7c, 0xb4, 0x5, 0x3, 0xd4, 0xe1, 0x46, 0x77, 0x8e, 0x2d, 0xec, 0x84, 0x5b, 0x67, 0x8, 0x2a, 0xe3, 0xdc, 0xaa, 0x1c, 0xfb, 0x6, 0xd4}} return a, nil } -var _quorumcertificateScriptsGet_qc_enabledCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xcc\x31\x0e\xc2\x30\x0c\x05\xd0\xdd\xa7\xf8\x63\xbb\x20\x66\x36\x48\x61\xa6\xf4\x04\x51\xe5\xa2\x48\x8e\x8d\xec\x44\x20\x21\xee\xce\xdc\x0b\xbc\x52\x5f\xe6\x0d\x37\xb1\x77\x92\x1e\x8d\x7d\x4e\xd8\xdc\x2a\x8e\x9f\x39\x9d\xa7\xe9\x71\x5d\x16\xa2\xbc\xae\x1c\x31\x64\x91\x11\x5b\x57\xd4\x5c\x74\x18\x4f\xb8\x98\x09\xbe\x44\x00\xe0\xdc\xba\xeb\x9e\x3a\x14\xbd\xbb\x3d\x9d\x23\x88\x7e\xff\x00\x00\x00\xff\xff\xf9\xab\x7c\xd5\x6d\x00\x00\x00" +var _quorumcertificateScriptsGet_qc_enabledCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xcc\x31\x0a\x42\x31\x0c\x06\xe0\x3d\xa7\xf8\x79\xd3\xeb\xe2\x01\x1c\x2d\x38\xeb\x11\x4a\x49\xa5\x90\x26\x92\xb4\x38\x88\x77\x77\xee\xfa\x0d\x5f\x1f\x6f\xf3\x89\xbb\xd8\x27\xcb\x8a\xc9\xfe\xcc\x68\x6e\x03\xc7\x66\x07\x51\xa9\x95\x23\xce\x22\x92\xd0\x96\x62\x94\xae\x67\xba\xe2\x66\x26\xf8\x12\x01\x80\xf3\x5c\xae\x7b\x77\xe9\xfa\x70\x7b\x39\x47\x10\xfd\xfe\x01\x00\x00\xff\xff\x53\x18\x41\x96\x71\x00\x00\x00" func quorumcertificateScriptsGet_qc_enabledCdcBytes() ([]byte, error) { return bindataRead( @@ -5140,11 +5119,11 @@ func quorumcertificateScriptsGet_qc_enabledCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_qc_enabled.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x62, 0xcd, 0xad, 0xd, 0x7, 0x98, 0x9e, 0xfe, 0xa3, 0xe1, 0x47, 0x98, 0x92, 0xb9, 0x63, 0x1e, 0xb, 0x3b, 0x3d, 0xf3, 0x6b, 0x5c, 0x5e, 0x33, 0x8a, 0xa9, 0x32, 0xc4, 0x22, 0xbd, 0x99, 0x7a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe4, 0x1, 0xc8, 0x57, 0x3, 0x99, 0xe8, 0x3a, 0xeb, 0xa5, 0xac, 0x3b, 0x72, 0x25, 0x55, 0x34, 0xf7, 0x31, 0x44, 0x4b, 0xc6, 0x3, 0x7, 0x69, 0x63, 0x0, 0xea, 0xb, 0x6f, 0x71, 0x5, 0xba}} return a, nil } -var _quorumcertificateScriptsGet_voter_is_registeredCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xb1\x4e\x85\x40\x10\x45\xfb\xf9\x8a\x5b\x42\x23\xd6\x74\x0a\x9a\x50\x02\x5f\xb0\xc2\x2c\x99\x64\x99\x31\xb3\x0b\x9a\x18\xff\xdd\x60\x5e\x5e\xf2\xfa\x7b\xcf\x39\xb2\x7f\x9a\x17\xbc\x27\xfb\xea\xd2\x91\x0b\xfb\xd8\x21\xba\xed\x78\xfe\x1e\xbb\x97\xbe\x9f\xde\xe6\x99\xa8\x69\x30\x71\x39\x5c\x33\x02\x3e\xcc\x12\x07\x85\xe8\x2a\x4b\x28\xa2\x1b\x24\x22\x40\x6d\x65\x48\x86\xf3\x26\x17\x89\x57\x44\x73\x9c\x76\x4d\x88\xc2\xb2\x70\xce\x55\x48\xa9\x46\x3c\x14\x7b\x10\xad\xae\xcf\xd0\xb7\x98\x8b\x8b\x6e\x75\x8b\x57\xb3\x84\x1f\x22\x00\xf0\x7f\xe5\x63\xdc\xd3\x69\x85\x7d\xc8\xd3\x5d\x72\x63\xd4\x44\xbf\x7f\x01\x00\x00\xff\xff\x41\x14\xef\x9c\xce\x00\x00\x00" +var _quorumcertificateScriptsGet_voter_is_registeredCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xc1\x8a\x83\x40\x10\x44\xef\xfd\x15\x85\x27\xbd\xac\x77\x8f\xeb\xb2\xe0\x71\xdd\x2f\x98\x68\x8f\x34\x8c\xdd\xa1\x67\x34\x87\x90\x7f\x0f\x86\x10\xf0\x5a\xd4\xab\x57\xb2\x5e\xcd\x0b\x7e\x93\xdd\xfa\xb4\xe5\xc2\xfe\xd7\x23\xba\xad\xa8\x4e\x59\x45\xd4\xb6\x18\xb9\x6c\xae\x19\x01\x17\xb3\xc4\x41\x21\x3a\xcb\x14\x8a\xe8\x02\x89\x08\x50\x9b\x19\x92\xe1\xbc\xc8\x41\xf2\x8c\x68\x8e\xdd\x8e\x0a\x51\x98\x26\xce\xb9\x0e\x29\x35\x88\x9b\x62\x0d\xa2\xf5\xc1\x0c\x3f\x1d\xfe\x8b\x8b\x2e\x4d\x87\x6f\xb3\x84\x3b\x11\x00\xf8\x4b\x79\x3e\xf8\xb5\x5b\x61\x1f\xf2\xf8\x91\xbc\x37\x1a\xa2\xc7\x33\x00\x00\xff\xff\xc7\x79\x0f\x5e\xd2\x00\x00\x00" func quorumcertificateScriptsGet_voter_is_registeredCdcBytes() ([]byte, error) { return bindataRead( @@ -5160,11 +5139,11 @@ func quorumcertificateScriptsGet_voter_is_registeredCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_voter_is_registered.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9f, 0x82, 0xb4, 0x6f, 0x91, 0xac, 0xd, 0xe4, 0x8b, 0xbd, 0xea, 0xe9, 0xc5, 0xc5, 0x77, 0xff, 0xb7, 0x10, 0x20, 0xa5, 0x2d, 0xa1, 0x47, 0xc9, 0x5d, 0x95, 0xe8, 0xbe, 0x41, 0xbb, 0xa1, 0x9e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xc6, 0x3d, 0x20, 0x48, 0xaf, 0x41, 0xc4, 0xfd, 0x17, 0xf1, 0x48, 0xb8, 0x5b, 0xd0, 0x4c, 0xa5, 0xf1, 0x23, 0x4e, 0x87, 0xf, 0xa5, 0xb1, 0x4d, 0x99, 0x1e, 0x1e, 0xfa, 0x87, 0x7f, 0x65}} return a, nil } -var _quorumcertificateScriptsGet_voting_completedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x31\x4e\x03\x31\x10\x05\xd0\x7e\x4e\xf1\xcb\xdd\x86\x50\xd3\x81\x03\x7d\x92\x13\x4c\xec\x31\x3b\x92\xed\x59\xd9\xe3\x05\x09\x71\x77\x04\x1d\x27\x78\x4f\xeb\x6e\xdd\xf1\x56\xec\x23\x94\x39\x5c\xfa\x25\x20\x77\xab\x78\xfc\xbc\x84\xe7\xf3\xf9\xfa\x7a\xbb\x11\x9d\x4e\xb8\x8a\xcf\xde\x06\x18\x77\xb3\x22\xdc\xa0\x2d\x69\x64\xd7\xf6\x0e\xcd\x60\x34\x4b\x82\x8d\x07\xc6\xbc\x57\x75\x97\x04\xc6\x61\x2e\xc8\xd6\xe1\x9b\x0e\xc8\x6e\x71\x23\xe2\x18\x65\x8c\x85\x4b\x59\x91\x67\x43\x65\x6d\xcb\xfa\x84\x17\xb3\x82\x2f\x22\x00\xe8\x7f\xde\xff\xd9\xc3\x61\xbf\x5c\xb0\xba\x17\x71\x49\xcb\x4a\xf4\xfd\x13\x00\x00\xff\xff\xad\x10\x1a\xa5\xc3\x00\x00\x00" +var _quorumcertificateScriptsGet_voting_completedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\xa1\x6e\xc5\x30\x0c\x46\x61\xee\xa7\xf8\x55\xd4\x92\x95\x0f\xae\xd2\xf8\xf6\x06\x6e\xe2\xac\x96\x92\xb8\x4a\x9c\x0e\x4c\x7b\xf7\xab\x7b\x59\xe9\x21\xdf\xd1\x72\x5a\x73\x7c\x66\xfb\xdd\xf2\xe8\x2e\xed\x6b\x43\x6a\x56\x30\xdd\xda\x44\xb4\xae\xf8\x16\x1f\xad\x76\x30\x76\xb3\x2c\x5c\xa1\x35\x6a\x60\xd7\xfa\x03\x4d\x60\x54\x8b\x82\x83\x3b\xfa\xd8\x8b\xba\x4b\x04\xe3\x32\x17\x24\x6b\xf0\x43\x3b\xe4\xb4\x70\x10\x71\x08\xd2\xfb\xcc\x39\x2f\x48\xa3\xa2\xb0\xd6\x79\x79\xc7\x87\x59\xc6\x1f\x11\x00\xb4\x97\x77\xbf\x7b\xbb\xec\xc9\x6d\x56\xce\x2c\x2e\x71\x5e\x88\xfe\x1f\x01\x00\x00\xff\xff\xb1\xa0\xbe\x79\xc7\x00\x00\x00" func quorumcertificateScriptsGet_voting_completedCdcBytes() ([]byte, error) { return bindataRead( @@ -5180,11 +5159,11 @@ func quorumcertificateScriptsGet_voting_completedCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_voting_completed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x56, 0x73, 0xa6, 0xe8, 0x90, 0xf, 0x17, 0xcf, 0xf6, 0xd5, 0x87, 0xb5, 0xa1, 0x17, 0x17, 0xdb, 0x32, 0x50, 0xb1, 0x43, 0x64, 0xaa, 0xb0, 0x2c, 0xf7, 0xaf, 0x3c, 0xdc, 0xce, 0x6e, 0x4d, 0x70}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0x87, 0x1d, 0x98, 0xc3, 0xe7, 0x56, 0x6d, 0x1d, 0xe6, 0x4a, 0xf0, 0xa5, 0xde, 0x33, 0xfa, 0x4b, 0xb0, 0x81, 0x1f, 0xaf, 0x72, 0xa7, 0xdf, 0x2f, 0xc2, 0xe0, 0xbd, 0x62, 0x6d, 0xfe, 0xa9}} return a, nil } -var _quorumcertificateSubmit_voteCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\xc1\x6e\xdb\x30\x0c\xbd\xeb\x2b\x1e\x7a\xe8\x6c\x60\xb3\x77\x36\xb6\x15\x99\xbb\xdd\x06\x34\xf5\xd0\xbb\x6a\xd3\xb6\x10\x5b\xf2\x28\x6a\xc9\x30\xe4\xdf\x07\x59\x4b\x90\x04\x25\x60\xc0\x24\xdf\x7b\x7c\x22\xcd\xbc\x38\x16\x7c\x9f\xdc\xbe\x9e\x82\x17\xe2\x6d\x8d\x9e\xdd\x8c\x8f\x87\x6d\xbd\x79\x7c\x7c\xfe\xd6\x34\x4a\x95\x25\x36\xb0\xae\x23\xfc\x76\x42\x8c\xe0\xc9\x43\x46\xe3\x21\xac\xad\xd7\xad\x18\x67\x21\x0e\x3e\xbc\xce\x46\xa0\xb1\xad\x57\xa8\x2a\xcb\x48\x7e\xd2\xac\x67\x12\x62\x5f\xc5\x34\x7e\xb1\xdb\x98\xc1\x6a\x09\x4c\x15\x7e\x8e\x04\x6f\x06\x4b\x1d\x66\xf2\x5e\x0f\x84\xe0\x8d\x1d\x20\x23\xad\x93\xdf\x79\x78\xd1\xbb\x58\xda\xd1\x9f\x93\xc2\x8f\x84\x4d\xfc\x91\x0e\x1f\xc8\xb6\xae\xa3\x0e\x5e\x38\x42\x5d\xbf\x0a\xb0\xde\x9f\x64\x95\xba\xb0\x9c\xdd\xb8\x68\x56\xd6\xfb\x6b\xe9\x54\xcc\xf1\x57\x29\x00\x58\x98\x16\xcd\x94\xad\x6e\xb9\x82\x0e\x32\x66\x5f\x1d\xb3\xdb\xbf\xe8\x29\x50\x8e\xfb\x4d\xdb\xba\x60\x25\x52\xf0\x3f\x26\x92\xb4\xbb\x67\xea\xf1\x39\x3d\x95\x0b\x2f\x8e\xf5\x40\xc5\xeb\x4a\xff\x74\x7f\x75\x87\xe2\x25\xe2\xbf\x64\xf1\x1c\x15\xde\x68\x35\x89\xfd\xa4\x65\xcc\xcf\x83\x62\x3c\x3c\x60\xd1\xd6\xb4\xd9\x5d\xed\xc2\xd4\xc1\x3a\x41\x1a\x01\xa6\x9e\x98\x6c\x4b\xf1\x5a\xbf\xda\xe4\xe9\x2e\x57\x67\xfe\xc9\x64\x11\x7f\x6e\xf7\x73\x95\xde\xac\xe9\x22\x49\x6e\x8e\xea\xf8\x2f\x00\x00\xff\xff\x0a\x3b\x94\x9b\x5f\x02\x00\x00" +var _quorumcertificateSubmit_voteCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\xc1\xaa\xdb\x30\x10\xbc\xeb\x2b\x06\x1f\x5e\x6d\x68\xed\xbb\x69\xfb\x78\x35\xf4\x56\x78\x69\x4a\xee\x8a\xbd\xb6\x45\x6c\xc9\x5d\xad\x9a\x96\x92\x7f\x2f\xb2\x9a\x10\x87\x27\x30\x78\x57\x33\xb3\xa3\x59\x33\x2f\x8e\x05\x5f\x27\x77\x6e\xa6\xe0\x85\x78\xd7\xa0\x67\x37\x23\xdb\xf4\x32\xa5\xaa\x0a\x2f\xb0\xae\x23\xfc\x72\x42\x8c\xe0\xc9\x43\x46\xe3\x21\xac\xad\xd7\xad\x18\x67\x21\x0e\x3e\x1c\x67\x23\xd0\xd8\x35\x2b\x54\x55\x55\x24\xbf\x6a\xd6\x33\x09\xb1\xaf\x63\x19\xbf\x78\xbb\x37\x83\xd5\x12\x98\x6a\xfc\x18\x09\xde\x0c\x96\x3a\xcc\xe4\xbd\x1e\x08\xc1\x1b\x3b\x40\x46\x5a\x27\xbf\xf3\xf0\xa2\x4f\xb1\x75\xa2\x3f\x57\x85\x6f\x09\x9b\xf8\x23\xfd\xfe\x40\xb6\x75\x1d\x75\xf0\xc2\x11\xea\xfa\x55\x80\xf5\xf9\x2a\xab\xd4\x9d\xe5\xfc\xc1\xc5\x7e\x65\xbd\xdf\x4a\xa7\x66\x81\xbf\x4a\x01\xc0\xc2\xb4\x68\xa6\x7c\x75\xcb\x35\x74\x90\x31\xff\xe2\x98\xdd\xf9\xa0\xa7\x40\x05\x9e\x5e\xda\xd6\x05\x2b\x91\x82\xff\x67\x22\x49\xd9\x7d\xa7\x1e\x9f\xd2\x53\xb9\xf4\xe2\x58\x0f\x54\x1e\x57\xfa\xc7\xa7\x4d\xee\xe5\x21\xe2\x3f\xe7\x71\x25\x35\xde\xb8\xda\x27\xf6\xab\x96\xb1\xb8\x0d\x8a\xe7\xf9\x19\x8b\xb6\xa6\xcd\xb3\xc6\x85\xa9\x83\x75\x82\x34\x02\x4c\x3d\x31\xd9\x96\xe2\xb6\x7e\xb6\xc9\x53\x56\xa8\x1b\xff\x6a\xb2\x8c\x3f\x8f\xf9\x6c\xca\x87\x98\xee\x8a\xe4\xe6\xa2\x2e\xff\x02\x00\x00\xff\xff\xf6\x6f\xe5\x6d\x63\x02\x00\x00" func quorumcertificateSubmit_voteCdcBytes() ([]byte, error) { return bindataRead( @@ -5200,7 +5179,7 @@ func quorumcertificateSubmit_voteCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/submit_vote.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa8, 0xf, 0x47, 0x73, 0xcc, 0xa6, 0x82, 0x74, 0x7b, 0xa6, 0x2b, 0xd0, 0x5, 0xb6, 0xfa, 0x32, 0x18, 0x92, 0xb4, 0x41, 0x1, 0x6a, 0x71, 0xbd, 0x8f, 0x21, 0xc5, 0x50, 0x99, 0x4b, 0xd0, 0x60}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xff, 0x17, 0x2e, 0x7e, 0x4e, 0xc0, 0xf1, 0x63, 0x79, 0x30, 0x6a, 0xd7, 0xc7, 0xad, 0xdf, 0x22, 0xad, 0x5f, 0xfd, 0xd, 0x41, 0xc7, 0x37, 0xea, 0xef, 0x44, 0x8b, 0x91, 0x62, 0xe4, 0x9e}} return a, nil } @@ -5264,7 +5243,7 @@ func randombeaconhistoryScriptsGet_source_of_randomness_pageCdc() (*asset, error return a, nil } -var _stakingcollectionClose_stakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x6e\xd3\x40\x10\xbd\xfb\x2b\x46\x3d\x14\x47\xaa\x5c\x04\xb7\x08\x88\x82\x53\x50\x44\xd5\xa0\x3a\x70\x9f\xac\x27\xce\xc2\x7a\xc7\x9a\x1d\x37\xad\x50\xff\x1d\xad\x37\x4e\x11\xc9\x81\x0b\x7b\x48\xbc\xe3\x37\xf3\xde\x3c\x3f\xdb\x76\x2c\x0a\x9f\x1c\xef\x2b\xc5\x9f\xd6\x37\x25\x3b\x47\x46\x2d\x7b\xd8\x0a\xb7\xf0\xfa\xb1\x5a\xcf\xbf\x2c\xef\x3e\x97\xab\xdb\xdb\x9b\x72\xbd\x5c\xdd\xcd\x17\x8b\xfb\x9b\xaa\xca\xb2\xeb\x6b\x28\x1d\x07\x0a\xc0\xbd\x02\x42\x48\x23\x80\x37\x3f\xc8\x28\x58\x0f\xba\xa3\x63\xd5\x1c\x27\xc7\xc6\xf5\xce\x06\xa8\x99\x02\x78\x56\x10\x6a\xf9\x81\x06\xb8\x90\x61\xa9\x13\x79\xbc\xdb\x9a\xbc\x5a\x7d\x02\xc5\x8d\xa3\xab\xd8\xbb\xe9\x15\xac\xa6\xee\x96\x30\xd2\xa0\x0e\x60\x34\x86\x7b\xaf\xa9\x60\x92\x36\xab\x60\xd0\x47\x16\x7a\x20\x89\x10\x0a\x43\x15\x1b\xb4\x3e\xcb\x54\xd0\x07\x1c\x84\xe5\x9e\x6b\x5a\x2e\xa6\x50\xa9\x58\xdf\x5c\x41\x4d\x8e\x1a\x54\x96\x58\xfc\xb6\xf4\xfa\xf6\xcd\x6c\x02\xbf\x32\x00\x80\xe1\xc7\x91\x8e\x0b\xbe\x38\x77\x4f\xdb\x29\x60\xaf\xbb\xfc\xac\xb1\xc5\xcb\xe3\x6a\xef\x49\x26\x70\x79\x1e\x77\x52\xc9\x06\xce\x4e\xa8\x43\xa1\xfc\xb0\xec\x81\xea\x23\x8b\xf0\xfe\x3b\xba\x9e\x26\x70\x39\x4f\xef\x46\xad\xf1\x04\x72\xdb\xe2\x9c\x56\x78\x3f\xfa\x56\x04\x65\xc1\x86\x8a\xcd\x30\xec\xdd\xff\xd8\xe1\x43\x1e\x3f\xed\xf4\x7c\xe6\x4e\xe1\x55\x52\xf4\x15\x75\x37\x39\xae\x12\xcf\x6c\x06\x1d\x7a\x6b\xf2\x8b\x92\x7b\x57\x0f\x31\x4a\xb2\x01\x41\x68\x4b\x42\xde\x10\x28\x03\xc2\x69\xb6\x0f\xd9\xec\xc4\xb6\x28\x4f\xd0\x07\x92\x57\x61\xb4\xe1\x22\x31\x3d\x27\xbb\xe9\x91\x4c\xaf\xf4\x2f\x4e\x16\x43\xe4\x22\x1b\x1d\xa3\x94\xfe\xff\x8a\xd2\x1f\x97\x91\xeb\x39\xfb\x1d\x00\x00\xff\xff\x39\x0c\xc1\xfa\x8d\x03\x00\x00" +var _stakingcollectionClose_stakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x8e\xd3\x30\x10\xbd\xe7\x2b\x46\x3d\x2c\xa9\xb4\xca\x4a\x70\xab\x80\x0a\x8a\x90\xf6\x04\xa2\xc0\x7d\xea\x4c\x13\x83\xe3\x89\xc6\xe3\x2d\x2b\xb4\xff\x8e\x6c\x37\x29\xa2\x39\x70\x59\x1f\x92\x78\xfc\x26\xef\xcd\xf3\xb3\xc3\xc8\xa2\xf0\xd1\xf1\x69\xaf\xf8\xd3\xfa\x6e\xc7\xce\x91\x51\xcb\x1e\x8e\xc2\x03\xac\x16\xcf\x56\x55\x75\x77\x07\x3b\xc7\x81\x02\x70\x54\x40\x08\x05\x03\x7c\xf8\x41\x46\xc1\x7a\xd0\x9e\xe6\xaa\x99\x5b\x53\xe3\xd7\xde\x06\x68\x99\x02\x78\x56\x10\x1a\xf8\x81\x32\x5c\xc8\xb0\xb4\x85\x39\xed\x6d\x4b\x5e\xad\x3e\x82\xe2\xc1\xd1\x6d\xea\x3d\x44\x05\xab\xa5\x7b\x20\x4c\x34\xa8\x19\x8c\xc6\x70\xf4\x5a\x0a\xa6\x68\xb3\x0a\x06\x7d\x62\xa1\x07\x92\x04\xa1\x90\xab\xd8\xa1\xf5\x55\xa5\x82\x3e\x60\x16\x56\x7b\x6e\xe9\xfe\xc3\x06\xf6\x2a\xd6\x77\xb7\xd0\x92\xa3\x0e\x95\x25\x15\xbf\xdd\x7b\x7d\xf5\x72\xbb\x86\xdf\x15\x00\x40\x7e\x38\xd2\x69\xc0\x8b\x35\x5f\xe8\xb8\x01\x8c\xda\xd7\x8b\xce\x35\x97\xcf\x4f\x27\x4f\xb2\x86\x9b\x65\xdc\x55\xa5\xca\x9c\xa3\xd0\x88\x42\xf5\x79\xd8\x33\xd5\x7b\x16\xe1\xd3\x77\x74\x91\xd6\x70\xf3\xae\x9c\x4d\x5a\xd3\x0a\xe4\x8e\xcd\x92\x56\x78\x33\xf9\xd6\x04\x65\xc1\x8e\x9a\x43\xfe\xd9\xeb\xe7\x98\xe1\x6d\x9d\xae\x76\xb3\x1c\xb8\x6b\xf8\xbe\x28\xfa\x8c\xda\xaf\xe7\x51\xd2\xda\x6e\x61\x44\x6f\x4d\xbd\xda\x71\x74\x6d\x8e\x51\x91\x0d\x08\x42\x47\x12\xf2\x86\x40\x19\x10\xae\x83\x7d\xce\xe6\x28\x76\x40\x79\x84\x18\x48\x5e\x84\xc9\x86\x55\x61\x7a\x2a\x76\xd3\x2f\x32\x51\xe9\x7f\x9c\x6c\x72\xe4\x12\x1b\xcd\x51\x2a\xef\x7f\xa2\xf4\xd7\x66\xe2\x7a\xaa\xfe\x04\x00\x00\xff\xff\x81\xd2\xc8\xc9\x8a\x03\x00\x00" func stakingcollectionClose_stakeCdcBytes() ([]byte, error) { return bindataRead( @@ -5280,11 +5259,11 @@ func stakingcollectionClose_stakeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/close_stake.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0x28, 0x45, 0x62, 0x48, 0xb4, 0x60, 0xcc, 0xec, 0xf, 0xed, 0x7d, 0x4c, 0x87, 0xd5, 0x81, 0x35, 0xcc, 0xfe, 0x0, 0x2c, 0x2d, 0xa8, 0x50, 0xa3, 0x44, 0x50, 0xf8, 0x57, 0xdd, 0x16, 0xc6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x31, 0xd6, 0xfa, 0x69, 0x5f, 0x9d, 0x28, 0xd3, 0x8b, 0x18, 0x15, 0x2c, 0xdc, 0xf3, 0x4d, 0x92, 0xf3, 0x99, 0x54, 0x52, 0x91, 0x27, 0xbf, 0x10, 0xdd, 0x65, 0x16, 0xce, 0xac, 0x21, 0xd9, 0x7b}} return a, nil } -var _stakingcollectionCreate_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x4d\x4f\xdb\x40\x14\x3c\xe3\x5f\x31\xe2\x40\x6d\x29\x32\xe9\xad\xb2\x9a\xa2\x34\x40\x89\xa0\x80\x30\xed\xfd\xe1\x7d\xb1\x57\x38\xbb\xd6\xee\x9a\x60\x55\xfc\xf7\xca\x5f\x21\x21\x86\xc2\xa1\x3e\x38\xb6\xb5\xb3\x33\x3b\x6f\xde\x8b\x5c\x16\xda\x38\xcc\x4c\x55\x38\xed\x75\x6f\xa7\xb9\x5e\xc5\x8e\xee\xa5\x4a\x67\x3a\xcf\x39\x71\x52\x2b\x2c\x8c\x5e\x62\xfc\x18\xdf\x4e\xcf\xe7\x97\x3f\x66\x57\x17\x17\x27\xb3\xdb\xf9\xd5\xe5\xf4\xf8\xf8\xe6\x24\x8e\x3d\xef\xf0\xf0\x10\x33\xc3\xe4\xd8\x82\xb0\xa4\x24\x93\x8a\x41\x49\xa2\x4b\xe5\xb0\xd0\x06\x04\xa5\x05\xc3\x65\xe4\x20\x2d\x28\x37\x4c\xa2\x82\x54\x70\x19\xc3\xb6\x94\x48\xd6\x9c\xcd\x96\xa4\x04\x48\x08\x8b\xa2\xbc\xcb\x65\x82\x7b\xae\x2c\x9c\x6e\x20\x8a\x57\x3d\x81\xe7\x39\x43\xca\x52\x03\xf4\x6b\x9e\xf9\x71\x84\xd8\x19\xa9\xd2\x11\x3c\x6c\x5c\x9d\xb4\x69\x0b\x3c\xe7\xea\xbd\xeb\x62\x99\x2a\x72\xa5\xe1\x69\x9e\x6a\x23\x5d\xb6\x8c\xf0\x6b\xae\xdc\x97\x7f\x01\xcf\xc8\x66\x2f\x31\x01\xfe\x34\xa0\xe6\x96\xb3\xeb\xcf\xff\x6c\xf9\x0d\x2f\x22\x50\xe9\x32\x7f\xb0\x22\xe1\xf3\xe3\xd5\x4a\xb1\x09\x70\x30\xbc\x6e\xe7\x8b\xd7\x70\x16\x86\x0b\x32\xec\x77\x06\x76\x54\xdf\xb5\x31\x7a\xf5\x9b\xf2\x92\x03\x1c\x74\x47\xe8\xb5\xd6\x97\xe5\x7c\x11\x0e\x69\xc5\xa4\xaf\x45\x68\x9d\x36\x94\x72\x78\xd7\x6c\xf6\xf5\x7f\x9c\xe1\x9b\x5f\x07\x32\x1a\x0e\xeb\xee\xf2\xb8\x55\x74\x4d\x2e\x0b\xb6\x6a\x75\x74\x84\x82\x94\x4c\xfc\xfd\x99\x2e\x73\x01\xa5\x1d\x5a\xd9\x20\x18\x5e\xb0\x61\x95\x70\x1d\x38\xc2\x6e\x53\x74\xd1\x2d\x8c\x5c\x92\xa9\x50\x5a\x36\x9f\x6c\x6f\xc3\x7e\xe0\xad\xa9\xe4\xa2\xa9\xf1\x76\x32\x30\x79\xdd\xcd\x30\x69\x5a\xe9\xe7\x16\xe0\x54\x9b\x93\x47\x69\x9d\x54\xe9\xa5\x16\xbc\x8e\x79\xfb\x3b\x42\x41\x15\x9b\xa8\xe7\xdf\xac\xda\x3a\x64\x32\xad\x83\x88\x09\x76\xc3\xec\x1b\x6a\x0b\x1f\xbd\x27\xfa\xdb\x36\xbe\x66\x65\xca\x0e\x54\xb3\xb6\x68\x50\x0f\x6f\xe7\x49\x6d\x9e\xa1\x15\x58\x95\x4b\x3c\xd4\xdc\x28\x8c\x7e\x90\x82\xc5\xa6\x7b\xbd\xfa\xac\xeb\x23\x4c\xb0\xd5\x52\x6f\x29\xdf\x5a\xf8\x11\xd1\x35\xd9\xc7\xf4\x6e\xee\xbb\xa3\xbd\x1d\x5f\xe7\x5c\x61\x82\xeb\xfe\xd9\xf7\xf6\xf6\xf6\x9a\x66\xec\xbf\x0c\x9c\x20\x14\x9c\x68\xc1\x67\xfc\xe8\x07\xa3\x1e\x60\x07\x66\x51\x57\x5c\xaf\x5d\x11\xbc\x31\x93\xc2\x7a\x8a\x86\x24\x84\xbf\x41\xbc\x7e\x1c\xad\x8d\xee\x36\xee\x5f\x47\x58\xb1\x4c\x33\x17\xe1\xf3\x78\x3c\x0e\xc7\xcf\x14\x4f\xe0\xdc\xf2\x8b\xc0\xed\x18\xdb\x66\xfa\x95\x7f\x87\x66\xa0\x6b\xc1\x1b\x46\x3e\x79\xed\xfd\xc9\xfb\x1b\x00\x00\xff\xff\x16\xcf\x40\xcb\xa9\x06\x00\x00" +var _stakingcollectionCreate_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x4d\x4f\xdb\x40\x10\x3d\xe3\x5f\xf1\x94\x03\xb5\xa5\xc8\xa4\xb7\xca\x6a\x8a\x68\x5a\x04\x42\x6d\x51\xa3\xf6\x3e\x78\x27\xf6\x0a\x67\xd7\x9a\x5d\x13\xac\x8a\xff\x5e\xf9\x2b\x24\xc4\x50\x38\xd4\x07\x67\xed\xec\xcc\x7b\xfb\xe6\xcd\x58\xaf\x4b\x2b\x1e\x0b\xa9\x4b\x6f\x83\xfe\xe9\xbc\xb0\x9b\xa5\xa7\x5b\x6d\xb2\x85\x2d\x0a\x4e\xbd\xb6\x06\x2b\xb1\x6b\x4c\x46\xff\x9b\x04\xc1\xc9\xc9\x09\x16\xc2\xe4\xd9\x81\xb0\xa6\x34\xd7\x86\x41\x69\x6a\x2b\xe3\xb1\xb2\x02\x82\xb1\x8a\xe1\x73\xf2\xd0\x0e\x54\x08\x93\xaa\xa1\x0d\x7c\xce\x70\x5d\x4e\xa4\xdb\xa4\x6d\x4a\x32\x0a\xa4\x94\x43\x59\xdd\x14\x3a\xc5\x2d\xd7\x0e\xde\xb6\x21\x86\x37\x03\x40\x10\x78\x21\xe3\xa8\x0d\x0c\x1b\x9c\xcb\x2f\x09\x96\x5e\xb4\xc9\xa6\x08\xb0\x73\xf5\xd4\xce\xba\xc0\x2b\xae\x5f\xbb\x6f\xa9\x33\x43\xbe\x12\x3e\x2b\x32\x2b\xda\xe7\xeb\x04\xbf\x2e\x8d\xff\xf0\xaf\xc0\x0b\x72\xf9\xd3\x98\x08\x7f\xda\xa0\xf6\x56\xb0\x1f\xce\xff\xa8\xe9\x4f\x5e\x25\xa0\xca\xe7\xe1\xa8\xe4\xf1\xe3\xf2\xc7\xc6\xb0\x44\x38\x1e\xdf\x77\xf0\x26\x68\x31\x4b\xe1\x92\x84\xc3\x5e\xc0\x1e\xea\xb3\x15\xb1\x9b\xdf\x54\x54\x1c\xe1\xb8\x3f\xc2\xc0\xb5\xb9\x1c\x17\xab\x78\x8c\x2b\xe6\x43\x2d\x62\xe7\xad\x50\xc6\xf1\x4d\x9b\xec\xe3\xff\x38\xc3\xa7\xb0\x71\x63\x32\xee\xd4\xc3\xed\xcb\x8e\xd1\x35\xf9\x3c\xda\xab\xd5\xe9\x29\x4a\x32\x3a\x0d\x27\x0b\x5b\x15\x0a\xc6\x7a\x74\xb4\x41\x10\x5e\xb1\xb0\x49\xb9\x31\x1c\xe1\xb0\x23\x7a\xeb\x96\xa2\xd7\x24\x35\x2a\xc7\xf2\xce\x0d\x32\x4c\xa2\x60\x0b\xa5\x57\x6d\x8d\xf7\x9d\x81\xf9\xf3\x6a\xc6\x69\xdb\x4a\xdf\xf6\x02\xce\xad\x7c\xbd\xd7\xce\x6b\x93\x7d\xb7\x8a\xb7\x36\xef\x7e\xa7\x28\xa9\x66\x49\x06\xfc\xdd\xaa\x6d\x4d\xa6\xb3\xc6\x88\x98\xe3\xd0\xcc\xa1\x50\x57\xf8\xe4\x35\xd6\xdf\x97\xf1\x39\x29\x33\xf6\xa0\x06\xb5\x8b\x06\x0d\xe1\xdd\x30\x69\xc4\x13\xda\x80\x4d\xb5\xc6\x5d\x83\x8d\x52\xec\x9d\x56\xac\x76\xd5\x1b\xd8\xe7\x7d\x1f\x61\x8e\xbd\x96\x7a\x89\xf9\xde\xc6\xb7\x90\x6e\xc0\xde\xc6\x77\x37\xef\x01\xf7\x6e\x7c\x5d\x71\x8d\x39\xae\x87\x75\x18\x1c\x1d\x1d\xb5\xcd\x38\xbc\x19\x39\x41\xac\x38\xb5\x8a\x2f\xf8\x3e\x8c\xa6\x43\x80\x1b\x99\x45\x7d\x71\x83\x6e\x47\xf4\xc2\x4c\x8a\x9b\x29\x1a\x93\x52\xe1\x0e\xf0\x76\x39\xdd\x0a\xdd\x27\x1e\x1e\xa7\xd8\xb0\xce\x72\x9f\xe0\xfd\x6c\x36\x8b\x67\x8f\x10\x0f\xe0\xc2\xf1\x13\xc3\x1d\x08\xdb\x79\xfa\x99\xaf\x43\x3b\xd0\xad\xe2\x1d\x21\x1f\x82\xee\xfe\x10\xfc\x0d\x00\x00\xff\xff\xae\x12\x08\x8b\xa6\x06\x00\x00" func stakingcollectionCreate_machine_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -5300,11 +5279,11 @@ func stakingcollectionCreate_machine_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/create_machine_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf1, 0x98, 0x78, 0x5f, 0x62, 0xed, 0x2d, 0x91, 0x6b, 0x7e, 0x7e, 0xaa, 0x4e, 0xf9, 0xff, 0x40, 0x7, 0xb3, 0xb4, 0xc5, 0xa0, 0x46, 0x91, 0x5e, 0xca, 0xdc, 0xe, 0x68, 0x3e, 0xf6, 0xab, 0x34}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0xdf, 0x3d, 0x5, 0xff, 0xf4, 0xd, 0xa2, 0x7, 0x81, 0x97, 0xc9, 0x37, 0xf5, 0x18, 0x28, 0x47, 0x12, 0xbc, 0x5b, 0x84, 0x1f, 0x3e, 0xac, 0x1c, 0x12, 0x62, 0x6e, 0xaf, 0x13, 0x2f, 0x4e}} return a, nil } -var _stakingcollectionCreate_new_tokenholder_acctCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x56\xdf\x8f\xe2\x36\x10\x7e\xe7\xaf\x98\xbb\x87\x55\x22\x71\xa1\x7d\x45\xbb\x2b\x51\x96\x5e\x57\xd0\x63\x55\xe8\xf5\xe1\x74\x0f\xde\x64\x20\x2e\xc1\x8e\x6c\x07\x16\x55\xfb\xbf\x57\xfe\x91\xc4\x0e\xa1\x4b\x7f\xa8\xd2\xf1\x42\xec\x78\x66\xbe\xf9\x66\xe6\x8b\xe9\xbe\xe4\x42\xc1\x54\x9c\x4a\xc5\x07\x6e\xf5\x63\xc1\x8f\x6b\xbe\x43\x06\x1b\xc1\xf7\xf0\xbe\x59\xbf\x6f\x4e\x54\x6c\x4b\x9f\x0b\x0c\x4e\xf9\x7b\xcd\xc9\x05\x4f\x77\x98\x99\x3d\x69\x0f\x7e\xf7\xb2\x58\x4e\xe7\xb3\x87\xf5\x72\x3e\xfb\x34\x79\x78\xf8\x65\xb6\x5a\xf9\x91\x57\x8a\xec\x28\xdb\x4e\x79\x51\x60\xaa\x28\x67\xb5\xd9\x6a\x3d\x99\x3f\x7e\xfa\x38\x5d\x2e\x16\xb3\xe9\xfa\x71\xd9\x18\x0f\x46\x23\x58\xe7\x54\x82\x12\x84\x49\x62\x8d\x48\x51\xf0\xa3\x04\x95\x23\xa4\x9c\x29\xa1\xdd\x09\xe0\x1b\xb3\x53\x18\x54\x40\xd2\x94\x57\x4c\x69\x7b\xc5\x21\x15\x48\x14\x02\x01\x86\xc7\x00\x77\x62\xfe\x7e\xe2\x45\xa6\x3d\x3c\xff\x8e\xa9\x02\xc2\x32\x90\x8a\x0b\x04\xaa\x80\x32\x67\xe5\x39\x24\x85\xe4\x40\xb2\x8c\xb2\x2d\x10\x90\x36\x29\x48\xdb\xac\x9c\x23\xc5\x0d\x22\xdf\x5a\x9b\xcf\x11\x4b\xed\x77\x4f\x59\x06\x2a\x27\x0a\x94\xce\x30\xe3\x28\x81\x71\x1d\xf2\x40\x0a\x9a\x69\xc0\xda\x1c\x5f\xa8\x54\x3a\x80\x0f\xd5\x43\xb3\xe6\xa1\x05\x51\xf5\xdb\x21\x9c\x78\x05\x0c\x31\xd3\x50\x90\xaa\x1c\x05\x64\x58\xa0\xf3\xec\x3b\x14\x28\x79\x25\x52\xd4\x1e\xb9\x5e\x1e\xf8\x0e\x35\xd3\xb0\xc3\x93\x2b\xaf\xef\x7b\x30\xf0\x2a\x12\x95\xd5\x73\x41\xd3\x39\x9e\xe4\x18\xbe\xd8\x8e\x4b\xe6\x78\x5a\x50\xa9\x66\x4c\x89\xd3\xd7\x18\xfe\x18\x00\x00\x94\x02\x4b\x22\x30\x92\x74\xcb\x50\x8c\x81\x54\x2a\x8f\x7e\xe0\x42\xf0\xe3\x67\x52\x54\x38\x84\x95\xe2\x82\x6c\x71\x08\x53\x52\x92\x67\x5a\x50\x45\x51\xc6\x70\x33\xb1\x71\xb5\x23\xe3\x49\xff\x46\x23\x98\xda\xca\x76\x78\x36\x35\x24\x59\x06\x16\x98\xc9\x21\x69\xcc\x0a\x54\xfa\xb0\xf3\x08\x77\xe0\x9e\xa2\x92\x9c\x34\x28\x0b\x2e\x6e\xce\x6f\xb8\xd0\x1e\x74\xcd\xda\x44\x5d\x42\xf5\xaf\xf5\x97\x98\x60\x24\xcb\x5a\x56\xc6\xda\x3c\x69\x96\x43\xc8\x89\xcc\x27\xc5\x96\x0b\xaa\xf2\xbd\x7d\x1b\x6c\x0d\xe1\x88\x74\x9b\x2b\xfb\xca\x3e\xb7\x78\x5e\x03\x06\x3e\xa2\x6a\xab\xf9\x33\x61\x64\x8b\xa2\x25\xef\x54\x97\xae\x3b\x19\x21\x1d\xca\x33\x6e\x6d\xa7\xed\x74\xdd\x39\x56\x92\xd4\x2b\x4b\x22\x6d\xb1\x92\x2d\xaa\xf6\xac\x8c\x36\x5c\x3c\x11\x95\x8f\xc3\x51\xf3\x16\x2e\x92\xab\xb5\x3e\x1b\x7f\xf9\xfe\xeb\xbb\x2b\x20\xc1\xdd\x9b\x58\x5b\x88\x27\x20\xf2\x9d\xc7\xc5\xad\x69\xb7\x40\xcd\x92\xdf\xa8\xca\x33\x41\x8e\x31\xdc\xbc\x81\xf6\x3e\xa0\xfd\x57\x69\xbb\x6e\xef\x18\xf7\x82\x76\x05\xc7\x9b\xb3\x1e\xd6\xdd\x00\xde\x7e\x08\xd9\xb2\x1e\x3c\xd3\x28\xe8\x37\x5b\xcc\x49\x96\x09\x94\xb2\x6e\x59\xdd\x75\x7a\x3d\x0c\x8e\xfa\x7c\x8d\x2f\xb0\xd7\x18\xc4\x41\x92\x2b\x72\xb8\x2c\x15\x3d\xfa\x66\xe6\xae\xc9\xdd\x0d\x5f\xcb\x4c\x9b\xbd\x37\x2e\x75\x0f\x49\x72\xc0\x30\xc7\xdb\x0f\x1e\x41\xdd\x9c\xc6\x17\x75\xdc\xeb\xaa\xbe\xb4\x3a\xc4\x4f\x49\x09\x77\x3e\x9e\xbe\x06\x0f\x62\x27\x54\xca\x0a\x6f\x6f\x2e\xc5\xbf\x8f\xae\x40\x16\xf7\x51\x11\x84\x36\xec\xc9\x3c\x3a\xaf\x65\x03\x3c\xe4\x84\xa8\xde\x81\x73\xce\x1f\xd9\x86\x3f\x99\x82\x74\x89\xe9\x91\x53\x1f\x88\x91\x3f\x5d\x67\x13\x1b\x72\xf7\x01\x62\x19\x54\xcc\x49\xca\x81\x54\x45\x47\x50\xec\x1b\xd7\x31\x6f\xf2\xeb\x28\xfd\x8b\xf1\x1c\xf6\x94\x7b\x59\xa2\x20\xfa\xfb\x23\xbb\xc3\xfb\xcf\xab\xa1\xb1\x6f\x9a\x4b\xd2\x7f\x00\x3c\x86\x9b\xe6\x92\x95\x7c\xd6\x44\xdd\x47\x23\x67\x3d\x6a\x22\x99\x17\x2d\x8a\x9e\x92\x58\x29\x71\x37\x28\xf0\xae\x50\xba\x12\x65\xa5\xdc\x65\xa5\xc6\xd5\x78\xa0\x9b\xa0\x16\x49\x9a\x63\xba\x8b\xe2\xcb\x9f\xaf\xcb\xf3\x68\x67\xb2\xff\x26\xe7\xf4\xea\x6c\xff\xdc\x83\xfe\xd5\x9d\x63\xd2\x1e\xb7\x84\x0f\x7b\x4f\x7b\x4d\x3f\x0e\x92\x39\x3b\x1d\x9f\x3b\xd0\x4a\xd1\x8f\xf8\x6c\xa7\x4f\x38\xec\x8c\xd4\x4f\xaf\x80\x85\xc4\x6f\x96\x3b\x46\x8b\xff\x9f\xb2\x40\x5f\x9e\xac\xa8\x01\xe9\x7c\x2f\xcd\x5d\xde\xb0\x90\xf5\x5c\xa8\x43\x69\x91\x5d\x10\x57\x49\x78\xad\xda\x57\x26\x76\x1f\x92\xff\x2f\xe8\xf0\x3e\x3d\x7f\x4b\xea\xfb\xd2\x3c\x17\xfc\x2b\x81\xf5\x2a\xbf\x2d\xcf\xeb\x9f\x01\x00\x00\xff\xff\x50\x4c\xc8\x2f\x29\x0e\x00\x00" +var _stakingcollectionCreate_new_tokenholder_acctCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x56\x49\x6f\xe3\x36\x14\xbe\xfb\x57\xbc\xc9\x21\x90\x00\x8f\x8c\x5e\x8d\x24\x40\x6a\x74\x43\xa6\x68\x80\xa4\xd3\xc3\x20\x07\x46\x7c\x96\x58\xd3\xa4\x40\x52\x76\x85\x22\xff\xbd\xe0\x22\x89\x94\xe5\xc6\x5d\x50\xa0\xbe\x58\x24\xdf\xf2\xbd\xef\x2d\x24\xdb\x37\x52\x19\xd8\xa8\xae\x31\x72\x11\x56\xdf\x72\x79\x7c\x96\x3b\x14\xb0\x55\x72\x0f\x57\xc3\xfa\x6a\x90\x68\x45\xc5\x5e\x39\x26\x52\xf1\xde\x20\xf9\x49\x96\x3b\xa4\x6e\x4f\x07\xc1\x78\xeb\x2a\xf6\xf9\x64\xc8\x8e\x89\x6a\x23\x39\xc7\xd2\x30\x19\xfb\x3f\x39\xbb\x5a\x2c\x56\x2b\x78\xae\x99\x06\xa3\x88\xd0\xc4\x6b\x10\xce\xe5\x51\x83\xa9\x11\x4a\x29\x8c\xb2\xf2\x0a\xe4\xd6\xed\x70\xe7\x19\x48\x59\xca\x56\x18\xab\x6f\x24\x94\x0a\x89\x41\x20\x20\xf0\x98\xc0\x2d\xdc\xdf\xf7\x92\x53\x6b\xe1\xf5\x57\x2c\x0d\x10\x41\x41\x1b\xa9\x10\x98\x01\x26\x82\x56\x64\x90\x70\x2d\x81\x50\xca\x44\x05\x04\xb4\x47\x0d\xe5\x18\x52\x30\x64\xa4\x43\x14\x6b\x5b\xf5\x07\xc4\xc6\xda\xdd\x33\x41\xc1\xd4\xc4\x80\xb1\x11\x52\x89\x1a\x84\xb4\x2e\x0f\x84\x33\x6a\x01\x5b\x75\xfc\x8d\x69\x63\x1d\xc4\x50\x23\x34\xcf\x32\xd5\x20\xa6\x3f\x5d\x42\x27\x5b\x10\x88\xd4\x42\x41\x66\x6a\x54\x40\x91\x63\xb0\x1c\x1b\x54\xa8\x65\xab\x4a\xb4\x16\xa5\x5d\x1e\xe4\x0e\x2d\xd3\xb0\xc3\x2e\x64\x35\xb6\xbd\x58\x44\x19\xc9\x9a\xf6\x95\xb3\xf2\x01\x3b\xbd\x86\x2f\xbe\xd0\x8a\x07\xec\x3e\x31\x6d\xbe\x11\x46\x75\x2f\x39\xfc\xbe\x00\x00\x68\x14\x36\x44\x61\xa6\x59\x25\x50\xad\x81\xb4\xa6\xce\xbe\x96\x4a\xc9\xe3\x67\xc2\x5b\x5c\xc2\x93\x91\x8a\x54\xb8\x84\x0d\x69\xc8\x2b\xe3\xcc\x30\xd4\x39\x5c\xdf\x7b\xbf\xd6\x90\xb3\x64\x7f\xab\x15\x6c\x7c\x66\x27\x3c\xbb\x1c\x12\x4a\xc1\x03\x73\x31\x14\x83\x1a\x47\x63\x85\x83\x45\xb8\x85\xf0\x95\x35\xa4\xb3\xa0\x3c\xb8\x7c\x90\xdf\x4a\x65\x2d\xd8\x9c\x8d\x81\x86\x80\xfa\xdf\x68\xaf\x70\xce\x08\xa5\x23\x2b\x6b\xab\x5e\x0c\xcb\x25\xd4\x44\xd7\xf7\xbc\x92\x8a\x99\x7a\xef\x4f\x93\xad\x25\x1c\x91\x55\xb5\xf1\x47\xfe\x7b\xc4\xf3\x96\x30\xf0\x1d\x9a\x31\x9b\x3f\x12\x41\x2a\x54\x23\x79\x5d\x9f\xba\x69\x67\xa4\x74\x98\x48\x79\xd4\xdd\x8c\xdd\x75\x1b\x58\x29\xca\x28\x2d\x85\xf6\xc9\x2a\x2a\x34\xa3\xac\xce\xb6\x52\x3d\x12\x53\xaf\xd3\x56\x8b\x16\xc1\x53\xc8\xb5\x95\xcd\xbf\x7c\xf5\xf2\xe1\x02\x48\x70\xfb\x2e\xd6\x11\x62\x07\x44\x7f\x88\xb8\xb8\x71\xe5\x96\x0c\xb1\xe2\x17\x66\x6a\xaa\xc8\x31\x87\xeb\x77\xd0\xde\x25\xb4\xff\xac\x7d\xd5\xed\x03\xe3\x91\xd3\xe9\xc0\x89\xfa\x6c\x86\xf5\xd0\x80\x37\x1f\x53\xb6\xbc\x85\x48\x35\x4b\xea\xcd\x27\xf3\x9e\x52\x85\x5a\xf7\x25\x6b\xab\xce\xae\x97\x89\x68\xcc\xd7\xfa\x0c\x7b\x83\x42\x9e\x04\xf9\x44\x0e\xe7\x47\xc5\xcc\x7c\x73\x7d\x37\xc4\x1e\x9a\x6f\x64\x66\x8c\x3e\x6a\x97\xbe\x86\x34\x39\x60\x1a\xe3\xcd\xc7\x88\xa0\x69\x4c\xeb\xb3\x73\x3c\xaa\xaa\xb9\xb0\x26\xc4\x6f\x48\x03\xb7\x31\x9e\xb9\x02\x4f\x7c\x17\x4c\xeb\x16\x6f\xae\xcf\xf9\xbf\xcb\x2e\x40\x96\xcf\x51\x91\xb8\x76\xec\xe9\x3a\x3b\xcd\xe5\x00\x3c\xe5\x84\x98\xd9\x86\x0b\xc6\x7f\x10\x5b\xf9\xe8\x12\x32\x25\x66\x66\x9c\xc6\x40\xdc\xf8\xb3\x79\x76\xbe\xa1\x0e\x17\x90\xa0\xd0\x8a\x30\x52\x0e\xa4\xe5\x93\x81\xe2\x4f\x42\xc5\xbc\xcb\x6f\xa0\xf4\x4f\xda\x73\x39\x93\xee\x9f\x1a\x54\xc4\xde\x3f\x7a\xda\xbc\x7f\x3f\x1b\x16\xfb\x76\x78\x1b\xfd\x0b\xc0\x73\xb8\x1e\xde\x56\xc5\x67\x4b\xd4\x5d\xb6\x0a\xda\xab\xc1\x93\x3b\x18\x51\xcc\xa4\xc4\x8f\x92\xf0\x44\x82\xe8\xfd\x64\x33\xd1\xb4\x26\x3c\x56\x7a\x5c\x83\x05\xb6\x4d\x72\x51\x94\x35\x96\xbb\x2c\x3f\x7f\x7d\x9d\xef\x47\xdf\x93\xf3\xcf\xb8\x30\xaf\x4e\xf6\x4f\x2d\xd8\x5f\x5f\x39\x2e\xec\xf5\x48\xf8\x72\x56\x3a\x2a\xfa\x75\x12\xcc\x89\x74\x7e\x6a\xc0\x4e\x8a\x79\xc4\x27\x3b\x73\x83\xc3\xf7\x48\xff\xf5\x06\xc8\x35\xfe\x6f\xb9\x13\x8c\xff\xf7\x94\x25\xf3\xe5\xd1\x0f\x35\x20\x93\xfb\xd2\xbd\xe5\x1d\x0b\x74\xe6\x41\x9d\x8e\x16\x3d\x05\x71\xd1\x08\xef\xa7\xf6\x85\x81\xdd\xa5\xe4\xff\x03\x3a\xa2\xab\xe7\x2f\x8d\xfa\xb9\x30\x4f\x07\xfe\x85\xc0\x66\x27\xbf\x4f\xcf\xdb\x1f\x01\x00\x00\xff\xff\x67\x6a\x0f\xb0\x20\x0e\x00\x00" func stakingcollectionCreate_new_tokenholder_acctCdcBytes() ([]byte, error) { return bindataRead( @@ -5320,7 +5299,7 @@ func stakingcollectionCreate_new_tokenholder_acctCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/create_new_tokenholder_acct.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0x9d, 0xde, 0x4c, 0x9, 0x3, 0xbb, 0xce, 0xb3, 0xfa, 0x94, 0xe6, 0x7, 0xc6, 0xfc, 0x9a, 0x2b, 0x38, 0x84, 0x55, 0x40, 0xe4, 0xd2, 0x6c, 0x26, 0xf4, 0xbb, 0x67, 0x9f, 0x13, 0x81, 0xc7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xef, 0xf3, 0xe8, 0xc5, 0x56, 0xc1, 0x18, 0x8f, 0xbe, 0xfd, 0x7b, 0xd1, 0x27, 0x19, 0xc8, 0x43, 0xae, 0x40, 0x33, 0x7e, 0x5e, 0xc0, 0x12, 0x42, 0x93, 0xe2, 0x91, 0xa7, 0xa, 0xc7, 0x40, 0x5f}} return a, nil } @@ -5344,7 +5323,7 @@ func stakingcollectionDeploy_collection_contractCdc() (*asset, error) { return a, nil } -var _stakingcollectionRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6f\x9b\x4e\x10\xc5\xef\x7c\x8a\xa7\x1c\xf2\x07\xe9\x2f\xdc\x43\xd5\x03\x6a\x1b\xb9\x76\x52\x59\x8d\xe2\xca\xa4\xbd\x6f\x97\x01\xaf\x02\x3b\x68\x76\x90\x5d\x55\xf9\xee\x15\x2c\xae\x0f\xf6\xa1\x97\xee\x01\x10\x3b\xfb\xe6\xcd\xdb\x9f\xeb\x7a\x16\xc5\x43\xcb\x87\x52\xcd\x8b\xf3\xcd\x8a\xdb\x96\xac\x3a\xf6\xa8\x85\x3b\xbc\x39\x96\xcf\xcb\x2f\x9b\xa7\xcf\xab\xed\xe3\xe3\xfd\xea\x79\xb3\x7d\x5a\xae\xd7\xbb\xfb\xb2\x4c\x92\xc5\x62\x81\x1d\x35\x2e\x28\x49\x80\x41\x45\x2d\x35\x46\x59\xe0\x3c\x74\x4f\x08\x51\x13\xf6\x2c\x2a\x14\x78\x10\x4b\xd3\xe1\x9a\x25\xd6\xf5\x64\x5d\xed\xa8\x82\xe7\x8a\x36\x6b\x18\x5f\x4d\x1b\xa6\xe3\xc1\x2b\xb8\x86\xf2\x0b\xf9\x00\x65\x58\xee\x3a\xa7\x49\xa2\x62\x7c\x30\x93\x6a\xea\xaa\x02\xa5\x8a\xf3\xcd\xff\xf3\x99\x02\xdf\x1e\xdc\xf1\xdd\xdb\x0c\xbf\x12\x00\x98\x1e\x2d\xe9\xc9\xd3\x79\xce\x1d\xd5\x05\xcc\xa0\xfb\xf4\x6a\x0c\xf9\xf9\x73\x7b\xf0\x24\x19\x6e\xaf\xd7\x5d\xfc\x49\xa6\x9e\xbd\x50\x6f\x84\x52\x63\x6d\xf4\x35\xb5\xfa\xc4\x22\x7c\xf8\x6e\xda\x81\x32\xdc\x2e\xe3\xde\xc9\xeb\xb8\x02\xb5\x75\x7e\xcd\x2b\x3e\x60\x96\xca\x83\xb2\x98\x86\xf2\x1f\x93\xd8\xfb\x7f\x31\xc3\xc7\x74\xa4\xa0\xb8\x4e\xc8\x65\x79\x19\x1d\x7d\x35\xba\xcf\xfe\x8c\x32\xae\xbb\x3b\xf4\xc6\x3b\x9b\xde\xac\x78\x68\xc7\x7b\x56\x44\xdb\x30\x10\xaa\x49\xc8\x5b\x1a\xaf\xd7\xe0\x92\xc4\x19\xa7\x5e\x5c\x67\xe4\x27\x86\x40\xf2\x5f\x38\xc5\x70\x13\x3b\xbd\xc6\xb8\xe9\x48\x76\x50\xfa\x9b\x24\x73\x99\xd9\x5d\x9f\xb8\x4d\x23\x7e\x05\x5c\x75\xe6\x28\xbe\xb3\x28\x36\xb7\x7a\x4d\x7e\x07\x00\x00\xff\xff\x0e\x55\x57\xf6\x3a\x03\x00\x00" +var _stakingcollectionRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x31\x8f\xd4\x40\x0c\x85\xfb\xfc\x8a\xa7\x2d\x8e\x44\x42\xd9\x06\x51\x44\xc0\x09\xee\x74\x12\x15\xe8\x56\xd0\x9b\x89\x93\x1d\xdd\x64\x1c\x79\x1c\xed\x21\x74\xff\x1d\x25\x93\x65\x8b\x4d\x41\x73\x53\x24\x51\x6c\x3f\x3f\x7b\x3e\x3f\x8c\xa2\x86\x87\x20\xa7\x83\xd1\x93\x8f\xfd\x9d\x84\xc0\xce\xbc\x44\x74\x2a\x03\x76\x9b\xb1\x5d\x51\xec\xf7\x7b\x3c\x72\xef\x93\xb1\x26\x10\x5a\x0e\xdc\x93\x89\xc2\x47\xd8\x91\x91\x72\x11\xdc\x45\x51\x39\xc9\xa4\x8e\x97\xe2\x4e\x34\xe7\x8d\xec\x7c\xe7\xb9\x45\x94\x96\xbf\xde\x83\x62\xbb\x04\x68\x90\x29\x1a\xa4\x83\xc9\x13\xc7\x04\x13\x38\x19\x06\x6f\x45\x61\x4a\x31\xd1\xa2\x5a\xfa\xb6\xc1\xc1\xd4\xc7\xfe\xed\x5a\xd3\xe0\xc7\x83\x7f\x7e\xff\xae\xc2\x9f\x02\x00\x96\x47\x60\x3b\x7b\xba\x0c\xf2\xc8\x5d\x03\x9a\xec\x58\x6e\xce\x59\x5f\x3e\xbf\x9d\x22\x6b\x85\x9b\xed\xbc\xab\x3f\xc5\xd2\x73\x54\x1e\x49\xb9\x24\xe7\xb2\xaf\xa5\xd5\x17\x51\x95\xd3\x4f\x0a\x13\x57\xb8\xf9\x9c\x63\x67\xaf\xf3\x49\x1c\xba\x7a\xcb\x2b\x3e\x62\x95\xaa\x93\x89\x52\xcf\xf5\xaf\x45\xec\xc3\x6b\xcc\xf0\xa9\x9c\x11\x68\xb6\xf1\xb8\x4e\x3f\x64\x47\xdf\xc9\x8e\xd5\xbf\x51\xe6\x73\x7b\x8b\x91\xa2\x77\xe5\xee\x4e\xa6\x30\xdf\xb3\x21\xdb\x06\x41\xb9\x63\xe5\xe8\x78\xbe\x5e\xc2\x35\x86\x2b\x4e\xa3\xfa\x81\xf4\x37\xa6\xc4\xfa\x26\x9d\xd7\xb0\xcb\x9d\x5e\xf2\xba\xf9\x99\xdd\x64\xfc\x3f\x9b\xac\x75\x65\xf7\xfe\xcc\x6d\x99\xf1\x6b\xe0\xdb\x0b\x47\xf9\x5d\x65\xb1\xb5\xd5\x4b\xf1\x37\x00\x00\xff\xff\x50\xb7\x12\x6d\x37\x03\x00\x00" func stakingcollectionRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -5360,11 +5339,11 @@ func stakingcollectionRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x29, 0x23, 0xd5, 0xe3, 0xf4, 0x90, 0xb5, 0x30, 0xcd, 0xcf, 0x93, 0x28, 0x44, 0x60, 0x35, 0x9b, 0x9d, 0xdc, 0x62, 0xfe, 0x4f, 0x6a, 0xcf, 0x2a, 0x4b, 0xd3, 0x3d, 0x2, 0xd3, 0x94, 0x99, 0x4f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x24, 0xb5, 0x3c, 0x3f, 0x4c, 0x1c, 0x87, 0xd4, 0xd0, 0xf5, 0x99, 0x13, 0x52, 0x85, 0x4e, 0xe2, 0x34, 0xbe, 0xc5, 0x5b, 0xb0, 0xd5, 0x7, 0xb7, 0x78, 0x4c, 0x27, 0xcd, 0x8a, 0xf5, 0x38, 0xf6}} return a, nil } -var _stakingcollectionRegister_multiple_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4d\x6b\xdb\x40\x10\x86\xef\xfa\x15\x2f\x39\x04\x99\x16\x25\x85\xd2\x83\x68\x1a\x5c\x3b\x29\xa6\x21\x2e\x56\xda\x4b\xf0\x61\x2b\x8d\xe4\x21\xab\x5d\xb1\x3b\xaa\x0d\xc5\xff\xbd\xac\x3e\xec\x14\x9b\xde\xba\x07\x21\x46\xa3\x67\xdf\x9d\x7d\xb8\x6e\xac\x13\xdc\x6b\xbb\xcd\x44\xbd\xb0\xa9\x66\x56\x6b\xca\x85\xad\x41\xe9\x6c\x8d\xeb\x5d\xf6\x34\xfd\xba\x78\xfc\x32\x5b\x3e\x3c\xdc\xcd\x9e\x16\xcb\xc7\xe9\x7c\xbe\xba\xcb\xb2\x28\xba\xba\xba\xc2\x8a\x2a\xf6\x42\xce\xa3\x6e\xb5\x70\xa3\x09\x05\x69\xaa\x94\x58\xe7\xc1\x06\xb2\x21\xf8\x9e\x8d\xfc\x08\x77\xe4\x6d\xeb\x72\xea\x20\xa5\x75\x7d\x5f\x43\x39\x97\x4c\x05\x8c\x2d\x68\x31\xf7\x50\xa6\x80\xaa\x6d\x6b\x04\xb6\x84\xd8\x17\x32\x1e\x62\x91\xdb\xba\x66\x89\x22\x71\xca\x78\xd5\x21\x63\x2e\x7c\x8a\xe7\x4c\x1c\x9b\x6a\xfd\x76\xf8\x2d\x94\xbe\xdf\xf3\xee\xc3\xfb\xf5\x04\xbf\x23\x00\xe8\x1e\x9a\x64\x8c\x75\x3c\xf2\x8a\xca\x14\xaa\x95\x4d\x7c\x76\x22\xc9\xf1\x75\xb9\x35\xe4\x26\xb8\x3c\xdf\x77\x52\x89\xba\x3d\x1b\x47\x8d\x72\x14\xab\x3c\x0f\xd1\x86\xad\x3e\x5b\xe7\xec\xf6\x87\xd2\x2d\x4d\x70\x39\xed\xbf\x8d\x59\xc3\xf2\xa4\xcb\xe4\x5c\x56\xdc\x60\x40\x25\x5e\xac\x53\x15\x25\x3f\x3b\xd8\xc7\xff\x71\x86\x4f\x71\x10\x22\x3d\x2f\xcb\x69\x7b\xd6\x27\xfa\xa6\x64\x33\x39\x1c\x25\xac\xdb\x5b\x34\xca\x70\x1e\x5f\xcc\x6c\xab\xc3\x55\x0b\xfa\xd8\x70\x14\xee\x18\x27\xac\x8b\x9e\xb0\xef\xc7\x48\x3b\xca\x5b\xa1\x57\x13\xfa\xa5\x1c\x18\x37\xb8\x3e\x54\x82\x51\x5c\x04\xff\xb8\xf0\xaf\x3a\xff\x39\xcf\xc4\x0d\x32\xcf\x47\x83\xe3\xde\xc3\x14\x5c\x8c\x42\xa5\xa3\x58\xcf\xbc\x9e\x74\x3a\xfd\x05\x0f\x31\x18\x6f\xf0\xee\x50\xdd\x0f\xd9\xf7\xd1\x9f\x00\x00\x00\xff\xff\x18\xf8\x19\x12\x6e\x03\x00\x00" +var _stakingcollectionRegister_multiple_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x6b\xdc\x30\x10\xc5\xef\xfe\x14\x8f\x3d\x04\x2f\x2d\xde\x16\x4a\x0f\xa6\x69\x68\x13\x02\x3d\xb5\x64\x69\x2f\x61\x0f\xaa\x3c\xf6\x0e\x91\x25\x33\x1a\x77\x03\x65\xbf\x7b\x91\xff\xec\xa6\xac\xe9\xad\x3a\x18\x33\x1a\x3d\xbd\x37\xfa\x71\xdb\x05\x51\xdc\xbb\x70\xd8\xaa\x79\x62\xdf\xdc\x06\xe7\xc8\x2a\x07\x8f\x5a\x42\x8b\xd5\xe2\xde\x2a\xcb\x36\x9b\x0d\x1e\xa8\xe1\xa8\x24\x11\x6d\xef\x94\x3b\x47\xa8\xc8\x51\x63\x34\x48\x04\x7b\xe8\x9e\x10\xc7\xc3\xb0\x67\x65\xa1\x18\x7a\xb1\x34\x88\xd4\x41\xc6\xbe\x8e\x2c\xd7\x4c\x15\x7c\xa8\xe8\xcb\x5d\x84\xf1\x15\x4c\x1b\x7a\xaf\x08\x35\x34\x3c\x91\x8f\xd0\x00\x1b\xda\x96\x35\xcb\x54\x8c\x8f\x66\x90\xcc\xb9\x8a\x25\x1e\xb7\x2a\xec\x9b\xdd\xeb\xe9\x58\x2a\x7d\xbf\xe7\xe7\xf7\xef\x76\x6b\xfc\xce\x00\x60\xf8\x38\xd2\xd9\xd6\x39\xd3\x03\xd5\x25\x4c\xaf\xfb\x7c\x31\x72\x71\xfe\xfd\x7a\xf0\x24\x6b\x5c\x2d\xf7\x5d\x54\xb2\xe1\xce\x4e\xa8\x33\x42\xb9\xb1\x36\x59\x9b\xae\xfa\x1c\x44\xc2\xe1\x87\x71\x3d\xad\x71\xf5\x69\xdc\x9b\xbd\xa6\x15\xc9\xd5\xc5\x92\x57\x5c\x63\x92\x2a\xa2\x06\x31\x0d\x15\x3f\x07\xb1\x0f\xff\x23\xc3\xc7\x3c\xd1\x50\x2e\x93\x72\xd9\xbe\x1d\x1d\x7d\x33\xba\x5f\x9f\xa2\xa4\x75\x73\x83\xce\x78\xb6\xf9\xea\x36\xf4\x2e\x3d\xb5\x62\xb4\x0d\xa1\xf4\xc6\xb8\x64\x6d\x54\x38\x8e\x63\xa4\x67\xb2\xbd\xd2\x8b\x09\xfd\x32\x02\xc6\x35\xde\x9c\x2a\x89\x28\xae\x12\x7f\x5c\xc5\x17\x9d\xff\x9c\x67\x21\x13\xcc\x77\x33\xc1\xf9\xc8\x61\x09\xae\x66\xa0\xca\x19\xac\x47\xde\xad\x07\x9c\xfe\x12\x4f\x36\x18\xaf\xf0\xf6\x54\x3d\x4e\xde\x8f\xd9\x9f\x00\x00\x00\xff\xff\x02\xdc\x8f\x76\x6b\x03\x00\x00" func stakingcollectionRegister_multiple_delegatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -5380,11 +5359,11 @@ func stakingcollectionRegister_multiple_delegatorsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_multiple_delegators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0xe2, 0x6a, 0xd, 0xc2, 0x4a, 0xe7, 0x87, 0x9f, 0x74, 0x96, 0xa8, 0x5e, 0x7f, 0x41, 0xe5, 0xd7, 0x1d, 0x6b, 0x93, 0x36, 0x72, 0xe0, 0x11, 0x6a, 0xb6, 0xed, 0xd, 0x9f, 0xd6, 0x3f, 0xfc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x55, 0xaf, 0x3d, 0x1, 0xae, 0xfd, 0xe5, 0x9b, 0xc1, 0x4a, 0xad, 0x60, 0x30, 0x97, 0x5b, 0xd3, 0xfd, 0xb2, 0x73, 0x19, 0xdf, 0x4b, 0x61, 0x5e, 0xa7, 0x53, 0x2c, 0x3a, 0xd1, 0xce, 0xe5, 0xb4}} return a, nil } -var _stakingcollectionRegister_multiple_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x4d\x4f\xe3\x48\x10\xbd\xfb\x57\xd4\x72\x40\xb1\x36\x32\xac\xb4\x5a\xad\xac\xc9\xa0\x4c\x80\x11\x0a\x82\x11\x61\xe6\x12\xe5\xd0\xd8\x65\xbb\x44\xbb\xdb\xaa\x6e\x13\x3c\xc0\x7f\x1f\xb5\xed\x7c\x18\x3b\xc3\x69\x7c\x88\xec\xaa\x57\xaf\x5f\x57\xd5\x0b\xe5\x85\x66\x0b\x33\xae\x0a\xab\xbd\xf6\xeb\x52\xea\xf5\xc2\x8a\x47\x52\xe9\x4c\x4b\x89\x91\x25\xad\x20\x61\x9d\xc3\xe9\xf3\xe2\x7e\x3a\xbf\xba\xf9\x3a\xbb\xbd\xbe\xbe\x98\xdd\x5f\xdd\xde\x4c\xcf\xcf\xef\x2e\x16\x0b\xcf\x3b\x39\x39\x81\x3b\x4c\xc9\x58\x64\x03\x79\x29\x2d\x15\x12\x41\xe9\x18\x0d\x90\x02\x9b\x21\x98\x86\x16\xa2\x1d\x2f\xa3\xd1\x25\x47\x58\xd7\x27\x9a\x1b\x5c\x81\x11\x25\x84\x71\x5d\x0e\xa4\x12\xcd\xb9\x70\x78\xcf\xb3\x2c\x94\x11\x75\xf1\x88\x62\x13\xc2\x72\x61\x99\x54\xba\x1a\x7b\xb0\xf7\xb0\x96\xe8\x92\xdf\xaf\x94\xfd\xff\x5d\x4e\xa1\x5d\x6b\x76\x4a\xa6\x71\xcc\x68\x0c\x1e\xa4\xd9\x41\xe7\x58\x1d\x44\xb5\xf7\xfa\x1d\x44\xe4\xba\x54\xb6\x56\x74\x49\xcf\xff\xfd\xfb\x2e\x5d\x94\x0f\x92\xa2\x96\x60\xd9\x0c\x24\x98\x63\x75\x4d\xc6\x5e\x28\xcb\xd5\xea\x6c\xe5\xc3\x4b\x5d\x53\xff\x48\xb4\x9b\x63\x77\x53\xba\xc3\x24\x04\x51\xda\x6c\x34\x38\xc4\x60\xf7\x7a\xbb\x56\xc8\x3e\x1c\x0f\xe3\x7a\x11\xaf\x3e\xb3\x60\x2c\x04\xe3\x48\x44\x91\xbb\x4c\x7b\xd4\x17\xcd\xac\xd7\x3f\x84\x2c\xd1\x87\xe3\x69\x93\xdb\x68\xad\xbb\x83\x32\x09\x86\xb4\xc2\x04\x5a\xaa\xc0\x58\xcd\x22\xc5\xe0\xa1\x26\xfb\xf4\x27\xee\xf0\x79\xe4\x76\x38\x1c\xde\xef\x3e\x7c\xd1\x28\xfa\x26\x6c\xe6\x77\x46\x75\x76\x06\x85\x50\x14\x8d\x8e\x66\xba\x94\x6e\x45\x2d\x34\xb2\x81\x31\x01\xab\xa1\xc7\x75\xe4\x7b\x5b\x8a\x27\xc1\x40\x30\x81\xd3\x5d\xc8\xad\x3d\xc5\xce\x24\x14\x9b\xbd\xc6\xb9\x87\x92\x7a\xd4\xb9\x88\x32\x52\xd8\x76\x17\x26\x87\x9b\x1a\x70\x6b\xc2\x1b\x1d\xe3\xa8\xc3\x55\xf3\xc5\x21\x50\x3c\xee\xc5\x9d\x5f\xc2\xc6\x35\x4b\x5a\xf5\xf3\x3d\xcf\x84\x43\x36\xfa\xa0\x74\x8e\x55\xf8\xce\x52\x83\x15\x3b\x3f\x85\xfb\xde\x1a\xc4\x36\xc6\x0a\x37\x06\x1b\xc4\x14\xa2\x42\x0e\x37\xcb\xe6\x43\x07\xf0\xd2\xef\x51\xb2\xe7\xc7\x25\xad\x60\x32\x01\x45\x12\x5e\x5f\xbb\xf1\xbf\x02\x89\x2a\xb5\x99\xcb\x9f\x0e\xf0\x34\x47\x37\xab\x22\x94\xdb\x93\x82\xf5\x13\xc5\x08\x3f\x91\x35\x3c\x62\x65\xb6\x7f\x79\xed\x80\x37\x1a\x8f\xfc\x1e\xdb\x5b\x2f\xe2\x6a\x1f\xb1\x72\x8b\xd3\xd5\x75\x40\x4b\x77\x89\x02\x77\x7e\x20\xe2\x78\xb4\x2d\x0e\x1d\x5d\xb0\xfd\x1c\x43\x26\x4c\x36\x95\xa9\x66\xb2\x59\xde\x64\x3b\xa1\x31\xac\x91\xd2\xcc\x36\xa9\xe6\xfd\x23\xe5\xdd\x2f\x67\x05\x82\xbf\xe1\x1f\xaf\x9b\x7f\xf3\xde\xbc\x5f\x01\x00\x00\xff\xff\x77\xdc\xd4\xaf\x9f\x06\x00\x00" +var _stakingcollectionRegister_multiple_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x4d\x6f\xd3\x40\x10\xbd\xfb\x57\x0c\x39\x54\xb6\x88\xdc\x22\x21\x84\x2c\x42\x55\x2a\x2a\xa1\x22\x40\xad\xe0\x12\xe5\xb0\xb5\xc7\xf6\xa8\xeb\x5d\x6b\x76\xdd\x60\xda\xfe\x77\xb4\x5e\xe7\xc3\xb1\x43\x4f\xf8\x10\xd9\x33\x6f\xde\xbe\x9d\x99\x17\xaa\x6a\xcd\x16\x2e\xb9\xad\xad\x0e\xfa\xaf\x2b\xa9\xd7\xb7\x56\xdc\x93\x2a\x2e\xb5\x94\x98\x5a\xd2\x0a\x72\xd6\x15\xcc\x26\x73\xb3\x20\x38\x3d\x3d\x85\x1b\x2c\xc8\x58\x64\x03\x55\x23\x2d\xd5\x12\x41\xe9\x0c\x0d\x90\x02\x5b\x22\x18\x5f\x07\xe9\x8e\x94\xd1\xe8\x86\x53\xec\xea\x73\xcd\x1e\x57\x63\x4a\x39\x61\xd6\x95\x03\xa9\x5c\x73\x25\x1c\x3e\x08\x2c\x0b\x65\x44\x57\x1c\x52\x66\x12\x58\xde\x5a\x26\x55\xac\xe6\x01\xec\x3d\xac\x25\xba\xe4\xcf\x2f\xca\xbe\x3f\xc8\x29\xb4\x6b\xcd\x4e\xc9\x45\x96\x31\x1a\x83\x47\x69\x76\xd0\x6b\x6c\x8f\xa2\xfa\x7b\xfd\x0b\x22\x2a\xdd\x28\xdb\x29\xba\xa2\xdf\xef\xde\x1e\xa4\xeb\xe6\x4e\x52\xda\x13\x2c\xfd\x34\xe2\x6b\x6c\xbf\x92\xb1\x9f\x95\xe5\x76\x75\xbe\x8a\xe0\xb1\xab\xe9\x7e\x24\xda\xcd\xb1\xbb\x31\xdc\x60\x9e\x80\x68\x6c\x19\x4e\x4e\x29\xde\xbd\x7e\x5f\x2b\xe4\x08\x4e\xa6\x71\xa3\x48\xd0\x9d\x59\x33\xd6\x82\x31\x14\x69\xea\x2e\xd3\x1f\xf5\x49\x33\xeb\xf5\x2f\x21\x1b\x8c\xe0\xe4\xc2\xe7\x36\x5a\xbb\xee\xa0\xcc\xe3\x29\xad\xb0\x80\x9e\x2a\x36\x56\xb3\x28\x30\xbe\xeb\xc8\x3e\xfc\x8f\x3b\x7c\x0c\xdd\x02\x27\xd3\xcb\x3d\x86\xdf\x7a\x45\x3f\x84\x2d\xa3\xc1\xa8\xce\xcf\xa1\x16\x8a\xd2\x70\x76\xa9\x1b\xe9\x56\xd4\x82\x97\x0d\x8c\x39\x58\x0d\x63\x7b\x44\xc1\x96\xe2\x41\x30\x10\x2c\xe0\x6c\x17\x72\x6b\x4f\x99\x33\x09\x65\x66\xaf\x71\xee\xa1\xbc\x1b\x75\x25\xd2\x92\x14\xf6\xdd\x85\xc5\xf1\xa6\xc6\xdc\x9b\xf0\x9b\xce\x30\x1c\x70\x75\x7c\x59\x02\x94\xcd\x47\x71\xe7\x97\xc4\xbb\x66\x49\xab\x71\x7e\xe4\x99\x64\xca\x46\x2f\x94\x5e\x63\x9b\x1c\x58\x6a\xb2\x62\xe7\xa7\x64\xdf\x5b\x93\x58\x6f\xac\x64\x63\xb0\x49\x4c\x2d\x5a\xe4\x64\xb3\x6c\x11\x0c\x00\x8f\xe3\x1e\xe5\x7b\x7e\x5c\xd2\x0a\x16\x0b\x50\x24\xe1\xe9\x69\x18\x7f\x15\x4b\x54\x85\x2d\x5d\xfe\x6c\x82\xc7\x1f\xed\x57\x45\x28\xb7\x27\x35\xeb\x07\xca\x10\xfe\x20\x6b\xb8\xc7\xd6\x6c\xff\xf2\xfa\x01\x6f\x34\xce\xa2\x11\xdb\xf3\x28\xe2\x6a\xef\xb1\x75\x8b\x33\xd4\x75\x44\xcb\x70\x89\x62\x77\x7e\x2c\xb2\x2c\xdc\x16\x27\x8e\x2e\xde\x7e\xce\xa1\x14\xa6\xbc\x90\x85\x66\xb2\x65\xe5\xb3\x83\xd0\x1c\xd6\x48\x45\x69\x7d\xca\xbf\xbf\xa4\x7c\xf8\xe5\xac\x40\xf0\x1a\xde\x04\xc3\xfc\x73\xf0\x1c\xfc\x0d\x00\x00\xff\xff\x27\x86\x76\xa0\x9c\x06\x00\x00" func stakingcollectionRegister_multiple_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -5400,11 +5379,11 @@ func stakingcollectionRegister_multiple_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_multiple_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcf, 0xa8, 0x9f, 0x9, 0xd6, 0x5d, 0xe1, 0xfa, 0x9b, 0xfa, 0x6f, 0x63, 0xb2, 0xc4, 0xcc, 0xf9, 0xae, 0xc0, 0x6b, 0xb, 0x58, 0x2b, 0x22, 0xc6, 0x84, 0x8c, 0x7e, 0x82, 0x9a, 0x9a, 0x47, 0xa3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0x96, 0x94, 0x8c, 0x6e, 0x12, 0x77, 0x29, 0x32, 0xd4, 0x1c, 0x47, 0x25, 0xdd, 0xdc, 0x25, 0xd1, 0x4c, 0x61, 0x97, 0x3e, 0xc1, 0x8e, 0xe8, 0xe7, 0x4b, 0x73, 0xea, 0xe7, 0xa, 0xfc, 0xd2}} return a, nil } -var _stakingcollectionRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x4d\x4f\xdb\x4c\x10\x3e\xe3\x5f\x31\xe2\xc0\xeb\x48\x91\xc9\x2b\x55\x55\x65\x35\x45\x69\x80\x82\x40\x80\x30\xf4\x3e\x78\xc7\xf6\x0a\x7b\xd7\x9a\x5d\x13\xa2\x8a\xff\x5e\xd9\x6b\x27\x71\xe3\x84\x72\x68\x0e\xce\x7e\x3c\x33\xf3\xcc\xc7\xb3\xb2\x28\x35\x5b\x98\xf3\xb2\xb4\xda\x6b\x77\xe7\xb9\x5e\x44\x16\x9f\xa5\x4a\xe7\x3a\xcf\x29\xb6\x52\x2b\x48\x58\x17\x30\x79\x8d\x1e\x66\x57\x97\x37\x3f\xe6\xb7\xd7\xd7\x67\xf3\x87\xcb\xdb\x9b\xd9\xe9\xe9\xfd\x59\x14\x79\xde\xf1\xf1\x31\xdc\x53\x2a\x8d\x25\x36\x80\x20\x28\xa7\x14\xad\x66\x90\x0a\x6c\x46\x60\x9c\x4f\x88\xd7\x4e\x99\x8c\xae\x38\xa6\xc6\x38\xd1\xec\x70\x25\xc5\x32\x91\x24\x40\x69\x41\x20\x55\xa2\xb9\xc0\x06\x8f\x4a\x34\x10\x2c\x74\xa5\x2c\xe8\x04\xac\x7e\x26\x65\xc0\x6a\x88\x75\x51\x48\xeb\x79\x96\x51\x19\x6c\xfc\xfb\x52\x84\x10\x59\x96\x2a\x1d\x7b\xb0\xf1\x63\x9d\x53\x08\x8f\x97\xca\x7e\xe9\x5f\x28\xb2\x0b\xcd\x35\xcd\x99\x10\x4c\xc6\x0c\xdb\xaf\x61\x57\xb4\x1c\x86\xb4\xd9\xee\xbc\x77\x29\x84\xf0\x78\x2e\x5f\x3f\x7f\xea\xdf\x15\x18\x67\x52\xd1\x2c\x8e\x6b\xcc\xa6\x0b\xd8\x8f\x8b\x64\xaa\xd0\x56\x4c\xb3\x3c\xd5\x2c\x6d\x56\x74\x59\xbe\x63\x78\x81\x26\xfb\xd3\x66\x04\xbf\xbc\xc6\x2a\x27\xdb\xa5\xb3\x1e\x88\x7b\x4a\x42\xc0\xca\x66\xfe\xe0\xbc\x04\xeb\xe5\xed\x42\x11\x8f\xe0\x68\x18\xb7\x75\xe2\x62\x96\x4c\x25\x32\xf9\xe8\x28\xb6\xa1\xbe\x6b\x66\xbd\xf8\x89\x79\x45\x23\x38\x6a\xe9\xd7\x3c\x57\x55\xa7\x3c\x09\x86\xb8\xc2\x14\x5a\x57\x81\xb1\x9a\x31\xa5\xe0\xa9\x71\xf6\xf5\x5f\xe4\xf0\xcd\xaf\xe5\x12\x0e\x4b\x69\x1b\x1e\x39\x46\x77\x68\xb3\x51\xaf\x4f\x27\x27\x50\xa2\x92\xb1\x7f\x38\xd7\x55\x5e\x0b\xc2\x82\xa3\x0d\x08\x4c\x09\x31\xa9\x98\xea\xe9\x47\xd8\x96\x6c\xab\xbb\x92\x65\x81\xbc\x84\xca\x10\xff\x67\xba\x32\x1c\x8e\xbc\x55\x28\x99\x34\x3d\xee\x4f\x05\x4c\x77\x57\x33\xe0\x56\xe8\x37\x5a\x90\xdf\xa3\x5c\x4b\x4e\x8a\x21\xb9\xd5\xdf\x77\xd5\xb6\x75\xb4\x57\x78\xbd\xed\x6e\xfd\xad\xd7\xc3\x1a\x74\xff\xfd\xbb\x12\x97\xc4\x61\x57\xad\xd5\xd5\xe6\xb0\xad\xb4\x21\xd3\x5a\x3b\x30\x85\x6d\xfd\xf9\x8c\x6e\x5e\xc3\xbf\x51\x6b\xbf\xfb\xbb\x26\x20\x25\x0b\x58\x47\x75\xd6\x80\x9d\xb9\x7b\xa4\xeb\x9e\x33\x2e\x80\x54\x55\xc0\x4b\x1d\x1b\x4a\xd6\x2f\x52\x90\xd8\x6c\x7a\xc7\x3e\x6b\xa5\x0f\x53\xe8\xbd\x02\xfb\x98\xf7\x80\x1f\x21\x5d\x07\xfb\x18\xdf\x4d\xbf\x5b\xdc\xcb\xea\x29\x97\xf1\x15\x2d\x61\x0a\x77\xdd\xda\xf7\x0e\x0e\x0e\x9a\x16\x76\x27\x03\x19\x04\x82\x62\x2d\xe8\x82\x5e\xfd\xd1\xb8\x33\x30\x03\xcf\x67\xdb\x5c\xcf\x21\x46\x7b\x9e\xd1\xe0\x99\x96\x26\x40\x21\xfc\x8d\xc0\xab\xe5\x78\x55\xe8\xd6\x71\xb7\x1d\xc3\x82\x64\x9a\xd9\x10\xfe\x9f\x4c\x26\xc1\x64\x1d\xe2\xcd\x73\xdf\x37\xef\x77\x00\x00\x00\xff\xff\x1e\xb4\xdf\xf4\xa8\x07\x00\x00" +var _stakingcollectionRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x51\x6b\xe3\x48\x0c\x7e\xae\x7f\x85\xc8\x43\xcf\x86\xe0\xe6\xe0\x38\x0e\x73\xd9\xd2\x2d\x94\x2e\x85\xdd\xd2\xd0\x7d\x57\x3d\xb2\x3d\xd4\x1e\x19\xcd\xb8\x69\x58\xfa\xdf\x17\x7b\xec\x24\xde\x38\xe9\xf6\x61\xf3\xe0\xcc\x8c\x3e\x49\x9f\x46\xfa\x46\x57\x35\x8b\x83\x6b\xd9\xd4\x8e\x83\x7e\x77\x53\xf2\x7a\xe5\xf0\x59\x9b\xfc\x9a\xcb\x92\x52\xa7\xd9\x40\x26\x5c\xc1\x6c\xd2\x36\x0b\x82\x8b\x8b\x0b\x78\xa0\x5c\x5b\x47\x62\x01\x41\x51\x49\x39\x3a\x16\xd0\x06\x5c\x41\x60\xbd\x13\xa4\xbb\x88\x42\x96\x1b\x49\xa9\x73\xce\x58\x3c\xae\xa6\x54\x67\x9a\x14\x18\x56\x04\xda\x64\x2c\x15\x76\x78\x34\xaa\x83\x60\xc5\x8d\x71\xc0\x19\x38\x7e\x26\x63\xc1\x31\xa4\x5c\x55\xda\x05\x81\x13\x34\x16\xbb\xf8\xa1\x56\x09\xac\x9c\x68\x93\xcf\x03\xd8\xfb\x09\x97\x94\xc0\xe3\x17\xe3\xfe\x1b\x1b\x0c\xb9\x35\x4b\x4b\xf3\x4a\x29\x21\x6b\xa7\xfd\x77\xb0\x3b\xda\x4c\x43\xfa\x6a\x8f\xda\x7d\x09\x09\x3c\xde\xe8\xd7\x7f\xff\x19\xdb\x2a\x4c\x0b\x6d\xe8\x2a\x4d\x5b\xcc\x7e\x08\x38\x8d\x5b\xe9\xdc\xa0\x6b\x84\xae\xca\x9c\x45\xbb\xa2\x1a\xaa\x7c\xc7\xf1\x16\x6d\xf1\xab\x4f\x04\x3f\x82\xce\xab\x24\x37\x94\xb3\xeb\xf8\x03\x65\x09\x60\xe3\x8a\x70\x72\x20\xe2\xdd\xf2\xdb\xda\x90\x44\x70\x3e\x8d\x3b\x38\xf1\x39\x6b\xa1\x1a\x85\x42\xf4\x14\xfb\x54\x9f\x59\x84\xd7\xdf\xb1\x6c\x28\x82\xf3\x9e\x7e\xcb\x73\x7b\xeb\x54\x66\xf1\x14\x57\x58\x42\x1f\x2a\xb6\x8e\x05\x73\x8a\x9f\xba\x60\xff\xff\x89\x1a\x3e\x85\xad\x56\x92\x69\x1d\x1d\xc2\x57\x9e\xd1\x3d\xba\x22\x1a\xf5\xe9\xf2\x12\x6a\x34\x3a\x0d\x67\xd7\xdc\x94\xad\x20\x1c\x78\xda\x80\x20\x94\x91\x90\x49\xa9\x9d\x7e\x84\x43\xbd\xf6\xba\xab\x45\x57\x28\x1b\x68\x2c\xc9\x5f\x76\xb8\x86\x59\x14\x6c\x53\xe9\xac\xeb\xf1\x78\x2a\x60\x79\xfc\x36\x63\xe9\x85\xfe\x95\x15\x85\x23\xca\xad\xe4\xb4\x9a\x92\x5b\xfb\x7d\x57\x6d\x07\x47\x27\x85\x37\xda\x1e\xd7\xdf\x6e\x3d\xad\x41\xff\x3f\xb6\xd5\xb8\x21\x49\x86\xdb\xda\x9a\xf6\x87\x6d\xab\x0d\x9d\xb7\xda\x81\x25\x1c\xea\x2f\x14\xf4\xf3\x9a\xfc\x8e\x5a\xc7\xdd\x3f\x36\x01\x39\x39\xc0\x36\xab\xf7\x06\x1c\xdc\xfd\x0b\xdd\xf6\x5c\x70\x0d\x64\x9a\x0a\x5e\xda\xdc\x50\x0b\xbf\x68\x45\x6a\xbf\xe9\x03\xfb\xa2\x97\x3e\x2c\x61\xf4\x0a\x9c\x62\x3e\x02\x7e\x84\x74\x9b\xec\x63\x7c\xf7\xe3\x1e\x70\xaf\x9b\xa7\x52\xa7\x77\xb4\x81\x25\xdc\x0f\xeb\x30\x38\x3b\x3b\xeb\x5a\x38\x9c\x4c\x54\x10\x2b\x4a\x59\xd1\x2d\xbd\x86\xd1\x7c\x70\xb0\x13\xcf\x67\xdf\xdc\xc0\x23\xa2\x13\xcf\x68\xfc\x4c\x1b\x1b\xa3\x52\xe1\x5e\xe2\xed\x72\xbe\xbd\xe8\x3e\xf0\xb0\x9d\xc3\x9a\x74\x5e\xb8\x04\xfe\x5e\x2c\x16\xf1\x62\x97\xe2\x2d\xf0\xdf\xb7\xe0\x67\x00\x00\x00\xff\xff\x4b\x15\xb8\xc7\xa5\x07\x00\x00" func stakingcollectionRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5420,11 +5399,11 @@ func stakingcollectionRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcb, 0x44, 0x70, 0x88, 0xcc, 0x80, 0x9b, 0x27, 0xa9, 0xeb, 0x96, 0xcd, 0x97, 0x22, 0xf5, 0xa5, 0xdb, 0xd5, 0xcd, 0xb4, 0x8, 0x5e, 0x66, 0xb, 0xf4, 0x26, 0xe2, 0xf7, 0xf0, 0x1d, 0xeb, 0xba}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xcb, 0x54, 0x53, 0x1a, 0x9d, 0x3e, 0x32, 0x51, 0xe3, 0x52, 0x76, 0xf2, 0xee, 0xcd, 0xe3, 0xb, 0xab, 0xed, 0x51, 0x3d, 0xed, 0xa4, 0x99, 0x55, 0xe7, 0xfb, 0xec, 0x6c, 0x87, 0xf2, 0xbf}} return a, nil } -var _stakingcollectionRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x8f\xd3\x30\x10\x85\xef\xf9\x15\x4f\x7b\x58\x52\x69\x95\x22\x40\x1c\x2a\xa0\x2a\xed\x2e\xaa\x58\x6d\x51\xb3\xe5\x6e\xdc\x49\x6b\xe1\xda\x61\x3c\x56\x8b\x50\xff\x3b\x4a\xdc\xb4\x88\xe6\xc0\x05\x1f\xe2\xd8\x99\x99\xf7\x66\xf2\x99\x5d\xed\x59\xf0\x60\xfd\xbe\x14\xf5\xdd\xb8\xcd\xd4\x5b\x4b\x5a\x8c\x77\xa8\xd8\xef\xf0\xf2\x50\x3e\x4f\x3e\xcf\x9f\x3e\x4d\x17\x8f\x8f\xf7\xd3\xe7\xf9\xe2\x69\x32\x9b\x2d\xef\xcb\x32\xcb\x86\xc3\x21\x96\xf4\x23\x52\x90\x80\xe8\x42\xaa\x80\xca\x33\x64\x4b\x08\x35\x69\x53\x19\x5a\xc3\xf9\x35\xc1\x33\xd6\x64\x69\xa3\xc4\x33\x8c\x4b\x21\xa7\x14\x7d\x56\xcd\x32\x61\xe5\x82\x6a\x0f\x79\x93\x38\x9f\x8d\x50\x0a\x1b\xb7\xb9\xbb\x14\x68\x2e\x57\x73\x27\xaf\x5f\x8d\xef\xa0\x76\x3e\x3a\x19\x61\xf5\x60\x0e\x6f\xdf\x0c\xf0\x2b\x03\x80\xf6\x61\x49\x3a\x91\x4b\x67\x4b\xaa\x46\x50\x51\xb6\x79\x6f\xe3\xc5\xe5\x75\xb1\x77\xc4\x03\xdc\xf6\xc7\x5d\xdd\x64\xad\x66\xcd\x54\x2b\xa6\x5c\x69\x9d\x7c\xb5\x52\x1f\x3d\xb3\xdf\x7f\x55\x36\xd2\x00\xb7\x93\xf4\xad\xf3\xda\xac\x40\xb6\x2a\xfa\xbc\xe2\x3d\x4e\xa5\x8a\x20\x9e\xd5\x86\x8a\x6f\x6d\xb1\x77\xff\xa3\x87\x0f\x79\xf3\xdf\x47\xfd\x4c\x5c\x87\x97\xc9\xd1\x17\x25\xdb\xc1\xb9\x95\x66\x8d\xc7\xa8\x95\x33\x3a\xbf\x99\xfa\x68\x1b\x06\x04\xc9\x36\x14\x98\x2a\x62\x72\x9a\x20\x1e\x0a\xd7\xec\x9d\xf8\xa8\xd9\xec\x14\xff\x44\x0c\xc4\x2f\x42\x37\x86\x9b\xa4\x74\x4c\xe3\xa6\x03\xe9\x28\xf4\x2f\x93\x2c\x38\xd1\xba\xea\x58\x3d\x03\x96\xf6\xbf\x00\xfb\xe3\x70\x81\x2c\xed\x9d\x83\x63\xf6\x3b\x00\x00\xff\xff\xcc\x83\x9c\x97\x43\x03\x00\x00" +var _stakingcollectionRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x8f\xd3\x30\x10\x85\xef\xf9\x15\x4f\x39\x2c\x89\xb4\x4a\x25\x40\x1c\x22\xa0\x82\x45\x2b\xf5\x04\x6a\x55\xee\xc6\x9d\xa4\x16\x8e\x1d\xc6\x63\xb5\x08\xf5\xbf\xa3\xc4\x4d\x83\x68\x0e\x5c\xf0\x21\x8e\xed\xf1\xbc\x37\xe3\xcf\x74\xbd\x67\xc1\xb3\xf5\xa7\x9d\xa8\xef\xc6\xb5\x4f\xde\x5a\xd2\x62\xbc\x43\xc3\xbe\x43\xbe\x78\x96\x67\xd9\x6a\xb5\xc2\x96\x7e\x44\x0a\x12\x10\x5d\x48\x21\x68\x3c\x43\x8e\x84\xd0\x93\x36\x8d\xa1\x03\x9c\x3f\x10\x3c\xe3\x40\x96\x5a\x25\x9e\x61\x5c\x0a\xb9\x5e\xd1\xb7\xb4\x59\x26\xac\x5c\x50\xe3\xa2\x18\x2e\x6e\x3e\xd5\xd8\x09\x1b\xd7\x3e\xce\x09\x86\xcd\xfd\xc6\xc9\xab\x97\xeb\x47\xa8\xce\x47\x27\x35\xf6\xcf\xe6\xfc\xe6\x75\x89\x5f\x19\x00\x8c\x1f\x4b\x32\x89\xcc\xd6\xb7\xd4\xd4\x50\x51\x8e\xc5\x62\x65\xd5\xfc\xfb\xf9\xe4\x88\x4b\x3c\x2c\xc7\xdd\xed\x64\xa3\x66\xcf\xd4\x2b\xa6\x42\x69\x9d\x7c\x8d\x52\x1f\x3d\xb3\x3f\x7d\x55\x36\x52\x89\x87\x0f\xe9\x6c\xf2\x3a\x8c\x40\xb6\xa9\x96\xbc\xe2\x1d\xae\xa9\xaa\x20\x9e\x55\x4b\xd5\xb7\x31\xd9\xdb\xff\x51\xc3\xfb\x62\x78\xf4\x7a\x19\x88\xfb\xf0\x5d\x72\xf4\x45\xc9\xb1\xbc\x95\x32\x8c\xf5\x1a\xbd\x72\x46\x17\xf9\x93\x8f\x76\x60\x40\x90\x6c\x43\x81\xa9\x21\x26\xa7\x09\xe2\xa1\x70\x0f\xde\x95\x8f\x9e\x4d\xa7\xf8\x27\x62\x20\x7e\x11\xa6\x36\xe4\x49\xe9\x92\xda\x4d\x67\xd2\x51\xe8\x5f\x3a\x59\x71\xa2\x75\x3f\xb1\x7a\x03\x2c\xcd\x7f\x01\xf6\xc7\x62\x86\x2c\xcd\x93\x83\x4b\xf6\x3b\x00\x00\xff\xff\x6a\x87\x6b\x8d\x40\x03\x00\x00" func stakingcollectionRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -5440,11 +5419,11 @@ func stakingcollectionRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5f, 0xa6, 0x49, 0xb3, 0x37, 0xb3, 0xec, 0xcb, 0x4, 0xc5, 0x2e, 0x27, 0x94, 0xe9, 0xb, 0x5b, 0xf2, 0xaf, 0xb6, 0xd7, 0x0, 0x78, 0x3d, 0x36, 0x37, 0x2b, 0x55, 0x62, 0x3a, 0x27, 0x55, 0x43}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0x9, 0xd0, 0xec, 0x1c, 0x52, 0x7a, 0x4e, 0xdd, 0x2e, 0x32, 0x4e, 0x54, 0x32, 0x24, 0xf7, 0x13, 0x28, 0xda, 0x6, 0x1f, 0x13, 0x61, 0x82, 0x5c, 0x5, 0x93, 0xc9, 0xcd, 0x4c, 0xce, 0x85}} return a, nil } -var _stakingcollectionRestake_all_stakersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x8b\xdb\x30\x10\xbd\xeb\x57\x0c\x39\x2c\x0e\x2c\x4e\xcf\xa1\xe9\x92\xda\xdb\x12\xba\x38\x25\x0e\xbd\xcf\xda\xe3\xac\x89\xac\x09\xb2\x4c\x16\x96\xfc\xf7\x22\xcb\xf1\xc7\xda\x69\x0f\xed\xea\x20\x84\x34\xf3\xe6\xcd\x9b\xa7\xbc\x38\xb1\x36\xf0\x4d\xf2\x39\x36\x78\xcc\xd5\x21\x60\x29\x29\x31\x39\x2b\xc8\x34\x17\xf0\xe9\x35\xde\xaf\x7f\x6c\xa2\xef\xc1\xf6\xe9\xe9\x31\xd8\x6f\xb6\xd1\x3a\x0c\x77\x8f\x71\x2c\x7a\xc9\x9b\x70\x8f\xcf\x92\x1a\x0c\x97\x39\x1b\x3f\xcc\x84\x58\x2c\x16\x10\x70\x51\xe4\xa6\x04\x4d\x67\xd4\x29\xa5\x60\xf8\x48\xaa\x04\xc3\x50\x1a\x3c\x12\x64\xac\x01\xa5\x04\xc5\x29\x95\x80\x2a\x85\x94\x24\x1d\xd0\xb0\x2e\x21\x57\x80\x90\xb4\x34\x85\x30\x1a\x55\x89\x8e\xf3\x9b\x00\x00\xa8\x37\x49\xa6\x86\x1b\x34\xb5\xa3\x6c\x09\x58\x99\x17\x6f\xb2\x67\xbf\x3b\x6e\xcf\x8a\xf4\x1c\xee\xa6\xe3\x46\x37\xa2\xae\x79\xd2\x74\x42\x4d\x1e\x26\x09\x57\xca\x34\xa5\xbe\xb2\xd6\x7c\xfe\x85\xb2\xa2\x39\xdc\xad\xdd\xdb\xbc\xe1\x6a\x57\x49\x32\xf3\xa7\xb8\xc2\x0a\x1a\x28\xbf\x34\xac\xf1\x40\xfe\x73\x0d\xf6\xf9\x23\x7a\xf8\xe2\xd9\xc1\x2d\xa7\xed\x30\x0e\x8f\x1d\xa3\x9f\x68\x5e\xe6\x6d\x2b\x76\x3d\x3c\xc0\x09\x55\x9e\x78\xb3\x80\x2b\x99\x82\x62\x03\x8e\x36\x68\xca\xec\x98\x47\x58\x33\x87\x70\x71\x32\xd2\x2b\x25\x95\xa1\x9e\x42\x76\x98\xd6\x0d\x9b\xb0\x84\xd5\x6d\xbd\xfc\x03\x99\xc8\x85\x79\x73\xd1\x66\x5b\x3f\xb9\x6c\xeb\x9e\x2b\xce\xdb\x80\x74\x5b\x41\x65\x0c\xab\x09\x57\xfb\x51\xf3\xea\x39\x80\x65\x03\x34\xec\xfd\x36\xb5\xda\xda\xbb\xc6\xf2\xfb\xda\xf1\xef\x90\xee\x3b\x9b\xd7\x97\xb9\xbc\x07\x2c\x9c\x91\xae\xd4\x7c\xf7\x57\xae\x38\x5d\xf1\x8b\x18\x88\xd5\xfb\x30\x7f\xd1\x2b\xec\x6a\x8e\x44\x6b\x51\xac\x6e\x3d\xc8\xb1\x74\x1d\xf3\x9b\xfa\x85\xfd\x90\xb6\xf5\x36\xd1\x6f\x4f\xd1\x94\x1a\x13\x71\xef\xb5\xff\x0f\x83\xf8\x27\x36\xdd\xb4\x06\x6a\xfc\x61\x64\x6e\xbf\x88\xdf\x01\x00\x00\xff\xff\xfb\x06\x01\xb0\x88\x05\x00\x00" +var _stakingcollectionRestake_all_stakersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x6f\xdb\x30\x0c\xbd\xeb\x57\x10\x39\x14\x36\x50\x38\xf7\x60\x59\xb1\x25\x18\xd0\x4b\x36\xb4\xc5\xee\xac\x4d\xa7\x46\x64\x31\x90\x68\x64\x40\x91\xff\x3e\xc8\x72\xfc\x11\x2b\xdb\x61\xab\x0f\x86\x20\x92\x8f\x8f\x8f\x4f\x55\x7d\x64\x2b\xf0\x4d\xf3\xe9\x59\xf0\x50\x99\xfd\x86\xb5\xa6\x5c\x2a\x36\x50\x5a\xae\x61\x11\x8d\x2d\xd4\xa8\xf2\x71\xfb\x82\xaf\x9a\xba\xa4\x51\xd9\x34\xb0\x50\x6a\xb9\x5c\xc2\x86\xeb\xba\x12\x07\x96\x4e\x68\x0b\x2a\x40\xf8\x40\xc6\x81\x30\x38\xc1\x03\x41\xc9\x16\x50\x6b\x30\x5c\x90\x03\x34\x05\x14\xa4\x69\x8f\xc2\xd6\x41\x65\x00\x21\xef\x79\x28\x25\x16\x8d\xc3\x40\xf8\x5d\x01\x00\xb4\x3f\x4d\xd2\xc2\x4d\x58\x3f\x51\xb9\x02\x6c\xe4\x2d\x89\x0e\x95\x0d\xc7\xef\x27\x43\x36\x85\xbb\x78\xde\xec\x46\xb5\x3d\x8f\x96\x8e\x68\x29\xc1\x3c\xe7\xc6\x48\xd7\xea\x2b\x5b\xcb\xa7\x9f\xa8\x1b\x4a\xe1\xee\x4b\x88\xa5\x1d\x57\xff\x39\xd2\x65\x16\xe3\x0a\x6b\xe8\xa0\x32\x27\x6c\x71\x4f\xd9\x6b\x0b\xf6\xe9\x23\x66\xf8\x9c\xf8\xc5\xad\xe2\x5e\x98\xa7\x3f\x07\x46\x3f\x50\xde\xd2\x7e\x14\xff\x3d\x3c\xc0\x11\x4d\x95\x27\x8b\x0d\x37\xba\x00\xc3\x02\x81\x36\x58\x2a\xfd\x9a\xe7\x6e\x0a\x08\xe7\x20\x23\xfd\xa2\xbc\x11\x1a\x29\xe4\x97\xe9\xdd\xf0\xb8\x75\xb0\xbe\xad\x57\xb6\x27\xd9\x85\xb4\x24\x55\x7d\xb5\xf7\x53\xa8\xf6\xee\xb9\xe0\xbc\x4f\x48\xf7\x1d\x4c\xc9\xb0\x8e\xb8\x3a\xdb\x75\xd1\x24\x00\xac\x3a\xa0\xe9\xec\xb7\xa9\xb5\xd6\x7e\xea\x2c\xff\xd2\x3a\xfe\x0a\xe9\x7e\xb0\x79\x7b\x59\xe9\x7b\xc0\x3a\x18\xe9\x42\x2d\x0b\x6f\xe5\x82\x33\x34\x3f\xab\x89\x58\xa3\x07\xf3\x17\xbd\xb6\x43\xcf\x99\x68\x3d\x8a\xd7\x6d\x04\x39\x97\x6e\x60\x7e\x53\xbf\xed\x38\xa5\x1f\xbd\x2f\xcc\xfa\xd3\x2e\xa6\x46\x24\xef\x5a\xfb\xff\xb0\x88\x7f\x62\x33\x6c\x6b\xa2\xc6\x1f\x56\x16\xfe\x67\xf5\x3b\x00\x00\xff\xff\xcb\xbd\x75\xfc\x85\x05\x00\x00" func stakingcollectionRestake_all_stakersCdcBytes() ([]byte, error) { return bindataRead( @@ -5460,11 +5439,11 @@ func stakingcollectionRestake_all_stakersCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/restake_all_stakers.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x49, 0xda, 0xba, 0x52, 0x23, 0xe, 0xf6, 0x97, 0x44, 0xa5, 0xd4, 0xf4, 0x21, 0x73, 0x60, 0x80, 0xd6, 0xad, 0x1c, 0x30, 0x54, 0x65, 0xf, 0xc5, 0x68, 0x6b, 0x2a, 0x6b, 0x92, 0x99, 0x2, 0xd4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0xee, 0xd6, 0x42, 0xaf, 0x95, 0x76, 0xc4, 0xef, 0x82, 0xa3, 0xbb, 0xb6, 0xa5, 0x72, 0xc9, 0xc0, 0x45, 0x5, 0xef, 0xd3, 0x94, 0x90, 0x5c, 0x7f, 0x90, 0x8b, 0x25, 0xf2, 0x33, 0xa3, 0x62}} return a, nil } -var _stakingcollectionScriptsDoes_account_have_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4e\xc3\x40\x10\x45\xfb\x3d\xc5\x2f\xe3\x06\x53\xa7\x33\x76\x80\x88\x28\x91\x70\x2e\x30\x5a\x8f\x61\xc5\x7a\x26\xda\x99\x25\x48\x88\xbb\x53\x24\x52\x0a\xe8\x5e\xf1\xf5\xdf\x4b\xcb\x49\x8b\xe3\x31\xeb\x79\x74\xfa\x48\xf2\xd6\x6b\xce\x1c\x3d\xa9\x60\x2e\xba\xe0\xfe\x6b\x3c\x76\x2f\xdb\xfd\x53\x7f\xd8\xed\x36\xfd\x71\x7b\xd8\x77\xc3\xf0\xba\x19\xc7\x10\xda\xb6\xc5\xc0\xce\x65\x49\xc2\x86\x34\x83\x04\x14\xa3\x56\x71\x24\x83\xb1\xa3\x9e\x70\x4e\xfe\x0e\xc2\x55\x80\x9b\x21\x04\x8a\x91\xcd\x56\x94\x73\x83\xb9\x0a\x16\x4a\xb2\xa2\x69\x2a\x6c\xb6\x46\x77\x81\x66\x8d\x07\xd5\x8c\xef\x00\x00\x85\xbd\x16\xf9\x3f\xf9\x6e\x52\xb6\xee\x12\xf0\x4c\x9f\xfc\x67\x70\xfb\xbe\x42\x13\x7e\x7e\x03\x00\x00\xff\xff\x22\xf7\x5f\x71\x04\x01\x00\x00" +var _stakingcollectionScriptsDoes_account_have_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4e\xc4\x40\x0c\x45\xfb\x39\xc5\xd7\x56\x9b\x86\xf4\xdb\x2d\x20\x44\xcf\x09\xac\x89\x03\x16\x33\x76\x34\xf6\x90\x02\x71\x77\x8a\x44\x4a\xb1\xe9\x9e\xf4\xbf\x9e\x9e\xd4\xc5\x5a\xe0\xad\xd8\xfa\x11\xf4\x2d\xfa\xf9\x62\xa5\x70\x0e\x31\xc5\xdc\xac\xe2\x72\xba\x5d\x52\x1a\xc7\x11\xaf\x1c\xdc\xaa\x28\x3b\x64\x06\x29\x28\x67\xeb\x1a\x10\x87\x73\xa0\x2f\x58\x25\xbe\x40\xd8\x0d\x38\x14\x29\x51\xce\xec\x7e\xa5\x52\x06\xcc\x5d\x51\x49\xf4\x4a\xd3\xd4\xd8\xfd\x86\xfb\x06\xc3\x0d\xcf\x66\x05\xbf\x09\x00\x1a\x47\x6f\x7a\xde\xfb\x34\x19\xfb\x7d\x0b\x78\xa7\x1f\x7e\x38\x1c\xee\x1d\x86\xf4\xf7\x1f\x00\x00\xff\xff\x4a\x63\x63\xb2\x01\x01\x00\x00" func stakingcollectionScriptsDoes_account_have_staking_collectionCdcBytes() ([]byte, error) { return bindataRead( @@ -5480,11 +5459,11 @@ func stakingcollectionScriptsDoes_account_have_staking_collectionCdc() (*asset, } info := bindataFileInfo{name: "stakingCollection/scripts/does_account_have_staking_collection.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0xa8, 0x71, 0xb0, 0x74, 0x2b, 0xe7, 0xf6, 0x22, 0x19, 0xad, 0x8, 0x16, 0xff, 0xe6, 0xf3, 0xa8, 0x0, 0x53, 0x43, 0x63, 0x5e, 0x29, 0xad, 0x82, 0x3, 0x6f, 0x87, 0x48, 0xf5, 0xa3, 0xf1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0x34, 0x8c, 0xdd, 0x28, 0xf3, 0x71, 0x7c, 0x27, 0x34, 0x43, 0xc2, 0x6c, 0xde, 0x42, 0x3e, 0x68, 0x2d, 0xc2, 0x74, 0x34, 0x8e, 0x51, 0xaf, 0x77, 0xcc, 0xac, 0x1b, 0x8d, 0x90, 0x91, 0x7f}} return a, nil } -var _stakingcollectionScriptsGet_all_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x1e\x3d\x35\x97\xc6\x73\x6f\x21\xa9\x25\x58\x5a\x30\xb9\x89\x87\x31\x99\xc4\xc5\xc9\xae\xcc\x4e\x51\x11\xff\xbb\x60\xa3\x55\xea\xed\xb1\x3b\xdf\x7c\x8f\xf1\xd3\x73\x54\xc3\xb5\xc4\x97\xc6\xe8\xc9\x87\xb1\x8c\x22\xdc\x99\x8f\x01\x83\xc6\x09\x57\xaf\x4d\x5b\xdc\xd4\xfb\x6d\x79\xd8\xed\x36\x65\x5b\x1f\xf6\x45\x55\xdd\x6e\x9a\xc6\xfd\x82\xeb\xaa\xa5\x07\xe1\x79\xc7\x89\x5c\x5c\x7e\x2c\x9c\xcb\xf3\x1c\x5b\xb6\x04\x0a\x20\x55\x7a\x43\x1c\x40\x22\xb0\x47\x46\xcf\xc2\x23\x59\x54\x4c\x6c\xd4\x93\x11\x86\xa8\xe7\xe7\x84\x64\x51\xb9\x87\x0f\x5f\xf3\x69\xf6\x75\x3f\xa5\x9d\xa3\xae\xe3\x94\x96\x24\x92\x61\x38\x06\x4c\xe4\xc3\x92\xfa\x5e\x39\xa5\x35\x8a\x53\xc8\xd6\xb8\xbb\xac\xb7\xaa\xbe\x45\x75\x18\xe2\x3d\xde\x1d\x00\x28\xdb\x51\xc3\xff\x37\x5a\x8d\x6c\x85\xc8\x1f\xee\x2c\x9b\x43\xe6\x3e\x3e\x03\x00\x00\xff\xff\x8b\xe6\xbd\x01\x68\x01\x00\x00" +var _stakingcollectionScriptsGet_all_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x4b\x03\x51\x10\x84\xfb\xf7\x2b\x86\xab\x72\x4d\xae\x4f\x17\x0c\x4a\x6a\xed\xc4\x62\xbd\xb7\xef\x7c\xb8\xf7\x56\x76\x37\x88\x88\xff\x5d\xd0\xd3\x24\x24\xdd\xb0\x33\xc3\x37\x6c\x9d\xdf\xd4\x02\xb7\xa2\xef\xf7\x41\xaf\xb5\x4d\x37\x2a\xc2\x63\x54\x6d\x28\xa6\x33\xba\xab\x5e\x97\x4e\x9a\xfb\xdd\x03\x3d\x0b\x2f\xa1\x93\xda\xb9\xd1\xa5\x34\x0c\x03\xee\x38\x1c\xd4\x40\x66\xf4\x01\x2d\x20\x11\xc4\x0b\x23\xb3\xf0\x44\xa1\x86\x99\x83\x32\x05\xa1\xa8\x1d\xcf\x0e\x0f\x35\xce\xa8\xed\x27\xef\x0b\x6f\xfc\x5f\x95\x12\x8d\x23\xbb\xaf\x48\xa4\x47\x39\x34\xcc\x54\xdb\x8a\x72\x36\x76\xdf\x60\xfb\x2b\xfa\x0d\x1e\x2f\xe7\xad\x77\x7f\xa0\x7d\x2b\xfa\x84\xcf\x04\x00\xc6\x71\xb0\x76\xfd\x41\xeb\x89\x63\x2b\x72\xd6\x3b\xc2\x16\xd1\xa7\xaf\xef\x00\x00\x00\xff\xff\x8b\x34\x8c\xda\x65\x01\x00\x00" func stakingcollectionScriptsGet_all_delegator_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5500,11 +5479,11 @@ func stakingcollectionScriptsGet_all_delegator_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_all_delegator_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x70, 0xf7, 0xc4, 0xee, 0x69, 0xb6, 0x5e, 0xd0, 0x74, 0x7b, 0xb9, 0xbf, 0x6e, 0x95, 0x73, 0x5e, 0x75, 0xf4, 0xbe, 0x3, 0x26, 0xde, 0x54, 0x17, 0x4d, 0xab, 0x0, 0xd3, 0xec, 0x10, 0x78}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x61, 0xbc, 0xe9, 0xa, 0xd, 0xd8, 0x3e, 0x8b, 0x75, 0x60, 0x29, 0xdf, 0x8, 0xba, 0x2, 0xf2, 0xbb, 0xe3, 0x73, 0x8b, 0xed, 0x4a, 0xcc, 0x91, 0x4b, 0xa5, 0x5f, 0x2c, 0xe8, 0x7e, 0xf4, 0x11}} return a, nil } -var _stakingcollectionScriptsGet_all_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcd\x6a\xc3\x40\x0c\x84\xef\xfb\x14\x43\x4e\xf1\x25\xee\x39\x37\x63\xa7\xc1\x34\x38\x50\xfb\x56\x7a\x50\xbd\x72\x6a\x2a\xaf\xca\xae\x42\x5b\x4a\xdf\xbd\x90\xb8\x3f\x90\xdc\x06\x49\x9f\x66\x98\x71\x7a\xd5\x68\xb8\x15\x7d\x6b\x8d\x5e\xc6\x70\x28\x55\x84\x7b\x1b\x35\x60\x88\x3a\xe1\xe6\xbd\xed\x8a\xbb\xba\xd9\x96\xfb\xdd\x6e\x53\x76\xf5\xbe\x29\xaa\xea\x7e\xd3\xb6\xee\x1f\x5c\x57\x1d\x3d\x09\xcf\x3f\xce\xe4\xe2\x72\xb1\x70\x2e\xcf\x73\x6c\xd9\x12\x28\x80\x62\xa4\x0f\xe8\x00\x12\x81\x3d\x33\x82\x7a\xc6\xc4\x46\x9e\x8c\x30\x68\x3c\x4d\x12\x92\x69\x64\x8f\x31\x9c\xae\xd2\xec\xd2\xff\x46\x75\x8e\xfa\x9e\x53\x5a\x92\x48\x86\xe1\x18\x30\xd1\x18\x96\xe4\x7d\xe4\x94\xd6\x28\xce\x22\x5b\xe3\xe1\x32\xd4\xaa\x51\xcf\x75\x18\xf4\x11\x9f\x0e\x00\x22\xdb\x31\x86\xeb\xa5\xac\x0e\x6c\x85\xc8\x0f\xf2\x67\x31\x8b\xcc\x7d\x7d\x07\x00\x00\xff\xff\x6d\x35\x31\x49\x54\x01\x00\x00" +var _stakingcollectionScriptsGet_all_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x4b\x43\x41\x10\x84\xfb\xfb\x15\xc3\xab\xf2\x9a\xbc\x3e\x5d\x50\x94\x34\x36\xda\x89\xc5\xfa\x6e\x2f\x1e\xee\xed\xca\xde\x06\x11\xf1\xbf\x0b\xf1\xa9\x11\xd3\x0d\x3b\xf3\x31\xc3\xd6\xf6\x62\x1e\xb8\x12\x7b\xbd\x0d\x7a\xae\xba\xbf\x30\x11\x9e\xa3\x9a\xa2\xb8\x35\x0c\x67\xbd\x21\x9d\x90\xbb\xcb\x3b\x7a\x14\x5e\x42\x27\xd8\x5f\x63\x48\x69\x9a\x26\x5c\x73\x74\x90\x82\xdc\xe9\x0d\x56\x40\x22\x88\x27\x86\x5a\x66\x34\x0e\xca\x14\x84\x62\x7e\xbc\x74\xf4\x30\xe7\x8c\xaa\xc7\x54\x5f\x5a\xe6\x9f\x2d\x29\xd1\x3c\x73\xef\x2b\x12\x19\x51\x0e\x8a\x46\x55\x57\x94\xb3\x73\xef\x1b\x6c\xbf\xc4\xb8\xc1\xfd\xff\x51\xeb\x1b\xcb\xbc\xd3\x62\x0f\x78\x4f\x00\xe0\x1c\x07\xd7\xf3\x1f\x59\xef\x39\xb6\x22\xdf\xc8\x6f\xc5\x22\xc6\xf4\xf1\x19\x00\x00\xff\xff\xcd\xc4\xa0\x99\x51\x01\x00\x00" func stakingcollectionScriptsGet_all_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5520,11 +5499,11 @@ func stakingcollectionScriptsGet_all_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_all_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8a, 0x65, 0xfc, 0xb1, 0xf6, 0xf3, 0xe1, 0x26, 0xe8, 0x32, 0x38, 0x81, 0xb0, 0x52, 0x6c, 0x49, 0x9b, 0x28, 0x28, 0x3e, 0x26, 0xf1, 0xac, 0x9c, 0xcc, 0xdd, 0x8e, 0x1e, 0x36, 0x5, 0x9, 0xdb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0x1b, 0xdc, 0xc0, 0x18, 0xba, 0x5a, 0xa1, 0x59, 0xc9, 0x67, 0x12, 0x85, 0xb0, 0xda, 0x24, 0xdd, 0x74, 0x94, 0xbd, 0xbb, 0xbe, 0x46, 0xdd, 0x56, 0x2c, 0x3f, 0x4d, 0x4e, 0x6a, 0xe8, 0x7b}} return a, nil } -var _stakingcollectionScriptsGet_delegator_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcf\xbd\x6a\xc3\x40\x10\x04\xe0\xfe\x9e\x62\x4a\xab\xb1\x52\xbb\x13\x3a\x27\x88\x18\x1b\x2c\x77\x21\xc5\xa2\x5b\x29\x47\x4e\x77\x61\x77\x4d\x12\x42\xde\x3d\x60\xe7\xaf\x50\x37\xb0\x2c\xdf\x4c\x9c\x5f\x8a\x18\x6e\x53\x79\xed\x8d\x9e\x63\x9e\xda\x92\x12\x0f\x16\x4b\xc6\x28\x65\xc6\xcd\x5b\x7f\x6a\xee\xbb\xfd\x5d\x7b\xd8\xed\xb6\xed\xa9\x3b\xec\x1b\xef\x8f\xdb\xbe\x77\xae\xae\x6b\x1c\xd9\xce\x92\x15\x94\x41\x22\xf4\x8e\x32\x82\x52\x82\x3d\x31\x02\x27\x9e\xc8\x8a\xa0\xf3\x0a\xb5\x22\x1c\x10\xf3\xe5\xa6\x57\x0e\xc3\xaf\xe7\x1c\x0d\x03\xab\xae\x28\xa5\x0a\xe3\x39\x63\xa6\x98\x57\x14\x82\xb0\xea\x06\xcd\x35\x54\x1b\x3c\x2c\xf6\x5d\xfb\x1f\xae\xf3\xfa\x88\x0f\x07\x00\x72\xa9\xb7\x3c\x70\x3d\xb1\xfd\xff\xf9\xa3\xbe\x43\xe5\x3e\xbf\x02\x00\x00\xff\xff\x8d\xf2\x13\x88\x21\x01\x00\x00" +var _stakingcollectionScriptsGet_delegator_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xbd\x6a\xc4\x40\x0c\x84\xfb\x7d\x8a\xe1\xaa\x73\x73\xee\xaf\x0b\x31\x01\xb7\x49\x19\x52\x88\x5d\xd9\x59\x22\xaf\x82\x24\x13\x42\xc8\xbb\x07\xec\xfc\x15\xee\x06\x06\xcd\xf7\xa9\x2e\xaf\x6a\x81\x3b\xd1\xb7\x87\xa0\x97\xda\xe6\x5b\x15\xe1\x1c\x55\x1b\x26\xd3\x05\xa7\xc3\xee\x94\x52\xdf\xf7\xb8\xe7\x58\xad\x39\xa8\x81\xcc\xe8\x1d\x3a\x81\x44\x10\xcf\x8c\xc2\xc2\x33\x85\x1a\xc6\xc1\xe1\xa1\xc6\x05\xb5\x6d\x9d\xef\x7b\xc8\xbf\x83\x29\x51\xce\xec\x7e\x26\x91\x0e\xd3\xda\xb0\x50\x6d\x67\x2a\xc5\xd8\xfd\x8a\x9b\x3d\x74\x57\x3c\x1e\x0a\x5d\x86\x1f\xdc\x38\xf8\x13\x3e\x12\x00\xd8\xa6\x77\xfc\xdd\x65\xe6\xf8\x7f\xf3\x87\xfa\x0e\x5d\xfa\xfc\x0a\x00\x00\xff\xff\x7b\xbc\xfe\x64\x1e\x01\x00\x00" func stakingcollectionScriptsGet_delegator_idsCdcBytes() ([]byte, error) { return bindataRead( @@ -5540,11 +5519,11 @@ func stakingcollectionScriptsGet_delegator_idsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_delegator_ids.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8, 0x3c, 0xc3, 0x2f, 0xf7, 0xd4, 0x15, 0x36, 0xaa, 0x4d, 0x8, 0x2e, 0xc1, 0x6, 0x5b, 0x41, 0xbc, 0x5f, 0x9b, 0x97, 0xea, 0xb7, 0x11, 0x93, 0xfd, 0x12, 0xd0, 0xc8, 0xfe, 0xbd, 0x20, 0x8f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0x35, 0xab, 0x54, 0x9e, 0x17, 0xc5, 0x8d, 0xcb, 0x10, 0x21, 0xe1, 0x7c, 0x59, 0xcb, 0xec, 0x18, 0xbf, 0x66, 0xb7, 0x4f, 0x38, 0xc, 0x32, 0x7f, 0x8b, 0x9e, 0x82, 0x19, 0x52, 0xc, 0xbe}} return a, nil } -var _stakingcollectionScriptsGet_does_stake_existCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xd1\x4a\xc3\x30\x14\x86\xef\xf3\x14\x3f\xbb\xda\x60\x58\xd1\xbb\xde\x48\x6d\xab\x14\xc7\x06\xb6\x3e\x40\x6c\x4e\x6a\x30\xcd\x19\x49\x86\x03\xf1\xdd\xa5\x6b\xa1\xa3\x7a\x95\xe4\x9c\x9c\xef\xfb\x39\xa6\x3f\xb2\x8f\x78\xb2\xfc\x55\x47\xf9\x69\x5c\x97\xb3\xb5\xd4\x46\xc3\x0e\xda\x73\x8f\xdb\x73\xdd\x64\x2f\xd5\xfe\x39\x3f\xec\x76\x65\xde\x54\x87\x7d\x56\x14\xaf\x65\x5d\x8b\xab\xe1\xaa\x68\xe4\xbb\xa5\x89\x31\x4e\xae\xfe\x36\x56\x42\x24\x49\x82\x86\xac\x0d\x30\x1a\xf1\x83\x10\x8e\xd4\x1a\x6d\x48\xc1\xb1\x22\xb0\x87\x22\x4b\x9d\x8c\xec\x41\x67\x13\x62\x80\x71\xe3\xcf\x89\xde\xce\x11\x2f\x38\xcd\x7e\x41\x92\x4a\x79\x0a\x41\x08\xd9\xb6\x14\xc2\x5a\x5a\xbb\x81\x3e\x39\xf4\xd2\xb8\xf5\xd4\x4d\x91\x8d\x97\xed\xc5\x5c\x15\x29\xea\xe8\x8d\xeb\xb6\x73\x82\xa1\xf8\x56\xb9\x78\x7f\xf7\xb0\x49\xf1\xc8\x6c\xf1\x2d\x00\xc0\x53\x3c\x79\xf7\xff\xe2\x6e\x14\x53\x18\xaa\x54\x0e\xf9\x67\x9f\x5c\xfa\xc6\x73\xe1\xbb\x7a\x6c\xc4\xcf\x6f\x00\x00\x00\xff\xff\xc7\xd8\xe3\x24\xa2\x01\x00\x00" +var _stakingcollectionScriptsGet_does_stake_existCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x6a\xf3\x30\x10\x84\xef\x7a\x8a\xc1\xa7\x18\xc2\x6f\xf8\x7b\xf3\xa5\xb4\x4d\x0b\x3e\x27\x7d\x00\x55\x5a\xb9\x4b\xd7\xda\x20\x29\xb4\x50\xfa\xee\xc5\xb1\xc1\xae\xc9\x49\xd2\xce\xce\x7c\x83\x78\x38\x6b\x2a\x78\x11\xfd\x3c\x16\xfb\xc1\xb1\x7f\x52\x11\x72\x85\x35\x22\x24\x1d\x50\xdd\xd4\x2a\xb3\x72\x76\x87\x93\x7d\x13\x9a\x97\x56\xb6\xbf\x42\x65\x4c\xd3\x34\x38\x91\x48\x06\x07\x94\x77\x42\x3e\x93\xe3\xc0\xe4\x11\xd5\x13\x34\xc1\x93\x50\x6f\x8b\x26\xd0\x17\xe7\x92\xc1\x71\xda\x9c\xd3\xdd\xd2\xef\x1a\x17\x34\x6d\x92\xac\xf7\x89\x72\x36\xc6\x3a\x47\x39\xef\xac\x48\x8d\x70\x89\x18\x2c\xc7\xdd\xac\xb6\x78\x98\x2e\xfb\x2b\xb9\x3b\xb4\x38\x96\xc4\xb1\xdf\x2f\x0d\xc6\xe1\x6b\x17\xcb\xdd\xff\xfb\xba\xc5\xa3\xaa\xe0\xdb\x00\x40\xa2\x72\x49\xf1\xf6\xaf\xfd\xf3\x4a\x79\x9c\xd2\xf3\xd8\x7f\xe1\xd9\x2d\x6f\x3a\x37\xbc\xd5\xa3\x36\x3f\xbf\x01\x00\x00\xff\xff\xa0\xc3\x2f\x2d\x9f\x01\x00\x00" func stakingcollectionScriptsGet_does_stake_existCdcBytes() ([]byte, error) { return bindataRead( @@ -5560,11 +5539,11 @@ func stakingcollectionScriptsGet_does_stake_existCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_does_stake_exist.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x78, 0xd5, 0xb, 0xb6, 0xe7, 0xd, 0xc3, 0xda, 0x5a, 0x2c, 0x1, 0x38, 0x11, 0x37, 0xb5, 0xaa, 0xd3, 0xbe, 0x7c, 0x49, 0x28, 0x4e, 0xe8, 0x23, 0xf3, 0xea, 0x3b, 0x8f, 0x10, 0x1b, 0x76, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4, 0xb, 0x6f, 0x8c, 0x94, 0xdc, 0x94, 0x55, 0x5, 0x3d, 0xa0, 0x77, 0x92, 0x7, 0xba, 0x57, 0xbd, 0x9e, 0x52, 0x3f, 0x15, 0x13, 0x69, 0x71, 0x5, 0x3, 0xa5, 0x1c, 0x2a, 0xe6, 0xa2, 0xa4}} return a, nil } -var _stakingcollectionScriptsGet_locked_tokens_usedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xb1\x6a\xeb\x40\x10\x45\xfb\xfd\x8a\x5b\x5a\xcd\xd3\x2b\x42\x0a\x75\x42\xb6\x82\x89\xb0\x21\x92\x3f\x60\xd9\x1d\xcb\x8b\x56\x33\x61\x67\x85\x1d\x42\xfe\x3d\x44\x4e\x48\x93\x7a\x98\x73\xce\x0d\xf3\xab\xa4\x8c\x36\xca\xb5\xcf\x76\x0a\x3c\x36\x12\x23\xb9\x1c\x84\x71\x4e\x32\xe3\xff\xad\x1f\xea\xe7\xfd\xe1\xa9\x39\x76\xdd\xae\x19\xf6\xc7\x43\xbd\xdd\xbe\xec\xfa\xde\x98\xb2\x2c\x31\x50\x8c\x8a\x8b\x5c\x31\x5b\x7e\x43\x14\x37\x91\x47\x96\x89\x58\x91\x2f\x04\xeb\x9c\x2c\x9c\x11\x14\x8b\x06\x1e\xd7\xaf\x56\xd2\xd7\x31\x11\xf4\xae\x85\xfb\xf5\xb2\x78\x52\x58\xf6\xf0\x14\x69\xb4\x59\x92\x1a\x63\x9d\x23\xd5\x8d\x8d\xb1\xc0\x79\x61\xcc\x36\xf0\xe6\x1b\x5e\xa1\xf6\x3e\x91\x6a\x51\xe1\xd4\x86\xdb\xe3\x03\xde\x0d\x00\x24\xca\x4b\xe2\xbf\xf7\xfd\x1b\x29\x77\x6b\xee\xb0\xd6\x9e\x94\xfc\xc6\xde\x39\xd5\x4f\x76\x61\x3e\x3e\x03\x00\x00\xff\xff\xbc\xf0\x27\x66\x24\x01\x00\x00" +var _stakingcollectionScriptsGet_locked_tokens_usedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xb1\x4e\xec\x40\x0c\x45\xfb\xf9\x8a\xab\xad\x92\xe6\xa5\x79\xa2\x48\x87\x90\x52\xd1\xb1\xfb\x01\xd6\x8c\x37\x3b\x8a\x63\xa3\xb1\xa3\x05\x21\xfe\x1d\x91\x05\xd1\x6c\x7d\xe4\xe3\x73\xeb\xfa\x6a\x2d\x30\x89\x5d\x5f\x82\x96\xaa\xf3\x93\x89\x70\x8e\x6a\x8a\x73\xb3\x15\x87\xbb\xec\x90\xd2\x30\x0c\x38\xb2\x88\xe3\x62\x57\xac\xa4\xef\x10\xcb\x0b\x17\x84\x2d\xac\x8e\xb8\x30\x28\x67\xdb\x34\x50\x1d\x9b\x57\x9d\xf7\xab\xc9\xda\x37\x6c\x0c\xbf\x79\x91\xff\x9e\xaa\x15\x76\x90\x16\x14\x16\x9e\x29\xac\x79\x4a\x94\x33\xbb\x77\x24\xd2\xe3\xbc\x29\x56\xaa\xda\xfd\xc8\x47\x3c\x96\xd2\xd8\xbd\x1f\x71\x9a\xea\xdb\xc3\x7f\x7c\x24\x00\x68\x1c\x5b\xd3\xfb\xe3\xfe\xcd\x1c\xcf\x7b\xee\x71\xaf\x3d\x39\x97\x8e\x6e\x9e\xf1\x37\xbb\x4f\x9f\x5f\x01\x00\x00\xff\xff\x7c\x03\x2f\x67\x21\x01\x00\x00" func stakingcollectionScriptsGet_locked_tokens_usedCdcBytes() ([]byte, error) { return bindataRead( @@ -5580,11 +5559,11 @@ func stakingcollectionScriptsGet_locked_tokens_usedCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_locked_tokens_used.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0x55, 0x1c, 0x5d, 0x49, 0x92, 0x47, 0x87, 0x1, 0x4f, 0xf1, 0x59, 0x54, 0x19, 0x4, 0xfd, 0x3e, 0xad, 0x96, 0xb8, 0x56, 0xac, 0xbe, 0xb, 0x44, 0xcf, 0xd1, 0xd, 0x52, 0xd3, 0x7b, 0xc7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0xc, 0xfb, 0x97, 0x66, 0x4b, 0x65, 0x92, 0x16, 0xae, 0xa2, 0x40, 0x46, 0xe3, 0xed, 0x54, 0x24, 0x26, 0x91, 0x9f, 0x43, 0x2, 0x56, 0xb6, 0x5e, 0x20, 0x64, 0xb9, 0x16, 0xd4, 0x6a, 0xd9}} return a, nil } -var _stakingcollectionScriptsGet_machine_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcb\x6a\xf3\x30\x10\x85\xf7\x7a\x8a\xb3\xfb\x6d\xf8\xa9\xbb\x36\x84\x62\xec\x34\x98\xa6\x09\xd4\xd9\x95\x2e\x84\x3c\x72\x44\xe5\x51\x90\x64\x5a\x28\x79\xf7\x12\x5f\x42\x6f\x5a\x6a\xe6\x3b\xe7\x1b\xd3\x9f\x9c\x8f\xb8\xb7\xee\xad\x89\xf2\xd5\x70\x57\x3a\x6b\x49\x45\xe3\x18\xda\xbb\x1e\xb7\xef\xcd\xa1\x78\xa8\x77\x9b\x72\xbf\xdd\xae\xcb\x43\xbd\xdf\x15\x55\xf5\xb4\x6e\x1a\x21\xb2\x2c\xc3\x86\x62\x40\x3c\x12\x7a\xa9\x8e\x86\x09\x52\x29\x37\x70\x84\x6c\x5b\x4f\x21\x40\x3b\x0f\x89\x70\x22\x65\xb4\x51\x60\xd7\xd2\x08\x1a\x86\xe4\x65\xfb\x5f\x40\x98\xfa\xa1\xae\x02\x42\x48\xa5\x28\x84\x44\x5a\x9b\x42\x0f\x8c\x5e\x1a\x4e\x66\x24\x47\x31\x35\xfc\x1f\x33\xeb\x2a\x47\x13\xbd\xe1\x2e\xbd\x4e\xee\xf0\x21\x00\xc0\x52\x5c\xf4\x8a\x09\x0e\x58\xfd\x7d\xf4\x4d\x47\xf1\xf1\xfb\x6a\x32\x5f\x92\x2f\xb2\xa9\x18\x53\x8d\x1e\x83\xe7\xcf\x9a\xb5\xc3\xea\x67\xcd\xf3\xa4\xf6\x32\x8b\x5c\x9e\xa7\x38\x78\xfe\x8a\x5d\x3a\x67\xe3\x24\x1d\xf7\xce\x20\x1b\xe8\x37\xc4\xc6\x4e\x73\x71\x16\x9f\x01\x00\x00\xff\xff\x9d\xb0\x2b\xec\xbb\x01\x00\x00" +var _stakingcollectionScriptsGet_machine_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xbb\x6a\xeb\x40\x10\x86\xfb\x7d\x8a\x1f\x37\x47\x82\x43\xd4\x0b\x4c\x30\x09\x09\x2e\x52\xb9\x0c\x29\x96\xd5\xac\x3c\x64\x35\x6b\x76\x46\xa4\x08\x7e\xf7\x60\x5d\x4c\x2e\xde\x72\xff\xdb\x37\x3c\x9c\x72\x31\x3c\xa5\xfc\x71\x30\xff\xce\xd2\x3f\xe4\x94\x28\x18\x67\x41\x2c\x79\xc0\xe6\xa6\xb6\x71\xae\x69\x1a\x3c\x93\x29\xec\x48\x18\x7c\x38\xb2\x10\x7c\x08\x79\x14\x83\xef\xba\x42\xaa\x88\xb9\xc0\x43\x4f\x14\x38\x72\x80\xe4\x8e\xa6\x20\x0b\xbc\xac\xee\x7f\x0a\x9d\x07\x10\xae\x0b\xce\xf9\x10\x48\xb5\xf2\x29\xd5\x88\xa3\x60\xf0\x2c\xd5\x12\x69\xb1\x9b\x17\xfe\x4f\x9d\xfb\xc7\x16\x07\x2b\x2c\x7d\x7d\x55\xee\xf1\xe9\x00\x20\x91\xad\x78\xbb\x39\xac\xd8\xde\xbe\xf8\xae\x27\x7b\xf9\x69\xad\x96\x4b\xda\x15\xb6\x76\x53\x2b\xc7\xa9\x78\xf9\xdc\x4b\xcc\xd8\xfe\x9e\x79\x9d\xd1\xde\x16\x90\xcb\x2b\x64\x63\x91\xef\xb1\xcb\xe6\x42\x5c\xd5\x93\xef\x0c\x4a\x4a\x7f\x43\xc2\x69\xd6\xdd\xd9\x7d\x05\x00\x00\xff\xff\x9e\xf8\xd0\x7c\xb8\x01\x00\x00" func stakingcollectionScriptsGet_machine_account_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -5600,11 +5579,11 @@ func stakingcollectionScriptsGet_machine_account_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_machine_account_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcd, 0x8f, 0x46, 0xba, 0x65, 0x46, 0x78, 0xb3, 0x99, 0x41, 0x98, 0xc1, 0xf, 0xfc, 0x98, 0xff, 0x5e, 0x5f, 0xb5, 0x7, 0xfa, 0x87, 0xfb, 0xa2, 0xc, 0x78, 0xc4, 0x32, 0x64, 0xf8, 0x72, 0x93}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0x37, 0x6c, 0xc0, 0xd6, 0xcf, 0x69, 0x48, 0xd, 0x1b, 0x78, 0xb0, 0x47, 0x86, 0x8c, 0x66, 0xc0, 0x20, 0x9d, 0x87, 0xc5, 0xac, 0x73, 0xe, 0xc2, 0xd4, 0xa, 0x90, 0x65, 0xf0, 0x84, 0xd5}} return a, nil } -var _stakingcollectionScriptsGet_machine_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xcf\x41\x4b\xc3\x40\x10\x05\xe0\xfb\xfe\x8a\x77\x33\xb9\x18\xcf\xb9\x85\xb4\x96\x60\x6d\xc1\xed\x1f\x58\x36\x93\x74\x71\x33\x2b\x3b\x13\x14\x4a\xff\xbb\xd0\x44\x41\xb0\xf7\xf9\xe6\xbd\x17\xa6\x8f\x94\x15\xcf\x31\x7d\x5a\x75\xef\x81\xc7\x36\xc5\x48\x5e\x43\x62\x0c\x39\x4d\x78\xfa\xb2\xa7\xe6\xa5\x3b\xec\xda\xe3\x7e\xbf\x6d\x4f\xdd\xf1\xd0\x6c\x36\x6f\x5b\x6b\x8d\xa9\xaa\x0a\x3b\x52\x81\x8b\x11\x7a\x26\x4c\xce\x9f\x03\x13\x9c\xf7\x69\x66\x85\xeb\xfb\x4c\x22\x24\x18\x52\x06\xa7\x9e\xe4\x86\x02\xdf\xce\xd7\xb3\x07\x81\x2c\xe1\xf0\xbf\xe9\xc6\x38\xef\x49\xa4\x70\x31\x96\x18\x66\xc6\xe4\x02\x17\x2b\xa9\xd1\x2c\xaf\xcb\x1a\x17\xab\x39\xf0\x58\xff\xbf\xe2\xf1\x75\xe9\xd4\x2c\xb0\xe3\x21\x5d\x71\x31\x00\x90\x49\xe7\xcc\x77\xd8\x48\xfa\x57\x4a\xb1\xae\xa9\x7f\x7a\x97\xe6\x6a\xbe\x03\x00\x00\xff\xff\xff\x6b\xed\x8a\x41\x01\x00\x00" +var _stakingcollectionScriptsGet_machine_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xb1\x6a\xc3\x40\x10\x44\xfb\xfb\x8a\xc1\x4d\xa4\x26\xea\xd5\x99\x40\x42\x8a\x54\xfe\x82\xe5\xb4\x27\x1f\xb9\xdb\x0d\xb7\x2b\x52\x18\xff\x7b\xc0\xa7\x04\x02\x76\x3d\xf3\x1e\x33\xb9\x7e\x69\x73\xbc\x16\xfd\x3e\x39\x7d\x66\x59\x5f\xb4\x14\x8e\x9e\x55\x90\x9a\x56\x1c\xee\x66\x87\x10\xa6\x69\xc2\x1b\xbb\x81\x4a\x81\x9f\x19\x95\xe2\x39\x0b\x83\x62\xd4\x4d\x1c\xb4\x2c\x8d\xcd\xd8\x90\xb4\x41\x74\x61\xbb\x41\x59\x6e\xf5\xbd\xf6\x64\xb0\x6e\x47\xfc\xd3\x87\x40\x31\xb2\xd9\x40\xa5\x8c\x48\x9b\xa0\x52\x96\x61\x47\x66\x1c\xbb\x7a\x9c\x71\x39\x79\xcb\xb2\xce\xf7\x2f\x3c\x7f\xf4\x4d\xc7\x0e\xbe\x4b\xd2\x2b\x2e\x01\x00\x1a\xfb\xd6\xe4\x01\xb6\xb2\xff\x27\x6d\xd8\xdf\xcc\xbf\xbb\xc7\x70\x0d\x3f\x01\x00\x00\xff\xff\x0c\xe4\x1e\xac\x3e\x01\x00\x00" func stakingcollectionScriptsGet_machine_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -5620,11 +5599,11 @@ func stakingcollectionScriptsGet_machine_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_machine_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1d, 0x6a, 0xbe, 0x29, 0xa6, 0xa0, 0x51, 0x4a, 0x89, 0x9a, 0x12, 0xc, 0xa3, 0xfa, 0xf4, 0xa0, 0xde, 0x2b, 0xea, 0x41, 0x35, 0xba, 0xaa, 0x3b, 0x8c, 0xed, 0xa3, 0xe5, 0x3a, 0x7c, 0xb4, 0xf2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4d, 0xfe, 0x63, 0x34, 0x4a, 0x68, 0xf3, 0x2f, 0xff, 0x43, 0xd0, 0xd2, 0xc7, 0x57, 0x2b, 0x2b, 0x9c, 0x1a, 0xd4, 0x96, 0xa0, 0x2e, 0xd8, 0x3a, 0x13, 0x78, 0x34, 0xf8, 0x39, 0x65, 0x45, 0x91}} return a, nil } -var _stakingcollectionScriptsGet_node_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4e\xc3\x40\x0c\xc6\xf1\xfd\x9e\xe2\x1b\x9b\x85\x30\x77\x8b\x92\x82\x22\xaa\x54\x6a\xba\x21\x06\x2b\xe7\x84\x13\x17\x1b\xd9\x57\x01\x42\xbc\x3b\x52\x8b\x60\x61\xfb\xcb\x83\x7f\x5f\x5a\x5f\xd5\x0a\xee\xb2\xbe\x8d\x85\x5e\x92\x2c\xad\xe6\xcc\x53\x49\x2a\x98\x4d\x57\xdc\xbe\x8f\xa7\xe6\xa1\x1f\xee\xdb\xc3\x7e\xbf\x6b\x4f\xfd\x61\x68\xba\xee\xb8\x1b\xc7\x10\xea\xba\xc6\x91\xcb\xd9\xc4\x41\x02\x32\xa3\x0f\xe8\x0c\xca\x19\xe5\x99\x21\x1a\x19\x7d\xe7\xf0\xa2\xc6\x11\x49\x2e\x67\xbf\x4a\x98\x7e\xa9\x10\x68\x9a\xd8\x7d\x43\x39\x57\x98\xcf\x82\x95\x92\x6c\x28\x46\x63\xf7\x2d\x9a\x6b\x54\x5b\x3c\x8e\xc5\x92\x2c\x4f\xf8\x0c\x00\x60\x17\xfd\xff\xfd\x37\x0b\x97\x41\x23\xf7\x9d\xff\x7d\xfa\x89\x2a\x7c\x7d\x07\x00\x00\xff\xff\xf5\x67\xa5\x8f\xfb\x00\x00\x00" +var _stakingcollectionScriptsGet_node_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\xc4\x40\x10\x85\xfb\xfd\x15\x8f\xab\x2e\x8d\xe9\xaf\x13\x0f\x21\x8d\x85\x29\xc5\x62\xd8\x9d\xc4\xc5\xcd\x8c\xcc\x4c\x10\x11\xff\xbb\x90\x88\xd7\xa4\xfb\x78\x0f\xbe\xf7\xea\xf2\xa1\x16\x78\x6c\xfa\x39\x06\xbd\x57\x99\x1f\xb4\x35\xce\x51\x55\x30\x99\x2e\x38\x1d\x76\xa7\x94\xfa\xbe\xc7\x33\xc7\x6a\xe2\x20\x01\x99\xd1\x17\x74\x02\xb5\x86\x78\x63\x88\x16\xc6\x70\x75\x78\xa8\x71\x41\x95\x2d\xf6\x5d\x85\xfc\xef\x4a\x89\x72\x66\xf7\x33\xb5\xd6\x61\x5a\x05\x0b\x55\x39\x53\x29\xc6\xee\x17\xdc\xef\xd0\x5d\xf0\x32\x86\x55\x99\x5f\xf1\x9d\x00\xc0\xb6\xf5\xe3\xf3\x77\x33\xc7\x93\x16\x1e\xae\x7e\x33\xfd\x41\x97\x7e\x7e\x03\x00\x00\xff\xff\x44\x15\x32\xea\xf8\x00\x00\x00" func stakingcollectionScriptsGet_node_idsCdcBytes() ([]byte, error) { return bindataRead( @@ -5640,11 +5619,11 @@ func stakingcollectionScriptsGet_node_idsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_node_ids.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0xfd, 0x4f, 0x8d, 0xf6, 0x55, 0xfd, 0x4f, 0xd3, 0x4f, 0x3f, 0xdb, 0xa5, 0xe6, 0x88, 0x9c, 0x1e, 0x89, 0x5a, 0x40, 0x58, 0x4, 0xb6, 0x29, 0x7d, 0xfe, 0x9a, 0x0, 0x29, 0x77, 0x34, 0x6b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0xee, 0x46, 0xe2, 0xae, 0x7, 0xfa, 0x85, 0xe4, 0x58, 0x3f, 0xf4, 0xc3, 0x68, 0x7, 0xe9, 0x24, 0x83, 0xe2, 0x7, 0x84, 0x8a, 0x19, 0x96, 0xe7, 0x17, 0x22, 0xf9, 0x37, 0x5e, 0x4c, 0xf9}} return a, nil } -var _stakingcollectionScriptsGet_unlocked_tokens_usedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4a\xc3\x40\x10\x86\xef\xfb\x14\xff\xb1\xb9\x18\x0f\xe2\x21\xb7\x90\x36\x52\x2c\x2d\x98\xe4\x01\x96\xdd\x69\xba\x64\x33\x23\x3b\x1b\x5a\x11\xdf\x5d\x6c\x2b\x5e\x3c\x0f\xf3\x7d\xdf\x1f\xe6\x77\x49\x19\x6d\x94\x73\x97\xed\x14\x78\x6c\x24\x46\x72\x39\x08\xe3\x98\x64\xc6\xe3\xa5\xeb\xeb\xd7\xed\xfe\xa5\x39\xec\x76\x9b\xa6\xdf\x1e\xf6\xf5\x7a\xfd\xb6\xe9\x3a\x63\xca\xb2\x44\x4f\x31\x2a\x4e\x72\xc6\x6c\xf9\x03\x0b\x47\x71\x13\x79\x64\x99\x88\x15\xf9\x44\xb0\xce\xc9\xc2\x19\x41\xb1\x68\xe0\xf1\xfa\xd7\x4a\xfa\x39\x26\x82\xde\xc4\x70\x7f\x66\x16\x4f\x0a\xcb\x1e\x9e\x22\x8d\x36\x4b\x52\x63\xac\x73\xa4\xba\xb2\x31\x16\x38\x2e\x8c\xd9\x06\x5e\xdd\xe1\x15\x6a\xef\x13\xa9\x16\x15\x86\x36\x5c\x9e\x9f\xf0\x69\x00\x20\x51\x5e\x12\xff\xbf\xf0\x61\xa4\x3c\xdc\x83\xfb\x6b\xef\xa0\xe4\x57\xf6\x46\xaa\x7e\xc3\x0b\xf3\x65\xbe\x03\x00\x00\xff\xff\x5a\xed\xf9\x46\x29\x01\x00\x00" +var _stakingcollectionScriptsGet_unlocked_tokens_usedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x31\x6e\xc3\x30\x0c\x45\x77\x9d\xe2\x23\x93\xbd\xd4\x4b\xd1\xc1\x5b\x51\xc0\x17\x68\x7c\x00\x41\x62\x1c\xc1\x34\x59\x88\x14\xd2\xa2\xe8\xdd\x8b\x26\x29\xb2\x78\x7e\xe0\xe3\xfb\x65\xfb\xd0\xea\x98\x58\x2f\xef\x1e\xd7\x22\xcb\x9b\x32\x53\xf2\xa2\x82\x53\xd5\x0d\x87\x5d\x76\x08\x61\x18\x06\x1c\x89\xd9\x70\xd6\x0b\xb6\x28\x5f\x68\xc2\x9a\x56\xca\x70\x5d\x49\x0c\x7e\x26\xc4\x94\xb4\x89\xa3\x18\x9a\x15\x59\xae\x77\x93\xd6\x3f\x58\x09\x76\x33\x23\x3d\xde\x8a\x66\x32\x44\xc9\xc8\xc4\xb4\x44\xd7\x6a\x21\xc4\x94\xc8\xac\x8b\xcc\x3d\x4e\x4d\xb0\xc5\x22\xdd\x5d\x3e\xe2\x35\xe7\x4a\x66\xfd\x88\x79\x2a\x9f\x2f\xcf\xf8\x0e\x00\x50\xc9\x5b\x95\xfd\x79\x4f\x0b\xf9\x7c\x0f\x3e\x5e\x7b\x67\xa3\xdc\xc5\x9b\x69\xfc\x0f\xef\xc3\x4f\xf8\x0d\x00\x00\xff\xff\x31\xdc\x37\x2c\x26\x01\x00\x00" func stakingcollectionScriptsGet_unlocked_tokens_usedCdcBytes() ([]byte, error) { return bindataRead( @@ -5660,11 +5639,11 @@ func stakingcollectionScriptsGet_unlocked_tokens_usedCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_unlocked_tokens_used.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x24, 0x34, 0x15, 0x3b, 0xc2, 0x85, 0xed, 0x99, 0x3, 0xda, 0x7d, 0x70, 0xad, 0x34, 0x1f, 0x5a, 0xcb, 0xe5, 0x52, 0xa3, 0x85, 0x9b, 0xc7, 0x8d, 0x9a, 0xed, 0xcf, 0x24, 0xd0, 0xb5, 0x3c, 0xda}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x6b, 0x4a, 0x39, 0xdc, 0x90, 0x32, 0xaf, 0x58, 0x89, 0x48, 0x1d, 0x77, 0x1, 0x5, 0x8f, 0xe8, 0xf2, 0xc2, 0x68, 0xf, 0x44, 0xda, 0x36, 0x67, 0x13, 0x46, 0xf, 0x2a, 0x1c, 0x6d, 0xb2}} return a, nil } -var _stakingcollectionSetup_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\x5d\x6f\xdb\x36\x14\x7d\xf7\xaf\xb8\xc9\x43\x26\x01\x8e\xbc\xe7\xc0\x49\x97\xd9\xd9\x66\x24\x88\x8b\xda\xe8\x9e\xaf\xa5\x2b\x8b\x33\x43\x0a\x24\x15\x2d\x28\xfa\xdf\x07\x52\x9f\x8c\xe4\xd4\x6b\x87\x15\xa8\x1e\xa2\x98\xba\x5f\xe7\x1c\x5e\xf2\xb2\xa7\x5c\x2a\x03\xbf\x15\x62\xcf\x76\x9c\xb6\xf2\x40\x02\x52\x25\x9f\xe0\xdc\x5b\x3b\x9f\x34\x96\x5c\x96\x9e\x55\xf3\xdb\xb3\x58\x2d\xb7\xb8\xe3\xb4\x31\x78\x60\x62\xdf\x33\xf5\x3f\xb4\x3e\x0f\x32\x3e\x50\xe2\xe2\xe8\xca\xfa\xe7\xbf\x1f\xd6\x8b\xfb\xbb\xe5\x76\x7d\x7f\xf7\x78\xbb\x5c\x7e\xb8\xdb\x6c\xfa\x19\xea\x08\x0b\xc9\x39\xc5\x86\x49\xd1\xb8\x6d\xb6\xb7\xf7\xab\xc7\xdf\x17\xeb\x87\x87\xbb\xc5\x76\xb5\x6e\x9d\x27\xb3\xd9\x0c\xb6\x19\xd3\x60\x14\x0a\x8d\x95\x97\x26\xa3\xa1\xc8\x01\x05\x60\x1c\xcb\x42\x18\x30\x12\x0a\x4d\x80\xa0\xeb\xf2\xe3\x36\x89\x8b\xb1\x32\x50\x32\xce\xa1\x94\xea\x00\x8a\xf6\xa8\x12\x4e\x5a\x83\x4c\xa1\xcc\xc8\x64\xa4\xc0\x64\xf4\x02\x19\x3e\xdb\x28\x8a\xf6\x05\x47\xd5\x84\x9f\x02\x82\x29\xe5\x65\x93\x8d\x3b\xe8\x60\x2a\xec\x9a\x4c\x91\x4f\x5d\x1a\xa9\xda\x02\xe4\xee\x2f\x8a\x8d\x06\x6d\xa4\xa2\x04\x98\xb0\x09\xa0\x10\xb5\x6f\x1d\x6a\x32\xe9\x03\xfb\x34\x01\x00\xc8\x15\xe5\xa8\x28\xd0\x6c\x2f\x48\x5d\x01\x16\x26\x0b\x7e\x95\x4a\xc9\xf2\x23\xf2\x82\xa6\xb0\x31\x52\xe1\x9e\xa6\xb0\xc0\x1c\x77\x8c\x33\xc3\x48\x87\x70\x71\x5b\x05\x0d\xe1\xd3\xc4\x45\xb2\x8f\x05\x9f\xda\xdc\x8a\x80\x69\xf1\x93\x01\xe4\x8a\x30\x79\x19\x27\xab\x71\x63\x29\x54\xf9\x23\x5d\x25\x8b\x76\xae\x82\xf9\xc5\xa8\x92\xd1\x60\xe5\x26\xb0\xe2\x5e\x8d\x0b\x3f\x34\xaf\x21\xbd\x47\x93\x85\x70\x7d\x0d\x82\xf1\x3e\x8a\x1a\xc9\x42\x11\x1a\x82\x5c\xb1\x67\xfb\x8e\x7b\xf0\x21\x95\x4e\xc3\x4a\x15\xc8\x24\x4f\x48\x01\x8a\xa4\xe3\xfc\x19\x0b\x6e\xbc\x90\x9c\x1a\x31\xff\xa8\xec\xaf\x1b\xd4\xfd\xd0\x2d\x05\x4c\xeb\x82\xe6\x4e\x0f\xaf\xd3\xa2\x3f\x99\xc9\x12\x85\xe5\xd4\xeb\x8a\xc8\xbd\xd6\x39\x29\xb4\x10\xad\x42\xc3\xcf\x55\xe2\x9b\xe0\xd8\x97\x3e\x31\x67\x83\xe2\xd3\xb6\xb5\xbf\xb1\xf2\x10\x2e\xda\x63\x21\xfa\x68\x89\xba\x09\x66\xb5\xf7\xac\xcd\xe2\x3e\x84\x67\xc7\x74\x41\x10\x54\x42\x73\x82\xf4\xfa\xdc\xca\x90\x17\x06\x98\xb1\x8d\x50\x87\xf5\x82\xb0\xd4\x13\x22\x8a\x33\x8a\x0f\x41\x58\xb7\x44\xff\x79\xb5\x2d\x35\x3e\x53\x30\x30\xb2\xcf\xfc\xf2\xc8\xe6\x8b\x5d\xb5\x83\xf5\xf1\x28\xf6\x69\x76\x90\x83\x7f\xd5\x91\x3e\x3d\xea\x61\x3a\x01\xaf\x3c\x60\xa3\x1e\xe1\x78\x20\x23\xbf\xa6\x7d\x06\xa1\x42\x6f\xe5\x33\x10\xd7\xf4\x43\xf0\x2a\x18\xff\xfe\x74\x0e\x7a\xe1\x7d\xb1\xe3\x4c\x67\x80\xdd\xf1\xf4\x62\xef\x27\x7b\x36\x55\x0c\x25\x23\x07\x6f\x34\x68\x6d\xfd\xba\xa8\x05\xe6\x27\x75\xf9\xe9\x27\xf4\x00\xdb\x37\xd2\x13\xfa\x64\x8c\x95\x9a\x57\xec\x0c\x53\x8f\xc1\x1d\xea\x88\xe6\x64\x0d\x9d\x0e\xf1\x48\x8d\x23\xd2\xcd\x66\x50\x5d\x6f\xee\xee\x4f\x49\x91\x88\xa9\x11\xed\x8d\x5b\xd2\xea\xd4\x2d\x7f\xa0\xb4\x13\xe8\xff\xbf\x36\x3d\x98\xef\xde\x41\x8e\x82\xc5\xc1\xf9\x42\x16\x3c\x01\x21\x4d\x03\x71\x88\xa7\xc3\x7c\x1e\x1e\x9b\x1c\xec\xe1\x2e\x93\x8a\x0d\x52\xf5\x78\xd3\x8c\x35\xed\x9c\xd4\x1d\xf2\x5f\x60\xee\xed\xf9\xc2\x1f\x39\xa3\x47\x99\xb8\xff\xed\x3d\xd9\xd1\x73\xd4\xc8\x9b\x25\xce\x9a\x59\xe2\x75\x7f\x39\x34\xf3\xcb\xd7\x65\x70\x89\xc9\xfc\x97\xff\xb6\x08\xff\xde\xf6\x36\x4c\x84\x49\x62\x9d\xd6\x8e\xcf\x60\x7e\x69\xcb\x9a\xc2\x13\xc6\x19\x13\x54\x0f\x74\x2b\x91\x4a\x77\xdc\x1d\xdb\xbc\xbe\x4e\x09\x71\xda\xa3\x91\xdf\x41\xa5\x65\x93\xfa\x0d\x8e\x5a\x9b\xd3\x74\xea\xd0\xfc\x4b\xb1\xbe\xba\x96\x2f\xc8\xd5\xfa\xb4\x9a\xb5\x25\xf6\xf5\xa9\xfe\x7e\x9e\xfc\x13\x00\x00\xff\xff\x43\x2d\x07\x43\xaf\x0d\x00\x00" +var _stakingcollectionSetup_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xdf\x4f\xfb\x36\x10\x7f\xcf\x5f\x71\xf4\x81\x25\x52\x9b\xbe\x57\x85\xef\xb6\x7e\x35\x0d\x69\x1a\x68\x20\xf6\x7c\x4d\x2e\x8d\x57\x63\x47\xb6\xd3\x08\x21\xfe\xf7\xc9\xce\x4f\x37\x29\x74\x30\x0d\x69\x7e\x20\xd4\xbe\x5f\x9f\xfb\xf8\xce\xc7\x9e\x0a\xa9\x0c\xfc\x52\x8a\x1d\xdb\x72\x7a\x90\x7b\x12\x90\x29\xf9\x04\x33\x6f\x6f\x16\xb4\x92\x5c\x56\x9e\x54\xfb\xdb\x93\xb8\xf9\xfe\x80\x5b\x4e\xf7\x06\xf7\x4c\xec\x06\xa2\xfe\x41\xa7\xf3\x9b\x4c\xf6\x94\x3a\x3b\xba\x91\x1e\x6e\x79\xb6\x1b\xdd\x8d\xe4\x9c\x12\xc3\xe4\x30\x92\xd1\xd9\x2c\x08\x96\xcb\x25\x3c\xe4\x4c\x83\x51\x28\x34\xd6\x2a\x9a\x8c\x86\xb2\x00\x14\x80\x49\x22\x4b\x61\xc0\x48\x28\x35\x01\x82\x6e\xa2\x4e\x3a\x2b\xce\xc6\x8d\x81\x8a\x71\x0e\x95\x54\x7b\x50\xb4\x43\x95\x72\xd2\x1a\x64\x06\x55\x4e\x26\x27\x05\x26\xa7\x67\xc8\xf1\x60\xad\x28\xda\x95\x1c\x55\x6b\x7e\x0e\x08\xa6\x92\x8b\xd6\x1b\x77\xf0\xc0\xd4\x90\x35\x99\xb2\x98\x3b\x37\x52\x75\x01\xc8\xed\x5f\x94\x18\x0d\xda\x48\x45\x29\x30\x61\x1d\x40\x29\x1a\xdd\xc6\x54\x10\x0c\x81\xbd\x04\x00\x00\x85\xa2\x02\x15\x85\x9a\xed\x04\xa9\x15\x60\x69\xf2\xf0\x67\xa9\x94\xac\x1e\x91\x97\x34\x87\x7b\x23\x15\xee\x68\x0e\x1b\x2c\x70\xcb\x38\x33\x8c\x74\x04\x97\x3f\xd5\x46\x23\x78\x09\x9c\x25\xbb\x2c\xf8\xcc\xfa\x56\x04\x4c\x8b\x1f\x0c\x20\x57\x84\xe9\xf3\x74\xb2\x5a\x35\x96\x41\xed\x3f\xd6\xb5\xb3\x78\xeb\x22\x58\x5f\x4e\x52\x15\x8f\x76\xae\x43\xcb\xec\x6a\x9a\xf5\xb1\x78\x03\xe9\x0e\x4d\x1e\xc1\xd5\x15\x08\xc6\x87\x28\x1a\x24\x1b\x45\x68\x08\x0a\xc5\x0e\xf6\x9b\x0c\xe0\x43\x26\x1d\x87\x35\x2b\x90\x4b\x9e\x92\x02\x14\x69\x9f\xf3\x03\x96\xdc\x78\x26\x39\xb5\x64\xfe\x5a\xcb\x5f\xb5\xa8\x87\xa6\xbb\x14\x30\xad\x4b\x5a\x3b\x3e\xbc\x02\x8b\xff\x64\x26\x4f\x15\x56\x73\xaf\x18\x62\xf7\xb9\x2d\x48\xa1\x85\x68\x19\x1a\x1f\xd7\x8e\xaf\xc3\x53\x27\xc3\xc4\x5c\x8c\x82\xcf\xba\x8a\xfe\x64\xe4\x11\x5c\x76\xdd\x20\x7e\xb4\x89\xba\x0e\x97\x8d\xf6\xb2\xf3\xe2\x0e\xa2\x8b\x53\xbc\x20\x08\xaa\xa0\x6d\x1c\x83\x22\xb7\x34\x14\xa5\x01\x66\x6c\x21\x34\x66\x3d\x23\x2c\xf3\x88\x88\x93\x9c\x92\x7d\x18\x35\x25\x31\x5c\x47\xd7\x52\xe3\x81\xc2\x91\x90\x5d\xeb\xc5\x89\xcb\x97\xb8\x68\x47\xfb\xd3\x56\xec\x6a\x6f\x90\x83\xbf\xea\x93\x3e\x3f\xa9\x61\x7a\x02\x57\x1e\xb0\x49\x8d\x68\xda\x90\x91\x1f\x29\x9f\x91\xa9\xc8\xdb\x79\x05\xe2\x9a\xfe\x17\x79\x15\x8c\x7f\x7d\x3a\x47\xb5\x70\x57\x6e\x39\xd3\x39\x60\xdf\x9e\x9e\xed\xfb\x64\x7b\x53\x9d\xa1\x74\xa2\xf1\xc6\xa3\xd2\xd6\xc7\x41\x6d\xb0\x38\xab\xca\xcf\xef\xd0\x23\x6c\x9f\x4c\x4f\xe4\x27\x63\x2a\xd4\xa2\xce\xce\xd8\xf5\x14\xdc\x31\x8f\x68\xce\xe6\xd0\xf1\x90\x4c\xc4\x38\x41\xdd\x72\x09\xf5\xf3\xe6\xde\xfe\x8c\x14\x89\x84\x5a\xd2\xde\x78\x25\x2d\x4f\xfd\xf6\x1f\x94\xf5\x04\xfd\xf7\xcf\xa6\x07\xf3\xdb\x37\x28\x50\xb0\x24\x9c\x6d\x64\xc9\x53\x10\xd2\xb4\x10\xc7\x78\x7a\xcc\xb3\xe8\xd4\xe4\x60\x9b\xbb\x4c\xeb\x6c\x90\x6a\xc6\x9b\x76\xac\xe9\xe6\xa4\xbe\xc9\xbf\x93\xb9\xb7\xe7\x0b\x7f\xd2\x8c\x7f\x97\xa9\xfb\xdf\xbe\x93\x7d\x7a\x4e\x0a\x79\xb3\xc4\x45\x3b\x4b\x1c\xd7\x97\x43\xb3\x5e\x1c\x87\xc1\x25\xa6\xeb\x1f\xff\xdd\x20\xfc\x77\xdb\xbb\x30\x31\xa6\xa9\x55\xba\x75\xf9\x0c\xd7\x0b\x1b\xd6\x1c\x9e\x30\xc9\x99\xa0\x66\xa0\xbb\x11\x99\x74\xed\xee\xd4\xe5\xf5\x79\x4a\x89\xd3\x0e\x8d\xfc\x02\x96\xbe\xb7\xae\xdf\xc8\x51\x27\x73\x1e\x4f\x3d\x9a\x7f\x48\xd6\x87\x63\x79\x87\xae\x4e\xa7\xe3\xac\x0b\x71\xc8\x4f\xfd\xf7\x35\xf8\x3b\x00\x00\xff\xff\x2f\x57\xf5\xcc\xa6\x0d\x00\x00" func stakingcollectionSetup_staking_collectionCdcBytes() ([]byte, error) { return bindataRead( @@ -5680,11 +5659,11 @@ func stakingcollectionSetup_staking_collectionCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/setup_staking_collection.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc2, 0x50, 0xe3, 0xa8, 0x7b, 0x79, 0x59, 0x9e, 0x41, 0xae, 0xf0, 0x20, 0xf3, 0x4c, 0x34, 0xb5, 0xe6, 0x5b, 0xb7, 0x0, 0x49, 0x15, 0xc, 0x3, 0x75, 0x5a, 0x93, 0xd, 0xba, 0xe, 0x9e, 0x6b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc6, 0x8f, 0xd5, 0x44, 0x8b, 0x79, 0x97, 0x70, 0x5e, 0x2a, 0xd, 0xcd, 0x70, 0xb3, 0x50, 0xdb, 0x48, 0xaa, 0x31, 0xa6, 0xeb, 0xb3, 0x2, 0xb6, 0xeb, 0xdf, 0xee, 0xac, 0xe2, 0x1e, 0xd1, 0x58}} return a, nil } -var _stakingcollectionStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6f\xda\x4e\x10\xc5\xef\xfe\x14\x4f\x39\xe4\x0f\x12\x82\xbf\xda\xaa\x07\xd4\x16\x51\x48\x2a\xd4\x08\xaa\x98\xf4\xbe\xb1\xc7\xb0\x62\xbd\x63\xcd\x8e\x6b\xa2\x2a\xdf\xbd\xf2\x3a\x40\x14\x38\xf4\xd2\x3d\x78\xed\xf5\xf8\xbd\x37\xe3\x9f\x2d\x2b\x16\xc5\xad\xe3\x26\x55\xb3\xb3\x7e\x33\x63\xe7\x28\x53\xcb\x1e\x85\x70\x89\xff\xf7\xe9\x7a\xfa\x7d\xb1\xfc\x36\x5b\xdd\xdd\xdd\xcc\xd6\x8b\xd5\x72\x3a\x9f\xdf\xdf\xa4\x69\x92\x8c\x46\x23\xcc\xb8\x2c\xad\x06\x78\x6a\xa0\xbc\x23\x1f\xa0\x8c\xa0\x66\x47\x28\x58\xa0\x5b\x42\xa8\x28\xb3\x85\xa5\x1c\x9e\x73\x02\x0b\x72\x72\xb4\x31\xca\x02\xeb\xbb\x92\xce\x1d\xd9\xd1\x3e\xaa\xaf\xb7\x74\x50\x8d\x69\xda\x52\xc7\xd9\x8e\x72\xfc\x32\xb5\x53\x18\x21\xd4\x81\x72\x14\x56\x82\x0e\x60\x0b\x58\x05\xed\x6d\xd0\x10\x15\x0a\x76\x8e\x1b\xca\xf1\xf8\x14\xbf\x7e\xab\x56\xfb\xd7\x7a\x49\xa2\x62\x7c\x30\x31\x41\xaf\x4d\xbb\x98\x8f\x91\xaa\x58\xbf\x19\x9c\x52\xb7\x87\x0f\x0b\xaf\xef\xdf\x4d\x06\x30\x25\xd7\x5e\xc7\x78\xb8\xb5\xfb\x8f\x1f\xfa\xf8\x9d\x00\x40\xbc\x38\xd2\x43\x67\xa7\xb9\xde\x53\x31\x86\xa9\x75\xdb\xbb\x38\xf6\xe1\xe9\x76\xd5\x78\x92\x3e\xae\x2f\xd7\x9d\x9d\x24\xd1\xb3\x12\xaa\x8c\x50\xcf\x64\x59\x97\x2b\x5a\x7d\x65\x11\x6e\x7e\x1a\x57\x53\x1f\xd7\xd3\xee\xdd\x21\x6b\xbb\x02\xb9\x62\x78\x29\x2b\x3e\xe3\x45\x6a\x18\x94\xc5\x6c\x68\xf8\x18\xc5\x3e\xfd\x8b\x1e\xbe\xf4\xda\x3f\x33\xbe\x4c\xe4\x79\x79\xda\x25\xfa\x61\x74\xdb\x3f\xb6\xd2\xae\xc9\x04\x95\xf1\x36\xeb\x5d\xcd\xb8\x76\x2d\x78\x8a\x2e\x36\x0c\x84\x0a\x12\xf2\x59\x4b\x03\x0c\xce\xc9\x7f\x81\xb2\x12\x5b\x1a\x79\x6a\x01\x93\xff\xc2\x61\x0c\x57\x9d\xd3\x73\x37\x6e\xda\x53\x56\x2b\xfd\xcd\x24\xe3\x21\x2d\xa9\x59\x47\x06\x8f\x78\x75\xfb\x1b\xbc\x5e\x3d\x9c\x10\xeb\xf6\x83\xff\x73\xf2\x27\x00\x00\xff\xff\x66\xba\x2a\xf3\xbf\x03\x00\x00" +var _stakingcollectionStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6f\xdb\x30\x0c\x85\xef\xfe\x15\x0f\x39\x74\x09\x10\x24\xc0\x36\xec\x10\x6c\x0b\xb6\x0c\x05\x7a\xd9\x86\xa5\xdd\x5d\xb5\xe9\x44\x88\x2c\x1a\x14\x3d\xa7\x18\xfa\xdf\x07\x49\x75\x52\x34\x3e\xec\x52\x1d\x2c\x9b\xa2\x1f\x1f\xa9\xcf\x36\x2d\x8b\xe2\xda\x71\xbf\x55\x73\xb0\x7e\xb7\x61\xe7\xa8\x54\xcb\x1e\xb5\x70\x83\xc9\xe8\xd9\xa4\x28\x96\xcb\x25\x36\xdc\x34\x56\x03\x3c\xf5\x50\x3e\x90\x0f\x50\x46\x50\x73\x20\xd4\x2c\xd0\x3d\x21\xb4\x54\xda\xda\x52\x05\xcf\x15\x81\x05\x15\x39\xda\x19\x65\x81\xf5\x39\x25\xcb\xa3\x3c\xe9\x27\xf5\xdb\x3d\x0d\xaa\xc9\x4a\x4c\x75\x5c\x1e\xa8\xc2\x1f\xd3\x39\x85\x11\x42\x17\xa8\x42\x6d\x25\xe8\x1c\xb6\x86\x55\xd0\xd1\x06\x0d\x49\xa1\x66\xe7\xb8\xa7\x0a\xf7\x0f\xe9\xef\x97\x6a\x9d\x7f\xae\x57\x14\x2a\xc6\x07\x93\x1c\x4c\xa3\xdb\x9b\x6f\x2b\x6c\x55\xac\xdf\xcd\xcf\xae\x63\xf0\xee\xc6\xeb\xbb\xb7\xeb\x39\x4c\xc3\x9d\xd7\x15\xee\xae\xed\xf1\xc3\xfb\x19\xfe\x16\x00\x90\x1e\x8e\x74\xe8\xec\x3c\xb8\x5f\x54\xaf\x60\x3a\xdd\x4f\x47\xe7\xba\x38\xbf\xfe\xe8\x3d\xc9\x0c\x57\xe3\x79\x17\x91\x22\xd5\x6c\x85\x5a\x23\x34\x35\x65\x99\x7d\xa5\x52\x5f\x59\x84\xfb\xdf\xc6\x75\x34\xc3\xd5\x97\x7c\x36\x78\x8d\x2b\x90\xab\x17\x63\x5e\xf1\x09\x4f\x52\x8b\xa0\x2c\x66\x47\x8b\xfb\x24\xf6\xf1\x35\x7a\xf8\x3c\x8d\x37\xb3\x1a\xc7\xf1\x32\x7d\x9b\x1d\xfd\x34\xba\x9f\x9d\x5a\x89\x6b\xbd\x46\x6b\xbc\x2d\xa7\x93\x0d\x77\x2e\x82\xa7\xc8\xb6\x61\x20\x54\x93\x90\x2f\x23\x0d\x30\xb8\xc4\xfe\x09\xca\x56\x6c\x63\xe4\x21\x02\x26\x6f\xc2\x30\x86\x49\xae\xf4\x98\xc7\x4d\x47\x2a\x3b\xa5\xff\x99\x64\x0a\xd2\x77\xea\x6f\x13\x83\x27\xbc\xf2\xfe\x02\xaf\x67\x1f\x67\xc4\xf2\x3e\xd4\x7f\x2c\xfe\x05\x00\x00\xff\xff\x19\x9a\x91\xbf\xbc\x03\x00\x00" func stakingcollectionStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5700,11 +5679,11 @@ func stakingcollectionStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0x11, 0x5b, 0x73, 0xf2, 0xa5, 0xfe, 0x4c, 0x26, 0x50, 0x4, 0xb1, 0x6b, 0xca, 0xf2, 0x4, 0xd0, 0x28, 0x76, 0x7f, 0xdc, 0xcd, 0xa8, 0xdb, 0xdd, 0x20, 0x8f, 0x6d, 0xfa, 0xca, 0xe8, 0xa5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x9a, 0xc7, 0x41, 0xbc, 0xe4, 0x74, 0x85, 0x15, 0x98, 0x99, 0xf, 0x7e, 0xfb, 0xc8, 0x6a, 0x9e, 0x96, 0x5b, 0xb6, 0x66, 0x12, 0x17, 0x77, 0x7b, 0xc3, 0x9e, 0x10, 0x6e, 0xc6, 0xe5, 0x3e}} return a, nil } -var _stakingcollectionStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x8f\xd3\x40\x0c\xc5\xef\xf9\x14\x4f\x7b\x58\x52\x69\xd5\x22\x40\x1c\x2a\xa0\x2a\xe9\x2e\xaa\x58\x6d\x51\xd3\xe5\x6e\x12\xa7\x1d\x35\x19\x47\x8e\xa3\x16\xa1\xfd\xee\x28\x99\xfe\x41\xb4\x07\x2e\xcc\x21\x13\x3b\x8e\xfd\xfc\xf4\x73\x55\x2d\x6a\x78\x28\x65\x97\x1a\x6d\x9d\x5f\x27\x52\x96\x9c\x99\x13\x8f\x42\xa5\xc2\xeb\x7d\xba\x9a\x7e\x9d\x3f\x7d\x49\x16\x8f\x8f\xf7\xc9\x6a\xbe\x78\x9a\xce\x66\xcb\xfb\x34\x8d\xa2\xd1\x68\x84\x44\xaa\xca\x59\x03\xe5\x1d\x69\xce\x39\x4c\xb6\xec\x1b\x98\xa0\x31\xda\x32\x0a\x51\xd8\x86\xd1\xd4\x9c\xb9\xc2\x71\x0e\x2f\x39\x43\x14\x39\x97\xbc\x26\x13\x85\xf3\xa1\x24\x48\x40\x76\xd2\x10\x45\xa6\xe4\x1b\xea\x83\xb8\xfb\x71\x3e\x1b\x23\x35\x75\x7e\x7d\x77\x6e\xd0\x25\x9f\xe7\xde\xde\xbe\x99\xdc\x81\x2a\x69\xbd\x8d\xf1\xfc\xe0\xf6\xef\xdf\x0d\xf0\x2b\x02\x80\xfe\x51\xb2\x1d\x87\x9c\xf7\x5c\x72\x31\x06\xb5\xb6\x89\xaf\xda\x30\x3c\xbf\x2e\x76\x9e\x75\x80\xdb\xeb\x75\x17\x99\xa8\x9f\x59\x2b\xd7\xa4\x1c\x53\x96\x05\x5d\xfd\xa8\xcf\xa2\x2a\xbb\xef\x54\xb6\x3c\xc0\xed\x34\x7c\x3b\x6a\xed\x4e\xc3\x65\x31\xbc\xa6\x15\x1f\x71\x68\x35\x6c\x4c\x94\xd6\x3c\xfc\xd1\x37\xfb\xf0\x3f\x76\xf8\x14\x77\x14\x8c\xaf\x13\x72\x59\x9e\x06\x45\xdf\xc8\x36\x83\xd3\x2a\xdd\x99\x4c\x50\x93\x77\x59\x7c\x93\x48\x5b\x76\x0c\x18\x82\x6c\x10\x94\x0b\x56\xf6\x19\x77\xd4\x10\x2e\x49\x3c\xf0\x51\xab\xab\x48\x7f\xa2\x6d\x58\x5f\x35\x47\x1b\x6e\xc2\xa4\x97\x60\x37\xef\x39\x6b\x8d\xff\xc5\xc9\x3e\xc9\xcb\x03\xb8\xab\x9e\xdb\x13\x63\xe1\xfe\x8b\xb1\x3f\x82\x33\x67\xe1\x3e\x8a\x78\x89\x7e\x07\x00\x00\xff\xff\x48\x90\xd8\x9c\x54\x03\x00\x00" +var _stakingcollectionStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x8f\xd3\x30\x10\x85\xef\xf9\x15\x4f\x3d\x2c\xa9\xb4\x6a\x25\x40\x1c\x2a\xa0\x82\xa2\x95\xf6\x04\xda\xb2\xdc\x07\x67\xd2\x5a\x75\x3c\xd1\x78\xa2\x2e\x42\xfb\xdf\x51\xe2\xb6\x41\x34\x07\x2e\xeb\x43\x1c\x8f\xc7\xf3\xde\x8c\x3e\xdf\xb4\xa2\x86\xbb\x20\xc7\xad\xd1\xc1\xc7\xdd\x46\x42\x60\x67\x5e\x22\x6a\x95\x06\xb3\xc9\xbb\x59\x51\x2c\x97\x4b\x6c\xa4\x69\xbc\x25\x28\x1f\x49\x2b\xae\x60\x72\xe0\x98\x60\x82\x64\x74\x60\xd4\xa2\xb0\x3d\x23\xb5\xec\x7c\xed\xb9\x42\x94\x8a\x21\x8a\x8a\x03\xef\xc8\x44\xe1\x63\x4e\xc9\x1a\x70\x17\x91\xa2\x30\xa5\x98\x68\x38\x94\xfd\xc3\xfb\x2f\x2b\x6c\x4d\x7d\xdc\xdd\x8e\x05\xfa\xe0\xe3\x7d\xb4\x37\xaf\xd7\xb7\xa0\x46\xba\x68\x2b\x3c\xde\xf9\xa7\x77\x6f\xe7\xf8\x5d\x00\xc0\xf0\x09\x6c\x67\x91\xb1\x91\x07\xae\x57\xa0\xce\xf6\xe5\x64\x9f\x8b\xf1\xf7\xeb\x31\xb2\xce\x71\x33\x9d\x77\x15\x29\x06\xcd\x56\xb9\x25\xe5\x92\x9c\xcb\xbe\x06\xa9\xcf\xa2\x2a\xc7\x1f\x14\x3a\x9e\xe3\xe6\x53\xbe\x3b\x7b\xed\x57\xe2\x50\x2f\xa6\xbc\xe2\x03\x4e\xa5\x16\xc9\x44\x69\xc7\x8b\x9f\x43\xb1\xf7\x2f\xd1\xc3\xc7\xb2\x47\x60\x35\x8d\xc7\x75\xfa\x36\x3b\xfa\x46\xb6\x9f\x5f\x5a\xe9\xd7\x7a\x8d\x96\xa2\x77\xe5\x6c\x23\x5d\xe8\x19\x30\x64\xdb\x20\x28\xd7\xac\x1c\x1d\xf7\xd4\x10\xae\x31\x3c\xf1\xd1\xaa\x6f\x48\x7f\xa1\x4b\xac\xaf\xd2\x79\x0c\xb3\xac\xf4\x9c\xc7\xcd\x4f\xec\x3a\xe3\xff\x99\xe4\x10\xe4\x87\x13\xb8\xdf\x07\x6e\x2f\x8c\xe5\xfd\x1f\xc6\xfe\x3a\x8c\x9c\xe5\xfd\x6c\xe2\xb9\xf8\x13\x00\x00\xff\xff\x2f\x51\xad\x1c\x51\x03\x00\x00" func stakingcollectionStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5720,11 +5699,11 @@ func stakingcollectionStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xba, 0x1e, 0x46, 0xa7, 0xd0, 0xf1, 0x93, 0x27, 0x50, 0x80, 0xd6, 0x57, 0xfe, 0x5b, 0xf0, 0xaf, 0xef, 0x9e, 0x16, 0x5f, 0xbd, 0x55, 0x28, 0xbe, 0x53, 0x12, 0xd1, 0x8d, 0x28, 0x51, 0xe9, 0x30}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x29, 0xa7, 0x4a, 0x17, 0x9b, 0x2d, 0xe2, 0x9b, 0xf8, 0xdb, 0xe2, 0xb2, 0x5b, 0x3b, 0xa5, 0x1c, 0xe, 0xec, 0x5d, 0xb3, 0x86, 0xb, 0xeb, 0xd5, 0x62, 0xbe, 0xc9, 0x84, 0x5, 0xe, 0x1d, 0x75}} return a, nil } -var _stakingcollectionStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x8f\xd3\x40\x0c\xc5\xef\xf9\x14\x4f\x7b\x58\x52\x69\xd5\x22\x40\x1c\x2a\xa0\x2a\xe9\x2e\xaa\x58\x6d\xd1\xa6\xe5\x3e\xa4\x4e\x3b\x6a\x32\x8e\x3c\x8e\x5a\x84\xf6\xbb\xa3\xcc\xf4\x0f\xa2\x39\x70\x61\x0e\x99\xd8\x71\xec\xe7\xa7\x9f\xad\x1b\x16\xc5\x43\xc5\xfb\x5c\xcd\xce\xba\x4d\xc6\x55\x45\x85\x5a\x76\x28\x85\x6b\xbc\x3e\xe4\xcb\xe9\xd7\xf9\xd3\x97\x6c\xf1\xf8\x78\x9f\x2d\xe7\x8b\xa7\xe9\x6c\xf6\x7c\x9f\xe7\x49\x32\x1a\x8d\x90\x71\x5d\x5b\xf5\x68\x9d\x57\xb3\xa3\x35\x94\x77\xe4\x3c\x94\x11\x12\x28\x59\xa0\x5b\x82\x6f\xa8\xb0\xa5\xa5\x35\x1c\xaf\x09\x2c\x58\x53\x45\x1b\xa3\x2c\xb0\x2e\x96\x44\x09\x28\xce\x1a\x92\x44\xc5\x38\x6f\x42\x90\x76\x3f\xce\x67\x63\xe4\x2a\xd6\x6d\xee\x2e\x0d\xba\xe4\x6a\xee\xf4\xed\x9b\xc9\x1d\x4c\xcd\xad\xd3\x31\x56\x0f\xf6\xf0\xfe\xdd\x00\xbf\x12\x00\x08\x8f\x8a\xf4\x34\xe4\xb2\xe7\x33\x95\x63\x98\x56\xb7\x69\xaf\x0d\xc3\xcb\xeb\x62\xef\x48\x06\xb8\xed\xaf\xbb\xca\x24\x61\x66\x23\xd4\x18\xa1\xd4\x14\x45\xd4\x15\x46\x7d\x66\x11\xde\x7f\x37\x55\x4b\x03\xdc\x4e\xe3\xb7\x93\xd6\xee\x78\xaa\xca\x61\x9f\x56\x7c\xc4\xb1\xd5\xd0\x2b\x8b\xd9\xd0\xf0\x47\x68\xf6\xe1\x7f\xec\xf0\x29\xed\x28\x18\xf7\x13\x72\x5d\x9e\x47\x45\xdf\x8c\x6e\x07\xe7\x55\xba\x33\x99\xa0\x31\xce\x16\xe9\x4d\xc6\x6d\xd5\x31\xa0\x88\xb2\x61\x20\x54\x92\x90\x2b\xa8\xa3\xc6\xe0\x9a\xc4\x23\x1f\x8d\xd8\xda\xc8\x4f\xb4\x9e\xe4\x95\x3f\xd9\x70\x13\x27\xbd\x44\xbb\xe9\x40\x45\xab\xf4\x2f\x4e\x86\x24\xad\x8e\xe0\x2e\x03\xb7\x67\xc6\xe2\xfd\x17\x63\x7f\x04\x17\xce\xe2\x7d\x12\xf1\x92\xfc\x0e\x00\x00\xff\xff\xd3\x6f\x58\xdd\x54\x03\x00\x00" +var _stakingcollectionStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x8f\xd3\x30\x10\xc5\xef\xf9\x14\x4f\x3d\x2c\xa9\xb4\x6a\x25\x40\x1c\x2a\xa0\x82\xa2\x95\xf6\x04\xa2\x94\xfb\xe0\x4e\x5a\xab\x8e\x27\x1a\x4f\xd4\x45\x68\xbf\x3b\x8a\xdd\x3f\x88\xe6\xc0\x05\x1f\xe2\x78\x3c\x9e\xf7\x66\xf4\xf3\x6d\x27\x6a\x78\x08\x72\x5c\x1b\x1d\x7c\xdc\xad\x24\x04\x76\xe6\x25\xa2\x51\x69\x31\x19\xbd\x9b\x54\xd5\x7c\x3e\xc7\x4a\xda\xd6\x5b\x42\x1f\x93\xd1\x81\xb7\x30\x39\x70\x4c\x30\x41\x0e\xa0\x11\x85\xed\x19\xa9\x63\xe7\x1b\xcf\x5b\x44\xd9\x32\x44\xb1\xe5\xc0\x3b\x32\x51\xf8\x58\x52\x8a\x06\xdc\x45\xa4\xaa\x4c\x29\x26\xca\x87\x7a\x78\xf8\xf8\x69\x81\xb5\xa9\x8f\xbb\xfb\x6b\x81\x21\xb8\x79\x8c\xf6\xea\xe5\xf2\x1e\xd4\x4a\x1f\x6d\x81\xcd\x83\x7f\x7a\xf3\x7a\x8a\x5f\x15\x00\xe4\x4f\x60\x3b\x8b\x5c\x1b\xf9\xca\xcd\x02\xd4\xdb\xbe\x1e\xed\x73\x76\xfd\xfd\x7c\x8c\xac\x53\xdc\x8d\xe7\xdd\x44\xaa\xac\xd9\x29\x77\xa4\x5c\x93\x73\xc5\x57\x96\xfa\x28\xaa\x72\xfc\x4e\xa1\xe7\x29\xee\x3e\x94\xbb\xb3\xd7\x61\x25\x0e\xcd\x6c\xcc\x2b\xde\xe1\x54\x6a\x96\x4c\x94\x76\x3c\xfb\x91\x8b\xbd\xfd\x1f\x3d\xbc\xaf\x07\x04\x16\xe3\x78\xdc\xa6\xaf\x8b\xa3\x2f\x64\xfb\xe9\xa5\x95\x61\x2d\x97\xe8\x28\x7a\x57\x4f\x56\xd2\x87\x81\x01\x43\xb1\x0d\x82\x72\xc3\xca\xd1\xf1\x40\x0d\xe1\x16\xc3\x13\x1f\x9d\xfa\x96\xf4\x27\xfa\xc4\xfa\x22\x9d\xc7\x30\x29\x4a\xcf\x65\xdc\xfc\xc4\xae\x37\xfe\x97\x49\xe6\x20\x6f\x4e\xe0\x7e\xcb\xdc\x5e\x18\x2b\xfb\x5f\x8c\xfd\x71\xb8\x72\x56\xf6\xb3\x89\xe7\xea\x77\x00\x00\x00\xff\xff\xb4\xae\x2d\x5d\x51\x03\x00\x00" func stakingcollectionStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5740,11 +5719,11 @@ func stakingcollectionStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa9, 0xeb, 0xc7, 0xe1, 0xaa, 0xac, 0xa4, 0xdf, 0xee, 0x1b, 0x14, 0x9f, 0x51, 0x3a, 0x43, 0xd2, 0x54, 0x7a, 0x6e, 0xef, 0x6, 0x30, 0xdb, 0xce, 0x70, 0xd1, 0x65, 0xef, 0x58, 0xb1, 0x46, 0x7d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa2, 0xd9, 0xa3, 0x30, 0xe2, 0xac, 0xb5, 0xaf, 0xf, 0x7f, 0x25, 0x9f, 0x13, 0x26, 0xc8, 0x5b, 0x90, 0x55, 0x41, 0x24, 0x7e, 0x86, 0x5e, 0xbc, 0xc2, 0x80, 0x56, 0x9e, 0x7d, 0xb6, 0xb8, 0x5f}} return a, nil } -var _stakingcollectionTestDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xdb\x30\x0c\xbd\xfb\x2b\x88\x1c\x0a\xe7\x50\x67\x87\x61\x87\x20\x5b\x91\x39\xc9\x50\xc4\xa8\x87\x3a\xed\xce\xaa\x43\x3b\x42\x14\xd1\x90\x28\xb4\xc3\xd0\x7f\x1f\x22\x39\x42\xbc\x04\x58\x7d\x31\x48\xbd\xc7\xc7\x47\x52\x1e\x3a\x32\x0c\x2b\x45\xaf\x15\x8b\xbd\xd4\x6d\x4e\x4a\x61\xcd\x92\x34\x34\x86\x0e\xf0\xe9\xad\xda\xcc\xd7\xf7\x0f\x3f\xf2\xb2\x28\x96\xf9\xe6\xbe\x7c\x98\x2f\x16\x8f\xcb\xaa\x4a\xce\xc8\x1b\xda\x63\x4f\x18\xc5\x78\x14\x11\x4e\xb7\xf2\x45\xe1\x00\x75\x9e\x8b\xc8\x82\xea\x3d\x6e\x7d\xce\x9e\xf4\x8b\x32\x5f\x2f\x17\x9b\x72\xbd\x8c\xca\xc9\x64\x02\x4f\x16\xb7\x40\x5a\xfd\x86\x86\x0c\x30\x5a\x86\xce\x99\x8e\x2c\x5a\x60\x0a\x09\xde\x21\x6c\xb1\x23\x2b\x19\x38\x88\x3b\x1d\xcc\x49\xed\x5f\x6d\x70\x0d\x75\xb4\x9d\x24\x6c\x84\xb6\xc2\x07\xa9\x38\x90\xd3\x3c\x85\xa7\x95\x7c\xfb\xf2\x79\x0c\x7f\x92\x04\x00\xa0\x33\xd8\x09\x83\xa9\x95\xad\x46\x33\x05\xe1\x78\x97\x7e\x27\x63\xe8\xf5\x59\x28\x87\x63\xb8\x99\xd7\xf5\x91\x1a\x29\xc7\x4f\x21\x9f\x29\x3d\x62\x03\x5f\x21\x94\xc8\x2c\x93\x11\x2d\x66\x2f\xbe\xc8\xec\xe6\xea\x4a\xb2\x8b\xcc\xb7\xf4\x38\xa5\xe9\xf5\x0d\x5e\xc2\xab\xa0\xf2\x53\xf0\x6e\x1c\xbb\x3a\x7e\x77\x77\xd0\x09\x2d\xeb\x74\x94\x93\x53\x5b\xd0\xc4\x10\x5a\x01\x01\x06\x1b\x34\xa8\x6b\xf4\x83\xbd\x3a\xb5\xd1\x78\xe8\xb2\x39\x1d\xc1\x7f\x4d\x7a\x54\xf6\x2c\x9c\xe2\x93\x99\x49\x8f\x9b\xc4\x2a\xfe\xf9\xc3\x1d\x0f\xfa\x5d\x15\xe5\x2f\xf0\xfc\x7f\x7b\xe4\x70\x66\xb3\xdb\xe1\x4e\xb2\x16\x39\x5c\x60\xdc\x7e\xf8\x0f\xf5\x63\x30\x24\xf7\xe7\xd6\x17\x08\x7e\x66\xb7\x41\x2a\x14\x78\x4f\xde\xff\x06\x00\x00\xff\xff\x8b\x69\xe0\x44\x77\x03\x00\x00" +var _stakingcollectionTestDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\x41\xcf\xda\x30\x0c\xbd\xe7\x57\x58\x3d\xa0\xf6\x40\x7b\x99\x76\x40\x6c\x68\x43\xe2\x84\xb4\x69\x0c\x76\x0e\xad\x5b\x22\x42\x5c\x25\x8e\xd8\x34\xf1\xdf\xa7\x26\xa5\x6b\x47\xa5\x7d\xb9\x44\xb6\x9f\xed\xf7\x6c\xab\x5b\x4b\x96\x61\xa7\xe9\x7e\x60\x79\x55\xa6\xd9\x92\xd6\x58\xb2\x22\x03\xb5\xa5\x1b\x24\xb3\xb1\x44\x8c\x32\xbf\xd3\x15\xc7\xe8\x60\xff\x45\x78\xd3\xa8\xb3\xc6\x09\x6a\xec\x1b\x90\x7b\x2a\xaf\x58\x05\x9f\xeb\x81\x63\x57\x22\x44\x51\xc0\xd1\x61\x05\x64\xf4\x2f\xa8\xc9\x02\xa3\x63\x68\xbd\x6d\xc9\xa1\x03\xa6\xe8\xe0\x0b\x42\x85\x2d\x39\xc5\xc0\xb1\xad\x37\x51\x93\x32\x21\xea\xa2\x20\x28\x07\x45\x42\xb0\x95\xc6\xc9\x60\xa4\xf2\x46\xde\xf0\x0a\x8e\x3b\xf5\xf3\xfd\xbb\x0c\x7e\x0b\x01\x00\xd0\x5a\x6c\xa5\xc5\xd4\xa9\xc6\xa0\x5d\x81\xf4\x7c\x49\x3f\x93\xb5\x74\x3f\x49\xed\x31\x83\xc5\xa7\xb2\xec\x52\x87\x94\xee\x69\xe4\x51\xa7\x6f\x58\xc3\x07\x88\x25\x72\xc7\x64\x65\x83\xf9\x39\x14\x59\x2f\x66\xa7\x9d\xbf\x78\x3e\xa6\xdd\x7c\x56\xf3\x8b\x7b\x85\x1f\x62\x97\xaf\x92\x2f\xd9\xc0\xaa\x7b\x9b\x0d\xb4\xd2\xa8\x32\x4d\xb6\xe4\x75\x05\x86\x18\x22\x15\x90\x60\xb1\x46\x8b\xa6\xc4\x30\xd8\xd9\xa9\x25\xd9\x54\x65\xfd\x5c\xff\x7f\x45\x06\x54\x7e\x92\x5e\xf3\x53\x4c\xd1\xe3\x8a\xa1\x4a\x08\xbf\x99\xf1\x84\xef\x6e\xff\xe5\x07\x84\xfc\x7f\x39\x72\x3c\xb0\xf5\x72\xba\x93\xbc\x41\x8e\x87\x36\x6c\x3f\xfe\xd3\xfe\x83\x31\x4d\xee\xcf\xad\x2f\x10\xf5\xac\x97\xb1\x55\x2c\xf0\x10\x8f\x3f\x01\x00\x00\xff\xff\x52\x6b\x3e\x3e\x6e\x03\x00\x00" func stakingcollectionTestDeposit_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5760,11 +5739,11 @@ func stakingcollectionTestDeposit_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/test/deposit_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x48, 0x87, 0x5e, 0x7b, 0x52, 0x17, 0x14, 0xf2, 0x56, 0xd1, 0x1, 0x9d, 0x2f, 0xf5, 0x8a, 0x7a, 0xcf, 0xdf, 0x3d, 0x7d, 0x45, 0x85, 0xae, 0xcc, 0xb7, 0xf4, 0xde, 0x3b, 0xa7, 0xfb, 0xb9, 0x2f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x1a, 0x62, 0x8a, 0x48, 0xfd, 0x30, 0xb2, 0xc1, 0x16, 0x95, 0xa1, 0xe8, 0x77, 0x7, 0x2a, 0x1f, 0x1c, 0xc0, 0x97, 0x59, 0x38, 0x3f, 0xdd, 0xbc, 0x1d, 0xd1, 0x3b, 0xec, 0x3e, 0x6e, 0x53}} return a, nil } -var _stakingcollectionTestGet_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\xc1\x6e\x9c\x30\x10\xbd\xfb\x2b\x46\x1c\x22\x38\x94\xf4\x50\xf5\xb0\x4a\x1b\x6d\x59\x52\x45\x8b\x42\x15\x48\xef\x0e\x0c\xac\xb5\x5e\x0f\xb2\x07\x25\x51\x95\x7f\xaf\xc0\xd4\x5d\x94\xf5\x05\xf9\x31\xef\x3d\xbf\x37\xea\x34\x90\x65\xb8\xd3\xf4\x52\xb1\x3c\x2a\xd3\x67\xa4\x35\x36\xac\xc8\x40\x67\xe9\x04\x9f\x5f\xab\x7a\xbb\xbf\x7f\xf8\x99\x95\x45\x91\x67\xf5\x7d\xf9\xb0\xdd\xed\x1e\xf3\xaa\x12\x67\xe4\x9a\x8e\xb8\x10\xa2\x70\x8f\xc2\xc4\x68\x7a\xf5\xac\x71\x35\x75\x8e\x85\xc9\x82\x9a\x23\xb6\x33\xe6\xfe\xf9\x17\x65\xb6\xcf\x77\x75\xb9\xcf\x83\xb3\xb8\xbe\x86\x27\x87\x2d\x90\xd1\x6f\xd0\x91\x05\x46\xc7\x30\x8c\x76\x20\x87\x0e\x98\x3c\xc0\x07\x84\x1e\x19\x78\x11\x1c\x8d\x4f\xa6\xcc\xfc\xcb\xf9\xc8\xd0\x84\xcc\x42\xb0\x95\xc6\xc9\xf9\x12\xcb\x13\x8d\x86\x37\xf0\x74\xa7\x5e\xbf\x7e\x49\xe0\x8f\x10\x00\x00\x83\xc5\x41\x5a\x8c\x9d\xea\x0d\xda\x0d\xc8\x91\x0f\xf1\x0f\xb2\x96\x5e\x7e\x4b\x3d\x62\x02\x57\xdb\xa6\x99\xa8\x81\x32\x1d\x8d\x7c\xe6\xf4\x88\x1d\x7c\x03\x2f\x91\x3a\x26\x2b\x7b\x4c\x9f\x67\x91\x9b\xab\x8b\xfb\x48\x3f\x20\xdf\xe3\xa9\xa2\xcd\xe5\xf5\x7d\x1c\xaf\xbc\xcb\x2f\xc9\x87\x24\xbc\x6a\x3a\xb7\xb7\x30\x48\xa3\x9a\x38\xca\x68\xd4\x2d\x18\x62\xf0\x4f\x01\x09\x16\x3b\xb4\x68\x1a\x9c\x5b\xbd\xd8\x5a\xb4\x96\x5b\x25\x5e\xaa\xbf\xf9\xb4\xce\x9e\xf6\xc8\x7e\xcd\xa1\x65\xff\x4d\xfe\x17\xd6\xa2\x63\x4b\x6f\x8b\xc4\x0c\xbf\x8b\x77\x01\x7f\x03\x00\x00\xff\xff\xfa\xfa\xbc\x74\xb5\x02\x00\x00" +var _stakingcollectionTestGet_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\xb1\x8e\xe2\x30\x10\xed\xfd\x15\xa3\x14\x28\x29\x2e\x34\xa7\x2b\x10\x77\xe8\x16\x89\x6a\x8b\xd5\xb2\x6c\x6f\x92\x49\xb0\x30\x9e\x68\x3c\x11\x8b\x56\xfc\xfb\x2a\x76\x14\x12\x11\x37\x96\x9f\xdf\xbc\x99\xf7\xc6\x5c\x1a\x62\x81\x9d\xa5\xeb\x5e\xf4\xd9\xb8\x7a\x4b\xd6\x62\x21\x86\x1c\x54\x4c\x17\x48\x66\xff\x12\x35\xaa\xfc\xa0\x33\x8e\xd9\xe1\xfd\x60\xb4\xae\x36\x47\x8b\x13\xd6\x18\x1b\x98\xaf\x54\x9c\xb1\x0c\x98\xef\x89\x63\x28\x51\x6a\xb9\x84\x83\xc7\x12\xc8\xd9\x1b\x54\xc4\x20\xe8\x05\x9a\x96\x1b\xf2\xe8\x41\x28\x02\x72\x42\xa8\x51\x40\x7a\xa9\xd6\x45\x43\xc6\x85\x2f\x1f\xdd\x40\x31\xd8\x51\x4a\x58\x3b\xaf\xc3\x23\xd5\x17\x6a\x9d\xac\xe0\xb0\x33\x5f\x7f\x7e\x67\xf0\xad\x14\x00\x40\xc3\xd8\x68\xc6\xd4\x9b\xda\x21\xaf\x40\xb7\x72\x4a\x5f\x88\x99\xae\x9f\xda\xb6\x98\xc1\xe2\x7f\x51\x74\xa5\x43\x49\x77\x2c\xca\xa8\xd3\x3b\x56\xf0\x17\xa2\x44\xee\x85\x58\xd7\x98\x1f\x83\xc8\x7a\x31\x1b\x75\xfe\x84\xfc\x4b\xbb\x70\x56\xf3\x5b\x7b\xa6\xef\x63\x97\x37\x2d\xa7\x6c\x98\xaa\x3b\x9b\x0d\x34\xda\x99\x22\x4d\xb6\xd4\xda\x12\x1c\x09\xc4\x51\x40\x03\x63\x85\x8c\xae\xc0\x90\xea\x6c\x6a\xc9\x54\x6e\xe2\xb8\x8f\x7e\xfd\x6b\xea\x3d\xaf\x51\xe2\x36\x87\x94\xe3\x9d\x3d\x02\x2b\xd1\x0b\xd3\xad\x97\x08\xf0\x5d\xdd\x15\xfc\x04\x00\x00\xff\xff\xc6\xbe\x85\xb6\xac\x02\x00\x00" func stakingcollectionTestGet_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5780,11 +5759,11 @@ func stakingcollectionTestGet_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/test/get_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xda, 0x38, 0xd6, 0x4, 0x2, 0xd9, 0xe5, 0x29, 0x51, 0x45, 0x1e, 0xec, 0x80, 0xe1, 0x46, 0x13, 0x81, 0x2e, 0x85, 0xac, 0xa2, 0xfa, 0xa0, 0xaa, 0x29, 0x45, 0x2b, 0x53, 0x5b, 0xc8, 0xfe, 0xc2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x72, 0xf3, 0xa0, 0xb7, 0xa9, 0x28, 0x84, 0x63, 0xc9, 0x3a, 0x84, 0x43, 0x16, 0xd4, 0xe, 0x5a, 0x3e, 0xb0, 0x91, 0xa4, 0x25, 0x42, 0x1a, 0xf0, 0x7e, 0xf, 0x1d, 0x75, 0x1b, 0x64, 0xa1, 0xc4}} return a, nil } -var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\xcd\x4e\xdb\x40\x10\xbe\xe7\x29\x06\x0e\xd4\x91\xc0\x54\xed\x2d\x82\xa2\x90\x50\x1a\x15\x11\x44\x68\xef\x13\xef\x38\xd9\xd6\xde\xb1\x76\xc7\x01\x5a\xf1\xee\x95\x7f\xd6\xc4\xd8\x2d\x51\xd5\xfa\x92\xd8\x1e\x7f\xfb\xfd\xcc\xec\xea\x34\x63\x2b\xf0\x31\xe1\xfb\x85\xe0\x77\x6d\x56\x13\x4e\x12\x8a\x44\xb3\x81\xd8\x72\x0a\x6f\x1f\x16\x77\xe3\xcf\xb3\xeb\xcb\xc9\xfc\xea\xea\x62\x72\x37\x9b\x5f\x8f\xa7\xd3\xdb\x8b\xc5\x62\x30\x38\x3e\x86\x3b\x8b\xc6\xc5\x64\x1d\x20\x5c\xb3\xa2\x29\x25\xb4\x42\x61\x0b\xbc\xfc\x46\x91\x54\x20\x68\x00\x73\x59\xb3\xd5\x3f\xca\xd2\x28\x62\xce\x8d\x14\x00\x68\x14\xa0\x52\x0e\x64\x4d\x2f\x10\x84\x01\x0d\xcb\x9a\x6c\xf9\x45\x6e\xc4\x41\xcd\x12\x9e\x69\x16\x20\x5a\x91\x11\x1d\x6b\x52\xb0\x7c\x2c\x91\x84\x61\xac\x94\x25\xe7\xc2\xc1\x40\x0a\x92\x58\x56\x07\x86\x15\xcd\xa6\x23\x58\x88\xd5\x66\x75\x08\xca\x2f\x57\x3c\xfc\x32\x33\xf2\xfe\xdd\x21\x08\x8f\xfc\xe7\x43\xf8\x39\x00\x00\x48\xa8\xd2\xd2\xb1\xe9\x96\xe2\x51\xa9\x2e\xe8\x75\x31\x7c\xfe\x3b\xbf\x37\x64\x87\x70\xd0\x5f\xd7\x79\xd2\x2c\x2b\xdc\x79\x37\xc1\x6c\xb4\x3b\x50\x89\x94\x59\xca\xd0\x52\x50\x5b\x59\x73\x3e\x67\x6b\xf9\xfe\x2b\x26\x39\x0d\xe1\x60\x5c\xbd\xf3\x9a\x8b\xab\xc8\x78\x4d\x3e\x80\xc2\x57\xa9\x23\xef\x49\xac\xce\x5c\x18\xd2\xdc\x09\xac\x71\x43\x80\xb0\xc1\x44\xab\x9e\xe4\x40\x1b\x60\xab\xa8\x4c\xda\x52\x44\x7a\x43\x5d\xd0\xb0\xa1\xa2\x63\x08\xf6\xfa\x35\x2b\x26\x57\x93\xff\x84\x1b\xea\x14\x04\x58\xa5\x39\x02\xe1\xe1\xb6\xbc\xd2\x19\x34\x3a\x0a\xf6\xa7\xe4\x44\x1b\x2c\x99\x79\xb9\xdb\x32\x7a\x04\x38\x12\xc8\xb3\x70\x7f\xd8\xe0\x3d\x0d\xb6\x9d\xbb\x24\x01\x04\x4b\x31\x59\x32\x51\xd9\x95\x85\xbe\xed\x59\xe8\x8f\xbd\xb8\x1c\x25\x71\xf8\xbb\x96\x83\x53\xcf\x31\x74\xc2\x16\x57\x14\x2e\xcb\x28\x4f\xfe\x47\x2b\x7e\x08\x0a\x1e\xa3\xfe\x7d\xa2\x5b\xbe\xa8\x18\xdd\xa0\xac\x87\x2d\xa7\xcf\xce\xbc\xd9\x13\xce\x13\x05\x86\x05\x2a\xda\x2f\x6d\xc2\xae\x31\x45\xbb\x14\xee\x65\x56\xa7\x68\x1f\x21\x77\x64\xdf\x38\x6f\xc3\xfe\xb0\xe3\x7c\x51\x7c\x93\x2f\x13\x1d\xd5\xad\x01\x1c\x57\xfe\xef\xd4\xcc\xc2\x21\x34\x90\xd5\x1c\x7a\x9c\x53\x58\x91\xd4\x37\x81\x70\x7b\xe9\x73\x2f\x28\xc2\x0c\x97\x3a\xd1\xf2\xe8\x83\xcf\x4a\x36\x90\x92\xac\x59\x39\xc0\x0d\xea\x04\x97\x09\x01\x57\xd2\xea\x21\xe8\x6b\x8b\xb0\xdd\x17\xfd\x7b\x02\x9c\x3e\x93\x0c\x9b\xe5\x35\xb9\x56\x0a\xbe\x53\x76\x4f\x7f\xc7\xc2\xca\xec\xbf\x89\x1d\xd3\x57\x63\xf7\xde\xb4\x22\xdf\x1a\x39\x7a\xa0\x28\x17\x6a\x6f\x5d\xb7\x94\x72\xdf\xa6\x52\x1d\x4b\xaf\xce\x62\xd8\xca\xdf\xb4\x10\x4e\x8e\xfe\x3c\xa1\xa1\x2d\xd7\x6e\x3e\x68\x4e\x9e\xea\xf7\xc5\xc9\xb3\x75\xd3\xee\xa6\x29\x65\xec\xb4\xf4\x1f\x8f\xff\xa2\x67\x42\x54\xaa\x01\x9d\x97\x1b\x78\x70\x72\xd4\x16\xbb\xe7\x9d\x7e\xfa\x15\x00\x00\xff\xff\x83\x0e\x4b\x39\x31\x08\x00\x00" +var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\xcd\x6e\xd3\x40\x10\xbe\xe7\x29\xa6\x39\x14\x5b\x6a\x5d\x09\x6e\x51\x4b\xd5\x36\x02\x7a\xa1\x55\x0b\xdc\x27\xde\x71\xbc\x60\xef\x58\xbb\xe3\x94\x82\xfa\xee\xc8\x6b\xaf\x1b\xc7\x86\x46\x08\x7c\x49\x6c\x8f\xbf\xfd\x7e\x66\x76\x75\x59\xb1\x15\x78\x57\xf0\xc3\xbd\xe0\x37\x6d\xd6\x57\x5c\x14\x94\x8a\x66\x03\x99\xe5\x12\xe6\x93\xef\xe6\xb3\xd9\xc9\x09\x7c\xb2\x68\x5c\x46\xd6\x01\xc2\x47\x56\xb4\xa4\x82\xd6\x28\x6c\x81\x57\x5f\x29\x95\x16\x01\x0d\x60\x2d\x39\x5b\xfd\xc3\x97\xa6\x29\x73\x6d\xa4\x01\x40\xa3\x00\x95\x72\x20\x39\xed\x20\x08\x03\x1a\x96\x9c\xac\xff\xa2\x36\xe2\xa0\xa3\x01\xcf\x3c\x1a\x10\xad\xc8\x88\xce\x34\x29\x58\x3d\x7a\x24\x61\xb8\x50\xca\x92\x73\xc9\x6c\x26\x0d\x49\xf4\xd5\x91\x61\x45\xd7\xcb\x05\xdc\x8b\xd5\x66\x7d\x04\x2a\x2c\xd7\x3c\xfc\x7c\x6d\xe4\xcd\xeb\x23\x10\x5e\x84\xcf\x63\xf8\x39\x03\x00\x28\xa8\xd5\x32\xf2\xe1\x8e\xb2\x85\x57\x17\x4d\xda\x94\x3c\xff\xbd\x79\x30\x64\x63\x38\x9c\xae\x1b\x3d\xe9\x97\x15\x1e\xbd\xbb\xc2\x6a\xb1\x3f\x90\x47\xaa\x2c\x55\x68\x29\xea\xac\xec\x38\x5f\xb2\xb5\xfc\xf0\x05\x8b\x9a\x62\x38\xbc\x68\xdf\x05\xcd\xcd\xd5\x64\x9c\x53\x08\xa0\xf1\x55\xba\xc8\x27\x12\xeb\x32\x17\x86\xb2\x76\x02\x39\x6e\x08\x10\x36\x58\x68\x35\x91\x1c\x68\x03\x6c\x15\xf9\xa4\x2d\xa5\xa4\x37\x34\x06\x4d\x7a\x2a\x3a\x83\xe8\x60\x5a\xb3\x62\x72\x1d\xf9\x0f\xb8\xa1\x51\x41\x84\x6d\x9a\x0b\x10\x8e\xb7\xe5\x79\x67\xd0\xe8\x34\x9a\x2f\xc9\x89\x36\xe8\x99\x05\xb9\xdb\x32\x26\x04\x38\x12\xa8\xab\x64\x1e\xf7\x78\x4f\xb3\x6d\xe7\xde\x93\x00\x82\xa5\x8c\x2c\x99\xd4\x77\x65\xa3\x6f\x7b\x16\xa6\x63\x6f\x2e\x47\x45\x96\xfc\xae\xe5\xe0\x2c\x70\x4c\x9c\xb0\xc5\x35\x25\x2b\x1f\xe5\xe9\xff\x68\xc5\xb7\x51\xc3\x63\x31\xbd\x49\x8c\xcb\xef\x5b\x46\xb7\x28\x79\x3c\x70\xfa\xfc\x3c\x98\x7d\xc5\x75\xa1\xc0\xb0\x40\x4b\x7b\xd7\x26\x1c\x1b\xd3\xb4\x4b\xe3\x5e\x65\x75\x89\xf6\x11\x6a\x47\xf6\x95\x0b\x36\xcc\xe3\x91\xf3\x4d\xf1\x6d\xbd\x2a\x74\xda\xb5\x06\x70\xd6\xfa\xbf\x57\x33\x0b\x27\xd0\x43\xb6\x73\x18\x70\xce\x60\x4d\xd2\xdd\x44\xc2\xc3\xa5\x2f\x83\xa0\x14\x2b\x5c\xe9\x42\xcb\x63\x08\xbe\xf2\x6c\xa0\x24\xc9\x59\x39\xc0\x0d\xea\x02\x57\x05\x01\xb7\xd2\xba\x21\x98\x6a\x8b\x64\xd8\x17\xd3\x7b\x02\x9c\x3d\x93\x4c\xfa\xe5\x35\xb9\x41\x0a\xa1\x53\xf6\x4f\x7f\xcf\xc2\xd6\xec\xbf\x89\x1d\xcb\x17\x63\x0f\xde\x0c\x22\xdf\x1a\x39\xfa\x4e\x69\x2d\x34\xdc\xba\xee\xa8\xe4\xa9\x4d\xa5\x3d\x96\x5e\x9c\xc5\x64\x90\xbf\x19\x20\x9c\x1e\xff\x79\x42\x13\xeb\xd7\xee\x3f\xe8\x4f\x9e\xf6\x77\xe7\xe4\xd9\xba\x19\x76\xd3\x92\x2a\x76\x5a\xa6\x8f\xc7\x7f\xd1\x33\x09\x2a\xd5\x83\xde\xf8\x0d\x3c\x3a\x3d\x1e\x8a\x3d\x08\x4e\x3f\xfd\x0a\x00\x00\xff\xff\x54\xf8\x55\x3e\x2e\x08\x00\x00" func stakingcollectionTransfer_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -5800,11 +5779,11 @@ func stakingcollectionTransfer_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/transfer_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf1, 0xb7, 0xb9, 0xcb, 0x3e, 0xc1, 0xaf, 0xb8, 0x76, 0x1c, 0xd2, 0xa0, 0xc0, 0xf6, 0xc2, 0xe3, 0x5f, 0x66, 0xd2, 0xd7, 0x35, 0xf8, 0x2c, 0x3e, 0x6, 0x85, 0xa3, 0x9f, 0x1d, 0x68, 0xe6, 0xea}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x83, 0xec, 0x8c, 0x84, 0x70, 0xc9, 0x5e, 0xfc, 0xb9, 0xf3, 0x21, 0x99, 0x5d, 0x9a, 0x65, 0x6a, 0xfc, 0xcb, 0xc8, 0x4f, 0x4d, 0x79, 0x9d, 0x9, 0x43, 0xed, 0x77, 0xec, 0xd9, 0x16, 0x2c, 0x33}} return a, nil } -var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\xcd\x4e\xfb\x46\x10\xbf\xe7\x29\x06\x0e\xd4\x96\xc0\xf4\x1c\x91\xa2\x90\x50\x1a\x95\x12\x44\x50\x2f\x55\x0f\x13\xef\x38\xde\xd6\xd9\xb1\x76\xc7\xa1\xb4\xe2\xdd\xab\xf5\xda\xf9\xb2\xdb\x70\xf8\xe3\x4b\x62\x7b\x76\xe6\xf7\xe5\x5d\xbd\x2e\xd9\x0a\xfc\x58\xf0\xdb\x42\xf0\x4f\x6d\x56\x13\x2e\x0a\x4a\x45\xb3\x81\xcc\xf2\x1a\xbe\xff\x6b\xf1\x3a\xfe\x79\xf6\xf4\x30\x99\x3f\x3e\xde\x4f\x5e\x67\xf3\xa7\xf1\x74\xfa\x72\xbf\x58\x0c\x06\xd7\xd7\xf0\x6a\xd1\xb8\x8c\xac\x03\x84\x27\x56\xe4\xbb\x90\x05\x5e\xfe\x41\xa9\x84\x0e\x68\x00\x2b\xc9\xd9\xea\xbf\xeb\xba\x34\x65\xae\x8c\xf8\xd5\x68\x14\xa0\x52\x0e\x24\xa7\xfd\xe5\xc2\x80\x86\x25\x27\x5b\x97\x57\x46\x1c\x34\xf8\x60\x07\xd0\x77\xd0\x8a\x8c\xe8\x4c\x93\x82\xe5\x7b\xdd\x46\x18\xc6\x4a\x59\x72\x2e\x19\x0c\xc4\xc3\xc3\xba\x3a\x32\xac\x68\x36\x1d\xc2\x42\xac\x36\xab\x4b\x10\x1e\xb6\x95\x31\xfc\x33\x00\x00\x28\x28\x60\xee\x68\xf1\x42\xd9\xb0\x66\x11\xf5\x4a\x95\xec\xfe\xce\xdf\x0c\xd9\x18\x2e\xfa\xeb\x3a\x4f\xb6\x63\x85\x3b\xef\x26\x58\x0e\x3f\xdf\xa8\xee\x54\x5a\x2a\xd1\x52\xd4\xa8\xd6\x60\xbe\x63\x6b\xf9\xed\x57\x2c\x2a\x8a\xe1\x62\x1c\xde\xb5\x9c\xfd\xe5\x8d\xcc\xa9\xd5\xda\x4b\x28\x8d\xaf\xc7\xce\x34\xc6\x0a\xc3\xba\x72\x02\x39\x6e\x08\x10\x36\x58\x68\xd5\xe3\x10\x68\x03\x6c\x55\x70\xd4\x52\x4a\x7a\x43\x47\x1d\x93\x2d\x08\x9d\x41\x74\xd6\xcf\x56\x31\xb9\x06\xf6\x4f\xb8\xa1\x4e\x41\x84\xc1\xc7\x21\x08\xc7\xfb\xc4\x6a\x4d\xd0\xe8\x34\x3a\x9f\x92\x13\x6d\xb0\x86\xd5\x12\xdd\xe7\xd0\x83\xde\x91\x40\x55\x26\xe7\xf1\xb6\xdf\xc7\x60\x5f\xb3\x07\x12\x40\xb0\x94\x91\x25\x93\xd6\xd1\xf3\xe4\xf6\xd3\xde\x6f\xb8\xbf\x1c\x15\x59\xf2\x5f\x61\x83\x51\x8b\x31\x71\xc2\x16\x57\x94\x2c\x6b\x13\x6f\xbe\x22\x84\x3f\x44\x1e\xc7\xb0\x7f\x1b\xe8\x96\x2f\x02\xa2\x67\x94\x3c\x3e\x50\xfa\xf6\xb6\x15\x7b\xc2\x55\xa1\xc0\xb0\x40\x80\x7d\x2c\x13\x76\x85\xf1\x59\xf1\xea\x95\x56\xaf\xd1\xbe\x43\xe5\xc8\x7e\xe7\x5a\x19\xce\xe3\x8e\xf2\xbe\xf8\xb9\x5a\x16\x3a\x6d\xa2\x01\x9c\x05\xfd\x4f\xc7\x58\x38\x81\x6d\xbf\xf0\xf9\xb5\x4d\x46\xb0\x22\x69\x6e\x22\xe1\xc3\xb9\x77\x2d\x9b\x14\x4b\x5c\xea\x42\xcb\x7b\xeb\x7a\x59\x43\x81\x35\x49\xce\xca\x01\x6e\x50\x17\xb8\x2c\x08\x38\xf0\x6a\xe2\xdf\x97\x89\xe4\x30\x14\xfd\x5b\x01\x8c\x76\x20\x93\xed\x78\x4d\xee\xc0\x82\x36\x26\x9f\xb7\xfe\x93\x85\x41\xe9\x2f\xf2\xbc\xd5\xa6\xdf\x6f\xef\xcf\x1a\xd3\x5c\x1b\x6a\xf8\xcf\x4c\xc6\x30\xfa\xff\x4f\x28\x59\x91\xfc\x72\xb0\xca\x45\xf1\x6f\xe1\x10\xf8\xfd\x24\x85\xd5\x6e\xe6\x36\x4f\xda\x4f\xcd\x38\x84\xc9\x95\x94\x86\x73\xc7\xb7\x84\xd9\xf4\x28\xa1\x2f\xb4\xe6\xce\x66\x17\x0e\xc4\x93\x7b\x44\x72\x40\xdd\xec\x96\xdf\x5c\x9d\xe0\x6c\xeb\xa9\x7e\xe0\xf6\xb8\x0b\xbf\x87\xe0\xa6\x54\xb2\xd3\xd2\x73\xec\x7e\x8b\xa4\x26\xa8\x94\xef\x3a\xaf\xcf\x8a\xe8\xe6\x6a\x8f\xc2\xd9\x65\x8f\x95\xc3\x9e\x67\x21\x65\x1f\x83\x8f\x7f\x03\x00\x00\xff\xff\x48\xcc\xbf\x2b\xa3\x08\x00\x00" +var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x4f\x53\xdb\x3a\x10\xbf\xe7\x53\x2c\x39\xf0\xec\x19\x30\xf7\x0c\x79\x0c\x90\x79\xef\x71\x78\x85\x81\x4e\x2f\x9d\x1e\x36\xd6\x3a\x56\xeb\x68\x3d\xd2\x3a\x0c\xed\xf0\xdd\x3b\xb2\xec\x24\x8e\xd5\x86\x43\xf1\x05\x62\xad\x76\x7f\xff\x2c\xe9\x75\xcd\x56\xe0\x9f\x8a\x9f\x9f\x04\xbf\x69\xb3\xba\xe5\xaa\xa2\x5c\x34\x1b\x28\x2c\xaf\x61\x1a\x5d\x9b\x4e\x26\x17\x17\xf0\xd1\xa2\x71\x05\x59\x07\x08\x1f\x58\x91\x2f\x23\x0b\xbc\xfc\x4a\xb9\x84\xed\x68\x00\x1b\x29\xd9\xea\xef\x6d\x5d\x9e\x33\x37\x46\xfc\x6e\x34\x0a\x50\x29\x07\x52\xd2\xfe\x76\x61\x40\xc3\x52\x92\x6d\xcb\x1b\x23\x0e\x3a\x00\xb0\x43\xe0\x3b\x68\x45\x46\x74\xa1\x49\xc1\xf2\xa5\x6d\x23\x0c\xd7\x4a\x59\x72\x2e\x9b\x4c\xc4\xc3\xc3\xb6\x3a\x31\xac\xe8\x6e\x31\x83\x27\xb1\xda\xac\xce\x40\x78\xd6\x57\xa6\xf0\x63\x02\x00\x50\x51\xc0\x3c\x22\xfb\x48\xc5\xac\x65\x91\x44\xb5\xc8\x76\xff\xde\x3f\x1b\xb2\x29\x9c\xc6\xeb\x46\x6f\xb6\x63\x85\x47\x6b\xb7\x58\xcf\xde\xde\xa8\xed\x54\x5b\xaa\xd1\x52\xd2\xa9\xd6\x61\xbe\x61\x6b\xf9\xf9\x13\x56\x0d\xa5\x70\x7a\x1d\xd6\x7a\xce\xfe\xf1\x46\x96\xd4\x6b\xed\x25\x94\xce\xd7\x43\x67\x3a\x63\x85\x61\xdd\x38\x81\x12\x37\x04\x08\x1b\xac\xb4\x8a\x38\x04\xda\x00\x5b\x15\x1c\xb5\x94\x93\xde\xd0\x41\xc7\x6c\x0b\x42\x17\x90\x9c\xc4\xd9\x2a\x26\xd7\xc1\xfe\x0f\x37\x34\x2a\x48\x30\xf8\x38\x03\xe1\x74\x9f\x58\xab\x09\x1a\x9d\x27\xd3\x05\x39\xd1\x06\x5b\x58\x3d\xd1\x7d\x0e\x11\xf4\x8e\x04\x9a\x3a\x9b\xa6\xdb\x7e\xaf\x93\x7d\xcd\xfe\x25\x01\x04\x4b\x05\x59\x32\x79\x1b\x3d\x4f\x6e\x3f\xed\x71\xc3\xfd\xe3\xa8\x2a\xb2\x5f\x85\x0d\xe6\x3d\xc6\xcc\x09\x5b\x5c\x51\xb6\x6c\x4d\xbc\x7c\x8f\x10\xfe\x9d\x78\x1c\xb3\xf8\x19\x30\x2e\x7f\x0a\x88\x1e\x50\xca\x74\xa0\xf4\xd5\x55\x2f\xf6\x2d\x37\x95\x02\xc3\x02\x01\xf6\xa1\x4c\x38\x16\xc6\x67\xc5\xab\x57\x5b\xbd\x46\xfb\x02\x8d\x23\xfb\x97\xeb\x65\x98\xa6\x23\xe5\x7d\xf1\x43\xb3\xac\x74\xde\x45\x03\xb8\x08\xfa\x1f\x8f\xb1\x70\x06\xdb\x7e\xe1\xf3\xeb\x9b\xcc\x61\x45\xd2\xfd\x48\x84\x87\x73\x6f\x7a\x36\x39\xd6\xb8\xd4\x95\x96\x97\xde\xf5\xba\x85\x02\x6b\x92\x92\x95\x03\xdc\xa0\xae\x70\x59\x11\x70\xe0\xd5\xc5\x3f\x96\x89\x6c\x18\x8a\xf8\x51\x00\xf3\x1d\xc8\x6c\x3b\x5e\x93\x1b\x58\xd0\xc7\xe4\xed\xd6\xbf\xb1\x30\x28\xfd\x4e\x9e\xf7\xda\xc4\xfd\xf6\xfe\xac\x31\x2f\xb5\xa1\x8e\xff\x9d\x29\x18\xe6\xbf\xff\x84\xb2\x15\xc9\xff\x83\x5d\x2e\x49\x3f\x87\x4b\xe0\xcb\x51\x0a\xab\xdd\xcc\x6d\x9e\xb4\x9f\x5a\x70\x08\x93\xab\x29\x0f\xf7\x8e\x6f\x09\x77\x8b\x83\x84\x3e\xd2\x9a\x47\x87\x5d\xb8\x10\x8f\x9e\x11\xd9\x80\xba\xd9\x6d\xbf\x3c\x3f\xc2\xd9\xb6\x53\xfd\xc0\xed\x75\x17\xfe\x0e\xc1\x2d\xa8\x66\xa7\x25\x72\xed\xfe\x89\xa4\x66\xa8\x94\xef\x7a\xdf\xde\x15\xc9\xe5\xf9\x1e\x85\x93\xb3\x88\x95\xb3\xc8\xbb\x90\xb2\xd7\xc9\xeb\xcf\x00\x00\x00\xff\xff\x2d\x4d\x77\x9d\xa0\x08\x00\x00" func stakingcollectionTransfer_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5820,11 +5799,11 @@ func stakingcollectionTransfer_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/transfer_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0xdc, 0xc4, 0xb8, 0xac, 0xab, 0x45, 0x1, 0x3c, 0xe8, 0xe9, 0xae, 0x8d, 0x58, 0x6, 0xb, 0x7c, 0x9e, 0x82, 0x58, 0x7d, 0x32, 0x19, 0x62, 0x96, 0x4b, 0x9e, 0x1f, 0xcf, 0xe, 0x15, 0xa5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x5d, 0xe5, 0x5c, 0x17, 0xee, 0x42, 0xc6, 0x72, 0x3f, 0x5d, 0x21, 0xbf, 0xd2, 0x37, 0x7a, 0x97, 0x58, 0x8a, 0x4, 0x83, 0x39, 0x9c, 0x7b, 0x7e, 0x8e, 0xfa, 0xed, 0xbe, 0x18, 0x27, 0xe}} return a, nil } -var _stakingcollectionUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\x3d\x8f\xda\x40\x10\xed\xfd\x2b\x9e\xae\xb8\x98\xc6\xa4\x46\x49\x4e\x0e\x5c\x22\x14\x74\x44\xf8\x94\x7e\xb3\x8c\x61\xc5\xb2\xe3\xcc\xce\x8a\x8b\xa2\xfb\xef\x91\x59\xcc\x15\xb8\x48\x93\x29\xf6\x73\x3e\xde\xcc\x7b\xee\xd8\xb1\x28\xbe\x78\x3e\x35\x6a\x0e\x2e\xec\xe6\xec\x3d\x59\x75\x1c\xd0\x0a\x1f\xf1\xfe\xa5\x79\xae\xbf\x2d\x9f\xbe\xce\xd7\xab\xd5\xe3\xfc\x79\xb9\x7e\xaa\x17\x8b\xcd\x63\xd3\x14\xc5\x74\x3a\xc5\x86\x7e\x25\x8a\x1a\xa1\x8c\x14\xa2\x9a\x03\xa1\x5e\xad\xa0\x7c\xa0\x10\xd1\xb2\x40\xf7\x84\xd8\x91\x75\xad\xa3\x2d\x02\x6f\x09\x2c\xd8\x92\xa7\x9d\x51\x16\xb8\x90\x5d\x32\x00\xd8\x2b\x82\xa2\x50\x31\x21\x9a\xf3\xa5\xec\x03\x97\x8b\x19\x1a\x15\x17\x76\x13\xfc\x29\x00\xe0\xbc\x78\xd2\x21\xfc\x0d\xff\x86\xda\x19\x4c\xd2\x7d\x39\xda\x5e\xf5\x76\x5c\x9f\x02\xc9\x04\xf7\xe3\x7e\x37\x2f\xc5\xb9\x66\x27\xd4\x19\xa1\xd2\x58\xcb\x29\xe8\xa5\xd4\x67\x16\xe1\xd3\x0f\xe3\x13\x4d\x70\x5f\xe7\xbf\x01\x6b\x6f\x91\x7c\x5b\x8d\x61\xc5\x47\x5c\x52\x55\x51\x59\xcc\x8e\xaa\x9f\xe7\x64\x1f\xfe\x47\x0f\x9f\xca\x9e\xdd\xd9\x38\xf3\xb7\xee\x4d\x46\xf4\xdd\xe8\x7e\x72\x6d\xa5\xb7\x87\x07\x74\x26\x38\x5b\xde\xcd\x39\xf9\x9e\x5d\x45\x86\x0d\x03\xa1\x96\x84\x82\xa5\x5e\x1c\x06\xb7\x0a\xbb\x30\xdf\x89\x3b\x1a\xf9\x8d\x14\x49\xde\xc5\x61\x0c\x77\xb9\xd2\x6b\x1e\x37\xbd\x90\x4d\x4a\xff\x32\xc9\xea\xa2\xc3\xda\xfb\xab\x68\xf2\x3e\x64\x7c\x2d\xfe\x06\x00\x00\xff\xff\x2b\xd3\x78\xad\xf9\x02\x00\x00" +var _stakingcollectionUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\x4d\xaf\xd3\x30\x10\xbc\xe7\x57\x8c\x72\x78\x24\x97\xf4\x5e\x01\x4f\xa5\x08\x09\xa9\x12\xa8\x95\xb8\x1b\x77\x93\x5a\x75\xbd\x61\xbd\x56\x41\xa8\xff\x1d\x25\x4e\xda\x43\x73\xe0\xf2\x7c\xc8\x87\xf7\x63\x66\x77\xc6\x5d\x7a\x16\xc5\x17\xcf\xd7\x83\x9a\xb3\x0b\xdd\x96\xbd\x27\xab\x8e\x03\x5a\xe1\x0b\xca\xc5\x58\x59\x14\xab\xd5\x0a\x7b\xfa\x95\x28\x6a\x84\x32\x52\x88\x6a\xce\x84\xcd\x6e\x07\xe5\x33\x85\x88\x96\x05\x7a\x22\xc4\x9e\xac\x6b\x1d\x1d\x11\xf8\x48\x60\xc1\x91\x3c\x75\x46\x59\xe0\x42\x4e\xc9\x08\xb0\x77\x88\xa2\x50\x31\x21\x9a\xf1\xa7\x1a\x0a\xbf\x7e\x5e\xe3\xa0\xe2\x42\x57\xe3\x6f\x01\x00\xe3\xc3\x93\xce\xe5\x0f\x82\x7b\x6a\xd7\x30\x49\x4f\xd5\x22\xff\xe6\xf1\xf9\xed\x1a\x48\x6a\xbc\x2c\xe7\x3d\xdd\x14\x23\x66\x2f\xd4\x1b\xa1\xca\x58\xcb\x29\xe8\x04\xf5\x89\x45\xf8\xfa\xc3\xf8\x44\x35\x5e\x36\x39\x36\x73\x1d\x4e\x24\xdf\x36\x4b\x5c\xf1\x01\x53\xab\x26\x2a\x8b\xe9\xa8\xf9\x39\x36\x7b\xff\x16\x33\x7c\xac\x06\x69\xd7\xcb\xb2\x3f\xa7\x1f\x32\xa3\xef\x46\x4f\xf5\x7d\x94\xe1\xbc\xbe\xa2\x37\xc1\xd9\xaa\xdc\x72\xf2\x83\xba\x8a\x4c\x1b\x06\x42\x2d\x09\x05\x4b\x83\x39\x0c\x9e\xed\x35\x29\xdf\x8b\xbb\x18\xf9\x83\x14\x49\xde\xc5\x79\x0d\x65\x46\xba\xe5\x75\xd3\x6f\xb2\x49\xe9\x7f\x36\xd9\x4c\x3e\xdc\x78\x7f\x37\x4d\x7e\xcf\x1d\x6f\xc5\xbf\x00\x00\x00\xff\xff\x0c\xba\x48\x82\xf6\x02\x00\x00" func stakingcollectionUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -5840,11 +5819,11 @@ func stakingcollectionUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc0, 0x88, 0xd9, 0xcd, 0x9b, 0x59, 0xf7, 0x9f, 0xb1, 0x33, 0x7b, 0xa2, 0x3d, 0x65, 0x26, 0x33, 0x88, 0x1e, 0xba, 0xeb, 0x8c, 0xfc, 0x5, 0x61, 0xd3, 0x24, 0xea, 0xb0, 0x28, 0x95, 0xa1, 0x50}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7c, 0xca, 0x8a, 0xc8, 0xf3, 0x52, 0x88, 0x5d, 0x94, 0xa8, 0xb5, 0xc9, 0x3b, 0x48, 0x3e, 0x46, 0x50, 0xcb, 0xf4, 0x7d, 0x65, 0x39, 0xd5, 0xb2, 0x99, 0xbf, 0xc6, 0xa4, 0xd7, 0xaa, 0x4e, 0xa}} return a, nil } -var _stakingcollectionUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x6f\xba\x50\x0c\xbe\xf3\x57\x34\x1e\xfc\x41\xf2\x0b\xee\x6c\xb6\x19\x86\x6e\x31\x33\xba\x88\xd9\xbd\x83\x02\x2f\xc3\xf7\x48\x5f\x09\x2e\x8b\xff\xfb\x02\x88\x66\x93\xc3\x2e\xeb\x01\x9a\xb6\xaf\xdf\xd7\xf6\x53\xfb\xd2\xb0\xc0\x63\x61\xea\x48\xf0\x5d\xe9\x2c\x34\x45\x41\xb1\x28\xa3\x21\x65\xb3\x87\x9b\x43\xb4\x0b\x9e\x97\xeb\xa7\x70\xb3\x5a\x2d\xc2\xdd\x72\xb3\x0e\xe6\xf3\xed\x22\x8a\x1c\x67\x32\x99\x40\x98\xa3\xce\xc8\x82\xe4\x04\x9a\xa4\x36\xdc\x74\x01\x4c\x12\x26\x6b\x21\x35\xdc\xa6\x6c\x49\xb1\x4a\x15\x25\xa0\x4d\x42\x8e\x23\x8c\xda\x62\x8b\xe3\x36\x91\xe5\x7c\x0a\x91\xb0\xd2\xd9\x7f\xd0\x54\x07\xdd\xf3\x3e\xe6\xc1\xa7\x03\x00\xd0\x7e\x0a\x12\xb0\x3f\xc9\x6e\x29\x9d\x02\x56\x92\xbb\x83\xb3\xf8\x17\x77\x53\x6b\x62\x0f\xc6\xc3\x75\x57\x11\xa7\xc5\x2c\x99\x4a\x64\x72\x31\x8e\x4d\xa5\xe5\x04\xf5\x60\x98\x4d\xfd\x8a\x45\x45\x1e\x8c\x83\x2e\xd7\x73\x6d\xcc\x52\x91\xfa\x43\x5c\xe1\x0e\x4e\xad\x7c\x2b\x86\x31\x23\xff\xad\x6d\x76\xfb\x17\x33\xdc\xbb\xcd\x29\xa7\xc3\x67\xbe\x2e\x8f\x3a\x46\x2f\x28\xb9\x77\x1e\xa5\xb1\xd9\x0c\x4a\xd4\x2a\x76\x47\xa1\xa9\x8a\xe6\x94\x02\x1d\x6d\x40\x60\x4a\x89\x49\xc7\x04\x62\x00\xe1\x5a\x4e\x4a\xb7\x4a\x28\x59\xed\x91\x3f\xa0\xb2\xc4\xff\x6c\xbf\x86\x51\x87\x74\xec\xd6\x4d\x07\x8a\x2b\xa1\xdf\x6c\xd2\xaf\xca\x04\x85\xd6\x67\xe9\x9d\xa4\x73\x56\x55\xf7\xff\xae\xaa\x8b\xdf\xc3\x1e\x9d\xaf\x00\x00\x00\xff\xff\x92\x19\x8f\x80\x0b\x03\x00\x00" +var _stakingcollectionUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x4e\xe3\x40\x0c\xbd\xe7\x2b\x9e\x72\xe8\x26\xd2\x2a\xbd\x57\xbb\x54\xa5\x08\x89\x0b\x20\x2a\x71\x37\x89\x93\x8c\x48\x67\x22\x8f\xa3\x80\x50\xff\x1d\x25\xd3\xb4\x82\xe6\xc0\x05\x1f\x12\xcb\xf6\xf8\x3d\xdb\xcf\xec\x5b\x27\x8a\xdb\xc6\xf5\x3b\xa5\x57\x63\xab\xad\x6b\x1a\xce\xd5\x38\x8b\x52\xdc\x1e\xf1\x6c\x2e\x8e\xa2\xe5\x72\x89\x6d\x4d\xb6\x62\x0f\xad\x19\x96\xb5\x77\x32\x94\x81\x8a\x42\xd8\x7b\x94\x4e\xc6\x94\x6f\x39\x37\xa5\xe1\x02\xd6\x15\x1c\x45\x2a\x64\x3d\x8d\x8d\x92\x21\x72\x77\xb3\xc2\x4e\xc5\xd8\xea\x2f\x2c\xf7\x9b\xf0\x7c\x8a\xa5\xf8\x88\x00\x60\xfc\x34\xac\xf0\xdf\xd9\x3c\x71\xb9\x02\x75\x5a\x27\xb3\x64\xb3\xb3\xfb\xd0\x5b\x96\x14\x8b\xf9\xba\x8b\x48\x34\x62\xb6\xc2\x2d\x09\x27\x94\xe7\xae\xb3\x7a\x84\xba\x76\x22\xae\x7f\xa6\xa6\xe3\x14\x8b\x4d\xc8\x4d\x5c\x07\xf3\xdc\x94\xd9\x1c\x57\xfc\xc7\xb1\x55\xe6\xd5\x09\x55\x9c\xbd\x8c\xcd\xfe\xfd\xc6\x0c\x57\xc9\x70\xc7\xd5\xfc\x8d\x2f\xcb\x77\x81\xd1\x23\x69\x9d\x9e\x46\x19\x6c\xbd\x46\x4b\xd6\xe4\x49\xbc\x75\x5d\x33\x9c\x52\x11\x68\x83\x20\x5c\xb2\xb0\xcd\x19\xea\x40\xb8\xd4\x92\xb1\xa3\x12\x5a\x31\x7b\x92\x77\x74\x9e\xe5\x8f\x9f\xd6\x10\x07\xa4\x43\x58\x37\xbf\x71\xde\x29\xff\x64\x93\x59\xd7\x16\xa4\x7c\x7f\x92\xde\x51\x3a\x27\x55\x85\xff\x57\x55\x9d\xfd\x09\xf6\x10\x7d\x06\x00\x00\xff\xff\xf5\xc0\xe1\x03\x08\x03\x00\x00" func stakingcollectionUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -5860,11 +5839,11 @@ func stakingcollectionUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x23, 0xe6, 0xfa, 0x51, 0x84, 0x12, 0xe3, 0xbb, 0xff, 0xd1, 0xdb, 0x75, 0xb2, 0xc5, 0x1, 0xc2, 0x69, 0x28, 0xc3, 0x4d, 0x54, 0xb, 0x85, 0x69, 0x3a, 0x17, 0x9, 0x8b, 0xeb, 0x4b, 0xf0, 0xc1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcf, 0x19, 0xee, 0xbd, 0xf6, 0xbe, 0xd2, 0x9d, 0x85, 0x71, 0xd0, 0xad, 0xf4, 0xa7, 0xf2, 0x23, 0xe5, 0xd4, 0x8f, 0xd5, 0xa8, 0x89, 0x1f, 0x90, 0x22, 0x4a, 0x2d, 0xe3, 0xb8, 0xeb, 0x86, 0xf1}} return a, nil } -var _stakingcollectionWithdraw_from_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6f\xd3\x40\x10\x85\xef\xfe\x15\xa3\x1e\x4a\x22\x21\x87\x03\xe2\x10\x01\x55\x48\x1a\x14\x51\x1a\x14\x07\xee\xc3\x7a\x12\xaf\xb2\xde\x31\xb3\xb3\x38\x15\xea\x7f\x47\xf6\xc6\xad\x44\x72\xe0\xd2\x3d\x78\x2d\x7b\x76\xe6\xbd\xb7\x9f\xad\x1b\x16\x85\xa5\xe3\xb6\x50\x3c\x58\xbf\x9f\xb3\x73\x64\xd4\xb2\x87\x9d\x70\x0d\x6f\x8e\xc5\x76\xf6\x65\x75\xff\x79\xbe\xbe\xbb\xbb\x9d\x6f\x57\xeb\xfb\xd9\x62\xb1\xb9\x2d\x8a\x2c\x9b\x4c\x26\xb0\xa1\x5f\x91\x82\x82\x32\xb4\x56\xab\x52\xb0\x05\xe5\x03\xf9\x90\xce\x6b\x45\x50\xa3\xa9\xac\x27\x40\x63\x38\x7a\xed\xcf\x6d\x2b\x1a\xea\x50\x08\x30\x2a\xd7\xa8\xd6\xa0\x73\x0f\x50\x52\xc3\xc1\x2a\x95\x5d\xdb\xae\x43\xf4\x8e\xcd\x81\xca\xa1\x05\xfc\xc6\xe8\x34\xcb\x54\xd0\x07\xec\xe5\x8e\x3c\x97\xb4\x5a\x4c\xa1\x50\xb1\x7e\xff\x1a\xb0\xee\x2a\xa7\xf0\x7d\x69\x8f\xef\xde\x8e\xe1\x4f\x06\x00\xd0\x3f\x1c\x29\x84\x7f\xfd\x6e\x68\x37\xed\x74\x54\xa3\x8b\x71\xe4\xcf\xaf\xeb\xd6\x93\x8c\xe1\xfa\x72\xdd\xd9\x97\xac\x9f\xd9\x08\x35\x28\x34\x3a\x39\x38\x8d\xfa\xc4\x22\xdc\xfe\x40\x17\x69\x0c\xd7\xb3\xf4\x6f\xd0\xda\xad\x40\x6e\x97\x5f\xd2\x0a\x1f\x86\x30\xf2\xa0\x2c\xb8\xa7\xfc\x67\xdf\xec\xfd\x4b\x78\xf8\x38\xea\x6e\x73\x7a\x99\x94\xf3\xf2\x22\x29\xfa\x86\x5a\x8d\x9f\xac\x74\xeb\xe6\x06\x1a\xf4\xd6\x8c\xae\xe6\x1c\x5d\x09\x9e\x15\x92\x6c\x40\x10\xda\x91\x90\x37\x1d\x19\x80\x70\x4e\xa4\xf5\x3d\x0d\x8d\xd8\x1a\xe5\x01\x62\x20\x79\x15\x86\x18\xae\xd2\xa4\xc7\x14\x37\x1d\xc9\x44\xa5\xff\x49\x32\x1f\xc0\x5d\x0a\xd7\x5f\x13\xab\xa7\x9b\x78\x82\x2a\xed\xcf\x50\xa5\x7d\x98\xf8\x98\xfd\x0d\x00\x00\xff\xff\xb5\x4f\x35\x21\x49\x03\x00\x00" +var _stakingcollectionWithdraw_from_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xc1\x8e\xd4\x30\x0c\x86\xef\x7d\x0a\xab\x87\xa5\x95\x50\xe7\x82\x38\x54\xc0\x0a\x16\x8d\xc4\x01\x81\x76\x80\xbb\x49\xdd\x69\x34\x69\x5c\x1c\x87\xee\x0a\xed\xbb\xa3\x34\xd3\x5d\x89\xe9\x81\xcb\xe6\xd0\x54\x89\x63\xff\xbf\xfd\xd9\x71\x62\x51\xd8\x3b\x9e\x0f\x8a\x27\xeb\x8f\x37\xec\x1c\x19\xb5\xec\xa1\x17\x1e\xa1\xdc\xbc\x2b\x8b\x62\xb7\xdb\xc1\x2d\xfd\x8a\x14\x14\x94\x61\xb6\x3a\x74\x82\x33\x28\x9f\xc8\x87\xfc\x58\x07\x82\x11\xcd\x60\x3d\x01\x1a\xc3\xd1\xeb\xf2\xee\xdb\x40\x6b\x1c\x0a\x01\x46\xe5\x11\xd5\x1a\x74\xee\x1e\x3a\x9a\x38\x58\xa5\x2e\xa5\x4d\x19\xa2\x77\x6c\x4e\xd4\xad\x29\xe0\x37\x46\xa7\x45\xa1\x82\x3e\xe0\xa2\xa7\xf2\xdc\xd1\xa7\x8f\x2d\x1c\x54\xac\x3f\xbe\x04\x1c\x53\x64\x0b\xdf\xf7\xf6\xee\xf5\xab\x1a\xfe\x14\x00\x00\xcb\xc7\x91\x42\xf8\xd7\xd0\x2d\xf5\x6d\xd2\x31\x54\x9b\x7e\x9b\xa7\xdf\x2f\xb3\x27\xa9\xe1\x6a\x3b\xee\xe2\xa4\x58\x6a\x4e\x42\x13\x0a\x55\x67\x07\xe7\x52\x1f\x58\x84\xe7\x1f\xe8\x22\xd5\x70\xf5\x3e\xdf\xad\x5a\xd3\x0a\xe4\xfa\x66\x4b\x2b\xbc\x5d\x9b\xd1\x04\x65\xc1\x23\x35\x3f\x97\x64\x6f\x9e\xc3\xc3\xbb\x2a\x4d\xb3\xdd\xc6\xe4\x32\xfc\x90\x15\x7d\x45\x1d\xea\x47\x2b\x69\x5d\x5f\xc3\x84\xde\x9a\xaa\xbc\xe1\xe8\x3a\xf0\xac\x90\x65\x03\x82\x50\x4f\x42\xde\x24\x32\x00\xe1\x12\x47\xeb\x17\x1a\x26\xb1\x23\xca\x3d\xc4\x40\xf2\x22\xac\x6d\x28\x73\xa5\x87\xdc\x6e\xba\x23\x13\x95\xfe\xa7\x93\xcd\x0a\xee\x5e\x78\xfc\x9c\x59\x3d\x4f\xe2\x11\xaa\xbc\x3f\x41\x95\xf7\xb5\xe2\x43\xf1\x37\x00\x00\xff\xff\x3e\x13\xf0\x11\x46\x03\x00\x00" func stakingcollectionWithdraw_from_machine_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -5880,11 +5859,11 @@ func stakingcollectionWithdraw_from_machine_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_from_machine_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0x3b, 0xc9, 0x9c, 0x4c, 0x41, 0x9c, 0x7c, 0x5, 0x22, 0x96, 0x35, 0x24, 0x23, 0x96, 0x41, 0x83, 0x79, 0x89, 0x8f, 0x73, 0x68, 0x2f, 0xcd, 0x3, 0xbe, 0xa6, 0x3b, 0xa1, 0x7e, 0x49, 0x84}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x79, 0x73, 0xe2, 0xa4, 0xc3, 0x56, 0x8, 0x7c, 0xae, 0x27, 0x26, 0x4d, 0x17, 0x2d, 0xf2, 0xd5, 0xe4, 0x6e, 0x23, 0xa6, 0x6c, 0x17, 0xd, 0xf2, 0xe, 0x35, 0xdb, 0x65, 0x31, 0x32, 0xcb, 0x3c}} return a, nil } -var _stakingcollectionWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x8f\x12\x41\x10\xbd\xcf\xaf\x78\xd9\xc3\x0a\x09\x01\xa3\xc6\x03\x51\x09\xc2\xae\x21\x6e\x16\xc3\xb0\xde\xcb\x99\x1a\xe8\xd0\x74\x8f\x35\x35\x0e\xc4\xec\x7f\x37\x3d\x1f\xb0\x11\x0e\x5e\xec\x03\xcd\xf4\xd4\xbc\x8f\xea\x57\x66\x9f\x7b\x51\xdc\x5b\x5f\xc5\x4a\x3b\xe3\x36\x33\x6f\x2d\x27\x6a\xbc\x43\x26\x7e\x8f\xd7\x87\x78\x3d\xfd\xba\x78\xfc\x32\x5b\x3e\x3c\xdc\xcd\xd6\x8b\xe5\xe3\x74\x3e\x5f\xdd\xc5\x71\x14\x8d\x46\x23\xac\xf8\x67\xc9\x85\x42\x3d\x2a\xa3\xdb\x54\xa8\x82\x70\x45\x92\x72\x0a\xf5\x3b\x76\x05\x32\x2f\xd0\x2d\xa3\xc8\x39\x31\x99\xe1\x14\xce\xa7\x0c\x2f\x48\xd9\xf2\x86\xd4\x0b\x8c\x6b\x4a\x1a\x15\x48\x4e\x32\x6a\x96\xf5\x96\x3b\x30\x12\x06\x95\xea\xf7\xa4\x26\x21\x6b\x8f\x48\x39\xf7\x85\xd1\x9a\xaf\x06\x29\x9d\xf5\xc9\x8e\x53\x50\x92\xf8\xd2\x29\x7e\x51\x69\x15\x99\x91\x42\x07\x35\xde\xd4\xa5\xa1\xd2\x81\xdc\x11\x6d\xf1\x0b\xfc\x33\xa2\x71\x2d\xe6\x35\xc4\x28\x52\x21\x57\x50\xad\xb3\x17\x3c\x2d\xe6\x63\xc4\x2a\xc6\x6d\x06\x67\x6f\xe1\xf0\x69\xe1\xf4\xed\x9b\xc9\x00\xb4\x0f\xdf\x8f\xf1\x74\x6f\x0e\xef\xdf\xf5\xf1\x3b\x02\x80\xfa\xc7\xb2\x76\xfe\xcf\xb7\xb0\xe2\x6c\x1c\xfc\x6e\x7b\x57\x2f\x69\x78\xfe\xbb\xac\x1c\x4b\x1f\xb7\xd7\xeb\x2e\x4e\xa2\x9a\x33\x17\xce\x49\xb8\xd7\xfa\x6a\xa9\x3e\x7b\x11\x5f\x7d\x27\x5b\x72\x1f\xb7\xd3\xe6\x5d\xa7\x35\xac\x82\x6d\x36\xbc\xa6\x15\x1f\xbb\x16\x0d\x0b\xf5\x42\x1b\x1e\xfe\xa8\xc1\x3e\xfc\x0f\x0f\x9f\x7a\x21\xa3\xe3\xeb\xf9\xbd\x2c\x8f\x1b\x45\xdf\x48\xb7\xfd\x93\x95\xb0\x26\x13\xe4\xe4\x4c\xd2\xbb\x99\xf9\xd2\x86\x78\x2a\x1a\xd9\x20\x08\x67\x2c\xec\x92\x90\x40\x10\x2e\xe7\xa4\x8d\x6e\x2e\x66\x4f\x72\x44\x59\xb0\xbc\x2a\xba\x36\xdc\x34\x4c\xcf\x4d\xbb\xf9\xc0\x49\xa9\xfc\x2f\x9d\x1c\x76\xe3\xb4\x6a\xa7\x69\x5d\xe7\xf3\x14\xb3\x66\xff\x2b\x66\x2f\x1e\xce\x51\x6b\xf6\x4e\xc7\x73\xf4\x27\x00\x00\xff\xff\x45\xf4\x6f\xf1\xf5\x03\x00\x00" +var _stakingcollectionWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x8f\xd3\x3c\x10\xbe\xe7\x57\x3c\xea\x61\xdf\x56\xaa\x5a\xe9\x05\x71\xa8\x80\x6a\x59\xb4\xd2\x9e\x40\xed\x2e\xf7\xc1\x99\xb4\x56\x1d\x3b\x8c\x27\x64\x2b\xb4\xff\x1d\x39\x1f\xcd\x8a\xe6\xc0\x05\x1f\xea\xc6\x9e\x3c\x1f\x93\x67\x6c\x59\x05\x51\xdc\xbb\xd0\xec\x95\x4e\xd6\x1f\xee\x82\x73\x6c\xd4\x06\x8f\x42\x42\x89\xd9\xe4\xdd\x2c\xcb\xd6\xeb\x35\x76\xfc\xa3\xe6\xa8\xd0\x80\xc6\xea\x31\x17\x6a\x20\xdc\x90\xe4\x9c\x43\xc3\x89\x7d\x44\x11\x04\x7a\x64\xc4\x8a\x8d\x2d\x2c\xe7\xf0\x21\x67\x04\x41\xce\x8e\x0f\xa4\x41\x60\x7d\x57\xd2\xd1\xc0\x5c\x78\x5a\x96\xc7\x23\x0f\x60\x24\x0c\xaa\x35\x94\xa4\xd6\x90\x73\x67\xe4\x5c\x85\x68\xb5\xe5\x6b\x41\x6a\xef\x82\x39\x71\x0e\x32\x26\xd4\x5e\xf1\x93\x6a\xa7\x28\xac\x44\x5d\xb6\x78\xb7\x3e\x4f\x95\x1e\xe4\xcf\xe8\x8b\x5f\xe1\x8f\x88\xd6\xf7\x98\x53\x88\x59\xa6\x42\x3e\x52\xab\x73\x9e\x3c\x3d\x7c\xde\x60\xaf\x62\xfd\x61\x39\x7a\x4b\x87\x4f\x0f\x5e\xdf\xfc\xbf\x5d\x82\xca\xf4\xfe\x06\x4f\xf7\xf6\xf9\xdd\xdb\x05\x7e\x65\x00\xd0\xfe\x38\xd6\xc1\xff\xd8\xe6\x1d\x17\x9b\xe4\xf7\x38\x9f\xfc\x0a\xab\xf1\xef\x97\xc6\xb3\x2c\x70\x33\x5d\x77\x75\x92\xb5\x9c\x95\x70\x45\xc2\xf3\xde\x57\x4f\xf5\x29\x88\x84\xe6\x1b\xb9\x9a\x17\xb8\xb9\xed\xee\x06\xad\x69\x45\x76\xc5\x6a\x4a\x2b\x3e\x0c\x2d\x5a\x45\x0d\x42\x07\x5e\x7d\x6f\xc1\xde\xff\x0b\x0f\x1f\xe7\x29\xa0\x9b\xe9\xf0\x5e\x97\xef\x3b\x45\x5f\x49\x8f\x8b\x8b\x95\xb4\xb6\x5b\x54\xe4\xad\x99\xcf\xee\x42\xed\x52\x3c\x15\x9d\x6c\x10\x84\x0b\x16\xf6\x26\x25\x10\x84\xeb\x21\xe9\xa3\x5b\x89\x2d\x49\xce\xa8\x23\xcb\x7f\x71\x68\xc3\xac\x63\x7a\xe9\xda\xcd\xcf\x6c\x6a\xe5\xbf\xe9\xe4\x6a\x18\xa7\x5d\x3f\x4d\x8f\x6d\x3e\x2f\x31\xeb\xf6\x3f\x62\xf6\xea\x61\x8c\x5a\xb7\x0f\x3a\x5e\xb2\xdf\x01\x00\x00\xff\xff\xea\x2d\x23\xfe\xf2\x03\x00\x00" func stakingcollectionWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5900,11 +5879,11 @@ func stakingcollectionWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0x58, 0x73, 0x11, 0x73, 0x4a, 0xdc, 0x2f, 0x1d, 0xa1, 0xe1, 0xd9, 0xcf, 0x2d, 0x48, 0xfa, 0x8e, 0x3, 0x52, 0xa1, 0x4e, 0x79, 0x94, 0x22, 0x3, 0xd6, 0xb5, 0x8c, 0x19, 0xd5, 0x88, 0x71}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfb, 0x9a, 0xe1, 0x39, 0x28, 0x58, 0x61, 0xdc, 0x20, 0xc7, 0x14, 0x5c, 0xba, 0xb3, 0x84, 0xc9, 0x6a, 0x57, 0xb9, 0x13, 0x4f, 0x98, 0xa7, 0x23, 0xf, 0xc1, 0x35, 0x93, 0x60, 0xd1, 0x23, 0x6}} return a, nil } -var _stakingcollectionWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x6f\xda\x40\x10\xbd\xfb\x57\x3c\xe5\x90\x82\x14\x91\xaa\xad\x7a\x40\x6d\x23\x0a\x49\x85\x1a\x85\x0a\x43\xef\x53\x7b\x0c\x2b\x96\x5d\x77\x76\x5c\x40\x55\xfe\x7b\xb5\xfe\x80\xa8\x70\xe8\xa5\x7b\xf0\xda\xeb\xd1\xfb\x98\x7d\x63\xb6\xa5\x17\xc5\x83\xf5\xbb\x54\x69\x63\xdc\x6a\xec\xad\xe5\x4c\x8d\x77\x28\xc4\x6f\xf1\x7a\x9f\x2e\x46\x5f\xa7\x4f\x5f\xc6\xb3\xc7\xc7\xfb\xf1\x62\x3a\x7b\x1a\x4d\x26\xf3\xfb\x34\x4d\x92\xdb\xdb\x5b\xcc\xf9\x67\xc5\x41\xa1\x1e\x3b\xa3\xeb\x5c\x68\x87\xca\x05\xa5\x0d\xe7\x50\xbf\x61\x17\x50\x78\x81\xae\x19\xa1\xe4\xcc\x14\x86\x73\x38\x9f\x33\xbc\x20\x67\xcb\x2b\x52\x2f\x30\xae\x29\x69\x54\x20\x3b\xca\xa8\x59\x16\x6b\xee\xc0\x48\x18\x54\xa9\xdf\x92\x9a\x8c\xac\x3d\x20\xe7\xd2\x07\xa3\x35\x5f\x0d\x52\x39\xeb\xb3\xc8\x4f\x59\xe6\x2b\xa7\xf8\x45\x95\x55\x14\x46\x82\xde\xd4\x78\x23\x97\xc7\x4a\x07\x72\x07\xb4\xc5\x2f\xf0\x4f\x88\xc6\xb5\x98\x17\x11\x4d\x01\xa3\x30\x21\x56\x08\x27\x89\x0a\xb9\x40\xb5\xec\x5e\xb4\x38\x9d\x0c\x91\xaa\x18\xb7\xba\x39\x59\x8d\x87\xcb\xa9\xd3\xb7\x6f\xee\x6e\x40\xdb\x08\x37\xc4\xf2\xc1\xec\xdf\xbf\xeb\xe3\x77\x02\x00\xf5\xc3\xb2\x76\xed\x38\x5d\xca\x9c\x8b\x61\xb4\xbf\xee\x5d\xbc\xb3\xc1\xe9\x75\xb6\x73\x2c\x7d\x5c\x5f\xae\x3b\x3b\x49\x6a\xce\x52\xb8\x24\xe1\x5e\x6b\xb3\xa5\xfa\xec\x45\xfc\xee\x3b\xd9\x8a\xfb\xb8\x1e\x35\xff\x3a\xad\x71\x05\xb6\xc5\xe0\x92\x56\x7c\xec\x3a\x36\x08\xea\x85\x56\x3c\xf8\x51\x83\x7d\xf8\x1f\x1e\x3e\xf5\x62\x64\x87\x97\xe3\x7c\x5e\x9e\x36\x8a\xbe\x91\xae\xfb\x47\x2b\x71\xdd\xdd\xa1\x24\x67\xb2\xde\xd5\xd8\x57\x36\xa6\x55\xd1\xc8\x06\x41\xb8\x60\x61\x97\xc5\x40\x82\x70\x3e\x36\x6d\x92\x4b\x31\x5b\x92\x03\xaa\xc0\xf2\x2a\x74\x6d\xb8\x6a\x98\x9e\x9b\x76\xf3\x9e\xb3\x4a\xf9\x5f\x3a\x39\xe8\xa6\x6b\xd9\x0e\xd7\xa2\x8e\xeb\x31\x66\xcd\xfe\x57\xcc\x5e\x7c\x9c\xa2\xd6\xec\x9d\x8e\xe7\xe4\x4f\x00\x00\x00\xff\xff\x53\xcd\x56\x18\x04\x04\x00\x00" +var _stakingcollectionWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\xcd\x6e\xdb\x3c\x10\xbc\xeb\x29\x06\x3e\xe4\xb3\x01\xc3\x06\xbe\x16\x3d\x18\x6d\x8d\x34\x45\x80\x9c\x5a\xc4\x71\xef\x5b\x6a\x65\x13\xa6\x49\x75\xb9\xac\x63\x14\x79\xf7\x82\xfa\xb1\x82\x5a\x87\x5e\xca\x83\x28\x91\x8b\x99\x9d\xd1\xac\x3d\xd6\x41\x14\xf7\x2e\x9c\x36\x4a\x07\xeb\x77\x77\xc1\x39\x36\x6a\x83\x47\x25\xe1\x88\xc9\xe8\xdd\xa4\x28\x96\xcb\x25\x1e\xf9\x47\xe2\xa8\xd0\x80\x93\xd5\x7d\x29\x74\x42\xf2\x51\xe9\xc0\x25\x34\x1c\xd8\x47\x54\x41\xa0\x7b\x46\xac\xd9\xd8\xca\x72\x09\x1f\x4a\x46\x10\x94\xec\x78\x47\x1a\x04\xd6\xb7\x25\x2d\x0d\xcc\x85\xa7\x61\x79\xda\x73\x0f\x46\xc2\xa0\xa4\xe1\x48\x6a\x0d\x39\x77\x46\xc9\x75\x88\x56\x1b\xbe\x06\x24\x79\x17\x4c\xe6\x27\x63\x42\xf2\x8a\x9f\x94\x9c\xa2\xb2\x12\x75\xde\xe0\xdd\xfa\x32\x57\x7a\x90\x3f\xa3\x2b\x7e\x85\x3f\x20\x5a\xdf\x61\x8e\x22\xda\x0a\x56\x61\x63\xae\x10\x2e\x0a\x15\xf2\x91\x9a\xb6\xa7\x59\xe2\xc3\xe7\x15\x36\x2a\xd6\xef\xe6\x83\xd4\x7c\xb8\x7d\xf0\xfa\xe6\xff\xf5\x1c\x74\xcc\x70\x2b\x6c\xef\xed\xf3\xbb\xb7\x33\xfc\x2a\x00\xa0\x79\x38\xd6\xde\x8e\xc1\xf5\x47\xae\x56\x59\xfe\x7e\x3a\xfa\x53\x16\xc3\xeb\x97\x93\x67\x99\xe1\x66\xbc\xee\xea\xa4\x68\x38\x6b\xe1\x9a\x84\xa7\x9d\xcc\x8e\xea\x53\x10\x09\xa7\x6f\xe4\x12\xcf\x70\x73\xdb\xde\xf5\xbd\xe6\x15\xd9\x55\x8b\xb1\x5e\xf1\xa1\x77\x6c\x11\x35\x08\xed\x78\xf1\xbd\x01\x7b\xff\x2f\x34\x7c\x9c\xe6\xbc\xae\xc6\xb3\x7c\x5d\xbe\x69\x3b\xfa\x4a\xba\x9f\x5d\xa4\xe4\xb5\x5e\xa3\x26\x6f\xcd\x74\x72\x17\x92\xcb\x69\x55\xb4\x6d\x83\x20\x5c\xb1\xb0\x37\x39\x90\x20\x5c\xcf\x4c\x97\xe4\x5a\xec\x91\xe4\x8c\x14\x59\xfe\x8b\xbd\x0d\x93\x96\xe9\xa5\xb5\x9b\x9f\xd9\x24\xe5\xbf\x71\x72\xd1\x4f\xd7\xb6\x1b\xae\xa7\x26\xae\x97\x98\xb5\xfb\x1f\x31\x7b\xf5\x31\x44\xad\xdd\xfb\x3e\x5e\x8a\xdf\x01\x00\x00\xff\xff\xf5\xac\x11\xd5\x01\x04\x00\x00" func stakingcollectionWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5920,11 +5899,11 @@ func stakingcollectionWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb3, 0x27, 0x90, 0x24, 0x2e, 0x4f, 0xd6, 0x1d, 0x1d, 0x59, 0x53, 0x39, 0x4e, 0x23, 0x42, 0x99, 0x80, 0x6b, 0xb4, 0xca, 0x61, 0x90, 0xbb, 0x87, 0xe2, 0xfb, 0xa3, 0xed, 0x88, 0x78, 0x75, 0x55}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf9, 0x49, 0x4d, 0x12, 0xd3, 0x8d, 0x96, 0x6e, 0x9, 0xec, 0x17, 0xc4, 0xc6, 0x99, 0x84, 0x28, 0xbd, 0x52, 0x73, 0x96, 0x3, 0x75, 0x59, 0x22, 0x85, 0x43, 0x73, 0xfa, 0x70, 0xe1, 0x91, 0xe0}} return a, nil } -var _stakingproxyAdd_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\xc1\x8a\xe2\x40\x10\xbd\xe7\x2b\x0a\x0f\x92\x80\x84\x3d\x2e\x61\x5d\xc9\xea\xb2\x2b\x82\x06\xb3\x3b\xcc\x1c\xdb\x74\x45\x9b\x89\x5d\xa1\x52\x41\x65\xf0\xdf\x87\x36\x6a\x12\x32\x7d\x08\xe9\xd7\x55\xaf\x5e\xbd\x67\x8e\x25\xb1\x40\x2a\xea\xdd\xd8\x7d\xc2\x74\xbe\x40\xce\x74\x84\x6f\xe7\xf4\x5f\xbc\x5a\xae\xff\x24\xdb\xcd\xeb\x5b\xbc\x58\x6c\x7f\xa7\xa9\xe7\x09\x2b\x5b\xa9\x4c\x0c\x59\xdf\xe8\x08\x52\x61\x63\xf7\x13\x60\x2a\x30\x82\xff\x4b\x2b\xdf\x27\x60\x51\x4e\xc4\x8e\x30\xd6\x9a\xb1\xaa\xda\xba\xf6\x69\x85\x97\x16\xae\x9a\xf9\x1d\x2c\x80\x0f\xcf\x03\x00\x28\x19\x4b\xc5\xe8\xab\x2c\xa3\xda\x4a\x04\xaa\x96\x83\xff\x8b\x98\xe9\xf4\xa2\x8a\x1a\x03\x18\xc7\xcd\x9b\xeb\x81\xfb\x29\x50\xa0\x74\xeb\xfc\xa5\x42\x23\xc3\x14\xee\x04\x61\x25\xc4\x6a\x8f\xe1\xee\x46\xf1\x63\xdc\xdd\x3d\x5c\x93\x46\x07\x20\x27\x6d\xf3\x4f\xdf\x59\x12\xc1\xa0\x72\x53\x22\x2b\x21\x9e\xab\x52\xed\x4c\x61\xe4\x92\x36\xe4\x89\x92\x43\xf0\xd4\xe2\xce\x6c\x06\xa5\xb2\x26\xf3\x47\x73\xaa\x0b\x0d\x96\x04\x1a\x05\xc0\x98\x23\xa3\xcd\x10\x84\x1e\x4e\x34\xda\xe1\x70\x9b\x3f\x0a\xbc\xde\x5e\x96\x34\x2e\x6d\x4e\x30\x1d\x4a\x72\xb8\x7f\x2b\x58\x44\x60\xf4\x23\x19\xf7\xfd\x32\x98\x01\x34\xc8\xa8\x77\xed\x47\xd5\xfe\x77\x14\x76\x5c\x0f\x95\xd6\x7d\x51\x36\xa7\xe8\xa9\xbf\x71\xe8\xea\x5d\xbd\xcf\x00\x00\x00\xff\xff\xb7\x8b\x41\xd0\x87\x02\x00\x00" +var _stakingproxyAdd_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x43\x0e\x92\x80\xe4\x5c\x42\xad\x58\x7b\xa8\x14\x5a\x41\xda\xfb\x98\x9d\xe8\xd2\xb8\xb3\x4c\x26\x58\x29\xfe\xf7\xb2\x46\x4d\x42\xba\x87\x90\x7d\x3b\x33\xfb\xed\x7b\xf6\xe0\x59\x14\x36\x8a\xdf\xd6\xed\xd6\xc2\x3f\x27\x28\x85\x0f\x10\xf7\xa5\x38\x8a\x54\xd0\xd5\x58\xa8\x65\x97\x58\x93\xc3\x46\xc5\xba\xdd\x14\x84\x2b\xca\xe1\x73\xe5\xf4\x61\x0a\x8e\xf4\xc8\x12\xda\x16\xc6\x08\xd5\x75\x57\xd7\x1d\xbd\xd1\xa9\x93\xeb\xf6\x96\x9e\x96\xc2\x6f\x14\x01\x00\x78\x21\x8f\x42\x09\x16\x05\x37\x4e\x73\xc0\x46\xf7\xc9\x33\x8b\xf0\xf1\x0b\xab\x86\x52\x98\x2c\xda\xb3\xd0\x03\xd7\x55\x91\x82\x0f\xd0\xaf\x5c\x19\x12\x98\xc1\x75\x40\x56\x2b\x0b\xee\x28\xdb\x5e\x46\x3c\x4e\xfa\x2f\xcc\xde\xd9\x50\x10\x48\xd6\x5d\xf3\x53\x12\xbc\xc8\x61\x54\xf9\xe1\x49\x50\x59\x96\xe8\x71\x6b\x2b\xab\xa7\x4d\x3b\x7c\x8d\xba\x4f\xef\x2c\x61\xcd\xe7\xe0\xd1\xd9\x22\x89\x97\xdc\x54\x06\x1c\x2b\xb4\x04\x20\x54\x92\x90\x2b\x08\x94\x6f\x4e\xb4\xec\xb0\xbf\xdc\x1f\xa7\xd1\xe0\x5d\x8e\x0d\xad\x5c\xc9\x30\x1b\x23\x05\x3d\xb9\x14\xbc\xe4\x60\xcd\x2d\x99\xf0\xfd\x37\x98\x91\x34\xca\x68\xb0\x1d\x46\xd5\xfd\xf7\x08\x7b\xae\x67\x68\xcc\x10\xca\x95\x9c\xdf\xf9\x5b\x87\xce\xd1\x39\xfa\x0b\x00\x00\xff\xff\x8d\x03\xa9\x86\x80\x02\x00\x00" func stakingproxyAdd_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5940,11 +5919,11 @@ func stakingproxyAdd_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/add_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb, 0xed, 0xdf, 0x99, 0xb8, 0x51, 0xf2, 0x7b, 0xa, 0xba, 0x6f, 0x2d, 0x55, 0xf, 0x3f, 0x7b, 0x45, 0x68, 0x59, 0x68, 0x3a, 0xc9, 0x94, 0x74, 0x64, 0xa, 0x46, 0x76, 0xae, 0xa8, 0xb7, 0xa8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x4c, 0x70, 0x39, 0x70, 0x71, 0x9e, 0x6c, 0x1, 0xdf, 0x9c, 0x65, 0xbf, 0x4, 0xb9, 0xfd, 0xe4, 0x59, 0x8e, 0x5a, 0xcf, 0xd2, 0x23, 0xd, 0x25, 0x7, 0xa2, 0xd, 0xd3, 0xe, 0xb1, 0x72}} return a, nil } -var _stakingproxyGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x4d\x4b\xf3\x40\x10\xc7\xef\xfb\x29\xe6\xe9\xe1\x21\x01\x09\x9e\x8b\x5a\x42\x2b\x5a\x84\x36\x34\x1e\xf4\xb8\xdd\x4c\xe2\xe2\x76\x67\x99\x9d\x60\x4b\xe9\x77\x97\x74\x49\x45\x7a\x70\x2e\x21\x3b\xf3\x7f\xe1\x67\x77\x81\x58\xa0\x16\xfd\x69\x7d\x57\x31\xed\x0f\xd0\x32\xed\xe0\x76\x5f\xbf\x96\x2f\xcb\xd5\x53\xb5\x59\xbf\xbd\x97\x8b\xc5\xe6\xb1\xae\x95\xd2\xc6\x60\x8c\x99\x76\x2e\x87\xb6\xf7\xb0\xd3\xd6\x67\xda\x18\xea\xbd\x4c\xa1\x6c\x1a\xc6\x18\x6f\xc0\x53\x83\xcb\xc5\x14\x6a\x61\xeb\xbb\x7c\xfa\x2b\xa0\x58\x0d\x5b\xdf\x12\x1c\x95\x02\x00\x70\x28\x10\x86\xcd\x06\x5b\xb8\x87\x0e\xa5\x4c\x8e\xa3\x73\x7e\x3e\x1b\xa6\x30\x3a\xe8\xad\x75\x56\x2c\xc6\x62\x4b\xcc\xf4\x75\xf7\xff\xca\x7d\x78\x40\x3e\xff\x3f\x93\x6b\x90\x8f\x7f\x9f\x54\xfd\xd6\x59\x73\x7a\xc8\x2e\x61\xc3\x5c\xe9\xd6\x01\x59\x0b\xf1\x7c\x2c\x72\x48\xc2\x4a\xcb\xc7\x45\xf9\x53\x78\x36\x83\xa0\xbd\x35\xd9\x64\x4e\xbd\x6b\xc0\x93\x40\xaa\x0d\xe1\xac\x03\xc6\x16\x19\xbd\x41\x10\x82\x98\xe2\x12\x8e\x49\x9e\xf8\x30\x4a\xcf\xfe\x82\xa8\xe8\x50\x46\x84\xd9\x48\x3a\x7d\xf3\x7f\xea\xa4\xbe\x03\x00\x00\xff\xff\x93\xce\x73\xe0\xd4\x01\x00\x00" +var _stakingproxyGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x4e\xf3\x30\x10\x85\xf7\x3e\xc5\xfb\xb3\xf8\x95\x48\x28\x07\xa8\x80\xaa\x2a\x0b\xd8\x40\x45\x4f\xe0\x3a\x93\x60\xe1\x7a\xac\xf1\x44\x50\x55\xbd\x3b\x4a\xad\x14\x50\x17\xcc\xc6\xf2\xcc\xbc\x37\x4f\x9f\xdf\x27\x16\xc5\x56\xed\xbb\x8f\xc3\x46\xf8\xf3\x80\x5e\x78\x8f\xea\x67\xab\x32\xc6\x3a\x47\x39\xd7\x36\x84\x06\xfd\x18\xb1\xb7\x3e\xd6\xd6\x39\x1e\xa3\x2e\xb0\xea\x3a\xa1\x9c\x6f\x10\xb9\xa3\xa7\x87\x05\xb6\x2a\x3e\x0e\xcd\xe2\x97\x73\xfb\x3c\x4d\x63\xcf\x38\x1a\x03\x00\x81\x14\x69\x9a\xbc\x52\x8f\x3b\x0c\xa4\xab\xe2\x38\x3b\x37\xe7\xb5\xa9\x5a\x67\x93\xdd\xf9\xe0\xd5\x53\x6e\x77\x2c\xc2\x1f\xb7\xff\xaf\xdc\xa7\x06\xc9\xf9\xff\xc8\xa1\x23\x39\xfe\xbd\xb2\x19\x77\xc1\xbb\xd3\x7d\x7d\x39\x36\xd5\x95\xee\x25\x91\x58\x65\x59\xcf\x41\x0e\x45\xb8\xb1\xfa\x76\x51\x7e\x07\x5e\x2e\x91\x6c\xf4\xae\xae\xd6\x3c\x86\x0e\x91\x15\x25\x36\xd2\x59\x07\xa1\x9e\x84\xa2\x23\x28\x23\x97\x73\x05\x47\xd5\x14\x3e\x42\x3a\x4a\xbc\x20\x6a\x07\xd2\x19\x61\x3d\x93\x2e\x6f\xf3\xcf\x9c\xcc\x57\x00\x00\x00\xff\xff\x07\xe6\x21\xd3\xcd\x01\x00\x00" func stakingproxyGet_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5960,11 +5939,11 @@ func stakingproxyGet_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/get_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0xe, 0xa9, 0xc, 0x81, 0xc6, 0xb5, 0x5b, 0x90, 0xf7, 0x7f, 0x67, 0x66, 0xeb, 0xac, 0xbd, 0x20, 0xea, 0x8a, 0xbf, 0xa9, 0xb2, 0xe9, 0x4f, 0x9, 0xe3, 0x29, 0x52, 0x8a, 0xa5, 0xfd, 0x60}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0x3e, 0xd4, 0xe5, 0xc4, 0x95, 0x56, 0x6b, 0xfd, 0xc9, 0xe5, 0x64, 0xc, 0x1b, 0xe0, 0xbd, 0xff, 0x2b, 0x95, 0x9a, 0xaf, 0x4e, 0xdd, 0xf1, 0x3c, 0xf7, 0x3e, 0xc0, 0xfd, 0x96, 0x31, 0x6c}} return a, nil } -var _stakingproxyRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x93\x41\x8f\xda\x30\x10\x85\xef\xf9\x15\x23\x0e\x34\x91\x90\xd5\x43\xd5\x43\x54\xba\xa2\x40\xdb\x15\x2b\x40\x84\x56\xed\xd1\xd8\x13\xb0\x08\x9e\xc8\x71\x54\x50\xb5\xff\xbd\x72\x1c\x67\x03\xb4\x55\xa5\xfa\x62\x60\x3c\x6f\xbe\xf7\x6c\xd4\xa9\x24\x63\xe1\x89\xc4\x11\xe5\x96\x8e\xa8\x2b\xc8\x0d\x9d\xe0\xf5\xf9\x69\x35\x5d\xcc\x67\xdb\xd5\x62\xbe\x9c\xcc\x66\x9b\x79\x96\x45\xed\xe9\xcc\xf2\xa3\xd2\xfb\xb5\xa1\xf3\x25\x9c\xce\xb6\x93\xc5\xe3\xf2\xd3\x7a\xb3\xfa\xf6\x3d\x1c\x8f\xac\xe1\xba\xe2\xc2\x2a\xd2\x31\x97\xd2\x60\x55\xa5\x30\xf1\x1f\x46\xa0\x64\x0a\x99\x35\x4a\xef\x47\xc0\x4f\x54\x6b\x9b\xc2\x97\x8f\xea\xfc\xf6\x4d\x02\x3f\xa3\x08\x00\xa0\x40\x0b\x07\x2a\x24\x9a\x0d\xe6\x29\xf0\xda\x1e\xe2\x3e\x2b\x6b\xb6\x55\x89\x86\xbb\x21\x55\x02\xc3\xfb\xf2\xe7\x46\xc0\x0b\x96\x06\x4b\x6e\x30\xe6\x42\xf8\x81\x8d\xe4\x07\x32\x86\x7e\x7c\xe5\x45\x8d\x09\x0c\x27\xbe\xe6\x20\xa0\x5d\x15\x16\x39\xeb\x40\x60\x0c\x6d\x3f\xab\x2c\x19\xbe\x47\xb6\x6b\x14\xde\xfd\x0f\xe0\xfb\xd8\x45\x99\xc2\x9f\xea\x99\x1f\xb5\xe6\xf6\x90\x74\x60\x6e\x3d\x3c\x40\xc9\xb5\x12\xf1\x60\x4a\x75\x21\x41\x93\x05\xcf\x03\x06\x73\x34\xa8\x05\x82\x25\xe8\x69\x0d\xbc\xc2\xb3\x0f\x05\xcf\x28\x6a\x8b\x3d\xbf\x2e\x77\x4d\x12\x3d\x38\xb5\xa6\xf7\x68\xdb\x6c\xc2\x6d\x26\x4c\xf0\x92\xef\x54\xa1\xac\xc2\xea\x8a\x2a\x44\x32\xec\xbf\x16\xb6\x24\x89\xee\x07\x34\xcd\xf7\xe0\xfc\xaa\xd3\xad\xbb\xa6\x40\x32\x0d\xf3\x2e\xeb\x7a\x57\x28\xe1\xe2\xb8\xea\xfe\xe7\x6c\x9c\x3f\xa0\x56\x16\xca\x46\x0d\x3a\x3b\x97\x41\x12\xdd\xc5\xf1\xa8\x73\x82\xf1\x6d\x32\x6c\x8f\x76\xd9\x56\xe3\xe6\xd8\x2c\x05\x25\xff\x0a\xa2\x5f\x59\x17\x27\x28\xa7\x98\x93\xf1\xf2\xb3\xf1\x80\x09\xd2\x82\xdb\x58\xc9\xa4\x07\x70\xfd\xfe\x98\x30\xc8\x2d\xbe\x64\x19\x07\xb8\xb4\xc3\x7c\xf9\x4b\xf9\xfd\x37\x6e\x7a\xf7\x00\xe3\xdb\x11\x3e\xa4\x56\xbe\xd7\x7c\xeb\x9d\x4b\xd9\xbf\xab\xce\x7f\xe0\x60\x4a\x8e\xa0\x74\xa5\xf4\x76\x68\x78\x83\xcf\xd1\xaf\x00\x00\x00\xff\xff\xcf\xd9\x9d\x4b\x86\x04\x00\x00" +var _stakingproxyRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x93\x41\x8f\xd3\x30\x10\x85\xef\xf9\x15\xa3\x1c\x4a\x22\x55\x3e\x21\x0e\x11\x65\xb5\xec\x0a\x81\x84\x96\x8a\x02\x77\xd7\x9e\xa4\x56\x53\x4f\xe4\x4c\x44\x2b\xb4\xff\x1d\x39\x76\x52\xb7\x05\x84\xb4\xbe\x64\xd7\xe3\x79\xf3\xbd\x67\xd7\x1c\x3a\x72\x0c\x9f\x49\xed\x51\x7f\xa3\x3d\xda\x1e\x6a\x47\x07\xc8\xd3\xad\x3c\x8b\xe7\x36\x2c\xf7\xc6\x36\x6b\x47\xc7\x53\x3c\x97\x6e\xe5\x59\xc6\x4e\xda\x5e\x2a\x36\x64\x0b\xa9\xb5\xc3\xbe\xaf\xe0\x3e\xfc\xb1\x04\xa3\x2b\xd8\xb0\x33\xb6\x59\x82\x3c\xd0\x60\xb9\x82\xef\x1f\xcc\xf1\xcd\xeb\x12\x7e\x65\x19\x00\x40\x8b\x0c\x3b\x6a\x35\xba\xaf\x58\x57\x20\x07\xde\x15\x29\x8b\x18\x3f\x5f\x3a\x74\xd2\x0f\xe9\x4b\x58\xdc\x96\x3f\x8e\x02\x41\xb0\x73\xd8\x49\x87\x85\x54\x2a\x0c\x1c\x25\xdf\x93\x73\xf4\xf3\x87\x6c\x07\x2c\x61\x71\x1f\x6a\x1e\x02\xe2\xea\xb1\xad\xc5\x0c\x02\x2b\x88\xfd\xa2\x67\x72\xb2\x41\xb1\x1d\x15\xde\xbe\x04\xf0\x5d\xe1\x33\xac\xe0\x6f\xf5\x4d\x18\xb5\x96\xbc\x2b\x67\x30\xbf\xee\xee\xa0\x93\xd6\xa8\x22\x7f\xa0\xa1\xd5\x60\x89\x21\xf0\x80\xc3\x1a\x1d\x5a\x85\xc0\x04\x89\x56\x1e\x14\x9e\x43\x28\x78\x44\x35\x30\x26\x7e\x7d\xee\x96\x34\x06\x70\x8a\xa6\x1b\xe4\x98\xcd\x74\x9b\xa5\x50\xb2\x93\x5b\xd3\x1a\x36\xd8\x5f\x50\x4d\x91\x2c\xd2\x37\x21\x9e\x48\xa3\xdf\x40\x37\xfe\x3f\x39\xbf\xe8\xf4\xeb\xa6\x69\x22\x79\x98\xe6\x9d\xd6\xc3\xb6\x35\xca\xc7\x71\xd1\xfd\xdf\xd9\x78\x7f\x40\x51\x16\xba\x51\x0d\x66\x3b\xa7\xbc\xcc\x6e\xe2\xf8\x64\x6b\x82\xd5\x75\x32\xa2\x41\x7e\x8a\xd5\x62\x3c\xf6\x58\x81\xd1\xff\x04\xb1\xaf\xd8\xc7\x09\xc6\x2b\xd6\xe4\x82\xfc\xe3\x2a\x17\x8a\xac\x92\x5c\x18\x5d\x26\x00\x97\xef\x4f\x28\x87\x92\xf1\x9c\x65\x31\xc1\x55\x33\xe6\xf9\x27\x15\xbe\x7f\x70\x93\xdc\x03\xac\xae\x47\x84\x90\xa2\x7c\xd2\x7c\xed\x5d\x6a\x9d\xde\xd5\xec\x7f\xe2\x10\x46\x2f\xa1\xf3\xa5\xea\x7a\xe8\xf4\x06\x9f\xb3\xdf\x01\x00\x00\xff\xff\x1f\x55\xea\x18\x79\x04\x00\x00" func stakingproxyRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5980,11 +5959,11 @@ func stakingproxyRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb1, 0x25, 0xcc, 0x9, 0x6a, 0x2f, 0x36, 0xec, 0x3, 0x88, 0x62, 0x22, 0xb2, 0x59, 0x1a, 0x16, 0x38, 0x2c, 0xb6, 0xdd, 0x30, 0x6a, 0x7a, 0x41, 0x43, 0xa0, 0x95, 0x8b, 0x2f, 0x57, 0x30, 0xda}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x55, 0xf4, 0xb6, 0xef, 0xa5, 0x91, 0xdf, 0x85, 0xff, 0x8f, 0x28, 0xa1, 0x53, 0x69, 0x5a, 0x7e, 0x8e, 0x55, 0xcd, 0xa, 0xd5, 0xcc, 0x2c, 0x22, 0x93, 0xb6, 0xd1, 0xf4, 0x3, 0x6f, 0x61}} return a, nil } -var _stakingproxyRemove_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xc1\x4b\xc3\x50\x0c\xc6\xef\xef\xaf\xc8\x69\xb4\x97\xe2\xb9\xa8\x50\xad\x68\x11\xb6\xb2\x27\xa2\xc7\xac\xcd\xba\x87\xed\xcb\x23\x4b\x75\x43\xf6\xbf\xcb\x5b\xc7\x1c\x2c\x97\x40\x92\xdf\x97\xef\x73\x43\x60\x51\xb0\x8a\x5f\xce\x77\xb5\xf0\x6e\x0f\x6b\xe1\x01\x6e\x76\xf6\xad\x78\xad\xe6\xcf\xf5\x72\xf1\xf1\x59\x94\xe5\xf2\xc9\x5a\x63\x54\xd0\x6f\xb1\x51\xc7\x3e\xf1\xdc\x52\x55\xe6\x60\x55\x9c\xef\x52\xf8\x35\x06\x00\x20\x08\x05\x14\x4a\xb0\x69\x78\xf4\x9a\x03\x8e\xba\x49\x1e\x58\x84\x7f\xde\xb1\x1f\x29\x85\x59\x31\xed\x22\x03\xa7\xea\x49\x21\xc4\xff\x2f\xdc\xb7\x24\x70\x07\x27\x81\x6c\xab\x2c\xd8\x51\xb6\x3a\x4a\xdc\xce\x2e\xcd\x66\x73\x6e\x29\x0e\x48\xea\x7f\xf8\x3e\x89\x19\x72\xb8\xba\x5c\x04\x12\x54\x96\x47\x0c\xb8\x72\xbd\xd3\xbd\x9d\xc4\x6b\xd4\x4d\x6a\xce\x66\x2e\x8c\x64\x42\x03\x7f\x53\xa4\x2b\xbf\xe6\x73\xea\xa9\xa7\x47\xe4\x60\x0e\xe6\x2f\x00\x00\xff\xff\xac\xfc\x60\x28\x4a\x01\x00\x00" +var _stakingproxyRemove_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\x4d\x6a\xc3\x30\x10\x85\xf7\x3a\xc5\x23\x8b\x60\x6f\x7c\x00\xd3\x16\xfa\xb3\x68\x36\xad\xc1\xd0\xfd\xc4\x9e\x38\xa2\xb2\x46\x4c\xc6\x6d\x43\xc9\xdd\x8b\xe2\x90\x1a\xa2\x8d\xe0\x49\xdf\x9b\x6f\xfc\x98\x44\x0d\xad\xd1\xa7\x8f\x43\xa3\xf2\x73\xc4\x4e\x65\xc4\x6a\x19\xad\x9c\x33\xa5\x78\xa0\xce\xbc\xc4\x22\x4a\xcf\x9b\x97\x1a\xad\xa9\x8f\x43\x89\x5f\xe7\x00\x20\x29\x27\x52\x2e\xa8\xeb\x64\x8a\x56\x83\x26\xdb\x17\x4f\xa2\x2a\xdf\x1f\x14\x26\x2e\xb1\x7e\x9c\xdf\x32\x83\xcb\x09\x6c\x48\x79\xca\xab\x84\x9e\x15\xf7\xb8\x14\x54\x07\x13\xa5\x81\xab\xed\xb9\xe2\x6e\xbd\x54\xaa\xde\xa4\xe7\x1c\xb0\x36\xff\xf0\x43\x91\xe5\x6b\xdc\xfc\x7c\x4f\xac\x64\xa2\xcf\x94\x68\xeb\x83\xb7\x63\x3b\x97\x37\x64\xfb\xd2\x5d\x65\x16\x22\x95\xf2\x28\x5f\x9c\xe9\x4d\xdc\xc9\x75\xeb\xf9\x2e\xcf\xc8\xc9\x9d\xdc\x5f\x00\x00\x00\xff\xff\x28\xae\xe7\x3e\x43\x01\x00\x00" func stakingproxyRemove_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -6000,11 +5979,11 @@ func stakingproxyRemove_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/remove_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0x1a, 0x18, 0xbb, 0x52, 0x27, 0xf6, 0xff, 0xa1, 0x51, 0x75, 0x8b, 0x2e, 0xcf, 0x31, 0xc5, 0x62, 0x55, 0x28, 0x81, 0x46, 0xce, 0xfe, 0x7a, 0x3d, 0x1a, 0xcc, 0x20, 0xbf, 0xce, 0x70, 0xf7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0xf7, 0x1c, 0x46, 0x86, 0x72, 0x41, 0x59, 0x9b, 0xed, 0x64, 0x8f, 0xb4, 0x13, 0xa6, 0x40, 0x7a, 0xf2, 0x9a, 0x14, 0x5d, 0xf4, 0x21, 0xb0, 0x2, 0xbb, 0x79, 0xc5, 0x68, 0xb4, 0xb7, 0xcc}} return a, nil } -var _stakingproxyRemove_staking_proxyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xc1\x4b\xc3\x50\x0c\xc6\xef\xef\xaf\xc8\x69\xb4\x97\xe2\xb9\xa8\x50\xad\xe8\x10\xb6\xb2\x27\xa2\xc7\xac\x8d\xed\xc3\xf6\xe5\x91\xa5\xba\x21\xfb\xdf\xe5\xad\x63\x16\xcc\x25\x90\xe4\xfb\xe5\xfb\xdc\x10\x58\x14\xac\xe2\xa7\xf3\x6d\x25\xbc\x3f\xc0\x87\xf0\x00\x57\x7b\xfb\x52\x3c\x2f\x57\x8f\xd5\x66\xfd\xf6\x5e\x94\xe5\xe6\xc1\x5a\x63\x54\xd0\xef\xb0\x56\xc7\x3e\xf1\xdc\xd0\xb2\xcc\xc1\xaa\x38\xdf\xa6\xf0\x63\x0c\x00\x40\x10\x0a\x28\x94\x60\x5d\xf3\xe8\x35\x07\x1c\xb5\x4b\xee\x58\x84\xbf\x5f\xb1\x1f\x29\x85\x45\x31\xed\xa2\x06\xce\xd5\x93\x42\x88\xff\x9f\xb8\x6f\x48\xe0\x06\xce\x80\x6c\xa7\x2c\xd8\x52\xb6\x3d\x21\xae\x17\x73\xb3\xd9\x8a\x1b\x8a\x03\x92\xea\x4f\x7c\x9b\xc4\x0c\x39\x04\xfc\x77\xbb\x0e\x24\xa8\x2c\xf7\x18\x70\xeb\x7a\xa7\x07\x3b\xe1\x2b\xd4\x4e\xbb\xd4\x5c\x0c\xcd\xcc\x64\x42\x03\x7f\xd1\x1c\x76\x49\x3f\xf5\xf4\x24\x3b\x9a\xa3\xf9\x0d\x00\x00\xff\xff\x95\xf6\x53\x62\x52\x01\x00\x00" +var _stakingproxyRemove_staking_proxyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\x4d\x6a\xc3\x30\x10\x85\xf7\x3a\xc5\x23\x8b\x60\x6f\x7c\x00\xd3\x16\xfa\xb3\x68\x37\xad\xc1\xd0\xfd\xc4\x9e\xda\xa2\xb6\x46\x4c\xc6\x6d\x43\xc9\xdd\x8b\xe2\x90\x0a\xa2\x8d\xe0\x49\xef\x9b\x6f\xfc\x1c\x45\x0d\xad\xd1\xa7\x0f\x43\xa3\xf2\x73\xc0\x87\xca\x8c\x4d\x1e\x6d\x9c\x33\xa5\xb0\xa7\xce\xbc\x84\x22\x48\xcf\x2f\x4f\x35\x5a\x53\x1f\x86\x12\xbf\xce\x01\x40\x54\x8e\xa4\x5c\x50\xd7\xc9\x12\xac\x06\x2d\x36\x16\x0f\xa2\x2a\xdf\xef\x34\x2d\x5c\x62\x7b\xbf\xbe\xa5\x0e\xce\x67\x62\x43\x4c\x53\x9e\x65\xea\x59\x71\x8b\x33\xa0\xda\x9b\x28\x0d\x5c\xed\x4e\x88\x9b\x6d\xae\x54\xbd\x4a\xcf\x29\x60\x6d\xfe\xcb\x77\x45\x92\xaf\x11\xe9\xea\xef\x5b\x64\x25\x13\x7d\xa4\x48\x3b\x3f\x79\x3b\xb4\x2b\xbe\x21\x1b\x6d\x2c\xdd\x45\x28\x93\xa9\x94\x67\xf9\xe2\x1c\x76\xd9\x7e\xbd\xcb\x53\xed\xe8\x8e\xee\x2f\x00\x00\xff\xff\x69\xc3\x7d\xed\x4b\x01\x00\x00" func stakingproxyRemove_staking_proxyCdcBytes() ([]byte, error) { return bindataRead( @@ -6020,11 +5999,11 @@ func stakingproxyRemove_staking_proxyCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/remove_staking_proxy.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x55, 0x28, 0xc8, 0x83, 0xa0, 0x28, 0x62, 0x41, 0xf0, 0xb6, 0xce, 0xd3, 0x13, 0xf5, 0xb8, 0x29, 0xec, 0xf2, 0xdc, 0x76, 0x83, 0x3d, 0x30, 0xfb, 0x13, 0xcc, 0xd2, 0x90, 0x27, 0xf2, 0x54, 0x6a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc8, 0xc0, 0x93, 0x87, 0x23, 0x74, 0x64, 0xa0, 0x10, 0x3f, 0xa9, 0x3b, 0xef, 0xb1, 0xde, 0xd5, 0xdb, 0x46, 0xc0, 0x26, 0x79, 0x83, 0x2d, 0x9b, 0x6, 0xd3, 0x1b, 0x19, 0x8, 0xcb, 0x3d, 0xa5}} return a, nil } -var _stakingproxyRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x5f\x6b\xf2\x50\x0c\xc6\xef\xfb\x29\xf2\x7a\x21\x2d\xbc\x94\x5d\x8c\x5d\xc8\x9c\x38\xdd\x1f\x19\x68\xb1\x73\x6c\x97\xb1\x8d\x7a\x58\x3d\x39\x4b\x53\xa6\x0c\xbf\xfb\xa8\xa7\xd3\x8e\xe5\x26\x90\x9c\x3c\xf9\x3d\x39\x66\xeb\x58\x14\x52\xc5\x77\x63\xd7\x89\xf0\x6e\x0f\x2b\xe1\x2d\x5c\xec\xd2\xe7\xe1\xd3\x64\xfa\x90\xcc\x67\xaf\x6f\xc3\xf1\x78\x7e\x97\xa6\x41\xa0\x82\xb6\xc4\x4c\x0d\xdb\xd0\x72\x4e\x93\x71\x0f\x52\x15\x63\xd7\xff\x01\xb7\x5c\x59\xed\xc1\xe2\xde\xec\xae\x2e\x23\xf8\x0a\x02\x00\x00\x27\xe4\x50\x28\xc4\x2c\xf3\x7d\xac\x74\x13\xde\xb2\x08\x7f\xbe\x60\x51\x51\x04\xdd\xa1\xef\xd5\x33\xd0\x44\x41\x0a\xae\xe6\x79\xe4\x22\x27\x81\x3e\x34\x02\x71\xa9\x2c\xb8\xa6\x78\x79\x94\xb8\xee\xb6\xe1\xe3\x29\xe7\x54\x17\x48\x92\xf3\xf0\x4d\x58\x7b\xea\xc1\x9f\x97\x33\x47\x82\xca\x32\x42\x87\x4b\x53\x18\xdd\xa7\x5e\x3c\x41\xdd\x44\x27\x96\x3a\x06\x03\x70\x68\x4d\x16\x76\x46\x5c\x15\x39\x58\x56\xf0\x04\x20\xb4\x22\x21\x9b\x11\x28\x43\xe9\x77\x78\x76\xd8\x1c\xf7\x77\xa2\xe0\x97\xaf\xb2\x7d\xee\x7e\xdb\x66\x63\xaa\x0d\x7a\xba\xb3\xcf\xd1\xbf\xb3\x56\x5b\x27\x16\xfa\xa8\xa8\xd4\x85\x6d\xaa\xe1\xcf\x7f\xf8\xec\xdd\x1c\x82\x43\xf0\x1d\x00\x00\xff\xff\xc1\x5f\xb7\xf4\xf4\x01\x00\x00" +var _stakingproxyRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\x4d\x4b\xf3\x40\x10\xbe\xef\xaf\x98\x37\x87\xb2\x81\x97\x9c\xc4\x43\xb1\x16\xad\x88\x5e\xb4\x50\xea\x7d\x9a\x4c\x9b\xc5\x64\x67\x9d\x4c\xb0\x45\xfa\xdf\x25\xdd\xd8\xae\x38\x97\x81\x67\x76\x9e\x8f\x59\xd7\x06\x16\x85\x95\xe2\xbb\xf3\xbb\xa5\xf0\xfe\x00\x5b\xe1\x16\xb2\x14\xca\x8c\x51\x41\xdf\x61\xa9\x8e\xbd\xf5\x5c\xd1\xf3\xc3\x14\x56\x2a\xce\xef\xfe\x03\xb6\xdc\x7b\x9d\xc2\xfa\xd1\xed\xaf\xaf\x72\xf8\x32\x06\x00\x20\x08\x05\x14\xb2\x58\x96\x71\x8e\xbd\xd6\xf6\x9e\x45\xf8\xf3\x0d\x9b\x9e\x72\x98\xdc\xc5\xd9\xb0\x03\x63\x35\xa4\x10\x06\xd5\x27\x6e\x2a\x12\x98\xc1\x48\x50\x74\xca\x82\x3b\x2a\x36\x27\x8a\x9b\x49\x6a\xb1\x78\xe1\x8a\x06\x80\x64\x79\x59\xbe\xb5\x43\x98\x29\xfc\x79\xf9\x1a\x48\x50\x59\x16\x18\x70\xe3\x1a\xa7\x87\x55\x24\x5f\xa2\xd6\xf9\xd9\xcb\x50\xf3\x39\x04\xf4\xae\xb4\xd9\x82\xfb\xa6\x02\xcf\x0a\xd1\x01\x08\x6d\x49\xc8\x97\x04\xca\xd0\x45\x8d\xe8\x1d\xea\x93\x7e\x96\x9b\x5f\xb9\xba\xf4\xce\xb3\x34\xe6\x18\x2a\x35\x7a\xbe\x73\xec\xf9\xbf\x0b\x57\xca\x53\x08\x7d\xf4\xd4\xe9\xda\x8f\xa8\xfd\xf9\x8f\xd8\x63\x9a\xa3\x39\x9a\xef\x00\x00\x00\xff\xff\xda\xf0\xd0\xe7\xed\x01\x00\x00" func stakingproxyRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -6040,11 +6019,11 @@ func stakingproxyRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0xb5, 0xf5, 0x57, 0xe6, 0xec, 0x95, 0xe1, 0x16, 0x5, 0x45, 0x47, 0xe2, 0x72, 0x4f, 0x8e, 0xa0, 0x34, 0xc4, 0xf6, 0x4d, 0x4b, 0x7a, 0xa6, 0x89, 0x6d, 0xd, 0xd, 0x4f, 0x72, 0x43, 0xd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x27, 0xc, 0x98, 0xb7, 0xdd, 0xba, 0xf0, 0x75, 0xec, 0x3a, 0xf0, 0x5f, 0xf6, 0x67, 0x82, 0x46, 0xbc, 0x45, 0xee, 0xe4, 0x17, 0x24, 0x7e, 0x73, 0x20, 0xb3, 0x84, 0x9f, 0x3, 0x4c, 0x6e, 0xc2}} return a, nil } -var _stakingproxySetup_node_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\xc1\x4a\x03\x31\x10\x86\xef\x79\x8a\x39\x95\x2d\xb4\xc5\x73\xa9\x42\xb1\xa2\x22\xb4\x4b\x23\xa2\xc7\x69\x3a\xb6\xc1\x6d\x12\x26\xb3\xa5\x45\xfa\xee\x12\x94\x35\xa9\x08\x3a\x87\x3d\x6c\x66\xfe\xef\x9b\xb1\xbb\xe0\x59\x40\x0b\xbe\x59\xb7\xa9\xd9\x1f\x8e\xf0\xca\x7e\x07\x17\x07\xfd\x38\x7d\xb8\x9f\xdf\xd6\xcb\xc5\xf3\xcb\x74\x36\x5b\xde\x68\xad\x94\x30\xba\x88\x46\xac\x77\x55\x1f\xde\x95\x02\x00\x08\x4c\x01\x99\x2a\xe7\xd7\xb4\x08\xc4\x28\x9e\xc7\x80\xad\x6c\x2b\x8d\x7b\x7a\xc2\xa6\xa5\x01\x5c\x63\xc0\x95\x6d\xac\x58\x8a\x7d\xe8\x4d\x8d\xf1\xad\x93\x14\x02\x5f\xd5\x90\x40\x48\x0a\x77\xbe\x59\x13\xc3\x64\x58\x88\x8d\x0c\x13\x0a\xd5\xdf\x1d\x55\x5f\x75\xc3\x39\x7c\x14\xc5\x33\x6e\x68\x14\x71\x4f\xd5\x64\x98\x85\x0e\x40\xfc\xb8\x8c\x9d\x67\x93\x9d\xe4\x51\x7f\x46\xd4\x28\xdb\x8c\x92\x14\x5d\xd9\x0f\x97\x25\xdb\x64\x7b\x76\x22\x36\xc6\x96\x26\xbd\x1f\xdc\xf4\x83\x38\x5b\xe9\xaa\xea\x58\xa9\xfe\x27\xda\x8d\xfe\x76\x97\xc2\x2d\xb4\xab\xc6\xc6\x6d\x09\x3c\x5b\x6e\x50\x3c\xa2\xfc\xe9\x74\x75\x0a\x36\x67\x42\xe9\x7b\x52\x27\xf5\x11\x00\x00\xff\xff\x16\xab\xcc\xf3\x72\x02\x00\x00" +var _stakingproxySetup_node_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\xc1\x6a\xc3\x30\x0c\x86\xef\x7e\x0a\xd1\x43\x71\x20\xcd\x03\x94\x6c\x30\x76\xd9\x69\x0b\x04\x76\x57\x5d\xad\x31\x4b\x6d\x23\x2b\x65\x65\xf4\xdd\x87\xd9\xf0\xec\x8e\xc1\xe6\x43\x0e\x8a\xf4\x7f\x9f\x64\x8f\xc1\xb3\xc0\x28\xf8\x6a\xdd\x61\x60\xff\x76\x86\x17\xf6\x47\x58\x95\xa5\x95\x52\xc2\xe8\x22\x1a\xb1\xde\xe9\x06\xde\x95\x02\x00\x08\x4c\x01\x99\xb4\xf3\x7b\x7a\x0a\xc4\x28\x9e\xb7\x80\x8b\x4c\x7a\xc4\x13\x3d\xe3\xbc\x50\x0b\xf7\x18\x70\x67\x67\x2b\x96\x62\x03\xeb\x3b\x63\xfc\xe2\x24\x85\xc0\xd7\x9b\x49\x20\x24\xd0\x83\x9f\xf7\xc4\xd0\x6f\x2a\xa3\xce\x30\xa1\xd0\xf0\xdd\xa1\x1b\x95\x87\x4b\x78\x17\xc5\x33\x1e\xa8\x8b\x78\x22\xdd\x6f\x8a\xd0\x16\xc4\x6f\xeb\xd8\xc7\x62\x32\x4b\x9e\xc7\xcf\x88\x01\x65\x2a\x28\x49\xd1\xd5\xfd\x70\x53\xb3\x4d\xb1\x67\x16\xb1\x31\x2e\xd4\xaf\x7f\x70\x53\x81\xb8\x58\xe9\x56\x67\x56\x7a\xff\x13\xcd\xa3\xbf\xdd\xa5\x72\x0b\xcb\x6e\xb6\x71\xaa\x81\x57\xcb\xb5\xd5\x4f\x94\x3f\x9d\x6e\x48\xc1\xe6\x4a\x28\x7d\x2f\xea\xa2\x3e\x02\x00\x00\xff\xff\x35\x26\xe1\xc1\x6b\x02\x00\x00" func stakingproxySetup_node_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -6060,11 +6039,11 @@ func stakingproxySetup_node_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/setup_node_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x53, 0x2f, 0x19, 0x22, 0x4e, 0xb, 0x1d, 0x4c, 0x94, 0xc1, 0xf7, 0x95, 0xc6, 0xe0, 0xf0, 0x9e, 0xd7, 0xa9, 0x8a, 0xab, 0x84, 0xb5, 0x9b, 0xab, 0x86, 0x35, 0x5d, 0xef, 0x7c, 0x72, 0xc0, 0x14}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2f, 0x9a, 0xe3, 0x34, 0x75, 0x3a, 0xde, 0xe7, 0x18, 0x77, 0x38, 0x64, 0x59, 0x95, 0xee, 0xf8, 0x2d, 0xa4, 0x2a, 0x35, 0x96, 0xbf, 0x85, 0x5c, 0x95, 0x1a, 0x63, 0x1b, 0xba, 0xae, 0x8d, 0xd9}} return a, nil } -var _stakingproxyStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\xdf\x6b\xc2\x40\x0c\xc7\xdf\xfb\x57\x64\x3e\x48\x0b\xa3\xec\x61\xec\x41\xe6\xc4\xe9\x7e\xc8\x40\x8b\x75\x63\x7b\x8c\x6d\xd4\xc3\x7a\x39\xd2\x14\x95\xe1\xff\x3e\xea\x39\xed\x58\x5e\xc2\x5d\x2e\xdf\x7c\xbe\x39\xb3\x71\x2c\x0a\xa9\xe2\xda\xd8\x65\x22\xbc\xdb\xc3\x42\x78\x03\x37\xbb\x74\xd6\x7f\x1b\x8d\x5f\x92\xe9\xe4\xf3\xab\x3f\x1c\x4e\x9f\xd2\x34\x08\x54\xd0\x96\x98\xa9\x61\x1b\x5a\xce\x69\x34\xec\x40\xaa\x62\xec\xf2\x1a\x70\xc3\x95\xd5\x0e\xbc\x3f\x9b\xdd\xdd\x6d\x04\xdf\x41\x00\x00\xe0\x84\x1c\x0a\x85\x98\x65\xbe\x8e\x95\xae\xc2\x47\x16\xe1\xed\x07\x16\x15\x45\xd0\xee\xfb\x5a\xdd\x03\xa7\x28\x48\xc1\xd5\x3c\xaf\x5c\xe4\x24\xd0\x85\x93\x40\x5c\x2a\x0b\x2e\x29\x9e\x1f\x25\xee\xdb\x4d\xf8\x78\xcc\x39\xd5\x17\x24\xc9\xa5\xf9\x21\xac\x3d\x75\xe0\xdf\xcb\x89\x23\x41\x65\x19\xa0\xc3\xb9\x29\x8c\xee\x53\x2f\x9e\xa0\xae\xa2\x33\x4b\x1d\xbd\x1e\x38\xb4\x26\x0b\x5b\x03\xae\x8a\x1c\x2c\x2b\x78\x02\x10\x5a\x90\x90\xcd\x08\x94\xa1\xf4\x33\x3c\x3b\xac\x8e\xf3\x5b\x51\xf0\xc7\x57\xd9\x5c\x77\xb7\x69\xf3\x64\xaa\x09\x7a\xde\xb3\xcf\xd1\xd5\x45\xab\xa9\x13\xd7\x07\x1a\xd3\x76\xc6\x6b\xb2\x65\xf8\xfb\x1b\x3e\x7b\x2f\x87\xe0\x10\xfc\x04\x00\x00\xff\xff\x85\x46\xe2\xa4\xf2\x01\x00\x00" +var _stakingproxyStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\xcf\x4e\x32\x41\x0c\xbf\xcf\x53\xf4\xdb\x03\x99\x4d\xbe\xec\xc9\x78\x20\x22\x51\x8c\xd1\x0b\x92\xa0\xde\xcb\x6e\x81\x09\xcb\x74\xd2\xed\x06\x88\xe1\xdd\xcd\x30\x08\x63\xec\xa5\x99\x76\xfa\xfb\xd3\xba\x6d\x60\x51\x98\x2b\x6e\x9c\x5f\xcd\x84\xf7\x07\x58\x0a\x6f\xa1\xc8\x4b\x85\x31\x2a\xe8\x3b\xac\xd5\xb1\xb7\x9e\x1b\x7a\x7d\x1a\xc2\x5c\xc5\xf9\xd5\x7f\xc0\x2d\xf7\x5e\x87\xf0\xf1\xec\xf6\xb7\x37\x25\x7c\x19\x03\x00\x10\x84\x02\x0a\x59\xac\xeb\xd4\xc7\x5e\xd7\xf6\x91\x45\x78\xf7\x89\x6d\x4f\x25\x0c\x1e\x52\x2f\xce\xc0\x39\x5a\x52\x08\x91\xf5\x85\xdb\x86\x04\x46\x70\x06\xa8\x3a\x65\xc1\x15\x55\x8b\x13\xc4\xdd\x20\x97\x58\x4d\xb9\xa1\x58\x20\x99\x5d\x87\xef\x6d\x34\x33\x84\x3f\x3f\xdf\x02\x09\x2a\xcb\x04\x03\x2e\x5c\xeb\xf4\x30\x4f\xe0\x33\xd4\x75\x79\xd1\x12\x63\x3c\x86\x80\xde\xd5\xb6\x98\x70\xdf\x36\xe0\x59\x21\x29\x00\xa1\x25\x09\xf9\x9a\x40\x19\xba\xc4\x91\xb4\xc3\xfa\xc4\x5f\x94\xe6\x97\xaf\x2e\xdf\xf3\x28\xb7\x79\x36\x95\x0b\xbd\xec\x39\xe5\xf2\xdf\x15\x2b\xc7\xa9\xe2\x83\xa6\xb4\x7b\xe7\x0d\xf9\xce\xfe\x5c\x23\xe5\xe4\xe5\x68\x8e\xe6\x3b\x00\x00\xff\xff\x4a\x7f\x70\x48\xeb\x01\x00\x00" func stakingproxyStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -6080,11 +6059,11 @@ func stakingproxyStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x35, 0x4b, 0x88, 0x62, 0xe1, 0xba, 0x3c, 0x95, 0x97, 0xff, 0xdb, 0xb6, 0x92, 0xb9, 0x43, 0x26, 0xbc, 0xb3, 0x52, 0xa, 0xc5, 0x3, 0x7a, 0x4e, 0x0, 0xe, 0xc6, 0x38, 0xd3, 0x80, 0xe3, 0x7b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0xfa, 0xc3, 0x3c, 0x9f, 0xf3, 0x8a, 0x9a, 0xdc, 0x74, 0xf7, 0x2b, 0x88, 0xd7, 0x95, 0xad, 0x57, 0x4c, 0x88, 0xe3, 0xa3, 0x8b, 0x57, 0x16, 0x99, 0xaa, 0xf0, 0x72, 0xcb, 0x5b, 0x7a, 0x23}} return a, nil } -var _stakingproxyStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\xdf\x6b\xc2\x40\x0c\xc7\xdf\xfb\x57\x64\x3e\x48\x0b\xa3\xec\x61\xec\x41\xe6\xc4\xe9\x7e\xc8\x40\x8b\xd5\xb1\x3d\xc6\x36\xea\x61\xbd\x1c\x69\xca\x94\xe1\xff\x3e\xea\x39\xed\x58\x5e\xc2\x5d\x2e\xdf\x7c\xbe\x39\xb3\x75\x2c\x0a\xa9\xe2\xc6\xd8\x55\x22\xbc\xdb\xc3\x52\x78\x0b\x37\xbb\x74\xd6\x7f\x1b\x8d\x5f\x92\xe9\xe4\xe3\xb3\x3f\x1c\x4e\x9f\xd2\x34\x08\x54\xd0\x96\x98\xa9\x61\x1b\x5a\xce\x69\x34\xec\x40\xaa\x62\xec\xea\x1a\x70\xcb\x95\xd5\x0e\xcc\x9f\xcd\xee\xee\x36\x82\xef\x20\x00\x00\x70\x42\x0e\x85\x42\xcc\x32\x5f\xc7\x4a\xd7\xe1\x23\x8b\xf0\xd7\x3b\x16\x15\x45\xd0\xee\xfb\x5a\xdd\x03\xa7\x28\x48\xc1\xd5\x3c\xaf\x5c\xe4\x24\xd0\x85\x93\x40\x5c\x2a\x0b\xae\x28\x5e\x1c\x25\xee\xdb\x4d\xf8\x78\xcc\x39\xd5\x17\x24\xc9\xa5\xf9\x21\xac\x3d\x75\xe0\xdf\xcb\x89\x23\x41\x65\x19\xa0\xc3\x85\x29\x8c\xee\x53\x2f\x9e\xa0\xae\xa3\x33\x4b\x1d\xbd\x1e\x38\xb4\x26\x0b\x5b\x03\xae\x8a\x1c\x2c\x2b\x78\x02\x10\x5a\x92\x90\xcd\x08\x94\xa1\xf4\x33\x3c\x3b\xac\x8f\xf3\x5b\x51\xf0\xc7\x57\xd9\x5c\x77\xb7\x69\xf3\x64\xaa\x09\x7a\xde\xb3\xcf\xd1\xd5\x45\xab\xa9\x13\xd7\x07\x9a\xdb\x63\xca\x67\xbc\x21\x5b\x86\xbf\x5f\xe2\xb3\x37\x74\x08\x0e\xc1\x4f\x00\x00\x00\xff\xff\x31\x9c\xc2\x58\xf7\x01\x00\x00" +var _stakingproxyStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\xcd\x4e\x02\x41\x0c\xbe\xcf\x53\xd4\x3d\x90\xd9\xc4\xec\xc9\x78\x20\x22\x51\x8c\xd1\x8b\x92\x20\xde\xcb\x6e\x81\x09\xcb\x74\xd2\xed\x46\x88\xe1\xdd\xcd\x30\x08\x63\xec\xe5\xcb\xb6\xdb\xef\xa7\xe3\xb6\x81\x45\x61\xa6\xb8\x71\x7e\x35\x15\xde\xed\x61\x29\xbc\x85\x22\x6f\x15\xc6\xa8\xa0\xef\xb0\x56\xc7\xde\x7a\x6e\xe8\xf5\x69\x08\x33\x15\xe7\x57\xd7\x80\x5b\xee\xbd\x0e\x61\xfe\xec\x76\xb7\x37\x25\x7c\x1b\x03\x00\x10\x84\x02\x0a\x59\xac\xeb\x34\xc7\x5e\xd7\xf6\x91\x45\xf8\xeb\x13\xdb\x9e\x4a\x18\x3c\xa4\x59\xdc\x81\x53\xb5\xa4\x10\xa2\xea\x0b\xb7\x0d\x09\x8c\xe0\x44\x50\x75\xca\x82\x2b\xaa\x16\x47\x8a\xbb\x41\x6e\xb1\x7a\xe3\x86\x62\x83\x64\x7a\x59\xbe\xb7\x31\xcc\x10\xfe\xfd\xf9\x1e\x48\x50\x59\x26\x18\x70\xe1\x5a\xa7\xfb\x59\x22\x9f\xa2\xae\xcb\xb3\x97\x58\xe3\x31\x04\xf4\xae\xb6\xc5\x84\xfb\xb6\x01\xcf\x0a\xc9\x01\x08\x2d\x49\xc8\xd7\x04\xca\xd0\x25\x8d\xe4\x1d\xd6\x47\xfd\xa2\x34\x7f\x72\x75\xf9\x9d\x47\x79\xcc\x53\xa8\xdc\xe8\xf9\xce\x09\xcb\xab\x0b\x57\xce\x53\xc5\x0f\x9a\xfb\x23\x34\x1f\xbc\x21\xdf\xd9\xdf\x27\x49\x98\x02\x1d\xcc\xc1\xfc\x04\x00\x00\xff\xff\x6e\x84\xf8\xb2\xf0\x01\x00\x00" func stakingproxyStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -6100,11 +6079,11 @@ func stakingproxyStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd4, 0x3c, 0x98, 0x7, 0x3e, 0xf3, 0x54, 0x34, 0x74, 0xe, 0x85, 0x67, 0x86, 0x36, 0x48, 0x70, 0x41, 0x50, 0x8f, 0x42, 0x4f, 0x4, 0xf7, 0xed, 0x10, 0x39, 0x14, 0x6e, 0xb6, 0xfc, 0xae, 0xf6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x53, 0x74, 0x5, 0xf2, 0x15, 0x8f, 0x8f, 0x44, 0xd1, 0xb7, 0x61, 0x2e, 0x6d, 0xbc, 0x17, 0x94, 0x6b, 0xb1, 0x72, 0x8e, 0xed, 0xab, 0x61, 0x43, 0x74, 0x96, 0x45, 0x94, 0xd4, 0xa8, 0xce}} return a, nil } -var _stakingproxyUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x41\x6b\xfa\x40\x10\xc5\xef\xfb\x29\xe6\xef\x41\x92\x4b\xf8\x9f\xa5\x56\x52\x2d\xad\x14\x34\x98\x52\xda\xe3\x98\x8c\xba\x74\xdd\x59\x26\x13\xaa\x14\xbf\x7b\x89\x2b\x9a\xd2\xb9\x2c\xbb\x3b\xf3\xde\xef\x8d\xdd\x07\x16\x85\x52\xf1\xd3\xfa\x6d\x21\x7c\x38\xc2\x46\x78\x0f\xff\x0f\xe5\x6b\xfe\x32\x5f\x3c\x15\xab\xe5\xfb\x47\x3e\x9b\xad\x1e\xcb\xd2\x18\x15\xf4\x0d\x56\x6a\xd9\x27\x9e\x6b\x9a\xcf\x46\x50\xaa\x58\xbf\x4d\xe1\xdb\x18\x00\x80\x20\x14\x50\x28\xc1\xaa\xe2\xd6\xeb\x08\xb0\xd5\x5d\xf2\xc0\x22\xfc\xf5\x86\xae\xa5\x14\x86\x79\xfc\xeb\x66\xe0\x52\x8e\x14\x42\xe7\xff\xcc\xae\x26\x81\x31\x5c\x04\xb2\x46\x59\x70\x4b\xd9\xfa\x2c\x71\x37\xec\xc3\x66\x0b\xae\xa9\x7b\x20\x29\x6e\xc3\xf7\x49\x97\x61\x04\x7f\x3a\x97\x81\x04\x95\x65\x8a\x01\xd7\xd6\x59\x3d\x96\x51\xbc\x40\xdd\xa5\x57\x96\xae\x26\x13\x08\xe8\x6d\x95\x0c\xa6\xdc\xba\x1a\x3c\x2b\x44\x02\x10\xda\x90\x90\xaf\x08\x94\xa1\x89\x1e\x91\x1d\x76\x67\xff\x41\x6a\x7e\xe5\x6a\xfa\xeb\x1d\xf7\x63\x5e\x42\xf5\x41\xaf\x7b\x8d\x67\xfa\xef\xa6\xd5\xd7\xc9\x5a\xdf\x5d\x29\x77\x2e\x89\xe4\x27\x73\x32\x3f\x01\x00\x00\xff\xff\x91\x52\x79\xf8\xd0\x01\x00\x00" +var _stakingproxyUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\xc1\x6e\xfa\x30\x0c\xc6\xef\x79\x0a\xff\x7b\x40\xe9\xa5\x0f\x80\xfe\x0c\x31\x76\xd8\x2e\x1b\x12\xd2\xee\xa6\x35\x6d\xb4\x10\x47\xae\xab\x0d\x4d\xbc\xfb\x14\x52\x41\xa6\xf9\x12\xc5\x89\xbf\xef\xf7\xd9\x9d\x22\x8b\xc2\x5e\xf1\xc3\x85\x7e\x27\xfc\x75\x86\xa3\xf0\x09\xaa\xb2\x55\x19\xa3\x82\x61\xc4\x56\x1d\x07\x1b\xb8\xa3\x97\xa7\x25\xec\x55\x5c\xe8\x6b\xf8\x36\x06\x00\x20\x0a\x45\x14\xb2\xd8\xb6\x3c\x05\x5d\x02\x4e\x3a\xd8\x47\x16\xe1\xcf\x77\xf4\x13\xd5\xb0\xd8\xe4\xb7\x34\x03\x73\x79\x52\x88\xc9\xe5\x99\x7d\x47\x02\x2b\x98\x05\x9a\x51\x59\xb0\xa7\xe6\x70\x95\xf8\xbf\x28\x91\x9a\x57\xee\x28\x35\x48\x76\xf7\xe1\x07\x9b\xe0\x97\xf0\xe7\xe7\x5b\x24\x41\x65\xd9\x62\xc4\x83\xf3\x4e\xcf\xfb\x2c\xbe\x43\x1d\xea\x1b\x4b\xaa\xf5\x1a\x22\x06\xd7\xda\x6a\xcb\x93\xef\x20\xb0\x42\x26\x00\xa1\x23\x09\x85\x96\x40\x19\xc6\xec\x91\xd9\x61\xb8\xfa\x57\xb5\xf9\x95\x6b\x2c\xf7\xba\x2a\x63\xce\xa1\x4a\xd0\xdb\x5e\xf3\x59\xff\xbb\x6b\x95\x3a\xcd\x14\xd2\x95\x36\xde\xdb\x4c\x7e\x31\x17\xf3\x13\x00\x00\xff\xff\xdd\x2c\x7a\xf3\xc9\x01\x00\x00" func stakingproxyUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -6120,11 +6099,11 @@ func stakingproxyUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0x4c, 0x39, 0xb, 0x11, 0xcc, 0x48, 0x26, 0xb4, 0xe2, 0xda, 0xe5, 0x1d, 0xae, 0x76, 0x93, 0x63, 0xd, 0xf3, 0xee, 0xc6, 0x36, 0xb7, 0x38, 0xd9, 0x45, 0xf7, 0x4d, 0xd7, 0x2a, 0x56, 0x42}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0x90, 0x5b, 0x1f, 0x96, 0x97, 0xc4, 0x6a, 0x9, 0x69, 0x0, 0xc3, 0xb0, 0x20, 0x88, 0x83, 0xe, 0xb1, 0xf7, 0x4e, 0x33, 0xd9, 0x1b, 0x7, 0xc3, 0xad, 0xf5, 0xd0, 0x72, 0x2b, 0xc8, 0xf1}} return a, nil } -var _stakingproxyWithdraw_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\xcf\x6b\xc2\x50\x0c\xc7\xef\xfd\x2b\x32\x0f\xd2\xc2\x28\x3b\x8c\x1d\x64\x4e\x9c\xee\x87\x0c\xb4\x58\x37\xb6\x63\x6c\xa3\x7d\x58\x5f\x4a\x9a\x52\x65\xf8\xbf\x8f\xfa\x9c\x76\x2c\x97\xc0\xcb\xcb\x37\x9f\x6f\x62\xb6\x05\x8b\x42\xac\xb8\x31\x76\x1d\x09\xef\xf6\xb0\x12\xde\xc2\xcd\x2e\x5e\x0c\xdf\x26\xd3\x97\x68\x3e\xfb\xfc\x1a\x8e\xc7\xf3\xa7\x38\xf6\x3c\x15\xb4\x25\x26\x6a\xd8\xfa\x96\x53\x9a\x8c\x7b\x10\xab\x18\xbb\xbe\x06\xdc\x72\x65\xb5\x07\xef\xcf\x66\x77\x77\x1b\xc0\xb7\xe7\x01\x00\x14\x42\x05\x0a\xf9\x98\x24\xae\x8e\x95\x66\xfe\x23\x8b\x70\xfd\x81\x79\x45\x01\x74\x87\xae\xd6\xf4\xc0\x29\x72\x52\x28\x1a\x9e\x57\xce\x53\x12\xe8\xc3\x49\x20\x2c\x95\x05\xd7\x14\x2e\x8f\x12\xf7\xdd\x36\x7c\x38\xe5\x94\x9a\x07\x92\xe8\xd2\xfc\xe0\x37\x9e\x7a\xf0\xef\xe7\xac\x20\x41\x65\x19\x61\x81\x4b\x93\x1b\xdd\xc7\x4e\x3c\x42\xcd\x82\x33\x4b\x13\x83\x01\x14\x68\x4d\xe2\x77\x46\x5c\xe5\x29\x58\x56\x70\x04\x20\xb4\x22\x21\x9b\x10\x28\x43\xe9\x66\x38\x76\xc8\x8e\xf3\x3b\x81\xf7\xc7\x57\xd9\x5e\x77\xbf\x6d\xf3\x64\xaa\x0d\x7a\xde\xb3\xcb\xc1\xd5\x45\xab\xad\x13\xd6\x46\xb3\x54\xb0\x9e\x53\x8d\x92\x52\xba\xe0\x0d\xd9\xd2\xff\xbd\x8a\xcb\xce\xd3\xc1\x3b\x78\x3f\x01\x00\x00\xff\xff\xc8\x52\x6a\x35\xfa\x01\x00\x00" +var _stakingproxyWithdraw_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x41\x4f\xf3\x30\x0c\x86\xef\xf9\x15\xfe\x7a\x98\x5a\xe9\x53\x4f\x88\xc3\xc4\x98\x60\x08\xc1\x05\x26\x06\xdc\xbd\xc6\x5b\xa3\x75\x71\xe4\xba\xea\x26\xb4\xff\x8e\xba\x8c\x2d\x08\x5f\x2c\xd9\xf1\xeb\xf7\x71\xdc\x36\xb0\x28\x2c\x14\x37\xce\xaf\xe7\xc2\xbb\x3d\xac\x84\xb7\x90\xa5\xa5\xcc\x18\x15\xf4\x2d\x56\xea\xd8\xe7\x9e\x2d\x3d\x3f\x8c\x61\xa1\xe2\xfc\xfa\x3f\xe0\x96\x3b\xaf\x63\xf8\x78\x74\xbb\xeb\xab\x02\xbe\x8c\x01\x00\x08\x42\x01\x85\x72\xac\xaa\xd8\xc7\x4e\xeb\xfc\x9e\x45\xb8\xff\xc4\xa6\xa3\x02\x46\x77\xb1\x37\xcc\xc0\x29\x1a\x52\x08\xc3\xd6\x27\x6e\x2c\x09\x4c\xe0\x24\x50\xb6\xca\x82\x6b\x2a\x97\x47\x89\x9b\x51\x6a\xb1\x7c\x61\x4b\x43\x81\x64\x7e\x19\xbe\xcd\x07\x98\x31\xfc\x79\xf9\x1a\x48\x50\x59\x66\x18\x70\xe9\x1a\xa7\xfb\x45\x14\x9f\xa3\xd6\xc5\xd9\xcb\x10\xd3\x29\x04\xf4\xae\xca\xb3\x19\x77\x8d\x05\xcf\x0a\xd1\x01\x08\xad\x48\xc8\x57\x04\xca\xd0\xc6\x1d\xd1\x3b\xd4\xc7\xfd\x59\x61\x7e\x71\xb5\xe9\x9d\x27\x29\xe6\x09\x2a\x35\x7a\xbe\x73\xcc\xc5\xbf\x8b\x56\xaa\x53\xf6\x4e\x6b\x2b\xd8\xbf\x51\x8f\x62\xc9\xbe\xf3\x86\x7c\x9b\xff\xfc\x4a\xcc\x91\xe9\x60\x0e\xe6\x3b\x00\x00\xff\xff\x44\x7a\x9d\x16\xf3\x01\x00\x00" func stakingproxyWithdraw_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -6140,11 +6119,11 @@ func stakingproxyWithdraw_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/withdraw_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x94, 0x94, 0x8f, 0xc0, 0x98, 0x42, 0x18, 0xb7, 0x49, 0xce, 0xa3, 0xc3, 0xa1, 0xd, 0x5b, 0x79, 0xae, 0xe, 0xc4, 0xa9, 0x8a, 0x84, 0x44, 0x7d, 0xe3, 0x64, 0xc5, 0x33, 0xa4, 0x56, 0xc0, 0x2a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0x67, 0xcd, 0x39, 0x60, 0x24, 0xa6, 0xba, 0xe0, 0x8a, 0xb5, 0x4e, 0x33, 0x37, 0x28, 0xc9, 0xc3, 0xda, 0x33, 0x76, 0x7b, 0xa, 0x4e, 0xd6, 0x9e, 0xc7, 0x9b, 0x7e, 0x8e, 0x7b, 0x77, 0x87}} return a, nil } -var _stakingproxyWithdraw_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\xcf\x6e\xe2\x40\x0c\xc6\xef\x79\x0a\x2f\x07\x94\x48\xab\x68\x0f\xab\x3d\xa0\xa5\x88\x42\xff\xa0\x4a\x10\x11\xa8\xda\xa3\x49\x0c\x19\x11\xc6\x23\xc7\x11\xa0\x8a\x77\xaf\xc2\x50\x48\x55\x5f\x2c\xd9\xe3\xcf\xbf\xcf\x63\x76\x8e\x45\x21\x55\xdc\x1a\xbb\x49\x84\x0f\x47\x58\x0b\xef\xe0\xcf\x21\x5d\x0c\x5f\x26\xd3\xa7\x64\x3e\x7b\x7b\x1f\x8e\xc7\xf3\x87\x34\x0d\x02\x15\xb4\x15\x66\x6a\xd8\x86\x96\x73\x9a\x8c\x7b\x90\xaa\x18\xbb\xf9\x0d\xb8\xe3\xda\x6a\x0f\x96\x8f\xe6\xf0\xef\x6f\x04\x1f\x41\x00\x00\xe0\x84\x1c\x0a\x85\x98\x65\xbe\x8f\xb5\x16\xe1\x3d\x8b\xf0\xfe\x15\xcb\x9a\x22\xe8\x0e\x7d\xaf\x99\x81\x4b\x94\xa4\xe0\x1a\x9e\x67\x2e\x73\x12\xe8\xc3\x45\x20\xae\x94\x05\x37\x14\xaf\xce\x12\xff\xbb\x6d\xf8\x78\xca\x39\x35\x05\x92\xe4\x36\x7c\x17\x36\x9e\x7a\xf0\xe3\xe5\xcc\x91\xa0\xb2\x8c\xd0\xe1\xca\x94\x46\x8f\xa9\x17\x4f\x50\x8b\xe8\xca\xd2\xc4\x60\x00\x0e\xad\xc9\xc2\xce\x88\xeb\x32\x07\xcb\x0a\x9e\x00\x84\xd6\x24\x64\x33\x02\x65\xa8\xfc\x0e\xcf\x0e\xc5\x79\x7f\x27\x0a\xbe\xf9\xaa\xda\xe7\xee\xb7\x6d\x5e\x4c\xb5\x41\xaf\x77\xf6\x39\xfa\x75\xd3\x6a\xeb\xc4\x7b\xa3\x45\x2e\xb8\x5f\xda\xa6\x4c\xf9\x82\xb7\x64\xab\xf0\xeb\x57\x7c\xf6\x9e\x4e\xc1\x29\xf8\x0c\x00\x00\xff\xff\xe7\x66\xda\x1b\xfa\x01\x00\x00" +var _stakingproxyWithdraw_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\x4d\x6b\xf2\x40\x10\xbe\xef\xaf\x98\x37\x07\x49\xe0\x25\xa7\xd2\x83\xd4\x4a\x6b\x29\xed\xa5\x15\xac\xbd\x8f\xc9\x68\x16\xe3\xce\x32\x99\xa0\x52\xfc\xef\x65\xdd\x54\xb7\x74\x2e\x03\xcf\xec\x3c\x1f\xb3\x76\xe7\x59\x14\x16\x8a\x5b\xeb\x36\x73\xe1\xc3\x11\xd6\xc2\x3b\xc8\x52\x28\x33\x46\x05\x5d\x87\x95\x5a\x76\xb9\xe3\x9a\x5e\x9f\xc6\xb0\x50\xb1\x6e\xf3\x1f\x70\xc7\xbd\xd3\x31\x2c\x9f\xed\xe1\xf6\xa6\x80\x2f\x63\x00\x00\xbc\x90\x47\xa1\x1c\xab\x2a\xce\xb1\xd7\x26\x7f\x64\x11\xde\x7f\x62\xdb\x53\x01\xa3\x87\x38\x0b\x3b\x30\x54\x4b\x0a\x3e\xa8\xbe\x70\x5b\x93\xc0\x04\x06\x82\xb2\x53\x16\xdc\x50\xb9\x3a\x53\xdc\x8d\x52\x8b\xe5\x1b\xd7\x14\x00\x92\xf9\x75\xf9\x3e\x0f\x61\xc6\xf0\xe7\xe5\xbb\x27\x41\x65\x99\xa1\xc7\x95\x6d\xad\x1e\x17\x91\x7c\x8e\xda\x14\x17\x2f\xa1\xa6\x53\xf0\xe8\x6c\x95\x67\x33\xee\xdb\x1a\x1c\x2b\x44\x07\x20\xb4\x26\x21\x57\x11\x28\x43\x17\x35\xa2\x77\x68\xce\xfa\x59\x61\x7e\xe5\xea\xd2\x3b\x4f\xd2\x98\x43\xa8\xd4\xe8\xe5\xce\xb1\x17\xff\xae\x5c\x29\x4f\xb9\xb7\xda\xd4\x82\xfb\xa5\x0b\x30\xd5\x1f\xbc\x25\xd7\xe5\x3f\xbf\x12\x7b\xcc\x74\x32\x27\xf3\x1d\x00\x00\xff\xff\x6b\x4e\x2d\x38\xf3\x01\x00\x00" func stakingproxyWithdraw_unstakedCdcBytes() ([]byte, error) { return bindataRead( @@ -6160,7 +6139,7 @@ func stakingproxyWithdraw_unstakedCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/withdraw_unstaked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x25, 0x32, 0x9, 0xa9, 0x41, 0x5f, 0x1e, 0x2a, 0x35, 0xd8, 0x56, 0xfe, 0xec, 0x92, 0x60, 0x95, 0xce, 0x40, 0x53, 0x50, 0x5e, 0x15, 0x42, 0x1b, 0x74, 0x87, 0x93, 0xe8, 0x32, 0xb, 0x3d, 0xb8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb2, 0x72, 0x63, 0xb9, 0x44, 0x4, 0x84, 0x7a, 0xbd, 0x19, 0x88, 0x23, 0x78, 0x77, 0xb6, 0xf0, 0xfe, 0x8a, 0x5c, 0xf2, 0x6f, 0xa2, 0xf, 0xda, 0xdb, 0xb1, 0x89, 0x1c, 0x19, 0xb5, 0x56, 0x95}} return a, nil } @@ -6544,7 +6523,6 @@ var _bindata = map[string]func() (*asset, error){ "idTableStaking/scripts/get_total_staked.cdc": idtablestakingScriptsGet_total_stakedCdc, "idTableStaking/scripts/get_total_staked_by_type.cdc": idtablestakingScriptsGet_total_staked_by_typeCdc, "idTableStaking/scripts/get_weekly_payout.cdc": idtablestakingScriptsGet_weekly_payoutCdc, - "inspect_field.cdc": inspect_fieldCdc, "lockedTokens/admin/admin_create_shared_accounts.cdc": lockedtokensAdminAdmin_create_shared_accountsCdc, "lockedTokens/admin/admin_deploy_contract.cdc": lockedtokensAdminAdmin_deploy_contractCdc, "lockedTokens/admin/admin_deposit_account_creator.cdc": lockedtokensAdminAdmin_deposit_account_creatorCdc, @@ -6922,7 +6900,6 @@ var _bintree = &bintree{nil, map[string]*bintree{ "get_weekly_payout.cdc": {idtablestakingScriptsGet_weekly_payoutCdc, map[string]*bintree{}}, }}, }}, - "inspect_field.cdc": {inspect_fieldCdc, map[string]*bintree{}}, "lockedTokens": {nil, map[string]*bintree{ "admin": {nil, map[string]*bintree{ "admin_create_shared_accounts.cdc": {lockedtokensAdminAdmin_create_shared_accountsCdc, map[string]*bintree{}}, diff --git a/lib/go/templates/templates.go b/lib/go/templates/templates.go index 261b1afef..208f7bcf5 100644 --- a/lib/go/templates/templates.go +++ b/lib/go/templates/templates.go @@ -15,30 +15,34 @@ import ( const ( placeholderFungibleTokenAddress = "\"FungibleToken\"" - OLD_placeholderFungibleTokenAddress = "0xFUNGIBLETOKENADDRESS" + placeholderViewResolverAddress = "\"ViewResolver\"" + placeholderFungibleTokenMVAddress = "\"FungibleTokenMetadataViews\"" + placeholderMetadataViewsAddress = "\"MetadataViews\"" + placeholderBurnerAddress = "\"Burner\"" placeholderFlowTokenAddress = "\"FlowToken\"" - OLD_placeholderFlowTokenAddress = "0xFLOWTOKENADDRESS" placeholderIDTableAddress = "\"FlowIDTableStaking\"" placeholderLockedTokensAddress = "\"LockedTokens\"" - OLD_placeholderLockedTokensAddress = "0xLOCKEDTOKENADDRESS" - placeholderStakingProxyAddress = "0xSTAKINGPROXYADDRESS" - placeholderQuorumCertificateAddress = "0xQCADDRESS" - placeholderFlowFeesAddress = "0xFLOWFEESADDRESS" - placeholderStorageFeesAddress = "0xFLOWSTORAGEFEESADDRESS" - placeholderServiceAccountAddress = "0xFLOWSERVICEADDRESS" - placeholderDKGAddress = "0xDKGADDRESS" - placeholderEpochAddress = "0xEPOCHADDRESS" - placeholderStakingCollectionAddress = "0xSTAKINGCOLLECTIONADDRESS" - placeholderNodeVersionBeaconAddress = "0xNODEVERSIONBEACONADDRESS" - placeholderRandomBeaconHistoryAddress = "0xRANDOMBEACONHISTORYADDRESS" + placeholderStakingProxyAddress = "\"StakingProxy\"" + placeholderQuorumCertificateAddress = "\"FlowClusterQC\"" + placeholderFlowFeesAddress = "\"FlowFees\"" + placeholderStorageFeesAddress = "\"FlowStorageFees\"" + placeholderServiceAccountAddress = "\"FlowServiceAccount\"" + placeholderDKGAddress = "\"FlowDKG\"" + placeholderEpochAddress = "\"FlowEpoch\"" + placeholderStakingCollectionAddress = "\"FlowStakingCollection\"" + placeholderNodeVersionBeaconAddress = "\"NodeVersionBeacon\"" + placeholderRandomBeaconHistoryAddress = "\"RandomBeaconHistory\"" ) type Environment struct { Network string + ViewResolverAddress string + BurnerAddress string FungibleTokenAddress string NonFungibleTokenAddress string MetadataViewsAddress string FungibleTokenMetadataViewsAddress string + FungibleTokenSwitchboardAddress string FlowTokenAddress string IDTableAddress string LockedTokensAddress string @@ -48,6 +52,7 @@ type Environment struct { EpochAddress string StorageFeesAddress string FlowFeesAddress string + StakingCollectionAddress string ServiceAccountAddress string NodeVersionBeaconAddress string RandomBeaconHistoryAddress string @@ -69,20 +74,26 @@ func ReplaceAddresses(code string, env Environment) string { code = strings.ReplaceAll( code, - OLD_placeholderFungibleTokenAddress, - withHexPrefix(env.FungibleTokenAddress), + placeholderFungibleTokenMVAddress, + withHexPrefix(env.FungibleTokenMetadataViewsAddress), ) code = strings.ReplaceAll( code, - OLD_placeholderFlowTokenAddress, - withHexPrefix(env.FlowTokenAddress), + placeholderMetadataViewsAddress, + withHexPrefix(env.MetadataViewsAddress), ) code = strings.ReplaceAll( code, - OLD_placeholderLockedTokensAddress, - withHexPrefix(env.LockedTokensAddress), + placeholderBurnerAddress, + withHexPrefix(env.BurnerAddress), + ) + + code = strings.ReplaceAll( + code, + placeholderViewResolverAddress, + withHexPrefix(env.ViewResolverAddress), ) code = strings.ReplaceAll( diff --git a/lib/go/test/staking_test_helpers.go b/lib/go/test/staking_test_helpers.go index 06d91cdca..bea9dea2e 100644 --- a/lib/go/test/staking_test_helpers.go +++ b/lib/go/test/staking_test_helpers.go @@ -85,7 +85,7 @@ func deployStakingContract( cadencePublicKeys := cadence.NewArray(publicKeys) // Get the code byte-array for the fees contract - FeesCode := contracts.TestFlowFees(emulatorFTAddress, emulatorFlowTokenAddress, emulatorServiceAccount) + FeesCode := contracts.TestFlowFees(env) logger := zerolog.Nop() adapter := adapters.NewSDKAdapter(&logger, b) @@ -106,7 +106,7 @@ func deployStakingContract( env.FlowFeesAddress = feesAddr.Hex() // Get the code byte-array for the staking contract - IDTableCode, _ := cadence.NewString(string(contracts.FlowIDTableStaking(emulatorFTAddress, emulatorFlowTokenAddress, feesAddr.String(), emulatorServiceAccount, latest))[:]) + IDTableCode, _ := cadence.NewString(string(contracts.FlowIDTableStaking(env))[:]) // Create the deployment transaction that transfers a FlowToken minter // to the new account and deploys the IDTableStaking contract diff --git a/transactions/FlowServiceAccount/deposit_fees.cdc b/transactions/FlowServiceAccount/deposit_fees.cdc index 1225086a8..ac0d6e3d8 100644 --- a/transactions/FlowServiceAccount/deposit_fees.cdc +++ b/transactions/FlowServiceAccount/deposit_fees.cdc @@ -1,6 +1,6 @@ import FungibleToken from "FungibleToken" import FlowToken from "FlowToken" -import FlowFees from 0xFLOWFEESADDRESS +import FlowFees from "FlowFees" // Deposit tokens to the FlowFees Vault // only for testing diff --git a/transactions/dkg/create_participant.cdc b/transactions/dkg/create_participant.cdc index 0ac19dfa1..0b009cdb7 100644 --- a/transactions/dkg/create_participant.cdc +++ b/transactions/dkg/create_participant.cdc @@ -1,4 +1,4 @@ -import FlowDKG from 0xDKGADDRESS +import FlowDKG from "FlowDKG" transaction(address: Address, nodeID: String) { diff --git a/transactions/epoch/admin/advance_view.cdc b/transactions/epoch/admin/advance_view.cdc index 659b86f26..f3f43ca6b 100644 --- a/transactions/epoch/admin/advance_view.cdc +++ b/transactions/epoch/admin/advance_view.cdc @@ -1,4 +1,4 @@ -import FlowEpoch from 0xEPOCHADDRESS +import FlowEpoch from "FlowEpoch" import FlowIDTableStaking from "FlowIDTableStaking" transaction(phase: String) { diff --git a/transactions/epoch/admin/calculate_rewards.cdc b/transactions/epoch/admin/calculate_rewards.cdc index f89daa1ac..e3cf37017 100644 --- a/transactions/epoch/admin/calculate_rewards.cdc +++ b/transactions/epoch/admin/calculate_rewards.cdc @@ -1,4 +1,4 @@ -import FlowEpoch from 0xEPOCHADDRESS +import FlowEpoch from "FlowEpoch" import FlowIDTableStaking from "FlowIDTableStaking" transaction() { diff --git a/transactions/epoch/admin/pay_rewards.cdc b/transactions/epoch/admin/pay_rewards.cdc index 8ade622a1..db921c10d 100644 --- a/transactions/epoch/admin/pay_rewards.cdc +++ b/transactions/epoch/admin/pay_rewards.cdc @@ -1,4 +1,4 @@ -import FlowEpoch from 0xEPOCHADDRESS +import FlowEpoch from "FlowEpoch" import FlowIDTableStaking from "FlowIDTableStaking" /// Pays the rewards for the previous epoch diff --git a/transactions/epoch/admin/reset_epoch.cdc b/transactions/epoch/admin/reset_epoch.cdc index e7726e362..2dfa217d4 100644 --- a/transactions/epoch/admin/reset_epoch.cdc +++ b/transactions/epoch/admin/reset_epoch.cdc @@ -1,4 +1,4 @@ -import FlowEpoch from 0xEPOCHADDRESS +import FlowEpoch from "FlowEpoch" import FlowIDTableStaking from "FlowIDTableStaking" // The resetEpoch transaction ends the current epoch in the FlowEpoch smart contract diff --git a/transactions/epoch/admin/update_clusters.cdc b/transactions/epoch/admin/update_clusters.cdc index 29e4af4d6..2d221ba6b 100644 --- a/transactions/epoch/admin/update_clusters.cdc +++ b/transactions/epoch/admin/update_clusters.cdc @@ -1,4 +1,4 @@ -import FlowEpoch from 0xEPOCHADDRESS +import FlowEpoch from "FlowEpoch" transaction(newNumClusters: UInt16) { prepare(signer: auth(BorrowValue) &Account) { diff --git a/transactions/epoch/admin/update_dkg_phase_views.cdc b/transactions/epoch/admin/update_dkg_phase_views.cdc index 69e06b3dd..ac7b585ce 100644 --- a/transactions/epoch/admin/update_dkg_phase_views.cdc +++ b/transactions/epoch/admin/update_dkg_phase_views.cdc @@ -1,4 +1,4 @@ -import FlowEpoch from 0xEPOCHADDRESS +import FlowEpoch from "FlowEpoch" transaction(newPhaseViews: UInt64) { prepare(signer: auth(BorrowValue) &Account) { diff --git a/transactions/epoch/admin/update_epoch_config.cdc b/transactions/epoch/admin/update_epoch_config.cdc index a063ccf68..1b7d08400 100644 --- a/transactions/epoch/admin/update_epoch_config.cdc +++ b/transactions/epoch/admin/update_epoch_config.cdc @@ -1,4 +1,4 @@ -import FlowEpoch from 0xEPOCHADDRESS +import FlowEpoch from "FlowEpoch" transaction(dkgPhaseLen: UInt64, stakingLen: UInt64, epochLen: UInt64) { prepare(signer: auth(BorrowValue) &Account) { diff --git a/transactions/epoch/admin/update_epoch_views.cdc b/transactions/epoch/admin/update_epoch_views.cdc index 3ee2a8bb3..ea55243b6 100644 --- a/transactions/epoch/admin/update_epoch_views.cdc +++ b/transactions/epoch/admin/update_epoch_views.cdc @@ -1,4 +1,4 @@ -import FlowEpoch from 0xEPOCHADDRESS +import FlowEpoch from "FlowEpoch" transaction(newAuctionViews: UInt64) { prepare(signer: auth(BorrowValue) &Account) { diff --git a/transactions/epoch/admin/update_reward.cdc b/transactions/epoch/admin/update_reward.cdc index bc433c899..aba2a5a5c 100644 --- a/transactions/epoch/admin/update_reward.cdc +++ b/transactions/epoch/admin/update_reward.cdc @@ -1,4 +1,4 @@ -import FlowEpoch from 0xEPOCHADDRESS +import FlowEpoch from "FlowEpoch" transaction(newRewardAPY: UFix64) { prepare(signer: auth(BorrowValue) &Account) { diff --git a/transactions/epoch/admin/update_staking_views.cdc b/transactions/epoch/admin/update_staking_views.cdc index 2e8c60447..0a15aa0ec 100644 --- a/transactions/epoch/admin/update_staking_views.cdc +++ b/transactions/epoch/admin/update_staking_views.cdc @@ -1,4 +1,4 @@ -import FlowEpoch from 0xEPOCHADDRESS +import FlowEpoch from "FlowEpoch" transaction(newStakingViews: UInt64) { prepare(signer: auth(BorrowValue) &Account) { diff --git a/transactions/epoch/node/register_dkg_participant.cdc b/transactions/epoch/node/register_dkg_participant.cdc index 2f20ead60..8f40ffc5b 100644 --- a/transactions/epoch/node/register_dkg_participant.cdc +++ b/transactions/epoch/node/register_dkg_participant.cdc @@ -1,6 +1,6 @@ -import FlowEpoch from 0xEPOCHADDRESS +import FlowEpoch from "FlowEpoch" import FlowIDTableStaking from "FlowIDTableStaking" -import FlowDKG from 0xDKGADDRESS +import FlowDKG from "FlowDKG" transaction() { diff --git a/transactions/epoch/node/register_node.cdc b/transactions/epoch/node/register_node.cdc index 682e3a879..2a931c301 100644 --- a/transactions/epoch/node/register_node.cdc +++ b/transactions/epoch/node/register_node.cdc @@ -1,9 +1,9 @@ import Crypto import FlowIDTableStaking from "FlowIDTableStaking" import FlowToken from "FlowToken" -import FlowClusterQC from 0xQCADDRESS -import FlowDKG from 0xDKGADDRESS -import FlowEpoch from 0xEPOCHADDRESS +import FlowClusterQC from "FlowClusterQC" +import FlowDKG from "FlowDKG" +import FlowEpoch from "FlowEpoch" import FungibleToken from "FungibleToken" // This transaction creates a new node struct object diff --git a/transactions/epoch/node/register_qc_voter.cdc b/transactions/epoch/node/register_qc_voter.cdc index 8e9226289..44e406a42 100644 --- a/transactions/epoch/node/register_qc_voter.cdc +++ b/transactions/epoch/node/register_qc_voter.cdc @@ -1,6 +1,6 @@ -import FlowEpoch from 0xEPOCHADDRESS +import FlowEpoch from "FlowEpoch" import FlowIDTableStaking from "FlowIDTableStaking" -import FlowClusterQC from 0xQCADDRESS +import FlowClusterQC from "FlowClusterQC" transaction() { diff --git a/transactions/epoch/scripts/get_create_clusters.cdc b/transactions/epoch/scripts/get_create_clusters.cdc index 0a4f8f305..2700c7ae4 100644 --- a/transactions/epoch/scripts/get_create_clusters.cdc +++ b/transactions/epoch/scripts/get_create_clusters.cdc @@ -1,4 +1,4 @@ -import FlowEpoch from 0xEPOCHADDRESS +import FlowEpoch from "FlowEpoch" import FlowClusterQC from 0xQCADDRESS access(all) fun main(array: [String]): [FlowClusterQC.Cluster] { diff --git a/transactions/epoch/scripts/get_randomize.cdc b/transactions/epoch/scripts/get_randomize.cdc index 3f7fef775..dd92d5c5c 100644 --- a/transactions/epoch/scripts/get_randomize.cdc +++ b/transactions/epoch/scripts/get_randomize.cdc @@ -1,4 +1,4 @@ -import FlowEpoch from 0xEPOCHADDRESS +import FlowEpoch from "FlowEpoch" access(all) fun main(array: [String]): [String] { return FlowEpoch.randomize(array) diff --git a/transactions/flowToken/create_forwarder.cdc b/transactions/flowToken/create_forwarder.cdc index 8fa4d7d6b..798cf1695 100644 --- a/transactions/flowToken/create_forwarder.cdc +++ b/transactions/flowToken/create_forwarder.cdc @@ -25,7 +25,7 @@ Steps to set up accounts with token forwarder: import FungibleToken from "FungibleToken" import FlowToken from "FlowToken" -import TokenForwarding from 0xFORWARDINGADDRESS +import TokenForwarding from "TokenForwarding" transaction(receiver: Address) { diff --git a/transactions/idTableStaking/admin/transfer_fees_admin.cdc b/transactions/idTableStaking/admin/transfer_fees_admin.cdc index 87884eae1..b1f4fbb49 100644 --- a/transactions/idTableStaking/admin/transfer_fees_admin.cdc +++ b/transactions/idTableStaking/admin/transfer_fees_admin.cdc @@ -1,4 +1,4 @@ -import FlowFees from 0xFLOWFEESADDRESS +import FlowFees from "FlowFees" transaction { diff --git a/transactions/inspect_field.cdc b/transactions/inspect_field.cdc deleted file mode 100644 index 2bc4301f3..000000000 --- a/transactions/inspect_field.cdc +++ /dev/null @@ -1,6 +0,0 @@ -import FlowServiceAccount from 0xf8d6e0586b0a20c7 - -access(all) -fun main(): UFix64 { - return FlowServiceAccount.transactionFee -} diff --git a/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc b/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc index 208453fd7..c8a803433 100644 --- a/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc +++ b/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc @@ -1,7 +1,7 @@ import Crypto import FlowToken from "FlowToken" import FungibleToken from "FungibleToken" -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" /// Transaction that the main token admin would sign /// to create a shared account and an unlocked diff --git a/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc b/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc index 70fd8f643..5b8340a2d 100644 --- a/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc +++ b/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc @@ -1,4 +1,4 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" /// token admin signs this transaction to deposit a capability /// into a custody provider's account that allows them to add diff --git a/transactions/lockedTokens/admin/admin_remove_delegator.cdc b/transactions/lockedTokens/admin/admin_remove_delegator.cdc index e5017662c..ecc812332 100644 --- a/transactions/lockedTokens/admin/admin_remove_delegator.cdc +++ b/transactions/lockedTokens/admin/admin_remove_delegator.cdc @@ -1,5 +1,5 @@ import FlowIDTableStaking from "FlowIDTableStaking" -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" transaction { diff --git a/transactions/lockedTokens/admin/check_main_registration.cdc b/transactions/lockedTokens/admin/check_main_registration.cdc index b074ad81b..52c83f731 100644 --- a/transactions/lockedTokens/admin/check_main_registration.cdc +++ b/transactions/lockedTokens/admin/check_main_registration.cdc @@ -1,7 +1,7 @@ import FungibleToken from "FungibleToken" import FlowToken from "FlowToken" -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" transaction(mainAccount: Address) { diff --git a/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc b/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc index 80ad6466c..68bb2278b 100644 --- a/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc @@ -1,7 +1,7 @@ import Crypto import FlowToken from "FlowToken" import FungibleToken from "FungibleToken" -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" /// Transaction that a custody provider would sign /// to create a shared account and an unlocked diff --git a/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc b/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc index cb59bea1f..811ecface 100644 --- a/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc @@ -1,7 +1,7 @@ import Crypto import FlowToken from "FlowToken" import FungibleToken from "FungibleToken" -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" /// Transaction that a custody provider would sign /// to create a shared account for a user who already diff --git a/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc b/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc index 14943ac00..fa75523aa 100644 --- a/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc @@ -1,7 +1,7 @@ import Crypto import FlowToken from "FlowToken" import FungibleToken from "FungibleToken" -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" /// Transaction that a custody provider would sign /// to create a shared account for a user who already diff --git a/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc b/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc index 50de32a8b..071c1c72c 100644 --- a/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc +++ b/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc @@ -1,7 +1,7 @@ import Crypto import FlowToken from "FlowToken" import FungibleToken from "FungibleToken" -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" /// Transaction that a custody provider would sign /// to create a shared account and an unlocked diff --git a/transactions/lockedTokens/admin/custody_setup_account_creator.cdc b/transactions/lockedTokens/admin/custody_setup_account_creator.cdc index d16db0c87..b939161b9 100644 --- a/transactions/lockedTokens/admin/custody_setup_account_creator.cdc +++ b/transactions/lockedTokens/admin/custody_setup_account_creator.cdc @@ -1,4 +1,4 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" transaction { diff --git a/transactions/lockedTokens/admin/deposit_locked_tokens.cdc b/transactions/lockedTokens/admin/deposit_locked_tokens.cdc index 014572c0c..603159189 100644 --- a/transactions/lockedTokens/admin/deposit_locked_tokens.cdc +++ b/transactions/lockedTokens/admin/deposit_locked_tokens.cdc @@ -1,7 +1,7 @@ import FungibleToken from "FungibleToken" import FlowToken from "FlowToken" -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" transaction(to: Address, amount: UFix64) { diff --git a/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc b/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc index d3ede5279..cdba4498c 100644 --- a/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc +++ b/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc @@ -1,4 +1,4 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" // This transaction uses the locked tokens admin // to set the unlock limit for multiple accounts diff --git a/transactions/lockedTokens/delegator/delegate_new_tokens.cdc b/transactions/lockedTokens/delegator/delegate_new_tokens.cdc index c46546382..f6810bbe1 100644 --- a/transactions/lockedTokens/delegator/delegate_new_tokens.cdc +++ b/transactions/lockedTokens/delegator/delegate_new_tokens.cdc @@ -1,6 +1,6 @@ import FlowToken from "FlowToken" import FungibleToken from "FungibleToken" -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" transaction(amount: UFix64) { diff --git a/transactions/lockedTokens/delegator/delegate_rewarded_tokens.cdc b/transactions/lockedTokens/delegator/delegate_rewarded_tokens.cdc index 7494fe801..cadf5843d 100644 --- a/transactions/lockedTokens/delegator/delegate_rewarded_tokens.cdc +++ b/transactions/lockedTokens/delegator/delegate_rewarded_tokens.cdc @@ -1,4 +1,4 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" import FungibleToken from "FungibleToken" transaction(amount: UFix64) { diff --git a/transactions/lockedTokens/delegator/delegate_unstaked_tokens.cdc b/transactions/lockedTokens/delegator/delegate_unstaked_tokens.cdc index 82b2852f6..28ced55d0 100644 --- a/transactions/lockedTokens/delegator/delegate_unstaked_tokens.cdc +++ b/transactions/lockedTokens/delegator/delegate_unstaked_tokens.cdc @@ -1,4 +1,4 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" import FungibleToken from "FungibleToken" transaction(amount: UFix64) { diff --git a/transactions/lockedTokens/delegator/get_delegator_id.cdc b/transactions/lockedTokens/delegator/get_delegator_id.cdc index b0a70c04d..2cc5e01ac 100644 --- a/transactions/lockedTokens/delegator/get_delegator_id.cdc +++ b/transactions/lockedTokens/delegator/get_delegator_id.cdc @@ -1,4 +1,4 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" access(all) fun main(account: Address): UInt32 { diff --git a/transactions/lockedTokens/delegator/get_delegator_info.cdc b/transactions/lockedTokens/delegator/get_delegator_info.cdc index d3bd53707..5e9cd6bba 100644 --- a/transactions/lockedTokens/delegator/get_delegator_info.cdc +++ b/transactions/lockedTokens/delegator/get_delegator_info.cdc @@ -1,5 +1,5 @@ import FlowIDTableStaking from "FlowIDTableStaking" -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" // Returns an array of DelegatorInfo objects that the account controls // in its normal account and shared account diff --git a/transactions/lockedTokens/delegator/get_delegator_node_id.cdc b/transactions/lockedTokens/delegator/get_delegator_node_id.cdc index afdf3bb7c..938f59743 100644 --- a/transactions/lockedTokens/delegator/get_delegator_node_id.cdc +++ b/transactions/lockedTokens/delegator/get_delegator_node_id.cdc @@ -1,4 +1,4 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" access(all) fun main(account: Address): String { diff --git a/transactions/lockedTokens/delegator/register_delegator.cdc b/transactions/lockedTokens/delegator/register_delegator.cdc index fa2686fd8..48cd0da81 100644 --- a/transactions/lockedTokens/delegator/register_delegator.cdc +++ b/transactions/lockedTokens/delegator/register_delegator.cdc @@ -1,5 +1,5 @@ import FlowToken from "FlowToken" -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" import FlowIDTableStaking from "FlowIDTableStaking" import FungibleToken from "FungibleToken" diff --git a/transactions/lockedTokens/delegator/request_unstaking.cdc b/transactions/lockedTokens/delegator/request_unstaking.cdc index d0f031d77..42aa9fc44 100644 --- a/transactions/lockedTokens/delegator/request_unstaking.cdc +++ b/transactions/lockedTokens/delegator/request_unstaking.cdc @@ -1,4 +1,4 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" import FungibleToken from "FungibleToken" transaction(amount: UFix64) { diff --git a/transactions/lockedTokens/delegator/withdraw_rewarded_tokens.cdc b/transactions/lockedTokens/delegator/withdraw_rewarded_tokens.cdc index 4164c039c..25831a4d7 100644 --- a/transactions/lockedTokens/delegator/withdraw_rewarded_tokens.cdc +++ b/transactions/lockedTokens/delegator/withdraw_rewarded_tokens.cdc @@ -1,4 +1,4 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" import FlowToken from "FlowToken" import FungibleToken from "FungibleToken" diff --git a/transactions/lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc b/transactions/lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc index ea45adb77..08c0b4321 100644 --- a/transactions/lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc +++ b/transactions/lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc @@ -1,4 +1,4 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" import FungibleToken from "FungibleToken" transaction(amount: UFix64) { diff --git a/transactions/lockedTokens/delegator/withdraw_unstaked_tokens.cdc b/transactions/lockedTokens/delegator/withdraw_unstaked_tokens.cdc index 4c1de5f41..c58b3c807 100644 --- a/transactions/lockedTokens/delegator/withdraw_unstaked_tokens.cdc +++ b/transactions/lockedTokens/delegator/withdraw_unstaked_tokens.cdc @@ -1,4 +1,4 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" import FungibleToken from "FungibleToken" transaction(amount: UFix64) { diff --git a/transactions/lockedTokens/staker/get_node_id.cdc b/transactions/lockedTokens/staker/get_node_id.cdc index e69e1bb97..eb5235b04 100644 --- a/transactions/lockedTokens/staker/get_node_id.cdc +++ b/transactions/lockedTokens/staker/get_node_id.cdc @@ -1,4 +1,4 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" access(all) fun main(account: Address): String { diff --git a/transactions/lockedTokens/staker/get_staker_info.cdc b/transactions/lockedTokens/staker/get_staker_info.cdc index aa7ca7403..d9b289da8 100644 --- a/transactions/lockedTokens/staker/get_staker_info.cdc +++ b/transactions/lockedTokens/staker/get_staker_info.cdc @@ -1,5 +1,5 @@ import FlowIDTableStaking from "FlowIDTableStaking" -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" // Returns an array of NodeInfo objects that the account controls // in its normal account and shared account diff --git a/transactions/lockedTokens/staker/register_node.cdc b/transactions/lockedTokens/staker/register_node.cdc index 8ed6563db..5aeb2cb5f 100644 --- a/transactions/lockedTokens/staker/register_node.cdc +++ b/transactions/lockedTokens/staker/register_node.cdc @@ -1,7 +1,7 @@ import FlowToken from "FlowToken" import FungibleToken from "FungibleToken" -import LockedTokens from 0xLOCKEDTOKENADDRESS -import StakingProxy from 0xSTAKINGPROXYADDRESS +import LockedTokens from "LockedTokens" +import StakingProxy from "StakingProxy" transaction(id: String, role: UInt8, networkingAddress: String, networkingKey: String, stakingKey: String, amount: UFix64) { diff --git a/transactions/lockedTokens/staker/request_unstaking.cdc b/transactions/lockedTokens/staker/request_unstaking.cdc index 67c17e6de..d3b8cc317 100644 --- a/transactions/lockedTokens/staker/request_unstaking.cdc +++ b/transactions/lockedTokens/staker/request_unstaking.cdc @@ -1,5 +1,5 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS -import StakingProxy from 0xSTAKINGPROXYADDRESS +import LockedTokens from "LockedTokens" +import StakingProxy from "StakingProxy" import FungibleToken from "FungibleToken" transaction(amount: UFix64) { diff --git a/transactions/lockedTokens/staker/stake_new_tokens.cdc b/transactions/lockedTokens/staker/stake_new_tokens.cdc index 8a7a98c19..5b83deaeb 100644 --- a/transactions/lockedTokens/staker/stake_new_tokens.cdc +++ b/transactions/lockedTokens/staker/stake_new_tokens.cdc @@ -1,7 +1,7 @@ import FlowToken from "FlowToken" import FungibleToken from "FungibleToken" -import LockedTokens from 0xLOCKEDTOKENADDRESS -import StakingProxy from 0xSTAKINGPROXYADDRESS +import LockedTokens from "LockedTokens" +import StakingProxy from "StakingProxy" transaction(amount: UFix64) { diff --git a/transactions/lockedTokens/staker/stake_rewarded_tokens.cdc b/transactions/lockedTokens/staker/stake_rewarded_tokens.cdc index d8d5a6837..cd3f69c70 100644 --- a/transactions/lockedTokens/staker/stake_rewarded_tokens.cdc +++ b/transactions/lockedTokens/staker/stake_rewarded_tokens.cdc @@ -1,5 +1,5 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS -import StakingProxy from 0xSTAKINGPROXYADDRESS +import LockedTokens from "LockedTokens" +import StakingProxy from "StakingProxy" import FungibleToken from "FungibleToken" transaction(amount: UFix64) { diff --git a/transactions/lockedTokens/staker/stake_unstaked_tokens.cdc b/transactions/lockedTokens/staker/stake_unstaked_tokens.cdc index fdea2a8bb..4a0c0959a 100644 --- a/transactions/lockedTokens/staker/stake_unstaked_tokens.cdc +++ b/transactions/lockedTokens/staker/stake_unstaked_tokens.cdc @@ -1,5 +1,5 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS -import StakingProxy from 0xSTAKINGPROXYADDRESS +import LockedTokens from "LockedTokens" +import StakingProxy from "StakingProxy" import FungibleToken from "FungibleToken" transaction(amount: UFix64) { diff --git a/transactions/lockedTokens/staker/unstake_all.cdc b/transactions/lockedTokens/staker/unstake_all.cdc index ab365c8d3..1ebe5104b 100644 --- a/transactions/lockedTokens/staker/unstake_all.cdc +++ b/transactions/lockedTokens/staker/unstake_all.cdc @@ -1,5 +1,4 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS -import StakingProxy from 0xSTAKINGPROXYADDRESS +import LockedTokens from "LockedTokens" import FungibleToken from "FungibleToken" transaction() { diff --git a/transactions/lockedTokens/staker/update_networking_address.cdc b/transactions/lockedTokens/staker/update_networking_address.cdc index 274d5abc3..a8d591818 100644 --- a/transactions/lockedTokens/staker/update_networking_address.cdc +++ b/transactions/lockedTokens/staker/update_networking_address.cdc @@ -1,4 +1,4 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" import FungibleToken from "FungibleToken" transaction(newAddress: String) { diff --git a/transactions/lockedTokens/staker/withdraw_rewarded_tokens.cdc b/transactions/lockedTokens/staker/withdraw_rewarded_tokens.cdc index acd4a28b3..a1eab9540 100644 --- a/transactions/lockedTokens/staker/withdraw_rewarded_tokens.cdc +++ b/transactions/lockedTokens/staker/withdraw_rewarded_tokens.cdc @@ -1,4 +1,4 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" import FlowToken from "FlowToken" import FungibleToken from "FungibleToken" diff --git a/transactions/lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc b/transactions/lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc index ed3aab5eb..43396dae5 100644 --- a/transactions/lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc +++ b/transactions/lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc @@ -1,5 +1,4 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS -import StakingProxy from 0xSTAKINGPROXYADDRESS +import LockedTokens from "LockedTokens" import FungibleToken from "FungibleToken" transaction(amount: UFix64) { diff --git a/transactions/lockedTokens/staker/withdraw_unstaked_tokens.cdc b/transactions/lockedTokens/staker/withdraw_unstaked_tokens.cdc index 60423f4d4..d74fb6d5b 100644 --- a/transactions/lockedTokens/staker/withdraw_unstaked_tokens.cdc +++ b/transactions/lockedTokens/staker/withdraw_unstaked_tokens.cdc @@ -1,5 +1,4 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS -import StakingProxy from 0xSTAKINGPROXYADDRESS +import LockedTokens from "LockedTokens" import FungibleToken from "FungibleToken" transaction(amount: UFix64) { diff --git a/transactions/lockedTokens/user/deposit_tokens.cdc b/transactions/lockedTokens/user/deposit_tokens.cdc index 29d4a24f6..409089446 100644 --- a/transactions/lockedTokens/user/deposit_tokens.cdc +++ b/transactions/lockedTokens/user/deposit_tokens.cdc @@ -1,6 +1,6 @@ import FungibleToken from "FungibleToken" import FlowToken from "FlowToken" -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" transaction(amount: UFix64) { diff --git a/transactions/lockedTokens/user/get_locked_account_address.cdc b/transactions/lockedTokens/user/get_locked_account_address.cdc index d42bd13e4..11c2c3ca2 100644 --- a/transactions/lockedTokens/user/get_locked_account_address.cdc +++ b/transactions/lockedTokens/user/get_locked_account_address.cdc @@ -1,4 +1,4 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" access(all) fun main(account: Address): Address { diff --git a/transactions/lockedTokens/user/get_locked_account_balance.cdc b/transactions/lockedTokens/user/get_locked_account_balance.cdc index 5e7c42772..319d27175 100644 --- a/transactions/lockedTokens/user/get_locked_account_balance.cdc +++ b/transactions/lockedTokens/user/get_locked_account_balance.cdc @@ -1,4 +1,4 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" access(all) fun main(account: Address): UFix64 { diff --git a/transactions/lockedTokens/user/get_multiple_unlock_limits.cdc b/transactions/lockedTokens/user/get_multiple_unlock_limits.cdc index a62cfe69b..9b0492123 100644 --- a/transactions/lockedTokens/user/get_multiple_unlock_limits.cdc +++ b/transactions/lockedTokens/user/get_multiple_unlock_limits.cdc @@ -1,4 +1,4 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" access(all) fun main(accounts: [Address]): [UFix64] { diff --git a/transactions/lockedTokens/user/get_total_balance.cdc b/transactions/lockedTokens/user/get_total_balance.cdc index aab369238..9927c0d20 100644 --- a/transactions/lockedTokens/user/get_total_balance.cdc +++ b/transactions/lockedTokens/user/get_total_balance.cdc @@ -1,7 +1,7 @@ import FungibleToken from "FungibleToken" import FlowToken from "FlowToken" import FlowIDTableStaking from "FlowIDTableStaking" -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" // This script gets the TOTAL number of FLOW an account owns, across unlocked, locked, and staking. diff --git a/transactions/lockedTokens/user/get_unlock_limit.cdc b/transactions/lockedTokens/user/get_unlock_limit.cdc index 94ee17416..057aafce7 100644 --- a/transactions/lockedTokens/user/get_unlock_limit.cdc +++ b/transactions/lockedTokens/user/get_unlock_limit.cdc @@ -1,4 +1,4 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" access(all) fun main(account: Address): UFix64 { diff --git a/transactions/lockedTokens/user/withdraw_tokens.cdc b/transactions/lockedTokens/user/withdraw_tokens.cdc index cff2768b7..b45245f9f 100644 --- a/transactions/lockedTokens/user/withdraw_tokens.cdc +++ b/transactions/lockedTokens/user/withdraw_tokens.cdc @@ -1,6 +1,6 @@ import FungibleToken from "FungibleToken" import FlowToken from "FlowToken" -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" transaction(amount: UFix64) { diff --git a/transactions/nodeVersionBeacon/admin/set_version_boundary.cdc b/transactions/nodeVersionBeacon/admin/set_version_boundary.cdc index 3248a325d..6987de03f 100644 --- a/transactions/nodeVersionBeacon/admin/set_version_boundary.cdc +++ b/transactions/nodeVersionBeacon/admin/set_version_boundary.cdc @@ -1,4 +1,4 @@ -import NodeVersionBeacon from 0xNODEVERSIONBEACONADDRESS +import NodeVersionBeacon from "NodeVersionBeacon" /// Transaction that allows NodeVersionAdmin to add a new version to the /// version table defining a version boundary at the targetBlockHeight diff --git a/transactions/quorumCertificate/admin/publish_voter.cdc b/transactions/quorumCertificate/admin/publish_voter.cdc index dffdd0cc7..8faed23e5 100644 --- a/transactions/quorumCertificate/admin/publish_voter.cdc +++ b/transactions/quorumCertificate/admin/publish_voter.cdc @@ -1,4 +1,4 @@ -import FlowClusterQC from 0xQCADDRESS +import FlowClusterQC from "FlowClusterQC" // Test transaction for the QC admin to publish a reference // that allows accounts to register for QC voting diff --git a/transactions/quorumCertificate/create_voter.cdc b/transactions/quorumCertificate/create_voter.cdc index f01320bcd..2b831b68e 100644 --- a/transactions/quorumCertificate/create_voter.cdc +++ b/transactions/quorumCertificate/create_voter.cdc @@ -1,4 +1,4 @@ -import FlowClusterQC from 0xQCADDRESS +import FlowClusterQC from "FlowClusterQC" // Test Transaction for a node to request a QC Voter Object from the contract // Will be updated to use the epoch contract when that is completed diff --git a/transactions/stakingCollection/close_stake.cdc b/transactions/stakingCollection/close_stake.cdc index 22899cba8..cf59d01e8 100644 --- a/transactions/stakingCollection/close_stake.cdc +++ b/transactions/stakingCollection/close_stake.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import FlowStakingCollection from "FlowStakingCollection" // Closes out a staking object in the staking collection // This does not remove the record from the identity table, diff --git a/transactions/stakingCollection/create_machine_account.cdc b/transactions/stakingCollection/create_machine_account.cdc index 3d29b032a..6a496bad9 100644 --- a/transactions/stakingCollection/create_machine_account.cdc +++ b/transactions/stakingCollection/create_machine_account.cdc @@ -1,5 +1,5 @@ import Crypto -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import FlowStakingCollection from "FlowStakingCollection" /// Creates a machine account for a node that is already in the staking collection /// and adds public keys to the new account diff --git a/transactions/stakingCollection/create_new_tokenholder_acct.cdc b/transactions/stakingCollection/create_new_tokenholder_acct.cdc index 8d5af1295..42e972bce 100644 --- a/transactions/stakingCollection/create_new_tokenholder_acct.cdc +++ b/transactions/stakingCollection/create_new_tokenholder_acct.cdc @@ -1,8 +1,8 @@ import Crypto import FlowToken from "FlowToken" import FungibleToken from "FungibleToken" -import LockedTokens from 0xLOCKEDTOKENADDRESS -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import LockedTokens from "LockedTokens" +import FlowStakingCollection from "FlowStakingCollection" // This transaction allows the controller of the locked account // to create a new LockedTokens.TokenHolder object and store it in a new account diff --git a/transactions/stakingCollection/register_delegator.cdc b/transactions/stakingCollection/register_delegator.cdc index c99fea38e..dadfb4a7b 100644 --- a/transactions/stakingCollection/register_delegator.cdc +++ b/transactions/stakingCollection/register_delegator.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import FlowStakingCollection from "FlowStakingCollection" /// Registers a delegator in the staking collection resource /// for the specified nodeID and the amount of tokens to commit diff --git a/transactions/stakingCollection/register_multiple_delegators.cdc b/transactions/stakingCollection/register_multiple_delegators.cdc index a8324ca89..2bc56dd43 100644 --- a/transactions/stakingCollection/register_multiple_delegators.cdc +++ b/transactions/stakingCollection/register_multiple_delegators.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import FlowStakingCollection from "FlowStakingCollection" /// Registers multiple delegators in the staking collection resource /// for the specified nodeIDs and amount of tokens to commit diff --git a/transactions/stakingCollection/register_multiple_nodes.cdc b/transactions/stakingCollection/register_multiple_nodes.cdc index aa3b1c9d4..5a2aa1fea 100644 --- a/transactions/stakingCollection/register_multiple_nodes.cdc +++ b/transactions/stakingCollection/register_multiple_nodes.cdc @@ -1,5 +1,5 @@ import Crypto -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import FlowStakingCollection from "FlowStakingCollection" /// Registers multiple nodes in the staking collection resource /// for the specified node information diff --git a/transactions/stakingCollection/register_node.cdc b/transactions/stakingCollection/register_node.cdc index 9aff5e5a3..f27183574 100644 --- a/transactions/stakingCollection/register_node.cdc +++ b/transactions/stakingCollection/register_node.cdc @@ -1,5 +1,5 @@ import Crypto -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import FlowStakingCollection from "FlowStakingCollection" /// Registers a delegator in the staking collection resource /// for the specified node information and the amount of tokens to commit diff --git a/transactions/stakingCollection/request_unstaking.cdc b/transactions/stakingCollection/request_unstaking.cdc index 44129a2ab..cbd64e912 100644 --- a/transactions/stakingCollection/request_unstaking.cdc +++ b/transactions/stakingCollection/request_unstaking.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import FlowStakingCollection from "FlowStakingCollection" /// Requests unstaking for the specified node or delegator in the staking collection diff --git a/transactions/stakingCollection/restake_all_stakers.cdc b/transactions/stakingCollection/restake_all_stakers.cdc index ff016fec1..26c8db08e 100644 --- a/transactions/stakingCollection/restake_all_stakers.cdc +++ b/transactions/stakingCollection/restake_all_stakers.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import FlowStakingCollection from "FlowStakingCollection" import FlowIDTableStaking from "FlowIDTableStaking" /// Commits rewarded tokens to stake for all nodes and delegators in a collection diff --git a/transactions/stakingCollection/scripts/get_all_delegator_info.cdc b/transactions/stakingCollection/scripts/get_all_delegator_info.cdc index 3346b7165..ae450d691 100644 --- a/transactions/stakingCollection/scripts/get_all_delegator_info.cdc +++ b/transactions/stakingCollection/scripts/get_all_delegator_info.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import FlowStakingCollection from "FlowStakingCollection" import FlowIDTableStaking from "FlowIDTableStaking" /// Gets an array of all the delegator metadata for delegators stored in the staking collection diff --git a/transactions/stakingCollection/scripts/get_all_node_info.cdc b/transactions/stakingCollection/scripts/get_all_node_info.cdc index 2d27dbece..1640ef590 100644 --- a/transactions/stakingCollection/scripts/get_all_node_info.cdc +++ b/transactions/stakingCollection/scripts/get_all_node_info.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import FlowStakingCollection from "FlowStakingCollection" import FlowIDTableStaking from "FlowIDTableStaking" /// Gets an array of all the node metadata for nodes stored in the staking collection diff --git a/transactions/stakingCollection/scripts/get_does_stake_exist.cdc b/transactions/stakingCollection/scripts/get_does_stake_exist.cdc index bf1b03981..6ac46288b 100644 --- a/transactions/stakingCollection/scripts/get_does_stake_exist.cdc +++ b/transactions/stakingCollection/scripts/get_does_stake_exist.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import FlowStakingCollection from "FlowStakingCollection" import FlowIDTableStaking from "FlowIDTableStaking" /// Tells if the specified node or delegator exists in the staking collection diff --git a/transactions/stakingCollection/setup_staking_collection.cdc b/transactions/stakingCollection/setup_staking_collection.cdc index 182b1c065..fd48f7395 100644 --- a/transactions/stakingCollection/setup_staking_collection.cdc +++ b/transactions/stakingCollection/setup_staking_collection.cdc @@ -1,8 +1,8 @@ import FungibleToken from "FungibleToken" import FlowToken from "FlowToken" import FlowIDTableStaking from "FlowIDTableStaking" -import LockedTokens from 0xLOCKEDTOKENADDRESS -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import LockedTokens from "LockedTokens" +import FlowStakingCollection from "FlowStakingCollection" /// This transaction sets up an account to use a staking collection /// It will work regardless of whether they have a regular account, a two-account locked tokens setup, diff --git a/transactions/stakingCollection/stake_new_tokens.cdc b/transactions/stakingCollection/stake_new_tokens.cdc index af26f4f56..26418d342 100644 --- a/transactions/stakingCollection/stake_new_tokens.cdc +++ b/transactions/stakingCollection/stake_new_tokens.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import FlowStakingCollection from "FlowStakingCollection" /// Commits new tokens to stake for the specified node or delegator in the staking collection /// The tokens from the locked vault are used first, if it exists diff --git a/transactions/stakingCollection/stake_rewarded_tokens.cdc b/transactions/stakingCollection/stake_rewarded_tokens.cdc index 4a79dda94..30ec0a3ab 100644 --- a/transactions/stakingCollection/stake_rewarded_tokens.cdc +++ b/transactions/stakingCollection/stake_rewarded_tokens.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import FlowStakingCollection from "FlowStakingCollection" /// Commits rewarded tokens to stake for the specified node or delegator in the staking collection diff --git a/transactions/stakingCollection/stake_unstaked_tokens.cdc b/transactions/stakingCollection/stake_unstaked_tokens.cdc index 4b9c285e4..764b5bdea 100644 --- a/transactions/stakingCollection/stake_unstaked_tokens.cdc +++ b/transactions/stakingCollection/stake_unstaked_tokens.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import FlowStakingCollection from "FlowStakingCollection" /// Commits unstaked tokens to stake for the specified node or delegator in the staking collection diff --git a/transactions/stakingCollection/test/deposit_tokens.cdc b/transactions/stakingCollection/test/deposit_tokens.cdc index 3560d0cc5..228de87f4 100644 --- a/transactions/stakingCollection/test/deposit_tokens.cdc +++ b/transactions/stakingCollection/test/deposit_tokens.cdc @@ -1,7 +1,7 @@ -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import FlowStakingCollection from "FlowStakingCollection" import FlowToken from "FlowToken" import FungibleToken from "FungibleToken" -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" // Used only for test purposes to test the deposit token function in the staking collection diff --git a/transactions/stakingCollection/test/get_tokens.cdc b/transactions/stakingCollection/test/get_tokens.cdc index 953c24080..6f0ca3947 100644 --- a/transactions/stakingCollection/test/get_tokens.cdc +++ b/transactions/stakingCollection/test/get_tokens.cdc @@ -1,7 +1,7 @@ -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import FlowStakingCollection from "FlowStakingCollection" import FlowToken from "FlowToken" import FungibleToken from "FungibleToken" -import LockedTokens from 0xLOCKEDTOKENADDRESS +import LockedTokens from "LockedTokens" // Used only for test purposes to test the get tokens function in the staking collection diff --git a/transactions/stakingCollection/transfer_delegator.cdc b/transactions/stakingCollection/transfer_delegator.cdc index b9cbdc0ef..a9c1b19a2 100644 --- a/transactions/stakingCollection/transfer_delegator.cdc +++ b/transactions/stakingCollection/transfer_delegator.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import FlowStakingCollection from "FlowStakingCollection" // Transfers a NodeDelegator object from an authorizers accoount // and adds the NodeDelegator to another accounts Staking Collection diff --git a/transactions/stakingCollection/transfer_node.cdc b/transactions/stakingCollection/transfer_node.cdc index 9958c6eda..c7e392e89 100644 --- a/transactions/stakingCollection/transfer_node.cdc +++ b/transactions/stakingCollection/transfer_node.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import FlowStakingCollection from "FlowStakingCollection" // Transfers a NodeStaker object from an authorizers accoount // and adds the NodeStaker to another accounts Staking Collection diff --git a/transactions/stakingCollection/unstake_all.cdc b/transactions/stakingCollection/unstake_all.cdc index 4030bdf4f..98fee5ed2 100644 --- a/transactions/stakingCollection/unstake_all.cdc +++ b/transactions/stakingCollection/unstake_all.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import FlowStakingCollection from "FlowStakingCollection" /// Requests to unstake ALL tokens for the specified node or delegator in the staking collection diff --git a/transactions/stakingCollection/update_networking_address.cdc b/transactions/stakingCollection/update_networking_address.cdc index 5e3cf4ae0..494a8fc44 100644 --- a/transactions/stakingCollection/update_networking_address.cdc +++ b/transactions/stakingCollection/update_networking_address.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import FlowStakingCollection from "FlowStakingCollection" /// Changes the networking address for the specified node diff --git a/transactions/stakingCollection/withdraw_from_machine_account.cdc b/transactions/stakingCollection/withdraw_from_machine_account.cdc index 7e139289f..01f7538d5 100644 --- a/transactions/stakingCollection/withdraw_from_machine_account.cdc +++ b/transactions/stakingCollection/withdraw_from_machine_account.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import FlowStakingCollection from "FlowStakingCollection" /// Request to withdraw tokens from the machine account /// The tokens are automatically deposited to the unlocked account vault diff --git a/transactions/stakingCollection/withdraw_rewarded_tokens.cdc b/transactions/stakingCollection/withdraw_rewarded_tokens.cdc index e44b14df0..f4da578ee 100644 --- a/transactions/stakingCollection/withdraw_rewarded_tokens.cdc +++ b/transactions/stakingCollection/withdraw_rewarded_tokens.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import FlowStakingCollection from "FlowStakingCollection" /// Request to withdraw rewarded tokens for the specified node or delegator in the staking collection /// The tokens are automatically deposited to the unlocked account vault first, diff --git a/transactions/stakingCollection/withdraw_unstaked_tokens.cdc b/transactions/stakingCollection/withdraw_unstaked_tokens.cdc index 4e69e38ee..2c5d2093d 100644 --- a/transactions/stakingCollection/withdraw_unstaked_tokens.cdc +++ b/transactions/stakingCollection/withdraw_unstaked_tokens.cdc @@ -1,4 +1,4 @@ -import FlowStakingCollection from 0xSTAKINGCOLLECTIONADDRESS +import FlowStakingCollection from "FlowStakingCollection" /// Request to withdraw unstaked tokens for the specified node or delegator in the staking collection /// The tokens are automatically deposited to the unlocked account vault first, diff --git a/transactions/stakingProxy/get_node_info.cdc b/transactions/stakingProxy/get_node_info.cdc index 5818d36a1..572ef0949 100644 --- a/transactions/stakingProxy/get_node_info.cdc +++ b/transactions/stakingProxy/get_node_info.cdc @@ -1,4 +1,4 @@ -import StakingProxy from 0xSTAKINGPROXYADDRESS +import StakingProxy from "StakingProxy" access(all) fun main(account: Address, nodeID: String): StakingProxy.NodeInfo { diff --git a/transactions/stakingProxy/register_node.cdc b/transactions/stakingProxy/register_node.cdc index 4cb3907e8..0bc9029d4 100644 --- a/transactions/stakingProxy/register_node.cdc +++ b/transactions/stakingProxy/register_node.cdc @@ -1,5 +1,5 @@ -import LockedTokens from 0xLOCKEDTOKENADDRESS -import StakingProxy from 0xSTAKINGPROXYADDRESS +import LockedTokens from "LockedTokens" +import StakingProxy from "StakingProxy" transaction(address: Address, id: String, amount: UFix64) { diff --git a/transactions/stakingProxy/setup_node_account.cdc b/transactions/stakingProxy/setup_node_account.cdc index efad35e26..fc1f3aba4 100644 --- a/transactions/stakingProxy/setup_node_account.cdc +++ b/transactions/stakingProxy/setup_node_account.cdc @@ -1,4 +1,4 @@ -import StakingProxy from 0xSTAKINGPROXYADDRESS +import StakingProxy from "StakingProxy" transaction() { From 594be1e0285d3b0356c3ddaa62f1694ed06da0de Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 27 Feb 2024 17:03:13 -0600 Subject: [PATCH 089/160] get address replacement working in tests and add event emission restrictions for FlowToken --- contracts/FlowToken.cdc | 24 ++++++++- lib/go/contracts/go.sum | 2 - lib/go/templates/go.sum | 2 - lib/go/templates/internal/assets/assets.go | 54 +++++++++---------- lib/go/test/staking_test_helpers.go | 4 +- .../epoch/scripts/get_create_clusters.cdc | 2 +- 6 files changed, 52 insertions(+), 36 deletions(-) diff --git a/contracts/FlowToken.cdc b/contracts/FlowToken.cdc index 6d278b340..e6051d062 100644 --- a/contracts/FlowToken.cdc +++ b/contracts/FlowToken.cdc @@ -78,7 +78,17 @@ access(all) contract FlowToken: FungibleToken { // access(FungibleToken.Withdraw) fun withdraw(amount: UFix64): @{FungibleToken.Vault} { self.balance = self.balance - amount - emit TokensWithdrawn(amount: amount, from: self.owner?.address) + if let address = self.owner?.address { + if address != 0xf8d6e0586b0a20c7 && + address != 0xf4527793ee68aede && + address != 0x9eca2b38b18b5dfe && + address != 0x8624b52f9ddcd04a + { + emit TokensWithdrawn(amount: amount, from: address) + } + } else { + emit TokensWithdrawn(amount: amount, from: nil) + } return <-create Vault(balance: amount) } @@ -92,7 +102,17 @@ access(all) contract FlowToken: FungibleToken { access(all) fun deposit(from: @{FungibleToken.Vault}) { let vault <- from as! @FlowToken.Vault self.balance = self.balance + vault.balance - emit TokensDeposited(amount: vault.balance, to: self.owner?.address) + if let address = self.owner?.address { + if address != 0xf8d6e0586b0a20c7 && + address != 0xf4527793ee68aede && + address != 0x9eca2b38b18b5dfe && + address != 0x8624b52f9ddcd04a + { + emit TokensDeposited(amount: vault.balance, to: address) + } + } else { + emit TokensDeposited(amount: vault.balance, to: nil) + } vault.balance = 0.0 destroy vault } diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 14ae6ebd9..fe580230e 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1617,8 +1617,6 @@ github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9 h1:rTemckPWir+N/m1GyhT8jdiETj0RiWc8FiwItE2Nxyg= github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9/go.mod h1:PZrrCsllIt/Bu4HlJtisXfvDrOt1aLKU5R70vsZHKRc= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240205224107-320aa3cf09e0 h1:u6/YcUvO8jU0f3Evb/6agzXqeOo+VbL2a3mmj/5ifRs= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240205224107-320aa3cf09e0/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240213220156-959b70719876 h1:mV3OXBTDJ+nP3sJkoEUgrBXG2bMGFqsDTDr0nVmj2ec= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240213220156-959b70719876/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876 h1:fZj39XxayIL7uvKvonNI3MtQM3wsFJ8oRl/XW/0rn7A= diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index 90fe47dad..c2e4fa4e3 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -1619,8 +1619,6 @@ github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876 github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= -github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8 h1:BqgQgXktxVFv8erjCaSHpL0CP+pa5M8g655GyF/t4JM= -github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240214230837-cd2c42e54b4a h1:Ark2dPAaSxSr45G5WJjB1P5H0tFtXnHcOIp+dM146yo= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240214230837-cd2c42e54b4a/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 414c6c7f6..79d6db9ef 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -11,7 +11,7 @@ // FlowServiceAccount/scripts/get_fees_balance.cdc (103B) // FlowServiceAccount/scripts/get_is_account_creation_restricted.cdc (145B) // FlowServiceAccount/scripts/get_is_account_creator.cdc (157B) -// FlowServiceAccount/scripts/get_tx_fee_parameters.cdc (129B) +// FlowServiceAccount/scripts/get_tx_fee_parameters.cdc (122B) // FlowServiceAccount/set_execution_effort_weights.cdc (1.663kB) // FlowServiceAccount/set_execution_memory_limit.cdc (287B) // FlowServiceAccount/set_execution_memory_weights.cdc (315B) @@ -44,7 +44,7 @@ // dkg/send_whiteboard_message.cdc (412B) // epoch/admin/advance_view.cdc (667B) // epoch/admin/calculate_rewards.cdc (379B) -// epoch/admin/deploy_epoch.cdc (1.188kB) +// epoch/admin/deploy_epoch.cdc (1.192kB) // epoch/admin/deploy_qc_dkg.cdc (310B) // epoch/admin/pay_rewards.cdc (497B) // epoch/admin/reset_epoch.cdc (1.666kB) @@ -62,7 +62,7 @@ // epoch/node/register_qc_voter.cdc (548B) // epoch/scripts/get_bonus_tokens.cdc (108B) // epoch/scripts/get_config_metadata.cdc (121B) -// epoch/scripts/get_create_clusters.cdc (201B) +// epoch/scripts/get_create_clusters.cdc (205B) // epoch/scripts/get_current_view.cdc (147B) // epoch/scripts/get_epoch_counter.cdc (110B) // epoch/scripts/get_epoch_metadata.cdc (159B) @@ -289,12 +289,12 @@ // stakingProxy/unstake_all.cdc (457B) // stakingProxy/withdraw_rewards.cdc (499B) // stakingProxy/withdraw_unstaked.cdc (499B) -// storageFees/admin/set_parameters.cdc (854B) -// storageFees/scripts/get_account_available_balance.cdc (185B) -// storageFees/scripts/get_accounts_capacity_for_transaction_storage_check.cdc (324B) -// storageFees/scripts/get_storage_capacity.cdc (181B) -// storageFees/scripts/get_storage_fee_conversion.cdc (149B) -// storageFees/scripts/get_storage_fee_min.cdc (143B) +// storageFees/admin/set_parameters.cdc (847B) +// storageFees/scripts/get_account_available_balance.cdc (178B) +// storageFees/scripts/get_accounts_capacity_for_transaction_storage_check.cdc (317B) +// storageFees/scripts/get_storage_capacity.cdc (174B) +// storageFees/scripts/get_storage_fee_conversion.cdc (142B) +// storageFees/scripts/get_storage_fee_min.cdc (136B) package assets @@ -583,7 +583,7 @@ func flowserviceaccountScriptsGet_is_account_creatorCdc() (*asset, error) { return a, nil } -var _flowserviceaccountScriptsGet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x77\x73\x75\x0d\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x82\x6b\xd4\x73\x4b\x4d\x0d\x48\x2c\x4a\xcc\x4d\x2d\x49\x2d\x2a\x56\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\xa8\x49\x4f\x2d\x41\x51\xa6\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x09\x2c\xd3\xfc\x81\x00\x00\x00" +var _flowserviceaccountScriptsGet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x50\x82\x71\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\xe0\x3a\xf4\xdc\x52\x53\x03\x12\x8b\x12\x73\x53\x4b\x52\x8b\x8a\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\x6a\xd2\x53\x4b\x50\x94\x69\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x4a\xde\xf2\x2a\x7a\x00\x00\x00" func flowserviceaccountScriptsGet_tx_fee_parametersCdcBytes() ([]byte, error) { return bindataRead( @@ -599,7 +599,7 @@ func flowserviceaccountScriptsGet_tx_fee_parametersCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_tx_fee_parameters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe5, 0x1c, 0xec, 0x0, 0x38, 0xf6, 0x3d, 0x5a, 0x7e, 0x7a, 0x73, 0xd0, 0xe8, 0xa1, 0xf1, 0xd6, 0x81, 0x73, 0x5, 0x5e, 0x52, 0x4a, 0xe3, 0x75, 0x69, 0xbb, 0x77, 0xa7, 0x37, 0x63, 0xe4, 0x69}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xee, 0x8f, 0xb0, 0x94, 0x23, 0x9d, 0x6b, 0x38, 0x2f, 0x83, 0x12, 0xee, 0x19, 0x73, 0x3f, 0x9d, 0x78, 0x57, 0x4c, 0xb8, 0x2b, 0x65, 0xe9, 0xa3, 0x4, 0x2b, 0x93, 0xdf, 0xda, 0xb5, 0x9c}} return a, nil } @@ -1243,7 +1243,7 @@ func epochAdminCalculate_rewardsCdc() (*asset, error) { return a, nil } -var _epochAdminDeploy_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x6b\xf2\x40\x10\x86\xef\xf9\x15\x73\xfa\x50\x10\xf9\x0a\x45\x8a\xb7\x10\xb5\x88\x85\x6a\x43\xdb\x83\x78\xd8\x6e\xa6\x31\x98\xcc\x86\xd9\x5d\x54\x8a\xff\xbd\xc4\x44\x6a\x62\x4c\x6c\x73\x58\x92\x99\xe7\xdd\x2c\xb3\x4f\x94\xa4\x8a\x0d\x4c\x62\xb5\xf5\x62\xab\x0d\xf2\xc2\x83\x4f\x56\x09\xfc\xdf\x2d\x3c\x77\x34\x7a\x19\xfb\xbe\xe3\x18\x16\xa4\x85\x34\x91\xa2\x0e\x89\x04\x87\xe0\x1b\x8e\x28\xec\x81\x03\x67\x8f\x54\x01\x0e\x61\xf9\x3a\x25\xf3\xb0\xea\x95\x5b\x96\x19\xc9\x8c\x53\x25\xd7\x9e\xb2\x64\x90\x87\x90\x81\x83\xfb\x32\x48\x36\x79\x8b\x70\xab\xa7\x74\x64\xdb\x20\xdf\x88\x4d\x44\xa1\x6b\x8f\x87\x6b\xa3\x47\xb3\xc7\xf9\x5a\x68\xbc\xca\x79\x2a\x8e\x51\x1a\xc5\xc5\x34\x74\x4e\xde\x0d\xca\xe4\xe4\xe9\xf9\x5d\xdb\x34\x8d\xf7\x53\x92\x8c\x42\xe3\x1c\x59\x22\x19\x11\x66\x7b\x4f\xa2\x5d\x75\x6f\x16\x14\xa8\xc4\x57\x96\xe5\xcf\xf4\x2a\xc3\xbb\xf8\xf5\xb2\x74\x2f\xfd\xe2\xad\x3a\xd9\x53\xff\x6a\x60\xe1\x55\x22\xc1\x26\x9c\xdb\x8f\x19\xee\xb3\x48\x7e\x96\x55\x17\xbe\x1c\x07\x20\x65\x4c\x05\x63\x47\x47\x21\x65\x57\x24\xac\x59\x77\xdc\x20\xf0\x14\x19\x16\xd2\x74\xe1\x9f\x2b\x65\x76\x81\x45\x00\x20\x47\xfb\xb2\x20\x74\x5f\x04\x41\x61\x49\xb6\xd6\x3a\x92\xad\x37\x08\x52\x53\x6c\xb1\xa5\x52\xb8\x55\x9b\x6b\x9d\xca\xe1\xeb\x4c\xba\xac\x5d\x86\x6a\xb4\xaa\xab\xfe\x46\xb2\xa6\x6e\x93\x7a\xe7\x5f\xed\x02\xae\x40\xe8\x3f\x68\xd8\x10\x6b\x96\x31\x0f\x9e\x94\x74\x00\x0e\xce\xe1\x3b\x00\x00\xff\xff\xa4\x16\x25\xee\xa4\x04\x00\x00" +var _epochAdminDeploy_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xc1\x6b\xea\x40\x10\xc6\xef\xf9\x2b\x06\x0f\x0f\x05\x11\x1e\x3c\xe4\xe1\x4d\xd2\x5a\xc4\x42\x15\x69\x7b\x10\x0f\xdb\xcd\x34\x06\x93\xd9\x30\x3b\x8b\x95\xe2\xff\x5e\x62\x22\x35\x31\x26\xb6\x1e\x16\xf3\xcd\xf7\x6d\x26\x33\xbf\x28\x49\x0d\x0b\x4c\x62\xb3\xf3\x63\x67\x05\x79\xe1\xc3\x3b\x9b\x04\x3a\x25\xad\xe3\x79\xc2\x8a\xac\xd2\x12\x19\xea\x92\x4a\x70\x04\x4b\xe1\x88\xc2\x3e\x78\x70\xf6\xd3\x26\xc0\x11\xac\x9e\xa7\x24\xff\xd7\xfd\x72\xc9\x31\x23\xc9\x7d\x6a\xf4\xc6\x37\x8e\x04\x79\x04\x99\x71\xf8\xaf\x6c\x24\x97\xbc\x44\xb8\xb3\x53\x3a\x7a\xdb\x4c\x4b\x51\xdb\x88\xc2\xb1\x3b\x36\xd7\xe6\xbe\x9b\x3d\xcc\x37\xca\xe2\x55\x9f\x6f\xe2\x18\xb5\x18\x2e\xbe\xde\xe6\xce\xbf\xc3\xb2\x73\xf2\xf8\xf4\x6a\x5d\x9a\xc6\xfb\x29\x69\x46\x65\x71\x8e\xac\x91\x44\x85\xd9\xdd\x93\xe8\xa3\x7a\x37\x2b\x0a\x4c\xb2\x34\x8e\xf5\xf7\xf4\x2a\xc3\xbb\x78\xf5\xaa\xb4\x87\x41\xf1\xaf\x3a\xd9\x53\xfd\x6a\x60\xe1\x57\x22\xc1\x36\x9c\xbb\xb7\x19\xee\xb3\x48\xde\xcb\xba\x07\x9f\x9e\x07\x90\x32\xa6\x8a\xb1\x6b\xa3\x90\xb2\x15\x29\x27\x9b\xee\x38\x08\x7c\x43\xc2\x4a\x4b\x0f\xfe\x8c\xb5\xce\x16\x58\x04\x00\x72\xeb\x40\x17\x0e\x3b\x50\x41\x50\x50\x92\x9d\xb5\x8c\x64\xe7\x0d\x80\xd4\x88\x2d\xb4\x54\x84\x5b\xb1\xb9\x56\xa9\x34\x5f\x47\xd2\xa5\x76\x19\xaa\xc1\xaa\x4e\xfd\x09\x64\x4d\xd5\x26\xf4\xce\x9f\xda\x01\x5c\x83\xb2\xbf\xc0\xb0\x21\xd6\x0c\x63\x1e\x3c\x21\xe9\x01\x1c\xbc\xc3\x57\x00\x00\x00\xff\xff\x4b\x08\x37\x75\xa8\x04\x00\x00" func epochAdminDeploy_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1259,7 +1259,7 @@ func epochAdminDeploy_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/deploy_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8, 0x5d, 0xa4, 0x34, 0x7f, 0xf, 0xeb, 0x61, 0x83, 0xf2, 0xa1, 0xad, 0xff, 0xca, 0xec, 0xa8, 0xd9, 0x1a, 0xfc, 0xe8, 0x55, 0x5f, 0xfe, 0x54, 0xff, 0xab, 0x82, 0xcf, 0xa6, 0xf8, 0xab, 0xf1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc0, 0xec, 0x40, 0x48, 0x4, 0x2f, 0x71, 0x7b, 0xd8, 0xb, 0xbb, 0x6b, 0xa7, 0x3c, 0x3f, 0x5f, 0x22, 0x3e, 0x7d, 0xb, 0x7f, 0x80, 0x8, 0x21, 0xc3, 0x66, 0x12, 0xb4, 0x70, 0xd2, 0x99, 0xc7}} return a, nil } @@ -1603,7 +1603,7 @@ func epochScriptsGet_config_metadataCdc() (*asset, error) { return a, nil } -var _epochScriptsGet_create_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x3f\x0b\xc2\x30\x10\x05\xf0\x3d\x9f\xe2\xd1\xa9\x5d\x8a\x73\x37\x49\x2b\x38\xd6\x8e\xa5\x43\x88\x57\x2d\xa4\xb9\x72\x49\x50\x11\xbf\xbb\xa0\xc5\x3f\xdb\x1d\xfc\x78\xef\x4d\xf3\xc2\x12\xb1\x73\x7c\x69\x16\xb6\x67\x8c\xc2\x33\xb2\xcf\x9f\xa9\x1f\xa1\x5d\x0a\x91\xa4\xd5\x6f\xb5\xb9\xb6\x7a\x5b\xd7\x87\xa6\xeb\x94\x32\xd6\x52\x08\xb9\x71\xae\xc0\x98\x3c\x66\x33\xf9\xdc\x88\x98\x5b\x85\xbe\x8b\x32\xf9\xd3\x50\x54\xe8\xff\x72\xca\xf5\x1a\x70\x57\x00\x20\x14\x93\xf8\xef\x9a\xd2\x0a\x99\x48\x9a\x9d\x23\x1b\x59\x56\x1e\x72\xcf\x47\xda\xd7\xa1\xc2\xab\xa1\x50\x0f\xf5\x0c\x00\x00\xff\xff\x69\xfc\x1b\x8a\xc9\x00\x00\x00" +var _epochScriptsGet_create_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xb1\xca\x83\x40\x10\x84\xfb\x7b\x8a\xc1\x4a\x1b\x1f\xc0\xd6\xff\x0f\xa4\x0c\x29\xc5\x62\xb9\xac\x89\xb0\xde\xca\xde\x4a\x08\x21\xef\x1e\x08\x62\x4c\x37\x33\x7c\xc3\xcc\x38\xcd\x6a\x8e\x83\xe8\xfd\x7f\xd6\x78\xc3\x60\x3a\xa1\xd8\x7c\x11\x76\x44\x2b\x4b\x76\xb6\x53\xbb\xa3\xb6\xac\x08\x81\x62\xe4\x9c\x4b\x12\xa9\x30\x2c\x09\x13\x8d\xa9\x24\x33\x7a\x34\xe8\xce\x6e\x63\xba\xf6\x55\x83\xee\xa7\x57\xaf\xaa\xc7\x33\x00\x80\xb1\x2f\x96\xbe\x8f\xea\x68\x4c\xce\xad\x8a\x70\x74\xb5\x15\xcf\x65\xd2\x0b\x1f\xff\x72\x83\xcf\x42\x15\x5e\xe1\x1d\x00\x00\xff\xff\xb5\xb7\x78\xee\xcd\x00\x00\x00" func epochScriptsGet_create_clustersCdcBytes() ([]byte, error) { return bindataRead( @@ -1619,7 +1619,7 @@ func epochScriptsGet_create_clustersCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_create_clusters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x43, 0x5b, 0x6, 0xc4, 0xd6, 0xe4, 0xb3, 0x2c, 0xf1, 0xfe, 0x96, 0x6d, 0x60, 0x48, 0xbc, 0xbf, 0xd0, 0x12, 0xa6, 0x12, 0xa0, 0x15, 0x51, 0x7b, 0x6e, 0x52, 0x46, 0xf3, 0xa1, 0x5a, 0x48, 0x46}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x53, 0x30, 0xb5, 0x66, 0xa1, 0x17, 0x72, 0xdf, 0xf5, 0x1a, 0x82, 0x7a, 0xa9, 0x3d, 0x91, 0xef, 0xbf, 0x11, 0x15, 0x6e, 0xfd, 0x84, 0x7, 0x85, 0xde, 0xd8, 0x9, 0x31, 0x4d, 0x21, 0x64, 0x35}} return a, nil } @@ -6143,7 +6143,7 @@ func stakingproxyWithdraw_unstakedCdc() (*asset, error) { return a, nil } -var _storagefeesAdminSet_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xcd\x6e\xd3\x40\x10\xbe\xfb\x29\xbe\xf6\x50\x39\x12\xb2\x39\x20\x0e\x11\x25\x4a\x69\xcc\x85\xaa\x28\x2e\x70\xde\x6e\xc6\xc9\x22\x7b\xd7\x9a\x1d\x93\x20\xe4\x77\x47\xeb\x9f\xe0\x12\x12\xb1\x07\xfb\xb0\xdf\xef\xcc\x9a\xaa\x76\x2c\xc8\x4a\xb7\xcf\xc5\xb1\xda\x52\x46\xe4\x51\xb0\xab\xf0\xfa\x90\x7d\x7a\xfc\x96\x3f\x3d\xae\x97\x1f\x57\xd9\x6a\x95\x2f\xef\xef\xd7\xab\x3c\x8f\xa2\x34\xc5\xd3\xce\x78\x08\x2b\xeb\x95\x16\xe3\x2c\xf4\x4e\xd9\x2d\x79\xc8\x8e\x50\x94\x6e\x0f\xdf\xeb\xa1\x08\x82\xb5\x62\x55\x91\x10\xfb\x68\x42\x8a\x07\xcc\xdd\x4f\x21\xff\x99\x78\x4d\x9e\xf8\x07\x6d\x82\xef\x1c\x5f\x32\x73\x78\xfb\x66\xf1\x0a\x95\xb1\xa6\x6a\xaa\x21\x60\x0f\x52\x81\x7f\xc4\xcc\xf0\x2b\x02\x80\xee\x53\x92\x40\x6d\x2a\x63\xd7\x54\xcc\x71\xf3\x57\xb7\x64\x19\xae\x8c\x17\x56\xe2\x38\xea\x18\x35\x53\xad\x98\x62\xa5\xb5\xcc\xa1\x1a\xd9\xc5\x77\x8e\xd9\xed\xbf\xaa\xb2\xa1\x19\x6e\x96\x5a\xbb\xc6\xca\x68\x13\x4e\x9a\xe2\xb9\xc3\x40\x81\xa9\x20\x26\xab\x09\xe2\xba\x01\x74\xf6\x70\xcf\xdf\x49\xcb\x91\xe1\xa9\x2c\x92\x31\x18\x6e\x11\xdc\x92\x61\x02\x49\xaf\xf5\xee\x72\xda\xf7\x71\x58\xcc\x1c\xe9\xc0\x1a\xff\x01\xd9\x01\x67\x47\xb3\x70\x16\x0b\xd4\xca\x1a\x1d\x5f\x7f\x70\x4d\xb9\x81\x75\x32\x66\x7e\x91\xf8\xc5\xa6\xba\x80\xd7\xbd\x50\xdb\x8f\x87\x0e\xa4\x1b\xa1\x49\x79\x53\xe0\xc2\xea\x70\x75\x0b\x6b\xca\x09\xfe\xa4\x7e\xe2\x49\x86\x9a\x0f\xb4\x55\xff\x52\xb9\xf4\x38\xae\xfe\x14\x6d\xa7\xa1\xce\xbe\x94\xff\x8c\xf4\x70\x8e\x1f\x9f\x55\x3e\x89\xd2\x46\xed\xef\x00\x00\x00\xff\xff\xaa\xbb\x15\x71\x56\x03\x00\x00" +var _storagefeesAdminSet_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x2f\x3e\x04\x19\x8a\x74\x29\x3d\x98\xa6\x26\x29\xe8\xd4\xd0\x92\xfe\x3b\x4f\xd6\x23\x6b\x8b\xb4\x2b\x66\x47\x75\x4a\xd1\x77\x2f\xab\x3f\xae\x12\xd7\xa6\x7b\x90\x40\x7a\xef\xcd\x6f\x66\xd6\x36\xad\x17\x45\x51\xfb\xc3\x67\xf5\x42\x7b\x2e\x98\x03\x4a\xf1\x0d\x56\x2f\xbe\xae\x92\x24\xcf\xf1\xa5\xb2\x01\x2a\xe4\x02\x19\xb5\xde\xc1\x54\xe4\xf6\x1c\xa0\x15\xa3\xac\xfd\x01\x61\xb4\xa0\x8c\x49\x2d\x09\x35\xac\x2c\x21\x59\x98\xd2\x49\x73\xf7\x4b\x39\x7c\x62\x79\xe0\xc0\xf2\x93\x77\xc5\x87\x8f\xdf\x37\xf8\x5a\xd8\xa7\x37\xaf\xb7\xaf\xd0\x58\x67\x9b\xae\x99\x18\x46\x11\x45\xff\x51\xb3\xc6\xef\x04\x00\x86\x47\xcd\x0a\xda\x35\xd6\x3d\x70\xb9\xc1\xf5\x0b\xfc\xec\x36\xfe\xb2\x41\x85\xd4\x4b\x32\x38\x5a\xe1\x96\x84\x53\x32\x46\x37\xa0\x4e\xab\xf4\xce\x8b\xf8\xc3\x37\xaa\x3b\x5e\xe3\xfa\xd6\x18\xdf\x39\x9d\xcb\xc4\x93\xe7\x78\x1c\x34\x20\x08\x97\x2c\xec\x0c\x43\xfd\x30\x80\xa1\x3c\xfc\xe3\x0f\x36\x7a\x74\x04\xae\xcb\x6c\x06\xc3\x0d\x62\xb5\x6c\x9a\x40\x36\x66\xbd\xbd\x4c\xfb\x2e\x8d\x1b\xd9\x20\x9f\x5c\xf3\x3b\x2a\x07\xe1\xfa\x58\x2c\x9e\xed\x16\x2d\x39\x6b\xd2\xd5\x7b\xdf\xd5\x3b\x38\xaf\x33\xf3\x33\xe2\x67\x9b\x1a\x00\x57\x63\x50\x3f\x8e\x87\x9f\xd8\x74\xca\x8b\xe6\x6d\x89\x0b\xab\xc3\xd5\x0d\x9c\xad\x17\xfa\x93\xf6\xb3\xc0\x3a\xb5\x79\xcf\x7b\xfa\x57\xca\xa5\xcb\x71\xf5\xb7\xd1\x7e\x09\x75\xf6\xa6\xfc\x27\xd2\xfd\x39\x7f\x7a\x36\xf9\x04\xa5\x4f\xfa\x3f\x01\x00\x00\xff\xff\x05\xa9\x75\x7a\x4f\x03\x00\x00" func storagefeesAdminSet_parametersCdcBytes() ([]byte, error) { return bindataRead( @@ -6159,11 +6159,11 @@ func storagefeesAdminSet_parametersCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/admin/set_parameters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0x21, 0xda, 0xf9, 0xc4, 0x44, 0x7b, 0x28, 0xe5, 0xdc, 0xc9, 0x44, 0x7e, 0x43, 0x3c, 0x4, 0x72, 0xa6, 0xb4, 0x54, 0xba, 0x5b, 0x2d, 0x63, 0x14, 0xef, 0x32, 0xbe, 0x78, 0x21, 0x9b, 0x2b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0xd9, 0x32, 0xf5, 0x38, 0x90, 0x33, 0x23, 0xa, 0xeb, 0x8b, 0x76, 0xae, 0x50, 0x25, 0x2e, 0x3c, 0x95, 0x89, 0x31, 0x1, 0xd0, 0xa6, 0x9b, 0x56, 0x9b, 0x20, 0xe1, 0x48, 0x5e, 0xa9, 0x5c}} return a, nil } -var _storagefeesScriptsGet_account_available_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\x3f\xcb\xc2\x30\x10\x80\xf1\x3d\x9f\xe2\xc6\x76\x79\x79\x07\x71\xe8\x16\x69\xe2\x22\x14\x9a\x8a\xf3\x99\x5e\x25\x78\x49\x24\x7f\xb4\x20\x7e\x77\x17\xa7\x6e\xcf\xf4\xfc\x9c\x7f\xc4\x54\x40\x73\x7c\x99\x12\x13\xde\x48\x13\x65\x58\x52\xf4\xf0\xbf\xea\xd3\x70\x31\xd3\x30\xca\xa3\xd2\x4a\x19\xd9\xf7\xa3\x32\x46\x08\xb4\x96\x72\x6e\x90\xb9\x85\xa5\x06\xf0\xe8\x42\x83\xd6\xc6\x1a\x8a\x9c\xe7\x44\x39\x77\xf0\x8b\xb6\x83\xb3\x76\xeb\x7e\x07\x6f\x01\x00\x90\xa8\xd4\x14\xb6\xe2\xdf\x4c\x0b\x56\x2e\x53\xbc\x53\x90\x4f\x74\x8c\x57\xa6\x03\x32\x06\x4b\x9b\x75\x2b\x3e\x42\x7c\x03\x00\x00\xff\xff\x9c\xbd\x6d\xad\xb9\x00\x00\x00" +var _storagefeesScriptsGet_account_available_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8d\x31\x0e\xc2\x30\x0c\x45\xf7\x9c\xe2\xab\x53\xbb\x30\x21\x86\x6e\x65\xe8\x05\x80\x03\x98\xd4\x45\x11\xae\x8d\x9c\x04\x90\x10\x77\x67\x61\xca\xf6\xf4\x86\xf7\xd2\xf6\x30\x2f\x98\xc5\x5e\xa7\x62\x4e\x37\x9e\x99\x33\x56\xb7\x0d\x5d\x63\xbb\x10\x28\x46\xce\xb9\x27\x91\x01\x6b\x55\x6c\x94\xb4\xa7\x18\xad\x6a\x99\x96\xc5\x39\xe7\x11\x7f\x18\x46\x5c\xe6\xf4\x3e\xec\xf1\x09\x00\xe0\x5c\xaa\x6b\xbb\xda\x2d\xbc\x52\x95\x72\xb6\x3b\xeb\xf4\xa4\x24\x74\x15\x3e\x92\x90\x46\x6e\xd2\x43\xf8\x86\xf0\x0b\x00\x00\xff\xff\xee\x68\x60\x24\xb2\x00\x00\x00" func storagefeesScriptsGet_account_available_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -6179,11 +6179,11 @@ func storagefeesScriptsGet_account_available_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/scripts/get_account_available_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4f, 0x19, 0x75, 0x61, 0xa0, 0xbc, 0xea, 0xac, 0x1c, 0xc4, 0xc8, 0x8c, 0x33, 0x92, 0xcc, 0x1f, 0x8d, 0x26, 0x58, 0x7c, 0x63, 0xee, 0xc2, 0x27, 0x3b, 0x4f, 0xad, 0x90, 0xac, 0x1e, 0xf8, 0x56}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x32, 0x50, 0xda, 0x76, 0x6e, 0x91, 0xb, 0x23, 0x25, 0x39, 0x44, 0xac, 0xdf, 0x2c, 0xbb, 0xea, 0x83, 0xa1, 0xba, 0xc6, 0x85, 0x46, 0x4d, 0xac, 0x95, 0xe4, 0x42, 0xdd, 0x66, 0xb6, 0x86, 0xba}} return a, nil } -var _storagefeesScriptsGet_accounts_capacity_for_transaction_storage_checkCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\x31\x6b\xc3\x30\x10\x85\x77\xff\x8a\x37\xda\x60\x4a\x87\xd2\xc1\x9b\x49\xac\x2e\x85\x40\xe4\xd2\x21\x64\x38\x94\x4b\x2a\x6a\x4b\xe6\x4e\xa6\x0e\xa5\xff\xbd\x24\x31\x21\x24\x5a\xf4\xf8\x78\xdc\xfb\x7c\x3f\x44\x49\x30\x5d\xfc\xb1\x29\x0a\x1d\xd8\x30\x2b\xf6\x12\x7b\x3c\x4f\xe6\x7d\xf5\x69\xdb\xd5\xba\x7e\x6b\x4c\xd3\xd8\x7a\xb9\x5c\x37\xd6\x66\x19\x39\xc7\xaa\x39\x75\x5d\x81\xfd\x18\xd0\x93\x0f\x39\x39\x17\xc7\x90\xea\xdd\x4e\x58\x95\xb5\xc2\x66\xce\xdb\x12\x03\x1d\x59\x2a\xcc\xa0\x44\x4f\x53\x3b\x9d\xa6\x2a\x7c\x18\x3f\xbd\xbe\x14\x15\x36\x97\xb4\xc5\x6f\x06\x00\xc2\x69\x94\x70\xaf\xf6\x74\xe0\x54\x5f\x96\x74\x41\x03\x39\x9f\x8e\x26\x4a\x2b\x14\x94\x5c\xf2\x31\xcc\xe5\xc5\x17\xbb\xef\xfc\x7c\xe9\xf4\x1e\xed\xee\x49\x89\x6b\x79\xb6\x3d\x7f\x37\xf8\x46\xfa\x1a\x8b\xec\xef\x3f\x00\x00\xff\xff\x60\xc0\x2a\x19\x44\x01\x00\x00" +var _storagefeesScriptsGet_accounts_capacity_for_transaction_storage_checkCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\x21\x27\x1b\x4c\x4f\xa5\x07\xdd\x42\x40\x3f\xd0\xf4\x14\x72\x58\x94\x4d\x2a\x6a\x49\x66\x57\xa6\x0e\xa5\xff\x5e\x12\x0b\x63\x5c\x5d\x34\x3c\x86\xd9\x17\xe2\x90\xa5\xc0\xf5\xf9\xfb\xbd\x64\xa1\x1b\x3b\x66\xc5\x55\x72\xc4\x6e\x43\x77\xc6\x90\xf7\xac\xda\x50\xdf\xb7\xb8\x8e\x09\x91\x42\x6a\xc8\xfb\x3c\xa6\xb2\xbf\x5c\x84\x55\x59\x2d\x4e\x35\x9f\x3b\x0c\x74\x67\xb1\xa8\xa0\x43\xa4\xe9\x38\x3d\xd6\x2c\x3e\x5c\x98\xde\x5e\x5b\x8b\xd3\x9c\xce\xf8\x31\x00\x20\x5c\x46\x49\x5b\xa7\x97\x1b\x97\xfd\x7c\x49\x0f\x34\x90\x0f\xe5\xee\xb2\x1c\x85\x92\x92\x2f\x21\xa7\x5a\x3e\x7c\xb2\xff\x6a\x9e\x4b\x8f\xf7\xdf\x6e\x4b\x3a\x2c\xe5\x6a\xfb\xfc\x56\x78\x25\xbd\xc4\xd6\xfc\xfe\x05\x00\x00\xff\xff\x33\xc0\x69\x3d\x3d\x01\x00\x00" func storagefeesScriptsGet_accounts_capacity_for_transaction_storage_checkCdcBytes() ([]byte, error) { return bindataRead( @@ -6199,11 +6199,11 @@ func storagefeesScriptsGet_accounts_capacity_for_transaction_storage_checkCdc() } info := bindataFileInfo{name: "storageFees/scripts/get_accounts_capacity_for_transaction_storage_check.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0xe7, 0x9a, 0xeb, 0xbc, 0x63, 0x67, 0x64, 0x79, 0x7f, 0x85, 0x54, 0x38, 0xeb, 0xe4, 0xec, 0xac, 0x16, 0xfe, 0x9e, 0x8d, 0x5c, 0xe6, 0xeb, 0x20, 0x7d, 0x5f, 0x1b, 0x59, 0x21, 0xf5, 0xe0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9b, 0xdf, 0x5, 0xd2, 0x29, 0xa8, 0x2a, 0x4b, 0xa1, 0xae, 0xb3, 0x56, 0xc, 0xa9, 0x35, 0x83, 0xaa, 0xa7, 0x33, 0x53, 0x3b, 0xa3, 0x19, 0x1b, 0x71, 0x36, 0xbc, 0x97, 0x1, 0x9, 0x48, 0xcc}} return a, nil } -var _storagefeesScriptsGet_storage_capacityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\x3d\x0b\xc2\x30\x10\x80\xe1\x3d\xbf\xe2\xc6\x76\x11\x07\x71\xe8\x16\x6c\xe2\x22\x14\x1a\xc5\xf9\xb8\x5e\x25\x90\x8f\x92\x0f\xac\x88\xff\xdd\x41\xa7\x6e\xef\xf4\xbc\xd6\x2f\x31\x15\xd0\x2e\x3e\x4d\x89\x09\x1f\xac\x99\x33\xcc\x29\x7a\xd8\xaf\xfa\x32\xdc\xcd\x75\x18\xe5\x59\x69\xa5\x8c\xec\xfb\x51\x19\x23\x04\x12\x71\xce\x0d\x3a\xd7\xc2\x5c\x03\x78\xb4\xa1\x41\xa2\x58\x43\x91\xd3\x94\x38\xe7\x0e\xfe\xd1\x76\x70\xd3\x76\x3d\x1e\xe0\x2d\x00\x00\x12\x97\x9a\xc2\xf6\xb8\x23\x74\x54\x1d\x16\x96\x3f\xe6\x84\x0b\x92\x2d\xaf\x0d\xdb\x8a\x8f\x10\xdf\x00\x00\x00\xff\xff\xeb\xdb\x30\x0f\xb5\x00\x00\x00" +var _storagefeesScriptsGet_storage_capacityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\xbd\xaa\xc2\x40\x10\xc5\xf1\x7e\x9e\xe2\x90\x2a\x69\x6e\x75\xb1\x48\x17\x84\xbc\x80\xf8\x00\xc3\x64\x22\x0b\xfb\x11\x66\x67\x51\x11\xdf\xdd\x42\xab\xed\x0e\xa7\xf8\xfd\x43\x3a\x8a\x39\xd6\x58\xee\x17\x2f\xc6\x37\x5d\x55\x2b\x76\x2b\x09\x43\xf7\x0e\x44\x2c\xa2\xb5\x8e\x1c\xe3\x84\xbd\x65\x24\x0e\x79\x64\x91\xd2\xb2\x2f\xdb\x66\x5a\xeb\x8c\xdf\x98\x66\x5c\xd7\xf0\x38\xfd\xe3\x45\x00\x60\xea\xcd\x72\x9f\xfa\x13\x8e\xd2\x22\xbb\x2e\x5f\xe6\xcc\x07\x4b\xf0\x67\xc7\x4e\xf4\x26\xfa\x04\x00\x00\xff\xff\x8c\x0d\x5c\xd9\xae\x00\x00\x00" func storagefeesScriptsGet_storage_capacityCdcBytes() ([]byte, error) { return bindataRead( @@ -6219,11 +6219,11 @@ func storagefeesScriptsGet_storage_capacityCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/scripts/get_storage_capacity.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x37, 0x54, 0xd, 0xa8, 0xab, 0x2b, 0xe6, 0x94, 0x7, 0xfc, 0x0, 0xcc, 0xe2, 0x2c, 0x81, 0x79, 0xfd, 0xd1, 0x6d, 0x2d, 0x80, 0xfb, 0xaa, 0x6d, 0xc7, 0xe3, 0x92, 0xd1, 0x25, 0xbe, 0xa7, 0x58}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x63, 0xd2, 0xf3, 0x9f, 0xea, 0xbb, 0x73, 0x3a, 0x51, 0xc8, 0xd, 0x5e, 0xc2, 0x63, 0x95, 0xa, 0x55, 0x31, 0x8e, 0x32, 0xbd, 0x2f, 0x88, 0xfe, 0xca, 0x12, 0x76, 0xa7, 0x3d, 0x7f, 0x40, 0xa7}} return a, nil } -var _storagefeesScriptsGet_storage_fee_conversionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\xbf\x0a\xc2\x30\x10\x80\xf1\xfd\x9e\xe2\xc6\x76\x11\x07\x71\x70\xab\x34\x71\x51\x2a\x89\xe2\x1c\xea\xb5\x04\xf2\x47\xee\x52\xad\x88\xef\x2e\xe2\xe6\xf6\x4d\xdf\xcf\xc7\x5b\xe6\x82\x3a\xe4\x87\x2d\x99\xdd\x48\x9a\x48\x70\xe0\x1c\x71\x39\xeb\x7d\x77\xb1\xa7\xce\x34\x3b\xa5\x95\xb2\x4d\xdb\x1a\x65\x2d\x80\xeb\x7b\x12\xa9\x5c\x08\x35\x0e\x53\xc2\xe8\x7c\xaa\xea\x0d\x9e\xb5\x9f\xd7\x2b\x7c\x01\x22\x22\x53\x99\x38\xfd\xaf\x17\xf2\xeb\x03\x8d\x6e\xfb\x2c\x24\x47\x62\x43\x42\x7c\xa7\xeb\x97\x83\x37\xc0\x27\x00\x00\xff\xff\xc0\x2c\xcd\xf6\x95\x00\x00\x00" +var _storagefeesScriptsGet_storage_fee_conversionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x2e\xc9\x2f\x4a\x4c\x4f\x75\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x50\x42\x13\x55\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x37\x53\xaf\x18\xc2\xf6\x4d\x4d\x4f\x74\xaa\x2c\x49\x2d\x0e\x48\x2d\x0a\x4a\x2d\x4e\x2d\x2a\x4b\x4d\x71\xf3\xf1\x0f\xe7\xaa\xe5\xe2\x02\x04\x00\x00\xff\xff\x0f\x9e\x44\xff\x8e\x00\x00\x00" func storagefeesScriptsGet_storage_fee_conversionCdcBytes() ([]byte, error) { return bindataRead( @@ -6239,11 +6239,11 @@ func storagefeesScriptsGet_storage_fee_conversionCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/scripts/get_storage_fee_conversion.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0x1f, 0x42, 0x90, 0x62, 0x9f, 0x28, 0x22, 0x6d, 0x5b, 0xb1, 0x53, 0x2f, 0xf8, 0x5e, 0x10, 0xf8, 0xbe, 0x9d, 0x50, 0x3, 0x3f, 0x9e, 0x92, 0xc1, 0x92, 0x5c, 0xcb, 0xd2, 0x12, 0x6a, 0x56}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0x5c, 0x5d, 0x1, 0xde, 0x2a, 0xe5, 0x96, 0x6b, 0x2b, 0x70, 0x3a, 0x9c, 0xae, 0x50, 0x36, 0x4a, 0xea, 0xf2, 0xef, 0x3d, 0xdd, 0xf7, 0xa2, 0x20, 0x5c, 0x52, 0xf6, 0xb7, 0x93, 0x56, 0xb2}} return a, nil } -var _storagefeesScriptsGet_storage_fee_minCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcc\xb1\x0a\xc2\x30\x10\x00\xd0\xfd\xbe\xe2\xc6\x76\x11\x07\x71\x70\x2b\x34\x71\x11\x0a\x89\xe2\x1c\xca\x55\x0e\x72\x89\x5c\x12\x2d\x88\xff\xee\xe2\xd4\xf5\x0d\x8f\xe5\x99\xb5\xa2\x8d\xf9\xed\x6b\xd6\xf0\x20\x4b\x54\x70\xd1\x2c\xb8\x5f\xed\x65\xba\xfb\xeb\xe4\x86\xb3\xb1\xc6\xf8\x61\x1c\x9d\xf1\x1e\x20\xcc\x33\x95\xd2\x85\x18\x7b\x5c\x5a\x42\x09\x9c\xba\xfe\x84\x37\xcb\xeb\xf1\x80\x1f\x40\x44\x54\xaa\x4d\xd3\xb6\xde\x09\x27\x96\x26\x7f\x72\x54\x48\x5f\xa1\x72\x4e\xf0\x05\xf8\x05\x00\x00\xff\xff\xa5\xb7\x5f\x7e\x8f\x00\x00\x00" +var _storagefeesScriptsGet_storage_fee_minCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcc\x31\x0a\x02\x41\x0c\x05\xd0\x3e\xa7\xf8\x6c\xb5\xdb\x58\x89\x85\x07\x98\x03\x28\x1e\x20\x2c\x59\x09\x4c\x12\xc9\xcc\xa8\x20\xde\xdd\xc6\x6a\xdb\x57\x3c\xb5\x47\x64\x47\xa9\xf1\xba\xf6\x48\xbe\x4b\x11\x69\xd8\x32\x0c\xd3\x4e\x27\x22\x5e\x57\x69\x6d\xe6\x5a\x17\x6c\xc3\x61\xac\x3e\x2f\x67\xdc\x8a\xbe\x4f\x47\x7c\x08\x00\x52\xfa\x48\xdf\x9f\x07\x53\x57\x1b\xf6\xa7\x8b\x34\xc9\x27\x77\x0d\xa7\x2f\xd1\x2f\x00\x00\xff\xff\x10\x6e\x9d\x6a\x88\x00\x00\x00" func storagefeesScriptsGet_storage_fee_minCdcBytes() ([]byte, error) { return bindataRead( @@ -6259,7 +6259,7 @@ func storagefeesScriptsGet_storage_fee_minCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/scripts/get_storage_fee_min.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x94, 0x76, 0xf, 0x44, 0x9, 0xe, 0xac, 0x1d, 0x61, 0x30, 0x83, 0xe7, 0xec, 0x6b, 0xb4, 0xd2, 0xba, 0x9e, 0xef, 0x3f, 0xae, 0xf, 0xc1, 0x81, 0xd1, 0x47, 0x52, 0x9a, 0xec, 0xae, 0xaf, 0xd9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x65, 0x59, 0xec, 0xe1, 0xe, 0xc5, 0x8d, 0x9f, 0xd9, 0x60, 0xe4, 0x4e, 0xd0, 0x48, 0x59, 0xf0, 0xe1, 0x96, 0xc1, 0xc, 0xa, 0xd6, 0x95, 0x97, 0xa3, 0x50, 0x4c, 0xd1, 0x1d, 0x13, 0x3f, 0x1a}} return a, nil } diff --git a/lib/go/test/staking_test_helpers.go b/lib/go/test/staking_test_helpers.go index bea9dea2e..2769b5626 100644 --- a/lib/go/test/staking_test_helpers.go +++ b/lib/go/test/staking_test_helpers.go @@ -85,7 +85,7 @@ func deployStakingContract( cadencePublicKeys := cadence.NewArray(publicKeys) // Get the code byte-array for the fees contract - FeesCode := contracts.TestFlowFees(env) + FeesCode := contracts.TestFlowFees(env.FungibleTokenAddress, env.FlowTokenAddress, env.StorageFeesAddress) logger := zerolog.Nop() adapter := adapters.NewSDKAdapter(&logger, b) @@ -106,7 +106,7 @@ func deployStakingContract( env.FlowFeesAddress = feesAddr.Hex() // Get the code byte-array for the staking contract - IDTableCode, _ := cadence.NewString(string(contracts.FlowIDTableStaking(env))[:]) + IDTableCode, _ := cadence.NewString(string(contracts.FlowIDTableStaking(*env))[:]) // Create the deployment transaction that transfers a FlowToken minter // to the new account and deploys the IDTableStaking contract diff --git a/transactions/epoch/scripts/get_create_clusters.cdc b/transactions/epoch/scripts/get_create_clusters.cdc index 2700c7ae4..94618fa75 100644 --- a/transactions/epoch/scripts/get_create_clusters.cdc +++ b/transactions/epoch/scripts/get_create_clusters.cdc @@ -1,5 +1,5 @@ import FlowEpoch from "FlowEpoch" -import FlowClusterQC from 0xQCADDRESS +import FlowClusterQC from "FlowClusterQC" access(all) fun main(array: [String]): [FlowClusterQC.Cluster] { return FlowEpoch.createCollectorClusters(nodeIDs: array) From 9fab58a3e44459826faaeb19d85063d5c3f4d2f0 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 5 Mar 2024 15:40:31 -0600 Subject: [PATCH 090/160] update to latest emulator, cadence, and token standards versions --- .github/workflows/ci.yml | 4 ++-- Makefile | 4 ++-- lib/go/contracts/go.mod | 4 ++-- lib/go/contracts/go.sum | 8 ++++---- lib/go/templates/go.mod | 4 ++-- lib/go/templates/go.sum | 8 ++++---- lib/go/templates/manifest.mainnet.json | 20 ++++++++++---------- lib/go/templates/manifest.testnet.json | 20 ++++++++++---------- 8 files changed, 36 insertions(+), 36 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c6ef97e1d..c8f4a9d1a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,9 +13,9 @@ jobs: with: go-version: '1.20' - name: Install Flow CLI - run: sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)" -- v1.12.0-cadence-v1.0.0-M4-2 + run: sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/feature/stable-cadence/install.sh)" - name: Flow cli Version - run: flow version + run: flow-c1 version - name: Update PATH run: echo "/root/.local/bin" >> $GITHUB_PATH - name: Run tests diff --git a/Makefile b/Makefile index f19a9cb18..3e27fe43f 100644 --- a/Makefile +++ b/Makefile @@ -2,9 +2,9 @@ test: $(MAKE) generate -C lib/go $(MAKE) test -C lib/go - flow test --cover --covercode="contracts" tests/test_*.cdc + flow-c1 test --cover --covercode="contracts" tests/test_*.cdc .PHONY: ci ci: $(MAKE) ci -C lib/go - flow test --cover --covercode="contracts" tests/test_*.cdc + flow-c1 test --cover --covercode="contracts" tests/test_*.cdc diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index f100cf28d..aac7fb9af 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -5,8 +5,8 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.24.0+incompatible github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9 - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240213220156-959b70719876 - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240214230837-cd2c42e54b4a + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240305212555-29d91e18f0c1 + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240305213046-9026973838d7 github.com/stretchr/testify v1.8.4 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index fe580230e..03dbf877f 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1617,14 +1617,14 @@ github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9 h1:rTemckPWir+N/m1GyhT8jdiETj0RiWc8FiwItE2Nxyg= github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9/go.mod h1:PZrrCsllIt/Bu4HlJtisXfvDrOt1aLKU5R70vsZHKRc= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240213220156-959b70719876 h1:mV3OXBTDJ+nP3sJkoEUgrBXG2bMGFqsDTDr0nVmj2ec= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240213220156-959b70719876/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240305212555-29d91e18f0c1 h1:1hTH+Y8EB8BZ0hXsrxZqSTDWoY0euFT/IzXxlgVQok4= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240305212555-29d91e18f0c1/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876 h1:fZj39XxayIL7uvKvonNI3MtQM3wsFJ8oRl/XW/0rn7A= github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240214230837-cd2c42e54b4a h1:xMEtuQp4+ltfEZcw+4smv4wechSBAus4yEAtPghXZeQ= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240214230837-cd2c42e54b4a/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240305213046-9026973838d7 h1:0/s3DzQp3JHWuuz3DpGwniFShtgEy3wq1uBB+4uOG1I= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240305213046-9026973838d7/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8 h1:BqgQgXktxVFv8erjCaSHpL0CP+pa5M8g655GyF/t4JM= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= diff --git a/lib/go/templates/go.mod b/lib/go/templates/go.mod index 378706612..95c4c0465 100644 --- a/lib/go/templates/go.mod +++ b/lib/go/templates/go.mod @@ -5,9 +5,9 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.24.0+incompatible github.com/onflow/cadence v1.0.0-M3 - github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876 + github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240305212555-29d91e18f0c1 github.com/onflow/flow-go-sdk v1.0.0-M1 - github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240214230837-cd2c42e54b4a + github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240305213046-9026973838d7 github.com/psiemens/sconfig v0.1.0 github.com/spf13/cobra v1.5.0 ) diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index c2e4fa4e3..10a75a239 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -1615,12 +1615,12 @@ github.com/onflow/cadence v1.0.0-M3 h1:bSydJise9pU4aALloUKv/EWmDLITRlbBpuG8OPByd github.com/onflow/cadence v1.0.0-M3/go.mod h1:odXGZZ/wGNA5mwT8bC9v8u8EXACHllB2ABSZK65TGL8= github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= -github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876 h1:fZj39XxayIL7uvKvonNI3MtQM3wsFJ8oRl/XW/0rn7A= -github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= +github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240305212555-29d91e18f0c1 h1:7BkqJ21EQAbYCZqLj2xCIqJvhrHNCXe9BfLTEiQqIx0= +github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240305212555-29d91e18f0c1/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= -github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240214230837-cd2c42e54b4a h1:Ark2dPAaSxSr45G5WJjB1P5H0tFtXnHcOIp+dM146yo= -github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240214230837-cd2c42e54b4a/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= +github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240305213046-9026973838d7 h1:VU294Tk/Ra/UuuJbArLILA+x+4qX5qGPTY/kokNKyA4= +github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240305213046-9026973838d7/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= diff --git a/lib/go/templates/manifest.mainnet.json b/lib/go/templates/manifest.mainnet.json index 84f0c2abf..c709b7b62 100755 --- a/lib/go/templates/manifest.mainnet.json +++ b/lib/go/templates/manifest.mainnet.json @@ -130,7 +130,7 @@ { "id": "FT.01", "name": "Setup Fungible Token Vault", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FungibleTokenMetadataViews from 0xf233dcee88fe0abe\n\n/// This transaction is what an account would run\n/// to set itself up to manage fungible tokens. This function\n/// uses views to know where to set up the vault\n/// in storage and to create the empty vault.\n\ntransaction(contractAddress: Address, contractName: String) {\n\n prepare(signer: auth(SaveValue, Capabilities) \u0026Account) {\n // Borrow a reference to the vault stored on the passed account at the passed publicPath\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026FungibleToken\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the fungible token contract\")\n\n // Use that reference to retrieve the FTView \n let ftVaultData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cFungibleTokenMetadataViews.FTVaultData\u003e()) as! FungibleTokenMetadataViews.FTVaultData?\n ?? panic(\"Could not resolve the FTVaultData view for the given Fungible token contract\")\n\n // Create a new empty vault using the createEmptyVault function inside the FTVaultData\n let emptyVault \u003c-ftVaultData.createEmptyVault()\n\n // Save it to the account\n signer.storage.save(\u003c-emptyVault, to: ftVaultData.storagePath)\n \n // Create a public capability for the vault which includes the .Resolver interface\n let vaultCap = signer.capabilities.storage.issue\u003c\u0026{FungibleToken.Vault}\u003e(ftVaultData.storagePath)\n signer.capabilities.publish(vaultCap, at: ftVaultData.metadataPath)\n\n // Create a public capability for the vault exposing the receiver interface\n let receiverCap = signer.capabilities.storage.issue\u003c\u0026{FungibleToken.Receiver}\u003e(ftVaultData.storagePath)\n signer.capabilities.publish(receiverCap, at: ftVaultData.receiverPath)\n\n }\n}\n ", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FungibleTokenMetadataViews from 0xf233dcee88fe0abe\n\n/// This transaction is what an account would run\n/// to set itself up to manage fungible tokens. This function\n/// uses views to know where to set up the vault\n/// in storage and to create the empty vault.\n\ntransaction(contractAddress: Address, contractName: String) {\n\n prepare(signer: auth(SaveValue, Capabilities) \u0026Account) {\n // Borrow a reference to the vault stored on the passed account at the passed publicPath\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{FungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the fungible token contract\")\n\n // Use that reference to retrieve the FTView \n let ftVaultData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cFungibleTokenMetadataViews.FTVaultData\u003e()) as! FungibleTokenMetadataViews.FTVaultData?\n ?? panic(\"Could not resolve the FTVaultData view for the given Fungible token contract\")\n\n // Create a new empty vault using the createEmptyVault function inside the FTVaultData\n let emptyVault \u003c-ftVaultData.createEmptyVault()\n\n // Save it to the account\n signer.storage.save(\u003c-emptyVault, to: ftVaultData.storagePath)\n \n // Create a public capability for the vault which includes the .Resolver interface\n let vaultCap = signer.capabilities.storage.issue\u003c\u0026{FungibleToken.Vault}\u003e(ftVaultData.storagePath)\n signer.capabilities.publish(vaultCap, at: ftVaultData.metadataPath)\n\n // Create a public capability for the vault exposing the receiver interface\n let receiverCap = signer.capabilities.storage.issue\u003c\u0026{FungibleToken.Receiver}\u003e(ftVaultData.storagePath)\n signer.capabilities.publish(receiverCap, at: ftVaultData.receiverPath)\n\n }\n}\n ", "arguments": [ { "type": "Address", @@ -156,7 +156,7 @@ } ], "network": "mainnet", - "hash": "8713336b58ccf609c9692f24d1529b7beac7fd1ed2a389e35d6a01856a2650c8" + "hash": "0246076f1cf5d3160397766a9227b35f592f4d15c014848044c509818328b62b" }, { "id": "FT.02", @@ -214,7 +214,7 @@ { "id": "FT.03", "name": "Transfer Fungible Token with Address", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FungibleTokenMetadataViews from 0xf233dcee88fe0abe\n\n/// Can pass in any contract address and name to transfer a token from that contract\n/// This lets you choose the token you want to send\n///\n/// Any contract can be chosen here, so wallets should check argument values\n/// to make sure the intended token path is passed in\n///\ntransaction(amount: UFix64, to: Address, contractAddress: Address, contractName: String) {\n\n // The Vault resource that holds the tokens that are being transferred\n let tempVault: @{FungibleToken.Vault}\n\n // FTVaultData struct to get paths from\n let vaultData: FungibleTokenMetadataViews.FTVaultData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the vault stored on the passed account at the passed publicPath\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026FungibleToken\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the fungible token contract\")\n\n // Use that reference to retrieve the FTView \n self.vaultData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cFungibleTokenMetadataViews.FTVaultData\u003e()) as! FungibleTokenMetadataViews.FTVaultData?\n ?? panic(\"Could not resolve the FTVaultData view for the given Fungible token contract\")\n\n // Get a reference to the signer's stored vault\n let vaultRef = signer.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026{FungibleToken.Provider}\u003e(from: self.vaultData.storagePath)\n\t\t\t?? panic(\"Could not borrow reference to the owner's Vault!\")\n\n self.tempVault \u003c- vaultRef.withdraw(amount: amount)\n }\n\n execute {\n let recipient = getAccount(to)\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{FungibleToken.Receiver}\u003e(self.vaultData.receiverPath)\n ?? panic(\"Could not borrow reference to the recipient's Receiver!\")\n\n // Transfer tokens from the signer's stored vault to the receiver capability\n receiverRef.deposit(from: \u003c-self.tempVault)\n }\n}", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FungibleTokenMetadataViews from 0xf233dcee88fe0abe\n\n/// Can pass in any contract address and name to transfer a token from that contract\n/// This lets you choose the token you want to send\n///\n/// Any contract can be chosen here, so wallets should check argument values\n/// to make sure the intended token path is passed in\n///\ntransaction(amount: UFix64, to: Address, contractAddress: Address, contractName: String) {\n\n // The Vault resource that holds the tokens that are being transferred\n let tempVault: @{FungibleToken.Vault}\n\n // FTVaultData struct to get paths from\n let vaultData: FungibleTokenMetadataViews.FTVaultData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the vault stored on the passed account at the passed publicPath\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{FungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the fungible token contract\")\n\n // Use that reference to retrieve the FTView \n self.vaultData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cFungibleTokenMetadataViews.FTVaultData\u003e()) as! FungibleTokenMetadataViews.FTVaultData?\n ?? panic(\"Could not resolve the FTVaultData view for the given Fungible token contract\")\n\n // Get a reference to the signer's stored vault\n let vaultRef = signer.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026{FungibleToken.Provider}\u003e(from: self.vaultData.storagePath)\n\t\t\t?? panic(\"Could not borrow reference to the owner's Vault!\")\n\n self.tempVault \u003c- vaultRef.withdraw(amount: amount)\n }\n\n execute {\n let recipient = getAccount(to)\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{FungibleToken.Receiver}\u003e(self.vaultData.receiverPath)\n ?? panic(\"Could not borrow reference to the recipient's Receiver!\")\n\n // Transfer tokens from the signer's stored vault to the receiver capability\n receiverRef.deposit(from: \u003c-self.tempVault)\n }\n}", "arguments": [ { "type": "UFix64", @@ -262,12 +262,12 @@ } ], "network": "mainnet", - "hash": "efa05208b7db01aa887f3f70ff8a3bf155749d5f8ff91f723707f2786261db36" + "hash": "697ad2a90da93cbd02b7658f174c9c32e2016a574edb89cf24b57a8155c343e4" }, { "id": "NFT.01", "name": "Setup NFT Collection", - "source": "/// This transaction is what an account would run\n/// to set itself up to receive NFTs. This function\n/// uses views to know where to set up the collection\n/// in storage and to create the empty collection.\n\nimport NonFungibleToken from 0x1d7e57aa55817448\nimport MetadataViews from 0x1d7e57aa55817448\n\ntransaction(contractAddress: Address, contractName: String) {\n\n prepare(signer: auth(IssueStorageCapabilityController, PublishCapability, SaveValue) \u0026Account) {\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026NonFungibleToken\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n let collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n // Create a new empty collections\n let emptyCollection \u003c- collectionData.createEmptyCollection()\n\n // save it to the account\n signer.storage.save(\u003c-emptyCollection, to: collectionData.storagePath)\n\n // create a public capability for the collection\n let collectionCap = signer.capabilities.storage.issue\u003c\u0026{NonFungibleToken.Collection}\u003e(\n collectionData.storagePath\n )\n signer.capabilities.publish(collectionCap, at: collectionData.publicPath)\n }\n}\n", + "source": "/// This transaction is what an account would run\n/// to set itself up to receive NFTs. This function\n/// uses views to know where to set up the collection\n/// in storage and to create the empty collection.\n\nimport 0x1d7e57aa55817448\nimport 0x1d7e57aa55817448\n\ntransaction(contractAddress: Address, contractName: String) {\n\n prepare(signer: auth(IssueStorageCapabilityController, PublishCapability, SaveValue) \u0026Account) {\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{NonFungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n let collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n // Create a new empty collections\n let emptyCollection \u003c- collectionData.createEmptyCollection()\n\n // save it to the account\n signer.storage.save(\u003c-emptyCollection, to: collectionData.storagePath)\n\n // create a public capability for the collection\n let collectionCap = signer.capabilities.storage.issue\u003c\u0026{NonFungibleToken.Collection}\u003e(\n collectionData.storagePath\n )\n signer.capabilities.publish(collectionCap, at: collectionData.publicPath)\n }\n}\n", "arguments": [ { "type": "Address", @@ -293,12 +293,12 @@ } ], "network": "mainnet", - "hash": "ee7f8c201bd8607b1f576aef742e72fccee7fb429ae5ba708e60acc852428ae1" + "hash": "1d12c005fa7a08277204e5d54e29b725c52b9e8e3dd6ff6e01f8d47d7be1626c" }, { "id": "NFT.02", "name": "Transfer NFT with Paths", - "source": "import NonFungibleToken from 0x1d7e57aa55817448\n\n/// Can pass in any storage path and receiver path instead of just the default.\n/// This lets you choose the token you want to send as well the capability you want to send it to.\n///\n/// Any token path can be passed as an argument here, so wallets should\n/// should check argument values to make sure the intended token path is passed in\n///\ntransaction(to: Address, id: UInt64, senderPathIdentifier: String, receiverPathIdentifier: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n let storagePath = StoragePath(identifier: senderPathIdentifier)\n ?? panic(\"Could not construct a storage path from the provided path identifier string\")\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n let publicPath = PublicPath(identifier: receiverPathIdentifier)\n ?? panic(\"Could not construct a public path from the provided path identifier string\")\n\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n let receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", + "source": "import 0x1d7e57aa55817448\n\n/// Can pass in any storage path and receiver path instead of just the default.\n/// This lets you choose the token you want to send as well the capability you want to send it to.\n///\n/// Any token path can be passed as an argument here, so wallets should\n/// should check argument values to make sure the intended token path is passed in\n///\ntransaction(to: Address, id: UInt64, senderPathIdentifier: String, receiverPathIdentifier: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n let storagePath = StoragePath(identifier: senderPathIdentifier)\n ?? panic(\"Could not construct a storage path from the provided path identifier string\")\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n let publicPath = PublicPath(identifier: receiverPathIdentifier)\n ?? panic(\"Could not construct a public path from the provided path identifier string\")\n\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n let receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", "arguments": [ { "type": "Address", @@ -346,12 +346,12 @@ } ], "network": "mainnet", - "hash": "4c509996ec971e19f26d497a7daa7563bdb10d2a401b5cf214eff95beec565fc" + "hash": "a56eb0c3e6c3456eee86d5cb62ddf700b0d1e5e65f12fe6926edd6d181658285" }, { "id": "NFT.03", "name": "Transfer NFT with Address", - "source": "import NonFungibleToken from 0x1d7e57aa55817448\nimport MetadataViews from 0x1d7e57aa55817448\n\n/// Can pass in any contract address and name\n/// This lets you choose the token you want to send because\n/// the transaction gets the metadata from the provided contract.\n///\ntransaction(to: Address, id: UInt64, contractAddress: Address, contractName: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n // NFTCollectionData struct to get paths from\n let collectionData: MetadataViews.NFTCollectionData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026NonFungibleToken\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n self.collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: self.collectionData.storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(self.collectionData.publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n let receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", + "source": "import 0x1d7e57aa55817448\nimport 0x1d7e57aa55817448\n\n/// Can pass in any contract address and name\n/// This lets you choose the token you want to send because\n/// the transaction gets the metadata from the provided contract.\n///\ntransaction(to: Address, id: UInt64, contractAddress: Address, contractName: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n // NFTCollectionData struct to get paths from\n let collectionData: MetadataViews.NFTCollectionData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{NonFungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n self.collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: self.collectionData.storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(self.collectionData.publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n let receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", "arguments": [ { "type": "Address", @@ -399,7 +399,7 @@ } ], "network": "mainnet", - "hash": "4787be99c4a72becd7193a28dfd4f4cef3d00610b2b0dfdaba79df41792f69df" + "hash": "111142945f27d91bf3be630737805eba25d586b0c292bb3818e5d4cf4287e31c" }, { "id": "TH.01", diff --git a/lib/go/templates/manifest.testnet.json b/lib/go/templates/manifest.testnet.json index d9a9fe5c0..681b2deb8 100755 --- a/lib/go/templates/manifest.testnet.json +++ b/lib/go/templates/manifest.testnet.json @@ -130,7 +130,7 @@ { "id": "FT.01", "name": "Setup Fungible Token Vault", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FungibleTokenMetadataViews from 0x9a0766d93b6608b7\n\n/// This transaction is what an account would run\n/// to set itself up to manage fungible tokens. This function\n/// uses views to know where to set up the vault\n/// in storage and to create the empty vault.\n\ntransaction(contractAddress: Address, contractName: String) {\n\n prepare(signer: auth(SaveValue, Capabilities) \u0026Account) {\n // Borrow a reference to the vault stored on the passed account at the passed publicPath\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026FungibleToken\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the fungible token contract\")\n\n // Use that reference to retrieve the FTView \n let ftVaultData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cFungibleTokenMetadataViews.FTVaultData\u003e()) as! FungibleTokenMetadataViews.FTVaultData?\n ?? panic(\"Could not resolve the FTVaultData view for the given Fungible token contract\")\n\n // Create a new empty vault using the createEmptyVault function inside the FTVaultData\n let emptyVault \u003c-ftVaultData.createEmptyVault()\n\n // Save it to the account\n signer.storage.save(\u003c-emptyVault, to: ftVaultData.storagePath)\n \n // Create a public capability for the vault which includes the .Resolver interface\n let vaultCap = signer.capabilities.storage.issue\u003c\u0026{FungibleToken.Vault}\u003e(ftVaultData.storagePath)\n signer.capabilities.publish(vaultCap, at: ftVaultData.metadataPath)\n\n // Create a public capability for the vault exposing the receiver interface\n let receiverCap = signer.capabilities.storage.issue\u003c\u0026{FungibleToken.Receiver}\u003e(ftVaultData.storagePath)\n signer.capabilities.publish(receiverCap, at: ftVaultData.receiverPath)\n\n }\n}\n ", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FungibleTokenMetadataViews from 0x9a0766d93b6608b7\n\n/// This transaction is what an account would run\n/// to set itself up to manage fungible tokens. This function\n/// uses views to know where to set up the vault\n/// in storage and to create the empty vault.\n\ntransaction(contractAddress: Address, contractName: String) {\n\n prepare(signer: auth(SaveValue, Capabilities) \u0026Account) {\n // Borrow a reference to the vault stored on the passed account at the passed publicPath\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{FungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the fungible token contract\")\n\n // Use that reference to retrieve the FTView \n let ftVaultData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cFungibleTokenMetadataViews.FTVaultData\u003e()) as! FungibleTokenMetadataViews.FTVaultData?\n ?? panic(\"Could not resolve the FTVaultData view for the given Fungible token contract\")\n\n // Create a new empty vault using the createEmptyVault function inside the FTVaultData\n let emptyVault \u003c-ftVaultData.createEmptyVault()\n\n // Save it to the account\n signer.storage.save(\u003c-emptyVault, to: ftVaultData.storagePath)\n \n // Create a public capability for the vault which includes the .Resolver interface\n let vaultCap = signer.capabilities.storage.issue\u003c\u0026{FungibleToken.Vault}\u003e(ftVaultData.storagePath)\n signer.capabilities.publish(vaultCap, at: ftVaultData.metadataPath)\n\n // Create a public capability for the vault exposing the receiver interface\n let receiverCap = signer.capabilities.storage.issue\u003c\u0026{FungibleToken.Receiver}\u003e(ftVaultData.storagePath)\n signer.capabilities.publish(receiverCap, at: ftVaultData.receiverPath)\n\n }\n}\n ", "arguments": [ { "type": "Address", @@ -156,7 +156,7 @@ } ], "network": "testnet", - "hash": "61eb858316b62fedbec6a9d155076a4f394315edaa91a6335b267d2efbea255e" + "hash": "3ccbbfebf10c47c49e4058a33fd9a29c4191c545de52c9afd27a29d38110aa28" }, { "id": "FT.02", @@ -214,7 +214,7 @@ { "id": "FT.03", "name": "Transfer Fungible Token with Address", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FungibleTokenMetadataViews from 0x9a0766d93b6608b7\n\n/// Can pass in any contract address and name to transfer a token from that contract\n/// This lets you choose the token you want to send\n///\n/// Any contract can be chosen here, so wallets should check argument values\n/// to make sure the intended token path is passed in\n///\ntransaction(amount: UFix64, to: Address, contractAddress: Address, contractName: String) {\n\n // The Vault resource that holds the tokens that are being transferred\n let tempVault: @{FungibleToken.Vault}\n\n // FTVaultData struct to get paths from\n let vaultData: FungibleTokenMetadataViews.FTVaultData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the vault stored on the passed account at the passed publicPath\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026FungibleToken\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the fungible token contract\")\n\n // Use that reference to retrieve the FTView \n self.vaultData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cFungibleTokenMetadataViews.FTVaultData\u003e()) as! FungibleTokenMetadataViews.FTVaultData?\n ?? panic(\"Could not resolve the FTVaultData view for the given Fungible token contract\")\n\n // Get a reference to the signer's stored vault\n let vaultRef = signer.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026{FungibleToken.Provider}\u003e(from: self.vaultData.storagePath)\n\t\t\t?? panic(\"Could not borrow reference to the owner's Vault!\")\n\n self.tempVault \u003c- vaultRef.withdraw(amount: amount)\n }\n\n execute {\n let recipient = getAccount(to)\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{FungibleToken.Receiver}\u003e(self.vaultData.receiverPath)\n ?? panic(\"Could not borrow reference to the recipient's Receiver!\")\n\n // Transfer tokens from the signer's stored vault to the receiver capability\n receiverRef.deposit(from: \u003c-self.tempVault)\n }\n}", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FungibleTokenMetadataViews from 0x9a0766d93b6608b7\n\n/// Can pass in any contract address and name to transfer a token from that contract\n/// This lets you choose the token you want to send\n///\n/// Any contract can be chosen here, so wallets should check argument values\n/// to make sure the intended token path is passed in\n///\ntransaction(amount: UFix64, to: Address, contractAddress: Address, contractName: String) {\n\n // The Vault resource that holds the tokens that are being transferred\n let tempVault: @{FungibleToken.Vault}\n\n // FTVaultData struct to get paths from\n let vaultData: FungibleTokenMetadataViews.FTVaultData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the vault stored on the passed account at the passed publicPath\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{FungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the fungible token contract\")\n\n // Use that reference to retrieve the FTView \n self.vaultData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cFungibleTokenMetadataViews.FTVaultData\u003e()) as! FungibleTokenMetadataViews.FTVaultData?\n ?? panic(\"Could not resolve the FTVaultData view for the given Fungible token contract\")\n\n // Get a reference to the signer's stored vault\n let vaultRef = signer.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026{FungibleToken.Provider}\u003e(from: self.vaultData.storagePath)\n\t\t\t?? panic(\"Could not borrow reference to the owner's Vault!\")\n\n self.tempVault \u003c- vaultRef.withdraw(amount: amount)\n }\n\n execute {\n let recipient = getAccount(to)\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{FungibleToken.Receiver}\u003e(self.vaultData.receiverPath)\n ?? panic(\"Could not borrow reference to the recipient's Receiver!\")\n\n // Transfer tokens from the signer's stored vault to the receiver capability\n receiverRef.deposit(from: \u003c-self.tempVault)\n }\n}", "arguments": [ { "type": "UFix64", @@ -262,12 +262,12 @@ } ], "network": "testnet", - "hash": "53afddb176f6838569124f85d06da085b69ebaa6b81dcfeb00fb9199d48a7197" + "hash": "c1518742a95f9b49259abed8364b05d616ee8acebe123e9979f762b9e7522f93" }, { "id": "NFT.01", "name": "Setup NFT Collection", - "source": "/// This transaction is what an account would run\n/// to set itself up to receive NFTs. This function\n/// uses views to know where to set up the collection\n/// in storage and to create the empty collection.\n\nimport NonFungibleToken from 0x631e88ae7f1d7c20\nimport MetadataViews from 0x631e88ae7f1d7c20\n\ntransaction(contractAddress: Address, contractName: String) {\n\n prepare(signer: auth(IssueStorageCapabilityController, PublishCapability, SaveValue) \u0026Account) {\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026NonFungibleToken\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n let collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n // Create a new empty collections\n let emptyCollection \u003c- collectionData.createEmptyCollection()\n\n // save it to the account\n signer.storage.save(\u003c-emptyCollection, to: collectionData.storagePath)\n\n // create a public capability for the collection\n let collectionCap = signer.capabilities.storage.issue\u003c\u0026{NonFungibleToken.Collection}\u003e(\n collectionData.storagePath\n )\n signer.capabilities.publish(collectionCap, at: collectionData.publicPath)\n }\n}\n", + "source": "/// This transaction is what an account would run\n/// to set itself up to receive NFTs. This function\n/// uses views to know where to set up the collection\n/// in storage and to create the empty collection.\n\nimport 0x631e88ae7f1d7c20\nimport 0x631e88ae7f1d7c20\n\ntransaction(contractAddress: Address, contractName: String) {\n\n prepare(signer: auth(IssueStorageCapabilityController, PublishCapability, SaveValue) \u0026Account) {\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{NonFungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n let collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n // Create a new empty collections\n let emptyCollection \u003c- collectionData.createEmptyCollection()\n\n // save it to the account\n signer.storage.save(\u003c-emptyCollection, to: collectionData.storagePath)\n\n // create a public capability for the collection\n let collectionCap = signer.capabilities.storage.issue\u003c\u0026{NonFungibleToken.Collection}\u003e(\n collectionData.storagePath\n )\n signer.capabilities.publish(collectionCap, at: collectionData.publicPath)\n }\n}\n", "arguments": [ { "type": "Address", @@ -293,12 +293,12 @@ } ], "network": "testnet", - "hash": "98966f4ef503ab75eeebe2d24d2dd3d2fb92d7d945db5bc76f79a6c60070bd33" + "hash": "d9ef3b05f8b06d43c3a0ef4066e88e6248323c5f235f9a5d1f8a85d6e2bc9bfa" }, { "id": "NFT.02", "name": "Transfer NFT with Paths", - "source": "import NonFungibleToken from 0x631e88ae7f1d7c20\n\n/// Can pass in any storage path and receiver path instead of just the default.\n/// This lets you choose the token you want to send as well the capability you want to send it to.\n///\n/// Any token path can be passed as an argument here, so wallets should\n/// should check argument values to make sure the intended token path is passed in\n///\ntransaction(to: Address, id: UInt64, senderPathIdentifier: String, receiverPathIdentifier: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n let storagePath = StoragePath(identifier: senderPathIdentifier)\n ?? panic(\"Could not construct a storage path from the provided path identifier string\")\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n let publicPath = PublicPath(identifier: receiverPathIdentifier)\n ?? panic(\"Could not construct a public path from the provided path identifier string\")\n\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n let receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", + "source": "import 0x631e88ae7f1d7c20\n\n/// Can pass in any storage path and receiver path instead of just the default.\n/// This lets you choose the token you want to send as well the capability you want to send it to.\n///\n/// Any token path can be passed as an argument here, so wallets should\n/// should check argument values to make sure the intended token path is passed in\n///\ntransaction(to: Address, id: UInt64, senderPathIdentifier: String, receiverPathIdentifier: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n let storagePath = StoragePath(identifier: senderPathIdentifier)\n ?? panic(\"Could not construct a storage path from the provided path identifier string\")\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n let publicPath = PublicPath(identifier: receiverPathIdentifier)\n ?? panic(\"Could not construct a public path from the provided path identifier string\")\n\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n let receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", "arguments": [ { "type": "Address", @@ -346,12 +346,12 @@ } ], "network": "testnet", - "hash": "267278a2c41182ced41877d4ecdec086e07ee152d17e8f5b8ba910b9c91aabde" + "hash": "f08815a2f535512a65e5c95c391dd6ff89662dad8fd68da836d11d0827a52bd4" }, { "id": "NFT.03", "name": "Transfer NFT with Address", - "source": "import NonFungibleToken from 0x631e88ae7f1d7c20\nimport MetadataViews from 0x631e88ae7f1d7c20\n\n/// Can pass in any contract address and name\n/// This lets you choose the token you want to send because\n/// the transaction gets the metadata from the provided contract.\n///\ntransaction(to: Address, id: UInt64, contractAddress: Address, contractName: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n // NFTCollectionData struct to get paths from\n let collectionData: MetadataViews.NFTCollectionData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026NonFungibleToken\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n self.collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: self.collectionData.storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(self.collectionData.publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n let receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", + "source": "import 0x631e88ae7f1d7c20\nimport 0x631e88ae7f1d7c20\n\n/// Can pass in any contract address and name\n/// This lets you choose the token you want to send because\n/// the transaction gets the metadata from the provided contract.\n///\ntransaction(to: Address, id: UInt64, contractAddress: Address, contractName: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n // NFTCollectionData struct to get paths from\n let collectionData: MetadataViews.NFTCollectionData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{NonFungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n self.collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: self.collectionData.storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(self.collectionData.publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n let receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", "arguments": [ { "type": "Address", @@ -399,7 +399,7 @@ } ], "network": "testnet", - "hash": "977f1fab609f8845472f60a23d163d810a09c0eefc111fab70e816a789a0ca7a" + "hash": "b7892b30d7a68531db8af3aa73eec7bf899bd039bc9883c4d0270e44c78cec30" }, { "id": "TH.01", From aecc7fb7a7a988fe8608118c9a4ed49821d13778 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Thu, 7 Mar 2024 12:56:39 -0600 Subject: [PATCH 091/160] Update README --- README.md | 54 +++++++++++++++++++++++------------------------------- 1 file changed, 23 insertions(+), 31 deletions(-) diff --git a/README.md b/README.md index 0530633d2..e80bd9bd7 100644 --- a/README.md +++ b/README.md @@ -27,9 +27,8 @@ so they can build a basic understanding of the programming language. | Network | Contract Address | | ---------------------------- | -------------------- | -| Emulator | `0x0ae53cb6e3f42a79` | -| Previewnet | `0x4445e7ad11568276` | -| Testnet/Crescendo | `0x7e60df042a9c0868` | +| Emulator | `0x0ae53cb6e3f42a79` | +| Testnet/Previewnet/Crescendo | `0x7e60df042a9c0868` | | Sandboxnet | `0x0661ab7d6696a460` | | Mainnet | `0x1654653399040a61` | @@ -47,9 +46,8 @@ You can find transactions for using the Flow Token in the `transactions/flowToke | Network | Contract Address | | ---------------------------- | -------------------- | -| Emulator | `0xe5a8b7f23e8b548f` | -| Previewnet | `0xab086ce9cc29fc80` | -| Testnet/Crescendo | `0x912d5440f7e3769e` | +| Emulator | `0xe5a8b7f23e8b548f` | +| Testnet/Previewnet/Crescendo | `0x912d5440f7e3769e` | | Sandboxnet | `0xe92c2039bbe9da96` | | Mainnet | `0xf919ee77447b7497` | @@ -61,9 +59,8 @@ This contract defines fees that are spent for executing transactions and creatin | Network | Contract Address | | ---------------------------- | -------------------- | -| Emulator | `0xf8d6e0586b0a20c7` | -| Previewnet | `0xb6763b4399a888c8` | -| Testnet/Crescendo | `0x8c5303eaa26202d6` | +| Emulator/Canary | `0xf8d6e0586b0a20c7` | +| Testnet/Previewnet/Crescendo | `0x8c5303eaa26202d6` | | Sandboxnet | `0xf4527793ee68aede` | | Mainnet | `0xe467b9dd11fa00df` | @@ -78,9 +75,8 @@ You can see [more docs about storage capacity and fees here.](https://docs.onflo | Network | Contract Address | | ---------------------------- | -------------------- | -| Emulator | `0xf8d6e0586b0a20c7` | -| Previewnet | `0xb6763b4399a888c8` | -| Testnet/Crescendo | `0x8c5303eaa26202d6` | +| Emulator/Canary | `0xf8d6e0586b0a20c7` | +| Testnet/Previewnet/Crescendo | `0x8c5303eaa26202d6` | | Sandboxnet | `0xf4527793ee68aede` | | Mainnet | `0xe467b9dd11fa00df` | @@ -96,9 +92,8 @@ You can find transactions for interacting with the service account contract in t | Network | Contract Address | | ---------------------------- | -------------------- | -| Emulator | `0xf8d6e0586b0a20c7` | -| Previewnet | `0xb6763b4399a888c8` | -| Testnet/Crescendo | `0x8c5303eaa26202d6` | +| Emulator/Canary | `0xf8d6e0586b0a20c7` | +| Testnet/Previewnet/Crescendo | `0x8c5303eaa26202d6` | | Sandboxnet | `0xf4527793ee68aede` | | Mainnet | `0xe467b9dd11fa00df` | @@ -114,13 +109,12 @@ You can find transactions for interacting with the random beacon `contracts/NodeVersionBeacon.cdc` -| Network | Contract Address | -| ----------------- | -------------------- | -| Emulator | `0xf8d6e0586b0a20c7` | -| Previewnet | `0xb6763b4399a888c8` | -| Testnet/Crescendo | `0x8c5303eaa26202d6` | -| Sandboxnet | `0xf4527793ee68aede` | -| Mainnet | `0xe467b9dd11fa00df` | +| Network | Contract Address | +| ---------------------------- | -------------------- | +| Emulator/Canary | `0xf8d6e0586b0a20c7` | +| Testnet/Previewnet/Crescendo | `0x8c5303eaa26202d6` | +| Sandboxnet | `0xf4527793ee68aede` | +| Mainnet | `0xe467b9dd11fa00df` | The `NodeVersionBeacon` contract holds the past and future protocol versions that should be used @@ -134,13 +128,12 @@ history contract in the `transactions/nodeVersionBeacon` directory. `contracts/FlowIDTableStaking.cdc` `contracts/epochs/FlowEpoch.cdc` -| Network | Contract Address | -| ------------------- | -------------------- | -| Emulator | `0xf8d6e0586b0a20c7` | -| Previewnet | `0xb6763b4399a888c8` | -| Testnet/Crescendo | `0x9eca2b38b18b5dfe` | -| Sandboxnet | `0xf4527793ee68aede` | -| Mainnet | `0x8624b52f9ddcd04a` | +| Network | Contract Address | +| ---------------------------- | -------------------- | +| Emulator/Canary | `0xf8d6e0586b0a20c7` | +| Testnet/Previewnet/Crescendo | `0x9eca2b38b18b5dfe` | +| Sandboxnet | `0xf4527793ee68aede` | +| Mainnet | `0x8624b52f9ddcd04a` | These contract manages the list of identities that correspond to node operators in the Flow network as well as the process for adding and removing nodes from the network via Epochs. @@ -168,8 +161,7 @@ These scripts are documented in the [staking scripts section of the docs](https: | Network | Contract Address | | --------------- | -------------------- | -| Emulator | `0xf8d6e0586b0a20c7` | -| Previewnet | `0xb6763b4399a888c8` | +| Emulator/Canary | `0xf8d6e0586b0a20c7` | | Testnet | `0x95e019a17d0e23d7` | | Sandboxnet | `0xf4527793ee68aede` | | Mainnet | `0x8d0e87b65159ae63` | From 5c413450a3a7e4f0dba3a40f943aae9f89ea7c22 Mon Sep 17 00:00:00 2001 From: Janez Podhostnik <67895329+janezpodhostnik@users.noreply.github.com> Date: Fri, 22 Mar 2024 16:27:46 +0100 Subject: [PATCH 092/160] Don't copy dictionary in getEpochMetadata (#413) * Don't copy dictionary in getEpochMetadata --- contracts/epochs/FlowEpoch.cdc | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 715624534..716ec2a29 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -60,7 +60,7 @@ access(all) contract FlowEpoch { /// The Epoch Start service event is emitted when the contract transitions /// to a new epoch in the staking auction phase. access(all) event EpochStart ( - + /// The counter for the current epoch that is beginning counter: UInt64, @@ -210,6 +210,10 @@ access(all) contract FlowEpoch { self.dkgKeys = dkgKeys } + access(account) fun copy(): EpochMetadata { + return self + } + access(account) fun setTotalRewards(_ newRewards: UFix64) { self.totalRewards = newRewards } @@ -278,9 +282,9 @@ access(all) contract FlowEpoch { } } - /// Configuration for epoch timing. - /// Each epoch is assigned a target end time when it is setup (within the EpochSetup event). - /// The configuration defines a reference epoch counter and timestamp, which defines + /// Configuration for epoch timing. + /// Each epoch is assigned a target end time when it is setup (within the EpochSetup event). + /// The configuration defines a reference epoch counter and timestamp, which defines /// all future target end times. If `targetEpochCounter` is an upcoming epoch, then /// its target end time is given by: /// @@ -320,11 +324,10 @@ access(all) contract FlowEpoch { /// Epoch Metadata is stored in account storage so the growing dictionary /// does not have to be loaded every time the contract is loaded access(all) fun getEpochMetadata(_ epochCounter: UInt64): EpochMetadata? { - // TODO: Make this `borrow`, when Cadence supports dereferencing. - // So the overhead of copying the entire dictionary would be avoided. - // Instead borrow, and get a dereference-copy of the element. - if let metadataDictionary = self.account.storage.copy<{UInt64: EpochMetadata}>(from: self.metadataStoragePath) { - return metadataDictionary[epochCounter] + if let metadataDictionary = self.account.storage.borrow<&{UInt64: EpochMetadata}>(from: self.metadataStoragePath) { + if let metadataRef = metadataDictionary[epochCounter] { + return metadataRef.copy() + } } return nil } @@ -542,7 +545,7 @@ access(all) contract FlowEpoch { assert ( randomSource.length == 32, message: "Random source must be a hex string of 32 characters" - ) + ) FlowEpoch.startEpochSetup(proposedNodeIDs: proposedNodeIDs, randomSource: randomSource) } From 12c392ce2e748bd497979db334110779ce715bdc Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 26 Mar 2024 11:23:30 -0500 Subject: [PATCH 093/160] update NFT contracts --- lib/go/contracts/go.mod | 2 +- lib/go/contracts/go.sum | 4 ++-- lib/go/templates/go.mod | 2 +- lib/go/templates/go.sum | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index aac7fb9af..c88654bb5 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -6,7 +6,7 @@ require ( github.com/kevinburke/go-bindata v3.24.0+incompatible github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9 github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240305212555-29d91e18f0c1 - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240305213046-9026973838d7 + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240326155818-c01c72c091c0 github.com/stretchr/testify v1.8.4 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 03dbf877f..c3208f99b 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1623,8 +1623,8 @@ github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876 github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240305213046-9026973838d7 h1:0/s3DzQp3JHWuuz3DpGwniFShtgEy3wq1uBB+4uOG1I= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240305213046-9026973838d7/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240326155818-c01c72c091c0 h1:xekR2FttJpwtpRfH1BFvf9Kztm9be8grT1GT9bpQK8M= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240326155818-c01c72c091c0/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8 h1:BqgQgXktxVFv8erjCaSHpL0CP+pa5M8g655GyF/t4JM= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= diff --git a/lib/go/templates/go.mod b/lib/go/templates/go.mod index 95c4c0465..4afb38c5f 100644 --- a/lib/go/templates/go.mod +++ b/lib/go/templates/go.mod @@ -7,7 +7,7 @@ require ( github.com/onflow/cadence v1.0.0-M3 github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240305212555-29d91e18f0c1 github.com/onflow/flow-go-sdk v1.0.0-M1 - github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240305213046-9026973838d7 + github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240326155818-c01c72c091c0 github.com/psiemens/sconfig v0.1.0 github.com/spf13/cobra v1.5.0 ) diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index 10a75a239..0a934e1cf 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -1619,8 +1619,8 @@ github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240305212555-29d91e18f0c1 github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240305212555-29d91e18f0c1/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= -github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240305213046-9026973838d7 h1:VU294Tk/Ra/UuuJbArLILA+x+4qX5qGPTY/kokNKyA4= -github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240305213046-9026973838d7/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= +github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240326155818-c01c72c091c0 h1:Qk24unKC2ncZ+U+fd63pC5BdWyMwkKEOsjMdIrj70O0= +github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240326155818-c01c72c091c0/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= From 26f74bcdabe89d5967217f5e014ed8133b59a682 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 27 Mar 2024 12:00:24 -0500 Subject: [PATCH 094/160] update ft dependency --- lib/go/contracts/go.mod | 2 +- lib/go/contracts/go.sum | 4 ++-- lib/go/templates/go.mod | 2 +- lib/go/templates/go.sum | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index c88654bb5..044ccd63e 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -5,7 +5,7 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.24.0+incompatible github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9 - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240305212555-29d91e18f0c1 + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240327162334-bd133114f87a github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240326155818-c01c72c091c0 github.com/stretchr/testify v1.8.4 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index c3208f99b..9cd70a44b 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1617,8 +1617,8 @@ github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9 h1:rTemckPWir+N/m1GyhT8jdiETj0RiWc8FiwItE2Nxyg= github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9/go.mod h1:PZrrCsllIt/Bu4HlJtisXfvDrOt1aLKU5R70vsZHKRc= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240305212555-29d91e18f0c1 h1:1hTH+Y8EB8BZ0hXsrxZqSTDWoY0euFT/IzXxlgVQok4= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240305212555-29d91e18f0c1/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240327162334-bd133114f87a h1:7cMT6DGMqCw98hXzuDU69WxUZxsqsRxNMMlWXG/yPOc= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240327162334-bd133114f87a/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876 h1:fZj39XxayIL7uvKvonNI3MtQM3wsFJ8oRl/XW/0rn7A= github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= diff --git a/lib/go/templates/go.mod b/lib/go/templates/go.mod index 4afb38c5f..b5ad50e83 100644 --- a/lib/go/templates/go.mod +++ b/lib/go/templates/go.mod @@ -5,7 +5,7 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.24.0+incompatible github.com/onflow/cadence v1.0.0-M3 - github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240305212555-29d91e18f0c1 + github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240327162334-bd133114f87a github.com/onflow/flow-go-sdk v1.0.0-M1 github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240326155818-c01c72c091c0 github.com/psiemens/sconfig v0.1.0 diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index 0a934e1cf..bc872e690 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -1615,8 +1615,8 @@ github.com/onflow/cadence v1.0.0-M3 h1:bSydJise9pU4aALloUKv/EWmDLITRlbBpuG8OPByd github.com/onflow/cadence v1.0.0-M3/go.mod h1:odXGZZ/wGNA5mwT8bC9v8u8EXACHllB2ABSZK65TGL8= github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= -github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240305212555-29d91e18f0c1 h1:7BkqJ21EQAbYCZqLj2xCIqJvhrHNCXe9BfLTEiQqIx0= -github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240305212555-29d91e18f0c1/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= +github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240327162334-bd133114f87a h1:oe3ErYY8qds7IER/zmNGKT3zz6cFcjC0doX2Q0WOUv0= +github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240327162334-bd133114f87a/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240326155818-c01c72c091c0 h1:Qk24unKC2ncZ+U+fd63pC5BdWyMwkKEOsjMdIrj70O0= From e1008226b5669ae64bf92ef9f3111b18d596cad8 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 2 Apr 2024 12:05:43 -0500 Subject: [PATCH 095/160] update token standard dependencies --- lib/go/contracts/go.mod | 4 ++-- lib/go/contracts/go.sum | 4 ++++ lib/go/templates/go.mod | 4 ++-- lib/go/templates/go.sum | 4 ++++ lib/go/templates/manifest.mainnet.json | 4 ++-- lib/go/templates/manifest.testnet.json | 4 ++-- 6 files changed, 16 insertions(+), 8 deletions(-) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 044ccd63e..820e797b6 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -5,8 +5,8 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.24.0+incompatible github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9 - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240327162334-bd133114f87a - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240326155818-c01c72c091c0 + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240402160548-a9c331660956 + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240402163945-74687e7a5b9d github.com/stretchr/testify v1.8.4 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 9cd70a44b..5e2faeb32 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1619,12 +1619,16 @@ github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337- github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9/go.mod h1:PZrrCsllIt/Bu4HlJtisXfvDrOt1aLKU5R70vsZHKRc= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240327162334-bd133114f87a h1:7cMT6DGMqCw98hXzuDU69WxUZxsqsRxNMMlWXG/yPOc= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240327162334-bd133114f87a/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240402160548-a9c331660956 h1:WbG97gmdbgfYZT8YCyye0fAwz4k5vditXcPGoy63m9M= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240402160548-a9c331660956/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876 h1:fZj39XxayIL7uvKvonNI3MtQM3wsFJ8oRl/XW/0rn7A= github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240326155818-c01c72c091c0 h1:xekR2FttJpwtpRfH1BFvf9Kztm9be8grT1GT9bpQK8M= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240326155818-c01c72c091c0/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240402163945-74687e7a5b9d h1:CeM0F/t8f6UYKIP/PzHApt0BfX5FLCbFiSW3tkXHLyA= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240402163945-74687e7a5b9d/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8 h1:BqgQgXktxVFv8erjCaSHpL0CP+pa5M8g655GyF/t4JM= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= diff --git a/lib/go/templates/go.mod b/lib/go/templates/go.mod index b5ad50e83..132fa47cf 100644 --- a/lib/go/templates/go.mod +++ b/lib/go/templates/go.mod @@ -5,9 +5,9 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.24.0+incompatible github.com/onflow/cadence v1.0.0-M3 - github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240327162334-bd133114f87a + github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240402160548-a9c331660956 github.com/onflow/flow-go-sdk v1.0.0-M1 - github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240326155818-c01c72c091c0 + github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240402163945-74687e7a5b9d github.com/psiemens/sconfig v0.1.0 github.com/spf13/cobra v1.5.0 ) diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index bc872e690..0e845d011 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -1617,10 +1617,14 @@ github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240327162334-bd133114f87a h1:oe3ErYY8qds7IER/zmNGKT3zz6cFcjC0doX2Q0WOUv0= github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240327162334-bd133114f87a/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= +github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240402160548-a9c331660956 h1:Ef9UKtwNcHVG2R8YskYiwRoaTZFhAVmQ0ZN3c0eDUGU= +github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240402160548-a9c331660956/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240326155818-c01c72c091c0 h1:Qk24unKC2ncZ+U+fd63pC5BdWyMwkKEOsjMdIrj70O0= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240326155818-c01c72c091c0/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= +github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240402163945-74687e7a5b9d h1:9BUEgH1oFUMeOab++UNgok9Jk+rejQIrIHYKNe/TD20= +github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240402163945-74687e7a5b9d/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= diff --git a/lib/go/templates/manifest.mainnet.json b/lib/go/templates/manifest.mainnet.json index c709b7b62..a13d03bf2 100755 --- a/lib/go/templates/manifest.mainnet.json +++ b/lib/go/templates/manifest.mainnet.json @@ -214,7 +214,7 @@ { "id": "FT.03", "name": "Transfer Fungible Token with Address", - "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FungibleTokenMetadataViews from 0xf233dcee88fe0abe\n\n/// Can pass in any contract address and name to transfer a token from that contract\n/// This lets you choose the token you want to send\n///\n/// Any contract can be chosen here, so wallets should check argument values\n/// to make sure the intended token path is passed in\n///\ntransaction(amount: UFix64, to: Address, contractAddress: Address, contractName: String) {\n\n // The Vault resource that holds the tokens that are being transferred\n let tempVault: @{FungibleToken.Vault}\n\n // FTVaultData struct to get paths from\n let vaultData: FungibleTokenMetadataViews.FTVaultData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the vault stored on the passed account at the passed publicPath\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{FungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the fungible token contract\")\n\n // Use that reference to retrieve the FTView \n self.vaultData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cFungibleTokenMetadataViews.FTVaultData\u003e()) as! FungibleTokenMetadataViews.FTVaultData?\n ?? panic(\"Could not resolve the FTVaultData view for the given Fungible token contract\")\n\n // Get a reference to the signer's stored vault\n let vaultRef = signer.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026{FungibleToken.Provider}\u003e(from: self.vaultData.storagePath)\n\t\t\t?? panic(\"Could not borrow reference to the owner's Vault!\")\n\n self.tempVault \u003c- vaultRef.withdraw(amount: amount)\n }\n\n execute {\n let recipient = getAccount(to)\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{FungibleToken.Receiver}\u003e(self.vaultData.receiverPath)\n ?? panic(\"Could not borrow reference to the recipient's Receiver!\")\n\n // Transfer tokens from the signer's stored vault to the receiver capability\n receiverRef.deposit(from: \u003c-self.tempVault)\n }\n}", + "source": "import FungibleToken from 0xf233dcee88fe0abe\nimport FungibleTokenMetadataViews from 0xf233dcee88fe0abe\n\n/// Can pass in any contract address and name to transfer a token from that contract\n/// This lets you choose the token you want to send\n///\n/// Any contract can be chosen here, so wallets should check argument values\n/// to make sure the intended token contract name and address is passed in\n///\ntransaction(amount: UFix64, to: Address, contractAddress: Address, contractName: String) {\n\n // The Vault resource that holds the tokens that are being transferred\n let tempVault: @{FungibleToken.Vault}\n\n // FTVaultData struct to get paths from\n let vaultData: FungibleTokenMetadataViews.FTVaultData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the vault stored on the passed account at the passed publicPath\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{FungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the fungible token contract\")\n\n // Use that reference to retrieve the FTView \n self.vaultData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cFungibleTokenMetadataViews.FTVaultData\u003e()) as! FungibleTokenMetadataViews.FTVaultData?\n ?? panic(\"Could not resolve the FTVaultData view for the given Fungible token contract\")\n\n // Get a reference to the signer's stored vault\n let vaultRef = signer.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026{FungibleToken.Provider}\u003e(from: self.vaultData.storagePath)\n\t\t\t?? panic(\"Could not borrow reference to the owner's Vault!\")\n\n self.tempVault \u003c- vaultRef.withdraw(amount: amount)\n }\n\n execute {\n let recipient = getAccount(to)\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{FungibleToken.Receiver}\u003e(self.vaultData.receiverPath)\n ?? panic(\"Could not borrow reference to the recipient's Receiver!\")\n\n // Transfer tokens from the signer's stored vault to the receiver capability\n receiverRef.deposit(from: \u003c-self.tempVault)\n }\n}", "arguments": [ { "type": "UFix64", @@ -262,7 +262,7 @@ } ], "network": "mainnet", - "hash": "697ad2a90da93cbd02b7658f174c9c32e2016a574edb89cf24b57a8155c343e4" + "hash": "d8f826a451d808697ed3ce7908a080c05219df458e3e6cd4ccd073600c58e600" }, { "id": "NFT.01", diff --git a/lib/go/templates/manifest.testnet.json b/lib/go/templates/manifest.testnet.json index 681b2deb8..466bc1973 100755 --- a/lib/go/templates/manifest.testnet.json +++ b/lib/go/templates/manifest.testnet.json @@ -214,7 +214,7 @@ { "id": "FT.03", "name": "Transfer Fungible Token with Address", - "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FungibleTokenMetadataViews from 0x9a0766d93b6608b7\n\n/// Can pass in any contract address and name to transfer a token from that contract\n/// This lets you choose the token you want to send\n///\n/// Any contract can be chosen here, so wallets should check argument values\n/// to make sure the intended token path is passed in\n///\ntransaction(amount: UFix64, to: Address, contractAddress: Address, contractName: String) {\n\n // The Vault resource that holds the tokens that are being transferred\n let tempVault: @{FungibleToken.Vault}\n\n // FTVaultData struct to get paths from\n let vaultData: FungibleTokenMetadataViews.FTVaultData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the vault stored on the passed account at the passed publicPath\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{FungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the fungible token contract\")\n\n // Use that reference to retrieve the FTView \n self.vaultData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cFungibleTokenMetadataViews.FTVaultData\u003e()) as! FungibleTokenMetadataViews.FTVaultData?\n ?? panic(\"Could not resolve the FTVaultData view for the given Fungible token contract\")\n\n // Get a reference to the signer's stored vault\n let vaultRef = signer.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026{FungibleToken.Provider}\u003e(from: self.vaultData.storagePath)\n\t\t\t?? panic(\"Could not borrow reference to the owner's Vault!\")\n\n self.tempVault \u003c- vaultRef.withdraw(amount: amount)\n }\n\n execute {\n let recipient = getAccount(to)\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{FungibleToken.Receiver}\u003e(self.vaultData.receiverPath)\n ?? panic(\"Could not borrow reference to the recipient's Receiver!\")\n\n // Transfer tokens from the signer's stored vault to the receiver capability\n receiverRef.deposit(from: \u003c-self.tempVault)\n }\n}", + "source": "import FungibleToken from 0x9a0766d93b6608b7\nimport FungibleTokenMetadataViews from 0x9a0766d93b6608b7\n\n/// Can pass in any contract address and name to transfer a token from that contract\n/// This lets you choose the token you want to send\n///\n/// Any contract can be chosen here, so wallets should check argument values\n/// to make sure the intended token contract name and address is passed in\n///\ntransaction(amount: UFix64, to: Address, contractAddress: Address, contractName: String) {\n\n // The Vault resource that holds the tokens that are being transferred\n let tempVault: @{FungibleToken.Vault}\n\n // FTVaultData struct to get paths from\n let vaultData: FungibleTokenMetadataViews.FTVaultData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the vault stored on the passed account at the passed publicPath\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{FungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the fungible token contract\")\n\n // Use that reference to retrieve the FTView \n self.vaultData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cFungibleTokenMetadataViews.FTVaultData\u003e()) as! FungibleTokenMetadataViews.FTVaultData?\n ?? panic(\"Could not resolve the FTVaultData view for the given Fungible token contract\")\n\n // Get a reference to the signer's stored vault\n let vaultRef = signer.storage.borrow\u003cauth(FungibleToken.Withdraw) \u0026{FungibleToken.Provider}\u003e(from: self.vaultData.storagePath)\n\t\t\t?? panic(\"Could not borrow reference to the owner's Vault!\")\n\n self.tempVault \u003c- vaultRef.withdraw(amount: amount)\n }\n\n execute {\n let recipient = getAccount(to)\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{FungibleToken.Receiver}\u003e(self.vaultData.receiverPath)\n ?? panic(\"Could not borrow reference to the recipient's Receiver!\")\n\n // Transfer tokens from the signer's stored vault to the receiver capability\n receiverRef.deposit(from: \u003c-self.tempVault)\n }\n}", "arguments": [ { "type": "UFix64", @@ -262,7 +262,7 @@ } ], "network": "testnet", - "hash": "c1518742a95f9b49259abed8364b05d616ee8acebe123e9979f762b9e7522f93" + "hash": "0adc1ebe8246cf7656aefd9bf336f7f0c102a039e343776da61da4d6aa39aed2" }, { "id": "NFT.01", From 02924cc3544dc606b2ccf029ec19426fa3b215e8 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 2 Apr 2024 13:40:19 -0500 Subject: [PATCH 096/160] make ci --- lib/go/contracts/go.sum | 4 ---- lib/go/templates/go.sum | 4 ---- 2 files changed, 8 deletions(-) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 5e2faeb32..7bb420a06 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1617,16 +1617,12 @@ github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9 h1:rTemckPWir+N/m1GyhT8jdiETj0RiWc8FiwItE2Nxyg= github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9/go.mod h1:PZrrCsllIt/Bu4HlJtisXfvDrOt1aLKU5R70vsZHKRc= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240327162334-bd133114f87a h1:7cMT6DGMqCw98hXzuDU69WxUZxsqsRxNMMlWXG/yPOc= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240327162334-bd133114f87a/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240402160548-a9c331660956 h1:WbG97gmdbgfYZT8YCyye0fAwz4k5vditXcPGoy63m9M= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240402160548-a9c331660956/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876 h1:fZj39XxayIL7uvKvonNI3MtQM3wsFJ8oRl/XW/0rn7A= github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240326155818-c01c72c091c0 h1:xekR2FttJpwtpRfH1BFvf9Kztm9be8grT1GT9bpQK8M= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240326155818-c01c72c091c0/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240402163945-74687e7a5b9d h1:CeM0F/t8f6UYKIP/PzHApt0BfX5FLCbFiSW3tkXHLyA= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240402163945-74687e7a5b9d/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8 h1:BqgQgXktxVFv8erjCaSHpL0CP+pa5M8g655GyF/t4JM= diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index 0e845d011..346fa2650 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -1615,14 +1615,10 @@ github.com/onflow/cadence v1.0.0-M3 h1:bSydJise9pU4aALloUKv/EWmDLITRlbBpuG8OPByd github.com/onflow/cadence v1.0.0-M3/go.mod h1:odXGZZ/wGNA5mwT8bC9v8u8EXACHllB2ABSZK65TGL8= github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= -github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240327162334-bd133114f87a h1:oe3ErYY8qds7IER/zmNGKT3zz6cFcjC0doX2Q0WOUv0= -github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240327162334-bd133114f87a/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240402160548-a9c331660956 h1:Ef9UKtwNcHVG2R8YskYiwRoaTZFhAVmQ0ZN3c0eDUGU= github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240402160548-a9c331660956/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= -github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240326155818-c01c72c091c0 h1:Qk24unKC2ncZ+U+fd63pC5BdWyMwkKEOsjMdIrj70O0= -github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240326155818-c01c72c091c0/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240402163945-74687e7a5b9d h1:9BUEgH1oFUMeOab++UNgok9Jk+rejQIrIHYKNe/TD20= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240402163945-74687e7a5b9d/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= From c53fc7996ffa885838fe20f0472435ea9608e12c Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Mon, 8 Apr 2024 12:23:43 -0400 Subject: [PATCH 097/160] fix algorithm typo and test names --- Makefile | 4 +- lib/go/templates/internal/assets/assets.go | 12 +- lib/go/templates/manifest.mainnet.json | 8 +- lib/go/templates/manifest.testnet.json | 8 +- tests/random_beacon_history_test.cdc | 446 +------------------ tests/test_account_txs.cdc | 178 -------- transactions/accounts/add_key.cdc | 4 +- transactions/accounts/create_new_account.cdc | 4 +- 8 files changed, 38 insertions(+), 626 deletions(-) delete mode 100644 tests/test_account_txs.cdc diff --git a/Makefile b/Makefile index 3e27fe43f..700b34e91 100644 --- a/Makefile +++ b/Makefile @@ -2,9 +2,9 @@ test: $(MAKE) generate -C lib/go $(MAKE) test -C lib/go - flow-c1 test --cover --covercode="contracts" tests/test_*.cdc + flow-c1 test --cover --covercode="contracts" tests/*.cdc .PHONY: ci ci: $(MAKE) ci -C lib/go - flow-c1 test --cover --covercode="contracts" tests/test_*.cdc + flow-c1 test --cover --covercode="contracts" tests/*.cdc diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 79d6db9ef..4dc532118 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -18,8 +18,8 @@ // FlowServiceAccount/set_is_account_creation_restricted.cdc (609B) // FlowServiceAccount/set_tx_fee_parameters.cdc (622B) // FlowServiceAccount/set_tx_fee_surge_factor.cdc (481B) -// accounts/add_key.cdc (711B) -// accounts/create_new_account.cdc (766B) +// accounts/add_key.cdc (713B) +// accounts/create_new_account.cdc (768B) // accounts/revoke_key.cdc (263B) // dkg/admin/force_stop_dkg.cdc (350B) // dkg/admin/publish_participant.cdc (314B) @@ -723,7 +723,7 @@ func flowserviceaccountSet_tx_fee_surge_factorCdc() (*asset, error) { return a, nil } -var _accountsAdd_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x51\x6b\xdb\x30\x14\x85\x9f\xa5\x5f\x71\x9a\x87\x60\x83\x09\xce\x3a\xc2\x10\xcd\x20\x0c\x46\x47\x19\x0c\xba\xee\x5d\xb1\x2e\xb1\x88\x2d\x19\xf9\xba\xae\x19\xf9\xef\x43\xf1\xe6\x26\x38\xec\x49\xf2\xf5\xb9\xe7\xd3\x3d\x5c\x5b\x37\x3e\x30\xbe\x84\xa1\x61\x2f\x25\x07\xed\x5a\x5d\xb0\xf5\x2e\x39\xd2\xa0\xf0\xcc\xc1\xba\x43\x86\xd6\x1e\x9c\xe6\x2e\xd0\xae\x3a\xf8\x60\xb9\xac\x15\x5e\xbe\x39\xfe\x94\xa1\xd4\x6d\x39\xaf\xf6\x64\x0f\x25\x2b\xbc\x7c\xb5\x6f\x9b\x8f\x29\x7e\x4b\x29\x9a\x40\x8d\x0e\x94\x44\x33\x0a\x0a\xba\xe3\x32\xd9\x19\xf3\x44\x43\x8a\xe5\xae\x28\x7c\xe7\x38\x4a\x45\x94\x9e\x4f\x31\x07\xe3\xf3\x16\x6b\x2c\x97\x37\xde\x84\x87\x2d\xee\x15\x16\xdf\xbb\x96\xd1\x04\xff\x6a\x0d\x41\xbf\x0b\xa1\x47\x65\x8d\xa0\x7b\xbc\xea\xaa\x23\x70\xa9\x19\xb6\xc5\x3a\xc3\x87\x0c\x3e\xe0\x7e\x11\xb9\x57\x53\x4d\xc8\xeb\xea\xc3\x16\x9b\x39\x2d\x6a\xfe\x07\xda\x13\xf7\x44\x0e\x6b\x68\x67\xb0\x39\xd3\xc6\xb4\xa2\xe1\x3a\xcf\xf3\x55\xae\xb0\xf8\x59\x12\x8e\x34\xfc\x0d\x12\x75\x84\xec\x69\xea\xce\xcf\xdd\x51\x1d\x0d\x4e\x52\x88\x8a\x18\x4d\xb7\xaf\x6c\xf1\x44\x03\xb6\xf8\xf1\xef\x9e\x44\xc2\xf4\x47\x45\xd7\x95\xa1\xc2\x1b\x7a\xa4\xb7\x24\xcd\x6e\xc7\xac\xf0\x3c\xab\x25\x41\xf7\xbf\xe2\x30\xea\x46\xf8\xe9\x9d\x14\x22\x95\x72\x34\xa3\xb0\x3a\xd2\xd0\xae\xb4\x31\xc9\x05\x7b\xba\xce\xf6\xe6\xf1\xf2\xf3\x02\x74\x25\x4b\xef\xde\x37\x6b\x3c\x53\x29\x4e\xf2\xf4\x27\x00\x00\xff\xff\xb4\x9a\xbc\xc4\xc7\x02\x00\x00" +var _accountsAdd_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x51\x6b\xdb\x30\x14\x85\x9f\xa5\x5f\x71\x9a\x87\x60\x83\x09\xce\x3a\xc2\x10\xf5\x20\x0c\x46\x47\x19\x0c\xba\xee\x5d\xb1\x2e\xb6\x88\x23\x19\xf9\xba\xae\x19\xf9\xef\x43\xc9\xe6\x26\x38\xec\x49\xf2\xf5\xb9\xe7\xd3\x3d\x5c\x7b\x68\x7d\x60\x7c\x09\x63\xcb\x5e\x4a\x0e\xda\x75\xba\x64\xeb\x5d\xb2\xa7\x51\xe1\x99\x83\x75\x55\x86\xce\x56\x4e\x73\x1f\x68\xdb\x54\x3e\x58\xae\x0f\x0a\x2f\xdf\x1c\x7f\xca\x50\xeb\xae\x9e\x57\x07\xb2\x55\xcd\x0a\x2f\x5f\xed\xdb\xe6\x63\x8a\xdf\x52\x8a\x36\x50\xab\x03\x25\xd1\x8c\x82\x82\xee\xb9\x4e\xb6\xc6\x3c\xd1\x98\x62\xb9\x2d\x4b\xdf\x3b\x8e\x52\x11\xa5\xa7\x53\xcc\xc1\xf8\x5c\x60\x8d\xe5\xf2\xc6\x9b\xf0\x50\xe0\x5e\x61\xf1\xbd\xef\x18\x6d\xf0\xaf\xd6\x10\xf4\xbb\x10\x7a\x52\x06\x3d\xe0\x55\x37\x3d\x81\x6b\xcd\xb0\x1d\xd6\x19\x3e\x64\xf0\x01\xf7\x8b\x08\xbe\x1a\x6b\x62\x5e\x57\x1f\x0a\x6c\xe6\xb8\xa8\xf9\x2f\x69\x47\x3c\x10\x39\xac\xa1\x9d\xc1\xe6\x84\x3b\xe7\x15\x1d\xd7\x79\x9e\xaf\x72\x85\xc5\xcf\x9a\xb0\xa7\xf1\x6f\x94\x38\x44\xca\x8e\xa6\xee\xfc\xd4\x1d\xd5\xd1\xe0\x28\x85\x68\x88\xd1\xf6\xbb\xc6\x96\x4f\x34\xa2\xc0\x8f\x7f\xf7\x24\x12\xa6\x3f\x2a\xba\xae\x0c\x95\xde\xd0\x23\xbd\x25\x69\x76\x3b\x68\x85\xe7\x59\x2d\x09\x7a\xf8\x15\x87\x51\x37\xe2\x4f\xef\xa4\x10\xa9\x94\x67\x33\x0a\xab\x3d\x8d\xdd\x4a\x1b\x93\x5c\xb0\xa7\xeb\x6c\x73\x1e\x2f\x3f\x2f\x40\x57\xb2\xf4\xee\x7d\xb7\xce\x67\x2a\xc5\x51\x1e\xff\x04\x00\x00\xff\xff\xa2\xf6\xe5\xb7\xc9\x02\x00\x00" func accountsAdd_keyCdcBytes() ([]byte, error) { return bindataRead( @@ -739,11 +739,11 @@ func accountsAdd_keyCdc() (*asset, error) { } info := bindataFileInfo{name: "accounts/add_key.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0xd4, 0xe8, 0x7d, 0xf1, 0x71, 0xcc, 0xbe, 0x1, 0x5e, 0xfe, 0x69, 0xdc, 0x2f, 0xfd, 0x24, 0x81, 0x4c, 0x5f, 0xc0, 0xf2, 0xe3, 0x64, 0xda, 0xf5, 0xc8, 0x5, 0x15, 0xce, 0x4a, 0x8b, 0xd9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0x9d, 0x12, 0x10, 0xf2, 0xbf, 0x12, 0x9b, 0x86, 0x80, 0x3b, 0x15, 0x3e, 0x13, 0x74, 0x20, 0xc9, 0x11, 0x7e, 0x8a, 0x24, 0x9, 0xa1, 0xe2, 0xef, 0x6f, 0x91, 0x6a, 0x4e, 0x8d, 0x61, 0x1f}} return a, nil } -var _accountsCreate_new_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\xd1\x6a\xdb\x40\x10\x7c\x96\xbe\x62\xe2\x07\x23\x81\x30\x72\x53\x4c\x39\xa2\x42\x5a\x28\x29\xa5\x50\x70\xd3\xf7\xb5\xb4\x48\x87\x6d\x9d\x58\xad\xe2\x88\xe2\x7f\x2f\x27\x39\x8e\x8d\x4c\x9f\xee\xb4\x9a\xdd\x99\x9b\x1d\xbb\x6f\x9c\x28\xbe\x4a\xdf\xa8\x0b\x43\x15\xaa\x5b\xca\xd5\xba\x3a\xda\x72\x6f\xb0\x56\xb1\x75\x99\xa0\xb5\x65\x4d\xda\x09\x3f\xee\x4a\x27\x56\xab\xbd\xc1\xf3\xf7\x5a\x3f\x25\xa8\xa8\xad\xa6\xd5\x03\xdb\xb2\x52\x83\xe7\x6f\xf6\x75\xf5\x31\xc6\xdf\x30\x68\x84\x1b\x12\x8e\xfc\x2c\x16\x03\xea\xb4\x8a\xbe\x38\x11\x77\xf8\x43\xbb\x8e\x13\xac\xd5\x09\x95\x1c\x63\xfe\x98\xe7\xae\xab\x75\xe8\xf3\x8d\xc3\x19\x4c\x55\xe0\x73\x86\x25\xe6\xf3\x1b\x02\xf1\x90\xe1\xde\x60\xf6\xb3\x6b\x15\x8d\xb8\x17\x5b\x30\xe8\x1d\x08\x1a\x91\x7b\x08\x1d\xf0\xe2\x15\x40\x2b\x52\xd8\x16\xcb\x04\x1f\x12\x38\xc1\xfd\xcc\xf3\x5e\x3d\xf1\x4c\x79\x5d\x7d\xc8\xb0\x9a\xb2\x79\xcc\xff\x88\x36\xac\x07\xe6\x1a\x4b\x50\x5d\x60\x35\xb0\x8d\xd6\xf9\x81\xcb\x34\x4d\x17\xa9\xc1\xec\x77\xc5\xd8\x72\x7f\x72\x15\x7b\x4f\xb2\xe1\x73\x77\x3a\x74\x7b\xb4\x1f\x70\x0c\xc3\x20\xd8\xb1\xa2\xe9\x36\x3b\x9b\xff\xe0\x1e\x19\x7e\xbd\xdd\x23\x4f\x71\xfe\x63\xfc\xd8\x45\xc1\xb9\x2b\xf8\x89\x5f\xa3\x38\xb9\xed\xb3\xc1\x7a\x52\x8b\x84\xc6\xc5\x99\x1b\xee\xc7\x77\x61\x10\xc4\x6f\x4a\x68\x5c\x27\x32\x9c\x16\x1b\x35\xd4\xfb\x0c\x8c\x59\x18\x70\x27\xcc\x62\xcb\x7d\xbb\xa0\xa2\x88\x2e\x44\x9e\xaf\x93\xb8\x3d\x5d\x7e\x5e\x28\xba\x82\xc5\x77\xef\x81\x1c\xcf\x38\x0c\x8e\xe1\xf1\x5f\x00\x00\x00\xff\xff\xa8\xb7\x9a\x9f\xfe\x02\x00\x00" +var _accountsCreate_new_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\x61\x8b\x9b\x40\x10\xfd\xac\xbf\xe2\x5d\x3e\x04\x05\x09\xa6\x57\x42\x59\xce\xc2\xb5\x50\xae\x94\x42\x21\xbd\x7e\x9f\xe8\xa0\x4b\x92\x5d\x59\xc7\xf3\xa4\xe4\xbf\x97\xd5\x9c\x97\x60\xe8\xa7\x5d\xc7\x37\xf3\xde\xbe\x79\xfa\x58\x5b\x27\xf8\xea\xfa\x5a\x6c\x18\x8a\x23\xd3\x50\x2e\xda\x9a\x68\xcf\xbd\xc2\x56\x9c\x36\x65\x82\x46\x97\x86\xa4\x75\xfc\x78\x28\xad\xd3\x52\x1d\x15\x9e\xbf\x1b\xf9\x94\xa0\xa2\xa6\x9a\x57\x3b\xd6\x65\x25\x0a\xcf\xdf\xf4\xeb\xe6\x63\x8c\xbf\x61\x50\x3b\xae\xc9\x71\xe4\x67\xb1\x53\xa0\x56\xaa\xe8\x8b\x75\xce\x76\x7f\xe8\xd0\x72\x82\xad\x58\x47\x25\xc7\x58\x3e\xe6\xb9\x6d\x8d\x0c\x7d\xbe\x71\x38\x83\xb9\x0a\x7c\xce\xb0\xc6\x72\x79\x43\x20\x1e\x32\xdc\x2b\x2c\x7e\xb6\x8d\xa0\x76\xf6\x45\x17\x0c\x7a\x07\x82\x26\xa4\xa3\x0e\x2f\x5e\x02\xa4\x22\x81\x6e\xb0\x4e\xf0\x21\x81\x75\xb8\x5f\x78\xe2\xab\x37\x4e\x9c\xd7\xd5\x87\x0c\x9b\x39\x9d\xc7\xfc\x97\x69\xc7\xd2\x31\x1b\xac\x41\xa6\xc0\x66\xa0\x1b\xcd\xf3\x13\xd7\x69\x9a\xae\x52\x85\xc5\xef\x8a\xb1\xe7\xfe\xec\x2b\x8e\x9e\x65\xc7\x53\x77\x3a\x74\x7b\xb4\x1f\x70\x0a\xc3\x20\x38\xb0\xa0\x6e\x77\x07\x9d\xff\xe0\x1e\x19\x7e\xbd\xdd\x23\x4f\x31\xfd\x51\x7e\xec\xaa\xe0\xdc\x16\xfc\xc4\xaf\x51\x9c\xdc\x76\x5a\x61\x3b\xab\x45\x8e\xc6\xd5\xa9\x1b\xfe\xc7\x77\x61\x10\xc4\x6f\x4a\x68\x5c\x28\x32\x9c\x57\x1b\xd5\xd4\xfb\x14\x8c\x69\x18\x70\x67\xcc\x6a\xcf\x7d\xb3\xa2\xa2\x88\x2e\x44\x4e\xd7\x59\xe0\x9e\x2e\x3f\x2f\x14\x5d\xc1\xe2\xbb\xf7\x48\x8e\x67\x1c\x06\xa7\xf0\xf4\x2f\x00\x00\xff\xff\xc9\x2b\x3a\x56\x00\x03\x00\x00" func accountsCreate_new_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -759,7 +759,7 @@ func accountsCreate_new_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "accounts/create_new_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x63, 0xd8, 0xb6, 0xa0, 0x45, 0xbf, 0x8e, 0x61, 0x96, 0x19, 0x81, 0x84, 0xdb, 0x68, 0x5c, 0x2c, 0xf2, 0x29, 0x32, 0x50, 0x3c, 0xcb, 0x2d, 0xcb, 0x85, 0xc7, 0xd2, 0xdc, 0x4, 0xc8, 0x82, 0xba}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc4, 0xa7, 0xef, 0xd8, 0x70, 0x83, 0x96, 0xe8, 0xc7, 0xa3, 0x61, 0x1f, 0x72, 0xa9, 0xf8, 0x9f, 0x67, 0x5b, 0xf6, 0xd5, 0xc9, 0x33, 0x6d, 0xd3, 0x89, 0xe5, 0x83, 0x9c, 0xba, 0x78, 0x44, 0x3c}} return a, nil } diff --git a/lib/go/templates/manifest.mainnet.json b/lib/go/templates/manifest.mainnet.json index a13d03bf2..3624648aa 100755 --- a/lib/go/templates/manifest.mainnet.json +++ b/lib/go/templates/manifest.mainnet.json @@ -4,7 +4,7 @@ { "id": "FA.01", "name": "Create Account", - "source": "import Crypto\n\ntransaction(key: String, signatureAlgorithm: UInt8, hashAlgorithm: UInt8, weight: UFix64) {\n\tprepare(signer: auth(BorrowValue, Storage) \u0026Account) {\n\t\tpre {\n\t\t\tsignatureAlgorithm \u003e= 1 \u0026\u0026 signatureAlgorithm \u003c= 3: \"Must provide a signature algoritm raw value that is 1, 2, or 3\"\n\t\t\thashAlgorithm \u003e= 1 \u0026\u0026 hashAlgorithm \u003c= 6: \"Must provide a hash algoritm raw value that is between 1 and 6\"\n\t\t\tweight \u003c= 1000.0: \"The key weight must be between 0 and 1000\"\n\t\t}\n\n\t\tlet publicKey = PublicKey(\n\t\t\tpublicKey: key.decodeHex(),\n\t\t\tsignatureAlgorithm: SignatureAlgorithm(rawValue: signatureAlgorithm)!\n\t\t)\n\n\t\tlet account = Account(payer: signer)\n\n\t\taccount.keys.add(publicKey: publicKey, hashAlgorithm: HashAlgorithm(rawValue: hashAlgorithm)!, weight: weight)\n\t}\n}", + "source": "import Crypto\n\ntransaction(key: String, signatureAlgorithm: UInt8, hashAlgorithm: UInt8, weight: UFix64) {\n\tprepare(signer: auth(BorrowValue, Storage) \u0026Account) {\n\t\tpre {\n\t\t\tsignatureAlgorithm \u003e= 1 \u0026\u0026 signatureAlgorithm \u003c= 3: \"Must provide a signature algorithm raw value that is 1, 2, or 3\"\n\t\t\thashAlgorithm \u003e= 1 \u0026\u0026 hashAlgorithm \u003c= 6: \"Must provide a hash algorithm raw value that is between 1 and 6\"\n\t\t\tweight \u003c= 1000.0: \"The key weight must be between 0 and 1000\"\n\t\t}\n\n\t\tlet publicKey = PublicKey(\n\t\t\tpublicKey: key.decodeHex(),\n\t\t\tsignatureAlgorithm: SignatureAlgorithm(rawValue: signatureAlgorithm)!\n\t\t)\n\n\t\tlet account = Account(payer: signer)\n\n\t\taccount.keys.add(publicKey: publicKey, hashAlgorithm: HashAlgorithm(rawValue: hashAlgorithm)!, weight: weight)\n\t}\n}", "arguments": [ { "type": "String", @@ -52,12 +52,12 @@ } ], "network": "mainnet", - "hash": "63d8b6a045bf8e6196198184db685c2cf22932503ccb2dcb85c7d2dc04c882ba" + "hash": "c4a7efd8708396e8c7a3611f72a9f89f675bf6d5c9336dd389e5839cba78443c" }, { "id": "FA.02", "name": "Add Key", - "source": "import Crypto\n\ntransaction(key: String, signatureAlgorithm: UInt8, hashAlgorithm: UInt8, weight: UFix64) {\n\n\tprepare(signer: auth(AddKey) \u0026Account) {\n\t\tpre {\n\t\t\tsignatureAlgorithm \u003e= 1 \u0026\u0026 signatureAlgorithm \u003c= 3: \"Must provide a signature algoritm raw value that is 1, 2, or 3\"\n\t\t\thashAlgorithm \u003e= 1 \u0026\u0026 hashAlgorithm \u003c= 6: \"Must provide a hash algoritm raw value that is between 1 and 6\"\n\t\t\tweight \u003c= 1000.0: \"The key weight must be between 0 and 1000\"\n\t\t}\n\t\tlet publicKey = PublicKey(\n\t\t\tpublicKey: key.decodeHex(),\n\t\t\tsignatureAlgorithm: SignatureAlgorithm(rawValue: signatureAlgorithm)!\n\t\t)\n\n\t\tsigner.keys.add(publicKey: publicKey, hashAlgorithm: HashAlgorithm(rawValue: hashAlgorithm)!, weight: weight)\n\t}\n}", + "source": "import Crypto\n\ntransaction(key: String, signatureAlgorithm: UInt8, hashAlgorithm: UInt8, weight: UFix64) {\n\n\tprepare(signer: auth(AddKey) \u0026Account) {\n\t\tpre {\n\t\t\tsignatureAlgorithm \u003e= 1 \u0026\u0026 signatureAlgorithm \u003c= 3: \"Must provide a signature algorithm raw value that is 1, 2, or 3\"\n\t\t\thashAlgorithm \u003e= 1 \u0026\u0026 hashAlgorithm \u003c= 6: \"Must provide a hash algorithm raw value that is between 1 and 6\"\n\t\t\tweight \u003c= 1000.0: \"The key weight must be between 0 and 1000\"\n\t\t}\n\t\tlet publicKey = PublicKey(\n\t\t\tpublicKey: key.decodeHex(),\n\t\t\tsignatureAlgorithm: SignatureAlgorithm(rawValue: signatureAlgorithm)!\n\t\t)\n\n\t\tsigner.keys.add(publicKey: publicKey, hashAlgorithm: HashAlgorithm(rawValue: hashAlgorithm)!, weight: weight)\n\t}\n}", "arguments": [ { "type": "String", @@ -105,7 +105,7 @@ } ], "network": "mainnet", - "hash": "21d4e87df171ccbe015efe69dc2ffd24814c5fc0f2e364daf5c80515ce4a8bd9" + "hash": "1c9d1210f2bf129b86803b153e137420c9117e8a2409a1e2ef6f916a4e8d611f" }, { "id": "FA.03", diff --git a/lib/go/templates/manifest.testnet.json b/lib/go/templates/manifest.testnet.json index 466bc1973..23f553329 100755 --- a/lib/go/templates/manifest.testnet.json +++ b/lib/go/templates/manifest.testnet.json @@ -4,7 +4,7 @@ { "id": "FA.01", "name": "Create Account", - "source": "import Crypto\n\ntransaction(key: String, signatureAlgorithm: UInt8, hashAlgorithm: UInt8, weight: UFix64) {\n\tprepare(signer: auth(BorrowValue, Storage) \u0026Account) {\n\t\tpre {\n\t\t\tsignatureAlgorithm \u003e= 1 \u0026\u0026 signatureAlgorithm \u003c= 3: \"Must provide a signature algoritm raw value that is 1, 2, or 3\"\n\t\t\thashAlgorithm \u003e= 1 \u0026\u0026 hashAlgorithm \u003c= 6: \"Must provide a hash algoritm raw value that is between 1 and 6\"\n\t\t\tweight \u003c= 1000.0: \"The key weight must be between 0 and 1000\"\n\t\t}\n\n\t\tlet publicKey = PublicKey(\n\t\t\tpublicKey: key.decodeHex(),\n\t\t\tsignatureAlgorithm: SignatureAlgorithm(rawValue: signatureAlgorithm)!\n\t\t)\n\n\t\tlet account = Account(payer: signer)\n\n\t\taccount.keys.add(publicKey: publicKey, hashAlgorithm: HashAlgorithm(rawValue: hashAlgorithm)!, weight: weight)\n\t}\n}", + "source": "import Crypto\n\ntransaction(key: String, signatureAlgorithm: UInt8, hashAlgorithm: UInt8, weight: UFix64) {\n\tprepare(signer: auth(BorrowValue, Storage) \u0026Account) {\n\t\tpre {\n\t\t\tsignatureAlgorithm \u003e= 1 \u0026\u0026 signatureAlgorithm \u003c= 3: \"Must provide a signature algorithm raw value that is 1, 2, or 3\"\n\t\t\thashAlgorithm \u003e= 1 \u0026\u0026 hashAlgorithm \u003c= 6: \"Must provide a hash algorithm raw value that is between 1 and 6\"\n\t\t\tweight \u003c= 1000.0: \"The key weight must be between 0 and 1000\"\n\t\t}\n\n\t\tlet publicKey = PublicKey(\n\t\t\tpublicKey: key.decodeHex(),\n\t\t\tsignatureAlgorithm: SignatureAlgorithm(rawValue: signatureAlgorithm)!\n\t\t)\n\n\t\tlet account = Account(payer: signer)\n\n\t\taccount.keys.add(publicKey: publicKey, hashAlgorithm: HashAlgorithm(rawValue: hashAlgorithm)!, weight: weight)\n\t}\n}", "arguments": [ { "type": "String", @@ -52,12 +52,12 @@ } ], "network": "testnet", - "hash": "63d8b6a045bf8e6196198184db685c2cf22932503ccb2dcb85c7d2dc04c882ba" + "hash": "c4a7efd8708396e8c7a3611f72a9f89f675bf6d5c9336dd389e5839cba78443c" }, { "id": "FA.02", "name": "Add Key", - "source": "import Crypto\n\ntransaction(key: String, signatureAlgorithm: UInt8, hashAlgorithm: UInt8, weight: UFix64) {\n\n\tprepare(signer: auth(AddKey) \u0026Account) {\n\t\tpre {\n\t\t\tsignatureAlgorithm \u003e= 1 \u0026\u0026 signatureAlgorithm \u003c= 3: \"Must provide a signature algoritm raw value that is 1, 2, or 3\"\n\t\t\thashAlgorithm \u003e= 1 \u0026\u0026 hashAlgorithm \u003c= 6: \"Must provide a hash algoritm raw value that is between 1 and 6\"\n\t\t\tweight \u003c= 1000.0: \"The key weight must be between 0 and 1000\"\n\t\t}\n\t\tlet publicKey = PublicKey(\n\t\t\tpublicKey: key.decodeHex(),\n\t\t\tsignatureAlgorithm: SignatureAlgorithm(rawValue: signatureAlgorithm)!\n\t\t)\n\n\t\tsigner.keys.add(publicKey: publicKey, hashAlgorithm: HashAlgorithm(rawValue: hashAlgorithm)!, weight: weight)\n\t}\n}", + "source": "import Crypto\n\ntransaction(key: String, signatureAlgorithm: UInt8, hashAlgorithm: UInt8, weight: UFix64) {\n\n\tprepare(signer: auth(AddKey) \u0026Account) {\n\t\tpre {\n\t\t\tsignatureAlgorithm \u003e= 1 \u0026\u0026 signatureAlgorithm \u003c= 3: \"Must provide a signature algorithm raw value that is 1, 2, or 3\"\n\t\t\thashAlgorithm \u003e= 1 \u0026\u0026 hashAlgorithm \u003c= 6: \"Must provide a hash algorithm raw value that is between 1 and 6\"\n\t\t\tweight \u003c= 1000.0: \"The key weight must be between 0 and 1000\"\n\t\t}\n\t\tlet publicKey = PublicKey(\n\t\t\tpublicKey: key.decodeHex(),\n\t\t\tsignatureAlgorithm: SignatureAlgorithm(rawValue: signatureAlgorithm)!\n\t\t)\n\n\t\tsigner.keys.add(publicKey: publicKey, hashAlgorithm: HashAlgorithm(rawValue: hashAlgorithm)!, weight: weight)\n\t}\n}", "arguments": [ { "type": "String", @@ -105,7 +105,7 @@ } ], "network": "testnet", - "hash": "21d4e87df171ccbe015efe69dc2ffd24814c5fc0f2e364daf5c80515ce4a8bd9" + "hash": "1c9d1210f2bf129b86803b153e137420c9117e8a2409a1e2ef6f916a4e8d611f" }, { "id": "FA.03", diff --git a/tests/random_beacon_history_test.cdc b/tests/random_beacon_history_test.cdc index 705102a79..ee42e7bfe 100644 --- a/tests/random_beacon_history_test.cdc +++ b/tests/random_beacon_history_test.cdc @@ -3,7 +3,6 @@ import BlockchainHelpers import "RandomBeaconHistory" access(all) let admin = Test.getAccount(0x0000000000000007) -access(all) let defaultBackfillerMax = UInt64(100) access(all) fun setup() { @@ -28,7 +27,6 @@ fun testGetLowestHeightWhenNotInitialized() { ) } - access(all) fun testGetRandomSourceHistoryPageWithoutLowestHeightSet() { let page: UInt64 = 1 @@ -44,10 +42,9 @@ fun testGetRandomSourceHistoryPageWithoutLowestHeightSet() { ) } - access(all) fun testGetSourceOfRandomnessWithoutLowestHeightSet() { - let atBlockHeight: UInt64 = getCurrentBlockHeight() + 10 + let atBlockHeight: UInt64 = 101 let scriptResult = executeScript( "../transactions/randomBeaconHistory/scripts/get_source_of_randomness.cdc", [atBlockHeight] @@ -59,33 +56,31 @@ fun testGetSourceOfRandomnessWithoutLowestHeightSet() { ) } -// At this point the history array is empty access(all) fun testRecordRandomSource() { - let randomSource: [UInt8] = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 5, 8] - // executeTransaction advances the block height then executes the transaction! - let txResult = executeTransaction( + let randomSource: [UInt8] = [0, 1, 1, 2, 3, 5, 8] + let txResult = executeTransaction( "transactions/record_random_source.cdc", [randomSource], admin ) Test.expect(txResult, Test.beSucceeded()) - // get backfiller max entries + + let page: UInt64 = 0 + let perPage: UInt64 = 10 let scriptResult = executeScript( - "../transactions/randomBeaconHistory/scripts/get_backfiller_max_entries.cdc", - [admin.address] + "../transactions/randomBeaconHistory/scripts/get_source_of_randomness_page.cdc", + [page, perPage] ) Test.expect(scriptResult, Test.beSucceeded()) - let resultBackfillerMax = scriptResult.returnValue! as! UInt64 - Test.assertEqual(defaultBackfillerMax, resultBackfillerMax) + + let history = (scriptResult.returnValue as! RandomBeaconHistory.RandomSourceHistoryPage?)! + Test.assertEqual(randomSource, history.values[0]!.value) } -// At this point the history array has 1 entry access(all) -fun testGetSourceOfRandomnessForFutureBlockHeight() { - // random source entry of the current block height must be only available - // starting from the next block height - let atBlockHeight: UInt64 = getCurrentBlockHeight() +fun testGetSourceOfRandomnessForMissingBlockHeight() { + let atBlockHeight: UInt64 = 101 let scriptResult = executeScript( "../transactions/randomBeaconHistory/scripts/get_source_of_randomness.cdc", [atBlockHeight] @@ -97,7 +92,6 @@ fun testGetSourceOfRandomnessForFutureBlockHeight() { ) } -// At this point the history array has 1 entry access(all) fun testGetSourceOfRandomnessPrecedingRecordedHistory() { let lowestHeight = (executeScript( @@ -117,38 +111,10 @@ fun testGetSourceOfRandomnessPrecedingRecordedHistory() { ) } -// At this point the history array has 1 entry -access(all) -fun testGetRecordedSourceOfRandomnessPage() { - let page: UInt64 = 0 - let perPage: UInt64 = 10 - let scriptResult = executeScript( - "../transactions/randomBeaconHistory/scripts/get_source_of_randomness_page.cdc", - [page, perPage] - ) - Test.expect(scriptResult, Test.beSucceeded()) - - let history = (scriptResult.returnValue as! RandomBeaconHistory.RandomSourceHistoryPage?)! - Test.assertEqual(page, history.page) - Test.assertEqual(perPage, history.perPage) - Test.assertEqual(UInt64(1), history.totalLength) - Test.assertEqual(1, history.values.length) - let value: [UInt8] = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 5, 8] - Test.assertEqual(value, history.values[0]!.value) -} - -// At this point the history array has 1 entry access(all) -fun testGetRecordedSourceOfRandomness() { - // record a new random source and advance to the next block, - // this way the previous block's entry becomes available - let value: [UInt8] = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 5, 8] - let txResult = executeTransaction( - "transactions/record_random_source.cdc", - [value], - admin - ) - Test.expect(txResult, Test.beSucceeded()) +fun testGetSourceOfRandomnessFromPreviousBlockHeight() { + // Commit current block and advance to the next one + Test.commitBlock() let atBlockHeight: UInt64 = getCurrentBlockHeight() - 1 let scriptResult = executeScript( @@ -158,11 +124,11 @@ fun testGetRecordedSourceOfRandomness() { Test.expect(scriptResult, Test.beSucceeded()) let randomSource = scriptResult.returnValue! as! RandomBeaconHistory.RandomSource + let value: [UInt8] = [0, 1, 1, 2, 3, 5, 8] Test.assertEqual(atBlockHeight, randomSource.blockHeight) Test.assertEqual(value, randomSource.value) } -// At this point the history array has 2 entries access(all) fun testGetLatestSourceOfRandomness() { let scriptResult = executeScript( @@ -173,7 +139,7 @@ fun testGetLatestSourceOfRandomness() { let randomSource = scriptResult.returnValue! as! RandomBeaconHistory.RandomSource let atBlockHeight: UInt64 = getCurrentBlockHeight() - 1 - let value: [UInt8] = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 5, 8] + let value: [UInt8] = [0, 1, 1, 2, 3, 5, 8] Test.assertEqual(atBlockHeight, randomSource.blockHeight) Test.assertEqual(value, randomSource.value) } @@ -192,379 +158,3 @@ fun testGetRandomSourceHistoryPageExceedingLastPage() { let history = (scriptResult.returnValue as! RandomBeaconHistory.RandomSourceHistoryPage?)! Test.expect(history.values, Test.beEmpty()) } - - -// At this point the history array has 2 entries -access(all) -fun testGetMissingSourceFromGap() { - // advance blocks without recording a random source, hence creating a gap - // in the history array. - // So far only two entry were recorded - let gapLength = UInt64(90) - var i = UInt64(0) - while i < gapLength { - Test.commitBlock() - i = i + 1 - } - - // sources in the gap are non recorded and must be backfilled later - let gapStartHeight = RandomBeaconHistory.getLowestHeight() + 2 // skip the 2 recorded entries - - i = 0 - while i < gapLength-1 { - let atBlockHeight = gapStartHeight + i - let scriptResult = executeScript( - "../transactions/randomBeaconHistory/scripts/get_source_of_randomness.cdc", - [atBlockHeight] - ) - Test.expect(scriptResult, Test.beFailed()) - Test.assertError( - scriptResult, - errorMessage: "Source of randomness is currently not available but will be available soon" - ) - i = i + 1 - } -} - -// At this point the history array has 2 entries and then an empty gap -access(all) -fun testGetPageFromGap() { - // So far only two entry were recorded and then there is a gap - // the page function only returns the SoRs recorded so far which are limited to the 2 entries - let recordedSources = 2 - - let page: UInt64 = 0 - let perPage: UInt64 = 4 - let scriptResult = executeScript( - "../transactions/randomBeaconHistory/scripts/get_source_of_randomness_page.cdc", - [page, perPage] - ) - Test.expect(scriptResult, Test.beSucceeded()) - - let history = (scriptResult.returnValue as! RandomBeaconHistory.RandomSourceHistoryPage?)! - Test.assertEqual(page, history.page) - Test.assertEqual(perPage, history.perPage) - Test.assertEqual(UInt64(recordedSources), history.totalLength) - Test.assertEqual(recordedSources, history.values.length) - let value: [UInt8] = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 5, 8] - Test.assertEqual(value, history.values[0]!.value) -} - - -// at this point the history has 2 entries and then a gap -access(all) -fun testGetBackfilledSource() { - let gapLength = UInt64(90) // matching the length from the previous test - - // record a new random source, which would trigger fully backfilling the gap - // (when the gap size is less than 100, since the contracts backfills up to 100 entries at a time) - assert(gapLength <= defaultBackfillerMax) - var value: [UInt8] = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 5, 8] - let txResult = executeTransaction( - "transactions/record_random_source.cdc", - [value], - admin - ) - Test.expect(txResult, Test.beSucceeded()) - - // make sure latest source got recorded as expected - Test.commitBlock() - let atBlockHeight: UInt64 = getCurrentBlockHeight() - 1 - let scriptResult = executeScript( - "../transactions/randomBeaconHistory/scripts/get_source_of_randomness.cdc", - [atBlockHeight] - ) - Test.expect(scriptResult, Test.beSucceeded()) - - - let randomSource = scriptResult.returnValue! as! RandomBeaconHistory.RandomSource - Test.assertEqual(atBlockHeight, randomSource.blockHeight) - Test.assertEqual(value, randomSource.value) - - - // check the gap and make sure it got backfilled - let gapStartHeight = RandomBeaconHistory.getLowestHeight() + 2 // skip the 2 recorded entries - var i = UInt64(0) - while i < gapLength { - let atBlockHeight = gapStartHeight + i - let scriptResult = executeScript( - "../transactions/randomBeaconHistory/scripts/get_source_of_randomness.cdc", - [atBlockHeight] - ) - Test.expect(scriptResult, Test.beSucceeded()) - - let randomSource = scriptResult.returnValue! as! RandomBeaconHistory.RandomSource - Test.assertEqual(atBlockHeight, randomSource.blockHeight) - // compare against the expected backfilled value - value = HashAlgorithm.SHA3_256.hash(value) - Test.assertEqual(value, randomSource.value) - i = i + 1 - } - - // Confirm event values - let missingEvents = Test.eventsOfType(Type()) - Test.assertEqual(1, missingEvents.length) - let missingEvent = missingEvents[0] as! RandomBeaconHistory.RandomHistoryMissing - Test.assertEqual(atBlockHeight, missingEvent.blockHeight) - Test.assertEqual(gapStartHeight, missingEvent.gapStartHeight) - - let backfilledEvents = Test.eventsOfType(Type()) - Test.assertEqual(1, backfilledEvents.length) - let backfilledEvent = backfilledEvents[0] as! RandomBeaconHistory.RandomHistoryBackfilled - Test.assertEqual(atBlockHeight, backfilledEvent.blockHeight) - Test.assertEqual(gapStartHeight, backfilledEvent.gapStartHeight) - Test.assertEqual(gapLength, backfilledEvent.count) -} - -// At this point the history array has 2+90+1 = 93 entries and no gaps -access(all) -fun testGetPageAfterBackfilling() { - // So far only two entry were recorded and then there is a gap - // the page function only returns the SoRs recorded so far which are limited to the 2 entries - let recordedSources = UInt64(93) - - let page: UInt64 = 5 - let perPage: UInt64 = 10 - assert((page+1) * perPage < recordedSources) - let scriptResult = executeScript( - "../transactions/randomBeaconHistory/scripts/get_source_of_randomness_page.cdc", - [page, perPage] - ) - Test.expect(scriptResult, Test.beSucceeded()) - - let history = (scriptResult.returnValue as! RandomBeaconHistory.RandomSourceHistoryPage?)! - Test.assertEqual(page, history.page) - Test.assertEqual(perPage, history.perPage) - Test.assertEqual(recordedSources, history.totalLength) - Test.assertEqual(perPage, UInt64(history.values.length)) -} - -// reset the blockchain state back to the lowest height (1 SoR entry) -// -// The next section tests an edge case where a gap is not contiguous. This happens -// when an initial large gap doesn't get fully backfilled before another gap occurs. -access(all) -fun testNonContiguousGaps() { - Test.reset(to: RandomBeaconHistory.getLowestHeight()) - - // advance blocks without recording a random source, hence creating a gap - // in the history array. The gap is long enough so that it can't be backfilled - // in one transaction only (gap is larger than 100) - var gapLength = UInt64(120) - assert (gapLength > defaultBackfillerMax) - var i = UInt64(0) - while i < gapLength { - Test.commitBlock() - i = i + 1 - } - - // record a new random source, which would trigger partially backfilling the gap - // (when the gap size is more than 100, since the contracts backfills up to 100 entries at a time) - var value: [UInt8] = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 5, 8] - var txResult = executeTransaction( - "transactions/record_random_source.cdc", - [value], - admin - ) - Test.expect(txResult, Test.beSucceeded()) - var backfillingHeight = getCurrentBlockHeight() - - // the gap is partially backfilled - // for `gapStartHeight` skip the 1 recorded entry and backfilled entries - var gapStartHeight = RandomBeaconHistory.getLowestHeight() + defaultBackfillerMax + 1 - // the remaining gap after backfilling - gapLength = gapLength - defaultBackfillerMax - - // check that the gap isn't fully backfilled - // (check that the gap got backfilled was covered by an earlier test) - i = 0 - while i < gapLength { - let atBlockHeight = gapStartHeight + i - let scriptResult = executeScript( - "../transactions/randomBeaconHistory/scripts/get_source_of_randomness.cdc", - [atBlockHeight] - ) - Test.expect(scriptResult, Test.beFailed()) - Test.assertError( - scriptResult, - errorMessage: "Source of randomness is currently not available but will be available soon" - ) - i = i + 1 - } - - // check that getting pages also fails in this case - // because some entries are missing from the page - var page: UInt64 = 0 - var perPage: UInt64 = defaultBackfillerMax + 5 // 5 entries are empty on the SoR array - var scriptResult = executeScript( - "../transactions/randomBeaconHistory/scripts/get_source_of_randomness_page.cdc", - [page, perPage] - ) - Test.expect(scriptResult, Test.beFailed()) - Test.assertError( - scriptResult, - errorMessage: "Source of randomness is currently not available but will be available soon" - ) - - // Confirm event values - // There should be one event of each type - var missingEvents = Test.eventsOfType(Type()) - Test.assertEqual(1, missingEvents.length) - var missingEvent = missingEvents[0] as! RandomBeaconHistory.RandomHistoryMissing - Test.assertEqual(backfillingHeight, missingEvent.blockHeight) - Test.assertEqual(gapStartHeight - defaultBackfillerMax, missingEvent.gapStartHeight) - - var backfilledEvents = Test.eventsOfType(Type()) - Test.assertEqual(1, backfilledEvents.length) - var backfilledEvent = backfilledEvents[0] as! RandomBeaconHistory.RandomHistoryBackfilled - Test.assertEqual(backfillingHeight, backfilledEvent.blockHeight) - Test.assertEqual(gapStartHeight- defaultBackfillerMax, backfilledEvent.gapStartHeight) - Test.assertEqual(defaultBackfillerMax, backfilledEvent.count) - - // insert a new gap and make sure it can be all backfilled in the next transaction - var newGapLength = UInt64(20) - assert (gapLength + newGapLength < defaultBackfillerMax) - - i = UInt64(0) - while i < newGapLength { - Test.commitBlock() - i = i + 1 - } - - // at this point there is a gap of size `gapLength` followed by one entry, and then - // a new gap of size `newGapLength` - // one call to the heartbeat function should backfill both gaps - txResult = executeTransaction( - "transactions/record_random_source.cdc", - [value], - admin - ) - Test.expect(txResult, Test.beSucceeded()) - backfillingHeight = getCurrentBlockHeight() - - // check that both first and second gap are backfilled - i = 0 - while i < gapLength { - let atBlockHeight = gapStartHeight + i - let scriptResult = executeScript( - "../transactions/randomBeaconHistory/scripts/get_source_of_randomness.cdc", - [atBlockHeight] - ) - Test.expect(scriptResult, Test.beSucceeded()) - i = i + 1 - } - gapStartHeight = gapStartHeight + gapLength + 1 - i = 0 - while i < newGapLength { - let atBlockHeight = gapStartHeight + i - let scriptResult = executeScript( - "../transactions/randomBeaconHistory/scripts/get_source_of_randomness.cdc", - [atBlockHeight] - ) - Test.expect(scriptResult, Test.beSucceeded()) - i = i + 1 - } - - // check getting a page with the entire history succeeds, - // which means no entry got left empty. - let totalSources = gapStartHeight + newGapLength + 1 - RandomBeaconHistory.getLowestHeight() - - page = 0 - perPage = totalSources - scriptResult = executeScript( - "../transactions/randomBeaconHistory/scripts/get_source_of_randomness_page.cdc", - [page, perPage] - ) - Test.expect(scriptResult, Test.beSucceeded()) - - let history = (scriptResult.returnValue as! RandomBeaconHistory.RandomSourceHistoryPage?)! - Test.assertEqual(page, history.page) - Test.assertEqual(perPage, history.perPage) - Test.assertEqual(totalSources, history.totalLength) - Test.assertEqual(perPage, UInt64(history.values.length)) - - // Confirm event values - - // There should be two events of each type - // the first events were already checked above - focus only on the second event of each type - missingEvents = Test.eventsOfType(Type()) - Test.assertEqual(2, missingEvents.length) - missingEvent = missingEvents[1] as! RandomBeaconHistory.RandomHistoryMissing - Test.assertEqual(backfillingHeight, missingEvent.blockHeight) - Test.assertEqual(gapStartHeight, missingEvent.gapStartHeight) - - backfilledEvents = Test.eventsOfType(Type()) - Test.assertEqual(2, backfilledEvents.length) - backfilledEvent = backfilledEvents[1] as! RandomBeaconHistory.RandomHistoryBackfilled - Test.assertEqual(backfillingHeight, backfilledEvent.blockHeight) - Test.assertEqual(gapStartHeight - gapLength - 1, backfilledEvent.gapStartHeight) - Test.assertEqual(gapLength + newGapLength, backfilledEvent.count) -} - -// independent test from the rest (it resets the blockchain state) -access(all) -fun testRecordInvalidRandomSource() { - // reset the blockchain state back to the lowest height (1 SoR entry) - Test.reset(to: RandomBeaconHistory.getLowestHeight()) - - let invalidRandomSource: [UInt8] = [0, 1, 1, 2, 3, 5, 8] - assert (invalidRandomSource.length < (128/8)) - // short sources should be rejected - let txResult = executeTransaction( - "transactions/record_random_source.cdc", - [invalidRandomSource], - admin - ) - Test.expect(txResult, Test.beFailed()) - Test.assertError( - txResult, - errorMessage: "Random source must be at least 128 bits" - ) -} - -// independent test from the rest (it resets the blockchain state) -access(all) -fun testBackfillerMaxEntryPerCall() { - // reset the blockchain state back to the lowest height (1 SoR entry) - Test.reset(to: RandomBeaconHistory.getLowestHeight()) - // get backfiller max entries - var scriptResult = executeScript( - "../transactions/randomBeaconHistory/scripts/get_backfiller_max_entries.cdc", - [admin.address] - ) - Test.expect(scriptResult, Test.beSucceeded()) - var resultBackfillerMax = scriptResult.returnValue! as! UInt64 - Test.assertEqual(defaultBackfillerMax, resultBackfillerMax) - - let randomSource: [UInt8] = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 5, 8] - // this creates a backfiller - var txResult = executeTransaction( - "transactions/record_random_source.cdc", - [randomSource], - admin - ) - Test.expect(txResult, Test.beSucceeded()) - // set backfiller max entries - let newBackfillerMax = UInt64(55) - txResult = executeTransaction( - "../transactions/randomBeaconHistory/transactions/set_backfiller_max_entries.cdc", - [newBackfillerMax], - admin - ) - Test.expect(txResult, Test.beSucceeded()) - // get backfiller max entries - scriptResult = executeScript( - "../transactions/randomBeaconHistory/scripts/get_backfiller_max_entries.cdc", - [admin.address] - ) - Test.expect(scriptResult, Test.beSucceeded()) - resultBackfillerMax = scriptResult.returnValue! as! UInt64 - Test.assertEqual(resultBackfillerMax!, newBackfillerMax) - // invalid backfiller max entries - txResult = executeTransaction( - "../transactions/randomBeaconHistory/transactions/set_backfiller_max_entries.cdc", - [0], - admin - ) - Test.expect(txResult, Test.beFailed()) -} diff --git a/tests/test_account_txs.cdc b/tests/test_account_txs.cdc deleted file mode 100644 index d4438bc50..000000000 --- a/tests/test_account_txs.cdc +++ /dev/null @@ -1,178 +0,0 @@ -import Test -import BlockchainHelpers - -access(all) let admin = Test.getAccount(0x0000000000000007) - -access(all) -fun setup() { -} - -access(all) -fun testCreateAccount() { - let key = "7d5305c22cb7da418396f32c474c6d84b0bb87ca311d6aa6edfd70a1120ded9dc11427ac31261c24e4e7a6c2affea28ff3da7b00fe285029877fb0b5970dc110" - - // Should fail - var txResult = executeTransaction( - "../transactions/accounts/create_new_account.cdc", - [key, UInt8(0), UInt8(1), 1000.0], - admin - ) - Test.expect(txResult, Test.beFailed()) - Test.assertError( - txResult, - errorMessage: "Must provide a signature algoritm raw value that is 1, 2, or 3" - ) - - // Should fail - txResult = executeTransaction( - "../transactions/accounts/create_new_account.cdc", - [key, UInt8(5), UInt8(1), 1000.0], - admin - ) - Test.expect(txResult, Test.beFailed()) - Test.assertError( - txResult, - errorMessage: "Must provide a signature algoritm raw value that is 1, 2, or 3" - ) - - // Should fail - txResult = executeTransaction( - "../transactions/accounts/create_new_account.cdc", - [key, UInt8(1), UInt8(0), 1000.0], - admin - ) - Test.expect(txResult, Test.beFailed()) - Test.assertError( - txResult, - errorMessage: "Must provide a hash algoritm raw value that is between 1 and 6" - ) - - // Should fail - txResult = executeTransaction( - "../transactions/accounts/create_new_account.cdc", - [key, UInt8(1), UInt8(10), 1000.0], - admin - ) - Test.expect(txResult, Test.beFailed()) - Test.assertError( - txResult, - errorMessage: "Must provide a hash algoritm raw value that is between 1 and 6" - ) - - // Should fail - txResult = executeTransaction( - "../transactions/accounts/create_new_account.cdc", - [key, UInt8(1), UInt8(1), 1222100.0], - admin - ) - Test.expect(txResult, Test.beFailed()) - Test.assertError( - txResult, - errorMessage: "The key weight must be between 0 and 1000" - ) - - // Should succeed - txResult = executeTransaction( - "../transactions/accounts/create_new_account.cdc", - [key, UInt8(1), UInt8(1), 1000.0], - admin - ) - Test.expect(txResult, Test.beSucceeded()) -} - -access(all) -fun testAddKey() { - let key = "7d5305c22cb7da418396f32c474c6d84b0bb87ca311d6aa6edfd70a1120ded9dc11427ac31261c24e4e7a6c2affea28ff3da7b00fe285029877fb0b5970dc110" - - // Should fail - var txResult = executeTransaction( - "../transactions/accounts/add_key.cdc", - [key, UInt8(0), UInt8(1), 1000.0], - admin - ) - Test.expect(txResult, Test.beFailed()) - Test.assertError( - txResult, - errorMessage: "Must provide a signature algoritm raw value that is 1, 2, or 3" - ) - - // Should fail - txResult = executeTransaction( - "../transactions/accounts/add_key.cdc", - [key, UInt8(5), UInt8(1), 1000.0], - admin - ) - Test.expect(txResult, Test.beFailed()) - Test.assertError( - txResult, - errorMessage: "Must provide a signature algoritm raw value that is 1, 2, or 3" - ) - - // Should fail - txResult = executeTransaction( - "../transactions/accounts/add_key.cdc", - [key, UInt8(1), UInt8(0), 1000.0], - admin - ) - Test.expect(txResult, Test.beFailed()) - Test.assertError( - txResult, - errorMessage: "Must provide a hash algoritm raw value that is between 1 and 6" - ) - - // Should fail - txResult = executeTransaction( - "../transactions/accounts/add_key.cdc", - [key, UInt8(1), UInt8(10), 1000.0], - admin - ) - Test.expect(txResult, Test.beFailed()) - Test.assertError( - txResult, - errorMessage: "Must provide a hash algoritm raw value that is between 1 and 6" - ) - - // Should fail - txResult = executeTransaction( - "../transactions/accounts/add_key.cdc", - [key, UInt8(1), UInt8(1), 1222100.0], - admin - ) - Test.expect(txResult, Test.beFailed()) - Test.assertError( - txResult, - errorMessage: "The key weight must be between 0 and 1000" - ) - - // Should succeed - txResult = executeTransaction( - "../transactions/accounts/add_key.cdc", - [key, UInt8(1), UInt8(1), 1000.0], - admin - ) - Test.expect(txResult, Test.beSucceeded()) -} - -access(all) -fun testRevokeKey() { - - // Should fail because no key with that index exists - var txResult = executeTransaction( - "../transactions/accounts/revoke_key.cdc", - [8], - admin - ) - Test.expect(txResult, Test.beFailed()) - Test.assertError( - txResult, - errorMessage: "No key with the given index exists on the authorizer's account" - ) - - // Should succeed - txResult = executeTransaction( - "../transactions/accounts/revoke_key.cdc", - [1], - admin - ) - Test.expect(txResult, Test.beSucceeded()) -} \ No newline at end of file diff --git a/transactions/accounts/add_key.cdc b/transactions/accounts/add_key.cdc index 3430207e2..24b86e1ea 100644 --- a/transactions/accounts/add_key.cdc +++ b/transactions/accounts/add_key.cdc @@ -4,8 +4,8 @@ transaction(key: String, signatureAlgorithm: UInt8, hashAlgorithm: UInt8, weight prepare(signer: auth(AddKey) &Account) { pre { - signatureAlgorithm >= 1 && signatureAlgorithm <= 3: "Must provide a signature algoritm raw value that is 1, 2, or 3" - hashAlgorithm >= 1 && hashAlgorithm <= 6: "Must provide a hash algoritm raw value that is between 1 and 6" + signatureAlgorithm >= 1 && signatureAlgorithm <= 3: "Must provide a signature algorithm raw value that is 1, 2, or 3" + hashAlgorithm >= 1 && hashAlgorithm <= 6: "Must provide a hash algorithm raw value that is between 1 and 6" weight <= 1000.0: "The key weight must be between 0 and 1000" } let publicKey = PublicKey( diff --git a/transactions/accounts/create_new_account.cdc b/transactions/accounts/create_new_account.cdc index d610ce56d..21cc820b6 100644 --- a/transactions/accounts/create_new_account.cdc +++ b/transactions/accounts/create_new_account.cdc @@ -3,8 +3,8 @@ import Crypto transaction(key: String, signatureAlgorithm: UInt8, hashAlgorithm: UInt8, weight: UFix64) { prepare(signer: auth(BorrowValue, Storage) &Account) { pre { - signatureAlgorithm >= 1 && signatureAlgorithm <= 3: "Must provide a signature algoritm raw value that is 1, 2, or 3" - hashAlgorithm >= 1 && hashAlgorithm <= 6: "Must provide a hash algoritm raw value that is between 1 and 6" + signatureAlgorithm >= 1 && signatureAlgorithm <= 3: "Must provide a signature algorithm raw value that is 1, 2, or 3" + hashAlgorithm >= 1 && hashAlgorithm <= 6: "Must provide a hash algorithm raw value that is between 1 and 6" weight <= 1000.0: "The key weight must be between 0 and 1000" } From 9eaaa3978308c2d16f03f725db7c43688037d420 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 9 Apr 2024 16:22:28 -0500 Subject: [PATCH 098/160] update nft transactions --- lib/go/contracts/go.mod | 2 +- lib/go/contracts/go.sum | 2 ++ lib/go/templates/go.mod | 2 +- lib/go/templates/go.sum | 2 ++ lib/go/templates/manifest.mainnet.json | 12 ++++++------ lib/go/templates/manifest.testnet.json | 12 ++++++------ 6 files changed, 18 insertions(+), 14 deletions(-) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 820e797b6..6d8a2d97e 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -6,7 +6,7 @@ require ( github.com/kevinburke/go-bindata v3.24.0+incompatible github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9 github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240402160548-a9c331660956 - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240402163945-74687e7a5b9d + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240409211504-f122847cbd9b github.com/stretchr/testify v1.8.4 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 7bb420a06..33ee21e7b 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1625,6 +1625,8 @@ github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSE github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240402163945-74687e7a5b9d h1:CeM0F/t8f6UYKIP/PzHApt0BfX5FLCbFiSW3tkXHLyA= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240402163945-74687e7a5b9d/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240409211504-f122847cbd9b h1:B6IRYFFZz7Z1K9f7w+JDA1MPSWzUvKPBYsuryocf+HU= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240409211504-f122847cbd9b/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8 h1:BqgQgXktxVFv8erjCaSHpL0CP+pa5M8g655GyF/t4JM= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= diff --git a/lib/go/templates/go.mod b/lib/go/templates/go.mod index 132fa47cf..8ccf6b1ba 100644 --- a/lib/go/templates/go.mod +++ b/lib/go/templates/go.mod @@ -7,7 +7,7 @@ require ( github.com/onflow/cadence v1.0.0-M3 github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240402160548-a9c331660956 github.com/onflow/flow-go-sdk v1.0.0-M1 - github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240402163945-74687e7a5b9d + github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240409211504-f122847cbd9b github.com/psiemens/sconfig v0.1.0 github.com/spf13/cobra v1.5.0 ) diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index 346fa2650..561c88f5c 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -1621,6 +1621,8 @@ github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSE github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240402163945-74687e7a5b9d h1:9BUEgH1oFUMeOab++UNgok9Jk+rejQIrIHYKNe/TD20= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240402163945-74687e7a5b9d/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= +github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240409211504-f122847cbd9b h1:KTnwl1Ttla6Yg39sWeJoyCAzl9GgUHYjvh2d8qBcdUE= +github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240409211504-f122847cbd9b/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= diff --git a/lib/go/templates/manifest.mainnet.json b/lib/go/templates/manifest.mainnet.json index 3624648aa..fe02e82eb 100755 --- a/lib/go/templates/manifest.mainnet.json +++ b/lib/go/templates/manifest.mainnet.json @@ -267,7 +267,7 @@ { "id": "NFT.01", "name": "Setup NFT Collection", - "source": "/// This transaction is what an account would run\n/// to set itself up to receive NFTs. This function\n/// uses views to know where to set up the collection\n/// in storage and to create the empty collection.\n\nimport 0x1d7e57aa55817448\nimport 0x1d7e57aa55817448\n\ntransaction(contractAddress: Address, contractName: String) {\n\n prepare(signer: auth(IssueStorageCapabilityController, PublishCapability, SaveValue) \u0026Account) {\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{NonFungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n let collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n // Create a new empty collections\n let emptyCollection \u003c- collectionData.createEmptyCollection()\n\n // save it to the account\n signer.storage.save(\u003c-emptyCollection, to: collectionData.storagePath)\n\n // create a public capability for the collection\n let collectionCap = signer.capabilities.storage.issue\u003c\u0026{NonFungibleToken.Collection}\u003e(\n collectionData.storagePath\n )\n signer.capabilities.publish(collectionCap, at: collectionData.publicPath)\n }\n}\n", + "source": "/// This transaction is what an account would run\n/// to set itself up to receive NFTs. This function\n/// uses views to know where to set up the collection\n/// in storage and to create the empty collection.\n\nimport NonFungibleToken from 0x1d7e57aa55817448\nimport MetadataViews from 0x1d7e57aa55817448\n\ntransaction(contractAddress: Address, contractName: String) {\n\n prepare(signer: auth(IssueStorageCapabilityController, PublishCapability, SaveValue) \u0026Account) {\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{NonFungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n let collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n // Create a new empty collections\n let emptyCollection \u003c- collectionData.createEmptyCollection()\n\n // save it to the account\n signer.storage.save(\u003c-emptyCollection, to: collectionData.storagePath)\n\n // create a public capability for the collection\n let collectionCap = signer.capabilities.storage.issue\u003c\u0026{NonFungibleToken.Collection}\u003e(\n collectionData.storagePath\n )\n signer.capabilities.publish(collectionCap, at: collectionData.publicPath)\n }\n}\n", "arguments": [ { "type": "Address", @@ -293,12 +293,12 @@ } ], "network": "mainnet", - "hash": "1d12c005fa7a08277204e5d54e29b725c52b9e8e3dd6ff6e01f8d47d7be1626c" + "hash": "a25e07dea5eb608387d3766fd6ce0110491599a6d61a5e7e9afddd19a7e76611" }, { "id": "NFT.02", "name": "Transfer NFT with Paths", - "source": "import 0x1d7e57aa55817448\n\n/// Can pass in any storage path and receiver path instead of just the default.\n/// This lets you choose the token you want to send as well the capability you want to send it to.\n///\n/// Any token path can be passed as an argument here, so wallets should\n/// should check argument values to make sure the intended token path is passed in\n///\ntransaction(to: Address, id: UInt64, senderPathIdentifier: String, receiverPathIdentifier: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n let storagePath = StoragePath(identifier: senderPathIdentifier)\n ?? panic(\"Could not construct a storage path from the provided path identifier string\")\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n let publicPath = PublicPath(identifier: receiverPathIdentifier)\n ?? panic(\"Could not construct a public path from the provided path identifier string\")\n\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n let receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", + "source": "import NonFungibleToken from 0x1d7e57aa55817448\n\n/// Can pass in any storage path and receiver path instead of just the default.\n/// This lets you choose the token you want to send as well the capability you want to send it to.\n///\n/// Any token path can be passed as an argument here, so wallets should\n/// should check argument values to make sure the intended token path is passed in\n///\ntransaction(to: Address, id: UInt64, senderPathIdentifier: String, receiverPathIdentifier: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n let storagePath = StoragePath(identifier: senderPathIdentifier)\n ?? panic(\"Could not construct a storage path from the provided path identifier string\")\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n let publicPath = PublicPath(identifier: receiverPathIdentifier)\n ?? panic(\"Could not construct a public path from the provided path identifier string\")\n\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n let receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", "arguments": [ { "type": "Address", @@ -346,12 +346,12 @@ } ], "network": "mainnet", - "hash": "a56eb0c3e6c3456eee86d5cb62ddf700b0d1e5e65f12fe6926edd6d181658285" + "hash": "4c509996ec971e19f26d497a7daa7563bdb10d2a401b5cf214eff95beec565fc" }, { "id": "NFT.03", "name": "Transfer NFT with Address", - "source": "import 0x1d7e57aa55817448\nimport 0x1d7e57aa55817448\n\n/// Can pass in any contract address and name\n/// This lets you choose the token you want to send because\n/// the transaction gets the metadata from the provided contract.\n///\ntransaction(to: Address, id: UInt64, contractAddress: Address, contractName: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n // NFTCollectionData struct to get paths from\n let collectionData: MetadataViews.NFTCollectionData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{NonFungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n self.collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: self.collectionData.storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(self.collectionData.publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n let receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", + "source": "import NonFungibleToken from 0x1d7e57aa55817448\nimport MetadataViews from 0x1d7e57aa55817448\n\n/// Can pass in any contract address and name\n/// This lets you choose the token you want to send because\n/// the transaction gets the metadata from the provided contract.\n///\ntransaction(to: Address, id: UInt64, contractAddress: Address, contractName: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n // NFTCollectionData struct to get paths from\n let collectionData: MetadataViews.NFTCollectionData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{NonFungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n self.collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: self.collectionData.storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(self.collectionData.publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n let receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", "arguments": [ { "type": "Address", @@ -399,7 +399,7 @@ } ], "network": "mainnet", - "hash": "111142945f27d91bf3be630737805eba25d586b0c292bb3818e5d4cf4287e31c" + "hash": "e380305e11ce6959662fa12715c4689d2c588403e138876225a243b8034c0afc" }, { "id": "TH.01", diff --git a/lib/go/templates/manifest.testnet.json b/lib/go/templates/manifest.testnet.json index 23f553329..06cf3490b 100755 --- a/lib/go/templates/manifest.testnet.json +++ b/lib/go/templates/manifest.testnet.json @@ -267,7 +267,7 @@ { "id": "NFT.01", "name": "Setup NFT Collection", - "source": "/// This transaction is what an account would run\n/// to set itself up to receive NFTs. This function\n/// uses views to know where to set up the collection\n/// in storage and to create the empty collection.\n\nimport 0x631e88ae7f1d7c20\nimport 0x631e88ae7f1d7c20\n\ntransaction(contractAddress: Address, contractName: String) {\n\n prepare(signer: auth(IssueStorageCapabilityController, PublishCapability, SaveValue) \u0026Account) {\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{NonFungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n let collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n // Create a new empty collections\n let emptyCollection \u003c- collectionData.createEmptyCollection()\n\n // save it to the account\n signer.storage.save(\u003c-emptyCollection, to: collectionData.storagePath)\n\n // create a public capability for the collection\n let collectionCap = signer.capabilities.storage.issue\u003c\u0026{NonFungibleToken.Collection}\u003e(\n collectionData.storagePath\n )\n signer.capabilities.publish(collectionCap, at: collectionData.publicPath)\n }\n}\n", + "source": "/// This transaction is what an account would run\n/// to set itself up to receive NFTs. This function\n/// uses views to know where to set up the collection\n/// in storage and to create the empty collection.\n\nimport NonFungibleToken from 0x631e88ae7f1d7c20\nimport MetadataViews from 0x631e88ae7f1d7c20\n\ntransaction(contractAddress: Address, contractName: String) {\n\n prepare(signer: auth(IssueStorageCapabilityController, PublishCapability, SaveValue) \u0026Account) {\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{NonFungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n let collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n // Create a new empty collections\n let emptyCollection \u003c- collectionData.createEmptyCollection()\n\n // save it to the account\n signer.storage.save(\u003c-emptyCollection, to: collectionData.storagePath)\n\n // create a public capability for the collection\n let collectionCap = signer.capabilities.storage.issue\u003c\u0026{NonFungibleToken.Collection}\u003e(\n collectionData.storagePath\n )\n signer.capabilities.publish(collectionCap, at: collectionData.publicPath)\n }\n}\n", "arguments": [ { "type": "Address", @@ -293,12 +293,12 @@ } ], "network": "testnet", - "hash": "d9ef3b05f8b06d43c3a0ef4066e88e6248323c5f235f9a5d1f8a85d6e2bc9bfa" + "hash": "54fae25bb09f5a324821b644890acbc5a356bcbe821218edeb18bd3042dcd333" }, { "id": "NFT.02", "name": "Transfer NFT with Paths", - "source": "import 0x631e88ae7f1d7c20\n\n/// Can pass in any storage path and receiver path instead of just the default.\n/// This lets you choose the token you want to send as well the capability you want to send it to.\n///\n/// Any token path can be passed as an argument here, so wallets should\n/// should check argument values to make sure the intended token path is passed in\n///\ntransaction(to: Address, id: UInt64, senderPathIdentifier: String, receiverPathIdentifier: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n let storagePath = StoragePath(identifier: senderPathIdentifier)\n ?? panic(\"Could not construct a storage path from the provided path identifier string\")\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n let publicPath = PublicPath(identifier: receiverPathIdentifier)\n ?? panic(\"Could not construct a public path from the provided path identifier string\")\n\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n let receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", + "source": "import NonFungibleToken from 0x631e88ae7f1d7c20\n\n/// Can pass in any storage path and receiver path instead of just the default.\n/// This lets you choose the token you want to send as well the capability you want to send it to.\n///\n/// Any token path can be passed as an argument here, so wallets should\n/// should check argument values to make sure the intended token path is passed in\n///\ntransaction(to: Address, id: UInt64, senderPathIdentifier: String, receiverPathIdentifier: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n let storagePath = StoragePath(identifier: senderPathIdentifier)\n ?? panic(\"Could not construct a storage path from the provided path identifier string\")\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n let publicPath = PublicPath(identifier: receiverPathIdentifier)\n ?? panic(\"Could not construct a public path from the provided path identifier string\")\n\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n let receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", "arguments": [ { "type": "Address", @@ -346,12 +346,12 @@ } ], "network": "testnet", - "hash": "f08815a2f535512a65e5c95c391dd6ff89662dad8fd68da836d11d0827a52bd4" + "hash": "267278a2c41182ced41877d4ecdec086e07ee152d17e8f5b8ba910b9c91aabde" }, { "id": "NFT.03", "name": "Transfer NFT with Address", - "source": "import 0x631e88ae7f1d7c20\nimport 0x631e88ae7f1d7c20\n\n/// Can pass in any contract address and name\n/// This lets you choose the token you want to send because\n/// the transaction gets the metadata from the provided contract.\n///\ntransaction(to: Address, id: UInt64, contractAddress: Address, contractName: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n // NFTCollectionData struct to get paths from\n let collectionData: MetadataViews.NFTCollectionData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{NonFungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n self.collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: self.collectionData.storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(self.collectionData.publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n let receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", + "source": "import NonFungibleToken from 0x631e88ae7f1d7c20\nimport MetadataViews from 0x631e88ae7f1d7c20\n\n/// Can pass in any contract address and name\n/// This lets you choose the token you want to send because\n/// the transaction gets the metadata from the provided contract.\n///\ntransaction(to: Address, id: UInt64, contractAddress: Address, contractName: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n // NFTCollectionData struct to get paths from\n let collectionData: MetadataViews.NFTCollectionData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{NonFungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n self.collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: self.collectionData.storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(self.collectionData.publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n let receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", "arguments": [ { "type": "Address", @@ -399,7 +399,7 @@ } ], "network": "testnet", - "hash": "b7892b30d7a68531db8af3aa73eec7bf899bd039bc9883c4d0270e44c78cec30" + "hash": "318487e2471852d2cde2c4170a4b67f04cc0e00cc93ab08c9ae9cbf36be9a28b" }, { "id": "TH.01", From 7abc82a426e653baa3a64dddee39adf2ee5e9855 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Fri, 12 Apr 2024 12:07:38 -0400 Subject: [PATCH 099/160] update FlowEpoch contract - add epoch recover event and struct - store recovery epoch metadata in storage, emit event in heartbeat - add ClusterQCVoteData struct to FlowClusterQC contract - add recover epoch transaction --- contracts/epochs/FlowClusterQC.cdc | 15 ++ contracts/epochs/FlowEpoch.cdc | 244 ++++++++++++++++++++- transactions/epoch/admin/recover_epoch.cdc | 32 +++ 3 files changed, 288 insertions(+), 3 deletions(-) create mode 100644 transactions/epoch/admin/recover_epoch.cdc diff --git a/contracts/epochs/FlowClusterQC.cdc b/contracts/epochs/FlowClusterQC.cdc index b4d85d4ac..340e621f4 100644 --- a/contracts/epochs/FlowClusterQC.cdc +++ b/contracts/epochs/FlowClusterQC.cdc @@ -258,6 +258,21 @@ access(all) contract FlowClusterQC { } } + /// Represents the quorum certificate vote data for a signer + /// of the certificate. + pub struct ClusterQCVoteData { + /// The vote signatures from all the nodes in the cluster + pub var voteSignatures: [String] + + /// The node IDs that correspond to each vote + pub var voterIDs: [String] + + init(signatures: [String], message: String, voterIDs: [String]) { + self.voteSignatures = signatures + self.voterIDs = voterIDs + } + } + /// The Voter resource is generated for each collection node after they register. /// Each resource instance is good for all future potential epochs, but will /// only be valid if the node operator has been confirmed as a collector node for the next epoch. diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 716ec2a29..d0d29d4db 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -147,6 +147,141 @@ access(all) contract FlowEpoch { dkgPubKeys: [String] ) + /// The Epoch Recover service event is emitted when a recoverEpoch transaction is submitted to the network. When the network + /// gets into an EFM state the recoverEpoch transaction is used to override the current epoch and recover the network without + /// sporking. This service event is processed by protocol participants to update their local protocol state with the new recover + /// epoch data. + pub event EpochRecover ( + /// The counter for the RecoveryEpoch. + counter: UInt64, + + /// Identity table for the upcoming epoch with all node information. + /// including nodeID, staking key, networking key, networking address, role, + /// staking information, weight, and more. + nodeInfo: [FlowIDTableStaking.NodeInfo], + + /// The first view (inclusive) of the RecoveryEpoch. + firstView: UInt64, + + /// The last view (inclusive) of the RecoveryEpoch. + finalView: UInt64, + + /// The cluster assignment for the RecoveryEpoch. Each element in the list + /// represents one cluster and contains all the node IDs assigned to that + /// cluster, with their weights and votes + collectorClusters: [[String]], + + /// The source of randomness to seed the leader selection algorithm with + /// for the upcoming epoch. + randomSource: String, + + /// The deadlines of each phase in the DKG protocol to be completed in the upcoming + /// EpochSetup phase. Deadlines are specified in terms of a consensus view number. + /// When a DKG participant observes a finalized and sealed block with view greater + /// than the given deadline, it can safely transition to the next phase. + DKGPhase1FinalView: UInt64, + DKGPhase2FinalView: UInt64, + DKGPhase3FinalView: UInt64, + + /// The target duration for the upcoming epoch, in seconds + targetDuration: UInt64, + /// The target end time for the upcoming epoch, specified in second-precision Unix time + targetEndTime: UInt64, + + /// The cluster QCs passed in the recoverEpoch transaction. These are generated out-of-band + /// using the same procedure as during a spork. + clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData], + + /// The DKG public keys passed in the recoverEpoch transaction. These are re-used from the + /// last successful DKG. + dkgPubKeys: [String], + ) + + /// Contains metadata about the recovery epoch, this data + /// is stored at the storage path /storage/recoverEpochMetadata. + /// This struct is a 1:1 copy of the event EpochRecover event and is + /// is used to populate all the fields of the event when the heartbeat + /// detects a new RecoverEpochMetadata stored. + pub struct RecoverEpochMetadata { + /// The counter for the RecoveryEpoch. + pub let counter: UInt64 + + /// Identity table for the upcoming epoch with all node information. + /// including nodeID, staking key, networking key, networking address, role, + /// staking information, weight, and more. + pub let nodeInfo: [FlowIDTableStaking.NodeInfo] + + /// The first view (inclusive) of the RecoveryEpoch. + pub let firstView: UInt64 + + /// The last view (inclusive) of the RecoveryEpoch. + pub let finalView: UInt64 + + /// The last view (inclusive) of the staking phase. + pub let stakingEndView: UInt64 + + /// The cluster assignment for the RecoveryEpoch. Each element in the list + /// represents one cluster and contains all the node IDs assigned to that + /// cluster, with their weights and votes + pub let collectorClusters: [[String]] + + /// The source of randomness to seed the leader selection algorithm with + /// for the upcoming epoch. + pub let randomSource: String + + /// The deadlines of each phase in the DKG protocol to be completed in the upcoming + /// EpochSetup phase. Deadlines are specified in terms of a consensus view number. + /// When a DKG participant observes a finalized and sealed block with view greater + /// than the given deadline, it can safely transition to the next phase. + pub let DKGPhase1FinalView: UInt64 + pub let DKGPhase2FinalView: UInt64 + pub let DKGPhase3FinalView: UInt64 + + /// The target duration for the upcoming epoch, in seconds + pub let targetDuration: UInt64 + /// The target end time for the upcoming epoch, specified in second-precision Unix time + pub let targetEndTime: UInt64 + + /// The cluster QCs passed in the recoverEpoch transaction. These are generated out-of-band + /// using the same procedure as during a spork. + pub let clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData] + + /// The DKG public keys passed in the recoverEpoch transaction. These are re-used from the + /// last successful DKG. + pub let dkgPubKeys: [String] + + init(counter: UInt64, + nodeInfo: [FlowIDTableStaking.NodeInfo], + firstView: UInt64, + finalView: UInt64, + stakingEndView: UInt64, + collectorClusters: [[String]], + randomSource: String, + dkgPhase1FinalView: UInt64, + dkgPhase2FinalView: UInt64, + dkgPhase3FinalView: UInt64, + targetDuration: UInt64, + targetEndTime: UInt64, + clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData], + dkgPubKeys: [String]) { + + self.counter = counter + self.nodeInfo = nodeInfo + self.firstView = firstView + self.finalView = finalView + self.stakingEndView = stakingEndView + self.collectorClusters = collectorClusters + self.randomSource = randomSource + self.DKGPhase1FinalView = dkgPhase1FinalView + self.DKGPhase2FinalView = dkgPhase2FinalView + self.DKGPhase3FinalView = dkgPhase3FinalView + self.targetDuration = targetDuration + self.targetEndTime = targetEndTime + self.clusterQCVoteData = clusterQCVoteData + self.dkgPubKeys = dkgPubKeys + } + } + /// Contains specific metadata about a particular epoch /// All historical epoch metadata is stored permanently access(all) struct EpochMetadata { @@ -432,6 +567,92 @@ access(all) contract FlowEpoch { FlowEpoch.account.storage.load(from: /storage/flowAutomaticRewardsEnabled) FlowEpoch.account.storage.save(enabled, to: /storage/flowAutomaticRewardsEnabled) } + + /// Ends the currently active epoch and starts a new one with the provided configuration. + /// This function saves the recovery epoch metadata in storage containing the full specification for the new epoch. + /// This meta data will be emitted in the EpochRecover service event in the next heart beat interval. + /// This function is used within sporks to recover the network from Epoch Fallback Mode (EFM). + pub fun recoverEpoch( + randomSource: String, + startView: UInt64, + stakingEndView: UInt64, + endView: UInt64, + collectorClusters: [[String]], + clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData], + dkgPubKeys: [String], + nodeIDs: [String]) + { + pre { + FlowEpoch.isValidPhaseConfiguration(stakingEndView-startView+1, FlowEpoch.configurableMetadata.numViewsInDKGPhase, endView-startView+1): + "Invalid startView, stakingEndView, and endView configuration" + } + + if FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION { + // Since we are resetting the epoch, we do not need to + // start epoch setup also. We only need to end the staking auction + FlowEpoch.borrowStakingAdmin().endStakingAuction() + } else { + // force reset the QC and DKG + FlowEpoch.borrowClusterQCAdmin().forceStopVoting() + FlowEpoch.borrowDKGAdmin().forceEndDKG() + } + + // Construct the identity table for the recovery epoch + let nodes: [FlowIDTableStaking.NodeInfo] = [] + + for nodeID in nodeIDs { + /// @TODO: if node is SN ensure weight > 0 + /// throw exception, or add with 0 weight + nodes.append(FlowIDTableStaking.NodeInfo(nodeID)) + } + + // Compute the target end time for the next epoch + let timingConfig = FlowEpoch.getEpochTimingConfig() + let proposedTargetDuration = timingConfig.duration + let proposedTargetEndTime = timingConfig.getTargetEndTimeForEpoch(FlowEpoch.proposedEpochCounter()) + + // Create new Epoch metadata for the next epoch + // with the new values + let newEpochMetadata = EpochMetadata( + counter: FlowEpoch.currentEpochCounter + 1, + seed: randomSource, + startView: startView, + endView: endView, + stakingEndView: stakingEndView, + // This will be overwritten in `calculateAndSetRewards` below + totalRewards: UFix64(0.0), + collectorClusters: [], + clusterQCs: [], + dkgKeys: dkgPubKeys) + + FlowEpoch.saveEpochMetadata(newEpochMetadata) + // Calculate rewards for the current epoch + // and set the payout for the next epoch + FlowEpoch.calculateAndSetRewards() + // Start a new Epoch, which increments the current epoch counter + FlowEpoch.startNewEpoch() + // Emit the service event, which notifies the protocol state about the RecoveryEpoch + let recoverEpochMetadata = FlowEpoch.RecoverEpochMetadata( + counter: FlowEpoch.currentEpochCounter, + nodeInfo: nodes, + firstView: startView, + finalView: endView, + stakingEndView: stakingEndView, + collectorClusters: collectorClusters, + randomSource: randomSource, + DKGPhase1FinalView: startView + FlowEpoch.configurableMetadata.numViewsInStakingAuction + FlowEpoch.configurableMetadata.numViewsInDKGPhase - 1 as UInt64, + DKGPhase2FinalView: startView + FlowEpoch.configurableMetadata.numViewsInStakingAuction + (2 as UInt64 * FlowEpoch.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, + DKGPhase3FinalView: startView + FlowEpoch.configurableMetadata.numViewsInStakingAuction + (3 as UInt64 * FlowEpoch.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, + targetDuration: proposedTargetDuration, + targetEndTime: proposedTargetEndTime, + clusterQCVoteData: clusterQCVoteData, + dkgPubKeys: dkgPubKeys, + ) + + /// save the recovery epoch metadata this will be emitted in the EpochRecover service event + /// during the next heart beat interval. + FlowEpoch.account.save(recoverEpochMetadata, to: /storage/recoverEpochMetadataStoragePath) + } /// Ends the currently active epoch and starts a new one with the provided configuration. /// The new epoch, after resetEpoch completes, has `counter = currentEpochCounter + 1`. @@ -492,13 +713,30 @@ access(all) contract FlowEpoch { /// Resource that is controlled by the protocol and is used /// to change the current phase of the epoch or reset the epoch if needed - /// access(all) resource Heartbeat { - /// Function that is called every block to advance the epoch /// and change phase if the required conditions have been met access(all) fun advanceBlock() { - + /// check if we have recover epoch metadata stored, this indicates the network is in EFM and the heartbeat + /// will emit the EpochRecover event containing information for the recovery epoch. + let recoverEpochMetadata = FlowEpoch.account.load(from: /storage/recoverEpochMetadataStoragePath) + if recoverEpochMetadata != nil { + emit EpochRecover( + counter: recoverEpochMetadata!.counter, + nodeInfo: recoverEpochMetadata!.nodeInfo, + firstView: recoverEpochMetadata!.firstView, + finalView: recoverEpochMetadata!.finalView, + collectorClusters: recoverEpochMetadata!.collectorClusters, + randomSource: recoverEpochMetadata!.randomSource, + DKGPhase1FinalView: recoverEpochMetadata!.DKGPhase1FinalView, + DKGPhase2FinalView: recoverEpochMetadata!.DKGPhase2FinalView, + DKGPhase3FinalView: recoverEpochMetadata!.DKGPhase3FinalView, + targetDuration: recoverEpochMetadata!.targetDuration, + targetEndTime: recoverEpochMetadata!.targetEndTime, + clusterQCVoteData: recoverEpochMetadata!.clusterQCVoteData, + dkgPubKeys: recoverEpochMetadata!.dkgPubKeys, + ) + } switch FlowEpoch.currentEpochPhase { case EpochPhase.STAKINGAUCTION: let currentBlock = getCurrentBlock() diff --git a/transactions/epoch/admin/recover_epoch.cdc b/transactions/epoch/admin/recover_epoch.cdc new file mode 100644 index 000000000..ec9e18278 --- /dev/null +++ b/transactions/epoch/admin/recover_epoch.cdc @@ -0,0 +1,32 @@ +import FlowEpoch from 0xEPOCHADDRESS +import FlowIDTableStaking from 0xIDENTITYTABLEADDRESS +import FlowClusterQC from 0xQCADDRESS +// The recoverEpoch transaction creates and starts a new epoch in the FlowEpoch smart contract +// to which will force the network exit EFM. The recoverEpoch service event will be emitted +// and processed by all protocol participants and each participant will update their protocol +// state with the new Epoch data. +// This transaction should only be used with the output of the bootstrap utility: +// util epoch efm-recover-tx-args +transaction(randomSource: String, + startView: UInt64, + stakingEndView: UInt64, + endView: UInt64, + collectorClusters: [[String]], + clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData], + dkgPubKeys: [String], + nodeIDs: [String]) { + + prepare(signer: AuthAccount) { + let epochAdmin = signer.borrow<&FlowEpoch.Admin>(from: FlowEpoch.adminStoragePath) + ?? panic("Could not borrow epoch admin from storage path") + + epochAdmin.recoverEpoch(randomSource: randomSource, + startView: startView, + stakingEndView: stakingEndView, + endView: endView, + collectorClusters: collectorClusters, + clusterQCVoteData: clusterQCVoteData, + dkgPubKeys: dkgPubKeys, + nodeIDs: nodeIDs) + } +} From 7fe14e1bc649a0a6e51dc74e8d37848471adb0ad Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Fri, 12 Apr 2024 12:07:51 -0400 Subject: [PATCH 100/160] generate assets --- lib/go/templates/epoch_templates.go | 7 + lib/go/templates/internal/assets/assets.go | 1887 ++++++++++---------- 2 files changed, 949 insertions(+), 945 deletions(-) diff --git a/lib/go/templates/epoch_templates.go b/lib/go/templates/epoch_templates.go index 0ac963f32..404b1cc20 100644 --- a/lib/go/templates/epoch_templates.go +++ b/lib/go/templates/epoch_templates.go @@ -17,6 +17,7 @@ const ( updateRewardPercentageFilename = "epoch/admin/update_reward.cdc" advanceViewFilename = "epoch/admin/advance_view.cdc" resetEpochFilename = "epoch/admin/reset_epoch.cdc" + recoverEpochFilename = "epoch/admin/recover_epoch.cdc" epochCalculateSetRewardsFilename = "epoch/admin/calculate_rewards.cdc" epochPayRewardsFilename = "epoch/admin/pay_rewards.cdc" epochSetAutoRewardsFilename = "epoch/admin/set_automatic_rewards.cdc" @@ -114,6 +115,12 @@ func GenerateResetEpochScript(env Environment) []byte { return []byte(ReplaceAddresses(code, env)) } +func GenerateRecoverEpochScript(env Environment) []byte { + code := assets.MustAssetString(recoverEpochFilename) + + return []byte(ReplaceAddresses(code, env)) +} + func GenerateEpochCalculateSetRewardsScript(env Environment) []byte { code := assets.MustAssetString(epochCalculateSetRewardsFilename) diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 4dc532118..f08a39508 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -1,300 +1,300 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: -// FlowServiceAccount/add_account_creator.cdc (588B) -// FlowServiceAccount/deposit_fees.cdc (871B) -// FlowServiceAccount/remove_account_creator.cdc (590B) -// FlowServiceAccount/scripts/get_account_creators.cdc (141B) -// FlowServiceAccount/scripts/get_account_fee.cdc (136B) -// FlowServiceAccount/scripts/get_execution_effort_weights.cdc (155B) -// FlowServiceAccount/scripts/get_execution_memory_limit.cdc (143B) -// FlowServiceAccount/scripts/get_execution_memory_weights.cdc (155B) -// FlowServiceAccount/scripts/get_fees_balance.cdc (103B) -// FlowServiceAccount/scripts/get_is_account_creation_restricted.cdc (145B) -// FlowServiceAccount/scripts/get_is_account_creator.cdc (157B) -// FlowServiceAccount/scripts/get_tx_fee_parameters.cdc (122B) -// FlowServiceAccount/set_execution_effort_weights.cdc (1.663kB) -// FlowServiceAccount/set_execution_memory_limit.cdc (287B) -// FlowServiceAccount/set_execution_memory_weights.cdc (315B) -// FlowServiceAccount/set_is_account_creation_restricted.cdc (609B) -// FlowServiceAccount/set_tx_fee_parameters.cdc (622B) -// FlowServiceAccount/set_tx_fee_surge_factor.cdc (481B) -// accounts/add_key.cdc (713B) -// accounts/create_new_account.cdc (768B) -// accounts/revoke_key.cdc (263B) -// dkg/admin/force_stop_dkg.cdc (350B) -// dkg/admin/publish_participant.cdc (314B) -// dkg/admin/set_safe_threshold.cdc (441B) -// dkg/admin/start_dkg.cdc (382B) -// dkg/admin/stop_dkg.cdc (345B) -// dkg/create_participant.cdc (442B) -// dkg/scripts/get_consensus_nodes.cdc (108B) -// dkg/scripts/get_dkg_canonical_final_submission.cdc (103B) -// dkg/scripts/get_dkg_completed.cdc (104B) -// dkg/scripts/get_dkg_enabled.cdc (93B) -// dkg/scripts/get_final_submissions.cdc (111B) -// dkg/scripts/get_latest_whiteboard_messages.cdc (335B) -// dkg/scripts/get_node_final_submission.cdc (133B) -// dkg/scripts/get_node_has_submitted.cdc (121B) -// dkg/scripts/get_node_is_claimed.cdc (223B) -// dkg/scripts/get_node_is_registered.cdc (128B) -// dkg/scripts/get_submissions_count.cdc (111B) -// dkg/scripts/get_thresholds.cdc (445B) -// dkg/scripts/get_whiteboard_messages.cdc (120B) -// dkg/send_final_submission.cdc (429B) -// dkg/send_whiteboard_message.cdc (412B) -// epoch/admin/advance_view.cdc (667B) -// epoch/admin/calculate_rewards.cdc (379B) -// epoch/admin/deploy_epoch.cdc (1.192kB) -// epoch/admin/deploy_qc_dkg.cdc (310B) -// epoch/admin/pay_rewards.cdc (497B) -// epoch/admin/reset_epoch.cdc (1.666kB) -// epoch/admin/set_automatic_rewards.cdc (376B) -// epoch/admin/set_bonus_tokens.cdc (624B) -// epoch/admin/update_clusters.cdc (358B) -// epoch/admin/update_dkg_phase_views.cdc (348B) -// epoch/admin/update_epoch_config.cdc (1.775kB) -// epoch/admin/update_epoch_timing_config.cdc (503B) -// epoch/admin/update_epoch_views.cdc (349B) -// epoch/admin/update_reward.cdc (361B) -// epoch/admin/update_staking_views.cdc (351B) -// epoch/node/register_dkg_participant.cdc (550B) -// epoch/node/register_node.cdc (3.104kB) -// epoch/node/register_qc_voter.cdc (548B) -// epoch/scripts/get_bonus_tokens.cdc (108B) -// epoch/scripts/get_config_metadata.cdc (121B) -// epoch/scripts/get_create_clusters.cdc (205B) -// epoch/scripts/get_current_view.cdc (147B) -// epoch/scripts/get_epoch_counter.cdc (110B) -// epoch/scripts/get_epoch_metadata.cdc (159B) -// epoch/scripts/get_epoch_phase.cdc (116B) -// epoch/scripts/get_epoch_timing_config.cdc (134B) -// epoch/scripts/get_proposed_counter.cdc (113B) -// epoch/scripts/get_randomize.cdc (125B) -// epoch/scripts/get_target_end_time_for_epoch.cdc (263B) -// flowToken/burn_tokens.cdc (1.131kB) -// flowToken/create_forwarder.cdc (2.025kB) -// flowToken/mint_tokens.cdc (1.019kB) -// flowToken/scripts/get_balance.cdc (420B) -// flowToken/scripts/get_supply.cdc (208B) -// flowToken/setup_account.cdc (1.349kB) -// flowToken/transfer_tokens.cdc (1.327kB) -// idTableStaking/admin/add_approved_and_limits.cdc (1.635kB) -// idTableStaking/admin/add_approved_nodes.cdc (1.055kB) -// idTableStaking/admin/capability_end_epoch.cdc (1.374kB) -// idTableStaking/admin/change_candidate_limits.cdc (727B) -// idTableStaking/admin/change_cut.cdc (665B) -// idTableStaking/admin/change_del_minimums.cdc (690B) -// idTableStaking/admin/change_minimums.cdc (818B) -// idTableStaking/admin/change_payout.cdc (625B) -// idTableStaking/admin/end_epoch.cdc (913B) -// idTableStaking/admin/end_epoch_change_payout.cdc (979B) -// idTableStaking/admin/end_staking.cdc (698B) -// idTableStaking/admin/move_tokens.cdc (598B) -// idTableStaking/admin/pay_rewards.cdc (686B) -// idTableStaking/admin/remove_approved_nodes.cdc (1.011kB) -// idTableStaking/admin/remove_invalid_nodes.cdc (697B) -// idTableStaking/admin/remove_node.cdc (629B) -// idTableStaking/admin/scale_rewards_test.cdc (713B) -// idTableStaking/admin/set_approved_nodes.cdc (628B) -// idTableStaking/admin/set_claimed.cdc (633B) -// idTableStaking/admin/set_node_weight.cdc (650B) -// idTableStaking/admin/set_non_operational.cdc (785B) -// idTableStaking/admin/set_open_access_node_slots.cdc (936B) -// idTableStaking/admin/set_slot_limits.cdc (1.572kB) -// idTableStaking/admin/start_staking.cdc (597B) -// idTableStaking/admin/transfer_admin.cdc (658B) -// idTableStaking/admin/transfer_fees_admin.cdc (444B) -// idTableStaking/admin/transfer_minter_deploy.cdc (1.344kB) -// idTableStaking/admin/upgrade_set_claimed.cdc (691B) -// idTableStaking/admin/upgrade_staking.cdc (159B) -// idTableStaking/delegation/del_request_unstaking.cdc (670B) -// idTableStaking/delegation/del_stake_new_tokens.cdc (1.044kB) -// idTableStaking/delegation/del_stake_rewarded.cdc (676B) -// idTableStaking/delegation/del_stake_unstaked.cdc (676B) -// idTableStaking/delegation/del_withdraw_reward_tokens.cdc (952B) -// idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc (952B) -// idTableStaking/delegation/delegator_add_capability.cdc (892B) -// idTableStaking/delegation/get_delegator_committed.cdc (321B) -// idTableStaking/delegation/get_delegator_info.cdc (299B) -// idTableStaking/delegation/get_delegator_info_from_address.cdc (505B) -// idTableStaking/delegation/get_delegator_request.cdc (330B) -// idTableStaking/delegation/get_delegator_rewarded.cdc (319B) -// idTableStaking/delegation/get_delegator_staked.cdc (315B) -// idTableStaking/delegation/get_delegator_unstaked.cdc (319B) -// idTableStaking/delegation/get_delegator_unstaking.cdc (321B) -// idTableStaking/delegation/get_delegator_unstaking_request.cdc (330B) -// idTableStaking/delegation/register_delegator.cdc (981B) -// idTableStaking/delegation/register_many_delegators.cdc (684B) -// idTableStaking/node/node_add_capability.cdc (900B) -// idTableStaking/node/register_many_nodes.cdc (1.171kB) -// idTableStaking/node/register_node.cdc (1.651kB) -// idTableStaking/node/request_unstake.cdc (644B) -// idTableStaking/node/stake_new_tokens.cdc (1.008kB) -// idTableStaking/node/stake_rewarded_tokens.cdc (647B) -// idTableStaking/node/stake_unstaked_tokens.cdc (626B) -// idTableStaking/node/unstake_all.cdc (608B) -// idTableStaking/node/update_networking_address.cdc (650B) -// idTableStaking/node/withdraw_reward_tokens.cdc (922B) -// idTableStaking/node/withdraw_unstaked_tokens.cdc (922B) -// idTableStaking/scripts/get_approved_but_not_staked_nodes.cdc (670B) -// idTableStaking/scripts/get_approved_nodes.cdc (289B) -// idTableStaking/scripts/get_candidate_limits.cdc (271B) -// idTableStaking/scripts/get_candidate_nodes.cdc (234B) -// idTableStaking/scripts/get_current_table.cdc (196B) -// idTableStaking/scripts/get_cut_percentage.cdc (205B) -// idTableStaking/scripts/get_del_stake_requirements.cdc (224B) -// idTableStaking/scripts/get_delegators_below_min.cdc (1.966kB) -// idTableStaking/scripts/get_node_committed_tokens.cdc (263B) -// idTableStaking/scripts/get_node_info.cdc (240B) -// idTableStaking/scripts/get_node_info_from_address.cdc (471B) -// idTableStaking/scripts/get_node_initial_weight.cdc (251B) -// idTableStaking/scripts/get_node_networking_addr.cdc (259B) -// idTableStaking/scripts/get_node_networking_key.cdc (251B) -// idTableStaking/scripts/get_node_rewarded_tokens.cdc (264B) -// idTableStaking/scripts/get_node_role.cdc (231B) -// idTableStaking/scripts/get_node_staked_tokens.cdc (260B) -// idTableStaking/scripts/get_node_staking_key.cdc (245B) -// idTableStaking/scripts/get_node_total_commitment.cdc (279B) -// idTableStaking/scripts/get_node_total_commitment_without_delegators.cdc (282B) -// idTableStaking/scripts/get_node_type_ratio.cdc (241B) -// idTableStaking/scripts/get_node_unstaked_tokens.cdc (264B) -// idTableStaking/scripts/get_node_unstaking_request.cdc (275B) -// idTableStaking/scripts/get_node_unstaking_tokens.cdc (266B) -// idTableStaking/scripts/get_non_operational.cdc (211B) -// idTableStaking/scripts/get_proposed_table.cdc (198B) -// idTableStaking/scripts/get_role_counts.cdc (208B) -// idTableStaking/scripts/get_slot_limits.cdc (309B) -// idTableStaking/scripts/get_stake_requirements.cdc (247B) -// idTableStaking/scripts/get_table.cdc (190B) -// idTableStaking/scripts/get_total_staked.cdc (463B) -// idTableStaking/scripts/get_total_staked_by_type.cdc (256B) -// idTableStaking/scripts/get_weekly_payout.cdc (202B) -// lockedTokens/admin/admin_create_shared_accounts.cdc (3.671kB) -// lockedTokens/admin/admin_deploy_contract.cdc (463B) -// lockedTokens/admin/admin_deposit_account_creator.cdc (846B) -// lockedTokens/admin/admin_remove_delegator.cdc (463B) -// lockedTokens/admin/check_main_registration.cdc (949B) -// lockedTokens/admin/check_shared_registration.cdc (633B) -// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.435kB) -// lockedTokens/admin/custody_create_only_lease_account.cdc (3.335kB) -// lockedTokens/admin/custody_create_only_shared_account.cdc (3.57kB) -// lockedTokens/admin/custody_create_shared_accounts.cdc (3.706kB) -// lockedTokens/admin/custody_setup_account_creator.cdc (758B) -// lockedTokens/admin/deposit_locked_tokens.cdc (1.678kB) -// lockedTokens/admin/unlock_tokens.cdc (593B) -// lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc (2.878kB) -// lockedTokens/delegator/delegate_new_tokens.cdc (1.369kB) -// lockedTokens/delegator/delegate_rewarded_tokens.cdc (645B) -// lockedTokens/delegator/delegate_unstaked_tokens.cdc (637B) -// lockedTokens/delegator/get_delegator_id.cdc (392B) -// lockedTokens/delegator/get_delegator_info.cdc (1.458kB) -// lockedTokens/delegator/get_delegator_node_id.cdc (396B) -// lockedTokens/delegator/register_delegator.cdc (1.741kB) -// lockedTokens/delegator/request_unstaking.cdc (639B) -// lockedTokens/delegator/withdraw_rewarded_tokens.cdc (982B) -// lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc (645B) -// lockedTokens/delegator/withdraw_unstaked_tokens.cdc (645B) -// lockedTokens/staker/get_node_id.cdc (387B) -// lockedTokens/staker/get_staker_info.cdc (1.165kB) -// lockedTokens/staker/register_node.cdc (1.714kB) -// lockedTokens/staker/request_unstaking.cdc (692B) -// lockedTokens/staker/stake_new_tokens.cdc (1.413kB) -// lockedTokens/staker/stake_rewarded_tokens.cdc (695B) -// lockedTokens/staker/stake_unstaked_tokens.cdc (695B) -// lockedTokens/staker/unstake_all.cdc (618B) -// lockedTokens/staker/update_networking_address.cdc (659B) -// lockedTokens/staker/withdraw_rewarded_tokens.cdc (973B) -// lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc (658B) -// lockedTokens/staker/withdraw_unstaked_tokens.cdc (658B) -// lockedTokens/user/deposit_tokens.cdc (806B) -// lockedTokens/user/get_locked_account_address.cdc (401B) -// lockedTokens/user/get_locked_account_balance.cdc (400B) -// lockedTokens/user/get_multiple_unlock_limits.cdc (514B) -// lockedTokens/user/get_total_balance.cdc (2.811kB) -// lockedTokens/user/get_unlock_limit.cdc (391B) -// lockedTokens/user/withdraw_tokens.cdc (924B) -// nodeVersionBeacon/admin/change_version_freeze_period.cdc (803B) -// nodeVersionBeacon/admin/delete_version_boundary.cdc (828B) -// nodeVersionBeacon/admin/heartbeat.cdc (628B) -// nodeVersionBeacon/admin/set_version_boundary.cdc (1.421kB) -// nodeVersionBeacon/scripts/get_current_node_version.cdc (237B) -// nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc (264B) -// nodeVersionBeacon/scripts/get_next_version_boundary.cdc (268B) -// nodeVersionBeacon/scripts/get_next_version_update_sequence.cdc (207B) -// nodeVersionBeacon/scripts/get_version_boundaries.cdc (294B) -// nodeVersionBeacon/scripts/get_version_boundary_freeze_period.cdc (322B) -// quorumCertificate/admin/publish_voter.cdc (411B) -// quorumCertificate/admin/start_voting.cdc (1.522kB) -// quorumCertificate/admin/stop_voting.cdc (381B) -// quorumCertificate/create_voter.cdc (1.127kB) -// quorumCertificate/scripts/generate_quorum_certificate.cdc (333B) -// quorumCertificate/scripts/get_cluster.cdc (196B) -// quorumCertificate/scripts/get_cluster_complete.cdc (248B) -// quorumCertificate/scripts/get_cluster_node_weights.cdc (203B) -// quorumCertificate/scripts/get_cluster_vote_threshold.cdc (197B) -// quorumCertificate/scripts/get_cluster_votes.cdc (257B) -// quorumCertificate/scripts/get_cluster_weight.cdc (193B) -// quorumCertificate/scripts/get_clusters.cdc (277B) -// quorumCertificate/scripts/get_node_has_voted.cdc (492B) -// quorumCertificate/scripts/get_node_weight.cdc (327B) -// quorumCertificate/scripts/get_qc_enabled.cdc (113B) -// quorumCertificate/scripts/get_voter_is_registered.cdc (210B) -// quorumCertificate/scripts/get_voting_completed.cdc (199B) -// quorumCertificate/submit_vote.cdc (611B) +// FlowServiceAccount/add_account_creator.cdc (565B) +// FlowServiceAccount/deposit_fees.cdc (838B) +// FlowServiceAccount/remove_account_creator.cdc (567B) +// FlowServiceAccount/scripts/get_account_creators.cdc (133B) +// FlowServiceAccount/scripts/get_account_fee.cdc (128B) +// FlowServiceAccount/scripts/get_execution_effort_weights.cdc (147B) +// FlowServiceAccount/scripts/get_execution_memory_limit.cdc (135B) +// FlowServiceAccount/scripts/get_execution_memory_weights.cdc (147B) +// FlowServiceAccount/scripts/get_fees_balance.cdc (102B) +// FlowServiceAccount/scripts/get_is_account_creation_restricted.cdc (137B) +// FlowServiceAccount/scripts/get_is_account_creator.cdc (149B) +// FlowServiceAccount/scripts/get_tx_fee_parameters.cdc (121B) +// FlowServiceAccount/set_execution_effort_weights.cdc (1.636kB) +// FlowServiceAccount/set_execution_memory_limit.cdc (260B) +// FlowServiceAccount/set_execution_memory_weights.cdc (288B) +// FlowServiceAccount/set_is_account_creation_restricted.cdc (586B) +// FlowServiceAccount/set_tx_fee_parameters.cdc (606B) +// FlowServiceAccount/set_tx_fee_surge_factor.cdc (465B) +// dkg/admin/force_stop_dkg.cdc (334B) +// dkg/admin/publish_participant.cdc (224B) +// dkg/admin/set_safe_threshold.cdc (425B) +// dkg/admin/start_dkg.cdc (366B) +// dkg/admin/stop_dkg.cdc (329B) +// dkg/create_participant.cdc (427B) +// dkg/scripts/get_consensus_nodes.cdc (103B) +// dkg/scripts/get_dkg_canonical_final_submission.cdc (98B) +// dkg/scripts/get_dkg_completed.cdc (99B) +// dkg/scripts/get_dkg_enabled.cdc (88B) +// dkg/scripts/get_final_submissions.cdc (106B) +// dkg/scripts/get_latest_whiteboard_messages.cdc (330B) +// dkg/scripts/get_node_final_submission.cdc (128B) +// dkg/scripts/get_node_has_submitted.cdc (116B) +// dkg/scripts/get_node_is_claimed.cdc (218B) +// dkg/scripts/get_node_is_registered.cdc (123B) +// dkg/scripts/get_submissions_count.cdc (114B) +// dkg/scripts/get_thresholds.cdc (408B) +// dkg/scripts/get_whiteboard_messages.cdc (115B) +// dkg/send_final_submission.cdc (412B) +// dkg/send_whiteboard_message.cdc (395B) +// epoch/admin/advance_view.cdc (649B) +// epoch/admin/calculate_rewards.cdc (361B) +// epoch/admin/deploy_epoch.cdc (1.173kB) +// epoch/admin/deploy_qc_dkg.cdc (295B) +// epoch/admin/pay_rewards.cdc (479B) +// epoch/admin/recover_epoch.cdc (1.53kB) +// epoch/admin/reset_epoch.cdc (1.648kB) +// epoch/admin/set_automatic_rewards.cdc (356B) +// epoch/admin/set_bonus_tokens.cdc (597B) +// epoch/admin/update_clusters.cdc (338B) +// epoch/admin/update_dkg_phase_views.cdc (328B) +// epoch/admin/update_epoch_config.cdc (1.755kB) +// epoch/admin/update_epoch_timing_config.cdc (483B) +// epoch/admin/update_epoch_views.cdc (329B) +// epoch/admin/update_reward.cdc (342B) +// epoch/admin/update_staking_views.cdc (331B) +// epoch/node/register_dkg_participant.cdc (531B) +// epoch/node/register_node.cdc (2.901kB) +// epoch/node/register_qc_voter.cdc (522B) +// epoch/scripts/get_bonus_tokens.cdc (102B) +// epoch/scripts/get_config_metadata.cdc (115B) +// epoch/scripts/get_create_clusters.cdc (197B) +// epoch/scripts/get_current_view.cdc (138B) +// epoch/scripts/get_epoch_counter.cdc (105B) +// epoch/scripts/get_epoch_metadata.cdc (154B) +// epoch/scripts/get_epoch_phase.cdc (111B) +// epoch/scripts/get_epoch_timing_config.cdc (129B) +// epoch/scripts/get_proposed_counter.cdc (108B) +// epoch/scripts/get_randomize.cdc (121B) +// epoch/scripts/get_target_end_time_for_epoch.cdc (258B) +// flowToken/burn_tokens.cdc (1.085kB) +// flowToken/create_forwarder.cdc (1.815kB) +// flowToken/mint_tokens.cdc (1.026kB) +// flowToken/scripts/get_balance.cdc (453B) +// flowToken/scripts/get_supply.cdc (207B) +// flowToken/setup_account.cdc (1.147kB) +// flowToken/transfer_tokens.cdc (1.301kB) +// idTableStaking/admin/add_approved_and_limits.cdc (1.606kB) +// idTableStaking/admin/add_approved_nodes.cdc (1.034kB) +// idTableStaking/admin/capability_end_epoch.cdc (1.355kB) +// idTableStaking/admin/change_candidate_limits.cdc (706B) +// idTableStaking/admin/change_cut.cdc (644B) +// idTableStaking/admin/change_del_minimums.cdc (669B) +// idTableStaking/admin/change_minimums.cdc (797B) +// idTableStaking/admin/change_payout.cdc (604B) +// idTableStaking/admin/end_epoch.cdc (892B) +// idTableStaking/admin/end_epoch_change_payout.cdc (958B) +// idTableStaking/admin/end_staking.cdc (677B) +// idTableStaking/admin/move_tokens.cdc (577B) +// idTableStaking/admin/pay_rewards.cdc (665B) +// idTableStaking/admin/remove_approved_nodes.cdc (990B) +// idTableStaking/admin/remove_invalid_nodes.cdc (676B) +// idTableStaking/admin/remove_node.cdc (608B) +// idTableStaking/admin/scale_rewards_test.cdc (716B) +// idTableStaking/admin/set_approved_nodes.cdc (607B) +// idTableStaking/admin/set_claimed.cdc (612B) +// idTableStaking/admin/set_node_weight.cdc (629B) +// idTableStaking/admin/set_non_operational.cdc (764B) +// idTableStaking/admin/set_open_access_node_slots.cdc (916B) +// idTableStaking/admin/set_slot_limits.cdc (1.551kB) +// idTableStaking/admin/start_staking.cdc (576B) +// idTableStaking/admin/transfer_admin.cdc (730B) +// idTableStaking/admin/transfer_fees_admin.cdc (409B) +// idTableStaking/admin/transfer_minter_deploy.cdc (1.305kB) +// idTableStaking/admin/upgrade_set_claimed.cdc (668B) +// idTableStaking/admin/upgrade_staking.cdc (156B) +// idTableStaking/delegation/del_request_unstaking.cdc (569B) +// idTableStaking/delegation/del_stake_new_tokens.cdc (842B) +// idTableStaking/delegation/del_stake_rewarded.cdc (575B) +// idTableStaking/delegation/del_stake_unstaked.cdc (575B) +// idTableStaking/delegation/del_withdraw_reward_tokens.cdc (850B) +// idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc (850B) +// idTableStaking/delegation/delegator_add_capability.cdc (704B) +// idTableStaking/delegation/get_delegator_committed.cdc (315B) +// idTableStaking/delegation/get_delegator_info.cdc (293B) +// idTableStaking/delegation/get_delegator_info_from_address.cdc (511B) +// idTableStaking/delegation/get_delegator_request.cdc (324B) +// idTableStaking/delegation/get_delegator_rewarded.cdc (313B) +// idTableStaking/delegation/get_delegator_staked.cdc (309B) +// idTableStaking/delegation/get_delegator_unstaked.cdc (313B) +// idTableStaking/delegation/get_delegator_unstaking.cdc (315B) +// idTableStaking/delegation/get_delegator_unstaking_request.cdc (324B) +// idTableStaking/delegation/register_delegator.cdc (794B) +// idTableStaking/delegation/register_many_delegators.cdc (637B) +// idTableStaking/node/node_add_capability.cdc (711B) +// idTableStaking/node/register_many_nodes.cdc (1.082kB) +// idTableStaking/node/register_node.cdc (1.351kB) +// idTableStaking/node/request_unstake.cdc (551B) +// idTableStaking/node/stake_new_tokens.cdc (815B) +// idTableStaking/node/stake_rewarded_tokens.cdc (554B) +// idTableStaking/node/stake_unstaked_tokens.cdc (533B) +// idTableStaking/node/unstake_all.cdc (515B) +// idTableStaking/node/update_networking_address.cdc (556B) +// idTableStaking/node/withdraw_reward_tokens.cdc (828B) +// idTableStaking/node/withdraw_unstaked_tokens.cdc (828B) +// idTableStaking/scripts/get_approved_but_not_staked_nodes.cdc (664B) +// idTableStaking/scripts/get_approved_nodes.cdc (283B) +// idTableStaking/scripts/get_candidate_limits.cdc (265B) +// idTableStaking/scripts/get_candidate_nodes.cdc (228B) +// idTableStaking/scripts/get_current_table.cdc (190B) +// idTableStaking/scripts/get_cut_percentage.cdc (199B) +// idTableStaking/scripts/get_del_stake_requirements.cdc (218B) +// idTableStaking/scripts/get_delegators_below_min.cdc (1.88kB) +// idTableStaking/scripts/get_node_committed_tokens.cdc (257B) +// idTableStaking/scripts/get_node_info.cdc (234B) +// idTableStaking/scripts/get_node_info_from_address.cdc (477B) +// idTableStaking/scripts/get_node_initial_weight.cdc (245B) +// idTableStaking/scripts/get_node_networking_addr.cdc (253B) +// idTableStaking/scripts/get_node_networking_key.cdc (245B) +// idTableStaking/scripts/get_node_rewarded_tokens.cdc (258B) +// idTableStaking/scripts/get_node_role.cdc (225B) +// idTableStaking/scripts/get_node_staked_tokens.cdc (254B) +// idTableStaking/scripts/get_node_staking_key.cdc (239B) +// idTableStaking/scripts/get_node_total_commitment.cdc (273B) +// idTableStaking/scripts/get_node_total_commitment_without_delegators.cdc (276B) +// idTableStaking/scripts/get_node_type_ratio.cdc (235B) +// idTableStaking/scripts/get_node_unstaked_tokens.cdc (258B) +// idTableStaking/scripts/get_node_unstaking_request.cdc (269B) +// idTableStaking/scripts/get_node_unstaking_tokens.cdc (260B) +// idTableStaking/scripts/get_non_operational.cdc (205B) +// idTableStaking/scripts/get_proposed_table.cdc (192B) +// idTableStaking/scripts/get_role_counts.cdc (202B) +// idTableStaking/scripts/get_slot_limits.cdc (303B) +// idTableStaking/scripts/get_stake_requirements.cdc (241B) +// idTableStaking/scripts/get_table.cdc (184B) +// idTableStaking/scripts/get_total_staked.cdc (457B) +// idTableStaking/scripts/get_total_staked_by_type.cdc (250B) +// idTableStaking/scripts/get_weekly_payout.cdc (196B) +// inspect_field.cdc (122B) +// lockedTokens/admin/admin_create_shared_accounts.cdc (3.883kB) +// lockedTokens/admin/admin_deploy_contract.cdc (443B) +// lockedTokens/admin/admin_deposit_account_creator.cdc (856B) +// lockedTokens/admin/admin_remove_delegator.cdc (448B) +// lockedTokens/admin/check_main_registration.cdc (994B) +// lockedTokens/admin/check_shared_registration.cdc (630B) +// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.336kB) +// lockedTokens/admin/custody_create_only_lease_account.cdc (3.16kB) +// lockedTokens/admin/custody_create_only_shared_account.cdc (3.553kB) +// lockedTokens/admin/custody_create_shared_accounts.cdc (3.76kB) +// lockedTokens/admin/custody_setup_account_creator.cdc (643B) +// lockedTokens/admin/deposit_locked_tokens.cdc (1.663kB) +// lockedTokens/admin/get_unlocking_bad_accounts.cdc (472B) +// lockedTokens/admin/unlock_tokens.cdc (576B) +// lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc (2.78kB) +// lockedTokens/delegator/delegate_new_tokens.cdc (1.182kB) +// lockedTokens/delegator/delegate_rewarded_tokens.cdc (528B) +// lockedTokens/delegator/delegate_unstaked_tokens.cdc (520B) +// lockedTokens/delegator/get_delegator_id.cdc (434B) +// lockedTokens/delegator/get_delegator_info.cdc (1.464kB) +// lockedTokens/delegator/get_delegator_node_id.cdc (438B) +// lockedTokens/delegator/register_delegator.cdc (1.508kB) +// lockedTokens/delegator/request_unstaking.cdc (522B) +// lockedTokens/delegator/withdraw_rewarded_tokens.cdc (805B) +// lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc (528B) +// lockedTokens/delegator/withdraw_unstaked_tokens.cdc (528B) +// lockedTokens/staker/get_node_id.cdc (429B) +// lockedTokens/staker/get_staker_info.cdc (1.171kB) +// lockedTokens/staker/register_node.cdc (1.425kB) +// lockedTokens/staker/request_unstaking.cdc (522B) +// lockedTokens/staker/stake_new_tokens.cdc (1.234kB) +// lockedTokens/staker/stake_rewarded_tokens.cdc (525B) +// lockedTokens/staker/stake_unstaked_tokens.cdc (525B) +// lockedTokens/staker/unstake_all.cdc (488B) +// lockedTokens/staker/update_networking_address.cdc (482B) +// lockedTokens/staker/withdraw_rewarded_tokens.cdc (795B) +// lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc (528B) +// lockedTokens/staker/withdraw_unstaked_tokens.cdc (528B) +// lockedTokens/user/deposit_tokens.cdc (713B) +// lockedTokens/user/get_locked_account_address.cdc (443B) +// lockedTokens/user/get_locked_account_balance.cdc (442B) +// lockedTokens/user/get_multiple_unlock_limits.cdc (560B) +// lockedTokens/user/get_total_balance.cdc (2.858kB) +// lockedTokens/user/get_unlock_limit.cdc (433B) +// lockedTokens/user/withdraw_tokens.cdc (713B) +// nodeVersionBeacon/admin/change_version_freeze_period.cdc (787B) +// nodeVersionBeacon/admin/delete_version_boundary.cdc (812B) +// nodeVersionBeacon/admin/heartbeat.cdc (612B) +// nodeVersionBeacon/admin/set_version_boundary.cdc (1.4kB) +// nodeVersionBeacon/scripts/get_current_node_version.cdc (236B) +// nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc (263B) +// nodeVersionBeacon/scripts/get_next_version_boundary.cdc (267B) +// nodeVersionBeacon/scripts/get_next_version_update_sequence.cdc (206B) +// nodeVersionBeacon/scripts/get_version_boundaries.cdc (293B) +// nodeVersionBeacon/scripts/get_version_boundary_freeze_period.cdc (321B) +// quorumCertificate/admin/publish_voter.cdc (311B) +// quorumCertificate/admin/start_voting.cdc (1.495kB) +// quorumCertificate/admin/stop_voting.cdc (354B) +// quorumCertificate/create_voter.cdc (1.107kB) +// quorumCertificate/scripts/generate_quorum_certificate.cdc (321B) +// quorumCertificate/scripts/get_cluster.cdc (184B) +// quorumCertificate/scripts/get_cluster_complete.cdc (236B) +// quorumCertificate/scripts/get_cluster_node_weights.cdc (191B) +// quorumCertificate/scripts/get_cluster_vote_threshold.cdc (185B) +// quorumCertificate/scripts/get_cluster_votes.cdc (245B) +// quorumCertificate/scripts/get_cluster_weight.cdc (181B) +// quorumCertificate/scripts/get_clusters.cdc (265B) +// quorumCertificate/scripts/get_node_has_voted.cdc (480B) +// quorumCertificate/scripts/get_node_weight.cdc (315B) +// quorumCertificate/scripts/get_qc_enabled.cdc (101B) +// quorumCertificate/scripts/get_voter_is_registered.cdc (198B) +// quorumCertificate/scripts/get_voting_completed.cdc (187B) +// quorumCertificate/submit_vote.cdc (584B) // randomBeaconHistory/scripts/get_latest_source_of_randomness.cdc (200B) // randomBeaconHistory/scripts/get_source_of_randomness.cdc (305B) // randomBeaconHistory/scripts/get_source_of_randomness_page.cdc (326B) -// stakingCollection/close_stake.cdc (906B) -// stakingCollection/create_machine_account.cdc (1.702kB) -// stakingCollection/create_new_tokenholder_acct.cdc (3.616kB) -// stakingCollection/deploy_collection_contract.cdc (312B) -// stakingCollection/register_delegator.cdc (823B) -// stakingCollection/register_multiple_delegators.cdc (875B) -// stakingCollection/register_multiple_nodes.cdc (1.692kB) -// stakingCollection/register_node.cdc (1.957kB) -// stakingCollection/request_unstaking.cdc (832B) -// stakingCollection/restake_all_stakers.cdc (1.413kB) -// stakingCollection/scripts/does_account_have_staking_collection.cdc (257B) -// stakingCollection/scripts/get_all_delegator_info.cdc (357B) -// stakingCollection/scripts/get_all_node_info.cdc (337B) -// stakingCollection/scripts/get_delegator_ids.cdc (286B) -// stakingCollection/scripts/get_does_stake_exist.cdc (415B) -// stakingCollection/scripts/get_locked_tokens_used.cdc (289B) -// stakingCollection/scripts/get_machine_account_address.cdc (440B) -// stakingCollection/scripts/get_machine_accounts.cdc (318B) -// stakingCollection/scripts/get_node_ids.cdc (248B) -// stakingCollection/scripts/get_unlocked_tokens_used.cdc (294B) -// stakingCollection/setup_staking_collection.cdc (3.494kB) -// stakingCollection/stake_new_tokens.cdc (956B) -// stakingCollection/stake_rewarded_tokens.cdc (849B) -// stakingCollection/stake_unstaked_tokens.cdc (849B) -// stakingCollection/test/deposit_tokens.cdc (878B) +// stakingCollection/close_stake.cdc (758B) +// stakingCollection/create_machine_account.cdc (1.152kB) +// stakingCollection/create_new_tokenholder_acct.cdc (2.95kB) +// stakingCollection/deploy_collection_contract.cdc (297B) +// stakingCollection/register_delegator.cdc (675B) +// stakingCollection/register_multiple_delegators.cdc (767B) +// stakingCollection/register_multiple_nodes.cdc (1.584kB) +// stakingCollection/register_node.cdc (1.426kB) +// stakingCollection/request_unstaking.cdc (684B) +// stakingCollection/restake_all_stakers.cdc (1.307kB) +// stakingCollection/scripts/does_account_have_staking_collection.cdc (252B) +// stakingCollection/scripts/get_all_delegator_info.cdc (354B) +// stakingCollection/scripts/get_all_node_info.cdc (334B) +// stakingCollection/scripts/get_delegator_ids.cdc (281B) +// stakingCollection/scripts/get_does_stake_exist.cdc (412B) +// stakingCollection/scripts/get_locked_tokens_used.cdc (284B) +// stakingCollection/scripts/get_machine_account_address.cdc (435B) +// stakingCollection/scripts/get_machine_accounts.cdc (313B) +// stakingCollection/scripts/get_node_ids.cdc (243B) +// stakingCollection/scripts/get_unlocked_tokens_used.cdc (289B) +// stakingCollection/setup_staking_collection.cdc (3.006kB) +// stakingCollection/stake_new_tokens.cdc (808B) +// stakingCollection/stake_rewarded_tokens.cdc (701B) +// stakingCollection/stake_unstaked_tokens.cdc (701B) +// stakingCollection/test/deposit_tokens.cdc (870B) // stakingCollection/test/get_tokens.cdc (684B) -// stakingCollection/transfer_delegator.cdc (2.094kB) -// stakingCollection/transfer_node.cdc (2.208kB) -// stakingCollection/unstake_all.cdc (758B) -// stakingCollection/update_networking_address.cdc (776B) -// stakingCollection/withdraw_from_machine_account.cdc (838B) -// stakingCollection/withdraw_rewarded_tokens.cdc (1.01kB) -// stakingCollection/withdraw_unstaked_tokens.cdc (1.025kB) -// stakingProxy/add_node_info.cdc (640B) -// stakingProxy/get_node_info.cdc (461B) -// stakingProxy/register_node.cdc (1.145kB) -// stakingProxy/remove_node_info.cdc (323B) -// stakingProxy/remove_staking_proxy.cdc (331B) -// stakingProxy/request_unstaking.cdc (493B) -// stakingProxy/setup_node_account.cdc (619B) -// stakingProxy/stake_new_tokens.cdc (491B) -// stakingProxy/stake_unstaked_tokens.cdc (496B) -// stakingProxy/unstake_all.cdc (457B) -// stakingProxy/withdraw_rewards.cdc (499B) -// stakingProxy/withdraw_unstaked.cdc (499B) -// storageFees/admin/set_parameters.cdc (847B) -// storageFees/scripts/get_account_available_balance.cdc (178B) -// storageFees/scripts/get_accounts_capacity_for_transaction_storage_check.cdc (317B) -// storageFees/scripts/get_storage_capacity.cdc (174B) -// storageFees/scripts/get_storage_fee_conversion.cdc (142B) -// storageFees/scripts/get_storage_fee_min.cdc (136B) +// stakingCollection/transfer_delegator.cdc (1.994kB) +// stakingCollection/transfer_node.cdc (2.108kB) +// stakingCollection/unstake_all.cdc (610B) +// stakingCollection/update_networking_address.cdc (628B) +// stakingCollection/withdraw_from_machine_account.cdc (690B) +// stakingCollection/withdraw_rewarded_tokens.cdc (862B) +// stakingCollection/withdraw_unstaked_tokens.cdc (877B) +// stakingProxy/add_node_info.cdc (624B) +// stakingProxy/get_node_info.cdc (506B) +// stakingProxy/register_node.cdc (1.095kB) +// stakingProxy/remove_node_info.cdc (307B) +// stakingProxy/remove_staking_proxy.cdc (315B) +// stakingProxy/request_unstaking.cdc (477B) +// stakingProxy/setup_node_account.cdc (511B) +// stakingProxy/stake_new_tokens.cdc (475B) +// stakingProxy/stake_unstaked_tokens.cdc (480B) +// stakingProxy/unstake_all.cdc (441B) +// stakingProxy/withdraw_rewards.cdc (483B) +// stakingProxy/withdraw_unstaked.cdc (483B) +// storageFees/admin/set_parameters.cdc (831B) +// storageFees/scripts/get_account_available_balance.cdc (177B) +// storageFees/scripts/get_accounts_capacity_for_transaction_storage_check.cdc (316B) +// storageFees/scripts/get_storage_capacity.cdc (173B) +// storageFees/scripts/get_storage_fee_conversion.cdc (141B) +// storageFees/scripts/get_storage_fee_min.cdc (135B) package assets @@ -304,6 +304,7 @@ import ( "crypto/sha256" "fmt" "io" + "io/ioutil" "os" "path/filepath" "strings" @@ -363,7 +364,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _flowserviceaccountAdd_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\xcb\x6e\xab\x30\x10\x5d\xdb\x5f\x31\x62\x11\xc1\xc6\xde\xa3\x7b\x1b\xd1\x4a\xfd\x81\x3e\xf6\x13\x7b\x48\x2c\x81\x8d\xc6\xa6\x54\xaa\xf2\xef\x15\x86\x45\x68\xa8\xba\x3e\x73\x9e\xe3\xfa\x21\x70\x82\xe7\x2e\x4c\x2f\xc4\x1f\xce\x50\x63\x4c\x18\x7d\x82\x96\x43\x0f\xc5\x3d\x50\x48\xa9\x35\xbc\x5e\x5c\x84\xc4\xe8\x23\x9a\xe4\x82\x07\xb4\x36\x02\x82\xa7\x09\x70\x55\x30\x4c\x8c\x29\xb0\xbc\xb9\x2b\x57\xf0\x89\x69\x86\x6a\x68\xac\x65\x8a\xb1\x82\x2f\x29\x45\x47\x09\xe2\xc6\xad\xb1\xbd\xf3\x35\x1c\xee\x73\xa8\x0c\xb9\x98\x16\x0f\x29\x06\xa6\x01\x99\xca\xe8\xce\x9e\xb8\x06\x1c\xd3\xa5\x7c\x0c\xcc\x61\x7a\xc7\x6e\xa4\x0a\x0e\x2b\x75\x36\x13\x42\x6b\x58\x50\x60\x6a\x89\xc9\x1b\x82\x14\xf6\xa6\xd8\x38\x01\x53\x0c\x23\x1b\x52\x59\x43\x0a\x11\xa9\x6b\xd5\x4e\x6c\xf8\x0f\x4b\x16\x15\x53\x60\x3c\x93\x3a\x65\xbf\x7f\x7f\xb6\x79\x28\xe7\xf5\x6b\xd0\x2b\x51\xb7\x37\x84\xf9\xb0\x92\x42\x88\xe3\x11\x06\xf4\xce\x94\xc5\x9b\xc7\x53\x97\xd3\x9f\x76\x1a\xe1\x6e\xfc\xa2\x92\xe2\x2a\x05\x7d\x92\x19\x13\xe5\x45\x7e\x2b\xa2\xd0\xda\x66\xf3\xb7\x1f\x6f\xcc\x52\xd7\xef\x00\x00\x00\xff\xff\x30\x9d\x0e\x50\x4c\x02\x00\x00" +var _flowserviceaccountAdd_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xcb\x6a\xc3\x30\x10\x45\xd7\xd2\x57\x0c\x59\x14\x67\x63\x75\x1d\xda\x06\x37\x0f\x28\x14\x0a\x71\x1f\xeb\x89\x34\x4e\x04\x8e\x64\x46\x72\x13\x28\xf9\xf7\x62\xc5\x8b\xb8\x75\xe9\x7a\x46\xe7\x9e\xab\xb1\x87\xc6\x73\x84\x75\xed\x8f\x25\xf1\xa7\xd5\x54\x68\xed\x5b\x17\xa1\x62\x7f\x80\xdb\xd3\xfa\xf9\xe5\xa3\x5c\x6d\xde\x9f\x16\xab\x62\xb9\xdc\xac\xca\x52\x4a\xa5\xe0\x75\x6f\x03\x44\x46\x17\x50\x47\xeb\x1d\xa0\x31\x01\x10\x1c\x1d\x01\x7b\x82\x66\x62\x8c\x9e\xe5\xd5\x5e\xd6\x0f\x17\x4c\xdd\x68\x06\x85\x31\x4c\x21\x4c\xe1\x4b\x4a\x51\x53\x84\x30\xd0\x28\xcc\xc1\xba\x19\xdc\xfc\x16\xcc\xd3\xc8\x86\x78\xc9\x90\xa2\x61\x6a\x90\x29\x0b\x76\xe7\xa8\x23\xb7\x71\xdf\xef\x76\x74\x21\x94\x82\x47\xcf\xec\x8f\xc0\x54\x11\x93\xd3\x04\xd1\x8f\x75\x1f\xa0\x81\x29\xf8\x96\x35\xe5\x89\x21\x85\x08\x54\x57\xf9\x88\x27\xdc\xc3\x25\x3c\xdf\xa6\x9c\xbb\x7f\xb5\x1f\xb2\xee\x9b\x67\xa0\x42\xf4\x8c\x3b\x52\xd5\xd5\x83\x6e\x71\x2a\x85\x10\xf3\x39\x34\xe8\xac\xce\x26\x6f\x0e\xb7\x75\xb2\xde\x8e\x34\xc1\x51\xed\xc9\x54\x8a\xb3\x14\x74\x22\xdd\x46\x4a\x3f\xf1\x57\x81\x1c\x8d\x29\x06\x07\xfa\x71\xaf\x84\x3a\x7f\x07\x00\x00\xff\xff\x58\x7a\xb8\x95\x35\x02\x00\x00" func flowserviceaccountAdd_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -379,11 +380,11 @@ func flowserviceaccountAdd_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/add_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb1, 0x11, 0x91, 0x94, 0xe5, 0x6c, 0x4, 0x20, 0xe4, 0x66, 0x6, 0x20, 0xd3, 0xd9, 0xf8, 0xab, 0x9b, 0xa9, 0xec, 0xe1, 0x9e, 0x25, 0x9b, 0x99, 0x68, 0xeb, 0xa9, 0x9f, 0xcf, 0x7a, 0xb4, 0xa2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x79, 0x2d, 0xa8, 0x63, 0x2c, 0xf1, 0x7e, 0xed, 0xbd, 0x9, 0xca, 0xc8, 0xdc, 0x63, 0x53, 0x29, 0x1e, 0xb5, 0x81, 0x4a, 0x50, 0x61, 0x83, 0xb4, 0x23, 0x25, 0xc0, 0x4b, 0xbf, 0x98, 0xe2, 0x54}} return a, nil } -var _flowserviceaccountDeposit_feesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x4f\x8f\x94\x40\x10\xc5\xcf\xcb\xa7\x78\x72\x58\xe1\xb0\x70\x31\x1e\x26\xa3\xeb\xbf\x8c\x77\xb3\xae\xe7\x1e\x28\xa0\x23\xd3\x45\xaa\x0b\x59\x33\xd9\xef\x6e\x68\x68\x5c\xe2\xc1\x13\xa1\xfa\xd5\xab\x5f\xfd\xb1\x97\x81\x45\x71\x1a\x5d\x6b\xcf\x3d\x3d\xf0\x4f\x72\x68\x84\x2f\x48\x77\xb1\x34\x89\xca\x9e\xa7\x9d\x2a\xfe\xef\x14\x27\x22\xff\x42\x30\xff\xa6\x49\x52\x96\xf8\x42\x03\x7b\xab\xd0\x39\xc5\x43\x19\xda\xd1\xdf\x94\x47\x33\xf6\x3a\xeb\xd8\xf5\xbf\xd1\xb0\x40\xc9\xab\x75\x6d\x92\xa8\x18\xe7\x4d\xa5\x96\x5d\x66\x2e\x3c\x3a\x3d\xe0\xfb\xc9\x3e\xbd\x7d\x93\xe3\x9a\x24\x00\x50\x96\x78\xe8\x68\x31\x81\x90\xe7\x51\x2a\x82\x76\x46\xd1\x71\x5f\xfb\x50\x2b\x56\x9e\xa3\x46\x08\x67\xb2\xae\x45\x70\x6f\x48\x84\xea\x60\xd5\x93\xc2\x93\xd3\xe0\x75\xc0\x87\xeb\x6e\x1a\x45\x08\x3f\x2f\x55\x07\xa1\xc1\x08\x65\xde\xb6\x8e\xe4\x00\x33\x6a\x97\x7d\x62\x11\x9e\x1e\x4d\x3f\x52\x8e\xdb\x8f\x55\x35\x03\x6f\xa0\x2b\xec\x57\x52\x18\x08\x35\x24\xe4\x66\xd2\x65\x1a\x8b\xd1\x6b\x0f\xaf\x2c\x54\xe3\x57\x18\x4a\xcc\x9b\xc9\x42\xe4\x1b\x35\x78\xb7\x8a\x8b\x59\x6a\x5a\x2a\xce\xa1\xee\x31\x30\xec\x91\x7f\x58\xed\x6a\x31\x53\x8e\xdb\x6d\x67\x4b\x1f\xef\xb3\x79\x53\x07\x94\xab\x49\xd9\xc4\xf7\xf0\x9c\x27\x37\x37\x37\xf7\xf7\x18\x8c\xb3\x55\x96\x7e\xe6\xb1\xaf\xe1\x58\xb1\xd4\xfa\x97\x9f\xa7\x05\x3f\x64\xbf\x4a\xf3\x5d\xcf\x11\x23\xee\x21\x1c\xc9\xff\xbb\xf6\xd4\x37\xc5\xb6\x10\x1c\xef\xb6\x19\x14\xd3\xea\xb8\x5d\xc5\xf2\xcd\x43\xee\xba\x23\x7a\xa2\x6a\x54\xc2\xf5\x25\xca\x76\x8b\x1d\x21\x9a\xb8\xc8\x65\xdd\xfe\x32\xf7\x38\x31\x5c\xd4\x8b\xc7\x3a\xc1\xe3\xdd\x9e\x33\x32\x3c\xff\x09\x00\x00\xff\xff\xbb\x16\x8b\x19\x67\x03\x00\x00" +var _flowserviceaccountDeposit_feesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x41\x6f\xd3\x40\x10\x85\xcf\xf1\xaf\x78\xf4\x00\xc9\xa1\x36\x07\xc4\x21\x0a\x94\x40\xec\x0a\x51\xb5\x52\x93\xd2\xf3\xc6\x1e\xdb\x2b\x9c\x5d\x6b\x77\x8c\x83\xaa\xfe\x77\xe4\x5d\xaf\xa9\x85\x10\x27\x4b\xe3\xf7\xde\x7c\x33\xb3\xf2\xd4\x6a\xc3\xc8\x3a\x55\xc9\x63\x43\x07\xfd\x83\x14\x4a\xa3\x4f\x78\x7b\xce\x1e\x6e\xaf\xbf\x7e\xbe\x49\x0f\x77\xdf\xd2\xdb\xed\x6e\x77\x9f\xee\xf7\x51\x30\x34\xba\x9f\x8b\x6f\xee\x1e\xff\x25\xcc\x88\xec\x4b\x5d\x96\xa6\xfb\x20\x8b\x92\x04\x3b\x6a\xb5\x95\x0c\x1e\x02\x2d\x58\x83\x6b\xfa\xe3\xfc\x2e\xba\x86\x07\x9d\x56\xcd\x2f\x94\xda\x80\xc9\xb2\x54\x55\x14\xb1\x11\xca\x8a\x9c\xa5\x56\x4b\x71\xd2\x9d\xe2\x35\x1e\x32\x79\x7e\xff\x6e\x85\xa7\x28\x02\x80\x24\xc1\xa1\x26\x1f\x02\x43\x56\x77\x26\x27\x70\x2d\x18\xb5\x6e\x0a\xeb\x7a\x85\xce\x43\x55\x18\xc2\x91\xa4\xaa\xe0\xd2\x4b\x32\x86\x0a\x17\xd5\x10\xc3\x92\x62\x97\xb5\xc6\xa7\xd9\xd6\x62\x8f\xe9\x84\xad\xa1\x56\x18\x5a\x5a\x59\x29\x32\x6b\x6c\x3b\xae\xb7\x79\x3e\xf0\x4d\x5c\x23\xdb\x35\x31\x04\x0c\x95\x64\x48\x0d\x60\x7e\x78\xef\x7c\x63\x61\x59\x1b\x2a\xf0\xd3\x85\x07\xdf\x00\xe2\x2a\xf7\x54\xe2\xc3\x28\x8e\x8f\xda\x18\xdd\x6f\x5e\x4f\xb7\xf1\x48\x1f\x97\xc3\xea\xd7\x48\x86\x28\x51\x51\x52\x86\xff\xee\xf7\x2a\x5a\x2c\x16\x57\x57\x68\x85\x92\xf9\xf2\xe2\x8b\xee\x9a\x02\x4a\x33\x7c\xdc\xdf\x68\xba\xf7\x64\xce\xfd\xea\x62\x35\x1b\xe7\x51\x72\x5d\x18\xd1\x87\x8d\xba\xab\xff\x7f\x20\x4b\x4d\x19\x4f\xab\xc5\xe6\x72\x1a\x2f\xee\xc7\xc4\xe9\xbe\xfe\xbb\x72\xde\x67\xdf\x9c\xce\x94\x77\x4c\x78\x7a\x89\x32\xbd\xaa\x9a\x10\x42\x54\xe0\x92\x6a\xfe\xc6\xe6\x38\xa1\x1c\x17\x3e\x63\xdc\xe0\xe6\x72\xce\x19\x18\x9e\x7f\x07\x00\x00\xff\xff\x46\x01\xf8\x5a\x46\x03\x00\x00" func flowserviceaccountDeposit_feesCdcBytes() ([]byte, error) { return bindataRead( @@ -399,11 +400,11 @@ func flowserviceaccountDeposit_feesCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/deposit_fees.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7d, 0x52, 0x74, 0xf2, 0x10, 0x54, 0xe7, 0x92, 0xfb, 0xd8, 0xeb, 0x33, 0x4f, 0x97, 0x24, 0x5, 0xe9, 0x43, 0xe, 0x3e, 0x92, 0xa, 0xbe, 0x33, 0xf9, 0xca, 0x6b, 0xe9, 0xf5, 0xb4, 0x56, 0x9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6d, 0x40, 0xd0, 0x49, 0x30, 0xb5, 0x4d, 0x6b, 0xdb, 0xc8, 0x82, 0xb0, 0x97, 0x31, 0x2a, 0xd, 0xcc, 0xff, 0x0, 0x91, 0xcb, 0xc, 0xa8, 0xe7, 0x67, 0xc4, 0x13, 0x3e, 0x0, 0xf, 0x0, 0xaf}} return a, nil } -var _flowserviceaccountRemove_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\xbd\x6e\x83\x30\x10\x9e\xed\xa7\x38\x31\x44\xb0\xd8\x3b\x6a\x1b\xd1\x4a\x7d\x81\xfe\xec\x17\xe7\x48\x2c\x81\x0f\x9d\x4d\x52\xa9\xca\xbb\x57\x31\x0c\xa1\xa1\xea\xfc\xdd\x7d\xbf\xbe\x1f\x58\x12\xbc\x76\x7c\x7e\x23\x39\x79\x47\x8d\x73\x3c\x86\x04\xad\x70\x0f\xc5\x3d\x50\x68\x6d\x2d\xbc\x1f\x7d\x84\x24\x18\x22\xba\xe4\x39\x80\x50\xcf\x27\x8a\x80\x01\x70\x66\x70\x42\x98\x58\xf4\xcd\x59\x39\x63\x2f\x13\x54\x43\xb3\xdf\x0b\xc5\x58\xc1\xb7\xd6\xaa\xa3\x04\x71\x21\xd6\xec\x7b\x1f\x6a\xd8\xdc\xdb\x30\x19\xf2\x31\x49\xd6\xd0\x6a\x10\x1a\x50\xa8\x8c\xfe\x10\x48\x6a\xc0\x31\x1d\xcb\x67\x16\xe1\xf3\x27\x76\x23\x55\xb0\x99\x5f\xaf\x62\x4a\x59\x0b\x13\x0a\x42\x2d\x09\x05\x47\x90\x78\xad\x89\x85\x12\x08\x45\x1e\xc5\x91\xc9\x1c\x5a\xa9\x48\x5d\x6b\x56\x6c\xc3\x23\x4c\x5e\x4c\x4c\x2c\x78\x20\xb3\xcb\x7a\x0f\xff\xa6\x79\x2a\xaf\xe5\xd7\x60\xe7\x47\xdb\xde\x3c\x5c\x0f\x2b\xad\x94\xda\x6e\x61\xc0\xe0\x5d\x59\x7c\x04\xdc\x75\xd9\xfd\x6e\x25\x11\xae\xda\x2f\x2a\xad\x2e\x5a\xd1\x17\xb9\x31\x51\x6e\xe4\xaf\x20\x66\xda\xb6\x59\x4c\xf7\x6b\xc9\xcc\x76\xf9\x09\x00\x00\xff\xff\xec\x46\x77\xa5\x4e\x02\x00\x00" +var _flowserviceaccountRemove_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xcb\x6a\xeb\x30\x10\x86\xd7\xd2\x53\x0c\x59\x1c\x9c\x8d\x75\xd6\xa1\x6d\x70\x73\x81\x42\xa1\x10\xf7\xb2\x56\xe4\x71\x22\xb0\x35\x66\x24\x27\x81\x92\x77\x2f\x96\xbd\x88\x5b\x97\xae\x67\xf4\xcd\xf7\xeb\xb7\x75\x43\x1c\x60\x5b\xd1\x39\x47\x3e\x59\x83\x99\x31\xd4\xba\x00\x25\x53\x0d\xff\x2f\xdb\xe7\x97\x8f\x7c\xb3\x7b\x7f\x5a\x6d\xb2\xf5\x7a\xb7\xc9\x73\x29\x95\x82\xd7\xa3\xf5\x10\x58\x3b\xaf\x4d\xb0\xe4\x80\xb1\xa6\x13\x7a\xd0\x0e\xf4\x40\x30\x8c\x3a\x10\xcb\x9b\xb5\x64\x98\xad\xfa\xd1\x02\xb2\xa2\x60\xf4\x7e\x0e\x9f\x52\x8a\x0a\x03\xf8\x91\x45\x56\xd4\xd6\x2d\xe0\xdf\x4f\xbf\x34\x8e\xac\x0f\x1c\x6f\x48\xd1\x30\x36\x9a\x31\xf1\xf6\xe0\xb0\x23\xb7\xe1\x38\xec\x76\x74\x21\x94\x82\x47\x62\xa6\x33\x30\x96\xc8\xe8\x0c\x42\xa0\xa9\xe8\x23\x34\x30\x7a\x6a\xd9\x60\x1a\x19\x52\x08\x8f\x55\x99\x4e\x78\xc2\x3d\xf4\xc7\xd3\x7d\xbc\x73\xf7\xa7\xf6\x43\xd2\xfd\xf2\x02\x94\x0f\xc4\xfa\x80\xaa\xbc\x79\xd0\x2d\xce\xa5\x10\x62\xb9\x84\x46\x3b\x6b\x92\xd9\x9b\xd3\xfb\x2a\x5a\xef\x27\x92\xe8\x49\xed\xd9\x5c\x8a\xab\x14\x78\x41\xd3\x06\x8c\x3f\xf1\x5b\x80\xb4\x2f\x31\x1b\x75\xf4\xad\xb2\x48\xbb\x7e\x05\x00\x00\xff\xff\xb4\x28\x75\xda\x37\x02\x00\x00" func flowserviceaccountRemove_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -419,11 +420,11 @@ func flowserviceaccountRemove_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/remove_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf0, 0x88, 0x85, 0x67, 0xec, 0xe6, 0x1a, 0x23, 0xf6, 0xee, 0x4f, 0xc, 0x7c, 0x58, 0x34, 0x3e, 0xf2, 0x45, 0x36, 0xc2, 0x8d, 0xbe, 0x5, 0xcc, 0xdf, 0x1a, 0xcc, 0x9c, 0x8c, 0xe9, 0x29, 0x21}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x45, 0x93, 0x3, 0xb, 0x31, 0xee, 0xf4, 0x0, 0x1, 0xd1, 0x23, 0xca, 0x29, 0xed, 0xf8, 0x8b, 0xd1, 0xa6, 0x66, 0x57, 0xe8, 0xf9, 0xf3, 0xf3, 0xfe, 0x91, 0xbc, 0xbb, 0x2f, 0x35, 0x84, 0x3}} return a, nil } -var _flowserviceaccountScriptsGet_account_creatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x31\x0a\x02\x31\x10\x46\xe1\x3e\xa7\xf8\xd9\x2a\x69\x3c\x80\xdd\x22\x78\x01\x4b\xb1\x08\xb3\x13\x09\x24\x19\x99\x99\x68\x21\xde\xdd\xc6\xce\xed\x1e\x3c\xf8\x6a\x7f\x88\x3a\xce\x4d\x5e\x17\xd6\x67\x25\x5e\x89\x64\x0e\x47\x51\xe9\x58\xfe\xc7\x12\x42\x26\x62\xb3\x98\x5b\x4b\x28\x73\xa0\xe7\x3a\x62\x3a\xe2\xba\x6e\x9b\xb2\xd9\x0d\xef\x00\x00\xca\x3e\x75\xec\xe0\x87\x3b\xfb\x2f\x4f\xca\xd9\x45\x2d\xa6\xf0\xf9\x06\x00\x00\xff\xff\x70\x58\x63\xbb\x8d\x00\x00\x00" +var _flowserviceaccountScriptsGet_account_creatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x4e\x2d\x2a\xcb\x4c\x4e\x75\x4c\x4e\xce\x2f\xcd\x2b\x51\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x0f\x76\x0d\x0a\xf3\x74\x76\x75\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x88\x76\x4c\x49\x29\x4a\x2d\x2e\x8e\x55\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\xc3\x62\xa8\x5e\x7a\x6a\x09\x94\xe9\x5c\x94\x9a\x58\x92\x5f\x54\xac\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x3a\x18\x2d\x67\x85\x00\x00\x00" func flowserviceaccountScriptsGet_account_creatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -439,11 +440,11 @@ func flowserviceaccountScriptsGet_account_creatorsCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_account_creators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb, 0x29, 0xe1, 0xc2, 0xd2, 0x0, 0xb4, 0xb8, 0x57, 0xa9, 0x8f, 0xc, 0x63, 0xa1, 0x40, 0x25, 0x23, 0xfd, 0x83, 0xcf, 0xb3, 0xef, 0xe1, 0x16, 0xe9, 0x84, 0xcf, 0xe7, 0x86, 0xa0, 0x5c, 0x7f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0x20, 0xf6, 0xc0, 0x61, 0x14, 0xc7, 0x64, 0xeb, 0x27, 0xe2, 0xc1, 0xc7, 0x29, 0x7a, 0x50, 0xa6, 0x42, 0xfb, 0x9b, 0xcd, 0x19, 0xad, 0x12, 0x40, 0x99, 0xd9, 0x5d, 0x94, 0xb9, 0xd9, 0xfa}} return a, nil } -var _flowserviceaccountScriptsGet_account_feeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x4e\x2d\x2a\xcb\x4c\x4e\x75\x4c\x4e\xce\x2f\xcd\x2b\x51\x48\x2b\xca\xcf\x55\x50\xc2\x94\x50\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\xc3\x62\xb2\x5e\x22\x84\x76\x2e\x4a\x4d\x2c\xc9\xcc\xcf\x73\x4b\x4d\xe5\xaa\x05\x04\x00\x00\xff\xff\xd5\x0c\xb4\x55\x88\x00\x00\x00" +var _flowserviceaccountScriptsGet_account_feeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x4e\x2d\x2a\xcb\x4c\x4e\x75\x4c\x4e\xce\x2f\xcd\x2b\x51\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x0f\x76\x0d\x0a\xf3\x74\x76\x75\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\xc3\x62\xa2\x5e\x22\x84\x76\x2e\x4a\x4d\x2c\xc9\xcc\xcf\x73\x4b\x4d\xe5\xaa\x05\x04\x00\x00\xff\xff\xfe\x58\x76\xda\x80\x00\x00\x00" func flowserviceaccountScriptsGet_account_feeCdcBytes() ([]byte, error) { return bindataRead( @@ -459,11 +460,11 @@ func flowserviceaccountScriptsGet_account_feeCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_account_fee.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd7, 0xc5, 0xf3, 0x5c, 0xe4, 0x84, 0x40, 0x9d, 0xd7, 0xb, 0x6b, 0x49, 0x46, 0x8c, 0xa5, 0xdd, 0xa3, 0x90, 0x91, 0x78, 0x62, 0xa8, 0xe, 0xa4, 0x2, 0x22, 0xba, 0xd8, 0x8c, 0x90, 0xf2, 0x66}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x8a, 0x3, 0xc, 0x87, 0xec, 0x16, 0x5, 0xf6, 0x12, 0xa7, 0x47, 0xd8, 0x4c, 0x66, 0x8f, 0x52, 0x8c, 0x70, 0x7a, 0x36, 0x1d, 0x38, 0x2e, 0x3b, 0x6, 0xf6, 0xa5, 0xea, 0x1a, 0x36, 0x6f}} return a, nil } -var _flowserviceaccountScriptsGet_execution_effort_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcd\xa1\x0e\xc2\x30\x10\x87\x71\xdf\xa7\xf8\x67\x6a\x33\x28\x82\x98\x43\x8c\x04\x4d\x08\x7a\xb9\x5c\x47\x93\xf6\x8e\x5c\xaf\x40\xb2\xec\xdd\x11\x48\x50\x9f\xf8\xc4\x2f\x95\x87\x9a\xe3\x94\xf5\x75\x61\x7b\x26\xe2\x23\x91\x36\x71\x44\xd3\x82\xee\x77\x74\x21\xcc\x44\x5c\x6b\x3f\xe7\x3c\x20\x36\x41\x99\x93\xf4\xc3\x88\xf5\x7a\x16\x3f\xec\x47\x7c\xbb\x61\x0d\x00\x60\xec\xcd\xe4\x8f\xb1\x5b\xd8\xa7\x37\x53\xf3\xa4\x32\xc5\xa8\xe6\x37\x4e\xcb\xdd\x6b\x3f\x84\xed\x13\x00\x00\xff\xff\xed\xee\xad\x32\x9b\x00\x00\x00" +var _flowserviceaccountScriptsGet_execution_effort_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x31\xcb\xc2\x30\x10\x06\xe0\x3d\xbf\xe2\x1d\xdb\xe5\xe3\x1b\xc4\xa1\x5b\xb1\x29\x14\x04\xa1\x41\x3b\x6b\x48\x6a\xc0\xde\x95\xf3\xa2\x85\xd2\xff\xee\xe0\xea\xf4\x6c\x4f\x9a\x66\x16\x45\xfb\xe0\xb7\x0b\xf2\x4a\x3e\xd4\xde\x73\x26\x45\x14\x9e\xf0\xbf\xb4\xc7\xd3\xe0\x6c\x7f\xe9\x0e\xb6\x6e\x9a\xde\x3a\x67\xcc\x9c\x6f\x88\x99\x30\x5d\x13\x15\x65\x85\xf5\xdc\x91\xee\x77\x15\xbe\x6e\x58\x0d\x00\x48\xd0\x2c\xf4\xe3\xfe\x1b\x83\xda\x25\xf8\xac\x89\xc9\xc6\xc8\xa2\x43\x48\xe3\x5d\x9f\x45\x69\xb6\x4f\x00\x00\x00\xff\xff\xbe\x4c\xb9\xc0\x93\x00\x00\x00" func flowserviceaccountScriptsGet_execution_effort_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -479,11 +480,11 @@ func flowserviceaccountScriptsGet_execution_effort_weightsCdc() (*asset, error) } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_execution_effort_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbc, 0x96, 0xc3, 0x69, 0xc1, 0xcc, 0x19, 0x11, 0xbd, 0xe0, 0x19, 0x1e, 0xb1, 0x38, 0xab, 0xae, 0x1, 0x48, 0x4, 0x1e, 0x57, 0xcf, 0x63, 0xee, 0x28, 0x4e, 0xf7, 0x13, 0x65, 0x30, 0xd6, 0x93}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x66, 0x94, 0x3f, 0xa3, 0x3a, 0xae, 0xef, 0x8c, 0xc9, 0x65, 0x5a, 0x5a, 0x9, 0xae, 0xc, 0x7c, 0x54, 0x7d, 0xcb, 0x61, 0x3e, 0xd1, 0x8a, 0xc, 0x5c, 0x1d, 0x4a, 0x9b, 0x79, 0x42, 0x97, 0x99}} return a, nil } -var _flowserviceaccountScriptsGet_execution_memory_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x3d\xaa\x42\x31\x10\x06\xd0\x3e\xab\xf8\xb8\x55\xd2\xbc\xea\x61\x61\x67\xa1\x20\x68\x25\x2e\x20\x0c\x73\x65\x20\x99\x91\xb9\x13\x7f\x10\xf7\xee\x02\xb4\x3e\x70\xa4\x5f\xcd\x03\xbb\x66\xf7\x13\xfb\x4d\x88\x37\x44\x36\x34\x30\xbb\x75\x4c\xdf\x30\xa5\x54\x89\x78\x59\x72\x6d\xad\x60\x1e\x8a\x5e\x45\x73\x59\xe3\xbc\xd7\x58\xfd\xe3\x95\x00\xc0\x39\x86\xeb\x8f\xf9\xef\xc2\xb1\x7d\x30\x8d\x10\xd3\x23\x77\xf3\xe7\x41\xba\x44\x2e\xe9\xfd\x09\x00\x00\xff\xff\xc8\x94\x6c\xb5\x8f\x00\x00\x00" +var _flowserviceaccountScriptsGet_execution_memory_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xb1\x0a\xc2\x30\x10\x06\xe0\x3d\x4f\xf1\x8f\xed\x22\x0e\xe2\xe0\x56\x6c\x0a\x85\x8a\xd0\xa0\xce\x1a\x52\x39\x30\x77\xe5\xb8\x68\x45\x7c\x77\x5f\xc0\x17\xf8\x28\xcf\xa2\x86\xee\x21\xaf\x90\xf4\x49\x31\x35\x31\x4a\x61\xc3\xa4\x92\xb1\x5e\xba\xe1\x78\x09\x7e\x3c\xf7\x7b\xdf\xb4\xed\xe8\x43\x70\x6e\x2e\x37\x4c\x85\x91\xaf\xc4\x55\xbd\xc3\xa9\x67\xdb\x6e\xf0\x71\x00\xa0\xc9\x8a\xf2\x1f\x71\x75\x4f\xe6\x97\x14\x8b\x91\xf0\x21\x65\xd1\xf7\x40\x99\xac\xaa\xdd\xf7\x17\x00\x00\xff\xff\x99\xae\x26\xc9\x87\x00\x00\x00" func flowserviceaccountScriptsGet_execution_memory_limitCdcBytes() ([]byte, error) { return bindataRead( @@ -499,11 +500,11 @@ func flowserviceaccountScriptsGet_execution_memory_limitCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_execution_memory_limit.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd5, 0x92, 0xbb, 0x36, 0x1b, 0xad, 0x73, 0x48, 0xdd, 0x41, 0x54, 0x99, 0x1e, 0xfa, 0x9b, 0x50, 0x6f, 0xbd, 0x17, 0xf5, 0xe3, 0xc6, 0xa1, 0x52, 0xaf, 0x15, 0xe0, 0x6c, 0x4d, 0x9c, 0x46, 0xd2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe3, 0x99, 0x2f, 0x9d, 0x84, 0xf5, 0xb, 0xdd, 0xdc, 0x9d, 0xe7, 0x38, 0xef, 0x7b, 0xd7, 0xb8, 0x51, 0xa0, 0xac, 0xbb, 0xd5, 0x8b, 0xbe, 0xda, 0x4b, 0x87, 0x55, 0xd7, 0x3b, 0xfb, 0x70, 0xba}} return a, nil } -var _flowserviceaccountScriptsGet_execution_memory_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x4e\x2d\x2a\xcb\x4c\x4e\x75\x4c\x4e\xce\x2f\xcd\x2b\x51\x48\x2b\xca\xcf\x55\x50\xc2\x94\x50\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\xa8\x0e\xf5\xcc\x2b\x31\x33\xb1\x52\x80\xd0\xb5\x0a\xd5\x5c\x0a\x0a\x0a\x0a\x45\xa9\x25\xa5\x45\x79\x58\xec\xd0\x4b\x4f\x2d\x71\xad\x48\x4d\x2e\x2d\xc9\xcc\xcf\xf3\x4d\xcd\xcd\x2f\xaa\x0c\x4f\xcd\x4c\xcf\x28\x29\xd6\xd0\xe4\xaa\x05\x04\x00\x00\xff\xff\x91\xb2\x2e\xbd\x9b\x00\x00\x00" +var _flowserviceaccountScriptsGet_execution_memory_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xb1\x0a\xc2\x30\x10\x06\xe0\x3d\x4f\xf1\x8f\xed\x22\x0e\xe2\xd0\xad\xd8\x14\x0a\x8a\xd0\xa0\x9d\x35\x5c\x6b\xc0\x24\xe5\xbc\x68\xa5\xf4\xdd\x1d\x5c\x3b\x7d\xdb\xe7\xfc\x18\x59\x50\x3f\xe3\xc7\x10\xbf\x9d\xa5\xd2\xda\x98\x82\xa0\xe7\xe8\xb1\x9d\xea\xe3\xb9\x33\xba\xbd\x36\x07\x5d\x56\x55\xab\x8d\x51\x6a\x4c\x77\xf4\x29\xc0\xdf\x5c\xc8\xf2\x02\xf3\xa5\x09\xb2\xdf\x15\xf8\xbb\x60\x56\x00\xc0\x24\x89\xc3\xca\xbd\x19\x48\xf4\x44\x36\x89\x8b\xe1\x44\x3e\xf2\xb7\x23\x37\x3c\xe4\x95\xe5\x6a\xf9\x05\x00\x00\xff\xff\xc2\x10\x3a\x4f\x93\x00\x00\x00" func flowserviceaccountScriptsGet_execution_memory_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -519,11 +520,11 @@ func flowserviceaccountScriptsGet_execution_memory_weightsCdc() (*asset, error) } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_execution_memory_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5, 0xcd, 0xd0, 0x38, 0x82, 0x36, 0xe4, 0x74, 0xde, 0x36, 0x36, 0x84, 0x3f, 0xa6, 0xf5, 0xb4, 0x59, 0x3a, 0x3b, 0x17, 0x7f, 0xa0, 0xbc, 0x82, 0xd6, 0xcc, 0x7c, 0xae, 0x39, 0x5c, 0x78, 0xe5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x84, 0x23, 0x2, 0x24, 0x2f, 0x68, 0xd8, 0xad, 0x75, 0xd2, 0x79, 0xd7, 0xac, 0xef, 0xdd, 0xa, 0x12, 0x4c, 0x65, 0x7c, 0x94, 0x9, 0x72, 0x3b, 0x82, 0x5d, 0x61, 0xe8, 0xc3, 0x2a, 0x80, 0xc9}} return a, nil } -var _flowserviceaccountScriptsGet_fees_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x50\x82\x71\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\xdd\x32\x2b\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\xe0\xa6\xe8\xa5\xa7\x96\xb8\xa5\xa6\x3a\x25\xe6\x24\xe6\x25\xa7\x6a\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x36\xc6\xa0\x51\x67\x00\x00\x00" +var _flowserviceaccountScriptsGet_fees_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x77\x73\x75\x0d\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x1b\xa2\x97\x9e\x5a\xe2\x96\x9a\xea\x94\x98\x93\x98\x97\x9c\xaa\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\xec\x72\xf2\xed\x66\x00\x00\x00" func flowserviceaccountScriptsGet_fees_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -539,11 +540,11 @@ func flowserviceaccountScriptsGet_fees_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_fees_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc6, 0xb4, 0xfa, 0x5d, 0x2c, 0x2f, 0x77, 0x80, 0x79, 0xa9, 0xb6, 0x97, 0xa3, 0x19, 0x3e, 0x2f, 0x94, 0xaa, 0x9, 0xa2, 0x75, 0x90, 0x67, 0x6b, 0x19, 0xc, 0xd, 0x59, 0xdc, 0x42, 0xc4, 0x4a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6f, 0xc8, 0x3b, 0x91, 0xc2, 0xc8, 0x97, 0x4e, 0x7c, 0x5e, 0xf9, 0xf, 0x80, 0x8e, 0xba, 0x76, 0x7c, 0x47, 0x55, 0x7e, 0xf6, 0xb, 0xe, 0x41, 0x19, 0x77, 0xa4, 0x91, 0x6c, 0x74, 0x47, 0x2d}} return a, nil } -var _flowserviceaccountScriptsGet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x31\x0a\x82\x31\x0c\x47\xf1\xbd\xa7\xf8\xf3\x4d\xed\xe2\x01\xdc\x54\xf0\x00\x7a\x82\x12\x53\x08\xb4\x89\xa4\xa9\x0e\xe2\xdd\x5d\xdc\x74\x7b\xf0\xe0\x27\xe3\x6e\x1e\x38\x77\x7b\x5e\xd9\x1f\x42\x7c\x20\xb2\xa5\x81\xe6\x36\xb0\xfd\x8e\x2d\xa5\x4a\xc4\x73\xe6\xda\x7b\x41\x5b\x8a\x51\x45\x73\xd9\xe3\x68\xd6\xf1\x4a\x00\xe0\x1c\xcb\xf5\x8f\xbb\x93\xf9\xad\x93\x73\x0d\x31\xbd\xf0\x0c\x17\x0a\xbe\xe5\x92\xde\x9f\x00\x00\x00\xff\xff\xdd\x1a\x44\xaa\x91\x00\x00\x00" +var _flowserviceaccountScriptsGet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x31\xcb\xc2\x30\x10\x06\xe0\x3d\xbf\xe2\x1d\xdb\xe5\xe3\x9b\xdd\x6a\x9b\x82\x20\x08\x09\xe8\x5c\xe3\x15\x0e\x9a\x5c\xb9\x5e\x54\x10\xff\xbb\x8b\xa3\xdb\x33\x3d\x9c\x57\x51\xc3\xb8\xc8\x23\x92\xde\x39\x51\x97\x92\xd4\x62\x98\x55\x32\xfe\x9f\xe3\xf1\x74\x89\x3e\x9c\x0f\xbd\xef\x86\x21\xf8\x18\x9d\x5b\xeb\x15\x73\x2d\xc8\x13\x97\xa6\xdd\x61\x2f\xb2\xe0\xe5\x00\x40\xc9\xaa\x96\x1f\xdf\x1f\x6f\x5f\xf5\x4a\x93\xb1\x94\x40\x9b\x29\x27\xa3\x5b\xd3\xba\xf7\x27\x00\x00\xff\xff\x30\xd3\xe8\xcf\x89\x00\x00\x00" func flowserviceaccountScriptsGet_is_account_creation_restrictedCdcBytes() ([]byte, error) { return bindataRead( @@ -559,11 +560,11 @@ func flowserviceaccountScriptsGet_is_account_creation_restrictedCdc() (*asset, e } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_is_account_creation_restricted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x78, 0x7f, 0x4b, 0x85, 0x11, 0xb6, 0x26, 0xa3, 0x91, 0xc, 0xc6, 0x56, 0x2f, 0x17, 0x6d, 0x44, 0x49, 0x35, 0x2f, 0xa, 0x6d, 0x2b, 0xc1, 0x30, 0xf1, 0x1e, 0xd5, 0x30, 0xec, 0x9a, 0x80, 0x23}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x33, 0x4f, 0x25, 0xf, 0x24, 0x69, 0x56, 0xe3, 0x8a, 0xce, 0x18, 0xe5, 0x4e, 0xce, 0x73, 0xf, 0x2b, 0x11, 0x4, 0xde, 0x2d, 0xb0, 0x7c, 0x76, 0x8, 0x3e, 0x82, 0x6e, 0xb9, 0xd2, 0xa4, 0x39}} return a, nil } -var _flowserviceaccountScriptsGet_is_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcd\x31\x0a\x02\x31\x10\x85\xe1\x3e\xa7\x78\x6c\xb5\x69\x3c\xc0\x76\xab\xe0\x05\x3c\xc1\x30\x3b\x0b\x81\x24\x23\x33\x13\x2d\xc4\xbb\x5b\xa8\x95\x76\x1f\x3c\x78\x7f\x69\x57\xb5\xc0\xb9\xea\xfd\x22\x76\x2b\x2c\x2b\xb3\x8e\x1e\xd8\x4d\x1b\xa6\xdf\x61\x4a\x89\x98\xc5\x7d\xa6\x5a\x33\xf6\xd1\xd1\xa8\xf4\x99\xb6\xcd\xc4\x7d\xc1\xfa\x46\x5e\x70\x54\xad\x78\x24\x00\x30\x89\x61\xfd\x4f\xe7\x50\xfc\xa3\x93\x09\x85\xda\xf7\x28\xa7\xe7\x2b\x00\x00\xff\xff\x9d\xb0\x81\x18\x9d\x00\x00\x00" +var _flowserviceaccountScriptsGet_is_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xb1\x0a\xc2\x30\x10\x06\xe0\x3d\x4f\xf1\x8f\x76\x11\xe7\x6e\xb1\x4d\x41\x10\x84\x06\x74\x8e\xe9\x15\x02\x4d\xae\x5c\x12\x15\xc4\x77\x77\x50\x37\xb7\x6f\xfa\x42\x5c\x59\x0a\x86\x85\xef\x96\xe4\x16\x3c\x69\xef\xb9\xa6\x82\x59\x38\x62\xf7\x18\x8e\xa7\x8b\x35\xe3\xf9\xd0\x19\xdd\xf7\xa3\xb1\x56\xa9\xb5\x5e\x31\xd7\x84\xe8\x42\xda\xb8\x69\x12\xca\xb9\x85\xfe\xa0\x69\xb1\x67\x5e\xf0\x54\x00\x20\x54\xaa\xa4\x3f\xff\x36\xe4\xaf\x3a\x21\x57\x58\x7e\x51\xa3\x5e\xef\x00\x00\x00\xff\xff\xda\x8e\xcf\xb1\x95\x00\x00\x00" func flowserviceaccountScriptsGet_is_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -579,11 +580,11 @@ func flowserviceaccountScriptsGet_is_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_is_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x95, 0xb8, 0x4e, 0xec, 0x66, 0x4a, 0x50, 0xbb, 0x8b, 0xb0, 0xb8, 0x52, 0x16, 0x26, 0xc, 0x19, 0xb, 0x4, 0x17, 0x3b, 0x4d, 0xb7, 0xe0, 0xa8, 0xc, 0x8f, 0x1e, 0xb3, 0xd2, 0xeb, 0x1f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4a, 0x6b, 0xfc, 0xd, 0xf7, 0xbd, 0x4c, 0x2b, 0x19, 0xf2, 0x34, 0x8a, 0xf2, 0xe0, 0x7c, 0x7b, 0x14, 0xa0, 0x83, 0xce, 0x53, 0x48, 0x48, 0xac, 0xe8, 0x97, 0xbd, 0x1, 0x42, 0xbc, 0x92, 0x91}} return a, nil } -var _flowserviceaccountScriptsGet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x50\x82\x71\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\xe0\x3a\xf4\xdc\x52\x53\x03\x12\x8b\x12\x73\x53\x4b\x52\x8b\x8a\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\x6a\xd2\x53\x4b\x50\x94\x69\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x4a\xde\xf2\x2a\x7a\x00\x00\x00" +var _flowserviceaccountScriptsGet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x77\x73\x75\x0d\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x82\x6b\xd0\x73\x4b\x4d\x0d\x48\x2c\x4a\xcc\x4d\x2d\x49\x2d\x2a\x56\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\xa8\x49\x4f\x2d\x41\x51\xa6\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x72\x08\x76\xd1\x79\x00\x00\x00" func flowserviceaccountScriptsGet_tx_fee_parametersCdcBytes() ([]byte, error) { return bindataRead( @@ -599,11 +600,11 @@ func flowserviceaccountScriptsGet_tx_fee_parametersCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_tx_fee_parameters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xee, 0x8f, 0xb0, 0x94, 0x23, 0x9d, 0x6b, 0x38, 0x2f, 0x83, 0x12, 0xee, 0x19, 0x73, 0x3f, 0x9d, 0x78, 0x57, 0x4c, 0xb8, 0x2b, 0x65, 0xe9, 0xa3, 0x4, 0x2b, 0x93, 0xdf, 0xda, 0xb5, 0x9c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0xaf, 0xc1, 0xff, 0x1a, 0x34, 0x69, 0x68, 0xb, 0xd, 0xc9, 0xba, 0xb4, 0xdb, 0x81, 0x8a, 0x41, 0x8, 0x38, 0xf6, 0x85, 0x75, 0xef, 0x4e, 0x8a, 0x6e, 0xb0, 0x6a, 0x22, 0xc1, 0x97, 0x1a}} return a, nil } -var _flowserviceaccountSet_execution_effort_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x93\x5f\x6b\xe3\x38\x14\xc5\xdf\xf3\x29\x2e\x5e\x58\x12\x48\xe3\x38\x89\x9d\xd8\x2c\x0b\x4b\x77\x0b\x65\xbb\xb0\xd0\xfd\xf3\x50\x3a\xf4\x5a\xbe\x8e\x35\xb5\x24\x8f\x24\x27\x0d\x21\xdf\x7d\x90\x15\xb7\xe9\x9f\x19\x66\x86\x79\x18\x43\x2c\xa1\x73\xee\xd1\x2f\xbe\x52\x18\xc2\x3f\x15\x37\x60\x35\x4a\x83\xcc\x72\x25\x0d\x18\xb2\x06\x24\x6d\x81\x1e\x88\xb5\x6e\x0d\xa8\x2c\x95\xb6\xb0\x25\xbe\xae\xac\x19\x74\x65\x04\x02\x1f\xb8\x68\xc5\x6b\x5f\xcd\x05\xb7\x50\x2a\xfd\x3c\x98\x1b\xc0\x7a\x8b\x3b\x03\xa9\x7b\x26\x7d\x8e\x8f\x05\x89\x82\x4c\xc8\x0b\x03\x0c\x25\xe4\x04\x86\x48\x42\x45\x9a\x32\xe7\x74\xbf\x33\xb8\x39\xc7\x82\x24\x23\x38\x57\xa2\x69\x2d\xba\xe4\x3f\xb9\x2c\x6e\x87\x95\xb5\x8d\xc9\xc2\x70\xcd\x6d\xd5\xe6\x13\xa6\x44\xa8\x64\x59\xab\x6d\xc8\x7c\x49\x98\xd7\x2a\x0f\x93\xe9\x32\xa6\x72\xb1\x62\x4b\x36\xc3\x69\x12\x15\xb3\x25\xcd\x93\x7c\x9a\xc6\x48\x4b\x62\x31\xcd\xa6\x8b\x98\xe1\x32\xd4\xad\xb4\x5c\x50\xc8\x94\x10\x4a\xba\xa1\xdf\xef\x9e\xcb\x62\xb2\x56\x3f\x5d\xcd\xa7\xa3\x23\xd5\xc5\x7f\x7f\x7d\x0d\x91\x7b\x9d\xad\x95\x27\x8a\x8a\x72\x31\x2f\x68\x15\xb3\x38\x5f\xc6\x49\xb4\x8a\xa3\x08\x57\x25\xa5\x29\xa5\x69\xba\xc2\x7c\x46\x0b\x56\xc4\x69\x58\x6e\x44\x28\xc8\x92\xf6\xef\x0e\x21\x75\x04\x1e\xc2\x56\x04\x5c\x5a\xd2\x12\x6b\x68\x34\x31\x6e\x5c\x4f\x54\xd9\x29\xaf\x9a\xd4\x65\xb8\x9e\xcc\xde\x45\xc9\x18\xb6\x15\x67\x15\x08\x42\xe9\x57\x9c\x42\x1f\x5a\xac\xc1\x2a\x88\x40\xb5\xb6\x4f\xb2\xca\x62\xed\x5b\xf8\x3a\x15\x37\xc8\x6b\xcc\x6b\x67\x03\x3c\xed\xff\xe4\x08\xea\x3a\x5e\x50\x89\x6d\xfd\x78\xa0\x00\x7d\x8f\xfd\xff\x78\xf1\x1d\xaf\x94\x6a\x32\x88\xde\xd4\xae\x2d\x5a\x12\x24\x6d\x06\x11\xbc\xe9\xb8\x68\x65\xb7\xfb\xa5\xdc\x28\xd6\xad\xfa\x2c\x67\x56\x1a\xb8\x84\x06\x35\xfa\x6f\x51\x2a\x2d\x7a\x8c\xbb\xbb\xbb\xf7\x46\x49\x37\xbd\x71\x2f\x80\xbd\x1f\x00\x02\xbb\x6b\x28\xc8\x20\xf8\x9d\x77\xd1\xa8\x77\xc1\xf8\x51\xdc\x60\xdd\x3a\xf5\xa6\x5f\x39\xa9\xec\x0c\xf7\xb4\x0b\x32\xd8\x3f\xc5\xfc\x7b\x29\x6d\xb2\x08\xc6\x4f\xb5\x41\x34\x9d\x46\x01\x1c\xc6\xcf\x0a\x7b\xf5\xf3\xa5\x49\x1c\xcf\x93\x00\x0e\x4f\xa5\xa7\x31\xdf\x84\x32\xfb\x71\x50\xe6\xdf\x0f\xa5\x9f\xde\xfa\x49\x1f\x7b\x92\xf3\x37\xda\xea\x34\x65\x0f\x41\xa1\x04\x72\xe9\x44\x63\x95\xc6\x35\x39\x9d\x17\x24\x2d\x2f\x39\x69\x27\x3c\x5e\x89\x3f\xba\x1b\xf1\xbf\x3f\xe2\x01\x1c\xfc\x96\xb7\xc7\xd3\x35\x38\xb9\x1a\x43\x49\xdb\xa3\x2f\x83\xbd\xc7\xcf\xc0\x8f\x87\x11\xec\x07\x8e\xb3\xd1\xd4\xa0\xa6\xa1\xe1\x6b\x49\x3a\x03\x6c\x6d\x35\xbc\xf6\x14\x23\xf8\xf9\x37\xc6\x54\x2b\x6d\xef\x76\x8f\x77\x4e\x8e\xa4\x93\x5a\x61\xf1\xcb\xcb\xf4\x5f\x87\xa5\x56\x22\x83\xf0\xe8\x0a\xdf\xc6\x1f\x7d\x2a\xd4\xe0\x86\x4e\xf0\xc7\x60\xd5\x17\x86\x1d\x06\x87\x8f\x01\x00\x00\xff\xff\x38\x5a\x8f\x3f\x7f\x06\x00\x00" +var _flowserviceaccountSet_execution_effort_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x93\x5d\x6b\xe3\x3a\x10\x86\xef\xf3\x2b\x06\x9f\x9b\x14\xd2\x38\x4e\x62\x27\x36\x87\x03\xa5\xe7\x14\xca\xe9\xc2\xc2\x7e\x5d\x94\x2e\x1d\xcb\xe3\x58\x5b\x4b\xf2\x4a\x72\xd2\x10\xf2\xdf\x17\x59\x71\x9b\x7e\xb0\xec\x2e\x7b\xb1\x86\x48\x62\xde\x99\x47\x6f\x34\x52\x18\xc2\xfb\x8a\x1b\xb0\x1a\xa5\x41\x66\xb9\x92\x06\x0c\x59\x03\x92\x36\x40\xf7\xc4\x5a\x17\x03\x2a\x4b\xa5\x2d\x6c\x88\xaf\x2a\x6b\x06\x5d\x19\x81\xc0\x7b\x2e\x5a\xf1\x32\xaf\xe6\x82\x5b\x28\x95\x7e\x0a\xe6\x06\xb0\xde\xe0\xd6\x40\xea\xbe\x71\xcf\xf1\x58\x90\x28\xc8\x84\xbc\x30\xc0\x50\x42\x4e\x60\x88\x24\x54\xa4\x29\x73\x99\xee\x77\x0a\xd7\xe7\x58\x90\x64\x04\xe7\x4a\x34\xad\x45\x47\xfe\x9f\xcb\xe2\x66\x58\x59\xdb\x98\x2c\x0c\x57\xdc\x56\x6d\x3e\x66\x4a\x84\x4a\x96\xb5\xda\x84\xcc\x97\x84\x79\xad\xf2\x30\x99\x2c\x62\x2a\xe7\x4b\xb6\x60\x53\x9c\x24\x51\x31\x5d\xd0\x2c\xc9\x27\x69\x8c\xb4\x20\x16\xd3\x74\x32\x8f\x19\x2e\x42\xdd\x4a\xcb\x05\x85\x4c\x09\xa1\xa4\x9b\xfa\xfd\xee\xb8\x2c\xc6\x2b\xf5\xd7\xd5\x6c\x72\x72\x70\x75\xf1\xf1\xcd\xcf\x38\x72\xc3\xe9\x4a\x79\x47\x51\x51\xce\x67\x05\x2d\x63\x16\xe7\x8b\x38\x89\x96\x71\x14\xe1\xb2\xa4\x34\xa5\x34\x4d\x97\x98\x4f\x69\xce\x8a\x38\x0d\xcb\xb5\x08\x05\x59\xd2\x7e\xec\x2c\xa4\xce\x81\x37\x61\x2b\x02\x2e\x2d\x69\x89\x35\x34\x9a\x18\x37\xae\x27\xaa\xec\x94\x17\x4d\xea\x18\xae\x27\xd3\xcf\x51\x32\x82\x4d\xc5\x59\x05\x82\x50\xfa\x88\x53\xe8\x6b\x8b\x35\x58\x05\x11\xa8\xd6\xf6\x24\xab\x2c\xd6\xbe\x85\x2f\xa9\xb8\x46\x5e\x63\x5e\xbb\x34\xc0\xe3\xfe\x8f\x0f\x46\x5d\xc7\x0b\x2a\xb1\xad\x1f\x2e\x14\xa0\xef\xb1\xff\x1f\xcf\xce\xf1\x4a\xa9\x26\x83\xe8\x55\xed\x9d\x45\x4b\x82\xa4\xcd\x20\x82\x57\x33\x2e\x5a\xd9\xed\x7e\x29\xd7\x8a\x75\x51\xcf\x72\xc9\x4a\x03\x97\xd0\xa0\x46\x7f\x16\xa5\xd2\xa2\xb7\x71\x7b\x7b\xfb\xc5\x28\xe9\x96\xd7\x6e\x00\xd8\xf9\x09\x20\xb0\xdb\x86\x82\x0c\x82\x7f\x79\x87\x46\xbd\x0d\x46\x0f\xe2\x1a\xeb\xd6\xa9\xd7\x7d\xe4\xa8\xb2\x4b\xb8\xa3\x6d\x90\xc1\xee\x11\xf3\xe1\x52\xda\x64\x1e\x8c\x1e\x6b\x83\x68\x32\x89\x02\xd8\x8f\x9e\x14\xf6\xea\xf7\x4b\x93\x38\x9e\x25\x01\xec\x1f\x4b\x8f\x31\xbf\x64\x65\xfa\xe7\x58\x99\xfd\x3e\x2b\xfd\xf2\xc6\x2f\x7a\xec\x11\xe7\x2d\xda\xea\x98\xb2\x83\xa0\x50\x02\xb9\x74\xa2\xb1\x4a\xe3\x8a\x9c\xce\x0b\x92\x96\x97\x9c\xb4\x13\x1e\x9e\xc4\x7f\xdd\x8b\xf8\xe4\xaf\x78\x00\x7b\xbf\xe5\xcd\xe1\x76\x0d\x8e\x9e\xc6\x50\xd2\xe6\x90\x97\xc1\xce\xdb\xcf\xc0\xcf\xfb\x13\xd8\x0d\x9c\xcf\x46\x53\x83\x9a\x86\x86\xaf\x24\xe9\x0c\xce\x5a\x5b\x9d\x31\xa6\x5a\x69\xfb\x14\xf7\x79\x79\x5c\x2b\x2c\xfe\x7e\x8e\xfa\x67\x58\x6a\x25\x32\x08\x0f\xe6\xc3\xd7\xbd\x9e\x3c\x87\x19\x5c\xd3\x91\xc7\x11\x58\xf5\x83\x90\xfd\x60\xff\x2d\x00\x00\xff\xff\xad\xdd\x1d\x36\x64\x06\x00\x00" func flowserviceaccountSet_execution_effort_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -619,11 +620,11 @@ func flowserviceaccountSet_execution_effort_weightsCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_execution_effort_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0xdb, 0xc1, 0xb9, 0x62, 0xa9, 0x42, 0x74, 0x68, 0xbe, 0xd1, 0xd7, 0xd6, 0x94, 0xc, 0x9d, 0x43, 0xe7, 0x67, 0xb0, 0xa7, 0x57, 0xa0, 0x72, 0xfa, 0xb0, 0x1f, 0x18, 0x12, 0xbd, 0x99, 0xf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x37, 0x75, 0xac, 0x6, 0xec, 0xf7, 0x3e, 0xda, 0xc2, 0x1c, 0xbc, 0xdb, 0xd2, 0xf9, 0x50, 0x92, 0x2c, 0xd2, 0x95, 0x48, 0xef, 0xad, 0xf0, 0x6a, 0xbc, 0x92, 0x53, 0xa0, 0xa, 0xcf, 0x9d, 0x6a}} return a, nil } -var _flowserviceaccountSet_execution_memory_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\xb1\x6a\xc3\x30\x10\x86\x77\x3f\xc5\x3f\x15\x19\x8a\xb5\x94\x0e\xa6\x14\x3a\x16\xda\xa9\xed\x03\x1c\xea\xc5\x16\x58\x92\xd1\x9d\xe3\x84\xe0\x77\x0f\xb6\x13\x93\x25\x90\x1b\xff\xfb\xf8\xf8\xac\xc5\x6f\xeb\x05\x9a\x29\x0a\x39\xf5\x29\x0a\x84\x55\x40\x88\x3c\x82\x0f\xec\x86\x79\x45\xe0\x90\xf2\x11\x9d\x0f\x5e\xab\xe2\x86\x37\x91\xc7\xaf\x79\xad\xf1\xf7\x19\xf5\xf5\xa5\xc4\xa9\x00\x80\x3e\x73\x4f\x99\x8d\xf8\x26\x72\xae\x41\x83\xb6\xe6\x47\x53\xa6\x86\x4b\x3c\x7d\x38\x97\x86\xa8\x57\x7a\xbe\x95\xac\x64\x65\xaa\x2e\xd1\xff\xdb\xea\x7c\x37\xbb\x9c\x42\x0d\x7b\xf9\xd9\x2d\xec\x7b\xe9\x5a\x02\xca\x7b\x22\xa1\x3d\x6f\x99\xcf\xd0\xf4\x90\x68\x2a\xa6\x73\x00\x00\x00\xff\xff\xc0\x86\x20\x70\x1f\x01\x00\x00" +var _flowserviceaccountSet_execution_memory_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\xc1\x8a\x83\x40\x10\x44\xef\x7e\x45\x1d\x15\x16\xe7\xb2\xec\x41\x96\x05\x8f\x0b\xc9\x2d\xf9\x80\x61\xd2\xd1\x01\x67\x46\xba\xdb\x98\x10\xfc\xf7\xa0\x12\x09\x39\xa5\x8f\xd5\xc5\xab\x67\x0c\x0e\xad\x17\x28\xdb\x28\xd6\xa9\x4f\x51\x20\xa4\x02\x8b\x48\x23\xe8\x4a\x6e\x98\x53\x04\x0a\x89\x6f\xe8\x7c\xf0\x5a\x66\x2f\xfd\x3c\xd2\xb8\x9b\xd3\x0a\xc7\xff\xa8\x3f\xdf\x05\xee\x19\x00\xf4\x4c\xbd\x65\xca\xc5\x37\x91\xb8\x42\x3d\x68\x5b\x3b\x97\x86\xa8\xcf\xca\x7c\xeb\xbb\xec\x92\x3d\xfd\xae\x80\xbf\xfc\xcc\x29\x54\x30\xa2\x89\x6d\x43\x66\xb3\xd8\x2f\x12\xcb\x5a\xf1\x0e\x10\x7b\xa1\xcd\xe5\x0b\x9a\x3e\x02\x4c\xd9\xf4\x08\x00\x00\xff\xff\x3e\xdc\x40\xf4\x04\x01\x00\x00" func flowserviceaccountSet_execution_memory_limitCdcBytes() ([]byte, error) { return bindataRead( @@ -639,11 +640,11 @@ func flowserviceaccountSet_execution_memory_limitCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_execution_memory_limit.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0x55, 0xd0, 0x7e, 0x5b, 0xb1, 0x66, 0x8e, 0x6e, 0x52, 0xd0, 0x4d, 0x3f, 0xf0, 0x8a, 0xa, 0x11, 0xfc, 0x2b, 0xb7, 0x1, 0xe1, 0x84, 0xf5, 0x2b, 0x69, 0xf5, 0xa8, 0xc2, 0x36, 0xc0, 0xbb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0x26, 0x87, 0x5b, 0xdc, 0xb4, 0xba, 0xbb, 0x30, 0xf6, 0x69, 0x15, 0xcf, 0xe4, 0x23, 0xea, 0x24, 0x40, 0x9e, 0x5c, 0xe7, 0x38, 0xfe, 0x13, 0x11, 0x19, 0xb1, 0xde, 0xab, 0x20, 0xe4, 0xf1}} return a, nil } -var _flowserviceaccountSet_execution_memory_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\x31\x6b\xc3\x30\x10\x46\x77\xff\x8a\x6f\x2a\x32\x14\x6b\x29\x1d\x44\x29\x74\xec\xd0\xa9\x2d\x99\x85\x72\xb1\x05\xb1\x64\x74\xe7\x38\xc1\xf8\xbf\x07\x47\x4e\x30\x81\x40\x6e\x39\xf8\x78\x3c\x9e\xd6\xf8\x6b\x3c\x43\x92\x0d\x6c\x9d\xf8\x18\x18\x4c\xc2\x08\x34\x80\x8e\xe4\xfa\x79\x43\x4b\x6d\x4c\x27\x0c\xe4\xeb\x46\xb8\x2a\x56\xbc\x0a\x34\x6c\xf2\x6e\x30\xfe\x7f\x07\x79\x7f\x33\xc8\x7f\x2a\x31\x16\x00\xd0\x25\xea\x6c\x22\xc5\xbe\x0e\x94\x0c\x6c\x2f\x8d\xfa\x95\x98\x6c\x4d\x25\x5e\xbe\x9c\x8b\x7d\x90\x2b\x3d\x5f\x26\x2b\xce\x4c\xb5\x8f\x76\xfb\x71\x6f\xff\x54\xbb\x14\x5b\x03\xbd\x50\xfa\x16\xfc\x73\xe9\x5d\xb2\xca\x47\x52\xb6\x07\x5a\xe5\xbf\x42\xe2\x93\xb2\xa9\x98\xce\x01\x00\x00\xff\xff\x43\xef\x3d\xe4\x3b\x01\x00\x00" +var _flowserviceaccountSet_execution_memory_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\x31\x0b\xc2\x30\x10\x85\xf7\xfe\x8a\x37\xb6\x20\xcd\x22\x0e\x41\x84\x8e\x0e\x6e\x8a\x73\x88\x67\x1b\xb0\x49\xc9\x5d\xad\x52\xfa\xdf\xa5\x56\xa5\x74\xf2\x96\x83\xf7\x1e\x1f\x9f\x52\x38\x56\x8e\x21\xd1\x78\x36\x56\x5c\xf0\x0c\x26\x61\x78\xea\x40\x0f\xb2\xed\x98\xa1\xa6\x3a\xc4\x27\x3a\x72\x65\x25\x9c\x27\xb3\x7d\xea\xa9\x3b\x4f\xb9\x46\x7f\xda\x7b\xd9\xac\x35\xa6\x3f\x64\xe8\x13\x00\x68\x22\x35\x26\x52\xca\xae\xf4\x14\x35\x8a\x56\xaa\xc2\xda\xd0\x7a\xf9\x4e\xc6\x9b\xea\xfc\x16\xcc\x65\xbb\x44\xed\xd2\x6b\x0c\xb5\x86\x62\x09\xd1\x94\xa4\x7e\x76\x87\xb7\xdc\xc7\x21\x5b\xc2\xd8\xdc\x69\xe6\xb8\x82\x84\x3f\x21\x43\x32\xbc\x02\x00\x00\xff\xff\x96\xe9\x2c\xf0\x20\x01\x00\x00" func flowserviceaccountSet_execution_memory_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -659,11 +660,11 @@ func flowserviceaccountSet_execution_memory_weightsCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_execution_memory_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x68, 0x24, 0x78, 0x78, 0x6b, 0x42, 0x18, 0x35, 0x8d, 0x1, 0x95, 0xfe, 0xec, 0x4b, 0x3b, 0x81, 0x3, 0xa1, 0x7, 0x1d, 0xeb, 0x87, 0x46, 0x33, 0xa2, 0x65, 0x58, 0xe5, 0x14, 0x5d, 0x3c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0x9e, 0xe1, 0x98, 0x6a, 0x53, 0x46, 0x75, 0xcd, 0x3e, 0x85, 0x4f, 0xc5, 0x75, 0x19, 0xd2, 0xa, 0x71, 0x20, 0xb2, 0xc3, 0xa8, 0x1c, 0x2a, 0xc6, 0x45, 0xd5, 0x39, 0x69, 0xee, 0xc9, 0x8c}} return a, nil } -var _flowserviceaccountSet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\x4d\x6b\xc2\x40\x10\x3d\xef\xfe\x8a\x21\x07\x49\x2e\xc9\x3d\xb4\x15\x2d\x14\x7a\xed\xd7\xd9\x71\x9d\xe8\x42\xdc\x09\xb3\x13\x2d\x14\xff\x7b\xc9\x1a\x5a\xc5\x94\x5e\xf7\xed\xfb\x9a\xe7\xf7\x1d\x8b\xc2\x53\xcb\xc7\x57\x92\x83\x77\xb4\x70\x8e\xfb\xa0\xd0\x08\xef\x21\xbb\x05\x32\x6b\xab\x0a\xde\x76\x3e\x82\x0a\x86\x88\x4e\x3d\x07\x70\x3b\x0c\x5b\x8a\xb0\xf2\x11\x70\x94\x70\x24\x98\x40\xa1\xa8\xe2\x9d\xd2\x66\x05\x07\x6c\x7b\xb2\x17\xd4\xfc\x17\xad\x61\xc9\xdc\x16\xf0\x65\xad\x69\x49\x21\x5e\x39\x2f\x36\x7b\x1f\x6a\x98\xdd\x66\x2a\x13\xe4\xa3\x0a\x2a\x8b\xb5\xa6\x13\xea\x50\x28\x8f\x7e\x1b\x48\x6a\xc0\x5e\x77\xf9\x92\x45\xf8\xf8\x31\xf8\x17\x30\x1b\xa9\x83\x99\x31\x55\x05\x67\x14\x84\x1a\x12\x0a\x8e\x40\x79\xea\x2c\x57\x4e\x43\x31\xee\xc5\x51\x99\x34\xac\x31\x91\xda\xa6\x9c\x88\x0d\xf7\x70\xce\x52\x46\x65\xc1\x2d\x95\xeb\xe4\x77\xf7\x6f\x9b\x87\x7c\x58\xa2\x86\x6a\x24\x56\xcd\x05\x61\xf8\x58\x58\x63\xcc\x7c\x0e\x1d\x06\xef\xf2\xec\x3d\xe0\xba\x4d\xe9\xd7\x13\x8d\x70\x32\x7e\x56\x58\x73\xb2\x86\x3e\xc9\xf5\x4a\xe9\x22\x7f\x15\x29\x23\xe9\x73\x1c\x5f\x1e\x85\xd2\xc0\x2f\x3f\x0b\x5e\x8c\x99\x34\x4f\xdf\x01\x00\x00\xff\xff\x81\x61\xec\x6a\x61\x02\x00\x00" +var _flowserviceaccountSet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x4d\x6b\xf3\x30\x10\x84\xcf\xd2\xaf\x58\x72\x78\x71\x2e\xf6\x7b\x36\x6d\x83\xf3\x05\x81\x42\x21\xee\xc7\x35\x8a\xb2\x4e\x04\x8e\xd6\xac\xd6\x49\xa0\xe4\xbf\x17\xab\xa1\x4d\xa8\x4b\xaf\x5a\xed\xec\x33\x33\x6e\xdf\x10\x0b\xcc\x6b\x3a\x96\xc8\x07\x67\xb1\xb0\x96\x5a\x2f\x50\x31\xed\xe1\xff\x69\xfe\xf8\xf4\x56\xce\x96\xaf\x8b\xc9\xac\x98\x4e\x97\xb3\xb2\xd4\x3a\xcb\xe0\x79\xe7\x02\x08\x1b\x1f\x8c\x15\x47\x1e\xec\xce\xf8\x2d\x06\x58\xb9\x00\xe6\x22\x61\x91\x4d\x1c\x32\x06\x61\x67\x05\x37\x2b\x38\x98\xba\x45\x7d\xb5\x9a\x7c\x4f\x73\x18\x13\xd5\x43\x78\xd7\x5a\xd5\x28\x10\x6e\x90\x8a\xcd\xde\xf9\x1c\xfe\xfd\x84\x4d\xe3\xc8\x05\x61\x23\xc4\x5a\xab\x86\xb1\x31\x8c\x49\x70\x5b\x8f\x9c\x43\xd1\xca\xee\xf2\xb7\x53\x57\x2a\xcb\x60\x4c\xcc\x74\x04\xc6\x0a\x19\xbd\x45\x10\xea\xcb\xe1\x46\xba\x73\x42\x2d\x5b\x4c\xa3\x86\x56\x2a\x60\x5d\xa5\x3d\x9c\x70\x0f\x9f\xc7\xd3\x75\xbc\x73\xf7\x27\xf6\x43\xd2\x45\x9e\x43\x16\x84\xd8\x6c\x31\xab\xae\x16\xba\x8f\x43\xad\x94\x1a\x8d\xa0\x31\xde\xd9\x64\xf0\xe2\xcd\xba\x8e\xd4\xeb\x1e\x27\xa6\x17\x7b\x30\xd4\xea\xac\x15\x9e\xd0\xb6\x82\x31\x89\xdf\x0c\xa4\x01\x65\x11\x2e\x2f\x13\xc6\xd8\xe4\xf2\xab\xaa\xab\xd6\xa2\xe6\xf9\x23\x00\x00\xff\xff\xd6\x4c\xa3\x70\x4a\x02\x00\x00" func flowserviceaccountSet_is_account_creation_restrictedCdcBytes() ([]byte, error) { return bindataRead( @@ -679,11 +680,11 @@ func flowserviceaccountSet_is_account_creation_restrictedCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_is_account_creation_restricted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x3d, 0xd6, 0x34, 0xd1, 0xea, 0xb6, 0x5e, 0x1f, 0xc8, 0xe2, 0xef, 0xf3, 0xff, 0xc2, 0x1d, 0xb0, 0x58, 0xd4, 0x2d, 0x2a, 0x99, 0x74, 0xde, 0x50, 0xe7, 0x21, 0x74, 0x5b, 0x8f, 0x11, 0x2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x99, 0xe6, 0x5c, 0x96, 0xf7, 0xd5, 0xbe, 0x67, 0xcc, 0x62, 0x34, 0x2b, 0x4d, 0xd5, 0x3f, 0xb6, 0x29, 0xe7, 0xa8, 0xe7, 0x8c, 0x2b, 0xa, 0xd0, 0x7e, 0x8c, 0x5, 0xc5, 0xe7, 0x9f, 0x69, 0x7f}} return a, nil } -var _flowserviceaccountSet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\xcf\x6a\xf3\x30\x10\xc4\xcf\xd2\x53\x2c\x3e\x04\x1b\x3e\xec\xcb\x47\x0f\xa6\x6d\x48\x4b\x7d\xee\xa1\xe9\x5d\x51\xd7\x89\xc0\xd6\x9a\xdd\x15\x09\x94\xbc\x7b\x89\xf3\xb7\xe0\xf4\xa8\xd9\xd5\x6f\x86\x9d\xd0\x0f\xc4\x0a\x4d\x47\xdb\x06\x51\xa0\x65\xea\x21\x3b\x3f\x33\x6b\xab\x0a\x3e\x36\x41\x40\xd9\x45\x71\x5e\x03\x45\x10\x54\x01\xdd\xe0\xf5\xdb\xe0\xd8\xf5\xa8\xc8\x62\x6f\x16\x73\x49\xbc\xc6\xc6\x79\x25\xae\x61\xd9\x84\xdd\xc3\xff\x7f\x10\xa2\xef\x92\x04\x8a\x6f\x6d\x4b\xac\xaf\x24\x7a\x1d\xe2\x0e\x7d\xd2\xc9\x61\x01\xdf\xd6\x74\xa8\xd0\x9e\x5c\x17\xde\x53\x8a\xba\xf8\xea\x43\xac\x61\x76\x0e\x53\x8e\x42\x10\x65\xa7\xc4\xd6\x9a\x81\x71\x70\x8c\xb9\x84\x75\x44\xae\xc1\x25\xdd\xe4\x2f\xc4\x4c\xdb\x4f\xd7\x25\x2c\x60\x76\x42\x8d\x16\x46\xb0\x6b\xcb\x29\x13\x78\x82\x23\xa3\x14\x25\x76\x6b\x2c\x57\x23\xe5\xf1\x8e\xf7\x73\x7e\x38\x67\x0d\xd5\x69\xbd\xba\x40\x0f\x5b\x85\x35\xc6\xcc\xe7\x30\xb8\x18\x7c\x9e\x2d\xa3\x5b\x75\x08\x4a\x70\x84\x02\x63\x8b\x8c\xd1\x8f\x9a\xbb\xe5\x02\xa3\x50\x62\x8f\x59\x61\xcd\xde\x9a\xe3\xd1\xf0\xef\xf0\xa5\xa0\x36\x88\xef\x97\xa6\x7e\xb7\x73\xf3\xb8\x53\xd1\x84\x78\xa7\xaf\x09\x71\x0c\xba\xff\x09\x00\x00\xff\xff\x3f\x59\x3d\x32\x6e\x02\x00\x00" +var _flowserviceaccountSet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\x41\x6b\xe3\x40\x0c\x85\xcf\x33\xbf\x42\xe4\xb0\x38\xb0\xd8\x7b\x58\xf6\x60\xb6\x0d\xa6\xb1\x4f\x85\x96\xa6\xa1\xe7\xc9\x54\x4e\x06\xec\x91\x91\x64\x12\x28\xf9\xef\x25\x4e\x9a\xa4\xe0\xf4\x38\x6f\xf4\x3e\x3d\xf4\x42\xdb\x11\x2b\x54\x0d\x6d\x2b\x44\x81\x9a\xa9\x85\x3f\xbb\xea\xf1\xe9\xad\x2a\xcb\x45\x31\x9f\xbf\x94\x8b\x85\xb5\x59\x06\xaf\x9b\x20\xa0\xec\xa2\x38\xaf\x81\x22\x08\xaa\x80\x6e\xf0\xe2\xee\x1c\xbb\x16\x15\x59\xec\xd5\x60\x22\x3d\xaf\xb1\x72\x5e\x89\x73\x58\x56\x61\xf7\xef\xef\x6f\x08\xd1\x37\xbd\x04\x8a\x65\x5d\x13\xeb\x03\x89\x5e\x3e\x71\x87\xbe\xd7\xd1\xcf\x29\x7c\x58\xd3\xa0\x42\x7d\xda\x5a\x78\x4f\x7d\xd4\xe2\xbd\x0d\x31\x87\x5f\x5f\x61\xd2\x41\x08\xa2\xec\x94\xd8\x5a\xd3\x31\x76\x8e\x31\x91\xb0\x8e\xc8\x39\x14\xbd\x6e\x4e\xde\x81\x69\x04\x9b\x3a\x1d\xa3\xc2\x1d\x1c\x4d\xe9\x8a\x98\x69\xfb\xff\xc6\x92\xfb\xe4\x70\xbe\x1c\x32\x51\x62\xb7\xc6\xec\x0c\x3b\x4c\x4d\xad\x31\x66\x36\x83\xce\xc5\xe0\x93\xc9\x32\xba\x55\x83\xa0\x04\x47\x28\x30\xd6\xc8\x18\xfd\xa0\xb9\x6b\x2e\x30\x0a\xf5\xec\x71\x32\xb5\x66\x6f\xcd\xf1\x3a\xf8\x73\xe8\x54\x50\x2b\xc4\xe7\x73\x25\xdf\x6b\xb8\x7a\xdc\xe8\x62\x44\xbc\x51\xcc\x88\x38\x04\xdd\x7f\x06\x00\x00\xff\xff\xff\xaa\x15\x0d\x5e\x02\x00\x00" func flowserviceaccountSet_tx_fee_parametersCdcBytes() ([]byte, error) { return bindataRead( @@ -699,11 +700,11 @@ func flowserviceaccountSet_tx_fee_parametersCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_tx_fee_parameters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7, 0x44, 0xba, 0x8b, 0xc3, 0xc9, 0x40, 0xba, 0x19, 0x23, 0xf3, 0x15, 0x57, 0xbc, 0x3a, 0x15, 0xd5, 0x73, 0xa0, 0x4, 0xae, 0x10, 0xc7, 0x3c, 0x8d, 0x23, 0xf0, 0xe3, 0xef, 0x69, 0x6c, 0xa2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc4, 0xd9, 0xa, 0xe8, 0x29, 0x62, 0x98, 0x4f, 0xb0, 0x5b, 0x5b, 0x90, 0x2e, 0x2c, 0xa0, 0x36, 0x6b, 0x6b, 0x7d, 0x8f, 0xfc, 0xdd, 0x15, 0xf5, 0xa9, 0x70, 0x54, 0xe7, 0x8, 0x37, 0x39, 0x9b}} return a, nil } -var _flowserviceaccountSet_tx_fee_surge_factorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xb1\x6a\xf3\x40\x10\x84\xeb\xbb\xa7\x58\x54\x18\xa9\x91\x9a\x9f\xbf\x10\x49\x8c\x53\xe8\x05\x12\xa7\x3f\x5f\x46\xf6\x81\x74\x27\x76\xf7\xb0\x21\xf8\xdd\x83\x65\x3b\x76\x20\x49\xb9\xc3\xcc\x37\xcb\x84\x71\x4a\xac\xd4\x0d\x69\xdf\x01\x42\x3d\xa7\x91\x8a\xeb\x59\x58\xdb\x34\xf4\xba\x0b\x42\xca\x2e\x8a\xf3\x1a\x52\x24\x81\x0a\xe9\x0e\xb7\xd8\xe4\xd8\x8d\x50\xb0\xd8\x3b\x63\x29\x99\xb7\xe8\x9c\xd7\xc4\x2d\xad\xbb\x70\xf8\xff\xaf\xa2\x0f\x6b\x06\x28\xf5\x97\xec\xca\xfb\x94\xa3\xae\xde\xc7\x10\x5b\x5a\x5c\x91\xf5\x2c\x04\x51\x76\x9a\xd8\x5a\x33\x31\x26\xc7\x28\x25\x6c\x23\xb8\x25\x97\x75\x57\x3e\x27\xe6\xb4\x7f\x73\x43\x46\x45\x8b\x0b\x6a\xae\x30\x82\xa1\xaf\x7f\x2a\xa1\x47\x3a\x33\x6a\xd1\xc4\x6e\x8b\x7a\x33\x53\x1e\x7e\xe9\x7e\x2a\x4f\xa3\xb4\xd4\x5c\xec\xcd\x17\xf4\xe4\xaa\xac\x31\x66\xb9\xa4\xc9\xc5\xe0\xcb\x62\x1d\xdd\x66\x00\x69\xa2\x33\x94\x18\x3d\x18\xd1\xcf\x9a\xbb\xe7\x12\x43\x52\x66\x8f\xa2\xb2\xe6\x68\x0d\x0e\xf0\x59\xf1\xf7\xf3\xb5\x40\x3b\xe0\xe5\x36\xec\xf7\x91\xef\x8e\x99\x7a\xfc\x0c\x00\x00\xff\xff\x3b\xbd\x5d\x8d\xe1\x01\x00\x00" +var _flowserviceaccountSet_tx_fee_surge_factorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xc1\x4a\xf3\x40\x14\x85\xd7\x33\x4f\x71\xe9\xe2\x27\xdd\x24\xff\x42\x5c\x04\xb5\x04\xda\x59\x09\x82\xb1\xb8\x9e\x8e\x27\xed\x40\x32\x13\xee\xdc\xd0\x82\xf4\xdd\xa5\x69\xb5\x11\xd4\xe5\x1c\xce\xf7\xcd\xe5\xf8\xae\x8f\x2c\x64\xda\xb8\x37\x40\xa2\x86\x63\x47\xff\x0f\xe6\xf1\xe9\xd5\xac\x56\x75\xb5\x5c\x3e\xaf\xea\x5a\xeb\xa2\xa0\x97\x9d\x4f\x24\x6c\x43\xb2\x4e\x7c\x0c\x94\x20\x89\x64\x87\x2b\xdd\x5b\xb6\x1d\x04\x9c\xf4\xa4\x98\xa5\x81\xb7\x30\xd6\x49\xe4\x92\xd6\xc6\x1f\x6e\x6f\xe6\xf4\xae\x55\x0b\xa1\xe6\xc2\x56\xce\xc5\x21\x48\xf5\xd6\xf9\x50\xd2\xbf\x4f\x65\x3e\x06\x3e\x09\x5b\x89\xac\xb5\xea\x19\xbd\x65\x64\xc9\x6f\x03\xb8\xa4\x6a\x90\xdd\x85\x1d\x9d\x2a\xa1\x6d\xf2\x9f\xac\x74\x4f\x67\x28\xdf\x44\xe6\xb8\xbf\xfb\xe5\x93\x87\xec\x34\x42\x49\x45\x92\xc8\x76\x8b\xe2\x4b\x76\x6a\xcd\xb5\x52\x6a\xb1\xa0\xde\x06\xef\xb2\xd9\x3a\xd8\x4d\x0b\x92\x48\x67\x29\x31\x1a\x30\x82\x1b\x33\x3b\xf5\x12\x23\xc5\x81\x1d\x66\x73\xad\x8e\x5a\xe1\x00\x37\x08\xfe\x3e\x3a\x4f\x10\x03\xd4\xd7\x05\xbf\xaf\x39\x79\x8c\xd6\xe3\x47\x00\x00\x00\xff\xff\x1e\x43\xfa\x9c\xd1\x01\x00\x00" func flowserviceaccountSet_tx_fee_surge_factorCdcBytes() ([]byte, error) { return bindataRead( @@ -719,71 +720,11 @@ func flowserviceaccountSet_tx_fee_surge_factorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_tx_fee_surge_factor.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x64, 0xef, 0xd8, 0xdc, 0x37, 0x2e, 0x4d, 0x8a, 0x1c, 0x33, 0x3d, 0x68, 0x59, 0xbd, 0xda, 0xe, 0x13, 0xad, 0x59, 0x87, 0xb7, 0x74, 0x45, 0xa3, 0xd1, 0xef, 0xa8, 0x33, 0x79, 0x24, 0x93, 0xb0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1d, 0x84, 0xea, 0x4e, 0xdf, 0x39, 0x64, 0x58, 0x5c, 0x35, 0xeb, 0xc3, 0x27, 0xcb, 0x39, 0xc9, 0xa5, 0xf, 0x7b, 0xbe, 0x52, 0x59, 0x3c, 0xbc, 0x9a, 0xc2, 0x15, 0x2f, 0x72, 0xc3, 0x0, 0xb2}} return a, nil } -var _accountsAdd_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x51\x6b\xdb\x30\x14\x85\x9f\xa5\x5f\x71\x9a\x87\x60\x83\x09\xce\x3a\xc2\x10\xf5\x20\x0c\x46\x47\x19\x0c\xba\xee\x5d\xb1\x2e\xb6\x88\x23\x19\xf9\xba\xae\x19\xf9\xef\x43\xc9\xe6\x26\x38\xec\x49\xf2\xf5\xb9\xe7\xd3\x3d\x5c\x7b\x68\x7d\x60\x7c\x09\x63\xcb\x5e\x4a\x0e\xda\x75\xba\x64\xeb\x5d\xb2\xa7\x51\xe1\x99\x83\x75\x55\x86\xce\x56\x4e\x73\x1f\x68\xdb\x54\x3e\x58\xae\x0f\x0a\x2f\xdf\x1c\x7f\xca\x50\xeb\xae\x9e\x57\x07\xb2\x55\xcd\x0a\x2f\x5f\xed\xdb\xe6\x63\x8a\xdf\x52\x8a\x36\x50\xab\x03\x25\xd1\x8c\x82\x82\xee\xb9\x4e\xb6\xc6\x3c\xd1\x98\x62\xb9\x2d\x4b\xdf\x3b\x8e\x52\x11\xa5\xa7\x53\xcc\xc1\xf8\x5c\x60\x8d\xe5\xf2\xc6\x9b\xf0\x50\xe0\x5e\x61\xf1\xbd\xef\x18\x6d\xf0\xaf\xd6\x10\xf4\xbb\x10\x7a\x52\x06\x3d\xe0\x55\x37\x3d\x81\x6b\xcd\xb0\x1d\xd6\x19\x3e\x64\xf0\x01\xf7\x8b\x08\xbe\x1a\x6b\x62\x5e\x57\x1f\x0a\x6c\xe6\xb8\xa8\xf9\x2f\x69\x47\x3c\x10\x39\xac\xa1\x9d\xc1\xe6\x84\x3b\xe7\x15\x1d\xd7\x79\x9e\xaf\x72\x85\xc5\xcf\x9a\xb0\xa7\xf1\x6f\x94\x38\x44\xca\x8e\xa6\xee\xfc\xd4\x1d\xd5\xd1\xe0\x28\x85\x68\x88\xd1\xf6\xbb\xc6\x96\x4f\x34\xa2\xc0\x8f\x7f\xf7\x24\x12\xa6\x3f\x2a\xba\xae\x0c\x95\xde\xd0\x23\xbd\x25\x69\x76\x3b\x68\x85\xe7\x59\x2d\x09\x7a\xf8\x15\x87\x51\x37\xe2\x4f\xef\xa4\x10\xa9\x94\x67\x33\x0a\xab\x3d\x8d\xdd\x4a\x1b\x93\x5c\xb0\xa7\xeb\x6c\x73\x1e\x2f\x3f\x2f\x40\x57\xb2\xf4\xee\x7d\xb7\xce\x67\x2a\xc5\x51\x1e\xff\x04\x00\x00\xff\xff\xa2\xf6\xe5\xb7\xc9\x02\x00\x00" - -func accountsAdd_keyCdcBytes() ([]byte, error) { - return bindataRead( - _accountsAdd_keyCdc, - "accounts/add_key.cdc", - ) -} - -func accountsAdd_keyCdc() (*asset, error) { - bytes, err := accountsAdd_keyCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "accounts/add_key.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0x9d, 0x12, 0x10, 0xf2, 0xbf, 0x12, 0x9b, 0x86, 0x80, 0x3b, 0x15, 0x3e, 0x13, 0x74, 0x20, 0xc9, 0x11, 0x7e, 0x8a, 0x24, 0x9, 0xa1, 0xe2, 0xef, 0x6f, 0x91, 0x6a, 0x4e, 0x8d, 0x61, 0x1f}} - return a, nil -} - -var _accountsCreate_new_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\x61\x8b\x9b\x40\x10\xfd\xac\xbf\xe2\x5d\x3e\x04\x05\x09\xa6\x57\x42\x59\xce\xc2\xb5\x50\xae\x94\x42\x21\xbd\x7e\x9f\xe8\xa0\x4b\x92\x5d\x59\xc7\xf3\xa4\xe4\xbf\x97\xd5\x9c\x97\x60\xe8\xa7\x5d\xc7\x37\xf3\xde\xbe\x79\xfa\x58\x5b\x27\xf8\xea\xfa\x5a\x6c\x18\x8a\x23\xd3\x50\x2e\xda\x9a\x68\xcf\xbd\xc2\x56\x9c\x36\x65\x82\x46\x97\x86\xa4\x75\xfc\x78\x28\xad\xd3\x52\x1d\x15\x9e\xbf\x1b\xf9\x94\xa0\xa2\xa6\x9a\x57\x3b\xd6\x65\x25\x0a\xcf\xdf\xf4\xeb\xe6\x63\x8c\xbf\x61\x50\x3b\xae\xc9\x71\xe4\x67\xb1\x53\xa0\x56\xaa\xe8\x8b\x75\xce\x76\x7f\xe8\xd0\x72\x82\xad\x58\x47\x25\xc7\x58\x3e\xe6\xb9\x6d\x8d\x0c\x7d\xbe\x71\x38\x83\xb9\x0a\x7c\xce\xb0\xc6\x72\x79\x43\x20\x1e\x32\xdc\x2b\x2c\x7e\xb6\x8d\xa0\x76\xf6\x45\x17\x0c\x7a\x07\x82\x26\xa4\xa3\x0e\x2f\x5e\x02\xa4\x22\x81\x6e\xb0\x4e\xf0\x21\x81\x75\xb8\x5f\x78\xe2\xab\x37\x4e\x9c\xd7\xd5\x87\x0c\x9b\x39\x9d\xc7\xfc\x97\x69\xc7\xd2\x31\x1b\xac\x41\xa6\xc0\x66\xa0\x1b\xcd\xf3\x13\xd7\x69\x9a\xae\x52\x85\xc5\xef\x8a\xb1\xe7\xfe\xec\x2b\x8e\x9e\x65\xc7\x53\x77\x3a\x74\x7b\xb4\x1f\x70\x0a\xc3\x20\x38\xb0\xa0\x6e\x77\x07\x9d\xff\xe0\x1e\x19\x7e\xbd\xdd\x23\x4f\x31\xfd\x51\x7e\xec\xaa\xe0\xdc\x16\xfc\xc4\xaf\x51\x9c\xdc\x76\x5a\x61\x3b\xab\x45\x8e\xc6\xd5\xa9\x1b\xfe\xc7\x77\x61\x10\xc4\x6f\x4a\x68\x5c\x28\x32\x9c\x57\x1b\xd5\xd4\xfb\x14\x8c\x69\x18\x70\x67\xcc\x6a\xcf\x7d\xb3\xa2\xa2\x88\x2e\x44\x4e\xd7\x59\xe0\x9e\x2e\x3f\x2f\x14\x5d\xc1\xe2\xbb\xf7\x48\x8e\x67\x1c\x06\xa7\xf0\xf4\x2f\x00\x00\xff\xff\xc9\x2b\x3a\x56\x00\x03\x00\x00" - -func accountsCreate_new_accountCdcBytes() ([]byte, error) { - return bindataRead( - _accountsCreate_new_accountCdc, - "accounts/create_new_account.cdc", - ) -} - -func accountsCreate_new_accountCdc() (*asset, error) { - bytes, err := accountsCreate_new_accountCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "accounts/create_new_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc4, 0xa7, 0xef, 0xd8, 0x70, 0x83, 0x96, 0xe8, 0xc7, 0xa3, 0x61, 0x1f, 0x72, 0xa9, 0xf8, 0x9f, 0x67, 0x5b, 0xf6, 0xd5, 0xc9, 0x33, 0x6d, 0xd3, 0x89, 0xe5, 0x83, 0x9c, 0xba, 0x78, 0x44, 0x3c}} - return a, nil -} - -var _accountsRevoke_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4e\xc4\x30\x10\x45\x6b\xfb\x14\xa3\x2d\xc0\xdb\xec\x01\x56\xa2\xa0\x5c\x21\x51\x70\x03\xcb\x7c\x92\x91\x57\xe3\xc8\x9e\x84\x18\x94\xbb\xa3\xd8\x20\xa5\xa0\xb3\xe4\xf7\xde\x7c\xcd\x5e\x8a\x0f\xca\x49\x5c\x44\xbd\xc9\x3b\xd6\x2b\xdd\x44\xcf\xf4\x6d\xcd\x94\x31\xf9\x0c\x57\x78\x10\xe4\x2b\xf9\x59\x47\xf7\x86\x25\x45\xbc\xa0\x9e\xe9\xe1\x39\x84\x34\xff\xc2\x86\x3f\xe8\x0e\xa5\x88\x4a\x4f\xd4\x95\x4b\x44\x2d\x97\x01\x7a\x88\xff\xbd\xba\x64\x8e\x60\x6e\xe9\xff\x58\x6b\xcc\x46\xb8\x17\x74\x69\xf2\xc2\xc1\x9d\x5e\x53\xbb\xf6\xc9\x3a\x92\x8e\xa0\x81\x17\x08\xf1\x6e\x10\x56\x2e\x5a\x28\x49\xfb\xd9\x97\xa7\xcc\x5f\xc8\x8f\x85\x7c\x5f\x7d\x6a\x55\x6b\x36\xbb\xfd\x04\x00\x00\xff\xff\x57\x3a\xd3\x8c\x07\x01\x00\x00" - -func accountsRevoke_keyCdcBytes() ([]byte, error) { - return bindataRead( - _accountsRevoke_keyCdc, - "accounts/revoke_key.cdc", - ) -} - -func accountsRevoke_keyCdc() (*asset, error) { - bytes, err := accountsRevoke_keyCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "accounts/revoke_key.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0x7a, 0xb7, 0x28, 0x37, 0xfd, 0xce, 0x77, 0xa9, 0x10, 0xf6, 0xfc, 0xc, 0x62, 0x2c, 0x6c, 0x4d, 0x5b, 0x17, 0xf6, 0xfb, 0xf7, 0x29, 0x5f, 0x34, 0x5d, 0x50, 0xd3, 0x50, 0x8d, 0xd5, 0x15}} - return a, nil -} - -var _dkgAdminForce_stop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xbf\x6a\xc3\x30\x10\xc6\x77\x3f\xc5\x87\x87\xa0\x2c\x7a\x00\xd3\x36\xa4\x4d\x9b\x21\x4b\xa1\xd0\x5d\x95\xcf\x8e\xa8\xac\x33\xe7\x13\x29\x84\xbc\x7b\xb1\x95\x14\x32\xf4\xb6\x3b\xee\xf7\xfd\x09\xc3\xc8\xa2\x78\x8b\x7c\xda\x1d\xf6\xe8\x84\x07\xd4\xd7\xad\xae\x2a\x15\x97\x26\xe7\x35\x70\xc2\xb9\xaa\x00\x20\x92\xa2\xfd\xee\xb7\xed\x10\x52\x83\xd5\xf5\xd7\x2e\x7b\xf9\x18\x85\x46\x27\x64\xa6\xd0\x27\x92\x06\x2e\xeb\xd1\x3c\xb3\x08\x9f\x3e\x5d\xcc\xb4\xc6\x6a\xeb\x3d\xe7\xa4\x6b\x9c\x17\x62\x9e\x89\x62\x67\x6f\xc2\x78\x44\xa1\xed\xa4\x2c\xae\x27\xfb\xb5\xf0\x0f\xf7\x7e\x4f\x66\x0e\xdc\xe0\xee\xf8\x51\x88\x77\xa7\xc7\xf5\x9f\xfa\x3c\x9b\x0d\x46\x97\x82\x37\xf5\x0b\xe7\xd8\x22\xb1\xa2\xc8\x62\xee\x5e\x8c\x85\x3a\x12\x4a\x9e\xea\x02\x5f\x4a\x27\xfa\x21\x9f\x95\xfe\xcb\x6b\x3b\x16\x4f\xaf\xa9\xdd\x1d\xf6\xe6\x06\x5e\xaa\xdf\x00\x00\x00\xff\xff\x8e\x1e\xeb\xa5\x5e\x01\x00\x00" +var _dkgAdminForce_stop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x41\x4f\x83\x40\x10\x85\xef\xfc\x8a\x97\x1e\x0c\x5c\x88\x67\xa2\x36\x44\x2a\x07\x2e\x46\x7e\xc1\xba\x0c\x74\x23\xcc\x90\x61\x48\x9b\x98\xfe\x77\x83\x6b\x35\x3d\xf8\x2e\x9b\x9d\xbc\xf7\xcd\x9b\x30\xcd\xa2\x86\x97\x51\x4e\x55\x53\xa3\x57\x99\x70\x7f\xae\x9a\xba\xac\xaa\xb7\x43\xdb\x26\x89\xa9\xe3\xc5\x79\x0b\xc2\xf8\x4c\x12\x00\x18\xc9\xd0\x7d\x0c\x65\x37\x05\x2e\x70\xf7\x13\xce\xbf\xff\xd1\x31\x2b\xcd\x4e\x29\x5d\xc2\xc0\xa4\x05\xca\xd5\x8e\xa5\xf7\xb2\xb2\x65\x57\xca\xa6\x85\xc6\x3e\xbf\xa2\xf0\x88\xe8\xcf\xdf\x45\x55\x4e\x0f\xb7\xe4\xa7\x74\x6b\x57\xe0\x66\xd8\x9a\xa8\x1b\xe8\xd5\xd9\x31\xfb\xa5\x6e\xda\xef\x31\x3b\x0e\x3e\xdd\x3d\xcb\x3a\x76\x60\x31\x44\x2c\xb6\x43\xe3\x42\xa5\x9e\x94\xd8\xd3\x2e\x8b\x9d\x2e\xf1\xa1\x33\xf9\xd5\xe8\xdf\xa6\x79\x2f\xea\xe9\xc0\x5d\xd5\xd4\xe9\x5f\xf4\xf2\x15\x00\x00\xff\xff\x6b\xe4\xb6\xb3\x4e\x01\x00\x00" func dkgAdminForce_stop_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -799,11 +740,11 @@ func dkgAdminForce_stop_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/force_stop_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd, 0x7, 0x7c, 0x9c, 0xa1, 0xca, 0xf3, 0xe6, 0x91, 0x69, 0x51, 0x5d, 0xe5, 0x2c, 0xbc, 0x86, 0x32, 0xf5, 0xb5, 0x87, 0xed, 0x11, 0x8e, 0x29, 0xe6, 0x7c, 0x43, 0xc6, 0x29, 0x64, 0x8b, 0x6d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0x53, 0xf9, 0x8d, 0x95, 0x45, 0x15, 0x8e, 0x63, 0x8, 0xf2, 0x6b, 0x8e, 0xd9, 0x78, 0xd1, 0xb5, 0x25, 0x89, 0x30, 0xf7, 0x90, 0x6d, 0xe2, 0x60, 0xed, 0x4d, 0xb9, 0x5d, 0xdc, 0xd, 0x6c}} return a, nil } -var _dkgAdminPublish_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x9e\x3d\x94\x04\x24\xb9\x17\x15\x4a\x45\x0f\x5e\x04\xfd\x03\xd3\xed\x36\x19\xdc\xec\x2e\x33\x13\x44\x4a\xff\xbb\x34\xa9\x12\xc1\xbd\xbd\xe5\x7d\xdf\x1b\x1e\x4a\x16\xc3\x53\xcc\x9f\x8f\x2f\xcf\x38\x4a\x1e\xb0\xba\xa6\x95\x73\x6d\x8b\xf7\x9e\x15\x26\x94\x94\xbc\x71\x4e\x60\x45\x4e\xf1\x0b\xc7\x2c\xb0\xa0\xc6\xa9\xbb\x71\x6e\xd9\x38\x39\x07\x00\x45\x42\x21\x09\x95\x72\x97\x82\x6c\x40\xa3\xf5\xd5\x8e\x0a\xed\x39\xb2\x71\xd0\x1a\xeb\xad\xf7\x79\x4c\x56\xe3\x34\x21\x97\x17\x83\x81\x0e\x03\xa7\x1d\x15\xdc\x63\xa6\x1b\xbf\xe0\x1a\xb5\x2c\xd4\x85\x86\x55\xc7\x70\xb7\xbe\xde\xdb\x6c\x2f\xd4\x43\xf5\x27\xbe\xcd\xd5\x57\xb2\xbe\xfe\x9d\xf8\xcf\x59\xc6\x7d\x64\xed\xab\x9f\xe9\x5b\x90\x6d\xd0\x4e\xdf\xbe\x3d\x7c\x74\x93\x6e\x76\x9c\xdd\xd9\x7d\x07\x00\x00\xff\xff\x7d\x13\x3d\x16\x3a\x01\x00\x00" +var _dkgAdminPublish_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x41\x4b\xc3\x40\x10\x05\xe0\xfb\xfc\x8a\xe7\x45\x5a\x90\xc6\x73\x11\x21\x10\xed\xa1\x17\x31\xfe\x81\x35\xdd\x6e\x86\x6e\x66\x96\xd9\x09\x2a\xd2\xff\x2e\x1a\x05\x3b\xc7\x79\x1f\x8f\xc7\x53\x51\x73\x3c\x66\x7d\xeb\xf6\x3b\x1c\x4d\x27\xdc\xbe\x77\xfb\x5d\xdb\x75\xcf\x0f\x7d\x4f\xd4\x34\x78\x19\xb9\xc2\x2d\x48\x0d\x83\xb3\x0a\xb8\x42\x25\x7f\xe0\xa8\x06\x8f\xd5\x59\xd2\x15\xd1\x7f\xf1\x49\x04\x00\xc5\x62\x09\x16\x57\x95\x93\x44\xdb\xa2\x9d\x7d\x6c\x87\x41\x67\xf1\xf5\x9f\xf9\xbe\x25\xdf\x64\x96\xd3\xdd\xf5\xef\x98\x4d\x7b\x98\x58\xee\x57\x4d\x99\x5f\x33\x0f\xcd\xe1\x94\x7e\x3e\x37\xf0\x60\x29\xfa\x16\x17\xb0\x77\xb5\x90\xe2\x53\xf0\x71\xbd\x14\x9f\x89\xce\x5f\x01\x00\x00\xff\xff\xd0\x9c\x76\xb8\xe0\x00\x00\x00" func dkgAdminPublish_participantCdcBytes() ([]byte, error) { return bindataRead( @@ -819,11 +760,11 @@ func dkgAdminPublish_participantCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/publish_participant.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x80, 0x1f, 0x80, 0x25, 0x1a, 0x97, 0xdc, 0x4d, 0x5, 0x1a, 0xfe, 0x33, 0x88, 0x86, 0x54, 0x16, 0xe2, 0xc9, 0x2b, 0x7e, 0xaa, 0x72, 0xdf, 0x55, 0x8f, 0x4a, 0x51, 0xd6, 0xe7, 0x59, 0x4e, 0xe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xec, 0x55, 0xff, 0x37, 0xec, 0x8, 0x49, 0xe7, 0xe0, 0xd, 0xea, 0xad, 0x75, 0x78, 0xe, 0x7e, 0x3e, 0xc5, 0xc4, 0x78, 0x6f, 0xda, 0x66, 0x26, 0x76, 0x96, 0xa0, 0x81, 0xc, 0xc3, 0xe3, 0x1c}} return a, nil } -var _dkgAdminSet_safe_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x31\x6b\xc3\x30\x10\x85\x77\xff\x8a\xc3\x43\x70\x16\x4f\xa5\x83\x69\x1b\xd2\x96\x74\xe8\x12\x70\xdb\x5d\x95\x9f\x6d\x51\x59\x32\xa7\x13\x0e\x94\xfc\xf7\xe2\xc8\x09\x04\x9a\xdb\xee\xd0\xfb\x9e\xde\x33\xc3\xe8\x59\x68\x67\xfd\xf4\xfa\xfe\x46\x2d\xfb\x81\xf2\x65\xcb\xb3\x4c\x58\xb9\xa0\xb4\x18\xef\x0a\x87\xe9\xa3\x67\x84\xde\xdb\x66\x0f\xd6\x70\xa2\x3a\x54\xf4\xb9\x33\x87\xfb\xbb\xcd\x9a\x7e\xb3\x8c\x88\xc8\x42\xa8\xf9\xe9\xb6\xcd\x60\x5c\x45\xab\x05\x56\x9e\xf6\xf4\x62\x64\x8c\x8a\x51\x04\xd3\x39\x70\x45\x2a\x4a\x5f\x3c\x7b\x66\x3f\x7d\x29\x1b\xb1\xa6\xd5\x56\x6b\x1f\x9d\xcc\x50\x5a\x26\xc0\xb6\xe5\x19\x4c\x8f\x94\xd4\x65\x10\xcf\xaa\x43\xf9\x7d\xd2\x3f\x5c\xfb\x3d\x15\x73\xa2\x8a\xae\x8e\x75\x52\xec\x95\xf4\xeb\x0b\x7d\x9e\xcd\x86\x46\xe5\x8c\x2e\xf2\x17\x1f\x6d\x43\xce\x0b\x25\x2c\xcd\xe5\x24\x63\x46\x0b\x86\xd3\xc8\x93\xf8\x98\x32\xe1\x00\x1d\x05\xb7\xfe\x5b\x06\x48\xad\x5a\xd4\x51\x6b\x84\x70\x29\xf2\x66\xab\xff\xdf\xcf\x96\xc7\xec\x2f\x00\x00\xff\xff\x3c\x47\xb5\xfd\xb9\x01\x00\x00" +var _dkgAdminSet_safe_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xc1\x6a\xb4\x40\x10\x84\xef\x3e\x45\xb3\x87\x1f\xbd\xc8\x7f\x08\x39\x48\x12\x91\x98\xdd\xc3\x5e\x96\x98\x3c\xc0\x64\x2c\x75\x88\xce\x48\x4f\x8b\x42\xd8\x77\x0f\x66\x12\xc3\x42\xb6\x2f\xc3\x14\xc5\x57\x45\x99\x61\x74\x2c\xb4\xef\xdd\x5c\x1e\x0f\xd4\xb0\x1b\xe8\xff\x52\x1e\x0f\x45\x59\x3e\x3f\x55\x55\x14\x09\x2b\xeb\x95\x16\xe3\x6c\x6c\x31\xbf\x74\x0c\xdf\xb9\xbe\x3e\x81\x35\xac\xa8\x16\x19\xbd\xee\xcd\x72\x7b\x93\x27\xf4\x11\x45\x44\x44\x3d\x84\xea\xf7\xb6\xa8\x07\x63\x33\xfa\xf7\x4d\x4f\xbf\xfe\xc1\x31\x32\x46\xc5\x88\xbd\x69\x2d\x38\xa3\x62\x92\xae\xd0\xda\x4d\x56\x36\xca\x7a\x1e\x7d\x93\xfe\xa0\xe8\x9e\x82\x3f\x7d\x73\xcc\x6e\xbe\xbb\x24\x3f\xc4\x6b\xfd\x8c\x2e\xc4\x4a\x1c\xab\x16\x27\x25\x5d\xb2\x51\xd7\xcb\x73\x1a\x95\x35\x3a\xde\x3d\xba\xa9\xaf\xc9\x3a\xa1\x80\xa5\x75\x89\x10\xc8\x68\xc0\xb0\x1a\xbb\x24\x74\x3a\x87\x07\x0b\xf4\x24\xb8\xda\x34\xf5\x90\x4a\x35\xa8\x26\xad\xe1\xfd\x36\xda\xd5\x05\xff\xd6\x7f\x43\xcf\x9f\x01\x00\x00\xff\xff\x08\xd4\x0e\xba\xa9\x01\x00\x00" func dkgAdminSet_safe_thresholdCdcBytes() ([]byte, error) { return bindataRead( @@ -839,11 +780,11 @@ func dkgAdminSet_safe_thresholdCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/set_safe_threshold.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0x67, 0xe6, 0xde, 0x86, 0xdf, 0xcb, 0xd9, 0x80, 0x6d, 0xf1, 0xfc, 0x5, 0xef, 0x4e, 0x31, 0xed, 0x61, 0xe0, 0x8e, 0xfa, 0xbd, 0x3f, 0xae, 0x92, 0x1e, 0x10, 0x99, 0xb1, 0x3d, 0x43, 0xa6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2a, 0xee, 0x21, 0xa5, 0x42, 0x7, 0x30, 0x80, 0x1b, 0x7f, 0x7f, 0x43, 0xfd, 0x0, 0x77, 0xfc, 0x63, 0xc5, 0x5d, 0x9c, 0x14, 0xe5, 0xe8, 0x5b, 0x96, 0x59, 0xd7, 0x95, 0xcc, 0x7a, 0x44, 0x85}} return a, nil } -var _dkgAdminStart_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xb1\x6a\xc3\x30\x10\x86\x77\x3f\xc5\x8f\x87\x60\x2f\x7e\x00\xd3\x36\xa4\x35\x0d\x25\x4b\x21\xd0\xa5\x74\x50\xe5\xb3\x23\x6a\xeb\xcc\xe9\x44\x0a\x25\xef\x5e\x1c\x39\x2d\x19\x72\x93\x4e\xe8\xfb\x4e\xf7\xbb\x71\x62\x51\x3c\x0f\x7c\x6c\x76\x5b\x74\xc2\x23\xf2\xa5\xcb\xb3\x4c\xc5\xf8\x60\xac\x3a\xf6\x85\xe7\x96\x5e\x9a\x50\xe3\x7d\xaf\xe2\x7c\xff\x51\xe2\x27\xcb\x00\x60\x20\x45\xfb\xd5\x6f\xda\xd1\xf9\x1a\xab\x05\xaf\xce\x7d\x7a\x31\x09\x4d\x46\xa8\x08\xae\xf7\x24\x35\x4c\xd4\x43\xf1\xc8\x22\x7c\x7c\x33\x43\xa4\x12\xab\x8d\xb5\x1c\xbd\xce\x52\x2c\x15\x68\xe8\xaa\x8b\x18\xf7\x48\x74\x15\x94\xc5\xf4\x54\x7d\x9e\xf9\xbb\xeb\x79\x0f\xc5\xbc\x43\x8d\xab\xcb\x7d\x22\x5e\x8d\x1e\xca\x3f\xfb\x5c\xeb\x35\x26\xe3\x9d\x2d\xf2\x27\x8e\x43\x0b\xcf\x8a\xa4\xc5\x1c\x47\x1a\x2c\xd4\x91\x90\xb7\x94\x27\xf8\x94\x76\xa2\x6f\xb2\x51\xe9\xd6\x7f\xab\xa0\x46\xb4\xd9\x6d\xff\x83\x5b\x0e\x17\xcb\x29\xfb\x0d\x00\x00\xff\xff\x5b\x70\x21\x9a\x7e\x01\x00\x00" +var _dkgAdminStart_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x8f\x1e\x24\xb9\x04\xcf\x41\x2d\xc1\xd5\x20\xb9\x88\x39\x8a\x87\x75\x33\x49\x17\x93\x9d\x30\x99\xd0\x82\xf4\xbf\x4b\xdc\xda\xd2\x83\xef\xb2\x3b\xc3\xe3\x9b\x37\xe3\xc7\x89\x45\xf1\x3c\xf0\xde\xd4\x15\x3a\xe1\x11\xb7\x07\x53\x57\xa5\x31\x6f\x4f\x4d\x93\x24\x2a\x36\xcc\xd6\xa9\xe7\x90\x06\x6e\xe9\xc5\xcc\x05\xde\x1b\x15\x1f\xfa\x8f\x0c\xdf\x49\x02\x00\x03\x29\xda\xaf\xbe\x6c\x47\x1f\x0a\xdc\x9c\x78\xf9\x6f\x1d\x1d\x93\xd0\x64\x85\xd2\xd9\xf7\x81\xa4\x40\xb9\xe8\xae\x74\x8e\x97\xa0\x67\xca\xaa\x99\x86\x2e\xff\x43\xe1\x1e\xd1\x9f\x7f\xb2\x08\xef\xef\xae\xc9\x0f\xe9\x1a\xb8\xc0\x55\xb3\x51\x16\xdb\xd3\xab\xd5\x5d\x76\xa6\xae\xda\x6e\x31\xd9\xe0\x5d\xba\x79\xe4\x65\x68\x11\x58\x11\xb1\x58\x77\x8f\x03\x85\x3a\x12\x0a\x8e\x36\x59\xcc\x74\x8c\x0f\x1d\xc8\x2d\x4a\xff\x26\xcd\x67\xb5\xa2\xa6\xae\x2e\x47\x3a\x7d\x2e\x9c\xe3\x4f\x00\x00\x00\xff\xff\x07\x1f\xfa\x84\x6e\x01\x00\x00" func dkgAdminStart_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -859,11 +800,11 @@ func dkgAdminStart_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/start_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0xad, 0x9e, 0x9d, 0xaa, 0x32, 0xd9, 0x6a, 0x40, 0x16, 0x36, 0x35, 0x82, 0x11, 0xeb, 0x74, 0x9f, 0xfc, 0x95, 0xaa, 0xa7, 0x64, 0x9c, 0xf0, 0xc5, 0x3c, 0x4a, 0xd9, 0xb, 0x1e, 0x18, 0xb7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0x9c, 0x4f, 0xf1, 0xca, 0x18, 0x35, 0xe8, 0xbf, 0xb3, 0x93, 0x79, 0x1b, 0x85, 0xe7, 0xc5, 0x4b, 0x22, 0x3, 0xa, 0x8a, 0x91, 0x42, 0xf4, 0x2e, 0x24, 0x32, 0x55, 0xba, 0xc8, 0x15, 0x5c}} return a, nil } -var _dkgAdminStop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xcd\x6a\xeb\x30\x10\x85\xf7\x7e\x8a\x83\x17\x41\xde\xe8\x01\xcc\xbd\x0d\x69\x43\xb3\xc8\xa6\x50\xe8\x5e\x95\xc7\x8e\xa8\xac\x31\xe3\x11\x29\x84\xbc\x7b\xb1\x95\x14\xb2\xe8\xec\x66\x98\xef\xfc\x84\x71\x62\x51\xbc\x46\x3e\xef\x8f\x07\xf4\xc2\x23\xea\xdb\x56\x57\x95\x8a\x4b\xb3\xf3\x1a\x38\xe1\x52\x55\x00\x10\x49\xd1\x7d\x0d\xbb\x6e\x0c\xa9\xc5\xe6\xf6\x6b\xd7\xbd\x7c\x4c\x42\x93\x13\x32\x73\x18\x12\x49\x0b\x97\xf5\x64\x9e\x59\x84\xcf\x1f\x2e\x66\x6a\xb0\xd9\x79\xcf\x39\x69\x83\xcb\x4a\x2c\x33\x53\xec\xed\x5d\x18\xff\x51\x68\x3b\x2b\x8b\x1b\xc8\x7e\xae\xfc\xbf\x47\xbf\x27\xb3\x04\x6e\xf1\x70\x7c\x2f\xc4\x9b\xd3\x53\xf3\xab\xbe\xcc\x76\x8b\xc9\xa5\xe0\x4d\xfd\xc2\x39\x76\x48\xac\x28\xb2\x58\xba\x17\x63\xa1\x9e\x84\x92\xa7\xba\xc0\xd7\xd2\x89\xbe\xc9\x67\xa5\xbf\xf2\x5a\x4a\xdd\xfe\x78\x30\x77\xe6\x5a\xfd\x04\x00\x00\xff\xff\x87\x3a\x5a\x8e\x59\x01\x00\x00" +var _dkgAdminStop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x41\x4f\x83\x40\x10\x85\xef\xfc\x8a\x97\x1e\x0c\x5c\x88\x67\xa2\x36\x44\x94\x03\x17\x23\xbf\x60\x5d\x06\xba\x11\x66\xc8\x30\xa4\x4d\x4c\xff\xbb\xc1\xb5\x9a\x1e\xfa\x2e\x9b\x9d\xbc\xf7\xcd\x9b\x30\xcd\xa2\x86\xd7\x51\x8e\x55\x53\xa3\x57\x99\x70\x7f\xaa\x9a\xba\xac\xaa\xf7\x97\xb6\x4d\x12\x53\xc7\x8b\xf3\x16\x84\xf1\x95\x24\x00\x30\x92\xa1\xfb\x1c\xca\x6e\x0a\x5c\xe0\xee\x37\x9c\xff\xfc\xa3\x63\x56\x9a\x9d\x52\xba\x84\x81\x49\x0b\x94\xab\x1d\x4a\xef\x65\x65\xcb\x2e\x94\x4d\x0b\x8d\x7d\x7e\x41\xe1\x11\xd1\x9f\x7f\x88\xaa\x1c\x1f\xae\xc9\x4f\xe9\xd6\xae\xc0\xd5\xb0\x35\x51\x37\xd0\x9b\xb3\x43\xf6\x47\xdd\xb4\xdf\x63\x76\x1c\x7c\xba\x7b\x96\x75\xec\xc0\x62\x88\x58\x6c\x87\xc6\x85\x4a\x3d\x29\xb1\xa7\x5d\x16\x3b\x9d\xe3\x43\x27\xf2\xab\xd1\xcd\xa6\x39\x71\x57\x35\x75\xfa\x9f\x3a\x7f\x07\x00\x00\xff\xff\x74\x8c\xee\x80\x49\x01\x00\x00" func dkgAdminStop_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -879,11 +820,11 @@ func dkgAdminStop_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/stop_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xda, 0x6d, 0xdc, 0x10, 0x3a, 0xa6, 0xb1, 0xad, 0x8f, 0x3, 0x9, 0x74, 0xf9, 0xc6, 0x3e, 0x5a, 0x8e, 0x69, 0xcf, 0x6e, 0x2a, 0xe, 0xed, 0x75, 0x9c, 0xf3, 0x4d, 0x37, 0x62, 0x8f, 0x9e, 0x5f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0xe4, 0x2, 0xa5, 0xa0, 0x9b, 0xd5, 0xc3, 0xdb, 0x5d, 0x5a, 0xfa, 0xe6, 0x41, 0x85, 0x32, 0x8e, 0xae, 0x4e, 0xd8, 0x6f, 0x1a, 0x37, 0x77, 0x7, 0xb2, 0xce, 0x6, 0x29, 0x48, 0x43, 0x84}} return a, nil } -var _dkgCreate_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\x4f\x8b\x32\x31\x0c\xc6\xef\xfd\x14\x61\x0e\xd2\x01\xad\xf7\xc1\xf7\x15\x59\xd9\x65\xd9\x8b\x20\xec\x3d\xb6\x71\x2c\xd6\xb6\xa4\x19\x3d\x2c\x7e\xf7\x45\x3b\x2e\x9a\x4b\xff\xa4\xcf\x2f\xe9\x13\x7f\xca\x89\x05\xde\x43\xba\xac\xbf\x3e\x60\xcf\xe9\x04\xcd\x78\x6a\x94\x12\xc6\x58\xd0\x8a\x4f\x51\xa3\x73\x4c\xa5\x74\xb0\xaa\x9b\x29\xc4\xe4\xe8\x73\xdd\xc1\x56\xd8\xc7\xbe\x85\x1f\xa5\x00\x00\x32\x53\x46\x26\x5d\x7c\x1f\x89\x3b\xc0\x41\x0e\x7a\x8b\x67\xfa\xc6\x30\x50\x0b\x93\x95\xb5\x69\x88\x72\x13\xc0\x18\x81\x04\xd0\x9d\x7c\x84\x7f\xd0\x93\x8c\x2f\x1e\x35\x5b\x63\x31\xe3\xce\x07\x2f\x9e\x8a\xd9\x25\xe6\x74\x59\x4c\xc6\x3e\xcd\xea\x26\xfc\xaf\xe7\x79\xd8\x05\x6f\xe7\xee\xd8\xdf\x6f\xda\x3f\xfa\x3d\x96\x4b\xc8\x18\xbd\xd5\xcd\x5b\x1a\x82\x83\x98\x04\x2a\x69\xac\xcc\xb4\x27\xa6\x68\xa9\x69\xd5\x4b\x63\xee\xd8\x6f\x90\xc5\x5b\x9f\x31\x0a\x2c\x66\x55\x60\x2c\x13\x0a\x3d\xa5\xf4\xc3\x91\xba\x3e\x61\xaa\x17\xa6\x48\x62\xec\xc9\x14\x3c\x93\x5e\xcc\x5e\xc1\x53\x90\xd4\x3d\x46\x61\x9e\x12\xdb\xaa\xda\xa0\x1c\xea\x9f\xae\x4a\x5d\x7f\x03\x00\x00\xff\xff\x98\xcb\x3b\x89\xba\x01\x00\x00" +var _dkgCreate_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x50\x4d\x6e\xf2\x30\x10\xdd\xfb\x14\x23\x16\x9f\x1c\x09\xc2\xb7\x8e\x68\x51\x44\x5a\x54\xb1\x41\xcd\x09\x06\x7b\x30\x16\xc1\xb6\x26\x93\xd2\xaa\xe2\xee\x15\x75\xa8\x60\x36\xb6\xfc\xe6\xfd\xf8\xf9\x53\x8a\x2c\xf0\xda\xc5\x73\xb3\x59\xc3\x9e\xe3\x09\xfe\x7f\x36\x9b\x75\xdd\x34\xef\x2f\x6d\xab\x94\x30\x86\x1e\x8d\xf8\x18\x34\x5a\xcb\xd4\xf7\x15\xd4\xf9\x32\x85\x10\x2d\xbd\x35\x15\xb4\xc2\x3e\xb8\x02\xbe\x95\x02\x00\x48\x4c\x09\x99\x74\xef\x5d\x20\xae\xa0\x1e\xe4\x50\x1b\x13\x87\x20\xd7\x1d\x18\xa7\x23\x01\xb4\x27\x1f\xe0\x09\x1c\xc9\xb8\x71\xb3\x29\x4a\x47\xb2\xc2\x84\x3b\xdf\x79\xf9\x5a\xfc\x1b\x53\x96\xf5\x95\xf2\xac\xe7\x69\xd8\x75\xde\xcc\xed\xd1\xfd\xbe\x14\x7f\xba\xd7\x29\x77\x91\x39\x9e\x75\x01\xcb\x25\x24\x0c\xde\xe8\xc9\x2a\x0e\x9d\x85\x10\x05\x32\x38\x9a\x33\xed\x89\x29\x18\x9a\x14\xea\x21\x9b\x3d\xba\x2d\xb2\x78\xe3\x13\x06\x81\xc5\x2c\x13\x4a\xc3\x84\x42\x77\x90\xbe\xf5\x90\xcf\x3b\x99\xdc\x40\xd9\xe3\x07\xe9\xc5\xec\x51\x70\x0a\x12\xab\x5b\xf7\xe5\x1d\xd0\x4a\x64\x74\xb4\x45\x39\xe4\x4f\x5d\x94\xba\xfc\x04\x00\x00\xff\xff\xb5\xd4\x8a\x93\xab\x01\x00\x00" func dkgCreate_participantCdcBytes() ([]byte, error) { return bindataRead( @@ -899,11 +840,11 @@ func dkgCreate_participantCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/create_participant.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc8, 0xd2, 0xd0, 0x2c, 0xe0, 0x71, 0x8f, 0x21, 0x72, 0xbf, 0x1e, 0x92, 0xa8, 0x50, 0xdd, 0x8b, 0x75, 0xf3, 0x9, 0xba, 0x2d, 0x99, 0x6, 0xd7, 0x5c, 0x10, 0x6f, 0x42, 0xe8, 0xd7, 0x40, 0x67}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9a, 0xdf, 0xc8, 0x88, 0x15, 0x2e, 0xc9, 0xee, 0xa3, 0xd2, 0xcc, 0x4b, 0xb5, 0xf2, 0x5, 0x2d, 0x92, 0x4f, 0x6e, 0xbd, 0x4b, 0x7c, 0x84, 0x40, 0x4a, 0x9b, 0x5e, 0x9f, 0x15, 0x5, 0x74, 0xb2}} return a, nil } -var _dkgScriptsGet_consensus_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\xa2\x83\x4b\x8a\x32\xf3\xd2\x63\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xa6\xe8\xa5\xa7\x96\x38\xe7\xe7\x15\xa7\xe6\x15\x97\x16\xfb\xe5\xa7\xa4\x7a\xba\x14\x6b\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x03\x4f\x6a\x43\x6c\x00\x00\x00" +var _dkgScriptsGet_consensus_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x88\x0e\x2e\x29\xca\xcc\x4b\x8f\x55\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x19\xa0\x97\x9e\x5a\xe2\x9c\x9f\x57\x9c\x9a\x57\x5c\x5a\xec\x97\x9f\x92\xea\xe9\x52\xac\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x91\x06\x0b\x94\x67\x00\x00\x00" func dkgScriptsGet_consensus_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -919,11 +860,11 @@ func dkgScriptsGet_consensus_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_consensus_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe7, 0x3d, 0x2d, 0xb4, 0x11, 0x55, 0x1c, 0x12, 0x8c, 0xef, 0x55, 0x49, 0x4, 0x87, 0x30, 0xe, 0x30, 0x30, 0x9, 0xbc, 0x2b, 0x37, 0x38, 0xda, 0x84, 0x9d, 0x4e, 0xf2, 0xc0, 0x6b, 0x83, 0xaa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x62, 0xae, 0xcb, 0x31, 0x2e, 0x3e, 0x43, 0xd9, 0xec, 0xfd, 0x3f, 0x4, 0x29, 0x3c, 0xfe, 0x36, 0x20, 0xe6, 0x83, 0x77, 0x9b, 0x70, 0x2e, 0xd, 0xb3, 0x56, 0xa7, 0xfc, 0x4a, 0x1e, 0x20, 0xa0}} return a, nil } -var _dkgScriptsGet_dkg_canonical_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\xa2\x83\x4b\x8a\x32\xf3\xd2\xed\x63\xed\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xe6\xe8\xa5\x64\xa7\x3b\xe7\xe7\x16\xe4\xa4\x96\xa4\xa6\x68\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x4a\x98\xa7\xb9\x67\x00\x00\x00" +var _dkgScriptsGet_dkg_canonical_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x88\x0e\x2e\x29\xca\xcc\x4b\xb7\x8f\xb5\x57\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x19\xa1\x97\x92\x9d\xee\x9c\x9f\x5b\x90\x93\x5a\x92\x9a\xa2\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x17\xf1\xc7\xb8\x62\x00\x00\x00" func dkgScriptsGet_dkg_canonical_final_submissionCdcBytes() ([]byte, error) { return bindataRead( @@ -939,11 +880,11 @@ func dkgScriptsGet_dkg_canonical_final_submissionCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_dkg_canonical_final_submission.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x57, 0xf2, 0x83, 0x6, 0xda, 0x92, 0xb2, 0x41, 0x12, 0x21, 0xe4, 0x90, 0x6e, 0x29, 0x13, 0xef, 0x81, 0x0, 0xf0, 0xe9, 0xfd, 0xb9, 0x93, 0x8f, 0x9d, 0xd0, 0x11, 0x19, 0xe6, 0x76, 0x9c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc9, 0x35, 0x32, 0x9f, 0x12, 0x28, 0xdf, 0x16, 0x2d, 0x78, 0x9a, 0x80, 0x36, 0xb5, 0x94, 0x18, 0x7f, 0xf, 0x47, 0x10, 0x4, 0x13, 0xdb, 0xe8, 0x78, 0xfd, 0x78, 0x31, 0xa0, 0xb8, 0xf7, 0xf3}} return a, nil } -var _dkgScriptsGet_dkg_completedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x9c\xf2\xf3\x73\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\x26\xe8\xa5\x64\xa7\x3b\xe7\xe7\x16\xe4\xa4\x96\xa4\xa6\x68\x68\x2a\x28\xda\x2a\xe4\x65\xe6\x70\xd5\x02\x02\x00\x00\xff\xff\x11\x95\xaf\x8f\x68\x00\x00\x00" +var _dkgScriptsGet_dkg_completedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x70\xca\xcf\xcf\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x69\xd6\x4b\xc9\x4e\x77\xce\xcf\x2d\xc8\x49\x2d\x49\x4d\xd1\xd0\x54\x50\xb4\x55\xc8\xcb\xcc\xe1\xaa\x05\x04\x00\x00\xff\xff\x31\xd8\x74\x9a\x63\x00\x00\x00" func dkgScriptsGet_dkg_completedCdcBytes() ([]byte, error) { return bindataRead( @@ -959,11 +900,11 @@ func dkgScriptsGet_dkg_completedCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_dkg_completed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x3d, 0xd5, 0x9b, 0xea, 0x53, 0x7d, 0x55, 0xf4, 0xf3, 0x4b, 0x20, 0x1b, 0x34, 0x62, 0x55, 0xf8, 0x5, 0x8c, 0x9a, 0x74, 0x89, 0xae, 0x91, 0x6, 0x82, 0xe4, 0x48, 0xf6, 0x4e, 0x8d, 0xee}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0xec, 0xda, 0x75, 0xa0, 0x1a, 0x21, 0x4d, 0xc6, 0xbf, 0xec, 0xd5, 0x92, 0xde, 0x61, 0xab, 0x5b, 0x90, 0xd1, 0x2f, 0x7c, 0x24, 0x2a, 0xd9, 0x62, 0x7f, 0xda, 0xe9, 0x2c, 0x58, 0x0, 0x2a}} return a, nil } -var _dkgScriptsGet_dkg_enabledCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x9c\xf2\xf3\x73\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\x26\xe8\xa5\x64\xa7\xbb\xe6\x25\x26\xe5\xa4\xa6\x70\xd5\x02\x02\x00\x00\xff\xff\x55\x28\x2f\xf2\x5d\x00\x00\x00" +var _dkgScriptsGet_dkg_enabledCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x70\xca\xcf\xcf\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x69\xd6\x4b\xc9\x4e\x77\xcd\x4b\x4c\xca\x49\x4d\xe1\xaa\x05\x04\x00\x00\xff\xff\xd5\x88\xda\xa0\x58\x00\x00\x00" func dkgScriptsGet_dkg_enabledCdcBytes() ([]byte, error) { return bindataRead( @@ -979,11 +920,11 @@ func dkgScriptsGet_dkg_enabledCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_dkg_enabled.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x68, 0xfc, 0x94, 0x94, 0xc2, 0x47, 0xe4, 0x85, 0xd6, 0xa7, 0x3e, 0x3d, 0xda, 0x58, 0x72, 0xa9, 0x4e, 0xf0, 0xd3, 0x49, 0xc0, 0x9e, 0x16, 0x91, 0x58, 0x35, 0xa, 0xb6, 0x16, 0x38, 0x76, 0x3c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6a, 0x64, 0x67, 0xbd, 0xba, 0x33, 0xa0, 0x7b, 0x26, 0xfb, 0x77, 0xc2, 0x7e, 0xe3, 0xe3, 0xc1, 0xe7, 0xc8, 0x8c, 0xd0, 0xc, 0x46, 0xaa, 0xbd, 0xb6, 0x2, 0x13, 0x35, 0xab, 0x39, 0x70, 0xd7}} return a, nil } -var _dkgScriptsGet_final_submissionsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\xa2\xa3\x83\x4b\x8a\x32\xf3\xd2\xed\x63\x63\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\x06\xe9\xa5\xa7\x96\xb8\x65\xe6\x25\xe6\x04\x97\x26\xe5\x66\x16\x17\x67\xe6\xe7\x15\x6b\x68\x72\xd5\x02\x02\x00\x00\xff\xff\xdf\x0a\xe3\xa8\x6f\x00\x00\x00" +var _dkgScriptsGet_final_submissionsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x88\x8e\x0e\x2e\x29\xca\xcc\x4b\xb7\x8f\x8d\x55\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x99\xa1\x97\x9e\x5a\xe2\x96\x99\x97\x98\x13\x5c\x9a\x94\x9b\x59\x5c\x9c\x99\x9f\x57\xac\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x14\xc3\x7a\x4d\x6a\x00\x00\x00" func dkgScriptsGet_final_submissionsCdcBytes() ([]byte, error) { return bindataRead( @@ -999,11 +940,11 @@ func dkgScriptsGet_final_submissionsCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_final_submissions.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xee, 0xfe, 0xb9, 0x5, 0x6d, 0x2e, 0x29, 0xa0, 0x6e, 0x49, 0x94, 0x63, 0x61, 0xb4, 0xe8, 0x3, 0x6a, 0x1a, 0xa2, 0xc1, 0xd8, 0x3b, 0x19, 0x42, 0x60, 0x55, 0xeb, 0x52, 0x69, 0x6f, 0x7, 0x63}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbe, 0x89, 0x9, 0x33, 0x3b, 0xc1, 0x3b, 0x39, 0x4f, 0xb2, 0x40, 0x27, 0xdb, 0x2c, 0x5c, 0xc7, 0xc3, 0x33, 0x89, 0x27, 0x45, 0x95, 0x12, 0xea, 0x92, 0xa7, 0x71, 0x9b, 0xed, 0x4f, 0xb3, 0x22}} return a, nil } -var _dkgScriptsGet_latest_whiteboard_messagesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x4f\x4b\xc3\x40\x14\xc4\xef\xf9\x14\x43\x4f\x09\xc2\x82\xd7\x62\x2e\x22\x4a\x11\xcf\x1e\x42\x0e\x8f\xe6\x35\x79\xb0\x7f\xc2\xee\xab\x15\xa4\xdf\x5d\xba\x6e\x16\x14\x2f\x0b\x3b\x6f\x66\x7e\x23\x6e\x0d\x51\xf1\x6c\xc3\xe5\xe9\xf5\x05\xa7\x18\x1c\x76\xe5\xb7\x6b\x1a\x3a\x1e\x39\xa5\x96\xac\xed\x70\x3a\x7b\x38\x12\xdf\xde\x4c\x07\x3f\xf1\xe7\x1e\x07\xaf\xdd\x1e\x43\x09\x98\x37\x4e\x89\x66\x1e\xf1\xd5\x00\x80\x65\x85\xfb\x91\x12\xfa\x0d\x62\x66\xd6\xf7\x45\x94\x1f\x03\xc5\xa9\x44\x52\xdb\xe5\xc8\x07\x45\x58\x52\x4e\xba\x1d\xfe\xab\xef\x31\x8c\xd5\x2e\xe8\x51\x27\x65\xf5\xb2\x88\x65\x08\x1e\x2a\xdd\x58\xf6\xb3\x2e\x65\x57\xde\xf6\x0b\x62\x68\x5d\xd9\x4f\xed\xe6\x1f\x64\xec\xaa\xf5\x06\x10\xdc\xe1\x3e\x2b\xd7\xfc\x46\xd6\x73\xf4\x7f\x5a\x9a\xeb\x77\x00\x00\x00\xff\xff\xc3\xba\x75\xf6\x4f\x01\x00\x00" +var _dkgScriptsGet_latest_whiteboard_messagesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x4f\x4b\xc3\x40\x10\xc5\xef\xf9\x14\xef\x98\x20\x04\xbd\x16\x73\x50\xa2\xa5\x14\x2f\xf6\xe0\x21\xe4\xb0\x92\x69\x32\xb0\xff\xd8\x9d\xd8\x82\xf4\xbb\x4b\xd7\x64\x41\xe9\x65\x0e\x6f\xde\x9f\x1f\x1b\xef\x82\xe0\x55\xbb\x53\xbb\xdf\xe2\x18\x9c\xc1\xfd\xb9\xdd\x6f\x9f\xda\xf6\xfd\xe5\x70\x28\x0a\x3f\x7f\xe2\x38\x5b\x18\xc5\xb6\xbc\xfe\x77\x76\xa0\xf3\x06\x3b\x2b\xd5\x06\xdd\x92\xac\xdf\x28\x46\x35\x52\x8f\xef\x02\x00\x34\x09\xcc\xaf\x14\xd1\xac\xfd\xf5\x48\xf2\x31\xb1\xd0\xb3\x53\x61\x58\x22\xb1\xac\x52\xe4\x4b\x05\x68\x25\x14\x65\x7d\xdc\xaa\x6f\xd0\xf5\xd9\xce\x68\x90\x91\x92\x7a\x9a\x58\x13\x18\x8f\x79\xbd\xd6\x64\x47\x99\x16\xae\xc4\xf6\x67\xa4\x56\xde\x93\x1d\xca\xd5\xdf\x71\x5f\x65\xeb\x75\x80\x71\x87\x87\xa4\x5c\xd2\x0d\x24\x73\xb0\xff\x5a\x8a\xcb\x4f\x00\x00\x00\xff\xff\x17\x59\xd4\x87\x4a\x01\x00\x00" func dkgScriptsGet_latest_whiteboard_messagesCdcBytes() ([]byte, error) { return bindataRead( @@ -1019,11 +960,11 @@ func dkgScriptsGet_latest_whiteboard_messagesCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_latest_whiteboard_messages.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x55, 0x96, 0xf2, 0x4, 0x13, 0x63, 0xa6, 0xbb, 0x97, 0x4b, 0xe2, 0x69, 0xfe, 0x46, 0xd0, 0xe0, 0xbd, 0x99, 0xf0, 0x9c, 0x62, 0xfc, 0x72, 0x85, 0x97, 0x67, 0xff, 0x8b, 0xf9, 0xc1, 0xfa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcd, 0xfd, 0xac, 0xf8, 0x77, 0x23, 0x77, 0x3c, 0xe7, 0xfc, 0x17, 0x46, 0xbb, 0x23, 0xc2, 0x7c, 0x50, 0x71, 0x82, 0xc6, 0x9a, 0xf6, 0x8f, 0xd4, 0x1b, 0xa4, 0xb0, 0x72, 0xd4, 0x4, 0x5b, 0x91}} return a, nil } -var _dkgScriptsGet_node_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\xf2\xf2\x53\x52\x3d\x5d\xac\x14\x82\x4b\x8a\x32\xf3\xd2\x35\xad\x14\xa2\x21\x2c\xfb\x58\x85\x6a\x2e\x05\x05\x05\x85\xa2\xd4\x92\xd2\xa2\x3c\x98\xa1\x7a\xe9\xa9\x25\x7e\xf9\x29\xa9\x6e\x99\x79\x89\x39\xc1\xa5\x49\xb9\x99\xc5\xc5\x99\xf9\x30\x63\x34\x15\xb9\x6a\x01\x01\x00\x00\xff\xff\x26\x0a\xc4\x4b\x85\x00\x00\x00" +var _dkgScriptsGet_node_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xc8\xcb\x4f\x49\xf5\x74\xb1\x52\x08\x2e\x29\xca\xcc\x4b\xd7\xb4\x52\x88\x86\xb0\xec\x63\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xe6\xe9\xa5\xa7\x96\xf8\xe5\xa7\xa4\xba\x65\xe6\x25\xe6\x04\x97\x26\xe5\x66\x16\x17\x67\xe6\xc3\x8c\xd1\x54\xe4\xaa\x05\x04\x00\x00\xff\xff\xff\x70\xba\x8e\x80\x00\x00\x00" func dkgScriptsGet_node_final_submissionCdcBytes() ([]byte, error) { return bindataRead( @@ -1039,11 +980,11 @@ func dkgScriptsGet_node_final_submissionCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_node_final_submission.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0x5c, 0x55, 0x20, 0xed, 0x65, 0x8c, 0x26, 0x11, 0xb8, 0x8f, 0xf3, 0x5d, 0x8f, 0x70, 0x73, 0x12, 0x8e, 0xb2, 0xf3, 0xf7, 0x40, 0x45, 0x6e, 0xf1, 0x7d, 0xb5, 0x91, 0x60, 0xae, 0x86, 0x8a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0xb1, 0x7c, 0xd0, 0x2e, 0x49, 0x35, 0xa7, 0xed, 0x4b, 0xdc, 0x7e, 0xcb, 0x6f, 0x6a, 0x43, 0xdc, 0x68, 0xba, 0x2c, 0xb8, 0xca, 0x43, 0xaf, 0xd9, 0x1a, 0xb9, 0x29, 0x1f, 0x89, 0x15, 0xd0}} return a, nil } -var _dkgScriptsGet_node_has_submittedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\xf2\xf2\x53\x52\x3d\x5d\xac\x14\x82\x4b\x8a\x32\xf3\xd2\x35\xad\x14\x9c\xf2\xf3\x73\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xe6\xe9\x81\x94\x7a\x24\x16\x07\x97\x26\xe5\x66\x96\x94\xa4\xa6\x40\xf5\x6a\x72\xd5\x02\x02\x00\x00\xff\xff\x85\x3a\x25\x9d\x79\x00\x00\x00" +var _dkgScriptsGet_node_has_submittedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xc8\xcb\x4f\x49\xf5\x74\xb1\x52\x08\x2e\x29\xca\xcc\x4b\xd7\xb4\x52\x70\xca\xcf\xcf\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x19\xa5\x07\x52\xea\x91\x58\x1c\x5c\x9a\x94\x9b\x59\x52\x92\x9a\x02\xd5\xab\xc9\x55\x0b\x08\x00\x00\xff\xff\xaa\x5c\x49\x68\x74\x00\x00\x00" func dkgScriptsGet_node_has_submittedCdcBytes() ([]byte, error) { return bindataRead( @@ -1059,11 +1000,11 @@ func dkgScriptsGet_node_has_submittedCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_node_has_submitted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x53, 0xcd, 0x46, 0x4c, 0xce, 0x40, 0xef, 0x90, 0xf4, 0xd1, 0xe6, 0x7a, 0x2d, 0x67, 0xb9, 0x57, 0xc4, 0xcd, 0xf5, 0xd, 0x39, 0xb5, 0x3d, 0xda, 0x2f, 0xc0, 0x9, 0xda, 0x68, 0x71, 0x0, 0x95}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdb, 0xc0, 0xa0, 0x6e, 0x6c, 0x52, 0x38, 0xeb, 0xc0, 0xf7, 0x84, 0x1f, 0x63, 0x61, 0x5f, 0x3, 0x16, 0xdd, 0x5e, 0x77, 0x5f, 0x9a, 0x30, 0x88, 0x8, 0x1a, 0xd2, 0x50, 0x23, 0xb4, 0xf, 0xbe}} return a, nil } -var _dkgScriptsGet_node_is_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xcc\x31\xaa\xc2\x40\x10\xc6\xf1\x7e\x4f\xf1\x25\x55\xd2\xbc\x03\x04\x5e\xa3\x41\x09\x96\x9e\x60\x48\x66\x65\x60\x76\x36\xec\x6e\xb0\x90\xdc\x5d\xd4\xa4\xb2\x71\xba\x81\xef\xf7\x97\x30\xc7\x54\x70\xd2\x78\xef\x2f\x67\xf8\x14\x03\xea\xed\xab\x9d\xa3\x71\xe4\x9c\x1b\x52\x6d\xe1\x17\x43\x20\xb1\xc6\xe2\xc4\x43\xdf\xe1\x5a\x92\xd8\xad\xed\x70\x88\x51\xf1\x70\x00\x20\x7e\x6f\xfd\xcd\x94\x8a\x8c\x32\x93\x95\x21\x1f\x95\x24\xf0\xb4\xd9\x16\xd5\x3f\x4c\x76\xf4\xba\xc4\x65\x49\xf6\x13\xae\xde\x68\x05\x6b\xe6\xef\x82\x27\xcd\xfc\x59\xb8\xf5\x19\x00\x00\xff\xff\xad\xe0\xc3\x42\xdf\x00\x00\x00" +var _dkgScriptsGet_node_is_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xcc\xbf\xea\xc2\x30\x14\xc5\xf1\x3d\x4f\x71\xba\xfd\xba\xfc\x70\x2e\x38\xa8\xd1\x52\xba\xd9\x27\x88\x36\x91\x0b\xc9\x4d\xb8\x4d\x50\x90\xbe\xbb\xf8\xa7\x93\x8b\x67\x3e\x9f\x2f\x85\x14\x25\xe3\xe0\xe3\x55\xf7\x2d\x9c\xc4\x80\xd5\x4d\xf7\xed\x46\xeb\xe3\x7e\x18\x94\x4a\xe5\x04\x57\x18\xc1\x10\xff\x71\x1c\x6d\xa7\x1b\x0c\x59\x88\x2f\x75\x83\x6d\x8c\x1e\x77\x05\x00\xe4\x96\xcc\x7f\x32\x92\xe9\x4c\xc9\x70\xee\xa6\x9d\x37\x14\xec\xf8\xb1\x35\xaa\x35\x98\x16\xf4\x9c\xd8\x5c\x84\x7f\xc2\xd5\x0b\xcd\xb0\x7e\xb2\xdf\x05\x67\xfc\x64\xdf\x0f\x35\x3f\x02\x00\x00\xff\xff\x2a\xaf\x9b\x4a\xda\x00\x00\x00" func dkgScriptsGet_node_is_claimedCdcBytes() ([]byte, error) { return bindataRead( @@ -1079,11 +1020,11 @@ func dkgScriptsGet_node_is_claimedCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_node_is_claimed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0x3d, 0x29, 0x69, 0x3d, 0x84, 0x68, 0x8e, 0xa8, 0x92, 0xb8, 0x48, 0x92, 0xfe, 0x2a, 0x93, 0xa2, 0x96, 0x40, 0x52, 0xb, 0x8d, 0x15, 0x2d, 0x84, 0x22, 0x1c, 0x17, 0x15, 0x31, 0xba, 0xd1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa3, 0x1a, 0xe4, 0xdb, 0x6, 0xd1, 0x35, 0x6c, 0x35, 0x4b, 0xe3, 0xc7, 0x91, 0xfe, 0x2a, 0xa8, 0x37, 0x87, 0x70, 0xf3, 0x65, 0xe8, 0x6b, 0x9f, 0x81, 0x60, 0xed, 0xc4, 0x79, 0x2e, 0x36, 0x43}} return a, nil } -var _dkgScriptsGet_node_is_registeredCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\x31\x0e\xc2\x30\x0c\x05\xd0\x3d\xa7\xf8\xea\xd4\x2c\x1c\xa0\x23\xaa\x40\x15\x1b\x9c\x20\x4a\xdd\xca\x52\x62\x47\x8e\x2b\x06\xc4\xdd\x59\xca\xf8\x96\xc7\xb5\xa9\x39\x6e\x45\xdf\xf3\xe3\x8e\xcd\xb4\x62\x38\x35\x84\x90\x72\xa6\xde\xc7\x54\x4a\xc4\x76\x08\x6a\x62\x19\x45\x57\x5a\xe6\x09\x2f\x37\x96\x3d\x4e\xb8\xaa\x16\x7c\x02\x00\x18\xf9\x61\xf2\xff\x2e\x2d\x99\x73\xe6\x96\xc4\x97\xfe\xa4\x9d\xbb\x93\xd1\x7a\x16\x31\x7c\x7f\x01\x00\x00\xff\xff\xe5\x2c\x0e\x21\x80\x00\x00\x00" +var _dkgScriptsGet_node_is_registeredCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xb1\x0e\x82\x30\x10\x06\xe0\xbd\x4f\xf1\x8f\xb2\x18\x67\x36\x4d\x95\x10\x36\x78\x82\x2a\x07\xb9\x84\xde\x35\xc7\x35\x9a\x18\xdf\xdd\x45\x5f\xe0\xe3\x5c\xd4\x1c\xb7\x4d\x9f\x71\xe8\xb0\x98\x66\x9c\x5e\x71\xe8\xce\x31\x8e\xd7\x69\x0a\xa1\xd4\x3b\x96\x2a\xc8\x89\xe5\x20\x3a\x53\x1f\x5b\x4c\x6e\x2c\x6b\xd3\xe2\xa2\xba\xe1\x1d\x00\xc0\xc8\xab\xc9\x9f\x3a\x96\x64\xce\x0f\x2e\x49\xbc\xdf\x47\x5a\x79\x77\x32\x9a\x7f\x44\x13\x3e\xdf\x00\x00\x00\xff\xff\x0e\xf5\x2c\x2b\x7b\x00\x00\x00" func dkgScriptsGet_node_is_registeredCdcBytes() ([]byte, error) { return bindataRead( @@ -1099,11 +1040,11 @@ func dkgScriptsGet_node_is_registeredCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_node_is_registered.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0xa4, 0xcf, 0x88, 0xda, 0x35, 0xe9, 0xac, 0xe7, 0x73, 0x15, 0xf6, 0xf9, 0x64, 0xcd, 0x8e, 0x5c, 0x6f, 0xa0, 0x50, 0x9a, 0xbe, 0x2, 0x44, 0x72, 0x74, 0x82, 0xf9, 0x15, 0x37, 0x4b, 0x4d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xad, 0xbc, 0xa5, 0x94, 0xca, 0x89, 0x42, 0xfc, 0xbd, 0x28, 0x1d, 0x72, 0xd4, 0x0, 0x1d, 0xf2, 0xeb, 0xd3, 0x6a, 0x1, 0x26, 0xf1, 0xb5, 0x35, 0x15, 0x12, 0x7a, 0xfa, 0xdf, 0x6, 0x62, 0x4a}} return a, nil } -var _dkgScriptsGet_submissions_countCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xb1\x0a\x82\x70\x10\x06\xf0\xfd\x9e\xe2\xc3\x49\x97\xa6\x68\x70\x2d\x0c\x69\x8c\x1e\x40\x41\xe3\xc0\xff\x77\x72\xde\xd1\x20\xbe\x7b\x4b\x8d\xbf\xe5\xa7\x65\x35\x0f\x74\x8b\x7d\x6e\x8f\x3b\x66\xb7\x82\xea\xa7\x4a\x64\xcd\x11\x73\x12\x65\x50\xd6\x4d\x0b\xec\x3d\xa3\xc5\xab\x67\x5c\xce\x07\x76\x01\x00\x9f\x22\x9d\xff\xe3\xf4\x9e\xa2\x53\x0e\xcb\x33\xc7\xa2\xdb\xa6\xc6\xab\x25\xa3\x6e\xe4\x90\x6f\x00\x00\x00\xff\xff\x09\xb5\xb1\xae\x6f\x00\x00\x00" +var _dkgScriptsGet_submissions_countCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xc1\x0a\x82\x40\x10\x06\xe0\xfb\x3c\xc5\x7f\xd4\x4b\x74\x88\x0e\xde\xa2\x4d\x11\x6f\x2d\x3d\x80\x82\xc6\x80\x3b\x23\xeb\x0c\x05\xb2\xef\xde\xa9\x17\xf8\x38\x6d\x9a\x0d\xed\xaa\x9f\x30\x74\x58\xb2\x26\x9c\xbf\x61\xe8\x6e\x21\x3c\x1f\x31\x12\x6d\x3e\x61\x71\x41\x1a\x59\xaa\xba\x01\x8e\x5e\xac\xc1\xab\x17\xbb\x5e\x0a\x0e\x02\x80\x3c\x9b\x67\xf9\x33\xa7\xf7\x6c\x2d\xcb\xb8\x46\x9f\x12\xef\x3b\xab\xdc\xd5\xc5\xaa\x9a\x0a\xfd\x02\x00\x00\xff\xff\xe5\xd7\x26\xa5\x72\x00\x00\x00" func dkgScriptsGet_submissions_countCdcBytes() ([]byte, error) { return bindataRead( @@ -1119,11 +1060,11 @@ func dkgScriptsGet_submissions_countCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_submissions_count.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0x77, 0xc4, 0x99, 0x13, 0xc6, 0xc8, 0x2b, 0x1e, 0xfe, 0xa5, 0x3a, 0x39, 0x80, 0x42, 0x1e, 0x35, 0x84, 0xa1, 0xa6, 0x33, 0x61, 0x61, 0x91, 0x52, 0xf2, 0x8d, 0xb2, 0x36, 0x4d, 0x5d, 0x9e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc2, 0x62, 0x13, 0x4c, 0x53, 0x43, 0x18, 0xf7, 0xc7, 0xa8, 0x39, 0x4a, 0x6c, 0x6, 0x96, 0x10, 0xa8, 0x3c, 0x70, 0xe5, 0xaa, 0x27, 0x86, 0x32, 0x10, 0x17, 0x58, 0x9d, 0x83, 0x72, 0x85, 0x6e}} return a, nil } -var _dkgScriptsGet_thresholdsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcf\x4a\x03\x31\x10\xc6\xef\x79\x8a\x8f\x9e\x92\xcb\xd2\x43\xe9\xa1\x20\xbd\x48\x45\x04\x11\xaa\x0f\x10\xe2\xa4\x0d\x64\x13\x49\x26\x2a\xc8\xbe\xbb\x6c\xac\xfb\x87\x15\x6c\x6e\x19\x7e\xbf\xf9\x66\xc6\xb5\x6f\x31\x31\x0e\x3e\x7e\xdc\x3e\xdc\xc1\xa6\xd8\x62\x75\xf9\xad\x84\xd0\xc6\x50\xce\x52\x7b\xaf\x90\x39\x15\xc3\x78\x3e\x27\xca\xe7\xe8\x5f\x33\xbe\x04\x00\x4c\x19\x4f\x8c\xa0\xd9\xbd\xd3\x0e\x2f\xf7\x81\xb7\x9b\x3f\x91\xac\xed\xff\xc0\x13\x25\x43\x81\xf5\xa9\x47\x0f\xee\x73\xbb\x11\x95\x75\xc1\xb1\x54\x97\xf0\xfe\x65\xf2\xb6\xf9\x49\xc5\xcd\xef\x2a\xcd\x89\xf8\xb1\xd6\x8e\xa5\x36\x1f\xe6\x96\x6a\x6e\xf6\x59\x73\xef\xa8\xed\x55\xd6\x38\xe1\xd2\x1f\xc4\x11\x92\x0a\xfb\x3d\xd6\xcd\xba\x76\xea\x44\x37\xbf\xaf\x2d\x01\xad\x76\x41\xaa\xdd\xf2\xc8\x89\xb8\xa4\x30\xa9\x4b\x25\xba\xef\x00\x00\x00\xff\xff\xb3\xea\x59\x20\xbd\x01\x00\x00" +var _dkgScriptsGet_thresholdsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xc1\x4a\x03\x31\x18\x84\xef\x79\x8a\x39\x26\x97\x65\x0f\xa5\x87\x82\x14\x61\x6d\x91\x82\x88\xab\x0f\x10\xd7\x3f\x6d\x20\x9b\x94\xe4\x8f\x16\x64\xdf\x5d\xb2\xd5\xd6\x65\x11\xcc\xf1\x9f\xf9\x32\xc3\xd8\xfe\x18\x22\x63\xe3\xc2\x47\xb3\xdb\xc2\xc4\xd0\xa3\x3e\x35\xbb\xed\x6d\xd3\x3c\xdd\xb5\xad\x10\xc7\xfc\x8a\xc4\x31\x77\x8c\xe7\x43\xa4\x74\x08\xee\x2d\xe1\x53\x00\x40\xd1\x1c\x31\xbc\x66\xfb\x4e\x2b\xbc\xdc\x7b\x5e\x2e\x26\x52\xd2\xe6\x6f\xe1\x91\x62\x47\x9e\xf5\xbe\x58\x36\xf6\xb4\x5c\x88\xd1\x63\xbd\x65\xa9\xbe\x43\xca\x4b\xe4\x4c\x75\x4e\xc1\xcd\x4f\xdb\x6a\x4f\xfc\x30\xde\xda\xdc\x75\x94\xd2\xa5\x9f\x54\x53\xb2\x64\x4d\xb9\x56\x9b\x7f\x51\xd7\x86\x73\xfe\x02\x5e\x4d\x52\x61\xbd\x46\x5d\xd5\xe3\x4f\x83\x18\xce\xfb\x99\xec\xd1\x6b\xeb\xa5\x5a\xcd\x47\x8c\xc4\x39\xfa\x5f\x77\xa9\xc4\xf0\x15\x00\x00\xff\xff\x03\x93\xd8\xc7\x98\x01\x00\x00" func dkgScriptsGet_thresholdsCdcBytes() ([]byte, error) { return bindataRead( @@ -1139,11 +1080,11 @@ func dkgScriptsGet_thresholdsCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_thresholds.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x22, 0xd8, 0x8, 0xe9, 0xf9, 0x79, 0xd1, 0x2c, 0xce, 0xe5, 0x62, 0x4d, 0x9f, 0xd2, 0x6, 0xdf, 0x1d, 0x2d, 0x17, 0xa7, 0x40, 0x6d, 0x40, 0x6, 0xa2, 0x7a, 0x0, 0xbd, 0x7c, 0xf2, 0x89}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9f, 0x6, 0xd, 0xd4, 0x37, 0x50, 0xa5, 0x7, 0x78, 0xd8, 0x8d, 0x8f, 0x5d, 0x24, 0x7e, 0xb7, 0xab, 0x79, 0x29, 0x97, 0x3f, 0xf5, 0x8b, 0x75, 0x32, 0xf7, 0xa4, 0xaf, 0x24, 0x18, 0xd4, 0x8f}} return a, nil } -var _dkgScriptsGet_whiteboard_messagesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\xa2\xa1\x4a\xf4\x7c\x53\x8b\x8b\x13\xd3\x53\x63\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xc6\xe9\xa5\xa7\x96\x84\x67\x64\x96\xa4\x3a\xe5\x27\x16\xa5\x40\x95\x16\x6b\x68\x2a\x70\xd5\x02\x02\x00\x00\xff\xff\x68\x14\x95\x1b\x78\x00\x00\x00" +var _dkgScriptsGet_whiteboard_messagesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x88\x86\xaa\xd5\xf3\x4d\x2d\x2e\x4e\x4c\x4f\x8d\x55\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x99\xa4\x97\x9e\x5a\x12\x9e\x91\x59\x92\xea\x94\x9f\x58\x94\x02\x55\x5a\xac\xa1\xa9\xc0\x55\x0b\x08\x00\x00\xff\xff\x3f\x6c\x37\x78\x73\x00\x00\x00" func dkgScriptsGet_whiteboard_messagesCdcBytes() ([]byte, error) { return bindataRead( @@ -1159,11 +1100,11 @@ func dkgScriptsGet_whiteboard_messagesCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_whiteboard_messages.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0xd3, 0xb2, 0xb6, 0xfe, 0x25, 0x93, 0xf1, 0x4f, 0x70, 0x8a, 0x81, 0xe6, 0x35, 0x7e, 0xb7, 0x82, 0xca, 0x41, 0xba, 0xe7, 0xc5, 0x37, 0x28, 0x1d, 0xf3, 0xb4, 0xe, 0x87, 0x1b, 0xdb, 0xf9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb3, 0xd, 0x56, 0xa1, 0x9c, 0xba, 0x39, 0x42, 0xbd, 0xc, 0x6f, 0xdb, 0x33, 0xd0, 0x81, 0xc7, 0xf4, 0xd5, 0x31, 0x3f, 0xca, 0xa0, 0x49, 0xb7, 0x7e, 0x22, 0xeb, 0xb7, 0xfe, 0x63, 0x68, 0xe0}} return a, nil } -var _dkgSend_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xbd\x6a\xc3\x40\x0c\xc7\x77\x3f\x85\xf0\x10\xec\xc5\x0f\x60\xda\x9a\x7e\x90\x0e\x5d\x02\x86\x2e\xa5\x83\x72\x91\x9d\xa3\xb6\x74\xe8\x64\x52\x28\x79\xf7\xe2\x9e\x1b\x5c\x08\xd5\x76\x1f\xfa\xfd\xf5\x93\x1f\x83\xa8\xc1\x76\x90\xd3\xd3\xcb\x33\x74\x2a\x23\xe4\xcb\x29\xcf\x32\x53\xe4\x88\xce\xbc\x70\x11\xa7\xfd\xe8\x63\xf4\xc2\x35\xbc\xb5\xa6\x9e\xfb\xe6\xbd\x84\xaf\x2c\x03\x00\x18\xc8\xe0\xf0\xd1\xef\x50\xcd\x3b\x1f\x90\xad\x86\xcd\x02\xaa\x56\xb7\xe9\x77\x50\x0a\xa8\x54\x44\xdf\x33\x69\x0d\x38\xd9\xb1\x78\x10\x55\x39\xbd\xe2\x30\x51\x09\x9b\x7b\xe7\x64\x62\x9b\x03\x60\xa9\x48\x43\x57\xfd\x0d\x81\x5b\x48\x8c\x2a\x9a\x28\xf6\x54\xed\x7f\x28\x37\xd7\xb2\xef\x8a\xd9\xaf\x86\x2b\x4f\x6d\xea\xde\xa1\x1d\xcb\x4b\xde\x5c\x4d\x03\x01\xd9\xbb\x22\x7f\x44\x66\x31\x48\xfc\xd9\x15\xc2\x6a\x0e\xa5\x8e\x94\xd8\x51\x9e\xfa\xcf\x49\x94\x3e\xc9\x4d\x46\xff\x4b\x54\x91\xf8\xb0\xf5\x8c\x43\x7b\xd9\xf1\x6a\xdd\xbf\xc0\xf3\x77\x00\x00\x00\xff\xff\x55\xc6\xf9\x32\xad\x01\x00\x00" +var _dkgSend_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xb1\x6a\xf3\x40\x10\x84\x7b\x3d\xc5\xe2\xe2\x47\x6a\xc4\x5f\x8b\x24\x42\x44\xb1\x0b\x37\x26\x2a\x43\x8a\xf3\x79\x25\x2f\x91\x76\x8f\xbd\x15\x36\x04\xbf\x7b\x10\xb2\x8d\x02\xce\x94\x77\x37\xdf\xdc\x0c\x0d\x41\xd4\x60\xdd\xcb\xa9\xde\x6e\xa0\x55\x19\xe0\xff\xb9\xde\x6e\xaa\xba\x7e\x7f\x6b\x9a\x24\x31\x75\x1c\x9d\x37\x12\x4e\xe3\xb8\x1f\x28\x46\x12\x2e\xe0\xa3\x31\x25\xee\xca\xcf\x0c\xbe\x93\x04\x00\xa0\x47\x83\xc3\x57\xb7\x73\x6a\xe4\x29\x38\xb6\x02\xfe\x5d\xc9\xf9\xe2\x74\x7e\x1d\x14\x83\x53\x4c\x23\x75\x8c\x5a\x40\x35\xda\xb1\xf2\x5e\x46\xb6\x89\x08\x57\x45\xec\xdb\xfc\x37\x15\x9e\x61\x36\xe5\x7b\x51\x95\xd3\xd3\xa3\x90\x97\x74\xea\x52\xc0\x83\xab\xc6\x44\x5d\x87\x3b\x67\xc7\xec\x9e\x33\xa9\x2c\x21\x38\x26\x9f\xae\x5e\x1d\xb3\x18\xcc\xfc\xa9\x14\x84\x45\xbe\x62\x8b\x8a\xec\x71\x35\xfb\x2f\x73\x23\x3c\xa3\x1f\x0d\x6f\x73\xfc\xf1\xfb\x3c\x22\x1f\xd6\xc4\xae\x6f\xee\x6b\x2e\x86\xcd\x92\x1b\xf2\xf2\x13\x00\x00\xff\xff\x38\x14\x9d\x91\x9c\x01\x00\x00" func dkgSend_final_submissionCdcBytes() ([]byte, error) { return bindataRead( @@ -1179,11 +1120,11 @@ func dkgSend_final_submissionCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/send_final_submission.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd1, 0xc, 0x5e, 0xac, 0xc6, 0x72, 0x16, 0x6c, 0xf2, 0x1f, 0x31, 0x41, 0x51, 0x0, 0xcd, 0x15, 0x99, 0x86, 0xb3, 0xd3, 0x8a, 0x56, 0xf2, 0xf1, 0xf8, 0xf1, 0x9f, 0xd4, 0x36, 0xa4, 0x8, 0xba}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0xa1, 0xeb, 0xb8, 0x94, 0x6e, 0xb, 0x8d, 0x4f, 0xbe, 0xf4, 0xe4, 0x73, 0x98, 0xc9, 0x5b, 0x27, 0x91, 0x33, 0xac, 0x1a, 0xe, 0x48, 0xe7, 0x33, 0x1, 0x1f, 0xb, 0xa6, 0xac, 0x6a, 0x93}} return a, nil } -var _dkgSend_whiteboard_messageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcf\x6a\xc3\x30\x0c\x87\xef\x79\x0a\x91\x43\x49\x2e\x7e\x80\xb0\xad\xec\x0f\xdb\x61\x0c\x0a\x85\xdd\x35\x4f\x71\xcd\x52\xc9\xc8\x0a\x1d\x8c\xbe\xfb\xf0\x9c\x8e\x0e\xca\x74\xb3\x2d\x7d\x3f\x7f\x8a\xfb\x24\x6a\xf0\x38\xc9\xe1\xe1\xf9\x09\x46\x95\x3d\xb4\xcb\xa9\x6d\x1a\x53\xe4\x8c\xde\xa2\x70\xe7\x85\x8d\xd8\x06\xd8\x9a\x46\x0e\x3d\x7c\x35\x0d\x00\xc0\x44\x06\xef\x1f\x61\x83\x6a\xd1\xc7\x84\xa5\x65\xb5\x20\xdc\xd9\x6d\xed\x4e\x4a\x09\x95\xba\x1c\x03\x93\x0e\x80\xb3\xed\xba\x3b\x51\x95\xc3\x2b\x4e\x33\xf5\xb0\xba\xf5\x5e\x66\xb6\x12\x00\x4b\x65\x9a\x46\xf7\x37\x04\xae\xa1\x32\x5c\x36\x51\x0c\xe4\xde\x7e\x28\x57\x97\xb2\x6f\xba\x62\x36\xc0\x85\xa7\x6d\x9d\xde\xa0\xed\xfa\xdf\xbc\x52\xeb\x35\x24\xe4\xe8\xbb\xf6\x1e\x99\xc5\xa0\xf2\x8b\x2b\xa4\xb3\x7f\x28\x8d\xa4\xc4\x9e\xda\x3a\x7f\xac\xa2\xf4\x49\x7e\x36\xfa\x5f\xc2\x25\xc9\xf6\x42\x39\x63\xa0\xd3\x82\x4f\x94\xe3\x77\x00\x00\x00\xff\xff\xc6\xb5\x3f\x3f\x9c\x01\x00\x00" +var _dkgSend_whiteboard_messageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x43\x0f\x92\x5c\x82\xe7\xa0\x96\x60\xb4\x87\x22\x14\xf3\x0b\xc6\x75\x92\x2e\xa6\x33\xcb\xec\x84\x16\xa4\xff\x5d\x96\x6d\xa4\x42\x9d\xe3\xee\xbc\xef\xcd\x7b\xfe\x10\x44\x0d\x5e\x27\x39\x76\xdb\x0d\x0c\x2a\x07\xb8\x3f\x75\xdb\x4d\xdb\x75\xef\x2f\x7d\x5f\x14\xa6\xc8\x11\x9d\x79\xe1\xd2\x09\x1b\xb1\x35\xd0\x9b\x7a\x1e\x2b\xf8\x2e\x0a\x00\x80\x89\x0c\x3e\xbf\xc6\x1d\xaa\x79\xe7\x03\xa6\x95\xbb\x0b\xb3\xbe\x7a\xcd\xdb\x41\x29\xa0\x52\x19\xfd\xc8\xa4\x0d\xb4\xb3\xed\x5b\xe7\x64\x66\x4b\x44\xb8\x4c\xa4\x69\xa8\xff\x52\xe1\x11\xb2\xa8\xfe\x10\x55\x39\x3e\xdc\x32\x79\x2a\x53\x8a\x06\x6e\x7c\xf5\x26\x8a\x23\xed\xd0\xf6\xd5\xaf\x4f\x9a\xf5\x1a\x02\xb2\x77\xe5\xea\x19\x99\xc5\x20\xf3\x53\x28\x08\x57\xfe\x4a\x03\x29\xb1\xa3\x55\xd6\x9f\x73\x22\x3a\x91\x9b\x8d\x96\x3a\xfe\xb9\xbe\x0e\x12\xed\x8d\x62\xc4\x91\x96\x2a\xab\x62\xe1\x9c\x7f\x02\x00\x00\xff\xff\x42\x47\xff\x78\x8b\x01\x00\x00" func dkgSend_whiteboard_messageCdcBytes() ([]byte, error) { return bindataRead( @@ -1199,11 +1140,11 @@ func dkgSend_whiteboard_messageCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/send_whiteboard_message.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcb, 0xec, 0x78, 0xab, 0x6e, 0x8, 0xc7, 0xa7, 0x9c, 0x52, 0x92, 0x14, 0x8d, 0x49, 0x3e, 0xa1, 0x55, 0xf3, 0xe3, 0xaf, 0xa9, 0x17, 0x5e, 0xbf, 0x42, 0x66, 0xd4, 0x93, 0x31, 0x7b, 0xd0, 0x18}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaf, 0xbf, 0x30, 0x7e, 0x1e, 0xed, 0x99, 0xc1, 0x3d, 0xa0, 0x20, 0x22, 0x66, 0xaf, 0x3b, 0x43, 0x3f, 0x26, 0xca, 0xd8, 0xff, 0x25, 0x83, 0xbc, 0x7e, 0x33, 0x4a, 0x7b, 0xb0, 0x5d, 0xaf, 0x21}} return a, nil } -var _epochAdminAdvance_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x6f\x82\x40\x10\x85\xef\xfc\x8a\xc9\x1e\x0c\x5c\xf8\x01\xa6\xd6\x28\xda\x68\x5a\xab\x09\xb6\xf7\x71\x1d\x61\xe3\xb2\xbb\x59\x86\x7a\x68\xfc\xef\x0d\xa0\x48\x93\x5a\xe7\x40\x42\x76\xde\x37\xef\x3d\x55\x38\xeb\x19\x5e\xb4\x3d\xcd\x9d\x95\x39\x1c\xbc\x2d\x40\x74\xff\x22\xe8\x6d\x2c\x67\x5b\xdc\x69\x4a\x19\x8f\xca\x64\xbd\xd5\xdf\x0f\x22\x08\xd8\xa3\x29\x51\xb2\xb2\x26\x74\x39\x96\x34\x84\x94\xbd\x32\x59\x04\xdf\x01\x00\x80\xf3\xe4\xd0\x53\x58\xaa\xcc\x90\x1f\x02\x56\x9c\x87\x53\xeb\xbd\x3d\x7d\xa2\xae\x28\x82\xc1\x44\x4a\x5b\x19\xbe\x2a\xea\xd1\xc4\x90\x13\x7a\xde\x11\x32\x8c\xa0\x55\xc7\x25\x5b\x8f\x19\xc5\xbb\x46\xff\x34\xe8\xdc\xc7\x8b\xeb\xf2\x73\x58\xbb\x1d\xde\x82\xc6\x1d\x27\x6d\xd5\x1b\xe4\x3c\xea\x2e\xd5\x33\x1e\x83\x43\xa3\x64\x28\x12\x5b\xe9\x3d\x18\xcb\xd0\x9e\xe8\x99\x68\x4a\xb8\x18\x00\x87\x9c\x8b\x28\xe8\x28\xea\x00\x4d\x7a\x18\x8d\x40\xcc\x37\xeb\x64\x91\xce\xb7\x1f\x1b\xd1\x8b\x54\x4f\x47\x8b\xc9\xec\x2f\x25\x4e\xaa\xb6\xbd\x9b\xa5\x33\x90\x2e\xe9\x0f\x66\xb2\x5e\xad\x96\xdb\xfb\xd0\x92\xd1\x73\x13\x3a\xb1\x45\xa1\xf8\x11\xf3\x7d\xd6\x60\xff\x75\xd9\xe0\x1e\x80\xa6\x6f\xeb\xe4\xf5\x3e\x05\xf7\x5f\x68\x24\x4d\xb5\x95\xc7\x3e\x29\x68\xbf\xe7\x9f\x00\x00\x00\xff\xff\x77\x36\x16\x2b\x9b\x02\x00\x00" +var _epochAdminAdvance_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x4d\x4f\x83\x40\x10\x86\xef\xfc\x8a\x09\x07\x43\x2f\xc4\x73\x63\x6d\x28\x60\x4a\xec\x57\x04\x0f\x1e\xa7\x74\x0b\x9b\xc2\xce\x66\x19\xac\x89\xe9\x7f\x37\x80\x50\x0e\xd6\xce\x61\x4f\xef\x3e\xef\x87\x2c\x35\x19\x86\x97\x82\xce\xa1\xa6\x34\x87\xa3\xa1\x12\x1e\xbf\xc2\xdd\xd6\x5f\x7a\x41\xf0\x16\xc6\xb1\x35\x12\x45\x41\x82\xfb\x42\xc4\x8c\x27\xa9\xb2\x5e\x1d\x05\xe1\x26\x89\x92\x8f\xc4\x5b\xac\xc2\xfe\x97\xc5\x06\x55\x85\x29\x4b\x52\x8e\xce\xb1\x12\x53\x88\xd9\x48\x95\x4d\xe0\xdb\x02\x00\xd0\x46\x68\x34\xc2\xa9\x64\xa6\x84\x99\x82\x57\x73\xee\xa5\x29\xd5\x8a\x7b\x49\x73\x85\x60\xc8\x05\x1a\xde\x0b\x64\x98\x41\x27\x77\xf7\x64\x0c\x9d\x9f\x1e\x86\xec\xee\xb2\x17\x3d\x3b\x4d\xb0\xe9\xb5\x96\x3b\xfc\x8f\x99\x0c\x66\x62\x87\x9c\x4f\x06\x87\xe6\xe6\x73\xd0\xa8\x64\xea\xd8\x3e\xd5\xc5\x01\x14\x31\x74\x16\x23\xf3\xb6\x6f\xd5\x21\x40\x23\xe7\xf6\xc4\x1a\x28\xf2\x08\x6d\x4d\x98\xcd\xc0\x6e\x07\x8c\xc3\xe4\x7d\x67\x8f\xaa\x34\x37\xd0\x5c\xa1\x0e\xbf\x43\x7a\x75\x37\xd3\x35\xd2\x05\x44\x51\x89\x3f\x98\xfe\x76\xbd\x8e\x92\xdb\xd0\x8a\xd1\x70\x5b\xda\xa7\xb2\x94\x7c\x8f\xb9\x09\x5a\xec\xbf\x29\x5b\xdc\x1d\xd0\x62\xb5\xf5\x5f\x6f\x53\xf0\xf0\x89\x2a\x15\x8b\x82\xd2\xd3\x98\x64\x75\xef\xe5\x27\x00\x00\xff\xff\x78\x90\x9a\x7d\x89\x02\x00\x00" func epochAdminAdvance_viewCdcBytes() ([]byte, error) { return bindataRead( @@ -1219,11 +1160,11 @@ func epochAdminAdvance_viewCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/advance_view.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0xe1, 0x89, 0x75, 0x40, 0x79, 0x27, 0x42, 0xfc, 0x75, 0x5f, 0x1a, 0xb6, 0xef, 0xa4, 0xea, 0x47, 0xb1, 0x9b, 0x15, 0x59, 0x37, 0x8, 0x70, 0xe9, 0xb3, 0xc6, 0x77, 0xe7, 0xfc, 0xd8, 0x5c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0x42, 0xe3, 0xf9, 0x28, 0x5, 0x40, 0x9e, 0xbc, 0x3e, 0x89, 0x42, 0xb7, 0x29, 0xc5, 0x14, 0xd7, 0x33, 0x6a, 0x71, 0xd7, 0xd5, 0x26, 0xb9, 0xc0, 0x75, 0xbe, 0x53, 0xda, 0x3d, 0x81, 0xdc}} return a, nil } -var _epochAdminCalculate_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\xcd\x4e\xec\x30\x0c\x85\xf7\x79\x0a\xab\x8b\x51\xba\xe9\x03\x8c\xee\x65\x34\xfc\x09\x76\x88\x22\xf6\x6e\x6a\xda\x88\x4c\x1c\xb9\x8e\xba\x40\xf3\xee\xa8\x53\x26\x14\xef\xa2\x9c\xcf\xe7\xb3\x3f\x25\x16\x85\xc7\xc0\xf3\x43\x62\x37\xc2\x87\xf0\x09\xaa\xf2\xae\xcc\x26\xf1\x7c\xff\x86\x5d\xa0\x56\xf1\xd3\xc7\x61\x13\xfd\xfb\x51\x19\xa3\x82\x71\x42\xa7\x9e\xa3\xad\xe1\xcb\x00\x00\x24\xa1\x84\x42\x76\xf2\x43\x24\xd9\x03\x66\x1d\xed\x2d\x8b\xf0\xfc\x8e\x21\x53\x0d\xbb\xa3\x73\x9c\xa3\x5e\x89\x65\x02\x29\x8c\x84\xa2\x1d\xa1\xc2\x7f\x58\xe9\x66\x52\x16\x1c\xa8\xe9\x2e\xfc\xbf\x5d\x11\x6e\x9e\xae\xe1\x1b\xbb\x08\xee\x7f\x6f\x6b\xca\x9e\x76\xa5\x5f\x50\xc7\xba\x34\x2d\x73\x38\x40\xc2\xe8\x9d\xad\xee\x38\x87\x1e\x22\x2b\xac\x15\x1b\x89\xcb\xdd\x3f\x02\x90\x50\xc7\xaa\x36\x65\x4b\x89\x35\x0e\x83\xcb\x01\x95\x8e\xb1\x6f\x49\x5f\x69\x46\xe9\x27\xbb\x16\x9e\xcd\xf9\x3b\x00\x00\xff\xff\x06\x87\xee\x45\x7b\x01\x00\x00" +var _epochAdminCalculate_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8f\x41\x4f\x83\x40\x10\x85\xef\xfc\x8a\x49\x0f\x86\x5e\x88\xe7\x46\x6d\xb0\x60\x4a\x62\xb4\x29\x5c\x3c\x0e\xcb\x08\xc4\xed\xce\x66\x18\x82\x89\xe9\x7f\x37\x48\x58\x3b\xe7\x6f\xde\xf7\x5e\x7f\xf1\x2c\x0a\x2f\x96\xa7\xdc\xb3\xe9\xe0\x53\xf8\x02\xf7\xdf\xf9\xe9\xfd\x70\x4c\xb3\xec\x9c\x97\x65\x74\x03\x15\x59\x85\xb5\xa5\x52\xf1\xab\x77\xed\x4a\x17\x59\xfe\x56\x15\xd5\x47\x95\x3e\xbf\xe6\xeb\x57\xa4\x82\x6e\x40\xa3\x3d\xbb\x78\x0b\x3f\x11\x00\x80\x17\xf2\x28\x14\x0f\x7d\xeb\x48\x76\x90\x8e\xda\xa5\xc6\xf0\xe8\x74\x45\xe6\xb3\xa4\xd0\x11\x8a\xd6\x84\x0a\x8f\xb0\xe0\x49\xcd\x22\x3c\x3d\xdc\x85\xba\xc9\x71\x85\x9e\xe2\xb9\xcb\xee\x7f\x49\x12\xfe\x4b\x65\xc1\x96\x4e\xa8\xdd\x36\x18\xe6\xdb\xef\xc1\xa3\xeb\x4d\xbc\x39\xf0\x68\x1b\x70\xac\xb0\x28\x6e\xe4\x7f\x13\x87\x25\x02\x3c\x6a\xb7\xd9\x46\x21\x25\x60\x89\x41\x6b\x46\x8b\x4a\xa9\x6b\x4a\xd2\x33\x4d\x28\xcd\x10\x2f\xc2\x6b\x74\xfd\x0d\x00\x00\xff\xff\x65\x70\xd8\x1b\x69\x01\x00\x00" func epochAdminCalculate_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -1239,11 +1180,11 @@ func epochAdminCalculate_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/calculate_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6a, 0x28, 0xde, 0x44, 0x27, 0x64, 0x4f, 0xc3, 0x72, 0xfc, 0x29, 0x96, 0x71, 0x49, 0x1e, 0x7e, 0xf1, 0xf, 0x75, 0x6b, 0x4c, 0x31, 0x40, 0x4b, 0xf, 0x62, 0xa5, 0x65, 0x0, 0x94, 0xc0, 0x81}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf1, 0x90, 0x32, 0x9f, 0x87, 0xcc, 0xc2, 0x5c, 0x7d, 0xe9, 0xd1, 0x54, 0x3b, 0x45, 0xae, 0x38, 0xba, 0xcc, 0x78, 0x77, 0x70, 0x33, 0x8f, 0x7b, 0x2b, 0xbb, 0x1e, 0xb0, 0x79, 0x24, 0x81, 0xb8}} return a, nil } -var _epochAdminDeploy_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xc1\x6b\xea\x40\x10\xc6\xef\xf9\x2b\x06\x0f\x0f\x05\x11\x1e\x3c\xe4\xe1\x4d\xd2\x5a\xc4\x42\x15\x69\x7b\x10\x0f\xdb\xcd\x34\x06\x93\xd9\x30\x3b\x8b\x95\xe2\xff\x5e\x62\x22\x35\x31\x26\xb6\x1e\x16\xf3\xcd\xf7\x6d\x26\x33\xbf\x28\x49\x0d\x0b\x4c\x62\xb3\xf3\x63\x67\x05\x79\xe1\xc3\x3b\x9b\x04\x3a\x25\xad\xe3\x79\xc2\x8a\xac\xd2\x12\x19\xea\x92\x4a\x70\x04\x4b\xe1\x88\xc2\x3e\x78\x70\xf6\xd3\x26\xc0\x11\xac\x9e\xa7\x24\xff\xd7\xfd\x72\xc9\x31\x23\xc9\x7d\x6a\xf4\xc6\x37\x8e\x04\x79\x04\x99\x71\xf8\xaf\x6c\x24\x97\xbc\x44\xb8\xb3\x53\x3a\x7a\xdb\x4c\x4b\x51\xdb\x88\xc2\xb1\x3b\x36\xd7\xe6\xbe\x9b\x3d\xcc\x37\xca\xe2\x55\x9f\x6f\xe2\x18\xb5\x18\x2e\xbe\xde\xe6\xce\xbf\xc3\xb2\x73\xf2\xf8\xf4\x6a\x5d\x9a\xc6\xfb\x29\x69\x46\x65\x71\x8e\xac\x91\x44\x85\xd9\xdd\x93\xe8\xa3\x7a\x37\x2b\x0a\x4c\xb2\x34\x8e\xf5\xf7\xf4\x2a\xc3\xbb\x78\xf5\xaa\xb4\x87\x41\xf1\xaf\x3a\xd9\x53\xfd\x6a\x60\xe1\x57\x22\xc1\x36\x9c\xbb\xb7\x19\xee\xb3\x48\xde\xcb\xba\x07\x9f\x9e\x07\x90\x32\xa6\x8a\xb1\x6b\xa3\x90\xb2\x15\x29\x27\x9b\xee\x38\x08\x7c\x43\xc2\x4a\x4b\x0f\xfe\x8c\xb5\xce\x16\x58\x04\x00\x72\xeb\x40\x17\x0e\x3b\x50\x41\x50\x50\x92\x9d\xb5\x8c\x64\xe7\x0d\x80\xd4\x88\x2d\xb4\x54\x84\x5b\xb1\xb9\x56\xa9\x34\x5f\x47\xd2\xa5\x76\x19\xaa\xc1\xaa\x4e\xfd\x09\x64\x4d\xd5\x26\xf4\xce\x9f\xda\x01\x5c\x83\xb2\xbf\xc0\xb0\x21\xd6\x0c\x63\x1e\x3c\x21\xe9\x01\x1c\xbc\xc3\x57\x00\x00\x00\xff\xff\x4b\x08\x37\x75\xa8\x04\x00\x00" +var _epochAdminDeploy_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xc1\x6b\xea\x40\x10\xc6\xef\xf9\x2b\xe6\xe8\x03\x91\xf7\xe0\x21\x0f\x6f\x21\xea\x43\x2c\x54\x1b\xda\x1e\xc4\xc3\x76\x33\x8d\xc1\x64\x36\xcc\xee\xa2\x52\xfc\xdf\xcb\x9a\x48\x4d\x8c\x89\x6d\x0e\x4b\x32\xdf\xf7\x6d\x86\x99\x5f\x92\xe5\x8a\x0d\x4c\x53\xb5\x0b\x52\xab\x0d\xf2\x32\x80\x77\x56\x19\xfc\xde\x2f\x03\x7f\x3c\x7e\x9a\x84\xa1\xe7\x19\x16\xa4\x85\x34\x89\xa2\x1e\x89\x0c\x47\x10\x1a\x4e\x28\xee\x83\x07\x17\x8f\x54\x11\x8e\x60\xf5\x3c\x23\xf3\x6f\xdd\xaf\x4a\x96\x19\xc9\x4c\x72\x25\x37\x81\xb2\x64\x90\x47\xe0\x8c\xc3\xbf\x55\x23\xd9\xec\x25\xc1\x9d\x9e\xd1\xc9\xdb\x65\x0a\x8d\xd8\x26\x14\xfb\xf6\xd4\x5c\x97\x7b\x3c\xff\xbf\xd8\x08\x8d\x37\x7d\x81\x4a\x53\x94\x46\x71\x39\x0d\x5d\x38\xff\x0c\xab\xce\xe9\xc3\xe3\xab\xb6\x79\x9e\x1e\x66\x24\x19\x85\xc6\x05\xb2\x44\x32\x22\x76\x77\x4f\x93\x7d\xfd\x6e\x16\x14\xa9\x2c\x54\x96\xe5\xd7\xf4\x6a\xc3\xbb\xfa\xf5\xaa\xb2\x97\x41\xf9\x56\x9f\xec\x59\xbf\x19\x58\x06\xb5\x48\xb4\x8d\x17\xf6\x6d\x8e\x07\x17\x29\x7a\x59\xff\x82\x0f\xcf\x03\xc8\x19\x73\xc1\xd8\xd3\x49\x4c\x6e\x45\xbe\x35\x1b\x5f\x4a\xb7\xb1\xd2\x01\x50\x68\x03\xa9\xc8\xb0\x90\x46\x0f\x44\x14\x95\x58\xb8\xb3\x11\x0a\x77\xde\x41\x44\x43\xb1\x03\x8f\x5a\xe1\x5e\x4e\x6e\x29\xb5\xe6\x9b\xd0\xb9\xae\x5d\x87\x1a\x38\x6a\xaa\x7e\x87\xaa\x36\xb5\x8d\xb5\xcb\xaf\x6e\xe2\xd6\x20\xf4\x0f\xb8\x6b\x89\xb5\xd3\x57\x04\xcf\x0c\x7a\x00\x47\xef\xf8\x19\x00\x00\xff\xff\x77\xe6\xf2\x61\x95\x04\x00\x00" func epochAdminDeploy_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1259,11 +1200,11 @@ func epochAdminDeploy_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/deploy_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc0, 0xec, 0x40, 0x48, 0x4, 0x2f, 0x71, 0x7b, 0xd8, 0xb, 0xbb, 0x6b, 0xa7, 0x3c, 0x3f, 0x5f, 0x22, 0x3e, 0x7d, 0xb, 0x7f, 0x80, 0x8, 0x21, 0xc3, 0x66, 0x12, 0xb4, 0x70, 0xd2, 0x99, 0xc7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3b, 0x7a, 0xe, 0xfd, 0xd8, 0x13, 0x8f, 0x9b, 0x36, 0x65, 0x11, 0x9d, 0x7, 0x4f, 0x62, 0xb9, 0x4e, 0x62, 0xe3, 0x15, 0xb8, 0x23, 0xf6, 0x95, 0xa4, 0xd3, 0xde, 0xd3, 0x54, 0x5c, 0xff, 0x57}} return a, nil } -var _epochAdminDeploy_qc_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xce\xb1\x4a\x03\x41\x10\xc6\xf1\x7e\x9e\xe2\xab\xe4\x16\x8e\xa4\x95\xeb\x42\x6c\x6c\x6c\xc4\x4a\x2c\x86\xd9\x65\x5d\xa2\x33\x97\xdd\x09\x22\x92\x77\x17\xb2\xab\x98\xca\x72\xe0\xfb\x33\xbf\xed\x16\x77\x69\x7d\xb3\xcf\x06\xff\x30\x88\xa9\x57\x16\x6f\x70\x03\x2b\x58\xc4\x4e\xea\x28\x0a\xd3\x04\xaf\xac\x8d\xc5\x8b\x29\x81\xfe\x5c\xd3\x51\x1e\xf8\x3d\x2d\x78\xf4\x5a\x34\xcf\x38\xca\xde\x62\x5a\xf0\xfc\x74\xaf\x7e\xfb\x32\x23\x1e\xf2\xf5\x22\x1e\xf2\xd5\x24\xe0\x8b\x08\x58\x6b\x5a\xb9\xa6\xa9\x95\xac\xa9\x2e\xe0\x93\xbf\x4e\xbb\x18\xf7\x43\x16\x70\xb3\xeb\xa8\x11\x00\x7d\xba\xf9\xb5\x6f\x38\xc6\x49\x2f\xcf\x3a\x6b\x86\x5c\x3e\x75\x54\xf8\xb7\x1a\xd6\x9f\x6c\x48\x03\x01\x67\xa2\x33\x81\xbe\x03\x00\x00\xff\xff\x37\x0b\x9f\x58\x36\x01\x00\x00" +var _epochAdminDeploy_qc_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xce\x31\x4b\xc4\x40\x10\x05\xe0\x7e\x7e\xc5\x2b\x13\x08\x77\xad\xa4\x3b\xb4\xb1\xb1\x11\x2b\xb1\x18\x66\x97\x75\x39\x9d\x49\x76\x27\x88\x48\xfe\xbb\x90\x8d\x62\x2a\xcb\x61\xde\x7b\x7c\xe7\x33\xee\xe2\xf4\x66\x9f\x15\xfe\x61\x10\x53\x2f\x2c\x5e\xe1\x06\x56\xb0\x88\x2d\xea\xc8\x0a\xd3\x08\x2f\xac\x95\xc5\xb3\x29\x81\xfe\x5c\xdd\x2c\x0f\xfc\x1e\x47\x3c\x7a\xc9\x9a\x06\xcc\x72\x6b\x21\x8e\x78\x7e\xba\x57\xbf\x79\x19\x10\xae\xe9\x98\x08\xd7\x74\x88\xf4\xf8\x22\x02\xa6\x12\x27\x2e\xb1\xab\x39\x69\x2c\x23\x2e\x8b\xbf\x5e\x9a\x62\x4f\x00\xed\x77\xfa\xc5\x9e\x38\x84\x4e\xb7\xf5\xe6\x18\x20\xdb\x74\x53\xf4\xff\xb6\x76\xdc\x4f\x6d\xa7\xf5\x04\xac\x44\x2b\x81\xbe\x03\x00\x00\xff\xff\x63\x1d\x09\x1c\x27\x01\x00\x00" func epochAdminDeploy_qc_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -1279,11 +1220,11 @@ func epochAdminDeploy_qc_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/deploy_qc_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf2, 0xf3, 0x8a, 0xbb, 0x2a, 0x94, 0xec, 0x2, 0x91, 0xbb, 0xb8, 0x47, 0x83, 0xda, 0xe4, 0x7, 0x32, 0x98, 0x19, 0x9, 0x22, 0xec, 0xd7, 0x7e, 0x5d, 0x67, 0xf5, 0x20, 0x9d, 0x75, 0xef, 0x5f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0xe5, 0xe6, 0x5e, 0xb3, 0x8d, 0x7c, 0x34, 0x5, 0xbf, 0xe9, 0x71, 0x45, 0x48, 0x7, 0xa7, 0xaa, 0x67, 0xd5, 0x1e, 0x45, 0x4b, 0x78, 0xc9, 0x66, 0x5b, 0x35, 0x61, 0x8f, 0x22, 0xd8, 0x7d}} return a, nil } -var _epochAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\x4f\x6b\xc3\x30\x0c\xc5\xef\xfe\x14\x22\x87\x92\xc0\x48\xef\x65\x5b\xd9\xbf\xb2\xde\xca\x3a\x76\x57\x12\xb5\x36\x73\x2d\xa3\x28\x0d\x61\xf4\xbb\x8f\x24\x5d\x96\xea\x26\xfc\x9e\xde\xf3\xcf\x9d\x22\x8b\xc2\xc6\x73\xfb\x16\xb9\xb4\x70\x10\x3e\x41\x32\xed\x89\x99\x29\xb6\xaf\x9f\x58\x78\xda\x2b\x7e\xbb\x70\x9c\x49\x6f\x1f\x12\x63\x96\xcb\x25\xec\xb0\xab\x41\x2d\x81\x50\x8b\x52\xd5\x70\x60\x19\xf6\x28\x74\x76\xdc\xd4\x40\x7d\xc2\xa0\xdd\x1e\x6e\x94\x16\xcf\x04\xe8\x85\xb0\xea\xa0\x20\x0a\x10\xd1\x55\x77\xa3\x1b\xbb\x13\x05\x85\xd6\x79\x0f\x81\x15\x2c\xc6\x48\xc1\x18\x15\x0c\x35\x96\xea\x38\xc0\x8f\x01\x80\x3e\x28\xa2\x50\x5a\xbb\x63\x20\x59\x01\x36\x6a\xd3\x67\x16\xe1\xf6\x0b\x7d\x43\x19\x2c\x9e\xca\x92\x9b\xa0\xd9\xd5\xd1\x8f\x27\x05\x4b\x28\x5a\x10\x2a\x3c\xc0\xe8\xce\x6b\x65\xc1\x23\xe5\xc5\xe0\xbf\x5f\x4c\x88\xf2\xf7\x3f\xf1\x63\xda\x23\x59\xfd\xd3\xcc\xa7\x3b\xfb\xd1\xbd\x43\xb5\xd9\x94\xd4\xcf\x7a\x0d\x11\x83\x2b\xd3\xe4\x85\x1b\x5f\x0d\x3f\x1a\x23\x66\x25\x06\xd2\xd7\x02\x10\x51\x6d\x92\x99\xe9\xca\x24\xcb\x23\x76\x1f\x23\xc1\x0d\xcb\xee\x4a\x79\x28\x92\x8e\xa1\x17\x73\xf9\x0d\x00\x00\xff\xff\x18\x65\x13\x72\xf1\x01\x00\x00" +var _epochAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\xc1\x8a\xa3\x40\x10\x86\xef\x3e\x45\x91\xc3\x62\x60\x31\x7b\x0e\xbb\x1b\x9c\x68\x88\x30\xcc\x48\xf4\x32\xc7\x52\x2b\xe9\x66\x4c\x77\x53\x96\x71\x64\xc8\xbb\x0f\x6a\xe2\x64\xea\xd6\xf0\xfd\xf5\x55\xff\xfa\xec\x2c\x0b\xec\x6a\xdb\xc5\xce\x96\x0a\x8e\x6c\xcf\xf0\xe7\x23\x4e\x5f\xb7\xfb\x30\x8a\x0e\x71\x96\x79\x0f\x50\x12\xe5\x58\xd4\x94\x09\xbe\x6b\x73\xba\xd3\x49\x14\xbf\xe4\x49\xfe\x96\x87\x4f\xcf\xf1\x3d\xe5\xad\x56\x2b\x48\xb1\x6f\x40\x14\x01\x53\x87\x5c\x35\x70\xb4\x3c\xbe\x1d\xd3\x45\xdb\xb6\x01\x1a\xb4\x23\x9b\x1c\x7f\x90\x0a\x2f\x04\x58\x33\x61\xd5\x43\x41\x64\xc0\xa1\xae\x7e\x4f\x69\xec\xcf\x64\x04\x3a\x5d\xd7\x60\xac\x80\x42\xe7\xc8\x78\x9e\x30\x9a\x06\x4b\xd1\xd6\xc0\xa7\x07\x00\x83\xc8\x21\x93\xdf\xe8\x93\x21\x5e\x43\xd8\x8a\x0a\xcb\xd2\xb6\x46\x96\x37\x64\x98\x9a\x04\x14\x21\x4b\x41\x28\xf0\x0f\x26\x3c\x28\x2c\xb3\xed\xfe\xfe\x9a\x0b\x0a\xf6\x77\xe8\xbf\x3f\xfc\x7e\xfd\xdd\x5d\x30\xe7\x33\xb1\x8c\x27\x4a\x51\xd4\x72\x36\x0c\xb3\xd9\x80\x43\xa3\x4b\x7f\xb1\xb5\x6d\x5d\x8d\xa7\x4f\x8a\x07\xf9\x58\x6a\x33\xad\x00\x87\xa2\x16\x4b\x6f\xde\x32\x63\x81\xc3\xfe\x30\x55\xb5\xb3\x9c\xde\xea\x1c\x0f\xf1\x27\xe9\xd5\xbb\x7e\x05\x00\x00\xff\xff\x8c\x32\x25\xbc\xdf\x01\x00\x00" func epochAdminPay_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -1299,11 +1240,31 @@ func epochAdminPay_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/pay_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc5, 0x44, 0xb, 0xf, 0x17, 0x22, 0x70, 0x23, 0x47, 0x80, 0xe0, 0x8d, 0xa, 0x3c, 0x31, 0x58, 0xc8, 0xd8, 0xe5, 0x97, 0x7b, 0xb3, 0x3b, 0x2a, 0x68, 0x2, 0xa, 0xcf, 0xcb, 0xe8, 0x50, 0x83}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0x12, 0x23, 0x8e, 0xdb, 0x2b, 0x5a, 0x58, 0x1c, 0xdd, 0x6c, 0x42, 0xc0, 0xb7, 0x92, 0xf5, 0x52, 0x42, 0x73, 0xe4, 0xab, 0x3e, 0x1a, 0xa, 0xae, 0x60, 0x27, 0x7b, 0x5b, 0x49, 0x6e, 0x2b}} return a, nil } -var _epochAdminReset_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x6f\xdb\x38\x10\xbd\xeb\x57\x0c\x7c\xc8\xda\x88\x23\x23\xc0\x62\x0f\xc6\xee\x06\x59\x27\x0b\x04\xbd\xa4\x70\x9a\x4b\xd1\xc3\x48\x1a\x4b\x84\x25\x8e\xc0\x19\xc5\x35\x8a\xfc\xf7\x82\xa4\x3f\xa4\x42\x4d\xe2\x93\x49\xbe\xf7\xf8\xf8\xde\xc8\x34\x2d\x3b\x85\xff\x6b\xde\xdd\xb7\x9c\x57\xb0\x71\xdc\xc0\xe4\xb4\x9e\x24\x3d\xc4\xc3\xdd\x13\x66\x35\xad\x15\xb7\xc6\x96\x3d\xe8\xf0\x60\x92\x24\x8b\x05\x3c\x55\x04\x8e\x84\x34\xea\xaa\x43\x2b\x98\xab\x61\x0b\x64\x0b\x01\xad\x08\xf2\xce\x39\xb2\x0a\x14\x20\xc6\x86\xcd\xb3\x17\x69\xd0\x29\xe4\x6c\xd5\x61\xae\x5e\x14\x6d\x01\x19\x95\xc6\x0a\x20\x58\xda\x1d\x98\x3b\xa3\x55\xe0\x96\xe6\x85\xac\x67\x6c\x4c\xd9\x39\xf4\xb7\xa5\xc1\xc9\x19\x8b\xf5\x0e\xf7\x02\x15\x8a\x17\x0c\x2e\xb8\xb3\x4a\xee\xe8\x26\xdc\xbd\x8a\x7b\x97\xd7\x91\xde\x77\x2f\x64\x0b\x72\xd0\x74\xa2\xd0\x3a\x7e\x31\x05\x05\x19\x2f\x37\x22\x01\xd3\x8c\x36\xec\x22\x26\x04\x02\x8a\x5b\x12\x68\x6b\xcc\x69\x06\xe8\x9f\x22\xb8\x21\xdd\x43\x43\x79\x85\xd6\x48\x93\x26\x8b\x85\xd7\xbb\xeb\x9c\x4f\xda\x92\xee\xd8\x6d\x41\x5a\x76\x5b\x99\x07\xa9\x8c\x59\x45\x1d\xb6\x2d\x15\xde\x87\x72\xce\x35\x88\xa2\x12\x18\xf1\x61\xc6\x84\x62\x94\xd3\xd1\xc7\xcd\xe6\xc7\x50\x7b\x4d\x19\x81\x4e\xa8\x00\x65\xf0\x6e\xca\xe8\x3c\x86\x77\x8c\xea\x03\x55\x85\xe9\x18\xcb\x43\x79\xd4\x0d\x5c\xc2\xf5\x6c\x0e\xc2\xa0\x15\x2a\x18\xfd\x43\xbc\x9e\x18\x51\x3f\x22\xa1\xe2\x63\x63\x6f\xbc\x3d\x8d\xb3\x67\x64\xd8\x59\xc5\x5d\x5d\x00\xdb\x7a\x0f\x19\xc5\xf7\x9d\x86\x86\x3b\x6d\x3b\x05\xde\x0c\xb5\xa1\x53\x53\x1b\xdd\x2f\xbd\x22\x84\xd5\x21\x85\x10\xd6\x95\x7e\xbf\x42\x57\x4a\x92\xf4\x2e\x1a\x7b\xd8\x12\xbe\x3c\x58\xfd\xeb\xcf\x79\x02\xbd\x9f\x43\x5b\x70\xb3\xe6\xce\xe5\xb4\x84\xb5\xfa\x9e\x87\x08\x51\x74\xfa\x6c\x68\x37\x2e\x20\xf1\x63\xbb\xb7\xc5\xef\x31\x34\x3c\x9c\xc1\x8f\x24\x9c\xb7\x8e\x5a\x74\x34\x15\x53\x5a\x6f\x10\x3b\xad\xa6\xff\xb1\x73\xbc\x7b\xc6\xba\xa3\x19\x5c\xdc\xe6\xa1\x6b\x4f\x39\xaa\xd5\x74\xf8\x52\x6f\x8b\xc6\x58\xf8\x07\x22\x3d\x15\x65\x87\x25\xa5\x59\x10\xf8\xfb\xe2\x34\x15\x69\x00\xfe\x3b\xf5\xa3\xb0\x3c\x0f\x4b\x8a\x7e\x7b\x1d\x59\x8f\xa8\xd5\x6c\x60\xfa\xe6\x06\x5a\xb4\x26\x9f\x4e\x56\xa1\x34\xcb\x0a\x51\x1a\x2a\x42\xa7\x19\xa1\xc6\xe9\x3a\x5c\x0c\x2d\x6a\x35\x99\x25\x27\x95\xb3\xc9\xf4\x3c\xd7\xe3\xd5\x8c\x6c\x0e\x23\xfc\xf5\x37\xec\xad\xbf\x7a\x9b\xd7\xaf\xf3\xf4\xf7\x7d\xca\xa0\xe2\xe1\xfa\x1d\xf2\xa9\x7b\xfa\x10\x3c\xe7\xba\xa6\x5c\xd9\xad\xea\x4e\x94\x9c\x2c\xe1\xeb\xb7\xf7\x38\x11\xfa\x79\xf5\x11\x70\xb1\x2d\x1f\xbb\xec\x13\xed\x03\x38\x56\xfe\x9a\xbc\x26\x3f\x03\x00\x00\xff\xff\x12\x4d\x3d\x2b\x82\x06\x00\x00" +var _epochAdminRecover_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x6f\xdb\x38\x10\xbd\xfb\x57\x0c\x72\x58\x38\xc0\xc6\xd9\xc3\x62\x0f\xc6\xb6\x81\x6b\x3b\xa8\xd1\xaf\xa4\x76\x03\x14\x41\x0e\x63\x6a\x6c\x11\xa1\x38\xc2\x70\x14\xc5\x28\xf2\xdf\x0b\x4a\xb2\x2d\xd9\x69\x5d\x9d\xc8\xe1\x7b\x8f\x4f\xc3\x37\x36\xcb\x59\x14\xae\x1d\x97\xd3\x9c\x4d\x0a\x2b\xe1\x0c\xfe\x79\x9e\xde\x7c\x19\xbf\x1f\x4d\x26\x5f\xa7\xf3\x79\xaf\x05\x9a\x4d\x16\xb8\x74\x34\x57\x7c\xb4\x7e\xbd\x45\xcf\x26\xd3\xcf\x8b\xd9\xe2\xfb\x62\xf4\xee\xe3\xf4\x15\xd6\xd8\x15\x41\x49\x6e\xc7\x5b\xc2\xed\x78\x8b\xba\xbc\x84\x45\x4a\x20\x64\xf8\x89\xa4\xf6\xa0\x82\x3e\xa0\x51\xcb\x1e\x8c\x10\x2a\x05\x40\x9f\x40\x50\x14\x0d\x80\xe0\xa9\x04\xaa\xa0\xd6\x83\xa6\xd4\xf2\x1f\x32\x14\x05\xc3\x5e\x05\x8d\x46\x79\x65\x28\x53\x6b\x52\x28\xad\x73\xb0\x62\x31\x54\x71\x3c\x69\xc9\xf2\x08\xf4\x6c\x15\xa6\xd7\x9f\x06\xc7\x46\x02\xc9\x93\x35\x04\xf4\x44\x5e\x6b\xfe\x92\x80\x32\xab\x4a\x09\x44\xf1\x68\x2b\x17\x36\x14\x02\x25\xb0\xdc\x00\x3a\x17\x0b\xca\x86\x1d\xe4\x28\x6a\x8d\xcd\xd1\x6b\xfd\x07\x84\x26\x6d\x57\x6b\xcd\x22\x4f\x50\x2b\x53\x56\xf6\xe4\x28\x1f\x34\x1e\x94\x56\xd3\xc6\x72\x09\xb5\xb3\x04\x15\x07\x75\xf3\x6c\xe8\x34\x2c\xa4\x5c\xb8\x04\xd8\xbb\x4d\x34\x5b\x44\x5f\x3b\x01\x2e\x34\x2f\x14\x78\x55\xed\x96\xcc\x1a\x54\x30\x87\x42\xad\xb3\xba\x19\x46\x45\xa8\x76\x4d\x7f\x69\x95\x5d\x34\x2d\xb9\xd0\xe7\x0b\x94\x75\xe8\xb5\x6e\xeb\x0b\xfa\x84\xb3\x39\x17\x62\x68\x08\x73\x15\xeb\xd7\x7f\xf7\xa0\xf5\x55\x8f\x76\x67\xa9\x1c\xc2\xb7\x99\xd7\xff\xfe\x3d\x3a\x8e\x49\x9a\xfa\xe4\xd7\x18\xfa\xdd\xa1\x61\xe7\xc8\x28\x4b\x13\xb2\x30\x84\xfb\xfb\xda\xc8\xc3\xc3\x01\x74\x1b\xc3\x3b\x56\x9a\xa0\xe2\x10\xee\x3b\xf1\x1c\x8c\x0f\x11\x07\x0a\xc9\xe3\xfa\xa6\x58\x7e\xa0\x4d\xbc\xa5\xb9\xa4\x8b\xf0\x9c\xd0\x6c\xd2\x3a\x3e\x87\x1f\xbd\x0a\x91\x0b\xe5\x28\xd4\x0f\x76\xed\x49\x86\x30\x2a\x34\x1d\x19\xc3\x85\xd7\x88\xd9\x0a\x38\xd2\xba\xf7\xa3\x24\xb3\x1e\xde\x40\x8d\x1f\x2c\x59\x84\xcb\xff\xff\xda\x45\x7d\x50\x01\xde\xf6\xe3\x48\x0d\xf7\x13\x30\xc0\x58\x9e\x2b\x0b\xae\xe9\x06\x35\x3d\xef\xf8\xbb\xba\x82\x1c\xbd\x35\xfd\xb3\x71\x95\x13\xcf\x0a\xb5\x74\xf3\xe2\x15\xbd\x9e\xd3\x50\x8b\x40\x8e\x9a\x9e\x9d\xf7\x76\x3a\x7b\x7b\x83\xf6\xb8\x1c\x84\xa1\xbd\xeb\xf6\xe8\xe8\x6b\x65\x64\xb7\x3c\x4d\xe9\xe4\xa6\xbb\x3f\x41\xde\x05\x8a\xfe\x08\xfe\x4a\xc4\x8e\x4a\xa7\x24\x8e\xa3\x77\x54\x3a\x21\xd1\xce\xde\x7e\x7d\x82\xb4\x8b\x63\xb3\xa8\xc3\xf0\xd2\x7b\xe9\xfd\x0c\x00\x00\xff\xff\x70\xfb\xb8\xdc\xfa\x05\x00\x00" + +func epochAdminRecover_epochCdcBytes() ([]byte, error) { + return bindataRead( + _epochAdminRecover_epochCdc, + "epoch/admin/recover_epoch.cdc", + ) +} + +func epochAdminRecover_epochCdc() (*asset, error) { + bytes, err := epochAdminRecover_epochCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "epoch/admin/recover_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf2, 0x75, 0xc7, 0x49, 0x25, 0x51, 0x5e, 0x42, 0x19, 0xce, 0x5e, 0x11, 0xe8, 0x8b, 0x3b, 0x57, 0x45, 0xc2, 0xf9, 0xd0, 0xed, 0x9, 0xb6, 0x2f, 0x6b, 0x9f, 0x57, 0xf2, 0x5, 0xb9, 0x32, 0xc2}} + return a, nil +} + +var _epochAdminReset_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x5d\x6f\xdb\x46\x10\x7c\xe7\xaf\x58\xf8\xa1\x95\x60\x59\xaa\x81\xa2\x0f\x42\x5b\x43\x95\x54\x54\x68\xd1\xba\x91\x12\x20\x08\xf2\xb0\x24\x57\xe4\x41\xe4\x2d\x71\xbb\xb4\x2c\x04\xfe\xef\xc1\xdd\x59\x1f\x0c\x18\xdb\x7c\xe2\x1d\x67\xe6\xe6\x66\x96\xa6\x6e\xd8\x29\xfc\x59\xf1\x7e\xd9\x70\x56\xc2\xd6\x71\x0d\x3f\x3d\x2e\xef\xff\x9b\xff\x35\x5b\x2c\xde\x2d\xd7\xeb\xe4\x02\xb4\x5a\x6c\x30\xad\x68\xad\xb8\x33\xb6\x38\xa2\x57\x8b\xe5\xbf\x9b\xd5\xe6\xe3\x66\xf6\xc7\x3f\xcb\x23\x2b\x99\x4c\x60\x53\x12\x38\x12\xd2\x28\xae\x0e\xad\x60\xa6\x86\x2d\x90\xcd\x05\xb4\x24\xc8\x5a\xe7\xc8\x2a\x50\x80\x18\x1b\x36\xcf\x86\xa4\x46\xa7\x90\xb1\x55\x87\x99\x7a\x51\xb4\x39\xa4\x54\x18\x2b\x80\x60\x69\xff\xcc\xdc\x1b\x2d\x03\xb7\x30\x0f\x64\x3d\x63\x6b\x8a\xd6\xa1\x3f\x6d\x1c\x9c\x9c\xb1\x58\xed\xf1\x20\x50\xa2\x78\xc1\xe0\x82\x5b\xab\xe4\x8e\x6e\xc2\xd9\xf3\xb8\x77\x7d\x1b\xe9\x97\xee\x85\x6c\x4e\x0e\xea\x56\x14\x1a\xc7\x0f\x26\xa7\x20\xe3\xe5\x7a\x24\x60\x90\xd2\x96\x5d\xc4\x84\x40\x40\x71\x47\x02\x4d\x85\x19\x0d\x01\xfd\x55\x04\xb7\xa4\x07\xa8\x29\x2b\xd1\x1a\xa9\xc7\xc9\x64\xe2\xf5\x16\xad\xf3\x59\x5b\xd2\x3d\xbb\x1d\x48\xc3\x6e\x27\xa3\x20\x95\x32\xab\xa8\xc3\xa6\xa1\xdc\xfb\x50\xce\xb8\x02\x51\x54\x02\x23\x3e\xcc\x98\x50\x8c\x72\xd0\x7b\xb9\xe1\xe8\x18\xea\x45\x53\x46\xa0\x15\xca\x41\x19\xbc\x9b\x22\x3a\x8f\xe1\x1d\xa3\x7a\x43\x55\x61\x3e\xfa\xf2\x50\xee\x75\x03\xd7\x70\x3b\x1c\x81\x30\x68\x89\x0a\x46\x7f\x14\xaf\x27\x46\xd4\x8f\x48\xa8\xf8\xd8\xd8\x0b\x77\x1f\xc7\xd9\x33\xd2\xed\xac\xe4\xb6\xca\x81\x6d\x75\x80\x94\xe2\xfd\x4e\x43\xc3\xad\x36\xad\x02\x6f\xbb\xda\xd0\xaa\xa9\x8c\x1e\xa6\x5e\x11\xc2\xea\x39\x85\x10\xd6\x8d\x3e\xde\xa0\x2b\x24\x49\x2e\x0e\xea\xbb\xd8\x14\xde\xaf\xac\xfe\xf2\xf3\x28\x81\x8b\xc7\xa1\xcd\xb9\x5e\x73\xeb\x32\x9a\xc2\x5a\x7d\xcf\x5d\x84\x28\x3a\xfd\x60\x68\xdf\x2f\x20\xf1\x3f\x5c\xda\xfc\xfb\x18\xea\x7e\x1c\xc2\x97\x24\x7c\x6f\x1c\x35\xe8\x68\x20\xa6\xb0\xde\xe0\xac\xd5\x72\x96\x85\x72\x3d\xe6\x48\xaf\xe8\xf9\xd7\x9c\xe5\xb5\xb1\xf0\x1b\x44\xfc\x38\x65\xe7\x78\xff\xeb\x0f\xa7\xfa\xc7\x01\xf0\xfb\xc0\x77\x3e\x3d\x4f\xc5\x18\xfd\xf6\x5a\xd9\x61\x41\xf7\xa8\xe5\xb0\xe3\xee\xee\x0e\x1a\xb4\x26\x1b\x5c\xcd\x43\x3b\x96\x15\xa2\x34\x94\x84\x4e\x53\x42\x8d\x63\x24\x51\x02\x1a\xd4\xf2\x6a\x98\x9c\x54\xce\xe6\xc6\xe7\x01\xee\xef\xa0\x67\xb3\x9b\xd5\xb7\x4f\xb7\xa0\xcb\xd5\xcb\xbc\xcb\xde\x4e\xaf\xaf\x53\x3a\x5d\x76\xd7\xaf\x90\x4f\x25\xd3\x9b\xe0\x19\x57\x15\x65\xca\x6e\x5e\xb5\xa2\xe4\x64\x0a\x9f\x3e\xbf\xc6\x89\xd0\xff\xe7\x6f\x01\xe7\xbb\xe2\xbe\x4d\xff\xa6\x43\x00\xc7\xca\x9f\x92\xa7\xe4\x6b\x00\x00\x00\xff\xff\x5f\x6f\xdc\x53\x70\x06\x00\x00" func epochAdminReset_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1319,11 +1280,11 @@ func epochAdminReset_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/reset_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe8, 0x2c, 0xf0, 0xa9, 0xd5, 0x3f, 0xb4, 0x42, 0x85, 0x42, 0x5a, 0xbb, 0xe2, 0x54, 0xb2, 0xdd, 0x90, 0x88, 0xc7, 0x55, 0xbe, 0x47, 0x6b, 0x78, 0xd0, 0xf3, 0x25, 0x54, 0xf6, 0xe9, 0x7a, 0x2b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0x3, 0xd, 0x2d, 0x73, 0x2d, 0x6f, 0xa5, 0xfa, 0x8b, 0xb6, 0x7, 0xd9, 0x10, 0xd9, 0x12, 0xf5, 0x76, 0x4e, 0x50, 0x36, 0x2b, 0xb, 0x70, 0x17, 0xa7, 0x9c, 0xda, 0x7c, 0x8c, 0xbd, 0x7a}} return a, nil } -var _epochAdminSet_automatic_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xb1\x4e\xc4\x30\x10\x44\xfb\x7c\xc5\x2a\xc5\x29\x69\xfc\x01\x11\x70\xca\xa1\xa3\x46\x20\xd1\xef\xd9\xcb\xc5\x92\xe3\xb5\x36\x6b\xa5\x40\xf7\xef\xc8\x31\xe4\x1a\x98\xce\x96\x67\xe6\x79\xfc\x9c\x58\x14\x5e\x02\xaf\xe7\xc4\x76\x82\x4f\xe1\x19\xda\xfd\xdc\x36\x8d\x0a\xc6\x05\xad\x7a\x8e\x1d\x66\xe5\x19\xd5\xdb\x37\x5a\x51\xdc\x72\x8e\x78\x09\xe4\x06\x38\x31\x87\x1e\xbe\x1a\x00\x80\x24\x94\x50\xa8\x5b\xfc\x35\x92\x0c\x80\x59\xa7\xee\xc4\x22\xbc\x7e\x60\xc8\xd4\xc3\x61\xb4\x96\x73\xd4\x5f\x47\x51\x20\x05\x2a\x95\xa3\x9b\x7d\x84\x47\xa8\x76\xb3\x28\x0b\x5e\xc9\x5c\xb6\x80\x87\xc3\x8e\x66\xb6\x87\x4f\x5d\x21\x1e\xee\x3f\x30\x58\xae\xdf\xab\xeb\x15\x75\xea\xf7\x8a\xa2\xe3\x11\x12\x46\x6f\xbb\xf6\x99\x73\x70\x10\x59\xa1\x46\xc3\x66\xac\x03\xfc\x94\x42\x42\x9d\xda\xbe\xd9\x13\xee\x80\x26\x27\x87\x4a\xe3\xdf\x83\xfc\x37\x54\x65\xb9\x35\xb7\xef\x00\x00\x00\xff\xff\x14\xdd\x64\x3c\x78\x01\x00\x00" +var _epochAdminSet_automatic_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\x25\x87\xe2\x5c\x4c\xcf\xa6\x6d\x50\x13\x97\xde\x1a\xe2\x2f\xd8\x48\x6a\x2c\x90\xb5\x62\xbd\xc2\x85\x92\x7f\x2f\x8a\xa8\x73\x69\xe7\x28\x66\x46\x6f\xd6\x4f\x89\x58\xe0\x2d\xd0\xd2\x27\x32\x23\x7c\x32\x4d\xf0\xf8\xd5\x1f\x3f\xf6\xef\xfa\x70\x38\xf5\xc3\xa0\x94\x30\xc6\x19\x8d\x78\x8a\x0d\x66\xa1\x09\xc5\x9b\x93\x5b\x90\xed\xdc\x47\x3c\x07\x67\x3b\x78\x25\x0a\x5b\xf8\x56\x00\x00\x89\x5d\x42\x76\xcd\xec\x2f\xd1\x71\x07\x3a\xcb\xa8\x8d\xa1\x1c\xe5\xd7\x52\x14\x9c\x80\x2b\xdf\x6a\x3b\xf9\x08\xcf\x50\xfd\xed\x99\x98\x69\x79\x7a\x58\xb1\xda\x9b\xe1\xa5\x29\x74\xdd\x9d\xb6\xc5\xf2\x3c\x08\x31\x5e\xdc\x11\x65\xdc\xae\xd5\x45\xbb\x1d\x24\x8c\xde\x34\x9b\x3d\xe5\x60\x21\x92\x40\xad\x86\x5b\xb0\x8e\x9d\x6b\x1c\x12\xca\xb8\xd9\xaa\xb5\xe1\x0e\xd6\xe6\x64\x51\x9c\xfe\x7b\xf9\x7f\x17\xa9\x2c\x57\x75\xfd\x09\x00\x00\xff\xff\xac\x8e\x3a\x7a\x64\x01\x00\x00" func epochAdminSet_automatic_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -1339,11 +1300,11 @@ func epochAdminSet_automatic_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/set_automatic_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xd6, 0xdc, 0xeb, 0xa4, 0xe1, 0xef, 0xb3, 0x7b, 0x5, 0x20, 0x54, 0xbe, 0xeb, 0xff, 0x1b, 0x2a, 0xcd, 0xde, 0xf5, 0x11, 0xeb, 0x9e, 0x29, 0xb, 0xa3, 0x57, 0x6f, 0x14, 0x6d, 0xa8, 0x16}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x79, 0x9, 0x8e, 0xe5, 0x32, 0xcb, 0x3e, 0x61, 0xd5, 0x8a, 0x3c, 0xd2, 0xdb, 0x86, 0x84, 0x19, 0x2c, 0xb6, 0x67, 0x7b, 0xac, 0x61, 0x5f, 0x6, 0x64, 0xc2, 0xd, 0x5a, 0x24, 0x94, 0x6b}} return a, nil } -var _epochAdminSet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x31\xcb\xdb\x30\x10\x86\x77\xff\x8a\x77\x2a\x0e\x84\x78\x29\x1d\x42\x29\xa4\xd0\x4c\x85\x0e\x49\xe9\x7c\x96\x2f\xb1\xa9\x22\x99\xd3\xc9\xae\x5b\xf2\xdf\x8b\x64\xbb\xa4\xf9\xf8\xe0\xf3\xe0\x41\xf7\xdc\xa3\xf7\x74\x45\x55\x55\x38\xd1\xc0\x01\xe4\x40\x37\x1f\x9d\x42\x3d\x82\x7a\xa1\x2b\x43\x5b\x52\x08\xf7\xc2\x81\x53\xa5\xe5\x05\xca\x8d\xfe\x82\xda\xbb\x18\xa0\xfe\x27\xbb\x30\xd3\x2d\x0d\x8c\x89\xb3\xa6\x66\xd4\x51\x1c\x37\x19\x3f\xb7\x5d\x58\xef\xe8\x02\x42\xac\x55\xc8\x28\x37\xb8\x88\xbf\x65\xb9\x7a\x25\x8b\x10\xfb\xde\x4e\x49\x7f\xfc\xfa\xed\x47\xee\x1d\x5b\x76\x3c\xb0\x80\xe0\x78\x5c\x38\xe1\x91\xa4\x79\x74\x1a\xb2\x26\x5a\x4a\xce\x44\x4f\xe0\xde\x9b\x36\x1b\x6a\x36\x14\x43\x1a\x89\x27\x90\x30\x9c\x57\xdc\x98\xdc\x9a\x94\xd0\x93\x68\xba\xf5\x39\x49\xee\xcf\xbf\x2f\x03\x3b\x8d\x64\xed\xb4\x05\x59\xfb\xff\xf8\x63\x97\x4e\xd6\x91\x41\xae\x79\x78\xb0\x7f\xd5\xdf\x2c\xbe\x28\x54\xc8\x05\x32\xda\x79\x57\x66\xc9\x39\x39\x0e\x19\xdd\xe3\xfb\xb1\xfb\xf5\xe1\xfd\x06\x7f\x0a\x00\xe8\x85\x7b\x12\x2e\x43\x77\x75\x2c\x7b\x50\xd4\xb6\x3c\xcd\x1b\xda\xe0\xdd\xc1\x98\xd4\xb5\xd2\xe9\x9b\xc9\xdd\xb2\xc5\x9d\xf5\xd4\x7c\x9c\x9d\x9f\xca\xf4\xd6\x7b\x54\x4b\xad\x3a\x5a\x3f\x7e\x7e\x0a\xb0\x79\x4d\x14\x68\xe0\x17\x71\xb7\x50\xff\x26\xe1\xbd\xb8\xff\x0d\x00\x00\xff\xff\x6b\x0e\xc9\x02\x70\x02\x00\x00" +var _epochAdminSet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xcf\x8a\xdb\x30\x10\x87\xef\x7e\x8a\xdf\x31\x81\x50\x5f\x4a\x0f\xa1\x14\x52\x68\x4e\x85\x1e\x9a\xd2\xf3\x58\x9e\xc4\xa6\x8a\xc6\x8c\x46\x76\xbd\x4b\xde\x7d\x91\x12\x2f\xd9\xec\x65\x75\xd0\x41\xf3\xcd\x37\x7f\x54\xd5\x75\x8d\xdf\x34\x72\x04\x05\xd0\x59\x52\x30\x98\x20\x9a\x28\x9d\x18\xd6\x91\x41\x79\x50\x8e\x9c\x23\x1d\xdf\xa0\x92\x28\x47\x34\x12\x52\x84\xc9\x3f\x0e\xf1\x4a\x77\x34\x32\x66\x2e\x9a\x86\xd1\x24\x0d\xdc\x16\xfc\xd0\xf5\x71\xa9\xd1\x47\xc4\xd4\x98\x92\x33\x6e\x71\x54\x39\x17\xb9\x89\x91\x47\x4c\xc3\xe0\xe7\xac\xdf\xff\xfc\xf5\xb7\xe4\x4e\x1d\x07\x1e\x59\x41\x08\x3c\xdd\x38\xe5\x89\xb4\xbd\x77\x3a\xf2\x2e\x79\xca\xce\x4c\xcf\xe0\x41\x5c\x57\x0c\x0d\x3b\x4a\x31\x8f\xc4\x33\x48\x19\x41\x0c\x67\xa6\xb0\x74\x4a\x18\x48\x2d\x57\x7d\xec\xa4\xe4\x97\xeb\xc7\xc8\xc1\x12\x79\x3f\x6f\x40\xde\xbf\x1d\x7f\xea\xf3\xcb\x32\x32\x28\xb4\x77\x0b\x7b\x8d\x3e\xb1\x4a\x55\x99\x52\x88\xe4\xac\x97\xb0\x2a\x92\x43\x76\xec\x0a\xba\xc5\x9f\x7d\xff\xff\xcb\xe7\x35\x9e\x2b\x00\x18\x94\x07\x52\x5e\xc5\xfe\x14\x58\xb7\xd8\x25\xeb\x76\xce\x65\x74\x41\xf2\xb9\x86\x3f\x79\xa1\xf6\xeb\x55\xf0\x6d\x95\x17\xbb\x45\x7d\xfb\xce\x7a\xef\x65\xfa\xfe\x50\x6d\xfd\x28\x88\x34\xf2\xbb\x9e\x36\x30\xf9\x90\xe8\x52\x5d\x5e\x02\x00\x00\xff\xff\x15\x31\xd0\x69\x55\x02\x00\x00" func epochAdminSet_bonus_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1359,11 +1320,11 @@ func epochAdminSet_bonus_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/set_bonus_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0x59, 0x6d, 0x99, 0x1b, 0x9b, 0xe3, 0x7f, 0xac, 0xcc, 0x5b, 0x8e, 0xfc, 0xda, 0x10, 0xa3, 0xe1, 0x8e, 0x81, 0xf0, 0xde, 0xd9, 0x1e, 0x8c, 0x3c, 0xa0, 0x15, 0x29, 0xfc, 0x2f, 0x7f, 0xc1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x20, 0x8f, 0x73, 0xe4, 0xb3, 0x15, 0xd3, 0xb1, 0x4a, 0x58, 0xdb, 0xc7, 0xc6, 0x1a, 0xca, 0x74, 0x57, 0xfc, 0xb2, 0x4c, 0x2d, 0x98, 0xfb, 0x8c, 0xc1, 0x95, 0xfe, 0xf4, 0xf6, 0xd8, 0x29, 0xc4}} return a, nil } -var _epochAdminUpdate_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xf4\x30\x10\x86\xef\xfd\x15\x43\x0f\x4b\x7b\x09\x7c\x97\xef\x50\xd4\x65\x5d\x14\xbc\x88\x20\x7a\x1f\xd3\x71\x1b\x48\x33\x61\x32\xa1\x07\xd9\xff\x2e\x69\xb4\x05\xe7\x96\x90\x67\xde\x27\xaf\x9b\x23\x8b\xc2\xa3\xe7\xe5\x21\xb2\x9d\xe0\x53\x78\x86\x76\x3b\xb7\x4d\xa3\x82\x21\xa1\x55\xc7\xa1\x0b\xb4\x3c\xe7\xf9\xec\x73\x52\x92\x34\xc0\xdb\x53\xd0\x7f\xff\x7b\xf8\x6a\x00\x00\xa2\x50\x44\xa1\x2e\xb9\x4b\x20\x19\x00\xb3\x4e\xdd\x3d\x8b\xf0\xf2\x8e\x3e\x53\x0f\x87\x93\xb5\x9c\x83\x16\x62\x45\xca\x78\x52\xa0\x12\x76\x1a\x67\x17\xe0\x16\x2a\x6f\x92\xb2\xe0\x85\xcc\xc7\xba\xe1\xe6\xb0\x49\x99\xf5\xe1\x5d\x57\x5c\x87\xdd\xdd\x60\xb9\x7e\xad\xd4\x0b\xea\xd4\x6f\x11\x65\x8e\x47\x88\x18\x9c\xed\xda\x33\x67\x3f\x42\x60\x85\xba\x1a\x56\xb0\x7e\xfd\x27\x14\x22\xea\xd4\xf6\xbb\xe4\x2e\x68\x72\x1c\x51\xa9\xf4\xc0\xde\x93\x55\x96\xdf\x42\xfe\xf4\x53\xf3\xaf\xcd\xf5\x3b\x00\x00\xff\xff\xa4\x93\x38\x91\x66\x01\x00\x00" +var _epochAdminUpdate_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xcf\x4a\xc4\x30\x10\xc6\xef\x7d\x8a\x61\x0f\xd2\x5e\x8a\x5e\x3c\x14\x75\x29\xdd\x8a\x5e\x74\xb1\xf8\x00\x31\x1d\xb7\x81\x34\x13\x26\x13\x2a\xc8\xbe\xbb\xa4\xc1\x2d\xec\x1c\xc3\xf7\xe7\xf7\xc5\xcc\x9e\x58\xe0\xd9\xd2\xd2\x7b\xd2\x13\x7c\x33\xcd\x70\xfb\xd3\x1f\xdf\xbb\x97\xf6\x70\xf8\xe8\x87\xa1\x28\x84\x95\x0b\x4a\x8b\x21\x57\x3a\x5c\xde\xe2\xdc\xd9\x18\x04\x39\x34\xf0\xf9\xea\xe4\xee\xbe\x82\xdf\x02\x00\xc0\x33\x7a\xc5\x58\x06\x73\x72\xc8\x0d\xb4\x51\xa6\x56\x6b\x8a\x4e\x92\x64\xd5\xa4\xb3\x28\x80\xa9\xb0\x1d\x67\xe3\xe0\x11\xb2\xa1\xfe\x22\x66\x5a\x1e\x6e\x2e\x40\xf5\x2a\x78\x2a\x13\x57\xb3\x71\xd6\x2a\x3d\x0f\x42\xac\x4e\x78\x54\x32\x55\x97\xe8\x74\xfb\x3d\x78\xe5\x8c\x2e\x77\x1d\x45\x3b\x82\x23\x81\x1c\x0d\xab\x31\xcf\x0c\xd9\x0e\x5e\xc9\xb4\xab\x36\xb8\x0d\xac\x8e\x7e\x54\x82\x69\x30\x59\x8b\x5a\x88\xff\x97\x5f\x7d\x44\xee\x3f\x17\xe7\xbf\x00\x00\x00\xff\xff\x03\xa4\x2c\x1e\x52\x01\x00\x00" func epochAdminUpdate_clustersCdcBytes() ([]byte, error) { return bindataRead( @@ -1379,11 +1340,11 @@ func epochAdminUpdate_clustersCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_clusters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0x2d, 0x63, 0x8c, 0xa3, 0x90, 0x7, 0x27, 0x5f, 0x26, 0x35, 0x5c, 0xa4, 0x14, 0xfc, 0xe7, 0x15, 0xcf, 0x58, 0xf0, 0x63, 0xa9, 0x64, 0xac, 0x59, 0x2f, 0x89, 0xc9, 0x99, 0x40, 0x69, 0xf8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0x82, 0xa2, 0x21, 0x78, 0x90, 0x2d, 0xd5, 0x9d, 0xdb, 0x39, 0x32, 0x8a, 0x6b, 0x70, 0xe, 0xed, 0xcc, 0x2a, 0xd2, 0xba, 0x87, 0xd4, 0xdb, 0x78, 0xa5, 0x5a, 0x3a, 0xb7, 0xf5, 0xe9, 0x5a}} return a, nil } -var _epochAdminUpdate_dkg_phase_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\x4d\x4b\xc4\x30\x10\x86\xef\xfd\x15\x43\x0f\x4b\x7a\xc9\x49\x3c\x14\x75\x59\x3f\x11\x2f\x0b\xe2\xde\xc7\x74\xdc\x04\xda\x4c\x48\x26\xf4\x20\xfb\xdf\x25\x8d\xb6\x38\xb7\x84\xbc\xef\xf3\x64\xdc\x14\x38\x0a\x3c\x8f\x3c\x3f\x05\x36\x16\xbe\x22\x4f\xd0\xae\xe7\xb6\x69\x24\xa2\x4f\x68\xc4\xb1\x57\x9e\xe6\xa3\xc5\x44\x27\x47\x73\xea\xe1\xe3\xd5\xcb\xf5\x55\x07\xdf\x0d\x00\x40\x88\x14\x30\x92\x4a\xee\xec\x29\xf6\x80\x59\xac\xba\xe7\x18\x79\x3e\xe1\x98\xa9\x83\xdd\xc1\x18\xce\x5e\xfe\x12\x65\x46\x12\xa0\x82\x3a\x0c\x93\xf3\x70\x0b\x35\xae\x93\x70\xc4\x33\xe9\xcf\xa5\xe0\x66\xb7\x2a\xe9\xe5\xe1\x9d\x2a\xa6\xfd\x66\xae\xb1\x5c\xbf\xd7\xd4\x11\xc5\x76\x2b\xa2\xcc\x7e\x0f\x01\xbd\x33\xaa\x7d\xe0\x3c\x0e\xe0\x59\xa0\x56\xc3\x12\xac\x1f\xff\x85\x42\x40\xb1\x6d\xd7\xac\x0d\x9b\xa0\xce\x61\x40\xa1\xc7\xb7\x97\x6d\x11\xff\xd7\x52\xb9\x97\xe6\xf2\x13\x00\x00\xff\xff\x94\xd7\x29\x1e\x5c\x01\x00\x00" +var _epochAdminUpdate_dkg_phase_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\x4d\x4b\xc4\x30\x10\x86\xef\xfd\x15\xc3\x1e\xa4\xbd\x14\x0f\xe2\xa1\xa8\x4b\xd9\xd6\x0f\x3c\x58\x2c\x7a\x1f\xd3\x71\x13\x68\x33\x21\x99\x52\x41\xf6\xbf\x4b\x36\xd8\xb2\x73\x1c\xde\x8f\xe7\x35\x93\x63\x2f\xf0\x38\xf2\xd2\x3a\x56\x1a\xbe\x3d\x4f\x70\xfd\xd3\x76\x6f\x87\xe7\xba\x69\xde\xdb\xbe\xcf\x32\xf1\x68\x03\x2a\x31\x6c\x73\x4b\x4b\xa7\x31\xd0\xa7\xa1\x25\x54\xf0\xf1\x62\xe5\xf6\xa6\x80\xdf\x0c\x00\xc0\x79\x72\xe8\x29\x0f\xe6\x68\xc9\x57\x50\xcf\xa2\x6b\xa5\x78\xb6\xf2\x2f\x89\x37\x92\x00\xc5\xba\x7a\x98\x8c\x85\x7b\x48\xfa\xf2\x8b\xbd\xe7\xe5\xee\x6a\xc5\x29\xcf\x82\x87\x3c\x52\x55\x1b\x65\x89\xf1\xdd\x0b\x7b\x3c\x52\x87\xa2\x8b\x35\x3a\xde\x7e\x0f\x0e\xad\x51\xf9\xee\xc0\xf3\x38\x80\x65\x81\x14\x0d\x67\x63\x1a\x19\x92\x1d\x1c\x8a\xde\x15\xd9\x9a\xb0\x81\x95\xb3\x1b\x50\xa8\x79\x7d\xda\x16\x5f\xee\x4f\xbd\xa7\xec\xf4\x17\x00\x00\xff\xff\xe0\xf6\x16\x5e\x48\x01\x00\x00" func epochAdminUpdate_dkg_phase_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1399,11 +1360,11 @@ func epochAdminUpdate_dkg_phase_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_dkg_phase_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x82, 0xa0, 0x30, 0xce, 0xb4, 0x51, 0x7b, 0xb0, 0x89, 0x4c, 0xa1, 0x7c, 0x59, 0xaa, 0xcd, 0x18, 0xb8, 0x5d, 0x4a, 0xb, 0xca, 0x8f, 0x30, 0x58, 0xd0, 0xa4, 0x14, 0x7c, 0x48, 0x80, 0x98, 0x3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xff, 0x12, 0x5a, 0x44, 0xb8, 0xd5, 0xb8, 0x5, 0x2a, 0xd0, 0x45, 0x97, 0xa7, 0x29, 0x2a, 0x1a, 0x76, 0xdd, 0x50, 0x3e, 0x12, 0x2a, 0xfc, 0xbe, 0x96, 0x57, 0xce, 0x5, 0x83, 0xbd, 0xfa, 0x43}} return a, nil } -var _epochAdminUpdate_epoch_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x94\x4f\x4f\xdc\x3a\x14\xc5\xf7\xf3\x29\xce\x9b\x05\x9a\x91\xe6\x85\xcd\xd3\x5b\x8c\x5a\x10\x05\x4a\x11\x2d\x45\x82\xd2\xf5\x9d\xe4\x26\xb1\x48\xec\xc8\xbe\x21\x8b\x8a\xef\x5e\xd9\xce\xe4\xcf\xa8\x2a\x42\x55\xb3\x40\xc2\xe3\x73\xce\xbd\x3f\xdb\x57\xd5\x8d\xb1\x82\x8f\x95\xe9\x2e\x1b\x93\x96\xc8\xad\xa9\xb1\x1c\xfe\x5f\x2e\x16\x62\x49\x3b\x4a\x45\x19\xbd\xca\x9e\x8a\xbb\x92\x1c\x7f\x66\xbd\xc5\xb7\x6b\x2d\xff\xff\xb7\x81\x13\x7a\x52\xba\x98\xad\xb1\x17\x4f\x56\xd6\xf8\xb1\x00\x80\xc6\x72\x43\x96\x57\x4e\x15\x9a\xed\x16\xd4\x4a\xb9\xfa\x60\xac\x35\xdd\x23\x55\x2d\xaf\x71\x74\x96\xa6\xa6\xd5\xb2\x57\xf8\xaf\x62\x89\x8e\x67\x59\xad\x34\xde\x23\xca\x13\x27\xc6\x52\xc1\xc9\x2e\x18\xbc\x3b\x1a\xca\x4e\xc2\xc6\x93\x95\xef\x66\x3b\x76\x97\x90\x5f\xbe\x8f\xaa\x3b\x92\x72\x3d\x44\xf8\xef\xf4\x14\x0d\x69\x95\xae\x96\xe7\xa6\xad\x32\x68\x23\x88\xd6\x08\xc2\x08\xa7\x0f\x45\x43\x52\x2e\xd7\x8b\xc1\x41\xe5\xf8\x67\x4c\x52\xee\x91\x2a\x95\x05\x5a\xe7\x46\xe7\xaa\x68\x2d\x05\x86\x23\xae\x0d\x26\x3c\x47\x66\xd3\xce\x03\xb3\x58\xd3\x2d\x77\x88\x67\xf4\xa8\xb8\x73\xa8\x5b\x27\xd8\x31\x0a\xcb\x24\x6c\x21\x25\x69\x48\xc9\x70\x6d\x0d\x93\xef\x8f\x05\xa4\x33\x5c\xdc\x5c\x21\x04\xe1\xd9\x6b\x97\x63\xdf\x2f\x63\x03\xc7\xc7\xc7\xb8\x68\x19\x62\x82\x4d\x4e\xa9\x78\xd3\x1e\xfd\x9f\xa7\xce\x82\x3a\x8e\x56\x6d\x93\x91\x70\x70\x88\x31\x69\x80\x05\x15\x5d\x53\x63\x2d\xa7\x02\x63\x33\xb6\x09\x1e\x4a\xe5\xf0\xec\xc1\x06\x96\x50\x0e\x99\xd1\x0c\xa3\xc1\x94\x96\x33\x8b\x59\x5c\x8c\x49\xf0\xc9\x74\xc1\x57\xb7\xf5\x8e\xad\x2f\x38\x94\xb6\x8f\x8b\x7a\xe5\xb0\x63\xdf\x44\x54\x65\xc8\x58\xd8\xd6\x4a\xb3\x0b\xbb\x42\x31\x33\x7b\xa5\xd1\x95\x2a\x2d\xbd\x6f\xe0\x74\xad\xc3\x51\x6d\x26\x0b\xf7\x91\xcc\x59\x1b\x9e\xd2\x26\x10\x1a\x7f\xbd\xb8\xb9\x8a\xa8\x34\x73\xe6\x8f\x60\xc7\x43\xbc\x6b\xd3\x32\x9e\x84\x4f\x9f\xb4\xdf\x90\x73\xec\x92\x59\x29\xff\x42\xe9\xd4\x32\x39\xdf\xc0\x41\x39\xdb\x3d\xee\x83\x75\xec\x38\x37\x96\xdf\x5c\xec\x41\x70\xc6\x6f\x08\x9e\x27\x84\x80\x5f\xe1\x78\xa5\xb2\x59\x05\xb7\x5f\x1f\x2e\xb7\xf8\xce\x20\xe7\xda\x9a\x51\xb2\xe5\x91\x9b\xbf\x8d\x4d\xf0\xac\x58\x17\x12\x8e\xb9\xf6\x64\x5d\x4d\x55\x35\xbb\xca\xfd\x1d\xee\xf7\xe5\xc6\x82\xaa\x0a\x8d\x11\xd6\xa2\xa8\xea\x2f\x58\xff\xa0\x27\xfc\x55\x3e\x3c\x62\x9c\x4c\xc6\x4e\xc1\x12\x67\xc0\x17\x16\xca\x48\x68\xb5\x4e\x0e\x8f\xe0\xe0\xd1\x8f\xe3\x2e\x89\xe8\xc2\xae\xa0\x58\x0d\x83\xe2\xf7\x8a\x1e\x51\xd4\x8c\x53\xe7\x15\xd5\x9e\x7c\x94\x4d\x06\xd4\x64\x66\x80\x2b\xc7\xaf\x15\xfc\xd7\xe2\xdf\x8e\xe7\x65\x11\xff\xbe\xfc\x0c\x00\x00\xff\xff\x69\x95\xf0\xa2\xef\x06\x00\x00" +var _epochAdminUpdate_epoch_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x94\x41\x6f\xdb\x38\x10\x85\xef\xfe\x15\x6f\x73\x58\xd8\x80\x57\xd9\xc3\x62\x0f\x46\x9b\xc0\x88\xdd\x24\x48\x9b\x04\x75\x9a\x9e\xc7\xd2\x48\x22\x22\x91\x02\x39\x8a\x0a\x14\xf9\xef\x05\x49\xdb\x92\x8c\xa2\x41\x50\x54\x07\x1f\x68\xce\x7b\x6f\x3e\x92\xa3\xea\xc6\x58\xc1\x87\xca\x74\xeb\xc6\xa4\x25\x72\x6b\x6a\xfc\xfb\x6d\x7d\x7f\x77\x71\xb5\x5c\xad\x3e\xaf\x37\x9b\xc9\x44\x2c\x69\x47\xa9\x28\xa3\xa7\xd9\x53\x71\x5f\x92\xe3\x8f\xac\x17\xf8\x72\xad\xe5\xff\xff\xe6\x70\x42\x4f\x4a\x17\xa3\x35\xf6\x7a\x83\x95\x19\xbe\x4f\x00\xa0\xb1\xdc\x90\xe5\xa9\x53\x85\x66\xbb\xc0\xb2\x95\x72\x99\xa6\xa6\xd5\xb2\xdf\xe2\xbf\x8a\x25\x4a\x2c\xb3\x5a\x69\xbc\x47\xdc\x9f\x6c\x8d\xb5\xa6\x7b\xf7\xf7\x21\x72\x12\x36\x9c\x4d\x7d\xf2\x45\xdf\x49\x42\x7e\x79\x23\xc6\x52\xc1\xf7\x24\xe5\xec\x20\xed\xbf\xf3\x73\x34\xa4\x55\x3a\x3d\xb9\x30\x6d\x95\x41\x1b\x41\x94\x46\x28\x8c\x20\x5c\x2c\x47\x43\x52\x9e\xcc\x26\x07\x05\x95\xe3\xaf\xde\x49\xb9\x47\xaa\x54\x16\xb0\x5c\x18\x9d\xab\xa2\xb5\x14\x60\xf5\x5c\xe6\x18\x80\xeb\xe1\x0c\x3b\x0e\x70\x62\xa6\x5b\xee\x10\xcf\xe3\x51\x71\xe7\x50\xb7\x4e\xb0\x65\x14\x96\x49\xd8\x42\x4a\xd2\x90\x92\xe1\xda\x1a\x26\xdf\xf3\x07\xe9\x0c\xab\x9b\x4b\x04\x23\x3c\xfb\xda\x93\xbe\xef\x97\xbe\x81\xd3\xd3\x53\xac\x5a\x86\x98\x20\x93\x53\x2a\x5e\x74\x87\xfc\xf7\x5d\x47\x46\x1d\x47\xa9\xb6\xc9\x48\x38\x28\x44\x9b\x34\xc0\x82\x8a\xaa\xa9\xb1\x96\x53\x81\xb1\x19\xdb\x04\x0f\xa5\x72\x78\xf6\x60\x03\x4b\x28\x87\xcc\x68\x86\xd1\x60\x4a\xcb\x91\xc4\xc8\x2e\xda\x24\xb8\x32\x5d\xd0\xd5\x6d\xbd\x65\xeb\x03\x87\x68\x7b\xbb\x58\xaf\x1c\xb6\xec\x9b\x88\x55\x19\x32\x16\xb6\xb5\xd2\xec\xc2\xae\x10\x66\x24\xaf\x34\xba\x52\xa5\xa5\xd7\x0d\x9c\xae\x75\x38\xaa\xf9\x60\x61\x13\xc9\x2c\xdb\xf0\x66\xe6\x81\x50\xff\xef\xea\xe6\x32\xa2\xd2\xcc\x99\x3f\x82\x2d\x1f\xec\x5d\x9b\x96\xf1\x24\xbc\xfb\xa0\xfd\x86\x9c\x63\x97\x8c\xa2\xfc\x03\xa5\x53\xcb\xe4\x7c\x03\x47\x71\x16\x7b\xdc\x47\xeb\xd8\x72\x6e\x2c\xbf\x39\xec\x91\x71\xc6\x6f\x30\x1e\x3b\x04\x83\x9f\xe1\x78\x25\xd9\x28\xc1\xed\xdd\xc3\x7a\x81\xaf\x0c\x72\xae\xad\x19\x25\x5b\xee\xb9\xf9\xdb\xd8\x04\xcd\x8a\x75\x21\xe1\x98\x6b\x4f\xd6\xd5\x54\x55\xa3\xab\xbc\xbb\xc3\xbb\x7d\xb9\xb1\xa0\xaa\x42\x63\x84\xb5\x28\xaa\x76\x17\x6c\xf7\xa0\x07\xfc\x55\x7e\x78\xc4\x38\x1b\x8c\x9d\x82\x25\xce\x80\x4f\x2c\x94\x91\xd0\x74\x96\x1c\x1f\xc1\xd1\xa3\xef\xc7\x5c\x12\xd1\x85\x5d\xa1\x62\x7a\x18\x14\xbf\xae\xd8\x21\x8a\x35\xfd\xd4\x79\xa5\x6a\x4f\x3e\x96\x0d\x06\xd4\x60\x66\x80\x2b\xc7\xaf\x05\xfe\x63\xf6\x6f\xc7\xf3\x32\x89\xbf\x2f\x3f\x02\x00\x00\xff\xff\xb6\x8b\x7d\x6b\xdb\x06\x00\x00" func epochAdminUpdate_epoch_configCdcBytes() ([]byte, error) { return bindataRead( @@ -1419,11 +1380,11 @@ func epochAdminUpdate_epoch_configCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_epoch_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0xcd, 0x55, 0xcb, 0x2d, 0xe5, 0x21, 0x62, 0x30, 0xa4, 0xa3, 0x99, 0x58, 0x9e, 0xa2, 0xb1, 0x47, 0x7d, 0x26, 0xa1, 0x75, 0xd8, 0x12, 0x3f, 0xf, 0xf5, 0xc5, 0x3e, 0xf1, 0x44, 0x72, 0x60}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0xab, 0xdb, 0xbd, 0xb, 0x46, 0x8f, 0x2, 0x4c, 0xe4, 0x61, 0xc1, 0x47, 0xe7, 0x37, 0x1d, 0xa2, 0xcd, 0x8e, 0xe1, 0xd7, 0x53, 0x84, 0x58, 0x17, 0x53, 0x94, 0xc1, 0xd8, 0xb1, 0x40, 0x40}} return a, nil } -var _epochAdminUpdate_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x50\x4d\x6b\xf3\x30\x0c\xbe\xe7\x57\x88\x1c\x4a\x02\x2f\x39\xbd\xec\x50\xd6\x95\xae\x6c\xb0\xdb\x60\xdd\xee\x9a\xe3\x24\x86\xd8\x32\x8a\x4c\x0f\xa3\xff\x7d\x38\x5e\xbe\x36\x1d\x82\xa4\xf8\xf9\xd0\x63\xac\x27\x16\x78\xee\xe9\xfa\xe4\x49\x75\xd0\x30\x59\xc8\xe7\x39\xcf\x32\x61\x74\x03\x2a\x31\xe4\x8a\x3a\x30\xc6\x66\x0f\xef\x2f\x4e\xee\xfe\xff\x03\xd6\xcd\x99\x82\x13\xcd\x9b\xdd\xc5\x58\x3d\x08\x5a\x3f\x6d\x4b\xf8\xca\x00\x00\x3c\x6b\x8f\xac\x8b\xc1\xb4\x2e\x62\x30\x48\x57\x3c\x12\x33\x5d\x3f\xb0\x0f\xba\x84\xdd\x49\xa9\xc8\x38\x21\x62\xf5\x5a\x40\x47\x3f\xa7\xda\x1a\x07\x07\x48\xf0\x6a\x10\x62\x6c\x75\xf5\x39\x12\xdc\xef\x66\xdf\xd5\xf8\xf0\xa1\x88\xe7\xec\x97\xf3\x2a\x8c\xeb\xb7\x84\x7a\x45\xe9\xca\x59\x22\xd6\xf1\x08\x1e\x9d\x51\x45\x7e\xa6\xd0\xd7\xe0\x48\x20\x51\xc3\x08\x4c\xe9\xfc\x88\x82\x47\xe9\xf2\x32\xdb\x98\x54\xe4\x1a\xd3\xc2\x61\x25\x39\x7e\x2f\xc6\x1a\xd7\x9e\xc7\xbf\xab\x14\xa7\x6e\x9b\xe3\xd2\xff\xce\x72\x3d\x2d\xd6\x97\x64\xaa\xe0\x6b\x14\xfd\x57\x32\xf9\x4a\x90\x5b\x76\xfb\x0e\x00\x00\xff\xff\xe3\x9c\x76\xf0\xf7\x01\x00\x00" +var _epochAdminUpdate_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\xc1\x6a\xc3\x30\x0c\x86\xef\x79\x0a\xd1\xc3\x48\x60\x84\x1d\xc6\x0e\x65\x5d\x09\x69\xc6\x76\x5a\x59\xba\x07\xf0\x1c\x27\x31\xc4\x96\x51\x14\x3a\x18\x7d\xf7\xe1\x98\x34\xc9\xaa\x83\x91\x65\xfd\xd2\xe7\x5f\x1b\x87\xc4\xf0\xda\xe1\xb9\x70\x28\x5b\xa8\x09\x0d\x3c\xfc\x14\xc7\x8f\xfc\x2d\x3b\x1c\x3e\x8b\xb2\x8c\x22\x26\x61\x7b\x21\x59\xa3\x8d\xab\x81\x84\x4f\xb6\xf0\xf5\x6e\xf9\xe9\xf1\x1e\x48\xd5\x39\x0e\x96\x15\xad\x6a\x27\x6d\x54\xcf\xc2\xb8\xa9\x9a\xc0\x6f\x04\x00\xe0\x48\x39\x41\x2a\xee\x75\x63\xbd\x26\x1b\xb8\xcd\xa4\xf4\x23\xa6\x16\x1f\x9d\x62\x50\x9e\x29\xab\x8c\xb6\xb0\x83\xd0\x9f\x7e\x23\x11\x9e\x9f\xef\xae\xcc\xe9\xd8\xf0\x12\x7b\xf4\xed\xfc\x95\x54\xf8\x72\xc9\x48\xa2\x51\x47\xc1\x6d\x72\x1d\xed\x63\xbf\x07\x27\xac\x96\xf1\x26\xc7\xa1\xab\xc0\x22\x43\x18\x0d\xa3\x30\x38\xd1\x07\x39\x38\xc1\xed\x26\x89\x56\x70\x12\x6d\xad\x1b\xd8\x2d\x56\x8e\xe7\x49\x1b\x6d\x9b\x7c\x7c\x5d\xd8\x35\x65\x6b\xc3\xe6\xfc\xbf\x69\xcb\xdb\x8c\x3e\x3b\x92\x0e\xae\x12\xac\x6e\x57\x06\xae\x20\xb9\x44\x97\xbf\x00\x00\x00\xff\xff\x8d\xbe\x84\x8a\xe3\x01\x00\x00" func epochAdminUpdate_epoch_timing_configCdcBytes() ([]byte, error) { return bindataRead( @@ -1439,11 +1400,11 @@ func epochAdminUpdate_epoch_timing_configCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_epoch_timing_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd5, 0x60, 0x43, 0x69, 0x61, 0x53, 0x36, 0x3b, 0x34, 0x20, 0x40, 0x4b, 0xee, 0xa4, 0xd9, 0x27, 0x7a, 0x77, 0x2e, 0xc2, 0x5f, 0x9, 0x20, 0x44, 0x58, 0x2, 0x82, 0xd2, 0x40, 0xc3, 0xc9, 0xce}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0x1f, 0x6d, 0xa3, 0x37, 0xf6, 0x2c, 0x57, 0xc5, 0x90, 0xee, 0xac, 0xac, 0x3c, 0xb6, 0x96, 0x6a, 0xe5, 0x89, 0x8e, 0xd9, 0x24, 0x2e, 0x57, 0xa, 0x3a, 0x27, 0x79, 0x9a, 0x26, 0xa4, 0xb}} return a, nil } -var _epochAdminUpdate_epoch_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xc4\x30\x10\x85\xef\xfd\x15\x8f\x1e\x96\xf6\xd2\x93\x78\x28\xea\x52\x45\xc1\x9b\x20\xee\x7d\x4c\xc7\x6d\xa0\xcd\x84\x74\x42\x0f\xb2\xff\x5d\x92\x68\x17\x9c\x53\x12\xf2\xde\xf7\xe6\xd9\xc5\x4b\x50\xbc\xcc\xb2\x3d\x7b\x31\x13\xbe\x82\x2c\xa8\xf7\x7b\x5d\x55\x1a\xc8\xad\x64\xd4\x8a\x6b\x1c\x6f\x43\xcc\xc7\x93\xe5\x6d\xed\xf1\xf1\xea\xf4\xf6\xa6\xc5\x77\x05\x00\x3e\xb0\xa7\xc0\xcd\x6a\xcf\x8e\x43\x0f\x8a\x3a\x35\x8f\x12\x82\x6c\x27\x9a\x23\xb7\x38\x0c\xc6\x48\x74\xfa\xa7\x48\x33\xb3\x82\x13\x6c\x18\x17\xeb\x70\x8f\x22\xef\x56\x95\x40\x67\xee\x3e\xb3\xc1\xdd\x61\x0f\xd5\xe5\x8f\x0f\x4d\xca\xda\x5f\xb3\x77\x94\x9e\xdf\x8b\xea\x8d\x74\x6a\x77\x44\x9a\xe3\x11\x9e\x9c\x35\x4d\xfd\x24\x71\x1e\xe1\x44\x51\xac\x91\x85\x65\xf5\x5f\x28\x3c\xe9\x54\xb7\xd5\xee\x70\x0d\xd8\x45\x3f\x92\x72\x46\xe6\x16\xfe\xb7\x52\xb0\x97\xea\xf2\x13\x00\x00\xff\xff\x08\x1f\x1c\x16\x5d\x01\x00\x00" +var _epochAdminUpdate_epoch_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\xcf\x4a\xf4\x30\x14\xc5\xf7\x79\x8a\xc3\x2c\x3e\xda\x4d\xf9\x16\xe2\xa2\xa8\x43\x98\xa9\xe8\xca\xc1\xa2\xfb\x98\xc6\x69\xa0\xcd\x0d\xe9\x0d\x15\x64\xde\x5d\x92\x60\x07\xbc\xab\x10\xce\x9f\xdf\xb1\xb3\xa7\xc0\x78\x9c\x68\xed\x3c\xe9\x11\x9f\x81\x66\xfc\xff\xea\x4e\x2f\x87\x27\x79\x3c\xbe\x76\x7d\x2f\x04\x07\xe5\x16\xa5\xd9\x92\xab\x9c\x59\x65\xcc\xcf\x77\x6b\xd6\xa5\xc5\xdb\xb3\xe3\xdb\x9b\x1a\xdf\x02\x00\x7c\x30\x5e\x05\x53\x2d\xf6\xec\x4c\x68\x21\x23\x8f\x52\x6b\x8a\x8e\x7f\x25\xe9\x26\xc3\x30\xa9\x50\x0e\xb3\x75\xb8\x47\xd1\x37\x1f\x14\x02\xad\x77\xff\x36\xa0\x26\x0b\x1e\xaa\xc4\xd5\x5e\x39\x1b\x95\xbe\x7b\xa6\xa0\xce\xe6\xa4\x78\xac\xb7\xe8\x74\xfb\x3d\xbc\x72\x56\x57\xbb\x03\xc5\x69\x80\x23\x46\x89\x46\x36\x96\x99\x4b\xb1\xc3\x2b\x1e\x77\xb5\xd8\x12\xae\x60\x4d\xf4\x83\x62\x93\x2b\xf3\xdc\xbf\xf3\x4b\xed\x45\x5c\x7e\x02\x00\x00\xff\xff\x31\x03\xa1\x69\x49\x01\x00\x00" func epochAdminUpdate_epoch_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1459,11 +1420,11 @@ func epochAdminUpdate_epoch_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_epoch_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1d, 0xaf, 0x8a, 0x1f, 0xbf, 0xa6, 0x25, 0x31, 0x9e, 0xff, 0x30, 0x9, 0x34, 0xd3, 0x90, 0xa4, 0xfd, 0x12, 0x32, 0x1f, 0x2, 0x95, 0xf1, 0x49, 0xb6, 0x85, 0x28, 0xf9, 0x7f, 0x47, 0x75, 0x8d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4f, 0xb9, 0x7, 0xd8, 0xff, 0x10, 0xc6, 0x15, 0x25, 0x69, 0x5, 0x27, 0x32, 0x30, 0xf3, 0x4e, 0x2f, 0x72, 0x33, 0xda, 0xfa, 0x1f, 0x2a, 0xd7, 0x5a, 0x14, 0xb2, 0x90, 0xd4, 0x9f, 0x25, 0x7b}} return a, nil } -var _epochAdminUpdate_rewardCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\xc1\x4a\xc4\x30\x10\x86\xef\x7d\x8a\xa1\x87\xa5\xbd\xf4\x24\x1e\x8a\xba\x54\xb1\x20\x08\x16\x17\x15\x8f\x63\x3a\xb6\x81\x36\x13\xa6\x13\xaa\xc8\xbe\xbb\xb4\xd1\x2e\x3b\xb7\x84\x7c\xff\xff\x65\xec\xe8\x59\x14\xea\x81\xe7\x7b\xcf\xa6\x87\x4f\xe1\x11\xd2\xed\x9c\x26\x89\x0a\xba\x09\x8d\x5a\x76\x99\xa3\xf9\x99\x66\x94\xb6\x6a\xde\x4b\x78\xa9\xed\xd7\xe5\x45\x0e\x3f\x09\x00\x80\x17\xf2\x28\x94\x4d\xb6\x73\x24\x25\x60\xd0\x3e\xbb\x65\x11\x9e\x5f\x71\x08\x94\xc3\xae\x32\x86\x83\xd3\x7f\x62\x99\x81\x14\x68\x69\xaa\xda\xd1\x3a\xb8\x86\x88\x17\x93\xb2\x60\x47\xc5\xc7\x1a\x70\xb5\xdb\x8c\x8a\xf5\xe1\x4d\xb6\x88\x96\x27\xf1\x02\x97\xeb\x43\xa4\x1a\xd4\x3e\xdf\x2a\x96\xd9\xef\xc1\xa3\xb3\x26\x4b\xef\x38\x0c\x2d\x38\x56\x88\xd1\xb0\x82\xf1\xdf\x7f\xa5\xe0\x51\xfb\x34\x4f\xb6\x84\x93\x60\x11\x7c\x8b\x4a\xf5\xe3\xd3\xdb\x21\x78\x3f\x7c\x3f\x38\x23\x84\x13\x35\x24\x86\x9c\x62\x47\x67\x4b\x8a\x16\xc7\xe4\xf8\x1b\x00\x00\xff\xff\x36\x0b\xb8\x8f\x69\x01\x00\x00" +var _epochAdminUpdate_rewardCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\x41\x6b\xbc\x40\x0c\xc5\xef\x7e\x8a\xb0\x87\x3f\x7a\x91\xff\xa1\xf4\x20\x6d\x17\xd9\x55\x5a\x28\xac\xac\x94\xd2\x63\x3a\xa6\x3a\xa0\x93\x21\x46\xdc\x52\xf6\xbb\x97\x51\x58\xe9\x3b\x86\xf7\x5e\x7e\x89\x1d\x3c\x8b\x42\xd9\xf3\x5c\x78\x36\x1d\x7c\x09\x0f\xf0\xff\x52\x54\xa7\xc3\x73\x7e\x3c\x9e\x8b\xba\x8e\x22\x15\x74\x23\x1a\xb5\xec\x62\x47\xf3\x99\x66\x94\x26\xaf\x3e\x32\x78\x2b\xed\xe5\xfe\x2e\x81\x9f\x08\x00\xc0\x0b\x79\x14\x8a\x47\xdb\x3a\x92\x0c\xf2\x49\xbb\xdc\x18\x9e\x9c\x06\xcb\xe2\x09\xea\x49\x81\xc2\xba\xbc\x19\xac\x83\x47\x58\x03\xe9\x27\x8b\xf0\xfc\xf0\xef\x86\x93\x2e\x86\xa7\x38\x50\x65\x1b\x65\x8a\x61\x5c\x2b\x0b\xb6\x54\xa1\x76\xc9\xad\x3a\x68\xbf\x07\x8f\xce\x9a\x78\x77\xe0\xa9\x6f\xc0\xb1\xc2\x5a\x0d\x4b\x70\x3d\x72\x5c\xe3\xe0\x51\xbb\x5d\xb2\xc1\x6d\x60\xe9\xe4\x1b\x54\x2a\x5f\x4f\xef\xf5\xe4\x7d\xff\xfd\xe2\x8c\x10\x8e\x54\x91\x18\x72\x8a\x2d\xfd\x79\xc7\x4a\x71\x8d\xae\xbf\x01\x00\x00\xff\xff\x9e\x26\x8d\xcb\x56\x01\x00\x00" func epochAdminUpdate_rewardCdcBytes() ([]byte, error) { return bindataRead( @@ -1479,11 +1440,11 @@ func epochAdminUpdate_rewardCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_reward.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0x15, 0x3f, 0xbe, 0xe9, 0xbe, 0xe7, 0xe5, 0x26, 0x20, 0xbc, 0x39, 0x7e, 0xe9, 0x8e, 0x3e, 0x10, 0xb7, 0x38, 0x63, 0x11, 0xfc, 0x1, 0xbc, 0xa9, 0xb7, 0x56, 0xc3, 0x3, 0x42, 0x57, 0x9b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0x9b, 0x4a, 0x66, 0xb5, 0x60, 0xad, 0x5b, 0x16, 0x20, 0x4a, 0x74, 0x57, 0x86, 0x99, 0x3e, 0xa4, 0x6c, 0x68, 0xd7, 0x49, 0x3f, 0xef, 0xe2, 0x6, 0x7, 0xcc, 0x78, 0xf3, 0xe6, 0xfa, 0xd9}} return a, nil } -var _epochAdminUpdate_staking_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xc4\x30\x10\x85\xef\xfd\x15\x43\x0f\x4b\x7b\xc9\x49\x3c\x14\x75\xa9\xa2\xe0\x4d\x58\xdc\xfb\x98\x8e\x6d\xb0\x9d\x09\xe9\x84\x1e\x64\xff\xbb\x24\xd1\x2e\xf8\x6e\x09\x79\xef\x7d\x79\x6e\xf1\x12\x14\x5e\x66\xd9\x9e\xbd\xd8\x09\x3e\x83\x2c\x50\xef\xe7\xba\xaa\x34\x20\xaf\x68\xd5\x09\x37\x4c\xdb\x49\xf1\xcb\xf1\x78\x76\xb4\xad\x1d\xbc\xbf\xb2\xde\xde\xb4\xf0\x5d\x01\x00\xf8\x40\x1e\x03\x35\xab\x1b\x99\x42\x07\x18\x75\x6a\x1e\x25\x04\xd9\xce\x38\x47\x6a\xe1\xd0\x5b\x2b\x91\xf5\xcf\x91\x34\x93\x02\xa5\xb2\x7e\x58\x1c\xc3\x3d\x14\xbb\x59\x55\x02\x8e\x64\x3e\x72\xc0\xdd\x61\x87\x32\xf9\xe1\x43\x93\x58\xbb\x2b\xbb\xc1\x74\x7d\x2a\xae\x37\xd4\xa9\xdd\x2b\x92\x8e\x47\xf0\xc8\xce\x36\xf5\x93\xc4\x79\x00\x16\x85\x12\x0d\xd9\x58\xbe\xfe\x5b\x0a\x1e\x75\xaa\xdb\x6a\x4f\xb8\x02\x9a\xe8\x07\x54\xea\x63\x9e\x24\xef\xf0\x7f\x97\x52\x7c\xa9\x2e\x3f\x01\x00\x00\xff\xff\x86\xa7\x6b\x09\x5f\x01\x00\x00" +var _epochAdminUpdate_staking_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xcf\x4a\xc4\x30\x10\xc6\xef\x79\x8a\x61\x0f\xd2\x5e\x8a\x07\xf1\x50\xd4\x25\xec\x56\xf4\xe4\x62\xd1\xfb\x98\xc6\x36\xd8\xce\x84\x74\x42\x05\xd9\x77\x97\x34\xd8\x05\xe7\x18\xbe\x3f\xbf\x2f\x6e\xf2\x1c\x04\x1e\x47\x5e\x1a\xcf\x66\x80\xcf\xc0\x13\x5c\x7f\x37\xa7\x97\xc3\x93\x3e\x1e\x5f\x9b\xb6\x55\x4a\x02\xd2\x8c\x46\x1c\x53\x41\x76\x69\x05\xbf\x1c\xf5\xef\xce\x2e\x73\x0d\x6f\xcf\x24\xb7\x37\x25\xfc\x28\x00\x00\x1f\xac\xc7\x60\x8b\xd9\xf5\x64\x43\x0d\x3a\xca\xa0\x8d\xe1\x48\xf2\x27\x49\x37\x5a\x01\x9b\x0a\x75\x37\x39\x82\x7b\xc8\xfa\xea\x83\x43\xe0\xe5\xee\x6a\x03\xaa\x56\xc1\x43\x91\xb8\xea\x0b\x67\x85\xe9\xb9\x15\x0e\xd8\xdb\x13\xca\x50\x6e\xd1\xe9\xf6\x7b\xf0\x48\xce\x14\xbb\x03\xc7\xb1\x03\x62\x81\x1c\x0d\xab\x31\xcf\x9c\xb3\x1d\x3c\xca\xb0\x2b\xd5\x96\x70\x01\xab\xa2\xef\x50\xac\x8e\xeb\xf6\x75\xf0\xff\x0f\xc8\xc5\x67\x75\xfe\x0d\x00\x00\xff\xff\x9e\x01\x4d\x3d\x4b\x01\x00\x00" func epochAdminUpdate_staking_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1499,11 +1460,11 @@ func epochAdminUpdate_staking_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_staking_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0xc5, 0xe9, 0xd8, 0x71, 0xef, 0xa, 0x19, 0xd, 0xc0, 0x54, 0x1c, 0x22, 0x6f, 0x41, 0xf5, 0xc4, 0x93, 0x64, 0x53, 0x59, 0xf5, 0xac, 0xb0, 0x85, 0xa0, 0x42, 0x71, 0x7c, 0x86, 0x6d, 0xba}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x48, 0x2e, 0xa2, 0x66, 0x2c, 0x29, 0xe2, 0xbf, 0xdd, 0x5e, 0x40, 0xcb, 0xb9, 0xb5, 0x61, 0x12, 0x2c, 0x66, 0x4a, 0x87, 0x97, 0xc8, 0xa6, 0x8f, 0x8c, 0x46, 0x9a, 0x63, 0x86, 0xf0, 0x79, 0x95}} return a, nil } -var _epochNodeRegister_dkg_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x51\x6e\xc2\x30\x0c\x86\xdf\x7b\x0a\xab\x0f\x28\x95\x46\x0f\x50\xb1\xa1\x69\xdd\xd0\x84\x34\xa1\xb1\x0b\x98\xd4\xb4\x11\x25\x8e\x5c\x33\x1e\x26\xee\x3e\x41\xa1\x4b\xb7\xf9\x29\x91\x7f\xdb\x9f\x7f\xbb\x7d\x60\x51\x78\x69\xf9\xf8\x1c\xd8\x36\xb0\x15\xde\x43\x3a\xfc\xd3\x24\x52\xbc\x96\x1f\xb8\x69\x69\xad\xb8\x73\xbe\x8e\xa4\xe3\xc4\xa8\xa6\x5c\x2e\x22\x61\xb9\x5c\xa4\x49\xa2\x82\xbe\x43\xab\x8e\xbd\xc9\xe0\x2b\x49\x00\x00\x82\x50\x40\x21\xd3\xb9\xda\x93\x14\x80\x07\x6d\xcc\x5a\x59\xb0\xa6\x0c\x26\x8f\xd6\xf2\xc1\xeb\x20\x3f\x47\x4b\x0a\x9e\x2b\x7a\xa7\x2d\xdc\x43\x5f\x98\x77\x7d\x49\xbe\x61\x11\x3e\xce\x26\x7f\xf9\xf2\x37\xae\x2e\x6f\x92\x07\x73\x66\x2b\xfe\xd9\x2e\x12\x5d\x21\x56\xa8\x4d\x36\xcc\x3e\xc7\x7c\x0e\x01\xbd\xb3\x26\x7d\xe2\x43\x5b\x81\x67\x85\x7e\xec\x05\x0b\x84\xb6\x24\xe4\x2d\xf5\x0e\x5c\xc9\x20\xa0\x36\x69\x36\x5e\xa3\xda\xd5\x2b\x14\x75\xd6\x05\xf4\x0a\xb3\xe9\xcf\x49\xf2\x9a\xb4\x5c\x2e\xa2\xb4\xf1\x03\x5b\x71\x33\x20\xea\xf7\xcb\x88\x0e\x3f\xc9\xcc\xa6\xe3\x09\x77\xa0\x5c\xdc\x0e\x94\x47\x89\xd1\xb2\x97\x96\xa7\xe4\xf4\x1d\x00\x00\xff\xff\x4e\x62\x63\xb2\x26\x02\x00\x00" +var _epochNodeRegister_dkg_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6f\xe2\x40\x0c\x85\xef\xf9\x15\x16\x87\x55\x90\x96\x68\xcf\x11\x5b\x94\x32\x29\x45\x54\x14\x91\x5c\x7a\x1c\x26\x26\x19\x11\xc6\x23\xc7\x94\x4a\x15\xff\xbd\x82\x34\x34\xa8\xf8\x34\x92\xbf\x79\x7e\xcf\xb6\x7b\x4f\x2c\xf0\x54\xd3\x31\xf5\x64\x2a\xd8\x32\xed\xe1\xdf\x47\xba\x7a\x9d\x3e\x27\x4a\xad\xd3\x2c\x0b\x7a\xd0\x5c\xe5\x7a\x53\x63\x26\x7a\x67\x5d\xd9\xd1\x73\x95\x2e\xf3\x79\xfe\x96\x27\x8f\x2f\xe9\x9d\x5f\x6a\x31\xeb\x50\xb5\x98\x75\x40\x20\xac\x5d\xa3\x8d\x58\x72\xe1\x10\x3e\x83\x00\x00\xc0\x33\x7a\xcd\x18\x36\xb6\x74\xc8\x31\x24\x07\xa9\x12\x63\xe8\xe0\xe4\xca\x9c\xab\x46\x01\x47\x05\xae\x71\x0b\xff\xa1\xa5\xa3\x0d\x31\xd3\x71\xfc\xe7\xb7\xd5\x68\x49\xc5\xe5\x8d\xfc\x10\x9e\xbd\xc4\x77\xf2\xf4\xa0\x4c\x88\x75\x89\x2b\x2d\xd5\xf0\x3a\xf3\x5c\x93\x09\x78\xed\xac\x09\x07\x53\x3a\xd4\x05\x38\x12\x68\xc7\x5e\xec\x00\xe3\x16\x19\x9d\xc1\x36\x71\xd3\xea\x80\xd7\x52\x0d\x86\xb7\xf6\x8b\x5d\xb9\xd2\x2c\xd6\x58\xaf\x9d\xc0\x78\xf4\x73\x87\xa8\x44\x51\x8b\x59\xaf\x1d\xba\xab\xb7\xb8\x0b\xde\xd3\xfb\x5e\x40\xa3\xdf\x31\x1c\x8f\x6e\x95\xff\x82\x50\xdc\x1d\x22\xea\x35\x6e\x42\x5e\xa4\x4e\xc1\xe9\x2b\x00\x00\xff\xff\x27\xf5\x15\x16\x13\x02\x00\x00" func epochNodeRegister_dkg_participantCdcBytes() ([]byte, error) { return bindataRead( @@ -1519,11 +1480,11 @@ func epochNodeRegister_dkg_participantCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/node/register_dkg_participant.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0xdd, 0x3f, 0x15, 0x1e, 0xf, 0x7e, 0x70, 0x58, 0xec, 0x18, 0xf8, 0x58, 0xb3, 0x8e, 0x70, 0xd4, 0x98, 0xda, 0x47, 0xb5, 0xc2, 0x4b, 0x55, 0xa9, 0xa6, 0x77, 0x76, 0x6e, 0xfb, 0xdb, 0x66}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x7, 0xc8, 0x9e, 0x29, 0xfb, 0xa9, 0xfe, 0xec, 0xee, 0x49, 0x5a, 0x1c, 0x1a, 0x36, 0x13, 0x5e, 0x8, 0xf1, 0x41, 0xf3, 0x3a, 0xed, 0xf3, 0x7d, 0x78, 0x7, 0x7e, 0x64, 0x34, 0x92, 0x74}} return a, nil } -var _epochNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x56\x4b\x8f\xdb\x36\x10\xbe\xfb\x57\x0c\xf6\xb0\x90\x01\xad\x8c\x16\x45\x51\x08\x76\x02\xc3\xce\x2e\x0c\x07\xed\x66\x77\x93\x1c\x8a\x1e\x68\x72\x64\xb1\x96\x49\x95\x1c\xd5\x15\x16\xfe\xef\x05\xf5\x66\xe4\x6c\x12\xb4\xb7\xf8\x20\x8b\xf3\xf8\x66\x86\xf3\x92\x3c\xe6\xda\x10\xac\x4c\x99\x93\x9e\x34\xa7\xdb\x4c\x9f\x36\xeb\x27\xb6\xcb\xf0\x91\xd8\x41\xaa\x3d\x24\x46\x1f\xe1\x6a\xcc\xb8\x1a\xea\x3c\xe9\x03\xaa\x81\x68\x75\xf6\x24\x56\x59\x61\x09\xcd\xbb\xd5\x40\xaa\xa3\x79\x92\xeb\xed\xdd\x40\x66\xbd\xbd\xf3\xb8\x6f\x72\xcd\xd3\x01\xbf\x3a\xf7\x12\x85\xda\xcb\x5d\x86\x9e\x3f\x43\xda\xd5\x64\x32\x9b\xc1\x53\x2a\x2d\x90\x61\xca\x32\x4e\x52\x2b\xe0\x06\x19\xa1\x05\x06\x0a\x4f\xa0\xb4\x40\xb0\x64\x0a\x4e\xa0\x77\x7f\x22\xa7\x5a\x09\x55\x08\x32\x01\x4a\xb1\x16\x91\x4e\x81\xeb\x2c\x43\x4e\xda\x54\xb4\xf0\x13\x28\xc6\xb9\x2e\x14\x01\x53\x02\x98\x10\x8e\xfc\x6e\xd5\x80\x02\x69\x90\x15\xf4\x66\x0c\xaa\x2c\x2a\x5b\xd8\x06\x54\xd2\x97\x71\xdd\xbd\x79\xc0\x93\x41\x84\xc1\x04\x00\x40\x8a\x18\x1e\xc9\x48\xb5\x0f\xab\xb3\xd1\x19\xc6\xf0\x7e\xa3\xe8\x97\x9a\xa0\x90\x4e\xda\xb8\xf4\x2e\x85\x30\x68\xad\x2f\xdf\xb3\xb7\x58\xfa\x2c\x5b\x57\xc5\x88\xce\x8e\xce\xcf\x18\xde\xdf\xca\x7f\x7e\xfe\xa9\xa6\xe5\xc5\x2e\x93\x7c\x8b\xa5\x8d\xe1\xf7\xba\x00\xa3\x2d\x96\x6f\xa5\xa5\x37\x8a\x4c\xf9\xc7\x64\x0a\xcf\x93\x4a\x34\x43\x82\xa4\x2d\xa8\x07\x4c\x62\x60\x05\xa5\x81\x97\xd3\xe8\xa3\xa4\x54\x18\x76\x9a\xc2\x75\x57\x7c\xd1\x07\x56\x64\x54\x83\xe4\x06\x73\x66\x30\x60\x9c\x53\x03\xf0\x48\xda\xb0\x3d\x86\xb0\x62\x39\xdb\xc9\x4c\x92\x44\x1b\xc2\x52\x88\x2d\x96\x53\xb8\x5e\xd6\xf7\xdb\xf9\x51\x85\x88\x59\x12\x0d\x9d\x81\x85\xcb\x03\x45\xb6\x06\x8b\x76\xda\x18\x7d\x9a\x7f\x93\x87\xaf\x02\x57\xa5\x31\xcc\x1a\x90\x59\x67\xa0\x62\x4f\x3b\xeb\xee\xf7\xfa\x35\xe4\x4c\x49\x1e\x5c\xad\x74\x91\x09\x50\x9a\xa0\x36\x0a\x06\x13\x34\xa8\x38\xba\xe4\xdf\xbe\xfd\xed\x23\x54\xfa\x57\xd3\xde\xff\xd9\x0c\x1e\x70\x2f\x5d\xcb\xc1\xaf\x5a\x60\xc7\x90\xc9\xc5\x38\xae\xc7\x4d\x1f\x39\x3d\xf7\x8e\xa6\x75\xfc\x45\xa1\xe6\x9a\xef\x19\xa5\x53\x58\x2c\x40\xc9\x6c\x78\xa3\x6d\x86\x55\xa7\x00\xf3\x9b\x4b\x88\x4c\x08\x07\xfa\x80\x5c\x1b\x11\x78\xfa\x6d\x5d\x4b\x11\x8e\xe8\x75\x7d\xbb\xe7\x98\x77\xa1\xd4\x47\xa4\x97\xb4\xaa\x4a\xf7\x8e\x63\xe9\x61\x53\xf4\xef\x63\x39\x72\xf9\xb6\x2b\x7d\x3c\x4a\x22\x14\x31\xcc\x6f\x46\xc5\x16\x9d\x9a\x1a\x0a\xda\x96\xaa\xff\xfd\x0a\x99\xfa\x97\xeb\xa5\xd5\xb2\xbf\x31\x98\xdf\xf4\x97\x1d\x02\xe9\x6f\x48\xe0\x4b\x79\x5b\xb1\xbc\xed\x06\x3e\xe8\xa8\xce\xb6\xb4\xb6\xc0\xf9\xf5\xf3\x8b\xc6\xee\xab\xb9\x70\x7e\x15\x7c\xbd\x4b\xa3\x60\x3d\xeb\xd5\xa0\xb1\x69\xe0\xf9\x19\x02\xa3\x2f\x44\x5d\x3b\xe2\x5b\x38\xf7\xe1\xb7\xa1\x7f\x7e\x04\xfc\xcf\xad\xf3\xb5\x43\xa0\x5a\x20\xfd\x24\xa8\xf6\x5f\xe3\x19\xe4\x8c\xd2\xe1\x34\x68\x83\xd8\xa8\x44\xc3\xe2\x73\xbe\x38\x6e\x75\x7d\x9b\x75\xdc\xc6\x1c\x49\xe1\x4f\x95\x0b\xeb\xab\xdd\x89\xda\x8c\x76\x59\xbd\xc8\x80\x81\x45\xae\x95\x60\xa6\xec\xb6\x59\xa2\x8d\x43\x92\x06\x6c\x8e\x5c\x26\x92\x37\x1b\xcd\x0e\x67\x55\xeb\x75\xe4\x1a\xdb\x4d\x95\x1f\x80\xd9\x7a\x8b\x5d\x1a\x2e\x47\xc6\x53\xa9\x70\xc9\x39\xc1\x02\x9a\xc1\x1e\xe4\xac\x44\x13\x57\xc9\xf3\xaf\xd7\xf9\x70\xc0\x12\xa4\x1a\xec\x29\x78\x1e\xf5\xec\x00\x36\x3a\x60\x69\xdd\x8c\x0a\x3a\x8d\xd8\x61\x44\xdd\x31\x84\x94\xd9\x74\x99\xed\xb5\x91\x94\x1e\x6b\xae\x47\x0a\xe1\x84\x72\x9f\x52\xcd\xaa\xdf\x7d\xc7\xce\xe3\xd0\xfe\xe2\x1f\x34\xf5\x43\xb3\xfa\x16\x8a\xf6\x48\xdd\x87\x55\xc5\x1e\x94\x7f\x97\x43\x1f\x7a\x18\xcb\x27\xd3\xa2\x31\xd1\x8f\x8a\x0e\x3b\xaa\x18\x97\x07\xc4\x19\x30\xb3\x78\x31\x59\x3f\x7e\xaf\xc9\x12\x87\xfd\x3d\x33\x24\xb9\xcc\x99\xa2\x51\xce\xd6\xdb\xbb\x01\xfb\x3f\xe5\xcc\xb7\xd4\xa7\x6e\xbd\xbd\x8b\x06\x8c\x8b\x13\xe6\x3c\xa9\x9f\xe7\x7f\x03\x00\x00\xff\xff\x02\xb2\x4a\x46\x20\x0c\x00\x00" +var _epochNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x56\xdd\x6f\x22\x37\x10\x7f\xe7\xaf\x18\xdd\xc3\x69\x91\xc8\xd2\x56\x55\x55\xad\xe0\x4e\x14\x48\x8a\x88\xf2\x05\x77\x55\x55\xf5\xc1\xb1\x67\x59\x97\xc5\xde\xda\x43\x39\x14\xf1\xbf\x57\x5e\xb3\x5f\xd9\x4d\x9a\x56\x7d\xbb\x3c\x04\x7b\x3e\x7e\x8c\x67\x7e\x33\x83\xdc\x65\xda\x10\x4c\xcd\x31\x23\xdd\x3b\xdf\x2e\x53\x7d\x58\xcc\xd6\xec\x31\xc5\x15\xb1\xad\x54\x1b\x88\x8d\xde\xc1\x37\x5f\x16\xb3\xf9\xcd\x7a\xb1\xfe\x75\x3d\xf9\xe9\x7a\x3e\x99\xcd\x1e\xe6\xab\x55\xdd\x6b\xad\xb7\xa8\x0a\xe3\xcb\xeb\xdb\x5f\xd6\xb7\xcb\xf9\x4d\x87\xe1\x34\xdd\x5b\x42\x73\x3f\x2d\x8c\xef\xa7\x1d\x56\xb3\xe5\x55\xa1\x9f\x2d\xaf\x3a\x0c\xe6\x99\xe6\x49\x61\x32\xbf\xbb\x9d\xfe\x5c\x18\xf5\x86\x43\x58\x27\xd2\x02\x19\xa6\x2c\xe3\x24\xb5\x02\x6e\x90\x11\x5a\x60\xa0\xf0\x00\x4a\x0b\x04\x4b\x66\xcf\x09\xf4\xe3\x1f\xc8\xc9\x3b\xa1\x1a\x80\x8c\x81\x12\xf4\x26\xd2\x39\x70\x9d\xa6\xc8\x49\x9b\x5c\x36\x78\x06\xc5\x38\xd7\x7b\x45\xc0\x94\x00\x26\x84\x13\xdf\x4f\xcf\xa0\x40\x1a\x64\x0e\xbd\x68\x83\x2a\x8b\xca\xee\xed\x19\x54\xd2\x3f\xe3\xba\x9c\x34\x80\x7b\xb5\x17\x06\x3d\x00\x00\x29\x22\x58\x91\x91\x6a\x33\xc8\xef\x46\xa7\x18\xc1\xa7\x85\xa2\x1f\xbd\x40\x21\x1d\xb4\x71\x85\x9d\x08\x61\xd0\xda\xa6\x7d\xa5\x5e\xe2\xb1\xa9\xb2\x9e\x0f\x2d\x39\xdb\xb9\x38\x23\xf8\x74\x29\xbf\xfc\xf0\xbd\x97\x65\xfb\xc7\x54\xf2\x25\x1e\x6d\x04\xbf\x79\x86\x85\x4b\x3c\x5e\x4b\x4b\x73\x45\xe6\xf8\x7b\xaf\x0f\x4f\xbd\xdc\x34\x45\x82\xb8\xe0\xcf\x03\xc6\x11\xbc\x2f\xe9\x14\x7e\x66\xfb\x94\xbc\x5d\x66\x30\x63\x06\x03\xc6\x39\x45\x30\xd9\x53\x32\xf1\x19\x2a\x91\xf2\x20\x31\x8d\xc3\x3a\x1c\x8c\x5d\x26\x29\x7c\xd4\xc6\xe8\xc3\xe8\x39\xf6\x87\xc0\x31\x28\x82\xa1\x25\x6d\xd8\x06\x87\xa5\x6f\xae\xee\x97\xc0\xee\xef\xe3\x47\xc8\x98\x92\x3c\x78\x37\xd5\xfb\x54\x80\xd2\x04\x1e\x17\x0c\xc6\x68\x50\x71\x74\x95\x71\xec\x87\xdc\xff\x5d\xbf\x0a\x6d\x38\x84\x07\xdc\x48\xc7\x7d\xb8\xd1\x02\x4b\x85\x8c\xdb\x21\x36\x7b\x30\x74\xf6\xee\x8c\xa6\x08\xf8\x55\xa3\x95\x7f\xcc\x1d\xa3\xa4\x0f\xe3\x31\x28\x99\xd6\x93\x54\xa4\x5d\x95\x0e\x30\xba\xe8\x42\x64\x42\x38\xd0\x07\xe4\xda\x88\xa0\xe1\x5f\x90\x4d\x8a\x41\x4b\xee\x49\xe7\xfe\xb7\x75\x1d\xfc\x6b\x89\x5e\xf3\xca\xe9\xd7\xb8\xb6\xad\xeb\x4c\xad\xce\x6d\x3b\x72\x75\xb6\x53\xbd\xdb\x49\x22\x14\x11\x8c\x2e\x5a\xfc\x09\x0f\x92\x12\x61\xd8\x21\x28\x78\xee\x3f\x9b\xcc\xe8\x37\x93\x9b\x97\xd3\xb2\xbf\x30\x18\x5d\x54\x49\x1e\x00\xe9\x7f\x51\xb8\x0e\xc8\x54\xaa\xed\xe8\xfd\xd3\xab\x10\x77\x79\xeb\x9d\x3e\xb4\xcb\xf5\x06\x37\xf7\xc5\x1d\x79\x62\x66\x83\xf4\xf6\xd0\x9f\xa5\xa6\x38\x9d\xaa\x17\x15\xec\x7b\xa1\x41\xff\x3f\xf6\xbf\xb5\x7f\xf3\xc1\x5c\x35\x71\xbe\x56\xce\x23\x01\x32\x46\x49\xbd\x91\x8b\xe0\x17\x2a\xd6\x30\x7e\x29\x16\xa7\x0d\x72\xb3\x59\x54\xbc\x35\x94\xa2\x39\x10\x3a\xd6\x42\xb1\x6b\xb4\x69\xed\x08\xbf\x20\x80\x81\x45\xae\x95\x60\xe6\x58\x6e\x89\x58\x1b\x87\x24\x0d\xd8\x0c\xb9\x8c\x25\x3f\x6f\x0a\x5b\x1f\x33\x45\xd4\xa1\xeb\x4d\x37\x18\xbe\x05\x66\xfd\x76\xe8\x9a\x0f\x3b\xc6\x13\xa9\x70\xc2\x39\xc1\xb8\x3e\x72\x83\x8c\x1d\xd1\x44\x79\xe1\x9a\x29\x76\x71\x6c\xf1\x08\x52\xd5\x76\x00\x3c\xb5\x28\x55\x83\x0e\xb7\x78\xb4\x6e\xd4\x04\xa5\x47\xe4\x30\xc2\xf2\x3a\x80\x84\xd9\x64\x92\x6e\xb4\x91\x94\xec\xbc\xb6\x21\x1a\xc0\x01\xe5\x26\x21\xaf\xf2\xe7\x66\x60\xa7\xf6\xf3\xfe\xe4\x9f\x35\x55\xb3\x2f\xff\x41\x11\x6e\x90\xca\x1f\x28\xb9\x3a\xa8\x1a\xb8\xac\xe3\xb3\xde\xac\x3f\xe6\xdc\xf5\x67\xec\xaa\xe5\x4b\xd0\x30\x57\x74\x37\xfa\x09\x30\xb5\xd8\x59\xa9\xef\xbe\xe6\x4a\x89\xed\xe6\x8e\x19\x92\x5c\x66\x4c\x51\xab\x60\xb3\xe5\x55\x4d\xfd\xdf\x0a\xd6\xfc\x8a\xaa\x6e\xb3\xe5\x55\x58\x53\xbc\x50\x37\x7f\x3c\xf5\x4e\x7f\x07\x00\x00\xff\xff\x85\xfa\xf3\xa8\x55\x0b\x00\x00" func epochNodeRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -1539,11 +1500,11 @@ func epochNodeRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/node/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x68, 0x71, 0x8d, 0x2a, 0x43, 0x15, 0x3f, 0xea, 0xe6, 0xaf, 0x8c, 0x46, 0xaa, 0x5, 0x11, 0x3d, 0x13, 0x3d, 0x30, 0xf1, 0x3b, 0x87, 0xc6, 0xa3, 0x39, 0x96, 0xcf, 0x3d, 0x75, 0x77, 0xbb, 0x90}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x69, 0xe1, 0xcd, 0xd2, 0xf9, 0x1d, 0xb4, 0x43, 0x49, 0x62, 0x8b, 0x4e, 0x14, 0x50, 0x24, 0x67, 0xce, 0x3e, 0x97, 0x76, 0xb7, 0x2b, 0x86, 0xa4, 0x89, 0xec, 0xa9, 0xb4, 0x9b, 0xf6, 0x8a, 0xa5}} return a, nil } -var _epochNodeRegister_qc_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\xcd\x4e\x84\x40\x0c\xc7\xef\xf3\x14\x0d\x87\xcd\x90\xb8\x3c\x00\x41\x37\x06\x35\xf1\x62\xd4\x35\xde\x67\x87\xf2\x11\xd9\xe9\x58\x8a\x7b\x30\xfb\xee\x86\x0f\x47\x50\x7b\x82\xe9\xbf\xed\xef\xdf\x36\x47\x4f\x2c\x70\xd7\xd2\xe9\xd6\x93\xad\xa1\x64\x3a\x42\x14\xfe\x23\xb5\x50\xdc\xdf\xbc\x98\x43\x8b\x7b\x31\x6f\x8d\xab\x16\xd2\x75\x62\x55\x93\xb7\x7d\x27\xc8\x4f\xf9\x42\x1e\xde\x22\xa5\x84\x8d\xeb\x8c\x95\x86\x9c\x8e\xe1\x53\x29\x00\x00\xcf\xe8\x0d\xa3\xee\x9a\xca\x21\xa7\x60\x7a\xa9\xf5\x5e\x88\x4d\x85\x31\x6c\xae\xad\xa5\xde\x49\x90\x0f\xd1\xa2\x80\xa3\x02\x9f\xb1\x84\x4b\x98\x0a\x93\x6e\x2a\x49\x0e\xc4\x4c\xa7\x6c\xf3\x97\x35\x79\xa0\x62\xfc\x46\xbe\xd2\x03\x61\xfa\x8f\xd3\x85\x68\x86\x78\x34\x52\xc7\x61\xf6\x10\xbb\x1d\x78\xe3\x1a\xab\xa3\x9c\xfa\xb6\x00\x47\x02\xd3\xd8\x11\x0b\x18\x4b\x64\x74\x16\xa7\x3d\xcc\x64\xe0\x8d\xd4\x51\xbc\xb6\xf1\x6e\x5f\x49\x90\x21\xdb\xfe\xdc\x25\xa9\x50\xc2\xda\xc6\xb4\x76\x01\x2a\xfd\x76\xbe\x68\xf4\x6b\x03\x9d\xf9\x40\x9d\x6d\xe7\xd6\x17\x20\x94\xae\xcf\x93\x8c\x89\x95\xbd\xb1\xd7\x59\x9d\xbf\x02\x00\x00\xff\xff\x2b\x73\x77\x18\x24\x02\x00\x00" +var _epochNodeRegister_qc_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6b\x83\x40\x10\x85\xef\xfe\x8a\x21\x87\x62\xa0\x91\x9e\x25\x6d\xb0\x6a\x69\xa0\xa4\x49\x94\x42\x8f\x9b\xcd\x44\xa5\x66\x67\x3b\x8e\x4d\xa1\xe4\xbf\x97\x68\xb4\x91\x66\x4e\x0b\xf3\xcd\x9b\xf7\x66\x8b\xbd\x25\x16\x78\x2a\xe9\x10\x5b\xd2\x39\xec\x98\xf6\x70\xf7\x1d\x2f\x5f\xc3\xe7\x20\x8a\xd6\x71\x92\x38\x17\xd0\x3c\x4a\xd5\xa6\xc4\x44\xd4\x47\x61\xb2\x8e\x9e\x47\xf1\x22\x9d\xa7\xef\x69\xf0\xf8\x12\x5f\x99\x0a\xcb\xba\x12\xe4\x55\xd8\x0d\xac\xc2\x8e\x72\x84\x95\xa9\x94\x96\x82\x8c\x3b\x86\x1f\xc7\x01\x00\xb0\x8c\x56\x31\xba\x55\x91\x19\x64\x1f\x82\x5a\xf2\x40\x6b\xaa\x8d\xf4\xcc\xa9\x4a\x14\x30\xb4\xc5\x35\xee\xe0\x1e\x5a\xda\xdb\x10\x33\x1d\xa6\x37\xff\xfd\x7a\x0b\xda\x36\x6f\xe4\x07\xf7\x64\xc5\xbf\x12\xea\x02\x4a\x84\x58\x65\xb8\x54\x92\x8f\xfb\x9d\xa7\x9a\xcd\xc0\x2a\x53\x68\x77\x14\x52\x5d\x6e\xc1\x90\x40\xbb\xb6\xb1\x03\x8c\x3b\x64\x34\x1a\xdb\xc0\x55\xab\x03\x56\x49\x3e\x1a\x0f\xed\x7f\xea\x37\x12\x64\x98\x4e\xfe\x7e\xc1\xcb\x50\xfa\x9b\x35\x6d\xd7\xf4\xa6\xfc\x2e\xf1\x85\xd0\x39\x79\xa5\xbe\xd0\x9d\x4e\xce\x92\xb7\x20\xe4\x0f\xef\xef\x35\x8d\x41\xac\x46\xe3\xe8\x1c\x7f\x03\x00\x00\xff\xff\x74\xcf\x74\xd0\x0a\x02\x00\x00" func epochNodeRegister_qc_voterCdcBytes() ([]byte, error) { return bindataRead( @@ -1559,11 +1520,11 @@ func epochNodeRegister_qc_voterCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/node/register_qc_voter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe3, 0x85, 0x38, 0x83, 0x3f, 0x29, 0xc8, 0x67, 0xf8, 0x39, 0x18, 0x90, 0x30, 0x95, 0xd7, 0xfb, 0xcb, 0x28, 0xff, 0x42, 0xeb, 0x66, 0x30, 0x6, 0x8b, 0x32, 0xc, 0x6a, 0x41, 0x3f, 0x8d, 0xc0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfe, 0xd1, 0x80, 0x46, 0x4e, 0x2a, 0x21, 0x39, 0x43, 0x6e, 0x28, 0xcd, 0x8c, 0x59, 0x5e, 0xef, 0x96, 0x18, 0xea, 0xa7, 0x24, 0x97, 0x61, 0x3, 0xac, 0x3c, 0xbb, 0x81, 0x38, 0x1d, 0x8, 0xea}} return a, nil } -var _epochScriptsGet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\xdd\x32\x2b\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\xe6\xe8\xa5\xa7\x96\x38\xe5\xe7\x95\x16\x87\xe4\x67\xa7\xe6\x15\x6b\x68\x72\xd5\x72\x01\x02\x00\x00\xff\xff\x76\x1b\x5a\x11\x6c\x00\x00\x00" +var _epochScriptsGet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x18\xa1\x97\x9e\x5a\xe2\x94\x9f\x57\x5a\x1c\x92\x9f\x9d\x9a\x57\xac\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x22\xca\x00\x28\x66\x00\x00\x00" func epochScriptsGet_bonus_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1579,11 +1540,11 @@ func epochScriptsGet_bonus_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_bonus_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdf, 0xb7, 0x12, 0xf4, 0xd5, 0x3, 0x5c, 0xc, 0xe2, 0x8f, 0xba, 0x1, 0xf6, 0xeb, 0xf5, 0x5e, 0x78, 0xa2, 0xa7, 0x95, 0x60, 0x32, 0x30, 0x36, 0x18, 0xe8, 0xde, 0xb7, 0x4d, 0xbd, 0xd3, 0xa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2d, 0x14, 0x74, 0x6e, 0xc9, 0x89, 0xa4, 0x34, 0xe3, 0xa3, 0x76, 0x4, 0x44, 0x1d, 0xf1, 0x42, 0xfe, 0xa3, 0x87, 0x9c, 0xb, 0x97, 0x1e, 0x37, 0x84, 0xa1, 0x4d, 0xdf, 0x61, 0xe1, 0xf2, 0x1b}} return a, nil } -var _epochScriptsGet_config_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x10\x7a\xf4\x9c\xf3\xf3\xd2\x32\xd3\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x90\x64\xd3\x53\x4b\x20\x0a\x7c\x53\x4b\x12\x53\x12\x4b\x12\x35\x34\xb9\x6a\xb9\x00\x01\x00\x00\xff\xff\x49\x98\x62\x2b\x79\x00\x00\x00" +var _epochScriptsGet_config_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x42\x28\xd7\x73\xce\xcf\x4b\xcb\x4c\x57\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x92\x4d\x4f\x2d\x81\x28\xf0\x4d\x2d\x49\x4c\x49\x2c\x49\xd4\xd0\xe4\xaa\x05\x04\x00\x00\xff\xff\x9e\xe7\x40\xf1\x73\x00\x00\x00" func epochScriptsGet_config_metadataCdcBytes() ([]byte, error) { return bindataRead( @@ -1599,11 +1560,11 @@ func epochScriptsGet_config_metadataCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_config_metadata.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdc, 0x29, 0xb6, 0xd6, 0xa0, 0xb4, 0x99, 0xd, 0x4b, 0x96, 0x98, 0x11, 0xa1, 0x5d, 0x26, 0xa8, 0xa1, 0xfe, 0x9c, 0xbd, 0x5f, 0xbc, 0xac, 0xc5, 0x8, 0xcc, 0xe7, 0xf2, 0x6d, 0xd2, 0x51, 0xb7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xec, 0xb9, 0x3f, 0x2, 0xdb, 0xb7, 0x87, 0x6f, 0x92, 0x1e, 0x7e, 0x5d, 0xec, 0xa3, 0x9, 0x4a, 0xe, 0x1d, 0xa3, 0xaf, 0xd7, 0xc9, 0x3, 0xc9, 0xd3, 0x74, 0xe0, 0xee, 0xa0, 0xff, 0x9f, 0xd9}} return a, nil } -var _epochScriptsGet_create_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xb1\xca\x83\x40\x10\x84\xfb\x7b\x8a\xc1\x4a\x1b\x1f\xc0\xd6\xff\x0f\xa4\x0c\x29\xc5\x62\xb9\xac\x89\xb0\xde\xca\xde\x4a\x08\x21\xef\x1e\x08\x62\x4c\x37\x33\x7c\xc3\xcc\x38\xcd\x6a\x8e\x83\xe8\xfd\x7f\xd6\x78\xc3\x60\x3a\xa1\xd8\x7c\x11\x76\x44\x2b\x4b\x76\xb6\x53\xbb\xa3\xb6\xac\x08\x81\x62\xe4\x9c\x4b\x12\xa9\x30\x2c\x09\x13\x8d\xa9\x24\x33\x7a\x34\xe8\xce\x6e\x63\xba\xf6\x55\x83\xee\xa7\x57\xaf\xaa\xc7\x33\x00\x80\xb1\x2f\x96\xbe\x8f\xea\x68\x4c\xce\xad\x8a\x70\x74\xb5\x15\xcf\x65\xd2\x0b\x1f\xff\x72\x83\xcf\x42\x15\x5e\xe1\x1d\x00\x00\xff\xff\xb5\xb7\x78\xee\xcd\x00\x00\x00" +var _epochScriptsGet_create_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x31\x0f\x82\x30\x14\x04\xe0\xbd\xbf\xe2\x46\x58\x88\x33\x9b\x29\x18\x9d\x14\x19\x09\x43\xc5\xa2\x24\xa5\x8f\xbc\xbe\x46\x8d\xf1\xbf\x9b\x18\x88\xba\xdd\xf0\x5d\xee\x86\x71\x22\x16\x6c\x1c\xdd\xca\x89\xba\x2b\x7a\xa6\x11\xab\x7b\x79\xd8\xeb\xed\xba\x28\x8e\x65\x5d\xab\x1f\xa4\x5d\x0c\x62\xb9\xd2\x0b\xac\xf4\xa2\xd4\x14\x4f\xe8\xa3\xc7\x68\x06\x9f\x18\x66\xf3\xc8\xd1\xd4\xc2\x83\xbf\xb4\x69\x8e\xe6\xaf\x9f\xcd\xa9\xc5\x53\x29\x00\x60\x2b\x91\xfd\xf7\x49\xd6\xb1\x35\x62\x35\x39\x67\x3b\x21\x9e\x7d\x48\x3c\x9d\xed\xae\x08\x39\x3e\x13\xa9\x52\xaf\x77\x00\x00\x00\xff\xff\xd4\x3f\xa4\x4f\xc5\x00\x00\x00" func epochScriptsGet_create_clustersCdcBytes() ([]byte, error) { return bindataRead( @@ -1619,11 +1580,11 @@ func epochScriptsGet_create_clustersCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_create_clusters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x53, 0x30, 0xb5, 0x66, 0xa1, 0x17, 0x72, 0xdf, 0xf5, 0x1a, 0x82, 0x7a, 0xa9, 0x3d, 0x91, 0xef, 0xbf, 0x11, 0x15, 0x6e, 0xfd, 0x84, 0x7, 0x85, 0xde, 0xd8, 0x9, 0x31, 0x4d, 0x21, 0x64, 0x35}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5f, 0xb5, 0xe4, 0x8c, 0xf5, 0x14, 0xb0, 0x64, 0xce, 0x90, 0x7, 0xc4, 0x7a, 0xdd, 0x38, 0xe8, 0x37, 0xea, 0x59, 0xe3, 0x75, 0x4d, 0x2e, 0xb0, 0x71, 0xc2, 0x5b, 0xf5, 0x92, 0xb5, 0x6d, 0xb1}} return a, nil } -var _epochScriptsGet_current_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd2\xd7\x57\x08\x4a\x2d\x29\x2d\xca\x2b\x56\x28\xc9\x48\x55\x28\xcb\x4c\x2d\x57\xc8\x4f\x03\xb3\x93\x4b\x8b\x8a\x52\xf3\x4a\x14\x92\x72\xf2\x93\xb3\xb9\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\x3d\xf3\x4a\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x72\x52\x4b\x60\xfa\x9c\x40\xda\x14\x6c\x15\xd2\x53\x4b\x9c\x91\x44\x34\x34\xc1\x0a\x8b\xc0\x96\xa2\xa8\xd5\x03\x59\xce\x55\xcb\x05\x08\x00\x00\xff\xff\x31\x43\x70\x8e\x93\x00\x00\x00" +var _epochScriptsGet_current_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd2\xd7\x57\x08\x4a\x2d\x29\x2d\xca\x2b\x56\x28\xc9\x48\x55\x28\xcb\x4c\x2d\x57\xc8\x4f\x03\xb3\x93\x4b\x8b\x8a\x52\xf3\x4a\x14\x92\x72\xf2\x93\xb3\xb9\xb8\x0a\x4a\x93\x14\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\x3d\xf3\x4a\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x72\x52\x4b\x60\xea\x9d\x40\xca\x15\x6c\x15\xd2\x53\x4b\x9c\x91\x44\x34\x34\xc1\x0a\x8b\xc0\x96\xa1\xa8\xd5\x03\x59\xca\x55\x0b\x08\x00\x00\xff\xff\xc5\x9c\xf3\xf5\x8a\x00\x00\x00" func epochScriptsGet_current_viewCdcBytes() ([]byte, error) { return bindataRead( @@ -1639,11 +1600,11 @@ func epochScriptsGet_current_viewCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_current_view.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xca, 0x73, 0xd7, 0x7e, 0xbb, 0xc1, 0xf1, 0x48, 0x38, 0xc7, 0x46, 0x64, 0xbd, 0x3, 0x96, 0xc3, 0x96, 0xa1, 0x6c, 0x17, 0x53, 0x1e, 0x2e, 0x17, 0x5e, 0x74, 0x20, 0x69, 0x5, 0x49, 0x81, 0x46}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0xe7, 0xfb, 0x19, 0x77, 0x21, 0xb8, 0x52, 0x37, 0x51, 0xd3, 0x1, 0xe3, 0x74, 0xbc, 0x18, 0x86, 0x2d, 0x47, 0xe3, 0x12, 0xb4, 0x61, 0x2a, 0xbd, 0x26, 0xf9, 0xb3, 0x34, 0x69, 0xa8, 0xe}} return a, nil } -var _epochScriptsGet_epoch_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\x3d\xf3\x4a\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\xe6\xe8\x25\x97\x16\x15\xa5\xe6\x95\x80\x39\xce\xf9\xa5\x79\x25\xa9\x45\x5c\xb5\x80\x00\x00\x00\xff\xff\xc6\x93\x6d\x15\x6e\x00\x00\x00" +var _epochScriptsGet_epoch_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\xf5\xcc\x2b\x31\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x18\xa1\x97\x5c\x5a\x54\x94\x9a\x57\x02\xe6\x38\xe7\x97\xe6\x95\xa4\x16\x71\xd5\x02\x02\x00\x00\xff\xff\x59\x76\xbe\x5f\x69\x00\x00\x00" func epochScriptsGet_epoch_counterCdcBytes() ([]byte, error) { return bindataRead( @@ -1659,11 +1620,11 @@ func epochScriptsGet_epoch_counterCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_epoch_counter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x83, 0x42, 0x10, 0xa0, 0xad, 0xb7, 0x47, 0xa, 0x61, 0x20, 0xe3, 0xe2, 0xef, 0x4c, 0x70, 0xe6, 0x10, 0xef, 0x4d, 0x43, 0x5e, 0xcb, 0xa9, 0x60, 0x2d, 0x66, 0x4, 0xf2, 0xee, 0x88, 0xd2, 0x26}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0x29, 0xfd, 0x4d, 0x49, 0x4c, 0x4e, 0x71, 0x61, 0x2b, 0xc3, 0xb5, 0x76, 0xb2, 0x70, 0x62, 0x3d, 0xda, 0xef, 0x24, 0x72, 0x5e, 0x7c, 0xfd, 0xab, 0x4d, 0x55, 0x13, 0x2e, 0xc, 0x79, 0x62}} return a, nil } -var _epochScriptsGet_epoch_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x52\x41\x92\xce\xf9\xa5\x79\x25\xa9\x45\x56\x0a\xa1\x9e\x79\x25\x66\x26\x9a\x56\x08\x73\xf4\xc0\xa4\x6f\x6a\x49\x62\x4a\x62\x49\xa2\x42\x35\x97\x82\x82\x82\x42\x51\x6a\x49\x69\x51\x1e\x92\xa2\xf4\xd4\x12\x14\x75\x28\xc6\x6a\x2a\x72\xd5\x02\x02\x00\x00\xff\xff\xc7\x41\x13\xa2\x9f\x00\x00\x00" +var _epochScriptsGet_epoch_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x05\xa9\x73\xce\x2f\xcd\x2b\x49\x2d\xb2\x52\x08\xf5\xcc\x2b\x31\x33\xd1\xb4\x42\x18\xa1\x07\x26\x7d\x53\x4b\x12\x53\x12\x4b\x12\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x90\x14\xa5\xa7\x96\xa0\xa8\x43\x31\x56\x53\x91\xab\x16\x10\x00\x00\xff\xff\xea\x2c\x4c\x69\x9a\x00\x00\x00" func epochScriptsGet_epoch_metadataCdcBytes() ([]byte, error) { return bindataRead( @@ -1679,11 +1640,11 @@ func epochScriptsGet_epoch_metadataCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_epoch_metadata.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xf7, 0x5b, 0xef, 0xc4, 0x5f, 0xa4, 0xcf, 0xc5, 0x9e, 0x16, 0x2e, 0xa9, 0x19, 0x76, 0x2b, 0x9f, 0x9, 0xdf, 0x16, 0x2c, 0xf3, 0x59, 0x48, 0x8c, 0x36, 0x26, 0xc, 0x9c, 0xd6, 0xb8, 0x12}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0xd2, 0xe0, 0xe9, 0xc1, 0x42, 0xed, 0x3a, 0x65, 0x49, 0xb3, 0xf3, 0xb4, 0x9d, 0xf0, 0x50, 0xe, 0xeb, 0x52, 0xd, 0x4c, 0x83, 0xb5, 0x75, 0x83, 0xd3, 0x28, 0xb6, 0x8b, 0x5b, 0x57, 0xd}} return a, nil } -var _epochScriptsGet_epoch_phaseCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xcc\xb1\x0a\xc2\x40\x0c\x06\xe0\xfd\x9e\xe2\xa7\x53\xbb\x74\x16\x77\x05\x37\x17\xdd\xc3\x91\xd2\x42\x2e\x29\xb9\x84\x0e\xe2\xbb\x0b\x0e\x3a\x7e\xcb\xb7\xb5\xdd\x3c\x70\x15\x3b\x2e\xbb\xd5\x15\x8b\x5b\xc3\xf0\xf3\x50\x0a\xd5\xca\xbd\x8f\x24\x32\x61\x49\x45\xa3\x4d\xc7\xe9\x8c\xc7\x4d\xe3\x84\x57\x01\x00\xe7\x48\xd7\x7f\x33\xd7\x74\x67\x8d\x2f\xee\x2b\x75\x9e\x9d\x8e\x27\x49\x72\x79\x7f\x02\x00\x00\xff\xff\xd2\xb5\x20\xc1\x74\x00\x00\x00" +var _epochScriptsGet_epoch_phaseCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\xf5\xcc\x2b\xb1\x50\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x98\xa0\x97\x5c\x5a\x54\x94\x9a\x57\x02\xe6\x04\x64\x24\x16\xa7\xea\x15\x25\x96\x87\x25\xe6\x94\xa6\x72\xd5\x02\x02\x00\x00\xff\xff\x8a\x47\xc8\x84\x6f\x00\x00\x00" func epochScriptsGet_epoch_phaseCdcBytes() ([]byte, error) { return bindataRead( @@ -1699,11 +1660,11 @@ func epochScriptsGet_epoch_phaseCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_epoch_phase.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8e, 0xc2, 0x92, 0xc6, 0x5c, 0xd7, 0x19, 0x5d, 0xed, 0x1d, 0xe8, 0xfc, 0x5a, 0xfa, 0x53, 0x75, 0x8a, 0x15, 0x52, 0x13, 0xdf, 0x55, 0xae, 0x71, 0x7e, 0xcc, 0xc, 0x81, 0x95, 0xdc, 0xc7, 0xc5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0xa7, 0x17, 0x55, 0x9f, 0xf4, 0x58, 0xc4, 0xc6, 0x16, 0x8b, 0xe6, 0xd4, 0x55, 0x28, 0x7f, 0x32, 0x29, 0x66, 0x4e, 0x75, 0x64, 0xec, 0x24, 0x54, 0xf5, 0x6b, 0xf8, 0x1a, 0xfa, 0xbe, 0x74}} return a, nil } -var _epochScriptsGet_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x10\x7a\xf4\xc0\x64\x48\x66\x6e\x66\x5e\xba\x73\x7e\x5e\x5a\x66\xba\x42\x35\x97\x82\x82\x82\x42\x51\x6a\x49\x69\x51\x1e\x92\xc2\xf4\xd4\x12\x0c\xb5\x1a\x9a\x5c\xb5\x80\x00\x00\x00\xff\xff\xd4\x6d\x92\x2d\x86\x00\x00\x00" +var _epochScriptsGet_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x42\x28\xd7\x03\x93\x21\x99\xb9\x99\x79\xe9\xce\xf9\x79\x69\x99\xe9\x0a\xd5\x5c\x0a\x0a\x0a\x0a\x45\xa9\x25\xa5\x45\x79\x48\x0a\xd3\x53\x4b\x30\xd4\x6a\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x36\x40\x3a\x4b\x81\x00\x00\x00" func epochScriptsGet_epoch_timing_configCdcBytes() ([]byte, error) { return bindataRead( @@ -1719,11 +1680,11 @@ func epochScriptsGet_epoch_timing_configCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_epoch_timing_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0x3f, 0xce, 0x1b, 0x5d, 0x2, 0xa1, 0xda, 0x74, 0x91, 0x1e, 0x7f, 0x30, 0x80, 0x4b, 0xa1, 0xc5, 0xbc, 0x78, 0x58, 0xe2, 0x85, 0xa3, 0x36, 0x62, 0x7a, 0x19, 0xcc, 0x30, 0xc4, 0x9e, 0x8c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe5, 0xbe, 0x93, 0x2d, 0x1, 0xa9, 0x63, 0x45, 0x26, 0x2b, 0xa4, 0x83, 0x3f, 0xeb, 0x95, 0x61, 0x2f, 0x3d, 0x1a, 0xbe, 0x7e, 0x6a, 0x7d, 0xf7, 0x18, 0x6f, 0x75, 0xf3, 0x7, 0x42, 0x69, 0xdd}} return a, nil } -var _epochScriptsGet_proposed_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\x3d\xf3\x4a\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\xe6\xe8\x15\x14\xe5\x17\xe4\x17\xa7\xa6\x80\x79\xce\xf9\xa5\x79\x25\xa9\x45\x1a\x9a\x5c\xb5\x80\x00\x00\x00\xff\xff\x47\x3a\xad\xbf\x71\x00\x00\x00" +var _epochScriptsGet_proposed_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\xf5\xcc\x2b\x31\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x18\xa1\x57\x50\x94\x5f\x90\x5f\x9c\x9a\x02\xe6\x39\xe7\x97\xe6\x95\xa4\x16\x69\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x07\x41\x31\x75\x6c\x00\x00\x00" func epochScriptsGet_proposed_counterCdcBytes() ([]byte, error) { return bindataRead( @@ -1739,11 +1700,11 @@ func epochScriptsGet_proposed_counterCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_proposed_counter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0xc4, 0xf8, 0x7c, 0xf, 0x29, 0xc7, 0x76, 0xb4, 0x12, 0x90, 0xa3, 0x44, 0x2d, 0x55, 0x7e, 0x6f, 0x2e, 0x42, 0xac, 0x6e, 0x97, 0xb6, 0x9d, 0xf3, 0x7f, 0x88, 0xf4, 0x20, 0x92, 0xed, 0x42}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa0, 0xaf, 0x64, 0x22, 0x79, 0x9f, 0xc5, 0xe9, 0xfa, 0xc, 0xf4, 0x32, 0x2c, 0xa2, 0x14, 0xcd, 0x55, 0xe1, 0xd4, 0x57, 0x3f, 0x7e, 0x2c, 0xc6, 0x89, 0x89, 0xe, 0x1c, 0xf6, 0x9e, 0xd6, 0x2d}} return a, nil } -var _epochScriptsGet_randomizeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x12\x8b\x8a\x12\x2b\xad\x14\xa2\x83\x4b\x8a\x32\xf3\xd2\x63\x35\x11\x4c\x85\x6a\x2e\x05\x05\x05\x85\xa2\xd4\x92\xd2\xa2\x3c\x84\xc1\x7a\x45\x89\x79\x29\xf9\xb9\x99\x55\xa9\x10\xbd\x9a\x5c\xb5\x5c\x80\x00\x00\x00\xff\xff\x71\xcc\x71\x38\x7d\x00\x00\x00" +var _epochScriptsGet_randomizeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x2c\x2a\x4a\xac\xb4\x52\x88\x0e\x2e\x29\xca\xcc\x4b\x8f\xd5\x44\x30\x15\xaa\xb9\xb8\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\x86\xea\x15\x25\xe6\xa5\xe4\xe7\x66\x56\xa5\x42\x34\x6b\x72\x71\xd5\x02\x02\x00\x00\xff\xff\xa0\xd2\x7c\x11\x79\x00\x00\x00" func epochScriptsGet_randomizeCdcBytes() ([]byte, error) { return bindataRead( @@ -1759,11 +1720,11 @@ func epochScriptsGet_randomizeCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_randomize.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0x12, 0xd9, 0x65, 0x36, 0xf, 0xe4, 0x3b, 0x80, 0x3b, 0xdd, 0x29, 0x6b, 0xfd, 0x50, 0x6a, 0x2e, 0xa5, 0xa1, 0x70, 0x41, 0xc2, 0x79, 0xec, 0xfb, 0x14, 0x51, 0xc, 0xe8, 0xb8, 0xcb, 0xb4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x15, 0x1a, 0x8d, 0x4d, 0xe8, 0x67, 0x7a, 0x7b, 0xc6, 0xeb, 0x95, 0xae, 0xc7, 0x7a, 0x1a, 0x50, 0xb8, 0x2b, 0xa3, 0xb1, 0x4c, 0xa0, 0x83, 0xea, 0xa9, 0x8e, 0xc1, 0x5b, 0x3d, 0x41, 0x8a, 0x79}} return a, nil } -var _epochScriptsGet_target_end_time_for_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8f\x31\x8b\xc3\x30\x0c\x85\x77\xff\x8a\x47\xa6\x78\xb9\xe9\xb8\xe1\xa0\x5d\x42\x03\xdd\xd3\x1f\x60\x5c\x25\x35\xd8\x72\x50\x6c\x3a\x94\xfc\xf7\x12\x27\x69\xa3\x41\x3c\xa1\xf7\xe9\x21\x17\xc6\x28\x09\xad\x8f\xcf\xcb\x18\xed\x03\xbd\xc4\x80\xea\x33\x57\x4a\x19\x6b\x69\x9a\x6a\xe3\xbd\x46\x9f\x19\xc1\x38\xae\x93\x91\x81\x52\xb1\xfc\xe3\x76\xe5\xf4\xf7\xab\x77\x81\x97\x02\x80\x51\x68\x53\x4b\x1d\x00\x9c\x4f\xdf\xc0\x1f\x9b\x45\x88\xd7\x4d\x13\x33\x27\x92\x02\xcd\xa5\x7b\x4a\xb0\x91\x7b\x37\xe0\x08\xed\xa7\x3a\x17\x1c\x0f\x4d\x31\xd4\xba\x10\x42\x29\x0b\x6f\xd0\x62\xec\xd6\x64\xbe\x77\x2e\x50\x1b\xa5\x80\xc7\x07\xb4\x9a\xdf\x01\x00\x00\xff\xff\x48\xb4\xb0\xb3\x07\x01\x00\x00" +var _epochScriptsGet_target_end_time_for_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8f\x4d\x0a\xc2\x30\x10\x85\xf7\x39\xc5\x5b\xb6\x1b\x71\x21\x2e\x04\x05\xe9\x0f\xba\x52\x6c\x3d\x40\xad\x69\x0d\x34\x93\x30\x24\x28\x48\xef\x2e\x4d\x5b\x6c\x16\xe1\xc1\x7c\xdf\x3c\x46\x69\x6b\xd8\x21\xef\xcc\x3b\xb3\xa6\x7e\xa1\x61\xa3\xb1\xfe\x64\xd7\x4b\x72\x3a\xa6\xe9\x2d\x2b\x0a\x21\xac\x7f\xa0\xf1\x04\x5d\x29\x8a\x5c\xc5\xad\x74\x81\xde\xe1\x7e\x26\xb7\xdd\xc4\x73\xc0\x57\x00\x80\x65\x39\xa5\xe1\x2d\x04\x1c\xf6\xff\xae\x55\xed\x99\x25\x8d\x93\xc4\x78\x72\x92\x83\xd4\x87\xbf\x93\x0e\xb5\xa1\x46\xb5\x58\x4a\xf3\xaa\x52\x69\x45\x6d\x12\x80\x28\x0e\x06\x4b\xe7\x99\x26\x69\x00\xcb\xb1\x99\x9e\xa5\xd2\x32\x37\x1c\xc4\xe5\x01\xb1\xe8\x7f\x01\x00\x00\xff\xff\x4c\x97\xdf\x07\x02\x01\x00\x00" func epochScriptsGet_target_end_time_for_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1779,11 +1740,11 @@ func epochScriptsGet_target_end_time_for_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_target_end_time_for_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x2c, 0x9a, 0x3f, 0xf9, 0x63, 0x6b, 0x6, 0x62, 0x77, 0x4b, 0xf8, 0x7c, 0xfa, 0xc0, 0x87, 0x40, 0xcb, 0x6c, 0x11, 0x6, 0x75, 0xc3, 0x10, 0x56, 0xdc, 0xf7, 0x79, 0x9, 0xa4, 0x6f, 0xd4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0xdd, 0x7, 0xc, 0x15, 0x68, 0xe9, 0x1, 0x77, 0x80, 0xe2, 0x2f, 0x44, 0xa8, 0xc, 0xf6, 0x4f, 0x60, 0x38, 0xab, 0xbe, 0x6e, 0x2c, 0xc4, 0x97, 0x55, 0x49, 0xad, 0x21, 0x6d, 0xb4, 0xa0}} return a, nil } -var _flowtokenBurn_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x3d\x73\x9c\x30\x10\xed\xf9\x15\x2f\x57\x78\xa0\x30\x34\x99\x14\x37\x97\x38\xb6\x67\x5c\xa6\x72\x9c\x5a\xc0\xde\xa1\x09\x48\xcc\x4a\x04\x7b\x3c\xfe\xef\x19\xad\x40\x86\xe2\xae\x38\x40\xda\x7d\x1f\xfb\xb6\xaa\xf0\xdc\x69\x07\xcf\xca\x38\xd5\x78\x6d\x0d\xb4\x83\x82\xa7\x61\xec\x95\x27\x9c\x2d\x87\xcf\xcd\xbd\xef\x94\xcf\xaa\x0a\x8d\x9d\xfa\x16\x35\x61\x72\xd4\xa2\x7e\x83\xef\x08\xaa\x1d\xb4\x81\x6a\x1a\x3b\x19\x0f\x6f\x51\x4f\x6c\xe0\xed\x5f\x32\x2e\x34\x9d\xd9\x0e\xa1\x50\x33\x9c\xb7\x4c\x2d\x5e\xd4\xd4\x07\xbc\x4c\xb4\x90\x34\x68\x73\x81\x1a\x04\x62\x5e\x59\x14\x46\xc5\x6a\x20\x4f\x1c\x70\x03\xd9\x46\x55\x96\xe9\x61\xb4\xec\xf1\x34\x99\x8b\xae\x7b\x7a\x0e\x94\x91\xee\xb0\x3b\x3b\xa4\xca\xde\xce\xbb\xaa\xf5\xfb\x90\x65\x1b\xe4\x3c\x0a\x39\xe2\xf7\x93\x7e\xfd\xf6\xb5\xc0\x7b\x96\x01\x40\x55\x45\xe9\x60\x72\x76\xe2\x86\x64\x30\xe8\x6c\xdf\xba\xa8\x4e\x4c\xc7\x53\xc5\x84\x9a\x82\xad\x60\x8f\x5a\x41\xe8\xc9\xe3\x5f\x80\x38\xe2\xe7\x4e\x62\x19\x67\x92\x8a\x64\xa8\x47\xdc\x24\x85\xe5\x7d\x38\xd1\xce\xb3\xf2\x96\x63\xe1\xc8\x34\x2a\xa6\xdc\xe9\x8b\x21\x3e\x42\x4d\xbe\xcb\x1f\x2c\xb3\x9d\x5f\x54\x3f\x51\x81\x9b\xfb\x18\x4b\xb2\xb0\xd8\xf8\xa3\x7d\xd7\xb2\x9a\x57\xc5\x6b\x46\x4b\x98\x22\x11\xda\x48\x60\xea\x42\xa9\xd5\x51\x7f\x2e\xe3\xed\xe9\x16\x91\xb7\x5c\x8a\xca\x5a\x98\x4f\xa2\x62\x6f\x6e\xa5\x2b\xb6\x86\xc4\xf1\x8f\x3c\x50\x1f\x51\x2d\x20\xd5\x79\xbd\x97\xeb\xe2\x4b\xa2\x0e\xbf\x72\x5e\x80\x52\x42\xf1\x59\xec\xcc\x3d\x32\x85\x35\x56\x60\x3a\x13\x93\x09\x39\xd9\xed\xaa\xca\x7f\xca\xf0\x9a\xcd\x58\xf6\xfd\x8a\xcb\x6b\xc9\x5c\x37\x24\x65\xc5\xce\xcf\xdd\x1d\x46\x65\x74\x93\x1f\x1e\x65\xe7\x8d\xf5\x88\xf8\xd7\xd5\xaf\xba\x0f\x11\xea\x23\x5a\xa7\x57\x6a\x26\x4f\x78\x4f\xf8\x61\x8b\x64\xf3\x58\xa2\x4a\x8e\xca\x46\xc6\xf3\x8b\xe6\x07\xb9\xcd\x3f\x25\xa5\x97\xd8\x57\x86\x87\x48\x77\x8b\xa9\xd3\xed\xe7\x02\x6c\x66\xde\x92\xf3\x6c\xdf\x96\xb6\x45\xd6\x47\x86\xff\x01\x00\x00\xff\xff\xc1\xb3\x5c\x5c\x6b\x04\x00\x00" +var _flowtokenBurn_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x31\x6f\xdb\x30\x10\x85\x77\xfd\x8a\xd7\x0c\x85\x3d\x44\xea\x50\x74\x30\xd2\xa6\x4e\x62\x17\x45\x03\x07\x68\x9c\x66\xa6\xa4\xb3\x45\x54\x22\x85\x23\x55\x39\x08\xf2\xdf\x0b\x92\x12\x23\x0d\xf6\x60\xd9\xe2\xdd\xbb\xef\xbd\x63\x96\x61\x5f\x49\x03\xcb\x42\x19\x51\x58\xa9\x15\xa4\x81\x80\xa5\xa6\xad\x85\x25\x1c\x34\xbb\xbf\x93\x73\x5b\x09\x9b\x64\x19\x0a\xdd\xd5\x25\x72\x42\x67\xa8\x44\xfe\x02\x5b\x11\x44\xd9\x48\x05\x51\x14\xba\x53\x16\x56\x23\xef\x58\xc1\xea\xbf\xa4\x8c\x6b\x3a\xb0\x6e\x5c\xa1\x64\x18\xab\x99\x4a\xfc\x11\x5d\xed\xf4\x12\xcf\x42\xbe\x41\xaa\x23\x44\xe3\x25\xfa\x71\x8a\x40\x2b\x58\x34\x64\x89\x9d\xae\x1b\x36\xa1\x4a\x12\xd9\xb4\x9a\x2d\xb6\x9d\x3a\xca\xbc\xa6\xbd\x1b\x19\xc6\x7d\x3a\x6d\x9f\x76\x3f\x7e\xde\xdc\x6f\xf6\x0f\xbf\x36\xbb\xf5\xdd\xdd\xef\xcd\xe3\x63\x6c\xa8\x75\x3f\x2f\xbe\x7f\x78\x9e\x15\x26\x93\x39\x8b\x80\xb5\xc2\xd3\x56\x9e\xbe\x7c\x5e\xe2\x35\x49\x00\x20\xcb\x82\x11\x30\x19\xdd\x71\x41\x3e\x26\x54\xba\x2e\x4d\x60\xf5\x11\x84\xb7\x82\x09\x39\x39\x93\xce\x2c\x95\x5e\xa1\x26\x8b\x7f\x4e\x62\x85\xef\x33\x13\x69\x48\x28\x16\xf9\x88\x57\xf8\x18\xc1\xd3\xb5\x7b\x23\x8d\x65\x61\x35\x87\xc2\x96\xa9\x15\x4c\x0b\x23\x8f\x8a\x78\x85\x75\x67\xab\x75\xd8\x4a\x64\x1e\xb8\x9f\xa5\xad\x4a\x16\xfd\x88\x38\xae\x68\xd8\xa5\x67\x82\x54\x7e\x5f\xe2\x48\xb1\xd5\x50\x7d\x48\xc3\xe9\xd5\x25\xc2\xa0\x34\xd7\xcc\xba\xbf\x9a\xc0\x79\xfa\x6f\x0b\xa7\xba\x42\x36\x88\x64\x87\xf1\xdc\x1f\x2f\x3f\x44\x55\xf7\x49\xfb\x01\x29\xa6\x1d\x9e\xcb\x19\xf7\x2d\x93\xbb\xa0\x02\x4c\x07\x62\x52\x2e\x73\x3d\xbd\x84\xfe\x3b\xee\xe3\x9c\x83\x50\xf6\xf5\xbc\x81\x59\xba\xe7\x8d\xf8\xb2\xe5\xcc\xc7\xf5\x35\x5a\xa1\x64\xb1\xb8\xb8\xf5\xb7\x58\x69\x8b\xa0\x7f\x9e\x7a\xe4\xbd\x08\x52\x6f\xc1\x32\x9d\xa8\xe8\x2c\xe1\x35\xea\xbb\x9b\xe0\x6f\x0f\xfb\xf4\xa3\x93\xb4\xf0\xb1\xec\xa8\xbf\xf1\xa7\x8b\x77\xa4\xf8\x23\xf4\xa5\xee\xe1\xd1\xcd\x60\xea\xea\xf2\x7d\xa7\x93\xac\x4b\x32\x96\xf5\xcb\xd0\x36\x60\xbd\x25\xf8\x1f\x00\x00\xff\xff\x96\xb2\x1c\x72\x3d\x04\x00\x00" func flowtokenBurn_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1799,11 +1760,11 @@ func flowtokenBurn_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/burn_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0xab, 0x79, 0xb7, 0x68, 0xcb, 0x5f, 0xd1, 0x64, 0x9d, 0xc7, 0xd0, 0x52, 0xf7, 0xf0, 0x89, 0x6f, 0x7d, 0x6e, 0x44, 0xe6, 0xe9, 0x29, 0x7d, 0xed, 0xf4, 0x61, 0x3e, 0x14, 0xb1, 0x1d, 0xe0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x5e, 0x83, 0x88, 0x8b, 0xe7, 0xad, 0xf0, 0x65, 0x31, 0xb6, 0xb7, 0x44, 0xba, 0x99, 0xb3, 0x4b, 0xf5, 0x4e, 0xdb, 0xcb, 0xb7, 0x0, 0xd8, 0xdb, 0xe4, 0x3d, 0xff, 0x1d, 0x3f, 0x61, 0xf5}} return a, nil } -var _flowtokenCreate_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\x4d\x6f\xe3\x36\x10\xbd\xf3\x57\x4c\x73\xd8\xda\x81\x23\xa3\x5f\x17\x23\x5b\x60\x9b\x22\x40\x2f\x3d\xb4\xc1\x5e\xbb\x63\x72\x64\xb2\x2b\x91\x02\x39\xb2\x60\x2c\xf2\xdf\x0b\x7e\x88\x96\x0c\x24\xa7\xfa\x64\x72\x66\xde\xbc\xf7\x66\xa8\xfd\xfd\xbd\x10\x2f\xda\x04\x60\x8f\x36\xa0\x64\xe3\x2c\x98\x00\x08\x4c\xfd\xd0\x21\x13\xb4\xce\xc7\xe3\x22\xce\x1a\x19\xa4\x1b\x3b\x05\x47\x82\x31\x90\x12\xec\x20\x10\xc3\x38\x00\x5a\x40\x29\xdd\x68\x19\xd8\xc5\xe2\x09\xbd\x02\x45\x83\x0b\x86\x49\x01\xbb\xaf\x64\x43\x8c\xa1\x75\xac\xc9\x83\x27\x49\xe6\x4c\xbe\x11\xe2\x8f\x16\xd0\x5e\x9c\x25\x08\x64\x55\x58\x26\xc7\x3e\xfe\xfb\x00\xcf\x19\x91\x3c\xfc\x55\xea\x76\x82\x35\xd5\x13\x4c\xa6\xeb\xe0\xdf\x31\x70\x6d\xce\xda\x05\x5a\x60\xc5\xf4\xcf\x38\x76\x9c\x95\x68\x0c\x70\x24\xb2\x22\x2a\xc0\x90\xc2\x9e\xa4\x19\x0c\x59\x06\xb4\x0a\xa8\x37\xf1\x0f\xd0\x39\xde\xa4\x22\x63\x95\x91\xc8\x14\xc4\xa4\x8d\xd4\x89\xdd\xdc\x30\xaa\xd4\x73\xc3\xa6\x18\x3c\xe1\x65\x07\x26\xea\x03\xd7\xb6\x0f\x52\xa3\xb1\x10\xc8\x9f\x8d\x24\x98\xd0\x72\xa2\xd6\x3b\x6b\xd8\x79\x98\xb4\x8b\x63\x28\x80\xc6\x9e\xc4\x95\xbe\xe1\x1d\x18\x06\x89\x16\x26\x64\xa9\x33\xad\x14\x0a\x44\x30\x69\xf2\xb4\x20\x00\x12\x7b\x82\xd6\xbb\xbe\x11\xe2\x6f\xa6\xa1\x64\xe6\x69\xe5\x51\x05\x98\x0c\xeb\x5c\x50\x55\xf8\x83\x10\x3f\x34\xf0\xa2\x09\x9e\x47\x7b\x32\xc7\x8e\xe0\x25\x65\x48\x67\xd9\xa3\x8c\x2e\x30\xf9\x16\x25\x41\xd0\x69\x1f\xb0\xf3\x84\xea\x12\xf7\x42\xd1\xd0\xb9\x0b\x29\x08\xae\xa7\x44\x4a\xfc\x98\xd1\x70\x18\x3a\x23\x31\xe2\xf1\x1a\xaf\xa0\x2c\xaa\x1b\xf1\x53\x2e\x5a\x4c\xa4\xac\x57\x49\xd6\x78\x26\xc0\x32\xd0\xb8\xac\x9c\xf6\x39\x03\x7b\x42\x26\x25\x00\x20\x0d\x32\xb0\xf3\xa4\xc0\x58\x30\x1c\xd2\x09\x4f\x94\xb5\x23\x0c\xe3\xb1\x33\x41\x93\xaa\xbb\x24\x7e\x6e\xe0\xf7\x44\x24\xf9\xf9\x25\xa9\x7f\xae\x33\x69\xa4\x92\x5f\xae\xe4\xd3\x96\x2a\xd3\xb6\xe4\x17\x34\xc5\x2f\x4d\xdc\x59\x40\xb0\x34\xc1\xa7\x7c\x79\x80\xa7\xc4\x2c\xc1\xce\x7a\xac\xf3\x3d\x76\xdd\x65\x97\xe8\xb2\x26\x0b\x7e\xb4\xb9\x73\x16\xf2\x4f\x1d\x4d\x6e\xbd\x78\x94\xb9\xe8\x44\xcc\xc6\x9e\x60\xf5\x20\xe2\xe8\x57\x8d\xf2\x02\xdf\x2c\x7a\x23\xee\xf7\x42\x98\x7e\x70\x9e\xeb\xbc\xf3\xb8\x13\xc0\xdd\xea\xee\xae\x66\x76\x6e\x5a\x65\xcd\xe7\x9a\x71\x63\x5a\xc9\xbb\xb9\xbd\x13\x62\x21\x66\x33\x7f\x12\x0e\xf0\x49\x29\x4f\x21\x6c\xe1\x9b\x48\x0a\x07\x4f\x03\x7a\xda\xa0\x94\x7c\x00\x1c\x59\x6f\x7e\x73\xde\xbb\xe9\x33\x76\x23\xed\xe0\x09\x07\x3c\x9a\xce\xb0\xa1\xb0\x85\x0f\xc5\xef\x58\x0e\xe5\xd7\x11\x2f\x96\xe9\x63\xf4\xac\x64\xd5\xb6\xdb\x9a\x1c\x7f\x8d\x5c\x60\x36\x27\xe2\xc7\x0f\xdf\x56\x66\x34\xb3\xd5\xaf\xbf\x6e\xf6\x69\x8b\xe4\xbe\x9d\x7d\x98\x63\xdb\xef\xc4\x8a\xc2\x39\xed\xeb\xe3\xc3\xad\x3f\x4d\x1e\xf5\x9f\x34\xd5\x2f\xdd\xa6\xd2\x3d\x5c\x99\x5f\x39\x46\x2b\x9a\xb2\xcb\x4d\xc0\x33\x6d\x1e\x1f\x12\xfa\x0e\xd8\x1d\x60\x5f\x42\x57\x4a\x15\x78\x7b\xa5\x64\xda\xc4\x4a\xe2\x00\x1f\x33\xe2\xff\xa3\x7a\x61\x7c\x69\x23\x71\x68\xa4\x26\xf9\x75\x73\x1b\xac\x62\x56\xad\x47\x5b\x1e\xe6\x3b\x5d\x56\x30\xaf\xe2\xfa\x6f\x65\x79\x7d\x3d\x4f\x6f\xa8\x9c\x4d\x34\x21\x8c\xf4\xae\xde\xf7\x3c\x7d\x5b\x4a\x11\xf2\x1e\xf2\x4a\xc9\x92\xf0\x6e\x15\x41\x3e\xc0\x9b\x76\xd4\xcc\xcc\xe5\x55\xbc\x8a\xff\x02\x00\x00\xff\xff\x9f\xd7\x66\x7a\xe9\x07\x00\x00" +var _flowtokenCreate_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x4d\x6f\xe3\x36\x10\xbd\xf3\x57\xcc\xa9\xf5\x06\x8e\xdc\xcf\x8b\x91\x16\x70\x37\xc9\x22\x68\x91\x05\x9c\xb4\x3d\x76\xc7\xe4\xc8\x64\x23\x93\x02\x39\xb2\x6a\x04\xf9\xef\x05\x49\x89\x96\x82\xd6\x3e\x59\xe2\x9b\x37\xef\xcd\x3c\x71\x75\x75\x25\xc4\xb3\x36\x01\xd8\xa3\x0d\x28\xd9\x38\x0b\x26\x00\x02\xd3\xa1\x6d\x90\x09\x6a\xe7\xe3\xe3\xe4\x9c\x35\x32\x48\xd7\x35\x0a\x76\x04\x5d\x20\x25\xd8\x41\x20\x86\xae\x05\xb4\x80\x52\xba\xce\x32\xb0\x8b\xc5\x3d\x7a\x05\x8a\x5a\x17\x0c\x93\x02\x76\x2f\x64\x43\x3c\x43\xeb\x58\x93\x07\x4f\x92\xcc\x91\x7c\x25\xc4\x43\x0d\x68\x4f\xce\x12\x04\xb2\x2a\x4c\xc1\xb1\x8f\xff\x3a\xc0\x7d\x66\x24\x0f\xdb\xa1\x6e\x29\x58\x53\x79\x82\xde\x34\x0d\xfc\xdd\x05\x2e\xcd\x59\xbb\x40\x13\xae\x08\xff\x03\xbb\x86\xb3\x13\x8d\x01\x76\x44\x56\x44\x07\x18\xd2\xb1\x27\x69\x5a\x43\x96\x01\xad\x02\x3a\x98\xf8\x07\xe8\x18\xdf\xa4\x22\x63\x95\x91\xc8\x14\x44\xaf\x8d\xd4\x49\xdd\xd8\x30\xba\xd4\x63\xc3\x6a\x18\x70\x8f\xa7\x25\x98\xe8\x0f\x5c\x5d\x5f\x4b\x8d\xc6\x42\x20\x7f\x34\x92\xa0\x47\xcb\x49\xda\xc1\x59\xc3\xce\x43\xaf\x5d\x5c\xc3\x40\x68\xec\x5e\x9c\xe5\x1b\x5e\x82\x61\x90\x68\xa1\x47\x96\x3a\xcb\x4a\x47\x81\x08\x7a\x4d\x9e\x26\x02\x40\xe2\x81\xa0\xf6\xee\x50\x09\xf1\xc4\xd4\x0e\xc8\xbc\xad\xbc\xaa\x00\xbd\x61\x9d\x0b\x8a\x0b\xbf\x16\xe2\xdb\x0a\x9e\x35\xc1\x7d\x67\xf7\x66\xd7\x10\x3c\x27\x84\x74\x96\x3d\xca\x38\x05\x26\x5f\xa3\x24\x08\x3a\xe5\x01\x1b\x4f\xa8\x4e\x31\x17\x8a\xda\xc6\x9d\x48\x41\x70\x07\x4a\xa2\xc4\x77\x99\x0d\xdb\xb6\x31\x12\x23\x1f\xcf\xf9\x06\x96\x49\x75\x25\xbe\xcf\x45\x93\x8d\x0c\xf1\x1a\xc0\x1a\x8f\x04\x38\x2c\x34\x86\x95\x53\x9e\x33\xb1\x27\x64\x52\x02\x00\xd2\x22\x03\x3b\x4f\x0a\x8c\x05\xc3\x21\x3d\xe1\x9e\xb2\x77\x84\xb6\xdb\x35\x26\x68\x52\x25\x4b\xe2\x87\x0a\x6e\x93\x90\x34\xcf\x2f\xc9\xfd\x7d\xd9\x49\x25\x95\xfc\x72\x16\x9f\x52\xaa\x4c\x5d\x93\x9f\xc8\x14\x3f\x56\x31\xb3\x80\x60\xa9\x87\x4d\x7e\xb9\x86\x8f\x49\x59\xa2\x1d\xfd\x58\xe7\x0f\xd8\x34\xa7\x65\x92\xcb\x9a\x2c\xf8\xce\xe6\xce\xd9\xc8\x5f\x65\x35\xb9\xf5\xe4\xa3\xcc\x45\x7b\x62\x36\x76\x0f\xb3\x0f\x22\xae\x7e\xd6\x28\x07\xf8\x5d\xd0\x2b\x71\xb5\x12\xc2\x1c\x5a\xe7\xb9\xec\x3b\xaf\x3b\x11\x7c\xf3\xcf\xfd\xef\x8f\x9f\x1e\x7e\xf9\xed\xee\xf9\xf3\xaf\x77\x8f\x9b\xdb\xdb\xed\xdd\xd3\x53\x29\x68\x5c\x3f\x03\xff\x17\xe8\xdd\xf8\x0a\xef\xe7\xed\x9f\x9b\xed\xed\xc3\xe3\xa7\x11\x2f\x26\xc6\x16\xe3\xf5\xb0\x86\x8d\x52\x9e\x42\xf8\x00\xaf\x22\xb9\x6d\x3d\xb5\xe8\x69\x81\x52\xf2\x1a\x36\x1d\xeb\x61\xbc\x11\x01\xc3\xaf\x21\x9e\x64\xe7\xa7\x38\xa2\x01\x55\x98\x3f\x14\x70\xfc\x55\x7b\xe2\x8f\xd8\xe2\xce\x34\x86\x4f\x37\x5f\xbd\xce\x86\x51\x8d\x63\x7d\xfb\x79\xb1\x4a\x89\x91\xab\x7a\x34\xbf\x2d\x84\xb3\xf6\xc7\x14\xcd\x9b\xeb\xf7\x03\xa8\xf2\x56\x1f\xa9\x2f\x97\xda\xa2\x48\x5d\x9f\x55\x9f\xf5\x45\xa7\x55\xc0\x23\x2d\x6e\xae\x13\xeb\x12\xd8\xad\x61\x35\x24\xf9\xac\xa4\x10\x4e\xa4\xc4\xcb\x27\xd6\xcf\xfc\x5d\x30\x51\x49\x4d\xf2\xe5\xd2\x00\xa6\x73\x2e\xf2\x3a\xdb\x18\xfb\x72\x69\x38\x23\xfc\x6d\xee\x2b\x96\x5d\xea\x36\x6b\xf5\xbf\xf4\xcb\x19\x8c\xd1\xef\x89\x2f\x4e\xa8\xe0\xb3\xb0\x37\xf1\x26\xfe\x0d\x00\x00\xff\xff\xd2\xae\xc8\xb7\x17\x07\x00\x00" func flowtokenCreate_forwarderCdcBytes() ([]byte, error) { return bindataRead( @@ -1819,11 +1780,11 @@ func flowtokenCreate_forwarderCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/create_forwarder.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x52, 0xf4, 0x68, 0x6a, 0x7f, 0xc6, 0x10, 0x5d, 0xeb, 0x73, 0x26, 0xb1, 0xf5, 0xf9, 0xea, 0x93, 0x64, 0xae, 0xa6, 0x4, 0x9d, 0x63, 0xa4, 0xdc, 0xfa, 0x8f, 0xa1, 0x28, 0x46, 0xf4, 0x43, 0x5a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x42, 0xa4, 0x5, 0xa, 0x19, 0x3f, 0x28, 0x81, 0x28, 0x7d, 0x64, 0x95, 0xda, 0x21, 0x88, 0x7f, 0x1d, 0x27, 0x7d, 0xc3, 0x47, 0x64, 0x7a, 0x7c, 0x3e, 0xd2, 0x6a, 0x1e, 0xd6, 0x4a, 0xb6, 0x3f}} return a, nil } -var _flowtokenMint_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x31\x6f\xdb\x30\x10\x85\x77\xfd\x8a\x83\x86\x40\x06\x1a\x69\x29\x3a\x08\x4e\x02\x77\xc8\xd6\x0e\x6d\x92\x9d\xa2\xce\xf2\xa1\x14\x29\x1c\x4f\x71\x0a\x23\xff\xbd\x20\x29\xc9\x56\x5a\x57\x8b\x61\xf2\xdd\x77\xef\xdd\x91\xfa\xc1\xb1\xc0\xe3\x68\x3b\x6a\x0c\x3e\xb9\x5f\x68\x61\xcf\xae\x87\x7c\x75\x96\x67\xb3\xd2\xb8\xe3\x4a\x35\xff\xcf\xb3\xac\xaa\x2a\x78\x3a\x90\x07\x61\x65\xbd\xd2\x42\xce\x42\x4f\x56\x3c\x48\x90\x78\x18\x3d\xd9\x0e\xe4\x80\xa0\xb4\x76\xa3\x15\x90\x83\x12\xf0\xe2\x18\x7d\x3c\x0f\x3c\x48\x0d\x76\x6d\x4f\x16\x18\xbd\x1b\x59\xe3\x99\x4e\x49\xe9\x91\x5f\x49\x2f\xa4\x2c\xbb\xe8\x5a\x30\x6a\x1a\x08\xad\xd4\xb0\x6b\x5b\x46\xef\x3f\x81\xea\x83\xae\x86\xe7\x47\x7a\xfb\xf2\x79\x03\xa7\x2c\x03\x00\x30\x28\xc9\x5e\xec\x57\xc3\xcd\x12\xa9\x8c\x27\xe4\x85\x95\x38\x5e\x8b\x7f\xa0\x46\x7a\x45\xae\xe1\xe6\xb4\x9a\x54\x39\xdf\xbc\x27\xfc\xc0\x38\x28\xc6\xc2\x53\x67\x83\x5c\x8d\x72\x28\xbe\x3a\x66\x77\x7c\x51\x66\xc4\x0d\xdc\xec\x52\x82\xc5\x51\xf8\x3c\x9a\x7d\x79\xb6\x05\x77\x90\x00\x65\x98\x95\xea\x70\x11\x86\xaf\x6c\x22\x6f\x7b\xcd\xfa\x7d\x11\x96\x55\x43\x35\x15\x57\xfb\x59\x17\x65\x9b\x15\xec\xe1\x01\x06\x65\x49\x17\xf9\xcf\xd8\x31\xcc\xdb\x3a\x89\x33\x8f\x86\x40\x85\xa2\x7c\xf3\x2f\xb3\x73\x78\xb8\x83\x0e\x65\x0a\x76\xde\xc6\xba\x53\xa9\xd5\xa0\x1a\x32\x24\x84\x7e\xc9\x70\x6d\x9c\xf7\x45\x35\x8c\x8d\x21\x7d\x76\x3f\xdf\x5d\x0b\xf0\x6c\x55\x63\x82\x6b\x48\x70\xe0\xd9\x1e\xe3\x1e\x19\xad\xc6\x3c\xd5\x4e\xcb\xc2\x37\xd4\xa3\x20\x9c\x16\x60\x58\x78\x78\xc2\xc8\xb0\xbd\xfd\xb8\x95\x52\x33\x2a\xc1\xef\x78\xfc\x16\x25\x85\x32\xc6\x1d\xb1\xdd\x4d\x2f\x2d\xbd\xb8\xcd\xdf\xb0\xf6\x45\x8d\x46\x02\x31\xb1\xcb\xf0\x13\x23\xf9\x42\x7d\x28\xfe\xcf\x94\xcb\x16\x07\xe7\x49\xa6\xf5\x6e\x6f\x2f\xe0\x17\x85\x2d\x7a\x61\xf7\x7b\xea\x35\xe5\x7d\xff\x13\x00\x00\xff\xff\x4d\x4d\x2d\xec\xfb\x03\x00\x00" +var _flowtokenMint_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\xcd\x6e\xda\x40\x10\xbe\xfb\x29\x46\x1c\x22\x23\x35\x76\x0f\x55\x0f\x88\x24\x72\x1b\xa8\xaa\xa6\x44\x0a\xd0\x9e\x97\xf5\x60\x46\x35\xbb\xd6\xec\x38\x10\xa1\xbc\x7b\xb5\x5e\x1b\x70\x1a\xba\x17\x4b\xeb\x6f\xbe\xbf\x59\xda\x56\x96\x05\xa6\xb5\x29\x68\x55\xe2\xc2\xfe\x41\x03\x6b\xb6\x5b\xf8\xb8\x9f\x2e\x67\xdf\xbe\x7f\x79\x98\x2c\x1e\x7f\x4c\x66\xd9\xfd\xfd\xd3\x64\x3e\x8f\xba\x81\xd2\xee\xfa\xe0\x87\xc7\xdf\x3d\x60\x94\xa6\x29\x2c\x36\xe4\x40\x58\x19\xa7\xb4\x90\x35\xb0\x25\x23\x0e\xc4\x4f\x3a\xa8\x1d\x99\x02\x64\x83\xa0\xb4\xb6\xb5\x11\x90\x8d\x12\x70\x62\x19\x5d\x73\xef\x65\x20\xe8\x64\xf9\x96\x0c\x30\x3a\x5b\xb3\xc6\x13\x3b\x05\xa4\x43\x7e\x26\x7d\x64\x8a\xa2\x33\xd5\x98\x51\x53\x45\x68\x64\x04\x59\x9e\x33\x3a\xf7\x01\xd4\xd6\xe3\x46\xb0\x9c\xd2\xfe\xf3\xa7\x21\x1c\xa2\x08\x00\xa0\x44\x09\xf6\x1a\xbd\x11\x5c\x1d\x93\x26\xcd\x0d\x39\x61\x25\x96\xfb\xe0\x27\xd4\x48\xcf\xc8\x23\xb8\x3a\xf4\xba\x4c\xba\x3f\xaf\x81\xbe\x62\xac\x14\x63\xec\xa8\x30\x1e\x9e\xd5\xb2\xc9\x82\xe5\xa3\x05\x7f\x1c\x96\xeb\xe4\xe4\x03\x6e\x20\x4c\x1c\x01\xfe\x24\x2b\xcb\x6c\x77\xe3\x4b\x1e\x6f\x63\xbf\x9c\x11\xa4\xbe\x51\x55\x60\xba\xee\x70\x0d\x6c\xd8\x23\xbb\xbb\x83\x4a\x19\xd2\xf1\x60\xde\x28\xf9\x62\x8d\x95\xa6\xdc\xc6\x08\x28\x3f\x34\x18\xbe\x67\xb2\x4b\x09\x37\x50\xa0\xb4\x81\x4e\xb5\xf7\x95\x92\x02\xe5\xab\xaa\xd4\x8a\x4a\x92\x97\x38\xad\xea\x55\x49\xfa\x64\xae\x23\x1b\xbe\x1f\xf6\x52\xc1\xb7\xf1\xa5\x40\x4b\xa3\x56\xa5\x4f\x01\x81\x03\xb8\xb3\xcb\xb8\x46\x46\xa3\x71\x10\x66\xdb\x2d\xe1\x1e\x75\x2d\x08\x87\x23\xa1\xdf\xb4\x7f\xbb\xc8\x30\xbe\x7e\xbb\x9d\x44\x33\x2a\xc1\x19\xee\x7e\x36\x90\x58\x95\xa5\xdd\x61\x9e\xb5\x4f\x2c\x3c\xb5\xe1\xbf\x64\xf9\x2f\x55\x97\xe2\x19\x03\x77\xe2\x3f\x4d\x2c\x17\xab\x37\xc3\xff\x69\x3d\xc9\xb1\xb2\x8e\xa4\x5d\xf7\xf8\xfa\x8c\xfc\x6c\x30\x47\x27\x6c\x5f\x5a\xad\x36\xef\xeb\xdf\x00\x00\x00\xff\xff\xac\x61\xd6\x4a\x02\x04\x00\x00" func flowtokenMint_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1839,11 +1800,11 @@ func flowtokenMint_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/mint_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x85, 0x9a, 0xca, 0x71, 0x4a, 0xfb, 0x5f, 0xd5, 0x56, 0xf3, 0x5f, 0xb8, 0xc1, 0xd8, 0xfe, 0x87, 0xff, 0x71, 0x1d, 0x2f, 0x26, 0x65, 0x2, 0x7, 0xfd, 0x3e, 0xa1, 0xab, 0x25, 0xc9, 0x2d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xff, 0xc6, 0x66, 0x5d, 0xee, 0x48, 0xe, 0xb9, 0xea, 0x2f, 0xd, 0xc1, 0xe8, 0xcf, 0x70, 0x67, 0x81, 0x67, 0x29, 0x35, 0x1, 0x39, 0x44, 0x65, 0x4b, 0xc, 0x19, 0x1e, 0xcd, 0x6a, 0x57, 0x65}} return a, nil } -var _flowtokenScriptsGet_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\xcb\x4e\xf3\x30\x10\x85\xf7\x7e\x8a\xa3\x2c\xfe\x3f\xd9\x24\x1b\xc4\xa2\x02\xaa\x82\xd4\x07\x40\x85\xfd\xc4\x19\xb7\x23\x1c\x3b\xf2\x85\x22\x55\x7d\x77\x94\xe6\x82\xea\x95\xed\x39\x73\xfc\xf9\x4c\xd3\xe0\x70\x92\x88\xa8\x83\x0c\x09\x81\xa9\x8b\x48\x27\x46\x4b\x96\x9c\x66\x18\x61\xdb\xc1\x1b\x90\x03\x69\xed\xb3\x4b\xff\x23\xf6\xd6\x9f\x0f\xfe\x8b\x1d\x5e\x27\x9d\x52\xd2\x0f\x3e\x24\xec\xb3\x3b\x4a\x6b\x79\xaa\x9a\xe0\x7b\x14\x77\x77\xc5\xaa\x5c\x3d\x66\xd5\x72\x2e\x94\x22\xad\x39\xc6\x92\xac\xad\x60\xb2\x43\x4f\xe2\xca\xf9\xf9\x0d\x76\x5d\x17\x38\xc6\x6a\x83\x8f\xbd\xfc\x3c\x3e\xe0\xa2\x14\x00\x58\x4e\xf8\xa6\x6c\xd3\x3b\x1b\x3c\xe3\xc8\x69\x37\xb5\x2c\xad\xd5\x4d\x36\xae\x5a\xd3\x40\xad\x58\x49\xc2\xb1\x6e\x7d\x08\xfe\xfc\xf4\xef\x72\x47\x5a\xcf\x7f\xbb\xbe\x94\xcd\x90\x5b\x2b\xba\x31\x0b\xe3\x5c\xfa\x33\xdc\x6e\x31\x90\x13\x5d\x16\x6f\x3e\xdb\x0e\xce\x27\x4c\xb6\x4b\x44\x08\x6c\x38\xf0\xb8\x4b\xfe\x96\xf1\xe7\xc8\x5a\x54\x13\x7c\xe0\x94\x83\x5b\xf9\xeb\x79\x00\xea\xaa\x7e\x03\x00\x00\xff\xff\x0c\xc2\x32\xf4\xa4\x01\x00\x00" +var _flowtokenScriptsGet_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\xcb\x6e\xf2\x30\x14\x84\xf7\x7e\x8a\x11\x8b\xff\x0f\x9b\xa4\x8b\xaa\x0b\xd4\x16\x71\x4b\x55\x15\x81\xc4\xa5\x5d\x3b\xc9\x31\x58\x35\x76\xe4\x4b\xa1\x42\xbc\x7b\x45\x6e\x2d\x5e\x59\xf2\x7c\xe3\x99\x73\x92\x04\x9b\xbd\x74\x70\xb9\x95\xa5\x87\x25\x5e\x38\xf8\x3d\x21\xe3\x8a\xeb\x9c\x20\x24\xa9\x02\x46\x80\x6b\xf0\x3c\x37\x41\xfb\xff\x0e\xa9\x32\xc7\x8d\xf9\x24\x8d\x71\xad\x63\x4c\x1e\x4a\x63\x3d\xd2\xa0\x77\x32\x53\x54\xbf\x0a\x6b\x0e\xb8\x3b\xa5\xdb\xc5\xcb\xeb\x78\x3e\xdb\x2c\xdf\x66\x8b\xd1\x74\xba\x9a\xad\xd7\x1d\xd0\x59\xb5\xe2\xf9\xf2\xe3\x46\xc8\xca\x90\x41\x04\x8d\x03\x97\x3a\x6a\x42\x0c\x30\x2a\x0a\x4b\xce\xf5\x07\xd8\xa6\xf2\xf4\x70\x8f\x33\x63\x00\xa0\xc8\xe3\x8b\x07\xe5\x57\x24\xf0\x84\x1d\xf9\x51\x8d\xb4\x68\xbf\x92\x5d\x4f\xbc\x23\x3f\xe1\x25\xcf\xa4\x92\xfe\x3b\x4a\xca\x90\x29\x99\x27\xa2\x8d\xd4\x94\xfb\x03\x64\xc6\x5a\x73\x7c\xfc\xd7\xa5\x8e\xdf\xaf\x5f\x9d\x6f\x6a\xc7\x0d\x77\x79\x8e\x7e\xd1\xe1\x10\x25\xd7\x32\x8f\x7a\x13\x13\x54\x01\x6d\x3c\x6a\xb7\x76\x86\xb0\x24\xc8\xd2\xf5\xe6\x4d\xb5\x84\xca\xbb\xd7\xaf\x7b\x59\xf2\xc1\xea\xae\x5a\xdc\x6c\x88\x5d\xd8\x4f\x00\x00\x00\xff\xff\x38\x9b\x14\x49\xc5\x01\x00\x00" func flowtokenScriptsGet_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -1859,11 +1820,11 @@ func flowtokenScriptsGet_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/scripts/get_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9f, 0x43, 0x79, 0xfd, 0x4, 0xd6, 0xad, 0x3a, 0xc5, 0x7, 0x57, 0x5, 0x10, 0xbc, 0x51, 0x96, 0xe8, 0x27, 0x94, 0x74, 0x77, 0x6d, 0x23, 0xa3, 0x76, 0x56, 0xd2, 0xcf, 0x8f, 0x3b, 0xac, 0x5b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xeb, 0x3, 0xd9, 0xd3, 0xc5, 0xf4, 0x33, 0xcb, 0xf, 0x2c, 0xdd, 0x7f, 0x8f, 0xa6, 0x25, 0xa7, 0x5e, 0xce, 0x4c, 0x9f, 0xad, 0x8c, 0x3b, 0xa5, 0x1f, 0xbf, 0x1a, 0x3c, 0xe2, 0xdb, 0xa8, 0xda}} return a, nil } -var _flowtokenScriptsGet_supplyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8e\x3d\x8a\xc3\x30\x14\x84\xfb\x77\x8a\xc1\x95\xdd\xac\x9a\x65\x8b\x85\xb4\xbe\x40\x9c\x03\x08\x59\xc2\x22\xfa\xe3\xbd\x67\x92\x10\x72\xf7\x80\xf3\x5b\xce\xcc\xc7\xcc\x18\x83\x69\x89\x02\x71\x1c\x9b\x82\xbd\x9d\x05\xba\x78\x68\x55\x9b\x20\x6b\x6b\xe9\x82\x10\x7d\x9a\xc9\x18\xd4\xb0\x85\x63\xaa\xa7\xa9\x1e\x7d\x81\x64\xcb\x0a\x57\x8b\xb2\x75\x4a\x14\x73\xab\xac\x5f\x40\xe0\x9a\xd1\xbd\x75\x47\x64\x9d\xf3\x22\xbd\x4d\x69\x40\x58\x0b\xb2\x8d\xa5\x1f\xfe\x71\x18\xe3\xf9\xef\x17\x57\x22\x00\x48\x5e\x5f\xeb\xbb\x4f\xdd\xcf\x76\x6b\xbf\xf9\x0f\x8e\xbd\xae\x5c\x9e\x28\xdd\xee\x01\x00\x00\xff\xff\x93\xe0\xcd\xc5\xd0\x00\x00\x00" +var _flowtokenScriptsGet_supplyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xce\x3f\x4b\xc4\x40\x10\x05\xf0\x7e\x3e\xc5\x2b\xb5\x71\x2d\xc4\x42\xb0\x10\x92\x34\x8a\x01\x13\xb1\x5e\x93\x5d\xb2\xb8\xff\x98\x9d\xc5\x1c\xc7\x7d\xf7\x83\xdc\x1d\x77\xed\xcc\x8f\xf7\x9e\x52\x18\x17\x57\x50\x26\x76\x59\xc0\x46\xcf\x05\xb2\x18\x48\x12\xed\x51\x6a\xce\x7e\x07\xeb\x8c\x9f\x49\x29\x24\xbb\x3d\x3b\x9f\xfe\xc7\xf4\x67\x22\x4a\xd0\x2c\x98\x52\x14\xd6\x93\x10\xb9\x90\x13\xcb\x0d\xb0\x9c\x02\x1e\xd7\xee\xa3\xff\x19\xfb\xf7\xf6\xf3\xad\x69\xbe\xda\x61\x20\xca\xf5\x17\xb6\x46\x04\xed\xe2\xdd\xfd\x0b\xbe\x3b\xb7\x3e\x3f\x61\x4f\x04\x00\xde\xc8\xa5\xfc\xf5\x9a\xf6\xb0\xad\x1a\xb6\xfb\xc9\xb1\x91\xca\xf1\x4c\xe9\x70\x0c\x00\x00\xff\xff\x89\xd7\x2e\x22\xcf\x00\x00\x00" func flowtokenScriptsGet_supplyCdcBytes() ([]byte, error) { return bindataRead( @@ -1879,11 +1840,11 @@ func flowtokenScriptsGet_supplyCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/scripts/get_supply.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4f, 0x7c, 0x11, 0x45, 0x40, 0xad, 0x8d, 0x3d, 0x20, 0x6, 0x5b, 0x4d, 0x33, 0xbd, 0x92, 0x38, 0xcd, 0x91, 0x1f, 0x33, 0x5d, 0xa2, 0x8c, 0xf9, 0x8e, 0xd7, 0xdf, 0x52, 0x6d, 0xc0, 0x4e, 0x90}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x14, 0x97, 0xdd, 0xc6, 0x1f, 0xdd, 0xa3, 0xc6, 0x4b, 0xf9, 0xd5, 0xe8, 0x4b, 0x50, 0xb5, 0x98, 0x62, 0xbb, 0xdf, 0x23, 0xd, 0x65, 0x66, 0x9e, 0xf3, 0x3, 0x62, 0x4b, 0xee, 0xcb, 0x8f, 0x71}} return a, nil } -var _flowtokenSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x51\xcd\x8e\x1a\x3d\x10\xbc\xfb\x29\x4a\x1c\x56\x20\xed\xc7\xdc\xd1\xf2\x49\xc9\x2a\x79\x80\x64\x95\x7b\x63\x7a\x18\x2b\xc6\xb6\xec\x36\x04\xad\xf6\xdd\x23\xcf\x6f\x86\x85\x28\x87\x5c\xe2\xc3\x68\xdc\x5d\xae\xae\xae\x52\x55\x85\x97\xc6\x24\x48\x24\x97\x48\x8b\xf1\x0e\x26\x81\x20\x7c\x0c\x96\x84\x51\xfb\x58\xae\x53\xbf\xbc\x11\x0f\xda\xef\x41\xf8\x46\xd9\x0a\x22\x27\x9f\xa3\xe6\x52\x97\x86\x4d\x04\x69\xed\xb3\x93\x82\x4d\xa5\x46\x52\x1a\x17\x68\x72\xc8\x89\xcb\x05\xb5\xf5\xe7\x17\xff\x9d\x9d\x52\xe6\x18\x7c\x14\x7c\xce\xee\x60\x76\x96\xdb\x2a\xea\xe8\x8f\x58\xcc\x6a\x8b\x11\x39\xbc\x1d\x50\xc3\x7d\xa1\xd4\xaf\xbb\xbc\x2a\x05\x00\x21\x72\xa0\xc8\xcb\x64\x0e\x8e\xe3\x06\x94\xa5\x59\x7e\x15\x1f\xe9\xc0\x2b\x3c\x7c\xe8\xd4\xae\x06\x78\x39\xa6\x46\x87\x5e\xa7\x0e\xb7\xde\xf9\x18\xfd\xf9\xe9\x61\x9c\xb5\x6e\xb7\xff\x7f\x59\x24\x6c\x50\xf5\xb8\x6a\xdc\xab\x6d\xaf\xb0\xdd\xc2\x19\x8b\xd7\x91\xba\x9c\xaa\xc2\x73\xe4\x62\x30\xc1\xf1\x79\x32\xa3\xb7\x94\xdc\x1e\x21\x0b\x8c\xc0\x38\xf4\xd4\x33\x86\x2b\x75\x89\x4e\xbc\x7c\xfa\x6f\x12\xa7\x5b\xfa\x4f\xc7\x20\x97\x96\x72\xb9\x7a\x84\xf8\xfb\x3a\xd5\x5d\x7d\x21\xef\xac\xd1\xd0\x14\x68\x67\xac\x91\x4b\x9f\x73\x2f\xb5\x4d\xd7\x3b\x7b\x01\xff\x08\x3e\x71\xba\x26\x2a\xd0\x3d\x07\x9f\x8c\xa0\xce\xae\x4b\x46\x9a\xe8\xf3\xa1\x69\x9b\x5f\x58\xb3\x39\x71\x84\x71\xc2\xb1\x26\x3d\xdf\xd4\xb2\xe0\x54\x46\x3d\x53\xc0\x76\x58\x7c\x94\x63\x38\x8d\x2e\x98\x94\x32\xdf\x88\x68\xc6\xd7\xca\xba\xed\xc2\x0c\x77\x65\xc9\xad\xb9\xad\x35\xa9\x79\xcf\x3f\xe8\x7d\x7c\xd7\x21\xd9\xa0\xea\x2c\x9d\x86\x0f\x0e\xfc\x6e\xfe\xdf\x8e\x64\x47\x96\x9c\x66\xd4\x86\xed\x7e\x96\xc7\xc7\xbe\x73\x3f\x8e\xfe\xed\x3f\x14\xc8\xa4\xf8\x0f\x23\xe9\x4d\xb8\x12\x30\xfc\xbd\xa9\xee\xfb\xa6\xf0\x33\x00\x00\xff\xff\x74\xcd\x81\x62\x45\x05\x00\x00" +var _flowtokenSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xdf\x6a\x1b\x3d\x10\xc5\xef\xf7\x29\xce\xd5\x87\x0d\xf9\xbc\xbd\x0e\x49\xc0\x69\x9c\x52\x5a\x52\x48\xdc\xde\x8f\xe5\xd9\x5d\x11\x59\x12\xd2\x28\x8e\x31\x7e\xf7\xa2\xfd\x63\x77\x9b\x1a\x0a\xa1\xba\x30\xd6\xcc\xd1\xd1\x99\x9f\xb6\x28\x4b\x2c\x1b\x1d\x21\x81\x6c\x24\x25\xda\x59\xe8\x08\x82\xf0\xc6\x1b\x12\x46\xe5\x42\xde\x9e\xfa\xf9\x8c\x38\xd0\x7a\x0d\xc2\x0f\x4a\x46\x10\x38\xba\x14\x14\xe7\xba\x34\xac\x03\x48\x29\x97\xac\x64\x6d\xcc\x35\x92\xdc\xd8\x41\x91\x45\x8a\x9c\x37\xa8\x8c\xdb\x2e\xdd\x33\xdb\xa2\xd0\x1b\xef\x82\xe0\x3e\xd9\x5a\xaf\x0c\xb7\x55\x54\xc1\x6d\xf0\xe1\xf5\xfe\xfb\xc3\xa7\xcf\xb7\x5f\x17\xcb\x6f\x5f\x16\x0f\xf3\xbb\xbb\xc7\xc5\xd3\xd3\xf1\xc0\x60\x31\x88\x47\xa2\xe2\xd7\xa9\xf6\x45\x01\x00\x3e\xb0\xa7\xc0\x93\xa8\x6b\xcb\xe1\x12\xf3\x24\xcd\xbc\x0b\x3b\x1d\x34\x79\xe9\x0a\x9d\x64\xb6\x72\x21\xb8\xed\xd5\x7f\xc7\xbb\x66\xed\xd0\x37\x93\x7c\xe5\x25\xca\x28\x2e\x50\xcd\xe5\x71\x9c\xb6\x3d\xc5\xf5\x35\xac\x36\xd8\x1f\x2d\xf3\x2a\x4b\x7c\x0c\x9c\xb9\x12\x2c\x6f\x4f\x0c\x7a\x92\x64\xd7\xf0\x49\xa0\x05\xda\xa2\xb7\x1e\x39\xf4\xa9\x22\xbd\xf0\xe4\xea\xff\x53\x28\xd5\xda\x2e\x36\x5e\x76\xad\xd5\x64\x7a\x01\x71\xe7\xf3\x15\x67\x73\xf9\xb4\x32\x5a\x41\x91\xa7\x95\x36\x5a\x76\xfd\xb3\xf6\x11\xdb\xc7\x74\xd6\xec\xc0\xaf\xde\x45\x8e\xbf\x1b\x65\xe9\x9a\xbd\x8b\x5a\x50\x25\xdb\xe1\x97\x26\xb8\x54\x37\x6d\xf3\x91\x15\xeb\x17\x0e\xd0\x56\x38\x54\xa4\xfe\x38\xa1\xd1\xf6\xf9\x0d\xf5\xfd\xe8\x13\x99\x0d\x4e\x87\x9b\xc9\xc8\xa2\x4d\xd2\xcd\x71\x9a\x7b\x10\x5f\xbc\x91\x0a\x85\x9a\xe5\x2c\xab\x91\xfe\x1f\x83\x5b\x91\x21\xab\x18\x95\x66\xb3\x1e\x51\xbb\xed\x3b\xef\x86\xd6\x1b\xfd\x15\xb3\x5e\xfb\x5e\x64\xc3\xbf\x43\xd1\xfd\x1e\x0a\xfc\x0c\x00\x00\xff\xff\xf5\xa4\x7a\x20\x7b\x04\x00\x00" func flowtokenSetup_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -1899,11 +1860,11 @@ func flowtokenSetup_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/setup_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x26, 0x3b, 0x9, 0x19, 0x12, 0xf7, 0x3d, 0x9c, 0x52, 0x2d, 0x2c, 0x62, 0x9c, 0x34, 0xbd, 0x30, 0x11, 0xa0, 0xaa, 0xb7, 0x70, 0xa, 0xf6, 0xc6, 0xed, 0xe4, 0x7d, 0x3f, 0xe5, 0xca, 0x4a, 0xf0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd, 0x7f, 0xe2, 0x5c, 0x57, 0xa8, 0xac, 0xa8, 0xe3, 0xb8, 0xd6, 0x96, 0x91, 0x2e, 0x58, 0x58, 0x1, 0xf3, 0x34, 0xd2, 0x9e, 0xcf, 0x4a, 0xfd, 0xec, 0xea, 0x87, 0xa2, 0x4d, 0xa5, 0xfb, 0xc9}} return a, nil } -var _flowtokenTransfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x41\x4f\xdc\x3c\x10\x3d\x93\x5f\xf1\xbe\x3d\x40\x22\x7d\x24\x97\x4f\xdf\x61\x45\xa1\xb4\x15\xbd\x23\x4a\xcf\x4e\x32\xd9\x58\xcd\xda\xd1\x78\xc2\x82\x10\xff\xbd\xb2\x1d\x87\x0d\x48\xa5\x7b\x59\x65\x3c\xf3\xde\x9b\xf7\xec\xaa\xc2\x5d\xaf\x1d\x84\x95\x71\xaa\x11\x6d\x0d\xb4\x83\x82\xd0\x7e\x1c\x94\x10\x3a\xcb\xfe\xf3\xe8\x5c\x7a\x25\x59\x55\xa1\xb1\xd3\xd0\xa2\x26\x4c\x8e\x5a\xd4\x4f\x50\xe6\xc9\x1a\x82\x58\x38\x32\x2d\xc4\xfe\x22\xe3\xfc\xa7\x32\x56\x7a\x62\xa8\xa6\xb1\x93\x09\xc3\x1e\x04\xbd\x72\xa8\x89\x0c\x1c\x09\xa6\xd1\xb7\x32\x35\xa4\x1f\x68\x1e\x2e\xb3\xaa\xca\x82\x46\xc2\x41\x4b\xdf\xb2\x3a\x40\xed\x3d\x08\x94\xa7\xe8\x29\x81\xa2\x63\xbb\xc7\x8e\xe4\xfa\x95\xe4\x90\x14\xfa\xbe\x51\xb1\xda\x93\x10\x07\x49\xbe\x72\xb4\x54\x96\xe9\xfd\x68\x59\x70\x33\x99\x9d\xae\x07\xba\xf3\xfc\x11\x73\xb3\xaa\x6d\x96\xce\xc1\x1e\x56\x5d\xe9\x7b\x93\x65\x47\xc8\x79\x94\xbb\xc5\x8f\x1b\xfd\xf8\xff\x7f\xff\x42\xec\x16\xd7\x6d\xcb\xe4\x5c\x81\xe7\x2c\x03\x80\x79\xc5\x7b\x35\x0d\x02\x26\x67\x27\x6e\x68\xf6\xc8\x0e\xad\x8b\x72\x67\x3f\x7d\x55\x31\xa1\x26\x6d\x76\x71\x89\x8e\x98\xa9\x0d\x50\x03\x89\xb7\x5f\x02\xd6\x16\x9f\x57\xe2\xcb\x50\x8d\x9c\x23\xd3\xa8\x98\x72\xa7\x77\x86\x78\x0b\x35\x49\x9f\x7f\xb1\xcc\xf6\x70\xaf\x86\x89\x0a\x9c\xce\x56\x2e\x32\x67\xa9\xdf\x49\xa0\xc0\xd4\x11\x93\x69\x28\xd9\x19\x81\xce\x1c\x9c\x58\xa6\x16\x0f\x81\x2b\xcd\x79\x5d\xa1\x72\x4b\x1d\x3e\xcd\xcd\xa5\x6f\x55\x3b\x2a\xeb\xc0\x7b\x11\x34\xac\x15\xff\x9c\x63\x2f\x70\xba\x38\x1c\xd7\xb8\xcc\xbd\xf1\x5b\x54\x33\x48\xd5\xa5\xf3\x70\x5c\x64\x27\x27\x27\x57\x57\x18\x95\xd1\x4d\xbe\xf9\x1a\xee\x82\xb1\x82\xc8\xf5\x5e\xbf\x3d\x44\xf9\x61\xfa\x9f\x4d\xb1\xda\x39\xc9\x48\x29\x84\xcc\x3f\xde\xda\xd1\xd0\x95\x4b\x1c\xb8\x38\x5f\x3c\x28\xd3\x7d\x5e\x2e\x48\xfc\x2f\xc2\xec\x4b\x24\xa7\x47\x6a\x26\xa1\xbf\xf3\x9f\xa9\xd1\xa3\x26\x23\x67\x0e\xb7\xf1\x19\xf1\xca\xfe\xf9\x6d\x71\x4c\xe0\xe8\xad\xe4\x62\x8b\xa5\xd3\xff\xca\x46\x8d\xaa\xd6\x83\x16\x4d\x2e\x85\x73\xfa\xbc\x4e\x26\x71\xbc\x5c\xe6\xd5\x38\xd5\x83\x6e\x5e\x13\x48\x67\x1f\x87\x10\xfb\xfe\xbc\x4d\x30\xef\x4d\x20\xdf\x68\xb4\x4e\x4b\xe8\x4d\x56\x9a\x94\x8e\x36\xef\x30\xf8\xad\x23\x47\x6e\x94\x6d\x04\x9b\x2f\xd4\xc5\xf9\x3a\xb6\x14\xc9\x4b\xf6\x3b\x00\x00\xff\xff\xf7\x2a\x53\x84\x2f\x05\x00\x00" +var _flowtokenTransfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xc1\x6e\xdb\x3a\x10\x3c\x47\x5f\xb1\x2f\x87\x17\x19\x68\xa4\x1e\x8a\x1e\x8c\x34\xa9\x9b\xc4\x41\xd1\x22\x05\x1c\xa7\x3d\x53\xd2\x4a\x22\x2a\x93\xc2\x72\x15\xd9\x08\xfc\xef\x05\x49\x51\xb1\x1c\xa0\xa9\x2f\x86\xc8\xd9\xd9\xd9\x99\x65\x9a\xc2\xba\x96\x06\x98\x84\x32\x22\x67\xa9\x15\x48\x03\x02\x18\x37\x6d\x23\x18\xa1\xd4\x64\x3f\x0f\xee\xb9\x16\x1c\xa5\x29\xe4\xba\x6b\x0a\xc8\x10\x3a\x83\x05\x64\x3b\x10\x6a\xa7\x15\x02\x6b\x30\xa8\x0a\x60\xfd\x1b\x95\xb1\x9f\x42\x69\xae\x91\x40\xe4\xb9\xee\x94\x2b\xb6\x24\x50\x0b\x03\x19\xa2\x02\x83\x0c\x5d\x6b\xa1\x84\x39\xca\x27\x1c\x8a\x93\x28\x4d\x23\xa7\x11\xa1\x97\x5c\x17\x24\x7a\x10\x1b\x4b\x02\xc2\xb6\xa8\x31\x90\x42\x49\x7a\x03\x15\xf2\xe2\xa5\x49\x1f\x14\x5a\x5c\x2b\x48\x6c\x90\x91\x9c\x24\x7b\x72\x30\x54\x14\xc9\x4d\xab\x89\x61\xd9\xa9\x4a\x66\x0d\xae\x6d\x7f\xcf\xf9\x7e\xbb\x7c\xbc\xbf\xfb\xfa\xe5\xfb\xed\xfa\xc7\xb7\xdb\xfb\xc5\xcd\xcd\xea\xf6\xe1\x61\x2c\x68\x74\x3f\x01\x4f\x40\xd1\x41\x8f\xd8\x0b\x9f\xc3\xe3\x52\x6e\x3f\x7e\x78\x07\xac\xe7\xb0\x28\x0a\x42\x63\x66\xf0\x1c\x45\x00\x00\xc3\xb0\x3f\x45\xd7\x30\x10\x1a\xdd\x51\x8e\x83\x5b\xba\x29\x8c\x17\x3e\x38\x6b\x4f\x05\x21\x64\x28\x55\xe5\xc7\x29\x91\x08\x0b\x47\xd5\x20\xdb\x20\xd8\x71\xcd\xe1\xf3\x64\xb4\xc4\x9d\xfa\x9e\x2d\x61\x2b\x08\x63\x23\x2b\x85\x34\x87\x45\xc7\xf5\xe0\xe2\xa8\x6b\xd0\x76\x87\x0c\x02\x08\x4b\x24\x54\x39\x06\x27\x7d\xe5\x99\x01\xc3\x9a\xb0\x80\x27\x47\x1e\xea\xac\x10\x77\xb2\xc2\x12\x3e\x0d\xe0\x24\xd3\x44\xba\xbf\xf8\x7f\x34\xd0\x4b\xba\x8c\xad\x8f\x73\x48\x2d\x95\xa8\x30\x2d\xc3\xbd\xbb\x9e\x45\x27\x27\x27\x57\x57\xd0\x0a\x25\xf3\xf8\xf4\xda\x25\xac\x34\x83\xa7\x7b\x2d\x4d\xf7\x5e\x99\xab\xfe\xef\x74\x36\x19\xe7\x57\xd8\xa9\xc1\x51\x17\xe1\xdb\x03\x19\x6c\xca\x64\xb4\x16\x2e\xce\xc7\xf1\x92\xb0\xa5\x63\xd8\xfe\x7f\xe6\x6a\xf7\xbe\x39\x6e\x31\xef\x18\xff\xcd\x5a\xc2\x5c\xb6\x12\x15\x9f\x19\x58\xf9\xc7\x41\x13\x67\x87\x17\x43\xde\xdc\x83\x17\x10\xb3\x9e\x8d\x48\xfb\x4b\x2a\xe4\x6b\xd1\x8a\x4c\x36\x92\x77\x71\xda\x76\x59\x23\xf3\x17\x83\x03\xfd\x51\x55\x08\xea\x79\xba\x40\x01\xbd\xbf\x8c\xdf\x0e\xc5\x43\xff\x3e\x9d\x33\xf3\x28\xa0\x1b\x6c\xb5\x91\xec\xb0\xc1\x5a\x15\xd2\x92\xea\x15\x07\x1d\x3b\x74\xe0\x4e\x52\x78\xb2\x61\xc1\x2e\xce\xa7\x31\x86\x88\xf6\xd1\x9f\x00\x00\x00\xff\xff\xab\x4d\x31\xba\x15\x05\x00\x00" func flowtokenTransfer_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1919,11 +1880,11 @@ func flowtokenTransfer_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/transfer_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0x6a, 0x53, 0x3a, 0xa2, 0xb8, 0xe7, 0x84, 0x84, 0xde, 0x4c, 0x92, 0xe8, 0xa8, 0x54, 0x49, 0xdf, 0xa7, 0x97, 0xe, 0x83, 0x7a, 0x21, 0xad, 0xba, 0x30, 0x65, 0xe5, 0x5b, 0xf4, 0x7d, 0x8b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x85, 0xa4, 0x80, 0x7b, 0x7, 0xe0, 0x6e, 0xa7, 0xff, 0xc4, 0x37, 0xf4, 0x66, 0x87, 0x8a, 0x20, 0x73, 0x73, 0xdb, 0x44, 0x60, 0xdd, 0xfe, 0x20, 0x1c, 0x22, 0x9c, 0x38, 0x17, 0x58, 0x62, 0xa3}} return a, nil } -var _idtablestakingAdminAdd_approved_and_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x4d\x6f\xe3\x36\x10\x3d\x4b\xbf\x62\xd6\x87\xad\x8c\x16\x32\xf6\x6a\xd4\x5d\xa4\x35\x0a\x08\x08\x16\xc5\x7a\xd1\x4b\x90\x03\x4d\x8e\x2c\xb6\x34\x47\x20\x47\x51\x82\xc0\xff\xbd\x18\x4a\xf2\x47\xa2\xa0\xbc\x18\x30\xdf\xbc\x79\x7c\xf3\x46\xf6\xd8\x52\x60\xf8\xd3\x51\x5f\x6d\x7f\xa8\xbd\xc3\x1d\xab\x7f\xad\x3f\x40\x1d\xe8\x08\x8b\xf7\x17\x8b\x3c\x5f\xad\x56\xf0\xa3\xb1\x11\x38\x28\x1f\x95\x66\x4b\x1e\x94\x31\x11\x3c\x19\x84\x6a\x1b\x81\x09\xb8\x41\x70\x36\x32\x50\x0d\xaa\x6d\x03\x3d\xa1\x49\x80\x08\xd6\x27\x0e\x41\x54\x5b\x60\x61\x2f\x21\xfd\x55\x31\x28\x17\x09\xac\xd7\x01\x55\xc4\x08\xd1\x11\x83\xb3\x47\xcb\x31\x21\xf6\x2f\xa9\xce\x77\xc7\x3d\x06\xe1\x1e\x28\xfb\x86\x40\x05\x14\x19\x68\x04\x38\xd0\xd5\xa0\xfc\x8b\xa0\xa4\x46\x34\x58\x73\x56\xa1\x5c\x40\x65\x5e\x00\x9f\x45\xa5\xf5\x37\x7a\x7e\x01\x6e\xec\xd0\xf1\xfa\x95\xbd\x75\x0e\x3c\x31\x04\x7c\xc2\xc0\x50\x58\x83\xc7\x96\x18\x3d\x2f\xf3\xfc\x0a\x59\x78\xec\xef\xc6\x57\x57\xdb\xb8\x86\x87\x1d\x07\xeb\x0f\x8f\x4b\x78\xcd\x73\x00\x80\xd5\x0a\xee\x49\x2b\x07\x4f\x2a\x58\x69\x09\x35\x05\x50\x10\xb0\xc6\x80\x5e\xe3\x64\x62\xb5\x85\x34\x00\xb8\x33\x47\xeb\x81\xf6\xff\xa0\xe6\x44\xe1\x90\x41\xc9\x9f\xdf\xb1\x5e\xc3\xe7\xf7\xc3\x2a\x53\xc9\xd0\xaf\x0d\xd8\xaa\x80\x85\xd2\x9a\xd7\xa0\x3a\x6e\x8a\xdf\x29\x04\xea\xff\x56\xae\xc3\x25\x7c\xbe\xd3\x9a\x3a\xcf\x22\x10\xc6\x23\x7e\x27\xcc\x9c\x2e\xf5\x56\x8e\x9c\x88\xae\x2e\x27\x4d\xb0\x01\xe9\x56\x46\xa6\xa0\x0e\x58\x0e\x5c\xbf\x7e\x28\xf4\xb7\x42\x52\xb7\x9e\x89\x63\x39\xfe\x26\xd8\x6e\xa0\xfb\x4b\x71\xb3\x3c\x37\x96\xf3\xf5\x2b\xb4\xca\x5b\x5d\x2c\xfe\xa0\xce\x99\x34\xa8\x51\xff\x8d\xfa\x38\x66\x3c\xe9\x5c\x0c\x1c\xa7\xc1\x25\x7c\x46\xdd\x31\xc2\x6b\x9e\x65\x62\x6f\x0a\x87\x34\xbe\xcc\x12\x36\x73\x02\x0f\xc8\x13\xe6\xde\x46\x2e\x96\x79\x96\x65\x73\x82\x1c\x29\x73\x59\x08\xd9\x90\xc5\x32\x1f\xbb\x49\xd8\xef\x53\xd6\x3f\x6c\xf2\x9d\x1c\xee\xce\xb0\x22\x95\xae\x56\x92\xfb\x14\x75\x8f\xfd\xb4\x85\xd0\x37\x56\x37\x60\x08\xa3\xff\x89\xe7\xe3\x3e\xea\x48\x32\x46\x22\x6f\xce\xdb\x97\x20\x5a\x79\x63\x8d\x62\x1c\x78\x87\x55\x4c\xb0\xab\xd5\x94\xb5\xfc\x32\x10\x48\x8a\x51\xe9\x06\x34\x85\x80\xb1\x25\x6f\xc4\xeb\x54\x3c\x6c\x67\x96\x09\xc6\x63\xff\x8d\x0c\x56\x5b\xd1\x72\xbb\x2d\xc9\xfd\xcc\xd6\x73\xee\x3f\x9c\xeb\x1e\xe1\xd3\x06\xbc\x75\x63\x5e\xb3\x2c\xd3\xe4\xd9\xfa\x0e\xa5\xfa\x24\xc6\x24\x53\xa5\x73\xe5\x6b\x9a\xb7\xf4\xdb\x78\x5b\x24\xd8\x76\x7d\xd1\x95\xac\xcd\x2e\x23\x79\x98\x88\xca\x40\x0e\x1f\x61\x03\x1f\xde\x7d\x82\x9f\xe1\x4b\x2a\xff\x9f\x17\x6c\x80\x43\xd2\x7b\x1a\xe7\x18\x91\xaf\x07\x33\x04\x64\xda\xb8\xce\xcb\x37\x88\x2e\xbe\xa4\x31\x5c\x8d\x3c\xce\xef\x61\x19\xdf\x84\x73\x46\xd5\x14\xa4\x9d\x38\x86\xfd\xcd\x77\x37\xcb\xde\xd1\x5d\x45\xf0\xe2\xc2\xfa\xca\x91\x69\xab\x4e\xff\x05\x00\x00\xff\xff\xa0\x1b\xa9\x9a\x63\x06\x00\x00" +var _idtablestakingAdminAdd_approved_and_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x4d\x6b\xdb\x40\x10\x3d\x4b\xbf\x62\x92\x43\x2b\xd3\x62\x37\x57\x53\x37\xb8\x55\x0a\x02\x13\x4a\xec\x4b\x09\x39\xac\x77\x47\xd6\xb6\xeb\x5d\xb1\x3b\x8e\x12\x82\xff\x7b\x99\x95\xe4\x8f\x44\xa1\x7b\x11\x48\x6f\xde\x3c\xbd\x79\xb3\x7a\x5b\x3b\x4f\xf0\xd3\xb8\xa6\xc8\x57\x62\x6d\x70\x49\xe2\xaf\xb6\x1b\x28\xbd\xdb\xc2\x97\xa7\x22\xbf\xb9\x5d\x15\xab\xdf\xab\xf9\xf7\xc5\xcd\x3c\xcf\xef\x6e\x96\xcb\x34\x9d\x4c\x26\xb0\xaa\x74\x00\xf2\xc2\x06\x21\x49\x3b\x0b\x42\xa9\x00\xd6\x29\x84\x22\x0f\x40\x0e\xa8\x42\x30\x3a\x10\xb8\x12\x44\x5d\x7b\xf7\x88\x2a\x02\x02\x68\x1b\x39\x18\x51\xe4\x40\xdc\x78\x0c\xf1\x55\x41\x20\x4c\x70\xa0\xad\xf4\x28\x02\x06\x08\xc6\x11\x18\xbd\xd5\x14\x22\x62\xfd\x1c\xeb\xec\x6e\xbb\x46\xcf\xdc\x2d\x65\x53\x39\x10\x1e\x59\x06\x2a\x06\xb6\x74\x25\x08\xfb\xcc\x28\xae\x61\x0d\x5a\x1d\x54\x08\xe3\x51\xa8\x67\xc0\x27\x56\xa9\xed\x99\x9e\xcf\x40\x95\x6e\x3b\x9e\xfe\x65\xa3\x8d\x01\xeb\x08\x3c\x3e\xa2\x27\xc8\xb4\xc2\x6d\xed\x08\x2d\x8d\xd2\xf4\x04\x99\x59\x6c\xe6\xdd\x5f\x17\x79\x98\xc2\xfd\x92\xbc\xb6\x9b\x87\x11\xbc\xa4\x29\x00\xc0\x64\x02\x0b\x27\x85\x81\x47\xe1\x35\xb7\x84\xd2\x79\x10\xe0\xb1\x44\x8f\x56\x62\x6f\x62\x91\x43\x9c\x0d\xcc\xd5\x56\x5b\x70\xeb\x3f\x28\x29\x52\x18\x24\x10\xfc\xf2\x0e\xcb\x29\x7c\x78\x3b\xc7\x71\x2c\x69\xfb\xd5\x1e\x6b\xe1\x31\x13\x52\xd2\x14\xe6\x3b\xaa\xe6\x52\xba\x9d\x25\x56\x04\xdd\x61\x83\x9d\xf7\xae\x19\x12\x22\x5e\xf7\xe7\x13\xd0\x94\xe3\x5e\x04\xcc\x80\xe9\xc7\x2d\xc7\xd7\x77\x15\x7d\xcb\x38\x60\xd3\x81\xe4\x8d\xbb\x67\x84\x2d\xc9\x79\xb1\xc1\x5f\x82\xaa\xd1\xa1\x21\x9f\xeb\x6b\xa8\x85\xd5\x32\xbb\xfc\xe1\x76\x46\xc5\x89\x74\xba\xcf\x54\x87\x2e\xce\x51\xdf\x65\xcb\xb1\x6f\xed\xc0\x27\x94\x3b\x42\x78\x49\x93\x84\x7d\x8c\x29\xe0\xc6\xc7\xa1\xc1\x6c\x48\xe0\x06\xa9\xc7\x2c\x74\xa0\x6c\x94\x26\x49\x32\x24\xc8\x38\xa1\x8e\xc9\xe7\x55\xb8\x1c\xa5\x5d\x37\x4e\xf5\x22\x86\xfa\xdd\x26\x77\xce\xe0\xf2\x00\xcb\x62\xe9\x64\xc2\x01\x8f\x99\xb6\xd8\xf4\xeb\x06\x4d\xa5\x65\x05\xca\x61\xb0\x1f\x69\x38\xd7\x9d\x8e\x28\xa3\x23\xb2\xea\xb0\x66\x11\x22\x85\x55\x5a\x09\xc2\x96\xb7\xdd\xb9\x08\x3b\xd9\x41\xde\xbf\xab\x96\x80\xe3\x8a\x42\x56\x20\x9d\xf7\x18\x6a\x67\x15\x7b\x1d\x8b\xdb\x35\x4c\x12\xc6\x58\x6c\x6e\x9d\xc2\x22\x67\x2d\xe7\x6b\x11\xdd\x4f\x74\x39\xe4\xfe\xfd\xa1\xee\x01\x2e\x66\x60\xb5\xe9\x72\x9a\x24\x89\x74\x96\xb4\xdd\x21\x57\xef\xd9\x98\x68\x2a\x77\x2e\x6c\xe9\x86\x2d\xbd\xed\xbe\x66\x07\xde\x68\x69\x72\x1c\xc5\x7d\x4f\x30\xf6\xce\xe0\x03\xcc\xe0\xdd\x6f\x17\xf0\x09\xae\x62\xf9\x7f\x94\xcf\x80\x7c\xd4\xb9\xef\xe6\x17\x90\x4e\x07\xd2\x06\xa3\xdf\xb0\x9d\xe5\x4b\xc6\x1d\xfd\x88\xf6\x9f\x8c\x3a\x0c\xef\xdd\x38\xbc\x0a\xe5\x80\xaa\x3e\x40\x4b\x76\x0a\x9b\xb3\x8b\x35\x49\xde\xd0\x9d\x44\xef\xe8\xc2\xf4\xc4\x91\x7e\x9b\xf6\xff\x02\x00\x00\xff\xff\x1a\xe3\xcc\x49\x46\x06\x00\x00" func idtablestakingAdminAdd_approved_and_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -1939,11 +1900,11 @@ func idtablestakingAdminAdd_approved_and_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/add_approved_and_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0x5c, 0xc3, 0x2d, 0xdd, 0xd4, 0x3f, 0x6, 0xb, 0x28, 0xd4, 0x83, 0xa8, 0x94, 0xed, 0x21, 0x85, 0x73, 0x1f, 0x61, 0xf0, 0x2f, 0xba, 0x6c, 0xed, 0xc4, 0x1f, 0xbe, 0x46, 0xf9, 0x40, 0x80}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc8, 0xe6, 0xc4, 0xf4, 0x46, 0x26, 0x18, 0x6a, 0x26, 0xbd, 0xc5, 0x90, 0x12, 0x8e, 0x38, 0x0, 0x49, 0xa, 0x72, 0x2a, 0x83, 0x1e, 0xd0, 0x97, 0xae, 0x62, 0x87, 0x70, 0x94, 0xe8, 0x16, 0x1b}} return a, nil } -var _idtablestakingAdminAdd_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x93\x51\x6b\xdb\x30\x14\x85\x9f\xed\x5f\x71\xc8\x43\xe7\xc0\xb0\xdf\xc3\xba\x92\x2d\x0c\x02\x65\x8c\xa5\xec\xa5\xf4\x41\xb1\xae\x63\x6d\x8e\x64\xa4\xeb\xb8\xa5\xe4\xbf\x8f\x2b\xdb\x21\x69\x33\xa6\x17\x83\x75\xef\xb9\x47\x47\x9f\xcc\xbe\x75\x9e\xf1\xad\x71\xfd\x7a\xf5\xa0\xb6\x0d\x6d\x58\xfd\x31\x76\x87\xca\xbb\x3d\x66\xef\x37\x66\x69\x5a\x14\x78\xa8\x4d\x00\x7b\x65\x83\x2a\xd9\x38\x0b\xa5\x75\x80\x75\x9a\xb0\x5e\x05\xb0\x03\xd7\x84\xc6\x04\x86\xab\xa0\xda\xd6\xbb\x03\xe9\x58\x10\x60\xac\x48\x48\xc1\x7a\x05\x16\xed\x1c\xf2\x67\x5d\x41\xd9\x17\x69\x90\x3d\x69\x31\xfa\xd4\xa4\x1a\x4f\x4a\xbf\x80\x9e\x45\xd4\xd8\x8b\xfe\x8f\xe0\xda\x84\xa8\x7a\xe6\xa9\x37\x4d\x03\xeb\x18\x9e\x0e\xe4\x19\x99\xd1\xb4\x6f\x1d\x93\xe5\x79\x9a\x9e\x55\x66\x46\x87\x05\x1e\x37\xec\x8d\xdd\x3d\xcd\xf1\x9a\xa6\x00\x50\x14\xb8\x77\xa5\x6a\x70\x50\xde\xc8\x18\x54\xce\x43\xc1\x53\x45\x9e\x6c\x49\xd3\x39\xd7\x2b\xc4\x88\xb0\xd4\x7b\x63\xe1\xb6\xbf\xa9\xe4\x28\xd1\x10\x43\xc9\xcf\x9f\x54\x2d\x70\xf3\x3e\xce\x3c\xb6\x0c\xf3\x5a\x4f\xad\xf2\x94\xa9\xb2\xe4\x05\x54\xc7\x75\xf6\xc5\x79\xef\xfa\x5f\xaa\xe9\x68\x8e\x9b\x65\x59\xba\xce\xb2\x18\xc4\xb8\x8a\x02\xdb\x58\x73\xcd\x97\x7a\x6b\x47\x56\xa0\xa6\xca\x27\x4f\xb8\x85\x4c\xcb\x03\x3b\xaf\x76\x94\x0f\x5a\x9f\xfe\x69\xf4\x73\x26\x5c\x2c\xae\x00\x93\x8f\xdf\x58\xb6\x19\xe4\x7e\x28\xae\xe7\xa7\xc1\xb2\xee\xee\xd0\x2a\x6b\xca\x6c\xf6\xd5\x75\x8d\x8e\xb7\x33\xfa\xbf\x70\x1f\x46\x0a\xa3\xcf\xd9\xa0\x71\x1c\x52\xa2\x67\x2a\x3b\x26\xbc\xa6\x49\x22\xf1\x0a\x1e\xc2\xdc\xed\x35\x53\x3b\xe2\xe5\x08\xdf\xbd\x09\x9c\xfd\xdf\x8d\x50\x36\x01\x3b\x00\x1c\x5f\xc2\x18\xd0\x6c\x9e\xa6\x49\x52\x14\xc2\x7b\x84\xd5\x52\x3f\x61\x8f\xbe\x36\x65\x0d\xed\x28\xd8\x0f\x7c\x09\x6c\x9a\x24\xc2\x8e\xa5\xfe\x7b\xb4\x2b\x00\x1b\x1d\xe2\x21\x92\xf1\x04\x8f\xa7\xdd\x27\xdc\x82\x7d\x47\x69\x92\x1c\xc7\x79\x81\x78\xb8\xd2\xe9\x29\x45\x6b\xe3\x3d\x77\x56\x70\x77\xd5\x30\x2b\xe6\x66\xf5\xb9\xb5\x70\xfd\xf6\xf3\xf0\x26\x9e\xd1\xc9\x94\xf7\xf1\x6f\x00\x00\x00\xff\xff\xba\x60\xb0\x0b\x1f\x04\x00\x00" +var _idtablestakingAdminAdd_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x93\x5f\x6b\xdb\x3c\x14\xc6\xaf\xed\x4f\xf1\xd0\x8b\xf7\x75\x60\xd8\xbb\x0e\xeb\x8a\x37\x77\x60\x28\x65\x34\xb9\x19\xa5\x17\x8a\x75\x1c\x6b\x73\x24\x23\x1d\xc7\x29\x25\xdf\x7d\x48\xb6\x43\xd2\x65\x4c\x37\x06\xe9\xfc\x79\xce\x73\x7e\x56\xbb\xce\x58\xc6\xb7\xd6\x0c\x65\xb1\x16\x9b\x96\x56\x2c\x7e\x29\xbd\x45\x6d\xcd\x0e\x1f\x0f\x65\x71\xff\xb8\x2e\xd7\x3f\xd6\xf9\x97\x87\xfb\xbc\x28\x9e\xee\x57\xab\x38\xce\x32\xac\x1b\xe5\xc0\x56\x68\x27\x2a\x56\x46\x43\x48\xe9\xa0\x8d\x24\x94\x85\x03\x1b\x70\x43\x68\x95\x63\x98\x1a\xa2\xeb\xac\xd9\x93\x0c\x01\x0e\x4a\xfb\x12\x3e\xa0\x2c\xc0\xbe\x6d\x0a\x7f\x53\xd6\x10\xfa\xd5\x27\xf8\x37\x9f\xa2\xe4\x29\x49\xb4\x96\x84\x7c\x05\x1d\x7c\x51\xa5\x2f\xf2\x3f\x80\x1b\xe5\x42\xd5\x33\x4d\x83\x6a\x5b\x68\xc3\xb0\xb4\x27\xcb\x48\x94\xa4\x5d\x67\x98\x34\x2f\xe2\xf8\x2c\x32\x51\xd2\x2d\xf1\xbc\x62\xab\xf4\xf6\x65\x81\xb7\x38\x06\x80\x2c\xc3\x83\xa9\x44\x8b\xbd\xb0\xca\xb7\x41\x6d\x2c\x04\x2c\xd5\x64\x49\x57\x34\xcf\x59\x16\x08\xee\x21\x97\x3b\xa5\x61\x36\x3f\xa9\xe2\x50\xa2\x25\x86\xf0\x97\x4f\x54\x2f\xf1\xdf\x9f\x4e\xa7\x21\x65\xec\xd7\x59\xea\x84\xa5\x44\x54\x15\x2f\x91\xf7\xdc\xe4\x55\x65\x7a\xcd\x5e\x11\xa6\x93\x65\xd8\x18\x6b\xcd\x70\x4d\x88\x78\xdf\xdf\x1f\x47\x6d\x9d\xce\x22\x70\x0b\x5f\x3e\x1d\x6b\x7c\xfa\xab\xa2\xcf\x89\x47\x60\x79\x85\x8d\x74\xfa\x86\xb0\x15\x1b\x2b\xb6\xf4\x5d\x70\xb3\x38\x35\xf4\xe7\xee\x0e\x9d\xd0\xaa\x4a\x6e\xbe\x9a\xbe\x95\x61\x0d\x93\xee\x0b\xd5\x6e\x02\x2e\xe8\xbb\x19\x6b\x1c\x47\x3b\xe8\x40\x55\xcf\x84\xb7\x38\x8a\xbc\x8f\x9e\x03\x0f\xd7\xed\x35\x51\x5b\xe2\x7c\xa2\xec\x41\x39\x4e\xfe\xad\xc6\xe3\x34\x93\x39\x92\x1a\xa0\x77\xe3\x44\x37\x8b\x38\x8e\xa2\x2c\xf3\x60\x07\x2a\x35\x0d\x33\xdf\x18\x1a\x55\x35\x90\x86\x9c\xfe\x9f\x2f\xc9\x8c\xa3\xc8\x43\xa2\x69\x78\x0c\x72\x3d\xa9\x4a\xba\x30\x44\x34\x4d\xf0\x7c\x7a\x7d\xc1\x2d\xd8\xf6\x14\x47\xd1\x71\xea\xe7\x88\xc7\x55\xce\xff\x4c\x90\x36\xed\xb7\xd7\x9e\x6b\x53\x8f\xbd\x82\x6f\x5a\x9e\x4b\x73\xd7\xb7\x9e\xba\x77\xf6\x4c\x4a\x66\xbf\x8f\xbf\x03\x00\x00\xff\xff\xb8\xd4\x12\x39\x0a\x04\x00\x00" func idtablestakingAdminAdd_approved_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -1959,11 +1920,11 @@ func idtablestakingAdminAdd_approved_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/add_approved_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc4, 0x2e, 0x15, 0x46, 0x80, 0xde, 0x18, 0xca, 0x68, 0xd8, 0xcb, 0xd0, 0xd8, 0xb5, 0x9c, 0x1c, 0x8d, 0x79, 0x2a, 0xfc, 0xfd, 0x40, 0x7c, 0xeb, 0xd1, 0x65, 0x4f, 0xc8, 0x1, 0xa7, 0x95, 0x8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0x5a, 0x78, 0xd4, 0xfa, 0x43, 0xe2, 0xe0, 0xa8, 0x42, 0xec, 0xc0, 0x92, 0x56, 0x5c, 0xb, 0x55, 0x70, 0x39, 0xaf, 0xd9, 0x49, 0x71, 0xb2, 0x12, 0x22, 0x40, 0xeb, 0x88, 0x3a, 0x49, 0x8c}} return a, nil } -var _idtablestakingAdminCapability_end_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x4d\x6b\xe4\x48\x0c\xbd\xfb\x57\x88\x3e\x04\x37\x34\x36\xbb\x2c\x7b\x30\xd9\x84\x6c\x67\x02\x81\x1c\x42\x3a\x33\xd7\x20\x97\xe5\x76\x4d\xec\x92\xa9\x92\xe3\x34\x21\xff\x7d\x28\x97\xed\xb4\xf3\x31\x53\x97\xa6\x91\xde\xd3\x93\xf4\x64\xdd\xb4\x6c\x05\xae\x6a\xee\xaf\x2f\xef\x31\xaf\x69\x27\xf8\xa8\xcd\x1e\x4a\xcb\x0d\xac\x3e\x06\x56\x51\x94\xa6\x70\x5f\x69\x07\x62\xd1\x38\x54\xa2\xd9\x40\xe7\xc8\x01\x82\x1b\xd1\x58\x34\xda\x80\xc2\x16\x73\x5d\x6b\x39\x78\x8c\x30\xb4\x78\x00\x4b\x3d\xda\xc2\x6d\x80\x4c\x01\x52\xd1\x1b\xa6\x1b\xa8\x36\x80\xa6\x98\x83\xd4\xb2\xaa\x92\x28\x4d\x3d\xc3\xb5\x80\xe2\x26\xd7\x86\xdc\x10\x6c\xf1\xf0\x70\x4c\xf7\x30\x53\x99\x02\x1a\x7e\xa2\x07\xe1\x47\x32\x0b\xa5\xce\x13\xf5\x95\x56\x95\x47\xb8\xcf\x15\x84\xb8\xa5\xb2\xf3\x29\x86\x0b\x72\xd0\x6b\xa9\x40\x1b\xd7\x95\xa5\x56\x9a\x8c\x0c\x30\xf2\x74\x53\x39\x07\x63\xbd\x9c\xa4\x27\x32\x90\x77\xea\x91\xc4\x8d\xda\xb1\x76\x0c\x8e\xc4\x0f\xca\x50\x1f\x92\x7d\x13\xdc\x09\x94\x6c\x07\x2d\x86\x9e\x25\x74\x1d\x45\x47\xb2\x63\x5d\xb8\x0c\x5e\x76\x62\xb5\xd9\x67\xf0\x3f\x73\xfd\xba\xf1\x2c\xb7\x03\x3c\x83\xef\x57\xfa\xf9\xdf\x7f\xd6\xf0\x12\x45\x00\x00\x69\x0a\x37\xac\xb0\x86\x27\xb4\xda\xaf\x6f\x28\x80\xbe\x27\xb2\x64\x14\xf9\x75\xf8\x7a\xd7\x97\x30\xac\x17\x2e\x86\x95\x71\xfe\x93\x94\x0c\x14\x35\x49\xd8\xe3\x1d\x95\x19\x9c\x7c\xb4\x42\x32\x40\x42\xbd\xd6\x52\x8b\x96\x62\x54\x4a\x32\xc0\x4e\xaa\x78\xcb\xed\xe1\x07\xd6\x1d\xad\xe1\xe4\x42\x29\xee\x8c\x78\x79\x30\xbe\x99\x7e\x3b\xbb\x04\xfe\x03\x8f\x4f\x9c\xb0\xc5\x3d\x25\x8a\xdb\xc3\xe9\x5b\xf8\x2c\xf6\xa6\xcc\x3e\x71\x6b\x32\xfe\x0e\x82\x76\x01\x7d\x8b\x52\xad\xe7\x6a\xfe\x9d\x9f\x43\x8b\x46\xab\x78\xb5\xe5\xae\x2e\xc0\xb0\xc0\x9e\xe4\xc8\xa6\xc1\xf5\x18\xc4\xc2\x28\x63\xb5\x8e\x66\x9a\x34\x85\x9c\xad\xe5\xfe\xb3\x51\xe2\xfb\x09\xfa\xe7\xa8\x2e\x93\x69\x8c\xbe\xc1\x65\xcb\x49\xa0\x3b\xfd\x72\xbc\x67\xf1\x9f\x9b\x18\x25\x2d\x04\x2d\x2e\x71\x15\x38\x5e\x43\x23\xf4\x4c\xaa\x13\x9a\xac\x32\x2d\x63\xbc\xa4\x5d\xd7\x34\x68\xfd\x2e\x16\xd2\x13\x85\xb5\xea\x6a\x14\xba\x0b\x79\x47\xba\x96\x89\x2d\x1e\xa6\x94\x92\xed\x37\x6f\xe5\xad\x9f\x27\xd9\x0c\xfe\xda\xbc\x2b\x93\xbd\xfb\x7f\x34\xeb\x25\xab\x23\x19\xa8\xee\xfd\xd1\x04\xd3\xc7\xb3\xfd\x7f\x87\xba\x68\x5b\xcb\x4f\x54\xdc\x68\x27\xfe\x8a\xbe\xcc\x25\x53\x4c\x36\x0a\xdf\x81\xf8\xcb\x54\x7f\xec\x83\x10\xe7\x35\x2c\x5b\xfc\x7b\x9a\xf5\x6b\xf4\x2b\x00\x00\xff\xff\xad\x41\xde\x8f\x5e\x05\x00\x00" +var _idtablestakingAdminCapability_end_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x53\xc1\x6a\xe3\x48\x10\xbd\xeb\x2b\x8a\x1c\x16\x05\x8c\xb4\xbb\x2c\x7b\x10\x99\x04\x27\x76\xc0\x10\x86\x10\x7b\x0e\x73\x0a\xa5\x56\xc9\xea\x89\xd4\x2d\xba\x4b\x91\x4d\xc8\xbf\x0f\xdd\x2d\x29\x56\x26\x99\xe9\x8b\xb1\xaa\xde\xab\x57\x55\xaf\x64\xd3\x6a\xc3\x70\x5b\xeb\x7e\xb3\xda\x61\x5e\xd3\x96\xf1\x49\xaa\x3d\x94\x46\x37\xf0\xf7\x61\xb3\x5a\x7f\xdd\x6d\x76\xdf\x77\xcb\xeb\xbb\xf5\x72\xb5\x7a\x58\x6f\xb7\x51\x94\xa6\xb0\xab\xa4\x05\x36\xa8\x2c\x0a\x96\x5a\x41\x67\xc9\x02\x82\x1d\xf0\x58\x34\x52\x81\xc0\x16\x73\x59\x4b\x3e\x3a\x0c\x6b\x68\xf1\x08\x86\x7a\x34\x85\x5d\x00\xa9\x02\xb8\xa2\x37\x4c\xe7\xa9\x16\x80\xaa\x98\x82\xd4\x6a\x51\x25\x51\x9a\x3a\x86\x0d\x83\xd0\x4d\x2e\x15\x59\x1f\x6c\xf1\xf8\x78\x4a\xf7\x38\x51\xa9\x02\x1a\xfd\x4c\x8f\xac\x9f\x48\xcd\x94\x5a\x47\xd4\x57\x52\x54\x0e\x61\x3f\x56\x10\xe2\x86\xca\xce\xa5\x28\x5d\x90\x85\x5e\x72\x05\x52\xd9\xae\x2c\xa5\x90\xa4\xd8\xc3\xc8\xd1\x8d\xe5\x2c\x0c\xf5\x72\xe2\x9e\x48\x41\xde\x89\x27\x62\x3b\x68\xc7\xda\x6a\xb0\xc4\x6e\x50\x8a\xfa\x90\xec\x9a\xd0\x1d\x43\xa9\x8d\xd7\xa2\xe8\xc0\xa1\xeb\x28\x3a\x91\x1d\xcb\xc2\x66\xf0\xb2\x65\x23\xd5\x3e\x83\x6b\xad\xeb\xd7\x85\x63\xb9\xf7\xf0\x0c\xbe\xdd\xca\xc3\xff\xff\x9d\xc3\x4b\x14\x01\x00\xa4\x29\xdc\x69\x81\x35\x3c\xa3\x91\x6e\xb3\xbe\x00\xba\x9e\xc8\x90\x12\xe4\xd6\xe1\xea\x6d\x56\xe0\x37\x0f\x4b\xbf\x32\x9d\xff\x20\xc1\x9e\xa2\x26\x0e\x7b\x7c\xa0\x32\x83\xbf\x7e\x75\x49\xe2\x21\xa1\x5e\x6b\xa8\x45\x43\x31\x0a\xc1\x19\x2c\x3b\xae\x96\x42\xe8\x4e\xb1\x53\x04\xc3\x9b\x18\x6f\x26\x63\xc0\x17\x70\x90\x44\xe8\xf6\x78\xf1\xf6\xf9\x32\x76\x0e\xcc\x3e\xb0\x66\x32\xfc\xfa\xda\x5b\xd6\x06\xf7\x74\x8f\x5c\x9d\x4f\x55\xdc\xbb\xba\x82\x16\x95\x14\xf1\xd9\x8d\xee\xea\x02\x94\x66\xd8\x13\x9f\x38\x32\x58\x1c\x83\x48\xb0\x81\xe8\xec\x3c\x9a\x68\xd2\x14\x72\x6d\x8c\xee\x3f\x9a\x1a\xbe\x1f\x96\x7b\x96\xea\x32\x19\x27\xe6\x1a\x9b\xb7\x9a\x04\xba\x8b\x4f\x27\x79\x19\xff\xb9\x89\x41\xd2\x4c\xd0\xec\xe8\xce\x02\xc7\x6b\x68\x84\x0e\x24\x3a\xa6\xd1\x15\xe3\x12\x86\xa3\xd9\x76\x4d\x83\xc6\xed\x60\x26\x3d\x11\x58\x8b\xae\x46\xa6\x87\x90\x77\xa2\x6b\x9e\xd8\xe2\x71\x4c\x29\xb5\x59\x3b\xd7\xde\xb8\x79\x92\xc9\xe0\x9f\xc5\xbb\x32\xd9\xbb\xff\x27\xb3\x9e\xb3\x5a\x62\x4f\xb5\x73\xf7\x11\xfc\x1d\x4f\x4e\xff\x1d\x6a\xd9\xb6\x46\x3f\x53\x71\x27\x2d\xbb\x83\xf9\x34\x97\x54\x31\xda\x28\x9c\x7c\xfc\x69\xaa\xbb\x6b\x2f\xc4\x3a\x0d\xf3\x16\xff\x1d\x67\xfd\x1a\xfd\x0c\x00\x00\xff\xff\xb9\xf6\xf9\xe9\x4b\x05\x00\x00" func idtablestakingAdminCapability_end_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1979,11 +1940,11 @@ func idtablestakingAdminCapability_end_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/capability_end_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0xe8, 0x46, 0x80, 0xfa, 0x86, 0x18, 0x85, 0xdd, 0xa4, 0xf2, 0x3b, 0x47, 0x60, 0x5c, 0x35, 0x94, 0x4d, 0x3a, 0xa2, 0x2c, 0xc3, 0x36, 0x6b, 0x8c, 0x2a, 0xfb, 0xc5, 0x3d, 0x7b, 0x29, 0x9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0x21, 0xea, 0x77, 0xb, 0xd2, 0x13, 0x35, 0x6d, 0xf1, 0xd1, 0xa0, 0x41, 0xa2, 0xf5, 0x3d, 0x9a, 0xdc, 0xb2, 0x18, 0x94, 0x70, 0x3c, 0xa8, 0xca, 0xff, 0xf0, 0xee, 0x2e, 0x7f, 0xc0, 0xfc}} return a, nil } -var _idtablestakingAdminChange_candidate_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdc\x30\x10\x85\xef\xfe\x15\x8f\x3d\x04\x2f\x14\xfb\x52\x4a\x59\xda\x86\x34\xa1\xb0\x10\x4a\x69\xd2\xde\xc7\xf2\x78\xad\x56\xd6\x18\x69\xdc\x0d\x94\xfc\xf7\x22\xd9\x2e\xd9\xee\x76\x0e\x36\x48\x9a\xf7\x3e\xcd\x93\x1d\x46\x09\x8a\x4f\x4e\x8e\xfb\xbb\x47\x6a\x1c\x3f\x28\xfd\xb4\xfe\x80\x2e\xc8\x80\xcd\xf9\xc6\xa6\x28\xea\xba\xc6\x63\x6f\x23\x34\x90\x8f\x64\xd4\x8a\x87\xe9\xc9\x1f\x38\x42\x7b\x86\xb3\x83\x55\x48\x07\xcf\x47\x78\x69\xf3\x32\x29\x0c\x79\x34\x9c\x7e\xad\x6d\x49\x39\x66\xa9\x4e\x42\xee\xf2\xfc\xa4\xe0\x51\x4c\x5f\xbc\x10\x2e\x83\x38\xde\xe1\xdb\xde\xeb\xdb\x57\x49\xf0\x76\xed\xfe\x2c\x2d\xdf\x27\xa7\x79\xf7\xcd\xeb\x2d\x7e\x17\x05\x00\x24\xd5\x7b\x31\xe4\xf0\x8b\x82\x4d\xf0\xd9\x84\x10\xb8\xe3\xc0\xde\x30\x54\xb2\xe7\xfe\x0e\xf9\x72\xb8\x69\x07\xeb\x21\xcd\x0f\x36\x9a\x35\x1c\x2b\x28\x2d\x7e\xe5\x6e\x87\xab\xf3\x41\x54\xb9\x65\x36\x1c\x03\x8f\x14\xb8\x24\x63\x74\x07\x9a\xb4\x2f\x3f\x4a\x08\x72\xfc\x4e\x6e\xe2\x2d\xae\x6e\x8c\x91\xc9\x6b\x22\xc4\x52\x75\x8d\x26\x9f\xb9\xc4\x45\xff\xe2\xa4\x8a\xec\xba\x6a\x65\xc2\x7b\x24\xb7\x2a\xaa\x04\x3a\x70\x35\x6b\xbd\xfb\x2f\xe8\x87\x32\x25\xba\xbb\x10\x75\xb5\xfc\xf3\xb1\x87\x59\xee\x0b\x69\xbf\xfd\x6b\x9c\xea\xfa\x1a\x23\x79\x6b\xca\xcd\xad\x4c\xae\x85\x17\x5d\xf9\x4f\xe8\xe3\xf2\x7e\x32\xe7\x66\xd6\x78\x9e\xa7\xc4\x4f\x6c\x26\xe5\x17\x33\x38\xb9\x51\x15\x59\xcf\xc3\x5d\xf2\x4f\xdf\x1c\xff\x92\xf8\xc5\x87\xb0\xba\x3d\xff\x09\x00\x00\xff\xff\xa3\x37\xb2\x3b\xd7\x02\x00\x00" +var _idtablestakingAdminChange_candidate_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xd1\x8b\xd3\x40\x10\xc6\xdf\xf3\x57\x7c\xdc\x83\xf4\x40\x12\x1f\x44\xa4\xa8\x47\xbc\x54\x08\x94\x43\xae\xf1\xc1\xc7\xe9\x66\xd2\xac\x6e\x77\xc2\x66\x6a\x0b\x72\xff\xbb\xec\x26\x95\x3b\x5b\xe7\x21\x0b\x9b\xcc\xef\xfb\x66\xbe\xd8\xfd\x20\x41\xf1\xc5\xc9\xb1\xae\x1a\xda\x3a\xde\x28\xfd\xb4\x7e\x87\x2e\xc8\x1e\x6f\x4e\x75\xb5\x7a\x68\xea\xe6\x7b\x53\x7e\x5e\xaf\xca\xaa\x7a\x5c\x6d\x36\x59\x56\x14\x05\x9a\xde\x8e\xd0\x40\x7e\x24\xa3\x56\x3c\x4c\x4f\x7e\xc7\x23\xb4\x67\x38\xbb\xb7\x0a\xe9\xe0\xf9\x08\x2f\x6d\xba\x26\x85\x21\x8f\x2d\xc7\xa3\xb5\x2d\x29\x8f\x09\xd5\x49\x48\x5d\x9e\x4f\x0a\x1e\xc4\xf4\xd9\x33\xf0\x22\x88\xe3\x25\xbe\xd5\x5e\xdf\xbf\x8e\xc0\xfb\x73\xf7\x83\xb4\xbc\x8e\x4a\xd3\xdb\x77\x6f\x6f\xf1\x3b\xcb\x00\x20\x52\xd7\x62\xc8\xe1\x17\x05\x1b\xe7\x4a\x22\x84\xc0\x1d\x07\xf6\x86\xa1\x92\x34\xeb\x0a\x69\x6e\x94\xed\xde\x7a\xc8\xf6\x07\x1b\x4d\x0c\xc7\x0a\x8a\x97\x8f\xdc\x2d\xf1\xea\x72\x47\x79\x6a\x99\x04\x87\xc0\x03\x05\x5e\x90\x31\xba\x44\x79\xd0\xbe\x34\x46\x0e\x5e\xa3\x25\xcc\x55\x14\xd8\x4a\x08\x72\xbc\x66\x84\xfe\xd5\x8f\x35\xb2\xeb\xf2\xb3\x09\x7c\x44\xc4\xe7\x13\xe3\xc3\x7f\x1d\x7d\x5a\xc4\xf0\x96\x57\x52\xcd\xe7\x33\x7d\xb6\x51\x09\xb4\xe3\xaf\xa4\xfd\xed\x5f\xc1\x58\x77\x77\x18\xc8\x5b\xb3\xb8\xb9\x97\x83\x6b\xe1\x45\xcf\xbe\x5f\xb8\x1e\xe7\x5f\x25\xf9\xbb\x99\x18\x4f\xd3\x3a\xf8\xc4\xe6\xa0\xfc\x6c\xf6\x17\x93\xe4\x23\xeb\x65\x8a\x73\xd0\xf1\x99\x72\x9e\xa3\xbd\x9a\xf8\x59\xed\xe9\x4f\x00\x00\x00\xff\xff\x5b\x20\xd7\xc9\xc2\x02\x00\x00" func idtablestakingAdminChange_candidate_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -1999,11 +1960,11 @@ func idtablestakingAdminChange_candidate_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_candidate_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0x8b, 0x69, 0x1, 0xa6, 0x30, 0xfc, 0xb9, 0x20, 0x3, 0xb0, 0x87, 0xff, 0x80, 0xf, 0xa7, 0x89, 0xa7, 0x8, 0xf4, 0x47, 0xfe, 0xa0, 0xd6, 0x59, 0xa2, 0xaa, 0xa4, 0x16, 0x8e, 0xad, 0x7f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0xdb, 0xe5, 0xea, 0x4b, 0x2a, 0x6d, 0x5e, 0x1, 0x52, 0x63, 0xeb, 0x7e, 0x12, 0x89, 0x85, 0x22, 0x5d, 0xfd, 0x9c, 0xcf, 0xc8, 0x9a, 0x79, 0x46, 0xb0, 0x29, 0x10, 0x43, 0x55, 0x71, 0x62}} return a, nil } -var _idtablestakingAdminChange_cutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x0f\x1f\x82\x7c\x91\x2e\xa5\x07\xd3\x36\xa4\x09\x81\x40\x0f\xa1\x49\x7b\x1f\xaf\x46\xd2\xd6\xeb\x1d\x31\x3b\xaa\x02\x25\xff\xbd\xac\x64\x97\xb8\x76\xe6\x22\xd0\xce\xbe\xf7\xcd\xbc\xf5\xfb\x41\xd4\x70\x1f\x64\x7a\xb8\x7b\xa6\x6d\xe0\x27\xa3\x9d\x8f\x1d\x5a\x95\x3d\x56\xe7\x07\xab\xa2\xa8\x6b\x3c\xf7\x3e\xc1\x94\x62\x22\x67\x5e\x22\x5c\x4f\xb1\xe3\x04\xeb\x19\x6d\x90\x09\x26\x3b\x8e\x50\x9e\x48\x1b\xb8\xd1\x60\x3d\x19\xa2\x34\xb9\x89\x76\xbc\x18\x34\x1c\xb8\x23\x13\x4d\x45\xf1\x46\xae\x8c\x3c\xdd\x8e\xf6\xc8\xea\x38\x1a\x75\xbc\xc1\x8f\x7b\xff\xf2\xf1\xc3\x1a\x7f\x8a\x02\x00\xea\x1a\xdf\xc4\x51\xc0\x6f\x52\x9f\xf1\xd0\x8a\x82\xa0\xdc\xb2\x72\x74\x0c\x93\x19\xe6\xe1\x0e\x33\x3e\x6e\x9a\xbd\x8f\x90\xed\x2f\x76\x36\x4b\x04\x36\x50\xfe\xf9\x9d\xdb\x0d\xae\xce\x47\xad\xe6\x2b\x8b\xdf\xa0\x3c\x90\x72\x49\xce\xd9\x06\x34\x5a\x5f\x7e\x15\x55\x99\x7e\x52\x18\x79\x8d\xab\x1b\xe7\x64\x8c\x96\x01\x71\xa8\xba\xc6\x76\xee\xb9\xc4\x45\xff\xe3\xe4\x4a\x1c\xda\xea\xc8\x84\xcf\xc8\x6e\x55\x32\x51\xea\xb8\x5a\xb4\x3e\xbd\x0b\xfa\xa5\xcc\x2b\xdd\x5c\x08\xb3\x3a\x7c\xe7\xb6\xa7\x45\xee\x91\xac\x5f\xff\x33\xce\x75\x7d\x8d\x81\xa2\x77\xe5\xea\x56\xc6\xd0\x20\x8a\x1d\xf9\x4f\xe8\xd3\xe1\x85\xcc\x9c\xab\x45\xe3\x75\xd9\x12\xbf\xb0\x1b\x8d\xdf\xec\xe0\x64\xa2\x2a\xb1\x9d\xc4\x7a\x96\xf3\x51\xed\xf5\x6f\x00\x00\x00\xff\xff\xab\xef\x4a\xd9\x99\x02\x00\x00" +var _idtablestakingAdminChange_cutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x8f\x1c\x8a\x73\x91\x7a\x28\x3d\x98\xb6\x41\x8d\x1c\x30\x84\x12\x62\xf5\xd0\xe3\x78\x35\xfa\x53\xaf\x77\xcc\x68\x54\x19\x4a\xbe\x7b\x59\xc9\x2e\x71\xe3\xce\x65\x61\x99\x7d\xef\x37\xf3\xb6\xdb\x1f\x44\x0d\x0f\x5e\xc6\x75\x51\xd2\xd6\xf3\xc6\x68\xd7\x85\x06\xb5\xca\x1e\xef\x8f\xeb\x62\xf5\xad\x5c\x97\x3f\xca\xfc\xeb\xe3\x2a\x2f\x8a\xe7\xd5\x66\x93\x24\x59\x86\xb2\xed\x7a\x98\x52\xe8\xc9\x59\x27\x01\xae\xa5\xd0\x70\x0f\x6b\x19\xb5\x97\x11\x26\x3b\x0e\x50\x1e\x49\x2b\xb8\xc1\x60\x2d\x19\x82\x54\xb1\x89\x76\x3c\x5b\x54\xec\xb9\x21\x13\xed\x93\xe4\x95\xdc\x22\xf0\x78\x3f\xd8\x13\xab\xe3\x60\xd4\xf0\x12\xdf\x1f\xba\xe3\xc7\x0f\xb7\xf8\x9d\x24\x00\x90\x65\x78\x14\x47\x1e\xbf\x48\xbb\x48\x8e\x5a\x14\x04\xe5\x9a\x95\x83\x63\x98\x4c\x30\xeb\x02\xd3\x64\xc8\xab\x7d\x17\x20\xdb\x9f\xec\x6c\x92\xf0\x6c\xa0\x78\xf9\xcc\xf5\x12\xef\xde\x6e\x21\x9d\x9e\xcc\x7e\x07\xe5\x03\x29\x2f\xc8\x39\x5b\x22\x1f\xac\xcd\x9d\x93\x21\x58\x24\xc2\xa9\xb2\x0c\x5b\x51\x95\xf1\x1a\x08\xfd\xeb\x1f\xab\x67\x5f\xa7\x67\x08\x7c\x46\x94\x4f\x67\x8d\x4f\xff\x25\xfa\xb2\x88\xbb\x5b\x5e\xc9\x2d\x3d\x9d\x53\xdb\xc6\x44\xa9\xe1\x27\xb2\xf6\xf6\xaf\x61\xac\xbb\x3b\x1c\x28\x74\x6e\x71\x73\x2f\x83\xaf\x10\xc4\xce\xdc\x17\xd4\xfd\xe9\x33\x4c\x7c\x37\xb3\xc6\xcb\xbc\x0e\x3e\xb2\x1b\x8c\x5f\xcd\x7e\x31\x49\xda\xb3\x5d\xe4\xf7\x26\xd0\xb3\xda\xcb\x9f\x00\x00\x00\xff\xff\x8e\xa5\x1f\xd1\x84\x02\x00\x00" func idtablestakingAdminChange_cutCdcBytes() ([]byte, error) { return bindataRead( @@ -2019,11 +1980,11 @@ func idtablestakingAdminChange_cutCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_cut.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x44, 0x7a, 0x5d, 0xf4, 0xb4, 0x22, 0xad, 0xa1, 0x2e, 0x57, 0x29, 0x66, 0x47, 0x5f, 0xca, 0x24, 0x3b, 0xd2, 0x71, 0x49, 0xa8, 0xb4, 0x2c, 0x34, 0xd3, 0xf, 0x36, 0xa0, 0x2a, 0x5f, 0x58, 0x1a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0x16, 0x86, 0xfb, 0xee, 0x3b, 0xc9, 0x84, 0xcd, 0xcb, 0x97, 0x24, 0x33, 0xd9, 0xe3, 0x6b, 0x46, 0x7d, 0x40, 0x73, 0x24, 0x7a, 0x38, 0x38, 0xd5, 0x51, 0xa1, 0x58, 0x44, 0xaf, 0xb3, 0x7a}} return a, nil } -var _idtablestakingAdminChange_del_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdc\x40\x0c\xc5\xef\xfe\x14\x8f\x3d\x04\xef\xc5\xbe\x94\x1e\x96\xb6\x21\xed\x12\x08\xb4\x50\x92\xb4\x77\xed\x58\x5e\x4f\x77\x3c\xda\xca\x9a\x3a\x50\xf2\xdd\xcb\xd8\xeb\x92\x3f\x1b\x5d\x06\x46\x9a\xf7\x7e\x92\xc6\xf7\x47\x51\xc3\x75\x90\xf1\x66\x7b\x4f\xbb\xc0\x77\x46\x07\x1f\xf7\x68\x55\x7a\xac\x5e\x27\x56\x45\x51\xd7\xb8\xef\xfc\x00\x53\x8a\x03\x39\xf3\x12\xe1\x3a\x8a\x7b\x1e\x60\x1d\xa3\x0d\x32\xc2\xe4\xc0\x11\xca\x23\x69\x03\x97\x0c\xd6\x91\x21\x4a\x93\x8b\xe8\xc0\xb3\x41\xc3\x81\xf7\x64\xa2\x43\x51\x3c\x91\x2b\x23\x8f\xdb\x25\xf5\xcd\x47\xdf\xa7\x7e\x83\x1f\xd7\xfe\xe1\xfd\xbb\x35\xfe\x16\x05\x00\xd4\x35\xbe\x8a\xa3\x80\x3f\xa4\x3e\x13\xa2\x15\x05\x41\xb9\x65\xe5\xe8\x18\x26\x13\xcf\xcd\x16\x53\x07\xb8\x6a\x7a\x1f\x21\xbb\x5f\xec\x6c\x92\x08\x6c\xa0\x7c\x79\xcb\xed\x06\x17\xaf\xbb\xad\xa6\x27\xb3\xdf\x51\xf9\x48\xca\x25\x39\x67\x1b\x50\xb2\xae\xfc\x2c\xaa\x32\xfe\xa4\x90\x78\x8d\x8b\x2b\xe7\x24\x45\xcb\x80\x38\x45\x5d\x63\x37\xd5\x9c\xe3\xa2\x97\x38\x39\x06\x0e\x6d\xb5\x30\xe1\x23\xb2\x5b\x35\x98\x28\xed\xb9\x9a\xb5\x3e\xbc\x09\xfa\xa9\xcc\x53\xdd\x9c\xd9\x67\x75\x3a\xa7\xb2\xbb\x59\xee\x3b\x59\xb7\xfe\x6f\x9c\xe3\xf2\x12\x47\x8a\xde\x95\xab\x2f\x92\x42\x83\x28\xb6\xf0\x3f\xa3\x1f\x4e\x9f\x64\xe2\x5c\xcd\x1a\x8f\xf3\x94\xf8\x81\x5d\x32\x7e\x32\x83\x67\x1d\x55\x03\xdb\xcb\xcd\x66\x34\xbe\xe5\xdf\xc9\x2b\xf7\x1c\xed\xdc\xf6\x17\x8f\xc7\x7f\x01\x00\x00\xff\xff\xa7\xa0\xc3\xae\xb2\x02\x00\x00" +var _idtablestakingAdminChange_del_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6f\xd3\x40\x10\x85\xef\xfe\x15\x4f\x3d\xa0\xf4\x62\x73\x40\x1c\x22\xa0\x32\x38\x95\x22\x15\x84\x12\x73\xe0\x38\x59\x8f\xe3\x25\xf6\x4e\x18\x8f\x71\x24\xd4\xff\x8e\xd6\x4e\x50\x5b\xc2\x5c\x2c\x79\x67\xdf\xfb\x66\xde\xfa\xee\x28\x6a\xb8\x6f\x65\x5c\x17\x25\xed\x5a\xde\x1a\x1d\x7c\xd8\xa3\x56\xe9\xf0\xfa\xb4\x2e\x56\x5f\xca\x75\xf9\xbd\xcc\x3f\x3e\xac\xf2\xa2\xd8\xac\xb6\xdb\x24\xc9\x32\x94\x8d\xef\x61\x4a\xa1\x27\x67\x5e\x02\x5c\x43\x61\xcf\x3d\xac\x61\xd4\xad\x8c\x30\x39\x70\x80\xf2\x48\x5a\xc1\x0d\x06\x6b\xc8\x10\xa4\x8a\x4d\x74\xe0\xd9\xa2\xe2\x96\xf7\x64\xa2\x7d\x92\x3c\x91\x5b\x04\x1e\x8b\xcb\xd1\x67\x1f\x7c\x37\x74\x4b\x7c\xbb\xf7\xa7\xb7\x6f\x6e\xf1\x3b\x49\x00\x20\xcb\xf0\x20\x8e\x5a\xfc\x22\xf5\x11\x1e\xb5\x28\x08\xca\x35\x2b\x07\xc7\x30\x99\x78\xd6\x05\xa6\xe1\x90\x57\x9d\x0f\x90\xdd\x0f\x76\x36\x49\xb4\x6c\xa0\xf8\x73\xc3\xf5\x12\xaf\xfe\x5d\x44\x3a\x5d\x99\xfd\x8e\xca\x47\x52\x5e\x90\x73\xb6\x44\x3e\x58\x93\x3b\x27\x43\xb0\x48\x84\x73\x65\x19\x76\xa2\x2a\xe3\x35\x10\x7a\xe9\x1f\xab\xe7\xb6\x4e\x2f\x10\x78\x8f\x28\x9f\xce\x1a\xef\xfe\x4b\xf4\x61\x11\xd7\xb7\xbc\x12\x5d\x7a\xfe\x4e\x6d\x5b\x13\xa5\x3d\x7f\x25\x6b\x6e\xff\x1a\xc6\xba\xbb\xc3\x91\x82\x77\x8b\x9b\x4f\x32\xb4\x15\x82\xd8\x85\xfb\x19\x75\x7f\x7e\x0f\x13\xdf\xcd\xac\xf1\x38\xaf\x83\x4f\xec\x06\xe3\x27\xb3\x3f\x9b\x24\xed\xd9\x5e\x46\x18\xd1\x78\xc3\x3f\x07\xaf\xdc\x71\xb0\x6b\x31\x5f\x3c\x1e\xff\x04\x00\x00\xff\xff\x40\xe4\x7d\xfd\x9d\x02\x00\x00" func idtablestakingAdminChange_del_minimumsCdcBytes() ([]byte, error) { return bindataRead( @@ -2039,11 +2000,11 @@ func idtablestakingAdminChange_del_minimumsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_del_minimums.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xc8, 0x3f, 0x11, 0x11, 0x9f, 0xf0, 0xb8, 0x71, 0xbf, 0x48, 0xf0, 0x40, 0xd5, 0x29, 0xf3, 0x4e, 0xeb, 0xa2, 0x2c, 0xea, 0xa8, 0xad, 0x9e, 0x76, 0x65, 0x5f, 0xb6, 0xaf, 0x82, 0x71, 0x6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xc7, 0x8e, 0xf0, 0x6d, 0x55, 0xc2, 0xe2, 0xb7, 0x54, 0xf0, 0x39, 0x30, 0x8f, 0x8f, 0x12, 0xf2, 0x7e, 0xcf, 0xf7, 0x67, 0x4b, 0x8, 0x13, 0x23, 0x2, 0x72, 0x73, 0xcd, 0x73, 0xe9, 0x75}} return a, nil } -var _idtablestakingAdminChange_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x4c\x41\x22\x50\x4a\x11\x55\x43\xda\x10\x30\xb4\x50\xf2\xa7\x97\x90\xc3\x78\x3d\xb2\xb6\x95\x76\xd5\xdd\x51\x1c\x30\xfe\xee\x65\x57\x92\xab\xd4\xc9\x5c\x84\xb4\xb3\xef\xfd\x66\x9e\x74\xdb\x59\x27\xb8\x6e\xec\x6e\x75\x75\x47\xeb\x86\x6f\x85\x7e\x6b\xb3\x45\xe5\x6c\x8b\xc5\xe9\xc1\x22\x49\xf2\x1c\x77\xb5\xf6\x10\x47\xc6\x93\x12\x6d\x0d\x54\x4d\x66\xcb\x1e\x52\x33\xfc\x28\xd1\x6a\xd3\xb7\x7d\xeb\x51\x59\x07\x63\x37\x0c\xdb\xb1\x23\xb1\xce\x27\xc9\xec\x72\x6a\x78\xf7\x5d\x1b\x1d\x7a\x0b\x3c\xdc\x5f\xeb\xe7\x0f\xef\x1f\x97\xd8\x27\x09\x00\xe4\x39\xbe\x59\x45\x0d\x9e\xc8\xe9\x40\x12\xf5\x08\x8e\x2b\x76\x6c\x14\x43\x6c\xf4\x5d\x5d\x21\x92\xe2\x72\xd3\x6a\x03\xbb\xfe\xc5\x4a\xa2\x44\xc3\x02\x0a\x1f\x6f\xb8\x2a\x70\x76\x3a\x55\x16\xaf\x0c\x7e\x9d\xe3\x8e\x1c\xa7\xa4\x94\x14\xa0\x5e\xea\xf4\x8b\x75\xce\xee\x7e\x52\xd3\xf3\x12\x67\x97\x4a\xd9\xde\x48\x00\xc4\x58\x79\x8e\x75\xec\x79\x8d\x8b\xfe\xc7\x09\xe5\xb9\xa9\xb2\x89\x09\x25\x82\x5b\xe6\xc5\x3a\xda\x72\x36\x68\x7d\x7a\x13\xf4\x73\x1a\xe2\x29\x5e\xc9\x2d\x1b\x9f\xb1\xed\x76\x90\xfb\x41\x52\x2f\x8f\xc6\xa1\x2e\x2e\xd0\x91\xd1\x2a\x5d\x7c\xb5\x7d\xb3\x81\xb1\x32\xf1\xbf\xa0\x9f\x92\x8c\x9c\x8b\x41\xe3\x30\x6c\x89\x9f\x59\xf5\xc2\xb3\x1d\x84\x25\xb7\xc7\x18\xf7\xf7\x2b\x23\x1f\x0b\x0c\x69\x1e\x50\x62\x7f\x38\xb6\x3e\x91\x83\x2e\x10\x5b\x50\xe2\xfc\x78\x10\x92\x0d\xcb\xd2\x06\xb3\x9f\x62\x66\x12\x6a\x32\x79\xd0\x8f\x28\xc3\xdb\x8b\x53\x8d\x12\x1a\xef\x06\xf1\xf4\xfc\xdf\xe0\x23\xf8\xc9\xf2\x33\xcf\x32\x3a\x85\xe5\xf1\x0d\xff\xe9\xb5\xe3\x96\x8d\xf8\x74\xf2\x9a\x66\x3f\xfc\x0d\x00\x00\xff\xff\x0c\xd9\xc0\xe7\x32\x03\x00\x00" +var _idtablestakingAdminChange_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x51\xdd\x6a\xdb\x30\x14\xbe\xf7\x53\x7c\xf4\x62\xb8\x0c\xec\x15\xc6\x18\x66\x5e\xf1\xe6\x14\x0c\xdd\x18\x89\x7b\x31\x4a\x2f\x14\xe5\x38\xd6\x66\x4b\x9e\x74\xdc\x04\x42\xde\x7d\xc8\x3f\x59\xba\xb6\xe7\xc6\x58\x3a\xfa\x7e\x55\xdb\x19\xcb\xb8\x69\xcc\xae\xc8\x4b\xb1\x6e\x68\xc5\xe2\xb7\xd2\x5b\x54\xd6\xb4\x78\xb7\x2f\xf2\xc5\xf7\xb2\x28\x7f\x96\xd9\x97\xdb\x45\x96\xe7\xcb\xc5\x6a\x15\x04\x71\x8c\xb2\x56\x0e\x6c\x85\x76\x42\xb2\x32\x1a\xb2\x16\x7a\x4b\x0e\x5c\x13\xdc\x04\xd2\x2a\xdd\xb7\x7d\xeb\x50\x19\x0b\x6d\x36\x04\xd3\x91\x15\x6c\xac\x0b\x82\xb3\xc7\xa1\xa6\xdd\x37\xa5\x95\xdf\x4d\x70\x7f\x77\xa3\xf6\x1f\xde\x3f\x5c\xe2\x10\x04\x00\x10\xc7\xb8\x35\x52\x34\x78\x14\x56\x79\x91\x03\x9e\x80\xa5\x8a\x2c\x69\x49\x60\x33\xf0\x16\x39\x06\x13\xc8\x36\xad\xd2\x30\xeb\x5f\x24\x79\x80\x68\x88\x21\xfc\xe1\x92\xaa\x04\x6f\x9e\x1b\x8e\x86\x27\x23\x5f\x67\xa9\x13\x96\x42\x21\x25\x27\xc8\x7a\xae\x33\x29\x4d\xaf\xd9\x2b\xc2\x34\x71\x8c\xb5\xb1\xd6\xec\x5e\x12\x22\xfe\xe7\xf7\xe3\xa8\xa9\xa2\x59\x04\x52\x78\xf8\x68\xc4\xf8\xf4\xaa\xa2\xcf\xa1\x6f\x22\x79\xa1\xa2\x68\xfa\x0e\x6b\x2b\x36\x56\x6c\xe9\x87\xe0\xfa\xf2\x44\xe8\xe7\xfa\x1a\x9d\xd0\x4a\x86\x17\x5f\x4d\xdf\x6c\xa0\x0d\xcf\xba\x9f\xa8\x9e\x2b\x1b\xf4\x5d\x8c\x18\xc7\x31\x0e\xda\x93\xec\x99\xce\xbc\xfb\x34\xdb\x53\x5f\x87\xbb\x42\xf3\xc7\x04\x63\x6d\x47\xa4\x38\x1c\x4f\xab\x8f\xc2\x42\x25\x18\x56\x90\xe2\xea\x74\xe1\x2b\xf4\x21\x29\x8d\xb3\xf6\xcf\x48\xfc\xcc\x24\xf7\xea\x01\xa9\xff\x7b\x72\xab\x90\x42\xe1\xed\x08\x1e\x5e\xfd\x33\x3e\x09\x7f\x16\x7a\xe4\x88\x27\x26\x1f\x1e\x2d\xe9\x4f\xaf\x2c\xb5\xa4\xd9\x85\x33\xd7\xec\xfd\xf8\x37\x00\x00\xff\xff\x7a\x62\x5e\x37\x1d\x03\x00\x00" func idtablestakingAdminChange_minimumsCdcBytes() ([]byte, error) { return bindataRead( @@ -2059,11 +2020,11 @@ func idtablestakingAdminChange_minimumsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_minimums.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0xc4, 0xf5, 0xcf, 0xc4, 0x9, 0xda, 0xde, 0x4, 0x25, 0x88, 0xdb, 0xca, 0x1a, 0x54, 0x9, 0x1f, 0x68, 0x91, 0x8, 0x74, 0xa8, 0x6, 0x87, 0x54, 0x36, 0x2, 0x68, 0x3f, 0x5, 0x4f, 0x3d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0x43, 0x5f, 0x10, 0x9, 0x12, 0xd6, 0x29, 0xcd, 0x0, 0xf9, 0x15, 0xc6, 0xbf, 0xf6, 0xbd, 0x21, 0x40, 0xc9, 0x80, 0x4, 0x22, 0x3a, 0x3c, 0x24, 0xd3, 0x7e, 0x36, 0xea, 0x6, 0x28, 0x33}} return a, nil } -var _idtablestakingAdminChange_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x8f\xd3\x40\x0c\x85\xef\xf9\x15\x4f\x39\xac\xd2\x4b\x72\x41\x1c\x22\x60\xb5\xb0\xac\xb4\x12\x87\x8a\x16\xee\xee\xd4\x69\x86\x4e\xc7\xd1\xc4\x21\xad\x50\xff\x3b\x9a\x49\x0b\x2d\x2d\xbe\x44\x9a\xd8\xef\x7d\xf6\xb3\xbb\x4e\x82\xe2\xc5\xc9\xf8\xfa\xbc\xa4\x95\xe3\x85\xd2\xd6\xfa\x0d\x9a\x20\x3b\xe4\xb7\x3f\xf2\x2c\xab\x2a\x2c\x5b\xdb\x43\x03\xf9\x9e\x8c\x5a\xf1\x30\x2d\xf9\x0d\xf7\xd0\x96\xd1\x38\x19\xa1\xb2\x65\x8f\x91\x79\xeb\x0e\xe8\xe8\x20\x83\x66\xd9\xc5\x44\xe1\x79\x9c\xa7\xe7\x1a\xdf\x5e\xec\xfe\xed\x9b\x19\x7e\x65\x19\x00\x54\x15\xbe\x88\x21\x87\x9f\x14\x6c\xb4\x46\x23\x01\x84\xc0\x0d\x07\xf6\x86\xa1\x92\x8c\x5e\x9f\x91\xd0\xf0\xb4\xde\x59\x0f\x59\xfd\x60\xa3\x49\xc2\xb1\x82\xe2\xe3\x57\x6e\x6a\x3c\xdc\xae\x51\xa6\x91\xc9\xaf\x0b\xdc\x51\xe0\x82\x8c\xd1\x1a\x34\x68\x5b\x7c\x94\x10\x64\xfc\x4e\x6e\xe0\x19\x1e\x9e\x8c\x91\xc1\x6b\x04\xc4\xa9\xaa\x0a\xab\xd4\x73\x8f\x8b\xfe\xc5\x89\xd5\xb3\x6b\xca\x33\x13\xde\x23\xba\x95\xbd\x4a\xa0\x0d\x97\x93\xd6\xbb\xff\x82\x7e\x28\x62\x1e\xf5\x9d\xa0\xca\xd3\x37\xb5\x2d\x26\xb9\x39\x69\x3b\xfb\x63\x1c\xeb\xf1\x11\x1d\x79\x6b\x8a\xfc\x93\x0c\x6e\x0d\x2f\x7a\xe6\xbf\xa2\xef\x4f\xe9\x27\xce\x7c\xd2\x38\x4e\x57\xe2\x3d\x9b\x41\xf9\xe2\x06\x57\x1b\x95\x3d\xeb\xe7\x4e\x4c\xbb\x8c\xc1\x4f\xc9\xfe\xcd\xf8\xac\x74\xfc\x1d\x00\x00\xff\xff\xbc\x8e\x06\xa6\x71\x02\x00\x00" +var _idtablestakingAdminChange_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6f\xd4\x40\x0c\x85\xef\xf9\x15\x4f\x3d\xa0\xed\x25\xe1\x80\x38\x44\x40\x15\x48\x2a\x45\xaa\x50\xd5\x84\x03\x47\xef\xd4\xd9\x0c\x3b\x3b\x8e\x26\x0e\xd9\x0a\xf5\xbf\xa3\x49\x76\xa1\x85\xd6\x97\x91\xac\xf1\x7b\x9f\xfd\xec\x61\x90\xa0\xb8\x76\x32\xd7\x65\x4b\x5b\xc7\x8d\xd2\xde\xfa\x1d\xba\x20\x07\xbc\x3d\xd6\x65\xf5\xb5\xad\xdb\xef\x6d\xf1\xf9\xa6\x2a\xca\xf2\xae\x6a\x9a\x24\xc9\x32\xb4\xbd\x1d\xa1\x81\xfc\x48\x46\xad\x78\x98\x9e\xfc\x8e\x47\x68\xcf\xe8\x9c\xcc\x50\xd9\xb3\xc7\xcc\xbc\x77\x0f\x18\xe8\x41\x26\x4d\x92\x27\x13\x1b\xcf\xf3\xed\xd2\xce\xf1\xed\xda\x1e\xdf\xbf\xbb\xc4\xaf\x24\x01\x80\x2c\xc3\x8d\x18\x72\xf8\x49\xc1\x46\x2a\x74\x12\x40\x08\xdc\x71\x60\x6f\x18\x2a\x8b\x51\x5d\x62\xa1\x46\x71\x7f\xb0\x1e\xb2\xfd\xc1\x46\x17\x09\xc7\x0a\x8a\xcd\x3b\xee\x72\xbc\xf9\x7f\xc3\x74\x19\x59\xfd\x86\xc0\x03\x05\xde\x90\x31\x9a\xa3\x98\xb4\x2f\x8c\x91\xc9\x6b\x24\xc2\xa9\xb2\x0c\x5b\x09\x41\xe6\x97\x40\xe8\x5f\xff\x58\x23\xbb\x2e\x3d\x43\xe0\x23\xa2\x7c\xba\x6a\x7c\x78\x95\xe8\xd3\x26\x9e\x3e\x7f\x21\x93\xf4\xf4\x2e\xdf\x1a\x95\x40\x3b\xbe\x25\xed\x2f\xff\x18\xc6\xba\xba\xc2\x40\xde\x9a\xcd\xc5\x17\x99\xdc\x3d\xbc\xe8\x99\xfb\x19\xf5\x78\x0a\x7a\xe1\xbb\x58\x35\x1e\xd7\x73\xf0\x91\xcd\xa4\xfc\x64\xf7\x67\x9b\xa4\x23\x6b\x35\x88\xe9\xdb\x98\xf0\x1a\xe1\xdf\x30\xcf\x4a\x8f\xbf\x03\x00\x00\xff\xff\x2a\x3e\x38\xa0\x5c\x02\x00\x00" func idtablestakingAdminChange_payoutCdcBytes() ([]byte, error) { return bindataRead( @@ -2079,11 +2040,11 @@ func idtablestakingAdminChange_payoutCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_payout.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf1, 0x15, 0x65, 0x64, 0x1, 0xa4, 0xaa, 0xc1, 0x1e, 0x57, 0x8c, 0x4f, 0xa7, 0xc2, 0xec, 0xde, 0xbc, 0x6d, 0xad, 0x7a, 0xa, 0xf2, 0x6a, 0x7e, 0xb5, 0x8a, 0x77, 0x9a, 0x2e, 0x9e, 0x83, 0xe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2f, 0x71, 0xde, 0xb0, 0x70, 0x7b, 0x4e, 0xe0, 0xb6, 0xbf, 0x9, 0x1, 0xfd, 0xd4, 0x85, 0x6b, 0xc0, 0x17, 0x99, 0x82, 0x25, 0x8, 0x5a, 0x86, 0xf6, 0xee, 0xa6, 0xa2, 0xad, 0xd0, 0x2a, 0x66}} return a, nil } -var _idtablestakingAdminEnd_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\xcf\x6b\xdb\x4e\x10\xc5\xef\xfa\x2b\x1e\x3e\x04\x19\xbe\x48\xf0\x3d\x8a\xb6\x21\x3f\x5a\x30\xe4\x50\x6a\xd3\x6b\x58\xad\x46\xd6\xd6\xf2\x8c\xd8\x1d\x59\x2d\xc1\xff\x7b\x59\x49\x76\xe2\x26\xde\x8b\x40\x3b\xef\xbd\x8f\x66\x46\x6e\xdf\x89\x57\x7c\x6b\x65\x58\x3d\x6e\x4c\xd9\xd2\x5a\xcd\xce\xf1\x16\xb5\x97\x3d\x16\xef\x2f\x16\x49\x92\xe7\xd8\x34\x2e\x40\xbd\xe1\x60\xac\x3a\x61\x50\x5d\x93\x55\x77\xa0\xf6\x0f\x88\xab\x00\x6d\x08\xd4\x89\x6d\x60\xb8\x42\x50\xe3\x35\xc0\x80\x69\x80\x30\x65\x49\x9e\x47\x9f\x95\xc2\xca\xbe\x74\x4c\xb3\x82\xab\xe7\x30\x13\x44\xdd\x5e\x0e\xf4\xac\xb2\x23\xbe\x88\x0b\x51\x3b\x34\xce\x36\xaf\x61\x67\x59\x3f\x96\xfc\x37\xdf\x7b\xaa\xfb\x58\xc2\x52\x51\xc0\xe0\xb4\x81\xe3\xd0\xd7\xb5\xb3\x8e\x58\x47\x19\x45\xbb\x53\x5c\xc0\x9c\x57\x92\x0e\x44\x8c\xb2\xb7\x3b\xd2\x90\x24\x6f\x00\x52\x57\x85\x02\x2f\x6b\xf5\x8e\xb7\x05\xee\x45\xda\xe3\x12\x2f\x49\x02\x00\x79\x8e\x27\xb1\xa6\xc5\xc1\x78\x17\x5b\x87\x5a\x3c\x4c\x44\x21\x4f\x6c\x09\x2a\x23\xf2\xea\x11\x63\x6b\x71\x57\xed\x1d\x43\xca\x5f\x64\x75\xb4\x68\x49\x61\xe2\xcb\x1f\x54\x17\xb8\x79\x3f\x86\x6c\x94\x4c\x79\x9d\xa7\xce\x78\x4a\x8d\xb5\x5a\xc0\xf4\xda\xa4\xf7\xe2\xbd\x0c\x3f\x4d\xdb\xd3\x12\x37\x77\xd6\x4a\xcf\x1a\x01\x31\x9f\x3c\x47\x39\xd6\x7c\xc4\x65\xfe\xc5\x89\x27\x50\x5b\x67\x27\x26\x7c\x46\x4c\xcb\x82\x8a\x37\x5b\xca\x26\xaf\x4f\x57\x41\xbf\xa4\x71\x9f\x8a\x0f\x16\x2d\x9b\x9f\x63\xd9\x7a\xb2\xfb\x6e\xb4\x59\x9e\x83\xe3\xb9\xbd\x45\x67\xd8\xd9\x74\xf1\x20\x7d\x5b\x81\x45\x4f\xfc\x17\xf4\xe7\x25\x88\x6e\x8b\xc9\xe3\x38\x75\x89\x7e\x93\xed\x95\xde\xf4\xe0\xe2\x8b\xb2\x40\x7a\xd7\x75\x5e\x0e\x54\x3d\xb9\xa0\x71\xc2\xaf\x0c\x57\x34\xc4\xd5\x09\x7f\xda\xba\x74\x99\x5c\x29\x8d\xab\xb5\x19\x17\x2b\x65\x1a\xbe\xc6\x3f\xe3\x21\x0e\x85\x7c\x81\xff\x4f\xa0\xc7\xe4\x6f\x00\x00\x00\xff\xff\x8d\x3c\x5c\x65\x91\x03\x00\x00" +var _idtablestakingAdminEnd_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x41\x6f\x9b\x40\x10\x85\xef\xfc\x8a\xa7\x1c\x2a\x22\x55\x50\xf5\x88\xda\x46\x24\x76\x25\x4b\x56\x55\xc5\x5c\x7a\x8a\x96\x65\x30\x5b\xe3\x1d\xb4\x3b\x98\x54\x91\xff\x7b\xb5\x18\x9c\xb8\x8d\xf7\x82\x04\xf3\xde\xfb\x76\x66\x30\xfb\x8e\x9d\xe0\x7b\xcb\xc3\x6a\x51\xa8\xb2\xa5\x8d\xa8\x9d\xb1\x5b\xd4\x8e\xf7\xf8\xf4\xbc\x5a\x2c\x7f\x14\xab\xe2\x57\x91\xdf\xaf\x97\xf9\x62\xf1\xb8\xdc\x6c\xa2\x28\x4d\x51\x34\xc6\x43\x9c\xb2\x5e\x69\x31\x6c\x41\x75\x4d\x5a\xcc\x81\xda\x3f\x20\x5b\x79\x48\x43\xa0\x8e\x75\x03\x65\x2b\x78\x51\x4e\x3c\x14\x2c\x0d\x60\x4b\x49\x94\xa6\xc1\x67\x25\xd0\xbc\x2f\x8d\xa5\x49\x61\xab\x27\x3f\x31\x04\xdd\x9e\x0f\xf4\x24\xbc\x23\x7b\x11\xe7\x83\x76\x68\x8c\x6e\x5e\xc3\xce\xb2\x7e\x2c\xf9\x38\x7d\x77\x54\xf7\xa1\xc4\x72\x45\x1e\x83\x91\x06\xc6\xfa\xbe\xae\x8d\x36\x64\x65\x94\x51\xb0\x9b\xe3\x3c\xa6\xbc\x92\x64\x20\xb2\x28\x7b\xbd\x23\xf1\x51\xf4\x06\x20\x36\x95\xcf\xf0\xb2\x11\x67\xec\x36\xc3\x3d\x73\x7b\xbc\xc5\x4b\x14\x01\x40\x9a\x62\xcd\x5a\xb5\x38\x28\x67\x42\x57\x51\xb3\x83\x0a\x28\xe4\xc8\x6a\x82\xf0\x88\xbc\x5a\x60\xec\x3a\xf2\x6a\x6f\x2c\xb8\xfc\x4d\x5a\x46\x8b\x96\x04\x2a\xbc\x7c\xa4\x3a\xc3\x87\xff\x27\x94\x8c\x92\x53\x5e\xe7\xa8\x53\x8e\x62\xa5\xb5\x64\xc8\x7b\x69\x72\xad\xb9\xb7\x12\x88\x30\x9d\x34\x45\xc9\xce\xf1\xf0\x1e\x88\xfa\x37\x3f\x1c\x4f\x6d\x9d\xcc\x10\xf8\x8a\x60\x9f\x9c\x3c\xbe\x5c\x25\xfa\x16\x87\xd5\xc9\xde\xd9\xa9\x64\x7a\x8e\x65\x1b\x61\xa7\xb6\xf4\x53\x49\x73\x7b\x0e\x0c\xe7\xee\x0e\x9d\xb2\x46\xc7\x37\x0f\xdc\xb7\x15\x2c\xcb\xcc\x7d\x41\x7d\x9e\x76\x70\xbb\x39\x79\x1c\x4f\xed\xa0\x67\xd2\xbd\xd0\x9b\xbb\x5f\xdc\x24\xf1\x24\x79\xd7\x39\x3e\x50\xb5\x36\x5e\xc2\x28\x5f\x19\xae\x68\xc8\x56\x33\xfe\x69\xbd\xe2\xdb\xe8\x4a\x69\xd8\xa1\x62\xdc\xa0\xd8\xd2\xb0\x0c\xbf\xc0\x43\x18\x06\xb9\x0c\x9f\x67\xd0\x63\xf4\x37\x00\x00\xff\xff\xa5\x82\x19\x7e\x7c\x03\x00\x00" func idtablestakingAdminEnd_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -2099,11 +2060,11 @@ func idtablestakingAdminEnd_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/end_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8a, 0x39, 0xa5, 0x67, 0xa9, 0xac, 0xdd, 0x37, 0xb9, 0xd1, 0xa, 0x19, 0x7d, 0x6a, 0xea, 0xd1, 0xc7, 0x67, 0x66, 0x30, 0x20, 0x98, 0x41, 0x85, 0x6a, 0x3c, 0x10, 0x5, 0x47, 0x5f, 0xc4, 0x20}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0x2e, 0x77, 0x4b, 0xfa, 0x66, 0x71, 0xc4, 0x59, 0x37, 0xe1, 0xf2, 0x5a, 0xec, 0x49, 0x7c, 0x75, 0x9f, 0xe7, 0x85, 0x42, 0x78, 0x76, 0xa5, 0x68, 0x96, 0xcc, 0x5, 0x54, 0xc2, 0xd4, 0x72}} return a, nil } -var _idtablestakingAdminEnd_epoch_change_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x0c\x41\x82\x52\x7a\x10\x6d\x43\xfe\x34\x60\xc8\x21\xd4\x6e\xaf\x61\xb5\x1a\x59\x5b\x4b\x3b\x62\x77\x64\x25\x04\x7f\xf7\xb2\xfa\xe3\x36\x75\xdc\xbd\x08\xb4\x33\xef\xfd\x66\xe7\x99\xa6\x65\x27\xb8\xaf\xb9\x5f\xdd\x6d\x54\x5e\xd3\x5a\xd4\xce\xd8\x2d\x4a\xc7\x0d\x16\xa7\x17\x8b\x28\x4a\x53\x6c\x2a\xe3\x21\x4e\x59\xaf\xb4\x18\xb6\xa0\xb2\x24\x2d\x66\x4f\xf5\x0b\xc8\x16\x1e\x52\x11\xa8\x65\x5d\x41\xd9\x02\x5e\x94\x13\x0f\x05\x4b\x3d\xd8\x52\x12\xa5\x69\xd0\x59\x09\x34\x37\xb9\xb1\x34\x75\xd8\xe2\xc9\x4f\x04\xa1\xaf\xe1\x3d\x3d\x09\xef\xc8\xbe\xb1\xf3\xa1\xb7\xaf\x8c\xae\xfe\x98\x1d\xdb\xba\xa1\xe4\x72\xba\x77\x54\x76\xa1\xc4\x72\x41\x1e\xbd\x91\x0a\xc6\xfa\xae\x2c\x8d\x36\x64\x65\x68\xa3\x20\x37\xdb\x79\x4c\x7e\x39\x49\x4f\x64\x91\x77\x7a\x47\xe2\xa3\xe8\x2f\x80\xd8\x14\x3e\xc3\xeb\x5a\x9c\xb1\xdb\x0c\x37\xcc\xf5\xe1\x32\x0c\xf7\xa8\x5e\xb8\x93\x0c\x3f\xee\xcd\xf3\xa7\x8f\x4b\xbc\x46\x11\x00\xa4\x29\x1e\x58\xab\x1a\x7b\xe5\x4c\x78\x4d\x94\xec\xa0\x02\x1d\x39\xb2\x9a\x20\x3c\x4c\xb1\xba\xc3\xf0\xda\xb8\x2e\x1a\x63\xc1\xf9\x2f\xd2\x32\x48\xd4\x24\x50\xe1\xe7\x77\x2a\x33\x5c\x9c\x6e\x26\x19\x5a\x46\xbf\xd6\x51\xab\x1c\xc5\x4a\x6b\xc9\xa0\x3a\xa9\xe2\x1b\x76\x8e\xfb\x9f\xaa\xee\x68\x89\x8b\x6b\xad\xb9\xb3\x12\x00\x31\x9d\x34\x45\x3e\xd4\xbc\xc7\xa5\xfe\xc5\x09\xc7\x53\x5d\x26\x33\x13\xbe\x20\xb8\x25\x5e\xd8\xa9\x2d\x25\xa3\xd6\xe7\xb3\xa0\x5f\xe3\x10\xb1\xec\x9d\xec\x25\xd3\x77\x28\x5b\x8f\x72\x8f\x4a\xaa\xe5\xd1\x38\x9c\xab\x2b\xb4\xca\x1a\x1d\x2f\x6e\xb9\xab\x0b\x58\x96\x99\xff\x0d\xfd\x31\x17\x41\x6d\x31\x6a\x1c\xc6\x57\xa2\x67\xd2\x9d\xd0\xbc\xa4\x93\x91\x12\x4f\xf2\x2d\x64\x78\x13\x12\x31\xae\x36\x3e\x2e\x79\xf9\x9f\xae\xeb\xb6\x75\xbc\xa7\xe2\xc1\x78\x09\x59\x39\x5b\x4b\xb6\x98\xa7\x1d\x73\x1b\x9f\x2d\x0d\xe1\x1c\x40\x7c\x60\x18\xb8\x6e\xc3\x0e\xc9\x65\xf8\x30\xcf\x75\x88\x7e\x07\x00\x00\xff\xff\x68\xee\x57\x96\xd3\x03\x00\x00" +var _idtablestakingAdminEnd_epoch_change_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\x4f\x6b\xdb\x4e\x10\xbd\xeb\x53\x3c\x72\xf8\xa1\x40\x90\x7e\x94\xd2\x83\x68\x1b\x94\xd8\x01\x43\x28\x21\x56\x0f\x3d\x85\xd5\x6a\x14\x6d\x23\xef\x88\xdd\x91\x95\x10\xf2\xdd\xcb\xea\x8f\xdb\x34\x71\xe7\x62\xb0\xe6\xfd\x99\x7d\xcf\xec\x3a\x76\x82\xab\x96\x87\xcd\xaa\x50\x65\x4b\x5b\x51\x0f\xc6\xde\xa3\x76\xbc\xc3\xff\x8f\x9b\xd5\xfa\x5b\xb1\x29\x7e\x14\xf9\xc5\xf5\x3a\x5f\xad\x6e\xd7\xdb\x6d\x14\xa5\x29\x8a\xc6\x78\x88\x53\xd6\x2b\x2d\x86\x2d\xa8\xae\x49\x8b\xd9\x53\xfb\x04\xb2\x95\x87\x34\x04\xea\x58\x37\x50\xb6\x82\x17\xe5\xc4\x43\xc1\xd2\x00\xb6\x94\x44\x69\x1a\x78\x36\x02\xcd\xbb\xd2\x58\x9a\x11\xb6\xba\xf3\xb3\x87\x80\xdb\xf1\x9e\xee\x84\x1f\xc8\xbe\x92\xf3\x01\x3b\x34\x46\x37\xbf\xc5\x0e\xb0\x7e\x5c\x39\x9b\xbf\x3b\xaa\xfb\xb0\x62\xb9\x22\x8f\xc1\x48\x03\x63\x7d\x5f\xd7\x46\x1b\xb2\x32\xc2\x28\xd0\x2d\x72\x1e\xb3\x5e\x49\x32\x10\x59\x94\xbd\x7e\x20\xf1\x51\xf4\x87\x81\xd8\x54\x3e\xc3\xf3\x56\x9c\xb1\xf7\x19\x2e\x98\xdb\x97\xb3\x70\xdc\x8d\x7a\xe2\x5e\x32\x7c\xbf\x32\x8f\x9f\x3e\x9e\xe2\x39\x8a\x00\x20\x4d\x71\xcd\x5a\xb5\xd8\x2b\x67\xc2\x43\xa3\x66\x07\x15\xdc\x91\x23\xab\x09\xc2\xe3\x15\x9b\x15\xc6\x20\x90\x57\x3b\x63\xc1\xe5\x4f\xd2\x32\x52\xb4\x24\x50\xe1\xcf\x5b\xaa\x33\xfc\xf7\x36\xb4\x64\x84\x4c\x7a\x9d\xa3\x4e\x39\x8a\x95\xd6\x92\x21\xef\xa5\xc9\xb5\xe6\xde\x4a\x70\x84\x79\xd2\x14\x25\x3b\xc7\xc3\x7b\x46\xd4\xdf\xfa\x61\x3c\xb5\x75\xb2\x98\xc0\x17\x04\xfa\x64\xe2\xf8\x7c\xd4\xd1\xd7\x38\xb4\x29\x7b\xa7\x66\xc9\xfc\x3b\xae\x6d\x85\x9d\xba\xa7\x1b\x25\xcd\xe9\x41\x30\xcc\xf9\x39\x3a\x65\x8d\x8e\x4f\x2e\xb9\x6f\x2b\x58\x96\xc5\xf7\x2b\xd7\x87\x02\x04\xb6\x93\x89\xe3\x65\x7a\x0e\x7a\x24\xdd\x0b\x2d\x69\xbc\x39\x25\xf1\x24\xeb\x50\xd6\x22\x44\x3f\x65\x18\x1f\xd2\x3c\xfd\x07\x2a\xef\x3a\xc7\x7b\xaa\xae\x8d\x97\x50\x8a\xa3\xbb\x64\xab\xe5\xda\xa9\xa0\xf1\xd1\xd5\xd0\xc2\xd1\x88\x0f\x1e\x46\x5f\x97\x21\x3b\x72\x19\x3e\x2c\x77\xbd\x44\xbf\x02\x00\x00\xff\xff\xd9\x78\x1a\x48\xbe\x03\x00\x00" func idtablestakingAdminEnd_epoch_change_payoutCdcBytes() ([]byte, error) { return bindataRead( @@ -2119,11 +2080,11 @@ func idtablestakingAdminEnd_epoch_change_payoutCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/end_epoch_change_payout.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x3f, 0xf, 0xc8, 0x75, 0x2e, 0x7b, 0xe1, 0x35, 0x4d, 0x36, 0x48, 0x6d, 0x3c, 0xa5, 0x9c, 0x43, 0x74, 0xdf, 0x63, 0xab, 0xba, 0xae, 0x2c, 0xf9, 0xf4, 0xf4, 0xa, 0xb6, 0xd9, 0xbb, 0xb3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1a, 0x52, 0xcb, 0x9a, 0xf4, 0xb3, 0x83, 0x34, 0xe5, 0xe, 0xf1, 0xbb, 0x6d, 0x4c, 0xb8, 0x6e, 0x10, 0x16, 0x8c, 0x33, 0xcc, 0x52, 0xb7, 0x29, 0x5d, 0xbe, 0xa6, 0xbb, 0xe0, 0x87, 0xb7, 0x28}} return a, nil } -var _idtablestakingAdminEnd_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x0f\x1f\x82\x0c\x45\xba\x8b\xb6\xc1\x69\x28\x04\x72\x28\x75\xe8\x7d\xbc\x1a\x59\xdb\xae\x77\xc4\xee\x6c\x54\x08\xfe\xef\x65\x57\x56\x68\xeb\x64\x2e\x02\xcd\xcc\x7b\xdf\xe8\xc9\x9e\x26\x09\x8a\xaf\x4e\xe6\x87\xfb\x27\x3a\x38\xde\x2b\xfd\xb2\xfe\x88\x21\xc8\x09\x9b\xeb\xc6\xa6\xaa\xda\x16\x4f\xa3\x8d\xd0\x40\x3e\x92\x51\x2b\x1e\xec\xfb\x08\x1d\x19\xf1\xb2\x4f\xa9\x34\x3e\x60\x1e\xad\x19\x11\x78\x48\x79\xc4\x4b\xcf\x11\x59\x62\xb6\x3a\xc2\xfa\x98\x86\xc1\x1a\xcb\x5e\xcb\x2a\x57\xd5\x5f\xb2\xb5\xed\x63\x87\x97\xbd\x06\xeb\x8f\x1d\xee\x44\xdc\x79\x8b\x97\xaa\x02\x80\xb6\xc5\xa3\x18\x72\x78\xa6\x60\x33\x21\x06\x09\xa0\x6c\xc5\x81\xbd\x61\xa8\x14\xa4\x87\x7b\x94\x0b\xb0\xeb\x4f\xd6\x43\x0e\x3f\xd9\x68\x91\x70\xac\xa0\xfc\xf2\x3b\x0f\x1d\x6e\xae\xaf\x6d\xca\xca\xe2\x37\x05\x9e\x28\x70\x4d\xc6\x68\x07\x4a\x3a\xd6\x77\x12\x82\xcc\x3f\xc8\x25\xde\xe2\x66\x67\x8c\x24\xaf\x19\x10\x97\x6a\x5b\x1c\xca\xcc\x5b\x5c\xf4\x3f\x4e\xae\xc8\x6e\x68\x56\x26\x7c\x42\x76\x6b\xa2\x4a\xa0\x23\x37\x8b\xd6\xc7\x77\x41\x3f\xd7\x39\xb6\xee\x8d\x3c\x9b\xcb\xb3\x8c\xed\x17\xb9\x6f\xa4\xe3\xf6\xd5\x38\xd7\xed\x2d\x26\xf2\xd6\xd4\x9b\x2f\x92\x5c\x0f\x2f\xba\xf2\xff\x43\xff\x1a\x72\x56\xdb\x2c\x1a\xe7\xe5\x2b\xf1\x6f\x36\x49\x79\x0d\xe9\xea\xa4\x26\xb2\xee\xa6\x29\xc8\x33\xf7\x8f\x36\x6a\x8e\x78\xfb\xde\x2c\xfb\x7e\xe5\x5e\x7e\xa7\x7a\xf5\x3a\xff\x09\x00\x00\xff\xff\x12\x49\x6b\xee\xba\x02\x00\x00" +var _idtablestakingAdminEnd_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x8b\x9c\x40\x10\x85\xef\xfe\x8a\xc7\x1e\x82\x03\x41\x73\x96\x24\x8b\x1b\x27\x20\x0c\x21\xac\x5e\x72\xec\x69\xcb\xb1\x13\xa7\x4b\xba\xcb\x75\x61\x99\xff\x1e\x5a\xc7\x21\xd9\x99\xa9\x8b\xa0\x55\xef\x7d\x55\x4f\x73\x1c\xd8\x09\xbe\xf7\x3c\x95\x45\xad\xf6\x3d\x55\xa2\xfe\x18\x7b\x40\xeb\xf8\x88\x4f\xaf\x65\xb1\xfd\x51\x97\xf5\xaf\x3a\x7f\xda\x6d\xf3\xa2\x78\xde\x56\x55\x14\xa5\x29\xea\xce\x78\x88\x53\xd6\x2b\x2d\x86\x2d\xc8\x36\x1e\xd2\x11\xfc\x59\x41\x8d\xf3\x87\x8f\x98\x3a\xa3\x3b\x38\x6a\xc7\xd0\x62\xb9\x21\x8f\x20\x31\x19\xe9\x60\xac\x1f\xdb\xd6\x68\x43\x56\xe6\x51\x8a\xa2\x7f\x64\x63\xd3\xf8\x0c\x6f\x95\x38\x63\x0f\x19\x9e\x98\xfb\xd3\x06\x6f\x51\x04\x00\x69\x8a\x1d\x6b\xd5\xe3\x45\x39\x13\xe0\xd1\xb2\x83\x0a\x56\xe4\xc8\x6a\x82\xf0\x8c\x54\x16\x98\x97\x43\xde\x1c\x8d\x05\xef\x7f\x93\x96\x59\xa2\x27\x81\x0a\x2f\x9f\xa9\xcd\xf0\xe1\xfa\x10\xc9\x3c\xb2\xf8\x0d\x8e\x06\xe5\x28\x56\x5a\x4b\x86\x7c\x94\x2e\xd7\x9a\x47\x2b\x81\x08\xe7\x4a\x53\xec\xd9\x39\x9e\x6e\x81\xa8\xf7\xfe\xa1\x3c\xf5\x6d\xb2\x42\xe0\x0b\x82\x7c\xb2\x68\x7c\xbe\x4b\xf4\x35\x0e\x09\x65\x37\xa2\x4b\xce\xcf\xb9\xad\x12\x76\xea\x40\x3f\x95\x74\x9b\x8b\x61\xa8\xc7\x47\x0c\xca\x1a\x1d\x3f\x7c\xe3\xb1\x6f\x60\x59\x56\xee\xff\xa8\x2f\x69\x06\xb5\x87\x45\xe3\xb4\x9c\x83\x5e\x49\x8f\x42\x6b\x1a\x57\xab\x24\x9e\x24\x1f\x06\xc7\x2f\xd4\xec\x8c\x97\x90\xe5\xe6\x5e\x2f\xd9\x66\xe5\x5e\xfe\x9b\x78\xf5\x3a\xfd\x0d\x00\x00\xff\xff\x5c\x5c\x6f\xbd\xa5\x02\x00\x00" func idtablestakingAdminEnd_stakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2139,11 +2100,11 @@ func idtablestakingAdminEnd_stakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/end_staking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0xb3, 0xec, 0x2e, 0x69, 0xa9, 0x17, 0x98, 0x82, 0xc1, 0xe2, 0x4f, 0xf2, 0xd4, 0x82, 0xe9, 0x56, 0x9d, 0xb1, 0xdc, 0xbe, 0x9a, 0xd7, 0x2d, 0x12, 0x75, 0x92, 0x64, 0x6, 0x1d, 0x90, 0x10}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0xd, 0xea, 0x6, 0x3d, 0x16, 0x7, 0x5e, 0x7e, 0xb8, 0x24, 0x9e, 0xe2, 0x6a, 0x6d, 0x4d, 0xf2, 0x73, 0x20, 0x5, 0x38, 0xd9, 0xac, 0xef, 0x64, 0x7d, 0xcf, 0x59, 0x67, 0x35, 0xaf, 0xd5}} return a, nil } -var _idtablestakingAdminMove_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\xab\x9b\x40\x14\x85\xf7\xfe\x8a\x83\x8b\x87\xd9\x28\x74\x29\x6d\x1f\xaf\x49\x0b\x81\x2e\x4a\x13\xba\xbf\x4e\xae\xd1\x46\xe7\xca\xcc\x35\x16\x42\xfe\x7b\x99\x31\x29\x49\x93\x37\x1b\x41\x8f\xe7\x7c\x73\x4e\xdb\x0f\xe2\x14\xdf\x3a\x99\xd6\xab\x2d\x55\x1d\x6f\x94\x0e\xad\xdd\xa3\x76\xd2\x23\x7d\xfc\x90\x26\x49\x51\x60\xdb\xb4\x1e\xea\xc8\x7a\x32\xda\x8a\x45\x2f\x47\xf6\x50\x39\xb0\xf5\xa8\x58\x27\x66\x8b\x6a\x34\x07\x56\x9f\x24\xb7\xca\x53\x92\x00\x40\x51\xe0\xbb\x18\xea\x70\x24\xd7\x06\x7f\xd4\xe2\x40\x70\x5c\xb3\x63\x6b\x18\x2a\xd0\x86\xb1\x5e\x21\xe6\xe3\x6d\xd7\xb7\x16\x52\xfd\x66\xa3\xd1\xa2\x63\x05\x85\x97\x3f\xb9\x2e\xf1\xf2\xc8\x9a\xc7\x5f\xe6\xbc\xc1\xf1\x40\x8e\x33\x32\x46\x4b\xd0\xa8\x4d\xf6\x45\x9c\x93\xe9\x17\x75\x23\x2f\xf0\xf2\x66\x8c\x8c\x56\x17\x38\x45\xfd\x85\xb1\x8a\x9a\x67\x5c\xf4\x3f\x4e\x38\x9e\xbb\x3a\xbf\x32\xe1\x13\x42\x5a\xee\x55\x1c\xed\x39\x9f\xbd\x3e\xbe\x0b\xfa\x39\x0b\xa5\x97\x4f\xd6\xc8\x2f\xcf\x28\xdb\xcc\x76\x3f\x48\x9b\xc5\xbf\xe0\x70\x5e\x5f\x31\x90\x6d\x4d\x96\x2e\x65\xec\x76\xb0\xa2\x57\xfe\x3b\x7a\x7f\x99\x38\x72\xa6\xb3\xc7\x79\x6e\x89\xff\xb0\x19\x95\x6f\x3a\xb8\xbb\x51\x1e\x66\xde\xc6\x91\x33\xcb\xd3\xd7\x41\x4c\xb3\x0c\xad\xb1\x2b\xf1\xe1\xea\x74\xfe\x1b\x00\x00\xff\xff\x57\x3b\x5b\xb4\x56\x02\x00\x00" +var _idtablestakingAdminMove_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\xeb\x9b\x40\x10\xc5\xef\x7e\x8a\xc7\xff\x50\xcc\x45\x4b\x8f\xd2\x36\xd8\x68\x41\x08\xa5\x44\x2f\x3d\xae\x9b\x31\xda\xe8\x8e\xac\x63\x0c\x84\x7c\xf7\xb2\x9a\x94\xa4\xcd\x7f\x2e\x82\xcc\xbe\xf7\x9b\xf7\x9a\xae\x67\x2b\xf8\xde\xf2\x94\x25\x85\x2a\x5b\xca\x45\x1d\x1b\x73\x40\x65\xb9\xc3\xc7\x73\x96\xa4\x3f\x8a\xac\xf8\x55\xc4\xdf\xb6\x69\x9c\x24\xbb\x34\xcf\x3d\x2f\x0c\x51\xd4\xcd\x00\xb1\xca\x0c\x4a\x4b\xc3\x06\x1d\x9f\x68\x80\xf0\x91\xcc\x80\x92\x64\x22\x32\x28\x47\x7d\x24\x19\x3c\xef\x71\xf3\xe2\x79\x00\x10\x86\xd8\xb2\x56\x2d\x4e\xca\x36\xce\x1a\x15\x5b\x28\x58\xaa\xc8\x92\xd1\x04\x61\x48\x4d\xc8\x12\xcc\x68\x88\xf7\x5d\x63\xc0\xe5\x6f\xd2\x32\x4b\xb4\x24\x50\xee\xe7\x8e\xaa\x08\x1f\xfe\x3f\x23\x98\x9f\x2c\x7e\xbd\xa5\x5e\x59\xf2\x95\xd6\x12\x21\x1e\xa5\x8e\xb5\xe6\xd1\xc8\x0a\x97\x79\xe1\x06\x55\xb2\xb5\x3c\xbd\x02\x51\xff\xfa\xbb\x19\xa8\xad\x82\x3b\x04\xbe\xc0\xc9\x07\x8b\xc6\xe7\x77\x89\xbe\xfa\x2e\xdf\xe8\x45\xf0\xc1\xed\x3b\xaf\xe5\xc2\x56\x1d\xe8\xa7\x92\x7a\xf5\xd7\xd0\xcd\x7a\x8d\x5e\x99\x46\xfb\x6f\x1b\x1e\xdb\x3d\x0c\xcb\x9d\xfb\x89\x7a\xb8\xb5\x39\xf3\xbd\x2d\x1a\xd7\x25\x0e\x3a\x93\x1e\x85\x1e\x6e\x7f\xba\x24\x70\x7d\x16\x73\x9b\xbe\xa1\x29\xed\x59\xd7\x1b\x97\x16\xd9\x08\x9f\xee\x4a\xd7\x3f\x01\x00\x00\xff\xff\x77\xf2\xa1\x3f\x41\x02\x00\x00" func idtablestakingAdminMove_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2159,11 +2120,11 @@ func idtablestakingAdminMove_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/move_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0x12, 0x76, 0x16, 0xfb, 0xc4, 0x12, 0x4, 0xa9, 0x4, 0x1, 0x23, 0xe9, 0x22, 0x31, 0x3c, 0x95, 0x93, 0x2e, 0x67, 0x21, 0x9a, 0xcb, 0xeb, 0x32, 0x88, 0x84, 0x4b, 0x2c, 0x36, 0x3e, 0xea}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0xad, 0xa9, 0xd9, 0x5a, 0x58, 0xda, 0xa3, 0xa5, 0xb6, 0xdc, 0xd5, 0x51, 0x86, 0xea, 0xf2, 0xf2, 0x5, 0x4d, 0x71, 0x5d, 0x15, 0x82, 0xd9, 0x75, 0x7e, 0x9b, 0xf3, 0x4a, 0xb1, 0xf6, 0x30}} return a, nil } -var _idtablestakingAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x0f\x1f\x82\x04\x45\xa2\x57\xd1\x34\xa4\x49\x0b\x81\x1e\x4a\x1c\x7a\x1f\xaf\x46\x91\x9a\xd5\x8e\x98\x1d\xd5\x35\x21\xff\xbd\xac\x64\x95\xa4\x76\xf6\x22\x90\xde\xbe\xf7\xe9\xcd\xf4\xc3\x28\x6a\xf8\xe6\x65\x7f\x77\xfb\x40\x3b\xcf\x5b\xa3\xa7\x3e\x3c\xa2\x55\x19\xb0\x39\xfd\xb0\xc9\xb2\xaa\xc2\x43\xd7\x47\x98\x52\x88\xe4\xac\x97\x80\x91\x0e\x11\xca\x7b\xd2\x26\xc2\x04\xe4\x3d\xac\x63\x44\xa3\x27\x6e\x10\xa4\xe1\x98\x65\xaf\x6f\x3c\x67\x19\x00\x54\x15\xbe\x8b\x23\x8f\xdf\xa4\x7d\xca\x41\x2b\x0a\x82\x72\xcb\xca\xc1\x71\x72\x4b\x4e\x77\xb7\x98\x39\x70\xdd\x0c\x7d\x80\xec\x7e\xb1\xb3\xd9\xc2\xb3\x81\xd2\xcb\x7b\x6e\x6b\x5c\x9c\x32\x97\xf3\x95\x25\x6f\x54\x1e\x49\x39\x27\xe7\xac\x06\x4d\xd6\xe5\x5f\x44\x55\xf6\x3f\xc9\x4f\x5c\xe0\xe2\xda\x39\x99\x82\x15\x78\x9e\xf5\x47\xc6\xdd\xac\x39\xc7\x45\xff\xe3\xa4\x13\xd9\xb7\xe5\xca\x84\x4b\xa4\xb4\x32\x9a\x28\x3d\x72\xb9\x78\x7d\x7a\x17\xf4\x73\x9e\xca\xaf\xcf\x4c\xa5\x3c\x3e\x67\xd9\x76\xb1\xfb\x41\xd6\x15\xff\x82\xd3\xb9\xba\xc2\x48\xa1\x77\xf9\xe6\x46\x26\x9f\xca\xb7\x95\xff\x0d\x7d\x3c\x8e\x7a\xe6\xdc\x2c\x1e\x2f\x4b\x4b\xfc\x87\xdd\x64\xfc\xaa\x83\x54\x72\x9c\x86\x81\xf4\x80\xcb\xb7\xff\x57\x3a\xf2\x6e\xf2\x64\x7c\xbf\x2c\x40\x5e\x9c\x2f\xa2\x1c\xe9\xb0\x4a\x5a\xd1\xaf\xa3\xb8\xee\x26\x95\xcd\x5a\xe3\xe3\x87\x75\x7f\xb6\x4b\x4c\xbd\xe6\xad\x64\x2f\x7f\x03\x00\x00\xff\xff\xca\xd7\x91\xe9\xae\x02\x00\x00" +var _idtablestakingAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x8f\x1c\x8a\x0d\x45\x6e\xaf\xa2\x69\x50\x23\x17\x0c\xa1\x14\x4b\x97\x1e\xc7\xab\x51\xa4\x66\xb5\x2b\x66\x47\x75\x4c\xc8\x7f\x2f\x2b\x59\x25\x6e\xdd\xb9\x08\xc4\xcc\x7b\xdf\xbc\xd9\xae\x1f\xbc\x28\xbe\x5a\x7f\xdc\x15\x15\x1d\x2c\x97\x4a\x4f\x9d\x7b\x44\x23\xbe\xc7\x87\xe7\x5d\xb1\xfd\x56\xed\xaa\x1f\x55\xfe\xe5\x61\x9b\x17\xc5\x7e\x5b\x96\x49\xb2\xd9\xa0\x6a\xbb\x00\x15\x72\x81\x8c\x76\xde\x61\xa0\x53\x80\xf0\x91\xa4\x0e\x50\x0f\xb2\x16\xda\x32\x82\xd2\x13\xd7\x70\xbe\xe6\x90\x24\x6f\x27\x5e\x92\x04\x00\x36\x1b\x3c\x78\x43\x16\xbf\x48\xba\x88\x80\xc6\x0b\x08\xc2\x0d\x0b\x3b\xc3\x51\x2d\x2a\xed\x0a\x4c\x88\xc8\xeb\xbe\x73\xf0\x87\x9f\x6c\x74\x92\xb0\xac\xa0\xf8\x73\xcf\x4d\x86\x77\xff\xae\x93\x4e\x23\xb3\xdf\x20\x3c\x90\xf0\x8a\x8c\xd1\x0c\xf9\xa8\x6d\x6e\x8c\x1f\x9d\xae\xf1\x32\x35\x9c\xa1\x0e\x5e\xc4\x1f\xaf\x81\xd0\xdf\xfe\xb1\x02\xdb\x26\x5d\x20\x70\x8b\x28\x9f\xce\x1a\x9f\xfe\x4b\xf4\x79\x15\x73\xce\xae\x1c\x20\x3d\x7f\xa7\xb6\x52\xbd\xd0\x23\x7f\x27\x6d\xd7\x7f\x0c\x63\xdd\xdd\x61\x20\xd7\x99\xd5\xcd\xbd\x1f\x6d\x4c\x59\x17\xee\x0b\xea\x70\xbe\xea\xc4\x77\x33\x6b\xbc\xce\x71\xf0\x33\x9b\x51\xf9\xcd\xee\x31\xcd\x30\xf6\x3d\xc9\x09\xb7\x97\x7b\xa5\x86\xac\x19\x2d\x29\xef\xe7\x4b\xaf\xd6\xd7\x03\x48\x07\x3a\x2d\x2d\x8d\x97\xed\xe0\x4d\x7b\x1f\x43\x66\xc9\xf0\xf1\xfd\xf2\x50\xca\xd9\x26\x5b\xfc\x16\xb2\xd7\xdf\x01\x00\x00\xff\xff\xdb\x4f\x91\x9f\x99\x02\x00\x00" func idtablestakingAdminPay_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -2179,11 +2140,11 @@ func idtablestakingAdminPay_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/pay_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x72, 0xa1, 0x77, 0xd1, 0xb0, 0xeb, 0xf3, 0x3e, 0x3d, 0x4e, 0x76, 0xb5, 0xee, 0x90, 0xec, 0xf4, 0xd4, 0xa5, 0x89, 0xb1, 0xe2, 0xc2, 0xf1, 0x5b, 0x49, 0x6b, 0x10, 0x62, 0xf2, 0x54, 0xaf, 0x4a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x58, 0xb8, 0x76, 0x47, 0x5f, 0xe1, 0x22, 0x4e, 0x3c, 0x15, 0x6d, 0xa6, 0xea, 0x98, 0x7f, 0xf6, 0x3e, 0x5, 0x2f, 0x90, 0x61, 0xb2, 0x6c, 0xce, 0x7c, 0xb9, 0x8a, 0x26, 0x93, 0x47, 0xdb, 0x72}} return a, nil } -var _idtablestakingAdminRemove_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x4f\x6b\xdb\x40\x10\xc5\xcf\xd6\xa7\x78\xf8\x10\x64\x68\xa5\xbb\x69\x1a\xd2\x9a\x82\x21\x34\x25\x31\xbd\x84\x1c\xc6\xd2\xc8\xda\x76\xbd\x2b\x76\xc7\x76\x4c\xf0\x77\x2f\xa3\x95\xda\xfc\x71\xf7\x22\xd8\x99\x79\xf3\xdb\x99\x27\xb3\xed\x7c\x10\x7c\xb3\xfe\xb0\x5c\xac\x68\x6d\xf9\x5e\xe8\xb7\x71\x1b\x34\xc1\x6f\x31\x7d\x1f\x98\x66\x59\x59\x62\xd5\x9a\x08\x09\xe4\x22\x55\x62\xbc\x43\xe0\xad\xdf\x73\x84\xf3\x35\x63\xb9\x88\xa9\x5e\x5a\x86\x35\x51\xe0\x1b\x50\xd7\x05\xbf\xe7\xba\x4f\x89\x30\x4e\x75\x34\x61\xb9\x80\x68\x83\x02\x7a\xb3\x6c\x40\xee\xa8\x05\x29\x16\xb1\xb8\xc5\xf7\xdb\x15\xf8\x49\x85\xc8\x06\xa6\xfa\x08\xe3\xfa\xb8\xa9\xd9\x89\x91\x63\x52\xf8\x00\x69\x4d\xec\x75\x5f\xa0\x1d\x8c\xb5\x08\xbc\xe7\x20\xc8\x9d\x17\x2d\xda\x76\x5e\xd8\xc9\x2c\xcb\x5e\x64\xe6\xa6\x8e\x73\x3c\xdc\x4b\x30\x6e\xf3\x38\xc3\x73\x96\x01\x40\x59\xe2\xc6\x57\x64\xb1\xa7\x60\xb4\x0d\x1a\x1f\x40\x08\xdc\x70\x60\x57\x31\xc4\x8f\x0f\xe9\x27\x85\xeb\x7a\x6b\x1c\xfc\xfa\x17\x57\xd2\x4b\x58\x16\x90\x5e\xde\x71\x33\xc7\xc5\xfb\xa9\x16\x7d\x49\xea\xd7\x05\xee\x28\x70\x4e\x55\x25\x73\xd0\x4e\xda\xfc\x8b\x0f\xc1\x1f\x7e\x92\xdd\xf1\x0c\x17\xd7\x55\xe5\x77\x4e\x14\x10\xc3\x29\x4b\xac\xfb\x9c\x73\x5c\xf4\x16\x47\x4f\x64\xdb\x14\x23\x13\x2e\xa1\xdd\x8a\x28\x3e\xd0\x86\x8b\xa4\xf5\xe9\xbf\xa0\x9f\x73\x5d\xef\xfc\x8c\x6f\x8a\xe1\xdb\xa7\xdd\x27\xb9\x1f\x24\xed\xec\x6f\x63\x3d\x57\x57\xe8\xc8\x99\x2a\x9f\x7e\xf5\x3b\xab\x96\x90\x91\xff\x15\x7d\x1c\xcc\xd8\x73\x4e\x93\xc6\x29\x4d\x89\x9f\xb8\xda\x09\xe3\x39\x9b\xe8\x74\xd5\x54\x6a\x96\xcb\x73\x4c\x1b\x96\xeb\xc1\x7d\x37\x26\x4a\xfe\x0f\xe6\x1c\x88\x1a\x6c\x74\x6b\x72\x6f\xef\xe5\x61\x36\xd3\x59\x96\x4d\xca\x72\x30\x3c\x98\xaa\x36\x99\x3e\x9b\xa8\x2d\x12\xc7\xca\xdf\xa5\xb0\x71\x30\x75\x54\xc8\xc9\x40\xf8\xf0\x3a\xe3\x11\x97\x70\xc6\x66\x93\x53\x92\x8d\x2c\x69\x67\xe3\xdf\xd2\x03\x0c\x8b\x74\x7c\x00\x59\xeb\x0f\x1f\xf5\xf6\xfc\x2a\x8b\xf8\xe6\xb1\x43\xdf\x71\x78\xa7\x3f\x01\x00\x00\xff\xff\x5e\x32\x19\xb8\xf3\x03\x00\x00" +var _idtablestakingAdminRemove_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x4f\x8b\xdb\x30\x10\xc5\xcf\xf1\xa7\x78\xe4\x50\x1c\x68\xed\x9e\x43\xd3\xc5\xad\x53\x30\x84\xdd\x92\xf8\x52\x96\x3d\x28\xf6\x38\x56\xab\x48\x46\x9a\xfc\x63\xc9\x77\x2f\xb2\xec\x76\x77\x9b\xea\x62\x90\x46\x6f\x7e\x9a\xf7\x2c\xf7\x9d\xb1\x8c\x6f\xca\x9c\x8a\xbc\x14\x5b\x45\x1b\x16\xbf\xa4\xde\xa1\xb1\x66\x8f\x8f\xe7\x22\x5f\xde\x97\x45\xf9\xa3\xcc\xbe\xac\x96\x59\x9e\xaf\x97\x9b\x4d\x14\xa5\x29\xca\x56\x3a\xb0\x15\xda\x89\x8a\xa5\xd1\xb0\xb4\x37\x47\x72\xd0\xa6\x26\x14\xb9\x0b\x0a\xdc\x12\x94\x74\x0c\xd3\x40\x74\x9d\x35\x47\xaa\xfb\x12\x07\xa9\xbd\x8e\x2f\x28\x72\xb0\xef\x9d\xc0\xef\x14\x0d\x84\xbe\xf8\x0b\xe1\xcc\x21\x7f\xc0\xfd\x43\x09\x3a\x7b\x21\xa1\x2c\x89\xfa\x02\xa9\xfb\x73\x59\x93\x66\xc9\x97\xa0\xf0\x1e\xdc\x4a\xd7\xeb\xbe\x40\x3b\x49\xa5\x60\xe9\x48\x96\x11\x6b\xc3\xfe\xd2\xbe\x33\x4c\x9a\x67\x51\xf4\xa2\x32\x96\xb5\x9b\xe3\x71\xc3\x56\xea\xdd\xd3\x0c\xcf\x51\x04\x00\x69\x8a\x95\xa9\x84\xc2\x51\x58\xe9\xdb\xa0\x31\x16\x02\x96\x1a\xb2\xa4\x2b\x02\x9b\xf1\x21\xfd\x10\x91\xd5\x7b\xa9\x61\xb6\x3f\xa9\xe2\x5e\x42\x11\x43\xf8\xcd\x35\x35\x73\xbc\xfb\x77\xe0\x49\x7f\x25\xf4\xeb\x2c\x75\xc2\x52\x2c\xaa\x8a\xe7\xc8\x0e\xdc\x66\x55\x65\x0e\x9a\x3d\x11\x86\x95\xa6\xd8\x1a\x6b\xcd\xe9\x16\x88\x78\xdb\xdf\x2f\x47\xaa\x49\x46\x08\x2c\xe0\xe5\x93\xa0\xf1\xe9\xbf\x44\x9f\x63\xef\xe3\xfc\x46\x44\x92\xe1\xdb\x97\x6d\xd8\x58\xb1\xa3\xef\x82\xdb\xd9\x9f\x86\x7e\xdd\xdd\xa1\x13\x5a\x56\xf1\xf4\xab\x39\x28\xef\x3d\x8f\xdc\xaf\xa8\xdd\x90\xbb\x9e\x6f\x1a\x34\xae\x61\x1c\x74\xa6\xea\xc0\x84\xe7\x68\xe2\xc7\xe8\xd3\xe3\x53\xb1\xb8\xc5\xb4\x23\xce\x86\x98\xad\xa4\xe3\xf8\x2f\xcc\x2d\x10\x9f\xa4\x31\x96\x21\xa6\x7d\x68\x5d\x78\xcc\x74\x16\x45\x93\x34\x1d\x92\x0d\x12\x55\x1b\xd2\x1d\x4d\xbc\xff\x81\xa3\x34\xeb\x70\x2c\x35\x64\xed\x3c\xe4\x64\x20\x7c\x7c\x5d\xf1\x84\x05\xb4\x54\xd1\xe4\x1a\x64\x1d\x71\xf0\x6a\xfc\x2d\x7a\x80\xc1\x40\x4d\x27\x08\xa5\xcc\xe9\x83\xdf\xbd\x6d\x61\xe2\xde\x3c\x76\xe8\x3b\x0e\xef\xfa\x3b\x00\x00\xff\xff\x88\x87\x14\x09\xde\x03\x00\x00" func idtablestakingAdminRemove_approved_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2199,11 +2160,11 @@ func idtablestakingAdminRemove_approved_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/remove_approved_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x6e, 0x8d, 0x79, 0xfb, 0x33, 0x46, 0x8c, 0x90, 0xf0, 0x5b, 0xed, 0x99, 0x74, 0x18, 0xe0, 0x89, 0x87, 0xdb, 0x8d, 0x1e, 0x5, 0xba, 0x54, 0x1, 0x90, 0xdb, 0x87, 0xa8, 0x8f, 0x79, 0x8d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x19, 0xc1, 0x2b, 0xce, 0x80, 0x31, 0x1b, 0xd, 0xa9, 0x5d, 0x5b, 0x5e, 0x54, 0x71, 0xac, 0x23, 0xd6, 0x3e, 0xd2, 0x88, 0xb2, 0x31, 0xc2, 0x94, 0x49, 0x37, 0x6a, 0xd2, 0x9c, 0xd5, 0xfb}} return a, nil } -var _idtablestakingAdminRemove_invalid_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x0c\x45\xba\x8b\xb6\xc1\x69\x28\x18\x42\x29\x75\xe8\x7d\xbc\x1a\x59\xd3\xae\x77\xc4\xee\xc8\x2e\x04\x7f\xf7\xb2\x92\x1d\xf2\xcf\x73\x11\x68\x67\xde\xfb\xcd\xbe\x95\xfd\xa0\xd1\xf0\xdd\xeb\x71\x7d\xff\x48\x5b\xcf\x1b\xa3\xbf\x12\x76\xe8\xa2\xee\xb1\x78\x7f\xb0\x28\x8a\xba\xc6\x63\x2f\x09\x16\x29\x24\x72\x26\x1a\xc0\xa1\x4d\xb0\x9e\x91\xce\xf3\x34\x4e\x07\x9f\x70\xec\xc5\xf5\x88\xdc\x8d\xb9\x25\x68\xcb\x09\x59\xe2\x28\xd6\x43\x42\x1a\xbb\x4e\x9c\x70\xb0\x69\x94\x8b\xe2\x85\x6c\x29\x6d\x6a\xf0\xb4\xb1\x28\x61\xd7\xe0\x4e\xd5\x9f\x96\x78\x2a\x0a\x00\xa8\x6b\x3c\xa8\x23\x8f\x03\x45\xc9\x84\xe8\x34\x82\xb2\x15\x47\x0e\x8e\x61\x3a\x21\xad\xef\x31\x6d\x80\x55\xbb\x97\x00\xdd\xfe\x61\x67\x93\x84\x67\x03\xe5\x9f\xbf\xb8\x6b\x70\xf3\x7e\xdb\x6a\x1a\x99\xfd\x86\xc8\x03\x45\x2e\xc9\x39\x6b\x40\xa3\xf5\xe5\x9d\xc6\xa8\xc7\xdf\xe4\x47\x5e\xe2\x66\xe5\x9c\x8e\xc1\x32\x20\xce\x55\xd7\xd8\x4e\x3d\x1f\x71\xd1\x5b\x9c\x5c\x89\x7d\x57\x5d\x98\xf0\x05\xd9\xad\x4a\xa6\x91\x76\x5c\xcd\x5a\x9f\xaf\x82\x7e\x2d\x73\x6c\xcd\x07\x79\x56\xe7\xef\xd4\xb6\x99\xe5\x7e\x92\xf5\xcb\x67\xe3\x5c\xb7\xb7\x18\x28\x88\x2b\x17\xdf\x74\xf4\x2d\x82\xda\x85\xff\x15\xfd\x73\xc8\x59\x6d\x31\x6b\x9c\xe6\x5b\xe2\x7f\xec\x46\xe3\x17\x77\xf0\x6a\xa3\x2a\xb1\xad\x86\x21\xea\x81\xdb\x07\x49\x96\x13\x5e\x5e\x69\x8d\xbc\xd7\x03\xaf\xc3\x81\xbc\xb4\x3f\xf2\xc3\x29\x2f\x56\xa7\xff\x01\x00\x00\xff\xff\x90\x7f\xa1\x57\xb9\x02\x00\x00" +var _idtablestakingAdminRemove_invalid_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xc1\x6a\xdb\x40\x10\x86\xef\x7a\x8a\x9f\x1c\x8a\x0c\x45\xea\x59\xb4\x0d\x4a\xe5\x82\xc0\x84\x12\xe9\xd2\xe3\x7a\x35\xb2\xa6\x95\x77\xc4\xee\xc8\x0e\x04\xbf\x7b\x59\xd9\x0e\x49\x93\xcc\x45\x20\xcd\x7e\xff\x37\x3b\xe2\xfd\x24\x5e\xf1\x73\x94\x63\x5d\xb5\x66\x3b\x52\xa3\xe6\x2f\xbb\x1d\x7a\x2f\x7b\x7c\x79\xac\xab\xf5\x7d\x5b\xb7\xbf\xdb\xf2\x6e\xb3\x2e\xab\xea\x61\xdd\x34\x49\x92\xe7\x68\x07\x0e\x50\x6f\x5c\x30\x56\x59\x1c\xc8\x75\x01\x3a\x10\xc2\x85\x60\xe6\xe5\xc3\x67\x1c\x07\xb6\x03\x3c\xf5\x73\x6c\x71\xd2\x51\x40\x44\x1c\x59\x07\xb0\x0b\x73\xdf\xb3\x65\x72\xba\x1c\xa5\x24\x79\x81\x4d\xb9\x0b\x05\x9e\x1a\xf5\xec\x76\x05\xee\x44\xc6\xd3\x0a\x4f\x49\x02\x00\x79\x8e\x8d\x58\x33\xe2\x60\x3c\x47\x79\xf4\xe2\x61\x62\x14\x79\x72\x96\xa0\xb2\x28\xd5\x15\x96\xe1\x50\x76\x7b\x76\x90\xed\x1f\xb2\xba\x20\x46\x52\x98\xf8\xf2\x81\xfa\x02\x9f\xde\x5e\x44\xb6\x1c\x39\xe7\x4d\x9e\x26\xe3\x29\x35\xd6\x6a\x81\x72\xd6\xa1\xb4\x56\x66\xa7\xd1\x08\x97\xca\x73\x6c\xc5\x7b\x39\xbe\x27\x62\xfe\xcf\x8f\x15\x68\xec\xb3\xab\x04\xbe\x21\xe2\xb3\x33\xe3\xeb\x87\x46\xdf\xd3\xb8\xa1\xe2\x9d\xd5\x65\x97\xe7\xd2\xd6\xa8\x78\xb3\xa3\x5f\x46\x87\xd5\x73\x60\xac\xdb\x5b\x4c\xc6\xb1\x4d\x6f\x7e\xc8\x3c\x76\x70\xa2\x57\xef\x57\xd6\xcf\xdb\x8c\xb4\x9b\x33\xe3\x74\xbe\x0e\x7a\x24\x3b\x2b\xbd\x98\xfd\xd5\x24\x59\x20\x2d\xa7\xc9\xcb\x81\xba\x0d\x07\x8d\xab\x5c\x7d\xd0\xea\x69\x2f\x07\xaa\xdd\xc1\x8c\xdc\xdd\xc7\x3f\x24\xbd\x46\x9d\xfe\x05\x00\x00\xff\xff\x62\x01\x27\xe0\xa4\x02\x00\x00" func idtablestakingAdminRemove_invalid_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2219,11 +2180,11 @@ func idtablestakingAdminRemove_invalid_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/remove_invalid_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0x2e, 0x4, 0x44, 0x5, 0x11, 0x74, 0xed, 0x35, 0xd5, 0x12, 0x3e, 0x87, 0x55, 0x45, 0x89, 0x30, 0x16, 0xa9, 0x35, 0x7b, 0x87, 0x79, 0x7a, 0x5, 0x9f, 0x18, 0xac, 0xb6, 0x2a, 0x5e, 0xa3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x72, 0xb, 0xf4, 0x44, 0xf3, 0x74, 0xb7, 0x89, 0x8c, 0xb6, 0x17, 0xd1, 0xde, 0x3, 0x5e, 0xf7, 0x9b, 0xf0, 0x2f, 0x57, 0xbe, 0x4b, 0x8f, 0xe9, 0x1f, 0xea, 0x14, 0x34, 0xe1, 0x24, 0x95, 0x2a}} return a, nil } -var _idtablestakingAdminRemove_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\xcb\xda\x40\x10\x86\xef\xf9\x15\x2f\x39\x48\xbc\x24\xf7\xd0\x56\x6c\xa5\x20\x94\x52\x54\x7a\x1f\x77\x27\x66\xdb\x64\x27\x6c\x26\x6a\x29\xfe\xf7\xb2\x89\x16\xfd\xf4\x9b\x4b\x20\x99\x79\xe6\x99\xc9\xb8\xb6\x93\xa0\xf8\xda\xc8\x69\xbd\xda\xd1\xbe\xe1\xad\xd2\x6f\xe7\x0f\xa8\x82\xb4\x48\x9f\x3f\xa4\x49\x52\x14\xd8\xd5\xae\x87\x06\xf2\x3d\x19\x75\xe2\x11\xb8\x95\x23\xf7\x20\x0f\x3e\xbb\x5e\x23\xc2\x8b\xe5\x89\xa3\x35\xc3\x59\xf6\xea\xf4\x0f\x34\xd2\x92\xe4\xae\x3a\x73\xb6\xc4\x56\x83\xf3\x87\x39\xfe\x26\x09\x00\x14\x05\xbe\x89\xa1\x06\x47\x0a\x2e\x56\xa0\x92\x00\x42\xe0\x8a\x03\x7b\xc3\x50\x19\xb9\xeb\x15\x46\x3f\x2c\x6d\xeb\x3c\x64\xff\x8b\x8d\x8e\x88\x86\x15\x14\x5f\x6e\xb8\x2a\x31\x7b\x9e\x25\x1f\x4b\xa6\x7e\x5d\xe0\x8e\x02\x67\x64\x8c\x96\xa0\x41\xeb\xec\xb3\x84\x20\xa7\x9f\xd4\x0c\x3c\xc7\x6c\x69\x8c\x0c\x5e\xa3\x20\xae\x51\x14\xd8\x8f\x39\xaf\xbc\xe8\xad\x4e\x8c\x9e\x9b\x2a\xbf\x39\xe1\x23\x62\xb7\xbc\x57\x09\x74\xe0\x7c\x62\x7d\x78\x57\xf4\x53\x16\x97\x59\xbe\xf8\x5b\xf9\xf5\x39\xa6\x6d\x27\xdc\x0f\xd2\x7a\xfe\xbf\x71\x8c\xc5\x02\x1d\x79\x67\xb2\xf4\x8b\x0c\x8d\x85\x17\xbd\xf9\x3f\xd8\xf7\xd7\x13\x18\x3d\xd3\x89\x71\x99\xb6\xc4\x67\x36\x83\xf2\xdd\x0e\x1e\x26\xca\xa7\x33\x58\x7a\xbb\xe1\x6a\xf0\xf6\xbb\x58\xde\xb0\x91\x60\x33\x67\x6f\xa0\xcb\xbf\x00\x00\x00\xff\xff\x4d\x37\x98\xf0\x75\x02\x00\x00" +var _idtablestakingAdminRemove_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\xab\x9b\x40\x10\xc7\xef\x7e\x8a\x3f\xef\x50\x7c\x17\xed\x59\xda\x3e\x6c\x4d\x41\x78\x84\xa2\x5e\x7a\xdc\xec\x8e\x71\x5b\xdd\x91\x75\x4c\x52\x4a\xbe\x7b\x59\x4d\x4a\xd2\xe6\xcd\x45\x90\x9d\xdf\xff\x37\x33\x76\x18\xd9\x0b\xbe\xf6\x7c\x2c\x8b\x46\xed\x7a\xaa\x45\xfd\xb4\x6e\x8f\xd6\xf3\x80\xf7\xa7\xb2\xd8\x6c\x9b\xb2\xf9\xde\xe4\x9f\x5f\x37\x79\x51\x54\x9b\xba\x8e\xa2\x34\x45\xd3\xd9\x09\xe2\x95\x9b\x94\x16\xcb\x0e\x9e\x06\x3e\xd0\x04\xe5\x40\x27\x3b\x49\x80\x38\x36\xb4\x92\xa4\x23\x58\x43\x4e\xac\xfc\x82\x84\xa0\x28\xba\xe9\x8e\xad\xc9\x50\x8b\xb7\x6e\xff\x8c\xdf\x51\x04\x00\x69\x8a\x57\xd6\xaa\xc7\x41\x79\x1b\x3a\xd0\xb2\x87\x82\xa7\x96\x3c\x39\x4d\x10\x5e\xb8\x65\x81\x45\x1d\xb9\x19\xac\x03\xef\x7e\x90\x96\x05\xd1\x93\x40\x85\x9f\x15\xb5\x19\xde\xfd\x3f\x66\xb2\xb4\xac\x79\xa3\xa7\x51\x79\x8a\x95\xd6\x92\x21\x9f\xa5\xcb\xb5\xe6\xd9\x49\x30\xc2\xa5\xd2\x14\x3b\xf6\x9e\x8f\x8f\x44\xd4\xbf\xf9\xa1\x26\xea\xdb\xe4\x2a\x81\x8f\x08\xf8\x64\x65\x7c\x78\xd3\xe8\x53\x1c\xb6\x96\x3d\x38\x4c\x72\xf9\x2e\xcf\x6a\x61\xaf\xf6\xf4\x4d\x49\xf7\xfc\x37\x30\xd4\xcb\x0b\x46\xe5\xac\x8e\x9f\xbe\xf0\xdc\x1b\x38\x96\xab\xf7\x9d\xf5\x74\xb9\xf6\xe2\xf7\xb4\x32\xce\xeb\x3a\xe8\x44\x7a\x16\xba\x99\xfd\x6e\x92\x64\xbd\x77\xee\x4c\x45\xed\xec\xcc\x96\x0d\x55\xa4\xd9\x9b\xd8\x9a\x2b\xe8\xfc\x27\x00\x00\xff\xff\x22\x63\x8e\xec\x60\x02\x00\x00" func idtablestakingAdminRemove_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -2239,11 +2200,11 @@ func idtablestakingAdminRemove_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/remove_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xca, 0x33, 0x14, 0xe6, 0x42, 0xf6, 0x32, 0x5d, 0x3b, 0x1b, 0xdf, 0xdd, 0xb5, 0x64, 0x5f, 0x18, 0x98, 0xfb, 0x4e, 0xc9, 0x81, 0x63, 0x57, 0x72, 0xf2, 0x1e, 0xc1, 0x11, 0xaa, 0xbc, 0x19, 0x24}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf6, 0xe4, 0xe1, 0x3a, 0x2a, 0x6b, 0xb5, 0x2d, 0x92, 0xdd, 0xa3, 0x6c, 0x8a, 0xd4, 0x7f, 0x7d, 0x72, 0xfa, 0x69, 0xf2, 0xab, 0x98, 0x7c, 0x56, 0xcb, 0xc4, 0xb0, 0xb8, 0xc5, 0xc2, 0xbb, 0x0}} return a, nil } -var _idtablestakingAdminScale_rewards_testCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x3f\x6b\xc3\x30\x10\xc5\x77\x7d\x8a\xab\x87\xe2\x40\x30\x76\x4b\x16\x83\x87\x94\x10\xc8\xd2\xa1\x7f\xa6\xd2\xe1\x2a\x5d\x8d\x89\x22\x85\xd3\x15\x0f\x21\xdf\xbd\x28\x89\x9d\xbf\x75\x35\x18\x0e\xbd\xf7\xd3\x7b\xe7\x66\xb5\xf6\x2c\x30\xb7\xbe\x5d\xcc\xde\xf0\xcb\xd2\xab\xe0\xb2\x71\x35\x7c\xb3\x5f\x41\x72\x7d\x91\x28\x25\x8c\x2e\xa0\x96\xc6\x3b\xd8\x28\x05\x00\xb0\x66\x5a\x23\x53\x8a\x5a\x4b\x09\xf7\x53\xad\xfd\x8f\x93\x11\x6c\x76\xb7\xf1\x58\x12\x60\x6a\x91\x4d\x78\x62\xc2\xa5\xf1\xad\x83\xea\xc6\xcb\xd9\xcb\x85\x2a\x75\xde\xd0\x62\x56\x42\x92\x1f\x4e\x91\x8c\x54\x0f\xbe\x84\x66\x81\xe4\xd9\x1b\x3a\x60\xd2\x22\xcf\xf3\x2c\x1f\x0d\xea\x67\x64\xa9\x46\xf1\xbc\x37\xa5\xa6\x9b\xe3\xb3\x05\x60\x80\xf7\x85\x93\xc7\x87\x71\xe7\x2e\xa1\xd8\x53\x07\xb0\x1a\x2d\x4d\xad\xed\x72\xc4\xb9\x71\xf5\x1c\xb5\x78\x2e\x21\xcf\x26\xc7\x4c\x18\x02\xb1\xa4\xfd\x7c\x13\xe8\x8e\xa5\xa0\xaa\x60\x12\x03\x8c\xcf\x2c\x2b\x0a\x01\x6b\x2a\x21\x69\xd9\xbb\x1a\xa2\xa3\xe3\xc0\x2e\x4f\xd2\xeb\x4f\xa2\xc7\x5f\x63\xce\x37\x10\xa0\xba\x0e\x70\xa9\xf9\x38\xd9\xcc\xe7\x9d\x1a\x6c\x73\xcd\x8f\x0d\xfe\x2b\xd0\xbb\xfe\x6e\x11\xbf\x5b\xb5\xfd\x0d\x00\x00\xff\xff\xbe\x67\xb1\xec\xc9\x02\x00\x00" +var _idtablestakingAdminScale_rewards_testCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\x4d\x6b\xc2\x40\x10\xbd\xef\xaf\x98\xe6\x14\x41\xc2\xda\xe2\x25\xe0\x21\x12\x85\x40\xe9\x41\xd3\x43\x29\x3d\x4c\x37\xd3\x34\xb8\xee\xca\xee\x48\x0a\xe2\x7f\x2f\x6b\x35\xf8\x51\x75\x0e\x0b\x03\xef\xbd\x79\xef\x6d\xb3\x5c\x59\xc7\x30\xd5\xb6\x2d\xf2\x12\x3f\x35\xcd\x19\x17\x8d\xa9\xe1\xcb\xd9\x25\xc8\x9f\x22\x9f\xbc\x94\x45\xf9\x56\x66\xe3\xe7\x49\x96\xe7\xb3\xc9\x7c\x2e\x04\x3b\x34\x1e\x15\x37\xd6\xc0\x46\x08\x00\x80\x95\xa3\x15\x3a\x8a\x51\x29\x4e\x21\x5b\xf3\x77\xa6\x94\x5d\x1b\xee\xc1\x66\x07\x08\xa3\x89\xc1\x51\x8b\xae\xf2\x63\x47\xb8\xa8\x6c\x6b\x60\xf4\xcf\xf9\x64\x76\x86\x8a\x8d\xad\xa8\xc8\x53\x88\xe4\x7e\x06\x51\x4f\x74\xc2\xe7\xa2\x49\x80\xef\x35\x60\x04\x03\x29\x65\x22\xaf\xa3\x3d\x71\x4e\x9a\x6a\x64\xeb\xfe\x58\x71\x75\xd8\xc3\xd1\x01\xa0\x87\xd7\xc2\xf0\xd3\x63\xff\xc0\x4e\x83\x6a\x22\x6f\x99\xf0\x0a\x35\x65\x5a\xef\x8d\xc4\x61\x6f\x4c\x3d\x45\xc5\xd6\xa5\x20\x93\x61\xaf\x23\xa3\xf7\xe4\x38\xee\xf6\xfb\xa9\x46\x30\x0c\x06\xfa\x27\x94\x25\x79\x8f\x35\xa5\x10\xb5\xce\x9a\x1a\x02\xe3\xa0\x03\x3b\x3f\x51\x87\x3f\xb2\x1e\x3e\xa6\x3a\x6d\x20\xf4\x76\x61\xe0\x1c\xf3\x7e\xd4\xcc\xc7\x83\xb8\x99\xe6\x52\x3f\x24\xb8\x17\xa0\x63\x5d\x4f\x11\xde\xad\xd8\xfe\x06\x00\x00\xff\xff\xb2\x19\x09\x1c\xcc\x02\x00\x00" func idtablestakingAdminScale_rewards_testCdcBytes() ([]byte, error) { return bindataRead( @@ -2259,11 +2220,11 @@ func idtablestakingAdminScale_rewards_testCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/scale_rewards_test.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0xfb, 0xe0, 0xff, 0xc8, 0xd5, 0x10, 0x1a, 0xf1, 0x22, 0x4, 0x38, 0x3f, 0xc9, 0xbd, 0xd9, 0x0, 0xa9, 0xb3, 0x36, 0xcf, 0x67, 0xb1, 0x7e, 0xbe, 0xe4, 0x70, 0x2b, 0x92, 0xff, 0x37, 0x16}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0x39, 0xc5, 0x67, 0x9f, 0x4b, 0xfc, 0xd2, 0xa6, 0xc9, 0x65, 0xd0, 0xe9, 0xc, 0x91, 0xf2, 0x55, 0x35, 0x9e, 0xbe, 0x20, 0xc0, 0x8f, 0x35, 0xf0, 0xb0, 0x73, 0xf4, 0xc9, 0xe, 0x1a, 0x70}} return a, nil } -var _idtablestakingAdminSet_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x8b\xdb\x30\x10\xc5\xef\xfe\x14\x0f\x1f\x16\xe7\x62\xdf\x4d\xdb\x25\xdb\xa5\xb0\xb0\x87\xd2\x84\xde\x27\xf2\x38\x56\xab\x68\x8c\x34\x4e\x0a\x21\xdf\xbd\xc8\x7f\x4a\xd2\x64\xe7\x62\xb0\xf4\xde\xfc\x34\x6f\xec\xa1\x97\xa0\xf8\xe6\xe4\xf4\xf6\xba\xa5\x9d\xe3\x8d\xd2\x6f\xeb\xf7\x68\x83\x1c\x90\xdf\x1f\xe4\x59\x56\x55\xd8\x76\x36\x42\x03\xf9\x48\x46\xad\x78\x44\xd6\x08\xed\x18\xce\x46\x85\xb4\xa0\xbe\x0f\x72\xe4\x06\x5e\x1a\x8e\xb0\x7e\x3c\x7d\x7b\x85\x26\xb3\x2c\xbb\x12\x17\xb6\x89\x35\xce\x1b\x0d\xd6\xef\x6b\xbc\x88\xb8\xcb\x0a\xe7\x2c\x03\x80\xaa\xc2\xbb\x18\x72\x38\x52\xb0\x49\x8a\x56\x02\x08\x81\x5b\x0e\xec\x0d\x43\x65\xb1\x1e\x39\xb1\x6e\x0e\xd6\x43\x76\xbf\xd8\xe8\x68\xe1\x58\x41\xe9\xe7\x0f\x6e\x6b\x3c\xdd\xbf\xa9\x1c\x25\x53\xbf\x3e\x70\x4f\x81\x0b\x32\x46\x6b\xd0\xa0\x5d\xf1\x22\x21\xc8\xe9\x27\xb9\x81\x57\x78\x5a\x1b\x23\x83\xd7\x04\x88\xb9\xaa\x0a\xbb\xf1\xce\x23\x2e\xfa\x1f\x27\x55\x64\xd7\x96\x0b\x13\x3e\x23\x75\x2b\xa3\x4a\xa0\x3d\x97\x93\xd7\xa7\x0f\x41\xbf\x14\x29\x9c\xfa\x41\x6a\xe5\xfc\x1d\xaf\x6d\x26\xbb\xef\xa4\xdd\xea\x5f\xe3\x54\xcf\xcf\xe8\xc9\x5b\x53\xe4\x5f\x65\x70\x29\x21\x5d\xf8\x6f\xe8\xe3\xbc\x0a\x23\x67\x3e\x79\x5c\xa6\x29\xf1\x1f\x36\x83\xf2\xd5\x0c\x6e\x5e\x54\x46\xd6\xf5\xbc\x00\xef\x36\x6a\x4a\x78\xd1\x5f\xfe\x06\x00\x00\xff\xff\xff\xfc\x9f\x93\x74\x02\x00\x00" +var _idtablestakingAdminSet_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4f\x6b\xdc\x30\x10\xc5\xef\xfe\x14\x8f\x1c\x8a\x73\xb1\x7b\x36\x6d\x83\x53\x6f\xc1\xb0\x94\x12\xfb\xd2\xa3\x56\x1e\xaf\xd5\x6a\x35\x46\x1a\x27\x81\xb0\xdf\xbd\xc8\x7f\xca\x6e\xbb\x99\x8b\xc1\xd2\xbc\xf7\x7b\x7a\xe6\x34\xb2\x17\x7c\xb3\xfc\x52\x57\xad\x3a\x58\x6a\x44\xfd\x36\xee\x88\xde\xf3\x09\x1f\x5f\xeb\x6a\xf7\xbd\xad\xdb\x9f\x6d\xf9\xb8\xdf\x95\x55\xf5\xb4\x6b\x9a\x24\xc9\x73\xb4\x83\x09\x10\xaf\x5c\x50\x5a\x0c\x3b\x04\x92\x00\x19\x08\xd6\x04\x01\xf7\x50\xe3\xe8\xf9\x99\x3a\x38\xee\x28\xc0\xb8\xf9\xb4\xae\x20\xd1\x27\x49\x2e\x96\x53\xd3\x85\x02\x6f\x8d\x78\xe3\x8e\x05\x1e\x99\xed\xf9\x1e\x6f\x49\x02\x00\x79\x8e\x3d\x6b\x65\xf1\xac\xbc\x89\xab\xe8\xd9\x43\xc1\x53\x4f\x9e\x9c\x26\x08\x6f\xd2\x73\x04\x94\xdd\xc9\x38\xf0\xe1\x17\x69\x99\x25\x2c\x09\x54\xfc\xf9\x44\x7d\x81\x0f\xff\xc7\xcd\xe6\x95\xc5\x6f\xf4\x34\x2a\x4f\xa9\xd2\x5a\x0a\x94\x93\x0c\xa5\xd6\x3c\x39\x89\x44\x58\x27\xcf\x71\x60\xef\xf9\xe5\x16\x88\xfa\xd7\x3f\x4e\x20\xdb\x67\x1b\x04\x3e\x23\xca\x67\x8b\xc6\xa7\x77\x89\xbe\xa4\xb1\x87\xe2\x46\x41\xd9\xfa\x9d\xaf\x35\xc2\x5e\x1d\xe9\x87\x92\xe1\xfe\xaf\x61\x9c\x87\x07\x8c\xca\x19\x9d\xde\x7d\xe5\xc9\xc6\x2a\x64\xe3\xbe\xa2\x0e\x6b\xeb\x33\xdf\xdd\xa2\x71\x5e\x9e\x83\x5e\x49\x4f\x42\x17\xd9\xaf\x92\x64\x81\xa4\x5c\x9b\xde\x9b\x20\xb1\xca\x6d\xff\xfc\x27\x00\x00\xff\xff\xc5\xca\x43\xb8\x5f\x02\x00\x00" func idtablestakingAdminSet_approved_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2279,11 +2240,11 @@ func idtablestakingAdminSet_approved_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_approved_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x44, 0xa0, 0xfc, 0x5d, 0x65, 0x80, 0xeb, 0x76, 0x1e, 0x7, 0x24, 0x56, 0x7b, 0x94, 0x24, 0x0, 0x60, 0xd1, 0x2c, 0xd8, 0x6d, 0xd5, 0x84, 0xca, 0x73, 0x54, 0x45, 0x90, 0x97, 0x72, 0x4f, 0x64}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x65, 0x9e, 0x70, 0xe8, 0x77, 0x3e, 0xbb, 0xfe, 0x9f, 0x48, 0xbe, 0x7e, 0xf7, 0x80, 0x8a, 0x63, 0xad, 0x45, 0xdb, 0x75, 0x8b, 0xfd, 0x23, 0x66, 0x45, 0x89, 0x90, 0x81, 0xe1, 0xf0, 0xce, 0xe1}} return a, nil } -var _idtablestakingAdminSet_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6f\xe2\x30\x10\x85\xef\xf9\x15\x4f\x39\xa0\xe4\x92\xdc\xd1\xee\x22\x16\xb4\x12\xd2\x1e\x56\x0b\xea\x7d\x70\x26\xc4\xc5\xb1\x23\x7b\x52\x5a\x21\xfe\x7b\xe5\x84\x54\x6d\x81\xb9\x44\x8a\x67\xde\xfb\x66\x9e\x6e\x3b\xe7\x05\x7f\x8c\x3b\x6d\xd6\x3b\xda\x1b\xde\x0a\x1d\xb5\x3d\xa0\xf6\xae\x45\x7a\xfb\x90\x26\x49\x59\x62\xd7\xe8\x00\xf1\x64\x03\x29\xd1\xce\xa2\xa3\xb7\x00\xcf\x27\xf2\x55\x80\x38\x90\x31\x90\x86\x11\x84\x8e\x5c\xc1\xba\x8a\x43\x92\x7c\x9e\x38\x27\x09\x00\x94\x25\xfe\x3a\x45\x06\x2f\xe4\x75\xf4\x41\xed\x3c\x08\x9e\x6b\xf6\x6c\x15\x47\xb5\xa8\xb4\x59\x63\xe0\xc0\xb2\x6a\xb5\x85\xdb\x3f\xb3\x92\x41\xc2\xb0\x80\xe2\xcf\xff\x5c\xcf\x31\xbb\x65\x2e\x86\x91\xd1\xaf\xf3\xdc\x91\xe7\x8c\x94\x92\x39\xa8\x97\x26\xfb\xed\xbc\x77\xa7\x27\x32\x3d\xe7\x98\x2d\x95\x72\xbd\x95\x7c\x02\xbc\x42\xee\x87\xa6\x7b\x60\xf4\x9d\x27\x56\x60\x53\x17\x13\x14\x7e\x22\xda\x15\x41\x9c\xa7\x03\x17\xa3\xd6\x8f\x87\xa4\xbf\xb2\x78\xfd\xf9\x9d\x58\x8a\xeb\x77\x68\xdb\x8e\x72\xff\x48\x9a\xfc\xc3\x38\xd6\x62\x81\x8e\xac\x56\x59\xba\x72\xbd\x89\xd7\x97\x89\xff\x0b\x7d\xb8\x66\x3d\x70\xa6\xa3\xc6\x65\xdc\x9a\x5f\x59\xf5\xc2\x38\xdf\xdf\xa8\x08\x2c\x2b\x43\xba\xe5\x2a\xcb\x1f\xb5\x08\x79\x99\x78\xfb\x21\xf4\x6c\xf2\xb8\xbc\x07\x00\x00\xff\xff\x58\x92\xe9\x95\x79\x02\x00\x00" +var _idtablestakingAdminSet_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xc1\x8a\xdb\x30\x10\x86\xef\x7e\x8a\x9f\x3d\x14\xe7\x62\xf7\x1c\xda\x2e\xee\x3a\x05\xc3\x52\xca\xda\x97\x1e\x27\xf2\x78\xad\x46\x96\x8c\x34\x6e\x52\x42\xde\xbd\xc8\x8e\x4b\xdb\x4d\xe6\x22\x10\x33\xdf\x7c\x33\xa3\x87\xd1\x79\xc1\x17\xe3\x8e\x55\xd9\xd0\xde\x70\x2d\x74\xd0\xf6\x15\x9d\x77\x03\xde\x9f\xaa\x72\xf7\xb5\xa9\x9a\xef\x4d\xf1\xf9\x79\x57\x94\xe5\xcb\xae\xae\x93\x24\xcf\xd1\xf4\x3a\x40\x3c\xd9\x40\x4a\xb4\xb3\x18\xe9\x57\x80\xe7\x23\xf9\x36\x40\x1c\xc8\x18\x48\xcf\x08\x42\x07\x6e\x61\x5d\xcb\x21\x49\xfe\xae\x38\x27\x09\x00\xe4\x39\x9e\x9d\x22\x83\x9f\xe4\x75\x54\x40\xe7\x3c\x08\x9e\x3b\xf6\x6c\x15\x47\x5a\x24\x55\x25\x66\x45\x14\xed\xa0\x2d\xdc\xfe\x07\x2b\x99\x11\x86\x05\x14\x3f\x5f\xb8\xdb\xe2\xdd\xdb\x71\xb2\xb9\x64\xe9\x37\x7a\x1e\xc9\x73\x4a\x4a\xc9\x16\xc5\x24\x7d\xa1\x94\x9b\xac\x6c\x56\xa3\xab\xd5\xde\x79\xef\x8e\xb7\x4c\xe8\x7f\x81\x18\x81\x4d\x97\xad\x16\xf8\x88\xc8\xcf\x16\xc6\x87\xbb\x4a\x9f\xd2\xb8\xe8\xed\x8d\x0b\x64\xd7\x77\x4e\xab\xc5\x79\x7a\xe5\x6f\x24\xfd\xe6\x4f\xc3\x18\x8f\x8f\x18\xc9\x6a\x95\x3e\x3c\xb9\xc9\xc4\x35\xcb\xea\xfd\x8f\x75\xb8\x9e\x75\xf6\x7b\x58\x18\x97\x65\x5a\x3e\xb1\x9a\x84\x71\xbe\x3d\x49\x16\x58\x9e\x0c\xe9\x81\xdb\x74\x73\x2f\x45\xc8\xcb\xea\x3b\xcd\xd7\x4d\xd7\x1e\x97\xdf\x01\x00\x00\xff\xff\x7b\xc7\x21\x68\x64\x02\x00\x00" func idtablestakingAdminSet_claimedCdcBytes() ([]byte, error) { return bindataRead( @@ -2299,11 +2260,11 @@ func idtablestakingAdminSet_claimedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_claimed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0xd5, 0xa0, 0x15, 0x9, 0x9e, 0xf5, 0xc0, 0xaf, 0xa2, 0x3e, 0xd3, 0x54, 0x30, 0xef, 0xcb, 0x9, 0xa1, 0x94, 0xb6, 0x48, 0x83, 0xf2, 0x39, 0xb2, 0xac, 0x3a, 0xf1, 0x6, 0x97, 0xdc, 0x21}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xb4, 0xad, 0x42, 0x53, 0x64, 0xc1, 0x6f, 0x27, 0xf0, 0xd8, 0xf6, 0xf8, 0x47, 0x9f, 0x1e, 0x61, 0x7c, 0x35, 0xb0, 0xd3, 0x57, 0xe1, 0x19, 0x43, 0x5, 0x52, 0x66, 0x26, 0x65, 0xb6, 0x6}} return a, nil } -var _idtablestakingAdminSet_node_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x8b\xd4\x40\x10\x85\xef\xf9\x15\x8f\x1c\x96\x0c\x48\x72\x11\x0f\x41\x5d\x56\x07\x21\x20\x22\xce\xaa\xe7\x9a\x4e\x25\x69\xed\xe9\x0a\xdd\x15\x67\x41\xf6\xbf\x4b\x77\x66\x74\xd7\x9d\xad\x4b\x43\xd2\xf5\xde\xd7\xf5\xca\x1e\x66\x09\x8a\x0f\x4e\x8e\xdd\xf6\x96\xf6\x8e\x77\x4a\x3f\xad\x1f\x31\x04\x39\xa0\x7c\xfa\xa3\x2c\x8a\xa6\xc1\xed\x64\x23\x34\x90\x8f\x64\xd4\x8a\x47\x64\x8d\xd0\x89\x61\xbd\x55\x4b\xee\x3b\xdb\x71\x52\xc8\x00\xf2\xe0\x3b\x1b\x35\x89\x7a\xe9\xb9\x78\xd0\x56\xd9\xbe\xc5\x4e\x83\xf5\xe3\x0b\x1c\x73\x4b\x8b\xaf\x9d\xd7\x57\x2f\x37\xf8\x5d\x14\x00\xd0\x34\xf8\x28\x86\x1c\x7e\x51\xb0\x09\x04\x83\x04\x10\x02\x0f\x1c\xd8\x1b\x86\x4a\x76\xee\xb6\xc8\xa0\xb8\xe9\x0f\xd6\x43\xf6\x3f\xd8\x68\x96\x70\xac\xa0\xf4\xf1\x0b\x0f\x2d\xae\x9e\x3e\xaa\xce\x2d\xab\xdf\x1c\x78\xa6\xc0\x15\x19\xa3\x2d\x68\xd1\xa9\x7a\x27\x21\xc8\xf1\x1b\xb9\x85\x37\xb8\xba\x31\x46\x16\xaf\x09\x10\xa7\x6a\x1a\xec\xf3\x9d\x4b\x5c\xf4\x3f\x4e\xaa\xc8\x6e\xa8\xcf\x4c\x78\x83\xe4\x56\x47\x95\x40\x23\xd7\xab\xd6\xeb\x67\x41\xdf\x56\x29\x9d\xf6\x42\x6c\xf5\xe9\xcc\xd7\x76\xab\xdc\x67\xd2\x69\xf3\xd7\x38\xd5\xf5\x35\x66\xf2\xd6\x54\xe5\x7b\x59\x5c\x0f\x2f\x7a\xe6\x7f\x44\x1f\x4f\xbb\x90\x39\xcb\x55\xe3\x7e\x9d\x12\xdf\xb1\x59\x94\x1f\xcc\xe0\xd1\x8b\xea\xc8\xfa\x49\x7a\x5e\xd7\xa0\x4a\xb9\x77\xdb\x16\xb6\xff\x17\xf3\x7a\x9e\x45\xef\xff\x04\x00\x00\xff\xff\xf3\x29\x18\xae\x8a\x02\x00\x00" +var _idtablestakingAdminSet_node_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x8b\xd4\x40\x10\x85\xef\xf9\x15\x8f\x3d\x48\x16\x24\xf1\x20\x1e\x82\xba\x44\x33\x42\x60\x59\x64\x13\x11\x8f\x35\x9d\xca\xa4\x35\xd3\x15\xba\x2b\xce\x80\xec\x7f\x97\x4e\x66\x74\x57\x67\xeb\x52\x10\x52\xef\x7d\xaf\x9f\xdd\x4f\xe2\x15\x9f\x46\x39\xd4\x55\x4b\xdb\x91\x1b\xa5\x1f\xd6\xed\xd0\x7b\xd9\xe3\xd5\xb1\xae\x36\x77\x6d\xdd\x7e\x6b\xcb\x0f\xb7\x9b\xb2\xaa\xee\x37\x4d\x93\x24\x79\x8e\x76\xb0\x01\xea\xc9\x05\x32\x6a\xc5\x21\xb0\x06\xe8\xc0\xb0\xce\xaa\xa5\xf1\x2b\xdb\xdd\xa0\x90\x1e\xe4\xc0\x47\x1b\x34\xca\x3a\xe9\x38\x79\x74\x96\xda\xae\x40\xa3\xde\xba\xdd\x4b\x1c\x96\x93\x02\x5f\x6a\xa7\x6f\x5e\x5f\xe3\x57\x92\x00\x40\x9e\xe3\x56\x0c\x8d\xf8\x49\xde\x46\x46\xf4\xe2\x41\xf0\xdc\xb3\x67\x67\x18\x2a\x8b\x73\x5d\x61\xc9\x80\xb2\xdb\x5b\x07\xd9\x7e\x67\xa3\x8b\xc4\xc8\x0a\x8a\x1f\xef\xb9\x2f\xf0\xe2\xff\xbc\xd9\x72\xb2\xfa\x4d\x9e\x27\xf2\x9c\x92\x31\x5a\xa0\x9c\x75\x28\x8d\x91\xd9\x69\x24\xc2\x69\xf2\x1c\x5b\xf1\x5e\x0e\x97\x40\xe8\x5f\xff\x38\x81\xc7\x3e\x3b\x43\xe0\x1d\xa2\x7c\xb6\x6a\xbc\x7d\x96\xe8\x7d\x1a\x8b\x28\x2e\x34\x94\x9d\xf6\xf2\x5b\xa3\xe2\x69\xc7\x9f\x49\x87\xeb\x3f\x86\x71\x6e\x6e\x30\x91\xb3\x26\xbd\xfa\x28\xf3\xd8\xc1\x89\x9e\xb9\x9f\x50\x87\x53\xed\x0b\xdf\xd5\xaa\xf1\xb0\x3e\x07\x1f\xd9\xcc\xca\x8f\xb2\x3f\x49\x92\x05\xd6\x3b\xe9\x78\xed\x3b\x8d\x05\xd7\x55\x01\xdb\xfd\xed\x73\xdd\x67\xd1\x87\xdf\x01\x00\x00\xff\xff\xc7\x86\x8f\xec\x75\x02\x00\x00" func idtablestakingAdminSet_node_weightCdcBytes() ([]byte, error) { return bindataRead( @@ -2319,11 +2280,11 @@ func idtablestakingAdminSet_node_weightCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_node_weight.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x83, 0x38, 0x72, 0x86, 0x8a, 0x4f, 0x3d, 0x9e, 0x30, 0x9c, 0x8f, 0x8a, 0x50, 0xc1, 0x8, 0x15, 0x7, 0x30, 0xda, 0xd0, 0x81, 0x97, 0xb8, 0x37, 0xfe, 0x1b, 0x35, 0xa, 0xf0, 0x51, 0x3b, 0x4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfe, 0xb, 0x49, 0x3b, 0xa5, 0x0, 0x6c, 0x1e, 0x8a, 0xe, 0x82, 0xb, 0xaf, 0xd9, 0x32, 0xa3, 0x33, 0xeb, 0x65, 0xb7, 0x87, 0x42, 0x1d, 0xe4, 0x89, 0xe6, 0x19, 0xa5, 0x25, 0xae, 0x5c, 0xcd}} return a, nil } -var _idtablestakingAdminSet_non_operationalCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x7c\x91\x72\x28\x3d\x88\xba\x21\x6d\x08\x04\x42\x5a\xea\xb4\x97\x90\xc3\x78\x77\x64\x6d\xbb\xde\x31\xbb\xe3\x2a\x60\xfc\xdd\xcb\x4a\xb6\xeb\xd6\xc9\x5c\x04\x9a\xd9\xf7\x7e\xf3\xc7\xad\xd6\x12\x15\xb7\x5e\xfa\xbb\x9b\x47\x5a\x78\x9e\x2b\xfd\x72\x61\x89\x36\xca\x0a\x93\xf3\xc4\xa4\x28\xea\x1a\x8f\x9d\x4b\xd0\x48\x21\x91\x51\x27\x01\x89\x35\x41\x3b\x86\x77\x49\x21\x2d\x82\x58\x4e\xe8\x3b\x01\x45\x46\x90\x00\x59\x73\xa4\x5c\x4c\x3e\x4b\x50\xb0\x39\x9d\x18\x91\x7b\x8a\x36\xa1\x77\xde\x63\xc1\xe8\x9d\x76\x1d\x7b\x5b\x14\x27\x0e\xa5\xb3\xa9\xc1\xd3\x5c\xa3\x0b\xcb\xe7\x29\xb6\x45\x01\x00\x75\x8d\x7b\x31\xe4\xf1\x9b\xa2\xcb\x98\x68\x25\x82\x10\xb9\xe5\xc8\xc1\x30\x54\x06\xae\xbb\x1b\x0c\x6d\xe0\xda\xae\x5c\x80\x2c\x7e\xb2\xd1\x41\xc2\xb3\x82\xf2\xcf\x6f\xdc\x36\xb8\x38\x6f\xb9\x1a\x9e\x8c\x7e\xeb\xc8\x6b\x8a\x5c\x92\x31\xda\x80\x36\xda\x95\x9f\x24\x46\xe9\x7f\x90\xdf\xf0\x14\x17\xd7\xc6\xc8\x26\x68\x06\xc4\x3e\xea\x1a\x8b\xa1\xe6\x35\x2e\xfa\x1f\x27\x47\x62\xdf\x56\x07\x26\xcc\x90\xdd\xaa\xa4\x12\x69\xc9\xd5\xa8\xf5\xe1\x4d\xd0\x8f\x65\xde\x5d\xf3\xca\x52\xab\xfd\x77\x28\x9b\x8f\x72\x5f\x49\xbb\xe9\xd1\x38\xc7\xd5\x15\xd6\x14\x9c\x29\x27\x9f\x65\xe3\x2d\x82\xe8\x81\xff\x1f\xfa\xb4\xbf\x94\x81\x73\x32\x6a\xec\xc6\x29\xf1\x0b\x9b\x8d\xf2\xc9\x0c\xf2\x90\xf3\x49\xdc\xbb\xa4\x0d\xb6\xe3\x1a\x1b\x7c\xbf\x75\x2f\xef\xdf\xed\x30\xc3\x76\x77\xac\xcd\x1b\x74\x16\x2e\xc0\xd9\x74\xa2\x91\xe3\xa0\xf1\xe4\xec\x33\x66\xb8\xac\x2e\x8f\xe9\xbd\xf7\xd9\xfc\xaa\xc4\xfa\x20\xe1\xcb\xdf\xf3\x7b\xc8\xb7\x99\x55\xca\x83\xdc\x81\x7e\xf7\x27\x00\x00\xff\xff\x8f\xd3\xc9\x6a\x11\x03\x00\x00" +var _idtablestakingAdminSet_non_operationalCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x8f\xda\x3e\x10\xc5\xef\xf9\x14\x4f\x7b\xf8\x8b\xbd\x24\x1c\xfe\xea\x21\x2a\x5d\xd1\xc2\x4a\x48\x88\x56\x0b\x3d\x54\xab\x3d\x18\x7b\x42\xdc\x1a\x4f\x64\x0f\x0d\x12\xe2\xbb\x57\x4e\x08\xa5\xdd\xed\x5c\x90\xf0\xe4\xbd\xdf\xcc\x1b\xbb\x6f\x38\x08\x1e\x1d\xb7\x8b\xd9\x46\x6d\x1d\xad\x45\xfd\xb0\x7e\x87\x2a\xf0\x1e\xe3\xe3\x62\x36\x5f\x6d\x16\x9b\x6f\x9b\xe9\xc7\xe5\x7c\x3a\x9b\x3d\xcd\xd7\xeb\x2c\x2b\x0a\x6c\x6a\x1b\x21\x41\xf9\xa8\xb4\x58\xf6\x88\x24\x11\x52\x13\x9c\x8d\x02\xae\xe0\xd9\x50\x44\x5b\x33\x54\x20\x78\xf6\xe0\x86\x82\x4a\xcd\xca\x25\x09\xe5\x4d\x7a\x8e\x84\x40\xad\x0a\x26\xa2\xb5\xce\x61\x4b\x68\xad\xd4\x35\x39\x93\x65\x37\x0e\x23\x6b\x62\x89\xe7\xb5\x04\xeb\x77\x2f\xf7\x38\x65\x19\x00\x14\x05\x96\xac\x95\xc3\x4f\x15\x6c\x9a\x00\x15\x07\x28\x04\xaa\x28\x90\xd7\x04\xe1\x8e\x6b\x31\x43\x37\x21\xa6\x66\x6f\x3d\x78\xfb\x9d\xb4\x74\x12\x8e\x04\x2a\xfd\xf9\x44\x55\x89\xff\x5e\x6f\x23\xef\x3e\xe9\xfd\x9a\x40\x8d\x0a\x34\x52\x5a\x4b\x89\xe9\x41\xea\xa9\xd6\x7c\xf0\x92\x88\x70\xa9\xa2\xc0\x96\x43\xe0\xf6\x2d\x10\xf5\xb7\x7f\xaa\x48\xae\xca\x07\x08\x4c\x90\xe4\xf3\x5e\xe3\xfd\x3f\x89\x3e\x8c\x52\x4c\xe5\x1b\xf9\xe5\x97\xdf\xae\x6d\x2d\x1c\xd4\x8e\xbe\x28\xa9\xef\xaf\x86\xa9\x1e\x1e\xd0\x28\x6f\xf5\xe8\xee\x13\x1f\x9c\x81\x67\x19\xb8\xff\xa0\x8e\x97\xa3\xe8\xf8\xee\x7a\x8d\x73\xbf\x0e\x3a\x92\x3e\x08\xdd\xcc\x9e\xb6\x99\xb2\x5f\xda\x28\x25\x4e\x7d\x5e\x25\xbe\x3e\xda\xe3\xbb\xff\xcf\x98\xe0\x74\xbe\xf6\xa6\xa8\xac\x81\xf5\xb0\x26\xde\x68\xa4\x1a\x34\x9e\xad\x79\xc1\x04\xe3\x7c\x7c\x7d\xbe\x78\xbf\xda\x5b\x1e\x49\x56\xec\x3f\xff\xbe\xb3\x55\x3a\xc2\xa4\x32\x1a\xe4\x06\xfa\xf3\xaf\x00\x00\x00\xff\xff\x2e\x67\x28\x92\xfc\x02\x00\x00" func idtablestakingAdminSet_non_operationalCdcBytes() ([]byte, error) { return bindataRead( @@ -2339,11 +2300,11 @@ func idtablestakingAdminSet_non_operationalCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_non_operational.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0x68, 0xc4, 0x60, 0xca, 0x3c, 0x78, 0xdf, 0x66, 0x1d, 0xb4, 0xe3, 0xec, 0x5f, 0xa3, 0xa7, 0x1f, 0xe1, 0x64, 0x1e, 0xd3, 0xcf, 0x20, 0xfe, 0xff, 0x7b, 0x98, 0xdb, 0xaa, 0x39, 0x72, 0xcc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x32, 0x99, 0x51, 0x92, 0xa9, 0x12, 0x60, 0xc4, 0xab, 0xdc, 0x1b, 0x6d, 0x9, 0x41, 0xee, 0xae, 0xda, 0xfa, 0xb1, 0x2f, 0xe9, 0x74, 0x21, 0x64, 0x50, 0x37, 0xde, 0xc7, 0x84, 0xda, 0x31, 0x2b}} return a, nil } -var _idtablestakingAdminSet_open_access_node_slotsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xd1\x6a\xdb\x40\x10\x7c\xd7\x57\x0c\x7e\x08\x32\x04\x89\x3e\xb4\x14\xd1\x34\xa4\x0d\x85\x40\x69\x4b\x9d\xf6\x7d\x7d\x5a\x59\x97\xc8\xb7\xe2\x6e\x65\xd7\x18\xff\x7b\xb9\x93\xd5\xa6\xb6\xbb\x2f\x82\xd3\xce\xec\xec\xce\xd8\x75\x2f\x5e\xf1\xa9\x93\xed\xc3\xfd\x23\x2d\x3b\x5e\x28\x3d\x5b\xb7\x42\xe3\x65\x8d\xd9\xf9\x8f\x59\x96\x95\x65\x89\xc7\xd6\x06\xa8\x27\x17\xc8\xa8\x15\x87\xc0\x1a\xa0\x2d\x43\x7a\x76\x70\x52\x33\x42\x27\x1a\xd0\x88\x07\x19\xc3\x21\xa4\xd7\x90\xe0\x5f\x4f\x9a\xc8\x73\x02\xbb\x61\xbd\x64\x0f\x69\x8e\xef\xda\x92\xa6\x9f\x91\x35\x21\x99\x4c\x0b\xee\xc5\xb4\xd7\xf0\xbc\x22\x5f\x77\x91\x5a\x1a\xb4\xb2\xc5\x9a\xdc\x6e\x1c\x83\x27\xb1\x8e\x6b\x58\x97\x88\x7b\xcf\x1b\x2b\x43\x18\xa1\xc5\x71\x07\xde\x25\x72\xcf\x8d\xe7\xd0\x72\xfd\x82\x3d\xcb\x5e\x6c\x97\xc7\xf1\x77\x69\x89\x45\xd4\x55\xe1\xc7\x83\xd3\x57\x6f\xe6\xd8\x67\x19\x00\x94\x25\x3e\x8b\xa1\x0e\x1b\xf2\x36\x5e\x6b\x5c\x3b\x32\xb3\x67\x67\x18\x2a\x49\xc7\xc3\x3d\xd2\x35\x71\x57\xaf\xad\x83\x2c\x9f\xd8\x68\xa2\xe8\x58\x41\xf1\xf1\x3b\x37\x15\xae\xce\x2f\x5f\x24\xc8\x38\xaf\xf7\xdc\x93\xe7\x9c\x8c\xd1\x0a\x34\x68\x9b\x7f\x10\xef\x65\xfb\x93\xba\x81\xe7\xb8\xba\x33\x46\x06\xa7\x51\x20\x8e\x55\x96\x58\xa6\x9e\x4b\xba\xe8\x54\x4e\xac\xc0\x5d\x53\x4c\x9a\x70\x13\x6d\xd4\x22\xa8\x78\x5a\x71\x31\x72\xbd\xfb\xaf\xd0\xf7\x79\x8c\x50\x75\x21\x5b\xc5\xf1\x9b\xda\x16\x23\xdd\x37\xd2\x76\xfe\x67\x70\xac\xdb\x5b\xf4\xe4\xac\xc9\x67\x1f\x65\xe8\x6a\x38\xd1\x49\xff\x3f\xea\xc3\x31\xb0\x49\xe7\x6c\xe4\x38\x8c\x57\xe2\x5f\x6c\x06\xe5\xc9\xa4\x58\x1b\xf2\x29\x4b\xd1\xc6\x7b\x9b\xcc\x25\xbf\xab\xb0\x8f\x86\xbe\x9d\x7c\x3d\xe0\x06\xfb\xc3\x5f\xd4\x39\xa2\xb0\x2e\xb0\xd7\xfc\x99\x77\x15\x5e\x5f\xe3\x24\x20\xf3\xec\xf2\x11\x8b\xc0\x1a\xb3\xff\x45\x6a\x4e\x8d\xf9\x44\x1d\xaa\x0b\x53\xa6\x6d\x0e\xbf\x03\x00\x00\xff\xff\x2c\x22\xfd\x94\xa8\x03\x00\x00" +var _idtablestakingAdminSet_open_access_node_slotsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xc1\x6a\xdb\x40\x10\xbd\xeb\x2b\x1e\x39\x14\x05\x82\xd4\x1e\x5a\x8a\x68\x1a\xd4\x2a\x05\x43\x48\x4b\xec\x1e\x7a\x5c\xaf\x46\xd6\x26\xf2\x8e\xd8\x1d\xd9\x31\xc6\xff\x5e\x76\x65\xb5\xa9\xe3\xce\x45\xb0\x9a\xf7\xe6\xcd\xbc\x67\xd6\x3d\x3b\xc1\xb7\x8e\xb7\xb3\x6a\xa1\x96\x1d\xcd\x45\x3d\x19\xbb\x42\xe3\x78\x8d\xb7\xcf\xb3\xea\xf6\x7e\x31\x5b\xfc\x5a\x94\x5f\xee\x6e\xcb\xaa\x7a\xb8\x9d\xcf\x93\x24\xcf\x73\x2c\x5a\xe3\x21\x4e\x59\xaf\xb4\x18\xb6\xf0\x24\x1e\xd2\x12\xb8\x27\x0b\xcb\x35\xc1\x77\x2c\x1e\x0d\x3b\x28\xad\xc9\xfb\xf8\xea\x23\xfc\xfb\x49\x93\x72\x14\xc1\x76\x58\x2f\xc9\x81\x9b\xe3\xbb\xb4\x4a\xe2\xcf\xc0\x1a\x91\xa4\x74\x0b\xea\x59\xb7\x57\x70\xb4\x52\xae\xee\x02\x35\x37\x68\x79\x8b\xb5\xb2\xbb\x71\x0c\x1e\xd9\x58\xaa\x61\x6c\x24\xee\x1d\x6d\x0c\x0f\x7e\x84\x66\xc7\x1d\x68\x17\xc9\x1d\x35\x8e\x7c\x4b\xf5\x0b\xf6\x24\x79\xb1\x5d\x1a\xc6\x97\x71\x89\x79\xd0\x55\xe0\xe7\xcc\xca\xbb\x0f\x97\xd8\x27\x09\x00\xe4\x39\xee\x58\xab\x0e\x1b\xe5\x4c\x38\xe4\xb8\x76\x60\x26\x47\x56\x13\x84\xa3\x8e\x59\x85\x78\x68\x94\xf5\xda\x58\xf0\xf2\x91\xb4\x44\x8a\x8e\x04\x2a\x3c\x3e\x50\x53\xe0\xcd\x6b\x53\xb2\x08\x19\xe7\xf5\x8e\x7a\xe5\x28\x55\x5a\x4b\x81\x72\x90\xb6\xd4\x9a\x07\x2b\x41\x11\x8e\x95\xe7\x58\xb2\x73\xbc\x3d\x27\x44\x9d\xce\x0f\xe5\xa9\x6b\xb2\x49\x04\xae\x83\x6f\x92\x8d\x1c\x9f\xfe\xab\xe8\x73\x1a\xd2\x52\x9c\x89\x51\x76\xfc\xc6\xb6\xb9\xb0\x53\x2b\xfa\xa1\xa4\xbd\xfc\x33\x30\xd4\xcd\x0d\x7a\x65\x8d\x4e\x2f\xbe\xf2\xd0\xd5\xb0\x2c\x93\xee\x7f\x54\xfb\x63\x36\xa3\xbe\x8b\x91\xe3\x30\x9e\x83\x9e\x49\x0f\x42\x93\x1b\xa1\x36\xca\xc5\xd0\x04\xbf\x2a\x13\x5d\x54\x6e\x57\x60\x1f\x9c\xfb\x38\x19\x78\xc0\x35\xf6\x87\xbf\xa8\xd7\x88\xcc\x58\x4f\x4e\xd2\x27\xda\x15\x78\x7f\x85\x93\x24\x5c\x26\xc9\xf9\xeb\x65\x9e\x24\xa4\xfc\x9e\x6b\x8a\x9d\xe9\xc4\xed\x8b\x33\x63\xa6\x75\x0e\xbf\x03\x00\x00\xff\xff\xc9\x09\xa3\xcf\x94\x03\x00\x00" func idtablestakingAdminSet_open_access_node_slotsCdcBytes() ([]byte, error) { return bindataRead( @@ -2359,11 +2320,11 @@ func idtablestakingAdminSet_open_access_node_slotsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_open_access_node_slots.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3e, 0x9e, 0xf6, 0xa, 0x8d, 0x4, 0x32, 0x57, 0x37, 0xcc, 0x87, 0x7f, 0x70, 0xba, 0x58, 0xeb, 0x64, 0xa4, 0x47, 0xbb, 0xd5, 0xf6, 0xdf, 0x5d, 0x55, 0x98, 0xcb, 0x43, 0x52, 0xa, 0x5a, 0x5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8a, 0x92, 0x6b, 0x66, 0xe9, 0x67, 0xd6, 0x9f, 0x61, 0x14, 0xbe, 0xf1, 0x4, 0x20, 0x33, 0xcf, 0xff, 0xee, 0x16, 0x1e, 0x5, 0xdb, 0xed, 0x7c, 0xe0, 0x4e, 0x35, 0x18, 0x75, 0x70, 0x77, 0xa7}} return a, nil } -var _idtablestakingAdminSet_slot_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\xc1\x8e\xdb\x36\x10\xbd\xfb\x2b\x5e\x7d\x08\xbc\x48\x22\xd7\x40\x53\x04\x46\xdd\x20\xed\xa2\x80\xd1\x1c\x8a\x6e\xda\x4b\xd1\xc3\x98\x1a\x99\xec\x52\xa4\x40\x8e\xec\x18\x8b\xfd\xf7\x82\xa4\x2d\x59\x1b\xb7\xbc\x18\x32\x67\xde\xbc\x79\xf3\x86\xa6\xed\x7c\x10\xfc\x62\xfd\x71\x7b\xff\x99\x76\x96\x1f\x84\x1e\x8d\xdb\xa3\x09\xbe\xc5\xfc\xeb\x8b\xf9\x6c\xb6\x5c\x2e\xf1\x59\x9b\x08\x09\xe4\x22\x29\x31\xde\x21\xb2\x44\x88\x66\x44\xeb\x05\xd6\xb4\x46\x22\x1a\x1f\xc0\xa4\x34\x9c\xaf\x19\x72\xea\x18\x25\x3d\x05\x7d\x2a\x31\x26\x82\xf0\xc7\xd6\xc9\xea\x7b\x50\x08\x74\x82\x68\x12\x28\xef\x84\x8c\x2b\x98\x19\x2e\xa1\xe5\xe4\x17\x88\xc6\xc1\x87\x9a\x43\xa1\xfc\xed\xdb\xef\x2a\x6c\x25\xc1\xf6\x91\x6b\x88\x47\xe7\xbb\xde\x92\x70\x4e\x26\xd4\x26\x33\xa6\x70\xae\xa4\x29\xe2\x91\x4f\x11\x51\x9b\x46\xb8\xc6\xeb\x15\xa2\x2f\x77\xa2\xf9\x04\xb2\x66\xef\x72\xf2\xd1\x88\xce\x84\xd8\xf5\x2d\x07\x4a\xd1\x03\x91\x58\x08\xac\xde\xbe\xbb\x48\xc4\x81\x73\x7b\xce\x8b\xe6\x80\x96\x95\x26\x67\x62\x8b\xa3\x36\x4a\x83\xac\xf5\xc7\x22\x12\x21\x76\xac\x4c\x63\xb8\xce\xb9\xae\x6f\x77\x1c\xe0\x9b\xac\xd4\x4b\x21\x83\xb7\x8c\x8e\x03\xb8\xf3\x4a\x57\x39\x63\xdb\x14\xc6\x63\x91\xd4\x17\xe1\x40\xb6\xe7\x34\x9d\x73\x9d\x01\xe0\x0d\x8c\xe0\x68\xac\x85\x3f\x70\x08\xa6\x2e\xfa\x1c\x35\x09\x1f\x38\xe4\xf4\x1d\x73\x9e\xec\xa5\xf1\xe9\xcc\xab\xd9\xec\xea\x6b\x31\xce\x74\x8d\xbf\xca\x40\xff\xbe\xc3\xd3\x6c\x06\x00\xcb\x25\x3e\x79\x45\x16\x07\x0a\x26\xd9\xe9\x4c\x27\x70\xc3\x81\x9d\xe2\x34\xa8\xa4\xec\xf6\x1e\xd9\x6e\xf8\x58\xb7\x69\xb2\xbb\x7f\x58\x49\x86\xb0\x2c\xa0\xf4\xe7\xef\xdc\xac\xf1\xea\x6b\x6b\x56\x39\xa5\xd4\xeb\x02\x77\x14\x78\x41\x4a\xc9\x1a\xd4\x8b\x5e\xfc\xe4\x43\xf0\xc7\x3f\x93\x1e\x77\x78\xf5\x51\x29\xdf\x3b\x49\x04\x71\x3e\xcb\x25\x76\x39\xe6\x16\x2f\x7a\x49\x27\x9d\xc8\xb6\xa9\x2e\x9c\xb0\x41\xaa\x56\x45\xf1\x81\xf6\x5c\x15\xac\x1f\xfe\x93\xe8\x8f\x8b\xe4\x97\xf5\x8d\xe5\xab\xce\xbf\x39\xec\xa1\xc0\xfd\x46\xa2\xef\x86\xc2\xe9\x7c\xf8\x80\x8e\x9c\x51\x8b\xf9\xcf\xbe\xb7\xc9\x88\x72\xe1\x3f\x61\x1f\xcf\x1b\x9d\x79\xce\x0b\xc6\x73\x51\x89\xbf\xb0\xea\x85\xa7\x1a\x64\x50\x98\x06\x47\x46\xed\x33\x6c\x31\xe7\x09\xfc\x85\x94\xd8\x13\xbc\xbb\xde\xf3\x6c\xc5\xc1\x57\x03\x94\x69\xae\xd6\xbc\xb2\xec\xf6\xa2\xf1\xcd\x06\xef\xae\xca\xe5\x51\x95\x26\xae\x1f\x13\x0a\xfb\xbe\x65\x27\x68\xfb\x38\x56\xff\xbf\xaa\xf3\x51\x9b\x73\x6f\xe9\x1c\x28\x8c\x1c\xee\x87\xbd\x5f\xe3\x29\xf9\xf3\xfd\xfa\xfc\xee\x3c\x63\x83\xa7\xe7\x49\xd6\xf8\x48\xfc\xca\xa7\x12\xf7\x1e\x1b\xac\x46\xec\xe4\xdf\x01\x3b\x3d\x42\x57\x6f\xda\xb4\xc1\x1b\x0c\x2a\xe3\x22\x07\x59\x3c\x26\xf0\x49\xad\x37\x63\xf8\x74\xdc\x93\x28\x6c\x5e\x7c\xbf\xc6\xea\x96\x00\x13\x83\x56\x91\xe5\x61\x20\x39\xd9\xd7\x1b\x14\x2f\x46\x79\xfe\x37\x00\x00\xff\xff\xb3\xaf\x59\xc4\x24\x06\x00\x00" +var _idtablestakingAdminSet_slot_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x4d\x6f\x23\x45\x10\xbd\xfb\x57\x3c\x72\x40\x5e\xed\xee\x18\x4b\x2c\x5a\x59\x98\x95\xc1\x41\xb2\x88\x10\x8a\xcd\x01\x21\x0e\xe5\x9e\x1a\x77\x93\x9e\xee\x51\x77\x8d\x1d\x2b\xca\x7f\x47\xdd\x33\xfe\x98\x60\xe8\x4b\x34\x71\xd5\x7b\xaf\xaa\x5e\x95\xa9\x1b\x1f\x04\x3f\x5b\x7f\x58\x2d\x37\xb4\xb5\xbc\x16\x7a\x32\x6e\x87\x2a\xf8\x1a\xdf\x3c\xaf\x96\xf7\xbf\x6e\x56\x9b\x3f\x36\x8b\x1f\x1f\xee\x17\xcb\xe5\xe3\xfd\x7a\x3d\x1a\x4d\x26\x13\x6c\xb4\x89\x90\x40\x2e\x92\x12\xe3\x1d\x22\x4b\x84\x68\x46\xb4\x5e\x60\x4d\x6d\x24\xa2\xf2\x01\x4c\x4a\xc3\xf9\x92\x21\xc7\x86\xd1\xa5\xa7\xa0\x87\x2e\xc6\x44\x10\x7e\x5f\x39\x99\x7e\x07\x0a\x81\x8e\x10\x4d\x02\xe5\x9d\x90\x71\x1d\x66\x86\x4b\x68\x39\xf9\x0d\xa2\x71\xf0\xa1\xe4\xd0\x8b\xfe\xf8\x6d\x81\x95\x24\xd8\x36\x72\x09\xf1\x68\x7c\xd3\x5a\x12\xce\xc9\x84\xd2\x64\xc5\x14\x7a\x26\x4d\x11\x4f\x7c\x8c\x88\xda\x54\xc2\x25\xde\x4f\x11\x7d\xf7\x9b\x68\x3e\x82\xac\xd9\xb9\x9c\x7c\x30\xa2\xb3\x20\x76\x6d\xcd\x81\x52\xf4\x59\x48\xec\x04\x4c\x3f\x7e\x3a\xb5\x88\x03\xe7\xf2\x9c\x17\xcd\x01\x35\x2b\x4d\xce\xc4\x1a\x07\x6d\x94\x06\x59\xeb\x0f\x5d\x93\x08\xb1\x61\x65\x2a\xc3\x65\xce\x75\x6d\xbd\xe5\x00\x5f\xe5\x4e\xbd\x6d\x64\xf0\x96\xd1\x70\x00\x37\x5e\xe9\x22\x67\xac\xaa\x4e\xf1\x85\x24\xd5\x45\xd8\x93\x6d\x39\x4d\xa7\xe7\x39\x03\x7c\x80\x11\x1c\x8c\xb5\xf0\x7b\x0e\xc1\x94\x5d\x7f\x0e\x9a\x84\xf7\x1c\x72\xfa\x96\x39\x4f\xf6\x54\xf8\x70\xe6\xc5\x68\x74\xf5\x35\xbe\xcc\x74\x86\x3f\xbb\x81\xfe\xf5\x0e\x2f\xa3\x11\x00\x4c\x26\x78\xf0\x8a\x2c\xf6\x14\x4c\x72\x5a\x2f\x27\x70\xc5\x81\x9d\xe2\x34\xa8\xd4\xd9\xd5\x12\xd9\x89\x58\x94\x75\x9a\xec\xf6\x6f\x56\x92\x21\x2c\x0b\x28\xfd\xf3\x91\xab\x19\xbe\xfe\xb7\x6b\x8b\x9c\xd2\xf1\x35\x81\x1b\x0a\x3c\x26\xa5\x64\x86\x45\x2b\x7a\xa1\x94\x6f\x9d\x24\x45\xe8\xdf\x64\x82\xad\x0f\xc1\x1f\x6e\x09\xa1\xb7\xfc\xe9\x45\xb6\x55\x71\x12\x81\x39\x12\x7c\xd1\x61\x7c\xff\x9f\x8a\x7e\x18\x27\x63\xcc\x6e\xec\x59\xd1\xff\xcd\x61\x6b\xf1\x81\x76\xfc\x1b\x89\x7e\x77\x26\x4c\xef\xcb\x17\x34\xe4\x8c\x1a\xdf\xfd\xe4\x5b\x9b\x1c\x27\x27\xdd\x03\xd5\xb1\x5f\xde\xac\xef\xae\xc3\x78\xed\xda\xc1\xcf\xac\x5a\xe1\x61\xed\x19\x14\xa6\xc2\x81\x51\xfa\x0c\xdb\xb9\xf0\x08\x7e\x26\x25\xf6\x08\xef\xae\x17\x3a\x7b\xee\x6c\xa0\x33\x94\xa9\xae\xf6\xb9\xb0\xec\x76\xa2\xf1\xd5\x1c\x9f\xae\xe8\xf2\x4c\xba\x22\xae\xaf\x06\x85\x5d\x5b\xb3\x13\xd4\x6d\xbc\xb0\xff\x1f\xeb\xdd\xa5\x37\x7d\x6d\xe9\xed\x29\x5c\x34\x2c\xcf\x0b\x3e\xc3\x4b\x32\xe2\xe7\x59\x7f\x60\x5e\x31\xc7\xcb\xeb\x20\xeb\x72\x0d\x7e\xe1\x63\x17\xf7\x19\x73\x4c\x2f\xd8\xc9\xa8\x67\xec\x74\x6d\xae\x8e\xd7\xb0\xc0\x1b\x0a\x0a\xe3\x22\x07\x19\x3f\x25\xf0\x01\xd7\x87\x4b\xf8\x70\xdc\x83\x28\xcc\xdf\x7c\xbf\xc7\xf4\x56\x03\x06\xc6\x2c\x22\xcb\xfa\x2c\x72\xb0\x98\x37\x24\x9e\x8c\xf2\xfa\x4f\x00\x00\x00\xff\xff\x2a\x66\x95\xb5\x0f\x06\x00\x00" func idtablestakingAdminSet_slot_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -2379,11 +2340,11 @@ func idtablestakingAdminSet_slot_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_slot_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0xf1, 0xe8, 0x24, 0xbe, 0xac, 0x4a, 0x5d, 0x51, 0xdf, 0xdb, 0x3, 0x15, 0xe4, 0xb, 0xaa, 0x9e, 0x25, 0x75, 0x49, 0xeb, 0x51, 0x93, 0xbb, 0x48, 0x33, 0xbf, 0x80, 0x61, 0x29, 0xfd, 0x66}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0x71, 0xda, 0x79, 0x1d, 0x92, 0xc5, 0x37, 0x9e, 0x88, 0x17, 0x33, 0x62, 0x8d, 0xf5, 0x30, 0x3e, 0xb6, 0x8f, 0x45, 0x7f, 0x24, 0x43, 0x79, 0x7b, 0xb4, 0x85, 0xa8, 0x41, 0xc8, 0xed, 0x7e}} return a, nil } -var _idtablestakingAdminStart_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x31\x6f\xc2\x30\x10\x85\xf7\xfc\x8a\xa7\x0c\x28\x2c\xc9\x8e\xda\x22\x5a\x54\x09\xa9\x43\x55\x50\xf7\xc3\xb9\x90\x14\x63\x47\xf6\xa5\xb4\x42\xfc\xf7\xca\x0e\xa9\xa0\xd0\x5b\x2c\xd9\x77\xef\x7d\x7e\xd7\xec\x5a\xeb\x04\xcf\xda\xee\x17\xf3\x15\xad\x35\x2f\x85\xb6\x8d\xd9\xa0\x72\x76\x87\xf4\xfa\x21\x4d\x92\xa2\xc0\xaa\x6e\x3c\xc4\x91\xf1\xa4\xa4\xb1\x06\x2d\x7d\x7b\x38\xde\x93\x2b\x3d\xc4\x82\xb4\x86\xd4\x0c\x2f\xb4\xe5\x12\xc6\x96\xec\x93\xe4\x7c\xe2\x90\x24\x00\x50\x14\x78\xb1\x8a\x34\x3e\xc9\x35\xc1\x07\x95\x75\x20\x38\xae\xd8\xb1\x51\x1c\xd4\x82\xd2\x62\x8e\xc8\x81\x59\xb9\x6b\x0c\xec\xfa\x83\x95\x44\x09\xcd\x02\x0a\x97\x6f\x5c\x4d\x30\xba\x66\xce\xe3\x48\xef\xd7\x3a\x6e\xc9\x71\x46\x4a\xc9\x04\xd4\x49\x9d\x3d\x5a\xe7\xec\xfe\x9d\x74\xc7\x63\x8c\x66\x4a\xd9\xce\xc8\x18\x87\xd8\x7f\x62\x5c\xc7\x9e\x5b\x5c\xf4\x17\x27\x94\x67\x5d\xe5\x03\x13\xee\x11\xdc\x72\x2f\xd6\xd1\x86\xf3\x5e\xeb\xee\x5f\xd0\x87\x2c\x84\x3f\xb9\xb1\x95\xfc\x74\xc6\xb6\x65\x2f\xf7\x4a\x52\x8f\x7f\x8d\x43\x4d\xa7\x68\xc9\x34\x2a\x4b\x9f\x6c\xa7\x43\xf8\x32\xf0\x5f\xd0\xfb\xd3\xaa\x23\x67\xda\x6b\x1c\xfb\x94\xf8\x8b\x55\x27\x7c\x96\xc1\xc5\x8f\x72\x2f\xe4\x64\x80\xe9\xe2\x42\xb3\x41\xe0\xf8\x13\x00\x00\xff\xff\x18\xdb\x97\xa0\x55\x02\x00\x00" +var _idtablestakingAdminStart_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xc1\xea\xda\x40\x10\x87\xef\x79\x8a\x1f\x1e\x4a\xbc\x24\x3d\x4b\x5b\x49\x1b\x0b\x01\x29\xc5\xe4\xd2\xe3\xb8\x99\x98\xd4\x75\x37\xec\x4e\xaa\x45\x7c\xf7\xb2\x89\x29\xda\xfa\x9f\xcb\xc2\x32\xf3\xcd\x37\x33\xdd\xa9\xb7\x4e\xf0\x55\xdb\x73\x91\x57\xb4\xd7\x5c\x0a\x1d\x3b\x73\x40\xe3\xec\x09\xef\x2f\x45\xbe\xf9\x56\x15\xd5\x8f\x2a\xfb\xbc\xdd\x64\x79\xbe\xdb\x94\x65\x14\xa5\x29\xaa\xb6\xf3\x10\x47\xc6\x93\x92\xce\x1a\xf4\xf4\xdb\xc3\xf1\x99\x5c\xed\x21\x16\xa4\x35\xa4\x65\x78\xa1\x23\xd7\x30\xb6\x66\x1f\x45\x8f\x15\xd7\x28\x02\x80\x34\xc5\xd6\x2a\xd2\xf8\x45\xae\x0b\x0a\x68\xac\x03\xc1\x71\xc3\x8e\x8d\xe2\x40\x0b\xa4\x22\xc7\xa8\x88\xac\x3e\x75\x06\x76\xff\x93\x95\x8c\x08\xcd\x02\x0a\x9f\x3b\x6e\x56\x78\xf7\xff\x38\xc9\x58\x32\xf5\xeb\x1d\xf7\xe4\x38\x26\xa5\x64\x85\x6c\x90\x36\x53\xca\x0e\x46\x96\xb8\x8e\x09\x77\xa9\xbd\x75\xce\x9e\x5f\x89\xd0\xbf\xfd\x43\x78\xd6\x4d\x32\x4b\xe0\x23\x02\x3e\x99\x18\x1f\xde\x34\xfa\x14\x87\x3d\xaf\x5e\x1c\x20\xb9\xbf\x63\x5a\x29\xd6\xd1\x81\xbf\x93\xb4\xcb\xbf\x0d\x43\xac\xd7\xe8\xc9\x74\x2a\x5e\x7c\xb1\x83\x0e\x5b\x96\xd9\xfb\xc9\xda\xdf\xaf\x3a\xfa\x2d\x26\xc6\x6d\x5a\x07\x5f\x58\x0d\xc2\x0f\xb3\x3f\x4d\x92\x78\x21\x27\xb3\xcc\x30\x5e\x2e\x9e\x01\xb7\x3f\x01\x00\x00\xff\xff\xeb\x9d\x33\x87\x40\x02\x00\x00" func idtablestakingAdminStart_stakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2399,11 +2360,11 @@ func idtablestakingAdminStart_stakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/start_staking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0xae, 0x60, 0x65, 0xba, 0x40, 0xc1, 0x30, 0x64, 0xff, 0xc4, 0x97, 0x57, 0xf8, 0x6d, 0x7d, 0x89, 0xc3, 0x8c, 0xef, 0x8b, 0xca, 0x84, 0xfb, 0x5c, 0xb5, 0x0, 0x2e, 0xf, 0xce, 0xda, 0x60}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc0, 0x1d, 0x9b, 0xaf, 0xf6, 0x47, 0xd8, 0xb, 0x3a, 0x65, 0x23, 0x93, 0x9b, 0xb7, 0x9, 0x9f, 0xd1, 0x20, 0x8d, 0x22, 0xc0, 0xe4, 0xc8, 0x10, 0x6b, 0xf7, 0x84, 0x52, 0xb9, 0xf6, 0xe2, 0x24}} return a, nil } -var _idtablestakingAdminTransfer_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\x41\x6b\xc2\x40\x10\x85\xef\xfb\x2b\x1e\x1e\x6c\x02\x36\xde\xc5\x96\x4a\x4b\x4b\x6f\x05\xfd\x03\x63\x1c\xe3\xd2\x75\x27\xec\x8e\x8a\x88\xff\xbd\x74\x8d\x31\x54\x4b\xe9\x75\xe7\xed\xbc\xef\xcd\xb3\xeb\x5a\x82\xe2\xd5\xc9\xee\xfd\x65\x46\x73\xc7\x53\xa5\x4f\xeb\x2b\x2c\x83\xac\xd1\xbb\x1e\xf4\x8c\xd1\x40\x3e\x52\xa9\x56\x3c\x0e\x06\xa8\x03\xd7\x14\x38\x93\x9d\xe7\x30\x02\x6d\x74\x95\x3d\x53\x4d\x73\xeb\xac\x5a\x8e\x39\xfa\x93\xb2\x94\x8d\xd7\x01\x02\x97\x6c\xb7\xad\x6c\xaa\x12\xa8\xe2\x8b\x22\xc7\xc1\x18\x00\x18\x0e\xf1\xc6\x0a\x42\x6c\x80\x68\xb1\xb6\x1e\xe5\x79\xef\x3e\xa9\x1c\x2b\x96\x4e\x76\x0d\xdc\x24\x69\x1e\x90\x48\x8a\xb2\xc3\x50\xc4\x93\x53\x61\x63\xdc\xf0\xb8\x7f\x1d\xac\x48\x9f\x1f\xb3\x1b\x93\xee\xf6\x86\xf8\x83\x74\x95\x9b\x96\xe1\x82\x85\xf1\x7d\x1b\xb2\x35\x75\x42\x8b\xf1\xd3\xef\x9e\xdf\xc7\x1e\xdd\x68\xe1\x2f\x67\xa9\xb2\x8b\x73\x51\xb1\xce\xf6\x35\x67\x79\x33\x5e\x70\xd4\x20\xfb\xee\xcd\xce\xa7\x9d\xd2\x96\xa1\x2b\xee\x82\xab\xa4\x97\x33\xfc\x5d\x04\x9d\x3a\x41\x13\x23\x7d\xbe\xca\x16\x69\xcb\xd9\xcf\x0e\x06\x50\xf9\x5f\x20\xe0\x68\x8e\x06\xe6\x2b\x00\x00\xff\xff\x7a\xe3\x3f\x16\x92\x02\x00\x00" +var _idtablestakingAdminTransfer_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x91\xcf\x4f\xea\x40\x10\xc7\xef\xfb\x57\xcc\xe9\xbd\x36\xe1\xb5\xef\x4c\xd0\x58\x2d\x26\x24\xc4\x18\xdb\x8b\xc7\xa1\x0c\x65\xc3\xb2\xb3\xd9\x0e\x45\x42\xf8\xdf\x4d\x4b\xad\x88\x78\xc0\xeb\xce\xce\xf7\xc7\x7c\xf4\xda\xb1\x17\x78\x34\xbc\x9d\xa4\x39\xce\x0c\x65\x82\x2b\x6d\x4b\x58\x78\x5e\xc3\xff\xb7\x49\x3a\x7e\xca\x27\xf9\x6b\x9e\xdc\x4f\xc7\x49\x9a\xbe\x8c\xb3\x4c\x29\xf1\x68\x2b\x2c\x44\xb3\x85\xbd\x02\x70\x9e\x1c\x7a\x0a\x78\x6b\xc9\x0f\x21\xd9\xc8\x32\x29\x0a\xde\x58\x19\x80\xa7\x82\x74\x7d\xf6\x1c\xc2\x5e\x29\x00\x80\x38\x86\xa9\xb6\x2b\x90\x25\x41\xd5\x59\xe3\x7c\xad\x2d\x14\xe8\x70\xa6\x8d\x96\x1d\x08\x03\x82\xf3\xba\x46\x21\x70\x06\x0b\x6a\x77\x5b\xb7\xc8\x68\xbb\x1a\xfd\xf9\xde\x20\x4a\x1a\x99\xdb\x20\xee\x16\xe3\x85\xe1\x6d\x37\x6b\x47\x03\x10\xf4\x25\xc9\xf0\x42\xfd\xe8\xf4\x63\x26\xec\xb1\xa4\x67\x94\x65\xd8\x1a\x1b\x12\x38\x57\x83\x9b\x2e\x4f\x49\xf2\xd0\x47\xff\x55\xb0\x50\xf5\x2e\x27\x47\x18\xfd\xeb\x4f\x19\x19\xc6\xf9\xe8\xee\x67\xe9\x06\xde\x75\xb5\x8e\x8e\x5c\x06\x9f\x8e\x4d\x93\x7c\xe7\x28\x08\xbb\xf1\x9c\x2a\xf1\xbc\x3b\x09\xd5\x33\xcc\xb0\xa6\x96\xe1\x57\x6a\xcd\xcb\x47\xe8\xbf\x15\xe0\x11\x3e\x54\x47\xe7\x76\xb9\xef\x54\x61\x4d\xc1\x05\x46\x7c\x2d\x9f\x83\x3a\x28\x50\xef\x01\x00\x00\xff\xff\xd8\xed\xd8\x42\xda\x02\x00\x00" func idtablestakingAdminTransfer_adminCdcBytes() ([]byte, error) { return bindataRead( @@ -2419,11 +2380,11 @@ func idtablestakingAdminTransfer_adminCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/transfer_admin.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0x0, 0xac, 0x5d, 0xe7, 0x0, 0x5b, 0x3b, 0x2d, 0x66, 0xa7, 0xb7, 0x92, 0xd3, 0x4b, 0x2b, 0xe1, 0xd1, 0xb3, 0x8, 0xa, 0x34, 0x56, 0x6b, 0x24, 0x16, 0xd3, 0xe9, 0xa4, 0xf5, 0x60, 0x21}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe6, 0xd2, 0x4c, 0xe2, 0xed, 0x2d, 0xe4, 0x8c, 0x11, 0xed, 0x41, 0x67, 0xc9, 0xf2, 0x86, 0xbe, 0x14, 0x7c, 0x66, 0x91, 0x5e, 0x28, 0x28, 0x97, 0xc5, 0x23, 0x5b, 0xc6, 0xcb, 0x36, 0x2e, 0xdf}} return a, nil } -var _idtablestakingAdminTransfer_fees_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x31\x6b\xc3\x30\x10\x46\x77\xfd\x8a\xaf\x19\x5a\x07\x92\x78\x0f\xa1\x34\x4b\xa6\x6c\x85\xee\x57\xe5\x9c\x88\xc8\x3a\x21\x9d\x1d\x4a\xc9\x7f\x2f\x56\x6d\x43\x0a\xf5\x66\xf1\xee\xe3\x3d\xd7\x46\x49\x8a\x83\x97\xdb\x81\x39\xa3\x49\xd2\x62\x31\xfd\x2e\x8c\xd1\x44\x21\x93\x55\x27\x01\xdf\xc6\x00\x40\x4c\x1c\x29\x71\x25\xb7\xc0\x69\x0b\xea\xf4\x52\x1d\x85\x4e\x1f\xe4\x3b\x5e\xe2\x79\x6f\xad\x74\x41\x57\x48\x6c\xd9\xf5\x33\xf3\x4e\x3d\xff\x61\x96\xd3\xe6\xf0\xd5\x35\x8e\x2e\x5c\xa1\x17\x46\x56\xba\xba\x70\x06\x9d\x5a\x17\x60\x29\xd2\xa7\xf3\x4e\xbf\xa0\x02\x42\x4c\xae\x27\x65\x44\x4f\x96\xe7\x7b\xcf\x8a\x86\x39\xef\xcb\xcd\x6e\x8d\x22\xb8\xc9\x2a\x89\xce\xbc\xf1\x42\xa7\xdd\xdb\x94\xb6\x29\x94\xcb\x9a\x48\x25\xbd\x56\x43\xf8\x16\xf5\x08\xd7\xcd\x88\x15\x6a\xf9\xf4\x20\x39\x74\x14\xc9\x47\xad\xe1\x65\x2a\x7e\xc9\xa0\xdf\x42\x8c\x8b\xf3\xc0\x84\xcc\x5e\x99\x7a\xae\x76\xeb\xd9\x7c\x05\x95\x7f\x4d\xca\xcc\xdd\x98\xbb\x81\xf9\x09\x00\x00\xff\xff\x99\xa2\xe7\xfc\xbc\x01\x00\x00" +var _idtablestakingAdminTransfer_fees_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\xe9\xa9\x09\x24\x76\xcf\xc1\x94\x1a\x62\x9f\x02\x85\xfa\xd0\xf3\x56\x59\x27\x22\xb6\x24\xa4\x8d\xd3\x52\xf2\xef\xc5\x6a\x6c\x48\xa1\x3a\xae\x66\x86\xf7\x4c\xef\x5d\x10\xd4\x9d\xbb\xd4\xcc\x11\x6d\x70\x3d\x9e\x3e\xeb\xdd\xeb\x7b\x5d\x55\x4d\xb9\xdd\xbe\x55\x4d\xa3\x94\x04\xb2\x91\xb4\x18\x67\xf1\xad\x14\x00\xf8\xc0\x9e\x02\x2f\xdc\xc5\x72\xd8\xa0\x3c\xcb\xb1\xd4\xda\x9d\xad\xac\x10\x58\xb3\x19\xfe\x9c\x97\x53\x73\x7c\x79\x8e\x9d\xb1\x27\xc8\x91\x11\x85\x4e\xc6\x1e\x40\xfb\xde\x58\x68\xf2\xf4\x61\x3a\x23\x5f\x10\x07\x82\x0f\x66\x20\x61\xf8\x8e\x34\xcf\xfd\x8e\x05\x2d\x73\x2c\x53\xa7\x58\x23\x61\x64\x9d\xa3\x7d\xf1\x32\xe9\x64\xe9\xd7\x44\x09\x24\x2e\x3c\x2f\x46\xbb\x0d\xf2\x28\x2e\xd0\x81\xf3\xf6\x16\x4b\xa9\xe5\xc3\x1d\x5c\x43\x03\x27\xb8\x7b\x9c\xf1\x32\xc9\x3d\x46\xd0\xaf\x19\x6e\x8b\xf3\xc0\x14\xc9\x22\x0d\xbc\x28\xd6\x33\xe9\x0a\xe2\xfe\x25\x48\xf5\xab\x52\x57\x05\xf5\x13\x00\x00\xff\xff\x1e\x04\x07\xfe\x99\x01\x00\x00" func idtablestakingAdminTransfer_fees_adminCdcBytes() ([]byte, error) { return bindataRead( @@ -2439,11 +2400,11 @@ func idtablestakingAdminTransfer_fees_adminCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/transfer_fees_admin.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xc1, 0xdf, 0xbd, 0x8e, 0xdc, 0xe3, 0xd0, 0x75, 0x45, 0x73, 0x94, 0x3, 0xfc, 0x88, 0x86, 0xe4, 0xe3, 0x76, 0x0, 0x2f, 0x71, 0xde, 0x33, 0x80, 0x84, 0xa8, 0xfe, 0xdd, 0xbc, 0xa6, 0x4d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0xfe, 0x7f, 0xe5, 0x76, 0xf2, 0x7c, 0x89, 0xf0, 0xca, 0xa8, 0xbe, 0x89, 0x31, 0x37, 0xfe, 0x76, 0x6e, 0xe, 0x60, 0x1a, 0x5a, 0x20, 0x2d, 0x47, 0x78, 0x63, 0x90, 0x53, 0xe7, 0x67, 0xa7}} return a, nil } -var _idtablestakingAdminTransfer_minter_deployCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x4f\xdb\x4e\x10\xbd\xfb\x53\x3c\xe5\x80\x1c\xfd\x82\x03\x12\x20\x64\xe1\x1f\x4a\xd3\x22\x55\x50\x0e\xa5\xf4\x82\x38\x6c\xec\x49\xbc\xc2\xde\xb5\x76\xc7\x49\xad\x28\xdf\xbd\x5a\xaf\xed\x04\x9a\x4a\xf5\x61\x93\x9d\x3f\x6f\x66\xde\xce\x8c\x2c\x2b\x6d\x18\x73\xd3\x54\xac\x83\xee\x76\x57\xe8\xcd\x0f\xfd\x46\x0a\x4b\xa3\x4b\x8c\x86\xfb\x28\x08\xd8\x08\x65\x45\xca\x52\xab\xb0\xaa\x17\x85\x4c\xef\xa9\xb1\x31\x5e\x3c\x44\x74\x4f\xcd\x83\xb4\xfc\x45\xb1\x69\x5e\x27\x48\xb5\x62\x23\x52\x7e\x14\x25\xc5\x78\x62\x23\xd5\xca\x49\xb3\x83\x9b\xa1\x8d\x30\xd9\xac\xd4\xb5\xe2\x18\xcf\x77\xf2\xd7\xd5\x45\x2f\x9d\xd7\x07\xa2\x54\xa8\x4c\x66\x82\xe9\x51\x67\xf4\x20\x4b\xc9\x2e\xf0\xf3\x57\xc5\x57\x17\xaf\x63\x6c\x83\x00\xa8\x0c\x55\xc2\x50\x68\xe5\x4a\x91\x89\x21\x6a\xce\xc3\x59\x96\xdd\x53\x33\xc1\x93\x58\xd3\x4f\x51\xd4\x34\xc1\x27\x6d\x8c\xde\xb4\x97\x31\x4e\x66\x69\xea\xa2\x77\x18\x40\x41\x0c\x91\xa6\x8c\x04\x9d\x2a\xac\x44\xe3\xf0\x3c\xee\xb8\xb5\x6a\x8f\xa5\x36\x78\xa3\x06\x52\x61\xcf\x07\xb6\xad\xce\x7d\x0e\x26\x7a\xa3\xc6\x46\x22\xcb\xf6\x94\xc5\xce\x29\x1a\xae\x13\xe4\xc2\xe6\xb3\x62\xa5\x8d\xe4\xbc\xf4\xda\x77\xa2\x09\x36\x24\x57\x39\x7b\x95\xff\xef\xd3\xd8\xf9\x9c\xa7\xd3\x69\x57\x15\x04\x0c\x2d\xc9\x90\x4a\x09\xac\xc1\x39\xb5\x6f\x0a\xff\xa8\xb3\xac\x94\xca\xe5\xeb\xe4\xc2\x97\x07\xcb\xda\x88\x15\x0d\xd5\x2f\xfb\x37\xf7\xd6\x49\x57\x78\xd4\xd9\x45\x8b\x36\xd2\xcd\xc9\xd0\x1b\x51\x6b\x28\x2d\x1b\xc1\xda\xfc\x1f\xba\xd6\x89\x31\xed\xec\xa7\xef\xf1\xc6\x03\x3d\xb7\xb7\xa8\x84\x92\x69\x38\x9a\xeb\xba\xc8\xa0\x34\x63\xf1\xef\x55\x18\xb2\xba\x36\x29\x8d\xc6\x7b\x12\xe6\x86\x04\x13\xc4\xbe\x86\x6f\x52\x31\x99\xef\x9d\xed\x9f\x35\x7a\x3d\x6e\x4e\x3f\x94\x1d\xa5\x2d\xd4\x23\x6d\xbc\x45\x28\x8a\x42\x6f\x68\xe8\xd5\xf3\xb3\xfe\x8b\xce\xba\x04\xda\xe7\xee\x49\xb2\x62\x4d\xe1\xcd\xe9\x87\x38\x13\xb0\x3e\xc6\x8c\xd7\xf6\x38\xd6\x92\xe1\xf0\x48\xcb\x47\x05\xa9\x15\xe7\x48\x12\x5c\x4e\x06\x1e\x01\x94\x64\xad\x58\x51\x8c\xd1\xbc\xf7\x82\x73\x43\xeb\x87\x42\x5a\xc6\xa2\x66\xe4\x62\xed\xd8\xe9\x60\xf4\x12\x97\x3d\x7b\x8e\x94\x23\x11\x3f\xcb\x94\x63\x6c\xdd\xa0\x5d\xc7\xf0\xf3\xb6\x43\x82\xed\xae\xf5\x5a\x0b\x03\xa3\x0b\xf2\xaa\x6b\x24\x38\x0f\x86\xd1\x28\xda\xd8\x52\x1d\xc3\x1d\xa6\xe4\x2f\x31\x5f\x1c\xea\x2b\x12\x0f\xd2\xd9\x3a\x19\x12\xff\xf3\x1f\xce\x0f\x27\xa0\xe5\xbe\xdf\x38\x7e\xde\x54\xbb\x77\x0e\xb7\x50\xbf\x7d\xdc\x19\xd5\xbc\xbc\x7e\xbf\x80\x0e\x16\xcf\xd1\x85\xe3\xf2\x72\xdd\xbb\x0b\x82\x5d\x80\xe0\x77\x00\x00\x00\xff\xff\x21\x67\x62\x69\x40\x05\x00\x00" +var _idtablestakingAdminTransfer_minter_deployCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4d\x4f\xe3\x3c\x10\xbe\xe7\x57\x3c\xe2\xf0\x2a\xd5\x5b\x52\x90\x00\xa1\x88\x2c\xea\x16\x90\x56\xb0\x45\xe2\x43\x7b\x40\x1c\xdc\x64\xda\x58\x24\x76\x65\x4f\x28\x51\xd5\xff\xbe\x72\x9c\xa4\x85\xed\x4a\x9b\x83\x5b\xcf\xc7\x33\x33\x8f\x67\x46\x96\x4b\x6d\x18\x13\x53\x2f\x59\x07\xed\xed\xa6\xd0\xab\x27\xfd\x46\x0a\x73\xa3\x4b\x1c\x7d\xdc\xdc\xdd\xff\x7a\xba\xbf\xbd\x9e\x8e\xaf\xae\x1e\xae\x1f\x1f\x83\x80\x8d\x50\x56\xa4\x2c\xb5\x0a\x97\xd5\xac\x90\xe9\x2d\xd5\x36\xc6\x8b\x47\x8a\x6e\xa9\xbe\x93\x96\xaf\x15\x9b\xfa\x75\x88\x54\x2b\x36\x22\xe5\xa9\x28\x29\xc6\x23\x1b\xa9\x16\x4e\x9a\xed\xdc\x0c\xad\x84\xc9\xc6\xa5\xae\x14\xc7\x78\xbe\x91\x1f\x67\x27\x9d\x74\x52\xed\x88\x52\xa1\x32\x99\x09\xa6\xa9\xce\xe8\x4e\x96\x92\x5d\xe0\xe7\x1f\x8a\xcf\x4e\x5e\x07\x58\x07\x01\xb0\x34\xb4\x14\x86\x42\x2b\x17\x8a\x4c\x8c\x71\xc5\xf9\x38\x4d\x1d\x76\x6b\x01\x14\xc4\x10\x69\xca\x48\x76\xd5\xe1\x52\xd4\xce\xc3\x7b\x0e\x1a\xcb\xe6\x98\x6b\x83\x37\xaa\x21\x15\xb6\x15\x63\xdd\xe8\xdc\xe7\xa0\xa2\x37\xaa\x6d\x24\xb2\x6c\x4b\x4a\xec\x9c\xa2\xfe\x3a\x44\x2e\x6c\x3e\x2e\x16\xda\x48\xce\x4b\xaf\xfd\x24\x1a\x62\x45\x72\x91\xb3\x57\xf9\xff\x3e\x8d\x8d\xcf\x7b\x34\x1a\xe1\xbb\x36\x46\xaf\x20\x60\x68\x4e\x86\x54\x4a\x60\x0d\xce\xa9\x79\x3c\xf8\xd7\x1b\x67\xa5\x54\x2e\x5f\x27\x17\xbe\x3c\x58\xd6\x46\x2c\xa8\x67\x60\xde\x3d\xb6\xb7\x4e\xda\xc2\xa3\x59\x13\xe1\xe2\xbf\xbe\x19\xa2\xc6\x40\x5a\x36\x82\xb5\xf9\x16\xba\xde\x88\x31\x6a\xf1\x46\x9f\x71\x06\x3d\x2d\x97\x97\x58\x0a\x25\xd3\xf0\x60\xa2\xab\x22\x83\xd2\x8c\xd9\xbf\x67\x6f\xc8\xea\xca\xa4\x74\x30\xd8\x16\x3f\x31\x24\x98\x20\xb6\xb9\xff\x94\x8a\xc9\x3c\xb4\xb6\x7f\xd6\xe6\xf5\xb8\x38\xfc\x52\x6e\x94\x36\x50\x53\x5a\x79\x8b\x50\x14\x85\x5e\x51\xdf\x85\xc7\x47\xdd\x17\x1d\xb5\x09\x34\xcf\x6c\xc5\x3b\x85\x17\x87\x5f\xf0\x87\x60\xbd\x8f\x11\xaf\xed\xfc\xad\x25\xc3\xe1\x9e\x26\x8e\x0a\x52\x0b\xce\x91\x24\x38\x1d\xf6\xfc\x01\x28\xc9\x5a\xb1\xa0\x18\x07\x93\xce\x0b\xce\x0d\x8d\x1f\x0a\x69\x19\xb3\x8a\x91\x8b\x77\xc7\x4a\x0b\xa3\xe7\x38\xed\x58\x73\x64\xec\x89\x78\x25\x53\x8e\xb1\x76\xa3\x73\x1e\xc3\x4f\xd0\x06\x09\xd6\x9b\xc6\xeb\x5d\x18\x18\x5d\x90\x57\x9d\x23\xc1\x71\xd0\x8f\x42\xd1\xc4\x96\x6a\x1f\x6e\x3f\x15\x7f\x89\xf9\xe2\x50\x5f\x91\x78\x90\xd6\xd6\xc9\x90\xf8\x9f\xff\x71\xbc\xdb\xf1\x0d\xe7\xdd\x0e\xf1\xf3\xa5\x9a\x4d\xb2\xbb\x57\xba\x7d\xe2\xce\xa8\xe2\xf9\xf9\xe7\x95\xb2\xb3\x4a\xf6\xae\x10\x97\x97\xeb\xda\x4d\x10\x6c\x02\x04\xbf\x03\x00\x00\xff\xff\x77\x67\xa8\xaf\x19\x05\x00\x00" func idtablestakingAdminTransfer_minter_deployCdcBytes() ([]byte, error) { return bindataRead( @@ -2459,11 +2420,11 @@ func idtablestakingAdminTransfer_minter_deployCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/transfer_minter_deploy.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbe, 0x1e, 0x95, 0xdc, 0x42, 0x25, 0x57, 0x4f, 0xdb, 0xbe, 0x75, 0x38, 0xea, 0x13, 0xcf, 0xba, 0x25, 0xcb, 0x98, 0x2a, 0x37, 0xfe, 0x7a, 0x6c, 0xec, 0xe4, 0xc3, 0x36, 0x5a, 0x3, 0x6b, 0x54}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4a, 0x80, 0x4d, 0xef, 0x2d, 0xfe, 0x8a, 0x7f, 0x18, 0x1d, 0xd7, 0xb5, 0xf2, 0x80, 0x2a, 0x6f, 0xfe, 0xcc, 0x13, 0xd0, 0xbd, 0xc8, 0xaa, 0x76, 0x68, 0xf3, 0xb3, 0xa1, 0x15, 0x9, 0xd7, 0x8e}} return a, nil } -var _idtablestakingAdminUpgrade_set_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x8b\x9c\x40\x10\xc5\xef\x7e\x8a\x87\x87\x45\x61\xd1\x6b\x90\x24\xcb\x66\x96\xc0\x40\x0e\x21\xbb\x9b\x4b\xc8\xa1\xa6\x2d\xd7\xce\xb6\x5d\xd2\x5d\x66\x12\x96\xf9\xee\xa1\x75\x66\xf2\x67\x4c\x1d\x14\xd4\xf7\x7b\xef\x75\x69\x87\x51\x82\xe2\xbd\x93\xfd\xf6\xee\x81\x76\x8e\xef\x95\x9e\xad\x7f\x42\x17\x64\x40\x7e\xf9\x22\xcf\xb2\xba\xc6\x43\x6f\x23\x34\x90\x8f\x64\xd4\x8a\xc7\x48\x3f\x23\x02\xef\x29\xb4\x11\x2a\x20\xe7\xa0\x3d\x23\x2a\x3d\x73\x0b\x2f\x2d\xc7\x2c\xfb\x43\x51\x18\x69\xb9\xc1\x97\xc7\xad\xd7\x57\x5f\x4b\xbc\x64\x19\x00\xd4\x35\x3e\x88\x21\x87\xef\x14\x6c\xb2\x45\x27\x01\x84\xc0\x1d\x07\xf6\x86\x13\x3c\x81\xb7\x77\x98\x63\xe1\xb6\x1d\xac\x87\xec\xbe\xb1\xd1\x19\xe1\x58\x41\xe9\xe1\x27\xee\x1a\x5c\x5d\x56\xa8\x66\xc9\xe2\x37\x06\x1e\x29\x70\x41\xc6\x68\x03\x9a\xb4\x2f\x1e\xc7\x96\x94\x37\xe2\x35\x90\xd1\x6b\xbc\x93\x10\x64\xff\x99\xdc\xc4\x25\xae\x6e\x8d\x91\xc9\xeb\x39\x70\x9a\x24\xae\xcc\x51\x10\xab\x69\x06\x14\x9e\x06\x6e\x56\x8f\xf0\x1a\x4b\xf9\x74\x2d\x7f\x63\xea\x1a\xbb\xd9\x6b\xad\x2f\xfd\x5b\x33\x4d\x64\xd7\x55\xa7\xae\x78\xb3\x04\x89\x2a\x81\x9e\xb8\x5a\x58\xaf\xff\x7b\x00\x6f\x8b\xb4\xe3\x66\x65\xf9\xd5\xf1\x3e\x7f\x76\xbf\xe0\x3e\x92\xf6\xe5\xd9\x38\xcd\xcd\x0d\x46\xf2\xd6\x14\xf9\x46\x26\x97\x76\xac\xa7\xfc\x7f\xa5\x8f\xc7\x3f\x6a\xce\x99\x2f\x8c\xc3\xd2\x9a\x7f\xb0\x99\x94\xf1\xb2\xde\xa8\x8a\xac\x1b\x47\x76\xe0\xb6\x38\xe9\x0e\xbf\x02\x00\x00\xff\xff\xf6\x62\xb3\x93\xb3\x02\x00\x00" +var _idtablestakingAdminUpgrade_set_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xdf\x6b\x9c\x40\x10\xc7\xdf\xfd\x2b\xbe\xdc\x43\xf1\xa0\x68\x1f\x8b\xb4\x0d\x36\x5e\x41\x08\xa5\x44\xfb\x50\x4a\x09\x73\xeb\x18\xb7\x59\x77\x65\x77\xec\x5d\x09\xf9\xdf\xcb\x6a\x2e\xfd\x91\xeb\x3c\x28\xe8\xce\x77\x3e\x1f\x66\xf5\x38\x39\x2f\xf8\x60\xdc\xa1\xae\x5a\xda\x1b\x6e\x84\xee\xb4\xbd\x45\xef\xdd\x88\x57\xc7\xba\xda\x7d\x6c\xeb\xf6\x4b\x5b\xbe\xbf\xda\x95\x55\x75\xbd\x6b\x9a\x24\xc9\x73\xb4\x83\x0e\x10\x4f\x36\x90\x12\xed\x2c\x26\xfa\x19\xe0\xf9\x40\xbe\x0b\x10\x07\x32\x06\x32\x30\x82\xd0\x1d\x77\xb0\xae\xe3\x90\x24\x7f\x74\xa4\xca\x75\x5c\xe0\xeb\xe7\xda\xca\xeb\x6f\x5b\xdc\x27\x09\x00\xe4\x39\xae\x9c\x22\x83\x1f\xe4\x75\x24\x42\xef\x3c\x08\x9e\x7b\xf6\x6c\x15\xc7\xf0\x18\x5c\x57\x58\x88\x51\x76\xa3\xb6\x70\xfb\xef\xac\x64\x89\x30\x2c\xa0\xf8\xf1\x9a\xfb\x02\x2f\x9e\xdb\x65\x4b\xcb\x3a\x6f\xf2\x3c\x91\xe7\x94\x94\x92\x02\xe5\x2c\x43\xa9\x94\x9b\xad\x3c\x11\xc5\x8a\x7f\x33\xe5\xac\x78\x52\x12\xb2\x79\xea\x48\xf8\xe6\x86\x8f\x13\x7b\x3d\xb2\x15\x32\xa9\xa5\x91\x0b\x6c\x9e\x8f\xdb\xbc\xc4\xea\x1a\x9f\xdb\xdf\xa1\x79\x8e\xbd\xf3\xde\x1d\xce\xe9\xd1\xbf\x56\xb1\x02\x9b\x3e\x3b\xa9\xe1\xed\x8a\xb5\x66\xbc\xf9\xaf\xe7\xbb\x34\x2e\xb3\x38\xb3\xe5\xec\xf1\xbd\x1c\x6b\xc4\x79\xba\xe5\x4f\x24\xc3\xf6\x69\x60\xac\x8b\x0b\x4c\x64\xb5\x4a\x37\x97\x6e\x36\x71\x95\x72\xe2\xfe\x8b\x3a\x3c\x5e\x9d\x85\x6f\xb3\x66\x3c\xac\xb6\x7c\x64\x35\x0b\xe3\xfe\xbc\x49\x16\x58\x2e\x0d\xe9\x91\xbb\xf4\xd4\xf7\xf0\x2b\x00\x00\xff\xff\x46\x0d\x04\xc2\x9c\x02\x00\x00" func idtablestakingAdminUpgrade_set_claimedCdcBytes() ([]byte, error) { return bindataRead( @@ -2479,11 +2440,11 @@ func idtablestakingAdminUpgrade_set_claimedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/upgrade_set_claimed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb2, 0x18, 0xb2, 0xdd, 0x50, 0x4a, 0xbf, 0x69, 0x23, 0x23, 0x78, 0xc8, 0x53, 0xc8, 0xd4, 0x61, 0x14, 0x50, 0x2b, 0x78, 0xc8, 0x94, 0xba, 0xb8, 0xbf, 0x98, 0xfe, 0x51, 0x48, 0x61, 0x83, 0xa0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbd, 0x60, 0x96, 0xc9, 0xe2, 0xe7, 0xb2, 0xfc, 0xfa, 0x4c, 0xe, 0x98, 0xd8, 0x18, 0xe0, 0x48, 0x7e, 0x34, 0xa6, 0xf3, 0xa9, 0xb0, 0x10, 0xd5, 0xc5, 0xdf, 0xb5, 0x7c, 0xcb, 0xbb, 0xd4, 0x3f}} return a, nil } -var _idtablestakingAdminUpgrade_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2c\x8d\xb1\x0a\xc2\x40\x10\x44\xfb\xfb\x8a\x21\x85\x5c\x40\x52\x4b\x3a\x51\x84\xd4\x9a\x4a\x2c\xd6\xcd\xa2\xc1\xb8\x17\x2e\x7b\x58\x48\xfe\x5d\x2e\x66\x8a\xa9\xde\x9b\x71\x16\x49\x27\x62\xeb\x83\x7a\x0e\x9d\xd4\xb8\xb6\x8d\xda\xee\x56\xe2\xeb\x1c\x00\x8c\x51\x46\x8a\xe2\x89\xd9\x6a\x50\xb2\xa7\x6f\xc7\x8e\x4c\x0e\x41\x2d\x12\x5b\x89\xcd\x9e\x39\x24\xb5\xec\x60\x4d\xc6\x2b\x5e\x91\xa9\x4a\x8b\xe2\x95\xde\x52\xa3\x38\x0d\xe1\xd3\x1c\x2f\x74\x1f\xe4\x6c\xf4\xea\xf5\x51\x6c\xf1\xbf\xcf\x5d\x2e\x2b\xb3\x9b\x7f\x01\x00\x00\xff\xff\xe2\xcb\x57\x03\x9f\x00\x00\x00" +var _idtablestakingAdminUpgrade_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x3c\x8d\x31\x0b\xc2\x30\x10\x85\xf7\xfc\x8a\xa3\x53\x0a\xd2\x59\xb2\x15\x44\xe8\xac\x4e\x22\xe5\xbc\x1e\x1a\x4c\x2f\x21\xbd\xa0\x20\xfd\xef\x12\x05\xdf\xf0\x96\xf7\xf8\x3e\xa3\x19\x65\x41\x52\x1f\xc5\x52\x9c\xd8\xc1\xf9\x34\x88\x6e\x2f\x2d\xbc\x8d\x01\x00\x48\x99\x13\x66\xb6\x48\xa4\x0e\xfa\xa2\xf7\x9e\x28\x16\xd1\xff\xa3\xa6\xae\x1d\x45\xd1\x8c\xa4\x4b\x57\xd2\x84\xca\xe3\xc8\xaf\xc4\xd9\xcf\x2c\x8a\xc1\x0a\xce\xec\xa0\xd9\x87\xf8\x1c\x76\x47\xbc\x06\x3e\x28\x3e\xbc\xdc\x9a\x0d\xfc\xdc\xb5\xdb\x2f\x73\x35\xeb\x27\x00\x00\xff\xff\x83\x09\x8a\xc4\x9c\x00\x00\x00" func idtablestakingAdminUpgrade_stakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2499,11 +2460,11 @@ func idtablestakingAdminUpgrade_stakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/upgrade_staking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x81, 0x5e, 0x5c, 0xd3, 0xb2, 0xd5, 0xa5, 0x4c, 0x45, 0xf4, 0x38, 0x8c, 0x9, 0x99, 0x95, 0xbc, 0xbd, 0x11, 0x8d, 0x62, 0x50, 0xa2, 0x21, 0xf2, 0x46, 0xce, 0x6e, 0xbe, 0x67, 0x1f, 0x7, 0x96}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0x44, 0x64, 0x8e, 0x9e, 0xfe, 0x87, 0x20, 0x69, 0xfd, 0xe9, 0x55, 0x7d, 0x7f, 0xf4, 0xf9, 0xcc, 0xf5, 0xbb, 0x3f, 0x22, 0xc, 0x1b, 0xd1, 0xa6, 0xb2, 0x45, 0xe9, 0x48, 0x41, 0x19, 0xc4}} return a, nil } -var _idtablestakingDelegationDel_request_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xb1\x4e\xc3\x40\x0c\x86\xf7\x3c\x85\x95\xa1\x4a\x96\x64\x41\x0c\x15\x50\x01\x55\x25\x24\x04\x88\x52\x76\xf7\xe2\xb4\x81\xeb\x39\x38\x0e\xad\x84\xfa\xee\xe8\x7a\x4d\x00\x35\x23\x5e\x6e\x38\xfb\xf7\xff\xd9\xae\x36\x35\x8b\xc2\xcc\xf2\xf6\x6e\xfa\x82\x4b\x4b\x73\xc5\xf7\xca\xad\xa0\x14\xde\x40\x7c\xfa\x11\x47\x51\xa4\x82\xae\x41\xa3\x15\xbb\x04\x37\xdc\x3a\x1d\xc3\x62\x56\xed\xce\xcf\x52\xf8\x8a\x22\x00\x80\x3c\x87\x7b\x36\x68\xe1\x13\xa5\xf2\xe5\x50\xb2\x00\x82\x50\x49\x42\xce\x10\x28\x83\xae\x09\xa6\x64\x69\x85\xca\x02\xbc\x7c\x23\xa3\x87\x6a\x4b\x0a\x45\xf7\xf1\x4c\xe5\x18\xb0\xd5\x75\x72\xea\x26\xeb\xcb\x1f\xb7\x8e\x24\x85\xd1\x40\xce\x03\x17\xd4\xe7\x05\x7b\xb5\x50\x8d\x42\x09\x1a\xa3\x47\xf1\x1b\x16\xe1\xed\x2b\xda\x96\x52\x18\x5d\x1b\xe3\xb9\x3c\x0f\x1c\x23\xcf\x61\x79\xc8\x19\xc2\x28\x86\x30\x7c\x34\x64\xcb\xec\x37\x0b\x5c\x82\xef\x9a\x35\xca\x82\x2b\xca\x82\xe6\xc5\xbf\x01\x5e\x25\x7e\x75\xe3\x81\x9d\xfe\x68\xcd\x43\xef\x27\xd4\x75\xda\x3b\xf5\x31\x99\x40\x8d\xae\x32\x49\x7c\xcb\xad\x2d\xc0\xb1\x76\xd0\x7f\x90\x7b\xa0\x38\x0d\x03\xdd\x87\x87\x76\x64\x5a\xa5\xee\x0a\x06\x07\x90\x09\x7d\xb4\xd4\xe8\xc2\x35\xc1\x57\x7f\x43\xe1\xed\x15\xf7\xdf\x01\x00\x00\xff\xff\x32\x83\xa3\x36\x9e\x02\x00\x00" +var _idtablestakingDelegationDel_request_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x41\x6b\xe3\x40\x0c\x85\xef\xfe\x15\x22\x87\xc5\xb9\xd8\x7b\x58\xf6\x60\x76\x1b\xdc\x3a\x81\x40\x08\x25\x76\x0e\x3d\x2a\x63\x39\x71\x3b\x19\xb9\xb2\xdc\x04\x4a\xfe\x7b\x99\xba\x31\x2d\x35\x54\x17\x1d\x66\xa4\xf7\xbd\xa7\xfa\xd8\xb0\x28\x2c\x2c\x9f\x96\x59\x81\x3b\x4b\xb9\xe2\x53\xed\xf6\x50\x09\x1f\xe1\xf7\x79\x99\xcd\xd7\xc5\xb2\x78\x28\xd2\xdb\xd5\x3c\xcd\xb2\xcd\x3c\xcf\x83\x20\x50\x41\xd7\xa2\xd1\x9a\x5d\x88\x47\xee\x9c\x26\xb0\x5d\xd4\xe7\xbf\x7f\xa6\xf0\x1a\x04\x00\x00\x71\x0c\x2b\x36\x68\xe1\x05\xa5\xf6\x9b\xa1\x62\x01\x04\xa1\x8a\x84\x9c\x21\x50\x06\x3d\x10\x64\x64\x69\x8f\xca\x02\xbc\x7b\x24\xa3\xef\xd3\x96\x14\xca\xeb\xc3\x86\xaa\x04\x7e\x7d\x87\x8c\xd6\x5c\xd2\x30\xde\xcb\x36\x42\x0d\x0a\x85\x68\x8c\x26\x90\x76\x7a\x48\x8d\xf1\x80\x1e\x0c\x3e\x2a\x8e\x61\xc7\x22\x7c\x1a\xe3\x29\xc7\x78\x7c\xb5\x64\xab\xe8\x33\x14\xfc\x07\x2f\x13\xf5\xbb\xfe\xfd\x48\x78\x13\xfa\x54\x93\x91\xb8\xa3\xe1\x4f\xae\x2c\xb8\xa7\x7b\xd4\xc3\x74\x50\xf6\x35\x9b\x41\x83\xae\x36\xe1\xe4\x8e\x3b\x5b\x82\x63\xbd\x9a\xf8\x62\x61\x00\x9c\x4c\xfb\x44\x2e\x7d\xa3\x33\x99\x4e\xe9\x7a\x9e\x51\x43\x91\xd0\x73\x47\xad\x6e\x5d\xdb\x73\x0d\xc7\xed\xfb\xb0\xf1\xf2\x16\x00\x00\xff\xff\x59\x8c\xf0\xa8\x39\x02\x00\x00" func idtablestakingDelegationDel_request_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2519,11 +2480,11 @@ func idtablestakingDelegationDel_request_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x87, 0xb8, 0x8e, 0xfc, 0xc, 0xe8, 0x6c, 0xa0, 0x8b, 0xce, 0x40, 0x25, 0x93, 0xd5, 0xb2, 0xfd, 0x6a, 0xfb, 0x2, 0x9c, 0xa5, 0x42, 0x21, 0xf5, 0xc2, 0x16, 0x83, 0x68, 0x5d, 0xa5, 0x8d, 0xe8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0x1d, 0xf8, 0x36, 0x96, 0xba, 0x29, 0x5f, 0x9e, 0xc8, 0x53, 0x9a, 0x3f, 0x61, 0x22, 0xe7, 0x41, 0xc3, 0x9d, 0xe8, 0x55, 0xee, 0x64, 0xd8, 0x5e, 0x39, 0x16, 0x38, 0x80, 0xc8, 0xc, 0xa}} return a, nil } -var _idtablestakingDelegationDel_stake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\xcd\x6a\xdb\x40\x10\xbe\xef\x53\x0c\x3a\x04\xe9\x50\xe9\x52\x7a\x30\x69\x43\xdb\x60\x28\x84\xa4\x34\x69\x7c\x1e\xad\x46\xd2\xd6\xeb\x1d\xb1\x1a\x55\x86\xe2\x77\x2f\xfa\xb5\x8c\x4d\x31\x25\x7b\x11\xbb\xfb\xcd\x7c\x3f\xa3\x35\xbb\x8a\xbd\xc0\xda\x72\xfb\xed\xfe\x05\x53\x4b\xcf\x82\x5b\xe3\x0a\xc8\x3d\xef\x20\x38\xbf\x08\xd4\xa2\xe6\x85\xb7\xe4\x16\xd0\x7e\x7f\x44\x34\xae\x30\xa9\xa5\x13\xd4\xf2\x2c\x50\x4a\x89\x47\x57\xa3\x16\xc3\x2e\xc4\x1d\x37\x4e\x56\xf0\x73\x6d\xf6\x1f\xde\x47\xf0\x47\x29\x00\x80\x24\x81\x07\xd6\x68\xe1\x37\x7a\xd3\x49\x81\x9c\x3d\x20\x78\xca\xc9\x93\xd3\x04\xc2\x20\x25\x41\x46\x96\x0a\x14\xf6\xc0\xe9\x2f\xd2\xd2\x57\x5b\x92\xe3\xc5\x0f\xca\x57\x80\x8d\x94\xe1\xb9\xb3\xf8\x7e\x42\x3d\xb5\x8e\x7c\x04\x37\x17\x30\x8f\x9c\xd1\x8c\x53\x33\x41\x3e\x99\x5f\x10\x2c\x9d\xc6\x1b\x23\x65\xe6\xb1\x1d\xbb\x0e\x87\xaf\xd8\x58\x19\x9a\x54\x9e\x2a\xf4\x14\xa2\xd6\x32\x36\xf8\xc2\xde\x73\xfb\x8a\xb6\xa1\x08\x6e\x3e\x6b\xdd\x85\xd3\x85\x02\xe3\x4a\x12\x48\x7b\xcc\xd5\x59\x74\xab\x26\x9b\xc7\xcb\x40\xe0\x23\x74\xac\x71\x2d\xec\xb1\xa0\x78\xe8\x79\xfb\x66\x29\x7d\x0a\xbb\xd1\xaf\x2e\xfc\x64\xc7\x5e\xcf\x03\xf7\x77\x94\x32\x9a\x95\x76\xeb\xee\x0e\x2a\x74\x46\x87\xc1\x57\x6e\x6c\x06\x8e\x65\x32\x7d\x62\x79\x36\x14\x44\xea\xd4\xea\x72\x34\xff\xb4\x7a\xe5\xbc\x26\x3b\xc9\xd8\x24\x99\x09\xfa\xeb\xff\x93\xbf\x7e\x78\xda\x40\x5f\x3f\xe9\x3f\x0c\x1f\xda\x93\x6e\x84\xa6\xa7\x70\x71\x80\xd3\x86\x1e\x69\x10\x52\x8f\x12\x6f\xdf\x9d\x25\x10\xb7\xa3\xb1\xf9\xb1\x0d\xdf\x68\xa6\x3d\xfc\x0d\x00\x00\xff\xff\xc1\x80\x21\xc4\x14\x04\x00\x00" +var _idtablestakingDelegationDel_stake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x8f\x94\x40\x10\x85\xef\xfc\x8a\xca\x1e\xcc\xcc\x41\xf0\x60\x3c\x4c\x56\x37\x28\x4c\x32\x71\xc2\x9a\x05\x35\x1e\x6b\x9a\x62\xc0\xed\xe9\x22\x4d\x21\x93\x98\xfd\xef\xa6\x61\x9b\x65\xb3\x93\x68\xac\x4b\xa7\xd3\xef\x51\xdf\x2b\xaa\x39\xb5\x6c\x05\xb6\x9a\x87\x5d\x52\xe0\x41\x53\x2e\x78\xdf\x98\x23\x54\x96\x4f\xf0\xe6\xbc\x4b\xd2\xac\xd8\x15\x3f\x8a\xf8\xe3\x3e\x8d\x93\xe4\x2e\xcd\xf3\x60\xe1\x2a\xf8\x9e\x8c\x17\x6f\xf7\xb7\xdf\x8b\xdb\xcf\x69\xe6\x85\x41\x20\x16\x4d\x87\x4a\x1a\x36\x2b\x3c\x71\x6f\x64\x03\x5f\xb7\xcd\xf9\xdd\xdb\x35\xfc\x0e\x02\x00\x80\x28\x82\x3d\x2b\xd4\xf0\x0b\x6d\xe3\x10\xa0\x62\x0b\x08\x96\x2a\xb2\x64\x14\x81\x30\x48\x4d\x50\x92\xa6\x23\x0a\x5b\xe0\xc3\x4f\x52\x32\xba\x35\xc9\xd3\xc3\x1d\x55\x1b\x78\xf5\x32\x4d\x98\x71\x49\x89\x57\x05\xb3\xb1\xf2\x09\x9e\x8c\xe3\x35\xfc\x86\xbd\x96\x49\xd7\x5a\x6a\xd1\xd2\x0a\x95\x92\x0d\xc4\xbd\xd4\xb1\x52\x2e\x88\x0b\x00\x8f\x15\x45\x70\x60\x6b\x79\xf8\x67\x6e\x57\x1d\xe9\x2a\x5c\xc2\xc3\x7b\x70\x6d\xc2\xe9\x5b\xd7\x7f\x4d\xf2\x61\xe5\x26\xbf\xb9\xf0\xff\xc2\x59\x93\x0b\x5b\x3c\xd2\x17\x94\x7a\x3d\x77\x76\x75\x73\x03\x2d\x9a\x46\xad\xae\x3e\x71\xaf\x4b\x30\x2c\x3e\xc4\xb3\x08\x33\xe0\xd5\x3a\x78\x8e\xbe\x1c\xdf\x25\xf4\xc5\x2c\x3d\x69\xd4\x4d\x38\xd1\xec\x1d\x9f\xff\x8f\xcc\xed\x1b\x8c\x7e\x8f\xf6\x30\x1d\x74\x26\xd5\x0b\xf9\x0d\xbb\x38\x6b\x7f\xa1\x8c\x26\x90\xee\x11\xf1\xfa\xf5\x8b\x70\xe1\xd0\x48\x5d\x5a\x1c\xe6\x1d\x9e\xce\xf5\xdc\xf6\xe1\x4f\x00\x00\x00\xff\xff\x7d\x72\x30\x6f\x4a\x03\x00\x00" func idtablestakingDelegationDel_stake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2539,11 +2500,11 @@ func idtablestakingDelegationDel_stake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xef, 0x10, 0x2b, 0x72, 0x96, 0xd1, 0x8e, 0xa0, 0x84, 0xd7, 0xe0, 0x69, 0x57, 0x1c, 0x1b, 0x5e, 0xf2, 0x48, 0x5f, 0x81, 0x81, 0x5c, 0xbe, 0x2, 0x4b, 0x1e, 0x7b, 0x4b, 0xf7, 0xbd, 0x9a, 0x2a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x53, 0x38, 0xd9, 0x47, 0x24, 0xbb, 0xe8, 0x6e, 0x60, 0xdf, 0x9c, 0x19, 0x3a, 0x3c, 0x47, 0x18, 0xa7, 0xb5, 0x74, 0x88, 0x1d, 0x6, 0xd7, 0xb5, 0x24, 0xc1, 0xa1, 0xd3, 0x49, 0x79, 0xbe, 0x8b}} return a, nil } -var _idtablestakingDelegationDel_stake_rewardedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xc1\x4b\xfb\x50\x0c\xc7\xef\xfd\x2b\x42\x0f\xa3\xbd\xb4\x97\x1f\xbf\xc3\x50\x87\x3a\x06\x82\xa8\x6c\xd3\x7b\xf6\x9a\x6e\x75\xaf\x2f\x25\x4d\xed\x40\xf6\xbf\xcb\x5b\xd7\xaa\xac\x47\x73\x79\x3c\x92\x7c\x93\x4f\x92\xa2\xac\x58\x14\x16\x96\xdb\x87\xf9\x1a\x37\x96\x56\x8a\xfb\xc2\x6d\x21\x17\x2e\x21\xbc\x74\x84\x41\x10\xa8\xa0\xab\xd1\x68\xc1\x2e\xc2\x92\x1b\xa7\x53\x78\x5d\x14\x87\xff\xff\x62\xf8\x0c\x02\x00\x80\x34\x85\x47\x36\x68\xe1\x03\xa5\xf0\xe9\x90\xb3\x00\x82\x50\x4e\x42\xce\x10\x28\x83\xee\x08\xe6\x64\x69\x8b\xca\x02\xbc\x79\x27\xa3\xa7\x6c\x4b\x0a\x59\xef\x58\x52\x3e\x05\x6c\x74\x17\x5d\x76\x93\x0c\xe9\xcf\xad\x23\x89\x61\x32\x12\xf3\xc4\x19\x0d\x71\x5d\x7b\x95\x50\x85\x42\x11\x1a\xa3\x67\xf1\x3b\x16\xe1\xf6\x0d\x6d\x43\x31\x4c\x6e\x8d\xf1\x5c\x9e\x07\xce\x96\xa6\xb0\x39\xc5\x8c\x61\x64\x63\x18\xde\x6a\xb2\x79\xf2\x93\x05\xae\xc1\x57\x4d\x6a\x65\xc1\x2d\x25\x9d\xe6\xd5\x9f\x01\xde\x44\x7e\x75\xd3\x91\x9d\x7e\x6b\xad\xba\xda\x2f\xa8\xbb\x78\xe8\xd4\xdb\x6c\x06\x15\xba\xc2\x44\xe1\x3d\x37\x36\x03\xc7\xda\x43\xff\x42\x1e\x80\xc2\xb8\x1b\xe8\xb1\x7b\xe8\x40\xa6\x51\xea\xaf\x60\x74\x00\xfd\x87\x96\xd4\xa2\x64\x94\xad\x79\x4f\xae\x1e\x2e\xa9\x7b\x07\xdd\xe3\x57\x00\x00\x00\xff\xff\xb1\x5e\xd1\xad\xa4\x02\x00\x00" +var _idtablestakingDelegationDel_stake_rewardedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x41\x6b\xab\x50\x10\x85\xf7\xfe\x8a\x21\x8b\x87\xd9\xe8\x5b\x3c\xde\x42\xda\x06\x5b\x13\x08\x84\x50\xa2\x5d\x74\x39\xb9\x8e\x89\xcd\xcd\x1d\x99\x8c\x4d\xa0\xe4\xbf\x97\x5b\xab\xb4\x54\xe8\x6c\x06\xf1\xce\x9c\xef\x9c\xa9\x8f\x0d\x8b\xc2\xc2\xf2\x79\x99\x15\xb8\xb5\x94\x2b\x1e\x6a\xb7\x83\x4a\xf8\x08\x7f\x2f\xcb\x6c\xbe\x2e\x96\xc5\x73\x91\xde\xaf\xe6\x69\x96\x6d\xe6\x79\x1e\x04\x81\x0a\xba\x13\x1a\xad\xd9\x85\x78\xe4\xd6\x69\x02\x4f\x8b\xfa\xf2\xff\xdf\x14\xde\x82\x00\x00\x20\x8e\x61\xc5\x06\x2d\xbc\xa2\xd4\x7e\x33\x54\x2c\x80\x20\x54\x91\x90\x33\x04\xca\xa0\x7b\x82\x8c\x2c\xed\x50\x59\x80\xb7\x2f\x64\xf4\x63\xda\x92\x42\xd9\xff\xd8\x50\x95\xc0\x9f\x9f\x90\xd1\x9a\x4b\x1a\xc6\x3b\xd9\x46\xa8\x41\xa1\x10\x8d\xd1\x04\xd2\x56\xf7\xa9\x31\x1e\xd0\x83\xc1\x67\xc5\x31\x6c\x59\x84\xcf\x63\x3c\xe5\x18\x8f\xaf\x13\xd9\x2a\xfa\x0a\x05\xb7\xe0\x65\xa2\x6e\xd7\xcd\xaf\x84\x77\xa1\x4f\x35\x19\x89\x3b\x1a\xde\xe4\xca\x82\x3b\x7a\x44\xdd\x4f\x07\x65\x5f\xb3\x19\x34\xe8\x6a\x13\x4e\x1e\xb8\xb5\x25\x38\xd6\xde\xc4\x37\x0b\x03\xe0\x64\xda\x25\x72\xed\x1a\x5d\xc8\xb4\x4a\xfd\x79\x46\x0d\xf5\x1f\xb4\xa1\x33\x4a\x49\x65\xc1\x07\x72\xa7\xe1\xc4\x5d\x1f\xf6\x5e\xdf\x03\x00\x00\xff\xff\x4f\x03\x87\x63\x3f\x02\x00\x00" func idtablestakingDelegationDel_stake_rewardedCdcBytes() ([]byte, error) { return bindataRead( @@ -2559,11 +2520,11 @@ func idtablestakingDelegationDel_stake_rewardedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_stake_rewarded.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0xab, 0x43, 0xc4, 0x6c, 0xd2, 0xcc, 0x46, 0xb9, 0xe9, 0xe8, 0x58, 0xd2, 0x56, 0x18, 0xf, 0xca, 0xf0, 0x2e, 0xf4, 0x55, 0xe9, 0x4f, 0x44, 0x76, 0xed, 0x31, 0x9c, 0x48, 0x31, 0xf0, 0xf7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf, 0x9f, 0xc3, 0x4b, 0x19, 0xbb, 0xe2, 0x96, 0x5c, 0x6c, 0x69, 0x8b, 0x86, 0x7e, 0xeb, 0x78, 0x72, 0x47, 0xef, 0x12, 0x0, 0xd0, 0x9b, 0x25, 0x23, 0x9a, 0x67, 0x29, 0x3e, 0xa1, 0x89, 0x59}} return a, nil } -var _idtablestakingDelegationDel_stake_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x31\x4f\xf3\x40\x0c\x86\xf7\xfc\x8a\x57\x19\xaa\x64\x49\x96\x4f\xdf\x50\x01\x15\x50\x55\x42\x42\x80\x68\xcb\xee\x5e\x9c\x36\xf4\x7a\x8e\x2e\x0e\xad\x84\xfa\xdf\x51\x9a\x26\x80\x9a\x11\x2f\xa7\x93\xed\xd7\x7e\x6c\x17\xbb\x52\xbc\x62\x66\x65\xff\x30\x5d\xd0\xca\xf2\x5c\x69\x5b\xb8\x35\x72\x2f\x3b\x84\x97\x8e\x30\x08\x02\xf5\xe4\x2a\x32\x5a\x88\x8b\x68\x27\xb5\xd3\x31\x96\xb3\xe2\xf0\xff\x5f\x8c\xcf\x20\x00\x80\x34\xc5\xa3\x18\xb2\xf8\x20\x5f\x34\xe9\xc8\xc5\x83\xe0\x39\x67\xcf\xce\x30\x54\xa0\x1b\xc6\x94\x2d\xaf\x49\xc5\x43\x56\xef\x6c\xf4\x94\x6d\x59\x91\x75\x8e\x57\xce\xc7\xa0\x5a\x37\xd1\x65\x37\x49\x9f\xfe\xbc\x77\xec\x63\x8c\x06\x62\x9e\x24\xe3\x3e\xae\x6d\xaf\xf4\x5c\x92\xe7\x88\x8c\xd1\xb3\xf8\x9d\x78\x2f\xfb\x37\xb2\x35\xc7\x18\xdd\x1a\xd3\x70\x35\x3c\x38\x5b\x9a\x62\x75\x8a\x19\xc2\xc8\x86\x30\x1a\xab\xd8\xe6\xc9\x4f\x16\x5c\xa3\xa9\x9a\x54\x2a\x9e\xd6\x9c\xb4\x9a\x57\x7f\x06\x78\x13\x35\xab\x1b\x0f\xec\xf4\x5b\x6b\xde\xd6\x7e\x21\xdd\xc4\x7d\xa7\x8d\x4d\x26\x28\xc9\x15\x26\x0a\xef\xa5\xb6\x19\x9c\x68\x07\xfd\x0b\xb9\x07\x0a\xe3\x76\xa0\xc7\xf6\xe1\x03\x9b\x5a\xb9\xbb\x82\xc1\x01\x74\x1f\x5e\xba\x4a\x69\xcb\xd9\x42\xb6\xec\xaa\xfe\x92\xda\xb7\xd7\x3d\x7e\x05\x00\x00\xff\xff\x9e\x6a\x61\x83\xa4\x02\x00\x00" +var _idtablestakingDelegationDel_stake_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xc1\x6a\xb3\x50\x10\x85\xf7\x3e\xc5\x90\xc5\x8f\xd9\xe8\xbf\x28\x5d\x48\xdb\x60\x6b\x02\x81\x10\x4a\x34\x8b\x2e\x27\xd7\x31\xb1\x31\x77\x64\x1c\x9b\x40\xc9\xbb\x97\x5b\xab\xb4\x54\xe8\x6c\x06\xf1\xce\x9c\xef\x9c\x29\x4f\x35\x8b\xc2\xa2\xe2\xf3\x32\xc9\x70\x57\x51\xaa\x78\x2c\xed\x1e\x0a\xe1\x13\xfc\xbf\x2c\x93\xf9\x3a\x5b\x66\x2f\x59\xfc\xb8\x9a\xc7\x49\xb2\x99\xa7\xa9\xe7\x79\x2a\x68\x1b\x34\x5a\xb2\xf5\xf1\xc4\xad\xd5\x08\xb6\x8b\xf2\x72\x7b\x33\x85\x77\xcf\x03\x00\x08\x43\x58\xb1\xc1\x0a\xde\x50\x4a\xb7\x19\x0a\x16\x40\x10\x2a\x48\xc8\x1a\x02\x65\xd0\x03\x41\x42\x15\xed\x51\x59\x80\x77\xaf\x64\xf4\x73\xba\x22\x85\xbc\xff\xb1\xa1\x22\x82\x7f\xbf\x21\x83\x35\xe7\x34\x8c\x77\xb2\xb5\x50\x8d\x42\x3e\x1a\xa3\x11\xc4\xad\x1e\x62\x63\x1c\xa0\x03\x83\xaf\x0a\x43\xd8\xb1\x08\x9f\xc7\x78\xf2\x31\x1e\x57\x0d\x55\x45\xf0\x1d\x0a\xee\xc1\xc9\x04\xdd\xae\xbb\x3f\x09\x1f\x7c\x97\x6a\x34\x12\x77\x30\xbc\x49\x95\x05\xf7\xf4\x8c\x7a\x98\x0e\xca\xae\x66\x33\xa8\xd1\x96\xc6\x9f\x3c\x71\x5b\xe5\x60\x59\x7b\x13\x3f\x2c\x0c\x80\x93\x69\x97\xc8\xb5\x6b\x74\x21\xd3\x2a\xf5\xe7\x19\x35\xd4\x7f\xd0\xd6\x36\x8a\x47\xca\x33\x3e\x92\x6d\x86\x13\x77\x7d\xd8\x7b\xfd\x08\x00\x00\xff\xff\x60\x37\x37\x4d\x3f\x02\x00\x00" func idtablestakingDelegationDel_stake_unstakedCdcBytes() ([]byte, error) { return bindataRead( @@ -2579,11 +2540,11 @@ func idtablestakingDelegationDel_stake_unstakedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_stake_unstaked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb2, 0xe0, 0x9e, 0xd0, 0xcb, 0x7b, 0x17, 0x55, 0xd4, 0x3c, 0x3a, 0xb7, 0x69, 0x8d, 0xf0, 0x10, 0x95, 0x57, 0x91, 0x73, 0xc7, 0xbe, 0xf3, 0x94, 0x97, 0x96, 0xe, 0x27, 0x37, 0x17, 0xff, 0x6a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x74, 0xad, 0x88, 0x47, 0x36, 0x16, 0xef, 0x73, 0xad, 0x97, 0xe5, 0xea, 0x2d, 0xf8, 0xaa, 0x76, 0xc6, 0xa, 0x7b, 0xa9, 0x51, 0x85, 0x17, 0x72, 0x7, 0xfe, 0xb0, 0x79, 0xb4, 0xaa, 0xda, 0x62}} return a, nil } -var _idtablestakingDelegationDel_withdraw_reward_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\x4d\x6b\xdc\x40\x0c\xbd\xcf\xaf\x10\x3e\x2c\xf6\xa1\xf6\xa5\xf4\xb0\xa4\x0d\x6d\xc3\x42\x21\x34\x25\x49\xd3\xb3\x76\x46\xde\x9d\x66\x76\x64\x64\xb9\x0e\x94\xfc\xf7\xe2\xcf\x78\xbb\x5b\x28\xa5\xba\x08\xa3\x27\xbd\xf7\x2c\x8d\x3f\x54\x2c\x0a\x9b\xc0\xed\xa7\xab\x7b\xdc\x06\xba\x53\x7c\xf4\x71\x07\xa5\xf0\x01\x92\xd3\x42\x62\x16\x3d\xf7\xfc\x48\x71\x01\xed\xbf\x13\x63\x8c\x0a\xc6\x1a\xad\x7a\x8e\x29\x1e\xb8\x89\xba\x86\xaf\x1b\xff\xf4\xe6\x75\x06\x3f\x8d\x01\x00\x28\x0a\xb8\x66\x8b\x01\x7e\xa0\xf8\x8e\x00\x4a\x16\x40\x10\x2a\x49\x28\x5a\x02\x65\xd0\x3d\x81\xa3\x40\x3b\x54\x16\xe0\xed\x77\xb2\xda\x77\x07\xd2\x97\xc2\x2d\x95\x6b\xc0\x46\xf7\xe9\xa9\xde\xfc\x6a\x42\xdd\xb4\x91\x24\x83\xd5\x19\xcc\x67\x76\x34\xe3\xcc\x4c\x50\x4e\x96\x7a\x82\xd5\xec\x30\x7f\xc0\x26\xe8\x80\xab\x84\x2a\x14\x4a\xd1\x5a\x1d\x45\x7c\x60\x11\x6e\x1f\x30\x34\x94\xc1\xea\xbd\xb5\x9d\xff\xce\x37\x8c\x51\x14\xb0\xed\x31\x7f\x6d\xb7\x8b\x9a\x42\x99\x2f\x3d\xc3\x5b\xe8\x58\xf3\x5a\x59\x70\x47\xf9\x30\xf3\xe2\xbf\xfd\x88\x77\x69\xb7\xd9\xf5\x99\xeb\x78\x99\x75\x37\x70\x7f\x41\xdd\x67\xb3\xd2\x2e\x2e\x2f\xa1\xc2\xe8\x6d\x9a\x7c\xe4\x26\x38\x88\xac\x93\xe9\x23\xcb\xf5\x78\x6f\xe8\x0e\x3e\x26\x99\x39\xb6\xbb\xdc\xc0\x1f\xec\xfe\xbe\x96\x49\x75\x31\xe2\x8a\x79\x46\x5f\xfe\x37\x95\x9b\xeb\x9b\x6f\xd0\xf7\x4f\x12\x9f\x87\x44\x4f\x64\x1b\xa5\xe9\xa8\xcf\x0a\xcf\x1d\x55\x5c\x7b\x1d\x85\x5d\xbc\x3a\xd9\x64\xde\x7a\xdd\x3b\xc1\xf6\x96\x5a\x14\x47\xae\x6f\xad\xe7\xa7\x33\xe4\x6c\xa6\x7e\xfe\x15\x00\x00\xff\xff\xd5\x98\xe2\x33\xb8\x03\x00\x00" +var _idtablestakingDelegationDel_withdraw_reward_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x8f\xd3\x30\x10\x85\xef\xf9\x15\xa3\x3d\xa0\xf6\x40\xc2\x01\x71\xa8\x16\x56\x85\xb4\x52\x45\xd5\x45\x6d\x00\x71\x9c\xda\x93\xd6\xac\xeb\x89\x9c\x09\xa9\x84\xf6\xbf\x23\x27\x75\x36\xab\xad\x04\x62\x2e\x56\xe4\xf7\x32\xdf\x1b\x8f\x39\x55\xec\x05\x96\x96\xdb\x55\x5e\xe0\xde\xd2\x4e\xf0\xc1\xb8\x03\x94\x9e\x4f\xf0\xe6\xbc\xca\x17\x9b\x62\x55\xfc\x28\xe6\x1f\xd7\x8b\x79\x9e\x6f\x17\xbb\x5d\x32\x72\x15\xfc\x40\x2e\x8a\x97\xeb\xfb\xef\xc5\xfd\xe7\xc5\x26\x0a\x93\x44\x3c\xba\x1a\x95\x18\x76\x13\x3c\x71\xe3\x64\x06\x5f\x97\xe6\xfc\xee\xed\x14\x7e\x27\x09\x00\x40\x96\xc1\x9a\x15\x5a\xf8\x85\xde\x04\x04\x28\xd9\x03\x82\xa7\x92\x3c\x39\x45\x20\x0c\x72\x24\xd0\x64\xe9\x80\xc2\x1e\x78\xff\x93\x94\x74\x6e\x4b\xf2\x74\xb1\xa5\x72\x06\xaf\x5e\xa6\x49\x37\xac\x29\x8f\xaa\x64\x30\x96\x31\xc1\x93\xb1\xfb\x4c\xbf\x61\x63\xa5\xd7\x55\x9e\x2a\xf4\x34\x41\xa5\x64\x06\xf3\x46\x8e\x73\xa5\x42\x90\x10\x00\x2e\x95\x65\xb0\x67\xef\xb9\xfd\x67\xee\x50\x35\xd9\x32\x1d\xc3\xc3\x7b\x08\x6d\xd2\xfe\x5f\xb7\x7f\x4d\xf2\x61\x12\x26\x3f\xbb\xf2\x7e\xe9\xa0\xd9\x09\x7b\x3c\xd0\x17\x94\xe3\x74\xe8\x1c\xea\xee\x0e\x2a\x74\x46\x4d\x6e\x3e\x71\x63\x35\x38\x96\x18\xe2\x59\x84\xfa\xb2\x11\xa8\x4f\xc6\xdd\x4c\x93\xe7\xf8\xe3\x11\x5e\xc3\x1f\xcd\x33\xd2\x66\x75\x8f\x94\x0d\xde\xee\xfa\xff\xe8\xc2\xce\x41\xe7\x8f\x68\x8f\xfd\x41\x67\x52\x8d\x50\xdc\xb2\xab\xc0\xa9\xa6\x8a\x6b\x23\x17\xb0\xdb\xd7\x2f\x5e\x24\x6d\x8d\x1c\xb5\xc7\x76\x4b\x2d\x7a\x4d\xba\xb3\xd6\xc3\x2e\xf7\xe7\x74\x68\xfd\xf8\x27\x00\x00\xff\xff\x48\xa4\x68\x6b\x52\x03\x00\x00" func idtablestakingDelegationDel_withdraw_reward_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2599,11 +2560,11 @@ func idtablestakingDelegationDel_withdraw_reward_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_withdraw_reward_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0x69, 0x4a, 0xc2, 0x9c, 0x8c, 0xbe, 0x30, 0xf1, 0x75, 0xca, 0x4, 0xe6, 0x89, 0xc4, 0x37, 0xa4, 0x54, 0x4, 0x46, 0x39, 0x59, 0x38, 0x65, 0xad, 0x42, 0x81, 0x10, 0x43, 0x24, 0x11, 0x43}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x59, 0x52, 0x4d, 0x97, 0xb1, 0xb9, 0xbc, 0x88, 0xbd, 0xa4, 0x74, 0x59, 0xab, 0xf1, 0x25, 0x8a, 0x1c, 0x55, 0x41, 0x8e, 0x6b, 0x4d, 0x3c, 0xfe, 0x4c, 0xb6, 0xdb, 0x88, 0xd3, 0xa9, 0xbf, 0x50}} return a, nil } -var _idtablestakingDelegationDel_withdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\x4d\x8b\xdb\x40\x0c\xbd\xcf\xaf\x10\x3e\x04\xfb\x50\xfb\x52\x7a\x08\xdb\x2e\x6d\x97\x40\x61\xe9\x96\xee\x47\xcf\xca\x58\x8e\xa7\x19\x8f\xcc\x58\xae\x03\x25\xff\xbd\x8c\xbf\xe2\x34\x29\x94\x52\x5d\x06\xa3\x27\xbd\xf7\x24\xd9\x54\x35\x7b\x81\x8d\xe5\xee\xd3\xdd\x13\x6e\x2d\x3d\x0a\xee\x8d\xdb\x41\xe1\xb9\x82\xe8\x32\x11\xa9\x45\xcd\x13\xef\xc9\x2d\xa0\xfd\x77\xa4\x94\x12\x8f\xae\x41\x2d\x86\x5d\x8c\x15\xb7\x4e\xd6\xf0\xbc\x31\x87\x37\xaf\x13\xf8\xa9\x14\x00\x40\x96\xc1\x3d\x6b\xb4\xf0\x03\xbd\x09\x04\x50\xb0\x07\x04\x4f\x05\x79\x72\x9a\x40\x18\xa4\x24\xc8\xc9\xd2\x0e\x85\x3d\xf0\xf6\x3b\x69\xe9\xab\x2d\xc9\x29\xf1\x95\x8a\x35\x60\x2b\x65\x7c\xa9\x37\xbd\x9b\x50\x0f\x9d\x23\x9f\xc0\xea\x0a\xe6\x33\xe7\x34\xe3\xd4\x4c\x50\x4c\x96\x7a\x82\xd5\xec\x30\x7d\xc1\xd6\xca\x80\xab\x3d\xd5\xe8\x29\x46\xad\x65\x14\xf1\x81\xbd\xe7\xee\x05\x6d\x4b\x09\xac\xde\x6b\x1d\xfc\x07\xdf\x30\x46\x96\xc1\xb6\xc7\xfc\xb5\xdd\x10\x0d\xd9\x22\x5d\x7a\x86\xb7\x10\x58\xd3\x46\xd8\xe3\x8e\xd2\xa1\xe7\xcd\x7f\x1b\xc4\xbb\x38\x6c\x76\x7d\xe5\x3a\x4e\xbd\x1e\x07\xee\x2f\x28\x65\x32\x2b\x0d\x71\x7b\x0b\x35\x3a\xa3\xe3\xe8\x23\xb7\x36\x07\xc7\x32\x99\x3e\xb3\xdc\x8c\xf7\x86\x79\x65\x5c\x94\xa8\x73\xbb\xcb\x0d\xfc\xc1\xee\xef\x6b\x99\x54\x67\x23\x2e\x9b\x7b\xf4\xe9\x7f\x53\xb9\xb9\x7f\xf8\x06\x7d\xfd\x24\xf1\x38\x3c\x74\x20\xdd\x0a\x4d\x47\x7d\x55\x78\x9a\x53\xcd\x8d\x91\x51\xd8\xcd\xab\x8b\x4d\xa6\x9d\x91\x32\xf7\xd8\x3d\xbb\x30\x0f\xca\xfb\xd2\x66\xfe\x75\x86\x37\x99\xa9\x8f\xbf\x02\x00\x00\xff\xff\xb8\x15\x1d\x98\xb8\x03\x00\x00" +var _idtablestakingDelegationDel_withdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x43\x0e\xc5\x3e\x54\xea\xa1\xf4\x60\xd2\x06\xb7\xb2\xc1\xd4\x38\x25\x56\x5a\x7a\x1c\xaf\x46\xd6\x36\xab\x1d\xb1\x1a\x55\x86\x92\xff\x5e\x56\xf2\x2a\x0a\x31\xb4\x64\x2e\x8b\xd8\xf7\x34\xdf\x9b\x1d\x5d\xd5\xec\x04\xd6\x86\xbb\x4d\x9a\xe1\xc1\xd0\x5e\xf0\x41\xdb\x23\x14\x8e\x2b\x78\x77\xda\xa4\xab\x5d\xb6\xc9\x7e\x66\xcb\xcf\xdb\xd5\x32\x4d\xef\x56\xfb\x7d\x34\x71\x65\xfc\x40\x36\x88\xd7\xdb\xdb\x1f\xd9\xed\xd7\xd5\x2e\x08\xa3\x48\x1c\xda\x06\x95\x68\xb6\x33\xac\xb8\xb5\xb2\x80\xfb\xb5\x3e\x7d\x78\x3f\x87\x3f\x51\x04\x00\x90\x24\xb0\x65\x85\x06\x7e\xa3\xd3\x1e\x01\x0a\x76\x80\xe0\xa8\x20\x47\x56\x11\x08\x83\x94\x04\x39\x19\x3a\xa2\xb0\x03\x3e\xfc\x22\x25\xbd\xdb\x90\x3c\x5d\xdc\x51\xb1\x80\x37\x2f\xd3\xc4\x3b\xce\x29\x0d\xaa\x68\x34\x16\x21\xc1\x93\xb1\xff\x8c\xbf\x63\x6b\x64\xd0\xd5\x8e\x6a\x74\x34\x43\xa5\x64\x01\xcb\x56\xca\xa5\x52\x3e\x88\x0f\x00\xe7\x4a\x12\x38\xb0\x73\xdc\xfd\x37\xb7\xaf\x86\x4c\x11\x4f\xe1\xe1\x23\xf8\x36\xf1\xf0\xaf\xeb\x7f\x26\xf9\x34\xf3\x93\x5f\x5c\x78\xbf\x78\xd4\xec\x85\x1d\x1e\xe9\x1b\x4a\x39\x1f\x3b\xfb\xba\xb9\x81\x1a\xad\x56\xb3\xab\x2f\xdc\x9a\x1c\x2c\x4b\x08\xf1\x2c\x42\x73\xde\x08\xcc\x2b\x6d\xaf\xe6\xd1\x73\xfc\xe9\x08\x2f\xe1\x4f\xe6\x19\x68\x93\x66\x40\x4a\x46\x6f\x7f\xfd\x3a\x3a\xbf\x73\xd0\xfb\x03\xda\xe3\x70\xd0\x89\x54\x2b\x14\xb6\xec\x22\x70\x9c\x53\xcd\x8d\x96\x33\xd8\xf5\xdb\x17\x2f\x12\x77\x5a\xca\xdc\x61\x77\x6f\xfd\x1c\x28\xef\xad\xcd\xb8\xcb\xc3\x39\x1f\x5b\x3f\xfe\x0d\x00\x00\xff\xff\x25\x29\x97\xc0\x52\x03\x00\x00" func idtablestakingDelegationDel_withdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2619,11 +2580,11 @@ func idtablestakingDelegationDel_withdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0x9, 0xa9, 0xbe, 0x99, 0x3e, 0x9a, 0x30, 0x27, 0x80, 0xe7, 0x17, 0x89, 0x21, 0xf2, 0xd3, 0x7d, 0x98, 0x8f, 0xf6, 0x2c, 0xc2, 0xb1, 0x96, 0x6, 0x8a, 0x98, 0x7e, 0xc2, 0xed, 0x7c, 0x58}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0xb6, 0xed, 0x54, 0x52, 0x1d, 0x47, 0x45, 0x7d, 0xec, 0xd7, 0x70, 0x4a, 0x4e, 0xf5, 0x39, 0x8e, 0xda, 0x57, 0xea, 0x35, 0x5c, 0x33, 0xcd, 0xae, 0x27, 0x42, 0x6f, 0x3, 0xcd, 0x14, 0x31}} return a, nil } -var _idtablestakingDelegationDelegator_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\xcb\xae\x9b\x30\x10\x86\xf7\x7e\x8a\x51\x16\x11\x48\x11\xec\xa3\x5c\xd4\x26\xaa\xd4\x4d\x1b\x29\x51\xf7\x83\x19\xc0\x8d\x63\x23\x7b\x10\xad\x12\xde\xbd\x82\x34\x04\x4e\x72\x6e\xde\x81\x67\xe6\xff\xfc\x8d\x3a\x95\xd6\x31\x7c\xd3\xb6\xfe\xbe\x3d\x60\xa2\x69\xcf\x78\x54\x26\x87\xcc\xd9\x13\x4c\x1e\x2f\x26\x62\xd0\x73\xb0\x47\x32\x83\xd2\xee\x7b\x22\x44\x1c\xc3\xa1\x50\x1e\xd8\xa1\xf1\x28\x59\x59\x03\x98\xa6\x1e\x10\xca\x2a\xd1\x4a\x42\x4a\x9a\x72\x64\xeb\x40\x62\x89\x89\xd2\x8a\xff\x02\x5b\x40\x03\x28\xa5\xad\x0c\x43\xad\xb8\x68\x27\xa1\x01\xfa\xa3\x3c\xb7\x54\x3f\x6c\x4a\xdb\xbe\xd5\x26\xbf\x49\xb2\x10\xc3\x98\xb3\x10\x00\x00\xa5\xa3\x12\x1d\x05\x28\x25\xcf\x01\x2b\x2e\x82\xaf\xd6\x39\x5b\xff\x42\x5d\xd1\x0c\x36\xb7\x54\x45\x3e\x84\xe9\x97\x6b\x66\x78\x6b\x6f\x8f\xca\x5a\x14\x8e\x3c\x5b\x87\x39\x45\x49\xd7\xbf\xe8\x66\x3d\x7a\x89\x7a\xac\x9f\xb5\x21\x17\xc2\xf4\x49\xcd\x08\x7f\x15\xb4\xe2\xe6\x4f\xe4\xdf\x67\xed\xaf\xd9\x3b\xe4\x22\x84\xe5\x12\x8c\xd2\x70\xb9\xf4\x88\xed\xe9\x18\xe5\xe0\x39\x51\x4e\xbc\x98\x9e\xdf\x8b\xdf\x75\x8b\x68\x56\x41\x7c\x5d\x49\x9c\x69\x5b\xff\xaf\xec\x8b\xc2\x75\x24\x0b\x92\xc7\x20\x84\xf5\x1a\x32\xd4\x9e\xfa\xf0\xf3\x08\xc3\x11\x57\xce\xf4\xbf\x9a\xbb\x47\x4d\x7c\x5f\xf7\x06\x4b\x58\x3e\x61\xbe\x49\x56\xde\x57\xf4\x19\xfa\x11\xc4\x07\x55\xf6\x3d\xa1\x78\xdd\x62\x67\xc5\x17\xe3\x80\xe1\x3b\x66\xe3\x35\xf0\x1c\xde\x32\xf9\x22\xb3\x11\xcd\xbf\x00\x00\x00\xff\xff\xe8\x8a\xcb\x49\x7c\x03\x00\x00" +var _idtablestakingDelegationDelegator_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\x4d\x8b\xa3\x40\x10\x86\xef\xfe\x8a\x3a\x05\x85\x45\xf7\x1c\x92\x80\xbb\x1a\x08\x1b\x92\xb0\x0a\xc3\x1c\xcb\xb6\xa3\x3d\x76\xba\xa5\x2d\x31\x43\xe2\x7f\x1f\x4c\x26\x3d\x91\x19\xe6\xa3\x8f\xcd\x53\xf5\xbc\xf5\x8a\x43\xad\x0d\xc1\x52\xea\x6e\x15\xa5\x98\x49\x9e\x10\x56\x42\x15\xb0\x37\xfa\x00\xbf\x8f\xab\x28\xde\xa4\xab\xf4\x31\x0d\xff\xac\xe3\x30\x8a\xfe\xc7\x49\xe2\xdc\x4d\xa5\xba\xe2\xea\x06\x2f\xd7\xdb\x87\x74\xfb\x2f\xde\xdc\x40\x27\x08\x20\x2d\x45\x03\x64\x50\x35\xc8\x48\x68\x05\x98\xe7\x0d\x20\xd4\x6d\x26\x05\x83\x9c\x4b\x5e\x20\x69\x03\x0c\x6b\xcc\x84\x14\xf4\x0c\xa4\x01\x15\x20\x63\xba\x55\x04\x9d\xa0\x72\xd8\x84\x0a\xf8\x51\x34\x34\xc4\xdb\xe8\x9c\x47\x76\x54\x67\x4f\x9c\x91\xe3\xdc\x6b\x4e\x8e\x03\x00\x50\x1b\x5e\xa3\xe1\x2e\x32\x46\x53\x08\x5b\x2a\xc3\xeb\x5a\xef\x46\x0c\x4f\xec\x07\x1b\xf9\x99\x36\x46\x77\xb3\xc9\xfb\x42\xfc\x91\x71\xe1\x0e\x27\x4f\x3f\x28\xce\xb7\x4c\x42\xda\x60\xc1\x77\x48\xa5\x07\xf3\x39\x28\x21\xe1\x7c\xb6\xca\xe1\x5d\x9c\x05\xa7\xbf\xf6\xf4\xd9\xe4\xf4\x95\x7b\x77\x29\xae\x5f\xb8\xc1\xb5\xc2\x60\x2f\x75\xf7\x4a\x5a\xc8\xf3\x59\xc9\x59\xe5\x7a\xd6\x77\x1a\x99\x0d\xa7\xd6\x28\xfb\xd5\xbf\x55\x71\xc9\x24\x85\xaa\x7e\x12\x65\xb4\xfb\xb3\x5c\xbf\x46\x24\xa1\x29\x38\x7d\xbb\x46\x3b\x7b\xbd\xaa\x77\xfa\x97\x00\x00\x00\xff\xff\x74\x62\xf7\x3a\xc0\x02\x00\x00" func idtablestakingDelegationDelegator_add_capabilityCdcBytes() ([]byte, error) { return bindataRead( @@ -2639,11 +2600,11 @@ func idtablestakingDelegationDelegator_add_capabilityCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/delegator_add_capability.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xc2, 0x21, 0x2e, 0xa2, 0xb9, 0x97, 0xd6, 0xee, 0x84, 0x4, 0xc0, 0x18, 0x6c, 0x12, 0xc9, 0x80, 0x6f, 0xd0, 0x3a, 0xc6, 0xcc, 0xa3, 0x72, 0x33, 0xa7, 0xe4, 0xde, 0xb6, 0x7e, 0xfd, 0x12}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8c, 0xbe, 0xa, 0x4e, 0xbc, 0x74, 0xc8, 0x4f, 0xad, 0xc7, 0xaa, 0x94, 0x93, 0x8, 0xc7, 0x22, 0x42, 0xa1, 0x73, 0xae, 0xad, 0xe8, 0xe8, 0xff, 0xbb, 0x58, 0xf6, 0x30, 0xb, 0xef, 0x9, 0xa}} return a, nil } -var _idtablestakingDelegationGet_delegator_committedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\x03\x31\x10\x85\xef\xf9\x15\x8f\x9e\xba\x20\x2d\xa8\x78\x28\x78\x72\x29\xec\xb9\xed\x0f\x98\x66\x27\xdb\xd0\x64\xa6\x24\x53\x14\xc4\xff\x2e\xeb\xd2\x55\xd4\x53\xc8\x9b\xc7\xf7\xf8\x62\xbe\x68\x31\x6c\x93\xbe\x76\xed\x9e\x8e\x89\x77\x46\xe7\x28\x03\x42\xd1\x8c\xc5\xdf\xc3\xc2\xb9\xf5\x1a\xfb\x53\xac\xa8\xbe\xc4\x8b\xa1\xb0\x5d\x8b\x54\xd8\x89\x71\xa4\x44\xe2\x19\x1a\xe0\x35\xe7\x68\xc6\x3d\x4c\xcf\x2c\x75\xcc\x08\x3d\x27\x1e\xc8\xb4\x38\x47\xde\x73\xad\x4b\x4a\xa9\x41\xb8\x0a\x32\x45\x59\x8a\xf6\xdc\xb5\x1b\xec\xac\x44\x19\xee\xbe\xfb\x63\x78\xe8\xc4\x1e\xee\x9b\x0d\x0e\xdb\xf8\xf6\xf4\x88\x77\x07\x00\x89\x6d\xac\x75\x12\x14\xcf\xff\xa8\xac\xda\x99\x21\x41\xe7\x85\xe9\xfd\xb5\xf0\xe3\xd3\x7c\xc1\x27\xb9\x1b\x7f\x35\xa9\xbc\xdc\xd4\xdc\xc7\x67\x00\x00\x00\xff\xff\xf7\xec\x35\xd4\x41\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_committedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xde\xd1\x82\xb4\xa2\xe2\xa1\xe0\xa1\xba\x29\x2c\x88\x07\x93\x1e\x3c\x6e\x92\x49\xba\x34\x3b\x13\x36\x13\x2c\x88\xff\x5d\x62\x68\x15\xe9\x69\x98\xc7\xe3\x7b\x7c\x21\xf6\x92\x14\xdb\x4e\x3e\x9c\x2d\x7c\xd9\x51\xae\xfe\x10\xb8\x45\x93\x24\xe2\xe6\xe8\x6c\xf6\x5a\xb8\xe2\xbd\xd8\x3c\xbd\x64\x1b\x6b\xdf\xb2\x3c\x37\x66\xb5\x42\xb1\x0f\x03\x86\x2a\x85\x5e\x91\x48\xc7\xc4\x03\x74\x4f\x28\x7d\xe7\xb9\x22\x48\x83\x4a\x62\x0c\xaa\x54\x43\xe5\x40\x3c\x4c\x99\x47\x4d\x1d\xb5\x5e\x25\x19\xd3\x8f\x25\x9a\x91\x11\x7d\xe0\x2b\x96\x9a\x9c\x5d\x23\xd7\x14\xb8\xbd\xfe\xed\x4d\xe1\xce\xb1\xde\xdd\x2e\xd6\xd8\x6d\xc3\xf1\xe1\x1e\x9f\x06\x00\x3a\xd2\xa9\xe6\xb8\x11\x3c\x5e\x90\x58\xda\x33\x83\x1b\x39\x2f\xcc\xf7\xdf\xc2\x9f\x67\xf1\x03\x9f\xa5\x4e\xfc\xe5\xac\xf0\x7c\x52\x32\x5f\xdf\x01\x00\x00\xff\xff\xd0\x83\xf2\x49\x3b\x01\x00\x00" func idtablestakingDelegationGet_delegator_committedCdcBytes() ([]byte, error) { return bindataRead( @@ -2659,11 +2620,11 @@ func idtablestakingDelegationGet_delegator_committedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_committed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0x47, 0x67, 0x61, 0x72, 0x82, 0xe7, 0x5, 0x71, 0x85, 0xa0, 0x71, 0x55, 0x61, 0x1, 0x5c, 0x1e, 0x63, 0xf7, 0x20, 0xd0, 0xe0, 0x44, 0x4f, 0x2d, 0xf0, 0xd3, 0x90, 0x56, 0x35, 0xa3, 0x92}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0xb5, 0xf, 0xba, 0xf, 0x7b, 0x39, 0xf1, 0x31, 0xef, 0x95, 0x64, 0x1f, 0x4, 0xc8, 0xd9, 0xc1, 0xc4, 0x5b, 0x9a, 0xb2, 0x85, 0x44, 0xde, 0x8d, 0x99, 0x72, 0x68, 0x5, 0xc4, 0x36, 0x2b}} return a, nil } -var _idtablestakingDelegationGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8e\xc1\x4a\x87\x40\x10\x87\xef\xfb\x14\x3f\x3c\x29\x44\x42\xdd\x3c\x4b\xe0\x59\x7b\x80\x69\x1d\x75\x68\x9d\x95\xdd\x11\x0f\xd1\xbb\x87\x14\x16\x15\xfc\x4f\xc3\xcc\x7c\xf0\x7d\xb2\x6e\x31\x19\x9e\x42\x3c\xba\x76\xa0\x97\xc0\xbd\xd1\xab\xe8\x8c\x29\xc5\x15\xc5\xdf\x47\xe1\x5c\x5d\x63\x58\x24\x23\xfb\x24\x9b\x21\xb1\xed\x49\x33\x28\x04\xd8\xc2\x10\x9d\x22\x28\xe7\xe8\x85\x8c\x47\x1c\x62\x0b\x08\x23\x07\x9e\xc9\x62\x72\x8e\xbc\xe7\x9c\x4b\x0a\xa1\xc2\xb4\x2b\x56\x12\x2d\x35\x8e\xdc\xb5\x0d\x7a\x4b\xa2\xf3\xdd\x37\x7f\x1e\x9f\x3b\xb5\xc7\x87\xaa\xf9\xa7\xf4\xbe\xbd\xc0\x53\xfc\xe6\x00\x7c\x35\xdd\xa4\x2f\xe9\xe7\xfc\x25\xfd\xb1\x54\xee\xfd\x23\x00\x00\xff\xff\x23\x78\xfb\x5e\x2b\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8e\x41\x4b\xc4\x30\x10\x46\xef\xf9\x15\xdf\xd1\x05\x71\x45\x6f\x7b\x5b\x49\x85\x80\x78\x30\xf1\xe0\x71\x76\x9b\xb6\x83\xe9\xa4\x24\x53\x56\x10\xff\xbb\x14\xa5\x8a\x08\x7b\x1a\xe6\xe3\xc1\x7b\x3c\x4e\xb9\x28\xee\x53\x3e\x39\x1b\xe8\x90\xa2\x57\x7a\x65\xe9\xd1\x95\x3c\xe2\xfa\xcd\xd9\xe6\x31\xb8\xf0\x12\xf6\x77\x0f\xcd\xde\xda\xa7\xc6\x7b\x63\xb6\x5b\x84\x81\x2b\xea\xb1\xf0\xa4\x28\x51\xe7\x22\x15\x94\x12\x74\x88\x60\xe9\x32\xa8\xd6\x7c\x64\xd2\xd8\xe2\xc4\x3a\x80\xd0\xc6\x14\x7b\xd2\x5c\x8c\x99\xe6\x03\xba\x59\x30\x12\xcb\x85\xe4\x36\x3a\xbb\x83\xd7\xc2\xd2\x5f\xfe\x70\xcb\xf8\xec\x44\x6f\x6f\x36\xbb\x7f\x1a\xaf\xec\x0a\x2e\xc2\x77\x03\xe0\xbb\xe5\x2c\xbd\x4a\xbf\xee\x1f\xe9\xaf\x67\x63\x3e\x3e\x03\x00\x00\xff\xff\x51\x05\x16\x8f\x25\x01\x00\x00" func idtablestakingDelegationGet_delegator_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -2679,11 +2640,11 @@ func idtablestakingDelegationGet_delegator_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0xec, 0xa2, 0x5c, 0x37, 0x3d, 0x48, 0x22, 0x10, 0x24, 0xc6, 0xbc, 0x82, 0x80, 0x47, 0xaf, 0xd2, 0xac, 0xbf, 0xb3, 0xc5, 0x14, 0x25, 0x8f, 0x5b, 0x8f, 0x80, 0x5e, 0x86, 0x97, 0x9e, 0x72}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x21, 0xa8, 0x94, 0x85, 0xd9, 0xe1, 0x14, 0x1f, 0x3d, 0x6a, 0x33, 0xd5, 0xbe, 0xc1, 0x84, 0x39, 0xc8, 0x4a, 0x14, 0x55, 0x44, 0xdc, 0xa6, 0x75, 0xae, 0x4f, 0xff, 0xc4, 0xc4, 0xeb, 0xd6}} return a, nil } -var _idtablestakingDelegationGet_delegator_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\xc1\x6a\xf3\x30\x10\x84\xef\x7a\x8a\xc1\x87\x1f\x1b\x7e\xec\x7b\x68\x1b\x42\x43\x21\x97\x52\x68\x5e\x60\x2d\xad\x13\xb5\x8a\xd6\x48\x6b\x72\x08\x79\xf7\x92\xb8\x89\x53\x1a\xa8\x4e\xcb\xee\x30\xdf\x68\xfc\xae\x97\xa4\x78\x09\xb2\x5f\x2d\xd7\xd4\x06\x7e\x57\xfa\xf4\x71\x83\x2e\xc9\x0e\xc5\xef\x43\x61\x4c\xd3\x60\xbd\xf5\x19\xd9\x26\xdf\x2b\x36\xac\x19\x14\x02\x74\xcb\xf0\xb1\x13\x50\x2b\x83\x82\xe0\x38\xf0\x86\x54\x12\x28\x3a\x24\xd6\x21\xc5\x0c\xaf\xc6\x90\xb5\x9c\x73\x49\x21\x54\xe8\x86\x88\x1d\xf9\x58\x92\x73\x89\x73\x9e\x61\x31\x0e\xd5\xec\x4e\xb0\x7a\x79\x31\x5d\x9d\x50\x07\x63\x00\x20\xb0\xde\xd0\x1e\x4f\x99\x16\xd6\xca\x10\xf5\xe2\x5a\x9d\x75\xa7\x57\x5b\xea\xa9\xf5\xc1\xab\xe7\x5c\xb7\x92\x92\xec\x1f\xfe\x1d\xee\xa0\x5e\xc5\xf1\x15\xf7\x36\xb4\xc1\xdb\xe3\x53\xd9\xf4\xe7\xa9\xe9\x82\xec\xbf\x95\x57\xd1\x44\x99\xcf\xd1\x53\xf4\xb6\x2c\x9e\x65\x08\x0e\x51\x14\x23\x0b\x89\x3b\x4e\x1c\x2d\x43\xe5\x26\xb5\xb4\x1f\x6c\xb5\xa8\xc6\x1f\x8d\x6d\xfd\x59\x40\x19\xc5\xf1\x6a\x39\x9b\x7c\xea\x71\xf3\x7f\xda\xfc\x3c\x7b\x57\x99\xa3\xf9\x0a\x00\x00\xff\xff\xb9\xc7\x94\xa1\xf9\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x4f\x4b\xc3\x40\x10\xc5\xef\xfb\x29\x1e\x3d\x48\x02\xd2\x78\x2e\x6a\x89\x4d\x85\x80\x14\xb1\xb9\x78\xdc\x64\x27\xe9\xea\x76\x27\x6c\x26\x54\x29\xfd\xee\xd2\xc6\xfe\x11\x0a\xee\x69\x78\xfb\x78\xbf\x99\x67\xd7\x2d\x07\xc1\xb3\xe3\x4d\x9e\x15\xba\x74\xb4\x14\xfd\x69\x7d\x83\x3a\xf0\x1a\x77\x5f\x79\x36\x5f\x14\x79\xf1\x5e\xa4\x4f\x2f\xf3\x34\xcb\xde\xe6\xcb\xa5\x52\x49\x82\x62\x65\x3b\x74\x55\xb0\xad\xa0\x21\xe9\xa0\x9d\x83\xac\x08\xd6\xd7\x0c\x5d\x72\x2f\xd0\x30\xe4\xa8\xd1\xc2\x01\xda\x1b\x04\x92\x3e\xf8\x0e\x56\x94\x6a\xfb\x12\x75\xef\xb1\xd6\xd6\x47\xda\x98\x40\x5d\x37\x41\x3a\x0c\xf1\xe4\xca\x4a\xe3\xec\x18\x96\xef\x11\x5b\xa5\x00\xc0\x91\x5c\x50\x1e\xf6\xbb\xa4\x55\xc5\xbd\x97\x63\x6a\x7c\xf0\xed\xdf\xb8\x21\x99\xe9\x56\x97\xd6\x59\xf9\xbe\xbf\xd9\x5e\x81\x2c\xd8\xd0\x09\xf4\xda\x97\xce\x56\xbb\xc7\x28\x69\x0f\x53\x52\x3b\xde\xfc\x3a\x4f\xa6\x8b\xfc\x92\x43\xe0\x4d\x74\x56\xa6\x53\xb4\xda\xdb\x2a\x1a\xcd\xb8\x77\x06\x9e\x05\x83\x09\x81\x6a\x0a\xe4\x2b\x82\xf0\xc5\x05\x5c\x7e\x50\x25\xa3\x78\xb8\x6e\x68\xec\xdf\x32\x22\xcf\x86\xf2\x6c\x72\xce\x19\x0f\xca\xed\x59\xf9\xfb\x6d\x4d\xac\x76\xea\x27\x00\x00\xff\xff\x48\xe7\x60\xcd\xff\x01\x00\x00" func idtablestakingDelegationGet_delegator_info_from_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -2699,11 +2660,11 @@ func idtablestakingDelegationGet_delegator_info_from_addressCdc() (*asset, error } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_info_from_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x6d, 0xf0, 0x20, 0xdc, 0x44, 0xad, 0x75, 0x83, 0x22, 0xdd, 0xd0, 0xfe, 0x92, 0x57, 0x2d, 0xf0, 0xc2, 0x14, 0x1b, 0x47, 0x3a, 0xe7, 0x2c, 0xc6, 0xc0, 0xeb, 0x5b, 0xa3, 0xba, 0x2e, 0xa9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa, 0x76, 0xb3, 0x28, 0xb8, 0xcd, 0xae, 0x9, 0x22, 0x66, 0x1, 0x9, 0x23, 0x30, 0xd7, 0x40, 0x20, 0x33, 0x70, 0x33, 0xec, 0x8, 0x11, 0x57, 0x5f, 0xab, 0x83, 0x13, 0x9, 0xa3, 0xb2, 0xa9}} return a, nil } -var _idtablestakingDelegationGet_delegator_requestCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4a\xc3\x40\x10\x86\xef\xfb\x14\x3f\x3d\x35\x20\x2d\xa8\x78\x28\x78\x0b\x85\x5c\x6d\xf2\x00\xd3\x64\x36\x5d\xba\x99\xa9\xbb\xb3\x28\x88\xef\x2e\x6d\x6d\x15\xed\x69\x98\x99\x9f\xef\xe7\x0b\xd3\x41\x93\x61\x1d\xf5\xad\xa9\x5b\xda\x46\xde\x18\xed\x83\x8c\xf0\x49\x27\xcc\xfe\x3f\x66\xce\x2d\x97\x68\x77\x21\x23\xf7\x29\x1c\x0c\x89\xad\x24\xc9\xb0\x1d\x23\xf1\x6b\xe1\x6c\x3c\xa0\x48\xfe\x26\x6d\x29\x92\xf4\x0c\xf5\x20\x0c\x1c\x79\x24\xd3\xe4\x1c\xf5\x3d\xe7\x3c\xa7\x18\x2b\xf8\x22\x98\x28\xc8\x5c\x74\xe0\xa6\x5e\x61\x63\x29\xc8\x78\xf7\x93\x3f\x1e\xbb\x46\xec\xe1\xbe\x5a\xa1\x5b\x87\xf7\xa7\x47\x7c\x38\x00\x88\x6c\xc7\x58\x23\x5e\xf1\x7c\x43\x65\x51\x5f\x19\xe2\xf5\xda\x70\x9e\x7f\x1a\x7e\x2d\xd5\x09\x7e\x96\xbb\xf0\x17\xa6\x7b\x96\xfc\x72\xb1\x6c\xb5\x3b\x69\xb2\xfb\xfc\x0a\x00\x00\xff\xff\xac\xc1\x7c\x54\x4a\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_requestCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xde\xd1\x82\xb4\xa2\xe2\xa1\xe0\xa1\xb2\x2d\x2c\x88\x87\x66\x73\xf0\xb8\x69\x26\xe9\xd2\x64\x26\xee\x4e\xb0\x20\xfe\x77\x69\x6b\xab\x88\xa7\x61\x1e\x8f\xef\xf1\xc5\x7e\x90\xa4\x58\x75\xf2\xee\xac\x0f\x55\x47\x85\x86\x5d\xe4\x16\x4d\x92\x1e\x37\x7b\x67\x97\x2f\xde\xf9\x57\xbf\x78\x7a\x5e\x2e\xac\x5d\x2f\x8b\xc2\x98\xd9\x0c\x7e\x1b\x33\xf2\x26\xc5\x41\x91\x48\xc7\xc4\x19\xba\x25\x24\x7a\x1b\x29\x2b\xd5\x18\x39\x7f\xb3\xaa\xd0\x05\xde\x10\xa4\x41\x40\x4d\x1d\xb5\x41\x25\x19\x33\x8c\x15\x9a\x91\xd1\x87\xc8\x57\x2c\x35\x39\x3b\x47\xa1\x29\x72\x7b\xfd\xd3\x3b\x84\xa5\x63\xbd\xbb\x9d\xcc\x51\xae\xe2\xfe\xe1\x1e\x1f\x06\x00\x3a\xd2\x43\xcd\x71\x23\x78\xfc\x47\x62\x6a\x2f\x0c\x6e\xe4\xb2\x70\xba\x7f\x16\x7e\x3d\x93\x23\xfc\x24\x75\xe6\x4f\x55\x76\xc4\x79\x7d\xb6\xf3\x52\x1e\xf5\xc8\x7c\x7e\x05\x00\x00\xff\xff\xa8\x39\xca\x4b\x44\x01\x00\x00" func idtablestakingDelegationGet_delegator_requestCdcBytes() ([]byte, error) { return bindataRead( @@ -2719,11 +2680,11 @@ func idtablestakingDelegationGet_delegator_requestCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_request.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb3, 0xbb, 0x41, 0xe6, 0xc4, 0x7c, 0xfd, 0xd9, 0xbd, 0x61, 0xf5, 0x8b, 0xe7, 0x6b, 0x66, 0x9e, 0xb3, 0x1c, 0x8b, 0xe3, 0x1f, 0xcf, 0x60, 0x5b, 0x7d, 0x90, 0x27, 0x78, 0xc9, 0x89, 0x7c, 0x74}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0x6, 0x0, 0x57, 0x46, 0x94, 0xda, 0x7f, 0x98, 0xf0, 0x3a, 0xb8, 0xa9, 0xe7, 0xe4, 0x9a, 0xea, 0xbe, 0xf6, 0xe9, 0xbe, 0x9e, 0x8a, 0x20, 0xad, 0x44, 0x2, 0x5d, 0x20, 0xa9, 0x12, 0xb8}} return a, nil } -var _idtablestakingDelegationGet_delegator_rewardedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x1e\x3d\x35\x20\x2d\xa8\x78\x28\x78\x0b\x85\x5c\x6d\xfb\x03\xa6\xc9\x6c\xba\x74\x33\x53\x66\xa7\x54\x10\xff\xbb\xc4\x68\x15\xed\x69\xd9\x37\x8f\xef\xf1\xa5\xe1\xa4\xe6\x58\x67\xbd\x34\xf5\x96\xf6\x99\x37\x4e\xc7\x24\x3d\xa2\xe9\x80\xd9\xff\xc3\x2c\x84\xe5\x12\xdb\x43\x2a\x28\xad\xa5\x93\xc3\xd8\xcf\x26\x05\x7e\x60\xec\x29\x93\xb4\x0c\x8d\x30\xbe\x90\x75\xdc\xc1\xf5\xc8\x52\xc6\x88\xd0\x71\xe6\x9e\x5c\x2d\x04\x6a\x5b\x2e\x65\x4e\x39\x57\x88\x67\xc1\x40\x49\xe6\xa2\x1d\x37\xf5\x0a\x1b\xb7\x24\xfd\xdd\x4f\x7f\x0c\x77\x8d\xf8\xc3\x7d\xb5\xc2\x6e\x9d\x5e\x9f\x1e\xf1\x16\x00\x20\xb3\x8f\xb5\x46\xa2\xe2\xf9\x86\xc9\xa2\xbe\x32\x24\xea\x75\x61\x7a\xff\x2c\xfc\xfa\x54\x9f\xf0\xc9\xed\x9b\xbf\x98\x54\x5e\xbe\xcc\xc2\xfb\x47\x00\x00\x00\xff\xff\x43\x2a\x44\xd3\x3f\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_rewardedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xde\xd1\x82\xb4\xa2\xe2\xa1\xe0\xa1\xb2\x29\x2c\x88\x87\x66\x7b\xf0\xb8\x69\x66\xd3\xa5\x9b\xd9\xb0\x99\xd0\x82\xf8\xdf\x25\x46\xa3\x88\xa7\x61\x1e\x8f\xef\xf1\x85\xb6\x4b\x59\xb0\x8d\xe9\x6c\xb4\x75\x55\xa4\x52\xdc\x29\x70\x03\x9f\x53\x8b\x9b\x8b\xd1\xc5\x8b\x35\xf6\xd5\x6e\x9e\x9e\x8b\x8d\xd6\xbb\xa2\x2c\x95\x5a\xad\x60\x8f\xa1\x47\x7f\xc8\xa1\x13\x64\x92\x21\x73\x0f\x39\x12\x2a\x17\x1d\x1f\x08\xc9\x23\xd3\xd9\xe5\x9a\x6a\x48\x3a\x11\xf7\x63\xe4\x50\x53\xa4\xc6\x49\xca\x4a\x75\x43\x05\x3f\x30\x5a\x17\xf8\x8a\x53\x4d\x46\xaf\x51\x4a\x0e\xdc\x5c\xff\xf4\xc6\x70\x6f\x58\xee\x6e\x17\x6b\xec\xb7\xe1\xf2\x70\x8f\x37\x05\x00\x91\x64\xac\x19\xf6\x09\x8f\xff\x38\x2c\xf5\xcc\x60\x9f\xe6\x85\xe9\xfe\x59\xf8\xf5\x2c\x3e\xe1\x93\xd3\x37\x7f\x39\x29\xec\xbe\x8c\xd4\xfb\x47\x00\x00\x00\xff\xff\x68\x0c\xb5\xcb\x39\x01\x00\x00" func idtablestakingDelegationGet_delegator_rewardedCdcBytes() ([]byte, error) { return bindataRead( @@ -2739,11 +2700,11 @@ func idtablestakingDelegationGet_delegator_rewardedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_rewarded.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x49, 0x68, 0x38, 0xca, 0x24, 0xda, 0x96, 0x6b, 0xc3, 0x6d, 0x21, 0xa3, 0xf8, 0x87, 0x48, 0x9, 0x2b, 0x15, 0x80, 0xf6, 0x53, 0x30, 0xce, 0x89, 0x5d, 0x88, 0xbe, 0xba, 0xd, 0xab, 0x52, 0x88}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0xe2, 0x1d, 0xb1, 0x8f, 0x92, 0x3c, 0xb3, 0x88, 0xe3, 0xf7, 0x4a, 0xc, 0xdd, 0x45, 0xa6, 0x56, 0x82, 0x78, 0xe4, 0x42, 0xbb, 0xa3, 0xf8, 0x81, 0xc0, 0x20, 0x10, 0x3b, 0x3f, 0x1d, 0x5e}} return a, nil } -var _idtablestakingDelegationGet_delegator_stakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\x21\xa7\x18\x4a\x02\x6d\xe9\x21\xd0\x9b\x09\xf8\xec\xe4\x03\x36\xf2\xca\x11\x96\x77\x83\xb4\xa1\x85\xd2\x7f\x2f\x8e\xa9\x5b\xda\x9c\x84\x66\x87\x37\xbc\x38\x5e\x34\x1b\xf6\x49\xdf\x9a\xfa\x40\xa7\xc4\xad\xd1\x10\xa5\x47\xc8\x3a\x62\xf5\xff\xb0\x72\x6e\xbb\xc5\xe1\x1c\x0b\x8a\xcf\xf1\x62\xc8\x6c\xd7\x2c\x05\x76\x66\x9c\x28\x91\x78\x86\x06\x14\xa3\x81\x3b\x98\x0e\x2c\x65\x0a\x08\x1d\x27\xee\xc9\x34\x3b\x47\xde\x73\x29\x6b\x4a\xa9\x42\xb8\x0a\x46\x8a\xb2\x16\xed\xb8\xa9\x77\x68\x2d\x47\xe9\x1f\x7e\xfa\x53\x78\x6c\xc4\x9e\x1e\xab\x1d\x8e\xfb\xf8\xfe\xf2\x8c\x0f\x07\x00\x89\x6d\xaa\x35\x12\x14\xaf\x77\x3c\x36\xf5\xc2\x90\xa0\xcb\xc2\xfc\xfe\x59\xf8\xf5\xa9\x6e\xf0\xd9\xec\x9b\xbf\x99\x55\xda\x9b\x97\xfb\xfc\x0a\x00\x00\xff\xff\xb6\x0e\x61\x8e\x3b\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_stakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\x03\x31\x10\x85\xef\xf9\x15\xef\x68\x41\x5a\x51\xf1\x50\xf0\x50\x49\x0b\x01\xf1\xe0\xa6\x07\x8f\xd9\xee\x64\x1b\x36\x3b\x59\x92\x59\x2c\x88\xff\x5d\xb6\x8b\x55\xc4\xd3\x30\x8f\xc7\xf7\xf8\x42\x3f\xa4\x2c\xd8\xc5\xf4\x6e\xb4\x75\x75\xa4\x4a\x5c\x17\xb8\x85\xcf\xa9\xc7\xcd\xc9\xe8\xed\x8b\x35\xf6\xcd\x6e\x9e\x9e\xb7\x1b\xad\x5f\xb7\x55\xa5\xd4\x6a\x05\x7b\x0c\x05\xe5\x90\xc3\x20\xc8\x24\x63\xe6\x02\x39\x12\x6a\x17\x1d\x1f\x08\xc9\xa3\x88\xeb\xa8\x81\xa4\x8e\xb8\x4c\x81\x43\x43\x91\x5a\x27\x29\x2b\x35\x8c\x35\xfc\xc8\xe8\x5d\xe0\x2b\x4e\x0d\x19\xbd\x46\x25\x39\x70\x7b\xfd\xd3\x9b\xc2\xbd\x61\xb9\xbb\x5d\xac\xb1\xdf\x85\xd3\xc3\x3d\x3e\x14\x00\x44\x92\xa9\x66\xd8\x27\x3c\xfe\x63\xb0\xd4\x17\x06\xfb\x74\x59\x98\xef\x9f\x85\x5f\xcf\xe2\x0c\x9f\x8d\xbe\xf9\xcb\x59\xa1\x3a\xfb\xa8\xcf\xaf\x00\x00\x00\xff\xff\xb5\xc8\x55\xe1\x35\x01\x00\x00" func idtablestakingDelegationGet_delegator_stakedCdcBytes() ([]byte, error) { return bindataRead( @@ -2759,11 +2720,11 @@ func idtablestakingDelegationGet_delegator_stakedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_staked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0xa3, 0x50, 0xb5, 0xe3, 0xfd, 0x6a, 0x86, 0xd8, 0xd, 0x25, 0x9d, 0x1, 0xff, 0xb6, 0x29, 0x19, 0xea, 0xb3, 0x5e, 0x31, 0x71, 0x98, 0xc9, 0x61, 0x24, 0x8c, 0xc6, 0x53, 0x15, 0xa5, 0xee}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfb, 0x1a, 0x98, 0xb2, 0xb2, 0x34, 0xae, 0x31, 0x6d, 0x97, 0xe8, 0xb4, 0x15, 0x21, 0x0, 0xd9, 0xcc, 0x76, 0xb5, 0x42, 0x72, 0xc5, 0x28, 0x29, 0x17, 0x94, 0x27, 0x49, 0x89, 0x4a, 0x83, 0xbb}} return a, nil } -var _idtablestakingDelegationGet_delegator_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x1e\x3d\x35\x20\x2d\xa8\x78\x28\x78\x0b\x85\x9c\xdb\xfc\x80\xe9\x66\x36\x5d\xb2\x99\x29\xbb\x13\x14\xc4\xff\x2e\x31\x18\x45\x3d\x2d\xfb\xe6\xf1\x3d\xbe\x38\xde\x34\x1b\x8e\x49\x5f\x9a\xfa\x4c\x97\xc4\x27\xa3\x21\x4a\x8f\x90\x75\xc4\xe6\xef\x61\xe3\xdc\x7e\x8f\xf3\x35\x16\x14\x9f\xe3\xcd\x90\xd9\xa6\x2c\x05\x76\x65\x5c\x28\x91\x78\x86\x06\x4c\x92\xd4\x0f\xdc\xc1\x74\x60\x29\x73\x44\xe8\x38\x71\x4f\xa6\xd9\x39\xf2\x9e\x4b\xd9\x52\x4a\x15\xc2\x24\x18\x29\xca\x56\xb4\xe3\xa6\x3e\xe0\x64\x39\x4a\x7f\xf7\xdd\x9f\xc3\xb6\x11\x7b\xb8\xaf\x0e\x68\x8f\xf1\xf5\xe9\x11\x6f\x0e\x00\x12\xdb\x5c\x6b\x24\x28\x9e\xff\x31\xd9\xd5\x2b\x43\x82\xae\x0b\xcb\xfb\x6b\xe1\xc7\xa7\xfa\x84\x2f\x6e\x5f\xfc\xdd\xa2\xd2\x4a\x31\x1a\xb8\x73\xef\x1f\x01\x00\x00\xff\xff\x17\x71\xde\xe9\x3f\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4a\xf4\x40\x10\x84\xef\xf3\x14\x75\xfc\x17\x7e\x76\x45\xc5\xc3\x82\x87\x95\xc9\xc2\x80\x78\x30\xc9\xc1\xe3\x24\xe9\x64\x87\x4c\xba\xc3\xa4\x83\x0b\xe2\xbb\x4b\x0c\xae\x22\x9e\x9a\x2e\x8a\xaf\xf8\xc2\x30\x4a\x52\x1c\xa3\xbc\x3a\x5b\xf8\x2a\x52\xae\xbe\x0f\xdc\xa1\x4d\x32\xe0\xea\xec\x6c\xf6\x54\xb8\xe2\xa5\x38\x3c\x3c\x66\x07\x6b\x9f\xb3\x3c\x37\x66\xb7\x43\x71\x0a\x13\xa6\x3a\x85\x51\x91\x48\xe7\xc4\x13\xf4\x44\xa8\x7c\xf4\x5c\x13\xa4\xc5\xcc\x51\xea\x9e\x1a\xa8\xf4\xc4\xd3\x12\x79\x34\x14\xa9\xf3\x2a\xc9\x98\x71\xae\xd0\xce\x8c\xc1\x07\xfe\xc7\xd2\x90\xb3\x7b\xe4\x9a\x02\x77\xff\xbf\x7b\x4b\x58\x3a\xd6\x9b\xeb\xcd\x1e\xe5\x31\x9c\xef\x6e\xf1\x66\x00\x20\x92\x2e\x35\xc7\xad\xe0\xfe\x0f\x87\xad\xbd\x30\xb8\x95\xcb\xc2\x7a\x7f\x2d\xfc\x78\x36\x9f\xf0\xd5\xe9\x8b\xbf\x5d\x15\x4a\x9e\xd4\xf7\xd4\x98\xf7\x8f\x00\x00\x00\xff\xff\x38\x38\xde\x6a\x39\x01\x00\x00" func idtablestakingDelegationGet_delegator_unstakedCdcBytes() ([]byte, error) { return bindataRead( @@ -2779,11 +2740,11 @@ func idtablestakingDelegationGet_delegator_unstakedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_unstaked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0xc8, 0x77, 0xab, 0xbb, 0xa7, 0xd3, 0xbf, 0xfd, 0x5a, 0xfa, 0x9a, 0xce, 0x3f, 0xb2, 0x23, 0x98, 0x64, 0x8b, 0x20, 0x2a, 0x9f, 0x26, 0xb6, 0x78, 0xe5, 0xc, 0x1a, 0x6f, 0xa7, 0xf9, 0xcf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd2, 0xbf, 0x6e, 0x9a, 0xf7, 0x0, 0xbe, 0xa, 0x1e, 0x24, 0x27, 0xfd, 0x32, 0x5a, 0xe9, 0x93, 0xd, 0x78, 0x58, 0x6b, 0x3b, 0x89, 0x34, 0x82, 0x8, 0x4a, 0x9e, 0x8a, 0x86, 0xe9, 0x4b, 0xd2}} return a, nil } -var _idtablestakingDelegationGet_delegator_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\x03\x31\x10\x85\xef\xf9\x15\x8f\x9e\xba\x20\x2d\xa8\x78\x28\x78\x5b\x0a\x39\xb7\xfb\x03\xa6\xe9\x64\x1b\x9a\x9d\x29\xc9\x2c\x0a\xe2\x7f\x97\x75\x6d\x15\xf5\x14\xf2\xe6\xf1\x3d\xbe\x34\x5c\xb4\x18\xb6\x59\x5f\x7c\xbb\xa7\x43\xe6\x9d\xd1\x39\x49\x8f\x58\x74\xc0\xe2\xef\x61\xe1\xdc\x7a\x8d\xfd\x29\x55\xd4\x50\xd2\xc5\x50\xd8\xc6\x22\x15\x76\x62\x1c\x28\x93\x04\x86\x46\x8c\x52\xbf\x50\xa6\x67\x96\x3a\x65\x84\x23\x67\xee\xc9\xb4\x38\x47\x21\x70\xad\x4b\xca\xb9\x41\x1c\x05\x03\x25\x59\x8a\x1e\xd9\xb7\x1b\xec\xac\x24\xe9\xef\xbe\xfb\x53\xd8\x79\xb1\x87\xfb\x66\x83\x6e\x9b\x5e\x9f\x1e\xf1\xe6\x00\x20\xb3\x4d\x35\x2f\x51\xf1\xfc\x8f\xca\xaa\xbd\x31\x24\xea\x6d\x61\x7e\x7f\x2d\xfc\xf8\x34\x9f\xf0\x59\xee\xca\x5f\xcd\x2a\xdd\x55\xcd\xbd\x7f\x04\x00\x00\xff\xff\x4e\x43\x93\xce\x41\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4a\x33\x31\x14\x85\xf7\x79\x8a\xb3\xfc\x0b\x3f\xad\xa8\xb8\x28\xb8\xa8\x64\x0a\x01\x71\xe1\x64\x16\x2e\x33\x6d\x32\x0d\xcd\xdc\x3b\x24\x77\xb0\x20\xbe\xbb\x8c\x63\xab\x88\xab\xcb\x3d\x1c\xbe\xc3\x17\xfb\x81\xb3\x60\x9b\xf8\xd5\x68\xeb\xda\xe4\x6b\x71\xc7\x48\x1d\x42\xe6\x1e\x57\x27\xa3\xab\x27\x6b\xec\x8b\xdd\x3c\x3c\x56\x1b\xad\x9f\xab\xba\x56\x6a\xb5\x82\x3d\xc4\x82\xb2\xcb\x71\x10\x64\x2f\x63\xa6\x02\x39\x78\xb4\x2e\x39\xda\x79\x70\xc0\x48\xe5\x0b\x26\x7c\xf4\x54\xa6\xcc\x61\xef\x93\xef\x9c\x70\x56\x6a\x18\x5b\x84\x91\xd0\xbb\x48\xff\x88\xf7\xde\xe8\x35\x6a\xc9\x91\xba\xff\xdf\xbd\x29\x6c\x0c\xc9\xcd\xf5\x62\x8d\x66\x1b\x4f\x77\xb7\x78\x53\x00\x90\xbc\x4c\x35\x43\x81\x71\xff\x87\xc4\x52\x5f\x18\x14\xf8\xb2\x30\xdf\x5f\x0b\x3f\x9e\xc5\x27\x7c\x96\x3a\xf3\x97\xb3\x42\x73\x56\x52\xef\x1f\x01\x00\x00\xff\xff\x59\x64\x08\x22\x3b\x01\x00\x00" func idtablestakingDelegationGet_delegator_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2799,11 +2760,11 @@ func idtablestakingDelegationGet_delegator_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7e, 0x24, 0x1a, 0xd4, 0x50, 0x1c, 0x82, 0xa3, 0x78, 0x5f, 0xcf, 0x98, 0x34, 0xf2, 0x69, 0x64, 0x7d, 0x4e, 0xb2, 0xf8, 0x97, 0x2b, 0x6d, 0xd5, 0x4d, 0x7f, 0x79, 0x31, 0xfb, 0xa5, 0x97, 0xda}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0xcc, 0xb4, 0xc7, 0x5b, 0x20, 0xa9, 0x46, 0xd8, 0x41, 0x41, 0x21, 0x21, 0x9e, 0x97, 0x29, 0x8a, 0x19, 0x72, 0x4e, 0x64, 0x3, 0x3a, 0xd5, 0x46, 0x41, 0xa6, 0x9f, 0xdf, 0x8d, 0xbb, 0xf6}} return a, nil } -var _idtablestakingDelegationGet_delegator_unstaking_requestCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x1e\x3d\x35\x20\x2d\xa8\x78\x28\x78\x0b\x85\x5c\x6d\xf2\x03\xa6\xc9\x6c\xba\x74\x33\x53\x77\x27\x28\x88\xff\x5d\xd2\x68\x14\xf5\xb4\xec\x9b\xc7\xf7\xf8\xc2\x70\xd1\x64\xd8\x47\x7d\xa9\xca\x9a\x8e\x91\x0f\x46\xe7\x20\x3d\x7c\xd2\x01\xab\xbf\x87\x95\x73\xdb\x2d\xea\x53\xc8\xc8\x6d\x0a\x17\x43\x62\x1b\x93\x64\xd8\x89\x71\xa4\x48\xd2\x32\xd4\x63\x94\xfc\x89\x32\x3d\xb3\xe4\x29\x23\x74\x1c\xb9\x27\xd3\xe4\x1c\xb5\x2d\xe7\xbc\xa6\x18\x0b\xf8\x51\x30\x50\x90\xb5\x68\xc7\x55\xb9\xc3\xc1\x52\x90\xfe\xe6\xbb\x3f\x85\x4d\x25\x76\x77\x5b\xec\xd0\xec\xc3\xeb\xc3\x3d\xde\x1c\x00\x44\xb6\xa9\x56\x89\x57\x3c\xfe\xa3\xb2\x29\x17\x86\x78\x5d\x16\xe6\xf7\xd7\xc2\x8f\x4f\x71\x85\xcf\x72\x5f\xfc\xcd\xac\xf2\xc4\xcf\x23\x67\xe3\xae\xd6\xe6\x6a\xc9\xee\xfd\x23\x00\x00\xff\xff\x1d\xef\xbb\x1e\x4a\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_unstaking_requestCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4a\xf3\x40\x14\x85\xf7\xf3\x14\x67\xf9\x17\x7e\x5a\x51\x71\x51\x70\x51\x99\x14\x06\xc4\x45\x33\x59\xb8\x9c\x34\x37\xe9\xd0\xe4\x4e\x9c\xb9\x83\x05\xf1\xdd\x25\x8d\x56\x11\x57\x97\x7b\x38\x7c\x87\xcf\x0f\x63\x88\x82\x6d\x1f\x5e\x8d\xb6\xae\xee\xa9\x14\x77\xf4\xdc\xa1\x8d\x61\xc0\xd5\xc9\xe8\xe2\xc9\x1a\xfb\x6c\x37\x0f\x8f\xc5\x46\xeb\x5d\x51\x96\x4a\xad\x56\xb0\x07\x9f\x90\xf6\xd1\x8f\x82\x48\x92\x23\x27\xc8\x81\x50\xbb\xde\xf1\x9e\x10\x5a\x64\x4e\x9f\x30\x09\x47\xe2\x34\x65\x0e\x0d\xf5\xd4\x39\x09\x51\xa9\x31\xd7\x68\x33\x63\x70\x9e\xff\x71\x68\xc8\xe8\x35\x4a\x89\x9e\xbb\xff\xdf\xbd\x29\xac\x0c\xcb\xcd\xf5\x62\x8d\x6a\xeb\x4f\x77\xb7\x78\x53\x00\xd0\x93\x4c\x35\xc3\x6d\xc0\xfd\x1f\x12\x4b\x7d\x61\x70\x1b\x2e\x0b\xf3\xfd\xb5\xf0\xe3\x59\x9c\xe1\xb3\xd4\x17\x7f\x39\x2b\xec\xe8\x25\x53\x12\x6a\x6c\xa8\xce\x76\xa4\xde\x3f\x02\x00\x00\xff\xff\xd5\x52\xe0\xa9\x44\x01\x00\x00" func idtablestakingDelegationGet_delegator_unstaking_requestCdcBytes() ([]byte, error) { return bindataRead( @@ -2819,11 +2780,11 @@ func idtablestakingDelegationGet_delegator_unstaking_requestCdc() (*asset, error } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_unstaking_request.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb7, 0xe, 0x2e, 0xcf, 0x7d, 0x6e, 0x43, 0x3d, 0x3f, 0x1c, 0x19, 0x96, 0x15, 0x58, 0x75, 0x47, 0x8, 0x3c, 0xc1, 0xd, 0x7, 0x76, 0x5f, 0x45, 0x84, 0xc5, 0x71, 0xa6, 0x4e, 0xc1, 0x3, 0x6a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0x11, 0x6f, 0xac, 0xf2, 0xc9, 0x38, 0x6a, 0x2f, 0x9d, 0x96, 0xd5, 0xe2, 0xfd, 0x20, 0x61, 0x12, 0xcd, 0xc8, 0xa8, 0x97, 0x82, 0x66, 0xa4, 0xec, 0xda, 0xde, 0xae, 0xdb, 0xc0, 0x2b, 0xf1}} return a, nil } -var _idtablestakingDelegationRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xcd\x8e\x9b\x30\x10\xbe\xf3\x14\xa3\x1c\x22\x90\x12\xb8\x54\x3d\x20\xba\xab\x8a\x28\xd2\x4a\xd5\x76\xd5\x6c\xbb\xe7\xc1\x0c\xe0\x2e\xd8\xc8\x1e\x4a\xa5\x55\xde\xbd\x32\x24\x5e\x68\x73\xa8\x2f\x16\xf8\x9b\xef\x67\x66\x64\xd7\x6b\xc3\x70\x6c\xf5\xf8\x70\x78\xc6\xa2\xa5\x13\xe3\xab\x54\x35\x54\x46\x77\xb0\xf9\xf7\x61\x13\x2c\x6a\x9e\xf5\x2b\xa9\x05\x74\xfa\x7e\x47\x0c\xaa\x96\x45\x4b\x2b\xd4\xf2\xdf\x26\x08\xd8\xa0\xb2\x28\x58\x6a\x15\x2a\x5d\xd2\xc3\x21\x85\x13\x1b\xa9\xea\x1d\x60\xa7\x07\xc5\x29\x7c\x3f\xca\xdf\x1f\x3f\x44\xf0\x16\x04\x00\x00\xbd\xa1\x1e\x0d\x85\x28\x04\xa7\x80\x03\x37\xe1\x89\xb5\xc1\x9a\x76\x90\x63\x8f\x85\x6c\x25\x4b\xb2\x11\x6c\x3f\x0b\xe1\x28\x7c\xa9\x3b\x2d\x31\x54\x57\xaf\xdf\xa8\x82\x4f\xe0\x98\x62\x3b\x73\xc4\x85\x36\x46\x8f\xd9\xc4\xbb\x72\x1b\xbf\x48\x6e\x4a\x83\x63\x04\x5b\x1f\x36\xfe\x81\x43\xcb\x77\xa1\x4b\x97\x42\x72\x21\x49\xbc\xc0\xf4\x1c\x79\x71\x77\xee\xef\xa1\x47\x25\x45\xb8\xc9\xf5\xd0\x96\xa0\x34\xc3\x2c\x0a\x86\x2a\x32\xa4\x04\x01\x6b\x38\x7e\xf9\xfa\x02\x53\xfd\x26\x7a\xb7\x9f\x24\x90\x1b\x42\x26\x40\x50\x34\x42\x49\x2d\xd5\xc8\xda\x80\x2e\x7e\x92\x60\xa8\xb4\x01\x6e\x08\x5c\x37\x57\xa1\x15\x8d\x07\x0f\xce\xf6\x37\x86\x1e\x1b\xaa\xa5\x65\x32\x8f\x0b\xa8\x1f\xcb\x7c\xef\x80\x5d\x2e\x9b\xeb\xae\x93\xcc\x54\xa6\x90\xed\x97\xfd\x8c\xc7\x4b\x9b\xc2\xeb\xfc\xe6\x3b\x5a\x87\x70\x23\xa3\xc9\xe8\xdf\x09\x3c\x6a\x35\x16\x8b\xbf\x28\xcc\xf6\xcb\x10\xce\x4a\x7a\x2b\x86\x47\x5c\xf6\xe2\x09\xb9\x89\xd6\x1b\xe0\x45\x73\xec\xaf\x1b\x20\x16\xcb\xe3\x75\xa5\xb5\x03\x65\xdb\xb7\x1b\x32\x8f\xba\x24\x2f\xf5\x34\x14\xad\x14\xe7\xbb\xf0\xbf\xfd\xac\x62\xae\xb4\x7b\xc7\x65\x9b\x70\x69\x72\x07\xc8\x29\x24\xd3\x93\x98\xf6\xeb\xc2\xee\xc9\x67\xc6\x73\x70\xfe\x13\x00\x00\xff\xff\xbb\xd1\x84\x7f\xd5\x03\x00\x00" +var _idtablestakingDelegationRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\x41\x6f\x9b\x4c\x10\x86\xef\xfc\x8a\x51\x0e\x11\x96\x62\xf3\x1d\x3e\xf5\x80\x68\x22\xd7\xd8\x92\xd5\xc8\x89\x02\x6d\xd5\xe3\x7a\x19\xf0\xd6\xb0\x83\x86\xa1\x44\x8a\xfc\xdf\xab\xc5\xf5\x96\x54\xbe\x74\x2f\x8b\xc4\x33\xb3\xcf\x3b\x63\x9a\x96\x58\x60\x53\xd3\xb0\x4d\x73\xb5\xaf\x31\x13\x75\x34\xb6\x82\x92\xa9\x81\xff\x5e\xb7\xe9\x7a\x97\x6f\xf3\xef\xf9\xf2\xd3\xe3\x7a\x99\xa6\x2f\xeb\x2c\x0b\x26\x55\x39\x1d\xd1\x5e\xe0\xcd\xe3\xd3\xb7\xfc\xe9\xf3\x7a\x77\x01\x03\x61\x65\x3b\xa5\xc5\x90\x0d\x2d\x15\xb8\x4d\x63\xc8\x84\x8d\xad\xee\x40\x35\xd4\x5b\x89\xe1\xcb\xc6\xbc\x7e\xf8\x7f\x06\x6f\x41\x00\x00\xd0\x32\xb6\x8a\x31\x54\x5a\x4b\x0c\xcb\x5e\x0e\x4b\xad\x1d\xe9\x09\x77\x6a\x14\x28\x2f\xef\xbf\x60\x09\x1f\xc1\x15\x2c\xf6\xc4\x4c\x43\x72\xeb\xdd\x16\x5f\x55\x5f\xcb\x7d\xe8\x14\x63\x88\x3a\x21\x56\x15\x46\xbe\x76\xfc\x3d\xf3\x7d\xdd\x79\x78\x80\x56\x59\xa3\xc3\x9b\x15\xf5\x75\x01\x96\x04\xce\x7d\x81\xb1\x44\x46\xab\x11\x84\xc0\xc5\x85\xb1\xfe\x66\xf6\xc7\x2c\x8a\x60\xc5\xa8\x04\x41\x81\xc5\x01\x0a\xac\xb1\x52\x42\x0c\xb4\xff\x81\x5a\xa0\x24\x06\x39\x20\xb8\x79\xbc\xcb\x63\x71\x48\x3d\x9c\xcc\xaf\x6c\x65\xc1\x58\x99\x4e\x90\x77\x13\xd4\x0f\xf6\x7c\xdf\x81\xb8\x5c\xdd\x8a\x9a\xc6\x88\x60\x11\x43\x32\x9f\x8e\x6a\x31\x18\x39\x14\xac\x86\xf0\xb2\x81\xf3\x3d\x7b\x1f\x22\x13\x62\x1c\x45\xff\x4e\xe0\xa9\x71\xe2\x9d\xfa\x89\x61\x32\x9f\xca\x3b\x85\xf8\x9a\xbe\x27\xb2\xf3\x1a\x9e\x95\x1c\x26\xaf\x8e\xfd\x6a\x63\x8f\xc9\xed\xdb\x95\xea\x1d\x15\xe8\x3b\x3c\xf7\xfb\xda\xe8\xd3\x7d\x18\xb5\xe3\xd7\xb8\xd1\xdf\xe4\x54\x44\x71\x85\xf2\x0f\x32\xce\xe3\x14\x04\xa7\x5f\x01\x00\x00\xff\xff\x04\xd2\xf0\x2f\x1a\x03\x00\x00" func idtablestakingDelegationRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -2839,11 +2800,11 @@ func idtablestakingDelegationRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xd1, 0x2c, 0x94, 0x87, 0xed, 0x6e, 0x56, 0x43, 0x77, 0xd5, 0x5, 0x39, 0x7, 0xf8, 0x30, 0x30, 0x29, 0x8b, 0x42, 0x51, 0x3f, 0x5e, 0x80, 0xb7, 0xdd, 0x39, 0x36, 0xbd, 0xbc, 0x2, 0x1b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0xc8, 0x69, 0xd6, 0x84, 0xe1, 0x91, 0x3f, 0xe8, 0xab, 0x9d, 0xe1, 0x8, 0x8e, 0x59, 0x6f, 0x6d, 0xa8, 0x9e, 0xcc, 0x90, 0x1e, 0x8b, 0xbc, 0x2e, 0x7e, 0xa, 0x57, 0xdc, 0xa1, 0x41, 0xdc}} return a, nil } -var _idtablestakingDelegationRegister_many_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6f\xe2\x30\x10\x85\xef\xfe\x15\x23\x0e\xab\x44\x0b\x81\xbd\x46\x61\xd5\x0a\x5a\x89\x4b\x55\x09\xc4\x05\x71\x18\xc2\x90\xb8\x24\x76\xe4\x4c\x82\x10\xe2\xbf\x57\x36\x10\x92\xb4\x3e\x58\x30\xf3\x5e\x66\xde\x67\x99\x17\xda\x30\xbc\x67\xfa\xb4\x98\xaf\x70\x97\xd1\x92\xf1\x28\x55\x02\x07\xa3\x73\x18\xfc\x6c\x0c\x44\xcb\xb3\xd2\x47\x52\x2d\xa9\xfb\x3f\x10\x82\x0d\xaa\x12\x63\x96\x5a\x79\x4a\xef\x69\x31\x2f\x43\xd8\x2c\xd9\x48\x95\x6c\x87\x50\x20\xa7\xb7\x82\x36\x98\xd0\x27\x72\xba\xf5\xe1\x22\x04\x00\x40\x61\xa8\x40\x43\x1e\xc6\x31\x87\x80\x15\xa7\xde\x12\x6b\x5a\x63\x56\x91\x0f\x7f\x5e\xe3\x58\x57\x8a\x1b\xb9\x3d\x35\x1a\x90\x30\x85\xc9\xb3\x74\xd0\xc6\x8d\x01\xa9\x6e\xe3\xe0\xd2\xf4\xec\x19\x8f\x61\x66\x08\x99\x00\x41\xd1\x09\xf6\x94\x51\x82\xac\x0d\xe8\xdd\x17\xc5\xec\x3e\xc0\x29\x81\x5d\xbf\xe3\xcc\x88\xad\x63\xde\x18\xa2\xd1\x2f\xfc\x02\x43\x89\x2c\x99\xcc\x47\x4b\x7a\x67\x11\xc2\x9d\xc9\x46\x6e\x87\xc0\x96\x59\x39\xd3\x79\x2e\x99\x69\x1f\x42\x34\x6a\x50\x06\xb1\xdb\xf1\x2d\x2f\xf8\xbc\xc6\x2a\x63\xaf\xb6\xf7\xea\x5c\x50\x08\xf6\x8e\x5e\x9e\x5a\x27\xf8\xef\xf9\xbe\x2f\xfa\x51\x2d\x68\x72\x71\xfa\x39\x3b\x4a\x8b\x3c\x28\x6f\x8f\x12\x94\x58\x93\x17\x8d\xda\x51\xed\xb2\xa1\xc3\xd9\x1b\x61\xe1\x4b\xf8\x0b\xff\xba\xd5\x83\x6d\x4c\x1f\x69\x83\x8c\x54\xc2\x69\xef\x21\x1e\xf6\x49\xa7\x7a\x15\xdd\x5f\x57\x21\xae\xdf\x01\x00\x00\xff\xff\xdc\x28\xf5\x58\xac\x02\x00\x00" +var _idtablestakingDelegationRegister_many_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\xef\x9a\x40\x10\xc5\xef\xfb\x29\xe6\x88\xa9\xa2\xbd\x12\x3d\x50\xc1\x84\xd4\x68\x53\x48\x9b\xc6\x78\x18\x71\x84\xad\xb0\x4b\x96\x51\xdb\x18\xbf\x7b\xb3\x28\x54\xc8\x7f\x4f\x64\xe6\xbd\xe1\xbd\x9f\x2c\x2b\x6d\x18\x56\x85\xbe\x45\x41\x82\x87\x82\x62\xc6\xb3\x54\x19\x9c\x8c\x2e\x61\xf6\x27\x0a\xc2\x4d\x12\x25\xbf\x12\xff\xcb\x3a\xf4\x83\xe0\x7b\x18\xc7\xe2\xcd\x95\xe8\x33\xa9\x56\xbc\x5a\x6f\x7f\x26\xdb\xaf\xe1\xa6\x15\x0a\x36\xa8\x6a\x4c\x59\x6a\xe5\x28\x7d\xa4\x28\xa8\x3d\xd8\xc5\x6c\xa4\xca\xf6\x63\xa8\x90\xf3\xe7\x40\x1b\xcc\xe8\x1b\x72\xbe\x1f\xc1\x5d\x08\x00\x80\xca\x50\x85\x86\x1c\x4c\x53\xf6\xc0\xbf\x70\xee\xa7\xa9\xbe\x28\xee\x14\xf6\x5d\xd1\x80\x84\x05\xcc\xfe\x8f\x4e\xda\x34\x97\x41\xaa\xe7\x1f\xe0\xde\xed\xec\x9b\x4e\x61\x69\x08\x99\x00\x41\xd1\x0d\x8e\x54\x50\x86\xac\x0d\xe8\xc3\x6f\x4a\xb9\x39\xc0\x39\x81\x4d\xdc\x73\x16\xc4\xd6\x11\x74\x86\xf9\xe4\x03\x76\xae\xa1\x4c\xd6\x4c\x66\xf3\x26\x7d\xd5\xf7\xe0\x85\x61\x27\xf7\x63\x60\x4b\xaf\x5e\xea\xb2\x94\xcc\x74\xf4\x60\x3e\xe9\xa0\xba\x69\x93\x31\x2c\x2b\xfe\xfb\x03\x2f\x05\x3b\xa3\x91\x18\xf6\xb0\xe0\xa8\xc9\x3a\x2c\xd1\x53\x5a\x84\x6e\x8d\x57\x72\xe6\x93\xf7\xfc\x36\x81\xd7\x30\x1a\x9c\xb6\x44\x25\x7c\x82\xcf\xfd\xe9\xc9\x2e\x16\x6d\x05\xb7\x20\x95\x71\x3e\xa0\xdb\xda\x67\xbd\xe9\x43\xf4\xbf\x1e\x42\x3c\xfe\x05\x00\x00\xff\xff\xc5\x9d\x30\xdd\x7d\x02\x00\x00" func idtablestakingDelegationRegister_many_delegatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -2859,11 +2820,11 @@ func idtablestakingDelegationRegister_many_delegatorsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/register_many_delegators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0x77, 0xf9, 0xad, 0xba, 0xdd, 0x3, 0x54, 0xa7, 0xa1, 0x6b, 0x8e, 0x5d, 0x19, 0x2b, 0x23, 0xea, 0x5, 0x9b, 0xd8, 0x21, 0x1d, 0x7b, 0x64, 0x8e, 0x76, 0x91, 0x58, 0xd4, 0xd2, 0xe2, 0x2f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdc, 0x5c, 0xbd, 0x63, 0x87, 0xcb, 0xb9, 0xa3, 0x2b, 0x17, 0x3c, 0x50, 0x61, 0x63, 0xda, 0x6, 0x77, 0x4b, 0x25, 0xfc, 0x31, 0x5a, 0xda, 0x73, 0x52, 0x75, 0xc2, 0x55, 0xab, 0x3e, 0x1, 0xf8}} return a, nil } -var _idtablestakingNodeNode_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6b\xc2\x40\x10\xc5\xef\xf9\x14\x83\x07\x49\x40\xe2\x5d\xfc\x43\x6b\x29\xf4\xd2\x0a\x4a\xef\x93\xcd\x68\xb6\xae\xbb\x61\x77\x82\x2d\xea\x77\x2f\xd9\x60\xdc\xa0\xb6\xce\x2d\xc9\xcc\x7b\xbf\x79\x13\xb9\x2b\x8d\x65\x78\x55\x66\xff\xf6\xb2\xc2\x4c\xd1\x92\x71\x2b\xf5\x06\xd6\xd6\xec\xa0\x77\xfd\xa1\x17\x05\x33\x2b\xb3\x25\x1d\xb4\xfa\xe7\x5e\x14\x0d\x87\xb0\x2a\xa4\x03\xb6\xa8\x1d\x0a\x96\x46\x03\xe6\xb9\x03\x84\xb2\xca\x94\x14\xa0\x4d\x4e\x20\xb0\xc4\x4c\x2a\xc9\x3f\xc0\x06\x50\x03\x0a\x61\x2a\xcd\xb0\x97\x5c\xd4\x22\xa8\x81\xbe\xa5\xe3\x1a\xe8\xdd\xe4\x9e\x81\x2c\x98\xec\x8b\x04\x47\x51\x28\x7f\x88\x22\x00\x80\xd2\x52\x89\x96\x62\x14\x82\x47\x80\x15\x17\xf1\xb3\xb1\xd6\xec\x3f\x51\x55\x34\x80\xf9\xd9\x52\x92\x4b\xa0\xff\xd4\x18\x26\xe7\xf1\xba\xe4\xba\xe6\xe0\xd4\xb1\xb1\xb8\xa1\x34\xf3\xf3\x63\xaf\x75\x9d\x47\x5a\x73\x7d\x94\x64\x91\x8d\x4d\xa0\x7f\xa7\xa3\x21\x9f\xc6\x75\x56\xa3\x1b\x79\x07\x4d\xcb\xc6\x77\x81\x5c\x24\x30\x99\x80\x96\x0a\x8e\xc7\x16\xaf\x2e\xcf\x27\x82\x55\xd2\x0d\xf1\xb8\x7f\xf8\x53\x77\xe1\x93\x3f\x4d\xef\x2d\x11\x76\x79\xf3\x59\x2a\x0a\x12\xdb\x38\x81\xd9\x0c\xd6\xa8\x1c\xb5\x10\x87\x0e\x8e\x25\xae\xac\x6e\x5f\x9d\x2e\x59\x2a\x62\x7f\xea\x46\x7b\x8e\x25\x4c\x6e\xc0\x9f\x93\x96\xce\x55\xf4\xf0\x1a\x1d\x84\x47\x13\x6d\x87\x92\x0b\xe4\x35\x90\xff\x49\x5d\xd1\xb5\xe8\xec\x31\xe8\xde\x83\xff\xb9\xe9\x25\xd5\x00\xa0\xc9\xea\xf4\x1b\x00\x00\xff\xff\x76\x70\x54\x96\x84\x03\x00\x00" +var _idtablestakingNodeNode_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x73\x92\x08\x45\x7b\x16\x15\xd2\x26\x82\x54\x54\x9a\x85\xd2\xe3\x64\xb3\x26\xdb\xc4\x9d\xb0\x99\xa0\x45\xf3\xdf\x4b\x22\x46\xa5\xa5\x64\x8f\xcb\x9b\xf7\xbe\xf7\xf4\xbe\x20\xcb\xb0\xc8\xe9\xb0\xf4\x05\x46\xb9\x0a\x19\x33\x6d\x12\xd8\x59\xda\xc3\xf3\x71\xe9\x07\x6b\xb1\x14\x9f\xc2\x7b\x59\x05\x9e\xef\xbf\x07\x61\xe8\xdc\x5d\x09\xca\x94\xb9\x8a\x17\xab\xcd\x87\xd8\xbc\x05\xeb\xab\xd0\x19\x8f\x41\xa4\xba\x04\xb6\x68\x4a\x94\xac\xc9\x00\xc6\x71\x09\x08\x45\x15\xe5\x5a\x82\xa1\x58\x81\xc4\x02\x23\x9d\x6b\xfe\x06\x26\x40\x03\x28\x25\x55\x86\xe1\xa0\x39\x6d\x4c\xd0\x80\x3a\xea\x92\x1b\xb2\x35\xc5\x2d\xa5\xb2\x40\xd1\x97\x92\xec\x38\xf7\xf6\x27\xc7\x01\x00\x28\xac\x2a\xd0\x2a\x17\xa5\xe4\x09\x78\x15\xa7\xde\xc5\x73\x78\x55\x34\x4f\xef\x9a\x28\x1e\x45\x64\x2d\x1d\xa6\x83\xdf\x43\x8c\x6e\x71\x73\xb7\xe9\x39\xf9\x63\xad\x3b\x51\xc8\x64\x31\x51\x5b\xe4\x74\x08\xb3\x19\x18\x9d\xc3\xf9\xdc\x05\x36\xaf\x4d\x4c\x14\xbf\x76\xad\xa7\x83\xd3\xbf\xa6\xdb\x76\xab\x7a\xee\xf6\x50\xb5\xc9\x23\x99\x2a\x99\xb9\xc3\x2e\xf7\xf4\x40\x60\x15\x57\xd6\x74\x5f\xf5\x6d\x90\x96\x2d\xd7\x26\xeb\x8d\xf4\x60\xdc\x93\xef\xe9\xe1\x88\xd1\x26\x8a\xfb\xef\xda\x1d\x5f\xea\xd5\x4e\xfd\x13\x00\x00\xff\xff\x7d\x56\xcd\xe6\xc7\x02\x00\x00" func idtablestakingNodeNode_add_capabilityCdcBytes() ([]byte, error) { return bindataRead( @@ -2879,11 +2840,11 @@ func idtablestakingNodeNode_add_capabilityCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/node_add_capability.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xc4, 0x53, 0x4f, 0xc8, 0xa0, 0x67, 0x6e, 0x7a, 0xe2, 0x1e, 0x5c, 0xee, 0xad, 0xeb, 0x9e, 0x2e, 0x9f, 0x6f, 0x6c, 0xed, 0xcd, 0xad, 0xf3, 0xaa, 0x72, 0xd, 0x11, 0x47, 0xd4, 0x2a, 0xd0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa, 0x7e, 0x60, 0x84, 0x8b, 0x25, 0xdc, 0xfc, 0xcf, 0xe8, 0x1e, 0x2d, 0x1e, 0x7f, 0xe3, 0x55, 0x16, 0x50, 0x49, 0xaf, 0xf7, 0x75, 0x19, 0xf6, 0x3d, 0x83, 0xec, 0x7a, 0x90, 0xdc, 0xf2, 0x46}} return a, nil } -var _idtablestakingNodeRegister_many_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\x4f\x6b\xdb\x4e\x10\xbd\xeb\x53\x0c\x3e\x04\x89\x5f\x2c\xff\x0a\xa5\x94\xc5\x69\x08\x29\x86\x90\xd2\x96\x24\x6d\x0e\xc6\x87\xb5\x76\x64\x6d\x23\xed\x98\xd5\x28\x6a\x28\xf9\xee\x65\x57\x8a\xf5\x17\x3a\x07\x81\xde\xbc\x99\xb7\x33\xf3\x74\x71\x24\xcb\xb0\xc9\xa9\xbe\xf9\xfc\x20\xf7\x39\xde\xb3\x7c\xd2\xe6\x00\xa9\xa5\x02\x16\xd3\xc4\x22\xe8\xd5\x3c\xd0\x13\x9a\x1e\xd5\xff\x77\x8c\xca\x1c\xf4\x3e\xc7\x01\xab\x8f\x2d\x82\x80\xad\x34\xa5\x4c\x58\x93\x09\x03\x00\x00\xad\x4a\x01\xdb\x7b\xb6\xda\x1c\x76\xe7\x1e\xb2\x94\xa3\x03\x7f\xdc\x18\xfe\xd8\x62\x06\xb9\x26\xeb\x1e\x74\xa5\x94\xc5\xb2\xc4\x49\x59\x47\xb9\xc5\x97\x49\xb6\x6c\xc6\x99\x4b\xc9\x82\x2a\xc3\x5e\x71\xa3\x7f\x7f\x78\xdf\xc2\x47\xc9\x59\xc3\x25\x2b\x0f\xf8\x5d\x72\xb6\x0b\x22\xf8\x13\x34\x59\x8b\x47\x69\x31\x94\x49\xc2\x02\x64\xc5\x59\xd8\x12\x23\x38\xbb\x4a\x12\xd7\xf2\x44\x76\xf1\x2c\x2d\x68\xb8\x80\xff\x3b\x28\x25\xeb\x55\x40\x9b\x46\xad\xcf\x77\x91\x23\x43\xfa\xb6\xe7\x3b\x4c\xe1\x02\x9c\x5e\x5c\x36\x4a\xf1\x9e\xac\xa5\x7a\xed\xd5\x07\x9b\x8e\x1f\x35\x67\xca\xca\x3a\x82\xb3\xd3\xa1\xe2\x9f\xb2\xca\xf9\x53\xe8\x2e\x23\x60\xd5\x36\x59\x9d\x04\x7c\x3a\x1a\x3c\xc0\xc5\xe5\x25\x1c\xa5\xd1\x49\xb8\xb8\xa6\x2a\x57\x60\x88\xa1\x11\x06\x8b\x29\x5a\x34\x09\x02\x13\x6c\xbe\x7c\x7b\x04\xdf\x63\x11\x4d\xc7\x60\xa7\x50\x5e\x53\x51\x68\x66\x54\xb0\x5e\x0e\x26\x8b\xeb\xf6\xc1\x61\x73\x0d\xf1\x76\x95\xad\xde\xcd\x74\x33\xa4\xbc\x41\xd1\xba\x46\x53\xd7\xc6\x52\xa9\xaf\xa4\xf0\x0e\x13\xb2\x2a\x9c\xcc\xa4\x95\x70\xce\xdb\xea\xf6\xd6\xfd\x70\xf6\x13\x8d\x09\x67\xf3\x13\x2b\x8a\x39\x77\xfe\xa3\xf4\x16\x5f\xc4\xc8\xb1\xb3\x15\x9d\x6d\x45\xdf\xc2\xb3\xdc\xd1\x8a\x05\xac\x97\x23\x68\x50\x32\x5a\xeb\x6a\x05\xce\xc0\x08\x9c\xa1\xdf\x2f\xd0\xfe\x17\x26\x3c\x20\x0d\xdc\x57\xca\x67\x0c\xd7\xcb\xee\x16\xe7\xc0\x24\xbc\x93\x47\xbd\x9d\xef\x35\xfc\x07\xef\x4e\xe8\x6b\xd0\x7c\x83\xd7\xbf\x01\x00\x00\xff\xff\x0d\x4e\x7d\xd1\x93\x04\x00\x00" +var _idtablestakingNodeRegister_many_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\x4d\x6b\xdb\x40\x10\xbd\xeb\x57\x0c\x39\x14\x99\xc6\x76\x0a\xa5\x94\xc5\x69\x50\x63\x1b\x8c\x83\x53\x6c\xb5\xa5\x18\x1f\xd6\xda\x91\xb5\x8d\xb4\x63\x56\xe3\x28\xa1\xe4\xbf\x97\x95\xfc\x29\x09\x32\x07\x1d\xde\xbc\x79\x33\x7a\xfb\x74\xb6\x25\xcb\x30\x4e\xa9\x98\x0c\x43\xb9\x4e\x71\xc1\xf2\x49\x9b\x0d\xc4\x96\x32\xb8\x79\x99\x0c\x47\xb3\x70\x12\xfe\x09\x83\xef\x0f\xa3\x60\x38\x9c\x8f\x16\x0b\xef\x6c\x2a\xa4\x27\x34\x07\xf2\xf8\xe1\xf1\x77\xf8\x38\x1d\xcd\x0e\x44\x8f\xad\x34\xb9\x8c\x58\x93\xf1\x3d\x00\x00\xad\x72\x01\xcb\x05\x5b\x6d\x36\xab\xeb\x12\xb2\x94\xa2\x03\x7f\x4e\x0c\x7f\xdd\x63\x06\xb9\x20\xeb\x0e\x09\x94\xb2\x98\xe7\xd8\x18\x3b\x51\xa6\xf8\xda\xe8\xe6\xd5\x6f\xb4\xb5\x64\x46\x3b\xc3\xe5\xc6\xb1\x7e\xf9\xf2\x79\x0f\x6f\x25\x27\x15\x97\xac\xdc\xe0\x0f\xc9\xc9\xca\xeb\xc0\x3f\xaf\xea\x5a\xdc\x4a\x8b\xbe\x8c\x22\x16\x10\xec\x38\x09\xa2\xc8\xe9\x1c\x19\xae\x9e\xa5\x05\x0d\xb7\x70\x73\x82\x62\xb2\xa5\x34\x68\x53\xad\x38\xe7\xbb\x4a\x91\x21\x3e\x38\x39\xc7\x18\x6e\xc1\x2d\xe9\xad\xc9\x5a\x2a\x06\x1f\x8e\x2e\xf7\x7e\xc9\x5d\xca\xdf\x7c\x67\xb6\x80\x7e\x5e\xdd\xd9\x3f\xce\x96\xed\xce\x85\xb6\xab\xbb\x3b\xd8\x4a\xa3\x23\xff\xea\x9e\x76\xa9\x02\x43\x0c\x95\x36\x58\x8c\xd1\xa2\x89\x10\x98\xc0\x3d\x1e\x94\x1a\x57\x9d\xe6\x85\xec\x36\xe4\xf7\x94\x65\x9a\x19\x15\x0c\xba\x17\x47\xf7\x0a\xcd\x89\xb2\xb2\xf0\x2b\x77\xc5\xc1\xe5\xa5\x5e\xb5\xa8\x19\x52\x65\xd0\xd0\x3a\xa1\x66\xfa\x7a\x52\xa9\x19\x29\x9c\x63\x44\x56\xf9\x8d\x7f\xd2\x4a\xb8\x24\x2d\xf5\xfe\xed\xce\xcb\xc5\x49\x54\xa1\x6a\xed\x37\xa2\x25\xda\xd2\xf6\xce\xe8\x14\x5f\x45\x2d\x81\xad\x13\xa7\x18\x8a\xf3\x48\xb6\x72\x6b\x16\x0b\x18\x74\x6b\xd0\xc5\x48\xcd\xd6\x7e\x1f\x5c\x72\x11\x38\xc1\xd2\x5f\xa0\xf5\x5f\x8c\xf8\x82\x54\x06\x2b\x97\xcf\xe8\x0f\xba\xa7\x37\xb8\x06\x26\x51\x86\xb3\xa6\xe9\xa2\xac\xe1\x23\x7c\x3a\xa2\x6f\x5e\xf5\xf5\xde\xfe\x07\x00\x00\xff\xff\x0b\x85\x8a\x83\x3a\x04\x00\x00" func idtablestakingNodeRegister_many_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2899,11 +2860,11 @@ func idtablestakingNodeRegister_many_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/register_many_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x24, 0xe6, 0xd8, 0x4d, 0x7f, 0xa7, 0x90, 0xd1, 0xbd, 0x2e, 0x9d, 0x30, 0xb6, 0xc9, 0x30, 0x9a, 0xbd, 0x9b, 0x1, 0xae, 0xca, 0x83, 0xf9, 0xb4, 0x8b, 0xd9, 0x22, 0xa, 0x7c, 0x65, 0xe9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xce, 0x4a, 0xf8, 0x11, 0x23, 0xc3, 0xa6, 0x1c, 0x71, 0xfd, 0x59, 0xc, 0xa6, 0x8c, 0x13, 0x6a, 0x2b, 0x1, 0x7a, 0x59, 0xed, 0x14, 0x8d, 0xef, 0x41, 0x24, 0x32, 0xd1, 0xd1, 0x65, 0x26}} return a, nil } -var _idtablestakingNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\x5f\x6b\xdb\x3e\x14\x7d\xf7\xa7\xb8\xe4\xa1\xd8\x90\x3a\x2f\x3f\x7e\x8c\x90\xb6\x94\x8c\x42\xd9\x58\x4b\xff\xac\xcf\xb2\x74\x1d\x6b\x55\x74\x8d\x74\x3d\xaf\x94\x7e\xf7\x21\x3b\x89\x2d\x9c\x75\x6b\x1e\x1c\xeb\xfe\x3b\x47\xe7\x1e\xeb\x6d\x4d\x8e\xe1\xca\x50\x7b\xfd\xf9\x41\x14\x06\xef\x59\x3c\x6b\xbb\x81\xd2\xd1\x16\x66\xd3\xc4\x2c\x19\xf5\x3c\xd0\x33\xda\x51\x69\x77\x1e\x2a\x1a\xbb\xd1\x85\xc1\xa8\x6a\x1c\x9b\x25\xc9\x62\x01\x0f\x95\xf6\xc0\x4e\x58\x2f\x24\x6b\xb2\x20\x1d\x0a\x46\x0f\x02\x2c\xb6\x60\x49\x21\x78\x76\x8d\x64\xa0\xe2\x07\x4a\x0e\x4d\xc2\x2a\x68\x6a\xd5\xd5\x71\x85\x50\x3b\xaa\xc9\xa3\x82\x6b\x85\x96\x35\xbf\x40\x47\x3a\x49\x46\x83\xd3\x04\x00\x40\xab\x25\xdc\xb3\xd3\x76\x33\xef\xce\x8e\x0c\x2e\xe1\xf1\xda\xf2\xa7\x3e\x60\x91\x5b\x72\xe1\xae\x97\x4a\x39\xf4\x3e\xae\x1f\xd2\x5f\xf0\x25\x4e\xf9\x5e\xa2\x49\x5c\x6c\xa9\xb1\xbc\x84\xc7\x2b\xfd\xeb\xff\xff\x92\x0c\x5e\x93\x2e\x6e\x90\xa1\xdc\xcb\x76\x87\xe5\x12\x44\xc3\x55\x1a\x69\x94\x3f\x69\xae\x94\x13\x6d\x06\x27\x07\x89\xf3\xef\xa2\x31\xdc\x0f\xa9\x1d\xd6\xc2\x61\x2a\xa4\xe4\xdd\x80\x7b\x26\x27\x36\x38\x87\xb5\xa8\x45\xa1\x8d\x66\x8d\x3e\x83\x93\x4b\x29\x03\x91\x03\x7e\xc7\x19\x4d\x99\x8f\x49\xc0\x19\x84\x51\xb9\xef\x87\xe4\x05\x39\x47\xed\xea\x43\xcc\xce\xd3\xb0\xed\x25\x2c\x76\x43\x16\x07\x80\x2e\x9d\x1d\xd0\xc3\xef\xe2\x02\x6a\x61\xb5\x4c\x67\x6b\x6a\x8c\x02\x4b\x0c\x3d\x28\x38\x2c\xd1\xa1\x95\x08\x4c\x70\xf5\xf5\xe6\x09\xba\xfe\x59\x36\xf0\x0f\x1a\x06\x8b\x04\x7b\xa2\x83\xd5\xe9\x11\x33\xe7\x42\xa9\x6f\xa4\xf0\x0e\x25\x39\x95\x46\xe8\xc1\x0e\x5a\xcd\xa3\x58\x6f\x89\xf0\x8c\xe3\x47\x9c\x31\x09\xfd\xa9\xa3\x33\x45\x74\x8c\x2b\xc7\xde\x19\xde\xe3\x1a\x0e\x0a\xfa\x35\x6d\xb7\x9a\x19\xd5\x12\x56\xa7\x93\xf5\xe5\xed\x6e\x2b\xe9\xde\x75\xfd\xff\xa0\xf9\x48\x3c\x5d\xbe\xb3\xeb\xa9\x8c\x41\xc3\x9b\x1a\x9d\x60\x72\xbb\xa5\x1f\xa9\xe8\x37\xb1\xb7\xc0\xbb\x45\x3b\xa3\xde\x0a\xae\x32\x38\x3b\x03\xab\xcd\xd8\x9b\xdd\xb7\x33\xe6\xe7\xc5\x4f\x4c\x57\xa7\xc3\xbe\xe7\xc0\xf4\x01\x8c\x78\x74\x6c\x9d\xb5\xa8\xf7\xd6\x97\xa3\xcf\xe6\x80\xad\xbd\x6f\x70\x75\xf2\xfa\x2e\xd8\x6d\x53\x18\x2d\xdf\xce\x63\x8f\x85\xdf\xbf\x72\x8c\x1a\xb3\x23\x5a\x44\xe4\xea\x80\xe7\xab\x29\x5c\x74\xaf\xf9\x24\x2d\xf8\x2f\xaa\xf5\x17\x39\x42\x68\xff\xf6\x06\x68\x3c\xc2\x6b\x94\x56\xe8\xd9\xd1\xcb\x08\x7d\xa8\x4f\xfa\xe7\xdb\xef\x00\x00\x00\xff\xff\xd7\xf7\xa2\x42\x73\x06\x00\x00" +var _idtablestakingNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x52\x41\x6f\xda\x4c\x10\xbd\xfb\x57\x8c\x72\x88\x8c\x44\xe0\x3b\x7c\xaa\x2a\x8b\x24\xa2\x01\x24\x94\x88\x44\xe0\xb4\xea\x71\xd9\x1d\xc3\x16\xb3\x63\xed\x8e\xeb\x20\xc4\x7f\xaf\xd6\x16\xd8\x0e\x34\x4a\x7d\x30\x78\xe6\xbd\x37\xbb\xef\x8d\xde\x66\x64\x19\x26\x29\x15\xd3\x51\x2c\x96\x29\x2e\x58\x6c\xb4\x59\x41\x62\x69\x0b\xff\xbd\x4d\x47\xe3\x59\x3c\x8d\x7f\xc6\xc3\x6f\x4f\xe3\xe1\x68\x34\x1f\x2f\x16\x41\x83\x15\xd3\x06\xcd\x11\x3c\x79\x7a\xfe\x11\x3f\x3f\x8e\x67\x47\x60\xd0\xef\x43\xbc\xd6\x0e\xd8\x0a\xe3\x84\x64\x4d\x06\xa4\x45\xc1\xe8\x40\x80\xc1\x02\x0c\x29\x04\xc7\x36\x97\x0c\xb4\xfc\x85\x92\x3d\x49\x18\x05\x79\xa6\x4a\x1c\xaf\x11\x32\x4b\x19\x39\x54\x30\x55\x68\x58\xf3\x0e\xca\xc3\x06\x41\x43\x38\x0c\x00\x00\xb4\x8a\x60\xc1\x56\x9b\x55\xb7\xfc\xb6\x94\x62\x04\xaf\x53\xc3\x5f\xab\x82\x41\x2e\xc8\xfa\x3b\x0e\x95\xb2\xe8\x5c\x1b\x5f\xb7\x1f\x71\xd7\x6e\xb9\xca\x9a\xb3\xba\xd8\x52\x6e\x38\x82\xd7\x89\x7e\xfb\xf2\x7f\xd0\x81\x7d\x50\xd6\x53\x64\x48\x8e\x1e\xcd\x31\x89\xe0\xfa\x64\x59\xef\xbb\xc8\x53\xae\x70\x99\xc5\x4c\x58\x0c\x85\x94\x1c\xc1\x30\xe7\xf5\x50\x4a\x2f\x79\x52\x2a\xa7\x63\x9a\xf4\x9a\x72\x70\x0b\x9e\xd1\x5b\x92\xb5\x54\x0c\xde\x6b\xdf\x85\x3e\x95\x08\xfa\x8e\xc9\x8a\x15\xf6\x4f\xdc\xb2\xdd\x39\x09\xfb\xe7\xfe\x1e\x32\x61\xb4\x0c\xaf\x1e\x28\x4f\x15\x18\x62\xa8\x74\xc1\x62\x82\x16\x8d\x44\x60\x02\x9f\x30\x94\xfc\xab\x4e\x7d\x34\x7f\x51\x9f\xa3\xdf\x1d\xb4\x30\xb8\xb9\xb0\x50\x3d\xa1\xd4\x8c\x14\xce\x51\x92\x55\x61\x6b\xba\xcf\x4c\xab\x6e\xab\x56\xe5\xe6\xdf\xed\xfa\x85\xf8\xce\x4a\x7f\x63\x94\xc9\xb5\x3e\xdb\xc8\x66\xc0\xf5\xff\x36\x86\xbd\x83\xee\x81\xb6\x5b\xcd\x8c\x2a\x82\xc1\xcd\x59\x32\xbd\x42\xf3\x5a\x59\x51\x84\xc7\xd5\xa8\x7e\x6b\xcf\x1b\xe6\xe9\xe4\x3c\xc6\x77\xd6\xcd\x4e\xde\x1e\x43\xfd\x10\xb4\xa8\x02\x7f\x11\xbc\xee\xc0\xed\x2d\x18\x9d\x36\x17\xa9\x5c\x59\x3f\xd1\x89\xdf\x18\x0e\x6e\xea\xe4\xba\xc0\xf4\x0f\xda\x17\x24\x53\x6d\x36\x83\xeb\xfd\x87\x12\x2f\xf9\x32\xd5\xf2\x70\xd7\xde\x01\xff\x7c\x82\xe6\x07\x77\xcf\x88\x2c\xec\x0a\xf9\xf3\x47\x6f\x09\xd4\xa9\x1c\x00\x53\x87\xb0\x6f\xb5\x15\x3a\xb6\xb4\x6b\x2c\x78\x8d\x0f\xaa\xf7\xe1\x4f\x00\x00\x00\xff\xff\xdb\x54\x5a\x43\x47\x05\x00\x00" func idtablestakingNodeRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -2919,11 +2880,11 @@ func idtablestakingNodeRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0xcb, 0x2d, 0xbc, 0x35, 0x44, 0x32, 0x3e, 0x73, 0x50, 0x5f, 0xa1, 0x63, 0x18, 0x71, 0x7f, 0x5f, 0x26, 0xb5, 0x59, 0x98, 0x82, 0x74, 0xab, 0xa6, 0x15, 0x3c, 0x8f, 0xfa, 0x4d, 0x85, 0x69}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x76, 0x8, 0xa4, 0x1a, 0xd1, 0xae, 0xff, 0xc6, 0x3f, 0xf9, 0x3f, 0xb2, 0x21, 0xbe, 0x35, 0xc8, 0x47, 0x64, 0xa8, 0x8a, 0xa, 0x3c, 0x56, 0x1, 0x44, 0xa5, 0xa3, 0xce, 0x1c, 0xcd, 0x59, 0x84}} return a, nil } -var _idtablestakingNodeRequest_unstakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xbf\x4e\xc3\x40\x0c\xc6\xf7\x3c\x85\x95\xa1\x4a\x96\x64\x41\x0c\x15\x50\xf1\x47\x95\x90\x10\x20\x4a\xd9\xdd\x8b\xd3\x1e\xbd\x9c\x83\xe3\xd0\x4a\xa8\xef\x8e\xae\x49\xab\x56\x05\x89\x01\x2f\x37\x9c\xfd\xf9\xfb\xd9\xb6\x55\xcd\xa2\x30\x76\xbc\xba\xbf\x7b\xc5\x99\xa3\x89\xe2\xd2\xfa\x39\x94\xc2\x15\xc4\xa7\x1f\x71\x14\x45\x2a\xe8\x1b\x34\x6a\xd9\x27\x58\x71\xeb\x75\x08\xd3\xb1\x5d\x9f\x9f\xa5\xf0\x15\x45\x00\x00\x79\x0e\x0f\x6c\xd0\xc1\x27\x8a\x0d\xe5\x50\xb2\x00\x82\x50\x49\x42\xde\x10\x28\x83\x2e\x08\x3c\x17\x04\x3c\x7b\x27\xa3\xdb\x42\x47\x0a\x8d\xe2\x92\xe4\x85\xca\x21\x60\xab\x8b\xe4\xd4\x45\xf6\xc8\x05\x3d\xd5\x24\xa8\x2c\x29\x0c\x7e\xc9\x98\x6c\x85\x3a\x47\xb5\x50\x8d\x42\x09\x1a\xa3\xbd\xee\x0d\x8b\xf0\xea\x0d\x5d\x4b\x29\x0c\xae\x8d\x09\x28\x01\x01\xfa\xc8\x73\x98\x6d\x73\xfe\xe2\x3c\x44\x43\xae\xcc\xf6\xf6\xe1\x12\x42\xb7\xac\x51\x16\x9c\x53\xd6\x69\x5d\xfc\x07\xd3\x55\x12\x16\x34\xfc\x61\x73\x07\x49\x93\xae\xef\x33\xea\x22\xdd\x5b\x0c\x31\x1a\x41\x8d\xde\x9a\x24\xbe\xe5\xd6\x15\xe0\x59\x77\xa0\x47\x98\x4d\x7f\x0c\x58\x54\xd6\xc7\x9d\xc6\xa6\x1b\x27\xad\xc9\xb4\x4a\x07\xc3\x3a\x66\xcf\x84\x3e\x5a\x6a\x74\xea\x7b\x91\xfd\xa5\x74\xef\x4e\x6c\x13\x7d\x07\x00\x00\xff\xff\x7d\xcc\x86\xf9\x84\x02\x00\x00" +var _idtablestakingNodeRequest_unstakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x2f\x49\x0f\xa5\x87\xd0\x56\xd2\x46\x41\x10\x29\x26\x1e\x7a\x1c\xd7\x89\xa6\xc6\x9d\x74\x32\xa9\x81\xe2\x7f\x2f\x6b\x6a\x28\x58\xa4\xef\x32\x7b\xd8\x7d\xf3\xed\x7b\xc5\xbe\x62\x51\x98\x94\x7c\x98\x26\x19\xae\x4a\x4a\x15\x77\x85\xdd\x40\x2e\xbc\x87\xdb\x76\x9a\x8c\xe7\xd9\x34\x7b\xcb\xe2\xe7\xd9\x38\x4e\x92\xc5\x38\x4d\x3d\xcf\x53\x41\x5b\xa3\xd1\x82\xad\x8f\x7b\x6e\xac\x46\xb0\x9c\x14\xed\xfd\xdd\x10\xbe\x3c\x0f\x00\x20\x0c\x61\xc6\x06\x4b\xf8\x44\x29\x9c\x33\xe4\x2c\x80\x20\x94\x93\x90\x35\x04\xca\xa0\x5b\x02\xcb\x6b\x02\x5e\xbd\x93\xd1\xd3\xc3\x92\x14\x6a\xc5\x1d\xc9\x82\xf2\x08\x6e\x2e\xe1\x82\x39\xaf\x4f\x67\x92\x6e\x57\x25\x54\xa1\x90\x8f\xc6\x68\x04\x71\xa3\xdb\xd8\x18\x47\xe5\x68\xe0\x47\x61\x08\x2b\x16\xe1\xc3\x7f\x20\x9c\x6a\x2a\xf3\xa0\x27\x81\x47\x70\xf6\x41\xe7\xf1\x70\x1d\xeb\xc9\x77\xf9\x45\x7f\x04\xfb\xeb\x52\xaa\x2c\xb8\xa1\x57\xd4\xed\xb0\x5f\xea\x34\x1a\x41\x85\xb6\x30\xfe\xe0\x85\x9b\x72\x0d\x96\xf5\x8c\x7e\x0d\x7c\x30\xec\xd2\x38\x76\x83\x5a\x32\x8d\xd2\xb9\x8f\xcb\x1f\x05\x42\x1f\x0d\xd5\xba\xb4\x75\xc7\xd6\x57\xd9\xcd\xde\xee\xf8\x1d\x00\x00\xff\xff\xc8\xee\x14\x2d\x27\x02\x00\x00" func idtablestakingNodeRequest_unstakeCdcBytes() ([]byte, error) { return bindataRead( @@ -2939,11 +2900,11 @@ func idtablestakingNodeRequest_unstakeCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/request_unstake.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8, 0x6c, 0x5c, 0x95, 0xf8, 0x1, 0x61, 0xb4, 0x8e, 0xcb, 0x97, 0xb8, 0x11, 0xcb, 0x4e, 0xd9, 0xd7, 0x1c, 0xc2, 0xbe, 0x23, 0xfa, 0x38, 0x54, 0xcf, 0xc5, 0x78, 0xac, 0x14, 0x7c, 0x28, 0xe6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x79, 0xf1, 0x50, 0x3e, 0x13, 0xea, 0xe6, 0xa4, 0xfb, 0x7d, 0x7c, 0x79, 0x1, 0x20, 0xab, 0xc3, 0xca, 0xd6, 0x2, 0x24, 0x4, 0x1b, 0xe0, 0x6, 0x3c, 0xb2, 0x81, 0x63, 0x50, 0xb4, 0x75}} return a, nil } -var _idtablestakingNodeStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\xcf\x6e\xdb\x30\x0c\xc6\xef\x7a\x0a\xc2\x87\xc2\x3e\xcc\xbe\x0c\x3b\x04\xdd\x8a\xfd\x41\x80\x01\x45\x3b\x2c\x5d\x7b\x66\x64\x3a\xd1\xa2\x88\x06\x4d\x2f\x05\x86\xbe\xfb\x60\xcb\xf1\x14\x64\x1b\x8a\xa1\xba\xd8\x96\x3e\x7e\xe4\x8f\x94\xdd\xbe\x65\x51\x58\x7a\x3e\x7c\xfe\x74\x87\x6b\x4f\x2b\xc5\x9d\x0b\x1b\x68\x84\xf7\x90\x9d\x1f\x64\x26\x89\xb9\xe3\x1d\x85\x44\x3a\x7e\xff\x56\xf4\x61\xe3\xd6\x9e\x4e\x54\xe9\x5e\x66\x8c\x0a\x86\x0e\xad\x3a\x0e\x39\xee\xb9\x0f\xba\x80\x6f\x4b\xf7\xf8\xe6\x75\x01\x3f\x8d\x01\x00\xa8\x2a\xb8\x66\x8b\x1e\x7e\xa0\xb8\xa1\x12\x68\x58\x00\x41\xa8\x21\xa1\x60\x09\x94\x41\xb7\x04\x81\x6b\x02\x5e\x7f\x27\xab\x63\xa0\x27\x85\x4e\x71\x47\xf2\x95\x9a\x05\x60\xaf\xdb\xfc\x1c\xa8\xbc\xe1\x9a\x6e\x5b\x12\x54\x96\x02\x2e\xfe\xa2\x58\x8d\x46\x66\x36\x6e\x8e\xb8\x89\x77\xca\x56\x3e\x38\xdd\xd6\x82\x87\xc9\x32\x6e\xde\x63\xef\x35\x9a\xb4\x42\x2d\x0a\xe5\x68\xad\x4e\x06\x1f\x58\x84\x0f\xf7\xe8\x7b\x2a\xe0\xe2\xbd\xb5\x43\x3f\x86\x3e\xc0\xb4\xaa\x0a\xd6\xa3\xe6\x39\xf8\xc3\xea\xc8\x37\xe5\xdc\x03\x78\x0b\x43\xb6\xb2\x53\x16\xdc\x50\x19\xbd\x2e\x5f\xa2\x31\xef\xf2\x61\xbe\x8b\x3f\xdc\xa4\x44\xb4\x8a\x79\xbf\xa0\x6e\x8b\xb9\xc4\x61\x5d\x5d\x41\x8b\xc1\xd9\x3c\xfb\xc8\xbd\xaf\x21\xb0\x1e\x41\x4f\x30\xbb\xe9\x72\x62\xbd\x77\x21\x2b\xcc\x29\x67\x3a\x92\x7f\xa2\x3e\x73\x4e\x47\xa6\x6a\x32\xa9\xe6\x04\xe3\xf1\xff\x21\x2c\xaf\x6f\x1f\x60\x8c\xcf\xa2\xc1\x53\xa4\xa0\x47\xb2\xbd\x52\x32\xec\xd3\xd9\xc5\xb7\x1b\x8a\x05\x74\xf9\xe5\xab\x33\xe6\xf2\x30\xa1\xcc\x7f\x52\x7c\x16\xc7\x44\x4f\xe6\x57\x00\x00\x00\xff\xff\x2e\x56\x90\x70\xf0\x03\x00\x00" +var _idtablestakingNodeStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x8f\x94\x40\x10\x85\xef\xfc\x8a\xca\x1e\x0c\x1c\x04\x0f\xc6\x03\x59\xdd\xa0\x30\xc9\xc4\x09\x6b\x16\xd4\x78\xac\x69\x8a\x05\x87\xe9\x22\x4d\x21\x93\x98\xf9\xef\xa6\x41\x10\x33\x93\x89\xb1\x2e\xdd\x84\xf7\xba\xbf\x7a\x5d\xf5\xb1\x65\x23\xb0\x69\x78\xd8\xc6\x39\xee\x1b\xca\x04\x0f\xb5\x7e\x86\xd2\xf0\x11\x5e\x9d\xb6\x71\x92\xe6\xdb\xfc\x5b\x1e\xbd\xdf\x25\x51\x1c\x3f\x25\x59\xe6\xac\x5c\x39\x1f\x48\xcf\xe2\xcd\xee\xf1\x6b\xfe\xf8\x31\x49\x67\xa1\xe3\x88\x41\xdd\xa1\x92\x9a\xb5\x8b\x47\xee\xb5\x84\xf0\x79\x53\x9f\xde\xbc\xf6\xe0\xa7\xe3\x00\x00\x04\x01\xec\x58\x61\x03\x3f\xd0\xd4\x16\x01\x4a\x36\x80\x60\xa8\x24\x43\x5a\x11\x08\x83\x54\x04\x9a\x0b\x02\xde\x7f\x27\x25\xa3\xb1\x21\x81\x4e\xf0\x40\xe6\x89\xca\x10\x5e\x5c\x76\xe1\xa7\x5c\x8c\x7b\x32\xce\x62\x29\x67\xec\x3f\xae\xf1\xd3\xff\x82\x7d\x23\x93\xae\x35\xd4\xa2\x21\x17\x95\x92\x10\xa2\x5e\xaa\x48\x29\x4b\x6f\xa9\xe1\x77\x05\x01\xec\xd9\x18\x1e\xfe\x05\xd6\x56\x47\x4d\xe9\x2f\xc4\xf0\x16\xec\xf1\xfe\x74\xc6\xfd\x6d\xfc\x77\xae\xcd\x38\xbc\xf2\x52\x2b\x51\x26\x6c\xf0\x99\x3e\xa1\x54\xde\x72\xa9\xad\x87\x07\x68\x51\xd7\xca\xbd\xfb\xc0\x7d\x53\x80\x66\x99\xd1\x6f\x81\xdf\x79\xce\xdf\xec\xeb\xe8\xae\xe1\xaf\x72\x9c\x81\x83\x6e\x82\x0a\x16\xef\xf8\xfb\xff\xf8\xec\x80\xc1\xe8\x9f\xd1\xce\xd3\x42\x27\x52\xbd\xd0\x3c\x52\x97\x61\x4f\xbb\x94\x26\x84\xce\xbd\x7f\x79\xd1\x90\x3f\xd4\x52\x15\x06\x87\x65\x50\xa7\xd5\x5b\xae\x3a\xff\x0a\x00\x00\xff\xff\x86\xf3\x84\x50\x2f\x03\x00\x00" func idtablestakingNodeStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2959,11 +2920,11 @@ func idtablestakingNodeStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0xd, 0x0, 0x9f, 0x56, 0x91, 0x6d, 0x32, 0x3d, 0xa3, 0x10, 0xcb, 0x41, 0x84, 0x26, 0x62, 0x39, 0xa9, 0xe, 0x6f, 0x2, 0xd0, 0xa3, 0xa5, 0xf5, 0x1a, 0x67, 0xe7, 0x57, 0x0, 0xb3, 0xca}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4, 0xa, 0x1e, 0xd2, 0xf6, 0xd, 0x9, 0x22, 0xa5, 0x89, 0x6e, 0xb0, 0x95, 0x31, 0xff, 0x54, 0xab, 0x41, 0xeb, 0xd7, 0x74, 0x1b, 0x6e, 0x60, 0xf7, 0x1c, 0x81, 0x20, 0xf5, 0x4b, 0xdb, 0x57}} return a, nil } -var _idtablestakingNodeStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x4f\x6b\xea\x50\x10\xc5\xf7\xf9\x14\x87\x2c\x24\xd9\x24\x9b\xc7\x5b\xc8\x7b\x95\xfe\x41\x28\x94\xb6\xa8\xed\x7e\xbc\x99\x68\x6a\x72\x27\x4c\x26\x55\x28\x7e\xf7\x12\xa3\xa2\xd8\x42\x17\x9d\x4d\x02\x77\xe6\xcc\xf9\xcd\x4c\x51\xd5\xa2\x86\x71\x29\xeb\xfb\xbb\x19\xcd\x4b\x9e\x1a\xad\x0a\xbf\x40\xae\x52\x21\xbc\x7c\x08\x83\x20\x30\x25\xdf\x90\xb3\x42\x7c\x44\x95\xb4\xde\x86\x78\x19\x17\x9b\xbf\x7f\x62\x7c\x04\x01\x00\xa4\x29\x1e\xc4\x51\x89\x77\xd2\xa2\x2b\x47\x2e\x0a\x82\x72\xce\xca\xde\x31\x4c\x60\x4b\x86\x97\x8c\x21\xf3\x37\x76\xb6\x2b\x2c\xd9\xd0\x18\xad\x58\x27\x9c\x0f\x41\xad\x2d\xa3\x4b\x17\xc9\xa3\x64\xfc\x54\xb3\x92\x89\xc6\x18\x7c\x93\x31\xdd\x09\xf5\x8e\x6a\xe5\x9a\x94\x23\x72\xce\xf6\xba\x37\xa2\x2a\xeb\x57\x2a\x5b\x8e\x31\xb8\x76\xae\x43\xe9\x10\xb0\x8f\x34\xc5\x7c\x97\xf3\x13\xe7\x5d\x34\x5c\xe6\xc9\xd1\x3e\xfe\xa3\xeb\x96\x34\x26\x4a\x0b\x4e\x7a\xad\x7f\xbf\xc1\x74\x15\x75\x0b\x1a\x7e\xb1\xb9\x93\xa4\x69\xdf\xf7\x99\x6c\x19\x1f\x2d\x76\x31\x1a\xa1\x26\x5f\xb8\x28\xbc\x95\xb6\xcc\xe0\xc5\x0e\xa0\x67\x98\xcd\xfe\x18\x28\xab\x0a\x1f\xf6\x1a\xdb\x7e\x9c\xbc\x61\xd7\x1a\x9f\x0c\xeb\x9c\xbd\xff\x9b\xf0\x9a\x34\xe3\x6c\x26\x2b\xf6\xcd\xf1\x58\xfa\xef\x41\x6f\x1b\x7c\x06\x00\x00\xff\xff\x84\x76\x84\xb1\x87\x02\x00\x00" +var _idtablestakingNodeStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x2f\xa6\x87\xd2\x43\x68\x2b\x69\xa3\x20\x88\x14\x93\x1e\x7a\x1c\x37\x13\x4d\x8d\x3b\x61\x32\xa9\x42\xf1\xbf\x97\x75\x6b\x28\x58\xa4\xef\x32\x73\xd8\x7d\xf3\xcd\x9b\x6a\xd7\xb0\x28\x4c\x6b\xde\xcf\xd2\x1c\x57\x35\x65\x8a\xdb\xca\xae\xa1\x14\xde\xc1\xed\x61\x96\x4e\x16\xf9\x2c\x7f\xcf\x93\xe7\xf9\x24\x49\xd3\xe5\x24\xcb\x82\x20\x50\x41\xdb\xa2\xd1\x8a\x6d\x88\x3b\xee\xac\xc6\xf0\x36\xad\x0e\xf7\x77\x43\xf8\x0a\x02\x00\x80\x28\x82\x39\x1b\xac\xe1\x13\xa5\x72\xce\x50\xb2\x00\x82\x50\x49\x42\xd6\x10\x28\x83\x6e\x08\x2c\x17\x04\xbc\xfa\x20\xa3\xa7\x8f\x35\x29\xb4\x8a\x5b\x92\x25\x95\x31\xdc\x5c\xc2\x8d\x16\x5c\x9c\x7a\x12\x3f\xab\x11\x6a\x50\x28\x44\x63\x34\x86\xa4\xd3\x4d\x62\x8c\xa3\x72\x34\xf0\xa3\x28\x82\x15\x8b\xf0\xfe\x3f\x10\x4e\x2d\xd5\xe5\xa8\x27\x81\x47\x70\xf6\x23\xef\xf1\x70\x1d\xeb\x29\x74\xf9\xc5\x7f\x04\xfb\xeb\x51\xa6\x2c\xb8\xa6\x57\xd4\xcd\xb0\x1f\xea\x34\x1e\x43\x83\xb6\x32\xe1\xe0\x85\xbb\xba\x00\xcb\x7a\x46\xbf\x06\x3e\x18\xfa\x34\x8e\xbe\xd0\x81\x4c\xa7\x74\xbe\xc7\xe5\x46\xbe\x5b\xd2\x1e\xa5\xa0\x22\xe7\x2d\xd9\xb6\xbf\xa6\xaf\xbd\xe3\xf1\x3b\x00\x00\xff\xff\xde\xe4\xde\xe8\x2a\x02\x00\x00" func idtablestakingNodeStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2979,11 +2940,11 @@ func idtablestakingNodeStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0x6d, 0xdc, 0x1e, 0x2c, 0x5b, 0xbb, 0xc7, 0xea, 0xf2, 0x93, 0xd9, 0x2f, 0x30, 0x7b, 0xb0, 0xc7, 0x6f, 0xd5, 0xba, 0x2a, 0x93, 0x4b, 0xa6, 0x82, 0x5d, 0x62, 0xe5, 0xe9, 0xc, 0x13, 0xed}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x4c, 0x75, 0x1a, 0x17, 0x3f, 0xb6, 0xdd, 0xcf, 0xf0, 0x65, 0x80, 0xf, 0x7d, 0x6d, 0x4b, 0x9a, 0x77, 0x8f, 0xa4, 0x2f, 0xf6, 0x70, 0x6b, 0x67, 0x6f, 0x86, 0x72, 0x23, 0x15, 0xe9, 0xa8}} return a, nil } -var _idtablestakingNodeStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xcd\x8a\xdb\x50\x0c\x85\xf7\x7e\x8a\x83\x17\xc1\xde\xd8\x9b\xd2\x45\x68\x1b\xfa\x43\xa0\x50\x5a\x68\x92\xd9\x2b\xd7\x72\xe2\xc9\xf5\x95\x91\xe5\x49\x60\xc8\xbb\x0f\xfe\x49\x98\x10\x06\x66\x31\xda\xc8\x20\xe9\xf8\x7c\xd2\xad\xea\x46\xd4\xb0\xf4\x72\xfc\xfd\x6b\x4d\x5b\xcf\x2b\xa3\x43\x15\x76\x28\x55\x6a\xc4\xf7\x85\x38\x8a\x22\x53\x0a\x2d\x39\xab\x24\x24\x54\x4b\x17\x6c\x8e\xcd\xb2\x3a\x7d\xfe\x94\xe2\x39\x8a\x00\x20\xcf\xf1\x47\x1c\x79\x3c\x91\x56\xfd\x38\x4a\x51\x10\x94\x4b\x56\x0e\x8e\x61\x02\xdb\x33\x82\x14\x0c\xd9\x3e\xb2\xb3\x61\xd0\xb3\xa1\x35\x3a\xb0\xfe\xe7\x72\x0e\xea\x6c\x9f\xdc\xbb\xc8\xfe\x4a\xc1\xff\x1a\x56\x32\xd1\x14\xb3\x37\x3a\x56\x83\xd0\xe8\xa8\x51\x6e\x48\x39\x21\xe7\x6c\xd2\xfd\x21\xaa\x72\x7c\x20\xdf\x71\x8a\xd9\x77\xe7\x7a\x94\x1e\x01\x53\xe4\x39\xb6\x43\xcf\x7b\x9c\xf7\xd1\xb2\x2f\xb3\xab\x7d\x7c\x45\xff\xb7\xac\x35\x51\xda\x71\x36\x6a\x7d\xf9\x08\xa6\x6f\x49\x7f\xa0\x39\xf2\x49\x3b\x2f\xbd\x1c\xc7\x52\x7a\x75\xd3\xc7\x62\x81\x86\x42\xe5\x92\xf8\xa7\x74\xbe\x40\x10\xbb\x30\xdd\x10\xb5\xd3\xdd\xa9\xa8\xab\x10\x8f\x1a\xe7\x71\x73\x7c\x62\xd7\x19\xbf\xda\xcb\x2d\xe6\xf8\xb5\x09\x43\x2a\xd6\x72\xe0\xd0\x5e\xdf\xc5\x98\x2f\x7a\xe7\xe8\x25\x00\x00\xff\xff\xbf\x2c\x3f\x68\x72\x02\x00\x00" +var _idtablestakingNodeStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x0f\x0f\x25\x5e\x4c\x0f\xa5\x87\xd0\x56\xd2\x46\x41\x10\x0f\x1a\x0f\x3d\xae\x9b\x89\xa6\xc6\x9d\x30\x99\x54\xa1\xf8\xdf\x4b\xdc\x9a\x8b\x20\x7d\x97\x37\x10\xf2\xed\xb7\xb3\xe5\xa1\x66\x51\x4c\x2b\x3e\xce\xd2\xcc\x6c\x2a\x5a\xa9\xd9\x97\x6e\x8b\x42\xf8\x80\xc7\xd3\x2c\x9d\x2c\xb2\x59\xf6\x99\x25\xef\xf3\x49\x92\xa6\xcb\xc9\x6a\x15\x04\x81\x8a\x71\x8d\xb1\x5a\xb2\x0b\xcd\x81\x5b\xa7\x31\xd6\xd3\xf2\xf4\xfc\x34\xc4\x4f\x10\x00\x40\x14\x61\xce\xd6\x54\xf8\x36\x52\x76\x64\x14\x2c\x30\x10\x2a\x48\xc8\x59\x82\x32\x74\x47\x70\x9c\x13\x78\xf3\x45\x56\x2f\x3f\x56\xa4\x68\xd4\xec\x49\x96\x54\xc4\x78\xb8\x95\x1b\x2d\x38\xbf\xcc\x24\xfe\xac\x5a\xa8\x36\x42\xa1\xb1\x56\x63\x24\xad\xee\x12\x6b\x3b\xab\xce\x06\x7f\x89\x22\x6c\x58\x84\x8f\xff\x91\xe8\xd2\x50\x55\x8c\x7a\x13\xbc\xa2\xc3\x8f\x3c\xe3\xe5\xbe\xd6\x5b\xd8\xed\x2f\x46\xd4\x28\x8b\xd9\x52\x54\x54\x7c\xf4\x9f\x86\x3d\xbf\xcb\x78\x8c\xda\xb8\xd2\x86\x83\x0f\x6e\xab\x1c\x8e\xf5\x6a\x79\xcf\x71\x30\xf4\x17\x3f\xfb\xa2\x13\xd9\x56\xe9\xba\xfa\x5b\x79\x3f\xad\xdd\xa5\xf2\x8c\xf7\xe4\x9a\xfe\xe1\x7c\xf7\xc4\xf3\x6f\x00\x00\x00\xff\xff\x41\xb5\x61\xec\x15\x02\x00\x00" func idtablestakingNodeStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2999,11 +2960,11 @@ func idtablestakingNodeStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0xb1, 0xec, 0x45, 0x6a, 0xd6, 0xd6, 0x63, 0x55, 0x11, 0x3, 0xac, 0x13, 0xe4, 0x53, 0xd3, 0xb6, 0x8b, 0x82, 0xb3, 0x97, 0x39, 0x1d, 0x61, 0x2d, 0xb5, 0x64, 0x2d, 0xc3, 0x2f, 0xa9, 0x72}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfc, 0x6b, 0x10, 0x5f, 0x81, 0x24, 0xe5, 0x30, 0x13, 0x2, 0x34, 0x58, 0x85, 0xd0, 0x3d, 0x73, 0xf9, 0xe6, 0xd2, 0x19, 0x17, 0xce, 0x6e, 0xd7, 0x65, 0x4e, 0xc5, 0x26, 0x66, 0x3c, 0x3f, 0xdf}} return a, nil } -var _idtablestakingNodeUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x51\xcd\x4a\xf3\x50\x10\xdd\xe7\x29\x0e\x59\x94\x64\x93\xee\xcb\xf7\x59\xaa\x22\x08\xa2\x62\xc5\xfd\xf4\x66\xd2\xc6\xde\xde\x09\x93\x89\x15\x4a\xdf\x5d\xf2\xd3\xd2\x52\x05\x17\xce\xea\xc2\x3d\x73\x7e\xe6\x94\x9b\x4a\xd4\x70\xe7\x65\x7b\x7f\xfb\x4a\x0b\xcf\x73\xa3\x75\x19\x96\x28\x54\x36\x88\x2f\x3f\xe2\x28\x8a\x4c\x29\xd4\xe4\xac\x94\x80\x5d\x14\x01\xc0\x78\x8c\x07\x71\xe4\xf1\x41\x5a\xb6\x70\x14\xa2\x20\x28\x17\xac\x1c\x1c\xc3\x04\xb6\x62\x04\xc9\x19\xb2\x78\x67\x67\xdd\xa2\x67\x43\x6d\xb4\x66\x7d\xe1\x62\x02\x6a\x6c\x95\x5c\xaa\x66\x8f\x92\xf3\x53\xc5\x4a\x26\x9a\x62\xf4\x03\x62\xde\x11\xf5\x8e\x2a\xe5\x8a\x94\x13\x72\xce\x06\xde\x6b\x51\x95\xed\x1b\xf9\x86\x53\x8c\x66\xce\x49\x13\x2c\xc5\xae\xc3\x0f\x29\x16\x1d\xe6\x37\xce\xdb\xa9\xd9\x17\xd9\xd1\x3e\xfe\xa3\x55\xcb\x6a\x13\xa5\x25\x67\x3d\xd7\xbf\xbf\xc8\x74\x95\xb4\x85\x4c\xbe\x69\xea\x04\x34\xef\x75\x9f\xc9\x56\xe9\xd1\x62\x3b\xd3\x29\x2a\x0a\xa5\x4b\xe2\x1b\x69\x7c\x8e\x20\x76\x08\x7a\x16\xb3\x1e\xca\xa7\x7c\x53\x86\xb8\xe7\xd8\xf7\xe7\xe4\x4f\x76\x8d\xf1\xc9\xb1\xce\xb3\x67\x4d\xe8\xde\x33\xef\x93\xc3\xe2\x3e\xfa\x0a\x00\x00\xff\xff\xa1\x88\x84\x20\x60\x02\x00\x00" +var _idtablestakingNodeUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x41\x6b\xea\x50\x10\x85\xf7\xf9\x15\x07\x17\x8f\xb8\x89\x6f\x2d\xef\x3d\xc9\x6b\x2c\x08\x22\xc5\x64\xd3\xe5\x78\x9d\x68\xea\xf5\x4e\x18\x27\x55\x10\xff\x7b\x49\x52\xa5\x60\x91\xce\xe6\xce\x62\xe6\x9c\xef\x9e\xa9\xf6\xb5\xa8\xe1\xd9\xcb\x71\x96\x15\xb4\xf2\x9c\x1b\xed\xaa\xb0\x41\xa9\xb2\xc7\xef\xd3\x2c\x9b\x2e\x8a\x59\xf1\x5a\xa4\xff\xe7\xd3\x34\xcb\x96\xd3\x3c\x8f\xa2\xc8\x94\xc2\x81\x9c\x55\x12\x70\x8e\x22\x00\x18\x8d\x30\x17\x47\x1e\xef\xa4\x55\xab\x84\x52\x14\x04\xe5\x92\x95\x83\x63\x98\xc0\xb6\x8c\x20\x6b\x86\xac\xde\xd8\x59\xb7\xe8\xd9\x70\x30\xda\xb1\x2e\xb9\x1c\xe3\xd7\x3d\x4c\xb2\x90\x75\xd7\xb3\xf6\x5e\xb5\x72\x4d\xca\x31\x39\x67\x63\xa4\x8d\x6d\x53\xe7\xa4\x09\x36\xc4\xb9\x1b\xf8\x04\x5a\x89\xaa\x1c\x7f\x02\xd1\xd6\x81\x7d\x99\xdc\x48\xf0\x17\xad\x7c\xd2\x6b\xfc\x79\x8c\xf5\x2f\x6e\xf3\x1a\x7f\x13\xe4\x97\xa1\xdc\x44\x69\xc3\x2f\x64\xdb\xe1\xcd\xb4\xad\xc9\x04\x35\x85\xca\xc5\x83\x27\x69\xfc\x1a\x41\xec\x8a\xfe\x08\x7c\x30\xec\xd3\xb8\xf4\x0f\x9f\xd8\x35\xc6\xd7\x7b\xdc\xff\x28\x69\x42\xd7\xa7\xde\xc7\xb7\xd5\xcb\x47\x00\x00\x00\xff\xff\x71\x58\x69\x70\x03\x02\x00\x00" func idtablestakingNodeUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -3019,11 +2980,11 @@ func idtablestakingNodeUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0x1c, 0xa5, 0xdd, 0xf7, 0xea, 0x9b, 0x33, 0xd5, 0xdd, 0xc3, 0x4a, 0x31, 0x12, 0x57, 0x68, 0x42, 0x35, 0x8c, 0x64, 0xa7, 0x47, 0x11, 0x93, 0x34, 0xbe, 0x86, 0xb7, 0x1b, 0x2, 0x80, 0x5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4e, 0x95, 0x37, 0xa2, 0xd8, 0xd1, 0x91, 0x70, 0xdb, 0x79, 0x3a, 0x20, 0x5d, 0x7, 0x45, 0xe7, 0xfb, 0x54, 0xb7, 0xc3, 0x41, 0x2f, 0x7e, 0xe9, 0xaa, 0x3a, 0x69, 0x13, 0xb6, 0xd6, 0x76, 0x27}} return a, nil } -var _idtablestakingNodeUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xc1\x4a\xf3\x50\x10\x85\xf7\x79\x8a\x43\x16\x25\xd9\x24\xfb\xf2\xff\x96\xaa\x08\x82\x54\x31\xe2\x7e\x7a\x33\x69\x63\xd3\x3b\x61\x32\x31\x82\xf4\xdd\x25\x4d\x5a\x5a\xaa\xe0\xc2\xd9\xde\xb9\xdf\x9c\x33\x73\xca\x6d\x2d\x6a\xb8\xab\xa4\xbb\xbf\x7d\xa1\x65\xc5\x99\xd1\xa6\xf4\x2b\x14\x2a\x5b\x84\x97\x0f\x61\x10\x98\x92\x6f\xc8\x59\x29\x3e\xf2\xdc\xcd\xf3\x5c\xb9\x69\xa6\xc8\x4c\x4b\xbf\x8a\xf1\x19\x04\x00\x90\xa6\x78\x10\x47\x15\xde\x49\xcb\x9e\x80\x42\x14\x04\xe5\x82\x95\xbd\x63\x98\xc0\xd6\x0c\x2f\x39\x43\x96\x6f\xec\x6c\xff\xb1\x62\x43\x63\xb4\x61\x7d\xe6\x62\x0a\x6a\x6d\x1d\x5d\x0a\x49\x16\x92\xf3\x63\xcd\x4a\x26\x1a\x63\xf2\x43\x47\xb6\x07\x0d\x8a\x6a\xe5\x9a\x94\x23\x72\xce\x46\xee\xb5\xa8\x4a\xf7\x4a\x55\xcb\x31\x26\x73\xe7\xa4\xf5\xd6\x5b\xc0\x58\x69\x8a\xe5\xbe\xe7\x37\xca\xfb\x6a\xb8\x2a\x92\xa3\x7c\xfc\x47\x3f\x2d\x69\x4c\x94\x56\x9c\x0c\xac\x7f\x7f\xe1\xe9\x2a\xea\x6f\x34\xfd\xe6\x78\x27\x4d\xd9\x30\xf7\x89\x6c\x1d\x1f\x25\xf6\x35\x9b\xa1\x26\x5f\xba\x28\xbc\x91\xb6\xca\xe1\xc5\x0e\x46\xcf\x6c\x36\x63\x1e\x28\xdf\x96\x3e\x1c\x18\xbb\x61\x9d\xfc\xc1\xae\x35\x3e\x59\xd6\xb9\xf7\xa4\xad\x73\x32\x5e\xb0\x75\xa2\x3d\x64\x4c\xca\x49\x68\x0e\xbc\x5d\xf0\x15\x00\x00\xff\xff\x85\x75\xea\x7b\x8a\x02\x00\x00" +var _idtablestakingNodeUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x0f\x0f\x25\x5e\x92\x9e\x43\x5b\x49\x1b\x0b\x82\x48\x31\xb9\xf4\xb8\x6e\x26\x9a\x1a\x77\xc2\x64\xd2\x08\xc5\xff\x5e\x62\x54\x04\x8b\x74\x4e\x7b\xd8\xfd\xe6\xdb\xf7\xca\x5d\xcd\xa2\x78\xaf\xb8\x9b\x25\x99\x59\x55\x94\xaa\xd9\x96\x6e\x8d\x42\x78\x87\xc7\xfd\x2c\x99\x2e\xb2\x59\xf6\x99\xc5\xaf\xf3\x69\x9c\x24\xcb\x69\x9a\x7a\x9e\x8a\x71\x8d\xb1\x5a\xb2\xf3\x1d\x75\x71\x9e\x0b\x35\x4d\x84\x54\xa5\x74\xeb\x31\x7e\x3c\x0f\x00\xc2\x10\x73\xb6\xa6\xc2\xb7\x91\xb2\x87\xa3\x60\x81\x81\x50\x41\x42\xce\x12\x94\xa1\x1b\x82\xe3\x9c\xc0\xab\x2f\xb2\x7a\x7c\x58\x91\xa2\x51\xb3\x25\x59\x52\x11\xe1\xe1\xd6\x2f\x58\x70\x7e\x3c\x93\x0c\xbb\x6a\xa1\xda\x08\xf9\xc6\x5a\x8d\x10\xb7\xba\x89\xad\xe5\xd6\x69\x6f\x83\xd3\x84\x21\x56\x2c\xc2\xdd\x7f\x24\xfa\x69\xa8\x2a\x82\x8b\x09\x9e\xd1\xe3\x83\x81\xf1\x74\x5f\xeb\xc5\xef\x23\x8c\xfe\xc8\xf6\xea\x52\xaa\x2c\x66\x4d\x1f\x46\x37\xe3\xcb\xd2\x7e\x26\x13\xd4\xc6\x95\xd6\x1f\xbd\x71\x5b\xe5\x70\xac\x67\xf5\x7b\xe2\xa3\x81\x72\x18\x32\xa1\x3d\xd9\x56\xe9\x5c\xc7\xed\x87\x82\xb6\xce\x8d\xd2\x82\xb4\x63\xe9\xd5\x4e\x4d\x5e\x95\x3a\xf6\x4e\xc4\xc3\x6f\x00\x00\x00\xff\xff\xe2\xcc\x6e\xd8\x2c\x02\x00\x00" func idtablestakingNodeUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -3039,11 +3000,11 @@ func idtablestakingNodeUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xd2, 0x71, 0xf6, 0xe3, 0x80, 0x71, 0xc6, 0xeb, 0x99, 0xb9, 0x5f, 0x5b, 0x7b, 0x58, 0x5a, 0x60, 0xeb, 0x99, 0x8d, 0x8e, 0x29, 0xae, 0x92, 0xd0, 0x8c, 0x1, 0xe5, 0x56, 0xf7, 0x10, 0xee}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0xff, 0xd7, 0xe9, 0x86, 0x61, 0x79, 0xad, 0x99, 0xa6, 0xaa, 0x48, 0x6, 0xe9, 0x53, 0x70, 0xa0, 0xae, 0x82, 0xf6, 0x21, 0xec, 0x11, 0x8, 0x6, 0x4d, 0x42, 0xd1, 0xc6, 0xe5, 0x8, 0x9d}} return a, nil } -var _idtablestakingNodeWithdraw_reward_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x4f\x6b\xdb\x40\x10\xc5\xef\xfb\x29\x06\x1d\x8c\x74\xa8\x74\x29\x3d\x98\xb4\xa1\x7f\x30\x14\x42\x53\xe2\x34\x3d\x8f\x57\xa3\x78\xeb\xf5\x8e\x18\x8d\xaa\x40\xc9\x77\x2f\x5a\xfd\x41\xae\x6b\x28\x25\x73\x11\x62\xdf\xbc\x79\x3f\xcd\xca\x1d\x6b\x16\x85\x8d\xe7\xee\xf3\xa7\x7b\xdc\x79\xda\x2a\x1e\x5c\x78\x84\x4a\xf8\x08\xc9\xf9\x41\x62\x16\x3d\xf7\x7c\xa0\xb0\x90\xc6\xf7\xc4\x18\xa3\x82\xa1\x41\xab\x8e\x43\x8a\x47\x6e\x83\xae\xe1\xdb\xc6\x3d\xbd\x79\x9d\xc1\x2f\x63\x00\x00\x8a\x02\x6e\xd8\xa2\x87\x9f\x28\xae\x1f\x00\x15\x0b\x20\x08\x55\x24\x14\x2c\x81\x32\xe8\x9e\x20\x70\x49\xc0\xbb\x1f\x64\x35\x36\x7a\x52\x68\x14\x0f\x24\x77\x54\xad\x01\x5b\xdd\xa7\xe7\x39\xf3\x2f\x5c\xd2\x6d\x4d\x82\xca\x92\xc1\xea\x82\x62\x1b\x8d\xcc\x6c\x5c\x4d\x14\xd1\x7b\x35\x43\xe5\x0f\xd8\x7a\x1d\x74\xb5\x50\x8d\x42\x29\x5a\xab\xe3\xfc\x0f\x2c\xc2\xdd\x03\xfa\x96\x32\x58\xbd\xb7\xb6\x47\xee\x51\x61\xac\xa2\x80\x5d\xd4\xfc\x0b\x61\x5f\x0d\xf9\x2a\x9f\x31\xe1\x2d\xf4\xd3\xf2\x46\x59\xf0\x91\xf2\xc1\xeb\xea\x25\xd8\xdf\xa5\xfd\xfe\xd6\x7f\xb9\x03\x0b\xd1\x76\x98\xfb\x15\x75\x9f\xcd\x11\xfb\xba\xbe\x86\x1a\x83\xb3\x69\xf2\x91\x5b\x5f\x42\x60\x9d\x40\x4f\x30\x9b\xf1\x5a\x61\x79\x74\x21\xc9\xcc\x29\xe7\xf2\xab\x5f\x40\xfd\x73\x15\x53\xec\x62\xd4\x15\xb3\x47\x3c\xfe\xbf\x94\x9b\x9b\xdb\xef\x10\xfb\x93\xc1\xe0\x79\x08\x4a\x4f\x64\x5b\xa5\xc5\x3e\xcf\x62\xe7\x25\xd5\xdc\x38\x1d\x63\x5d\xbd\x3a\x5d\x60\xde\x39\xdd\x97\x82\xdd\x1d\x75\x28\x25\x95\xb1\xaf\x99\x7f\x8e\xe1\x99\x4d\x53\x9f\xcd\xef\x00\x00\x00\xff\xff\x59\x46\xe5\x62\x9a\x03\x00\x00" +var _idtablestakingNodeWithdraw_reward_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x8f\x93\x50\x10\xc7\xef\x7c\x8a\xc9\x1e\x4c\x7b\x10\x3c\x18\x0f\xcd\xea\xa6\x5a\x9a\x34\x36\x5d\x53\x50\xe3\x71\xfa\x18\x96\x67\xe9\x1b\x32\x0c\xd2\xc4\xec\x77\x37\x0f\x16\x64\x63\xd3\x98\x9d\xcb\x40\xf8\xff\x67\x7e\xcc\x8c\x3d\x55\x2c\x0a\xeb\x92\xdb\xcd\x2a\xc5\x43\x49\x89\xe2\xd1\xba\x07\xc8\x85\x4f\xf0\xe6\xbc\x59\xc5\xbb\x74\x93\xfe\x48\x97\x1f\xb7\xf1\x72\xb5\xda\xc7\x49\x12\x4c\x5c\x29\x1f\xc9\x0d\xe2\xf5\xf6\xfe\x7b\x7a\xff\x39\xde\x0d\xc2\x20\x50\x41\x57\xa3\x51\xcb\x6e\x86\x27\x6e\x9c\x2e\xe0\xeb\xda\x9e\xdf\xbd\x9d\xc3\xef\x20\x00\x00\x88\x22\xd8\xb2\xc1\x12\x7e\xa1\x58\x8f\x00\x39\x0b\x20\x08\xe5\x24\xe4\x0c\x81\x32\x68\x41\xe0\x38\x23\xe0\xc3\x4f\x32\xda\x19\x4b\x52\xa8\x15\x8f\x24\x7b\xca\x17\xf0\xea\xdf\xbf\x08\x77\x9c\x75\xcf\x24\xc1\x68\xc9\x07\xec\xbf\xae\xee\x35\xfc\x86\x4d\xa9\xbd\xae\x12\xaa\x50\x68\x86\xc6\xe8\x02\x96\x8d\x16\x4b\x63\x3c\xbd\xa7\x86\xa7\x88\x22\x38\xb0\x08\xb7\xff\x03\xeb\xa3\xa6\x32\x0f\x47\x62\x78\x0f\xbe\x7c\xd8\xd7\xb8\xbd\x8e\xff\x61\xe6\x67\xbc\xb8\xb0\xa9\x89\x28\x51\x16\x7c\xa0\x2f\xa8\xc5\x7c\x6c\xea\xe3\xee\x0e\x2a\x74\xd6\xcc\x6e\x3e\x71\x53\x66\xe0\x58\x07\xf4\x6b\xe0\x37\xf3\xe0\x39\xfb\x74\x74\x97\xf0\x27\x73\x1c\x80\xa3\xba\x87\x8a\x46\x6f\xf7\xf9\x65\x7c\xfe\xc0\xa0\xf3\x0f\x68\x8f\x7d\xa2\x33\x99\x46\x69\x38\xa9\x8b\xc0\x61\x46\x15\xd7\x56\x9f\xc0\x6e\x5f\x3f\x5f\x47\xd8\x5a\x2d\x32\xc1\x76\x4f\x2d\x4a\x46\x59\xe7\xab\xc7\xab\xed\xf3\x7c\xec\xfb\xf8\x27\x00\x00\xff\xff\x60\x5a\x76\x7d\x3c\x03\x00\x00" func idtablestakingNodeWithdraw_reward_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3059,11 +3020,11 @@ func idtablestakingNodeWithdraw_reward_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/withdraw_reward_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x52, 0xeb, 0x3d, 0x25, 0xa1, 0xa5, 0x3e, 0xc5, 0x3, 0xd5, 0xde, 0x8f, 0xc3, 0xa1, 0x8, 0xb9, 0x75, 0x58, 0x54, 0x20, 0xdd, 0xea, 0x4d, 0x82, 0x1d, 0xd1, 0x39, 0x18, 0xbd, 0x95, 0x4c, 0xe7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5f, 0x9c, 0xf5, 0xbe, 0x1e, 0xf3, 0xb8, 0x1e, 0x25, 0x2c, 0x3b, 0x3, 0xf1, 0xc8, 0xaf, 0xae, 0x4b, 0xb5, 0xb5, 0x88, 0x5e, 0x4f, 0x61, 0x4, 0x43, 0x82, 0xe4, 0xaf, 0x60, 0x6b, 0xf1, 0x19}} return a, nil } -var _idtablestakingNodeWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x4f\x6b\xdb\x40\x10\xc5\xef\xfb\x29\x06\x1d\x8c\x74\xa8\x74\x29\x3d\x98\xb4\xa1\x7f\x30\x14\x42\x53\xea\x24\x3d\x8f\x57\xa3\x78\xeb\xf5\x8e\x18\x8d\xaa\x40\xc9\x77\x2f\x5a\xfd\x41\xae\x6b\x28\x25\x73\x31\xd6\xbe\x79\xf3\x7e\x9a\x95\x3b\xd6\x2c\x0a\x1b\xcf\xdd\xe7\x4f\x77\xb8\xf3\xb4\x55\x3c\xb8\xf0\x08\x95\xf0\x11\x92\xf3\x83\xc4\x2c\x7a\xee\xf8\x40\x61\x21\x8d\xff\x13\x63\x8c\x0a\x86\x06\xad\x3a\x0e\x29\x1e\xb9\x0d\xba\x86\xfb\x8d\x7b\x7a\xf3\x3a\x83\x5f\xc6\x00\x00\x14\x05\xdc\xb0\x45\x0f\x3f\x51\x5c\x3f\x00\x2a\x16\x40\x10\xaa\x48\x28\x58\x02\x65\xd0\x3d\x41\xe0\x92\x80\x77\x3f\xc8\x6a\x6c\xf4\xa4\xd0\x28\x1e\x48\xbe\x51\xb5\x06\x6c\x75\x9f\x9e\xe7\xcc\xbf\x70\x49\xb7\x35\x09\x2a\x4b\x06\xab\x0b\x8a\x6d\x34\x32\xb3\x71\x35\x51\x44\xef\xd5\x0c\x95\x3f\x60\xeb\x75\xd0\xd5\x42\x35\x0a\xa5\x68\xad\x8e\xf3\x3f\xb0\x08\x77\x0f\xe8\x5b\xca\x60\xf5\xde\xda\x1e\xb9\x47\x85\xb1\x8a\x02\x76\x51\xf3\x2f\x84\x7d\x35\xe4\xab\x7c\xc6\x84\xb7\xd0\x4f\xcb\x1b\x65\xc1\x47\xca\x07\xaf\xab\x97\x60\x7f\x97\xf6\xfb\x5b\xff\xe5\x0e\x2c\x44\xdb\x61\xee\x57\xd4\x7d\x36\x47\xec\xeb\xfa\x1a\x6a\x0c\xce\xa6\xc9\x47\x6e\x7d\x09\x81\x75\x02\x3d\xc1\x6c\xc6\x6b\x85\xe5\xd1\x85\x24\x33\xa7\x9c\xcb\xb7\x7e\x01\xf5\xcf\x55\x4c\xb1\x8b\x51\x57\xcc\x1e\xf1\xf8\xff\x52\x6e\x6e\x6e\xbf\x43\xec\x4f\x06\x83\xe7\x21\x28\x3d\x91\x6d\x95\x16\xfb\x3c\x8b\x9d\x97\x54\x73\xe3\x74\x8c\x75\xf5\xea\x74\x81\x79\xe7\x74\x5f\x0a\x76\xf7\x21\x3e\x2b\x63\x5f\x33\x7f\x1c\xc3\x6f\x36\x4d\x7d\x36\xbf\x03\x00\x00\xff\xff\x34\xcb\x1a\xc9\x9a\x03\x00\x00" +var _idtablestakingNodeWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xcf\x8e\x94\x40\x10\xc6\xef\x3c\x45\x65\x0f\x06\x0e\x82\x07\xe3\x81\xac\x6e\x50\x98\x64\xe2\x64\xd6\x2c\xac\xc6\x63\x4d\x53\x2c\xed\x30\x5d\xa4\x29\x64\x12\xb3\xef\x6e\x1a\x16\x64\xe3\x64\x63\xac\x4b\xf3\xe7\xfb\xaa\x7e\x5d\x55\xfa\xd4\xb2\x15\xd8\x34\x3c\x6c\xd3\x02\x0f\x0d\xe5\x82\x47\x6d\x1e\xa0\xb2\x7c\x82\x37\xe7\x6d\x9a\xed\x8b\x6d\xf1\xbd\x48\x3e\xee\xb2\x24\x4d\xef\xb2\x3c\xf7\x56\xae\x82\x8f\x64\x66\xf1\x66\x77\xfb\xad\xb8\xfd\x9c\xed\x67\xa1\xe7\x89\x45\xd3\xa1\x12\xcd\xc6\xc7\x13\xf7\x46\x62\xb8\xdf\xe8\xf3\xbb\xb7\x01\xfc\xf2\x3c\x00\x80\x28\x82\x1d\x2b\x6c\xe0\x27\x5a\xed\x10\xa0\x62\x0b\x08\x96\x2a\xb2\x64\x14\x81\x30\x48\x4d\x60\xb8\x24\xe0\xc3\x0f\x52\x32\x1a\x1b\x12\xe8\x04\x8f\x64\xef\xa8\x8a\xe1\xd5\xdf\xb7\x08\xf7\x5c\x8e\xcf\x64\xbd\xc5\x52\xcd\xd8\x7f\x5c\xe3\x6b\xf8\x15\xfb\x46\x26\x5d\x6b\xa9\x45\x4b\x3e\x2a\x25\x31\x24\xbd\xd4\x89\x52\x8e\xde\x51\xc3\x53\x44\x11\x1c\xd8\x5a\x1e\xfe\x05\xd6\x45\x47\x4d\x15\x2e\xc4\xf0\x1e\x5c\xfa\x70\xca\x71\xfd\x32\xfe\x07\xdf\xf5\x38\xbe\x30\xa9\x95\x28\x17\xb6\xf8\x40\x5f\x50\xea\x60\x29\xea\xe2\xe6\x06\x5a\x34\x5a\xf9\x57\x9f\xb8\x6f\x4a\x30\x2c\x33\xfa\x4b\xe0\x57\x81\xf7\x9c\x7d\xdd\xba\x4b\xf8\xab\x3e\xce\xc0\x51\x37\x41\x45\x8b\x77\xfc\xfd\x7f\x7c\x6e\xc1\x60\xf4\xcf\x68\x8f\xd3\x41\x67\x52\xbd\xd0\xbc\x52\x17\x81\xc3\x92\x5a\xee\xb4\x3c\x81\x5d\xbf\x7e\x3e\x8e\x70\xd0\x52\x97\x16\x87\x7b\x33\x7e\x2b\x47\x5f\xb7\x6c\xed\x74\x06\x4b\xdd\xc7\xdf\x01\x00\x00\xff\xff\x0d\xd7\x89\xd6\x3c\x03\x00\x00" func idtablestakingNodeWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3079,11 +3040,11 @@ func idtablestakingNodeWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x77, 0xc9, 0x29, 0x2b, 0x34, 0x2, 0xd7, 0x10, 0x4e, 0x68, 0xa9, 0x5e, 0x1e, 0x2d, 0xc5, 0xd9, 0xdb, 0xca, 0xd0, 0x10, 0xb4, 0x22, 0xef, 0xd4, 0xa5, 0x9c, 0xe5, 0xcd, 0xe, 0xb5, 0x16, 0xa8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0x80, 0xfb, 0x68, 0x62, 0x31, 0x5b, 0x95, 0x88, 0x56, 0xa3, 0xd1, 0xe9, 0x54, 0xb3, 0xe9, 0x58, 0xcc, 0x3f, 0xf4, 0x64, 0x15, 0x1c, 0x8, 0xbb, 0x85, 0xd9, 0x8d, 0x1e, 0x30, 0x5e, 0x2b}} return a, nil } -var _idtablestakingScriptsGet_approved_but_not_staked_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x31\x8f\x9b\x40\x10\x85\x7b\x7e\xc5\x8b\x2b\x68\xec\xde\x12\x45\x22\x2b\x92\xa5\x24\x8d\xdd\x59\x14\x6b\x18\xcc\xca\xcb\x0e\x99\x1d\x9c\x9c\x2c\xfe\xfb\x09\xf0\x01\x96\x4f\xb7\x05\x12\xbb\xdf\xe3\x7b\x8c\xd6\xd6\x0d\x8b\xe2\xa7\xe3\x7f\xfb\xdd\xd1\x9c\x1d\x1d\xd4\x5c\xad\xbf\xa0\x14\xae\xb1\x7a\x3d\x58\x45\xd1\x66\x83\x63\x65\x03\x42\x2e\xb6\x51\x08\x69\x2b\x3e\x40\x2b\x82\xb3\x41\xc1\x25\x3c\x17\xd4\xef\x18\x85\x11\x02\xfb\xe1\xd4\x34\x8d\xf0\x8d\x8a\x11\x3b\xb7\x8a\x82\xe1\x59\x91\xb7\x22\xe4\xd5\xbd\xa1\x32\x37\x82\xf2\x95\x7c\x40\x50\x73\xa5\x02\xe6\xcc\xfd\x5e\x45\xa8\xad\xb7\x75\x5b\x43\xe8\x6f\x6b\x85\x6a\xf2\xba\x8e\x4c\x9e\x53\x08\xb1\x71\x2e\x41\xd9\x7a\xd4\xc6\xfa\x38\xd9\xe2\x74\x50\xb1\xfe\x92\xe1\x1e\x01\x80\x23\x9d\xfc\xfb\x5d\x40\xfa\xc9\x4f\xaf\x2f\xa4\xdf\x1f\xcc\x2f\x1b\x34\x4e\xa6\xe8\xd8\xe5\xab\xe0\x61\x20\xfe\x70\x41\xfb\x5d\x88\x93\xe8\x35\xfa\xdb\x34\x5b\xdc\xc7\x5a\x5b\xfc\x60\x76\x1d\x52\xdc\xbb\x81\x2c\x59\x26\x12\xd6\x2f\x84\x63\xff\x7e\x2d\xbf\x74\xfa\x78\xc9\x90\x42\xa5\xa5\x81\xea\x66\x2d\xfd\x57\x31\x8f\x3a\x8b\x69\xa4\x38\x65\x93\x70\x1e\x48\xaf\x5c\x8e\x67\x96\xda\xf2\xd9\x3b\x53\x19\xbe\x8d\xea\x05\xdd\xaf\xa5\x79\x6d\x9a\x86\x7c\x11\xcf\xa9\x64\x62\xbb\x68\x7e\x8e\x97\xe8\x29\x1a\x75\xef\x01\x00\x00\xff\xff\x1f\x13\x7f\x5b\x9e\x02\x00\x00" +var _idtablestakingScriptsGet_approved_but_not_staked_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\xc1\xca\x9b\x40\x14\x85\xf7\x3e\xc5\xe9\x4e\x37\xf9\xbb\x0e\xb8\x48\x30\x05\x21\xcd\xa2\xba\x29\xc1\xc5\x18\xaf\x71\x88\xce\x4c\x67\xee\xa4\x29\xc1\x77\x2f\x6a\xaa\x86\x96\xce\x42\xf0\xfa\x1d\xbf\xe3\x45\xd9\x19\x6d\x19\x5f\x5a\xfd\x33\x4d\x72\x51\xb6\x94\xb1\xb8\x49\x75\x45\x6d\x75\x87\xcf\x8f\x34\x39\x9c\xf2\x34\xff\x9e\xef\xf6\xc7\xc3\x2e\x49\xbe\x1d\xb2\x2c\x08\x3e\x3e\x90\x37\xd2\xc1\x5d\xac\x34\x0c\x4b\xec\xad\x72\xe0\x86\xd0\x4a\xc7\xd0\x35\x94\xae\x68\x98\x08\x86\xb0\x04\xad\xc6\xa7\xc2\x18\xab\xef\x54\x4d\x58\xe9\x19\x95\x86\xd2\x8c\x8b\xb7\x96\x14\xb7\xbf\xd0\x88\x3b\x81\xf5\x8d\x94\x83\x63\x71\xa3\x0a\xa2\xd4\xc3\xac\x21\x74\x52\xc9\xce\x77\xb0\xf4\xc3\x4b\x4b\x1d\x29\xde\x04\xc6\x97\xa8\xbd\x42\x27\xa4\x0a\xa3\x2d\xce\x19\x5b\xa9\xae\x05\x9e\x01\x00\xb4\xc4\xb3\x37\x4d\x1c\xe2\x7f\x7c\xee\xe6\x4a\xbc\x7b\x31\x47\xe9\x38\x8c\xe6\xe8\xd4\xe1\x7f\xc1\x6c\x24\x4e\xba\xa2\x34\x71\x61\x14\xfc\x1d\xfd\x2a\xcc\x16\xcf\xa9\xd6\x16\x7b\xad\xdb\x1e\x31\x9e\xfd\x48\xd6\xda\xce\x24\xa4\x5a\x09\xa7\xfe\xc3\x59\xbf\xe9\xfc\xe7\xa6\x40\x0c\xb6\x9e\x46\xaa\x5f\xb4\xf4\x60\x2b\x5e\x75\x56\xdb\x88\x71\x2e\x66\xe1\xb2\x90\x41\xb9\x5e\xcf\x22\x95\xf5\xbb\x77\xa1\x0a\x7c\x9a\xd4\x2b\x7a\x38\x6b\xf3\x46\x18\x43\xaa\x0a\x97\x54\x34\xb3\x7d\xb0\x5c\xa7\x9f\xe7\x2d\x1a\xf4\xbf\x03\x00\x00\xff\xff\xa2\xd8\x97\xd5\x98\x02\x00\x00" func idtablestakingScriptsGet_approved_but_not_staked_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -3099,11 +3060,11 @@ func idtablestakingScriptsGet_approved_but_not_staked_nodesCdc() (*asset, error) } info := bindataFileInfo{name: "idTableStaking/scripts/get_approved_but_not_staked_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x14, 0xa8, 0xd9, 0xd7, 0xa2, 0x3c, 0xd5, 0x82, 0xed, 0xbe, 0x41, 0xd5, 0xa4, 0x94, 0x1e, 0x60, 0x33, 0x2f, 0x2e, 0x61, 0x5a, 0x62, 0x82, 0xc9, 0x65, 0x58, 0xaf, 0xf, 0x89, 0x70, 0xdd, 0xec}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc7, 0xd1, 0x94, 0x0, 0xe, 0x54, 0x44, 0x5c, 0x91, 0xdc, 0xe, 0x56, 0xa7, 0x76, 0x7d, 0x4, 0x90, 0x93, 0xa2, 0x39, 0xc3, 0x18, 0x9f, 0x62, 0x8e, 0x5f, 0xa4, 0xb, 0x33, 0x42, 0xc4, 0xc4}} return a, nil } -var _idtablestakingScriptsGet_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\x03\x41\x0c\x85\xef\xf3\x2b\x1e\x7b\xda\xbd\xb4\x77\x41\x8a\x28\x82\xe0\xad\xbd\x89\x87\x38\x9b\x6e\x43\x67\x67\x86\x24\xa3\x88\xf8\xdf\x65\x5b\x11\xc5\xe6\x9a\x7c\x79\xdf\x93\xb9\x16\x75\xdc\xa7\xf2\xf6\x70\xb7\xa3\x97\xc4\x5b\xa7\xa3\xe4\x09\x7b\x2d\x33\xba\xff\x8b\x2e\x84\xf5\x1a\xbb\x83\x18\x2c\xaa\x54\x87\xb2\x37\xcd\x06\x3f\x30\x62\x53\xe5\xec\xa0\x5a\xb5\xbc\xf2\x88\x24\xe6\x21\x50\x8c\x6c\xd6\x53\x4a\x03\xf6\x2d\x63\x26\xc9\xfd\x70\x85\xa7\xad\xab\xe4\xe9\x19\x1f\x01\x00\x12\xff\x90\x8f\x62\x8e\xeb\x0b\x62\xab\x89\xfd\xe6\xfb\xfb\x72\xd4\x0f\x27\x74\x99\xcd\x06\x95\xb2\xc4\xbe\xbb\x2d\x2d\x8d\xc8\x65\x91\xa3\xf1\xaf\xcd\xb9\x99\x79\x51\x9a\xb8\x1b\xc2\x09\x3f\x77\xf8\x1d\xbe\x3a\xf2\xbb\x85\xcf\xaf\x00\x00\x00\xff\xff\x00\x5c\x95\xe3\x21\x01\x00\x00" +var _idtablestakingScriptsGet_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x4f\x4b\xc3\x40\x10\xc5\xef\xfb\x29\x1e\x3d\x25\x97\xd6\xb3\x20\x25\x9a\x08\x81\xe2\xc1\xec\x45\xc4\xc3\x36\xd9\xa6\x43\x37\xbb\xcb\xec\xac\x7f\x10\xbf\xbb\xa4\x11\x51\xe8\x9c\xe7\xf7\xde\xef\xd1\x14\x03\x0b\xee\x5d\x78\x6b\x6b\x6d\xf6\xce\x76\x62\x4e\xe4\x47\x1c\x38\x4c\xb8\x7a\x6f\xeb\xe6\x41\xb7\xfa\x49\x57\xb7\xbb\xa6\xaa\xeb\xc7\xa6\xeb\x94\xda\x6c\xa0\x8f\x94\x90\x7a\xa6\x28\x60\x2b\x99\x7d\x82\x1c\x2d\xfa\xcc\x6c\xbd\xc0\xc4\xc8\xe1\xd5\x0e\x70\x94\x44\xa9\x98\xf7\x38\x64\x8f\xc9\x90\x2f\xca\x6b\x3c\x77\xc2\xe4\xc7\x17\x7c\x2a\x00\x70\xf6\x97\xd8\x51\x12\xdc\x5c\x50\x5a\x8f\x56\xaa\x9f\xd4\xf9\xa9\x28\xcf\xe8\x7c\xdb\x2d\xa2\xf1\xd4\x17\xab\xbb\x90\xdd\x00\x1f\x66\x29\x33\xfc\xb7\x58\x36\x25\x09\x6c\x46\xbb\x2a\xd5\x19\x5f\xdc\xff\x96\xaf\x4f\xf6\x23\xa9\xaf\xef\x00\x00\x00\xff\xff\x84\xeb\x78\x1d\x1b\x01\x00\x00" func idtablestakingScriptsGet_approved_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -3119,11 +3080,11 @@ func idtablestakingScriptsGet_approved_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_approved_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0xac, 0xf9, 0x96, 0xc5, 0x4, 0x35, 0x8f, 0xd3, 0xaf, 0xca, 0x92, 0x87, 0x91, 0x68, 0xe0, 0xfd, 0xe2, 0xfc, 0x80, 0x6b, 0x22, 0xa5, 0x41, 0x2, 0x1c, 0xa8, 0xb1, 0x19, 0x20, 0xe7, 0x1a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0x8, 0x8e, 0xe3, 0x26, 0xd9, 0x3d, 0x53, 0xe3, 0x54, 0x6, 0xee, 0x19, 0xa8, 0x6, 0xfc, 0xdd, 0xee, 0x6, 0x9f, 0x37, 0x52, 0x4d, 0xe2, 0xf4, 0xd, 0x3d, 0xcc, 0x97, 0x6, 0xd3, 0x22}} return a, nil } -var _idtablestakingScriptsGet_candidate_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xc1\x4a\x03\x41\x0c\x06\xe0\xfb\x3c\xc5\xcf\x9e\x76\x2f\xf6\x22\x22\xbd\xf4\x50\x11\x0a\xe2\xc5\xfa\x00\x71\x26\xdb\x0d\xce\x24\xcb\x4c\x16\x0f\xa5\xef\x2e\x6d\x15\x04\x9b\x4b\x20\xe1\xe7\xff\xa4\xcc\x56\x1d\xcf\xd9\xbe\x76\x4f\x7b\xfa\xc8\xfc\xe6\xf4\x29\x7a\xc0\x58\xad\xa0\xfb\xff\xe8\x42\x58\xad\xb0\x9f\xa4\xa1\xc5\x2a\xb3\xa3\xb2\x2f\x55\x1b\x7c\x62\x64\x29\xe2\x0d\xa3\x55\x44\xd2\x24\x89\x9c\xa1\x96\xf8\x7a\x63\x8a\x13\xaa\x65\x0e\x14\x23\xb7\xd6\x53\xce\x03\xc6\x45\x51\x48\xb4\x1f\xd6\x38\xbe\xef\xd4\x1f\xd7\x38\xaf\x87\xfb\x13\x8e\x01\xc0\x4f\xc5\x0d\xe6\xdd\x81\x7d\xfb\x5b\xf4\x6a\x89\x5f\x2e\x80\x7e\xb8\xc4\xce\xb3\xd9\x60\x26\x95\xd8\x77\x5b\x5b\x72\x82\x9a\x23\x1b\xa5\x3f\xbe\x2b\xba\x1b\xc2\xe9\x3b\x00\x00\xff\xff\xa1\x29\xc8\x31\x0f\x01\x00\x00" +var _idtablestakingScriptsGet_candidate_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x8f\x9e\x92\x8b\xf5\x20\x22\xbd\x94\xda\x44\x08\x94\x1e\xcc\x7a\xf0\xb8\xcd\x4e\x9a\xc1\xcd\x4c\xd8\x4c\x50\x28\xfd\xef\xd2\x56\xc1\x83\x73\x19\x78\xf0\xde\xf7\xf1\x30\x6a\x32\xbc\x44\xfd\xac\x4b\xe7\x0f\x91\x1a\xf3\x1f\x2c\x47\x74\x49\x07\xdc\x7f\xd5\x65\xb5\x77\xb5\x7b\x77\x9b\xe7\x5d\xb5\x29\xcb\xd7\xaa\x69\xb2\x6c\xb9\x84\xeb\x79\xc2\xd4\x26\x1e\x0d\x89\x6c\x4e\x32\xc1\x7a\x42\xe4\x81\x6d\x42\xa7\x09\xad\x97\xc0\xc1\x1b\x41\x34\xd0\x2d\x23\xdf\xf6\x48\x1a\x29\x1b\xe7\x03\xba\x59\x30\x78\x96\xbc\x58\xe1\xf4\x56\x8b\x3d\xad\x70\x79\x8f\x0f\x67\x9c\x32\x00\x3f\xd3\xff\x08\xde\x1d\xc9\xb6\xbf\x80\xbd\x06\xda\x5d\xc1\x79\x71\xad\x5d\x6e\xbd\xc6\xe8\x85\xdb\x7c\xb1\xd5\x39\x06\x88\x1a\xa2\xfa\xf0\xc7\xeb\x26\xbb\x28\xb2\xf3\x77\x00\x00\x00\xff\xff\x2c\xee\x71\x69\x09\x01\x00\x00" func idtablestakingScriptsGet_candidate_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -3139,11 +3100,11 @@ func idtablestakingScriptsGet_candidate_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_candidate_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x60, 0xa1, 0xa5, 0x45, 0xe1, 0x6a, 0x41, 0x4d, 0x33, 0x8d, 0xe9, 0x2a, 0x3f, 0x31, 0x86, 0xb6, 0x91, 0x74, 0xd1, 0xd9, 0x51, 0xe2, 0x22, 0x15, 0xb2, 0xcf, 0x5d, 0x6a, 0x5c, 0x5c, 0xd3, 0xa5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc5, 0x8e, 0x7c, 0xef, 0x38, 0x37, 0x1b, 0xdd, 0x51, 0x69, 0xdd, 0xbd, 0xa6, 0xd2, 0x82, 0x8c, 0x73, 0x2f, 0x74, 0xc9, 0x67, 0x7e, 0x6, 0x19, 0xaf, 0xcf, 0x3d, 0xec, 0xf7, 0x50, 0x49, 0x82}} return a, nil } -var _idtablestakingScriptsGet_candidate_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4e\xc4\x30\x10\x04\xd0\xde\x5f\x31\xba\x2a\x69\xb8\x16\xa5\x04\x84\x74\x12\xa2\xb9\xe3\x03\x8c\xb3\x49\x56\xd8\xbb\x96\x77\x23\x8a\x28\xff\x8e\x82\xa0\x82\x7a\x66\xf4\x86\x4b\xd5\xe6\x78\xce\xfa\x79\x79\xba\xc5\xf7\x4c\x57\x8f\x1f\x2c\x33\xa6\xa6\x05\xa7\xbf\xc1\x29\x84\xf3\x19\xb7\x85\x0d\x96\x1a\x57\x47\x23\x5f\x9b\x18\x7c\x21\x64\x36\x87\x4e\x48\x51\x46\x1e\xa3\x13\x44\x47\xb2\x63\x32\x69\xfb\xae\xac\x35\x69\x39\x04\xaa\x9a\x96\x10\x53\x22\xb3\x2e\xe6\xdc\x63\x5a\x05\x25\xb2\x74\xfd\x80\xed\xed\x22\x7e\x3f\x60\xbb\x7a\x63\x99\x07\x3c\xa8\xe6\x7d\xc7\x16\x00\xfc\x98\xff\xfc\xbe\x9b\xc9\x1f\x7f\xf1\x57\x1d\xe9\x85\xcd\xbb\x3e\xec\x5f\x01\x00\x00\xff\xff\x7b\x95\x26\x62\xea\x00\x00\x00" +var _idtablestakingScriptsGet_candidate_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\x31\x4f\x84\x40\x10\xc5\xf1\x7e\x3f\xc5\x2b\xef\x1a\xcf\xd2\xd0\xdd\x09\x26\x24\x97\x2b\x64\x2d\x2c\xf7\x60\x80\x89\x30\xb3\xd9\x1d\xa2\x09\xe1\xbb\x1b\x8c\x76\xf6\xef\xe5\xf7\xe7\x39\x6a\x32\xbc\x4c\xfa\x59\x97\x3e\xdc\x27\x6a\x2c\x7c\xb0\x0c\xe8\x93\xce\x78\xfc\xaa\xcb\xea\xe6\x6b\xff\xee\xcf\x97\x6b\x75\x2e\xcb\xd7\xaa\x69\x9c\x3b\x9d\xe0\x47\xce\xc8\x6d\xe2\x68\x48\x64\x4b\x92\x0c\x1b\x09\x13\x67\x83\xf6\x68\x83\x74\xdc\x05\x23\x88\x76\x94\xf7\x4b\xaf\xe9\x67\xb2\xc4\x56\xe7\xdd\xa0\xa8\xed\xe8\xe2\x72\x47\xbf\x08\xe6\xc0\x72\x38\x16\x58\xdf\x6a\xb1\xa7\x02\x6b\x63\x89\x65\x28\x70\x51\x9d\xb6\x0d\xab\x03\xf0\x6b\xfd\x53\xfc\x30\x90\x3d\xff\xa1\x37\xed\xe8\xca\xd9\x0e\x47\xb7\x7d\x07\x00\x00\xff\xff\x5d\x0f\xc6\x78\xe4\x00\x00\x00" func idtablestakingScriptsGet_candidate_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -3159,11 +3120,11 @@ func idtablestakingScriptsGet_candidate_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_candidate_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x84, 0x34, 0x2c, 0xe4, 0x3e, 0x22, 0x7b, 0x2, 0x58, 0xff, 0x6d, 0xe6, 0x39, 0x29, 0x45, 0xd4, 0x5e, 0x50, 0x9d, 0xec, 0xf7, 0x45, 0xd8, 0xa8, 0x2f, 0x14, 0x2e, 0x64, 0x10, 0x35, 0x81, 0xf1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x69, 0xd6, 0x82, 0x37, 0x73, 0x6d, 0xfe, 0xcb, 0x3d, 0x37, 0x2e, 0xd4, 0x43, 0x65, 0x62, 0xfd, 0x2c, 0x85, 0xea, 0x4e, 0x93, 0x70, 0xa4, 0x6a, 0x4c, 0xd2, 0xd9, 0xf2, 0xea, 0xa3, 0xb2, 0xff}} return a, nil } -var _idtablestakingScriptsGet_current_tableCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xaa\x83\x40\x10\x45\xfb\xfd\x8a\x8b\x95\x36\xcf\xfe\xd5\xf2\xc0\xe6\x35\xda\x85\x14\x9b\x75\x5c\x87\xac\xb3\x32\x3b\x12\x42\xc8\xbf\x07\x21\x5d\xd2\x5d\xb8\x9c\xc3\xe1\x75\xcb\x6a\xf8\x4b\xf9\xd6\x77\xa3\xbf\x24\x1a\xcc\x5f\x59\x22\x66\xcd\x2b\xaa\xcf\xa3\x72\xae\x6d\x31\x2e\x5c\x50\x82\xf2\x66\x50\xb2\x5d\xa5\xc0\x16\x42\xd8\x55\x49\x0c\x3c\x91\x18\xdb\x1d\x76\xa0\x48\x24\xd1\x16\xe7\x7c\x08\x54\x4a\xed\x53\x6a\x30\xef\x82\xd5\xb3\xd4\xcd\x2f\x4e\x83\x29\x4b\x3c\xe3\xe1\x00\xbc\x8d\x5f\xaa\x7e\x22\xd9\x31\x69\xfa\xcf\x13\xf5\x5d\xa9\x1b\xf7\x7c\x05\x00\x00\xff\xff\x1e\x08\x43\x94\xc4\x00\x00\x00" +var _idtablestakingScriptsGet_current_tableCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4a\xc4\x40\x10\x87\xf1\x7e\x9f\xe2\x5f\xde\x35\x9e\xb5\xdd\xc9\x46\x58\x90\x2b\xdc\x6d\x44\x2c\x72\xc9\x64\x33\x98\xcc\x86\xd9\x59\x54\xc4\x77\x97\x80\xe5\x75\x5f\xf5\xe3\xe3\x75\x2b\x6a\x78\x5a\xca\x67\xf0\xa9\xbf\x2e\x14\xad\xff\x60\xc9\x98\xb4\xac\xb8\xff\x0a\xbe\xbb\xa4\x90\x5e\xd3\xf9\xf1\xb9\x3b\x7b\xff\xd2\xc5\xe8\xdc\xe9\x84\x34\x73\x45\x1d\x94\x37\x83\x92\x35\x95\x0a\x9b\x09\x43\x53\x25\x31\xf0\x48\x62\x6c\xdf\xb0\x5d\xc5\x42\x92\x6d\x76\x6e\x6b\x57\x4c\x4d\xb0\xf6\x2c\x87\xe3\x03\xde\xa2\x29\x4b\x7e\xc7\x8f\x03\xf0\x2f\xdd\xf8\xb9\xcb\x64\x7b\xd2\x78\x29\x23\x05\x5f\x0f\x47\xf7\xfb\x17\x00\x00\xff\xff\x4a\xf4\xfe\xa9\xbe\x00\x00\x00" func idtablestakingScriptsGet_current_tableCdcBytes() ([]byte, error) { return bindataRead( @@ -3179,11 +3140,11 @@ func idtablestakingScriptsGet_current_tableCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_current_table.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x2a, 0x6b, 0x96, 0x8d, 0x9a, 0x6c, 0xa5, 0xb8, 0x89, 0xda, 0x4d, 0x43, 0x19, 0x77, 0x6c, 0xda, 0x84, 0x85, 0xfc, 0xfa, 0xdc, 0x7f, 0x3a, 0xa7, 0x27, 0x23, 0x9a, 0x14, 0x5, 0xb7, 0x1e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x58, 0x1e, 0x72, 0x94, 0xe0, 0x76, 0x87, 0xd9, 0x75, 0x4c, 0x72, 0xa3, 0xa1, 0x74, 0x9e, 0xa3, 0x3e, 0x29, 0x8a, 0xe4, 0xeb, 0x5e, 0x72, 0x24, 0x51, 0x5b, 0x77, 0xb4, 0xfb, 0xda, 0xf0, 0x72}} return a, nil } -var _idtablestakingScriptsGet_cut_percentageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x8b\x83\x40\x10\x46\xfb\xfd\x15\x1f\x56\xda\x9c\xcd\x71\xc5\xb5\x77\x08\xe9\x42\x62\x7e\xc0\xb8\x8e\xba\xb8\xce\xca\xce\x88\x81\x90\xff\x1e\x02\xe9\x92\xf6\x3d\x78\xbc\xb0\xac\x29\x1b\x9a\x98\xf6\xc3\x7f\x4b\x5d\xe4\xb3\xd1\x1c\x64\xc4\x90\xd3\x82\xe2\x5d\x14\xce\xd5\x35\xda\x29\x28\xd4\xe7\xb0\x1a\x32\xdb\x96\x45\x61\x13\xa3\xa3\x48\xe2\x19\x69\x80\x1a\xcd\xdc\xc3\xd2\xcc\xa2\x4f\x40\x90\xd4\xb3\x73\xe4\x3d\xab\x96\x14\x63\x85\x61\x13\x2c\x14\xa4\xac\x7e\x71\x69\xc2\xf5\xe7\x1b\x37\x07\xe0\x15\xfd\x30\xf6\x35\xb2\x9d\x78\xa7\xdc\xff\x6d\x76\xe4\xec\x59\x8c\x46\x2e\x2b\x77\x7f\x04\x00\x00\xff\xff\x65\xa1\x14\x25\xcd\x00\x00\x00" +var _idtablestakingScriptsGet_cut_percentageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4e\x85\x30\x14\x87\xf1\xbd\x4f\xf1\x1f\xef\x5d\xbc\x0e\xc6\xc1\x0d\x2d\x24\x24\xc6\x18\xa8\x83\xe3\x01\x0e\xd0\x00\xa7\xa4\x3d\x0d\x24\xc6\x77\x37\x26\x8e\xae\xdf\xf0\xe5\xe7\xb7\x3d\x44\x45\xb5\x86\xa3\xb6\x8e\xba\x95\x5b\xa5\xc5\xcb\x84\x31\x86\x0d\xf7\x67\x6d\xcb\x37\x57\xbb\x4f\x57\x3c\xbf\x96\x85\xb5\x4d\xd9\xb6\xc6\xdc\x6e\x70\xb3\x4f\x48\x7d\xf4\xbb\x22\xb2\xe6\x28\x09\x3a\x33\x3a\x5a\x49\x7a\x46\x18\x91\x94\x16\x1e\xa0\x61\x61\x49\xbf\x81\x20\x61\x60\x63\xf6\xdc\x61\xcc\x82\x8d\xbc\x5c\xae\x4f\xf8\xa8\xfc\xf9\xf8\x80\x2f\x03\xe0\x6f\xf6\x0f\xe9\x6e\x62\x6d\xf8\xa0\x38\xbc\x64\x7d\xe7\xd8\xb3\x28\x4d\x7c\xb9\x9a\xef\x9f\x00\x00\x00\xff\xff\x28\x6a\xf6\x9f\xc7\x00\x00\x00" func idtablestakingScriptsGet_cut_percentageCdcBytes() ([]byte, error) { return bindataRead( @@ -3199,11 +3160,11 @@ func idtablestakingScriptsGet_cut_percentageCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_cut_percentage.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0xe2, 0xb8, 0x9, 0x30, 0x55, 0xde, 0x80, 0x22, 0x1d, 0xce, 0xcd, 0x75, 0x1c, 0x49, 0x6c, 0xc0, 0xf4, 0x71, 0xba, 0x1a, 0x1f, 0x4, 0x99, 0x53, 0xe6, 0x65, 0xc4, 0xff, 0x2b, 0xe7, 0x62}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa3, 0x9, 0x30, 0xa9, 0xd4, 0x7, 0x19, 0x3d, 0x43, 0x39, 0x32, 0xda, 0x6f, 0xaa, 0xf3, 0xcb, 0xa5, 0x4d, 0x97, 0x58, 0x23, 0x1b, 0xec, 0x30, 0x61, 0x49, 0x8e, 0x9, 0x33, 0x2a, 0x4d, 0x92}} return a, nil } -var _idtablestakingScriptsGet_del_stake_requirementsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xbd\x8a\xc2\x40\x14\x46\xfb\x79\x8a\x8f\x54\x49\xb3\x69\x96\x2d\xb6\x0e\x01\x0b\x1b\x8d\x0f\x30\xc6\x9b\xe4\x92\xf9\x89\x77\xee\xa0\x20\xbe\xbb\x88\x8a\x85\xd6\x07\xce\x39\xec\x97\x28\x8a\xd6\xc5\xd3\xaa\xe9\xec\xde\xd1\x56\xed\xcc\x61\xc4\x20\xd1\xa3\xf8\x04\x85\x31\x75\x8d\x6e\xe2\x84\xd4\x0b\x2f\x0a\x21\xcd\x12\x12\x74\x22\x78\x0e\xec\xb3\x47\x52\x3b\x13\x84\x8e\x99\x85\x3c\x05\xc5\x10\x05\x07\x72\x34\x5a\x8d\x92\x8c\xb1\x7d\x4f\x29\x95\xd6\xb9\x0a\x43\x0e\xf0\x96\x43\x59\xfd\x63\xd7\xf2\xf9\xef\x17\x17\x03\xe0\xa9\xfe\xb2\xf7\x33\x92\x36\x2f\xdb\xfa\x11\xbd\x23\xda\xbc\x93\x65\x65\xae\xb7\x00\x00\x00\xff\xff\x64\x7c\x1f\x80\xe0\x00\x00\x00" +var _idtablestakingScriptsGet_del_stake_requirementsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4a\xc6\x30\x14\xc5\xf1\x3d\x4f\x71\xc6\xef\x5b\xac\x83\x38\xb8\x55\xd2\x42\x41\x1d\xda\x38\x38\xa6\x7a\xdb\x5e\xda\x24\xf5\xe6\x06\x0b\xe2\xbb\x8b\xa8\xb8\x38\x1f\xf8\xff\x0e\x87\x3d\x89\xa2\xdd\xd2\x5b\x67\x9d\x1f\x37\x1a\xd4\xaf\x1c\x67\x4c\x92\x02\x2e\x8f\xce\x36\x0f\xae\x73\x4f\xae\xbe\xbd\x6b\x6a\x6b\xfb\x66\x18\x8c\xa9\x2a\xb8\x85\x33\xf2\xb3\xf0\xae\x10\xd2\x22\x31\x43\x17\x42\xe0\xc8\xa1\x04\x64\xf5\x2b\x41\xe8\xb5\xb0\x50\xa0\xa8\x98\x92\xe0\x85\x36\x9a\xbd\x26\xc9\xc6\xec\x65\xc4\x54\x22\x82\xe7\x78\x3a\xdf\xe0\xb1\xe5\xe3\xfa\x0a\xef\x06\xc0\x4f\xf2\x9f\x63\x17\x33\xa9\xfd\xad\xdc\x7f\x63\x5f\x13\xf5\x7f\xd4\xe9\x6c\x3e\x3e\x03\x00\x00\xff\xff\xc8\x81\xc5\x13\xda\x00\x00\x00" func idtablestakingScriptsGet_del_stake_requirementsCdcBytes() ([]byte, error) { return bindataRead( @@ -3219,11 +3180,11 @@ func idtablestakingScriptsGet_del_stake_requirementsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_del_stake_requirements.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1a, 0x91, 0xe2, 0x54, 0xf9, 0x96, 0x3e, 0xcc, 0xa2, 0xe6, 0x3c, 0x46, 0x6b, 0xe2, 0xf0, 0x7e, 0xa2, 0x0, 0xec, 0xf0, 0xd0, 0xa4, 0x98, 0xa9, 0x64, 0x92, 0xc, 0xd0, 0xe4, 0x47, 0x5f, 0x75}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa3, 0xcb, 0xbc, 0x3f, 0x87, 0x66, 0x14, 0x66, 0x46, 0x5b, 0xef, 0xa7, 0x88, 0xb8, 0xb6, 0xbf, 0x9a, 0xbe, 0xfd, 0xbd, 0x7d, 0x8f, 0x1c, 0x9, 0xdd, 0x15, 0xb5, 0xca, 0xc4, 0x1, 0x76, 0xab}} return a, nil } -var _idtablestakingScriptsGet_delegators_below_minCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x55\x4d\x8b\xdb\x30\x10\xbd\xfb\x57\x3c\xf6\xb0\xb5\xd9\xe2\x4d\xa1\xdb\x83\x69\x7a\x28\x61\x21\xd0\x8f\x43\x52\x7a\x58\x96\x45\x89\xe5\x44\x44\x96\x82\x24\x6f\x4a\x97\xfc\xf7\x22\x7f\xc4\x52\xac\x7c\x54\x97\x10\xcd\x9b\x37\x6f\x66\x34\x63\x56\x6e\xa5\x32\x78\xe4\x72\x37\x9d\xcc\xc9\x82\xd3\x99\x21\x1b\x26\x56\x28\x94\x2c\x71\x33\x34\xdc\x44\xd1\xfd\x3d\xe6\x6b\xa6\xa1\x97\x8a\x6d\x0d\x0a\x26\x72\x0d\xc2\x39\x64\x01\x02\x21\x73\xfa\x4e\x23\xa7\x9c\xae\x88\x91\x4a\x63\xb7\x96\x20\x8a\x42\x1b\xb2\xa1\x39\xc8\x42\xbe\x52\xfc\xa5\x4a\x5a\xa6\x45\x65\xb0\xa0\x5c\xee\x60\xd6\x14\x25\x13\xac\xac\x4a\xcb\xf4\x30\xc2\xe3\xb7\x9f\xbf\x41\x44\x0e\x45\x4d\xa5\x84\x06\x13\x85\x54\x25\x31\x4c\x0a\x4b\x53\x19\xeb\x54\x46\x11\x59\x2e\xa9\xd6\x31\xe1\x3c\x81\x36\xaa\x5a\x1a\x4c\xba\xf8\x5f\x2d\xf9\x77\x26\xa6\xa2\x90\x78\x8b\x22\x00\x70\xf1\xaf\x44\xc1\x48\x43\xf8\xac\x96\x97\xe1\xd7\x23\xfb\xf3\xe9\xe3\x69\x5c\x47\x68\x85\x1e\xf9\x04\x9d\x44\x55\x1e\xc4\xe8\x0c\x53\x61\x2e\xc3\xba\x18\x0d\x3c\x88\x3f\x14\xd8\x26\xd6\xe3\x9f\x86\x2d\x4b\x27\x2e\xf4\xb9\xa1\x63\x82\x99\x78\x28\x2d\xc1\x5b\x6d\xb6\x47\x53\x5e\xa4\x4e\x69\x30\xc6\x28\x1d\x05\xcc\xc3\x8a\x84\xa0\x5e\x30\x8c\xfd\x84\xcf\x40\x3b\x76\xcb\xe9\xc3\x82\x25\xc0\x18\x4f\xcf\x35\x6e\x3f\x2c\x5c\x51\x09\x90\x3c\x9f\xf7\x49\xc5\x2f\xcd\xbb\xec\x7a\x78\xa1\x00\x83\xab\xbb\xc6\xfd\x42\xc0\x4e\xdc\xff\xc4\x0c\x56\xf5\xac\xf9\x3a\x2d\x83\xc9\x88\x07\xf1\x4f\xd5\xff\x8c\xf1\x0e\x1f\xae\x8d\x6b\xbb\x15\xbf\xd4\xc3\x9c\x05\x56\x8f\xff\x5c\x07\xda\x82\x4d\x4f\xc9\x76\x4b\x45\x1e\x5b\xce\xa4\xd5\xb1\xf7\xf7\x82\x55\x51\x12\x26\x62\xbb\xa0\xa6\x93\x0c\x33\xa3\x98\x58\x25\xd9\xc9\x55\x61\x69\x38\x35\xf5\x46\xab\xaf\xc6\x21\xb5\x3f\x5a\xeb\x81\xb7\xf9\x4d\xa2\x83\x7f\xee\xbd\xfa\x16\xde\xe7\xa1\x7b\xe4\xc2\xe9\x29\xc6\x61\x61\xc7\x43\xdb\xf3\xa4\x9c\x8a\x95\x59\xb7\x91\x0b\xe9\xee\x88\x09\x98\x70\x85\xf4\x45\x6d\x15\x9e\x4e\xd0\xef\x9b\x9f\xe5\x7b\x37\x44\xe6\xfe\x69\x55\xd8\xe3\x66\x95\x1e\x4d\x5f\x1b\x39\x35\x72\x43\x85\x6e\x2e\x1d\x57\x56\x20\x84\xc0\x67\x3c\x8c\xd2\x11\x6e\x6f\xc3\xe6\x2f\x76\xfb\x38\x39\x86\x54\xf8\x69\xb5\x34\xc9\x75\x2e\xfd\xe4\x9c\xc5\x1f\x4d\x7d\x38\xd7\xce\x79\xef\x8e\x4f\xf3\xc1\xf3\x08\xa3\x7d\xf4\x2f\x00\x00\xff\xff\xb6\xa7\x8d\x2b\xae\x07\x00\x00" +var _idtablestakingScriptsGet_delegators_below_minCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x55\x5f\x6b\xdb\x3e\x14\x7d\xf7\xa7\x38\x4f\xfd\x39\xf4\x87\xeb\xc1\xba\x07\xb3\x0c\x5a\xdc\x82\xa1\xeb\x60\xf1\x18\xa3\x94\x22\xd7\x72\x22\x62\x4b\x41\x92\x9b\xb2\x92\xef\x3e\xe4\x3f\xb1\x15\x2b\xe9\xe6\x97\x52\xdd\x73\xcf\x39\xf7\x5e\x5d\x85\x55\x1b\x21\x35\x6e\x4b\xb1\x4d\xe2\x94\x64\x25\x5d\x68\xb2\x66\x7c\x89\x42\x8a\x0a\xe1\x6b\x12\xdf\xdc\xa7\x49\xfa\x2b\xbd\xba\xbe\xbb\xb9\x8a\xe3\xef\x37\x8b\x85\xe7\x5d\x5c\x20\x5d\x31\x05\xf5\x2c\xd9\x46\xa3\x60\x3c\x57\x20\x65\x09\x51\x80\x80\x8b\x9c\xfe\xa7\x90\xd3\x92\x2e\x89\x16\x52\x61\xbb\x12\x20\x92\x42\x69\xb2\xa6\x39\x48\x26\x5e\x28\x7e\x53\x29\x0c\x53\x56\x6b\x64\xb4\x14\x5b\xe8\x15\x45\xc5\x38\xab\xea\xca\x30\x5d\x86\xb8\xbd\xfb\xf6\x13\x84\xe7\x90\x54\xd7\x92\x2b\x30\x5e\x08\x59\x11\xcd\x04\x37\x34\xb5\x36\x49\x95\xe7\x6d\xea\x0c\x4a\xcb\xfa\x59\x23\xee\x75\xaf\x0d\xe9\x57\xc6\x13\x5e\x08\xbc\x79\x1e\x00\x18\xdc\x0b\x91\xd0\x42\x93\x72\xd1\xd8\x89\xf0\xe3\x96\xbd\x7e\xfa\x38\x8d\xf7\x04\xc6\xd0\x01\xd6\x02\xf3\xba\xda\x8b\xaa\x08\x09\xd7\xc7\xc3\x3d\x67\x0b\xb3\x70\xfb\x86\x19\xc3\x03\xee\x61\x3a\x9d\x20\x1e\x43\x1f\x5b\x1a\xc6\x99\xf6\xa7\x56\x66\x78\x6b\xc2\xe6\x53\xb4\x2c\x82\x51\xe9\x98\x23\x0c\x42\x47\x78\x5a\xb9\x0b\x6a\x89\x61\x6e\x17\x7a\x02\xda\xb3\x1b\x4e\x1b\xe6\x6c\x01\xe6\x78\x78\x6c\x70\xbb\xa1\x61\x45\xcd\x41\xf2\x3c\x1d\x8a\xf1\x9f\xda\xfb\xd5\xcf\xe8\x9d\xc2\x27\x47\xe7\x6d\xfa\x11\xa1\xde\xcc\xbf\x68\x39\xbb\x78\x32\x7c\xda\xc3\xe4\x66\xfb\x13\xdd\x63\x7d\x3e\x11\x3c\xc7\x87\xf7\xf4\xcc\x34\xfc\xa7\x66\xf9\x22\xc7\x63\x61\x5f\xc7\x89\x27\xe7\x50\x03\xb2\xd9\x50\x9e\xfb\x86\x73\xd6\xe9\xef\xda\x3d\x36\xea\x15\x61\xdc\x37\x0f\x49\x12\x47\x58\x68\xc9\xf8\x72\x16\x1d\x5d\x6d\x93\x5e\x52\xdd\xbc\x3c\xcd\xd1\xdc\xe5\xf2\xbe\x8b\xee\x79\xdb\xbf\x33\x6f\x9f\x9f\x5b\xb7\xb9\x83\x0f\xfe\xd5\x80\xcc\x46\xb3\xc3\xdc\x6d\xec\x70\x19\x07\x9e\xa0\xa4\x7c\xa9\x57\x9d\x72\x21\xc6\xbb\x1f\x83\xf1\xb1\x91\xa1\x99\x9d\xc3\xe3\x05\xda\xf3\xb2\xab\xfc\x7f\x2c\x11\x8d\xff\xe9\x5c\x98\x6f\x5c\x55\x70\xb0\x5d\x9d\x72\xa0\xc5\x9a\x72\xd5\x1e\x8e\x52\x59\x01\x17\x02\x9f\x71\x19\x06\x21\xce\xce\xdc\xe1\x2f\xe6\x55\x19\xd5\xe8\x72\x61\x97\xd5\xd1\xcc\xfe\x2e\x65\xd8\x94\x93\xf8\x83\xed\x76\xd7\xda\x27\xef\xc6\xeb\xd2\xfe\x30\x59\x84\xde\xce\xfb\x13\x00\x00\xff\xff\xfd\x6d\x7d\x7d\x58\x07\x00\x00" func idtablestakingScriptsGet_delegators_below_minCdcBytes() ([]byte, error) { return bindataRead( @@ -3239,11 +3200,11 @@ func idtablestakingScriptsGet_delegators_below_minCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_delegators_below_min.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x25, 0x96, 0x53, 0x67, 0x6, 0x66, 0xfa, 0x53, 0xbc, 0xa1, 0x1d, 0x59, 0xf, 0x29, 0xe, 0x3a, 0x37, 0x82, 0x68, 0x33, 0x3e, 0xb1, 0x9e, 0xd9, 0xc5, 0x5d, 0xf5, 0x2b, 0xab, 0x83, 0x17, 0x5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc1, 0x3e, 0x51, 0x9d, 0xc6, 0x98, 0x72, 0xb, 0x31, 0x4f, 0x85, 0x6c, 0xe1, 0x1, 0x92, 0xec, 0x81, 0x38, 0x9b, 0x8a, 0x2f, 0xe3, 0xaf, 0xbc, 0x6a, 0xf9, 0x17, 0xd9, 0xca, 0x39, 0xc7, 0xb7}} return a, nil } -var _idtablestakingScriptsGet_node_committed_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6a\x03\x41\x0c\x45\xfb\x39\xc5\xc7\x95\xb7\xb1\x9b\x90\xc2\x90\x2a\xc6\xb0\x4d\x1a\x3b\x07\x90\x67\x35\xb6\xd8\x19\xc9\xcc\xc8\x24\x10\x72\xf7\xe0\xdd\xb0\x4d\x52\x09\xf4\xf8\x8f\x27\xe5\x66\xd5\x71\xc8\xf6\xd1\xef\x4f\x74\xce\x7c\x74\x1a\x45\x2f\x48\xd5\x0a\x56\x7f\xc1\x2a\x84\xed\x16\xa7\xab\x34\xb4\x58\xe5\xe6\xa8\xec\xf7\xaa\x0d\x7e\x65\x9c\x29\x93\x46\x86\x25\x34\xa7\x91\x07\xb8\x8d\xac\xed\xf1\x20\xa8\x0d\x1c\x02\xc5\xc8\xad\xad\x29\xe7\x0e\xe9\xae\x28\x24\xba\x7e\xa0\x7e\xbf\xc3\xd1\xab\xe8\xa5\xdb\xe1\xfd\x20\x9f\xcf\x4f\xf8\x0a\x00\x90\xd9\xa7\x71\xaf\xc9\xf0\xf2\x4f\xee\xe6\xed\x97\x2e\xa2\xf9\x76\xd3\x7c\x2e\x5c\x0c\x9b\xb9\xe9\xd5\x4a\x11\x77\x1e\xc2\xf7\x4f\x00\x00\x00\xff\xff\x76\x78\x67\x79\x07\x01\x00\x00" +var _idtablestakingScriptsGet_node_committed_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\xc3\x30\x10\x46\x77\xfd\x8a\x6f\x6c\x96\xa4\x43\xe9\x10\xe8\x90\x56\x0e\x08\x4a\x86\x5a\x1d\x3a\xca\xf1\x39\x11\xb6\xee\x8c\x74\xa6\x81\xd2\xff\x5e\x12\x17\x4f\x99\x0e\xbe\xe3\x3d\x5e\x4c\xa3\x64\xc5\x7e\x90\x6f\x67\x7d\x68\x06\xaa\x35\xf4\x91\x4f\xe8\xb2\x24\x3c\x5e\x9c\xad\x0e\xde\xf9\x2f\xbf\x7b\x7d\xaf\x76\xd6\x7e\x54\x75\x6d\xcc\x66\x03\x7f\x8e\x05\xe5\x98\xe3\xa8\xc8\xa4\x53\xe6\x02\x3d\x13\x9a\x30\x04\x3e\x12\xa4\x43\xd1\xd0\x53\x0b\x95\x9e\xb8\x5c\x87\x00\x96\x96\x8c\x19\xa7\x06\xdd\xc4\x48\x21\xf2\xc3\x75\x72\x76\x8b\x5a\x73\xe4\xd3\x6a\x8b\xcf\x7d\xbc\x3c\x3f\xe1\xc7\x00\xc0\x40\x7a\x83\x1c\x77\x82\x97\x3b\xa1\xeb\xc3\xff\x77\x11\xcd\x77\x75\xc3\xe7\xb2\xc5\xb0\x9e\x5b\xde\x24\xa5\xa8\x4a\xad\xf9\xfd\x0b\x00\x00\xff\xff\xd7\xe0\x3c\x12\x01\x01\x00\x00" func idtablestakingScriptsGet_node_committed_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3259,11 +3220,11 @@ func idtablestakingScriptsGet_node_committed_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_committed_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0xb9, 0x2, 0x2f, 0xff, 0xa2, 0x25, 0x20, 0x27, 0xda, 0xa3, 0xde, 0xa5, 0x91, 0xdb, 0x43, 0xb6, 0x80, 0x4c, 0x45, 0x3d, 0x15, 0x8c, 0xd4, 0x75, 0x99, 0x3, 0xed, 0x25, 0x51, 0x1b, 0x2c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x11, 0x65, 0x3, 0x17, 0x42, 0x11, 0x30, 0xfa, 0xb9, 0xb6, 0xd9, 0x8a, 0x5c, 0x41, 0xaa, 0xe7, 0xc4, 0xbb, 0x42, 0xf5, 0xe9, 0x39, 0x84, 0x75, 0x26, 0xa5, 0x46, 0x5e, 0xdc, 0xef, 0xfe}} return a, nil } -var _idtablestakingScriptsGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xce\xb1\x0e\x82\x40\x0c\xc6\xf1\xbd\x4f\xf1\x85\x09\x16\xd9\x99\x89\x09\x8b\x0b\xbc\x40\x81\x03\x1a\x8f\x1e\xb9\x2b\x71\x30\xbe\xbb\x21\x1a\x17\x8d\x53\x87\xfe\xf3\xcb\x27\xeb\x16\xa2\xe1\xec\xc3\xad\xa9\x3b\xee\xbd\x6b\x8d\xaf\xa2\x33\xa6\x18\x56\x64\xdf\x8f\x8c\xa8\x2c\xd1\x2d\x92\x90\x86\x28\x9b\x61\x76\x96\xc0\xde\xc3\x16\x07\xd1\x29\x80\xfb\xb0\x1b\x18\x1a\x46\x07\xd6\x11\xd1\xd9\x1e\x35\x41\x8c\x88\x87\xc1\xa5\x94\xb3\xf7\x05\xa6\x5d\xb1\xb2\x68\x7e\x94\x4d\x5d\xa1\xb5\x28\x3a\x17\xd5\x8f\x45\xa7\xcb\xd1\x1c\xfc\x9d\x00\xbc\xcd\x7f\xe1\x47\x7d\xdd\x82\x1e\xf4\x0c\x00\x00\xff\xff\x18\xd8\x93\xc8\xf0\x00\x00\x00" +var _idtablestakingScriptsGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xce\x31\x4b\xc5\x30\x14\xc5\xf1\x3d\x9f\xe2\x8c\x76\xb1\xce\xdd\x2a\xa9\x10\x90\x0e\x26\x8b\x63\x6a\xd3\xf6\x62\x7a\x53\x92\x1b\x14\xc4\xef\x2e\xc5\xc7\x9b\x1e\x6f\x3a\xcb\x9f\x1f\x87\xf6\x23\x65\xc1\x4b\x4c\x5f\x46\x3b\x3f\xc5\x60\xc5\x7f\x12\xaf\x58\x72\xda\xf1\xf4\x6d\xf4\x30\x3a\xe3\xde\x5d\xff\xfc\x3a\xf4\x5a\xbf\x0d\xd6\x2a\xd5\xb6\x70\x1b\x15\x94\x8f\x4c\x87\x60\x0d\x52\xe0\x63\x84\x6c\x01\xc4\x4b\x82\x9f\x52\x15\x78\x70\x9a\x03\x3c\xcf\xc8\x41\x6a\xe6\x02\x12\xa5\x8e\x3a\x61\xa9\x8c\xdd\x13\x3f\x9c\x85\xd1\x1d\xac\x64\xe2\xb5\xe9\x6e\x7c\x79\x1c\xcf\xe6\x64\x7f\x14\x80\x8b\x75\x2f\xbc\xaa\xff\xdb\xa8\x5f\xf5\x17\x00\x00\xff\xff\x58\x6d\x78\x81\xea\x00\x00\x00" func idtablestakingScriptsGet_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -3279,11 +3240,11 @@ func idtablestakingScriptsGet_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xba, 0x21, 0xcd, 0xb7, 0xd2, 0xc, 0x46, 0xd2, 0xc3, 0x2b, 0x49, 0xac, 0x98, 0xc7, 0x5a, 0x8, 0x8e, 0xaa, 0xfe, 0xdd, 0x85, 0xe6, 0x93, 0x64, 0x53, 0x63, 0xc5, 0x65, 0xe3, 0xef, 0xa3, 0x39}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x5c, 0x8d, 0xac, 0x80, 0x53, 0x4, 0xd4, 0x7f, 0x6, 0x1f, 0xa9, 0x73, 0x36, 0xfa, 0x49, 0x9b, 0x3, 0x97, 0x47, 0x1b, 0xb3, 0x5b, 0x19, 0x13, 0x20, 0x54, 0xd8, 0x98, 0xec, 0x23, 0x73}} return a, nil } -var _idtablestakingScriptsGet_node_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcd\x6a\xeb\x30\x10\x85\xf7\x7a\x8a\x83\x17\x17\x7b\xe3\xec\xc3\x6d\x43\x68\x28\x64\x53\x02\xcd\x0b\x8c\xe5\x71\x32\xad\xa2\x31\xd2\x98\x2c\x42\xde\xbd\x38\xa2\xb4\xd0\x1f\xaa\x95\x60\x46\xe7\x3b\xfa\xe4\x34\x6a\x32\x3c\x06\x3d\x6f\x37\x7b\xea\x02\x3f\x1b\xbd\x4a\x3c\x60\x48\x7a\x42\xf5\x75\x50\x39\xb7\x58\x60\x7f\x94\x8c\xec\x93\x8c\x86\x03\x5b\x06\x85\x00\x3b\x32\x24\x0e\x0a\xea\x74\x32\x10\xa2\xf6\x0c\x8a\x3d\x12\xdb\x94\x62\x86\x98\x73\xe4\x3d\xe7\x5c\x53\x08\x0d\x86\x29\xe2\x44\x12\x6b\xea\xfb\xc4\x39\x2f\xb1\x2e\x97\x66\xf9\x4d\xa7\xf6\x49\x7b\xde\xce\x80\x8b\x73\x00\x10\xd8\x6e\x8c\x79\xce\x09\x77\x73\x95\xb5\xf7\x3a\x45\x7b\x4f\x6c\x6e\x8b\xf3\x69\x3d\x8d\xd4\x49\x10\x13\xce\x6d\xa7\x29\xe9\xf9\xff\xbf\xcb\x0f\x98\x12\xb9\x9b\xba\x20\xfe\x7a\x5f\xff\x61\x6b\x47\x76\xfc\xa0\xad\x56\x18\x29\x8a\xaf\xab\x07\x9d\x42\x8f\xa8\x86\xc2\x44\xe2\x81\x13\x47\xcf\x30\x2d\x8a\x72\xe9\xaf\xdd\x0b\x7b\xab\x9a\xf2\xb9\xe2\xec\x37\x0d\xf5\xfc\x78\xbb\x59\x7e\x72\xd0\x4a\xdf\xb8\xab\x7b\x0b\x00\x00\xff\xff\x31\x19\xe4\x4c\xd7\x01\x00\x00" +var _idtablestakingScriptsGet_node_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\x31\x6b\xf3\x30\x10\x86\x77\xfd\x8a\x97\x0c\x1f\xf6\x92\x7c\x73\x68\x1b\xdc\x38\x05\x43\x09\xa1\xf1\xd2\x51\xb6\xcf\x89\x5a\x45\x67\xa4\x13\x69\x09\xf9\xef\xc5\x11\xa5\x19\xda\x52\x4d\x42\x7a\xef\xb9\xbb\xc7\x1c\x06\xf6\x82\x07\xcb\xc7\xaa\xac\x75\x63\x69\x2b\xfa\xd5\xb8\x1d\x7a\xcf\x07\xfc\x7f\xab\xca\xd5\xba\xae\xea\xe7\xba\xb8\x7f\x5c\x15\x65\xf9\xb4\xda\x6e\x95\x9a\xcd\x50\xef\x4d\x40\x68\xbd\x19\x04\x3b\x92\x00\x6d\x2d\x64\x4f\x30\xae\x67\xe8\x86\xa3\x40\xc3\x71\x47\xd0\xae\x83\x27\x89\xde\x05\x18\x51\x6a\x88\x0d\xfa\xe8\x70\xd0\xc6\x65\xba\xeb\x3c\x85\x30\x47\x91\x2e\xf9\xfc\x9b\x69\xa6\x6b\xee\xa8\x1a\xc1\x27\xa5\x00\xc0\x92\x5c\xd8\xe3\x3f\x79\xdc\x8e\x23\x14\x6d\xcb\xd1\xc9\x27\x31\xbf\x04\xc7\x33\xdd\x91\x2c\xf5\xa0\x1b\x63\x8d\xbc\xdf\xfc\x3b\xfd\xd0\x20\xc1\x36\xb1\xb1\xa6\x3d\xdf\x65\x7f\x48\x6d\xb4\xec\xaf\xfa\x34\xec\x3d\x1f\xb3\xaf\x97\xc5\x02\x83\x76\xa6\xcd\x26\x4b\x8e\xb6\x83\x63\x41\x0a\xc1\x53\x4f\x9e\x5c\x4b\x10\x4e\x9a\x42\xda\x85\x9b\x17\x6a\x65\x92\xa7\x45\x93\xb7\xdf\x94\x64\x63\x71\x55\xce\xaf\x7c\x4c\x4d\x97\xab\xb3\xfa\x08\x00\x00\xff\xff\xc3\x58\x0f\x27\xdd\x01\x00\x00" func idtablestakingScriptsGet_node_info_from_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -3299,11 +3260,11 @@ func idtablestakingScriptsGet_node_info_from_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_info_from_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0xd7, 0x3, 0x14, 0x4b, 0x6c, 0x3a, 0x16, 0x47, 0x8e, 0xdb, 0x75, 0x1b, 0x8, 0xe, 0x87, 0x83, 0x39, 0x57, 0x8d, 0x2b, 0x31, 0x72, 0x62, 0x9d, 0x31, 0xbc, 0x7e, 0xc6, 0xbe, 0x92, 0xeb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0x2b, 0xf2, 0x88, 0x52, 0x81, 0x46, 0x3d, 0x1, 0x1f, 0x5a, 0x48, 0x68, 0x9, 0xa3, 0x66, 0x4c, 0x24, 0xf3, 0x75, 0xdb, 0x88, 0x8a, 0x63, 0x6f, 0x11, 0x90, 0x24, 0xf0, 0x7a, 0xd8, 0xd0}} return a, nil } -var _idtablestakingScriptsGet_node_initial_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\x8a\x84\x30\x14\x45\xfb\x7c\xc5\xc5\x4a\x1b\x6d\x96\x2d\x84\xed\x64\x21\xcd\x36\xba\x6c\x9d\x75\x12\x7d\x4c\x7c\x91\xe4\x89\xc5\x30\xff\x3e\x8c\x8a\xcd\x4c\x75\x8b\xc3\x3d\x1c\x9a\xe6\x10\x05\xdf\x3e\xac\xba\xe9\xcc\xbf\xb7\xad\x98\x2b\xf1\x00\x17\xc3\x84\xec\x15\x64\x4a\x55\x15\xba\x91\x12\x52\x1f\x69\x16\x44\x2b\x4b\xe4\x04\x19\x2d\x88\x49\xc8\x78\xac\x96\x86\x51\x10\x1c\x0c\x38\x5c\xac\x52\xa6\xef\x6d\x4a\xb9\xf1\xbe\x80\x5b\x18\x93\x21\xce\x9f\x48\x37\x35\x5a\x89\xc4\x43\x51\xe3\x57\xb3\x7c\x7e\xe0\xa6\x00\xc0\x5b\xd9\xce\x9a\x5d\xc0\xd7\x9b\xc8\xf2\xe7\xa0\xa7\x68\xdf\x62\xbb\xef\x5d\xa7\xa1\x3c\xda\xfe\xb6\x34\x75\x7f\x04\x00\x00\xff\xff\x7c\x2d\x7f\xbb\xfb\x00\x00\x00" +var _idtablestakingScriptsGet_node_initial_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\x41\x4b\xc4\x30\x10\x05\xe0\x7b\x7e\xc5\x3b\xba\x97\x5d\x0f\xe2\x61\xc1\xc3\x4a\x2a\x04\xa4\x07\x13\x11\x8f\xa9\x26\xed\x60\x3a\x29\xe9\x94\x0a\xe2\x7f\x17\xdb\xd2\xd3\x9e\x06\xe6\xf1\x1e\x1f\xf5\x43\x2e\x82\xa7\x94\x67\xa3\x9d\x6f\x52\xb0\xe2\xbf\x88\x5b\xc4\x92\x7b\xdc\x7e\x1b\x5d\xd5\xce\xb8\x77\x77\x79\x7c\xae\x2e\x5a\xbf\x54\xd6\x2a\x75\x3a\xc1\x75\x34\x62\xfc\x28\x34\x08\x4a\x90\xa9\xf0\x08\xe9\x02\x88\x49\xc8\x27\xcc\x81\xda\x4e\x90\x23\x3c\x38\x7f\x06\xa5\x86\xa9\x41\x9c\x18\xbd\x27\xbe\xf9\x7f\x19\x7d\x86\x95\x42\xdc\x1e\xce\x78\x35\x2c\xf7\x77\xf8\x51\x00\x90\x82\x2c\x25\xc3\x31\xe3\xe1\x0a\xef\x58\x6f\xe9\x3e\xb4\xde\xc3\x52\x5f\x3d\xfb\xc2\x71\x33\xbd\x2d\x24\xf5\xfb\x17\x00\x00\xff\xff\x4a\xf0\xca\x23\xf5\x00\x00\x00" func idtablestakingScriptsGet_node_initial_weightCdcBytes() ([]byte, error) { return bindataRead( @@ -3319,11 +3280,11 @@ func idtablestakingScriptsGet_node_initial_weightCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_initial_weight.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0x31, 0x8c, 0x67, 0xbd, 0xca, 0x66, 0x6e, 0xa, 0xa, 0x1, 0x6b, 0x1f, 0xf3, 0x67, 0xaf, 0xa1, 0x6d, 0x22, 0xeb, 0xb9, 0xd0, 0xa7, 0x45, 0xd8, 0x2b, 0x75, 0xb2, 0x1d, 0xfe, 0xb1, 0x92}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf, 0xc0, 0x17, 0x67, 0x2c, 0xf0, 0xf8, 0xba, 0x42, 0x20, 0x9f, 0x54, 0x8b, 0x43, 0x3, 0x86, 0x8c, 0x2b, 0xbf, 0x6b, 0x3f, 0xa2, 0x5f, 0x47, 0xbc, 0x87, 0xa7, 0x24, 0x30, 0xc2, 0x95, 0xf5}} return a, nil } -var _idtablestakingScriptsGet_node_networking_addrCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\x6a\x84\x40\x10\x86\xfb\x7d\x8a\x1f\x2b\x6d\xb4\x0f\xa4\x08\x48\xc0\x26\x8d\xbe\xc0\x46\x67\x75\xc9\x3a\x2b\xb3\x23\x16\x21\xef\x1e\x4e\x3d\xaf\xb8\xab\x66\xe0\xe3\xff\xf8\xfc\xbc\x44\x51\x7c\x86\xb8\x35\x75\x67\xbf\x03\xb5\x6a\x7f\x3c\x8f\x70\x12\x67\x64\xcf\x20\x33\xa6\xaa\xd0\x4d\x3e\x21\xf5\xe2\x17\x85\x90\xae\xc2\x09\x3a\x11\x98\x74\x8b\xb2\x0b\x3e\x86\x41\x28\x25\x44\x07\x0b\x8e\x03\x19\x63\xfb\x9e\x52\xca\x6d\x08\x05\xdc\xca\x98\xad\xe7\xfc\x86\x9a\xfa\x0d\xad\x8a\xe7\xb1\xb8\x3f\xf8\x35\x00\x10\x48\xf7\x71\xc3\x2e\xe2\xfd\x45\x68\xf9\x75\xd2\x4b\x74\xdc\x62\x9f\x1f\x6d\x97\xa1\x7c\xf4\x9d\x79\xe6\xef\x3f\x00\x00\xff\xff\x9b\x3e\x96\x87\x03\x01\x00\x00" +var _idtablestakingScriptsGet_node_networking_addrCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x41\x4b\xc4\x30\x10\x46\xef\xf9\x15\xdf\xd1\xbd\xec\x7a\x16\x3c\x54\x52\x21\x20\x7b\x30\xb9\x78\x4c\x6d\xd2\x06\xdb\x49\x99\x4c\xa9\x20\xfe\x77\xb1\xad\xf5\xb2\xa7\x19\x66\x78\x8f\x97\xc6\x29\xb3\xe0\x79\xc8\x8b\xd1\xce\x37\x43\xb0\xe2\x3f\x12\x75\x88\x9c\x47\xdc\x7f\x1a\x5d\x5f\x9d\x71\x6f\xae\x7a\x7a\xa9\x2b\xad\x5f\x6b\x6b\x95\xba\x5c\xe0\xfa\x54\x50\xde\x39\x4d\x02\x0e\x32\x33\x15\x48\x1f\x40\x41\x96\xcc\xab\xa2\x6a\x5b\x0e\xa5\x20\x47\x78\x50\x6e\x83\x52\xd3\xdc\x20\xce\x84\xd1\x27\xba\xfb\x3d\x19\xfd\x00\x2b\x9c\xa8\x3b\xfd\x2d\xf8\x52\x00\x30\x04\x59\x21\x43\x31\xe3\xf1\x46\xe2\xf9\xba\x7f\x0f\xd1\x36\x4f\x2b\xbe\x35\x1d\x86\xf3\x7f\xd7\x9e\xa5\xbe\x7f\x02\x00\x00\xff\xff\xe4\xf6\x2e\xea\xfd\x00\x00\x00" func idtablestakingScriptsGet_node_networking_addrCdcBytes() ([]byte, error) { return bindataRead( @@ -3339,11 +3300,11 @@ func idtablestakingScriptsGet_node_networking_addrCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_networking_addr.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa8, 0x91, 0xae, 0x4, 0xd4, 0x58, 0xda, 0xbc, 0x54, 0xfe, 0xdd, 0xf4, 0x99, 0x87, 0x9a, 0xe2, 0x69, 0xe0, 0xca, 0xcf, 0xf, 0xc2, 0x5d, 0x7e, 0xa9, 0x2b, 0xd8, 0x99, 0xca, 0xcd, 0x39, 0xf6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x77, 0x9c, 0xbc, 0xa2, 0xdd, 0xeb, 0xde, 0xcd, 0xad, 0x72, 0x18, 0xa9, 0x16, 0x54, 0x32, 0xe6, 0x4, 0xd9, 0x5a, 0x2f, 0xed, 0x4e, 0x90, 0x88, 0x2, 0x16, 0x9, 0x5c, 0xe3, 0x45, 0x8c}} return a, nil } -var _idtablestakingScriptsGet_node_networking_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xaa\x83\x40\x10\x45\xfb\xfd\x8a\x8b\x95\x36\xda\x3f\x78\x9d\x3c\x90\x07\x69\xf4\x07\x36\x66\x56\x17\xd7\x59\xd9\x1d\x11\x09\xf9\xf7\x10\x4d\x4c\x91\x54\x33\x70\xb8\x87\x63\xc7\xc9\x07\xc1\x9f\xf3\x4b\x55\x36\xfa\xec\xa8\x16\x3d\x58\xee\x60\x82\x1f\x91\x7c\x82\x44\xa9\xa2\x40\xd3\xdb\x88\xd8\x06\x3b\x09\x02\xc9\x1c\x38\x42\x7a\x02\x93\x2c\x3e\x6c\x82\x81\x56\x78\x03\x0d\xf6\x17\x52\x4a\xb7\x2d\xc5\x98\x6a\xe7\x32\x98\x99\x31\x6a\xcb\xe9\x03\x55\xe5\x0f\x6a\x09\x96\xbb\xec\xf5\xe0\xaa\x00\xc0\x91\x6c\xe3\x8a\x8d\xc7\xef\x97\xc8\xfc\xf4\xa4\x87\x68\xbf\xd9\x36\xdf\xbb\x0e\x43\xfe\x6e\xfb\xa7\x55\xdd\xee\x01\x00\x00\xff\xff\x95\x72\xe4\x3d\xfb\x00\x00\x00" +var _idtablestakingScriptsGet_node_networking_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\x4f\x85\x30\x10\x87\xf7\xfe\x15\xbf\xd1\xb7\xbc\xe7\x6c\xe2\x80\x29\x26\x8d\x86\xc1\x76\x71\x2c\x7a\x85\x06\xb8\x92\x72\x04\x89\xf1\x7f\x37\x82\xe2\xf2\xa6\xbb\xdc\xe5\xfb\xf2\xc5\x61\x4c\x59\xf0\xd8\xa7\xc5\x68\xe7\xeb\x9e\xac\xf8\x2e\x72\x83\x90\xd3\x80\xdb\x0f\xa3\xcb\xca\x19\xf7\xea\x8a\x87\xe7\xb2\xd0\xfa\xa5\xb4\x56\xa9\xcb\x05\xae\x8d\x13\xa6\xb7\x1c\x47\x41\x26\x99\x33\x4f\x90\x96\xc0\x24\x4b\xca\x9b\xa2\xa3\x15\x29\xc0\x83\xd3\x3b\x29\x35\xce\x35\xc2\xcc\x18\x7c\xe4\x9b\x9f\x93\xd1\x77\xb0\x92\x23\x37\xa7\xbf\x05\x9f\x0a\x00\x7a\x92\x0d\x32\x1c\x12\xee\xaf\xe4\x9d\xab\xdf\xef\x21\xda\xe7\x69\xc3\xf7\x9e\xc3\x70\xfe\x6f\x7a\xa2\x55\x7d\x7d\x07\x00\x00\xff\xff\xd1\xf6\x05\xda\xf5\x00\x00\x00" func idtablestakingScriptsGet_node_networking_keyCdcBytes() ([]byte, error) { return bindataRead( @@ -3359,11 +3320,11 @@ func idtablestakingScriptsGet_node_networking_keyCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_networking_key.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2a, 0x80, 0xca, 0xa7, 0xf8, 0xbc, 0x50, 0xe7, 0x5b, 0x44, 0x46, 0xe3, 0x38, 0x25, 0x5d, 0x5f, 0xfe, 0x21, 0x3, 0xbd, 0xd6, 0x4a, 0x73, 0x41, 0x70, 0x5d, 0x8f, 0xbc, 0x57, 0x97, 0xf6, 0x77}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xba, 0x39, 0x41, 0x31, 0x6, 0x4d, 0x30, 0xeb, 0xd3, 0x9d, 0xc8, 0x3f, 0xee, 0x5a, 0x9, 0x3, 0x4c, 0x73, 0xa0, 0xfe, 0x29, 0x92, 0x56, 0xea, 0xc3, 0x25, 0x7c, 0x59, 0x6f, 0xb3, 0xa9, 0xac}} return a, nil } -var _idtablestakingScriptsGet_node_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x3d\x6a\xc3\x40\x10\x46\xfb\x3d\xc5\x87\x2b\xab\xb1\x9b\x90\xc2\x90\xce\x18\xd4\xa4\x88\x9d\x03\x8c\x57\xb3\xf6\xa2\xd5\xac\x98\x1d\xa1\x40\xc8\xdd\x83\x7e\x50\x93\x54\x03\xf3\xf8\x1e\x2f\x76\x7d\x56\xc3\x25\xe5\xb1\x3e\xdf\xe8\x9e\xf8\x6a\xd4\x46\x79\x20\x68\xee\xb0\xfb\x0b\x76\xce\x1d\x8f\xb8\x3d\x63\x41\xf1\x1a\x7b\x83\xb2\x0d\x2a\x05\xf6\x64\xdc\x29\x91\x78\x46\x0e\x50\x1e\x49\x1b\x6e\x60\xb9\x65\x29\xd3\x8b\x20\xb9\x61\xe7\xc8\x7b\x2e\x65\x4f\x29\x55\x08\x83\xa0\xa3\x28\xfb\x09\xd5\xe7\x13\xae\xa6\x51\x1e\xd5\x09\x9f\x97\xf8\xf5\xfa\x82\x6f\x07\x00\x89\x6d\x1e\xd7\x12\x32\xde\xfe\x09\x3e\xbc\xaf\x74\x13\x2d\xb7\x9a\xe7\x4b\xe3\x66\x38\x2c\x4d\x1f\x6b\xa2\xfb\xf9\x0d\x00\x00\xff\xff\xf4\x1f\x63\x6a\x08\x01\x00\x00" +var _idtablestakingScriptsGet_node_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\x31\x6b\xc3\x30\x10\x05\xe0\x5d\xbf\xe2\x8d\xcd\x92\x74\x28\x1d\x02\x1d\x52\xe4\x80\xa0\x64\x88\xd5\xa1\xa3\x1c\x9f\x13\x11\xf9\x64\x4e\x67\x12\x28\xfd\xef\x25\x71\xf0\x94\xe9\xe0\x1d\xef\xf1\xc5\x7e\xc8\xa2\xd8\xa6\x7c\x71\xd6\x87\x26\x51\xad\xe1\x1c\xf9\x88\x4e\x72\x8f\xd7\xab\xb3\xd5\xce\x3b\xff\xe3\x37\x9f\x5f\xd5\xc6\xda\x7d\x55\xd7\xc6\xac\x56\xf0\xa7\x58\x50\x0e\x12\x07\x85\x90\x8e\xc2\x05\x7a\x22\x34\x21\x05\x3e\x10\x72\x07\xa1\x4b\x90\x96\x5a\x68\x3e\x13\x97\x5b\x14\xc0\xb9\x25\x63\x86\xb1\x41\x37\x32\xfa\x10\xf9\xe5\x16\x39\xbb\x46\xad\x12\xf9\xb8\x58\xe3\x7b\x1b\xaf\xef\x6f\xf8\x35\x00\x90\x48\xef\x25\xc7\x5d\xc6\xc7\x13\xea\x72\xf7\xf8\xce\x43\xd3\x5d\xdc\xeb\x93\x6d\x5e\x58\x4e\x96\xfd\x83\x66\xfe\xfe\x03\x00\x00\xff\xff\x1e\xee\x86\x4b\x02\x01\x00\x00" func idtablestakingScriptsGet_node_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3379,11 +3340,11 @@ func idtablestakingScriptsGet_node_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x9a, 0xcb, 0xd1, 0x44, 0xce, 0xa6, 0xa9, 0xb, 0xf5, 0x69, 0x8, 0x75, 0x31, 0x3d, 0xa4, 0xfe, 0x77, 0x25, 0x7, 0x2e, 0x9a, 0x2a, 0xe8, 0xf2, 0x14, 0x6d, 0x39, 0x96, 0x0, 0x13, 0x24}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x91, 0x31, 0x52, 0xe3, 0xb5, 0xc6, 0x8e, 0x86, 0x7b, 0xee, 0xce, 0x3f, 0x8f, 0x80, 0x32, 0xbe, 0x41, 0xf5, 0x1, 0x7, 0xf8, 0x80, 0x7c, 0xca, 0x2, 0x28, 0x8, 0x5c, 0x7c, 0x30, 0xd5, 0x56}} return a, nil } -var _idtablestakingScriptsGet_node_roleCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xca\x83\x30\x14\x85\xf7\x3c\xc5\xc1\x49\x17\x5d\x7f\x84\x7f\x93\x42\x96\x2e\xda\x07\x48\x6d\xa2\xa1\xf1\x46\x6e\xae\x74\x28\x7d\xf7\xa2\x16\x97\x76\x3a\xc3\xc7\xf9\xf8\xfc\x34\x47\x16\x9c\x42\x7c\xe8\xa6\x33\xd7\x60\x5b\x31\x77\x4f\x03\x1c\xc7\x09\xd9\x37\xc8\x94\xaa\x2a\x74\xa3\x4f\x48\x3d\xfb\x59\xc0\x56\x16\xa6\x04\x19\x2d\x38\x06\x8b\xe8\x60\x40\xf1\x66\x95\x32\x7d\x6f\x53\xca\x4d\x08\x05\xdc\x42\x98\x8c\xa7\x7c\x45\xba\xa9\xd1\x0a\x7b\x1a\x8a\x1a\x17\x4d\xf2\x87\xa7\x02\x80\x60\x65\xfb\x6a\x72\x11\xff\x3f\xca\xca\xf3\x87\x1e\x9e\x7d\x8b\xed\xbe\xc7\x1c\x86\x72\x0d\x52\xaf\x77\x00\x00\x00\xff\xff\xf6\xa1\xe0\xc7\xe7\x00\x00\x00" +var _idtablestakingScriptsGet_node_roleCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\x85\x30\x14\x46\xf7\xfc\x8a\x6f\xac\x8b\x76\x2c\x42\x07\x4b\x2c\x04\x8a\x43\x93\x0e\x1d\x63\x9b\x68\x68\xbc\x91\x78\xa5\x85\xf2\xfe\xfb\x43\x7d\x38\xbd\xe9\xc2\xfd\x38\x87\x13\xa6\x39\x65\xc6\x6b\x4c\xbf\x4a\x1a\xdb\x47\xa7\xd9\xfe\x04\x1a\xe0\x73\x9a\xf0\xf8\xa7\x64\xdb\x19\x65\x3e\x4d\xf3\xf2\xd6\x36\x52\xbe\xb7\x5a\x0b\x51\x55\x30\x63\x58\xb0\x7c\xe5\x30\x33\xb2\xe3\x35\xd3\x02\x1e\x1d\x72\x8a\x0e\xc9\xc3\x82\xd2\xb7\x13\x62\x5e\x7b\xf8\x95\x30\xd9\x40\x0f\xdb\x4b\xc9\x1a\x9a\x73\xa0\xa1\xa8\xf1\xa1\x88\x9f\xf0\x2f\x00\x20\x3a\xde\x19\x45\x3e\xe1\xf9\x4e\x53\xd9\xdd\xd6\xd3\x73\xdc\x62\xc7\x8f\x88\xd3\x50\x6e\x21\xe2\x72\x0d\x00\x00\xff\xff\xf4\x8e\xc6\x37\xe1\x00\x00\x00" func idtablestakingScriptsGet_node_roleCdcBytes() ([]byte, error) { return bindataRead( @@ -3399,11 +3360,11 @@ func idtablestakingScriptsGet_node_roleCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_role.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x0, 0xb7, 0xb0, 0x5f, 0x96, 0x55, 0x19, 0x86, 0x7a, 0x0, 0xf0, 0xfe, 0xd6, 0x6f, 0xce, 0xc4, 0x56, 0x65, 0x59, 0x5c, 0x66, 0x15, 0x56, 0x22, 0xc8, 0xe, 0x22, 0x44, 0x49, 0xf0, 0xc0, 0x78}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0x9e, 0xda, 0x8e, 0x65, 0x95, 0xfa, 0x4e, 0xa1, 0xbc, 0xcc, 0x44, 0xe8, 0xa4, 0x4b, 0xbb, 0xe5, 0x51, 0x79, 0xb1, 0x87, 0x98, 0xe, 0xfe, 0x5e, 0x5d, 0x35, 0x73, 0x4, 0xec, 0xc8, 0x57}} return a, nil } -var _idtablestakingScriptsGet_node_staked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\x6a\x84\x40\x10\x86\xfb\x7d\x8a\x9f\xab\xce\xe6\xae\x09\x29\x0e\xd2\x89\x60\x93\x46\xf3\x00\xe3\x3a\xab\x8b\xeb\xac\xec\x8e\x24\x10\xf2\xee\x41\x0d\x36\xb9\x6a\x60\x3e\xfe\x8f\xcf\xcf\x4b\x4c\x8a\x2a\xc4\xcf\xba\x6c\xa9\x0b\xdc\x28\x4d\x5e\x06\xb8\x14\x67\x5c\xfe\x83\x8b\x31\xf7\x3b\xda\xd1\x67\x64\x9b\xfc\xa2\x48\xac\x6b\x92\x0c\x1d\x19\x1d\x05\x12\xcb\x88\x0e\x59\x69\xe2\x1e\x1a\x27\x96\xbc\x3d\x08\x12\x7b\x36\x86\xac\xe5\x9c\xaf\x14\x42\x01\xb7\x0a\x66\xf2\x72\xdd\x50\x5d\x3e\xd0\x68\xf2\x32\x14\x0f\x7c\x54\xfe\xeb\xf5\x05\xdf\x06\x00\x02\xeb\x3e\xae\xc5\x45\xbc\x3d\xc9\xbd\xbd\xff\xd1\x53\x74\xdc\x62\x9f\x1f\x85\xa7\xe1\x76\x34\x35\x7b\xa0\xf9\xf9\x0d\x00\x00\xff\xff\x88\xf6\xd5\xbd\x04\x01\x00\x00" +var _idtablestakingScriptsGet_node_staked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\x31\x6b\xc3\x30\x10\x05\xe0\x5d\xbf\xe2\x8d\xcd\x92\x74\x28\x1d\x02\x1d\x52\xe4\x80\xa0\x64\xa8\xd4\xa1\xa3\x9c\x9c\x12\x61\xf9\x64\xa4\x33\x0d\x94\xfe\xf7\x62\xbb\x78\xea\x74\xf0\x8e\xf7\xf8\x62\x3f\xe4\x22\x38\xa6\xfc\x65\xb4\xf3\x6d\x22\x2b\xbe\x8b\x7c\x45\x28\xb9\xc7\xe3\xdd\xe8\xe6\xe4\x8c\xfb\x74\x87\xd7\xb7\xe6\xa0\xf5\x7b\x63\xad\x52\xbb\x1d\xdc\x2d\x56\xd4\x73\x89\x83\xa0\x90\x8c\x85\x2b\xe4\x46\x68\x7d\xf2\x7c\x26\xe4\x80\x2a\xbe\xa3\x0b\x24\x77\xc4\x75\x0a\x3c\x38\x5f\x48\xa9\x61\x6c\x11\x46\x46\xef\x23\x3f\x4c\x91\xd1\x7b\x58\x29\x91\xaf\x9b\x3d\x3e\x8e\xf1\xfe\xfc\x84\x6f\x05\x00\x89\x64\x2e\x19\x0e\x19\x2f\xff\x40\xb7\xa7\xbf\xef\x3a\xb4\xdc\xcd\x5c\x5f\x64\xeb\xc2\x76\xb1\xd8\x19\xa6\x7e\x7e\x03\x00\x00\xff\xff\x46\xae\x83\xcb\xfe\x00\x00\x00" func idtablestakingScriptsGet_node_staked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3419,11 +3380,11 @@ func idtablestakingScriptsGet_node_staked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_staked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0x54, 0xed, 0x63, 0x3d, 0x4f, 0x58, 0xcc, 0xc0, 0xc2, 0x61, 0x56, 0xca, 0x69, 0xb6, 0x69, 0xbc, 0xb0, 0x62, 0x73, 0x82, 0x4c, 0x79, 0xe7, 0x37, 0xfd, 0x98, 0x8e, 0x96, 0x78, 0x0, 0xd9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc9, 0xa5, 0xe0, 0x6e, 0x32, 0xb4, 0x2d, 0xce, 0xcf, 0xef, 0x6c, 0xad, 0xa0, 0xc, 0x96, 0x72, 0x4d, 0x32, 0x5b, 0xfa, 0x45, 0xea, 0x74, 0x20, 0x42, 0x4b, 0x9e, 0x2c, 0x86, 0xa0, 0x44, 0x9e}} return a, nil } -var _idtablestakingScriptsGet_node_staking_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xaa\x83\x40\x10\x45\xfb\xfd\x8a\x8b\x95\x36\xda\x3f\x78\x9d\x04\x44\x48\xa3\x3f\xb0\x31\xb3\xba\x64\x9d\x95\xdd\x91\x20\x21\xff\x1e\xa2\xc6\x26\xa9\x66\xe0\x70\x2e\xc7\x8e\x93\x0f\x82\x93\xf3\xf7\xaa\x6c\xf5\xc5\x51\x23\xfa\x66\xb9\x87\x09\x7e\x44\xf2\x0d\x12\xa5\x8a\x02\xed\x60\x23\x62\x17\xec\x24\x08\x24\x73\xe0\x08\x19\x08\x71\xb7\x6b\x5a\xe0\x0d\x34\xd8\x5f\x49\x29\xdd\x75\x14\x63\xaa\x9d\xcb\x60\x66\xc6\xa8\x2d\xa7\x6f\x54\x95\x7f\x68\x24\x58\xee\xb3\xcf\x83\x87\x02\x00\x47\xb2\xca\x15\x1b\x8f\xff\x1f\x85\xf9\x79\xa7\xc7\xd0\x76\xb3\x55\xdf\xa2\x8e\x85\x7c\x0f\xab\x69\x51\xcf\x57\x00\x00\x00\xff\xff\xe3\x1d\xee\xbd\xf5\x00\x00\x00" +var _idtablestakingScriptsGet_node_staking_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\xaf\x82\x30\x14\x46\xf7\xfe\x8a\x6f\x7c\x2c\xf0\xe6\x97\xbc\x01\x53\x4c\x1a\x0c\x83\xed\xe2\x58\xb4\x85\x46\x68\x49\x5b\xa2\xc4\xf8\xdf\x8d\x80\x4c\x4e\xf7\xe6\xde\x9c\x93\x63\xfa\xc1\xf9\x88\x7d\xe7\x6e\x8c\x0a\x59\x77\x8a\x47\x79\x35\xb6\x81\xf6\xae\xc7\xef\x9d\xd1\xa2\x12\x4c\x9c\x44\xbe\x3b\x14\x39\xa5\xc7\x82\x73\x42\xb2\x0c\xa2\x35\x01\xe1\xec\xcd\x10\xe1\x55\x1c\xbd\x0d\x88\xad\x42\x58\xf9\x52\x4d\x70\x1a\x12\xd6\x5d\x14\x21\xc3\x58\x43\x8f\x16\xbd\x34\xf6\xe7\x7d\x62\xf4\x0f\x3c\x7a\x63\x9b\xe4\xb3\xe0\x41\x00\xa0\x53\x71\x86\x98\xd5\x0e\xff\x5f\xda\xd2\x6a\xfd\x6e\xa2\x65\x26\x33\xbe\xc4\x6c\x86\x74\x0d\x2a\xd5\x44\x9e\xaf\x00\x00\x00\xff\xff\x09\x99\x69\xfa\xef\x00\x00\x00" func idtablestakingScriptsGet_node_staking_keyCdcBytes() ([]byte, error) { return bindataRead( @@ -3439,11 +3400,11 @@ func idtablestakingScriptsGet_node_staking_keyCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_staking_key.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0x60, 0xc8, 0xcc, 0xd8, 0xd1, 0x4, 0x35, 0xdc, 0x43, 0xab, 0xa6, 0x61, 0x23, 0x93, 0x51, 0xd2, 0x5a, 0x24, 0xe6, 0xe2, 0x95, 0xc3, 0xe5, 0xbf, 0x68, 0x26, 0x94, 0xfb, 0x6a, 0xe9, 0x73}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xab, 0x13, 0x1f, 0xf1, 0xf9, 0x2c, 0xc6, 0x26, 0x45, 0x9a, 0xa, 0xf0, 0x4f, 0x7, 0xa2, 0x39, 0x1a, 0xd, 0x99, 0xd6, 0x51, 0x83, 0x95, 0xa, 0x58, 0xb5, 0x72, 0xf8, 0xa1, 0xe7, 0xf0, 0x62}} return a, nil } -var _idtablestakingScriptsGet_node_total_commitmentCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\xc3\x40\x0c\x46\xf7\xfb\x15\x1f\x99\xec\x25\x59\x4a\x87\x40\xa7\x9a\x80\x97\x2e\x49\xe9\xac\xd8\x3a\x5b\xf8\x4e\x0a\x77\x0a\x2d\x94\xfe\xf7\x92\xa4\x64\x69\x26\x81\x1e\xdf\xe3\x49\x3e\x59\x71\xec\x92\x7d\xf6\xdd\x81\x8e\x89\xf7\x4e\x8b\xe8\x84\x58\x2c\x63\xf5\x1f\xac\x42\xd8\x6c\x70\x98\xa5\xa2\x0e\x45\x4e\x8e\xc2\x7e\x2e\x5a\xe1\x33\xe3\x48\x89\x74\x60\x58\x44\x75\x5a\x78\x84\xdb\xc2\x5a\x2f\x0f\x82\xda\xc8\x21\xd0\x30\x70\xad\x0d\xa5\xd4\x22\x9e\x15\x99\x44\x9b\x0b\xea\xbb\x2d\xf6\x5e\x44\xa7\x76\x8b\xf7\x9d\x7c\x3d\x3f\xe1\x3b\x00\x40\x62\xbf\x8e\x7b\x8d\x86\x97\x07\xb9\xeb\xb7\x3f\x7a\x17\xdd\x6e\x7b\x9d\xdf\x0a\xef\x86\xb5\x9b\x53\x7a\xb5\x9c\xc5\x9d\xc7\x0f\xf1\xb9\xe3\xc4\x13\xb9\x95\xda\xb4\xe1\x27\xfc\x06\x00\x00\xff\xff\xde\x81\x86\x0c\x17\x01\x00\x00" +var _idtablestakingScriptsGet_node_total_commitmentCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\xc3\x30\x10\x46\x77\xfd\x8a\x6f\x8c\x97\xa4\x43\xe9\x10\xe8\x90\x56\x0e\x08\x4a\x86\x5a\xa5\x74\x94\xe3\xb3\x2d\x2c\xe9\x8c\x74\xa6\x81\xd2\xff\x5e\x92\x94\x4c\x99\x0e\xbe\xe3\x3d\x9e\x8f\x33\x67\xc1\x3e\xf0\xb7\xd1\xd6\xb5\x81\x1a\x71\x93\x4f\x03\xfa\xcc\x11\x0f\x27\xa3\xeb\x83\x35\xf6\xcb\xee\x5e\xde\xea\x9d\xd6\xef\x75\xd3\x28\xb5\xd9\xc0\x8e\xbe\xa0\x1c\xb3\x9f\x05\x99\x64\xc9\xa9\x40\x46\x42\xeb\x82\x4b\x47\x02\xf7\x28\xe2\x26\xea\x20\x3c\x51\x2a\xe7\xc1\x21\x71\x47\x4a\xcd\x4b\x8b\x7e\x49\x88\xce\xa7\xd5\x79\x32\x7a\x8b\x46\xb2\x4f\x43\xb5\xc5\xc7\xde\x9f\x9e\x1e\xf1\xa3\x00\x20\x90\x5c\x20\x93\x7a\xc6\xf3\x9d\xd0\xf5\xe1\xff\x7b\x13\x5d\x6f\x75\xc1\xaf\x65\x37\xc3\x5a\x58\x5c\x78\xe5\x18\xbd\x08\x75\x9f\x5e\x46\x4d\x81\x06\x27\x9c\xcb\xaa\x52\xbf\xea\x2f\x00\x00\xff\xff\x38\xb0\x49\xad\x11\x01\x00\x00" func idtablestakingScriptsGet_node_total_commitmentCdcBytes() ([]byte, error) { return bindataRead( @@ -3459,11 +3420,11 @@ func idtablestakingScriptsGet_node_total_commitmentCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_total_commitment.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0x4e, 0xa8, 0x2, 0x91, 0x80, 0xc1, 0xa6, 0xf6, 0x9b, 0x8c, 0x17, 0xce, 0x51, 0x4d, 0x8c, 0x4, 0x66, 0x16, 0xe7, 0x9e, 0x9c, 0x54, 0xd7, 0x3c, 0x96, 0x45, 0x48, 0x4b, 0x9a, 0x26, 0x27}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9a, 0xb3, 0x90, 0x58, 0xe3, 0xb3, 0x74, 0x22, 0x31, 0x4f, 0xd0, 0x3b, 0xa0, 0x9e, 0x61, 0x27, 0x36, 0xe5, 0x70, 0xb2, 0xef, 0x1d, 0x2e, 0x4a, 0xe1, 0x1a, 0xef, 0x56, 0x9e, 0x47, 0x48, 0xd8}} return a, nil } -var _idtablestakingScriptsGet_node_total_commitment_without_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\xc3\x40\x0c\x46\xf7\xfb\x15\x1f\x99\xec\x25\x59\x4a\x87\x40\xa7\x9a\x80\x97\x2e\x49\xe9\xac\xd8\xb2\x2d\x7c\x27\x85\x3b\x99\x16\x4a\xff\x7b\x49\x52\xbc\x34\x93\x40\x8f\xef\xf1\x24\x5d\x2c\x3b\x0e\xd1\x3e\xdb\xe6\x44\xe7\xc8\x47\xa7\x59\x74\xc4\x90\x2d\x61\xf3\x1f\x6c\x42\xd8\xed\x70\x9a\xa4\xa0\x74\x59\x2e\x8e\xcc\xbe\x64\x2d\xf0\x89\x71\xa6\x48\xda\x31\x6c\x40\x71\x9a\xb9\x87\xdb\xcc\x5a\xae\x0f\x82\x5a\xcf\x21\x50\xd7\x71\x29\x15\xc5\x58\x63\x58\x14\x89\x44\xab\x2b\x6a\x9b\x3d\x8e\x9e\x45\xc7\x7a\x8f\xf7\x83\x7c\x3d\x3f\xe1\x3b\x00\x40\x64\xbf\x8d\x5b\x1d\x0c\x2f\x0f\x72\xb7\x6f\x7f\x74\x15\xdd\x6f\x7d\x9b\xdf\x0b\x57\xc3\xd6\xcd\x29\xbe\x5a\x4a\xe2\xce\xfd\x87\xf8\x64\x8b\x37\x1c\x79\x24\xb7\x5c\xaa\x3a\xfc\x84\xdf\x00\x00\x00\xff\xff\x30\xea\x1b\x75\x1a\x01\x00\x00" +var _idtablestakingScriptsGet_node_total_commitment_without_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\xc3\x30\x10\x46\x77\xfd\x8a\x6f\x8c\x97\xa4\x43\xe9\x10\xe8\x90\x56\x0e\x08\x4a\x86\x5a\xa5\x74\x94\xe3\xb3\x2d\x2c\xe9\x8c\x74\xa6\x81\xd2\xff\x5e\x92\x94\x4c\x99\x0e\xbe\xe3\x3d\x9e\x8f\x33\x67\xc1\x3e\xf0\xb7\xd1\xd6\xb5\x81\x1a\x71\x93\x4f\x03\xfa\xcc\x11\x0f\x27\xa3\xeb\x83\x35\xf6\xcb\xee\x5e\xde\xea\x9d\xd6\xef\x75\xd3\x28\xb5\xd9\xc0\x8e\xbe\xa0\x1c\xb3\x9f\x05\x99\x64\xc9\xa9\x40\x46\x42\xeb\x82\x4b\x47\x02\xf7\x28\xe2\x26\xea\x20\x3c\x51\x2a\xe7\xc1\x21\x71\x47\x4a\xcd\x4b\x8b\x7e\x49\x88\xce\xa7\xd5\x79\x32\x7a\x8b\x46\xb2\x4f\x43\xb5\xc5\xc7\xde\x9f\x9e\x1e\xf1\xa3\x00\x20\x90\x5c\x20\x93\x7a\xc6\xf3\x9d\xd0\xf5\xe1\xff\x7b\x13\x5d\x6f\x75\xc1\xaf\x65\x37\xc3\x5a\x58\x5c\x78\xe5\x18\xbd\x08\x75\x9f\x5e\x46\x5e\x44\x53\xa0\xc1\x09\xe7\xb2\xaa\xd4\xaf\xfa\x0b\x00\x00\xff\xff\x10\x9e\xf2\x15\x14\x01\x00\x00" func idtablestakingScriptsGet_node_total_commitment_without_delegatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -3479,11 +3440,11 @@ func idtablestakingScriptsGet_node_total_commitment_without_delegatorsCdc() (*as } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_total_commitment_without_delegators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x84, 0x32, 0xaf, 0x9f, 0xd3, 0x1e, 0x55, 0x10, 0x72, 0x2d, 0x94, 0x44, 0xae, 0x6b, 0xa4, 0xc5, 0xe4, 0x2, 0xc6, 0x10, 0x0, 0xae, 0xb5, 0x69, 0x35, 0xb, 0xf6, 0x87, 0x8d, 0x53, 0x4, 0xa7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xad, 0x78, 0x6, 0x75, 0x27, 0xd2, 0xa2, 0x58, 0x76, 0xf1, 0x1d, 0xf8, 0x39, 0xfc, 0xef, 0xfc, 0xfe, 0xe9, 0x4b, 0xa5, 0x25, 0x13, 0xb7, 0x3, 0x8d, 0x8e, 0xcd, 0xdb, 0xc1, 0x61, 0x21, 0xf4}} return a, nil } -var _idtablestakingScriptsGet_node_type_ratioCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\x03\x51\x10\x84\xfb\xf7\x2b\xc6\x54\x77\x8d\x69\x44\x24\x60\x27\x81\xb4\x31\xa9\xc4\x62\xf3\x6e\x2f\x79\xdc\xbb\xdd\xb0\xbb\xe1\x04\xf1\xbf\xcb\x9d\x76\xda\xce\xcc\x37\x7c\x65\xbc\xaa\x05\xb6\x55\xa7\xdd\xcb\x81\x4e\x95\x5f\x83\x86\x22\x67\xf4\xa6\x23\x56\x7f\x8b\x55\x4a\xeb\x35\x0e\x97\xe2\xf0\x6c\xe5\x1a\x30\x8e\x9b\x89\x23\x2e\x8c\x13\x55\x92\xcc\xd0\x1e\x1e\x34\x70\x87\xd0\x81\xc5\xe7\x80\x20\xda\x71\x4a\x94\x33\xbb\x37\x54\x6b\x8b\xfe\x26\x18\xa9\x48\x63\x5a\x79\x83\xe3\x4e\xe2\xa9\xdd\xe0\xb8\x2d\x1f\x8f\x0f\xf8\x4c\x00\x50\x39\x60\x14\x45\x1d\xcf\xff\x98\xde\x9f\x39\xf6\x3c\x91\x75\xfb\x65\xd4\xb4\x69\xc1\x7e\xb4\x7e\xc9\xb7\xf9\xff\xfd\x2e\x7d\x7d\x07\x00\x00\xff\xff\x6f\x62\x2e\xa0\xf1\x00\x00\x00" +var _idtablestakingScriptsGet_node_type_ratioCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x9e\xb7\xf6\x62\x3d\x88\x48\xc1\x43\x25\x29\x04\xc4\x43\xb2\x3d\x88\x78\x98\x34\x93\x76\xc9\x66\x27\xcc\x4e\x68\x41\xfc\xef\xd2\xea\xb1\xd7\xc7\xfb\x3e\xbe\x30\x4e\xa2\x86\x6d\x94\x53\x55\x78\x6a\x23\x37\x46\x43\x48\x07\xf4\x2a\x23\x1e\xce\x55\x51\xbe\xfb\xca\x7f\xf8\xcd\xeb\x5b\xb9\x29\x8a\xba\x6c\x1a\xe7\x56\x2b\xf8\x63\xc8\xc8\x7b\x0d\x93\x41\xd9\x66\x4d\x19\x76\x64\xb4\x14\x29\xed\x19\xd2\x23\x1b\x0d\xdc\xc1\x64\xe0\x94\x2f\x03\x21\x49\xc7\xce\x4d\x73\x8b\x7e\x4e\x18\x29\xa4\x85\x4a\xe4\x35\x76\x55\xb2\xe7\xe5\x1a\xbb\x6d\x38\x3f\x3d\xe2\xdb\x01\x40\x64\x83\x92\x05\xc9\x78\xb9\xd1\x78\x7f\x60\xab\xf9\x44\xda\xd5\xd7\xd3\x62\xe9\xae\xd8\x5f\xce\x3f\xf9\x79\xf1\x7f\xdd\xb9\x9f\xdf\x00\x00\x00\xff\xff\xd9\xe6\xb6\x53\xeb\x00\x00\x00" func idtablestakingScriptsGet_node_type_ratioCdcBytes() ([]byte, error) { return bindataRead( @@ -3499,11 +3460,11 @@ func idtablestakingScriptsGet_node_type_ratioCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_type_ratio.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa9, 0x6, 0x3f, 0x1a, 0x72, 0xbf, 0x77, 0x88, 0xc2, 0xac, 0xd6, 0x2a, 0xea, 0x37, 0xc, 0x1, 0xe8, 0x1b, 0x86, 0x79, 0x76, 0xdc, 0x56, 0x9b, 0x51, 0x27, 0x7d, 0xd1, 0x92, 0x12, 0xe8, 0x89}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x27, 0xe6, 0x4, 0x86, 0x23, 0x25, 0x65, 0xf9, 0xf4, 0xdb, 0x7e, 0xdf, 0xf4, 0xcc, 0x96, 0xf1, 0xd7, 0xda, 0xd8, 0x20, 0xa, 0xc1, 0xb, 0x17, 0x4c, 0xf8, 0xb8, 0x4c, 0xfa, 0x5a, 0xf2}} return a, nil } -var _idtablestakingScriptsGet_node_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x3d\x6a\xc3\x40\x10\x46\xfb\x3d\xc5\x87\x2b\xab\xb1\x9b\x90\xc2\x90\xce\x18\xd4\xa4\xb1\x74\x80\xd1\x6a\x56\x5a\xb4\x9a\x15\xbb\x23\x12\x08\xb9\x7b\xd0\x0f\x6a\xe2\x6a\x60\x1e\xdf\xe3\xf9\x71\x8a\x49\xf1\x08\xf1\xab\xbc\x57\xd4\x04\x7e\x2a\x0d\x5e\x3a\xb8\x14\x47\x9c\xfe\x83\x93\x31\xd7\x2b\xaa\xde\x67\x64\x9b\xfc\xa4\x48\xac\x73\x92\x0c\xed\x19\x0d\x05\x12\xcb\x88\x0e\xb3\x64\xa5\x81\x5b\x68\x1c\x58\xf2\xf2\x22\x48\x6c\xd9\x18\xb2\x96\x73\x3e\x53\x08\x05\xdc\x2c\x18\xc9\xcb\x79\x41\xe5\xfd\x86\xa7\x26\x2f\x5d\x71\x43\xfd\xf0\xdf\xef\x6f\xf8\x31\x00\x10\x58\xd7\x71\x29\x2e\xe2\xe3\x45\xf0\xe5\x73\xa7\x87\x68\xbb\xc5\x3a\xdf\x1a\x0f\xc3\x65\x6b\xaa\xf7\x44\xf3\xfb\x17\x00\x00\xff\xff\xa2\xd9\x0b\x78\x08\x01\x00\x00" +var _idtablestakingScriptsGet_node_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x6a\x03\x31\x10\x04\xd0\x5e\x5f\x31\x65\xdc\xd8\x29\x42\x0a\x43\x0a\x07\x9d\x41\x10\x5c\x44\x72\x91\x52\x67\xaf\x6c\x71\xba\xd5\x21\xad\x88\x21\xe4\xdf\x83\x7d\xc6\x55\xaa\x85\x59\x66\x78\x71\x9c\x72\x11\x6c\x53\xfe\x36\xda\xf9\x3e\x91\x15\x3f\x44\x3e\x21\x94\x3c\xe2\xf9\x62\x74\xb7\x73\xc6\x7d\xb9\xcd\xfb\x47\xb7\xd1\xfa\xb3\xb3\x56\xa9\xd5\x0a\xee\x1c\x2b\xea\xa1\xc4\x49\x50\x48\x5a\xe1\x0a\x39\x13\x7a\x9f\x3c\x1f\x08\x39\xa0\x71\x15\x3f\xd0\x11\x92\x07\xe2\x7a\x8d\x3c\x38\x1f\x49\xa9\xa9\xf5\x08\x8d\x31\xfa\xc8\x4f\xd7\xc8\xe8\x35\xac\x94\xc8\xa7\xc5\x1a\xfb\x6d\xbc\xbc\xbe\xe0\x47\x01\x40\x22\xb9\x95\x0c\x87\x8c\xb7\x7f\xa8\xcb\xdd\xfd\xfb\x18\x9a\xef\xe2\x56\x9f\x6d\x8f\x85\xe5\x6c\xd9\xdf\x69\xea\xf7\x2f\x00\x00\xff\xff\xed\xa2\xe5\x11\x02\x01\x00\x00" func idtablestakingScriptsGet_node_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3519,11 +3480,11 @@ func idtablestakingScriptsGet_node_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x15, 0xa2, 0xab, 0xa0, 0xe4, 0x1e, 0x5c, 0xf, 0xd8, 0x2c, 0x53, 0xe8, 0xa3, 0x53, 0x38, 0xd8, 0xa7, 0x8e, 0x66, 0x3a, 0x95, 0x72, 0xf5, 0x76, 0xe2, 0x78, 0xad, 0xc0, 0xa8, 0x45, 0xe2, 0xc4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xca, 0xa8, 0x4b, 0x66, 0x19, 0x7f, 0x23, 0x8c, 0x14, 0x37, 0x8f, 0xc6, 0xfb, 0x78, 0x7a, 0x4d, 0x97, 0xc, 0x94, 0xe7, 0x9b, 0x1e, 0xa, 0xa8, 0x8b, 0xcf, 0xbb, 0x18, 0x65, 0xc7, 0x5d, 0x9a}} return a, nil } -var _idtablestakingScriptsGet_node_unstaking_requestCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\x4e\x02\x41\x10\x86\xfb\x7d\x8a\x3f\x54\x5c\x03\x8d\xb1\x20\xb1\x23\x24\xd7\x58\xc8\xf1\x00\xeb\x31\x0b\x1b\x76\x67\x70\x66\x36\x9a\x18\xdf\xdd\x78\xe0\x35\x5a\xfd\xc5\x97\xff\xcb\x97\xeb\x55\xd4\xb1\x2b\xf2\xde\x6f\x87\xf8\x5a\x68\xef\xf1\x92\xf9\x84\xa4\x52\xb1\xf8\x0b\x16\x21\xac\xd7\x18\xce\xd9\x60\xa3\xe6\xab\x43\xc9\x9b\xb2\xc1\xcf\x04\xa5\xb7\x46\xe6\x74\x44\x63\xbb\x9b\x62\x95\xc6\x8e\x24\x8a\x08\x96\x23\x85\x10\xc7\x91\xcc\x96\xb1\x94\x0e\xa9\x31\x6a\xcc\xbc\xfc\x41\xfd\x76\x83\xbd\x6b\xe6\x53\xb7\xc1\x61\x97\x3f\x1e\x1f\xf0\x19\x00\xa0\x90\x4f\xe7\x9e\x93\xe0\xe9\x9f\xe2\xd5\xf3\x9d\xce\xa2\xdb\x76\xd3\xfd\x16\x39\x1b\x56\x2e\x17\x62\x7b\xf9\xcd\x1d\xe4\x30\xf5\x52\xf8\xfa\x0e\x00\x00\xff\xff\x8e\x70\xaf\x46\x13\x01\x00\x00" +var _idtablestakingScriptsGet_node_unstaking_requestCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\x02\x41\x10\x46\xfb\xfd\x15\x5f\x19\x1b\x4d\x11\x52\x08\x29\x0c\x7b\xc2\x42\xb0\xf0\xd6\x22\xe5\x1a\xe7\x74\xf1\x76\xe6\xb2\x3b\x4b\x84\x90\xff\x1e\x72\x9a\xab\xac\x06\xe6\xe3\x3d\x5e\x4c\x83\x64\xc5\xba\x97\x2f\x67\x7d\xd8\xf7\xd4\x6a\x38\x47\x3e\xa2\xcb\x92\xf0\x78\x71\xb6\xd9\x78\xe7\xdf\xfd\xea\xf5\xad\x59\x59\xbb\x6d\xda\xd6\x98\xc5\x02\xfe\x14\x0b\xca\x47\x8e\x83\x22\x93\xd6\xcc\x05\x7a\x22\x64\xfa\xac\x54\x94\x0e\xa8\x5c\x6e\xae\x90\xa4\xb2\xa2\x93\x8c\x00\x96\x03\x19\x33\xd4\x3d\xba\xca\x48\x21\xf2\xc3\xdf\xcb\xd9\x25\x5a\xcd\x91\x8f\xb3\x25\x76\xeb\x78\x79\x7e\xc2\xb7\x01\x80\x9e\x74\x84\x1c\x77\x82\x97\x3b\xad\xf3\xcd\x6d\x9d\x44\xd7\x3b\x1b\xf1\x6b\xdc\x64\x98\xab\x9c\x89\xcb\xf6\x3f\xd3\xcb\x6e\xec\x24\xf3\xf3\x1b\x00\x00\xff\xff\x79\x9d\x09\x48\x0d\x01\x00\x00" func idtablestakingScriptsGet_node_unstaking_requestCdcBytes() ([]byte, error) { return bindataRead( @@ -3539,11 +3500,11 @@ func idtablestakingScriptsGet_node_unstaking_requestCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_unstaking_request.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4a, 0x48, 0x65, 0x66, 0x2f, 0x86, 0x85, 0xb3, 0x19, 0xdb, 0x18, 0xda, 0x34, 0x83, 0xe5, 0x55, 0xa, 0xd6, 0x75, 0xc8, 0x5f, 0xba, 0xf2, 0xe, 0x69, 0xf6, 0x73, 0x47, 0xe0, 0x35, 0x6c, 0x84}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x0, 0x9a, 0x2b, 0x37, 0x6, 0x8a, 0x4, 0xbb, 0xdd, 0x5f, 0xc4, 0xae, 0x23, 0x26, 0x8d, 0x28, 0xee, 0xe8, 0x4, 0xc1, 0xde, 0x14, 0x1f, 0x48, 0x86, 0x41, 0xef, 0xb4, 0xc3, 0x29, 0x4a, 0xcb}} return a, nil } -var _idtablestakingScriptsGet_node_unstaking_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x3d\x6a\xc3\x40\x10\x46\xfb\x3d\xc5\x87\x2b\xab\xb1\x9b\x90\xc2\x90\xce\x18\xd4\xa4\x91\x74\x80\xd1\x66\x56\x5a\xb4\x9a\x15\xbb\x23\x12\x08\xb9\x7b\xd0\x4f\xd4\xc4\xd5\xc0\x3c\xbe\xc7\xf3\xe3\x14\x93\xe2\x11\xe2\x67\x79\xaf\xa9\x0d\x5c\x29\x0d\x5e\x3a\xb8\x14\x47\x9c\xfe\x83\x93\x31\xd7\x2b\xea\xde\x67\x64\x9b\xfc\xa4\x48\xac\x73\x92\x0c\xed\x19\x2d\x05\x12\xcb\x88\x0e\xb3\xe4\x5d\xa5\x71\x60\xc9\xcb\x8f\x20\xf1\x83\x8d\x21\x6b\x39\xe7\x33\x85\x50\xc0\xcd\x82\x91\xbc\x9c\x17\x54\xde\x6f\xa8\x34\x79\xe9\x8a\x1b\x9a\x87\xff\x7a\x7d\xc1\xb7\x01\x80\xc0\xba\x8e\x4b\x71\x11\x6f\x4f\x8a\x2f\xef\x3b\x3d\x44\xdb\x2d\xd6\xf9\x16\x79\x18\x2e\x5b\x53\xf3\xd7\x68\x7e\x7e\x03\x00\x00\xff\xff\xfc\x55\x50\x18\x0a\x01\x00\x00" +var _idtablestakingScriptsGet_node_unstaking_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xbd\x6a\xc3\x30\x14\x46\x77\x3d\xc5\x37\x36\x4b\xd2\xa1\x74\x08\x74\x48\x91\x03\x82\x92\xa1\x52\x86\x8e\x72\x2a\x25\x22\xf2\x95\x91\xae\xa8\xa1\xf4\xdd\x8b\x7f\xea\xa9\xd3\x85\xef\x72\x0e\x27\x74\x7d\xca\x8c\x63\x4c\x5f\x4a\x1a\xdb\x46\xa7\xd9\xde\x03\x5d\xe1\x73\xea\xf0\x38\x28\xd9\x9c\x8c\x32\x1f\xe6\xf0\xfa\xd6\x1c\xa4\x7c\x6f\xb4\x16\x62\xb7\x83\xb9\x85\x82\x72\xc9\xa1\x67\x64\xc7\x35\x53\x01\xdf\x1c\x5a\x1b\x2d\x5d\x1c\x92\x47\xa5\xb2\xc8\x38\xdd\x1d\x95\x71\xb3\xa0\xf4\xe9\x84\xe8\x6b\x0b\x5f\x09\x9d\x0d\xf4\x30\x4e\x4a\xee\xa1\x39\x07\xba\x6e\xf6\x38\x1f\xc3\xf0\xfc\x84\x6f\x01\x00\xd1\xf1\x04\x29\xf2\x09\x2f\xff\xb4\x6e\x4f\xcb\x77\x15\xcd\x77\x33\xe1\x73\xdc\x6a\xd8\xce\x2d\xe7\xbf\x36\xf1\xf3\x1b\x00\x00\xff\xff\xc7\x92\x11\x03\x04\x01\x00\x00" func idtablestakingScriptsGet_node_unstaking_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3559,11 +3520,11 @@ func idtablestakingScriptsGet_node_unstaking_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_unstaking_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0xa2, 0x4e, 0x56, 0xb7, 0x3, 0xd3, 0x8, 0x1c, 0xf9, 0x4b, 0xa2, 0x84, 0xcc, 0xc7, 0xdd, 0x56, 0xbc, 0xd7, 0xae, 0x99, 0x6d, 0x53, 0x4e, 0xa9, 0xd4, 0x97, 0x14, 0x3f, 0xe3, 0xa, 0xfa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbd, 0xf6, 0x22, 0xda, 0x4e, 0x2a, 0x9, 0x28, 0x40, 0x45, 0xb2, 0x8, 0x55, 0xc6, 0x13, 0x27, 0xf4, 0xcb, 0x53, 0x99, 0x5b, 0x2d, 0xab, 0x76, 0x7, 0x33, 0xe7, 0xa, 0x2, 0xb2, 0xd9, 0x6b}} return a, nil } -var _idtablestakingScriptsGet_non_operationalCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x6b\x83\x50\x10\xc7\xf1\xfd\xfd\x15\x3f\x9c\x74\xa8\xee\x9d\x4b\xa1\x50\xec\xa0\x5b\xe9\xf0\x6a\x4e\x3d\x7c\xde\xc9\xbb\x93\x10\x42\xfe\xf7\x10\x08\x64\x48\xe6\x2f\x7c\xf8\xf2\xba\x69\x76\x7c\x26\x3d\x7e\x7d\xf4\xf1\x3f\x51\xe7\x71\x61\x99\x30\x66\x5d\x51\x3c\x87\x22\x84\xa6\x41\x3f\xb3\xc1\x86\xcc\x9b\x23\x93\xef\x59\x0c\x3e\x13\x12\x9b\x43\x47\x88\xca\x9b\x6e\x94\xa3\xb3\x4a\x4c\x10\x3d\x90\x85\x10\x87\x81\xcc\xca\x98\x52\x85\x71\x17\xac\x91\xa5\xac\xde\xf1\xdb\x79\x66\x99\xfe\x70\x0e\x00\xee\xe2\x8b\xab\x7a\x22\x6f\x55\x7e\x1e\x72\x7b\x83\xbf\xd9\xbc\xac\xea\x85\x4e\x16\x2e\xd7\x00\x00\x00\xff\xff\x38\xdb\x00\xb4\xd3\x00\x00\x00" +var _idtablestakingScriptsGet_non_operationalCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4a\xc5\x30\x14\x06\xe0\x3d\x4f\xf1\x8f\xf7\x0e\xde\x3a\xbb\x55\x52\xa1\x50\x2a\x98\x2c\x22\x0e\xa9\xa6\xed\xa1\xe9\x39\x21\x39\x45\x45\x7c\x77\x11\x04\x17\x5f\xe0\xe3\xa3\x3d\x4b\x51\xdc\x25\x79\xeb\xad\x0f\x53\x8a\x4e\xc3\x46\xbc\x60\x2e\xb2\xe3\xfa\xbd\xb7\xdd\xe8\x7b\xff\xe8\xdb\xdb\xa1\x6b\xad\x7d\xe8\x9c\x33\xa6\x69\xe0\x57\xaa\xa8\x2f\x85\xb2\xa2\x44\x3d\x0a\x57\xe8\x1a\x91\xa8\x2a\x64\x06\x0b\x5f\x49\x8e\x25\x28\x09\x87\x04\x96\xd7\x58\x8d\xc9\xc7\x84\xf9\x60\xec\x81\xf8\x74\xbe\xc1\x93\xd3\x42\xbc\x3c\xe3\xd3\x00\xf8\x95\xfe\xf9\x5c\x96\xa8\xa3\xf0\xfd\x9f\x38\xfe\x80\x03\x55\x3d\x9d\x2f\x5b\xfc\xa8\xe6\xeb\x3b\x00\x00\xff\xff\x40\xc7\xef\x0e\xcd\x00\x00\x00" func idtablestakingScriptsGet_non_operationalCdcBytes() ([]byte, error) { return bindataRead( @@ -3579,11 +3540,11 @@ func idtablestakingScriptsGet_non_operationalCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_non_operational.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x40, 0x89, 0x18, 0xff, 0x98, 0x6e, 0xd7, 0x28, 0x71, 0xee, 0x6f, 0xa0, 0x59, 0x7e, 0xc5, 0x96, 0xcb, 0xef, 0xb4, 0x9f, 0x6b, 0xe6, 0x75, 0x21, 0xb, 0x6a, 0x90, 0xb5, 0xde, 0xa5, 0xfd, 0x61}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xeb, 0xa0, 0x38, 0xa8, 0x89, 0xab, 0xee, 0xef, 0xcf, 0x75, 0x60, 0xc1, 0x29, 0x70, 0xdb, 0xd0, 0x51, 0xc9, 0xee, 0x42, 0x0, 0x31, 0x2a, 0x42, 0x2c, 0x26, 0x32, 0xea, 0x1d, 0xbe, 0xd2, 0x80}} return a, nil } -var _idtablestakingScriptsGet_proposed_tableCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x8b\xc2\x40\x10\x46\xfb\xfd\x15\x1f\xa9\x92\xe6\xd2\x5f\x1d\x0e\xd2\x1c\x42\xd2\x89\xc5\xba\x99\x6c\x06\x37\xb3\x61\x76\x82\x88\xf8\xdf\x45\xb0\xd3\xfa\xf1\x1e\x8f\xd7\x2d\xab\xe1\x2f\xe5\x6b\xdf\x8d\xfe\x9c\x68\x30\x7f\x61\x89\x98\x35\xaf\xa8\x3e\x41\xe5\x5c\xdb\x62\x5c\xb8\xa0\x04\xe5\xcd\xa0\x64\xbb\x4a\x81\x2d\x84\xb0\xab\x92\x18\x78\x22\x31\xb6\x1b\xec\xa5\x22\x91\x44\x5b\x9c\xf3\x21\x50\x29\xb5\x4f\xa9\xc1\xbc\x0b\x56\xcf\x52\x37\xbf\x38\x0e\xa6\x2c\xf1\x84\xbb\x03\xf0\x2e\x7e\xb9\xfa\x89\x64\x07\xcd\x5b\x2e\x34\xfd\xe7\x89\xfa\xae\xd4\x8d\x7b\x3c\x03\x00\x00\xff\xff\x09\xfb\xc4\x0b\xc6\x00\x00\x00" +var _idtablestakingScriptsGet_proposed_tableCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4a\x04\x31\x10\x06\xe0\x3e\x4f\xf1\x97\x77\x8d\x67\x6d\x77\x92\x15\x02\x72\x88\x49\x23\x62\xb1\x77\x3b\x9b\x1d\xdc\x9d\x84\xc9\x04\x15\xf1\xdd\x45\xb0\xbc\x17\xf8\xf8\x78\xab\x45\x0d\x0f\x6b\xf9\x08\x3e\x8d\xe7\x95\xa2\x8d\xef\x2c\x19\xb3\x96\x0d\xb7\x9f\xc1\x0f\xa7\x14\xd2\x4b\x3a\xde\x3f\x0e\x47\xef\x9f\x87\x18\x9d\x3b\x1c\x90\x16\x6e\x68\x17\xe5\x6a\x50\xb2\xae\xd2\x60\x0b\xe1\xd2\x55\x49\x0c\x3c\x91\x18\xdb\x17\xec\x4f\xc5\x4a\x92\x6d\x71\xae\xf6\x33\xe6\x2e\xd8\x46\x96\xdd\xfe\x0e\xaf\xd1\x94\x25\xbf\xe1\xdb\x01\xf8\x97\xae\x7c\x6e\x32\xd9\x93\x96\x5a\x1a\x4d\xa7\x32\x51\xf0\x6d\xb7\x77\x3f\xbf\x01\x00\x00\xff\xff\xd3\xe0\x18\x61\xc0\x00\x00\x00" func idtablestakingScriptsGet_proposed_tableCdcBytes() ([]byte, error) { return bindataRead( @@ -3599,11 +3560,11 @@ func idtablestakingScriptsGet_proposed_tableCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_proposed_table.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb2, 0x53, 0xc3, 0x59, 0x7d, 0xbb, 0x1e, 0xfe, 0x8e, 0x70, 0x72, 0xc5, 0x58, 0x91, 0x67, 0xc1, 0xd3, 0x89, 0x22, 0x23, 0x5, 0xf9, 0x9c, 0xf4, 0x18, 0xbd, 0x64, 0x88, 0xef, 0x61, 0xa4, 0xcb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0xca, 0x75, 0x49, 0x77, 0x1d, 0x0, 0x4c, 0x7b, 0x1a, 0xc3, 0x14, 0x3f, 0xd9, 0x9e, 0x45, 0xf1, 0x9a, 0xeb, 0x3e, 0x4e, 0x8a, 0x4, 0x5e, 0x94, 0x18, 0xcf, 0x6b, 0x8b, 0x24, 0xd6, 0x5e}} return a, nil } -var _idtablestakingScriptsGet_role_countsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\xc4\x40\x10\x46\xfb\xfd\x15\x1f\x57\x25\x8d\x87\x8d\xc8\xb5\x27\xc2\x35\x16\x1a\x7f\xc0\x9a\x4c\x92\xc5\xd9\x99\x30\x33\x8b\x45\xc8\x7f\x17\xc1\x4e\xab\x57\x3c\x78\xbc\x52\x37\xb5\xc0\x33\xeb\xd7\xed\x69\xc8\x1f\x4c\x6f\x91\x3f\x8b\x2c\x98\x4d\x2b\x4e\x7f\xc5\x29\xa5\xf3\x19\xc3\x5a\x1c\x3e\x5a\xd9\x02\x46\xd1\x4c\x1c\xb1\x12\x9c\x35\xc0\xa5\x96\x70\xcc\x6a\x10\x9d\x08\xa6\x4c\x9e\x52\x1e\x47\x72\xef\x32\x73\x8f\xb9\x09\x6a\x2e\xd2\xf5\x17\xec\xef\x37\x89\xc7\x0b\x7e\x70\xff\x70\x60\x4f\x00\x7e\xab\xff\x9c\xdd\x2d\x14\xd7\x66\x46\x12\xaf\xca\xf4\xa2\x13\x5d\xb5\x49\x78\xd7\xa7\xe3\x3b\x00\x00\xff\xff\xe7\x1d\xde\xdf\xd0\x00\x00\x00" +var _idtablestakingScriptsGet_role_countsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4a\x03\x41\x10\x87\xf1\x7e\x9f\xe2\x5f\x26\x8d\xd1\x46\x24\x5d\xcc\x9e\xb0\x20\x29\x72\x6b\x61\x79\x31\x73\xb9\xc5\xdd\x99\x63\x76\x16\x85\xe3\xde\x5d\x04\x4b\xab\xaf\xfb\xf8\xa5\x32\x8b\x1a\x5e\xb2\x7c\x05\x1f\x87\x4b\xa6\xde\x86\xcf\xc4\x37\x8c\x2a\x05\xf7\xdf\xc1\x77\xa7\x18\xe2\x7b\x3c\x3c\xbf\x76\x07\xef\xcf\x5d\xdf\x3b\xb7\xdb\x21\x4e\xa9\xa2\x7e\x68\x9a\x0d\x4a\xd6\x94\x2b\x6c\x22\xd4\x2c\x86\x9c\x4a\xb2\x8a\x51\x14\x2c\x57\x82\x4a\xa6\xea\xdc\xdc\x2e\x18\x1b\xa3\x0c\x89\x37\xdb\x3d\x96\xb7\xc0\xf6\xb4\xc7\x6f\x1e\x1e\x57\x2c\x0e\xc0\xdf\xed\x1f\xd3\xdd\x8d\xec\xd8\x54\x89\xed\x2c\x99\x4e\x72\xa5\xa3\x34\xb6\xba\xd9\xba\xf5\x27\x00\x00\xff\xff\xfe\x16\x53\xb9\xca\x00\x00\x00" func idtablestakingScriptsGet_role_countsCdcBytes() ([]byte, error) { return bindataRead( @@ -3619,11 +3580,11 @@ func idtablestakingScriptsGet_role_countsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_role_counts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x52, 0xf9, 0xab, 0x6c, 0xc9, 0xbd, 0x96, 0x38, 0x13, 0xbc, 0x3b, 0x1, 0xb0, 0x5c, 0x4, 0xc8, 0xe4, 0x78, 0xca, 0x66, 0x28, 0x95, 0xe4, 0xb4, 0x54, 0x91, 0xa5, 0xa0, 0x3f, 0x44, 0xe9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0x61, 0xf8, 0x74, 0xa8, 0xe7, 0x8c, 0x76, 0xe5, 0xed, 0x59, 0x4a, 0x68, 0x4a, 0x9f, 0xf9, 0xd9, 0xb6, 0x3f, 0xab, 0xc3, 0x63, 0xa1, 0x67, 0x38, 0x3d, 0x17, 0xee, 0x63, 0x82, 0x62, 0x40}} return a, nil } -var _idtablestakingScriptsGet_slot_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcf\x31\x4b\x34\x31\x10\xc6\xf1\x3e\x9f\xe2\x61\xab\xdd\xe6\x3d\xde\x46\x44\x90\x2b\x14\xe1\xc0\xca\x3b\x2b\xb1\x88\xd9\xc9\xdd\xe0\x6c\x66\xc9\xcc\x62\x21\x7e\x77\xd9\x1c\xa2\xa0\x69\x52\x3c\xe1\xcf\x2f\x3c\xcd\x5a\x1d\x77\xa2\x6f\xbb\xdb\x43\x7c\x11\xda\x7b\x7c\xe5\x72\x44\xae\x3a\xa1\xfb\x3d\x74\x21\x6c\x36\x38\x9c\xd8\x60\xa9\xf2\xec\xa8\xe4\x4b\x2d\x06\x3f\x11\x4c\xd4\x21\x3c\xb1\x1b\xb2\x56\x14\x1d\x09\x55\x85\x2c\x84\x98\x12\x99\xf5\x51\x64\x40\x5e\x0a\xa6\xc8\xa5\x5f\xb7\x2b\x3c\xee\x8a\x5f\x0e\xe7\xfb\xff\x05\xde\x03\x00\x08\x79\xeb\xdd\xaf\x39\x5c\xff\x81\xfc\x77\x24\x7f\x50\xa1\xfd\xd7\x2b\xeb\x87\xa7\xb5\xf8\xdc\x02\xeb\xd9\x6e\x31\xc7\xc2\xa9\xef\x6e\x74\x91\x11\x45\x1d\x99\xcb\xf8\x43\xda\xa0\x0d\x3f\x53\xe2\xcc\x34\x36\x71\x37\x84\x56\x39\x7f\xef\x5b\x12\x3e\x3e\x03\x00\x00\xff\xff\x3b\xd0\x7e\xcc\x35\x01\x00\x00" +var _idtablestakingScriptsGet_slot_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcf\x41\x4b\xf3\x40\x10\xc6\xf1\xfb\x7e\x8a\x87\x9e\x92\xcb\xdb\xd7\x8b\x88\x20\xa5\x9a\x08\x81\xe2\xa1\x89\x07\x11\x0f\x69\x32\xdb\x0e\x6e\x76\x96\xdd\x09\x0a\xe2\x77\x97\x6c\x11\x3d\xb8\x97\x85\x61\xf8\xf3\x1b\x9e\x82\x44\xc5\xbd\x93\xb7\xa6\xea\xfa\x83\xa3\x56\xfb\x57\xf6\x47\xd8\x28\x13\xfe\xbf\x37\x55\xfd\xd0\x35\xdd\x53\xb7\xbd\xdd\xd5\xdb\xaa\xda\xd7\x6d\x6b\xcc\x7a\x8d\xee\xc4\x09\x69\x88\x1c\x14\x91\x74\x8e\x3e\x41\x4f\x84\xe4\x44\xe1\x78\x62\x4d\xb0\x12\xe1\x65\x24\x44\x71\x94\x8c\x09\xf3\x01\x76\xf6\x98\x7a\xf6\xc5\x32\xbb\xc6\x63\xe3\xf5\xaa\x3c\xff\x17\x97\xf8\x30\x00\xe0\x48\x73\x67\xb7\x64\x70\xf3\x07\xef\xdf\x91\x74\x2f\x8e\xda\xef\xad\x54\x94\xcf\x4b\xf1\x25\x07\x96\xb7\xd9\x20\xf4\x9e\x87\x62\x75\x27\xb3\x1b\xe1\x45\x61\xd9\x8f\xbf\x84\x19\x98\xd1\x81\x06\xb6\x4c\x63\x96\xae\x4a\x93\x2b\xe7\xb3\x7e\x24\xe6\xf3\x2b\x00\x00\xff\xff\xd0\xf8\x5e\x99\x2f\x01\x00\x00" func idtablestakingScriptsGet_slot_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -3639,11 +3600,11 @@ func idtablestakingScriptsGet_slot_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_slot_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x48, 0xb5, 0xbb, 0x6d, 0xa6, 0x2a, 0xf, 0xfa, 0xb4, 0xc1, 0x4, 0x2, 0x12, 0x6f, 0x89, 0xa8, 0x7, 0x2f, 0x19, 0x27, 0x70, 0xe6, 0x9a, 0xc2, 0xc7, 0xa2, 0x4c, 0xd7, 0x65, 0xa4, 0x4e, 0xd0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfa, 0x17, 0x95, 0x42, 0xcd, 0xcf, 0x54, 0x6, 0x58, 0xcd, 0x76, 0x5d, 0x53, 0x5e, 0x4d, 0xde, 0x46, 0xe7, 0x2e, 0xe6, 0x51, 0xbc, 0xe7, 0x66, 0x76, 0x1, 0xb2, 0xbf, 0x7d, 0xda, 0x1f, 0x21}} return a, nil } -var _idtablestakingScriptsGet_stake_requirementsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\x03\x41\x10\x46\xfb\xfd\x15\x9f\xa9\xee\x1a\xd3\x88\x48\xc0\x4e\x02\x29\x6c\x34\xa9\xc4\x62\xb2\x99\x4b\x86\xdb\x9d\x4d\x76\x66\x51\x10\xff\xbb\xac\x96\xa6\x7d\xc3\x7c\xef\x49\x3e\x97\xea\x58\xa7\xf2\xb1\x79\xda\xd2\x3e\xf1\xab\xd3\x2c\x7a\xc4\x54\x4b\xc6\xe2\xff\x61\x11\xc2\x72\x89\xed\x49\x0c\x16\xab\x9c\x1d\x95\xbd\x55\x35\xf8\x89\xb1\xa7\x44\x1a\x19\x65\x82\x39\xcd\x7c\x80\x97\x99\xd5\x3a\x20\x68\x39\x70\x08\x14\x23\x9b\x0d\x94\xd2\x88\xa9\x29\x32\x89\x0e\xb5\x24\x5e\x61\xb7\x51\x7f\x18\x57\xd8\xad\xe5\xf3\xfe\x0e\x5f\x01\x00\x12\x77\xc7\x05\x8f\x57\x32\x6f\x8f\xec\xcf\xa2\x92\x5b\xee\x84\x5f\xf8\xd2\xa4\x72\x66\x75\x1b\xc6\xf0\xfb\xff\xd7\xd7\x27\xde\xba\xe5\xfd\x26\x7c\xff\x04\x00\x00\xff\xff\x6c\xf5\xe4\x97\xf7\x00\x00\x00" +var _idtablestakingScriptsGet_stake_requirementsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\x33\x41\x14\x45\xfb\xf9\x15\xf7\xeb\x92\xe6\x8b\x85\x88\x04\x2c\x22\xbb\x81\x05\xb5\xc8\x4e\x0a\x11\x8b\xd9\xe4\x6d\xf2\xd8\x99\x37\x9b\x99\x37\x18\x10\xff\xbb\x8c\xb6\xb6\x07\xee\xb9\x87\xc3\x1c\x93\x62\xeb\xe3\x47\xd7\x58\x37\x78\xea\xd5\x4d\x2c\x27\x8c\x29\x06\xdc\x5c\xbb\xa6\x7d\xb1\x9d\x7d\xb5\x9b\xc7\xa7\x76\xd3\x34\xbb\xb6\xef\x8d\x59\xad\x60\xcf\x9c\x91\x0f\x89\x67\x45\x22\x2d\x49\x32\xf4\x4c\x18\x9c\x77\x72\x20\xc4\x11\x59\xdd\x44\x47\x68\x9c\x48\x72\x05\x0e\x12\x8f\x64\xcc\x5c\x06\x8c\x45\x10\x1c\xcb\x22\x45\x4f\x6b\xec\x3b\xd1\xfb\xe5\x1a\xfb\x2d\x5f\xef\x6e\xf1\x69\x00\xc0\x53\x75\x5f\xf0\xf0\x47\xe0\xff\x13\xe9\x33\x0b\x87\x12\x2a\xa1\x1d\x5d\x0a\x27\x0a\x24\x9a\x17\x4b\xf3\xb3\xff\xed\xaa\x8a\xb7\xfa\xf2\xfe\xcf\x7c\x7d\x07\x00\x00\xff\xff\x94\x17\x67\xd0\xf1\x00\x00\x00" func idtablestakingScriptsGet_stake_requirementsCdcBytes() ([]byte, error) { return bindataRead( @@ -3659,11 +3620,11 @@ func idtablestakingScriptsGet_stake_requirementsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_stake_requirements.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe7, 0x86, 0xdf, 0xf1, 0xc8, 0xc4, 0x94, 0xcc, 0x38, 0x85, 0xa2, 0x94, 0x17, 0x58, 0xe4, 0xe, 0xc7, 0x91, 0x1f, 0xd6, 0x72, 0xd0, 0x98, 0x61, 0x35, 0x17, 0x5, 0x79, 0x52, 0xf2, 0xcc, 0xf3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa2, 0x42, 0x8e, 0x32, 0x9e, 0x5d, 0x9, 0x77, 0x67, 0x63, 0xb3, 0x34, 0x22, 0x62, 0x79, 0x87, 0xaf, 0x67, 0x2c, 0x9b, 0xed, 0x6c, 0x82, 0xf7, 0x38, 0xaa, 0x16, 0x74, 0xcd, 0x2a, 0xf8, 0x5d}} return a, nil } -var _idtablestakingScriptsGet_tableCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xca\xc2\x40\x10\x06\xfb\x7b\x8a\x8f\x54\x49\xf3\xa7\xff\xeb\x20\xa4\xb1\x49\x3a\xb1\x38\x2f\x9b\xcb\xe2\x65\x2f\xec\x6d\x10\x11\xdf\x5d\x04\x3b\xad\x87\x19\x86\xd7\x2d\xab\xe1\x90\xf2\xad\xef\x46\x7f\x49\x34\x98\xbf\xb2\x44\xcc\x9a\x57\x54\xdf\xa0\x72\xae\x6d\x31\x2e\x5c\x50\x82\xf2\x66\x50\xb2\x5d\xa5\xc0\x16\x42\xd8\x55\x49\x0c\x3c\x91\x18\xdb\x1d\xf6\x56\x91\x48\xa2\x2d\xce\xf9\x10\xa8\x94\xda\xa7\xd4\x60\xde\x05\xab\x67\xa9\x9b\x7f\x9c\x06\x53\x96\x78\xc6\xc3\x01\xf8\x14\x7f\x5c\xfd\x45\xb2\x63\x9e\xa8\xef\x4a\xdd\xb8\xe7\x2b\x00\x00\xff\xff\x9f\x7f\xe9\x36\xbe\x00\x00\x00" +var _idtablestakingScriptsGet_tableCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xbf\x4a\x04\x31\x10\x07\xe0\x3e\x4f\xf1\x2b\xef\x1a\xcf\xda\xee\x24\x2b\x04\x64\x0b\x93\x46\xc4\x62\xff\xcc\x66\x07\x77\x27\xcb\x64\x82\x8a\xf8\xee\x22\x58\xfa\x02\x1f\x1f\xef\x47\x51\xc3\xc3\x56\xde\x83\x4f\xc3\xb8\x51\xb4\xe1\x8d\x25\x63\xd1\xb2\xe3\xf6\x23\xf8\xae\x4f\x21\x3d\xa7\xeb\xfd\x63\x77\xf5\xfe\xa9\x8b\xd1\xb9\xcb\x05\x69\xe5\x8a\x3a\x29\x1f\x06\x25\x6b\x2a\x15\xb6\x12\xa6\xa6\x4a\x62\xe0\x99\xc4\xd8\x3e\x61\xbf\x2a\x36\x92\x6c\xab\x73\x47\x1b\xb1\x34\xc1\x3e\xb0\x9c\xce\x77\x78\x89\xa6\x2c\xf9\x15\x5f\x0e\xc0\x9f\xf4\xcf\xe7\x26\x93\xf5\x65\xa6\xe0\xeb\xe9\xec\xbe\x7f\x02\x00\x00\xff\xff\x94\x0c\xfa\xd5\xb8\x00\x00\x00" func idtablestakingScriptsGet_tableCdcBytes() ([]byte, error) { return bindataRead( @@ -3679,11 +3640,11 @@ func idtablestakingScriptsGet_tableCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_table.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x37, 0xc8, 0x81, 0x80, 0x7d, 0x40, 0xfd, 0xf, 0xc7, 0x71, 0xe, 0x59, 0x88, 0xdd, 0x66, 0x97, 0x72, 0x23, 0xc6, 0xf1, 0x52, 0xa2, 0x60, 0x27, 0xb8, 0x71, 0x9d, 0x2, 0xcf, 0x39, 0x24, 0x16}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0xf8, 0x5a, 0xde, 0x69, 0xf4, 0xb2, 0x52, 0xda, 0x8c, 0xf5, 0xfd, 0xb, 0x8, 0x27, 0x24, 0xc0, 0x38, 0xc, 0x44, 0x35, 0xdf, 0xfc, 0x26, 0xe7, 0xe6, 0x2d, 0xd, 0x2d, 0x51, 0x84, 0x99}} return a, nil } -var _idtablestakingScriptsGet_total_stakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x4f\xc3\x30\x14\x84\x77\xff\x8a\x6b\xa7\x44\x48\x6d\x07\x40\x08\x29\x0b\xaa\x2a\x75\x61\x69\x3a\x21\x06\x37\x7d\x29\x56\x1c\xbf\xca\x7e\x01\x2a\xd4\xff\x8e\x6a\x97\x90\x08\x3c\xd8\xb2\x7c\xf7\xdd\xf9\x99\xf6\xc8\x5e\xb0\xb2\xfc\xb1\x5e\x96\x7a\x67\x69\x23\xba\x31\xee\x80\xda\x73\x8b\xe9\xdf\x87\xa9\x52\xba\xaa\x28\x84\x4c\x5b\x9b\xa3\xee\x1c\x5a\x6d\x5c\x96\x3f\x62\xbb\x32\x9f\xf7\xb7\xf8\x52\x00\x60\x49\x10\x44\x37\xb4\x2f\xb9\x21\x17\x50\xfc\x93\x32\x3b\x90\x94\x2c\xda\x26\xcd\x26\xea\x9f\x4e\xcf\xbc\xa7\xf2\x74\xa4\x2c\x57\x91\x35\x9f\xa3\xd2\xb6\xea\xac\x16\x82\xbc\x11\xe4\xe2\x81\xeb\xda\x1d\x79\x70\x0d\x49\x11\x29\x2f\x5a\xde\xb5\x4f\xaa\xc4\xec\xcb\x15\x58\xcc\x16\x51\x51\xb3\x87\xbb\x06\xc1\xb8\x51\xd9\x59\x43\xa7\x70\xfd\xc8\xb5\xc0\x92\xe1\x58\x50\x71\xe7\x04\x69\x02\xd1\x1e\x7a\x91\xa9\x7f\x79\x93\x02\xdb\xb5\x93\x87\xec\x2e\x1f\x60\x2e\x6b\x50\x0a\xc5\xe8\x76\x33\xaa\xf0\xf2\xc3\x7a\x9d\xf4\xfe\xb3\x4a\x7b\x3c\x3c\x49\xe7\xdd\x90\xa0\xce\xdf\x01\x00\x00\xff\xff\x4d\x18\xa4\x68\xcf\x01\x00\x00" +var _idtablestakingScriptsGet_total_stakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x6b\xfa\x30\x1c\xc5\xef\xfd\x2b\x9e\x37\xe5\x07\xea\xe1\xb7\x31\x06\x3d\x28\x55\x28\x0c\x0f\x6b\x3c\x8c\xb1\x43\xac\xdf\xba\xd0\x34\x91\xe4\x9b\x4d\x19\xfe\xef\xc3\xc4\x39\x0b\xeb\xa1\x21\xf0\xde\xe7\x7d\xa2\xba\xbd\x75\x8c\xa5\xb6\x9f\x65\x21\xe4\x46\x53\xc5\xb2\x55\x66\x87\xc6\xd9\x0e\xd3\x43\x59\x2c\x56\xa2\x14\x2f\x62\x36\x7f\x5a\xcc\x8a\xe2\x79\x51\x55\x59\xb6\x0f\x1b\x34\xc1\xa0\x93\xca\x0c\x47\x8f\x58\x2f\xd5\xe1\xfe\x3f\xbe\x32\x00\xd0\xc4\xf0\x2c\x5b\xda\x0a\xdb\x92\xf1\xc8\xff\xe0\x8f\x77\xc4\xc2\xb2\xd4\x29\x53\xc5\xfc\xfc\xb8\xb2\x5b\x12\xc7\x3d\x0d\x47\x59\x64\x4d\x26\xa8\xa5\xae\x83\x96\x4c\xe0\x77\x02\x9f\x3b\x30\xa1\xdb\x90\x83\x6d\xc0\x69\x22\xed\xc5\xca\x87\x74\x29\x95\x98\x57\xb9\x1c\xd3\xf1\x34\x26\x1a\xeb\x60\x2e\x43\x50\xa6\x27\x3b\x6e\xe9\xe8\x2f\x0f\xb9\x08\x14\x16\xc6\x32\x6a\x1b\x0c\x43\xd6\x35\x79\x1f\xeb\xfe\x1a\x52\xcd\x2f\x6f\x90\x63\x5d\x1a\x7e\x18\xde\x8d\x6e\x30\xe7\xef\x46\x0a\x79\xef\xf6\xaf\xa7\xf0\xfa\xc3\x7a\x1b\x5c\xfb\xa7\x2c\xfd\xe3\xe1\x88\x83\x33\xb7\x84\xec\xf4\x1d\x00\x00\xff\xff\x92\x54\xac\x93\xc9\x01\x00\x00" func idtablestakingScriptsGet_total_stakedCdcBytes() ([]byte, error) { return bindataRead( @@ -3699,11 +3660,11 @@ func idtablestakingScriptsGet_total_stakedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_total_staked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xee, 0x84, 0x69, 0x78, 0x9e, 0xaf, 0x71, 0x2a, 0xc4, 0x96, 0xa3, 0xa6, 0x92, 0x57, 0x3c, 0x53, 0xe3, 0x4, 0xe7, 0x79, 0x41, 0x9e, 0x30, 0xd3, 0xee, 0x4c, 0xf1, 0x6c, 0xee, 0x29, 0x62, 0x56}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0xe, 0x2f, 0xe3, 0x9c, 0xa, 0x4d, 0xce, 0x85, 0x12, 0x72, 0x14, 0x74, 0x65, 0x62, 0x3b, 0x74, 0x22, 0x25, 0xaf, 0x1a, 0x94, 0x4d, 0x5d, 0x4c, 0x74, 0xb6, 0x76, 0xd3, 0x6d, 0x7e, 0xf6}} return a, nil } -var _idtablestakingScriptsGet_total_staked_by_typeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\x03\x41\x10\x46\xfb\xfd\x15\x9f\xa9\xee\x1a\xd3\x88\x48\xc0\x46\x24\x90\xc6\x26\x9b\x4a\x2c\x26\x7b\x73\xc9\x72\x73\x33\xc7\xee\x04\x0d\xe2\x7f\x97\x9c\x5a\x99\x76\xe6\xe3\xbd\x97\xc7\xc9\x8a\x63\x2d\xf6\xbe\x79\x8e\xb4\x17\xde\x3a\x0d\x59\x0f\xe8\x8b\x8d\x58\xfc\x7f\x2c\x42\x58\x2e\x11\x8f\xb9\xa2\xa6\x92\x27\x47\x61\x3f\x15\xad\xf0\x23\x63\x4f\x42\x9a\x18\xd6\xa3\x3a\x0d\xdc\xc1\x6d\x60\xad\x97\x03\x41\xad\xe3\x10\x28\x25\xae\xb5\x21\x91\x16\xfd\x49\x31\x52\xd6\xa6\x98\xf0\x0a\xbb\x8d\xfa\x43\xbb\xc2\x6e\x9d\x3f\xee\xef\xf0\x19\x00\x40\xd8\xff\x60\x8f\x57\x4a\x6f\x0f\xec\xd1\x9c\x24\xce\xa6\xed\xbc\x7c\x3a\xbf\x58\xc7\xf1\x3c\x71\xd3\x86\x99\xf2\x53\xf9\x0b\x7a\xbd\xe8\xde\x6e\xc2\xd7\x77\x00\x00\x00\xff\xff\x86\x18\xde\x12\x00\x01\x00\x00" +var _idtablestakingScriptsGet_total_staked_by_typeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xc1\x4a\xc3\x40\x14\x45\xf7\xf3\x15\xd7\x5d\xbb\xb1\x2e\x44\xa4\xe0\xa2\x25\x29\x04\xa4\x0b\x33\x5d\x88\xb8\x98\x34\x2f\xed\x90\xc9\x7b\xc3\xcc\x0b\xb6\x88\xff\x2e\x89\xba\x73\x7b\xb9\x9c\x73\xfc\x10\x25\x29\x76\x41\x3e\xaa\xc2\xba\x26\x50\xad\xae\xf7\x7c\x42\x97\x64\xc0\xdd\xa5\x2a\xca\xbd\xad\xec\xab\xdd\x6c\x9f\xcb\x4d\x51\xbc\x94\x75\x6d\xcc\x6a\x05\x7b\xf6\x19\xf9\x98\x7c\x54\x24\xd2\x31\x71\x86\x9e\x09\x8d\x0b\x8e\x8f\x04\xe9\x90\xd5\xf5\xd4\x42\xa5\x27\xce\xd3\xe0\xc0\xd2\x92\x31\x71\x6c\xd0\x8d\x8c\xc1\x79\x5e\x24\x09\xb4\xc6\xa1\x62\x7d\x5c\xae\x71\xd8\xf9\xcb\xc3\x3d\x3e\x0d\x00\x04\xd2\x3f\xc8\xd3\x3f\x8d\xb7\x27\x52\x2b\xea\x82\x9d\x0d\xf5\xfc\xdc\x5e\xf7\xd2\x92\xbd\x46\x5a\x2c\xcd\x4c\xf9\xa9\xfb\x05\xbd\x4d\xba\xf7\x1b\xf3\xf5\x1d\x00\x00\xff\xff\xa3\x91\xa6\x55\xfa\x00\x00\x00" func idtablestakingScriptsGet_total_staked_by_typeCdcBytes() ([]byte, error) { return bindataRead( @@ -3719,11 +3680,11 @@ func idtablestakingScriptsGet_total_staked_by_typeCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_total_staked_by_type.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xa5, 0x8b, 0x42, 0xe8, 0x8b, 0x45, 0x62, 0x3c, 0x6, 0x1b, 0x16, 0xa7, 0xc3, 0xfc, 0xf9, 0x75, 0xc8, 0x3b, 0xbe, 0x43, 0x97, 0xee, 0x83, 0xd6, 0x7f, 0xa5, 0x89, 0x4d, 0x3c, 0xdb, 0xe6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0x23, 0xae, 0xad, 0x6a, 0x8a, 0xa, 0x6e, 0x26, 0x92, 0x41, 0x25, 0x43, 0x64, 0x93, 0x17, 0xde, 0xa4, 0x31, 0x94, 0x9d, 0xb7, 0xb2, 0x15, 0xcb, 0xe1, 0xf8, 0x7b, 0x9a, 0x28, 0xf6, 0xa4}} return a, nil } -var _idtablestakingScriptsGet_weekly_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x8a\x83\x40\x10\xc6\xf1\x7e\x9f\xe2\xc3\x4a\x9b\xb3\x39\xae\xb8\xfa\x4e\x48\x17\x88\x79\x80\x71\x1d\x75\x71\xdd\x91\x9d\x91\x24\x84\xbc\x7b\x10\xd2\x25\xed\xf7\xc1\x8f\x7f\x58\x56\xc9\x86\x26\xca\xe5\xf0\xd7\x52\x17\xf9\x64\x34\x87\x34\x62\xc8\xb2\xa0\x78\x3f\x0a\xe7\xea\x1a\xed\x14\x14\xea\x73\x58\x0d\x99\x6d\xcb\x49\x61\x13\xa3\xa3\x48\xc9\x33\x64\x80\x1a\xcd\xdc\xc3\x64\xe6\xa4\xfb\x40\x48\xd2\xb3\x73\xe4\x3d\xab\x96\x14\x63\x85\x61\x4b\x58\x28\xa4\xb2\xfa\xc5\xb9\x09\xd7\x9f\x6f\xdc\x1d\x80\x17\xfa\x21\xec\x6b\x64\xfb\x5f\xc5\x4f\xed\x0e\x1f\xe9\x26\x9b\x95\x95\x7b\x3c\x03\x00\x00\xff\xff\x18\x12\xd8\x60\xca\x00\x00\x00" +var _idtablestakingScriptsGet_weekly_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4b\xc4\x30\x14\xc7\xf1\x3d\x7f\xc5\x6f\xbc\x5b\x3c\x07\x71\x70\x3b\x49\x0e\x0a\x22\x62\xe3\xe0\xf8\xda\x7b\x6d\x43\xdb\xbc\x90\xbc\x60\x45\xfc\xdf\xa5\xe0\x78\xeb\x77\xf8\xf0\x0d\x6b\x92\xac\xb8\x2c\xf2\xd5\x58\x4f\xdd\xc2\xad\xd2\x1c\xe2\x88\x21\xcb\x8a\xfb\xad\xb1\xee\xd5\x37\xfe\xd3\x9f\x9f\x5f\xdc\xd9\xda\x77\xd7\xb6\xc6\x9c\x4e\xf0\x53\x28\x28\x7d\x0e\x49\x91\x59\x6b\x8e\x05\x3a\x31\x3a\x5a\x28\xf6\x0c\x19\x50\x94\x66\xbe\x42\x65\xe6\x58\xf6\x40\x88\x72\x65\x63\x52\xed\x30\xd4\x88\x95\x42\x3c\x1c\x9f\xf0\x71\x09\xdb\xe3\x03\x7e\x0c\x80\x7f\xec\xc6\xd2\xdd\xc8\xea\x92\xf4\x93\xdf\xc1\x37\xfa\x96\xaa\x87\xa3\xf9\xfd\x0b\x00\x00\xff\xff\xaa\x9e\x1d\x2b\xc4\x00\x00\x00" func idtablestakingScriptsGet_weekly_payoutCdcBytes() ([]byte, error) { return bindataRead( @@ -3739,11 +3700,31 @@ func idtablestakingScriptsGet_weekly_payoutCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_weekly_payout.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0x33, 0xf7, 0xf1, 0xb5, 0x1, 0x7e, 0x39, 0x3f, 0xe8, 0x81, 0x91, 0x4, 0x3e, 0x4c, 0x38, 0xba, 0x10, 0x42, 0xdd, 0xcc, 0x18, 0xf7, 0xcf, 0xa, 0xd1, 0x9e, 0x85, 0x1d, 0xc7, 0xe2, 0x81}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9b, 0xeb, 0x9b, 0x20, 0x40, 0xd3, 0x5b, 0x8, 0x6d, 0xe7, 0x22, 0xb, 0xdd, 0x87, 0xa4, 0x41, 0xf2, 0xb5, 0xc2, 0x43, 0x2d, 0x8f, 0x9a, 0x65, 0xf4, 0x31, 0xfa, 0xd2, 0x6f, 0xda, 0x4f, 0x9d}} + return a, nil +} + +var _inspect_fieldCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xc1\x09\x42\x31\x0c\x06\xe0\x7b\xa7\xf8\x8f\x7a\x91\x22\x5a\x1f\xde\xbc\x74\x01\x71\x80\xbe\x9a\x42\xc0\x26\x8f\x98\xea\x03\x71\x77\x17\x70\x81\x8f\xfb\xa2\xe6\xc8\x0f\x7d\x5f\xc9\x5e\x5c\xe9\x52\xab\x0e\x71\x34\xd3\x8e\xb8\xb6\xe9\x9e\x28\x1e\xa7\x34\xc7\xb2\x8f\xf5\x14\xc2\x32\x66\xb4\x21\xe8\x85\x65\xb3\x3d\xe3\x96\x79\x4d\x07\x7c\x02\x00\x18\xf9\x30\xf9\xe3\xed\xdc\x8a\x3c\x4b\x75\x56\xc9\x44\xe1\xfb\x0b\x00\x00\xff\xff\x7c\xe1\x51\x3b\x7a\x00\x00\x00" + +func inspect_fieldCdcBytes() ([]byte, error) { + return bindataRead( + _inspect_fieldCdc, + "inspect_field.cdc", + ) +} + +func inspect_fieldCdc() (*asset, error) { + bytes, err := inspect_fieldCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "inspect_field.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x74, 0xeb, 0x82, 0x68, 0x87, 0xc8, 0xaf, 0x97, 0x60, 0xf6, 0x63, 0x18, 0x23, 0x85, 0x7b, 0xb6, 0xf6, 0xbb, 0x8c, 0x4d, 0x40, 0x9c, 0x25, 0xc, 0xc5, 0x56, 0xa, 0xdf, 0x63, 0xa8, 0x28, 0xea}} return a, nil } -var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xde\x63\x8d\x24\x0b\xd7\xe8\xa2\xc5\xa6\xe8\xa2\x4d\x77\xcf\x13\x69\x6c\x11\xa6\x48\x95\xa4\x6c\x18\x8b\xbc\x7b\x41\x51\x7f\x94\x25\x3b\x6e\x57\x87\xc0\xa2\xe6\xf7\x9b\x99\x8f\x13\x96\x17\x52\x19\xd8\xa8\x53\x61\x64\x50\xbf\x7d\xe2\xf2\xf8\x22\xf7\x24\x60\xab\x64\x0e\xb3\xf6\x7d\xd6\x4a\x94\x62\xc7\x5e\x39\x79\x52\xfd\xb3\x56\xf2\x59\x26\x7b\x4a\xab\x33\x5d\x0b\xf6\x8f\x66\x41\x10\xc7\x31\xbc\x28\x14\x1a\x13\xc3\xa4\x00\x93\xa1\x01\x93\x11\xe4\xc8\x04\x98\xca\x03\xa6\x39\x13\x70\x94\x25\x4f\x41\xb3\x9d\xa8\x94\x8c\x84\x44\x11\x1a\x02\x04\x9d\xa1\xa2\x14\x30\x49\x64\x29\x0c\xa0\x48\x01\x05\x94\x82\x57\xbe\x2a\x71\x74\x9f\xb6\x52\x01\x42\xa9\x49\x05\x81\xe9\xdc\x86\x01\x00\x40\x81\xca\x30\xe4\x6b\xeb\xee\x4b\xf9\xca\x59\xf2\x99\x4e\xab\x1a\x9e\xe8\x33\x9d\x9e\x99\x36\xbf\x08\xa3\x4e\x0b\x88\x63\xf8\x46\x6c\x97\x99\x15\x7c\x58\x2e\xfb\xea\x7f\x6b\x52\x37\x68\xff\x54\x6b\x6f\x4b\x7e\xab\xea\x87\xe5\x72\x19\xcc\x01\xbe\x07\xce\xbf\xa2\x02\x15\x85\x15\x5c\x2b\xc0\xd2\x64\xe1\xcf\x52\x29\x79\xfc\x8a\xbc\xa4\x39\xdc\xad\x1d\x40\xf3\x46\xc3\x3e\x71\x0c\x1b\x87\xa3\x45\x5d\xd0\xb1\x81\x51\x3b\x1c\xd3\xd4\x7e\x60\x0a\xf6\x74\xd2\xad\x16\x27\x53\xa3\x5e\xdb\x84\x47\xa8\x7f\x85\x05\x9e\x48\xad\x5c\xd5\xe6\x9e\x86\xc5\xfd\x9a\x7c\xab\xe0\x99\x8f\xac\xf7\x08\xd3\x34\x2c\x3a\x7c\x46\xeb\x15\xb5\x02\x0b\xc8\x50\x67\x6b\xbe\x93\x8a\x99\x2c\x9f\x92\xf7\x84\x16\x70\xac\xc1\x1d\x17\x76\x5f\xe7\xb7\x07\xe9\x95\xf6\x7a\x8c\xbe\xf8\xe5\x10\x7d\xd9\x26\xc2\x36\xc4\x1e\xe8\xa3\x01\x9e\x35\xde\x85\xe8\xce\x65\x27\x42\x3b\x17\x3c\x8b\xab\x6b\x3c\x84\x42\xb1\x83\xfd\xc5\x99\xd8\xdb\xc9\xb6\xad\xa8\x8d\xb4\x43\x7d\xc0\x92\x1b\xaf\x8b\xaa\x93\x0d\x16\xf8\xca\x38\x33\x27\x78\x1c\x54\x21\x69\x3e\x31\xd2\x91\xb5\x82\x3b\x8a\x98\xd6\x25\xb5\x66\xec\xf3\x50\x0d\x88\xc7\x5b\xd1\x37\x66\xb2\x54\xe1\x71\x0e\x77\x2d\xed\x45\x5f\xad\xbf\x27\x4f\x37\x8c\x6b\xbb\xf1\xb6\x11\xab\xa4\xfc\xf4\x5a\x7e\x72\x3c\x54\xb3\x59\x8e\x02\x77\xa4\xaa\xe9\xaa\x73\x64\x06\x2c\xd9\xd9\xa4\x3d\x26\xf3\xd2\xe6\x1d\x71\xfe\x5e\x9b\x78\xb8\xf7\x18\x36\x72\x0e\x9f\xcf\x04\xc3\x0a\xb2\xd5\x10\xb9\xa9\x36\x6e\x30\xd3\x78\xa0\xf0\xe1\xfe\xdc\xf1\x02\x8c\x5c\xf9\xae\xcf\x9d\xfe\xe5\xac\x7c\x41\x93\xf5\x60\xb1\x99\x98\x9e\xd4\x74\x1d\x3d\xc0\x2f\x14\xf5\x4a\x1d\xaf\x44\xf9\x14\x7a\x7e\xec\xf3\xff\xf2\xfa\x55\xf2\x74\xb2\x34\x2f\x9d\x84\xef\xd7\x61\xbc\x4e\x53\x45\x5a\xaf\x06\xf5\x40\x77\xbc\xf0\x34\xfa\x20\xae\x26\x20\x6d\x15\x26\xe8\xc0\x2b\xb4\x3f\x1c\xf7\xbd\x64\x86\x8e\x07\xa5\xef\x25\xd5\xc3\x66\xcc\xb7\x05\x89\x89\xad\xdc\x60\x01\x8f\x5e\x24\x17\xca\x7b\x37\xe5\x6c\x50\xba\xdb\x62\x1a\x83\xc3\x0b\xa2\x22\x41\x9d\x85\x75\xbc\x0b\x40\x33\xda\xf2\xb5\xf2\x6f\x62\x2b\x1d\xd9\x4d\x35\x46\x75\x93\x6c\x24\xe7\xe4\x36\x9d\x47\x77\xe3\x35\xd9\xfa\xed\xfe\x5a\xdd\xdb\x63\xb9\x0f\xcc\x8c\xf4\xaf\xdd\xb3\xa6\xa7\x73\xa0\x3f\x86\x8e\x8f\x90\x7d\x3e\x7e\x84\x02\x05\x4b\xc2\xd9\xa6\xda\xc2\x84\x34\xe0\x42\x04\x45\x5b\x52\x24\x12\xb2\xbc\xed\x36\xb5\xa4\xb5\x3e\xeb\x01\x31\x06\x82\x6d\xed\x66\x0d\xf0\x1c\x7a\x03\x70\xcb\x58\x34\x4b\xdf\x50\xb5\x5f\xe7\xe9\x79\x5a\xbb\xd5\xe9\xfd\xd3\x14\xc7\xf0\xc7\x81\x94\x62\xa9\xdb\x9f\x52\xda\x5a\x8e\xed\x2d\xd1\x8a\x12\x62\x07\x52\x13\x5c\xeb\xf5\x5c\x29\x9a\xae\x8b\xdd\x1d\xdc\x5d\x2f\x7f\xd6\x66\x46\x6f\x18\xbb\xb5\x35\x7e\xdc\x06\x9d\xa3\xda\xeb\xe6\xac\xbe\x79\x34\xa0\xee\x96\xe2\x7e\x7f\xf6\x18\x5e\x77\x69\xdf\x70\xb1\x3e\xdc\x7d\xf7\x09\xb8\x09\xf7\xed\x29\xbc\x85\x4e\xdf\x81\x51\x83\xd0\x08\x7d\x0e\x13\xf0\x0b\x6c\xe7\x77\x12\xd6\x89\xda\x16\xa5\x01\x21\x55\x8e\xbc\xc3\x97\x09\xfb\x1f\x87\x5d\xb5\x2d\xf4\xa5\x60\xff\x94\x04\x45\x7f\x7e\xda\x91\x6f\xac\xff\x38\x30\x27\xf7\x8e\xff\x8a\xdc\x30\xce\x69\xcc\x1c\xc6\x9f\x2e\x20\x67\xff\xbe\x05\x6f\xc1\xbf\x01\x00\x00\xff\xff\xaf\xee\x68\xd2\x57\x0e\x00\x00" +var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x57\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\xf6\x50\xc8\x80\x63\x79\x8f\x15\x92\x2e\x5c\xc7\x69\x17\x71\x37\x41\x92\x6d\xce\x8c\x34\xb6\x08\xcb\xa4\x4a\x52\x76\x8d\x20\xff\xbd\xa0\xa8\x17\x25\xca\x8f\xa2\xc5\xfa\x64\x49\xdf\xbc\xbe\x79\x70\x48\xb7\x19\x17\x0a\xe6\xe2\x90\x29\xee\x95\x4f\x77\x29\xdf\xbf\xf0\x0d\x32\x58\x09\xbe\x85\xe9\xdf\x77\xcb\x87\xd7\x97\x87\xfb\xc5\xb7\xd9\xed\xed\xd3\xe2\xf9\xb9\x06\xe6\x6c\x4d\xdf\x52\xb4\xc1\xdf\xbf\xfd\xf6\xf5\xd7\xe5\xc2\x25\xb0\xe4\xd1\x06\xe3\x02\x2e\x2b\xfc\xf2\x61\x7e\xbf\xb8\xb5\xd0\x5e\x10\x04\xf0\x22\x08\x93\x24\x52\x94\x33\x50\x09\x51\xa0\x12\x84\x2d\xa1\x0c\x54\x61\x8e\xc4\x5b\xca\x60\xcf\xf3\x34\x06\x49\xd7\xac\x10\x52\x1c\x22\x81\x44\x21\x10\x90\x09\x11\x18\x03\x89\x22\x9e\x33\x05\x84\xc5\x40\x18\xe4\x2c\x2d\x9c\x28\xe0\xc4\x7c\x5a\x71\x01\x04\x72\x89\xc2\xf3\x54\x63\xd6\xf7\x00\x00\x32\x22\x14\x25\xe9\x4c\x9b\x7b\xcc\xdf\x52\x1a\xdd\xe3\x21\x2c\x29\x9b\xdc\xe3\x61\x49\xa5\x5a\x30\x25\x0e\x63\x08\x02\x78\x45\xba\x4e\x54\x08\x9f\xa7\xd3\xb6\xf8\x77\x89\xe2\x02\xe9\x9f\x4b\xe9\x55\x9e\x5e\x2a\xfa\x79\x3a\x9d\x7a\x23\x80\x77\xcf\xd8\x17\x98\x11\x81\x7e\x41\x57\x08\xb3\x5c\x25\x33\xc3\xc8\xa8\x82\xe8\x5f\x10\xc0\xdc\x10\xa7\x69\x66\xb8\xaf\x78\x93\x86\xb8\x38\xd6\x1f\xa8\x80\x0d\x1e\x64\x2d\x95\xa2\x2a\x69\x2e\x75\xc2\x4d\xdb\x82\x9f\x91\x03\x8a\xd0\xa4\x6a\x64\x49\x69\xb2\xcf\x91\xa9\x85\x2c\x33\x13\xed\xc5\x84\xc4\xb1\x9f\x35\xc4\x38\x13\x35\xa9\x01\x63\x48\x88\x4c\x66\xe9\x9a\x0b\xaa\x92\xed\x10\xde\x02\x8d\x61\x5f\xb2\xea\x06\x9b\xaf\xa3\xcb\x9d\xb4\x72\x7a\xda\x47\x1b\x7e\xdc\x45\x1b\x5b\x79\x58\xbb\xd8\x22\xde\xe9\x60\xaf\xe2\x8e\x78\xd7\xc7\x0e\xb8\xd6\x07\xf6\xfc\x6a\x0a\x90\x40\x26\xe8\x4e\xff\x4b\x29\xdb\xe8\x96\xd6\x25\x29\x15\xd7\xdd\xbc\x23\x79\xaa\xac\x4a\x2a\xde\xcc\x49\x46\xde\x68\x4a\xd5\x01\x6e\xec\x2c\xd4\x58\xfd\x9b\x68\x8d\xd7\x3f\xd5\x03\x6e\xf2\xa7\x16\xfe\xc5\xb7\x40\x85\x37\xa5\x0b\xc1\xaa\x82\x16\xc8\x71\x0f\xa8\x88\x58\xa3\x0a\x21\xd0\xfe\x91\x75\x57\xc0\xc2\x8f\xac\xa7\x2f\x5f\x20\x23\x8c\x46\xfe\xa7\x79\x31\xc3\x18\x57\x26\x60\xed\x1d\x98\x91\x5a\xe8\x80\xa8\x0e\xee\x93\x4d\x58\x3d\xea\xcc\x48\x2b\x07\xe3\x96\x30\xb2\x46\x51\xf4\x6d\xc9\x1a\x55\xa0\xe7\xa6\xa6\xd1\x1a\x8a\x16\x91\x69\x33\x9c\xff\x28\x55\x5c\x5f\x59\x23\x7b\x62\x0c\x2e\x7b\x40\xbf\x48\x42\xd8\xcd\xc5\x50\x63\x48\xb2\x43\xff\xfa\xaa\x6f\x70\x0c\x8a\x87\xb6\xc9\xbe\xb1\x67\xc3\xf4\x23\x51\x49\x8b\x0e\x1d\x81\x6a\xa1\x2e\xab\x88\x13\x26\x1d\x15\x72\x42\xe2\xd1\xd4\x8f\x76\x72\xb8\x68\xce\x0f\xb4\x56\x31\x3a\x56\x39\x76\xfe\xdd\x65\x53\xf3\xf4\x3b\x4f\xe3\xc1\x14\xbf\x34\x08\x3b\x74\x93\xb3\x59\x1c\x0b\x94\x32\xec\xe4\x95\x98\xd7\x76\xc0\xed\xa4\x84\x03\x29\x6a\xc2\x73\x0f\xaa\xa2\x60\x2c\xad\xd7\x57\xad\x20\xba\x06\x3b\xcc\xb6\x82\x69\x51\x3a\x3e\x65\xd4\x51\x19\x2d\x4d\xef\x8e\xe4\x95\x92\x5f\xd9\x8a\x7f\x74\x4a\xe6\x38\xda\xcc\xc5\x7e\xb1\x38\x0b\xc5\x1d\x8e\x2b\x9a\x3a\xd7\xc5\xb1\xf5\xa3\x3a\xc2\x9c\x99\xff\x53\x3f\xc0\xf9\x73\xb5\xbd\x36\xea\x43\xa5\xdd\x2c\xce\x0e\x31\xac\xf1\x34\x45\xb3\x85\xde\x18\x61\x9b\xad\x37\x2e\x04\xdf\xbb\xea\xa4\x23\xee\x60\x4c\x6f\xc0\xc3\x51\x77\xe4\xff\x7d\xf4\xc6\x45\x10\xb8\x42\x81\x2c\x42\x1d\xbd\xa1\x21\xaa\xb5\xb7\x09\x70\x05\xaf\x7b\xbb\xda\xd0\x2c\x83\x56\x21\x5d\x32\x17\xaa\x45\xbc\x2b\xda\x6e\xc1\xe1\x81\x32\x33\xeb\xac\xab\xba\x5d\x9d\x10\x04\xf0\xb0\x43\x21\x68\x6c\x16\xdc\x18\x57\xc5\xd1\xda\x5c\x75\x04\x46\x48\x77\x28\x06\x8e\xac\x9c\xe9\x1a\xf2\x03\xb3\x0c\x35\xa7\xfc\x53\x29\xe6\x3c\x98\xf5\x1a\x5d\xe9\x35\x77\x98\x2d\x11\x1b\x59\xbd\x2b\x0f\x6c\x09\x44\x36\xd7\x12\xb7\x79\xd3\x93\x33\x76\x78\x42\xc9\x73\x11\xe1\xbb\x75\xf7\x9a\x54\x6e\x74\xc7\xce\xa0\xbf\x67\xcc\x99\x33\x0f\x24\x2b\xf0\x2c\x57\xc0\xb8\xd8\x92\xb4\x09\x9c\x32\x7d\x19\xd3\xb7\x10\xcd\x49\xce\xe8\x5f\x39\x42\xd6\xd6\xf1\xdf\xc6\x6a\x88\xbc\x3b\x2f\xe2\x53\x7b\x9b\xe9\xae\x0f\xef\xc3\xfb\x27\x00\x00\xff\xff\xee\x39\xfd\xd7\x2b\x0f\x00\x00" func lockedtokensAdminAdmin_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3759,11 +3740,11 @@ func lockedtokensAdminAdmin_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8, 0x7d, 0x60, 0xa4, 0xb3, 0xc9, 0x1d, 0x40, 0x3b, 0xe2, 0xeb, 0x74, 0xb5, 0x11, 0x4b, 0x52, 0xa3, 0x6d, 0xd6, 0xa3, 0x70, 0x4d, 0xea, 0x5, 0xab, 0xb5, 0x40, 0x3f, 0x87, 0x25, 0xb2, 0xb8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x60, 0x18, 0xb5, 0x3a, 0x77, 0x18, 0x85, 0x6e, 0x97, 0xa3, 0x8f, 0xcd, 0xf8, 0x4e, 0x1a, 0x1, 0xe, 0x28, 0x32, 0x4, 0x29, 0x8e, 0x94, 0x96, 0x66, 0xa6, 0x68, 0xd, 0xb0, 0xd8, 0x9c, 0x99}} return a, nil } -var _lockedtokensAdminAdmin_deploy_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xc1\x4a\xc4\x30\x10\x86\xef\x7d\x8a\x39\x49\x0b\xa5\x0f\x50\xf0\xb0\x8a\x20\xac\x78\x59\xf1\x22\x1e\xc6\x64\x6c\x43\xdb\x4c\x98\x4c\x59\x83\xec\xbb\x4b\x37\x76\xb7\x62\x0f\x7f\x33\x99\x7f\xfe\xc9\xe7\xa6\xc0\xa2\x70\x2f\x29\x28\x17\x85\x0a\xfa\x88\x46\x1d\xfb\xd2\xb0\x57\x41\xa3\xcf\x38\x51\x0b\x07\x15\xe7\xbb\x1a\x0c\xdb\x4d\x15\xe6\x8f\xd1\x99\x3d\xa5\xd8\xc2\x5b\x0e\x69\xf6\x94\x9e\x5c\xd4\x07\xaf\x92\xde\x2b\xf8\x2e\x00\x00\xce\x12\x84\x02\x0a\x95\x68\x27\xe7\x5b\xc0\x59\xfb\xf2\xa0\x2c\xd8\x51\x0d\x77\x2c\xc2\xc7\x57\x1c\x67\xaa\xe0\x66\x67\x0c\xcf\x5e\xd7\xf1\xe5\x1b\x49\x61\x64\x33\x90\x7d\xe1\x81\x7c\x84\x5b\xf8\x75\x95\x01\x13\x49\x0b\xe7\xdc\xea\x3a\xb0\x31\x37\x2b\x4d\x6c\xd0\xda\xd2\x9f\x99\xb6\x84\x2b\xd9\xa2\x8d\xa5\xe5\xf7\x48\x5f\x65\x55\xaf\xa9\x97\xd8\x4f\x16\x18\x28\x81\xf3\x1b\xfc\xcd\x3b\xff\xad\x1e\x28\xe5\xad\x17\x7b\xbb\x04\x34\x97\xb2\x86\x1e\x63\xbf\x1b\x3b\x16\xa7\xfd\x94\xbb\x7f\xae\x6a\x38\x92\xeb\x7a\xcd\xad\x7c\xbe\x82\x9e\x8a\xac\xa7\xe2\x27\x00\x00\xff\xff\x8f\x01\xaf\x74\xcf\x01\x00\x00" +var _lockedtokensAdminAdmin_deploy_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x4f\xc1\x4a\xc5\x30\x10\xbc\xf7\x2b\xf6\xd8\x42\xe9\x07\x14\x3c\x14\x11\x84\x27\x5e\xf4\x26\x1e\x62\xb2\x36\xa1\x6d\x36\x6c\xb6\x68\x90\xf7\xef\xd2\x86\xf6\x45\xcc\x61\x92\xcd\xce\xce\xce\xb8\x25\x10\x0b\xdc\x73\x0a\x42\x55\x25\xac\x7c\x54\x5a\x1c\xf9\x5a\x93\x17\x56\x5a\x9e\xd5\x82\x3d\xbc\x08\x3b\x3f\xb6\xa0\xc9\x14\x55\x58\x3f\x66\xa7\x2f\x98\x62\x0f\x6f\x59\xa4\xbb\x60\x7a\x72\x51\x1e\xbc\x70\x7a\x6f\xe0\xa7\x02\x00\xd8\x21\x30\x06\xc5\x58\x2b\xb3\x38\xdf\xc3\xb0\x8a\x1d\xb4\xa6\xd5\xcb\x41\xdb\xce\x8c\x02\x33\xe9\x09\xcd\x2b\x4d\xe8\x23\xdc\x95\xcc\x3a\xa8\x84\xdc\xc3\xae\xd1\xdc\x86\x8a\x81\xee\x70\x1e\x3b\x65\x4c\xed\x77\xff\x65\x9a\x23\xc5\x86\x9d\xc1\xed\x7a\xc4\xef\xba\x69\x0f\xd5\x53\xf6\x93\x18\x26\x4c\xe0\x7c\x11\xb5\xf0\xfa\x6f\xf5\x84\x29\x6f\x3d\xe9\xfd\x26\xd0\x9d\x65\x0b\x56\x45\x3b\xcc\x23\xb1\x13\xbb\xe4\xee\x9f\xaf\x16\xbe\xd0\x8d\x56\x72\x2b\xbf\x6f\x41\xaf\x55\xc6\x6b\xf5\x1b\x00\x00\xff\xff\xdf\x5c\xcb\x79\xbb\x01\x00\x00" func lockedtokensAdminAdmin_deploy_contractCdcBytes() ([]byte, error) { return bindataRead( @@ -3779,11 +3760,11 @@ func lockedtokensAdminAdmin_deploy_contractCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_deploy_contract.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x61, 0x8, 0x4c, 0x45, 0x80, 0x10, 0x34, 0x60, 0xc1, 0xb0, 0xed, 0xeb, 0xc8, 0x43, 0x86, 0xb6, 0xd9, 0xa4, 0x12, 0x84, 0xc4, 0x57, 0x3, 0xce, 0xb7, 0x53, 0x94, 0x20, 0x92, 0x33, 0x8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x9a, 0x97, 0x6b, 0xe8, 0x7e, 0x5e, 0x52, 0xde, 0xaf, 0x33, 0x49, 0x33, 0x5e, 0x3e, 0xa7, 0x54, 0x57, 0x9d, 0xa1, 0x71, 0x7e, 0xbe, 0x2e, 0x5e, 0x2b, 0xc2, 0x3a, 0x9d, 0xd4, 0xd2, 0x7a}} return a, nil } -var _lockedtokensAdminAdmin_deposit_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x41\x6f\xdb\x30\x0c\x85\xef\xfa\x15\x5c\x0e\x9d\x0d\x0c\xce\x3d\x58\x57\x64\xb9\xee\x10\x6c\xc5\xee\x8c\xc4\xc6\x42\x15\x51\xa0\xe8\x16\xc1\xd0\xff\x3e\xc8\xf2\x32\x3b\xcb\x50\x9d\x2c\x42\xef\xf1\x7d\x34\xfd\x29\xb1\x28\x7c\x63\xfb\x4c\xee\x91\x9f\x29\x66\x78\x12\x3e\xc1\x6a\x5e\x5a\x19\xb3\x5e\xaf\x41\xcb\x05\xd0\x9d\x7c\x84\xec\x8f\x31\x83\xf6\x3e\x83\x0a\xc6\x8c\x56\x3d\x47\x50\x06\x47\x89\xb3\x57\x40\xb0\x98\xf0\xe0\x83\xd7\xf3\x28\xf7\x51\xb9\x54\x87\xac\xec\xce\x90\x84\x5f\xbc\x23\xf9\x98\x01\xad\xe5\x21\x2a\x68\x8f\x0a\x18\x02\xbf\x16\x6b\x3a\x15\x3b\x74\x6e\x54\x4f\x6f\x72\xa9\x69\x4f\x20\x64\x59\x9c\x31\xb3\xee\xcd\x64\xbd\x9f\x9c\xb7\xce\x09\xe5\xbc\x81\xe9\xa3\x85\x5f\xc6\x00\x00\x24\xa1\x84\x42\xcd\x88\xb2\x01\x1c\xb4\x6f\xbe\xb2\x08\xbf\xfe\xc4\x30\xd0\x27\xd8\xfd\x49\xee\x29\xb7\x70\xb7\xad\xbd\x2f\xfa\x72\x02\xe9\x0c\xf0\x3b\x59\xf2\x2f\x24\x70\x0f\x47\xd2\xe9\xfd\x7f\xf2\xb4\x17\x8f\x72\x3a\x3b\xeb\xd5\x1d\xc6\x14\x9f\xef\xe6\xd3\xef\xea\x65\x32\xdd\x09\xa1\xb2\x7c\x69\x16\x2e\xe5\xbc\xab\xd9\x0f\x87\xe0\xed\x1e\xb5\x5f\x68\x97\x79\x1e\x1e\x20\x61\xf4\xb6\x59\xed\x78\x08\x0e\x22\x2b\xd4\x54\x33\xdc\x32\xfd\xca\x2b\xf4\x44\x42\xd1\xd2\xaa\x5d\xce\x66\x5c\x96\x6d\x19\xf0\x8e\x43\xa0\xba\x1e\xf7\x75\x7b\x96\xcc\x59\x59\xf0\x48\x9d\xcf\x79\xa0\x2b\xf4\xc7\x1b\x2e\x57\xe8\x37\xb0\x6f\xa9\x7e\xd4\x2e\x0b\xfa\xf6\xc3\xdf\xcc\xff\xfe\xcb\x0e\x9d\xbb\x2c\xc2\xb9\xb1\x98\x36\x37\xa9\xea\xfc\xde\xcc\x9b\xf9\x1d\x00\x00\xff\xff\x84\x09\x5b\x53\x4e\x03\x00\x00" +var _lockedtokensAdminAdmin_deposit_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xdb\x30\x0c\xbd\xfb\x2b\x88\x1e\x36\xe7\x92\xec\x1c\xac\x2b\x0c\x27\xa7\x16\x6b\xd0\xe6\x07\x18\x89\x8d\x85\x2a\xa2\x40\xd1\xe9\x8a\x22\xff\x3e\xc8\x36\x52\xbb\xcb\xb6\xf2\x64\x13\xef\x3d\xf2\x3d\xd1\x1d\x22\x8b\xc2\x1d\x9b\x67\xb2\x5b\x7e\xa6\x90\xe0\x49\xf8\x00\xdf\x7e\xdd\xdd\xd7\xb7\xeb\xd5\xf6\xfe\x76\xfd\xb3\x5a\xad\x1e\xd6\x8f\x8f\x45\xb1\x58\x2c\x40\x33\x0a\xd0\x1e\x5c\x80\xe4\xf6\x21\x81\x36\x2e\x81\x0a\x86\x84\x46\x1d\x07\x50\x06\x4b\x91\x93\x53\x40\x30\x18\x71\xe7\xbc\xd3\xd7\x8e\xee\x82\x72\xee\xb6\x49\xd9\xbe\x42\x14\x3e\x3a\x4b\xf2\x35\x01\x1a\xc3\x6d\x50\xd0\x06\x15\xd0\x7b\x7e\xc9\xd2\x74\xc8\x72\x68\x6d\xc7\x1e\x30\x29\xf7\xb4\x21\x10\x32\x2c\xb6\x28\x46\xd3\xcb\x41\x7a\x33\x28\x57\xd6\x0a\xa5\xb4\x84\xe1\x63\x06\x6f\x45\x01\x00\x10\x85\x22\x0a\x95\x9d\x95\x25\x54\xad\x36\x55\x2f\x7f\x86\xe4\xf2\xa4\x23\x0f\x0f\x64\xc8\x1d\x49\xe0\x1a\xf6\xa4\x03\xfe\x2f\x23\x67\x67\x8d\x5c\xf3\x3d\x69\x7d\xd6\xf9\xfe\x65\x9c\xf9\xbc\xff\x19\xe4\x6a\x21\x54\x96\xb7\xff\x22\x36\xed\xce\x3b\x73\xfa\x51\x4e\x06\xe5\xfa\x24\x75\x83\xda\x4c\xb8\x1f\x56\xde\xb1\x08\xbf\x94\xd3\xee\xcd\x0d\x44\x0c\xce\x94\x57\x35\xb7\xde\x42\x60\x85\x1e\x38\xca\x29\xbf\x4c\x1f\x94\xd0\x13\x09\x05\x43\x57\xb3\x69\xa8\xdd\x21\x55\x39\xfc\x9a\xbd\xa7\xfe\x74\xae\xfb\xcb\xfa\x67\x58\xdb\x0b\xc4\x0f\x19\x5c\xf0\xff\xce\xda\x88\x3b\xa2\xd2\xc4\xfc\x68\xb7\x3f\x1f\x7b\x8e\xd6\xbe\x6f\x53\x1a\x8c\xcb\x8b\xdb\xf7\x39\x9d\x8a\x53\xf1\x3b\x00\x00\xff\xff\x5b\xc8\xe1\xb2\x58\x03\x00\x00" func lockedtokensAdminAdmin_deposit_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3799,11 +3780,11 @@ func lockedtokensAdminAdmin_deposit_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_deposit_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0x82, 0x4, 0xe6, 0x5b, 0xce, 0x35, 0x7d, 0x2e, 0xd, 0x46, 0xda, 0x8a, 0x52, 0x1a, 0xd5, 0x89, 0x30, 0xea, 0xb4, 0xdf, 0xc2, 0xb0, 0xbe, 0xb3, 0xdb, 0xf6, 0x5e, 0x8d, 0x29, 0x66, 0xd7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0x1e, 0x26, 0xb4, 0x11, 0xed, 0x11, 0x3, 0x57, 0x39, 0x8f, 0x13, 0xbb, 0x53, 0xfa, 0xf, 0x22, 0x4b, 0x55, 0x77, 0xa1, 0xd8, 0xbe, 0x7a, 0x22, 0x23, 0x55, 0xdd, 0xe4, 0xbd, 0xaf, 0x33}} return a, nil } -var _lockedtokensAdminAdmin_remove_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x9e\x39\x94\xe4\x60\x7e\x40\xa9\x16\xb5\x08\x82\x82\xd8\xe2\x7d\xba\x99\xa6\xa1\x9b\x9d\x30\x99\x58\x44\xfa\xdf\x25\x4d\x6b\x23\x1e\x9c\xdb\xee\x9b\xef\xcd\x7b\x55\xdd\x88\x1a\x1e\x83\xec\x9f\x16\x2b\x5a\x07\x5e\x1a\xed\xaa\x58\x62\xa3\x52\x23\xf9\x2b\x24\xee\xc4\x3c\x8b\xdf\x71\xb1\x92\x1d\xc7\xf6\xb4\x3d\xfe\x4a\x9c\x33\xa5\xd8\x92\xb7\x4a\x22\xbe\x9c\x03\x80\x46\xb9\x21\xe5\xb4\xad\xca\xc8\x3a\x05\x75\xb6\x4d\xef\x45\x55\xf6\xef\x14\x3a\xce\x30\xb9\xf3\x5e\xba\x68\xd9\x19\xe9\x27\xb0\xa1\xa6\x48\x25\xeb\x1b\x6f\x70\x83\x81\xcf\x5b\x13\xa5\x92\xf3\xf5\xd1\x61\x36\x19\x07\xc8\x47\x8f\x97\x81\xbd\x4d\xfb\x9c\x53\xfc\xb3\xb6\x1c\x5c\x5f\xc9\xb6\xd9\x4f\x84\x7e\xe6\x73\x34\x14\x2b\x9f\x26\x0f\xd2\x85\x02\x51\x0c\xc3\x69\x10\x94\x37\xac\x1c\x3d\xc3\x04\xb6\x65\x84\xa3\x31\xac\x77\x3e\xa7\x4f\xb2\xdf\xa5\x0a\x0e\x5c\x92\x89\x62\x76\x3d\x6a\x98\x2b\xd7\xf2\xc1\x8b\xb3\x9a\x66\x57\x17\xae\xe0\xd6\x54\x3e\x2f\xec\x20\x1d\xdc\xc1\x7d\x07\x00\x00\xff\xff\x04\xab\xd5\xde\xcf\x01\x00\x00" +var _lockedtokensAdminAdmin_remove_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8f\xc1\x4f\xfa\x50\x0c\xc7\xef\xfb\x2b\xfa\xe3\xf0\xcb\x76\x90\x78\x26\x28\x99\x6c\x26\x04\x04\xc3\xde\xc5\x63\x79\x2b\x63\xe1\xed\x75\xe9\x8a\x68\x0c\xff\xbb\x99\x73\x32\x4f\xf6\xd6\xf4\xf3\x69\xbf\x2d\xab\x9a\x45\xe1\xd1\xf1\x79\x91\x18\xdc\x39\xca\x14\x8f\xa5\x2f\x60\x2f\x5c\xc1\xed\xdb\x22\x49\xd7\x66\x61\x5e\x4c\xfc\xb0\x4a\xe3\x24\xd9\xa6\x59\x16\x7c\x5b\x2b\xb6\x47\xca\x0d\x1f\xc9\x37\x3d\xbf\xda\xcc\x97\x69\x62\x36\xcb\x74\xdd\xd3\x81\x0a\xfa\x06\xad\x96\xec\xe1\x23\x08\x00\x00\x6a\xa1\x1a\x85\xc2\xa6\x2c\x3c\xc9\x04\xe2\x93\x1e\x62\x6b\xf9\xe4\x35\xea\x99\xb6\x1c\x29\x54\xe8\xb1\x20\xd9\xd2\x1e\xee\xa0\x13\xc6\x3b\x16\xe1\xf3\xf4\xff\x30\xc2\x78\xd0\x3c\x75\xce\x7d\xd8\xc6\x9a\xc0\x1f\x58\xa6\x2c\x58\xd0\x33\xea\x21\xfa\x39\xdd\xd6\x6c\x06\x35\xfa\xd2\x86\xa3\x39\x9f\x5c\x0e\x9e\x15\xba\xd3\x80\x20\xb4\x27\x21\x6f\x09\x94\x41\x0f\x04\xee\x6b\x31\x68\xbb\xb9\x4f\x3d\x8a\x7e\x3f\x93\x93\xa3\x02\x95\x05\xa6\x37\x83\xcf\xc6\x42\x15\xbf\x52\xd2\x4f\xc3\xe8\xdf\xd5\xcb\xa9\x51\xe1\xf7\xab\xdb\x8d\x2e\xc1\x25\xf8\x0c\x00\x00\xff\xff\x33\x91\x55\x64\xc0\x01\x00\x00" func lockedtokensAdminAdmin_remove_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3819,11 +3800,11 @@ func lockedtokensAdminAdmin_remove_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_remove_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdf, 0xa8, 0x3f, 0x3a, 0x74, 0xce, 0x68, 0x6e, 0x7, 0xc0, 0x36, 0x29, 0x95, 0x78, 0x26, 0xc2, 0x17, 0xe2, 0xa9, 0x89, 0x16, 0xce, 0x87, 0x20, 0xb3, 0xe6, 0x1f, 0x1d, 0x99, 0x77, 0x55, 0x20}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7b, 0x45, 0x4f, 0xc6, 0x2d, 0xa8, 0x8, 0x67, 0x3d, 0x3b, 0x76, 0x24, 0x7e, 0x97, 0xc8, 0x6, 0x34, 0xe8, 0xea, 0xfa, 0x7b, 0x91, 0x9c, 0x76, 0x38, 0x88, 0x31, 0x29, 0xb2, 0x25, 0x1, 0xf6}} return a, nil } -var _lockedtokensAdminCheck_main_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\xc1\x6a\xdc\x30\x14\xbc\xfb\x2b\x26\x3e\x04\x1b\x8a\x3f\xc0\x74\x13\xb6\x0b\xa5\x85\x1e\x42\x1b\x7a\x7f\x2b\x3d\x7b\x45\x64\xc9\x48\xcf\xe4\x50\xf2\xef\xc5\xb2\xbd\x58\x6d\xd8\x4b\x74\x59\xf4\x76\x66\xde\xcc\x58\x66\x18\x7d\x10\x7c\x9d\x5c\x6f\xce\x96\x9f\xfd\x0b\x3b\x74\xc1\x0f\x28\xb3\x59\x59\x6c\x48\xeb\x5f\x33\xd4\x76\x2f\x8b\x0d\xf2\xc3\xab\x17\xd6\x69\x18\x57\xd4\x7e\x54\x16\x85\x04\x72\x91\x94\x18\xef\xaa\x81\x8c\x3b\x2a\xe5\x27\x27\x2d\x8e\x5a\x07\x8e\xb1\xc6\x9f\xa2\x00\x80\x31\xf0\x48\x81\xab\x68\x7a\xc7\xa1\x05\x4d\x72\xa9\xbe\xf8\x10\xfc\xeb\x6f\xb2\x13\xd7\xb8\x5f\xb9\x57\xca\x7c\x2c\x0b\x48\x0f\xc6\xfd\xe4\x0e\x07\x2c\xec\x26\x8a\x0f\xd4\x73\x73\x4e\xfc\xcf\xf7\x7b\x53\x4d\xfa\x39\xce\x9c\x93\xb7\x96\x93\xb7\x87\x6a\x76\xdf\x66\x81\x9a\xdd\xe5\x1f\xf8\xaf\x45\xff\x89\xe4\x52\x5f\xad\xcc\xe7\xf1\x11\x23\x39\xa3\xaa\xf2\xe4\x27\xab\xe1\xbc\x60\x31\x01\x42\xe0\x8e\x03\x3b\xc5\x10\x0f\xb9\x30\x6c\x5a\x00\x49\x25\xa7\x14\x50\xd7\x1d\x65\x9d\xa7\x5c\xc0\x6b\x07\xdf\x5d\xe7\x97\xc4\x3d\xcb\x3a\xdb\xf7\x9b\xbb\x6a\x14\x8d\x74\x36\xd6\x88\xe1\x78\xa3\x94\x6f\xde\x6a\x0e\x0f\xd5\x3b\x2d\xec\xf6\x3e\x4d\x67\x6b\xd4\x47\xb2\x8f\x49\x01\xff\x29\xdf\x8c\x8c\xc3\xbb\x15\x34\x3d\x4b\x26\xb4\x3e\xac\x6a\xa7\x45\x31\x72\x90\x2a\x73\xbb\x3d\x9a\x66\x57\x20\x2d\xd4\x36\x5f\x54\xe3\xee\x00\x67\xec\xa7\x8c\x3f\x70\x8c\xd4\x73\x8b\xf2\xf9\xc2\x88\x23\x2b\xd3\x19\xd6\xa0\xd5\xad\x89\xa9\x00\xda\x3e\xf2\x3a\xbf\xc3\x89\xdc\xfc\x47\x64\xa7\xb3\x07\x10\xcb\xab\xfe\xd2\xeb\x5b\xf1\x56\xfc\x0d\x00\x00\xff\xff\x9d\x91\x65\xc1\xb5\x03\x00\x00" +var _lockedtokensAdminCheck_main_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x13\x1f\x8a\x0c\x45\xf4\x2c\xea\x04\x55\x76\xda\x10\x13\x87\xd8\xa5\xe7\xf1\x6a\x24\x2f\x59\xed\x8a\xdd\x11\x69\x09\xfe\xee\x45\xab\x3f\x68\x1b\xe3\x43\xf7\x22\xb4\xfa\xcd\xbc\x37\x4f\x23\xeb\xc6\x58\x86\xfb\x56\x57\xf2\xa8\xe8\x60\x5e\x49\x43\x69\x4d\x0d\x5f\x7e\xdf\xff\x7c\xfa\xfe\xf0\x6d\xbb\x39\xec\x1e\x37\x4f\xd9\x7a\xfd\xb2\xd9\xef\xa3\xb1\x40\x99\xb7\x10\xde\xee\x7e\x05\xe0\x48\x6e\x8d\x78\xa5\xc2\xb3\x6e\x84\xb7\xbb\xfc\x71\xb3\x0e\x71\xb6\xa8\x1d\x0a\x96\x46\xc7\x35\x4a\x9d\x09\x61\x5a\xcd\x29\x64\x45\x61\xc9\xb9\x25\xbc\x47\x11\x00\x40\x63\xa9\x41\x4b\xb1\x93\x95\x26\x9b\x42\xd6\xf2\x69\x80\x27\xa6\x3b\x8a\x18\xb0\xa8\xa5\x7e\xa1\x12\x56\xd0\xe3\xc9\xd1\x58\x6b\xde\xbe\x7e\x9a\xdb\x4a\xfc\x23\xeb\xd8\xdc\x28\x45\xde\xc4\x6d\xdc\x99\x4d\x03\xff\xc9\xec\xe5\x1f\x7c\xcf\xc6\x62\x45\xcf\xc8\xa7\xe5\x64\xa1\x3b\x77\x77\xd0\xa0\x96\x22\x5e\xe4\xa6\x55\x05\x68\xc3\xd0\x9b\x00\x04\x4b\x25\x59\xd2\x82\x80\x0d\xf0\x89\x40\x79\x01\x60\x1f\xad\x77\x0f\x62\xd2\x58\x2c\xc3\xe9\x7a\x78\x98\xfd\x41\x97\xa6\x9f\xb4\x22\x1e\xee\xe6\x41\x86\xae\x92\x8a\x38\xc7\x06\x8f\x52\x49\xfe\x73\x29\x8e\x1f\x46\x15\x64\xdf\x2f\x8c\x3f\x13\x3c\xdf\xc6\xd7\x81\xe7\xf6\xa8\xa4\xf8\x98\xca\xf0\x1f\xe2\xff\xcd\xaa\xf1\x7d\xe1\x83\xde\xd5\x88\x60\x75\x31\xb2\x2e\x8b\xa0\xd1\xb0\x71\xf1\xac\x17\x3a\x47\x96\xe3\xc0\xed\xb8\x5c\xc9\x2c\x70\xec\x4b\xd3\x50\x68\x09\x37\x2b\xd0\x52\x7d\x0e\xea\x6b\x72\x0e\x2b\x4a\x61\x71\x38\x11\xb8\x86\x84\x2c\x25\x15\x80\x83\x5b\xe9\x7c\x00\x38\x2e\xc5\x70\x7f\x03\x39\xea\xee\x83\x23\x5d\x04\x0b\xe3\x16\x53\xff\x3e\xd7\x73\x74\x8e\xfe\x06\x00\x00\xff\xff\xfe\xf4\xaf\xdc\xe2\x03\x00\x00" func lockedtokensAdminCheck_main_registrationCdcBytes() ([]byte, error) { return bindataRead( @@ -3839,11 +3820,11 @@ func lockedtokensAdminCheck_main_registrationCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/check_main_registration.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0x92, 0xbe, 0x27, 0xf, 0xc8, 0x19, 0xb2, 0x24, 0xd8, 0xfb, 0x9, 0x26, 0x43, 0xec, 0x91, 0x14, 0xe, 0xaf, 0x4a, 0x9, 0xd, 0x12, 0xde, 0xa, 0x73, 0x8d, 0x3, 0x5d, 0x53, 0xd0, 0xc6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9a, 0x91, 0x4b, 0x4f, 0x2, 0xae, 0x1, 0x4d, 0x39, 0xc9, 0xba, 0xca, 0xda, 0xcc, 0xd6, 0x3c, 0x56, 0xc8, 0xa1, 0x8a, 0x46, 0x1f, 0xa7, 0x9, 0x71, 0xf4, 0xbb, 0xf7, 0xa1, 0xd8, 0xa6, 0x15}} return a, nil } -var _lockedtokensAdminCheck_shared_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x50\x4d\x6b\xe3\x30\x14\xbc\xeb\x57\x4c\x74\x08\x36\x2c\xfe\x01\x66\xb3\x21\x1b\xe8\xa9\x87\xd2\x86\xde\x5f\xe4\x67\x5b\x44\x96\x8c\x24\x93\x43\xc9\x7f\x2f\x96\x3f\x1a\x57\x17\xa1\xd1\xcc\x7b\x33\xa3\xbb\xde\xf9\x88\x97\xc1\x36\xfa\x6a\xf8\xe2\x6e\x6c\x51\x7b\xd7\x41\x6e\x30\x29\x16\xa6\x71\xf7\x0d\x6b\x79\x4b\xb1\x50\x5e\x9d\xba\x71\x95\xc0\x30\xb3\x9e\x21\x29\x44\xf4\x64\x03\xa9\xa8\x9d\xcd\x4c\xfa\x3a\x29\xe5\x06\x1b\x4b\x9c\xaa\xca\x73\x08\x39\xbe\x84\x00\x80\xde\x73\x4f\x9e\xb3\xa0\x1b\xcb\xbe\x04\x0d\xb1\xcd\xfe\x3b\xef\xdd\xfd\x93\xcc\xc0\x39\xf6\xb3\x76\x95\x8c\xc7\x70\x04\x55\x9d\xb6\xef\x5c\xe3\x80\x49\x5d\x84\xe8\x3c\x35\x5c\x5c\x93\xfe\xef\xfe\xd9\x56\x91\xae\xd3\xa8\x39\x3b\x63\x38\xb9\xfb\x97\x8d\xfe\xcb\x4d\xa4\xe2\xe9\xf1\x8b\xfe\x31\xcd\x7f\xa3\xd8\xe6\xab\x95\xf1\x1c\x8f\xe8\xc9\x6a\x95\xc9\xb3\x1b\x4c\x05\xeb\x22\x26\x13\x20\x78\xae\xd9\xb3\x55\x8c\xe8\x10\x5b\xc6\x54\x09\x62\xaa\x39\xa5\x80\x5a\x77\xc8\xfc\x27\x25\x85\xc0\x3e\x22\xdb\xec\x5a\x62\x17\x0d\xc7\xb9\x9a\x8c\xa6\x56\x4b\x6c\xda\xce\xb1\x3b\xc0\x6a\xf3\x67\xa3\xef\x38\x04\x6a\xb8\x84\xbc\xb4\x8c\xd0\xb3\xd2\xb5\xe6\x0a\x34\x89\xa0\x43\xb2\x4f\x8b\xcd\x19\xdf\xe1\x4c\x76\xfc\x08\x6c\xab\x4d\x84\x20\xd7\xf9\x53\x2b\x0f\xf1\x10\xdf\x01\x00\x00\xff\xff\xc7\x12\xd7\xca\x79\x02\x00\x00" +var _lockedtokensAdminCheck_shared_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x51\xcb\x9b\x30\x14\x86\xef\xfd\x15\xef\xe7\xc5\x50\x18\xb2\x6b\xd9\xb7\xe2\xac\x1d\xa3\xd2\x8e\xb6\x63\xd7\x69\x3c\x6a\x68\x4c\x24\x89\x74\x30\xfa\xdf\x87\x5a\x5d\xb3\xdc\x88\xfa\x9c\x9c\xe7\x7d\x45\xd7\x6b\xe3\xb0\x1b\x54\x23\xae\x92\x2e\xfa\x46\x0a\xb5\xd1\x1d\x3e\xfd\xde\xfd\x3c\x7c\xfb\xfe\xb5\x2c\x2e\xc7\x7d\x71\xc8\xb6\xdb\x53\x71\x3e\x07\xcb\x80\xd4\x77\x1f\x2e\x8f\xbf\x3c\x70\x21\x4b\xcd\x6f\x54\x4d\xac\x5d\xe0\xf2\x98\xef\x8b\xad\x8f\x3b\xc3\x94\x65\xdc\x09\xad\x22\x39\xcd\x64\x9c\xeb\x41\xb9\x14\x59\x55\x19\xb2\x36\xc6\x9f\x20\x00\x80\xde\x50\xcf\x0c\x45\x56\x34\x8a\x4c\x8a\x6c\x70\xed\x13\x5e\x99\xf1\x48\x72\x60\x55\x27\xd4\x89\x6a\xbc\x63\xc6\x93\xab\x36\x46\xdf\x3f\x7f\x78\x15\x4b\xa6\x47\x36\xb2\xb9\x96\x92\x26\x8d\x2f\xd1\xa8\x9b\x7a\x09\x92\x97\x97\xff\xf0\xb3\xd3\x86\x35\xf4\x83\xb9\x36\x5e\x15\xc6\xb3\xd9\xa0\x67\x4a\xf0\x28\xcc\xf5\x20\x2b\x28\xed\x30\x4b\x80\xc1\x50\x4d\x86\x14\x27\x38\x0d\xd7\x12\xe6\xec\x70\x53\xb9\x93\x3d\xf8\xba\x23\x8c\xff\xa5\x63\xd6\x92\x71\x88\xbc\x5d\x4b\xdc\xa4\x21\xf7\xac\x24\x62\x73\x7d\x29\xbc\x5a\x63\xbc\xbd\x43\x09\xf9\xd1\x9b\xef\xc8\x5a\xd6\x50\x8a\xf0\xd2\x12\x6c\x4f\x5c\xd4\x82\x2a\xb0\x79\x08\xc2\x4e\xfa\x6c\xd1\x7c\x7e\x7f\x43\xce\xd4\xf8\xc3\x92\xaa\xbc\x08\x36\x5c\xef\x9f\x5b\x79\x04\x8f\xe0\x6f\x00\x00\x00\xff\xff\xbc\x66\x6c\x69\x76\x02\x00\x00" func lockedtokensAdminCheck_shared_registrationCdcBytes() ([]byte, error) { return bindataRead( @@ -3859,11 +3840,11 @@ func lockedtokensAdminCheck_shared_registrationCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/check_shared_registration.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5f, 0xce, 0x2e, 0x8a, 0xa6, 0x4e, 0x37, 0xb0, 0x50, 0xb0, 0xe3, 0x24, 0x8c, 0xa4, 0xea, 0x43, 0x5f, 0xc7, 0xa6, 0xa1, 0x26, 0x54, 0x66, 0x7c, 0x8d, 0xd8, 0xa7, 0xe6, 0xb, 0xb6, 0x72, 0x84}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xda, 0xb6, 0x7e, 0x98, 0xe7, 0x40, 0x4d, 0xb7, 0x6c, 0xd, 0x16, 0xb, 0xee, 0x68, 0x21, 0xce, 0x15, 0xb6, 0x5f, 0x9, 0xfb, 0x96, 0x47, 0x61, 0x89, 0x5e, 0xc2, 0x29, 0x54, 0xaa, 0x34, 0xb8}} return a, nil } -var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xe9\xd5\x70\xb2\x48\x8d\x2e\x5a\x6c\x8a\x06\x6d\xba\x7b\x9e\x88\x63\x8b\x08\x4d\xaa\xfc\xb1\x61\x04\x79\xf7\x82\x12\x25\x8b\xb2\x94\xb8\x45\x7b\x59\x1d\x82\x98\x9c\x9f\x6f\xbe\x99\xe1\x0c\xdf\x55\x4a\x5b\x58\xeb\x63\x65\x55\x12\x7e\x7d\x16\xea\xf0\xa4\x5e\x48\xc2\x46\xab\x1d\xcc\xba\xdf\xb3\x4e\xc2\xc9\x2d\x7f\x16\x14\x49\xf5\xcf\x3a\xc9\x07\x55\xbc\x10\xab\xcf\x4c\x10\xec\x1f\xcd\x92\x24\xcf\x73\x78\xd2\x28\x0d\x16\x96\x2b\x09\xb6\x44\x0b\x08\x85\x33\x56\xb1\x23\x54\x5a\xed\x39\x23\x0d\x07\xe5\x04\x03\xc3\xb7\xb2\x56\xb1\x0a\x0a\x4d\x68\x09\x10\x4c\x89\x9a\x18\x60\x51\x28\x27\x2d\xa0\x64\x80\x12\x9c\x14\xb5\xa7\x5a\xbc\xbd\xdb\x28\x0d\x08\xce\x90\x4e\x12\x7b\xf2\x9a\x26\x00\x00\x1b\x27\xc4\x3d\xdb\x71\xf9\xe8\x9e\x05\x2f\xbe\xd0\x71\x19\xa8\xc9\xbe\xd0\xf1\x81\x1b\xfb\x93\xb4\xfa\xb8\x80\x3c\x87\x6f\xc4\xb7\xa5\x5d\xc2\x0f\x37\x37\x37\x9d\xf2\x9f\x86\xf4\x3f\xd5\x9d\x03\xbc\x26\xb5\x85\x4a\x53\x85\x9a\xd2\x10\xfa\x63\x88\x7c\x09\xe8\x6c\x99\xfe\xa8\xb4\x56\x87\xaf\x28\x1c\xcd\xe1\xea\xbe\x89\x67\xde\xea\xfa\x4f\x90\x0d\x54\x84\x5b\xb8\x85\xf0\x5f\x5a\xe1\xd1\x5b\x1a\x98\x9e\x47\xba\x9e\x95\xcb\x35\x3b\xd5\xc8\x65\xf6\x42\x47\x93\x21\x63\x69\x75\xe2\xe1\x9c\xd7\xac\xbb\x5d\x40\x89\xa6\xbc\x17\x5b\xa5\xb9\x2d\x77\xa3\xc2\x91\xc4\x02\x0e\x81\xbe\x11\xc9\xe6\xaa\x07\xae\x17\xd3\x24\xb4\x28\x6b\x1f\x20\x8b\x65\xdf\x01\x16\x0b\x9e\xe1\xf2\x7c\xef\xd1\x09\xbb\xc6\x0a\x9f\xb9\xe0\xf6\x08\xb7\x03\x2a\x8b\xf6\x8a\x93\xc9\x8c\x55\x1a\xb7\xd4\x19\xf0\x5f\xc6\x8d\x71\xb4\xaa\xcb\x23\x6a\xbf\xec\x1b\xb7\x25\xd3\x78\x98\xc3\x55\xd7\xbd\xd9\x57\xef\xef\x2e\xcd\x83\xa9\x7c\xd3\xde\xd4\x17\x03\x70\xe2\xd4\xa5\xbf\xa2\xc4\x2d\x69\x58\x5d\x47\xed\x9c\x35\xfd\xf7\x70\x26\x98\xd6\x81\x2d\x87\xf1\x4d\x96\x4c\xc0\x93\x19\xdc\x53\xba\xba\x3e\xf7\xbc\x00\xab\x96\xb1\xef\x73\xaf\x7f\x34\x56\x1e\xd1\x96\x83\x50\x6c\x4f\xea\x7f\xa7\xfb\x03\x94\x77\x69\x64\xd2\x7f\x97\xc7\x15\xa9\x8e\x05\xf9\xb3\x12\x6c\x32\x51\x4f\x27\x89\xb4\xe1\xf8\x9e\x31\x4d\xc6\x2c\x07\x44\x60\x73\xbc\x88\x88\x5b\x4e\xd0\x38\xd1\x6b\x51\x4e\x23\xdc\xab\xeb\x1e\xd4\x45\x74\x75\x96\xe5\x1e\xe4\x31\x1a\xa6\x29\x58\x63\x05\xb7\x11\xa0\xb1\xec\x86\x84\x5e\x4d\xf9\xbc\x4b\x2f\x40\x33\x1f\x8d\x3f\x72\x57\x3f\x29\xa6\x4c\x63\x80\x0b\x40\x3b\x5a\xd5\xc1\xc6\x2f\x72\xa3\x9a\x17\x64\xaa\xa6\xeb\xc7\xef\xbb\xad\x68\xd1\x27\x63\xed\x4b\x58\x69\xb8\x1d\x0e\xa2\xf1\xb8\x9e\xeb\x61\xb9\x1a\xc3\x1e\x1b\xbc\x4b\xfd\x52\xf2\x5e\x1a\x82\xe0\x68\xc6\xfd\xf7\xe9\x13\x54\x28\x79\x91\xce\xd6\xf5\x86\x22\x95\x85\xc6\x7d\x88\xa0\xdb\x3d\x8a\xc6\xd2\xac\x1f\xe7\x88\x27\xdf\x7f\xed\xf0\x8d\x3c\x45\xc9\xfd\xa0\x77\x23\xc5\x76\x13\x1a\xaa\xf6\x0b\x76\x54\xf1\x54\x65\xcb\xd1\x8a\x1b\xeb\xc4\x3c\x87\xdf\xf6\xa4\x35\x67\x04\xb6\x24\x60\xb4\xf1\x73\xa0\xb7\x55\x6a\x2a\x88\xef\x49\x67\x13\xf3\x20\x2a\x5b\x27\xdb\xee\xc9\x9b\xc9\x7c\x1a\x5b\xbf\x07\x3b\xb1\xf3\xb0\x15\x4a\x3a\x74\x8e\x9a\x9d\x72\x87\xfa\xc5\xb4\x67\xac\x89\xc7\x00\x9a\x8e\x9e\x6c\x6a\x00\x9a\xd3\xab\x77\x51\x8f\xb5\xef\xca\x6b\xdc\x53\x2d\xde\xb7\xc1\xbb\xf2\xc1\x2c\xbb\x80\xa4\x96\xa2\x28\x79\xe3\x01\xc4\x09\xf6\x2f\xd0\x24\xaf\x13\xd9\xad\x9c\x05\xa9\xf4\x0e\xc5\x89\x60\x2e\xfd\x1a\xee\xd7\x57\xcf\xbd\x93\xfc\x2f\x47\x50\xa1\x2d\xb3\xf3\x57\xab\x35\xff\xdf\xb1\x39\xb9\xd1\xfc\x5b\xea\x86\x38\xa7\x49\x6b\x48\xfe\xfc\x0e\x75\xfe\xef\x5b\xf2\x96\xfc\x1d\x00\x00\xff\xff\x44\x3c\xd7\x13\x6b\x0d\x00\x00" +var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\xf6\x50\xc8\x80\x22\xa5\x57\x21\xc9\xc2\x75\x9c\x76\x11\x77\x13\x24\xd9\xee\x99\x96\xc6\x16\x61\x99\x54\x49\xca\xae\x10\xe4\xbf\x17\x24\xf5\xa2\x2c\xe5\x81\x06\xa8\x0e\x01\x62\x7e\xf3\xf8\xbe\x99\x21\x87\xee\x0b\x2e\x14\x2c\x44\x55\x28\xee\xd5\xff\xdd\xe4\xfc\xf8\xc4\x77\xc8\x60\x23\xf8\x1e\xce\xff\xb9\x59\xdd\xfd\x7c\xba\xbb\x5d\x7e\x9f\x5f\x5f\x3f\x2c\x1f\x1f\x5b\x60\xc9\xb6\x74\x9d\xa3\x0b\xfe\xf1\xfd\xf7\x6f\xbf\xad\x96\x63\x06\x2b\x9e\xec\x30\x35\x70\xd9\xe0\x57\x77\x8b\xdb\xe5\xb5\x83\xf6\xa2\x28\x82\x27\x41\x98\x24\x89\xa2\x9c\x81\xca\x88\x02\x02\x49\x29\x15\x4f\x2b\x28\x04\x3f\xd0\x14\x05\x1c\x79\x99\xa7\x20\xe9\x96\x19\x13\xc5\x21\x11\x48\x14\x02\x01\x99\x11\x81\x29\x90\x24\xe1\x25\x53\x40\x58\x0a\x84\x41\xc9\x72\x93\x82\x81\x37\x67\x1b\x2e\x80\x40\x29\x51\x78\x9e\xea\xa2\xfa\x1e\x00\xc0\xa6\xcc\xf3\x79\xba\xa7\xec\xbe\x5c\xe7\x34\xb9\xc5\x2a\xae\xe5\x0a\x6f\xb1\x5a\x51\xa9\x96\x4c\x89\x2a\x80\x28\x82\x9f\x48\xb7\x99\x8a\xe1\xd7\xf3\xf3\xf3\xd6\xf8\x87\x44\xf1\x51\xdb\x19\xc0\xb3\x67\x3c\x14\x02\x0b\x22\xd0\xaf\xa9\xdf\xd7\xcc\x63\x98\x97\x2a\x9b\x5b\x02\xb3\x06\xac\xbf\x1c\x55\xcd\xbd\x3e\x85\xcb\x3e\xd6\x2f\x48\xa5\xcd\x07\xfe\x66\x8e\xbd\x96\xe2\x63\xd6\xad\xb9\x13\x3a\xdc\x61\x25\x43\x92\xa6\x7e\xd1\x09\x70\x2a\x68\xd8\x9e\x06\x90\x11\x99\xcd\xf3\x2d\x17\x54\x65\xfb\x51\xb0\x83\x08\xe0\x58\xeb\x36\x82\xb4\x47\x1d\x35\xfd\xb5\xff\xf4\x38\x4e\xa6\xe9\x94\xee\x8d\x2c\x5d\xec\x2b\x49\xba\xc0\x3a\x47\x00\xb7\x82\x07\x52\xe6\x6a\x41\x0a\xb2\xa6\x39\x55\x15\x5c\xba\xc2\x3a\x94\xc2\x9c\xb2\xdd\xc5\x2f\xed\xd4\x86\x7f\x69\xe3\x2b\x3f\x2a\x04\x3d\x10\x85\xd1\xa6\x39\x31\x07\x01\x28\x22\xb6\xa8\x62\x88\xa4\xe2\x82\x6c\x87\x00\x57\xb0\xaf\x5f\xa1\x20\x8c\x26\xfe\x97\x85\x19\x36\xc6\x15\xe8\x80\xe6\x96\x00\x3b\xf9\xc6\x0c\x92\x36\xdd\x2f\x33\x97\x4d\xde\x8d\xfd\x9f\x84\x91\x2d\x0a\xb8\x38\x73\x2e\x83\xd0\xce\xed\xea\x04\xe8\x1b\x25\xe2\xa1\x20\x93\x1d\x27\xc9\x01\xfd\x8b\xb3\xd3\x88\x01\x28\x1e\xbb\x31\x4f\xa3\x3d\x5a\x41\xee\x89\xca\x06\x14\x54\x0f\xf5\xb1\xba\xbc\x11\xf2\xca\x77\x8c\xf4\xf7\x86\xc5\xbd\x2d\xab\x4e\x32\x38\xb1\x6d\x6a\xfb\x7e\xa2\xad\x8b\xd9\x6b\xd5\x36\xfc\x61\x5f\x57\x6f\xba\xd4\x06\xf7\x07\xcf\xd3\xc9\x1a\x3f\x75\x08\xdf\x96\x69\x9e\xa6\x02\xa5\x8c\x07\xa5\x24\xf6\xe7\xc0\xd1\x3e\x9e\xa8\x44\x2f\x8d\xfe\x64\x9b\x76\x70\x44\xba\x38\xeb\xa5\x18\x80\x73\x76\xd2\x21\xbd\x5c\x7b\x8a\x75\xaa\x4f\x44\x1d\x29\x7c\xcf\xd3\xf3\x48\x6d\x6a\xcb\x6f\x6c\xc3\x5f\xae\xfc\xd7\x01\xf6\xf2\x30\x89\x8c\x97\x7b\x3c\xeb\xb1\x42\x99\x0b\xf3\xff\x6a\x67\x7b\x5b\x7f\x6e\x33\xbf\xf3\xee\xb2\xdd\x3c\x78\xc5\xf4\xfa\xe0\xb4\xf9\xf8\x35\x56\x6b\xb3\xd0\xcd\xcc\x05\x5c\x0e\xdd\xb8\xa2\xad\xb9\x10\xfc\x38\x2a\x9b\xeb\xe8\xca\xd7\xfb\xd0\x28\x57\x17\xf8\x21\xb6\x36\x3c\x08\xdc\xa0\x40\x96\xa0\xe6\x38\xe6\xd4\xa1\x3a\x72\xae\x87\xb1\xd9\x01\x9c\x16\x79\x6b\x76\x9b\x85\x6b\x08\xef\x8f\x8b\x3b\xe8\xa6\x2d\xe2\xd1\xfe\xec\x25\x19\x45\x70\x77\x40\x21\x68\x8a\xa0\x32\x84\x14\x37\xe6\x11\xea\x76\x57\x81\x09\xd2\x43\xaf\x1e\x6e\x86\x25\xd3\x9d\xe0\x47\xf6\x55\xef\x9e\xc0\x87\xda\x6c\x62\x6d\x88\xa2\x66\xc5\x64\x78\x6c\x63\xd8\x05\x75\x4f\xc4\x4e\x36\xbf\xa5\x96\x81\x04\x22\xbb\xad\x73\x3c\x15\x3b\x58\x73\x56\x3d\xa0\xe4\xa5\x48\xf0\xd9\x59\xac\xc3\x26\xa5\x97\xc1\x70\x4d\xe6\xee\x4e\xd2\x7f\x79\x12\x1c\xc1\x8b\x72\x0d\x8c\x8b\x3d\xc9\x3b\xe2\x94\xe9\x5d\x5b\xef\xa8\x5a\x93\x92\xd1\xbf\x4b\x84\xa2\xef\xe3\x73\xb9\x5a\x21\x6f\xde\xc7\x78\x62\xc1\xe9\xd1\xd3\x7f\x5f\xbc\x17\xef\xdf\x00\x00\x00\xff\xff\x31\xd2\x5f\xbb\x08\x0d\x00\x00" func lockedtokensAdminCustody_create_account_with_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3879,11 +3860,11 @@ func lockedtokensAdminCustody_create_account_with_lease_accountCdc() (*asset, er } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_account_with_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0xea, 0x4d, 0xc, 0xc6, 0x6b, 0x93, 0xc7, 0x45, 0xb4, 0x90, 0x7c, 0xb1, 0xdc, 0xc1, 0xd5, 0x1a, 0xd8, 0x8d, 0x8c, 0xb3, 0x98, 0x32, 0x8f, 0x37, 0x9a, 0x21, 0x37, 0x53, 0x2a, 0x88, 0x7d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9a, 0xd8, 0x1f, 0x8, 0xcf, 0x85, 0xf3, 0x68, 0x9d, 0xa4, 0x3e, 0xb2, 0x52, 0x18, 0x97, 0xe4, 0xdf, 0xb4, 0x42, 0x80, 0x49, 0xa2, 0x2f, 0x96, 0x50, 0x77, 0x51, 0x4f, 0x6, 0xb9, 0xb5, 0xed}} return a, nil } -var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xe9\xd5\x70\xb2\x48\x8d\x2e\x5a\x6c\x8a\x06\x6d\xb0\x7b\x9e\x88\x63\x8b\x08\x4d\xaa\x24\x65\x43\x58\xe4\xdd\x0b\x52\x94\x2c\xca\xd2\xae\x5b\xb4\x97\xea\x10\xc4\xe4\xfc\x7c\xf3\xcd\x70\x66\xf8\xa1\x52\xda\xc2\x56\x37\x95\x55\x49\xf8\xf5\x51\xa8\xd3\x8b\x7a\x23\x09\x3b\xad\x0e\xb0\xe8\x7f\x2f\x7a\x89\x5a\xee\xf9\xab\xa0\x48\x6a\x78\xd6\x4b\x3e\xa9\xe2\x8d\x98\x3f\x33\x41\x70\x78\xb4\x48\x92\x3c\xcf\xe1\x45\xa3\x34\x58\x58\xae\x24\xd8\x12\x2d\x20\x14\xb5\xb1\x8a\x35\x50\x69\x75\xe4\x8c\x34\x9c\x54\x2d\x18\x18\xbe\x97\x5e\xc5\x2a\x28\x34\xa1\x25\x40\x30\x25\x6a\x62\x80\x45\xa1\x6a\x69\x61\xa7\x34\x20\xd4\xc6\x29\x95\x0a\x50\x68\x42\xd6\x78\xad\x12\x0d\xd8\x92\xb8\x86\x5a\x0a\x8f\xa3\xd7\x6a\xad\x31\x27\xd6\x62\x2a\xe9\x52\xc8\xeb\x2b\x8f\xc2\xd9\x01\x3b\x00\x8e\xc2\xa8\x24\x19\x9c\xa4\x09\x00\xc0\xae\x16\xe2\x91\x1d\xb8\x7c\xae\x5f\x05\x2f\x3e\x51\xb3\x0e\x7c\x67\x9f\xa8\x79\xe2\xc6\xfe\x24\xad\x6e\x56\x90\xe7\xf0\x85\xf8\xbe\xb4\x6b\xf8\xe1\xee\xee\x2e\x59\x02\x7c\x4d\xbc\x89\x4a\x53\x85\x9a\xd2\xc0\xc9\x73\xa0\x64\x0d\x58\xdb\x32\xfd\x51\x69\xad\x4e\x9f\x51\xd4\xb4\x84\x9b\xc7\x16\xe9\xca\xc7\x1f\x7e\x04\xc1\x3f\xac\xd2\xb8\xa7\x15\x6c\xb1\xc2\x57\x2e\xb8\xe5\x64\xce\x2a\xcb\xce\x9d\xfb\x04\xd9\x40\x6b\xb8\x85\x7b\x08\xff\xa5\x15\x36\xce\xf9\x08\xcd\xf2\xac\x1c\x29\x66\x6f\xd4\x98\x0c\x19\x4b\xab\x33\x01\x97\xa4\x64\xfd\xed\xca\xb1\x5c\x3e\x8a\xbd\xd2\xdc\x96\x87\x49\xe1\x48\x62\x05\xa7\xc0\xdb\x84\x64\x7b\xb5\x8c\x23\x3b\x62\x2d\x6c\xcf\x42\x03\xf7\x23\xc8\xc5\x80\xa0\xcc\xb4\xb4\xf5\x06\xdc\x97\x71\x63\x6a\xda\x78\x5a\xa3\xc2\xcf\xbe\x70\x5b\x32\x8d\xa7\x25\xdc\xf4\xef\x26\xfb\xec\xfc\x3d\xa4\x79\x30\x95\xef\xba\x1b\x7f\x31\x02\x27\xce\xef\xe3\x57\x94\xb8\x27\x0d\x9b\xdb\xe8\x21\x65\x6d\xad\x3e\x5d\x08\xa6\x3e\xb0\xf5\x38\xbe\xd9\xd4\x04\x3c\x99\xc1\x23\xa5\x9b\xdb\x4b\xcf\x2b\xb0\x6a\x1d\xfb\xbe\xf4\x1a\xea\xea\x19\x6d\x39\x0a\xc5\x0e\xa4\xfe\x73\xba\xbf\x83\xf2\x21\x8d\x4c\xba\xef\xfa\xb8\x22\xd5\xa9\x20\x7f\x56\x82\xcd\x26\xea\xe5\x2c\x11\x83\x68\x09\x7f\x64\x4c\x93\x31\xeb\x11\x2b\xd8\x1e\xaf\x22\x8d\x21\xa3\xeb\x19\x7e\x93\x09\xa0\x83\x6e\x10\x67\x3d\xb2\xbe\xb9\x1d\x04\x33\x76\x3c\xaa\x83\x41\x50\x53\x44\xcd\x93\xb4\xc5\x0a\xee\x23\x40\x53\xf9\x0f\x29\xbf\x99\xf3\xf9\x90\x5e\x81\x66\x39\x19\x7f\xe4\xce\xb7\x1d\x53\xa6\x31\xc0\x15\xa0\x9d\xac\xfb\x60\xe3\x17\xb9\x53\x6d\x8f\x99\xab\x7a\xdf\x86\xfe\xb7\x35\x2f\x86\x64\x6c\x5d\x91\x2b\x0d\xf7\xe3\x91\x30\x1d\xd7\xab\x9f\x57\x9b\x29\xec\xb1\xc1\x87\xd4\x2d\x0c\xdf\x4a\x43\x10\x9c\xcc\xb8\xfb\x3e\x7c\x80\x0a\x25\x2f\xd2\xc5\xd6\x6f\x0f\x52\x59\x68\xdd\xc3\xd4\xf4\x57\x7a\x31\x8c\x73\xc2\x93\x7b\x94\xdd\x18\x8c\x3c\x45\xc9\xfd\x3b\x0f\xba\x5b\x31\xc6\xaa\xc3\x82\x9d\xef\x04\xbe\xca\xd6\x93\x15\x37\xf5\x12\xf3\x1c\x7e\x3b\x92\xd6\x9c\x91\x5f\x5f\x18\xed\xdc\xa4\x18\x6c\x7c\x9a\x0a\xe2\x47\xd2\xd9\xcc\xc4\x88\xca\xb6\x96\xdd\xeb\xc9\xdb\xe9\x7d\x1e\x6c\xbf\x07\x3b\xb1\xf3\xb0\xb1\x49\x3a\xf5\x8e\xda\x7d\xef\x80\xfa\xcd\x74\x67\xac\x8d\xc7\x00\x9a\x9e\x9e\x6c\x6e\x44\x9a\x73\xfb\xbb\xea\x8d\x75\x7d\xe5\x6b\xfc\xa6\x3a\xbc\xef\xa3\xbe\xf2\x9d\x69\x77\x05\x49\x1d\x45\x13\x8d\x7f\x1c\x40\x9c\x60\xd7\x81\x66\x79\x9d\xc9\x6e\x55\x5b\x90\x4a\x1f\x50\x9c\x09\xe6\xd2\xad\xc8\x6e\x83\x74\xdc\xd7\x92\xff\x59\x13\x54\x68\xcb\xec\xb2\x6b\x75\xe6\xff\x3d\x36\x67\x77\x9e\x7f\x4a\xdd\x18\xe7\x3c\x69\x2d\xc9\x1f\xbf\x41\x9d\xfb\xfb\x9e\xbc\x27\x7f\x05\x00\x00\xff\xff\xe2\x38\x62\x8b\x07\x0d\x00\x00" +var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\x51\x6f\xe3\x36\x0c\x7e\xf7\xaf\x20\xee\x61\x70\x00\x37\xee\x5e\x8d\xb6\x87\x2c\x4d\xb7\x43\xb3\x6b\xd1\x76\xbb\x67\xc5\x66\x62\x21\x8a\xe4\x49\x72\x32\xa3\xc8\x7f\x1f\x24\x39\x8e\xe4\x38\xd7\x1e\x56\xe0\xf2\x50\xa0\xd6\x47\xf2\xe3\x47\x52\x22\xdd\x54\x42\x6a\x98\xca\xa6\xd2\x22\x6a\xff\xbb\x63\x62\xf7\x22\xd6\xc8\x61\x29\xc5\x06\x2e\xff\xbd\x9b\x3f\x7c\x7b\x79\xb8\x9f\x7d\x9d\xdc\xde\x3e\xcd\x9e\x9f\x3b\x60\xcd\x57\x74\xc1\x30\x04\xff\xf5\xf5\xf7\x2f\xbf\xcd\x67\x43\x06\x73\x91\xaf\xb1\xb0\x70\x75\xc0\xcf\x1f\xa6\xf7\xb3\xdb\x00\x1d\xa5\x69\x0a\x2f\x92\x70\x45\x72\x4d\x05\x07\x5d\x12\x0d\x04\xf2\x5a\x69\x51\x34\x50\x49\xb1\xa5\x05\x4a\xd8\x89\x9a\x15\xa0\xe8\x8a\x5b\x13\x2d\x20\x97\x48\x34\x02\x01\x55\x12\x89\x05\x90\x3c\x17\x35\xd7\xb0\x14\x12\x08\xd4\xca\x18\x95\x02\x08\x93\x48\x8a\xc6\x5a\x95\x44\x81\x2e\x91\x4a\xa8\x39\xb3\x04\x3b\x2b\xe7\xad\x30\x30\xc7\xa9\xc4\x53\x90\xb5\x17\x96\x85\xf1\x03\xda\x23\x4e\x98\x12\x51\xe4\x7d\x89\x23\x00\x80\x65\xcd\xd8\xa4\xd8\x50\xfe\x58\x2f\x18\xcd\xef\xb1\xc9\xda\x1a\x8c\xef\xb1\x99\x53\xa5\x67\x5c\xcb\x26\x81\x34\x85\x6f\x48\x57\xa5\xce\xe0\xd7\xcb\xcb\xcb\x68\x04\xf0\x1a\x59\x17\x95\xc4\x8a\x48\x8c\x5b\x4d\x1e\x5b\x49\x32\x98\xd4\xba\x9c\x38\x6a\x89\x4d\xb8\xfd\x27\x38\x19\x1d\xdc\x98\x1f\x43\xdd\xca\xd5\x9e\xc2\xb5\x8f\x8d\x2b\xd2\x18\xc7\xbd\x48\xa3\xa3\x83\xc0\x78\xbc\xc6\x46\x8d\x49\x51\xc4\xd5\x31\xb9\xd3\x84\xc7\xdd\x69\x62\x14\x2c\x27\x6c\x25\x24\xd5\xe5\x66\x10\x1c\x20\x12\xd8\xb5\x9a\x0c\x20\xdd\xd1\x28\xcc\x6e\x4b\x6a\xa6\xa7\xa4\x22\x0b\xca\xa8\x6e\xe0\x3a\xa4\xdc\x61\xcd\x6f\xcc\x28\x5f\x5f\xfd\xd2\x0d\xc1\xf8\x6f\x63\x7c\x13\xa7\x95\xa4\x5b\xa2\x31\x5d\x1e\x4e\xec\x41\x02\x9a\xc8\x15\xea\x0c\x52\xa5\x85\x24\xab\x3e\x60\x14\x78\xff\xfc\x19\x2a\xc2\x69\x1e\x7f\x9a\xda\xde\xe5\x42\x83\x09\x68\x87\x0e\xdc\x20\x59\x33\xc8\x3b\xba\x9f\x7a\xd9\xb0\xe3\x14\xfd\x49\x38\x59\xa1\x84\xab\x8b\x60\xb6\xc6\xae\x71\xe7\x27\xc0\xd8\x2a\x91\xf5\x05\x39\x5b\x4b\x45\xb6\x18\x5f\x5d\x9c\x46\x4c\x40\x8b\x2c\x8c\x79\x1a\xed\xd9\x09\xf2\x48\x74\xd9\x4b\x41\x7b\xa8\x1f\xab\xcb\x1b\x21\x6f\xe2\xc0\xc8\xfc\xde\xb0\x78\x74\x65\x35\x24\x93\x13\xdb\x43\x6d\xdf\x9f\x68\xe7\x62\xf4\xbd\x6a\xdb\xfc\x61\xd3\x56\xef\x7c\xa9\x2d\xee\x0f\xc1\x8a\xb3\x35\x7e\x39\x22\x62\x57\xa6\x49\x51\x48\x54\x2a\xeb\x95\x92\xb8\xcf\x49\xa0\x7d\x76\xa6\x12\x1e\x0d\xef\x0a\x71\xed\x10\x88\x74\x75\xe1\x51\x4c\x20\x38\x3b\xe9\x10\x8f\xab\xa7\xd8\x51\xf5\x33\x51\x07\x0a\xef\x79\x7a\x1d\xa8\x4d\x6b\xf9\x85\x2f\xc5\xfe\x26\xfe\x3e\xc0\x5d\x1d\x96\xc8\x70\xb9\x87\x59\x0f\x15\xca\x5e\x45\x3f\xab\x9d\xdd\x3d\xf8\xb1\xcd\xfc\xce\xbb\xcb\x75\x73\xef\x7d\x30\x6f\x62\xd0\xe6\xa6\xb7\x07\xee\xb1\x56\x9c\xa9\xe9\x66\x21\xe1\xba\xef\x27\x54\x6d\x21\xa4\x14\xbb\x41\xdd\x42\x47\x37\xb1\xd9\x2f\x06\x93\x0d\x81\x3f\x94\xae\x0b\x0f\x12\x97\x28\x91\xe7\x68\x92\x1c\x72\x1a\xcc\xf1\xc0\xb9\x99\xc6\xc3\xf3\x1a\xf4\xc8\x5b\xc3\x7b\xd8\x3e\xfa\x70\x7f\x5e\xc2\x49\xb7\x7d\x91\x0d\x36\xa8\x47\x32\x4d\xe1\x61\x8b\x52\xd2\x02\xed\x12\x53\xe0\xd2\xbe\x42\xc7\x5d\x50\x62\x8e\x74\xeb\xd5\x23\x64\x58\x73\xd3\x0a\x71\xea\x9e\xf5\xe3\x1b\xf8\xd4\x9a\x85\xda\xfa\x71\xdb\x95\x8d\xe3\xae\x8b\xe1\x16\xbe\x0d\x91\x6b\x75\xf8\x56\xb8\x0c\x14\x10\xd5\x89\x70\x86\x8a\x9b\xac\x09\x6f\x9e\x50\x89\x5a\xe6\xf8\x1a\x2c\xaa\xe3\x03\xa5\x7d\x6f\xba\xce\x72\x0f\x47\xe9\xff\xbc\x09\x81\xe0\x55\xbd\x00\x2e\xe4\x86\xb0\x63\xe2\x94\x9b\xdd\xd5\xac\x76\x46\x93\x9a\xd3\x7f\x6a\x84\xca\xf7\xf1\xb1\xb9\x3a\x21\xef\xde\x97\xf1\x99\x0d\xc7\x4b\xcf\xfc\xdd\x47\xfb\xe8\xbf\x00\x00\x00\xff\xff\xbd\xb5\xf1\x52\x58\x0c\x00\x00" func lockedtokensAdminCustody_create_only_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3899,11 +3880,11 @@ func lockedtokensAdminCustody_create_only_lease_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x16, 0xfa, 0xe7, 0x1, 0x8d, 0x5d, 0xca, 0x94, 0x12, 0x96, 0x29, 0x39, 0xb8, 0xa6, 0x56, 0x88, 0xde, 0xb0, 0xdf, 0x9b, 0xfe, 0xdd, 0xd, 0x16, 0xaa, 0xa7, 0xb5, 0x85, 0xb3, 0xbc, 0x7c, 0xe3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x43, 0x2b, 0xad, 0x8, 0xe2, 0x40, 0x95, 0x23, 0x8c, 0xd8, 0xfe, 0x6a, 0x87, 0xc4, 0x1, 0xf1, 0xb9, 0xc5, 0xf, 0xec, 0x25, 0x7c, 0xc4, 0xbf, 0x2d, 0xfa, 0xb7, 0x44, 0x7d, 0x16, 0x7d, 0xb9}} return a, nil } -var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\x7c\x08\x64\xc0\x91\xd2\x63\x0d\x27\x8b\xd4\xe8\xa2\xc5\xa6\x68\xd0\xa6\xbb\xe7\x89\x38\xb6\x88\xd0\xa4\x4a\x52\x36\x84\x20\xff\xbd\xa0\x44\x3d\x28\x4b\x79\x14\xed\x65\x75\x08\x22\x6a\x1e\xdf\x7c\x33\x9c\x19\xf3\x43\xa1\xb4\x85\xad\xae\x0a\xab\x22\xff\xf6\x59\xa8\xd3\x83\x7a\x22\x09\x3b\xad\x0e\xb0\xe8\xde\x17\x9d\x44\x29\xf7\xfc\x51\x50\x20\x35\x3c\xeb\x24\xef\x54\xf6\x44\xac\x3e\x33\x5e\x70\x78\xb4\x88\xa2\x34\x4d\xe1\x41\xa3\x34\x98\x59\xae\x24\xd8\x1c\x2d\x20\x64\xa5\xb1\x8a\x55\x50\x68\x75\xe4\x8c\x34\x9c\x54\x29\x18\x18\xbe\x97\xb5\x8a\x55\x90\x69\x42\x4b\x80\x60\x72\xd4\xc4\x00\xb3\x4c\x95\xd2\xc2\x4e\x69\x40\x28\x8d\x53\xca\x15\xa0\xd0\x84\xac\xaa\xb5\x72\x34\x60\x73\xe2\x1a\x4a\x29\x6a\x1c\x9d\x56\x63\x8d\x39\xb1\x06\x53\x4e\xe7\x42\xb5\xbe\xaa\x51\x38\x3b\x60\x07\xc0\x51\x18\x15\x45\x83\x93\x38\x02\x00\x28\x50\x5b\x8e\xe2\x96\x1d\xb8\xbc\x2f\x1f\x05\xcf\xbe\x50\xb5\xf6\x94\x27\x5f\xa8\xba\xe3\xc6\xfe\x2c\xad\xae\x56\x90\xa6\xf0\x8d\xf8\x3e\xb7\x6b\xf8\xe1\xea\x6a\xa8\xfe\x97\x21\xfd\x01\xed\x1f\xaf\xae\xa2\x25\xc0\x73\xd4\xd8\xd0\x54\xa0\xa6\xd8\x73\x7a\xef\x29\x5d\x03\x96\x36\x8f\x7f\x52\x5a\xab\xd3\x57\x14\x25\x2d\xe1\xe2\xb6\x89\x74\x55\xf3\xe7\x5f\xbc\xe0\x9f\x56\x69\xdc\xd3\x0a\xb6\x58\xe0\x23\x17\xdc\x72\x32\xbd\xca\xb2\x75\xe7\x1e\x41\xd6\xa7\xc5\x7f\x85\x6b\xf0\xff\xc5\x05\x56\xce\xf9\x08\xcd\xb2\x57\x0e\x14\x93\x27\xaa\x4c\x82\x8c\xc5\x45\x1f\xff\x24\xa9\x49\x27\xb0\x72\x89\xca\x6f\xc5\x5e\x69\x6e\xf3\xc3\x9c\x7c\x20\xb4\x82\x93\x27\x6f\x5a\xb8\xf9\xba\xfc\x38\xc8\x20\x75\x6f\x63\x0c\xc5\x5f\x87\x18\xca\xb6\x08\x83\x24\x1c\xb1\x14\xb6\x4b\x58\x05\xd7\x23\xe0\xd9\x20\x97\x89\x69\x32\xdc\x19\x70\x4f\xc2\x8d\x29\x69\x53\x57\x40\x70\xc7\x93\x6f\xdc\xe6\x4c\xe3\x69\x09\x17\x5d\x8b\x48\xbe\x3a\x7f\x37\x71\xea\x4d\xa5\xbb\xf6\x4b\xfd\x61\x04\x4e\xf4\xad\xe0\x37\x94\xb8\x27\x0d\x9b\xcb\xa0\x67\x24\xcd\xb5\xbc\x3b\x13\x8c\xeb\xc0\xd6\xe3\xf8\x66\xab\xc8\xe3\x49\x0c\x1e\x29\xde\x5c\x9e\x7b\x5e\x81\x55\xeb\xd0\xf7\xb9\x57\x7f\x05\xee\xd1\xe6\xa3\x50\xec\x40\xea\x7f\xa7\xfb\x0d\x94\x37\x71\x60\xd2\x3d\xef\x8f\x2b\x50\x9d\x0a\xf2\x17\x25\xd8\x6c\xa2\x1e\x7a\x89\x10\x44\x43\xf8\x2d\x63\x9a\x8c\x59\x8f\x58\xc1\xe6\x78\x15\x68\x0c\x19\x5d\xcf\xf0\x1b\x4d\x00\x1d\x34\xae\x30\xeb\x81\xf5\xcd\xe5\x20\x98\xb1\xe3\x51\x1d\x0c\x82\x9a\x22\x6a\x9e\xa4\x2d\x16\x70\x1d\x00\x9a\xca\xbf\x4f\xf9\xc5\x9c\xcf\x9b\xf8\x1d\x68\x96\x93\xf1\x07\xee\xea\xd6\x63\xf2\x38\x04\xb8\x02\xb4\x93\x75\xef\x6d\xfc\x2a\x77\xaa\xe9\x31\x73\x55\x5f\x37\xca\xef\xb6\xe6\xc5\x90\x8c\xad\x2b\x72\xa5\xe1\x7a\x3c\xbd\xa6\xe3\x7a\xac\x47\xeb\x66\x0a\x7b\x68\xf0\x26\x76\xbb\xd1\x6b\x69\xf0\x82\x93\x19\x77\xcf\xa7\x4f\x50\xa0\xe4\x59\xbc\xd8\xd6\x8b\x92\x54\x16\x1a\xf7\x30\xb5\xe8\x28\xbd\x18\xc6\x39\xe1\xc9\x5d\xca\x76\x62\x07\x9e\x82\xe4\x7e\xe4\x42\xb7\xdb\xd4\x58\x75\x58\xb0\xf3\x9d\xa0\xae\xb2\xf5\x64\xc5\x4d\xdd\xc4\x34\x85\xdf\x8f\xa4\x35\x67\x54\x6f\x6a\x8c\x76\x6e\x52\x0c\x96\x5b\x4d\x19\xf1\x23\xe9\x64\x66\x62\x04\x65\x5b\xca\xf6\xf6\xa4\xcd\x04\xef\x07\xdb\x1f\xde\x4e\xe8\xdc\x2f\xa7\x92\x4e\x9d\xa3\x66\xb5\x3d\xa0\x7e\x32\xed\x19\x6b\xe2\x31\x80\xa6\xa3\x27\x99\x1b\x91\xa6\x6f\x7f\xef\xba\x63\x6d\x5f\x79\x0e\xef\x54\x8b\xf7\x65\xd4\x57\xde\x98\x76\xef\x20\xa9\xa5\x68\xa2\xf1\x8f\x03\x08\x13\xec\x3a\xd0\x2c\xaf\x33\xd9\x2d\x4a\x0b\x52\xe9\x03\x8a\x9e\x60\x2e\xdd\xaf\x01\xb7\xec\x3a\xee\x4b\xc9\xff\x2e\x09\x0a\xb4\x79\x72\xde\xb5\x5a\xf3\xff\x1d\x9b\xb3\x3b\xcf\xbf\xa5\x6e\x8c\x73\x9e\xb4\x86\xe4\xcf\xaf\x50\xe7\xfe\xbe\x44\x2f\xd1\x3f\x01\x00\x00\xff\xff\x54\x81\x36\x64\xf2\x0d\x00\x00" +var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\xf6\x50\xc8\x80\x63\xb9\xc7\x0a\xc9\x2e\x5c\xc7\x69\x17\x71\x37\x41\x92\xed\x9e\x69\x69\x6c\x11\x96\x49\x95\xa4\xec\x0a\x41\xfe\x7b\x41\x52\x92\x45\x99\xda\xd8\x45\x81\xae\x4e\x89\xf8\xe6\xeb\x3d\xce\x68\x4c\x77\x05\x17\x0a\xe6\xa2\x2a\x14\x0f\xea\xff\xee\x72\x7e\x78\xe1\x5b\x64\xb0\x16\x7c\x07\xd3\xbf\xef\x96\x0f\xdf\x5e\x1e\xee\x17\x5f\x66\xb7\xb7\x4f\x8b\xe7\xe7\x16\x58\xb2\x0d\x5d\xe5\xe8\x82\xbf\x7e\xf9\xed\xf3\xaf\xcb\x85\xcf\x60\xc9\x93\x2d\xa6\x06\x2e\x1b\xfc\xf2\x61\x7e\xbf\xb8\x75\xd0\x41\x14\x45\xf0\x22\x08\x93\x24\x51\x94\x33\x50\x19\x51\x40\x20\x29\xa5\xe2\x69\x05\x85\xe0\x7b\x9a\xa2\x80\x03\x2f\xf3\x14\x24\xdd\x30\x63\xa2\x38\x24\x02\x89\x42\x20\x20\x33\x22\x30\x05\x92\x24\xbc\x64\x0a\xd6\x5c\x00\x81\x52\x6a\xa3\x8c\x03\xc9\x05\x92\xb4\x32\x56\x19\x91\xa0\x32\xa4\x02\x4a\x96\x9b\x04\x5b\x2b\xeb\x2d\xd5\x30\x9b\x53\x86\xa7\x20\x63\xcf\x4d\x16\xda\x0f\xa8\x4e\xe2\x24\x97\x3c\x08\x3a\x6f\xc2\x00\x00\xa0\x20\x42\x51\x92\xcf\xd2\x1d\x65\x8f\xe5\x2a\xa7\xc9\x3d\x56\x71\x2d\xc3\xe4\x1e\xab\x25\x95\x6a\xc1\x94\xa8\xc6\x10\x45\xf0\x0d\xe9\x26\x53\x31\xfc\x3c\x9d\x76\xcd\xbf\x4a\x14\x17\x58\xff\x32\x9d\x06\x23\x80\xd7\xc0\xfa\x10\x58\x10\x81\x61\xcd\xe9\x63\x4d\x69\x0c\xb3\x52\x65\x33\x5b\xda\xd8\x10\x56\xff\xe3\x9c\x8c\x1a\x37\xfa\xc9\x51\xd5\x74\xd7\xa7\x70\xd3\xc5\x86\x05\xa9\xb4\xe3\x5e\xa4\xd1\xd1\x81\x63\x3c\xd9\x62\x25\x27\x24\x4d\xc3\xe2\x58\x9b\x97\xb0\x49\x0b\x18\x6b\x11\xb2\x59\xbe\xe1\x82\xaa\x6c\x37\x84\x77\x40\x63\x38\xd4\xc4\xf8\xc1\xf6\x74\x74\x79\x92\x8e\x2c\xef\xe7\xe8\xc2\xbf\x9f\xa2\x8b\x6d\x32\x74\x84\xd8\x93\x32\x57\x73\x52\x90\x15\xcd\xa9\xaa\xe0\xc6\x4d\xbc\xc5\xea\x67\x92\x53\xb6\xbd\xfe\xa9\xed\xf7\xc9\x9f\xda\xf8\x63\x18\x15\x82\xee\x89\xc2\x68\xdd\x9c\x98\x83\x31\x28\x22\x36\xa8\x62\x88\xa4\xe2\x82\x6c\xfa\x80\x91\xe3\xfd\xd3\x27\x28\x08\xa3\x49\xf8\x61\x6e\xda\x94\x71\x05\x3a\xa0\x99\x2f\x60\x67\x86\x31\x83\xa4\x4d\xf7\x43\xaf\x9a\xfc\x38\x30\xfe\x20\x8c\x6c\x50\xc0\xf5\x95\x33\x46\x26\xb6\x47\x97\x27\xc0\xd0\x30\x11\xf7\x09\x19\xbc\x76\x92\xec\x31\xbc\xbe\x3a\x8d\x38\x06\xc5\x63\x37\xe6\x69\xb4\x67\x4b\xc8\x23\x51\x59\xaf\x04\xd5\x41\x5d\xa6\xcb\x3b\x21\x3f\x86\x8e\x91\x7e\xde\xb1\x78\xb4\xb2\xea\x24\xc7\x27\xb6\x8d\xb6\xe7\x17\xea\xb8\x38\x53\x7b\xc3\x06\xec\x6a\x2d\x87\x85\x37\xb8\xdf\x79\x9e\x0e\x2a\xfe\x72\x44\xb8\x44\x58\x05\x67\x69\x2a\x50\xca\xb8\xa7\x32\xb1\xaf\xdd\xf2\xbb\x12\xc5\x03\x82\x05\xc7\x42\xdb\x3f\x3b\xd3\xd1\x5e\x1f\xc7\xeb\xf5\x55\xa7\x88\x7e\xc0\x1e\xcf\x9d\x62\x3a\x04\x8f\xdf\x0b\xea\xb9\x27\x1d\x4f\xaf\x1e\x29\x6b\xcb\xcf\x6c\xcd\xdf\x7a\x17\xe8\xfb\x68\x3b\x76\x4e\xaf\x8e\xf7\xda\xf8\xcb\xf1\x55\xd3\x6a\x6d\xa6\xef\xff\xd5\x1f\x76\xf4\xff\x28\xdd\xd1\xfb\x50\xea\xe5\xc2\x69\x1b\xdd\x2b\x9e\x29\x59\x33\x35\xd7\xdd\xc1\x05\xdc\xf4\xfd\xb8\x14\xae\xb8\x10\xfc\xe0\x25\xd1\x75\xe4\xa1\x51\x6f\x6e\x5e\x2a\x5c\xcb\x7f\x4f\x86\x4d\x0e\x04\xae\x51\x20\x4b\x50\x53\xe0\x8b\xe0\x4c\x0d\xcf\xb9\x6e\xf7\x66\x0b\x71\x82\x3a\x77\xeb\x92\x51\xd1\x6c\x7f\x7d\xd3\x6e\x57\x0e\xcf\x18\x73\xcf\x62\xef\x85\xf7\x35\x47\x14\xc1\xc3\x1e\x85\xa0\x29\x9a\xcd\x32\xc5\xb5\xf9\x5e\x1e\x17\x74\x81\x09\xd2\x7d\x47\x5b\xb7\x84\x92\xe9\x6b\x15\x46\x76\x09\x39\x7e\xad\x9f\x6a\x33\x37\x56\xbd\x3b\x33\x3c\xb4\x7e\xed\xe6\xbd\x23\x62\x2b\x9b\x77\xa9\x4d\x5f\x02\x91\x2d\x1b\x03\xe1\x6d\x9b\xce\x58\xf5\x84\x92\x97\x22\xc1\x57\xe7\x17\xc3\xa4\x49\xa3\x3f\x89\x06\xf3\x3d\x63\xf4\x9c\xd7\x93\x6e\xe1\x45\xb9\x02\xc6\xc5\x8e\xe4\xc7\xc2\x29\xd3\x3f\x22\xf4\x8e\xac\x39\x29\x19\xfd\xab\x44\x28\xba\x3e\xfe\xdb\x5a\x2d\x91\x77\xe7\x55\x3c\xb0\x7f\x05\x6e\x87\xbd\x05\x6f\xc1\x3f\x01\x00\x00\xff\xff\xcd\x41\x82\xba\xe1\x0d\x00\x00" func lockedtokensAdminCustody_create_only_shared_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3919,11 +3900,11 @@ func lockedtokensAdminCustody_create_only_shared_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_shared_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0xe5, 0xf1, 0xe3, 0x9c, 0x8f, 0xa1, 0xf1, 0xe8, 0x70, 0x0, 0xa1, 0xcd, 0x92, 0x19, 0x17, 0x49, 0xf2, 0x4e, 0x68, 0xef, 0x32, 0x85, 0xb6, 0xac, 0x41, 0x2a, 0x9b, 0xfe, 0xa8, 0x96, 0x31}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x55, 0xbf, 0xb7, 0x6c, 0xdf, 0x9b, 0xe, 0x1e, 0xf4, 0x72, 0xb3, 0xa8, 0x9b, 0xad, 0x62, 0x78, 0x7b, 0xc3, 0xc1, 0xb1, 0x5d, 0x45, 0x73, 0xad, 0x27, 0xbc, 0x2b, 0xc0, 0x9f, 0x7c, 0xd7, 0xab}} return a, nil } -var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xde\x63\x0d\x27\x8b\xd4\xe8\xa2\xc5\xa6\x68\xd0\xa6\xbb\xe7\x89\x34\xb6\x88\xc8\xa4\xca\x1f\x1b\x46\x90\x77\x2f\x28\x51\xb2\x28\x51\x89\x53\xb4\x97\xf2\x10\x44\xe4\xfc\x7c\xf3\xcd\x70\x38\x66\xfb\x4a\x48\x0d\x1b\x79\xaa\xb4\x88\xdc\xd7\x97\x52\x1c\x1f\xc5\x33\x71\xd8\x4a\xb1\x87\x59\xf7\x3d\xeb\x24\x0c\xdf\xb1\xa7\x92\x3c\xa9\xfe\x5e\x27\x79\x2f\xb2\x67\xca\xeb\x3d\xe5\x04\xfb\x5b\xb3\x28\x4a\xd3\x14\x1e\x25\x72\x85\x99\x66\x82\x83\x2e\x50\x03\x42\x66\x94\x16\xf9\x09\x2a\x29\x0e\x2c\x27\x09\x47\x61\xca\x1c\x14\xdb\xf1\x5a\x45\x0b\xc8\x24\xa1\x26\x40\x50\x05\x4a\xca\x01\xb3\x4c\x18\xae\x01\x79\x0e\xc8\xc1\xf0\xb2\xf6\x54\x8b\xb7\x67\x5b\x21\x01\xc1\x28\x92\x51\xa4\xcf\x5e\xe3\x08\x00\xa0\x42\xa9\x19\x96\x77\xf9\x9e\xf1\x07\xf3\x54\xb2\xec\x2b\x9d\x56\x8e\x9d\xe4\x2b\x9d\xee\x99\xd2\x3f\x71\x2d\x4f\x0b\x48\x53\xf8\x4e\x6c\x57\xe8\x15\x7c\x5a\x2e\xfb\xea\x7f\x2a\x92\x1f\xd0\xfe\xc1\x69\x6f\x4d\xf9\x51\xd5\x4f\xcb\xe5\x32\x9a\xc3\x4b\xd4\xb8\x97\x54\xa1\xa4\xd8\x31\xf7\xe0\x88\x5b\x01\x1a\x5d\xc4\x3f\x0a\x29\xc5\xf1\x1b\x96\x86\xe6\x70\x75\xd7\xd0\xd1\xe9\xda\x55\x92\x76\x4c\xba\x53\xb8\x01\xf7\x5f\x5c\xe1\xc9\x5a\x1a\x98\x9e\x7b\xba\x96\xd4\xcb\x35\x3b\x55\xcf\x65\xf2\x4c\x27\x95\x60\x9e\xc7\xd5\x99\x86\x60\x5a\x92\x4e\x60\x01\x05\xaa\xe2\xae\xdc\x09\xc9\x74\xb1\x9f\x92\xf7\x84\x16\x70\x74\x1c\x86\x85\x9b\xd3\xf9\xc7\x41\x7a\x19\x7c\x1f\xa3\x2f\xfe\x36\x44\x5f\xb6\x45\xd8\x41\xec\xd1\x1f\x04\x38\xaa\xaf\x37\xd0\x8d\x65\x27\xa0\x8d\x05\x47\xb8\x6c\x69\x1c\xd0\x94\x7a\x83\x15\x3e\xb1\x92\xe9\x13\xdc\x0c\x08\xcd\xda\x23\x46\x2a\x51\x5a\x48\xdc\x51\x67\xc0\xae\x84\x29\x65\x68\x5d\x57\xb2\xd7\x68\x92\xef\x4c\x17\xb9\xc4\xe3\x1c\xae\xba\x3e\x95\x7c\xb3\xfe\x6e\xe3\xd4\x99\x4a\xb7\xed\x49\x7d\x30\x00\x57\x9e\xfb\xd1\xaf\xc8\x71\x47\x12\xd6\xd7\x5e\xe3\x4a\x9a\x4e\x73\x3f\x12\x8c\xeb\xc0\x56\xc3\xf8\x26\xab\xdb\xe1\x49\x14\x1e\x28\x5e\x5f\x8f\x3d\x2f\x40\x8b\x95\xef\x7b\xec\xf5\x8f\xc6\xca\x03\xea\x62\x10\x8a\xee\x49\xfd\xe7\x74\xbf\x83\xf2\x36\xf6\x4c\xda\x75\x79\x5c\x9e\x6a\x28\xc8\x9f\x45\x99\x4f\x26\xea\xf1\x2c\xe1\x83\x68\x08\xbf\xcb\x73\x49\x4a\xad\x06\xac\x60\xb3\xbd\xf0\x34\xfa\x8c\xae\x26\xf8\x8d\x02\x40\xfb\xb7\xd1\xcb\xba\x67\x7d\x7d\xdd\x0b\x66\xe8\x78\x50\x07\xbd\xa0\x42\x44\x4d\x93\xb4\xc1\x0a\x6e\x3c\x40\xa1\xfc\xbb\x94\x5f\x4d\xf9\xbc\x8d\x2f\x40\x33\x0f\xc6\xef\xb9\xab\x9b\x8e\x2a\x62\x1f\xe0\x02\x50\x07\xeb\xde\xd9\xf8\x85\x6f\x45\xd3\x63\xa6\xaa\xbe\x6e\xe0\xff\xdb\x9a\x2f\xfb\x64\x6c\x6c\x91\x0b\x09\x37\xc3\x57\x35\x1c\xd7\x53\xfd\xf2\xaf\x43\xd8\x7d\x83\xb7\xb1\x1d\xd0\xde\x4a\x83\x13\x0c\x66\xdc\xae\xcf\x9f\xa1\x42\xce\xb2\x78\xb6\xa9\xa7\x35\x2e\x34\x34\xee\xbb\x01\x2c\x73\xe0\x25\x6d\x49\x12\xcf\x68\xd6\x0f\x35\xe0\xcc\xde\xcb\x76\x98\xf0\x9c\x79\xf9\xfd\xc8\x9d\x6e\x07\xc3\xa1\x6a\xbf\x66\xa7\x9b\x41\x5d\x68\xab\x60\xd1\x85\x2e\x63\x9a\xc2\x6f\x07\x92\x92\xe5\x04\xba\x20\xc8\x69\x6b\x1f\x8b\xde\x90\x2d\x29\x23\x76\x20\x99\x4c\x3c\x1a\x5e\xe5\x1a\xde\x5e\xa0\xb4\x79\xbe\xcf\x6f\xdb\xef\xce\x8e\xef\xdc\x0d\xc9\x9c\x8e\x9d\xa3\x66\xc4\xde\xa3\x7c\x56\xed\x5e\xde\xc4\xa3\x00\x55\x47\x4f\x32\xf5\x4a\xaa\x73\x07\xbc\xe8\x9a\xb5\xad\xe5\xc5\xbf\x56\x2d\xde\xd7\x41\x6b\x79\xe7\xc1\xbb\x80\xa4\x96\xa2\x40\xef\x1f\x06\xe0\x27\xd8\x36\xa1\x49\x5e\x27\xb2\x5b\x19\x0d\x5c\xc8\x3d\x96\x67\x82\x19\xb7\xbf\x4a\xec\x38\x6e\xb9\x37\x9c\xfd\x65\x08\x2a\xd4\x45\x32\x6e\x5c\xad\xf9\x7f\x8f\xcd\xc9\xb1\xe7\x9f\x52\x37\xc4\x39\x4d\x5a\x43\xf2\x97\x37\xa8\xb3\x7f\x5f\xa3\xd7\xe8\xef\x00\x00\x00\xff\xff\x49\x24\x03\x98\x7a\x0e\x00\x00" +var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\xf6\x50\x28\x80\x63\x79\x8f\x15\x92\x2e\x5c\xc7\x69\x17\x71\x37\x41\x92\xed\x9e\x69\x69\x6c\x11\x96\x49\x95\xa4\xec\x0a\x41\xfe\x7b\x41\x51\x5f\x94\xa8\x38\x0e\x0a\xb4\xba\xd9\x7c\xc3\x99\x79\x6f\x66\x48\xd2\x7d\xc6\x85\x82\x85\x28\x32\xc5\xbd\xea\xd7\x6d\xca\x8f\xcf\x7c\x87\x0c\x36\x82\xef\x61\xf6\xf7\xed\xea\xfe\xc7\xf3\xfd\xdd\xf2\xdb\xfc\xe6\xe6\x71\xf9\xf4\xd4\x00\x73\xb6\xa5\xeb\x14\x6d\xf0\xf7\x6f\xbf\x7d\xfd\x75\xb5\x74\x19\xac\x78\xb4\xc3\xb8\x84\xcb\x1a\xbf\xba\x5f\xdc\x2d\x6f\x2c\xb4\x17\x04\x01\x3c\x0b\xc2\x24\x89\x14\xe5\x0c\x54\x42\x14\x10\x88\x72\xa9\x78\x5c\x40\x26\xf8\x81\xc6\x28\xe0\xc8\xf3\x34\x06\x49\xb7\xac\x34\x51\x1c\x22\x81\x44\x21\x10\x90\x09\x11\x18\x03\x89\x22\x9e\x33\x05\x84\xc5\x40\x18\xe4\x2c\x2d\x43\x28\xe1\xf5\xda\x86\x0b\x20\x90\x4b\x14\x9e\xa7\x5a\xaf\xbe\x07\x00\x90\x11\xa1\x28\x49\xe7\xf1\x9e\xb2\x87\x7c\x9d\xd2\xe8\x0e\x8b\xb0\x62\x6c\x7a\x87\xc5\x8a\x4a\xb5\x64\x4a\x14\x13\x08\x02\xf8\x81\x74\x9b\xa8\x10\x3e\xcf\x66\x5d\xf3\xef\x12\xc5\x19\xd6\x3f\x57\xd6\x9b\x3c\x3d\xd7\xf4\xf3\x6c\x36\xf3\x2e\xe0\xc5\x33\xee\x05\x66\x44\xa0\x5f\x31\xf7\x50\x11\x17\xc2\x3c\x57\xc9\xdc\xe4\xdf\x80\xf5\x97\xa2\xaa\xa8\xab\x56\xe1\xba\x8b\xf5\x33\x52\x68\xf3\xde\x7e\x17\x96\xbd\x66\xf2\x3c\xeb\xc6\xdc\x72\x3d\xdd\x61\x21\xa7\x24\x8e\xfd\xac\xcd\xdf\xa9\xc7\xb4\x01\x4c\x20\x21\x32\x99\xa7\x5b\x2e\xa8\x4a\xf6\x63\x78\x0b\x34\x81\x63\x45\x9e\x1b\x6c\x56\x2f\xce\x0f\xd2\x92\xee\x74\x8c\x36\xfc\xed\x10\x6d\x6c\x1d\x61\x13\x62\x47\x02\x67\x80\x83\xc2\x7a\x23\xba\x21\x76\x24\xb4\x21\x70\x10\x97\x2e\x8f\x03\xc9\x53\xb5\x20\x19\x59\xd3\x94\xaa\x02\xae\x6d\x42\x1b\xac\xfe\xa6\x29\x65\xbb\xab\x9f\x9a\x89\x34\xfd\x53\x1b\xff\xe2\x5b\x20\xfd\x05\x99\xa0\x07\xa2\x30\xd8\xd4\xd0\x12\x39\x19\x00\x15\x11\x5b\x54\x21\x04\x52\x71\x41\xb6\x7d\x03\x0b\x7f\x61\xfd\xfa\xf2\x05\x32\xc2\x68\xe4\x7f\x5a\x94\x63\x87\x71\x05\x3a\xbc\x72\x5e\x82\x99\x81\xe5\x1e\x10\x35\xc9\x7d\xea\xe5\x9e\xb6\x03\xf0\x0f\xc2\xc8\x16\x05\x5c\x5d\x5a\x63\x71\x6a\x26\xd8\x6a\x00\xf4\x4b\xde\xc2\x3e\x7d\xa3\xcd\x23\xc9\x01\xfd\xab\xcb\xa1\xc7\x09\x28\x1e\xda\x3e\x87\xde\x9e\x0c\x3b\x0f\x44\x25\xbd\x14\x54\x07\x75\x9e\x8a\x27\x5c\x3a\x54\x3d\x61\xf1\x60\x34\xd7\x41\x8e\x0b\xfd\xfe\x44\x3f\xa2\x7d\xc9\x06\xec\x2b\x2d\xc7\x85\x2f\x71\xbf\xf3\x34\x1e\x55\xfc\xb9\x45\xd8\x44\x18\x05\xe7\x71\x2c\x50\xca\xb0\xa7\x32\x31\x7f\xdb\xe9\x77\x25\x0a\x47\x04\xf3\xda\x44\x9d\x53\xa3\x2c\x1f\x6b\xd7\xab\xcb\x4e\x12\x7d\x87\x3d\x9e\x3b\xc9\x74\x08\x9e\x9c\x72\xea\xa8\x93\xce\x4e\x2f\x0e\x29\x2b\xcb\xaf\x6c\xc3\x5f\x7b\x05\xf4\x36\xda\x0c\xa9\x61\xe9\x38\xcb\xc6\x9d\x8e\x2b\x9b\x46\xeb\xf2\x0c\xf9\xaf\xfa\xc3\x1c\x60\xff\x97\xee\xe8\x1d\xf7\xfa\x9a\x66\xb5\x8d\x7b\x48\x56\x44\x2d\x74\x73\x70\x01\xd7\xfd\x6d\x6c\x06\xd7\x5c\x08\x7e\x74\x72\x68\x6f\xe4\x60\x51\x5f\x44\x9d\x4c\xd8\x96\x1f\xe7\xc2\x04\x07\x02\x37\x28\x90\x45\xa8\x19\x70\x79\xb0\x88\x70\xac\xeb\x6e\xaf\xaf\x52\x96\x53\xab\xb4\xce\x99\x14\xf5\x7d\xb8\x6f\xda\x6d\xca\xf1\x11\x53\x96\x59\xe8\xac\x77\x57\x6f\x04\x01\xdc\x1f\x50\x08\x1a\x23\xa8\x04\x21\xc6\x4d\x79\x5c\xb6\xef\x0d\x81\x11\xd2\x43\x47\x5b\x3b\x85\x9c\xe9\xaa\xf2\x03\x73\x57\x69\x4f\xee\xc7\xca\xcc\xf6\x55\x3d\x05\x18\x1e\x9b\x7d\xcd\x43\x62\x4f\xc4\x4e\xd6\xff\xc5\x26\x7c\x09\x44\xb6\xaf\x03\xb7\x7b\xd3\xa5\x73\x56\x3c\xa2\xe4\xb9\x88\xf0\xc5\x7a\x00\x4d\xeb\x30\xfa\x83\x68\x34\xde\x77\x4c\x9e\xf7\xb5\xa4\x9d\x78\x96\xaf\x81\x71\xb1\x27\x69\x9b\x38\x65\xfa\x4d\xa4\x1f\x03\x9a\x93\x9c\xd1\xbf\x72\x84\xac\xbb\xc7\xbf\x9b\xab\x21\xf2\xf6\x7d\x19\x9f\xba\x8b\x99\x0e\x7b\xf5\x5e\xbd\x7f\x02\x00\x00\xff\xff\xa7\x8e\x77\xbc\xb0\x0e\x00\x00" func lockedtokensAdminCustody_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3939,11 +3920,11 @@ func lockedtokensAdminCustody_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8d, 0x9c, 0xa9, 0xa6, 0xfd, 0xba, 0xcb, 0xf6, 0x70, 0x43, 0xa6, 0x9a, 0x65, 0x1e, 0x20, 0xa, 0xe3, 0x83, 0x0, 0x12, 0xfd, 0xaa, 0xf5, 0x47, 0x97, 0x51, 0xdd, 0xcd, 0x30, 0xd9, 0x8d, 0x16}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x74, 0x50, 0x5a, 0xa9, 0xa6, 0xb0, 0xd4, 0xdd, 0x14, 0x0, 0xfe, 0x63, 0xd4, 0xc3, 0x61, 0x85, 0xb3, 0xc0, 0x6f, 0xc0, 0x4a, 0xba, 0x4c, 0x57, 0xb3, 0x72, 0x4d, 0xc2, 0x2a, 0xc0, 0x5d, 0x57}} return a, nil } -var _lockedtokensAdminCustody_setup_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x51\xcb\x6a\xeb\x30\x10\xdd\xeb\x2b\x86\x2c\x82\x03\x79\xec\x43\xee\x85\x90\x6d\x17\x86\x94\xee\x27\xf2\xb4\x16\x96\x25\x31\x1a\xb9\x94\x92\x7f\x2f\xae\x89\x6b\xa5\xe9\x03\x3a\x0b\x2f\x8e\x47\xe7\x35\xa6\x0d\x9e\x05\xee\xbc\x6e\xa8\xba\xf7\x0d\xb9\x08\x8f\xec\x5b\x98\x4d\xa1\x99\x52\xc2\xe8\x22\x6a\x31\xde\xc1\xab\x52\x00\x00\x81\x29\x20\x53\xa1\x53\x14\x5f\xbd\x94\xec\x3b\x53\x11\x6f\x01\x93\xd4\xc5\x11\x3b\x7a\x40\x9b\x68\x09\x07\x0c\x78\x32\xd6\x88\xa1\xb8\x80\xf9\x5e\x6b\x9f\x9c\x2c\x2e\x3c\xfd\x58\x12\xc0\x01\x3f\x30\xa1\x78\x86\xdd\x2a\xb3\xb5\xd6\x3d\x4e\x03\xb4\xcf\x56\x8b\xc5\x07\xd1\x95\x99\x75\x14\xcf\xf8\x44\xeb\x88\x1d\x15\xe3\x56\x3f\xbb\x55\x2e\xb8\xcc\xfe\x8a\xdf\xe6\xf2\xb7\x84\x8f\x03\x79\x89\x52\x8f\x8f\x27\x5e\x36\x1b\x18\x4c\x83\xa3\x67\x60\xd2\x64\x3a\x62\x90\x1a\x05\x5a\xe4\x26\x5e\xb0\x0a\x64\xa8\x1e\x23\x24\x67\xdf\x95\xb2\x6a\xec\x0d\xf1\x03\x06\xf8\xf7\x29\xaf\x9e\x74\x3d\x86\x37\x31\x26\xda\xcd\x7f\xcc\xf3\x3f\x6f\xe8\xaf\xf9\xbf\xf5\x16\xd2\xc9\x9a\x58\xe7\x8a\x5f\xe4\xcc\x4f\x83\xf2\x8b\xd3\x94\x3d\xbd\xbe\x72\xd6\x7f\xcf\xea\xac\xde\x02\x00\x00\xff\xff\xb3\xbb\x63\xe2\xf6\x02\x00\x00" +var _lockedtokensAdminCustody_setup_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\xdd\x6a\xc2\x40\x10\x85\xef\xf7\x29\xe6\xaa\x28\xf8\xd3\x6b\x91\x42\xd0\x5c\x29\x35\x34\xbe\xc0\x74\x33\x35\x4b\x92\xdd\x30\x3b\x49\x5b\x24\xef\x5e\x62\x30\x65\xa5\xc5\x76\xee\xf6\xcc\xcf\x39\xfb\x99\xaa\x76\x2c\xb0\x77\xba\xa0\xec\xe8\x0a\xb2\x1e\xde\xd8\x55\xf0\xf8\xb1\x3f\x6c\x76\xf1\xf6\x78\xd8\xc5\xcf\xd1\x76\xfb\x12\xa7\xa9\x52\xc2\x68\x3d\x6a\x31\xce\xc2\x59\x29\x00\x80\x9a\xa9\x46\xa6\x89\x6e\xbc\xb8\xec\x33\x61\xd7\x9a\x8c\x78\x05\x51\x23\x79\xa4\xb5\x6b\xac\x4c\xaf\xc3\x7d\x95\x24\x80\x83\xbe\x61\x42\x71\x0c\xeb\x79\x90\x60\xa1\x7b\x9d\x06\x29\x0a\x46\x27\xd3\xef\x43\x37\x8e\x0b\x8f\x2d\x4d\xc6\x6e\x5f\xeb\x79\x68\x34\x83\xa0\x2d\x6e\x15\xfa\xfe\xe4\x98\x8a\x63\x3c\x51\x82\x92\xcf\xc6\xed\x69\x70\x67\x7c\x2c\x97\x30\x44\x07\x4b\xef\xc0\xa4\xc9\xb4\xc4\x20\x39\x0a\x54\xc8\x85\xbf\x6a\x19\xc8\xc0\x1a\x3d\x34\xb6\xbc\xd8\xfe\xfa\xaf\xd2\xd8\x62\xfd\x70\x37\xe8\xf9\xee\x44\xd2\xbc\x96\x46\x77\x4f\x21\xa4\x3f\xae\x85\x00\x2e\xf8\x90\x4f\x24\xff\x43\x78\x43\xb0\x53\x9d\xfa\x0a\x00\x00\xff\xff\x03\x0d\xf1\xc2\x83\x02\x00\x00" func lockedtokensAdminCustody_setup_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3959,11 +3940,11 @@ func lockedtokensAdminCustody_setup_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_setup_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcb, 0x18, 0xe4, 0x77, 0xf3, 0x8, 0x1c, 0x54, 0xd1, 0x5, 0x32, 0x49, 0x92, 0x5f, 0x1e, 0x68, 0xe1, 0x59, 0x8d, 0x29, 0x7e, 0x52, 0xc6, 0x8e, 0x2e, 0x6b, 0xc4, 0xe4, 0xe8, 0x87, 0x58, 0x72}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x96, 0xaa, 0x40, 0xfa, 0xc7, 0xc8, 0x86, 0x4b, 0xda, 0x8f, 0x8a, 0x8f, 0x20, 0x36, 0xd0, 0xb0, 0x25, 0xd0, 0xe0, 0xed, 0x70, 0x60, 0xf2, 0x2c, 0x9a, 0x8d, 0x46, 0x4c, 0xce, 0xd8, 0x9, 0x5f}} return a, nil } -var _lockedtokensAdminDeposit_locked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x4f\xdc\x3e\x10\x3d\x93\x4f\x31\xe4\x00\x89\x04\xd9\xcb\x4f\xbf\x43\xc4\x9f\x52\x2a\x7a\xe9\xa1\xa2\x94\x9e\x1d\x67\xb2\x71\xf1\xda\x91\x3d\x61\x91\x10\xdf\xbd\x8a\x1d\xbb\xf1\xee\x0a\x9a\x4b\xe4\xf1\xcc\xbc\x37\x33\x6f\x2c\x36\x83\x36\x04\x77\xa3\x5a\x8b\x46\xe2\x83\x7e\x42\x05\x9d\xd1\x1b\xc8\x13\x5b\x9e\x05\x4f\xa9\xb7\x89\x57\x38\xe7\x59\x70\xf9\xa6\xf9\x13\xb6\xce\x68\x67\xaf\xa5\x29\xcf\x32\x32\x4c\x59\xc6\x49\x68\x55\x90\xae\xe1\xa6\x6d\x0d\x5a\x7b\x06\x6c\xa3\x47\x45\x35\xfc\xbc\x13\x2f\xff\xff\x57\xc2\x6b\x96\x01\x00\xac\x56\xf0\xd0\x23\x3c\xb2\x51\x12\x18\xb4\x7a\x34\x1c\x81\x7a\x46\xd0\x6b\xd9\x5a\xa0\x1e\x81\x3c\xa0\xb3\x32\x83\xd0\xa0\x50\x6b\x70\x50\x1d\x1a\x83\xad\x4b\x25\x91\xc0\xa2\x22\x97\xab\x86\x4f\xaf\x49\x99\x95\x33\xbf\x79\xd4\xc1\xe0\xc0\x0c\x16\xac\xdd\x08\x55\x03\x1b\xa9\x2f\x3e\x6b\x63\xf4\xf6\x91\xc9\x11\x4b\x38\xb9\xe1\x7c\xe2\x1b\x79\xce\x5c\xbf\x22\x01\x03\x83\x1d\x1a\x54\x13\x51\xed\x08\xba\x3c\xa7\x16\x2c\x69\x83\x2d\x3c\x4f\x50\x31\x6c\xe2\xe5\x2c\xf7\xd8\xc1\xa5\xf7\xad\x26\x4f\xb6\xc6\xaa\x71\xa8\x17\x8e\x41\xca\xf7\x97\xa0\xbe\x35\x6c\x5b\xc2\x49\x9c\x84\x2f\xe2\xaa\x98\x5a\x5f\xc3\x6a\x4e\xb2\xea\xc2\xbd\xbb\x2e\xb3\xa3\xa3\xa3\xeb\x6b\x18\x98\x12\xbc\xc8\x6f\xf5\x28\x5b\x50\x9a\xc0\x63\xed\xb3\xd7\x5b\x85\xe6\xd4\xfa\x21\x1c\xe7\x65\x96\x50\x77\x7c\x0f\x50\x8f\x4e\xd3\x17\xea\x38\x59\xca\xa1\x72\xbf\x9b\x29\xe8\x56\x4b\x89\x4e\x15\x57\x45\x12\x38\x7d\xbe\x9a\x24\x72\x71\xd8\x89\xff\xe1\xd1\xbf\x33\xea\x93\x44\x65\x72\x7a\xa7\xfc\x03\xe3\x93\x0e\xcd\xcb\xcc\x17\x09\x3c\x02\x2e\xfb\xc1\xac\x45\x43\x69\x05\xa1\x3f\xd5\x1a\x69\x56\x4d\xc1\xbc\xea\x6b\x20\x5d\xc2\xf1\x25\x28\x21\xcf\x92\xa0\x0d\x5a\xcb\xd6\x58\x43\x3e\xa9\xdf\x0e\xc8\x45\x27\xb0\x05\xe6\x13\x80\xb0\x8e\x32\x0b\xd4\x66\xfb\x31\xdc\x32\x35\x5d\x58\x54\x6d\x42\xdb\xe6\xd9\xdf\x4e\x2c\x15\x1b\x64\x14\x96\xc8\x6d\xed\x87\x9a\xb5\x28\xbb\x2a\x2e\x13\x5c\x9c\x47\x05\x57\xdb\x39\x61\x11\x36\xda\xff\x7d\xff\xe7\xfd\xc2\x17\xe4\x23\xe1\x81\xe5\x99\x90\x0d\x72\x31\x08\x54\x74\x6a\x61\x18\x1b\x29\x78\xac\x5b\x37\xbf\x91\xa7\xab\x13\xbd\xe1\x12\x16\x2d\x26\x5d\xfe\xcb\x66\x2e\xb1\xee\x91\xa3\x78\x46\xb3\x9b\xde\x19\xbd\xc2\xa3\x7b\xaa\x6e\xce\x06\xd6\x08\x29\x48\xa0\x8d\x52\xdf\x79\x5f\x42\xf6\xb7\x03\x0a\x5f\xf9\x32\x57\x7e\x62\x71\x9d\xf7\x08\xf9\xf1\x7d\xb4\xbe\x3e\xe8\xfd\x5a\x67\x6d\xb8\xf1\xe5\x69\xa7\xbe\xe0\xa0\xad\xf0\xa3\x08\xc3\x54\x41\x1e\x42\xed\xa5\x32\xbb\x2c\x17\x2d\xab\x5a\x9f\x6c\x7e\x91\x2e\xce\x53\xe1\x04\x51\xbc\x65\x7f\x02\x00\x00\xff\xff\x94\x91\x54\x35\x8e\x06\x00\x00" +var _lockedtokensAdminDeposit_locked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x51\x4f\xdb\x30\x10\x7e\x26\xbf\xe2\xe8\x03\xa4\x12\xa4\x7b\x98\xf6\x10\x15\x58\xd7\x16\x34\x51\xc1\x54\x60\x3c\xbb\xc9\xa5\xf1\x70\xed\xc8\xbe\x50\x10\xe2\xbf\x4f\xb1\xe3\x2c\xa6\x08\x96\x97\x28\xf6\xdd\x77\xdf\x7d\xf7\x5d\xf8\xa6\x52\x9a\xe0\xbc\x96\x6b\xbe\x12\x78\xab\x1e\x50\x42\xa1\xd5\x06\xbe\x3c\x9d\xdf\x5d\x5d\xfc\xfc\xb1\x98\xdf\x5e\x5f\xce\xaf\x26\xb3\xd9\x72\x7e\x73\x13\xf9\x04\xa1\xb6\x61\xf0\xe2\xfa\x3e\x08\xf4\x91\x0b\x95\x3d\x60\x6e\x63\x8d\x0f\x5e\x5c\x4f\x2f\xe7\xb3\x30\x9c\x34\x93\x86\x65\xc4\x95\x8c\x49\xa5\x30\xc9\x73\x8d\xc6\x1c\x01\xdb\xa8\x5a\x52\x0a\x77\xe7\xfc\xe9\xdb\xd7\x21\xbc\x44\x11\x00\xc0\x68\x04\xb7\x25\xc2\x6f\x56\x0b\x02\x8d\x46\xd5\x3a\x43\xa0\x92\x11\x94\x4a\xe4\x06\xa8\x44\x20\x57\xd6\x9e\x32\x8d\xb0\x42\x2e\xd7\x60\x4b\x15\xa8\x35\xe6\x16\x4a\x20\x81\x41\x49\x16\x2b\x85\xef\x81\x1a\x89\x3d\x75\x35\x2b\x8d\x15\xd3\x18\xb3\x7c\xc3\x65\x0a\x93\x9a\xca\x49\x96\x35\xf4\x3a\x5a\x2d\xb5\x0b\x24\x60\xa0\xb1\x40\x8d\xb2\xe1\xa5\x2c\x1f\x9b\x78\x68\xc0\x90\xd2\x98\xc3\xa3\x85\xf6\x69\x0d\x0d\x7b\xb2\xc4\x02\x4e\x5c\x6c\xb2\x52\x5a\xab\xed\xf8\xa0\x13\xdc\xf1\x39\x8d\x1b\x29\x53\x18\x35\x48\x6c\x8d\xa3\xc2\xdf\xdb\xeb\x61\xb4\xb7\xb7\x77\x76\x06\x15\x93\x3c\x8b\x07\x53\x55\x8b\x1c\xa4\x22\x70\x70\xbb\xc4\xd4\x56\xa2\x3e\x34\x4e\xce\xfd\xc1\x30\x0a\x58\x59\x2a\x3d\x56\xdd\x65\xf3\x74\x14\xfb\x93\x4e\xec\x6b\xd2\x04\x4f\x95\x10\x68\xe7\x7a\x1a\x07\x89\xcd\xe3\xba\x08\x32\x7b\x1f\x6f\xf2\x6f\x5c\xaf\xbf\x18\x95\x01\xd0\x30\xf8\xfa\xa0\xed\x77\x26\x22\x6c\x35\x67\x14\xd7\x1c\x64\x5d\xc1\xbe\x0e\xcc\x18\xd4\x14\x76\xe0\x75\x49\xd6\x48\xad\x11\x62\xe6\x7c\x9b\x02\xa9\x21\xec\x9f\x80\xe4\xe2\x28\x48\xda\xa0\x31\x6c\x8d\x29\x0c\x1a\xff\x9a\x0a\x33\x5e\x70\xcc\x81\x39\x00\xe0\xc6\x52\x66\x9e\x5a\x7b\xbe\x0f\x53\x26\x9b\x0b\x83\x32\x0f\x68\x9b\x41\xf4\x4f\x89\xbe\x09\xef\x39\x95\xb9\x66\x5b\xbf\x06\x76\xfb\x3e\xb5\xa1\x41\x51\x24\xdd\x3a\xc0\xf8\xb8\x33\x65\xb2\x6d\x01\x63\xbf\x93\xee\xed\xf4\x7f\x75\xb5\xf1\x09\xb3\x9a\xf0\x9d\x7d\x68\x2a\x6b\xcc\x78\xc5\x51\xd2\xa1\x81\xaa\x5e\x09\x9e\x75\x7d\xab\xd5\x1f\xcc\xc2\x6d\xe8\xa2\xe1\x04\x7a\x12\x93\x1a\xfe\xcf\xb2\xf5\x6b\x2d\x31\x43\xfe\x88\xfa\x2d\xbc\x3d\x74\xce\xee\xc2\x43\x77\xaf\x91\xa6\xac\x62\x2b\x2e\x38\x3d\x8f\x0f\x26\xf2\x79\xd9\xfe\x6c\x5e\xc2\xff\x84\x2f\xf1\xfa\x8e\xcd\x47\xae\xd7\x91\x1b\x5b\xb7\xcb\x3b\xac\x76\xdd\xdc\x6e\x57\xfc\xf9\x46\x3b\xa8\x8f\x65\x68\x6d\x63\x27\x3b\x08\x45\x9c\x61\xa5\x0c\x77\x53\xf2\x73\x96\xde\x39\x5c\xee\x40\xe9\xb7\xdc\x7b\x6a\x26\xb9\x03\x6b\x7f\x52\xe3\xe3\xd0\x53\xde\x2f\xaf\xd1\xdf\x00\x00\x00\xff\xff\xf3\x18\x9a\xb9\x7f\x06\x00\x00" func lockedtokensAdminDeposit_locked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3979,11 +3960,31 @@ func lockedtokensAdminDeposit_locked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/deposit_locked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0x20, 0xf3, 0x69, 0x56, 0x19, 0x68, 0x47, 0x94, 0x66, 0xf4, 0x82, 0x18, 0xa4, 0xba, 0x93, 0xed, 0x42, 0x70, 0xeb, 0xaf, 0xac, 0x53, 0x45, 0x32, 0x2e, 0xd2, 0x81, 0xf9, 0x8, 0xa6, 0x11}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x97, 0xf7, 0x8d, 0x2a, 0x18, 0x7c, 0x14, 0x6a, 0x90, 0x21, 0x34, 0x33, 0x63, 0xb4, 0xa0, 0x31, 0x6b, 0xb8, 0x85, 0xb5, 0xbf, 0xe8, 0xdd, 0x6, 0xa8, 0xbc, 0x74, 0x3, 0x46, 0x89, 0x24}} + return a, nil +} + +var _lockedtokensAdminGet_unlocking_bad_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x6e\x83\x30\x10\x44\xef\x7c\xc5\x34\x87\x0a\x2e\xc9\xa5\xea\x01\x95\x46\x34\x55\x3f\xa0\x52\x4f\x55\x0f\xc6\x36\x68\x05\xd9\x45\xc6\x56\x8b\x10\xff\x5e\x25\x10\x1a\x35\xf8\x64\xcb\x33\xf3\x66\x37\x8a\xda\x50\xa0\x0c\x8c\xa3\x22\x8e\xbd\xd4\x96\x73\x73\x24\x4e\x91\x1b\xe3\x6c\xd7\x25\x29\x86\xf9\x9a\xe2\xe3\x8d\x7e\x1e\x1f\x46\x0c\x51\x04\x00\x8d\xf5\xd0\xd2\xf6\x52\xbe\x92\xf6\x24\xac\x5c\xbf\x26\xcf\x30\x8c\x7f\x0e\xa5\xb5\x04\xf6\xc8\x50\x59\x9f\x4f\x8f\x2b\x72\x72\x16\x2e\x6a\xb3\x24\xbf\xdb\xd2\x3a\xcb\xda\x22\xbb\x64\x6c\x2b\xeb\x0f\xaa\x55\x05\x35\xe4\xfb\xa7\xfb\x1b\xf4\x73\xbc\x6b\x43\xd1\x90\xde\x05\x6e\x44\xd7\xc4\xd5\x8b\x32\x33\xb4\x4b\xb6\x85\x38\x27\xdf\xf1\xc4\x3c\x9d\xfd\x1e\xad\x62\xd2\xf1\xe6\x20\xa1\x31\x60\xf1\xa7\x9a\x28\x94\xb9\x40\xbb\xab\x4e\x9b\x64\x9a\xab\x14\x07\x35\xb1\x41\xbc\x56\x7a\x5b\xdb\xbe\xc3\xb0\x80\xfe\xef\xed\x73\xb6\x7f\x21\x5b\xb3\x2f\xdf\x77\xe7\x84\x79\x9d\xce\xfa\xe0\xf8\x26\x2b\x1a\x7f\x03\x00\x00\xff\xff\xc1\x6f\xdb\x13\xd8\x01\x00\x00" + +func lockedtokensAdminGet_unlocking_bad_accountsCdcBytes() ([]byte, error) { + return bindataRead( + _lockedtokensAdminGet_unlocking_bad_accountsCdc, + "lockedTokens/admin/get_unlocking_bad_accounts.cdc", + ) +} + +func lockedtokensAdminGet_unlocking_bad_accountsCdc() (*asset, error) { + bytes, err := lockedtokensAdminGet_unlocking_bad_accountsCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "lockedTokens/admin/get_unlocking_bad_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x78, 0xe6, 0x4d, 0xc9, 0xc6, 0x4c, 0x38, 0x6b, 0xac, 0x70, 0xbe, 0xab, 0x73, 0x1f, 0xac, 0x4a, 0x17, 0x50, 0xba, 0x88, 0xc7, 0xa8, 0xd1, 0x5e, 0x27, 0xaf, 0x36, 0xf3, 0x78, 0x8b, 0x30, 0x8b}} return a, nil } -var _lockedtokensAdminUnlock_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x91\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x63\x0e\x75\x03\x92\x93\x78\x08\x6a\xa9\x05\x4f\x15\xa4\x5a\xef\xe3\x66\xd2\x2e\xdd\xec\x84\xd9\x09\x0a\xd2\xff\x2e\xc9\x96\x9a\xf6\xea\x5c\x26\x59\x66\xde\x7e\xef\xad\x6b\x3b\x16\x85\x15\xdb\x3d\xd5\xef\xbc\xa7\x10\xa1\x11\x6e\x21\x9f\x1e\xe5\x59\xa6\x82\x21\xa2\x55\xc7\xc1\x28\xca\x96\x74\x61\x2d\xf7\x41\x2b\x58\xd4\xb5\x50\x8c\x37\x50\x93\x57\xac\x60\xf3\xec\xbe\xef\x6e\x0b\xf8\xc9\x32\x00\x80\x4e\xa8\x43\x21\x83\x75\xeb\x42\x05\xd8\xeb\xce\x3c\xb1\x08\x7f\x7d\xa0\xef\xa9\x80\xd9\x51\xe9\xb4\x31\x94\x27\x85\x71\x63\x4d\x0d\x3c\xa4\xcf\x32\x2a\x0b\x6e\xa9\xfc\x1c\xd7\xef\x67\x53\xc6\x72\x6c\x8b\x61\x6e\xc9\xde\xd3\x88\xfa\x68\x06\x33\xd5\x99\xbf\x72\xf2\x73\x31\xfe\x96\xf4\x5f\x51\x77\xc5\x89\x64\xa8\xf9\x1c\x3a\x0c\xce\x9a\x7c\xc9\xbd\xaf\x21\xb0\x42\x82\x00\x04\xa1\x86\x84\x82\x25\x50\x06\xdd\x51\x82\x05\x7b\x92\xcd\x8b\x73\x5f\x3a\x5c\xfd\x82\x01\xb7\x24\x13\x7b\x6b\x6a\xca\xbf\x5c\x0d\xa6\x58\x2b\x38\x8b\xbb\xb8\x3a\xba\x37\xff\x21\xec\x23\xc9\x75\x4c\x20\xd0\x26\x92\x29\xe5\x05\x61\xe9\x82\x15\xc2\x48\x9b\xe0\xd9\xee\x57\xae\x75\x6a\x8e\xaf\x3d\xb6\xc4\x72\xc8\x0e\xd9\x6f\x00\x00\x00\xff\xff\xfd\x94\x1c\x78\x51\x02\x00\x00" +var _lockedtokensAdminUnlock_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x91\xcd\x6e\xea\x30\x10\x85\xf7\x79\x8a\xb9\x2c\xee\x4d\xa4\xab\xa8\x8b\xaa\x8b\xa8\x2d\x8a\x80\x6e\xa0\xa5\xe2\xe7\x01\xa6\xce\x04\x2c\x12\x4f\x34\x9e\xa8\x48\x15\xef\x5e\x25\x46\x34\xb0\xed\x6c\xc6\x96\x8f\xed\xef\x9c\xb1\x75\xc3\xa2\xb0\x60\x73\xa0\x62\xc3\x07\x72\x1e\x4a\xe1\x1a\xee\x8e\x8b\xe5\x64\x3e\x9b\x6e\x96\xf3\xd9\x5b\x3e\x9d\xae\x66\xeb\x75\x14\xa9\xa0\xf3\x68\xd4\xb2\x8b\x15\x65\x47\x9a\x1b\xc3\xad\xd3\x0c\xf2\xa2\x10\xf2\xfe\x3f\x14\x54\x29\x66\xb0\x7d\xb1\xc7\x87\xfb\x04\xbe\xa2\x08\x00\xa0\x11\x6a\x50\x28\xc6\xa2\xb6\x2e\x83\xbc\xd5\xfd\xf9\xea\x45\xd2\x55\x45\x0a\xbd\x64\x45\x25\x3c\x85\x65\xfa\xc1\x22\xfc\xf9\xf8\x77\x48\x99\xf6\x2d\xef\xce\x27\x5c\x55\xd4\x33\x3d\xc7\x1d\x7b\x76\x65\x27\x1d\x6c\x6e\xe4\x6b\x65\xc1\x1d\xbd\xa3\xee\x93\x0b\x41\x57\xe3\x31\x34\xe8\xac\x89\x47\x13\x6e\xab\x02\x1c\x2b\x04\x08\x40\x10\x2a\x49\xc8\x19\x02\x65\xd0\x3d\x05\x48\x30\x97\x67\x47\xc9\xb5\x1f\xed\xbe\x7e\x45\x87\x3b\x92\x81\xad\x15\x95\xe9\x4f\x80\x31\x86\xfc\x32\xb8\xca\x35\xf9\x73\x76\x1f\xff\x86\xb0\xf5\x24\xff\x7c\x00\x81\x3a\x90\x0c\x29\x6f\x08\x53\xeb\x8c\x10\x7a\xda\xba\x8a\xcd\x61\x61\x6b\xab\xf1\x79\xac\x7d\x0b\x2c\xa7\xe8\x14\x7d\x07\x00\x00\xff\xff\xd0\xd3\x4e\x0e\x40\x02\x00\x00" func lockedtokensAdminUnlock_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3999,11 +4000,11 @@ func lockedtokensAdminUnlock_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/unlock_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x69, 0x90, 0x59, 0xfe, 0x29, 0x32, 0xe, 0xe7, 0xbe, 0x46, 0xb8, 0xce, 0x1a, 0x34, 0xdd, 0x1f, 0x52, 0x19, 0x81, 0x95, 0x62, 0x32, 0xfe, 0xdc, 0xb7, 0xcf, 0xca, 0xde, 0x73, 0x50, 0xb4, 0x10}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x58, 0xa9, 0x1, 0xbc, 0x31, 0xd2, 0x33, 0xd, 0x5b, 0xb, 0x97, 0x13, 0xe6, 0x85, 0x86, 0x57, 0xa2, 0x99, 0xa6, 0x1f, 0x8c, 0x9f, 0x8b, 0xb5, 0xab, 0xd9, 0x40, 0x1, 0x5d, 0x97, 0x33}} return a, nil } -var _lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x6f\xe3\x36\x10\xbd\xfb\x57\x4c\x73\x48\x65\x20\xb0\x2f\x45\x0f\x46\xb2\x0b\x37\x40\xdb\x00\x29\xb0\xd8\xee\x9e\x8a\x1e\xc6\xe4\xd8\x22\x22\x91\x06\x39\xb2\x13\x04\xfe\xef\xc5\x90\x92\x4d\x7d\xc4\x5d\x5d\x12\xcb\x33\x6f\xbe\xde\xcc\xb3\xa9\xf7\xce\x33\x3c\x3b\xf5\x42\xfa\x9b\x7b\x21\x1b\x60\xeb\x5d\x0d\x37\xf9\xab\x9b\xd9\x6c\xb9\x84\x6f\xa5\x09\xc0\x1e\x6d\x40\xc5\xc6\x59\x68\x02\x05\xe0\x92\xa0\x8a\xb6\xc0\xc9\x1f\x75\x6d\xac\x38\xb0\x83\x40\x1c\x2d\x1a\x2b\x36\x50\x99\xda\x30\x6c\x9d\x87\xba\xa9\xd8\xec\x2b\x02\x54\xca\x35\x96\x83\x38\x18\x0b\x08\xc1\xd8\x5d\x45\x79\xa0\x14\xfc\x6c\x0a\xa8\xb5\xa7\x20\xc1\x9b\x40\x1a\x30\xc0\x0b\xbd\x45\x80\x50\xba\xa6\xd2\xb0\xa1\x2c\xa8\x58\x0c\x1d\x67\xb3\x0c\xbe\x48\x76\x4f\x76\xeb\x56\xf0\xbe\x4e\x36\x2b\xf8\xfe\xbb\x79\xfd\xf5\x97\xd3\x1c\xde\x67\x33\x00\x80\xbd\xa7\x3d\x7a\x2a\x62\x79\x2b\xc0\x86\xcb\xe2\x6f\x76\x1e\x77\x74\x07\x8f\xb8\xc7\x8d\xa9\x0c\x1b\x0a\x73\xb8\x5d\xa7\x80\x67\x5f\x79\x96\x4b\xf8\xde\x25\xb4\x1e\x55\xc2\x25\x32\x94\xa8\x21\xb8\x9a\x20\xc8\x50\xdc\x16\xc8\x7b\xe7\x73\x04\xf4\x04\x81\x9d\x27\x2d\xcd\x62\x99\x88\x36\xb1\x0a\xf4\x6f\x10\x9c\xd4\xfd\x06\x0a\xad\xf4\xc0\xd8\xb0\x27\xc5\xa4\xa1\x42\xa6\x1e\xce\xd3\x36\x76\x28\x9f\xa6\x25\xd2\x41\x66\xe6\x1b\x7b\x19\x0f\x9b\x9a\xc2\x5d\xee\xca\x25\xd9\xe8\x9c\x05\x36\x01\xac\x63\x70\x07\xf2\x47\x6f\x98\xc9\x9e\x3d\x0e\xe8\x61\x83\xba\xad\x38\x4c\x74\x18\x1e\x12\x65\x16\x21\x75\x73\x51\x39\xd4\xf7\x23\xb3\x4f\x85\x10\x73\x05\xcb\xd6\x6c\x99\xc6\x66\xec\xee\xb7\x0b\xfc\xfc\x1c\x57\x9e\xcf\x9f\xe1\xfd\x24\xfc\x18\x81\x5d\xc6\x52\x11\xa7\xf0\x5f\x69\x3b\xca\x64\xe3\xbc\x77\xc7\xfb\xdb\x7c\x19\x16\xf1\xcf\x5a\xec\x1e\x5d\x55\x51\x6c\x42\x97\x5c\xcf\x30\xfb\x30\x30\x6f\x79\xf3\x05\xb9\x1c\x65\xbc\x47\x6b\x54\x71\xf3\x18\x99\x2c\x5d\x4d\x49\x00\x82\xa7\x2d\x79\xb2\x8a\x64\x4a\x32\x81\x98\x2c\xa8\x33\xec\xcd\xfc\x52\x97\x2c\x59\xb7\x00\x6d\xf5\x42\x99\x0b\xd7\x17\xb2\x34\x39\x41\xdb\xf9\xae\xab\x4a\xa8\x27\xf8\x66\x2b\xed\x09\x91\x75\x1b\x52\xd8\x04\x82\x23\x81\x76\xf6\x67\x06\x38\xa2\x65\x60\x37\xf4\xf7\x74\x20\x9f\xb6\x9e\x2c\x1b\xdf\x67\x99\xd9\x82\x5c\x00\x34\x55\x18\x3a\xb2\x83\x5d\x7b\x2e\x8c\xdd\x3a\x5f\x63\xf4\x90\x42\xce\x57\xa1\x5d\x98\x9e\x6b\xca\xb2\x3d\x42\x2d\x11\xa4\xc0\x34\xd0\x1d\x71\xfb\xae\x18\xb4\xa3\xdf\x79\x79\x16\x2a\x5b\xe3\x2b\xc3\xff\xd3\x55\x9a\xfc\xa7\x62\x62\xda\x59\xfc\x2f\xcd\xa6\x32\x2a\xce\x78\xd8\xe6\x8e\x78\xbd\x9c\xbb\x29\x3d\x4c\x96\xb2\xd8\x11\x3f\x4f\x98\x17\xf3\x31\x74\xaf\x23\x89\x7f\xc9\xe7\x2b\x29\xe7\x75\x47\xf3\x16\xb5\x6b\x0f\x76\x3b\x32\x95\x95\x94\x30\x0c\x23\xcf\xe4\xcb\x36\x7e\xd4\x83\xbf\xd0\xe2\x8e\x7c\x1a\xc6\x47\x19\xb5\xbd\x2e\x26\x1b\x95\x51\xe4\x8f\xbe\x9c\x60\x1d\xaf\x68\x14\xac\xe1\x39\x43\xbf\x6b\x6a\xb2\x9c\x9d\xa9\x0f\x91\xe5\x46\x25\xc8\x75\x42\x7c\xc8\xf6\xe4\x9f\x01\x6d\xfe\xfd\xe9\x6a\x8a\x4f\x56\x79\xc2\x40\x63\xd9\xdb\xbc\xa5\xa5\x8d\x21\x3e\x84\x18\x34\x6d\x61\x5a\xbc\xa4\x1d\xcf\x82\x54\x68\xaa\x18\x57\xbd\x94\x27\x58\x90\x25\xf5\xe8\x2c\x1b\xdb\x9c\x0f\x87\xa5\x57\x06\xc3\xe4\xd3\x8a\xb5\xeb\x5e\x39\xb7\xbf\x86\xd2\x9d\x00\xce\xb4\x38\x34\x4a\x11\x69\x11\x59\xab\x41\x3b\x4a\x4a\x20\x62\x72\x0d\x8a\x9d\x08\x54\x8d\xfe\x25\x09\xf8\x06\x3f\x36\x57\x6d\xf2\x93\x06\xa7\xd1\xdb\x53\x9f\x93\xa7\xd1\x81\x6b\xb5\x8f\x5e\x49\x35\xb1\xfc\x1a\x5f\x28\xc8\x59\x2a\xc9\x13\x14\xe7\x22\x3c\xa1\x2a\xa3\x6d\x97\x02\xe0\xc6\x1d\x68\x3e\x44\x34\x0c\x35\xa1\x0d\x51\xbc\xb9\x34\x76\x07\x47\xa1\xde\xd1\x3b\xf9\xd7\x70\x99\xb1\x41\xbe\x95\x9b\x96\x75\x71\x88\x27\xad\x34\x7c\x51\xe4\x0d\x41\xc0\xc3\xa0\xa3\x99\xa8\x8e\x28\x7a\x9d\xc0\xb3\x89\xde\xf4\x75\x4f\xa2\x4d\x29\x70\x16\xf3\x0e\xd8\xfd\xaf\x18\xf7\x54\x76\xc2\xe4\x11\xf7\x67\xcd\xed\xdd\xde\x2e\x11\x13\x42\x43\xf7\xb7\x13\xa9\xfc\xe0\xcf\x80\x09\xec\xbd\xdc\xe5\x50\x16\xd3\xf9\xdc\x01\xf2\x0a\x96\xd1\x48\x5d\x01\x3f\xcd\x4e\xb3\xff\x02\x00\x00\xff\xff\x96\x5e\x9c\xb2\x3e\x0b\x00\x00" +var _lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x4d\x6f\xe3\x46\x0c\xbd\xfb\x57\xb0\x7b\xd8\xda\x40\x10\xf7\x50\xf4\x10\x24\xbb\x70\x93\xb4\x0d\x36\xed\x2e\x92\xec\xa9\xe8\x81\xd6\x50\xd2\xc0\xd2\x8c\x31\x43\xc5\x09\x02\xff\xf7\x82\x33\x92\x3d\xfa\x88\xb1\xba\x24\x96\xc8\xc7\xaf\x47\x3e\x5d\x6f\xad\x63\xb8\xb7\xd9\x86\xd4\x93\xdd\x90\xf1\x90\x3b\x5b\xc3\x2f\x2f\xf7\x5f\xaf\xbf\xdc\xde\x3c\x7d\xfd\x72\xfb\xcf\xea\xe6\xe6\xe1\xf6\xf1\x71\x36\x5b\x2e\xe1\xa9\xd4\x1e\xd8\xa1\xf1\x98\xb1\xb6\x06\x1a\x4f\x1e\xb8\x24\xa8\x02\x08\x70\x44\x41\x55\x6b\x23\x0e\x6c\xc1\x13\x07\x8b\xc6\x88\x0d\x54\xba\xd6\x0c\xb9\x75\x50\x37\x15\xeb\x6d\x45\x80\x59\x66\x1b\xc3\x5e\x1c\xb4\x01\x04\xaf\x4d\x51\x51\x1a\x28\x06\x3f\x98\x02\x2a\xe5\xc8\x4b\xf0\xc6\x93\x02\xf4\xb0\xa1\xd7\x00\xe0\x4b\xdb\x54\x0a\xd6\x94\x04\x15\x8b\xa1\xe3\x6c\x96\xc0\xcf\xa3\xdd\x9d\xc9\xed\x05\xbc\xad\xa2\xcd\x05\x7c\xff\x43\xbf\xfc\xf6\xeb\x7e\x01\x6f\xb3\x19\x00\xc0\xd6\xd1\x16\x1d\xcd\x43\x79\x17\xb0\x6a\xb8\x5c\x45\xdc\x83\x89\x3c\xcb\x25\x7c\xef\xe2\xae\x46\x09\x73\x89\x0c\x25\x2a\xf0\xb6\x26\xf0\x32\x01\x9b\x03\x39\x67\x5d\x8a\x80\x8e\xc0\xb3\x75\xa4\xa4\x27\x2c\x8d\x57\x3a\x24\x8b\xee\x15\xbc\x95\xf2\x5e\x21\x43\x23\xa5\x6a\xe3\xb7\x94\x31\x29\xa8\x90\xa9\x87\x73\x97\x87\x46\xa4\x43\x33\x44\xca\xcb\x68\x5c\x63\x8e\x53\x60\x5d\x93\x3f\x4b\x5d\xb9\x24\x13\x9c\x93\xc0\xda\x83\xb1\x0c\xf6\x99\xdc\xce\x69\x66\x32\x07\x8f\x67\x74\xb0\x46\xd5\x56\xec\x27\x1a\x09\x57\x91\x19\xe7\x95\x45\x75\x39\xfa\xfc\x69\x2e\xec\xbb\x80\xa5\xd4\x8d\x05\x2d\xe3\x54\xb4\x29\x7e\x3f\xc2\x2e\x0e\xf1\xe4\xf9\xfc\x19\xde\xf6\x32\xfe\x11\xd8\x71\x1c\x15\x71\x0c\xfb\x40\xf9\x21\x83\xb5\x75\xce\xee\x2e\x3f\xa6\xe4\x3f\x0f\x7f\x56\xf2\xfd\xda\x56\x15\x85\xa2\xbb\xa4\x7a\x86\xc9\x8f\x81\xf9\x63\x4c\xfd\x1b\x72\x39\xca\x74\x8b\x46\x67\xf3\x0f\xd7\x81\xa0\xd2\xc5\x98\x04\x20\x38\xca\xc9\x91\xc9\x48\xa6\x22\x1d\x0f\x49\x42\x76\x80\xfd\xb0\x38\xd6\x23\xbb\xd3\xf1\xba\xad\x5a\x28\x72\xa4\xf0\xb9\xec\x42\x4a\xc8\x76\x9e\xab\xaa\x12\xaa\x09\xbe\xce\xa5\x2d\x3e\xb0\x6c\x4d\x19\x36\x9e\x60\x47\xa0\xac\xf9\x99\x01\x76\x68\x18\xd8\x0e\xfd\x1d\x3d\x93\x8b\xcb\x4c\x86\xb5\xeb\xb3\x4a\xe7\x20\x8b\x8d\xba\xf2\x43\x47\xb6\x50\xb4\x57\x40\x9b\xdc\xba\x1a\x83\x87\x14\x72\x58\xf6\x76\x41\x7a\xae\x31\xcb\xf6\xb6\xb4\x04\x90\x02\xe3\x20\x0b\xe2\xf6\xdd\x7c\xd0\x8e\x7e\xe7\xe5\x39\x2f\x88\xaf\x71\x8b\x6b\x5d\x69\x7e\x9d\x1a\xfb\x5f\xb6\x52\xe4\xde\x26\xc6\x9c\x04\xde\x7f\x9a\x9f\x36\xf8\xd6\xac\x2b\x9d\x8d\xa7\x1f\x72\x88\xe3\x9e\x2f\x86\xa3\xe9\x48\xda\xab\xb3\x9b\xec\xd5\x64\xf9\x52\xcf\xfd\x84\xf9\x7c\x31\x86\xee\x75\x31\x72\x36\xfa\x3c\x50\x66\x9d\xea\x56\xa2\x45\xed\x5a\x8a\xdd\x3e\x4d\x65\x25\x25\x0c\xc3\xc8\x33\xf9\xb2\x8d\x1f\xa4\xe1\x6f\x34\x58\x90\x8b\x03\x7c\x2f\xa3\x93\x8d\x4a\x68\xf5\x67\x5f\x59\xb0\x0e\x97\x36\x28\xd8\xf0\xe4\xa1\x2b\x9a\x9a\x0c\x27\xa7\xec\x5d\x64\xb9\x63\x11\x72\x15\x11\xaf\x92\xdd\xfa\x77\x40\xb5\xff\x7e\x3a\x99\xe2\x9d\xc9\x1c\xa1\xa7\xb1\x02\xae\x5f\xe3\xa2\x87\x10\xef\x42\x0c\x9a\x76\xae\x5b\xbc\xa8\x2f\xf7\x82\x34\x57\x54\x31\x5e\xf4\x52\x9e\x60\x41\x92\xd4\xb5\x35\xac\x4d\x73\x38\x36\x86\x5e\x18\x34\x93\x8b\x6b\xd9\x9e\x88\xca\xda\xed\x29\x94\xee\x6c\x70\x22\xcb\xbe\xc9\x32\x22\x25\x7a\x6b\x14\x28\x4b\x51\x2d\x44\x70\x4e\x41\xb1\x15\x11\xab\xd1\x6d\xa2\x96\xaf\xf1\x7d\xf3\xac\x4d\x7e\xd2\x60\x3f\x7a\xbb\xef\x73\x72\x3f\x3a\x8a\xad\x3e\xd2\x0b\x65\x4d\x28\xbf\xc6\x0d\x79\x39\x65\x25\x39\x82\xf9\xa1\x08\x47\x98\x95\xc1\xb6\x4b\x01\x70\x6d\x9f\x69\x31\x44\xd4\x0c\x35\xa1\xf1\x41\xe0\xb9\xd4\xa6\x80\x9d\x50\x6f\xe7\xac\xfc\xab\xb9\x4c\xd8\x20\x5f\xe5\x0e\x26\x5d\x1c\xe2\x49\x2b\x35\x1f\x55\x7b\x4d\xe0\xf1\x79\xd0\xd1\x44\x78\x47\x14\x3d\x4d\xe0\xd9\x44\x6f\xa2\x46\x4a\x94\x29\x95\x4e\x62\x9d\x01\xdb\x1f\x16\xec\x56\xfb\xb5\xd9\x5c\x7e\x9c\x80\x5d\x6e\xc3\xf1\x9c\x04\x39\x03\x46\x57\x10\xff\x50\xac\xfd\x6c\x3f\xfb\x3f\x00\x00\xff\xff\xf5\xc0\xcc\x21\xdc\x0a\x00\x00" func lockedtokensAdminUnlock_tokens_for_multiple_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -4019,11 +4020,11 @@ func lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x2d, 0x48, 0xce, 0xc5, 0xd4, 0xe6, 0xfb, 0x53, 0xc1, 0x93, 0x3b, 0xed, 0x3b, 0x3c, 0xa3, 0x70, 0x2d, 0xac, 0x89, 0xe5, 0x3d, 0x8a, 0xd2, 0xa8, 0xe6, 0x77, 0xa5, 0xd9, 0xfb, 0xfc, 0xef}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xa2, 0x43, 0xbc, 0x49, 0x46, 0x92, 0xec, 0x61, 0x1a, 0x24, 0xbd, 0x80, 0x79, 0x40, 0x9e, 0x6d, 0x9f, 0x5e, 0x56, 0xff, 0x85, 0xca, 0x7b, 0x49, 0x86, 0xc4, 0x1b, 0x47, 0x3c, 0xa8, 0xd2}} return a, nil } -var _lockedtokensDelegatorDelegate_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x6b\xdb\x40\x10\xbd\xeb\x57\x4c\x75\x08\x12\x34\xca\xa5\xf4\x60\xec\x86\xa6\x25\xf4\x50\xd2\xd0\x8f\xf4\xbc\x96\x46\x96\xf0\x5a\x23\x76\x47\xb5\x8b\xf1\x7f\x2f\xfb\x21\x79\x57\x26\x34\x50\xaa\xcb\xa2\x9d\x99\x37\xef\xcd\x9b\x6d\x77\x3d\x29\x86\x7b\x49\xfb\xef\xb4\xc5\x0e\x6a\x45\x3b\x48\xa7\xff\x34\x19\x33\x86\x6e\xd3\xae\x25\x46\x59\xe1\xdd\x94\xf9\x99\xca\x2d\x56\xf6\x4e\xfb\xc4\xf0\x2a\x4d\x12\x56\xa2\xd3\xa2\xe4\x96\xba\x4c\xec\x68\xe8\x78\x01\x3f\xee\xdb\xc3\xdb\x37\x39\x1c\x93\x04\x00\x40\x22\x43\x43\xb2\x42\xf5\x15\xeb\x05\x88\x81\x9b\x2c\x44\x29\xec\xf1\xa5\x47\x25\x0c\x8c\x7e\x1d\x13\x2c\x7e\xb6\xdc\x54\x4a\xec\x73\xb8\xba\x2c\xfb\x64\x81\xcf\x8d\x7e\x89\x41\xf2\xb9\xcf\xb3\x48\xd3\x54\x8a\x27\x53\xe1\x00\x7a\x85\xbd\x50\x98\x89\xb2\x74\x4a\x2c\xc6\x1d\x29\x45\xfb\x27\x21\x07\xcc\xe1\xea\xbd\x8b\x19\x75\xe0\x3f\x8d\xb2\x2e\x26\x85\xb0\x02\x5f\x5f\x68\x26\x25\x36\x58\xac\x2d\xc2\xf2\x7f\x28\x7f\x97\x19\x5b\x16\xf0\x5c\xfc\x9b\xa3\xf0\x28\xb8\xc9\x27\xc2\xe6\xbb\xbd\x85\x5e\x74\x6d\x99\xa5\x1f\x68\x90\x15\x74\xc4\xe0\x78\x82\xc2\x1a\x15\x76\x25\x02\x13\x04\x58\x69\x9e\xc4\x9a\xc7\x61\xff\x45\xf2\x4b\x4d\x18\xb5\xdc\x78\x90\x9b\x7a\x8c\xdb\xf0\x8b\xf9\x9b\x32\x60\xbb\xdc\x96\xe1\x59\x50\xea\x30\x4e\x4e\x07\x1e\xb0\x1c\x18\x03\x27\xcd\x06\x69\x16\x5b\x54\x8f\x8a\x0e\xbf\x61\x35\xf3\xd6\xcb\xfa\x88\x12\x37\x82\x49\x65\xc1\x44\x4c\xad\xb4\x2e\xdc\x09\x29\xcc\xf4\x2e\xaa\x37\xc8\xce\x27\xbf\x44\x3e\x31\x44\x69\x6b\x70\xcf\x08\x96\xab\x19\xdc\x31\x89\x06\x10\xf0\x2c\x2a\x47\x08\x1f\xd0\xcd\x4b\x4f\x6f\xd1\x9d\x41\x83\x13\xa0\xd4\x68\xfa\x64\x3e\x09\xae\xe3\x46\xb9\x69\x1d\xf9\x5b\xac\xc7\xc8\x9c\x43\xac\xaf\xc2\x9e\x74\xcb\xde\xc6\xe5\x75\x0c\xb2\xf7\xc6\xcf\xb8\x5d\xb4\xcf\xff\x45\xe7\x4c\xe6\x31\x82\xf2\x0b\xf3\x40\x0c\xd8\xd1\xb0\x69\xdc\x96\x68\xb3\xe7\xb6\xcd\xab\x34\x40\xf0\xab\x72\x4a\xfe\x04\x00\x00\xff\xff\x27\x2b\xab\x74\x59\x05\x00\x00" +var _lockedtokensDelegatorDelegate_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\x4d\x6f\xda\x40\x10\xbd\xfb\x57\x4c\x39\x54\xe6\x10\xa7\x87\xaa\x07\x04\x8d\x48\x80\xb6\x0a\x82\x28\x24\xed\x79\xb1\xc7\x1f\x62\xf1\x58\xbb\xe3\x42\x85\xf8\xef\xd5\x7a\xd7\xc4\xeb\x24\x52\xa5\xfa\xb2\x82\x79\xf3\xde\x9b\x99\x57\xec\x2b\x52\x0c\x0b\x49\x87\x27\xda\x61\x09\xa9\xa2\x3d\x7c\x3a\x2e\x96\xeb\x5f\x4f\xeb\xfb\xf9\x6a\x3a\x9b\x3d\xce\x37\x9b\xa0\x05\xd6\x65\x56\x6c\x25\xfa\xe0\xe7\xd5\xb7\x1f\xb7\xcb\xf9\x5b\x0d\x4b\x8a\x77\x98\x34\x70\xdd\xe2\x97\xeb\xbb\xfb\xf9\xcc\x43\x07\xac\x44\xa9\x45\xcc\x05\x95\xa1\xd8\x53\x5d\xf2\x08\x9e\x17\xc5\xf1\xcb\xe7\x21\x9c\x82\x00\x00\x40\x22\x43\x4e\x32\x41\xf5\x88\xe9\x08\x3e\x76\xa9\xa3\xe6\xf9\xde\x54\x5f\xd0\xbf\x45\x2d\xd9\x82\x2f\x13\x46\x3f\xcd\x9f\x16\x53\x29\xac\x84\xc2\x50\xc4\xb1\x55\x9c\xd6\x9c\x4f\xed\x0f\x23\x0b\xee\xd3\x28\xd3\xe8\x22\x0d\x13\x70\x0d\xd1\x96\x94\xa2\xc3\xf8\x5d\x2b\x5f\x43\x33\xf2\x08\xde\xab\x6f\x98\x94\xc8\xf0\x41\x70\x3e\xbc\xa8\x99\xef\xe6\x06\x2a\x51\x16\x71\x38\xb8\xa3\x5a\x26\x50\x12\x83\x15\x03\x85\x29\x2a\x2c\x63\x04\x26\xe8\x70\x0d\x86\x81\x6f\xb8\x9d\xfe\x0d\xbf\xbd\x6d\xb4\x36\xaf\xb5\xf5\x73\x9d\xb6\xf5\xa6\xfc\xcf\xd6\x4c\x1b\x70\x13\x8d\x46\xfc\xc5\xeb\xc0\x72\x9c\xad\x45\x3c\x62\x5c\x33\x76\x36\x6c\xae\xa5\x59\xec\x50\x3d\x28\x3a\xfe\x81\x49\x6f\xe7\xce\xf9\x0c\x25\x66\x82\x49\x85\x9d\x61\x4d\xaf\x6c\x16\x7c\x2b\xa4\x30\x8b\x79\xd5\x9d\x21\xdb\x13\xb8\xe3\x3a\x60\x97\xa5\x48\xc1\xe6\x0e\xc6\x93\x1e\xdd\x29\xf0\x16\xd0\xf1\x19\x25\xd6\x10\xae\xd0\xee\x4b\x5f\xc2\x6b\xdf\x8e\xc0\x19\x50\x6a\x34\x3a\xa1\x03\xc1\x95\x2f\x34\x34\xd2\xde\xe9\xa2\x6d\x5b\xe9\x7b\xf0\xe7\x4b\xb0\x22\x5d\xb0\x3b\xe3\xf8\xca\x27\x39\x14\x9c\x27\x4a\x1c\x7a\xde\x5e\xc9\x0f\xff\x67\xce\xde\x98\x27\x8f\xca\x05\x66\x45\x0c\x58\x52\x9d\xe5\x36\x25\xda\x44\xb8\x91\xf9\x30\xe8\x30\xb8\xa8\x9c\x83\xbf\x01\x00\x00\xff\xff\x25\x14\xe5\x23\x9e\x04\x00\x00" func lockedtokensDelegatorDelegate_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4039,11 +4040,11 @@ func lockedtokensDelegatorDelegate_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3e, 0xfd, 0xc4, 0x42, 0x2b, 0x91, 0x5b, 0x9a, 0x45, 0x5d, 0x9a, 0x60, 0xe7, 0xda, 0xab, 0x8, 0x8a, 0x76, 0xda, 0xf2, 0xe4, 0xb7, 0x0, 0x52, 0xc0, 0xe5, 0x43, 0xbf, 0xb5, 0xb5, 0x26, 0xd5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0xc7, 0x4, 0xa0, 0xdf, 0xa1, 0xa9, 0xb0, 0xb0, 0x70, 0x98, 0x6, 0x1e, 0xd0, 0x93, 0xe4, 0x97, 0x13, 0x73, 0x7d, 0x6b, 0xde, 0x32, 0x8a, 0x55, 0x33, 0x8f, 0x4, 0xca, 0xfb, 0xd8, 0x5a}} return a, nil } -var _lockedtokensDelegatorDelegate_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xcb\x6a\xeb\x30\x10\xdd\xfb\x2b\x06\x2f\x82\x0d\x17\xaf\x2e\x5d\x84\xa6\xa1\xa5\x84\x2e\x4a\x1b\xd2\xd7\x7a\x62\x8d\x63\x11\x47\x12\xa3\x71\x93\x52\xf2\xef\x25\x96\xed\xd8\x0d\xf5\x46\xd6\xe8\xe8\xbc\x90\xde\x39\xcb\x02\x8f\x36\xdf\x92\x7a\xb5\x5b\x32\x1e\x0a\xb6\x3b\x88\x87\xa3\x38\x6a\x71\x8b\xda\x6c\xf4\xba\xa2\x66\xdc\x02\x47\xb3\x38\x8a\x84\xd1\x78\xcc\x45\x5b\x93\xe0\xce\xd6\x46\xa6\xf0\xb6\xd0\x87\xab\xff\x29\x7c\x47\x00\x00\x15\x09\x18\xab\xe8\x9e\x2a\xda\xa0\x58\x5e\xb2\x3d\x7c\x4d\x47\x2e\xb2\xb0\x79\xba\x80\x45\x0d\x85\x63\x72\xc8\x94\x60\x9e\x07\x05\xac\xa5\x4c\xee\x2c\xb3\xdd\xbf\x63\x55\x53\x0a\x93\xdb\x70\xd6\xa9\x76\xca\xa5\xad\x14\xf1\x8a\x0a\x98\x41\x7b\x3d\xf3\x62\x19\x37\x94\xad\x1b\x82\xeb\x86\x6c\xe4\xa6\x59\x9e\x1d\x31\x9e\x72\xf9\x7f\xe3\x26\xb2\x0f\x2d\xa5\x62\xdc\xa7\x30\xb9\xbc\xf6\xd0\x08\xde\x24\xa7\xba\x7e\x85\x1c\x9c\xbf\x04\x0b\x4b\x94\x32\xed\xfd\x9e\xbe\xf9\x1c\x1c\x1a\x9d\x27\xf1\x00\x0d\xda\x83\xb1\x02\x1e\x3f\x49\x01\x0a\x78\x47\xb9\x2e\x34\x29\x70\x28\x65\x7c\xa6\xe8\x7f\x3c\x55\x45\x76\x59\x3b\xcc\xce\x8d\xb4\xf9\x7b\x40\x12\x68\x8e\xa1\x73\x3a\x50\x5e\x0b\x0d\xea\xfc\x83\x32\x53\x61\x4b\x2b\xda\x23\xab\x2e\x6d\xff\x1a\xc2\xda\x71\x1f\xa3\x9f\x00\x00\x00\xff\xff\xea\xe0\x30\x4d\x85\x02\x00\x00" +var _lockedtokensDelegatorDelegate_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x2f\xa1\x87\xd2\x83\xd4\x8a\x34\x96\x82\xa2\xa2\xf6\x07\x4c\x77\x27\x66\x31\xee\x84\xc9\x58\x53\x8a\xff\xbd\xe8\x9a\x54\x2b\xcd\x65\x32\xec\xe3\x7d\xfb\xde\xba\x6d\xc9\xa2\x30\x61\xb3\x21\xbb\xe2\x0d\xf9\x0a\x32\xe1\x2d\xdc\xd7\x93\xd9\xcb\x78\x94\xae\x66\xe3\xd1\x74\x98\xa6\x8b\xd1\x72\x19\x45\x2a\xe8\x2b\x34\xea\xd8\xc7\xb8\xe5\x9d\xd7\x1e\xbc\xbf\xba\xfa\xf1\xa1\x0b\xdf\x11\x00\x40\x41\x0a\x9e\x2d\xa5\x54\xd0\x1a\x95\x65\x2e\x5c\x7f\xf5\xae\x08\x49\x58\xa6\x37\xb2\xe8\x64\x51\x0a\x95\x28\x14\xa3\x31\x81\x30\xdc\x69\x3e\x0c\x4b\x83\x69\x50\x39\x17\x96\x64\x41\x19\xf4\xe1\xac\x4f\x3e\x58\x84\xf7\x4f\x77\x57\xc8\xd3\x78\x3b\xa9\x9f\xe3\x63\xc2\x3f\x57\xba\x38\x5f\x2a\x0b\xae\x69\x8e\x9a\x77\xa1\xa5\x1d\xbf\xc1\x00\x4a\xf4\xce\xc4\x9d\x0b\x39\xb8\x0a\x3c\x2b\x54\xf8\x49\x16\x50\xa1\x2a\xc9\xb8\xcc\x91\x85\x12\x35\xef\x74\x5b\x8b\xf6\xa7\xa2\x22\x4b\x6e\x5b\x82\xfe\x6f\x9e\x73\x8a\x56\x10\x07\x9b\x43\xa8\x88\x6a\x32\x3b\xa5\x8b\x32\xfe\xb1\x4c\x6c\x58\x69\x41\x7b\x14\xdb\xc4\x6d\x1f\x2f\xcc\xc6\xfb\x10\xfd\x04\x00\x00\xff\xff\xf2\xb4\xba\xeb\x10\x02\x00\x00" func lockedtokensDelegatorDelegate_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4059,11 +4060,11 @@ func lockedtokensDelegatorDelegate_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd4, 0x98, 0x5, 0x2f, 0xf1, 0x93, 0xc8, 0x5b, 0xf1, 0x7e, 0x2d, 0x4e, 0xc0, 0x43, 0xef, 0xdb, 0xcc, 0x0, 0xc1, 0xf8, 0xcc, 0xd9, 0x4, 0x9a, 0xc0, 0x5c, 0x31, 0xaf, 0xb7, 0x3b, 0x43, 0x40}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xb5, 0x9a, 0xc5, 0xf6, 0xa3, 0xb3, 0x51, 0x42, 0xb8, 0x88, 0xa8, 0x28, 0x71, 0x66, 0x3d, 0x34, 0x4, 0x99, 0xf3, 0x94, 0x13, 0xef, 0x85, 0x3f, 0x7f, 0xa0, 0xa3, 0x40, 0x76, 0x94, 0xb}} return a, nil } -var _lockedtokensDelegatorDelegate_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4f\x4b\xeb\x40\x10\xbf\xe7\x53\x0c\x39\x94\x04\x1e\x39\x3d\xde\xa1\xbc\x5a\x14\x29\x1e\x44\x8b\x5a\x3d\x4f\x77\x27\xcd\xd2\x74\x67\xd9\x9d\xd8\x8a\xf4\xbb\x4b\xb3\x69\x4c\x2c\xe6\xb2\xec\xec\x6f\x7e\xff\x88\xd9\x39\xf6\x02\xf7\xac\xb6\xa4\x5f\x78\x4b\x36\x40\xe9\x79\x07\xe9\x70\x94\x26\x1d\x6e\xd1\xd8\x8d\x59\xd7\xd4\x8e\x3b\xe0\x68\x96\x26\x89\x78\xb4\x01\x95\x18\xb6\x19\xee\xb8\xb1\x32\x85\xd5\xc2\x1c\xfe\xfd\xcd\xe1\x33\x01\x00\xa8\x49\xc0\xb2\xa6\x5b\xaa\x69\x83\xc2\x7e\xe9\xf9\xf0\x31\x1d\xb9\x28\xe2\xe5\xe1\x02\x96\xb4\x14\xce\x93\x43\x4f\x19\x2a\x15\x15\xb0\x91\x2a\xbb\x61\xef\x79\xff\x8a\x75\x43\x39\x4c\xae\xe3\xdb\x59\xf5\xac\x5c\x71\xad\xc9\x3f\x51\x09\x33\xe8\xd6\x8b\x20\xec\x71\x43\xc5\xba\x25\xf8\xdf\x92\x8d\xdc\xb4\xc7\xa3\x23\x8f\xa7\x5c\xe1\xcf\xb8\x89\xe2\xcd\x48\xa5\x3d\xee\x73\x98\x5c\xae\xdd\xb5\x82\x57\xd9\xa9\xae\x1f\x21\x07\xef\xcf\xd1\xc2\x12\xa5\xca\x7b\xbf\xa7\x6f\x3e\x07\x87\xd6\xa8\x2c\x1d\xa0\xc1\x04\xb0\x2c\x10\xf0\x9d\x34\xa0\x40\x70\xa4\x4c\x69\x48\x83\x43\xa9\xd2\x3c\xe9\x39\x02\xd5\x65\x71\x59\x37\xcc\xbe\x9b\xe8\x72\xf7\x80\x2c\x3a\x38\x46\x12\x3a\x90\x6a\x84\x06\x35\xfe\x42\x59\xe8\x78\xa5\x95\x0d\x82\x7d\xca\xfe\x2f\x88\xe7\x99\xfb\x98\x7c\x05\x00\x00\xff\xff\xbf\x32\xa6\x32\x7d\x02\x00\x00" +var _lockedtokensDelegatorDelegate_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6a\xc2\x40\x10\xc6\xef\x79\x8a\xc1\x43\x49\x2e\xa1\x87\xd2\x83\xd4\x8a\x34\x96\x82\xa2\xe2\x9f\x07\x98\x6e\x26\x66\x31\xee\x2c\xbb\x63\x9b\x52\x7c\xf7\x62\x56\xd3\x58\xe9\x5e\x86\x61\xbf\xfd\x7e\xf3\xcd\xea\xbd\x65\x27\x30\x65\xb5\xa3\x7c\xcd\x3b\x32\x1e\x0a\xc7\x7b\xb8\xaf\xa7\xf3\x97\xc9\x38\x5b\xcf\x27\xe3\xd9\x28\xcb\x96\xe3\xd5\x2a\x8a\xc4\xa1\xf1\xa8\x44\xb3\x89\x71\xcf\x07\x23\x7d\xd8\xbc\xea\xfa\xf1\x21\x81\xef\x08\x00\xa0\x22\x01\xc3\x39\x65\x54\xd1\x16\x85\xdd\xc2\x71\xfd\xd5\xbf\x22\xa4\xa1\x99\xdd\xc8\xa2\xc6\xc2\x3a\xb2\xe8\x28\x46\xa5\x02\x61\x74\x90\x72\x14\x9a\x0b\xe6\x82\x2a\xb9\xca\xc9\x2d\xa9\x80\x01\x9c\xf5\xe9\x3b\x3b\xc7\x9f\x4f\x77\x57\xc8\xa6\xbc\x35\xea\xe7\xf8\x94\xf0\xcf\x48\x9d\xfb\x95\xb0\xc3\x2d\x2d\x50\xca\x04\x5a\xda\xe9\x0c\x87\x60\xd1\x68\x15\xf7\x3a\x72\xd0\x1e\x0c\x0b\x78\xfc\xa0\x1c\x50\xc0\x5b\x52\xba\xd0\x94\x83\x45\x29\x7b\x49\xd4\x7a\x78\xaa\x8a\xf4\x76\x3b\x30\xf8\xcd\x71\x9e\xbe\x15\xc4\x49\xf3\xfa\x18\x4c\xa8\x26\x75\x10\xea\x2c\xe1\x1f\xcb\x34\x0f\x2d\x6d\x8c\x17\x6c\x63\xb6\x9f\x16\xea\xc5\xfb\x18\xfd\x04\x00\x00\xff\xff\xfe\xc1\x9a\x73\x08\x02\x00\x00" func lockedtokensDelegatorDelegate_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4079,11 +4080,11 @@ func lockedtokensDelegatorDelegate_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0x83, 0x51, 0xb4, 0x43, 0xb4, 0x5a, 0x2, 0xbf, 0x7, 0xab, 0xdf, 0x75, 0x84, 0x56, 0xd, 0x4a, 0xbe, 0x18, 0xa4, 0x1, 0x5e, 0xcc, 0xc5, 0xf0, 0x4, 0xe, 0x42, 0xc8, 0x24, 0xa0, 0x99}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x89, 0xfe, 0xf6, 0x67, 0xf, 0x7b, 0x3, 0xf4, 0x14, 0x99, 0xaa, 0x92, 0xe3, 0xd4, 0x35, 0x90, 0x51, 0x4f, 0x83, 0x36, 0xd6, 0xf9, 0xed, 0x2a, 0x9f, 0x37, 0x1, 0x43, 0x9f, 0xd5, 0x50, 0x8f}} return a, nil } -var _lockedtokensDelegatorGet_delegator_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcd\x4e\xc3\x30\x10\x84\xef\x7e\x8a\x21\x07\x94\x5c\x72\x80\x5b\x05\x54\x15\x3d\x10\xa9\x87\x0a\xc1\x03\x38\xce\x26\x58\x75\xbc\xd1\x7a\x2d\x0e\x88\x77\x47\x4d\xa0\x94\x9f\xbd\x58\x1a\xcd\x7c\xe3\xf1\xe3\xc4\xa2\xd8\xb1\x3b\x50\xf7\xc4\x07\x8a\x09\xbd\xf0\x88\xe2\x5c\x2a\x8c\xb1\xce\x51\x4a\xa5\x0d\xa1\x42\x9f\x23\x46\xeb\x63\x69\x9d\xe3\x1c\x75\x85\x4d\xd7\x09\xa5\x54\xad\xf0\xdc\x44\xbd\xbe\xc2\x9b\x31\x00\x10\x48\x11\x66\xd0\x66\xb1\x36\xb1\xe7\x47\xea\x71\x8b\x81\xf4\x53\xfb\xc2\x54\x73\xe4\x78\xb5\xb3\x93\x6d\x7d\xf0\xea\x29\xd5\x2d\x8b\xf0\xeb\xcd\xe5\xf9\x8f\xea\xf9\x79\xe0\xd0\x91\xdc\x95\xa7\xe0\xf1\x7e\xd8\x76\xbf\xcb\xf7\xb9\x0d\xde\xed\xad\xbe\x9c\x42\xdf\xbd\xeb\x35\x26\x1b\xbd\x2b\x8b\x7b\xce\xa1\x43\x64\xc5\xd2\x0e\x0b\xa1\x9e\x84\xa2\x23\x28\x63\x9a\x31\xf8\x83\x2f\xaa\x65\xb8\x90\x66\x89\xff\x6e\xaf\x07\xd2\x2d\x05\x1a\xac\xb2\x34\xdb\xb2\xba\x30\xef\xe6\x23\x00\x00\xff\xff\x3e\xb8\x32\x69\x88\x01\x00\x00" +var _lockedtokensDelegatorGet_delegator_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x4f\x4f\xc2\x40\x10\xc5\xef\xfb\x29\x9e\x1c\x4c\x7b\x21\x46\x6f\x44\x25\x84\x92\x48\x20\x42\x00\x3f\xc0\x76\x3b\xc5\x0d\xcb\x4e\xb3\x9d\x8d\x1a\xc2\x77\x37\x6d\x15\xf1\x4f\x9c\xcb\x26\xb3\x6f\x7e\xef\xe5\xd9\x7d\xc5\x41\x30\x67\xb3\xa3\x62\xc3\x3b\xf2\x35\xca\xc0\x7b\x5c\xbd\xce\x17\xe3\xd9\x24\xdb\x2c\x66\x93\xc7\x51\x96\xad\x26\xeb\xb5\x52\x55\xcc\x51\x46\x8f\xbd\xb6\x3e\xd1\xc6\x70\xf4\x32\xc0\xa8\x28\x02\xd5\x75\x3a\xc0\xd3\xd4\xcb\xcd\x35\x0e\x4a\x01\x80\x23\x81\x6b\xc9\xa3\x4e\x3a\xf5\x25\xaf\xa8\xc4\x1d\xb6\x24\x1f\xbb\x4f\x4c\xda\x9e\x34\xd3\xdf\x92\x8c\x75\xa5\x73\xeb\xac\xbc\xdd\x5e\x9e\x87\xeb\xb7\xcf\x03\xbb\x82\xc2\xe1\xdb\xc7\xfc\xa7\xd1\xf1\x3e\x39\x21\x9b\xf9\x5f\xbd\x8c\xb9\xb3\x66\xa9\xe5\xf9\x74\x74\x96\x28\xe7\x10\xf8\x25\xf9\xda\x0c\x87\xa8\xb4\xb7\x26\xe9\x8d\x39\xba\x02\x9e\x05\x9d\x08\x1a\x81\x4a\x0a\xe4\x0d\x41\x18\x55\x0b\xc6\x2f\xc3\x5e\xda\x95\x14\x48\x62\xf0\x7f\xf6\xd4\x14\x91\x91\xa3\xad\x16\x0e\xd3\x2c\x49\x2f\xd4\x51\xbd\x07\x00\x00\xff\xff\xe7\xd6\x88\xde\xb2\x01\x00\x00" func lockedtokensDelegatorGet_delegator_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4099,11 +4100,11 @@ func lockedtokensDelegatorGet_delegator_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x12, 0xcf, 0xbd, 0xf4, 0xb4, 0xe2, 0x96, 0x6a, 0xb, 0x7b, 0x4f, 0xdf, 0xfe, 0x86, 0x5a, 0xbc, 0xa7, 0xae, 0x48, 0x8a, 0x9f, 0x27, 0xf1, 0x4c, 0xdb, 0x2a, 0x8c, 0xf4, 0x72, 0xc0, 0x88}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0x54, 0x61, 0x8e, 0x91, 0xdf, 0x10, 0x8d, 0xe7, 0x4, 0xc6, 0x8d, 0xb5, 0x85, 0x3d, 0x1c, 0x19, 0x8f, 0x22, 0xbb, 0xa7, 0xdb, 0xf0, 0x3d, 0x23, 0x29, 0xe6, 0x34, 0x4, 0x4d, 0x68, 0xdb}} return a, nil } -var _lockedtokensDelegatorGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4d\x8b\xdb\x30\x14\xbc\xfb\x57\xbc\xe4\x10\x6c\x58\x9c\x7b\xa8\x0b\x81\x50\x1a\x28\xcb\xb2\xdd\xdb\xb2\x87\x67\xeb\x39\x51\xa3\xe8\x19\x49\x26\x94\x90\xff\x5e\xfc\x11\xc5\x5a\x3b\x25\xad\x2f\x26\x4f\x33\xa3\x91\x66\x62\x79\xac\xd8\x38\xf8\xa6\xf8\xb4\xdd\xbc\x61\xae\xe8\xa7\xc3\x83\xd4\x3b\x28\x0d\x1f\x61\x3e\x5e\x98\x47\x3d\xe7\x07\x17\x07\x12\x6f\x7c\x20\x6d\x7b\xf4\x70\x34\x8f\xa2\xe5\x12\x5e\xc9\xd5\x46\x5b\x40\x0d\x68\x0c\xfe\x06\x2e\x61\x43\x8a\x76\xe8\xd8\x6c\x75\xc9\xc0\xf9\x2f\x2a\x9c\x05\xb7\x47\x07\x6e\x4f\x80\x45\xc1\xb5\x76\x50\xb0\x76\x86\x95\x6d\x64\xa4\x06\xe9\x2c\x68\x36\x47\x54\x1e\x81\x5a\x80\xdd\xa3\x21\x71\x1d\x45\x11\x16\x05\x59\x1b\xa3\x52\x09\x94\xb5\x86\x23\x4a\x1d\xf7\xab\x2b\x58\x0b\x61\xc8\xda\x64\x05\xef\xe3\x93\xa5\x81\xb1\x0f\x38\x47\x11\x00\x80\x22\x07\x62\xb8\xb2\x6e\x0e\xf2\x90\x42\x06\xef\x1f\x37\x91\xaa\xce\xd7\xbd\xf3\x0c\x76\xe4\xfa\x1f\x57\x77\xc9\x0d\xc9\x95\x93\xac\x51\x79\xb9\x57\x2a\x21\x1b\x08\xb4\xc8\xe6\x49\x0b\xac\x30\x97\x4a\x3a\x49\x36\xcd\xd9\x18\x3e\x7d\x59\x9c\x27\xac\x3d\xb3\x20\xaf\xf7\x52\xe7\x4a\x16\x97\xaf\xb1\x17\x6a\x9e\x65\xd5\x8e\x97\xa5\xe2\x53\x4f\xf3\x0c\x0f\xec\x6d\xca\x32\xbc\x98\xce\xe1\xa4\xf1\xb3\xe7\x36\x0c\xd9\x84\x9e\x4d\x34\x2e\xbc\xbc\xd0\x99\x66\x41\xdb\xcd\x2a\xd8\x2e\xed\x86\x4f\x01\xf0\x16\xd4\x67\xb4\x14\x83\x23\x8c\xe1\xd7\x5c\x53\xac\x2a\xd2\x22\x6e\x6c\x76\xb8\xcb\x38\x97\xae\xe7\x7d\x16\x0d\xf5\x1f\xf3\x19\xfe\x4f\xd2\xf6\xf5\x9d\x95\x20\xf3\x29\x8f\x00\x36\xda\xb3\xcb\xf0\x05\xdd\xfe\x4e\x36\x6a\xda\xe5\x5f\x0f\x11\x66\xd5\xdd\x30\x64\x93\x52\xe9\x8e\x9c\x8f\xec\xb9\x45\xc6\x49\x40\x1f\x84\xf1\x88\x46\xcb\xf7\x02\xb2\xbc\x6e\x3f\xcb\x40\x4b\x05\x8b\x45\x20\xd8\x4f\xcf\xc1\x8d\xfd\x77\xc1\x86\x25\xeb\xde\xb3\xa7\x11\x60\xba\x5c\xdb\xcd\x2c\x40\x26\x77\x0a\x79\xbf\x61\x5d\xcb\x06\x5d\x33\xed\x57\x73\x82\x1b\x5d\xa2\x3f\x01\x00\x00\xff\xff\xc7\x86\x6b\x79\xb2\x05\x00\x00" +var _lockedtokensDelegatorGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4d\x8f\x9b\x30\x10\xbd\xf3\x2b\x66\x2f\x51\x90\x56\xa4\xe7\xa8\x54\xa2\x81\xaa\x68\xa3\xec\x2a\xe1\x52\xad\xf6\x60\xb0\x21\x6e\x1c\x0f\x32\x46\xe9\x0a\xe5\xbf\x57\x7c\x06\x27\xa4\x8a\xca\x05\x65\xfc\xde\xf8\xcd\xbc\x17\xf8\x31\x47\xa5\xe1\x87\xc0\x53\xe8\x47\x24\x16\x6c\xa7\xc9\x81\xcb\x0c\x52\x85\x47\xf8\xf2\x27\xf4\x83\x4d\x14\x46\xbf\x22\xef\xfb\x3a\xf0\x7c\x7f\x1b\xec\x76\x56\xc7\x5a\x63\x72\x60\x34\xc2\x03\x93\x45\x8f\x5f\xbf\xae\x5e\x02\x3f\x7a\x7d\x09\x36\x3d\xda\x5a\x2c\x60\xcb\x74\xa9\x64\x01\x44\x02\x51\x8a\x7c\x02\xa6\xe0\x33\xc1\x32\xa2\x51\x85\x32\x45\xc0\xf8\x37\x4b\x74\x01\x7a\x4f\x34\xe8\x3d\x03\x92\x24\x58\x4a\x0d\x09\x4a\xad\x50\x14\x75\x1b\x2e\x81\xeb\x02\x24\xaa\x23\x11\x03\x82\x48\x0a\xc5\x9e\x28\x46\xfb\x92\x65\xe5\x65\x0c\x69\x29\xe1\x48\xb8\x9c\x77\xd5\x25\x78\x94\x2a\x56\x14\xf6\x12\xde\x6f\x47\x76\x0c\x41\x1f\x50\x59\x16\x00\x80\x60\x1a\xe8\xf8\xc4\xab\x07\x78\xa8\x83\x0b\xef\x1f\x97\x26\x79\x19\x7b\x9d\x62\x17\x32\xa6\xbb\x1f\xbd\x3a\x7b\xe2\xba\x15\xc9\xc1\x1d\x11\x1b\x44\xfd\x38\x19\xd3\x2b\x92\x93\x98\x0b\xae\x3f\xbf\xce\xaa\x09\x31\x1b\xa4\x6c\x10\xf4\x56\xc6\x82\x27\xe7\x6f\xf3\xa1\x45\xfd\x2c\xf2\xa6\xbc\x48\x05\x9e\x3a\xda\xc0\x18\x80\x9d\x30\x9e\x9a\xda\xb6\x2c\x05\xd7\x90\xea\xc4\xa8\x14\x9e\xe6\x36\x54\x03\xb9\xa6\xf0\xda\x5f\x77\x22\x64\xe6\xbe\x4c\x69\x12\x29\x0b\xfd\xa5\x71\x9f\xd3\x16\x9f\x0d\xe0\xc5\x9b\x6b\x34\xa7\xa3\x19\x6e\xe1\xbd\x95\x0e\xc9\x73\x26\xe9\xbc\x96\xd9\xe2\xce\x17\x2b\x44\x93\xf1\x6e\xfd\x35\xe5\x61\x4b\xc6\xff\x0e\xa7\x79\xfd\x44\x41\x99\xaa\x8c\x83\xf5\x75\xff\x6b\x8b\xfe\x8d\x6e\x6d\x7d\x23\x7a\x7f\xc7\xae\x1b\xfd\xad\x6d\x53\x63\xdd\xb3\xaf\x5d\xfa\x14\xa9\x5e\x72\xc6\xf4\xe0\xe2\xa6\x41\xce\x6d\x83\x3e\xf2\xe7\x91\x1e\x0d\x7f\x68\xc0\xd3\xfe\xfa\x27\x17\x24\x17\x30\x9b\x19\x0d\xbb\x6a\x65\xac\xec\xbf\x33\x37\xce\x5d\xfb\x7e\x7a\xbe\x01\x4c\xe7\x2d\xf4\x9f\x0c\xa4\x7d\x27\xa3\xf7\x43\xd7\x06\x6f\x14\x3f\xd5\x7c\x33\x27\xb8\xd6\xd9\xfa\x1b\x00\x00\xff\xff\xea\xbb\x2d\x02\xb8\x05\x00\x00" func lockedtokensDelegatorGet_delegator_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -4119,11 +4120,11 @@ func lockedtokensDelegatorGet_delegator_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa9, 0x5c, 0xc3, 0x5a, 0x3c, 0x1a, 0xd2, 0x9d, 0x8d, 0xd9, 0xb6, 0x51, 0x45, 0x55, 0x69, 0xac, 0x7b, 0x6b, 0x27, 0x53, 0x9f, 0xd8, 0xc7, 0xf1, 0x19, 0xf9, 0xa9, 0x40, 0x26, 0x69, 0xf2, 0x3f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x16, 0x55, 0xa6, 0x48, 0x7d, 0xe9, 0x3d, 0xc, 0xa1, 0x5e, 0xbd, 0x50, 0x98, 0x4f, 0x5f, 0x92, 0x42, 0xcd, 0x4d, 0x9a, 0x25, 0xd1, 0x1, 0xbf, 0xe3, 0xc, 0x5f, 0x64, 0xb1, 0x0, 0x82, 0xb4}} return a, nil } -var _lockedtokensDelegatorGet_delegator_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcf\x4e\xf3\x30\x10\xc4\xef\x7e\x8a\xf9\x72\xf8\x94\x5c\xf2\x00\x15\x50\x55\xf4\x40\xa5\x0a\x55\xc0\x0b\x38\xf6\x26\x58\x75\xbc\xd1\x7a\x2d\x0e\x88\x77\x47\x4d\xa0\x94\x3f\x7b\xb1\x34\x9a\xf9\x8d\x27\x8c\x13\x8b\x62\xcf\xee\x48\xfe\x89\x8f\x94\x32\x7a\xe1\x11\xd5\xa5\x54\x19\x63\x9d\xa3\x9c\x6b\x1b\x63\x83\xbe\x24\x8c\x36\xa4\xda\x3a\xc7\x25\xe9\x0a\x1b\xef\x85\x72\x6e\x56\x78\x54\x09\x69\xc0\xab\x31\x00\x10\x49\x11\x67\xd0\x66\xb1\xee\x52\xcf\x0f\xd4\xe3\x1a\x03\xe9\x87\xf6\x89\x69\xe6\xc8\xe9\x5a\x67\x27\xdb\x85\x18\x34\x50\x6e\x3b\x16\xe1\x97\xab\xff\x97\x3f\x6a\xe7\xe7\x8e\xa3\x27\xb9\xa9\xcf\xc1\xd3\x7d\xb3\xed\x7f\x96\x1f\x4a\x17\x83\x3b\x58\x7d\x3e\x87\xbe\x7a\xd7\x6b\x4c\x36\x05\x57\x57\xb7\x5c\xa2\x47\x62\xc5\xd2\x0e\x0b\xa1\x9e\x84\x92\x23\x28\x63\x9a\x31\xf8\x85\xaf\x9a\x65\xb8\x90\x16\x49\x7f\x6e\x6f\x07\xd2\x2d\x45\x1a\xac\xb2\xdc\xb3\xa7\xdd\xb6\x6e\xfe\x99\x37\xf3\x1e\x00\x00\xff\xff\x2b\x7f\x31\x90\x8c\x01\x00\x00" +var _lockedtokensDelegatorGet_delegator_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x4f\x6b\xc2\x40\x10\xc5\xef\xfb\x29\xa6\x1e\x4a\x72\x91\x9e\xa5\xad\x88\x11\x2a\x8a\x8a\xf1\x0b\x6c\x76\x27\xe9\xe2\x66\x27\x4c\x66\x69\x8b\xf8\xdd\x4b\x92\xd6\xda\x3f\x74\x2e\x0b\xb3\x6f\x7e\xef\xf1\x5c\xdd\x10\x0b\xac\xc9\x1c\xd1\x1e\xe8\x88\xa1\x85\x92\xa9\x86\xbb\xd7\xf5\x76\xbe\x5a\x64\x87\xed\x6a\xb1\x99\x65\xd9\x7e\x91\xe7\x4a\x35\xb1\x80\x32\x06\xa8\xb5\x0b\x89\x36\x86\x62\x90\x09\xcc\xac\x65\x6c\xdb\x74\x02\xb9\xb0\x0b\x15\x9c\x94\x02\x00\xf0\x28\xe0\x7b\xf2\x6c\x90\x2e\x43\x49\x7b\x2c\xe1\x01\x2a\x94\x8f\xdd\x27\x26\xed\x4f\xba\x19\x57\x28\x73\xdd\xe8\xc2\x79\x27\x6f\xf7\xb7\xd7\xe1\xc6\xfd\xf3\x44\xde\x22\x9f\xbe\x7d\xac\x7f\x1a\x9d\x1f\x93\x0b\xb2\x9b\xff\xd5\xbb\x58\x78\x67\x76\x5a\x9e\x2f\x47\x57\x89\x0a\x62\xa6\x97\xe4\x6b\x33\x9d\x42\xa3\x83\x33\xc9\x68\x4e\xd1\x5b\x08\x24\x30\x88\x40\x03\x63\x89\x8c\xc1\x20\x08\x41\xd3\x83\xe1\x97\xe1\x28\x1d\x4a\x62\x94\xc8\xe1\xcf\x9e\xba\x22\x32\xf4\x58\x69\x21\xde\x90\xc5\x65\x96\xa4\x37\xea\xac\xde\x03\x00\x00\xff\xff\xa8\xa0\x14\xf5\xb6\x01\x00\x00" func lockedtokensDelegatorGet_delegator_node_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4139,11 +4140,11 @@ func lockedtokensDelegatorGet_delegator_node_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_node_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xee, 0x61, 0xcb, 0xb1, 0x59, 0xce, 0x22, 0xfb, 0x43, 0x23, 0xf2, 0x1, 0xc5, 0x22, 0xa9, 0x53, 0xc9, 0x52, 0xbb, 0x83, 0x3c, 0x7d, 0xdb, 0xcd, 0xfa, 0x13, 0x12, 0xf1, 0x57, 0xe7, 0x31, 0xdc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe4, 0xa6, 0x64, 0xd9, 0x19, 0xbf, 0x3b, 0xbb, 0x52, 0xfd, 0xfa, 0x51, 0x34, 0x21, 0xa9, 0xb0, 0xa, 0x66, 0x33, 0xcf, 0xce, 0x7c, 0x53, 0xe7, 0xe0, 0xc4, 0xe5, 0x27, 0x67, 0x1c, 0xae, 0x8f}} return a, nil } -var _lockedtokensDelegatorRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x54\x41\x6f\xdb\x3c\x0c\xbd\xfb\x57\xf0\xf3\xa1\xb0\x81\xd6\xbd\x7c\xd8\x21\x68\x56\xac\x0b\x8a\x15\xd8\xb2\xa2\xe9\xba\xb3\x62\xd1\xb6\x10\x59\xf2\x24\xba\xc9\x10\xe4\xbf\x0f\xb2\x14\xc7\x4e\x96\x6d\x97\x9d\xe6\x4b\x51\x91\x7c\x7c\xef\x91\x8c\xa8\x1b\x6d\x08\xee\xa5\x5e\x3f\xeb\x15\x2a\x28\x8c\xae\x21\xee\xff\x8f\xa3\x90\xf1\x51\xe7\x2b\xe4\xdd\x9b\x0d\x49\xc3\xa7\x3e\xcf\x55\x3e\xcc\x9e\xd9\x52\xe2\x82\xd8\x4a\xa8\x72\x00\x39\x0e\x1c\x6a\x5a\x55\x8a\xa5\xc4\x11\x83\xe1\x5b\x1c\x45\x64\x98\xb2\x2c\x27\xa1\x55\x22\xf8\x04\x16\x64\x84\x2a\x2f\x81\xd5\xba\x55\x34\x81\x2f\xf7\x62\xf3\xe6\xff\x14\xb6\x51\x04\x00\x20\x91\xa0\xd2\x92\xa3\x79\xc2\x62\x02\xac\xa5\x2a\x19\xf2\xcd\xba\x3f\x9f\x1b\x34\xcc\x41\xda\xcb\x31\x89\xec\xab\xa0\x8a\x1b\xb6\x4e\xe1\xe2\xb4\xec\x43\x07\x7c\x68\xf4\xca\x5a\x49\x87\x3e\x67\x91\x7a\x57\xb3\x17\x57\xe1\x01\x1a\x83\x0d\x33\x98\xb0\x3c\xf7\x4a\x3a\x8c\x3b\x6d\x8c\x5e\xbf\x30\xd9\x62\x0a\x17\xef\x7c\xcc\xa9\x83\xf0\x59\x94\x45\xd6\x2b\x84\x29\x84\xfa\xcc\x92\x36\xac\xc4\x6c\xd9\x21\xdc\xfc\x0d\xe5\x6f\x13\x37\xa3\x09\x9c\x8b\x2f\x3c\x85\x47\x46\x55\xda\x13\x76\xdf\xed\x2d\x34\x4c\x89\x3c\x89\x07\xd9\x20\x2c\x28\x4d\x60\xd9\x2b\x72\x60\x04\xb6\xc1\x5c\x14\x02\x39\x34\x8c\xaa\x38\x8d\xc6\xa2\xf7\x6e\xff\x46\xf3\x9f\x4e\x61\x2f\xe6\x3a\x80\x5c\x17\xfb\x78\x17\x3e\x27\xe0\xbd\x6e\x25\xef\x78\xfb\xa6\xe0\xca\x80\xba\x0d\xee\x18\x82\xc1\x02\x0d\xaa\x1c\x63\x8f\xb1\xf3\x3a\x70\x83\x79\x4b\x38\x18\xa5\x5b\x21\xd9\x59\x79\xc7\x24\x53\x39\xc2\xf4\x68\xbc\x59\x89\xe4\xcd\x0e\x9b\x10\x12\x93\x81\x37\xa2\x08\xb7\x00\x37\xd3\x23\xb8\x6d\x34\x12\x71\x84\x9d\x1b\x64\x84\x73\xcd\x71\x86\x12\x4b\x46\xda\x24\x4a\x73\x7c\x98\x4d\x40\xf0\x74\x5c\xeb\xb8\x5a\x62\x2b\x34\x8f\x46\x6f\xbe\x9f\x32\xf5\x6e\x1c\x90\x8e\xea\x07\xb5\x19\xf7\x49\x38\x47\xef\xb7\x4d\xf6\xc7\x1c\x84\x5c\xfd\xe4\xd7\xc4\x59\xd1\xa3\x7f\x12\x4a\xd4\x6d\xed\x42\xf8\x84\xdf\x5a\x61\xb0\x46\x45\x49\x3a\xe8\xba\x03\x94\x16\x9d\x3d\x49\xd2\xe3\x8e\xfc\x49\x9d\x63\xa3\xd5\xca\x96\xfb\xc8\xaf\xad\xe3\xd8\x68\x2b\x28\x6c\xd0\xcd\xd5\x18\x64\x1d\x76\xee\x54\xd6\xb8\xfd\xb1\x45\xff\xe2\x78\xb6\x23\x1a\xe1\xc6\xe6\x9a\x00\x95\x6e\xcb\xca\x1f\x96\x05\xd2\x9e\xe2\x7f\xf1\xe1\x2e\x77\xe1\xba\x76\xd1\x8f\x00\x00\x00\xff\xff\xff\xca\xcc\xa6\xcd\x06\x00\x00" +var _lockedtokensDelegatorRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x53\xc1\x6e\x9b\x40\x10\xbd\xf3\x15\x53\x1f\x2a\x90\x1a\xd2\x43\xd5\x83\x95\x34\x72\x82\xa3\x5a\x71\x9d\x28\xa6\xad\x7a\xdc\xb0\x03\xac\x0c\xbb\x74\x77\x88\x5d\x45\xfe\xf7\x6a\x59\x70\x80\xd8\xfd\x81\xee\xc5\x32\xf3\xe6\xcd\x9b\x37\x33\xa2\xac\x94\x26\xb8\x2d\xd4\x36\x56\x1b\x94\x90\x6a\x55\xc2\xc7\xdd\xed\xf2\xfe\x67\x7c\x7f\x37\x5f\xcd\xa2\xe8\x71\xbe\x5e\x7b\x2d\x70\xa9\x92\x0d\xf2\x06\x6a\x3a\xec\xf2\xfe\xe6\x6e\x1e\x1d\x43\x5b\xda\x45\x14\xb3\xa7\x02\xd7\xc4\x36\x42\x66\x5d\xce\x22\x9a\xaf\xe2\x45\xfc\x2b\x9e\x5d\x2f\xe7\x5d\x96\x47\x9a\x49\xc3\x12\x12\x4a\xfa\x82\x4f\x61\x4d\x5a\xc8\xec\x03\xb0\x52\xd5\x92\xa6\xf0\xfd\x56\xec\x3e\x7f\x0a\xe0\xc5\xf3\x00\x00\x0a\x24\xc8\x55\xc1\x51\x3f\x62\x3a\x85\xf7\x7d\x71\x61\xf3\xf3\xb5\x89\xbe\xa2\x9f\x59\x5d\x90\x03\x1f\x5a\x0e\x7f\xd8\x8f\x0e\x53\x69\xac\x98\x46\x9f\x25\x89\xab\x38\xab\x29\x9f\xb9\x3f\xb6\x2c\xb4\xcf\x60\x91\x86\x87\xd2\x70\x09\x6d\x42\xf8\xa4\xb4\x56\xdb\x8b\x93\x52\xbe\xf8\xd6\x80\x29\x9c\x8a\xaf\x49\x69\x96\xe1\x03\xa3\x3c\x80\x43\x39\xfb\xae\xae\xa0\x62\x52\x24\xfe\xa4\x07\x07\x61\x40\x2a\x02\xc3\x9e\x91\x03\x23\x30\x15\x26\x22\x15\xc8\xa1\x62\x94\x4f\x02\x6f\x28\xb9\xeb\xff\x88\xe2\x91\x1f\x9d\xd0\x73\xe3\x14\x9d\xa7\x5d\xbc\x09\x07\x27\xb4\xdd\xa8\xba\xe0\x8d\x24\xc7\x0b\x36\x0d\xa8\x59\xad\xa6\x38\x68\x4c\x51\xa3\x4c\x70\xe2\x38\xf6\x4e\x22\xee\x30\xa9\x09\x7b\x1e\xdb\x79\x15\x8d\x4d\xd7\xac\x60\x32\x41\xb8\x1c\xf9\x1e\x66\x48\xce\xc8\x76\x44\x2d\xd0\xef\xb5\x2d\xd2\x76\x7b\xe0\xe2\x72\x44\xf7\xe2\x0d\x9a\x18\x71\x27\x1a\x19\xe1\x4a\x71\x8c\xb0\xc0\x8c\x91\xd2\xbe\x54\x1c\x17\xd1\x14\x04\x0f\x86\xb9\x56\xab\x21\xb6\x41\xfd\xa0\xd5\xee\xcf\x5b\xa5\xce\x8d\x57\xa6\x51\x7e\x2f\x37\xe4\x0e\x84\x2b\x74\x7e\x1b\xbf\x5b\xff\xb6\x91\xb3\x23\x77\x65\xad\x38\xb0\x7f\x13\x52\x94\x75\x69\x43\xf8\x88\xbf\x6b\xa1\xb1\x44\x49\x7e\xd0\xab\xba\x07\x2c\x0c\x5a\x7b\x7c\xff\xc0\x3b\xf0\x27\xb0\x8e\x0d\xb6\x26\x7c\xea\x22\xff\xb6\x8e\x63\xa5\x8c\xa0\x76\x83\x2e\xce\x86\x24\x5b\x41\x39\xd7\x6c\xfb\xb6\xad\x61\xf9\xb1\x45\xff\xe3\x78\x5e\x06\x32\xda\x1b\x5b\x29\x02\x94\xaa\xce\x72\x77\x58\x06\x48\x39\x89\xef\x26\xaf\x77\xb9\x6f\xaf\x6b\xef\xfd\x0d\x00\x00\xff\xff\xa4\x8b\xdc\xe3\xe4\x05\x00\x00" func lockedtokensDelegatorRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -4159,11 +4160,11 @@ func lockedtokensDelegatorRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0xbb, 0xe3, 0x9f, 0x58, 0x2d, 0xa7, 0x68, 0x5e, 0x3e, 0x8b, 0x4a, 0xbe, 0x59, 0xab, 0xc6, 0xae, 0x8e, 0xfe, 0x37, 0xc, 0xdc, 0x3a, 0xc5, 0xb2, 0x4d, 0x34, 0x53, 0x6e, 0xef, 0x38, 0x69}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x91, 0x9, 0xb6, 0x65, 0x81, 0x2d, 0x4b, 0x98, 0x9a, 0x49, 0x39, 0xf6, 0x73, 0xe4, 0x73, 0x75, 0xe4, 0x4e, 0x78, 0xa9, 0xe, 0x69, 0x8d, 0x9d, 0x36, 0x7d, 0xc4, 0x4, 0xad, 0xdb, 0xb5, 0xe5}} return a, nil } -var _lockedtokensDelegatorRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xc1\x4e\xab\x50\x10\xdd\xf3\x15\x13\x16\x0d\x24\x2f\xac\x5e\xde\xa2\x79\xb5\xd1\x98\xc6\x85\xd1\x46\xad\xae\xa7\x30\xc0\x4d\xe9\x1d\x9c\x3b\xd8\x1a\xd3\x7f\x37\xe5\x52\x0a\x36\xb2\x19\x98\x39\x73\xce\x99\x13\xcc\xb6\x66\x51\xb8\xe7\x74\x43\xd9\x0b\x6f\xc8\x3a\xc8\x85\xb7\x10\x0e\x5b\x61\xd0\xe1\x16\x8d\x2d\xcc\xba\xa2\xb6\xdd\x01\x47\xbd\x30\x08\x54\xd0\x3a\x4c\xd5\xb0\x8d\x70\xcb\x8d\xd5\x29\xac\x16\x66\xff\xef\x6f\x0c\x5f\x01\x00\x40\x45\x0a\x96\x33\xba\xa5\x8a\x0a\x54\x96\xa5\xf0\xfe\x73\x3a\x72\x91\xf8\x8f\x87\x0b\x58\xd0\x52\xd4\x42\x35\x0a\x45\x98\xa6\x5e\x01\x1b\x2d\xa3\x1b\x16\xe1\xdd\x2b\x56\x0d\xc5\x30\xb9\xf6\xb3\x93\xea\x49\xb9\xe4\x2a\x23\x79\xa2\x1c\x66\xd0\xad\x27\x4e\x59\xb0\xa0\x64\xdd\x12\xfc\x6f\xc9\x46\x6e\xda\xf2\x58\x93\xe0\xf1\x2e\xf7\x67\x9c\x44\xf2\x66\xb4\xcc\x04\x77\x31\x4c\x2e\xd7\xee\x5a\xc1\xab\xe8\x18\xd7\x8f\x23\x07\xf3\x67\x6f\x61\x89\x5a\xc6\xbd\xdf\xe3\x33\x9f\x43\x8d\xd6\xa4\x51\x38\x40\x83\x71\x60\x59\xc1\xe1\x07\x65\x80\x0a\xae\xa6\xd4\xe4\x86\x32\xa8\x51\xcb\xf0\x4c\xd1\xbf\x38\xaa\xf2\xe4\x32\x76\x98\x9d\x13\xe9\xee\xef\x01\x91\xa7\x39\xf8\xcc\x69\x4f\x69\xa3\x34\x88\xf3\x17\xca\x44\xe8\xbd\x21\xa7\x2b\xeb\x14\x37\xc6\x16\xfd\x7f\xe0\xeb\x89\xf5\x10\x7c\x07\x00\x00\xff\xff\x6f\x65\xa9\x7e\x7f\x02\x00\x00" +var _lockedtokensDelegatorRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xdf\x6a\xf2\x40\x10\xc5\xef\xf3\x14\x83\x17\x1f\xf1\x26\x7c\x17\xa5\x17\x52\x2b\xd2\x58\x0a\x8a\x8a\x7f\x1e\x60\xba\x99\x98\xc5\xb8\x93\xce\x4e\xda\x94\xe2\xbb\x17\x5d\x4d\xb5\xd2\xdc\x4c\x86\x3d\x9c\xdf\x9e\xb3\x76\x57\xb1\x28\x4c\xd8\x6c\x29\x5b\xf1\x96\x9c\x87\x5c\x78\x07\xff\x9b\xc9\xec\x69\x3c\x4a\x57\xb3\xf1\x68\x3a\x4c\xd3\xc5\x68\xb9\x8c\x22\x15\x74\x1e\x8d\x5a\x76\x31\xee\xb8\x76\xda\x83\xf5\xb3\x6d\xee\xef\xba\xf0\x15\x01\x00\x94\xa4\xe0\x38\xa3\x94\x4a\xda\xa0\xb2\xcc\x85\x9b\xcf\xde\x15\x21\x09\xcb\xf4\x46\x16\x1d\x2d\x2a\xa1\x0a\x85\x62\x34\x26\x10\x86\xb5\x16\xc3\xb0\x9c\x31\x67\x54\xc1\x65\x46\xb2\xa0\x1c\xfa\x70\xd2\x27\xaf\x2c\xc2\x1f\x0f\xff\xae\x90\xc7\xf1\x72\x54\x3f\xc6\x87\x84\xbf\xae\x74\x71\xbe\x54\x16\xdc\xd0\x1c\xb5\xe8\x42\x4b\x3b\x7c\x83\x01\x54\xe8\xac\x89\x3b\x17\x72\xb0\x1e\x1c\x2b\x78\x7c\xa7\x0c\x50\xc1\x57\x64\x6c\x6e\x29\x83\x0a\xb5\xe8\x74\x5b\x8b\xf6\xc7\x53\x99\x27\xb7\x2d\x41\xff\x27\xcf\x29\x45\x2b\x88\x83\xcd\x3e\x54\x44\x0d\x99\x5a\xe9\xa2\x8c\x3f\x2c\x13\xa1\xb7\x9a\xbc\xae\x9d\x57\xdc\x5a\xb7\x69\x9f\x2d\xcc\xb3\xeb\x3e\xfa\x0e\x00\x00\xff\xff\xb1\xf9\x7f\xb3\x0a\x02\x00\x00" func lockedtokensDelegatorRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -4179,11 +4180,11 @@ func lockedtokensDelegatorRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0x38, 0x26, 0x65, 0xbe, 0x12, 0x28, 0x9a, 0x64, 0x62, 0xf9, 0x85, 0x12, 0x94, 0xe3, 0xcb, 0x8c, 0xba, 0x20, 0x9b, 0x44, 0xed, 0x73, 0x7c, 0x4b, 0xa0, 0x91, 0x6c, 0x85, 0x78, 0x4d, 0x5b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x54, 0x4a, 0xf3, 0x42, 0x72, 0x6b, 0xbf, 0x51, 0x4d, 0x3a, 0xe6, 0x9b, 0xce, 0x42, 0xbc, 0x7, 0x8b, 0xa6, 0x15, 0x6a, 0xda, 0xb7, 0x66, 0x6b, 0xa8, 0xbd, 0x2e, 0xf1, 0x0, 0x96, 0x7, 0x4}} return a, nil } -var _lockedtokensDelegatorWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xcf\x6e\xa3\x30\x10\xc6\xef\x3c\xc5\x88\x43\x04\xd2\xae\x73\x59\xed\x21\x4a\x36\xda\x3f\x8a\xf6\x50\xa9\x51\xda\xa6\x67\x07\x86\x80\xe2\x78\xd0\x60\x42\xaa\x2a\xef\x5e\x81\x0d\x01\xda\x5c\x2a\x95\x8b\xc5\xcc\xf8\xf3\xef\x9b\x99\xec\x98\x13\x1b\xb8\xa3\xe8\x80\xf1\x23\x1d\x50\x17\x90\x30\x1d\xc1\xef\x87\x7c\xcf\xd5\xad\x14\x55\x4d\xc8\x15\x75\xff\xd7\x8a\x52\xef\xb3\x9d\xc2\x41\x55\x3f\xe6\x7b\x9e\x61\xa9\x0b\x19\x99\x8c\x74\x20\x8f\x54\x6a\x33\x83\xa7\x55\x76\xfe\xf9\x23\x84\x57\xcf\x03\x00\x50\x68\x20\x25\x15\x23\x6f\x30\x99\x81\x2c\x4d\x1a\xf4\x89\x44\x73\xdc\xe7\xc8\xb2\x96\x29\xbe\x0d\x1f\x16\xcf\x99\x49\x63\x96\x55\x08\x93\xf7\xd7\xfe\x37\xc2\xdd\x3b\x27\x59\x2a\xd3\x3c\x33\xe9\xfc\x88\x6d\x1d\xb4\x2c\x39\x63\x2e\x19\x03\x19\x45\x96\xb5\xa1\xf9\x43\xcc\x54\x6d\xa5\x2a\x31\x84\xc9\x6f\x9b\xab\xf9\xc1\x7d\x05\xaa\x44\x74\x1e\x60\x01\xee\xbe\x28\x0c\xb1\xdc\xa3\xd8\x35\x0a\xf3\xaf\xf0\xf6\x2b\xa8\x3b\x3f\x83\x5b\xf9\x07\x8b\xb0\x96\x26\x0d\x3b\xe0\xfa\x5b\x2e\x21\x97\x3a\x8b\x02\xff\x2f\x95\x2a\x06\x4d\x06\x2c\x27\x30\x26\xc8\xa8\x23\x04\x43\xd0\xd3\xf2\x43\x6f\xe8\xb9\xed\xe7\x6d\xcb\xe3\x3e\xb7\xb8\x53\x57\x37\x4d\xda\x7c\x93\xfe\x1c\xe2\x75\x57\x4f\xf5\x90\x7c\xab\x72\xb1\xb0\x78\xc6\xa8\x34\xd8\x1b\x57\xbd\x09\x31\x2a\xdc\x4b\x43\xbc\x66\x3a\xbf\xc0\x62\x34\x43\x87\xff\xaf\xad\x0a\x7a\xce\x87\x57\x45\xe5\x66\xb4\xc1\x4a\x72\xdc\x8e\xa0\xdb\x76\x7b\x86\x1f\xf7\x4d\xc4\x98\x53\x91\x19\xd7\x94\xf9\xf7\x11\x45\xab\x3d\x56\x6b\x0d\x5e\xbc\xb7\x00\x00\x00\xff\xff\x0e\x35\x51\xeb\xd6\x03\x00\x00" +var _lockedtokensDelegatorWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x8f\xa2\x40\x10\x85\xef\xfc\x8a\x8a\x87\x0d\x1c\x16\xf7\xb0\xd9\x83\xd1\x35\x46\x34\x93\x68\x46\xa3\xce\xcc\xb9\x07\x0a\x21\xb6\x14\x69\x0a\x61\x32\xf1\xbf\x4f\xa0\x69\x06\x89\x5e\xa6\x2f\x1d\xa8\xd7\xf5\xbe\x7a\xdd\xf1\x39\x25\xc5\xb0\x26\xff\x84\xc1\x81\x4e\x98\x64\x10\x2a\x3a\xc3\x9f\x72\xbd\x99\xaf\x16\xde\x61\xb3\x5a\x3c\xcf\x3c\x6f\xb7\xd8\xef\xad\x46\xbd\x94\x54\xd4\x5a\x23\x5d\xae\x37\x6f\x37\x42\x8b\x95\x48\x32\xe1\x73\x4c\x89\x2d\xce\x94\x27\x3c\x82\x97\x65\x5c\xfe\xfb\xeb\xc0\xa7\x65\x01\x00\x48\x64\x88\x48\x06\xa8\x76\x18\x8e\xe0\x57\x97\xc1\xad\xb7\xa7\xba\xda\x8a\x2f\x22\x97\xac\xb5\x2d\x81\xfb\x5a\xfd\xd4\x0d\x53\x85\xa9\x50\x68\x0b\xdf\xd7\x86\xb3\x9c\xa3\x99\xfe\xa8\x5c\xa1\x59\x19\xca\xd0\x6d\x9d\x61\x02\xcd\x01\xf7\x9d\x94\xa2\x62\xfc\x90\xe4\xbf\x5d\xcd\x3b\x82\x47\xf5\x3d\x93\x12\x47\xdc\x0a\x8e\x1c\x68\xed\xaa\x35\x9d\x42\x2a\x92\xd8\xb7\x07\x73\xca\x65\x00\x09\x31\x68\x37\x50\x18\xa2\xc2\xc4\x47\x60\x82\x4e\xb3\x81\x63\xdd\x12\x9b\xf1\xef\x00\xf7\xe2\x30\x9c\xc3\x4c\x03\x0d\x43\x53\xaf\xcb\xce\x8f\xd0\xbe\x2f\xfd\x22\x64\x8e\x03\xdd\xe5\xaa\x21\xb1\x44\x3f\x67\xec\x84\x5c\x5d\x58\x80\x12\x8f\x82\x49\x6d\x15\x95\x1f\x30\xe9\x25\xdf\xe0\x7b\x46\x65\x77\x26\xbe\x3d\xea\x16\x31\x47\x81\x12\xc5\x0e\x0b\xa1\x02\x93\x7d\xfb\xb2\xf4\xee\xdc\xcf\xcb\x0d\x30\xa5\x2c\xe6\x26\x94\xf1\xef\x1e\x85\xe9\xdd\xef\x66\x06\xbc\x5a\x5f\x01\x00\x00\xff\xff\x29\x29\x64\xb8\x25\x03\x00\x00" func lockedtokensDelegatorWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4199,11 +4200,11 @@ func lockedtokensDelegatorWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x94, 0x24, 0x6d, 0x9c, 0xe, 0x60, 0xf7, 0xf3, 0x2c, 0x32, 0x60, 0x16, 0x15, 0x5d, 0x1b, 0x7f, 0x82, 0x13, 0x92, 0x79, 0x2a, 0x26, 0x1f, 0xbd, 0xc6, 0x8e, 0x23, 0xe0, 0x48, 0x1c, 0x44, 0xdd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe6, 0x5, 0x83, 0x8, 0x2a, 0x18, 0xaf, 0xe7, 0xdc, 0x32, 0xf3, 0xaa, 0x20, 0x75, 0x3b, 0x26, 0xe1, 0xbb, 0xd2, 0x3a, 0xfa, 0x32, 0x6, 0xb0, 0x49, 0x94, 0x57, 0x54, 0x30, 0x79, 0x4d, 0x56}} return a, nil } -var _lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4f\x6b\xa3\x50\x10\xbf\xfb\x29\x06\x0f\x41\x61\xf1\xb4\xec\x21\x6c\x36\x6c\x29\xa1\x87\xd2\x86\xf4\xdf\x79\xa2\x63\x7c\xc4\xbc\x91\x79\x63\x4d\x29\xf9\xee\x25\x3e\x35\xda\x50\x2f\x4f\xe7\xfd\xe6\xf7\x0f\xcd\xa1\x62\x51\xb8\xe7\x74\x4f\xd9\x33\xef\xc9\x3a\xc8\x85\x0f\x10\x8e\x47\x61\xd0\xe1\x56\xb5\xdd\x99\x6d\x49\xed\xb8\x03\x4e\x66\x61\x10\xa8\xa0\x75\x98\xaa\x61\x1b\xe1\x81\x6b\xab\x73\x78\x59\x99\xe3\x9f\xdf\x31\x7c\x06\x00\x00\x25\x29\x58\xce\xe8\x96\x4a\xda\xa1\xb2\xac\x85\x8f\x1f\xf3\x89\x8b\xc4\x7f\x3c\x5c\xc1\x82\x96\xa2\x12\xaa\x50\x28\xc2\x34\xf5\x0a\x58\x6b\x11\xdd\xb0\x08\x37\xaf\x58\xd6\x14\xc3\xec\xbf\xbf\xeb\x55\x7b\xe5\x82\xcb\x8c\x64\x43\x39\x2c\xa0\x5b\x4f\x9c\xb2\xe0\x8e\x92\x6d\x4b\xf0\xb7\x25\x9b\xb8\x69\x8f\xc7\x8a\x04\xcf\xb9\xdc\xaf\x69\x13\xc9\x9b\xd1\x22\x13\x6c\x62\x98\x5d\xaf\xdd\xb5\x82\xff\xa2\x73\x5d\xdf\x42\x8e\xee\x9f\xbc\x85\x35\x6a\x11\x0f\x7e\xcf\xcf\x72\x09\x15\x5a\x93\x46\xe1\x08\x0d\xc6\x81\x65\x05\x87\xef\x94\x01\x2a\xb8\x8a\x52\x93\x1b\xca\xa0\x42\x2d\xc2\x0b\xc5\xf0\xe2\xa8\xcc\x93\xeb\xda\x61\x71\x69\xa4\xcb\x3f\x00\x22\x4f\x73\xf2\x9d\xd3\x91\xd2\x5a\x69\x54\xe7\x0f\x94\x49\xd3\xd5\xb1\xa1\x06\x25\xeb\xd3\x0e\x7f\x83\x3f\x7b\xee\x53\xf0\x15\x00\x00\xff\xff\x8b\x3c\x89\xa1\x85\x02\x00\x00" +var _lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x2f\xa1\x87\xd2\x83\xd4\x8a\x34\x96\x82\xa2\xa2\xf6\x07\x4c\x77\x27\x66\x31\xee\x84\xc9\xd8\xa4\x14\xff\x7b\xd1\x98\x34\x56\x9a\xcb\x64\xd8\xc7\xfb\xf6\xbd\x75\xfb\x9c\x45\x61\xc6\x66\x47\x76\xc3\x3b\xf2\x05\x24\xc2\x7b\xb8\xaf\x66\x8b\x97\xe9\x24\xde\x2c\xa6\x93\xf9\x38\x8e\x57\x93\xf5\x3a\x08\x54\xd0\x17\x68\xd4\xb1\x0f\x71\xcf\x07\xaf\x03\x78\x7f\x75\xd5\xe3\x43\x1f\xbe\x03\x00\x80\x8c\x14\x3c\x5b\x8a\x29\xa3\x2d\x2a\xcb\x52\xb8\xfa\x1a\x5c\x11\xa2\x7a\x99\xdf\xc8\x82\xb3\x45\x2e\x94\xa3\x50\x88\xc6\xd4\x84\xf1\x41\xd3\x71\xbd\x34\x98\x06\x95\x72\x66\x49\x56\x94\xc0\x10\x2e\xfa\xe8\x83\x45\xb8\x7c\xba\xbb\x42\x9e\xc7\xdb\x59\xfd\x1c\x9e\x12\xfe\xb9\x52\xe7\x7c\xad\x2c\xb8\xa5\x25\x6a\xda\x87\x96\x76\xfa\x46\x23\xc8\xd1\x3b\x13\xf6\x3a\x72\x70\x05\x78\x56\x28\xf0\x93\x2c\xa0\x42\x91\x93\x71\x89\x23\x0b\x39\x6a\xda\xeb\xb7\x16\xed\x4f\x41\x59\x12\xdd\xb6\x04\xc3\xdf\x3c\x97\x14\xad\x20\xac\x6d\x8e\x75\x45\x54\x91\x39\x28\x75\xca\xf8\xc7\x32\x2a\x9d\xa6\x56\xb0\x5c\x51\x89\x62\x9b\xb8\xed\xe3\xd5\xb3\xf1\x3e\x06\x3f\x01\x00\x00\xff\xff\x93\x68\x03\x07\x10\x02\x00\x00" func lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdcBytes() ([]byte, error) { return bindataRead( @@ -4219,11 +4220,11 @@ func lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0xbe, 0x82, 0xa7, 0xde, 0x1f, 0xfd, 0xc2, 0x7d, 0x57, 0x2, 0xd5, 0x9d, 0xb0, 0x5e, 0xde, 0xad, 0x51, 0xee, 0xe9, 0x0, 0x5b, 0x77, 0xbf, 0xff, 0xbc, 0x87, 0xf0, 0x16, 0x44, 0x76, 0x94}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6d, 0x82, 0x3d, 0xe0, 0xb7, 0x1e, 0xf7, 0xed, 0x59, 0xb8, 0x4, 0xce, 0x38, 0xb6, 0x6e, 0x9a, 0x69, 0x60, 0x72, 0x8, 0x27, 0xcf, 0xa5, 0x8, 0x5f, 0x3e, 0xb7, 0x74, 0xcb, 0xaa, 0x37, 0xfe}} return a, nil } -var _lockedtokensDelegatorWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4d\x4f\xb3\x40\x10\xbe\xf3\x2b\x26\x1c\x1a\x48\xde\x70\x7a\xe3\xa1\xb1\x36\x1a\xd3\x78\x30\xda\xa8\xd5\xf3\x74\x19\xca\xa6\x74\x67\xb3\x3b\xd8\x1a\xd3\xff\x6e\xca\x52\x0a\x12\xb9\x2c\xcc\x3e\xf3\x7c\x05\xbd\xb3\xec\x04\x1e\x59\x6d\x29\x7f\xe3\x2d\x19\x0f\x85\xe3\x1d\xc4\xfd\x51\x1c\xb5\xb8\x45\x6d\x36\x7a\x5d\x51\x33\x6e\x81\x83\x59\x1c\x45\xe2\xd0\x78\x54\xa2\xd9\x24\xb8\xe3\xda\xc8\x14\x56\x0b\x7d\xb8\xfa\x9f\xc2\x77\x04\x00\x50\x91\x80\xe1\x9c\xee\xa9\xa2\x0d\x0a\xbb\xa5\xe3\xc3\xd7\x74\xe0\x22\x0b\x1f\x4f\x23\x58\xd4\x50\x58\x47\x16\x1d\x25\xa8\x54\x50\xc0\x5a\xca\xe4\x8e\x9d\xe3\xfd\x3b\x56\x35\xa5\x30\xb9\x0d\x77\x67\xd5\xb3\x72\xc9\x55\x4e\xee\x85\x0a\x98\x41\xbb\x9e\x79\x61\x87\x1b\xca\xd6\x0d\xc1\x75\x43\x36\x70\xd3\x1c\xcf\x96\x1c\x9e\x72\xf9\x7f\xc3\x26\xb2\x0f\x2d\x65\xee\x70\x9f\xc2\x64\xbc\xf6\xd0\x08\xde\x24\xa7\xba\x7e\x85\xec\xdd\xbf\x06\x0b\x4b\x94\x32\xed\xfc\x9e\x9e\xf9\x1c\x2c\x1a\xad\x92\xb8\x87\x06\xed\xc1\xb0\x80\xc7\x4f\xca\x01\x05\xbc\x25\xa5\x0b\x4d\x39\x58\x94\x32\xbe\x50\x74\x2f\x9e\xaa\x22\x1b\xd7\x0e\xb3\x4b\x23\x6d\xfe\x0e\x90\x04\x9a\x63\xe8\x9c\x0e\xa4\x6a\xa1\x5e\x9d\x7f\x50\x66\xfb\xb6\x8e\x95\xf1\x82\x5d\xda\xee\x6f\x08\xe7\x99\xfb\x18\xfd\x04\x00\x00\xff\xff\xa4\x08\x39\x8f\x85\x02\x00\x00" +var _lockedtokensDelegatorWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xdf\x6a\xf2\x40\x10\xc5\xef\xf3\x14\x83\x17\x1f\xf1\x26\x7c\x17\xa5\x17\x52\x2b\xd2\x58\x0a\x8a\x8a\x7f\x1e\x60\xba\x99\x98\xc5\xb8\x13\x66\xc7\x9a\x52\x7c\xf7\xa2\xd1\x6d\xac\x34\x37\x93\x61\x0f\xe7\xb7\xe7\xac\xdd\x55\x2c\x0a\x13\x36\x5b\xca\x56\xbc\x25\xe7\x21\x17\xde\xc1\xff\x7a\x32\x7b\x19\x8f\xd2\xd5\x6c\x3c\x9a\x0e\xd3\x74\x31\x5a\x2e\xa3\x48\x05\x9d\x47\xa3\x96\x5d\x8c\x3b\xde\x3b\xed\xc1\xfa\xd5\xd6\x8f\x0f\x5d\xf8\x8a\x00\x00\x4a\x52\x70\x9c\x51\x4a\x25\x6d\x50\x59\xe6\xc2\xf5\x67\xef\x86\x90\x34\xcb\xf4\x4e\x16\x9d\x2d\x2a\xa1\x0a\x85\x62\x34\xa6\x21\x0c\xf7\x5a\x0c\x9b\xe5\x8a\xb9\xa2\x0a\x2e\x33\x92\x05\xe5\xd0\x87\x8b\x3e\x79\x67\x11\x3e\x3c\xfd\xbb\x41\x9e\xc7\xdb\x59\xfd\x1c\x9f\x12\xfe\xba\x52\xeb\x7c\xa9\x2c\xb8\xa1\x39\x6a\xd1\x85\x40\x3b\x7d\x83\x01\x54\xe8\xac\x89\x3b\x2d\x39\x58\x0f\x8e\x15\x3c\x7e\x50\x06\xa8\xe0\x2b\x32\x36\xb7\x94\x41\x85\x5a\x74\xba\xc1\x22\xfc\x78\x2a\xf3\xe4\xbe\x25\xe8\xff\xe4\xb9\xa4\x08\x82\xb8\xb1\x39\x36\x15\x51\x4d\x66\xaf\xd4\x2a\xe3\x0f\xcb\xe4\x60\xb5\xc8\x04\x0f\x6b\xe7\x15\x43\xdc\xf0\x78\xcd\xbc\x7a\x1f\xa3\xef\x00\x00\x00\xff\xff\xbc\x5c\xb3\x29\x10\x02\x00\x00" func lockedtokensDelegatorWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4239,11 +4240,11 @@ func lockedtokensDelegatorWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x97, 0xad, 0xe8, 0x0, 0x2f, 0x41, 0x5f, 0x1e, 0x2a, 0x37, 0x13, 0xff, 0x4f, 0xde, 0x3f, 0xe4, 0xaf, 0x70, 0x62, 0x1d, 0x9d, 0xbb, 0x53, 0x40, 0x87, 0x7e, 0xed, 0xc8, 0x1b, 0x46, 0xaf, 0xab}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x76, 0x6b, 0xcd, 0x92, 0x2d, 0xc7, 0x26, 0xf1, 0x84, 0xdd, 0xbf, 0xe1, 0x63, 0x85, 0x81, 0xc6, 0xbc, 0xb9, 0x4b, 0x27, 0xa4, 0x96, 0xfc, 0xab, 0x2c, 0x32, 0x7a, 0x19, 0xc1, 0xcc, 0xec, 0x30}} return a, nil } -var _lockedtokensStakerGet_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcd\x4e\xc3\x30\x10\x84\xef\x7e\x8a\x21\x07\x94\x5c\xf2\x00\x15\x50\x55\x70\xa0\x52\x85\x2a\xe0\x05\x1c\x7b\x13\xac\x3a\xde\x68\xbd\x16\x07\xc4\xbb\xa3\x26\x50\xca\xcf\x5e\x2c\x8d\x66\xbe\xf1\x84\x71\x62\x51\xec\xd8\x1d\xc8\x3f\xf3\x81\x52\x46\x2f\x3c\xa2\x3a\x97\x2a\x63\xac\x73\x94\x73\x6d\x63\x6c\xd0\x97\x84\xd1\x86\x54\x5b\xe7\xb8\x24\x5d\x61\xe3\xbd\x50\xce\xcd\x0a\x4f\x2a\x21\x0d\x78\x33\x06\x00\x22\x29\xe2\x0c\xda\x2c\xd6\x6d\xea\xf9\x91\x7a\x5c\x63\x20\xfd\xd4\xbe\x30\xcd\x1c\x39\x5e\xeb\xec\x64\xbb\x10\x83\x06\xca\x6d\xc7\x22\xfc\x7a\x75\x79\xfe\xa3\x76\x7e\xee\x39\x7a\x92\x9b\xfa\x14\x3c\xde\x0f\xdb\xee\x77\xf9\xbe\x74\x31\xb8\xbd\xd5\x97\x53\xe8\xbb\x77\xbd\xc6\x64\x53\x70\x75\x75\xcb\x25\x7a\x24\x56\x2c\xed\xb0\x10\xea\x49\x28\x39\x82\x32\xa6\x19\x83\x3f\xf8\xaa\x59\x86\x0b\x69\x91\xf4\xef\xf6\x76\x20\x7d\x60\x4f\xdb\xbb\xba\xb9\x30\xef\xe6\x23\x00\x00\xff\xff\x0f\x71\x7a\xf7\x83\x01\x00\x00" +var _lockedtokensStakerGet_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x5f\x6b\xc2\x30\x14\xc5\xdf\xf3\x29\xce\x7c\x18\xed\x8b\xec\x59\xb6\x89\x58\x61\xa2\xa8\x58\xbf\x40\x9a\xdc\x76\xc1\x34\xb7\xa4\x09\xdb\x10\xbf\xfb\x68\xbb\x39\xf7\x87\xdd\x97\xc0\xcd\xb9\xbf\x73\x38\xa6\x6e\xd8\x07\xac\x59\x1d\x49\x1f\xf8\x48\xae\x45\xe9\xb9\xc6\xdd\xeb\x7a\x3b\x5f\x2d\xb2\xc3\x76\xb5\xd8\xcc\xb2\x6c\xbf\xc8\x73\x21\x9a\x58\xa0\x8c\x0e\xb5\x34\x2e\x91\x4a\x71\x74\x61\x82\x99\xd6\x9e\xda\x36\x9d\x20\x0f\xde\xb8\x0a\x27\x21\x00\xc0\x52\x80\xed\xc9\xb3\x41\xba\x74\x25\xef\xa9\xc4\x03\x2a\x0a\x1f\xbb\x4f\x4c\xda\x9f\x74\x33\xae\x28\xcc\x65\x23\x0b\x63\x4d\x78\xbb\xbf\xbd\x0e\x37\xee\x9f\x27\xb6\x9a\xfc\xe9\xdb\xc7\xfa\xa7\xd1\xf9\x31\xb9\x20\xbb\xf9\x5f\xbd\x8b\x85\x35\x6a\x27\xc3\xf3\xe5\xe8\x2a\x51\xc1\xde\xf3\x4b\xf2\xb5\x99\x4e\xd1\x48\x67\x54\x32\x9a\x73\xb4\x1a\x8e\x03\x06\x11\x24\x3c\x95\xe4\xc9\x29\x42\x60\x34\x3d\x18\xbf\x0c\x47\xe9\x50\x92\xa7\x10\xbd\xfb\xb3\xa7\xae\x88\x0d\x6b\x5a\x66\x49\x7a\x23\xce\xe2\x3d\x00\x00\xff\xff\x59\x32\x6f\x4f\xad\x01\x00\x00" func lockedtokensStakerGet_node_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4259,11 +4260,11 @@ func lockedtokensStakerGet_node_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/get_node_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0x84, 0xe, 0x5d, 0x19, 0x55, 0x83, 0xac, 0xfc, 0xd7, 0x38, 0x2e, 0x90, 0xd2, 0x96, 0x6, 0xf1, 0x2f, 0x3e, 0x2d, 0x2c, 0x94, 0x18, 0xed, 0x24, 0xeb, 0x46, 0x62, 0x19, 0xf7, 0xa4, 0x79}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x36, 0xf1, 0x48, 0xbc, 0x29, 0x8, 0xe1, 0x54, 0xd9, 0xcd, 0x2f, 0x3f, 0x8c, 0x57, 0xfa, 0xce, 0x1c, 0x97, 0xce, 0xe6, 0xf4, 0xb4, 0xc7, 0xd7, 0xb0, 0x8b, 0x59, 0xcf, 0x1c, 0x80, 0x8c, 0x24}} return a, nil } -var _lockedtokensStakerGet_staker_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xc1\x8a\xdb\x30\x10\xbd\xeb\x2b\x86\x1c\x8a\x7d\xf1\xde\x43\x5d\x08\x98\xd2\x40\x29\xcb\x76\x6f\xcb\x1e\xc6\xd2\x38\x51\xa3\x68\x8c\x34\x66\x29\x21\xff\x5e\xe4\x38\x8e\xdd\x64\x9b\xb6\xba\x84\x48\xef\x3d\xbd\x79\x4f\xd8\xee\x5b\x0e\x02\x9f\x1d\xbf\xad\xab\x67\xac\x1d\x7d\x17\xdc\x59\xbf\x81\x26\xf0\x1e\x16\xd7\x07\x0b\x35\x70\xbe\xb2\xde\x91\x79\xe6\x1d\xf9\x38\xa0\xa7\x5b\x0b\xa5\x1e\x1e\xe0\x89\xa4\x0b\x3e\x02\x7a\xc0\x10\xf0\x27\x70\x03\xdf\xd8\xd0\xda\x37\x0c\x5c\xff\x20\x2d\x11\x64\x8b\x02\xb2\x25\x40\xad\xb9\xf3\x02\x9a\xbd\x04\x76\x31\x29\x58\x0f\x56\x22\x78\x0e\x7b\x74\x23\x02\xbd\x81\xb8\xc5\x40\xe6\xbc\xa5\x14\x6a\x4d\x31\x66\xe8\x5c\x0e\x4d\xe7\x61\x8f\xd6\x67\xc3\xe9\x12\x56\xc6\x04\x8a\x31\x5f\xc2\xcb\xf5\x50\xc5\xd9\xd3\x2b\x1c\x94\x02\x00\x70\x24\xe0\x87\xcd\x55\x72\x7e\x8f\x57\xc2\xcb\xeb\x85\xda\x76\xf5\x6a\xb0\x5a\xc2\x86\x64\xf8\x73\xb6\x93\x5f\x90\xdc\x8a\x65\x8f\x2e\x29\x25\x55\x0a\x4f\xd4\x40\x39\x51\xe8\xa1\x69\x15\x1a\x5b\xac\xad\xb3\x62\x29\x16\x35\x87\xc0\x6f\x1f\x3f\x1c\xde\xb1\x75\x12\x7b\xec\x6a\x67\xf5\xf1\x53\x36\xaa\xa4\xf5\x17\x94\x47\x94\xed\xc8\x19\xfc\xda\x66\xcc\x65\x6a\xf5\xf6\x08\x87\x91\x9d\x38\x36\x15\x5e\xbe\x77\x71\x8a\x30\xeb\xe3\xae\x96\x73\xf9\xc2\x9a\x7c\x14\x9a\x15\x52\x60\xdb\x92\x37\x59\x52\x3e\x41\x8e\xd7\xa9\x9e\x5e\xe4\x10\x64\xa2\xfe\x63\xb8\xd3\x17\x5d\xf4\x3f\x5f\xd8\x19\x0a\xbf\xe5\x39\x83\x5d\xdd\x79\x37\x50\x77\xdb\xe5\x1f\x87\xb8\xc4\x3b\x69\x65\x5d\x41\x79\x53\xad\xd8\x90\xf4\x41\x57\x59\x3e\xa1\xfe\x67\x3b\xeb\x2a\x9f\x49\xdc\xe9\xe5\xd4\xcd\xa4\xa1\xd0\x7f\x15\xe6\x34\x75\x54\xbf\x02\x00\x00\xff\xff\x2f\x27\xba\xbf\x8d\x04\x00\x00" +var _lockedtokensStakerGet_staker_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x94\xc1\x6f\xda\x30\x14\xc6\xef\xf9\x2b\xde\x69\x4a\x2e\xe9\xce\x68\x99\x94\xe1\x4c\x8b\x8a\x68\x05\xb9\x4c\x55\x0f\x4e\xfc\x02\x1e\xc6\x8e\x9c\x17\x75\x15\xe2\x7f\x9f\x1c\x92\x34\xa1\x74\xa0\xfa\x82\x30\xef\xf7\xf9\xf3\xf7\x59\xc8\x7d\x65\x2c\xc1\x4f\x65\x5e\x52\x96\xf1\x5c\xe1\x9a\xf8\x4e\xea\x0d\x94\xd6\xec\xe1\xeb\xdf\x94\x25\xcb\x2c\xcd\x7e\x67\xf1\x8f\x45\x12\x33\xb6\x4a\xd6\x6b\xaf\xa3\x16\xa6\xd8\xa1\xc8\xcc\x0e\x75\xdd\xcf\x2f\x1e\xe6\xf7\x09\xcb\x1e\xee\x93\x65\x3f\xed\xdd\xdd\xc1\x0a\xa9\xb1\xba\x06\xae\x81\x5b\xcb\x5f\xc1\x94\xb0\x34\x02\x53\x5d\x1a\x30\xf9\x1f\x2c\xa8\x06\xda\x72\x02\xda\x22\xf0\xa2\x30\x8d\x26\x28\x8c\x26\x6b\x54\xed\x14\xa4\x06\x49\x35\x68\x63\xf7\x5c\x0d\x13\x5c\x0b\xa8\xb7\xdc\xa2\xe8\xb7\x3c\xaf\x6a\x72\x28\x1b\x0d\x7b\x2e\xb5\xdf\xed\xce\x20\x16\xc2\x62\x5d\x07\x33\x78\x7a\x7f\xdb\xb0\xf7\xf2\x0c\x07\xcf\x03\x00\x50\x48\xa0\xbb\xcd\xd8\x39\xbe\xc6\x45\xf0\xf4\xfc\x86\x56\x4d\x1e\x77\x16\x23\xd8\x20\x75\x5f\x7a\x3b\xc1\xf4\x10\xa7\x86\x76\xce\x2b\x88\x46\x64\x3b\xe2\x56\xb8\x41\x9a\xf3\x8a\xe7\x52\x49\x7a\xfd\xf6\xe5\xf0\x81\x91\x93\xcc\x63\x93\x2b\x59\x1c\xbf\xfb\x03\xef\xd6\x0d\xc8\x23\xa7\xed\xc0\x74\x0e\x65\x79\x66\x72\x85\x25\x44\x53\xd3\x61\x6e\xac\x35\x2f\x7e\x00\x87\x01\x77\x90\x74\xdd\x46\x1f\x9d\xec\x52\xf3\xdb\x84\xd9\x6c\xaa\x1f\x4a\x11\x0c\x42\x93\x0e\x42\x5e\x55\xa8\x85\xef\x94\x4f\x23\xc7\xb7\x20\x55\xfb\x1a\xbb\xec\x1c\x72\x73\x9e\xe3\x77\x1c\xb6\x1f\xbf\x8c\x12\x68\x0f\x93\x1f\x16\xe7\xfa\xe7\x11\xff\x7f\xfa\x6a\xc6\xef\xfc\x9f\xa2\xbe\x74\xad\x4b\x89\x8f\x9a\x4a\xd9\x25\xce\x25\xbb\x41\x6a\xb3\x67\x13\xf4\x93\x85\xa5\x2c\x98\x48\x5c\xa9\xea\x54\xd7\xa8\x34\xdb\xfe\x27\x4c\x31\xef\xe8\xfd\x0b\x00\x00\xff\xff\xec\x44\xa8\x4d\x93\x04\x00\x00" func lockedtokensStakerGet_staker_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -4279,11 +4280,11 @@ func lockedtokensStakerGet_staker_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/get_staker_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x12, 0x2d, 0x71, 0xfd, 0xfb, 0x2c, 0xe0, 0x95, 0x39, 0x71, 0xb4, 0xb2, 0xbe, 0x29, 0xf5, 0x53, 0xef, 0xa9, 0xc4, 0x22, 0x24, 0xed, 0x2b, 0x64, 0x26, 0xca, 0xb9, 0xaa, 0x28, 0xf8, 0xf4, 0xf9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0xbf, 0x4c, 0xa8, 0x6, 0x7d, 0xbb, 0x2b, 0x3, 0xaf, 0x56, 0xe3, 0x7e, 0xbb, 0xbc, 0x9c, 0x5a, 0x1a, 0xff, 0xe0, 0x27, 0xb6, 0x9a, 0xbe, 0xcc, 0x6d, 0x18, 0x3c, 0x9f, 0x81, 0xe8, 0x89}} return a, nil } -var _lockedtokensStakerRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x51\x4f\xdb\x30\x10\x7e\xcf\xaf\xb8\xe5\x01\x25\x52\x09\x2f\xd3\x34\x45\x74\x08\x36\xa1\xa1\x4d\x0c\x8d\xc1\x9e\xdd\xe4\x92\x5a\x75\xed\xc8\xb9\xac\x45\x55\xff\xfb\xe4\xd8\x49\xec\x16\x36\x5e\xe8\x03\x49\xee\x3e\x7f\x77\xdf\xf9\x3b\xf8\xba\x51\x9a\xe0\x5a\xa8\xcd\x2f\xb5\x42\x09\x95\x56\x6b\x88\xc7\xef\x38\x1a\x10\x9d\xac\xf9\x42\x60\x80\xf2\x63\x23\xf2\xbb\x2a\x56\x58\xf6\xb1\xd6\x01\xfd\xd0\x88\xbb\x27\xb6\xe2\xb2\xbe\xd3\x6a\xfb\xe4\x70\x7e\x28\x8e\x22\xd2\x4c\xb6\xac\x20\xae\x64\xc2\xcb\x1c\xee\x49\x73\x59\xcf\x40\x2b\x81\x39\x3c\xdc\x48\xfa\x38\x03\x89\xb4\x51\xda\x1c\xbb\x2c\x4b\x8d\x6d\x3b\xe1\xa6\xd4\x37\x7c\x9a\xc2\xad\xad\x12\xc4\xd8\x5a\x75\x92\x72\x78\xb8\xe6\xdb\x0f\xef\x53\xd8\x45\x11\x00\x80\x40\x82\xa5\x12\x25\xea\x9f\x58\xe5\xc0\x3a\x5a\x26\xbe\x98\xac\x7f\xfc\x68\x50\x33\xd3\x65\x3b\x0b\xe7\x94\xfd\xe6\xb4\x2c\x35\xdb\xa4\x70\x72\x7c\xec\x6b\x4f\x3c\x15\xfa\xc3\x3a\x41\x53\x9d\x17\x99\xc6\xcb\xc9\x1e\xcd\x09\x4b\xd0\x68\x6c\x98\xc6\x84\x15\x85\x55\xd2\x73\x5c\x29\xad\xd5\xe6\x91\x89\x0e\x53\x38\xb9\xb4\x39\xa3\x0e\xdc\xaf\x45\x51\x65\xa3\x42\x98\x83\x3b\x9f\xb5\xa4\x34\xab\x31\x5b\xf4\x0c\xe7\x6f\xa1\xfc\x53\x62\x6e\x3d\x87\x97\xf2\xf7\xb6\x85\x3b\x46\xcb\x74\x6c\xd8\xfc\x2e\x2e\xa0\x61\x92\x17\x49\xfc\x59\x75\xa2\x04\xa9\x08\x6c\x9f\xa0\xb1\x02\x52\xe0\xb1\xc4\x69\x14\xaa\x1d\xc6\xfc\x1f\xb1\xaf\x1d\xff\xa0\xe2\xcc\x91\x9c\x55\x43\xbe\x4f\xbf\xba\x73\x73\x0c\xa8\xdf\xae\xbe\x43\x23\x05\x35\xca\x02\x63\xcb\xb1\xb7\x3a\x70\x8b\x45\x47\xe8\xdd\xa1\xf1\x8e\x54\x25\xde\xc8\x4a\xc1\x3c\xd8\xab\xec\xd6\xc5\x13\xaf\x8d\x1e\xfb\x25\x07\x5e\xce\xbc\xa8\x5d\x2a\xf3\xd7\x8f\x3e\xb3\x5d\x47\xa1\xe7\xf1\xfd\x7a\x05\x9f\x3e\xce\xdf\xc1\xe9\x7d\x04\x78\x77\x66\xd4\x89\xde\x21\x57\x4c\x30\x59\x20\xcc\x0f\x5c\x9b\xd5\x48\xd6\x43\xce\xe0\x0e\x98\x78\x2c\xbc\x72\x2b\x0e\xe7\xf3\x03\xba\x5d\x14\x5c\xd1\x01\x77\xa1\x91\x11\x9a\x31\x9a\xb9\xa2\x4e\x86\x49\xe7\xe3\xcc\xa7\xff\x1e\xf6\xe9\x95\xdd\x03\x8a\x16\x4d\xf5\x24\x71\xf5\x4f\xc3\xf2\xa9\x69\x28\xf0\x65\xb6\x18\x32\xff\xee\xac\xc4\x46\xb5\x9c\x9c\xfd\xce\x4f\x43\x92\x8d\x33\x6c\x12\xf6\x76\x54\x3e\x7d\x7b\xf5\xbb\xa0\x82\xf3\xff\xad\x22\x40\xa9\xba\x7a\x69\x4d\xdf\x9a\xb5\x35\x4e\xc0\x77\xf1\xb4\x33\xfb\xf1\xcd\xad\xc0\x3e\xfa\x1b\x00\x00\xff\xff\x8e\x3f\xa9\xa3\xb2\x06\x00\x00" +var _lockedtokensStakerRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\xcd\x8e\xda\x4c\x10\xbc\xfb\x29\xfa\xe3\xf0\xc9\x48\xbb\xde\x1c\xa2\x28\xb2\x20\x2b\xb2\x40\x82\x40\x80\x30\x9b\x9f\xe3\xac\xdd\x06\x0b\x33\x8d\xc6\xed\xc0\x0a\xf1\xee\xd1\x78\x6c\xec\x01\x36\xca\x25\x3e\xf8\xa7\xbb\xdc\x55\x53\x53\x93\x6c\x77\xa4\x18\x86\x29\xed\x97\xb4\x41\x09\xb1\xa2\x2d\xbc\x3b\x0c\x27\xb3\xef\xcb\xd9\x78\x30\xed\xf5\xfb\x8b\x41\x10\x38\x25\x70\x42\xe1\x06\xa3\x02\x9a\x55\xd8\xc9\xec\x69\x3c\xe8\xdf\x42\x07\x2c\x36\x89\x5c\xcd\x15\x1d\x5e\x2b\x74\xb0\xec\x8d\x47\xd3\x2f\xf3\xc5\xec\xc7\xcf\x0a\xee\xb0\x12\x32\x13\x21\x27\x24\xdd\x24\xf2\x21\x60\x95\xc8\xd5\x1d\x28\x4a\xd1\x87\xe7\x91\xe4\x8f\x77\x20\x91\xf7\xa4\xf4\xc0\x5e\x14\x29\xcc\xb2\x1a\x57\xb7\xc6\xf8\x5a\x97\x33\xc3\x6f\xd5\xc4\x96\x72\xc9\x3e\x3c\x0f\x93\xc3\x87\xf7\x6d\x38\x3a\x0e\x00\x40\x8a\x0c\x6b\x4a\x23\x54\x0b\x8c\x7d\xf8\xbf\xb9\x50\xaf\x78\x7c\x2d\xba\x35\xfa\x97\xc8\x53\x36\xe0\xb3\x7d\xde\x37\x5d\x34\x98\x9d\xc2\x9d\x50\xe8\x8a\x30\x34\x8c\xbd\x9c\xd7\x3d\xf3\xa1\x69\xa1\xbc\x32\x4c\x63\xef\x4c\x0d\x5d\x28\x7f\xf0\x5e\x48\x29\xda\x77\xde\x94\xf2\xc9\xd5\x96\xfa\xf0\x56\x3f\x60\x52\x62\x85\x73\xc1\xeb\xf6\x99\x4d\x5f\x8f\x8f\xb0\x13\x32\x09\xdd\xd6\x13\xe5\x69\x04\x92\x18\x0c\x19\x28\x8c\x81\x09\x1a\x53\x5a\x6d\xc7\x96\x5a\xad\xfb\x86\xd2\x0b\x1f\x2a\x81\x0f\x99\x51\xf2\x10\x57\xfd\xa2\xfd\xd7\xa2\xf4\x6f\xc0\x45\x3c\x0b\x72\xad\x12\x15\xca\x10\x5b\x66\xc6\xc9\x48\xc4\x03\x86\x39\x63\xc3\x5b\xbd\x4f\x92\x22\x1c\xc9\x98\xa0\x6b\xe5\xd1\x9b\x96\x75\xb7\x00\xf4\x7d\x48\xa2\x2a\x70\xfa\x7e\x33\x6f\x57\xa5\xab\xe8\x59\x9f\x76\x02\xeb\xf7\x86\xa5\x5a\x61\x5a\x6c\xe0\x67\x91\x0a\x19\x22\x74\x2f\x12\xe1\xad\x90\xcd\x16\x97\xe1\x29\x81\x6e\x63\x4a\x12\x97\xb9\x86\x4e\xf7\x62\xdc\xd1\xb1\x6c\xbe\x98\x1d\x2a\x14\x8c\xda\x0a\xed\x0d\x2a\xb7\x72\xcb\x3f\xfb\x56\x1f\x19\xf3\x6c\xd0\x9e\x00\xd3\x0c\x35\xbb\xeb\x96\xfc\xf7\x36\x7d\x5b\x0b\xb2\x62\xe3\xbd\x54\x9d\x3f\x2b\x8b\x70\x47\x59\xc2\x65\x84\x3a\xf7\xf6\x90\x7d\xc2\xeb\x48\x89\xbd\x6b\x6b\xbb\xa2\x6f\xff\xfb\xd5\x1f\x2d\x86\x32\xc3\x53\x62\x40\x49\xf9\x6a\x6d\x82\x9b\xe9\x53\xa5\x03\x80\xff\xb5\xea\xdc\x9f\xce\x6f\x65\x8c\x4f\xce\xef\x00\x00\x00\xff\xff\x93\x3a\x5c\xc0\x91\x05\x00\x00" func lockedtokensStakerRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -4299,11 +4300,11 @@ func lockedtokensStakerRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdb, 0x99, 0x9d, 0x62, 0xc7, 0xa4, 0x1f, 0xa9, 0x34, 0x1a, 0x76, 0xe, 0xd5, 0x14, 0x51, 0x9d, 0x15, 0xbc, 0xd1, 0x4, 0x50, 0x20, 0xe8, 0x57, 0xf2, 0xc4, 0xd8, 0xe, 0x23, 0x49, 0x96, 0xfe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x35, 0x10, 0x94, 0x2e, 0xaa, 0x18, 0xe0, 0x8d, 0x21, 0x58, 0x32, 0x92, 0xf5, 0xdf, 0x2f, 0xa3, 0x89, 0xdd, 0x37, 0x8e, 0x2a, 0xd2, 0x49, 0x8f, 0x30, 0x28, 0x1c, 0xcf, 0x93, 0x26, 0xe1, 0x4d}} return a, nil } -var _lockedtokensStakerRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x43\x0e\x25\x01\xc9\x49\x3c\x14\x6b\x51\xa1\x78\x10\x2c\xd6\xea\x79\x9a\x4c\x9a\x90\x74\x27\xce\xce\xd2\x8a\xf4\xbf\x4b\xb2\x31\x4d\x15\x8f\xee\x65\x61\xf6\xcd\x9b\x8f\xb7\x53\xee\x1a\x16\x85\x47\x4e\x2b\xca\x5e\xb8\x22\x63\x21\x17\xde\x41\x38\x2e\x85\x41\xaf\x5b\x29\x56\xa5\xd9\x2e\x85\x0f\x1f\xbd\x6e\x5c\x1a\x74\x0b\x67\xb6\xe5\xa6\xa6\xae\xbd\x17\x9e\xd5\xc2\x20\x50\x41\x63\x31\xd5\x92\x4d\x84\x3b\x76\x46\xa7\xb0\x5e\x94\x87\xab\xcb\x18\x3e\x83\x00\x00\xa0\x26\x85\x82\xeb\x8c\xe4\x99\xf2\x29\xa0\xd3\x22\x1a\x73\x25\xdd\xf5\xd4\x90\x60\x6b\x63\x2f\xce\x07\x27\x6f\xa5\x16\x99\xe0\x3e\x86\xc9\xef\xb6\x87\xce\xd8\x0f\x6a\x84\x1a\x14\x8a\x30\x4d\x3d\x48\x37\xea\x8e\x45\x78\xff\x8a\xb5\xa3\x18\x26\xb7\xfe\xad\x85\x83\xfe\x58\xaa\xf3\x64\x00\x84\x19\xf4\xfd\x89\x55\x16\xdc\x52\xb2\xe9\x1c\xae\xff\x03\xfc\x26\x6a\x63\x9d\xc2\x5f\xef\x2b\x8f\xb0\x44\x2d\xe2\x01\xb8\x3d\xf3\x39\x34\x68\xca\x34\x0a\xef\xd9\xd5\x19\x18\x56\xf0\x9c\x20\x94\x93\x90\x49\x09\x94\x61\xe4\x15\x7a\x87\xa3\x0f\x8b\x0e\x94\x3a\xa5\x51\x0e\xed\x3f\x59\xc5\x8a\xc4\x6f\xc6\xec\x47\x32\x7d\x0e\xab\x4e\x12\xc5\xc1\x29\xc0\x53\x53\x22\xf4\xee\xc8\xea\xda\x58\xbf\x51\xc3\x52\xf8\xfb\x1b\xe1\x18\x7c\x05\x00\x00\xff\xff\x8c\x90\x77\x98\xb4\x02\x00\x00" +var _lockedtokensStakerRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4d\x6b\xf2\x40\x10\xc7\xef\xfb\x29\x06\x0f\x0f\xf1\x12\x9e\x43\xe9\x41\x6a\x25\xa8\x7d\x41\x51\x71\x15\xda\xe3\x76\x9d\x68\x48\xdc\x49\x67\x27\x34\xa5\xf8\xdd\x4b\xdc\xf8\x42\xc1\xbd\x0c\xcb\xfc\xe7\x3f\xf3\x9b\xc9\xf6\x25\xb1\xc0\x94\x6c\x8e\x9b\x15\xe5\xe8\x3c\xa4\x4c\x7b\xf8\x5f\x4f\xe7\xc3\xc9\x78\xb4\x9a\x4f\xc6\xb3\x64\x34\x5a\x8e\xb5\x56\xad\x5a\x8b\xc9\x33\xb7\x5d\x30\xd5\xdf\x27\xb5\x5e\x25\x93\xd7\xd9\xf3\x62\x39\x7f\x7b\x3f\xc9\x95\xb0\x71\xde\x58\xc9\xc8\x45\x66\x4f\x95\x93\x1e\xac\x9f\xb2\xfa\xfe\xae\x0b\x3f\x4a\x01\x00\x14\x28\xb0\xa3\x62\x83\xbc\xc4\xb4\x07\xff\xae\x27\x89\x8f\xe1\xe5\x98\x0d\xea\x92\xb1\x34\x8c\x91\xb1\x36\xb8\x25\x95\xec\x92\xf0\x69\x2c\xa1\x7d\x1e\x8b\x34\x3e\xdb\x42\x1f\xda\x82\xf8\x83\x98\xe9\xeb\xe1\x66\x9b\xc7\xa8\xe1\xe9\xc1\xad\xbc\x16\x62\xb3\xc5\x85\x91\x5d\xf7\xdc\xad\x79\x83\x01\x94\xc6\x65\x36\xea\x0c\xa9\x2a\x36\xe0\x48\x20\x34\x03\xc6\x14\x19\x9d\x45\x10\x82\x2b\xaf\x4e\x70\x38\x04\x34\xac\xd1\x56\x82\x57\x10\xcd\x6a\xbc\x98\x1c\x39\x6c\xba\xff\x07\xab\x85\xd1\x47\x49\xd4\x55\x17\xfa\x4b\x51\xcc\xf8\x59\xa1\x97\xb5\xf3\xe1\x68\xe7\x3b\x84\x78\x1a\xe1\xa0\x7e\x03\x00\x00\xff\xff\x5f\x78\x28\xec\x0a\x02\x00\x00" func lockedtokensStakerRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -4319,11 +4320,11 @@ func lockedtokensStakerRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x43, 0x96, 0xc0, 0xc3, 0xf5, 0xcd, 0xe1, 0xb9, 0xfa, 0x2f, 0x25, 0x5a, 0x6c, 0x3b, 0x3d, 0xc4, 0x1a, 0xa9, 0x3, 0x7c, 0x91, 0xfe, 0x22, 0x28, 0x3c, 0xb9, 0x98, 0x62, 0xb4, 0xd0, 0xb2, 0xbf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x58, 0x89, 0x50, 0xca, 0x45, 0x71, 0x4e, 0x85, 0xb7, 0xbe, 0xb5, 0xb7, 0x66, 0xdb, 0x88, 0x48, 0xdf, 0xfa, 0x85, 0x70, 0x19, 0xa4, 0x67, 0x61, 0xc2, 0x33, 0xc, 0xc5, 0x1, 0xea, 0xd4, 0xb9}} return a, nil } -var _lockedtokensStakerStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x8b\xdb\x30\x10\xbd\xfb\x57\x4c\x7d\x58\x6c\xe8\x7a\x2f\xa5\x87\x90\x74\xe9\x16\x96\x1e\xca\x76\x69\xda\xed\x59\xb1\xc7\x1f\x44\x91\x8c\x34\x6e\x52\x42\xfe\x7b\xd1\x87\x1d\xc9\x61\x69\x28\xd4\x17\x25\x9a\x37\x6f\xe6\xcd\x1b\x75\xbb\x5e\x2a\x82\x47\x2e\xf7\xdf\xe5\x16\x05\xd4\x4a\xee\x20\x9d\xfe\xa7\xc9\x88\x18\x44\xd3\x6d\x38\x46\xa8\xf0\x6e\x42\x7e\x91\xe5\x16\x2b\x7b\xa7\x3d\x30\xbc\x9a\x70\x6b\x62\xdb\x4e\x34\xcf\x4a\x1e\x7e\x7b\x5c\x78\x95\x26\x09\x29\x26\x34\x2b\xa9\x93\x22\x63\x3b\x39\x08\x5a\xc0\x8f\xc7\xee\xf0\xfe\x5d\x0e\xc7\x24\x01\x00\xe0\x48\xd0\x4a\x5e\xa1\xfa\x86\xf5\x02\xd8\x40\x6d\x16\x56\x2b\xec\xf1\xb5\x47\xc5\x0c\x8d\x7e\x1b\x0b\x29\x7e\x76\xd4\x56\x8a\xed\x73\xb8\xb9\x4c\xfb\x6c\x89\xcf\x85\x7e\xb1\x81\xd3\xb9\xce\xab\x4c\xd3\xf4\x8a\x17\x93\xe1\x08\x7a\x85\x3d\x53\x98\xb1\xb2\x74\x4a\x2c\xc7\x83\x54\x4a\xee\x5f\x18\x1f\x30\x87\x9b\x8f\x2e\x66\xd4\x81\xff\x34\xf2\xba\x98\x14\xc2\x0a\x7c\x7e\xa1\x49\x2a\xd6\x60\xb1\xb1\x0c\xcb\xff\xa1\xfc\x43\x66\x6c\x59\xc0\x6b\xf1\xb5\x6b\xe1\x99\x51\x9b\x4f\x0d\x9b\xef\xfe\x1e\x7a\x26\xba\x32\x4b\x3f\xc9\x81\x57\x20\x24\x81\xeb\x13\x14\xd6\xa8\x50\x94\x08\x24\x21\xe0\x4a\xf3\x24\xd6\x3c\x0e\xfb\x2f\x92\xaf\x35\x61\xd4\x72\xe7\x49\xee\xea\x31\x6e\xc3\x57\xf7\x6f\xd2\x80\xec\x23\xb0\x1d\x9e\x05\xa5\x8e\xe3\xe4\x74\xe0\x01\xcb\x81\x30\x70\xd2\x6c\x90\x26\xb6\x45\xe5\x56\x7e\x35\xf3\xd6\xcb\x5a\x5b\x48\x16\x8c\xc3\x24\x72\x6b\xc1\x03\xe3\xcc\x8c\xee\x22\xb5\x41\x72\x26\xf9\x0d\xf2\xc0\x90\xa5\xab\xc1\xbd\x21\x58\xae\x66\x74\xc7\x24\x52\x1f\x34\x59\xd8\xdf\x4f\xe8\x26\xa5\xa7\x57\xe8\xce\x80\xfd\x04\xc8\x35\x9a\x22\x99\x07\xc1\x6d\x5c\x25\x37\x75\x23\x67\x8b\xcd\x18\x99\x37\x10\x8b\xab\xb0\x97\xba\x23\x6f\xe0\xf2\x36\x26\xd9\x7b\xcb\x67\xbd\x5d\x94\xcf\xff\x59\x64\x98\x36\x17\x7c\x8c\xa2\x7e\x69\x9e\x24\x01\x0a\x39\x34\xad\xdb\x14\x6d\x76\xdd\x16\x79\x93\x9e\xe9\x4e\x7e\x5d\x4e\xc9\x9f\x00\x00\x00\xff\xff\x73\x2a\x82\xe7\x85\x05\x00\x00" +var _lockedtokensStakerStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\x4d\x6f\xda\x40\x10\xbd\xfb\x57\x4c\x39\x54\xe6\x10\xa7\x87\xaa\x87\x08\x1a\x91\x00\x69\x04\x32\x08\x93\x7e\x1c\x17\x7b\xfc\x21\x96\x5d\x6b\x3d\x2e\x54\x88\xff\x5e\xed\xae\x6d\x6c\x27\x91\xaa\xfa\x62\xf0\xbc\x79\xef\xcd\xcc\xcb\x0e\xb9\x54\x04\x73\x2e\x8f\x5b\xb9\x47\x01\xb1\x92\x07\xf8\x74\x9a\x2f\x57\x3f\xb6\xab\xc5\xcc\x9f\x4c\xa7\x9b\x59\x10\x38\x35\xb0\x14\x49\xb6\xe3\xd8\x05\xbf\xf8\x4f\xcf\x0f\xcb\x59\xa7\xa1\xee\x58\xca\x70\x8f\x91\xc1\x17\x75\xc3\x72\xf5\xb8\x98\x4d\xdf\xe2\x0f\x88\xed\x33\x91\xac\x95\x3c\xfd\xa9\xd1\xc1\x76\xb2\x78\xf6\x9f\xd6\x9b\xd5\xcf\x5f\x0d\x3b\x29\x26\x0a\x16\x52\x26\x85\xcb\x0e\xb2\x14\x74\x07\x2f\xf3\xec\xf4\xe5\xf3\x10\xce\x8e\x03\x00\xc0\x91\x20\x95\x3c\x42\xb5\xc1\xf8\x0e\x3e\xb6\x9d\x78\xe6\xf5\xcd\x54\xaf\xe8\xdf\xac\xe4\x64\xc1\xcd\x46\xbc\xef\xfa\xa3\xc5\xe4\x0a\x73\xa6\xd0\x65\x61\x68\x15\x27\x25\xa5\x13\xfb\x47\xcb\x42\xf5\x14\xc8\x63\xaf\x91\x86\x31\x54\x0d\xde\x4e\x2a\x25\x8f\xa3\x77\xad\x7c\x75\xf5\xcc\x77\xf0\x5e\x3d\x20\xa9\x58\x82\x6b\x46\xe9\xb0\x51\xd3\xcf\xfd\x3d\xe4\x4c\x64\xa1\x3b\x78\x94\x25\x8f\x40\x48\x02\x2b\x06\x0a\x63\x54\x28\x42\x04\x92\xd0\xe2\x1a\x0c\x9d\xae\xe1\x7a\xfa\x37\xfc\xf6\xb6\x51\xdb\xbc\x2d\xac\x9f\xdb\xb8\xae\x9b\xf2\x3f\x5b\xd3\x6d\x40\x26\x4a\x46\xfc\xea\x75\x60\x39\x2e\xd6\x22\x9e\x30\x2c\x09\x5b\x1b\xd6\xd7\x2a\x88\xed\x51\xd9\xa8\x8c\x7b\x3b\xaf\x9c\x07\x06\xe2\xb6\x26\xd5\x8d\xdc\x6c\xf7\x81\x71\xa6\xb7\xf2\xaa\x35\x41\xb2\xfb\xaf\x2e\x5b\x01\xdb\x2c\x59\x0c\x36\x74\x30\x1a\xf7\xe8\xce\x4e\x67\xfa\x96\x49\xcf\xfc\xf6\xd1\x6e\xaa\x68\x62\x6b\xdf\x2d\xf6\x0b\x20\x2f\x50\x8b\xb8\x15\x08\x6e\xba\x2a\x43\xad\xdb\x39\x9a\xb7\xab\x2b\x7d\x03\xdd\xe1\x22\xcc\x65\x91\x51\x75\xc0\xd1\x4d\x97\xe4\x98\x51\x1a\x29\x76\xec\x79\x7b\x25\x3f\xfc\xef\x21\xdb\x6d\xfd\x81\xcf\x9d\x6a\x15\x1a\x5f\x12\xa0\x90\x65\x92\xda\xa4\x14\x3a\xc6\x46\xe4\xc3\xe0\x4a\x77\xa9\xe2\x72\x71\xfe\x06\x00\x00\xff\xff\x31\x42\x9b\x1e\xd2\x04\x00\x00" func lockedtokensStakerStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4339,11 +4340,11 @@ func lockedtokensStakerStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0x94, 0xa9, 0xe1, 0x94, 0x21, 0x96, 0x84, 0xaa, 0x9a, 0xa0, 0xb6, 0xdb, 0x1c, 0x29, 0x14, 0x18, 0x54, 0xdd, 0x63, 0xda, 0x32, 0x1c, 0xa8, 0xae, 0xbc, 0x10, 0x74, 0xb7, 0x33, 0xdf, 0x90}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf9, 0x76, 0x5e, 0x6f, 0x41, 0xe5, 0xe9, 0x35, 0x96, 0x1e, 0x65, 0x98, 0x9a, 0x42, 0xc8, 0xf6, 0xca, 0x37, 0x27, 0x38, 0x8d, 0x70, 0xfb, 0x14, 0xf8, 0xe, 0x2b, 0x5c, 0xca, 0xd4, 0x80, 0x73}} return a, nil } -var _lockedtokensStakerStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x6b\x83\x40\x10\xc5\xef\x7e\x8a\xc1\x43\x50\x28\x9e\x4a\x0f\xa1\x69\x68\x0b\xa1\x87\x42\x43\xd2\x3f\xe7\x89\x8e\x71\xd1\xec\xc8\x38\x92\x94\x92\xef\x5e\xdc\x35\xc6\xb4\xf4\xd8\xbd\xac\xcc\xbe\x79\xf3\xf3\xed\x9a\x5d\xcd\xa2\xf0\xcc\x69\x49\xd9\x2b\x97\x64\x1b\xc8\x85\x77\x10\x8e\x4b\x61\xd0\xeb\xd6\x8a\xa5\xb1\xdb\xa5\xf0\xe1\xb3\xd7\x8d\x4b\x83\x6e\xd1\xda\xad\xd9\x54\xe4\xda\x7b\xe1\x45\x2d\x0c\x02\x15\xb4\x0d\xa6\x6a\xd8\x46\xb8\xe3\xd6\xea\x14\xde\x16\xe6\x70\x73\x1d\xc3\x57\x10\x00\x00\x54\xa4\x50\x70\x95\x91\xac\x28\x9f\x02\xb6\x5a\x44\x63\xae\xc4\x6d\x2f\x35\x09\x76\x36\xcd\xd5\xe5\xe0\xe4\xc3\x68\x91\x09\xee\x63\x98\xfc\x6e\x7b\x72\xc6\x7e\x50\x2d\x54\xa3\x50\x84\x69\xea\x41\xdc\xa8\x07\x16\xe1\xfd\x3b\x56\x2d\xc5\x30\xb9\xf7\x67\x1d\x1c\xf4\xab\xa1\x2a\x4f\x06\x40\x98\x41\xdf\x9f\x34\xca\x82\x5b\x4a\x36\xce\xe1\xf6\x3f\xc0\xef\xa2\x2e\xd6\x29\xfc\x75\xbe\xf6\x08\x4b\xd4\x22\x1e\x80\xbb\x35\x9f\x43\x8d\xd6\xa4\x51\xf8\xc8\x6d\x95\x81\x65\x05\xcf\x09\x42\x39\x09\xd9\x94\x40\x19\x46\x5e\xa1\x77\x38\xfa\xb0\xe8\x40\x69\xab\x34\xca\xa1\xbb\xa7\x46\xb1\x24\xf1\x2f\x63\xf6\x23\x99\x3e\x87\xb5\x93\x44\x71\x70\x0e\xf0\xdc\x94\xb8\xef\x15\xed\x51\xb2\xd3\xff\x0c\xef\xc2\xef\x27\x8a\x63\xf0\x1d\x00\x00\xff\xff\xd0\xbf\x36\xd9\xb7\x02\x00\x00" +var _lockedtokensStakerStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6b\xc2\x50\x0c\xc7\xef\xfd\x2b\x82\x87\x51\x2f\x65\x87\xb1\x83\xcc\x49\x51\xf7\x03\x45\xa5\xcf\xc1\x76\x7c\x7b\x4d\xb5\xb4\xbe\x94\x34\xc5\x8e\xe1\xff\x3e\xda\xd7\xaa\x0c\xcc\x25\x2d\xf9\xe6\x9b\x7c\xf2\xd2\x43\x41\x2c\xb0\x24\x93\x61\xbc\xa5\x0c\x6d\x09\x09\xd3\x01\xee\xeb\xe5\x7a\xba\x98\xcf\xb6\xeb\xc5\x7c\x15\xce\x66\xd1\x5c\x29\xaf\x53\x2b\xd1\x59\x6a\x77\x1b\xa6\xfa\xa7\x57\xab\x6d\xb8\x78\x5f\xbd\x6e\xa2\xf5\xe7\x57\x2f\xf7\x84\xb5\x2d\xb5\x91\x94\xac\xaf\x0f\x54\x59\x19\xc1\xc7\x4b\x5a\x3f\x3e\x0c\xe1\xd7\xf3\x00\x00\x72\x14\xd8\x53\x1e\x23\x47\x98\x8c\xe0\xee\x7a\x93\xa0\x4d\x6f\x6d\xd5\xa9\x0b\xc6\x42\x33\xfa\xda\x18\xe7\x16\x56\xb2\x0f\xdd\x4f\x63\x09\x5d\x94\x98\x27\xc1\xd9\x16\xc6\xd0\x35\x04\xdf\xc4\x4c\xc7\xa7\x9b\x63\x9e\xfd\x86\x67\x04\xb7\xea\x4a\x88\xf5\x0e\x37\x5a\xf6\xc3\xf3\xb4\x26\x26\x13\x28\xb4\x4d\x8d\x3f\x98\x52\x95\xc7\x60\x49\xc0\x0d\x03\xc6\x04\x19\xad\x41\x10\x82\x2b\xaf\x81\x73\x38\x39\x34\xac\xd1\x54\x82\x57\x10\xcd\x69\x4a\xd1\x19\xb2\xbb\xf4\xf8\x1f\x56\x07\xa3\x5a\x89\x3f\xf4\x2e\xf4\x97\xa6\xa0\xfd\x8e\xf0\xa8\x39\xee\x79\xce\x4f\xe1\x72\xbf\xc5\xc9\xfb\x0b\x00\x00\xff\xff\x4c\x01\x8a\x3b\x0d\x02\x00\x00" func lockedtokensStakerStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4359,11 +4360,11 @@ func lockedtokensStakerStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0xa0, 0x71, 0x36, 0x7, 0x30, 0xc6, 0x7b, 0x66, 0x12, 0xac, 0xed, 0xc2, 0xbc, 0x68, 0x9a, 0xe6, 0xbd, 0xa3, 0x1, 0xa2, 0x22, 0x15, 0xe4, 0xda, 0xdd, 0xae, 0xe4, 0x5c, 0xa2, 0x96, 0x31}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2d, 0x5f, 0x47, 0xa5, 0x4b, 0xa0, 0x20, 0x8f, 0xd4, 0xc8, 0xff, 0x36, 0x18, 0xd, 0x76, 0xea, 0x11, 0x69, 0x2a, 0x66, 0x7f, 0xb9, 0xbb, 0xec, 0x61, 0xba, 0x59, 0xc0, 0x50, 0x23, 0xa6, 0x12}} return a, nil } -var _lockedtokensStakerStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6b\xe3\x40\x0c\x85\xef\xfe\x15\xc2\x87\x60\xc3\xe2\xd3\xb2\x87\xb0\xd9\xb0\x2d\x84\x1e\x0a\x0d\x4d\xd3\x9e\x15\x5b\x8e\x07\x3b\x23\x23\xcb\x24\xa5\xe4\xbf\x17\xcf\x4c\x1d\xa7\xa5\xc7\xce\x45\x41\xf3\xf4\xf4\xe5\x79\xcc\xa1\x65\x51\xb8\xe7\xbc\xa6\xe2\x89\x6b\xb2\x1d\x94\xc2\x07\x88\xa7\xad\x38\x0a\xba\x8d\x62\x6d\xec\x7e\x2d\x7c\x7a\x0d\xba\x69\x6b\xd4\xad\x7a\xbb\x37\xbb\x86\xdc\x78\x10\x5e\xf5\xe2\x28\x52\x41\xdb\x61\xae\x86\x6d\x82\x07\xee\xad\xce\x61\xbb\x32\xa7\x3f\xbf\x53\x78\x8b\x22\x00\x80\x86\x14\x2a\x6e\x0a\x92\x47\x2a\xe7\x80\xbd\x56\xc9\x94\x2b\x73\xe5\xa1\x25\xc1\xc1\xa6\xfb\x75\xbd\x38\x7b\x31\x5a\x15\x82\xc7\x14\x66\x5f\xc7\xee\x9c\xb1\x5f\xd4\x0a\xb5\x28\x94\x60\x9e\x7b\x10\xb7\xea\x86\x45\xf8\xf8\x8c\x4d\x4f\x29\xcc\xfe\xfb\xbb\x01\x0e\xc2\xe9\xa8\x29\xb3\x11\x10\x16\x10\xe6\xb3\x4e\x59\x70\x4f\xd9\xce\x39\xfc\xfd\x09\xf0\x7f\xc9\x10\xeb\x1c\xbe\xbb\xdf\x78\x84\x35\x6a\x95\x8e\xc0\xc3\x59\x2e\xa1\x45\x6b\xf2\x24\xbe\xe5\xbe\x29\xc0\xb2\x82\xe7\x04\xa1\x92\x84\x6c\x4e\xa0\x0c\x13\xaf\xd8\x3b\x9c\x7d\x58\x74\xa2\xbc\x57\x9a\xe4\x30\x7c\xa7\x4e\xb1\x26\xf1\x2f\x63\xf1\x29\x99\x90\xc3\xc6\x49\x92\x34\xba\x04\x78\x19\xca\xdc\xef\xad\x75\x25\xfc\x9f\xf1\x5d\xf8\xfa\x41\x71\x8e\xde\x03\x00\x00\xff\xff\xff\x8b\x86\xf7\xb7\x02\x00\x00" +var _lockedtokensStakerStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6a\xc2\x40\x10\xc6\xef\xfb\x14\x83\x87\x12\x2f\xa1\x87\xd2\x83\xd4\x4a\x50\xfb\x07\x45\xc5\x55\x68\x8f\xdb\x75\xa2\x21\x71\x27\x4c\x26\x34\xa5\xf8\xee\x25\xd9\xa8\xa1\xe0\x5c\x26\x61\xbe\xf9\x66\x7e\xb3\xc9\x31\x27\x16\x98\x93\x4d\x71\xb7\xa1\x14\x5d\x01\x31\xd3\x11\xee\xab\xf9\x72\x3c\x9b\x4e\x36\xcb\xd9\x74\x11\x4d\x26\xeb\xa9\xd6\xaa\x55\x6b\x31\x69\xe2\xf6\x2b\xa6\xea\xe7\xac\xd6\x9b\x68\xf6\xbe\x78\x5d\xad\x97\x1f\x9f\x67\xb9\x12\x36\xae\x30\x56\x12\x72\x81\x39\x52\xe9\x64\x00\xdb\x97\xa4\x7a\x7c\xe8\xc3\xaf\x52\x00\x00\x19\x0a\x1c\x28\xdb\x21\xaf\x31\x1e\xc0\x5d\x77\x93\xb0\x49\x6f\x4d\xd5\xab\x73\xc6\xdc\x30\x06\xc6\x5a\xef\x16\x95\x72\x88\xfc\x4f\x6d\x09\x6d\x14\x98\xc5\xe1\xc5\x16\x86\xd0\x36\x84\x5f\xc4\x4c\xdf\x4f\x37\xc7\x3c\x07\x35\xcf\x00\x6e\xd5\xb5\x10\x9b\x3d\xae\x8c\x1c\xfa\x97\x69\x75\x8c\x46\x90\x1b\x97\xd8\xa0\x37\xa6\x32\xdb\x81\x23\x01\x3f\x0c\x18\x63\x64\x74\x16\x41\x08\x3a\x5e\x3d\xef\x70\xf2\x68\x58\xa1\x2d\x05\x3b\x10\xf5\x69\x0a\x31\x29\xb2\xbf\xf4\xf0\x1f\x56\x0b\xa3\x1b\x49\xd0\x57\x57\xfa\x6b\x53\xd8\x7c\x6f\x5d\x93\x5a\x9e\xcb\x53\xf8\x7c\xde\xe2\xa4\xfe\x02\x00\x00\xff\xff\x63\x35\x3a\x15\x0d\x02\x00\x00" func lockedtokensStakerStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4379,11 +4380,11 @@ func lockedtokensStakerStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x12, 0xf1, 0x86, 0x58, 0x5d, 0x91, 0x7f, 0x1a, 0x15, 0x92, 0xc5, 0xf3, 0xa7, 0xa6, 0xd3, 0x7a, 0x72, 0xd0, 0x90, 0x7c, 0xc2, 0x70, 0x26, 0x1f, 0xbc, 0xcf, 0x67, 0xa, 0x38, 0x17, 0x82, 0xc7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0x1d, 0x1, 0x11, 0xf9, 0x79, 0xef, 0xb3, 0xce, 0x49, 0x93, 0x62, 0xfc, 0x29, 0x5c, 0xc2, 0x92, 0xc4, 0xa4, 0xc9, 0x40, 0x13, 0x75, 0x6, 0x2a, 0xf, 0x2c, 0x4e, 0x71, 0xae, 0x7e, 0xb2}} return a, nil } -var _lockedtokensStakerUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x51\x4d\x4b\xf3\x40\x10\xbe\xef\xaf\x18\x72\x28\x1b\x78\xc9\x0f\x28\x6f\x2d\x55\x10\x0f\x82\xc5\x8a\x9e\xa7\x9b\x49\x13\xb2\xdd\x09\x93\x59\x5a\x91\xfe\x77\xc9\x87\x6d\xaa\x78\x74\x2e\x21\x33\xcf\x17\xcf\x56\xfb\x86\x45\xe1\x91\x5d\x4d\xf9\x0b\xd7\x14\x5a\x28\x84\xf7\x90\x4c\x57\x89\x19\x71\xf7\x31\xec\xaa\xad\xa7\x7e\x3d\x02\xaf\x76\x89\x31\x2a\x18\x5a\x74\x5a\x71\xb0\x29\x7c\x18\x03\x00\xe0\x49\xa1\x64\x9f\x93\x3c\x53\x31\x07\x8c\x5a\xda\xa9\x43\xd6\x7f\x9e\x1a\x12\xec\x88\xed\xbf\x6b\xab\xec\xad\xd2\x32\x17\x3c\xa4\x30\xfb\x49\x7b\xe8\x85\x07\xa3\x46\xa8\x41\x21\x8b\xce\x71\x0c\x3a\x5a\xdd\xb2\x08\x1f\x5e\xd1\x47\x4a\x61\xb6\x1a\x6e\x5d\x38\x18\xa7\x25\x5f\x64\xe7\x80\xb0\x80\x91\x9f\xb5\xca\x82\x3b\xca\xb6\xbd\xc2\xff\xbf\x08\x7e\x63\xbb\x22\xe7\xf0\xdb\x7d\x33\x44\x58\xa3\x96\xe9\x39\x70\x37\xcb\x25\x34\x18\x2a\x67\x93\x3b\x8e\x3e\x87\xc0\x0a\x43\x4e\x10\x2a\x48\x28\x38\x02\x65\x98\x68\x25\x83\xc2\x69\x28\x8b\x8e\xe4\xa2\xd2\xa4\x87\xee\x9d\x5a\xc5\x9a\x64\x2d\x7c\x7c\x87\xc5\xb7\x66\xc6\x1e\x36\x3d\xc4\xa6\xe6\x52\xe0\x85\x94\xc5\xd0\xff\xad\xbc\xb7\x5f\x76\x27\xf3\x19\x00\x00\xff\xff\x30\xca\xb7\x9c\x6a\x02\x00\x00" +var _lockedtokensStakerUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x41\x6b\xfa\x40\x10\xc5\xef\xfb\x29\x06\x0f\x7f\xd6\x4b\xf8\x9f\xa5\x56\x82\x4a\x5b\x14\x15\xd7\x43\x7b\xdc\xae\x13\x0d\x59\x77\xc2\x64\x42\x2d\xc5\xef\x5e\x92\x8d\x1a\x0a\xce\x65\x18\xe6\xcd\x7b\xfc\x26\x3f\x95\xc4\x02\x4b\x72\x05\xee\x77\x54\x60\xa8\x20\x63\x3a\xc1\xff\xf3\x72\x3d\x5d\xcc\x67\xbb\xf5\x62\xbe\x4a\x67\xb3\xed\xdc\x18\xd5\xa9\x8d\xd8\x22\x0f\x87\x0d\xd3\xf9\xfb\xaa\x36\xbb\x74\xf1\xb6\x7a\xd9\x6c\xd7\xef\x1f\x57\xb9\x12\xb6\xa1\xb2\x4e\x72\x0a\x7a\x08\x3f\x4a\x01\x00\x78\x14\x38\x92\xdf\x23\x6f\x31\x1b\xc1\xbf\x7e\x76\xd2\xb6\xd7\x76\x1b\xd5\x25\x63\x69\x19\xb5\x75\x8e\xea\x20\x23\x48\x6b\x39\xa6\x71\x68\x2c\xa1\xab\x0a\x7d\x96\xdc\x6c\x61\x0c\xdd\x41\xf2\x49\xcc\xf4\xf5\xf4\x30\xe6\x59\x37\x04\x23\x78\xb4\x37\x42\x6c\x0f\xb8\xb1\x72\x1c\xde\xd2\x9a\x9a\x4c\xa0\xb4\x21\x77\x7a\x30\xa5\xda\xef\x21\x90\x40\x0c\x03\xc6\x0c\x19\x83\x43\x10\x82\x9e\xd7\x20\x3a\x5c\x22\x1a\x9e\xd1\xd5\x82\x3d\x88\xe6\x35\x95\xd8\x02\x39\xfe\x76\xfc\x07\xab\x83\x31\xad\x44\x0f\xd5\x9d\xfe\x7e\x94\xd4\xa1\x9d\x52\xef\xf5\x35\xee\xa2\x7e\x03\x00\x00\xff\xff\x74\xb5\x4c\x21\xe8\x01\x00\x00" func lockedtokensStakerUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -4399,11 +4400,11 @@ func lockedtokensStakerUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdc, 0xc1, 0xaf, 0x7a, 0x10, 0xfb, 0xfd, 0x3b, 0x33, 0xc6, 0xc6, 0xce, 0xa3, 0x80, 0xcf, 0x7f, 0x17, 0xf2, 0x6f, 0xae, 0x9a, 0xba, 0x53, 0xa9, 0x11, 0x16, 0x37, 0xb0, 0x94, 0xa3, 0x4c, 0x20}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0xd3, 0x2e, 0xa, 0x8e, 0xd8, 0xe4, 0x82, 0xc3, 0xb4, 0xc9, 0x21, 0x28, 0x8, 0x53, 0xa5, 0x6d, 0xb0, 0xa8, 0x9, 0x45, 0xd8, 0x11, 0xf1, 0x8a, 0x70, 0x2d, 0x4f, 0x79, 0x43, 0x3f, 0x86}} return a, nil } -var _lockedtokensStakerUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xcd\x6a\xeb\x30\x10\x85\xf7\x7e\x8a\xc1\x8b\x60\xc3\xc5\x0f\x10\x6e\x6e\xc8\x2d\x94\x2e\x4a\x1b\x9a\xd2\xae\x15\x69\x6c\x0b\x3b\x1a\x33\x1a\xe1\x94\x92\x77\x2f\xb6\xd5\xc4\x69\xe9\xb2\xda\x18\xe6\xe7\x9c\x8f\xe3\xb1\x87\x8e\x58\xe0\x9e\x74\x83\xe6\x99\x1a\x74\x1e\x4a\xa6\x03\xa4\xf3\x52\x9a\xc4\xb9\xdb\xe0\x2a\xbb\x6f\x71\x2c\xc7\xc1\xab\x5a\x9a\x24\xc2\xca\x79\xa5\xc5\x92\xcb\x1c\xf6\x1b\x63\x18\xbd\x5f\xc2\x4e\xd8\xba\x2a\x87\xf7\x24\x01\x00\x68\x51\xa0\xa6\xd6\x20\x3f\x61\xb9\x04\x15\xa4\xce\xe6\x9e\xc5\xf8\x79\xec\x90\xd5\x20\xe5\xff\x5c\x9b\x17\xaf\x56\x6a\xc3\xaa\xcf\x61\xf1\x7d\xed\x6e\x14\x9e\x8c\x3a\xc6\x4e\x31\x66\x4a\x6b\x0a\x4e\xa2\xd5\x7f\x62\xa6\xfe\x45\xb5\x01\x73\x58\x6c\xa6\xde\x00\x07\xf1\x79\x6c\xcb\xe2\x0c\x08\x2b\x88\xfb\x85\x17\x62\x55\x61\xb1\x1f\x15\xfe\xfe\x06\xf8\xbf\x6c\x88\x76\x09\x3f\xf5\x77\x13\xc2\x56\x49\x9d\x9f\x81\x87\xb7\x5e\x43\xa7\x9c\xd5\x59\x7a\x43\xa1\x35\xe0\x48\x60\xe2\x04\xc6\x12\x19\x9d\x46\x10\x82\x99\x56\x3a\x29\x9c\xa6\xb0\xf0\x88\x3a\x08\xce\x72\x18\xfe\x93\x17\xd5\x20\x6f\x99\x8e\x6f\xb0\xfa\x92\x4c\xcc\x61\x37\x8e\x64\x79\x72\x09\xf0\xb2\x54\x84\xce\x28\xc1\x07\x94\x9e\xb8\xb1\xae\x8a\x47\x31\xbb\x8f\x4f\x8a\x53\xf2\x11\x00\x00\xff\xff\x4a\x3a\x43\x6d\x93\x02\x00\x00" +var _lockedtokensStakerUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4d\x8b\xf2\x40\x0c\x80\xef\xf3\x2b\x82\x87\x97\x7a\x29\xef\xb9\xac\x2b\x45\x85\x05\x45\xc5\xfa\x07\x66\x67\xd2\x0f\x5a\x27\x25\x93\xd2\x2e\x8b\xff\x7d\xe9\xc7\x6a\x59\x30\x97\x61\x48\xf2\x64\x9e\x49\x71\xab\x89\x05\x0e\x64\x4a\xb4\x57\x2a\xd1\x79\x48\x99\x6e\xf0\xbf\x3b\x9c\x36\xfb\xdd\xf6\x7a\xda\xef\x8e\xf1\x76\x7b\xd9\x25\x89\x52\xc2\xda\x79\x6d\xa4\x20\x17\x38\x6c\x63\x6b\x19\xbd\x8f\x20\x11\x2e\x5c\xb6\x84\x6f\xa5\x00\x00\x2a\x14\xc8\xa9\xb2\xc8\x17\x4c\x23\xf8\x37\xc7\x87\xc3\xf1\x31\x64\xc7\xea\x9a\xb1\xd6\x8c\x81\x36\x86\x1a\x27\x11\xc4\x8d\xe4\xf1\x78\xe9\x91\x30\x85\xc7\x2a\x0d\x1f\x58\x58\xc1\xd4\x10\x7e\x12\x33\xb5\x6f\x2f\xc7\xbc\x07\xbd\x52\x04\xaf\xf2\x89\x10\xeb\x0c\xcf\x5a\xf2\xe5\x63\x5a\x1f\xeb\x35\xd4\xda\x15\x26\x58\x6c\xa8\xa9\x2c\x38\x12\x18\x87\x01\x63\x8a\x8c\xce\x20\x08\xc1\x8c\xb5\x18\x09\xf7\x51\x0d\x3b\x34\x8d\xe0\x4c\xa2\xff\x1a\x2f\xba\x44\x3e\x33\x75\x5f\xb0\xfa\xa3\x35\xc9\x24\x43\x49\xb0\x54\x4f\xfb\x67\x53\xd8\xd4\x56\x0b\x1e\x51\x5a\xe2\xb2\x70\xd9\xb4\x87\xd9\x4a\x7e\x5f\x71\x57\x3f\x01\x00\x00\xff\xff\x7e\x1e\x81\xca\xe2\x01\x00\x00" func lockedtokensStakerUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -4419,11 +4420,11 @@ func lockedtokensStakerUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7d, 0xe2, 0x2b, 0x45, 0xf7, 0x48, 0x74, 0x1b, 0x7a, 0xf8, 0xba, 0x91, 0x56, 0x13, 0x38, 0x14, 0xae, 0x4d, 0x1c, 0xdf, 0x80, 0xc7, 0x48, 0xcc, 0x45, 0x7d, 0xf9, 0x69, 0x6b, 0xb, 0x49, 0x9f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xda, 0xe7, 0xc1, 0x75, 0xd6, 0x8e, 0x1a, 0x5c, 0xb2, 0x5f, 0xcd, 0xb3, 0x4f, 0xa6, 0x85, 0x5a, 0xd4, 0x54, 0x29, 0x2c, 0x6f, 0x5d, 0x2a, 0xcd, 0x98, 0x25, 0x64, 0x6c, 0xa3, 0xb7, 0x33, 0x8c}} return a, nil } -var _lockedtokensStakerWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xc1\x8e\xda\x30\x10\x86\xef\x79\x8a\x51\x0e\x28\x91\x5a\x73\xa9\x7a\x40\x50\xd4\x56\x42\x3d\x54\x2a\x82\x96\x9e\x4d\x32\x21\x11\xc6\x13\x4d\x1c\xc2\x6a\xc5\xbb\xaf\x62\x3b\x21\x64\x97\xcb\x4a\x9b\x8b\x95\x99\xf1\x3f\xdf\x3f\xe3\xe2\x54\x12\x1b\xf8\x4d\xc9\x11\xd3\xbf\x74\x44\x5d\x41\xc6\x74\x82\x70\x18\x0a\x03\x5f\xb7\x52\xd4\xd8\x90\x2f\xea\xff\x6f\x15\xb5\x3e\x14\x7b\x85\x77\x55\xc3\x58\x18\x04\x86\xa5\xae\x64\x62\x0a\xd2\x91\x3c\x51\xad\xcd\x0c\xfe\xad\x8a\xcb\xd7\x2f\x31\x3c\x07\x01\x00\x80\x42\x03\x39\xa9\x14\x79\x83\xd9\x0c\x64\x6d\xf2\x68\x48\x24\xec\xf1\xa7\x44\x96\xad\x4c\xf5\xe9\xbe\xb1\xf8\x5f\x98\x3c\x65\xd9\xc4\x30\x79\x7d\xed\x97\x15\xee\xfb\x9c\x65\xad\x8c\x6d\x33\xe9\xfd\x88\x5d\x1b\x74\x2c\x25\x63\x29\x19\x23\x99\x24\x8e\xd5\xd2\xfc\x20\x66\x6a\x76\x52\xd5\x18\xc3\xe4\xbb\xcb\xb5\xfc\xe0\xbf\x0a\x55\x26\x7a\x0f\xb0\x00\x7f\x5f\x54\x86\x58\x1e\x50\xec\xad\xc2\xfc\x23\xbc\x7d\x8b\xda\xc9\xcf\xe0\x51\x7e\xeb\x10\xd6\xd2\xe4\x71\x0f\xdc\x7e\xcb\x25\x94\x52\x17\x49\x14\xfe\xa4\x5a\xa5\xa0\xc9\x80\xe3\x04\xc6\x0c\x19\x75\x82\x60\x08\x06\x5a\x61\x1c\xdc\x7b\xee\xe6\xf9\xd8\xf2\x78\xce\x1d\xee\xd4\xd7\x4d\xb3\x2e\x6f\xd3\xef\x43\xbc\xbd\xd5\x73\xbb\xa4\xd0\xa9\x5c\x1d\x2c\x5e\x30\xa9\x0d\x0e\xd6\xd5\xbe\x84\xca\xc8\x23\xf2\x9a\xe9\xf2\x04\x8b\xd1\x02\x3d\xfb\xd6\x96\x44\x43\xcf\xb7\x4b\xa2\xf1\xab\xd9\x60\x23\x39\xed\x26\xdf\x3f\x72\x77\xc6\x6f\x8f\x4b\xa4\x58\x52\x55\x18\x3f\x8b\xf9\xe7\x51\xff\x4e\x7b\xac\xd6\xf9\xba\x06\x2f\x01\x00\x00\xff\xff\x84\xb1\x80\xaf\xcd\x03\x00\x00" +var _lockedtokensStakerWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x4f\x8f\xa2\x40\x10\xc5\xef\x7c\x8a\x8a\x87\x0d\x1c\x16\xf7\xb0\xd9\x83\xd1\x35\xc6\x3f\x99\x44\x33\x1a\x71\x66\xce\x3d\x50\x0c\x44\xa4\x48\x51\x08\x93\x89\xdf\x7d\x02\x0d\x88\x44\x2f\xd3\x97\x0e\xd4\xeb\x7a\xbf\x7a\xdd\xe1\x29\x21\x16\xd8\x90\x7b\x44\xef\x40\x47\x8c\x53\xf0\x99\x4e\xf0\xa7\xd8\x6c\xe7\xeb\xe5\xe2\xb0\x5d\x2f\x9f\x67\x8b\xc5\x7e\xe9\x38\x46\xad\x5e\x45\x94\x57\xda\x46\xba\xda\x6c\xdf\x6e\x84\x86\xb0\x8a\x53\xe5\x4a\x48\xb1\xa9\x4e\x94\xc5\x32\x82\x97\x55\x58\xfc\xfb\x6b\xc1\x97\x61\x00\x00\x44\x28\x10\x50\xe4\x21\xef\xd1\x1f\xc1\xaf\x2e\x83\x5d\x6d\x4f\x55\xb5\x15\x9f\x55\x16\x89\xd6\xb6\x04\xf6\x6b\xf9\x53\x37\x4c\x18\x13\xc5\x68\x2a\xd7\xd5\x86\xb3\x4c\x82\x99\xfe\x28\x5d\xa1\x5e\x29\x46\xbe\xdd\x3a\xc3\x04\xea\x03\xf6\x3b\x31\x53\x3e\x7e\x48\xf2\xdf\x2c\xe7\x1d\xc1\xa3\xba\x23\xc4\xea\x03\x77\x4a\x02\xab\x75\x2b\xd7\x74\x0a\x89\x8a\x43\xd7\x1c\xcc\x29\x8b\x3c\x88\x49\x40\x9b\x01\xa3\x8f\x8c\xb1\x8b\x20\x04\x9d\x5e\x03\xcb\xb8\x05\x6e\xa6\xbf\xc3\xdb\x4b\xa3\xc1\x1c\xa6\x9a\x67\xe8\x37\xf5\xaa\xfc\x33\xb4\xeb\x9d\x9f\x55\x94\xe1\x40\x77\xb9\x68\x48\x2c\xd0\xcd\x04\x3b\x19\x97\xf7\x95\x8a\x3a\x22\xef\x98\x8a\x4f\x98\xf4\x52\xaf\xd9\x9d\x4a\x62\x76\x67\xbd\x1e\xb2\xf3\x50\x02\x8f\x55\xbe\xc7\x5c\xb1\xd7\x24\xde\xbe\x27\xbd\x5b\xf7\x63\xb2\x3d\x4c\x28\x0d\xa5\xce\x62\xfc\xbb\xe7\xdf\xf4\xee\x77\x6b\xe6\xba\x18\xdf\x01\x00\x00\xff\xff\x5e\xcd\xa6\x9b\x1b\x03\x00\x00" func lockedtokensStakerWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4439,11 +4440,11 @@ func lockedtokensStakerWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0xee, 0xf6, 0x2e, 0xef, 0x76, 0x89, 0x30, 0x4a, 0x84, 0xd5, 0xa7, 0x97, 0xb6, 0xc8, 0x9c, 0xfc, 0xc3, 0xc6, 0xd8, 0x30, 0x74, 0x8, 0xb5, 0x6e, 0x92, 0x38, 0x2d, 0xb6, 0x35, 0xeb, 0x38}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8d, 0x8a, 0xc1, 0xc0, 0x10, 0xe2, 0xf1, 0x46, 0xbe, 0x81, 0x21, 0x16, 0x25, 0x90, 0x8, 0x82, 0x70, 0x2d, 0xac, 0x24, 0xc8, 0x11, 0xcc, 0x3e, 0xa1, 0x71, 0xa3, 0x3f, 0xf8, 0x5e, 0x35, 0xa0}} return a, nil } -var _lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x6b\x83\x40\x10\xc5\xef\xfb\x29\x06\x0f\x41\xa1\x78\x2a\x3d\x84\xa6\xa1\x2d\x84\x1e\x0a\x0d\x49\xff\x9c\x27\xeb\x18\x25\x66\x47\xc6\x11\x53\x4a\xbe\x7b\xd1\x35\xc6\xb4\xf4\xd8\xbd\x2c\xcc\xce\xbc\xf7\x9b\xa7\xf9\xbe\x64\x51\x78\x66\xbb\xa3\xe4\x95\x77\xe4\x2a\x48\x85\xf7\x10\x8c\x4b\x81\xe9\xfb\x16\xb5\xdb\xe6\x9b\x82\xba\x72\xdf\x78\x51\x0b\x8c\x51\x41\x57\xa1\xd5\x9c\x5d\x88\x7b\xae\x9d\x4e\xe1\x6d\x91\x1f\x6e\xae\x23\xf8\x32\x06\x00\xa0\x20\x85\x8c\x8b\x84\x64\x45\xe9\x14\xb0\xd6\x2c\x1c\xfb\xc5\xdd\xf5\x52\x92\x60\x2b\x53\x5d\x5d\x1a\xc7\x1f\xb9\x66\x89\x60\x13\xc1\xe4\xf7\xd8\x53\x27\xec\x8d\x4a\xa1\x12\x85\x42\xb4\xd6\x83\x74\x56\x0f\x2c\xc2\xcd\x3b\x16\x35\x45\x30\xb9\xf7\x6f\x2d\x1c\xf4\xa7\xa2\x22\x8d\x07\x40\x98\x41\x3f\x1f\x57\xca\x82\x5b\x8a\x37\x9d\xc2\xed\x7f\x80\xdf\x85\x6d\xac\x53\xf8\xeb\x7d\xed\x11\x96\xa8\x59\x34\x00\xb7\x67\x3e\x87\x12\x5d\x6e\xc3\xe0\x91\xeb\x22\x01\xc7\x0a\x9e\x13\x84\x52\x12\x72\x96\x40\x19\x46\x5a\x81\x57\x38\xfa\xb0\xe8\x40\xb6\x56\x1a\xe5\xd0\x7e\xa7\x4a\x71\x47\xb2\x14\x3e\x7c\xc2\xec\x47\x32\x7d\x0e\xeb\xae\x25\x8c\xcc\x39\xc0\xf3\x50\xdc\xf4\x3b\xaf\xa8\x41\x49\x4e\x2b\x0d\xbf\x86\xbf\x4f\x20\x47\xf3\x1d\x00\x00\xff\xff\x3e\x0d\x58\x54\x92\x02\x00\x00" +var _lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6b\xc2\x50\x0c\xc7\xef\xfd\x2b\x82\x87\x51\x2f\x65\x87\xb1\x83\xcc\x49\x51\xf7\x03\x45\xa5\x75\xb0\x1d\xdf\x5e\x53\x5b\x5a\x5f\x4a\x9a\xd2\x8e\xe1\xff\x3e\xea\x6b\xb5\x0c\xcc\x25\x3c\xf2\xcd\x37\xf9\xe4\xa5\xc7\x82\x58\x60\x4d\x3a\xc3\x68\x4f\x19\x9a\x12\x62\xa6\x23\xdc\x37\xeb\xed\x7c\xb5\x5c\xec\xb7\xab\xe5\xc6\x5f\x2c\x82\x65\x18\x3a\x9d\x3a\x14\x95\xa5\xe6\xb0\x63\x6a\x7e\x7a\x75\xb8\xf7\x57\xef\x9b\xd7\x5d\xb0\xfd\xfc\xea\xe5\x8e\xb0\x32\xa5\xd2\x92\x92\x71\xd5\x91\x2a\x23\x13\xf8\x78\x49\x9b\xc7\x87\x31\xfc\x3a\x0e\x00\x40\x8e\x02\x09\xe5\x11\x72\x80\xf1\x04\xee\x86\x9b\x78\xe7\xf4\x76\xae\x5a\x75\xc1\x58\x28\x46\x57\x69\x6d\xdd\xfc\x4a\x12\xdf\x3e\x5a\x4b\xe8\xa2\xc4\x3c\xf6\x2e\xb6\x30\x85\xae\xc1\xfb\x26\x66\xaa\x9f\x6e\x8e\x79\x76\x5b\x9e\x09\xdc\xaa\x87\x42\xac\x0e\xb8\x53\x92\x8c\x2f\xd3\xda\x98\xcd\xa0\x50\x26\xd5\xee\x68\x4e\x55\x1e\x81\x21\x01\x3b\x0c\x18\x63\x64\x34\x1a\x41\x08\x06\x5e\x23\xeb\x70\xb2\x68\xd8\xa0\xae\x04\x07\x10\xed\x69\x4a\x51\x19\xb2\xbd\xf4\xf4\x1f\x56\x07\x13\x9e\x25\xee\xd8\xb9\xd2\x5f\x9b\xbc\x3a\x95\x24\x62\x55\x07\x58\x2b\x8e\x7a\xa4\xcb\x6f\xd8\xdc\x2f\x72\x72\xfe\x02\x00\x00\xff\xff\xd5\xd5\xf1\x96\x10\x02\x00\x00" func lockedtokensStakerWithdraw_rewarded_tokens_lockedCdcBytes() ([]byte, error) { return bindataRead( @@ -4459,11 +4460,11 @@ func lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x13, 0xa5, 0xaf, 0x96, 0x28, 0x9e, 0xf5, 0x9, 0x1d, 0x5, 0x22, 0x6d, 0x55, 0xb5, 0x0, 0x1e, 0x47, 0xd, 0x10, 0x2b, 0x1b, 0xe6, 0x12, 0x5c, 0x4b, 0xc4, 0x95, 0x48, 0xf8, 0x64, 0x8c, 0x43}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0xae, 0xac, 0xc7, 0x74, 0x93, 0x11, 0x75, 0xd9, 0x15, 0x9f, 0x5d, 0x7e, 0x5d, 0xa1, 0xd1, 0x7b, 0x82, 0x30, 0xf4, 0xb2, 0xda, 0xf6, 0xce, 0x9f, 0x28, 0xd0, 0xa9, 0xa0, 0xd5, 0x91, 0x1b}} return a, nil } -var _lockedtokensStakerWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6b\xe3\x40\x0c\x85\xef\xf3\x2b\x84\x0f\xc1\x86\xc5\xa7\x65\x0f\x61\xb3\x61\x5b\x08\x3d\x14\x1a\x9a\xa6\x3d\x2b\x63\x39\x36\x71\x46\x46\x96\x49\x4a\xc9\x7f\x2f\x9e\x99\x26\x4e\x4b\x8f\x9d\xcb\x80\x46\x7a\xef\xd3\xb3\xeb\x7d\xcb\xa2\x70\xcf\x76\x47\xc5\x13\xef\xc8\x75\x50\x0a\xef\x21\x19\x97\x12\x13\xfb\x16\xbd\xdb\xd6\x9b\x86\x7c\x39\x36\x5e\xd5\x12\x63\x54\xd0\x75\x68\xb5\x66\x97\xe2\x9e\x7b\xa7\x53\x58\x2f\xea\xe3\x9f\xdf\x19\xbc\x19\x03\x00\xd0\x90\x42\xc5\x4d\x41\xf2\x48\xe5\x14\xb0\xd7\x2a\x1d\xfb\xe5\xfe\x7a\x68\x49\x70\x90\xe9\x7e\x5d\x1b\xe7\x2f\xb5\x56\x85\xe0\x21\x83\xc9\xd7\xb1\x3b\x2f\x1c\x8c\x5a\xa1\x16\x85\x52\xb4\x36\x80\x78\xab\x1b\x16\xe1\xc3\x33\x36\x3d\x65\x30\xf9\x1f\xde\x06\x38\x88\xa7\xa3\xa6\xcc\xcf\x80\x30\x83\x38\x9f\x77\xca\x82\x5b\xca\x37\x5e\xe1\xef\x4f\x80\xff\x4b\x87\x58\xa7\xf0\xdd\xfb\x2a\x20\x2c\x51\xab\xec\x0c\x3c\x9c\xf9\x1c\x5a\x74\xb5\x4d\x93\x5b\xee\x9b\x02\x1c\x2b\x04\x4e\x10\x2a\x49\xc8\x59\x02\x65\x18\x69\x25\x41\xe1\x14\xc2\xa2\x23\xd9\x5e\x69\x94\xc3\xf0\x9d\x3a\xc5\x1d\xc9\x52\xf8\xf8\x0a\xb3\x4f\xc9\xc4\x1c\x56\xbe\x25\xcd\xcc\x25\xc0\xcb\x50\x7e\x88\x3b\xaf\x9d\xaf\xc6\x95\xce\xbf\x46\xb8\x3f\x40\x4e\xe6\x3d\x00\x00\xff\xff\x11\x39\xe8\x7a\x92\x02\x00\x00" +var _lockedtokensStakerWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4f\x6b\xf2\x40\x10\xc6\xef\xf9\x14\x83\x87\x97\x78\x09\xef\xa1\xf4\x20\xb5\x12\xd4\xfe\x41\x51\x31\x0a\xed\x71\xbb\x99\x98\x25\x71\x27\x4c\x26\x98\x52\xfc\xee\x25\xd9\xa8\xa1\xe0\x5c\x86\x64\x9e\x79\x66\x7e\xb3\xe6\x58\x10\x0b\x2c\x49\x67\x18\xef\x28\x43\x5b\x42\xc2\x74\x84\xff\xf5\x72\x3d\x5d\xcc\x67\xbb\xf5\x62\xbe\x0a\x67\xb3\xed\x3c\x8a\xbc\x4e\x1d\x89\xca\x8c\x3d\x6c\x98\xea\xef\x8b\x3a\xda\x85\x8b\xf7\xd5\xeb\x66\xbb\xfe\xf8\xbc\xc8\x3d\x61\x65\x4b\xa5\xc5\x90\xf5\xd5\x91\x2a\x2b\x23\xd8\xbf\x98\xfa\xf1\x61\x08\x3f\x9e\x07\x00\x90\xa3\x40\x4a\x79\x8c\xbc\xc5\x64\x04\xff\xfa\x9b\x04\x6d\x7a\x6b\xab\x4e\x5d\x30\x16\x8a\xd1\x57\x5a\x3b\xb7\xb0\x92\x34\x74\x1f\x8d\x25\x74\x51\x62\x9e\x04\x57\x5b\x18\x43\xd7\x10\x7c\x11\x33\x9d\x9e\xee\x8e\x79\xf6\x1b\x9e\x11\xdc\xab\x47\x42\xac\x0e\xb8\x51\x92\x0e\xaf\xd3\x9a\x98\x4c\xa0\x50\xd6\x68\x7f\x30\xa5\x2a\x8f\xc1\x92\x80\x1b\x06\x8c\x09\x32\x5a\x8d\x20\x04\x3d\xaf\x81\x73\x38\x3b\x34\xac\x51\x57\x82\x3d\x88\xe6\x34\xa5\xa8\x0c\xd9\x5d\x7a\xfc\x07\xab\x83\x89\x5a\x89\x3f\xf4\x6e\xf4\xb7\xa6\xe0\x64\x24\x8d\x59\x9d\xf6\xb6\xfd\xdb\x21\x5d\x5f\xc3\xe5\xcb\x22\x67\xef\x37\x00\x00\xff\xff\xfa\xe1\x41\xb8\x10\x02\x00\x00" func lockedtokensStakerWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4479,11 +4480,11 @@ func lockedtokensStakerWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0x46, 0x2b, 0xa7, 0xad, 0xfb, 0xcd, 0x79, 0xce, 0xdd, 0xec, 0x78, 0xff, 0x7c, 0x42, 0x3d, 0x6e, 0x19, 0xe, 0x4c, 0x1f, 0x75, 0xdb, 0xd5, 0x69, 0xe9, 0x9c, 0xc8, 0x54, 0xbd, 0x4f, 0xcb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0xec, 0x5f, 0x9a, 0x23, 0xd5, 0x31, 0x36, 0x95, 0x2c, 0xc0, 0x94, 0x2c, 0x22, 0xb0, 0x1e, 0xdd, 0x3, 0x79, 0xff, 0x8e, 0x9c, 0xf3, 0x37, 0xf, 0xb3, 0xc2, 0x8d, 0xb4, 0x76, 0xaa, 0x4f}} return a, nil } -var _lockedtokensUserDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x92\xbf\x6e\xdc\x30\x0c\xc6\x77\x3f\x05\xe1\xe1\x60\x0f\x55\x96\xa2\xc3\x21\x6d\xd0\x16\x08\x3a\x74\x28\xda\x34\x9d\x19\x99\x8e\x85\x93\x45\x43\xa2\xce\x57\x14\xf7\xee\x85\xe4\x3f\x38\x0f\x1e\xa2\x45\x30\xf9\x91\xfc\x7d\xb4\x4c\x3f\xb0\x17\x78\x8c\xee\xd5\xbc\x58\x7a\xe2\x13\x39\x68\x3d\xf7\x50\x6e\x62\x65\xb1\x28\x2d\x8f\x1b\xd5\xf2\xbd\x2a\xbe\xb3\x3e\x51\x93\x63\x61\x16\xdd\x86\xca\xa2\x10\x8f\x2e\xa0\x16\xc3\xae\xc2\x9e\xa3\x93\x23\xfc\x7e\x34\x97\x0f\xef\x6b\xf8\x57\x14\x00\x00\x96\x04\x3a\xb6\x0d\xf9\x9f\xd4\x1e\xe1\x70\xdb\x41\xe5\xeb\x5b\xce\xae\xe2\x33\x46\x2b\x59\x8b\x51\xba\x6a\x03\xaf\xfe\x18\xe9\x1a\x8f\x63\x0d\x87\x95\x57\x3d\xa7\x8a\x69\xda\xe0\x69\x40\x4f\x15\x6a\x2d\x73\x83\x2f\xec\x3d\x8f\xcf\x68\x23\xd5\x70\xf8\xac\x75\xc2\x4c\x78\x30\x9f\x40\xb6\x55\x2b\x22\x7c\x84\x54\xac\x82\xb0\xc7\x57\x52\x2f\xb9\xfc\x7e\x97\xfb\x53\x95\x36\x73\x84\xbd\xfc\xaf\xa9\xcf\x0f\x94\xae\x5e\x47\xa6\xf3\xf0\x00\x03\x3a\xa3\xab\xf2\xa9\x23\x18\xbc\xe9\xd1\xff\x85\x18\xc8\x27\x80\x04\x09\x0d\x53\x00\xc7\x02\x1d\x9e\x09\xd0\x01\x86\xc0\xda\xa0\x50\x03\x36\xcf\x5b\xa4\x65\x5d\x6c\xfd\x2c\x5b\xdc\xb1\xf3\xa6\xd5\x2e\x16\xef\xe6\x26\x77\xed\x92\xcf\xe9\x3d\x5b\x5f\x39\xda\x26\xe3\x4f\x43\x21\x95\x81\xe4\x27\x97\xf1\xc0\x53\x5b\x4e\xd5\xd7\x09\x9f\x2e\xa4\xa3\xd0\xee\xcf\x51\x0d\x0d\x1c\x8c\xcc\x40\xf7\xef\x36\x5e\xd5\x38\x5b\x58\xdf\xe2\x74\xd7\xcb\x8c\x6b\xf1\x3f\x00\x00\xff\xff\x06\xda\x11\x7f\x26\x03\x00\x00" +var _lockedtokensUserDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6f\xb2\x40\x10\xc6\xef\x7c\x8a\x89\x87\x37\x70\x78\xb1\x87\xa6\x07\x62\x6b\xac\x62\xdb\x48\xb4\xf1\x4f\x7b\x5e\x97\x41\x88\xb8\x43\x96\xa1\x98\x34\x7e\xf7\x66\x41\x88\x98\x9a\x74\x2f\x9b\xec\xf3\xcc\x3c\xbf\xd9\x4c\x72\xc8\x48\x33\x4c\x0b\xb5\x4b\xb6\x29\xae\x69\x8f\x0a\x22\x4d\x07\xb8\x3b\x4e\x37\xf3\x97\xb7\xe7\xc0\x5f\x2f\x66\xfe\x7c\x34\x99\x2c\xfd\xd5\xca\x6a\x0a\x52\x2a\xbb\xe6\x60\xf1\xf9\x9b\x31\x20\xb9\xc7\xb0\xb2\xe6\x8d\x37\x58\x8c\x67\xfe\xa4\xe3\xb6\x58\x0b\x95\x0b\xc9\x09\x29\x5b\x1c\xa8\x50\xec\xc1\x66\x9a\x1c\x1f\xee\x1d\xf8\xb6\x2c\x00\x80\x14\x19\x62\x4a\x43\xd4\x4b\x8c\x3c\xf8\x77\xd9\xda\xad\xae\xd7\x4a\x6d\xcd\x5f\xa2\x48\xb9\xf6\xb6\xbc\xee\x87\x79\xac\x1b\x66\x1a\x33\xa1\xd1\x16\x52\xb2\x07\xa3\x82\xe3\x91\x94\x26\xda\x44\xc2\xf9\xe4\x98\x46\x6e\x1b\x0b\x8f\x60\xdc\xee\x96\xb4\xa6\x72\x70\x93\xe1\xc9\x36\xb3\x7a\x70\x4b\x5f\x31\x69\xb1\xc3\x77\xc1\xb1\xd3\x46\x99\x33\x1c\x42\x26\x54\x22\xed\xde\x98\x8a\x34\x04\x45\x0c\x75\x18\x08\xd0\x18\xa1\x46\x25\x11\x98\xe0\xa2\x5b\xcf\xb1\xba\xbc\xcd\xe4\xd7\xb8\x57\xdf\xd0\x50\xf6\xf3\x1a\xa7\x1f\x35\x7a\x25\xff\x99\xcc\x94\x01\x57\xeb\x50\x25\x1b\xd0\x5e\x5d\x7d\xaa\xc9\xf0\x88\xb2\x60\xbc\xf9\xaf\x6e\x88\x19\xe5\x09\x9f\x81\x06\xff\x3b\x63\xb8\x65\xc2\x71\xa8\x45\xd9\xae\x46\x7d\x3b\x4d\xc6\xc9\xfa\x09\x00\x00\xff\xff\xd8\x78\x8a\x49\xc9\x02\x00\x00" func lockedtokensUserDeposit_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4499,11 +4500,11 @@ func lockedtokensUserDeposit_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/deposit_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0xa5, 0xe5, 0x96, 0x71, 0x49, 0x43, 0x2c, 0x42, 0xb0, 0x75, 0x57, 0xe2, 0x55, 0x9a, 0x95, 0xfe, 0xf3, 0xec, 0xdf, 0x91, 0x6e, 0x41, 0x44, 0xc, 0x5b, 0x1, 0x46, 0x8e, 0x83, 0xab, 0xd7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa5, 0xa, 0xdf, 0x26, 0x3f, 0xf, 0x6e, 0xbc, 0x78, 0x6f, 0xab, 0xd2, 0xb9, 0x60, 0xc2, 0xab, 0x81, 0x1, 0xf1, 0xa2, 0xae, 0x5a, 0x57, 0x2a, 0xc8, 0xa, 0x5b, 0x36, 0x40, 0x8c, 0xc1, 0x1}} return a, nil } -var _lockedtokensUserGet_locked_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x4e\xc3\x30\x0c\x86\xef\x79\x8a\x5f\x3d\xa0\xf6\xd2\x07\x40\xc0\x34\x71\x01\x69\x87\x09\xf1\x02\x69\xe2\x8c\x68\x69\x5c\x39\x8e\x38\x20\xde\x1d\xad\x1d\x65\x03\x7c\x49\x64\xf9\xfb\xfe\x38\x71\x9c\x58\x14\x3b\x76\x47\xf2\xaf\x7c\xa4\x5c\x10\x84\x47\x34\x97\xad\xc6\x18\xeb\x1c\x95\xd2\xda\x94\x3a\x84\x9a\x31\xda\x98\x5b\xeb\x1c\xd7\xac\xb7\xd8\x7a\x2f\x54\x4a\xb7\xde\xf0\x61\x0c\x00\x24\x52\xa4\xd9\xb4\x5d\x66\x9f\x73\xe0\x17\x0a\xb8\xc7\x81\xf4\xdc\xfb\xf6\x74\x33\x72\xaa\xde\xd9\xc9\x0e\x31\x45\x8d\x54\xfa\x81\x45\xf8\xfd\xee\xe6\xf2\x49\xfd\x7c\x3c\x71\xf2\x24\x0f\xed\x0a\x9e\xea\x6a\x6c\xf7\x3b\x7c\x5f\x87\x14\xdd\xde\xea\xdb\x0a\xfd\xe4\x6e\x36\x98\x6c\x8e\xae\x6d\x1e\xb9\x26\x8f\xcc\x8a\x25\x1d\x16\x42\x81\x84\xb2\x23\x28\x63\x9a\x35\xf8\xa3\x6f\xba\x65\x71\x21\xad\x92\xff\xdd\xbd\x3f\x90\x5e\x71\xe7\x3f\x6b\x3b\xf3\x69\xbe\x02\x00\x00\xff\xff\x5f\x74\xcf\x97\x91\x01\x00\x00" +var _lockedtokensUserGet_locked_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x1e\x3d\x48\x72\x29\x9e\x45\x2d\x21\x09\x28\x0d\xb6\xb4\xfd\x03\x9b\xcd\xa4\x2e\xdd\xec\x84\xcd\x2e\x2a\xa5\xff\x5d\x92\xd4\xd8\xaa\x38\x97\x5d\x66\xde\x7b\x33\x7c\xba\x69\xd9\x79\x14\xac\x0e\x54\xed\xf8\x40\xb6\x43\xed\xb8\xc1\xed\x7b\xb1\x4a\x97\x79\xb6\x5b\x2d\xf3\x97\x24\xcb\x36\xf9\x76\x2b\x44\x1b\x4a\xd4\xc1\xa2\x91\xda\x46\x52\x29\x0e\xd6\xdf\x21\xa9\x2a\x47\x5d\x17\x4f\x3f\x1c\x85\x00\x00\x43\x1e\x66\x88\x4e\x46\xed\xb3\xad\x79\x43\x35\x1e\xb0\x27\x7f\xee\x7d\xe5\xc4\x83\xa5\xaf\xf9\x9e\x7c\x2a\x5b\x59\x6a\xa3\xfd\xc7\xfd\xcd\xe5\x75\xf3\xe1\x79\x62\x53\x91\x3b\x5e\x0d\x8a\x9f\x8b\x4e\x8f\xd1\x14\xd9\xd7\xff\xea\x75\x28\x8d\x56\x6b\xe9\x5f\x27\xd3\xc5\x45\x25\x3b\xc7\x6f\xd1\x77\x67\xb1\x40\x2b\xad\x56\xd1\x2c\xe5\x60\x2a\x58\xf6\x18\x45\x90\x70\x54\x93\x23\xab\x08\x9e\xd1\x0e\xc1\xf8\xb5\x70\x16\x8f\x90\x1c\xf9\xe0\xec\x9f\x9c\x7a\x10\x57\xbe\x33\xdf\x28\x16\x27\xf1\x19\x00\x00\xff\xff\x93\x76\x77\x6b\xbb\x01\x00\x00" func lockedtokensUserGet_locked_account_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -4519,11 +4520,11 @@ func lockedtokensUserGet_locked_account_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_locked_account_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x1c, 0x7f, 0x55, 0xaa, 0x4, 0xd5, 0x1d, 0x5b, 0xbd, 0xdf, 0x3f, 0x2f, 0xe4, 0x4f, 0x2f, 0x22, 0x93, 0x27, 0x85, 0x4b, 0x23, 0x56, 0xaf, 0x5e, 0xc5, 0xd, 0x28, 0x5f, 0xee, 0x60, 0x44}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4c, 0xbe, 0xe8, 0x78, 0x27, 0x47, 0x3b, 0xa0, 0xc8, 0x22, 0x70, 0xb2, 0xac, 0xa6, 0x18, 0x30, 0x3b, 0x65, 0xd7, 0x4, 0x7e, 0x42, 0xc6, 0x5a, 0xcc, 0x96, 0xd, 0x11, 0x92, 0xf3, 0x5, 0x84}} return a, nil } -var _lockedtokensUserGet_locked_account_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4a\xc3\x40\x10\x86\xef\xfb\x14\x3f\x39\x48\x72\xc9\x49\x3c\x14\xb5\x54\x41\x14\x7a\x28\xa2\x0f\x30\xd9\x4c\xea\xd2\xcd\x4e\x98\x9d\xa0\x20\xbe\xbb\x34\xd1\xda\xaa\x73\x59\x18\xe6\xfb\xfe\xfd\x43\x3f\x88\x1a\xd6\xe2\x77\xdc\x3e\xc9\x8e\x53\x46\xa7\xd2\xa3\x38\x5e\x15\xce\x91\xf7\x9c\x73\x49\x31\x56\xe8\xc6\x84\x9e\x42\x2a\xc9\x7b\x19\x93\x2d\xb0\x6a\x5b\xe5\x9c\xab\x05\x9e\xef\xc2\xdb\xc5\x39\xde\x9d\x03\x80\xc8\x86\x38\x89\x56\xf3\xe9\x43\xea\xe4\x91\x3b\x5c\x61\xcb\xf6\xb5\xfb\xd6\x54\x13\xb2\x9f\xda\xd3\x40\x4d\x88\xc1\x02\xe7\xba\x11\x55\x79\xbd\x3c\x3b\xfe\x51\x3d\x3d\xf7\x12\x5b\xd6\xeb\xf2\x00\xee\xe7\xe4\x6c\xfd\x3b\x7c\x33\x36\x31\xf8\x0d\xd9\xcb\x01\xfa\xc9\x5d\x2e\x31\x50\x0a\xbe\x2c\x6e\x65\x8c\x2d\x92\x18\xe6\x74\x10\x94\x3b\x56\x4e\x9e\x61\x82\x61\xd2\xe0\x8f\xbe\xa8\xe6\xe2\xca\x36\x6a\xfa\xb7\x7b\xbd\x65\x3b\xe1\x6e\x28\x52\xf2\x5c\x56\xee\xc3\x7d\x06\x00\x00\xff\xff\xf4\x54\xe0\xd6\x90\x01\x00\x00" +var _lockedtokensUserGet_locked_account_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x51\x4f\xc2\x30\x14\x85\xdf\xfb\x2b\x4e\x78\x30\xdb\x0b\xf1\xc1\xf8\x40\x54\x82\x6c\x46\xc3\x22\x04\xf0\x07\x74\xdd\x1d\x36\x74\xbd\x4b\xd7\x46\x0c\xe1\xbf\x9b\x6d\x8a\xa0\xc6\xfb\xd2\xe4\xf6\x9c\xef\x9e\x1c\x5d\xd5\xec\x3c\x32\x56\x5b\x2a\xd6\xbc\x25\xdb\xa0\x74\x5c\xe1\x72\x97\xcd\xa7\xb3\x34\x59\xcf\x67\xe9\xf3\x24\x49\x96\xe9\x6a\x25\x44\x1d\x72\x94\xc1\xa2\x92\xda\x46\x52\x29\x0e\xd6\x8f\x30\x29\x0a\x47\x4d\x13\x8f\xf0\xf2\xa0\x77\xd7\x57\xd8\x0b\x01\x00\x86\x3c\x4c\x47\x9e\xf4\xd2\x27\x5b\xf2\x92\x4a\xdc\x62\x43\xfe\x73\xf7\x85\x89\x3b\x4b\x3b\xc3\x0d\xf9\xa9\xac\x65\xae\x8d\xf6\xef\x37\x17\xa7\xe1\x86\xdd\xf3\xc8\xa6\x20\xb7\x3f\xfb\xc8\x7e\x1e\x3a\xdc\x45\x47\x64\x3b\xff\xab\x17\x21\x37\x5a\x2d\xa4\x7f\x3d\x9a\x4e\x12\xe5\xec\x1c\xbf\x45\xdf\x9b\xf1\x18\xb5\xb4\x5a\x45\x83\x29\x07\x53\xc0\xb2\x47\x2f\x82\x84\xa3\x92\x1c\x59\x45\xf0\x8c\xba\x03\xe3\xd7\xc1\x41\xdc\x97\xe4\xc8\x07\x67\xff\xec\xa9\x2d\xe2\xcc\x77\x2f\x8d\xb4\x8a\xa2\x58\x1c\xc4\x47\x00\x00\x00\xff\xff\xb4\x2e\x8d\x4e\xba\x01\x00\x00" func lockedtokensUserGet_locked_account_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -4539,11 +4540,11 @@ func lockedtokensUserGet_locked_account_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_locked_account_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x2d, 0x23, 0x62, 0x8e, 0xdd, 0x89, 0x34, 0xc5, 0x3e, 0x78, 0xc5, 0xcd, 0x35, 0x2e, 0xcf, 0xa3, 0x3a, 0xed, 0x97, 0x92, 0x6e, 0x8, 0x74, 0x90, 0x9d, 0x36, 0x9d, 0x94, 0xe3, 0xc0, 0x6d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x43, 0x1e, 0xb4, 0x8c, 0xa1, 0x3b, 0x72, 0xd3, 0xaf, 0x2c, 0xe7, 0x97, 0x87, 0xfb, 0xd4, 0x36, 0xf8, 0x3a, 0xc3, 0x46, 0x33, 0xe0, 0x9, 0x45, 0x45, 0x17, 0xf, 0x6e, 0x59, 0x7b, 0x77, 0xd1}} return a, nil } -var _lockedtokensUserGet_multiple_unlock_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x6b\xfb\x30\x10\xc5\x77\x7d\x8a\x87\x87\x3f\xf6\xe2\xe9\x4f\x87\xd0\x34\x84\x42\x69\x21\x43\x28\xcd\x14\x32\x28\xf2\x39\x15\x91\x75\xe6\x24\xb7\x85\x90\xef\x5e\x2c\xc7\x6d\xdc\xf6\x16\x89\x7b\x77\x4f\x3f\x3d\xdb\xb4\x2c\x11\x2b\x36\x47\xaa\x5e\xf8\x48\x3e\xa0\x16\x6e\x90\x5d\xb7\x32\xa5\xb4\x31\x14\x42\xae\x9d\x2b\x50\x77\x1e\x8d\xb6\x3e\xd7\xc6\x70\xe7\x63\x98\x61\xbb\xac\x2a\xa1\x10\x76\xc5\x0c\xdb\xcd\x83\xfd\xb8\xf9\xbf\xc3\x49\x29\x00\x78\xd3\x02\x67\x1b\x9b\xe6\x46\x6d\x8e\xed\x6e\x90\x6b\x16\x5c\x8c\x60\xfd\x78\x0d\x38\x25\xb5\x2f\x47\x11\x2e\xe1\x2c\x07\xf1\xc9\xd7\xfc\x4c\x35\xe6\x38\x50\xbc\xf4\x46\x98\xe2\x6b\xad\xaf\xd2\xe8\x56\xef\xad\xb3\xd1\x52\x28\xf7\x2c\xc2\xef\xb7\xff\xae\xff\x56\xa6\xe3\x91\x5d\x45\x72\x97\x4f\x96\xfb\x9a\x8c\xae\x7e\x42\xac\xbb\xbd\xb3\x66\xad\xe3\xeb\x64\x71\xca\xb0\x58\xa0\xd5\xde\x9a\x3c\xbb\xe7\xce\x55\xf0\x1c\x31\x90\x40\x43\xa8\x26\x21\x6f\x08\x91\xd1\x26\x3b\xfc\x7a\x26\x2b\xd4\x77\x18\x29\xc9\x52\xb7\x2d\xf9\x2a\xff\x2b\x96\xf2\x40\x71\xe3\x7b\x65\xd5\xcf\xe6\xc5\x80\x73\x1e\x3c\x84\x62\x27\xfe\x62\xa3\xce\xea\x33\x00\x00\xff\xff\x76\x76\x5f\x52\x02\x02\x00\x00" +var _lockedtokensUserGet_multiple_unlock_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcf\x4f\xfa\x40\x10\xc5\xef\xfb\x57\xbc\x70\xf8\xa6\xbd\x90\xef\xc1\x78\x20\x22\x21\x80\xd1\xd0\x08\xe1\xc7\x89\x70\xd8\xb6\x53\xdc\xb0\xdd\xd9\x6c\xb7\x8a\x21\xfc\xef\xa6\x2d\xa8\x45\xe3\x5c\xda\xcc\x67\xe6\xcd\xdb\xa7\x72\xcb\xce\x23\xe2\x64\x4f\xe9\x8a\xf7\x64\x0a\x64\x8e\x73\xfc\x3f\x44\xb3\xd1\x74\x32\x5e\xcd\xa6\x93\xe7\xe1\x78\xbc\x98\x2c\x97\x42\xd8\x32\x46\x56\x1a\xe4\x52\x99\x40\x26\x09\x97\xc6\x17\x3d\x6c\x86\x69\xea\xa8\x28\xb6\x61\x0f\x9b\xf5\x83\x3a\xdc\xde\x6c\x71\x14\x02\x00\x5e\xa5\x83\x56\xb9\xaa\xe7\x2e\xac\x8f\xcd\xb6\xc1\x19\x3b\x9c\x85\xa0\xcc\xe5\xb7\xc0\xb1\xa6\x55\x69\xf2\xd0\xb5\xbf\x61\x03\x9f\x4c\xc6\x0b\xca\xd0\xc7\x8e\xfc\xb9\x77\x31\x13\x7e\xae\x55\xd5\xdd\x91\x1f\x49\x2b\x63\xa5\x95\x7f\xbf\xfb\xf7\xfd\x99\xdd\xfa\xf3\xc8\x3a\x25\x77\x6c\x81\xe8\xfa\xd8\xe9\x3e\x68\xc9\x56\xf5\xf7\xc6\xbc\x8c\xb5\x4a\xe6\xd2\xbf\xb4\x16\xaf\xdc\xc5\xec\x1c\xbf\x05\xed\xee\x60\x00\x2b\x8d\x4a\x82\xce\x88\x4b\x9d\xc2\xb0\x47\x33\x08\x09\x47\x19\x39\x32\x09\xc1\x33\x6c\x7d\x04\x3f\x8e\x77\x42\xf1\x15\x5e\x9d\x7c\x57\x5a\x4b\x26\x0d\x7e\x8b\xb1\xca\x68\x6d\x2a\x12\x55\xb3\x41\xd8\xd8\x39\x35\x1a\x8e\x7c\xe9\xcc\x59\x46\x9c\xc4\x47\x00\x00\x00\xff\xff\xf0\x63\x18\x09\x30\x02\x00\x00" func lockedtokensUserGet_multiple_unlock_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -4559,11 +4560,11 @@ func lockedtokensUserGet_multiple_unlock_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_multiple_unlock_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0xe, 0xa9, 0x44, 0x29, 0x58, 0xa8, 0xea, 0x68, 0x48, 0xe8, 0xbc, 0x31, 0xbe, 0x7d, 0xc4, 0x5e, 0x8c, 0xb8, 0xaa, 0x3e, 0x37, 0xdb, 0xc9, 0xe, 0x63, 0xbd, 0xc1, 0xcf, 0x8b, 0x36, 0x1a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x44, 0x53, 0x90, 0x61, 0xff, 0x97, 0xc8, 0x5, 0x7e, 0xc0, 0x6d, 0x11, 0x4b, 0x9, 0x5d, 0x3a, 0xdf, 0x48, 0x9a, 0xa6, 0x8e, 0x90, 0xe2, 0x7c, 0x70, 0x72, 0x99, 0xf5, 0xfa, 0xb2, 0x54, 0x24}} return a, nil } -var _lockedtokensUserGet_total_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x4d\x6f\xdb\x38\x10\xbd\xeb\x57\x0c\x72\xd8\x95\xb0\x86\x9c\xc3\xa2\x07\xa3\x0e\x90\x42\x48\x6b\x20\x68\x82\xd4\x6d\xcf\x94\x48\xd9\x44\x68\x52\x20\xa9\xa4\x45\xe0\xff\x5e\x88\x14\x69\x52\x96\x9c\xaf\xea\xe0\x0f\xf2\xcd\xbc\xc7\x79\xc3\x11\xdd\x35\x42\x6a\xb8\x6a\xf9\x86\x96\x8c\xac\xc5\x3d\xe1\x50\x4b\xb1\x83\xb3\x68\xed\x2c\x71\x48\x26\x1e\x23\x94\xfb\x1f\x21\x56\xc5\x1a\x95\x8c\x7c\xd3\xe8\x9e\xf2\x4d\x00\x8d\x37\x7c\xcc\xb5\xa8\xee\x09\x36\x79\x54\x8f\x0e\x97\xce\x92\x64\x3e\x87\xf5\x96\x2a\x50\x95\xa4\x8d\x86\x0d\xd1\x0a\xf4\x96\xc0\xfa\x66\x7d\x79\x0d\xbc\xdd\x95\x44\x82\xa8\xe1\xea\xfa\xe6\x27\x20\x0e\xa8\xaa\x44\xcb\x35\x88\x47\xae\x66\x80\x2a\x29\x94\x82\x96\x33\x93\x75\x06\xee\x1b\x71\x0c\xca\x8a\xc9\x0d\xc9\x25\xc6\x0a\xda\xa6\xcb\xad\x48\x9f\x57\x2d\xcc\x96\xb6\xf2\x28\x07\x2e\xe4\x0e\x31\xc7\x71\x6a\xcf\x25\x3f\x89\xc1\x84\x91\x0d\xd2\x47\x30\xb5\x45\x92\xe0\x71\x9a\x78\x6f\x9c\x66\x80\x09\x68\x92\x04\x55\x15\x51\x2a\x45\x8c\x65\x50\xb7\x1c\x76\x88\xf2\x14\x61\x2c\x89\x52\x8b\xae\x0a\xdd\x8f\x6c\x01\xdf\xaf\xe8\xaf\x0f\xff\xc3\x53\x92\x00\x00\x3c\x20\x09\xaa\xdd\xc1\x12\xce\xf3\x73\xbb\xc4\x88\xf6\x0c\xcb\xce\x97\x4b\xfb\xc7\x25\xcb\x2c\x8c\xd6\x06\xf9\x80\x5a\xa6\xef\x48\x0d\x4b\x17\x94\x57\xa8\x41\x25\x65\x54\x53\xa2\xf2\x52\x48\x29\x1e\x3f\xfe\xe3\xdb\x2a\xff\xd1\x45\x5c\xa4\xf3\xa6\x2d\x19\xad\xe6\xb5\xdb\xf8\x84\x18\xe2\x15\xc9\xe0\xc9\xe4\xef\x1e\xab\xac\xfb\xfc\xcf\x13\xe5\xa5\xc5\x19\xd0\xde\x6a\x99\xcf\xe1\x33\xd1\xb6\x50\xd0\xef\xdb\xae\xeb\x3a\xca\x35\x89\x13\xf8\xaf\x02\x2e\x30\x71\x25\x86\x46\x08\xa6\xfc\xd1\x45\xa3\xa9\xe0\x88\x7d\x15\xd8\x74\x35\x91\xd1\xe9\xbc\xb6\xf1\x63\x3e\x1d\xdf\x89\xfc\x90\xe9\xd6\x1c\x79\x7f\x91\xfa\x2c\xdd\xf3\x82\x90\x5b\xa4\xb7\x3e\x26\x36\x80\x0f\x74\x8e\xeb\x3f\xd4\xd4\xc5\xac\x78\x2d\x60\x39\x45\xde\xed\xa6\x06\x56\x2c\x62\x8a\x9c\xe2\x6c\xd4\x20\x97\x34\xd7\x42\x23\x66\xef\xf9\x8a\xdf\x91\x4a\x48\x9c\x66\xef\xb2\xab\x6f\x74\x21\x9f\xf1\xac\x70\xb8\xbf\x61\x99\x4f\x36\xee\x5a\xd8\xbf\x7d\x98\x8f\x98\xb0\x0a\xc7\xf2\x46\x55\xc7\x46\xf9\x88\x69\xb7\x8a\x10\x12\x4b\x74\xfe\x85\xbc\xb9\x5d\x9c\x45\xc0\x03\xcd\x10\x4d\x71\x70\x96\x31\xd7\x23\x85\x53\xd6\x8f\x99\xbf\x25\x10\xfb\x0c\xb6\xa0\xe0\x4d\xfa\x7d\xe4\xaf\x7d\x85\xf4\xf3\xa8\x23\x7c\x8d\xcf\xe1\xfb\x27\x37\x5f\x5f\x04\xc3\x44\x0e\x7c\x8d\x60\x47\x84\xcf\x5e\x47\x36\x2e\xf1\xe4\x09\x0e\x9e\xdb\xf7\xd5\x58\x71\xc2\xa9\x37\xf4\x60\x8c\x33\xdf\x10\x1d\x91\xf5\xe3\x35\xed\xe5\x0e\xd8\xdc\x2d\x14\x35\x20\xc6\xcc\xd2\xf1\x8c\x3c\xdc\xd1\x58\x9c\x4f\x18\x8c\xa4\x55\x01\xcb\x49\x61\x66\xc2\x14\x69\x38\xea\xdf\x31\x9a\x56\x45\x16\xa5\x79\xe5\x50\x0a\x7a\xf3\xf9\xa2\x4c\x4c\xa2\x97\x56\x26\xb8\x68\x27\xca\x73\xb8\xd2\xc7\x35\x7a\x69\x89\x7d\x8e\x89\x5a\xbf\x79\xc2\xc4\x95\x9f\x4d\xcc\x8e\xa1\x27\x6f\x1a\x1b\xc1\xb3\x4f\xe2\x5f\xbd\x61\x92\xe8\x56\xf2\x2e\x67\xb2\x4f\xfe\x04\x00\x00\xff\xff\xff\xc7\x1b\xb5\xfb\x0a\x00\x00" +var _lockedtokensUserGet_total_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x55\x51\x6f\xa3\x38\x10\x7e\xe7\x57\xcc\xd3\x1e\xe8\x22\xd2\x87\xd3\x3d\x44\x9b\x95\xd2\x92\xee\xa1\x8d\x92\x55\x4b\xef\x74\x8f\x06\x4c\x82\xea\xd8\xc8\x36\x6d\x4f\x51\xfe\xfb\xc9\x18\x3b\x98\x40\x9a\x6d\x79\x68\x52\xfc\xcd\xcc\x37\xdf\x37\x9e\x94\xfb\x8a\x71\x09\xf7\x35\xdd\x96\x29\xc1\x09\x7b\xc6\x14\x0a\xce\xf6\x70\xf3\x76\xff\xb4\xfe\x1e\xdf\xae\x96\xc9\xe6\xc7\x72\xbd\x88\xa2\x87\xe5\xe3\xa3\x67\x02\x08\x7b\x75\xc1\xab\xcd\x3f\x63\xc0\x38\x4a\x50\x4a\xf0\xa3\x44\xcf\x25\xdd\x9a\x88\x38\x5a\xae\x93\x38\xf9\x37\x59\xdc\xae\x96\xbd\xa8\x15\xcb\x9e\x71\xde\x14\x10\x06\xbf\xda\xdc\xfd\x58\x46\x4e\x0d\x6f\x3a\x85\x64\x57\x0a\x10\x19\x2f\x2b\x09\x5b\x2c\x05\xc8\x1d\x86\x64\x93\x2c\x56\x40\xeb\x7d\x8a\x39\xb0\x02\x14\x3b\x40\x14\x50\x96\xb1\x9a\x4a\x60\xaf\x54\x4c\x00\x65\x9c\x09\x01\x35\x25\x4d\xb9\x09\x98\x4f\x44\x73\x10\x9a\x6d\xd8\x14\x59\xe4\xb9\x80\xba\x52\xb9\x05\x6e\xf3\x8a\x59\x73\x24\x35\xc9\x92\x02\x65\x7c\x8f\x88\xa9\x71\xe9\xcc\x24\xbf\x88\xc9\x31\xc1\x5b\x24\xcf\x60\x62\x87\x38\xce\x87\xcb\xb8\x67\xc3\x65\x7a\x98\x4e\x19\xcf\xab\xea\x14\x8a\x9a\xc2\x1e\x95\xd4\x47\x79\xce\xb1\x10\x33\xd5\xbd\xfa\x12\xcc\xe0\xe9\xbe\x7c\xfb\xf3\x0f\x38\x78\x1e\x00\xc0\x0b\xe2\x20\xea\x3d\xcc\xe1\x26\xbc\xd1\xaf\x08\x96\x36\xf3\x5c\xf9\xb1\xd0\xff\x98\x64\x81\x86\x95\x45\x83\x7c\x41\x35\x91\x0f\xb8\x80\xb9\x09\x0a\xb7\x58\xde\xa1\x0a\xa5\x25\x29\xe5\x7f\xfe\xb4\xaa\x53\x52\x66\xd3\xc2\x8c\xdb\x2d\x22\x88\x66\x38\x68\xb2\xa8\x27\x4c\x19\xe7\xec\xf5\xeb\x17\x3b\x91\xe1\xdf\x2a\xeb\xc1\x19\xe9\xb0\x8d\x3b\x7e\xf3\x03\x68\x62\x0f\x36\x83\xee\x40\xfd\xfd\xdd\x12\x0a\x53\x8d\x6f\x40\x47\xcd\x79\x3a\x85\xef\x58\x6a\x21\xa1\x3d\xd7\xb3\xa9\x26\xce\x0c\x91\x69\xe4\x37\x01\x94\xe5\xd8\x58\x00\x15\x63\x44\x58\x89\xd4\x91\xba\x0e\x98\xdf\xa1\xea\xd4\xfd\xa9\x2b\x47\x86\xaf\x5f\x0e\xe7\xd7\x28\x5c\xdb\x1c\x3f\x1b\x91\x8e\xdf\x7c\x1b\xaf\x9e\x2b\x42\x7e\x22\xb9\xb3\x31\xae\x35\x27\x86\xda\x1f\x87\x71\x2b\xba\x1f\x74\x64\x34\x41\x31\x2d\x18\xcc\xc7\xaa\xab\x53\xbf\x81\x45\x33\xb7\x46\x58\xe6\xc1\xa0\x27\x26\x69\x28\x99\x44\x44\xef\x84\x98\x3e\xe0\x8c\xf1\xdc\x0f\x3e\xe5\x50\x3b\xfb\x8c\x8f\xd8\x64\xcf\x3f\xe7\x52\x64\xd2\x0c\x1b\xd5\x1d\xf2\x36\xcc\x46\x8c\xb8\x63\x89\x69\x73\xba\x3c\xc7\xbc\xb1\x98\x71\x83\xa2\x2e\xc4\xe5\x68\x2c\xeb\x16\x0e\xf5\xcb\x89\x03\x3c\x95\xe9\xa3\xcb\xbc\xd3\xcc\x90\xd1\x0e\xc3\x31\xb7\x87\xfc\xde\x61\x70\xad\x05\xad\x28\x64\xd6\x1c\x6b\xa9\x06\xb6\x5b\x49\x15\xba\xce\xda\xee\x0f\x52\xd8\x7c\xfc\xc5\x48\x8e\xf9\xc1\x39\x58\xf5\x93\xf7\xad\xbe\x8c\x7e\xf7\x52\x9e\x91\xd7\xf6\x0f\xf5\x34\x34\x06\xfa\x87\x6c\x48\xaf\xee\xba\xeb\xdb\x32\x54\x54\xc9\xe3\xd0\x6f\xf7\xab\xdf\xf2\xed\x55\x33\x77\x91\x15\x80\x08\x69\x5e\x9d\x2f\xc7\xd3\x4d\x75\xc9\xd9\x84\x9d\xcd\x14\x47\x43\x6d\xb7\xc4\x9a\x3d\x13\x39\x9d\x7f\x62\x41\xc5\x51\xe0\xa4\xf9\xc5\xd5\xd4\x19\xd7\xf7\x45\x19\xd9\x47\xd7\x2a\xd3\xb9\x7b\x17\xe4\x39\xdd\xf2\x73\x8d\xae\x95\xd8\xe6\x18\xd1\xfa\xc3\x4b\xc7\x55\x7e\x32\xb2\x4e\xfa\x9e\x7c\x68\x93\x74\x9e\xa3\xe7\x7e\x6b\x0d\xe3\x58\xd6\x9c\xaa\x9c\xde\xd1\xfb\x3f\x00\x00\xff\xff\x69\xed\x3d\xf3\x2a\x0b\x00\x00" func lockedtokensUserGet_total_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -4579,11 +4580,11 @@ func lockedtokensUserGet_total_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_total_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x55, 0x8, 0x27, 0xe, 0x25, 0x30, 0xdf, 0xb4, 0x9b, 0xdf, 0x6d, 0x5, 0xd5, 0xf1, 0xd8, 0x3a, 0xef, 0xc2, 0x45, 0x3a, 0xa1, 0xd2, 0x90, 0x9, 0xf6, 0x54, 0x3c, 0xdb, 0x11, 0x6e, 0xa9, 0x9e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1b, 0xa, 0x98, 0x52, 0xac, 0x67, 0xd6, 0x22, 0x47, 0xdd, 0xb3, 0x76, 0x45, 0x60, 0x8, 0x86, 0xbd, 0x8b, 0x86, 0x74, 0x3b, 0xb, 0x80, 0x9e, 0x19, 0x46, 0xa1, 0xda, 0xfe, 0x3f, 0x6a, 0xa6}} return a, nil } -var _lockedtokensUserGet_unlock_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x1e\x39\x48\x72\xc9\x49\x3c\x14\xb5\x14\x41\x14\x72\x28\x62\x7f\xc0\x66\x33\xa9\x4b\x37\x3b\x61\x76\x16\x05\xf1\xbf\x4b\x12\xad\x55\x3b\x97\x85\xd9\xf7\xbe\x37\xcf\x0f\x23\x8b\xa2\x61\x77\xa0\xee\x99\x0f\x14\x13\x7a\xe1\x01\xc5\xe9\xaa\x30\xc6\x3a\x47\x29\x95\x36\x84\x0a\x7d\x8e\x18\xac\x8f\xa5\x75\x8e\x73\xd4\x15\x36\x5d\x27\x94\x52\xb5\xc2\xee\xde\xbf\x5d\x5d\xe2\xdd\x18\x00\x08\xa4\x08\x33\x68\xb3\x48\x1f\x63\xcf\x4f\xd4\xe3\x06\x7b\xd2\xaf\xdd\x37\xa6\x9a\x2d\xd3\xd4\xce\x8e\xb6\xf5\xc1\xab\xa7\x54\xb7\x2c\xc2\xaf\xd7\x17\xa7\x17\xd5\xf3\xf3\xc0\xa1\x23\xb9\x2d\x8f\xc6\x69\x7e\xc9\x9a\xbf\xe1\xdb\xdc\x06\xef\xb6\x56\x5f\x8e\xa6\x9f\xdc\xf5\x1a\xa3\x8d\xde\x95\xc5\x1d\xe7\xd0\x21\xb2\x62\x49\x87\x85\x50\x4f\x42\xd1\x11\x94\x31\xce\x18\xfc\xc3\x17\xd5\x52\x5c\x48\xb3\xc4\xb3\xdd\xeb\x3d\xe9\x2e\x4e\x3f\x8d\x1f\xbc\x96\x95\xf9\x30\x9f\x01\x00\x00\xff\xff\x4e\xa6\xd0\xc0\x87\x01\x00\x00" +var _lockedtokensUserGet_unlock_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcb\x6a\xf3\x30\x10\x85\xf7\x7a\x8a\x43\x16\x3f\xf6\x26\xfc\x8b\xd2\x45\x68\x1b\x82\xed\xd2\x12\xd3\x84\x5c\x1e\x40\x96\xc7\xa9\x88\xac\x31\xb2\x44\x53\x42\xde\xbd\xd8\x6e\xd3\xf4\x42\x67\x33\x30\x73\xe6\x9b\xc3\xd1\x75\xc3\xce\x23\x67\xb5\xa7\x72\xc3\x7b\xb2\x2d\x2a\xc7\x35\xfe\x1f\xf2\x45\x32\xcf\xd2\xcd\x62\x9e\x3d\xcd\xd2\x74\x95\xad\xd7\x42\x34\xa1\x40\x15\x2c\x6a\xa9\x6d\x24\x95\xe2\x60\xfd\x04\xb3\xb2\x74\xd4\xb6\xf1\x04\xdb\x7b\x7d\xb8\xbe\xc2\x51\x08\x00\x30\xe4\x61\x7a\xf2\x6c\x90\x3e\xda\x8a\x57\x54\xe1\x16\x3b\xf2\xef\xb3\x0f\x4c\xdc\x9f\x74\x35\xde\x91\x4f\x64\x23\x0b\x6d\xb4\x7f\xbd\xf9\x77\x69\x6e\xdc\xb7\x07\x36\x25\xb9\xe3\x97\x45\xfe\xfd\xd1\xe9\x2e\x3a\x23\xbb\xfa\x5b\xbd\x0c\x85\xd1\x6a\x29\xfd\xf3\xf9\xe8\xc2\x51\xc1\xce\xf1\x4b\xf4\x39\x99\x4e\xd1\x48\xab\x55\x34\x4a\x38\x98\x12\x96\x3d\x06\x11\x24\x1c\x55\xe4\xc8\x2a\x82\x67\x34\x3d\x18\x3f\x1e\x8e\xe2\x21\x24\x47\x3e\x38\xfb\x6b\x4e\x5d\x10\x5b\xdb\x6d\x72\x5d\x6b\x1f\xc5\xe2\x24\xde\x02\x00\x00\xff\xff\xd0\xf0\x69\xcd\xb1\x01\x00\x00" func lockedtokensUserGet_unlock_limitCdcBytes() ([]byte, error) { return bindataRead( @@ -4599,11 +4600,11 @@ func lockedtokensUserGet_unlock_limitCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_unlock_limit.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6f, 0xf9, 0x2, 0x6b, 0x3a, 0x2a, 0x9b, 0x2f, 0xb6, 0xec, 0x74, 0x3b, 0x63, 0xa6, 0x99, 0x2e, 0x44, 0xaa, 0xa7, 0xfd, 0xf7, 0x7f, 0x81, 0xb1, 0x1c, 0x70, 0xf, 0xe3, 0xf1, 0x6f, 0xe4, 0xd4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0xb1, 0x1b, 0x25, 0xfc, 0xa2, 0xd7, 0x60, 0x50, 0x3e, 0x8f, 0x7, 0xc4, 0x89, 0xbf, 0xd, 0xaf, 0x1c, 0x92, 0x84, 0x7c, 0xdb, 0x16, 0xed, 0xc2, 0x7e, 0x4e, 0xf5, 0xa7, 0x92, 0x81, 0x2c}} return a, nil } -var _lockedtokensUserWithdraw_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x93\x41\x6f\xd4\x30\x10\x85\xef\xf9\x15\xa3\x1c\xaa\x44\x02\xf7\x82\x38\xac\x0a\x15\x20\x55\x1c\x90\x40\x50\xca\x79\xea\x4c\x1a\xab\x8e\x27\xb2\xc7\x4d\x11\xea\x7f\x47\x76\xe2\xb0\x01\x2d\xe2\x82\x2f\xd6\xda\xf3\xde\xbc\xcf\xb3\x31\xe3\xc4\x5e\xe0\x2a\xba\x3b\x73\x6b\xe9\x9a\xef\xc9\x41\xef\x79\x84\x7a\x77\x56\x57\xa5\xd2\xf2\xbc\xab\x2a\xbf\xb7\x8a\x0f\xac\xef\xa9\xcb\x67\x61\x2d\x3a\x3e\xaa\xab\x4a\x3c\xba\x80\x5a\x0c\xbb\x06\x47\x8e\x4e\x0e\xf0\xf5\xca\x3c\xbe\x7c\xd1\xc2\x8f\xaa\x02\x00\xb0\x24\x30\xb0\xed\xc8\x7f\xa6\xfe\x00\x18\x65\x68\x8e\x5d\x54\xde\x3e\x4e\xe4\x31\xd9\x84\x67\x7b\x04\xf5\xcd\xc8\xd0\x79\x9c\x5b\x38\xfb\x53\xf6\x3e\x1b\x6f\x7d\x1e\x30\x5a\xf9\xd5\xe6\xa4\xd1\x86\xaa\x6e\x92\x62\x09\x3a\x79\x9a\xd0\x53\x83\x5a\xcb\x6a\xf0\x96\xbd\xe7\xf9\x06\x6d\xa4\x16\xce\xde\x68\x9d\x08\x13\x19\xac\x2b\x90\xed\xd5\x46\x07\xaf\x20\x89\x55\x10\xf6\x78\x47\xea\x36\xcb\x2f\xfe\x07\xf2\xeb\x26\xcd\xe3\x00\xa7\xee\xbf\x2c\x11\x3e\xa1\x0c\xed\x96\x36\xad\xcb\x4b\x98\xd0\x19\xdd\xd4\xd7\x03\xc1\xe4\xcd\x88\xfe\x3b\xc4\x40\x3e\x65\x4f\x7c\xd0\x31\x05\x70\x2c\x30\xe0\x03\x01\x3a\xc0\x10\x58\x1b\x14\xea\xc0\xe6\x7e\xa5\xb4\x6e\xab\xfd\x53\x94\x01\xfc\xed\x25\xfe\x75\x2a\x05\xf1\x7c\x35\x39\xef\xcb\x7d\xbe\x3e\x85\xf5\x8e\xa3\xed\x72\xfc\xa5\x29\x24\x19\x48\xfe\xa3\xe7\x78\xe0\xa9\xaf\x17\xf5\xd3\x12\x9f\x1e\x49\x47\xa1\xdf\xe7\x5a\x60\x54\x47\x13\x07\x23\x6b\x9e\x8b\xe7\xfb\xa9\xab\x79\x45\xd8\xbe\x80\x65\x6f\x4b\x8f\xa7\xea\x67\x00\x00\x00\xff\xff\x10\x94\xa0\x76\x9c\x03\x00\x00" +var _lockedtokensUserWithdraw_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6f\xb2\x40\x10\xc6\xef\x7c\x8a\x89\x87\x37\x70\x78\xb1\x87\xa6\x07\x62\x6b\xac\x62\xdb\x48\xb4\xf1\x4f\x7b\x5e\x97\x41\x88\xb8\x43\x96\xa1\x98\x34\x7e\xf7\x66\x41\x88\x98\x9a\x74\x2f\x9b\xec\xf3\xcc\x3c\xbf\x9d\x4c\x72\xc8\x48\x33\x4c\x0b\xb5\x4b\xb6\x29\xae\x69\x8f\x0a\x22\x4d\x07\xb8\x3b\x4e\x37\xf3\x97\xb7\xe7\xc0\x5f\x2f\x66\xfe\x7c\x34\x99\x2c\xfd\xd5\xca\x6a\x0a\x52\x2a\xbb\xe6\x60\xf1\xf9\x9b\x31\x20\xb9\xc7\xb0\xb2\xe6\x8d\x37\x58\x8c\x67\xfe\xa4\xe3\xb6\x58\x0b\x95\x0b\xc9\x09\x29\x5b\x1c\xa8\x50\xec\xc1\x66\x9a\x1c\x1f\xee\x1d\xf8\xb6\x2c\x00\x80\x14\x19\x62\x4a\x43\xd4\x4b\x8c\x3c\xf8\x77\xd9\xda\xad\xae\xd7\x4a\x6d\xcd\x5f\xa2\x48\xb9\xf6\xb6\xbc\xee\x87\x79\xac\x1b\x66\x1a\x33\xa1\xd1\x16\x52\xb2\x07\xa3\x82\xe3\x91\x94\x26\xda\x44\xc2\xf9\xe4\x98\x46\x6e\x1b\x0b\x8f\x60\xdc\xee\x96\xb4\xa6\x72\x70\x93\xe1\xc9\x36\x7f\xf5\xe0\x96\xbe\x62\xd2\x62\x87\xef\x82\x63\xa7\x8d\x32\x67\x38\x84\x4c\xa8\x44\xda\xbd\x31\x15\x69\x08\x8a\x18\xea\x30\x10\xa0\x31\x42\x8d\x4a\x22\x30\xc1\x45\xb7\x9e\x63\x75\x79\x9b\x9f\x5f\xe3\x5e\x8d\xa1\xa1\xec\xe7\x35\x4e\x3f\x6a\xf4\x4a\xfe\x33\x99\x29\x03\xae\xd6\xa1\x4a\x36\xa0\xbd\xba\xfa\x54\x93\xe1\x11\x65\xc1\x78\x3d\xd7\x86\xd3\x0d\x31\xa3\x3c\xe1\x33\xcf\xe0\x7f\x77\xea\x6e\x99\x70\x1c\x6a\x51\xb6\xab\x51\xdf\x4e\x93\x71\xb2\x7e\x02\x00\x00\xff\xff\x0b\xcc\x3c\x2f\xc9\x02\x00\x00" func lockedtokensUserWithdraw_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4619,11 +4620,11 @@ func lockedtokensUserWithdraw_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/withdraw_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9b, 0xeb, 0x8e, 0xc2, 0xbe, 0x58, 0xf9, 0x1, 0x8a, 0x51, 0x9, 0xe7, 0x16, 0x2a, 0x38, 0xa2, 0xab, 0x0, 0xe5, 0x81, 0xa7, 0x55, 0x73, 0xaf, 0xb7, 0x5c, 0x78, 0x54, 0x71, 0x19, 0x9a, 0xd5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x9e, 0xfa, 0x63, 0x21, 0x9d, 0x83, 0x7b, 0xab, 0x3e, 0x34, 0x39, 0x94, 0xe9, 0x36, 0xc, 0xbd, 0x5b, 0x16, 0x4, 0xae, 0xf1, 0x49, 0x8f, 0x56, 0xa7, 0xec, 0x6b, 0xcf, 0x6c, 0xb8, 0x32}} return a, nil } -var _nodeversionbeaconAdminChange_version_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x4f\x6f\xd4\x40\x0c\xc5\xef\xf9\x14\x4f\x39\x94\xec\x25\xb9\x20\x0e\x11\x4b\xd5\x45\x42\xe2\x82\xaa\x42\x7b\x1f\x66\x9c\xcd\x48\x89\x1d\x79\x3c\x2c\x7f\xd4\xef\x8e\x92\x2c\x50\x35\x6c\x8f\xb1\xc7\xef\xf7\x9e\x9d\x38\x4e\xa2\x86\x4f\x12\xe8\x81\x34\x45\xe1\x03\x39\x2f\x8c\x4e\x65\x44\xb9\xa9\x97\x45\xd1\x34\x0d\xbe\xa8\xe3\xe4\xbc\x45\x61\x58\xef\x0c\x6e\x18\xe4\x94\x9e\xea\xdc\x84\x31\x32\x4c\xe0\x7b\xc7\x47\x5a\xc6\xac\x27\x04\xea\x22\x53\xc0\xb7\xf5\xd9\xfd\x14\x9c\xd1\x21\x77\x1d\x69\x51\xd8\x3f\xdd\x8a\xe9\xf4\x41\x89\x7e\xd2\x2d\x69\x94\xd0\xe2\xfe\x23\xdb\x9b\xd7\x3b\xfc\x2a\x0a\x60\xa0\xff\xb8\x5e\x98\x77\xd4\xb5\xb8\xda\xf4\xea\xa5\x39\x8f\x4e\x4a\x93\x53\xaa\x9c\xf7\xd6\xc2\x65\xeb\xab\x83\xa8\xca\xe9\xc1\x0d\x99\x76\xb8\xba\xf1\x5e\x32\xdb\x4c\x02\x80\xa6\xc1\xda\x87\x83\x52\x47\x4a\xec\x69\x4e\x36\xc7\xd9\x24\x8e\xe3\x34\xd0\x48\x6c\x91\x8f\x50\x4a\x92\xd5\xd3\xa2\x93\x68\xe8\xea\x8b\x9e\xb1\xc7\x6c\xa8\x4e\x26\xea\x8e\x54\x7f\x5d\x90\x6f\x2f\x05\x79\xb7\x48\x02\xd5\x7c\xa8\x76\xbb\x8a\xf5\xd5\xe7\x55\xec\xd6\x59\xbf\x3b\x0f\x5c\x5f\x63\x72\x1c\x7d\x55\xbe\x97\x3c\x04\x7e\x65\x58\x51\x97\x34\x70\x77\x0e\x51\xce\x12\x8f\xf3\x06\xe9\x3b\xf9\x6c\x74\xde\xcf\xcb\xb9\xea\x44\xf6\xa7\x21\x99\x83\xd3\x1f\x4f\xcf\xba\x3d\xf3\xb3\xc2\x5f\xe8\x24\xc9\x56\xe0\xd6\xe8\xf1\x65\xc6\x0e\xfb\xfd\x73\x5d\xb4\x28\xd7\x6f\x4c\x6b\xe1\xe4\x12\x58\x0c\x79\xf9\x25\x43\xb9\x80\x1f\x8b\xdf\x01\x00\x00\xff\xff\x1f\xd2\xbe\x76\x23\x03\x00\x00" +var _nodeversionbeaconAdminChange_version_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\xc1\x6e\xdb\x4c\x0c\x84\xef\x7a\x8a\x81\x0f\xff\x6f\x5f\xac\x1e\x8a\x1e\x84\xba\x81\x1c\xbb\x40\x2e\x76\x60\x37\xb9\x6f\x77\x29\x6b\x01\x89\x14\x28\xaa\x4e\x5b\xe4\xdd\x0b\x49\x6e\x1b\x44\x75\x8e\x5a\x92\xdf\xcc\x90\x8a\x75\x23\x6a\xd8\x49\xa0\x47\xd2\x36\x0a\xaf\xc9\x79\x61\x14\x2a\x35\xde\x3d\xed\xf6\x9b\xed\xe3\xf6\x70\xbc\xdb\xef\xd6\xdb\xfc\x76\xbf\xcb\x37\x9b\xc3\xf6\x78\x4c\x92\x34\x4d\xf1\x45\x1d\xb7\xce\x5b\x14\x86\x95\xce\xe0\xaa\x4a\xce\xed\x4b\x5c\x1e\xea\xc8\x30\x81\x2f\x1d\x9f\x68\x18\xb3\x92\x10\xa8\x88\x4c\x01\xdf\xc6\xb6\x87\x26\x38\xa3\x75\x57\x14\xa4\x49\x62\x7f\xb9\x73\xa6\xf3\x67\x25\xfa\x41\xf7\xa4\x51\x42\x86\x87\x3b\xb6\x0f\xef\x17\xf8\x99\x24\x40\x45\xff\x30\x3f\x68\x1e\xa8\xc8\xf0\xdf\xa4\xb6\x1c\x8a\xfd\x68\xa3\xd4\x38\xa5\xb9\xf3\xde\x32\xe4\x9d\x95\xb9\xf7\xd2\xb1\xf5\x68\x00\x48\x53\xac\x45\x55\xce\x70\x50\x2a\x48\x89\x3d\xf5\x51\x7a\xff\x93\x88\xb1\x6e\x2a\xaa\x89\x2d\xf2\x09\x4a\xad\x74\xea\x69\xe0\xb4\x54\x15\xcb\xab\x26\xb1\x42\xef\x60\xf9\x75\x90\xfa\x78\xcd\xf1\xa7\x01\x05\xcc\xfb\xc3\x64\xd3\xcc\x63\xd7\xd1\x44\xdd\x89\xee\x9d\x95\x8b\xcb\xc0\xcd\x0d\x1a\xc7\xd1\xcf\x67\xb7\xd2\x55\x81\xff\x37\x8c\x52\xd7\x18\x38\x5c\xcc\xcf\x7a\xc4\x73\xbf\x2a\x7a\x22\xdf\x19\x5d\xf6\xf2\x76\x9e\x65\x4b\xf6\xbb\x20\x1d\x07\xa7\xdf\x5f\xde\x6f\x7a\xcf\x57\x0f\x7f\x44\x1b\x69\x6d\x14\x9c\x1a\x3d\xbd\xad\xb1\xc0\x6a\xf5\x9a\x8b\x0c\xb3\xf1\x1b\xcd\xf8\x70\x76\x2d\x58\x0c\xdd\xf0\xef\x85\xd9\x20\xfc\x9c\xfc\x0a\x00\x00\xff\xff\x20\x17\x63\x91\x13\x03\x00\x00" func nodeversionbeaconAdminChange_version_freeze_periodCdcBytes() ([]byte, error) { return bindataRead( @@ -4639,11 +4640,11 @@ func nodeversionbeaconAdminChange_version_freeze_periodCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/change_version_freeze_period.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4c, 0x60, 0x96, 0xf7, 0x76, 0x86, 0xbe, 0x53, 0x4e, 0x92, 0x54, 0x6, 0xb1, 0x20, 0x8d, 0x20, 0xf8, 0x11, 0x29, 0xfe, 0x14, 0x3e, 0xf6, 0x77, 0xe1, 0x2, 0x7a, 0xf3, 0x56, 0x5f, 0x27, 0xd3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x85, 0x64, 0xe7, 0xfd, 0x12, 0xa9, 0xc4, 0xb2, 0xa7, 0x40, 0x45, 0xbd, 0xde, 0xe5, 0xb6, 0xcf, 0x5f, 0xae, 0x29, 0x72, 0xaa, 0x59, 0x3a, 0x38, 0xc, 0xe5, 0xbc, 0xbf, 0xc4, 0x20, 0x97, 0xd9}} return a, nil } -var _nodeversionbeaconAdminDelete_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xd4\x30\x10\xbd\xe7\x2b\x9e\xf6\x50\xb2\x97\xe4\x82\x38\x44\x40\xd5\xa5\x07\xb8\x20\x54\x96\xde\x67\x9d\xc9\xc6\xc2\xf1\x58\xce\x84\x82\x50\xff\x1d\xd9\xc9\xb6\x8b\xd2\x45\x5c\xfd\x66\xde\xbc\xf7\xfc\xec\x10\x24\x2a\x3e\x4b\xcb\xf7\x1c\x47\x2b\x7e\xc7\x64\xc4\xa3\x8b\x32\x60\xb3\x7a\xdf\x14\x45\x5d\xd7\xd8\x47\xf2\x23\x19\xb5\xe2\xa1\x3d\x29\xc8\x39\x79\x18\xcf\x79\x6e\xda\xc1\x7a\xa8\xa0\x65\xc7\xca\xd0\x9e\xf3\xea\x8f\x19\xc6\x41\x26\xdf\x52\xfc\x85\x81\x42\xb0\xfe\x88\x34\xdd\xf3\x09\xdf\xd3\xc1\x31\x48\xf3\xdb\x18\xd8\xd8\xce\x72\x9b\x19\x0e\x4e\xcc\x77\xf4\x6c\x8f\xbd\x22\x50\xa4\x81\x95\x63\x51\xe8\xb3\xa8\x32\xcf\x7c\xcc\x23\xbb\xe5\xd0\x5e\x6e\xb3\x92\x06\xdf\x3e\x79\x7d\xf3\x7a\x8b\xdf\x45\x01\x38\x7e\xc1\x7e\x16\x7f\xc7\x5d\x83\xab\x15\x56\x65\x30\xad\x86\xc8\x81\x22\x97\x64\x8c\x36\xa0\x49\xfb\x72\x27\x31\xca\xc3\x3d\xb9\x89\xb7\xb8\xba\x31\x46\x26\xaf\xe9\x12\x00\xd4\x35\x66\x1c\x84\xc8\x1d\x47\xf6\x86\x53\x44\xc9\xe3\x2a\xba\xc8\xa3\x4c\xd1\x70\x5e\x1d\xd9\x75\xd5\x45\x99\x78\x87\xa4\xa1\x1a\x55\x22\x1d\xb9\x3a\xe4\x2b\x6f\x2f\x69\x7f\x9f\x29\x81\x32\x7d\x72\xb3\x76\x3f\x4f\x7d\x9d\xc9\xbe\x90\xf6\xdb\x65\xe1\xfa\x1a\x81\xbc\x35\xe5\xe6\x83\x4c\xae\xf5\xaf\x14\xf3\xa9\x0b\x09\xe2\x6e\xf1\xb0\x49\x0c\x8f\x29\x33\xfe\xc9\x66\x52\x7e\x4e\xe4\xf6\xa9\x1e\x4f\xd5\xc8\xdd\x3b\x7f\xd0\x17\xcb\xf0\x77\x11\x4e\x7d\xfa\x8f\xb8\xaa\xb9\x92\x27\x6c\x59\x3c\xef\x4c\x83\x7f\x14\x68\xf1\xf2\xf8\x27\x00\x00\xff\xff\xb2\x03\xaa\xae\x3c\x03\x00\x00" +var _nodeversionbeaconAdminDelete_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xd3\x40\x10\xbd\xfb\x2b\x9e\x7a\x80\xf4\x12\x73\x40\x1c\x2c\xa0\x72\xea\x48\xf4\x92\xa0\x24\xf4\x3e\x59\x8f\xe3\x15\xf6\x8e\xb5\x1e\xd3\x22\xd4\x7f\x47\xbb\x76\xda\xa0\x34\xa8\xd7\x7d\xf3\xde\xbe\x79\xf3\x6c\xdb\x89\x57\xac\xa4\xe4\x7b\xf6\xbd\x15\xb7\x60\x32\xe2\x50\x79\x69\xf1\xe1\x71\xb5\x2e\x96\xf7\xcb\xcd\xf6\x6e\xbd\x5a\x2c\xf3\xdb\xf5\x2a\x2f\x8a\xcd\x72\xbb\x4d\x92\x34\x4d\xb1\xf3\xe4\x7a\x32\x6a\xc5\x41\x6b\x52\x50\xd3\xc8\x43\x7f\x2a\x97\x97\xad\x75\x50\x41\xc9\x0d\x2b\x43\x6b\x8e\xd4\x5f\x23\x8c\xbd\x0c\xae\x24\xff\x1b\x2d\x75\x9d\x75\x07\x84\xe9\x9a\x8f\xf8\x8e\xf6\x0d\x83\x34\xbe\xf5\x1d\x1b\x5b\x59\x2e\xa3\xc2\xbe\x11\xf3\x13\x35\xdb\x43\xad\xe8\xc8\x53\xcb\xca\x3e\x49\xf4\xc5\xd4\x2c\xce\x7c\x8b\x23\x8b\xe9\xa3\x9d\x14\xd1\x49\x86\x1f\x77\x4e\x3f\x7d\xbc\xc6\x9f\x24\x01\x1a\x7e\x25\x85\x68\x7e\xc3\x55\x86\x77\x67\xd8\x3c\x82\x81\xda\x79\xee\xc8\xf3\x8c\x8c\xd1\x0c\xf9\xa0\x75\x6e\x8c\x0c\x4e\x83\x34\x00\xa4\x29\x16\xe2\xbd\x3c\x80\xe0\xb9\x62\xcf\xce\x70\xc8\x24\x2c\x75\x96\x95\xe7\x5e\x06\x6f\x38\x52\x7b\x6e\xaa\xf9\x45\x5f\xf8\x82\xf0\xe9\x7c\x1f\xd5\x3f\x5f\x32\xf9\x35\x4a\x01\xb3\x70\xd4\xec\x7c\xcd\x71\x6a\xab\xe2\xe9\xc0\xdf\x49\xeb\xeb\x89\x70\x73\x83\x8e\x9c\x35\xb3\xab\x5b\x19\x9a\xd2\xbd\x57\x8c\x5f\x5d\x88\x0a\x9b\xc9\xfb\x55\x50\x78\x0a\xe1\xf0\x23\x9b\x41\xf9\x25\x89\xe2\xb9\x07\xcf\x1d\x88\x5d\x3b\x7d\xd0\x57\xaf\xfe\xef\xc5\x8f\xc5\x79\x43\x4c\xf3\xb1\x7b\x47\x6c\x22\x9e\x96\x23\xc3\x7f\x9a\x32\xed\xf2\xf4\x37\x00\x00\xff\xff\xfb\x0f\x35\x18\x2c\x03\x00\x00" func nodeversionbeaconAdminDelete_version_boundaryCdcBytes() ([]byte, error) { return bindataRead( @@ -4659,11 +4660,11 @@ func nodeversionbeaconAdminDelete_version_boundaryCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/delete_version_boundary.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xce, 0xdd, 0x99, 0x3c, 0x5e, 0x76, 0xfe, 0x27, 0x22, 0xe4, 0x7b, 0x78, 0x77, 0x89, 0xb6, 0x82, 0x89, 0x60, 0x66, 0xee, 0x3b, 0x76, 0xe7, 0xef, 0x52, 0xe7, 0xe7, 0x7a, 0x6b, 0x65, 0x71}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xc4, 0xca, 0x36, 0x2a, 0xbe, 0xa6, 0xf1, 0x75, 0x8f, 0xd5, 0x82, 0x0, 0x82, 0xf0, 0x4c, 0x1b, 0xa5, 0xf5, 0xc6, 0x85, 0x25, 0xc3, 0x9c, 0xbe, 0xbe, 0xda, 0x83, 0xf4, 0x4d, 0xfe, 0x32}} return a, nil } -var _nodeversionbeaconAdminHeartbeatCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x41\x6f\xe2\x40\x0c\x85\xef\xf9\x15\x4f\x39\xb0\xe1\x92\xdc\xd1\xee\x22\xe0\xd2\x53\x55\x51\x89\xbb\x99\x38\x64\xa4\x64\x1c\x79\x9c\x52\xa9\xe2\xbf\x57\x64\x28\x45\xa2\xa2\x73\x1a\x7b\xec\xef\x3d\x7b\x7c\x3f\x88\x1a\x9e\xa5\xe6\x1d\x6b\xf4\x12\xd6\x4c\x4e\x02\x1a\x95\x1e\xf9\x5d\x3e\xcf\xb2\xaa\xc2\x86\xba\x2e\xc2\x5a\x46\xcf\xd6\x4a\x0d\x6b\xc9\xc0\xbd\xb7\x94\x35\xda\x77\x8c\xa3\xb7\x76\x0a\x7d\x70\xd2\xfb\x70\xc0\x5b\x42\xc5\xcc\x94\x42\x24\x67\x5e\x42\x31\xc7\x47\x96\x01\x40\xc7\x3f\x18\x79\x62\x52\xdb\x33\xd9\x96\x9b\x05\x66\x77\xef\xe5\xb5\x20\x41\x06\xe5\x81\x94\x0b\x72\xce\x16\xa0\xd1\xda\x62\x2d\xaa\x72\xdc\x51\x37\xf2\x1c\xb3\x95\x73\x32\x06\x3b\xab\xe2\x72\xaa\x0a\xa9\x06\x04\xe5\x86\x95\x83\x63\x98\x4c\xe6\x6f\x14\x57\x75\xef\x03\x94\xa3\x8c\xea\xf8\xda\x1e\xb9\x6b\xca\x87\xc6\xf1\x0f\x67\x3f\x65\x34\x51\x3a\x70\xb9\x9f\xd4\xfe\x3e\x9a\xe6\xff\x15\x0f\x14\xe7\xcf\x58\xdc\xef\xe6\xbb\xfa\x35\x81\x5f\xc8\xda\xf9\x4d\xe3\x72\x89\x81\x82\x77\x45\xbe\x91\xb1\xab\xc3\x1f\x43\x92\x7e\xc4\xc2\xf6\x32\x60\x9e\x50\x27\x00\xd3\x85\xdf\xd9\x8d\xc6\x37\x8b\xfb\x7d\xf2\xb2\xfd\x0a\x8a\x0b\x2d\x3b\x7d\x06\x00\x00\xff\xff\x23\xcb\x77\xbd\x74\x02\x00\x00" +var _nodeversionbeaconAdminHeartbeatCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x6f\x82\x40\x10\x85\xef\xfc\x8a\x17\x0f\x2d\x5e\xa0\x67\xd3\xd6\xa0\x92\xb4\x17\x6c\x20\xf1\xbe\x2e\x83\xbb\x09\xec\x90\x65\xa8\x26\x8d\xff\xbd\x11\xac\x35\xb1\xb1\x7b\xda\xd9\x9d\x79\xef\x9b\x67\x9b\x96\xbd\x20\xe3\x92\x36\xe4\x3b\xcb\x6e\x41\x4a\xb3\x43\xe5\xb9\xc1\xd3\x21\x5b\xaf\xd2\x4d\x9a\x17\xef\xeb\x6c\x91\x26\xcb\x75\x96\xac\x56\x79\x5a\x14\x41\x10\xc7\x58\xaa\xba\xee\x20\x86\xd0\x90\x18\x2e\x21\x46\x09\xa8\xb1\x32\xbe\x8a\xda\xd6\x84\xbd\x15\x33\x94\xd6\x69\x6e\xac\xdb\xe1\x73\x74\xea\x02\xf1\xca\x75\x4a\x8b\x65\x17\x4e\xf1\x15\x04\x00\x50\xd3\x1f\x3c\x6f\xa4\xbc\x6c\x49\x49\x4e\xd5\x0c\x0f\x37\xff\xd1\xa5\x61\x14\x69\x3d\xb5\xca\x53\xa8\xb4\x96\x19\x92\x5e\x4c\xa2\x35\xf7\x4e\x4e\x36\x38\x9f\x38\xc6\x82\xbd\xe7\x3d\x14\x3c\x55\xe4\xc9\x69\x82\xf0\x40\x7b\x65\x91\x94\x8d\x75\xf0\xd4\x71\xef\x35\x5d\xc6\x3b\xaa\xab\xe8\x2e\x29\x5e\x70\x02\x88\xb6\x83\xcb\xf3\x3d\xec\xd7\x8b\x2c\x10\x9e\xc2\x9f\xdd\x86\xf0\xdb\x5d\x08\x7b\xb5\xa3\x0f\x25\x66\x7a\x35\x38\x9f\xa3\x55\xce\xea\x70\xb2\xe4\xbe\x2e\xdd\xa3\x60\xb4\xbe\xa7\x85\xfc\xbc\xd8\x64\x94\x3a\x02\x18\x2e\x74\x20\xdd\x0b\x5d\x05\xf6\xff\xc6\x91\xf9\x29\xc2\xb3\x5a\x70\xfc\x0e\x00\x00\xff\xff\x54\xf5\x87\x79\x64\x02\x00\x00" func nodeversionbeaconAdminHeartbeatCdcBytes() ([]byte, error) { return bindataRead( @@ -4679,11 +4680,11 @@ func nodeversionbeaconAdminHeartbeatCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/heartbeat.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9f, 0x2e, 0x33, 0xc2, 0x68, 0xee, 0x46, 0xb8, 0xb7, 0xd6, 0xdc, 0x46, 0x84, 0x75, 0x4a, 0xb1, 0xc1, 0x19, 0x4b, 0xaf, 0x3d, 0xb9, 0x5, 0x88, 0x7d, 0xd2, 0x59, 0x36, 0x2b, 0x5e, 0x7, 0x29}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0x8d, 0x70, 0x49, 0x14, 0x1, 0xa9, 0x56, 0x3d, 0xde, 0xa3, 0xc4, 0xf6, 0xfa, 0x14, 0x16, 0x9a, 0xdc, 0xc3, 0x9d, 0x56, 0xff, 0xb5, 0x96, 0x96, 0xf9, 0xba, 0x4c, 0x8b, 0x8c, 0xb4, 0xb0}} return a, nil } -var _nodeversionbeaconAdminSet_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x6b\xdb\x4e\x10\xbd\xeb\x53\x3c\x7c\xc8\x4f\x06\x23\x5d\x7e\x94\x22\x9a\x06\x27\x14\xda\x43\x43\x48\xdc\xdc\xc7\xab\x91\xad\x56\xda\x55\x77\x47\x76\x4b\xc9\x77\x2f\x2b\xad\x6d\x59\xb2\xa1\x27\xe3\xf9\xfb\xe6\xbd\xa7\x2d\xeb\xc6\x58\xc1\xa3\xc9\xf9\x95\xad\x2b\x8d\xbe\x67\x52\x46\xa3\xb0\xa6\xc6\x6c\x12\x9f\x45\x51\x9a\xa6\x58\x59\xd2\x8e\x94\x94\x46\x43\xb6\x24\xa0\xaa\x32\x7b\x37\x9c\xb3\xcc\xeb\x52\x43\x0c\x28\xcf\x41\xd0\xbc\xc7\xae\xcf\xf8\xa0\x6c\xb9\x1b\x74\x0c\xd1\xba\x62\xe4\x5c\x94\xba\xd4\x1b\xd0\x31\xb1\x36\xad\xce\xc9\xfe\x06\x89\x6f\x82\x90\xdd\xb0\xdc\x57\x46\xfd\xf8\xcc\xe5\x66\x2b\x51\x24\x27\x30\x71\x04\xbf\xe9\x2b\x7d\x37\x36\xc3\xb7\x2f\x5a\xde\x2f\x42\xa8\xd4\xe3\xd0\x13\x89\xda\x8e\x42\x96\x9f\xb9\x62\x72\x9c\xe1\x45\x6c\xa9\x37\x77\x3e\xb3\x3e\xad\xeb\xeb\xdf\xfd\x1f\xcd\xf1\x27\x8a\x80\x8a\x2f\xb0\xd7\xdd\xfe\xcc\x45\x86\x9b\x49\x2e\xe9\x92\xa1\x53\xf3\xfe\x90\x0c\x77\x66\xd3\x69\xc9\xa8\xc4\xaf\x6d\x2c\x37\x64\x39\x26\xa5\x24\x03\xb5\xb2\x8d\xef\x8d\xb5\x66\xff\x4a\x55\xcb\x73\xdc\x2c\x95\x32\xad\x16\x8f\x12\x00\xd2\x14\x0f\x96\x49\xb8\x23\x71\x28\x46\x27\xb4\x0f\x36\xe4\x1c\xe7\x68\xc8\x52\xcd\xc2\xd6\x75\x8d\xe7\x28\x71\x7b\x01\xde\x0b\xd7\x3b\xb6\x71\x57\x0e\xd4\x3d\xf7\x07\x15\x16\xa8\x7b\xe6\x0f\x1a\x2c\xd0\xf4\xbc\x1f\x14\x58\xf8\x63\x8e\xac\x9f\x89\xd0\x8d\x9c\x47\xdd\x8f\xe3\xaa\x48\xa6\x7c\x5d\x44\x34\xaa\x89\xcf\xf4\x1b\xfc\x59\x1c\x58\xc8\x06\x37\x86\x7d\x69\x8a\x9e\x51\x10\x2c\x17\x6c\x59\x2b\x0e\xd6\x9d\xfa\xdc\xb2\x33\xad\x55\x7c\x82\x7a\xd5\x14\xb8\x85\x57\x2d\x71\x62\x2c\x6d\x38\x59\x77\x5b\x3e\x5c\x73\xca\xc7\xc0\x6b\xec\x85\xba\xe4\x8e\xae\xea\xa5\x1f\xf6\x44\xb2\x9d\x87\x86\xbb\x3b\x34\xa4\x4b\x15\xcf\x1e\x4c\x5b\xe5\xfa\x3f\x41\xbf\xea\xda\x0c\x3c\x87\x23\x66\x7e\xc4\x9b\xa7\x81\x7f\xb1\x6a\x85\x4f\x26\x5a\xe6\xf9\xc4\x41\x81\x93\xb3\x4f\xf9\x1f\x78\x48\x1c\xcb\x58\xa8\xdd\xf8\x63\xb8\xa2\xfa\x11\x60\x63\x9c\x04\x74\xd3\xab\x36\xd3\x05\x5c\x14\xac\xa4\xdc\xf1\x72\xf8\x86\x9c\x99\x62\x9e\x04\x14\x81\x47\x20\x71\x62\x4b\x25\x9f\x7e\xb6\x54\xad\x4c\x7c\x05\xd3\xa1\x6d\x8e\x0c\xb3\xc7\x01\x3f\x7b\x72\xd0\x46\xfc\x43\xc8\xf9\x88\xad\x95\x27\x6b\xd6\x5d\xf3\x16\xfd\x0d\x00\x00\xff\xff\x4f\xa8\x29\x9e\x8d\x05\x00\x00" +var _nodeversionbeaconAdminSet_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\xc1\x6e\xdb\x30\x0c\x86\xef\x7e\x0a\x22\x87\xcd\x01\x02\x7b\x87\x61\x18\x8c\x75\x85\xd3\x06\x58\x0f\x4b\x8b\xa4\xeb\x9d\x91\xe9\x44\x9b\x2d\x79\x12\x9d\x74\x18\xfa\xee\x83\x64\x3b\x71\xec\x04\xd8\xa9\x28\x49\x91\x3f\x3f\xfe\xb1\x2c\x2b\x6d\x18\x96\x3a\xa3\x17\x32\x56\x6a\x35\x27\x14\x5a\x41\x6e\x74\x09\x1f\x5e\x97\x8f\xf7\x8b\x97\xc5\x6a\xfd\xf0\xb8\x9c\x2f\xd2\xbb\xc7\x65\x7a\x7f\xbf\x5a\xac\xd7\x41\x10\xc7\x31\x3c\x1b\x54\x16\x05\x4b\xad\x80\x77\xc8\x80\x45\xa1\x0f\xb6\xdf\x2e\xcd\x4a\xa9\x80\x35\x60\x96\x01\x82\xa2\x03\xec\x9b\x8c\x0b\xf2\x8e\x7c\xa3\x63\x08\x37\x05\x41\x46\xb9\x54\x52\x6d\x01\x8f\x89\x8d\xae\x55\x86\xe6\x0f\x20\xbb\x47\xc0\x68\xb6\xc4\xf3\x42\x8b\x5f\xdf\x48\x6e\x77\x1c\x04\x7c\x12\x13\x06\xe0\x26\x7d\xc7\x9f\xda\x24\xf0\xe3\x41\xf1\xe7\x59\x1b\x92\x6a\x18\x7a\x42\x16\xbb\x41\xc8\xd0\x8a\x0a\x42\x4b\x09\xac\xd9\x48\xb5\xbd\x75\x99\xcd\x69\x5c\x53\xff\xe9\x63\x30\x85\xbf\x41\x00\x50\xd0\x05\x88\x7e\xf7\x15\xe5\x09\xbc\x1b\xe5\x22\x9f\x6c\x5f\x2a\x3a\x74\xc9\x76\xcf\x64\xdc\x2d\x1a\x94\xb8\xb1\x95\xa1\x0a\x0d\x85\x28\x04\x27\x90\xd6\xbc\x4b\x85\xd0\xb5\x62\x27\x0b\x00\x20\x8e\xe1\xce\x10\x32\x79\x6a\x7d\xfa\xfe\xc0\x2e\x58\xa1\xb5\x94\x41\x85\x06\x4b\x62\x32\xd6\x3f\x3c\x97\x05\x37\x17\xf4\xac\xa9\xdc\x93\x09\x7d\x39\x40\xd9\xc0\xee\xb0\xcf\xa0\x6c\x50\x77\xd0\x67\x50\x35\xa0\x3b\xe4\x33\xa7\xfe\x88\xf9\x8c\xba\x6f\x39\x0d\xfc\x1f\x4b\x45\x1e\x8d\x01\x5d\x54\x34\xa8\x09\xcf\x0e\xd6\xfb\x67\xd6\x51\x48\x7a\x3b\xb6\xf3\xe2\x18\xe6\xda\x18\x7d\x00\x04\x43\x39\x19\x52\x82\x5a\xaf\x8e\x8d\x6d\xc8\xea\xda\x08\x3a\x49\xbd\xea\x02\xb8\x01\x77\xa6\x68\xe3\xbb\x7f\xb9\x66\x89\xaf\x2d\xcf\xd0\x1d\xe8\x92\x0d\x7c\xd5\x9a\xb5\xc1\x2d\x3d\x21\xef\xa6\xed\x83\xdb\x5b\xa8\x50\x49\x11\x4e\xee\x74\x5d\x64\xea\x3d\x43\x33\xea\x5a\x0f\x58\xb5\xe2\x27\xae\xc5\x9b\x5b\x9f\x5e\x49\xd4\x4c\x27\xf3\xa4\x59\x36\x72\x4e\xcb\xe2\xec\x37\xfb\x1f\xfb\x47\x96\x78\x78\xa0\xfd\xd0\xf5\x57\xae\x7d\x14\x58\x69\xcb\x8d\xb8\xf1\x52\xdb\x71\x7f\xca\x73\x12\x2c\xf7\x94\xf6\xbf\x15\x67\x5e\x98\x46\xad\x88\xc8\xb2\x91\x82\x17\xbf\x6b\x2c\x9e\x75\x78\x45\x49\x57\xdd\x52\x4f\x60\xb2\xec\xa1\x39\xa0\x05\xa5\xd9\x7d\xec\x28\x1b\x80\x7a\x76\x9c\x26\x7e\x91\xb7\xe0\x5f\x00\x00\x00\xff\xff\x6f\x29\x85\xa7\x78\x05\x00\x00" func nodeversionbeaconAdminSet_version_boundaryCdcBytes() ([]byte, error) { return bindataRead( @@ -4699,11 +4700,11 @@ func nodeversionbeaconAdminSet_version_boundaryCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/set_version_boundary.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0x5f, 0x19, 0x8f, 0xfe, 0x87, 0x52, 0x72, 0x46, 0xb0, 0x81, 0xa2, 0xc2, 0xf7, 0x57, 0xb4, 0x96, 0xcb, 0xa2, 0xcc, 0xe3, 0xf0, 0x47, 0x81, 0x59, 0x45, 0x5f, 0xf7, 0xcb, 0x2a, 0x8e, 0xb5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0x49, 0x35, 0xe6, 0xaf, 0x28, 0x5e, 0xc9, 0x5b, 0x35, 0xf1, 0x3, 0x12, 0x28, 0xdd, 0x59, 0xcb, 0x3b, 0xdf, 0x46, 0xd5, 0xa8, 0x3, 0x78, 0x65, 0xe5, 0xcf, 0xd4, 0x1e, 0xb, 0xa1, 0x5d}} return a, nil } -var _nodeversionbeaconScriptsGet_current_node_versionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xae\xc2\x30\x10\x04\x7b\x7f\xc5\x2a\xcd\x4b\x9a\xa4\x7f\x25\x14\x74\x34\x20\x7a\x63\x5f\xc0\x52\x7c\x87\xce\xe7\x48\x08\xf1\xef\x14\x21\x55\x68\x67\x47\xda\x49\xf9\x21\x6a\x38\x4a\xa4\x0b\x69\x49\xc2\x3b\xf2\x41\x18\xa3\x4a\x46\xb3\xe1\x8d\x73\xc3\x30\xe0\x40\x56\x60\x77\x42\xa8\xaa\xc4\x86\x79\x91\x10\x69\x4c\x4c\x11\x89\x97\x59\xd8\xd4\x07\xfb\x2b\xab\x71\xf6\xd7\x89\x9c\x0f\x81\x4a\x69\xfd\x34\x75\x18\x2b\x23\xfb\xc4\x6d\xf7\xbf\xed\xe8\x4f\x94\x67\x52\xbc\x1c\x00\x28\x59\x55\xfe\x61\xdd\xc8\xf6\x4b\xc9\xca\xa5\x72\xf4\xfa\x6c\xbb\xfe\x7b\xec\xde\xee\x13\x00\x00\xff\xff\x85\x05\xca\x6f\xed\x00\x00\x00" +var _nodeversionbeaconScriptsGet_current_node_versionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4f\xc3\x30\x14\x84\x77\xff\x8a\xdb\x68\x97\x86\x99\xad\x6d\x2c\xc4\xe2\x48\x35\xca\xee\xc4\x2f\x60\x09\x3f\x47\x2f\xcf\x11\x08\xf1\xdf\x19\x42\x26\xba\xde\x7d\xba\xfb\x52\x9e\x8b\x28\x5c\x89\xd4\x93\x2c\xa9\xf0\x85\xc2\x58\x18\x93\x94\x8c\xc7\x4f\xd7\xb5\xb6\xb7\x37\xff\xd2\xb9\x8b\x3d\x5f\x3b\x77\x6e\xdb\x9b\xf5\xde\x98\xa6\x69\xf0\x4c\xba\x40\xdf\x09\x63\x15\x21\x56\xac\xdb\x06\x22\x4d\x89\x29\x22\xf1\x56\x17\x56\x09\xa3\x3e\x2c\x3b\xf1\x1a\x86\x0f\x32\x73\x1d\x30\x55\x46\x0e\x89\x0f\xc7\xa7\xff\x1a\x27\x4f\x79\x25\xc1\xb7\x01\x00\x21\xad\xc2\x77\xa8\x37\xd2\xeb\x66\xb0\xe7\xa5\x72\x0c\xf2\x75\x38\x9e\xfe\x0e\xcd\x8f\xf9\x0d\x00\x00\xff\xff\xd3\x89\x47\xe6\xec\x00\x00\x00" func nodeversionbeaconScriptsGet_current_node_versionCdcBytes() ([]byte, error) { return bindataRead( @@ -4719,11 +4720,11 @@ func nodeversionbeaconScriptsGet_current_node_versionCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_current_node_version.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0xcf, 0xc4, 0xaa, 0x86, 0xfc, 0xd, 0x40, 0xfc, 0xe6, 0xbb, 0xcc, 0x27, 0xcc, 0xf8, 0x3f, 0x97, 0x44, 0xb5, 0x3, 0x35, 0xb9, 0xe4, 0xe4, 0xa6, 0x73, 0x22, 0xa5, 0xc3, 0x50, 0x54, 0x87}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfb, 0x9f, 0x48, 0x25, 0x5e, 0xe5, 0xf5, 0xf3, 0x98, 0x16, 0x65, 0xb7, 0xcc, 0x3c, 0x13, 0x9e, 0xa0, 0x46, 0x5d, 0x48, 0x2a, 0xe8, 0x1, 0xa3, 0x34, 0x78, 0xa7, 0x4e, 0x4e, 0xf4, 0x54, 0xb2}} return a, nil } -var _nodeversionbeaconScriptsGet_current_node_version_as_stringCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\xb1\x4e\x04\x31\x0c\x44\xfb\x7c\xc5\xe8\xaa\xa4\xc9\xf6\x48\x34\x50\xd0\xd1\x80\xe8\x7d\x89\xf7\x88\x94\x75\x90\xe3\x20\x21\xc4\xbf\x23\xed\x06\x9a\x6d\xdf\x8c\xc7\xaf\x6c\x1f\x4d\x0d\xcf\x2d\xf3\x1b\x6b\x2f\x4d\x1e\x98\x52\x13\xac\xda\x36\x5c\x4e\xfc\xe2\xdc\xb2\x2c\x78\x62\xeb\xb0\x77\x46\x1a\xaa\x2c\x86\xcf\xa3\x84\xcc\x6b\x11\xce\x28\xb2\xc7\x13\xbf\xd2\xb5\xf2\x7e\x48\x1d\x84\x17\xd3\x22\xb7\xe8\x28\x25\xee\xdd\x53\xad\x01\xeb\x10\x6c\x54\xc4\x87\xbb\x99\xe3\xdb\x01\x40\x65\xc3\xb5\x0d\xc9\xa4\x5f\xb8\x3f\x9b\xc6\x1b\xdb\xe3\x61\xf1\xc7\x67\xdb\x87\x7d\x40\xd9\x86\xca\xff\x46\x9c\x4e\xd1\xda\xf1\xc7\x07\xf7\xe3\x7e\x03\x00\x00\xff\xff\xb6\xe8\xbb\xb2\x08\x01\x00\x00" +var _nodeversionbeaconScriptsGet_current_node_version_as_stringCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\x31\x4f\xc3\x30\x10\x85\x77\xff\x8a\x37\x26\x4b\xc2\x8c\xc4\xd0\x36\x11\x62\x71\xa4\x1a\x75\x77\xea\x4b\xb1\xd4\x9c\xa3\xcb\x19\x81\x10\xff\x1d\x29\x31\x2c\xac\xdf\xdd\xfb\xde\x8b\xf3\x92\x44\x61\x53\xa0\x0b\xc9\x1a\x13\x1f\xc9\x5f\x13\x63\x92\x34\xe3\xe1\xc3\x0e\x5d\x7f\xe9\xcf\xee\x65\xb0\xc7\xfe\x70\x1a\xec\xa1\xeb\xce\xbd\x73\xc6\xb4\x6d\x8b\x67\xd2\x15\xfa\x46\xb8\x66\x11\x62\xc5\xfb\xee\x40\xa0\x29\x32\x05\x44\xde\xce\x05\xbf\xfa\xf1\x4e\x5b\xd0\xaf\xf0\x70\x2a\x91\x6f\x8d\x59\xf2\x88\x29\x33\x66\x1f\xb9\xaa\x1f\x0b\xc7\x97\x01\x80\x3b\x29\xc6\x94\x39\x78\xf9\xc4\xd3\xff\xa1\xcd\x8d\xf4\xb4\xb7\xff\xf2\xf2\x5d\xd5\x9b\x40\x48\xb3\xf0\x9f\xa3\x29\x5b\x1a\x4d\x7b\x4f\x55\x9b\x6f\xf3\x13\x00\x00\xff\xff\x57\x8d\x58\xd7\x07\x01\x00\x00" func nodeversionbeaconScriptsGet_current_node_version_as_stringCdcBytes() ([]byte, error) { return bindataRead( @@ -4739,11 +4740,11 @@ func nodeversionbeaconScriptsGet_current_node_version_as_stringCdc() (*asset, er } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x95, 0x4a, 0x28, 0x9c, 0x3d, 0x34, 0xab, 0xe4, 0x22, 0xbd, 0x8d, 0x1f, 0x3b, 0x1f, 0xeb, 0x42, 0xe7, 0xa4, 0x2, 0xb1, 0xec, 0x6d, 0x34, 0x10, 0xc1, 0xd8, 0x6c, 0xc2, 0xec, 0xcd, 0x9f, 0x68}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x23, 0x94, 0x82, 0x7f, 0x6f, 0x76, 0x57, 0x6f, 0x57, 0xa5, 0xb0, 0xd3, 0xa9, 0x73, 0x3b, 0xd9, 0x46, 0x6, 0x45, 0x4b, 0x52, 0x3, 0xc1, 0xa9, 0xb5, 0x2e, 0x95, 0x86, 0xce, 0x4b, 0x4e, 0x3a}} return a, nil } -var _nodeversionbeaconScriptsGet_next_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xbf\x6a\xc4\x30\x0c\xc7\xf1\xdd\x4f\xf1\x23\x53\xb2\x34\x7b\x97\x42\x1f\x20\x43\x87\xee\xae\x2d\xa7\x82\x58\x0a\xb2\x1d\x52\xca\xbd\xfb\x71\xff\x96\xcb\x8d\x12\x9f\xaf\x10\xe7\x55\xad\x62\xd2\x48\xdf\x64\x85\x55\x3e\xc9\x07\x15\x24\xd3\x8c\xee\xb0\xef\x9c\x1b\xc7\x11\x5f\x54\x8d\x69\xa3\x82\xfa\x4b\x10\xda\x2b\xb6\x1b\xc3\x8f\x36\x89\xde\xfe\xa0\x06\xe1\xe5\xca\x39\x5d\x9c\x11\xb8\x40\x14\x6d\x0d\x9a\x59\xe6\x63\x13\x29\xb1\x50\x74\x3e\x04\x2a\xa5\xf7\xcb\x32\x20\x35\x41\xf6\x2c\xfd\xf0\x7e\xfc\xf3\xed\x31\xdd\x2f\x7c\xe0\xdf\x01\x80\x51\x6d\x26\x2f\xfc\x4c\x75\xa2\xbd\x3e\x65\xfd\xe0\x4e\xee\x1c\x00\x00\xff\xff\x75\x24\x24\x44\x0c\x01\x00\x00" +var _nodeversionbeaconScriptsGet_next_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\x3d\x6b\xc3\x30\x10\xc6\xf1\x5d\x9f\xe2\x19\x93\xa5\xee\xdc\xa5\x24\xb5\x86\x2e\x32\xd8\x90\xdd\x89\x4e\xe9\x41\x75\x67\xce\x92\x71\x29\xfd\xee\xa5\x6f\x4b\x9d\xf1\xe0\xff\x3b\x1e\xce\x93\x5a\x41\xd0\x48\x27\xb2\x99\x55\x8e\x34\x5e\x54\x90\x4c\x33\xee\xd7\xd0\xb5\xfe\xe4\xfb\xe1\xb9\x0b\x47\x7f\x78\xea\xc2\xa1\x6d\x7b\x3f\x0c\xce\x35\x4d\x83\x9e\x8a\x31\x2d\x34\xa3\xbc\x10\x84\xd6\x82\xe5\xe7\x0b\xce\x5a\x25\x8e\xf6\x06\x35\x08\xbf\x7e\xe7\x9c\xbe\x3a\x23\xf0\x0c\x51\xd4\xe9\xa2\x99\xe5\xba\x35\x91\x12\x0b\x45\x37\xd5\x33\x52\x15\xe4\x91\x65\xb7\x7f\xd8\xce\xbc\xfb\xbb\x7e\xe5\x23\xde\x1d\x00\x18\x95\x6a\x72\xa3\xbf\x52\x09\xb4\x96\x7f\x6c\xb7\x77\x1f\xee\x33\x00\x00\xff\xff\x95\x44\xbb\xfa\x0b\x01\x00\x00" func nodeversionbeaconScriptsGet_next_version_boundaryCdcBytes() ([]byte, error) { return bindataRead( @@ -4759,11 +4760,11 @@ func nodeversionbeaconScriptsGet_next_version_boundaryCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_next_version_boundary.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x75, 0xb3, 0x64, 0xda, 0xd6, 0x80, 0x83, 0xd1, 0x25, 0x20, 0x2d, 0x41, 0xf5, 0x29, 0xd2, 0xd2, 0x6a, 0x68, 0x45, 0x17, 0x46, 0x2a, 0x5a, 0x4b, 0x8, 0xc5, 0x33, 0xd4, 0xfa, 0xbd, 0xc1, 0x4d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x96, 0x49, 0x75, 0xa7, 0x75, 0xc1, 0xdc, 0x59, 0xdf, 0x44, 0xe1, 0xec, 0x7c, 0x20, 0x61, 0xa6, 0xb0, 0x5a, 0x2f, 0x8c, 0x59, 0x64, 0xf9, 0xe2, 0xac, 0xed, 0x22, 0x7d, 0xa9, 0x7d, 0xb9, 0xe6}} return a, nil } -var _nodeversionbeaconScriptsGet_next_version_update_sequenceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xce\x31\x8b\xc2\x40\x14\xc4\xf1\x7e\x3f\xc5\x90\x2a\x69\x2e\xcd\x71\xc5\x95\x36\x62\x93\x46\xb4\xdf\x6c\x26\x1a\xc8\xbe\x8d\x6f\xdf\x4a\x40\xfc\xee\x82\xd8\x48\xda\xdf\x14\xf3\x9f\xe2\x92\xd4\xd0\xa5\x81\x67\x6a\x9e\x92\xec\xe8\x43\x12\x8c\x9a\x22\xaa\x8d\x57\xce\xb5\x6d\x8b\x3d\x2d\xc3\xae\x84\x70\x35\x64\xde\x0a\x25\x10\x52\x62\x4f\xc5\x98\xf4\x3d\x9a\xef\x67\xa2\x2c\x83\x37\x0e\xe0\x9d\x62\xce\x87\xc0\x9c\x6b\x3f\xcf\x0d\xc6\x22\x88\x7e\x92\xba\xf9\xc7\xe9\x20\xf6\xf7\x8b\x87\x03\x00\xa5\x15\x95\x6d\xd5\xcf\x85\xd6\x71\xb5\x2f\x3c\x7e\xde\xeb\xc6\x3d\x5f\x01\x00\x00\xff\xff\x15\x0c\xe6\x10\xcf\x00\x00\x00" +var _nodeversionbeaconScriptsGet_next_version_update_sequenceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\x31\x4f\x86\x30\x18\x06\xf7\xfe\x8a\x67\xfc\xbe\x45\x1c\x8c\x83\x1b\x48\x63\x58\x4a\x42\x23\x7b\x81\x07\x25\xb1\x6f\xb1\xbc\x35\x24\xc6\xff\x6e\x62\x5c\x8c\xeb\xdd\x70\xb7\xc5\x3d\x65\x85\x4b\x0b\x47\xe6\x63\x4b\xd2\x30\xcc\x49\xb0\xe6\x14\x71\x7b\xba\xbe\xb5\xa3\x1d\x7c\xd7\xbb\xc6\xd6\x8f\xbd\xab\xdb\x76\xb0\xde\x1b\x53\x55\x15\x9e\xa8\x07\xf4\x95\x10\x9e\x8a\x83\xef\x85\x32\x13\x52\xe2\xc4\x8c\x35\xe5\x1f\xa9\x61\x7a\x23\xca\xbe\x04\xe5\x02\x7e\x50\xd4\xec\x65\xc2\x5a\x04\x31\x6c\x72\xb9\x3e\xe0\xb9\x13\xbd\xbf\xc3\xa7\x01\x80\x4c\x2d\x59\xfe\x4f\xdd\xbc\x50\x1d\x4f\xfd\x03\xfd\x6f\xf5\x72\x35\x5f\xdf\x01\x00\x00\xff\xff\x79\x0b\x75\xa7\xce\x00\x00\x00" func nodeversionbeaconScriptsGet_next_version_update_sequenceCdcBytes() ([]byte, error) { return bindataRead( @@ -4779,11 +4780,11 @@ func nodeversionbeaconScriptsGet_next_version_update_sequenceCdc() (*asset, erro } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_next_version_update_sequence.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0x59, 0xeb, 0x83, 0xb9, 0x7c, 0xaf, 0x1c, 0x21, 0xdf, 0x42, 0x68, 0xcd, 0x9, 0x94, 0x45, 0xa5, 0xd4, 0xc4, 0x6d, 0xa6, 0x19, 0x7f, 0xac, 0x69, 0x9a, 0x84, 0xe7, 0xe6, 0x74, 0x11, 0x3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xba, 0x6, 0xe1, 0xfb, 0x2, 0x94, 0x1d, 0x0, 0x37, 0xef, 0xb8, 0xb1, 0xbf, 0x79, 0x81, 0xd4, 0x32, 0x4f, 0x2d, 0xfb, 0x3a, 0x10, 0x53, 0xa9, 0x9c, 0x65, 0x73, 0x1e, 0x22, 0xc1, 0x59, 0xec}} return a, nil } -var _nodeversionbeaconScriptsGet_version_boundariesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x3f\xcb\x83\x30\x10\xc6\xf7\x7c\x8a\x07\x27\x85\x17\xdd\x1d\xdf\xad\x4b\x29\x1d\xdc\x0f\x3d\xd3\x80\x5e\xe4\x12\x85\x52\xfa\xdd\x4b\xac\x85\xb6\x76\x09\xb9\xe7\x0f\xcf\xcf\x8d\x93\xd7\x88\xa3\xef\xb8\x61\x0d\xce\xcb\x3f\x53\xeb\x05\xbd\xfa\x11\xd9\x4e\xcf\x8c\xa9\xaa\x0a\x67\x8e\xb3\x4a\x40\xbc\x30\x96\xcd\xf7\xb3\x74\xa4\x8e\x03\x26\xb2\x8c\xde\xeb\x6a\x5b\xb7\xb0\x3c\x25\x92\x0e\x13\xeb\x89\x2c\x97\x86\xda\x96\x43\xc8\x69\x18\x0a\xf4\xb3\x60\x24\x27\x79\x8a\xd5\x38\x48\xfc\x7b\x05\xd7\xab\xa8\xf7\x84\x65\xf3\xb1\x7b\x4d\x61\xdc\x0c\x00\xe8\x4a\xf7\xa3\x62\x39\x36\xdf\xb4\xa9\xb7\xed\xa6\xf7\x6d\x78\xfb\x14\xe6\xfe\x08\x00\x00\xff\xff\xca\xa3\xbd\xbb\x26\x01\x00\x00" +var _nodeversionbeaconScriptsGet_version_boundariesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xbd\x4e\xc4\x30\x10\x84\x7b\x3f\xc5\x94\x9c\x84\x2e\xd4\xd7\xdd\x11\x17\xd7\x38\x28\x91\xdc\x1b\xb2\x31\x2e\xb2\xb6\x36\x76\x04\x42\xbc\x3b\x72\x08\x12\x7f\xcd\x6a\x77\x67\x46\xf3\x85\x39\x45\xc9\x30\x71\x24\x4b\xb2\x84\xc8\x17\x72\x4f\x91\x31\x49\x9c\x71\xf7\x62\xba\x56\x5b\xdd\x0f\xd7\xce\x5c\xf4\xf9\xbe\x33\xe7\xb6\xed\xf5\x30\x28\xd5\x34\x0d\x7a\xca\x45\x78\x41\x7e\x26\xac\x7b\x3c\x16\x1e\x9d\x04\x5a\x90\x9c\x27\x4c\x51\x36\xd9\x87\x95\xf8\xf3\xe5\x78\x44\x22\x79\x70\x9e\x8e\x2a\x95\x47\x4c\x85\x31\xbb\xc0\x37\x55\x3e\xe1\xca\xf9\xf6\xcb\xb0\x5d\x87\xd3\x5f\xc0\xa3\xfd\xd1\xf7\x5a\xcd\x78\x53\x00\x20\x1b\xd5\x3f\x11\x4f\xd9\xfe\xa6\xac\xb9\xbd\xb7\xce\x6f\xc5\xfb\x72\x50\xef\x1f\x01\x00\x00\xff\xff\xb5\x4e\xf5\xec\x25\x01\x00\x00" func nodeversionbeaconScriptsGet_version_boundariesCdcBytes() ([]byte, error) { return bindataRead( @@ -4799,11 +4800,11 @@ func nodeversionbeaconScriptsGet_version_boundariesCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_version_boundaries.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0xa1, 0x9, 0x94, 0xd7, 0xa0, 0x68, 0x9d, 0xa1, 0x3f, 0x5d, 0xe9, 0xd1, 0x3a, 0x52, 0x92, 0x56, 0xf0, 0xc1, 0x29, 0x9b, 0x93, 0xef, 0x15, 0x57, 0x95, 0x86, 0x70, 0xb4, 0xa4, 0x2b, 0xe2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xab, 0x9c, 0x4b, 0xef, 0x3a, 0x1f, 0xed, 0x48, 0x7e, 0x0, 0xca, 0xa9, 0x4e, 0x7c, 0x4a, 0x4a, 0xc1, 0xaa, 0xb6, 0x1a, 0xfa, 0xc6, 0x2b, 0x52, 0x44, 0x25, 0x72, 0xb8, 0x99, 0xe7, 0x77, 0x6a}} return a, nil } -var _nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xd0\xb1\x4e\xc4\x30\x0c\x06\xe0\x3d\x4f\xf1\xeb\xa6\x76\xa1\x0b\x62\x60\x64\x40\x62\x41\x08\x89\xdb\xdd\xc4\x6d\x2c\x1a\xa7\x4a\x1c\x4e\x80\x78\x77\xa4\x5e\x99\x2a\x56\xdb\xfa\xec\xdf\x92\xd6\x5c\x0c\xcf\x39\xf0\x99\x4b\x95\xac\x0f\x4c\x3e\x2b\xa6\x92\x13\x4e\x87\xfa\xc9\xb9\x61\x18\xf0\xca\xd6\x8a\x56\x58\x64\x7c\xec\xfd\xdc\x34\x50\xf9\x7c\x2c\xcc\x5f\xfc\xc2\x45\x72\xc0\x25\x8a\x8f\x08\x3c\x89\xf2\x75\x3a\x89\x4a\x6a\x09\xda\xd2\xc8\x05\x79\xc2\xb8\x64\xff\x5e\x37\xd6\x22\x19\x52\xab\x86\x95\x6a\xc5\xc8\x76\x61\x56\xb4\x35\x90\x89\xce\xa0\xbf\x65\x20\x0d\x10\xab\x3b\x1d\xae\x08\x22\xcb\x1c\x6d\xa3\xc6\xfd\x1c\x47\xde\x73\xad\x1d\x2d\x4b\x8f\xa9\x29\x12\x89\x76\xfd\x3d\xde\x9e\xd4\xee\x6e\xf1\xed\x00\xa0\x6c\x79\x8e\x6f\xb8\x99\xd9\xce\xff\xe7\xeb\x7a\xf7\xf3\x1b\x00\x00\xff\xff\x2f\xba\x20\x02\x42\x01\x00\x00" +var _nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xd0\xbd\x4e\xeb\x40\x10\x05\xe0\xde\x4f\x71\xca\xa4\xb9\xb9\x05\xa2\xa0\x4b\xb0\x91\xd2\xd8\xc8\x16\xee\xd7\xde\xb1\x77\x04\x3b\x6b\xed\xce\x12\x7e\xc4\xbb\x23\x39\xa6\x42\xf4\x33\xdf\xcc\x39\xec\x97\x10\x15\x75\xb0\xd4\x53\x4c\x1c\xe4\x44\x66\x0c\x82\x29\x06\x8f\xff\x6f\x75\x53\x56\x7d\xd5\x76\xe7\xa6\x3e\x55\xc7\xfb\xa6\x3e\x96\x65\x5b\x75\x5d\x51\x1c\x0e\x07\xb4\xa4\x39\x4a\x82\x3a\xc2\xeb\xb6\x1e\xb2\x58\x13\xdf\x1f\x22\xd1\x07\x3d\x52\xe4\x60\x71\x71\x3c\x3a\x58\x9a\x58\xe8\x3a\xed\x59\xd8\x67\x0f\xc9\x7e\xa0\x88\x30\x61\x78\x09\xe3\x73\x5a\x59\x75\x46\xe1\x73\x52\x2c\x26\x25\x0c\xa4\x17\x22\x41\x5e\xac\x51\x96\x19\xe6\xe7\x18\x8c\x58\xb0\xa6\x8d\xb6\x57\x04\x8e\x78\x76\xba\x52\xc3\xf6\x4e\xb1\xe4\x01\x53\x16\x78\xc3\xb2\xdb\xdf\xe1\xe9\x2c\x7a\x7b\x83\xcf\x02\x00\xe2\x9a\xe3\x77\x0b\xff\x66\xd2\xfe\xef\x5c\xbb\x7d\xf1\xf5\x1d\x00\x00\xff\xff\x9d\x4e\x18\x47\x41\x01\x00\x00" func nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdcBytes() ([]byte, error) { return bindataRead( @@ -4819,11 +4820,11 @@ func nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdc() (*asset, er } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_version_boundary_freeze_period.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0x6, 0x8b, 0x76, 0x1c, 0x24, 0xee, 0x96, 0x38, 0x5f, 0x6a, 0xf, 0x88, 0xd6, 0x73, 0xa4, 0x44, 0x22, 0xa4, 0x98, 0xb7, 0x60, 0x1, 0x71, 0x29, 0xb4, 0xf9, 0xdd, 0x3c, 0xd0, 0xa2, 0x32}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x36, 0x8d, 0x65, 0x52, 0xa7, 0x75, 0xb3, 0x7c, 0x0, 0x6a, 0xd1, 0x48, 0x8c, 0x30, 0xbd, 0x1, 0xde, 0xef, 0x97, 0xb5, 0xbf, 0xfd, 0x57, 0x70, 0x84, 0x7c, 0x73, 0x22, 0xa4, 0xec, 0x7, 0x44}} return a, nil } -var _quorumcertificateAdminPublish_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x6a\xf3\x30\x10\x84\xef\x7a\x8a\x21\x87\xe0\xc0\x8f\x7d\x0f\x7f\x0b\x41\xd0\x73\x43\xfb\x02\x1b\x75\x63\x0b\x14\xad\x58\xad\x93\x43\xc8\xbb\x17\xdb\x6d\x49\x20\x3a\x0e\xfa\xbe\x19\x29\x9e\x8a\xa8\xe1\x2d\xc9\xc5\xa7\xb1\x1a\xeb\xde\xe3\xa8\x72\xc2\xea\x21\x5b\x39\xd7\x75\xf8\xe4\x6a\x30\xa5\x5c\x29\x58\x94\x8c\xa3\x28\x6c\x60\xec\x3d\xe8\xeb\x14\x33\x4c\x50\xc6\x43\x8a\x75\x00\x41\xf9\xc8\xca\x39\xf0\xc4\xda\x40\x06\x4a\x49\x2e\x15\x14\x82\x8c\xd9\xea\x74\x5d\xb9\x8f\x53\xc7\xec\xda\x7b\x9c\xc5\x62\xee\x9d\xbb\xaf\xb9\x3a\x07\x00\x45\xb9\x90\x72\x53\x63\x9f\x59\xb7\xa0\xd1\x86\xc6\x53\xa1\x43\x4c\xd1\x22\xd7\x0d\xd6\xbb\x45\xbd\xc1\x75\x46\xa6\x93\xd8\x96\x75\x9e\x0a\x5e\xb0\xd0\x6d\xb8\xe3\xda\x6a\xa2\xd4\x73\x1b\x6b\x1d\xf9\xff\xfa\xe1\xe9\xed\x6e\x62\x5f\x9b\x27\xe1\xc7\x82\xbd\x93\x0d\x9b\xbf\xba\x67\xfe\x9f\x3f\x69\x7e\x67\xfc\x03\xd9\x16\xdd\x1c\x87\xee\x2c\xc6\xea\x95\xc9\x44\x17\xcf\xcd\xdd\xdc\x77\x00\x00\x00\xff\xff\xbf\xcc\x5d\xab\x9b\x01\x00\x00" +var _quorumcertificateAdminPublish_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4e\xc3\x30\x10\x44\xef\xfe\x8a\x39\xa1\x56\x42\x0d\xe7\x0a\x21\x45\x2e\x9c\x09\xe5\x07\x96\xb0\x89\x2d\x1c\x6f\xb4\xde\xb4\x48\x55\xff\x1d\x39\xbd\x80\xc4\x5e\x77\x66\xde\x4c\x9c\x66\x51\xc3\x4b\x92\xb3\x4f\x4b\x31\xd6\xce\x63\x50\x99\xf0\xf0\xdd\xf9\xf6\x70\x78\x7b\x3e\x1e\x9d\x6b\x1a\xbc\x73\x31\x98\x52\x2e\xd4\x5b\x94\x8c\x41\x14\x16\x18\x9d\x07\x7d\x4e\x31\xc3\x04\xf3\xf2\x91\x62\x09\x20\x28\x0f\xac\x9c\x7b\xae\x5e\x0b\x64\xa0\x94\xe4\x5c\x40\x7d\x2f\x4b\xb6\x52\xe5\xca\x63\xac\xcc\x35\xab\xf3\x38\x89\xc5\x3c\x3a\xf7\x1b\x73\x71\x0e\x00\x66\xe5\x99\x94\x37\x25\x8e\x99\x75\x8f\x76\xb1\xd0\xde\xa2\xb6\xb8\xac\x92\x7a\xb7\xf7\x2e\xc5\xfc\xf5\x78\xf7\x67\xd5\xae\xad\x25\x9f\x36\xcd\xda\xb1\x6f\x4e\x62\xac\x5e\x99\x4c\xf4\x1e\x46\x3a\xb2\xed\xf1\x8f\xe5\x68\xa2\x34\xf2\x2b\x59\xd8\xae\x9c\xab\xbb\xfe\x04\x00\x00\xff\xff\x97\xf7\x08\x84\x37\x01\x00\x00" func quorumcertificateAdminPublish_voterCdcBytes() ([]byte, error) { return bindataRead( @@ -4839,11 +4840,11 @@ func quorumcertificateAdminPublish_voterCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/admin/publish_voter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2f, 0xd7, 0x84, 0xd7, 0x6, 0xe, 0x60, 0xa8, 0x8, 0xe9, 0x87, 0x59, 0x2c, 0x71, 0xbf, 0x8c, 0x9e, 0xd2, 0xe2, 0xa3, 0x9c, 0x39, 0xfc, 0xfe, 0x41, 0xe8, 0x1f, 0xc2, 0x19, 0x5b, 0x40, 0xe6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x62, 0x25, 0xcd, 0x7f, 0xbf, 0x92, 0xcd, 0x55, 0x37, 0x4c, 0xbc, 0x66, 0x88, 0x88, 0x9, 0x48, 0xe5, 0x38, 0x46, 0x33, 0xac, 0x31, 0x40, 0x2c, 0x65, 0x1f, 0x77, 0x1, 0x34, 0x4, 0x5b, 0x37}} return a, nil } -var _quorumcertificateAdminStart_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\xc1\x6e\xdb\x38\x10\xbd\xeb\x2b\x1e\x7c\xc8\xca\xd8\xc0\xde\x00\x8b\x1c\x84\xf5\x06\xae\x8d\x02\xbe\x14\x4d\xdd\xa6\x07\x41\x07\x86\xa2\x25\x16\x32\xa9\x92\xa3\xb8\x81\xe1\x7f\x2f\x48\x4a\x8e\x18\xbb\x02\x0c\xc8\xe2\x7b\x33\x6f\x66\xde\x50\xee\x5b\x6d\x08\x1f\x1b\x7d\x58\x35\x9d\x25\x61\x1e\x57\xd8\x19\xbd\xc7\x24\xfa\x36\x49\x92\xf9\x1c\x5f\x85\x25\x90\x61\xca\x32\x4e\x52\x2b\xec\xb4\x01\xd5\x02\x8f\x2b\xb0\x72\x2f\x15\x48\xc3\x12\x33\x34\x7c\x7d\xd1\x24\x55\x85\x56\x18\xa9\x4b\x17\xe2\x20\xa9\x06\x03\x33\x86\xbd\x42\xef\xc0\x75\xd3\x08\x4e\xda\x40\xe9\x52\x80\x87\x84\xd6\xa7\x5b\x9a\xaa\xdb\x0b\x45\x36\x73\xff\xdc\x4f\xaa\x52\x72\x61\x33\x2c\xd5\x28\x44\xe0\x0c\x87\x0e\xd7\x7f\xfa\xa4\x4b\xb1\x59\x3b\xf8\x80\xf5\x24\xeb\xdf\x9a\xc6\x8b\xf4\x69\x37\x6b\x0b\xa9\x20\x18\xaf\x07\xae\x0b\xe3\xce\xbe\x0b\x59\xd5\x74\x3d\x86\xe7\x1e\x02\xe0\x82\x9f\x8c\x1a\x95\x9e\x85\xe7\xdf\x36\x8a\xee\xee\x8b\xdb\x0b\x8d\x79\xbe\x25\x23\x55\x55\x14\xb7\x71\xe2\xdc\x73\xee\xff\x2d\x8a\x29\x8e\x49\x02\x00\xad\x11\x2d\x33\x22\xb5\xb2\x52\xc2\x64\x60\x1d\xd5\xe9\x07\x6d\x8c\x3e\x3c\xb1\xa6\x13\x53\xdc\x2c\x39\xd7\x9d\xa2\x33\xc5\x3d\xf3\x39\x02\x08\x0c\x46\xec\x84\x11\x8a\x0b\x37\xb3\x68\x86\xfa\xf9\x87\xe0\x74\x26\x35\x82\xc2\xc1\x17\xb1\xc3\x02\x21\xe5\xcc\x92\x36\xac\x12\xb3\x67\x1f\xef\xbf\x9b\xc8\x2d\xb3\xa5\xc3\xff\x9f\x3a\x23\x65\xb8\x72\xb4\x0d\xec\xcf\x8c\xea\xe9\x39\x91\x7b\x1e\x1e\xd0\x32\x25\x79\x3a\x59\xe9\xae\x29\xa1\x34\x21\xa4\x88\x05\xff\xe4\x41\xd3\x64\x9a\x44\x42\x07\xff\x64\xc8\xe3\xb4\xfd\x5b\x81\x05\xf2\xe2\x4c\x19\x77\x66\x43\xc2\x30\x12\xa0\xda\xe8\xae\xaa\xa3\x61\x82\xa9\x12\x5c\x2b\x4b\xa6\xe3\x04\x86\x3e\xdc\xfb\x5e\xb9\x7d\x90\xaa\x14\xbf\x9c\x1b\xfa\x99\x8f\x07\x30\xc8\x1c\xcd\x77\x2d\xbd\x43\x98\x79\xcd\x70\x0c\x0e\xc8\x10\x06\x7e\xc2\x02\xc7\x53\x44\x7e\x61\x06\x12\x0b\xfc\x13\xc7\x9c\xcf\xb1\x15\x14\x24\xbb\xd8\x7f\x59\xc8\xd2\x8b\x0e\xee\x7c\x0f\x5e\xb1\x86\x77\x4d\xa8\xd6\xf5\x93\x58\xd3\x23\x7d\x09\x91\x8f\xc7\xd4\x5d\xbf\xa7\x9b\xb5\x2b\x30\x76\x70\xee\x0b\x2f\x70\x8c\x18\xe3\x8a\x2d\x16\xe3\xca\x7b\xc2\x1f\xe1\x01\xd6\x73\x6c\x2e\x8b\xe4\x02\x7a\xb5\x8f\x79\x50\x58\x44\xd9\x2e\xb9\xae\x8d\x12\x7f\xe3\x2e\x3a\x39\xc5\xc0\xc1\x4f\x33\xd6\xb6\x42\x95\xe9\x55\x53\xa5\xbe\x90\x2c\x4c\xfe\xdd\xf2\x5e\x55\x38\x7d\x33\xfd\x29\xda\xce\xad\xbf\x3b\x1f\x57\x78\x0a\xf7\xa6\xbf\x2d\xdd\x88\x6c\xd7\xb6\x8d\x14\xe5\xdb\x05\x39\xb0\x86\xd5\x9c\xf9\x7b\x37\xf0\xd2\xb7\x35\x18\xde\x42\xc6\x53\x72\xfa\x1d\x00\x00\xff\xff\xd2\x6f\xc8\x6d\xf2\x05\x00\x00" +var _quorumcertificateAdminStart_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\xcd\x6e\xdb\x3c\x10\xbc\xeb\x29\x06\x39\x7c\x9f\x8d\x06\x76\x02\x14\x39\x08\x75\x03\xd7\x6e\x01\x5f\x8a\x3a\xee\xcf\x41\xd0\x81\xa1\x68\x89\x85\x4c\xaa\xe4\x2a\x4e\x60\xf8\xdd\x0b\x92\x92\x23\xc6\xae\x00\x03\xb2\x38\xb3\x3b\xbb\x3b\x5c\xb9\x6b\xb4\x21\x7c\xa9\xf5\x7e\x51\xb7\x96\x84\x59\x2f\xb0\x35\x7a\x87\x9b\xe7\xf5\x62\xbe\x5c\x3e\x7c\xde\x6c\x92\x64\x3a\xc5\x77\x61\x09\x64\x98\xb2\x8c\x93\xd4\x0a\x5b\x6d\x40\x95\xc0\x7a\x01\x56\xec\xa4\x02\x69\x58\x62\x86\xfa\xaf\x4f\x9a\xa4\x2a\xd1\x08\x23\x75\xe1\x42\xec\x25\x55\x60\x60\xc6\xb0\x17\xe8\x2d\xb8\xae\x6b\xc1\x49\x1b\x28\x5d\x08\xf0\x20\xc0\xfa\x74\x73\x53\xb6\x3b\xa1\xc8\xa6\xee\x9f\xfb\x49\x55\x48\x2e\x6c\x8a\xb9\x1a\x84\x08\x9c\xfe\xd0\xe1\xba\x4f\x5f\x75\x21\x56\x4b\x07\xef\xb1\x9e\x64\xfd\x5b\x5d\x7b\x91\x3e\xed\x6a\x69\x21\x15\x04\xe3\x55\xcf\x75\x61\xdc\xd9\x2f\x21\xcb\x8a\x2e\xc7\xf0\xdc\x7d\x00\x9c\xf1\x93\x41\xa3\x46\x27\xe1\xd9\x8f\x95\xa2\xdb\xbb\xfc\xfa\x4c\x63\x96\x6d\xc8\x48\x55\xe6\xf9\x75\x9c\x38\xf3\x9c\xbb\xf7\x79\x3e\xc6\x21\x49\x00\xa0\x31\xa2\x61\x46\x8c\xac\x2c\x95\x30\x29\xe6\x2d\x55\x73\xce\x75\xab\xe8\x84\x71\xcf\x74\x8a\x4f\xda\x18\xbd\x07\x83\x11\x5b\x61\x84\xe2\xc2\x0d\x29\x1a\x9a\x7e\xfc\x2d\x38\x9d\x48\xb5\xa0\x70\xf0\x20\xb6\x98\x21\xe4\x98\x3c\xfa\x38\x1f\xfe\x8b\x6c\x32\x99\x3b\xdc\xc7\x91\x73\x4b\x8a\x0b\x47\x1b\xd2\x86\x95\xe2\x1b\xa3\x6a\x7c\x4a\xe0\x9e\xfb\x7b\x34\x4c\x49\x3e\xba\x5a\xe8\xb6\x2e\xa0\x34\x21\xa4\x88\x85\xfe\xe1\x41\xcb\xd5\x38\x89\x04\xf6\x46\x49\x91\xc5\x69\xbb\xb7\x1c\x33\x64\xf9\x89\x32\xec\xc8\x8a\x84\x61\x24\x40\x95\xd1\x6d\x59\x45\x53\x03\x53\x05\xb8\x56\x96\x4c\xcb\x09\x0c\x5d\xb8\xb7\x3d\x72\xc6\x97\xaa\x10\xcf\x6e\xec\xdd\x70\x87\x8d\xef\x65\x0e\x06\xb9\x94\xde\x0a\xcc\xbc\xa4\x38\x84\x51\xa7\x08\x93\x3d\x62\x86\xc3\x31\x22\x3f\x31\x03\x89\x19\x6e\xe2\x98\xd3\x29\x36\x82\x82\x64\x17\xfb\x7f\x0b\x59\x78\xd1\xc1\x86\x6f\xc1\x0b\x56\xf3\xb6\x0e\xd5\xba\x7e\x12\xab\x3b\xa4\x2f\x21\x32\xec\x90\xba\xed\x2e\xe4\x6a\xe9\x0a\x8c\xad\x9a\xf9\xc2\x73\x1c\x22\xc6\xb0\x62\x8b\xd9\xb0\xf2\x8e\xf0\x4f\x78\x80\x75\x1c\x9b\xc9\x3c\x39\x83\x5e\xec\x63\x16\x14\xe6\x51\xb6\x73\xae\x6b\xa3\xc4\x3b\xdc\x46\x27\xc7\x18\xd8\xfb\x69\xc2\x9a\x46\xa8\x62\x74\xd1\x54\x23\x5f\x48\x1a\x26\xff\xe6\x96\x5e\x54\x38\x7e\x35\xfd\x31\xba\x95\x1b\xbf\x24\xd7\x0b\xfc\x0c\x0b\xd2\xaf\x45\x37\x22\xdb\x36\x4d\x2d\x45\xf1\xba\x09\x7b\x56\x7f\x25\x27\x7e\xc1\x06\xde\xe8\xf5\x1a\xf4\x6f\x21\xe3\x31\x39\xfe\x0d\x00\x00\xff\xff\x34\x89\x6e\x08\xd7\x05\x00\x00" func quorumcertificateAdminStart_votingCdcBytes() ([]byte, error) { return bindataRead( @@ -4859,11 +4860,11 @@ func quorumcertificateAdminStart_votingCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/admin/start_voting.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2a, 0x25, 0xc2, 0xfc, 0x62, 0x2e, 0xbc, 0xbe, 0xa8, 0x6, 0x15, 0x20, 0x12, 0xd0, 0x13, 0xe, 0x7, 0x1e, 0x52, 0x3, 0x82, 0xe1, 0xca, 0x1d, 0xcb, 0xfc, 0xda, 0x7b, 0x42, 0x3f, 0xa0, 0xfd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf5, 0x37, 0xb6, 0x46, 0xc9, 0xb7, 0x82, 0xbe, 0x4d, 0x32, 0x73, 0x50, 0x5, 0xcc, 0x34, 0x71, 0xdc, 0xa8, 0x85, 0xc1, 0x15, 0x8e, 0x4d, 0x2e, 0x95, 0x28, 0x22, 0x7c, 0x35, 0x6e, 0x5f, 0x44}} return a, nil } -var _quorumcertificateAdminStop_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x4f\xc3\x30\x14\x84\x77\xff\x8a\x53\x86\x2a\x59\xd2\xbd\x02\xaa\x12\x89\x99\x02\xea\x6e\x9c\x97\xc4\x52\xe2\x67\x9e\x5f\xe8\x50\xf5\xbf\x23\x27\xa2\xa2\x12\x37\x9e\xfd\xf9\xee\xec\xa7\xc8\xa2\x78\x19\xf9\xdc\x8c\x73\x52\x92\x63\x83\x4e\x78\x42\x71\xe7\x15\xc6\x6c\xb7\xf8\xa0\xa4\x50\xb1\x21\x59\xa7\x9e\x03\x3a\x16\xe8\x40\x38\x36\x70\x1c\x54\xac\x53\x28\x23\x29\xc7\xc5\xff\x66\xf5\xa1\x47\x24\xf1\xdc\x1a\xf3\x17\xbd\x18\x03\x00\x51\x28\x5a\xa1\x32\xf9\x3e\x90\xec\x60\x67\x1d\xca\x67\x16\xe1\xf3\xc9\x8e\x33\x55\xd8\x1c\x9c\xe3\x39\x68\x85\xcb\x42\x64\x8d\xa4\xb0\xed\xe4\xc3\x1b\x75\x78\xc4\x0a\xd7\x49\x59\x6c\x4f\xf5\xe7\x82\x3f\x6c\xee\x16\xd4\x87\x7c\xff\xa9\xcc\xe3\x76\xf8\xe7\xe8\x7d\xa5\x5f\xad\x0e\xd5\x2d\x28\x6b\xbf\x47\xb4\xc1\xbb\xb2\x68\x78\x1e\x5b\x04\x56\xac\x11\x10\xea\x48\x28\x38\xca\xab\xbf\xdc\xda\xa9\xa8\xcc\x8d\xff\x2d\x99\xbb\xc5\xd3\xf2\x1b\xe5\xfa\xfa\xd5\x5c\x7f\x02\x00\x00\xff\xff\x0d\x6e\x1d\x9b\x7d\x01\x00\x00" +var _quorumcertificateAdminStop_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4e\xf3\x30\x10\x84\xef\x7e\x8a\x51\x0f\xbf\xd2\x4b\xfa\x9f\x2b\xa0\x8a\x52\x38\x93\x06\x71\x37\xce\x26\xb1\x94\x78\xcd\x66\x43\x91\xaa\xbe\x3b\x72\x22\x2a\x90\x98\xa3\x3d\xb3\x33\x9f\x1f\x23\x8b\xe2\x69\xe0\x73\x39\xcc\x93\x92\x54\x25\x5a\xe1\x11\xff\x3f\xab\xb2\x38\x1e\x4f\x8f\x75\x6d\xcc\x6e\x87\x17\x9a\x14\x2a\x36\x4c\xd6\xa9\xe7\x80\x96\x05\xda\x13\xaa\x12\x8e\x83\x8a\x75\x0a\x65\x4c\xca\x71\x79\xff\x60\xf5\xa1\x43\x24\xf1\xdc\x18\xf3\x33\x7a\x31\x06\x00\xa2\x50\xb4\x42\xd9\xe4\xbb\x40\xb2\x47\x31\x6b\x5f\x38\xc7\x73\xd0\x2d\x2e\x8b\x25\x69\x20\x85\x6d\x46\x1f\x4e\xd4\xe2\x1e\xab\x3b\x7f\x63\x11\x3e\xdf\xfd\xfb\x35\x3d\x2f\x92\xef\x21\x4b\x04\x7b\xfc\xf1\x55\x2b\x8b\xed\xe8\xd9\x6a\xbf\xbd\x15\x24\x1d\x0e\x88\x36\x78\x97\x6d\x4a\x9e\x87\x06\x81\x15\x6b\x05\x84\x5a\x12\x0a\x8e\x12\xde\xbb\x5b\xb7\x6c\xb6\xe6\x96\xff\x1e\x97\x27\xf6\xd7\x05\x3b\x5b\xaf\x5f\xcd\xf5\x2b\x00\x00\xff\xff\x4d\x7d\x7c\x39\x62\x01\x00\x00" func quorumcertificateAdminStop_votingCdcBytes() ([]byte, error) { return bindataRead( @@ -4879,11 +4880,11 @@ func quorumcertificateAdminStop_votingCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/admin/stop_voting.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x77, 0xe8, 0x1e, 0x53, 0x15, 0x63, 0xab, 0xf7, 0x58, 0xcf, 0x72, 0xc3, 0x9c, 0x7f, 0xb1, 0x1c, 0x0, 0x14, 0xa6, 0x2f, 0x3e, 0xad, 0x97, 0xe2, 0x6d, 0xfa, 0xe9, 0x25, 0xc2, 0xec, 0xfb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa5, 0xa0, 0xd9, 0x1d, 0x55, 0xa2, 0xfc, 0xf1, 0x23, 0x3d, 0xa6, 0xbd, 0xe5, 0xdd, 0xa2, 0x17, 0xc9, 0xeb, 0x3f, 0x53, 0xe2, 0x30, 0x9c, 0x47, 0x65, 0x66, 0xad, 0xd9, 0x55, 0xca, 0x9b, 0x79}} return a, nil } -var _quorumcertificateCreate_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x54\xc1\x6e\xdb\x30\x0c\xbd\xe7\x2b\x88\x1c\x0a\x07\x68\x9d\x7b\xd0\xae\x28\x32\x6c\x18\x76\x58\xbb\x16\xdd\x99\x91\x99\x58\xab\x22\x7a\x14\x9d\x20\x18\xfa\xef\x03\x25\xd7\x89\x31\x03\x41\x24\x9a\x7c\xe4\x7b\x7c\x89\xdf\x77\x2c\x0a\x5f\x02\x1f\xd7\xa1\x4f\x4a\xf2\xb4\x86\xad\xf0\x1e\xe6\x93\xd8\x7c\x36\x5b\x2e\xe1\x85\x92\xc2\x8b\x60\x4c\xe8\xd4\x73\x84\x2d\x0b\x20\x44\x6e\x08\x94\x41\xe8\x4f\x6f\x19\x08\x4f\x6b\x78\x65\x25\x81\x1f\x9b\xdf\xe4\xb4\x20\x6a\x4b\xe0\x38\xaa\xa0\x53\x43\xfb\xe5\x43\x80\x0d\x41\xdf\x35\xa8\xd4\x18\x42\x9f\x28\xa7\x51\xc7\xae\x1d\x93\xe1\xd8\x52\x04\x6d\x51\xc1\x27\x70\xbc\xef\x02\x29\x35\x79\xa2\x96\xe0\x90\x3b\x71\xe9\xc4\x31\x9c\x20\x12\x35\xc9\xf0\x36\x04\x4e\x28\xa3\x73\x74\x04\x18\x1b\x83\x38\x60\xf0\x4d\x1e\x9e\x0e\x24\x27\xd8\xf6\xda\xcb\xd0\xd5\x50\x8f\x2d\x49\x19\x24\x53\xf3\x09\x70\xa8\x49\x8a\x6f\xd4\xe4\x70\x56\xe4\x11\x05\xf7\xa4\x24\x69\x65\x57\xfb\x60\xb3\xf7\xf1\xa1\x69\x84\x52\x5a\x65\x10\x2c\x17\xe0\x6d\xbe\x3e\xad\x4b\xce\xa5\x64\x16\x2f\x8a\x99\x54\x06\x63\x2d\xbe\x7d\x2e\x00\xbe\xf9\xa8\x2d\x52\x9b\x12\x19\xd8\x39\xee\x63\x56\x85\x3b\x12\x54\x1f\x77\x56\x6b\x53\xfa\xb8\xfb\x4e\xa7\x55\x56\x68\xb8\xc3\x1b\x9d\x32\xeb\xb2\x89\x10\xc8\x29\xcb\x40\x46\xcf\x6b\xad\xa6\x14\x86\xc3\xf5\x38\xd2\xb3\x8a\x8f\xbb\xeb\x49\x9b\x12\x5b\xc0\xdf\xd9\x0c\x00\xa0\x13\xea\x50\xa8\x4a\x7e\x17\x49\x56\x80\xbd\xb6\xd5\x33\x1e\xe8\x15\x43\x4f\x0b\xb8\x7a\x28\xa3\x8f\x05\xf6\x2c\x97\xf0\x95\x06\x66\x59\x20\xa1\x2d\x09\xd9\xe2\x46\x03\x95\x17\x03\xf1\xb1\x32\x90\x0e\x6f\xee\x60\x47\x3a\x80\x4f\x78\x2c\xfe\x4f\xfe\x49\x5b\xb8\x2b\xc7\xda\x61\x87\x1b\x1f\xbc\x7a\x4a\xf5\x86\x45\xf8\x78\x7b\x35\xf9\x09\xd4\x0f\x96\xf8\xa9\x5a\x76\xfd\x26\x78\xb7\xcc\xb6\x5b\x9b\xbb\x58\xce\xe0\xf6\xdc\xdf\x43\x87\xd1\xbb\x6a\xbe\xe6\x3e\x98\x5b\x14\x0a\x24\xe0\x05\x27\xe5\x33\xa3\xf9\x62\x22\x43\x86\x25\x73\xdd\xa5\xb7\xcd\xbd\x09\x0f\x04\x5e\xad\x38\x29\x0b\xee\x68\xc2\xab\xe4\xdf\xde\x8c\x04\xeb\xe2\xff\xec\xad\xea\x63\x81\xe5\x7b\xba\xc0\xf3\xf9\x62\x94\xb2\xbe\x7a\xe8\x54\x5b\xf3\xea\xf6\x26\x37\xb9\x06\xe5\xd5\xf4\x8f\xa3\xce\x5d\x9e\x4b\xf2\x23\x6a\x5b\x64\x79\x9f\xbd\xff\x0b\x00\x00\xff\xff\x8f\x15\x72\x2c\x67\x04\x00\x00" +var _quorumcertificateCreate_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x54\x4d\x6f\xdb\x30\x0c\xbd\xe7\x57\x70\x3d\x0c\x0e\xd0\x26\x3b\x07\xed\x8a\xc0\xdd\x86\x61\x87\x35\x4d\xb1\x9d\x15\x99\xb6\xb5\x2a\xa2\x47\xd1\xc9\x82\xa1\xff\x7d\xa0\xe4\x3a\x31\x26\x20\x88\x3e\xc8\x47\xbe\xc7\x07\xbb\x7d\x47\x2c\xf0\xd9\xd3\xb1\xf4\x7d\x14\xe4\x4d\x09\x35\xd3\x1e\x3e\xfc\xd9\x94\xeb\x87\x87\xa7\x4f\xdb\xed\x6c\xb6\x5c\xc2\x33\x46\x81\x67\x36\x21\x1a\x2b\x8e\x02\xd4\xc4\x60\x20\x50\x85\x20\x04\x8c\xbf\x7b\x8d\x30\xb0\x29\xe1\x07\x09\x32\x7c\xdf\xfd\x42\x2b\x19\x4d\x5a\x04\x4b\x41\xd8\x58\x51\xb4\x9f\xce\x7b\xd8\x21\xf4\x5d\x65\x04\x2b\x45\xe8\x23\xa6\x30\xec\xc8\xb6\x63\x30\x1c\x5b\x0c\x20\xad\x11\x70\x11\x2c\xed\x3b\x8f\x82\x55\xea\xa8\x45\x38\xa4\x4a\x94\x2b\x51\xf0\x27\x08\x88\x55\x54\xbc\x1d\x82\x65\x4c\xe8\x14\x2c\x82\x09\x95\x42\x1c\x8c\x77\x55\x6a\x1e\x0f\xc8\x27\xa8\x7b\xe9\x79\xa8\xaa\xa8\xc7\x16\x39\x37\x92\xa8\xb9\x08\x66\xc8\x89\x62\x5e\xb0\x4a\xd7\x49\x91\x47\xc3\x66\x8f\x82\x1c\x57\x7a\xd4\x9f\xa9\xf6\x2e\xac\xab\x8a\x31\xc6\x55\x02\x31\xf9\x00\x54\xa7\xe3\xa6\xcc\x31\x97\x92\xe9\x7d\x56\x4c\xa5\x52\x18\x2d\xf1\xf5\x21\x03\xb8\xea\x2d\x37\x4b\xad\x4a\x24\x60\x6b\xa9\x0f\x49\x15\xea\x90\x8d\xb8\xd0\x68\xae\x76\xe9\x42\xf3\x0d\x4f\xab\xa4\xd0\x70\x86\x17\x3c\x25\xd6\x79\x12\xde\xa3\x15\xe2\x81\x8c\x9c\xc7\x5a\x4c\x29\x0c\x9b\xeb\xb1\xa5\xad\xb0\x0b\xcd\xf5\xa4\x4c\xbe\x9b\xc3\xdf\xd9\x0c\x00\xa0\x63\xec\x0c\x63\x11\x5d\x13\x90\x57\xb0\xee\xa5\x5d\xe7\x6e\xc7\x18\x5d\xcb\x25\x7c\xc1\x81\x4c\xd2\x84\xb1\x46\x46\x9d\xd5\xe8\x99\xfc\x30\x70\x1d\x33\x3d\xca\xf0\x72\x07\x0d\xca\x00\x3e\x69\x7d\xfe\x7f\xf0\x13\xd6\x70\x97\xb7\x8b\x06\xa5\x34\x9d\xd9\x39\xef\xe4\x74\xfb\x7e\xe2\xff\xc5\x5a\x43\x3e\x16\xcb\xae\xdf\x79\x67\x97\xc9\x63\xa5\x5a\x89\x78\xfe\x6e\xc4\xd5\xb5\xd8\x11\x33\x1d\x8b\x39\xdc\xdf\x43\x67\x82\xb3\xc5\x55\x49\xbd\x57\x97\x08\xe4\x47\x30\x17\xc4\x84\xce\xb4\xae\xe6\x13\x2d\x52\x05\x54\xb7\x5d\x7a\x5a\x5d\x1b\xcd\x01\xc1\x89\x26\x47\x21\x36\x0d\x4e\xc8\xe5\xf8\xdb\x9b\x91\xe5\x22\xfb\x3e\x79\xaa\x78\x1b\x5c\xfe\x9f\x0e\xee\xbc\xbf\x68\x25\x8f\x6d\xa1\x45\x8b\xdb\x9b\x04\x7e\x0d\x42\xab\xe9\x47\x62\x91\xd0\xb7\xb9\x9d\x47\x23\x6d\x16\xfc\x75\xf6\xfa\x2f\x00\x00\xff\xff\xd3\x11\xd1\x52\x53\x04\x00\x00" func quorumcertificateCreate_voterCdcBytes() ([]byte, error) { return bindataRead( @@ -4899,11 +4900,11 @@ func quorumcertificateCreate_voterCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/create_voter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xad, 0x49, 0x65, 0x97, 0x80, 0x97, 0x22, 0x49, 0xa2, 0xf8, 0x29, 0x1b, 0x8, 0xa4, 0xf, 0x7f, 0xbe, 0xec, 0x14, 0x9f, 0x6a, 0x19, 0xfc, 0x68, 0x8a, 0xca, 0xa2, 0xab, 0x45, 0x42, 0x14, 0xcd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc1, 0xaa, 0x8c, 0x53, 0x14, 0x61, 0xae, 0x77, 0x43, 0x9f, 0x9b, 0xf7, 0x46, 0x21, 0xfd, 0x67, 0xd2, 0x64, 0xf8, 0xc6, 0x4a, 0x8a, 0x4e, 0x63, 0x7f, 0xd7, 0xfe, 0x20, 0xb2, 0x2b, 0x8e, 0x28}} return a, nil } -var _quorumcertificateScriptsGenerate_quorum_certificateCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\x41\x4b\x03\x31\x10\x85\xef\xf9\x15\x8f\xbd\x98\x5c\x5a\xbc\x78\x28\x48\x0f\x01\xa5\xc7\x3d\x78\x12\x0f\x21\x9d\xad\x81\x64\x52\x33\x13\x14\xc4\xff\x2e\xb6\x5b\xeb\x3a\xb7\x19\xbe\x8f\xf7\x26\x95\x63\x6d\x8a\x87\x5c\xdf\x7d\xee\xa2\xd4\x46\x8f\xa9\xd5\x82\x61\x71\x1b\x8c\x59\xaf\xf1\x48\x2a\xd0\x57\x82\x68\xd0\x2e\xa8\x13\x02\xe2\x99\xb9\x11\x8c\x1e\x07\x62\x6a\x41\x53\x65\x63\x42\x8c\x24\x62\x43\xce\x0e\x53\x67\x94\x90\xd8\xce\xf4\x8e\xf7\xf4\xb1\xc1\xd3\x8e\xf5\xf6\xce\x6d\x96\x05\x56\xd7\x2a\x9f\xc6\x00\x40\x26\xbd\xe4\x08\xee\xff\xd1\x07\xd2\x79\x11\xeb\xce\x7c\x23\xed\x8d\x7f\x95\xe7\xbf\xa9\x2f\xab\xb9\x24\x8d\xbd\xb6\x5e\x3c\x35\x4d\x53\x8a\x41\xc9\xba\x93\xfd\x33\xdb\x2d\x8e\x81\x53\xb4\x83\xaf\x3d\xef\xc1\x55\x2f\xcf\x11\xde\x4e\x22\xe2\xd5\x1c\x9c\x31\x5f\xdf\x01\x00\x00\xff\xff\x81\x01\xe7\xc1\x4d\x01\x00\x00" +var _quorumcertificateScriptsGenerate_quorum_certificateCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\x31\x4b\x03\x41\x10\x46\xfb\xfd\x15\x1f\x69\xbc\x6b\x12\x6d\x2c\x02\x12\x64\xa3\x92\xf2\x0c\x56\x62\xb1\x5e\xe6\xe2\xc2\xed\xec\x39\x3b\x83\x01\xf1\xbf\x8b\xc9\xc5\x68\xb6\x5b\x78\x6f\xde\x4c\x4c\x43\x16\xc5\x7d\x9f\x3f\x7c\x6f\x45\x49\x1a\x8f\x4e\x72\xc2\xe5\xae\xf1\xb7\xcb\xe5\xe3\xdd\x7a\xed\xdc\x6c\x86\x07\xd2\x02\x7d\x23\x14\x0d\x6a\x05\xb9\x43\x40\x7b\x70\x2e\x0a\x1a\x8f\x2d\x31\x49\xd0\x98\xd9\xb9\xc1\x5e\xd1\x19\x23\x85\xc8\xd5\x48\xad\x78\x43\xbb\x39\x9e\x56\xac\x57\xd7\xf5\xfc\x7f\x74\x7a\xca\x7f\x3a\x07\x00\x3d\xe9\x71\x7e\xc1\xcd\x19\xbd\x25\x1d\x3f\xa5\xaa\x0f\xbc\x90\x9a\xf0\xaf\xf2\xfc\xb7\xfa\x32\x1d\x97\xa3\xc6\xb2\x58\xf2\x24\x1a\xbb\xd8\x06\xa5\xaa\xde\xdb\x3f\x6f\xb1\xc0\x10\x38\xb6\xd5\xc4\x67\xeb\x37\xe0\xac\xc7\xa3\x08\xef\x7b\x11\xed\xc9\x9c\xd4\xce\x7d\x7d\x07\x00\x00\xff\xff\xc6\x91\xba\xec\x41\x01\x00\x00" func quorumcertificateScriptsGenerate_quorum_certificateCdcBytes() ([]byte, error) { return bindataRead( @@ -4919,11 +4920,11 @@ func quorumcertificateScriptsGenerate_quorum_certificateCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/generate_quorum_certificate.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0x7e, 0xec, 0xe8, 0x58, 0x2b, 0x59, 0xe0, 0xfa, 0xc3, 0x3, 0xd8, 0xb2, 0xbd, 0xf7, 0xe1, 0xda, 0xa1, 0x9b, 0x9c, 0x12, 0x5, 0x3d, 0xdd, 0x99, 0x39, 0x29, 0x37, 0x8c, 0xee, 0x72, 0x48}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe6, 0x66, 0xdb, 0xc8, 0xb6, 0x96, 0xb4, 0x7e, 0x86, 0xc, 0x90, 0x5a, 0xca, 0xd2, 0x3a, 0x4d, 0x1e, 0xfc, 0x36, 0x84, 0x76, 0x62, 0xb4, 0x4c, 0x96, 0xe0, 0x89, 0xbe, 0x4d, 0xb8, 0x59, 0x8b}} return a, nil } -var _quorumcertificateScriptsGet_clusterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x50\x42\x11\x53\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x28\xf0\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\xb4\x42\x35\x4f\x0f\xca\x52\xa8\xe6\xe2\x52\x50\x50\x50\xc8\x49\x2d\x51\x80\xea\x2b\x56\xb0\x45\x53\x9b\x9e\x5a\x02\xe5\x14\x6b\x68\x42\xd4\x17\xa5\x96\x94\x16\xe5\xc1\xb5\x44\x23\xdb\x19\xcb\xc5\x55\x0b\x08\x00\x00\xff\xff\xf7\xb0\x6f\x1a\xc4\x00\x00\x00" +var _quorumcertificateScriptsGet_clusterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x30\xa8\x08\x74\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x28\xf4\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\xb4\x42\x35\x43\x0f\xca\x52\xa8\xe6\xe2\x52\x50\x50\x50\xc8\x49\x2d\x51\x80\xea\x2b\x56\xb0\x45\x53\x9b\x9e\x5a\x02\xe5\x14\x6b\x68\x42\xd4\x17\xa5\x96\x94\x16\xe5\xc1\xb5\x44\x23\xdb\x19\xcb\xc5\x55\x0b\x08\x00\x00\xff\xff\x6c\xe0\xad\x73\xb8\x00\x00\x00" func quorumcertificateScriptsGet_clusterCdcBytes() ([]byte, error) { return bindataRead( @@ -4939,11 +4940,11 @@ func quorumcertificateScriptsGet_clusterCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0x25, 0x34, 0x4, 0xee, 0x6c, 0x4f, 0xfe, 0x9f, 0x3c, 0x45, 0xb8, 0x36, 0x94, 0x90, 0xe, 0xd1, 0xe0, 0x85, 0x2c, 0x17, 0x23, 0xb8, 0x1d, 0xda, 0x3a, 0xc0, 0x29, 0xde, 0x80, 0x86, 0x3d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x18, 0x9a, 0x6f, 0x7, 0xc4, 0x89, 0xbf, 0x2, 0xac, 0xdd, 0x29, 0x29, 0x26, 0x43, 0x97, 0x38, 0xdb, 0x4a, 0x10, 0x1b, 0x7a, 0x37, 0x77, 0xb6, 0x72, 0xac, 0x95, 0x27, 0x7d, 0x7a, 0xf7, 0xe}} return a, nil } -var _quorumcertificateScriptsGet_cluster_completeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\x3f\x4b\x43\x41\x10\xc4\xfb\xfd\x14\x63\x1a\xdf\x35\x09\x36\x16\x81\x34\x1e\x28\x29\x53\x58\x89\xc5\xf1\xdc\x17\x0f\xf6\x76\xc3\xed\x1e\x0a\xe2\x77\xb7\x48\x14\x53\xce\xf0\x9b\x3f\xb5\x9d\xac\x07\x1e\xc5\x3e\xb2\x0c\x0f\xee\x87\x8c\xa5\x5b\xc3\xea\xca\x5b\x11\x6d\x36\x78\xe2\x70\xc4\x3b\xc3\xa3\xc4\x70\xd8\x82\x82\xf9\xcc\xdc\x3a\x0e\x19\x47\x56\xee\x25\xaa\x29\x51\x99\x67\x76\x9f\x8a\x48\xc2\x32\x14\xad\x54\x9d\x2e\xf4\x5e\xdf\xf8\x73\x8b\xe7\xbd\xc6\xdd\x7d\xda\xe2\xc1\x4c\xf0\x45\x04\x00\xc2\xf1\x5b\xea\xd8\x5d\x7f\x5b\x1f\x39\x2e\xc2\xa7\x74\xe6\x3b\xc7\xe8\xfa\x17\x79\xf9\x3f\xf1\xba\xae\x9e\xad\x9d\x84\x83\xa7\x84\x9b\x1d\xb4\x0a\xd1\xf7\x4f\x00\x00\x00\xff\xff\xf4\x49\xb4\xa1\xf8\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_completeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xb1\x4e\xc3\x40\x10\x44\xfb\xfd\x8a\xa1\xc2\x6e\x12\x68\x28\x22\xa5\x80\x0b\xa0\x94\x26\xa2\x42\x14\x07\xac\xc3\x49\x77\xbb\xd6\xed\x9e\x88\x84\xf8\x77\x0a\x1b\x04\xe5\x48\xef\xcd\x4c\x2a\x93\x56\xc7\x5d\xd6\x8f\x90\x9b\x39\xd7\x21\x60\xac\x5a\x70\x71\x1a\xc2\xf5\x6e\xf7\x70\x7b\x38\x10\xad\xd7\xb8\x67\x37\xf8\x3b\xc3\x3c\x7a\x33\xe8\x88\x88\xd7\xd9\x39\x37\x0c\x01\x47\x16\xae\xd1\x93\x0a\xd1\xd4\x5e\x30\x36\x41\x89\x49\xba\x85\xda\xcb\x1b\x9f\x36\x78\xdc\x8b\x5f\x5e\xf5\x1b\xdc\xa8\x66\x7c\x12\x01\x40\x66\xff\x29\x33\x6c\xff\xff\x59\x1d\xd9\x97\x60\x5d\x3f\xf3\x95\xbd\x55\xf9\x55\x9e\xfe\x4e\x3c\xaf\x92\x05\x2d\x53\x66\xe7\xae\xc7\xd9\x16\x92\x32\xd1\xd7\x77\x00\x00\x00\xff\xff\xa8\x61\x29\x9e\xec\x00\x00\x00" func quorumcertificateScriptsGet_cluster_completeCdcBytes() ([]byte, error) { return bindataRead( @@ -4959,11 +4960,11 @@ func quorumcertificateScriptsGet_cluster_completeCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_complete.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x3, 0xb, 0xcc, 0xb6, 0x3, 0x6, 0x7, 0xb7, 0xb7, 0x52, 0x1, 0xe3, 0xa5, 0x66, 0x48, 0x6e, 0xc6, 0xb9, 0x38, 0xdc, 0x35, 0x47, 0x51, 0x62, 0x9c, 0x7b, 0x6b, 0xc4, 0x86, 0xff, 0x13}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0xac, 0xe1, 0x2a, 0x34, 0xa3, 0x58, 0x0, 0xf9, 0xf8, 0xe3, 0xd6, 0xf7, 0x15, 0xf8, 0x4b, 0xa9, 0xd5, 0xf2, 0xf2, 0x57, 0x95, 0x98, 0xf1, 0xfa, 0x53, 0x4c, 0x36, 0x38, 0xa9, 0xa5, 0xa4}} return a, nil } -var _quorumcertificateScriptsGet_cluster_node_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8d\xb1\xaa\x83\x40\x10\x45\xfb\xfd\x8a\x8b\x95\x36\xc2\x83\x87\x85\x90\x4a\x08\x58\x86\x10\x52\x84\x14\xa2\xa3\x59\x58\x67\xc3\xcc\x48\x02\xe2\xbf\xa7\x50\x42\x2c\xef\xe5\x1c\x8e\x1f\x9f\x51\x0c\xc7\x10\x5f\x55\x98\xd4\x48\x4e\x15\x7a\x89\x23\x92\xdd\x97\x38\xd7\xb4\x2d\xa9\xa6\x4d\x08\x19\xfa\x89\x31\x36\x9e\xd3\x76\x05\x6a\xee\xe8\x5d\xe2\x52\xb3\xfd\x15\x59\x89\xf9\x6c\xe2\x79\x58\x9f\xe2\x7f\xc1\xec\x1c\x00\x04\x32\x6c\x8a\xe2\xb0\xcf\xe6\x03\xd9\x36\x34\xcd\x56\x5e\xc8\x26\xe1\xaf\x72\xfb\xcd\xdd\x73\x8e\x1d\x5d\xc9\x0f\x0f\x53\xe7\x96\x4f\x00\x00\x00\xff\xff\x3d\x36\xdc\x4a\xcb\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_node_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8d\x41\xcb\x82\x40\x14\x45\xf7\xf3\x2b\xee\x52\x37\xf2\x7d\x10\x2e\x84\x16\xa1\x05\x2e\x4d\xa2\x45\xb4\xa8\x7c\xda\x80\xbe\x91\x99\x37\x24\x88\xff\xbd\xc5\x48\xd4\xf2\x5e\xce\xe1\xe8\x61\x34\x56\x70\xe8\xcd\x2b\xef\xbd\x13\xb2\x55\x8e\xd6\x9a\x01\x7f\x53\x95\xef\x8a\xe2\xb8\xaf\x6b\xa5\x46\x7f\x47\xeb\x19\xc3\x4d\x73\xf4\x08\x60\xc9\x0d\x4d\x19\x4e\x25\xcb\x7f\x1a\x67\x98\x6b\xb1\x9a\xbb\xf0\xa4\x9b\x05\xb3\x52\x00\xd0\x93\x60\x55\x1c\xb6\xbf\xa9\xa4\x23\x59\x87\x8b\xe2\xc0\x5b\x12\x6f\xf9\xa3\x5c\xbe\x73\xd7\x84\x4d\x43\x67\xd2\xdd\x53\x9c\x52\xcb\x3b\x00\x00\xff\xff\x3e\x1f\x66\x7e\xbf\x00\x00\x00" func quorumcertificateScriptsGet_cluster_node_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -4979,11 +4980,11 @@ func quorumcertificateScriptsGet_cluster_node_weightsCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_node_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x29, 0x1d, 0x52, 0x4, 0x6b, 0x83, 0x52, 0x76, 0x40, 0x43, 0xaf, 0xa, 0xe2, 0xe4, 0xd8, 0xcb, 0x79, 0x13, 0xea, 0xc6, 0xca, 0x2a, 0x11, 0x64, 0x1c, 0x9e, 0x29, 0xfc, 0x74, 0x8, 0xeb, 0x69}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x27, 0x8d, 0x33, 0xdc, 0x7a, 0x3e, 0xbe, 0xf7, 0xb5, 0x79, 0xf1, 0x0, 0xc4, 0xb2, 0xbb, 0x1e, 0x27, 0x9d, 0xff, 0xb8, 0xfc, 0x54, 0x0, 0x52, 0xc0, 0xe8, 0x57, 0x77, 0x5b, 0xc8, 0x16, 0xc3}} return a, nil } -var _quorumcertificateScriptsGet_cluster_vote_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x50\x42\x11\x53\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x28\xf0\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\x84\x30\xcc\x4c\x14\xaa\xb9\xb8\x14\x14\x14\x14\x72\x52\x4b\x14\xa0\x0a\x8b\x15\x6c\x51\x2d\xd3\x4b\x4f\x2d\x81\x72\x8a\x35\x34\x21\xea\x8b\x52\x4b\x4a\x8b\xf2\xe0\x5a\xa2\x91\x2d\x89\xd5\x2b\xcb\x2f\x49\x0d\xc9\x28\x4a\x2d\xce\xc8\xcf\x49\x01\x69\xa9\x05\x04\x00\x00\xff\xff\xe3\x59\xc4\x5f\xc5\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_vote_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x30\xa8\x08\x74\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x28\xf4\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\x84\x30\xcc\x4c\x14\xaa\xb9\xb8\x14\x14\x14\x14\x72\x52\x4b\x14\xa0\x0a\x8b\x15\x6c\x51\x2d\xd0\x4b\x4f\x2d\x81\x72\x8a\x35\x34\x21\xea\x8b\x52\x4b\x4a\x8b\xf2\xe0\x5a\xa2\x91\x2d\x89\xd5\x2b\xcb\x2f\x49\x0d\xc9\x28\x4a\x2d\xce\xc8\xcf\x49\x01\x69\xa9\x05\x04\x00\x00\xff\xff\x7f\xd1\x70\x38\xb9\x00\x00\x00" func quorumcertificateScriptsGet_cluster_vote_thresholdCdcBytes() ([]byte, error) { return bindataRead( @@ -4999,11 +5000,11 @@ func quorumcertificateScriptsGet_cluster_vote_thresholdCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_vote_threshold.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x90, 0x39, 0xfc, 0xde, 0xe2, 0xb0, 0x6e, 0xbb, 0x43, 0x4, 0x67, 0x78, 0x3e, 0x0, 0x52, 0x62, 0x27, 0xd5, 0x72, 0x9a, 0xcb, 0xd8, 0x3c, 0x8e, 0x11, 0xc6, 0xdb, 0x82, 0x38, 0x3f, 0xb5, 0xd1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0xc1, 0x7c, 0x17, 0x83, 0x18, 0x3b, 0xc, 0xe4, 0xc3, 0xdd, 0xae, 0xd5, 0x42, 0xcc, 0x41, 0x67, 0x72, 0xac, 0x6e, 0x80, 0x88, 0xb4, 0x22, 0xf, 0x39, 0x74, 0xda, 0x7e, 0xe1, 0xd6, 0x11}} return a, nil } -var _quorumcertificateScriptsGet_cluster_votesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xbd\x4a\xc5\x40\x10\x85\xfb\x79\x8a\xc3\xad\x92\x26\x17\x1b\x8b\x0b\x56\x01\x21\xa5\x82\x36\x21\xc5\xb2\x99\xd5\x85\xcd\x6e\x98\x99\xf8\x83\xf8\xee\x12\x13\xe5\xa6\x9c\x9f\x73\xbe\x2f\x4e\x73\x11\xc3\x7d\x2a\xef\x6d\x5a\xd4\x58\x1e\x5a\x04\x29\x13\x4e\x87\xdd\x89\xe8\x7c\xc6\x23\xdb\x22\x59\xe1\x32\x9c\x88\xfb\x44\x09\x78\x2e\xc6\x8a\x50\x04\xf6\xca\xd0\x99\x7d\x0c\x91\x47\xf8\x2d\x4a\xe4\xbc\x67\xd5\xca\xa5\x54\x23\x2c\x19\x93\x8b\xb9\xda\xaf\x5d\x1e\xf9\xe3\x82\xa7\x2e\xdb\xcd\x6d\x7d\x41\x7f\x80\x36\x6b\xf7\x80\x2f\x22\x00\x48\x6c\x7f\xa5\x8a\xbb\xa3\x72\xf3\xc2\xb6\x0f\x5a\xd5\xdb\xbf\xfc\xca\xfe\x47\xfa\x6b\xe4\xd0\xbc\xad\xda\x44\xdf\x3f\x01\x00\x00\xff\xff\xc7\xaa\x11\x90\x01\x01\x00\x00" +var _quorumcertificateScriptsGet_cluster_votesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\x31\x4f\x84\x40\x10\x46\xfb\xf9\x15\x5f\x79\xd7\x70\xda\x58\x5c\x62\x61\x38\x4d\x28\x81\x68\x43\x28\x56\x98\xd5\x4d\x60\x97\xcc\xce\x2a\xc6\xf8\xdf\x0d\x82\x46\xca\x99\xcc\xbc\xf7\xdc\x38\x05\x51\x3c\x0c\xe1\x3d\x1f\x52\x54\x96\x32\x87\x95\x30\xe2\x6a\x2e\xf3\xbb\xcb\xa5\xba\xaf\x6b\xa2\xd3\x09\x15\x6b\x12\x1f\x61\x3c\x8c\x88\xf9\x40\xb0\x78\x0a\xca\x11\x36\x08\xf4\x95\x11\x27\xee\x9c\x75\xdc\xa3\x5b\x51\x44\x53\x7a\x86\x4d\x1e\xa3\x71\xfe\xb0\x6d\x0b\xdf\xf3\x7c\xc6\x63\xe1\xf5\xfa\xe6\x78\x46\xb3\x93\x67\x0b\xb3\xc5\x27\x11\x00\x0c\xac\xbf\xb0\x88\xdb\x7d\x66\xf6\xc2\xba\x0d\xf1\x70\x5c\xef\xe5\x27\xf2\xef\xa5\xf9\xaf\x6c\xb3\xb7\x25\x97\xe8\xeb\x3b\x00\x00\xff\xff\x98\x1f\xda\xd8\xf5\x00\x00\x00" func quorumcertificateScriptsGet_cluster_votesCdcBytes() ([]byte, error) { return bindataRead( @@ -5019,11 +5020,11 @@ func quorumcertificateScriptsGet_cluster_votesCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_votes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0x5d, 0xff, 0x6e, 0xd7, 0xf9, 0x68, 0xe, 0xcb, 0x93, 0xff, 0xd6, 0xd2, 0xad, 0xc1, 0xc5, 0xa6, 0x42, 0x74, 0x84, 0x25, 0xb9, 0x41, 0x5, 0x9b, 0x72, 0x51, 0x1e, 0x7d, 0xec, 0x22, 0xbd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe3, 0x7b, 0x4e, 0x81, 0xc6, 0xce, 0x66, 0x20, 0x4d, 0xa4, 0x47, 0x99, 0x55, 0xd7, 0xa9, 0x6f, 0x27, 0x7c, 0x1e, 0x2b, 0xb4, 0xac, 0x53, 0x2b, 0x7e, 0xfa, 0xf7, 0x8b, 0x0, 0xc2, 0x22, 0x32}} return a, nil } -var _quorumcertificateScriptsGet_cluster_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8d\x31\x0b\xc2\x30\x14\x84\xf7\xf7\x2b\x8e\x4e\xed\x52\x10\xa4\x83\xe0\x54\x10\x3a\x3a\x88\x83\x38\x84\xfa\x5a\x03\x2f\x89\x24\x2f\x28\x88\xff\xdd\x21\x45\xec\x76\x77\x7c\xc7\x67\xdd\x23\x44\xc5\x41\xc2\xb3\x97\x9c\x94\xe3\xb1\xc7\x14\x83\x43\xb5\xda\x2a\x22\x33\x8e\x9c\x52\x6d\x44\x1a\x4c\xd9\xc3\x19\xeb\xeb\xb1\x00\x83\xbf\xf1\x6b\x87\xd3\xe0\x75\xd3\x35\x25\x74\x5b\xbc\x89\x00\x40\x58\xb1\x80\x09\xfb\xb5\xac\x9d\x59\x97\x92\xea\xa6\xf0\x91\x35\x47\xff\xbb\x5c\xfe\x25\xd7\x56\x83\x1a\x39\xb3\x9d\xef\x4a\xf4\xf9\x06\x00\x00\xff\xff\xf1\x3a\x40\x1a\xc1\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x30\xa8\x08\x74\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x28\xf4\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\x84\x30\xcc\x4c\x14\xaa\xb9\xb8\x14\x14\x14\x14\x72\x52\x4b\x14\xa0\x0a\x8b\x15\x6c\x51\x2d\xd0\x4b\x4f\x2d\x81\x72\x8a\x35\x34\x21\xea\x8b\x52\x4b\x4a\x8b\xf2\xe0\x5a\xa2\x91\x2d\x89\xd5\x2b\xc9\x2f\x49\xcc\x09\x4f\xcd\x4c\xcf\x28\xe1\xe2\xaa\x05\x04\x00\x00\xff\xff\xe3\x8b\x1a\x8c\xb5\x00\x00\x00" func quorumcertificateScriptsGet_cluster_weightCdcBytes() ([]byte, error) { return bindataRead( @@ -5039,11 +5040,11 @@ func quorumcertificateScriptsGet_cluster_weightCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_weight.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7c, 0x30, 0x57, 0xa9, 0x38, 0x97, 0xfa, 0xe9, 0x63, 0xc9, 0x3a, 0x59, 0xce, 0x31, 0x44, 0x6f, 0x2a, 0xc0, 0xf6, 0xab, 0x44, 0xe5, 0x12, 0x7c, 0x6a, 0xcb, 0x8b, 0xe8, 0x57, 0x7e, 0xce, 0x2d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x77, 0xf7, 0x57, 0xa2, 0x71, 0x66, 0x1c, 0x23, 0x5b, 0xb0, 0xd8, 0xa4, 0x24, 0xf0, 0x4b, 0xc1, 0x4, 0x3a, 0x17, 0xe8, 0x8f, 0xf3, 0xe4, 0xaf, 0xf, 0x90, 0xe5, 0x76, 0x2e, 0x7f, 0xf1, 0x70}} return a, nil } -var _quorumcertificateScriptsGet_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\x31\x6b\xc3\x40\x0c\x85\x77\xfd\x8a\x47\x26\x7b\x49\xe8\xd2\x21\xd0\xc9\x50\xc8\x58\x4a\xa7\x90\x41\x5c\xe4\xfa\x40\x77\x67\x74\x32\x6e\x29\xfd\xef\xa5\xd8\x86\x78\x13\x92\x3e\xde\xf7\x62\x1a\x8b\x39\x5e\xb5\xcc\x9d\x4e\xd5\xc5\xde\x3a\xf4\x56\x12\x0e\xbb\xdd\x81\xe8\x74\xc2\x7b\xb0\x38\x3a\xbc\xc0\xc4\x27\xcb\xe0\x0c\x36\xe3\x6f\x94\x1e\x5d\x51\x95\xe0\xc5\xb0\x52\x15\x73\xf4\x01\xac\xfa\x7f\xf6\x41\xa2\x21\x89\xf3\x9d\x9d\x89\x38\x04\xa9\xb5\x61\xd5\x16\xfd\x94\x91\x38\xe6\x26\x2c\xe4\x25\xdf\xe5\xeb\x8c\x8f\x4b\xf6\xa7\xe7\xf6\x8c\xeb\xce\xe5\xb8\x4e\x37\xfc\x10\x01\x80\x8a\x23\x6c\x99\x2f\xfb\x32\xc7\x4f\xf1\xcd\xa7\x69\x97\xff\x55\x7e\x43\xae\x8f\xa9\x37\xa2\xdf\xbf\x00\x00\x00\xff\xff\xa6\xc7\x74\x36\x15\x01\x00\x00" +var _quorumcertificateScriptsGet_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\x3f\x6b\xc3\x40\x0c\xc5\x77\x7d\x8a\x37\x26\x4b\xd2\x2e\x1d\x02\x1d\xca\xa5\x85\x8c\xa9\xe9\x14\x32\xa8\x17\xb9\x39\xb8\x3f\x46\xd1\x61\x97\xd2\xef\x5e\x8a\x6d\x88\x37\x81\xf4\xf4\xfb\xbd\x90\xba\xa2\x86\xb7\x58\x7a\x17\xeb\xcd\x44\x8f\x0e\xad\x96\x84\x87\xe1\xe8\x5e\xf6\xfb\xf7\xd7\xa6\x21\xda\x6e\xd1\x78\x0d\x9d\xc1\x0a\x54\xac\x6a\x06\x67\xb0\x2a\x7f\xa3\xb4\x70\x25\x46\xf1\x56\x14\xd3\x97\x1b\xfa\x60\x57\x70\x8c\xff\x6b\xbb\x4a\x50\x24\x31\xbe\xb0\x31\x51\x57\x3f\xd1\xd6\x8c\xc4\x21\xaf\xfc\x98\x38\xe4\x8b\x0c\x3b\x7c\x1c\xb2\x3d\x3e\xad\x77\x38\x2d\x9c\x36\xd3\x74\xc6\x0f\x11\x00\x44\x31\xf8\x99\xf5\xbc\x2c\xb0\xf9\x12\x9b\x3d\x56\xeb\xf1\x7e\x92\x9e\x23\xa7\x7b\xea\x99\xe8\xf7\x2f\x00\x00\xff\xff\x60\x84\x69\xbf\x09\x01\x00\x00" func quorumcertificateScriptsGet_clustersCdcBytes() ([]byte, error) { return bindataRead( @@ -5059,11 +5060,11 @@ func quorumcertificateScriptsGet_clustersCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_clusters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0xfa, 0xb0, 0xff, 0x20, 0xaf, 0xe0, 0x18, 0x68, 0x21, 0x71, 0xea, 0x8d, 0x67, 0x52, 0xa1, 0x54, 0x7b, 0xe3, 0x84, 0xef, 0xbd, 0x91, 0xcf, 0x60, 0x8, 0x86, 0xd8, 0xe, 0xed, 0xb7, 0xea}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0xea, 0xb9, 0x6, 0x48, 0xf1, 0x64, 0x54, 0x82, 0x9f, 0xea, 0xc1, 0x19, 0xa6, 0xb8, 0x26, 0xca, 0xe0, 0xa7, 0xa8, 0x17, 0x29, 0x8a, 0x2e, 0x2c, 0xc1, 0x93, 0x31, 0x77, 0xeb, 0x2c, 0x18}} return a, nil } -var _quorumcertificateScriptsGet_node_has_votedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x91\x41\x8f\xd3\x30\x10\x85\xef\xfe\x15\x4f\x7b\x58\x35\xd2\xaa\xb9\xef\x91\x02\x62\x2f\x08\xba\x0b\xf7\xd9\x64\x52\x5b\x75\x66\x22\xcf\xa4\x11\x42\xfc\x77\xe4\xa4\x95\x28\x57\xdb\xf3\xe6\x7b\x9f\xd3\x38\x69\x71\x7c\xce\xba\x1c\xf2\x6c\xce\xe5\xfb\x01\x43\xd1\x11\x0f\x77\x67\x0f\x21\xb4\x2d\x8e\xec\x73\x11\x03\xe1\x5d\x35\x33\x09\x92\xf4\xa9\x23\x4f\x72\x42\x1a\x40\x10\xed\x19\x91\x0c\x36\xbf\x8f\xc9\x9d\x7b\x10\x2e\xea\x8c\x41\x0b\x3c\x26\x03\x4f\xda\xc5\x10\xa8\xeb\xd8\x6c\x47\x39\x37\x18\x66\xc1\x48\x49\x76\x75\xfc\xe5\xe3\x33\x5e\xbd\x24\x39\x35\xcf\xf8\xa0\x9a\xf1\x3b\x04\x00\x68\x5b\xbc\x0c\x58\x18\x54\x18\x49\xe0\x91\x61\x4e\xe7\xba\x9c\xe6\xce\x93\x0a\xa6\x48\xc6\xd8\x5d\x74\x45\x12\xf5\xfa\x70\x2a\x7a\x2a\x6c\xd6\x3c\xad\x33\x15\xc7\x6e\x89\x6b\xd7\x4c\xe6\x1b\xd7\x9a\x6d\x9e\x72\x86\xb9\x96\x8a\x2f\xfd\xda\xea\x0b\xd9\x4f\xad\x7d\x0a\x57\x65\x86\xb7\x32\xf3\x1e\xaf\x49\x3a\xc6\xc2\xb7\x3c\x95\xfc\x0b\x0b\x89\xc3\x15\x67\xd1\x05\x4b\x64\x8f\x5c\x2a\x78\xa4\xcb\xb6\xbe\xbf\xea\x60\x1c\x7e\x1c\x8f\x9f\xbe\xbe\x6d\xdb\x9f\xa0\x63\xf2\x4d\x53\x47\xc6\xfb\x35\xb5\xac\xd6\xef\xff\x68\x9f\xe4\xdb\xb5\x15\x1e\x1f\xff\xbb\xfb\x17\xf7\xaa\xb4\x09\xe1\xcf\xdf\x00\x00\x00\xff\xff\xa0\xa8\x11\xb6\xec\x01\x00\x00" +var _quorumcertificateScriptsGet_node_has_votedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x91\x41\x6f\xd3\x40\x10\x85\xef\xfb\x2b\xde\xa9\x6a\xa4\x2a\xe1\xdc\x1b\x24\x45\xf4\x82\x68\x5c\xb8\x4f\xec\x71\x76\xd5\xf5\x8c\xb5\x33\x8e\x41\x88\xff\x8e\xd6\x4e\x24\xe8\xd9\x9e\xf7\xbe\xf7\x6d\x1a\x46\x2d\x8e\xcf\x59\xe7\x7d\x9e\xcc\xb9\xbc\xec\xd1\x17\x1d\xf0\xe1\xe7\xcb\xfe\xe3\xe1\x70\x7c\x6a\x9a\x10\x76\x3b\x1c\xd9\xa7\x22\x06\xc2\x49\x35\x33\x09\x92\x74\xa9\x25\x4f\x72\x46\xea\x41\x10\xed\x18\x91\x0c\x36\x9d\x86\xe4\xce\x1d\x08\x17\x75\x46\xaf\x05\x1e\x93\x81\x47\x6d\x63\x08\xe3\x74\x42\x3f\x09\x06\x4a\x72\x5f\xcf\x9e\x0f\x8f\x68\xbc\x24\x39\x6f\x1e\xf1\x49\x35\xe3\x77\x08\x00\xb0\xdb\xe1\xb9\xc7\xcc\xa0\xc2\x48\x02\x8f\x0c\x73\x7a\xab\xa5\x34\xb5\x9e\x54\x30\x46\x32\xc6\xfd\x45\x17\x14\x51\xaf\x3f\x8e\x45\xcf\x85\xcd\x36\x0f\xcb\x4d\xc5\xb0\x5b\xe2\xb2\x2f\x93\xf9\xca\xb3\x64\x9b\xa7\x9c\x61\xae\xa5\x62\x4b\xb7\xac\xf9\x42\xf6\x43\xeb\x8e\xc2\x55\x93\xe1\xb5\x4c\xbc\x45\x93\xa4\x65\xcc\x7c\xcb\x53\xc9\xbf\x30\x93\x38\x5c\xf1\x26\x3a\x63\x8e\xec\x91\x4b\x05\x8f\x74\x59\xeb\xbb\xab\x06\xc6\xfe\xfb\xf1\xf8\xf4\xf5\x75\x6d\x7f\x80\x0e\xc9\x57\x3d\x2d\x19\x6f\x97\xd4\xb2\xd8\xfe\xff\x5d\xb6\x49\xbe\x5d\x57\xe1\xee\xee\xdd\xb7\x7f\x71\xaf\x4a\x37\x21\xfc\xf9\x1b\x00\x00\xff\xff\x27\xdb\x8d\xf4\xe0\x01\x00\x00" func quorumcertificateScriptsGet_node_has_votedCdcBytes() ([]byte, error) { return bindataRead( @@ -5079,11 +5080,11 @@ func quorumcertificateScriptsGet_node_has_votedCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_node_has_voted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0xf8, 0x21, 0xe, 0xb3, 0x57, 0x9d, 0x37, 0xd, 0xfa, 0xd5, 0x9e, 0x93, 0xb5, 0xaf, 0xf1, 0x62, 0xd9, 0x2b, 0x82, 0xe9, 0x2c, 0x36, 0x3c, 0x6d, 0xc5, 0x18, 0x2b, 0xdd, 0x26, 0x8e, 0xf1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0xf9, 0xf9, 0x94, 0x9c, 0xff, 0xe1, 0x6a, 0x1, 0x85, 0x98, 0x1f, 0xfc, 0x7c, 0xef, 0xe4, 0x42, 0x47, 0x88, 0x91, 0x70, 0x78, 0x6c, 0xbc, 0xc1, 0xb0, 0xa8, 0x7c, 0xff, 0x13, 0x4b, 0x27}} return a, nil } -var _quorumcertificateScriptsGet_node_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8f\x31\x4b\xc4\x40\x10\x85\xfb\xfd\x15\xef\xae\x4a\x40\x0e\x05\xb9\xe2\xe0\xaa\x88\x90\x52\x44\x2c\x42\x8a\x25\x99\xc4\x85\xcd\xac\xec\x4c\x50\x08\xf9\xef\x92\x6c\x10\x83\xd5\x6d\xb7\x33\xdf\x7b\x1f\xe3\x86\xcf\x10\x15\xcf\x3e\x7c\x15\x7e\x14\xa5\xf8\x52\xa0\x8b\x61\xc0\x71\x37\x3b\x1a\x63\x9b\x86\x44\x32\xeb\x7d\x8e\x6e\x64\x0c\xd6\x71\xd6\x24\xa0\xe4\x96\xbe\x2f\x78\x2b\x59\x1f\xce\x77\xe0\xd0\x52\xf9\x74\xc1\xab\x46\xc7\x7d\x9e\x16\xe7\x47\x4c\xc6\x00\x80\x27\xc5\x16\x14\x5c\xf7\xf2\x53\x4f\xba\x7d\x24\xcb\x13\xef\xba\x5f\xbc\xfa\x2b\xac\x4f\x8b\xe8\x9d\x5c\xff\xa1\x52\x25\x69\x8d\xc3\x15\xec\x3c\xa6\x35\xba\xbc\x48\x3a\x46\xbe\xa1\xe2\xb0\x46\x67\x90\x17\xfa\xdf\x73\x0f\x2b\xdb\x41\x89\x33\x66\xfe\x09\x00\x00\xff\xff\x50\x00\x3d\xc8\x47\x01\x00\x00" +var _quorumcertificateScriptsGet_node_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8f\x31\x6b\x84\x40\x10\x85\xfb\xfd\x15\xef\xba\x3b\x08\xc7\x05\xc2\x15\x07\x57\x04\x4d\xc0\xd2\x48\x48\x21\x16\x26\x8e\x66\x61\x9d\x95\xdd\x59\x22\x88\xff\x3d\xe8\x4a\x48\x48\x75\xd3\x0d\xf3\xbd\xf7\x31\xba\x1f\xac\x13\x3c\x1b\xfb\x95\x98\xe0\x85\x5c\x9e\xa0\x75\xb6\xc7\x69\xcc\x93\xc7\x34\x7d\x79\x2a\x0a\xa5\x86\xf0\x8e\x36\x30\xfa\x5a\xf3\xfe\x23\x82\x19\x37\x34\x5e\xf0\x9a\xb1\xdc\x9f\xef\xc0\xb6\xa1\x2c\xbd\xa0\x10\xa7\xb9\x3b\xc4\xc3\xf9\x01\x93\x52\x00\x60\x48\xb0\x05\x3d\xae\x7f\x85\xc7\x8e\x64\x5b\xfc\xfe\x10\x79\xdd\xfe\xe0\xe5\x6f\x61\x75\x5c\x44\x6f\xa4\xbb\x4f\xf1\x65\x94\x56\xd8\x5d\xc1\xda\x60\x5a\xa3\xcb\x38\x92\xe0\xf8\x86\x8a\xdd\x1a\x9d\x41\xc6\xd3\xff\x9e\x13\x6a\xbf\x3d\x14\x39\xa5\xe6\xef\x00\x00\x00\xff\xff\xec\x0b\xfb\xe3\x3b\x01\x00\x00" func quorumcertificateScriptsGet_node_weightCdcBytes() ([]byte, error) { return bindataRead( @@ -5099,11 +5100,11 @@ func quorumcertificateScriptsGet_node_weightCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_node_weight.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x93, 0x25, 0xfa, 0x54, 0x63, 0x59, 0xc9, 0xed, 0x7c, 0xb4, 0x5, 0x3, 0xd4, 0xe1, 0x46, 0x77, 0x8e, 0x2d, 0xec, 0x84, 0x5b, 0x67, 0x8, 0x2a, 0xe3, 0xdc, 0xaa, 0x1c, 0xfb, 0x6, 0xd4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0x9c, 0x30, 0x47, 0x7d, 0x62, 0xd0, 0xa6, 0x81, 0xca, 0xe6, 0xf1, 0x83, 0x8e, 0x2f, 0x26, 0x25, 0x47, 0x8b, 0x62, 0x97, 0xde, 0xac, 0x2d, 0xf, 0xb1, 0xe1, 0x32, 0x9d, 0xfb, 0x27, 0xda}} return a, nil } -var _quorumcertificateScriptsGet_qc_enabledCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xcc\x31\x0a\x42\x31\x0c\x06\xe0\x3d\xa7\xf8\x79\xd3\xeb\xe2\x01\x1c\x2d\x38\xeb\x11\x4a\x49\xa5\x90\x26\x92\xb4\x38\x88\x77\x77\xee\xfa\x0d\x5f\x1f\x6f\xf3\x89\xbb\xd8\x27\xcb\x8a\xc9\xfe\xcc\x68\x6e\x03\xc7\x66\x07\x51\xa9\x95\x23\xce\x22\x92\xd0\x96\x62\x94\xae\x67\xba\xe2\x66\x26\xf8\x12\x01\x80\xf3\x5c\xae\x7b\x77\xe9\xfa\x70\x7b\x39\x47\x10\xfd\xfe\x01\x00\x00\xff\xff\x53\x18\x41\x96\x71\x00\x00\x00" +var _quorumcertificateScriptsGet_qc_enabledCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x30\xa8\x08\x74\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x70\xca\xcf\xcf\x51\xa8\xe6\xe2\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x35\x42\x2f\x33\x2f\xa0\x28\x3f\xbd\x28\xb5\xb8\x98\x8b\xab\x16\x10\x00\x00\xff\xff\x91\xb7\x70\x7a\x65\x00\x00\x00" func quorumcertificateScriptsGet_qc_enabledCdcBytes() ([]byte, error) { return bindataRead( @@ -5119,11 +5120,11 @@ func quorumcertificateScriptsGet_qc_enabledCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_qc_enabled.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe4, 0x1, 0xc8, 0x57, 0x3, 0x99, 0xe8, 0x3a, 0xeb, 0xa5, 0xac, 0x3b, 0x72, 0x25, 0x55, 0x34, 0xf7, 0x31, 0x44, 0x4b, 0xc6, 0x3, 0x7, 0x69, 0x63, 0x0, 0xea, 0xb, 0x6f, 0x71, 0x5, 0xba}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0xd8, 0xc8, 0x9f, 0xb4, 0x4d, 0x43, 0xa4, 0x5b, 0x58, 0xc3, 0xef, 0xe6, 0xab, 0x17, 0xb8, 0xa8, 0xae, 0x35, 0x7c, 0xc4, 0xff, 0xb2, 0xd5, 0xe2, 0x17, 0x9e, 0xab, 0x50, 0xe8, 0x4e, 0xab}} return a, nil } -var _quorumcertificateScriptsGet_voter_is_registeredCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xc1\x8a\x83\x40\x10\x44\xef\xfd\x15\x85\x27\xbd\xac\x77\x8f\xeb\xb2\xe0\x71\xdd\x2f\x98\x68\x8f\x34\x8c\xdd\xa1\x67\x34\x87\x90\x7f\x0f\x86\x10\xf0\x5a\xd4\xab\x57\xb2\x5e\xcd\x0b\x7e\x93\xdd\xfa\xb4\xe5\xc2\xfe\xd7\x23\xba\xad\xa8\x4e\x59\x45\xd4\xb6\x18\xb9\x6c\xae\x19\x01\x17\xb3\xc4\x41\x21\x3a\xcb\x14\x8a\xe8\x02\x89\x08\x50\x9b\x19\x92\xe1\xbc\xc8\x41\xf2\x8c\x68\x8e\xdd\x8e\x0a\x51\x98\x26\xce\xb9\x0e\x29\x35\x88\x9b\x62\x0d\xa2\xf5\xc1\x0c\x3f\x1d\xfe\x8b\x8b\x2e\x4d\x87\x6f\xb3\x84\x3b\x11\x00\xf8\x4b\x79\x3e\xf8\xb5\x5b\x61\x1f\xf2\xf8\x91\xbc\x37\x1a\xa2\xc7\x33\x00\x00\xff\xff\xc7\x79\x0f\x5e\xd2\x00\x00\x00" +var _quorumcertificateScriptsGet_voter_is_registeredCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x41\x6a\x84\x40\x10\x85\xe1\x7d\x9d\xe2\x2d\xe3\x26\x66\xed\x2e\xd1\x04\x5c\xaa\x27\x68\x63\xb7\x14\xb4\x55\x52\xdd\x6d\x02\xc3\xdc\x7d\x70\x18\x06\x66\xff\xf3\xbd\xc7\xdb\xae\x96\xf1\x13\xf5\xaf\x8d\x25\x65\x6f\x43\x8b\x60\xba\xe1\xe3\x7f\x68\x3f\xbb\x6e\xfc\x9e\x26\xa2\xba\xc6\xe8\x73\x31\x49\x70\x98\x55\xa3\x77\x02\x96\x85\x7f\x5d\x66\x59\xc1\x01\x0e\xa2\x8b\x07\x27\x98\x5f\xf9\x94\xfc\x82\xa0\x86\x43\xcf\x84\x68\x2f\x33\x42\x11\x6c\x8e\xe5\xed\x6c\xfb\xae\xc1\x94\x8d\x65\xad\x1a\x7c\xa9\x46\x5c\x88\x00\xc0\xee\x53\xaf\xa7\xde\x0f\xcd\xde\xfa\x34\x3e\xf1\x87\x51\x11\x5d\x6f\x01\x00\x00\xff\xff\x25\xd3\x9a\xb5\xc6\x00\x00\x00" func quorumcertificateScriptsGet_voter_is_registeredCdcBytes() ([]byte, error) { return bindataRead( @@ -5139,11 +5140,11 @@ func quorumcertificateScriptsGet_voter_is_registeredCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_voter_is_registered.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xc6, 0x3d, 0x20, 0x48, 0xaf, 0x41, 0xc4, 0xfd, 0x17, 0xf1, 0x48, 0xb8, 0x5b, 0xd0, 0x4c, 0xa5, 0xf1, 0x23, 0x4e, 0x87, 0xf, 0xa5, 0xb1, 0x4d, 0x99, 0x1e, 0x1e, 0xfa, 0x87, 0x7f, 0x65}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0xb, 0x7e, 0xe9, 0xf, 0xb8, 0xd4, 0x4, 0xbe, 0x72, 0xc1, 0x51, 0x89, 0xc8, 0x3f, 0xee, 0xde, 0x87, 0xd6, 0xa6, 0x14, 0x73, 0xeb, 0xa4, 0x18, 0x82, 0x7e, 0xeb, 0x4a, 0x9d, 0xf8, 0x9b}} return a, nil } -var _quorumcertificateScriptsGet_voting_completedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\xa1\x6e\xc5\x30\x0c\x46\x61\xee\xa7\xf8\x55\xd4\x92\x95\x0f\xae\xd2\xf8\xf6\x06\x6e\xe2\xac\x96\x92\xb8\x4a\x9c\x0e\x4c\x7b\xf7\xab\x7b\x59\xe9\x21\xdf\xd1\x72\x5a\x73\x7c\x66\xfb\xdd\xf2\xe8\x2e\xed\x6b\x43\x6a\x56\x30\xdd\xda\x44\xb4\xae\xf8\x16\x1f\xad\x76\x30\x76\xb3\x2c\x5c\xa1\x35\x6a\x60\xd7\xfa\x03\x4d\x60\x54\x8b\x82\x83\x3b\xfa\xd8\x8b\xba\x4b\x04\xe3\x32\x17\x24\x6b\xf0\x43\x3b\xe4\xb4\x70\x10\x71\x08\xd2\xfb\xcc\x39\x2f\x48\xa3\xa2\xb0\xd6\x79\x79\xc7\x87\x59\xc6\x1f\x11\x00\xb4\x97\x77\xbf\x7b\xbb\xec\xc9\x6d\x56\xce\x2c\x2e\x71\x5e\x88\xfe\x1f\x01\x00\x00\xff\xff\xb1\xa0\xbe\x79\xc7\x00\x00\x00" +var _quorumcertificateScriptsGet_voting_completedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x31\x4e\xc5\x30\x0c\x06\xe0\xdd\xa7\xf8\xc7\xf7\x16\xca\xcc\x06\x29\xec\x6d\x4f\x90\x36\x0e\xb5\x94\xc4\x51\xe2\x14\x24\xc4\xdd\x11\x6c\x9c\xe0\xfb\x24\x57\x6d\x86\xb7\xa4\x1f\x2e\x8d\x6e\xdc\x16\x87\xd8\x34\xe3\xf1\x73\x71\xcf\xf3\xbc\xbe\x6e\x1b\xd1\x34\x61\x65\x1b\xad\x74\x78\xec\xaa\x89\x7d\x81\x94\x20\x87\x37\x29\xef\x90\x08\x8f\xa2\x81\x71\xfa\x8e\x3e\xf6\x2c\x66\x1c\xe0\x71\xa9\x31\xa2\x36\xd8\x29\x1d\x5c\xf5\x38\x89\xea\xd8\x11\x47\x41\xf6\x52\x6e\xf7\x27\xbc\xa8\x26\x7c\x11\x01\x40\xfb\x73\xfe\x8f\x1e\x2e\xfd\x65\x9c\xe6\x9a\xd8\x38\xdc\xee\x44\xdf\x3f\x01\x00\x00\xff\xff\x19\xef\x8b\xe7\xbb\x00\x00\x00" func quorumcertificateScriptsGet_voting_completedCdcBytes() ([]byte, error) { return bindataRead( @@ -5159,11 +5160,11 @@ func quorumcertificateScriptsGet_voting_completedCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_voting_completed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0x87, 0x1d, 0x98, 0xc3, 0xe7, 0x56, 0x6d, 0x1d, 0xe6, 0x4a, 0xf0, 0xa5, 0xde, 0x33, 0xfa, 0x4b, 0xb0, 0x81, 0x1f, 0xaf, 0x72, 0xa7, 0xdf, 0x2f, 0xc2, 0xe0, 0xbd, 0x62, 0x6d, 0xfe, 0xa9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd7, 0x4, 0x25, 0x98, 0x8d, 0xb7, 0x66, 0x53, 0x62, 0x94, 0xae, 0x9d, 0x79, 0xd5, 0xb7, 0x36, 0x53, 0xb9, 0xae, 0xd1, 0xa, 0x1c, 0x9c, 0x85, 0x25, 0x5d, 0xd6, 0xc8, 0xf, 0xf7, 0x1b, 0xdc}} return a, nil } -var _quorumcertificateSubmit_voteCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\xc1\xaa\xdb\x30\x10\xbc\xeb\x2b\x06\x1f\x5e\x6d\x68\xed\xbb\x69\xfb\x78\x35\xf4\x56\x78\x69\x4a\xee\x8a\xbd\xb6\x45\x6c\xc9\x5d\xad\x9a\x96\x92\x7f\x2f\xb2\x9a\x10\x87\x27\x30\x78\x57\x33\xb3\xa3\x59\x33\x2f\x8e\x05\x5f\x27\x77\x6e\xa6\xe0\x85\x78\xd7\xa0\x67\x37\x23\xdb\xf4\x32\xa5\xaa\x0a\x2f\xb0\xae\x23\xfc\x72\x42\x8c\xe0\xc9\x43\x46\xe3\x21\xac\xad\xd7\xad\x18\x67\x21\x0e\x3e\x1c\x67\x23\xd0\xd8\x35\x2b\x54\x55\x55\x24\xbf\x6a\xd6\x33\x09\xb1\xaf\x63\x19\xbf\x78\xbb\x37\x83\xd5\x12\x98\x6a\xfc\x18\x09\xde\x0c\x96\x3a\xcc\xe4\xbd\x1e\x08\xc1\x1b\x3b\x40\x46\x5a\x27\xbf\xf3\xf0\xa2\x4f\xb1\x75\xa2\x3f\x57\x85\x6f\x09\x9b\xf8\x23\xfd\xfe\x40\xb6\x75\x1d\x75\xf0\xc2\x11\xea\xfa\x55\x80\xf5\xf9\x2a\xab\xd4\x9d\xe5\xfc\xc1\xc5\x7e\x65\xbd\xdf\x4a\xa7\x66\x81\xbf\x4a\x01\xc0\xc2\xb4\x68\xa6\x7c\x75\xcb\x35\x74\x90\x31\xff\xe2\x98\xdd\xf9\xa0\xa7\x40\x05\x9e\x5e\xda\xd6\x05\x2b\x91\x82\xff\x67\x22\x49\xd9\x7d\xa7\x1e\x9f\xd2\x53\xb9\xf4\xe2\x58\x0f\x54\x1e\x57\xfa\xc7\xa7\x4d\xee\xe5\x21\xe2\x3f\xe7\x71\x25\x35\xde\xb8\xda\x27\xf6\xab\x96\xb1\xb8\x0d\x8a\xe7\xf9\x19\x8b\xb6\xa6\xcd\xb3\xc6\x85\xa9\x83\x75\x82\x34\x02\x4c\x3d\x31\xd9\x96\xe2\xb6\x7e\xb6\xc9\x53\x56\xa8\x1b\xff\x6a\xb2\x8c\x3f\x8f\xf9\x6c\xca\x87\x98\xee\x8a\xe4\xe6\xa2\x2e\xff\x02\x00\x00\xff\xff\xf6\x6f\xe5\x6d\x63\x02\x00\x00" +var _quorumcertificateSubmit_voteCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\x51\xcf\x93\x40\x10\x7c\xbf\x5f\x31\xf9\x1e\x94\x26\x5a\x7c\x26\xea\x17\x42\xf5\xcd\xa4\x2d\xc6\xf7\x2b\x2c\x70\x29\xdc\xe1\xde\x9e\xad\x31\xfd\xef\xe6\x38\xdb\xb4\x8d\x9b\x90\xb0\xbb\x33\xb3\xc3\x60\xa6\xd9\xb1\xe0\xeb\xe8\x4e\xd5\x18\xbc\x10\xef\x2a\x74\xec\x26\x7c\x38\xef\xaa\x72\xb3\xd9\x7f\xa9\x6b\xa5\xf2\x1c\x25\xac\x6b\x09\xbf\x9c\x10\x23\x78\xf2\x90\xc1\x78\x08\x6b\xeb\x75\x23\xc6\x59\x88\x83\x0f\x87\xc9\x08\x34\x76\xd5\x02\x55\x79\x1e\xc9\x5b\xcd\x7a\x22\x21\xf6\x45\x6c\xe3\x13\xb7\xb5\xe9\xad\x96\xc0\x54\xe0\xfb\x40\xf0\xa6\xb7\xd4\x62\x22\xef\x75\x4f\x08\xde\xd8\x1e\x32\xd0\x72\xf9\xad\x87\x17\x7d\x8c\xa3\x23\xfd\xbe\x2a\x7c\x4b\xd8\xc4\x1f\xe8\xfc\x9e\x6c\xe3\x5a\x6a\xe1\x85\x23\xd4\x75\x8b\x00\xeb\xd3\x55\x56\xa9\x3b\xcb\xd9\x93\x8b\x7a\x61\xbd\x7b\x94\x4e\xc3\x15\xfe\x28\x05\x00\x33\xd3\xac\x99\xb2\xc5\x2d\x17\x28\x83\x0c\x65\xd3\xb8\x60\x25\x62\xf0\xaf\x46\x92\x14\xd6\x9e\x3a\x7c\x4a\xdf\xc6\xeb\x83\x63\x76\xa7\x8f\x6f\x1e\x02\x5f\xff\x88\xb8\xcf\x59\xcc\xbd\xc0\x7f\x56\xb5\x38\xd6\x3d\x6d\xb5\x0c\xab\xdb\x81\x58\xaf\xaf\x98\xb5\x35\x4d\xf6\x52\xb9\x30\xb6\xb0\x4e\x90\x4e\x80\xa9\x23\x26\xdb\x50\xfc\x2d\x3f\x9b\xe4\xe5\x65\xa5\x6e\xfc\xab\xb9\x75\x7c\x79\x0e\xe2\xa1\x7d\xca\xe3\xae\x49\x6e\x2e\xea\xf2\x37\x00\x00\xff\xff\x81\x4d\x6f\x1c\x48\x02\x00\x00" func quorumcertificateSubmit_voteCdcBytes() ([]byte, error) { return bindataRead( @@ -5179,7 +5180,7 @@ func quorumcertificateSubmit_voteCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/submit_vote.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xff, 0x17, 0x2e, 0x7e, 0x4e, 0xc0, 0xf1, 0x63, 0x79, 0x30, 0x6a, 0xd7, 0xc7, 0xad, 0xdf, 0x22, 0xad, 0x5f, 0xfd, 0xd, 0x41, 0xc7, 0x37, 0xea, 0xef, 0x44, 0x8b, 0x91, 0x62, 0xe4, 0x9e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x97, 0xf6, 0x2f, 0x9, 0xa3, 0xbc, 0x7e, 0x74, 0xb2, 0xa3, 0xe, 0xf0, 0x38, 0x14, 0x3e, 0x45, 0xca, 0xa1, 0xa1, 0x7f, 0xa4, 0x86, 0x99, 0x91, 0x81, 0xb3, 0x63, 0x6d, 0x75, 0x3b, 0xe}} return a, nil } @@ -5243,7 +5244,7 @@ func randombeaconhistoryScriptsGet_source_of_randomness_pageCdc() (*asset, error return a, nil } -var _stakingcollectionClose_stakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x8e\xd3\x30\x10\xbd\xe7\x2b\x46\x3d\x2c\xa9\xb4\xca\x4a\x70\xab\x80\x0a\x8a\x90\xf6\x04\xa2\xc0\x7d\xea\x4c\x13\x83\xe3\x89\xc6\xe3\x2d\x2b\xb4\xff\x8e\x6c\x37\x29\xa2\x39\x70\x59\x1f\x92\x78\xfc\x26\xef\xcd\xf3\xb3\xc3\xc8\xa2\xf0\xd1\xf1\x69\xaf\xf8\xd3\xfa\x6e\xc7\xce\x91\x51\xcb\x1e\x8e\xc2\x03\xac\x16\xcf\x56\x55\x75\x77\x07\x3b\xc7\x81\x02\x70\x54\x40\x08\x05\x03\x7c\xf8\x41\x46\xc1\x7a\xd0\x9e\xe6\xaa\x99\x5b\x53\xe3\xd7\xde\x06\x68\x99\x02\x78\x56\x10\x1a\xf8\x81\x32\x5c\xc8\xb0\xb4\x85\x39\xed\x6d\x4b\x5e\xad\x3e\x82\xe2\xc1\xd1\x6d\xea\x3d\x44\x05\xab\xa5\x7b\x20\x4c\x34\xa8\x19\x8c\xc6\x70\xf4\x5a\x0a\xa6\x68\xb3\x0a\x06\x7d\x62\xa1\x07\x92\x04\xa1\x90\xab\xd8\xa1\xf5\x55\xa5\x82\x3e\x60\x16\x56\x7b\x6e\xe9\xfe\xc3\x06\xf6\x2a\xd6\x77\xb7\xd0\x92\xa3\x0e\x95\x25\x15\xbf\xdd\x7b\x7d\xf5\x72\xbb\x86\xdf\x15\x00\x40\x7e\x38\xd2\x69\xc0\x8b\x35\x5f\xe8\xb8\x01\x8c\xda\xd7\x8b\xce\x35\x97\xcf\x4f\x27\x4f\xb2\x86\x9b\x65\xdc\x55\xa5\xca\x9c\xa3\xd0\x88\x42\xf5\x79\xd8\x33\xd5\x7b\x16\xe1\xd3\x77\x74\x91\xd6\x70\xf3\xae\x9c\x4d\x5a\xd3\x0a\xe4\x8e\xcd\x92\x56\x78\x33\xf9\xd6\x04\x65\xc1\x8e\x9a\x43\xfe\xd9\xeb\xe7\x98\xe1\x6d\x9d\xae\x76\xb3\x1c\xb8\x6b\xf8\xbe\x28\xfa\x8c\xda\xaf\xe7\x51\xd2\xda\x6e\x61\x44\x6f\x4d\xbd\xda\x71\x74\x6d\x8e\x51\x91\x0d\x08\x42\x47\x12\xf2\x86\x40\x19\x10\xae\x83\x7d\xce\xe6\x28\x76\x40\x79\x84\x18\x48\x5e\x84\xc9\x86\x55\x61\x7a\x2a\x76\xd3\x2f\x32\x51\xe9\x7f\x9c\x6c\x72\xe4\x12\x1b\xcd\x51\x2a\xef\x7f\xa2\xf4\xd7\x66\xe2\x7a\xaa\xfe\x04\x00\x00\xff\xff\x81\xd2\xc8\xc9\x8a\x03\x00\x00" +var _stakingcollectionClose_stakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xd4\x40\x0c\xbd\xe7\x2b\xac\x1e\xd0\x56\xaa\xb6\x08\x6e\x11\xb0\x8a\xb2\x05\x45\x54\x2d\x6a\x96\x0f\x70\x26\x4e\x32\x30\x19\x47\x33\x4e\x5b\x84\xfa\xef\x68\x66\x48\x40\xdd\x3d\xac\x0f\x89\xfc\x64\xbf\xf7\x6c\x8f\x1e\x27\x76\x02\x9f\x0d\x3f\xd5\x82\x3f\xb5\xed\x4b\x36\x86\x94\x68\xb6\xd0\x39\x1e\xe1\xed\x73\x7d\x28\xbe\x56\x77\x5f\xca\xfb\xdb\xdb\x9b\xf2\x50\xdd\xdf\x15\xfb\xfd\xc3\x4d\x5d\x67\xd9\xf5\x35\x94\x86\x3d\x79\xe0\x59\x00\xc1\x27\x0a\xe0\xe6\x07\x29\x01\x6d\x41\x06\x5a\x51\xb5\x32\x87\xc6\xc3\xa0\x3d\xb4\x4c\x1e\x2c\x0b\x38\x1a\xf9\x91\x62\xb9\x23\xc5\xae\x4d\xe2\x21\xd7\x2d\x59\xd1\xf2\x0b\x04\x1b\x43\x57\xa1\xb7\x99\x05\xb4\xa4\xee\x91\x30\xc8\xa0\xc4\x62\x54\x8a\x67\x2b\x09\x50\xc9\x9b\x16\x50\x68\x83\x0a\x3d\x92\x0b\x25\xe4\x23\x8a\x3d\x6a\x9b\x65\xe2\xd0\x7a\x8c\xc6\x36\x96\x5b\xaa\xf6\x39\xd4\xe2\xb4\xed\xaf\xa0\x25\x43\x3d\x0a\xbb\x00\x7e\xaf\xac\xbc\x7f\xb7\xbb\x84\xdf\x19\x00\x40\xfc\x18\x92\x65\xc0\x7f\x9b\x7b\xa0\x2e\x87\x37\x27\x97\xba\x3d\x42\xb2\xc8\x33\x39\x9a\xd0\xd1\xe6\xef\x00\x39\x14\xb3\x0c\x45\x4a\x16\xc1\x10\x9e\x4c\xb7\x3d\x25\x08\x1f\x97\xe1\xb7\x0d\x3b\xc7\x4f\x1f\xce\x35\xf0\x69\x13\x76\x9d\x9f\x7e\x04\xc7\xe5\xb5\xb0\xc3\x9e\xbe\xa1\x0c\x97\xab\xad\x10\xbb\x1d\x4c\x68\xb5\xda\x5c\x94\x3c\x9b\x36\xde\x35\x59\x01\x47\x1d\x08\xc3\x11\xd7\x45\x62\x78\x49\x3b\xa0\x67\x52\xb3\xd0\x39\xd3\x6e\xe3\x6d\x03\x1f\xad\x37\x4b\xff\x57\x37\xfb\x2f\x59\xb4\x5e\xb2\x3f\x01\x00\x00\xff\xff\x6e\x12\x74\xdf\xf6\x02\x00\x00" func stakingcollectionClose_stakeCdcBytes() ([]byte, error) { return bindataRead( @@ -5259,11 +5260,11 @@ func stakingcollectionClose_stakeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/close_stake.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x31, 0xd6, 0xfa, 0x69, 0x5f, 0x9d, 0x28, 0xd3, 0x8b, 0x18, 0x15, 0x2c, 0xdc, 0xf3, 0x4d, 0x92, 0xf3, 0x99, 0x54, 0x52, 0x91, 0x27, 0xbf, 0x10, 0xdd, 0x65, 0x16, 0xce, 0xac, 0x21, 0xd9, 0x7b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x59, 0x8d, 0x88, 0x8f, 0x9d, 0x2f, 0x9b, 0x93, 0x92, 0x8c, 0x12, 0x2b, 0xb, 0x67, 0x85, 0x23, 0x87, 0x27, 0x5b, 0x5f, 0x46, 0x81, 0x35, 0x3e, 0x3d, 0x28, 0xbf, 0xd8, 0x89, 0xc8, 0x19}} return a, nil } -var _stakingcollectionCreate_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x4d\x4f\xdb\x40\x10\x3d\xe3\x5f\xf1\x94\x03\xb5\xa5\xc8\xa4\xb7\xca\x6a\x8a\x68\x5a\x04\x42\x6d\x51\xa3\xf6\x3e\x78\x27\xf6\x0a\x67\xd7\x9a\x5d\x13\xac\x8a\xff\x5e\xf9\x2b\x24\xc4\x50\x38\xd4\x07\x67\xed\xec\xcc\x7b\xfb\xe6\xcd\x58\xaf\x4b\x2b\x1e\x0b\xa9\x4b\x6f\x83\xfe\xe9\xbc\xb0\x9b\xa5\xa7\x5b\x6d\xb2\x85\x2d\x0a\x4e\xbd\xb6\x06\x2b\xb1\x6b\x4c\x46\xff\x9b\x04\xc1\xc9\xc9\x09\x16\xc2\xe4\xd9\x81\xb0\xa6\x34\xd7\x86\x41\x69\x6a\x2b\xe3\xb1\xb2\x02\x82\xb1\x8a\xe1\x73\xf2\xd0\x0e\x54\x08\x93\xaa\xa1\x0d\x7c\xce\x70\x5d\x4e\xa4\xdb\xa4\x6d\x4a\x32\x0a\xa4\x94\x43\x59\xdd\x14\x3a\xc5\x2d\xd7\x0e\xde\xb6\x21\x86\x37\x03\x40\x10\x78\x21\xe3\xa8\x0d\x0c\x1b\x9c\xcb\x2f\x09\x96\x5e\xb4\xc9\xa6\x08\xb0\x73\xf5\xd4\xce\xba\xc0\x2b\xae\x5f\xbb\x6f\xa9\x33\x43\xbe\x12\x3e\x2b\x32\x2b\xda\xe7\xeb\x04\xbf\x2e\x8d\xff\xf0\xaf\xc0\x0b\x72\xf9\xd3\x98\x08\x7f\xda\xa0\xf6\x56\xb0\x1f\xce\xff\xa8\xe9\x4f\x5e\x25\xa0\xca\xe7\xe1\xa8\xe4\xf1\xe3\xf2\xc7\xc6\xb0\x44\x38\x1e\xdf\x77\xf0\x26\x68\x31\x4b\xe1\x92\x84\xc3\x5e\xc0\x1e\xea\xb3\x15\xb1\x9b\xdf\x54\x54\x1c\xe1\xb8\x3f\xc2\xc0\xb5\xb9\x1c\x17\xab\x78\x8c\x2b\xe6\x43\x2d\x62\xe7\xad\x50\xc6\xf1\x4d\x9b\xec\xe3\xff\x38\xc3\xa7\xb0\x71\x63\x32\xee\xd4\xc3\xed\xcb\x8e\xd1\x35\xf9\x3c\xda\xab\xd5\xe9\x29\x4a\x32\x3a\x0d\x27\x0b\x5b\x15\x0a\xc6\x7a\x74\xb4\x41\x10\x5e\xb1\xb0\x49\xb9\x31\x1c\xe1\xb0\x23\x7a\xeb\x96\xa2\xd7\x24\x35\x2a\xc7\xf2\xce\x0d\x32\x4c\xa2\x60\x0b\xa5\x57\x6d\x8d\xf7\x9d\x81\xf9\xf3\x6a\xc6\x69\xdb\x4a\xdf\xf6\x02\xce\xad\x7c\xbd\xd7\xce\x6b\x93\x7d\xb7\x8a\xb7\x36\xef\x7e\xa7\x28\xa9\x66\x49\x06\xfc\xdd\xaa\x6d\x4d\xa6\xb3\xc6\x88\x98\xe3\xd0\xcc\xa1\x50\x57\xf8\xe4\x35\xd6\xdf\x97\xf1\x39\x29\x33\xf6\xa0\x06\xb5\x8b\x06\x0d\xe1\xdd\x30\x69\xc4\x13\xda\x80\x4d\xb5\xc6\x5d\x83\x8d\x52\xec\x9d\x56\xac\x76\xd5\x1b\xd8\xe7\x7d\x1f\x61\x8e\xbd\x96\x7a\x89\xf9\xde\xc6\xb7\x90\x6e\xc0\xde\xc6\x77\x37\xef\x01\xf7\x6e\x7c\x5d\x71\x8d\x39\xae\x87\x75\x18\x1c\x1d\x1d\xb5\xcd\x38\xbc\x19\x39\x41\xac\x38\xb5\x8a\x2f\xf8\x3e\x8c\xa6\x43\x80\x1b\x99\x45\x7d\x71\x83\x6e\x47\xf4\xc2\x4c\x8a\x9b\x29\x1a\x93\x52\xe1\x0e\xf0\x76\x39\xdd\x0a\xdd\x27\x1e\x1e\xa7\xd8\xb0\xce\x72\x9f\xe0\xfd\x6c\x36\x8b\x67\x8f\x10\x0f\xe0\xc2\xf1\x13\xc3\x1d\x08\xdb\x79\xfa\x99\xaf\x43\x3b\xd0\xad\xe2\x1d\x21\x1f\x82\xee\xfe\x10\xfc\x0d\x00\x00\xff\xff\xae\x12\x08\x8b\xa6\x06\x00\x00" +var _stakingcollectionCreate_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x6f\x9b\x40\x10\xbd\xf3\x2b\x5e\x73\xa8\x1c\xc9\x22\x39\xa3\xba\x91\x85\x9d\xca\xb2\xeb\x54\x21\xb7\xaa\x87\x0d\x0c\xb0\xf2\x7a\x17\xed\x8e\xeb\xd0\xc6\xff\xbd\x5a\xc0\xc4\x9f\x52\xf7\x00\xcc\x2e\x33\xef\xcd\x9b\xb7\x72\x5d\x19\xcb\x88\x6d\x5d\xb1\x09\xba\xe8\x51\x99\x6d\xc2\x62\x25\x75\x11\x1b\xa5\x28\x65\x69\x34\x72\x6b\xd6\xb8\x7f\x4b\x5e\xc6\xf3\xd9\xf2\x5b\xfc\xb4\x58\x4c\xe3\x97\xd9\xd3\x72\x3c\x99\x3c\x4f\x93\x24\x08\xee\xee\xee\x10\x5b\x12\x4c\x0e\x02\x6b\x91\x96\x52\x13\x44\x9a\x9a\x8d\x66\xe4\xc6\x42\x40\x9b\x8c\xc0\xa5\x60\x48\x07\xa1\x2c\x89\xac\x86\xd4\xe0\x92\xe0\x5a\x48\xa4\x3d\x66\x53\x52\xe8\x0c\x22\xcb\x1c\xaa\xcd\xab\x92\x29\x56\x54\x3b\xb0\x69\x52\x34\x6d\xf7\x00\x41\xc0\x56\x68\x27\x9a\xc4\x81\xc7\x99\x4d\x22\x24\x6c\xa5\x2e\x86\x5d\xee\x9c\x6a\x17\xe1\x67\xdb\x6d\x38\xa7\x7a\x21\x1d\x4f\x35\xdb\xfa\xd7\x2d\xfe\x06\x00\xd0\x3c\x14\xf1\x9e\xcd\x87\x00\xcf\x94\x47\xf8\x7c\x51\x9b\xf0\x6c\x27\x68\xea\x54\x96\x2a\x61\x69\xd0\x51\x8c\x30\xde\x70\x39\x6e\x83\x3d\xa0\x5f\x8e\x54\x1e\x5e\x02\xc4\x68\xdf\x5e\xf8\x6a\xac\x35\xdb\x2f\xff\x4b\xe0\xeb\xc0\xcf\x2b\xba\x3c\xcb\xf3\xdf\x13\x36\x56\x14\xf4\x43\x70\x79\xdb\xd3\xf2\xeb\xe1\x01\x95\xd0\x32\x1d\xdc\xc4\x66\xa3\x32\x68\xc3\x68\xa9\xc0\x52\xee\xe7\x70\x56\xeb\xe6\x36\xe8\x4b\xc8\xbc\x11\xb3\x33\x43\xd7\x3a\x46\xd7\x3b\x0e\xd3\xc6\x41\xdf\x8f\x12\x1e\x8d\x9d\xbe\x49\xc7\x52\x17\x4b\x93\x51\x3f\xdd\xf6\x3d\x44\x25\x6a\xb2\xd1\x5e\xaa\x43\x65\x3b\x0e\x1f\xe3\xc7\x68\x04\x2d\x15\xde\xdf\x0f\x36\x3f\x85\x8a\x74\xc1\xa5\x3f\xbc\x3f\xc9\x6e\xe6\xd8\x29\x20\xb4\x6f\xbf\xb2\xe6\xb7\xcc\x08\x7f\xc8\x9a\xd6\x8d\xde\xdb\xde\x8e\x27\x9e\xbf\x39\x96\x72\x77\x14\xf9\x9c\x15\x35\xe6\x3f\x60\x77\x8e\x7d\x2c\x5d\xe8\xf1\x42\x91\x65\x83\x3e\x29\xf2\x65\xc2\x3e\x1c\xa2\x14\xae\x1c\xab\xc2\x58\xc9\xe5\xba\x3d\x3d\xda\x1a\x62\x4b\xb2\x28\xb9\x3d\x6a\xbf\xaf\x31\xdd\x81\x94\xa3\x13\x5a\x67\x86\x68\x67\x76\xe5\xd2\x37\xf7\xd4\x64\x74\xa0\x46\x5b\x7f\x17\xec\x82\x7f\x01\x00\x00\xff\xff\x33\xed\x36\xa1\x80\x04\x00\x00" func stakingcollectionCreate_machine_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -5279,11 +5280,11 @@ func stakingcollectionCreate_machine_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/create_machine_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0xdf, 0x3d, 0x5, 0xff, 0xf4, 0xd, 0xa2, 0x7, 0x81, 0x97, 0xc9, 0x37, 0xf5, 0x18, 0x28, 0x47, 0x12, 0xbc, 0x5b, 0x84, 0x1f, 0x3e, 0xac, 0x1c, 0x12, 0x62, 0x6e, 0xaf, 0x13, 0x2f, 0x4e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0xa9, 0xbc, 0xef, 0x3, 0x1e, 0x98, 0xd6, 0x4d, 0xb8, 0xc3, 0xa3, 0x9c, 0x38, 0x31, 0xcb, 0x72, 0x80, 0xa, 0x1, 0xee, 0xd9, 0x6, 0xe8, 0xc7, 0xe8, 0x77, 0x86, 0xd5, 0xd5, 0xae, 0x7f}} return a, nil } -var _stakingcollectionCreate_new_tokenholder_acctCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x56\x49\x6f\xe3\x36\x14\xbe\xfb\x57\xbc\xc9\x21\x90\x00\x8f\x8c\x5e\x8d\x24\x40\x6a\x74\x43\xa6\x68\x80\xa4\xd3\xc3\x20\x07\x46\x7c\x96\x58\xd3\xa4\x40\x52\x76\x85\x22\xff\xbd\xe0\x22\x89\x94\xe5\xc6\x5d\x50\xa0\xbe\x58\x24\xdf\xf2\xbd\xef\x2d\x24\xdb\x37\x52\x19\xd8\xa8\xae\x31\x72\x11\x56\xdf\x72\x79\x7c\x96\x3b\x14\xb0\x55\x72\x0f\x57\xc3\xfa\x6a\x90\x68\x45\xc5\x5e\x39\x26\x52\xf1\xde\x20\xf9\x49\x96\x3b\xa4\x6e\x4f\x07\xc1\x78\xeb\x2a\xf6\xf9\x64\xc8\x8e\x89\x6a\x23\x39\xc7\xd2\x30\x19\xfb\x3f\x39\xbb\x5a\x2c\x56\x2b\x78\xae\x99\x06\xa3\x88\xd0\xc4\x6b\x10\xce\xe5\x51\x83\xa9\x11\x4a\x29\x8c\xb2\xf2\x0a\xe4\xd6\xed\x70\xe7\x19\x48\x59\xca\x56\x18\xab\x6f\x24\x94\x0a\x89\x41\x20\x20\xf0\x98\xc0\x2d\xdc\xdf\xf7\x92\x53\x6b\xe1\xf5\x57\x2c\x0d\x10\x41\x41\x1b\xa9\x10\x98\x01\x26\x82\x56\x64\x90\x70\x2d\x81\x50\xca\x44\x05\x04\xb4\x47\x0d\xe5\x18\x52\x30\x64\xa4\x43\x14\x6b\x5b\xf5\x07\xc4\xc6\xda\xdd\x33\x41\xc1\xd4\xc4\x80\xb1\x11\x52\x89\x1a\x84\xb4\x2e\x0f\x84\x33\x6a\x01\x5b\x75\xfc\x8d\x69\x63\x1d\xc4\x50\x23\x34\xcf\x32\xd5\x20\xa6\x3f\x5d\x42\x27\x5b\x10\x88\xd4\x42\x41\x66\x6a\x54\x40\x91\x63\xb0\x1c\x1b\x54\xa8\x65\xab\x4a\xb4\x16\xa5\x5d\x1e\xe4\x0e\x2d\xd3\xb0\xc3\x2e\x64\x35\xb6\xbd\x58\x44\x19\xc9\x9a\xf6\x95\xb3\xf2\x01\x3b\xbd\x86\x2f\xbe\xd0\x8a\x07\xec\x3e\x31\x6d\xbe\x11\x46\x75\x2f\x39\xfc\xbe\x00\x00\x68\x14\x36\x44\x61\xa6\x59\x25\x50\xad\x81\xb4\xa6\xce\xbe\x96\x4a\xc9\xe3\x67\xc2\x5b\x5c\xc2\x93\x91\x8a\x54\xb8\x84\x0d\x69\xc8\x2b\xe3\xcc\x30\xd4\x39\x5c\xdf\x7b\xbf\xd6\x90\xb3\x64\x7f\xab\x15\x6c\x7c\x66\x27\x3c\xbb\x1c\x12\x4a\xc1\x03\x73\x31\x14\x83\x1a\x47\x63\x85\x83\x45\xb8\x85\xf0\x95\x35\xa4\xb3\xa0\x3c\xb8\x7c\x90\xdf\x4a\x65\x2d\xd8\x9c\x8d\x81\x86\x80\xfa\xdf\x68\xaf\x70\xce\x08\xa5\x23\x2b\x6b\xab\x5e\x0c\xcb\x25\xd4\x44\xd7\xf7\xbc\x92\x8a\x99\x7a\xef\x4f\x93\xad\x25\x1c\x91\x55\xb5\xf1\x47\xfe\x7b\xc4\xf3\x96\x30\xf0\x1d\x9a\x31\x9b\x3f\x12\x41\x2a\x54\x23\x79\x5d\x9f\xba\x69\x67\xa4\x74\x98\x48\x79\xd4\xdd\x8c\xdd\x75\x1b\x58\x29\xca\x28\x2d\x85\xf6\xc9\x2a\x2a\x34\xa3\xac\xce\xb6\x52\x3d\x12\x53\xaf\xd3\x56\x8b\x16\xc1\x53\xc8\xb5\x95\xcd\xbf\x7c\xf5\xf2\xe1\x02\x48\x70\xfb\x2e\xd6\x11\x62\x07\x44\x7f\x88\xb8\xb8\x71\xe5\x96\x0c\xb1\xe2\x17\x66\x6a\xaa\xc8\x31\x87\xeb\x77\xd0\xde\x25\xb4\xff\xac\x7d\xd5\xed\x03\xe3\x91\xd3\xe9\xc0\x89\xfa\x6c\x86\xf5\xd0\x80\x37\x1f\x53\xb6\xbc\x85\x48\x35\x4b\xea\xcd\x27\xf3\x9e\x52\x85\x5a\xf7\x25\x6b\xab\xce\xae\x97\x89\x68\xcc\xd7\xfa\x0c\x7b\x83\x42\x9e\x04\xf9\x44\x0e\xe7\x47\xc5\xcc\x7c\x73\x7d\x37\xc4\x1e\x9a\x6f\x64\x66\x8c\x3e\x6a\x97\xbe\x86\x34\x39\x60\x1a\xe3\xcd\xc7\x88\xa0\x69\x4c\xeb\xb3\x73\x3c\xaa\xaa\xb9\xb0\x26\xc4\x6f\x48\x03\xb7\x31\x9e\xb9\x02\x4f\x7c\x17\x4c\xeb\x16\x6f\xae\xcf\xf9\xbf\xcb\x2e\x40\x96\xcf\x51\x91\xb8\x76\xec\xe9\x3a\x3b\xcd\xe5\x00\x3c\xe5\x84\x98\xd9\x86\x0b\xc6\x7f\x10\x5b\xf9\xe8\x12\x32\x25\x66\x66\x9c\xc6\x40\xdc\xf8\xb3\x79\x76\xbe\xa1\x0e\x17\x90\xa0\xd0\x8a\x30\x52\x0e\xa4\xe5\x93\x81\xe2\x4f\x42\xc5\xbc\xcb\x6f\xa0\xf4\x4f\xda\x73\x39\x93\xee\x9f\x1a\x54\xc4\xde\x3f\x7a\xda\xbc\x7f\x3f\x1b\x16\xfb\x76\x78\x1b\xfd\x0b\xc0\x73\xb8\x1e\xde\x56\xc5\x67\x4b\xd4\x5d\xb6\x0a\xda\xab\xc1\x93\x3b\x18\x51\xcc\xa4\xc4\x8f\x92\xf0\x44\x82\xe8\xfd\x64\x33\xd1\xb4\x26\x3c\x56\x7a\x5c\x83\x05\xb6\x4d\x72\x51\x94\x35\x96\xbb\x2c\x3f\x7f\x7d\x9d\xef\x47\xdf\x93\xf3\xcf\xb8\x30\xaf\x4e\xf6\x4f\x2d\xd8\x5f\x5f\x39\x2e\xec\xf5\x48\xf8\x72\x56\x3a\x2a\xfa\x75\x12\xcc\x89\x74\x7e\x6a\xc0\x4e\x8a\x79\xc4\x27\x3b\x73\x83\xc3\xf7\x48\xff\xf5\x06\xc8\x35\xfe\x6f\xb9\x13\x8c\xff\xf7\x94\x25\xf3\xe5\xd1\x0f\x35\x20\x93\xfb\xd2\xbd\xe5\x1d\x0b\x74\xe6\x41\x9d\x8e\x16\x3d\x05\x71\xd1\x08\xef\xa7\xf6\x85\x81\xdd\xa5\xe4\xff\x03\x3a\xa2\xab\xe7\x2f\x8d\xfa\xb9\x30\x4f\x07\xfe\x85\xc0\x66\x27\xbf\x4f\xcf\xdb\x1f\x01\x00\x00\xff\xff\x67\x6a\x0f\xb0\x20\x0e\x00\x00" +var _stakingcollectionCreate_new_tokenholder_acctCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\xdf\x6f\xe2\x46\x10\x7e\xe7\xaf\x98\xbe\x54\x20\x11\xe8\x33\x4a\x4e\x42\x84\xbb\x46\xd0\x23\x2a\xb4\x7d\xa8\xfa\xb0\xb1\x07\x7b\xcb\xb2\x6b\xed\x0e\xe4\x50\x94\xff\xbd\xda\x1f\xb6\x77\xc1\xe8\x88\x54\xe9\x78\x49\x6c\xcf\x7c\xf3\x7d\xdf\xcc\x8e\xcd\xf7\x95\xd2\x04\x33\x7d\xaa\x48\xf5\xc2\xd5\x67\xa1\x5e\x37\x6a\x87\x12\xb6\x5a\xed\xe1\x97\x6f\x9f\x97\xab\xbf\x36\xab\xc5\xfc\xeb\xf4\xf1\xf1\xf7\xf9\x7a\x5d\x07\x2e\x55\xb6\xc3\xdc\x85\x9a\x3a\x76\xb9\x9a\x2d\xe6\x8f\x5d\xd1\x16\x76\x4d\x6c\xc7\x65\x31\x53\x42\x60\x46\x5c\x35\x25\xd6\x9b\xe9\xe2\xe9\xeb\x97\xd9\x6a\xb9\x9c\xcf\x36\x4f\xab\x26\xb9\x37\x1e\xc3\xa6\xe4\x06\x48\x33\x69\x98\x4f\x62\x42\xa8\x57\x03\x54\x22\x64\x4a\x92\xb6\x70\x1a\xd4\xd6\xdd\x11\x8e\x15\xb0\x2c\x53\x07\x49\x36\x9f\x14\x64\x1a\x19\x21\x30\x90\xf8\x9a\xf0\x1e\xb9\x3f\xbf\x2a\x91\x5b\x84\x97\x7f\x31\x23\x60\x32\x07\x43\x4a\x23\x70\x02\x2e\x43\x56\x04\xc8\x84\x51\xc0\xf2\x9c\xcb\x02\x18\x18\x2f\x0a\xb2\x56\x55\x00\x22\xe5\x18\xc5\xd9\x36\x7d\x81\x58\x59\xdc\x3d\x97\x39\x50\xc9\x08\xc8\x2a\xcc\x15\x1a\x90\xca\x96\x3c\x32\xc1\x73\x4b\xd8\xa6\xe3\x37\x6e\xc8\x16\x88\xa9\x46\x6c\x36\x2a\xcd\x60\x54\x3f\x1d\xc2\x49\x1d\x40\x22\xe6\x96\x0a\x72\x2a\x51\x43\x8e\x02\x03\x72\x0c\xa8\xd1\xa8\x83\xce\xd0\x22\x2a\x7b\x79\x54\x3b\xb4\x4e\xc3\x0e\x4f\xa1\xbd\x31\x76\xaf\x17\x75\xa4\x5f\x1d\x5e\x04\xcf\x16\x78\x32\x13\xf8\xdb\x8f\xd3\x68\x81\xa7\x25\x37\x34\x97\xa4\x4f\xff\x0c\xe0\xad\x07\x00\x50\x69\xac\x98\xc6\xbe\xe1\x85\x44\x3d\x81\xe9\x81\xca\xa9\x47\xb4\x21\x2e\xc6\xfe\xc6\x63\x98\xf9\x9e\x9d\x39\xe8\xba\xc3\xf2\x1c\x7c\x49\xc7\xae\xc9\x12\x48\x36\x36\x00\xc2\x43\x0c\xdf\xaf\xd8\xc9\x56\xf4\x95\x07\x4d\xce\x56\x69\x0b\x62\x1b\xd2\xaa\x08\x6c\xeb\x5f\x8b\x39\xb2\xf5\x46\x2c\xcf\x5b\xc9\x13\x9b\x3e\x6a\x2e\x87\x50\x32\x53\x4e\x45\xa1\x34\xa7\x72\xef\x9f\x26\xb7\x86\xf0\x8a\xbc\x28\xc9\x3f\xf2\xff\xb7\x7c\xde\x13\x13\xbe\x20\xb5\xad\xfa\x8d\x49\x56\xa0\x86\x19\xab\xd8\x0b\x17\x9c\x4e\x75\x5f\x2e\xc6\x3e\x76\x84\xa2\xdc\x28\xf5\x21\x58\x91\x28\x1d\x15\x48\x6d\xcc\xfd\xcf\xc9\x59\x89\x2e\x02\xdc\xa7\x7e\x92\xfd\x9d\xe8\x67\xcd\x8f\x8c\xf0\x99\x51\x39\x48\x54\xfe\x61\x7c\x9f\xf7\x41\x60\xd6\xb2\x3c\x3f\xbc\xd1\xcc\x5e\x8a\x0c\xb3\x7c\x7f\x97\x32\xf1\x00\x51\x66\xca\xda\x5b\x37\xcd\x73\x8d\xc6\xd4\x03\x62\x7b\x6c\xaf\x87\x49\x68\x6c\xe5\xe4\x8a\xb1\x4d\x42\xaa\x71\xcd\x8e\xd7\x4f\x5d\xc7\xaa\x70\x83\xde\x48\x0f\xd3\x9e\x5d\x56\x89\x66\xd3\xb0\x23\xa6\xd2\xee\xef\x22\x5f\xce\xa5\x4c\xae\x6e\xc2\x35\x29\xcd\x0a\xd7\xa8\x61\x97\x9c\xa8\xa6\xe0\x72\x77\x36\x26\x11\xd0\x5b\xc7\x44\x84\xcc\x27\xb9\x55\xef\xdf\x9f\x9f\x28\xfa\xd9\x79\x90\x92\x72\x4a\x98\x2e\x90\x6e\x52\x13\x8b\xe9\xd8\x35\x95\x1f\xd0\xd6\x66\x8e\xc6\x2d\x08\xdb\x1b\xe7\x24\x94\x61\xff\xca\x1c\x0e\x32\x1c\xba\x23\x3b\x88\xf4\xc8\xf9\x07\xa1\xc9\x0f\xb7\xfb\xf5\xa9\x3f\x0e\x1c\xc6\xdb\xfa\x35\x1c\x9a\xf7\x11\x99\x83\x9f\x12\x36\x0d\x54\x17\x95\xe6\x75\x3f\xfa\xd3\xca\xe8\x62\xe0\x1e\xb4\x04\xc6\xc6\x57\x3a\x0b\x88\x8a\x76\x58\xeb\x4f\x6f\xf8\x00\x80\xe8\x0b\xc0\x3a\x59\x1d\x28\xbc\x6b\x03\x74\x03\xc0\xb7\x89\x97\xa3\xac\xc4\x6c\xd7\x1f\x5c\xdf\xcf\xee\x0c\xdc\xdf\x75\x7e\x6d\x84\x45\x70\x71\xbf\x5f\x77\xd2\xe9\x98\xb4\x7e\x0d\xe3\xb5\x32\x49\x98\x0c\x86\xee\x04\x75\xd7\xb9\xb8\x13\xf7\xa6\xdd\xf4\x80\xc2\xe0\x8f\x91\x22\xb9\xf8\x3f\x14\x74\x1d\xa2\x66\x59\xd9\xf9\xaa\x17\xdb\xe5\x47\xd2\xf5\x65\x72\x23\xa3\xb7\x1b\xe3\xfc\xda\x38\x5f\x35\x1f\x4a\xbe\xbe\x73\x3e\xee\x5e\xb4\x82\xbc\x85\xef\xff\x05\x00\x00\xff\xff\xcf\xca\x4a\x4a\x86\x0b\x00\x00" func stakingcollectionCreate_new_tokenholder_acctCdcBytes() ([]byte, error) { return bindataRead( @@ -5299,11 +5300,11 @@ func stakingcollectionCreate_new_tokenholder_acctCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/create_new_tokenholder_acct.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xef, 0xf3, 0xe8, 0xc5, 0x56, 0xc1, 0x18, 0x8f, 0xbe, 0xfd, 0x7b, 0xd1, 0x27, 0x19, 0xc8, 0x43, 0xae, 0x40, 0x33, 0x7e, 0x5e, 0xc0, 0x12, 0x42, 0x93, 0xe2, 0x91, 0xa7, 0xa, 0xc7, 0x40, 0x5f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4a, 0x6f, 0x86, 0x43, 0x9d, 0xd1, 0x12, 0x9a, 0x67, 0xc7, 0xb5, 0xa4, 0x61, 0xe7, 0xd2, 0x2d, 0xd0, 0xeb, 0x97, 0x91, 0x68, 0xc2, 0xff, 0x73, 0x7e, 0x83, 0xb3, 0x4b, 0x5c, 0x10, 0x33, 0x7f}} return a, nil } -var _stakingcollectionDeploy_collection_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8e\xb1\x6a\xc4\x30\x10\x44\x7b\x7d\xc5\x54\x41\x86\x60\xf7\xd7\x1d\x49\x91\x2a\x4d\xc8\x07\x2c\xda\xe5\xce\xd8\x5e\x19\x69\x0f\x12\xc2\xfd\x7b\xd0\x26\x32\xa7\x62\x85\x46\x33\xf3\x76\x9a\xf0\x2a\xfb\x9a\xbf\x2b\x08\x29\xab\x15\x4a\x06\xcb\x20\x05\xa5\x94\x6f\x6a\x61\x9a\xf0\x59\x85\x9b\xca\xee\x85\x5d\x05\xd5\x68\x99\xf5\x82\x94\xd7\x55\x92\xcd\x59\x9b\xc1\x7f\x68\x93\x1e\x06\x55\xd7\xd6\x9c\x16\xaf\x58\x44\xeb\x01\x0a\xc1\x0a\x69\x25\x8f\xc7\xae\xbe\xd3\x26\x27\x7c\x58\x99\xf5\xf2\x8c\x94\xf9\x78\x0d\xf8\x09\x00\xe0\x63\x2f\xb2\x53\x91\x48\xbc\xcd\x7a\x02\xdd\xec\x1a\xcf\xcc\x2f\xff\x2d\x03\x9e\xce\x7f\x3b\xf4\x54\x3b\x6e\x1e\x3b\xa9\x8e\xc4\x1c\xd5\x79\x8f\xf4\x4e\x6d\x73\x64\x69\xd7\x9b\x7c\xc5\x61\xf0\x9e\x7b\xb8\x87\xdf\x00\x00\x00\xff\xff\x97\xdc\x67\x42\x38\x01\x00\x00" +var _stakingcollectionDeploy_collection_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8d\xb1\x6a\xc4\x40\x0c\x44\xfb\xfd\x8a\x29\x6d\x08\x76\x7f\xdd\x41\x8a\x54\x69\x42\x3e\x40\x68\xc5\x9d\xb1\x2d\x99\x5d\x1d\x24\x84\xfb\xf7\xb0\x0a\x6b\xb2\x85\x16\x8d\x66\xe6\xcd\x33\x5e\xe5\xd8\xec\xbb\x82\xc0\xa6\x5e\x88\x1d\x6e\x20\x05\x31\xdb\x43\x3d\xcd\x33\x3e\xab\xe4\xa6\xe6\xf0\xc2\xef\x82\xea\xb4\x2e\x7a\x03\xdb\xb6\x09\xfb\x62\xda\x0c\x71\xa1\x5d\x7a\x18\x54\x43\xdb\x8c\xd7\xa8\x58\x45\xeb\x09\x4a\xc9\x0b\x69\xa5\x88\x0f\x5d\x7d\xa7\x5d\x2e\xf8\xf0\xb2\xe8\xed\x05\x6c\xf9\xdc\x46\xfc\x24\x00\x88\x71\x14\x39\xa8\xc8\x40\x79\x5f\xf4\x82\xeb\xc3\xef\xd7\x3f\x68\xb7\xb5\x17\xd7\xa9\x57\xd7\x89\x72\x1e\x34\x00\xff\x71\x1d\xd3\xe6\x94\xa5\x7d\x6f\xf2\x35\x8c\x63\xf4\x3c\xd3\x33\xfd\x06\x00\x00\xff\xff\xa7\x5f\x56\xfd\x29\x01\x00\x00" func stakingcollectionDeploy_collection_contractCdcBytes() ([]byte, error) { return bindataRead( @@ -5319,11 +5320,11 @@ func stakingcollectionDeploy_collection_contractCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/deploy_collection_contract.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0x65, 0xef, 0x78, 0xd5, 0x3e, 0x89, 0x71, 0xda, 0x8b, 0xc, 0x78, 0x34, 0x3c, 0x6e, 0xb9, 0x9, 0xa0, 0x2b, 0x75, 0x35, 0xbf, 0x9f, 0x65, 0xdd, 0xa, 0x3e, 0x8b, 0x30, 0xd, 0x4b, 0x10}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbd, 0x3e, 0xf2, 0xcf, 0xfd, 0x65, 0x3, 0xfc, 0xc1, 0x73, 0xff, 0x84, 0x1f, 0xad, 0xc6, 0xe3, 0x57, 0x8d, 0x57, 0x22, 0x89, 0xc2, 0x14, 0x62, 0x4d, 0x1f, 0x9d, 0xae, 0xb6, 0x6b, 0xe4, 0x55}} return a, nil } -var _stakingcollectionRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x31\x8f\xd4\x40\x0c\x85\xfb\xfc\x8a\xa7\x2d\x8e\x44\x42\xd9\x06\x51\x44\xc0\x09\xee\x74\x12\x15\xe8\x56\xd0\x9b\x89\x93\x1d\xdd\x64\x1c\x79\x1c\xed\x21\x74\xff\x1d\x25\x93\x65\x8b\x4d\x41\x73\x53\x24\x51\x6c\x3f\x3f\x7b\x3e\x3f\x8c\xa2\x86\x87\x20\xa7\x83\xd1\x93\x8f\xfd\x9d\x84\xc0\xce\xbc\x44\x74\x2a\x03\x76\x9b\xb1\x5d\x51\xec\xf7\x7b\x3c\x72\xef\x93\xb1\x26\x10\x5a\x0e\xdc\x93\x89\xc2\x47\xd8\x91\x91\x72\x11\xdc\x45\x51\x39\xc9\xa4\x8e\x97\xe2\x4e\x34\xe7\x8d\xec\x7c\xe7\xb9\x45\x94\x96\xbf\xde\x83\x62\xbb\x04\x68\x90\x29\x1a\xa4\x83\xc9\x13\xc7\x04\x13\x38\x19\x06\x6f\x45\x61\x4a\x31\xd1\xa2\x5a\xfa\xb6\xc1\xc1\xd4\xc7\xfe\xed\x5a\xd3\xe0\xc7\x83\x7f\x7e\xff\xae\xc2\x9f\x02\x00\x96\x47\x60\x3b\x7b\xba\x0c\xf2\xc8\x5d\x03\x9a\xec\x58\x6e\xce\x59\x5f\x3e\xbf\x9d\x22\x6b\x85\x9b\xed\xbc\xab\x3f\xc5\xd2\x73\x54\x1e\x49\xb9\x24\xe7\xb2\xaf\xa5\xd5\x17\x51\x95\xd3\x4f\x0a\x13\x57\xb8\xf9\x9c\x63\x67\xaf\xf3\x49\x1c\xba\x7a\xcb\x2b\x3e\x62\x95\xaa\x93\x89\x52\xcf\xf5\xaf\x45\xec\xc3\x6b\xcc\xf0\xa9\x9c\x11\x68\xb6\xf1\xb8\x4e\x3f\x64\x47\xdf\xc9\x8e\xd5\xbf\x51\xe6\x73\x7b\x8b\x91\xa2\x77\xe5\xee\x4e\xa6\x30\xdf\xb3\x21\xdb\x06\x41\xb9\x63\xe5\xe8\x78\xbe\x5e\xc2\x35\x86\x2b\x4e\xa3\xfa\x81\xf4\x37\xa6\xc4\xfa\x26\x9d\xd7\xb0\xcb\x9d\x5e\xf2\xba\xf9\x99\xdd\x64\xfc\x3f\x9b\xac\x75\x65\xf7\xfe\xcc\x6d\x99\xf1\x6b\xe0\xdb\x0b\x47\xf9\x5d\x65\xb1\xb5\xd5\x4b\xf1\x37\x00\x00\xff\xff\x50\xb7\x12\x6d\x37\x03\x00\x00" +var _stakingcollectionRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\x82\x40\x10\xbd\xf3\x15\x13\x0f\x0d\x26\x0d\xf6\xd0\xf4\x40\xda\x1a\x02\xda\x98\x1a\x6d\xc4\x7e\xc0\x76\x19\x70\x23\xec\x90\x61\x88\x26\x8d\xff\xde\xc0\x62\x3d\xe8\xc1\x3d\x40\x60\x67\xde\x7b\xf3\xde\x98\xaa\x26\x16\x98\x97\x74\x48\x45\xed\x8d\x2d\x62\x2a\x4b\xd4\x62\xc8\x42\xce\x54\xc1\xd3\x31\xdd\x46\x9f\x8b\xd5\x47\xbc\x5e\x2e\x67\xf1\x76\xb1\x5e\x45\x49\xb2\x99\xa5\xa9\xe7\x4d\x26\x13\xd8\x60\x61\x1a\x41\x6e\x40\x41\x86\x25\x16\x4a\x88\xc1\x58\x90\x1d\x42\xe3\x30\x41\x5f\x40\x19\x1b\x6a\x59\x63\xdf\x9c\x13\xbb\xba\x1a\xb5\xc9\x0d\x66\x60\x29\xc3\x45\x02\xca\x66\xfd\x85\xaa\xa8\xb5\x02\x94\x83\xd0\x1e\x6d\x03\x42\xa0\xa9\xaa\x8c\x78\x9e\xb0\xb2\x8d\xea\x51\x7d\x93\x85\x90\x0a\x1b\x5b\x3c\x0e\x3d\x21\x7c\xcf\xcd\xf1\xe5\x79\x0c\xbf\x1e\x00\x40\xff\x28\x51\xce\x9a\x2e\x73\x6e\x30\x0f\xe1\xe1\xa6\x05\xc1\xd5\x1f\xaf\xc7\xa9\x19\x6b\xc5\xe8\x2b\xad\x1d\x57\xd4\xca\x2e\x72\x1f\x67\xc2\xee\x34\x58\xe6\xc1\x2d\x42\x78\x83\xa1\x37\xf8\x21\x66\x3a\xbc\xde\x2b\xe0\xdd\xef\x62\x09\x6f\x47\x76\x5d\x9e\x0a\xb1\x2a\xf0\x4b\xc9\x6e\xfc\x2f\xab\x3b\xd3\x29\xd4\xca\x1a\xed\x8f\x62\x6a\xcb\xce\x78\x01\x27\x05\x18\x3b\xbb\xe1\x0a\x6b\xe4\x10\x4e\xce\x03\x3c\xa2\x6e\x05\xef\x99\x36\xe0\x61\x49\x92\xf3\x82\xf8\x2e\xe7\x10\x4c\x76\x09\xcc\xbd\xc7\x0e\x6c\xa0\x3a\x79\x7f\x01\x00\x00\xff\xff\xdd\x5f\xdf\x77\xa3\x02\x00\x00" func stakingcollectionRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -5339,11 +5340,11 @@ func stakingcollectionRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x24, 0xb5, 0x3c, 0x3f, 0x4c, 0x1c, 0x87, 0xd4, 0xd0, 0xf5, 0x99, 0x13, 0x52, 0x85, 0x4e, 0xe2, 0x34, 0xbe, 0xc5, 0x5b, 0xb0, 0xd5, 0x7, 0xb7, 0x78, 0x4c, 0x27, 0xcd, 0x8a, 0xf5, 0x38, 0xf6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x61, 0x18, 0x59, 0x73, 0x8c, 0xe4, 0x18, 0x5c, 0xc3, 0x6a, 0x63, 0xba, 0xf1, 0x3a, 0x2f, 0x4c, 0x28, 0x93, 0x6e, 0x5a, 0x61, 0x2f, 0xfc, 0x43, 0xe1, 0x29, 0x1a, 0xec, 0xc8, 0xdf, 0x45, 0x55}} return a, nil } -var _stakingcollectionRegister_multiple_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x6b\xdc\x30\x10\xc5\xef\xfe\x14\x8f\x3d\x04\x2f\x2d\xde\x16\x4a\x0f\xa6\x69\x68\x13\x02\x3d\xb5\x64\x69\x2f\x61\x0f\xaa\x3c\xf6\x0e\x91\x25\x33\x1a\x77\x03\x65\xbf\x7b\x91\xff\xec\xa6\xac\xe9\xad\x3a\x18\x33\x1a\x3d\xbd\x37\xfa\x71\xdb\x05\x51\xdc\xbb\x70\xd8\xaa\x79\x62\xdf\xdc\x06\xe7\xc8\x2a\x07\x8f\x5a\x42\x8b\xd5\xe2\xde\x2a\xcb\x36\x9b\x0d\x1e\xa8\xe1\xa8\x24\x11\x6d\xef\x94\x3b\x47\xa8\xc8\x51\x63\x34\x48\x04\x7b\xe8\x9e\x10\xc7\xc3\xb0\x67\x65\xa1\x18\x7a\xb1\x34\x88\xd4\x41\xc6\xbe\x8e\x2c\xd7\x4c\x15\x7c\xa8\xe8\xcb\x5d\x84\xf1\x15\x4c\x1b\x7a\xaf\x08\x35\x34\x3c\x91\x8f\xd0\x00\x1b\xda\x96\x35\xcb\x54\x8c\x8f\x66\x90\xcc\xb9\x8a\x25\x1e\xb7\x2a\xec\x9b\xdd\xeb\xe9\x58\x2a\x7d\xbf\xe7\xe7\xf7\xef\x76\x6b\xfc\xce\x00\x60\xf8\x38\xd2\xd9\xd6\x39\xd3\x03\xd5\x25\x4c\xaf\xfb\x7c\x31\x72\x71\xfe\xfd\x7a\xf0\x24\x6b\x5c\x2d\xf7\x5d\x54\xb2\xe1\xce\x4e\xa8\x33\x42\xb9\xb1\x36\x59\x9b\xae\xfa\x1c\x44\xc2\xe1\x87\x71\x3d\xad\x71\xf5\x69\xdc\x9b\xbd\xa6\x15\xc9\xd5\xc5\x92\x57\x5c\x63\x92\x2a\xa2\x06\x31\x0d\x15\x3f\x07\xb1\x0f\xff\x23\xc3\xc7\x3c\xd1\x50\x2e\x93\x72\xd9\xbe\x1d\x1d\x7d\x33\xba\x5f\x9f\xa2\xa4\x75\x73\x83\xce\x78\xb6\xf9\xea\x36\xf4\x2e\x3d\xb5\x62\xb4\x0d\xa1\xf4\xc6\xb8\x64\x6d\x54\x38\x8e\x63\xa4\x67\xb2\xbd\xd2\x8b\x09\xfd\x32\x02\xc6\x35\xde\x9c\x2a\x89\x28\xae\x12\x7f\x5c\xc5\x17\x9d\xff\x9c\x67\x21\x13\xcc\x77\x33\xc1\xf9\xc8\x61\x09\xae\x66\xa0\xca\x19\xac\x47\xde\xad\x07\x9c\xfe\x12\x4f\x36\x18\xaf\xf0\xf6\x54\x3d\x4e\xde\x8f\xd9\x9f\x00\x00\x00\xff\xff\x02\xdc\x8f\x76\x6b\x03\x00\x00" +var _stakingcollectionRegister_multiple_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x6b\xdb\x4e\x10\xc5\xef\xfa\x14\x8f\x1c\xfe\xc8\xfc\x8b\x9d\x42\xe9\x41\x34\x0d\xc6\x4e\x8a\x69\x48\x8a\x95\x9e\x82\x0f\x5b\x69\x24\x0f\x59\xed\x88\xdd\x51\x63\x28\xfe\xee\x65\x25\xcb\x49\xb1\x29\xdd\x83\x40\xc3\xec\x6f\xde\xbe\x37\xdc\xb4\xe2\x15\xb7\x56\x5e\x72\x35\xcf\xec\xea\x85\x58\x4b\x85\xb2\x38\x54\x5e\x1a\x5c\xee\xf2\xc7\xf9\xd7\xd5\xfd\x97\xc5\xc3\xdd\xdd\xcd\xe2\x71\xf5\x70\x3f\x5f\x2e\xd7\x37\x79\x9e\x24\xb3\xd9\x0c\x6b\xaa\x39\x28\xf9\x80\xa6\xb3\xca\xad\x25\x94\x64\xa9\x36\x2a\x3e\x80\x1d\x74\x4b\x08\x03\x1b\xc5\x2b\xdc\x53\x90\xce\x17\xd4\x43\x2a\xf1\x43\x5f\x4b\x05\x57\x4c\x25\x9c\x94\xb4\x5a\x06\x18\x57\xc2\x34\xd2\x39\x85\x54\x50\x79\x26\x17\xa0\x82\x42\x9a\x86\x35\x49\xd4\x1b\x17\x4c\x8f\x4c\xb9\x0c\x19\x9e\x72\xf5\xec\xea\xcd\xbb\xc3\xb5\x58\xfa\x7e\xcb\xbb\x8f\x1f\x36\x13\xfc\x4a\x00\xa0\xff\x58\xd2\x51\xd6\xeb\x93\xd7\x54\x65\xf8\xef\xac\x1b\xd3\x93\x4a\xd2\x73\x5a\x4f\xad\xf1\x94\x9a\xa2\x88\xe3\x32\xcc\x3b\xdd\xce\x87\x9f\x71\x60\x3c\x81\x6c\x35\x3d\x37\x10\x57\x38\xdc\x9d\xfe\x10\xef\xe5\xe5\xd3\xbf\x0a\xf8\x9c\xc6\x84\xb2\xf3\xe9\x9d\xb6\xe7\x2a\xde\xd4\xf4\xcd\xe8\x76\x72\x94\x15\xcf\xf5\x35\x5a\xe3\xb8\x48\x2f\x16\xd2\xd9\xe8\xbd\x62\x90\x02\x4f\xd1\x74\x9c\xb0\x2e\x06\xc2\x7e\xf0\x80\x76\x54\x74\x4a\x6f\x5e\xfb\xd3\x78\x30\xae\x70\x79\xac\xc4\x88\xb9\x8c\x0b\xc1\x65\x78\xd3\xf9\x57\x6f\xa6\xfe\xb0\x5d\xcb\x71\xa5\xd2\x61\x31\x32\x70\x39\x26\x9c\x8d\x49\x3f\xf1\x66\xd2\xe7\xfb\x07\x3c\xca\x60\xfc\x8f\xf7\xc7\xea\xfe\xa0\x7d\x9f\xfc\x0e\x00\x00\xff\xff\x07\x6b\xf3\x42\xff\x02\x00\x00" func stakingcollectionRegister_multiple_delegatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -5359,11 +5360,11 @@ func stakingcollectionRegister_multiple_delegatorsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_multiple_delegators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x55, 0xaf, 0x3d, 0x1, 0xae, 0xfd, 0xe5, 0x9b, 0xc1, 0x4a, 0xad, 0x60, 0x30, 0x97, 0x5b, 0xd3, 0xfd, 0xb2, 0x73, 0x19, 0xdf, 0x4b, 0x61, 0x5e, 0xa7, 0x53, 0x2c, 0x3a, 0xd1, 0xce, 0xe5, 0xb4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0x31, 0xb5, 0x31, 0x72, 0x2e, 0x40, 0x1a, 0xe0, 0xb2, 0x95, 0xdc, 0x95, 0xd2, 0xb2, 0xa6, 0xa4, 0x49, 0x7a, 0x4d, 0x6a, 0xfb, 0x84, 0x73, 0x52, 0x39, 0x78, 0xa8, 0xe1, 0x99, 0x65, 0x2e}} return a, nil } -var _stakingcollectionRegister_multiple_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x4d\x6f\xd3\x40\x10\xbd\xfb\x57\x0c\x39\x54\xb6\x88\xdc\x22\x21\x84\x2c\x42\x55\x2a\x2a\xa1\x22\x40\xad\xe0\x12\xe5\xb0\xb5\xc7\xf6\xa8\xeb\x5d\x6b\x76\xdd\x60\xda\xfe\x77\xb4\x5e\xe7\xc3\xb1\x43\x4f\xf8\x10\xd9\x33\x6f\xde\xbe\x9d\x99\x17\xaa\x6a\xcd\x16\x2e\xb9\xad\xad\x0e\xfa\xaf\x2b\xa9\xd7\xb7\x56\xdc\x93\x2a\x2e\xb5\x94\x98\x5a\xd2\x0a\x72\xd6\x15\xcc\x26\x73\xb3\x20\x38\x3d\x3d\x85\x1b\x2c\xc8\x58\x64\x03\x55\x23\x2d\xd5\x12\x41\xe9\x0c\x0d\x90\x02\x5b\x22\x18\x5f\x07\xe9\x8e\x94\xd1\xe8\x86\x53\xec\xea\x73\xcd\x1e\x57\x63\x4a\x39\x61\xd6\x95\x03\xa9\x5c\x73\x25\x1c\x3e\x08\x2c\x0b\x65\x44\x57\x1c\x52\x66\x12\x58\xde\x5a\x26\x55\xac\xe6\x01\xec\x3d\xac\x25\xba\xe4\xcf\x2f\xca\xbe\x3f\xc8\x29\xb4\x6b\xcd\x4e\xc9\x45\x96\x31\x1a\x83\x47\x69\x76\xd0\x6b\x6c\x8f\xa2\xfa\x7b\xfd\x0b\x22\x2a\xdd\x28\xdb\x29\xba\xa2\xdf\xef\xde\x1e\xa4\xeb\xe6\x4e\x52\xda\x13\x2c\xfd\x34\xe2\x6b\x6c\xbf\x92\xb1\x9f\x95\xe5\x76\x75\xbe\x8a\xe0\xb1\xab\xe9\x7e\x24\xda\xcd\xb1\xbb\x31\xdc\x60\x9e\x80\x68\x6c\x19\x4e\x4e\x29\xde\xbd\x7e\x5f\x2b\xe4\x08\x4e\xa6\x71\xa3\x48\xd0\x9d\x59\x33\xd6\x82\x31\x14\x69\xea\x2e\xd3\x1f\xf5\x49\x33\xeb\xf5\x2f\x21\x1b\x8c\xe0\xe4\xc2\xe7\x36\x5a\xbb\xee\xa0\xcc\xe3\x29\xad\xb0\x80\x9e\x2a\x36\x56\xb3\x28\x30\xbe\xeb\xc8\x3e\xfc\x8f\x3b\x7c\x0c\xdd\x02\x27\xd3\xcb\x3d\x86\xdf\x7a\x45\x3f\x84\x2d\xa3\xc1\xa8\xce\xcf\xa1\x16\x8a\xd2\x70\x76\xa9\x1b\xe9\x56\xd4\x82\x97\x0d\x8c\x39\x58\x0d\x63\x7b\x44\xc1\x96\xe2\x41\x30\x10\x2c\xe0\x6c\x17\x72\x6b\x4f\x99\x33\x09\x65\x66\xaf\x71\xee\xa1\xbc\x1b\x75\x25\xd2\x92\x14\xf6\xdd\x85\xc5\xf1\xa6\xc6\xdc\x9b\xf0\x9b\xce\x30\x1c\x70\x75\x7c\x59\x02\x94\xcd\x47\x71\xe7\x97\xc4\xbb\x66\x49\xab\x71\x7e\xe4\x99\x64\xca\x46\x2f\x94\x5e\x63\x9b\x1c\x58\x6a\xb2\x62\xe7\xa7\x64\xdf\x5b\x93\x58\x6f\xac\x64\x63\xb0\x49\x4c\x2d\x5a\xe4\x64\xb3\x6c\x11\x0c\x00\x8f\xe3\x1e\xe5\x7b\x7e\x5c\xd2\x0a\x16\x0b\x50\x24\xe1\xe9\x69\x18\x7f\x15\x4b\x54\x85\x2d\x5d\xfe\x6c\x82\xc7\x1f\xed\x57\x45\x28\xb7\x27\x35\xeb\x07\xca\x10\xfe\x20\x6b\xb8\xc7\xd6\x6c\xff\xf2\xfa\x01\x6f\x34\xce\xa2\x11\xdb\xf3\x28\xe2\x6a\xef\xb1\x75\x8b\x33\xd4\x75\x44\xcb\x70\x89\x62\x77\x7e\x2c\xb2\x2c\xdc\x16\x27\x8e\x2e\xde\x7e\xce\xa1\x14\xa6\xbc\x90\x85\x66\xb2\x65\xe5\xb3\x83\xd0\x1c\xd6\x48\x45\x69\x7d\xca\xbf\xbf\xa4\x7c\xf8\xe5\xac\x40\xf0\x1a\xde\x04\xc3\xfc\x73\xf0\x1c\xfc\x0d\x00\x00\xff\xff\x27\x86\x76\xa0\x9c\x06\x00\x00" +var _stakingcollectionRegister_multiple_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\x5d\x4f\xdb\x30\x14\x86\xef\xf3\x2b\xce\xb8\x98\x5a\xad\x0a\x4c\x9a\xa6\x29\x5a\x87\xaa\x02\x13\x2a\x82\x89\xb2\xab\xaa\x17\x26\x3e\x49\x8e\x70\xec\xe8\xd8\xa5\x64\xc0\x7f\x9f\x9c\xa4\x1f\x21\xe9\x58\x2e\xaa\xfa\x7c\xbc\x7e\x73\xfc\x38\x94\x17\x86\x1d\x4c\xb9\x2c\x9c\x09\x9a\xd5\x85\x32\xeb\xb9\x13\x0f\xa4\xd3\xa9\x51\x0a\x63\x47\x46\x43\xc2\x26\x87\x93\xa7\xf9\xdd\x64\x76\x79\xfd\x73\x7a\x73\x75\x75\x3e\xbd\xbb\xbc\xb9\x9e\x9c\x9d\xdd\x9e\xcf\xe7\x41\x70\x7c\x7c\x0c\xb7\x98\x92\x75\xc8\x16\xf2\x95\x72\x54\x28\x04\x6d\x24\x5a\x20\x0d\x2e\x43\xb0\xb5\x2c\xc4\x3b\x5d\x46\x6b\x56\x1c\x63\xd5\x9f\x18\xae\xeb\x0a\x8c\x29\x21\x94\x55\x3b\x90\x4e\x0c\xe7\xc2\xd7\x07\x81\x63\xa1\xad\xa8\x9a\x07\x24\x6d\x04\x8b\xb9\x63\xd2\xe9\x72\x14\xc0\xde\xc3\x46\xa1\x4f\xfe\xbe\xd4\xee\xdb\x9b\x9c\x46\xb7\x36\xec\x9d\x4c\xa4\x64\xb4\x16\x0f\xca\xec\x4a\x67\x58\x1e\xac\x6a\xde\xeb\x5f\x25\x22\x37\x2b\xed\x2a\x47\x17\xf4\xf4\xf5\xcb\x9b\x74\xb1\xba\x57\x14\x37\x02\x8b\xfa\x40\xc2\x19\x96\x57\x64\xdd\xb9\x76\x5c\x2e\x4f\x97\x43\x78\xae\x7a\xaa\x1f\x85\x6e\xb3\xed\xee\x94\x6e\x31\x89\xe0\x63\xef\x01\x86\x9d\x48\x50\xe9\x14\x8c\x85\x60\x1c\x88\x38\xf6\x06\x23\x98\xac\x5c\x36\xa9\x17\x9b\x0d\xab\x57\x44\x95\x84\x7d\x1b\xc2\x18\x9a\xde\xf0\xde\x30\x9b\xf5\xf7\xff\x35\xf0\x63\xe0\xa1\x8a\xfa\x81\xeb\x96\xcf\x9d\x61\x91\xe2\x2f\xe1\xb2\x61\x6b\x76\xa7\xa7\x50\x08\x4d\xf1\xe0\x68\x6a\x56\xca\x33\xe3\xa0\xb6\x02\x8c\x09\x38\x03\x1d\xad\xa3\x61\xb0\x95\x78\x14\x0c\x04\x63\x38\xd9\x85\x3c\x87\x24\x3d\xb5\x24\xed\xde\x10\xfc\x43\x49\x35\xfb\x5c\xc4\x19\x69\x6c\x26\x05\xe3\xc3\x03\x0a\xb9\xb9\x15\xd7\x46\xe2\xa0\xa5\x55\xe9\xc9\x08\x48\x8e\x3a\x71\x0f\x70\x54\x63\xbc\xa0\x65\x37\xdf\x81\x38\xea\xe3\xfa\x9d\xd6\x19\x96\xd1\x1b\xc6\x7b\x3b\x76\x80\x47\xfb\xb0\xf7\xd6\xd6\xa4\x47\x1b\xe2\x7b\x6b\x0a\x51\x22\x47\x1b\x70\x86\xd0\x2a\x78\xee\xce\x28\xd9\xbb\x20\x0b\x5a\xc2\x78\x0c\x9a\x14\xbc\xbc\xb4\xe3\x1f\x42\x85\x3a\x75\x99\xcf\x9f\xf4\xe8\xd4\x5b\xd7\xa8\x08\xed\x39\x29\xd8\x3c\x92\x44\xf8\x83\x6c\xe0\x01\x4b\xbb\xfd\x06\x35\x07\xbc\xf1\x78\x34\xec\xa8\xbd\x76\x22\xbe\xf7\x01\x4b\x0f\x4e\xdb\xd7\x01\x2f\x6d\x88\x42\xbf\x7f\x28\xa4\x1c\x6c\x9b\x23\x2f\x17\x6e\x97\x23\xc8\x84\xcd\x26\x2a\x35\x4c\x2e\xcb\xeb\x6c\x2b\x34\x82\x35\x52\x9a\xb9\x3a\x55\xff\x7f\xcf\x79\x7b\xe5\xaf\x02\xc1\x27\xf8\x1c\xb4\xf3\xaf\xc1\x6b\xf0\x37\x00\x00\xff\xff\x09\x34\xd7\xde\x30\x06\x00\x00" func stakingcollectionRegister_multiple_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -5379,11 +5380,11 @@ func stakingcollectionRegister_multiple_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_multiple_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0x96, 0x94, 0x8c, 0x6e, 0x12, 0x77, 0x29, 0x32, 0xd4, 0x1c, 0x47, 0x25, 0xdd, 0xdc, 0x25, 0xd1, 0x4c, 0x61, 0x97, 0x3e, 0xc1, 0x8e, 0xe8, 0xe7, 0x4b, 0x73, 0xea, 0xe7, 0xa, 0xfc, 0xd2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc1, 0x8b, 0xd4, 0xe0, 0x9f, 0x32, 0x52, 0xb9, 0xc9, 0x8, 0x23, 0x5, 0x79, 0x81, 0x7e, 0x42, 0xcd, 0x96, 0x39, 0x91, 0x58, 0x2c, 0xf3, 0x42, 0x51, 0x86, 0x4b, 0xb9, 0x33, 0xf4, 0xff, 0x3a}} return a, nil } -var _stakingcollectionRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x51\x6b\xe3\x48\x0c\x7e\xae\x7f\x85\xc8\x43\xcf\x86\xe0\xe6\xe0\x38\x0e\x73\xd9\xd2\x2d\x94\x2e\x85\xdd\xd2\xd0\x7d\x57\x3d\xb2\x3d\xd4\x1e\x19\xcd\xb8\x69\x58\xfa\xdf\x17\x7b\xec\x24\xde\x38\xe9\xf6\x61\xf3\xe0\xcc\x8c\x3e\x49\x9f\x46\xfa\x46\x57\x35\x8b\x83\x6b\xd9\xd4\x8e\x83\x7e\x77\x53\xf2\x7a\xe5\xf0\x59\x9b\xfc\x9a\xcb\x92\x52\xa7\xd9\x40\x26\x5c\xc1\x6c\xd2\x36\x0b\x82\x8b\x8b\x0b\x78\xa0\x5c\x5b\x47\x62\x01\x41\x51\x49\x39\x3a\x16\xd0\x06\x5c\x41\x60\xbd\x13\xa4\xbb\x88\x42\x96\x1b\x49\xa9\x73\xce\x58\x3c\xae\xa6\x54\x67\x9a\x14\x18\x56\x04\xda\x64\x2c\x15\x76\x78\x34\xaa\x83\x60\xc5\x8d\x71\xc0\x19\x38\x7e\x26\x63\xc1\x31\xa4\x5c\x55\xda\x05\x81\x13\x34\x16\xbb\xf8\xa1\x56\x09\xac\x9c\x68\x93\xcf\x03\xd8\xfb\x09\x97\x94\xc0\xe3\x17\xe3\xfe\x1b\x1b\x0c\xb9\x35\x4b\x4b\xf3\x4a\x29\x21\x6b\xa7\xfd\x77\xb0\x3b\xda\x4c\x43\xfa\x6a\x8f\xda\x7d\x09\x09\x3c\xde\xe8\xd7\x7f\xff\x19\xdb\x2a\x4c\x0b\x6d\xe8\x2a\x4d\x5b\xcc\x7e\x08\x38\x8d\x5b\xe9\xdc\xa0\x6b\x84\xae\xca\x9c\x45\xbb\xa2\x1a\xaa\x7c\xc7\xf1\x16\x6d\xf1\xab\x4f\x04\x3f\x82\xce\xab\x24\x37\x94\xb3\xeb\xf8\x03\x65\x09\x60\xe3\x8a\x70\x72\x20\xe2\xdd\xf2\xdb\xda\x90\x44\x70\x3e\x8d\x3b\x38\xf1\x39\x6b\xa1\x1a\x85\x42\xf4\x14\xfb\x54\x9f\x59\x84\xd7\xdf\xb1\x6c\x28\x82\xf3\x9e\x7e\xcb\x73\x7b\xeb\x54\x66\xf1\x14\x57\x58\x42\x1f\x2a\xb6\x8e\x05\x73\x8a\x9f\xba\x60\xff\xff\x89\x1a\x3e\x85\xad\x56\x92\x69\x1d\x1d\xc2\x57\x9e\xd1\x3d\xba\x22\x1a\xf5\xe9\xf2\x12\x6a\x34\x3a\x0d\x67\xd7\xdc\x94\xad\x20\x1c\x78\xda\x80\x20\x94\x91\x90\x49\xa9\x9d\x7e\x84\x43\xbd\xf6\xba\xab\x45\x57\x28\x1b\x68\x2c\xc9\x5f\x76\xb8\x86\x59\x14\x6c\x53\xe9\xac\xeb\xf1\x78\x2a\x60\x79\xfc\x36\x63\xe9\x85\xfe\x95\x15\x85\x23\xca\xad\xe4\xb4\x9a\x92\x5b\xfb\x7d\x57\x6d\x07\x47\x27\x85\x37\xda\x1e\xd7\xdf\x6e\x3d\xad\x41\xff\x3f\xb6\xd5\xb8\x21\x49\x86\xdb\xda\x9a\xf6\x87\x6d\xab\x0d\x9d\xb7\xda\x81\x25\x1c\xea\x2f\x14\xf4\xf3\x9a\xfc\x8e\x5a\xc7\xdd\x3f\x36\x01\x39\x39\xc0\x36\xab\xf7\x06\x1c\xdc\xfd\x0b\xdd\xf6\x5c\x70\x0d\x64\x9a\x0a\x5e\xda\xdc\x50\x0b\xbf\x68\x45\x6a\xbf\xe9\x03\xfb\xa2\x97\x3e\x2c\x61\xf4\x0a\x9c\x62\x3e\x02\x7e\x84\x74\x9b\xec\x63\x7c\xf7\xe3\x1e\x70\xaf\x9b\xa7\x52\xa7\x77\xb4\x81\x25\xdc\x0f\xeb\x30\x38\x3b\x3b\xeb\x5a\x38\x9c\x4c\x54\x10\x2b\x4a\x59\xd1\x2d\xbd\x86\xd1\x7c\x70\xb0\x13\xcf\x67\xdf\xdc\xc0\x23\xa2\x13\xcf\x68\xfc\x4c\x1b\x1b\xa3\x52\xe1\x5e\xe2\xed\x72\xbe\xbd\xe8\x3e\xf0\xb0\x9d\xc3\x9a\x74\x5e\xb8\x04\xfe\x5e\x2c\x16\xf1\x62\x97\xe2\x2d\xf0\xdf\xb7\xe0\x67\x00\x00\x00\xff\xff\x4b\x15\xb8\xc7\xa5\x07\x00\x00" +var _stakingcollectionRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x4f\xdb\x4e\x10\xbd\xfb\x53\xcc\x8f\xc3\x4f\x89\x84\x0c\x87\xaa\xaa\xac\xa6\x28\x0a\x50\xa1\x20\xa8\x08\x9c\xaa\x1e\x16\xef\xd8\x5e\x65\xbd\x63\x8d\x27\x0d\x2e\xe4\xbb\x57\xeb\xcd\x3f\x13\xa7\x6d\x0e\xce\xce\xce\xcc\x9b\x37\x7e\x4f\x36\x65\x45\x2c\x30\xe1\xa6\x12\x8a\xd6\xd1\xb5\xa5\xe5\x4c\xd4\xdc\xb8\x7c\x42\xd6\x62\x2a\x86\x1c\x64\x4c\x25\x9c\xbf\xcc\x1e\xc7\xd3\x9b\xbb\xaf\x93\xfb\xdb\xdb\xab\xc9\xe3\xcd\xfd\xdd\xf8\xf2\xf2\xe1\x6a\x36\x8b\xa2\xb3\xb3\x33\x78\xc0\xdc\xd4\x82\x5c\x83\x02\x8d\x16\x73\x25\xc4\x60\x1c\x48\x81\x50\x07\x4c\x48\x77\xa0\x8c\x35\x2d\x38\xc5\xb6\x39\x23\x0e\x75\x15\xa6\x26\x33\xa8\xc1\x91\x46\x30\x2e\x23\x2e\x55\x5b\xaf\x9c\x6e\x4b\x54\x49\x0b\x27\x40\x19\x08\xcd\xd1\xd5\x20\x04\x29\x95\xa5\x91\x28\x12\x56\xae\x56\x2d\xfe\xc0\xe8\x04\x66\xc2\xc6\xe5\xa7\x11\xec\xfd\x98\x2c\x26\xf0\x74\xe3\xe4\x53\x37\xe1\x50\x96\xc4\x9e\xe6\x58\x6b\xc6\xba\xee\xef\xdf\x95\x4d\xb1\xe9\x2f\x59\x6f\x7b\x34\x1f\x56\x48\xe0\xe9\xda\xbc\x7c\xfc\xd0\xcd\x55\x8b\x67\x6b\xd2\x29\x36\x75\x02\xdf\x83\x38\xf1\x14\x9b\x5b\x53\xcb\x95\x13\x6e\x7e\x5c\x0c\xe1\xb5\xed\x68\x1f\x16\x65\x33\x6e\x27\xd8\x03\x66\x09\xfc\xdf\xab\x65\x7c\x70\x13\xb5\x38\x15\x63\xa5\x18\x07\x2a\x4d\x03\xb7\xf1\x42\x8a\x71\x08\x36\x03\xdb\xd5\xd0\x66\x71\xdf\x40\x18\xc1\xba\x37\x7e\x26\x66\x5a\x7e\xfe\x57\x02\x5f\x06\xde\x5f\x49\xbf\xf7\x0e\xcb\x67\x42\xac\x72\xfc\xa6\xa4\x18\x76\xde\xdc\xc5\x05\x54\xca\x99\x74\x70\x32\xa1\x85\xf5\x0e\x12\x08\x54\x80\xd1\xbb\x05\x0e\xb0\x4e\x86\xd1\x16\xc2\x64\xed\xcb\x2c\x55\x5a\x18\x87\xeb\xd5\x61\x74\x7c\xe3\x98\xd7\x8e\xbf\x23\x8d\x83\x0e\x15\xef\x3d\xa3\xfb\x7c\xe7\x9f\x7f\xb5\xdd\xc1\xd5\x1f\x1d\xd8\x09\x8f\x1b\x71\x77\xee\x37\x63\xf8\x7f\x67\x46\xd5\x20\x27\x1b\x61\x87\xb0\x4d\xbe\x76\xd7\xcd\xf6\x6c\x0b\xa3\x11\x38\x63\xe1\xed\x6d\xef\xf2\xbf\xd8\xa2\xcb\xa5\xf0\xc9\xf3\x77\xdd\x61\x50\x10\x4e\x39\xaf\x5a\xc5\xf4\xd3\x68\x84\x5f\xc8\x04\x73\x8f\xb9\xf9\x3e\xac\xd5\xd9\x30\x3a\xe9\x3a\x60\xd5\x89\x7c\xcf\x1c\x1b\xff\x09\xda\x23\xd2\x33\xbc\x2b\x79\xec\x07\xc6\x4a\xeb\xc1\xb6\x2b\xf1\x38\xf1\x36\x3c\x85\x42\xd5\xc5\xd8\xe6\xc4\x46\x8a\x32\x64\x3b\x57\xa7\xb0\x44\x93\x17\x12\x52\xe1\x7c\x8c\x6a\x38\xad\xa2\x55\xf4\x3b\x00\x00\xff\xff\x67\xfb\x69\x9e\x92\x05\x00\x00" func stakingcollectionRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5399,11 +5400,11 @@ func stakingcollectionRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xcb, 0x54, 0x53, 0x1a, 0x9d, 0x3e, 0x32, 0x51, 0xe3, 0x52, 0x76, 0xf2, 0xee, 0xcd, 0xe3, 0xb, 0xab, 0xed, 0x51, 0x3d, 0xed, 0xa4, 0x99, 0x55, 0xe7, 0xfb, 0xec, 0x6c, 0x87, 0xf2, 0xbf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xae, 0x5, 0x7e, 0x2a, 0xe2, 0xbe, 0x17, 0x25, 0x72, 0xa9, 0x5, 0x40, 0x5, 0xe3, 0xe4, 0xf8, 0x12, 0xf2, 0xe1, 0xd6, 0x2f, 0x88, 0x6e, 0xb6, 0xcd, 0xf8, 0x53, 0xe7, 0x20, 0x35, 0xfc, 0x3}} return a, nil } -var _stakingcollectionRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x8f\xd3\x30\x10\x85\xef\xf9\x15\x4f\x39\x2c\x89\xb4\x4a\x25\x40\x1c\x22\xa0\x82\x45\x2b\xf5\x04\x6a\x55\xee\xc6\x9d\xa4\x16\x8e\x1d\xc6\x63\xb5\x08\xf5\xbf\xa3\xc4\x4d\x83\x68\x0e\x5c\xf0\x21\x8e\xed\xf1\xbc\x37\xe3\xcf\x74\xbd\x67\xc1\xb3\xf5\xa7\x9d\xa8\xef\xc6\xb5\x4f\xde\x5a\xd2\x62\xbc\x43\xc3\xbe\x43\xbe\x78\x96\x67\xd9\x6a\xb5\xc2\x96\x7e\x44\x0a\x12\x10\x5d\x48\x21\x68\x3c\x43\x8e\x84\xd0\x93\x36\x8d\xa1\x03\x9c\x3f\x10\x3c\xe3\x40\x96\x5a\x25\x9e\x61\x5c\x0a\xb9\x5e\xd1\xb7\xb4\x59\x26\xac\x5c\x50\xe3\xa2\x18\x2e\x6e\x3e\xd5\xd8\x09\x1b\xd7\x3e\xce\x09\x86\xcd\xfd\xc6\xc9\xab\x97\xeb\x47\xa8\xce\x47\x27\x35\xf6\xcf\xe6\xfc\xe6\x75\x89\x5f\x19\x00\x8c\x1f\x4b\x32\x89\xcc\xd6\xb7\xd4\xd4\x50\x51\x8e\xc5\x62\x65\xd5\xfc\xfb\xf9\xe4\x88\x4b\x3c\x2c\xc7\xdd\xed\x64\xa3\x66\xcf\xd4\x2b\xa6\x42\x69\x9d\x7c\x8d\x52\x1f\x3d\xb3\x3f\x7d\x55\x36\x52\x89\x87\x0f\xe9\x6c\xf2\x3a\x8c\x40\xb6\xa9\x96\xbc\xe2\x1d\xae\xa9\xaa\x20\x9e\x55\x4b\xd5\xb7\x31\xd9\xdb\xff\x51\xc3\xfb\x62\x78\xf4\x7a\x19\x88\xfb\xf0\x5d\x72\xf4\x45\xc9\xb1\xbc\x95\x32\x8c\xf5\x1a\xbd\x72\x46\x17\xf9\x93\x8f\x76\x60\x40\x90\x6c\x43\x81\xa9\x21\x26\xa7\x09\xe2\xa1\x70\x0f\xde\x95\x8f\x9e\x4d\xa7\xf8\x27\x62\x20\x7e\x11\xa6\x36\xe4\x49\xe9\x92\xda\x4d\x67\xd2\x51\xe8\x5f\x3a\x59\x71\xa2\x75\x3f\xb1\x7a\x03\x2c\xcd\x7f\x01\xf6\xc7\x62\x86\x2c\xcd\x93\x83\x4b\xf6\x3b\x00\x00\xff\xff\x6a\x87\x6b\x8d\x40\x03\x00\x00" +var _stakingcollectionRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\x51\x6b\xf2\x50\x0c\x7d\xef\xaf\x08\x3e\x7c\x54\x90\xfa\xb1\x8d\x3d\x94\x6d\x52\xaa\x8e\x32\xd1\x61\xf5\x07\xdc\xd5\xb4\x5e\x76\xbd\xe9\xd2\x14\x85\xe1\x7f\x1f\xf5\x5a\x1d\xd3\x07\xef\x43\x43\x42\x72\xce\x49\x4f\xf4\xa6\x24\x16\x18\x1b\xda\xa6\xa2\x3e\xb5\x2d\x62\x32\x06\x33\xd1\x64\x21\x67\xda\xc0\xff\x5d\xba\x88\xde\x92\xe9\x6b\x3c\x9b\x4c\x46\xf1\x22\x99\x4d\xa3\xe1\x70\x3e\x4a\x53\xcf\xeb\xf7\xfb\x30\xc7\xaf\x1a\x2b\xa9\xa0\xb6\x95\x43\x80\x9c\x18\x64\x8d\x50\x95\x98\xe9\x5c\xe3\x0a\x2c\xad\x10\x88\x61\x85\x06\x0b\x25\xc4\xa0\xad\x6b\x39\x8e\x64\x27\x56\xcf\x13\x56\xb6\x52\x87\xc4\x6f\x06\x93\x61\x08\xa9\xb0\xb6\x45\xef\x0c\xd0\x14\x97\x89\x95\xfb\xbb\x41\x0f\xd4\x86\x6a\x2b\x21\x2c\xc7\x7a\xf7\xf8\xd0\x85\x6f\x0f\x00\xe0\xf0\x31\x28\x2d\xc9\x79\xb3\x39\xe6\x21\xfc\xbb\xba\x74\x70\x51\xf1\x0e\x38\x25\x63\xa9\x18\x7d\x95\x65\x8e\x2b\xaa\x65\x1d\xb9\xa4\x25\x6c\x5e\x85\x26\x0f\xae\x11\xc2\x33\x1c\x67\x83\x0f\x62\xa6\xed\xd3\xad\x02\x5e\xfc\xc6\x88\xf0\xba\x49\x97\xed\xa9\x10\xab\x02\xdf\x95\xac\xbb\x27\x59\xcd\x1b\x0c\xa0\x54\x56\x67\x7e\x27\xa6\xda\x34\xa6\x08\x38\x29\xc0\x98\x83\x10\x5c\x60\x75\x1c\xc2\xde\xfd\x03\xdc\x61\x56\x0b\xde\xb2\x6d\xc0\xee\x2c\x96\xed\x51\x9c\x9c\x74\xf1\x8f\x93\xbf\x92\xb3\x9b\x2e\xb6\x0a\xf6\xde\x4f\x00\x00\x00\xff\xff\x78\x58\xc1\x42\xac\x02\x00\x00" func stakingcollectionRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -5419,11 +5420,11 @@ func stakingcollectionRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0x9, 0xd0, 0xec, 0x1c, 0x52, 0x7a, 0x4e, 0xdd, 0x2e, 0x32, 0x4e, 0x54, 0x32, 0x24, 0xf7, 0x13, 0x28, 0xda, 0x6, 0x1f, 0x13, 0x61, 0x82, 0x5c, 0x5, 0x93, 0xc9, 0xcd, 0x4c, 0xce, 0x85}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xef, 0xea, 0x1c, 0x7d, 0xa0, 0xfd, 0x94, 0xf6, 0x62, 0xff, 0xe2, 0x56, 0x30, 0xb4, 0x51, 0x60, 0x6f, 0x63, 0xec, 0x73, 0xb9, 0x24, 0x10, 0xba, 0xd2, 0x4e, 0xda, 0x1f, 0x16, 0xf4, 0xe2, 0xd}} return a, nil } -var _stakingcollectionRestake_all_stakersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x6f\xdb\x30\x0c\xbd\xeb\x57\x10\x39\x14\x36\x50\x38\xf7\x60\x59\xb1\x25\x18\xd0\x4b\x36\xb4\xc5\xee\xac\x4d\xa7\x46\x64\x31\x90\x68\x64\x40\x91\xff\x3e\xc8\x72\xfc\x11\x2b\xdb\x61\xab\x0f\x86\x20\x92\x8f\x8f\x8f\x4f\x55\x7d\x64\x2b\xf0\x4d\xf3\xe9\x59\xf0\x50\x99\xfd\x86\xb5\xa6\x5c\x2a\x36\x50\x5a\xae\x61\x11\x8d\x2d\xd4\xa8\xf2\x71\xfb\x82\xaf\x9a\xba\xa4\x51\xd9\x34\xb0\x50\x6a\xb9\x5c\xc2\x86\xeb\xba\x12\x07\x96\x4e\x68\x0b\x2a\x40\xf8\x40\xc6\x81\x30\x38\xc1\x03\x41\xc9\x16\x50\x6b\x30\x5c\x90\x03\x34\x05\x14\xa4\x69\x8f\xc2\xd6\x41\x65\x00\x21\xef\x79\x28\x25\x16\x8d\xc3\x40\xf8\x5d\x01\x00\xb4\x3f\x4d\xd2\xc2\x4d\x58\x3f\x51\xb9\x02\x6c\xe4\x2d\x89\x0e\x95\x0d\xc7\xef\x27\x43\x36\x85\xbb\x78\xde\xec\x46\xb5\x3d\x8f\x96\x8e\x68\x29\xc1\x3c\xe7\xc6\x48\xd7\xea\x2b\x5b\xcb\xa7\x9f\xa8\x1b\x4a\xe1\xee\x4b\x88\xa5\x1d\x57\xff\x39\xd2\x65\x16\xe3\x0a\x6b\xe8\xa0\x32\x27\x6c\x71\x4f\xd9\x6b\x0b\xf6\xe9\x23\x66\xf8\x9c\xf8\xc5\xad\xe2\x5e\x98\xa7\x3f\x07\x46\x3f\x50\xde\xd2\x7e\x14\xff\x3d\x3c\xc0\x11\x4d\x95\x27\x8b\x0d\x37\xba\x00\xc3\x02\x81\x36\x58\x2a\xfd\x9a\xe7\x6e\x0a\x08\xe7\x20\x23\xfd\xa2\xbc\x11\x1a\x29\xe4\x97\xe9\xdd\xf0\xb8\x75\xb0\xbe\xad\x57\xb6\x27\xd9\x85\xb4\x24\x55\x7d\xb5\xf7\x53\xa8\xf6\xee\xb9\xe0\xbc\x4f\x48\xf7\x1d\x4c\xc9\xb0\x8e\xb8\x3a\xdb\x75\xd1\x24\x00\xac\x3a\xa0\xe9\xec\xb7\xa9\xb5\xd6\x7e\xea\x2c\xff\xd2\x3a\xfe\x0a\xe9\x7e\xb0\x79\x7b\x59\xe9\x7b\xc0\x3a\x18\xe9\x42\x2d\x0b\x6f\xe5\x82\x33\x34\x3f\xab\x89\x58\xa3\x07\xf3\x17\xbd\xb6\x43\xcf\x99\x68\x3d\x8a\xd7\x6d\x04\x39\x97\x6e\x60\x7e\x53\xbf\xed\x38\xa5\x1f\xbd\x2f\xcc\xfa\xd3\x2e\xa6\x46\x24\xef\x5a\xfb\xff\xb0\x88\x7f\x62\x33\x6c\x6b\xa2\xc6\x1f\x56\x16\xfe\x67\xf5\x3b\x00\x00\xff\xff\xcb\xbd\x75\xfc\x85\x05\x00\x00" +var _stakingcollectionRestake_all_stakersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x52\x4d\x8f\x9b\x30\x10\xbd\xfb\x57\x8c\xf6\x50\x11\x69\x45\x7a\x8e\x9a\xae\x28\xa4\x15\x6a\xc4\x56\x81\x4b\x8f\x5e\x18\xb2\x28\xc6\x13\x19\xa3\xac\xb4\xca\x7f\xaf\x8c\xf9\x0c\xa4\xad\xd4\xfa\x60\x25\x66\xe6\xcd\x9b\xf7\x5e\x51\x9e\x49\x69\xf8\x2a\xe8\x12\x6b\x7e\x2a\xe4\xd1\x27\x21\x30\xd5\x05\x49\xc8\x15\x95\xf0\xf1\x2d\x4e\xbc\xef\x61\xf4\xcd\x7f\xde\xef\x77\x7e\x12\x3e\x47\x5e\x10\x1c\x76\x71\xcc\x46\xcd\x61\x90\xf0\x17\x81\x2d\x46\xd7\x19\x06\xbb\x28\x09\x93\x9f\x89\xf7\x65\xbf\xeb\xba\xd8\x7a\xbd\x06\x9f\xca\xb2\xd0\x15\x28\xbc\x70\x95\x61\x06\x9a\x4e\x28\x2b\xd0\x04\x95\xe6\x27\x84\x9c\x14\x70\x21\x40\x52\x86\x15\x70\x99\x41\x86\x02\x8f\x5c\x93\xaa\xa0\x90\xc0\x21\xed\x89\x32\xa6\x15\x97\x15\xb7\xac\xdf\x19\x00\x40\x73\x09\xd4\x0d\xdc\x64\xad\x03\xe6\x1b\xf8\xb0\xb8\xb1\x3b\x7b\x61\x0d\xce\x59\xe1\x99\x2b\x74\x78\x9a\x52\x2d\xf5\x06\xbc\x5a\xbf\x7a\xf6\xcf\xaa\x1d\x68\x4e\x85\x22\x77\x97\x06\xc2\x16\xda\x5e\xf7\x85\x94\xa2\xcb\xa7\xbf\x25\xf0\xd9\x31\x5a\x6e\x96\x1d\x9a\x97\xc7\x9a\x14\x3f\xe2\x0f\xae\x5f\x57\x3d\x2d\x73\x9e\x9e\xe0\xcc\x65\x91\x3a\x0f\x3e\xd5\x22\x03\x49\x1a\x2c\x15\x50\x98\x1b\xdd\x67\x58\x0f\x16\xe1\x6a\x35\xc0\x37\x4c\x6b\x8d\xa3\x6d\x8d\xba\xc6\x9e\x30\xa8\x60\x7b\x7f\x77\xf7\x88\x3a\xb2\x65\xce\x8a\xf5\xdd\xc6\x60\xdb\x6d\xec\xec\x70\xde\x27\xa4\xfb\x09\x32\x27\xd8\x2e\x04\xcd\x8d\xda\xaf\x8e\x05\xd8\xb4\x40\xd3\xdd\xef\x53\x6b\xb2\x76\x68\x33\x98\x34\x11\xbc\x41\x7a\x1c\x72\xd7\x3c\x16\xe2\x11\x78\x69\x53\xd0\x51\x73\x6d\x78\x3b\x9c\x61\xf8\x95\x4d\xc4\x1a\x25\xf8\x0f\x7a\x05\xc3\xcc\x99\x68\x3d\x8a\xd1\x6d\x04\x39\x97\x6e\x60\x7e\x57\xbf\x60\x5c\xd2\xaf\xde\x37\xba\xfd\xaf\x68\x49\x8d\x85\xba\x5b\xed\xff\x83\x11\xff\xc4\x66\x70\x6b\xa2\xc6\x6f\x2c\xb3\xf7\x95\xfd\x0a\x00\x00\xff\xff\xca\x5e\x38\x8c\x1b\x05\x00\x00" func stakingcollectionRestake_all_stakersCdcBytes() ([]byte, error) { return bindataRead( @@ -5439,11 +5440,11 @@ func stakingcollectionRestake_all_stakersCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/restake_all_stakers.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0xee, 0xd6, 0x42, 0xaf, 0x95, 0x76, 0xc4, 0xef, 0x82, 0xa3, 0xbb, 0xb6, 0xa5, 0x72, 0xc9, 0xc0, 0x45, 0x5, 0xef, 0xd3, 0x94, 0x90, 0x5c, 0x7f, 0x90, 0x8b, 0x25, 0xf2, 0x33, 0xa3, 0x62}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x12, 0xa0, 0xbf, 0x41, 0x72, 0x3e, 0x5b, 0xdf, 0x47, 0x61, 0x1f, 0x7f, 0x61, 0xf5, 0xb0, 0x7a, 0x10, 0xae, 0x7b, 0xf9, 0x7b, 0x91, 0xe2, 0x95, 0xa1, 0x16, 0x8b, 0x2a, 0x8c, 0x50, 0x47, 0x9f}} return a, nil } -var _stakingcollectionScriptsDoes_account_have_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4e\xc4\x40\x0c\x45\xfb\x39\xc5\xd7\x56\x9b\x86\xf4\xdb\x2d\x20\x44\xcf\x09\xac\x89\x03\x16\x33\x76\x34\xf6\x90\x02\x71\x77\x8a\x44\x4a\xb1\xe9\x9e\xf4\xbf\x9e\x9e\xd4\xc5\x5a\xe0\xad\xd8\xfa\x11\xf4\x2d\xfa\xf9\x62\xa5\x70\x0e\x31\xc5\xdc\xac\xe2\x72\xba\x5d\x52\x1a\xc7\x11\xaf\x1c\xdc\xaa\x28\x3b\x64\x06\x29\x28\x67\xeb\x1a\x10\x87\x73\xa0\x2f\x58\x25\xbe\x40\xd8\x0d\x38\x14\x29\x51\xce\xec\x7e\xa5\x52\x06\xcc\x5d\x51\x49\xf4\x4a\xd3\xd4\xd8\xfd\x86\xfb\x06\xc3\x0d\xcf\x66\x05\xbf\x09\x00\x1a\x47\x6f\x7a\xde\xfb\x34\x19\xfb\x7d\x0b\x78\xa7\x1f\x7e\x38\x1c\xee\x1d\x86\xf4\xf7\x1f\x00\x00\xff\xff\x4a\x63\x63\xb2\x01\x01\x00\x00" +var _stakingcollectionScriptsDoes_account_have_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4e\xc3\x30\x10\xc6\xf1\xdd\x4f\xf1\x8d\x74\x21\xcc\xdd\x4c\x52\xa0\xa2\x6a\x25\xdc\x17\x30\xc9\x05\x4e\xd8\x77\x91\x7d\xa6\x48\x88\x77\x67\x68\xa5\x0e\xb0\xfd\x87\xd3\xfd\x3e\xce\x8b\x16\xc3\x43\xd2\x53\xb0\xf8\xc1\xf2\xd6\x6b\x4a\x34\x1a\xab\x60\x2e\x9a\x71\xf7\x15\x8e\xfe\x79\xbb\x7f\xec\x0f\xbb\xdd\xa6\x3f\x6e\x0f\x7b\x3f\x0c\x2f\x9b\x10\x9c\xeb\xba\x0e\x03\x19\x95\xcc\x42\x15\x3c\x23\x0a\xe2\x38\x6a\x13\x03\x57\x54\x32\xb4\x05\x27\xb6\x77\x44\x5c\x00\x5c\x05\xe7\x96\xf6\x8a\xb9\x09\x72\x64\xb9\x89\xd3\x54\xa8\xd6\x35\xfc\x39\x56\x6b\xdc\xab\x26\x7c\x3b\x00\x28\x64\xad\xc8\xff\x53\x6f\x27\xa5\xea\xcf\xf0\x53\xfc\xa4\x3f\x07\xd7\xdf\x97\x58\xb9\x9f\xdf\x00\x00\x00\xff\xff\x5d\x7d\x18\xf4\xfc\x00\x00\x00" func stakingcollectionScriptsDoes_account_have_staking_collectionCdcBytes() ([]byte, error) { return bindataRead( @@ -5459,11 +5460,11 @@ func stakingcollectionScriptsDoes_account_have_staking_collectionCdc() (*asset, } info := bindataFileInfo{name: "stakingCollection/scripts/does_account_have_staking_collection.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0x34, 0x8c, 0xdd, 0x28, 0xf3, 0x71, 0x7c, 0x27, 0x34, 0x43, 0xc2, 0x6c, 0xde, 0x42, 0x3e, 0x68, 0x2d, 0xc2, 0x74, 0x34, 0x8e, 0x51, 0xaf, 0x77, 0xcc, 0xac, 0x1b, 0x8d, 0x90, 0x91, 0x7f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8c, 0xd, 0x47, 0xa3, 0x4f, 0xfc, 0x6f, 0x44, 0x5d, 0xbf, 0xd, 0xa3, 0x2c, 0x2b, 0x6d, 0xe1, 0x19, 0x8f, 0x95, 0x3f, 0x2f, 0xff, 0x8f, 0xf5, 0xdd, 0x30, 0x90, 0x79, 0x1a, 0x60, 0x2, 0x4e}} return a, nil } -var _stakingcollectionScriptsGet_all_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x4b\x03\x51\x10\x84\xfb\xf7\x2b\x86\xab\x72\x4d\xae\x4f\x17\x0c\x4a\x6a\xed\xc4\x62\xbd\xb7\xef\x7c\xb8\xf7\x56\x76\x37\x88\x88\xff\x5d\xd0\xd3\x24\x24\xdd\xb0\x33\xc3\x37\x6c\x9d\xdf\xd4\x02\xb7\xa2\xef\xf7\x41\xaf\xb5\x4d\x37\x2a\xc2\x63\x54\x6d\x28\xa6\x33\xba\xab\x5e\x97\x4e\x9a\xfb\xdd\x03\x3d\x0b\x2f\xa1\x93\xda\xb9\xd1\xa5\x34\x0c\x03\xee\x38\x1c\xd4\x40\x66\xf4\x01\x2d\x20\x11\xc4\x0b\x23\xb3\xf0\x44\xa1\x86\x99\x83\x32\x05\xa1\xa8\x1d\xcf\x0e\x0f\x35\xce\xa8\xed\x27\xef\x0b\x6f\xfc\x5f\x95\x12\x8d\x23\xbb\xaf\x48\xa4\x47\x39\x34\xcc\x54\xdb\x8a\x72\x36\x76\xdf\x60\xfb\x2b\xfa\x0d\x1e\x2f\xe7\xad\x77\x7f\xa0\x7d\x2b\xfa\x84\xcf\x04\x00\xc6\x71\xb0\x76\xfd\x41\xeb\x89\x63\x2b\x72\xd6\x3b\xc2\x16\xd1\xa7\xaf\xef\x00\x00\x00\xff\xff\x8b\x34\x8c\xda\x65\x01\x00\x00" +var _stakingcollectionScriptsGet_all_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xde\xd1\x5e\x5a\xcf\xbd\xc5\x24\x96\xc5\x90\x82\xd9\x8b\x88\x87\x69\x33\x89\xc1\xcd\x6e\x99\x9d\xa0\x22\xfe\x77\x41\x13\xab\xe8\xed\x31\xcc\x37\xdf\x63\x86\xf1\x14\x45\x71\xed\xe3\x73\xa3\xf4\x34\x84\x3e\x8f\xde\xf3\x51\x87\x18\xd0\x49\x1c\x71\xf9\xd2\xb8\xec\xc6\xd6\xbb\x7c\x5f\x55\x65\xee\xec\xbe\xce\x8a\xe2\xb6\x6c\x1a\xf3\x03\xb6\x85\xa3\x83\xe7\xf9\xc6\x42\xda\xa2\xac\x9d\x75\x77\x2e\xbb\xaa\xca\x85\x32\x9b\xcd\x06\x3b\xd6\x04\x0a\x20\x11\x7a\x45\xec\x40\xde\x43\x1f\x19\x2d\x7b\xee\x49\xa3\x60\x64\xa5\x96\x94\xd0\x45\x39\x8f\x13\x92\x46\xe1\x16\x43\xf8\xdc\x4f\xb3\xf1\xf8\x5d\xdb\x98\xd3\x74\x40\x37\x05\x8c\x34\x84\x0b\x6a\x5b\xe1\x94\xb6\xc8\xbe\xc2\x6a\x8b\xfb\xbf\x8d\xd7\xc5\x22\xb0\xa1\x8b\x0f\x78\x33\x00\x20\xac\x93\x84\xff\xbf\xb3\xee\x59\x33\xef\x7f\x71\x67\xd9\x1c\x56\xe6\xfd\x23\x00\x00\xff\xff\xfd\xb5\xa8\x45\x62\x01\x00\x00" func stakingcollectionScriptsGet_all_delegator_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5479,11 +5480,11 @@ func stakingcollectionScriptsGet_all_delegator_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_all_delegator_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x61, 0xbc, 0xe9, 0xa, 0xd, 0xd8, 0x3e, 0x8b, 0x75, 0x60, 0x29, 0xdf, 0x8, 0xba, 0x2, 0xf2, 0xbb, 0xe3, 0x73, 0x8b, 0xed, 0x4a, 0xcc, 0x91, 0x4b, 0xa5, 0x5f, 0x2c, 0xe8, 0x7e, 0xf4, 0x11}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc2, 0xa7, 0xb0, 0x99, 0xa1, 0x70, 0xd1, 0x2b, 0x96, 0x92, 0x77, 0x7d, 0x16, 0xae, 0x8d, 0xe8, 0x88, 0xc7, 0xef, 0xbc, 0xe4, 0x59, 0x1f, 0x33, 0xb, 0x97, 0x3e, 0xbe, 0xe3, 0x8c, 0x2a, 0xd7}} return a, nil } -var _stakingcollectionScriptsGet_all_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x4b\x43\x41\x10\x84\xfb\xfb\x15\xc3\xab\xf2\x9a\xbc\x3e\x5d\x50\x94\x34\x36\xda\x89\xc5\xfa\x6e\x2f\x1e\xee\xed\xca\xde\x06\x11\xf1\xbf\x0b\xf1\xa9\x11\xd3\x0d\x3b\xf3\x31\xc3\xd6\xf6\x62\x1e\xb8\x12\x7b\xbd\x0d\x7a\xae\xba\xbf\x30\x11\x9e\xa3\x9a\xa2\xb8\x35\x0c\x67\xbd\x21\x9d\x90\xbb\xcb\x3b\x7a\x14\x5e\x42\x27\xd8\x5f\x63\x48\x69\x9a\x26\x5c\x73\x74\x90\x82\xdc\xe9\x0d\x56\x40\x22\x88\x27\x86\x5a\x66\x34\x0e\xca\x14\x84\x62\x7e\xbc\x74\xf4\x30\xe7\x8c\xaa\xc7\x54\x5f\x5a\xe6\x9f\x2d\x29\xd1\x3c\x73\xef\x2b\x12\x19\x51\x0e\x8a\x46\x55\x57\x94\xb3\x73\xef\x1b\x6c\xbf\xc4\xb8\xc1\xfd\xff\x51\xeb\x1b\xcb\xbc\xd3\x62\x0f\x78\x4f\x00\xe0\x1c\x07\xd7\xf3\x1f\x59\xef\x39\xb6\x22\xdf\xc8\x6f\xc5\x22\xc6\xf4\xf1\x19\x00\x00\xff\xff\xcd\xc4\xa0\x99\x51\x01\x00\x00" +var _stakingcollectionScriptsGet_all_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xde\xd1\x5e\x1a\xcf\xbd\xc5\x24\x96\xc5\x90\x82\xd9\x8b\x88\x87\x69\x77\x52\x17\x37\x3b\x65\x77\x83\x8a\xf8\xdf\x85\x9a\xa8\x60\x6f\x8f\x61\xbe\x79\x1f\xe3\xc6\x93\xc4\x8c\x5b\x2f\xaf\x7d\xa6\x17\x17\x8e\x95\x78\xcf\x87\xec\x24\x60\x88\x32\xe2\xfa\xad\x37\xe5\x9d\xee\xb6\xd5\xae\x6d\x9b\xca\xe8\x5d\x57\xd6\xf5\x7d\xd3\xf7\xea\x0f\xac\x6b\x43\x7b\xcf\xf3\x8d\x85\xd4\x75\xd3\x19\x6d\x1e\x4c\x79\xd3\x36\x0b\xa5\x8a\xa2\xc0\x96\x73\x02\x05\x50\x8c\xf4\x0e\x19\x40\xde\x23\x3f\x33\x82\x58\xc6\xc8\x99\x2c\x65\xc2\x20\xf1\x3c\x49\x48\x59\x22\x5b\xb8\x70\xde\x4a\x73\xcf\xe1\x47\x56\xa9\xd3\xb4\xc7\x30\x05\x8c\xe4\xc2\x15\x59\x1b\x39\xa5\x0d\xca\xef\xb0\xda\xe0\xf1\xbf\xe7\xba\x13\xcb\x3a\x0c\xf2\x84\x0f\x05\x00\x91\xf3\x14\xc3\xe5\x77\xac\x8f\x9c\x4b\xef\x17\xe4\xb7\x62\x0e\x2b\xf5\xf9\x15\x00\x00\xff\xff\xa5\xe7\xa3\xf6\x4e\x01\x00\x00" func stakingcollectionScriptsGet_all_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5499,11 +5500,11 @@ func stakingcollectionScriptsGet_all_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_all_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0x1b, 0xdc, 0xc0, 0x18, 0xba, 0x5a, 0xa1, 0x59, 0xc9, 0x67, 0x12, 0x85, 0xb0, 0xda, 0x24, 0xdd, 0x74, 0x94, 0xbd, 0xbb, 0xbe, 0x46, 0xdd, 0x56, 0x2c, 0x3f, 0x4d, 0x4e, 0x6a, 0xe8, 0x7b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0xb7, 0x63, 0x1e, 0xee, 0xc1, 0x60, 0xe2, 0xae, 0x71, 0xa0, 0x49, 0xa, 0xe8, 0xa0, 0x84, 0xcc, 0x39, 0x7b, 0xad, 0x66, 0xc7, 0x33, 0xc6, 0x2a, 0x80, 0x53, 0x15, 0xb9, 0xa6, 0xfd, 0xf9}} return a, nil } -var _stakingcollectionScriptsGet_delegator_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xbd\x6a\xc4\x40\x0c\x84\xfb\x7d\x8a\xe1\xaa\x73\x73\xee\xaf\x0b\x31\x01\xb7\x49\x19\x52\x88\x5d\xd9\x59\x22\xaf\x82\x24\x13\x42\xc8\xbb\x07\xec\xfc\x15\xee\x06\x06\xcd\xf7\xa9\x2e\xaf\x6a\x81\x3b\xd1\xb7\x87\xa0\x97\xda\xe6\x5b\x15\xe1\x1c\x55\x1b\x26\xd3\x05\xa7\xc3\xee\x94\x52\xdf\xf7\xb8\xe7\x58\xad\x39\xa8\x81\xcc\xe8\x1d\x3a\x81\x44\x10\xcf\x8c\xc2\xc2\x33\x85\x1a\xc6\xc1\xe1\xa1\xc6\x05\xb5\x6d\x9d\xef\x7b\xc8\xbf\x83\x29\x51\xce\xec\x7e\x26\x91\x0e\xd3\xda\xb0\x50\x6d\x67\x2a\xc5\xd8\xfd\x8a\x9b\x3d\x74\x57\x3c\x1e\x0a\x5d\x86\x1f\xdc\x38\xf8\x13\x3e\x12\x00\xd8\xa6\x77\xfc\xdd\x65\xe6\xf8\x7f\xf3\x87\xfa\x0e\x5d\xfa\xfc\x0a\x00\x00\xff\xff\x7b\xbc\xfe\x64\x1e\x01\x00\x00" +var _stakingcollectionScriptsGet_delegator_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcf\x4f\x4b\xc3\x40\x10\x05\xf0\xfb\x7e\x8a\x77\xb4\x97\xc6\x73\x6f\x21\x5b\x25\x58\x5a\x68\x7a\x13\x0f\x63\x77\x12\x17\x37\x3b\x65\x76\x82\x8a\xf8\xdd\x85\xd6\x3f\x3d\xe4\xf6\x60\x18\x7e\xef\xc5\xf1\x24\x6a\xb8\x4b\xf2\xd6\x19\xbd\xc6\x3c\x34\x92\x12\x1f\x2d\x4a\x46\xaf\x32\xe2\xf6\xbd\x3b\xd4\x0f\xed\xf6\xbe\xd9\x6d\x36\xeb\xe6\xd0\xee\xb6\xb5\xf7\xfb\x75\xd7\x39\x57\x55\x15\xf6\x6c\x93\xe6\x02\xca\x20\x55\xfa\x80\xf4\xa0\x94\x60\x2f\x8c\xc0\x89\x07\x32\x51\xb4\xbe\xa0\x98\x28\x07\xc4\x7c\xbe\x95\x0b\x87\xe3\x9f\xe7\xdc\x69\x7a\x46\x3f\x65\x8c\x14\xf3\x0d\x85\xa0\x5c\xca\x0a\xf5\x25\x2c\x56\x78\x9c\xed\xb9\xf4\xbf\x4c\xeb\xcb\x13\x3e\x1d\x00\xe8\xb9\xd6\xfc\xb0\xe5\xc0\x76\xfd\xf3\x4f\xfd\x84\x85\xfb\xfa\x0e\x00\x00\xff\xff\x4a\xb0\xd1\x0a\x19\x01\x00\x00" func stakingcollectionScriptsGet_delegator_idsCdcBytes() ([]byte, error) { return bindataRead( @@ -5519,11 +5520,11 @@ func stakingcollectionScriptsGet_delegator_idsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_delegator_ids.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0x35, 0xab, 0x54, 0x9e, 0x17, 0xc5, 0x8d, 0xcb, 0x10, 0x21, 0xe1, 0x7c, 0x59, 0xcb, 0xec, 0x18, 0xbf, 0x66, 0xb7, 0x4f, 0x38, 0xc, 0x32, 0x7f, 0x8b, 0x9e, 0x82, 0x19, 0x52, 0xc, 0xbe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0xf8, 0x98, 0x3a, 0xf0, 0xad, 0x8c, 0x59, 0x26, 0xd8, 0x74, 0x8f, 0xf7, 0x27, 0xc2, 0xc4, 0x84, 0x5d, 0x3c, 0x37, 0x82, 0xa6, 0x34, 0x6b, 0x2d, 0xe, 0xfd, 0xd1, 0x10, 0x7a, 0x29, 0xe0}} return a, nil } -var _stakingcollectionScriptsGet_does_stake_existCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x6a\xf3\x30\x10\x84\xef\x7a\x8a\xc1\xa7\x18\xc2\x6f\xf8\x7b\xf3\xa5\xb4\x4d\x0b\x3e\x27\x7d\x00\x55\x5a\xb9\x4b\xd7\xda\x20\x29\xb4\x50\xfa\xee\xc5\xb1\xc1\xae\xc9\x49\xd2\xce\xce\x7c\x83\x78\x38\x6b\x2a\x78\x11\xfd\x3c\x16\xfb\xc1\xb1\x7f\x52\x11\x72\x85\x35\x22\x24\x1d\x50\xdd\xd4\x2a\xb3\x72\x76\x87\x93\x7d\x13\x9a\x97\x56\xb6\xbf\x42\x65\x4c\xd3\x34\x38\x91\x48\x06\x07\x94\x77\x42\x3e\x93\xe3\xc0\xe4\x11\xd5\x13\x34\xc1\x93\x50\x6f\x8b\x26\xd0\x17\xe7\x92\xc1\x71\xda\x9c\xd3\xdd\xd2\xef\x1a\x17\x34\x6d\x92\xac\xf7\x89\x72\x36\xc6\x3a\x47\x39\xef\xac\x48\x8d\x70\x89\x18\x2c\xc7\xdd\xac\xb6\x78\x98\x2e\xfb\x2b\xb9\x3b\xb4\x38\x96\xc4\xb1\xdf\x2f\x0d\xc6\xe1\x6b\x17\xcb\xdd\xff\xfb\xba\xc5\xa3\xaa\xe0\xdb\x00\x40\xa2\x72\x49\xf1\xf6\xaf\xfd\xf3\x4a\x79\x9c\xd2\xf3\xd8\x7f\xe1\xd9\x2d\x6f\x3a\x37\xbc\xd5\xa3\x36\x3f\xbf\x01\x00\x00\xff\xff\xa0\xc3\x2f\x2d\x9f\x01\x00\x00" +var _stakingcollectionScriptsGet_does_stake_existCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x6b\xb4\x30\x10\x86\xef\xf9\x15\x73\xfc\x16\x96\xcf\xd2\xde\xbc\x14\x57\x6d\x09\x15\x17\x6a\x7a\xe8\x31\x6b\x26\x36\x34\x66\x24\x89\x74\xa1\xf4\xbf\x17\x57\x17\x17\xe9\x29\xc9\x4b\xde\xe7\x19\xc6\xf4\x03\xf9\x08\x4f\x96\xbe\x9a\x28\x3f\x8d\xeb\x72\xb2\x16\xdb\x68\xc8\x81\xf6\xd4\xc3\xdd\xb9\x11\xd9\x0b\xaf\x9f\xf3\x63\x55\x95\xb9\xe0\xc7\x3a\x2b\x8a\xd7\xb2\x69\xd8\x4d\x99\x17\x42\x9e\x2c\x2e\x8c\x6b\x93\x17\x65\x2d\xb8\x78\x17\xd9\xa1\x2a\xaf\x2d\x96\x24\x09\x08\xb4\x36\x80\xd1\x10\x3f\x10\xc2\x80\xad\xd1\x06\x15\x38\x52\x08\xe4\x41\xa1\xc5\x4e\x46\xf2\x80\x67\x13\x62\x00\xe3\xe6\x9f\x0b\xbf\x5d\x87\xbc\xe0\x34\xf9\x0d\x49\x2a\xe5\x31\x04\xc6\x86\xf1\x04\x7a\x74\xd0\x4b\xe3\xfe\x2d\x69\x0a\xd9\x7c\xd9\x5f\x8c\xbc\x48\xa1\x89\xde\xb8\x6e\xbf\x9a\xa7\xf0\x8d\xbb\xf8\x70\xff\xb8\x4b\xe1\x40\x64\xe1\x9b\x01\x00\x78\x8c\xa3\x77\x7f\xaf\xec\xbf\x22\x0c\x53\x8a\xe5\x34\xf7\xea\x93\x5b\xdf\x7c\x6e\x7c\x37\x8f\x1d\xfb\xf9\x0d\x00\x00\xff\xff\xc9\x3b\x81\x54\x9c\x01\x00\x00" func stakingcollectionScriptsGet_does_stake_existCdcBytes() ([]byte, error) { return bindataRead( @@ -5539,11 +5540,11 @@ func stakingcollectionScriptsGet_does_stake_existCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_does_stake_exist.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4, 0xb, 0x6f, 0x8c, 0x94, 0xdc, 0x94, 0x55, 0x5, 0x3d, 0xa0, 0x77, 0x92, 0x7, 0xba, 0x57, 0xbd, 0x9e, 0x52, 0x3f, 0x15, 0x13, 0x69, 0x71, 0x5, 0x3, 0xa5, 0x1c, 0x2a, 0xe6, 0xa2, 0xa4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x72, 0xa5, 0xa3, 0x68, 0xc7, 0x63, 0xaf, 0xd8, 0x21, 0x69, 0x50, 0x68, 0xf5, 0x65, 0xcc, 0xff, 0xec, 0x23, 0x17, 0x1a, 0xb3, 0x78, 0x4d, 0x90, 0xd1, 0xbc, 0xd, 0xab, 0xc, 0xb3, 0xd8, 0x47}} return a, nil } -var _stakingcollectionScriptsGet_locked_tokens_usedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xb1\x4e\xec\x40\x0c\x45\xfb\xf9\x8a\xab\xad\x92\xe6\xa5\x79\xa2\x48\x87\x90\x52\xd1\xb1\xfb\x01\xd6\x8c\x37\x3b\x8a\x63\xa3\xb1\xa3\x05\x21\xfe\x1d\x91\x05\xd1\x6c\x7d\xe4\xe3\x73\xeb\xfa\x6a\x2d\x30\x89\x5d\x5f\x82\x96\xaa\xf3\x93\x89\x70\x8e\x6a\x8a\x73\xb3\x15\x87\xbb\xec\x90\xd2\x30\x0c\x38\xb2\x88\xe3\x62\x57\xac\xa4\xef\x10\xcb\x0b\x17\x84\x2d\xac\x8e\xb8\x30\x28\x67\xdb\x34\x50\x1d\x9b\x57\x9d\xf7\xab\xc9\xda\x37\x6c\x0c\xbf\x79\x91\xff\x9e\xaa\x15\x76\x90\x16\x14\x16\x9e\x29\xac\x79\x4a\x94\x33\xbb\x77\x24\xd2\xe3\xbc\x29\x56\xaa\xda\xfd\xc8\x47\x3c\x96\xd2\xd8\xbd\x1f\x71\x9a\xea\xdb\xc3\x7f\x7c\x24\x00\x68\x1c\x5b\xd3\xfb\xe3\xfe\xcd\x1c\xcf\x7b\xee\x71\xaf\x3d\x39\x97\x8e\x6e\x9e\xf1\x37\xbb\x4f\x9f\x5f\x01\x00\x00\xff\xff\x7c\x03\x2f\x67\x21\x01\x00\x00" +var _stakingcollectionScriptsGet_locked_tokens_usedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xb1\x4e\xeb\x40\x10\x45\xfb\xfd\x8a\x5b\x26\xcd\xf3\x2b\x10\x85\x3b\xcb\x89\x51\x84\x95\x48\xd8\xf9\x80\xc5\x3b\x71\x56\x5e\xcf\x44\x3b\xbb\x4a\x10\xe2\xdf\x11\x0e\x88\x86\x7a\x34\xe7\x9c\xeb\xe7\x8b\xc4\x84\x26\xc8\xb5\x4b\x76\xf2\x3c\xd6\x12\x02\x0d\xc9\x0b\xe3\x14\x65\xc6\xff\x5b\xd7\x57\xcf\xbb\xfd\x53\x7d\x68\xdb\x6d\xdd\xef\x0e\xfb\x6a\xb3\x79\xd9\x76\x9d\x31\x45\x51\xa0\xa7\x10\x14\x67\xb9\x62\xb6\xfc\x86\x20\xc3\x44\x0e\x49\x26\x62\x45\x3a\x13\xec\x30\x48\xe6\x04\xaf\xc8\xea\x79\x5c\xbe\x1a\x89\x5f\xc7\x48\xd0\xbb\x16\xc3\xaf\x97\xc5\x91\xc2\xb2\x83\xa3\x40\xa3\x4d\x12\xd5\x98\x4b\x7e\xc5\x29\x33\x66\xeb\x79\xf5\x0d\x2d\x51\x39\x17\x49\x75\x5d\xe2\xd8\xf8\xdb\xe3\x03\xde\x0d\x00\x44\x4a\x39\xf2\xdf\xbb\xfe\x8d\x94\xda\x25\xb3\x5f\x2a\x8f\x4a\x6e\x65\xef\x9c\xf2\x27\x77\x6d\x3e\x3e\x03\x00\x00\xff\xff\x41\x5a\xaa\x77\x1c\x01\x00\x00" func stakingcollectionScriptsGet_locked_tokens_usedCdcBytes() ([]byte, error) { return bindataRead( @@ -5559,11 +5560,11 @@ func stakingcollectionScriptsGet_locked_tokens_usedCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_locked_tokens_used.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0xc, 0xfb, 0x97, 0x66, 0x4b, 0x65, 0x92, 0x16, 0xae, 0xa2, 0x40, 0x46, 0xe3, 0xed, 0x54, 0x24, 0x26, 0x91, 0x9f, 0x43, 0x2, 0x56, 0xb6, 0x5e, 0x20, 0x64, 0xb9, 0x16, 0xd4, 0x6a, 0xd9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x95, 0x64, 0xd6, 0xd9, 0x3e, 0x7a, 0xd9, 0x9b, 0xd, 0x68, 0xa4, 0x4d, 0xfc, 0x18, 0x9c, 0xb1, 0xfd, 0xa0, 0x6b, 0xb8, 0x7c, 0x92, 0x5c, 0xba, 0x8d, 0x99, 0x2, 0x61, 0xfd, 0x1d, 0x80, 0x25}} return a, nil } -var _stakingcollectionScriptsGet_machine_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xbb\x6a\xeb\x40\x10\x86\xfb\x7d\x8a\x1f\x37\x47\x82\x43\xd4\x0b\x4c\x30\x09\x09\x2e\x52\xb9\x0c\x29\x96\xd5\xac\x3c\x64\x35\x6b\x76\x46\xa4\x08\x7e\xf7\x60\x5d\x4c\x2e\xde\x72\xff\xdb\x37\x3c\x9c\x72\x31\x3c\xa5\xfc\x71\x30\xff\xce\xd2\x3f\xe4\x94\x28\x18\x67\x41\x2c\x79\xc0\xe6\xa6\xb6\x71\xae\x69\x1a\x3c\x93\x29\xec\x48\x18\x7c\x38\xb2\x10\x7c\x08\x79\x14\x83\xef\xba\x42\xaa\x88\xb9\xc0\x43\x4f\x14\x38\x72\x80\xe4\x8e\xa6\x20\x0b\xbc\xac\xee\x7f\x0a\x9d\x07\x10\xae\x0b\xce\xf9\x10\x48\xb5\xf2\x29\xd5\x88\xa3\x60\xf0\x2c\xd5\x12\x69\xb1\x9b\x17\xfe\x4f\x9d\xfb\xc7\x16\x07\x2b\x2c\x7d\x7d\x55\xee\xf1\xe9\x00\x20\x91\xad\x78\xbb\x39\xac\xd8\xde\xbe\xf8\xae\x27\x7b\xf9\x69\xad\x96\x4b\xda\x15\xb6\x76\x53\x2b\xc7\xa9\x78\xf9\xdc\x4b\xcc\xd8\xfe\x9e\x79\x9d\xd1\xde\x16\x90\xcb\x2b\x64\x63\x91\xef\xb1\xcb\xe6\x42\x5c\xd5\x93\xef\x0c\x4a\x4a\x7f\x43\xc2\x69\xd6\xdd\xd9\x7d\x05\x00\x00\xff\xff\x9e\xf8\xd0\x7c\xb8\x01\x00\x00" +var _stakingcollectionScriptsGet_machine_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcd\x4b\xc3\x30\x18\xc6\xef\xf9\x2b\x9e\x9b\x1b\x88\xf5\x5c\x18\x52\xda\x39\x8a\x73\x03\xbb\x9b\x78\x88\xe9\x9b\x2e\x98\xbe\x29\x49\x8a\x82\xec\x7f\x97\xf5\x63\xf8\x95\x63\xde\xe7\xe3\xf7\x98\xb6\x73\x3e\xe2\xde\xba\xf7\x2a\xca\x37\xc3\x4d\xee\xac\x25\x15\x8d\x63\x68\xef\x5a\xdc\x7e\x54\x87\xec\xa1\xdc\x6d\xf2\xfd\x76\xbb\xce\x0f\xe5\x7e\x97\x15\xc5\xd3\xba\xaa\x84\x48\x92\x04\x1b\x8a\x01\xf1\x48\x68\xa5\x3a\x1a\x26\x48\xa5\x5c\xcf\x11\xb2\xae\x3d\x85\x00\xed\x3c\x24\x42\x47\xca\x68\xa3\xc0\xae\xa6\xc1\x68\x18\x92\x67\xf5\x55\x40\x18\xfb\xa1\x2e\x00\x42\x74\xfd\x2b\x74\xcf\x68\xa5\xe1\xc5\x24\x4d\x91\x8d\xc9\xd7\x43\x56\x59\xa4\xa8\xa2\x37\xdc\x2c\x2f\x97\x3b\x7c\x0a\x00\xb0\x14\x67\xac\x6c\x34\x07\xac\xfe\x1f\x7b\xd3\x50\x7c\xfc\x29\x5d\x4c\x0b\xd2\x19\x72\x29\x86\x54\xa3\x87\xe0\xe9\xb3\x64\xed\xb0\xfa\x5d\xf3\x3c\xa2\xbd\x4c\x20\xe7\xe7\x29\xf6\x9e\xbf\xdb\xce\x9d\x13\xf1\x62\x39\xe8\x4e\x20\x1b\xe8\xaf\x89\x8d\x1d\xef\xe2\x24\xbe\x02\x00\x00\xff\xff\xa7\x4d\x0f\xa6\xb3\x01\x00\x00" func stakingcollectionScriptsGet_machine_account_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -5579,11 +5580,11 @@ func stakingcollectionScriptsGet_machine_account_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_machine_account_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0x37, 0x6c, 0xc0, 0xd6, 0xcf, 0x69, 0x48, 0xd, 0x1b, 0x78, 0xb0, 0x47, 0x86, 0x8c, 0x66, 0xc0, 0x20, 0x9d, 0x87, 0xc5, 0xac, 0x73, 0xe, 0xc2, 0xd4, 0xa, 0x90, 0x65, 0xf0, 0x84, 0xd5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf2, 0xe2, 0x5a, 0xfd, 0xd5, 0xcf, 0xe0, 0x54, 0xb4, 0x24, 0xa7, 0x6a, 0x67, 0x96, 0x5d, 0xe, 0xd0, 0x8c, 0xac, 0x28, 0x8b, 0x31, 0x26, 0x52, 0x22, 0xab, 0xc1, 0xed, 0xc8, 0xbb, 0x23, 0xb2}} return a, nil } -var _stakingcollectionScriptsGet_machine_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xb1\x6a\xc3\x40\x10\x44\xfb\xfb\x8a\xc1\x4d\xa4\x26\xea\xd5\x99\x40\x42\x8a\x54\xfe\x82\xe5\xb4\x27\x1f\xb9\xdb\x0d\xb7\x2b\x52\x18\xff\x7b\xc0\xa7\x04\x02\x76\x3d\xf3\x1e\x33\xb9\x7e\x69\x73\xbc\x16\xfd\x3e\x39\x7d\x66\x59\x5f\xb4\x14\x8e\x9e\x55\x90\x9a\x56\x1c\xee\x66\x87\x10\xa6\x69\xc2\x1b\xbb\x81\x4a\x81\x9f\x19\x95\xe2\x39\x0b\x83\x62\xd4\x4d\x1c\xb4\x2c\x8d\xcd\xd8\x90\xb4\x41\x74\x61\xbb\x41\x59\x6e\xf5\xbd\xf6\x64\xb0\x6e\x47\xfc\xd3\x87\x40\x31\xb2\xd9\x40\xa5\x8c\x48\x9b\xa0\x52\x96\x61\x47\x66\x1c\xbb\x7a\x9c\x71\x39\x79\xcb\xb2\xce\xf7\x2f\x3c\x7f\xf4\x4d\xc7\x0e\xbe\x4b\xd2\x2b\x2e\x01\x00\x1a\xfb\xd6\xe4\x01\xb6\xb2\xff\x27\x6d\xd8\xdf\xcc\xbf\xbb\xc7\x70\x0d\x3f\x01\x00\x00\xff\xff\x0c\xe4\x1e\xac\x3e\x01\x00\x00" +var _stakingcollectionScriptsGet_machine_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xc1\x4a\xc3\x40\x10\x86\xef\xfb\x14\xff\xcd\xf6\x62\x3c\xe7\x16\xd2\x5a\x82\xb5\x05\xb7\x2f\xb0\x6e\x26\xe9\xe2\x66\xa6\xec\x4e\x50\x28\x7d\x77\x21\x89\x82\x60\xef\xdf\x37\xff\x37\x61\xb8\x48\x52\x3c\x47\xf9\xb4\xea\x3e\x02\xf7\xb5\xc4\x48\x5e\x83\x30\xba\x24\x03\x9e\xbe\xec\xa9\x7a\x69\x0e\xbb\xfa\xb8\xdf\x6f\xeb\x53\x73\x3c\x54\x9b\xcd\xdb\xd6\x5a\x63\x8a\xa2\xc0\x8e\x34\xc3\xc5\x08\x3d\x13\x06\xe7\xcf\x81\x09\xce\x7b\x19\x59\xe1\xda\x36\x51\xce\x94\xd1\x49\x02\x4b\x4b\x79\x92\x02\x4f\xf8\x82\x3d\x64\xe4\x79\x1c\xfe\x77\xdd\x98\xcb\xf8\x8e\x6e\x64\x0c\x2e\xf0\x6a\x41\x4b\x54\xf3\xc9\x75\x89\xab\xd5\x14\xb8\x2f\xff\xaf\x7f\x7c\x9d\x5b\xaa\x59\x6c\xb8\x93\x1b\xae\x06\x00\x12\xe9\x98\xf8\x8e\xd6\x93\xfe\x35\xf3\x6a\xf9\xa2\xfc\xe9\x5d\x9b\x9b\xf9\x0e\x00\x00\xff\xff\xc1\x21\xcf\x72\x39\x01\x00\x00" func stakingcollectionScriptsGet_machine_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -5599,11 +5600,11 @@ func stakingcollectionScriptsGet_machine_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_machine_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4d, 0xfe, 0x63, 0x34, 0x4a, 0x68, 0xf3, 0x2f, 0xff, 0x43, 0xd0, 0xd2, 0xc7, 0x57, 0x2b, 0x2b, 0x9c, 0x1a, 0xd4, 0x96, 0xa0, 0x2e, 0xd8, 0x3a, 0x13, 0x78, 0x34, 0xf8, 0x39, 0x65, 0x45, 0x91}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x7e, 0x24, 0x2d, 0xfc, 0x9e, 0xeb, 0x56, 0x2a, 0x77, 0x86, 0x83, 0xb6, 0xdd, 0x2a, 0x61, 0xfc, 0xa2, 0xb2, 0x49, 0x23, 0x61, 0x2f, 0xed, 0xb3, 0x78, 0xf4, 0xa1, 0x25, 0x5d, 0x4e, 0x40}} return a, nil } -var _stakingcollectionScriptsGet_node_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\xc4\x40\x10\x85\xfb\xfd\x15\x8f\xab\x2e\x8d\xe9\xaf\x13\x0f\x21\x8d\x85\x29\xc5\x62\xd8\x9d\xc4\xc5\xcd\x8c\xcc\x4c\x10\x11\xff\xbb\x90\x88\xd7\xa4\xfb\x78\x0f\xbe\xf7\xea\xf2\xa1\x16\x78\x6c\xfa\x39\x06\xbd\x57\x99\x1f\xb4\x35\xce\x51\x55\x30\x99\x2e\x38\x1d\x76\xa7\x94\xfa\xbe\xc7\x33\xc7\x6a\xe2\x20\x01\x99\xd1\x17\x74\x02\xb5\x86\x78\x63\x88\x16\xc6\x70\x75\x78\xa8\x71\x41\x95\x2d\xf6\x5d\x85\xfc\xef\x4a\x89\x72\x66\xf7\x33\xb5\xd6\x61\x5a\x05\x0b\x55\x39\x53\x29\xc6\xee\x17\xdc\xef\xd0\x5d\xf0\x32\x86\x55\x99\x5f\xf1\x9d\x00\xc0\xb6\xf5\xe3\xf3\x77\x33\xc7\x93\x16\x1e\xae\x7e\x33\xfd\x41\x97\x7e\x7e\x03\x00\x00\xff\xff\x44\x15\x32\xea\xf8\x00\x00\x00" +var _stakingcollectionScriptsGet_node_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4e\xc3\x30\x10\xc6\xf1\xdd\x4f\xf1\x8d\x74\x21\xcc\xdd\xa2\xa4\x20\x8b\x2a\x95\xea\x6e\x88\xc1\xd4\x97\x60\xe1\xdc\x55\xe7\x8b\x00\x21\xde\x1d\xa9\x45\xb0\x74\xfb\xeb\x86\xfb\x7d\x79\x3e\x89\x1a\xee\x8b\xbc\x07\x8b\x6f\x99\xa7\x4e\x4a\xa1\xa3\x65\x61\x8c\x2a\x33\xee\x3e\xc2\xa1\x7d\xf4\xc3\x43\xb7\xdb\x6e\x37\xdd\xc1\xef\x86\xb6\xef\xf7\x9b\x10\x9c\x6b\x9a\x06\x7b\xb2\x45\xb9\x22\x32\xa2\x6a\xfc\x84\x8c\x88\xa5\xc0\x5e\x09\x2c\x89\xe0\xfb\x8a\x6a\xa2\x94\x90\xf9\x7c\xae\x17\x09\xc7\x3f\xca\xb9\xd3\xf2\x82\x71\x61\xcc\x31\xf3\x4d\x4c\x49\xa9\xd6\x35\xda\x4b\xac\xd6\x78\x0a\xa6\x99\xa7\x67\x7c\x39\x00\xd0\xb3\x7a\x7d\xf7\xed\x44\x36\x48\x22\xdf\xd7\xff\x4f\xbf\xb1\x72\xdf\x3f\x01\x00\x00\xff\xff\xbd\x92\x43\x50\xf3\x00\x00\x00" func stakingcollectionScriptsGet_node_idsCdcBytes() ([]byte, error) { return bindataRead( @@ -5619,11 +5620,11 @@ func stakingcollectionScriptsGet_node_idsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_node_ids.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0xee, 0x46, 0xe2, 0xae, 0x7, 0xfa, 0x85, 0xe4, 0x58, 0x3f, 0xf4, 0xc3, 0x68, 0x7, 0xe9, 0x24, 0x83, 0xe2, 0x7, 0x84, 0x8a, 0x19, 0x96, 0xe7, 0x17, 0x22, 0xf9, 0x37, 0x5e, 0x4c, 0xf9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x45, 0x32, 0xd2, 0x69, 0x44, 0xf5, 0xdc, 0xe6, 0x20, 0x93, 0x64, 0x24, 0xd0, 0x77, 0xfa, 0x5b, 0x23, 0x71, 0x4c, 0x54, 0xc7, 0x7e, 0x17, 0xf8, 0x10, 0x5a, 0x81, 0xa7, 0xe0, 0x50, 0x54, 0x12}} return a, nil } -var _stakingcollectionScriptsGet_unlocked_tokens_usedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x31\x6e\xc3\x30\x0c\x45\x77\x9d\xe2\x23\x93\xbd\xd4\x4b\xd1\xc1\x5b\x51\xc0\x17\x68\x7c\x00\x41\x62\x1c\xc1\x34\x59\x88\x14\xd2\xa2\xe8\xdd\x8b\x26\x29\xb2\x78\x7e\xe0\xe3\xfb\x65\xfb\xd0\xea\x98\x58\x2f\xef\x1e\xd7\x22\xcb\x9b\x32\x53\xf2\xa2\x82\x53\xd5\x0d\x87\x5d\x76\x08\x61\x18\x06\x1c\x89\xd9\x70\xd6\x0b\xb6\x28\x5f\x68\xc2\x9a\x56\xca\x70\x5d\x49\x0c\x7e\x26\xc4\x94\xb4\x89\xa3\x18\x9a\x15\x59\xae\x77\x93\xd6\x3f\x58\x09\x76\x33\x23\x3d\xde\x8a\x66\x32\x44\xc9\xc8\xc4\xb4\x44\xd7\x6a\x21\xc4\x94\xc8\xac\x8b\xcc\x3d\x4e\x4d\xb0\xc5\x22\xdd\x5d\x3e\xe2\x35\xe7\x4a\x66\xfd\x88\x79\x2a\x9f\x2f\xcf\xf8\x0e\x00\x50\xc9\x5b\x95\xfd\x79\x4f\x0b\xf9\x7c\x0f\x3e\x5e\x7b\x67\xa3\xdc\xc5\x9b\x69\xfc\x0f\xef\xc3\x4f\xf8\x0d\x00\x00\xff\xff\x31\xdc\x37\x2c\x26\x01\x00\x00" +var _stakingcollectionScriptsGet_unlocked_tokens_usedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4e\xc2\x40\x10\x86\xef\xfb\x14\xff\x11\x2e\xd6\x83\xf1\xd0\x5b\x53\xa8\x21\x12\x48\x6c\xfb\x00\x6b\x77\x28\x9b\x6e\x67\xc8\xce\x6e\xc0\x18\xdf\xdd\x08\x18\x2f\x9e\x27\xf3\x7d\xdf\xef\xe7\x93\xc4\x84\x26\xc8\xb9\x4d\x76\xf2\x3c\xd6\x12\x02\x0d\xc9\x0b\xe3\x10\x65\xc6\xe3\xa5\xed\xaa\xd7\xcd\xee\xa5\xde\x6f\xb7\xeb\xba\xdb\xec\x77\xd5\x6a\xf5\xb6\x6e\x5b\x63\x8a\xa2\x40\x47\x21\x28\x8e\x72\xc6\x6c\xf9\x03\x99\x83\x0c\x13\x39\x24\x99\x88\x15\xe9\x48\xb0\xc3\x20\x99\x13\xbc\x22\xab\xe7\xf1\xfa\xd7\x48\xfc\x39\x46\x82\xde\xc4\x18\xfe\xcc\x2c\x8e\x14\x96\x1d\x1c\x05\x1a\x6d\x92\xa8\xc6\x9c\xf2\x3b\x0e\x99\x31\x5b\xcf\x8b\x3b\xb4\x44\xe5\x5c\x24\xd5\x65\x89\xbe\xf1\x97\xe7\x27\x7c\x1a\x00\x88\x94\x72\xe4\xff\x97\x3d\x8c\x94\xfa\x7b\x68\x77\xed\xec\x95\xdc\xc2\xde\x48\xe5\x6f\xf0\xd2\x7c\x99\xef\x00\x00\x00\xff\xff\xd2\x00\x11\x86\x21\x01\x00\x00" func stakingcollectionScriptsGet_unlocked_tokens_usedCdcBytes() ([]byte, error) { return bindataRead( @@ -5639,11 +5640,11 @@ func stakingcollectionScriptsGet_unlocked_tokens_usedCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_unlocked_tokens_used.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x6b, 0x4a, 0x39, 0xdc, 0x90, 0x32, 0xaf, 0x58, 0x89, 0x48, 0x1d, 0x77, 0x1, 0x5, 0x8f, 0xe8, 0xf2, 0xc2, 0x68, 0xf, 0x44, 0xda, 0x36, 0x67, 0x13, 0x46, 0xf, 0x2a, 0x1c, 0x6d, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb7, 0x3a, 0xad, 0x80, 0x59, 0x47, 0x6f, 0xc6, 0x0, 0x50, 0xc4, 0xed, 0x7, 0xec, 0xe7, 0xdd, 0xdc, 0x0, 0x1b, 0x20, 0x27, 0x43, 0x2f, 0xda, 0x7c, 0x27, 0xb6, 0x99, 0x7a, 0x72, 0x66, 0x46}} return a, nil } -var _stakingcollectionSetup_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xdf\x4f\xfb\x36\x10\x7f\xcf\x5f\x71\xf4\x81\x25\x52\x9b\xbe\x57\x85\xef\xb6\x7e\x35\x0d\x69\x1a\x68\x20\xf6\x7c\x4d\x2e\x8d\x57\x63\x47\xb6\xd3\x08\x21\xfe\xf7\xc9\xce\x4f\x37\x29\x74\x30\x0d\x69\x7e\x20\xd4\xbe\x5f\x9f\xfb\xf8\xce\xc7\x9e\x0a\xa9\x0c\xfc\x52\x8a\x1d\xdb\x72\x7a\x90\x7b\x12\x90\x29\xf9\x04\x33\x6f\x6f\x16\xb4\x92\x5c\x56\x9e\x54\xfb\xdb\x93\xb8\xf9\xfe\x80\x5b\x4e\xf7\x06\xf7\x4c\xec\x06\xa2\xfe\x41\xa7\xf3\x9b\x4c\xf6\x94\x3a\x3b\xba\x91\x1e\x6e\x79\xb6\x1b\xdd\x8d\xe4\x9c\x12\xc3\xe4\x30\x92\xd1\xd9\x2c\x08\x96\xcb\x25\x3c\xe4\x4c\x83\x51\x28\x34\xd6\x2a\x9a\x8c\x86\xb2\x00\x14\x80\x49\x22\x4b\x61\xc0\x48\x28\x35\x01\x82\x6e\xa2\x4e\x3a\x2b\xce\xc6\x8d\x81\x8a\x71\x0e\x95\x54\x7b\x50\xb4\x43\x95\x72\xd2\x1a\x64\x06\x55\x4e\x26\x27\x05\x26\xa7\x67\xc8\xf1\x60\xad\x28\xda\x95\x1c\x55\x6b\x7e\x0e\x08\xa6\x92\x8b\xd6\x1b\x77\xf0\xc0\xd4\x90\x35\x99\xb2\x98\x3b\x37\x52\x75\x01\xc8\xed\x5f\x94\x18\x0d\xda\x48\x45\x29\x30\x61\x1d\x40\x29\x1a\xdd\xc6\x54\x10\x0c\x81\xbd\x04\x00\x00\x85\xa2\x02\x15\x85\x9a\xed\x04\xa9\x15\x60\x69\xf2\xf0\x67\xa9\x94\xac\x1e\x91\x97\x34\x87\x7b\x23\x15\xee\x68\x0e\x1b\x2c\x70\xcb\x38\x33\x8c\x74\x04\x97\x3f\xd5\x46\x23\x78\x09\x9c\x25\xbb\x2c\xf8\xcc\xfa\x56\x04\x4c\x8b\x1f\x0c\x20\x57\x84\xe9\xf3\x74\xb2\x5a\x35\x96\x41\xed\x3f\xd6\xb5\xb3\x78\xeb\x22\x58\x5f\x4e\x52\x15\x8f\x76\xae\x43\xcb\xec\x6a\x9a\xf5\xb1\x78\x03\xe9\x0e\x4d\x1e\xc1\xd5\x15\x08\xc6\x87\x28\x1a\x24\x1b\x45\x68\x08\x0a\xc5\x0e\xf6\x9b\x0c\xe0\x43\x26\x1d\x87\x35\x2b\x90\x4b\x9e\x92\x02\x14\x69\x9f\xf3\x03\x96\xdc\x78\x26\x39\xb5\x64\xfe\x5a\xcb\x5f\xb5\xa8\x87\xa6\xbb\x14\x30\xad\x4b\x5a\x3b\x3e\xbc\x02\x8b\xff\x64\x26\x4f\x15\x56\x73\xaf\x18\x62\xf7\xb9\x2d\x48\xa1\x85\x68\x19\x1a\x1f\xd7\x8e\xaf\xc3\x53\x27\xc3\xc4\x5c\x8c\x82\xcf\xba\x8a\xfe\x64\xe4\x11\x5c\x76\xdd\x20\x7e\xb4\x89\xba\x0e\x97\x8d\xf6\xb2\xf3\xe2\x0e\xa2\x8b\x53\xbc\x20\x08\xaa\xa0\x6d\x1c\x83\x22\xb7\x34\x14\xa5\x01\x66\x6c\x21\x34\x66\x3d\x23\x2c\xf3\x88\x88\x93\x9c\x92\x7d\x18\x35\x25\x31\x5c\x47\xd7\x52\xe3\x81\xc2\x91\x90\x5d\xeb\xc5\x89\xcb\x97\xb8\x68\x47\xfb\xd3\x56\xec\x6a\x6f\x90\x83\xbf\xea\x93\x3e\x3f\xa9\x61\x7a\x02\x57\x1e\xb0\x49\x8d\x68\xda\x90\x91\x1f\x29\x9f\x91\xa9\xc8\xdb\x79\x05\xe2\x9a\xfe\x17\x79\x15\x8c\x7f\x7d\x3a\x47\xb5\x70\x57\x6e\x39\xd3\x39\x60\xdf\x9e\x9e\xed\xfb\x64\x7b\x53\x9d\xa1\x74\xa2\xf1\xc6\xa3\xd2\xd6\xc7\x41\x6d\xb0\x38\xab\xca\xcf\xef\xd0\x23\x6c\x9f\x4c\x4f\xe4\x27\x63\x2a\xd4\xa2\xce\xce\xd8\xf5\x14\xdc\x31\x8f\x68\xce\xe6\xd0\xf1\x90\x4c\xc4\x38\x41\xdd\x72\x09\xf5\xf3\xe6\xde\xfe\x8c\x14\x89\x84\x5a\xd2\xde\x78\x25\x2d\x4f\xfd\xf6\x1f\x94\xf5\x04\xfd\xf7\xcf\xa6\x07\xf3\xdb\x37\x28\x50\xb0\x24\x9c\x6d\x64\xc9\x53\x10\xd2\xb4\x10\xc7\x78\x7a\xcc\xb3\xe8\xd4\xe4\x60\x9b\xbb\x4c\xeb\x6c\x90\x6a\xc6\x9b\x76\xac\xe9\xe6\xa4\xbe\xc9\xbf\x93\xb9\xb7\xe7\x0b\x7f\xd2\x8c\x7f\x97\xa9\xfb\xdf\xbe\x93\x7d\x7a\x4e\x0a\x79\xb3\xc4\x45\x3b\x4b\x1c\xd7\x97\x43\xb3\x5e\x1c\x87\xc1\x25\xa6\xeb\x1f\xff\xdd\x20\xfc\x77\xdb\xbb\x30\x31\xa6\xa9\x55\xba\x75\xf9\x0c\xd7\x0b\x1b\xd6\x1c\x9e\x30\xc9\x99\xa0\x66\xa0\xbb\x11\x99\x74\xed\xee\xd4\xe5\xf5\x79\x4a\x89\xd3\x0e\x8d\xfc\x02\x96\xbe\xb7\xae\xdf\xc8\x51\x27\x73\x1e\x4f\x3d\x9a\x7f\x48\xd6\x87\x63\x79\x87\xae\x4e\xa7\xe3\xac\x0b\x71\xc8\x4f\xfd\xf7\x35\xf8\x3b\x00\x00\xff\xff\x2f\x57\xf5\xcc\xa6\x0d\x00\x00" +var _stakingcollectionSetup_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\x4b\x6f\xea\x46\x14\xde\xf3\x2b\xce\xbd\x8b\x5b\x23\xf1\xe8\x1a\x91\xdc\x12\x20\xa9\x15\x04\x51\x70\x5b\x75\x39\xd8\xc7\xf6\x94\xc9\x8c\x35\x33\x86\x46\x11\xff\xbd\x1a\xdb\xe3\x07\xe0\x84\x44\x51\xca\x22\x44\xf6\x79\x7c\xdf\x77\x5e\xd0\xa7\x44\x48\x0d\xb7\x29\x8f\xe8\x86\xa1\x27\xb6\xc8\x21\x94\xe2\x09\x7e\xfd\xf7\xf6\x8f\xe5\x9d\x7b\xb3\x98\x7b\xab\xfb\xf9\x72\x32\x9b\x3d\xce\xd7\xeb\x8e\x75\x60\x62\xdf\x34\x5e\xac\xfe\x6a\x33\x74\x67\x1e\xd9\x30\x5c\x6b\xb2\xa5\x3c\xb2\x1e\xee\x6c\xbe\xf4\x5c\xef\x6f\x6f\x72\xb3\x98\x1f\x79\x2d\x84\xbf\xc5\x20\x4b\xa0\xac\xfd\x62\x35\xbd\x9f\xcf\xda\x72\x14\xc1\xa7\x82\x31\xf4\x35\x15\x25\xb0\xb5\x37\xb9\x77\x97\x77\xd3\xd5\x62\x31\x9f\x7a\xee\xaa\x74\xee\x0c\x87\x43\xf0\x62\xaa\x40\x4b\xc2\x15\xc9\xbd\x14\x6a\x05\x69\x02\x84\x03\xf1\x7d\x91\x72\x0d\x5a\x40\xaa\x10\x08\xa8\x82\x80\x5f\x26\xc9\x62\xb8\x1a\xf6\x94\x31\xd8\x0b\xb9\x05\x89\x11\x91\x01\x43\xa5\x40\x84\xb0\x8f\x51\xc7\x28\x41\xc7\xf8\x0c\x31\xd9\x99\x28\x12\xa3\x94\x11\x69\xc3\xf7\x80\x80\xde\x8b\xbe\xcd\xc6\x32\xea\xa0\x73\xee\x0a\x75\x9a\xf4\xb2\x34\x42\x96\x00\xc4\xe6\x1f\xf4\xb5\x02\xa5\x85\xc4\x00\x28\x37\x09\x20\xe5\x85\x6f\x11\xaa\xd3\xa9\x13\x7b\xe9\x00\x00\x24\x12\x13\x22\xd1\x51\x34\xe2\x28\x47\x30\x49\x75\x3c\xc9\xcd\xbb\xf0\xd2\xc9\x6c\xcc\xc7\xd0\x0a\x4d\x54\x89\x40\x15\xff\x45\x03\x61\x12\x49\xf0\x7c\x5e\x06\xeb\x46\x43\xc8\x23\x0f\x36\x42\x4a\xb1\x1f\xff\x38\x5b\x9b\xc1\xc9\x93\x6b\xc7\x94\x6b\x74\xbe\x94\xa7\xe6\x6b\x2d\x24\x89\xf0\x81\xe8\xb8\x0b\x57\x57\xc0\x29\xab\xa3\x2f\x18\x4c\x25\x12\x8d\x90\x48\xba\x33\xdf\x3e\x49\xc8\x86\x32\xaa\x29\x2a\x08\x45\x56\x95\x5c\x67\x88\x05\x0b\x50\x02\xe1\x41\xa5\xe2\x8e\xa4\x4c\x37\x42\x32\xb4\xe5\xf9\x3d\xb7\xbf\xb2\x6c\x19\xe5\xdb\xf1\x8f\x7a\xd7\x0e\xb2\xaf\xdc\xee\xda\x19\x16\x18\x86\xa1\x9d\x9b\xfc\x4d\x0f\x34\x91\x11\xea\x11\xb4\xf9\xd6\x99\x7e\x3b\x41\x53\x86\x3b\x86\x52\xce\xe7\xe0\x4f\x43\xe3\x1c\x82\xec\x45\x05\x60\xa8\xf2\x4c\x47\x06\x47\x49\x5b\x24\x26\xc0\x71\x0f\x76\xc0\x6b\x43\x68\x14\x4d\x52\x0d\x54\x9b\x2e\x2d\x52\x34\x82\xd0\xb0\xa1\xe9\xc0\x8f\xd1\xdf\x3a\xdd\xa2\x5f\xeb\x9f\x82\xa0\x22\x3b\x74\xc6\xfd\xf3\x9d\xe2\x67\x78\x4e\x9e\x3b\xb6\xaa\x19\xa7\x51\xa5\x5b\x2f\x6f\x80\x3c\xf7\xa8\x81\xa4\x6b\xde\x7d\xa8\x23\x1b\xc8\x0f\x80\x4c\xe1\xff\x43\x87\x53\xf6\x59\x2c\xda\x86\x8b\x40\x92\x6e\x18\xf5\xc1\xf4\x9d\x59\x95\x66\xa8\x5e\xd9\x10\x35\xe6\x55\xa7\x5e\x80\xec\xe5\x42\xbb\x87\x0c\xcd\xe1\xda\x39\xd1\xfb\x5d\x01\x8c\x02\xbd\x93\x10\x76\x56\xde\xaf\x66\x23\x54\x25\xed\xa1\xb1\x71\xf3\x9d\x99\x9d\x88\x10\x25\x72\x1f\x2f\x10\xd4\xac\x81\xea\xf1\x23\x86\xd5\x2a\xf8\xba\x1d\xdc\xa0\xf7\xf3\x27\x24\x84\x53\xdf\xf9\x3e\x15\x29\x0b\x80\x0b\x6d\xa9\x9d\xf2\xa8\xb8\x7e\xef\xb6\x9d\x1f\xb3\x5e\x44\x90\xab\x80\xb2\xb8\x7e\xf6\xea\x95\x67\xb4\x5a\x33\x6f\x28\x76\xfe\x48\x35\x7f\xa4\x0c\x96\x22\xc8\xfe\x37\xdb\xbb\x92\xa5\xd5\xa8\x71\x90\xbe\xd9\x83\x54\x57\xc5\xd4\x29\x63\x31\xee\x97\x03\x20\x48\x30\xfe\xed\x73\x93\x37\xd7\x75\xa3\x31\x06\x24\x08\x8c\xd3\x2a\xd3\xcf\x19\xf7\x0d\x9c\x1e\x3c\x11\x3f\xa6\x1c\x8b\x5f\x01\x2e\x0f\x45\xbe\x38\x5a\x9a\xb4\x59\x97\x00\x19\x46\x44\x8b\x2f\xac\xca\xcc\xa6\x7c\x45\x9b\xd2\xe6\xb2\xba\x54\x2c\x2e\x2c\xce\x87\x31\xbc\x51\x9e\xd2\xa7\xac\x51\x09\xad\x5e\x8f\xfc\xef\xa1\xf3\x5f\x00\x00\x00\xff\xff\x6b\x24\xa3\x92\xbe\x0b\x00\x00" func stakingcollectionSetup_staking_collectionCdcBytes() ([]byte, error) { return bindataRead( @@ -5659,11 +5660,11 @@ func stakingcollectionSetup_staking_collectionCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/setup_staking_collection.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc6, 0x8f, 0xd5, 0x44, 0x8b, 0x79, 0x97, 0x70, 0x5e, 0x2a, 0xd, 0xcd, 0x70, 0xb3, 0x50, 0xdb, 0x48, 0xaa, 0x31, 0xa6, 0xeb, 0xb3, 0x2, 0xb6, 0xeb, 0xdf, 0xee, 0xac, 0xe2, 0x1e, 0xd1, 0x58}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0x41, 0x87, 0x59, 0x87, 0x7c, 0xcb, 0xe9, 0xdd, 0x3a, 0x84, 0x4, 0xfe, 0x2e, 0xda, 0x72, 0xc3, 0xab, 0x10, 0xa9, 0x54, 0x90, 0x37, 0x82, 0x32, 0xfa, 0xb3, 0x41, 0xf, 0x73, 0x5a, 0xe8}} return a, nil } -var _stakingcollectionStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6f\xdb\x30\x0c\x85\xef\xfe\x15\x0f\x39\x74\x09\x10\x24\xc0\x36\xec\x10\x6c\x0b\xb6\x0c\x05\x7a\xd9\x86\xa5\xdd\x5d\xb5\xe9\x44\x88\x2c\x1a\x14\x3d\xa7\x18\xfa\xdf\x07\x49\x75\x52\x34\x3e\xec\x52\x1d\x2c\x9b\xa2\x1f\x1f\xa9\xcf\x36\x2d\x8b\xe2\xda\x71\xbf\x55\x73\xb0\x7e\xb7\x61\xe7\xa8\x54\xcb\x1e\xb5\x70\x83\xc9\xe8\xd9\xa4\x28\x96\xcb\x25\x36\xdc\x34\x56\x03\x3c\xf5\x50\x3e\x90\x0f\x50\x46\x50\x73\x20\xd4\x2c\xd0\x3d\x21\xb4\x54\xda\xda\x52\x05\xcf\x15\x81\x05\x15\x39\xda\x19\x65\x81\xf5\x39\x25\xcb\xa3\x3c\xe9\x27\xf5\xdb\x3d\x0d\xaa\xc9\x4a\x4c\x75\x5c\x1e\xa8\xc2\x1f\xd3\x39\x85\x11\x42\x17\xa8\x42\x6d\x25\xe8\x1c\xb6\x86\x55\xd0\xd1\x06\x0d\x49\xa1\x66\xe7\xb8\xa7\x0a\xf7\x0f\xe9\xef\x97\x6a\x9d\x7f\xae\x57\x14\x2a\xc6\x07\x93\x1c\x4c\xa3\xdb\x9b\x6f\x2b\x6c\x55\xac\xdf\xcd\xcf\xae\x63\xf0\xee\xc6\xeb\xbb\xb7\xeb\x39\x4c\xc3\x9d\xd7\x15\xee\xae\xed\xf1\xc3\xfb\x19\xfe\x16\x00\x90\x1e\x8e\x74\xe8\xec\x3c\xb8\x5f\x54\xaf\x60\x3a\xdd\x4f\x47\xe7\xba\x38\xbf\xfe\xe8\x3d\xc9\x0c\x57\xe3\x79\x17\x91\x22\xd5\x6c\x85\x5a\x23\x34\x35\x65\x99\x7d\xa5\x52\x5f\x59\x84\xfb\xdf\xc6\x75\x34\xc3\xd5\x97\x7c\x36\x78\x8d\x2b\x90\xab\x17\x63\x5e\xf1\x09\x4f\x52\x8b\xa0\x2c\x66\x47\x8b\xfb\x24\xf6\xf1\x35\x7a\xf8\x3c\x8d\x37\xb3\x1a\xc7\xf1\x32\x7d\x9b\x1d\xfd\x34\xba\x9f\x9d\x5a\x89\x6b\xbd\x46\x6b\xbc\x2d\xa7\x93\x0d\x77\x2e\x82\xa7\xc8\xb6\x61\x20\x54\x93\x90\x2f\x23\x0d\x30\xb8\xc4\xfe\x09\xca\x56\x6c\x63\xe4\x21\x02\x26\x6f\xc2\x30\x86\x49\xae\xf4\x98\xc7\x4d\x47\x2a\x3b\xa5\xff\x99\x64\x0a\xd2\x77\xea\x6f\x13\x83\x27\xbc\xf2\xfe\x02\xaf\x67\x1f\x67\xc4\xf2\x3e\xd4\x7f\x2c\xfe\x05\x00\x00\xff\xff\x19\x9a\x91\xbf\xbc\x03\x00\x00" +var _stakingcollectionStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xc1\x6a\x1b\x31\x10\x86\xef\xfb\x14\x3f\x39\x14\x07\x8c\x5d\xda\xd2\x83\x69\x6b\xcc\x3a\x29\xa6\xc1\x29\x59\xe7\x01\x94\xdd\x91\x2d\xac\xd5\x2c\xd2\x6c\xd7\xa5\xe4\xdd\xcb\x4a\x59\x3b\xc4\x3e\x44\x07\x09\x0d\xa3\xef\xff\x35\x33\xa6\x6e\xd8\x0b\x6e\x2d\x77\x85\xa8\xbd\x71\xdb\x9c\xad\xa5\x52\x0c\x3b\x68\xcf\x35\x3e\x1e\x8a\xcd\xe2\xd7\x6a\xfd\x33\xbf\xbf\xbb\xbb\xc9\x37\xab\xfb\xf5\x62\xb9\x7c\xb8\x29\x8a\x2c\x9b\x4e\xa7\xc8\xb9\xae\x8d\x04\x38\xea\x20\xbc\x27\x17\x20\x8c\x20\x6a\x4f\xd0\xec\x21\x3b\x42\x68\xa8\x34\xda\x50\x05\xc7\x15\x81\x3d\x2a\xb2\xb4\x55\xc2\x1e\xc6\xa5\x94\xa4\x8e\xf2\x28\x1f\xe9\x9b\x1d\x0d\xd4\xe8\xa6\x4f\xb5\x5c\xee\xa9\xc2\x1f\xd5\x5a\x81\xf2\x84\x36\x50\x05\x6d\x7c\x90\x31\x8c\x86\x11\xd0\xc1\x04\x09\x91\xa0\xd9\x5a\xee\xa8\xc2\xd3\xdf\xf8\xfa\x2d\xad\x75\xaf\x79\x59\x26\x5e\xb9\xa0\xa2\x83\x51\xef\x76\xb5\x9c\xa1\x10\x6f\xdc\x76\x7c\x72\xdd\x07\x1f\x57\x4e\x3e\x7f\x9a\x8f\xa1\x6a\x6e\x9d\xcc\xf0\x78\x6b\x0e\x5f\xbf\x5c\xe3\x5f\x06\x00\x71\xb3\x24\xc3\xcf\x4e\x75\x7d\x20\x3d\xc3\x87\x8b\x25\x9f\x9c\x45\xb2\xc8\x69\x3c\x35\xca\xd3\x48\x95\x65\xd2\x5a\xb4\xb2\x5b\xa4\xcb\x20\xd8\xaf\x40\x56\x4f\x2e\x09\xe2\x3b\x5e\xde\x4e\x9e\xd8\x7b\xee\xbe\xbd\xd7\xc0\x8f\x51\x5f\xaa\xd9\xe5\x11\x39\x4f\x2f\x84\xbd\xda\xd2\x6f\x25\xbb\xeb\xa3\xad\x7e\xcd\xe7\x68\x94\x33\xe5\xe8\x2a\xe7\xd6\xf6\x93\x20\x48\x56\xe0\x49\xf7\x33\x73\xc6\xba\x4a\x84\xe7\x54\x03\x3a\x50\xd9\x0a\xbd\xe7\xb7\x31\x48\x6b\xea\x36\xb1\xd9\xc7\x3e\xa6\xf3\x4d\x1f\x5f\x5d\x4e\xbd\x4c\xe7\xa0\xff\x9c\xfd\x0f\x00\x00\xff\xff\xec\x54\xa2\x45\x28\x03\x00\x00" func stakingcollectionStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5679,11 +5680,11 @@ func stakingcollectionStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x9a, 0xc7, 0x41, 0xbc, 0xe4, 0x74, 0x85, 0x15, 0x98, 0x99, 0xf, 0x7e, 0xfb, 0xc8, 0x6a, 0x9e, 0x96, 0x5b, 0xb6, 0x66, 0x12, 0x17, 0x77, 0x7b, 0xc3, 0x9e, 0x10, 0x6e, 0xc6, 0xe5, 0x3e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd, 0x83, 0x37, 0x9f, 0xaa, 0xc4, 0x87, 0xda, 0x7e, 0xaf, 0x41, 0x49, 0xd3, 0xe, 0xac, 0xd, 0xa9, 0xb8, 0x16, 0xce, 0xbc, 0x57, 0xa0, 0x71, 0x8c, 0xf3, 0x87, 0x9c, 0x2e, 0xdc, 0x1e, 0x31}} return a, nil } -var _stakingcollectionStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x8f\xd3\x30\x10\x85\xef\xf9\x15\x4f\x3d\x2c\xa9\xb4\x6a\x25\x40\x1c\x2a\xa0\x82\xa2\x95\xf6\x04\xda\xb2\xdc\x07\x67\xd2\x5a\x75\x3c\xd1\x78\xa2\x2e\x42\xfb\xdf\x51\xe2\xb6\x41\x34\x07\x2e\xeb\x43\x1c\x8f\xc7\xf3\xde\x8c\x3e\xdf\xb4\xa2\x86\xbb\x20\xc7\xad\xd1\xc1\xc7\xdd\x46\x42\x60\x67\x5e\x22\x6a\x95\x06\xb3\xc9\xbb\x59\x51\x2c\x97\x4b\x6c\xa4\x69\xbc\x25\x28\x1f\x49\x2b\xae\x60\x72\xe0\x98\x60\x82\x64\x74\x60\xd4\xa2\xb0\x3d\x23\xb5\xec\x7c\xed\xb9\x42\x94\x8a\x21\x8a\x8a\x03\xef\xc8\x44\xe1\x63\x4e\xc9\x1a\x70\x17\x91\xa2\x30\xa5\x98\x68\x38\x94\xfd\xc3\xfb\x2f\x2b\x6c\x4d\x7d\xdc\xdd\x8e\x05\xfa\xe0\xe3\x7d\xb4\x37\xaf\xd7\xb7\xa0\x46\xba\x68\x2b\x3c\xde\xf9\xa7\x77\x6f\xe7\xf8\x5d\x00\xc0\xf0\x09\x6c\x67\x91\xb1\x91\x07\xae\x57\xa0\xce\xf6\xe5\x64\x9f\x8b\xf1\xf7\xeb\x31\xb2\xce\x71\x33\x9d\x77\x15\x29\x06\xcd\x56\xb9\x25\xe5\x92\x9c\xcb\xbe\x06\xa9\xcf\xa2\x2a\xc7\x1f\x14\x3a\x9e\xe3\xe6\x53\xbe\x3b\x7b\xed\x57\xe2\x50\x2f\xa6\xbc\xe2\x03\x4e\xa5\x16\xc9\x44\x69\xc7\x8b\x9f\x43\xb1\xf7\x2f\xd1\xc3\xc7\xb2\x47\x60\x35\x8d\xc7\x75\xfa\x36\x3b\xfa\x46\xb6\x9f\x5f\x5a\xe9\xd7\x7a\x8d\x96\xa2\x77\xe5\x6c\x23\x5d\xe8\x19\x30\x64\xdb\x20\x28\xd7\xac\x1c\x1d\xf7\xd4\x10\xae\x31\x3c\xf1\xd1\xaa\x6f\x48\x7f\xa1\x4b\xac\xaf\xd2\x79\x0c\xb3\xac\xf4\x9c\xc7\xcd\x4f\xec\x3a\xe3\xff\x99\xe4\x10\xe4\x87\x13\xb8\xdf\x07\x6e\x2f\x8c\xe5\xfd\x1f\xc6\xfe\x3a\x8c\x9c\xe5\xfd\x6c\xe2\xb9\xf8\x13\x00\x00\xff\xff\x2f\x51\xad\x1c\x51\x03\x00\x00" +var _stakingcollectionStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xdd\xca\xda\x40\x10\xbd\xcf\x53\x1c\xbc\x28\x11\x44\x4b\x5b\x7a\x11\xda\x4a\x88\x5a\x42\x45\x8b\xd1\x07\xd8\x26\x93\xb8\x98\xec\x84\xcd\x04\x85\xe2\xbb\x7f\x24\xeb\xcf\xc7\xa7\x17\xee\xc5\x2e\x33\xec\x9c\x73\x66\xce\xe8\xaa\x66\x2b\x58\x94\x7c\x4c\x44\x1d\xb4\x29\x22\x2e\x4b\x4a\x45\xb3\x41\x6e\xb9\xc2\xe7\x53\xb2\x0d\xff\xc4\xab\xdf\xd1\x7a\xb9\x9c\x47\xdb\x78\xbd\x0a\x67\xb3\xcd\x3c\x49\x3c\x6f\x32\x99\x20\xe2\xaa\xd2\xd2\xc0\xd2\x51\xd9\x8c\x32\x08\x1f\xc8\x34\x10\x46\x23\xea\x40\xc8\xd9\x42\xf6\x84\xa6\xa6\x54\xe7\x9a\x32\x18\xce\x08\x6c\x91\x51\x49\x85\x12\xb6\xd0\xc6\x7d\x71\x12\x90\xde\x34\x78\x9e\x58\x65\x1a\xd5\x07\x7e\x57\x18\xcf\x02\x24\x62\xb5\x29\x46\x77\x80\x2e\xb9\x8b\x8d\x7c\xfd\x32\x1d\x41\x55\xdc\x1a\x09\xb0\x5b\xe8\xd3\xf7\x6f\x43\xfc\xf7\x00\xa0\xbf\x4a\x92\x2b\xc9\xbd\xcf\x0d\xe5\x01\x3e\x3d\x1d\xc1\xf8\x21\xe3\xf5\x38\xb5\xa5\x5a\x59\xf2\x55\x9a\x3a\xae\xb0\x95\x7d\xe8\x82\x2b\x61\x77\x1a\x2a\xf3\xf1\x33\x42\xfc\xc4\xa5\x76\xfc\x8f\xad\xe5\xe3\x8f\x57\x05\xfc\xf2\x3b\x5b\x82\xe7\x96\x3d\x7e\x4f\x84\xad\x2a\xe8\xaf\x92\xfd\xf0\x26\xab\x3b\xd3\x29\x6a\x65\x74\xea\x0f\x22\x6e\xcb\xce\x14\x81\x93\x02\x4b\x79\x67\xdf\x03\xd6\xc0\x21\x9c\xdd\x0c\xe8\x44\x69\x2b\xf4\x4a\xb7\x7d\x92\x36\x97\x0d\xd9\xf6\x0b\x72\x33\xd3\xbd\x1f\xcc\x7c\x17\xdc\x0d\x75\xef\x55\xc4\xd9\x7b\x0b\x00\x00\xff\xff\xa8\x2e\xa8\x04\xbd\x02\x00\x00" func stakingcollectionStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5699,11 +5700,11 @@ func stakingcollectionStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x29, 0xa7, 0x4a, 0x17, 0x9b, 0x2d, 0xe2, 0x9b, 0xf8, 0xdb, 0xe2, 0xb2, 0x5b, 0x3b, 0xa5, 0x1c, 0xe, 0xec, 0x5d, 0xb3, 0x86, 0xb, 0xeb, 0xd5, 0x62, 0xbe, 0xc9, 0x84, 0x5, 0xe, 0x1d, 0x75}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0x8e, 0x32, 0xe0, 0x5e, 0x34, 0x11, 0x60, 0x2d, 0xf1, 0x4f, 0xad, 0x4e, 0x59, 0x3e, 0x2e, 0x5d, 0x31, 0xfd, 0x3d, 0x36, 0x15, 0xf8, 0x38, 0x97, 0x41, 0x38, 0xf, 0xdd, 0x44, 0xc6, 0x7a}} return a, nil } -var _stakingcollectionStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x8f\xd3\x30\x10\xc5\xef\xf9\x14\x4f\x3d\x2c\xa9\xb4\x6a\x25\x40\x1c\x2a\xa0\x82\xa2\x95\xf6\x04\xa2\x94\xfb\xe0\x4e\x5a\xab\x8e\x27\x1a\x4f\xd4\x45\x68\xbf\x3b\x8a\xdd\x3f\x88\xe6\xc0\x05\x1f\xe2\x78\x3c\x9e\xf7\x66\xf4\xf3\x6d\x27\x6a\x78\x08\x72\x5c\x1b\x1d\x7c\xdc\xad\x24\x04\x76\xe6\x25\xa2\x51\x69\x31\x19\xbd\x9b\x54\xd5\x7c\x3e\xc7\x4a\xda\xd6\x5b\x42\x1f\x93\xd1\x81\xb7\x30\x39\x70\x4c\x30\x41\x0e\xa0\x11\x85\xed\x19\xa9\x63\xe7\x1b\xcf\x5b\x44\xd9\x32\x44\xb1\xe5\xc0\x3b\x32\x51\xf8\x58\x52\x8a\x06\xdc\x45\xa4\xaa\x4c\x29\x26\xca\x87\x7a\x78\xf8\xf8\x69\x81\xb5\xa9\x8f\xbb\xfb\x6b\x81\x21\xb8\x79\x8c\xf6\xea\xe5\xf2\x1e\xd4\x4a\x1f\x6d\x81\xcd\x83\x7f\x7a\xf3\x7a\x8a\x5f\x15\x00\xe4\x4f\x60\x3b\x8b\x5c\x1b\xf9\xca\xcd\x02\xd4\xdb\xbe\x1e\xed\x73\x76\xfd\xfd\x7c\x8c\xac\x53\xdc\x8d\xe7\xdd\x44\xaa\xac\xd9\x29\x77\xa4\x5c\x93\x73\xc5\x57\x96\xfa\x28\xaa\x72\xfc\x4e\xa1\xe7\x29\xee\x3e\x94\xbb\xb3\xd7\x61\x25\x0e\xcd\x6c\xcc\x2b\xde\xe1\x54\x6a\x96\x4c\x94\x76\x3c\xfb\x91\x8b\xbd\xfd\x1f\x3d\xbc\xaf\x07\x04\x16\xe3\x78\xdc\xa6\xaf\x8b\xa3\x2f\x64\xfb\xe9\xa5\x95\x61\x2d\x97\xe8\x28\x7a\x57\x4f\x56\xd2\x87\x81\x01\x43\xb1\x0d\x82\x72\xc3\xca\xd1\xf1\x40\x0d\xe1\x16\xc3\x13\x1f\x9d\xfa\x96\xf4\x27\xfa\xc4\xfa\x22\x9d\xc7\x30\x29\x4a\xcf\x65\xdc\xfc\xc4\xae\x37\xfe\x97\x49\xe6\x20\x6f\x4e\xe0\x7e\xcb\xdc\x5e\x18\x2b\xfb\x5f\x8c\xfd\x71\xb8\x72\x56\xf6\xb3\x89\xe7\xea\x77\x00\x00\x00\xff\xff\xb4\xae\x2d\x5d\x51\x03\x00\x00" +var _stakingcollectionStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xdd\xca\xda\x40\x10\xbd\xcf\x53\x1c\xbc\x28\x11\x44\x4b\x5b\x7a\x11\xda\x4a\x88\x5a\x42\x45\x8b\xd1\x07\xd8\x26\x93\xb8\x98\xec\x84\xcd\x04\x85\xe2\xbb\x7f\x24\xeb\xcf\xc7\xa7\x17\xee\xc5\x2e\x73\xd8\x3d\xe7\xec\x9c\xd1\x55\xcd\x56\xb0\x28\xf9\x98\x88\x3a\x68\x53\x44\x5c\x96\x94\x8a\x66\x83\xdc\x72\x85\xcf\xa7\x64\x1b\xfe\x89\x57\xbf\xa3\xf5\x72\x39\x8f\xb6\xf1\x7a\x15\xce\x66\x9b\x79\x92\x78\xde\x64\x32\x41\xc4\x55\xa5\xa5\x41\x6b\x1a\x51\x07\xca\x20\x7c\x20\xd3\x40\x18\x3d\x80\x9c\x2d\x64\x4f\x68\x6a\x4a\x75\xae\x29\x83\xe1\x8c\xc0\x16\x19\x95\x54\x28\x61\x0b\x6d\xdc\x15\x67\x01\xe9\xcd\x83\xe7\x89\x55\xa6\x51\x7d\xe1\x77\x0f\xe3\x59\x80\x44\xac\x36\xc5\xe8\x4e\xd0\x81\xbb\xd8\xc8\xd7\x2f\xd3\x11\x54\xc5\xad\x91\x00\xbb\x85\x3e\x7d\xff\x36\xc4\x7f\x0f\x00\xfa\xad\x24\xb9\x8a\xdc\xff\xb9\xa1\x3c\xc0\xa7\xa7\x2d\x18\x3f\x20\x5e\xcf\x53\x5b\xaa\x95\x25\x5f\xa5\xa9\xd3\x0a\x5b\xd9\x87\xae\xb8\x0a\x76\xab\xa1\x32\x1f\x3f\x13\xc4\x4f\x5c\xde\x8e\xff\xb1\xb5\x7c\xfc\xf1\xaa\x81\x5f\x7e\x17\x4b\xf0\x3c\xb2\xc7\xeb\x89\xb0\x55\x05\xfd\x55\xb2\x1f\xde\x6c\x75\x6b\x3a\x45\xad\x8c\x4e\xfd\x41\xc4\x6d\xd9\x85\x22\x70\x56\x60\x29\xef\xe2\x7b\xe0\x1a\x38\x86\xb3\xeb\x01\x9d\x28\x6d\x85\x5e\xf9\x6d\x0f\xd2\xee\x32\x21\xdb\x7e\x40\x6e\x61\xba\xf3\x43\x98\xef\x8a\x7b\xa0\xee\xbc\x9a\x38\x7b\x6f\x01\x00\x00\xff\xff\x3a\x54\x8d\x83\xbd\x02\x00\x00" func stakingcollectionStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5719,11 +5720,11 @@ func stakingcollectionStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa2, 0xd9, 0xa3, 0x30, 0xe2, 0xac, 0xb5, 0xaf, 0xf, 0x7f, 0x25, 0x9f, 0x13, 0x26, 0xc8, 0x5b, 0x90, 0x55, 0x41, 0x24, 0x7e, 0x86, 0x5e, 0xbc, 0xc2, 0x80, 0x56, 0x9e, 0x7d, 0xb6, 0xb8, 0x5f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa1, 0xa8, 0x7b, 0xe7, 0xd6, 0xdb, 0x84, 0x37, 0x16, 0xe4, 0x35, 0x22, 0x17, 0xe6, 0x1a, 0xc, 0x64, 0xda, 0x5a, 0x5a, 0xd1, 0x7a, 0x73, 0x9c, 0x6e, 0x62, 0xd, 0x8d, 0xab, 0x32, 0x7d, 0x4d}} return a, nil } -var _stakingcollectionTestDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\x41\xcf\xda\x30\x0c\xbd\xe7\x57\x58\x3d\xa0\xf6\x40\x7b\x99\x76\x40\x6c\x68\x43\xe2\x84\xb4\x69\x0c\x76\x0e\xad\x5b\x22\x42\x5c\x25\x8e\xd8\x34\xf1\xdf\xa7\x26\xa5\x6b\x47\xa5\x7d\xb9\x44\xb6\x9f\xed\xf7\x6c\xab\x5b\x4b\x96\x61\xa7\xe9\x7e\x60\x79\x55\xa6\xd9\x92\xd6\x58\xb2\x22\x03\xb5\xa5\x1b\x24\xb3\xb1\x44\x8c\x32\xbf\xd3\x15\xc7\xe8\x60\xff\x45\x78\xd3\xa8\xb3\xc6\x09\x6a\xec\x1b\x90\x7b\x2a\xaf\x58\x05\x9f\xeb\x81\x63\x57\x22\x44\x51\xc0\xd1\x61\x05\x64\xf4\x2f\xa8\xc9\x02\xa3\x63\x68\xbd\x6d\xc9\xa1\x03\xa6\xe8\xe0\x0b\x42\x85\x2d\x39\xc5\xc0\xb1\xad\x37\x51\x93\x32\x21\xea\xa2\x20\x28\x07\x45\x42\xb0\x95\xc6\xc9\x60\xa4\xf2\x46\xde\xf0\x0a\x8e\x3b\xf5\xf3\xfd\xbb\x0c\x7e\x0b\x01\x00\xd0\x5a\x6c\xa5\xc5\xd4\xa9\xc6\xa0\x5d\x81\xf4\x7c\x49\x3f\x93\xb5\x74\x3f\x49\xed\x31\x83\xc5\xa7\xb2\xec\x52\x87\x94\xee\x69\xe4\x51\xa7\x6f\x58\xc3\x07\x88\x25\x72\xc7\x64\x65\x83\xf9\x39\x14\x59\x2f\x66\xa7\x9d\xbf\x78\x3e\xa6\xdd\x7c\x56\xf3\x8b\x7b\x85\x1f\x62\x97\xaf\x92\x2f\xd9\xc0\xaa\x7b\x9b\x0d\xb4\xd2\xa8\x32\x4d\xb6\xe4\x75\x05\x86\x18\x22\x15\x90\x60\xb1\x46\x8b\xa6\xc4\x30\xd8\xd9\xa9\x25\xd9\x54\x65\xfd\x5c\xff\x7f\x45\x06\x54\x7e\x92\x5e\xf3\x53\x4c\xd1\xe3\x8a\xa1\x4a\x08\xbf\x99\xf1\x84\xef\x6e\xff\xe5\x07\x84\xfc\x7f\x39\x72\x3c\xb0\xf5\x72\xba\x93\xbc\x41\x8e\x87\x36\x6c\x3f\xfe\xd3\xfe\x83\x31\x4d\xee\xcf\xad\x2f\x10\xf5\xac\x97\xb1\x55\x2c\xf0\x10\x8f\x3f\x01\x00\x00\xff\xff\x52\x6b\x3e\x3e\x6e\x03\x00\x00" +var _stakingcollectionTestDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\x9b\x40\x10\xbd\xf3\x15\xa3\x1c\x2a\x7c\x08\xf4\x50\xf5\x60\xb9\x8d\x28\xc6\x91\x65\x64\xaa\x80\xdb\xf3\x06\x06\xbc\xf2\x7a\x07\xed\x0e\x4a\xaa\x2a\xff\x5e\xc1\xc6\xc8\xd4\x54\x2a\x17\xb4\x3b\xef\xcd\xbe\x79\xf3\xe4\xb9\x25\xc3\xb0\x51\xf4\x92\xb3\x38\x49\xdd\xc4\xa4\x14\x96\x2c\x49\x43\x6d\xe8\x0c\x1f\x5f\xf3\x22\xda\x6d\xf7\x8f\x71\x96\xa6\x49\x5c\x6c\xb3\x7d\xb4\x5e\x3f\x25\x79\xee\x5d\x91\x0b\x3a\xe1\x48\xd8\xa4\xd9\xcf\x22\xdb\x25\x37\xc0\x4e\x37\xf2\x59\xe1\x14\x7c\xd8\x3f\x6e\xbf\xa5\xc9\x1c\x21\xa5\xf2\x84\xd5\x00\xb7\x17\x7c\x9a\xc5\xbb\x64\x3d\x41\x7b\x61\x08\x07\x8b\x15\x90\x56\xbf\xa0\x26\x03\x8c\x96\xa1\xed\x4c\x4b\x16\x2d\x30\xb9\x0b\x3e\x22\x54\xd8\x92\x95\x0c\xec\x34\x74\xda\x8d\x2a\xf5\x50\xb5\xce\x03\x28\x47\x13\x3c\x8f\x8d\xd0\x56\x0c\x07\x5f\x9c\xa9\xd3\xbc\x84\xc3\x46\xbe\x7e\xfe\xb4\x80\xdf\x9e\x07\x00\xd0\x1a\x6c\x85\x41\xdf\xca\x46\xa3\x59\x42\xd4\xf1\x31\x2a\xcb\x1e\x3b\x62\xfa\x4f\x21\x5f\xb5\x7e\xc2\x1a\xbe\x80\xe3\x04\xcf\x64\x0c\xbd\xac\x3e\xcc\x6e\x22\xb8\xb9\xf9\xea\xf7\x76\x2c\xe7\x17\x77\x0b\xcf\x99\x8c\x68\xf0\xbb\xe0\xe3\x62\x54\xd3\x7f\x0f\x0f\xd0\x0a\x2d\x4b\xff\x2e\xa6\x4e\x55\xa0\x89\xc1\x49\x01\x01\x06\x6b\x34\xa8\x4b\x1c\x1c\x9c\xb5\xe7\x6e\x31\x9d\xae\xbe\x64\xe1\x9f\xc3\x0d\xd5\xe0\x87\xe8\x14\x5f\x86\x08\xad\x93\x17\x8e\xec\xa1\xfc\xdf\x4a\x27\x3a\xfb\xf0\xc1\xc0\xff\x5b\x1b\xbb\x1c\xad\xee\xa7\x3b\x08\x1a\x64\x17\xb1\x71\xbd\xee\x3f\x7d\x7f\x3c\x4c\xc9\xef\x79\x7a\x6f\xe0\xe6\x59\xdd\xbb\xa7\x5c\x83\x37\xef\xed\x4f\x00\x00\x00\xff\xff\x64\xcc\x24\x0c\x66\x03\x00\x00" func stakingcollectionTestDeposit_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5739,11 +5740,11 @@ func stakingcollectionTestDeposit_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/test/deposit_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x1a, 0x62, 0x8a, 0x48, 0xfd, 0x30, 0xb2, 0xc1, 0x16, 0x95, 0xa1, 0xe8, 0x77, 0x7, 0x2a, 0x1f, 0x1c, 0xc0, 0x97, 0x59, 0x38, 0x3f, 0xdd, 0xbc, 0x1d, 0xd1, 0x3b, 0xec, 0x3e, 0x6e, 0x53}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0x8c, 0x1d, 0x33, 0xa6, 0xb6, 0xdb, 0x7f, 0x3f, 0xbd, 0x4f, 0x19, 0x21, 0x6a, 0xf7, 0xf3, 0x4e, 0x1e, 0x9d, 0x59, 0x35, 0xed, 0x39, 0xe4, 0x11, 0xb8, 0xb3, 0x35, 0x84, 0xa1, 0xbc, 0x80}} return a, nil } -var _stakingcollectionTestGet_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\xb1\x8e\xe2\x30\x10\xed\xfd\x15\xa3\x14\x28\x29\x2e\x34\xa7\x2b\x10\x77\xe8\x16\x89\x6a\x8b\xd5\xb2\x6c\x6f\x92\x49\xb0\x30\x9e\x68\x3c\x11\x8b\x56\xfc\xfb\x2a\x76\x14\x12\x11\x37\x96\x9f\xdf\xbc\x99\xf7\xc6\x5c\x1a\x62\x81\x9d\xa5\xeb\x5e\xf4\xd9\xb8\x7a\x4b\xd6\x62\x21\x86\x1c\x54\x4c\x17\x48\x66\xff\x12\x35\xaa\xfc\xa0\x33\x8e\xd9\xe1\xfd\x60\xb4\xae\x36\x47\x8b\x13\xd6\x18\x1b\x98\xaf\x54\x9c\xb1\x0c\x98\xef\x89\x63\x28\x51\x6a\xb9\x84\x83\xc7\x12\xc8\xd9\x1b\x54\xc4\x20\xe8\x05\x9a\x96\x1b\xf2\xe8\x41\x28\x02\x72\x42\xa8\x51\x40\x7a\xa9\xd6\x45\x43\xc6\x85\x2f\x1f\xdd\x40\x31\xd8\x51\x4a\x58\x3b\xaf\xc3\x23\xd5\x17\x6a\x9d\xac\xe0\xb0\x33\x5f\x7f\x7e\x67\xf0\xad\x14\x00\x40\xc3\xd8\x68\xc6\xd4\x9b\xda\x21\xaf\x40\xb7\x72\x4a\x5f\x88\x99\xae\x9f\xda\xb6\x98\xc1\xe2\x7f\x51\x74\xa5\x43\x49\x77\x2c\xca\xa8\xd3\x3b\x56\xf0\x17\xa2\x44\xee\x85\x58\xd7\x98\x1f\x83\xc8\x7a\x31\x1b\x75\xfe\x84\xfc\x4b\xbb\x70\x56\xf3\x5b\x7b\xa6\xef\x63\x97\x37\x2d\xa7\x6c\x98\xaa\x3b\x9b\x0d\x34\xda\x99\x22\x4d\xb6\xd4\xda\x12\x1c\x09\xc4\x51\x40\x03\x63\x85\x8c\xae\xc0\x90\xea\x6c\x6a\xc9\x54\x6e\xe2\xb8\x8f\x7e\xfd\x6b\xea\x3d\xaf\x51\xe2\x36\x87\x94\xe3\x9d\x3d\x02\x2b\xd1\x0b\xd3\xad\x97\x08\xf0\x5d\xdd\x15\xfc\x04\x00\x00\xff\xff\xc6\xbe\x85\xb6\xac\x02\x00\x00" +var _stakingcollectionTestGet_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\xcf\x9a\x40\x10\x86\xef\xfb\x2b\x26\x1e\x1a\x3c\x54\x7b\x68\x7a\x30\xb6\x86\x22\x1a\x23\x91\x46\x30\x3d\xaf\x30\xe0\x46\xdc\x21\xbb\x43\xd4\x34\xfe\xf7\x06\xf0\xe3\x93\xc8\x5e\x08\xb3\xcf\xbc\xd9\x79\x46\x5d\x4a\x32\x0c\xab\x82\xae\x11\xcb\xb3\xd2\xb9\x47\x45\x81\x09\x2b\xd2\x90\x19\xba\xc0\xb7\x5b\x14\xbb\xdb\xcd\x6e\xed\x85\x41\xe0\x7b\xf1\x26\xdc\xb9\xcb\xe5\xde\x8f\x22\xf1\xd2\x1c\xd3\x19\xbb\x86\x55\x10\xfe\x8d\xc3\xad\xff\x06\x56\x3a\x57\xc7\x02\xfb\xf0\x61\xb7\xde\xfc\x0e\xfc\xa1\x86\x80\x92\x33\xa6\x0d\x6e\x3f\xf8\x20\xf4\xb6\xfe\xb2\x47\x8b\xe9\x14\x0e\x16\x53\x20\x5d\xdc\x21\x23\x03\x8c\x96\xa1\xac\x4c\x49\x16\x2d\x30\xb5\x05\x3e\x21\xe4\xc8\xc0\xcf\xc0\x4a\xb7\x73\x2a\xdd\x5c\xd9\x56\x00\x24\x9d\x01\x21\xd8\x48\x6d\x65\xf3\xe3\xc8\x0b\x55\x9a\x67\x70\x58\xa9\xdb\x8f\xef\x63\xf8\x27\x04\x00\x40\x69\xb0\x94\x06\x1d\xab\x72\x8d\x66\x06\x6e\xc5\x27\x37\x49\x6a\xb6\x63\xea\x53\x20\xbf\x44\xef\x31\x83\x9f\xd0\xf6\x4c\x8e\x64\x0c\x5d\xe7\x5f\x06\xd7\x30\x79\xab\xfc\x72\x6a\x17\xb3\xe1\xad\xbd\xe3\x11\x93\x91\x39\xfe\x91\x7c\x1a\x77\xaf\xa9\xcf\x62\x01\xa5\xd4\x2a\x71\x46\x1e\x55\x45\x0a\x9a\x18\xda\xa7\x80\x04\x83\x19\x1a\xd4\x09\x36\xfa\x06\xf5\x8c\xfa\x71\xbd\x49\x9f\x8e\xe7\x5f\xfb\x33\x4f\x72\xe4\x76\x9f\x9d\xce\xf6\x3b\xfe\x14\x95\xa2\x65\x43\xf7\x67\x44\x53\x7e\x88\x87\x80\xff\x01\x00\x00\xff\xff\x07\xe3\x81\x01\xac\x02\x00\x00" func stakingcollectionTestGet_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5759,11 +5760,11 @@ func stakingcollectionTestGet_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/test/get_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x72, 0xf3, 0xa0, 0xb7, 0xa9, 0x28, 0x84, 0x63, 0xc9, 0x3a, 0x84, 0x43, 0x16, 0xd4, 0xe, 0x5a, 0x3e, 0xb0, 0x91, 0xa4, 0x25, 0x42, 0x1a, 0xf0, 0x7e, 0xf, 0x1d, 0x75, 0x1b, 0x64, 0xa1, 0xc4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x75, 0x91, 0x4b, 0xc9, 0x1e, 0x4e, 0x2, 0xc2, 0x10, 0x3, 0xbf, 0x59, 0xe5, 0xec, 0xaa, 0x4b, 0x76, 0xbb, 0x48, 0xec, 0x66, 0x5, 0x6e, 0xb4, 0x41, 0x38, 0xc4, 0x16, 0x8b, 0x3, 0xc4}} return a, nil } -var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\xcd\x6e\xd3\x40\x10\xbe\xe7\x29\xa6\x39\x14\x5b\x6a\x5d\x09\x6e\x51\x4b\xd5\x36\x02\x7a\xa1\x55\x0b\xdc\x27\xde\x71\xbc\x60\xef\x58\xbb\xe3\x94\x82\xfa\xee\xc8\x6b\xaf\x1b\xc7\x86\x46\x08\x7c\x49\x6c\x8f\xbf\xfd\x7e\x66\x76\x75\x59\xb1\x15\x78\x57\xf0\xc3\xbd\xe0\x37\x6d\xd6\x57\x5c\x14\x94\x8a\x66\x03\x99\xe5\x12\xe6\x93\xef\xe6\xb3\xd9\xc9\x09\x7c\xb2\x68\x5c\x46\xd6\x01\xc2\x47\x56\xb4\xa4\x82\xd6\x28\x6c\x81\x57\x5f\x29\x95\x16\x01\x0d\x60\x2d\x39\x5b\xfd\xc3\x97\xa6\x29\x73\x6d\xa4\x01\x40\xa3\x00\x95\x72\x20\x39\xed\x20\x08\x03\x1a\x96\x9c\xac\xff\xa2\x36\xe2\xa0\xa3\x01\xcf\x3c\x1a\x10\xad\xc8\x88\xce\x34\x29\x58\x3d\x7a\x24\x61\xb8\x50\xca\x92\x73\xc9\x6c\x26\x0d\x49\xf4\xd5\x91\x61\x45\xd7\xcb\x05\xdc\x8b\xd5\x66\x7d\x04\x2a\x2c\xd7\x3c\xfc\x7c\x6d\xe4\xcd\xeb\x23\x10\x5e\x84\xcf\x63\xf8\x39\x03\x00\x28\xa8\xd5\x32\xf2\xe1\x8e\xb2\x85\x57\x17\x4d\xda\x94\x3c\xff\xbd\x79\x30\x64\x63\x38\x9c\xae\x1b\x3d\xe9\x97\x15\x1e\xbd\xbb\xc2\x6a\xb1\x3f\x90\x47\xaa\x2c\x55\x68\x29\xea\xac\xec\x38\x5f\xb2\xb5\xfc\xf0\x05\x8b\x9a\x62\x38\xbc\x68\xdf\x05\xcd\xcd\xd5\x64\x9c\x53\x08\xa0\xf1\x55\xba\xc8\x27\x12\xeb\x32\x17\x86\xb2\x76\x02\x39\x6e\x08\x10\x36\x58\x68\x35\x91\x1c\x68\x03\x6c\x15\xf9\xa4\x2d\xa5\xa4\x37\x34\x06\x4d\x7a\x2a\x3a\x83\xe8\x60\x5a\xb3\x62\x72\x1d\xf9\x0f\xb8\xa1\x51\x41\x84\x6d\x9a\x0b\x10\x8e\xb7\xe5\x79\x67\xd0\xe8\x34\x9a\x2f\xc9\x89\x36\xe8\x99\x05\xb9\xdb\x32\x26\x04\x38\x12\xa8\xab\x64\x1e\xf7\x78\x4f\xb3\x6d\xe7\xde\x93\x00\x82\xa5\x8c\x2c\x99\xd4\x77\x65\xa3\x6f\x7b\x16\xa6\x63\x6f\x2e\x47\x45\x96\xfc\xae\xe5\xe0\x2c\x70\x4c\x9c\xb0\xc5\x35\x25\x2b\x1f\xe5\xe9\xff\x68\xc5\xb7\x51\xc3\x63\x31\xbd\x49\x8c\xcb\xef\x5b\x46\xb7\x28\x79\x3c\x70\xfa\xfc\x3c\x98\x7d\xc5\x75\xa1\xc0\xb0\x40\x4b\x7b\xd7\x26\x1c\x1b\xd3\xb4\x4b\xe3\x5e\x65\x75\x89\xf6\x11\x6a\x47\xf6\x95\x0b\x36\xcc\xe3\x91\xf3\x4d\xf1\x6d\xbd\x2a\x74\xda\xb5\x06\x70\xd6\xfa\xbf\x57\x33\x0b\x27\xd0\x43\xb6\x73\x18\x70\xce\x60\x4d\xd2\xdd\x44\xc2\xc3\xa5\x2f\x83\xa0\x14\x2b\x5c\xe9\x42\xcb\x63\x08\xbe\xf2\x6c\xa0\x24\xc9\x59\x39\xc0\x0d\xea\x02\x57\x05\x01\xb7\xd2\xba\x21\x98\x6a\x8b\x64\xd8\x17\xd3\x7b\x02\x9c\x3d\x93\x4c\xfa\xe5\x35\xb9\x41\x0a\xa1\x53\xf6\x4f\x7f\xcf\xc2\xd6\xec\xbf\x89\x1d\xcb\x17\x63\x0f\xde\x0c\x22\xdf\x1a\x39\xfa\x4e\x69\x2d\x34\xdc\xba\xee\xa8\xe4\xa9\x4d\xa5\x3d\x96\x5e\x9c\xc5\x64\x90\xbf\x19\x20\x9c\x1e\xff\x79\x42\x13\xeb\xd7\xee\x3f\xe8\x4f\x9e\xf6\x77\xe7\xe4\xd9\xba\x19\x76\xd3\x92\x2a\x76\x5a\xa6\x8f\xc7\x7f\xd1\x33\x09\x2a\xd5\x83\xde\xf8\x0d\x3c\x3a\x3d\x1e\x8a\x3d\x08\x4e\x3f\xfd\x0a\x00\x00\xff\xff\x54\xf8\x55\x3e\x2e\x08\x00\x00" +var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5d\x4f\xdb\x40\x10\x7c\xcf\xaf\x58\x78\xa8\x1c\x09\x4c\xd5\xbe\x45\x7c\x28\x4d\x28\x8d\x8a\x00\x11\xfa\x03\x36\xbe\xb5\x7d\xad\x73\x6b\x9d\xd7\x01\x8a\xf8\xef\xd5\x9d\x3f\x88\xb1\xdb\x06\x89\xbc\x44\x67\xef\xcd\xcd\xce\xcc\xfa\xf4\x3a\x67\x2b\xf0\x35\xe3\xfb\xa5\xe0\x2f\x6d\x92\x19\x67\x19\x45\xa2\xd9\x40\x6c\x79\x0d\x1f\x1f\x96\x77\xd3\xef\x8b\xab\x8b\xd9\xf5\xe5\xe5\xf9\xec\x6e\x71\x7d\x35\x9d\xcf\x6f\xcf\x97\xcb\xd1\xe8\xe8\x08\xee\x2c\x9a\x22\x26\x5b\x00\xc2\x15\x2b\x9a\x53\x46\x09\x0a\x5b\xe0\xd5\x4f\x8a\xa4\x02\x41\x03\x58\x4a\xca\x56\xff\xf6\xa5\x51\xc4\x5c\x1a\x71\x00\x68\x14\xa0\x52\x05\x48\x4a\xaf\x10\x84\x01\x0d\x4b\x4a\xd6\xef\x28\x8d\x14\x50\xb3\x84\x17\x9a\x0e\x44\x2b\x32\xa2\x63\x4d\x0a\x56\x8f\x1e\x49\x18\xa6\x4a\x59\x2a\x8a\x70\x34\x12\x47\x12\x7d\x75\x60\x58\xd1\x62\x3e\x81\xa5\x58\x6d\x92\x03\x50\xcd\x71\xee\xe1\x8f\x85\x91\xcf\x9f\x0e\x40\x78\xd2\x6c\x1f\xc3\xd3\x08\x00\x20\xa3\xaa\x97\x9e\x4c\xb7\x14\x4f\xe0\xc3\xa0\x82\x61\xef\x49\x0b\x25\xdc\x7b\x37\xc3\x7c\x77\xa0\xa7\x1d\xeb\x6e\xca\x55\xa6\xa3\xe7\x91\x3f\x38\xb7\x94\xa3\xa5\xa0\x56\x73\x02\xd3\x52\xd2\x69\xb5\x68\xfa\x74\x3f\xe7\x6b\x4a\x8d\xe8\x4e\x4b\xa9\x6d\x1e\x70\xa9\xf6\x59\x18\xd6\x65\x21\x90\xe2\x86\x00\x61\x83\x99\x56\x03\x6e\x81\x36\xc0\x56\x91\x77\xd7\x52\x44\x7a\x43\x7d\xd0\xb0\xa5\xa2\x63\x08\xf6\x86\x7b\x55\x4c\x45\x4d\xfe\x1b\x6e\xa8\x57\x10\x60\xe5\xe0\x04\x84\xc7\xdb\xed\x79\x29\xd0\xe8\x28\xd8\x9f\x53\x21\xda\xa0\x67\xd6\xb4\xbb\xdd\xc6\x40\x03\x05\x09\x94\x79\xb8\x3f\x6e\xf1\x6a\x75\x6b\xe5\x2e\x48\x00\xc1\x52\x4c\x96\x4c\xe4\x93\xe8\xfa\xdb\xce\xff\x70\x2c\xdc\xaf\xa0\x2c\x0e\xff\x16\x33\x38\x69\x38\x86\x2b\xb6\x96\xef\x8f\x77\x4d\xcb\x69\xe0\x30\x27\xc3\x73\xde\x2f\x5f\x0a\x5b\x4c\xe8\x06\x25\x1d\x77\x54\x3b\x3b\x6b\x84\x9b\x71\x99\x29\x30\x2c\x50\x51\x71\x0d\xbb\x56\x7b\x58\xfb\xe3\x9e\x3a\x4e\x8e\x2a\x97\xb5\x7d\xc0\x71\xa5\xd1\x4e\x81\x13\x0e\xa1\x85\xac\x66\xa9\xc1\x39\x81\x84\xa4\x5e\x04\xc2\xdd\xa3\xbf\x54\x44\x11\x22\xcc\x71\xa5\x33\x2d\x8f\x8d\x39\xb9\x67\x03\x6b\x92\x94\x55\x01\xb8\x41\x9d\xe1\x2a\x23\x60\xe3\xdf\xd7\x41\x1d\xb2\x2e\xec\x7a\x37\x3c\xd7\x70\xf2\x42\x32\x4c\x48\x66\x2d\x83\x9d\x2d\x7c\xe3\xc0\x9f\x06\x6f\xaa\xf7\x56\xd7\xa9\x0a\xde\xc3\xf3\xad\xb9\xa0\x07\x8a\x4a\xa1\xee\xf7\xe5\x96\xd6\x3c\x34\xf9\xd5\x7d\xf1\xdf\x81\x09\x3b\x01\x30\x1d\x84\xe3\xc3\x7f\x8f\x51\x68\xfd\xd9\xed\x86\xf6\x4a\xa8\xfe\x5f\x5d\x09\x5b\x8b\x6e\x9c\xe6\x94\x73\xa1\x65\xf8\xde\x7a\x8f\xd0\x84\xa8\x54\x0b\x7a\xed\xbf\xb2\xc1\xf1\x61\xb7\xd9\xbd\x46\xe9\xe7\x3f\x01\x00\x00\xff\xff\xe4\x62\x1c\xe8\xca\x07\x00\x00" func stakingcollectionTransfer_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -5779,11 +5780,11 @@ func stakingcollectionTransfer_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/transfer_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x83, 0xec, 0x8c, 0x84, 0x70, 0xc9, 0x5e, 0xfc, 0xb9, 0xf3, 0x21, 0x99, 0x5d, 0x9a, 0x65, 0x6a, 0xfc, 0xcb, 0xc8, 0x4f, 0x4d, 0x79, 0x9d, 0x9, 0x43, 0xed, 0x77, 0xec, 0xd9, 0x16, 0x2c, 0x33}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xff, 0x7, 0xf, 0xbf, 0x6b, 0x6b, 0x4f, 0xdf, 0xea, 0x50, 0x55, 0xed, 0xb8, 0x6b, 0x3a, 0x3b, 0xeb, 0xff, 0x95, 0xda, 0x97, 0x68, 0x16, 0xce, 0x1e, 0xbb, 0x3e, 0x85, 0x63, 0xa5, 0x36, 0x63}} return a, nil } -var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x4f\x53\xdb\x3a\x10\xbf\xe7\x53\x2c\x39\xf0\xec\x19\x30\xf7\x0c\x79\x0c\x90\x79\xef\x71\x78\x85\x81\x4e\x2f\x9d\x1e\x36\xd6\x3a\x56\xeb\x68\x3d\xd2\x3a\x0c\xed\xf0\xdd\x3b\xb2\xec\x24\x8e\xd5\x86\x43\xf1\x05\x62\xad\x76\x7f\xff\x2c\xe9\x75\xcd\x56\xe0\x9f\x8a\x9f\x9f\x04\xbf\x69\xb3\xba\xe5\xaa\xa2\x5c\x34\x1b\x28\x2c\xaf\x61\x1a\x5d\x9b\x4e\x26\x17\x17\xf0\xd1\xa2\x71\x05\x59\x07\x08\x1f\x58\x91\x2f\x23\x0b\xbc\xfc\x4a\xb9\x84\xed\x68\x00\x1b\x29\xd9\xea\xef\x6d\x5d\x9e\x33\x37\x46\xfc\x6e\x34\x0a\x50\x29\x07\x52\xd2\xfe\x76\x61\x40\xc3\x52\x92\x6d\xcb\x1b\x23\x0e\x3a\x00\xb0\x43\xe0\x3b\x68\x45\x46\x74\xa1\x49\xc1\xf2\xa5\x6d\x23\x0c\xd7\x4a\x59\x72\x2e\x9b\x4c\xc4\xc3\xc3\xb6\x3a\x31\xac\xe8\x6e\x31\x83\x27\xb1\xda\xac\xce\x40\x78\xd6\x57\xa6\xf0\x63\x02\x00\x50\x51\xc0\x3c\x22\xfb\x48\xc5\xac\x65\x91\x44\xb5\xc8\x76\xff\xde\x3f\x1b\xb2\x29\x9c\xc6\xeb\x46\x6f\xb6\x63\x85\x47\x6b\xb7\x58\xcf\xde\xde\xa8\xed\x54\x5b\xaa\xd1\x52\xd2\xa9\xd6\x61\xbe\x61\x6b\xf9\xf9\x13\x56\x0d\xa5\x70\x7a\x1d\xd6\x7a\xce\xfe\xf1\x46\x96\xd4\x6b\xed\x25\x94\xce\xd7\x43\x67\x3a\x63\x85\x61\xdd\x38\x81\x12\x37\x04\x08\x1b\xac\xb4\x8a\x38\x04\xda\x00\x5b\x15\x1c\xb5\x94\x93\xde\xd0\x41\xc7\x6c\x0b\x42\x17\x90\x9c\xc4\xd9\x2a\x26\xd7\xc1\xfe\x0f\x37\x34\x2a\x48\x30\xf8\x38\x03\xe1\x74\x9f\x58\xab\x09\x1a\x9d\x27\xd3\x05\x39\xd1\x06\x5b\x58\x3d\xd1\x7d\x0e\x11\xf4\x8e\x04\x9a\x3a\x9b\xa6\xdb\x7e\xaf\x93\x7d\xcd\xfe\x25\x01\x04\x4b\x05\x59\x32\x79\x1b\x3d\x4f\x6e\x3f\xed\x71\xc3\xfd\xe3\xa8\x2a\xb2\x5f\x85\x0d\xe6\x3d\xc6\xcc\x09\x5b\x5c\x51\xb6\x6c\x4d\xbc\x7c\x8f\x10\xfe\x9d\x78\x1c\xb3\xf8\x19\x30\x2e\x7f\x0a\x88\x1e\x50\xca\x74\xa0\xf4\xd5\x55\x2f\xf6\x2d\x37\x95\x02\xc3\x02\x01\xf6\xa1\x4c\x38\x16\xc6\x67\xc5\xab\x57\x5b\xbd\x46\xfb\x02\x8d\x23\xfb\x97\xeb\x65\x98\xa6\x23\xe5\x7d\xf1\x43\xb3\xac\x74\xde\x45\x03\xb8\x08\xfa\x1f\x8f\xb1\x70\x06\xdb\x7e\xe1\xf3\xeb\x9b\xcc\x61\x45\xd2\xfd\x48\x84\x87\x73\x6f\x7a\x36\x39\xd6\xb8\xd4\x95\x96\x97\xde\xf5\xba\x85\x02\x6b\x92\x92\x95\x03\xdc\xa0\xae\x70\x59\x11\x70\xe0\xd5\xc5\x3f\x96\x89\x6c\x18\x8a\xf8\x51\x00\xf3\x1d\xc8\x6c\x3b\x5e\x93\x1b\x58\xd0\xc7\xe4\xed\xd6\xbf\xb1\x30\x28\xfd\x4e\x9e\xf7\xda\xc4\xfd\xf6\xfe\xac\x31\x2f\xb5\xa1\x8e\xff\x9d\x29\x18\xe6\xbf\xff\x84\xb2\x15\xc9\xff\x83\x5d\x2e\x49\x3f\x87\x4b\xe0\xcb\x51\x0a\xab\xdd\xcc\x6d\x9e\xb4\x9f\x5a\x70\x08\x93\xab\x29\x0f\xf7\x8e\x6f\x09\x77\x8b\x83\x84\x3e\xd2\x9a\x47\x87\x5d\xb8\x10\x8f\x9e\x11\xd9\x80\xba\xd9\x6d\xbf\x3c\x3f\xc2\xd9\xb6\x53\xfd\xc0\xed\x75\x17\xfe\x0e\xc1\x2d\xa8\x66\xa7\x25\x72\xed\xfe\x89\xa4\x66\xa8\x94\xef\x7a\xdf\xde\x15\xc9\xe5\xf9\x1e\x85\x93\xb3\x88\x95\xb3\xc8\xbb\x90\xb2\xd7\xc9\xeb\xcf\x00\x00\x00\xff\xff\x2d\x4d\x77\x9d\xa0\x08\x00\x00" +var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5d\x4f\xdb\x4a\x10\x7d\xcf\xaf\x18\x78\xb8\x72\x24\x30\xf7\x39\x22\xa0\xdc\x84\x4b\xa3\x52\x40\x84\xb7\xaa\x0f\x13\xef\x38\xde\xd6\xd9\xb1\x76\xc7\xa1\x14\xf1\xdf\xab\xf5\xda\xf9\xc0\x6e\x13\x24\xf2\x12\xd9\x9e\x3d\x73\xe6\x9c\xb3\xbb\x7a\x59\xb0\x15\xf8\x3f\xe7\xa7\x99\xe0\x0f\x6d\x16\x63\xce\x73\x4a\x44\xb3\x81\xd4\xf2\x12\xfe\xfd\x39\x7b\x1c\x7d\x9e\xde\x5e\x8f\xef\x6e\x6e\xae\xc6\x8f\xd3\xbb\xdb\xd1\x64\xf2\x70\x35\x9b\xf5\x7a\x67\x67\xf0\x68\xd1\xb8\x94\xac\x03\x84\x5b\x56\xe4\x51\xc8\x02\xcf\xbf\x53\x22\x01\x01\x0d\x60\x29\x19\x5b\xfd\xab\xaa\x4b\x12\xe6\xd2\x88\x5f\x8d\x46\x01\x2a\xe5\x40\x32\xda\x5e\x2e\x0c\x68\x58\x32\xb2\x55\x79\x69\xc4\x41\xcd\x0f\x36\x04\x3d\x82\x56\x64\x44\xa7\x9a\x14\xcc\x9f\x2b\x18\x61\x18\x29\x65\xc9\xb9\xb8\xd7\x13\x4f\x0f\xab\xea\xc8\xb0\xa2\xe9\x64\x00\x33\xb1\xda\x2c\x4e\x40\x78\xd0\x54\xf6\xe1\xa5\x07\x00\x90\x53\xe0\xdc\xd2\xe2\x81\xd2\x01\xfc\xd3\x29\x53\xdc\x7a\xb3\x86\x12\x6e\x7d\x1b\x63\x71\x38\xd0\xcb\x81\x75\xf7\xe5\x3c\xd7\xc9\x6b\xaf\x6a\x5c\x58\x2a\xd0\x52\x54\x0b\x37\x80\x51\x29\xd9\x28\x3c\x34\x73\xfa\x9f\x37\x2f\xa3\x46\x5f\x2f\x9b\xd4\x5e\xbe\x75\xa3\x36\x53\x18\x96\xa5\x13\xc8\x70\x45\x80\xb0\xc2\x5c\xab\x0e\x57\x40\x1b\x60\xab\x82\x8b\x96\x12\xd2\x2b\x7a\x83\x18\xaf\x49\xe8\x14\xa2\xa3\xee\x29\x15\x93\xab\x69\x7f\xc2\x15\xb5\x0a\x22\x0c\xde\x0d\x40\xb8\xbf\x3d\x58\x25\x02\x1a\x9d\x44\xc7\x13\x72\xa2\x0d\x56\xb4\x9a\x41\xb7\x67\xe8\x60\xef\x48\xa0\x2c\xe2\xe3\xfe\x1a\xaf\xd6\xb5\xd6\xec\x9a\x04\x10\x2c\xa5\x64\xc9\x24\x55\xdc\xfc\x70\xdb\x09\xef\x0e\x84\xff\x39\xca\xd3\xf8\x4f\x01\x83\x61\xc3\x31\x9e\xb3\xb5\xfc\x74\x7e\x68\x4e\x2e\x22\x8f\x39\xe8\xde\xc6\xed\xf2\x99\xb0\xc5\x05\xdd\xa3\x64\xfd\x1d\xd5\x2e\x2f\x1b\xe1\xc6\x5c\xe6\x0a\x0c\x0b\x04\x2a\x7e\x60\x3f\x6a\x0b\xeb\xb8\xdf\x52\xc7\xcb\x11\x12\x59\xdb\x07\x9c\x06\x8d\xf6\x47\x4d\x38\x86\x35\x5e\xd8\x42\x0d\xc8\x10\x16\x24\xf5\x43\x24\xbc\xdb\xf7\xbf\xc0\x12\x21\xc1\x02\xe7\x3a\xd7\xf2\xdc\x38\x53\x54\x54\x60\x49\x92\xb1\x72\x80\x2b\xd4\x39\xce\x73\x02\x36\xd5\xf7\x3a\xa2\x5d\xbe\xc5\xbb\xc6\x75\x6f\x67\x18\x6e\x48\xc6\x0b\x92\xf1\x9a\xc1\xc1\xfe\xbd\x73\x9f\x5f\x44\xef\xaa\xaf\x7c\xae\x23\x15\x7d\xa8\xe1\xde\xa0\x25\x26\x99\x36\x54\x0b\x30\x35\x29\xc3\xf0\xef\x39\xf7\x22\x7d\xd9\x59\xe5\xa2\xfe\xd7\x70\x3a\x7f\xdb\x4b\x6f\xb1\xe9\xb9\x0e\x94\xf6\x5d\x53\x0e\x69\x72\x05\x25\xe1\x42\xf0\x90\x30\x9d\xbc\x89\xe8\x03\x2d\xb9\x75\x22\x85\x9b\x6a\xef\x46\x8e\x77\x46\x37\x9b\xe5\xe7\xa7\x7b\x66\xb6\x55\x57\xdf\x70\x7d\x0f\x85\xff\x5d\x72\x13\x2a\xd8\x69\xe9\xb8\x0f\x3f\x22\xaa\x31\x2a\xe5\x51\xef\xaa\x03\x3d\x3a\x3f\xdd\x1a\xe1\xe8\xa4\xc3\xca\x41\xc7\xbb\x90\xa0\xd7\xde\xeb\xef\x00\x00\x00\xff\xff\x96\xaa\xe3\x77\x3c\x08\x00\x00" func stakingcollectionTransfer_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5799,11 +5800,11 @@ func stakingcollectionTransfer_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/transfer_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x5d, 0xe5, 0x5c, 0x17, 0xee, 0x42, 0xc6, 0x72, 0x3f, 0x5d, 0x21, 0xbf, 0xd2, 0x37, 0x7a, 0x97, 0x58, 0x8a, 0x4, 0x83, 0x39, 0x9c, 0x7b, 0x7e, 0x8e, 0xfa, 0xed, 0xbe, 0x18, 0x27, 0xe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0x67, 0x83, 0xba, 0x26, 0xad, 0xc, 0x4e, 0xfe, 0xb7, 0x94, 0x11, 0x42, 0x42, 0xdc, 0x83, 0x93, 0x25, 0x10, 0x37, 0x21, 0xa1, 0x8f, 0xec, 0x4e, 0xf6, 0xfb, 0xed, 0x96, 0x5e, 0x71, 0x29}} return a, nil } -var _stakingcollectionUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\x4d\xaf\xd3\x30\x10\xbc\xe7\x57\x8c\x72\x78\x24\x97\xf4\x5e\x01\x4f\xa5\x08\x09\xa9\x12\xa8\x95\xb8\x1b\x77\x93\x5a\x75\xbd\x61\xbd\x56\x41\xa8\xff\x1d\x25\x4e\xda\x43\x73\xe0\xf2\x7c\xc8\x87\xf7\x63\x66\x77\xc6\x5d\x7a\x16\xc5\x17\xcf\xd7\x83\x9a\xb3\x0b\xdd\x96\xbd\x27\xab\x8e\x03\x5a\xe1\x0b\xca\xc5\x58\x59\x14\xab\xd5\x0a\x7b\xfa\x95\x28\x6a\x84\x32\x52\x88\x6a\xce\x84\xcd\x6e\x07\xe5\x33\x85\x88\x96\x05\x7a\x22\xc4\x9e\xac\x6b\x1d\x1d\x11\xf8\x48\x60\xc1\x91\x3c\x75\x46\x59\xe0\x42\x4e\xc9\x08\xb0\x77\x88\xa2\x50\x31\x21\x9a\xf1\xa7\x1a\x0a\xbf\x7e\x5e\xe3\xa0\xe2\x42\x57\xe3\x6f\x01\x00\xe3\xc3\x93\xce\xe5\x0f\x82\x7b\x6a\xd7\x30\x49\x4f\xd5\x22\xff\xe6\xf1\xf9\xed\x1a\x48\x6a\xbc\x2c\xe7\x3d\xdd\x14\x23\x66\x2f\xd4\x1b\xa1\xca\x58\xcb\x29\xe8\x04\xf5\x89\x45\xf8\xfa\xc3\xf8\x44\x35\x5e\x36\x39\x36\x73\x1d\x4e\x24\xdf\x36\x4b\x5c\xf1\x01\x53\xab\x26\x2a\x8b\xe9\xa8\xf9\x39\x36\x7b\xff\x16\x33\x7c\xac\x06\x69\xd7\xcb\xb2\x3f\xa7\x1f\x32\xa3\xef\x46\x4f\xf5\x7d\x94\xe1\xbc\xbe\xa2\x37\xc1\xd9\xaa\xdc\x72\xf2\x83\xba\x8a\x4c\x1b\x06\x42\x2d\x09\x05\x4b\x83\x39\x0c\x9e\xed\x35\x29\xdf\x8b\xbb\x18\xf9\x83\x14\x49\xde\xc5\x79\x0d\x65\x46\xba\xe5\x75\xd3\x6f\xb2\x49\xe9\x7f\x36\xd9\x4c\x3e\xdc\x78\x7f\x37\x4d\x7e\xcf\x1d\x6f\xc5\xbf\x00\x00\x00\xff\xff\x0c\xba\x48\x82\xf6\x02\x00\x00" +var _stakingcollectionUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xc1\x6e\xc2\x30\x0c\x86\xef\x7d\x8a\x5f\x1c\xa6\x72\x29\x3b\x57\xdb\x50\x55\xd8\x84\x56\xc1\x44\x79\x81\xac\xb8\x25\x22\xc4\x5d\xe2\x0a\xa4\x89\x77\x9f\x4a\x80\x1d\xe0\x80\x0f\xad\x1c\xd9\xbf\x3f\xfb\xd7\xbb\x96\x9d\xe0\xdd\xf0\xbe\x14\xb5\xd5\xb6\xc9\xd9\x18\xaa\x44\xb3\x45\xed\x78\x87\xe7\x43\xb9\xca\x3e\x67\xf3\x8f\x7c\x51\x14\xd3\x7c\x35\x5b\xcc\xb3\xc9\x64\x39\x2d\xcb\x28\x1a\x8d\x46\x58\xd2\x4f\x47\x5e\x3c\x84\xd1\x59\x2f\x6a\x4b\xc8\x8a\x02\xc2\x5b\xb2\x1e\x35\x3b\xc8\x86\xe0\x5b\xaa\x74\xad\x69\x0d\xcb\x6b\x02\x3b\xac\xc9\x50\xa3\x84\x1d\xb4\x0d\x25\x01\x00\xd5\x95\x20\x8a\xc4\x29\xeb\xd5\x29\x89\xfb\xc6\xd9\x24\x45\x29\x4e\xdb\x66\x88\xdf\x08\x00\x4e\x1f\x43\x72\x69\xff\xe7\x5f\x52\x9d\xe2\xe9\xee\x6a\xc9\xcd\x4b\x74\xd2\x69\x1d\xb5\xca\x51\xac\xaa\x8a\x3b\x2b\x29\xb2\x4e\x36\x59\x48\x2e\x03\xfb\xf0\x64\xea\xe4\xde\x40\xbc\xe2\xdc\x9b\x7c\xb3\x73\xbc\x7f\x79\x14\xe0\x2d\xee\xcf\x9d\xde\xb7\xe2\xb6\xbc\x14\x76\xaa\xa1\x2f\x25\x9b\xe1\x15\xab\x8f\xf1\x18\xad\xb2\xba\x8a\x07\x39\x77\xa6\x3f\xb7\x20\xa0\xc0\x51\xdd\xbb\x74\xa3\x35\x08\x0a\xc7\x70\x03\x3a\x50\xd5\x09\x3d\xb2\x6d\x72\x36\x3c\x33\xe6\xea\x4e\xf8\x5f\x14\x8f\xd1\x5f\x00\x00\x00\xff\xff\x92\xff\xa2\x70\x62\x02\x00\x00" func stakingcollectionUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -5819,11 +5820,11 @@ func stakingcollectionUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7c, 0xca, 0x8a, 0xc8, 0xf3, 0x52, 0x88, 0x5d, 0x94, 0xa8, 0xb5, 0xc9, 0x3b, 0x48, 0x3e, 0x46, 0x50, 0xcb, 0xf4, 0x7d, 0x65, 0x39, 0xd5, 0xb2, 0x99, 0xbf, 0xc6, 0xa4, 0xd7, 0xaa, 0x4e, 0xa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0xba, 0xb4, 0x65, 0xa5, 0xa4, 0x6, 0xf6, 0x67, 0x0, 0x75, 0x3a, 0x4f, 0x78, 0x89, 0xab, 0x9a, 0x3c, 0x83, 0xba, 0x1c, 0xf5, 0xe8, 0xae, 0xe7, 0x92, 0xc8, 0xa, 0xea, 0x9e, 0xd7, 0xc1}} return a, nil } -var _stakingcollectionUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x4e\xe3\x40\x0c\xbd\xe7\x2b\x9e\x72\xe8\x26\xd2\x2a\xbd\x57\xbb\x54\xa5\x08\x89\x0b\x20\x2a\x71\x37\x89\x93\x8c\x48\x67\x22\x8f\xa3\x80\x50\xff\x1d\x25\xd3\xb4\x82\xe6\xc0\x05\x1f\x12\xcb\xf6\xf8\x3d\xdb\xcf\xec\x5b\x27\x8a\xdb\xc6\xf5\x3b\xa5\x57\x63\xab\xad\x6b\x1a\xce\xd5\x38\x8b\x52\xdc\x1e\xf1\x6c\x2e\x8e\xa2\xe5\x72\x89\x6d\x4d\xb6\x62\x0f\xad\x19\x96\xb5\x77\x32\x94\x81\x8a\x42\xd8\x7b\x94\x4e\xc6\x94\x6f\x39\x37\xa5\xe1\x02\xd6\x15\x1c\x45\x2a\x64\x3d\x8d\x8d\x92\x21\x72\x77\xb3\xc2\x4e\xc5\xd8\xea\x2f\x2c\xf7\x9b\xf0\x7c\x8a\xa5\xf8\x88\x00\x60\xfc\x34\xac\xf0\xdf\xd9\x3c\x71\xb9\x02\x75\x5a\x27\xb3\x64\xb3\xb3\xfb\xd0\x5b\x96\x14\x8b\xf9\xba\x8b\x48\x34\x62\xb6\xc2\x2d\x09\x27\x94\xe7\xae\xb3\x7a\x84\xba\x76\x22\xae\x7f\xa6\xa6\xe3\x14\x8b\x4d\xc8\x4d\x5c\x07\xf3\xdc\x94\xd9\x1c\x57\xfc\xc7\xb1\x55\xe6\xd5\x09\x55\x9c\xbd\x8c\xcd\xfe\xfd\xc6\x0c\x57\xc9\x70\xc7\xd5\xfc\x8d\x2f\xcb\x77\x81\xd1\x23\x69\x9d\x9e\x46\x19\x6c\xbd\x46\x4b\xd6\xe4\x49\xbc\x75\x5d\x33\x9c\x52\x11\x68\x83\x20\x5c\xb2\xb0\xcd\x19\xea\x40\xb8\xd4\x92\xb1\xa3\x12\x5a\x31\x7b\x92\x77\x74\x9e\xe5\x8f\x9f\xd6\x10\x07\xa4\x43\x58\x37\xbf\x71\xde\x29\xff\x64\x93\x59\xd7\x16\xa4\x7c\x7f\x92\xde\x51\x3a\x27\x55\x85\xff\x57\x55\x9d\xfd\x09\xf6\x10\x7d\x06\x00\x00\xff\xff\xf5\xc0\xe1\x03\x08\x03\x00\x00" +var _stakingcollectionUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x51\x5d\x8b\xe2\x40\x10\x7c\x9f\x5f\x51\xf8\x70\x44\x38\xe2\x3d\x87\xbb\x93\x10\xdd\x45\x56\x74\x31\xfe\x81\xd9\xa4\x93\x0c\x1b\xa7\xc3\x4c\x87\x08\x8b\xff\x7d\x49\xa2\x2e\xbb\xfa\x60\x3f\xe4\xa3\x67\xba\xaa\xba\xca\x1c\x1a\x76\x82\xa7\x9a\xbb\x54\xf4\xbb\xb1\x65\xc2\x75\x4d\x99\x18\xb6\x28\x1c\x1f\xf0\xe7\x98\xee\xe3\x97\xd5\xe6\x39\xd9\xae\xd7\xcb\x64\xbf\xda\x6e\xe2\xc5\x62\xb7\x4c\x53\xa5\x66\xb3\x19\x92\x4a\xdb\x92\x3c\xa4\x22\x58\x92\x8e\x5d\x8f\x02\x9d\xe7\x8e\xbc\x47\xc1\x6e\x38\xf2\x0d\x65\xa6\x30\x94\xc3\x72\x4e\x4a\x89\xd3\xd6\xeb\x81\x27\xe8\x3b\xab\x45\x84\x54\x9c\xb1\xe5\x6f\x58\xea\xe2\x71\xfc\xd2\x9b\xe2\x43\x01\xc0\xf0\xa8\x49\xe0\x7f\x8a\xdd\x51\x11\xe1\xd7\xdd\x3d\xc2\x9b\x8e\x1a\x70\x1a\x47\x8d\x76\x14\xe8\x2c\xe3\xd6\x4a\x84\xb8\x95\x2a\x1e\x7f\x2e\x84\x7d\x79\xaa\x8b\xf0\x1e\x21\xfe\xe1\x3c\x1b\xbe\xb1\x73\xdc\xfd\x7d\x54\xc0\xff\xa0\xf7\x36\xba\xef\xfb\xed\xf5\x54\xd8\xe9\x92\x5e\xb5\x54\xd3\xab\xac\xbe\xe6\x73\x34\xda\x9a\x2c\x98\x24\xdc\xd6\xbd\xb7\x82\x51\x0a\x1c\x15\x10\xc6\x0d\xd6\x64\x44\x38\x8d\x1e\xd0\x91\xb2\x56\xe8\x91\x6d\xc3\xb6\xc9\xb5\xd0\xe6\x9a\xf1\x39\xa3\x6b\x7c\xe3\xfb\x7b\x7c\x5f\xdf\x17\xda\x93\xfa\x0c\x00\x00\xff\xff\xa5\x85\x44\xd5\x74\x02\x00\x00" func stakingcollectionUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -5839,11 +5840,11 @@ func stakingcollectionUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcf, 0x19, 0xee, 0xbd, 0xf6, 0xbe, 0xd2, 0x9d, 0x85, 0x71, 0xd0, 0xad, 0xf4, 0xa7, 0xf2, 0x23, 0xe5, 0xd4, 0x8f, 0xd5, 0xa8, 0x89, 0x1f, 0x90, 0x22, 0x4a, 0x2d, 0xe3, 0xb8, 0xeb, 0x86, 0xf1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdd, 0xff, 0x7b, 0x7f, 0xd9, 0x90, 0x89, 0x51, 0x97, 0x22, 0x0, 0x42, 0x8d, 0x15, 0xe0, 0x7, 0xb8, 0x63, 0x93, 0x9e, 0x61, 0xf, 0x72, 0x10, 0xf7, 0xf8, 0x90, 0x99, 0xf9, 0x47, 0x7a, 0x14}} return a, nil } -var _stakingcollectionWithdraw_from_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xc1\x8e\xd4\x30\x0c\x86\xef\x7d\x0a\xab\x87\xa5\x95\x50\xe7\x82\x38\x54\xc0\x0a\x16\x8d\xc4\x01\x81\x76\x80\xbb\x49\xdd\x69\x34\x69\x5c\x1c\x87\xee\x0a\xed\xbb\xa3\x34\xd3\x5d\x89\xe9\x81\xcb\xe6\xd0\x54\x89\x63\xff\xbf\xfd\xd9\x71\x62\x51\xd8\x3b\x9e\x0f\x8a\x27\xeb\x8f\x37\xec\x1c\x19\xb5\xec\xa1\x17\x1e\xa1\xdc\xbc\x2b\x8b\x62\xb7\xdb\xc1\x2d\xfd\x8a\x14\x14\x94\x61\xb6\x3a\x74\x82\x33\x28\x9f\xc8\x87\xfc\x58\x07\x82\x11\xcd\x60\x3d\x01\x1a\xc3\xd1\xeb\xf2\xee\xdb\x40\x6b\x1c\x0a\x01\x46\xe5\x11\xd5\x1a\x74\xee\x1e\x3a\x9a\x38\x58\xa5\x2e\xa5\x4d\x19\xa2\x77\x6c\x4e\xd4\xad\x29\xe0\x37\x46\xa7\x45\xa1\x82\x3e\xe0\xa2\xa7\xf2\xdc\xd1\xa7\x8f\x2d\x1c\x54\xac\x3f\xbe\x04\x1c\x53\x64\x0b\xdf\xf7\xf6\xee\xf5\xab\x1a\xfe\x14\x00\x00\xcb\xc7\x91\x42\xf8\xd7\xd0\x2d\xf5\x6d\xd2\x31\x54\x9b\x7e\x9b\xa7\xdf\x2f\xb3\x27\xa9\xe1\x6a\x3b\xee\xe2\xa4\x58\x6a\x4e\x42\x13\x0a\x55\x67\x07\xe7\x52\x1f\x58\x84\xe7\x1f\xe8\x22\xd5\x70\xf5\x3e\xdf\xad\x5a\xd3\x0a\xe4\xfa\x66\x4b\x2b\xbc\x5d\x9b\xd1\x04\x65\xc1\x23\x35\x3f\x97\x64\x6f\x9e\xc3\xc3\xbb\x2a\x4d\xb3\xdd\xc6\xe4\x32\xfc\x90\x15\x7d\x45\x1d\xea\x47\x2b\x69\x5d\x5f\xc3\x84\xde\x9a\xaa\xbc\xe1\xe8\x3a\xf0\xac\x90\x65\x03\x82\x50\x4f\x42\xde\x24\x32\x00\xe1\x12\x47\xeb\x17\x1a\x26\xb1\x23\xca\x3d\xc4\x40\xf2\x22\xac\x6d\x28\x73\xa5\x87\xdc\x6e\xba\x23\x13\x95\xfe\xa7\x93\xcd\x0a\xee\x5e\x78\xfc\x9c\x59\x3d\x4f\xe2\x11\xaa\xbc\x3f\x41\x95\xf7\xb5\xe2\x43\xf1\x37\x00\x00\xff\xff\x3e\x13\xf0\x11\x46\x03\x00\x00" +var _stakingcollectionWithdraw_from_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x8e\xd3\x40\x0c\xbd\xe7\x2b\xac\x3d\xa0\xac\x84\x52\x0e\x88\x43\x04\xac\xa2\xb4\x45\x15\xa5\x45\x4d\xf9\x00\x33\x71\x9a\x51\x27\xe3\x30\xf1\x90\x22\xd4\x7f\x47\xc9\x34\x45\xda\xf6\x50\x1f\x62\x65\x64\x3f\x3f\xbf\x67\xdd\xb4\xec\x04\x96\x86\xfb\x42\xf0\xa8\xed\x21\x67\x63\x48\x89\x66\x0b\x95\xe3\x06\xde\x9d\x8a\x7d\xf6\x75\xb5\xf9\x92\x6f\xd7\xeb\x45\xbe\x5f\x6d\x37\xd9\x7c\xbe\x5b\x14\x45\x14\xcd\x66\x33\xd8\xd1\x2f\x4f\x9d\x80\x30\xf4\x5a\xea\xd2\x61\x0f\xc2\x47\xb2\x5d\xe8\x97\x9a\xa0\x41\x55\x6b\x4b\x80\x4a\xb1\xb7\x32\xf6\xed\x6b\x9a\xea\xd0\x11\xa0\x17\x6e\x50\xb4\x42\x63\xfe\x40\x49\x2d\x77\x5a\xa8\x1c\x60\x07\x04\x6f\x0d\xab\x23\x95\x13\x04\xfc\x46\x6f\x24\x8a\xc4\xa1\xed\x70\xa4\x1b\x5b\x2e\x69\x35\x4f\xa1\x10\xa7\xed\xe1\x2d\x60\x33\x54\xa6\xf0\x63\xa9\x4f\x1f\xde\x3f\xc3\xdf\x08\x00\x60\xfc\x18\x12\xe8\x5e\xef\xbb\xa3\x2a\x85\x37\x77\xa5\x48\x6e\x5e\xa2\x11\xa7\x75\xd4\xa2\xa3\xf8\xc2\x2a\x85\xcc\x4b\x9d\x85\x9f\x69\xe0\x10\x1d\x99\x2a\xb9\x37\x10\x3e\x4d\x1b\x25\x3f\xd9\x39\xee\x3f\x3e\x4a\xe0\x73\x3c\xc8\x9b\xde\xb7\xee\xb6\xbc\x10\x76\x78\xa0\xef\x28\xf5\xf3\x95\xd6\x10\x2f\x2f\xd0\xa2\xd5\x2a\x7e\xca\xd9\x9b\x12\x2c\x0b\x04\x2a\xe0\xa8\x1a\xf4\xbf\xc1\x7a\x0a\x08\xe7\xa0\x01\x9d\x48\x79\xa1\x47\xb6\x4d\xa6\x0b\x59\x3a\x6e\xbe\x85\xa3\xb8\xa8\x75\x75\x2f\xe4\xff\xee\x85\x3c\x4d\x3c\x47\xff\x02\x00\x00\xff\xff\xdb\xab\x20\x8d\xb2\x02\x00\x00" func stakingcollectionWithdraw_from_machine_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -5859,11 +5860,11 @@ func stakingcollectionWithdraw_from_machine_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_from_machine_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x79, 0x73, 0xe2, 0xa4, 0xc3, 0x56, 0x8, 0x7c, 0xae, 0x27, 0x26, 0x4d, 0x17, 0x2d, 0xf2, 0xd5, 0xe4, 0x6e, 0x23, 0xa6, 0x6c, 0x17, 0xd, 0xf2, 0xe, 0x35, 0xdb, 0x65, 0x31, 0x32, 0xcb, 0x3c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc7, 0x7c, 0xe3, 0xa9, 0xe3, 0x68, 0x1a, 0x64, 0x88, 0xe, 0xc6, 0xc4, 0xa4, 0x9b, 0x35, 0x9f, 0xa1, 0x43, 0xf2, 0x57, 0x79, 0xca, 0x6d, 0xa4, 0x6e, 0x57, 0xfe, 0xbe, 0x2f, 0x2e, 0x1f, 0xef}} return a, nil } -var _stakingcollectionWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x8f\xd3\x3c\x10\xbe\xe7\x57\x3c\xea\x61\xdf\x56\xaa\x5a\xe9\x05\x71\xa8\x80\x6a\x59\xb4\xd2\x9e\x40\xed\x2e\xf7\xc1\x99\xb4\x56\x1d\x3b\x8c\x27\x64\x2b\xb4\xff\x1d\x39\x1f\xcd\x8a\xe6\xc0\x05\x1f\xea\xc6\x9e\x3c\x1f\x93\x67\x6c\x59\x05\x51\xdc\xbb\xd0\xec\x95\x4e\xd6\x1f\xee\x82\x73\x6c\xd4\x06\x8f\x42\x42\x89\xd9\xe4\xdd\x2c\xcb\xd6\xeb\x35\x76\xfc\xa3\xe6\xa8\xd0\x80\xc6\xea\x31\x17\x6a\x20\xdc\x90\xe4\x9c\x43\xc3\x89\x7d\x44\x11\x04\x7a\x64\xc4\x8a\x8d\x2d\x2c\xe7\xf0\x21\x67\x04\x41\xce\x8e\x0f\xa4\x41\x60\x7d\x57\xd2\xd1\xc0\x5c\x78\x5a\x96\xc7\x23\x0f\x60\x24\x0c\xaa\x35\x94\xa4\xd6\x90\x73\x67\xe4\x5c\x85\x68\xb5\xe5\x6b\x41\x6a\xef\x82\x39\x71\x0e\x32\x26\xd4\x5e\xf1\x93\x6a\xa7\x28\xac\x44\x5d\xb6\x78\xb7\x3e\x4f\x95\x1e\xe4\xcf\xe8\x8b\x5f\xe1\x8f\x88\xd6\xf7\x98\x53\x88\x59\xa6\x42\x3e\x52\xab\x73\x9e\x3c\x3d\x7c\xde\x60\xaf\x62\xfd\x61\x39\x7a\x4b\x87\x4f\x0f\x5e\xdf\xfc\xbf\x5d\x82\xca\xf4\xfe\x06\x4f\xf7\xf6\xf9\xdd\xdb\x05\x7e\x65\x00\xd0\xfe\x38\xd6\xc1\xff\xd8\xe6\x1d\x17\x9b\xe4\xf7\x38\x9f\xfc\x0a\xab\xf1\xef\x97\xc6\xb3\x2c\x70\x33\x5d\x77\x75\x92\xb5\x9c\x95\x70\x45\xc2\xf3\xde\x57\x4f\xf5\x29\x88\x84\xe6\x1b\xb9\x9a\x17\xb8\xb9\xed\xee\x06\xad\x69\x45\x76\xc5\x6a\x4a\x2b\x3e\x0c\x2d\x5a\x45\x0d\x42\x07\x5e\x7d\x6f\xc1\xde\xff\x0b\x0f\x1f\xe7\x29\xa0\x9b\xe9\xf0\x5e\x97\xef\x3b\x45\x5f\x49\x8f\x8b\x8b\x95\xb4\xb6\x5b\x54\xe4\xad\x99\xcf\xee\x42\xed\x52\x3c\x15\x9d\x6c\x10\x84\x0b\x16\xf6\x26\x25\x10\x84\xeb\x21\xe9\xa3\x5b\x89\x2d\x49\xce\xa8\x23\xcb\x7f\x71\x68\xc3\xac\x63\x7a\xe9\xda\xcd\xcf\x6c\x6a\xe5\xbf\xe9\xe4\x6a\x18\xa7\x5d\x3f\x4d\x8f\x6d\x3e\x2f\x31\xeb\xf6\x3f\x62\xf6\xea\x61\x8c\x5a\xb7\x0f\x3a\x5e\xb2\xdf\x01\x00\x00\xff\xff\xea\x2d\x23\xfe\xf2\x03\x00\x00" +var _stakingcollectionWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x8f\x1c\x8a\x03\xc6\x2e\x6d\xe9\x41\xb4\x35\xc2\x4e\x8a\x69\x48\x8a\xe5\xfc\x80\xad\x34\xb2\x16\xaf\x77\xd4\xd1\xa8\x72\x28\xf9\xef\x65\x25\xcb\x0e\xb5\x0f\xde\x83\x96\x5d\x46\xdf\xbc\xd9\xf7\xec\xae\x62\x51\xdc\x3b\x6e\x53\x35\x5b\xeb\x37\x73\x76\x8e\x32\xb5\xec\x51\x08\xef\xf0\x7e\x9f\xae\x93\x1f\xcb\xc7\xef\xf3\xa7\x87\x87\xbb\xf9\x7a\xf9\xf4\x98\x2c\x16\xab\xbb\x34\x8d\xa2\xe9\x74\x8a\x15\xfd\x6e\xa8\x56\x28\xa3\xb5\x5a\xe6\x62\x5a\x08\xb5\x46\x72\xca\xa1\xbc\x25\x5f\xa3\x60\x81\x96\x84\xba\xa2\xcc\x16\x96\x72\x78\xce\x09\x2c\xc8\xc9\xd1\xc6\x28\x0b\xac\xef\x4b\x7a\x15\xc8\x8e\x32\xba\x2e\xeb\x92\x06\x98\x11\x82\x69\x94\x77\x46\x6d\x66\x9c\x7b\x41\x4e\x15\xd7\x56\xbb\x7e\x1d\xa4\xf1\x8e\xb3\x2d\xe5\x30\x59\xc6\x8d\x57\xfc\x31\x8d\x53\x14\x56\x6a\x1d\x77\xbc\xc4\xe7\xa1\xd2\xc3\xf8\x17\x1c\x8a\xdf\xf0\x4f\x44\xeb\x0f\xcc\x4b\xc4\x28\x52\x31\xbe\x36\x9d\xce\x51\x98\x69\xb9\x88\x91\xaa\x58\xbf\x19\x9f\x66\x0b\x97\xcf\x4b\xaf\x1f\x3f\xcc\xc6\x30\xbb\xf0\x7f\x8c\xe7\x7b\xbb\xff\xfc\xe9\x16\x7f\x23\x00\xe8\x3e\x8e\x74\x98\xff\xe4\xc2\x8a\x8a\x18\xef\x2e\x1a\x34\x39\xbb\x89\x3a\x4e\x25\x54\x19\xa1\xd1\x41\x6b\x8c\xa4\xd1\x32\xe9\x0f\x43\xc3\xb0\x6a\x72\xc5\xe4\x52\x43\x7c\x1d\xe6\x9c\xfc\x62\x11\x6e\xbf\x5c\x2b\xe0\xdb\x28\x84\x26\xbe\x1c\xa8\xf3\xf2\x54\x59\xcc\x86\x7e\x1a\x2d\x6f\x8f\xb2\xc2\x9a\xcd\x50\x19\x6f\xb3\xd1\xcd\x9c\x1b\x17\xf2\xa2\xe8\xa5\x40\xa8\x08\x3e\x9f\xb1\x6e\x7a\xc2\x6b\xff\x06\xb4\xa7\xac\x51\xba\x66\xda\xc9\x90\xdb\xd5\x21\xb6\xeb\x2e\x08\x47\x3f\xfb\xfd\x3f\x3f\xdf\x1c\x4e\x9e\xf6\xfb\xa0\xe3\x35\xfa\x17\x00\x00\xff\xff\x64\xbf\x03\x75\x5e\x03\x00\x00" func stakingcollectionWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5879,11 +5880,11 @@ func stakingcollectionWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfb, 0x9a, 0xe1, 0x39, 0x28, 0x58, 0x61, 0xdc, 0x20, 0xc7, 0x14, 0x5c, 0xba, 0xb3, 0x84, 0xc9, 0x6a, 0x57, 0xb9, 0x13, 0x4f, 0x98, 0xa7, 0x23, 0xf, 0xc1, 0x35, 0x93, 0x60, 0xd1, 0x23, 0x6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe6, 0x49, 0x8d, 0xd0, 0x5b, 0x42, 0x21, 0x6d, 0xfa, 0xef, 0x43, 0x36, 0x96, 0xc0, 0x98, 0x8f, 0x63, 0x76, 0xd0, 0x1a, 0xda, 0xbb, 0x68, 0x23, 0x3d, 0x88, 0x97, 0xea, 0xba, 0x59, 0x73, 0xd7}} return a, nil } -var _stakingcollectionWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\xcd\x6e\xdb\x3c\x10\xbc\xeb\x29\x06\x3e\xe4\xb3\x01\xc3\x06\xbe\x16\x3d\x18\x6d\x8d\x34\x45\x80\x9c\x5a\xc4\x71\xef\x5b\x6a\x65\x13\xa6\x49\x75\xb9\xac\x63\x14\x79\xf7\x82\xfa\xb1\x82\x5a\x87\x5e\xca\x83\x28\x91\x8b\x99\x9d\xd1\xac\x3d\xd6\x41\x14\xf7\x2e\x9c\x36\x4a\x07\xeb\x77\x77\xc1\x39\x36\x6a\x83\x47\x25\xe1\x88\xc9\xe8\xdd\xa4\x28\x96\xcb\x25\x1e\xf9\x47\xe2\xa8\xd0\x80\x93\xd5\x7d\x29\x74\x42\xf2\x51\xe9\xc0\x25\x34\x1c\xd8\x47\x54\x41\xa0\x7b\x46\xac\xd9\xd8\xca\x72\x09\x1f\x4a\x46\x10\x94\xec\x78\x47\x1a\x04\xd6\xb7\x25\x2d\x0d\xcc\x85\xa7\x61\x79\xda\x73\x0f\x46\xc2\xa0\xa4\xe1\x48\x6a\x0d\x39\x77\x46\xc9\x75\x88\x56\x1b\xbe\x06\x24\x79\x17\x4c\xe6\x27\x63\x42\xf2\x8a\x9f\x94\x9c\xa2\xb2\x12\x75\xde\xe0\xdd\xfa\x32\x57\x7a\x90\x3f\xa3\x2b\x7e\x85\x3f\x20\x5a\xdf\x61\x8e\x22\xda\x0a\x56\x61\x63\xae\x10\x2e\x0a\x15\xf2\x91\x9a\xb6\xa7\x59\xe2\xc3\xe7\x15\x36\x2a\xd6\xef\xe6\x83\xd4\x7c\xb8\x7d\xf0\xfa\xe6\xff\xf5\x1c\x74\xcc\x70\x2b\x6c\xef\xed\xf3\xbb\xb7\x33\xfc\x2a\x00\xa0\x79\x38\xd6\xde\x8e\xc1\xf5\x47\xae\x56\x59\xfe\x7e\x3a\xfa\x53\x16\xc3\xeb\x97\x93\x67\x99\xe1\x66\xbc\xee\xea\xa4\x68\x38\x6b\xe1\x9a\x84\xa7\x9d\xcc\x8e\xea\x53\x10\x09\xa7\x6f\xe4\x12\xcf\x70\x73\xdb\xde\xf5\xbd\xe6\x15\xd9\x55\x8b\xb1\x5e\xf1\xa1\x77\x6c\x11\x35\x08\xed\x78\xf1\xbd\x01\x7b\xff\x2f\x34\x7c\x9c\xe6\xbc\xae\xc6\xb3\x7c\x5d\xbe\x69\x3b\xfa\x4a\xba\x9f\x5d\xa4\xe4\xb5\x5e\xa3\x26\x6f\xcd\x74\x72\x17\x92\xcb\x69\x55\xb4\x6d\x83\x20\x5c\xb1\xb0\x37\x39\x90\x20\x5c\xcf\x4c\x97\xe4\x5a\xec\x91\xe4\x8c\x14\x59\xfe\x8b\xbd\x0d\x93\x96\xe9\xa5\xb5\x9b\x9f\xd9\x24\xe5\xbf\x71\x72\xd1\x4f\xd7\xb6\x1b\xae\xa7\x26\xae\x97\x98\xb5\xfb\x1f\x31\x7b\xf5\x31\x44\xad\xdd\xfb\x3e\x5e\x8a\xdf\x01\x00\x00\xff\xff\xf5\xac\x11\xd5\x01\x04\x00\x00" +var _stakingcollectionWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x8f\xda\x30\x10\x85\xef\xf9\x15\x4f\x7b\xa8\x58\x09\x41\xd5\x56\x3d\xa0\xb6\x28\x82\xdd\x0a\x75\xb5\x5b\x11\xf8\x01\xd3\x64\x42\x2c\x8c\x27\x75\xc6\x85\x55\xb5\xff\xbd\x72\x42\x60\x55\x38\xac\x0f\xb6\x6c\x8d\xbe\x79\xe3\xf7\xcc\xae\x16\xaf\xb8\xb7\xb2\xcf\x94\xb6\xc6\x6d\x66\x62\x2d\xe7\x6a\xc4\xa1\xf4\xb2\xc3\xfb\x43\xb6\x4a\x7f\x2c\x1e\xbf\xcf\x9e\x1e\x1e\xee\x66\xab\xc5\xd3\x63\x3a\x9f\x2f\xef\xb2\x2c\x49\xc6\xe3\x31\x96\xfc\x3b\x70\xa3\x50\xc1\xde\x68\x55\x78\xda\x23\xb8\x46\x69\xcb\x05\x54\xb6\xec\x1a\x94\xe2\xa1\x15\xa3\xa9\x39\x37\xa5\xe1\x02\x4e\x0a\x86\x78\x14\x6c\x79\x43\x2a\x1e\xc6\x75\x25\x9d\x0a\xe4\x27\x19\x6d\x97\x55\xc5\x3d\x8c\x3c\x83\x82\xca\x8e\xd4\xe4\x64\xed\x33\x0a\xae\xa5\x31\xda\xf6\x6b\x21\xc1\x59\xc9\x63\x7f\xca\x73\x09\x4e\xf1\x87\x82\x55\x94\xc6\x37\x3a\x6c\x79\xa9\x2b\x62\xa5\x03\xb9\x67\x1c\x8b\x5f\xf1\xcf\x44\xe3\x8e\xcc\xab\x44\x53\xc2\x28\x4c\x13\x2b\x3c\x27\x89\x7a\x72\x0d\xb5\xb2\x07\x71\xc4\xc5\x7c\x82\x4c\xbd\x71\x9b\xe1\x79\xd4\xf8\xb8\x5e\x38\xfd\xf8\x61\x3a\x04\xed\x22\x6e\x82\xf5\xbd\x39\x7c\xfe\x74\x8b\xbf\x09\x00\xb4\x9b\x65\xed\xbf\xe3\x6c\xca\x92\xcb\x09\xde\x5d\xf5\x6b\x74\xf1\x92\xb4\x9c\xda\x73\x4d\x9e\x07\x47\xe9\x13\xa4\x41\xab\xb4\xbb\xf4\x0d\xe3\x6a\xd8\x96\xa3\x6b\x0d\xf1\xb5\x1f\x7b\xf4\x4b\xbc\x97\xfd\x97\xb7\x0a\xf8\x36\x88\x19\x9a\x5c\xcf\xd7\x65\x79\xa6\xe2\x69\xc3\x3f\x49\xab\xdb\x93\xac\xb8\xa6\x53\xd4\xe4\x4c\x3e\xb8\x99\x49\xb0\x31\x3e\x8a\x4e\x0a\x3c\x97\xd1\xf6\x0b\xd6\x4d\x47\x78\xe9\xfe\x80\x0f\x9c\x07\xe5\xb7\x4c\x3b\xea\x63\xbc\x3e\xa6\x78\xd5\xe6\xe2\xe4\x67\x77\xfe\xe7\xe7\xab\xcb\xd9\xd3\xee\xec\x75\xbc\x24\xff\x02\x00\x00\xff\xff\x02\xba\xdf\x67\x6d\x03\x00\x00" func stakingcollectionWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5899,11 +5900,11 @@ func stakingcollectionWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf9, 0x49, 0x4d, 0x12, 0xd3, 0x8d, 0x96, 0x6e, 0x9, 0xec, 0x17, 0xc4, 0xc6, 0x99, 0x84, 0x28, 0xbd, 0x52, 0x73, 0x96, 0x3, 0x75, 0x59, 0x22, 0x85, 0x43, 0x73, 0xfa, 0x70, 0xe1, 0x91, 0xe0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0x94, 0x7f, 0x6f, 0xf0, 0xe4, 0x28, 0x27, 0x2d, 0x99, 0x6, 0xd7, 0xff, 0xf1, 0xff, 0xa5, 0x7, 0x3a, 0x22, 0x3c, 0xba, 0x2f, 0xff, 0x40, 0x14, 0xdd, 0xe2, 0x43, 0x68, 0x43, 0xb0, 0x64}} return a, nil } -var _stakingproxyAdd_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x43\x0e\x92\x80\xe4\x5c\x42\xad\x58\x7b\xa8\x14\x5a\x41\xda\xfb\x98\x9d\xe8\xd2\xb8\xb3\x4c\x26\x58\x29\xfe\xf7\xb2\x46\x4d\x42\xba\x87\x90\x7d\x3b\x33\xfb\xed\x7b\xf6\xe0\x59\x14\x36\x8a\xdf\xd6\xed\xd6\xc2\x3f\x27\x28\x85\x0f\x10\xf7\xa5\x38\x8a\x54\xd0\xd5\x58\xa8\x65\x97\x58\x93\xc3\x46\xc5\xba\xdd\x14\x84\x2b\xca\xe1\x73\xe5\xf4\x61\x0a\x8e\xf4\xc8\x12\xda\x16\xc6\x08\xd5\x75\x57\xd7\x1d\xbd\xd1\xa9\x93\xeb\xf6\x96\x9e\x96\xc2\x6f\x14\x01\x00\x78\x21\x8f\x42\x09\x16\x05\x37\x4e\x73\xc0\x46\xf7\xc9\x33\x8b\xf0\xf1\x0b\xab\x86\x52\x98\x2c\xda\xb3\xd0\x03\xd7\x55\x91\x82\x0f\xd0\xaf\x5c\x19\x12\x98\xc1\x75\x40\x56\x2b\x0b\xee\x28\xdb\x5e\x46\x3c\x4e\xfa\x2f\xcc\xde\xd9\x50\x10\x48\xd6\x5d\xf3\x53\x12\xbc\xc8\x61\x54\xf9\xe1\x49\x50\x59\x96\xe8\x71\x6b\x2b\xab\xa7\x4d\x3b\x7c\x8d\xba\x4f\xef\x2c\x61\xcd\xe7\xe0\xd1\xd9\x22\x89\x97\xdc\x54\x06\x1c\x2b\xb4\x04\x20\x54\x92\x90\x2b\x08\x94\x6f\x4e\xb4\xec\xb0\xbf\xdc\x1f\xa7\xd1\xe0\x5d\x8e\x0d\xad\x5c\xc9\x30\x1b\x23\x05\x3d\xb9\x14\xbc\xe4\x60\xcd\x2d\x99\xf0\xfd\x37\x98\x91\x34\xca\x68\xb0\x1d\x46\xd5\xfd\xf7\x08\x7b\xae\x67\x68\xcc\x10\xca\x95\x9c\xdf\xf9\x5b\x87\xce\xd1\x39\xfa\x0b\x00\x00\xff\xff\x8d\x03\xa9\x86\x80\x02\x00\x00" +var _stakingproxyAdd_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x41\xa4\xc7\x12\x6a\x25\x68\x69\x45\xd0\x60\x5a\x68\x8f\x6b\x76\xa2\x4b\xe3\xce\x32\x19\x51\x29\xfe\xf7\xb2\x46\x4d\x42\xba\x87\x90\x7d\x79\x9b\xfd\xde\x3c\xb3\x73\xc4\x02\xa9\xa8\x1f\x63\x37\x09\xd3\xf1\x04\x39\xd3\x0e\x1e\x8f\xe9\x47\x3c\x9f\x2d\xde\x92\xd5\xf2\xeb\x3b\x9e\x4e\x57\xaf\x69\x1a\x04\xc2\xca\x96\x2a\x13\x43\x36\x34\x3a\x82\x54\xd8\xd8\xcd\x00\x98\x0a\x8c\xe0\x73\x66\xe5\x69\x00\x16\xe5\x40\xec\x7f\x18\x6b\xcd\x58\x96\xb5\xaf\xfe\x34\xc7\x53\x2d\x97\xd5\xfd\x0d\xad\x0f\xbf\x41\x00\x00\xe0\x18\x9d\x62\x0c\x55\x96\xd1\xde\x4a\x04\xf1\x5e\xb6\x71\xb5\xf1\x26\xb8\xae\x02\x05\x9c\xe7\x7f\xa7\x42\x23\xc3\x08\xae\x27\x86\x6b\x62\xa6\xc3\xf3\x43\x33\xe4\x70\x41\x1a\xbd\x80\x9c\xd4\x87\x5e\x42\x9f\x3d\x82\x8e\x73\xe9\x90\x95\x10\x4f\x94\x53\x6b\x53\x18\x39\xa5\x42\xac\x36\x98\x28\xd9\xf6\xef\x0c\x7e\x8d\xc7\xe0\x94\x35\x59\xd8\x9b\xd0\xbe\xd0\x60\x49\xa0\x22\x00\xc6\x1c\x19\x6d\x86\x20\x74\x8b\x5c\x31\xc3\xf6\x72\x7f\xaf\x1f\xb4\xf2\x58\xd2\x38\xb3\x39\xc1\xa8\x8b\xe4\xf5\xf0\x62\x98\x46\x60\xf4\xad\x02\xff\xfc\xb7\x81\x8e\xd4\x29\xa3\xb5\x6d\x77\x52\xbf\x37\x08\x1b\xd3\x1e\x2a\xad\xdb\x50\x36\xa7\xe8\xce\x5f\x4d\xe8\x1c\x9c\x83\xbf\x00\x00\x00\xff\xff\x31\xc4\x60\xc0\x70\x02\x00\x00" func stakingproxyAdd_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5919,11 +5920,11 @@ func stakingproxyAdd_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/add_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x4c, 0x70, 0x39, 0x70, 0x71, 0x9e, 0x6c, 0x1, 0xdf, 0x9c, 0x65, 0xbf, 0x4, 0xb9, 0xfd, 0xe4, 0x59, 0x8e, 0x5a, 0xcf, 0xd2, 0x23, 0xd, 0x25, 0x7, 0xa2, 0xd, 0xd3, 0xe, 0xb1, 0x72}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb5, 0xf2, 0xa0, 0xe3, 0xb7, 0x7c, 0x79, 0xbd, 0xee, 0x11, 0x1e, 0x31, 0xf2, 0x7a, 0xdc, 0xa2, 0xf, 0xae, 0xba, 0x2a, 0x46, 0x9a, 0xf3, 0x65, 0xd9, 0xb4, 0x2d, 0xd1, 0x43, 0x7c, 0x8, 0xf6}} return a, nil } -var _stakingproxyGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x4e\xf3\x30\x10\x85\xf7\x3e\xc5\xfb\xb3\xf8\x95\x48\x28\x07\xa8\x80\xaa\x2a\x0b\xd8\x40\x45\x4f\xe0\x3a\x93\x60\xe1\x7a\xac\xf1\x44\x50\x55\xbd\x3b\x4a\xad\x14\x50\x17\xcc\xc6\xf2\xcc\xbc\x37\x4f\x9f\xdf\x27\x16\xc5\x56\xed\xbb\x8f\xc3\x46\xf8\xf3\x80\x5e\x78\x8f\xea\x67\xab\x32\xc6\x3a\x47\x39\xd7\x36\x84\x06\xfd\x18\xb1\xb7\x3e\xd6\xd6\x39\x1e\xa3\x2e\xb0\xea\x3a\xa1\x9c\x6f\x10\xb9\xa3\xa7\x87\x05\xb6\x2a\x3e\x0e\xcd\xe2\x97\x73\xfb\x3c\x4d\x63\xcf\x38\x1a\x03\x00\x81\x14\x69\x9a\xbc\x52\x8f\x3b\x0c\xa4\xab\xe2\x38\x3b\x37\xe7\xb5\xa9\x5a\x67\x93\xdd\xf9\xe0\xd5\x53\x6e\x77\x2c\xc2\x1f\xb7\xff\xaf\xdc\xa7\x06\xc9\xf9\xff\xc8\xa1\x23\x39\xfe\xbd\xb2\x19\x77\xc1\xbb\xd3\x7d\x7d\x39\x36\xd5\x95\xee\x25\x91\x58\x65\x59\xcf\x41\x0e\x45\xb8\xb1\xfa\x76\x51\x7e\x07\x5e\x2e\x91\x6c\xf4\xae\xae\xd6\x3c\x86\x0e\x91\x15\x25\x36\xd2\x59\x07\xa1\x9e\x84\xa2\x23\x28\x23\x97\x73\x05\x47\xd5\x14\x3e\x42\x3a\x4a\xbc\x20\x6a\x07\xd2\x19\x61\x3d\x93\x2e\x6f\xf3\xcf\x9c\xcc\x57\x00\x00\x00\xff\xff\x07\xe6\x21\xd3\xcd\x01\x00\x00" +var _stakingproxyGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\xaf\x1e\x4a\x02\x45\x7a\x96\x5a\x09\x5a\x5a\x29\x68\x30\x3d\xb4\xc7\x4d\x32\x49\x97\xc6\x9d\x65\x9c\x50\x45\xfc\xef\x25\xa6\x1a\xaa\x87\xce\x25\x64\xe7\xcd\xfb\xf6\xcd\xda\xb5\x67\x51\xa4\x6a\xbe\xac\xab\x12\xe1\xed\x0e\xa5\xf0\x1a\xf7\xdb\xf4\x2d\x7e\x9d\x2f\x9e\x93\xd5\xf2\xfd\x23\x9e\xcd\x56\x4f\x69\x1a\x04\xbe\xc9\x50\x36\x0e\x6b\x63\x5d\x68\xf2\x9c\x1b\xa7\x23\xc4\x45\x21\xb4\xd9\xdc\xc1\x71\x41\xf3\xd9\x08\xa9\x8a\x75\x55\x34\xfa\x63\x3c\x5c\xb4\x5d\x57\x32\xf6\x41\x00\x00\x35\x29\x7c\xdb\x99\x1a\x6f\x32\x5b\x5b\xdd\x61\x8c\x8a\x34\xee\x8c\x4f\x80\xe8\xa8\x6e\x6b\x58\x91\xf6\xe2\x87\xdb\x2b\xfb\xf6\x80\xe4\xf8\xff\xc2\x75\x41\xb2\xff\x5f\x92\x34\x59\x6d\xf3\xc3\x63\x78\xc6\xb4\x75\x35\xb7\xf4\x24\x46\x59\x7a\x7e\x37\x98\x18\xfd\x3c\x4f\x46\x17\xc9\x56\x54\x62\x7c\x19\x72\x98\xb1\x08\x7f\x87\x7d\xae\xc9\x04\xde\x38\x9b\x87\x83\x29\x37\x75\x01\xc7\x8a\x4e\x04\x7f\x84\x40\xa8\x24\x21\x97\x13\x94\xb1\xe9\xee\xd6\xf9\x0e\x7e\x99\x42\xda\x88\x3b\x63\xdb\x55\x9d\x16\x1e\x9e\xde\xa5\xfb\x46\x37\xc1\x21\xf8\x09\x00\x00\xff\xff\xb3\xad\x9a\xc7\xfa\x01\x00\x00" func stakingproxyGet_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5939,11 +5940,11 @@ func stakingproxyGet_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/get_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0x3e, 0xd4, 0xe5, 0xc4, 0x95, 0x56, 0x6b, 0xfd, 0xc9, 0xe5, 0x64, 0xc, 0x1b, 0xe0, 0xbd, 0xff, 0x2b, 0x95, 0x9a, 0xaf, 0x4e, 0xdd, 0xf1, 0x3c, 0xf7, 0x3e, 0xc0, 0xfd, 0x96, 0x31, 0x6c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0x8b, 0x46, 0x15, 0x59, 0x7a, 0x1d, 0x80, 0xde, 0x23, 0xc5, 0x1f, 0x2d, 0x9f, 0xde, 0xec, 0x2a, 0xfe, 0x91, 0xca, 0xb9, 0xea, 0xf1, 0x9c, 0xe6, 0x56, 0x27, 0x11, 0x3d, 0x3b, 0xe3, 0xff}} return a, nil } -var _stakingproxyRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x93\x41\x8f\xd3\x30\x10\x85\xef\xf9\x15\xa3\x1c\x4a\x22\x55\x3e\x21\x0e\x11\x65\xb5\xec\x0a\x81\x84\x96\x8a\x02\x77\xd7\x9e\xa4\x56\x53\x4f\xe4\x4c\x44\x2b\xb4\xff\x1d\x39\x76\x52\xb7\x05\x84\xb4\xbe\x64\xd7\xe3\x79\xf3\xbd\x67\xd7\x1c\x3a\x72\x0c\x9f\x49\xed\x51\x7f\xa3\x3d\xda\x1e\x6a\x47\x07\xc8\xd3\xad\x3c\x8b\xe7\x36\x2c\xf7\xc6\x36\x6b\x47\xc7\x53\x3c\x97\x6e\xe5\x59\xc6\x4e\xda\x5e\x2a\x36\x64\x0b\xa9\xb5\xc3\xbe\xaf\xe0\x3e\xfc\xb1\x04\xa3\x2b\xd8\xb0\x33\xb6\x59\x82\x3c\xd0\x60\xb9\x82\xef\x1f\xcc\xf1\xcd\xeb\x12\x7e\x65\x19\x00\x40\x8b\x0c\x3b\x6a\x35\xba\xaf\x58\x57\x20\x07\xde\x15\x29\x8b\x18\x3f\x5f\x3a\x74\xd2\x0f\xe9\x4b\x58\xdc\x96\x3f\x8e\x02\x41\xb0\x73\xd8\x49\x87\x85\x54\x2a\x0c\x1c\x25\xdf\x93\x73\xf4\xf3\x87\x6c\x07\x2c\x61\x71\x1f\x6a\x1e\x02\xe2\xea\xb1\xad\xc5\x0c\x02\x2b\x88\xfd\xa2\x67\x72\xb2\x41\xb1\x1d\x15\xde\xbe\x04\xf0\x5d\xe1\x33\xac\xe0\x6f\xf5\x4d\x18\xb5\x96\xbc\x2b\x67\x30\xbf\xee\xee\xa0\x93\xd6\xa8\x22\x7f\xa0\xa1\xd5\x60\x89\x21\xf0\x80\xc3\x1a\x1d\x5a\x85\xc0\x04\x89\x56\x1e\x14\x9e\x43\x28\x78\x44\x35\x30\x26\x7e\x7d\xee\x96\x34\x06\x70\x8a\xa6\x1b\xe4\x98\xcd\x74\x9b\xa5\x50\xb2\x93\x5b\xd3\x1a\x36\xd8\x5f\x50\x4d\x91\x2c\xd2\x37\x21\x9e\x48\xa3\xdf\x40\x37\xfe\x3f\x39\xbf\xe8\xf4\xeb\xa6\x69\x22\x79\x98\xe6\x9d\xd6\xc3\xb6\x35\xca\xc7\x71\xd1\xfd\xdf\xd9\x78\x7f\x40\x51\x16\xba\x51\x0d\x66\x3b\xa7\xbc\xcc\x6e\xe2\xf8\x64\x6b\x82\xd5\x75\x32\xa2\x41\x7e\x8a\xd5\x62\x3c\xf6\x58\x81\xd1\xff\x04\xb1\xaf\xd8\xc7\x09\xc6\x2b\xd6\xe4\x82\xfc\xe3\x2a\x17\x8a\xac\x92\x5c\x18\x5d\x26\x00\x97\xef\x4f\x28\x87\x92\xf1\x9c\x65\x31\xc1\x55\x33\xe6\xf9\x27\x15\xbe\x7f\x70\x93\xdc\x03\xac\xae\x47\x84\x90\xa2\x7c\xd2\x7c\xed\x5d\x6a\x9d\xde\xd5\xec\x7f\xe2\x10\x46\x2f\xa1\xf3\xa5\xea\x7a\xe8\xf4\x06\x9f\xb3\xdf\x01\x00\x00\xff\xff\x1f\x55\xea\x18\x79\x04\x00\x00" +var _stakingproxyRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x41\x8f\xda\x3c\x10\xbd\xe7\x57\xcc\xc7\x61\xbf\x44\x42\x51\x0f\x55\x0f\xd1\xb2\x2b\x04\xb4\x5d\xb1\x02\x44\xa8\xd4\x1e\x8d\x3d\x01\x8b\xe0\x89\x9c\x89\xca\x6a\xc5\x7f\xaf\x1c\x27\x21\xb0\xdd\xb6\xbe\x38\xce\xcc\xbc\x79\xef\x8d\xad\x8f\x05\x59\x86\x67\x92\x07\x54\x1b\x3a\xa0\x29\x21\xb3\x74\x84\x0f\xa7\xe7\xe5\x64\x3e\x9b\x6e\x96\xf3\xd9\x62\x3c\x9d\xae\x67\x69\x1a\x34\xd9\x29\x8b\x83\x36\xbb\x95\xa5\xd3\x4b\x9b\x9d\x6e\xc6\xf3\xa7\xc5\x97\xd5\x7a\xf9\xfd\x47\x9b\x1e\xb0\x15\xa6\x14\x92\x35\x99\x50\x28\x65\xb1\x2c\x13\x18\xfb\x8f\x21\x68\x95\x40\xca\x56\x9b\xdd\x10\xc4\x91\x2a\xc3\x09\x7c\xfb\xac\x4f\x9f\x3e\x46\xf0\x1a\x04\x00\x00\x39\x32\xec\x29\x57\x68\xd7\x98\x25\x70\xd7\xe7\x19\xd7\xdb\xd7\x3a\xea\xb3\x0b\x8b\x85\xb0\x18\x0a\x29\x3d\xda\xb8\xe2\xfd\xd8\x1f\x1c\x24\x34\xab\xc4\x3c\x8b\x3b\x58\x18\x41\x53\x10\x6f\xc9\x5a\xfa\x79\xff\x6e\x9b\x87\xd0\xa9\x4d\xe0\xbd\x78\xca\x64\xc5\x0e\x57\x82\xf7\x51\xd7\xcd\xad\xc7\x47\x28\x84\xd1\x32\x1c\x4c\xa8\xca\x15\x18\x62\xf0\xcd\xc0\x62\x86\x16\x8d\x44\x60\x82\x1e\xd6\xc0\x23\x9c\xbd\x34\x3c\xa1\xac\x18\x7b\x22\x9c\x35\x86\x14\x2e\x0b\xb4\x82\xa9\x51\xb2\x43\x6e\x04\xb7\x86\x47\xf1\x0e\x79\x22\x0a\xb1\xd5\xb9\xe6\x97\x2b\x5a\xf7\x77\xfd\x51\xc6\x0b\x52\xe8\x7e\xa0\xad\xcf\x9e\xc7\xeb\xdf\x53\x56\xd5\x36\xd7\xf2\xfc\x70\x85\x1d\xbe\xa9\x6b\x99\x5e\xc8\xf8\xc2\xda\xae\xff\x1a\xf3\xc3\x08\xfe\xd5\x39\xa7\x1e\xa8\x01\x85\xa2\xc6\x02\xd9\x81\x0f\xa2\xe0\x8d\x59\x4f\x26\x23\x18\xdd\xfa\xe6\x1c\x5a\x34\xd1\xb0\x4e\x9b\x26\xa0\xd5\x1f\x47\x68\xfe\x67\x67\x36\x68\x87\x98\x91\xf5\xf0\xd3\xd1\x20\x96\x64\xa4\xe0\x50\xab\xa8\x47\xe0\xfa\xca\xc5\xd2\xa2\x60\xbc\x98\x19\xb6\xe4\x92\x8e\xe6\xe5\x4d\xf8\xfd\x37\x6a\x7a\x83\x80\xd1\x6d\x0b\x6f\x52\x03\xdf\x2b\xbe\xd5\x2e\x94\xea\x4f\xaa\xd3\xdf\xf2\x88\xb5\x1a\x42\xe1\x42\xc9\x6d\xd3\xf6\x86\x9e\x83\x5f\x01\x00\x00\xff\xff\xa1\xc8\xc2\x7d\x47\x04\x00\x00" func stakingproxyRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5959,11 +5960,11 @@ func stakingproxyRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x55, 0xf4, 0xb6, 0xef, 0xa5, 0x91, 0xdf, 0x85, 0xff, 0x8f, 0x28, 0xa1, 0x53, 0x69, 0x5a, 0x7e, 0x8e, 0x55, 0xcd, 0xa, 0xd5, 0xcc, 0x2c, 0x22, 0x93, 0xb6, 0xd1, 0xf4, 0x3, 0x6f, 0x61}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6a, 0xa8, 0x7a, 0xb4, 0x24, 0xcc, 0x6b, 0x8d, 0x67, 0xfe, 0xdd, 0x4c, 0xad, 0x2d, 0x6b, 0x86, 0x24, 0x5c, 0xfd, 0x26, 0x3e, 0x97, 0xdd, 0xeb, 0xd3, 0xd7, 0x4b, 0x36, 0xc8, 0xb5, 0xe2, 0x5c}} return a, nil } -var _stakingproxyRemove_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\x4d\x6a\xc3\x30\x10\x85\xf7\x3a\xc5\x23\x8b\x60\x6f\x7c\x00\xd3\x16\xfa\xb3\x68\x36\xad\xc1\xd0\xfd\xc4\x9e\x38\xa2\xb2\x46\x4c\xc6\x6d\x43\xc9\xdd\x8b\xe2\x90\x1a\xa2\x8d\xe0\x49\xdf\x9b\x6f\xfc\x98\x44\x0d\xad\xd1\xa7\x8f\x43\xa3\xf2\x73\xc4\x4e\x65\xc4\x6a\x19\xad\x9c\x33\xa5\x78\xa0\xce\xbc\xc4\x22\x4a\xcf\x9b\x97\x1a\xad\xa9\x8f\x43\x89\x5f\xe7\x00\x20\x29\x27\x52\x2e\xa8\xeb\x64\x8a\x56\x83\x26\xdb\x17\x4f\xa2\x2a\xdf\x1f\x14\x26\x2e\xb1\x7e\x9c\xdf\x32\x83\xcb\x09\x6c\x48\x79\xca\xab\x84\x9e\x15\xf7\xb8\x14\x54\x07\x13\xa5\x81\xab\xed\xb9\xe2\x6e\xbd\x54\xaa\xde\xa4\xe7\x1c\xb0\x36\xff\xf0\x43\x91\xe5\x6b\xdc\xfc\x7c\x4f\xac\x64\xa2\xcf\x94\x68\xeb\x83\xb7\x63\x3b\x97\x37\x64\xfb\xd2\x5d\x65\x16\x22\x95\xf2\x28\x5f\x9c\xe9\x4d\xdc\xc9\x75\xeb\xf9\x2e\xcf\xc8\xc9\x9d\xdc\x5f\x00\x00\x00\xff\xff\x28\xae\xe7\x3e\x43\x01\x00\x00" +var _stakingproxyRemove_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\x51\x4b\xc3\x40\x0c\xc7\xdf\xef\x53\xe4\x49\xda\x97\xe2\x73\x51\xe1\xb0\xa2\x45\xd8\x8e\x9d\x0f\xfa\x98\xb5\x59\x77\xd8\x5e\x8e\x98\xe9\x86\xec\xbb\xcb\xb9\x31\x0b\xe6\x25\x24\xfc\x7f\xe4\x97\x30\x25\x16\x05\xaf\xf8\x1e\xe2\xe0\x84\xf7\x07\xd8\x08\x4f\x70\xbd\xf7\x2f\xf6\xb9\x5d\x3c\xba\xd5\xf2\xf5\xcd\x36\xcd\xea\xc1\x7b\x63\x54\x30\x7e\x60\xa7\x81\x63\x11\xb9\xa7\xb6\xa9\xc1\xab\x84\x38\x94\xf0\x6d\x0c\x00\x40\x12\x4a\x28\x54\x60\xd7\xf1\x2e\x6a\x0d\x76\xa7\x5b\x7b\x1a\x72\x08\xce\x35\x92\x42\xca\x07\x9f\x78\xec\x49\xe0\x16\xce\x44\xb5\x66\x11\xfe\xba\xb9\x9a\x5b\x55\x0b\xee\x29\x2f\x48\xdc\x1f\x74\x57\x64\xd9\x1a\xfe\x25\x97\x89\x04\x95\xe5\x1e\x13\xae\xc3\x18\xf4\xe0\x95\x05\x07\x72\xa8\xdb\xd2\x5c\x24\x66\x02\x95\xd0\xc4\x9f\x94\xe9\x36\x6e\xf8\xf2\xde\xa9\x97\xbf\xc8\xd1\x1c\xcd\x4f\x00\x00\x00\xff\xff\x64\x64\x88\xd5\x33\x01\x00\x00" func stakingproxyRemove_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5979,11 +5980,11 @@ func stakingproxyRemove_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/remove_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0xf7, 0x1c, 0x46, 0x86, 0x72, 0x41, 0x59, 0x9b, 0xed, 0x64, 0x8f, 0xb4, 0x13, 0xa6, 0x40, 0x7a, 0xf2, 0x9a, 0x14, 0x5d, 0xf4, 0x21, 0xb0, 0x2, 0xbb, 0x79, 0xc5, 0x68, 0xb4, 0xb7, 0xcc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0x54, 0xc1, 0x59, 0xe, 0x14, 0xb4, 0xd3, 0xf1, 0xd2, 0xef, 0x53, 0xff, 0x63, 0xb9, 0x6d, 0x1c, 0x93, 0xfc, 0x57, 0x6, 0xae, 0xa4, 0x12, 0x64, 0x2f, 0xc5, 0x89, 0x83, 0xfe, 0x93, 0x46}} return a, nil } -var _stakingproxyRemove_staking_proxyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\x4d\x6a\xc3\x30\x10\x85\xf7\x3a\xc5\x23\x8b\x60\x6f\x7c\x00\xd3\x16\xfa\xb3\x68\x37\xad\xc1\xd0\xfd\xc4\x9e\xda\xa2\xb6\x46\x4c\xc6\x6d\x43\xc9\xdd\x8b\xe2\x90\x0a\xa2\x8d\xe0\x49\xef\x9b\x6f\xfc\x1c\x45\x0d\xad\xd1\xa7\x0f\x43\xa3\xf2\x73\xc0\x87\xca\x8c\x4d\x1e\x6d\x9c\x33\xa5\xb0\xa7\xce\xbc\x84\x22\x48\xcf\x2f\x4f\x35\x5a\x53\x1f\x86\x12\xbf\xce\x01\x40\x54\x8e\xa4\x5c\x50\xd7\xc9\x12\xac\x06\x2d\x36\x16\x0f\xa2\x2a\xdf\xef\x34\x2d\x5c\x62\x7b\xbf\xbe\xa5\x0e\xce\x67\x62\x43\x4c\x53\x9e\x65\xea\x59\x71\x8b\x33\xa0\xda\x9b\x28\x0d\x5c\xed\x4e\x88\x9b\x6d\xae\x54\xbd\x4a\xcf\x29\x60\x6d\xfe\xcb\x77\x45\x92\xaf\x11\xe9\xea\xef\x5b\x64\x25\x13\x7d\xa4\x48\x3b\x3f\x79\x3b\xb4\x2b\xbe\x21\x1b\x6d\x2c\xdd\x45\x28\x93\xa9\x94\x67\xf9\xe2\x1c\x76\xd9\x7e\xbd\xcb\x53\xed\xe8\x8e\xee\x2f\x00\x00\xff\xff\x69\xc3\x7d\xed\x4b\x01\x00\x00" +var _stakingproxyRemove_staking_proxyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xc1\x4a\xc3\x40\x10\x86\xef\xfb\x14\x73\x92\xe4\x12\x3c\x07\x15\x16\x23\x5a\x84\x76\xe9\x7a\xd0\xe3\x34\x19\x93\xc5\x64\x67\x19\xa7\xda\x22\x7d\x77\x59\x5b\x6a\xa0\x7b\x59\x66\xf8\xbf\x99\x6f\xc2\x94\x58\x14\xbc\xe2\x47\x88\xbd\x13\xde\xed\xe1\x5d\x78\x82\xeb\x9d\x7f\xb1\xcf\x8b\xe5\xa3\x5b\xaf\x5e\xdf\x6c\xd3\xac\x1f\xbc\x37\x46\x05\xe3\x27\xb6\x1a\x38\x16\x91\x3b\x5a\x34\x35\x78\x95\x10\xfb\x12\x7e\x8c\x01\x00\x48\x42\x09\x85\x0a\x6c\x5b\xde\x46\xad\xc1\x6e\x75\xb0\xc7\x22\x87\xe0\xf4\x46\x52\x48\x79\xe1\x13\x8f\x1d\x09\xdc\xc2\x89\xa8\x36\x2c\xc2\xdf\x37\x57\x73\xab\x6a\xc9\x1d\xe5\x06\x89\xfb\x87\xee\x8a\x2c\x5b\x43\xc2\x8b\xec\x2a\x91\xa0\xb2\xdc\x63\xc2\x4d\x18\x83\xee\xbd\xb2\x60\x4f\x0e\x75\xd0\xa1\x34\x67\x91\x99\x44\x25\x34\xf1\x17\xcd\x87\x9d\xcf\x3c\xfe\xe5\x1f\x76\x30\x07\xf3\x1b\x00\x00\xff\xff\x4f\x9f\x84\x5d\x3b\x01\x00\x00" func stakingproxyRemove_staking_proxyCdcBytes() ([]byte, error) { return bindataRead( @@ -5999,11 +6000,11 @@ func stakingproxyRemove_staking_proxyCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/remove_staking_proxy.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc8, 0xc0, 0x93, 0x87, 0x23, 0x74, 0x64, 0xa0, 0x10, 0x3f, 0xa9, 0x3b, 0xef, 0xb1, 0xde, 0xd5, 0xdb, 0x46, 0xc0, 0x26, 0x79, 0x83, 0x2d, 0x9b, 0x6, 0xd3, 0x1b, 0x19, 0x8, 0xcb, 0x3d, 0xa5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcd, 0xb7, 0xb8, 0xff, 0xfc, 0x1e, 0x9f, 0xd3, 0x1a, 0x76, 0xac, 0x78, 0xe0, 0x9c, 0xf6, 0x9e, 0xd9, 0xed, 0x85, 0xd4, 0x2b, 0xa4, 0x7e, 0xed, 0xc5, 0xbf, 0x38, 0x7c, 0x76, 0xe6, 0x74, 0x14}} return a, nil } -var _stakingproxyRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\x4d\x4b\xf3\x40\x10\xbe\xef\xaf\x98\x37\x87\xb2\x81\x97\x9c\xc4\x43\xb1\x16\xad\x88\x5e\xb4\x50\xea\x7d\x9a\x4c\x9b\xc5\x64\x67\x9d\x4c\xb0\x45\xfa\xdf\x25\xdd\xd8\xae\x38\x97\x81\x67\x76\x9e\x8f\x59\xd7\x06\x16\x85\x95\xe2\xbb\xf3\xbb\xa5\xf0\xfe\x00\x5b\xe1\x16\xb2\x14\xca\x8c\x51\x41\xdf\x61\xa9\x8e\xbd\xf5\x5c\xd1\xf3\xc3\x14\x56\x2a\xce\xef\xfe\x03\xb6\xdc\x7b\x9d\xc2\xfa\xd1\xed\xaf\xaf\x72\xf8\x32\x06\x00\x20\x08\x05\x14\xb2\x58\x96\x71\x8e\xbd\xd6\xf6\x9e\x45\xf8\xf3\x0d\x9b\x9e\x72\x98\xdc\xc5\xd9\xb0\x03\x63\x35\xa4\x10\x06\xd5\x27\x6e\x2a\x12\x98\xc1\x48\x50\x74\xca\x82\x3b\x2a\x36\x27\x8a\x9b\x49\x6a\xb1\x78\xe1\x8a\x06\x80\x64\x79\x59\xbe\xb5\x43\x98\x29\xfc\x79\xf9\x1a\x48\x50\x59\x16\x18\x70\xe3\x1a\xa7\x87\x55\x24\x5f\xa2\xd6\xf9\xd9\xcb\x50\xf3\x39\x04\xf4\xae\xb4\xd9\x82\xfb\xa6\x02\xcf\x0a\xd1\x01\x08\x6d\x49\xc8\x97\x04\xca\xd0\x45\x8d\xe8\x1d\xea\x93\x7e\x96\x9b\x5f\xb9\xba\xf4\xce\xb3\x34\xe6\x18\x2a\x35\x7a\xbe\x73\xec\xf9\xbf\x0b\x57\xca\x53\x08\x7d\xf4\xd4\xe9\xda\x8f\xa8\xfd\xf9\x8f\xd8\x63\x9a\xa3\x39\x9a\xef\x00\x00\x00\xff\xff\xda\xf0\xd0\xe7\xed\x01\x00\x00" +var _stakingproxyRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6b\xf2\x40\x10\xc7\xef\xfb\x29\xe6\xf1\xf0\x90\x40\x91\x1e\x4a\x0f\x52\x2b\x41\xfb\x22\x05\x0d\xa6\x42\x7b\x1c\x93\x51\x97\xc6\x9d\xed\x64\x42\x95\xe2\x77\x2f\xe9\xa6\x9a\xd2\xb9\x0c\x3b\x3b\x2f\xbf\xff\xdf\xee\x3c\x8b\x42\xa6\xf8\x66\xdd\x26\x15\xde\x1f\x60\x2d\xbc\x83\xcb\x7d\xf6\x9c\x3c\x4d\x67\x0f\xe9\x62\xfe\xf2\x9a\x4c\x26\x8b\xbb\x2c\x33\x46\x05\x5d\x85\xb9\x5a\x76\x91\xe3\x82\xa6\x93\x01\x64\x2a\xd6\x6d\x2e\x00\x77\x5c\x3b\x1d\xc0\xf2\xde\xee\xaf\xaf\x62\xf8\x34\x06\x00\xc0\x0b\x79\x14\x8a\x30\xcf\xc3\x7f\x52\xeb\x36\x09\x8f\xa6\x09\xda\x28\x49\xc1\x37\x00\x8f\x5c\x16\x24\x30\x84\x76\xa2\xbf\x62\x11\xfe\xb8\xf9\xdf\xa5\xec\xcf\xb8\xa0\xa6\x40\x92\x9e\x87\x6e\xa3\x06\x7e\x00\x7f\x3a\xe7\x9e\x04\x95\x65\x8c\x1e\x57\xb6\xb4\x7a\xc8\x94\x05\x37\x94\xa2\x6e\xe3\x13\x43\x13\xa3\x11\x78\x74\x36\x8f\x7a\x63\xae\xcb\x02\x1c\x2b\x04\x02\x10\x5a\x93\x90\xcb\x09\x94\xa1\x0a\x37\x02\x33\x6c\xbf\xef\xf7\x62\xf3\x4b\x4f\xd5\xf5\x75\xd8\x95\xd7\x8a\xea\x82\x9e\x0c\x0d\x39\xfe\x77\xde\xd5\xdd\xd3\x17\x7a\xaf\xa9\xd2\xa5\x6b\xab\xd1\x8f\xf1\x21\x07\x35\x47\x73\x34\x5f\x01\x00\x00\xff\xff\x09\x50\xee\xd5\xdd\x01\x00\x00" func stakingproxyRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -6019,11 +6020,11 @@ func stakingproxyRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x27, 0xc, 0x98, 0xb7, 0xdd, 0xba, 0xf0, 0x75, 0xec, 0x3a, 0xf0, 0x5f, 0xf6, 0x67, 0x82, 0x46, 0xbc, 0x45, 0xee, 0xe4, 0x17, 0x24, 0x7e, 0x73, 0x20, 0xb3, 0x84, 0x9f, 0x3, 0x4c, 0x6e, 0xc2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0x4, 0xb5, 0x6d, 0xd4, 0x43, 0x6a, 0x62, 0x66, 0x8f, 0xf8, 0x22, 0x3c, 0x0, 0xa1, 0xef, 0x32, 0x6c, 0x7a, 0x1, 0xa5, 0x6b, 0x83, 0x30, 0xa, 0x8d, 0x29, 0x5a, 0xdd, 0xda, 0x77, 0x79}} return a, nil } -var _stakingproxySetup_node_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\xc1\x6a\xc3\x30\x0c\x86\xef\x7e\x0a\xd1\x43\x71\x20\xcd\x03\x94\x6c\x30\x76\xd9\x69\x0b\x04\x76\x57\x5d\xad\x31\x4b\x6d\x23\x2b\x65\x65\xf4\xdd\x87\xd9\xf0\xec\x8e\xc1\xe6\x43\x0e\x8a\xf4\x7f\x9f\x64\x8f\xc1\xb3\xc0\x28\xf8\x6a\xdd\x61\x60\xff\x76\x86\x17\xf6\x47\x58\x95\xa5\x95\x52\xc2\xe8\x22\x1a\xb1\xde\xe9\x06\xde\x95\x02\x00\x08\x4c\x01\x99\xb4\xf3\x7b\x7a\x0a\xc4\x28\x9e\xb7\x80\x8b\x4c\x7a\xc4\x13\x3d\xe3\xbc\x50\x0b\xf7\x18\x70\x67\x67\x2b\x96\x62\x03\xeb\x3b\x63\xfc\xe2\x24\x85\xc0\xd7\x9b\x49\x20\x24\xd0\x83\x9f\xf7\xc4\xd0\x6f\x2a\xa3\xce\x30\xa1\xd0\xf0\xdd\xa1\x1b\x95\x87\x4b\x78\x17\xc5\x33\x1e\xa8\x8b\x78\x22\xdd\x6f\x8a\xd0\x16\xc4\x6f\xeb\xd8\xc7\x62\x32\x4b\x9e\xc7\xcf\x88\x01\x65\x2a\x28\x49\xd1\xd5\xfd\x70\x53\xb3\x4d\xb1\x67\x16\xb1\x31\x2e\xd4\xaf\x7f\x70\x53\x81\xb8\x58\xe9\x56\x67\x56\x7a\xff\x13\xcd\xa3\xbf\xdd\xa5\x72\x0b\xcb\x6e\xb6\x71\xaa\x81\x57\xcb\xb5\xd5\x4f\x94\x3f\x9d\x6e\x48\xc1\xe6\x4a\x28\x7d\x2f\xea\xa2\x3e\x02\x00\x00\xff\xff\x35\x26\xe1\xc1\x6b\x02\x00\x00" +var _stakingproxySetup_node_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xe6\x24\x29\xb4\xc5\x73\x09\x42\xb0\xa2\x22\xb4\xa1\xf1\xa0\xc7\xe9\x76\x4c\x97\x6e\x77\x96\xe9\x44\x5a\x4a\xfe\xbb\xac\x4a\x4c\x10\x51\xdf\x69\x59\xde\xfb\xde\x1b\xb7\x8f\x2c\x0a\x95\xe2\xce\x85\xba\x14\x3e\x9e\xe0\x45\x78\x0f\x97\xc7\xea\xb1\x78\xb8\x5f\xdc\x96\xab\xe5\xd3\x73\x31\x9f\xaf\x6e\xaa\xca\x18\x15\x0c\x07\xb4\xea\x38\x64\x23\x38\x1b\x03\x00\x10\x85\x22\x0a\x65\x81\x37\xb4\x8c\x24\xa8\x2c\x33\x28\x1a\xdd\x16\xd6\x72\x13\x34\x39\xe1\x53\x9e\x14\x62\xea\xb9\x63\xbf\x21\x81\x7c\x32\x68\x9f\x5a\x21\x54\x2a\xbf\x1c\xd9\xc8\x74\xe1\x7e\xc3\xf4\x80\xaf\x94\xe5\x93\x1e\x6c\x0c\xca\xb3\x21\x6e\xd1\x4b\x5c\x63\xc4\xb5\xf3\x4e\x4f\x95\xb2\x60\x4d\x25\xea\xf6\x27\xba\x77\x61\x97\x5f\x7c\x63\xa5\x0f\x92\xde\xbc\xf3\xef\x96\xb2\x59\x7b\x67\xdb\xab\xac\x6b\x4a\xfa\xc3\xcc\x8f\x60\x5a\x39\x1e\x44\x15\xa5\x26\xfd\xef\xa5\x1d\x62\xf4\xfe\x6a\x4d\x6b\xde\x02\x00\x00\xff\xff\xf8\x08\x93\x28\xff\x01\x00\x00" func stakingproxySetup_node_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -6039,11 +6040,11 @@ func stakingproxySetup_node_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/setup_node_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2f, 0x9a, 0xe3, 0x34, 0x75, 0x3a, 0xde, 0xe7, 0x18, 0x77, 0x38, 0x64, 0x59, 0x95, 0xee, 0xf8, 0x2d, 0xa4, 0x2a, 0x35, 0x96, 0xbf, 0x85, 0x5c, 0x95, 0x1a, 0x63, 0x1b, 0xba, 0xae, 0x8d, 0xd9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb3, 0x0, 0x84, 0x96, 0x15, 0xf1, 0x23, 0x27, 0xca, 0xa4, 0x4, 0xe3, 0xc0, 0x8c, 0xc9, 0x59, 0x5e, 0x1e, 0x11, 0x6b, 0xd7, 0xe2, 0x9f, 0x69, 0x3c, 0xf0, 0x3a, 0xc6, 0xb8, 0x32, 0x46, 0x24}} return a, nil } -var _stakingproxyStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\xcf\x4e\x32\x41\x0c\xbf\xcf\x53\xf4\xdb\x03\x99\x4d\xbe\xec\xc9\x78\x20\x22\x51\x8c\xd1\x0b\x92\xa0\xde\xcb\x6e\x81\x09\xcb\x74\xd2\xed\x06\x88\xe1\xdd\xcd\x30\x08\x63\xec\xa5\x99\x76\xfa\xfb\xd3\xba\x6d\x60\x51\x98\x2b\x6e\x9c\x5f\xcd\x84\xf7\x07\x58\x0a\x6f\xa1\xc8\x4b\x85\x31\x2a\xe8\x3b\xac\xd5\xb1\xb7\x9e\x1b\x7a\x7d\x1a\xc2\x5c\xc5\xf9\xd5\x7f\xc0\x2d\xf7\x5e\x87\xf0\xf1\xec\xf6\xb7\x37\x25\x7c\x19\x03\x00\x10\x84\x02\x0a\x59\xac\xeb\xd4\xc7\x5e\xd7\xf6\x91\x45\x78\xf7\x89\x6d\x4f\x25\x0c\x1e\x52\x2f\xce\xc0\x39\x5a\x52\x08\x91\xf5\x85\xdb\x86\x04\x46\x70\x06\xa8\x3a\x65\xc1\x15\x55\x8b\x13\xc4\xdd\x20\x97\x58\x4d\xb9\xa1\x58\x20\x99\x5d\x87\xef\x6d\x34\x33\x84\x3f\x3f\xdf\x02\x09\x2a\xcb\x04\x03\x2e\x5c\xeb\xf4\x30\x4f\xe0\x33\xd4\x75\x79\xd1\x12\x63\x3c\x86\x80\xde\xd5\xb6\x98\x70\xdf\x36\xe0\x59\x21\x29\x00\xa1\x25\x09\xf9\x9a\x40\x19\xba\xc4\x91\xb4\xc3\xfa\xc4\x5f\x94\xe6\x97\xaf\x2e\xdf\xf3\x28\xb7\x79\x36\x95\x0b\xbd\xec\x39\xe5\xf2\xdf\x15\x2b\xc7\xa9\xe2\x83\xa6\xb4\x7b\xe7\x0d\xf9\xce\xfe\x5c\x23\xe5\xe4\xe5\x68\x8e\xe6\x3b\x00\x00\xff\xff\x4a\x7f\x70\x48\xeb\x01\x00\x00" +var _stakingproxyStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6b\xc2\x40\x10\x86\xef\xfb\x2b\xa6\x1e\x4a\x02\x45\x7a\x28\x3d\x48\xad\x04\xed\x87\x14\x34\x18\x0b\xed\x71\x4c\x46\x5d\x8c\x3b\xcb\x64\x44\xa5\xf8\xdf\x4b\xba\xa9\xa6\x74\x2e\xc3\xec\xce\xc7\xf3\xbe\x76\xeb\x59\x14\x32\xc5\x8d\x75\xab\x54\xf8\x70\x84\xa5\xf0\x16\x6e\x0f\xd9\x3c\x79\x1b\x4f\x5e\xd2\xd9\xf4\xe3\x33\x19\x8d\x66\x4f\x59\x66\x8c\x0a\xba\x0a\x73\xb5\xec\x22\xc7\x05\x8d\x47\x3d\xc8\x54\xac\x5b\xdd\x00\x6e\x79\xe7\xb4\x07\xef\xcf\xf6\x70\x7f\x17\xc3\x97\x31\x00\x00\x5e\xc8\xa3\x50\x84\x79\x1e\xfe\x93\x9d\xae\x93\x50\xd4\x4d\xd0\x44\x49\x0a\xbe\x06\x78\xe5\xb2\x20\x81\x3e\x34\x13\xdd\x05\x8b\xf0\xfe\xe1\xba\x4d\xd9\x9d\x70\x41\xf5\x03\x49\x7a\x19\x7a\x8c\x6a\xf8\x1e\xfc\xeb\x9c\x7a\x12\x54\x96\x21\x7a\x5c\xd8\xd2\xea\x31\x53\x16\x5c\x51\x8a\xba\x8e\xcf\x0c\x75\x0c\x06\xe0\xd1\xd9\x3c\xea\x0c\x79\x57\x16\xe0\x58\x21\x10\x80\xd0\x92\x84\x5c\x4e\xa0\x0c\x55\xb8\x11\x98\x61\xfd\x73\xbf\x13\x9b\x3f\x7a\xaa\xb6\xaf\xfd\xb6\xbc\x46\x54\x1b\xf4\x6c\x68\xc8\xf1\xd5\x65\x57\x7b\x4f\xb7\x2e\x68\x42\xfb\x39\x6f\xc8\x55\xd1\xaf\xed\x21\x07\x2d\x27\x73\x32\xdf\x01\x00\x00\xff\xff\x05\x52\x1c\xe7\xdb\x01\x00\x00" func stakingproxyStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -6059,11 +6060,11 @@ func stakingproxyStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0xfa, 0xc3, 0x3c, 0x9f, 0xf3, 0x8a, 0x9a, 0xdc, 0x74, 0xf7, 0x2b, 0x88, 0xd7, 0x95, 0xad, 0x57, 0x4c, 0x88, 0xe3, 0xa3, 0x8b, 0x57, 0x16, 0x99, 0xaa, 0xf0, 0x72, 0xcb, 0x5b, 0x7a, 0x23}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0xf5, 0xa3, 0x7d, 0x2b, 0xd5, 0x34, 0x68, 0x9, 0xf5, 0x8c, 0xe, 0x3c, 0x2a, 0x21, 0xf4, 0x5c, 0x52, 0x32, 0x7, 0x34, 0x9e, 0xa7, 0x2d, 0x55, 0x9, 0x63, 0x5d, 0x22, 0xc2, 0x25, 0xd0}} return a, nil } -var _stakingproxyStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\xcd\x4e\x02\x41\x0c\xbe\xcf\x53\xd4\x3d\x90\xd9\xc4\xec\xc9\x78\x20\x22\x51\x8c\xd1\x8b\x92\x20\xde\xcb\x6e\x81\x09\xcb\x74\xd2\xed\x46\x88\xe1\xdd\xcd\x30\x08\x63\xec\xe5\xcb\xb6\xdb\xef\xa7\xe3\xb6\x81\x45\x61\xa6\xb8\x71\x7e\x35\x15\xde\xed\x61\x29\xbc\x85\x22\x6f\x15\xc6\xa8\xa0\xef\xb0\x56\xc7\xde\x7a\x6e\xe8\xf5\x69\x08\x33\x15\xe7\x57\xd7\x80\x5b\xee\xbd\x0e\x61\xfe\xec\x76\xb7\x37\x25\x7c\x1b\x03\x00\x10\x84\x02\x0a\x59\xac\xeb\x34\xc7\x5e\xd7\xf6\x91\x45\xf8\xeb\x13\xdb\x9e\x4a\x18\x3c\xa4\x59\xdc\x81\x53\xb5\xa4\x10\xa2\xea\x0b\xb7\x0d\x09\x8c\xe0\x44\x50\x75\xca\x82\x2b\xaa\x16\x47\x8a\xbb\x41\x6e\xb1\x7a\xe3\x86\x62\x83\x64\x7a\x59\xbe\xb7\x31\xcc\x10\xfe\xfd\xf9\x1e\x48\x50\x59\x26\x18\x70\xe1\x5a\xa7\xfb\x59\x22\x9f\xa2\xae\xcb\xb3\x97\x58\xe3\x31\x04\xf4\xae\xb6\xc5\x84\xfb\xb6\x01\xcf\x0a\xc9\x01\x08\x2d\x49\xc8\xd7\x04\xca\xd0\x25\x8d\xe4\x1d\xd6\x47\xfd\xa2\x34\x7f\x72\x75\xf9\x9d\x47\x79\xcc\x53\xa8\xdc\xe8\xf9\xce\x09\xcb\xab\x0b\x57\xce\x53\xc5\x0f\x9a\xfb\x23\x34\x1f\xbc\x21\xdf\xd9\xdf\x27\x49\x98\x02\x1d\xcc\xc1\xfc\x04\x00\x00\xff\xff\x6e\x84\xf8\xb2\xf0\x01\x00\x00" +var _stakingproxyStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6b\xf2\x40\x10\xc7\xef\xfb\x29\xe6\xf1\xf0\x90\x40\x91\x1e\x4a\x0f\x52\x2b\x41\xfb\x22\x05\x0d\x46\xa1\x3d\x8e\xc9\xa8\x8b\x71\x67\x99\x8c\x54\x29\x7e\xf7\x12\x37\xd5\x94\xce\x65\x98\xdd\x79\xf9\xfd\xff\x76\xe7\x59\x14\x32\xc5\xad\x75\xeb\x54\xf8\x70\x84\x95\xf0\x0e\x6e\x0f\xd9\x3c\x79\x1b\x4f\x5e\xd2\xd9\xf4\xfd\x23\x19\x8d\x66\x4f\x59\x66\x8c\x0a\xba\x0a\x73\xb5\xec\x22\xc7\x05\x8d\x47\x3d\xc8\x54\xac\x5b\xdf\x00\xee\x78\xef\xb4\x07\x8b\x67\x7b\xb8\xbf\x8b\xe1\xcb\x18\x00\x00\x2f\xe4\x51\x28\xc2\x3c\x0f\xff\xc9\x5e\x37\x49\x28\xea\x26\x68\xa2\x24\x05\x5f\x03\xbc\x72\x59\x90\x40\x1f\x9a\x89\xee\x92\x45\xf8\xf3\xe1\x7f\x9b\xb2\x3b\xe1\x82\xea\x07\x92\xf4\x3a\xf4\x18\xd5\xf0\x3d\xf8\xd3\x39\xf5\x24\xa8\x2c\x43\xf4\xb8\xb4\xa5\xd5\x63\xa6\x2c\xb8\xa6\x14\x75\x13\x5f\x18\xea\x18\x0c\xc0\xa3\xb3\x79\xd4\x19\xf2\xbe\x2c\xc0\xb1\x42\x20\x00\xa1\x15\x09\xb9\x9c\x40\x19\xaa\x70\x23\x30\xc3\xe6\x7c\xbf\x13\x9b\x5f\x7a\xaa\xb6\xaf\xfd\xb6\xbc\x46\x54\x1b\xf4\x62\x68\xc8\xf1\xbf\xeb\xae\xf6\x9e\x6e\x5d\xd0\xc2\x9d\x53\x31\xe7\x2d\xb9\x2a\xfa\xf1\x3e\xe4\x20\xe8\x64\x4e\xe6\x3b\x00\x00\xff\xff\x77\xae\x51\x52\xe0\x01\x00\x00" func stakingproxyStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -6079,11 +6080,11 @@ func stakingproxyStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x53, 0x74, 0x5, 0xf2, 0x15, 0x8f, 0x8f, 0x44, 0xd1, 0xb7, 0x61, 0x2e, 0x6d, 0xbc, 0x17, 0x94, 0x6b, 0xb1, 0x72, 0x8e, 0xed, 0xab, 0x61, 0x43, 0x74, 0x96, 0x45, 0x94, 0xd4, 0xa8, 0xce}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0x15, 0xbf, 0xec, 0x2c, 0xa1, 0xf, 0x8f, 0x26, 0xb9, 0x7f, 0x27, 0xf9, 0xf2, 0x13, 0xbe, 0xa, 0x44, 0x5f, 0x7f, 0x6b, 0x19, 0x18, 0xb2, 0xf7, 0x7, 0x6e, 0x41, 0x39, 0xf2, 0x8e, 0xf9}} return a, nil } -var _stakingproxyUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\xc1\x6e\xfa\x30\x0c\xc6\xef\x79\x0a\xff\x7b\x40\xe9\xa5\x0f\x80\xfe\x0c\x31\x76\xd8\x2e\x1b\x12\xd2\xee\xa6\x35\x6d\xb4\x10\x47\xae\xab\x0d\x4d\xbc\xfb\x14\x52\x41\xa6\xf9\x12\xc5\x89\xbf\xef\xf7\xd9\x9d\x22\x8b\xc2\x5e\xf1\xc3\x85\x7e\x27\xfc\x75\x86\xa3\xf0\x09\xaa\xb2\x55\x19\xa3\x82\x61\xc4\x56\x1d\x07\x1b\xb8\xa3\x97\xa7\x25\xec\x55\x5c\xe8\x6b\xf8\x36\x06\x00\x20\x0a\x45\x14\xb2\xd8\xb6\x3c\x05\x5d\x02\x4e\x3a\xd8\x47\x16\xe1\xcf\x77\xf4\x13\xd5\xb0\xd8\xe4\xb7\x34\x03\x73\x79\x52\x88\xc9\xe5\x99\x7d\x47\x02\x2b\x98\x05\x9a\x51\x59\xb0\xa7\xe6\x70\x95\xf8\xbf\x28\x91\x9a\x57\xee\x28\x35\x48\x76\xf7\xe1\x07\x9b\xe0\x97\xf0\xe7\xe7\x5b\x24\x41\x65\xd9\x62\xc4\x83\xf3\x4e\xcf\xfb\x2c\xbe\x43\x1d\xea\x1b\x4b\xaa\xf5\x1a\x22\x06\xd7\xda\x6a\xcb\x93\xef\x20\xb0\x42\x26\x00\xa1\x23\x09\x85\x96\x40\x19\xc6\xec\x91\xd9\x61\xb8\xfa\x57\xb5\xf9\x95\x6b\x2c\xf7\xba\x2a\x63\xce\xa1\x4a\xd0\xdb\x5e\xf3\x59\xff\xbb\x6b\x95\x3a\xcd\x14\xd2\x95\x36\xde\xdb\x4c\x7e\x31\x17\xf3\x13\x00\x00\xff\xff\xdd\x2c\x7a\xf3\xc9\x01\x00\x00" +var _stakingproxyUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x41\x6b\xfb\x30\x0c\xc5\xef\xfe\x14\xfa\xf7\xf0\x27\xb9\x94\x9d\xcb\xba\x12\xda\xb1\x95\x41\x1b\xea\x1d\xb6\xa3\x9b\xa8\x89\x99\x6b\x19\x45\x61\x2d\xa3\xdf\x7d\x78\x0e\x6d\xc6\x74\x31\x32\x92\xde\xef\x3d\x7b\x0c\xc4\x02\x5a\xcc\x87\xf5\x4d\xc9\x74\x3a\xc3\x81\xe9\x08\x77\x27\xfd\x5a\xbc\xac\x37\x4f\xe5\x6e\xfb\xf6\x5e\xac\x56\xbb\x47\xad\x95\x12\x36\xbe\x33\x95\x58\xf2\x99\xa7\x1a\xd7\xab\x19\x68\x61\xeb\x9b\x1c\xbe\x94\x02\x00\x08\x8c\xc1\x30\x66\xa6\xaa\xa8\xf7\x32\x83\xa2\x97\xb6\x48\x4d\x1c\x82\xa1\x1c\x0a\x84\x28\xf8\x4c\xae\x46\x86\x39\x0c\x1b\xd3\x3d\x31\xd3\xe7\xfd\xff\x31\xd5\x74\x43\x35\xc6\x0f\xe4\xf2\xb6\xf4\x90\x45\xd8\x19\xfc\x99\xdc\x06\x64\x23\xc4\x4b\x13\xcc\xde\x3a\x2b\x67\x2d\xc4\xa6\xc1\xd2\x48\x9b\x5f\x19\x62\x2d\x16\x10\x8c\xb7\x55\x36\x59\x52\xef\x6a\xf0\x24\x90\x08\x80\xf1\x80\x8c\xbe\x42\x10\x82\x2e\x69\x24\x66\x68\x7f\xf4\x27\xb9\xfa\xe5\xa7\x1b\xe7\x38\x1f\xdb\x1b\x4c\x8d\x41\xaf\x01\xa6\x37\xff\x77\xbb\x35\xbe\x33\xed\x7d\x6c\xb1\x70\x2e\x4b\xe4\x17\x75\x51\xdf\x01\x00\x00\xff\xff\x44\x15\xbb\x2b\xb9\x01\x00\x00" func stakingproxyUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -6099,11 +6100,11 @@ func stakingproxyUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0x90, 0x5b, 0x1f, 0x96, 0x97, 0xc4, 0x6a, 0x9, 0x69, 0x0, 0xc3, 0xb0, 0x20, 0x88, 0x83, 0xe, 0xb1, 0xf7, 0x4e, 0x33, 0xd9, 0x1b, 0x7, 0xc3, 0xad, 0xf5, 0xd0, 0x72, 0x2b, 0xc8, 0xf1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4e, 0x22, 0xbf, 0xdd, 0x5d, 0x32, 0xc7, 0xd6, 0xbb, 0x36, 0xf6, 0xe, 0xd0, 0x40, 0xd0, 0xa2, 0x2c, 0x84, 0x49, 0xdd, 0x16, 0xbf, 0x84, 0xa3, 0xa0, 0xb1, 0x4a, 0xc8, 0x33, 0x23, 0xef, 0xa9}} return a, nil } -var _stakingproxyWithdraw_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x41\x4f\xf3\x30\x0c\x86\xef\xf9\x15\xfe\x7a\x98\x5a\xe9\x53\x4f\x88\xc3\xc4\x98\x60\x08\xc1\x05\x26\x06\xdc\xbd\xc6\x5b\xa3\x75\x71\xe4\xba\xea\x26\xb4\xff\x8e\xba\x8c\x2d\x08\x5f\x2c\xd9\xf1\xeb\xf7\x71\xdc\x36\xb0\x28\x2c\x14\x37\xce\xaf\xe7\xc2\xbb\x3d\xac\x84\xb7\x90\xa5\xa5\xcc\x18\x15\xf4\x2d\x56\xea\xd8\xe7\x9e\x2d\x3d\x3f\x8c\x61\xa1\xe2\xfc\xfa\x3f\xe0\x96\x3b\xaf\x63\xf8\x78\x74\xbb\xeb\xab\x02\xbe\x8c\x01\x00\x08\x42\x01\x85\x72\xac\xaa\xd8\xc7\x4e\xeb\xfc\x9e\x45\xb8\xff\xc4\xa6\xa3\x02\x46\x77\xb1\x37\xcc\xc0\x29\x1a\x52\x08\xc3\xd6\x27\x6e\x2c\x09\x4c\xe0\x24\x50\xb6\xca\x82\x6b\x2a\x97\x47\x89\x9b\x51\x6a\xb1\x7c\x61\x4b\x43\x81\x64\x7e\x19\xbe\xcd\x07\x98\x31\xfc\x79\xf9\x1a\x48\x50\x59\x66\x18\x70\xe9\x1a\xa7\xfb\x45\x14\x9f\xa3\xd6\xc5\xd9\xcb\x10\xd3\x29\x04\xf4\xae\xca\xb3\x19\x77\x8d\x05\xcf\x0a\xd1\x01\x08\xad\x48\xc8\x57\x04\xca\xd0\xc6\x1d\xd1\x3b\xd4\xc7\xfd\x59\x61\x7e\x71\xb5\xe9\x9d\x27\x29\xe6\x09\x2a\x35\x7a\xbe\x73\xcc\xc5\xbf\x8b\x56\xaa\x53\xf6\x4e\x6b\x2b\xd8\xbf\x51\x8f\x62\xc9\xbe\xf3\x86\x7c\x9b\xff\xfc\x4a\xcc\x91\xe9\x60\x0e\xe6\x3b\x00\x00\xff\xff\x44\x7a\x9d\x16\xf3\x01\x00\x00" +var _stakingproxyWithdraw_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x5d\x6b\xea\x40\x10\x86\xef\xf3\x2b\xe6\x78\x71\x48\xe0\x20\xe7\xa2\xf4\x42\x6a\x25\x68\x3f\xa4\xa0\xc1\x58\x68\x2f\xc7\xec\x68\x16\xe3\xce\x32\x19\x89\x52\xfc\xef\x25\x5d\xab\x29\x9d\x9b\x61\x77\xbe\x9e\xf7\xb5\x3b\xcf\xa2\x90\x2b\x6e\xad\xdb\x64\xc2\x87\x23\xac\x85\x77\xf0\xff\x90\x2f\xd3\x97\xe9\xec\x29\x5b\xcc\xdf\xde\xd3\xc9\x64\xf1\x90\xe7\x51\xa4\x82\xae\xc6\x42\x2d\xbb\xd8\xb1\xa1\xe9\x64\x00\xb9\x8a\x75\x9b\x7f\x80\x3b\xde\x3b\x1d\xc0\xeb\xa3\x3d\xdc\xde\x24\xf0\x11\x45\x00\x00\x5e\xc8\xa3\x50\x8c\x45\x11\xea\xe9\x5e\xcb\x34\x3c\xda\x26\x38\x47\x45\x0a\xbe\x05\x78\xe6\xca\x90\xc0\x10\xce\x13\xfd\x15\x8b\x70\x73\xf7\xb7\x4b\xd9\x9f\xb1\xa1\xf6\x83\x24\xbb\x0e\xdd\xc7\x2d\xfc\x00\x7e\x75\xce\x3d\x09\x2a\xcb\x18\x3d\xae\x6c\x65\xf5\x98\x2b\x0b\x6e\x28\x43\x2d\x93\x0b\x43\x1b\xa3\x11\x78\x74\xb6\x88\x7b\x63\xde\x57\x06\x1c\x2b\x04\x02\x10\x5a\x93\x90\x2b\x08\x94\xa1\x0e\x37\x02\x33\x94\x5f\xf7\x7b\x49\xf4\x43\x4f\xdd\xf5\x75\xd8\x95\x77\x16\xd5\x05\xbd\x18\x1a\x72\xf2\xe7\xba\xab\xbb\xa7\xdf\x58\x2d\x8d\x60\xb3\xa0\x06\xc5\x90\x59\xf2\x96\x5c\x1d\x7f\xdb\x1f\x72\xd0\x74\x8a\x4e\xd1\x67\x00\x00\x00\xff\xff\x3f\x35\x0b\xc5\xe3\x01\x00\x00" func stakingproxyWithdraw_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -6119,11 +6120,11 @@ func stakingproxyWithdraw_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/withdraw_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0x67, 0xcd, 0x39, 0x60, 0x24, 0xa6, 0xba, 0xe0, 0x8a, 0xb5, 0x4e, 0x33, 0x37, 0x28, 0xc9, 0xc3, 0xda, 0x33, 0x76, 0x7b, 0xa, 0x4e, 0xd6, 0x9e, 0xc7, 0x9b, 0x7e, 0x8e, 0x7b, 0x77, 0x87}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe5, 0xb1, 0xc7, 0x2c, 0xab, 0x3c, 0x5b, 0xe5, 0xb1, 0xa4, 0x2e, 0xb, 0x7, 0xa6, 0x21, 0xff, 0x71, 0x28, 0x8f, 0x68, 0xb5, 0x96, 0x7, 0xf5, 0x2e, 0x1c, 0xf5, 0xc2, 0xcf, 0x22, 0xdb, 0xd3}} return a, nil } -var _stakingproxyWithdraw_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\x4d\x6b\xf2\x40\x10\xbe\xef\xaf\x98\x37\x07\x49\xe0\x25\xa7\xd2\x83\xd4\x4a\x6b\x29\xed\xa5\x15\xac\xbd\x8f\xc9\x68\x16\xe3\xce\x32\x99\xa0\x52\xfc\xef\x65\xdd\x54\xb7\x74\x2e\x03\xcf\xec\x3c\x1f\xb3\x76\xe7\x59\x14\x16\x8a\x5b\xeb\x36\x73\xe1\xc3\x11\xd6\xc2\x3b\xc8\x52\x28\x33\x46\x05\x5d\x87\x95\x5a\x76\xb9\xe3\x9a\x5e\x9f\xc6\xb0\x50\xb1\x6e\xf3\x1f\x70\xc7\xbd\xd3\x31\x2c\x9f\xed\xe1\xf6\xa6\x80\x2f\x63\x00\x00\xbc\x90\x47\xa1\x1c\xab\x2a\xce\xb1\xd7\x26\x7f\x64\x11\xde\x7f\x62\xdb\x53\x01\xa3\x87\x38\x0b\x3b\x30\x54\x4b\x0a\x3e\xa8\xbe\x70\x5b\x93\xc0\x04\x06\x82\xb2\x53\x16\xdc\x50\xb9\x3a\x53\xdc\x8d\x52\x8b\xe5\x1b\xd7\x14\x00\x92\xf9\x75\xf9\x3e\x0f\x61\xc6\xf0\xe7\xe5\xbb\x27\x41\x65\x99\xa1\xc7\x95\x6d\xad\x1e\x17\x91\x7c\x8e\xda\x14\x17\x2f\xa1\xa6\x53\xf0\xe8\x6c\x95\x67\x33\xee\xdb\x1a\x1c\x2b\x44\x07\x20\xb4\x26\x21\x57\x11\x28\x43\x17\x35\xa2\x77\x68\xce\xfa\x59\x61\x7e\xe5\xea\xd2\x3b\x4f\xd2\x98\x43\xa8\xd4\xe8\xe5\xce\xb1\x17\xff\xae\x5c\x29\x4f\xb9\xb7\xda\xd4\x82\xfb\xa5\x0b\x30\xd5\x1f\xbc\x25\xd7\xe5\x3f\xbf\x12\x7b\xcc\x74\x32\x27\xf3\x1d\x00\x00\xff\xff\x6b\x4e\x2d\x38\xf3\x01\x00\x00" +var _stakingproxyWithdraw_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6b\xf2\x40\x10\xc7\xef\xfb\x29\xe6\xf1\xf0\x90\x40\x91\x1e\x4a\x0f\x52\x2b\x41\xfb\x22\x05\x0d\x46\xa1\x3d\x8e\xc9\x68\x16\xe3\xce\x32\x19\x51\x29\x7e\xf7\x92\xae\xd5\x94\xce\x65\xd8\xd9\x79\xf9\xfd\xff\x76\xeb\x59\x14\x32\xc5\x8d\x75\xeb\x54\xf8\x70\x84\x95\xf0\x16\x6e\x0f\xd9\x3c\x79\x1b\x4f\x5e\xd2\xd9\xf4\xfd\x23\x19\x8d\x66\x4f\x59\x66\x8c\x0a\xba\x1a\x73\xb5\xec\x22\xc7\x05\x8d\x47\x3d\xc8\x54\xac\x5b\xdf\x00\x6e\x79\xe7\xb4\x07\x8b\x67\x7b\xb8\xbf\x8b\xe1\xd3\x18\x00\x00\x2f\xe4\x51\x28\xc2\x3c\x0f\xff\xc9\x4e\xcb\x24\x3c\x9a\x26\x38\x47\x45\x0a\xbe\x01\x78\xe5\xaa\x20\x81\x3e\x9c\x27\xba\x4b\x16\xe1\xfd\xc3\xff\x36\x65\x77\xc2\x05\x35\x05\x92\xf4\x3a\xf4\x18\x35\xf0\x3d\xf8\xd3\x39\xf5\x24\xa8\x2c\x43\xf4\xb8\xb4\x95\xd5\x63\xa6\x2c\xb8\xa6\x14\xb5\x8c\x2f\x0c\x4d\x0c\x06\xe0\xd1\xd9\x3c\xea\x0c\x79\x57\x15\xe0\x58\x21\x10\x80\xd0\x8a\x84\x5c\x4e\xa0\x0c\x75\xb8\x11\x98\xa1\xfc\xbe\xdf\x89\xcd\x2f\x3d\x75\xdb\xd7\x7e\x5b\xde\x59\x54\x1b\xf4\x62\x68\xc8\xf1\xbf\xeb\xae\xf6\x9e\xee\xde\x6a\x59\x08\xee\x17\xae\x29\x53\x31\xe7\x0d\xb9\x3a\xfa\xb1\x3f\xe4\xa0\xe9\x64\x4e\xe6\x2b\x00\x00\xff\xff\x10\x01\xbb\xeb\xe3\x01\x00\x00" func stakingproxyWithdraw_unstakedCdcBytes() ([]byte, error) { return bindataRead( @@ -6139,11 +6140,11 @@ func stakingproxyWithdraw_unstakedCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/withdraw_unstaked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb2, 0x72, 0x63, 0xb9, 0x44, 0x4, 0x84, 0x7a, 0xbd, 0x19, 0x88, 0x23, 0x78, 0x77, 0xb6, 0xf0, 0xfe, 0x8a, 0x5c, 0xf2, 0x6f, 0xa2, 0xf, 0xda, 0xdb, 0xb1, 0x89, 0x1c, 0x19, 0xb5, 0x56, 0x95}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xf, 0x29, 0xf5, 0x62, 0x4a, 0xb5, 0x57, 0xd8, 0x30, 0x56, 0xc8, 0xbd, 0xe9, 0x8c, 0x9d, 0x40, 0x3, 0xa3, 0x63, 0xca, 0xca, 0x56, 0x54, 0x8d, 0x6c, 0x8c, 0x8b, 0x40, 0x53, 0xa1, 0xe3}} return a, nil } -var _storagefeesAdminSet_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x2f\x3e\x04\x19\x8a\x74\x29\x3d\x98\xa6\x26\x29\xe8\xd4\xd0\x92\xfe\x3b\x4f\xd6\x23\x6b\x8b\xb4\x2b\x66\x47\x75\x4a\xd1\x77\x2f\xab\x3f\xae\x12\xd7\xa6\x7b\x90\x40\x7a\xef\xcd\x6f\x66\xd6\x36\xad\x17\x45\x51\xfb\xc3\x67\xf5\x42\x7b\x2e\x98\x03\x4a\xf1\x0d\x56\x2f\xbe\xae\x92\x24\xcf\xf1\xa5\xb2\x01\x2a\xe4\x02\x19\xb5\xde\xc1\x54\xe4\xf6\x1c\xa0\x15\xa3\xac\xfd\x01\x61\xb4\xa0\x8c\x49\x2d\x09\x35\xac\x2c\x21\x59\x98\xd2\x49\x73\xf7\x4b\x39\x7c\x62\x79\xe0\xc0\xf2\x93\x77\xc5\x87\x8f\xdf\x37\xf8\x5a\xd8\xa7\x37\xaf\xb7\xaf\xd0\x58\x67\x9b\xae\x99\x18\x46\x11\x45\xff\x51\xb3\xc6\xef\x04\x00\x86\x47\xcd\x0a\xda\x35\xd6\x3d\x70\xb9\xc1\xf5\x0b\xfc\xec\x36\xfe\xb2\x41\x85\xd4\x4b\x32\x38\x5a\xe1\x96\x84\x53\x32\x46\x37\xa0\x4e\xab\xf4\xce\x8b\xf8\xc3\x37\xaa\x3b\x5e\xe3\xfa\xd6\x18\xdf\x39\x9d\xcb\xc4\x93\xe7\x78\x1c\x34\x20\x08\x97\x2c\xec\x0c\x43\xfd\x30\x80\xa1\x3c\xfc\xe3\x0f\x36\x7a\x74\x04\xae\xcb\x6c\x06\xc3\x0d\x62\xb5\x6c\x9a\x40\x36\x66\xbd\xbd\x4c\xfb\x2e\x8d\x1b\xd9\x20\x9f\x5c\xf3\x3b\x2a\x07\xe1\xfa\x58\x2c\x9e\xed\x16\x2d\x39\x6b\xd2\xd5\x7b\xdf\xd5\x3b\x38\xaf\x33\xf3\x33\xe2\x67\x9b\x1a\x00\x57\x63\x50\x3f\x8e\x87\x9f\xd8\x74\xca\x8b\xe6\x6d\x89\x0b\xab\xc3\xd5\x0d\x9c\xad\x17\xfa\x93\xf6\xb3\xc0\x3a\xb5\x79\xcf\x7b\xfa\x57\xca\xa5\xcb\x71\xf5\xb7\xd1\x7e\x09\x75\xf6\xa6\xfc\x27\xd2\xfd\x39\x7f\x7a\x36\xf9\x04\xa5\x4f\xfa\x3f\x01\x00\x00\xff\xff\x05\xa9\x75\x7a\x4f\x03\x00\x00" +var _storagefeesAdminSet_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6f\xd3\x40\x10\xc5\xef\xfe\x14\xaf\x3d\x20\x57\x42\x31\x07\xc4\x21\xa2\x44\x86\xc6\x5c\xa8\x8a\xe2\x22\xce\xdb\xcd\x38\x5e\x64\xef\x5a\xb3\x63\x12\x84\xfc\xdd\xd1\xfa\x4f\x70\x09\x89\xba\x87\xe4\xe0\xf7\xde\xfc\xde\xce\x9a\xba\x71\x2c\xc8\x2a\xb7\xcf\xc5\xb1\xda\x51\x46\xe4\x51\xb0\xab\xf1\xe6\x90\x7d\x79\xf8\x9e\x3f\x3e\x6c\xd2\xcf\xeb\x6c\xbd\xce\xd3\xbb\xbb\xcd\x3a\xcf\xa3\x28\x49\xf0\x58\x1a\x0f\x61\x65\xbd\xd2\x62\x9c\x85\x2e\x95\xdd\x91\x87\x94\x84\xa2\x72\x7b\xf8\x21\x0f\x45\x08\x6c\x14\xab\x9a\x84\xd8\x47\x33\x53\x3c\x6a\x3e\xfe\x12\xf2\x5f\x89\x37\xe4\x89\x7f\xd2\x36\xcc\x5d\xe2\x5b\x66\x0e\xef\xde\xae\x5e\xa3\x36\xd6\xd4\x6d\x3d\x02\x0e\x22\x15\xfc\x47\xcd\x0d\x7e\x47\x00\xd0\xff\x54\x24\x50\xdb\xda\xd8\x0d\x15\x4b\xbc\xfa\xa7\xdb\x22\x0d\x9f\x8c\x17\x56\xe2\x38\xea\x1d\x0d\x53\xa3\x98\x62\xa5\xb5\x2c\x91\xb6\x52\xa6\x5a\xbb\xd6\xca\x94\x1b\x4e\x92\xe0\xc9\x31\xbb\x3d\x14\x98\x0a\x62\xb2\x9a\x20\xae\x6f\xdc\xcf\x83\x7b\xfa\x41\x5a\x8e\x0e\x4f\x55\xb1\x98\x48\x70\x8b\x10\xbf\x18\x32\xde\x5f\xc6\xfa\x10\x87\x0d\x2c\x91\x8c\x17\x34\xfd\x07\x65\x2f\xbc\x39\x0e\x09\x67\xb5\x42\xa3\xac\xd1\xf1\xf5\x27\xd7\x56\x5b\x58\x27\x13\xeb\x33\xd2\x67\x2b\xe9\xc1\xae\x87\xa0\x6e\xb8\x07\x3a\x90\x6e\x85\x66\xa5\x4d\x81\x0b\x3b\xc2\xd5\x2d\xac\xa9\x66\xfa\x93\xda\x0b\x4f\x32\xd6\xbc\xa7\x9d\xfa\x5f\xca\xa5\x57\x70\xf5\xb7\x68\x37\x87\x3a\xfb\x24\x5e\x88\x74\x7f\xce\x1f\x9f\x4d\x3e\x41\xe9\xa2\xee\x4f\x00\x00\x00\xff\xff\xec\x9d\x5e\x73\x3f\x03\x00\x00" func storagefeesAdminSet_parametersCdcBytes() ([]byte, error) { return bindataRead( @@ -6159,11 +6160,11 @@ func storagefeesAdminSet_parametersCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/admin/set_parameters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0xd9, 0x32, 0xf5, 0x38, 0x90, 0x33, 0x23, 0xa, 0xeb, 0x8b, 0x76, 0xae, 0x50, 0x25, 0x2e, 0x3c, 0x95, 0x89, 0x31, 0x1, 0xd0, 0xa6, 0x9b, 0x56, 0x9b, 0x20, 0xe1, 0x48, 0x5e, 0xa9, 0x5c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa7, 0xa3, 0x32, 0x6, 0x3f, 0x4f, 0xeb, 0xc7, 0xce, 0x3b, 0x61, 0xd9, 0x69, 0x36, 0x97, 0xdd, 0xaf, 0xd5, 0xa1, 0x25, 0x5d, 0xda, 0xa7, 0x27, 0x20, 0xcd, 0x26, 0x35, 0xa6, 0xb4, 0x82, 0xd1}} return a, nil } -var _storagefeesScriptsGet_account_available_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8d\x31\x0e\xc2\x30\x0c\x45\xf7\x9c\xe2\xab\x53\xbb\x30\x21\x86\x6e\x65\xe8\x05\x80\x03\x98\xd4\x45\x11\xae\x8d\x9c\x04\x90\x10\x77\x67\x61\xca\xf6\xf4\x86\xf7\xd2\xf6\x30\x2f\x98\xc5\x5e\xa7\x62\x4e\x37\x9e\x99\x33\x56\xb7\x0d\x5d\x63\xbb\x10\x28\x46\xce\xb9\x27\x91\x01\x6b\x55\x6c\x94\xb4\xa7\x18\xad\x6a\x99\x96\xc5\x39\xe7\x11\x7f\x18\x46\x5c\xe6\xf4\x3e\xec\xf1\x09\x00\xe0\x5c\xaa\x6b\xbb\xda\x2d\xbc\x52\x95\x72\xb6\x3b\xeb\xf4\xa4\x24\x74\x15\x3e\x92\x90\x46\x6e\xd2\x43\xf8\x86\xf0\x0b\x00\x00\xff\xff\xee\x68\x60\x24\xb2\x00\x00\x00" +var _storagefeesScriptsGet_account_available_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\xb1\x0e\x82\x30\x14\x46\xe1\xbd\x4f\xf1\x8f\xb2\x18\x07\xe3\xc0\x56\x43\xeb\x62\x42\x42\x31\xce\x17\xb8\x98\xc6\xd2\x92\xd2\x2a\x89\xf1\xdd\x5d\x9c\xd8\xce\x74\x3e\x3b\xcd\x21\x26\x68\x17\xde\x26\x85\x48\x0f\xd6\xcc\x0b\xc6\x18\x26\x1c\x56\x7d\xad\xef\xa6\xad\x1b\x79\x51\x5a\x29\x23\xab\xaa\x51\xc6\x08\x31\xe7\x0e\x63\xf6\x98\xc8\xfa\x1d\xf5\x7d\xc8\x3e\xc9\x61\x88\xbc\x2c\x25\xfe\x51\x94\xb8\x69\xbb\x9e\x8e\xf8\x08\x00\x88\x9c\x72\xf4\x5b\x69\x3f\xf0\x48\xd9\xa5\x36\x3c\xd9\xcb\x17\x59\x47\x9d\xe3\x33\x39\xf2\x3d\x6f\xd6\x85\xf8\x0a\xf1\x0b\x00\x00\xff\xff\x79\xc3\x9c\x46\xb1\x00\x00\x00" func storagefeesScriptsGet_account_available_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -6179,11 +6180,11 @@ func storagefeesScriptsGet_account_available_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/scripts/get_account_available_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x32, 0x50, 0xda, 0x76, 0x6e, 0x91, 0xb, 0x23, 0x25, 0x39, 0x44, 0xac, 0xdf, 0x2c, 0xbb, 0xea, 0x83, 0xa1, 0xba, 0xc6, 0x85, 0x46, 0x4d, 0xac, 0x95, 0xe4, 0x42, 0xdd, 0x66, 0xb6, 0x86, 0xba}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0xfd, 0x85, 0x8, 0x30, 0x9, 0x65, 0xb6, 0x3a, 0x50, 0x6, 0x71, 0x64, 0x59, 0xeb, 0x4d, 0xb0, 0x14, 0xfb, 0xae, 0xc5, 0xa0, 0x16, 0xaa, 0x51, 0xa, 0x9a, 0x9d, 0x98, 0x6e, 0xb0, 0x97}} return a, nil } -var _storagefeesScriptsGet_accounts_capacity_for_transaction_storage_checkCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\x21\x27\x1b\x4c\x4f\xa5\x07\xdd\x42\x40\x3f\xd0\xf4\x14\x72\x58\x94\x4d\x2a\x6a\x49\x66\x57\xa6\x0e\xa5\xff\x5e\x12\x0b\x63\x5c\x5d\x34\x3c\x86\xd9\x17\xe2\x90\xa5\xc0\xf5\xf9\xfb\xbd\x64\xa1\x1b\x3b\x66\xc5\x55\x72\xc4\x6e\x43\x77\xc6\x90\xf7\xac\xda\x50\xdf\xb7\xb8\x8e\x09\x91\x42\x6a\xc8\xfb\x3c\xa6\xb2\xbf\x5c\x84\x55\x59\x2d\x4e\x35\x9f\x3b\x0c\x74\x67\xb1\xa8\xa0\x43\xa4\xe9\x38\x3d\xd6\x2c\x3e\x5c\x98\xde\x5e\x5b\x8b\xd3\x9c\xce\xf8\x31\x00\x20\x5c\x46\x49\x5b\xa7\x97\x1b\x97\xfd\x7c\x49\x0f\x34\x90\x0f\xe5\xee\xb2\x1c\x85\x92\x92\x2f\x21\xa7\x5a\x3e\x7c\xb2\xff\x6a\x9e\x4b\x8f\xf7\xdf\x6e\x4b\x3a\x2c\xe5\x6a\xfb\xfc\x56\x78\x25\xbd\xc4\xd6\xfc\xfe\x05\x00\x00\xff\xff\x33\xc0\x69\x3d\x3d\x01\x00\x00" +var _storagefeesScriptsGet_accounts_capacity_for_transaction_storage_checkCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\x41\x6b\x02\x31\x10\x85\xef\xfb\x2b\xde\x51\x61\x29\x3d\x94\x1e\xf6\xb6\xe8\xa6\x97\x82\x60\xb6\xf4\x20\x1e\xa6\x71\xb4\xa1\xdd\x64\x99\x24\x34\x52\xfa\xdf\x8b\x1a\x44\xd6\x5c\xf2\xf8\x78\xcc\xfb\xec\x30\x7a\x89\x50\xdf\xfe\x47\x47\x2f\x74\x60\xc5\x1c\xb0\x17\x3f\xe0\x31\xab\xd7\xd5\xbb\xee\x57\xeb\xf6\xa5\x53\x5d\xa7\xdb\xe5\x72\xdd\x69\x5d\x55\x63\xfa\xc0\x3e\x39\x0c\x64\xdd\x8c\x8c\xf1\xc9\xc5\x76\xb7\x13\x0e\x81\x43\x83\x4d\xc9\xdb\x1a\x23\x1d\x59\x1a\x14\x50\x63\xa0\xdc\xe7\xd3\x44\x83\x37\x65\xf3\xf3\xd3\xbc\xc1\xe6\x92\xb6\xf8\xad\x00\x40\x38\x26\x71\x53\xa5\x87\x03\xc7\xf6\xb2\x14\x16\x34\x92\xb1\xf1\xa8\xbc\xf4\x42\x2e\x90\x89\xd6\xbb\x52\x5e\x7c\xb2\xf9\x9a\x9d\x2f\x9d\xde\xbd\xdd\x94\xd4\xb8\x96\x8b\xed\xf9\xbb\xc1\x37\xd2\xd7\x38\xaf\xfe\xfe\x03\x00\x00\xff\xff\xbd\x5a\xcf\x11\x3c\x01\x00\x00" func storagefeesScriptsGet_accounts_capacity_for_transaction_storage_checkCdcBytes() ([]byte, error) { return bindataRead( @@ -6199,11 +6200,11 @@ func storagefeesScriptsGet_accounts_capacity_for_transaction_storage_checkCdc() } info := bindataFileInfo{name: "storageFees/scripts/get_accounts_capacity_for_transaction_storage_check.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9b, 0xdf, 0x5, 0xd2, 0x29, 0xa8, 0x2a, 0x4b, 0xa1, 0xae, 0xb3, 0x56, 0xc, 0xa9, 0x35, 0x83, 0xaa, 0xa7, 0x33, 0x53, 0x3b, 0xa3, 0x19, 0x1b, 0x71, 0x36, 0xbc, 0x97, 0x1, 0x9, 0x48, 0xcc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0x34, 0x74, 0x75, 0xae, 0x8f, 0x8, 0xcb, 0xda, 0x26, 0x6c, 0x8f, 0x86, 0x16, 0xb6, 0x27, 0x87, 0xd8, 0x97, 0xb6, 0x67, 0x1d, 0x1d, 0x3, 0xc4, 0xdb, 0xf1, 0x9a, 0x5f, 0xa8, 0x96, 0x9f}} return a, nil } -var _storagefeesScriptsGet_storage_capacityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\xbd\xaa\xc2\x40\x10\xc5\xf1\x7e\x9e\xe2\x90\x2a\x69\x6e\x75\xb1\x48\x17\x84\xbc\x80\xf8\x00\xc3\x64\x22\x0b\xfb\x11\x66\x67\x51\x11\xdf\xdd\x42\xab\xed\x0e\xa7\xf8\xfd\x43\x3a\x8a\x39\xd6\x58\xee\x17\x2f\xc6\x37\x5d\x55\x2b\x76\x2b\x09\x43\xf7\x0e\x44\x2c\xa2\xb5\x8e\x1c\xe3\x84\xbd\x65\x24\x0e\x79\x64\x91\xd2\xb2\x2f\xdb\x66\x5a\xeb\x8c\xdf\x98\x66\x5c\xd7\xf0\x38\xfd\xe3\x45\x00\x60\xea\xcd\x72\x9f\xfa\x13\x8e\xd2\x22\xbb\x2e\x5f\xe6\xcc\x07\x4b\xf0\x67\xc7\x4e\xf4\x26\xfa\x04\x00\x00\xff\xff\x8c\x0d\x5c\xd9\xae\x00\x00\x00" +var _storagefeesScriptsGet_storage_capacityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\xb1\x0a\xc2\x30\x14\x46\xe1\x3d\x4f\xf1\x8f\x76\x11\x07\x71\xe8\x16\x6c\xe2\x22\x14\x1a\xc5\xf9\x9a\xa6\x12\x68\x93\x92\xdc\x60\x45\x7c\x77\x07\x9d\xba\x9d\xe9\x3b\x7e\x9a\x63\x62\xe8\x31\x3e\x0d\xc7\x44\x0f\xa7\x9d\xcb\x18\x52\x9c\xb0\x5b\xf4\xb9\xbd\x99\x4b\xdb\xc9\x93\xd2\x4a\x19\xd9\x34\x9d\x32\x46\x88\xb9\xdc\x31\x94\x80\x89\x7c\xd8\x90\xb5\xb1\x04\x96\x7d\x9f\x5c\xce\x35\xfe\x51\xd5\xb8\x6a\xbf\x1c\xf6\x78\x0b\x00\x48\x8e\x4b\x0a\xeb\xd3\xd6\xd2\x68\xcb\x48\xec\xe4\x8f\x39\xd2\x4c\xd6\xf3\x6b\xc5\x56\xe2\x23\xc4\x37\x00\x00\xff\xff\x28\x3f\x05\x18\xad\x00\x00\x00" func storagefeesScriptsGet_storage_capacityCdcBytes() ([]byte, error) { return bindataRead( @@ -6219,11 +6220,11 @@ func storagefeesScriptsGet_storage_capacityCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/scripts/get_storage_capacity.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x63, 0xd2, 0xf3, 0x9f, 0xea, 0xbb, 0x73, 0x3a, 0x51, 0xc8, 0xd, 0x5e, 0xc2, 0x63, 0x95, 0xa, 0x55, 0x31, 0x8e, 0x32, 0xbd, 0x2f, 0x88, 0xfe, 0xca, 0x12, 0x76, 0xa7, 0x3d, 0x7f, 0x40, 0xa7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1b, 0x18, 0xd9, 0xdf, 0xe2, 0x7a, 0x84, 0x72, 0x8c, 0xe3, 0xb1, 0x8d, 0xfc, 0x60, 0x9a, 0x3b, 0x64, 0xba, 0x43, 0xad, 0xab, 0x45, 0xaa, 0x55, 0xd9, 0x37, 0x6b, 0x76, 0x54, 0x24, 0x1f, 0x95}} return a, nil } -var _storagefeesScriptsGet_storage_fee_conversionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x2e\xc9\x2f\x4a\x4c\x4f\x75\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x50\x42\x13\x55\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x37\x53\xaf\x18\xc2\xf6\x4d\x4d\x4f\x74\xaa\x2c\x49\x2d\x0e\x48\x2d\x0a\x4a\x2d\x4e\x2d\x2a\x4b\x4d\x71\xf3\xf1\x0f\xe7\xaa\xe5\xe2\x02\x04\x00\x00\xff\xff\x0f\x9e\x44\xff\x8e\x00\x00\x00" +var _storagefeesScriptsGet_storage_fee_conversionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x2e\xc9\x2f\x4a\x4c\x4f\x75\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x0f\x0e\xf1\x0f\x72\x74\x77\x75\x73\x75\x0d\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x37\x52\xaf\x18\xc2\xf6\x4d\x4d\x4f\x74\xaa\x2c\x49\x2d\x0e\x48\x2d\x0a\x4a\x2d\x4e\x2d\x2a\x4b\x4d\x01\x59\xc3\x55\xcb\xc5\x05\x08\x00\x00\xff\xff\x26\x69\x66\x9f\x8d\x00\x00\x00" func storagefeesScriptsGet_storage_fee_conversionCdcBytes() ([]byte, error) { return bindataRead( @@ -6239,11 +6240,11 @@ func storagefeesScriptsGet_storage_fee_conversionCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/scripts/get_storage_fee_conversion.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0x5c, 0x5d, 0x1, 0xde, 0x2a, 0xe5, 0x96, 0x6b, 0x2b, 0x70, 0x3a, 0x9c, 0xae, 0x50, 0x36, 0x4a, 0xea, 0xf2, 0xef, 0x3d, 0xdd, 0xf7, 0xa2, 0x20, 0x5c, 0x52, 0xf6, 0xb7, 0x93, 0x56, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0x34, 0x70, 0x9c, 0x9c, 0xb7, 0x42, 0x13, 0x80, 0x4a, 0x0, 0x5e, 0x5b, 0x24, 0x1a, 0xee, 0x7d, 0x4e, 0x56, 0x8c, 0x3b, 0x21, 0xe6, 0x9f, 0xf8, 0xaf, 0xb2, 0xe6, 0x4d, 0xda, 0xfa, 0xd7}} return a, nil } -var _storagefeesScriptsGet_storage_fee_minCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcc\x31\x0a\x02\x41\x0c\x05\xd0\x3e\xa7\xf8\x6c\xb5\xdb\x58\x89\x85\x07\x98\x03\x28\x1e\x20\x2c\x59\x09\x4c\x12\xc9\xcc\xa8\x20\xde\xdd\xc6\x6a\xdb\x57\x3c\xb5\x47\x64\x47\xa9\xf1\xba\xf6\x48\xbe\x4b\x11\x69\xd8\x32\x0c\xd3\x4e\x27\x22\x5e\x57\x69\x6d\xe6\x5a\x17\x6c\xc3\x61\xac\x3e\x2f\x67\xdc\x8a\xbe\x4f\x47\x7c\x08\x00\x52\xfa\x48\xdf\x9f\x07\x53\x57\x1b\xf6\xa7\x8b\x34\xc9\x27\x77\x0d\xa7\x2f\xd1\x2f\x00\x00\xff\xff\x10\x6e\x9d\x6a\x88\x00\x00\x00" +var _storagefeesScriptsGet_storage_fee_minCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcc\xb1\x0a\xc2\x30\x10\x06\xe0\xfd\x9e\xe2\x1f\x75\x11\x07\x71\x70\x2b\x34\x71\x11\x0a\x89\xe2\x1c\xe1\x2a\x07\x5e\x52\xae\x89\x16\xc4\x77\x77\x71\x72\xfd\x86\x4f\x74\x2a\x56\xe1\x1f\xe5\x15\x6b\xb1\x74\x67\xcf\x3c\x63\xb4\xa2\xd8\x2e\xfe\x34\x5c\xe3\x79\x08\xdd\xd1\x79\xe7\x62\xd7\xf7\xc1\xc5\x48\x34\xb5\x1b\xc6\x96\xa1\x49\xf2\x6a\x7d\xc0\xc5\xcb\xb2\xdf\xe1\x4d\x00\x60\x5c\x9b\xe5\xff\x72\xa3\x92\x45\x9b\xfe\x28\xf0\xcc\xf6\x4c\x55\x4a\xa6\x0f\xd1\x37\x00\x00\xff\xff\x80\x78\xb4\x0e\x87\x00\x00\x00" func storagefeesScriptsGet_storage_fee_minCdcBytes() ([]byte, error) { return bindataRead( @@ -6259,7 +6260,7 @@ func storagefeesScriptsGet_storage_fee_minCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/scripts/get_storage_fee_min.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x65, 0x59, 0xec, 0xe1, 0xe, 0xc5, 0x8d, 0x9f, 0xd9, 0x60, 0xe4, 0x4e, 0xd0, 0x48, 0x59, 0xf0, 0xe1, 0x96, 0xc1, 0xc, 0xa, 0xd6, 0x95, 0x97, 0xa3, 0x50, 0x4c, 0xd1, 0x1d, 0x13, 0x3f, 0x1a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0x6d, 0xce, 0x10, 0xa9, 0x56, 0xe9, 0xc8, 0x0, 0xe6, 0x53, 0xcf, 0xc8, 0xb4, 0x52, 0x31, 0x44, 0xca, 0x1e, 0xe7, 0x1d, 0x2e, 0xe0, 0x25, 0xfd, 0xf5, 0x2c, 0x90, 0x3d, 0xbc, 0x7d, 0xeb}} return a, nil } @@ -6372,9 +6373,6 @@ var _bindata = map[string]func() (*asset, error){ "FlowServiceAccount/set_is_account_creation_restricted.cdc": flowserviceaccountSet_is_account_creation_restrictedCdc, "FlowServiceAccount/set_tx_fee_parameters.cdc": flowserviceaccountSet_tx_fee_parametersCdc, "FlowServiceAccount/set_tx_fee_surge_factor.cdc": flowserviceaccountSet_tx_fee_surge_factorCdc, - "accounts/add_key.cdc": accountsAdd_keyCdc, - "accounts/create_new_account.cdc": accountsCreate_new_accountCdc, - "accounts/revoke_key.cdc": accountsRevoke_keyCdc, "dkg/admin/force_stop_dkg.cdc": dkgAdminForce_stop_dkgCdc, "dkg/admin/publish_participant.cdc": dkgAdminPublish_participantCdc, "dkg/admin/set_safe_threshold.cdc": dkgAdminSet_safe_thresholdCdc, @@ -6401,6 +6399,7 @@ var _bindata = map[string]func() (*asset, error){ "epoch/admin/deploy_epoch.cdc": epochAdminDeploy_epochCdc, "epoch/admin/deploy_qc_dkg.cdc": epochAdminDeploy_qc_dkgCdc, "epoch/admin/pay_rewards.cdc": epochAdminPay_rewardsCdc, + "epoch/admin/recover_epoch.cdc": epochAdminRecover_epochCdc, "epoch/admin/reset_epoch.cdc": epochAdminReset_epochCdc, "epoch/admin/set_automatic_rewards.cdc": epochAdminSet_automatic_rewardsCdc, "epoch/admin/set_bonus_tokens.cdc": epochAdminSet_bonus_tokensCdc, @@ -6523,6 +6522,7 @@ var _bindata = map[string]func() (*asset, error){ "idTableStaking/scripts/get_total_staked.cdc": idtablestakingScriptsGet_total_stakedCdc, "idTableStaking/scripts/get_total_staked_by_type.cdc": idtablestakingScriptsGet_total_staked_by_typeCdc, "idTableStaking/scripts/get_weekly_payout.cdc": idtablestakingScriptsGet_weekly_payoutCdc, + "inspect_field.cdc": inspect_fieldCdc, "lockedTokens/admin/admin_create_shared_accounts.cdc": lockedtokensAdminAdmin_create_shared_accountsCdc, "lockedTokens/admin/admin_deploy_contract.cdc": lockedtokensAdminAdmin_deploy_contractCdc, "lockedTokens/admin/admin_deposit_account_creator.cdc": lockedtokensAdminAdmin_deposit_account_creatorCdc, @@ -6535,6 +6535,7 @@ var _bindata = map[string]func() (*asset, error){ "lockedTokens/admin/custody_create_shared_accounts.cdc": lockedtokensAdminCustody_create_shared_accountsCdc, "lockedTokens/admin/custody_setup_account_creator.cdc": lockedtokensAdminCustody_setup_account_creatorCdc, "lockedTokens/admin/deposit_locked_tokens.cdc": lockedtokensAdminDeposit_locked_tokensCdc, + "lockedTokens/admin/get_unlocking_bad_accounts.cdc": lockedtokensAdminGet_unlocking_bad_accountsCdc, "lockedTokens/admin/unlock_tokens.cdc": lockedtokensAdminUnlock_tokensCdc, "lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc": lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc, "lockedTokens/delegator/delegate_new_tokens.cdc": lockedtokensDelegatorDelegate_new_tokensCdc, @@ -6658,13 +6659,11 @@ const AssetDebug = false // directory embedded in the file by go-bindata. // For example if you run go-bindata on data/... and data contains the // following hierarchy: -// -// data/ -// foo.txt -// img/ -// a.png -// b.png -// +// data/ +// foo.txt +// img/ +// a.png +// b.png // then AssetDir("data") would return []string{"foo.txt", "img"}, // AssetDir("data/img") would return []string{"a.png", "b.png"}, // AssetDir("foo.txt") and AssetDir("notexist") would return an error, and @@ -6719,11 +6718,6 @@ var _bintree = &bintree{nil, map[string]*bintree{ "set_tx_fee_parameters.cdc": {flowserviceaccountSet_tx_fee_parametersCdc, map[string]*bintree{}}, "set_tx_fee_surge_factor.cdc": {flowserviceaccountSet_tx_fee_surge_factorCdc, map[string]*bintree{}}, }}, - "accounts": {nil, map[string]*bintree{ - "add_key.cdc": {accountsAdd_keyCdc, map[string]*bintree{}}, - "create_new_account.cdc": {accountsCreate_new_accountCdc, map[string]*bintree{}}, - "revoke_key.cdc": {accountsRevoke_keyCdc, map[string]*bintree{}}, - }}, "dkg": {nil, map[string]*bintree{ "admin": {nil, map[string]*bintree{ "force_stop_dkg.cdc": {dkgAdminForce_stop_dkgCdc, map[string]*bintree{}}, @@ -6758,6 +6752,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "deploy_epoch.cdc": {epochAdminDeploy_epochCdc, map[string]*bintree{}}, "deploy_qc_dkg.cdc": {epochAdminDeploy_qc_dkgCdc, map[string]*bintree{}}, "pay_rewards.cdc": {epochAdminPay_rewardsCdc, map[string]*bintree{}}, + "recover_epoch.cdc": {epochAdminRecover_epochCdc, map[string]*bintree{}}, "reset_epoch.cdc": {epochAdminReset_epochCdc, map[string]*bintree{}}, "set_automatic_rewards.cdc": {epochAdminSet_automatic_rewardsCdc, map[string]*bintree{}}, "set_bonus_tokens.cdc": {epochAdminSet_bonus_tokensCdc, map[string]*bintree{}}, @@ -6900,6 +6895,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "get_weekly_payout.cdc": {idtablestakingScriptsGet_weekly_payoutCdc, map[string]*bintree{}}, }}, }}, + "inspect_field.cdc": {inspect_fieldCdc, map[string]*bintree{}}, "lockedTokens": {nil, map[string]*bintree{ "admin": {nil, map[string]*bintree{ "admin_create_shared_accounts.cdc": {lockedtokensAdminAdmin_create_shared_accountsCdc, map[string]*bintree{}}, @@ -6914,6 +6910,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "custody_create_shared_accounts.cdc": {lockedtokensAdminCustody_create_shared_accountsCdc, map[string]*bintree{}}, "custody_setup_account_creator.cdc": {lockedtokensAdminCustody_setup_account_creatorCdc, map[string]*bintree{}}, "deposit_locked_tokens.cdc": {lockedtokensAdminDeposit_locked_tokensCdc, map[string]*bintree{}}, + "get_unlocking_bad_accounts.cdc": {lockedtokensAdminGet_unlocking_bad_accountsCdc, map[string]*bintree{}}, "unlock_tokens.cdc": {lockedtokensAdminUnlock_tokensCdc, map[string]*bintree{}}, "unlock_tokens_for_multiple_accounts.cdc": {lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc, map[string]*bintree{}}, }}, @@ -7082,7 +7079,7 @@ func RestoreAsset(dir, name string) error { if err != nil { return err } - err = os.WriteFile(_filePath(dir, name), data, info.Mode()) + err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode()) if err != nil { return err } From 5791ea4e1d4eb7488d197bc4a86a6feaaec6afab Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Fri, 12 Apr 2024 12:12:44 -0400 Subject: [PATCH 101/160] happy path tests --- lib/go/test/flow_epoch_test.go | 134 +++++++++++++++++++++++++++++++++ 1 file changed, 134 insertions(+) diff --git a/lib/go/test/flow_epoch_test.go b/lib/go/test/flow_epoch_test.go index 912c4765f..051e71822 100644 --- a/lib/go/test/flow_epoch_test.go +++ b/lib/go/test/flow_epoch_test.go @@ -1361,3 +1361,137 @@ func TestEpochReset(t *testing.T) { assertEqual(t, CadenceUFix64("249999.99300000"), result) }) } + +func TestEpochRecover(t *testing.T) { + b, _, accountKeys, env := newTestSetup(t) + + // Create new keys for the epoch account + idTableAccountKey, IDTableSigner := accountKeys.NewWithSigner() + + // Deploys the staking contract, qc, dkg, and epoch lifecycle contract + // staking contract is deployed with default values (1.25M rewards, 8% cut) + idTableAddress, _ := initializeAllEpochContracts(t, b, idTableAccountKey, IDTableSigner, &env, + startEpochCounter, // start epoch counter + numEpochViews, // num views per epoch + numStakingViews, // num views for staking auction + numDKGViews, // num views for DKG phase + numClusters, // num collector clusters + randomSource, // random source + rewardIncreaseFactor) + + // create new user accounts, mint tokens for them, and register them for staking + addresses, _, signers := registerAndMintManyAccounts(t, b, env, accountKeys, numEpochAccounts) + ids, _, _ := generateNodeIDs(numEpochAccounts) + // stakingPrivateKeys + _, stakingPublicKeys, _, networkingPublicKeys := generateManyNodeKeys(t, numEpochAccounts) + registerNodesForStaking(t, b, env, + addresses, + signers, + stakingPublicKeys, + networkingPublicKeys, + ids) + + // Set the approved node list + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateSetApprovedNodesScript(env), idTableAddress) + + approvedNodeIDs := generateCadenceNodeDictionary(ids) + err := tx.AddArgument(approvedNodeIDs) + require.NoError(t, err) + + signAndSubmit( + t, b, tx, + []flow.Address{idTableAddress}, + []sdkcrypto.Signer{IDTableSigner}, + false, + ) + + // Advance to epoch Setup and make sure that the epoch cannot be ended + advanceView(t, b, env, idTableAddress, IDTableSigner, 1, "EPOCHSETUP", false) + + // Register a QC voter + tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateEpochRegisterQCVoterScript(env), addresses[0]) + signAndSubmit( + t, b, tx, + []flow.Address{addresses[0]}, + []sdkcrypto.Signer{signers[0]}, + false, + ) + + tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateEpochRegisterQCVoterScript(env), addresses[5]) + signAndSubmit( + t, b, tx, + []flow.Address{addresses[5]}, + []sdkcrypto.Signer{signers[5]}, + false, + ) + + // Register a DKG Participant + tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateEpochRegisterDKGParticipantScript(env), addresses[1]) + signAndSubmit( + t, b, tx, + []flow.Address{addresses[1]}, + []sdkcrypto.Signer{signers[1]}, + false, + ) + + clusterQCs := make([][]string, numClusters) + clusterQCs[0] = make([]string, 1) + clusterQCs[1] = make([]string, 1) + + // collectorVoteHasher := crypto.NewExpandMsgXOFKMAC128(collectorVoteTag) + + t.Run("Can recover the epoch and have everything return to normal", func(t *testing.T) { + + var startView uint64 = 100 + var stakingEndView uint64 = 120 + var endView uint64 = 160 + + tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateRecoverEpochScript(env), idTableAddress) + tx.AddArgument(CadenceString("stillSoRandom")) + tx.AddArgument(cadence.NewUInt64(startView)) + tx.AddArgument(cadence.NewUInt64(stakingEndView)) + tx.AddArgument(cadence.NewUInt64(endView)) + tx.AddArgument(cadence.NewArray([]cadence.Value{})) // collectorClusters + tx.AddArgument(cadence.NewArray([]cadence.Value{})) // clusterQCVoteData + + dkgPubKeys := []string{"pubkey_1"} + dkgPubKeysCdc := make([]cadence.Value, len(dkgPubKeys)) + for i, key := range dkgPubKeys { + dkgPubKeysCdc[i], _ = cadence.NewString(key) + } + tx.AddArgument(cadence.NewArray(dkgPubKeysCdc)) + + nodeIDs := make([]cadence.Value, len(ids)) + for i, id := range ids { + nodeIDs[i], _ = cadence.NewString(id) + } + tx.AddArgument(cadence.NewArray(nodeIDs)) + + signAndSubmit( + t, b, tx, + []flow.Address{idTableAddress}, + []sdkcrypto.Signer{IDTableSigner}, + false, + ) + + verifyEpochMetadata(t, b, env, + EpochMetadata{ + counter: startEpochCounter + 1, + seed: "stillSoRandom", + startView: startView, + endView: endView, + stakingEndView: stakingEndView, + totalRewards: "0.0", + rewardsBreakdownArray: 0, + rewardsPaid: false, + collectorClusters: nil, + clusterQCs: nil, + dkgKeys: dkgPubKeys}) + + // result := executeScriptAndCheck(t, b, templates.GenerateGetDKGEnabledScript(env), nil) + // assert.Equal(t, cadence.NewBool(false), result) + + // result = executeScriptAndCheck(t, b, templates.GenerateGetQCEnabledScript(env), nil) + // assert.Equal(t, cadence.NewBool(false), result) + }) +} From 4fa05d5cb8198b1d10fd5ea326cdf8bc5ff104c2 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Fri, 12 Apr 2024 13:02:45 -0400 Subject: [PATCH 102/160] Update flow_epoch_test.go --- lib/go/test/flow_epoch_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/go/test/flow_epoch_test.go b/lib/go/test/flow_epoch_test.go index 051e71822..ac30d5303 100644 --- a/lib/go/test/flow_epoch_test.go +++ b/lib/go/test/flow_epoch_test.go @@ -1488,10 +1488,10 @@ func TestEpochRecover(t *testing.T) { clusterQCs: nil, dkgKeys: dkgPubKeys}) - // result := executeScriptAndCheck(t, b, templates.GenerateGetDKGEnabledScript(env), nil) - // assert.Equal(t, cadence.NewBool(false), result) + result := executeScriptAndCheck(t, b, templates.GenerateGetDKGEnabledScript(env), nil) + assert.Equal(t, cadence.NewBool(false), result) - // result = executeScriptAndCheck(t, b, templates.GenerateGetQCEnabledScript(env), nil) - // assert.Equal(t, cadence.NewBool(false), result) + result = executeScriptAndCheck(t, b, templates.GenerateGetQCEnabledScript(env), nil) + assert.Equal(t, cadence.NewBool(false), result) }) } From c256d3c78a697733715dec37ff6bea8e5431896a Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Mon, 15 Apr 2024 14:43:43 -0400 Subject: [PATCH 103/160] upgrade changes to be compliant with cadence 1.0 - add service event verification to tests - update test helpers - add node weight sanity check --- contracts/epochs/FlowClusterQC.cdc | 6 +- contracts/epochs/FlowEpoch.cdc | 110 +- lib/go/templates/internal/assets/assets.go | 1870 ++++++++++---------- lib/go/test/epoch_test_helpers.go | 124 ++ lib/go/test/flow_epoch_test.go | 37 +- transactions/epoch/admin/recover_epoch.cdc | 11 +- transactions/epoch/admin/reset_epoch.cdc | 2 +- 7 files changed, 1165 insertions(+), 995 deletions(-) diff --git a/contracts/epochs/FlowClusterQC.cdc b/contracts/epochs/FlowClusterQC.cdc index 340e621f4..e5995dba1 100644 --- a/contracts/epochs/FlowClusterQC.cdc +++ b/contracts/epochs/FlowClusterQC.cdc @@ -260,12 +260,12 @@ access(all) contract FlowClusterQC { /// Represents the quorum certificate vote data for a signer /// of the certificate. - pub struct ClusterQCVoteData { + access(all) struct ClusterQCVoteData { /// The vote signatures from all the nodes in the cluster - pub var voteSignatures: [String] + access(all) let voteSignatures: [String] /// The node IDs that correspond to each vote - pub var voterIDs: [String] + access(all) let voterIDs: [String] init(signatures: [String], message: String, voterIDs: [String]) { self.voteSignatures = signatures diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index d0d29d4db..2d6aa6cec 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -117,9 +117,9 @@ access(all) contract FlowEpoch { /// EpochSetup phase. Deadlines are specified in terms of a consensus view number. /// When a DKG participant observes a finalized and sealed block with view greater /// than the given deadline, it can safely transition to the next phase. - DKGPhase1FinalView: UInt64, - DKGPhase2FinalView: UInt64, - DKGPhase3FinalView: UInt64, + dkgPhase1FinalView: UInt64, + dkgPhase2FinalView: UInt64, + dkgPhase3FinalView: UInt64, /// The target duration for the upcoming epoch, in seconds targetDuration: UInt64, @@ -151,7 +151,7 @@ access(all) contract FlowEpoch { /// gets into an EFM state the recoverEpoch transaction is used to override the current epoch and recover the network without /// sporking. This service event is processed by protocol participants to update their local protocol state with the new recover /// epoch data. - pub event EpochRecover ( + access(all) event EpochRecover ( /// The counter for the RecoveryEpoch. counter: UInt64, @@ -179,9 +179,9 @@ access(all) contract FlowEpoch { /// EpochSetup phase. Deadlines are specified in terms of a consensus view number. /// When a DKG participant observes a finalized and sealed block with view greater /// than the given deadline, it can safely transition to the next phase. - DKGPhase1FinalView: UInt64, - DKGPhase2FinalView: UInt64, - DKGPhase3FinalView: UInt64, + dkgPhase1FinalView: UInt64, + dkgPhase2FinalView: UInt64, + dkgPhase3FinalView: UInt64, /// The target duration for the upcoming epoch, in seconds targetDuration: UInt64, @@ -202,56 +202,54 @@ access(all) contract FlowEpoch { /// This struct is a 1:1 copy of the event EpochRecover event and is /// is used to populate all the fields of the event when the heartbeat /// detects a new RecoverEpochMetadata stored. - pub struct RecoverEpochMetadata { + access(all) struct RecoverEpochMetadata { /// The counter for the RecoveryEpoch. - pub let counter: UInt64 + access(all) let counter: UInt64 - /// Identity table for the upcoming epoch with all node information. - /// including nodeID, staking key, networking key, networking address, role, - /// staking information, weight, and more. - pub let nodeInfo: [FlowIDTableStaking.NodeInfo] + /// List of ids for all identitities in the identity table for the upcoming epoch. + access(all) let nodeIDs: [String] /// The first view (inclusive) of the RecoveryEpoch. - pub let firstView: UInt64 + access(all) let firstView: UInt64 /// The last view (inclusive) of the RecoveryEpoch. - pub let finalView: UInt64 + access(all) let finalView: UInt64 /// The last view (inclusive) of the staking phase. - pub let stakingEndView: UInt64 + access(all) let stakingEndView: UInt64 /// The cluster assignment for the RecoveryEpoch. Each element in the list /// represents one cluster and contains all the node IDs assigned to that /// cluster, with their weights and votes - pub let collectorClusters: [[String]] + access(all) let collectorClusters: [[String]] /// The source of randomness to seed the leader selection algorithm with /// for the upcoming epoch. - pub let randomSource: String + access(all) let randomSource: String /// The deadlines of each phase in the DKG protocol to be completed in the upcoming /// EpochSetup phase. Deadlines are specified in terms of a consensus view number. /// When a DKG participant observes a finalized and sealed block with view greater /// than the given deadline, it can safely transition to the next phase. - pub let DKGPhase1FinalView: UInt64 - pub let DKGPhase2FinalView: UInt64 - pub let DKGPhase3FinalView: UInt64 + access(all) let dkgPhase1FinalView: UInt64 + access(all) let dkgPhase2FinalView: UInt64 + access(all) let dkgPhase3FinalView: UInt64 /// The target duration for the upcoming epoch, in seconds - pub let targetDuration: UInt64 + access(all) let targetDuration: UInt64 /// The target end time for the upcoming epoch, specified in second-precision Unix time - pub let targetEndTime: UInt64 + access(all) let targetEndTime: UInt64 /// The cluster QCs passed in the recoverEpoch transaction. These are generated out-of-band /// using the same procedure as during a spork. - pub let clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData] + access(all) let clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData] /// The DKG public keys passed in the recoverEpoch transaction. These are re-used from the /// last successful DKG. - pub let dkgPubKeys: [String] + access(all) let dkgPubKeys: [String] init(counter: UInt64, - nodeInfo: [FlowIDTableStaking.NodeInfo], + nodeIDs: [String], firstView: UInt64, finalView: UInt64, stakingEndView: UInt64, @@ -266,15 +264,15 @@ access(all) contract FlowEpoch { dkgPubKeys: [String]) { self.counter = counter - self.nodeInfo = nodeInfo + self.nodeIDs = nodeIDs self.firstView = firstView self.finalView = finalView self.stakingEndView = stakingEndView self.collectorClusters = collectorClusters self.randomSource = randomSource - self.DKGPhase1FinalView = dkgPhase1FinalView - self.DKGPhase2FinalView = dkgPhase2FinalView - self.DKGPhase3FinalView = dkgPhase3FinalView + self.dkgPhase1FinalView = dkgPhase1FinalView + self.dkgPhase2FinalView = dkgPhase2FinalView + self.dkgPhase3FinalView = dkgPhase3FinalView self.targetDuration = targetDuration self.targetEndTime = targetEndTime self.clusterQCVoteData = clusterQCVoteData @@ -572,7 +570,7 @@ access(all) contract FlowEpoch { /// This function saves the recovery epoch metadata in storage containing the full specification for the new epoch. /// This meta data will be emitted in the EpochRecover service event in the next heart beat interval. /// This function is used within sporks to recover the network from Epoch Fallback Mode (EFM). - pub fun recoverEpoch( + access(all) fun recoverEpoch( randomSource: String, startView: UInt64, stakingEndView: UInt64, @@ -586,6 +584,14 @@ access(all) contract FlowEpoch { FlowEpoch.isValidPhaseConfiguration(stakingEndView-startView+1, FlowEpoch.configurableMetadata.numViewsInDKGPhase, endView-startView+1): "Invalid startView, stakingEndView, and endView configuration" } + + /// sanity check all nodes should have a weight > 0 + for nodeID in nodeIDs { + assert( + FlowIDTableStaking.NodeInfo(nodeID: nodeID).initialWeight > 0, + message: "all nodes in node ids list for recovery epoch must have a weight > 0" + ) + } if FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION { // Since we are resetting the epoch, we do not need to @@ -597,15 +603,6 @@ access(all) contract FlowEpoch { FlowEpoch.borrowDKGAdmin().forceEndDKG() } - // Construct the identity table for the recovery epoch - let nodes: [FlowIDTableStaking.NodeInfo] = [] - - for nodeID in nodeIDs { - /// @TODO: if node is SN ensure weight > 0 - /// throw exception, or add with 0 weight - nodes.append(FlowIDTableStaking.NodeInfo(nodeID)) - } - // Compute the target end time for the next epoch let timingConfig = FlowEpoch.getEpochTimingConfig() let proposedTargetDuration = timingConfig.duration @@ -614,7 +611,7 @@ access(all) contract FlowEpoch { // Create new Epoch metadata for the next epoch // with the new values let newEpochMetadata = EpochMetadata( - counter: FlowEpoch.currentEpochCounter + 1, + counter: FlowEpoch.proposedEpochCounter(), seed: randomSource, startView: startView, endView: endView, @@ -634,15 +631,15 @@ access(all) contract FlowEpoch { // Emit the service event, which notifies the protocol state about the RecoveryEpoch let recoverEpochMetadata = FlowEpoch.RecoverEpochMetadata( counter: FlowEpoch.currentEpochCounter, - nodeInfo: nodes, + nodeIDs: nodeIDs, firstView: startView, finalView: endView, stakingEndView: stakingEndView, collectorClusters: collectorClusters, randomSource: randomSource, - DKGPhase1FinalView: startView + FlowEpoch.configurableMetadata.numViewsInStakingAuction + FlowEpoch.configurableMetadata.numViewsInDKGPhase - 1 as UInt64, - DKGPhase2FinalView: startView + FlowEpoch.configurableMetadata.numViewsInStakingAuction + (2 as UInt64 * FlowEpoch.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, - DKGPhase3FinalView: startView + FlowEpoch.configurableMetadata.numViewsInStakingAuction + (3 as UInt64 * FlowEpoch.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, + dkgPhase1FinalView: startView + FlowEpoch.configurableMetadata.numViewsInStakingAuction + FlowEpoch.configurableMetadata.numViewsInDKGPhase - 1 as UInt64, + dkgPhase2FinalView: startView + FlowEpoch.configurableMetadata.numViewsInStakingAuction + (2 as UInt64 * FlowEpoch.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, + dkgPhase3FinalView: startView + FlowEpoch.configurableMetadata.numViewsInStakingAuction + (3 as UInt64 * FlowEpoch.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, targetDuration: proposedTargetDuration, targetEndTime: proposedTargetEndTime, clusterQCVoteData: clusterQCVoteData, @@ -651,7 +648,7 @@ access(all) contract FlowEpoch { /// save the recovery epoch metadata this will be emitted in the EpochRecover service event /// during the next heart beat interval. - FlowEpoch.account.save(recoverEpochMetadata, to: /storage/recoverEpochMetadataStoragePath) + FlowEpoch.account.storage.save(recoverEpochMetadata, to: /storage/recoverEpochMetadataStoragePath) } /// Ends the currently active epoch and starts a new one with the provided configuration. @@ -719,18 +716,23 @@ access(all) contract FlowEpoch { access(all) fun advanceBlock() { /// check if we have recover epoch metadata stored, this indicates the network is in EFM and the heartbeat /// will emit the EpochRecover event containing information for the recovery epoch. - let recoverEpochMetadata = FlowEpoch.account.load(from: /storage/recoverEpochMetadataStoragePath) + let recoverEpochMetadata = FlowEpoch.account.storage.load(from: /storage/recoverEpochMetadataStoragePath) if recoverEpochMetadata != nil { + // Construct the identity table for the recovery epoch + let nodes: [FlowIDTableStaking.NodeInfo] = [] + for nodeID in recoverEpochMetadata!.nodeIDs { + nodes.append(FlowIDTableStaking.NodeInfo(nodeID: nodeID)) + } emit EpochRecover( counter: recoverEpochMetadata!.counter, - nodeInfo: recoverEpochMetadata!.nodeInfo, + nodeInfo: nodes, firstView: recoverEpochMetadata!.firstView, finalView: recoverEpochMetadata!.finalView, collectorClusters: recoverEpochMetadata!.collectorClusters, randomSource: recoverEpochMetadata!.randomSource, - DKGPhase1FinalView: recoverEpochMetadata!.DKGPhase1FinalView, - DKGPhase2FinalView: recoverEpochMetadata!.DKGPhase2FinalView, - DKGPhase3FinalView: recoverEpochMetadata!.DKGPhase3FinalView, + dkgPhase1FinalView: recoverEpochMetadata!.dkgPhase1FinalView, + dkgPhase2FinalView: recoverEpochMetadata!.dkgPhase2FinalView, + dkgPhase3FinalView: recoverEpochMetadata!.dkgPhase3FinalView, targetDuration: recoverEpochMetadata!.targetDuration, targetEndTime: recoverEpochMetadata!.targetEndTime, clusterQCVoteData: recoverEpochMetadata!.clusterQCVoteData, @@ -983,9 +985,9 @@ access(all) contract FlowEpoch { finalView: proposedEpochMetadata.endView, collectorClusters: collectorClusters, randomSource: randomSource, - DKGPhase1FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + self.configurableMetadata.numViewsInDKGPhase - 1 as UInt64, - DKGPhase2FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + (2 as UInt64 * self.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, - DKGPhase3FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + (3 as UInt64 * self.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, + dkgPhase1FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + self.configurableMetadata.numViewsInDKGPhase - 1 as UInt64, + dkgPhase2FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + (2 as UInt64 * self.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, + dkgPhase3FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + (3 as UInt64 * self.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, targetDuration: proposedTargetDuration, targetEndTime: proposedTargetEndTime) } diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index f08a39508..3cb68591e 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -1,300 +1,301 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: -// FlowServiceAccount/add_account_creator.cdc (565B) -// FlowServiceAccount/deposit_fees.cdc (838B) -// FlowServiceAccount/remove_account_creator.cdc (567B) -// FlowServiceAccount/scripts/get_account_creators.cdc (133B) -// FlowServiceAccount/scripts/get_account_fee.cdc (128B) -// FlowServiceAccount/scripts/get_execution_effort_weights.cdc (147B) -// FlowServiceAccount/scripts/get_execution_memory_limit.cdc (135B) -// FlowServiceAccount/scripts/get_execution_memory_weights.cdc (147B) -// FlowServiceAccount/scripts/get_fees_balance.cdc (102B) -// FlowServiceAccount/scripts/get_is_account_creation_restricted.cdc (137B) -// FlowServiceAccount/scripts/get_is_account_creator.cdc (149B) -// FlowServiceAccount/scripts/get_tx_fee_parameters.cdc (121B) -// FlowServiceAccount/set_execution_effort_weights.cdc (1.636kB) -// FlowServiceAccount/set_execution_memory_limit.cdc (260B) -// FlowServiceAccount/set_execution_memory_weights.cdc (288B) -// FlowServiceAccount/set_is_account_creation_restricted.cdc (586B) -// FlowServiceAccount/set_tx_fee_parameters.cdc (606B) -// FlowServiceAccount/set_tx_fee_surge_factor.cdc (465B) -// dkg/admin/force_stop_dkg.cdc (334B) -// dkg/admin/publish_participant.cdc (224B) -// dkg/admin/set_safe_threshold.cdc (425B) -// dkg/admin/start_dkg.cdc (366B) -// dkg/admin/stop_dkg.cdc (329B) -// dkg/create_participant.cdc (427B) -// dkg/scripts/get_consensus_nodes.cdc (103B) -// dkg/scripts/get_dkg_canonical_final_submission.cdc (98B) -// dkg/scripts/get_dkg_completed.cdc (99B) -// dkg/scripts/get_dkg_enabled.cdc (88B) -// dkg/scripts/get_final_submissions.cdc (106B) -// dkg/scripts/get_latest_whiteboard_messages.cdc (330B) -// dkg/scripts/get_node_final_submission.cdc (128B) -// dkg/scripts/get_node_has_submitted.cdc (116B) -// dkg/scripts/get_node_is_claimed.cdc (218B) -// dkg/scripts/get_node_is_registered.cdc (123B) -// dkg/scripts/get_submissions_count.cdc (114B) -// dkg/scripts/get_thresholds.cdc (408B) -// dkg/scripts/get_whiteboard_messages.cdc (115B) -// dkg/send_final_submission.cdc (412B) -// dkg/send_whiteboard_message.cdc (395B) -// epoch/admin/advance_view.cdc (649B) -// epoch/admin/calculate_rewards.cdc (361B) -// epoch/admin/deploy_epoch.cdc (1.173kB) -// epoch/admin/deploy_qc_dkg.cdc (295B) -// epoch/admin/pay_rewards.cdc (479B) -// epoch/admin/recover_epoch.cdc (1.53kB) -// epoch/admin/reset_epoch.cdc (1.648kB) -// epoch/admin/set_automatic_rewards.cdc (356B) -// epoch/admin/set_bonus_tokens.cdc (597B) -// epoch/admin/update_clusters.cdc (338B) -// epoch/admin/update_dkg_phase_views.cdc (328B) -// epoch/admin/update_epoch_config.cdc (1.755kB) -// epoch/admin/update_epoch_timing_config.cdc (483B) -// epoch/admin/update_epoch_views.cdc (329B) -// epoch/admin/update_reward.cdc (342B) -// epoch/admin/update_staking_views.cdc (331B) -// epoch/node/register_dkg_participant.cdc (531B) -// epoch/node/register_node.cdc (2.901kB) -// epoch/node/register_qc_voter.cdc (522B) -// epoch/scripts/get_bonus_tokens.cdc (102B) -// epoch/scripts/get_config_metadata.cdc (115B) -// epoch/scripts/get_create_clusters.cdc (197B) -// epoch/scripts/get_current_view.cdc (138B) -// epoch/scripts/get_epoch_counter.cdc (105B) -// epoch/scripts/get_epoch_metadata.cdc (154B) -// epoch/scripts/get_epoch_phase.cdc (111B) -// epoch/scripts/get_epoch_timing_config.cdc (129B) -// epoch/scripts/get_proposed_counter.cdc (108B) -// epoch/scripts/get_randomize.cdc (121B) -// epoch/scripts/get_target_end_time_for_epoch.cdc (258B) -// flowToken/burn_tokens.cdc (1.085kB) -// flowToken/create_forwarder.cdc (1.815kB) -// flowToken/mint_tokens.cdc (1.026kB) -// flowToken/scripts/get_balance.cdc (453B) -// flowToken/scripts/get_supply.cdc (207B) -// flowToken/setup_account.cdc (1.147kB) -// flowToken/transfer_tokens.cdc (1.301kB) -// idTableStaking/admin/add_approved_and_limits.cdc (1.606kB) -// idTableStaking/admin/add_approved_nodes.cdc (1.034kB) -// idTableStaking/admin/capability_end_epoch.cdc (1.355kB) -// idTableStaking/admin/change_candidate_limits.cdc (706B) -// idTableStaking/admin/change_cut.cdc (644B) -// idTableStaking/admin/change_del_minimums.cdc (669B) -// idTableStaking/admin/change_minimums.cdc (797B) -// idTableStaking/admin/change_payout.cdc (604B) -// idTableStaking/admin/end_epoch.cdc (892B) -// idTableStaking/admin/end_epoch_change_payout.cdc (958B) -// idTableStaking/admin/end_staking.cdc (677B) -// idTableStaking/admin/move_tokens.cdc (577B) -// idTableStaking/admin/pay_rewards.cdc (665B) -// idTableStaking/admin/remove_approved_nodes.cdc (990B) -// idTableStaking/admin/remove_invalid_nodes.cdc (676B) -// idTableStaking/admin/remove_node.cdc (608B) -// idTableStaking/admin/scale_rewards_test.cdc (716B) -// idTableStaking/admin/set_approved_nodes.cdc (607B) -// idTableStaking/admin/set_claimed.cdc (612B) -// idTableStaking/admin/set_node_weight.cdc (629B) -// idTableStaking/admin/set_non_operational.cdc (764B) -// idTableStaking/admin/set_open_access_node_slots.cdc (916B) -// idTableStaking/admin/set_slot_limits.cdc (1.551kB) -// idTableStaking/admin/start_staking.cdc (576B) -// idTableStaking/admin/transfer_admin.cdc (730B) -// idTableStaking/admin/transfer_fees_admin.cdc (409B) -// idTableStaking/admin/transfer_minter_deploy.cdc (1.305kB) -// idTableStaking/admin/upgrade_set_claimed.cdc (668B) -// idTableStaking/admin/upgrade_staking.cdc (156B) -// idTableStaking/delegation/del_request_unstaking.cdc (569B) -// idTableStaking/delegation/del_stake_new_tokens.cdc (842B) -// idTableStaking/delegation/del_stake_rewarded.cdc (575B) -// idTableStaking/delegation/del_stake_unstaked.cdc (575B) -// idTableStaking/delegation/del_withdraw_reward_tokens.cdc (850B) -// idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc (850B) -// idTableStaking/delegation/delegator_add_capability.cdc (704B) -// idTableStaking/delegation/get_delegator_committed.cdc (315B) -// idTableStaking/delegation/get_delegator_info.cdc (293B) -// idTableStaking/delegation/get_delegator_info_from_address.cdc (511B) -// idTableStaking/delegation/get_delegator_request.cdc (324B) -// idTableStaking/delegation/get_delegator_rewarded.cdc (313B) -// idTableStaking/delegation/get_delegator_staked.cdc (309B) -// idTableStaking/delegation/get_delegator_unstaked.cdc (313B) -// idTableStaking/delegation/get_delegator_unstaking.cdc (315B) -// idTableStaking/delegation/get_delegator_unstaking_request.cdc (324B) -// idTableStaking/delegation/register_delegator.cdc (794B) -// idTableStaking/delegation/register_many_delegators.cdc (637B) -// idTableStaking/node/node_add_capability.cdc (711B) -// idTableStaking/node/register_many_nodes.cdc (1.082kB) -// idTableStaking/node/register_node.cdc (1.351kB) -// idTableStaking/node/request_unstake.cdc (551B) -// idTableStaking/node/stake_new_tokens.cdc (815B) -// idTableStaking/node/stake_rewarded_tokens.cdc (554B) -// idTableStaking/node/stake_unstaked_tokens.cdc (533B) -// idTableStaking/node/unstake_all.cdc (515B) -// idTableStaking/node/update_networking_address.cdc (556B) -// idTableStaking/node/withdraw_reward_tokens.cdc (828B) -// idTableStaking/node/withdraw_unstaked_tokens.cdc (828B) -// idTableStaking/scripts/get_approved_but_not_staked_nodes.cdc (664B) -// idTableStaking/scripts/get_approved_nodes.cdc (283B) -// idTableStaking/scripts/get_candidate_limits.cdc (265B) -// idTableStaking/scripts/get_candidate_nodes.cdc (228B) -// idTableStaking/scripts/get_current_table.cdc (190B) -// idTableStaking/scripts/get_cut_percentage.cdc (199B) -// idTableStaking/scripts/get_del_stake_requirements.cdc (218B) -// idTableStaking/scripts/get_delegators_below_min.cdc (1.88kB) -// idTableStaking/scripts/get_node_committed_tokens.cdc (257B) -// idTableStaking/scripts/get_node_info.cdc (234B) -// idTableStaking/scripts/get_node_info_from_address.cdc (477B) -// idTableStaking/scripts/get_node_initial_weight.cdc (245B) -// idTableStaking/scripts/get_node_networking_addr.cdc (253B) -// idTableStaking/scripts/get_node_networking_key.cdc (245B) -// idTableStaking/scripts/get_node_rewarded_tokens.cdc (258B) -// idTableStaking/scripts/get_node_role.cdc (225B) -// idTableStaking/scripts/get_node_staked_tokens.cdc (254B) -// idTableStaking/scripts/get_node_staking_key.cdc (239B) -// idTableStaking/scripts/get_node_total_commitment.cdc (273B) -// idTableStaking/scripts/get_node_total_commitment_without_delegators.cdc (276B) -// idTableStaking/scripts/get_node_type_ratio.cdc (235B) -// idTableStaking/scripts/get_node_unstaked_tokens.cdc (258B) -// idTableStaking/scripts/get_node_unstaking_request.cdc (269B) -// idTableStaking/scripts/get_node_unstaking_tokens.cdc (260B) -// idTableStaking/scripts/get_non_operational.cdc (205B) -// idTableStaking/scripts/get_proposed_table.cdc (192B) -// idTableStaking/scripts/get_role_counts.cdc (202B) -// idTableStaking/scripts/get_slot_limits.cdc (303B) -// idTableStaking/scripts/get_stake_requirements.cdc (241B) -// idTableStaking/scripts/get_table.cdc (184B) -// idTableStaking/scripts/get_total_staked.cdc (457B) -// idTableStaking/scripts/get_total_staked_by_type.cdc (250B) -// idTableStaking/scripts/get_weekly_payout.cdc (196B) -// inspect_field.cdc (122B) -// lockedTokens/admin/admin_create_shared_accounts.cdc (3.883kB) -// lockedTokens/admin/admin_deploy_contract.cdc (443B) -// lockedTokens/admin/admin_deposit_account_creator.cdc (856B) -// lockedTokens/admin/admin_remove_delegator.cdc (448B) -// lockedTokens/admin/check_main_registration.cdc (994B) -// lockedTokens/admin/check_shared_registration.cdc (630B) -// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.336kB) -// lockedTokens/admin/custody_create_only_lease_account.cdc (3.16kB) -// lockedTokens/admin/custody_create_only_shared_account.cdc (3.553kB) -// lockedTokens/admin/custody_create_shared_accounts.cdc (3.76kB) -// lockedTokens/admin/custody_setup_account_creator.cdc (643B) -// lockedTokens/admin/deposit_locked_tokens.cdc (1.663kB) -// lockedTokens/admin/get_unlocking_bad_accounts.cdc (472B) -// lockedTokens/admin/unlock_tokens.cdc (576B) -// lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc (2.78kB) -// lockedTokens/delegator/delegate_new_tokens.cdc (1.182kB) -// lockedTokens/delegator/delegate_rewarded_tokens.cdc (528B) -// lockedTokens/delegator/delegate_unstaked_tokens.cdc (520B) -// lockedTokens/delegator/get_delegator_id.cdc (434B) -// lockedTokens/delegator/get_delegator_info.cdc (1.464kB) -// lockedTokens/delegator/get_delegator_node_id.cdc (438B) -// lockedTokens/delegator/register_delegator.cdc (1.508kB) -// lockedTokens/delegator/request_unstaking.cdc (522B) -// lockedTokens/delegator/withdraw_rewarded_tokens.cdc (805B) -// lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc (528B) -// lockedTokens/delegator/withdraw_unstaked_tokens.cdc (528B) -// lockedTokens/staker/get_node_id.cdc (429B) -// lockedTokens/staker/get_staker_info.cdc (1.171kB) -// lockedTokens/staker/register_node.cdc (1.425kB) -// lockedTokens/staker/request_unstaking.cdc (522B) -// lockedTokens/staker/stake_new_tokens.cdc (1.234kB) -// lockedTokens/staker/stake_rewarded_tokens.cdc (525B) -// lockedTokens/staker/stake_unstaked_tokens.cdc (525B) -// lockedTokens/staker/unstake_all.cdc (488B) -// lockedTokens/staker/update_networking_address.cdc (482B) -// lockedTokens/staker/withdraw_rewarded_tokens.cdc (795B) -// lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc (528B) -// lockedTokens/staker/withdraw_unstaked_tokens.cdc (528B) -// lockedTokens/user/deposit_tokens.cdc (713B) -// lockedTokens/user/get_locked_account_address.cdc (443B) -// lockedTokens/user/get_locked_account_balance.cdc (442B) -// lockedTokens/user/get_multiple_unlock_limits.cdc (560B) -// lockedTokens/user/get_total_balance.cdc (2.858kB) -// lockedTokens/user/get_unlock_limit.cdc (433B) -// lockedTokens/user/withdraw_tokens.cdc (713B) -// nodeVersionBeacon/admin/change_version_freeze_period.cdc (787B) -// nodeVersionBeacon/admin/delete_version_boundary.cdc (812B) -// nodeVersionBeacon/admin/heartbeat.cdc (612B) -// nodeVersionBeacon/admin/set_version_boundary.cdc (1.4kB) -// nodeVersionBeacon/scripts/get_current_node_version.cdc (236B) -// nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc (263B) -// nodeVersionBeacon/scripts/get_next_version_boundary.cdc (267B) -// nodeVersionBeacon/scripts/get_next_version_update_sequence.cdc (206B) -// nodeVersionBeacon/scripts/get_version_boundaries.cdc (293B) -// nodeVersionBeacon/scripts/get_version_boundary_freeze_period.cdc (321B) -// quorumCertificate/admin/publish_voter.cdc (311B) -// quorumCertificate/admin/start_voting.cdc (1.495kB) -// quorumCertificate/admin/stop_voting.cdc (354B) -// quorumCertificate/create_voter.cdc (1.107kB) -// quorumCertificate/scripts/generate_quorum_certificate.cdc (321B) -// quorumCertificate/scripts/get_cluster.cdc (184B) -// quorumCertificate/scripts/get_cluster_complete.cdc (236B) -// quorumCertificate/scripts/get_cluster_node_weights.cdc (191B) -// quorumCertificate/scripts/get_cluster_vote_threshold.cdc (185B) -// quorumCertificate/scripts/get_cluster_votes.cdc (245B) -// quorumCertificate/scripts/get_cluster_weight.cdc (181B) -// quorumCertificate/scripts/get_clusters.cdc (265B) -// quorumCertificate/scripts/get_node_has_voted.cdc (480B) -// quorumCertificate/scripts/get_node_weight.cdc (315B) -// quorumCertificate/scripts/get_qc_enabled.cdc (101B) -// quorumCertificate/scripts/get_voter_is_registered.cdc (198B) -// quorumCertificate/scripts/get_voting_completed.cdc (187B) -// quorumCertificate/submit_vote.cdc (584B) +// FlowServiceAccount/add_account_creator.cdc (588B) +// FlowServiceAccount/deposit_fees.cdc (871B) +// FlowServiceAccount/remove_account_creator.cdc (590B) +// FlowServiceAccount/scripts/get_account_creators.cdc (141B) +// FlowServiceAccount/scripts/get_account_fee.cdc (136B) +// FlowServiceAccount/scripts/get_execution_effort_weights.cdc (155B) +// FlowServiceAccount/scripts/get_execution_memory_limit.cdc (143B) +// FlowServiceAccount/scripts/get_execution_memory_weights.cdc (155B) +// FlowServiceAccount/scripts/get_fees_balance.cdc (103B) +// FlowServiceAccount/scripts/get_is_account_creation_restricted.cdc (145B) +// FlowServiceAccount/scripts/get_is_account_creator.cdc (157B) +// FlowServiceAccount/scripts/get_tx_fee_parameters.cdc (122B) +// FlowServiceAccount/set_execution_effort_weights.cdc (1.663kB) +// FlowServiceAccount/set_execution_memory_limit.cdc (287B) +// FlowServiceAccount/set_execution_memory_weights.cdc (315B) +// FlowServiceAccount/set_is_account_creation_restricted.cdc (609B) +// FlowServiceAccount/set_tx_fee_parameters.cdc (622B) +// FlowServiceAccount/set_tx_fee_surge_factor.cdc (481B) +// accounts/add_key.cdc (713B) +// accounts/create_new_account.cdc (768B) +// accounts/revoke_key.cdc (263B) +// dkg/admin/force_stop_dkg.cdc (350B) +// dkg/admin/publish_participant.cdc (314B) +// dkg/admin/set_safe_threshold.cdc (441B) +// dkg/admin/start_dkg.cdc (382B) +// dkg/admin/stop_dkg.cdc (345B) +// dkg/create_participant.cdc (442B) +// dkg/scripts/get_consensus_nodes.cdc (108B) +// dkg/scripts/get_dkg_canonical_final_submission.cdc (103B) +// dkg/scripts/get_dkg_completed.cdc (104B) +// dkg/scripts/get_dkg_enabled.cdc (93B) +// dkg/scripts/get_final_submissions.cdc (111B) +// dkg/scripts/get_latest_whiteboard_messages.cdc (335B) +// dkg/scripts/get_node_final_submission.cdc (133B) +// dkg/scripts/get_node_has_submitted.cdc (121B) +// dkg/scripts/get_node_is_claimed.cdc (223B) +// dkg/scripts/get_node_is_registered.cdc (128B) +// dkg/scripts/get_submissions_count.cdc (111B) +// dkg/scripts/get_thresholds.cdc (445B) +// dkg/scripts/get_whiteboard_messages.cdc (120B) +// dkg/send_final_submission.cdc (429B) +// dkg/send_whiteboard_message.cdc (412B) +// epoch/admin/advance_view.cdc (667B) +// epoch/admin/calculate_rewards.cdc (379B) +// epoch/admin/deploy_epoch.cdc (1.192kB) +// epoch/admin/deploy_qc_dkg.cdc (310B) +// epoch/admin/pay_rewards.cdc (497B) +// epoch/admin/recover_epoch.cdc (1.553kB) +// epoch/admin/reset_epoch.cdc (1.668kB) +// epoch/admin/set_automatic_rewards.cdc (376B) +// epoch/admin/set_bonus_tokens.cdc (624B) +// epoch/admin/update_clusters.cdc (358B) +// epoch/admin/update_dkg_phase_views.cdc (348B) +// epoch/admin/update_epoch_config.cdc (1.775kB) +// epoch/admin/update_epoch_timing_config.cdc (503B) +// epoch/admin/update_epoch_views.cdc (349B) +// epoch/admin/update_reward.cdc (361B) +// epoch/admin/update_staking_views.cdc (351B) +// epoch/node/register_dkg_participant.cdc (550B) +// epoch/node/register_node.cdc (3.104kB) +// epoch/node/register_qc_voter.cdc (548B) +// epoch/scripts/get_bonus_tokens.cdc (108B) +// epoch/scripts/get_config_metadata.cdc (121B) +// epoch/scripts/get_create_clusters.cdc (205B) +// epoch/scripts/get_current_view.cdc (147B) +// epoch/scripts/get_epoch_counter.cdc (110B) +// epoch/scripts/get_epoch_metadata.cdc (159B) +// epoch/scripts/get_epoch_phase.cdc (116B) +// epoch/scripts/get_epoch_timing_config.cdc (134B) +// epoch/scripts/get_proposed_counter.cdc (113B) +// epoch/scripts/get_randomize.cdc (125B) +// epoch/scripts/get_target_end_time_for_epoch.cdc (263B) +// flowToken/burn_tokens.cdc (1.131kB) +// flowToken/create_forwarder.cdc (2.025kB) +// flowToken/mint_tokens.cdc (1.019kB) +// flowToken/scripts/get_balance.cdc (420B) +// flowToken/scripts/get_supply.cdc (208B) +// flowToken/setup_account.cdc (1.349kB) +// flowToken/transfer_tokens.cdc (1.327kB) +// idTableStaking/admin/add_approved_and_limits.cdc (1.635kB) +// idTableStaking/admin/add_approved_nodes.cdc (1.055kB) +// idTableStaking/admin/capability_end_epoch.cdc (1.374kB) +// idTableStaking/admin/change_candidate_limits.cdc (727B) +// idTableStaking/admin/change_cut.cdc (665B) +// idTableStaking/admin/change_del_minimums.cdc (690B) +// idTableStaking/admin/change_minimums.cdc (818B) +// idTableStaking/admin/change_payout.cdc (625B) +// idTableStaking/admin/end_epoch.cdc (913B) +// idTableStaking/admin/end_epoch_change_payout.cdc (979B) +// idTableStaking/admin/end_staking.cdc (698B) +// idTableStaking/admin/move_tokens.cdc (598B) +// idTableStaking/admin/pay_rewards.cdc (686B) +// idTableStaking/admin/remove_approved_nodes.cdc (1.011kB) +// idTableStaking/admin/remove_invalid_nodes.cdc (697B) +// idTableStaking/admin/remove_node.cdc (629B) +// idTableStaking/admin/scale_rewards_test.cdc (713B) +// idTableStaking/admin/set_approved_nodes.cdc (628B) +// idTableStaking/admin/set_claimed.cdc (633B) +// idTableStaking/admin/set_node_weight.cdc (650B) +// idTableStaking/admin/set_non_operational.cdc (785B) +// idTableStaking/admin/set_open_access_node_slots.cdc (936B) +// idTableStaking/admin/set_slot_limits.cdc (1.572kB) +// idTableStaking/admin/start_staking.cdc (597B) +// idTableStaking/admin/transfer_admin.cdc (658B) +// idTableStaking/admin/transfer_fees_admin.cdc (444B) +// idTableStaking/admin/transfer_minter_deploy.cdc (1.344kB) +// idTableStaking/admin/upgrade_set_claimed.cdc (691B) +// idTableStaking/admin/upgrade_staking.cdc (159B) +// idTableStaking/delegation/del_request_unstaking.cdc (670B) +// idTableStaking/delegation/del_stake_new_tokens.cdc (1.044kB) +// idTableStaking/delegation/del_stake_rewarded.cdc (676B) +// idTableStaking/delegation/del_stake_unstaked.cdc (676B) +// idTableStaking/delegation/del_withdraw_reward_tokens.cdc (952B) +// idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc (952B) +// idTableStaking/delegation/delegator_add_capability.cdc (892B) +// idTableStaking/delegation/get_delegator_committed.cdc (321B) +// idTableStaking/delegation/get_delegator_info.cdc (299B) +// idTableStaking/delegation/get_delegator_info_from_address.cdc (505B) +// idTableStaking/delegation/get_delegator_request.cdc (330B) +// idTableStaking/delegation/get_delegator_rewarded.cdc (319B) +// idTableStaking/delegation/get_delegator_staked.cdc (315B) +// idTableStaking/delegation/get_delegator_unstaked.cdc (319B) +// idTableStaking/delegation/get_delegator_unstaking.cdc (321B) +// idTableStaking/delegation/get_delegator_unstaking_request.cdc (330B) +// idTableStaking/delegation/register_delegator.cdc (981B) +// idTableStaking/delegation/register_many_delegators.cdc (684B) +// idTableStaking/node/node_add_capability.cdc (900B) +// idTableStaking/node/register_many_nodes.cdc (1.171kB) +// idTableStaking/node/register_node.cdc (1.651kB) +// idTableStaking/node/request_unstake.cdc (644B) +// idTableStaking/node/stake_new_tokens.cdc (1.008kB) +// idTableStaking/node/stake_rewarded_tokens.cdc (647B) +// idTableStaking/node/stake_unstaked_tokens.cdc (626B) +// idTableStaking/node/unstake_all.cdc (608B) +// idTableStaking/node/update_networking_address.cdc (650B) +// idTableStaking/node/withdraw_reward_tokens.cdc (922B) +// idTableStaking/node/withdraw_unstaked_tokens.cdc (922B) +// idTableStaking/scripts/get_approved_but_not_staked_nodes.cdc (670B) +// idTableStaking/scripts/get_approved_nodes.cdc (289B) +// idTableStaking/scripts/get_candidate_limits.cdc (271B) +// idTableStaking/scripts/get_candidate_nodes.cdc (234B) +// idTableStaking/scripts/get_current_table.cdc (196B) +// idTableStaking/scripts/get_cut_percentage.cdc (205B) +// idTableStaking/scripts/get_del_stake_requirements.cdc (224B) +// idTableStaking/scripts/get_delegators_below_min.cdc (1.966kB) +// idTableStaking/scripts/get_node_committed_tokens.cdc (263B) +// idTableStaking/scripts/get_node_info.cdc (240B) +// idTableStaking/scripts/get_node_info_from_address.cdc (471B) +// idTableStaking/scripts/get_node_initial_weight.cdc (251B) +// idTableStaking/scripts/get_node_networking_addr.cdc (259B) +// idTableStaking/scripts/get_node_networking_key.cdc (251B) +// idTableStaking/scripts/get_node_rewarded_tokens.cdc (264B) +// idTableStaking/scripts/get_node_role.cdc (231B) +// idTableStaking/scripts/get_node_staked_tokens.cdc (260B) +// idTableStaking/scripts/get_node_staking_key.cdc (245B) +// idTableStaking/scripts/get_node_total_commitment.cdc (279B) +// idTableStaking/scripts/get_node_total_commitment_without_delegators.cdc (282B) +// idTableStaking/scripts/get_node_type_ratio.cdc (241B) +// idTableStaking/scripts/get_node_unstaked_tokens.cdc (264B) +// idTableStaking/scripts/get_node_unstaking_request.cdc (275B) +// idTableStaking/scripts/get_node_unstaking_tokens.cdc (266B) +// idTableStaking/scripts/get_non_operational.cdc (211B) +// idTableStaking/scripts/get_proposed_table.cdc (198B) +// idTableStaking/scripts/get_role_counts.cdc (208B) +// idTableStaking/scripts/get_slot_limits.cdc (309B) +// idTableStaking/scripts/get_stake_requirements.cdc (247B) +// idTableStaking/scripts/get_table.cdc (190B) +// idTableStaking/scripts/get_total_staked.cdc (463B) +// idTableStaking/scripts/get_total_staked_by_type.cdc (256B) +// idTableStaking/scripts/get_weekly_payout.cdc (202B) +// lockedTokens/admin/admin_create_shared_accounts.cdc (3.671kB) +// lockedTokens/admin/admin_deploy_contract.cdc (463B) +// lockedTokens/admin/admin_deposit_account_creator.cdc (846B) +// lockedTokens/admin/admin_remove_delegator.cdc (463B) +// lockedTokens/admin/check_main_registration.cdc (949B) +// lockedTokens/admin/check_shared_registration.cdc (633B) +// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.435kB) +// lockedTokens/admin/custody_create_only_lease_account.cdc (3.335kB) +// lockedTokens/admin/custody_create_only_shared_account.cdc (3.57kB) +// lockedTokens/admin/custody_create_shared_accounts.cdc (3.706kB) +// lockedTokens/admin/custody_setup_account_creator.cdc (758B) +// lockedTokens/admin/deposit_locked_tokens.cdc (1.678kB) +// lockedTokens/admin/unlock_tokens.cdc (593B) +// lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc (2.878kB) +// lockedTokens/delegator/delegate_new_tokens.cdc (1.369kB) +// lockedTokens/delegator/delegate_rewarded_tokens.cdc (645B) +// lockedTokens/delegator/delegate_unstaked_tokens.cdc (637B) +// lockedTokens/delegator/get_delegator_id.cdc (392B) +// lockedTokens/delegator/get_delegator_info.cdc (1.458kB) +// lockedTokens/delegator/get_delegator_node_id.cdc (396B) +// lockedTokens/delegator/register_delegator.cdc (1.741kB) +// lockedTokens/delegator/request_unstaking.cdc (639B) +// lockedTokens/delegator/withdraw_rewarded_tokens.cdc (982B) +// lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc (645B) +// lockedTokens/delegator/withdraw_unstaked_tokens.cdc (645B) +// lockedTokens/staker/get_node_id.cdc (387B) +// lockedTokens/staker/get_staker_info.cdc (1.165kB) +// lockedTokens/staker/register_node.cdc (1.714kB) +// lockedTokens/staker/request_unstaking.cdc (692B) +// lockedTokens/staker/stake_new_tokens.cdc (1.413kB) +// lockedTokens/staker/stake_rewarded_tokens.cdc (695B) +// lockedTokens/staker/stake_unstaked_tokens.cdc (695B) +// lockedTokens/staker/unstake_all.cdc (618B) +// lockedTokens/staker/update_networking_address.cdc (659B) +// lockedTokens/staker/withdraw_rewarded_tokens.cdc (973B) +// lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc (658B) +// lockedTokens/staker/withdraw_unstaked_tokens.cdc (658B) +// lockedTokens/user/deposit_tokens.cdc (806B) +// lockedTokens/user/get_locked_account_address.cdc (401B) +// lockedTokens/user/get_locked_account_balance.cdc (400B) +// lockedTokens/user/get_multiple_unlock_limits.cdc (514B) +// lockedTokens/user/get_total_balance.cdc (2.811kB) +// lockedTokens/user/get_unlock_limit.cdc (391B) +// lockedTokens/user/withdraw_tokens.cdc (924B) +// nodeVersionBeacon/admin/change_version_freeze_period.cdc (803B) +// nodeVersionBeacon/admin/delete_version_boundary.cdc (828B) +// nodeVersionBeacon/admin/heartbeat.cdc (628B) +// nodeVersionBeacon/admin/set_version_boundary.cdc (1.421kB) +// nodeVersionBeacon/scripts/get_current_node_version.cdc (237B) +// nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc (264B) +// nodeVersionBeacon/scripts/get_next_version_boundary.cdc (268B) +// nodeVersionBeacon/scripts/get_next_version_update_sequence.cdc (207B) +// nodeVersionBeacon/scripts/get_version_boundaries.cdc (294B) +// nodeVersionBeacon/scripts/get_version_boundary_freeze_period.cdc (322B) +// quorumCertificate/admin/publish_voter.cdc (411B) +// quorumCertificate/admin/start_voting.cdc (1.522kB) +// quorumCertificate/admin/stop_voting.cdc (381B) +// quorumCertificate/create_voter.cdc (1.127kB) +// quorumCertificate/scripts/generate_quorum_certificate.cdc (333B) +// quorumCertificate/scripts/get_cluster.cdc (196B) +// quorumCertificate/scripts/get_cluster_complete.cdc (248B) +// quorumCertificate/scripts/get_cluster_node_weights.cdc (203B) +// quorumCertificate/scripts/get_cluster_vote_threshold.cdc (197B) +// quorumCertificate/scripts/get_cluster_votes.cdc (257B) +// quorumCertificate/scripts/get_cluster_weight.cdc (193B) +// quorumCertificate/scripts/get_clusters.cdc (277B) +// quorumCertificate/scripts/get_node_has_voted.cdc (492B) +// quorumCertificate/scripts/get_node_weight.cdc (327B) +// quorumCertificate/scripts/get_qc_enabled.cdc (113B) +// quorumCertificate/scripts/get_voter_is_registered.cdc (210B) +// quorumCertificate/scripts/get_voting_completed.cdc (199B) +// quorumCertificate/submit_vote.cdc (611B) // randomBeaconHistory/scripts/get_latest_source_of_randomness.cdc (200B) // randomBeaconHistory/scripts/get_source_of_randomness.cdc (305B) // randomBeaconHistory/scripts/get_source_of_randomness_page.cdc (326B) -// stakingCollection/close_stake.cdc (758B) -// stakingCollection/create_machine_account.cdc (1.152kB) -// stakingCollection/create_new_tokenholder_acct.cdc (2.95kB) -// stakingCollection/deploy_collection_contract.cdc (297B) -// stakingCollection/register_delegator.cdc (675B) -// stakingCollection/register_multiple_delegators.cdc (767B) -// stakingCollection/register_multiple_nodes.cdc (1.584kB) -// stakingCollection/register_node.cdc (1.426kB) -// stakingCollection/request_unstaking.cdc (684B) -// stakingCollection/restake_all_stakers.cdc (1.307kB) -// stakingCollection/scripts/does_account_have_staking_collection.cdc (252B) -// stakingCollection/scripts/get_all_delegator_info.cdc (354B) -// stakingCollection/scripts/get_all_node_info.cdc (334B) -// stakingCollection/scripts/get_delegator_ids.cdc (281B) -// stakingCollection/scripts/get_does_stake_exist.cdc (412B) -// stakingCollection/scripts/get_locked_tokens_used.cdc (284B) -// stakingCollection/scripts/get_machine_account_address.cdc (435B) -// stakingCollection/scripts/get_machine_accounts.cdc (313B) -// stakingCollection/scripts/get_node_ids.cdc (243B) -// stakingCollection/scripts/get_unlocked_tokens_used.cdc (289B) -// stakingCollection/setup_staking_collection.cdc (3.006kB) -// stakingCollection/stake_new_tokens.cdc (808B) -// stakingCollection/stake_rewarded_tokens.cdc (701B) -// stakingCollection/stake_unstaked_tokens.cdc (701B) -// stakingCollection/test/deposit_tokens.cdc (870B) +// stakingCollection/close_stake.cdc (906B) +// stakingCollection/create_machine_account.cdc (1.702kB) +// stakingCollection/create_new_tokenholder_acct.cdc (3.616kB) +// stakingCollection/deploy_collection_contract.cdc (312B) +// stakingCollection/register_delegator.cdc (823B) +// stakingCollection/register_multiple_delegators.cdc (875B) +// stakingCollection/register_multiple_nodes.cdc (1.692kB) +// stakingCollection/register_node.cdc (1.957kB) +// stakingCollection/request_unstaking.cdc (832B) +// stakingCollection/restake_all_stakers.cdc (1.413kB) +// stakingCollection/scripts/does_account_have_staking_collection.cdc (257B) +// stakingCollection/scripts/get_all_delegator_info.cdc (357B) +// stakingCollection/scripts/get_all_node_info.cdc (337B) +// stakingCollection/scripts/get_delegator_ids.cdc (286B) +// stakingCollection/scripts/get_does_stake_exist.cdc (415B) +// stakingCollection/scripts/get_locked_tokens_used.cdc (289B) +// stakingCollection/scripts/get_machine_account_address.cdc (440B) +// stakingCollection/scripts/get_machine_accounts.cdc (318B) +// stakingCollection/scripts/get_node_ids.cdc (248B) +// stakingCollection/scripts/get_unlocked_tokens_used.cdc (294B) +// stakingCollection/setup_staking_collection.cdc (3.494kB) +// stakingCollection/stake_new_tokens.cdc (956B) +// stakingCollection/stake_rewarded_tokens.cdc (849B) +// stakingCollection/stake_unstaked_tokens.cdc (849B) +// stakingCollection/test/deposit_tokens.cdc (878B) // stakingCollection/test/get_tokens.cdc (684B) -// stakingCollection/transfer_delegator.cdc (1.994kB) -// stakingCollection/transfer_node.cdc (2.108kB) -// stakingCollection/unstake_all.cdc (610B) -// stakingCollection/update_networking_address.cdc (628B) -// stakingCollection/withdraw_from_machine_account.cdc (690B) -// stakingCollection/withdraw_rewarded_tokens.cdc (862B) -// stakingCollection/withdraw_unstaked_tokens.cdc (877B) -// stakingProxy/add_node_info.cdc (624B) -// stakingProxy/get_node_info.cdc (506B) -// stakingProxy/register_node.cdc (1.095kB) -// stakingProxy/remove_node_info.cdc (307B) -// stakingProxy/remove_staking_proxy.cdc (315B) -// stakingProxy/request_unstaking.cdc (477B) -// stakingProxy/setup_node_account.cdc (511B) -// stakingProxy/stake_new_tokens.cdc (475B) -// stakingProxy/stake_unstaked_tokens.cdc (480B) -// stakingProxy/unstake_all.cdc (441B) -// stakingProxy/withdraw_rewards.cdc (483B) -// stakingProxy/withdraw_unstaked.cdc (483B) -// storageFees/admin/set_parameters.cdc (831B) -// storageFees/scripts/get_account_available_balance.cdc (177B) -// storageFees/scripts/get_accounts_capacity_for_transaction_storage_check.cdc (316B) -// storageFees/scripts/get_storage_capacity.cdc (173B) -// storageFees/scripts/get_storage_fee_conversion.cdc (141B) -// storageFees/scripts/get_storage_fee_min.cdc (135B) +// stakingCollection/transfer_delegator.cdc (2.094kB) +// stakingCollection/transfer_node.cdc (2.208kB) +// stakingCollection/unstake_all.cdc (758B) +// stakingCollection/update_networking_address.cdc (776B) +// stakingCollection/withdraw_from_machine_account.cdc (838B) +// stakingCollection/withdraw_rewarded_tokens.cdc (1.01kB) +// stakingCollection/withdraw_unstaked_tokens.cdc (1.025kB) +// stakingProxy/add_node_info.cdc (640B) +// stakingProxy/get_node_info.cdc (461B) +// stakingProxy/register_node.cdc (1.145kB) +// stakingProxy/remove_node_info.cdc (323B) +// stakingProxy/remove_staking_proxy.cdc (331B) +// stakingProxy/request_unstaking.cdc (493B) +// stakingProxy/setup_node_account.cdc (619B) +// stakingProxy/stake_new_tokens.cdc (491B) +// stakingProxy/stake_unstaked_tokens.cdc (496B) +// stakingProxy/unstake_all.cdc (457B) +// stakingProxy/withdraw_rewards.cdc (499B) +// stakingProxy/withdraw_unstaked.cdc (499B) +// storageFees/admin/set_parameters.cdc (847B) +// storageFees/scripts/get_account_available_balance.cdc (178B) +// storageFees/scripts/get_accounts_capacity_for_transaction_storage_check.cdc (317B) +// storageFees/scripts/get_storage_capacity.cdc (174B) +// storageFees/scripts/get_storage_fee_conversion.cdc (142B) +// storageFees/scripts/get_storage_fee_min.cdc (136B) package assets @@ -304,7 +305,6 @@ import ( "crypto/sha256" "fmt" "io" - "io/ioutil" "os" "path/filepath" "strings" @@ -364,7 +364,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _flowserviceaccountAdd_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xcb\x6a\xc3\x30\x10\x45\xd7\xd2\x57\x0c\x59\x14\x67\x63\x75\x1d\xda\x06\x37\x0f\x28\x14\x0a\x71\x1f\xeb\x89\x34\x4e\x04\x8e\x64\x46\x72\x13\x28\xf9\xf7\x62\xc5\x8b\xb8\x75\xe9\x7a\x46\xe7\x9e\xab\xb1\x87\xc6\x73\x84\x75\xed\x8f\x25\xf1\xa7\xd5\x54\x68\xed\x5b\x17\xa1\x62\x7f\x80\xdb\xd3\xfa\xf9\xe5\xa3\x5c\x6d\xde\x9f\x16\xab\x62\xb9\xdc\xac\xca\x52\x4a\xa5\xe0\x75\x6f\x03\x44\x46\x17\x50\x47\xeb\x1d\xa0\x31\x01\x10\x1c\x1d\x01\x7b\x82\x66\x62\x8c\x9e\xe5\xd5\x5e\xd6\x0f\x17\x4c\xdd\x68\x06\x85\x31\x4c\x21\x4c\xe1\x4b\x4a\x51\x53\x84\x30\xd0\x28\xcc\xc1\xba\x19\xdc\xfc\x16\xcc\xd3\xc8\x86\x78\xc9\x90\xa2\x61\x6a\x90\x29\x0b\x76\xe7\xa8\x23\xb7\x71\xdf\xef\x76\x74\x21\x94\x82\x47\xcf\xec\x8f\xc0\x54\x11\x93\xd3\x04\xd1\x8f\x75\x1f\xa0\x81\x29\xf8\x96\x35\xe5\x89\x21\x85\x08\x54\x57\xf9\x88\x27\xdc\xc3\x25\x3c\xdf\xa6\x9c\xbb\x7f\xb5\x1f\xb2\xee\x9b\x67\xa0\x42\xf4\x8c\x3b\x52\xd5\xd5\x83\x6e\x71\x2a\x85\x10\xf3\x39\x34\xe8\xac\xce\x26\x6f\x0e\xb7\x75\xb2\xde\x8e\x34\xc1\x51\xed\xc9\x54\x8a\xb3\x14\x74\x22\xdd\x46\x4a\x3f\xf1\x57\x81\x1c\x8d\x29\x06\x07\xfa\x71\xaf\x84\x3a\x7f\x07\x00\x00\xff\xff\x58\x7a\xb8\x95\x35\x02\x00\x00" +var _flowserviceaccountAdd_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\xcb\x6e\xab\x30\x10\x5d\xdb\x5f\x31\x62\x11\xc1\xc6\xde\xa3\x7b\x1b\xd1\x4a\xfd\x81\x3e\xf6\x13\x7b\x48\x2c\x81\x8d\xc6\xa6\x54\xaa\xf2\xef\x15\x86\x45\x68\xa8\xba\x3e\x73\x9e\xe3\xfa\x21\x70\x82\xe7\x2e\x4c\x2f\xc4\x1f\xce\x50\x63\x4c\x18\x7d\x82\x96\x43\x0f\xc5\x3d\x50\x48\xa9\x35\xbc\x5e\x5c\x84\xc4\xe8\x23\x9a\xe4\x82\x07\xb4\x36\x02\x82\xa7\x09\x70\x55\x30\x4c\x8c\x29\xb0\xbc\xb9\x2b\x57\xf0\x89\x69\x86\x6a\x68\xac\x65\x8a\xb1\x82\x2f\x29\x45\x47\x09\xe2\xc6\xad\xb1\xbd\xf3\x35\x1c\xee\x73\xa8\x0c\xb9\x98\x16\x0f\x29\x06\xa6\x01\x99\xca\xe8\xce\x9e\xb8\x06\x1c\xd3\xa5\x7c\x0c\xcc\x61\x7a\xc7\x6e\xa4\x0a\x0e\x2b\x75\x36\x13\x42\x6b\x58\x50\x60\x6a\x89\xc9\x1b\x82\x14\xf6\xa6\xd8\x38\x01\x53\x0c\x23\x1b\x52\x59\x43\x0a\x11\xa9\x6b\xd5\x4e\x6c\xf8\x0f\x4b\x16\x15\x53\x60\x3c\x93\x3a\x65\xbf\x7f\x7f\xb6\x79\x28\xe7\xf5\x6b\xd0\x2b\x51\xb7\x37\x84\xf9\xb0\x92\x42\x88\xe3\x11\x06\xf4\xce\x94\xc5\x9b\xc7\x53\x97\xd3\x9f\x76\x1a\xe1\x6e\xfc\xa2\x92\xe2\x2a\x05\x7d\x92\x19\x13\xe5\x45\x7e\x2b\xa2\xd0\xda\x66\xf3\xb7\x1f\x6f\xcc\x52\xd7\xef\x00\x00\x00\xff\xff\x30\x9d\x0e\x50\x4c\x02\x00\x00" func flowserviceaccountAdd_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -380,11 +380,11 @@ func flowserviceaccountAdd_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/add_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x79, 0x2d, 0xa8, 0x63, 0x2c, 0xf1, 0x7e, 0xed, 0xbd, 0x9, 0xca, 0xc8, 0xdc, 0x63, 0x53, 0x29, 0x1e, 0xb5, 0x81, 0x4a, 0x50, 0x61, 0x83, 0xb4, 0x23, 0x25, 0xc0, 0x4b, 0xbf, 0x98, 0xe2, 0x54}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb1, 0x11, 0x91, 0x94, 0xe5, 0x6c, 0x4, 0x20, 0xe4, 0x66, 0x6, 0x20, 0xd3, 0xd9, 0xf8, 0xab, 0x9b, 0xa9, 0xec, 0xe1, 0x9e, 0x25, 0x9b, 0x99, 0x68, 0xeb, 0xa9, 0x9f, 0xcf, 0x7a, 0xb4, 0xa2}} return a, nil } -var _flowserviceaccountDeposit_feesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x41\x6f\xd3\x40\x10\x85\xcf\xf1\xaf\x78\xf4\x00\xc9\xa1\x36\x07\xc4\x21\x0a\x94\x40\xec\x0a\x51\xb5\x52\x93\xd2\xf3\xc6\x1e\xdb\x2b\x9c\x5d\x6b\x77\x8c\x83\xaa\xfe\x77\xe4\x5d\xaf\xa9\x85\x10\x27\x4b\xe3\xf7\xde\x7c\x33\xb3\xf2\xd4\x6a\xc3\xc8\x3a\x55\xc9\x63\x43\x07\xfd\x83\x14\x4a\xa3\x4f\x78\x7b\xce\x1e\x6e\xaf\xbf\x7e\xbe\x49\x0f\x77\xdf\xd2\xdb\xed\x6e\x77\x9f\xee\xf7\x51\x30\x34\xba\x9f\x8b\x6f\xee\x1e\xff\x25\xcc\x88\xec\x4b\x5d\x96\xa6\xfb\x20\x8b\x92\x04\x3b\x6a\xb5\x95\x0c\x1e\x02\x2d\x58\x83\x6b\xfa\xe3\xfc\x2e\xba\x86\x07\x9d\x56\xcd\x2f\x94\xda\x80\xc9\xb2\x54\x55\x14\xb1\x11\xca\x8a\x9c\xa5\x56\x4b\x71\xd2\x9d\xe2\x35\x1e\x32\x79\x7e\xff\x6e\x85\xa7\x28\x02\x80\x24\xc1\xa1\x26\x1f\x02\x43\x56\x77\x26\x27\x70\x2d\x18\xb5\x6e\x0a\xeb\x7a\x85\xce\x43\x55\x18\xc2\x91\xa4\xaa\xe0\xd2\x4b\x32\x86\x0a\x17\xd5\x10\xc3\x92\x62\x97\xb5\xc6\xa7\xd9\xd6\x62\x8f\xe9\x84\xad\xa1\x56\x18\x5a\x5a\x59\x29\x32\x6b\x6c\x3b\xae\xb7\x79\x3e\xf0\x4d\x5c\x23\xdb\x35\x31\x04\x0c\x95\x64\x48\x0d\x60\x7e\x78\xef\x7c\x63\x61\x59\x1b\x2a\xf0\xd3\x85\x07\xdf\x00\xe2\x2a\xf7\x54\xe2\xc3\x28\x8e\x8f\xda\x18\xdd\x6f\x5e\x4f\xb7\xf1\x48\x1f\x97\xc3\xea\xd7\x48\x86\x28\x51\x51\x52\x86\xff\xee\xf7\x2a\x5a\x2c\x16\x57\x57\x68\x85\x92\xf9\xf2\xe2\x8b\xee\x9a\x02\x4a\x33\x7c\xdc\xdf\x68\xba\xf7\x64\xce\xfd\xea\x62\x35\x1b\xe7\x51\x72\x5d\x18\xd1\x87\x8d\xba\xab\xff\x7f\x20\x4b\x4d\x19\x4f\xab\xc5\xe6\x72\x1a\x2f\xee\xc7\xc4\xe9\xbe\xfe\xbb\x72\xde\x67\xdf\x9c\xce\x94\x77\x4c\x78\x7a\x89\x32\xbd\xaa\x9a\x10\x42\x54\xe0\x92\x6a\xfe\xc6\xe6\x38\xa1\x1c\x17\x3e\x63\xdc\xe0\xe6\x72\xce\x19\x18\x9e\x7f\x07\x00\x00\xff\xff\x46\x01\xf8\x5a\x46\x03\x00\x00" +var _flowserviceaccountDeposit_feesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x4f\x8f\x94\x40\x10\xc5\xcf\xcb\xa7\x78\x72\x58\xe1\xb0\x70\x31\x1e\x26\xa3\xeb\xbf\x8c\x77\xb3\xae\xe7\x1e\x28\xa0\x23\xd3\x45\xaa\x0b\x59\x33\xd9\xef\x6e\x68\x68\x5c\xe2\xc1\x13\xa1\xfa\xd5\xab\x5f\xfd\xb1\x97\x81\x45\x71\x1a\x5d\x6b\xcf\x3d\x3d\xf0\x4f\x72\x68\x84\x2f\x48\x77\xb1\x34\x89\xca\x9e\xa7\x9d\x2a\xfe\xef\x14\x27\x22\xff\x42\x30\xff\xa6\x49\x52\x96\xf8\x42\x03\x7b\xab\xd0\x39\xc5\x43\x19\xda\xd1\xdf\x94\x47\x33\xf6\x3a\xeb\xd8\xf5\xbf\xd1\xb0\x40\xc9\xab\x75\x6d\x92\xa8\x18\xe7\x4d\xa5\x96\x5d\x66\x2e\x3c\x3a\x3d\xe0\xfb\xc9\x3e\xbd\x7d\x93\xe3\x9a\x24\x00\x50\x96\x78\xe8\x68\x31\x81\x90\xe7\x51\x2a\x82\x76\x46\xd1\x71\x5f\xfb\x50\x2b\x56\x9e\xa3\x46\x08\x67\xb2\xae\x45\x70\x6f\x48\x84\xea\x60\xd5\x93\xc2\x93\xd3\xe0\x75\xc0\x87\xeb\x6e\x1a\x45\x08\x3f\x2f\x55\x07\xa1\xc1\x08\x65\xde\xb6\x8e\xe4\x00\x33\x6a\x97\x7d\x62\x11\x9e\x1e\x4d\x3f\x52\x8e\xdb\x8f\x55\x35\x03\x6f\xa0\x2b\xec\x57\x52\x18\x08\x35\x24\xe4\x66\xd2\x65\x1a\x8b\xd1\x6b\x0f\xaf\x2c\x54\xe3\x57\x18\x4a\xcc\x9b\xc9\x42\xe4\x1b\x35\x78\xb7\x8a\x8b\x59\x6a\x5a\x2a\xce\xa1\xee\x31\x30\xec\x91\x7f\x58\xed\x6a\x31\x53\x8e\xdb\x6d\x67\x4b\x1f\xef\xb3\x79\x53\x07\x94\xab\x49\xd9\xc4\xf7\xf0\x9c\x27\x37\x37\x37\xf7\xf7\x18\x8c\xb3\x55\x96\x7e\xe6\xb1\xaf\xe1\x58\xb1\xd4\xfa\x97\x9f\xa7\x05\x3f\x64\xbf\x4a\xf3\x5d\xcf\x11\x23\xee\x21\x1c\xc9\xff\xbb\xf6\xd4\x37\xc5\xb6\x10\x1c\xef\xb6\x19\x14\xd3\xea\xb8\x5d\xc5\xf2\xcd\x43\xee\xba\x23\x7a\xa2\x6a\x54\xc2\xf5\x25\xca\x76\x8b\x1d\x21\x9a\xb8\xc8\x65\xdd\xfe\x32\xf7\x38\x31\x5c\xd4\x8b\xc7\x3a\xc1\xe3\xdd\x9e\x33\x32\x3c\xff\x09\x00\x00\xff\xff\xbb\x16\x8b\x19\x67\x03\x00\x00" func flowserviceaccountDeposit_feesCdcBytes() ([]byte, error) { return bindataRead( @@ -400,11 +400,11 @@ func flowserviceaccountDeposit_feesCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/deposit_fees.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6d, 0x40, 0xd0, 0x49, 0x30, 0xb5, 0x4d, 0x6b, 0xdb, 0xc8, 0x82, 0xb0, 0x97, 0x31, 0x2a, 0xd, 0xcc, 0xff, 0x0, 0x91, 0xcb, 0xc, 0xa8, 0xe7, 0x67, 0xc4, 0x13, 0x3e, 0x0, 0xf, 0x0, 0xaf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7d, 0x52, 0x74, 0xf2, 0x10, 0x54, 0xe7, 0x92, 0xfb, 0xd8, 0xeb, 0x33, 0x4f, 0x97, 0x24, 0x5, 0xe9, 0x43, 0xe, 0x3e, 0x92, 0xa, 0xbe, 0x33, 0xf9, 0xca, 0x6b, 0xe9, 0xf5, 0xb4, 0x56, 0x9}} return a, nil } -var _flowserviceaccountRemove_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xcb\x6a\xeb\x30\x10\x86\xd7\xd2\x53\x0c\x59\x1c\x9c\x8d\x75\xd6\xa1\x6d\x70\x73\x81\x42\xa1\x10\xf7\xb2\x56\xe4\x71\x22\xb0\x35\x66\x24\x27\x81\x92\x77\x2f\x96\xbd\x88\x5b\x97\xae\x67\xf4\xcd\xf7\xeb\xb7\x75\x43\x1c\x60\x5b\xd1\x39\x47\x3e\x59\x83\x99\x31\xd4\xba\x00\x25\x53\x0d\xff\x2f\xdb\xe7\x97\x8f\x7c\xb3\x7b\x7f\x5a\x6d\xb2\xf5\x7a\xb7\xc9\x73\x29\x95\x82\xd7\xa3\xf5\x10\x58\x3b\xaf\x4d\xb0\xe4\x80\xb1\xa6\x13\x7a\xd0\x0e\xf4\x40\x30\x8c\x3a\x10\xcb\x9b\xb5\x64\x98\xad\xfa\xd1\x02\xb2\xa2\x60\xf4\x7e\x0e\x9f\x52\x8a\x0a\x03\xf8\x91\x45\x56\xd4\xd6\x2d\xe0\xdf\x4f\xbf\x34\x8e\xac\x0f\x1c\x6f\x48\xd1\x30\x36\x9a\x31\xf1\xf6\xe0\xb0\x23\xb7\xe1\x38\xec\x76\x74\x21\x94\x82\x47\x62\xa6\x33\x30\x96\xc8\xe8\x0c\x42\xa0\xa9\xe8\x23\x34\x30\x7a\x6a\xd9\x60\x1a\x19\x52\x08\x8f\x55\x99\x4e\x78\xc2\x3d\xf4\xc7\xd3\x7d\xbc\x73\xf7\xa7\xf6\x43\xd2\xfd\xf2\x02\x94\x0f\xc4\xfa\x80\xaa\xbc\x79\xd0\x2d\xce\xa5\x10\x62\xb9\x84\x46\x3b\x6b\x92\xd9\x9b\xd3\xfb\x2a\x5a\xef\x27\x92\xe8\x49\xed\xd9\x5c\x8a\xab\x14\x78\x41\xd3\x06\x8c\x3f\xf1\x5b\x80\xb4\x2f\x31\x1b\x75\xf4\xad\xb2\x48\xbb\x7e\x05\x00\x00\xff\xff\xb4\x28\x75\xda\x37\x02\x00\x00" +var _flowserviceaccountRemove_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\xbd\x6e\x83\x30\x10\x9e\xed\xa7\x38\x31\x44\xb0\xd8\x3b\x6a\x1b\xd1\x4a\x7d\x81\xfe\xec\x17\xe7\x48\x2c\x81\x0f\x9d\x4d\x52\xa9\xca\xbb\x57\x31\x0c\xa1\xa1\xea\xfc\xdd\x7d\xbf\xbe\x1f\x58\x12\xbc\x76\x7c\x7e\x23\x39\x79\x47\x8d\x73\x3c\x86\x04\xad\x70\x0f\xc5\x3d\x50\x68\x6d\x2d\xbc\x1f\x7d\x84\x24\x18\x22\xba\xe4\x39\x80\x50\xcf\x27\x8a\x80\x01\x70\x66\x70\x42\x98\x58\xf4\xcd\x59\x39\x63\x2f\x13\x54\x43\xb3\xdf\x0b\xc5\x58\xc1\xb7\xd6\xaa\xa3\x04\x71\x21\xd6\xec\x7b\x1f\x6a\xd8\xdc\xdb\x30\x19\xf2\x31\x49\xd6\xd0\x6a\x10\x1a\x50\xa8\x8c\xfe\x10\x48\x6a\xc0\x31\x1d\xcb\x67\x16\xe1\xf3\x27\x76\x23\x55\xb0\x99\x5f\xaf\x62\x4a\x59\x0b\x13\x0a\x42\x2d\x09\x05\x47\x90\x78\xad\x89\x85\x12\x08\x45\x1e\xc5\x91\xc9\x1c\x5a\xa9\x48\x5d\x6b\x56\x6c\xc3\x23\x4c\x5e\x4c\x4c\x2c\x78\x20\xb3\xcb\x7a\x0f\xff\xa6\x79\x2a\xaf\xe5\xd7\x60\xe7\x47\xdb\xde\x3c\x5c\x0f\x2b\xad\x94\xda\x6e\x61\xc0\xe0\x5d\x59\x7c\x04\xdc\x75\xd9\xfd\x6e\x25\x11\xae\xda\x2f\x2a\xad\x2e\x5a\xd1\x17\xb9\x31\x51\x6e\xe4\xaf\x20\x66\xda\xb6\x59\x4c\xf7\x6b\xc9\xcc\x76\xf9\x09\x00\x00\xff\xff\xec\x46\x77\xa5\x4e\x02\x00\x00" func flowserviceaccountRemove_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -420,11 +420,11 @@ func flowserviceaccountRemove_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/remove_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x45, 0x93, 0x3, 0xb, 0x31, 0xee, 0xf4, 0x0, 0x1, 0xd1, 0x23, 0xca, 0x29, 0xed, 0xf8, 0x8b, 0xd1, 0xa6, 0x66, 0x57, 0xe8, 0xf9, 0xf3, 0xf3, 0xfe, 0x91, 0xbc, 0xbb, 0x2f, 0x35, 0x84, 0x3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf0, 0x88, 0x85, 0x67, 0xec, 0xe6, 0x1a, 0x23, 0xf6, 0xee, 0x4f, 0xc, 0x7c, 0x58, 0x34, 0x3e, 0xf2, 0x45, 0x36, 0xc2, 0x8d, 0xbe, 0x5, 0xcc, 0xdf, 0x1a, 0xcc, 0x9c, 0x8c, 0xe9, 0x29, 0x21}} return a, nil } -var _flowserviceaccountScriptsGet_account_creatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x4e\x2d\x2a\xcb\x4c\x4e\x75\x4c\x4e\xce\x2f\xcd\x2b\x51\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x0f\x76\x0d\x0a\xf3\x74\x76\x75\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x88\x76\x4c\x49\x29\x4a\x2d\x2e\x8e\x55\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\xc3\x62\xa8\x5e\x7a\x6a\x09\x94\xe9\x5c\x94\x9a\x58\x92\x5f\x54\xac\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x3a\x18\x2d\x67\x85\x00\x00\x00" +var _flowserviceaccountScriptsGet_account_creatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x31\x0a\x02\x31\x10\x46\xe1\x3e\xa7\xf8\xd9\x2a\x69\x3c\x80\xdd\x22\x78\x01\x4b\xb1\x08\xb3\x13\x09\x24\x19\x99\x99\x68\x21\xde\xdd\xc6\xce\xed\x1e\x3c\xf8\x6a\x7f\x88\x3a\xce\x4d\x5e\x17\xd6\x67\x25\x5e\x89\x64\x0e\x47\x51\xe9\x58\xfe\xc7\x12\x42\x26\x62\xb3\x98\x5b\x4b\x28\x73\xa0\xe7\x3a\x62\x3a\xe2\xba\x6e\x9b\xb2\xd9\x0d\xef\x00\x00\xca\x3e\x75\xec\xe0\x87\x3b\xfb\x2f\x4f\xca\xd9\x45\x2d\xa6\xf0\xf9\x06\x00\x00\xff\xff\x70\x58\x63\xbb\x8d\x00\x00\x00" func flowserviceaccountScriptsGet_account_creatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -440,11 +440,11 @@ func flowserviceaccountScriptsGet_account_creatorsCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_account_creators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0x20, 0xf6, 0xc0, 0x61, 0x14, 0xc7, 0x64, 0xeb, 0x27, 0xe2, 0xc1, 0xc7, 0x29, 0x7a, 0x50, 0xa6, 0x42, 0xfb, 0x9b, 0xcd, 0x19, 0xad, 0x12, 0x40, 0x99, 0xd9, 0x5d, 0x94, 0xb9, 0xd9, 0xfa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb, 0x29, 0xe1, 0xc2, 0xd2, 0x0, 0xb4, 0xb8, 0x57, 0xa9, 0x8f, 0xc, 0x63, 0xa1, 0x40, 0x25, 0x23, 0xfd, 0x83, 0xcf, 0xb3, 0xef, 0xe1, 0x16, 0xe9, 0x84, 0xcf, 0xe7, 0x86, 0xa0, 0x5c, 0x7f}} return a, nil } -var _flowserviceaccountScriptsGet_account_feeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x4e\x2d\x2a\xcb\x4c\x4e\x75\x4c\x4e\xce\x2f\xcd\x2b\x51\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x0f\x76\x0d\x0a\xf3\x74\x76\x75\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\xc3\x62\xa2\x5e\x22\x84\x76\x2e\x4a\x4d\x2c\xc9\xcc\xcf\x73\x4b\x4d\xe5\xaa\x05\x04\x00\x00\xff\xff\xfe\x58\x76\xda\x80\x00\x00\x00" +var _flowserviceaccountScriptsGet_account_feeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x4e\x2d\x2a\xcb\x4c\x4e\x75\x4c\x4e\xce\x2f\xcd\x2b\x51\x48\x2b\xca\xcf\x55\x50\xc2\x94\x50\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\xc3\x62\xb2\x5e\x22\x84\x76\x2e\x4a\x4d\x2c\xc9\xcc\xcf\x73\x4b\x4d\xe5\xaa\x05\x04\x00\x00\xff\xff\xd5\x0c\xb4\x55\x88\x00\x00\x00" func flowserviceaccountScriptsGet_account_feeCdcBytes() ([]byte, error) { return bindataRead( @@ -460,11 +460,11 @@ func flowserviceaccountScriptsGet_account_feeCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_account_fee.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x8a, 0x3, 0xc, 0x87, 0xec, 0x16, 0x5, 0xf6, 0x12, 0xa7, 0x47, 0xd8, 0x4c, 0x66, 0x8f, 0x52, 0x8c, 0x70, 0x7a, 0x36, 0x1d, 0x38, 0x2e, 0x3b, 0x6, 0xf6, 0xa5, 0xea, 0x1a, 0x36, 0x6f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd7, 0xc5, 0xf3, 0x5c, 0xe4, 0x84, 0x40, 0x9d, 0xd7, 0xb, 0x6b, 0x49, 0x46, 0x8c, 0xa5, 0xdd, 0xa3, 0x90, 0x91, 0x78, 0x62, 0xa8, 0xe, 0xa4, 0x2, 0x22, 0xba, 0xd8, 0x8c, 0x90, 0xf2, 0x66}} return a, nil } -var _flowserviceaccountScriptsGet_execution_effort_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x31\xcb\xc2\x30\x10\x06\xe0\x3d\xbf\xe2\x1d\xdb\xe5\xe3\x1b\xc4\xa1\x5b\xb1\x29\x14\x04\xa1\x41\x3b\x6b\x48\x6a\xc0\xde\x95\xf3\xa2\x85\xd2\xff\xee\xe0\xea\xf4\x6c\x4f\x9a\x66\x16\x45\xfb\xe0\xb7\x0b\xf2\x4a\x3e\xd4\xde\x73\x26\x45\x14\x9e\xf0\xbf\xb4\xc7\xd3\xe0\x6c\x7f\xe9\x0e\xb6\x6e\x9a\xde\x3a\x67\xcc\x9c\x6f\x88\x99\x30\x5d\x13\x15\x65\x85\xf5\xdc\x91\xee\x77\x15\xbe\x6e\x58\x0d\x00\x48\xd0\x2c\xf4\xe3\xfe\x1b\x83\xda\x25\xf8\xac\x89\xc9\xc6\xc8\xa2\x43\x48\xe3\x5d\x9f\x45\x69\xb6\x4f\x00\x00\x00\xff\xff\xbe\x4c\xb9\xc0\x93\x00\x00\x00" +var _flowserviceaccountScriptsGet_execution_effort_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcd\xa1\x0e\xc2\x30\x10\x87\x71\xdf\xa7\xf8\x67\x6a\x33\x28\x82\x98\x43\x8c\x04\x4d\x08\x7a\xb9\x5c\x47\x93\xf6\x8e\x5c\xaf\x40\xb2\xec\xdd\x11\x48\x50\x9f\xf8\xc4\x2f\x95\x87\x9a\xe3\x94\xf5\x75\x61\x7b\x26\xe2\x23\x91\x36\x71\x44\xd3\x82\xee\x77\x74\x21\xcc\x44\x5c\x6b\x3f\xe7\x3c\x20\x36\x41\x99\x93\xf4\xc3\x88\xf5\x7a\x16\x3f\xec\x47\x7c\xbb\x61\x0d\x00\x60\xec\xcd\xe4\x8f\xb1\x5b\xd8\xa7\x37\x53\xf3\xa4\x32\xc5\xa8\xe6\x37\x4e\xcb\xdd\x6b\x3f\x84\xed\x13\x00\x00\xff\xff\xed\xee\xad\x32\x9b\x00\x00\x00" func flowserviceaccountScriptsGet_execution_effort_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -480,11 +480,11 @@ func flowserviceaccountScriptsGet_execution_effort_weightsCdc() (*asset, error) } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_execution_effort_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x66, 0x94, 0x3f, 0xa3, 0x3a, 0xae, 0xef, 0x8c, 0xc9, 0x65, 0x5a, 0x5a, 0x9, 0xae, 0xc, 0x7c, 0x54, 0x7d, 0xcb, 0x61, 0x3e, 0xd1, 0x8a, 0xc, 0x5c, 0x1d, 0x4a, 0x9b, 0x79, 0x42, 0x97, 0x99}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbc, 0x96, 0xc3, 0x69, 0xc1, 0xcc, 0x19, 0x11, 0xbd, 0xe0, 0x19, 0x1e, 0xb1, 0x38, 0xab, 0xae, 0x1, 0x48, 0x4, 0x1e, 0x57, 0xcf, 0x63, 0xee, 0x28, 0x4e, 0xf7, 0x13, 0x65, 0x30, 0xd6, 0x93}} return a, nil } -var _flowserviceaccountScriptsGet_execution_memory_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xb1\x0a\xc2\x30\x10\x06\xe0\x3d\x4f\xf1\x8f\xed\x22\x0e\xe2\xe0\x56\x6c\x0a\x85\x8a\xd0\xa0\xce\x1a\x52\x39\x30\x77\xe5\xb8\x68\x45\x7c\x77\x5f\xc0\x17\xf8\x28\xcf\xa2\x86\xee\x21\xaf\x90\xf4\x49\x31\x35\x31\x4a\x61\xc3\xa4\x92\xb1\x5e\xba\xe1\x78\x09\x7e\x3c\xf7\x7b\xdf\xb4\xed\xe8\x43\x70\x6e\x2e\x37\x4c\x85\x91\xaf\xc4\x55\xbd\xc3\xa9\x67\xdb\x6e\xf0\x71\x00\xa0\xc9\x8a\xf2\x1f\x71\x75\x4f\xe6\x97\x14\x8b\x91\xf0\x21\x65\xd1\xf7\x40\x99\xac\xaa\xdd\xf7\x17\x00\x00\xff\xff\x99\xae\x26\xc9\x87\x00\x00\x00" +var _flowserviceaccountScriptsGet_execution_memory_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x3d\xaa\x42\x31\x10\x06\xd0\x3e\xab\xf8\xb8\x55\xd2\xbc\xea\x61\x61\x67\xa1\x20\x68\x25\x2e\x20\x0c\x73\x65\x20\x99\x91\xb9\x13\x7f\x10\xf7\xee\x02\xb4\x3e\x70\xa4\x5f\xcd\x03\xbb\x66\xf7\x13\xfb\x4d\x88\x37\x44\x36\x34\x30\xbb\x75\x4c\xdf\x30\xa5\x54\x89\x78\x59\x72\x6d\xad\x60\x1e\x8a\x5e\x45\x73\x59\xe3\xbc\xd7\x58\xfd\xe3\x95\x00\xc0\x39\x86\xeb\x8f\xf9\xef\xc2\xb1\x7d\x30\x8d\x10\xd3\x23\x77\xf3\xe7\x41\xba\x44\x2e\xe9\xfd\x09\x00\x00\xff\xff\xc8\x94\x6c\xb5\x8f\x00\x00\x00" func flowserviceaccountScriptsGet_execution_memory_limitCdcBytes() ([]byte, error) { return bindataRead( @@ -500,11 +500,11 @@ func flowserviceaccountScriptsGet_execution_memory_limitCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_execution_memory_limit.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe3, 0x99, 0x2f, 0x9d, 0x84, 0xf5, 0xb, 0xdd, 0xdc, 0x9d, 0xe7, 0x38, 0xef, 0x7b, 0xd7, 0xb8, 0x51, 0xa0, 0xac, 0xbb, 0xd5, 0x8b, 0xbe, 0xda, 0x4b, 0x87, 0x55, 0xd7, 0x3b, 0xfb, 0x70, 0xba}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd5, 0x92, 0xbb, 0x36, 0x1b, 0xad, 0x73, 0x48, 0xdd, 0x41, 0x54, 0x99, 0x1e, 0xfa, 0x9b, 0x50, 0x6f, 0xbd, 0x17, 0xf5, 0xe3, 0xc6, 0xa1, 0x52, 0xaf, 0x15, 0xe0, 0x6c, 0x4d, 0x9c, 0x46, 0xd2}} return a, nil } -var _flowserviceaccountScriptsGet_execution_memory_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xb1\x0a\xc2\x30\x10\x06\xe0\x3d\x4f\xf1\x8f\xed\x22\x0e\xe2\xd0\xad\xd8\x14\x0a\x8a\xd0\xa0\x9d\x35\x5c\x6b\xc0\x24\xe5\xbc\x68\xa5\xf4\xdd\x1d\x5c\x3b\x7d\xdb\xe7\xfc\x18\x59\x50\x3f\xe3\xc7\x10\xbf\x9d\xa5\xd2\xda\x98\x82\xa0\xe7\xe8\xb1\x9d\xea\xe3\xb9\x33\xba\xbd\x36\x07\x5d\x56\x55\xab\x8d\x51\x6a\x4c\x77\xf4\x29\xc0\xdf\x5c\xc8\xf2\x02\xf3\xa5\x09\xb2\xdf\x15\xf8\xbb\x60\x56\x00\xc0\x24\x89\xc3\xca\xbd\x19\x48\xf4\x44\x36\x89\x8b\xe1\x44\x3e\xf2\xb7\x23\x37\x3c\xe4\x95\xe5\x6a\xf9\x05\x00\x00\xff\xff\xc2\x10\x3a\x4f\x93\x00\x00\x00" +var _flowserviceaccountScriptsGet_execution_memory_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x4e\x2d\x2a\xcb\x4c\x4e\x75\x4c\x4e\xce\x2f\xcd\x2b\x51\x48\x2b\xca\xcf\x55\x50\xc2\x94\x50\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\xa8\x0e\xf5\xcc\x2b\x31\x33\xb1\x52\x80\xd0\xb5\x0a\xd5\x5c\x0a\x0a\x0a\x0a\x45\xa9\x25\xa5\x45\x79\x58\xec\xd0\x4b\x4f\x2d\x71\xad\x48\x4d\x2e\x2d\xc9\xcc\xcf\xf3\x4d\xcd\xcd\x2f\xaa\x0c\x4f\xcd\x4c\xcf\x28\x29\xd6\xd0\xe4\xaa\x05\x04\x00\x00\xff\xff\x91\xb2\x2e\xbd\x9b\x00\x00\x00" func flowserviceaccountScriptsGet_execution_memory_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -520,11 +520,11 @@ func flowserviceaccountScriptsGet_execution_memory_weightsCdc() (*asset, error) } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_execution_memory_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x84, 0x23, 0x2, 0x24, 0x2f, 0x68, 0xd8, 0xad, 0x75, 0xd2, 0x79, 0xd7, 0xac, 0xef, 0xdd, 0xa, 0x12, 0x4c, 0x65, 0x7c, 0x94, 0x9, 0x72, 0x3b, 0x82, 0x5d, 0x61, 0xe8, 0xc3, 0x2a, 0x80, 0xc9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5, 0xcd, 0xd0, 0x38, 0x82, 0x36, 0xe4, 0x74, 0xde, 0x36, 0x36, 0x84, 0x3f, 0xa6, 0xf5, 0xb4, 0x59, 0x3a, 0x3b, 0x17, 0x7f, 0xa0, 0xbc, 0x82, 0xd6, 0xcc, 0x7c, 0xae, 0x39, 0x5c, 0x78, 0xe5}} return a, nil } -var _flowserviceaccountScriptsGet_fees_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x77\x73\x75\x0d\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x1b\xa2\x97\x9e\x5a\xe2\x96\x9a\xea\x94\x98\x93\x98\x97\x9c\xaa\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\xec\x72\xf2\xed\x66\x00\x00\x00" +var _flowserviceaccountScriptsGet_fees_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x50\x82\x71\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\xdd\x32\x2b\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\xe0\xa6\xe8\xa5\xa7\x96\xb8\xa5\xa6\x3a\x25\xe6\x24\xe6\x25\xa7\x6a\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x36\xc6\xa0\x51\x67\x00\x00\x00" func flowserviceaccountScriptsGet_fees_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -540,11 +540,11 @@ func flowserviceaccountScriptsGet_fees_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_fees_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6f, 0xc8, 0x3b, 0x91, 0xc2, 0xc8, 0x97, 0x4e, 0x7c, 0x5e, 0xf9, 0xf, 0x80, 0x8e, 0xba, 0x76, 0x7c, 0x47, 0x55, 0x7e, 0xf6, 0xb, 0xe, 0x41, 0x19, 0x77, 0xa4, 0x91, 0x6c, 0x74, 0x47, 0x2d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc6, 0xb4, 0xfa, 0x5d, 0x2c, 0x2f, 0x77, 0x80, 0x79, 0xa9, 0xb6, 0x97, 0xa3, 0x19, 0x3e, 0x2f, 0x94, 0xaa, 0x9, 0xa2, 0x75, 0x90, 0x67, 0x6b, 0x19, 0xc, 0xd, 0x59, 0xdc, 0x42, 0xc4, 0x4a}} return a, nil } -var _flowserviceaccountScriptsGet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x31\xcb\xc2\x30\x10\x06\xe0\x3d\xbf\xe2\x1d\xdb\xe5\xe3\x9b\xdd\x6a\x9b\x82\x20\x08\x09\xe8\x5c\xe3\x15\x0e\x9a\x5c\xb9\x5e\x54\x10\xff\xbb\x8b\xa3\xdb\x33\x3d\x9c\x57\x51\xc3\xb8\xc8\x23\x92\xde\x39\x51\x97\x92\xd4\x62\x98\x55\x32\xfe\x9f\xe3\xf1\x74\x89\x3e\x9c\x0f\xbd\xef\x86\x21\xf8\x18\x9d\x5b\xeb\x15\x73\x2d\xc8\x13\x97\xa6\xdd\x61\x2f\xb2\xe0\xe5\x00\x40\xc9\xaa\x96\x1f\xdf\x1f\x6f\x5f\xf5\x4a\x93\xb1\x94\x40\x9b\x29\x27\xa3\x5b\xd3\xba\xf7\x27\x00\x00\xff\xff\x30\xd3\xe8\xcf\x89\x00\x00\x00" +var _flowserviceaccountScriptsGet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x31\x0a\x82\x31\x0c\x47\xf1\xbd\xa7\xf8\xf3\x4d\xed\xe2\x01\xdc\x54\xf0\x00\x7a\x82\x12\x53\x08\xb4\x89\xa4\xa9\x0e\xe2\xdd\x5d\xdc\x74\x7b\xf0\xe0\x27\xe3\x6e\x1e\x38\x77\x7b\x5e\xd9\x1f\x42\x7c\x20\xb2\xa5\x81\xe6\x36\xb0\xfd\x8e\x2d\xa5\x4a\xc4\x73\xe6\xda\x7b\x41\x5b\x8a\x51\x45\x73\xd9\xe3\x68\xd6\xf1\x4a\x00\xe0\x1c\xcb\xf5\x8f\xbb\x93\xf9\xad\x93\x73\x0d\x31\xbd\xf0\x0c\x17\x0a\xbe\xe5\x92\xde\x9f\x00\x00\x00\xff\xff\xdd\x1a\x44\xaa\x91\x00\x00\x00" func flowserviceaccountScriptsGet_is_account_creation_restrictedCdcBytes() ([]byte, error) { return bindataRead( @@ -560,11 +560,11 @@ func flowserviceaccountScriptsGet_is_account_creation_restrictedCdc() (*asset, e } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_is_account_creation_restricted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x33, 0x4f, 0x25, 0xf, 0x24, 0x69, 0x56, 0xe3, 0x8a, 0xce, 0x18, 0xe5, 0x4e, 0xce, 0x73, 0xf, 0x2b, 0x11, 0x4, 0xde, 0x2d, 0xb0, 0x7c, 0x76, 0x8, 0x3e, 0x82, 0x6e, 0xb9, 0xd2, 0xa4, 0x39}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x78, 0x7f, 0x4b, 0x85, 0x11, 0xb6, 0x26, 0xa3, 0x91, 0xc, 0xc6, 0x56, 0x2f, 0x17, 0x6d, 0x44, 0x49, 0x35, 0x2f, 0xa, 0x6d, 0x2b, 0xc1, 0x30, 0xf1, 0x1e, 0xd5, 0x30, 0xec, 0x9a, 0x80, 0x23}} return a, nil } -var _flowserviceaccountScriptsGet_is_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xb1\x0a\xc2\x30\x10\x06\xe0\x3d\x4f\xf1\x8f\x76\x11\xe7\x6e\xb1\x4d\x41\x10\x84\x06\x74\x8e\xe9\x15\x02\x4d\xae\x5c\x12\x15\xc4\x77\x77\x50\x37\xb7\x6f\xfa\x42\x5c\x59\x0a\x86\x85\xef\x96\xe4\x16\x3c\x69\xef\xb9\xa6\x82\x59\x38\x62\xf7\x18\x8e\xa7\x8b\x35\xe3\xf9\xd0\x19\xdd\xf7\xa3\xb1\x56\xa9\xb5\x5e\x31\xd7\x84\xe8\x42\xda\xb8\x69\x12\xca\xb9\x85\xfe\xa0\x69\xb1\x67\x5e\xf0\x54\x00\x20\x54\xaa\xa4\x3f\xff\x36\xe4\xaf\x3a\x21\x57\x58\x7e\x51\xa3\x5e\xef\x00\x00\x00\xff\xff\xda\x8e\xcf\xb1\x95\x00\x00\x00" +var _flowserviceaccountScriptsGet_is_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcd\x31\x0a\x02\x31\x10\x85\xe1\x3e\xa7\x78\x6c\xb5\x69\x3c\xc0\x76\xab\xe0\x05\x3c\xc1\x30\x3b\x0b\x81\x24\x23\x33\x13\x2d\xc4\xbb\x5b\xa8\x95\x76\x1f\x3c\x78\x7f\x69\x57\xb5\xc0\xb9\xea\xfd\x22\x76\x2b\x2c\x2b\xb3\x8e\x1e\xd8\x4d\x1b\xa6\xdf\x61\x4a\x89\x98\xc5\x7d\xa6\x5a\x33\xf6\xd1\xd1\xa8\xf4\x99\xb6\xcd\xc4\x7d\xc1\xfa\x46\x5e\x70\x54\xad\x78\x24\x00\x30\x89\x61\xfd\x4f\xe7\x50\xfc\xa3\x93\x09\x85\xda\xf7\x28\xa7\xe7\x2b\x00\x00\xff\xff\x9d\xb0\x81\x18\x9d\x00\x00\x00" func flowserviceaccountScriptsGet_is_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -580,11 +580,11 @@ func flowserviceaccountScriptsGet_is_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_is_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4a, 0x6b, 0xfc, 0xd, 0xf7, 0xbd, 0x4c, 0x2b, 0x19, 0xf2, 0x34, 0x8a, 0xf2, 0xe0, 0x7c, 0x7b, 0x14, 0xa0, 0x83, 0xce, 0x53, 0x48, 0x48, 0xac, 0xe8, 0x97, 0xbd, 0x1, 0x42, 0xbc, 0x92, 0x91}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x95, 0xb8, 0x4e, 0xec, 0x66, 0x4a, 0x50, 0xbb, 0x8b, 0xb0, 0xb8, 0x52, 0x16, 0x26, 0xc, 0x19, 0xb, 0x4, 0x17, 0x3b, 0x4d, 0xb7, 0xe0, 0xa8, 0xc, 0x8f, 0x1e, 0xb3, 0xd2, 0xeb, 0x1f}} return a, nil } -var _flowserviceaccountScriptsGet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x77\x73\x75\x0d\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x82\x6b\xd0\x73\x4b\x4d\x0d\x48\x2c\x4a\xcc\x4d\x2d\x49\x2d\x2a\x56\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\xa8\x49\x4f\x2d\x41\x51\xa6\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x72\x08\x76\xd1\x79\x00\x00\x00" +var _flowserviceaccountScriptsGet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x50\x82\x71\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\xe0\x3a\xf4\xdc\x52\x53\x03\x12\x8b\x12\x73\x53\x4b\x52\x8b\x8a\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\x6a\xd2\x53\x4b\x50\x94\x69\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x4a\xde\xf2\x2a\x7a\x00\x00\x00" func flowserviceaccountScriptsGet_tx_fee_parametersCdcBytes() ([]byte, error) { return bindataRead( @@ -600,11 +600,11 @@ func flowserviceaccountScriptsGet_tx_fee_parametersCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_tx_fee_parameters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0xaf, 0xc1, 0xff, 0x1a, 0x34, 0x69, 0x68, 0xb, 0xd, 0xc9, 0xba, 0xb4, 0xdb, 0x81, 0x8a, 0x41, 0x8, 0x38, 0xf6, 0x85, 0x75, 0xef, 0x4e, 0x8a, 0x6e, 0xb0, 0x6a, 0x22, 0xc1, 0x97, 0x1a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xee, 0x8f, 0xb0, 0x94, 0x23, 0x9d, 0x6b, 0x38, 0x2f, 0x83, 0x12, 0xee, 0x19, 0x73, 0x3f, 0x9d, 0x78, 0x57, 0x4c, 0xb8, 0x2b, 0x65, 0xe9, 0xa3, 0x4, 0x2b, 0x93, 0xdf, 0xda, 0xb5, 0x9c}} return a, nil } -var _flowserviceaccountSet_execution_effort_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x93\x5d\x6b\xe3\x3a\x10\x86\xef\xf3\x2b\x06\x9f\x9b\x14\xd2\x38\x4e\x62\x27\x36\x87\x03\xa5\xe7\x14\xca\xe9\xc2\xc2\x7e\x5d\x94\x2e\x1d\xcb\xe3\x58\x5b\x4b\xf2\x4a\x72\xd2\x10\xf2\xdf\x17\x59\x71\x9b\x7e\xb0\xec\x2e\x7b\xb1\x86\x48\x62\xde\x99\x47\x6f\x34\x52\x18\xc2\xfb\x8a\x1b\xb0\x1a\xa5\x41\x66\xb9\x92\x06\x0c\x59\x03\x92\x36\x40\xf7\xc4\x5a\x17\x03\x2a\x4b\xa5\x2d\x6c\x88\xaf\x2a\x6b\x06\x5d\x19\x81\xc0\x7b\x2e\x5a\xf1\x32\xaf\xe6\x82\x5b\x28\x95\x7e\x0a\xe6\x06\xb0\xde\xe0\xd6\x40\xea\xbe\x71\xcf\xf1\x58\x90\x28\xc8\x84\xbc\x30\xc0\x50\x42\x4e\x60\x88\x24\x54\xa4\x29\x73\x99\xee\x77\x0a\xd7\xe7\x58\x90\x64\x04\xe7\x4a\x34\xad\x45\x47\xfe\x9f\xcb\xe2\x66\x58\x59\xdb\x98\x2c\x0c\x57\xdc\x56\x6d\x3e\x66\x4a\x84\x4a\x96\xb5\xda\x84\xcc\x97\x84\x79\xad\xf2\x30\x99\x2c\x62\x2a\xe7\x4b\xb6\x60\x53\x9c\x24\x51\x31\x5d\xd0\x2c\xc9\x27\x69\x8c\xb4\x20\x16\xd3\x74\x32\x8f\x19\x2e\x42\xdd\x4a\xcb\x05\x85\x4c\x09\xa1\xa4\x9b\xfa\xfd\xee\xb8\x2c\xc6\x2b\xf5\xd7\xd5\x6c\x72\x72\x70\x75\xf1\xf1\xcd\xcf\x38\x72\xc3\xe9\x4a\x79\x47\x51\x51\xce\x67\x05\x2d\x63\x16\xe7\x8b\x38\x89\x96\x71\x14\xe1\xb2\xa4\x34\xa5\x34\x4d\x97\x98\x4f\x69\xce\x8a\x38\x0d\xcb\xb5\x08\x05\x59\xd2\x7e\xec\x2c\xa4\xce\x81\x37\x61\x2b\x02\x2e\x2d\x69\x89\x35\x34\x9a\x18\x37\xae\x27\xaa\xec\x94\x17\x4d\xea\x18\xae\x27\xd3\xcf\x51\x32\x82\x4d\xc5\x59\x05\x82\x50\xfa\x88\x53\xe8\x6b\x8b\x35\x58\x05\x11\xa8\xd6\xf6\x24\xab\x2c\xd6\xbe\x85\x2f\xa9\xb8\x46\x5e\x63\x5e\xbb\x34\xc0\xe3\xfe\x8f\x0f\x46\x5d\xc7\x0b\x2a\xb1\xad\x1f\x2e\x14\xa0\xef\xb1\xff\x1f\xcf\xce\xf1\x4a\xa9\x26\x83\xe8\x55\xed\x9d\x45\x4b\x82\xa4\xcd\x20\x82\x57\x33\x2e\x5a\xd9\xed\x7e\x29\xd7\x8a\x75\x51\xcf\x72\xc9\x4a\x03\x97\xd0\xa0\x46\x7f\x16\xa5\xd2\xa2\xb7\x71\x7b\x7b\xfb\xc5\x28\xe9\x96\xd7\x6e\x00\xd8\xf9\x09\x20\xb0\xdb\x86\x82\x0c\x82\x7f\x79\x87\x46\xbd\x0d\x46\x0f\xe2\x1a\xeb\xd6\xa9\xd7\x7d\xe4\xa8\xb2\x4b\xb8\xa3\x6d\x90\xc1\xee\x11\xf3\xe1\x52\xda\x64\x1e\x8c\x1e\x6b\x83\x68\x32\x89\x02\xd8\x8f\x9e\x14\xf6\xea\xf7\x4b\x93\x38\x9e\x25\x01\xec\x1f\x4b\x8f\x31\xbf\x64\x65\xfa\xe7\x58\x99\xfd\x3e\x2b\xfd\xf2\xc6\x2f\x7a\xec\x11\xe7\x2d\xda\xea\x98\xb2\x83\xa0\x50\x02\xb9\x74\xa2\xb1\x4a\xe3\x8a\x9c\xce\x0b\x92\x96\x97\x9c\xb4\x13\x1e\x9e\xc4\x7f\xdd\x8b\xf8\xe4\xaf\x78\x00\x7b\xbf\xe5\xcd\xe1\x76\x0d\x8e\x9e\xc6\x50\xd2\xe6\x90\x97\xc1\xce\xdb\xcf\xc0\xcf\xfb\x13\xd8\x0d\x9c\xcf\x46\x53\x83\x9a\x86\x86\xaf\x24\xe9\x0c\xce\x5a\x5b\x9d\x31\xa6\x5a\x69\xfb\x14\xf7\x79\x79\x5c\x2b\x2c\xfe\x7e\x8e\xfa\x67\x58\x6a\x25\x32\x08\x0f\xe6\xc3\xd7\xbd\x9e\x3c\x87\x19\x5c\xd3\x91\xc7\x11\x58\xf5\x83\x90\xfd\x60\xff\x2d\x00\x00\xff\xff\xad\xdd\x1d\x36\x64\x06\x00\x00" +var _flowserviceaccountSet_execution_effort_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x93\x5f\x6b\xe3\x38\x14\xc5\xdf\xf3\x29\x2e\x5e\x58\x12\x48\xe3\x38\x89\x9d\xd8\x2c\x0b\x4b\x77\x0b\x65\xbb\xb0\xd0\xfd\xf3\x50\x3a\xf4\x5a\xbe\x8e\x35\xb5\x24\x8f\x24\x27\x0d\x21\xdf\x7d\x90\x15\xb7\xe9\x9f\x19\x66\x86\x79\x18\x43\x2c\xa1\x73\xee\xd1\x2f\xbe\x52\x18\xc2\x3f\x15\x37\x60\x35\x4a\x83\xcc\x72\x25\x0d\x18\xb2\x06\x24\x6d\x81\x1e\x88\xb5\x6e\x0d\xa8\x2c\x95\xb6\xb0\x25\xbe\xae\xac\x19\x74\x65\x04\x02\x1f\xb8\x68\xc5\x6b\x5f\xcd\x05\xb7\x50\x2a\xfd\x3c\x98\x1b\xc0\x7a\x8b\x3b\x03\xa9\x7b\x26\x7d\x8e\x8f\x05\x89\x82\x4c\xc8\x0b\x03\x0c\x25\xe4\x04\x86\x48\x42\x45\x9a\x32\xe7\x74\xbf\x33\xb8\x39\xc7\x82\x24\x23\x38\x57\xa2\x69\x2d\xba\xe4\x3f\xb9\x2c\x6e\x87\x95\xb5\x8d\xc9\xc2\x70\xcd\x6d\xd5\xe6\x13\xa6\x44\xa8\x64\x59\xab\x6d\xc8\x7c\x49\x98\xd7\x2a\x0f\x93\xe9\x32\xa6\x72\xb1\x62\x4b\x36\xc3\x69\x12\x15\xb3\x25\xcd\x93\x7c\x9a\xc6\x48\x4b\x62\x31\xcd\xa6\x8b\x98\xe1\x32\xd4\xad\xb4\x5c\x50\xc8\x94\x10\x4a\xba\xa1\xdf\xef\x9e\xcb\x62\xb2\x56\x3f\x5d\xcd\xa7\xa3\x23\xd5\xc5\x7f\x7f\x7d\x0d\x91\x7b\x9d\xad\x95\x27\x8a\x8a\x72\x31\x2f\x68\x15\xb3\x38\x5f\xc6\x49\xb4\x8a\xa3\x08\x57\x25\xa5\x29\xa5\x69\xba\xc2\x7c\x46\x0b\x56\xc4\x69\x58\x6e\x44\x28\xc8\x92\xf6\xef\x0e\x21\x75\x04\x1e\xc2\x56\x04\x5c\x5a\xd2\x12\x6b\x68\x34\x31\x6e\x5c\x4f\x54\xd9\x29\xaf\x9a\xd4\x65\xb8\x9e\xcc\xde\x45\xc9\x18\xb6\x15\x67\x15\x08\x42\xe9\x57\x9c\x42\x1f\x5a\xac\xc1\x2a\x88\x40\xb5\xb6\x4f\xb2\xca\x62\xed\x5b\xf8\x3a\x15\x37\xc8\x6b\xcc\x6b\x67\x03\x3c\xed\xff\xe4\x08\xea\x3a\x5e\x50\x89\x6d\xfd\x78\xa0\x00\x7d\x8f\xfd\xff\x78\xf1\x1d\xaf\x94\x6a\x32\x88\xde\xd4\xae\x2d\x5a\x12\x24\x6d\x06\x11\xbc\xe9\xb8\x68\x65\xb7\xfb\xa5\xdc\x28\xd6\xad\xfa\x2c\x67\x56\x1a\xb8\x84\x06\x35\xfa\x6f\x51\x2a\x2d\x7a\x8c\xbb\xbb\xbb\xf7\x46\x49\x37\xbd\x71\x2f\x80\xbd\x1f\x00\x02\xbb\x6b\x28\xc8\x20\xf8\x9d\x77\xd1\xa8\x77\xc1\xf8\x51\xdc\x60\xdd\x3a\xf5\xa6\x5f\x39\xa9\xec\x0c\xf7\xb4\x0b\x32\xd8\x3f\xc5\xfc\x7b\x29\x6d\xb2\x08\xc6\x4f\xb5\x41\x34\x9d\x46\x01\x1c\xc6\xcf\x0a\x7b\xf5\xf3\xa5\x49\x1c\xcf\x93\x00\x0e\x4f\xa5\xa7\x31\xdf\x84\x32\xfb\x71\x50\xe6\xdf\x0f\xa5\x9f\xde\xfa\x49\x1f\x7b\x92\xf3\x37\xda\xea\x34\x65\x0f\x41\xa1\x04\x72\xe9\x44\x63\x95\xc6\x35\x39\x9d\x17\x24\x2d\x2f\x39\x69\x27\x3c\x5e\x89\x3f\xba\x1b\xf1\xbf\x3f\xe2\x01\x1c\xfc\x96\xb7\xc7\xd3\x35\x38\xb9\x1a\x43\x49\xdb\xa3\x2f\x83\xbd\xc7\xcf\xc0\x8f\x87\x11\xec\x07\x8e\xb3\xd1\xd4\xa0\xa6\xa1\xe1\x6b\x49\x3a\x03\x6c\x6d\x35\xbc\xf6\x14\x23\xf8\xf9\x37\xc6\x54\x2b\x6d\xef\x76\x8f\x77\x4e\x8e\xa4\x93\x5a\x61\xf1\xcb\xcb\xf4\x5f\x87\xa5\x56\x22\x83\xf0\xe8\x0a\xdf\xc6\x1f\x7d\x2a\xd4\xe0\x86\x4e\xf0\xc7\x60\xd5\x17\x86\x1d\x06\x87\x8f\x01\x00\x00\xff\xff\x38\x5a\x8f\x3f\x7f\x06\x00\x00" func flowserviceaccountSet_execution_effort_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -620,11 +620,11 @@ func flowserviceaccountSet_execution_effort_weightsCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_execution_effort_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x37, 0x75, 0xac, 0x6, 0xec, 0xf7, 0x3e, 0xda, 0xc2, 0x1c, 0xbc, 0xdb, 0xd2, 0xf9, 0x50, 0x92, 0x2c, 0xd2, 0x95, 0x48, 0xef, 0xad, 0xf0, 0x6a, 0xbc, 0x92, 0x53, 0xa0, 0xa, 0xcf, 0x9d, 0x6a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0xdb, 0xc1, 0xb9, 0x62, 0xa9, 0x42, 0x74, 0x68, 0xbe, 0xd1, 0xd7, 0xd6, 0x94, 0xc, 0x9d, 0x43, 0xe7, 0x67, 0xb0, 0xa7, 0x57, 0xa0, 0x72, 0xfa, 0xb0, 0x1f, 0x18, 0x12, 0xbd, 0x99, 0xf}} return a, nil } -var _flowserviceaccountSet_execution_memory_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\xc1\x8a\x83\x40\x10\x44\xef\x7e\x45\x1d\x15\x16\xe7\xb2\xec\x41\x96\x05\x8f\x0b\xc9\x2d\xf9\x80\x61\xd2\xd1\x01\x67\x46\xba\xdb\x98\x10\xfc\xf7\xa0\x12\x09\x39\xa5\x8f\xd5\xc5\xab\x67\x0c\x0e\xad\x17\x28\xdb\x28\xd6\xa9\x4f\x51\x20\xa4\x02\x8b\x48\x23\xe8\x4a\x6e\x98\x53\x04\x0a\x89\x6f\xe8\x7c\xf0\x5a\x66\x2f\xfd\x3c\xd2\xb8\x9b\xd3\x0a\xc7\xff\xa8\x3f\xdf\x05\xee\x19\x00\xf4\x4c\xbd\x65\xca\xc5\x37\x91\xb8\x42\x3d\x68\x5b\x3b\x97\x86\xa8\xcf\xca\x7c\xeb\xbb\xec\x92\x3d\xfd\xae\x80\xbf\xfc\xcc\x29\x54\x30\xa2\x89\x6d\x43\x66\xb3\xd8\x2f\x12\xcb\x5a\xf1\x0e\x10\x7b\xa1\xcd\xe5\x0b\x9a\x3e\x02\x4c\xd9\xf4\x08\x00\x00\xff\xff\x3e\xdc\x40\xf4\x04\x01\x00\x00" +var _flowserviceaccountSet_execution_memory_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\xb1\x6a\xc3\x30\x10\x86\x77\x3f\xc5\x3f\x15\x19\x8a\xb5\x94\x0e\xa6\x14\x3a\x16\xda\xa9\xed\x03\x1c\xea\xc5\x16\x58\x92\xd1\x9d\xe3\x84\xe0\x77\x0f\xb6\x13\x93\x25\x90\x1b\xff\xfb\xf8\xf8\xac\xc5\x6f\xeb\x05\x9a\x29\x0a\x39\xf5\x29\x0a\x84\x55\x40\x88\x3c\x82\x0f\xec\x86\x79\x45\xe0\x90\xf2\x11\x9d\x0f\x5e\xab\xe2\x86\x37\x91\xc7\xaf\x79\xad\xf1\xf7\x19\xf5\xf5\xa5\xc4\xa9\x00\x80\x3e\x73\x4f\x99\x8d\xf8\x26\x72\xae\x41\x83\xb6\xe6\x47\x53\xa6\x86\x4b\x3c\x7d\x38\x97\x86\xa8\x57\x7a\xbe\x95\xac\x64\x65\xaa\x2e\xd1\xff\xdb\xea\x7c\x37\xbb\x9c\x42\x0d\x7b\xf9\xd9\x2d\xec\x7b\xe9\x5a\x02\xca\x7b\x22\xa1\x3d\x6f\x99\xcf\xd0\xf4\x90\x68\x2a\xa6\x73\x00\x00\x00\xff\xff\xc0\x86\x20\x70\x1f\x01\x00\x00" func flowserviceaccountSet_execution_memory_limitCdcBytes() ([]byte, error) { return bindataRead( @@ -640,11 +640,11 @@ func flowserviceaccountSet_execution_memory_limitCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_execution_memory_limit.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0x26, 0x87, 0x5b, 0xdc, 0xb4, 0xba, 0xbb, 0x30, 0xf6, 0x69, 0x15, 0xcf, 0xe4, 0x23, 0xea, 0x24, 0x40, 0x9e, 0x5c, 0xe7, 0x38, 0xfe, 0x13, 0x11, 0x19, 0xb1, 0xde, 0xab, 0x20, 0xe4, 0xf1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0x55, 0xd0, 0x7e, 0x5b, 0xb1, 0x66, 0x8e, 0x6e, 0x52, 0xd0, 0x4d, 0x3f, 0xf0, 0x8a, 0xa, 0x11, 0xfc, 0x2b, 0xb7, 0x1, 0xe1, 0x84, 0xf5, 0x2b, 0x69, 0xf5, 0xa8, 0xc2, 0x36, 0xc0, 0xbb}} return a, nil } -var _flowserviceaccountSet_execution_memory_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\x31\x0b\xc2\x30\x10\x85\xf7\xfe\x8a\x37\xb6\x20\xcd\x22\x0e\x41\x84\x8e\x0e\x6e\x8a\x73\x88\x67\x1b\xb0\x49\xc9\x5d\xad\x52\xfa\xdf\xa5\x56\xa5\x74\xf2\x96\x83\xf7\x1e\x1f\x9f\x52\x38\x56\x8e\x21\xd1\x78\x36\x56\x5c\xf0\x0c\x26\x61\x78\xea\x40\x0f\xb2\xed\x98\xa1\xa6\x3a\xc4\x27\x3a\x72\x65\x25\x9c\x27\xb3\x7d\xea\xa9\x3b\x4f\xb9\x46\x7f\xda\x7b\xd9\xac\x35\xa6\x3f\x64\xe8\x13\x00\x68\x22\x35\x26\x52\xca\xae\xf4\x14\x35\x8a\x56\xaa\xc2\xda\xd0\x7a\xf9\x4e\xc6\x9b\xea\xfc\x16\xcc\x65\xbb\x44\xed\xd2\x6b\x0c\xb5\x86\x62\x09\xd1\x94\xa4\x7e\x76\x87\xb7\xdc\xc7\x21\x5b\xc2\xd8\xdc\x69\xe6\xb8\x82\x84\x3f\x21\x43\x32\xbc\x02\x00\x00\xff\xff\x96\xe9\x2c\xf0\x20\x01\x00\x00" +var _flowserviceaccountSet_execution_memory_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\x31\x6b\xc3\x30\x10\x46\x77\xff\x8a\x6f\x2a\x32\x14\x6b\x29\x1d\x44\x29\x74\xec\xd0\xa9\x2d\x99\x85\x72\xb1\x05\xb1\x64\x74\xe7\x38\xc1\xf8\xbf\x07\x47\x4e\x30\x81\x40\x6e\x39\xf8\x78\x3c\x9e\xd6\xf8\x6b\x3c\x43\x92\x0d\x6c\x9d\xf8\x18\x18\x4c\xc2\x08\x34\x80\x8e\xe4\xfa\x79\x43\x4b\x6d\x4c\x27\x0c\xe4\xeb\x46\xb8\x2a\x56\xbc\x0a\x34\x6c\xf2\x6e\x30\xfe\x7f\x07\x79\x7f\x33\xc8\x7f\x2a\x31\x16\x00\xd0\x25\xea\x6c\x22\xc5\xbe\x0e\x94\x0c\x6c\x2f\x8d\xfa\x95\x98\x6c\x4d\x25\x5e\xbe\x9c\x8b\x7d\x90\x2b\x3d\x5f\x26\x2b\xce\x4c\xb5\x8f\x76\xfb\x71\x6f\xff\x54\xbb\x14\x5b\x03\xbd\x50\xfa\x16\xfc\x73\xe9\x5d\xb2\xca\x47\x52\xb6\x07\x5a\xe5\xbf\x42\xe2\x93\xb2\xa9\x98\xce\x01\x00\x00\xff\xff\x43\xef\x3d\xe4\x3b\x01\x00\x00" func flowserviceaccountSet_execution_memory_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -660,11 +660,11 @@ func flowserviceaccountSet_execution_memory_weightsCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_execution_memory_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0x9e, 0xe1, 0x98, 0x6a, 0x53, 0x46, 0x75, 0xcd, 0x3e, 0x85, 0x4f, 0xc5, 0x75, 0x19, 0xd2, 0xa, 0x71, 0x20, 0xb2, 0xc3, 0xa8, 0x1c, 0x2a, 0xc6, 0x45, 0xd5, 0x39, 0x69, 0xee, 0xc9, 0x8c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x68, 0x24, 0x78, 0x78, 0x6b, 0x42, 0x18, 0x35, 0x8d, 0x1, 0x95, 0xfe, 0xec, 0x4b, 0x3b, 0x81, 0x3, 0xa1, 0x7, 0x1d, 0xeb, 0x87, 0x46, 0x33, 0xa2, 0x65, 0x58, 0xe5, 0x14, 0x5d, 0x3c}} return a, nil } -var _flowserviceaccountSet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x4d\x6b\xf3\x30\x10\x84\xcf\xd2\xaf\x58\x72\x78\x71\x2e\xf6\x7b\x36\x6d\x83\xf3\x05\x81\x42\x21\xee\xc7\x35\x8a\xb2\x4e\x04\x8e\xd6\xac\xd6\x49\xa0\xe4\xbf\x17\xab\xa1\x4d\xa8\x4b\xaf\x5a\xed\xec\x33\x33\x6e\xdf\x10\x0b\xcc\x6b\x3a\x96\xc8\x07\x67\xb1\xb0\x96\x5a\x2f\x50\x31\xed\xe1\xff\x69\xfe\xf8\xf4\x56\xce\x96\xaf\x8b\xc9\xac\x98\x4e\x97\xb3\xb2\xd4\x3a\xcb\xe0\x79\xe7\x02\x08\x1b\x1f\x8c\x15\x47\x1e\xec\xce\xf8\x2d\x06\x58\xb9\x00\xe6\x22\x61\x91\x4d\x1c\x32\x06\x61\x67\x05\x37\x2b\x38\x98\xba\x45\x7d\xb5\x9a\x7c\x4f\x73\x18\x13\xd5\x43\x78\xd7\x5a\xd5\x28\x10\x6e\x90\x8a\xcd\xde\xf9\x1c\xfe\xfd\x84\x4d\xe3\xc8\x05\x61\x23\xc4\x5a\xab\x86\xb1\x31\x8c\x49\x70\x5b\x8f\x9c\x43\xd1\xca\xee\xf2\xb7\x53\x57\x2a\xcb\x60\x4c\xcc\x74\x04\xc6\x0a\x19\xbd\x45\x10\xea\xcb\xe1\x46\xba\x73\x42\x2d\x5b\x4c\xa3\x86\x56\x2a\x60\x5d\xa5\x3d\x9c\x70\x0f\x9f\xc7\xd3\x75\xbc\x73\xf7\x27\xf6\x43\xd2\x45\x9e\x43\x16\x84\xd8\x6c\x31\xab\xae\x16\xba\x8f\x43\xad\x94\x1a\x8d\xa0\x31\xde\xd9\x64\xf0\xe2\xcd\xba\x8e\xd4\xeb\x1e\x27\xa6\x17\x7b\x30\xd4\xea\xac\x15\x9e\xd0\xb6\x82\x31\x89\xdf\x0c\xa4\x01\x65\x11\x2e\x2f\x13\xc6\xd8\xe4\xf2\xab\xaa\xab\xd6\xa2\xe6\xf9\x23\x00\x00\xff\xff\xd6\x4c\xa3\x70\x4a\x02\x00\x00" +var _flowserviceaccountSet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\x4d\x6b\xc2\x40\x10\x3d\xef\xfe\x8a\x21\x07\x49\x2e\xc9\x3d\xb4\x15\x2d\x14\x7a\xed\xd7\xd9\x71\x9d\xe8\x42\xdc\x09\xb3\x13\x2d\x14\xff\x7b\xc9\x1a\x5a\xc5\x94\x5e\xf7\xed\xfb\x9a\xe7\xf7\x1d\x8b\xc2\x53\xcb\xc7\x57\x92\x83\x77\xb4\x70\x8e\xfb\xa0\xd0\x08\xef\x21\xbb\x05\x32\x6b\xab\x0a\xde\x76\x3e\x82\x0a\x86\x88\x4e\x3d\x07\x70\x3b\x0c\x5b\x8a\xb0\xf2\x11\x70\x94\x70\x24\x98\x40\xa1\xa8\xe2\x9d\xd2\x66\x05\x07\x6c\x7b\xb2\x17\xd4\xfc\x17\xad\x61\xc9\xdc\x16\xf0\x65\xad\x69\x49\x21\x5e\x39\x2f\x36\x7b\x1f\x6a\x98\xdd\x66\x2a\x13\xe4\xa3\x0a\x2a\x8b\xb5\xa6\x13\xea\x50\x28\x8f\x7e\x1b\x48\x6a\xc0\x5e\x77\xf9\x92\x45\xf8\xf8\x31\xf8\x17\x30\x1b\xa9\x83\x99\x31\x55\x05\x67\x14\x84\x1a\x12\x0a\x8e\x40\x79\xea\x2c\x57\x4e\x43\x31\xee\xc5\x51\x99\x34\xac\x31\x91\xda\xa6\x9c\x88\x0d\xf7\x70\xce\x52\x46\x65\xc1\x2d\x95\xeb\xe4\x77\xf7\x6f\x9b\x87\x7c\x58\xa2\x86\x6a\x24\x56\xcd\x05\x61\xf8\x58\x58\x63\xcc\x7c\x0e\x1d\x06\xef\xf2\xec\x3d\xe0\xba\x4d\xe9\xd7\x13\x8d\x70\x32\x7e\x56\x58\x73\xb2\x86\x3e\xc9\xf5\x4a\xe9\x22\x7f\x15\x29\x23\xe9\x73\x1c\x5f\x1e\x85\xd2\xc0\x2f\x3f\x0b\x5e\x8c\x99\x34\x4f\xdf\x01\x00\x00\xff\xff\x81\x61\xec\x6a\x61\x02\x00\x00" func flowserviceaccountSet_is_account_creation_restrictedCdcBytes() ([]byte, error) { return bindataRead( @@ -680,11 +680,11 @@ func flowserviceaccountSet_is_account_creation_restrictedCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_is_account_creation_restricted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x99, 0xe6, 0x5c, 0x96, 0xf7, 0xd5, 0xbe, 0x67, 0xcc, 0x62, 0x34, 0x2b, 0x4d, 0xd5, 0x3f, 0xb6, 0x29, 0xe7, 0xa8, 0xe7, 0x8c, 0x2b, 0xa, 0xd0, 0x7e, 0x8c, 0x5, 0xc5, 0xe7, 0x9f, 0x69, 0x7f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x3d, 0xd6, 0x34, 0xd1, 0xea, 0xb6, 0x5e, 0x1f, 0xc8, 0xe2, 0xef, 0xf3, 0xff, 0xc2, 0x1d, 0xb0, 0x58, 0xd4, 0x2d, 0x2a, 0x99, 0x74, 0xde, 0x50, 0xe7, 0x21, 0x74, 0x5b, 0x8f, 0x11, 0x2}} return a, nil } -var _flowserviceaccountSet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\x41\x6b\xe3\x40\x0c\x85\xcf\x33\xbf\x42\xe4\xb0\x38\xb0\xd8\x7b\x58\xf6\x60\xb6\x0d\xa6\xb1\x4f\x85\x96\xa6\xa1\xe7\xc9\x54\x4e\x06\xec\x91\x91\x64\x12\x28\xf9\xef\x25\x4e\x9a\xa4\xe0\xf4\x38\x6f\xf4\x3e\x3d\xf4\x42\xdb\x11\x2b\x54\x0d\x6d\x2b\x44\x81\x9a\xa9\x85\x3f\xbb\xea\xf1\xe9\xad\x2a\xcb\x45\x31\x9f\xbf\x94\x8b\x85\xb5\x59\x06\xaf\x9b\x20\xa0\xec\xa2\x38\xaf\x81\x22\x08\xaa\x80\x6e\xf0\xe2\xee\x1c\xbb\x16\x15\x59\xec\xd5\x60\x22\x3d\xaf\xb1\x72\x5e\x89\x73\x58\x56\x61\xf7\xef\xef\x6f\x08\xd1\x37\xbd\x04\x8a\x65\x5d\x13\xeb\x03\x89\x5e\x3e\x71\x87\xbe\xd7\xd1\xcf\x29\x7c\x58\xd3\xa0\x42\x7d\xda\x5a\x78\x4f\x7d\xd4\xe2\xbd\x0d\x31\x87\x5f\x5f\x61\xd2\x41\x08\xa2\xec\x94\xd8\x5a\xd3\x31\x76\x8e\x31\x91\xb0\x8e\xc8\x39\x14\xbd\x6e\x4e\xde\x81\x69\x04\x9b\x3a\x1d\xa3\xc2\x1d\x1c\x4d\xe9\x8a\x98\x69\xfb\xff\xc6\x92\xfb\xe4\x70\xbe\x1c\x32\x51\x62\xb7\xc6\xec\x0c\x3b\x4c\x4d\xad\x31\x66\x36\x83\xce\xc5\xe0\x93\xc9\x32\xba\x55\x83\xa0\x04\x47\x28\x30\xd6\xc8\x18\xfd\xa0\xb9\x6b\x2e\x30\x0a\xf5\xec\x71\x32\xb5\x66\x6f\xcd\xf1\x3a\xf8\x73\xe8\x54\x50\x2b\xc4\xe7\x73\x25\xdf\x6b\xb8\x7a\xdc\xe8\x62\x44\xbc\x51\xcc\x88\x38\x04\xdd\x7f\x06\x00\x00\xff\xff\xff\xaa\x15\x0d\x5e\x02\x00\x00" +var _flowserviceaccountSet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\xcf\x6a\xf3\x30\x10\xc4\xcf\xd2\x53\x2c\x3e\x04\x1b\x3e\xec\xcb\x47\x0f\xa6\x6d\x48\x4b\x7d\xee\xa1\xe9\x5d\x51\xd7\x89\xc0\xd6\x9a\xdd\x15\x09\x94\xbc\x7b\x89\xf3\xb7\xe0\xf4\xa8\xd9\xd5\x6f\x86\x9d\xd0\x0f\xc4\x0a\x4d\x47\xdb\x06\x51\xa0\x65\xea\x21\x3b\x3f\x33\x6b\xab\x0a\x3e\x36\x41\x40\xd9\x45\x71\x5e\x03\x45\x10\x54\x01\xdd\xe0\xf5\xdb\xe0\xd8\xf5\xa8\xc8\x62\x6f\x16\x73\x49\xbc\xc6\xc6\x79\x25\xae\x61\xd9\x84\xdd\xc3\xff\x7f\x10\xa2\xef\x92\x04\x8a\x6f\x6d\x4b\xac\xaf\x24\x7a\x1d\xe2\x0e\x7d\xd2\xc9\x61\x01\xdf\xd6\x74\xa8\xd0\x9e\x5c\x17\xde\x53\x8a\xba\xf8\xea\x43\xac\x61\x76\x0e\x53\x8e\x42\x10\x65\xa7\xc4\xd6\x9a\x81\x71\x70\x8c\xb9\x84\x75\x44\xae\xc1\x25\xdd\xe4\x2f\xc4\x4c\xdb\x4f\xd7\x25\x2c\x60\x76\x42\x8d\x16\x46\xb0\x6b\xcb\x29\x13\x78\x82\x23\xa3\x14\x25\x76\x6b\x2c\x57\x23\xe5\xf1\x8e\xf7\x73\x7e\x38\x67\x0d\xd5\x69\xbd\xba\x40\x0f\x5b\x85\x35\xc6\xcc\xe7\x30\xb8\x18\x7c\x9e\x2d\xa3\x5b\x75\x08\x4a\x70\x84\x02\x63\x8b\x8c\xd1\x8f\x9a\xbb\xe5\x02\xa3\x50\x62\x8f\x59\x61\xcd\xde\x9a\xe3\xd1\xf0\xef\xf0\xa5\xa0\x36\x88\xef\x97\xa6\x7e\xb7\x73\xf3\xb8\x53\xd1\x84\x78\xa7\xaf\x09\x71\x0c\xba\xff\x09\x00\x00\xff\xff\x3f\x59\x3d\x32\x6e\x02\x00\x00" func flowserviceaccountSet_tx_fee_parametersCdcBytes() ([]byte, error) { return bindataRead( @@ -700,11 +700,11 @@ func flowserviceaccountSet_tx_fee_parametersCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_tx_fee_parameters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc4, 0xd9, 0xa, 0xe8, 0x29, 0x62, 0x98, 0x4f, 0xb0, 0x5b, 0x5b, 0x90, 0x2e, 0x2c, 0xa0, 0x36, 0x6b, 0x6b, 0x7d, 0x8f, 0xfc, 0xdd, 0x15, 0xf5, 0xa9, 0x70, 0x54, 0xe7, 0x8, 0x37, 0x39, 0x9b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7, 0x44, 0xba, 0x8b, 0xc3, 0xc9, 0x40, 0xba, 0x19, 0x23, 0xf3, 0x15, 0x57, 0xbc, 0x3a, 0x15, 0xd5, 0x73, 0xa0, 0x4, 0xae, 0x10, 0xc7, 0x3c, 0x8d, 0x23, 0xf0, 0xe3, 0xef, 0x69, 0x6c, 0xa2}} return a, nil } -var _flowserviceaccountSet_tx_fee_surge_factorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xc1\x4a\xf3\x40\x14\x85\xd7\x33\x4f\x71\xe9\xe2\x27\xdd\x24\xff\x42\x5c\x04\xb5\x04\xda\x59\x09\x82\xb1\xb8\x9e\x8e\x27\xed\x40\x32\x13\xee\xdc\xd0\x82\xf4\xdd\xa5\x69\xb5\x11\xd4\xe5\x1c\xce\xf7\xcd\xe5\xf8\xae\x8f\x2c\x64\xda\xb8\x37\x40\xa2\x86\x63\x47\xff\x0f\xe6\xf1\xe9\xd5\xac\x56\x75\xb5\x5c\x3e\xaf\xea\x5a\xeb\xa2\xa0\x97\x9d\x4f\x24\x6c\x43\xb2\x4e\x7c\x0c\x94\x20\x89\x64\x87\x2b\xdd\x5b\xb6\x1d\x04\x9c\xf4\xa4\x98\xa5\x81\xb7\x30\xd6\x49\xe4\x92\xd6\xc6\x1f\x6e\x6f\xe6\xf4\xae\x55\x0b\xa1\xe6\xc2\x56\xce\xc5\x21\x48\xf5\xd6\xf9\x50\xd2\xbf\x4f\x65\x3e\x06\x3e\x09\x5b\x89\xac\xb5\xea\x19\xbd\x65\x64\xc9\x6f\x03\xb8\xa4\x6a\x90\xdd\x85\x1d\x9d\x2a\xa1\x6d\xf2\x9f\xac\x74\x4f\x67\x28\xdf\x44\xe6\xb8\xbf\xfb\xe5\x93\x87\xec\x34\x42\x49\x45\x92\xc8\x76\x8b\xe2\x4b\x76\x6a\xcd\xb5\x52\x6a\xb1\xa0\xde\x06\xef\xb2\xd9\x3a\xd8\x4d\x0b\x92\x48\x67\x29\x31\x1a\x30\x82\x1b\x33\x3b\xf5\x12\x23\xc5\x81\x1d\x66\x73\xad\x8e\x5a\xe1\x00\x37\x08\xfe\x3e\x3a\x4f\x10\x03\xd4\xd7\x05\xbf\xaf\x39\x79\x8c\xd6\xe3\x47\x00\x00\x00\xff\xff\x1e\x43\xfa\x9c\xd1\x01\x00\x00" +var _flowserviceaccountSet_tx_fee_surge_factorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xb1\x6a\xf3\x40\x10\x84\xeb\xbb\xa7\x58\x54\x18\xa9\x91\x9a\x9f\xbf\x10\x49\x8c\x53\xe8\x05\x12\xa7\x3f\x5f\x46\xf6\x81\x74\x27\x76\xf7\xb0\x21\xf8\xdd\x83\x65\x3b\x76\x20\x49\xb9\xc3\xcc\x37\xcb\x84\x71\x4a\xac\xd4\x0d\x69\xdf\x01\x42\x3d\xa7\x91\x8a\xeb\x59\x58\xdb\x34\xf4\xba\x0b\x42\xca\x2e\x8a\xf3\x1a\x52\x24\x81\x0a\xe9\x0e\xb7\xd8\xe4\xd8\x8d\x50\xb0\xd8\x3b\x63\x29\x99\xb7\xe8\x9c\xd7\xc4\x2d\xad\xbb\x70\xf8\xff\xaf\xa2\x0f\x6b\x06\x28\xf5\x97\xec\xca\xfb\x94\xa3\xae\xde\xc7\x10\x5b\x5a\x5c\x91\xf5\x2c\x04\x51\x76\x9a\xd8\x5a\x33\x31\x26\xc7\x28\x25\x6c\x23\xb8\x25\x97\x75\x57\x3e\x27\xe6\xb4\x7f\x73\x43\x46\x45\x8b\x0b\x6a\xae\x30\x82\xa1\xaf\x7f\x2a\xa1\x47\x3a\x33\x6a\xd1\xc4\x6e\x8b\x7a\x33\x53\x1e\x7e\xe9\x7e\x2a\x4f\xa3\xb4\xd4\x5c\xec\xcd\x17\xf4\xe4\xaa\xac\x31\x66\xb9\xa4\xc9\xc5\xe0\xcb\x62\x1d\xdd\x66\x00\x69\xa2\x33\x94\x18\x3d\x18\xd1\xcf\x9a\xbb\xe7\x12\x43\x52\x66\x8f\xa2\xb2\xe6\x68\x0d\x0e\xf0\x59\xf1\xf7\xf3\xb5\x40\x3b\xe0\xe5\x36\xec\xf7\x91\xef\x8e\x99\x7a\xfc\x0c\x00\x00\xff\xff\x3b\xbd\x5d\x8d\xe1\x01\x00\x00" func flowserviceaccountSet_tx_fee_surge_factorCdcBytes() ([]byte, error) { return bindataRead( @@ -720,11 +720,71 @@ func flowserviceaccountSet_tx_fee_surge_factorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_tx_fee_surge_factor.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1d, 0x84, 0xea, 0x4e, 0xdf, 0x39, 0x64, 0x58, 0x5c, 0x35, 0xeb, 0xc3, 0x27, 0xcb, 0x39, 0xc9, 0xa5, 0xf, 0x7b, 0xbe, 0x52, 0x59, 0x3c, 0xbc, 0x9a, 0xc2, 0x15, 0x2f, 0x72, 0xc3, 0x0, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x64, 0xef, 0xd8, 0xdc, 0x37, 0x2e, 0x4d, 0x8a, 0x1c, 0x33, 0x3d, 0x68, 0x59, 0xbd, 0xda, 0xe, 0x13, 0xad, 0x59, 0x87, 0xb7, 0x74, 0x45, 0xa3, 0xd1, 0xef, 0xa8, 0x33, 0x79, 0x24, 0x93, 0xb0}} return a, nil } -var _dkgAdminForce_stop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x41\x4f\x83\x40\x10\x85\xef\xfc\x8a\x97\x1e\x0c\x5c\x88\x67\xa2\x36\x44\x2a\x07\x2e\x46\x7e\xc1\xba\x0c\x74\x23\xcc\x90\x61\x48\x9b\x98\xfe\x77\x83\x6b\x35\x3d\xf8\x2e\x9b\x9d\xbc\xf7\xcd\x9b\x30\xcd\xa2\x86\x97\x51\x4e\x55\x53\xa3\x57\x99\x70\x7f\xae\x9a\xba\xac\xaa\xb7\x43\xdb\x26\x89\xa9\xe3\xc5\x79\x0b\xc2\xf8\x4c\x12\x00\x18\xc9\xd0\x7d\x0c\x65\x37\x05\x2e\x70\xf7\x13\xce\xbf\xff\xd1\x31\x2b\xcd\x4e\x29\x5d\xc2\xc0\xa4\x05\xca\xd5\x8e\xa5\xf7\xb2\xb2\x65\x57\xca\xa6\x85\xc6\x3e\xbf\xa2\xf0\x88\xe8\xcf\xdf\x45\x55\x4e\x0f\xb7\xe4\xa7\x74\x6b\x57\xe0\x66\xd8\x9a\xa8\x1b\xe8\xd5\xd9\x31\xfb\xa5\x6e\xda\xef\x31\x3b\x0e\x3e\xdd\x3d\xcb\x3a\x76\x60\x31\x44\x2c\xb6\x43\xe3\x42\xa5\x9e\x94\xd8\xd3\x2e\x8b\x9d\x2e\xf1\xa1\x33\xf9\xd5\xe8\xdf\xa6\x79\x2f\xea\xe9\xc0\x5d\xd5\xd4\xe9\x5f\xf4\xf2\x15\x00\x00\xff\xff\x6b\xe4\xb6\xb3\x4e\x01\x00\x00" +var _accountsAdd_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x51\x6b\xdb\x30\x14\x85\x9f\xa5\x5f\x71\x9a\x87\x60\x83\x09\xce\x3a\xc2\x10\xf5\x20\x0c\x46\x47\x19\x0c\xba\xee\x5d\xb1\x2e\xb6\x88\x23\x19\xf9\xba\xae\x19\xf9\xef\x43\xc9\xe6\x26\x38\xec\x49\xf2\xf5\xb9\xe7\xd3\x3d\x5c\x7b\x68\x7d\x60\x7c\x09\x63\xcb\x5e\x4a\x0e\xda\x75\xba\x64\xeb\x5d\xb2\xa7\x51\xe1\x99\x83\x75\x55\x86\xce\x56\x4e\x73\x1f\x68\xdb\x54\x3e\x58\xae\x0f\x0a\x2f\xdf\x1c\x7f\xca\x50\xeb\xae\x9e\x57\x07\xb2\x55\xcd\x0a\x2f\x5f\xed\xdb\xe6\x63\x8a\xdf\x52\x8a\x36\x50\xab\x03\x25\xd1\x8c\x82\x82\xee\xb9\x4e\xb6\xc6\x3c\xd1\x98\x62\xb9\x2d\x4b\xdf\x3b\x8e\x52\x11\xa5\xa7\x53\xcc\xc1\xf8\x5c\x60\x8d\xe5\xf2\xc6\x9b\xf0\x50\xe0\x5e\x61\xf1\xbd\xef\x18\x6d\xf0\xaf\xd6\x10\xf4\xbb\x10\x7a\x52\x06\x3d\xe0\x55\x37\x3d\x81\x6b\xcd\xb0\x1d\xd6\x19\x3e\x64\xf0\x01\xf7\x8b\x08\xbe\x1a\x6b\x62\x5e\x57\x1f\x0a\x6c\xe6\xb8\xa8\xf9\x2f\x69\x47\x3c\x10\x39\xac\xa1\x9d\xc1\xe6\x84\x3b\xe7\x15\x1d\xd7\x79\x9e\xaf\x72\x85\xc5\xcf\x9a\xb0\xa7\xf1\x6f\x94\x38\x44\xca\x8e\xa6\xee\xfc\xd4\x1d\xd5\xd1\xe0\x28\x85\x68\x88\xd1\xf6\xbb\xc6\x96\x4f\x34\xa2\xc0\x8f\x7f\xf7\x24\x12\xa6\x3f\x2a\xba\xae\x0c\x95\xde\xd0\x23\xbd\x25\x69\x76\x3b\x68\x85\xe7\x59\x2d\x09\x7a\xf8\x15\x87\x51\x37\xe2\x4f\xef\xa4\x10\xa9\x94\x67\x33\x0a\xab\x3d\x8d\xdd\x4a\x1b\x93\x5c\xb0\xa7\xeb\x6c\x73\x1e\x2f\x3f\x2f\x40\x57\xb2\xf4\xee\x7d\xb7\xce\x67\x2a\xc5\x51\x1e\xff\x04\x00\x00\xff\xff\xa2\xf6\xe5\xb7\xc9\x02\x00\x00" + +func accountsAdd_keyCdcBytes() ([]byte, error) { + return bindataRead( + _accountsAdd_keyCdc, + "accounts/add_key.cdc", + ) +} + +func accountsAdd_keyCdc() (*asset, error) { + bytes, err := accountsAdd_keyCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "accounts/add_key.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0x9d, 0x12, 0x10, 0xf2, 0xbf, 0x12, 0x9b, 0x86, 0x80, 0x3b, 0x15, 0x3e, 0x13, 0x74, 0x20, 0xc9, 0x11, 0x7e, 0x8a, 0x24, 0x9, 0xa1, 0xe2, 0xef, 0x6f, 0x91, 0x6a, 0x4e, 0x8d, 0x61, 0x1f}} + return a, nil +} + +var _accountsCreate_new_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\x61\x8b\x9b\x40\x10\xfd\xac\xbf\xe2\x5d\x3e\x04\x05\x09\xa6\x57\x42\x59\xce\xc2\xb5\x50\xae\x94\x42\x21\xbd\x7e\x9f\xe8\xa0\x4b\x92\x5d\x59\xc7\xf3\xa4\xe4\xbf\x97\xd5\x9c\x97\x60\xe8\xa7\x5d\xc7\x37\xf3\xde\xbe\x79\xfa\x58\x5b\x27\xf8\xea\xfa\x5a\x6c\x18\x8a\x23\xd3\x50\x2e\xda\x9a\x68\xcf\xbd\xc2\x56\x9c\x36\x65\x82\x46\x97\x86\xa4\x75\xfc\x78\x28\xad\xd3\x52\x1d\x15\x9e\xbf\x1b\xf9\x94\xa0\xa2\xa6\x9a\x57\x3b\xd6\x65\x25\x0a\xcf\xdf\xf4\xeb\xe6\x63\x8c\xbf\x61\x50\x3b\xae\xc9\x71\xe4\x67\xb1\x53\xa0\x56\xaa\xe8\x8b\x75\xce\x76\x7f\xe8\xd0\x72\x82\xad\x58\x47\x25\xc7\x58\x3e\xe6\xb9\x6d\x8d\x0c\x7d\xbe\x71\x38\x83\xb9\x0a\x7c\xce\xb0\xc6\x72\x79\x43\x20\x1e\x32\xdc\x2b\x2c\x7e\xb6\x8d\xa0\x76\xf6\x45\x17\x0c\x7a\x07\x82\x26\xa4\xa3\x0e\x2f\x5e\x02\xa4\x22\x81\x6e\xb0\x4e\xf0\x21\x81\x75\xb8\x5f\x78\xe2\xab\x37\x4e\x9c\xd7\xd5\x87\x0c\x9b\x39\x9d\xc7\xfc\x97\x69\xc7\xd2\x31\x1b\xac\x41\xa6\xc0\x66\xa0\x1b\xcd\xf3\x13\xd7\x69\x9a\xae\x52\x85\xc5\xef\x8a\xb1\xe7\xfe\xec\x2b\x8e\x9e\x65\xc7\x53\x77\x3a\x74\x7b\xb4\x1f\x70\x0a\xc3\x20\x38\xb0\xa0\x6e\x77\x07\x9d\xff\xe0\x1e\x19\x7e\xbd\xdd\x23\x4f\x31\xfd\x51\x7e\xec\xaa\xe0\xdc\x16\xfc\xc4\xaf\x51\x9c\xdc\x76\x5a\x61\x3b\xab\x45\x8e\xc6\xd5\xa9\x1b\xfe\xc7\x77\x61\x10\xc4\x6f\x4a\x68\x5c\x28\x32\x9c\x57\x1b\xd5\xd4\xfb\x14\x8c\x69\x18\x70\x67\xcc\x6a\xcf\x7d\xb3\xa2\xa2\x88\x2e\x44\x4e\xd7\x59\xe0\x9e\x2e\x3f\x2f\x14\x5d\xc1\xe2\xbb\xf7\x48\x8e\x67\x1c\x06\xa7\xf0\xf4\x2f\x00\x00\xff\xff\xc9\x2b\x3a\x56\x00\x03\x00\x00" + +func accountsCreate_new_accountCdcBytes() ([]byte, error) { + return bindataRead( + _accountsCreate_new_accountCdc, + "accounts/create_new_account.cdc", + ) +} + +func accountsCreate_new_accountCdc() (*asset, error) { + bytes, err := accountsCreate_new_accountCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "accounts/create_new_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc4, 0xa7, 0xef, 0xd8, 0x70, 0x83, 0x96, 0xe8, 0xc7, 0xa3, 0x61, 0x1f, 0x72, 0xa9, 0xf8, 0x9f, 0x67, 0x5b, 0xf6, 0xd5, 0xc9, 0x33, 0x6d, 0xd3, 0x89, 0xe5, 0x83, 0x9c, 0xba, 0x78, 0x44, 0x3c}} + return a, nil +} + +var _accountsRevoke_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4e\xc4\x30\x10\x45\x6b\xfb\x14\xa3\x2d\xc0\xdb\xec\x01\x56\xa2\xa0\x5c\x21\x51\x70\x03\xcb\x7c\x92\x91\x57\xe3\xc8\x9e\x84\x18\x94\xbb\xa3\xd8\x20\xa5\xa0\xb3\xe4\xf7\xde\x7c\xcd\x5e\x8a\x0f\xca\x49\x5c\x44\xbd\xc9\x3b\xd6\x2b\xdd\x44\xcf\xf4\x6d\xcd\x94\x31\xf9\x0c\x57\x78\x10\xe4\x2b\xf9\x59\x47\xf7\x86\x25\x45\xbc\xa0\x9e\xe9\xe1\x39\x84\x34\xff\xc2\x86\x3f\xe8\x0e\xa5\x88\x4a\x4f\xd4\x95\x4b\x44\x2d\x97\x01\x7a\x88\xff\xbd\xba\x64\x8e\x60\x6e\xe9\xff\x58\x6b\xcc\x46\xb8\x17\x74\x69\xf2\xc2\xc1\x9d\x5e\x53\xbb\xf6\xc9\x3a\x92\x8e\xa0\x81\x17\x08\xf1\x6e\x10\x56\x2e\x5a\x28\x49\xfb\xd9\x97\xa7\xcc\x5f\xc8\x8f\x85\x7c\x5f\x7d\x6a\x55\x6b\x36\xbb\xfd\x04\x00\x00\xff\xff\x57\x3a\xd3\x8c\x07\x01\x00\x00" + +func accountsRevoke_keyCdcBytes() ([]byte, error) { + return bindataRead( + _accountsRevoke_keyCdc, + "accounts/revoke_key.cdc", + ) +} + +func accountsRevoke_keyCdc() (*asset, error) { + bytes, err := accountsRevoke_keyCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "accounts/revoke_key.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0x7a, 0xb7, 0x28, 0x37, 0xfd, 0xce, 0x77, 0xa9, 0x10, 0xf6, 0xfc, 0xc, 0x62, 0x2c, 0x6c, 0x4d, 0x5b, 0x17, 0xf6, 0xfb, 0xf7, 0x29, 0x5f, 0x34, 0x5d, 0x50, 0xd3, 0x50, 0x8d, 0xd5, 0x15}} + return a, nil +} + +var _dkgAdminForce_stop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xbf\x6a\xc3\x30\x10\xc6\x77\x3f\xc5\x87\x87\xa0\x2c\x7a\x00\xd3\x36\xa4\x4d\x9b\x21\x4b\xa1\xd0\x5d\x95\xcf\x8e\xa8\xac\x33\xe7\x13\x29\x84\xbc\x7b\xb1\x95\x14\x32\xf4\xb6\x3b\xee\xf7\xfd\x09\xc3\xc8\xa2\x78\x8b\x7c\xda\x1d\xf6\xe8\x84\x07\xd4\xd7\xad\xae\x2a\x15\x97\x26\xe7\x35\x70\xc2\xb9\xaa\x00\x20\x92\xa2\xfd\xee\xb7\xed\x10\x52\x83\xd5\xf5\xd7\x2e\x7b\xf9\x18\x85\x46\x27\x64\xa6\xd0\x27\x92\x06\x2e\xeb\xd1\x3c\xb3\x08\x9f\x3e\x5d\xcc\xb4\xc6\x6a\xeb\x3d\xe7\xa4\x6b\x9c\x17\x62\x9e\x89\x62\x67\x6f\xc2\x78\x44\xa1\xed\xa4\x2c\xae\x27\xfb\xb5\xf0\x0f\xf7\x7e\x4f\x66\x0e\xdc\xe0\xee\xf8\x51\x88\x77\xa7\xc7\xf5\x9f\xfa\x3c\x9b\x0d\x46\x97\x82\x37\xf5\x0b\xe7\xd8\x22\xb1\xa2\xc8\x62\xee\x5e\x8c\x85\x3a\x12\x4a\x9e\xea\x02\x5f\x4a\x27\xfa\x21\x9f\x95\xfe\xcb\x6b\x3b\x16\x4f\xaf\xa9\xdd\x1d\xf6\xe6\x06\x5e\xaa\xdf\x00\x00\x00\xff\xff\x8e\x1e\xeb\xa5\x5e\x01\x00\x00" func dkgAdminForce_stop_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -740,11 +800,11 @@ func dkgAdminForce_stop_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/force_stop_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0x53, 0xf9, 0x8d, 0x95, 0x45, 0x15, 0x8e, 0x63, 0x8, 0xf2, 0x6b, 0x8e, 0xd9, 0x78, 0xd1, 0xb5, 0x25, 0x89, 0x30, 0xf7, 0x90, 0x6d, 0xe2, 0x60, 0xed, 0x4d, 0xb9, 0x5d, 0xdc, 0xd, 0x6c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd, 0x7, 0x7c, 0x9c, 0xa1, 0xca, 0xf3, 0xe6, 0x91, 0x69, 0x51, 0x5d, 0xe5, 0x2c, 0xbc, 0x86, 0x32, 0xf5, 0xb5, 0x87, 0xed, 0x11, 0x8e, 0x29, 0xe6, 0x7c, 0x43, 0xc6, 0x29, 0x64, 0x8b, 0x6d}} return a, nil } -var _dkgAdminPublish_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x41\x4b\xc3\x40\x10\x05\xe0\xfb\xfc\x8a\xe7\x45\x5a\x90\xc6\x73\x11\x21\x10\xed\xa1\x17\x31\xfe\x81\x35\xdd\x6e\x86\x6e\x66\x96\xd9\x09\x2a\xd2\xff\x2e\x1a\x05\x3b\xc7\x79\x1f\x8f\xc7\x53\x51\x73\x3c\x66\x7d\xeb\xf6\x3b\x1c\x4d\x27\xdc\xbe\x77\xfb\x5d\xdb\x75\xcf\x0f\x7d\x4f\xd4\x34\x78\x19\xb9\xc2\x2d\x48\x0d\x83\xb3\x0a\xb8\x42\x25\x7f\xe0\xa8\x06\x8f\xd5\x59\xd2\x15\xd1\x7f\xf1\x49\x04\x00\xc5\x62\x09\x16\x57\x95\x93\x44\xdb\xa2\x9d\x7d\x6c\x87\x41\x67\xf1\xf5\x9f\xf9\xbe\x25\xdf\x64\x96\xd3\xdd\xf5\xef\x98\x4d\x7b\x98\x58\xee\x57\x4d\x99\x5f\x33\x0f\xcd\xe1\x94\x7e\x3e\x37\xf0\x60\x29\xfa\x16\x17\xb0\x77\xb5\x90\xe2\x53\xf0\x71\xbd\x14\x9f\x89\xce\x5f\x01\x00\x00\xff\xff\xd0\x9c\x76\xb8\xe0\x00\x00\x00" +var _dkgAdminPublish_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x9e\x3d\x94\x04\x24\xb9\x17\x15\x4a\x45\x0f\x5e\x04\xfd\x03\xd3\xed\x36\x19\xdc\xec\x2e\x33\x13\x44\x4a\xff\xbb\x34\xa9\x12\xc1\xbd\xbd\xe5\x7d\xdf\x1b\x1e\x4a\x16\xc3\x53\xcc\x9f\x8f\x2f\xcf\x38\x4a\x1e\xb0\xba\xa6\x95\x73\x6d\x8b\xf7\x9e\x15\x26\x94\x94\xbc\x71\x4e\x60\x45\x4e\xf1\x0b\xc7\x2c\xb0\xa0\xc6\xa9\xbb\x71\x6e\xd9\x38\x39\x07\x00\x45\x42\x21\x09\x95\x72\x97\x82\x6c\x40\xa3\xf5\xd5\x8e\x0a\xed\x39\xb2\x71\xd0\x1a\xeb\xad\xf7\x79\x4c\x56\xe3\x34\x21\x97\x17\x83\x81\x0e\x03\xa7\x1d\x15\xdc\x63\xa6\x1b\xbf\xe0\x1a\xb5\x2c\xd4\x85\x86\x55\xc7\x70\xb7\xbe\xde\xdb\x6c\x2f\xd4\x43\xf5\x27\xbe\xcd\xd5\x57\xb2\xbe\xfe\x9d\xf8\xcf\x59\xc6\x7d\x64\xed\xab\x9f\xe9\x5b\x90\x6d\xd0\x4e\xdf\xbe\x3d\x7c\x74\x93\x6e\x76\x9c\xdd\xd9\x7d\x07\x00\x00\xff\xff\x7d\x13\x3d\x16\x3a\x01\x00\x00" func dkgAdminPublish_participantCdcBytes() ([]byte, error) { return bindataRead( @@ -760,11 +820,11 @@ func dkgAdminPublish_participantCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/publish_participant.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xec, 0x55, 0xff, 0x37, 0xec, 0x8, 0x49, 0xe7, 0xe0, 0xd, 0xea, 0xad, 0x75, 0x78, 0xe, 0x7e, 0x3e, 0xc5, 0xc4, 0x78, 0x6f, 0xda, 0x66, 0x26, 0x76, 0x96, 0xa0, 0x81, 0xc, 0xc3, 0xe3, 0x1c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x80, 0x1f, 0x80, 0x25, 0x1a, 0x97, 0xdc, 0x4d, 0x5, 0x1a, 0xfe, 0x33, 0x88, 0x86, 0x54, 0x16, 0xe2, 0xc9, 0x2b, 0x7e, 0xaa, 0x72, 0xdf, 0x55, 0x8f, 0x4a, 0x51, 0xd6, 0xe7, 0x59, 0x4e, 0xe}} return a, nil } -var _dkgAdminSet_safe_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xc1\x6a\xb4\x40\x10\x84\xef\x3e\x45\xb3\x87\x1f\xbd\xc8\x7f\x08\x39\x48\x12\x91\x98\xdd\xc3\x5e\x96\x98\x3c\xc0\x64\x2c\x75\x88\xce\x48\x4f\x8b\x42\xd8\x77\x0f\x66\x12\xc3\x42\xb6\x2f\xc3\x14\xc5\x57\x45\x99\x61\x74\x2c\xb4\xef\xdd\x5c\x1e\x0f\xd4\xb0\x1b\xe8\xff\x52\x1e\x0f\x45\x59\x3e\x3f\x55\x55\x14\x09\x2b\xeb\x95\x16\xe3\x6c\x6c\x31\xbf\x74\x0c\xdf\xb9\xbe\x3e\x81\x35\xac\xa8\x16\x19\xbd\xee\xcd\x72\x7b\x93\x27\xf4\x11\x45\x44\x44\x3d\x84\xea\xf7\xb6\xa8\x07\x63\x33\xfa\xf7\x4d\x4f\xbf\xfe\xc1\x31\x32\x46\xc5\x88\xbd\x69\x2d\x38\xa3\x62\x92\xae\xd0\xda\x4d\x56\x36\xca\x7a\x1e\x7d\x93\xfe\xa0\xe8\x9e\x82\x3f\x7d\x73\xcc\x6e\xbe\xbb\x24\x3f\xc4\x6b\xfd\x8c\x2e\xc4\x4a\x1c\xab\x16\x27\x25\x5d\xb2\x51\xd7\xcb\x73\x1a\x95\x35\x3a\xde\x3d\xba\xa9\xaf\xc9\x3a\xa1\x80\xa5\x75\x89\x10\xc8\x68\xc0\xb0\x1a\xbb\x24\x74\x3a\x87\x07\x0b\xf4\x24\xb8\xda\x34\xf5\x90\x4a\x35\xa8\x26\xad\xe1\xfd\x36\xda\xd5\x05\xff\xd6\x7f\x43\xcf\x9f\x01\x00\x00\xff\xff\x08\xd4\x0e\xba\xa9\x01\x00\x00" +var _dkgAdminSet_safe_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x31\x6b\xc3\x30\x10\x85\x77\xff\x8a\xc3\x43\x70\x16\x4f\xa5\x83\x69\x1b\xd2\x96\x74\xe8\x12\x70\xdb\x5d\x95\x9f\x6d\x51\x59\x32\xa7\x13\x0e\x94\xfc\xf7\xe2\xc8\x09\x04\x9a\xdb\xee\xd0\xfb\x9e\xde\x33\xc3\xe8\x59\x68\x67\xfd\xf4\xfa\xfe\x46\x2d\xfb\x81\xf2\x65\xcb\xb3\x4c\x58\xb9\xa0\xb4\x18\xef\x0a\x87\xe9\xa3\x67\x84\xde\xdb\x66\x0f\xd6\x70\xa2\x3a\x54\xf4\xb9\x33\x87\xfb\xbb\xcd\x9a\x7e\xb3\x8c\x88\xc8\x42\xa8\xf9\xe9\xb6\xcd\x60\x5c\x45\xab\x05\x56\x9e\xf6\xf4\x62\x64\x8c\x8a\x51\x04\xd3\x39\x70\x45\x2a\x4a\x5f\x3c\x7b\x66\x3f\x7d\x29\x1b\xb1\xa6\xd5\x56\x6b\x1f\x9d\xcc\x50\x5a\x26\xc0\xb6\xe5\x19\x4c\x8f\x94\xd4\x65\x10\xcf\xaa\x43\xf9\x7d\xd2\x3f\x5c\xfb\x3d\x15\x73\xa2\x8a\xae\x8e\x75\x52\xec\x95\xf4\xeb\x0b\x7d\x9e\xcd\x86\x46\xe5\x8c\x2e\xf2\x17\x1f\x6d\x43\xce\x0b\x25\x2c\xcd\xe5\x24\x63\x46\x0b\x86\xd3\xc8\x93\xf8\x98\x32\xe1\x00\x1d\x05\xb7\xfe\x5b\x06\x48\xad\x5a\xd4\x51\x6b\x84\x70\x29\xf2\x66\xab\xff\xdf\xcf\x96\xc7\xec\x2f\x00\x00\xff\xff\x3c\x47\xb5\xfd\xb9\x01\x00\x00" func dkgAdminSet_safe_thresholdCdcBytes() ([]byte, error) { return bindataRead( @@ -780,11 +840,11 @@ func dkgAdminSet_safe_thresholdCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/set_safe_threshold.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2a, 0xee, 0x21, 0xa5, 0x42, 0x7, 0x30, 0x80, 0x1b, 0x7f, 0x7f, 0x43, 0xfd, 0x0, 0x77, 0xfc, 0x63, 0xc5, 0x5d, 0x9c, 0x14, 0xe5, 0xe8, 0x5b, 0x96, 0x59, 0xd7, 0x95, 0xcc, 0x7a, 0x44, 0x85}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0x67, 0xe6, 0xde, 0x86, 0xdf, 0xcb, 0xd9, 0x80, 0x6d, 0xf1, 0xfc, 0x5, 0xef, 0x4e, 0x31, 0xed, 0x61, 0xe0, 0x8e, 0xfa, 0xbd, 0x3f, 0xae, 0x92, 0x1e, 0x10, 0x99, 0xb1, 0x3d, 0x43, 0xa6}} return a, nil } -var _dkgAdminStart_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x8f\x1e\x24\xb9\x04\xcf\x41\x2d\xc1\xd5\x20\xb9\x88\x39\x8a\x87\x75\x33\x49\x17\x93\x9d\x30\x99\xd0\x82\xf4\xbf\x4b\xdc\xda\xd2\x83\xef\xb2\x3b\xc3\xe3\x9b\x37\xe3\xc7\x89\x45\xf1\x3c\xf0\xde\xd4\x15\x3a\xe1\x11\xb7\x07\x53\x57\xa5\x31\x6f\x4f\x4d\x93\x24\x2a\x36\xcc\xd6\xa9\xe7\x90\x06\x6e\xe9\xc5\xcc\x05\xde\x1b\x15\x1f\xfa\x8f\x0c\xdf\x49\x02\x00\x03\x29\xda\xaf\xbe\x6c\x47\x1f\x0a\xdc\x9c\x78\xf9\x6f\x1d\x1d\x93\xd0\x64\x85\xd2\xd9\xf7\x81\xa4\x40\xb9\xe8\xae\x74\x8e\x97\xa0\x67\xca\xaa\x99\x86\x2e\xff\x43\xe1\x1e\xd1\x9f\x7f\xb2\x08\xef\xef\xae\xc9\x0f\xe9\x1a\xb8\xc0\x55\xb3\x51\x16\xdb\xd3\xab\xd5\x5d\x76\xa6\xae\xda\x6e\x31\xd9\xe0\x5d\xba\x79\xe4\x65\x68\x11\x58\x11\xb1\x58\x77\x8f\x03\x85\x3a\x12\x0a\x8e\x36\x59\xcc\x74\x8c\x0f\x1d\xc8\x2d\x4a\xff\x26\xcd\x67\xb5\xa2\xa6\xae\x2e\x47\x3a\x7d\x2e\x9c\xe3\x4f\x00\x00\x00\xff\xff\x07\x1f\xfa\x84\x6e\x01\x00\x00" +var _dkgAdminStart_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xb1\x6a\xc3\x30\x10\x86\x77\x3f\xc5\x8f\x87\x60\x2f\x7e\x00\xd3\x36\xa4\x35\x0d\x25\x4b\x21\xd0\xa5\x74\x50\xe5\xb3\x23\x6a\xeb\xcc\xe9\x44\x0a\x25\xef\x5e\x1c\x39\x2d\x19\x72\x93\x4e\xe8\xfb\x4e\xf7\xbb\x71\x62\x51\x3c\x0f\x7c\x6c\x76\x5b\x74\xc2\x23\xf2\xa5\xcb\xb3\x4c\xc5\xf8\x60\xac\x3a\xf6\x85\xe7\x96\x5e\x9a\x50\xe3\x7d\xaf\xe2\x7c\xff\x51\xe2\x27\xcb\x00\x60\x20\x45\xfb\xd5\x6f\xda\xd1\xf9\x1a\xab\x05\xaf\xce\x7d\x7a\x31\x09\x4d\x46\xa8\x08\xae\xf7\x24\x35\x4c\xd4\x43\xf1\xc8\x22\x7c\x7c\x33\x43\xa4\x12\xab\x8d\xb5\x1c\xbd\xce\x52\x2c\x15\x68\xe8\xaa\x8b\x18\xf7\x48\x74\x15\x94\xc5\xf4\x54\x7d\x9e\xf9\xbb\xeb\x79\x0f\xc5\xbc\x43\x8d\xab\xcb\x7d\x22\x5e\x8d\x1e\xca\x3f\xfb\x5c\xeb\x35\x26\xe3\x9d\x2d\xf2\x27\x8e\x43\x0b\xcf\x8a\xa4\xc5\x1c\x47\x1a\x2c\xd4\x91\x90\xb7\x94\x27\xf8\x94\x76\xa2\x6f\xb2\x51\xe9\xd6\x7f\xab\xa0\x46\xb4\xd9\x6d\xff\x83\x5b\x0e\x17\xcb\x29\xfb\x0d\x00\x00\xff\xff\x5b\x70\x21\x9a\x7e\x01\x00\x00" func dkgAdminStart_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -800,11 +860,11 @@ func dkgAdminStart_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/start_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0x9c, 0x4f, 0xf1, 0xca, 0x18, 0x35, 0xe8, 0xbf, 0xb3, 0x93, 0x79, 0x1b, 0x85, 0xe7, 0xc5, 0x4b, 0x22, 0x3, 0xa, 0x8a, 0x91, 0x42, 0xf4, 0x2e, 0x24, 0x32, 0x55, 0xba, 0xc8, 0x15, 0x5c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0xad, 0x9e, 0x9d, 0xaa, 0x32, 0xd9, 0x6a, 0x40, 0x16, 0x36, 0x35, 0x82, 0x11, 0xeb, 0x74, 0x9f, 0xfc, 0x95, 0xaa, 0xa7, 0x64, 0x9c, 0xf0, 0xc5, 0x3c, 0x4a, 0xd9, 0xb, 0x1e, 0x18, 0xb7}} return a, nil } -var _dkgAdminStop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x41\x4f\x83\x40\x10\x85\xef\xfc\x8a\x97\x1e\x0c\x5c\x88\x67\xa2\x36\x44\x94\x03\x17\x23\xbf\x60\x5d\x06\xba\x11\x66\xc8\x30\xa4\x4d\x4c\xff\xbb\xc1\xb5\x9a\x1e\xfa\x2e\x9b\x9d\xbc\xf7\xcd\x9b\x30\xcd\xa2\x86\xd7\x51\x8e\x55\x53\xa3\x57\x99\x70\x7f\xaa\x9a\xba\xac\xaa\xf7\x97\xb6\x4d\x12\x53\xc7\x8b\xf3\x16\x84\xf1\x95\x24\x00\x30\x92\xa1\xfb\x1c\xca\x6e\x0a\x5c\xe0\xee\x37\x9c\xff\xfc\xa3\x63\x56\x9a\x9d\x52\xba\x84\x81\x49\x0b\x94\xab\x1d\x4a\xef\x65\x65\xcb\x2e\x94\x4d\x0b\x8d\x7d\x7e\x41\xe1\x11\xd1\x9f\x7f\x88\xaa\x1c\x1f\xae\xc9\x4f\xe9\xd6\xae\xc0\xd5\xb0\x35\x51\x37\xd0\x9b\xb3\x43\xf6\x47\xdd\xb4\xdf\x63\x76\x1c\x7c\xba\x7b\x96\x75\xec\xc0\x62\x88\x58\x6c\x87\xc6\x85\x4a\x3d\x29\xb1\xa7\x5d\x16\x3b\x9d\xe3\x43\x27\xf2\xab\xd1\xcd\xa6\x39\x71\x57\x35\x75\xfa\x9f\x3a\x7f\x07\x00\x00\xff\xff\x74\x8c\xee\x80\x49\x01\x00\x00" +var _dkgAdminStop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xcd\x6a\xeb\x30\x10\x85\xf7\x7e\x8a\x83\x17\x41\xde\xe8\x01\xcc\xbd\x0d\x69\x43\xb3\xc8\xa6\x50\xe8\x5e\x95\xc7\x8e\xa8\xac\x31\xe3\x11\x29\x84\xbc\x7b\xb1\x95\x14\xb2\xe8\xec\x66\x98\xef\xfc\x84\x71\x62\x51\xbc\x46\x3e\xef\x8f\x07\xf4\xc2\x23\xea\xdb\x56\x57\x95\x8a\x4b\xb3\xf3\x1a\x38\xe1\x52\x55\x00\x10\x49\xd1\x7d\x0d\xbb\x6e\x0c\xa9\xc5\xe6\xf6\x6b\xd7\xbd\x7c\x4c\x42\x93\x13\x32\x73\x18\x12\x49\x0b\x97\xf5\x64\x9e\x59\x84\xcf\x1f\x2e\x66\x6a\xb0\xd9\x79\xcf\x39\x69\x83\xcb\x4a\x2c\x33\x53\xec\xed\x5d\x18\xff\x51\x68\x3b\x2b\x8b\x1b\xc8\x7e\xae\xfc\xbf\x47\xbf\x27\xb3\x04\x6e\xf1\x70\x7c\x2f\xc4\x9b\xd3\x53\xf3\xab\xbe\xcc\x76\x8b\xc9\xa5\xe0\x4d\xfd\xc2\x39\x76\x48\xac\x28\xb2\x58\xba\x17\x63\xa1\x9e\x84\x92\xa7\xba\xc0\xd7\xd2\x89\xbe\xc9\x67\xa5\xbf\xf2\x5a\x4a\xdd\xfe\x78\x30\x77\xe6\x5a\xfd\x04\x00\x00\xff\xff\x87\x3a\x5a\x8e\x59\x01\x00\x00" func dkgAdminStop_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -820,11 +880,11 @@ func dkgAdminStop_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/stop_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0xe4, 0x2, 0xa5, 0xa0, 0x9b, 0xd5, 0xc3, 0xdb, 0x5d, 0x5a, 0xfa, 0xe6, 0x41, 0x85, 0x32, 0x8e, 0xae, 0x4e, 0xd8, 0x6f, 0x1a, 0x37, 0x77, 0x7, 0xb2, 0xce, 0x6, 0x29, 0x48, 0x43, 0x84}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xda, 0x6d, 0xdc, 0x10, 0x3a, 0xa6, 0xb1, 0xad, 0x8f, 0x3, 0x9, 0x74, 0xf9, 0xc6, 0x3e, 0x5a, 0x8e, 0x69, 0xcf, 0x6e, 0x2a, 0xe, 0xed, 0x75, 0x9c, 0xf3, 0x4d, 0x37, 0x62, 0x8f, 0x9e, 0x5f}} return a, nil } -var _dkgCreate_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x50\x4d\x6e\xf2\x30\x10\xdd\xfb\x14\x23\x16\x9f\x1c\x09\xc2\xb7\x8e\x68\x51\x44\x5a\x54\xb1\x41\xcd\x09\x06\x7b\x30\x16\xc1\xb6\x26\x93\xd2\xaa\xe2\xee\x15\x75\xa8\x60\x36\xb6\xfc\xe6\xfd\xf8\xf9\x53\x8a\x2c\xf0\xda\xc5\x73\xb3\x59\xc3\x9e\xe3\x09\xfe\x7f\x36\x9b\x75\xdd\x34\xef\x2f\x6d\xab\x94\x30\x86\x1e\x8d\xf8\x18\x34\x5a\xcb\xd4\xf7\x15\xd4\xf9\x32\x85\x10\x2d\xbd\x35\x15\xb4\xc2\x3e\xb8\x02\xbe\x95\x02\x00\x48\x4c\x09\x99\x74\xef\x5d\x20\xae\xa0\x1e\xe4\x50\x1b\x13\x87\x20\xd7\x1d\x18\xa7\x23\x01\xb4\x27\x1f\xe0\x09\x1c\xc9\xb8\x71\xb3\x29\x4a\x47\xb2\xc2\x84\x3b\xdf\x79\xf9\x5a\xfc\x1b\x53\x96\xf5\x95\xf2\xac\xe7\x69\xd8\x75\xde\xcc\xed\xd1\xfd\xbe\x14\x7f\xba\xd7\x29\x77\x91\x39\x9e\x75\x01\xcb\x25\x24\x0c\xde\xe8\xc9\x2a\x0e\x9d\x85\x10\x05\x32\x38\x9a\x33\xed\x89\x29\x18\x9a\x14\xea\x21\x9b\x3d\xba\x2d\xb2\x78\xe3\x13\x06\x81\xc5\x2c\x13\x4a\xc3\x84\x42\x77\x90\xbe\xf5\x90\xcf\x3b\x99\xdc\x40\xd9\xe3\x07\xe9\xc5\xec\x51\x70\x0a\x12\xab\x5b\xf7\xe5\x1d\xd0\x4a\x64\x74\xb4\x45\x39\xe4\x4f\x5d\x94\xba\xfc\x04\x00\x00\xff\xff\xb5\xd4\x8a\x93\xab\x01\x00\x00" +var _dkgCreate_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\x4f\x8b\x32\x31\x0c\xc6\xef\xfd\x14\x61\x0e\xd2\x01\xad\xf7\xc1\xf7\x15\x59\xd9\x65\xd9\x8b\x20\xec\x3d\xb6\x71\x2c\xd6\xb6\xa4\x19\x3d\x2c\x7e\xf7\x45\x3b\x2e\x9a\x4b\xff\xa4\xcf\x2f\xe9\x13\x7f\xca\x89\x05\xde\x43\xba\xac\xbf\x3e\x60\xcf\xe9\x04\xcd\x78\x6a\x94\x12\xc6\x58\xd0\x8a\x4f\x51\xa3\x73\x4c\xa5\x74\xb0\xaa\x9b\x29\xc4\xe4\xe8\x73\xdd\xc1\x56\xd8\xc7\xbe\x85\x1f\xa5\x00\x00\x32\x53\x46\x26\x5d\x7c\x1f\x89\x3b\xc0\x41\x0e\x7a\x8b\x67\xfa\xc6\x30\x50\x0b\x93\x95\xb5\x69\x88\x72\x13\xc0\x18\x81\x04\xd0\x9d\x7c\x84\x7f\xd0\x93\x8c\x2f\x1e\x35\x5b\x63\x31\xe3\xce\x07\x2f\x9e\x8a\xd9\x25\xe6\x74\x59\x4c\xc6\x3e\xcd\xea\x26\xfc\xaf\xe7\x79\xd8\x05\x6f\xe7\xee\xd8\xdf\x6f\xda\x3f\xfa\x3d\x96\x4b\xc8\x18\xbd\xd5\xcd\x5b\x1a\x82\x83\x98\x04\x2a\x69\xac\xcc\xb4\x27\xa6\x68\xa9\x69\xd5\x4b\x63\xee\xd8\x6f\x90\xc5\x5b\x9f\x31\x0a\x2c\x66\x55\x60\x2c\x13\x0a\x3d\xa5\xf4\xc3\x91\xba\x3e\x61\xaa\x17\xa6\x48\x62\xec\xc9\x14\x3c\x93\x5e\xcc\x5e\xc1\x53\x90\xd4\x3d\x46\x61\x9e\x12\xdb\xaa\xda\xa0\x1c\xea\x9f\xae\x4a\x5d\x7f\x03\x00\x00\xff\xff\x98\xcb\x3b\x89\xba\x01\x00\x00" func dkgCreate_participantCdcBytes() ([]byte, error) { return bindataRead( @@ -840,11 +900,11 @@ func dkgCreate_participantCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/create_participant.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9a, 0xdf, 0xc8, 0x88, 0x15, 0x2e, 0xc9, 0xee, 0xa3, 0xd2, 0xcc, 0x4b, 0xb5, 0xf2, 0x5, 0x2d, 0x92, 0x4f, 0x6e, 0xbd, 0x4b, 0x7c, 0x84, 0x40, 0x4a, 0x9b, 0x5e, 0x9f, 0x15, 0x5, 0x74, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc8, 0xd2, 0xd0, 0x2c, 0xe0, 0x71, 0x8f, 0x21, 0x72, 0xbf, 0x1e, 0x92, 0xa8, 0x50, 0xdd, 0x8b, 0x75, 0xf3, 0x9, 0xba, 0x2d, 0x99, 0x6, 0xd7, 0x5c, 0x10, 0x6f, 0x42, 0xe8, 0xd7, 0x40, 0x67}} return a, nil } -var _dkgScriptsGet_consensus_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x88\x0e\x2e\x29\xca\xcc\x4b\x8f\x55\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x19\xa0\x97\x9e\x5a\xe2\x9c\x9f\x57\x9c\x9a\x57\x5c\x5a\xec\x97\x9f\x92\xea\xe9\x52\xac\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x91\x06\x0b\x94\x67\x00\x00\x00" +var _dkgScriptsGet_consensus_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\xa2\x83\x4b\x8a\x32\xf3\xd2\x63\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xa6\xe8\xa5\xa7\x96\x38\xe7\xe7\x15\xa7\xe6\x15\x97\x16\xfb\xe5\xa7\xa4\x7a\xba\x14\x6b\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x03\x4f\x6a\x43\x6c\x00\x00\x00" func dkgScriptsGet_consensus_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -860,11 +920,11 @@ func dkgScriptsGet_consensus_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_consensus_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x62, 0xae, 0xcb, 0x31, 0x2e, 0x3e, 0x43, 0xd9, 0xec, 0xfd, 0x3f, 0x4, 0x29, 0x3c, 0xfe, 0x36, 0x20, 0xe6, 0x83, 0x77, 0x9b, 0x70, 0x2e, 0xd, 0xb3, 0x56, 0xa7, 0xfc, 0x4a, 0x1e, 0x20, 0xa0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe7, 0x3d, 0x2d, 0xb4, 0x11, 0x55, 0x1c, 0x12, 0x8c, 0xef, 0x55, 0x49, 0x4, 0x87, 0x30, 0xe, 0x30, 0x30, 0x9, 0xbc, 0x2b, 0x37, 0x38, 0xda, 0x84, 0x9d, 0x4e, 0xf2, 0xc0, 0x6b, 0x83, 0xaa}} return a, nil } -var _dkgScriptsGet_dkg_canonical_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x88\x0e\x2e\x29\xca\xcc\x4b\xb7\x8f\xb5\x57\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x19\xa1\x97\x92\x9d\xee\x9c\x9f\x5b\x90\x93\x5a\x92\x9a\xa2\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x17\xf1\xc7\xb8\x62\x00\x00\x00" +var _dkgScriptsGet_dkg_canonical_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\xa2\x83\x4b\x8a\x32\xf3\xd2\xed\x63\xed\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xe6\xe8\xa5\x64\xa7\x3b\xe7\xe7\x16\xe4\xa4\x96\xa4\xa6\x68\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x4a\x98\xa7\xb9\x67\x00\x00\x00" func dkgScriptsGet_dkg_canonical_final_submissionCdcBytes() ([]byte, error) { return bindataRead( @@ -880,11 +940,11 @@ func dkgScriptsGet_dkg_canonical_final_submissionCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_dkg_canonical_final_submission.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc9, 0x35, 0x32, 0x9f, 0x12, 0x28, 0xdf, 0x16, 0x2d, 0x78, 0x9a, 0x80, 0x36, 0xb5, 0x94, 0x18, 0x7f, 0xf, 0x47, 0x10, 0x4, 0x13, 0xdb, 0xe8, 0x78, 0xfd, 0x78, 0x31, 0xa0, 0xb8, 0xf7, 0xf3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x57, 0xf2, 0x83, 0x6, 0xda, 0x92, 0xb2, 0x41, 0x12, 0x21, 0xe4, 0x90, 0x6e, 0x29, 0x13, 0xef, 0x81, 0x0, 0xf0, 0xe9, 0xfd, 0xb9, 0x93, 0x8f, 0x9d, 0xd0, 0x11, 0x19, 0xe6, 0x76, 0x9c}} return a, nil } -var _dkgScriptsGet_dkg_completedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x70\xca\xcf\xcf\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x69\xd6\x4b\xc9\x4e\x77\xce\xcf\x2d\xc8\x49\x2d\x49\x4d\xd1\xd0\x54\x50\xb4\x55\xc8\xcb\xcc\xe1\xaa\x05\x04\x00\x00\xff\xff\x31\xd8\x74\x9a\x63\x00\x00\x00" +var _dkgScriptsGet_dkg_completedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x9c\xf2\xf3\x73\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\x26\xe8\xa5\x64\xa7\x3b\xe7\xe7\x16\xe4\xa4\x96\xa4\xa6\x68\x68\x2a\x28\xda\x2a\xe4\x65\xe6\x70\xd5\x02\x02\x00\x00\xff\xff\x11\x95\xaf\x8f\x68\x00\x00\x00" func dkgScriptsGet_dkg_completedCdcBytes() ([]byte, error) { return bindataRead( @@ -900,11 +960,11 @@ func dkgScriptsGet_dkg_completedCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_dkg_completed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0xec, 0xda, 0x75, 0xa0, 0x1a, 0x21, 0x4d, 0xc6, 0xbf, 0xec, 0xd5, 0x92, 0xde, 0x61, 0xab, 0x5b, 0x90, 0xd1, 0x2f, 0x7c, 0x24, 0x2a, 0xd9, 0x62, 0x7f, 0xda, 0xe9, 0x2c, 0x58, 0x0, 0x2a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x3d, 0xd5, 0x9b, 0xea, 0x53, 0x7d, 0x55, 0xf4, 0xf3, 0x4b, 0x20, 0x1b, 0x34, 0x62, 0x55, 0xf8, 0x5, 0x8c, 0x9a, 0x74, 0x89, 0xae, 0x91, 0x6, 0x82, 0xe4, 0x48, 0xf6, 0x4e, 0x8d, 0xee}} return a, nil } -var _dkgScriptsGet_dkg_enabledCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x70\xca\xcf\xcf\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x69\xd6\x4b\xc9\x4e\x77\xcd\x4b\x4c\xca\x49\x4d\xe1\xaa\x05\x04\x00\x00\xff\xff\xd5\x88\xda\xa0\x58\x00\x00\x00" +var _dkgScriptsGet_dkg_enabledCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x9c\xf2\xf3\x73\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\x26\xe8\xa5\x64\xa7\xbb\xe6\x25\x26\xe5\xa4\xa6\x70\xd5\x02\x02\x00\x00\xff\xff\x55\x28\x2f\xf2\x5d\x00\x00\x00" func dkgScriptsGet_dkg_enabledCdcBytes() ([]byte, error) { return bindataRead( @@ -920,11 +980,11 @@ func dkgScriptsGet_dkg_enabledCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_dkg_enabled.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6a, 0x64, 0x67, 0xbd, 0xba, 0x33, 0xa0, 0x7b, 0x26, 0xfb, 0x77, 0xc2, 0x7e, 0xe3, 0xe3, 0xc1, 0xe7, 0xc8, 0x8c, 0xd0, 0xc, 0x46, 0xaa, 0xbd, 0xb6, 0x2, 0x13, 0x35, 0xab, 0x39, 0x70, 0xd7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x68, 0xfc, 0x94, 0x94, 0xc2, 0x47, 0xe4, 0x85, 0xd6, 0xa7, 0x3e, 0x3d, 0xda, 0x58, 0x72, 0xa9, 0x4e, 0xf0, 0xd3, 0x49, 0xc0, 0x9e, 0x16, 0x91, 0x58, 0x35, 0xa, 0xb6, 0x16, 0x38, 0x76, 0x3c}} return a, nil } -var _dkgScriptsGet_final_submissionsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x88\x8e\x0e\x2e\x29\xca\xcc\x4b\xb7\x8f\x8d\x55\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x99\xa1\x97\x9e\x5a\xe2\x96\x99\x97\x98\x13\x5c\x9a\x94\x9b\x59\x5c\x9c\x99\x9f\x57\xac\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x14\xc3\x7a\x4d\x6a\x00\x00\x00" +var _dkgScriptsGet_final_submissionsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\xa2\xa3\x83\x4b\x8a\x32\xf3\xd2\xed\x63\x63\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\x06\xe9\xa5\xa7\x96\xb8\x65\xe6\x25\xe6\x04\x97\x26\xe5\x66\x16\x17\x67\xe6\xe7\x15\x6b\x68\x72\xd5\x02\x02\x00\x00\xff\xff\xdf\x0a\xe3\xa8\x6f\x00\x00\x00" func dkgScriptsGet_final_submissionsCdcBytes() ([]byte, error) { return bindataRead( @@ -940,11 +1000,11 @@ func dkgScriptsGet_final_submissionsCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_final_submissions.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbe, 0x89, 0x9, 0x33, 0x3b, 0xc1, 0x3b, 0x39, 0x4f, 0xb2, 0x40, 0x27, 0xdb, 0x2c, 0x5c, 0xc7, 0xc3, 0x33, 0x89, 0x27, 0x45, 0x95, 0x12, 0xea, 0x92, 0xa7, 0x71, 0x9b, 0xed, 0x4f, 0xb3, 0x22}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xee, 0xfe, 0xb9, 0x5, 0x6d, 0x2e, 0x29, 0xa0, 0x6e, 0x49, 0x94, 0x63, 0x61, 0xb4, 0xe8, 0x3, 0x6a, 0x1a, 0xa2, 0xc1, 0xd8, 0x3b, 0x19, 0x42, 0x60, 0x55, 0xeb, 0x52, 0x69, 0x6f, 0x7, 0x63}} return a, nil } -var _dkgScriptsGet_latest_whiteboard_messagesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x4f\x4b\xc3\x40\x10\xc5\xef\xf9\x14\xef\x98\x20\x04\xbd\x16\x73\x50\xa2\xa5\x14\x2f\xf6\xe0\x21\xe4\xb0\x92\x69\x32\xb0\xff\xd8\x9d\xd8\x82\xf4\xbb\x4b\xd7\x64\x41\xe9\x65\x0e\x6f\xde\x9f\x1f\x1b\xef\x82\xe0\x55\xbb\x53\xbb\xdf\xe2\x18\x9c\xc1\xfd\xb9\xdd\x6f\x9f\xda\xf6\xfd\xe5\x70\x28\x0a\x3f\x7f\xe2\x38\x5b\x18\xc5\xb6\xbc\xfe\x77\x76\xa0\xf3\x06\x3b\x2b\xd5\x06\xdd\x92\xac\xdf\x28\x46\x35\x52\x8f\xef\x02\x00\x34\x09\xcc\xaf\x14\xd1\xac\xfd\xf5\x48\xf2\x31\xb1\xd0\xb3\x53\x61\x58\x22\xb1\xac\x52\xe4\x4b\x05\x68\x25\x14\x65\x7d\xdc\xaa\x6f\xd0\xf5\xd9\xce\x68\x90\x91\x92\x7a\x9a\x58\x13\x18\x8f\x79\xbd\xd6\x64\x47\x99\x16\xae\xc4\xf6\x67\xa4\x56\xde\x93\x1d\xca\xd5\xdf\x71\x5f\x65\xeb\x75\x80\x71\x87\x87\xa4\x5c\xd2\x0d\x24\x73\xb0\xff\x5a\x8a\xcb\x4f\x00\x00\x00\xff\xff\x17\x59\xd4\x87\x4a\x01\x00\x00" +var _dkgScriptsGet_latest_whiteboard_messagesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x4f\x4b\xc3\x40\x14\xc4\xef\xf9\x14\x43\x4f\x09\xc2\x82\xd7\x62\x2e\x22\x4a\x11\xcf\x1e\x42\x0e\x8f\xe6\x35\x79\xb0\x7f\xc2\xee\xab\x15\xa4\xdf\x5d\xba\x6e\x16\x14\x2f\x0b\x3b\x6f\x66\x7e\x23\x6e\x0d\x51\xf1\x6c\xc3\xe5\xe9\xf5\x05\xa7\x18\x1c\x76\xe5\xb7\x6b\x1a\x3a\x1e\x39\xa5\x96\xac\xed\x70\x3a\x7b\x38\x12\xdf\xde\x4c\x07\x3f\xf1\xe7\x1e\x07\xaf\xdd\x1e\x43\x09\x98\x37\x4e\x89\x66\x1e\xf1\xd5\x00\x80\x65\x85\xfb\x91\x12\xfa\x0d\x62\x66\xd6\xf7\x45\x94\x1f\x03\xc5\xa9\x44\x52\xdb\xe5\xc8\x07\x45\x58\x52\x4e\xba\x1d\xfe\xab\xef\x31\x8c\xd5\x2e\xe8\x51\x27\x65\xf5\xb2\x88\x65\x08\x1e\x2a\xdd\x58\xf6\xb3\x2e\x65\x57\xde\xf6\x0b\x62\x68\x5d\xd9\x4f\xed\xe6\x1f\x64\xec\xaa\xf5\x06\x10\xdc\xe1\x3e\x2b\xd7\xfc\x46\xd6\x73\xf4\x7f\x5a\x9a\xeb\x77\x00\x00\x00\xff\xff\xc3\xba\x75\xf6\x4f\x01\x00\x00" func dkgScriptsGet_latest_whiteboard_messagesCdcBytes() ([]byte, error) { return bindataRead( @@ -960,11 +1020,11 @@ func dkgScriptsGet_latest_whiteboard_messagesCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_latest_whiteboard_messages.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcd, 0xfd, 0xac, 0xf8, 0x77, 0x23, 0x77, 0x3c, 0xe7, 0xfc, 0x17, 0x46, 0xbb, 0x23, 0xc2, 0x7c, 0x50, 0x71, 0x82, 0xc6, 0x9a, 0xf6, 0x8f, 0xd4, 0x1b, 0xa4, 0xb0, 0x72, 0xd4, 0x4, 0x5b, 0x91}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x55, 0x96, 0xf2, 0x4, 0x13, 0x63, 0xa6, 0xbb, 0x97, 0x4b, 0xe2, 0x69, 0xfe, 0x46, 0xd0, 0xe0, 0xbd, 0x99, 0xf0, 0x9c, 0x62, 0xfc, 0x72, 0x85, 0x97, 0x67, 0xff, 0x8b, 0xf9, 0xc1, 0xfa}} return a, nil } -var _dkgScriptsGet_node_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xc8\xcb\x4f\x49\xf5\x74\xb1\x52\x08\x2e\x29\xca\xcc\x4b\xd7\xb4\x52\x88\x86\xb0\xec\x63\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xe6\xe9\xa5\xa7\x96\xf8\xe5\xa7\xa4\xba\x65\xe6\x25\xe6\x04\x97\x26\xe5\x66\x16\x17\x67\xe6\xc3\x8c\xd1\x54\xe4\xaa\x05\x04\x00\x00\xff\xff\xff\x70\xba\x8e\x80\x00\x00\x00" +var _dkgScriptsGet_node_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\xf2\xf2\x53\x52\x3d\x5d\xac\x14\x82\x4b\x8a\x32\xf3\xd2\x35\xad\x14\xa2\x21\x2c\xfb\x58\x85\x6a\x2e\x05\x05\x05\x85\xa2\xd4\x92\xd2\xa2\x3c\x98\xa1\x7a\xe9\xa9\x25\x7e\xf9\x29\xa9\x6e\x99\x79\x89\x39\xc1\xa5\x49\xb9\x99\xc5\xc5\x99\xf9\x30\x63\x34\x15\xb9\x6a\x01\x01\x00\x00\xff\xff\x26\x0a\xc4\x4b\x85\x00\x00\x00" func dkgScriptsGet_node_final_submissionCdcBytes() ([]byte, error) { return bindataRead( @@ -980,11 +1040,11 @@ func dkgScriptsGet_node_final_submissionCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_node_final_submission.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0xb1, 0x7c, 0xd0, 0x2e, 0x49, 0x35, 0xa7, 0xed, 0x4b, 0xdc, 0x7e, 0xcb, 0x6f, 0x6a, 0x43, 0xdc, 0x68, 0xba, 0x2c, 0xb8, 0xca, 0x43, 0xaf, 0xd9, 0x1a, 0xb9, 0x29, 0x1f, 0x89, 0x15, 0xd0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0x5c, 0x55, 0x20, 0xed, 0x65, 0x8c, 0x26, 0x11, 0xb8, 0x8f, 0xf3, 0x5d, 0x8f, 0x70, 0x73, 0x12, 0x8e, 0xb2, 0xf3, 0xf7, 0x40, 0x45, 0x6e, 0xf1, 0x7d, 0xb5, 0x91, 0x60, 0xae, 0x86, 0x8a}} return a, nil } -var _dkgScriptsGet_node_has_submittedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xc8\xcb\x4f\x49\xf5\x74\xb1\x52\x08\x2e\x29\xca\xcc\x4b\xd7\xb4\x52\x70\xca\xcf\xcf\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x19\xa5\x07\x52\xea\x91\x58\x1c\x5c\x9a\x94\x9b\x59\x52\x92\x9a\x02\xd5\xab\xc9\x55\x0b\x08\x00\x00\xff\xff\xaa\x5c\x49\x68\x74\x00\x00\x00" +var _dkgScriptsGet_node_has_submittedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\xf2\xf2\x53\x52\x3d\x5d\xac\x14\x82\x4b\x8a\x32\xf3\xd2\x35\xad\x14\x9c\xf2\xf3\x73\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xe6\xe9\x81\x94\x7a\x24\x16\x07\x97\x26\xe5\x66\x96\x94\xa4\xa6\x40\xf5\x6a\x72\xd5\x02\x02\x00\x00\xff\xff\x85\x3a\x25\x9d\x79\x00\x00\x00" func dkgScriptsGet_node_has_submittedCdcBytes() ([]byte, error) { return bindataRead( @@ -1000,11 +1060,11 @@ func dkgScriptsGet_node_has_submittedCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_node_has_submitted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdb, 0xc0, 0xa0, 0x6e, 0x6c, 0x52, 0x38, 0xeb, 0xc0, 0xf7, 0x84, 0x1f, 0x63, 0x61, 0x5f, 0x3, 0x16, 0xdd, 0x5e, 0x77, 0x5f, 0x9a, 0x30, 0x88, 0x8, 0x1a, 0xd2, 0x50, 0x23, 0xb4, 0xf, 0xbe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x53, 0xcd, 0x46, 0x4c, 0xce, 0x40, 0xef, 0x90, 0xf4, 0xd1, 0xe6, 0x7a, 0x2d, 0x67, 0xb9, 0x57, 0xc4, 0xcd, 0xf5, 0xd, 0x39, 0xb5, 0x3d, 0xda, 0x2f, 0xc0, 0x9, 0xda, 0x68, 0x71, 0x0, 0x95}} return a, nil } -var _dkgScriptsGet_node_is_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xcc\xbf\xea\xc2\x30\x14\xc5\xf1\x3d\x4f\x71\xba\xfd\xba\xfc\x70\x2e\x38\xa8\xd1\x52\xba\xd9\x27\x88\x36\x91\x0b\xc9\x4d\xb8\x4d\x50\x90\xbe\xbb\xf8\xa7\x93\x8b\x67\x3e\x9f\x2f\x85\x14\x25\xe3\xe0\xe3\x55\xf7\x2d\x9c\xc4\x80\xd5\x4d\xf7\xed\x46\xeb\xe3\x7e\x18\x94\x4a\xe5\x04\x57\x18\xc1\x10\xff\x71\x1c\x6d\xa7\x1b\x0c\x59\x88\x2f\x75\x83\x6d\x8c\x1e\x77\x05\x00\xe4\x96\xcc\x7f\x32\x92\xe9\x4c\xc9\x70\xee\xa6\x9d\x37\x14\xec\xf8\xb1\x35\xaa\x35\x98\x16\xf4\x9c\xd8\x5c\x84\x7f\xc2\xd5\x0b\xcd\xb0\x7e\xb2\xdf\x05\x67\xfc\x64\xdf\x0f\x35\x3f\x02\x00\x00\xff\xff\x2a\xaf\x9b\x4a\xda\x00\x00\x00" +var _dkgScriptsGet_node_is_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xcc\x31\xaa\xc2\x40\x10\xc6\xf1\x7e\x4f\xf1\x25\x55\xd2\xbc\x03\x04\x5e\xa3\x41\x09\x96\x9e\x60\x48\x66\x65\x60\x76\x36\xec\x6e\xb0\x90\xdc\x5d\xd4\xa4\xb2\x71\xba\x81\xef\xf7\x97\x30\xc7\x54\x70\xd2\x78\xef\x2f\x67\xf8\x14\x03\xea\xed\xab\x9d\xa3\x71\xe4\x9c\x1b\x52\x6d\xe1\x17\x43\x20\xb1\xc6\xe2\xc4\x43\xdf\xe1\x5a\x92\xd8\xad\xed\x70\x88\x51\xf1\x70\x00\x20\x7e\x6f\xfd\xcd\x94\x8a\x8c\x32\x93\x95\x21\x1f\x95\x24\xf0\xb4\xd9\x16\xd5\x3f\x4c\x76\xf4\xba\xc4\x65\x49\xf6\x13\xae\xde\x68\x05\x6b\xe6\xef\x82\x27\xcd\xfc\x59\xb8\xf5\x19\x00\x00\xff\xff\xad\xe0\xc3\x42\xdf\x00\x00\x00" func dkgScriptsGet_node_is_claimedCdcBytes() ([]byte, error) { return bindataRead( @@ -1020,11 +1080,11 @@ func dkgScriptsGet_node_is_claimedCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_node_is_claimed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa3, 0x1a, 0xe4, 0xdb, 0x6, 0xd1, 0x35, 0x6c, 0x35, 0x4b, 0xe3, 0xc7, 0x91, 0xfe, 0x2a, 0xa8, 0x37, 0x87, 0x70, 0xf3, 0x65, 0xe8, 0x6b, 0x9f, 0x81, 0x60, 0xed, 0xc4, 0x79, 0x2e, 0x36, 0x43}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0x3d, 0x29, 0x69, 0x3d, 0x84, 0x68, 0x8e, 0xa8, 0x92, 0xb8, 0x48, 0x92, 0xfe, 0x2a, 0x93, 0xa2, 0x96, 0x40, 0x52, 0xb, 0x8d, 0x15, 0x2d, 0x84, 0x22, 0x1c, 0x17, 0x15, 0x31, 0xba, 0xd1}} return a, nil } -var _dkgScriptsGet_node_is_registeredCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xb1\x0e\x82\x30\x10\x06\xe0\xbd\x4f\xf1\x8f\xb2\x18\x67\x36\x4d\x95\x10\x36\x78\x82\x2a\x07\xb9\x84\xde\x35\xc7\x35\x9a\x18\xdf\xdd\x45\x5f\xe0\xe3\x5c\xd4\x1c\xb7\x4d\x9f\x71\xe8\xb0\x98\x66\x9c\x5e\x71\xe8\xce\x31\x8e\xd7\x69\x0a\xa1\xd4\x3b\x96\x2a\xc8\x89\xe5\x20\x3a\x53\x1f\x5b\x4c\x6e\x2c\x6b\xd3\xe2\xa2\xba\xe1\x1d\x00\xc0\xc8\xab\xc9\x9f\x3a\x96\x64\xce\x0f\x2e\x49\xbc\xdf\x47\x5a\x79\x77\x32\x9a\x7f\x44\x13\x3e\xdf\x00\x00\x00\xff\xff\x0e\xf5\x2c\x2b\x7b\x00\x00\x00" +var _dkgScriptsGet_node_is_registeredCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\x31\x0e\xc2\x30\x0c\x05\xd0\x3d\xa7\xf8\xea\xd4\x2c\x1c\xa0\x23\xaa\x40\x15\x1b\x9c\x20\x4a\xdd\xca\x52\x62\x47\x8e\x2b\x06\xc4\xdd\x59\xca\xf8\x96\xc7\xb5\xa9\x39\x6e\x45\xdf\xf3\xe3\x8e\xcd\xb4\x62\x38\x35\x84\x90\x72\xa6\xde\xc7\x54\x4a\xc4\x76\x08\x6a\x62\x19\x45\x57\x5a\xe6\x09\x2f\x37\x96\x3d\x4e\xb8\xaa\x16\x7c\x02\x00\x18\xf9\x61\xf2\xff\x2e\x2d\x99\x73\xe6\x96\xc4\x97\xfe\xa4\x9d\xbb\x93\xd1\x7a\x16\x31\x7c\x7f\x01\x00\x00\xff\xff\xe5\x2c\x0e\x21\x80\x00\x00\x00" func dkgScriptsGet_node_is_registeredCdcBytes() ([]byte, error) { return bindataRead( @@ -1040,11 +1100,11 @@ func dkgScriptsGet_node_is_registeredCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_node_is_registered.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xad, 0xbc, 0xa5, 0x94, 0xca, 0x89, 0x42, 0xfc, 0xbd, 0x28, 0x1d, 0x72, 0xd4, 0x0, 0x1d, 0xf2, 0xeb, 0xd3, 0x6a, 0x1, 0x26, 0xf1, 0xb5, 0x35, 0x15, 0x12, 0x7a, 0xfa, 0xdf, 0x6, 0x62, 0x4a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0xa4, 0xcf, 0x88, 0xda, 0x35, 0xe9, 0xac, 0xe7, 0x73, 0x15, 0xf6, 0xf9, 0x64, 0xcd, 0x8e, 0x5c, 0x6f, 0xa0, 0x50, 0x9a, 0xbe, 0x2, 0x44, 0x72, 0x74, 0x82, 0xf9, 0x15, 0x37, 0x4b, 0x4d}} return a, nil } -var _dkgScriptsGet_submissions_countCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xc1\x0a\x82\x40\x10\x06\xe0\xfb\x3c\xc5\x7f\xd4\x4b\x74\x88\x0e\xde\xa2\x4d\x11\x6f\x2d\x3d\x80\x82\xc6\x80\x3b\x23\xeb\x0c\x05\xb2\xef\xde\xa9\x17\xf8\x38\x6d\x9a\x0d\xed\xaa\x9f\x30\x74\x58\xb2\x26\x9c\xbf\x61\xe8\x6e\x21\x3c\x1f\x31\x12\x6d\x3e\x61\x71\x41\x1a\x59\xaa\xba\x01\x8e\x5e\xac\xc1\xab\x17\xbb\x5e\x0a\x0e\x02\x80\x3c\x9b\x67\xf9\x33\xa7\xf7\x6c\x2d\xcb\xb8\x46\x9f\x12\xef\x3b\xab\xdc\xd5\xc5\xaa\x9a\x0a\xfd\x02\x00\x00\xff\xff\xe5\xd7\x26\xa5\x72\x00\x00\x00" +var _dkgScriptsGet_submissions_countCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xb1\x0a\x82\x70\x10\x06\xf0\xfd\x9e\xe2\xc3\x49\x97\xa6\x68\x70\x2d\x0c\x69\x8c\x1e\x40\x41\xe3\xc0\xff\x77\x72\xde\xd1\x20\xbe\x7b\x4b\x8d\xbf\xe5\xa7\x65\x35\x0f\x74\x8b\x7d\x6e\x8f\x3b\x66\xb7\x82\xea\xa7\x4a\x64\xcd\x11\x73\x12\x65\x50\xd6\x4d\x0b\xec\x3d\xa3\xc5\xab\x67\x5c\xce\x07\x76\x01\x00\x9f\x22\x9d\xff\xe3\xf4\x9e\xa2\x53\x0e\xcb\x33\xc7\xa2\xdb\xa6\xc6\xab\x25\xa3\x6e\xe4\x90\x6f\x00\x00\x00\xff\xff\x09\xb5\xb1\xae\x6f\x00\x00\x00" func dkgScriptsGet_submissions_countCdcBytes() ([]byte, error) { return bindataRead( @@ -1060,11 +1120,11 @@ func dkgScriptsGet_submissions_countCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_submissions_count.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc2, 0x62, 0x13, 0x4c, 0x53, 0x43, 0x18, 0xf7, 0xc7, 0xa8, 0x39, 0x4a, 0x6c, 0x6, 0x96, 0x10, 0xa8, 0x3c, 0x70, 0xe5, 0xaa, 0x27, 0x86, 0x32, 0x10, 0x17, 0x58, 0x9d, 0x83, 0x72, 0x85, 0x6e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0x77, 0xc4, 0x99, 0x13, 0xc6, 0xc8, 0x2b, 0x1e, 0xfe, 0xa5, 0x3a, 0x39, 0x80, 0x42, 0x1e, 0x35, 0x84, 0xa1, 0xa6, 0x33, 0x61, 0x61, 0x91, 0x52, 0xf2, 0x8d, 0xb2, 0x36, 0x4d, 0x5d, 0x9e}} return a, nil } -var _dkgScriptsGet_thresholdsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xc1\x4a\x03\x31\x18\x84\xef\x79\x8a\x39\x26\x97\x65\x0f\xa5\x87\x82\x14\x61\x6d\x91\x82\x88\xab\x0f\x10\xd7\x3f\x6d\x20\x9b\x94\xe4\x8f\x16\x64\xdf\x5d\xb2\xd5\xd6\x65\x11\xcc\xf1\x9f\xf9\x32\xc3\xd8\xfe\x18\x22\x63\xe3\xc2\x47\xb3\xdb\xc2\xc4\xd0\xa3\x3e\x35\xbb\xed\x6d\xd3\x3c\xdd\xb5\xad\x10\xc7\xfc\x8a\xc4\x31\x77\x8c\xe7\x43\xa4\x74\x08\xee\x2d\xe1\x53\x00\x40\xd1\x1c\x31\xbc\x66\xfb\x4e\x2b\xbc\xdc\x7b\x5e\x2e\x26\x52\xd2\xe6\x6f\xe1\x91\x62\x47\x9e\xf5\xbe\x58\x36\xf6\xb4\x5c\x88\xd1\x63\xbd\x65\xa9\xbe\x43\xca\x4b\xe4\x4c\x75\x4e\xc1\xcd\x4f\xdb\x6a\x4f\xfc\x30\xde\xda\xdc\x75\x94\xd2\xa5\x9f\x54\x53\xb2\x64\x4d\xb9\x56\x9b\x7f\x51\xd7\x86\x73\xfe\x02\x5e\x4d\x52\x61\xbd\x46\x5d\xd5\xe3\x4f\x83\x18\xce\xfb\x99\xec\xd1\x6b\xeb\xa5\x5a\xcd\x47\x8c\xc4\x39\xfa\x5f\x77\xa9\xc4\xf0\x15\x00\x00\xff\xff\x03\x93\xd8\xc7\x98\x01\x00\x00" +var _dkgScriptsGet_thresholdsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcf\x4a\x03\x31\x10\xc6\xef\x79\x8a\x8f\x9e\x92\xcb\xd2\x43\xe9\xa1\x20\xbd\x48\x45\x04\x11\xaa\x0f\x10\xe2\xa4\x0d\x64\x13\x49\x26\x2a\xc8\xbe\xbb\x6c\xac\xfb\x87\x15\x6c\x6e\x19\x7e\xbf\xf9\x66\xc6\xb5\x6f\x31\x31\x0e\x3e\x7e\xdc\x3e\xdc\xc1\xa6\xd8\x62\x75\xf9\xad\x84\xd0\xc6\x50\xce\x52\x7b\xaf\x90\x39\x15\xc3\x78\x3e\x27\xca\xe7\xe8\x5f\x33\xbe\x04\x00\x4c\x19\x4f\x8c\xa0\xd9\xbd\xd3\x0e\x2f\xf7\x81\xb7\x9b\x3f\x91\xac\xed\xff\xc0\x13\x25\x43\x81\xf5\xa9\x47\x0f\xee\x73\xbb\x11\x95\x75\xc1\xb1\x54\x97\xf0\xfe\x65\xf2\xb6\xf9\x49\xc5\xcd\xef\x2a\xcd\x89\xf8\xb1\xd6\x8e\xa5\x36\x1f\xe6\x96\x6a\x6e\xf6\x59\x73\xef\xa8\xed\x55\xd6\x38\xe1\xd2\x1f\xc4\x11\x92\x0a\xfb\x3d\xd6\xcd\xba\x76\xea\x44\x37\xbf\xaf\x2d\x01\xad\x76\x41\xaa\xdd\xf2\xc8\x89\xb8\xa4\x30\xa9\x4b\x25\xba\xef\x00\x00\x00\xff\xff\xb3\xea\x59\x20\xbd\x01\x00\x00" func dkgScriptsGet_thresholdsCdcBytes() ([]byte, error) { return bindataRead( @@ -1080,11 +1140,11 @@ func dkgScriptsGet_thresholdsCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_thresholds.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9f, 0x6, 0xd, 0xd4, 0x37, 0x50, 0xa5, 0x7, 0x78, 0xd8, 0x8d, 0x8f, 0x5d, 0x24, 0x7e, 0xb7, 0xab, 0x79, 0x29, 0x97, 0x3f, 0xf5, 0x8b, 0x75, 0x32, 0xf7, 0xa4, 0xaf, 0x24, 0x18, 0xd4, 0x8f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x22, 0xd8, 0x8, 0xe9, 0xf9, 0x79, 0xd1, 0x2c, 0xce, 0xe5, 0x62, 0x4d, 0x9f, 0xd2, 0x6, 0xdf, 0x1d, 0x2d, 0x17, 0xa7, 0x40, 0x6d, 0x40, 0x6, 0xa2, 0x7a, 0x0, 0xbd, 0x7c, 0xf2, 0x89}} return a, nil } -var _dkgScriptsGet_whiteboard_messagesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x88\x86\xaa\xd5\xf3\x4d\x2d\x2e\x4e\x4c\x4f\x8d\x55\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x99\xa4\x97\x9e\x5a\x12\x9e\x91\x59\x92\xea\x94\x9f\x58\x94\x02\x55\x5a\xac\xa1\xa9\xc0\x55\x0b\x08\x00\x00\xff\xff\x3f\x6c\x37\x78\x73\x00\x00\x00" +var _dkgScriptsGet_whiteboard_messagesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\xa2\xa1\x4a\xf4\x7c\x53\x8b\x8b\x13\xd3\x53\x63\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xc6\xe9\xa5\xa7\x96\x84\x67\x64\x96\xa4\x3a\xe5\x27\x16\xa5\x40\x95\x16\x6b\x68\x2a\x70\xd5\x02\x02\x00\x00\xff\xff\x68\x14\x95\x1b\x78\x00\x00\x00" func dkgScriptsGet_whiteboard_messagesCdcBytes() ([]byte, error) { return bindataRead( @@ -1100,11 +1160,11 @@ func dkgScriptsGet_whiteboard_messagesCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_whiteboard_messages.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb3, 0xd, 0x56, 0xa1, 0x9c, 0xba, 0x39, 0x42, 0xbd, 0xc, 0x6f, 0xdb, 0x33, 0xd0, 0x81, 0xc7, 0xf4, 0xd5, 0x31, 0x3f, 0xca, 0xa0, 0x49, 0xb7, 0x7e, 0x22, 0xeb, 0xb7, 0xfe, 0x63, 0x68, 0xe0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0xd3, 0xb2, 0xb6, 0xfe, 0x25, 0x93, 0xf1, 0x4f, 0x70, 0x8a, 0x81, 0xe6, 0x35, 0x7e, 0xb7, 0x82, 0xca, 0x41, 0xba, 0xe7, 0xc5, 0x37, 0x28, 0x1d, 0xf3, 0xb4, 0xe, 0x87, 0x1b, 0xdb, 0xf9}} return a, nil } -var _dkgSend_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xb1\x6a\xf3\x40\x10\x84\x7b\x3d\xc5\xe2\xe2\x47\x6a\xc4\x5f\x8b\x24\x42\x44\xb1\x0b\x37\x26\x2a\x43\x8a\xf3\x79\x25\x2f\x91\x76\x8f\xbd\x15\x36\x04\xbf\x7b\x10\xb2\x8d\x02\xce\x94\x77\x37\xdf\xdc\x0c\x0d\x41\xd4\x60\xdd\xcb\xa9\xde\x6e\xa0\x55\x19\xe0\xff\xb9\xde\x6e\xaa\xba\x7e\x7f\x6b\x9a\x24\x31\x75\x1c\x9d\x37\x12\x4e\xe3\xb8\x1f\x28\x46\x12\x2e\xe0\xa3\x31\x25\xee\xca\xcf\x0c\xbe\x93\x04\x00\xa0\x47\x83\xc3\x57\xb7\x73\x6a\xe4\x29\x38\xb6\x02\xfe\x5d\xc9\xf9\xe2\x74\x7e\x1d\x14\x83\x53\x4c\x23\x75\x8c\x5a\x40\x35\xda\xb1\xf2\x5e\x46\xb6\x89\x08\x57\x45\xec\xdb\xfc\x37\x15\x9e\x61\x36\xe5\x7b\x51\x95\xd3\xd3\xa3\x90\x97\x74\xea\x52\xc0\x83\xab\xc6\x44\x5d\x87\x3b\x67\xc7\xec\x9e\x33\xa9\x2c\x21\x38\x26\x9f\xae\x5e\x1d\xb3\x18\xcc\xfc\xa9\x14\x84\x45\xbe\x62\x8b\x8a\xec\x71\x35\xfb\x2f\x73\x23\x3c\xa3\x1f\x0d\x6f\x73\xfc\xf1\xfb\x3c\x22\x1f\xd6\xc4\xae\x6f\xee\x6b\x2e\x86\xcd\x92\x1b\xf2\xf2\x13\x00\x00\xff\xff\x38\x14\x9d\x91\x9c\x01\x00\x00" +var _dkgSend_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xbd\x6a\xc3\x40\x0c\xc7\x77\x3f\x85\xf0\x10\xec\xc5\x0f\x60\xda\x9a\x7e\x90\x0e\x5d\x02\x86\x2e\xa5\x83\x72\x91\x9d\xa3\xb6\x74\xe8\x64\x52\x28\x79\xf7\xe2\x9e\x1b\x5c\x08\xd5\x76\x1f\xfa\xfd\xf5\x93\x1f\x83\xa8\xc1\x76\x90\xd3\xd3\xcb\x33\x74\x2a\x23\xe4\xcb\x29\xcf\x32\x53\xe4\x88\xce\xbc\x70\x11\xa7\xfd\xe8\x63\xf4\xc2\x35\xbc\xb5\xa6\x9e\xfb\xe6\xbd\x84\xaf\x2c\x03\x00\x18\xc8\xe0\xf0\xd1\xef\x50\xcd\x3b\x1f\x90\xad\x86\xcd\x02\xaa\x56\xb7\xe9\x77\x50\x0a\xa8\x54\x44\xdf\x33\x69\x0d\x38\xd9\xb1\x78\x10\x55\x39\xbd\xe2\x30\x51\x09\x9b\x7b\xe7\x64\x62\x9b\x03\x60\xa9\x48\x43\x57\xfd\x0d\x81\x5b\x48\x8c\x2a\x9a\x28\xf6\x54\xed\x7f\x28\x37\xd7\xb2\xef\x8a\xd9\xaf\x86\x2b\x4f\x6d\xea\xde\xa1\x1d\xcb\x4b\xde\x5c\x4d\x03\x01\xd9\xbb\x22\x7f\x44\x66\x31\x48\xfc\xd9\x15\xc2\x6a\x0e\xa5\x8e\x94\xd8\x51\x9e\xfa\xcf\x49\x94\x3e\xc9\x4d\x46\xff\x4b\x54\x91\xf8\xb0\xf5\x8c\x43\x7b\xd9\xf1\x6a\xdd\xbf\xc0\xf3\x77\x00\x00\x00\xff\xff\x55\xc6\xf9\x32\xad\x01\x00\x00" func dkgSend_final_submissionCdcBytes() ([]byte, error) { return bindataRead( @@ -1120,11 +1180,11 @@ func dkgSend_final_submissionCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/send_final_submission.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0xa1, 0xeb, 0xb8, 0x94, 0x6e, 0xb, 0x8d, 0x4f, 0xbe, 0xf4, 0xe4, 0x73, 0x98, 0xc9, 0x5b, 0x27, 0x91, 0x33, 0xac, 0x1a, 0xe, 0x48, 0xe7, 0x33, 0x1, 0x1f, 0xb, 0xa6, 0xac, 0x6a, 0x93}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd1, 0xc, 0x5e, 0xac, 0xc6, 0x72, 0x16, 0x6c, 0xf2, 0x1f, 0x31, 0x41, 0x51, 0x0, 0xcd, 0x15, 0x99, 0x86, 0xb3, 0xd3, 0x8a, 0x56, 0xf2, 0xf1, 0xf8, 0xf1, 0x9f, 0xd4, 0x36, 0xa4, 0x8, 0xba}} return a, nil } -var _dkgSend_whiteboard_messageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x43\x0f\x92\x5c\x82\xe7\xa0\x96\x60\xb4\x87\x22\x14\xf3\x0b\xc6\x75\x92\x2e\xa6\x33\xcb\xec\x84\x16\xa4\xff\x5d\x96\x6d\xa4\x42\x9d\xe3\xee\xbc\xef\xcd\x7b\xfe\x10\x44\x0d\x5e\x27\x39\x76\xdb\x0d\x0c\x2a\x07\xb8\x3f\x75\xdb\x4d\xdb\x75\xef\x2f\x7d\x5f\x14\xa6\xc8\x11\x9d\x79\xe1\xd2\x09\x1b\xb1\x35\xd0\x9b\x7a\x1e\x2b\xf8\x2e\x0a\x00\x80\x89\x0c\x3e\xbf\xc6\x1d\xaa\x79\xe7\x03\xa6\x95\xbb\x0b\xb3\xbe\x7a\xcd\xdb\x41\x29\xa0\x52\x19\xfd\xc8\xa4\x0d\xb4\xb3\xed\x5b\xe7\x64\x66\x4b\x44\xb8\x4c\xa4\x69\xa8\xff\x52\xe1\x11\xb2\xa8\xfe\x10\x55\x39\x3e\xdc\x32\x79\x2a\x53\x8a\x06\x6e\x7c\xf5\x26\x8a\x23\xed\xd0\xf6\xd5\xaf\x4f\x9a\xf5\x1a\x02\xb2\x77\xe5\xea\x19\x99\xc5\x20\xf3\x53\x28\x08\x57\xfe\x4a\x03\x29\xb1\xa3\x55\xd6\x9f\x73\x22\x3a\x91\x9b\x8d\x96\x3a\xfe\xb9\xbe\x0e\x12\xed\x8d\x62\xc4\x91\x96\x2a\xab\x62\xe1\x9c\x7f\x02\x00\x00\xff\xff\x42\x47\xff\x78\x8b\x01\x00\x00" +var _dkgSend_whiteboard_messageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcf\x6a\xc3\x30\x0c\x87\xef\x79\x0a\x91\x43\x49\x2e\x7e\x80\xb0\xad\xec\x0f\xdb\x61\x0c\x0a\x85\xdd\x35\x4f\x71\xcd\x52\xc9\xc8\x0a\x1d\x8c\xbe\xfb\xf0\x9c\x8e\x0e\xca\x74\xb3\x2d\x7d\x3f\x7f\x8a\xfb\x24\x6a\xf0\x38\xc9\xe1\xe1\xf9\x09\x46\x95\x3d\xb4\xcb\xa9\x6d\x1a\x53\xe4\x8c\xde\xa2\x70\xe7\x85\x8d\xd8\x06\xd8\x9a\x46\x0e\x3d\x7c\x35\x0d\x00\xc0\x44\x06\xef\x1f\x61\x83\x6a\xd1\xc7\x84\xa5\x65\xb5\x20\xdc\xd9\x6d\xed\x4e\x4a\x09\x95\xba\x1c\x03\x93\x0e\x80\xb3\xed\xba\x3b\x51\x95\xc3\x2b\x4e\x33\xf5\xb0\xba\xf5\x5e\x66\xb6\x12\x00\x4b\x65\x9a\x46\xf7\x37\x04\xae\xa1\x32\x5c\x36\x51\x0c\xe4\xde\x7e\x28\x57\x97\xb2\x6f\xba\x62\x36\xc0\x85\xa7\x6d\x9d\xde\xa0\xed\xfa\xdf\xbc\x52\xeb\x35\x24\xe4\xe8\xbb\xf6\x1e\x99\xc5\xa0\xf2\x8b\x2b\xa4\xb3\x7f\x28\x8d\xa4\xc4\x9e\xda\x3a\x7f\xac\xa2\xf4\x49\x7e\x36\xfa\x5f\xc2\x25\xc9\xf6\x42\x39\x63\xa0\xd3\x82\x4f\x94\xe3\x77\x00\x00\x00\xff\xff\xc6\xb5\x3f\x3f\x9c\x01\x00\x00" func dkgSend_whiteboard_messageCdcBytes() ([]byte, error) { return bindataRead( @@ -1140,11 +1200,11 @@ func dkgSend_whiteboard_messageCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/send_whiteboard_message.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaf, 0xbf, 0x30, 0x7e, 0x1e, 0xed, 0x99, 0xc1, 0x3d, 0xa0, 0x20, 0x22, 0x66, 0xaf, 0x3b, 0x43, 0x3f, 0x26, 0xca, 0xd8, 0xff, 0x25, 0x83, 0xbc, 0x7e, 0x33, 0x4a, 0x7b, 0xb0, 0x5d, 0xaf, 0x21}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcb, 0xec, 0x78, 0xab, 0x6e, 0x8, 0xc7, 0xa7, 0x9c, 0x52, 0x92, 0x14, 0x8d, 0x49, 0x3e, 0xa1, 0x55, 0xf3, 0xe3, 0xaf, 0xa9, 0x17, 0x5e, 0xbf, 0x42, 0x66, 0xd4, 0x93, 0x31, 0x7b, 0xd0, 0x18}} return a, nil } -var _epochAdminAdvance_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x4d\x4f\x83\x40\x10\x86\xef\xfc\x8a\x09\x07\x43\x2f\xc4\x73\x63\x6d\x28\x60\x4a\xec\x57\x04\x0f\x1e\xa7\x74\x0b\x9b\xc2\xce\x66\x19\xac\x89\xe9\x7f\x37\x80\x50\x0e\xd6\xce\x61\x4f\xef\x3e\xef\x87\x2c\x35\x19\x86\x97\x82\xce\xa1\xa6\x34\x87\xa3\xa1\x12\x1e\xbf\xc2\xdd\xd6\x5f\x7a\x41\xf0\x16\xc6\xb1\x35\x12\x45\x41\x82\xfb\x42\xc4\x8c\x27\xa9\xb2\x5e\x1d\x05\xe1\x26\x89\x92\x8f\xc4\x5b\xac\xc2\xfe\x97\xc5\x06\x55\x85\x29\x4b\x52\x8e\xce\xb1\x12\x53\x88\xd9\x48\x95\x4d\xe0\xdb\x02\x00\xd0\x46\x68\x34\xc2\xa9\x64\xa6\x84\x99\x82\x57\x73\xee\xa5\x29\xd5\x8a\x7b\x49\x73\x85\x60\xc8\x05\x1a\xde\x0b\x64\x98\x41\x27\x77\xf7\x64\x0c\x9d\x9f\x1e\x86\xec\xee\xb2\x17\x3d\x3b\x4d\xb0\xe9\xb5\x96\x3b\xfc\x8f\x99\x0c\x66\x62\x87\x9c\x4f\x06\x87\xe6\xe6\x73\xd0\xa8\x64\xea\xd8\x3e\xd5\xc5\x01\x14\x31\x74\x16\x23\xf3\xb6\x6f\xd5\x21\x40\x23\xe7\xf6\xc4\x1a\x28\xf2\x08\x6d\x4d\x98\xcd\xc0\x6e\x07\x8c\xc3\xe4\x7d\x67\x8f\xaa\x34\x37\xd0\x5c\xa1\x0e\xbf\x43\x7a\x75\x37\xd3\x35\xd2\x05\x44\x51\x89\x3f\x98\xfe\x76\xbd\x8e\x92\xdb\xd0\x8a\xd1\x70\x5b\xda\xa7\xb2\x94\x7c\x8f\xb9\x09\x5a\xec\xbf\x29\x5b\xdc\x1d\xd0\x62\xb5\xf5\x5f\x6f\x53\xf0\xf0\x89\x2a\x15\x8b\x82\xd2\xd3\x98\x64\x75\xef\xe5\x27\x00\x00\xff\xff\x78\x90\x9a\x7d\x89\x02\x00\x00" +var _epochAdminAdvance_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x6f\x82\x40\x10\x85\xef\xfc\x8a\xc9\x1e\x0c\x5c\xf8\x01\xa6\xd6\x28\xda\x68\x5a\xab\x09\xb6\xf7\x71\x1d\x61\xe3\xb2\xbb\x59\x86\x7a\x68\xfc\xef\x0d\xa0\x48\x93\x5a\xe7\x40\x42\x76\xde\x37\xef\x3d\x55\x38\xeb\x19\x5e\xb4\x3d\xcd\x9d\x95\x39\x1c\xbc\x2d\x40\x74\xff\x22\xe8\x6d\x2c\x67\x5b\xdc\x69\x4a\x19\x8f\xca\x64\xbd\xd5\xdf\x0f\x22\x08\xd8\xa3\x29\x51\xb2\xb2\x26\x74\x39\x96\x34\x84\x94\xbd\x32\x59\x04\xdf\x01\x00\x80\xf3\xe4\xd0\x53\x58\xaa\xcc\x90\x1f\x02\x56\x9c\x87\x53\xeb\xbd\x3d\x7d\xa2\xae\x28\x82\xc1\x44\x4a\x5b\x19\xbe\x2a\xea\xd1\xc4\x90\x13\x7a\xde\x11\x32\x8c\xa0\x55\xc7\x25\x5b\x8f\x19\xc5\xbb\x46\xff\x34\xe8\xdc\xc7\x8b\xeb\xf2\x73\x58\xbb\x1d\xde\x82\xc6\x1d\x27\x6d\xd5\x1b\xe4\x3c\xea\x2e\xd5\x33\x1e\x83\x43\xa3\x64\x28\x12\x5b\xe9\x3d\x18\xcb\xd0\x9e\xe8\x99\x68\x4a\xb8\x18\x00\x87\x9c\x8b\x28\xe8\x28\xea\x00\x4d\x7a\x18\x8d\x40\xcc\x37\xeb\x64\x91\xce\xb7\x1f\x1b\xd1\x8b\x54\x4f\x47\x8b\xc9\xec\x2f\x25\x4e\xaa\xb6\xbd\x9b\xa5\x33\x90\x2e\xe9\x0f\x66\xb2\x5e\xad\x96\xdb\xfb\xd0\x92\xd1\x73\x13\x3a\xb1\x45\xa1\xf8\x11\xf3\x7d\xd6\x60\xff\x75\xd9\xe0\x1e\x80\xa6\x6f\xeb\xe4\xf5\x3e\x05\xf7\x5f\x68\x24\x4d\xb5\x95\xc7\x3e\x29\x68\xbf\xe7\x9f\x00\x00\x00\xff\xff\x77\x36\x16\x2b\x9b\x02\x00\x00" func epochAdminAdvance_viewCdcBytes() ([]byte, error) { return bindataRead( @@ -1160,11 +1220,11 @@ func epochAdminAdvance_viewCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/advance_view.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0x42, 0xe3, 0xf9, 0x28, 0x5, 0x40, 0x9e, 0xbc, 0x3e, 0x89, 0x42, 0xb7, 0x29, 0xc5, 0x14, 0xd7, 0x33, 0x6a, 0x71, 0xd7, 0xd5, 0x26, 0xb9, 0xc0, 0x75, 0xbe, 0x53, 0xda, 0x3d, 0x81, 0xdc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0xe1, 0x89, 0x75, 0x40, 0x79, 0x27, 0x42, 0xfc, 0x75, 0x5f, 0x1a, 0xb6, 0xef, 0xa4, 0xea, 0x47, 0xb1, 0x9b, 0x15, 0x59, 0x37, 0x8, 0x70, 0xe9, 0xb3, 0xc6, 0x77, 0xe7, 0xfc, 0xd8, 0x5c}} return a, nil } -var _epochAdminCalculate_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8f\x41\x4f\x83\x40\x10\x85\xef\xfc\x8a\x49\x0f\x86\x5e\x88\xe7\x46\x6d\xb0\x60\x4a\x62\xb4\x29\x5c\x3c\x0e\xcb\x08\xc4\xed\xce\x66\x18\x82\x89\xe9\x7f\x37\x48\x58\x3b\xe7\x6f\xde\xf7\x5e\x7f\xf1\x2c\x0a\x2f\x96\xa7\xdc\xb3\xe9\xe0\x53\xf8\x02\xf7\xdf\xf9\xe9\xfd\x70\x4c\xb3\xec\x9c\x97\x65\x74\x03\x15\x59\x85\xb5\xa5\x52\xf1\xab\x77\xed\x4a\x17\x59\xfe\x56\x15\xd5\x47\x95\x3e\xbf\xe6\xeb\x57\xa4\x82\x6e\x40\xa3\x3d\xbb\x78\x0b\x3f\x11\x00\x80\x17\xf2\x28\x14\x0f\x7d\xeb\x48\x76\x90\x8e\xda\xa5\xc6\xf0\xe8\x74\x45\xe6\xb3\xa4\xd0\x11\x8a\xd6\x84\x0a\x8f\xb0\xe0\x49\xcd\x22\x3c\x3d\xdc\x85\xba\xc9\x71\x85\x9e\xe2\xb9\xcb\xee\x7f\x49\x12\xfe\x4b\x65\xc1\x96\x4e\xa8\xdd\x36\x18\xe6\xdb\xef\xc1\xa3\xeb\x4d\xbc\x39\xf0\x68\x1b\x70\xac\xb0\x28\x6e\xe4\x7f\x13\x87\x25\x02\x3c\x6a\xb7\xd9\x46\x21\x25\x60\x89\x41\x6b\x46\x8b\x4a\xa9\x6b\x4a\xd2\x33\x4d\x28\xcd\x10\x2f\xc2\x6b\x74\xfd\x0d\x00\x00\xff\xff\x65\x70\xd8\x1b\x69\x01\x00\x00" +var _epochAdminCalculate_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\xcd\x4e\xec\x30\x0c\x85\xf7\x79\x0a\xab\x8b\x51\xba\xe9\x03\x8c\xee\x65\x34\xfc\x09\x76\x88\x22\xf6\x6e\x6a\xda\x88\x4c\x1c\xb9\x8e\xba\x40\xf3\xee\xa8\x53\x26\x14\xef\xa2\x9c\xcf\xe7\xb3\x3f\x25\x16\x85\xc7\xc0\xf3\x43\x62\x37\xc2\x87\xf0\x09\xaa\xf2\xae\xcc\x26\xf1\x7c\xff\x86\x5d\xa0\x56\xf1\xd3\xc7\x61\x13\xfd\xfb\x51\x19\xa3\x82\x71\x42\xa7\x9e\xa3\xad\xe1\xcb\x00\x00\x24\xa1\x84\x42\x76\xf2\x43\x24\xd9\x03\x66\x1d\xed\x2d\x8b\xf0\xfc\x8e\x21\x53\x0d\xbb\xa3\x73\x9c\xa3\x5e\x89\x65\x02\x29\x8c\x84\xa2\x1d\xa1\xc2\x7f\x58\xe9\x66\x52\x16\x1c\xa8\xe9\x2e\xfc\xbf\x5d\x11\x6e\x9e\xae\xe1\x1b\xbb\x08\xee\x7f\x6f\x6b\xca\x9e\x76\xa5\x5f\x50\xc7\xba\x34\x2d\x73\x38\x40\xc2\xe8\x9d\xad\xee\x38\x87\x1e\x22\x2b\xac\x15\x1b\x89\xcb\xdd\x3f\x02\x90\x50\xc7\xaa\x36\x65\x4b\x89\x35\x0e\x83\xcb\x01\x95\x8e\xb1\x6f\x49\x5f\x69\x46\xe9\x27\xbb\x16\x9e\xcd\xf9\x3b\x00\x00\xff\xff\x06\x87\xee\x45\x7b\x01\x00\x00" func epochAdminCalculate_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -1180,11 +1240,11 @@ func epochAdminCalculate_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/calculate_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf1, 0x90, 0x32, 0x9f, 0x87, 0xcc, 0xc2, 0x5c, 0x7d, 0xe9, 0xd1, 0x54, 0x3b, 0x45, 0xae, 0x38, 0xba, 0xcc, 0x78, 0x77, 0x70, 0x33, 0x8f, 0x7b, 0x2b, 0xbb, 0x1e, 0xb0, 0x79, 0x24, 0x81, 0xb8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6a, 0x28, 0xde, 0x44, 0x27, 0x64, 0x4f, 0xc3, 0x72, 0xfc, 0x29, 0x96, 0x71, 0x49, 0x1e, 0x7e, 0xf1, 0xf, 0x75, 0x6b, 0x4c, 0x31, 0x40, 0x4b, 0xf, 0x62, 0xa5, 0x65, 0x0, 0x94, 0xc0, 0x81}} return a, nil } -var _epochAdminDeploy_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xc1\x6b\xea\x40\x10\xc6\xef\xf9\x2b\xe6\xe8\x03\x91\xf7\xe0\x21\x0f\x6f\x21\xea\x43\x2c\x54\x1b\xda\x1e\xc4\xc3\x76\x33\x8d\xc1\x64\x36\xcc\xee\xa2\x52\xfc\xdf\xcb\x9a\x48\x4d\x8c\x89\x6d\x0e\x4b\x32\xdf\xf7\x6d\x86\x99\x5f\x92\xe5\x8a\x0d\x4c\x53\xb5\x0b\x52\xab\x0d\xf2\x32\x80\x77\x56\x19\xfc\xde\x2f\x03\x7f\x3c\x7e\x9a\x84\xa1\xe7\x19\x16\xa4\x85\x34\x89\xa2\x1e\x89\x0c\x47\x10\x1a\x4e\x28\xee\x83\x07\x17\x8f\x54\x11\x8e\x60\xf5\x3c\x23\xf3\x6f\xdd\xaf\x4a\x96\x19\xc9\x4c\x72\x25\x37\x81\xb2\x64\x90\x47\xe0\x8c\xc3\xbf\x55\x23\xd9\xec\x25\xc1\x9d\x9e\xd1\xc9\xdb\x65\x0a\x8d\xd8\x26\x14\xfb\xf6\xd4\x5c\x97\x7b\x3c\xff\xbf\xd8\x08\x8d\x37\x7d\x81\x4a\x53\x94\x46\x71\x39\x0d\x5d\x38\xff\x0c\xab\xce\xe9\xc3\xe3\xab\xb6\x79\x9e\x1e\x66\x24\x19\x85\xc6\x05\xb2\x44\x32\x22\x76\x77\x4f\x93\x7d\xfd\x6e\x16\x14\xa9\x2c\x54\x96\xe5\xd7\xf4\x6a\xc3\xbb\xfa\xf5\xaa\xb2\x97\x41\xf9\x56\x9f\xec\x59\xbf\x19\x58\x06\xb5\x48\xb4\x8d\x17\xf6\x6d\x8e\x07\x17\x29\x7a\x59\xff\x82\x0f\xcf\x03\xc8\x19\x73\xc1\xd8\xd3\x49\x4c\x6e\x45\xbe\x35\x1b\x5f\x4a\xb7\xb1\xd2\x01\x50\x68\x03\xa9\xc8\xb0\x90\x46\x0f\x44\x14\x95\x58\xb8\xb3\x11\x0a\x77\xde\x41\x44\x43\xb1\x03\x8f\x5a\xe1\x5e\x4e\x6e\x29\xb5\xe6\x9b\xd0\xb9\xae\x5d\x87\x1a\x38\x6a\xaa\x7e\x87\xaa\x36\xb5\x8d\xb5\xcb\xaf\x6e\xe2\xd6\x20\xf4\x0f\xb8\x6b\x89\xb5\xd3\x57\x04\xcf\x0c\x7a\x00\x47\xef\xf8\x19\x00\x00\xff\xff\x77\xe6\xf2\x61\x95\x04\x00\x00" +var _epochAdminDeploy_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xc1\x6b\xea\x40\x10\xc6\xef\xf9\x2b\x06\x0f\x0f\x05\x11\x1e\x3c\xe4\xe1\x4d\xd2\x5a\xc4\x42\x15\x69\x7b\x10\x0f\xdb\xcd\x34\x06\x93\xd9\x30\x3b\x8b\x95\xe2\xff\x5e\x62\x22\x35\x31\x26\xb6\x1e\x16\xf3\xcd\xf7\x6d\x26\x33\xbf\x28\x49\x0d\x0b\x4c\x62\xb3\xf3\x63\x67\x05\x79\xe1\xc3\x3b\x9b\x04\x3a\x25\xad\xe3\x79\xc2\x8a\xac\xd2\x12\x19\xea\x92\x4a\x70\x04\x4b\xe1\x88\xc2\x3e\x78\x70\xf6\xd3\x26\xc0\x11\xac\x9e\xa7\x24\xff\xd7\xfd\x72\xc9\x31\x23\xc9\x7d\x6a\xf4\xc6\x37\x8e\x04\x79\x04\x99\x71\xf8\xaf\x6c\x24\x97\xbc\x44\xb8\xb3\x53\x3a\x7a\xdb\x4c\x4b\x51\xdb\x88\xc2\xb1\x3b\x36\xd7\xe6\xbe\x9b\x3d\xcc\x37\xca\xe2\x55\x9f\x6f\xe2\x18\xb5\x18\x2e\xbe\xde\xe6\xce\xbf\xc3\xb2\x73\xf2\xf8\xf4\x6a\x5d\x9a\xc6\xfb\x29\x69\x46\x65\x71\x8e\xac\x91\x44\x85\xd9\xdd\x93\xe8\xa3\x7a\x37\x2b\x0a\x4c\xb2\x34\x8e\xf5\xf7\xf4\x2a\xc3\xbb\x78\xf5\xaa\xb4\x87\x41\xf1\xaf\x3a\xd9\x53\xfd\x6a\x60\xe1\x57\x22\xc1\x36\x9c\xbb\xb7\x19\xee\xb3\x48\xde\xcb\xba\x07\x9f\x9e\x07\x90\x32\xa6\x8a\xb1\x6b\xa3\x90\xb2\x15\x29\x27\x9b\xee\x38\x08\x7c\x43\xc2\x4a\x4b\x0f\xfe\x8c\xb5\xce\x16\x58\x04\x00\x72\xeb\x40\x17\x0e\x3b\x50\x41\x50\x50\x92\x9d\xb5\x8c\x64\xe7\x0d\x80\xd4\x88\x2d\xb4\x54\x84\x5b\xb1\xb9\x56\xa9\x34\x5f\x47\xd2\xa5\x76\x19\xaa\xc1\xaa\x4e\xfd\x09\x64\x4d\xd5\x26\xf4\xce\x9f\xda\x01\x5c\x83\xb2\xbf\xc0\xb0\x21\xd6\x0c\x63\x1e\x3c\x21\xe9\x01\x1c\xbc\xc3\x57\x00\x00\x00\xff\xff\x4b\x08\x37\x75\xa8\x04\x00\x00" func epochAdminDeploy_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1200,11 +1260,11 @@ func epochAdminDeploy_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/deploy_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3b, 0x7a, 0xe, 0xfd, 0xd8, 0x13, 0x8f, 0x9b, 0x36, 0x65, 0x11, 0x9d, 0x7, 0x4f, 0x62, 0xb9, 0x4e, 0x62, 0xe3, 0x15, 0xb8, 0x23, 0xf6, 0x95, 0xa4, 0xd3, 0xde, 0xd3, 0x54, 0x5c, 0xff, 0x57}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc0, 0xec, 0x40, 0x48, 0x4, 0x2f, 0x71, 0x7b, 0xd8, 0xb, 0xbb, 0x6b, 0xa7, 0x3c, 0x3f, 0x5f, 0x22, 0x3e, 0x7d, 0xb, 0x7f, 0x80, 0x8, 0x21, 0xc3, 0x66, 0x12, 0xb4, 0x70, 0xd2, 0x99, 0xc7}} return a, nil } -var _epochAdminDeploy_qc_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xce\x31\x4b\xc4\x40\x10\x05\xe0\x7e\x7e\xc5\x2b\x13\x08\x77\xad\xa4\x3b\xb4\xb1\xb1\x11\x2b\xb1\x18\x66\x97\x75\x39\x9d\x49\x76\x27\x88\x48\xfe\xbb\x90\x8d\x62\x2a\xcb\x61\xde\x7b\x7c\xe7\x33\xee\xe2\xf4\x66\x9f\x15\xfe\x61\x10\x53\x2f\x2c\x5e\xe1\x06\x56\xb0\x88\x2d\xea\xc8\x0a\xd3\x08\x2f\xac\x95\xc5\xb3\x29\x81\xfe\x5c\xdd\x2c\x0f\xfc\x1e\x47\x3c\x7a\xc9\x9a\x06\xcc\x72\x6b\x21\x8e\x78\x7e\xba\x57\xbf\x79\x19\x10\xae\xe9\x98\x08\xd7\x74\x88\xf4\xf8\x22\x02\xa6\x12\x27\x2e\xb1\xab\x39\x69\x2c\x23\x2e\x8b\xbf\x5e\x9a\x62\x4f\x00\xed\x77\xfa\xc5\x9e\x38\x84\x4e\xb7\xf5\xe6\x18\x20\xdb\x74\x53\xf4\xff\xb6\x76\xdc\x4f\x6d\xa7\xf5\x04\xac\x44\x2b\x81\xbe\x03\x00\x00\xff\xff\x63\x1d\x09\x1c\x27\x01\x00\x00" +var _epochAdminDeploy_qc_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xce\xb1\x4a\x03\x41\x10\xc6\xf1\x7e\x9e\xe2\xab\xe4\x16\x8e\xa4\x95\xeb\x42\x6c\x6c\x6c\xc4\x4a\x2c\x86\xd9\x65\x5d\xa2\x33\x97\xdd\x09\x22\x92\x77\x17\xb2\xab\x98\xca\x72\xe0\xfb\x33\xbf\xed\x16\x77\x69\x7d\xb3\xcf\x06\xff\x30\x88\xa9\x57\x16\x6f\x70\x03\x2b\x58\xc4\x4e\xea\x28\x0a\xd3\x04\xaf\xac\x8d\xc5\x8b\x29\x81\xfe\x5c\xd3\x51\x1e\xf8\x3d\x2d\x78\xf4\x5a\x34\xcf\x38\xca\xde\x62\x5a\xf0\xfc\x74\xaf\x7e\xfb\x32\x23\x1e\xf2\xf5\x22\x1e\xf2\xd5\x24\xe0\x8b\x08\x58\x6b\x5a\xb9\xa6\xa9\x95\xac\xa9\x2e\xe0\x93\xbf\x4e\xbb\x18\xf7\x43\x16\x70\xb3\xeb\xa8\x11\x00\x7d\xba\xf9\xb5\x6f\x38\xc6\x49\x2f\xcf\x3a\x6b\x86\x5c\x3e\x75\x54\xf8\xb7\x1a\xd6\x9f\x6c\x48\x03\x01\x67\xa2\x33\x81\xbe\x03\x00\x00\xff\xff\x37\x0b\x9f\x58\x36\x01\x00\x00" func epochAdminDeploy_qc_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -1220,11 +1280,11 @@ func epochAdminDeploy_qc_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/deploy_qc_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0xe5, 0xe6, 0x5e, 0xb3, 0x8d, 0x7c, 0x34, 0x5, 0xbf, 0xe9, 0x71, 0x45, 0x48, 0x7, 0xa7, 0xaa, 0x67, 0xd5, 0x1e, 0x45, 0x4b, 0x78, 0xc9, 0x66, 0x5b, 0x35, 0x61, 0x8f, 0x22, 0xd8, 0x7d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf2, 0xf3, 0x8a, 0xbb, 0x2a, 0x94, 0xec, 0x2, 0x91, 0xbb, 0xb8, 0x47, 0x83, 0xda, 0xe4, 0x7, 0x32, 0x98, 0x19, 0x9, 0x22, 0xec, 0xd7, 0x7e, 0x5d, 0x67, 0xf5, 0x20, 0x9d, 0x75, 0xef, 0x5f}} return a, nil } -var _epochAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\xc1\x8a\xa3\x40\x10\x86\xef\x3e\x45\x91\xc3\x62\x60\x31\x7b\x0e\xbb\x1b\x9c\x68\x88\x30\xcc\x48\xf4\x32\xc7\x52\x2b\xe9\x66\x4c\x77\x53\x96\x71\x64\xc8\xbb\x0f\x6a\xe2\x64\xea\xd6\xf0\xfd\xf5\x55\xff\xfa\xec\x2c\x0b\xec\x6a\xdb\xc5\xce\x96\x0a\x8e\x6c\xcf\xf0\xe7\x23\x4e\x5f\xb7\xfb\x30\x8a\x0e\x71\x96\x79\x0f\x50\x12\xe5\x58\xd4\x94\x09\xbe\x6b\x73\xba\xd3\x49\x14\xbf\xe4\x49\xfe\x96\x87\x4f\xcf\xf1\x3d\xe5\xad\x56\x2b\x48\xb1\x6f\x40\x14\x01\x53\x87\x5c\x35\x70\xb4\x3c\xbe\x1d\xd3\x45\xdb\xb6\x01\x1a\xb4\x23\x9b\x1c\x7f\x90\x0a\x2f\x04\x58\x33\x61\xd5\x43\x41\x64\xc0\xa1\xae\x7e\x4f\x69\xec\xcf\x64\x04\x3a\x5d\xd7\x60\xac\x80\x42\xe7\xc8\x78\x9e\x30\x9a\x06\x4b\xd1\xd6\xc0\xa7\x07\x00\x83\xc8\x21\x93\xdf\xe8\x93\x21\x5e\x43\xd8\x8a\x0a\xcb\xd2\xb6\x46\x96\x37\x64\x98\x9a\x04\x14\x21\x4b\x41\x28\xf0\x0f\x26\x3c\x28\x2c\xb3\xed\xfe\xfe\x9a\x0b\x0a\xf6\x77\xe8\xbf\x3f\xfc\x7e\xfd\xdd\x5d\x30\xe7\x33\xb1\x8c\x27\x4a\x51\xd4\x72\x36\x0c\xb3\xd9\x80\x43\xa3\x4b\x7f\xb1\xb5\x6d\x5d\x8d\xa7\x4f\x8a\x07\xf9\x58\x6a\x33\xad\x00\x87\xa2\x16\x4b\x6f\xde\x32\x63\x81\xc3\xfe\x30\x55\xb5\xb3\x9c\xde\xea\x1c\x0f\xf1\x27\xe9\xd5\xbb\x7e\x05\x00\x00\xff\xff\x8c\x32\x25\xbc\xdf\x01\x00\x00" +var _epochAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\x4f\x6b\xc3\x30\x0c\xc5\xef\xfe\x14\x22\x87\x92\xc0\x48\xef\x65\x5b\xd9\xbf\xb2\xde\xca\x3a\x76\x57\x12\xb5\x36\x73\x2d\xa3\x28\x0d\x61\xf4\xbb\x8f\x24\x5d\x96\xea\x26\xfc\x9e\xde\xf3\xcf\x9d\x22\x8b\xc2\xc6\x73\xfb\x16\xb9\xb4\x70\x10\x3e\x41\x32\xed\x89\x99\x29\xb6\xaf\x9f\x58\x78\xda\x2b\x7e\xbb\x70\x9c\x49\x6f\x1f\x12\x63\x96\xcb\x25\xec\xb0\xab\x41\x2d\x81\x50\x8b\x52\xd5\x70\x60\x19\xf6\x28\x74\x76\xdc\xd4\x40\x7d\xc2\xa0\xdd\x1e\x6e\x94\x16\xcf\x04\xe8\x85\xb0\xea\xa0\x20\x0a\x10\xd1\x55\x77\xa3\x1b\xbb\x13\x05\x85\xd6\x79\x0f\x81\x15\x2c\xc6\x48\xc1\x18\x15\x0c\x35\x96\xea\x38\xc0\x8f\x01\x80\x3e\x28\xa2\x50\x5a\xbb\x63\x20\x59\x01\x36\x6a\xd3\x67\x16\xe1\xf6\x0b\x7d\x43\x19\x2c\x9e\xca\x92\x9b\xa0\xd9\xd5\xd1\x8f\x27\x05\x4b\x28\x5a\x10\x2a\x3c\xc0\xe8\xce\x6b\x65\xc1\x23\xe5\xc5\xe0\xbf\x5f\x4c\x88\xf2\xf7\x3f\xf1\x63\xda\x23\x59\xfd\xd3\xcc\xa7\x3b\xfb\xd1\xbd\x43\xb5\xd9\x94\xd4\xcf\x7a\x0d\x11\x83\x2b\xd3\xe4\x85\x1b\x5f\x0d\x3f\x1a\x23\x66\x25\x06\xd2\xd7\x02\x10\x51\x6d\x92\x99\xe9\xca\x24\xcb\x23\x76\x1f\x23\xc1\x0d\xcb\xee\x4a\x79\x28\x92\x8e\xa1\x17\x73\xf9\x0d\x00\x00\xff\xff\x18\x65\x13\x72\xf1\x01\x00\x00" func epochAdminPay_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -1240,11 +1300,11 @@ func epochAdminPay_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/pay_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0x12, 0x23, 0x8e, 0xdb, 0x2b, 0x5a, 0x58, 0x1c, 0xdd, 0x6c, 0x42, 0xc0, 0xb7, 0x92, 0xf5, 0x52, 0x42, 0x73, 0xe4, 0xab, 0x3e, 0x1a, 0xa, 0xae, 0x60, 0x27, 0x7b, 0x5b, 0x49, 0x6e, 0x2b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc5, 0x44, 0xb, 0xf, 0x17, 0x22, 0x70, 0x23, 0x47, 0x80, 0xe0, 0x8d, 0xa, 0x3c, 0x31, 0x58, 0xc8, 0xd8, 0xe5, 0x97, 0x7b, 0xb3, 0x3b, 0x2a, 0x68, 0x2, 0xa, 0xcf, 0xcb, 0xe8, 0x50, 0x83}} return a, nil } -var _epochAdminRecover_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x6f\xdb\x38\x10\xbd\xfb\x57\x0c\x72\x58\x38\xc0\xc6\xd9\xc3\x62\x0f\xc6\xb6\x81\x6b\x3b\xa8\xd1\xaf\xa4\x76\x03\x14\x41\x0e\x63\x6a\x6c\x11\xa1\x38\xc2\x70\x14\xc5\x28\xf2\xdf\x0b\x4a\xb2\x2d\xd9\x69\x5d\x9d\xc8\xe1\x7b\x8f\x4f\xc3\x37\x36\xcb\x59\x14\xae\x1d\x97\xd3\x9c\x4d\x0a\x2b\xe1\x0c\xfe\x79\x9e\xde\x7c\x19\xbf\x1f\x4d\x26\x5f\xa7\xf3\x79\xaf\x05\x9a\x4d\x16\xb8\x74\x34\x57\x7c\xb4\x7e\xbd\x45\xcf\x26\xd3\xcf\x8b\xd9\xe2\xfb\x62\xf4\xee\xe3\xf4\x15\xd6\xd8\x15\x41\x49\x6e\xc7\x5b\xc2\xed\x78\x8b\xba\xbc\x84\x45\x4a\x20\x64\xf8\x89\xa4\xf6\xa0\x82\x3e\xa0\x51\xcb\x1e\x8c\x10\x2a\x05\x40\x9f\x40\x50\x14\x0d\x80\xe0\xa9\x04\xaa\xa0\xd6\x83\xa6\xd4\xf2\x1f\x32\x14\x05\xc3\x5e\x05\x8d\x46\x79\x65\x28\x53\x6b\x52\x28\xad\x73\xb0\x62\x31\x54\x71\x3c\x69\xc9\xf2\x08\xf4\x6c\x15\xa6\xd7\x9f\x06\xc7\x46\x02\xc9\x93\x35\x04\xf4\x44\x5e\x6b\xfe\x92\x80\x32\xab\x4a\x09\x44\xf1\x68\x2b\x17\x36\x14\x02\x25\xb0\xdc\x00\x3a\x17\x0b\xca\x86\x1d\xe4\x28\x6a\x8d\xcd\xd1\x6b\xfd\x07\x84\x26\x6d\x57\x6b\xcd\x22\x4f\x50\x2b\x53\x56\xf6\xe4\x28\x1f\x34\x1e\x94\x56\xd3\xc6\x72\x09\xb5\xb3\x04\x15\x07\x75\xf3\x6c\xe8\x34\x2c\xa4\x5c\xb8\x04\xd8\xbb\x4d\x34\x5b\x44\x5f\x3b\x01\x2e\x34\x2f\x14\x78\x55\xed\x96\xcc\x1a\x54\x30\x87\x42\xad\xb3\xba\x19\x46\x45\xa8\x76\x4d\x7f\x69\x95\x5d\x34\x2d\xb9\xd0\xe7\x0b\x94\x75\xe8\xb5\x6e\xeb\x0b\xfa\x84\xb3\x39\x17\x62\x68\x08\x73\x15\xeb\xd7\x7f\xf7\xa0\xf5\x55\x8f\x76\x67\xa9\x1c\xc2\xb7\x99\xd7\xff\xfe\x3d\x3a\x8e\x49\x9a\xfa\xe4\xd7\x18\xfa\xdd\xa1\x61\xe7\xc8\x28\x4b\x13\xb2\x30\x84\xfb\xfb\xda\xc8\xc3\xc3\x01\x74\x1b\xc3\x3b\x56\x9a\xa0\xe2\x10\xee\x3b\xf1\x1c\x8c\x0f\x11\x07\x0a\xc9\xe3\xfa\xa6\x58\x7e\xa0\x4d\xbc\xa5\xb9\xa4\x8b\xf0\x9c\xd0\x6c\xd2\x3a\x3e\x87\x1f\xbd\x0a\x91\x0b\xe5\x28\xd4\x0f\x76\xed\x49\x86\x30\x2a\x34\x1d\x19\xc3\x85\xd7\x88\xd9\x0a\x38\xd2\xba\xf7\xa3\x24\xb3\x1e\xde\x40\x8d\x1f\x2c\x59\x84\xcb\xff\xff\xda\x45\x7d\x50\x01\xde\xf6\xe3\x48\x0d\xf7\x13\x30\xc0\x58\x9e\x2b\x0b\xae\xe9\x06\x35\x3d\xef\xf8\xbb\xba\x82\x1c\xbd\x35\xfd\xb3\x71\x95\x13\xcf\x0a\xb5\x74\xf3\xe2\x15\xbd\x9e\xd3\x50\x8b\x40\x8e\x9a\x9e\x9d\xf7\x76\x3a\x7b\x7b\x83\xf6\xb8\x1c\x84\xa1\xbd\xeb\xf6\xe8\xe8\x6b\x65\x64\xb7\x3c\x4d\xe9\xe4\xa6\xbb\x3f\x41\xde\x05\x8a\xfe\x08\xfe\x4a\xc4\x8e\x4a\xa7\x24\x8e\xa3\x77\x54\x3a\x21\xd1\xce\xde\x7e\x7d\x82\xb4\x8b\x63\xb3\xa8\xc3\xf0\xd2\x7b\xe9\xfd\x0c\x00\x00\xff\xff\x70\xfb\xb8\xdc\xfa\x05\x00\x00" +var _epochAdminRecover_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xc1\x6e\xdb\x48\x0c\xbd\xeb\x2b\x08\x1f\x02\x1b\xd8\x28\x97\xc5\x1e\x84\xdd\x0d\x52\x27\x01\x82\xa2\x40\x0a\xa7\xb9\x04\x39\xd0\x23\xda\x1a\x64\x34\x14\x38\x54\x14\xa3\xc8\xbf\x17\x23\x29\xb2\x64\xb7\x75\x7d\x9a\x21\xdf\x7b\xf3\x4c\x3d\xda\xb2\x62\x51\xb8\x75\xdc\xdc\x54\x6c\x0a\xd8\x08\x97\x30\x1b\xee\xb3\x64\x84\xb8\xbb\x7e\xc0\xb5\xa3\x95\xe2\x8b\xf5\xdb\x11\x74\xda\x98\x70\x96\xae\x0e\x4a\xf2\x75\x39\x82\x0f\xb5\x59\x92\x5c\x5c\xc0\x43\x41\x20\x64\xf8\x95\xa4\xf3\xa0\x82\x3e\xa0\x51\xcb\x1e\x8c\x10\x2a\x05\x40\x9f\x43\x50\x14\x0d\x80\xe0\xa9\x01\x6a\xa1\xd6\x83\x16\x34\xf2\x1f\x4a\x14\x05\xc3\x5e\x05\x8d\x46\x79\x65\x68\x0a\x6b\x0a\x68\xac\x73\xb0\x61\x31\xd4\x72\x3c\x69\xc3\xf2\x02\xf4\x66\x15\x6e\x6e\xbf\xa4\xc7\x46\x02\xc9\xab\x35\x04\xf4\x4a\x5e\x3b\xfe\x9a\x80\x4a\xab\x4a\x39\x44\xf1\x68\xab\x12\x36\x14\x02\xe5\xb0\xde\x01\x3a\x17\x0b\xca\x86\x1d\x54\x28\x6a\x8d\xad\xd0\x6b\xf7\x0f\x08\x4d\x31\xae\x76\x9a\x75\x95\xa3\xb6\xa6\xac\xec\xc9\x51\x3e\x68\x6c\x34\x56\x8b\xde\x72\x03\x9d\xb3\x1c\x15\xd3\x6e\x78\x36\x4c\x06\x16\x0a\xae\x5d\x0e\xec\xdd\x2e\x9a\xad\xa3\xaf\x41\x80\x6b\xad\x6a\x05\xde\xb4\xb7\x35\xb3\x06\x15\xac\xa0\x56\xeb\xac\xee\xb2\xa8\x08\xed\xad\x9f\x2f\x6d\xca\xf3\x7e\x24\xe7\xfa\x76\x8e\xb2\x0d\xc9\xe8\xb5\xb9\xa0\xcf\xb9\x5c\x71\x2d\x86\x32\x58\xa9\x58\xbf\xfd\x2b\x81\xd1\xaf\xfd\x68\x8f\x96\x9a\x0c\xbe\xdd\x79\xfd\xe7\xef\xa3\x76\xcc\xcc\x8d\xcf\x7f\x8d\xa1\xdf\x35\x0d\x3b\x47\x46\x59\xfa\x54\x85\x0c\x9e\x9e\x3a\x23\xcf\xcf\x07\xd0\x8f\xdc\x3d\xb2\xd2\x35\x2a\x66\xf0\x34\xc9\x63\xba\x3c\x44\x1c\x28\xe4\x2f\xdb\xfb\x7a\xfd\x99\x76\xf1\x95\xfe\x91\x29\xc2\x73\x4e\x77\xd7\xa3\xf6\x02\xbe\x27\x2d\xa2\x12\xaa\x50\x68\x1e\xec\xd6\x93\x64\x80\xb5\x16\xf3\x4f\x2c\xc2\xcd\x23\xba\x9a\x16\x70\x76\x65\x0c\xd7\x5e\x23\xe5\x43\xcf\x91\x76\x9f\xe2\x2a\x2f\xad\x87\xff\xa0\xa3\xa7\x41\x59\x70\x4b\xe9\xba\x15\xf8\xf7\x6c\xd8\x80\xb4\x05\xfe\x3f\x8f\xeb\x96\xed\x17\x23\xc5\x58\x5e\x75\xac\x7b\xd4\x62\x31\xb1\x7d\x79\x09\x15\x7a\x6b\xe6\xb3\x65\x1b\x1f\xcf\x0a\x9d\x74\x1f\x84\x96\xde\xed\x70\xff\x34\x54\xa8\xc5\x6c\x91\x0c\x3a\x7b\x9b\xe9\x78\x8b\x0e\x32\x32\xbe\x4d\x47\x77\xf4\x1b\x45\x67\x38\x9e\xa6\x4c\xe2\x34\xbd\x9f\x20\x0f\x39\xa3\x3f\x82\xff\x24\x79\x47\xa5\x53\x12\xc7\x89\x3c\x2a\x9d\x90\x18\x47\x72\x7f\x3e\x41\x1a\x52\xda\x1f\xba\x30\xbc\x27\xef\xc9\x8f\x00\x00\x00\xff\xff\xf3\x0f\xd1\xe0\x11\x06\x00\x00" func epochAdminRecover_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1260,11 +1320,11 @@ func epochAdminRecover_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/recover_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf2, 0x75, 0xc7, 0x49, 0x25, 0x51, 0x5e, 0x42, 0x19, 0xce, 0x5e, 0x11, 0xe8, 0x8b, 0x3b, 0x57, 0x45, 0xc2, 0xf9, 0xd0, 0xed, 0x9, 0xb6, 0x2f, 0x6b, 0x9f, 0x57, 0xf2, 0x5, 0xb9, 0x32, 0xc2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x0, 0x96, 0x18, 0x60, 0xc6, 0x26, 0xfe, 0xc7, 0xff, 0xd0, 0xe, 0x9c, 0xc7, 0xcb, 0xe9, 0x31, 0x96, 0xaa, 0xbf, 0xbe, 0xdb, 0x88, 0x81, 0x8b, 0x42, 0x39, 0xaf, 0x55, 0x60, 0x90, 0x31, 0xd8}} return a, nil } -var _epochAdminReset_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x5d\x6f\xdb\x46\x10\x7c\xe7\xaf\x58\xf8\xa1\x95\x60\x59\xaa\x81\xa2\x0f\x42\x5b\x43\x95\x54\x54\x68\xd1\xba\x91\x12\x20\x08\xf2\xb0\x24\x57\xe4\x41\xe4\x2d\x71\xbb\xb4\x2c\x04\xfe\xef\xc1\xdd\x59\x1f\x0c\x18\xdb\x7c\xe2\x1d\x67\xe6\xe6\x66\x96\xa6\x6e\xd8\x29\xfc\x59\xf1\x7e\xd9\x70\x56\xc2\xd6\x71\x0d\x3f\x3d\x2e\xef\xff\x9b\xff\x35\x5b\x2c\xde\x2d\xd7\xeb\xe4\x02\xb4\x5a\x6c\x30\xad\x68\xad\xb8\x33\xb6\x38\xa2\x57\x8b\xe5\xbf\x9b\xd5\xe6\xe3\x66\xf6\xc7\x3f\xcb\x23\x2b\x99\x4c\x60\x53\x12\x38\x12\xd2\x28\xae\x0e\xad\x60\xa6\x86\x2d\x90\xcd\x05\xb4\x24\xc8\x5a\xe7\xc8\x2a\x50\x80\x18\x1b\x36\xcf\x86\xa4\x46\xa7\x90\xb1\x55\x87\x99\x7a\x51\xb4\x39\xa4\x54\x18\x2b\x80\x60\x69\xff\xcc\xdc\x1b\x2d\x03\xb7\x30\x0f\x64\x3d\x63\x6b\x8a\xd6\xa1\x3f\x6d\x1c\x9c\x9c\xb1\x58\xed\xf1\x20\x50\xa2\x78\xc1\xe0\x82\x5b\xab\xe4\x8e\x6e\xc2\xd9\xf3\xb8\x77\x7d\x1b\xe9\x97\xee\x85\x6c\x4e\x0e\xea\x56\x14\x1a\xc7\x0f\x26\xa7\x20\xe3\xe5\x7a\x24\x60\x90\xd2\x96\x5d\xc4\x84\x40\x40\x71\x47\x02\x4d\x85\x19\x0d\x01\xfd\x55\x04\xb7\xa4\x07\xa8\x29\x2b\xd1\x1a\xa9\xc7\xc9\x64\xe2\xf5\x16\xad\xf3\x59\x5b\xd2\x3d\xbb\x1d\x48\xc3\x6e\x27\xa3\x20\x95\x32\xab\xa8\xc3\xa6\xa1\xdc\xfb\x50\xce\xb8\x02\x51\x54\x02\x23\x3e\xcc\x98\x50\x8c\x72\xd0\x7b\xb9\xe1\xe8\x18\xea\x45\x53\x46\xa0\x15\xca\x41\x19\xbc\x9b\x22\x3a\x8f\xe1\x1d\xa3\x7a\x43\x55\x61\x3e\xfa\xf2\x50\xee\x75\x03\xd7\x70\x3b\x1c\x81\x30\x68\x89\x0a\x46\x7f\x14\xaf\x27\x46\xd4\x8f\x48\xa8\xf8\xd8\xd8\x0b\x77\x1f\xc7\xd9\x33\xd2\xed\xac\xe4\xb6\xca\x81\x6d\x75\x80\x94\xe2\xfd\x4e\x43\xc3\xad\x36\xad\x02\x6f\xbb\xda\xd0\xaa\xa9\x8c\x1e\xa6\x5e\x11\xc2\xea\x39\x85\x10\xd6\x8d\x3e\xde\xa0\x2b\x24\x49\x2e\x0e\xea\xbb\xd8\x14\xde\xaf\xac\xfe\xf2\xf3\x28\x81\x8b\xc7\xa1\xcd\xb9\x5e\x73\xeb\x32\x9a\xc2\x5a\x7d\xcf\x5d\x84\x28\x3a\xfd\x60\x68\xdf\x2f\x20\xf1\x3f\x5c\xda\xfc\xfb\x18\xea\x7e\x1c\xc2\x97\x24\x7c\x6f\x1c\x35\xe8\x68\x20\xa6\xb0\xde\xe0\xac\xd5\x72\x96\x85\x72\x3d\xe6\x48\xaf\xe8\xf9\xd7\x9c\xe5\xb5\xb1\xf0\x1b\x44\xfc\x38\x65\xe7\x78\xff\xeb\x0f\xa7\xfa\xc7\x01\xf0\xfb\xc0\x77\x3e\x3d\x4f\xc5\x18\xfd\xf6\x5a\xd9\x61\x41\xf7\xa8\xe5\xb0\xe3\xee\xee\x0e\x1a\xb4\x26\x1b\x5c\xcd\x43\x3b\x96\x15\xa2\x34\x94\x84\x4e\x53\x42\x8d\x63\x24\x51\x02\x1a\xd4\xf2\x6a\x98\x9c\x54\xce\xe6\xc6\xe7\x01\xee\xef\xa0\x67\xb3\x9b\xd5\xb7\x4f\xb7\xa0\xcb\xd5\xcb\xbc\xcb\xde\x4e\xaf\xaf\x53\x3a\x5d\x76\xd7\xaf\x90\x4f\x25\xd3\x9b\xe0\x19\x57\x15\x65\xca\x6e\x5e\xb5\xa2\xe4\x64\x0a\x9f\x3e\xbf\xc6\x89\xd0\xff\xe7\x6f\x01\xe7\xbb\xe2\xbe\x4d\xff\xa6\x43\x00\xc7\xca\x9f\x92\xa7\xe4\x6b\x00\x00\x00\xff\xff\x5f\x6f\xdc\x53\x70\x06\x00\x00" +var _epochAdminReset_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xcb\x6e\xdb\x30\x10\xbc\xeb\x2b\x16\x3e\xa4\x36\xe2\xc8\x08\x50\xf4\x60\xb4\x0d\x52\x27\x05\x82\x5e\x52\x38\xcd\xa5\xe8\x61\x2d\xad\x25\xc2\x12\x57\xe0\xae\xe2\x1a\x45\xfe\xbd\x20\xe9\x87\x54\xa8\x49\x7c\x32\xa9\x99\xe1\x70\x66\x69\xea\x86\x9d\xc2\xd7\x8a\xb7\xb7\x0d\x67\x25\xac\x1d\xd7\x30\x3a\xae\x47\x49\x07\x71\x77\xf3\x80\xab\x8a\x96\x8a\x1b\x63\x8b\x0e\xb4\xff\x61\x94\x24\xb3\x19\x3c\x94\x04\x8e\x84\x34\xea\xaa\x43\x2b\x98\xa9\x61\x0b\x64\x73\x01\x2d\x09\xb2\xd6\x39\xb2\x0a\x14\x20\xc6\x86\xcd\x93\x17\xa9\xd1\x29\x64\x6c\xd5\x61\xa6\x5e\x14\x6d\x0e\x2b\x2a\x8c\x15\x40\xb0\xb4\xdd\x33\xb7\x46\xcb\xc0\x2d\xcc\x13\x59\xcf\x58\x9b\xa2\x75\xe8\x4f\x4b\x83\x93\x13\x16\xab\x2d\xee\x04\x4a\x14\x2f\x18\x5c\x70\x6b\x95\xdc\xc1\x4d\x38\x7b\x11\xf7\xce\x2f\x23\xbd\xeb\x5e\xc8\xe6\xe4\xa0\x6e\x45\xa1\x71\xfc\x64\x72\x0a\x32\x5e\x6e\x40\x02\xc6\x2b\x5a\xb3\x8b\x98\x10\x08\x28\x6e\x48\xa0\xa9\x30\xa3\x09\xa0\xbf\x8a\xe0\x9a\x74\x07\x35\x65\x25\x5a\x23\x75\x9a\xcc\x66\x5e\xef\xa6\x75\x3e\x69\x4b\xba\x65\xb7\x01\x69\xd8\x6d\x64\x1a\xa4\x56\xcc\x2a\xea\xb0\x69\x28\xf7\x3e\x94\x33\xae\x40\x14\x95\xc0\x88\x0f\x33\x26\x14\xa3\x1c\x0f\x5e\x6e\x32\x3d\x84\xda\x69\xca\x08\xb4\x42\x39\x28\x83\x77\x53\x44\xe7\x31\xbc\x43\x54\x6f\xa8\x2a\x4c\xc7\x50\x1e\xca\x83\x6e\xe0\x1c\x2e\x27\x53\x10\x06\x2d\x51\xc1\xe8\x3b\xf1\x7a\x62\x44\xfd\x88\x84\x8a\x0f\x8d\xbd\x70\xf7\x34\xce\x9e\x91\x7e\x67\x25\xb7\x55\x0e\x6c\xab\x1d\xac\x28\xde\xef\x38\x34\xdc\x6a\xd3\x2a\xf0\xba\xaf\x0d\xad\x9a\xca\xe8\x6e\xee\x15\x21\xac\xf6\x29\x84\xb0\x2e\xf4\xf7\x05\xba\x42\x92\xa4\x73\xd0\xd0\xc5\xe6\xf0\xe3\xce\xea\x87\xf7\xd3\x04\x3a\x3f\x87\x36\xe7\x7a\xc9\xad\xcb\x68\x0e\x4b\xf5\x3d\xf7\x11\xa2\xe8\xf4\xd1\xd0\x76\x58\x40\xe2\x63\xbb\xb5\xf9\xff\x31\xd4\xff\x38\x81\x3f\x49\xf8\xde\x38\x6a\xd0\xd1\x58\x4c\x61\xbd\x41\x6c\xb5\x1c\x7f\x61\xe7\x78\xfb\x88\x55\x4b\x13\x38\xbb\xce\x42\xd7\x9e\x72\x50\xab\x68\xff\x52\xaf\xf3\xda\x58\xf8\x04\x91\x9e\x8a\xb2\xc3\x82\xd2\x55\x10\xf8\x78\x76\x9c\x8a\x34\x00\x3f\x8f\xfd\x28\xcc\x4f\xc3\x92\xa2\xdf\x5e\x46\xd6\x3d\x6a\x39\xe9\x99\xbe\xba\x82\x06\xad\xc9\xc6\xa3\x45\x28\xcd\xb2\x42\x94\x3e\xbc\xe0\x70\x7c\x98\xaf\xfd\xd1\xd0\xa0\x96\xa3\x49\x72\xd4\x39\xd9\x4c\x4f\x93\x3d\x5c\xce\xc0\x66\x3f\xc4\x7f\x7f\xfd\xe6\xba\xab\x97\x79\xdd\x42\x8f\x7f\x5f\xa7\xf4\x4a\xee\xaf\x5f\x21\x1f\xdb\xa7\x37\xc1\x33\xae\x2a\xca\x94\xdd\xa2\x6a\x45\xc9\xc9\x1c\x7e\xfe\x7a\x8d\x13\xa1\xdf\x17\x6f\x01\xe7\x9b\xe2\xbe\x5d\x7d\xa3\x5d\x00\xc7\xd2\x9f\x93\xe7\xe4\x6f\x00\x00\x00\xff\xff\x31\xe8\x6d\xe4\x84\x06\x00\x00" func epochAdminReset_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1280,11 +1340,11 @@ func epochAdminReset_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/reset_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0x3, 0xd, 0x2d, 0x73, 0x2d, 0x6f, 0xa5, 0xfa, 0x8b, 0xb6, 0x7, 0xd9, 0x10, 0xd9, 0x12, 0xf5, 0x76, 0x4e, 0x50, 0x36, 0x2b, 0xb, 0x70, 0x17, 0xa7, 0x9c, 0xda, 0x7c, 0x8c, 0xbd, 0x7a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x65, 0xaa, 0xbb, 0x55, 0xc5, 0x22, 0xcf, 0x8f, 0x94, 0x74, 0x88, 0xe8, 0xa0, 0x90, 0x53, 0x15, 0x36, 0x1b, 0xe, 0x32, 0xd3, 0xb2, 0xb8, 0xe3, 0x72, 0xdd, 0x95, 0x41, 0x21, 0xce, 0x47, 0xe2}} return a, nil } -var _epochAdminSet_automatic_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\x25\x87\xe2\x5c\x4c\xcf\xa6\x6d\x50\x13\x97\xde\x1a\xe2\x2f\xd8\x48\x6a\x2c\x90\xb5\x62\xbd\xc2\x85\x92\x7f\x2f\x8a\xa8\x73\x69\xe7\x28\x66\x46\x6f\xd6\x4f\x89\x58\xe0\x2d\xd0\xd2\x27\x32\x23\x7c\x32\x4d\xf0\xf8\xd5\x1f\x3f\xf6\xef\xfa\x70\x38\xf5\xc3\xa0\x94\x30\xc6\x19\x8d\x78\x8a\x0d\x66\xa1\x09\xc5\x9b\x93\x5b\x90\xed\xdc\x47\x3c\x07\x67\x3b\x78\x25\x0a\x5b\xf8\x56\x00\x00\x89\x5d\x42\x76\xcd\xec\x2f\xd1\x71\x07\x3a\xcb\xa8\x8d\xa1\x1c\xe5\xd7\x52\x14\x9c\x80\x2b\xdf\x6a\x3b\xf9\x08\xcf\x50\xfd\xed\x99\x98\x69\x79\x7a\x58\xb1\xda\x9b\xe1\xa5\x29\x74\xdd\x9d\xb6\xc5\xf2\x3c\x08\x31\x5e\xdc\x11\x65\xdc\xae\xd5\x45\xbb\x1d\x24\x8c\xde\x34\x9b\x3d\xe5\x60\x21\x92\x40\xad\x86\x5b\xb0\x8e\x9d\x6b\x1c\x12\xca\xb8\xd9\xaa\xb5\xe1\x0e\xd6\xe6\x64\x51\x9c\xfe\x7b\xf9\x7f\x17\xa9\x2c\x57\x75\xfd\x09\x00\x00\xff\xff\xac\x8e\x3a\x7a\x64\x01\x00\x00" +var _epochAdminSet_automatic_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xb1\x4e\xc4\x30\x10\x44\xfb\x7c\xc5\x2a\xc5\x29\x69\xfc\x01\x11\x70\xca\xa1\xa3\x46\x20\xd1\xef\xd9\xcb\xc5\x92\xe3\xb5\x36\x6b\xa5\x40\xf7\xef\xc8\x31\xe4\x1a\x98\xce\x96\x67\xe6\x79\xfc\x9c\x58\x14\x5e\x02\xaf\xe7\xc4\x76\x82\x4f\xe1\x19\xda\xfd\xdc\x36\x8d\x0a\xc6\x05\xad\x7a\x8e\x1d\x66\xe5\x19\xd5\xdb\x37\x5a\x51\xdc\x72\x8e\x78\x09\xe4\x06\x38\x31\x87\x1e\xbe\x1a\x00\x80\x24\x94\x50\xa8\x5b\xfc\x35\x92\x0c\x80\x59\xa7\xee\xc4\x22\xbc\x7e\x60\xc8\xd4\xc3\x61\xb4\x96\x73\xd4\x5f\x47\x51\x20\x05\x2a\x95\xa3\x9b\x7d\x84\x47\xa8\x76\xb3\x28\x0b\x5e\xc9\x5c\xb6\x80\x87\xc3\x8e\x66\xb6\x87\x4f\x5d\x21\x1e\xee\x3f\x30\x58\xae\xdf\xab\xeb\x15\x75\xea\xf7\x8a\xa2\xe3\x11\x12\x46\x6f\xbb\xf6\x99\x73\x70\x10\x59\xa1\x46\xc3\x66\xac\x03\xfc\x94\x42\x42\x9d\xda\xbe\xd9\x13\xee\x80\x26\x27\x87\x4a\xe3\xdf\x83\xfc\x37\x54\x65\xb9\x35\xb7\xef\x00\x00\x00\xff\xff\x14\xdd\x64\x3c\x78\x01\x00\x00" func epochAdminSet_automatic_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -1300,11 +1360,11 @@ func epochAdminSet_automatic_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/set_automatic_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x79, 0x9, 0x8e, 0xe5, 0x32, 0xcb, 0x3e, 0x61, 0xd5, 0x8a, 0x3c, 0xd2, 0xdb, 0x86, 0x84, 0x19, 0x2c, 0xb6, 0x67, 0x7b, 0xac, 0x61, 0x5f, 0x6, 0x64, 0xc2, 0xd, 0x5a, 0x24, 0x94, 0x6b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xd6, 0xdc, 0xeb, 0xa4, 0xe1, 0xef, 0xb3, 0x7b, 0x5, 0x20, 0x54, 0xbe, 0xeb, 0xff, 0x1b, 0x2a, 0xcd, 0xde, 0xf5, 0x11, 0xeb, 0x9e, 0x29, 0xb, 0xa3, 0x57, 0x6f, 0x14, 0x6d, 0xa8, 0x16}} return a, nil } -var _epochAdminSet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xcf\x8a\xdb\x30\x10\x87\xef\x7e\x8a\xdf\x31\x81\x50\x5f\x4a\x0f\xa1\x14\x52\x68\x4e\x85\x1e\x9a\xd2\xf3\x58\x9e\xc4\xa6\x8a\xc6\x8c\x46\x76\xbd\x4b\xde\x7d\x91\x12\x2f\xd9\xec\x65\x75\xd0\x41\xf3\xcd\x37\x7f\x54\xd5\x75\x8d\xdf\x34\x72\x04\x05\xd0\x59\x52\x30\x98\x20\x9a\x28\x9d\x18\xd6\x91\x41\x79\x50\x8e\x9c\x23\x1d\xdf\xa0\x92\x28\x47\x34\x12\x52\x84\xc9\x3f\x0e\xf1\x4a\x77\x34\x32\x66\x2e\x9a\x86\xd1\x24\x0d\xdc\x16\xfc\xd0\xf5\x71\xa9\xd1\x47\xc4\xd4\x98\x92\x33\x6e\x71\x54\x39\x17\xb9\x89\x91\x47\x4c\xc3\xe0\xe7\xac\xdf\xff\xfc\xf5\xb7\xe4\x4e\x1d\x07\x1e\x59\x41\x08\x3c\xdd\x38\xe5\x89\xb4\xbd\x77\x3a\xf2\x2e\x79\xca\xce\x4c\xcf\xe0\x41\x5c\x57\x0c\x0d\x3b\x4a\x31\x8f\xc4\x33\x48\x19\x41\x0c\x67\xa6\xb0\x74\x4a\x18\x48\x2d\x57\x7d\xec\xa4\xe4\x97\xeb\xc7\xc8\xc1\x12\x79\x3f\x6f\x40\xde\xbf\x1d\x7f\xea\xf3\xcb\x32\x32\x28\xb4\x77\x0b\x7b\x8d\x3e\xb1\x4a\x55\x99\x52\x88\xe4\xac\x97\xb0\x2a\x92\x43\x76\xec\x0a\xba\xc5\x9f\x7d\xff\xff\xcb\xe7\x35\x9e\x2b\x00\x18\x94\x07\x52\x5e\xc5\xfe\x14\x58\xb7\xd8\x25\xeb\x76\xce\x65\x74\x41\xf2\xb9\x86\x3f\x79\xa1\xf6\xeb\x55\xf0\x6d\x95\x17\xbb\x45\x7d\xfb\xce\x7a\xef\x65\xfa\xfe\x50\x6d\xfd\x28\x88\x34\xf2\xbb\x9e\x36\x30\xf9\x90\xe8\x52\x5d\x5e\x02\x00\x00\xff\xff\x15\x31\xd0\x69\x55\x02\x00\x00" +var _epochAdminSet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x31\xcb\xdb\x30\x10\x86\x77\xff\x8a\x77\x2a\x0e\x84\x78\x29\x1d\x42\x29\xa4\xd0\x4c\x85\x0e\x49\xe9\x7c\x96\x2f\xb1\xa9\x22\x99\xd3\xc9\xae\x5b\xf2\xdf\x8b\x64\xbb\xa4\xf9\xf8\xe0\xf3\xe0\x41\xf7\xdc\xa3\xf7\x74\x45\x55\x55\x38\xd1\xc0\x01\xe4\x40\x37\x1f\x9d\x42\x3d\x82\x7a\xa1\x2b\x43\x5b\x52\x08\xf7\xc2\x81\x53\xa5\xe5\x05\xca\x8d\xfe\x82\xda\xbb\x18\xa0\xfe\x27\xbb\x30\xd3\x2d\x0d\x8c\x89\xb3\xa6\x66\xd4\x51\x1c\x37\x19\x3f\xb7\x5d\x58\xef\xe8\x02\x42\xac\x55\xc8\x28\x37\xb8\x88\xbf\x65\xb9\x7a\x25\x8b\x10\xfb\xde\x4e\x49\x7f\xfc\xfa\xed\x47\xee\x1d\x5b\x76\x3c\xb0\x80\xe0\x78\x5c\x38\xe1\x91\xa4\x79\x74\x1a\xb2\x26\x5a\x4a\xce\x44\x4f\xe0\xde\x9b\x36\x1b\x6a\x36\x14\x43\x1a\x89\x27\x90\x30\x9c\x57\xdc\x98\xdc\x9a\x94\xd0\x93\x68\xba\xf5\x39\x49\xee\xcf\xbf\x2f\x03\x3b\x8d\x64\xed\xb4\x05\x59\xfb\xff\xf8\x63\x97\x4e\xd6\x91\x41\xae\x79\x78\xb0\x7f\xd5\xdf\x2c\xbe\x28\x54\xc8\x05\x32\xda\x79\x57\x66\xc9\x39\x39\x0e\x19\xdd\xe3\xfb\xb1\xfb\xf5\xe1\xfd\x06\x7f\x0a\x00\xe8\x85\x7b\x12\x2e\x43\x77\x75\x2c\x7b\x50\xd4\xb6\x3c\xcd\x1b\xda\xe0\xdd\xc1\x98\xd4\xb5\xd2\xe9\x9b\xc9\xdd\xb2\xc5\x9d\xf5\xd4\x7c\x9c\x9d\x9f\xca\xf4\xd6\x7b\x54\x4b\xad\x3a\x5a\x3f\x7e\x7e\x0a\xb0\x79\x4d\x14\x68\xe0\x17\x71\xb7\x50\xff\x26\xe1\xbd\xb8\xff\x0d\x00\x00\xff\xff\x6b\x0e\xc9\x02\x70\x02\x00\x00" func epochAdminSet_bonus_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1320,11 +1380,11 @@ func epochAdminSet_bonus_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/set_bonus_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x20, 0x8f, 0x73, 0xe4, 0xb3, 0x15, 0xd3, 0xb1, 0x4a, 0x58, 0xdb, 0xc7, 0xc6, 0x1a, 0xca, 0x74, 0x57, 0xfc, 0xb2, 0x4c, 0x2d, 0x98, 0xfb, 0x8c, 0xc1, 0x95, 0xfe, 0xf4, 0xf6, 0xd8, 0x29, 0xc4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0x59, 0x6d, 0x99, 0x1b, 0x9b, 0xe3, 0x7f, 0xac, 0xcc, 0x5b, 0x8e, 0xfc, 0xda, 0x10, 0xa3, 0xe1, 0x8e, 0x81, 0xf0, 0xde, 0xd9, 0x1e, 0x8c, 0x3c, 0xa0, 0x15, 0x29, 0xfc, 0x2f, 0x7f, 0xc1}} return a, nil } -var _epochAdminUpdate_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xcf\x4a\xc4\x30\x10\xc6\xef\x7d\x8a\x61\x0f\xd2\x5e\x8a\x5e\x3c\x14\x75\x29\xdd\x8a\x5e\x74\xb1\xf8\x00\x31\x1d\xb7\x81\x34\x13\x26\x13\x2a\xc8\xbe\xbb\xa4\xc1\x2d\xec\x1c\xc3\xf7\xe7\xf7\xc5\xcc\x9e\x58\xe0\xd9\xd2\xd2\x7b\xd2\x13\x7c\x33\xcd\x70\xfb\xd3\x1f\xdf\xbb\x97\xf6\x70\xf8\xe8\x87\xa1\x28\x84\x95\x0b\x4a\x8b\x21\x57\x3a\x5c\xde\xe2\xdc\xd9\x18\x04\x39\x34\xf0\xf9\xea\xe4\xee\xbe\x82\xdf\x02\x00\xc0\x33\x7a\xc5\x58\x06\x73\x72\xc8\x0d\xb4\x51\xa6\x56\x6b\x8a\x4e\x92\x64\xd5\xa4\xb3\x28\x80\xa9\xb0\x1d\x67\xe3\xe0\x11\xb2\xa1\xfe\x22\x66\x5a\x1e\x6e\x2e\x40\xf5\x2a\x78\x2a\x13\x57\xb3\x71\xd6\x2a\x3d\x0f\x42\xac\x4e\x78\x54\x32\x55\x97\xe8\x74\xfb\x3d\x78\xe5\x8c\x2e\x77\x1d\x45\x3b\x82\x23\x81\x1c\x0d\xab\x31\xcf\x0c\xd9\x0e\x5e\xc9\xb4\xab\x36\xb8\x0d\xac\x8e\x7e\x54\x82\x69\x30\x59\x8b\x5a\x88\xff\x97\x5f\x7d\x44\xee\x3f\x17\xe7\xbf\x00\x00\x00\xff\xff\x03\xa4\x2c\x1e\x52\x01\x00\x00" +var _epochAdminUpdate_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xf4\x30\x10\x86\xef\xfd\x15\x43\x0f\x4b\x7b\x09\x7c\x97\xef\x50\xd4\x65\x5d\x14\xbc\x88\x20\x7a\x1f\xd3\x71\x1b\x48\x33\x61\x32\xa1\x07\xd9\xff\x2e\x69\xb4\x05\xe7\x96\x90\x67\xde\x27\xaf\x9b\x23\x8b\xc2\xa3\xe7\xe5\x21\xb2\x9d\xe0\x53\x78\x86\x76\x3b\xb7\x4d\xa3\x82\x21\xa1\x55\xc7\xa1\x0b\xb4\x3c\xe7\xf9\xec\x73\x52\x92\x34\xc0\xdb\x53\xd0\x7f\xff\x7b\xf8\x6a\x00\x00\xa2\x50\x44\xa1\x2e\xb9\x4b\x20\x19\x00\xb3\x4e\xdd\x3d\x8b\xf0\xf2\x8e\x3e\x53\x0f\x87\x93\xb5\x9c\x83\x16\x62\x45\xca\x78\x52\xa0\x12\x76\x1a\x67\x17\xe0\x16\x2a\x6f\x92\xb2\xe0\x85\xcc\xc7\xba\xe1\xe6\xb0\x49\x99\xf5\xe1\x5d\x57\x5c\x87\xdd\xdd\x60\xb9\x7e\xad\xd4\x0b\xea\xd4\x6f\x11\x65\x8e\x47\x88\x18\x9c\xed\xda\x33\x67\x3f\x42\x60\x85\xba\x1a\x56\xb0\x7e\xfd\x27\x14\x22\xea\xd4\xf6\xbb\xe4\x2e\x68\x72\x1c\x51\xa9\xf4\xc0\xde\x93\x55\x96\xdf\x42\xfe\xf4\x53\xf3\xaf\xcd\xf5\x3b\x00\x00\xff\xff\xa4\x93\x38\x91\x66\x01\x00\x00" func epochAdminUpdate_clustersCdcBytes() ([]byte, error) { return bindataRead( @@ -1340,11 +1400,11 @@ func epochAdminUpdate_clustersCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_clusters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0x82, 0xa2, 0x21, 0x78, 0x90, 0x2d, 0xd5, 0x9d, 0xdb, 0x39, 0x32, 0x8a, 0x6b, 0x70, 0xe, 0xed, 0xcc, 0x2a, 0xd2, 0xba, 0x87, 0xd4, 0xdb, 0x78, 0xa5, 0x5a, 0x3a, 0xb7, 0xf5, 0xe9, 0x5a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0x2d, 0x63, 0x8c, 0xa3, 0x90, 0x7, 0x27, 0x5f, 0x26, 0x35, 0x5c, 0xa4, 0x14, 0xfc, 0xe7, 0x15, 0xcf, 0x58, 0xf0, 0x63, 0xa9, 0x64, 0xac, 0x59, 0x2f, 0x89, 0xc9, 0x99, 0x40, 0x69, 0xf8}} return a, nil } -var _epochAdminUpdate_dkg_phase_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\x4d\x4b\xc4\x30\x10\x86\xef\xfd\x15\xc3\x1e\xa4\xbd\x14\x0f\xe2\xa1\xa8\x4b\xd9\xd6\x0f\x3c\x58\x2c\x7a\x1f\xd3\x71\x13\x68\x33\x21\x99\x52\x41\xf6\xbf\x4b\x36\xd8\xb2\x73\x1c\xde\x8f\xe7\x35\x93\x63\x2f\xf0\x38\xf2\xd2\x3a\x56\x1a\xbe\x3d\x4f\x70\xfd\xd3\x76\x6f\x87\xe7\xba\x69\xde\xdb\xbe\xcf\x32\xf1\x68\x03\x2a\x31\x6c\x73\x4b\x4b\xa7\x31\xd0\xa7\xa1\x25\x54\xf0\xf1\x62\xe5\xf6\xa6\x80\xdf\x0c\x00\xc0\x79\x72\xe8\x29\x0f\xe6\x68\xc9\x57\x50\xcf\xa2\x6b\xa5\x78\xb6\xf2\x2f\x89\x37\x92\x00\xc5\xba\x7a\x98\x8c\x85\x7b\x48\xfa\xf2\x8b\xbd\xe7\xe5\xee\x6a\xc5\x29\xcf\x82\x87\x3c\x52\x55\x1b\x65\x89\xf1\xdd\x0b\x7b\x3c\x52\x87\xa2\x8b\x35\x3a\xde\x7e\x0f\x0e\xad\x51\xf9\xee\xc0\xf3\x38\x80\x65\x81\x14\x0d\x67\x63\x1a\x19\x92\x1d\x1c\x8a\xde\x15\xd9\x9a\xb0\x81\x95\xb3\x1b\x50\xa8\x79\x7d\xda\x16\x5f\xee\x4f\xbd\xa7\xec\xf4\x17\x00\x00\xff\xff\xe0\xf6\x16\x5e\x48\x01\x00\x00" +var _epochAdminUpdate_dkg_phase_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\x4d\x4b\xc4\x30\x10\x86\xef\xfd\x15\x43\x0f\x4b\x7a\xc9\x49\x3c\x14\x75\x59\x3f\x11\x2f\x0b\xe2\xde\xc7\x74\xdc\x04\xda\x4c\x48\x26\xf4\x20\xfb\xdf\x25\x8d\xb6\x38\xb7\x84\xbc\xef\xf3\x64\xdc\x14\x38\x0a\x3c\x8f\x3c\x3f\x05\x36\x16\xbe\x22\x4f\xd0\xae\xe7\xb6\x69\x24\xa2\x4f\x68\xc4\xb1\x57\x9e\xe6\xa3\xc5\x44\x27\x47\x73\xea\xe1\xe3\xd5\xcb\xf5\x55\x07\xdf\x0d\x00\x40\x88\x14\x30\x92\x4a\xee\xec\x29\xf6\x80\x59\xac\xba\xe7\x18\x79\x3e\xe1\x98\xa9\x83\xdd\xc1\x18\xce\x5e\xfe\x12\x65\x46\x12\xa0\x82\x3a\x0c\x93\xf3\x70\x0b\x35\xae\x93\x70\xc4\x33\xe9\xcf\xa5\xe0\x66\xb7\x2a\xe9\xe5\xe1\x9d\x2a\xa6\xfd\x66\xae\xb1\x5c\xbf\xd7\xd4\x11\xc5\x76\x2b\xa2\xcc\x7e\x0f\x01\xbd\x33\xaa\x7d\xe0\x3c\x0e\xe0\x59\xa0\x56\xc3\x12\xac\x1f\xff\x85\x42\x40\xb1\x6d\xd7\xac\x0d\x9b\xa0\xce\x61\x40\xa1\xc7\xb7\x97\x6d\x11\xff\xd7\x52\xb9\x97\xe6\xf2\x13\x00\x00\xff\xff\x94\xd7\x29\x1e\x5c\x01\x00\x00" func epochAdminUpdate_dkg_phase_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1360,11 +1420,11 @@ func epochAdminUpdate_dkg_phase_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_dkg_phase_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xff, 0x12, 0x5a, 0x44, 0xb8, 0xd5, 0xb8, 0x5, 0x2a, 0xd0, 0x45, 0x97, 0xa7, 0x29, 0x2a, 0x1a, 0x76, 0xdd, 0x50, 0x3e, 0x12, 0x2a, 0xfc, 0xbe, 0x96, 0x57, 0xce, 0x5, 0x83, 0xbd, 0xfa, 0x43}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x82, 0xa0, 0x30, 0xce, 0xb4, 0x51, 0x7b, 0xb0, 0x89, 0x4c, 0xa1, 0x7c, 0x59, 0xaa, 0xcd, 0x18, 0xb8, 0x5d, 0x4a, 0xb, 0xca, 0x8f, 0x30, 0x58, 0xd0, 0xa4, 0x14, 0x7c, 0x48, 0x80, 0x98, 0x3}} return a, nil } -var _epochAdminUpdate_epoch_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x94\x41\x6f\xdb\x38\x10\x85\xef\xfe\x15\x6f\x73\x58\xd8\x80\x57\xd9\xc3\x62\x0f\x46\x9b\xc0\x88\xdd\x24\x48\x9b\x04\x75\x9a\x9e\xc7\xd2\x48\x22\x22\x91\x02\x39\x8a\x0a\x14\xf9\xef\x05\x49\xdb\x92\x8c\xa2\x41\x50\x54\x07\x1f\x68\xce\x7b\x6f\x3e\x92\xa3\xea\xc6\x58\xc1\x87\xca\x74\xeb\xc6\xa4\x25\x72\x6b\x6a\xfc\xfb\x6d\x7d\x7f\x77\x71\xb5\x5c\xad\x3e\xaf\x37\x9b\xc9\x44\x2c\x69\x47\xa9\x28\xa3\xa7\xd9\x53\x71\x5f\x92\xe3\x8f\xac\x17\xf8\x72\xad\xe5\xff\xff\xe6\x70\x42\x4f\x4a\x17\xa3\x35\xf6\x7a\x83\x95\x19\xbe\x4f\x00\xa0\xb1\xdc\x90\xe5\xa9\x53\x85\x66\xbb\xc0\xb2\x95\x72\x99\xa6\xa6\xd5\xb2\xdf\xe2\xbf\x8a\x25\x4a\x2c\xb3\x5a\x69\xbc\x47\xdc\x9f\x6c\x8d\xb5\xa6\x7b\xf7\xf7\x21\x72\x12\x36\x9c\x4d\x7d\xf2\x45\xdf\x49\x42\x7e\x79\x23\xc6\x52\xc1\xf7\x24\xe5\xec\x20\xed\xbf\xf3\x73\x34\xa4\x55\x3a\x3d\xb9\x30\x6d\x95\x41\x1b\x41\x94\x46\x28\x8c\x20\x5c\x2c\x47\x43\x52\x9e\xcc\x26\x07\x05\x95\xe3\xaf\xde\x49\xb9\x47\xaa\x54\x16\xb0\x5c\x18\x9d\xab\xa2\xb5\x14\x60\xf5\x5c\xe6\x18\x80\xeb\xe1\x0c\x3b\x0e\x70\x62\xa6\x5b\xee\x10\xcf\xe3\x51\x71\xe7\x50\xb7\x4e\xb0\x65\x14\x96\x49\xd8\x42\x4a\xd2\x90\x92\xe1\xda\x1a\x26\xdf\xf3\x07\xe9\x0c\xab\x9b\x4b\x04\x23\x3c\xfb\xda\x93\xbe\xef\x97\xbe\x81\xd3\xd3\x53\xac\x5a\x86\x98\x20\x93\x53\x2a\x5e\x74\x87\xfc\xf7\x5d\x47\x46\x1d\x47\xa9\xb6\xc9\x48\x38\x28\x44\x9b\x34\xc0\x82\x8a\xaa\xa9\xb1\x96\x53\x81\xb1\x19\xdb\x04\x0f\xa5\x72\x78\xf6\x60\x03\x4b\x28\x87\xcc\x68\x86\xd1\x60\x4a\xcb\x91\xc4\xc8\x2e\xda\x24\xb8\x32\x5d\xd0\xd5\x6d\xbd\x65\xeb\x03\x87\x68\x7b\xbb\x58\xaf\x1c\xb6\xec\x9b\x88\x55\x19\x32\x16\xb6\xb5\xd2\xec\xc2\xae\x10\x66\x24\xaf\x34\xba\x52\xa5\xa5\xd7\x0d\x9c\xae\x75\x38\xaa\xf9\x60\x61\x13\xc9\x2c\xdb\xf0\x66\xe6\x81\x50\xff\xef\xea\xe6\x32\xa2\xd2\xcc\x99\x3f\x82\x2d\x1f\xec\x5d\x9b\x96\xf1\x24\xbc\xfb\xa0\xfd\x86\x9c\x63\x97\x8c\xa2\xfc\x03\xa5\x53\xcb\xe4\x7c\x03\x47\x71\x16\x7b\xdc\x47\xeb\xd8\x72\x6e\x2c\xbf\x39\xec\x91\x71\xc6\x6f\x30\x1e\x3b\x04\x83\x9f\xe1\x78\x25\xd9\x28\xc1\xed\xdd\xc3\x7a\x81\xaf\x0c\x72\xae\xad\x19\x25\x5b\xee\xb9\xf9\xdb\xd8\x04\xcd\x8a\x75\x21\xe1\x98\x6b\x4f\xd6\xd5\x54\x55\xa3\xab\xbc\xbb\xc3\xbb\x7d\xb9\xb1\xa0\xaa\x42\x63\x84\xb5\x28\xaa\x76\x17\x6c\xf7\xa0\x07\xfc\x55\x7e\x78\xc4\x38\x1b\x8c\x9d\x82\x25\xce\x80\x4f\x2c\x94\x91\xd0\x74\x96\x1c\x1f\xc1\xd1\xa3\xef\xc7\x5c\x12\xd1\x85\x5d\xa1\x62\x7a\x18\x14\xbf\xae\xd8\x21\x8a\x35\xfd\xd4\x79\xa5\x6a\x4f\x3e\x96\x0d\x06\xd4\x60\x66\x80\x2b\xc7\xaf\x05\xfe\x63\xf6\x6f\xc7\xf3\x32\x89\xbf\x2f\x3f\x02\x00\x00\xff\xff\xb6\x8b\x7d\x6b\xdb\x06\x00\x00" +var _epochAdminUpdate_epoch_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x94\x4f\x4f\xdc\x3a\x14\xc5\xf7\xf3\x29\xce\x9b\x05\x9a\x91\xe6\x85\xcd\xd3\x5b\x8c\x5a\x10\x05\x4a\x11\x2d\x45\x82\xd2\xf5\x9d\xe4\x26\xb1\x48\xec\xc8\xbe\x21\x8b\x8a\xef\x5e\xd9\xce\xe4\xcf\xa8\x2a\x42\x55\xb3\x40\xc2\xe3\x73\xce\xbd\x3f\xdb\x57\xd5\x8d\xb1\x82\x8f\x95\xe9\x2e\x1b\x93\x96\xc8\xad\xa9\xb1\x1c\xfe\x5f\x2e\x16\x62\x49\x3b\x4a\x45\x19\xbd\xca\x9e\x8a\xbb\x92\x1c\x7f\x66\xbd\xc5\xb7\x6b\x2d\xff\xff\xb7\x81\x13\x7a\x52\xba\x98\xad\xb1\x17\x4f\x56\xd6\xf8\xb1\x00\x80\xc6\x72\x43\x96\x57\x4e\x15\x9a\xed\x16\xd4\x4a\xb9\xfa\x60\xac\x35\xdd\x23\x55\x2d\xaf\x71\x74\x96\xa6\xa6\xd5\xb2\x57\xf8\xaf\x62\x89\x8e\x67\x59\xad\x34\xde\x23\xca\x13\x27\xc6\x52\xc1\xc9\x2e\x18\xbc\x3b\x1a\xca\x4e\xc2\xc6\x93\x95\xef\x66\x3b\x76\x97\x90\x5f\xbe\x8f\xaa\x3b\x92\x72\x3d\x44\xf8\xef\xf4\x14\x0d\x69\x95\xae\x96\xe7\xa6\xad\x32\x68\x23\x88\xd6\x08\xc2\x08\xa7\x0f\x45\x43\x52\x2e\xd7\x8b\xc1\x41\xe5\xf8\x67\x4c\x52\xee\x91\x2a\x95\x05\x5a\xe7\x46\xe7\xaa\x68\x2d\x05\x86\x23\xae\x0d\x26\x3c\x47\x66\xd3\xce\x03\xb3\x58\xd3\x2d\x77\x88\x67\xf4\xa8\xb8\x73\xa8\x5b\x27\xd8\x31\x0a\xcb\x24\x6c\x21\x25\x69\x48\xc9\x70\x6d\x0d\x93\xef\x8f\x05\xa4\x33\x5c\xdc\x5c\x21\x04\xe1\xd9\x6b\x97\x63\xdf\x2f\x63\x03\xc7\xc7\xc7\xb8\x68\x19\x62\x82\x4d\x4e\xa9\x78\xd3\x1e\xfd\x9f\xa7\xce\x82\x3a\x8e\x56\x6d\x93\x91\x70\x70\x88\x31\x69\x80\x05\x15\x5d\x53\x63\x2d\xa7\x02\x63\x33\xb6\x09\x1e\x4a\xe5\xf0\xec\xc1\x06\x96\x50\x0e\x99\xd1\x0c\xa3\xc1\x94\x96\x33\x8b\x59\x5c\x8c\x49\xf0\xc9\x74\xc1\x57\xb7\xf5\x8e\xad\x2f\x38\x94\xb6\x8f\x8b\x7a\xe5\xb0\x63\xdf\x44\x54\x65\xc8\x58\xd8\xd6\x4a\xb3\x0b\xbb\x42\x31\x33\x7b\xa5\xd1\x95\x2a\x2d\xbd\x6f\xe0\x74\xad\xc3\x51\x6d\x26\x0b\xf7\x91\xcc\x59\x1b\x9e\xd2\x26\x10\x1a\x7f\xbd\xb8\xb9\x8a\xa8\x34\x73\xe6\x8f\x60\xc7\x43\xbc\x6b\xd3\x32\x9e\x84\x4f\x9f\xb4\xdf\x90\x73\xec\x92\x59\x29\xff\x42\xe9\xd4\x32\x39\xdf\xc0\x41\x39\xdb\x3d\xee\x83\x75\xec\x38\x37\x96\xdf\x5c\xec\x41\x70\xc6\x6f\x08\x9e\x27\x84\x80\x5f\xe1\x78\xa5\xb2\x59\x05\xb7\x5f\x1f\x2e\xb7\xf8\xce\x20\xe7\xda\x9a\x51\xb2\xe5\x91\x9b\xbf\x8d\x4d\xf0\xac\x58\x17\x12\x8e\xb9\xf6\x64\x5d\x4d\x55\x35\xbb\xca\xfd\x1d\xee\xf7\xe5\xc6\x82\xaa\x0a\x8d\x11\xd6\xa2\xa8\xea\x2f\x58\xff\xa0\x27\xfc\x55\x3e\x3c\x62\x9c\x4c\xc6\x4e\xc1\x12\x67\xc0\x17\x16\xca\x48\x68\xb5\x4e\x0e\x8f\xe0\xe0\xd1\x8f\xe3\x2e\x89\xe8\xc2\xae\xa0\x58\x0d\x83\xe2\xf7\x8a\x1e\x51\xd4\x8c\x53\xe7\x15\xd5\x9e\x7c\x94\x4d\x06\xd4\x64\x66\x80\x2b\xc7\xaf\x15\xfc\xd7\xe2\xdf\x8e\xe7\x65\x11\xff\xbe\xfc\x0c\x00\x00\xff\xff\x69\x95\xf0\xa2\xef\x06\x00\x00" func epochAdminUpdate_epoch_configCdcBytes() ([]byte, error) { return bindataRead( @@ -1380,11 +1440,11 @@ func epochAdminUpdate_epoch_configCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_epoch_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0xab, 0xdb, 0xbd, 0xb, 0x46, 0x8f, 0x2, 0x4c, 0xe4, 0x61, 0xc1, 0x47, 0xe7, 0x37, 0x1d, 0xa2, 0xcd, 0x8e, 0xe1, 0xd7, 0x53, 0x84, 0x58, 0x17, 0x53, 0x94, 0xc1, 0xd8, 0xb1, 0x40, 0x40}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0xcd, 0x55, 0xcb, 0x2d, 0xe5, 0x21, 0x62, 0x30, 0xa4, 0xa3, 0x99, 0x58, 0x9e, 0xa2, 0xb1, 0x47, 0x7d, 0x26, 0xa1, 0x75, 0xd8, 0x12, 0x3f, 0xf, 0xf5, 0xc5, 0x3e, 0xf1, 0x44, 0x72, 0x60}} return a, nil } -var _epochAdminUpdate_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\xc1\x6a\xc3\x30\x0c\x86\xef\x79\x0a\xd1\xc3\x48\x60\x84\x1d\xc6\x0e\x65\x5d\x09\x69\xc6\x76\x5a\x59\xba\x07\xf0\x1c\x27\x31\xc4\x96\x51\x14\x3a\x18\x7d\xf7\xe1\x98\x34\xc9\xaa\x83\x91\x65\xfd\xd2\xe7\x5f\x1b\x87\xc4\xf0\xda\xe1\xb9\x70\x28\x5b\xa8\x09\x0d\x3c\xfc\x14\xc7\x8f\xfc\x2d\x3b\x1c\x3e\x8b\xb2\x8c\x22\x26\x61\x7b\x21\x59\xa3\x8d\xab\x81\x84\x4f\xb6\xf0\xf5\x6e\xf9\xe9\xf1\x1e\x48\xd5\x39\x0e\x96\x15\xad\x6a\x27\x6d\x54\xcf\xc2\xb8\xa9\x9a\xc0\x6f\x04\x00\xe0\x48\x39\x41\x2a\xee\x75\x63\xbd\x26\x1b\xb8\xcd\xa4\xf4\x23\xa6\x16\x1f\x9d\x62\x50\x9e\x29\xab\x8c\xb6\xb0\x83\xd0\x9f\x7e\x23\x11\x9e\x9f\xef\xae\xcc\xe9\xd8\xf0\x12\x7b\xf4\xed\xfc\x95\x54\xf8\x72\xc9\x48\xa2\x51\x47\xc1\x6d\x72\x1d\xed\x63\xbf\x07\x27\xac\x96\xf1\x26\xc7\xa1\xab\xc0\x22\x43\x18\x0d\xa3\x30\x38\xd1\x07\x39\x38\xc1\xed\x26\x89\x56\x70\x12\x6d\xad\x1b\xd8\x2d\x56\x8e\xe7\x49\x1b\x6d\x9b\x7c\x7c\x5d\xd8\x35\x65\x6b\xc3\xe6\xfc\xbf\x69\xcb\xdb\x8c\x3e\x3b\x92\x0e\xae\x12\xac\x6e\x57\x06\xae\x20\xb9\x44\x97\xbf\x00\x00\x00\xff\xff\x8d\xbe\x84\x8a\xe3\x01\x00\x00" +var _epochAdminUpdate_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x50\x4d\x6b\xf3\x30\x0c\xbe\xe7\x57\x88\x1c\x4a\x02\x2f\x39\xbd\xec\x50\xd6\x95\xae\x6c\xb0\xdb\x60\xdd\xee\x9a\xe3\x24\x86\xd8\x32\x8a\x4c\x0f\xa3\xff\x7d\x38\x5e\xbe\x36\x1d\x82\xa4\xf8\xf9\xd0\x63\xac\x27\x16\x78\xee\xe9\xfa\xe4\x49\x75\xd0\x30\x59\xc8\xe7\x39\xcf\x32\x61\x74\x03\x2a\x31\xe4\x8a\x3a\x30\xc6\x66\x0f\xef\x2f\x4e\xee\xfe\xff\x03\xd6\xcd\x99\x82\x13\xcd\x9b\xdd\xc5\x58\x3d\x08\x5a\x3f\x6d\x4b\xf8\xca\x00\x00\x3c\x6b\x8f\xac\x8b\xc1\xb4\x2e\x62\x30\x48\x57\x3c\x12\x33\x5d\x3f\xb0\x0f\xba\x84\xdd\x49\xa9\xc8\x38\x21\x62\xf5\x5a\x40\x47\x3f\xa7\xda\x1a\x07\x07\x48\xf0\x6a\x10\x62\x6c\x75\xf5\x39\x12\xdc\xef\x66\xdf\xd5\xf8\xf0\xa1\x88\xe7\xec\x97\xf3\x2a\x8c\xeb\xb7\x84\x7a\x45\xe9\xca\x59\x22\xd6\xf1\x08\x1e\x9d\x51\x45\x7e\xa6\xd0\xd7\xe0\x48\x20\x51\xc3\x08\x4c\xe9\xfc\x88\x82\x47\xe9\xf2\x32\xdb\x98\x54\xe4\x1a\xd3\xc2\x61\x25\x39\x7e\x2f\xc6\x1a\xd7\x9e\xc7\xbf\xab\x14\xa7\x6e\x9b\xe3\xd2\xff\xce\x72\x3d\x2d\xd6\x97\x64\xaa\xe0\x6b\x14\xfd\x57\x32\xf9\x4a\x90\x5b\x76\xfb\x0e\x00\x00\xff\xff\xe3\x9c\x76\xf0\xf7\x01\x00\x00" func epochAdminUpdate_epoch_timing_configCdcBytes() ([]byte, error) { return bindataRead( @@ -1400,11 +1460,11 @@ func epochAdminUpdate_epoch_timing_configCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_epoch_timing_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0x1f, 0x6d, 0xa3, 0x37, 0xf6, 0x2c, 0x57, 0xc5, 0x90, 0xee, 0xac, 0xac, 0x3c, 0xb6, 0x96, 0x6a, 0xe5, 0x89, 0x8e, 0xd9, 0x24, 0x2e, 0x57, 0xa, 0x3a, 0x27, 0x79, 0x9a, 0x26, 0xa4, 0xb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd5, 0x60, 0x43, 0x69, 0x61, 0x53, 0x36, 0x3b, 0x34, 0x20, 0x40, 0x4b, 0xee, 0xa4, 0xd9, 0x27, 0x7a, 0x77, 0x2e, 0xc2, 0x5f, 0x9, 0x20, 0x44, 0x58, 0x2, 0x82, 0xd2, 0x40, 0xc3, 0xc9, 0xce}} return a, nil } -var _epochAdminUpdate_epoch_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\xcf\x4a\xf4\x30\x14\xc5\xf7\x79\x8a\xc3\x2c\x3e\xda\x4d\xf9\x16\xe2\xa2\xa8\x43\x98\xa9\xe8\xca\xc1\xa2\xfb\x98\xc6\x69\xa0\xcd\x0d\xe9\x0d\x15\x64\xde\x5d\x92\x60\x07\xbc\xab\x10\xce\x9f\xdf\xb1\xb3\xa7\xc0\x78\x9c\x68\xed\x3c\xe9\x11\x9f\x81\x66\xfc\xff\xea\x4e\x2f\x87\x27\x79\x3c\xbe\x76\x7d\x2f\x04\x07\xe5\x16\xa5\xd9\x92\xab\x9c\x59\x65\xcc\xcf\x77\x6b\xd6\xa5\xc5\xdb\xb3\xe3\xdb\x9b\x1a\xdf\x02\x00\x7c\x30\x5e\x05\x53\x2d\xf6\xec\x4c\x68\x21\x23\x8f\x52\x6b\x8a\x8e\x7f\x25\xe9\x26\xc3\x30\xa9\x50\x0e\xb3\x75\xb8\x47\xd1\x37\x1f\x14\x02\xad\x77\xff\x36\xa0\x26\x0b\x1e\xaa\xc4\xd5\x5e\x39\x1b\x95\xbe\x7b\xa6\xa0\xce\xe6\xa4\x78\xac\xb7\xe8\x74\xfb\x3d\xbc\x72\x56\x57\xbb\x03\xc5\x69\x80\x23\x46\x89\x46\x36\x96\x99\x4b\xb1\xc3\x2b\x1e\x77\xb5\xd8\x12\xae\x60\x4d\xf4\x83\x62\x93\x2b\xf3\xdc\xbf\xf3\x4b\xed\x45\x5c\x7e\x02\x00\x00\xff\xff\x31\x03\xa1\x69\x49\x01\x00\x00" +var _epochAdminUpdate_epoch_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xc4\x30\x10\x85\xef\xfd\x15\x8f\x1e\x96\xf6\xd2\x93\x78\x28\xea\x52\x45\xc1\x9b\x20\xee\x7d\x4c\xc7\x6d\xa0\xcd\x84\x74\x42\x0f\xb2\xff\x5d\x92\x68\x17\x9c\x53\x12\xf2\xde\xf7\xe6\xd9\xc5\x4b\x50\xbc\xcc\xb2\x3d\x7b\x31\x13\xbe\x82\x2c\xa8\xf7\x7b\x5d\x55\x1a\xc8\xad\x64\xd4\x8a\x6b\x1c\x6f\x43\xcc\xc7\x93\xe5\x6d\xed\xf1\xf1\xea\xf4\xf6\xa6\xc5\x77\x05\x00\x3e\xb0\xa7\xc0\xcd\x6a\xcf\x8e\x43\x0f\x8a\x3a\x35\x8f\x12\x82\x6c\x27\x9a\x23\xb7\x38\x0c\xc6\x48\x74\xfa\xa7\x48\x33\xb3\x82\x13\x6c\x18\x17\xeb\x70\x8f\x22\xef\x56\x95\x40\x67\xee\x3e\xb3\xc1\xdd\x61\x0f\xd5\xe5\x8f\x0f\x4d\xca\xda\x5f\xb3\x77\x94\x9e\xdf\x8b\xea\x8d\x74\x6a\x77\x44\x9a\xe3\x11\x9e\x9c\x35\x4d\xfd\x24\x71\x1e\xe1\x44\x51\xac\x91\x85\x65\xf5\x5f\x28\x3c\xe9\x54\xb7\xd5\xee\x70\x0d\xd8\x45\x3f\x92\x72\x46\xe6\x16\xfe\xb7\x52\xb0\x97\xea\xf2\x13\x00\x00\xff\xff\x08\x1f\x1c\x16\x5d\x01\x00\x00" func epochAdminUpdate_epoch_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1420,11 +1480,11 @@ func epochAdminUpdate_epoch_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_epoch_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4f, 0xb9, 0x7, 0xd8, 0xff, 0x10, 0xc6, 0x15, 0x25, 0x69, 0x5, 0x27, 0x32, 0x30, 0xf3, 0x4e, 0x2f, 0x72, 0x33, 0xda, 0xfa, 0x1f, 0x2a, 0xd7, 0x5a, 0x14, 0xb2, 0x90, 0xd4, 0x9f, 0x25, 0x7b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1d, 0xaf, 0x8a, 0x1f, 0xbf, 0xa6, 0x25, 0x31, 0x9e, 0xff, 0x30, 0x9, 0x34, 0xd3, 0x90, 0xa4, 0xfd, 0x12, 0x32, 0x1f, 0x2, 0x95, 0xf1, 0x49, 0xb6, 0x85, 0x28, 0xf9, 0x7f, 0x47, 0x75, 0x8d}} return a, nil } -var _epochAdminUpdate_rewardCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\x41\x6b\xbc\x40\x0c\xc5\xef\x7e\x8a\xb0\x87\x3f\x7a\x91\xff\xa1\xf4\x20\x6d\x17\xd9\x55\x5a\x28\xac\xac\x94\xd2\x63\x3a\xa6\x3a\xa0\x93\x21\x46\xdc\x52\xf6\xbb\x97\x51\x58\xe9\x3b\x86\xf7\x5e\x7e\x89\x1d\x3c\x8b\x42\xd9\xf3\x5c\x78\x36\x1d\x7c\x09\x0f\xf0\xff\x52\x54\xa7\xc3\x73\x7e\x3c\x9e\x8b\xba\x8e\x22\x15\x74\x23\x1a\xb5\xec\x62\x47\xf3\x99\x66\x94\x26\xaf\x3e\x32\x78\x2b\xed\xe5\xfe\x2e\x81\x9f\x08\x00\xc0\x0b\x79\x14\x8a\x47\xdb\x3a\x92\x0c\xf2\x49\xbb\xdc\x18\x9e\x9c\x06\xcb\xe2\x09\xea\x49\x81\xc2\xba\xbc\x19\xac\x83\x47\x58\x03\xe9\x27\x8b\xf0\xfc\xf0\xef\x86\x93\x2e\x86\xa7\x38\x50\x65\x1b\x65\x8a\x61\x5c\x2b\x0b\xb6\x54\xa1\x76\xc9\xad\x3a\x68\xbf\x07\x8f\xce\x9a\x78\x77\xe0\xa9\x6f\xc0\xb1\xc2\x5a\x0d\x4b\x70\x3d\x72\x5c\xe3\xe0\x51\xbb\x5d\xb2\xc1\x6d\x60\xe9\xe4\x1b\x54\x2a\x5f\x4f\xef\xf5\xe4\x7d\xff\xfd\xe2\x8c\x10\x8e\x54\x91\x18\x72\x8a\x2d\xfd\x79\xc7\x4a\x71\x8d\xae\xbf\x01\x00\x00\xff\xff\x9e\x26\x8d\xcb\x56\x01\x00\x00" +var _epochAdminUpdate_rewardCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\xc1\x4a\xc4\x30\x10\x86\xef\x7d\x8a\xa1\x87\xa5\xbd\xf4\x24\x1e\x8a\xba\x54\xb1\x20\x08\x16\x17\x15\x8f\x63\x3a\xb6\x81\x36\x13\xa6\x13\xaa\xc8\xbe\xbb\xb4\xd1\x2e\x3b\xb7\x84\x7c\xff\xff\x65\xec\xe8\x59\x14\xea\x81\xe7\x7b\xcf\xa6\x87\x4f\xe1\x11\xd2\xed\x9c\x26\x89\x0a\xba\x09\x8d\x5a\x76\x99\xa3\xf9\x99\x66\x94\xb6\x6a\xde\x4b\x78\xa9\xed\xd7\xe5\x45\x0e\x3f\x09\x00\x80\x17\xf2\x28\x94\x4d\xb6\x73\x24\x25\x60\xd0\x3e\xbb\x65\x11\x9e\x5f\x71\x08\x94\xc3\xae\x32\x86\x83\xd3\x7f\x62\x99\x81\x14\x68\x69\xaa\xda\xd1\x3a\xb8\x86\x88\x17\x93\xb2\x60\x47\xc5\xc7\x1a\x70\xb5\xdb\x8c\x8a\xf5\xe1\x4d\xb6\x88\x96\x27\xf1\x02\x97\xeb\x43\xa4\x1a\xd4\x3e\xdf\x2a\x96\xd9\xef\xc1\xa3\xb3\x26\x4b\xef\x38\x0c\x2d\x38\x56\x88\xd1\xb0\x82\xf1\xdf\x7f\xa5\xe0\x51\xfb\x34\x4f\xb6\x84\x93\x60\x11\x7c\x8b\x4a\xf5\xe3\xd3\xdb\x21\x78\x3f\x7c\x3f\x38\x23\x84\x13\x35\x24\x86\x9c\x62\x47\x67\x4b\x8a\x16\xc7\xe4\xf8\x1b\x00\x00\xff\xff\x36\x0b\xb8\x8f\x69\x01\x00\x00" func epochAdminUpdate_rewardCdcBytes() ([]byte, error) { return bindataRead( @@ -1440,11 +1500,11 @@ func epochAdminUpdate_rewardCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_reward.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0x9b, 0x4a, 0x66, 0xb5, 0x60, 0xad, 0x5b, 0x16, 0x20, 0x4a, 0x74, 0x57, 0x86, 0x99, 0x3e, 0xa4, 0x6c, 0x68, 0xd7, 0x49, 0x3f, 0xef, 0xe2, 0x6, 0x7, 0xcc, 0x78, 0xf3, 0xe6, 0xfa, 0xd9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0x15, 0x3f, 0xbe, 0xe9, 0xbe, 0xe7, 0xe5, 0x26, 0x20, 0xbc, 0x39, 0x7e, 0xe9, 0x8e, 0x3e, 0x10, 0xb7, 0x38, 0x63, 0x11, 0xfc, 0x1, 0xbc, 0xa9, 0xb7, 0x56, 0xc3, 0x3, 0x42, 0x57, 0x9b}} return a, nil } -var _epochAdminUpdate_staking_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xcf\x4a\xc4\x30\x10\xc6\xef\x79\x8a\x61\x0f\xd2\x5e\x8a\x07\xf1\x50\xd4\x25\xec\x56\xf4\xe4\x62\xd1\xfb\x98\xc6\x36\xd8\xce\x84\x74\x42\x05\xd9\x77\x97\x34\xd8\x05\xe7\x18\xbe\x3f\xbf\x2f\x6e\xf2\x1c\x04\x1e\x47\x5e\x1a\xcf\x66\x80\xcf\xc0\x13\x5c\x7f\x37\xa7\x97\xc3\x93\x3e\x1e\x5f\x9b\xb6\x55\x4a\x02\xd2\x8c\x46\x1c\x53\x41\x76\x69\x05\xbf\x1c\xf5\xef\xce\x2e\x73\x0d\x6f\xcf\x24\xb7\x37\x25\xfc\x28\x00\x00\x1f\xac\xc7\x60\x8b\xd9\xf5\x64\x43\x0d\x3a\xca\xa0\x8d\xe1\x48\xf2\x27\x49\x37\x5a\x01\x9b\x0a\x75\x37\x39\x82\x7b\xc8\xfa\xea\x83\x43\xe0\xe5\xee\x6a\x03\xaa\x56\xc1\x43\x91\xb8\xea\x0b\x67\x85\xe9\xb9\x15\x0e\xd8\xdb\x13\xca\x50\x6e\xd1\xe9\xf6\x7b\xf0\x48\xce\x14\xbb\x03\xc7\xb1\x03\x62\x81\x1c\x0d\xab\x31\xcf\x9c\xb3\x1d\x3c\xca\xb0\x2b\xd5\x96\x70\x01\xab\xa2\xef\x50\xac\x8e\xeb\xf6\x75\xf0\xff\x0f\xc8\xc5\x67\x75\xfe\x0d\x00\x00\xff\xff\x9e\x01\x4d\x3d\x4b\x01\x00\x00" +var _epochAdminUpdate_staking_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xc4\x30\x10\x85\xef\xfd\x15\x43\x0f\x4b\x7b\xc9\x49\x3c\x14\x75\xa9\xa2\xe0\x4d\x58\xdc\xfb\x98\x8e\x6d\xb0\x9d\x09\xe9\x84\x1e\x64\xff\xbb\x24\xd1\x2e\xf8\x6e\x09\x79\xef\x7d\x79\x6e\xf1\x12\x14\x5e\x66\xd9\x9e\xbd\xd8\x09\x3e\x83\x2c\x50\xef\xe7\xba\xaa\x34\x20\xaf\x68\xd5\x09\x37\x4c\xdb\x49\xf1\xcb\xf1\x78\x76\xb4\xad\x1d\xbc\xbf\xb2\xde\xde\xb4\xf0\x5d\x01\x00\xf8\x40\x1e\x03\x35\xab\x1b\x99\x42\x07\x18\x75\x6a\x1e\x25\x04\xd9\xce\x38\x47\x6a\xe1\xd0\x5b\x2b\x91\xf5\xcf\x91\x34\x93\x02\xa5\xb2\x7e\x58\x1c\xc3\x3d\x14\xbb\x59\x55\x02\x8e\x64\x3e\x72\xc0\xdd\x61\x87\x32\xf9\xe1\x43\x93\x58\xbb\x2b\xbb\xc1\x74\x7d\x2a\xae\x37\xd4\xa9\xdd\x2b\x92\x8e\x47\xf0\xc8\xce\x36\xf5\x93\xc4\x79\x00\x16\x85\x12\x0d\xd9\x58\xbe\xfe\x5b\x0a\x1e\x75\xaa\xdb\x6a\x4f\xb8\x02\x9a\xe8\x07\x54\xea\x63\x9e\x24\xef\xf0\x7f\x97\x52\x7c\xa9\x2e\x3f\x01\x00\x00\xff\xff\x86\xa7\x6b\x09\x5f\x01\x00\x00" func epochAdminUpdate_staking_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1460,11 +1520,11 @@ func epochAdminUpdate_staking_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_staking_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x48, 0x2e, 0xa2, 0x66, 0x2c, 0x29, 0xe2, 0xbf, 0xdd, 0x5e, 0x40, 0xcb, 0xb9, 0xb5, 0x61, 0x12, 0x2c, 0x66, 0x4a, 0x87, 0x97, 0xc8, 0xa6, 0x8f, 0x8c, 0x46, 0x9a, 0x63, 0x86, 0xf0, 0x79, 0x95}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0xc5, 0xe9, 0xd8, 0x71, 0xef, 0xa, 0x19, 0xd, 0xc0, 0x54, 0x1c, 0x22, 0x6f, 0x41, 0xf5, 0xc4, 0x93, 0x64, 0x53, 0x59, 0xf5, 0xac, 0xb0, 0x85, 0xa0, 0x42, 0x71, 0x7c, 0x86, 0x6d, 0xba}} return a, nil } -var _epochNodeRegister_dkg_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6f\xe2\x40\x0c\x85\xef\xf9\x15\x16\x87\x55\x90\x96\x68\xcf\x11\x5b\x94\x32\x29\x45\x54\x14\x91\x5c\x7a\x1c\x26\x26\x19\x11\xc6\x23\xc7\x94\x4a\x15\xff\xbd\x82\x34\x34\xa8\xf8\x34\x92\xbf\x79\x7e\xcf\xb6\x7b\x4f\x2c\xf0\x54\xd3\x31\xf5\x64\x2a\xd8\x32\xed\xe1\xdf\x47\xba\x7a\x9d\x3e\x27\x4a\xad\xd3\x2c\x0b\x7a\xd0\x5c\xe5\x7a\x53\x63\x26\x7a\x67\x5d\xd9\xd1\x73\x95\x2e\xf3\x79\xfe\x96\x27\x8f\x2f\xe9\x9d\x5f\x6a\x31\xeb\x50\xb5\x98\x75\x40\x20\xac\x5d\xa3\x8d\x58\x72\xe1\x10\x3e\x83\x00\x00\xc0\x33\x7a\xcd\x18\x36\xb6\x74\xc8\x31\x24\x07\xa9\x12\x63\xe8\xe0\xe4\xca\x9c\xab\x46\x01\x47\x05\xae\x71\x0b\xff\xa1\xa5\xa3\x0d\x31\xd3\x71\xfc\xe7\xb7\xd5\x68\x49\xc5\xe5\x8d\xfc\x10\x9e\xbd\xc4\x77\xf2\xf4\xa0\x4c\x88\x75\x89\x2b\x2d\xd5\xf0\x3a\xf3\x5c\x93\x09\x78\xed\xac\x09\x07\x53\x3a\xd4\x05\x38\x12\x68\xc7\x5e\xec\x00\xe3\x16\x19\x9d\xc1\x36\x71\xd3\xea\x80\xd7\x52\x0d\x86\xb7\xf6\x8b\x5d\xb9\xd2\x2c\xd6\x58\xaf\x9d\xc0\x78\xf4\x73\x87\xa8\x44\x51\x8b\x59\xaf\x1d\xba\xab\xb7\xb8\x0b\xde\xd3\xfb\x5e\x40\xa3\xdf\x31\x1c\x8f\x6e\x95\xff\x82\x50\xdc\x1d\x22\xea\x35\x6e\x42\x5e\xa4\x4e\xc1\xe9\x2b\x00\x00\xff\xff\x27\xf5\x15\x16\x13\x02\x00\x00" +var _epochNodeRegister_dkg_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x51\x6e\xc2\x30\x0c\x86\xdf\x7b\x0a\xab\x0f\x28\x95\x46\x0f\x50\xb1\xa1\x69\xdd\xd0\x84\x34\xa1\xb1\x0b\x98\xd4\xb4\x11\x25\x8e\x5c\x33\x1e\x26\xee\x3e\x41\xa1\x4b\xb7\xf9\x29\x91\x7f\xdb\x9f\x7f\xbb\x7d\x60\x51\x78\x69\xf9\xf8\x1c\xd8\x36\xb0\x15\xde\x43\x3a\xfc\xd3\x24\x52\xbc\x96\x1f\xb8\x69\x69\xad\xb8\x73\xbe\x8e\xa4\xe3\xc4\xa8\xa6\x5c\x2e\x22\x61\xb9\x5c\xa4\x49\xa2\x82\xbe\x43\xab\x8e\xbd\xc9\xe0\x2b\x49\x00\x00\x82\x50\x40\x21\xd3\xb9\xda\x93\x14\x80\x07\x6d\xcc\x5a\x59\xb0\xa6\x0c\x26\x8f\xd6\xf2\xc1\xeb\x20\x3f\x47\x4b\x0a\x9e\x2b\x7a\xa7\x2d\xdc\x43\x5f\x98\x77\x7d\x49\xbe\x61\x11\x3e\xce\x26\x7f\xf9\xf2\x37\xae\x2e\x6f\x92\x07\x73\x66\x2b\xfe\xd9\x2e\x12\x5d\x21\x56\xa8\x4d\x36\xcc\x3e\xc7\x7c\x0e\x01\xbd\xb3\x26\x7d\xe2\x43\x5b\x81\x67\x85\x7e\xec\x05\x0b\x84\xb6\x24\xe4\x2d\xf5\x0e\x5c\xc9\x20\xa0\x36\x69\x36\x5e\xa3\xda\xd5\x2b\x14\x75\xd6\x05\xf4\x0a\xb3\xe9\xcf\x49\xf2\x9a\xb4\x5c\x2e\xa2\xb4\xf1\x03\x5b\x71\x33\x20\xea\xf7\xcb\x88\x0e\x3f\xc9\xcc\xa6\xe3\x09\x77\xa0\x5c\xdc\x0e\x94\x47\x89\xd1\xb2\x97\x96\xa7\xe4\xf4\x1d\x00\x00\xff\xff\x4e\x62\x63\xb2\x26\x02\x00\x00" func epochNodeRegister_dkg_participantCdcBytes() ([]byte, error) { return bindataRead( @@ -1480,11 +1540,11 @@ func epochNodeRegister_dkg_participantCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/node/register_dkg_participant.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x7, 0xc8, 0x9e, 0x29, 0xfb, 0xa9, 0xfe, 0xec, 0xee, 0x49, 0x5a, 0x1c, 0x1a, 0x36, 0x13, 0x5e, 0x8, 0xf1, 0x41, 0xf3, 0x3a, 0xed, 0xf3, 0x7d, 0x78, 0x7, 0x7e, 0x64, 0x34, 0x92, 0x74}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0xdd, 0x3f, 0x15, 0x1e, 0xf, 0x7e, 0x70, 0x58, 0xec, 0x18, 0xf8, 0x58, 0xb3, 0x8e, 0x70, 0xd4, 0x98, 0xda, 0x47, 0xb5, 0xc2, 0x4b, 0x55, 0xa9, 0xa6, 0x77, 0x76, 0x6e, 0xfb, 0xdb, 0x66}} return a, nil } -var _epochNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x56\xdd\x6f\x22\x37\x10\x7f\xe7\xaf\x18\xdd\xc3\x69\x91\xc8\xd2\x56\x55\x55\xad\xe0\x4e\x14\x48\x8a\x88\xf2\x05\x77\x55\x55\xf5\xc1\xb1\x67\x59\x97\xc5\xde\xda\x43\x39\x14\xf1\xbf\x57\x5e\xb3\x5f\xd9\x4d\x9a\x56\x7d\xbb\x3c\x04\x7b\x3e\x7e\x8c\x67\x7e\x33\x83\xdc\x65\xda\x10\x4c\xcd\x31\x23\xdd\x3b\xdf\x2e\x53\x7d\x58\xcc\xd6\xec\x31\xc5\x15\xb1\xad\x54\x1b\x88\x8d\xde\xc1\x37\x5f\x16\xb3\xf9\xcd\x7a\xb1\xfe\x75\x3d\xf9\xe9\x7a\x3e\x99\xcd\x1e\xe6\xab\x55\xdd\x6b\xad\xb7\xa8\x0a\xe3\xcb\xeb\xdb\x5f\xd6\xb7\xcb\xf9\x4d\x87\xe1\x34\xdd\x5b\x42\x73\x3f\x2d\x8c\xef\xa7\x1d\x56\xb3\xe5\x55\xa1\x9f\x2d\xaf\x3a\x0c\xe6\x99\xe6\x49\x61\x32\xbf\xbb\x9d\xfe\x5c\x18\xf5\x86\x43\x58\x27\xd2\x02\x19\xa6\x2c\xe3\x24\xb5\x02\x6e\x90\x11\x5a\x60\xa0\xf0\x00\x4a\x0b\x04\x4b\x66\xcf\x09\xf4\xe3\x1f\xc8\xc9\x3b\xa1\x1a\x80\x8c\x81\x12\xf4\x26\xd2\x39\x70\x9d\xa6\xc8\x49\x9b\x5c\x36\x78\x06\xc5\x38\xd7\x7b\x45\xc0\x94\x00\x26\x84\x13\xdf\x4f\xcf\xa0\x40\x1a\x64\x0e\xbd\x68\x83\x2a\x8b\xca\xee\xed\x19\x54\xd2\x3f\xe3\xba\x9c\x34\x80\x7b\xb5\x17\x06\x3d\x00\x00\x29\x22\x58\x91\x91\x6a\x33\xc8\xef\x46\xa7\x18\xc1\xa7\x85\xa2\x1f\xbd\x40\x21\x1d\xb4\x71\x85\x9d\x08\x61\xd0\xda\xa6\x7d\xa5\x5e\xe2\xb1\xa9\xb2\x9e\x0f\x2d\x39\xdb\xb9\x38\x23\xf8\x74\x29\xbf\xfc\xf0\xbd\x97\x65\xfb\xc7\x54\xf2\x25\x1e\x6d\x04\xbf\x79\x86\x85\x4b\x3c\x5e\x4b\x4b\x73\x45\xe6\xf8\x7b\xaf\x0f\x4f\xbd\xdc\x34\x45\x82\xb8\xe0\xcf\x03\xc6\x11\xbc\x2f\xe9\x14\x7e\x66\xfb\x94\xbc\x5d\x66\x30\x63\x06\x03\xc6\x39\x45\x30\xd9\x53\x32\xf1\x19\x2a\x91\xf2\x20\x31\x8d\xc3\x3a\x1c\x8c\x5d\x26\x29\x7c\xd4\xc6\xe8\xc3\xe8\x39\xf6\x87\xc0\x31\x28\x82\xa1\x25\x6d\xd8\x06\x87\xa5\x6f\xae\xee\x97\xc0\xee\xef\xe3\x47\xc8\x98\x92\x3c\x78\x37\xd5\xfb\x54\x80\xd2\x04\x1e\x17\x0c\xc6\x68\x50\x71\x74\x95\x71\xec\x87\xdc\xff\x5d\xbf\x0a\x6d\x38\x84\x07\xdc\x48\xc7\x7d\xb8\xd1\x02\x4b\x85\x8c\xdb\x21\x36\x7b\x30\x74\xf6\xee\x8c\xa6\x08\xf8\x55\xa3\x95\x7f\xcc\x1d\xa3\xa4\x0f\xe3\x31\x28\x99\xd6\x93\x54\xa4\x5d\x95\x0e\x30\xba\xe8\x42\x64\x42\x38\xd0\x07\xe4\xda\x88\xa0\xe1\x5f\x90\x4d\x8a\x41\x4b\xee\x49\xe7\xfe\xb7\x75\x1d\xfc\x6b\x89\x5e\xf3\xca\xe9\xd7\xb8\xb6\xad\xeb\x4c\xad\xce\x6d\x3b\x72\x75\xb6\x53\xbd\xdb\x49\x22\x14\x11\x8c\x2e\x5a\xfc\x09\x0f\x92\x12\x61\xd8\x21\x28\x78\xee\x3f\x9b\xcc\xe8\x37\x93\x9b\x97\xd3\xb2\xbf\x30\x18\x5d\x54\x49\x1e\x00\xe9\x7f\x51\xb8\x0e\xc8\x54\xaa\xed\xe8\xfd\xd3\xab\x10\x77\x79\xeb\x9d\x3e\xb4\xcb\xf5\x06\x37\xf7\xc5\x1d\x79\x62\x66\x83\xf4\xf6\xd0\x9f\xa5\xa6\x38\x9d\xaa\x17\x15\xec\x7b\xa1\x41\xff\x3f\xf6\xbf\xb5\x7f\xf3\xc1\x5c\x35\x71\xbe\x56\xce\x23\x01\x32\x46\x49\xbd\x91\x8b\xe0\x17\x2a\xd6\x30\x7e\x29\x16\xa7\x0d\x72\xb3\x59\x54\xbc\x35\x94\xa2\x39\x10\x3a\xd6\x42\xb1\x6b\xb4\x69\xed\x08\xbf\x20\x80\x81\x45\xae\x95\x60\xe6\x58\x6e\x89\x58\x1b\x87\x24\x0d\xd8\x0c\xb9\x8c\x25\x3f\x6f\x0a\x5b\x1f\x33\x45\xd4\xa1\xeb\x4d\x37\x18\xbe\x05\x66\xfd\x76\xe8\x9a\x0f\x3b\xc6\x13\xa9\x70\xc2\x39\xc1\xb8\x3e\x72\x83\x8c\x1d\xd1\x44\x79\xe1\x9a\x29\x76\x71\x6c\xf1\x08\x52\xd5\x76\x00\x3c\xb5\x28\x55\x83\x0e\xb7\x78\xb4\x6e\xd4\x04\xa5\x47\xe4\x30\xc2\xf2\x3a\x80\x84\xd9\x64\x92\x6e\xb4\x91\x94\xec\xbc\xb6\x21\x1a\xc0\x01\xe5\x26\x21\xaf\xf2\xe7\x66\x60\xa7\xf6\xf3\xfe\xe4\x9f\x35\x55\xb3\x2f\xff\x41\x11\x6e\x90\xca\x1f\x28\xb9\x3a\xa8\x1a\xb8\xac\xe3\xb3\xde\xac\x3f\xe6\xdc\xf5\x67\xec\xaa\xe5\x4b\xd0\x30\x57\x74\x37\xfa\x09\x30\xb5\xd8\x59\xa9\xef\xbe\xe6\x4a\x89\xed\xe6\x8e\x19\x92\x5c\x66\x4c\x51\xab\x60\xb3\xe5\x55\x4d\xfd\xdf\x0a\xd6\xfc\x8a\xaa\x6e\xb3\xe5\x55\x58\x53\xbc\x50\x37\x7f\x3c\xf5\x4e\x7f\x07\x00\x00\xff\xff\x85\xfa\xf3\xa8\x55\x0b\x00\x00" +var _epochNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x56\x4b\x8f\xdb\x36\x10\xbe\xfb\x57\x0c\xf6\xb0\x90\x01\xad\x8c\x16\x45\x51\x08\x76\x02\xc3\xce\x2e\x0c\x07\xed\x66\x77\x93\x1c\x8a\x1e\x68\x72\x64\xb1\x96\x49\x95\x1c\xd5\x15\x16\xfe\xef\x05\xf5\x66\xe4\x6c\x12\xb4\xb7\xf8\x20\x8b\xf3\xf8\x66\x86\xf3\x92\x3c\xe6\xda\x10\xac\x4c\x99\x93\x9e\x34\xa7\xdb\x4c\x9f\x36\xeb\x27\xb6\xcb\xf0\x91\xd8\x41\xaa\x3d\x24\x46\x1f\xe1\x6a\xcc\xb8\x1a\xea\x3c\xe9\x03\xaa\x81\x68\x75\xf6\x24\x56\x59\x61\x09\xcd\xbb\xd5\x40\xaa\xa3\x79\x92\xeb\xed\xdd\x40\x66\xbd\xbd\xf3\xb8\x6f\x72\xcd\xd3\x01\xbf\x3a\xf7\x12\x85\xda\xcb\x5d\x86\x9e\x3f\x43\xda\xd5\x64\x32\x9b\xc1\x53\x2a\x2d\x90\x61\xca\x32\x4e\x52\x2b\xe0\x06\x19\xa1\x05\x06\x0a\x4f\xa0\xb4\x40\xb0\x64\x0a\x4e\xa0\x77\x7f\x22\xa7\x5a\x09\x55\x08\x32\x01\x4a\xb1\x16\x91\x4e\x81\xeb\x2c\x43\x4e\xda\x54\xb4\xf0\x13\x28\xc6\xb9\x2e\x14\x01\x53\x02\x98\x10\x8e\xfc\x6e\xd5\x80\x02\x69\x90\x15\xf4\x66\x0c\xaa\x2c\x2a\x5b\xd8\x06\x54\xd2\x97\x71\xdd\xbd\x79\xc0\x93\x41\x84\xc1\x04\x00\x40\x8a\x18\x1e\xc9\x48\xb5\x0f\xab\xb3\xd1\x19\xc6\xf0\x7e\xa3\xe8\x97\x9a\xa0\x90\x4e\xda\xb8\xf4\x2e\x85\x30\x68\xad\x2f\xdf\xb3\xb7\x58\xfa\x2c\x5b\x57\xc5\x88\xce\x8e\xce\xcf\x18\xde\xdf\xca\x7f\x7e\xfe\xa9\xa6\xe5\xc5\x2e\x93\x7c\x8b\xa5\x8d\xe1\xf7\xba\x00\xa3\x2d\x96\x6f\xa5\xa5\x37\x8a\x4c\xf9\xc7\x64\x0a\xcf\x93\x4a\x34\x43\x82\xa4\x2d\xa8\x07\x4c\x62\x60\x05\xa5\x81\x97\xd3\xe8\xa3\xa4\x54\x18\x76\x9a\xc2\x75\x57\x7c\xd1\x07\x56\x64\x54\x83\xe4\x06\x73\x66\x30\x60\x9c\x53\x03\xf0\x48\xda\xb0\x3d\x86\xb0\x62\x39\xdb\xc9\x4c\x92\x44\x1b\xc2\x52\x88\x2d\x96\x53\xb8\x5e\xd6\xf7\xdb\xf9\x51\x85\x88\x59\x12\x0d\x9d\x81\x85\xcb\x03\x45\xb6\x06\x8b\x76\xda\x18\x7d\x9a\x7f\x93\x87\xaf\x02\x57\xa5\x31\xcc\x1a\x90\x59\x67\xa0\x62\x4f\x3b\xeb\xee\xf7\xfa\x35\xe4\x4c\x49\x1e\x5c\xad\x74\x91\x09\x50\x9a\xa0\x36\x0a\x06\x13\x34\xa8\x38\xba\xe4\xdf\xbe\xfd\xed\x23\x54\xfa\x57\xd3\xde\xff\xd9\x0c\x1e\x70\x2f\x5d\xcb\xc1\xaf\x5a\x60\xc7\x90\xc9\xc5\x38\xae\xc7\x4d\x1f\x39\x3d\xf7\x8e\xa6\x75\xfc\x45\xa1\xe6\x9a\xef\x19\xa5\x53\x58\x2c\x40\xc9\x6c\x78\xa3\x6d\x86\x55\xa7\x00\xf3\x9b\x4b\x88\x4c\x08\x07\xfa\x80\x5c\x1b\x11\x78\xfa\x6d\x5d\x4b\x11\x8e\xe8\x75\x7d\xbb\xe7\x98\x77\xa1\xd4\x47\xa4\x97\xb4\xaa\x4a\xf7\x8e\x63\xe9\x61\x53\xf4\xef\x63\x39\x72\xf9\xb6\x2b\x7d\x3c\x4a\x22\x14\x31\xcc\x6f\x46\xc5\x16\x9d\x9a\x1a\x0a\xda\x96\xaa\xff\xfd\x0a\x99\xfa\x97\xeb\xa5\xd5\xb2\xbf\x31\x98\xdf\xf4\x97\x1d\x02\xe9\x6f\x48\xe0\x4b\x79\x5b\xb1\xbc\xed\x06\x3e\xe8\xa8\xce\xb6\xb4\xb6\xc0\xf9\xf5\xf3\x8b\xc6\xee\xab\xb9\x70\x7e\x15\x7c\xbd\x4b\xa3\x60\x3d\xeb\xd5\xa0\xb1\x69\xe0\xf9\x19\x02\xa3\x2f\x44\x5d\x3b\xe2\x5b\x38\xf7\xe1\xb7\xa1\x7f\x7e\x04\xfc\xcf\xad\xf3\xb5\x43\xa0\x5a\x20\xfd\x24\xa8\xf6\x5f\xe3\x19\xe4\x8c\xd2\xe1\x34\x68\x83\xd8\xa8\x44\xc3\xe2\x73\xbe\x38\x6e\x75\x7d\x9b\x75\xdc\xc6\x1c\x49\xe1\x4f\x95\x0b\xeb\xab\xdd\x89\xda\x8c\x76\x59\xbd\xc8\x80\x81\x45\xae\x95\x60\xa6\xec\xb6\x59\xa2\x8d\x43\x92\x06\x6c\x8e\x5c\x26\x92\x37\x1b\xcd\x0e\x67\x55\xeb\x75\xe4\x1a\xdb\x4d\x95\x1f\x80\xd9\x7a\x8b\x5d\x1a\x2e\x47\xc6\x53\xa9\x70\xc9\x39\xc1\x02\x9a\xc1\x1e\xe4\xac\x44\x13\x57\xc9\xf3\xaf\xd7\xf9\x70\xc0\x12\xa4\x1a\xec\x29\x78\x1e\xf5\xec\x00\x36\x3a\x60\x69\xdd\x8c\x0a\x3a\x8d\xd8\x61\x44\xdd\x31\x84\x94\xd9\x74\x99\xed\xb5\x91\x94\x1e\x6b\xae\x47\x0a\xe1\x84\x72\x9f\x52\xcd\xaa\xdf\x7d\xc7\xce\xe3\xd0\xfe\xe2\x1f\x34\xf5\x43\xb3\xfa\x16\x8a\xf6\x48\xdd\x87\x55\xc5\x1e\x94\x7f\x97\x43\x1f\x7a\x18\xcb\x27\xd3\xa2\x31\xd1\x8f\x8a\x0e\x3b\xaa\x18\x97\x07\xc4\x19\x30\xb3\x78\x31\x59\x3f\x7e\xaf\xc9\x12\x87\xfd\x3d\x33\x24\xb9\xcc\x99\xa2\x51\xce\xd6\xdb\xbb\x01\xfb\x3f\xe5\xcc\xb7\xd4\xa7\x6e\xbd\xbd\x8b\x06\x8c\x8b\x13\xe6\x3c\xa9\x9f\xe7\x7f\x03\x00\x00\xff\xff\x02\xb2\x4a\x46\x20\x0c\x00\x00" func epochNodeRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -1500,11 +1560,11 @@ func epochNodeRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/node/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x69, 0xe1, 0xcd, 0xd2, 0xf9, 0x1d, 0xb4, 0x43, 0x49, 0x62, 0x8b, 0x4e, 0x14, 0x50, 0x24, 0x67, 0xce, 0x3e, 0x97, 0x76, 0xb7, 0x2b, 0x86, 0xa4, 0x89, 0xec, 0xa9, 0xb4, 0x9b, 0xf6, 0x8a, 0xa5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x68, 0x71, 0x8d, 0x2a, 0x43, 0x15, 0x3f, 0xea, 0xe6, 0xaf, 0x8c, 0x46, 0xaa, 0x5, 0x11, 0x3d, 0x13, 0x3d, 0x30, 0xf1, 0x3b, 0x87, 0xc6, 0xa3, 0x39, 0x96, 0xcf, 0x3d, 0x75, 0x77, 0xbb, 0x90}} return a, nil } -var _epochNodeRegister_qc_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6b\x83\x40\x10\x85\xef\xfe\x8a\x21\x87\x62\xa0\x91\x9e\x25\x6d\xb0\x6a\x69\xa0\xa4\x49\x94\x42\x8f\x9b\xcd\x44\xa5\x66\x67\x3b\x8e\x4d\xa1\xe4\xbf\x97\x68\xb4\x91\x66\x4e\x0b\xf3\xcd\x9b\xf7\x66\x8b\xbd\x25\x16\x78\x2a\xe9\x10\x5b\xd2\x39\xec\x98\xf6\x70\xf7\x1d\x2f\x5f\xc3\xe7\x20\x8a\xd6\x71\x92\x38\x17\xd0\x3c\x4a\xd5\xa6\xc4\x44\xd4\x47\x61\xb2\x8e\x9e\x47\xf1\x22\x9d\xa7\xef\x69\xf0\xf8\x12\x5f\x99\x0a\xcb\xba\x12\xe4\x55\xd8\x0d\xac\xc2\x8e\x72\x84\x95\xa9\x94\x96\x82\x8c\x3b\x86\x1f\xc7\x01\x00\xb0\x8c\x56\x31\xba\x55\x91\x19\x64\x1f\x82\x5a\xf2\x40\x6b\xaa\x8d\xf4\xcc\xa9\x4a\x14\x30\xb4\xc5\x35\xee\xe0\x1e\x5a\xda\xdb\x10\x33\x1d\xa6\x37\xff\xfd\x7a\x0b\xda\x36\x6f\xe4\x07\xf7\x64\xc5\xbf\x12\xea\x02\x4a\x84\x58\x65\xb8\x54\x92\x8f\xfb\x9d\xa7\x9a\xcd\xc0\x2a\x53\x68\x77\x14\x52\x5d\x6e\xc1\x90\x40\xbb\xb6\xb1\x03\x8c\x3b\x64\x34\x1a\xdb\xc0\x55\xab\x03\x56\x49\x3e\x1a\x0f\xed\x7f\xea\x37\x12\x64\x98\x4e\xfe\x7e\xc1\xcb\x50\xfa\x9b\x35\x6d\xd7\xf4\xa6\xfc\x2e\xf1\x85\xd0\x39\x79\xa5\xbe\xd0\x9d\x4e\xce\x92\xb7\x20\xe4\x0f\xef\xef\x35\x8d\x41\xac\x46\xe3\xe8\x1c\x7f\x03\x00\x00\xff\xff\x74\xcf\x74\xd0\x0a\x02\x00\x00" +var _epochNodeRegister_qc_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\xcd\x4e\x84\x40\x0c\xc7\xef\xf3\x14\x0d\x87\xcd\x90\xb8\x3c\x00\x41\x37\x06\x35\xf1\x62\xd4\x35\xde\x67\x87\xf2\x11\xd9\xe9\x58\x8a\x7b\x30\xfb\xee\x86\x0f\x47\x50\x7b\x82\xe9\xbf\xed\xef\xdf\x36\x47\x4f\x2c\x70\xd7\xd2\xe9\xd6\x93\xad\xa1\x64\x3a\x42\x14\xfe\x23\xb5\x50\xdc\xdf\xbc\x98\x43\x8b\x7b\x31\x6f\x8d\xab\x16\xd2\x75\x62\x55\x93\xb7\x7d\x27\xc8\x4f\xf9\x42\x1e\xde\x22\xa5\x84\x8d\xeb\x8c\x95\x86\x9c\x8e\xe1\x53\x29\x00\x00\xcf\xe8\x0d\xa3\xee\x9a\xca\x21\xa7\x60\x7a\xa9\xf5\x5e\x88\x4d\x85\x31\x6c\xae\xad\xa5\xde\x49\x90\x0f\xd1\xa2\x80\xa3\x02\x9f\xb1\x84\x4b\x98\x0a\x93\x6e\x2a\x49\x0e\xc4\x4c\xa7\x6c\xf3\x97\x35\x79\xa0\x62\xfc\x46\xbe\xd2\x03\x61\xfa\x8f\xd3\x85\x68\x86\x78\x34\x52\xc7\x61\xf6\x10\xbb\x1d\x78\xe3\x1a\xab\xa3\x9c\xfa\xb6\x00\x47\x02\xd3\xd8\x11\x0b\x18\x4b\x64\x74\x16\xa7\x3d\xcc\x64\xe0\x8d\xd4\x51\xbc\xb6\xf1\x6e\x5f\x49\x90\x21\xdb\xfe\xdc\x25\xa9\x50\xc2\xda\xc6\xb4\x76\x01\x2a\xfd\x76\xbe\x68\xf4\x6b\x03\x9d\xf9\x40\x9d\x6d\xe7\xd6\x17\x20\x94\xae\xcf\x93\x8c\x89\x95\xbd\xb1\xd7\x59\x9d\xbf\x02\x00\x00\xff\xff\x2b\x73\x77\x18\x24\x02\x00\x00" func epochNodeRegister_qc_voterCdcBytes() ([]byte, error) { return bindataRead( @@ -1520,11 +1580,11 @@ func epochNodeRegister_qc_voterCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/node/register_qc_voter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfe, 0xd1, 0x80, 0x46, 0x4e, 0x2a, 0x21, 0x39, 0x43, 0x6e, 0x28, 0xcd, 0x8c, 0x59, 0x5e, 0xef, 0x96, 0x18, 0xea, 0xa7, 0x24, 0x97, 0x61, 0x3, 0xac, 0x3c, 0xbb, 0x81, 0x38, 0x1d, 0x8, 0xea}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe3, 0x85, 0x38, 0x83, 0x3f, 0x29, 0xc8, 0x67, 0xf8, 0x39, 0x18, 0x90, 0x30, 0x95, 0xd7, 0xfb, 0xcb, 0x28, 0xff, 0x42, 0xeb, 0x66, 0x30, 0x6, 0x8b, 0x32, 0xc, 0x6a, 0x41, 0x3f, 0x8d, 0xc0}} return a, nil } -var _epochScriptsGet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x18\xa1\x97\x9e\x5a\xe2\x94\x9f\x57\x5a\x1c\x92\x9f\x9d\x9a\x57\xac\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x22\xca\x00\x28\x66\x00\x00\x00" +var _epochScriptsGet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\xdd\x32\x2b\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\xe6\xe8\xa5\xa7\x96\x38\xe5\xe7\x95\x16\x87\xe4\x67\xa7\xe6\x15\x6b\x68\x72\xd5\x72\x01\x02\x00\x00\xff\xff\x76\x1b\x5a\x11\x6c\x00\x00\x00" func epochScriptsGet_bonus_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1540,11 +1600,11 @@ func epochScriptsGet_bonus_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_bonus_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2d, 0x14, 0x74, 0x6e, 0xc9, 0x89, 0xa4, 0x34, 0xe3, 0xa3, 0x76, 0x4, 0x44, 0x1d, 0xf1, 0x42, 0xfe, 0xa3, 0x87, 0x9c, 0xb, 0x97, 0x1e, 0x37, 0x84, 0xa1, 0x4d, 0xdf, 0x61, 0xe1, 0xf2, 0x1b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdf, 0xb7, 0x12, 0xf4, 0xd5, 0x3, 0x5c, 0xc, 0xe2, 0x8f, 0xba, 0x1, 0xf6, 0xeb, 0xf5, 0x5e, 0x78, 0xa2, 0xa7, 0x95, 0x60, 0x32, 0x30, 0x36, 0x18, 0xe8, 0xde, 0xb7, 0x4d, 0xbd, 0xd3, 0xa}} return a, nil } -var _epochScriptsGet_config_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x42\x28\xd7\x73\xce\xcf\x4b\xcb\x4c\x57\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x92\x4d\x4f\x2d\x81\x28\xf0\x4d\x2d\x49\x4c\x49\x2c\x49\xd4\xd0\xe4\xaa\x05\x04\x00\x00\xff\xff\x9e\xe7\x40\xf1\x73\x00\x00\x00" +var _epochScriptsGet_config_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x10\x7a\xf4\x9c\xf3\xf3\xd2\x32\xd3\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x90\x64\xd3\x53\x4b\x20\x0a\x7c\x53\x4b\x12\x53\x12\x4b\x12\x35\x34\xb9\x6a\xb9\x00\x01\x00\x00\xff\xff\x49\x98\x62\x2b\x79\x00\x00\x00" func epochScriptsGet_config_metadataCdcBytes() ([]byte, error) { return bindataRead( @@ -1560,11 +1620,11 @@ func epochScriptsGet_config_metadataCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_config_metadata.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xec, 0xb9, 0x3f, 0x2, 0xdb, 0xb7, 0x87, 0x6f, 0x92, 0x1e, 0x7e, 0x5d, 0xec, 0xa3, 0x9, 0x4a, 0xe, 0x1d, 0xa3, 0xaf, 0xd7, 0xc9, 0x3, 0xc9, 0xd3, 0x74, 0xe0, 0xee, 0xa0, 0xff, 0x9f, 0xd9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdc, 0x29, 0xb6, 0xd6, 0xa0, 0xb4, 0x99, 0xd, 0x4b, 0x96, 0x98, 0x11, 0xa1, 0x5d, 0x26, 0xa8, 0xa1, 0xfe, 0x9c, 0xbd, 0x5f, 0xbc, 0xac, 0xc5, 0x8, 0xcc, 0xe7, 0xf2, 0x6d, 0xd2, 0x51, 0xb7}} return a, nil } -var _epochScriptsGet_create_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x31\x0f\x82\x30\x14\x04\xe0\xbd\xbf\xe2\x46\x58\x88\x33\x9b\x29\x18\x9d\x14\x19\x09\x43\xc5\xa2\x24\xa5\x8f\xbc\xbe\x46\x8d\xf1\xbf\x9b\x18\x88\xba\xdd\xf0\x5d\xee\x86\x71\x22\x16\x6c\x1c\xdd\xca\x89\xba\x2b\x7a\xa6\x11\xab\x7b\x79\xd8\xeb\xed\xba\x28\x8e\x65\x5d\xab\x1f\xa4\x5d\x0c\x62\xb9\xd2\x0b\xac\xf4\xa2\xd4\x14\x4f\xe8\xa3\xc7\x68\x06\x9f\x18\x66\xf3\xc8\xd1\xd4\xc2\x83\xbf\xb4\x69\x8e\xe6\xaf\x9f\xcd\xa9\xc5\x53\x29\x00\x60\x2b\x91\xfd\xf7\x49\xd6\xb1\x35\x62\x35\x39\x67\x3b\x21\x9e\x7d\x48\x3c\x9d\xed\xae\x08\x39\x3e\x13\xa9\x52\xaf\x77\x00\x00\x00\xff\xff\xd4\x3f\xa4\x4f\xc5\x00\x00\x00" +var _epochScriptsGet_create_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xb1\xca\x83\x40\x10\x84\xfb\x7b\x8a\xc1\x4a\x1b\x1f\xc0\xd6\xff\x0f\xa4\x0c\x29\xc5\x62\xb9\xac\x89\xb0\xde\xca\xde\x4a\x08\x21\xef\x1e\x08\x62\x4c\x37\x33\x7c\xc3\xcc\x38\xcd\x6a\x8e\x83\xe8\xfd\x7f\xd6\x78\xc3\x60\x3a\xa1\xd8\x7c\x11\x76\x44\x2b\x4b\x76\xb6\x53\xbb\xa3\xb6\xac\x08\x81\x62\xe4\x9c\x4b\x12\xa9\x30\x2c\x09\x13\x8d\xa9\x24\x33\x7a\x34\xe8\xce\x6e\x63\xba\xf6\x55\x83\xee\xa7\x57\xaf\xaa\xc7\x33\x00\x80\xb1\x2f\x96\xbe\x8f\xea\x68\x4c\xce\xad\x8a\x70\x74\xb5\x15\xcf\x65\xd2\x0b\x1f\xff\x72\x83\xcf\x42\x15\x5e\xe1\x1d\x00\x00\xff\xff\xb5\xb7\x78\xee\xcd\x00\x00\x00" func epochScriptsGet_create_clustersCdcBytes() ([]byte, error) { return bindataRead( @@ -1580,11 +1640,11 @@ func epochScriptsGet_create_clustersCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_create_clusters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5f, 0xb5, 0xe4, 0x8c, 0xf5, 0x14, 0xb0, 0x64, 0xce, 0x90, 0x7, 0xc4, 0x7a, 0xdd, 0x38, 0xe8, 0x37, 0xea, 0x59, 0xe3, 0x75, 0x4d, 0x2e, 0xb0, 0x71, 0xc2, 0x5b, 0xf5, 0x92, 0xb5, 0x6d, 0xb1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x53, 0x30, 0xb5, 0x66, 0xa1, 0x17, 0x72, 0xdf, 0xf5, 0x1a, 0x82, 0x7a, 0xa9, 0x3d, 0x91, 0xef, 0xbf, 0x11, 0x15, 0x6e, 0xfd, 0x84, 0x7, 0x85, 0xde, 0xd8, 0x9, 0x31, 0x4d, 0x21, 0x64, 0x35}} return a, nil } -var _epochScriptsGet_current_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd2\xd7\x57\x08\x4a\x2d\x29\x2d\xca\x2b\x56\x28\xc9\x48\x55\x28\xcb\x4c\x2d\x57\xc8\x4f\x03\xb3\x93\x4b\x8b\x8a\x52\xf3\x4a\x14\x92\x72\xf2\x93\xb3\xb9\xb8\x0a\x4a\x93\x14\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\x3d\xf3\x4a\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x72\x52\x4b\x60\xea\x9d\x40\xca\x15\x6c\x15\xd2\x53\x4b\x9c\x91\x44\x34\x34\xc1\x0a\x8b\xc0\x96\xa1\xa8\xd5\x03\x59\xca\x55\x0b\x08\x00\x00\xff\xff\xc5\x9c\xf3\xf5\x8a\x00\x00\x00" +var _epochScriptsGet_current_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd2\xd7\x57\x08\x4a\x2d\x29\x2d\xca\x2b\x56\x28\xc9\x48\x55\x28\xcb\x4c\x2d\x57\xc8\x4f\x03\xb3\x93\x4b\x8b\x8a\x52\xf3\x4a\x14\x92\x72\xf2\x93\xb3\xb9\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\x3d\xf3\x4a\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x72\x52\x4b\x60\xfa\x9c\x40\xda\x14\x6c\x15\xd2\x53\x4b\x9c\x91\x44\x34\x34\xc1\x0a\x8b\xc0\x96\xa2\xa8\xd5\x03\x59\xce\x55\xcb\x05\x08\x00\x00\xff\xff\x31\x43\x70\x8e\x93\x00\x00\x00" func epochScriptsGet_current_viewCdcBytes() ([]byte, error) { return bindataRead( @@ -1600,11 +1660,11 @@ func epochScriptsGet_current_viewCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_current_view.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0xe7, 0xfb, 0x19, 0x77, 0x21, 0xb8, 0x52, 0x37, 0x51, 0xd3, 0x1, 0xe3, 0x74, 0xbc, 0x18, 0x86, 0x2d, 0x47, 0xe3, 0x12, 0xb4, 0x61, 0x2a, 0xbd, 0x26, 0xf9, 0xb3, 0x34, 0x69, 0xa8, 0xe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xca, 0x73, 0xd7, 0x7e, 0xbb, 0xc1, 0xf1, 0x48, 0x38, 0xc7, 0x46, 0x64, 0xbd, 0x3, 0x96, 0xc3, 0x96, 0xa1, 0x6c, 0x17, 0x53, 0x1e, 0x2e, 0x17, 0x5e, 0x74, 0x20, 0x69, 0x5, 0x49, 0x81, 0x46}} return a, nil } -var _epochScriptsGet_epoch_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\xf5\xcc\x2b\x31\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x18\xa1\x97\x5c\x5a\x54\x94\x9a\x57\x02\xe6\x38\xe7\x97\xe6\x95\xa4\x16\x71\xd5\x02\x02\x00\x00\xff\xff\x59\x76\xbe\x5f\x69\x00\x00\x00" +var _epochScriptsGet_epoch_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\x3d\xf3\x4a\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\xe6\xe8\x25\x97\x16\x15\xa5\xe6\x95\x80\x39\xce\xf9\xa5\x79\x25\xa9\x45\x5c\xb5\x80\x00\x00\x00\xff\xff\xc6\x93\x6d\x15\x6e\x00\x00\x00" func epochScriptsGet_epoch_counterCdcBytes() ([]byte, error) { return bindataRead( @@ -1620,11 +1680,11 @@ func epochScriptsGet_epoch_counterCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_epoch_counter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0x29, 0xfd, 0x4d, 0x49, 0x4c, 0x4e, 0x71, 0x61, 0x2b, 0xc3, 0xb5, 0x76, 0xb2, 0x70, 0x62, 0x3d, 0xda, 0xef, 0x24, 0x72, 0x5e, 0x7c, 0xfd, 0xab, 0x4d, 0x55, 0x13, 0x2e, 0xc, 0x79, 0x62}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x83, 0x42, 0x10, 0xa0, 0xad, 0xb7, 0x47, 0xa, 0x61, 0x20, 0xe3, 0xe2, 0xef, 0x4c, 0x70, 0xe6, 0x10, 0xef, 0x4d, 0x43, 0x5e, 0xcb, 0xa9, 0x60, 0x2d, 0x66, 0x4, 0xf2, 0xee, 0x88, 0xd2, 0x26}} return a, nil } -var _epochScriptsGet_epoch_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x05\xa9\x73\xce\x2f\xcd\x2b\x49\x2d\xb2\x52\x08\xf5\xcc\x2b\x31\x33\xd1\xb4\x42\x18\xa1\x07\x26\x7d\x53\x4b\x12\x53\x12\x4b\x12\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x90\x14\xa5\xa7\x96\xa0\xa8\x43\x31\x56\x53\x91\xab\x16\x10\x00\x00\xff\xff\xea\x2c\x4c\x69\x9a\x00\x00\x00" +var _epochScriptsGet_epoch_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x52\x41\x92\xce\xf9\xa5\x79\x25\xa9\x45\x56\x0a\xa1\x9e\x79\x25\x66\x26\x9a\x56\x08\x73\xf4\xc0\xa4\x6f\x6a\x49\x62\x4a\x62\x49\xa2\x42\x35\x97\x82\x82\x82\x42\x51\x6a\x49\x69\x51\x1e\x92\xa2\xf4\xd4\x12\x14\x75\x28\xc6\x6a\x2a\x72\xd5\x02\x02\x00\x00\xff\xff\xc7\x41\x13\xa2\x9f\x00\x00\x00" func epochScriptsGet_epoch_metadataCdcBytes() ([]byte, error) { return bindataRead( @@ -1640,11 +1700,11 @@ func epochScriptsGet_epoch_metadataCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_epoch_metadata.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0xd2, 0xe0, 0xe9, 0xc1, 0x42, 0xed, 0x3a, 0x65, 0x49, 0xb3, 0xf3, 0xb4, 0x9d, 0xf0, 0x50, 0xe, 0xeb, 0x52, 0xd, 0x4c, 0x83, 0xb5, 0x75, 0x83, 0xd3, 0x28, 0xb6, 0x8b, 0x5b, 0x57, 0xd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xf7, 0x5b, 0xef, 0xc4, 0x5f, 0xa4, 0xcf, 0xc5, 0x9e, 0x16, 0x2e, 0xa9, 0x19, 0x76, 0x2b, 0x9f, 0x9, 0xdf, 0x16, 0x2c, 0xf3, 0x59, 0x48, 0x8c, 0x36, 0x26, 0xc, 0x9c, 0xd6, 0xb8, 0x12}} return a, nil } -var _epochScriptsGet_epoch_phaseCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\xf5\xcc\x2b\xb1\x50\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x98\xa0\x97\x5c\x5a\x54\x94\x9a\x57\x02\xe6\x04\x64\x24\x16\xa7\xea\x15\x25\x96\x87\x25\xe6\x94\xa6\x72\xd5\x02\x02\x00\x00\xff\xff\x8a\x47\xc8\x84\x6f\x00\x00\x00" +var _epochScriptsGet_epoch_phaseCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xcc\xb1\x0a\xc2\x40\x0c\x06\xe0\xfd\x9e\xe2\xa7\x53\xbb\x74\x16\x77\x05\x37\x17\xdd\xc3\x91\xd2\x42\x2e\x29\xb9\x84\x0e\xe2\xbb\x0b\x0e\x3a\x7e\xcb\xb7\xb5\xdd\x3c\x70\x15\x3b\x2e\xbb\xd5\x15\x8b\x5b\xc3\xf0\xf3\x50\x0a\xd5\xca\xbd\x8f\x24\x32\x61\x49\x45\xa3\x4d\xc7\xe9\x8c\xc7\x4d\xe3\x84\x57\x01\x00\xe7\x48\xd7\x7f\x33\xd7\x74\x67\x8d\x2f\xee\x2b\x75\x9e\x9d\x8e\x27\x49\x72\x79\x7f\x02\x00\x00\xff\xff\xd2\xb5\x20\xc1\x74\x00\x00\x00" func epochScriptsGet_epoch_phaseCdcBytes() ([]byte, error) { return bindataRead( @@ -1660,11 +1720,11 @@ func epochScriptsGet_epoch_phaseCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_epoch_phase.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0xa7, 0x17, 0x55, 0x9f, 0xf4, 0x58, 0xc4, 0xc6, 0x16, 0x8b, 0xe6, 0xd4, 0x55, 0x28, 0x7f, 0x32, 0x29, 0x66, 0x4e, 0x75, 0x64, 0xec, 0x24, 0x54, 0xf5, 0x6b, 0xf8, 0x1a, 0xfa, 0xbe, 0x74}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8e, 0xc2, 0x92, 0xc6, 0x5c, 0xd7, 0x19, 0x5d, 0xed, 0x1d, 0xe8, 0xfc, 0x5a, 0xfa, 0x53, 0x75, 0x8a, 0x15, 0x52, 0x13, 0xdf, 0x55, 0xae, 0x71, 0x7e, 0xcc, 0xc, 0x81, 0x95, 0xdc, 0xc7, 0xc5}} return a, nil } -var _epochScriptsGet_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x42\x28\xd7\x03\x93\x21\x99\xb9\x99\x79\xe9\xce\xf9\x79\x69\x99\xe9\x0a\xd5\x5c\x0a\x0a\x0a\x0a\x45\xa9\x25\xa5\x45\x79\x48\x0a\xd3\x53\x4b\x30\xd4\x6a\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x36\x40\x3a\x4b\x81\x00\x00\x00" +var _epochScriptsGet_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x10\x7a\xf4\xc0\x64\x48\x66\x6e\x66\x5e\xba\x73\x7e\x5e\x5a\x66\xba\x42\x35\x97\x82\x82\x82\x42\x51\x6a\x49\x69\x51\x1e\x92\xc2\xf4\xd4\x12\x0c\xb5\x1a\x9a\x5c\xb5\x80\x00\x00\x00\xff\xff\xd4\x6d\x92\x2d\x86\x00\x00\x00" func epochScriptsGet_epoch_timing_configCdcBytes() ([]byte, error) { return bindataRead( @@ -1680,11 +1740,11 @@ func epochScriptsGet_epoch_timing_configCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_epoch_timing_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe5, 0xbe, 0x93, 0x2d, 0x1, 0xa9, 0x63, 0x45, 0x26, 0x2b, 0xa4, 0x83, 0x3f, 0xeb, 0x95, 0x61, 0x2f, 0x3d, 0x1a, 0xbe, 0x7e, 0x6a, 0x7d, 0xf7, 0x18, 0x6f, 0x75, 0xf3, 0x7, 0x42, 0x69, 0xdd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0x3f, 0xce, 0x1b, 0x5d, 0x2, 0xa1, 0xda, 0x74, 0x91, 0x1e, 0x7f, 0x30, 0x80, 0x4b, 0xa1, 0xc5, 0xbc, 0x78, 0x58, 0xe2, 0x85, 0xa3, 0x36, 0x62, 0x7a, 0x19, 0xcc, 0x30, 0xc4, 0x9e, 0x8c}} return a, nil } -var _epochScriptsGet_proposed_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\xf5\xcc\x2b\x31\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x18\xa1\x57\x50\x94\x5f\x90\x5f\x9c\x9a\x02\xe6\x39\xe7\x97\xe6\x95\xa4\x16\x69\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x07\x41\x31\x75\x6c\x00\x00\x00" +var _epochScriptsGet_proposed_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\x3d\xf3\x4a\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\xe6\xe8\x15\x14\xe5\x17\xe4\x17\xa7\xa6\x80\x79\xce\xf9\xa5\x79\x25\xa9\x45\x1a\x9a\x5c\xb5\x80\x00\x00\x00\xff\xff\x47\x3a\xad\xbf\x71\x00\x00\x00" func epochScriptsGet_proposed_counterCdcBytes() ([]byte, error) { return bindataRead( @@ -1700,11 +1760,11 @@ func epochScriptsGet_proposed_counterCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_proposed_counter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa0, 0xaf, 0x64, 0x22, 0x79, 0x9f, 0xc5, 0xe9, 0xfa, 0xc, 0xf4, 0x32, 0x2c, 0xa2, 0x14, 0xcd, 0x55, 0xe1, 0xd4, 0x57, 0x3f, 0x7e, 0x2c, 0xc6, 0x89, 0x89, 0xe, 0x1c, 0xf6, 0x9e, 0xd6, 0x2d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0xc4, 0xf8, 0x7c, 0xf, 0x29, 0xc7, 0x76, 0xb4, 0x12, 0x90, 0xa3, 0x44, 0x2d, 0x55, 0x7e, 0x6f, 0x2e, 0x42, 0xac, 0x6e, 0x97, 0xb6, 0x9d, 0xf3, 0x7f, 0x88, 0xf4, 0x20, 0x92, 0xed, 0x42}} return a, nil } -var _epochScriptsGet_randomizeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x2c\x2a\x4a\xac\xb4\x52\x88\x0e\x2e\x29\xca\xcc\x4b\x8f\xd5\x44\x30\x15\xaa\xb9\xb8\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\x86\xea\x15\x25\xe6\xa5\xe4\xe7\x66\x56\xa5\x42\x34\x6b\x72\x71\xd5\x02\x02\x00\x00\xff\xff\xa0\xd2\x7c\x11\x79\x00\x00\x00" +var _epochScriptsGet_randomizeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x12\x8b\x8a\x12\x2b\xad\x14\xa2\x83\x4b\x8a\x32\xf3\xd2\x63\x35\x11\x4c\x85\x6a\x2e\x05\x05\x05\x85\xa2\xd4\x92\xd2\xa2\x3c\x84\xc1\x7a\x45\x89\x79\x29\xf9\xb9\x99\x55\xa9\x10\xbd\x9a\x5c\xb5\x5c\x80\x00\x00\x00\xff\xff\x71\xcc\x71\x38\x7d\x00\x00\x00" func epochScriptsGet_randomizeCdcBytes() ([]byte, error) { return bindataRead( @@ -1720,11 +1780,11 @@ func epochScriptsGet_randomizeCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_randomize.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x15, 0x1a, 0x8d, 0x4d, 0xe8, 0x67, 0x7a, 0x7b, 0xc6, 0xeb, 0x95, 0xae, 0xc7, 0x7a, 0x1a, 0x50, 0xb8, 0x2b, 0xa3, 0xb1, 0x4c, 0xa0, 0x83, 0xea, 0xa9, 0x8e, 0xc1, 0x5b, 0x3d, 0x41, 0x8a, 0x79}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0x12, 0xd9, 0x65, 0x36, 0xf, 0xe4, 0x3b, 0x80, 0x3b, 0xdd, 0x29, 0x6b, 0xfd, 0x50, 0x6a, 0x2e, 0xa5, 0xa1, 0x70, 0x41, 0xc2, 0x79, 0xec, 0xfb, 0x14, 0x51, 0xc, 0xe8, 0xb8, 0xcb, 0xb4}} return a, nil } -var _epochScriptsGet_target_end_time_for_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8f\x4d\x0a\xc2\x30\x10\x85\xf7\x39\xc5\x5b\xb6\x1b\x71\x21\x2e\x04\x05\xe9\x0f\xba\x52\x6c\x3d\x40\xad\x69\x0d\x34\x93\x30\x24\x28\x48\xef\x2e\x4d\x5b\x6c\x16\xe1\xc1\x7c\xdf\x3c\x46\x69\x6b\xd8\x21\xef\xcc\x3b\xb3\xa6\x7e\xa1\x61\xa3\xb1\xfe\x64\xd7\x4b\x72\x3a\xa6\xe9\x2d\x2b\x0a\x21\xac\x7f\xa0\xf1\x04\x5d\x29\x8a\x5c\xc5\xad\x74\x81\xde\xe1\x7e\x26\xb7\xdd\xc4\x73\xc0\x57\x00\x80\x65\x39\xa5\xe1\x2d\x04\x1c\xf6\xff\xae\x55\xed\x99\x25\x8d\x93\xc4\x78\x72\x92\x83\xd4\x87\xbf\x93\x0e\xb5\xa1\x46\xb5\x58\x4a\xf3\xaa\x52\x69\x45\x6d\x12\x80\x28\x0e\x06\x4b\xe7\x99\x26\x69\x00\xcb\xb1\x99\x9e\xa5\xd2\x32\x37\x1c\xc4\xe5\x01\xb1\xe8\x7f\x01\x00\x00\xff\xff\x4c\x97\xdf\x07\x02\x01\x00\x00" +var _epochScriptsGet_target_end_time_for_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8f\x31\x8b\xc3\x30\x0c\x85\x77\xff\x8a\x47\xa6\x78\xb9\xe9\xb8\xe1\xa0\x5d\x42\x03\xdd\xd3\x1f\x60\x5c\x25\x35\xd8\x72\x50\x6c\x3a\x94\xfc\xf7\x12\x27\x69\xa3\x41\x3c\xa1\xf7\xe9\x21\x17\xc6\x28\x09\xad\x8f\xcf\xcb\x18\xed\x03\xbd\xc4\x80\xea\x33\x57\x4a\x19\x6b\x69\x9a\x6a\xe3\xbd\x46\x9f\x19\xc1\x38\xae\x93\x91\x81\x52\xb1\xfc\xe3\x76\xe5\xf4\xf7\xab\x77\x81\x97\x02\x80\x51\x68\x53\x4b\x1d\x00\x9c\x4f\xdf\xc0\x1f\x9b\x45\x88\xd7\x4d\x13\x33\x27\x92\x02\xcd\xa5\x7b\x4a\xb0\x91\x7b\x37\xe0\x08\xed\xa7\x3a\x17\x1c\x0f\x4d\x31\xd4\xba\x10\x42\x29\x0b\x6f\xd0\x62\xec\xd6\x64\xbe\x77\x2e\x50\x1b\xa5\x80\xc7\x07\xb4\x9a\xdf\x01\x00\x00\xff\xff\x48\xb4\xb0\xb3\x07\x01\x00\x00" func epochScriptsGet_target_end_time_for_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1740,11 +1800,11 @@ func epochScriptsGet_target_end_time_for_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_target_end_time_for_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0xdd, 0x7, 0xc, 0x15, 0x68, 0xe9, 0x1, 0x77, 0x80, 0xe2, 0x2f, 0x44, 0xa8, 0xc, 0xf6, 0x4f, 0x60, 0x38, 0xab, 0xbe, 0x6e, 0x2c, 0xc4, 0x97, 0x55, 0x49, 0xad, 0x21, 0x6d, 0xb4, 0xa0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x2c, 0x9a, 0x3f, 0xf9, 0x63, 0x6b, 0x6, 0x62, 0x77, 0x4b, 0xf8, 0x7c, 0xfa, 0xc0, 0x87, 0x40, 0xcb, 0x6c, 0x11, 0x6, 0x75, 0xc3, 0x10, 0x56, 0xdc, 0xf7, 0x79, 0x9, 0xa4, 0x6f, 0xd4}} return a, nil } -var _flowtokenBurn_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x31\x6f\xdb\x30\x10\x85\x77\xfd\x8a\xd7\x0c\x85\x3d\x44\xea\x50\x74\x30\xd2\xa6\x4e\x62\x17\x45\x03\x07\x68\x9c\x66\xa6\xa4\xb3\x45\x54\x22\x85\x23\x55\x39\x08\xf2\xdf\x0b\x92\x12\x23\x0d\xf6\x60\xd9\xe2\xdd\xbb\xef\xbd\x63\x96\x61\x5f\x49\x03\xcb\x42\x19\x51\x58\xa9\x15\xa4\x81\x80\xa5\xa6\xad\x85\x25\x1c\x34\xbb\xbf\x93\x73\x5b\x09\x9b\x64\x19\x0a\xdd\xd5\x25\x72\x42\x67\xa8\x44\xfe\x02\x5b\x11\x44\xd9\x48\x05\x51\x14\xba\x53\x16\x56\x23\xef\x58\xc1\xea\xbf\xa4\x8c\x6b\x3a\xb0\x6e\x5c\xa1\x64\x18\xab\x99\x4a\xfc\x11\x5d\xed\xf4\x12\xcf\x42\xbe\x41\xaa\x23\x44\xe3\x25\xfa\x71\x8a\x40\x2b\x58\x34\x64\x89\x9d\xae\x1b\x36\xa1\x4a\x12\xd9\xb4\x9a\x2d\xb6\x9d\x3a\xca\xbc\xa6\xbd\x1b\x19\xc6\x7d\x3a\x6d\x9f\x76\x3f\x7e\xde\xdc\x6f\xf6\x0f\xbf\x36\xbb\xf5\xdd\xdd\xef\xcd\xe3\x63\x6c\xa8\x75\x3f\x2f\xbe\x7f\x78\x9e\x15\x26\x93\x39\x8b\x80\xb5\xc2\xd3\x56\x9e\xbe\x7c\x5e\xe2\x35\x49\x00\x20\xcb\x82\x11\x30\x19\xdd\x71\x41\x3e\x26\x54\xba\x2e\x4d\x60\xf5\x11\x84\xb7\x82\x09\x39\x39\x93\xce\x2c\x95\x5e\xa1\x26\x8b\x7f\x4e\x62\x85\xef\x33\x13\x69\x48\x28\x16\xf9\x88\x57\xf8\x18\xc1\xd3\xb5\x7b\x23\x8d\x65\x61\x35\x87\xc2\x96\xa9\x15\x4c\x0b\x23\x8f\x8a\x78\x85\x75\x67\xab\x75\xd8\x4a\x64\x1e\xb8\x9f\xa5\xad\x4a\x16\xfd\x88\x38\xae\x68\xd8\xa5\x67\x82\x54\x7e\x5f\xe2\x48\xb1\xd5\x50\x7d\x48\xc3\xe9\xd5\x25\xc2\xa0\x34\xd7\xcc\xba\xbf\x9a\xc0\x79\xfa\x6f\x0b\xa7\xba\x42\x36\x88\x64\x87\xf1\xdc\x1f\x2f\x3f\x44\x55\xf7\x49\xfb\x01\x29\xa6\x1d\x9e\xcb\x19\xf7\x2d\x93\xbb\xa0\x02\x4c\x07\x62\x52\x2e\x73\x3d\xbd\x84\xfe\x3b\xee\xe3\x9c\x83\x50\xf6\xf5\xbc\x81\x59\xba\xe7\x8d\xf8\xb2\xe5\xcc\xc7\xf5\x35\x5a\xa1\x64\xb1\xb8\xb8\xf5\xb7\x58\x69\x8b\xa0\x7f\x9e\x7a\xe4\xbd\x08\x52\x6f\xc1\x32\x9d\xa8\xe8\x2c\xe1\x35\xea\xbb\x9b\xe0\x6f\x0f\xfb\xf4\xa3\x93\xb4\xf0\xb1\xec\xa8\xbf\xf1\xa7\x8b\x77\xa4\xf8\x23\xf4\xa5\xee\xe1\xd1\xcd\x60\xea\xea\xf2\x7d\xa7\x93\xac\x4b\x32\x96\xf5\xcb\xd0\x36\x60\xbd\x25\xf8\x1f\x00\x00\xff\xff\x96\xb2\x1c\x72\x3d\x04\x00\x00" +var _flowtokenBurn_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x3d\x73\x9c\x30\x10\xed\xf9\x15\x2f\x57\x78\xa0\x30\x34\x99\x14\x37\x97\x38\xb6\x67\x5c\xa6\x72\x9c\x5a\xc0\xde\xa1\x09\x48\xcc\x4a\x04\x7b\x3c\xfe\xef\x19\xad\x40\x86\xe2\xae\x38\x40\xda\x7d\x1f\xfb\xb6\xaa\xf0\xdc\x69\x07\xcf\xca\x38\xd5\x78\x6d\x0d\xb4\x83\x82\xa7\x61\xec\x95\x27\x9c\x2d\x87\xcf\xcd\xbd\xef\x94\xcf\xaa\x0a\x8d\x9d\xfa\x16\x35\x61\x72\xd4\xa2\x7e\x83\xef\x08\xaa\x1d\xb4\x81\x6a\x1a\x3b\x19\x0f\x6f\x51\x4f\x6c\xe0\xed\x5f\x32\x2e\x34\x9d\xd9\x0e\xa1\x50\x33\x9c\xb7\x4c\x2d\x5e\xd4\xd4\x07\xbc\x4c\xb4\x90\x34\x68\x73\x81\x1a\x04\x62\x5e\x59\x14\x46\xc5\x6a\x20\x4f\x1c\x70\x03\xd9\x46\x55\x96\xe9\x61\xb4\xec\xf1\x34\x99\x8b\xae\x7b\x7a\x0e\x94\x91\xee\xb0\x3b\x3b\xa4\xca\xde\xce\xbb\xaa\xf5\xfb\x90\x65\x1b\xe4\x3c\x0a\x39\xe2\xf7\x93\x7e\xfd\xf6\xb5\xc0\x7b\x96\x01\x40\x55\x45\xe9\x60\x72\x76\xe2\x86\x64\x30\xe8\x6c\xdf\xba\xa8\x4e\x4c\xc7\x53\xc5\x84\x9a\x82\xad\x60\x8f\x5a\x41\xe8\xc9\xe3\x5f\x80\x38\xe2\xe7\x4e\x62\x19\x67\x92\x8a\x64\xa8\x47\xdc\x24\x85\xe5\x7d\x38\xd1\xce\xb3\xf2\x96\x63\xe1\xc8\x34\x2a\xa6\xdc\xe9\x8b\x21\x3e\x42\x4d\xbe\xcb\x1f\x2c\xb3\x9d\x5f\x54\x3f\x51\x81\x9b\xfb\x18\x4b\xb2\xb0\xd8\xf8\xa3\x7d\xd7\xb2\x9a\x57\xc5\x6b\x46\x4b\x98\x22\x11\xda\x48\x60\xea\x42\xa9\xd5\x51\x7f\x2e\xe3\xed\xe9\x16\x91\xb7\x5c\x8a\xca\x5a\x98\x4f\xa2\x62\x6f\x6e\xa5\x2b\xb6\x86\xc4\xf1\x8f\x3c\x50\x1f\x51\x2d\x20\xd5\x79\xbd\x97\xeb\xe2\x4b\xa2\x0e\xbf\x72\x5e\x80\x52\x42\xf1\x59\xec\xcc\x3d\x32\x85\x35\x56\x60\x3a\x13\x93\x09\x39\xd9\xed\xaa\xca\x7f\xca\xf0\x9a\xcd\x58\xf6\xfd\x8a\xcb\x6b\xc9\x5c\x37\x24\x65\xc5\xce\xcf\xdd\x1d\x46\x65\x74\x93\x1f\x1e\x65\xe7\x8d\xf5\x88\xf8\xd7\xd5\xaf\xba\x0f\x11\xea\x23\x5a\xa7\x57\x6a\x26\x4f\x78\x4f\xf8\x61\x8b\x64\xf3\x58\xa2\x4a\x8e\xca\x46\xc6\xf3\x8b\xe6\x07\xb9\xcd\x3f\x25\xa5\x97\xd8\x57\x86\x87\x48\x77\x8b\xa9\xd3\xed\xe7\x02\x6c\x66\xde\x92\xf3\x6c\xdf\x96\xb6\x45\xd6\x47\x86\xff\x01\x00\x00\xff\xff\xc1\xb3\x5c\x5c\x6b\x04\x00\x00" func flowtokenBurn_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1760,11 +1820,11 @@ func flowtokenBurn_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/burn_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x5e, 0x83, 0x88, 0x8b, 0xe7, 0xad, 0xf0, 0x65, 0x31, 0xb6, 0xb7, 0x44, 0xba, 0x99, 0xb3, 0x4b, 0xf5, 0x4e, 0xdb, 0xcb, 0xb7, 0x0, 0xd8, 0xdb, 0xe4, 0x3d, 0xff, 0x1d, 0x3f, 0x61, 0xf5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0xab, 0x79, 0xb7, 0x68, 0xcb, 0x5f, 0xd1, 0x64, 0x9d, 0xc7, 0xd0, 0x52, 0xf7, 0xf0, 0x89, 0x6f, 0x7d, 0x6e, 0x44, 0xe6, 0xe9, 0x29, 0x7d, 0xed, 0xf4, 0x61, 0x3e, 0x14, 0xb1, 0x1d, 0xe0}} return a, nil } -var _flowtokenCreate_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x4d\x6f\xe3\x36\x10\xbd\xf3\x57\xcc\xa9\xf5\x06\x8e\xdc\xcf\x8b\x91\x16\x70\x37\xc9\x22\x68\x91\x05\x9c\xb4\x3d\x76\xc7\xe4\xc8\x64\x23\x93\x02\x39\xb2\x6a\x04\xf9\xef\x05\x49\x89\x96\x82\xd6\x3e\x59\xe2\x9b\x37\xef\xcd\x3c\x71\x75\x75\x25\xc4\xb3\x36\x01\xd8\xa3\x0d\x28\xd9\x38\x0b\x26\x00\x02\xd3\xa1\x6d\x90\x09\x6a\xe7\xe3\xe3\xe4\x9c\x35\x32\x48\xd7\x35\x0a\x76\x04\x5d\x20\x25\xd8\x41\x20\x86\xae\x05\xb4\x80\x52\xba\xce\x32\xb0\x8b\xc5\x3d\x7a\x05\x8a\x5a\x17\x0c\x93\x02\x76\x2f\x64\x43\x3c\x43\xeb\x58\x93\x07\x4f\x92\xcc\x91\x7c\x25\xc4\x43\x0d\x68\x4f\xce\x12\x04\xb2\x2a\x4c\xc1\xb1\x8f\xff\x3a\xc0\x7d\x66\x24\x0f\xdb\xa1\x6e\x29\x58\x53\x79\x82\xde\x34\x0d\xfc\xdd\x05\x2e\xcd\x59\xbb\x40\x13\xae\x08\xff\x03\xbb\x86\xb3\x13\x8d\x01\x76\x44\x56\x44\x07\x18\xd2\xb1\x27\x69\x5a\x43\x96\x01\xad\x02\x3a\x98\xf8\x07\xe8\x18\xdf\xa4\x22\x63\x95\x91\xc8\x14\x44\xaf\x8d\xd4\x49\xdd\xd8\x30\xba\xd4\x63\xc3\x6a\x18\x70\x8f\xa7\x25\x98\xe8\x0f\x5c\x5d\x5f\x4b\x8d\xc6\x42\x20\x7f\x34\x92\xa0\x47\xcb\x49\xda\xc1\x59\xc3\xce\x43\xaf\x5d\x5c\xc3\x40\x68\xec\x5e\x9c\xe5\x1b\x5e\x82\x61\x90\x68\xa1\x47\x96\x3a\xcb\x4a\x47\x81\x08\x7a\x4d\x9e\x26\x02\x40\xe2\x81\xa0\xf6\xee\x50\x09\xf1\xc4\xd4\x0e\xc8\xbc\xad\xbc\xaa\x00\xbd\x61\x9d\x0b\x8a\x0b\xbf\x16\xe2\xdb\x0a\x9e\x35\xc1\x7d\x67\xf7\x66\xd7\x10\x3c\x27\x84\x74\x96\x3d\xca\x38\x05\x26\x5f\xa3\x24\x08\x3a\xe5\x01\x1b\x4f\xa8\x4e\x31\x17\x8a\xda\xc6\x9d\x48\x41\x70\x07\x4a\xa2\xc4\x77\x99\x0d\xdb\xb6\x31\x12\x23\x1f\xcf\xf9\x06\x96\x49\x75\x25\xbe\xcf\x45\x93\x8d\x0c\xf1\x1a\xc0\x1a\x8f\x04\x38\x2c\x34\x86\x95\x53\x9e\x33\xb1\x27\x64\x52\x02\x00\xd2\x22\x03\x3b\x4f\x0a\x8c\x05\xc3\x21\x3d\xe1\x9e\xb2\x77\x84\xb6\xdb\x35\x26\x68\x52\x25\x4b\xe2\x87\x0a\x6e\x93\x90\x34\xcf\x2f\xc9\xfd\x7d\xd9\x49\x25\x95\xfc\x72\x16\x9f\x52\xaa\x4c\x5d\x93\x9f\xc8\x14\x3f\x56\x31\xb3\x80\x60\xa9\x87\x4d\x7e\xb9\x86\x8f\x49\x59\xa2\x1d\xfd\x58\xe7\x0f\xd8\x34\xa7\x65\x92\xcb\x9a\x2c\xf8\xce\xe6\xce\xd9\xc8\x5f\x65\x35\xb9\xf5\xe4\xa3\xcc\x45\x7b\x62\x36\x76\x0f\xb3\x0f\x22\xae\x7e\xd6\x28\x07\xf8\x5d\xd0\x2b\x71\xb5\x12\xc2\x1c\x5a\xe7\xb9\xec\x3b\xaf\x3b\x11\x7c\xf3\xcf\xfd\xef\x8f\x9f\x1e\x7e\xf9\xed\xee\xf9\xf3\xaf\x77\x8f\x9b\xdb\xdb\xed\xdd\xd3\x53\x29\x68\x5c\x3f\x03\xff\x17\xe8\xdd\xf8\x0a\xef\xe7\xed\x9f\x9b\xed\xed\xc3\xe3\xa7\x11\x2f\x26\xc6\x16\xe3\xf5\xb0\x86\x8d\x52\x9e\x42\xf8\x00\xaf\x22\xb9\x6d\x3d\xb5\xe8\x69\x81\x52\xf2\x1a\x36\x1d\xeb\x61\xbc\x11\x01\xc3\xaf\x21\x9e\x64\xe7\xa7\x38\xa2\x01\x55\x98\x3f\x14\x70\xfc\x55\x7b\xe2\x8f\xd8\xe2\xce\x34\x86\x4f\x37\x5f\xbd\xce\x86\x51\x8d\x63\x7d\xfb\x79\xb1\x4a\x89\x91\xab\x7a\x34\xbf\x2d\x84\xb3\xf6\xc7\x14\xcd\x9b\xeb\xf7\x03\xa8\xf2\x56\x1f\xa9\x2f\x97\xda\xa2\x48\x5d\x9f\x55\x9f\xf5\x45\xa7\x55\xc0\x23\x2d\x6e\xae\x13\xeb\x12\xd8\xad\x61\x35\x24\xf9\xac\xa4\x10\x4e\xa4\xc4\xcb\x27\xd6\xcf\xfc\x5d\x30\x51\x49\x4d\xf2\xe5\xd2\x00\xa6\x73\x2e\xf2\x3a\xdb\x18\xfb\x72\x69\x38\x23\xfc\x6d\xee\x2b\x96\x5d\xea\x36\x6b\xf5\xbf\xf4\xcb\x19\x8c\xd1\xef\x89\x2f\x4e\xa8\xe0\xb3\xb0\x37\xf1\x26\xfe\x0d\x00\x00\xff\xff\xd2\xae\xc8\xb7\x17\x07\x00\x00" +var _flowtokenCreate_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\x4d\x6f\xe3\x36\x10\xbd\xf3\x57\x4c\x73\xd8\xda\x81\x23\xa3\x5f\x17\x23\x5b\x60\x9b\x22\x40\x2f\x3d\xb4\xc1\x5e\xbb\x63\x72\x64\xb2\x2b\x91\x02\x39\xb2\x60\x2c\xf2\xdf\x0b\x7e\x88\x96\x0c\x24\xa7\xfa\x64\x72\x66\xde\xbc\xf7\x66\xa8\xfd\xfd\xbd\x10\x2f\xda\x04\x60\x8f\x36\xa0\x64\xe3\x2c\x98\x00\x08\x4c\xfd\xd0\x21\x13\xb4\xce\xc7\xe3\x22\xce\x1a\x19\xa4\x1b\x3b\x05\x47\x82\x31\x90\x12\xec\x20\x10\xc3\x38\x00\x5a\x40\x29\xdd\x68\x19\xd8\xc5\xe2\x09\xbd\x02\x45\x83\x0b\x86\x49\x01\xbb\xaf\x64\x43\x8c\xa1\x75\xac\xc9\x83\x27\x49\xe6\x4c\xbe\x11\xe2\x8f\x16\xd0\x5e\x9c\x25\x08\x64\x55\x58\x26\xc7\x3e\xfe\xfb\x00\xcf\x19\x91\x3c\xfc\x55\xea\x76\x82\x35\xd5\x13\x4c\xa6\xeb\xe0\xdf\x31\x70\x6d\xce\xda\x05\x5a\x60\xc5\xf4\xcf\x38\x76\x9c\x95\x68\x0c\x70\x24\xb2\x22\x2a\xc0\x90\xc2\x9e\xa4\x19\x0c\x59\x06\xb4\x0a\xa8\x37\xf1\x0f\xd0\x39\xde\xa4\x22\x63\x95\x91\xc8\x14\xc4\xa4\x8d\xd4\x89\xdd\xdc\x30\xaa\xd4\x73\xc3\xa6\x18\x3c\xe1\x65\x07\x26\xea\x03\xd7\xb6\x0f\x52\xa3\xb1\x10\xc8\x9f\x8d\x24\x98\xd0\x72\xa2\xd6\x3b\x6b\xd8\x79\x98\xb4\x8b\x63\x28\x80\xc6\x9e\xc4\x95\xbe\xe1\x1d\x18\x06\x89\x16\x26\x64\xa9\x33\xad\x14\x0a\x44\x30\x69\xf2\xb4\x20\x00\x12\x7b\x82\xd6\xbb\xbe\x11\xe2\x6f\xa6\xa1\x64\xe6\x69\xe5\x51\x05\x98\x0c\xeb\x5c\x50\x55\xf8\x83\x10\x3f\x34\xf0\xa2\x09\x9e\x47\x7b\x32\xc7\x8e\xe0\x25\x65\x48\x67\xd9\xa3\x8c\x2e\x30\xf9\x16\x25\x41\xd0\x69\x1f\xb0\xf3\x84\xea\x12\xf7\x42\xd1\xd0\xb9\x0b\x29\x08\xae\xa7\x44\x4a\xfc\x98\xd1\x70\x18\x3a\x23\x31\xe2\xf1\x1a\xaf\xa0\x2c\xaa\x1b\xf1\x53\x2e\x5a\x4c\xa4\xac\x57\x49\xd6\x78\x26\xc0\x32\xd0\xb8\xac\x9c\xf6\x39\x03\x7b\x42\x26\x25\x00\x20\x0d\x32\xb0\xf3\xa4\xc0\x58\x30\x1c\xd2\x09\x4f\x94\xb5\x23\x0c\xe3\xb1\x33\x41\x93\xaa\xbb\x24\x7e\x6e\xe0\xf7\x44\x24\xf9\xf9\x25\xa9\x7f\xae\x33\x69\xa4\x92\x5f\xae\xe4\xd3\x96\x2a\xd3\xb6\xe4\x17\x34\xc5\x2f\x4d\xdc\x59\x40\xb0\x34\xc1\xa7\x7c\x79\x80\xa7\xc4\x2c\xc1\xce\x7a\xac\xf3\x3d\x76\xdd\x65\x97\xe8\xb2\x26\x0b\x7e\xb4\xb9\x73\x16\xf2\x4f\x1d\x4d\x6e\xbd\x78\x94\xb9\xe8\x44\xcc\xc6\x9e\x60\xf5\x20\xe2\xe8\x57\x8d\xf2\x02\xdf\x2c\x7a\x23\xee\xf7\x42\x98\x7e\x70\x9e\xeb\xbc\xf3\xb8\x13\xc0\xdd\xea\xee\xae\x66\x76\x6e\x5a\x65\xcd\xe7\x9a\x71\x63\x5a\xc9\xbb\xb9\xbd\x13\x62\x21\x66\x33\x7f\x12\x0e\xf0\x49\x29\x4f\x21\x6c\xe1\x9b\x48\x0a\x07\x4f\x03\x7a\xda\xa0\x94\x7c\x00\x1c\x59\x6f\x7e\x73\xde\xbb\xe9\x33\x76\x23\xed\xe0\x09\x07\x3c\x9a\xce\xb0\xa1\xb0\x85\x0f\xc5\xef\x58\x0e\xe5\xd7\x11\x2f\x96\xe9\x63\xf4\xac\x64\xd5\xb6\xdb\x9a\x1c\x7f\x8d\x5c\x60\x36\x27\xe2\xc7\x0f\xdf\x56\x66\x34\xb3\xd5\xaf\xbf\x6e\xf6\x69\x8b\xe4\xbe\x9d\x7d\x98\x63\xdb\xef\xc4\x8a\xc2\x39\xed\xeb\xe3\xc3\xad\x3f\x4d\x1e\xf5\x9f\x34\xd5\x2f\xdd\xa6\xd2\x3d\x5c\x99\x5f\x39\x46\x2b\x9a\xb2\xcb\x4d\xc0\x33\x6d\x1e\x1f\x12\xfa\x0e\xd8\x1d\x60\x5f\x42\x57\x4a\x15\x78\x7b\xa5\x64\xda\xc4\x4a\xe2\x00\x1f\x33\xe2\xff\xa3\x7a\x61\x7c\x69\x23\x71\x68\xa4\x26\xf9\x75\x73\x1b\xac\x62\x56\xad\x47\x5b\x1e\xe6\x3b\x5d\x56\x30\xaf\xe2\xfa\x6f\x65\x79\x7d\x3d\x4f\x6f\xa8\x9c\x4d\x34\x21\x8c\xf4\xae\xde\xf7\x3c\x7d\x5b\x4a\x11\xf2\x1e\xf2\x4a\xc9\x92\xf0\x6e\x15\x41\x3e\xc0\x9b\x76\xd4\xcc\xcc\xe5\x55\xbc\x8a\xff\x02\x00\x00\xff\xff\x9f\xd7\x66\x7a\xe9\x07\x00\x00" func flowtokenCreate_forwarderCdcBytes() ([]byte, error) { return bindataRead( @@ -1780,11 +1840,11 @@ func flowtokenCreate_forwarderCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/create_forwarder.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x42, 0xa4, 0x5, 0xa, 0x19, 0x3f, 0x28, 0x81, 0x28, 0x7d, 0x64, 0x95, 0xda, 0x21, 0x88, 0x7f, 0x1d, 0x27, 0x7d, 0xc3, 0x47, 0x64, 0x7a, 0x7c, 0x3e, 0xd2, 0x6a, 0x1e, 0xd6, 0x4a, 0xb6, 0x3f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x52, 0xf4, 0x68, 0x6a, 0x7f, 0xc6, 0x10, 0x5d, 0xeb, 0x73, 0x26, 0xb1, 0xf5, 0xf9, 0xea, 0x93, 0x64, 0xae, 0xa6, 0x4, 0x9d, 0x63, 0xa4, 0xdc, 0xfa, 0x8f, 0xa1, 0x28, 0x46, 0xf4, 0x43, 0x5a}} return a, nil } -var _flowtokenMint_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\xcd\x6e\xda\x40\x10\xbe\xfb\x29\x46\x1c\x22\x23\x35\x76\x0f\x55\x0f\x88\x24\x72\x1b\xa8\xaa\xa6\x44\x0a\xd0\x9e\x97\xf5\x60\x46\x35\xbb\xd6\xec\x38\x10\xa1\xbc\x7b\xb5\x5e\x1b\x70\x1a\xba\x17\x4b\xeb\x6f\xbe\xbf\x59\xda\x56\x96\x05\xa6\xb5\x29\x68\x55\xe2\xc2\xfe\x41\x03\x6b\xb6\x5b\xf8\xb8\x9f\x2e\x67\xdf\xbe\x7f\x79\x98\x2c\x1e\x7f\x4c\x66\xd9\xfd\xfd\xd3\x64\x3e\x8f\xba\x81\xd2\xee\xfa\xe0\x87\xc7\xdf\x3d\x60\x94\xa6\x29\x2c\x36\xe4\x40\x58\x19\xa7\xb4\x90\x35\xb0\x25\x23\x0e\xc4\x4f\x3a\xa8\x1d\x99\x02\x64\x83\xa0\xb4\xb6\xb5\x11\x90\x8d\x12\x70\x62\x19\x5d\x73\xef\x65\x20\xe8\x64\xf9\x96\x0c\x30\x3a\x5b\xb3\xc6\x13\x3b\x05\xa4\x43\x7e\x26\x7d\x64\x8a\xa2\x33\xd5\x98\x51\x53\x45\x68\x64\x04\x59\x9e\x33\x3a\xf7\x01\xd4\xd6\xe3\x46\xb0\x9c\xd2\xfe\xf3\xa7\x21\x1c\xa2\x08\x00\xa0\x44\x09\xf6\x1a\xbd\x11\x5c\x1d\x93\x26\xcd\x0d\x39\x61\x25\x96\xfb\xe0\x27\xd4\x48\xcf\xc8\x23\xb8\x3a\xf4\xba\x4c\xba\x3f\xaf\x81\xbe\x62\xac\x14\x63\xec\xa8\x30\x1e\x9e\xd5\xb2\xc9\x82\xe5\xa3\x05\x7f\x1c\x96\xeb\xe4\xe4\x03\x6e\x20\x4c\x1c\x01\xfe\x24\x2b\xcb\x6c\x77\xe3\x4b\x1e\x6f\x63\xbf\x9c\x11\xa4\xbe\x51\x55\x60\xba\xee\x70\x0d\x6c\xd8\x23\xbb\xbb\x83\x4a\x19\xd2\xf1\x60\xde\x28\xf9\x62\x8d\x95\xa6\xdc\xc6\x08\x28\x3f\x34\x18\xbe\x67\xb2\x4b\x09\x37\x50\xa0\xb4\x81\x4e\xb5\xf7\x95\x92\x02\xe5\xab\xaa\xd4\x8a\x4a\x92\x97\x38\xad\xea\x55\x49\xfa\x64\xae\x23\x1b\xbe\x1f\xf6\x52\xc1\xb7\xf1\xa5\x40\x4b\xa3\x56\xa5\x4f\x01\x81\x03\xb8\xb3\xcb\xb8\x46\x46\xa3\x71\x10\x66\xdb\x2d\xe1\x1e\x75\x2d\x08\x87\x23\xa1\xdf\xb4\x7f\xbb\xc8\x30\xbe\x7e\xbb\x9d\x44\x33\x2a\xc1\x19\xee\x7e\x36\x90\x58\x95\xa5\xdd\x61\x9e\xb5\x4f\x2c\x3c\xb5\xe1\xbf\x64\xf9\x2f\x55\x97\xe2\x19\x03\x77\xe2\x3f\x4d\x2c\x17\xab\x37\xc3\xff\x69\x3d\xc9\xb1\xb2\x8e\xa4\x5d\xf7\xf8\xfa\x8c\xfc\x6c\x30\x47\x27\x6c\x5f\x5a\xad\x36\xef\xeb\xdf\x00\x00\x00\xff\xff\xac\x61\xd6\x4a\x02\x04\x00\x00" +var _flowtokenMint_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x31\x6f\xdb\x30\x10\x85\x77\xfd\x8a\x83\x86\x40\x06\x1a\x69\x29\x3a\x08\x4e\x02\x77\xc8\xd6\x0e\x6d\x92\x9d\xa2\xce\xf2\xa1\x14\x29\x1c\x4f\x71\x0a\x23\xff\xbd\x20\x29\xc9\x56\x5a\x57\x8b\x61\xf2\xdd\x77\xef\xdd\x91\xfa\xc1\xb1\xc0\xe3\x68\x3b\x6a\x0c\x3e\xb9\x5f\x68\x61\xcf\xae\x87\x7c\x75\x96\x67\xb3\xd2\xb8\xe3\x4a\x35\xff\xcf\xb3\xac\xaa\x2a\x78\x3a\x90\x07\x61\x65\xbd\xd2\x42\xce\x42\x4f\x56\x3c\x48\x90\x78\x18\x3d\xd9\x0e\xe4\x80\xa0\xb4\x76\xa3\x15\x90\x83\x12\xf0\xe2\x18\x7d\x3c\x0f\x3c\x48\x0d\x76\x6d\x4f\x16\x18\xbd\x1b\x59\xe3\x99\x4e\x49\xe9\x91\x5f\x49\x2f\xa4\x2c\xbb\xe8\x5a\x30\x6a\x1a\x08\xad\xd4\xb0\x6b\x5b\x46\xef\x3f\x81\xea\x83\xae\x86\xe7\x47\x7a\xfb\xf2\x79\x03\xa7\x2c\x03\x00\x30\x28\xc9\x5e\xec\x57\xc3\xcd\x12\xa9\x8c\x27\xe4\x85\x95\x38\x5e\x8b\x7f\xa0\x46\x7a\x45\xae\xe1\xe6\xb4\x9a\x54\x39\xdf\xbc\x27\xfc\xc0\x38\x28\xc6\xc2\x53\x67\x83\x5c\x8d\x72\x28\xbe\x3a\x66\x77\x7c\x51\x66\xc4\x0d\xdc\xec\x52\x82\xc5\x51\xf8\x3c\x9a\x7d\x79\xb6\x05\x77\x90\x00\x65\x98\x95\xea\x70\x11\x86\xaf\x6c\x22\x6f\x7b\xcd\xfa\x7d\x11\x96\x55\x43\x35\x15\x57\xfb\x59\x17\x65\x9b\x15\xec\xe1\x01\x06\x65\x49\x17\xf9\xcf\xd8\x31\xcc\xdb\x3a\x89\x33\x8f\x86\x40\x85\xa2\x7c\xf3\x2f\xb3\x73\x78\xb8\x83\x0e\x65\x0a\x76\xde\xc6\xba\x53\xa9\xd5\xa0\x1a\x32\x24\x84\x7e\xc9\x70\x6d\x9c\xf7\x45\x35\x8c\x8d\x21\x7d\x76\x3f\xdf\x5d\x0b\xf0\x6c\x55\x63\x82\x6b\x48\x70\xe0\xd9\x1e\xe3\x1e\x19\xad\xc6\x3c\xd5\x4e\xcb\xc2\x37\xd4\xa3\x20\x9c\x16\x60\x58\x78\x78\xc2\xc8\xb0\xbd\xfd\xb8\x95\x52\x33\x2a\xc1\xef\x78\xfc\x16\x25\x85\x32\xc6\x1d\xb1\xdd\x4d\x2f\x2d\xbd\xb8\xcd\xdf\xb0\xf6\x45\x8d\x46\x02\x31\xb1\xcb\xf0\x13\x23\xf9\x42\x7d\x28\xfe\xcf\x94\xcb\x16\x07\xe7\x49\xa6\xf5\x6e\x6f\x2f\xe0\x17\x85\x2d\x7a\x61\xf7\x7b\xea\x35\xe5\x7d\xff\x13\x00\x00\xff\xff\x4d\x4d\x2d\xec\xfb\x03\x00\x00" func flowtokenMint_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1800,11 +1860,11 @@ func flowtokenMint_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/mint_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xff, 0xc6, 0x66, 0x5d, 0xee, 0x48, 0xe, 0xb9, 0xea, 0x2f, 0xd, 0xc1, 0xe8, 0xcf, 0x70, 0x67, 0x81, 0x67, 0x29, 0x35, 0x1, 0x39, 0x44, 0x65, 0x4b, 0xc, 0x19, 0x1e, 0xcd, 0x6a, 0x57, 0x65}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x85, 0x9a, 0xca, 0x71, 0x4a, 0xfb, 0x5f, 0xd5, 0x56, 0xf3, 0x5f, 0xb8, 0xc1, 0xd8, 0xfe, 0x87, 0xff, 0x71, 0x1d, 0x2f, 0x26, 0x65, 0x2, 0x7, 0xfd, 0x3e, 0xa1, 0xab, 0x25, 0xc9, 0x2d}} return a, nil } -var _flowtokenScriptsGet_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\xcb\x6e\xf2\x30\x14\x84\xf7\x7e\x8a\x11\x8b\xff\x0f\x9b\xa4\x8b\xaa\x0b\xd4\x16\x71\x4b\x55\x15\x81\xc4\xa5\x5d\x3b\xc9\x31\x58\x35\x76\xe4\x4b\xa1\x42\xbc\x7b\x45\x6e\x2d\x5e\x59\xf2\x7c\xe3\x99\x73\x92\x04\x9b\xbd\x74\x70\xb9\x95\xa5\x87\x25\x5e\x38\xf8\x3d\x21\xe3\x8a\xeb\x9c\x20\x24\xa9\x02\x46\x80\x6b\xf0\x3c\x37\x41\xfb\xff\x0e\xa9\x32\xc7\x8d\xf9\x24\x8d\x71\xad\x63\x4c\x1e\x4a\x63\x3d\xd2\xa0\x77\x32\x53\x54\xbf\x0a\x6b\x0e\xb8\x3b\xa5\xdb\xc5\xcb\xeb\x78\x3e\xdb\x2c\xdf\x66\x8b\xd1\x74\xba\x9a\xad\xd7\x1d\xd0\x59\xb5\xe2\xf9\xf2\xe3\x46\xc8\xca\x90\x41\x04\x8d\x03\x97\x3a\x6a\x42\x0c\x30\x2a\x0a\x4b\xce\xf5\x07\xd8\xa6\xf2\xf4\x70\x8f\x33\x63\x00\xa0\xc8\xe3\x8b\x07\xe5\x57\x24\xf0\x84\x1d\xf9\x51\x8d\xb4\x68\xbf\x92\x5d\x4f\xbc\x23\x3f\xe1\x25\xcf\xa4\x92\xfe\x3b\x4a\xca\x90\x29\x99\x27\xa2\x8d\xd4\x94\xfb\x03\x64\xc6\x5a\x73\x7c\xfc\xd7\xa5\x8e\xdf\xaf\x5f\x9d\x6f\x6a\xc7\x0d\x77\x79\x8e\x7e\xd1\xe1\x10\x25\xd7\x32\x8f\x7a\x13\x13\x54\x01\x6d\x3c\x6a\xb7\x76\x86\xb0\x24\xc8\xd2\xf5\xe6\x4d\xb5\x84\xca\xbb\xd7\xaf\x7b\x59\xf2\xc1\xea\xae\x5a\xdc\x6c\x88\x5d\xd8\x4f\x00\x00\x00\xff\xff\x38\x9b\x14\x49\xc5\x01\x00\x00" +var _flowtokenScriptsGet_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\xcb\x4e\xf3\x30\x10\x85\xf7\x7e\x8a\xa3\x2c\xfe\x3f\xd9\x24\x1b\xc4\xa2\x02\xaa\x82\xd4\x07\x40\x85\xfd\xc4\x19\xb7\x23\x1c\x3b\xf2\x85\x22\x55\x7d\x77\x94\xe6\x82\xea\x95\xed\x39\x73\xfc\xf9\x4c\xd3\xe0\x70\x92\x88\xa8\x83\x0c\x09\x81\xa9\x8b\x48\x27\x46\x4b\x96\x9c\x66\x18\x61\xdb\xc1\x1b\x90\x03\x69\xed\xb3\x4b\xff\x23\xf6\xd6\x9f\x0f\xfe\x8b\x1d\x5e\x27\x9d\x52\xd2\x0f\x3e\x24\xec\xb3\x3b\x4a\x6b\x79\xaa\x9a\xe0\x7b\x14\x77\x77\xc5\xaa\x5c\x3d\x66\xd5\x72\x2e\x94\x22\xad\x39\xc6\x92\xac\xad\x60\xb2\x43\x4f\xe2\xca\xf9\xf9\x0d\x76\x5d\x17\x38\xc6\x6a\x83\x8f\xbd\xfc\x3c\x3e\xe0\xa2\x14\x00\x58\x4e\xf8\xa6\x6c\xd3\x3b\x1b\x3c\xe3\xc8\x69\x37\xb5\x2c\xad\xd5\x4d\x36\xae\x5a\xd3\x40\xad\x58\x49\xc2\xb1\x6e\x7d\x08\xfe\xfc\xf4\xef\x72\x47\x5a\xcf\x7f\xbb\xbe\x94\xcd\x90\x5b\x2b\xba\x31\x0b\xe3\x5c\xfa\x33\xdc\x6e\x31\x90\x13\x5d\x16\x6f\x3e\xdb\x0e\xce\x27\x4c\xb6\x4b\x44\x08\x6c\x38\xf0\xb8\x4b\xfe\x96\xf1\xe7\xc8\x5a\x54\x13\x7c\xe0\x94\x83\x5b\xf9\xeb\x79\x00\xea\xaa\x7e\x03\x00\x00\xff\xff\x0c\xc2\x32\xf4\xa4\x01\x00\x00" func flowtokenScriptsGet_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -1820,11 +1880,11 @@ func flowtokenScriptsGet_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/scripts/get_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xeb, 0x3, 0xd9, 0xd3, 0xc5, 0xf4, 0x33, 0xcb, 0xf, 0x2c, 0xdd, 0x7f, 0x8f, 0xa6, 0x25, 0xa7, 0x5e, 0xce, 0x4c, 0x9f, 0xad, 0x8c, 0x3b, 0xa5, 0x1f, 0xbf, 0x1a, 0x3c, 0xe2, 0xdb, 0xa8, 0xda}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9f, 0x43, 0x79, 0xfd, 0x4, 0xd6, 0xad, 0x3a, 0xc5, 0x7, 0x57, 0x5, 0x10, 0xbc, 0x51, 0x96, 0xe8, 0x27, 0x94, 0x74, 0x77, 0x6d, 0x23, 0xa3, 0x76, 0x56, 0xd2, 0xcf, 0x8f, 0x3b, 0xac, 0x5b}} return a, nil } -var _flowtokenScriptsGet_supplyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xce\x3f\x4b\xc4\x40\x10\x05\xf0\x7e\x3e\xc5\x2b\xb5\x71\x2d\xc4\x42\xb0\x10\x92\x34\x8a\x01\x13\xb1\x5e\x93\x5d\xb2\xb8\xff\x98\x9d\xc5\x1c\xc7\x7d\xf7\x83\xdc\x1d\x77\xed\xcc\x8f\xf7\x9e\x52\x18\x17\x57\x50\x26\x76\x59\xc0\x46\xcf\x05\xb2\x18\x48\x12\xed\x51\x6a\xce\x7e\x07\xeb\x8c\x9f\x49\x29\x24\xbb\x3d\x3b\x9f\xfe\xc7\xf4\x67\x22\x4a\xd0\x2c\x98\x52\x14\xd6\x93\x10\xb9\x90\x13\xcb\x0d\xb0\x9c\x02\x1e\xd7\xee\xa3\xff\x19\xfb\xf7\xf6\xf3\xad\x69\xbe\xda\x61\x20\xca\xf5\x17\xb6\x46\x04\xed\xe2\xdd\xfd\x0b\xbe\x3b\xb7\x3e\x3f\x61\x4f\x04\x00\xde\xc8\xa5\xfc\xf5\x9a\xf6\xb0\xad\x1a\xb6\xfb\xc9\xb1\x91\xca\xf1\x4c\xe9\x70\x0c\x00\x00\xff\xff\x89\xd7\x2e\x22\xcf\x00\x00\x00" +var _flowtokenScriptsGet_supplyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8e\x3d\x8a\xc3\x30\x14\x84\xfb\x77\x8a\xc1\x95\xdd\xac\x9a\x65\x8b\x85\xb4\xbe\x40\x9c\x03\x08\x59\xc2\x22\xfa\xe3\xbd\x67\x92\x10\x72\xf7\x80\xf3\x5b\xce\xcc\xc7\xcc\x18\x83\x69\x89\x02\x71\x1c\x9b\x82\xbd\x9d\x05\xba\x78\x68\x55\x9b\x20\x6b\x6b\xe9\x82\x10\x7d\x9a\xc9\x18\xd4\xb0\x85\x63\xaa\xa7\xa9\x1e\x7d\x81\x64\xcb\x0a\x57\x8b\xb2\x75\x4a\x14\x73\xab\xac\x5f\x40\xe0\x9a\xd1\xbd\x75\x47\x64\x9d\xf3\x22\xbd\x4d\x69\x40\x58\x0b\xb2\x8d\xa5\x1f\xfe\x71\x18\xe3\xf9\xef\x17\x57\x22\x00\x48\x5e\x5f\xeb\xbb\x4f\xdd\xcf\x76\x6b\xbf\xf9\x0f\x8e\xbd\xae\x5c\x9e\x28\xdd\xee\x01\x00\x00\xff\xff\x93\xe0\xcd\xc5\xd0\x00\x00\x00" func flowtokenScriptsGet_supplyCdcBytes() ([]byte, error) { return bindataRead( @@ -1840,11 +1900,11 @@ func flowtokenScriptsGet_supplyCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/scripts/get_supply.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x14, 0x97, 0xdd, 0xc6, 0x1f, 0xdd, 0xa3, 0xc6, 0x4b, 0xf9, 0xd5, 0xe8, 0x4b, 0x50, 0xb5, 0x98, 0x62, 0xbb, 0xdf, 0x23, 0xd, 0x65, 0x66, 0x9e, 0xf3, 0x3, 0x62, 0x4b, 0xee, 0xcb, 0x8f, 0x71}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4f, 0x7c, 0x11, 0x45, 0x40, 0xad, 0x8d, 0x3d, 0x20, 0x6, 0x5b, 0x4d, 0x33, 0xbd, 0x92, 0x38, 0xcd, 0x91, 0x1f, 0x33, 0x5d, 0xa2, 0x8c, 0xf9, 0x8e, 0xd7, 0xdf, 0x52, 0x6d, 0xc0, 0x4e, 0x90}} return a, nil } -var _flowtokenSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xdf\x6a\x1b\x3d\x10\xc5\xef\xf7\x29\xce\xd5\x87\x0d\xf9\xbc\xbd\x0e\x49\xc0\x69\x9c\x52\x5a\x52\x48\xdc\xde\x8f\xe5\xd9\x5d\x11\x59\x12\xd2\x28\x8e\x31\x7e\xf7\xa2\xfd\x63\x77\x9b\x1a\x0a\xa1\xba\x30\xd6\xcc\xd1\xd1\x99\x9f\xb6\x28\x4b\x2c\x1b\x1d\x21\x81\x6c\x24\x25\xda\x59\xe8\x08\x82\xf0\xc6\x1b\x12\x46\xe5\x42\xde\x9e\xfa\xf9\x8c\x38\xd0\x7a\x0d\xc2\x0f\x4a\x46\x10\x38\xba\x14\x14\xe7\xba\x34\xac\x03\x48\x29\x97\xac\x64\x6d\xcc\x35\x92\xdc\xd8\x41\x91\x45\x8a\x9c\x37\xa8\x8c\xdb\x2e\xdd\x33\xdb\xa2\xd0\x1b\xef\x82\xe0\x3e\xd9\x5a\xaf\x0c\xb7\x55\x54\xc1\x6d\xf0\xe1\xf5\xfe\xfb\xc3\xa7\xcf\xb7\x5f\x17\xcb\x6f\x5f\x16\x0f\xf3\xbb\xbb\xc7\xc5\xd3\xd3\xf1\xc0\x60\x31\x88\x47\xa2\xe2\xd7\xa9\xf6\x45\x01\x00\x3e\xb0\xa7\xc0\x93\xa8\x6b\xcb\xe1\x12\xf3\x24\xcd\xbc\x0b\x3b\x1d\x34\x79\xe9\x0a\x9d\x64\xb6\x72\x21\xb8\xed\xd5\x7f\xc7\xbb\x66\xed\xd0\x37\x93\x7c\xe5\x25\xca\x28\x2e\x50\xcd\xe5\x71\x9c\xb6\x3d\xc5\xf5\x35\xac\x36\xd8\x1f\x2d\xf3\x2a\x4b\x7c\x0c\x9c\xb9\x12\x2c\x6f\x4f\x0c\x7a\x92\x64\xd7\xf0\x49\xa0\x05\xda\xa2\xb7\x1e\x39\xf4\xa9\x22\xbd\xf0\xe4\xea\xff\x53\x28\xd5\xda\x2e\x36\x5e\x76\xad\xd5\x64\x7a\x01\x71\xe7\xf3\x15\x67\x73\xf9\xb4\x32\x5a\x41\x91\xa7\x95\x36\x5a\x76\xfd\xb3\xf6\x11\xdb\xc7\x74\xd6\xec\xc0\xaf\xde\x45\x8e\xbf\x1b\x65\xe9\x9a\xbd\x8b\x5a\x50\x25\xdb\xe1\x97\x26\xb8\x54\x37\x6d\xf3\x91\x15\xeb\x17\x0e\xd0\x56\x38\x54\xa4\xfe\x38\xa1\xd1\xf6\xf9\x0d\xf5\xfd\xe8\x13\x99\x0d\x4e\x87\x9b\xc9\xc8\xa2\x4d\xd2\xcd\x71\x9a\x7b\x10\x5f\xbc\x91\x0a\x85\x9a\xe5\x2c\xab\x91\xfe\x1f\x83\x5b\x91\x21\xab\x18\x95\x66\xb3\x1e\x51\xbb\xed\x3b\xef\x86\xd6\x1b\xfd\x15\xb3\x5e\xfb\x5e\x64\xc3\xbf\x43\xd1\xfd\x1e\x0a\xfc\x0c\x00\x00\xff\xff\xf5\xa4\x7a\x20\x7b\x04\x00\x00" +var _flowtokenSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x51\xcd\x8e\x1a\x3d\x10\xbc\xfb\x29\x4a\x1c\x56\x20\xed\xc7\xdc\xd1\xf2\x49\xc9\x2a\x79\x80\x64\x95\x7b\x63\x7a\x18\x2b\xc6\xb6\xec\x36\x04\xad\xf6\xdd\x23\xcf\x6f\x86\x85\x28\x87\x5c\xe2\xc3\x68\xdc\x5d\xae\xae\xae\x52\x55\x85\x97\xc6\x24\x48\x24\x97\x48\x8b\xf1\x0e\x26\x81\x20\x7c\x0c\x96\x84\x51\xfb\x58\xae\x53\xbf\xbc\x11\x0f\xda\xef\x41\xf8\x46\xd9\x0a\x22\x27\x9f\xa3\xe6\x52\x97\x86\x4d\x04\x69\xed\xb3\x93\x82\x4d\xa5\x46\x52\x1a\x17\x68\x72\xc8\x89\xcb\x05\xb5\xf5\xe7\x17\xff\x9d\x9d\x52\xe6\x18\x7c\x14\x7c\xce\xee\x60\x76\x96\xdb\x2a\xea\xe8\x8f\x58\xcc\x6a\x8b\x11\x39\xbc\x1d\x50\xc3\x7d\xa1\xd4\xaf\xbb\xbc\x2a\x05\x00\x21\x72\xa0\xc8\xcb\x64\x0e\x8e\xe3\x06\x94\xa5\x59\x7e\x15\x1f\xe9\xc0\x2b\x3c\x7c\xe8\xd4\xae\x06\x78\x39\xa6\x46\x87\x5e\xa7\x0e\xb7\xde\xf9\x18\xfd\xf9\xe9\x61\x9c\xb5\x6e\xb7\xff\x7f\x59\x24\x6c\x50\xf5\xb8\x6a\xdc\xab\x6d\xaf\xb0\xdd\xc2\x19\x8b\xd7\x91\xba\x9c\xaa\xc2\x73\xe4\x62\x30\xc1\xf1\x79\x32\xa3\xb7\x94\xdc\x1e\x21\x0b\x8c\xc0\x38\xf4\xd4\x33\x86\x2b\x75\x89\x4e\xbc\x7c\xfa\x6f\x12\xa7\x5b\xfa\x4f\xc7\x20\x97\x96\x72\xb9\x7a\x84\xf8\xfb\x3a\xd5\x5d\x7d\x21\xef\xac\xd1\xd0\x14\x68\x67\xac\x91\x4b\x9f\x73\x2f\xb5\x4d\xd7\x3b\x7b\x01\xff\x08\x3e\x71\xba\x26\x2a\xd0\x3d\x07\x9f\x8c\xa0\xce\xae\x4b\x46\x9a\xe8\xf3\xa1\x69\x9b\x5f\x58\xb3\x39\x71\x84\x71\xc2\xb1\x26\x3d\xdf\xd4\xb2\xe0\x54\x46\x3d\x53\xc0\x76\x58\x7c\x94\x63\x38\x8d\x2e\x98\x94\x32\xdf\x88\x68\xc6\xd7\xca\xba\xed\xc2\x0c\x77\x65\xc9\xad\xb9\xad\x35\xa9\x79\xcf\x3f\xe8\x7d\x7c\xd7\x21\xd9\xa0\xea\x2c\x9d\x86\x0f\x0e\xfc\x6e\xfe\xdf\x8e\x64\x47\x96\x9c\x66\xd4\x86\xed\x7e\x96\xc7\xc7\xbe\x73\x3f\x8e\xfe\xed\x3f\x14\xc8\xa4\xf8\x0f\x23\xe9\x4d\xb8\x12\x30\xfc\xbd\xa9\xee\xfb\xa6\xf0\x33\x00\x00\xff\xff\x74\xcd\x81\x62\x45\x05\x00\x00" func flowtokenSetup_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -1860,11 +1920,11 @@ func flowtokenSetup_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/setup_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd, 0x7f, 0xe2, 0x5c, 0x57, 0xa8, 0xac, 0xa8, 0xe3, 0xb8, 0xd6, 0x96, 0x91, 0x2e, 0x58, 0x58, 0x1, 0xf3, 0x34, 0xd2, 0x9e, 0xcf, 0x4a, 0xfd, 0xec, 0xea, 0x87, 0xa2, 0x4d, 0xa5, 0xfb, 0xc9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x26, 0x3b, 0x9, 0x19, 0x12, 0xf7, 0x3d, 0x9c, 0x52, 0x2d, 0x2c, 0x62, 0x9c, 0x34, 0xbd, 0x30, 0x11, 0xa0, 0xaa, 0xb7, 0x70, 0xa, 0xf6, 0xc6, 0xed, 0xe4, 0x7d, 0x3f, 0xe5, 0xca, 0x4a, 0xf0}} return a, nil } -var _flowtokenTransfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xc1\x6e\xdb\x3a\x10\x3c\x47\x5f\xb1\x2f\x87\x17\x19\x68\xa4\x1e\x8a\x1e\x8c\x34\xa9\x9b\xc4\x41\xd1\x22\x05\x1c\xa7\x3d\x53\xd2\x4a\x22\x2a\x93\xc2\x72\x15\xd9\x08\xfc\xef\x05\x49\x51\xb1\x1c\xa0\xa9\x2f\x86\xc8\xd9\xd9\xd9\x99\x65\x9a\xc2\xba\x96\x06\x98\x84\x32\x22\x67\xa9\x15\x48\x03\x02\x18\x37\x6d\x23\x18\xa1\xd4\x64\x3f\x0f\xee\xb9\x16\x1c\xa5\x29\xe4\xba\x6b\x0a\xc8\x10\x3a\x83\x05\x64\x3b\x10\x6a\xa7\x15\x02\x6b\x30\xa8\x0a\x60\xfd\x1b\x95\xb1\x9f\x42\x69\xae\x91\x40\xe4\xb9\xee\x94\x2b\xb6\x24\x50\x0b\x03\x19\xa2\x02\x83\x0c\x5d\x6b\xa1\x84\x39\xca\x27\x1c\x8a\x93\x28\x4d\x23\xa7\x11\xa1\x97\x5c\x17\x24\x7a\x10\x1b\x4b\x02\xc2\xb6\xa8\x31\x90\x42\x49\x7a\x03\x15\xf2\xe2\xa5\x49\x1f\x14\x5a\x5c\x2b\x48\x6c\x90\x91\x9c\x24\x7b\x72\x30\x54\x14\xc9\x4d\xab\x89\x61\xd9\xa9\x4a\x66\x0d\xae\x6d\x7f\xcf\xf9\x7e\xbb\x7c\xbc\xbf\xfb\xfa\xe5\xfb\xed\xfa\xc7\xb7\xdb\xfb\xc5\xcd\xcd\xea\xf6\xe1\x61\x2c\x68\x74\x3f\x01\x4f\x40\xd1\x41\x8f\xd8\x0b\x9f\xc3\xe3\x52\x6e\x3f\x7e\x78\x07\xac\xe7\xb0\x28\x0a\x42\x63\x66\xf0\x1c\x45\x00\x00\xc3\xb0\x3f\x45\xd7\x30\x10\x1a\xdd\x51\x8e\x83\x5b\xba\x29\x8c\x17\x3e\x38\x6b\x4f\x05\x21\x64\x28\x55\xe5\xc7\x29\x91\x08\x0b\x47\xd5\x20\xdb\x20\xd8\x71\xcd\xe1\xf3\x64\xb4\xc4\x9d\xfa\x9e\x2d\x61\x2b\x08\x63\x23\x2b\x85\x34\x87\x45\xc7\xf5\xe0\xe2\xa8\x6b\xd0\x76\x87\x0c\x02\x08\x4b\x24\x54\x39\x06\x27\x7d\xe5\x99\x01\xc3\x9a\xb0\x80\x27\x47\x1e\xea\xac\x10\x77\xb2\xc2\x12\x3e\x0d\xe0\x24\xd3\x44\xba\xbf\xf8\x7f\x34\xd0\x4b\xba\x8c\xad\x8f\x73\x48\x2d\x95\xa8\x30\x2d\xc3\xbd\xbb\x9e\x45\x27\x27\x27\x57\x57\xd0\x0a\x25\xf3\xf8\xf4\xda\x25\xac\x34\x83\xa7\x7b\x2d\x4d\xf7\x5e\x99\xab\xfe\xef\x74\x36\x19\xe7\x57\xd8\xa9\xc1\x51\x17\xe1\xdb\x03\x19\x6c\xca\x64\xb4\x16\x2e\xce\xc7\xf1\x92\xb0\xa5\x63\xd8\xfe\x7f\xe6\x6a\xf7\xbe\x39\x6e\x31\xef\x18\xff\xcd\x5a\xc2\x5c\xb6\x12\x15\x9f\x19\x58\xf9\xc7\x41\x13\x67\x87\x17\x43\xde\xdc\x83\x17\x10\xb3\x9e\x8d\x48\xfb\x4b\x2a\xe4\x6b\xd1\x8a\x4c\x36\x92\x77\x71\xda\x76\x59\x23\xf3\x17\x83\x03\xfd\x51\x55\x08\xea\x79\xba\x40\x01\xbd\xbf\x8c\xdf\x0e\xc5\x43\xff\x3e\x9d\x33\xf3\x28\xa0\x1b\x6c\xb5\x91\xec\xb0\xc1\x5a\x15\xd2\x92\xea\x15\x07\x1d\x3b\x74\xe0\x4e\x52\x78\xb2\x61\xc1\x2e\xce\xa7\x31\x86\x88\xf6\xd1\x9f\x00\x00\x00\xff\xff\xab\x4d\x31\xba\x15\x05\x00\x00" +var _flowtokenTransfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x41\x4f\xdc\x3c\x10\x3d\x93\x5f\xf1\xbe\x3d\x40\x22\x7d\x24\x97\x4f\xdf\x61\x45\xa1\xb4\x15\xbd\x23\x4a\xcf\x4e\x32\xd9\x58\xcd\xda\xd1\x78\xc2\x82\x10\xff\xbd\xb2\x1d\x87\x0d\x48\xa5\x7b\x59\x65\x3c\xf3\xde\x9b\xf7\xec\xaa\xc2\x5d\xaf\x1d\x84\x95\x71\xaa\x11\x6d\x0d\xb4\x83\x82\xd0\x7e\x1c\x94\x10\x3a\xcb\xfe\xf3\xe8\x5c\x7a\x25\x59\x55\xa1\xb1\xd3\xd0\xa2\x26\x4c\x8e\x5a\xd4\x4f\x50\xe6\xc9\x1a\x82\x58\x38\x32\x2d\xc4\xfe\x22\xe3\xfc\xa7\x32\x56\x7a\x62\xa8\xa6\xb1\x93\x09\xc3\x1e\x04\xbd\x72\xa8\x89\x0c\x1c\x09\xa6\xd1\xb7\x32\x35\xa4\x1f\x68\x1e\x2e\xb3\xaa\xca\x82\x46\xc2\x41\x4b\xdf\xb2\x3a\x40\xed\x3d\x08\x94\xa7\xe8\x29\x81\xa2\x63\xbb\xc7\x8e\xe4\xfa\x95\xe4\x90\x14\xfa\xbe\x51\xb1\xda\x93\x10\x07\x49\xbe\x72\xb4\x54\x96\xe9\xfd\x68\x59\x70\x33\x99\x9d\xae\x07\xba\xf3\xfc\x11\x73\xb3\xaa\x6d\x96\xce\xc1\x1e\x56\x5d\xe9\x7b\x93\x65\x47\xc8\x79\x94\xbb\xc5\x8f\x1b\xfd\xf8\xff\x7f\xff\x42\xec\x16\xd7\x6d\xcb\xe4\x5c\x81\xe7\x2c\x03\x80\x79\xc5\x7b\x35\x0d\x02\x26\x67\x27\x6e\x68\xf6\xc8\x0e\xad\x8b\x72\x67\x3f\x7d\x55\x31\xa1\x26\x6d\x76\x71\x89\x8e\x98\xa9\x0d\x50\x03\x89\xb7\x5f\x02\xd6\x16\x9f\x57\xe2\xcb\x50\x8d\x9c\x23\xd3\xa8\x98\x72\xa7\x77\x86\x78\x0b\x35\x49\x9f\x7f\xb1\xcc\xf6\x70\xaf\x86\x89\x0a\x9c\xce\x56\x2e\x32\x67\xa9\xdf\x49\xa0\xc0\xd4\x11\x93\x69\x28\xd9\x19\x81\xce\x1c\x9c\x58\xa6\x16\x0f\x81\x2b\xcd\x79\x5d\xa1\x72\x4b\x1d\x3e\xcd\xcd\xa5\x6f\x55\x3b\x2a\xeb\xc0\x7b\x11\x34\xac\x15\xff\x9c\x63\x2f\x70\xba\x38\x1c\xd7\xb8\xcc\xbd\xf1\x5b\x54\x33\x48\xd5\xa5\xf3\x70\x5c\x64\x27\x27\x27\x57\x57\x18\x95\xd1\x4d\xbe\xf9\x1a\xee\x82\xb1\x82\xc8\xf5\x5e\xbf\x3d\x44\xf9\x61\xfa\x9f\x4d\xb1\xda\x39\xc9\x48\x29\x84\xcc\x3f\xde\xda\xd1\xd0\x95\x4b\x1c\xb8\x38\x5f\x3c\x28\xd3\x7d\x5e\x2e\x48\xfc\x2f\xc2\xec\x4b\x24\xa7\x47\x6a\x26\xa1\xbf\xf3\x9f\xa9\xd1\xa3\x26\x23\x67\x0e\xb7\xf1\x19\xf1\xca\xfe\xf9\x6d\x71\x4c\xe0\xe8\xad\xe4\x62\x8b\xa5\xd3\xff\xca\x46\x8d\xaa\xd6\x83\x16\x4d\x2e\x85\x73\xfa\xbc\x4e\x26\x71\xbc\x5c\xe6\xd5\x38\xd5\x83\x6e\x5e\x13\x48\x67\x1f\x87\x10\xfb\xfe\xbc\x4d\x30\xef\x4d\x20\xdf\x68\xb4\x4e\x4b\xe8\x4d\x56\x9a\x94\x8e\x36\xef\x30\xf8\xad\x23\x47\x6e\x94\x6d\x04\x9b\x2f\xd4\xc5\xf9\x3a\xb6\x14\xc9\x4b\xf6\x3b\x00\x00\xff\xff\xf7\x2a\x53\x84\x2f\x05\x00\x00" func flowtokenTransfer_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1880,11 +1940,11 @@ func flowtokenTransfer_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/transfer_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x85, 0xa4, 0x80, 0x7b, 0x7, 0xe0, 0x6e, 0xa7, 0xff, 0xc4, 0x37, 0xf4, 0x66, 0x87, 0x8a, 0x20, 0x73, 0x73, 0xdb, 0x44, 0x60, 0xdd, 0xfe, 0x20, 0x1c, 0x22, 0x9c, 0x38, 0x17, 0x58, 0x62, 0xa3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0x6a, 0x53, 0x3a, 0xa2, 0xb8, 0xe7, 0x84, 0x84, 0xde, 0x4c, 0x92, 0xe8, 0xa8, 0x54, 0x49, 0xdf, 0xa7, 0x97, 0xe, 0x83, 0x7a, 0x21, 0xad, 0xba, 0x30, 0x65, 0xe5, 0x5b, 0xf4, 0x7d, 0x8b}} return a, nil } -var _idtablestakingAdminAdd_approved_and_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x4d\x6b\xdb\x40\x10\x3d\x4b\xbf\x62\x92\x43\x2b\xd3\x62\x37\x57\x53\x37\xb8\x55\x0a\x02\x13\x4a\xec\x4b\x09\x39\xac\x77\x47\xd6\xb6\xeb\x5d\xb1\x3b\x8e\x12\x82\xff\x7b\x99\x95\xe4\x8f\x44\xa1\x7b\x11\x48\x6f\xde\x3c\xbd\x79\xb3\x7a\x5b\x3b\x4f\xf0\xd3\xb8\xa6\xc8\x57\x62\x6d\x70\x49\xe2\xaf\xb6\x1b\x28\xbd\xdb\xc2\x97\xa7\x22\xbf\xb9\x5d\x15\xab\xdf\xab\xf9\xf7\xc5\xcd\x3c\xcf\xef\x6e\x96\xcb\x34\x9d\x4c\x26\xb0\xaa\x74\x00\xf2\xc2\x06\x21\x49\x3b\x0b\x42\xa9\x00\xd6\x29\x84\x22\x0f\x40\x0e\xa8\x42\x30\x3a\x10\xb8\x12\x44\x5d\x7b\xf7\x88\x2a\x02\x02\x68\x1b\x39\x18\x51\xe4\x40\xdc\x78\x0c\xf1\x55\x41\x20\x4c\x70\xa0\xad\xf4\x28\x02\x06\x08\xc6\x11\x18\xbd\xd5\x14\x22\x62\xfd\x1c\xeb\xec\x6e\xbb\x46\xcf\xdc\x2d\x65\x53\x39\x10\x1e\x59\x06\x2a\x06\xb6\x74\x25\x08\xfb\xcc\x28\xae\x61\x0d\x5a\x1d\x54\x08\xe3\x51\xa8\x67\xc0\x27\x56\xa9\xed\x99\x9e\xcf\x40\x95\x6e\x3b\x9e\xfe\x65\xa3\x8d\x01\xeb\x08\x3c\x3e\xa2\x27\xc8\xb4\xc2\x6d\xed\x08\x2d\x8d\xd2\xf4\x04\x99\x59\x6c\xe6\xdd\x5f\x17\x79\x98\xc2\xfd\x92\xbc\xb6\x9b\x87\x11\xbc\xa4\x29\x00\xc0\x64\x02\x0b\x27\x85\x81\x47\xe1\x35\xb7\x84\xd2\x79\x10\xe0\xb1\x44\x8f\x56\x62\x6f\x62\x91\x43\x9c\x0d\xcc\xd5\x56\x5b\x70\xeb\x3f\x28\x29\x52\x18\x24\x10\xfc\xf2\x0e\xcb\x29\x7c\x78\x3b\xc7\x71\x2c\x69\xfb\xd5\x1e\x6b\xe1\x31\x13\x52\xd2\x14\xe6\x3b\xaa\xe6\x52\xba\x9d\x25\x56\x04\xdd\x61\x83\x9d\xf7\xae\x19\x12\x22\x5e\xf7\xe7\x13\xd0\x94\xe3\x5e\x04\xcc\x80\xe9\xc7\x2d\xc7\xd7\x77\x15\x7d\xcb\x38\x60\xd3\x81\xe4\x8d\xbb\x67\x84\x2d\xc9\x79\xb1\xc1\x5f\x82\xaa\xd1\xa1\x21\x9f\xeb\x6b\xa8\x85\xd5\x32\xbb\xfc\xe1\x76\x46\xc5\x89\x74\xba\xcf\x54\x87\x2e\xce\x51\xdf\x65\xcb\xb1\x6f\xed\xc0\x27\x94\x3b\x42\x78\x49\x93\x84\x7d\x8c\x29\xe0\xc6\xc7\xa1\xc1\x6c\x48\xe0\x06\xa9\xc7\x2c\x74\xa0\x6c\x94\x26\x49\x32\x24\xc8\x38\xa1\x8e\xc9\xe7\x55\xb8\x1c\xa5\x5d\x37\x4e\xf5\x22\x86\xfa\xdd\x26\x77\xce\xe0\xf2\x00\xcb\x62\xe9\x64\xc2\x01\x8f\x99\xb6\xd8\xf4\xeb\x06\x4d\xa5\x65\x05\xca\x61\xb0\x1f\x69\x38\xd7\x9d\x8e\x28\xa3\x23\xb2\xea\xb0\x66\x11\x22\x85\x55\x5a\x09\xc2\x96\xb7\xdd\xb9\x08\x3b\xd9\x41\xde\xbf\xab\x96\x80\xe3\x8a\x42\x56\x20\x9d\xf7\x18\x6a\x67\x15\x7b\x1d\x8b\xdb\x35\x4c\x12\xc6\x58\x6c\x6e\x9d\xc2\x22\x67\x2d\xe7\x6b\x11\xdd\x4f\x74\x39\xe4\xfe\xfd\xa1\xee\x01\x2e\x66\x60\xb5\xe9\x72\x9a\x24\x89\x74\x96\xb4\xdd\x21\x57\xef\xd9\x98\x68\x2a\x77\x2e\x6c\xe9\x86\x2d\xbd\xed\xbe\x66\x07\xde\x68\x69\x72\x1c\xc5\x7d\x4f\x30\xf6\xce\xe0\x03\xcc\xe0\xdd\x6f\x17\xf0\x09\xae\x62\xf9\x7f\x94\xcf\x80\x7c\xd4\xb9\xef\xe6\x17\x90\x4e\x07\xd2\x06\xa3\xdf\xb0\x9d\xe5\x4b\xc6\x1d\xfd\x88\xf6\x9f\x8c\x3a\x0c\xef\xdd\x38\xbc\x0a\xe5\x80\xaa\x3e\x40\x4b\x76\x0a\x9b\xb3\x8b\x35\x49\xde\xd0\x9d\x44\xef\xe8\xc2\xf4\xc4\x91\x7e\x9b\xf6\xff\x02\x00\x00\xff\xff\x1a\xe3\xcc\x49\x46\x06\x00\x00" +var _idtablestakingAdminAdd_approved_and_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x4d\x6f\xe3\x36\x10\x3d\x4b\xbf\x62\xd6\x87\xad\x8c\x16\x32\xf6\x6a\xd4\x5d\xa4\x35\x0a\x08\x08\x16\xc5\x7a\xd1\x4b\x90\x03\x4d\x8e\x2c\xb6\x34\x47\x20\x47\x51\x82\xc0\xff\xbd\x18\x4a\xf2\x47\xa2\xa0\xbc\x18\x30\xdf\xbc\x79\x7c\xf3\x46\xf6\xd8\x52\x60\xf8\xd3\x51\x5f\x6d\x7f\xa8\xbd\xc3\x1d\xab\x7f\xad\x3f\x40\x1d\xe8\x08\x8b\xf7\x17\x8b\x3c\x5f\xad\x56\xf0\xa3\xb1\x11\x38\x28\x1f\x95\x66\x4b\x1e\x94\x31\x11\x3c\x19\x84\x6a\x1b\x81\x09\xb8\x41\x70\x36\x32\x50\x0d\xaa\x6d\x03\x3d\xa1\x49\x80\x08\xd6\x27\x0e\x41\x54\x5b\x60\x61\x2f\x21\xfd\x55\x31\x28\x17\x09\xac\xd7\x01\x55\xc4\x08\xd1\x11\x83\xb3\x47\xcb\x31\x21\xf6\x2f\xa9\xce\x77\xc7\x3d\x06\xe1\x1e\x28\xfb\x86\x40\x05\x14\x19\x68\x04\x38\xd0\xd5\xa0\xfc\x8b\xa0\xa4\x46\x34\x58\x73\x56\xa1\x5c\x40\x65\x5e\x00\x9f\x45\xa5\xf5\x37\x7a\x7e\x01\x6e\xec\xd0\xf1\xfa\x95\xbd\x75\x0e\x3c\x31\x04\x7c\xc2\xc0\x50\x58\x83\xc7\x96\x18\x3d\x2f\xf3\xfc\x0a\x59\x78\xec\xef\xc6\x57\x57\xdb\xb8\x86\x87\x1d\x07\xeb\x0f\x8f\x4b\x78\xcd\x73\x00\x80\xd5\x0a\xee\x49\x2b\x07\x4f\x2a\x58\x69\x09\x35\x05\x50\x10\xb0\xc6\x80\x5e\xe3\x64\x62\xb5\x85\x34\x00\xb8\x33\x47\xeb\x81\xf6\xff\xa0\xe6\x44\xe1\x90\x41\xc9\x9f\xdf\xb1\x5e\xc3\xe7\xf7\xc3\x2a\x53\xc9\xd0\xaf\x0d\xd8\xaa\x80\x85\xd2\x9a\xd7\xa0\x3a\x6e\x8a\xdf\x29\x04\xea\xff\x56\xae\xc3\x25\x7c\xbe\xd3\x9a\x3a\xcf\x22\x10\xc6\x23\x7e\x27\xcc\x9c\x2e\xf5\x56\x8e\x9c\x88\xae\x2e\x27\x4d\xb0\x01\xe9\x56\x46\xa6\xa0\x0e\x58\x0e\x5c\xbf\x7e\x28\xf4\xb7\x42\x52\xb7\x9e\x89\x63\x39\xfe\x26\xd8\x6e\xa0\xfb\x4b\x71\xb3\x3c\x37\x96\xf3\xf5\x2b\xb4\xca\x5b\x5d\x2c\xfe\xa0\xce\x99\x34\xa8\x51\xff\x8d\xfa\x38\x66\x3c\xe9\x5c\x0c\x1c\xa7\xc1\x25\x7c\x46\xdd\x31\xc2\x6b\x9e\x65\x62\x6f\x0a\x87\x34\xbe\xcc\x12\x36\x73\x02\x0f\xc8\x13\xe6\xde\x46\x2e\x96\x79\x96\x65\x73\x82\x1c\x29\x73\x59\x08\xd9\x90\xc5\x32\x1f\xbb\x49\xd8\xef\x53\xd6\x3f\x6c\xf2\x9d\x1c\xee\xce\xb0\x22\x95\xae\x56\x92\xfb\x14\x75\x8f\xfd\xb4\x85\xd0\x37\x56\x37\x60\x08\xa3\xff\x89\xe7\xe3\x3e\xea\x48\x32\x46\x22\x6f\xce\xdb\x97\x20\x5a\x79\x63\x8d\x62\x1c\x78\x87\x55\x4c\xb0\xab\xd5\x94\xb5\xfc\x32\x10\x48\x8a\x51\xe9\x06\x34\x85\x80\xb1\x25\x6f\xc4\xeb\x54\x3c\x6c\x67\x96\x09\xc6\x63\xff\x8d\x0c\x56\x5b\xd1\x72\xbb\x2d\xc9\xfd\xcc\xd6\x73\xee\x3f\x9c\xeb\x1e\xe1\xd3\x06\xbc\x75\x63\x5e\xb3\x2c\xd3\xe4\xd9\xfa\x0e\xa5\xfa\x24\xc6\x24\x53\xa5\x73\xe5\x6b\x9a\xb7\xf4\xdb\x78\x5b\x24\xd8\x76\x7d\xd1\x95\xac\xcd\x2e\x23\x79\x98\x88\xca\x40\x0e\x1f\x61\x03\x1f\xde\x7d\x82\x9f\xe1\x4b\x2a\xff\x9f\x17\x6c\x80\x43\xd2\x7b\x1a\xe7\x18\x91\xaf\x07\x33\x04\x64\xda\xb8\xce\xcb\x37\x88\x2e\xbe\xa4\x31\x5c\x8d\x3c\xce\xef\x61\x19\xdf\x84\x73\x46\xd5\x14\xa4\x9d\x38\x86\xfd\xcd\x77\x37\xcb\xde\xd1\x5d\x45\xf0\xe2\xc2\xfa\xca\x91\x69\xab\x4e\xff\x05\x00\x00\xff\xff\xa0\x1b\xa9\x9a\x63\x06\x00\x00" func idtablestakingAdminAdd_approved_and_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -1900,11 +1960,11 @@ func idtablestakingAdminAdd_approved_and_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/add_approved_and_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc8, 0xe6, 0xc4, 0xf4, 0x46, 0x26, 0x18, 0x6a, 0x26, 0xbd, 0xc5, 0x90, 0x12, 0x8e, 0x38, 0x0, 0x49, 0xa, 0x72, 0x2a, 0x83, 0x1e, 0xd0, 0x97, 0xae, 0x62, 0x87, 0x70, 0x94, 0xe8, 0x16, 0x1b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0x5c, 0xc3, 0x2d, 0xdd, 0xd4, 0x3f, 0x6, 0xb, 0x28, 0xd4, 0x83, 0xa8, 0x94, 0xed, 0x21, 0x85, 0x73, 0x1f, 0x61, 0xf0, 0x2f, 0xba, 0x6c, 0xed, 0xc4, 0x1f, 0xbe, 0x46, 0xf9, 0x40, 0x80}} return a, nil } -var _idtablestakingAdminAdd_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x93\x5f\x6b\xdb\x3c\x14\xc6\xaf\xed\x4f\xf1\xd0\x8b\xf7\x75\x60\xd8\xbb\x0e\xeb\x8a\x37\x77\x60\x28\x65\x34\xb9\x19\xa5\x17\x8a\x75\x1c\x6b\x73\x24\x23\x1d\xc7\x29\x25\xdf\x7d\x48\xb6\x43\xd2\x65\x4c\x37\x06\xe9\xfc\x79\xce\x73\x7e\x56\xbb\xce\x58\xc6\xb7\xd6\x0c\x65\xb1\x16\x9b\x96\x56\x2c\x7e\x29\xbd\x45\x6d\xcd\x0e\x1f\x0f\x65\x71\xff\xb8\x2e\xd7\x3f\xd6\xf9\x97\x87\xfb\xbc\x28\x9e\xee\x57\xab\x38\xce\x32\xac\x1b\xe5\xc0\x56\x68\x27\x2a\x56\x46\x43\x48\xe9\xa0\x8d\x24\x94\x85\x03\x1b\x70\x43\x68\x95\x63\x98\x1a\xa2\xeb\xac\xd9\x93\x0c\x01\x0e\x4a\xfb\x12\x3e\xa0\x2c\xc0\xbe\x6d\x0a\x7f\x53\xd6\x10\xfa\xd5\x27\xf8\x37\x9f\xa2\xe4\x29\x49\xb4\x96\x84\x7c\x05\x1d\x7c\x51\xa5\x2f\xf2\x3f\x80\x1b\xe5\x42\xd5\x33\x4d\x83\x6a\x5b\x68\xc3\xb0\xb4\x27\xcb\x48\x94\xa4\x5d\x67\x98\x34\x2f\xe2\xf8\x2c\x32\x51\xd2\x2d\xf1\xbc\x62\xab\xf4\xf6\x65\x81\xb7\x38\x06\x80\x2c\xc3\x83\xa9\x44\x8b\xbd\xb0\xca\xb7\x41\x6d\x2c\x04\x2c\xd5\x64\x49\x57\x34\xcf\x59\x16\x08\xee\x21\x97\x3b\xa5\x61\x36\x3f\xa9\xe2\x50\xa2\x25\x86\xf0\x97\x4f\x54\x2f\xf1\xdf\x9f\x4e\xa7\x21\x65\xec\xd7\x59\xea\x84\xa5\x44\x54\x15\x2f\x91\xf7\xdc\xe4\x55\x65\x7a\xcd\x5e\x11\xa6\x93\x65\xd8\x18\x6b\xcd\x70\x4d\x88\x78\xdf\xdf\x1f\x47\x6d\x9d\xce\x22\x70\x0b\x5f\x3e\x1d\x6b\x7c\xfa\xab\xa2\xcf\x89\x47\x60\x79\x85\x8d\x74\xfa\x86\xb0\x15\x1b\x2b\xb6\xf4\x5d\x70\xb3\x38\x35\xf4\xe7\xee\x0e\x9d\xd0\xaa\x4a\x6e\xbe\x9a\xbe\x95\x61\x0d\x93\xee\x0b\xd5\x6e\x02\x2e\xe8\xbb\x19\x6b\x1c\x47\x3b\xe8\x40\x55\xcf\x84\xb7\x38\x8a\xbc\x8f\x9e\x03\x0f\xd7\xed\x35\x51\x5b\xe2\x7c\xa2\xec\x41\x39\x4e\xfe\xad\xc6\xe3\x34\x93\x39\x92\x1a\xa0\x77\xe3\x44\x37\x8b\x38\x8e\xa2\x2c\xf3\x60\x07\x2a\x35\x0d\x33\xdf\x18\x1a\x55\x35\x90\x86\x9c\xfe\x9f\x2f\xc9\x8c\xa3\xc8\x43\xa2\x69\x78\x0c\x72\x3d\xa9\x4a\xba\x30\x44\x34\x4d\xf0\x7c\x7a\x7d\xc1\x2d\xd8\xf6\x14\x47\xd1\x71\xea\xe7\x88\xc7\x55\xce\xff\x4c\x90\x36\xed\xb7\xd7\x9e\x6b\x53\x8f\xbd\x82\x6f\x5a\x9e\x4b\x73\xd7\xb7\x9e\xba\x77\xf6\x4c\x4a\x66\xbf\x8f\xbf\x03\x00\x00\xff\xff\xb8\xd4\x12\x39\x0a\x04\x00\x00" +var _idtablestakingAdminAdd_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x93\x51\x6b\xdb\x30\x14\x85\x9f\xed\x5f\x71\xc8\x43\xe7\xc0\xb0\xdf\xc3\xba\x92\x2d\x0c\x02\x65\x8c\xa5\xec\xa5\xf4\x41\xb1\xae\x63\x6d\x8e\x64\xa4\xeb\xb8\xa5\xe4\xbf\x8f\x2b\xdb\x21\x69\x33\xa6\x17\x83\x75\xef\xb9\x47\x47\x9f\xcc\xbe\x75\x9e\xf1\xad\x71\xfd\x7a\xf5\xa0\xb6\x0d\x6d\x58\xfd\x31\x76\x87\xca\xbb\x3d\x66\xef\x37\x66\x69\x5a\x14\x78\xa8\x4d\x00\x7b\x65\x83\x2a\xd9\x38\x0b\xa5\x75\x80\x75\x9a\xb0\x5e\x05\xb0\x03\xd7\x84\xc6\x04\x86\xab\xa0\xda\xd6\xbb\x03\xe9\x58\x10\x60\xac\x48\x48\xc1\x7a\x05\x16\xed\x1c\xf2\x67\x5d\x41\xd9\x17\x69\x90\x3d\x69\x31\xfa\xd4\xa4\x1a\x4f\x4a\xbf\x80\x9e\x45\xd4\xd8\x8b\xfe\x8f\xe0\xda\x84\xa8\x7a\xe6\xa9\x37\x4d\x03\xeb\x18\x9e\x0e\xe4\x19\x99\xd1\xb4\x6f\x1d\x93\xe5\x79\x9a\x9e\x55\x66\x46\x87\x05\x1e\x37\xec\x8d\xdd\x3d\xcd\xf1\x9a\xa6\x00\x50\x14\xb8\x77\xa5\x6a\x70\x50\xde\xc8\x18\x54\xce\x43\xc1\x53\x45\x9e\x6c\x49\xd3\x39\xd7\x2b\xc4\x88\xb0\xd4\x7b\x63\xe1\xb6\xbf\xa9\xe4\x28\xd1\x10\x43\xc9\xcf\x9f\x54\x2d\x70\xf3\x3e\xce\x3c\xb6\x0c\xf3\x5a\x4f\xad\xf2\x94\xa9\xb2\xe4\x05\x54\xc7\x75\xf6\xc5\x79\xef\xfa\x5f\xaa\xe9\x68\x8e\x9b\x65\x59\xba\xce\xb2\x18\xc4\xb8\x8a\x02\xdb\x58\x73\xcd\x97\x7a\x6b\x47\x56\xa0\xa6\xca\x27\x4f\xb8\x85\x4c\xcb\x03\x3b\xaf\x76\x94\x0f\x5a\x9f\xfe\x69\xf4\x73\x26\x5c\x2c\xae\x00\x93\x8f\xdf\x58\xb6\x19\xe4\x7e\x28\xae\xe7\xa7\xc1\xb2\xee\xee\xd0\x2a\x6b\xca\x6c\xf6\xd5\x75\x8d\x8e\xb7\x33\xfa\xbf\x70\x1f\x46\x0a\xa3\xcf\xd9\xa0\x71\x1c\x52\xa2\x67\x2a\x3b\x26\xbc\xa6\x49\x22\xf1\x0a\x1e\xc2\xdc\xed\x35\x53\x3b\xe2\xe5\x08\xdf\xbd\x09\x9c\xfd\xdf\x8d\x50\x36\x01\x3b\x00\x1c\x5f\xc2\x18\xd0\x6c\x9e\xa6\x49\x52\x14\xc2\x7b\x84\xd5\x52\x3f\x61\x8f\xbe\x36\x65\x0d\xed\x28\xd8\x0f\x7c\x09\x6c\x9a\x24\xc2\x8e\xa5\xfe\x7b\xb4\x2b\x00\x1b\x1d\xe2\x21\x92\xf1\x04\x8f\xa7\xdd\x27\xdc\x82\x7d\x47\x69\x92\x1c\xc7\x79\x81\x78\xb8\xd2\xe9\x29\x45\x6b\xe3\x3d\x77\x56\x70\x77\xd5\x30\x2b\xe6\x66\xf5\xb9\xb5\x70\xfd\xf6\xf3\xf0\x26\x9e\xd1\xc9\x94\xf7\xf1\x6f\x00\x00\x00\xff\xff\xba\x60\xb0\x0b\x1f\x04\x00\x00" func idtablestakingAdminAdd_approved_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -1920,11 +1980,11 @@ func idtablestakingAdminAdd_approved_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/add_approved_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0x5a, 0x78, 0xd4, 0xfa, 0x43, 0xe2, 0xe0, 0xa8, 0x42, 0xec, 0xc0, 0x92, 0x56, 0x5c, 0xb, 0x55, 0x70, 0x39, 0xaf, 0xd9, 0x49, 0x71, 0xb2, 0x12, 0x22, 0x40, 0xeb, 0x88, 0x3a, 0x49, 0x8c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc4, 0x2e, 0x15, 0x46, 0x80, 0xde, 0x18, 0xca, 0x68, 0xd8, 0xcb, 0xd0, 0xd8, 0xb5, 0x9c, 0x1c, 0x8d, 0x79, 0x2a, 0xfc, 0xfd, 0x40, 0x7c, 0xeb, 0xd1, 0x65, 0x4f, 0xc8, 0x1, 0xa7, 0x95, 0x8}} return a, nil } -var _idtablestakingAdminCapability_end_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x53\xc1\x6a\xe3\x48\x10\xbd\xeb\x2b\x8a\x1c\x16\x05\x8c\xb4\xbb\x2c\x7b\x10\x99\x04\x27\x76\xc0\x10\x86\x10\x7b\x0e\x73\x0a\xa5\x56\xc9\xea\x89\xd4\x2d\xba\x4b\x91\x4d\xc8\xbf\x0f\xdd\x2d\x29\x56\x26\x99\xe9\x8b\xb1\xaa\xde\xab\x57\x55\xaf\x64\xd3\x6a\xc3\x70\x5b\xeb\x7e\xb3\xda\x61\x5e\xd3\x96\xf1\x49\xaa\x3d\x94\x46\x37\xf0\xf7\x61\xb3\x5a\x7f\xdd\x6d\x76\xdf\x77\xcb\xeb\xbb\xf5\x72\xb5\x7a\x58\x6f\xb7\x51\x94\xa6\xb0\xab\xa4\x05\x36\xa8\x2c\x0a\x96\x5a\x41\x67\xc9\x02\x82\x1d\xf0\x58\x34\x52\x81\xc0\x16\x73\x59\x4b\x3e\x3a\x0c\x6b\x68\xf1\x08\x86\x7a\x34\x85\x5d\x00\xa9\x02\xb8\xa2\x37\x4c\xe7\xa9\x16\x80\xaa\x98\x82\xd4\x6a\x51\x25\x51\x9a\x3a\x86\x0d\x83\xd0\x4d\x2e\x15\x59\x1f\x6c\xf1\xf8\x78\x4a\xf7\x38\x51\xa9\x02\x1a\xfd\x4c\x8f\xac\x9f\x48\xcd\x94\x5a\x47\xd4\x57\x52\x54\x0e\x61\x3f\x56\x10\xe2\x86\xca\xce\xa5\x28\x5d\x90\x85\x5e\x72\x05\x52\xd9\xae\x2c\xa5\x90\xa4\xd8\xc3\xc8\xd1\x8d\xe5\x2c\x0c\xf5\x72\xe2\x9e\x48\x41\xde\x89\x27\x62\x3b\x68\xc7\xda\x6a\xb0\xc4\x6e\x50\x8a\xfa\x90\xec\x9a\xd0\x1d\x43\xa9\x8d\xd7\xa2\xe8\xc0\xa1\xeb\x28\x3a\x91\x1d\xcb\xc2\x66\xf0\xb2\x65\x23\xd5\x3e\x83\x6b\xad\xeb\xd7\x85\x63\xb9\xf7\xf0\x0c\xbe\xdd\xca\xc3\xff\xff\x9d\xc3\x4b\x14\x01\x00\xa4\x29\xdc\x69\x81\x35\x3c\xa3\x91\x6e\xb3\xbe\x00\xba\x9e\xc8\x90\x12\xe4\xd6\xe1\xea\x6d\x56\xe0\x37\x0f\x4b\xbf\x32\x9d\xff\x20\xc1\x9e\xa2\x26\x0e\x7b\x7c\xa0\x32\x83\xbf\x7e\x75\x49\xe2\x21\xa1\x5e\x6b\xa8\x45\x43\x31\x0a\xc1\x19\x2c\x3b\xae\x96\x42\xe8\x4e\xb1\x53\x04\xc3\x9b\x18\x6f\x26\x63\xc0\x17\x70\x90\x44\xe8\xf6\x78\xf1\xf6\xf9\x32\x76\x0e\xcc\x3e\xb0\x66\x32\xfc\xfa\xda\x5b\xd6\x06\xf7\x74\x8f\x5c\x9d\x4f\x55\xdc\xbb\xba\x82\x16\x95\x14\xf1\xd9\x8d\xee\xea\x02\x94\x66\xd8\x13\x9f\x38\x32\x58\x1c\x83\x48\xb0\x81\xe8\xec\x3c\x9a\x68\xd2\x14\x72\x6d\x8c\xee\x3f\x9a\x1a\xbe\x1f\x96\x7b\x96\xea\x32\x19\x27\xe6\x1a\x9b\xb7\x9a\x04\xba\x8b\x4f\x27\x79\x19\xff\xb9\x89\x41\xd2\x4c\xd0\xec\xe8\xce\x02\xc7\x6b\x68\x84\x0e\x24\x3a\xa6\xd1\x15\xe3\x12\x86\xa3\xd9\x76\x4d\x83\xc6\xed\x60\x26\x3d\x11\x58\x8b\xae\x46\xa6\x87\x90\x77\xa2\x6b\x9e\xd8\xe2\x71\x4c\x29\xb5\x59\x3b\xd7\xde\xb8\x79\x92\xc9\xe0\x9f\xc5\xbb\x32\xd9\xbb\xff\x27\xb3\x9e\xb3\x5a\x62\x4f\xb5\x73\xf7\x11\xfc\x1d\x4f\x4e\xff\x1d\x6a\xd9\xb6\x46\x3f\x53\x71\x27\x2d\xbb\x83\xf9\x34\x97\x54\x31\xda\x28\x9c\x7c\xfc\x69\xaa\xbb\x6b\x2f\xc4\x3a\x0d\xf3\x16\xff\x1d\x67\xfd\x1a\xfd\x0c\x00\x00\xff\xff\xb9\xf6\xf9\xe9\x4b\x05\x00\x00" +var _idtablestakingAdminCapability_end_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x4d\x6b\xe4\x48\x0c\xbd\xfb\x57\x88\x3e\x04\x37\x34\x36\xbb\x2c\x7b\x30\xd9\x84\x6c\x67\x02\x81\x1c\x42\x3a\x33\xd7\x20\x97\xe5\x76\x4d\xec\x92\xa9\x92\xe3\x34\x21\xff\x7d\x28\x97\xed\xb4\xf3\x31\x53\x97\xa6\x91\xde\xd3\x93\xf4\x64\xdd\xb4\x6c\x05\xae\x6a\xee\xaf\x2f\xef\x31\xaf\x69\x27\xf8\xa8\xcd\x1e\x4a\xcb\x0d\xac\x3e\x06\x56\x51\x94\xa6\x70\x5f\x69\x07\x62\xd1\x38\x54\xa2\xd9\x40\xe7\xc8\x01\x82\x1b\xd1\x58\x34\xda\x80\xc2\x16\x73\x5d\x6b\x39\x78\x8c\x30\xb4\x78\x00\x4b\x3d\xda\xc2\x6d\x80\x4c\x01\x52\xd1\x1b\xa6\x1b\xa8\x36\x80\xa6\x98\x83\xd4\xb2\xaa\x92\x28\x4d\x3d\xc3\xb5\x80\xe2\x26\xd7\x86\xdc\x10\x6c\xf1\xf0\x70\x4c\xf7\x30\x53\x99\x02\x1a\x7e\xa2\x07\xe1\x47\x32\x0b\xa5\xce\x13\xf5\x95\x56\x95\x47\xb8\xcf\x15\x84\xb8\xa5\xb2\xf3\x29\x86\x0b\x72\xd0\x6b\xa9\x40\x1b\xd7\x95\xa5\x56\x9a\x8c\x0c\x30\xf2\x74\x53\x39\x07\x63\xbd\x9c\xa4\x27\x32\x90\x77\xea\x91\xc4\x8d\xda\xb1\x76\x0c\x8e\xc4\x0f\xca\x50\x1f\x92\x7d\x13\xdc\x09\x94\x6c\x07\x2d\x86\x9e\x25\x74\x1d\x45\x47\xb2\x63\x5d\xb8\x0c\x5e\x76\x62\xb5\xd9\x67\xf0\x3f\x73\xfd\xba\xf1\x2c\xb7\x03\x3c\x83\xef\x57\xfa\xf9\xdf\x7f\xd6\xf0\x12\x45\x00\x00\x69\x0a\x37\xac\xb0\x86\x27\xb4\xda\xaf\x6f\x28\x80\xbe\x27\xb2\x64\x14\xf9\x75\xf8\x7a\xd7\x97\x30\xac\x17\x2e\x86\x95\x71\xfe\x93\x94\x0c\x14\x35\x49\xd8\xe3\x1d\x95\x19\x9c\x7c\xb4\x42\x32\x40\x42\xbd\xd6\x52\x8b\x96\x62\x54\x4a\x32\xc0\x4e\xaa\x78\xcb\xed\xe1\x07\xd6\x1d\xad\xe1\xe4\x42\x29\xee\x8c\x78\x79\x30\xbe\x99\x7e\x3b\xbb\x04\xfe\x03\x8f\x4f\x9c\xb0\xc5\x3d\x25\x8a\xdb\xc3\xe9\x5b\xf8\x2c\xf6\xa6\xcc\x3e\x71\x6b\x32\xfe\x0e\x82\x76\x01\x7d\x8b\x52\xad\xe7\x6a\xfe\x9d\x9f\x43\x8b\x46\xab\x78\xb5\xe5\xae\x2e\xc0\xb0\xc0\x9e\xe4\xc8\xa6\xc1\xf5\x18\xc4\xc2\x28\x63\xb5\x8e\x66\x9a\x34\x85\x9c\xad\xe5\xfe\xb3\x51\xe2\xfb\x09\xfa\xe7\xa8\x2e\x93\x69\x8c\xbe\xc1\x65\xcb\x49\xa0\x3b\xfd\x72\xbc\x67\xf1\x9f\x9b\x18\x25\x2d\x04\x2d\x2e\x71\x15\x38\x5e\x43\x23\xf4\x4c\xaa\x13\x9a\xac\x32\x2d\x63\xbc\xa4\x5d\xd7\x34\x68\xfd\x2e\x16\xd2\x13\x85\xb5\xea\x6a\x14\xba\x0b\x79\x47\xba\x96\x89\x2d\x1e\xa6\x94\x92\xed\x37\x6f\xe5\xad\x9f\x27\xd9\x0c\xfe\xda\xbc\x2b\x93\xbd\xfb\x7f\x34\xeb\x25\xab\x23\x19\xa8\xee\xfd\xd1\x04\xd3\xc7\xb3\xfd\x7f\x87\xba\x68\x5b\xcb\x4f\x54\xdc\x68\x27\xfe\x8a\xbe\xcc\x25\x53\x4c\x36\x0a\xdf\x81\xf8\xcb\x54\x7f\xec\x83\x10\xe7\x35\x2c\x5b\xfc\x7b\x9a\xf5\x6b\xf4\x2b\x00\x00\xff\xff\xad\x41\xde\x8f\x5e\x05\x00\x00" func idtablestakingAdminCapability_end_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1940,11 +2000,11 @@ func idtablestakingAdminCapability_end_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/capability_end_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0x21, 0xea, 0x77, 0xb, 0xd2, 0x13, 0x35, 0x6d, 0xf1, 0xd1, 0xa0, 0x41, 0xa2, 0xf5, 0x3d, 0x9a, 0xdc, 0xb2, 0x18, 0x94, 0x70, 0x3c, 0xa8, 0xca, 0xff, 0xf0, 0xee, 0x2e, 0x7f, 0xc0, 0xfc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0xe8, 0x46, 0x80, 0xfa, 0x86, 0x18, 0x85, 0xdd, 0xa4, 0xf2, 0x3b, 0x47, 0x60, 0x5c, 0x35, 0x94, 0x4d, 0x3a, 0xa2, 0x2c, 0xc3, 0x36, 0x6b, 0x8c, 0x2a, 0xfb, 0xc5, 0x3d, 0x7b, 0x29, 0x9}} return a, nil } -var _idtablestakingAdminChange_candidate_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xd1\x8b\xd3\x40\x10\xc6\xdf\xf3\x57\x7c\xdc\x83\xf4\x40\x12\x1f\x44\xa4\xa8\x47\xbc\x54\x08\x94\x43\xae\xf1\xc1\xc7\xe9\x66\xd2\xac\x6e\x77\xc2\x66\x6a\x0b\x72\xff\xbb\xec\x26\x95\x3b\x5b\xe7\x21\x0b\x9b\xcc\xef\xfb\x66\xbe\xd8\xfd\x20\x41\xf1\xc5\xc9\xb1\xae\x1a\xda\x3a\xde\x28\xfd\xb4\x7e\x87\x2e\xc8\x1e\x6f\x4e\x75\xb5\x7a\x68\xea\xe6\x7b\x53\x7e\x5e\xaf\xca\xaa\x7a\x5c\x6d\x36\x59\x56\x14\x05\x9a\xde\x8e\xd0\x40\x7e\x24\xa3\x56\x3c\x4c\x4f\x7e\xc7\x23\xb4\x67\x38\xbb\xb7\x0a\xe9\xe0\xf9\x08\x2f\x6d\xba\x26\x85\x21\x8f\x2d\xc7\xa3\xb5\x2d\x29\x8f\x09\xd5\x49\x48\x5d\x9e\x4f\x0a\x1e\xc4\xf4\xd9\x33\xf0\x22\x88\xe3\x25\xbe\xd5\x5e\xdf\xbf\x8e\xc0\xfb\x73\xf7\x83\xb4\xbc\x8e\x4a\xd3\xdb\x77\x6f\x6f\xf1\x3b\xcb\x00\x20\x52\xd7\x62\xc8\xe1\x17\x05\x1b\xe7\x4a\x22\x84\xc0\x1d\x07\xf6\x86\xa1\x92\x34\xeb\x0a\x69\x6e\x94\xed\xde\x7a\xc8\xf6\x07\x1b\x4d\x0c\xc7\x0a\x8a\x97\x8f\xdc\x2d\xf1\xea\x72\x47\x79\x6a\x99\x04\x87\xc0\x03\x05\x5e\x90\x31\xba\x44\x79\xd0\xbe\x34\x46\x0e\x5e\xa3\x25\xcc\x55\x14\xd8\x4a\x08\x72\xbc\x66\x84\xfe\xd5\x8f\x35\xb2\xeb\xf2\xb3\x09\x7c\x44\xc4\xe7\x13\xe3\xc3\x7f\x1d\x7d\x5a\xc4\xf0\x96\x57\x52\xcd\xe7\x33\x7d\xb6\x51\x09\xb4\xe3\xaf\xa4\xfd\xed\x5f\xc1\x58\x77\x77\x18\xc8\x5b\xb3\xb8\xb9\x97\x83\x6b\xe1\x45\xcf\xbe\x5f\xb8\x1e\xe7\x5f\x25\xf9\xbb\x99\x18\x4f\xd3\x3a\xf8\xc4\xe6\xa0\xfc\x6c\xf6\x17\x93\xe4\x23\xeb\x65\x8a\x73\xd0\xf1\x99\x72\x9e\xa3\xbd\x9a\xf8\x59\xed\xe9\x4f\x00\x00\x00\xff\xff\x5b\x20\xd7\xc9\xc2\x02\x00\x00" +var _idtablestakingAdminChange_candidate_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdc\x30\x10\x85\xef\xfe\x15\x8f\x3d\x04\x2f\x14\xfb\x52\x4a\x59\xda\x86\x34\xa1\xb0\x10\x4a\x69\xd2\xde\xc7\xf2\x78\xad\x56\xd6\x18\x69\xdc\x0d\x94\xfc\xf7\x22\xd9\x2e\xd9\xee\x76\x0e\x36\x48\x9a\xf7\x3e\xcd\x93\x1d\x46\x09\x8a\x4f\x4e\x8e\xfb\xbb\x47\x6a\x1c\x3f\x28\xfd\xb4\xfe\x80\x2e\xc8\x80\xcd\xf9\xc6\xa6\x28\xea\xba\xc6\x63\x6f\x23\x34\x90\x8f\x64\xd4\x8a\x87\xe9\xc9\x1f\x38\x42\x7b\x86\xb3\x83\x55\x48\x07\xcf\x47\x78\x69\xf3\x32\x29\x0c\x79\x34\x9c\x7e\xad\x6d\x49\x39\x66\xa9\x4e\x42\xee\xf2\xfc\xa4\xe0\x51\x4c\x5f\xbc\x10\x2e\x83\x38\xde\xe1\xdb\xde\xeb\xdb\x57\x49\xf0\x76\xed\xfe\x2c\x2d\xdf\x27\xa7\x79\xf7\xcd\xeb\x2d\x7e\x17\x05\x00\x24\xd5\x7b\x31\xe4\xf0\x8b\x82\x4d\xf0\xd9\x84\x10\xb8\xe3\xc0\xde\x30\x54\xb2\xe7\xfe\x0e\xf9\x72\xb8\x69\x07\xeb\x21\xcd\x0f\x36\x9a\x35\x1c\x2b\x28\x2d\x7e\xe5\x6e\x87\xab\xf3\x41\x54\xb9\x65\x36\x1c\x03\x8f\x14\xb8\x24\x63\x74\x07\x9a\xb4\x2f\x3f\x4a\x08\x72\xfc\x4e\x6e\xe2\x2d\xae\x6e\x8c\x91\xc9\x6b\x22\xc4\x52\x75\x8d\x26\x9f\xb9\xc4\x45\xff\xe2\xa4\x8a\xec\xba\x6a\x65\xc2\x7b\x24\xb7\x2a\xaa\x04\x3a\x70\x35\x6b\xbd\xfb\x2f\xe8\x87\x32\x25\xba\xbb\x10\x75\xb5\xfc\xf3\xb1\x87\x59\xee\x0b\x69\xbf\xfd\x6b\x9c\xea\xfa\x1a\x23\x79\x6b\xca\xcd\xad\x4c\xae\x85\x17\x5d\xf9\x4f\xe8\xe3\xf2\x7e\x32\xe7\x66\xd6\x78\x9e\xa7\xc4\x4f\x6c\x26\xe5\x17\x33\x38\xb9\x51\x15\x59\xcf\xc3\x5d\xf2\x4f\xdf\x1c\xff\x92\xf8\xc5\x87\xb0\xba\x3d\xff\x09\x00\x00\xff\xff\xa3\x37\xb2\x3b\xd7\x02\x00\x00" func idtablestakingAdminChange_candidate_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -1960,11 +2020,11 @@ func idtablestakingAdminChange_candidate_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_candidate_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0xdb, 0xe5, 0xea, 0x4b, 0x2a, 0x6d, 0x5e, 0x1, 0x52, 0x63, 0xeb, 0x7e, 0x12, 0x89, 0x85, 0x22, 0x5d, 0xfd, 0x9c, 0xcf, 0xc8, 0x9a, 0x79, 0x46, 0xb0, 0x29, 0x10, 0x43, 0x55, 0x71, 0x62}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0x8b, 0x69, 0x1, 0xa6, 0x30, 0xfc, 0xb9, 0x20, 0x3, 0xb0, 0x87, 0xff, 0x80, 0xf, 0xa7, 0x89, 0xa7, 0x8, 0xf4, 0x47, 0xfe, 0xa0, 0xd6, 0x59, 0xa2, 0xaa, 0xa4, 0x16, 0x8e, 0xad, 0x7f}} return a, nil } -var _idtablestakingAdminChange_cutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x8f\x1c\x8a\x73\x91\x7a\x28\x3d\x98\xb6\x41\x8d\x1c\x30\x84\x12\x62\xf5\xd0\xe3\x78\x35\xfa\x53\xaf\x77\xcc\x68\x54\x19\x4a\xbe\x7b\x59\xc9\x2e\x71\xe3\xce\x65\x61\x99\x7d\xef\x37\xf3\xb6\xdb\x1f\x44\x0d\x0f\x5e\xc6\x75\x51\xd2\xd6\xf3\xc6\x68\xd7\x85\x06\xb5\xca\x1e\xef\x8f\xeb\x62\xf5\xad\x5c\x97\x3f\xca\xfc\xeb\xe3\x2a\x2f\x8a\xe7\xd5\x66\x93\x24\x59\x86\xb2\xed\x7a\x98\x52\xe8\xc9\x59\x27\x01\xae\xa5\xd0\x70\x0f\x6b\x19\xb5\x97\x11\x26\x3b\x0e\x50\x1e\x49\x2b\xb8\xc1\x60\x2d\x19\x82\x54\xb1\x89\x76\x3c\x5b\x54\xec\xb9\x21\x13\xed\x93\xe4\x95\xdc\x22\xf0\x78\x3f\xd8\x13\xab\xe3\x60\xd4\xf0\x12\xdf\x1f\xba\xe3\xc7\x0f\xb7\xf8\x9d\x24\x00\x90\x65\x78\x14\x47\x1e\xbf\x48\xbb\x48\x8e\x5a\x14\x04\xe5\x9a\x95\x83\x63\x98\x4c\x30\xeb\x02\xd3\x64\xc8\xab\x7d\x17\x20\xdb\x9f\xec\x6c\x92\xf0\x6c\xa0\x78\xf9\xcc\xf5\x12\xef\xde\x6e\x21\x9d\x9e\xcc\x7e\x07\xe5\x03\x29\x2f\xc8\x39\x5b\x22\x1f\xac\xcd\x9d\x93\x21\x58\x24\xc2\xa9\xb2\x0c\x5b\x51\x95\xf1\x1a\x08\xfd\xeb\x1f\xab\x67\x5f\xa7\x67\x08\x7c\x46\x94\x4f\x67\x8d\x4f\xff\x25\xfa\xb2\x88\xbb\x5b\x5e\xc9\x2d\x3d\x9d\x53\xdb\xc6\x44\xa9\xe1\x27\xb2\xf6\xf6\xaf\x61\xac\xbb\x3b\x1c\x28\x74\x6e\x71\x73\x2f\x83\xaf\x10\xc4\xce\xdc\x17\xd4\xfd\xe9\x33\x4c\x7c\x37\xb3\xc6\xcb\xbc\x0e\x3e\xb2\x1b\x8c\x5f\xcd\x7e\x31\x49\xda\xb3\x5d\xe4\xf7\x26\xd0\xb3\xda\xcb\x9f\x00\x00\x00\xff\xff\x8e\xa5\x1f\xd1\x84\x02\x00\x00" +var _idtablestakingAdminChange_cutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x0f\x1f\x82\x7c\x91\x2e\xa5\x07\xd3\x36\xa4\x09\x81\x40\x0f\xa1\x49\x7b\x1f\xaf\x46\xd2\xd6\xeb\x1d\x31\x3b\xaa\x02\x25\xff\xbd\xac\x64\x97\xb8\x76\xe6\x22\xd0\xce\xbe\xf7\xcd\xbc\xf5\xfb\x41\xd4\x70\x1f\x64\x7a\xb8\x7b\xa6\x6d\xe0\x27\xa3\x9d\x8f\x1d\x5a\x95\x3d\x56\xe7\x07\xab\xa2\xa8\x6b\x3c\xf7\x3e\xc1\x94\x62\x22\x67\x5e\x22\x5c\x4f\xb1\xe3\x04\xeb\x19\x6d\x90\x09\x26\x3b\x8e\x50\x9e\x48\x1b\xb8\xd1\x60\x3d\x19\xa2\x34\xb9\x89\x76\xbc\x18\x34\x1c\xb8\x23\x13\x4d\x45\xf1\x46\xae\x8c\x3c\xdd\x8e\xf6\xc8\xea\x38\x1a\x75\xbc\xc1\x8f\x7b\xff\xf2\xf1\xc3\x1a\x7f\x8a\x02\x00\xea\x1a\xdf\xc4\x51\xc0\x6f\x52\x9f\xf1\xd0\x8a\x82\xa0\xdc\xb2\x72\x74\x0c\x93\x19\xe6\xe1\x0e\x33\x3e\x6e\x9a\xbd\x8f\x90\xed\x2f\x76\x36\x4b\x04\x36\x50\xfe\xf9\x9d\xdb\x0d\xae\xce\x47\xad\xe6\x2b\x8b\xdf\xa0\x3c\x90\x72\x49\xce\xd9\x06\x34\x5a\x5f\x7e\x15\x55\x99\x7e\x52\x18\x79\x8d\xab\x1b\xe7\x64\x8c\x96\x01\x71\xa8\xba\xc6\x76\xee\xb9\xc4\x45\xff\xe3\xe4\x4a\x1c\xda\xea\xc8\x84\xcf\xc8\x6e\x55\x32\x51\xea\xb8\x5a\xb4\x3e\xbd\x0b\xfa\xa5\xcc\x2b\xdd\x5c\x08\xb3\x3a\x7c\xe7\xb6\xa7\x45\xee\x91\xac\x5f\xff\x33\xce\x75\x7d\x8d\x81\xa2\x77\xe5\xea\x56\xc6\xd0\x20\x8a\x1d\xf9\x4f\xe8\xd3\xe1\x85\xcc\x9c\xab\x45\xe3\x75\xd9\x12\xbf\xb0\x1b\x8d\xdf\xec\xe0\x64\xa2\x2a\xb1\x9d\xc4\x7a\x96\xf3\x51\xed\xf5\x6f\x00\x00\x00\xff\xff\xab\xef\x4a\xd9\x99\x02\x00\x00" func idtablestakingAdminChange_cutCdcBytes() ([]byte, error) { return bindataRead( @@ -1980,11 +2040,11 @@ func idtablestakingAdminChange_cutCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_cut.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0x16, 0x86, 0xfb, 0xee, 0x3b, 0xc9, 0x84, 0xcd, 0xcb, 0x97, 0x24, 0x33, 0xd9, 0xe3, 0x6b, 0x46, 0x7d, 0x40, 0x73, 0x24, 0x7a, 0x38, 0x38, 0xd5, 0x51, 0xa1, 0x58, 0x44, 0xaf, 0xb3, 0x7a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x44, 0x7a, 0x5d, 0xf4, 0xb4, 0x22, 0xad, 0xa1, 0x2e, 0x57, 0x29, 0x66, 0x47, 0x5f, 0xca, 0x24, 0x3b, 0xd2, 0x71, 0x49, 0xa8, 0xb4, 0x2c, 0x34, 0xd3, 0xf, 0x36, 0xa0, 0x2a, 0x5f, 0x58, 0x1a}} return a, nil } -var _idtablestakingAdminChange_del_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6f\xd3\x40\x10\x85\xef\xfe\x15\x4f\x3d\xa0\xf4\x62\x73\x40\x1c\x22\xa0\x32\x38\x95\x22\x15\x84\x12\x73\xe0\x38\x59\x8f\xe3\x25\xf6\x4e\x18\x8f\x71\x24\xd4\xff\x8e\xd6\x4e\x50\x5b\xc2\x5c\x2c\x79\x67\xdf\xfb\x66\xde\xfa\xee\x28\x6a\xb8\x6f\x65\x5c\x17\x25\xed\x5a\xde\x1a\x1d\x7c\xd8\xa3\x56\xe9\xf0\xfa\xb4\x2e\x56\x5f\xca\x75\xf9\xbd\xcc\x3f\x3e\xac\xf2\xa2\xd8\xac\xb6\xdb\x24\xc9\x32\x94\x8d\xef\x61\x4a\xa1\x27\x67\x5e\x02\x5c\x43\x61\xcf\x3d\xac\x61\xd4\xad\x8c\x30\x39\x70\x80\xf2\x48\x5a\xc1\x0d\x06\x6b\xc8\x10\xa4\x8a\x4d\x74\xe0\xd9\xa2\xe2\x96\xf7\x64\xa2\x7d\x92\x3c\x91\x5b\x04\x1e\x8b\xcb\xd1\x67\x1f\x7c\x37\x74\x4b\x7c\xbb\xf7\xa7\xb7\x6f\x6e\xf1\x3b\x49\x00\x20\xcb\xf0\x20\x8e\x5a\xfc\x22\xf5\x11\x1e\xb5\x28\x08\xca\x35\x2b\x07\xc7\x30\x99\x78\xd6\x05\xa6\xe1\x90\x57\x9d\x0f\x90\xdd\x0f\x76\x36\x49\xb4\x6c\xa0\xf8\x73\xc3\xf5\x12\xaf\xfe\x5d\x44\x3a\x5d\x99\xfd\x8e\xca\x47\x52\x5e\x90\x73\xb6\x44\x3e\x58\x93\x3b\x27\x43\xb0\x48\x84\x73\x65\x19\x76\xa2\x2a\xe3\x35\x10\x7a\xe9\x1f\xab\xe7\xb6\x4e\x2f\x10\x78\x8f\x28\x9f\xce\x1a\xef\xfe\x4b\xf4\x61\x11\xd7\xb7\xbc\x12\x5d\x7a\xfe\x4e\x6d\x5b\x13\xa5\x3d\x7f\x25\x6b\x6e\xff\x1a\xc6\xba\xbb\xc3\x91\x82\x77\x8b\x9b\x4f\x32\xb4\x15\x82\xd8\x85\xfb\x19\x75\x7f\x7e\x0f\x13\xdf\xcd\xac\xf1\x38\xaf\x83\x4f\xec\x06\xe3\x27\xb3\x3f\x9b\x24\xed\xd9\x5e\x46\x18\xd1\x78\xc3\x3f\x07\xaf\xdc\x71\xb0\x6b\x31\x5f\x3c\x1e\xff\x04\x00\x00\xff\xff\x40\xe4\x7d\xfd\x9d\x02\x00\x00" +var _idtablestakingAdminChange_del_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdc\x40\x0c\xc5\xef\xfe\x14\x8f\x3d\x04\xef\xc5\xbe\x94\x1e\x96\xb6\x21\xed\x12\x08\xb4\x50\x92\xb4\x77\xed\x58\x5e\x4f\x77\x3c\xda\xca\x9a\x3a\x50\xf2\xdd\xcb\xd8\xeb\x92\x3f\x1b\x5d\x06\x46\x9a\xf7\x7e\x92\xc6\xf7\x47\x51\xc3\x75\x90\xf1\x66\x7b\x4f\xbb\xc0\x77\x46\x07\x1f\xf7\x68\x55\x7a\xac\x5e\x27\x56\x45\x51\xd7\xb8\xef\xfc\x00\x53\x8a\x03\x39\xf3\x12\xe1\x3a\x8a\x7b\x1e\x60\x1d\xa3\x0d\x32\xc2\xe4\xc0\x11\xca\x23\x69\x03\x97\x0c\xd6\x91\x21\x4a\x93\x8b\xe8\xc0\xb3\x41\xc3\x81\xf7\x64\xa2\x43\x51\x3c\x91\x2b\x23\x8f\xdb\x25\xf5\xcd\x47\xdf\xa7\x7e\x83\x1f\xd7\xfe\xe1\xfd\xbb\x35\xfe\x16\x05\x00\xd4\x35\xbe\x8a\xa3\x80\x3f\xa4\x3e\x13\xa2\x15\x05\x41\xb9\x65\xe5\xe8\x18\x26\x13\xcf\xcd\x16\x53\x07\xb8\x6a\x7a\x1f\x21\xbb\x5f\xec\x6c\x92\x08\x6c\xa0\x7c\x79\xcb\xed\x06\x17\xaf\xbb\xad\xa6\x27\xb3\xdf\x51\xf9\x48\xca\x25\x39\x67\x1b\x50\xb2\xae\xfc\x2c\xaa\x32\xfe\xa4\x90\x78\x8d\x8b\x2b\xe7\x24\x45\xcb\x80\x38\x45\x5d\x63\x37\xd5\x9c\xe3\xa2\x97\x38\x39\x06\x0e\x6d\xb5\x30\xe1\x23\xb2\x5b\x35\x98\x28\xed\xb9\x9a\xb5\x3e\xbc\x09\xfa\xa9\xcc\x53\xdd\x9c\xd9\x67\x75\x3a\xa7\xb2\xbb\x59\xee\x3b\x59\xb7\xfe\x6f\x9c\xe3\xf2\x12\x47\x8a\xde\x95\xab\x2f\x92\x42\x83\x28\xb6\xf0\x3f\xa3\x1f\x4e\x9f\x64\xe2\x5c\xcd\x1a\x8f\xf3\x94\xf8\x81\x5d\x32\x7e\x32\x83\x67\x1d\x55\x03\xdb\xcb\xcd\x66\x34\xbe\xe5\xdf\xc9\x2b\xf7\x1c\xed\xdc\xf6\x17\x8f\xc7\x7f\x01\x00\x00\xff\xff\xa7\xa0\xc3\xae\xb2\x02\x00\x00" func idtablestakingAdminChange_del_minimumsCdcBytes() ([]byte, error) { return bindataRead( @@ -2000,11 +2060,11 @@ func idtablestakingAdminChange_del_minimumsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_del_minimums.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xc7, 0x8e, 0xf0, 0x6d, 0x55, 0xc2, 0xe2, 0xb7, 0x54, 0xf0, 0x39, 0x30, 0x8f, 0x8f, 0x12, 0xf2, 0x7e, 0xcf, 0xf7, 0x67, 0x4b, 0x8, 0x13, 0x23, 0x2, 0x72, 0x73, 0xcd, 0x73, 0xe9, 0x75}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xc8, 0x3f, 0x11, 0x11, 0x9f, 0xf0, 0xb8, 0x71, 0xbf, 0x48, 0xf0, 0x40, 0xd5, 0x29, 0xf3, 0x4e, 0xeb, 0xa2, 0x2c, 0xea, 0xa8, 0xad, 0x9e, 0x76, 0x65, 0x5f, 0xb6, 0xaf, 0x82, 0x71, 0x6}} return a, nil } -var _idtablestakingAdminChange_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x51\xdd\x6a\xdb\x30\x14\xbe\xf7\x53\x7c\xf4\x62\xb8\x0c\xec\x15\xc6\x18\x66\x5e\xf1\xe6\x14\x0c\xdd\x18\x89\x7b\x31\x4a\x2f\x14\xe5\x38\xd6\x66\x4b\x9e\x74\xdc\x04\x42\xde\x7d\xc8\x3f\x59\xba\xb6\xe7\xc6\x58\x3a\xfa\x7e\x55\xdb\x19\xcb\xb8\x69\xcc\xae\xc8\x4b\xb1\x6e\x68\xc5\xe2\xb7\xd2\x5b\x54\xd6\xb4\x78\xb7\x2f\xf2\xc5\xf7\xb2\x28\x7f\x96\xd9\x97\xdb\x45\x96\xe7\xcb\xc5\x6a\x15\x04\x71\x8c\xb2\x56\x0e\x6c\x85\x76\x42\xb2\x32\x1a\xb2\x16\x7a\x4b\x0e\x5c\x13\xdc\x04\xd2\x2a\xdd\xb7\x7d\xeb\x50\x19\x0b\x6d\x36\x04\xd3\x91\x15\x6c\xac\x0b\x82\xb3\xc7\xa1\xa6\xdd\x37\xa5\x95\xdf\x4d\x70\x7f\x77\xa3\xf6\x1f\xde\x3f\x5c\xe2\x10\x04\x00\x10\xc7\xb8\x35\x52\x34\x78\x14\x56\x79\x91\x03\x9e\x80\xa5\x8a\x2c\x69\x49\x60\x33\xf0\x16\x39\x06\x13\xc8\x36\xad\xd2\x30\xeb\x5f\x24\x79\x80\x68\x88\x21\xfc\xe1\x92\xaa\x04\x6f\x9e\x1b\x8e\x86\x27\x23\x5f\x67\xa9\x13\x96\x42\x21\x25\x27\xc8\x7a\xae\x33\x29\x4d\xaf\xd9\x2b\xc2\x34\x71\x8c\xb5\xb1\xd6\xec\x5e\x12\x22\xfe\xe7\xf7\xe3\xa8\xa9\xa2\x59\x04\x52\x78\xf8\x68\xc4\xf8\xf4\xaa\xa2\xcf\xa1\x6f\x22\x79\xa1\xa2\x68\xfa\x0e\x6b\x2b\x36\x56\x6c\xe9\x87\xe0\xfa\xf2\x44\xe8\xe7\xfa\x1a\x9d\xd0\x4a\x86\x17\x5f\x4d\xdf\x6c\xa0\x0d\xcf\xba\x9f\xa8\x9e\x2b\x1b\xf4\x5d\x8c\x18\xc7\x31\x0e\xda\x93\xec\x99\xce\xbc\xfb\x34\xdb\x53\x5f\x87\xbb\x42\xf3\xc7\x04\x63\x6d\x47\xa4\x38\x1c\x4f\xab\x8f\xc2\x42\x25\x18\x56\x90\xe2\xea\x74\xe1\x2b\xf4\x21\x29\x8d\xb3\xf6\xcf\x48\xfc\xcc\x24\xf7\xea\x01\xa9\xff\x7b\x72\xab\x90\x42\xe1\xed\x08\x1e\x5e\xfd\x33\x3e\x09\x7f\x16\x7a\xe4\x88\x27\x26\x1f\x1e\x2d\xe9\x4f\xaf\x2c\xb5\xa4\xd9\x85\x33\xd7\xec\xfd\xf8\x37\x00\x00\xff\xff\x7a\x62\x5e\x37\x1d\x03\x00\x00" +var _idtablestakingAdminChange_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x4c\x41\x22\x50\x4a\x11\x55\x43\xda\x10\x30\xb4\x50\xf2\xa7\x97\x90\xc3\x78\x3d\xb2\xb6\x95\x76\xd5\xdd\x51\x1c\x30\xfe\xee\x65\x57\x92\xab\xd4\xc9\x5c\x84\xb4\xb3\xef\xfd\x66\x9e\x74\xdb\x59\x27\xb8\x6e\xec\x6e\x75\x75\x47\xeb\x86\x6f\x85\x7e\x6b\xb3\x45\xe5\x6c\x8b\xc5\xe9\xc1\x22\x49\xf2\x1c\x77\xb5\xf6\x10\x47\xc6\x93\x12\x6d\x0d\x54\x4d\x66\xcb\x1e\x52\x33\xfc\x28\xd1\x6a\xd3\xb7\x7d\xeb\x51\x59\x07\x63\x37\x0c\xdb\xb1\x23\xb1\xce\x27\xc9\xec\x72\x6a\x78\xf7\x5d\x1b\x1d\x7a\x0b\x3c\xdc\x5f\xeb\xe7\x0f\xef\x1f\x97\xd8\x27\x09\x00\xe4\x39\xbe\x59\x45\x0d\x9e\xc8\xe9\x40\x12\xf5\x08\x8e\x2b\x76\x6c\x14\x43\x6c\xf4\x5d\x5d\x21\x92\xe2\x72\xd3\x6a\x03\xbb\xfe\xc5\x4a\xa2\x44\xc3\x02\x0a\x1f\x6f\xb8\x2a\x70\x76\x3a\x55\x16\xaf\x0c\x7e\x9d\xe3\x8e\x1c\xa7\xa4\x94\x14\xa0\x5e\xea\xf4\x8b\x75\xce\xee\x7e\x52\xd3\xf3\x12\x67\x97\x4a\xd9\xde\x48\x00\xc4\x58\x79\x8e\x75\xec\x79\x8d\x8b\xfe\xc7\x09\xe5\xb9\xa9\xb2\x89\x09\x25\x82\x5b\xe6\xc5\x3a\xda\x72\x36\x68\x7d\x7a\x13\xf4\x73\x1a\xe2\x29\x5e\xc9\x2d\x1b\x9f\xb1\xed\x76\x90\xfb\x41\x52\x2f\x8f\xc6\xa1\x2e\x2e\xd0\x91\xd1\x2a\x5d\x7c\xb5\x7d\xb3\x81\xb1\x32\xf1\xbf\xa0\x9f\x92\x8c\x9c\x8b\x41\xe3\x30\x6c\x89\x9f\x59\xf5\xc2\xb3\x1d\x84\x25\xb7\xc7\x18\xf7\xf7\x2b\x23\x1f\x0b\x0c\x69\x1e\x50\x62\x7f\x38\xb6\x3e\x91\x83\x2e\x10\x5b\x50\xe2\xfc\x78\x10\x92\x0d\xcb\xd2\x06\xb3\x9f\x62\x66\x12\x6a\x32\x79\xd0\x8f\x28\xc3\xdb\x8b\x53\x8d\x12\x1a\xef\x06\xf1\xf4\xfc\xdf\xe0\x23\xf8\xc9\xf2\x33\xcf\x32\x3a\x85\xe5\xf1\x0d\xff\xe9\xb5\xe3\x96\x8d\xf8\x74\xf2\x9a\x66\x3f\xfc\x0d\x00\x00\xff\xff\x0c\xd9\xc0\xe7\x32\x03\x00\x00" func idtablestakingAdminChange_minimumsCdcBytes() ([]byte, error) { return bindataRead( @@ -2020,11 +2080,11 @@ func idtablestakingAdminChange_minimumsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_minimums.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0x43, 0x5f, 0x10, 0x9, 0x12, 0xd6, 0x29, 0xcd, 0x0, 0xf9, 0x15, 0xc6, 0xbf, 0xf6, 0xbd, 0x21, 0x40, 0xc9, 0x80, 0x4, 0x22, 0x3a, 0x3c, 0x24, 0xd3, 0x7e, 0x36, 0xea, 0x6, 0x28, 0x33}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0xc4, 0xf5, 0xcf, 0xc4, 0x9, 0xda, 0xde, 0x4, 0x25, 0x88, 0xdb, 0xca, 0x1a, 0x54, 0x9, 0x1f, 0x68, 0x91, 0x8, 0x74, 0xa8, 0x6, 0x87, 0x54, 0x36, 0x2, 0x68, 0x3f, 0x5, 0x4f, 0x3d}} return a, nil } -var _idtablestakingAdminChange_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6f\xd4\x40\x0c\x85\xef\xf9\x15\x4f\x3d\xa0\xed\x25\xe1\x80\x38\x44\x40\x15\x48\x2a\x45\xaa\x50\xd5\x84\x03\x47\xef\xd4\xd9\x0c\x3b\x3b\x8e\x26\x0e\xd9\x0a\xf5\xbf\xa3\x49\x76\xa1\x85\xd6\x97\x91\xac\xf1\x7b\x9f\xfd\xec\x61\x90\xa0\xb8\x76\x32\xd7\x65\x4b\x5b\xc7\x8d\xd2\xde\xfa\x1d\xba\x20\x07\xbc\x3d\xd6\x65\xf5\xb5\xad\xdb\xef\x6d\xf1\xf9\xa6\x2a\xca\xf2\xae\x6a\x9a\x24\xc9\x32\xb4\xbd\x1d\xa1\x81\xfc\x48\x46\xad\x78\x98\x9e\xfc\x8e\x47\x68\xcf\xe8\x9c\xcc\x50\xd9\xb3\xc7\xcc\xbc\x77\x0f\x18\xe8\x41\x26\x4d\x92\x27\x13\x1b\xcf\xf3\xed\xd2\xce\xf1\xed\xda\x1e\xdf\xbf\xbb\xc4\xaf\x24\x01\x80\x2c\xc3\x8d\x18\x72\xf8\x49\xc1\x46\x2a\x74\x12\x40\x08\xdc\x71\x60\x6f\x18\x2a\x8b\x51\x5d\x62\xa1\x46\x71\x7f\xb0\x1e\xb2\xfd\xc1\x46\x17\x09\xc7\x0a\x8a\xcd\x3b\xee\x72\xbc\xf9\x7f\xc3\x74\x19\x59\xfd\x86\xc0\x03\x05\xde\x90\x31\x9a\xa3\x98\xb4\x2f\x8c\x91\xc9\x6b\x24\xc2\xa9\xb2\x0c\x5b\x09\x41\xe6\x97\x40\xe8\x5f\xff\x58\x23\xbb\x2e\x3d\x43\xe0\x23\xa2\x7c\xba\x6a\x7c\x78\x95\xe8\xd3\x26\x9e\x3e\x7f\x21\x93\xf4\xf4\x2e\xdf\x1a\x95\x40\x3b\xbe\x25\xed\x2f\xff\x18\xc6\xba\xba\xc2\x40\xde\x9a\xcd\xc5\x17\x99\xdc\x3d\xbc\xe8\x99\xfb\x19\xf5\x78\x0a\x7a\xe1\xbb\x58\x35\x1e\xd7\x73\xf0\x91\xcd\xa4\xfc\x64\xf7\x67\x9b\xa4\x23\x6b\x35\x88\xe9\xdb\x98\xf0\x1a\xe1\xdf\x30\xcf\x4a\x8f\xbf\x03\x00\x00\xff\xff\x2a\x3e\x38\xa0\x5c\x02\x00\x00" +var _idtablestakingAdminChange_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x8f\xd3\x40\x0c\x85\xef\xf9\x15\x4f\x39\xac\xd2\x4b\x72\x41\x1c\x22\x60\xb5\xb0\xac\xb4\x12\x87\x8a\x16\xee\xee\xd4\x69\x86\x4e\xc7\xd1\xc4\x21\xad\x50\xff\x3b\x9a\x49\x0b\x2d\x2d\xbe\x44\x9a\xd8\xef\x7d\xf6\xb3\xbb\x4e\x82\xe2\xc5\xc9\xf8\xfa\xbc\xa4\x95\xe3\x85\xd2\xd6\xfa\x0d\x9a\x20\x3b\xe4\xb7\x3f\xf2\x2c\xab\x2a\x2c\x5b\xdb\x43\x03\xf9\x9e\x8c\x5a\xf1\x30\x2d\xf9\x0d\xf7\xd0\x96\xd1\x38\x19\xa1\xb2\x65\x8f\x91\x79\xeb\x0e\xe8\xe8\x20\x83\x66\xd9\xc5\x44\xe1\x79\x9c\xa7\xe7\x1a\xdf\x5e\xec\xfe\xed\x9b\x19\x7e\x65\x19\x00\x54\x15\xbe\x88\x21\x87\x9f\x14\x6c\xb4\x46\x23\x01\x84\xc0\x0d\x07\xf6\x86\xa1\x92\x8c\x5e\x9f\x91\xd0\xf0\xb4\xde\x59\x0f\x59\xfd\x60\xa3\x49\xc2\xb1\x82\xe2\xe3\x57\x6e\x6a\x3c\xdc\xae\x51\xa6\x91\xc9\xaf\x0b\xdc\x51\xe0\x82\x8c\xd1\x1a\x34\x68\x5b\x7c\x94\x10\x64\xfc\x4e\x6e\xe0\x19\x1e\x9e\x8c\x91\xc1\x6b\x04\xc4\xa9\xaa\x0a\xab\xd4\x73\x8f\x8b\xfe\xc5\x89\xd5\xb3\x6b\xca\x33\x13\xde\x23\xba\x95\xbd\x4a\xa0\x0d\x97\x93\xd6\xbb\xff\x82\x7e\x28\x62\x1e\xf5\x9d\xa0\xca\xd3\x37\xb5\x2d\x26\xb9\x39\x69\x3b\xfb\x63\x1c\xeb\xf1\x11\x1d\x79\x6b\x8a\xfc\x93\x0c\x6e\x0d\x2f\x7a\xe6\xbf\xa2\xef\x4f\xe9\x27\xce\x7c\xd2\x38\x4e\x57\xe2\x3d\x9b\x41\xf9\xe2\x06\x57\x1b\x95\x3d\xeb\xe7\x4e\x4c\xbb\x8c\xc1\x4f\xc9\xfe\xcd\xf8\xac\x74\xfc\x1d\x00\x00\xff\xff\xbc\x8e\x06\xa6\x71\x02\x00\x00" func idtablestakingAdminChange_payoutCdcBytes() ([]byte, error) { return bindataRead( @@ -2040,11 +2100,11 @@ func idtablestakingAdminChange_payoutCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_payout.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2f, 0x71, 0xde, 0xb0, 0x70, 0x7b, 0x4e, 0xe0, 0xb6, 0xbf, 0x9, 0x1, 0xfd, 0xd4, 0x85, 0x6b, 0xc0, 0x17, 0x99, 0x82, 0x25, 0x8, 0x5a, 0x86, 0xf6, 0xee, 0xa6, 0xa2, 0xad, 0xd0, 0x2a, 0x66}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf1, 0x15, 0x65, 0x64, 0x1, 0xa4, 0xaa, 0xc1, 0x1e, 0x57, 0x8c, 0x4f, 0xa7, 0xc2, 0xec, 0xde, 0xbc, 0x6d, 0xad, 0x7a, 0xa, 0xf2, 0x6a, 0x7e, 0xb5, 0x8a, 0x77, 0x9a, 0x2e, 0x9e, 0x83, 0xe}} return a, nil } -var _idtablestakingAdminEnd_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x41\x6f\x9b\x40\x10\x85\xef\xfc\x8a\xa7\x1c\x2a\x22\x55\x50\xf5\x88\xda\x46\x24\x76\x25\x4b\x56\x55\xc5\x5c\x7a\x8a\x96\x65\x30\x5b\xe3\x1d\xb4\x3b\x98\x54\x91\xff\x7b\xb5\x18\x9c\xb8\x8d\xf7\x82\x04\xf3\xde\xfb\x76\x66\x30\xfb\x8e\x9d\xe0\x7b\xcb\xc3\x6a\x51\xa8\xb2\xa5\x8d\xa8\x9d\xb1\x5b\xd4\x8e\xf7\xf8\xf4\xbc\x5a\x2c\x7f\x14\xab\xe2\x57\x91\xdf\xaf\x97\xf9\x62\xf1\xb8\xdc\x6c\xa2\x28\x4d\x51\x34\xc6\x43\x9c\xb2\x5e\x69\x31\x6c\x41\x75\x4d\x5a\xcc\x81\xda\x3f\x20\x5b\x79\x48\x43\xa0\x8e\x75\x03\x65\x2b\x78\x51\x4e\x3c\x14\x2c\x0d\x60\x4b\x49\x94\xa6\xc1\x67\x25\xd0\xbc\x2f\x8d\xa5\x49\x61\xab\x27\x3f\x31\x04\xdd\x9e\x0f\xf4\x24\xbc\x23\x7b\x11\xe7\x83\x76\x68\x8c\x6e\x5e\xc3\xce\xb2\x7e\x2c\xf9\x38\x7d\x77\x54\xf7\xa1\xc4\x72\x45\x1e\x83\x91\x06\xc6\xfa\xbe\xae\x8d\x36\x64\x65\x94\x51\xb0\x9b\xe3\x3c\xa6\xbc\x92\x64\x20\xb2\x28\x7b\xbd\x23\xf1\x51\xf4\x06\x20\x36\x95\xcf\xf0\xb2\x11\x67\xec\x36\xc3\x3d\x73\x7b\xbc\xc5\x4b\x14\x01\x40\x9a\x62\xcd\x5a\xb5\x38\x28\x67\x42\x57\x51\xb3\x83\x0a\x28\xe4\xc8\x6a\x82\xf0\x88\xbc\x5a\x60\xec\x3a\xf2\x6a\x6f\x2c\xb8\xfc\x4d\x5a\x46\x8b\x96\x04\x2a\xbc\x7c\xa4\x3a\xc3\x87\xff\x27\x94\x8c\x92\x53\x5e\xe7\xa8\x53\x8e\x62\xa5\xb5\x64\xc8\x7b\x69\x72\xad\xb9\xb7\x12\x88\x30\x9d\x34\x45\xc9\xce\xf1\xf0\x1e\x88\xfa\x37\x3f\x1c\x4f\x6d\x9d\xcc\x10\xf8\x8a\x60\x9f\x9c\x3c\xbe\x5c\x25\xfa\x16\x87\xd5\xc9\xde\xd9\xa9\x64\x7a\x8e\x65\x1b\x61\xa7\xb6\xf4\x53\x49\x73\x7b\x0e\x0c\xe7\xee\x0e\x9d\xb2\x46\xc7\x37\x0f\xdc\xb7\x15\x2c\xcb\xcc\x7d\x41\x7d\x9e\x76\x70\xbb\x39\x79\x1c\x4f\xed\xa0\x67\xd2\xbd\xd0\x9b\xbb\x5f\xdc\x24\xf1\x24\x79\xd7\x39\x3e\x50\xb5\x36\x5e\xc2\x28\x5f\x19\xae\x68\xc8\x56\x33\xfe\x69\xbd\xe2\xdb\xe8\x4a\x69\xd8\xa1\x62\xdc\xa0\xd8\xd2\xb0\x0c\xbf\xc0\x43\x18\x06\xb9\x0c\x9f\x67\xd0\x63\xf4\x37\x00\x00\xff\xff\xa5\x82\x19\x7e\x7c\x03\x00\x00" +var _idtablestakingAdminEnd_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\xcf\x6b\xdb\x4e\x10\xc5\xef\xfa\x2b\x1e\x3e\x04\x19\xbe\x48\xf0\x3d\x8a\xb6\x21\x3f\x5a\x30\xe4\x50\x6a\xd3\x6b\x58\xad\x46\xd6\xd6\xf2\x8c\xd8\x1d\x59\x2d\xc1\xff\x7b\x59\x49\x76\xe2\x26\xde\x8b\x40\x3b\xef\xbd\x8f\x66\x46\x6e\xdf\x89\x57\x7c\x6b\x65\x58\x3d\x6e\x4c\xd9\xd2\x5a\xcd\xce\xf1\x16\xb5\x97\x3d\x16\xef\x2f\x16\x49\x92\xe7\xd8\x34\x2e\x40\xbd\xe1\x60\xac\x3a\x61\x50\x5d\x93\x55\x77\xa0\xf6\x0f\x88\xab\x00\x6d\x08\xd4\x89\x6d\x60\xb8\x42\x50\xe3\x35\xc0\x80\x69\x80\x30\x65\x49\x9e\x47\x9f\x95\xc2\xca\xbe\x74\x4c\xb3\x82\xab\xe7\x30\x13\x44\xdd\x5e\x0e\xf4\xac\xb2\x23\xbe\x88\x0b\x51\x3b\x34\xce\x36\xaf\x61\x67\x59\x3f\x96\xfc\x37\xdf\x7b\xaa\xfb\x58\xc2\x52\x51\xc0\xe0\xb4\x81\xe3\xd0\xd7\xb5\xb3\x8e\x58\x47\x19\x45\xbb\x53\x5c\xc0\x9c\x57\x92\x0e\x44\x8c\xb2\xb7\x3b\xd2\x90\x24\x6f\x00\x52\x57\x85\x02\x2f\x6b\xf5\x8e\xb7\x05\xee\x45\xda\xe3\x12\x2f\x49\x02\x00\x79\x8e\x27\xb1\xa6\xc5\xc1\x78\x17\x5b\x87\x5a\x3c\x4c\x44\x21\x4f\x6c\x09\x2a\x23\xf2\xea\x11\x63\x6b\x71\x57\xed\x1d\x43\xca\x5f\x64\x75\xb4\x68\x49\x61\xe2\xcb\x1f\x54\x17\xb8\x79\x3f\x86\x6c\x94\x4c\x79\x9d\xa7\xce\x78\x4a\x8d\xb5\x5a\xc0\xf4\xda\xa4\xf7\xe2\xbd\x0c\x3f\x4d\xdb\xd3\x12\x37\x77\xd6\x4a\xcf\x1a\x01\x31\x9f\x3c\x47\x39\xd6\x7c\xc4\x65\xfe\xc5\x89\x27\x50\x5b\x67\x27\x26\x7c\x46\x4c\xcb\x82\x8a\x37\x5b\xca\x26\xaf\x4f\x57\x41\xbf\xa4\x71\x9f\x8a\x0f\x16\x2d\x9b\x9f\x63\xd9\x7a\xb2\xfb\x6e\xb4\x59\x9e\x83\xe3\xb9\xbd\x45\x67\xd8\xd9\x74\xf1\x20\x7d\x5b\x81\x45\x4f\xfc\x17\xf4\xe7\x25\x88\x6e\x8b\xc9\xe3\x38\x75\x89\x7e\x93\xed\x95\xde\xf4\xe0\xe2\x8b\xb2\x40\x7a\xd7\x75\x5e\x0e\x54\x3d\xb9\xa0\x71\xc2\xaf\x0c\x57\x34\xc4\xd5\x09\x7f\xda\xba\x74\x99\x5c\x29\x8d\xab\xb5\x19\x17\x2b\x65\x1a\xbe\xc6\x3f\xe3\x21\x0e\x85\x7c\x81\xff\x4f\xa0\xc7\xe4\x6f\x00\x00\x00\xff\xff\x8d\x3c\x5c\x65\x91\x03\x00\x00" func idtablestakingAdminEnd_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -2060,11 +2120,11 @@ func idtablestakingAdminEnd_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/end_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0x2e, 0x77, 0x4b, 0xfa, 0x66, 0x71, 0xc4, 0x59, 0x37, 0xe1, 0xf2, 0x5a, 0xec, 0x49, 0x7c, 0x75, 0x9f, 0xe7, 0x85, 0x42, 0x78, 0x76, 0xa5, 0x68, 0x96, 0xcc, 0x5, 0x54, 0xc2, 0xd4, 0x72}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8a, 0x39, 0xa5, 0x67, 0xa9, 0xac, 0xdd, 0x37, 0xb9, 0xd1, 0xa, 0x19, 0x7d, 0x6a, 0xea, 0xd1, 0xc7, 0x67, 0x66, 0x30, 0x20, 0x98, 0x41, 0x85, 0x6a, 0x3c, 0x10, 0x5, 0x47, 0x5f, 0xc4, 0x20}} return a, nil } -var _idtablestakingAdminEnd_epoch_change_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\x4f\x6b\xdb\x4e\x10\xbd\xeb\x53\x3c\x72\xf8\xa1\x40\x90\x7e\x94\xd2\x83\x68\x1b\x94\xd8\x01\x43\x28\x21\x56\x0f\x3d\x85\xd5\x6a\x14\x6d\x23\xef\x88\xdd\x91\x95\x10\xf2\xdd\xcb\xea\x8f\xdb\x34\x71\xe7\x62\xb0\xe6\xfd\x99\x7d\xcf\xec\x3a\x76\x82\xab\x96\x87\xcd\xaa\x50\x65\x4b\x5b\x51\x0f\xc6\xde\xa3\x76\xbc\xc3\xff\x8f\x9b\xd5\xfa\x5b\xb1\x29\x7e\x14\xf9\xc5\xf5\x3a\x5f\xad\x6e\xd7\xdb\x6d\x14\xa5\x29\x8a\xc6\x78\x88\x53\xd6\x2b\x2d\x86\x2d\xa8\xae\x49\x8b\xd9\x53\xfb\x04\xb2\x95\x87\x34\x04\xea\x58\x37\x50\xb6\x82\x17\xe5\xc4\x43\xc1\xd2\x00\xb6\x94\x44\x69\x1a\x78\x36\x02\xcd\xbb\xd2\x58\x9a\x11\xb6\xba\xf3\xb3\x87\x80\xdb\xf1\x9e\xee\x84\x1f\xc8\xbe\x92\xf3\x01\x3b\x34\x46\x37\xbf\xc5\x0e\xb0\x7e\x5c\x39\x9b\xbf\x3b\xaa\xfb\xb0\x62\xb9\x22\x8f\xc1\x48\x03\x63\x7d\x5f\xd7\x46\x1b\xb2\x32\xc2\x28\xd0\x2d\x72\x1e\xb3\x5e\x49\x32\x10\x59\x94\xbd\x7e\x20\xf1\x51\xf4\x87\x81\xd8\x54\x3e\xc3\xf3\x56\x9c\xb1\xf7\x19\x2e\x98\xdb\x97\xb3\x70\xdc\x8d\x7a\xe2\x5e\x32\x7c\xbf\x32\x8f\x9f\x3e\x9e\xe2\x39\x8a\x00\x20\x4d\x71\xcd\x5a\xb5\xd8\x2b\x67\xc2\x43\xa3\x66\x07\x15\xdc\x91\x23\xab\x09\xc2\xe3\x15\x9b\x15\xc6\x20\x90\x57\x3b\x63\xc1\xe5\x4f\xd2\x32\x52\xb4\x24\x50\xe1\xcf\x5b\xaa\x33\xfc\xf7\x36\xb4\x64\x84\x4c\x7a\x9d\xa3\x4e\x39\x8a\x95\xd6\x92\x21\xef\xa5\xc9\xb5\xe6\xde\x4a\x70\x84\x79\xd2\x14\x25\x3b\xc7\xc3\x7b\x46\xd4\xdf\xfa\x61\x3c\xb5\x75\xb2\x98\xc0\x17\x04\xfa\x64\xe2\xf8\x7c\xd4\xd1\xd7\x38\xb4\x29\x7b\xa7\x66\xc9\xfc\x3b\xae\x6d\x85\x9d\xba\xa7\x1b\x25\xcd\xe9\x41\x30\xcc\xf9\x39\x3a\x65\x8d\x8e\x4f\x2e\xb9\x6f\x2b\x58\x96\xc5\xf7\x2b\xd7\x87\x02\x04\xb6\x93\x89\xe3\x65\x7a\x0e\x7a\x24\xdd\x0b\x2d\x69\xbc\x39\x25\xf1\x24\xeb\x50\xd6\x22\x44\x3f\x65\x18\x1f\xd2\x3c\xfd\x07\x2a\xef\x3a\xc7\x7b\xaa\xae\x8d\x97\x50\x8a\xa3\xbb\x64\xab\xe5\xda\xa9\xa0\xf1\xd1\xd5\xd0\xc2\xd1\x88\x0f\x1e\x46\x5f\x97\x21\x3b\x72\x19\x3e\x2c\x77\xbd\x44\xbf\x02\x00\x00\xff\xff\xd9\x78\x1a\x48\xbe\x03\x00\x00" +var _idtablestakingAdminEnd_epoch_change_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x0c\x41\x82\x52\x7a\x10\x6d\x43\xfe\x34\x60\xc8\x21\xd4\x6e\xaf\x61\xb5\x1a\x59\x5b\x4b\x3b\x62\x77\x64\x25\x04\x7f\xf7\xb2\xfa\xe3\x36\x75\xdc\xbd\x08\xb4\x33\xef\xfd\x66\xe7\x99\xa6\x65\x27\xb8\xaf\xb9\x5f\xdd\x6d\x54\x5e\xd3\x5a\xd4\xce\xd8\x2d\x4a\xc7\x0d\x16\xa7\x17\x8b\x28\x4a\x53\x6c\x2a\xe3\x21\x4e\x59\xaf\xb4\x18\xb6\xa0\xb2\x24\x2d\x66\x4f\xf5\x0b\xc8\x16\x1e\x52\x11\xa8\x65\x5d\x41\xd9\x02\x5e\x94\x13\x0f\x05\x4b\x3d\xd8\x52\x12\xa5\x69\xd0\x59\x09\x34\x37\xb9\xb1\x34\x75\xd8\xe2\xc9\x4f\x04\xa1\xaf\xe1\x3d\x3d\x09\xef\xc8\xbe\xb1\xf3\xa1\xb7\xaf\x8c\xae\xfe\x98\x1d\xdb\xba\xa1\xe4\x72\xba\x77\x54\x76\xa1\xc4\x72\x41\x1e\xbd\x91\x0a\xc6\xfa\xae\x2c\x8d\x36\x64\x65\x68\xa3\x20\x37\xdb\x79\x4c\x7e\x39\x49\x4f\x64\x91\x77\x7a\x47\xe2\xa3\xe8\x2f\x80\xd8\x14\x3e\xc3\xeb\x5a\x9c\xb1\xdb\x0c\x37\xcc\xf5\xe1\x32\x0c\xf7\xa8\x5e\xb8\x93\x0c\x3f\xee\xcd\xf3\xa7\x8f\x4b\xbc\x46\x11\x00\xa4\x29\x1e\x58\xab\x1a\x7b\xe5\x4c\x78\x4d\x94\xec\xa0\x02\x1d\x39\xb2\x9a\x20\x3c\x4c\xb1\xba\xc3\xf0\xda\xb8\x2e\x1a\x63\xc1\xf9\x2f\xd2\x32\x48\xd4\x24\x50\xe1\xe7\x77\x2a\x33\x5c\x9c\x6e\x26\x19\x5a\x46\xbf\xd6\x51\xab\x1c\xc5\x4a\x6b\xc9\xa0\x3a\xa9\xe2\x1b\x76\x8e\xfb\x9f\xaa\xee\x68\x89\x8b\x6b\xad\xb9\xb3\x12\x00\x31\x9d\x34\x45\x3e\xd4\xbc\xc7\xa5\xfe\xc5\x09\xc7\x53\x5d\x26\x33\x13\xbe\x20\xb8\x25\x5e\xd8\xa9\x2d\x25\xa3\xd6\xe7\xb3\xa0\x5f\xe3\x10\xb1\xec\x9d\xec\x25\xd3\x77\x28\x5b\x8f\x72\x8f\x4a\xaa\xe5\xd1\x38\x9c\xab\x2b\xb4\xca\x1a\x1d\x2f\x6e\xb9\xab\x0b\x58\x96\x99\xff\x0d\xfd\x31\x17\x41\x6d\x31\x6a\x1c\xc6\x57\xa2\x67\xd2\x9d\xd0\xbc\xa4\x93\x91\x12\x4f\xf2\x2d\x64\x78\x13\x12\x31\xae\x36\x3e\x2e\x79\xf9\x9f\xae\xeb\xb6\x75\xbc\xa7\xe2\xc1\x78\x09\x59\x39\x5b\x4b\xb6\x98\xa7\x1d\x73\x1b\x9f\x2d\x0d\xe1\x1c\x40\x7c\x60\x18\xb8\x6e\xc3\x0e\xc9\x65\xf8\x30\xcf\x75\x88\x7e\x07\x00\x00\xff\xff\x68\xee\x57\x96\xd3\x03\x00\x00" func idtablestakingAdminEnd_epoch_change_payoutCdcBytes() ([]byte, error) { return bindataRead( @@ -2080,11 +2140,11 @@ func idtablestakingAdminEnd_epoch_change_payoutCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/end_epoch_change_payout.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1a, 0x52, 0xcb, 0x9a, 0xf4, 0xb3, 0x83, 0x34, 0xe5, 0xe, 0xf1, 0xbb, 0x6d, 0x4c, 0xb8, 0x6e, 0x10, 0x16, 0x8c, 0x33, 0xcc, 0x52, 0xb7, 0x29, 0x5d, 0xbe, 0xa6, 0xbb, 0xe0, 0x87, 0xb7, 0x28}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x3f, 0xf, 0xc8, 0x75, 0x2e, 0x7b, 0xe1, 0x35, 0x4d, 0x36, 0x48, 0x6d, 0x3c, 0xa5, 0x9c, 0x43, 0x74, 0xdf, 0x63, 0xab, 0xba, 0xae, 0x2c, 0xf9, 0xf4, 0xf4, 0xa, 0xb6, 0xd9, 0xbb, 0xb3}} return a, nil } -var _idtablestakingAdminEnd_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x8b\x9c\x40\x10\x85\xef\xfe\x8a\xc7\x1e\x82\x03\x41\x73\x96\x24\x8b\x1b\x27\x20\x0c\x21\xac\x5e\x72\xec\x69\xcb\xb1\x13\xa7\x4b\xba\xcb\x75\x61\x99\xff\x1e\x5a\xc7\x21\xd9\x99\xa9\x8b\xa0\x55\xef\x7d\x55\x4f\x73\x1c\xd8\x09\xbe\xf7\x3c\x95\x45\xad\xf6\x3d\x55\xa2\xfe\x18\x7b\x40\xeb\xf8\x88\x4f\xaf\x65\xb1\xfd\x51\x97\xf5\xaf\x3a\x7f\xda\x6d\xf3\xa2\x78\xde\x56\x55\x14\xa5\x29\xea\xce\x78\x88\x53\xd6\x2b\x2d\x86\x2d\xc8\x36\x1e\xd2\x11\xfc\x59\x41\x8d\xf3\x87\x8f\x98\x3a\xa3\x3b\x38\x6a\xc7\xd0\x62\xb9\x21\x8f\x20\x31\x19\xe9\x60\xac\x1f\xdb\xd6\x68\x43\x56\xe6\x51\x8a\xa2\x7f\x64\x63\xd3\xf8\x0c\x6f\x95\x38\x63\x0f\x19\x9e\x98\xfb\xd3\x06\x6f\x51\x04\x00\x69\x8a\x1d\x6b\xd5\xe3\x45\x39\x13\xe0\xd1\xb2\x83\x0a\x56\xe4\xc8\x6a\x82\xf0\x8c\x54\x16\x98\x97\x43\xde\x1c\x8d\x05\xef\x7f\x93\x96\x59\xa2\x27\x81\x0a\x2f\x9f\xa9\xcd\xf0\xe1\xfa\x10\xc9\x3c\xb2\xf8\x0d\x8e\x06\xe5\x28\x56\x5a\x4b\x86\x7c\x94\x2e\xd7\x9a\x47\x2b\x81\x08\xe7\x4a\x53\xec\xd9\x39\x9e\x6e\x81\xa8\xf7\xfe\xa1\x3c\xf5\x6d\xb2\x42\xe0\x0b\x82\x7c\xb2\x68\x7c\xbe\x4b\xf4\x35\x0e\x09\x65\x37\xa2\x4b\xce\xcf\xb9\xad\x12\x76\xea\x40\x3f\x95\x74\x9b\x8b\x61\xa8\xc7\x47\x0c\xca\x1a\x1d\x3f\x7c\xe3\xb1\x6f\x60\x59\x56\xee\xff\xa8\x2f\x69\x06\xb5\x87\x45\xe3\xb4\x9c\x83\x5e\x49\x8f\x42\x6b\x1a\x57\xab\x24\x9e\x24\x1f\x06\xc7\x2f\xd4\xec\x8c\x97\x90\xe5\xe6\x5e\x2f\xd9\x66\xe5\x5e\xfe\x9b\x78\xf5\x3a\xfd\x0d\x00\x00\xff\xff\x5c\x5c\x6f\xbd\xa5\x02\x00\x00" +var _idtablestakingAdminEnd_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x0f\x1f\x82\x0c\x45\xba\x8b\xb6\xc1\x69\x28\x04\x72\x28\x75\xe8\x7d\xbc\x1a\x59\xdb\xae\x77\xc4\xee\x6c\x54\x08\xfe\xef\x65\x57\x56\x68\xeb\x64\x2e\x02\xcd\xcc\x7b\xdf\xe8\xc9\x9e\x26\x09\x8a\xaf\x4e\xe6\x87\xfb\x27\x3a\x38\xde\x2b\xfd\xb2\xfe\x88\x21\xc8\x09\x9b\xeb\xc6\xa6\xaa\xda\x16\x4f\xa3\x8d\xd0\x40\x3e\x92\x51\x2b\x1e\xec\xfb\x08\x1d\x19\xf1\xb2\x4f\xa9\x34\x3e\x60\x1e\xad\x19\x11\x78\x48\x79\xc4\x4b\xcf\x11\x59\x62\xb6\x3a\xc2\xfa\x98\x86\xc1\x1a\xcb\x5e\xcb\x2a\x57\xd5\x5f\xb2\xb5\xed\x63\x87\x97\xbd\x06\xeb\x8f\x1d\xee\x44\xdc\x79\x8b\x97\xaa\x02\x80\xb6\xc5\xa3\x18\x72\x78\xa6\x60\x33\x21\x06\x09\xa0\x6c\xc5\x81\xbd\x61\xa8\x14\xa4\x87\x7b\x94\x0b\xb0\xeb\x4f\xd6\x43\x0e\x3f\xd9\x68\x91\x70\xac\xa0\xfc\xf2\x3b\x0f\x1d\x6e\xae\xaf\x6d\xca\xca\xe2\x37\x05\x9e\x28\x70\x4d\xc6\x68\x07\x4a\x3a\xd6\x77\x12\x82\xcc\x3f\xc8\x25\xde\xe2\x66\x67\x8c\x24\xaf\x19\x10\x97\x6a\x5b\x1c\xca\xcc\x5b\x5c\xf4\x3f\x4e\xae\xc8\x6e\x68\x56\x26\x7c\x42\x76\x6b\xa2\x4a\xa0\x23\x37\x8b\xd6\xc7\x77\x41\x3f\xd7\x39\xb6\xee\x8d\x3c\x9b\xcb\xb3\x8c\xed\x17\xb9\x6f\xa4\xe3\xf6\xd5\x38\xd7\xed\x2d\x26\xf2\xd6\xd4\x9b\x2f\x92\x5c\x0f\x2f\xba\xf2\xff\x43\xff\x1a\x72\x56\xdb\x2c\x1a\xe7\xe5\x2b\xf1\x6f\x36\x49\x79\x0d\xe9\xea\xa4\x26\xb2\xee\xa6\x29\xc8\x33\xf7\x8f\x36\x6a\x8e\x78\xfb\xde\x2c\xfb\x7e\xe5\x5e\x7e\xa7\x7a\xf5\x3a\xff\x09\x00\x00\xff\xff\x12\x49\x6b\xee\xba\x02\x00\x00" func idtablestakingAdminEnd_stakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2100,11 +2160,11 @@ func idtablestakingAdminEnd_stakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/end_staking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0xd, 0xea, 0x6, 0x3d, 0x16, 0x7, 0x5e, 0x7e, 0xb8, 0x24, 0x9e, 0xe2, 0x6a, 0x6d, 0x4d, 0xf2, 0x73, 0x20, 0x5, 0x38, 0xd9, 0xac, 0xef, 0x64, 0x7d, 0xcf, 0x59, 0x67, 0x35, 0xaf, 0xd5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0xb3, 0xec, 0x2e, 0x69, 0xa9, 0x17, 0x98, 0x82, 0xc1, 0xe2, 0x4f, 0xf2, 0xd4, 0x82, 0xe9, 0x56, 0x9d, 0xb1, 0xdc, 0xbe, 0x9a, 0xd7, 0x2d, 0x12, 0x75, 0x92, 0x64, 0x6, 0x1d, 0x90, 0x10}} return a, nil } -var _idtablestakingAdminMove_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\xeb\x9b\x40\x10\xc5\xef\x7e\x8a\xc7\xff\x50\xcc\x45\x4b\x8f\xd2\x36\xd8\x68\x41\x08\xa5\x44\x2f\x3d\xae\x9b\x31\xda\xe8\x8e\xac\x63\x0c\x84\x7c\xf7\xb2\x9a\x94\xa4\xcd\x7f\x2e\x82\xcc\xbe\xf7\x9b\xf7\x9a\xae\x67\x2b\xf8\xde\xf2\x94\x25\x85\x2a\x5b\xca\x45\x1d\x1b\x73\x40\x65\xb9\xc3\xc7\x73\x96\xa4\x3f\x8a\xac\xf8\x55\xc4\xdf\xb6\x69\x9c\x24\xbb\x34\xcf\x3d\x2f\x0c\x51\xd4\xcd\x00\xb1\xca\x0c\x4a\x4b\xc3\x06\x1d\x9f\x68\x80\xf0\x91\xcc\x80\x92\x64\x22\x32\x28\x47\x7d\x24\x19\x3c\xef\x71\xf3\xe2\x79\x00\x10\x86\xd8\xb2\x56\x2d\x4e\xca\x36\xce\x1a\x15\x5b\x28\x58\xaa\xc8\x92\xd1\x04\x61\x48\x4d\xc8\x12\xcc\x68\x88\xf7\x5d\x63\xc0\xe5\x6f\xd2\x32\x4b\xb4\x24\x50\xee\xe7\x8e\xaa\x08\x1f\xfe\x3f\x23\x98\x9f\x2c\x7e\xbd\xa5\x5e\x59\xf2\x95\xd6\x12\x21\x1e\xa5\x8e\xb5\xe6\xd1\xc8\x0a\x97\x79\xe1\x06\x55\xb2\xb5\x3c\xbd\x02\x51\xff\xfa\xbb\x19\xa8\xad\x82\x3b\x04\xbe\xc0\xc9\x07\x8b\xc6\xe7\x77\x89\xbe\xfa\x2e\xdf\xe8\x45\xf0\xc1\xed\x3b\xaf\xe5\xc2\x56\x1d\xe8\xa7\x92\x7a\xf5\xd7\xd0\xcd\x7a\x8d\x5e\x99\x46\xfb\x6f\x1b\x1e\xdb\x3d\x0c\xcb\x9d\xfb\x89\x7a\xb8\xb5\x39\xf3\xbd\x2d\x1a\xd7\x25\x0e\x3a\x93\x1e\x85\x1e\x6e\x7f\xba\x24\x70\x7d\x16\x73\x9b\xbe\xa1\x29\xed\x59\xd7\x1b\x97\x16\xd9\x08\x9f\xee\x4a\xd7\x3f\x01\x00\x00\xff\xff\x77\xf2\xa1\x3f\x41\x02\x00\x00" +var _idtablestakingAdminMove_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\xab\x9b\x40\x14\x85\xf7\xfe\x8a\x83\x8b\x87\xd9\x28\x74\x29\x6d\x1f\xaf\x49\x0b\x81\x2e\x4a\x13\xba\xbf\x4e\xae\xd1\x46\xe7\xca\xcc\x35\x16\x42\xfe\x7b\x99\x31\x29\x49\x93\x37\x1b\x41\x8f\xe7\x7c\x73\x4e\xdb\x0f\xe2\x14\xdf\x3a\x99\xd6\xab\x2d\x55\x1d\x6f\x94\x0e\xad\xdd\xa3\x76\xd2\x23\x7d\xfc\x90\x26\x49\x51\x60\xdb\xb4\x1e\xea\xc8\x7a\x32\xda\x8a\x45\x2f\x47\xf6\x50\x39\xb0\xf5\xa8\x58\x27\x66\x8b\x6a\x34\x07\x56\x9f\x24\xb7\xca\x53\x92\x00\x40\x51\xe0\xbb\x18\xea\x70\x24\xd7\x06\x7f\xd4\xe2\x40\x70\x5c\xb3\x63\x6b\x18\x2a\xd0\x86\xb1\x5e\x21\xe6\xe3\x6d\xd7\xb7\x16\x52\xfd\x66\xa3\xd1\xa2\x63\x05\x85\x97\x3f\xb9\x2e\xf1\xf2\xc8\x9a\xc7\x5f\xe6\xbc\xc1\xf1\x40\x8e\x33\x32\x46\x4b\xd0\xa8\x4d\xf6\x45\x9c\x93\xe9\x17\x75\x23\x2f\xf0\xf2\x66\x8c\x8c\x56\x17\x38\x45\xfd\x85\xb1\x8a\x9a\x67\x5c\xf4\x3f\x4e\x38\x9e\xbb\x3a\xbf\x32\xe1\x13\x42\x5a\xee\x55\x1c\xed\x39\x9f\xbd\x3e\xbe\x0b\xfa\x39\x0b\xa5\x97\x4f\xd6\xc8\x2f\xcf\x28\xdb\xcc\x76\x3f\x48\x9b\xc5\xbf\xe0\x70\x5e\x5f\x31\x90\x6d\x4d\x96\x2e\x65\xec\x76\xb0\xa2\x57\xfe\x3b\x7a\x7f\x99\x38\x72\xa6\xb3\xc7\x79\x6e\x89\xff\xb0\x19\x95\x6f\x3a\xb8\xbb\x51\x1e\x66\xde\xc6\x91\x33\xcb\xd3\xd7\x41\x4c\xb3\x0c\xad\xb1\x2b\xf1\xe1\xea\x74\xfe\x1b\x00\x00\xff\xff\x57\x3b\x5b\xb4\x56\x02\x00\x00" func idtablestakingAdminMove_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2120,11 +2180,11 @@ func idtablestakingAdminMove_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/move_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0xad, 0xa9, 0xd9, 0x5a, 0x58, 0xda, 0xa3, 0xa5, 0xb6, 0xdc, 0xd5, 0x51, 0x86, 0xea, 0xf2, 0xf2, 0x5, 0x4d, 0x71, 0x5d, 0x15, 0x82, 0xd9, 0x75, 0x7e, 0x9b, 0xf3, 0x4a, 0xb1, 0xf6, 0x30}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0x12, 0x76, 0x16, 0xfb, 0xc4, 0x12, 0x4, 0xa9, 0x4, 0x1, 0x23, 0xe9, 0x22, 0x31, 0x3c, 0x95, 0x93, 0x2e, 0x67, 0x21, 0x9a, 0xcb, 0xeb, 0x32, 0x88, 0x84, 0x4b, 0x2c, 0x36, 0x3e, 0xea}} return a, nil } -var _idtablestakingAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x8f\x1c\x8a\x0d\x45\x6e\xaf\xa2\x69\x50\x23\x17\x0c\xa1\x14\x4b\x97\x1e\xc7\xab\x51\xa4\x66\xb5\x2b\x66\x47\x75\x4c\xc8\x7f\x2f\x2b\x59\x25\x6e\xdd\xb9\x08\xc4\xcc\x7b\xdf\xbc\xd9\xae\x1f\xbc\x28\xbe\x5a\x7f\xdc\x15\x15\x1d\x2c\x97\x4a\x4f\x9d\x7b\x44\x23\xbe\xc7\x87\xe7\x5d\xb1\xfd\x56\xed\xaa\x1f\x55\xfe\xe5\x61\x9b\x17\xc5\x7e\x5b\x96\x49\xb2\xd9\xa0\x6a\xbb\x00\x15\x72\x81\x8c\x76\xde\x61\xa0\x53\x80\xf0\x91\xa4\x0e\x50\x0f\xb2\x16\xda\x32\x82\xd2\x13\xd7\x70\xbe\xe6\x90\x24\x6f\x27\x5e\x92\x04\x00\x36\x1b\x3c\x78\x43\x16\xbf\x48\xba\x88\x80\xc6\x0b\x08\xc2\x0d\x0b\x3b\xc3\x51\x2d\x2a\xed\x0a\x4c\x88\xc8\xeb\xbe\x73\xf0\x87\x9f\x6c\x74\x92\xb0\xac\xa0\xf8\x73\xcf\x4d\x86\x77\xff\xae\x93\x4e\x23\xb3\xdf\x20\x3c\x90\xf0\x8a\x8c\xd1\x0c\xf9\xa8\x6d\x6e\x8c\x1f\x9d\xae\xf1\x32\x35\x9c\xa1\x0e\x5e\xc4\x1f\xaf\x81\xd0\xdf\xfe\xb1\x02\xdb\x26\x5d\x20\x70\x8b\x28\x9f\xce\x1a\x9f\xfe\x4b\xf4\x79\x15\x73\xce\xae\x1c\x20\x3d\x7f\xa7\xb6\x52\xbd\xd0\x23\x7f\x27\x6d\xd7\x7f\x0c\x63\xdd\xdd\x61\x20\xd7\x99\xd5\xcd\xbd\x1f\x6d\x4c\x59\x17\xee\x0b\xea\x70\xbe\xea\xc4\x77\x33\x6b\xbc\xce\x71\xf0\x33\x9b\x51\xf9\xcd\xee\x31\xcd\x30\xf6\x3d\xc9\x09\xb7\x97\x7b\xa5\x86\xac\x19\x2d\x29\xef\xe7\x4b\xaf\xd6\xd7\x03\x48\x07\x3a\x2d\x2d\x8d\x97\xed\xe0\x4d\x7b\x1f\x43\x66\xc9\xf0\xf1\xfd\xf2\x50\xca\xd9\x26\x5b\xfc\x16\xb2\xd7\xdf\x01\x00\x00\xff\xff\xdb\x4f\x91\x9f\x99\x02\x00\x00" +var _idtablestakingAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x0f\x1f\x82\x04\x45\xa2\x57\xd1\x34\xa4\x49\x0b\x81\x1e\x4a\x1c\x7a\x1f\xaf\x46\x91\x9a\xd5\x8e\x98\x1d\xd5\x35\x21\xff\xbd\xac\x64\x95\xa4\x76\xf6\x22\x90\xde\xbe\xf7\xe9\xcd\xf4\xc3\x28\x6a\xf8\xe6\x65\x7f\x77\xfb\x40\x3b\xcf\x5b\xa3\xa7\x3e\x3c\xa2\x55\x19\xb0\x39\xfd\xb0\xc9\xb2\xaa\xc2\x43\xd7\x47\x98\x52\x88\xe4\xac\x97\x80\x91\x0e\x11\xca\x7b\xd2\x26\xc2\x04\xe4\x3d\xac\x63\x44\xa3\x27\x6e\x10\xa4\xe1\x98\x65\xaf\x6f\x3c\x67\x19\x00\x54\x15\xbe\x8b\x23\x8f\xdf\xa4\x7d\xca\x41\x2b\x0a\x82\x72\xcb\xca\xc1\x71\x72\x4b\x4e\x77\xb7\x98\x39\x70\xdd\x0c\x7d\x80\xec\x7e\xb1\xb3\xd9\xc2\xb3\x81\xd2\xcb\x7b\x6e\x6b\x5c\x9c\x32\x97\xf3\x95\x25\x6f\x54\x1e\x49\x39\x27\xe7\xac\x06\x4d\xd6\xe5\x5f\x44\x55\xf6\x3f\xc9\x4f\x5c\xe0\xe2\xda\x39\x99\x82\x15\x78\x9e\xf5\x47\xc6\xdd\xac\x39\xc7\x45\xff\xe3\xa4\x13\xd9\xb7\xe5\xca\x84\x4b\xa4\xb4\x32\x9a\x28\x3d\x72\xb9\x78\x7d\x7a\x17\xf4\x73\x9e\xca\xaf\xcf\x4c\xa5\x3c\x3e\x67\xd9\x76\xb1\xfb\x41\xd6\x15\xff\x82\xd3\xb9\xba\xc2\x48\xa1\x77\xf9\xe6\x46\x26\x9f\xca\xb7\x95\xff\x0d\x7d\x3c\x8e\x7a\xe6\xdc\x2c\x1e\x2f\x4b\x4b\xfc\x87\xdd\x64\xfc\xaa\x83\x54\x72\x9c\x86\x81\xf4\x80\xcb\xb7\xff\x57\x3a\xf2\x6e\xf2\x64\x7c\xbf\x2c\x40\x5e\x9c\x2f\xa2\x1c\xe9\xb0\x4a\x5a\xd1\xaf\xa3\xb8\xee\x26\x95\xcd\x5a\xe3\xe3\x87\x75\x7f\xb6\x4b\x4c\xbd\xe6\xad\x64\x2f\x7f\x03\x00\x00\xff\xff\xca\xd7\x91\xe9\xae\x02\x00\x00" func idtablestakingAdminPay_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -2140,11 +2200,11 @@ func idtablestakingAdminPay_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/pay_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x58, 0xb8, 0x76, 0x47, 0x5f, 0xe1, 0x22, 0x4e, 0x3c, 0x15, 0x6d, 0xa6, 0xea, 0x98, 0x7f, 0xf6, 0x3e, 0x5, 0x2f, 0x90, 0x61, 0xb2, 0x6c, 0xce, 0x7c, 0xb9, 0x8a, 0x26, 0x93, 0x47, 0xdb, 0x72}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x72, 0xa1, 0x77, 0xd1, 0xb0, 0xeb, 0xf3, 0x3e, 0x3d, 0x4e, 0x76, 0xb5, 0xee, 0x90, 0xec, 0xf4, 0xd4, 0xa5, 0x89, 0xb1, 0xe2, 0xc2, 0xf1, 0x5b, 0x49, 0x6b, 0x10, 0x62, 0xf2, 0x54, 0xaf, 0x4a}} return a, nil } -var _idtablestakingAdminRemove_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x4f\x8b\xdb\x30\x10\xc5\xcf\xf1\xa7\x78\xe4\x50\x1c\x68\xed\x9e\x43\xd3\xc5\xad\x53\x30\x84\xdd\x92\xf8\x52\x96\x3d\x28\xf6\x38\x56\xab\x48\x46\x9a\xfc\x63\xc9\x77\x2f\xb2\xec\x76\x77\x9b\xea\x62\x90\x46\x6f\x7e\x9a\xf7\x2c\xf7\x9d\xb1\x8c\x6f\xca\x9c\x8a\xbc\x14\x5b\x45\x1b\x16\xbf\xa4\xde\xa1\xb1\x66\x8f\x8f\xe7\x22\x5f\xde\x97\x45\xf9\xa3\xcc\xbe\xac\x96\x59\x9e\xaf\x97\x9b\x4d\x14\xa5\x29\xca\x56\x3a\xb0\x15\xda\x89\x8a\xa5\xd1\xb0\xb4\x37\x47\x72\xd0\xa6\x26\x14\xb9\x0b\x0a\xdc\x12\x94\x74\x0c\xd3\x40\x74\x9d\x35\x47\xaa\xfb\x12\x07\xa9\xbd\x8e\x2f\x28\x72\xb0\xef\x9d\xc0\xef\x14\x0d\x84\xbe\xf8\x0b\xe1\xcc\x21\x7f\xc0\xfd\x43\x09\x3a\x7b\x21\xa1\x2c\x89\xfa\x02\xa9\xfb\x73\x59\x93\x66\xc9\x97\xa0\xf0\x1e\xdc\x4a\xd7\xeb\xbe\x40\x3b\x49\xa5\x60\xe9\x48\x96\x11\x6b\xc3\xfe\xd2\xbe\x33\x4c\x9a\x67\x51\xf4\xa2\x32\x96\xb5\x9b\xe3\x71\xc3\x56\xea\xdd\xd3\x0c\xcf\x51\x04\x00\x69\x8a\x95\xa9\x84\xc2\x51\x58\xe9\xdb\xa0\x31\x16\x02\x96\x1a\xb2\xa4\x2b\x02\x9b\xf1\x21\xfd\x10\x91\xd5\x7b\xa9\x61\xb6\x3f\xa9\xe2\x5e\x42\x11\x43\xf8\xcd\x35\x35\x73\xbc\xfb\x77\xe0\x49\x7f\x25\xf4\xeb\x2c\x75\xc2\x52\x2c\xaa\x8a\xe7\xc8\x0e\xdc\x66\x55\x65\x0e\x9a\x3d\x11\x86\x95\xa6\xd8\x1a\x6b\xcd\xe9\x16\x88\x78\xdb\xdf\x2f\x47\xaa\x49\x46\x08\x2c\xe0\xe5\x93\xa0\xf1\xe9\xbf\x44\x9f\x63\xef\xe3\xfc\x46\x44\x92\xe1\xdb\x97\x6d\xd8\x58\xb1\xa3\xef\x82\xdb\xd9\x9f\x86\x7e\xdd\xdd\xa1\x13\x5a\x56\xf1\xf4\xab\x39\x28\xef\x3d\x8f\xdc\xaf\xa8\xdd\x90\xbb\x9e\x6f\x1a\x34\xae\x61\x1c\x74\xa6\xea\xc0\x84\xe7\x68\xe2\xc7\xe8\xd3\xe3\x53\xb1\xb8\xc5\xb4\x23\xce\x86\x98\xad\xa4\xe3\xf8\x2f\xcc\x2d\x10\x9f\xa4\x31\x96\x21\xa6\x7d\x68\x5d\x78\xcc\x74\x16\x45\x93\x34\x1d\x92\x0d\x12\x55\x1b\xd2\x1d\x4d\xbc\xff\x81\xa3\x34\xeb\x70\x2c\x35\x64\xed\x3c\xe4\x64\x20\x7c\x7c\x5d\xf1\x84\x05\xb4\x54\xd1\xe4\x1a\x64\x1d\x71\xf0\x6a\xfc\x2d\x7a\x80\xc1\x40\x4d\x27\x08\xa5\xcc\xe9\x83\xdf\xbd\x6d\x61\xe2\xde\x3c\x76\xe8\x3b\x0e\xef\xfa\x3b\x00\x00\xff\xff\x88\x87\x14\x09\xde\x03\x00\x00" +var _idtablestakingAdminRemove_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x4f\x6b\xdb\x40\x10\xc5\xcf\xd6\xa7\x78\xf8\x10\x64\x68\xa5\xbb\x69\x1a\xd2\x9a\x82\x21\x34\x25\x31\xbd\x84\x1c\xc6\xd2\xc8\xda\x76\xbd\x2b\x76\xc7\x76\x4c\xf0\x77\x2f\xa3\x95\xda\xfc\x71\xf7\x22\xd8\x99\x79\xf3\xdb\x99\x27\xb3\xed\x7c\x10\x7c\xb3\xfe\xb0\x5c\xac\x68\x6d\xf9\x5e\xe8\xb7\x71\x1b\x34\xc1\x6f\x31\x7d\x1f\x98\x66\x59\x59\x62\xd5\x9a\x08\x09\xe4\x22\x55\x62\xbc\x43\xe0\xad\xdf\x73\x84\xf3\x35\x63\xb9\x88\xa9\x5e\x5a\x86\x35\x51\xe0\x1b\x50\xd7\x05\xbf\xe7\xba\x4f\x89\x30\x4e\x75\x34\x61\xb9\x80\x68\x83\x02\x7a\xb3\x6c\x40\xee\xa8\x05\x29\x16\xb1\xb8\xc5\xf7\xdb\x15\xf8\x49\x85\xc8\x06\xa6\xfa\x08\xe3\xfa\xb8\xa9\xd9\x89\x91\x63\x52\xf8\x00\x69\x4d\xec\x75\x5f\xa0\x1d\x8c\xb5\x08\xbc\xe7\x20\xc8\x9d\x17\x2d\xda\x76\x5e\xd8\xc9\x2c\xcb\x5e\x64\xe6\xa6\x8e\x73\x3c\xdc\x4b\x30\x6e\xf3\x38\xc3\x73\x96\x01\x40\x59\xe2\xc6\x57\x64\xb1\xa7\x60\xb4\x0d\x1a\x1f\x40\x08\xdc\x70\x60\x57\x31\xc4\x8f\x0f\xe9\x27\x85\xeb\x7a\x6b\x1c\xfc\xfa\x17\x57\xd2\x4b\x58\x16\x90\x5e\xde\x71\x33\xc7\xc5\xfb\xa9\x16\x7d\x49\xea\xd7\x05\xee\x28\x70\x4e\x55\x25\x73\xd0\x4e\xda\xfc\x8b\x0f\xc1\x1f\x7e\x92\xdd\xf1\x0c\x17\xd7\x55\xe5\x77\x4e\x14\x10\xc3\x29\x4b\xac\xfb\x9c\x73\x5c\xf4\x16\x47\x4f\x64\xdb\x14\x23\x13\x2e\xa1\xdd\x8a\x28\x3e\xd0\x86\x8b\xa4\xf5\xe9\xbf\xa0\x9f\x73\x5d\xef\xfc\x8c\x6f\x8a\xe1\xdb\xa7\xdd\x27\xb9\x1f\x24\xed\xec\x6f\x63\x3d\x57\x57\xe8\xc8\x99\x2a\x9f\x7e\xf5\x3b\xab\x96\x90\x91\xff\x15\x7d\x1c\xcc\xd8\x73\x4e\x93\xc6\x29\x4d\x89\x9f\xb8\xda\x09\xe3\x39\x9b\xe8\x74\xd5\x54\x6a\x96\xcb\x73\x4c\x1b\x96\xeb\xc1\x7d\x37\x26\x4a\xfe\x0f\xe6\x1c\x88\x1a\x6c\x74\x6b\x72\x6f\xef\xe5\x61\x36\xd3\x59\x96\x4d\xca\x72\x30\x3c\x98\xaa\x36\x99\x3e\x9b\xa8\x2d\x12\xc7\xca\xdf\xa5\xb0\x71\x30\x75\x54\xc8\xc9\x40\xf8\xf0\x3a\xe3\x11\x97\x70\xc6\x66\x93\x53\x92\x8d\x2c\x69\x67\xe3\xdf\xd2\x03\x0c\x8b\x74\x7c\x00\x59\xeb\x0f\x1f\xf5\xf6\xfc\x2a\x8b\xf8\xe6\xb1\x43\xdf\x71\x78\xa7\x3f\x01\x00\x00\xff\xff\x5e\x32\x19\xb8\xf3\x03\x00\x00" func idtablestakingAdminRemove_approved_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2160,11 +2220,11 @@ func idtablestakingAdminRemove_approved_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/remove_approved_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x19, 0xc1, 0x2b, 0xce, 0x80, 0x31, 0x1b, 0xd, 0xa9, 0x5d, 0x5b, 0x5e, 0x54, 0x71, 0xac, 0x23, 0xd6, 0x3e, 0xd2, 0x88, 0xb2, 0x31, 0xc2, 0x94, 0x49, 0x37, 0x6a, 0xd2, 0x9c, 0xd5, 0xfb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x6e, 0x8d, 0x79, 0xfb, 0x33, 0x46, 0x8c, 0x90, 0xf0, 0x5b, 0xed, 0x99, 0x74, 0x18, 0xe0, 0x89, 0x87, 0xdb, 0x8d, 0x1e, 0x5, 0xba, 0x54, 0x1, 0x90, 0xdb, 0x87, 0xa8, 0x8f, 0x79, 0x8d}} return a, nil } -var _idtablestakingAdminRemove_invalid_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xc1\x6a\xdb\x40\x10\x86\xef\x7a\x8a\x9f\x1c\x8a\x0c\x45\xea\x59\xb4\x0d\x4a\xe5\x82\xc0\x84\x12\xe9\xd2\xe3\x7a\x35\xb2\xa6\x95\x77\xc4\xee\xc8\x0e\x04\xbf\x7b\x59\xd9\x0e\x49\x93\xcc\x45\x20\xcd\x7e\xff\x37\x3b\xe2\xfd\x24\x5e\xf1\x73\x94\x63\x5d\xb5\x66\x3b\x52\xa3\xe6\x2f\xbb\x1d\x7a\x2f\x7b\x7c\x79\xac\xab\xf5\x7d\x5b\xb7\xbf\xdb\xf2\x6e\xb3\x2e\xab\xea\x61\xdd\x34\x49\x92\xe7\x68\x07\x0e\x50\x6f\x5c\x30\x56\x59\x1c\xc8\x75\x01\x3a\x10\xc2\x85\x60\xe6\xe5\xc3\x67\x1c\x07\xb6\x03\x3c\xf5\x73\x6c\x71\xd2\x51\x40\x44\x1c\x59\x07\xb0\x0b\x73\xdf\xb3\x65\x72\xba\x1c\xa5\x24\x79\x81\x4d\xb9\x0b\x05\x9e\x1a\xf5\xec\x76\x05\xee\x44\xc6\xd3\x0a\x4f\x49\x02\x00\x79\x8e\x8d\x58\x33\xe2\x60\x3c\x47\x79\xf4\xe2\x61\x62\x14\x79\x72\x96\xa0\xb2\x28\xd5\x15\x96\xe1\x50\x76\x7b\x76\x90\xed\x1f\xb2\xba\x20\x46\x52\x98\xf8\xf2\x81\xfa\x02\x9f\xde\x5e\x44\xb6\x1c\x39\xe7\x4d\x9e\x26\xe3\x29\x35\xd6\x6a\x81\x72\xd6\xa1\xb4\x56\x66\xa7\xd1\x08\x97\xca\x73\x6c\xc5\x7b\x39\xbe\x27\x62\xfe\xcf\x8f\x15\x68\xec\xb3\xab\x04\xbe\x21\xe2\xb3\x33\xe3\xeb\x87\x46\xdf\xd3\xb8\xa1\xe2\x9d\xd5\x65\x97\xe7\xd2\xd6\xa8\x78\xb3\xa3\x5f\x46\x87\xd5\x73\x60\xac\xdb\x5b\x4c\xc6\xb1\x4d\x6f\x7e\xc8\x3c\x76\x70\xa2\x57\xef\x57\xd6\xcf\xdb\x8c\xb4\x9b\x33\xe3\x74\xbe\x0e\x7a\x24\x3b\x2b\xbd\x98\xfd\xd5\x24\x59\x20\x2d\xa7\xc9\xcb\x81\xba\x0d\x07\x8d\xab\x5c\x7d\xd0\xea\x69\x2f\x07\xaa\xdd\xc1\x8c\xdc\xdd\xc7\x3f\x24\xbd\x46\x9d\xfe\x05\x00\x00\xff\xff\x62\x01\x27\xe0\xa4\x02\x00\x00" +var _idtablestakingAdminRemove_invalid_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x0c\x45\xba\x8b\xb6\xc1\x69\x28\x18\x42\x29\x75\xe8\x7d\xbc\x1a\x59\xd3\xae\x77\xc4\xee\xc8\x2e\x04\x7f\xf7\xb2\x92\x1d\xf2\xcf\x73\x11\x68\x67\xde\xfb\xcd\xbe\x95\xfd\xa0\xd1\xf0\xdd\xeb\x71\x7d\xff\x48\x5b\xcf\x1b\xa3\xbf\x12\x76\xe8\xa2\xee\xb1\x78\x7f\xb0\x28\x8a\xba\xc6\x63\x2f\x09\x16\x29\x24\x72\x26\x1a\xc0\xa1\x4d\xb0\x9e\x91\xce\xf3\x34\x4e\x07\x9f\x70\xec\xc5\xf5\x88\xdc\x8d\xb9\x25\x68\xcb\x09\x59\xe2\x28\xd6\x43\x42\x1a\xbb\x4e\x9c\x70\xb0\x69\x94\x8b\xe2\x85\x6c\x29\x6d\x6a\xf0\xb4\xb1\x28\x61\xd7\xe0\x4e\xd5\x9f\x96\x78\x2a\x0a\x00\xa8\x6b\x3c\xa8\x23\x8f\x03\x45\xc9\x84\xe8\x34\x82\xb2\x15\x47\x0e\x8e\x61\x3a\x21\xad\xef\x31\x6d\x80\x55\xbb\x97\x00\xdd\xfe\x61\x67\x93\x84\x67\x03\xe5\x9f\xbf\xb8\x6b\x70\xf3\x7e\xdb\x6a\x1a\x99\xfd\x86\xc8\x03\x45\x2e\xc9\x39\x6b\x40\xa3\xf5\xe5\x9d\xc6\xa8\xc7\xdf\xe4\x47\x5e\xe2\x66\xe5\x9c\x8e\xc1\x32\x20\xce\x55\xd7\xd8\x4e\x3d\x1f\x71\xd1\x5b\x9c\x5c\x89\x7d\x57\x5d\x98\xf0\x05\xd9\xad\x4a\xa6\x91\x76\x5c\xcd\x5a\x9f\xaf\x82\x7e\x2d\x73\x6c\xcd\x07\x79\x56\xe7\xef\xd4\xb6\x99\xe5\x7e\x92\xf5\xcb\x67\xe3\x5c\xb7\xb7\x18\x28\x88\x2b\x17\xdf\x74\xf4\x2d\x82\xda\x85\xff\x15\xfd\x73\xc8\x59\x6d\x31\x6b\x9c\xe6\x5b\xe2\x7f\xec\x46\xe3\x17\x77\xf0\x6a\xa3\x2a\xb1\xad\x86\x21\xea\x81\xdb\x07\x49\x96\x13\x5e\x5e\x69\x8d\xbc\xd7\x03\xaf\xc3\x81\xbc\xb4\x3f\xf2\xc3\x29\x2f\x56\xa7\xff\x01\x00\x00\xff\xff\x90\x7f\xa1\x57\xb9\x02\x00\x00" func idtablestakingAdminRemove_invalid_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2180,11 +2240,11 @@ func idtablestakingAdminRemove_invalid_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/remove_invalid_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x72, 0xb, 0xf4, 0x44, 0xf3, 0x74, 0xb7, 0x89, 0x8c, 0xb6, 0x17, 0xd1, 0xde, 0x3, 0x5e, 0xf7, 0x9b, 0xf0, 0x2f, 0x57, 0xbe, 0x4b, 0x8f, 0xe9, 0x1f, 0xea, 0x14, 0x34, 0xe1, 0x24, 0x95, 0x2a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0x2e, 0x4, 0x44, 0x5, 0x11, 0x74, 0xed, 0x35, 0xd5, 0x12, 0x3e, 0x87, 0x55, 0x45, 0x89, 0x30, 0x16, 0xa9, 0x35, 0x7b, 0x87, 0x79, 0x7a, 0x5, 0x9f, 0x18, 0xac, 0xb6, 0x2a, 0x5e, 0xa3}} return a, nil } -var _idtablestakingAdminRemove_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\xab\x9b\x40\x10\xc7\xef\x7e\x8a\x3f\xef\x50\x7c\x17\xed\x59\xda\x3e\x6c\x4d\x41\x78\x84\xa2\x5e\x7a\xdc\xec\x8e\x71\x5b\xdd\x91\x75\x4c\x52\x4a\xbe\x7b\x59\x4d\x4a\xd2\xe6\xcd\x45\x90\x9d\xdf\xff\x37\x33\x76\x18\xd9\x0b\xbe\xf6\x7c\x2c\x8b\x46\xed\x7a\xaa\x45\xfd\xb4\x6e\x8f\xd6\xf3\x80\xf7\xa7\xb2\xd8\x6c\x9b\xb2\xf9\xde\xe4\x9f\x5f\x37\x79\x51\x54\x9b\xba\x8e\xa2\x34\x45\xd3\xd9\x09\xe2\x95\x9b\x94\x16\xcb\x0e\x9e\x06\x3e\xd0\x04\xe5\x40\x27\x3b\x49\x80\x38\x36\xb4\x92\xa4\x23\x58\x43\x4e\xac\xfc\x82\x84\xa0\x28\xba\xe9\x8e\xad\xc9\x50\x8b\xb7\x6e\xff\x8c\xdf\x51\x04\x00\x69\x8a\x57\xd6\xaa\xc7\x41\x79\x1b\x3a\xd0\xb2\x87\x82\xa7\x96\x3c\x39\x4d\x10\x5e\xb8\x65\x81\x45\x1d\xb9\x19\xac\x03\xef\x7e\x90\x96\x05\xd1\x93\x40\x85\x9f\x15\xb5\x19\xde\xfd\x3f\x66\xb2\xb4\xac\x79\xa3\xa7\x51\x79\x8a\x95\xd6\x92\x21\x9f\xa5\xcb\xb5\xe6\xd9\x49\x30\xc2\xa5\xd2\x14\x3b\xf6\x9e\x8f\x8f\x44\xd4\xbf\xf9\xa1\x26\xea\xdb\xe4\x2a\x81\x8f\x08\xf8\x64\x65\x7c\x78\xd3\xe8\x53\x1c\xb6\x96\x3d\x38\x4c\x72\xf9\x2e\xcf\x6a\x61\xaf\xf6\xf4\x4d\x49\xf7\xfc\x37\x30\xd4\xcb\x0b\x46\xe5\xac\x8e\x9f\xbe\xf0\xdc\x1b\x38\x96\xab\xf7\x9d\xf5\x74\xb9\xf6\xe2\xf7\xb4\x32\xce\xeb\x3a\xe8\x44\x7a\x16\xba\x99\xfd\x6e\x92\x64\xbd\x77\xee\x4c\x45\xed\xec\xcc\x96\x0d\x55\xa4\xd9\x9b\xd8\x9a\x2b\xe8\xfc\x27\x00\x00\xff\xff\x22\x63\x8e\xec\x60\x02\x00\x00" +var _idtablestakingAdminRemove_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\xcb\xda\x40\x10\x86\xef\xf9\x15\x2f\x39\x48\xbc\x24\xf7\xd0\x56\x6c\xa5\x20\x94\x52\x54\x7a\x1f\x77\x27\x66\xdb\x64\x27\x6c\x26\x6a\x29\xfe\xf7\xb2\x89\x16\xfd\xf4\x9b\x4b\x20\x99\x79\xe6\x99\xc9\xb8\xb6\x93\xa0\xf8\xda\xc8\x69\xbd\xda\xd1\xbe\xe1\xad\xd2\x6f\xe7\x0f\xa8\x82\xb4\x48\x9f\x3f\xa4\x49\x52\x14\xd8\xd5\xae\x87\x06\xf2\x3d\x19\x75\xe2\x11\xb8\x95\x23\xf7\x20\x0f\x3e\xbb\x5e\x23\xc2\x8b\xe5\x89\xa3\x35\xc3\x59\xf6\xea\xf4\x0f\x34\xd2\x92\xe4\xae\x3a\x73\xb6\xc4\x56\x83\xf3\x87\x39\xfe\x26\x09\x00\x14\x05\xbe\x89\xa1\x06\x47\x0a\x2e\x56\xa0\x92\x00\x42\xe0\x8a\x03\x7b\xc3\x50\x19\xb9\xeb\x15\x46\x3f\x2c\x6d\xeb\x3c\x64\xff\x8b\x8d\x8e\x88\x86\x15\x14\x5f\x6e\xb8\x2a\x31\x7b\x9e\x25\x1f\x4b\xa6\x7e\x5d\xe0\x8e\x02\x67\x64\x8c\x96\xa0\x41\xeb\xec\xb3\x84\x20\xa7\x9f\xd4\x0c\x3c\xc7\x6c\x69\x8c\x0c\x5e\xa3\x20\xae\x51\x14\xd8\x8f\x39\xaf\xbc\xe8\xad\x4e\x8c\x9e\x9b\x2a\xbf\x39\xe1\x23\x62\xb7\xbc\x57\x09\x74\xe0\x7c\x62\x7d\x78\x57\xf4\x53\x16\x97\x59\xbe\xf8\x5b\xf9\xf5\x39\xa6\x6d\x27\xdc\x0f\xd2\x7a\xfe\xbf\x71\x8c\xc5\x02\x1d\x79\x67\xb2\xf4\x8b\x0c\x8d\x85\x17\xbd\xf9\x3f\xd8\xf7\xd7\x13\x18\x3d\xd3\x89\x71\x99\xb6\xc4\x67\x36\x83\xf2\xdd\x0e\x1e\x26\xca\xa7\x33\x58\x7a\xbb\xe1\x6a\xf0\xf6\xbb\x58\xde\xb0\x91\x60\x33\x67\x6f\xa0\xcb\xbf\x00\x00\x00\xff\xff\x4d\x37\x98\xf0\x75\x02\x00\x00" func idtablestakingAdminRemove_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -2200,11 +2260,11 @@ func idtablestakingAdminRemove_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/remove_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf6, 0xe4, 0xe1, 0x3a, 0x2a, 0x6b, 0xb5, 0x2d, 0x92, 0xdd, 0xa3, 0x6c, 0x8a, 0xd4, 0x7f, 0x7d, 0x72, 0xfa, 0x69, 0xf2, 0xab, 0x98, 0x7c, 0x56, 0xcb, 0xc4, 0xb0, 0xb8, 0xc5, 0xc2, 0xbb, 0x0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xca, 0x33, 0x14, 0xe6, 0x42, 0xf6, 0x32, 0x5d, 0x3b, 0x1b, 0xdf, 0xdd, 0xb5, 0x64, 0x5f, 0x18, 0x98, 0xfb, 0x4e, 0xc9, 0x81, 0x63, 0x57, 0x72, 0xf2, 0x1e, 0xc1, 0x11, 0xaa, 0xbc, 0x19, 0x24}} return a, nil } -var _idtablestakingAdminScale_rewards_testCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\x4d\x6b\xc2\x40\x10\xbd\xef\xaf\x98\xe6\x14\x41\xc2\xda\xe2\x25\xe0\x21\x12\x85\x40\xe9\x41\xd3\x43\x29\x3d\x4c\x37\xd3\x34\xb8\xee\xca\xee\x48\x0a\xe2\x7f\x2f\x6b\x35\xf8\x51\x75\x0e\x0b\x03\xef\xbd\x79\xef\x6d\xb3\x5c\x59\xc7\x30\xd5\xb6\x2d\xf2\x12\x3f\x35\xcd\x19\x17\x8d\xa9\xe1\xcb\xd9\x25\xc8\x9f\x22\x9f\xbc\x94\x45\xf9\x56\x66\xe3\xe7\x49\x96\xe7\xb3\xc9\x7c\x2e\x04\x3b\x34\x1e\x15\x37\xd6\xc0\x46\x08\x00\x80\x95\xa3\x15\x3a\x8a\x51\x29\x4e\x21\x5b\xf3\x77\xa6\x94\x5d\x1b\xee\xc1\x66\x07\x08\xa3\x89\xc1\x51\x8b\xae\xf2\x63\x47\xb8\xa8\x6c\x6b\x60\xf4\xcf\xf9\x64\x76\x86\x8a\x8d\xad\xa8\xc8\x53\x88\xe4\x7e\x06\x51\x4f\x74\xc2\xe7\xa2\x49\x80\xef\x35\x60\x04\x03\x29\x65\x22\xaf\xa3\x3d\x71\x4e\x9a\x6a\x64\xeb\xfe\x58\x71\x75\xd8\xc3\xd1\x01\xa0\x87\xd7\xc2\xf0\xd3\x63\xff\xc0\x4e\x83\x6a\x22\x6f\x99\xf0\x0a\x35\x65\x5a\xef\x8d\xc4\x61\x6f\x4c\x3d\x45\xc5\xd6\xa5\x20\x93\x61\xaf\x23\xa3\xf7\xe4\x38\xee\xf6\xfb\xa9\x46\x30\x0c\x06\xfa\x27\x94\x25\x79\x8f\x35\xa5\x10\xb5\xce\x9a\x1a\x02\xe3\xa0\x03\x3b\x3f\x51\x87\x3f\xb2\x1e\x3e\xa6\x3a\x6d\x20\xf4\x76\x61\xe0\x1c\xf3\x7e\xd4\xcc\xc7\x83\xb8\x99\xe6\x52\x3f\x24\xb8\x17\xa0\x63\x5d\x4f\x11\xde\xad\xd8\xfe\x06\x00\x00\xff\xff\xb2\x19\x09\x1c\xcc\x02\x00\x00" +var _idtablestakingAdminScale_rewards_testCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x3f\x6b\xc3\x30\x10\xc5\x77\x7d\x8a\xab\x87\xe2\x40\x30\x76\x4b\x16\x83\x87\x94\x10\xc8\xd2\xa1\x7f\xa6\xd2\xe1\x2a\x5d\x8d\x89\x22\x85\xd3\x15\x0f\x21\xdf\xbd\x28\x89\x9d\xbf\x75\x35\x18\x0e\xbd\xf7\xd3\x7b\xe7\x66\xb5\xf6\x2c\x30\xb7\xbe\x5d\xcc\xde\xf0\xcb\xd2\xab\xe0\xb2\x71\x35\x7c\xb3\x5f\x41\x72\x7d\x91\x28\x25\x8c\x2e\xa0\x96\xc6\x3b\xd8\x28\x05\x00\xb0\x66\x5a\x23\x53\x8a\x5a\x4b\x09\xf7\x53\xad\xfd\x8f\x93\x11\x6c\x76\xb7\xf1\x58\x12\x60\x6a\x91\x4d\x78\x62\xc2\xa5\xf1\xad\x83\xea\xc6\xcb\xd9\xcb\x85\x2a\x75\xde\xd0\x62\x56\x42\x92\x1f\x4e\x91\x8c\x54\x0f\xbe\x84\x66\x81\xe4\xd9\x1b\x3a\x60\xd2\x22\xcf\xf3\x2c\x1f\x0d\xea\x67\x64\xa9\x46\xf1\xbc\x37\xa5\xa6\x9b\xe3\xb3\x05\x60\x80\xf7\x85\x93\xc7\x87\x71\xe7\x2e\xa1\xd8\x53\x07\xb0\x1a\x2d\x4d\xad\xed\x72\xc4\xb9\x71\xf5\x1c\xb5\x78\x2e\x21\xcf\x26\xc7\x4c\x18\x02\xb1\xa4\xfd\x7c\x13\xe8\x8e\xa5\xa0\xaa\x60\x12\x03\x8c\xcf\x2c\x2b\x0a\x01\x6b\x2a\x21\x69\xd9\xbb\x1a\xa2\xa3\xe3\xc0\x2e\x4f\xd2\xeb\x4f\xa2\xc7\x5f\x63\xce\x37\x10\xa0\xba\x0e\x70\xa9\xf9\x38\xd9\xcc\xe7\x9d\x1a\x6c\x73\xcd\x8f\x0d\xfe\x2b\xd0\xbb\xfe\x6e\x11\xbf\x5b\xb5\xfd\x0d\x00\x00\xff\xff\xbe\x67\xb1\xec\xc9\x02\x00\x00" func idtablestakingAdminScale_rewards_testCdcBytes() ([]byte, error) { return bindataRead( @@ -2220,11 +2280,11 @@ func idtablestakingAdminScale_rewards_testCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/scale_rewards_test.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0x39, 0xc5, 0x67, 0x9f, 0x4b, 0xfc, 0xd2, 0xa6, 0xc9, 0x65, 0xd0, 0xe9, 0xc, 0x91, 0xf2, 0x55, 0x35, 0x9e, 0xbe, 0x20, 0xc0, 0x8f, 0x35, 0xf0, 0xb0, 0x73, 0xf4, 0xc9, 0xe, 0x1a, 0x70}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0xfb, 0xe0, 0xff, 0xc8, 0xd5, 0x10, 0x1a, 0xf1, 0x22, 0x4, 0x38, 0x3f, 0xc9, 0xbd, 0xd9, 0x0, 0xa9, 0xb3, 0x36, 0xcf, 0x67, 0xb1, 0x7e, 0xbe, 0xe4, 0x70, 0x2b, 0x92, 0xff, 0x37, 0x16}} return a, nil } -var _idtablestakingAdminSet_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4f\x6b\xdc\x30\x10\xc5\xef\xfe\x14\x8f\x1c\x8a\x73\xb1\x7b\x36\x6d\x83\x53\x6f\xc1\xb0\x94\x12\xfb\xd2\xa3\x56\x1e\xaf\xd5\x6a\x35\x46\x1a\x27\x81\xb0\xdf\xbd\xc8\x7f\xca\x6e\xbb\x99\x8b\xc1\xd2\xbc\xf7\x7b\x7a\xe6\x34\xb2\x17\x7c\xb3\xfc\x52\x57\xad\x3a\x58\x6a\x44\xfd\x36\xee\x88\xde\xf3\x09\x1f\x5f\xeb\x6a\xf7\xbd\xad\xdb\x9f\x6d\xf9\xb8\xdf\x95\x55\xf5\xb4\x6b\x9a\x24\xc9\x73\xb4\x83\x09\x10\xaf\x5c\x50\x5a\x0c\x3b\x04\x92\x00\x19\x08\xd6\x04\x01\xf7\x50\xe3\xe8\xf9\x99\x3a\x38\xee\x28\xc0\xb8\xf9\xb4\xae\x20\xd1\x27\x49\x2e\x96\x53\xd3\x85\x02\x6f\x8d\x78\xe3\x8e\x05\x1e\x99\xed\xf9\x1e\x6f\x49\x02\x00\x79\x8e\x3d\x6b\x65\xf1\xac\xbc\x89\xab\xe8\xd9\x43\xc1\x53\x4f\x9e\x9c\x26\x08\x6f\xd2\x73\x04\x94\xdd\xc9\x38\xf0\xe1\x17\x69\x99\x25\x2c\x09\x54\xfc\xf9\x44\x7d\x81\x0f\xff\xc7\xcd\xe6\x95\xc5\x6f\xf4\x34\x2a\x4f\xa9\xd2\x5a\x0a\x94\x93\x0c\xa5\xd6\x3c\x39\x89\x44\x58\x27\xcf\x71\x60\xef\xf9\xe5\x16\x88\xfa\xd7\x3f\x4e\x20\xdb\x67\x1b\x04\x3e\x23\xca\x67\x8b\xc6\xa7\x77\x89\xbe\xa4\xb1\x87\xe2\x46\x41\xd9\xfa\x9d\xaf\x35\xc2\x5e\x1d\xe9\x87\x92\xe1\xfe\xaf\x61\x9c\x87\x07\x8c\xca\x19\x9d\xde\x7d\xe5\xc9\xc6\x2a\x64\xe3\xbe\xa2\x0e\x6b\xeb\x33\xdf\xdd\xa2\x71\x5e\x9e\x83\x5e\x49\x4f\x42\x17\xd9\xaf\x92\x64\x81\xa4\x5c\x9b\xde\x9b\x20\xb1\xca\x6d\xff\xfc\x27\x00\x00\xff\xff\xc5\xca\x43\xb8\x5f\x02\x00\x00" +var _idtablestakingAdminSet_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x8b\xdb\x30\x10\xc5\xef\xfe\x14\x0f\x1f\x16\xe7\x62\xdf\x4d\xdb\x25\xdb\xa5\xb0\xb0\x87\xd2\x84\xde\x27\xf2\x38\x56\xab\x68\x8c\x34\x4e\x0a\x21\xdf\xbd\xc8\x7f\x4a\xd2\x64\xe7\x62\xb0\xf4\xde\xfc\x34\x6f\xec\xa1\x97\xa0\xf8\xe6\xe4\xf4\xf6\xba\xa5\x9d\xe3\x8d\xd2\x6f\xeb\xf7\x68\x83\x1c\x90\xdf\x1f\xe4\x59\x56\x55\xd8\x76\x36\x42\x03\xf9\x48\x46\xad\x78\x44\xd6\x08\xed\x18\xce\x46\x85\xb4\xa0\xbe\x0f\x72\xe4\x06\x5e\x1a\x8e\xb0\x7e\x3c\x7d\x7b\x85\x26\xb3\x2c\xbb\x12\x17\xb6\x89\x35\xce\x1b\x0d\xd6\xef\x6b\xbc\x88\xb8\xcb\x0a\xe7\x2c\x03\x80\xaa\xc2\xbb\x18\x72\x38\x52\xb0\x49\x8a\x56\x02\x08\x81\x5b\x0e\xec\x0d\x43\x65\xb1\x1e\x39\xb1\x6e\x0e\xd6\x43\x76\xbf\xd8\xe8\x68\xe1\x58\x41\xe9\xe7\x0f\x6e\x6b\x3c\xdd\xbf\xa9\x1c\x25\x53\xbf\x3e\x70\x4f\x81\x0b\x32\x46\x6b\xd0\xa0\x5d\xf1\x22\x21\xc8\xe9\x27\xb9\x81\x57\x78\x5a\x1b\x23\x83\xd7\x04\x88\xb9\xaa\x0a\xbb\xf1\xce\x23\x2e\xfa\x1f\x27\x55\x64\xd7\x96\x0b\x13\x3e\x23\x75\x2b\xa3\x4a\xa0\x3d\x97\x93\xd7\xa7\x0f\x41\xbf\x14\x29\x9c\xfa\x41\x6a\xe5\xfc\x1d\xaf\x6d\x26\xbb\xef\xa4\xdd\xea\x5f\xe3\x54\xcf\xcf\xe8\xc9\x5b\x53\xe4\x5f\x65\x70\x29\x21\x5d\xf8\x6f\xe8\xe3\xbc\x0a\x23\x67\x3e\x79\x5c\xa6\x29\xf1\x1f\x36\x83\xf2\xd5\x0c\x6e\x5e\x54\x46\xd6\xf5\xbc\x00\xef\x36\x6a\x4a\x78\xd1\x5f\xfe\x06\x00\x00\xff\xff\xff\xfc\x9f\x93\x74\x02\x00\x00" func idtablestakingAdminSet_approved_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2240,11 +2300,11 @@ func idtablestakingAdminSet_approved_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_approved_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x65, 0x9e, 0x70, 0xe8, 0x77, 0x3e, 0xbb, 0xfe, 0x9f, 0x48, 0xbe, 0x7e, 0xf7, 0x80, 0x8a, 0x63, 0xad, 0x45, 0xdb, 0x75, 0x8b, 0xfd, 0x23, 0x66, 0x45, 0x89, 0x90, 0x81, 0xe1, 0xf0, 0xce, 0xe1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x44, 0xa0, 0xfc, 0x5d, 0x65, 0x80, 0xeb, 0x76, 0x1e, 0x7, 0x24, 0x56, 0x7b, 0x94, 0x24, 0x0, 0x60, 0xd1, 0x2c, 0xd8, 0x6d, 0xd5, 0x84, 0xca, 0x73, 0x54, 0x45, 0x90, 0x97, 0x72, 0x4f, 0x64}} return a, nil } -var _idtablestakingAdminSet_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xc1\x8a\xdb\x30\x10\x86\xef\x7e\x8a\x9f\x3d\x14\xe7\x62\xf7\x1c\xda\x2e\xee\x3a\x05\xc3\x52\xca\xda\x97\x1e\x27\xf2\x78\xad\x46\x96\x8c\x34\x6e\x52\x42\xde\xbd\xc8\x8e\x4b\xdb\x4d\xe6\x22\x10\x33\xdf\x7c\x33\xa3\x87\xd1\x79\xc1\x17\xe3\x8e\x55\xd9\xd0\xde\x70\x2d\x74\xd0\xf6\x15\x9d\x77\x03\xde\x9f\xaa\x72\xf7\xb5\xa9\x9a\xef\x4d\xf1\xf9\x79\x57\x94\xe5\xcb\xae\xae\x93\x24\xcf\xd1\xf4\x3a\x40\x3c\xd9\x40\x4a\xb4\xb3\x18\xe9\x57\x80\xe7\x23\xf9\x36\x40\x1c\xc8\x18\x48\xcf\x08\x42\x07\x6e\x61\x5d\xcb\x21\x49\xfe\xae\x38\x27\x09\x00\xe4\x39\x9e\x9d\x22\x83\x9f\xe4\x75\x54\x40\xe7\x3c\x08\x9e\x3b\xf6\x6c\x15\x47\x5a\x24\x55\x25\x66\x45\x14\xed\xa0\x2d\xdc\xfe\x07\x2b\x99\x11\x86\x05\x14\x3f\x5f\xb8\xdb\xe2\xdd\xdb\x71\xb2\xb9\x64\xe9\x37\x7a\x1e\xc9\x73\x4a\x4a\xc9\x16\xc5\x24\x7d\xa1\x94\x9b\xac\x6c\x56\xa3\xab\xd5\xde\x79\xef\x8e\xb7\x4c\xe8\x7f\x81\x18\x81\x4d\x97\xad\x16\xf8\x88\xc8\xcf\x16\xc6\x87\xbb\x4a\x9f\xd2\xb8\xe8\xed\x8d\x0b\x64\xd7\x77\x4e\xab\xc5\x79\x7a\xe5\x6f\x24\xfd\xe6\x4f\xc3\x18\x8f\x8f\x18\xc9\x6a\x95\x3e\x3c\xb9\xc9\xc4\x35\xcb\xea\xfd\x8f\x75\xb8\x9e\x75\xf6\x7b\x58\x18\x97\x65\x5a\x3e\xb1\x9a\x84\x71\xbe\x3d\x49\x16\x58\x9e\x0c\xe9\x81\xdb\x74\x73\x2f\x45\xc8\xcb\xea\x3b\xcd\xd7\x4d\xd7\x1e\x97\xdf\x01\x00\x00\xff\xff\x7b\xc7\x21\x68\x64\x02\x00\x00" +var _idtablestakingAdminSet_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6f\xe2\x30\x10\x85\xef\xf9\x15\x4f\x39\xa0\xe4\x92\xdc\xd1\xee\x22\x16\xb4\x12\xd2\x1e\x56\x0b\xea\x7d\x70\x26\xc4\xc5\xb1\x23\x7b\x52\x5a\x21\xfe\x7b\xe5\x84\x54\x6d\x81\xb9\x44\x8a\x67\xde\xfb\x66\x9e\x6e\x3b\xe7\x05\x7f\x8c\x3b\x6d\xd6\x3b\xda\x1b\xde\x0a\x1d\xb5\x3d\xa0\xf6\xae\x45\x7a\xfb\x90\x26\x49\x59\x62\xd7\xe8\x00\xf1\x64\x03\x29\xd1\xce\xa2\xa3\xb7\x00\xcf\x27\xf2\x55\x80\x38\x90\x31\x90\x86\x11\x84\x8e\x5c\xc1\xba\x8a\x43\x92\x7c\x9e\x38\x27\x09\x00\x94\x25\xfe\x3a\x45\x06\x2f\xe4\x75\xf4\x41\xed\x3c\x08\x9e\x6b\xf6\x6c\x15\x47\xb5\xa8\xb4\x59\x63\xe0\xc0\xb2\x6a\xb5\x85\xdb\x3f\xb3\x92\x41\xc2\xb0\x80\xe2\xcf\xff\x5c\xcf\x31\xbb\x65\x2e\x86\x91\xd1\xaf\xf3\xdc\x91\xe7\x8c\x94\x92\x39\xa8\x97\x26\xfb\xed\xbc\x77\xa7\x27\x32\x3d\xe7\x98\x2d\x95\x72\xbd\x95\x7c\x02\xbc\x42\xee\x87\xa6\x7b\x60\xf4\x9d\x27\x56\x60\x53\x17\x13\x14\x7e\x22\xda\x15\x41\x9c\xa7\x03\x17\xa3\xd6\x8f\x87\xa4\xbf\xb2\x78\xfd\xf9\x9d\x58\x8a\xeb\x77\x68\xdb\x8e\x72\xff\x48\x9a\xfc\xc3\x38\xd6\x62\x81\x8e\xac\x56\x59\xba\x72\xbd\x89\xd7\x97\x89\xff\x0b\x7d\xb8\x66\x3d\x70\xa6\xa3\xc6\x65\xdc\x9a\x5f\x59\xf5\xc2\x38\xdf\xdf\xa8\x08\x2c\x2b\x43\xba\xe5\x2a\xcb\x1f\xb5\x08\x79\x99\x78\xfb\x21\xf4\x6c\xf2\xb8\xbc\x07\x00\x00\xff\xff\x58\x92\xe9\x95\x79\x02\x00\x00" func idtablestakingAdminSet_claimedCdcBytes() ([]byte, error) { return bindataRead( @@ -2260,11 +2320,11 @@ func idtablestakingAdminSet_claimedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_claimed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xb4, 0xad, 0x42, 0x53, 0x64, 0xc1, 0x6f, 0x27, 0xf0, 0xd8, 0xf6, 0xf8, 0x47, 0x9f, 0x1e, 0x61, 0x7c, 0x35, 0xb0, 0xd3, 0x57, 0xe1, 0x19, 0x43, 0x5, 0x52, 0x66, 0x26, 0x65, 0xb6, 0x6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0xd5, 0xa0, 0x15, 0x9, 0x9e, 0xf5, 0xc0, 0xaf, 0xa2, 0x3e, 0xd3, 0x54, 0x30, 0xef, 0xcb, 0x9, 0xa1, 0x94, 0xb6, 0x48, 0x83, 0xf2, 0x39, 0xb2, 0xac, 0x3a, 0xf1, 0x6, 0x97, 0xdc, 0x21}} return a, nil } -var _idtablestakingAdminSet_node_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x8b\xd4\x40\x10\x85\xef\xf9\x15\x8f\x3d\x48\x16\x24\xf1\x20\x1e\x82\xba\x44\x33\x42\x60\x59\x64\x13\x11\x8f\x35\x9d\xca\xa4\x35\xd3\x15\xba\x2b\xce\x80\xec\x7f\x97\x4e\x66\x74\x57\x67\xeb\x52\x10\x52\xef\x7d\xaf\x9f\xdd\x4f\xe2\x15\x9f\x46\x39\xd4\x55\x4b\xdb\x91\x1b\xa5\x1f\xd6\xed\xd0\x7b\xd9\xe3\xd5\xb1\xae\x36\x77\x6d\xdd\x7e\x6b\xcb\x0f\xb7\x9b\xb2\xaa\xee\x37\x4d\x93\x24\x79\x8e\x76\xb0\x01\xea\xc9\x05\x32\x6a\xc5\x21\xb0\x06\xe8\xc0\xb0\xce\xaa\xa5\xf1\x2b\xdb\xdd\xa0\x90\x1e\xe4\xc0\x47\x1b\x34\xca\x3a\xe9\x38\x79\x74\x96\xda\xae\x40\xa3\xde\xba\xdd\x4b\x1c\x96\x93\x02\x5f\x6a\xa7\x6f\x5e\x5f\xe3\x57\x92\x00\x40\x9e\xe3\x56\x0c\x8d\xf8\x49\xde\x46\x46\xf4\xe2\x41\xf0\xdc\xb3\x67\x67\x18\x2a\x8b\x73\x5d\x61\xc9\x80\xb2\xdb\x5b\x07\xd9\x7e\x67\xa3\x8b\xc4\xc8\x0a\x8a\x1f\xef\xb9\x2f\xf0\xe2\xff\xbc\xd9\x72\xb2\xfa\x4d\x9e\x27\xf2\x9c\x92\x31\x5a\xa0\x9c\x75\x28\x8d\x91\xd9\x69\x24\xc2\x69\xf2\x1c\x5b\xf1\x5e\x0e\x97\x40\xe8\x5f\xff\x38\x81\xc7\x3e\x3b\x43\xe0\x1d\xa2\x7c\xb6\x6a\xbc\x7d\x96\xe8\x7d\x1a\x8b\x28\x2e\x34\x94\x9d\xf6\xf2\x5b\xa3\xe2\x69\xc7\x9f\x49\x87\xeb\x3f\x86\x71\x6e\x6e\x30\x91\xb3\x26\xbd\xfa\x28\xf3\xd8\xc1\x89\x9e\xb9\x9f\x50\x87\x53\xed\x0b\xdf\xd5\xaa\xf1\xb0\x3e\x07\x1f\xd9\xcc\xca\x8f\xb2\x3f\x49\x92\x05\xd6\x3b\xe9\x78\xed\x3b\x8d\x05\xd7\x55\x01\xdb\xfd\xed\x73\xdd\x67\xd1\x87\xdf\x01\x00\x00\xff\xff\xc7\x86\x8f\xec\x75\x02\x00\x00" +var _idtablestakingAdminSet_node_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x8b\xd4\x40\x10\x85\xef\xf9\x15\x8f\x1c\x96\x0c\x48\x72\x11\x0f\x41\x5d\x56\x07\x21\x20\x22\xce\xaa\xe7\x9a\x4e\x25\x69\xed\xe9\x0a\xdd\x15\x67\x41\xf6\xbf\x4b\x77\x66\x74\xd7\x9d\xad\x4b\x43\xd2\xf5\xde\xd7\xf5\xca\x1e\x66\x09\x8a\x0f\x4e\x8e\xdd\xf6\x96\xf6\x8e\x77\x4a\x3f\xad\x1f\x31\x04\x39\xa0\x7c\xfa\xa3\x2c\x8a\xa6\xc1\xed\x64\x23\x34\x90\x8f\x64\xd4\x8a\x47\x64\x8d\xd0\x89\x61\xbd\x55\x4b\xee\x3b\xdb\x71\x52\xc8\x00\xf2\xe0\x3b\x1b\x35\x89\x7a\xe9\xb9\x78\xd0\x56\xd9\xbe\xc5\x4e\x83\xf5\xe3\x0b\x1c\x73\x4b\x8b\xaf\x9d\xd7\x57\x2f\x37\xf8\x5d\x14\x00\xd0\x34\xf8\x28\x86\x1c\x7e\x51\xb0\x09\x04\x83\x04\x10\x02\x0f\x1c\xd8\x1b\x86\x4a\x76\xee\xb6\xc8\xa0\xb8\xe9\x0f\xd6\x43\xf6\x3f\xd8\x68\x96\x70\xac\xa0\xf4\xf1\x0b\x0f\x2d\xae\x9e\x3e\xaa\xce\x2d\xab\xdf\x1c\x78\xa6\xc0\x15\x19\xa3\x2d\x68\xd1\xa9\x7a\x27\x21\xc8\xf1\x1b\xb9\x85\x37\xb8\xba\x31\x46\x16\xaf\x09\x10\xa7\x6a\x1a\xec\xf3\x9d\x4b\x5c\xf4\x3f\x4e\xaa\xc8\x6e\xa8\xcf\x4c\x78\x83\xe4\x56\x47\x95\x40\x23\xd7\xab\xd6\xeb\x67\x41\xdf\x56\x29\x9d\xf6\x42\x6c\xf5\xe9\xcc\xd7\x76\xab\xdc\x67\xd2\x69\xf3\xd7\x38\xd5\xf5\x35\x66\xf2\xd6\x54\xe5\x7b\x59\x5c\x0f\x2f\x7a\xe6\x7f\x44\x1f\x4f\xbb\x90\x39\xcb\x55\xe3\x7e\x9d\x12\xdf\xb1\x59\x94\x1f\xcc\xe0\xd1\x8b\xea\xc8\xfa\x49\x7a\x5e\xd7\xa0\x4a\xb9\x77\xdb\x16\xb6\xff\x17\xf3\x7a\x9e\x45\xef\xff\x04\x00\x00\xff\xff\xf3\x29\x18\xae\x8a\x02\x00\x00" func idtablestakingAdminSet_node_weightCdcBytes() ([]byte, error) { return bindataRead( @@ -2280,11 +2340,11 @@ func idtablestakingAdminSet_node_weightCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_node_weight.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfe, 0xb, 0x49, 0x3b, 0xa5, 0x0, 0x6c, 0x1e, 0x8a, 0xe, 0x82, 0xb, 0xaf, 0xd9, 0x32, 0xa3, 0x33, 0xeb, 0x65, 0xb7, 0x87, 0x42, 0x1d, 0xe4, 0x89, 0xe6, 0x19, 0xa5, 0x25, 0xae, 0x5c, 0xcd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x83, 0x38, 0x72, 0x86, 0x8a, 0x4f, 0x3d, 0x9e, 0x30, 0x9c, 0x8f, 0x8a, 0x50, 0xc1, 0x8, 0x15, 0x7, 0x30, 0xda, 0xd0, 0x81, 0x97, 0xb8, 0x37, 0xfe, 0x1b, 0x35, 0xa, 0xf0, 0x51, 0x3b, 0x4}} return a, nil } -var _idtablestakingAdminSet_non_operationalCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x8f\xda\x3e\x10\xc5\xef\xf9\x14\x4f\x7b\xf8\x8b\xbd\x24\x1c\xfe\xea\x21\x2a\x5d\xd1\xc2\x4a\x48\x88\x56\x0b\x3d\x54\xab\x3d\x18\x7b\x42\xdc\x1a\x4f\x64\x0f\x0d\x12\xe2\xbb\x57\x4e\x08\xa5\xdd\xed\x5c\x90\xf0\xe4\xbd\xdf\xcc\x1b\xbb\x6f\x38\x08\x1e\x1d\xb7\x8b\xd9\x46\x6d\x1d\xad\x45\xfd\xb0\x7e\x87\x2a\xf0\x1e\xe3\xe3\x62\x36\x5f\x6d\x16\x9b\x6f\x9b\xe9\xc7\xe5\x7c\x3a\x9b\x3d\xcd\xd7\xeb\x2c\x2b\x0a\x6c\x6a\x1b\x21\x41\xf9\xa8\xb4\x58\xf6\x88\x24\x11\x52\x13\x9c\x8d\x02\xae\xe0\xd9\x50\x44\x5b\x33\x54\x20\x78\xf6\xe0\x86\x82\x4a\xcd\xca\x25\x09\xe5\x4d\x7a\x8e\x84\x40\xad\x0a\x26\xa2\xb5\xce\x61\x4b\x68\xad\xd4\x35\x39\x93\x65\x37\x0e\x23\x6b\x62\x89\xe7\xb5\x04\xeb\x77\x2f\xf7\x38\x65\x19\x00\x14\x05\x96\xac\x95\xc3\x4f\x15\x6c\x9a\x00\x15\x07\x28\x04\xaa\x28\x90\xd7\x04\xe1\x8e\x6b\x31\x43\x37\x21\xa6\x66\x6f\x3d\x78\xfb\x9d\xb4\x74\x12\x8e\x04\x2a\xfd\xf9\x44\x55\x89\xff\x5e\x6f\x23\xef\x3e\xe9\xfd\x9a\x40\x8d\x0a\x34\x52\x5a\x4b\x89\xe9\x41\xea\xa9\xd6\x7c\xf0\x92\x88\x70\xa9\xa2\xc0\x96\x43\xe0\xf6\x2d\x10\xf5\xb7\x7f\xaa\x48\xae\xca\x07\x08\x4c\x90\xe4\xf3\x5e\xe3\xfd\x3f\x89\x3e\x8c\x52\x4c\xe5\x1b\xf9\xe5\x97\xdf\xae\x6d\x2d\x1c\xd4\x8e\xbe\x28\xa9\xef\xaf\x86\xa9\x1e\x1e\xd0\x28\x6f\xf5\xe8\xee\x13\x1f\x9c\x81\x67\x19\xb8\xff\xa0\x8e\x97\xa3\xe8\xf8\xee\x7a\x8d\x73\xbf\x0e\x3a\x92\x3e\x08\xdd\xcc\x9e\xb6\x99\xb2\x5f\xda\x28\x25\x4e\x7d\x5e\x25\xbe\x3e\xda\xe3\xbb\xff\xcf\x98\xe0\x74\xbe\xf6\xa6\xa8\xac\x81\xf5\xb0\x26\xde\x68\xa4\x1a\x34\x9e\xad\x79\xc1\x04\xe3\x7c\x7c\x7d\xbe\x78\xbf\xda\x5b\x1e\x49\x56\xec\x3f\xff\xbe\xb3\x55\x3a\xc2\xa4\x32\x1a\xe4\x06\xfa\xf3\xaf\x00\x00\x00\xff\xff\x2e\x67\x28\x92\xfc\x02\x00\x00" +var _idtablestakingAdminSet_non_operationalCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x7c\x91\x72\x28\x3d\x88\xba\x21\x6d\x08\x04\x42\x5a\xea\xb4\x97\x90\xc3\x78\x77\x64\x6d\xbb\xde\x31\xbb\xe3\x2a\x60\xfc\xdd\xcb\x4a\xb6\xeb\xd6\xc9\x5c\x04\x9a\xd9\xf7\x7e\xf3\xc7\xad\xd6\x12\x15\xb7\x5e\xfa\xbb\x9b\x47\x5a\x78\x9e\x2b\xfd\x72\x61\x89\x36\xca\x0a\x93\xf3\xc4\xa4\x28\xea\x1a\x8f\x9d\x4b\xd0\x48\x21\x91\x51\x27\x01\x89\x35\x41\x3b\x86\x77\x49\x21\x2d\x82\x58\x4e\xe8\x3b\x01\x45\x46\x90\x00\x59\x73\xa4\x5c\x4c\x3e\x4b\x50\xb0\x39\x9d\x18\x91\x7b\x8a\x36\xa1\x77\xde\x63\xc1\xe8\x9d\x76\x1d\x7b\x5b\x14\x27\x0e\xa5\xb3\xa9\xc1\xd3\x5c\xa3\x0b\xcb\xe7\x29\xb6\x45\x01\x00\x75\x8d\x7b\x31\xe4\xf1\x9b\xa2\xcb\x98\x68\x25\x82\x10\xb9\xe5\xc8\xc1\x30\x54\x06\xae\xbb\x1b\x0c\x6d\xe0\xda\xae\x5c\x80\x2c\x7e\xb2\xd1\x41\xc2\xb3\x82\xf2\xcf\x6f\xdc\x36\xb8\x38\x6f\xb9\x1a\x9e\x8c\x7e\xeb\xc8\x6b\x8a\x5c\x92\x31\xda\x80\x36\xda\x95\x9f\x24\x46\xe9\x7f\x90\xdf\xf0\x14\x17\xd7\xc6\xc8\x26\x68\x06\xc4\x3e\xea\x1a\x8b\xa1\xe6\x35\x2e\xfa\x1f\x27\x47\x62\xdf\x56\x07\x26\xcc\x90\xdd\xaa\xa4\x12\x69\xc9\xd5\xa8\xf5\xe1\x4d\xd0\x8f\x65\xde\x5d\xf3\xca\x52\xab\xfd\x77\x28\x9b\x8f\x72\x5f\x49\xbb\xe9\xd1\x38\xc7\xd5\x15\xd6\x14\x9c\x29\x27\x9f\x65\xe3\x2d\x82\xe8\x81\xff\x1f\xfa\xb4\xbf\x94\x81\x73\x32\x6a\xec\xc6\x29\xf1\x0b\x9b\x8d\xf2\xc9\x0c\xf2\x90\xf3\x49\xdc\xbb\xa4\x0d\xb6\xe3\x1a\x1b\x7c\xbf\x75\x2f\xef\xdf\xed\x30\xc3\x76\x77\xac\xcd\x1b\x74\x16\x2e\xc0\xd9\x74\xa2\x91\xe3\xa0\xf1\xe4\xec\x33\x66\xb8\xac\x2e\x8f\xe9\xbd\xf7\xd9\xfc\xaa\xc4\xfa\x20\xe1\xcb\xdf\xf3\x7b\xc8\xb7\x99\x55\xca\x83\xdc\x81\x7e\xf7\x27\x00\x00\xff\xff\x8f\xd3\xc9\x6a\x11\x03\x00\x00" func idtablestakingAdminSet_non_operationalCdcBytes() ([]byte, error) { return bindataRead( @@ -2300,11 +2360,11 @@ func idtablestakingAdminSet_non_operationalCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_non_operational.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x32, 0x99, 0x51, 0x92, 0xa9, 0x12, 0x60, 0xc4, 0xab, 0xdc, 0x1b, 0x6d, 0x9, 0x41, 0xee, 0xae, 0xda, 0xfa, 0xb1, 0x2f, 0xe9, 0x74, 0x21, 0x64, 0x50, 0x37, 0xde, 0xc7, 0x84, 0xda, 0x31, 0x2b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0x68, 0xc4, 0x60, 0xca, 0x3c, 0x78, 0xdf, 0x66, 0x1d, 0xb4, 0xe3, 0xec, 0x5f, 0xa3, 0xa7, 0x1f, 0xe1, 0x64, 0x1e, 0xd3, 0xcf, 0x20, 0xfe, 0xff, 0x7b, 0x98, 0xdb, 0xaa, 0x39, 0x72, 0xcc}} return a, nil } -var _idtablestakingAdminSet_open_access_node_slotsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xc1\x6a\xdb\x40\x10\xbd\xeb\x2b\x1e\x39\x14\x05\x82\xd4\x1e\x5a\x8a\x68\x1a\xd4\x2a\x05\x43\x48\x4b\xec\x1e\x7a\x5c\xaf\x46\xd6\x26\xf2\x8e\xd8\x1d\xd9\x31\xc6\xff\x5e\x76\x65\xb5\xa9\xe3\xce\x45\xb0\x9a\xf7\xe6\xcd\xbc\x67\xd6\x3d\x3b\xc1\xb7\x8e\xb7\xb3\x6a\xa1\x96\x1d\xcd\x45\x3d\x19\xbb\x42\xe3\x78\x8d\xb7\xcf\xb3\xea\xf6\x7e\x31\x5b\xfc\x5a\x94\x5f\xee\x6e\xcb\xaa\x7a\xb8\x9d\xcf\x93\x24\xcf\x73\x2c\x5a\xe3\x21\x4e\x59\xaf\xb4\x18\xb6\xf0\x24\x1e\xd2\x12\xb8\x27\x0b\xcb\x35\xc1\x77\x2c\x1e\x0d\x3b\x28\xad\xc9\xfb\xf8\xea\x23\xfc\xfb\x49\x93\x72\x14\xc1\x76\x58\x2f\xc9\x81\x9b\xe3\xbb\xb4\x4a\xe2\xcf\xc0\x1a\x91\xa4\x74\x0b\xea\x59\xb7\x57\x70\xb4\x52\xae\xee\x02\x35\x37\x68\x79\x8b\xb5\xb2\xbb\x71\x0c\x1e\xd9\x58\xaa\x61\x6c\x24\xee\x1d\x6d\x0c\x0f\x7e\x84\x66\xc7\x1d\x68\x17\xc9\x1d\x35\x8e\x7c\x4b\xf5\x0b\xf6\x24\x79\xb1\x5d\x1a\xc6\x97\x71\x89\x79\xd0\x55\xe0\xe7\xcc\xca\xbb\x0f\x97\xd8\x27\x09\x00\xe4\x39\xee\x58\xab\x0e\x1b\xe5\x4c\x38\xe4\xb8\x76\x60\x26\x47\x56\x13\x84\xa3\x8e\x59\x85\x78\x68\x94\xf5\xda\x58\xf0\xf2\x91\xb4\x44\x8a\x8e\x04\x2a\x3c\x3e\x50\x53\xe0\xcd\x6b\x53\xb2\x08\x19\xe7\xf5\x8e\x7a\xe5\x28\x55\x5a\x4b\x81\x72\x90\xb6\xd4\x9a\x07\x2b\x41\x11\x8e\x95\xe7\x58\xb2\x73\xbc\x3d\x27\x44\x9d\xce\x0f\xe5\xa9\x6b\xb2\x49\x04\xae\x83\x6f\x92\x8d\x1c\x9f\xfe\xab\xe8\x73\x1a\xd2\x52\x9c\x89\x51\x76\xfc\xc6\xb6\xb9\xb0\x53\x2b\xfa\xa1\xa4\xbd\xfc\x33\x30\xd4\xcd\x0d\x7a\x65\x8d\x4e\x2f\xbe\xf2\xd0\xd5\xb0\x2c\x93\xee\x7f\x54\xfb\x63\x36\xa3\xbe\x8b\x91\xe3\x30\x9e\x83\x9e\x49\x0f\x42\x93\x1b\xa1\x36\xca\xc5\xd0\x04\xbf\x2a\x13\x5d\x54\x6e\x57\x60\x1f\x9c\xfb\x38\x19\x78\xc0\x35\xf6\x87\xbf\xa8\xd7\x88\xcc\x58\x4f\x4e\xd2\x27\xda\x15\x78\x7f\x85\x93\x24\x5c\x26\xc9\xf9\xeb\x65\x9e\x24\xa4\xfc\x9e\x6b\x8a\x9d\xe9\xc4\xed\x8b\x33\x63\xa6\x75\x0e\xbf\x03\x00\x00\xff\xff\xc9\x09\xa3\xcf\x94\x03\x00\x00" +var _idtablestakingAdminSet_open_access_node_slotsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xd1\x6a\xdb\x40\x10\x7c\xd7\x57\x0c\x7e\x08\x32\x04\x89\x3e\xb4\x14\xd1\x34\xa4\x0d\x85\x40\x69\x4b\x9d\xf6\x7d\x7d\x5a\x59\x97\xc8\xb7\xe2\x6e\x65\xd7\x18\xff\x7b\xb9\x93\xd5\xa6\xb6\xbb\x2f\x82\xd3\xce\xec\xec\xce\xd8\x75\x2f\x5e\xf1\xa9\x93\xed\xc3\xfd\x23\x2d\x3b\x5e\x28\x3d\x5b\xb7\x42\xe3\x65\x8d\xd9\xf9\x8f\x59\x96\x95\x65\x89\xc7\xd6\x06\xa8\x27\x17\xc8\xa8\x15\x87\xc0\x1a\xa0\x2d\x43\x7a\x76\x70\x52\x33\x42\x27\x1a\xd0\x88\x07\x19\xc3\x21\xa4\xd7\x90\xe0\x5f\x4f\x9a\xc8\x73\x02\xbb\x61\xbd\x64\x0f\x69\x8e\xef\xda\x92\xa6\x9f\x91\x35\x21\x99\x4c\x0b\xee\xc5\xb4\xd7\xf0\xbc\x22\x5f\x77\x91\x5a\x1a\xb4\xb2\xc5\x9a\xdc\x6e\x1c\x83\x27\xb1\x8e\x6b\x58\x97\x88\x7b\xcf\x1b\x2b\x43\x18\xa1\xc5\x71\x07\xde\x25\x72\xcf\x8d\xe7\xd0\x72\xfd\x82\x3d\xcb\x5e\x6c\x97\xc7\xf1\x77\x69\x89\x45\xd4\x55\xe1\xc7\x83\xd3\x57\x6f\xe6\xd8\x67\x19\x00\x94\x25\x3e\x8b\xa1\x0e\x1b\xf2\x36\x5e\x6b\x5c\x3b\x32\xb3\x67\x67\x18\x2a\x49\xc7\xc3\x3d\xd2\x35\x71\x57\xaf\xad\x83\x2c\x9f\xd8\x68\xa2\xe8\x58\x41\xf1\xf1\x3b\x37\x15\xae\xce\x2f\x5f\x24\xc8\x38\xaf\xf7\xdc\x93\xe7\x9c\x8c\xd1\x0a\x34\x68\x9b\x7f\x10\xef\x65\xfb\x93\xba\x81\xe7\xb8\xba\x33\x46\x06\xa7\x51\x20\x8e\x55\x96\x58\xa6\x9e\x4b\xba\xe8\x54\x4e\xac\xc0\x5d\x53\x4c\x9a\x70\x13\x6d\xd4\x22\xa8\x78\x5a\x71\x31\x72\xbd\xfb\xaf\xd0\xf7\x79\x8c\x50\x75\x21\x5b\xc5\xf1\x9b\xda\x16\x23\xdd\x37\xd2\x76\xfe\x67\x70\xac\xdb\x5b\xf4\xe4\xac\xc9\x67\x1f\x65\xe8\x6a\x38\xd1\x49\xff\x3f\xea\xc3\x31\xb0\x49\xe7\x6c\xe4\x38\x8c\x57\xe2\x5f\x6c\x06\xe5\xc9\xa4\x58\x1b\xf2\x29\x4b\xd1\xc6\x7b\x9b\xcc\x25\xbf\xab\xb0\x8f\x86\xbe\x9d\x7c\x3d\xe0\x06\xfb\xc3\x5f\xd4\x39\xa2\xb0\x2e\xb0\xd7\xfc\x99\x77\x15\x5e\x5f\xe3\x24\x20\xf3\xec\xf2\x11\x8b\xc0\x1a\xb3\xff\x45\x6a\x4e\x8d\xf9\x44\x1d\xaa\x0b\x53\xa6\x6d\x0e\xbf\x03\x00\x00\xff\xff\x2c\x22\xfd\x94\xa8\x03\x00\x00" func idtablestakingAdminSet_open_access_node_slotsCdcBytes() ([]byte, error) { return bindataRead( @@ -2320,11 +2380,11 @@ func idtablestakingAdminSet_open_access_node_slotsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_open_access_node_slots.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8a, 0x92, 0x6b, 0x66, 0xe9, 0x67, 0xd6, 0x9f, 0x61, 0x14, 0xbe, 0xf1, 0x4, 0x20, 0x33, 0xcf, 0xff, 0xee, 0x16, 0x1e, 0x5, 0xdb, 0xed, 0x7c, 0xe0, 0x4e, 0x35, 0x18, 0x75, 0x70, 0x77, 0xa7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3e, 0x9e, 0xf6, 0xa, 0x8d, 0x4, 0x32, 0x57, 0x37, 0xcc, 0x87, 0x7f, 0x70, 0xba, 0x58, 0xeb, 0x64, 0xa4, 0x47, 0xbb, 0xd5, 0xf6, 0xdf, 0x5d, 0x55, 0x98, 0xcb, 0x43, 0x52, 0xa, 0x5a, 0x5}} return a, nil } -var _idtablestakingAdminSet_slot_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x4d\x6f\x23\x45\x10\xbd\xfb\x57\x3c\x72\x40\x5e\xed\xee\x18\x4b\x2c\x5a\x59\x98\x95\xc1\x41\xb2\x88\x10\x8a\xcd\x01\x21\x0e\xe5\x9e\x1a\x77\x93\x9e\xee\x51\x77\x8d\x1d\x2b\xca\x7f\x47\xdd\x33\xfe\x98\x60\xe8\x4b\x34\x71\xd5\x7b\xaf\xaa\x5e\x95\xa9\x1b\x1f\x04\x3f\x5b\x7f\x58\x2d\x37\xb4\xb5\xbc\x16\x7a\x32\x6e\x87\x2a\xf8\x1a\xdf\x3c\xaf\x96\xf7\xbf\x6e\x56\x9b\x3f\x36\x8b\x1f\x1f\xee\x17\xcb\xe5\xe3\xfd\x7a\x3d\x1a\x4d\x26\x13\x6c\xb4\x89\x90\x40\x2e\x92\x12\xe3\x1d\x22\x4b\x84\x68\x46\xb4\x5e\x60\x4d\x6d\x24\xa2\xf2\x01\x4c\x4a\xc3\xf9\x92\x21\xc7\x86\xd1\xa5\xa7\xa0\x87\x2e\xc6\x44\x10\x7e\x5f\x39\x99\x7e\x07\x0a\x81\x8e\x10\x4d\x02\xe5\x9d\x90\x71\x1d\x66\x86\x4b\x68\x39\xf9\x0d\xa2\x71\xf0\xa1\xe4\xd0\x8b\xfe\xf8\x6d\x81\x95\x24\xd8\x36\x72\x09\xf1\x68\x7c\xd3\x5a\x12\xce\xc9\x84\xd2\x64\xc5\x14\x7a\x26\x4d\x11\x4f\x7c\x8c\x88\xda\x54\xc2\x25\xde\x4f\x11\x7d\xf7\x9b\x68\x3e\x82\xac\xd9\xb9\x9c\x7c\x30\xa2\xb3\x20\x76\x6d\xcd\x81\x52\xf4\x59\x48\xec\x04\x4c\x3f\x7e\x3a\xb5\x88\x03\xe7\xf2\x9c\x17\xcd\x01\x35\x2b\x4d\xce\xc4\x1a\x07\x6d\x94\x06\x59\xeb\x0f\x5d\x93\x08\xb1\x61\x65\x2a\xc3\x65\xce\x75\x6d\xbd\xe5\x00\x5f\xe5\x4e\xbd\x6d\x64\xf0\x96\xd1\x70\x00\x37\x5e\xe9\x22\x67\xac\xaa\x4e\xf1\x85\x24\xd5\x45\xd8\x93\x6d\x39\x4d\xa7\xe7\x39\x03\x7c\x80\x11\x1c\x8c\xb5\xf0\x7b\x0e\xc1\x94\x5d\x7f\x0e\x9a\x84\xf7\x1c\x72\xfa\x96\x39\x4f\xf6\x54\xf8\x70\xe6\xc5\x68\x74\xf5\x35\xbe\xcc\x74\x86\x3f\xbb\x81\xfe\xf5\x0e\x2f\xa3\x11\x00\x4c\x26\x78\xf0\x8a\x2c\xf6\x14\x4c\x72\x5a\x2f\x27\x70\xc5\x81\x9d\xe2\x34\xa8\xd4\xd9\xd5\x12\xd9\x89\x58\x94\x75\x9a\xec\xf6\x6f\x56\x92\x21\x2c\x0b\x28\xfd\xf3\x91\xab\x19\xbe\xfe\xb7\x6b\x8b\x9c\xd2\xf1\x35\x81\x1b\x0a\x3c\x26\xa5\x64\x86\x45\x2b\x7a\xa1\x94\x6f\x9d\x24\x45\xe8\xdf\x64\x82\xad\x0f\xc1\x1f\x6e\x09\xa1\xb7\xfc\xe9\x45\xb6\x55\x71\x12\x81\x39\x12\x7c\xd1\x61\x7c\xff\x9f\x8a\x7e\x18\x27\x63\xcc\x6e\xec\x59\xd1\xff\xcd\x61\x6b\xf1\x81\x76\xfc\x1b\x89\x7e\x77\x26\x4c\xef\xcb\x17\x34\xe4\x8c\x1a\xdf\xfd\xe4\x5b\x9b\x1c\x27\x27\xdd\x03\xd5\xb1\x5f\xde\xac\xef\xae\xc3\x78\xed\xda\xc1\xcf\xac\x5a\xe1\x61\xed\x19\x14\xa6\xc2\x81\x51\xfa\x0c\xdb\xb9\xf0\x08\x7e\x26\x25\xf6\x08\xef\xae\x17\x3a\x7b\xee\x6c\xa0\x33\x94\xa9\xae\xf6\xb9\xb0\xec\x76\xa2\xf1\xd5\x1c\x9f\xae\xe8\xf2\x4c\xba\x22\xae\xaf\x06\x85\x5d\x5b\xb3\x13\xd4\x6d\xbc\xb0\xff\x1f\xeb\xdd\xa5\x37\x7d\x6d\xe9\xed\x29\x5c\x34\x2c\xcf\x0b\x3e\xc3\x4b\x32\xe2\xe7\x59\x7f\x60\x5e\x31\xc7\xcb\xeb\x20\xeb\x72\x0d\x7e\xe1\x63\x17\xf7\x19\x73\x4c\x2f\xd8\xc9\xa8\x67\xec\x74\x6d\xae\x8e\xd7\xb0\xc0\x1b\x0a\x0a\xe3\x22\x07\x19\x3f\x25\xf0\x01\xd7\x87\x4b\xf8\x70\xdc\x83\x28\xcc\xdf\x7c\xbf\xc7\xf4\x56\x03\x06\xc6\x2c\x22\xcb\xfa\x2c\x72\xb0\x98\x37\x24\x9e\x8c\xf2\xfa\x4f\x00\x00\x00\xff\xff\x2a\x66\x95\xb5\x0f\x06\x00\x00" +var _idtablestakingAdminSet_slot_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\xc1\x8e\xdb\x36\x10\xbd\xfb\x2b\x5e\x7d\x08\xbc\x48\x22\xd7\x40\x53\x04\x46\xdd\x20\xed\xa2\x80\xd1\x1c\x8a\x6e\xda\x4b\xd1\xc3\x98\x1a\x99\xec\x52\xa4\x40\x8e\xec\x18\x8b\xfd\xf7\x82\xa4\x2d\x59\x1b\xb7\xbc\x18\x32\x67\xde\xbc\x79\xf3\x86\xa6\xed\x7c\x10\xfc\x62\xfd\x71\x7b\xff\x99\x76\x96\x1f\x84\x1e\x8d\xdb\xa3\x09\xbe\xc5\xfc\xeb\x8b\xf9\x6c\xb6\x5c\x2e\xf1\x59\x9b\x08\x09\xe4\x22\x29\x31\xde\x21\xb2\x44\x88\x66\x44\xeb\x05\xd6\xb4\x46\x22\x1a\x1f\xc0\xa4\x34\x9c\xaf\x19\x72\xea\x18\x25\x3d\x05\x7d\x2a\x31\x26\x82\xf0\xc7\xd6\xc9\xea\x7b\x50\x08\x74\x82\x68\x12\x28\xef\x84\x8c\x2b\x98\x19\x2e\xa1\xe5\xe4\x17\x88\xc6\xc1\x87\x9a\x43\xa1\xfc\xed\xdb\xef\x2a\x6c\x25\xc1\xf6\x91\x6b\x88\x47\xe7\xbb\xde\x92\x70\x4e\x26\xd4\x26\x33\xa6\x70\xae\xa4\x29\xe2\x91\x4f\x11\x51\x9b\x46\xb8\xc6\xeb\x15\xa2\x2f\x77\xa2\xf9\x04\xb2\x66\xef\x72\xf2\xd1\x88\xce\x84\xd8\xf5\x2d\x07\x4a\xd1\x03\x91\x58\x08\xac\xde\xbe\xbb\x48\xc4\x81\x73\x7b\xce\x8b\xe6\x80\x96\x95\x26\x67\x62\x8b\xa3\x36\x4a\x83\xac\xf5\xc7\x22\x12\x21\x76\xac\x4c\x63\xb8\xce\xb9\xae\x6f\x77\x1c\xe0\x9b\xac\xd4\x4b\x21\x83\xb7\x8c\x8e\x03\xb8\xf3\x4a\x57\x39\x63\xdb\x14\xc6\x63\x91\xd4\x17\xe1\x40\xb6\xe7\x34\x9d\x73\x9d\x01\xe0\x0d\x8c\xe0\x68\xac\x85\x3f\x70\x08\xa6\x2e\xfa\x1c\x35\x09\x1f\x38\xe4\xf4\x1d\x73\x9e\xec\xa5\xf1\xe9\xcc\xab\xd9\xec\xea\x6b\x31\xce\x74\x8d\xbf\xca\x40\xff\xbe\xc3\xd3\x6c\x06\x00\xcb\x25\x3e\x79\x45\x16\x07\x0a\x26\xd9\xe9\x4c\x27\x70\xc3\x81\x9d\xe2\x34\xa8\xa4\xec\xf6\x1e\xd9\x6e\xf8\x58\xb7\x69\xb2\xbb\x7f\x58\x49\x86\xb0\x2c\xa0\xf4\xe7\xef\xdc\xac\xf1\xea\x6b\x6b\x56\x39\xa5\xd4\xeb\x02\x77\x14\x78\x41\x4a\xc9\x1a\xd4\x8b\x5e\xfc\xe4\x43\xf0\xc7\x3f\x93\x1e\x77\x78\xf5\x51\x29\xdf\x3b\x49\x04\x71\x3e\xcb\x25\x76\x39\xe6\x16\x2f\x7a\x49\x27\x9d\xc8\xb6\xa9\x2e\x9c\xb0\x41\xaa\x56\x45\xf1\x81\xf6\x5c\x15\xac\x1f\xfe\x93\xe8\x8f\x8b\xe4\x97\xf5\x8d\xe5\xab\xce\xbf\x39\xec\xa1\xc0\xfd\x46\xa2\xef\x86\xc2\xe9\x7c\xf8\x80\x8e\x9c\x51\x8b\xf9\xcf\xbe\xb7\xc9\x88\x72\xe1\x3f\x61\x1f\xcf\x1b\x9d\x79\xce\x0b\xc6\x73\x51\x89\xbf\xb0\xea\x85\xa7\x1a\x64\x50\x98\x06\x47\x46\xed\x33\x6c\x31\xe7\x09\xfc\x85\x94\xd8\x13\xbc\xbb\xde\xf3\x6c\xc5\xc1\x57\x03\x94\x69\xae\xd6\xbc\xb2\xec\xf6\xa2\xf1\xcd\x06\xef\xae\xca\xe5\x51\x95\x26\xae\x1f\x13\x0a\xfb\xbe\x65\x27\x68\xfb\x38\x56\xff\xbf\xaa\xf3\x51\x9b\x73\x6f\xe9\x1c\x28\x8c\x1c\xee\x87\xbd\x5f\xe3\x29\xf9\xf3\xfd\xfa\xfc\xee\x3c\x63\x83\xa7\xe7\x49\xd6\xf8\x48\xfc\xca\xa7\x12\xf7\x1e\x1b\xac\x46\xec\xe4\xdf\x01\x3b\x3d\x42\x57\x6f\xda\xb4\xc1\x1b\x0c\x2a\xe3\x22\x07\x59\x3c\x26\xf0\x49\xad\x37\x63\xf8\x74\xdc\x93\x28\x6c\x5e\x7c\xbf\xc6\xea\x96\x00\x13\x83\x56\x91\xe5\x61\x20\x39\xd9\xd7\x1b\x14\x2f\x46\x79\xfe\x37\x00\x00\xff\xff\xb3\xaf\x59\xc4\x24\x06\x00\x00" func idtablestakingAdminSet_slot_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -2340,11 +2400,11 @@ func idtablestakingAdminSet_slot_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_slot_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0x71, 0xda, 0x79, 0x1d, 0x92, 0xc5, 0x37, 0x9e, 0x88, 0x17, 0x33, 0x62, 0x8d, 0xf5, 0x30, 0x3e, 0xb6, 0x8f, 0x45, 0x7f, 0x24, 0x43, 0x79, 0x7b, 0xb4, 0x85, 0xa8, 0x41, 0xc8, 0xed, 0x7e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0xf1, 0xe8, 0x24, 0xbe, 0xac, 0x4a, 0x5d, 0x51, 0xdf, 0xdb, 0x3, 0x15, 0xe4, 0xb, 0xaa, 0x9e, 0x25, 0x75, 0x49, 0xeb, 0x51, 0x93, 0xbb, 0x48, 0x33, 0xbf, 0x80, 0x61, 0x29, 0xfd, 0x66}} return a, nil } -var _idtablestakingAdminStart_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xc1\xea\xda\x40\x10\x87\xef\x79\x8a\x1f\x1e\x4a\xbc\x24\x3d\x4b\x5b\x49\x1b\x0b\x01\x29\xc5\xe4\xd2\xe3\xb8\x99\x98\xd4\x75\x37\xec\x4e\xaa\x45\x7c\xf7\xb2\x89\x29\xda\xfa\x9f\xcb\xc2\x32\xf3\xcd\x37\x33\xdd\xa9\xb7\x4e\xf0\x55\xdb\x73\x91\x57\xb4\xd7\x5c\x0a\x1d\x3b\x73\x40\xe3\xec\x09\xef\x2f\x45\xbe\xf9\x56\x15\xd5\x8f\x2a\xfb\xbc\xdd\x64\x79\xbe\xdb\x94\x65\x14\xa5\x29\xaa\xb6\xf3\x10\x47\xc6\x93\x92\xce\x1a\xf4\xf4\xdb\xc3\xf1\x99\x5c\xed\x21\x16\xa4\x35\xa4\x65\x78\xa1\x23\xd7\x30\xb6\x66\x1f\x45\x8f\x15\xd7\x28\x02\x80\x34\xc5\xd6\x2a\xd2\xf8\x45\xae\x0b\x0a\x68\xac\x03\xc1\x71\xc3\x8e\x8d\xe2\x40\x0b\xa4\x22\xc7\xa8\x88\xac\x3e\x75\x06\x76\xff\x93\x95\x8c\x08\xcd\x02\x0a\x9f\x3b\x6e\x56\x78\xf7\xff\x38\xc9\x58\x32\xf5\xeb\x1d\xf7\xe4\x38\x26\xa5\x64\x85\x6c\x90\x36\x53\xca\x0e\x46\x96\xb8\x8e\x09\x77\xa9\xbd\x75\xce\x9e\x5f\x89\xd0\xbf\xfd\x43\x78\xd6\x4d\x32\x4b\xe0\x23\x02\x3e\x99\x18\x1f\xde\x34\xfa\x14\x87\x3d\xaf\x5e\x1c\x20\xb9\xbf\x63\x5a\x29\xd6\xd1\x81\xbf\x93\xb4\xcb\xbf\x0d\x43\xac\xd7\xe8\xc9\x74\x2a\x5e\x7c\xb1\x83\x0e\x5b\x96\xd9\xfb\xc9\xda\xdf\xaf\x3a\xfa\x2d\x26\xc6\x6d\x5a\x07\x5f\x58\x0d\xc2\x0f\xb3\x3f\x4d\x92\x78\x21\x27\xb3\xcc\x30\x5e\x2e\x9e\x01\xb7\x3f\x01\x00\x00\xff\xff\xeb\x9d\x33\x87\x40\x02\x00\x00" +var _idtablestakingAdminStart_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x31\x6f\xc2\x30\x10\x85\xf7\xfc\x8a\xa7\x0c\x28\x2c\xc9\x8e\xda\x22\x5a\x54\x09\xa9\x43\x55\x50\xf7\xc3\xb9\x90\x14\x63\x47\xf6\xa5\xb4\x42\xfc\xf7\xca\x0e\xa9\xa0\xd0\x5b\x2c\xd9\x77\xef\x7d\x7e\xd7\xec\x5a\xeb\x04\xcf\xda\xee\x17\xf3\x15\xad\x35\x2f\x85\xb6\x8d\xd9\xa0\x72\x76\x87\xf4\xfa\x21\x4d\x92\xa2\xc0\xaa\x6e\x3c\xc4\x91\xf1\xa4\xa4\xb1\x06\x2d\x7d\x7b\x38\xde\x93\x2b\x3d\xc4\x82\xb4\x86\xd4\x0c\x2f\xb4\xe5\x12\xc6\x96\xec\x93\xe4\x7c\xe2\x90\x24\x00\x50\x14\x78\xb1\x8a\x34\x3e\xc9\x35\xc1\x07\x95\x75\x20\x38\xae\xd8\xb1\x51\x1c\xd4\x82\xd2\x62\x8e\xc8\x81\x59\xb9\x6b\x0c\xec\xfa\x83\x95\x44\x09\xcd\x02\x0a\x97\x6f\x5c\x4d\x30\xba\x66\xce\xe3\x48\xef\xd7\x3a\x6e\xc9\x71\x46\x4a\xc9\x04\xd4\x49\x9d\x3d\x5a\xe7\xec\xfe\x9d\x74\xc7\x63\x8c\x66\x4a\xd9\xce\xc8\x18\x87\xd8\x7f\x62\x5c\xc7\x9e\x5b\x5c\xf4\x17\x27\x94\x67\x5d\xe5\x03\x13\xee\x11\xdc\x72\x2f\xd6\xd1\x86\xf3\x5e\xeb\xee\x5f\xd0\x87\x2c\x84\x3f\xb9\xb1\x95\xfc\x74\xc6\xb6\x65\x2f\xf7\x4a\x52\x8f\x7f\x8d\x43\x4d\xa7\x68\xc9\x34\x2a\x4b\x9f\x6c\xa7\x43\xf8\x32\xf0\x5f\xd0\xfb\xd3\xaa\x23\x67\xda\x6b\x1c\xfb\x94\xf8\x8b\x55\x27\x7c\x96\xc1\xc5\x8f\x72\x2f\xe4\x64\x80\xe9\xe2\x42\xb3\x41\xe0\xf8\x13\x00\x00\xff\xff\x18\xdb\x97\xa0\x55\x02\x00\x00" func idtablestakingAdminStart_stakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2360,11 +2420,11 @@ func idtablestakingAdminStart_stakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/start_staking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc0, 0x1d, 0x9b, 0xaf, 0xf6, 0x47, 0xd8, 0xb, 0x3a, 0x65, 0x23, 0x93, 0x9b, 0xb7, 0x9, 0x9f, 0xd1, 0x20, 0x8d, 0x22, 0xc0, 0xe4, 0xc8, 0x10, 0x6b, 0xf7, 0x84, 0x52, 0xb9, 0xf6, 0xe2, 0x24}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0xae, 0x60, 0x65, 0xba, 0x40, 0xc1, 0x30, 0x64, 0xff, 0xc4, 0x97, 0x57, 0xf8, 0x6d, 0x7d, 0x89, 0xc3, 0x8c, 0xef, 0x8b, 0xca, 0x84, 0xfb, 0x5c, 0xb5, 0x0, 0x2e, 0xf, 0xce, 0xda, 0x60}} return a, nil } -var _idtablestakingAdminTransfer_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x91\xcf\x4f\xea\x40\x10\xc7\xef\xfb\x57\xcc\xe9\xbd\x36\xe1\xb5\xef\x4c\xd0\x58\x2d\x26\x24\xc4\x18\xdb\x8b\xc7\xa1\x0c\x65\xc3\xb2\xb3\xd9\x0e\x45\x42\xf8\xdf\x4d\x4b\xad\x88\x78\xc0\xeb\xce\xce\xf7\xc7\x7c\xf4\xda\xb1\x17\x78\x34\xbc\x9d\xa4\x39\xce\x0c\x65\x82\x2b\x6d\x4b\x58\x78\x5e\xc3\xff\xb7\x49\x3a\x7e\xca\x27\xf9\x6b\x9e\xdc\x4f\xc7\x49\x9a\xbe\x8c\xb3\x4c\x29\xf1\x68\x2b\x2c\x44\xb3\x85\xbd\x02\x70\x9e\x1c\x7a\x0a\x78\x6b\xc9\x0f\x21\xd9\xc8\x32\x29\x0a\xde\x58\x19\x80\xa7\x82\x74\x7d\xf6\x1c\xc2\x5e\x29\x00\x80\x38\x86\xa9\xb6\x2b\x90\x25\x41\xd5\x59\xe3\x7c\xad\x2d\x14\xe8\x70\xa6\x8d\x96\x1d\x08\x03\x82\xf3\xba\x46\x21\x70\x06\x0b\x6a\x77\x5b\xb7\xc8\x68\xbb\x1a\xfd\xf9\xde\x20\x4a\x1a\x99\xdb\x20\xee\x16\xe3\x85\xe1\x6d\x37\x6b\x47\x03\x10\xf4\x25\xc9\xf0\x42\xfd\xe8\xf4\x63\x26\xec\xb1\xa4\x67\x94\x65\xd8\x1a\x1b\x12\x38\x57\x83\x9b\x2e\x4f\x49\xf2\xd0\x47\xff\x55\xb0\x50\xf5\x2e\x27\x47\x18\xfd\xeb\x4f\x19\x19\xc6\xf9\xe8\xee\x67\xe9\x06\xde\x75\xb5\x8e\x8e\x5c\x06\x9f\x8e\x4d\x93\x7c\xe7\x28\x08\xbb\xf1\x9c\x2a\xf1\xbc\x3b\x09\xd5\x33\xcc\xb0\xa6\x96\xe1\x57\x6a\xcd\xcb\x47\xe8\xbf\x15\xe0\x11\x3e\x54\x47\xe7\x76\xb9\xef\x54\x61\x4d\xc1\x05\x46\x7c\x2d\x9f\x83\x3a\x28\x50\xef\x01\x00\x00\xff\xff\xd8\xed\xd8\x42\xda\x02\x00\x00" +var _idtablestakingAdminTransfer_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\x41\x6b\xc2\x40\x10\x85\xef\xfb\x2b\x1e\x1e\x6c\x02\x36\xde\xc5\x96\x4a\x4b\x4b\x6f\x05\xfd\x03\x63\x1c\xe3\xd2\x75\x27\xec\x8e\x8a\x88\xff\xbd\x74\x8d\x31\x54\x4b\xe9\x75\xe7\xed\xbc\xef\xcd\xb3\xeb\x5a\x82\xe2\xd5\xc9\xee\xfd\x65\x46\x73\xc7\x53\xa5\x4f\xeb\x2b\x2c\x83\xac\xd1\xbb\x1e\xf4\x8c\xd1\x40\x3e\x52\xa9\x56\x3c\x0e\x06\xa8\x03\xd7\x14\x38\x93\x9d\xe7\x30\x02\x6d\x74\x95\x3d\x53\x4d\x73\xeb\xac\x5a\x8e\x39\xfa\x93\xb2\x94\x8d\xd7\x01\x02\x97\x6c\xb7\xad\x6c\xaa\x12\xa8\xe2\x8b\x22\xc7\xc1\x18\x00\x18\x0e\xf1\xc6\x0a\x42\x6c\x80\x68\xb1\xb6\x1e\xe5\x79\xef\x3e\xa9\x1c\x2b\x96\x4e\x76\x0d\xdc\x24\x69\x1e\x90\x48\x8a\xb2\xc3\x50\xc4\x93\x53\x61\x63\xdc\xf0\xb8\x7f\x1d\xac\x48\x9f\x1f\xb3\x1b\x93\xee\xf6\x86\xf8\x83\x74\x95\x9b\x96\xe1\x82\x85\xf1\x7d\x1b\xb2\x35\x75\x42\x8b\xf1\xd3\xef\x9e\xdf\xc7\x1e\xdd\x68\xe1\x2f\x67\xa9\xb2\x8b\x73\x51\xb1\xce\xf6\x35\x67\x79\x33\x5e\x70\xd4\x20\xfb\xee\xcd\xce\xa7\x9d\xd2\x96\xa1\x2b\xee\x82\xab\xa4\x97\x33\xfc\x5d\x04\x9d\x3a\x41\x13\x23\x7d\xbe\xca\x16\x69\xcb\xd9\xcf\x0e\x06\x50\xf9\x5f\x20\xe0\x68\x8e\x06\xe6\x2b\x00\x00\xff\xff\x7a\xe3\x3f\x16\x92\x02\x00\x00" func idtablestakingAdminTransfer_adminCdcBytes() ([]byte, error) { return bindataRead( @@ -2380,11 +2440,11 @@ func idtablestakingAdminTransfer_adminCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/transfer_admin.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe6, 0xd2, 0x4c, 0xe2, 0xed, 0x2d, 0xe4, 0x8c, 0x11, 0xed, 0x41, 0x67, 0xc9, 0xf2, 0x86, 0xbe, 0x14, 0x7c, 0x66, 0x91, 0x5e, 0x28, 0x28, 0x97, 0xc5, 0x23, 0x5b, 0xc6, 0xcb, 0x36, 0x2e, 0xdf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0x0, 0xac, 0x5d, 0xe7, 0x0, 0x5b, 0x3b, 0x2d, 0x66, 0xa7, 0xb7, 0x92, 0xd3, 0x4b, 0x2b, 0xe1, 0xd1, 0xb3, 0x8, 0xa, 0x34, 0x56, 0x6b, 0x24, 0x16, 0xd3, 0xe9, 0xa4, 0xf5, 0x60, 0x21}} return a, nil } -var _idtablestakingAdminTransfer_fees_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\xe9\xa9\x09\x24\x76\xcf\xc1\x94\x1a\x62\x9f\x02\x85\xfa\xd0\xf3\x56\x59\x27\x22\xb6\x24\xa4\x8d\xd3\x52\xf2\xef\xc5\x6a\x6c\x48\xa1\x3a\xae\x66\x86\xf7\x4c\xef\x5d\x10\xd4\x9d\xbb\xd4\xcc\x11\x6d\x70\x3d\x9e\x3e\xeb\xdd\xeb\x7b\x5d\x55\x4d\xb9\xdd\xbe\x55\x4d\xa3\x94\x04\xb2\x91\xb4\x18\x67\xf1\xad\x14\x00\xf8\xc0\x9e\x02\x2f\xdc\xc5\x72\xd8\xa0\x3c\xcb\xb1\xd4\xda\x9d\xad\xac\x10\x58\xb3\x19\xfe\x9c\x97\x53\x73\x7c\x79\x8e\x9d\xb1\x27\xc8\x91\x11\x85\x4e\xc6\x1e\x40\xfb\xde\x58\x68\xf2\xf4\x61\x3a\x23\x5f\x10\x07\x82\x0f\x66\x20\x61\xf8\x8e\x34\xcf\xfd\x8e\x05\x2d\x73\x2c\x53\xa7\x58\x23\x61\x64\x9d\xa3\x7d\xf1\x32\xe9\x64\xe9\xd7\x44\x09\x24\x2e\x3c\x2f\x46\xbb\x0d\xf2\x28\x2e\xd0\x81\xf3\xf6\x16\x4b\xa9\xe5\xc3\x1d\x5c\x43\x03\x27\xb8\x7b\x9c\xf1\x32\xc9\x3d\x46\xd0\xaf\x19\x6e\x8b\xf3\xc0\x14\xc9\x22\x0d\xbc\x28\xd6\x33\xe9\x0a\xe2\xfe\x25\x48\xf5\xab\x52\x57\x05\xf5\x13\x00\x00\xff\xff\x1e\x04\x07\xfe\x99\x01\x00\x00" +var _idtablestakingAdminTransfer_fees_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x31\x6b\xc3\x30\x10\x46\x77\xfd\x8a\xaf\x19\x5a\x07\x92\x78\x0f\xa1\x34\x4b\xa6\x6c\x85\xee\x57\xe5\x9c\x88\xc8\x3a\x21\x9d\x1d\x4a\xc9\x7f\x2f\x56\x6d\x43\x0a\xf5\x66\xf1\xee\xe3\x3d\xd7\x46\x49\x8a\x83\x97\xdb\x81\x39\xa3\x49\xd2\x62\x31\xfd\x2e\x8c\xd1\x44\x21\x93\x55\x27\x01\xdf\xc6\x00\x40\x4c\x1c\x29\x71\x25\xb7\xc0\x69\x0b\xea\xf4\x52\x1d\x85\x4e\x1f\xe4\x3b\x5e\xe2\x79\x6f\xad\x74\x41\x57\x48\x6c\xd9\xf5\x33\xf3\x4e\x3d\xff\x61\x96\xd3\xe6\xf0\xd5\x35\x8e\x2e\x5c\xa1\x17\x46\x56\xba\xba\x70\x06\x9d\x5a\x17\x60\x29\xd2\xa7\xf3\x4e\xbf\xa0\x02\x42\x4c\xae\x27\x65\x44\x4f\x96\xe7\x7b\xcf\x8a\x86\x39\xef\xcb\xcd\x6e\x8d\x22\xb8\xc9\x2a\x89\xce\xbc\xf1\x42\xa7\xdd\xdb\x94\xb6\x29\x94\xcb\x9a\x48\x25\xbd\x56\x43\xf8\x16\xf5\x08\xd7\xcd\x88\x15\x6a\xf9\xf4\x20\x39\x74\x14\xc9\x47\xad\xe1\x65\x2a\x7e\xc9\xa0\xdf\x42\x8c\x8b\xf3\xc0\x84\xcc\x5e\x99\x7a\xae\x76\xeb\xd9\x7c\x05\x95\x7f\x4d\xca\xcc\xdd\x98\xbb\x81\xf9\x09\x00\x00\xff\xff\x99\xa2\xe7\xfc\xbc\x01\x00\x00" func idtablestakingAdminTransfer_fees_adminCdcBytes() ([]byte, error) { return bindataRead( @@ -2400,11 +2460,11 @@ func idtablestakingAdminTransfer_fees_adminCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/transfer_fees_admin.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0xfe, 0x7f, 0xe5, 0x76, 0xf2, 0x7c, 0x89, 0xf0, 0xca, 0xa8, 0xbe, 0x89, 0x31, 0x37, 0xfe, 0x76, 0x6e, 0xe, 0x60, 0x1a, 0x5a, 0x20, 0x2d, 0x47, 0x78, 0x63, 0x90, 0x53, 0xe7, 0x67, 0xa7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xc1, 0xdf, 0xbd, 0x8e, 0xdc, 0xe3, 0xd0, 0x75, 0x45, 0x73, 0x94, 0x3, 0xfc, 0x88, 0x86, 0xe4, 0xe3, 0x76, 0x0, 0x2f, 0x71, 0xde, 0x33, 0x80, 0x84, 0xa8, 0xfe, 0xdd, 0xbc, 0xa6, 0x4d}} return a, nil } -var _idtablestakingAdminTransfer_minter_deployCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4d\x4f\xe3\x3c\x10\xbe\xe7\x57\x3c\xe2\xf0\x2a\xd5\x5b\x52\x90\x00\xa1\x88\x2c\xea\x16\x90\x56\xb0\x45\xe2\x43\x7b\x40\x1c\xdc\x64\xda\x58\x24\x76\x65\x4f\x28\x51\xd5\xff\xbe\x72\x9c\xa4\x85\xed\x4a\x9b\x83\x5b\xcf\xc7\x33\x33\x8f\x67\x46\x96\x4b\x6d\x18\x13\x53\x2f\x59\x07\xed\xed\xa6\xd0\xab\x27\xfd\x46\x0a\x73\xa3\x4b\x1c\x7d\xdc\xdc\xdd\xff\x7a\xba\xbf\xbd\x9e\x8e\xaf\xae\x1e\xae\x1f\x1f\x83\x80\x8d\x50\x56\xa4\x2c\xb5\x0a\x97\xd5\xac\x90\xe9\x2d\xd5\x36\xc6\x8b\x47\x8a\x6e\xa9\xbe\x93\x96\xaf\x15\x9b\xfa\x75\x88\x54\x2b\x36\x22\xe5\xa9\x28\x29\xc6\x23\x1b\xa9\x16\x4e\x9a\xed\xdc\x0c\xad\x84\xc9\xc6\xa5\xae\x14\xc7\x78\xbe\x91\x1f\x67\x27\x9d\x74\x52\xed\x88\x52\xa1\x32\x99\x09\xa6\xa9\xce\xe8\x4e\x96\x92\x5d\xe0\xe7\x1f\x8a\xcf\x4e\x5e\x07\x58\x07\x01\xb0\x34\xb4\x14\x86\x42\x2b\x17\x8a\x4c\x8c\x71\xc5\xf9\x38\x4d\x1d\x76\x6b\x01\x14\xc4\x10\x69\xca\x48\x76\xd5\xe1\x52\xd4\xce\xc3\x7b\x0e\x1a\xcb\xe6\x98\x6b\x83\x37\xaa\x21\x15\xb6\x15\x63\xdd\xe8\xdc\xe7\xa0\xa2\x37\xaa\x6d\x24\xb2\x6c\x4b\x4a\xec\x9c\xa2\xfe\x3a\x44\x2e\x6c\x3e\x2e\x16\xda\x48\xce\x4b\xaf\xfd\x24\x1a\x62\x45\x72\x91\xb3\x57\xf9\xff\x3e\x8d\x8d\xcf\x7b\x34\x1a\xe1\xbb\x36\x46\xaf\x20\x60\x68\x4e\x86\x54\x4a\x60\x0d\xce\xa9\x79\x3c\xf8\xd7\x1b\x67\xa5\x54\x2e\x5f\x27\x17\xbe\x3c\x58\xd6\x46\x2c\xa8\x67\x60\xde\x3d\xb6\xb7\x4e\xda\xc2\xa3\x59\x13\xe1\xe2\xbf\xbe\x19\xa2\xc6\x40\x5a\x36\x82\xb5\xf9\x16\xba\xde\x88\x31\x6a\xf1\x46\x9f\x71\x06\x3d\x2d\x97\x97\x58\x0a\x25\xd3\xf0\x60\xa2\xab\x22\x83\xd2\x8c\xd9\xbf\x67\x6f\xc8\xea\xca\xa4\x74\x30\xd8\x16\x3f\x31\x24\x98\x20\xb6\xb9\xff\x94\x8a\xc9\x3c\xb4\xb6\x7f\xd6\xe6\xf5\xb8\x38\xfc\x52\x6e\x94\x36\x50\x53\x5a\x79\x8b\x50\x14\x85\x5e\x51\xdf\x85\xc7\x47\xdd\x17\x1d\xb5\x09\x34\xcf\x6c\xc5\x3b\x85\x17\x87\x5f\xf0\x87\x60\xbd\x8f\x11\xaf\xed\xfc\xad\x25\xc3\xe1\x9e\x26\x8e\x0a\x52\x0b\xce\x91\x24\x38\x1d\xf6\xfc\x01\x28\xc9\x5a\xb1\xa0\x18\x07\x93\xce\x0b\xce\x0d\x8d\x1f\x0a\x69\x19\xb3\x8a\x91\x8b\x77\xc7\x4a\x0b\xa3\xe7\x38\xed\x58\x73\x64\xec\x89\x78\x25\x53\x8e\xb1\x76\xa3\x73\x1e\xc3\x4f\xd0\x06\x09\xd6\x9b\xc6\xeb\x5d\x18\x18\x5d\x90\x57\x9d\x23\xc1\x71\xd0\x8f\x42\xd1\xc4\x96\x6a\x1f\x6e\x3f\x15\x7f\x89\xf9\xe2\x50\x5f\x91\x78\x90\xd6\xd6\xc9\x90\xf8\x9f\xff\x71\xbc\xdb\xf1\x0d\xe7\xdd\x0e\xf1\xf3\xa5\x9a\x4d\xb2\xbb\x57\xba\x7d\xe2\xce\xa8\xe2\xf9\xf9\xe7\x95\xb2\xb3\x4a\xf6\xae\x10\x97\x97\xeb\xda\x4d\x10\x6c\x02\x04\xbf\x03\x00\x00\xff\xff\x77\x67\xa8\xaf\x19\x05\x00\x00" +var _idtablestakingAdminTransfer_minter_deployCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x4f\xdb\x4e\x10\xbd\xfb\x53\x3c\xe5\x80\x1c\xfd\x82\x03\x12\x20\x64\xe1\x1f\x4a\xd3\x22\x55\x50\x0e\xa5\xf4\x82\x38\x6c\xec\x49\xbc\xc2\xde\xb5\x76\xc7\x49\xad\x28\xdf\xbd\x5a\xaf\xed\x04\x9a\x4a\xf5\x61\x93\x9d\x3f\x6f\x66\xde\xce\x8c\x2c\x2b\x6d\x18\x73\xd3\x54\xac\x83\xee\x76\x57\xe8\xcd\x0f\xfd\x46\x0a\x4b\xa3\x4b\x8c\x86\xfb\x28\x08\xd8\x08\x65\x45\xca\x52\xab\xb0\xaa\x17\x85\x4c\xef\xa9\xb1\x31\x5e\x3c\x44\x74\x4f\xcd\x83\xb4\xfc\x45\xb1\x69\x5e\x27\x48\xb5\x62\x23\x52\x7e\x14\x25\xc5\x78\x62\x23\xd5\xca\x49\xb3\x83\x9b\xa1\x8d\x30\xd9\xac\xd4\xb5\xe2\x18\xcf\x77\xf2\xd7\xd5\x45\x2f\x9d\xd7\x07\xa2\x54\xa8\x4c\x66\x82\xe9\x51\x67\xf4\x20\x4b\xc9\x2e\xf0\xf3\x57\xc5\x57\x17\xaf\x63\x6c\x83\x00\xa8\x0c\x55\xc2\x50\x68\xe5\x4a\x91\x89\x21\x6a\xce\xc3\x59\x96\xdd\x53\x33\xc1\x93\x58\xd3\x4f\x51\xd4\x34\xc1\x27\x6d\x8c\xde\xb4\x97\x31\x4e\x66\x69\xea\xa2\x77\x18\x40\x41\x0c\x91\xa6\x8c\x04\x9d\x2a\xac\x44\xe3\xf0\x3c\xee\xb8\xb5\x6a\x8f\xa5\x36\x78\xa3\x06\x52\x61\xcf\x07\xb6\xad\xce\x7d\x0e\x26\x7a\xa3\xc6\x46\x22\xcb\xf6\x94\xc5\xce\x29\x1a\xae\x13\xe4\xc2\xe6\xb3\x62\xa5\x8d\xe4\xbc\xf4\xda\x77\xa2\x09\x36\x24\x57\x39\x7b\x95\xff\xef\xd3\xd8\xf9\x9c\xa7\xd3\x69\x57\x15\x04\x0c\x2d\xc9\x90\x4a\x09\xac\xc1\x39\xb5\x6f\x0a\xff\xa8\xb3\xac\x94\xca\xe5\xeb\xe4\xc2\x97\x07\xcb\xda\x88\x15\x0d\xd5\x2f\xfb\x37\xf7\xd6\x49\x57\x78\xd4\xd9\x45\x8b\x36\xd2\xcd\xc9\xd0\x1b\x51\x6b\x28\x2d\x1b\xc1\xda\xfc\x1f\xba\xd6\x89\x31\xed\xec\xa7\xef\xf1\xc6\x03\x3d\xb7\xb7\xa8\x84\x92\x69\x38\x9a\xeb\xba\xc8\xa0\x34\x63\xf1\xef\x55\x18\xb2\xba\x36\x29\x8d\xc6\x7b\x12\xe6\x86\x04\x13\xc4\xbe\x86\x6f\x52\x31\x99\xef\x9d\xed\x9f\x35\x7a\x3d\x6e\x4e\x3f\x94\x1d\xa5\x2d\xd4\x23\x6d\xbc\x45\x28\x8a\x42\x6f\x68\xe8\xd5\xf3\xb3\xfe\x8b\xce\xba\x04\xda\xe7\xee\x49\xb2\x62\x4d\xe1\xcd\xe9\x87\x38\x13\xb0\x3e\xc6\x8c\xd7\xf6\x38\xd6\x92\xe1\xf0\x48\xcb\x47\x05\xa9\x15\xe7\x48\x12\x5c\x4e\x06\x1e\x01\x94\x64\xad\x58\x51\x8c\xd1\xbc\xf7\x82\x73\x43\xeb\x87\x42\x5a\xc6\xa2\x66\xe4\x62\xed\xd8\xe9\x60\xf4\x12\x97\x3d\x7b\x8e\x94\x23\x11\x3f\xcb\x94\x63\x6c\xdd\xa0\x5d\xc7\xf0\xf3\xb6\x43\x82\xed\xae\xf5\x5a\x0b\x03\xa3\x0b\xf2\xaa\x6b\x24\x38\x0f\x86\xd1\x28\xda\xd8\x52\x1d\xc3\x1d\xa6\xe4\x2f\x31\x5f\x1c\xea\x2b\x12\x0f\xd2\xd9\x3a\x19\x12\xff\xf3\x1f\xce\x0f\x27\xa0\xe5\xbe\xdf\x38\x7e\xde\x54\xbb\x77\x0e\xb7\x50\xbf\x7d\xdc\x19\xd5\xbc\xbc\x7e\xbf\x80\x0e\x16\xcf\xd1\x85\xe3\xf2\x72\xdd\xbb\x0b\x82\x5d\x80\xe0\x77\x00\x00\x00\xff\xff\x21\x67\x62\x69\x40\x05\x00\x00" func idtablestakingAdminTransfer_minter_deployCdcBytes() ([]byte, error) { return bindataRead( @@ -2420,11 +2480,11 @@ func idtablestakingAdminTransfer_minter_deployCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/transfer_minter_deploy.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4a, 0x80, 0x4d, 0xef, 0x2d, 0xfe, 0x8a, 0x7f, 0x18, 0x1d, 0xd7, 0xb5, 0xf2, 0x80, 0x2a, 0x6f, 0xfe, 0xcc, 0x13, 0xd0, 0xbd, 0xc8, 0xaa, 0x76, 0x68, 0xf3, 0xb3, 0xa1, 0x15, 0x9, 0xd7, 0x8e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbe, 0x1e, 0x95, 0xdc, 0x42, 0x25, 0x57, 0x4f, 0xdb, 0xbe, 0x75, 0x38, 0xea, 0x13, 0xcf, 0xba, 0x25, 0xcb, 0x98, 0x2a, 0x37, 0xfe, 0x7a, 0x6c, 0xec, 0xe4, 0xc3, 0x36, 0x5a, 0x3, 0x6b, 0x54}} return a, nil } -var _idtablestakingAdminUpgrade_set_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xdf\x6b\x9c\x40\x10\xc7\xdf\xfd\x2b\xbe\xdc\x43\xf1\xa0\x68\x1f\x8b\xb4\x0d\x36\x5e\x41\x08\xa5\x44\xfb\x50\x4a\x09\x73\xeb\x18\xb7\x59\x77\x65\x77\xec\x5d\x09\xf9\xdf\xcb\x6a\x2e\xfd\x91\xeb\x3c\x28\xe8\xce\x77\x3e\x1f\x66\xf5\x38\x39\x2f\xf8\x60\xdc\xa1\xae\x5a\xda\x1b\x6e\x84\xee\xb4\xbd\x45\xef\xdd\x88\x57\xc7\xba\xda\x7d\x6c\xeb\xf6\x4b\x5b\xbe\xbf\xda\x95\x55\x75\xbd\x6b\x9a\x24\xc9\x73\xb4\x83\x0e\x10\x4f\x36\x90\x12\xed\x2c\x26\xfa\x19\xe0\xf9\x40\xbe\x0b\x10\x07\x32\x06\x32\x30\x82\xd0\x1d\x77\xb0\xae\xe3\x90\x24\x7f\x74\xa4\xca\x75\x5c\xe0\xeb\xe7\xda\xca\xeb\x6f\x5b\xdc\x27\x09\x00\xe4\x39\xae\x9c\x22\x83\x1f\xe4\x75\x24\x42\xef\x3c\x08\x9e\x7b\xf6\x6c\x15\xc7\xf0\x18\x5c\x57\x58\x88\x51\x76\xa3\xb6\x70\xfb\xef\xac\x64\x89\x30\x2c\xa0\xf8\xf1\x9a\xfb\x02\x2f\x9e\xdb\x65\x4b\xcb\x3a\x6f\xf2\x3c\x91\xe7\x94\x94\x92\x02\xe5\x2c\x43\xa9\x94\x9b\xad\x3c\x11\xc5\x8a\x7f\x33\xe5\xac\x78\x52\x12\xb2\x79\xea\x48\xf8\xe6\x86\x8f\x13\x7b\x3d\xb2\x15\x32\xa9\xa5\x91\x0b\x6c\x9e\x8f\xdb\xbc\xc4\xea\x1a\x9f\xdb\xdf\xa1\x79\x8e\xbd\xf3\xde\x1d\xce\xe9\xd1\xbf\x56\xb1\x02\x9b\x3e\x3b\xa9\xe1\xed\x8a\xb5\x66\xbc\xf9\xaf\xe7\xbb\x34\x2e\xb3\x38\xb3\xe5\xec\xf1\xbd\x1c\x6b\xc4\x79\xba\xe5\x4f\x24\xc3\xf6\x69\x60\xac\x8b\x0b\x4c\x64\xb5\x4a\x37\x97\x6e\x36\x71\x95\x72\xe2\xfe\x8b\x3a\x3c\x5e\x9d\x85\x6f\xb3\x66\x3c\xac\xb6\x7c\x64\x35\x0b\xe3\xfe\xbc\x49\x16\x58\x2e\x0d\xe9\x91\xbb\xf4\xd4\xf7\xf0\x2b\x00\x00\xff\xff\x46\x0d\x04\xc2\x9c\x02\x00\x00" +var _idtablestakingAdminUpgrade_set_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x8b\x9c\x40\x10\xc5\xef\x7e\x8a\x87\x87\x45\x61\xd1\x6b\x90\x24\xcb\x66\x96\xc0\x40\x0e\x21\xbb\x9b\x4b\xc8\xa1\xa6\x2d\xd7\xce\xb6\x5d\xd2\x5d\x66\x12\x96\xf9\xee\xa1\x75\x66\xf2\x67\x4c\x1d\x14\xd4\xf7\x7b\xef\x75\x69\x87\x51\x82\xe2\xbd\x93\xfd\xf6\xee\x81\x76\x8e\xef\x95\x9e\xad\x7f\x42\x17\x64\x40\x7e\xf9\x22\xcf\xb2\xba\xc6\x43\x6f\x23\x34\x90\x8f\x64\xd4\x8a\xc7\x48\x3f\x23\x02\xef\x29\xb4\x11\x2a\x20\xe7\xa0\x3d\x23\x2a\x3d\x73\x0b\x2f\x2d\xc7\x2c\xfb\x43\x51\x18\x69\xb9\xc1\x97\xc7\xad\xd7\x57\x5f\x4b\xbc\x64\x19\x00\xd4\x35\x3e\x88\x21\x87\xef\x14\x6c\xb2\x45\x27\x01\x84\xc0\x1d\x07\xf6\x86\x13\x3c\x81\xb7\x77\x98\x63\xe1\xb6\x1d\xac\x87\xec\xbe\xb1\xd1\x19\xe1\x58\x41\xe9\xe1\x27\xee\x1a\x5c\x5d\x56\xa8\x66\xc9\xe2\x37\x06\x1e\x29\x70\x41\xc6\x68\x03\x9a\xb4\x2f\x1e\xc7\x96\x94\x37\xe2\x35\x90\xd1\x6b\xbc\x93\x10\x64\xff\x99\xdc\xc4\x25\xae\x6e\x8d\x91\xc9\xeb\x39\x70\x9a\x24\xae\xcc\x51\x10\xab\x69\x06\x14\x9e\x06\x6e\x56\x8f\xf0\x1a\x4b\xf9\x74\x2d\x7f\x63\xea\x1a\xbb\xd9\x6b\xad\x2f\xfd\x5b\x33\x4d\x64\xd7\x55\xa7\xae\x78\xb3\x04\x89\x2a\x81\x9e\xb8\x5a\x58\xaf\xff\x7b\x00\x6f\x8b\xb4\xe3\x66\x65\xf9\xd5\xf1\x3e\x7f\x76\xbf\xe0\x3e\x92\xf6\xe5\xd9\x38\xcd\xcd\x0d\x46\xf2\xd6\x14\xf9\x46\x26\x97\x76\xac\xa7\xfc\x7f\xa5\x8f\xc7\x3f\x6a\xce\x99\x2f\x8c\xc3\xd2\x9a\x7f\xb0\x99\x94\xf1\xb2\xde\xa8\x8a\xac\x1b\x47\x76\xe0\xb6\x38\xe9\x0e\xbf\x02\x00\x00\xff\xff\xf6\x62\xb3\x93\xb3\x02\x00\x00" func idtablestakingAdminUpgrade_set_claimedCdcBytes() ([]byte, error) { return bindataRead( @@ -2440,11 +2500,11 @@ func idtablestakingAdminUpgrade_set_claimedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/upgrade_set_claimed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbd, 0x60, 0x96, 0xc9, 0xe2, 0xe7, 0xb2, 0xfc, 0xfa, 0x4c, 0xe, 0x98, 0xd8, 0x18, 0xe0, 0x48, 0x7e, 0x34, 0xa6, 0xf3, 0xa9, 0xb0, 0x10, 0xd5, 0xc5, 0xdf, 0xb5, 0x7c, 0xcb, 0xbb, 0xd4, 0x3f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb2, 0x18, 0xb2, 0xdd, 0x50, 0x4a, 0xbf, 0x69, 0x23, 0x23, 0x78, 0xc8, 0x53, 0xc8, 0xd4, 0x61, 0x14, 0x50, 0x2b, 0x78, 0xc8, 0x94, 0xba, 0xb8, 0xbf, 0x98, 0xfe, 0x51, 0x48, 0x61, 0x83, 0xa0}} return a, nil } -var _idtablestakingAdminUpgrade_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x3c\x8d\x31\x0b\xc2\x30\x10\x85\xf7\xfc\x8a\xa3\x53\x0a\xd2\x59\xb2\x15\x44\xe8\xac\x4e\x22\xe5\xbc\x1e\x1a\x4c\x2f\x21\xbd\xa0\x20\xfd\xef\x12\x05\xdf\xf0\x96\xf7\xf8\x3e\xa3\x19\x65\x41\x52\x1f\xc5\x52\x9c\xd8\xc1\xf9\x34\x88\x6e\x2f\x2d\xbc\x8d\x01\x00\x48\x99\x13\x66\xb6\x48\xa4\x0e\xfa\xa2\xf7\x9e\x28\x16\xd1\xff\xa3\xa6\xae\x1d\x45\xd1\x8c\xa4\x4b\x57\xd2\x84\xca\xe3\xc8\xaf\xc4\xd9\xcf\x2c\x8a\xc1\x0a\xce\xec\xa0\xd9\x87\xf8\x1c\x76\x47\xbc\x06\x3e\x28\x3e\xbc\xdc\x9a\x0d\xfc\xdc\xb5\xdb\x2f\x73\x35\xeb\x27\x00\x00\xff\xff\x83\x09\x8a\xc4\x9c\x00\x00\x00" +var _idtablestakingAdminUpgrade_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2c\x8d\xb1\x0a\xc2\x40\x10\x44\xfb\xfb\x8a\x21\x85\x5c\x40\x52\x4b\x3a\x51\x84\xd4\x9a\x4a\x2c\xd6\xcd\xa2\xc1\xb8\x17\x2e\x7b\x58\x48\xfe\x5d\x2e\x66\x8a\xa9\xde\x9b\x71\x16\x49\x27\x62\xeb\x83\x7a\x0e\x9d\xd4\xb8\xb6\x8d\xda\xee\x56\xe2\xeb\x1c\x00\x8c\x51\x46\x8a\xe2\x89\xd9\x6a\x50\xb2\xa7\x6f\xc7\x8e\x4c\x0e\x41\x2d\x12\x5b\x89\xcd\x9e\x39\x24\xb5\xec\x60\x4d\xc6\x2b\x5e\x91\xa9\x4a\x8b\xe2\x95\xde\x52\xa3\x38\x0d\xe1\xd3\x1c\x2f\x74\x1f\xe4\x6c\xf4\xea\xf5\x51\x6c\xf1\xbf\xcf\x5d\x2e\x2b\xb3\x9b\x7f\x01\x00\x00\xff\xff\xe2\xcb\x57\x03\x9f\x00\x00\x00" func idtablestakingAdminUpgrade_stakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2460,11 +2520,11 @@ func idtablestakingAdminUpgrade_stakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/upgrade_staking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0x44, 0x64, 0x8e, 0x9e, 0xfe, 0x87, 0x20, 0x69, 0xfd, 0xe9, 0x55, 0x7d, 0x7f, 0xf4, 0xf9, 0xcc, 0xf5, 0xbb, 0x3f, 0x22, 0xc, 0x1b, 0xd1, 0xa6, 0xb2, 0x45, 0xe9, 0x48, 0x41, 0x19, 0xc4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x81, 0x5e, 0x5c, 0xd3, 0xb2, 0xd5, 0xa5, 0x4c, 0x45, 0xf4, 0x38, 0x8c, 0x9, 0x99, 0x95, 0xbc, 0xbd, 0x11, 0x8d, 0x62, 0x50, 0xa2, 0x21, 0xf2, 0x46, 0xce, 0x6e, 0xbe, 0x67, 0x1f, 0x7, 0x96}} return a, nil } -var _idtablestakingDelegationDel_request_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x41\x6b\xe3\x40\x0c\x85\xef\xfe\x15\x22\x87\xc5\xb9\xd8\x7b\x58\xf6\x60\x76\x1b\xdc\x3a\x81\x40\x08\x25\x76\x0e\x3d\x2a\x63\x39\x71\x3b\x19\xb9\xb2\xdc\x04\x4a\xfe\x7b\x99\xba\x31\x2d\x35\x54\x17\x1d\x66\xa4\xf7\xbd\xa7\xfa\xd8\xb0\x28\x2c\x2c\x9f\x96\x59\x81\x3b\x4b\xb9\xe2\x53\xed\xf6\x50\x09\x1f\xe1\xf7\x79\x99\xcd\xd7\xc5\xb2\x78\x28\xd2\xdb\xd5\x3c\xcd\xb2\xcd\x3c\xcf\x83\x20\x50\x41\xd7\xa2\xd1\x9a\x5d\x88\x47\xee\x9c\x26\xb0\x5d\xd4\xe7\xbf\x7f\xa6\xf0\x1a\x04\x00\x00\x71\x0c\x2b\x36\x68\xe1\x05\xa5\xf6\x9b\xa1\x62\x01\x04\xa1\x8a\x84\x9c\x21\x50\x06\x3d\x10\x64\x64\x69\x8f\xca\x02\xbc\x7b\x24\xa3\xef\xd3\x96\x14\xca\xeb\xc3\x86\xaa\x04\x7e\x7d\x87\x8c\xd6\x5c\xd2\x30\xde\xcb\x36\x42\x0d\x0a\x85\x68\x8c\x26\x90\x76\x7a\x48\x8d\xf1\x80\x1e\x0c\x3e\x2a\x8e\x61\xc7\x22\x7c\x1a\xe3\x29\xc7\x78\x7c\xb5\x64\xab\xe8\x33\x14\xfc\x07\x2f\x13\xf5\xbb\xfe\xfd\x48\x78\x13\xfa\x54\x93\x91\xb8\xa3\xe1\x4f\xae\x2c\xb8\xa7\x7b\xd4\xc3\x74\x50\xf6\x35\x9b\x41\x83\xae\x36\xe1\xe4\x8e\x3b\x5b\x82\x63\xbd\x9a\xf8\x62\x61\x00\x9c\x4c\xfb\x44\x2e\x7d\xa3\x33\x99\x4e\xe9\x7a\x9e\x51\x43\x91\xd0\x73\x47\xad\x6e\x5d\xdb\x73\x0d\xc7\xed\xfb\xb0\xf1\xf2\x16\x00\x00\xff\xff\x59\x8c\xf0\xa8\x39\x02\x00\x00" +var _idtablestakingDelegationDel_request_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xb1\x4e\xc3\x40\x0c\x86\xf7\x3c\x85\x95\xa1\x4a\x96\x64\x41\x0c\x15\x50\x01\x55\x25\x24\x04\x88\x52\x76\xf7\xe2\xb4\x81\xeb\x39\x38\x0e\xad\x84\xfa\xee\xe8\x7a\x4d\x00\x35\x23\x5e\x6e\x38\xfb\xf7\xff\xd9\xae\x36\x35\x8b\xc2\xcc\xf2\xf6\x6e\xfa\x82\x4b\x4b\x73\xc5\xf7\xca\xad\xa0\x14\xde\x40\x7c\xfa\x11\x47\x51\xa4\x82\xae\x41\xa3\x15\xbb\x04\x37\xdc\x3a\x1d\xc3\x62\x56\xed\xce\xcf\x52\xf8\x8a\x22\x00\x80\x3c\x87\x7b\x36\x68\xe1\x13\xa5\xf2\xe5\x50\xb2\x00\x82\x50\x49\x42\xce\x10\x28\x83\xae\x09\xa6\x64\x69\x85\xca\x02\xbc\x7c\x23\xa3\x87\x6a\x4b\x0a\x45\xf7\xf1\x4c\xe5\x18\xb0\xd5\x75\x72\xea\x26\xeb\xcb\x1f\xb7\x8e\x24\x85\xd1\x40\xce\x03\x17\xd4\xe7\x05\x7b\xb5\x50\x8d\x42\x09\x1a\xa3\x47\xf1\x1b\x16\xe1\xed\x2b\xda\x96\x52\x18\x5d\x1b\xe3\xb9\x3c\x0f\x1c\x23\xcf\x61\x79\xc8\x19\xc2\x28\x86\x30\x7c\x34\x64\xcb\xec\x37\x0b\x5c\x82\xef\x9a\x35\xca\x82\x2b\xca\x82\xe6\xc5\xbf\x01\x5e\x25\x7e\x75\xe3\x81\x9d\xfe\x68\xcd\x43\xef\x27\xd4\x75\xda\x3b\xf5\x31\x99\x40\x8d\xae\x32\x49\x7c\xcb\xad\x2d\xc0\xb1\x76\xd0\x7f\x90\x7b\xa0\x38\x0d\x03\xdd\x87\x87\x76\x64\x5a\xa5\xee\x0a\x06\x07\x90\x09\x7d\xb4\xd4\xe8\xc2\x35\xc1\x57\x7f\x43\xe1\xed\x15\xf7\xdf\x01\x00\x00\xff\xff\x32\x83\xa3\x36\x9e\x02\x00\x00" func idtablestakingDelegationDel_request_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2480,11 +2540,11 @@ func idtablestakingDelegationDel_request_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0x1d, 0xf8, 0x36, 0x96, 0xba, 0x29, 0x5f, 0x9e, 0xc8, 0x53, 0x9a, 0x3f, 0x61, 0x22, 0xe7, 0x41, 0xc3, 0x9d, 0xe8, 0x55, 0xee, 0x64, 0xd8, 0x5e, 0x39, 0x16, 0x38, 0x80, 0xc8, 0xc, 0xa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x87, 0xb8, 0x8e, 0xfc, 0xc, 0xe8, 0x6c, 0xa0, 0x8b, 0xce, 0x40, 0x25, 0x93, 0xd5, 0xb2, 0xfd, 0x6a, 0xfb, 0x2, 0x9c, 0xa5, 0x42, 0x21, 0xf5, 0xc2, 0x16, 0x83, 0x68, 0x5d, 0xa5, 0x8d, 0xe8}} return a, nil } -var _idtablestakingDelegationDel_stake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x8f\x94\x40\x10\x85\xef\xfc\x8a\xca\x1e\xcc\xcc\x41\xf0\x60\x3c\x4c\x56\x37\x28\x4c\x32\x71\xc2\x9a\x05\x35\x1e\x6b\x9a\x62\xc0\xed\xe9\x22\x4d\x21\x93\x98\xfd\xef\xa6\x61\x9b\x65\xb3\x93\x68\xac\x4b\xa7\xd3\xef\x51\xdf\x2b\xaa\x39\xb5\x6c\x05\xb6\x9a\x87\x5d\x52\xe0\x41\x53\x2e\x78\xdf\x98\x23\x54\x96\x4f\xf0\xe6\xbc\x4b\xd2\xac\xd8\x15\x3f\x8a\xf8\xe3\x3e\x8d\x93\xe4\x2e\xcd\xf3\x60\xe1\x2a\xf8\x9e\x8c\x17\x6f\xf7\xb7\xdf\x8b\xdb\xcf\x69\xe6\x85\x41\x20\x16\x4d\x87\x4a\x1a\x36\x2b\x3c\x71\x6f\x64\x03\x5f\xb7\xcd\xf9\xdd\xdb\x35\xfc\x0e\x02\x00\x80\x28\x82\x3d\x2b\xd4\xf0\x0b\x6d\xe3\x10\xa0\x62\x0b\x08\x96\x2a\xb2\x64\x14\x81\x30\x48\x4d\x50\x92\xa6\x23\x0a\x5b\xe0\xc3\x4f\x52\x32\xba\x35\xc9\xd3\xc3\x1d\x55\x1b\x78\xf5\x32\x4d\x98\x71\x49\x89\x57\x05\xb3\xb1\xf2\x09\x9e\x8c\xe3\x35\xfc\x86\xbd\x96\x49\xd7\x5a\x6a\xd1\xd2\x0a\x95\x92\x0d\xc4\xbd\xd4\xb1\x52\x2e\x88\x0b\x00\x8f\x15\x45\x70\x60\x6b\x79\xf8\x67\x6e\x57\x1d\xe9\x2a\x5c\xc2\xc3\x7b\x70\x6d\xc2\xe9\x5b\xd7\x7f\x4d\xf2\x61\xe5\x26\xbf\xb9\xf0\xff\xc2\x59\x93\x0b\x5b\x3c\xd2\x17\x94\x7a\x3d\x77\x76\x75\x73\x03\x2d\x9a\x46\xad\xae\x3e\x71\xaf\x4b\x30\x2c\x3e\xc4\xb3\x08\x33\xe0\xd5\x3a\x78\x8e\xbe\x1c\xdf\x25\xf4\xc5\x2c\x3d\x69\xd4\x4d\x38\xd1\xec\x1d\x9f\xff\x8f\xcc\xed\x1b\x8c\x7e\x8f\xf6\x30\x1d\x74\x26\xd5\x0b\xf9\x0d\xbb\x38\x6b\x7f\xa1\x8c\x26\x90\xee\x11\xf1\xfa\xf5\x8b\x70\xe1\xd0\x48\x5d\x5a\x1c\xe6\x1d\x9e\xce\xf5\xdc\xf6\xe1\x4f\x00\x00\x00\xff\xff\x7d\x72\x30\x6f\x4a\x03\x00\x00" +var _idtablestakingDelegationDel_stake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\xcd\x6a\xdb\x40\x10\xbe\xef\x53\x0c\x3a\x04\xe9\x50\xe9\x52\x7a\x30\x69\x43\xdb\x60\x28\x84\xa4\x34\x69\x7c\x1e\xad\x46\xd2\xd6\xeb\x1d\xb1\x1a\x55\x86\xe2\x77\x2f\xfa\xb5\x8c\x4d\x31\x25\x7b\x11\xbb\xfb\xcd\x7c\x3f\xa3\x35\xbb\x8a\xbd\xc0\xda\x72\xfb\xed\xfe\x05\x53\x4b\xcf\x82\x5b\xe3\x0a\xc8\x3d\xef\x20\x38\xbf\x08\xd4\xa2\xe6\x85\xb7\xe4\x16\xd0\x7e\x7f\x44\x34\xae\x30\xa9\xa5\x13\xd4\xf2\x2c\x50\x4a\x89\x47\x57\xa3\x16\xc3\x2e\xc4\x1d\x37\x4e\x56\xf0\x73\x6d\xf6\x1f\xde\x47\xf0\x47\x29\x00\x80\x24\x81\x07\xd6\x68\xe1\x37\x7a\xd3\x49\x81\x9c\x3d\x20\x78\xca\xc9\x93\xd3\x04\xc2\x20\x25\x41\x46\x96\x0a\x14\xf6\xc0\xe9\x2f\xd2\xd2\x57\x5b\x92\xe3\xc5\x0f\xca\x57\x80\x8d\x94\xe1\xb9\xb3\xf8\x7e\x42\x3d\xb5\x8e\x7c\x04\x37\x17\x30\x8f\x9c\xd1\x8c\x53\x33\x41\x3e\x99\x5f\x10\x2c\x9d\xc6\x1b\x23\x65\xe6\xb1\x1d\xbb\x0e\x87\xaf\xd8\x58\x19\x9a\x54\x9e\x2a\xf4\x14\xa2\xd6\x32\x36\xf8\xc2\xde\x73\xfb\x8a\xb6\xa1\x08\x6e\x3e\x6b\xdd\x85\xd3\x85\x02\xe3\x4a\x12\x48\x7b\xcc\xd5\x59\x74\xab\x26\x9b\xc7\xcb\x40\xe0\x23\x74\xac\x71\x2d\xec\xb1\xa0\x78\xe8\x79\xfb\x66\x29\x7d\x0a\xbb\xd1\xaf\x2e\xfc\x64\xc7\x5e\xcf\x03\xf7\x77\x94\x32\x9a\x95\x76\xeb\xee\x0e\x2a\x74\x46\x87\xc1\x57\x6e\x6c\x06\x8e\x65\x32\x7d\x62\x79\x36\x14\x44\xea\xd4\xea\x72\x34\xff\xb4\x7a\xe5\xbc\x26\x3b\xc9\xd8\x24\x99\x09\xfa\xeb\xff\x93\xbf\x7e\x78\xda\x40\x5f\x3f\xe9\x3f\x0c\x1f\xda\x93\x6e\x84\xa6\xa7\x70\x71\x80\xd3\x86\x1e\x69\x10\x52\x8f\x12\x6f\xdf\x9d\x25\x10\xb7\xa3\xb1\xf9\xb1\x0d\xdf\x68\xa6\x3d\xfc\x0d\x00\x00\xff\xff\xc1\x80\x21\xc4\x14\x04\x00\x00" func idtablestakingDelegationDel_stake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2500,11 +2560,11 @@ func idtablestakingDelegationDel_stake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x53, 0x38, 0xd9, 0x47, 0x24, 0xbb, 0xe8, 0x6e, 0x60, 0xdf, 0x9c, 0x19, 0x3a, 0x3c, 0x47, 0x18, 0xa7, 0xb5, 0x74, 0x88, 0x1d, 0x6, 0xd7, 0xb5, 0x24, 0xc1, 0xa1, 0xd3, 0x49, 0x79, 0xbe, 0x8b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xef, 0x10, 0x2b, 0x72, 0x96, 0xd1, 0x8e, 0xa0, 0x84, 0xd7, 0xe0, 0x69, 0x57, 0x1c, 0x1b, 0x5e, 0xf2, 0x48, 0x5f, 0x81, 0x81, 0x5c, 0xbe, 0x2, 0x4b, 0x1e, 0x7b, 0x4b, 0xf7, 0xbd, 0x9a, 0x2a}} return a, nil } -var _idtablestakingDelegationDel_stake_rewardedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x41\x6b\xab\x50\x10\x85\xf7\xfe\x8a\x21\x8b\x87\xd9\xe8\x5b\x3c\xde\x42\xda\x06\x5b\x13\x08\x84\x50\xa2\x5d\x74\x39\xb9\x8e\x89\xcd\xcd\x1d\x99\x8c\x4d\xa0\xe4\xbf\x97\x5b\xab\xb4\x54\xe8\x6c\x06\xf1\xce\x9c\xef\x9c\xa9\x8f\x0d\x8b\xc2\xc2\xf2\x79\x99\x15\xb8\xb5\x94\x2b\x1e\x6a\xb7\x83\x4a\xf8\x08\x7f\x2f\xcb\x6c\xbe\x2e\x96\xc5\x73\x91\xde\xaf\xe6\x69\x96\x6d\xe6\x79\x1e\x04\x81\x0a\xba\x13\x1a\xad\xd9\x85\x78\xe4\xd6\x69\x02\x4f\x8b\xfa\xf2\xff\xdf\x14\xde\x82\x00\x00\x20\x8e\x61\xc5\x06\x2d\xbc\xa2\xd4\x7e\x33\x54\x2c\x80\x20\x54\x91\x90\x33\x04\xca\xa0\x7b\x82\x8c\x2c\xed\x50\x59\x80\xb7\x2f\x64\xf4\x63\xda\x92\x42\xd9\xff\xd8\x50\x95\xc0\x9f\x9f\x90\xd1\x9a\x4b\x1a\xc6\x3b\xd9\x46\xa8\x41\xa1\x10\x8d\xd1\x04\xd2\x56\xf7\xa9\x31\x1e\xd0\x83\xc1\x67\xc5\x31\x6c\x59\x84\xcf\x63\x3c\xe5\x18\x8f\xaf\x13\xd9\x2a\xfa\x0a\x05\xb7\xe0\x65\xa2\x6e\xd7\xcd\xaf\x84\x77\xa1\x4f\x35\x19\x89\x3b\x1a\xde\xe4\xca\x82\x3b\x7a\x44\xdd\x4f\x07\x65\x5f\xb3\x19\x34\xe8\x6a\x13\x4e\x1e\xb8\xb5\x25\x38\xd6\xde\xc4\x37\x0b\x03\xe0\x64\xda\x25\x72\xed\x1a\x5d\xc8\xb4\x4a\xfd\x79\x46\x0d\xf5\x1f\xb4\xa1\x33\x4a\x49\x65\xc1\x07\x72\xa7\xe1\xc4\x5d\x1f\xf6\x5e\xdf\x03\x00\x00\xff\xff\x4f\x03\x87\x63\x3f\x02\x00\x00" +var _idtablestakingDelegationDel_stake_rewardedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xc1\x4b\xfb\x50\x0c\xc7\xef\xfd\x2b\x42\x0f\xa3\xbd\xb4\x97\x1f\xbf\xc3\x50\x87\x3a\x06\x82\xa8\x6c\xd3\x7b\xf6\x9a\x6e\x75\xaf\x2f\x25\x4d\xed\x40\xf6\xbf\xcb\x5b\xd7\xaa\xac\x47\x73\x79\x3c\x92\x7c\x93\x4f\x92\xa2\xac\x58\x14\x16\x96\xdb\x87\xf9\x1a\x37\x96\x56\x8a\xfb\xc2\x6d\x21\x17\x2e\x21\xbc\x74\x84\x41\x10\xa8\xa0\xab\xd1\x68\xc1\x2e\xc2\x92\x1b\xa7\x53\x78\x5d\x14\x87\xff\xff\x62\xf8\x0c\x02\x00\x80\x34\x85\x47\x36\x68\xe1\x03\xa5\xf0\xe9\x90\xb3\x00\x82\x50\x4e\x42\xce\x10\x28\x83\xee\x08\xe6\x64\x69\x8b\xca\x02\xbc\x79\x27\xa3\xa7\x6c\x4b\x0a\x59\xef\x58\x52\x3e\x05\x6c\x74\x17\x5d\x76\x93\x0c\xe9\xcf\xad\x23\x89\x61\x32\x12\xf3\xc4\x19\x0d\x71\x5d\x7b\x95\x50\x85\x42\x11\x1a\xa3\x67\xf1\x3b\x16\xe1\xf6\x0d\x6d\x43\x31\x4c\x6e\x8d\xf1\x5c\x9e\x07\xce\x96\xa6\xb0\x39\xc5\x8c\x61\x64\x63\x18\xde\x6a\xb2\x79\xf2\x93\x05\xae\xc1\x57\x4d\x6a\x65\xc1\x2d\x25\x9d\xe6\xd5\x9f\x01\xde\x44\x7e\x75\xd3\x91\x9d\x7e\x6b\xad\xba\xda\x2f\xa8\xbb\x78\xe8\xd4\xdb\x6c\x06\x15\xba\xc2\x44\xe1\x3d\x37\x36\x03\xc7\xda\x43\xff\x42\x1e\x80\xc2\xb8\x1b\xe8\xb1\x7b\xe8\x40\xa6\x51\xea\xaf\x60\x74\x00\xfd\x87\x96\xd4\xa2\x64\x94\xad\x79\x4f\xae\x1e\x2e\xa9\x7b\x07\xdd\xe3\x57\x00\x00\x00\xff\xff\xb1\x5e\xd1\xad\xa4\x02\x00\x00" func idtablestakingDelegationDel_stake_rewardedCdcBytes() ([]byte, error) { return bindataRead( @@ -2520,11 +2580,11 @@ func idtablestakingDelegationDel_stake_rewardedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_stake_rewarded.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf, 0x9f, 0xc3, 0x4b, 0x19, 0xbb, 0xe2, 0x96, 0x5c, 0x6c, 0x69, 0x8b, 0x86, 0x7e, 0xeb, 0x78, 0x72, 0x47, 0xef, 0x12, 0x0, 0xd0, 0x9b, 0x25, 0x23, 0x9a, 0x67, 0x29, 0x3e, 0xa1, 0x89, 0x59}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0xab, 0x43, 0xc4, 0x6c, 0xd2, 0xcc, 0x46, 0xb9, 0xe9, 0xe8, 0x58, 0xd2, 0x56, 0x18, 0xf, 0xca, 0xf0, 0x2e, 0xf4, 0x55, 0xe9, 0x4f, 0x44, 0x76, 0xed, 0x31, 0x9c, 0x48, 0x31, 0xf0, 0xf7}} return a, nil } -var _idtablestakingDelegationDel_stake_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xc1\x6a\xb3\x50\x10\x85\xf7\x3e\xc5\x90\xc5\x8f\xd9\xe8\xbf\x28\x5d\x48\xdb\x60\x6b\x02\x81\x10\x4a\x34\x8b\x2e\x27\xd7\x31\xb1\x31\x77\x64\x1c\x9b\x40\xc9\xbb\x97\x5b\xab\xb4\x54\xe8\x6c\x06\xf1\xce\x9c\xef\x9c\x29\x4f\x35\x8b\xc2\xa2\xe2\xf3\x32\xc9\x70\x57\x51\xaa\x78\x2c\xed\x1e\x0a\xe1\x13\xfc\xbf\x2c\x93\xf9\x3a\x5b\x66\x2f\x59\xfc\xb8\x9a\xc7\x49\xb2\x99\xa7\xa9\xe7\x79\x2a\x68\x1b\x34\x5a\xb2\xf5\xf1\xc4\xad\xd5\x08\xb6\x8b\xf2\x72\x7b\x33\x85\x77\xcf\x03\x00\x08\x43\x58\xb1\xc1\x0a\xde\x50\x4a\xb7\x19\x0a\x16\x40\x10\x2a\x48\xc8\x1a\x02\x65\xd0\x03\x41\x42\x15\xed\x51\x59\x80\x77\xaf\x64\xf4\x73\xba\x22\x85\xbc\xff\xb1\xa1\x22\x82\x7f\xbf\x21\x83\x35\xe7\x34\x8c\x77\xb2\xb5\x50\x8d\x42\x3e\x1a\xa3\x11\xc4\xad\x1e\x62\x63\x1c\xa0\x03\x83\xaf\x0a\x43\xd8\xb1\x08\x9f\xc7\x78\xf2\x31\x1e\x57\x0d\x55\x45\xf0\x1d\x0a\xee\xc1\xc9\x04\xdd\xae\xbb\x3f\x09\x1f\x7c\x97\x6a\x34\x12\x77\x30\xbc\x49\x95\x05\xf7\xf4\x8c\x7a\x98\x0e\xca\xae\x66\x33\xa8\xd1\x96\xc6\x9f\x3c\x71\x5b\xe5\x60\x59\x7b\x13\x3f\x2c\x0c\x80\x93\x69\x97\xc8\xb5\x6b\x74\x21\xd3\x2a\xf5\xe7\x19\x35\xd4\x7f\xd0\xd6\x36\x8a\x47\xca\x33\x3e\x92\x6d\x86\x13\x77\x7d\xd8\x7b\xfd\x08\x00\x00\xff\xff\x60\x37\x37\x4d\x3f\x02\x00\x00" +var _idtablestakingDelegationDel_stake_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x31\x4f\xf3\x40\x0c\x86\xf7\xfc\x8a\x57\x19\xaa\x64\x49\x96\x4f\xdf\x50\x01\x15\x50\x55\x42\x42\x80\x68\xcb\xee\x5e\x9c\x36\xf4\x7a\x8e\x2e\x0e\xad\x84\xfa\xdf\x51\x9a\x26\x80\x9a\x11\x2f\xa7\x93\xed\xd7\x7e\x6c\x17\xbb\x52\xbc\x62\x66\x65\xff\x30\x5d\xd0\xca\xf2\x5c\x69\x5b\xb8\x35\x72\x2f\x3b\x84\x97\x8e\x30\x08\x02\xf5\xe4\x2a\x32\x5a\x88\x8b\x68\x27\xb5\xd3\x31\x96\xb3\xe2\xf0\xff\x5f\x8c\xcf\x20\x00\x80\x34\xc5\xa3\x18\xb2\xf8\x20\x5f\x34\xe9\xc8\xc5\x83\xe0\x39\x67\xcf\xce\x30\x54\xa0\x1b\xc6\x94\x2d\xaf\x49\xc5\x43\x56\xef\x6c\xf4\x94\x6d\x59\x91\x75\x8e\x57\xce\xc7\xa0\x5a\x37\xd1\x65\x37\x49\x9f\xfe\xbc\x77\xec\x63\x8c\x06\x62\x9e\x24\xe3\x3e\xae\x6d\xaf\xf4\x5c\x92\xe7\x88\x8c\xd1\xb3\xf8\x9d\x78\x2f\xfb\x37\xb2\x35\xc7\x18\xdd\x1a\xd3\x70\x35\x3c\x38\x5b\x9a\x62\x75\x8a\x19\xc2\xc8\x86\x30\x1a\xab\xd8\xe6\xc9\x4f\x16\x5c\xa3\xa9\x9a\x54\x2a\x9e\xd6\x9c\xb4\x9a\x57\x7f\x06\x78\x13\x35\xab\x1b\x0f\xec\xf4\x5b\x6b\xde\xd6\x7e\x21\xdd\xc4\x7d\xa7\x8d\x4d\x26\x28\xc9\x15\x26\x0a\xef\xa5\xb6\x19\x9c\x68\x07\xfd\x0b\xb9\x07\x0a\xe3\x76\xa0\xc7\xf6\xe1\x03\x9b\x5a\xb9\xbb\x82\xc1\x01\x74\x1f\x5e\xba\x4a\x69\xcb\xd9\x42\xb6\xec\xaa\xfe\x92\xda\xb7\xd7\x3d\x7e\x05\x00\x00\xff\xff\x9e\x6a\x61\x83\xa4\x02\x00\x00" func idtablestakingDelegationDel_stake_unstakedCdcBytes() ([]byte, error) { return bindataRead( @@ -2540,11 +2600,11 @@ func idtablestakingDelegationDel_stake_unstakedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_stake_unstaked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x74, 0xad, 0x88, 0x47, 0x36, 0x16, 0xef, 0x73, 0xad, 0x97, 0xe5, 0xea, 0x2d, 0xf8, 0xaa, 0x76, 0xc6, 0xa, 0x7b, 0xa9, 0x51, 0x85, 0x17, 0x72, 0x7, 0xfe, 0xb0, 0x79, 0xb4, 0xaa, 0xda, 0x62}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb2, 0xe0, 0x9e, 0xd0, 0xcb, 0x7b, 0x17, 0x55, 0xd4, 0x3c, 0x3a, 0xb7, 0x69, 0x8d, 0xf0, 0x10, 0x95, 0x57, 0x91, 0x73, 0xc7, 0xbe, 0xf3, 0x94, 0x97, 0x96, 0xe, 0x27, 0x37, 0x17, 0xff, 0x6a}} return a, nil } -var _idtablestakingDelegationDel_withdraw_reward_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x8f\xd3\x30\x10\x85\xef\xf9\x15\xa3\x3d\xa0\xf6\x40\xc2\x01\x71\xa8\x16\x56\x85\xb4\x52\x45\xd5\x45\x6d\x00\x71\x9c\xda\x93\xd6\xac\xeb\x89\x9c\x09\xa9\x84\xf6\xbf\x23\x27\x75\x36\xab\xad\x04\x62\x2e\x56\xe4\xf7\x32\xdf\x1b\x8f\x39\x55\xec\x05\x96\x96\xdb\x55\x5e\xe0\xde\xd2\x4e\xf0\xc1\xb8\x03\x94\x9e\x4f\xf0\xe6\xbc\xca\x17\x9b\x62\x55\xfc\x28\xe6\x1f\xd7\x8b\x79\x9e\x6f\x17\xbb\x5d\x32\x72\x15\xfc\x40\x2e\x8a\x97\xeb\xfb\xef\xc5\xfd\xe7\xc5\x26\x0a\x93\x44\x3c\xba\x1a\x95\x18\x76\x13\x3c\x71\xe3\x64\x06\x5f\x97\xe6\xfc\xee\xed\x14\x7e\x27\x09\x00\x40\x96\xc1\x9a\x15\x5a\xf8\x85\xde\x04\x04\x28\xd9\x03\x82\xa7\x92\x3c\x39\x45\x20\x0c\x72\x24\xd0\x64\xe9\x80\xc2\x1e\x78\xff\x93\x94\x74\x6e\x4b\xf2\x74\xb1\xa5\x72\x06\xaf\x5e\xa6\x49\x37\xac\x29\x8f\xaa\x64\x30\x96\x31\xc1\x93\xb1\xfb\x4c\xbf\x61\x63\xa5\xd7\x55\x9e\x2a\xf4\x34\x41\xa5\x64\x06\xf3\x46\x8e\x73\xa5\x42\x90\x10\x00\x2e\x95\x65\xb0\x67\xef\xb9\xfd\x67\xee\x50\x35\xd9\x32\x1d\xc3\xc3\x7b\x08\x6d\xd2\xfe\x5f\xb7\x7f\x4d\xf2\x61\x12\x26\x3f\xbb\xf2\x7e\xe9\xa0\xd9\x09\x7b\x3c\xd0\x17\x94\xe3\x74\xe8\x1c\xea\xee\x0e\x2a\x74\x46\x4d\x6e\x3e\x71\x63\x35\x38\x96\x18\xe2\x59\x84\xfa\xb2\x11\xa8\x4f\xc6\xdd\x4c\x93\xe7\xf8\xe3\x11\x5e\xc3\x1f\xcd\x33\xd2\x66\x75\x8f\x94\x0d\xde\xee\xfa\xff\xe8\xc2\xce\x41\xe7\x8f\x68\x8f\xfd\x41\x67\x52\x8d\x50\xdc\xb2\xab\xc0\xa9\xa6\x8a\x6b\x23\x17\xb0\xdb\xd7\x2f\x5e\x24\x6d\x8d\x1c\xb5\xc7\x76\x4b\x2d\x7a\x4d\xba\xb3\xd6\xc3\x2e\xf7\xe7\x74\x68\xfd\xf8\x27\x00\x00\xff\xff\x48\xa4\x68\x6b\x52\x03\x00\x00" +var _idtablestakingDelegationDel_withdraw_reward_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\x4d\x6b\xdc\x40\x0c\xbd\xcf\xaf\x10\x3e\x2c\xf6\xa1\xf6\xa5\xf4\xb0\xa4\x0d\x6d\xc3\x42\x21\x34\x25\x49\xd3\xb3\x76\x46\xde\x9d\x66\x76\x64\x64\xb9\x0e\x94\xfc\xf7\xe2\xcf\x78\xbb\x5b\x28\xa5\xba\x08\xa3\x27\xbd\xf7\x2c\x8d\x3f\x54\x2c\x0a\x9b\xc0\xed\xa7\xab\x7b\xdc\x06\xba\x53\x7c\xf4\x71\x07\xa5\xf0\x01\x92\xd3\x42\x62\x16\x3d\xf7\xfc\x48\x71\x01\xed\xbf\x13\x63\x8c\x0a\xc6\x1a\xad\x7a\x8e\x29\x1e\xb8\x89\xba\x86\xaf\x1b\xff\xf4\xe6\x75\x06\x3f\x8d\x01\x00\x28\x0a\xb8\x66\x8b\x01\x7e\xa0\xf8\x8e\x00\x4a\x16\x40\x10\x2a\x49\x28\x5a\x02\x65\xd0\x3d\x81\xa3\x40\x3b\x54\x16\xe0\xed\x77\xb2\xda\x77\x07\xd2\x97\xc2\x2d\x95\x6b\xc0\x46\xf7\xe9\xa9\xde\xfc\x6a\x42\xdd\xb4\x91\x24\x83\xd5\x19\xcc\x67\x76\x34\xe3\xcc\x4c\x50\x4e\x96\x7a\x82\xd5\xec\x30\x7f\xc0\x26\xe8\x80\xab\x84\x2a\x14\x4a\xd1\x5a\x1d\x45\x7c\x60\x11\x6e\x1f\x30\x34\x94\xc1\xea\xbd\xb5\x9d\xff\xce\x37\x8c\x51\x14\xb0\xed\x31\x7f\x6d\xb7\x8b\x9a\x42\x99\x2f\x3d\xc3\x5b\xe8\x58\xf3\x5a\x59\x70\x47\xf9\x30\xf3\xe2\xbf\xfd\x88\x77\x69\xb7\xd9\xf5\x99\xeb\x78\x99\x75\x37\x70\x7f\x41\xdd\x67\xb3\xd2\x2e\x2e\x2f\xa1\xc2\xe8\x6d\x9a\x7c\xe4\x26\x38\x88\xac\x93\xe9\x23\xcb\xf5\x78\x6f\xe8\x0e\x3e\x26\x99\x39\xb6\xbb\xdc\xc0\x1f\xec\xfe\xbe\x96\x49\x75\x31\xe2\x8a\x79\x46\x5f\xfe\x37\x95\x9b\xeb\x9b\x6f\xd0\xf7\x4f\x12\x9f\x87\x44\x4f\x64\x1b\xa5\xe9\xa8\xcf\x0a\xcf\x1d\x55\x5c\x7b\x1d\x85\x5d\xbc\x3a\xd9\x64\xde\x7a\xdd\x3b\xc1\xf6\x96\x5a\x14\x47\xae\x6f\xad\xe7\xa7\x33\xe4\x6c\xa6\x7e\xfe\x15\x00\x00\xff\xff\xd5\x98\xe2\x33\xb8\x03\x00\x00" func idtablestakingDelegationDel_withdraw_reward_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2560,11 +2620,11 @@ func idtablestakingDelegationDel_withdraw_reward_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_withdraw_reward_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x59, 0x52, 0x4d, 0x97, 0xb1, 0xb9, 0xbc, 0x88, 0xbd, 0xa4, 0x74, 0x59, 0xab, 0xf1, 0x25, 0x8a, 0x1c, 0x55, 0x41, 0x8e, 0x6b, 0x4d, 0x3c, 0xfe, 0x4c, 0xb6, 0xdb, 0x88, 0xd3, 0xa9, 0xbf, 0x50}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0x69, 0x4a, 0xc2, 0x9c, 0x8c, 0xbe, 0x30, 0xf1, 0x75, 0xca, 0x4, 0xe6, 0x89, 0xc4, 0x37, 0xa4, 0x54, 0x4, 0x46, 0x39, 0x59, 0x38, 0x65, 0xad, 0x42, 0x81, 0x10, 0x43, 0x24, 0x11, 0x43}} return a, nil } -var _idtablestakingDelegationDel_withdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x43\x0e\xc5\x3e\x54\xea\xa1\xf4\x60\xd2\x06\xb7\xb2\xc1\xd4\x38\x25\x56\x5a\x7a\x1c\xaf\x46\xd6\x36\xab\x1d\xb1\x1a\x55\x86\x92\xff\x5e\x56\xf2\x2a\x0a\x31\xb4\x64\x2e\x8b\xd8\xf7\x34\xdf\x9b\x1d\x5d\xd5\xec\x04\xd6\x86\xbb\x4d\x9a\xe1\xc1\xd0\x5e\xf0\x41\xdb\x23\x14\x8e\x2b\x78\x77\xda\xa4\xab\x5d\xb6\xc9\x7e\x66\xcb\xcf\xdb\xd5\x32\x4d\xef\x56\xfb\x7d\x34\x71\x65\xfc\x40\x36\x88\xd7\xdb\xdb\x1f\xd9\xed\xd7\xd5\x2e\x08\xa3\x48\x1c\xda\x06\x95\x68\xb6\x33\xac\xb8\xb5\xb2\x80\xfb\xb5\x3e\x7d\x78\x3f\x87\x3f\x51\x04\x00\x90\x24\xb0\x65\x85\x06\x7e\xa3\xd3\x1e\x01\x0a\x76\x80\xe0\xa8\x20\x47\x56\x11\x08\x83\x94\x04\x39\x19\x3a\xa2\xb0\x03\x3e\xfc\x22\x25\xbd\xdb\x90\x3c\x5d\xdc\x51\xb1\x80\x37\x2f\xd3\xc4\x3b\xce\x29\x0d\xaa\x68\x34\x16\x21\xc1\x93\xb1\xff\x8c\xbf\x63\x6b\x64\xd0\xd5\x8e\x6a\x74\x34\x43\xa5\x64\x01\xcb\x56\xca\xa5\x52\x3e\x88\x0f\x00\xe7\x4a\x12\x38\xb0\x73\xdc\xfd\x37\xb7\xaf\x86\x4c\x11\x4f\xe1\xe1\x23\xf8\x36\xf1\xf0\xaf\xeb\x7f\x26\xf9\x34\xf3\x93\x5f\x5c\x78\xbf\x78\xd4\xec\x85\x1d\x1e\xe9\x1b\x4a\x39\x1f\x3b\xfb\xba\xb9\x81\x1a\xad\x56\xb3\xab\x2f\xdc\x9a\x1c\x2c\x4b\x08\xf1\x2c\x42\x73\xde\x08\xcc\x2b\x6d\xaf\xe6\xd1\x73\xfc\xe9\x08\x2f\xe1\x4f\xe6\x19\x68\x93\x66\x40\x4a\x46\x6f\x7f\xfd\x3a\x3a\xbf\x73\xd0\xfb\x03\xda\xe3\x70\xd0\x89\x54\x2b\x14\xb6\xec\x22\x70\x9c\x53\xcd\x8d\x96\x33\xd8\xf5\xdb\x17\x2f\x12\x77\x5a\xca\xdc\x61\x77\x6f\xfd\x1c\x28\xef\xad\xcd\xb8\xcb\xc3\x39\x1f\x5b\x3f\xfe\x0d\x00\x00\xff\xff\x25\x29\x97\xc0\x52\x03\x00\x00" +var _idtablestakingDelegationDel_withdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\x4d\x8b\xdb\x40\x0c\xbd\xcf\xaf\x10\x3e\x04\xfb\x50\xfb\x52\x7a\x08\xdb\x2e\x6d\x97\x40\x61\xe9\x96\xee\x47\xcf\xca\x58\x8e\xa7\x19\x8f\xcc\x58\xae\x03\x25\xff\xbd\x8c\xbf\xe2\x34\x29\x94\x52\x5d\x06\xa3\x27\xbd\xf7\x24\xd9\x54\x35\x7b\x81\x8d\xe5\xee\xd3\xdd\x13\x6e\x2d\x3d\x0a\xee\x8d\xdb\x41\xe1\xb9\x82\xe8\x32\x11\xa9\x45\xcd\x13\xef\xc9\x2d\xa0\xfd\x77\xa4\x94\x12\x8f\xae\x41\x2d\x86\x5d\x8c\x15\xb7\x4e\xd6\xf0\xbc\x31\x87\x37\xaf\x13\xf8\xa9\x14\x00\x40\x96\xc1\x3d\x6b\xb4\xf0\x03\xbd\x09\x04\x50\xb0\x07\x04\x4f\x05\x79\x72\x9a\x40\x18\xa4\x24\xc8\xc9\xd2\x0e\x85\x3d\xf0\xf6\x3b\x69\xe9\xab\x2d\xc9\x29\xf1\x95\x8a\x35\x60\x2b\x65\x7c\xa9\x37\xbd\x9b\x50\x0f\x9d\x23\x9f\xc0\xea\x0a\xe6\x33\xe7\x34\xe3\xd4\x4c\x50\x4c\x96\x7a\x82\xd5\xec\x30\x7d\xc1\xd6\xca\x80\xab\x3d\xd5\xe8\x29\x46\xad\x65\x14\xf1\x81\xbd\xe7\xee\x05\x6d\x4b\x09\xac\xde\x6b\x1d\xfc\x07\xdf\x30\x46\x96\xc1\xb6\xc7\xfc\xb5\xdd\x10\x0d\xd9\x22\x5d\x7a\x86\xb7\x10\x58\xd3\x46\xd8\xe3\x8e\xd2\xa1\xe7\xcd\x7f\x1b\xc4\xbb\x38\x6c\x76\x7d\xe5\x3a\x4e\xbd\x1e\x07\xee\x2f\x28\x65\x32\x2b\x0d\x71\x7b\x0b\x35\x3a\xa3\xe3\xe8\x23\xb7\x36\x07\xc7\x32\x99\x3e\xb3\xdc\x8c\xf7\x86\x79\x65\x5c\x94\xa8\x73\xbb\xcb\x0d\xfc\xc1\xee\xef\x6b\x99\x54\x67\x23\x2e\x9b\x7b\xf4\xe9\x7f\x53\xb9\xb9\x7f\xf8\x06\x7d\xfd\x24\xf1\x38\x3c\x74\x20\xdd\x0a\x4d\x47\x7d\x55\x78\x9a\x53\xcd\x8d\x91\x51\xd8\xcd\xab\x8b\x4d\xa6\x9d\x91\x32\xf7\xd8\x3d\xbb\x30\x0f\xca\xfb\xd2\x66\xfe\x75\x86\x37\x99\xa9\x8f\xbf\x02\x00\x00\xff\xff\xb8\x15\x1d\x98\xb8\x03\x00\x00" func idtablestakingDelegationDel_withdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2580,11 +2640,11 @@ func idtablestakingDelegationDel_withdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0xb6, 0xed, 0x54, 0x52, 0x1d, 0x47, 0x45, 0x7d, 0xec, 0xd7, 0x70, 0x4a, 0x4e, 0xf5, 0x39, 0x8e, 0xda, 0x57, 0xea, 0x35, 0x5c, 0x33, 0xcd, 0xae, 0x27, 0x42, 0x6f, 0x3, 0xcd, 0x14, 0x31}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0x9, 0xa9, 0xbe, 0x99, 0x3e, 0x9a, 0x30, 0x27, 0x80, 0xe7, 0x17, 0x89, 0x21, 0xf2, 0xd3, 0x7d, 0x98, 0x8f, 0xf6, 0x2c, 0xc2, 0xb1, 0x96, 0x6, 0x8a, 0x98, 0x7e, 0xc2, 0xed, 0x7c, 0x58}} return a, nil } -var _idtablestakingDelegationDelegator_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\x4d\x8b\xa3\x40\x10\x86\xef\xfe\x8a\x3a\x05\x85\x45\xf7\x1c\x92\x80\xbb\x1a\x08\x1b\x92\xb0\x0a\xc3\x1c\xcb\xb6\xa3\x3d\x76\xba\xa5\x2d\x31\x43\xe2\x7f\x1f\x4c\x26\x3d\x91\x19\xe6\xa3\x8f\xcd\x53\xf5\xbc\xf5\x8a\x43\xad\x0d\xc1\x52\xea\x6e\x15\xa5\x98\x49\x9e\x10\x56\x42\x15\xb0\x37\xfa\x00\xbf\x8f\xab\x28\xde\xa4\xab\xf4\x31\x0d\xff\xac\xe3\x30\x8a\xfe\xc7\x49\xe2\xdc\x4d\xa5\xba\xe2\xea\x06\x2f\xd7\xdb\x87\x74\xfb\x2f\xde\xdc\x40\x27\x08\x20\x2d\x45\x03\x64\x50\x35\xc8\x48\x68\x05\x98\xe7\x0d\x20\xd4\x6d\x26\x05\x83\x9c\x4b\x5e\x20\x69\x03\x0c\x6b\xcc\x84\x14\xf4\x0c\xa4\x01\x15\x20\x63\xba\x55\x04\x9d\xa0\x72\xd8\x84\x0a\xf8\x51\x34\x34\xc4\xdb\xe8\x9c\x47\x76\x54\x67\x4f\x9c\x91\xe3\xdc\x6b\x4e\x8e\x03\x00\x50\x1b\x5e\xa3\xe1\x2e\x32\x46\x53\x08\x5b\x2a\xc3\xeb\x5a\xef\x46\x0c\x4f\xec\x07\x1b\xf9\x99\x36\x46\x77\xb3\xc9\xfb\x42\xfc\x91\x71\xe1\x0e\x27\x4f\x3f\x28\xce\xb7\x4c\x42\xda\x60\xc1\x77\x48\xa5\x07\xf3\x39\x28\x21\xe1\x7c\xb6\xca\xe1\x5d\x9c\x05\xa7\xbf\xf6\xf4\xd9\xe4\xf4\x95\x7b\x77\x29\xae\x5f\xb8\xc1\xb5\xc2\x60\x2f\x75\xf7\x4a\x5a\xc8\xf3\x59\xc9\x59\xe5\x7a\xd6\x77\x1a\x99\x0d\xa7\xd6\x28\xfb\xd5\xbf\x55\x71\xc9\x24\x85\xaa\x7e\x12\x65\xb4\xfb\xb3\x5c\xbf\x46\x24\xa1\x29\x38\x7d\xbb\x46\x3b\x7b\xbd\xaa\x77\xfa\x97\x00\x00\x00\xff\xff\x74\x62\xf7\x3a\xc0\x02\x00\x00" +var _idtablestakingDelegationDelegator_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\xcb\xae\x9b\x30\x10\x86\xf7\x7e\x8a\x51\x16\x11\x48\x11\xec\xa3\x5c\xd4\x26\xaa\xd4\x4d\x1b\x29\x51\xf7\x83\x19\xc0\x8d\x63\x23\x7b\x10\xad\x12\xde\xbd\x82\x34\x04\x4e\x72\x6e\xde\x81\x67\xe6\xff\xfc\x8d\x3a\x95\xd6\x31\x7c\xd3\xb6\xfe\xbe\x3d\x60\xa2\x69\xcf\x78\x54\x26\x87\xcc\xd9\x13\x4c\x1e\x2f\x26\x62\xd0\x73\xb0\x47\x32\x83\xd2\xee\x7b\x22\x44\x1c\xc3\xa1\x50\x1e\xd8\xa1\xf1\x28\x59\x59\x03\x98\xa6\x1e\x10\xca\x2a\xd1\x4a\x42\x4a\x9a\x72\x64\xeb\x40\x62\x89\x89\xd2\x8a\xff\x02\x5b\x40\x03\x28\xa5\xad\x0c\x43\xad\xb8\x68\x27\xa1\x01\xfa\xa3\x3c\xb7\x54\x3f\x6c\x4a\xdb\xbe\xd5\x26\xbf\x49\xb2\x10\xc3\x98\xb3\x10\x00\x00\xa5\xa3\x12\x1d\x05\x28\x25\xcf\x01\x2b\x2e\x82\xaf\xd6\x39\x5b\xff\x42\x5d\xd1\x0c\x36\xb7\x54\x45\x3e\x84\xe9\x97\x6b\x66\x78\x6b\x6f\x8f\xca\x5a\x14\x8e\x3c\x5b\x87\x39\x45\x49\xd7\xbf\xe8\x66\x3d\x7a\x89\x7a\xac\x9f\xb5\x21\x17\xc2\xf4\x49\xcd\x08\x7f\x15\xb4\xe2\xe6\x4f\xe4\xdf\x67\xed\xaf\xd9\x3b\xe4\x22\x84\xe5\x12\x8c\xd2\x70\xb9\xf4\x88\xed\xe9\x18\xe5\xe0\x39\x51\x4e\xbc\x98\x9e\xdf\x8b\xdf\x75\x8b\x68\x56\x41\x7c\x5d\x49\x9c\x69\x5b\xff\xaf\xec\x8b\xc2\x75\x24\x0b\x92\xc7\x20\x84\xf5\x1a\x32\xd4\x9e\xfa\xf0\xf3\x08\xc3\x11\x57\xce\xf4\xbf\x9a\xbb\x47\x4d\x7c\x5f\xf7\x06\x4b\x58\x3e\x61\xbe\x49\x56\xde\x57\xf4\x19\xfa\x11\xc4\x07\x55\xf6\x3d\xa1\x78\xdd\x62\x67\xc5\x17\xe3\x80\xe1\x3b\x66\xe3\x35\xf0\x1c\xde\x32\xf9\x22\xb3\x11\xcd\xbf\x00\x00\x00\xff\xff\xe8\x8a\xcb\x49\x7c\x03\x00\x00" func idtablestakingDelegationDelegator_add_capabilityCdcBytes() ([]byte, error) { return bindataRead( @@ -2600,11 +2660,11 @@ func idtablestakingDelegationDelegator_add_capabilityCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/delegator_add_capability.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8c, 0xbe, 0xa, 0x4e, 0xbc, 0x74, 0xc8, 0x4f, 0xad, 0xc7, 0xaa, 0x94, 0x93, 0x8, 0xc7, 0x22, 0x42, 0xa1, 0x73, 0xae, 0xad, 0xe8, 0xe8, 0xff, 0xbb, 0x58, 0xf6, 0x30, 0xb, 0xef, 0x9, 0xa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xc2, 0x21, 0x2e, 0xa2, 0xb9, 0x97, 0xd6, 0xee, 0x84, 0x4, 0xc0, 0x18, 0x6c, 0x12, 0xc9, 0x80, 0x6f, 0xd0, 0x3a, 0xc6, 0xcc, 0xa3, 0x72, 0x33, 0xa7, 0xe4, 0xde, 0xb6, 0x7e, 0xfd, 0x12}} return a, nil } -var _idtablestakingDelegationGet_delegator_committedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xde\xd1\x82\xb4\xa2\xe2\xa1\xe0\xa1\xba\x29\x2c\x88\x07\x93\x1e\x3c\x6e\x92\x49\xba\x34\x3b\x13\x36\x13\x2c\x88\xff\x5d\x62\x68\x15\xe9\x69\x98\xc7\xe3\x7b\x7c\x21\xf6\x92\x14\xdb\x4e\x3e\x9c\x2d\x7c\xd9\x51\xae\xfe\x10\xb8\x45\x93\x24\xe2\xe6\xe8\x6c\xf6\x5a\xb8\xe2\xbd\xd8\x3c\xbd\x64\x1b\x6b\xdf\xb2\x3c\x37\x66\xb5\x42\xb1\x0f\x03\x86\x2a\x85\x5e\x91\x48\xc7\xc4\x03\x74\x4f\x28\x7d\xe7\xb9\x22\x48\x83\x4a\x62\x0c\xaa\x54\x43\xe5\x40\x3c\x4c\x99\x47\x4d\x1d\xb5\x5e\x25\x19\xd3\x8f\x25\x9a\x91\x11\x7d\xe0\x2b\x96\x9a\x9c\x5d\x23\xd7\x14\xb8\xbd\xfe\xed\x4d\xe1\xce\xb1\xde\xdd\x2e\xd6\xd8\x6d\xc3\xf1\xe1\x1e\x9f\x06\x00\x3a\xd2\xa9\xe6\xb8\x11\x3c\x5e\x90\x58\xda\x33\x83\x1b\x39\x2f\xcc\xf7\xdf\xc2\x9f\x67\xf1\x03\x9f\xa5\x4e\xfc\xe5\xac\xf0\x7c\x52\x32\x5f\xdf\x01\x00\x00\xff\xff\xd0\x83\xf2\x49\x3b\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_committedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\x03\x31\x10\x85\xef\xf9\x15\x8f\x9e\xba\x20\x2d\xa8\x78\x28\x78\x72\x29\xec\xb9\xed\x0f\x98\x66\x27\xdb\xd0\x64\xa6\x24\x53\x14\xc4\xff\x2e\xeb\xd2\x55\xd4\x53\xc8\x9b\xc7\xf7\xf8\x62\xbe\x68\x31\x6c\x93\xbe\x76\xed\x9e\x8e\x89\x77\x46\xe7\x28\x03\x42\xd1\x8c\xc5\xdf\xc3\xc2\xb9\xf5\x1a\xfb\x53\xac\xa8\xbe\xc4\x8b\xa1\xb0\x5d\x8b\x54\xd8\x89\x71\xa4\x44\xe2\x19\x1a\xe0\x35\xe7\x68\xc6\x3d\x4c\xcf\x2c\x75\xcc\x08\x3d\x27\x1e\xc8\xb4\x38\x47\xde\x73\xad\x4b\x4a\xa9\x41\xb8\x0a\x32\x45\x59\x8a\xf6\xdc\xb5\x1b\xec\xac\x44\x19\xee\xbe\xfb\x63\x78\xe8\xc4\x1e\xee\x9b\x0d\x0e\xdb\xf8\xf6\xf4\x88\x77\x07\x00\x89\x6d\xac\x75\x12\x14\xcf\xff\xa8\xac\xda\x99\x21\x41\xe7\x85\xe9\xfd\xb5\xf0\xe3\xd3\x7c\xc1\x27\xb9\x1b\x7f\x35\xa9\xbc\xdc\xd4\xdc\xc7\x67\x00\x00\x00\xff\xff\xf7\xec\x35\xd4\x41\x01\x00\x00" func idtablestakingDelegationGet_delegator_committedCdcBytes() ([]byte, error) { return bindataRead( @@ -2620,11 +2680,11 @@ func idtablestakingDelegationGet_delegator_committedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_committed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0xb5, 0xf, 0xba, 0xf, 0x7b, 0x39, 0xf1, 0x31, 0xef, 0x95, 0x64, 0x1f, 0x4, 0xc8, 0xd9, 0xc1, 0xc4, 0x5b, 0x9a, 0xb2, 0x85, 0x44, 0xde, 0x8d, 0x99, 0x72, 0x68, 0x5, 0xc4, 0x36, 0x2b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0x47, 0x67, 0x61, 0x72, 0x82, 0xe7, 0x5, 0x71, 0x85, 0xa0, 0x71, 0x55, 0x61, 0x1, 0x5c, 0x1e, 0x63, 0xf7, 0x20, 0xd0, 0xe0, 0x44, 0x4f, 0x2d, 0xf0, 0xd3, 0x90, 0x56, 0x35, 0xa3, 0x92}} return a, nil } -var _idtablestakingDelegationGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8e\x41\x4b\xc4\x30\x10\x46\xef\xf9\x15\xdf\xd1\x05\x71\x45\x6f\x7b\x5b\x49\x85\x80\x78\x30\xf1\xe0\x71\x76\x9b\xb6\x83\xe9\xa4\x24\x53\x56\x10\xff\xbb\x14\xa5\x8a\x08\x7b\x1a\xe6\xe3\xc1\x7b\x3c\x4e\xb9\x28\xee\x53\x3e\x39\x1b\xe8\x90\xa2\x57\x7a\x65\xe9\xd1\x95\x3c\xe2\xfa\xcd\xd9\xe6\x31\xb8\xf0\x12\xf6\x77\x0f\xcd\xde\xda\xa7\xc6\x7b\x63\xb6\x5b\x84\x81\x2b\xea\xb1\xf0\xa4\x28\x51\xe7\x22\x15\x94\x12\x74\x88\x60\xe9\x32\xa8\xd6\x7c\x64\xd2\xd8\xe2\xc4\x3a\x80\xd0\xc6\x14\x7b\xd2\x5c\x8c\x99\xe6\x03\xba\x59\x30\x12\xcb\x85\xe4\x36\x3a\xbb\x83\xd7\xc2\xd2\x5f\xfe\x70\xcb\xf8\xec\x44\x6f\x6f\x36\xbb\x7f\x1a\xaf\xec\x0a\x2e\xc2\x77\x03\xe0\xbb\xe5\x2c\xbd\x4a\xbf\xee\x1f\xe9\xaf\x67\x63\x3e\x3e\x03\x00\x00\xff\xff\x51\x05\x16\x8f\x25\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8e\xc1\x4a\x87\x40\x10\x87\xef\xfb\x14\x3f\x3c\x29\x44\x42\xdd\x3c\x4b\xe0\x59\x7b\x80\x69\x1d\x75\x68\x9d\x95\xdd\x11\x0f\xd1\xbb\x87\x14\x16\x15\xfc\x4f\xc3\xcc\x7c\xf0\x7d\xb2\x6e\x31\x19\x9e\x42\x3c\xba\x76\xa0\x97\xc0\xbd\xd1\xab\xe8\x8c\x29\xc5\x15\xc5\xdf\x47\xe1\x5c\x5d\x63\x58\x24\x23\xfb\x24\x9b\x21\xb1\xed\x49\x33\x28\x04\xd8\xc2\x10\x9d\x22\x28\xe7\xe8\x85\x8c\x47\x1c\x62\x0b\x08\x23\x07\x9e\xc9\x62\x72\x8e\xbc\xe7\x9c\x4b\x0a\xa1\xc2\xb4\x2b\x56\x12\x2d\x35\x8e\xdc\xb5\x0d\x7a\x4b\xa2\xf3\xdd\x37\x7f\x1e\x9f\x3b\xb5\xc7\x87\xaa\xf9\xa7\xf4\xbe\xbd\xc0\x53\xfc\xe6\x00\x7c\x35\xdd\xa4\x2f\xe9\xe7\xfc\x25\xfd\xb1\x54\xee\xfd\x23\x00\x00\xff\xff\x23\x78\xfb\x5e\x2b\x01\x00\x00" func idtablestakingDelegationGet_delegator_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -2640,11 +2700,11 @@ func idtablestakingDelegationGet_delegator_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x21, 0xa8, 0x94, 0x85, 0xd9, 0xe1, 0x14, 0x1f, 0x3d, 0x6a, 0x33, 0xd5, 0xbe, 0xc1, 0x84, 0x39, 0xc8, 0x4a, 0x14, 0x55, 0x44, 0xdc, 0xa6, 0x75, 0xae, 0x4f, 0xff, 0xc4, 0xc4, 0xeb, 0xd6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0xec, 0xa2, 0x5c, 0x37, 0x3d, 0x48, 0x22, 0x10, 0x24, 0xc6, 0xbc, 0x82, 0x80, 0x47, 0xaf, 0xd2, 0xac, 0xbf, 0xb3, 0xc5, 0x14, 0x25, 0x8f, 0x5b, 0x8f, 0x80, 0x5e, 0x86, 0x97, 0x9e, 0x72}} return a, nil } -var _idtablestakingDelegationGet_delegator_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x4f\x4b\xc3\x40\x10\xc5\xef\xfb\x29\x1e\x3d\x48\x02\xd2\x78\x2e\x6a\x89\x4d\x85\x80\x14\xb1\xb9\x78\xdc\x64\x27\xe9\xea\x76\x27\x6c\x26\x54\x29\xfd\xee\xd2\xc6\xfe\x11\x0a\xee\x69\x78\xfb\x78\xbf\x99\x67\xd7\x2d\x07\xc1\xb3\xe3\x4d\x9e\x15\xba\x74\xb4\x14\xfd\x69\x7d\x83\x3a\xf0\x1a\x77\x5f\x79\x36\x5f\x14\x79\xf1\x5e\xa4\x4f\x2f\xf3\x34\xcb\xde\xe6\xcb\xa5\x52\x49\x82\x62\x65\x3b\x74\x55\xb0\xad\xa0\x21\xe9\xa0\x9d\x83\xac\x08\xd6\xd7\x0c\x5d\x72\x2f\xd0\x30\xe4\xa8\xd1\xc2\x01\xda\x1b\x04\x92\x3e\xf8\x0e\x56\x94\x6a\xfb\x12\x75\xef\xb1\xd6\xd6\x47\xda\x98\x40\x5d\x37\x41\x3a\x0c\xf1\xe4\xca\x4a\xe3\xec\x18\x96\xef\x11\x5b\xa5\x00\xc0\x91\x5c\x50\x1e\xf6\xbb\xa4\x55\xc5\xbd\x97\x63\x6a\x7c\xf0\xed\xdf\xb8\x21\x99\xe9\x56\x97\xd6\x59\xf9\xbe\xbf\xd9\x5e\x81\x2c\xd8\xd0\x09\xf4\xda\x97\xce\x56\xbb\xc7\x28\x69\x0f\x53\x52\x3b\xde\xfc\x3a\x4f\xa6\x8b\xfc\x92\x43\xe0\x4d\x74\x56\xa6\x53\xb4\xda\xdb\x2a\x1a\xcd\xb8\x77\x06\x9e\x05\x83\x09\x81\x6a\x0a\xe4\x2b\x82\xf0\xc5\x05\x5c\x7e\x50\x25\xa3\x78\xb8\x6e\x68\xec\xdf\x32\x22\xcf\x86\xf2\x6c\x72\xce\x19\x0f\xca\xed\x59\xf9\xfb\x6d\x4d\xac\x76\xea\x27\x00\x00\xff\xff\x48\xe7\x60\xcd\xff\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\xc1\x6a\xf3\x30\x10\x84\xef\x7a\x8a\xc1\x87\x1f\x1b\x7e\xec\x7b\x68\x1b\x42\x43\x21\x97\x52\x68\x5e\x60\x2d\xad\x13\xb5\x8a\xd6\x48\x6b\x72\x08\x79\xf7\x92\xb8\x89\x53\x1a\xa8\x4e\xcb\xee\x30\xdf\x68\xfc\xae\x97\xa4\x78\x09\xb2\x5f\x2d\xd7\xd4\x06\x7e\x57\xfa\xf4\x71\x83\x2e\xc9\x0e\xc5\xef\x43\x61\x4c\xd3\x60\xbd\xf5\x19\xd9\x26\xdf\x2b\x36\xac\x19\x14\x02\x74\xcb\xf0\xb1\x13\x50\x2b\x83\x82\xe0\x38\xf0\x86\x54\x12\x28\x3a\x24\xd6\x21\xc5\x0c\xaf\xc6\x90\xb5\x9c\x73\x49\x21\x54\xe8\x86\x88\x1d\xf9\x58\x92\x73\x89\x73\x9e\x61\x31\x0e\xd5\xec\x4e\xb0\x7a\x79\x31\x5d\x9d\x50\x07\x63\x00\x20\xb0\xde\xd0\x1e\x4f\x99\x16\xd6\xca\x10\xf5\xe2\x5a\x9d\x75\xa7\x57\x5b\xea\xa9\xf5\xc1\xab\xe7\x5c\xb7\x92\x92\xec\x1f\xfe\x1d\xee\xa0\x5e\xc5\xf1\x15\xf7\x36\xb4\xc1\xdb\xe3\x53\xd9\xf4\xe7\xa9\xe9\x82\xec\xbf\x95\x57\xd1\x44\x99\xcf\xd1\x53\xf4\xb6\x2c\x9e\x65\x08\x0e\x51\x14\x23\x0b\x89\x3b\x4e\x1c\x2d\x43\xe5\x26\xb5\xb4\x1f\x6c\xb5\xa8\xc6\x1f\x8d\x6d\xfd\x59\x40\x19\xc5\xf1\x6a\x39\x9b\x7c\xea\x71\xf3\x7f\xda\xfc\x3c\x7b\x57\x99\xa3\xf9\x0a\x00\x00\xff\xff\xb9\xc7\x94\xa1\xf9\x01\x00\x00" func idtablestakingDelegationGet_delegator_info_from_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -2660,11 +2720,11 @@ func idtablestakingDelegationGet_delegator_info_from_addressCdc() (*asset, error } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_info_from_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa, 0x76, 0xb3, 0x28, 0xb8, 0xcd, 0xae, 0x9, 0x22, 0x66, 0x1, 0x9, 0x23, 0x30, 0xd7, 0x40, 0x20, 0x33, 0x70, 0x33, 0xec, 0x8, 0x11, 0x57, 0x5f, 0xab, 0x83, 0x13, 0x9, 0xa3, 0xb2, 0xa9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x6d, 0xf0, 0x20, 0xdc, 0x44, 0xad, 0x75, 0x83, 0x22, 0xdd, 0xd0, 0xfe, 0x92, 0x57, 0x2d, 0xf0, 0xc2, 0x14, 0x1b, 0x47, 0x3a, 0xe7, 0x2c, 0xc6, 0xc0, 0xeb, 0x5b, 0xa3, 0xba, 0x2e, 0xa9}} return a, nil } -var _idtablestakingDelegationGet_delegator_requestCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xde\xd1\x82\xb4\xa2\xe2\xa1\xe0\xa1\xb2\x2d\x2c\x88\x87\x66\x73\xf0\xb8\x69\x26\xe9\xd2\x64\x26\xee\x4e\xb0\x20\xfe\x77\x69\x6b\xab\x88\xa7\x61\x1e\x8f\xef\xf1\xc5\x7e\x90\xa4\x58\x75\xf2\xee\xac\x0f\x55\x47\x85\x86\x5d\xe4\x16\x4d\x92\x1e\x37\x7b\x67\x97\x2f\xde\xf9\x57\xbf\x78\x7a\x5e\x2e\xac\x5d\x2f\x8b\xc2\x98\xd9\x0c\x7e\x1b\x33\xf2\x26\xc5\x41\x91\x48\xc7\xc4\x19\xba\x25\x24\x7a\x1b\x29\x2b\xd5\x18\x39\x7f\xb3\xaa\xd0\x05\xde\x10\xa4\x41\x40\x4d\x1d\xb5\x41\x25\x19\x33\x8c\x15\x9a\x91\xd1\x87\xc8\x57\x2c\x35\x39\x3b\x47\xa1\x29\x72\x7b\xfd\xd3\x3b\x84\xa5\x63\xbd\xbb\x9d\xcc\x51\xae\xe2\xfe\xe1\x1e\x1f\x06\x00\x3a\xd2\x43\xcd\x71\x23\x78\xfc\x47\x62\x6a\x2f\x0c\x6e\xe4\xb2\x70\xba\x7f\x16\x7e\x3d\x93\x23\xfc\x24\x75\xe6\x4f\x55\x76\xc4\x79\x7d\xb6\xf3\x52\x1e\xf5\xc8\x7c\x7e\x05\x00\x00\xff\xff\xa8\x39\xca\x4b\x44\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_requestCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4a\xc3\x40\x10\x86\xef\xfb\x14\x3f\x3d\x35\x20\x2d\xa8\x78\x28\x78\x0b\x85\x5c\x6d\xf2\x00\xd3\x64\x36\x5d\xba\x99\xa9\xbb\xb3\x28\x88\xef\x2e\x6d\x6d\x15\xed\x69\x98\x99\x9f\xef\xe7\x0b\xd3\x41\x93\x61\x1d\xf5\xad\xa9\x5b\xda\x46\xde\x18\xed\x83\x8c\xf0\x49\x27\xcc\xfe\x3f\x66\xce\x2d\x97\x68\x77\x21\x23\xf7\x29\x1c\x0c\x89\xad\x24\xc9\xb0\x1d\x23\xf1\x6b\xe1\x6c\x3c\xa0\x48\xfe\x26\x6d\x29\x92\xf4\x0c\xf5\x20\x0c\x1c\x79\x24\xd3\xe4\x1c\xf5\x3d\xe7\x3c\xa7\x18\x2b\xf8\x22\x98\x28\xc8\x5c\x74\xe0\xa6\x5e\x61\x63\x29\xc8\x78\xf7\x93\x3f\x1e\xbb\x46\xec\xe1\xbe\x5a\xa1\x5b\x87\xf7\xa7\x47\x7c\x38\x00\x88\x6c\xc7\x58\x23\x5e\xf1\x7c\x43\x65\x51\x5f\x19\xe2\xf5\xda\x70\x9e\x7f\x1a\x7e\x2d\xd5\x09\x7e\x96\xbb\xf0\x17\xa6\x7b\x96\xfc\x72\xb1\x6c\xb5\x3b\x69\xb2\xfb\xfc\x0a\x00\x00\xff\xff\xac\xc1\x7c\x54\x4a\x01\x00\x00" func idtablestakingDelegationGet_delegator_requestCdcBytes() ([]byte, error) { return bindataRead( @@ -2680,11 +2740,11 @@ func idtablestakingDelegationGet_delegator_requestCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_request.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0x6, 0x0, 0x57, 0x46, 0x94, 0xda, 0x7f, 0x98, 0xf0, 0x3a, 0xb8, 0xa9, 0xe7, 0xe4, 0x9a, 0xea, 0xbe, 0xf6, 0xe9, 0xbe, 0x9e, 0x8a, 0x20, 0xad, 0x44, 0x2, 0x5d, 0x20, 0xa9, 0x12, 0xb8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb3, 0xbb, 0x41, 0xe6, 0xc4, 0x7c, 0xfd, 0xd9, 0xbd, 0x61, 0xf5, 0x8b, 0xe7, 0x6b, 0x66, 0x9e, 0xb3, 0x1c, 0x8b, 0xe3, 0x1f, 0xcf, 0x60, 0x5b, 0x7d, 0x90, 0x27, 0x78, 0xc9, 0x89, 0x7c, 0x74}} return a, nil } -var _idtablestakingDelegationGet_delegator_rewardedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xde\xd1\x82\xb4\xa2\xe2\xa1\xe0\xa1\xb2\x29\x2c\x88\x87\x66\x7b\xf0\xb8\x69\x66\xd3\xa5\x9b\xd9\xb0\x99\xd0\x82\xf8\xdf\x25\x46\xa3\x88\xa7\x61\x1e\x8f\xef\xf1\x85\xb6\x4b\x59\xb0\x8d\xe9\x6c\xb4\x75\x55\xa4\x52\xdc\x29\x70\x03\x9f\x53\x8b\x9b\x8b\xd1\xc5\x8b\x35\xf6\xd5\x6e\x9e\x9e\x8b\x8d\xd6\xbb\xa2\x2c\x95\x5a\xad\x60\x8f\xa1\x47\x7f\xc8\xa1\x13\x64\x92\x21\x73\x0f\x39\x12\x2a\x17\x1d\x1f\x08\xc9\x23\xd3\xd9\xe5\x9a\x6a\x48\x3a\x11\xf7\x63\xe4\x50\x53\xa4\xc6\x49\xca\x4a\x75\x43\x05\x3f\x30\x5a\x17\xf8\x8a\x53\x4d\x46\xaf\x51\x4a\x0e\xdc\x5c\xff\xf4\xc6\x70\x6f\x58\xee\x6e\x17\x6b\xec\xb7\xe1\xf2\x70\x8f\x37\x05\x00\x91\x64\xac\x19\xf6\x09\x8f\xff\x38\x2c\xf5\xcc\x60\x9f\xe6\x85\xe9\xfe\x59\xf8\xf5\x2c\x3e\xe1\x93\xd3\x37\x7f\x39\x29\xec\xbe\x8c\xd4\xfb\x47\x00\x00\x00\xff\xff\x68\x0c\xb5\xcb\x39\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_rewardedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x1e\x3d\x35\x20\x2d\xa8\x78\x28\x78\x0b\x85\x5c\x6d\xfb\x03\xa6\xc9\x6c\xba\x74\x33\x53\x66\xa7\x54\x10\xff\xbb\xc4\x68\x15\xed\x69\xd9\x37\x8f\xef\xf1\xa5\xe1\xa4\xe6\x58\x67\xbd\x34\xf5\x96\xf6\x99\x37\x4e\xc7\x24\x3d\xa2\xe9\x80\xd9\xff\xc3\x2c\x84\xe5\x12\xdb\x43\x2a\x28\xad\xa5\x93\xc3\xd8\xcf\x26\x05\x7e\x60\xec\x29\x93\xb4\x0c\x8d\x30\xbe\x90\x75\xdc\xc1\xf5\xc8\x52\xc6\x88\xd0\x71\xe6\x9e\x5c\x2d\x04\x6a\x5b\x2e\x65\x4e\x39\x57\x88\x67\xc1\x40\x49\xe6\xa2\x1d\x37\xf5\x0a\x1b\xb7\x24\xfd\xdd\x4f\x7f\x0c\x77\x8d\xf8\xc3\x7d\xb5\xc2\x6e\x9d\x5e\x9f\x1e\xf1\x16\x00\x20\xb3\x8f\xb5\x46\xa2\xe2\xf9\x86\xc9\xa2\xbe\x32\x24\xea\x75\x61\x7a\xff\x2c\xfc\xfa\x54\x9f\xf0\xc9\xed\x9b\xbf\x98\x54\x5e\xbe\xcc\xc2\xfb\x47\x00\x00\x00\xff\xff\x43\x2a\x44\xd3\x3f\x01\x00\x00" func idtablestakingDelegationGet_delegator_rewardedCdcBytes() ([]byte, error) { return bindataRead( @@ -2700,11 +2760,11 @@ func idtablestakingDelegationGet_delegator_rewardedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_rewarded.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0xe2, 0x1d, 0xb1, 0x8f, 0x92, 0x3c, 0xb3, 0x88, 0xe3, 0xf7, 0x4a, 0xc, 0xdd, 0x45, 0xa6, 0x56, 0x82, 0x78, 0xe4, 0x42, 0xbb, 0xa3, 0xf8, 0x81, 0xc0, 0x20, 0x10, 0x3b, 0x3f, 0x1d, 0x5e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x49, 0x68, 0x38, 0xca, 0x24, 0xda, 0x96, 0x6b, 0xc3, 0x6d, 0x21, 0xa3, 0xf8, 0x87, 0x48, 0x9, 0x2b, 0x15, 0x80, 0xf6, 0x53, 0x30, 0xce, 0x89, 0x5d, 0x88, 0xbe, 0xba, 0xd, 0xab, 0x52, 0x88}} return a, nil } -var _idtablestakingDelegationGet_delegator_stakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\x03\x31\x10\x85\xef\xf9\x15\xef\x68\x41\x5a\x51\xf1\x50\xf0\x50\x49\x0b\x01\xf1\xe0\xa6\x07\x8f\xd9\xee\x64\x1b\x36\x3b\x59\x92\x59\x2c\x88\xff\x5d\xb6\x8b\x55\xc4\xd3\x30\x8f\xc7\xf7\xf8\x42\x3f\xa4\x2c\xd8\xc5\xf4\x6e\xb4\x75\x75\xa4\x4a\x5c\x17\xb8\x85\xcf\xa9\xc7\xcd\xc9\xe8\xed\x8b\x35\xf6\xcd\x6e\x9e\x9e\xb7\x1b\xad\x5f\xb7\x55\xa5\xd4\x6a\x05\x7b\x0c\x05\xe5\x90\xc3\x20\xc8\x24\x63\xe6\x02\x39\x12\x6a\x17\x1d\x1f\x08\xc9\xa3\x88\xeb\xa8\x81\xa4\x8e\xb8\x4c\x81\x43\x43\x91\x5a\x27\x29\x2b\x35\x8c\x35\xfc\xc8\xe8\x5d\xe0\x2b\x4e\x0d\x19\xbd\x46\x25\x39\x70\x7b\xfd\xd3\x9b\xc2\xbd\x61\xb9\xbb\x5d\xac\xb1\xdf\x85\xd3\xc3\x3d\x3e\x14\x00\x44\x92\xa9\x66\xd8\x27\x3c\xfe\x63\xb0\xd4\x17\x06\xfb\x74\x59\x98\xef\x9f\x85\x5f\xcf\xe2\x0c\x9f\x8d\xbe\xf9\xcb\x59\xa1\x3a\xfb\xa8\xcf\xaf\x00\x00\x00\xff\xff\xb5\xc8\x55\xe1\x35\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_stakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\x21\xa7\x18\x4a\x02\x6d\xe9\x21\xd0\x9b\x09\xf8\xec\xe4\x03\x36\xf2\xca\x11\x96\x77\x83\xb4\xa1\x85\xd2\x7f\x2f\x8e\xa9\x5b\xda\x9c\x84\x66\x87\x37\xbc\x38\x5e\x34\x1b\xf6\x49\xdf\x9a\xfa\x40\xa7\xc4\xad\xd1\x10\xa5\x47\xc8\x3a\x62\xf5\xff\xb0\x72\x6e\xbb\xc5\xe1\x1c\x0b\x8a\xcf\xf1\x62\xc8\x6c\xd7\x2c\x05\x76\x66\x9c\x28\x91\x78\x86\x06\x14\xa3\x81\x3b\x98\x0e\x2c\x65\x0a\x08\x1d\x27\xee\xc9\x34\x3b\x47\xde\x73\x29\x6b\x4a\xa9\x42\xb8\x0a\x46\x8a\xb2\x16\xed\xb8\xa9\x77\x68\x2d\x47\xe9\x1f\x7e\xfa\x53\x78\x6c\xc4\x9e\x1e\xab\x1d\x8e\xfb\xf8\xfe\xf2\x8c\x0f\x07\x00\x89\x6d\xaa\x35\x12\x14\xaf\x77\x3c\x36\xf5\xc2\x90\xa0\xcb\xc2\xfc\xfe\x59\xf8\xf5\xa9\x6e\xf0\xd9\xec\x9b\xbf\x99\x55\xda\x9b\x97\xfb\xfc\x0a\x00\x00\xff\xff\xb6\x0e\x61\x8e\x3b\x01\x00\x00" func idtablestakingDelegationGet_delegator_stakedCdcBytes() ([]byte, error) { return bindataRead( @@ -2720,11 +2780,11 @@ func idtablestakingDelegationGet_delegator_stakedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_staked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfb, 0x1a, 0x98, 0xb2, 0xb2, 0x34, 0xae, 0x31, 0x6d, 0x97, 0xe8, 0xb4, 0x15, 0x21, 0x0, 0xd9, 0xcc, 0x76, 0xb5, 0x42, 0x72, 0xc5, 0x28, 0x29, 0x17, 0x94, 0x27, 0x49, 0x89, 0x4a, 0x83, 0xbb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0xa3, 0x50, 0xb5, 0xe3, 0xfd, 0x6a, 0x86, 0xd8, 0xd, 0x25, 0x9d, 0x1, 0xff, 0xb6, 0x29, 0x19, 0xea, 0xb3, 0x5e, 0x31, 0x71, 0x98, 0xc9, 0x61, 0x24, 0x8c, 0xc6, 0x53, 0x15, 0xa5, 0xee}} return a, nil } -var _idtablestakingDelegationGet_delegator_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4a\xf4\x40\x10\x84\xef\xf3\x14\x75\xfc\x17\x7e\x76\x45\xc5\xc3\x82\x87\x95\xc9\xc2\x80\x78\x30\xc9\xc1\xe3\x24\xe9\x64\x87\x4c\xba\xc3\xa4\x83\x0b\xe2\xbb\x4b\x0c\xae\x22\x9e\x9a\x2e\x8a\xaf\xf8\xc2\x30\x4a\x52\x1c\xa3\xbc\x3a\x5b\xf8\x2a\x52\xae\xbe\x0f\xdc\xa1\x4d\x32\xe0\xea\xec\x6c\xf6\x54\xb8\xe2\xa5\x38\x3c\x3c\x66\x07\x6b\x9f\xb3\x3c\x37\x66\xb7\x43\x71\x0a\x13\xa6\x3a\x85\x51\x91\x48\xe7\xc4\x13\xf4\x44\xa8\x7c\xf4\x5c\x13\xa4\xc5\xcc\x51\xea\x9e\x1a\xa8\xf4\xc4\xd3\x12\x79\x34\x14\xa9\xf3\x2a\xc9\x98\x71\xae\xd0\xce\x8c\xc1\x07\xfe\xc7\xd2\x90\xb3\x7b\xe4\x9a\x02\x77\xff\xbf\x7b\x4b\x58\x3a\xd6\x9b\xeb\xcd\x1e\xe5\x31\x9c\xef\x6e\xf1\x66\x00\x20\x92\x2e\x35\xc7\xad\xe0\xfe\x0f\x87\xad\xbd\x30\xb8\x95\xcb\xc2\x7a\x7f\x2d\xfc\x78\x36\x9f\xf0\xd5\xe9\x8b\xbf\x5d\x15\x4a\x9e\xd4\xf7\xd4\x98\xf7\x8f\x00\x00\x00\xff\xff\x38\x38\xde\x6a\x39\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x1e\x3d\x35\x20\x2d\xa8\x78\x28\x78\x0b\x85\x9c\xdb\xfc\x80\xe9\x66\x36\x5d\xb2\x99\x29\xbb\x13\x14\xc4\xff\x2e\x31\x18\x45\x3d\x2d\xfb\xe6\xf1\x3d\xbe\x38\xde\x34\x1b\x8e\x49\x5f\x9a\xfa\x4c\x97\xc4\x27\xa3\x21\x4a\x8f\x90\x75\xc4\xe6\xef\x61\xe3\xdc\x7e\x8f\xf3\x35\x16\x14\x9f\xe3\xcd\x90\xd9\xa6\x2c\x05\x76\x65\x5c\x28\x91\x78\x86\x06\x4c\x92\xd4\x0f\xdc\xc1\x74\x60\x29\x73\x44\xe8\x38\x71\x4f\xa6\xd9\x39\xf2\x9e\x4b\xd9\x52\x4a\x15\xc2\x24\x18\x29\xca\x56\xb4\xe3\xa6\x3e\xe0\x64\x39\x4a\x7f\xf7\xdd\x9f\xc3\xb6\x11\x7b\xb8\xaf\x0e\x68\x8f\xf1\xf5\xe9\x11\x6f\x0e\x00\x12\xdb\x5c\x6b\x24\x28\x9e\xff\x31\xd9\xd5\x2b\x43\x82\xae\x0b\xcb\xfb\x6b\xe1\xc7\xa7\xfa\x84\x2f\x6e\x5f\xfc\xdd\xa2\xd2\x4a\x31\x1a\xb8\x73\xef\x1f\x01\x00\x00\xff\xff\x17\x71\xde\xe9\x3f\x01\x00\x00" func idtablestakingDelegationGet_delegator_unstakedCdcBytes() ([]byte, error) { return bindataRead( @@ -2740,11 +2800,11 @@ func idtablestakingDelegationGet_delegator_unstakedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_unstaked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd2, 0xbf, 0x6e, 0x9a, 0xf7, 0x0, 0xbe, 0xa, 0x1e, 0x24, 0x27, 0xfd, 0x32, 0x5a, 0xe9, 0x93, 0xd, 0x78, 0x58, 0x6b, 0x3b, 0x89, 0x34, 0x82, 0x8, 0x4a, 0x9e, 0x8a, 0x86, 0xe9, 0x4b, 0xd2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0xc8, 0x77, 0xab, 0xbb, 0xa7, 0xd3, 0xbf, 0xfd, 0x5a, 0xfa, 0x9a, 0xce, 0x3f, 0xb2, 0x23, 0x98, 0x64, 0x8b, 0x20, 0x2a, 0x9f, 0x26, 0xb6, 0x78, 0xe5, 0xc, 0x1a, 0x6f, 0xa7, 0xf9, 0xcf}} return a, nil } -var _idtablestakingDelegationGet_delegator_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4a\x33\x31\x14\x85\xf7\x79\x8a\xb3\xfc\x0b\x3f\xad\xa8\xb8\x28\xb8\xa8\x64\x0a\x01\x71\xe1\x64\x16\x2e\x33\x6d\x32\x0d\xcd\xdc\x3b\x24\x77\xb0\x20\xbe\xbb\x8c\x63\xab\x88\xab\xcb\x3d\x1c\xbe\xc3\x17\xfb\x81\xb3\x60\x9b\xf8\xd5\x68\xeb\xda\xe4\x6b\x71\xc7\x48\x1d\x42\xe6\x1e\x57\x27\xa3\xab\x27\x6b\xec\x8b\xdd\x3c\x3c\x56\x1b\xad\x9f\xab\xba\x56\x6a\xb5\x82\x3d\xc4\x82\xb2\xcb\x71\x10\x64\x2f\x63\xa6\x02\x39\x78\xb4\x2e\x39\xda\x79\x70\xc0\x48\xe5\x0b\x26\x7c\xf4\x54\xa6\xcc\x61\xef\x93\xef\x9c\x70\x56\x6a\x18\x5b\x84\x91\xd0\xbb\x48\xff\x88\xf7\xde\xe8\x35\x6a\xc9\x91\xba\xff\xdf\xbd\x29\x6c\x0c\xc9\xcd\xf5\x62\x8d\x66\x1b\x4f\x77\xb7\x78\x53\x00\x90\xbc\x4c\x35\x43\x81\x71\xff\x87\xc4\x52\x5f\x18\x14\xf8\xb2\x30\xdf\x5f\x0b\x3f\x9e\xc5\x27\x7c\x96\x3a\xf3\x97\xb3\x42\x73\x56\x52\xef\x1f\x01\x00\x00\xff\xff\x59\x64\x08\x22\x3b\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\x03\x31\x10\x85\xef\xf9\x15\x8f\x9e\xba\x20\x2d\xa8\x78\x28\x78\x5b\x0a\x39\xb7\xfb\x03\xa6\xe9\x64\x1b\x9a\x9d\x29\xc9\x2c\x0a\xe2\x7f\x97\x75\x6d\x15\xf5\x14\xf2\xe6\xf1\x3d\xbe\x34\x5c\xb4\x18\xb6\x59\x5f\x7c\xbb\xa7\x43\xe6\x9d\xd1\x39\x49\x8f\x58\x74\xc0\xe2\xef\x61\xe1\xdc\x7a\x8d\xfd\x29\x55\xd4\x50\xd2\xc5\x50\xd8\xc6\x22\x15\x76\x62\x1c\x28\x93\x04\x86\x46\x8c\x52\xbf\x50\xa6\x67\x96\x3a\x65\x84\x23\x67\xee\xc9\xb4\x38\x47\x21\x70\xad\x4b\xca\xb9\x41\x1c\x05\x03\x25\x59\x8a\x1e\xd9\xb7\x1b\xec\xac\x24\xe9\xef\xbe\xfb\x53\xd8\x79\xb1\x87\xfb\x66\x83\x6e\x9b\x5e\x9f\x1e\xf1\xe6\x00\x20\xb3\x4d\x35\x2f\x51\xf1\xfc\x8f\xca\xaa\xbd\x31\x24\xea\x6d\x61\x7e\x7f\x2d\xfc\xf8\x34\x9f\xf0\x59\xee\xca\x5f\xcd\x2a\xdd\x55\xcd\xbd\x7f\x04\x00\x00\xff\xff\x4e\x43\x93\xce\x41\x01\x00\x00" func idtablestakingDelegationGet_delegator_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2760,11 +2820,11 @@ func idtablestakingDelegationGet_delegator_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0xcc, 0xb4, 0xc7, 0x5b, 0x20, 0xa9, 0x46, 0xd8, 0x41, 0x41, 0x21, 0x21, 0x9e, 0x97, 0x29, 0x8a, 0x19, 0x72, 0x4e, 0x64, 0x3, 0x3a, 0xd5, 0x46, 0x41, 0xa6, 0x9f, 0xdf, 0x8d, 0xbb, 0xf6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7e, 0x24, 0x1a, 0xd4, 0x50, 0x1c, 0x82, 0xa3, 0x78, 0x5f, 0xcf, 0x98, 0x34, 0xf2, 0x69, 0x64, 0x7d, 0x4e, 0xb2, 0xf8, 0x97, 0x2b, 0x6d, 0xd5, 0x4d, 0x7f, 0x79, 0x31, 0xfb, 0xa5, 0x97, 0xda}} return a, nil } -var _idtablestakingDelegationGet_delegator_unstaking_requestCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4a\xf3\x40\x14\x85\xf7\xf3\x14\x67\xf9\x17\x7e\x5a\x51\x71\x51\x70\x51\x99\x14\x06\xc4\x45\x33\x59\xb8\x9c\x34\x37\xe9\xd0\xe4\x4e\x9c\xb9\x83\x05\xf1\xdd\x25\x8d\x56\x11\x57\x97\x7b\x38\x7c\x87\xcf\x0f\x63\x88\x82\x6d\x1f\x5e\x8d\xb6\xae\xee\xa9\x14\x77\xf4\xdc\xa1\x8d\x61\xc0\xd5\xc9\xe8\xe2\xc9\x1a\xfb\x6c\x37\x0f\x8f\xc5\x46\xeb\x5d\x51\x96\x4a\xad\x56\xb0\x07\x9f\x90\xf6\xd1\x8f\x82\x48\x92\x23\x27\xc8\x81\x50\xbb\xde\xf1\x9e\x10\x5a\x64\x4e\x9f\x30\x09\x47\xe2\x34\x65\x0e\x0d\xf5\xd4\x39\x09\x51\xa9\x31\xd7\x68\x33\x63\x70\x9e\xff\x71\x68\xc8\xe8\x35\x4a\x89\x9e\xbb\xff\xdf\xbd\x29\xac\x0c\xcb\xcd\xf5\x62\x8d\x6a\xeb\x4f\x77\xb7\x78\x53\x00\xd0\x93\x4c\x35\xc3\x6d\xc0\xfd\x1f\x12\x4b\x7d\x61\x70\x1b\x2e\x0b\xf3\xfd\xb5\xf0\xe3\x59\x9c\xe1\xb3\xd4\x17\x7f\x39\x2b\xec\xe8\x25\x53\x12\x6a\x6c\xa8\xce\x76\xa4\xde\x3f\x02\x00\x00\xff\xff\xd5\x52\xe0\xa9\x44\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_unstaking_requestCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x1e\x3d\x35\x20\x2d\xa8\x78\x28\x78\x0b\x85\x5c\x6d\xf2\x03\xa6\xc9\x6c\xba\x74\x33\x53\x77\x27\x28\x88\xff\x5d\xd2\x68\x14\xf5\xb4\xec\x9b\xc7\xf7\xf8\xc2\x70\xd1\x64\xd8\x47\x7d\xa9\xca\x9a\x8e\x91\x0f\x46\xe7\x20\x3d\x7c\xd2\x01\xab\xbf\x87\x95\x73\xdb\x2d\xea\x53\xc8\xc8\x6d\x0a\x17\x43\x62\x1b\x93\x64\xd8\x89\x71\xa4\x48\xd2\x32\xd4\x63\x94\xfc\x89\x32\x3d\xb3\xe4\x29\x23\x74\x1c\xb9\x27\xd3\xe4\x1c\xb5\x2d\xe7\xbc\xa6\x18\x0b\xf8\x51\x30\x50\x90\xb5\x68\xc7\x55\xb9\xc3\xc1\x52\x90\xfe\xe6\xbb\x3f\x85\x4d\x25\x76\x77\x5b\xec\xd0\xec\xc3\xeb\xc3\x3d\xde\x1c\x00\x44\xb6\xa9\x56\x89\x57\x3c\xfe\xa3\xb2\x29\x17\x86\x78\x5d\x16\xe6\xf7\xd7\xc2\x8f\x4f\x71\x85\xcf\x72\x5f\xfc\xcd\xac\xf2\xc4\xcf\x23\x67\xe3\xae\xd6\xe6\x6a\xc9\xee\xfd\x23\x00\x00\xff\xff\x1d\xef\xbb\x1e\x4a\x01\x00\x00" func idtablestakingDelegationGet_delegator_unstaking_requestCdcBytes() ([]byte, error) { return bindataRead( @@ -2780,11 +2840,11 @@ func idtablestakingDelegationGet_delegator_unstaking_requestCdc() (*asset, error } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_unstaking_request.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0x11, 0x6f, 0xac, 0xf2, 0xc9, 0x38, 0x6a, 0x2f, 0x9d, 0x96, 0xd5, 0xe2, 0xfd, 0x20, 0x61, 0x12, 0xcd, 0xc8, 0xa8, 0x97, 0x82, 0x66, 0xa4, 0xec, 0xda, 0xde, 0xae, 0xdb, 0xc0, 0x2b, 0xf1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb7, 0xe, 0x2e, 0xcf, 0x7d, 0x6e, 0x43, 0x3d, 0x3f, 0x1c, 0x19, 0x96, 0x15, 0x58, 0x75, 0x47, 0x8, 0x3c, 0xc1, 0xd, 0x7, 0x76, 0x5f, 0x45, 0x84, 0xc5, 0x71, 0xa6, 0x4e, 0xc1, 0x3, 0x6a}} return a, nil } -var _idtablestakingDelegationRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\x41\x6f\x9b\x4c\x10\x86\xef\xfc\x8a\x51\x0e\x11\x96\x62\xf3\x1d\x3e\xf5\x80\x68\x22\xd7\xd8\x92\xd5\xc8\x89\x02\x6d\xd5\xe3\x7a\x19\xf0\xd6\xb0\x83\x86\xa1\x44\x8a\xfc\xdf\xab\xc5\xf5\x96\x54\xbe\x74\x2f\x8b\xc4\x33\xb3\xcf\x3b\x63\x9a\x96\x58\x60\x53\xd3\xb0\x4d\x73\xb5\xaf\x31\x13\x75\x34\xb6\x82\x92\xa9\x81\xff\x5e\xb7\xe9\x7a\x97\x6f\xf3\xef\xf9\xf2\xd3\xe3\x7a\x99\xa6\x2f\xeb\x2c\x0b\x26\x55\x39\x1d\xd1\x5e\xe0\xcd\xe3\xd3\xb7\xfc\xe9\xf3\x7a\x77\x01\x03\x61\x65\x3b\xa5\xc5\x90\x0d\x2d\x15\xb8\x4d\x63\xc8\x84\x8d\xad\xee\x40\x35\xd4\x5b\x89\xe1\xcb\xc6\xbc\x7e\xf8\x7f\x06\x6f\x41\x00\x00\xd0\x32\xb6\x8a\x31\x54\x5a\x4b\x0c\xcb\x5e\x0e\x4b\xad\x1d\xe9\x09\x77\x6a\x14\x28\x2f\xef\xbf\x60\x09\x1f\xc1\x15\x2c\xf6\xc4\x4c\x43\x72\xeb\xdd\x16\x5f\x55\x5f\xcb\x7d\xe8\x14\x63\x88\x3a\x21\x56\x15\x46\xbe\x76\xfc\x3d\xf3\x7d\xdd\x79\x78\x80\x56\x59\xa3\xc3\x9b\x15\xf5\x75\x01\x96\x04\xce\x7d\x81\xb1\x44\x46\xab\x11\x84\xc0\xc5\x85\xb1\xfe\x66\xf6\xc7\x2c\x8a\x60\xc5\xa8\x04\x41\x81\xc5\x01\x0a\xac\xb1\x52\x42\x0c\xb4\xff\x81\x5a\xa0\x24\x06\x39\x20\xb8\x79\xbc\xcb\x63\x71\x48\x3d\x9c\xcc\xaf\x6c\x65\xc1\x58\x99\x4e\x90\x77\x13\xd4\x0f\xf6\x7c\xdf\x81\xb8\x5c\xdd\x8a\x9a\xc6\x88\x60\x11\x43\x32\x9f\x8e\x6a\x31\x18\x39\x14\xac\x86\xf0\xb2\x81\xf3\x3d\x7b\x1f\x22\x13\x62\x1c\x45\xff\x4e\xe0\xa9\x71\xe2\x9d\xfa\x89\x61\x32\x9f\xca\x3b\x85\xf8\x9a\xbe\x27\xb2\xf3\x1a\x9e\x95\x1c\x26\xaf\x8e\xfd\x6a\x63\x8f\xc9\xed\xdb\x95\xea\x1d\x15\xe8\x3b\x3c\xf7\xfb\xda\xe8\xd3\x7d\x18\xb5\xe3\xd7\xb8\xd1\xdf\xe4\x54\x44\x71\x85\xf2\x0f\x32\xce\xe3\x14\x04\xa7\x5f\x01\x00\x00\xff\xff\x04\xd2\xf0\x2f\x1a\x03\x00\x00" +var _idtablestakingDelegationRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xcd\x8e\x9b\x30\x10\xbe\xf3\x14\xa3\x1c\x22\x90\x12\xb8\x54\x3d\x20\xba\xab\x8a\x28\xd2\x4a\xd5\x76\xd5\x6c\xbb\xe7\xc1\x0c\xe0\x2e\xd8\xc8\x1e\x4a\xa5\x55\xde\xbd\x32\x24\x5e\x68\x73\xa8\x2f\x16\xf8\x9b\xef\x67\x66\x64\xd7\x6b\xc3\x70\x6c\xf5\xf8\x70\x78\xc6\xa2\xa5\x13\xe3\xab\x54\x35\x54\x46\x77\xb0\xf9\xf7\x61\x13\x2c\x6a\x9e\xf5\x2b\xa9\x05\x74\xfa\x7e\x47\x0c\xaa\x96\x45\x4b\x2b\xd4\xf2\xdf\x26\x08\xd8\xa0\xb2\x28\x58\x6a\x15\x2a\x5d\xd2\xc3\x21\x85\x13\x1b\xa9\xea\x1d\x60\xa7\x07\xc5\x29\x7c\x3f\xca\xdf\x1f\x3f\x44\xf0\x16\x04\x00\x00\xbd\xa1\x1e\x0d\x85\x28\x04\xa7\x80\x03\x37\xe1\x89\xb5\xc1\x9a\x76\x90\x63\x8f\x85\x6c\x25\x4b\xb2\x11\x6c\x3f\x0b\xe1\x28\x7c\xa9\x3b\x2d\x31\x54\x57\xaf\xdf\xa8\x82\x4f\xe0\x98\x62\x3b\x73\xc4\x85\x36\x46\x8f\xd9\xc4\xbb\x72\x1b\xbf\x48\x6e\x4a\x83\x63\x04\x5b\x1f\x36\xfe\x81\x43\xcb\x77\xa1\x4b\x97\x42\x72\x21\x49\xbc\xc0\xf4\x1c\x79\x71\x77\xee\xef\xa1\x47\x25\x45\xb8\xc9\xf5\xd0\x96\xa0\x34\xc3\x2c\x0a\x86\x2a\x32\xa4\x04\x01\x6b\x38\x7e\xf9\xfa\x02\x53\xfd\x26\x7a\xb7\x9f\x24\x90\x1b\x42\x26\x40\x50\x34\x42\x49\x2d\xd5\xc8\xda\x80\x2e\x7e\x92\x60\xa8\xb4\x01\x6e\x08\x5c\x37\x57\xa1\x15\x8d\x07\x0f\xce\xf6\x37\x86\x1e\x1b\xaa\xa5\x65\x32\x8f\x0b\xa8\x1f\xcb\x7c\xef\x80\x5d\x2e\x9b\xeb\xae\x93\xcc\x54\xa6\x90\xed\x97\xfd\x8c\xc7\x4b\x9b\xc2\xeb\xfc\xe6\x3b\x5a\x87\x70\x23\xa3\xc9\xe8\xdf\x09\x3c\x6a\x35\x16\x8b\xbf\x28\xcc\xf6\xcb\x10\xce\x4a\x7a\x2b\x86\x47\x5c\xf6\xe2\x09\xb9\x89\xd6\x1b\xe0\x45\x73\xec\xaf\x1b\x20\x16\xcb\xe3\x75\xa5\xb5\x03\x65\xdb\xb7\x1b\x32\x8f\xba\x24\x2f\xf5\x34\x14\xad\x14\xe7\xbb\xf0\xbf\xfd\xac\x62\xae\xb4\x7b\xc7\x65\x9b\x70\x69\x72\x07\xc8\x29\x24\xd3\x93\x98\xf6\xeb\xc2\xee\xc9\x67\xc6\x73\x70\xfe\x13\x00\x00\xff\xff\xbb\xd1\x84\x7f\xd5\x03\x00\x00" func idtablestakingDelegationRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -2800,11 +2860,11 @@ func idtablestakingDelegationRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0xc8, 0x69, 0xd6, 0x84, 0xe1, 0x91, 0x3f, 0xe8, 0xab, 0x9d, 0xe1, 0x8, 0x8e, 0x59, 0x6f, 0x6d, 0xa8, 0x9e, 0xcc, 0x90, 0x1e, 0x8b, 0xbc, 0x2e, 0x7e, 0xa, 0x57, 0xdc, 0xa1, 0x41, 0xdc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xd1, 0x2c, 0x94, 0x87, 0xed, 0x6e, 0x56, 0x43, 0x77, 0xd5, 0x5, 0x39, 0x7, 0xf8, 0x30, 0x30, 0x29, 0x8b, 0x42, 0x51, 0x3f, 0x5e, 0x80, 0xb7, 0xdd, 0x39, 0x36, 0xbd, 0xbc, 0x2, 0x1b}} return a, nil } -var _idtablestakingDelegationRegister_many_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\xef\x9a\x40\x10\xc5\xef\xfb\x29\xe6\x88\xa9\xa2\xbd\x12\x3d\x50\xc1\x84\xd4\x68\x53\x48\x9b\xc6\x78\x18\x71\x84\xad\xb0\x4b\x96\x51\xdb\x18\xbf\x7b\xb3\x28\x54\xc8\x7f\x4f\x64\xe6\xbd\xe1\xbd\x9f\x2c\x2b\x6d\x18\x56\x85\xbe\x45\x41\x82\x87\x82\x62\xc6\xb3\x54\x19\x9c\x8c\x2e\x61\xf6\x27\x0a\xc2\x4d\x12\x25\xbf\x12\xff\xcb\x3a\xf4\x83\xe0\x7b\x18\xc7\xe2\xcd\x95\xe8\x33\xa9\x56\xbc\x5a\x6f\x7f\x26\xdb\xaf\xe1\xa6\x15\x0a\x36\xa8\x6a\x4c\x59\x6a\xe5\x28\x7d\xa4\x28\xa8\x3d\xd8\xc5\x6c\xa4\xca\xf6\x63\xa8\x90\xf3\xe7\x40\x1b\xcc\xe8\x1b\x72\xbe\x1f\xc1\x5d\x08\x00\x80\xca\x50\x85\x86\x1c\x4c\x53\xf6\xc0\xbf\x70\xee\xa7\xa9\xbe\x28\xee\x14\xf6\x5d\xd1\x80\x84\x05\xcc\xfe\x8f\x4e\xda\x34\x97\x41\xaa\xe7\x1f\xe0\xde\xed\xec\x9b\x4e\x61\x69\x08\x99\x00\x41\xd1\x0d\x8e\x54\x50\x86\xac\x0d\xe8\xc3\x6f\x4a\xb9\x39\xc0\x39\x81\x4d\xdc\x73\x16\xc4\xd6\x11\x74\x86\xf9\xe4\x03\x76\xae\xa1\x4c\xd6\x4c\x66\xf3\x26\x7d\xd5\xf7\xe0\x85\x61\x27\xf7\x63\x60\x4b\xaf\x5e\xea\xb2\x94\xcc\x74\xf4\x60\x3e\xe9\xa0\xba\x69\x93\x31\x2c\x2b\xfe\xfb\x03\x2f\x05\x3b\xa3\x91\x18\xf6\xb0\xe0\xa8\xc9\x3a\x2c\xd1\x53\x5a\x84\x6e\x8d\x57\x72\xe6\x93\xf7\xfc\x36\x81\xd7\x30\x1a\x9c\xb6\x44\x25\x7c\x82\xcf\xfd\xe9\xc9\x2e\x16\x6d\x05\xb7\x20\x95\x71\x3e\xa0\xdb\xda\x67\xbd\xe9\x43\xf4\xbf\x1e\x42\x3c\xfe\x05\x00\x00\xff\xff\xc5\x9d\x30\xdd\x7d\x02\x00\x00" +var _idtablestakingDelegationRegister_many_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6f\xe2\x30\x10\x85\xef\xfe\x15\x23\x0e\xab\x44\x0b\x81\xbd\x46\x61\xd5\x0a\x5a\x89\x4b\x55\x09\xc4\x05\x71\x18\xc2\x90\xb8\x24\x76\xe4\x4c\x82\x10\xe2\xbf\x57\x36\x10\x92\xb4\x3e\x58\x30\xf3\x5e\x66\xde\x67\x99\x17\xda\x30\xbc\x67\xfa\xb4\x98\xaf\x70\x97\xd1\x92\xf1\x28\x55\x02\x07\xa3\x73\x18\xfc\x6c\x0c\x44\xcb\xb3\xd2\x47\x52\x2d\xa9\xfb\x3f\x10\x82\x0d\xaa\x12\x63\x96\x5a\x79\x4a\xef\x69\x31\x2f\x43\xd8\x2c\xd9\x48\x95\x6c\x87\x50\x20\xa7\xb7\x82\x36\x98\xd0\x27\x72\xba\xf5\xe1\x22\x04\x00\x40\x61\xa8\x40\x43\x1e\xc6\x31\x87\x80\x15\xa7\xde\x12\x6b\x5a\x63\x56\x91\x0f\x7f\x5e\xe3\x58\x57\x8a\x1b\xb9\x3d\x35\x1a\x90\x30\x85\xc9\xb3\x74\xd0\xc6\x8d\x01\xa9\x6e\xe3\xe0\xd2\xf4\xec\x19\x8f\x61\x66\x08\x99\x00\x41\xd1\x09\xf6\x94\x51\x82\xac\x0d\xe8\xdd\x17\xc5\xec\x3e\xc0\x29\x81\x5d\xbf\xe3\xcc\x88\xad\x63\xde\x18\xa2\xd1\x2f\xfc\x02\x43\x89\x2c\x99\xcc\x47\x4b\x7a\x67\x11\xc2\x9d\xc9\x46\x6e\x87\xc0\x96\x59\x39\xd3\x79\x2e\x99\x69\x1f\x42\x34\x6a\x50\x06\xb1\xdb\xf1\x2d\x2f\xf8\xbc\xc6\x2a\x63\xaf\xb6\xf7\xea\x5c\x50\x08\xf6\x8e\x5e\x9e\x5a\x27\xf8\xef\xf9\xbe\x2f\xfa\x51\x2d\x68\x72\x71\xfa\x39\x3b\x4a\x8b\x3c\x28\x6f\x8f\x12\x94\x58\x93\x17\x8d\xda\x51\xed\xb2\xa1\xc3\xd9\x1b\x61\xe1\x4b\xf8\x0b\xff\xba\xd5\x83\x6d\x4c\x1f\x69\x83\x8c\x54\xc2\x69\xef\x21\x1e\xf6\x49\xa7\x7a\x15\xdd\x5f\x57\x21\xae\xdf\x01\x00\x00\xff\xff\xdc\x28\xf5\x58\xac\x02\x00\x00" func idtablestakingDelegationRegister_many_delegatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -2820,11 +2880,11 @@ func idtablestakingDelegationRegister_many_delegatorsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/register_many_delegators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdc, 0x5c, 0xbd, 0x63, 0x87, 0xcb, 0xb9, 0xa3, 0x2b, 0x17, 0x3c, 0x50, 0x61, 0x63, 0xda, 0x6, 0x77, 0x4b, 0x25, 0xfc, 0x31, 0x5a, 0xda, 0x73, 0x52, 0x75, 0xc2, 0x55, 0xab, 0x3e, 0x1, 0xf8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0x77, 0xf9, 0xad, 0xba, 0xdd, 0x3, 0x54, 0xa7, 0xa1, 0x6b, 0x8e, 0x5d, 0x19, 0x2b, 0x23, 0xea, 0x5, 0x9b, 0xd8, 0x21, 0x1d, 0x7b, 0x64, 0x8e, 0x76, 0x91, 0x58, 0xd4, 0xd2, 0xe2, 0x2f}} return a, nil } -var _idtablestakingNodeNode_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x73\x92\x08\x45\x7b\x16\x15\xd2\x26\x82\x54\x54\x9a\x85\xd2\xe3\x64\xb3\x26\xdb\xc4\x9d\xb0\x99\xa0\x45\xf3\xdf\x4b\x22\x46\xa5\xa5\x64\x8f\xcb\x9b\xf7\xbe\xf7\xf4\xbe\x20\xcb\xb0\xc8\xe9\xb0\xf4\x05\x46\xb9\x0a\x19\x33\x6d\x12\xd8\x59\xda\xc3\xf3\x71\xe9\x07\x6b\xb1\x14\x9f\xc2\x7b\x59\x05\x9e\xef\xbf\x07\x61\xe8\xdc\x5d\x09\xca\x94\xb9\x8a\x17\xab\xcd\x87\xd8\xbc\x05\xeb\xab\xd0\x19\x8f\x41\xa4\xba\x04\xb6\x68\x4a\x94\xac\xc9\x00\xc6\x71\x09\x08\x45\x15\xe5\x5a\x82\xa1\x58\x81\xc4\x02\x23\x9d\x6b\xfe\x06\x26\x40\x03\x28\x25\x55\x86\xe1\xa0\x39\x6d\x4c\xd0\x80\x3a\xea\x92\x1b\xb2\x35\xc5\x2d\xa5\xb2\x40\xd1\x97\x92\xec\x38\xf7\xf6\x27\xc7\x01\x00\x28\xac\x2a\xd0\x2a\x17\xa5\xe4\x09\x78\x15\xa7\xde\xc5\x73\x78\x55\x34\x4f\xef\x9a\x28\x1e\x45\x64\x2d\x1d\xa6\x83\xdf\x43\x8c\x6e\x71\x73\xb7\xe9\x39\xf9\x63\xad\x3b\x51\xc8\x64\x31\x51\x5b\xe4\x74\x08\xb3\x19\x18\x9d\xc3\xf9\xdc\x05\x36\xaf\x4d\x4c\x14\xbf\x76\xad\xa7\x83\xd3\xbf\xa6\xdb\x76\xab\x7a\xee\xf6\x50\xb5\xc9\x23\x99\x2a\x99\xb9\xc3\x2e\xf7\xf4\x40\x60\x15\x57\xd6\x74\x5f\xf5\x6d\x90\x96\x2d\xd7\x26\xeb\x8d\xf4\x60\xdc\x93\xef\xe9\xe1\x88\xd1\x26\x8a\xfb\xef\xda\x1d\x5f\xea\xd5\x4e\xfd\x13\x00\x00\xff\xff\x7d\x56\xcd\xe6\xc7\x02\x00\x00" +var _idtablestakingNodeNode_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6b\xc2\x40\x10\xc5\xef\xf9\x14\x83\x07\x49\x40\xe2\x5d\xfc\x43\x6b\x29\xf4\xd2\x0a\x4a\xef\x93\xcd\x68\xb6\xae\xbb\x61\x77\x82\x2d\xea\x77\x2f\xd9\x60\xdc\xa0\xb6\xce\x2d\xc9\xcc\x7b\xbf\x79\x13\xb9\x2b\x8d\x65\x78\x55\x66\xff\xf6\xb2\xc2\x4c\xd1\x92\x71\x2b\xf5\x06\xd6\xd6\xec\xa0\x77\xfd\xa1\x17\x05\x33\x2b\xb3\x25\x1d\xb4\xfa\xe7\x5e\x14\x0d\x87\xb0\x2a\xa4\x03\xb6\xa8\x1d\x0a\x96\x46\x03\xe6\xb9\x03\x84\xb2\xca\x94\x14\xa0\x4d\x4e\x20\xb0\xc4\x4c\x2a\xc9\x3f\xc0\x06\x50\x03\x0a\x61\x2a\xcd\xb0\x97\x5c\xd4\x22\xa8\x81\xbe\xa5\xe3\x1a\xe8\xdd\xe4\x9e\x81\x2c\x98\xec\x8b\x04\x47\x51\x28\x7f\x88\x22\x00\x80\xd2\x52\x89\x96\x62\x14\x82\x47\x80\x15\x17\xf1\xb3\xb1\xd6\xec\x3f\x51\x55\x34\x80\xf9\xd9\x52\x92\x4b\xa0\xff\xd4\x18\x26\xe7\xf1\xba\xe4\xba\xe6\xe0\xd4\xb1\xb1\xb8\xa1\x34\xf3\xf3\x63\xaf\x75\x9d\x47\x5a\x73\x7d\x94\x64\x91\x8d\x4d\xa0\x7f\xa7\xa3\x21\x9f\xc6\x75\x56\xa3\x1b\x79\x07\x4d\xcb\xc6\x77\x81\x5c\x24\x30\x99\x80\x96\x0a\x8e\xc7\x16\xaf\x2e\xcf\x27\x82\x55\xd2\x0d\xf1\xb8\x7f\xf8\x53\x77\xe1\x93\x3f\x4d\xef\x2d\x11\x76\x79\xf3\x59\x2a\x0a\x12\xdb\x38\x81\xd9\x0c\xd6\xa8\x1c\xb5\x10\x87\x0e\x8e\x25\xae\xac\x6e\x5f\x9d\x2e\x59\x2a\x62\x7f\xea\x46\x7b\x8e\x25\x4c\x6e\xc0\x9f\x93\x96\xce\x55\xf4\xf0\x1a\x1d\x84\x47\x13\x6d\x87\x92\x0b\xe4\x35\x90\xff\x49\x5d\xd1\xb5\xe8\xec\x31\xe8\xde\x83\xff\xb9\xe9\x25\xd5\x00\xa0\xc9\xea\xf4\x1b\x00\x00\xff\xff\x76\x70\x54\x96\x84\x03\x00\x00" func idtablestakingNodeNode_add_capabilityCdcBytes() ([]byte, error) { return bindataRead( @@ -2840,11 +2900,11 @@ func idtablestakingNodeNode_add_capabilityCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/node_add_capability.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa, 0x7e, 0x60, 0x84, 0x8b, 0x25, 0xdc, 0xfc, 0xcf, 0xe8, 0x1e, 0x2d, 0x1e, 0x7f, 0xe3, 0x55, 0x16, 0x50, 0x49, 0xaf, 0xf7, 0x75, 0x19, 0xf6, 0x3d, 0x83, 0xec, 0x7a, 0x90, 0xdc, 0xf2, 0x46}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xc4, 0x53, 0x4f, 0xc8, 0xa0, 0x67, 0x6e, 0x7a, 0xe2, 0x1e, 0x5c, 0xee, 0xad, 0xeb, 0x9e, 0x2e, 0x9f, 0x6f, 0x6c, 0xed, 0xcd, 0xad, 0xf3, 0xaa, 0x72, 0xd, 0x11, 0x47, 0xd4, 0x2a, 0xd0}} return a, nil } -var _idtablestakingNodeRegister_many_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\x4d\x6b\xdb\x40\x10\xbd\xeb\x57\x0c\x39\x14\x99\xc6\x76\x0a\xa5\x94\xc5\x69\x50\x63\x1b\x8c\x83\x53\x6c\xb5\xa5\x18\x1f\xd6\xda\x91\xb5\x8d\xb4\x63\x56\xe3\x28\xa1\xe4\xbf\x97\x95\xfc\x29\x09\x32\x07\x1d\xde\xbc\x79\x33\x7a\xfb\x74\xb6\x25\xcb\x30\x4e\xa9\x98\x0c\x43\xb9\x4e\x71\xc1\xf2\x49\x9b\x0d\xc4\x96\x32\xb8\x79\x99\x0c\x47\xb3\x70\x12\xfe\x09\x83\xef\x0f\xa3\x60\x38\x9c\x8f\x16\x0b\xef\x6c\x2a\xa4\x27\x34\x07\xf2\xf8\xe1\xf1\x77\xf8\x38\x1d\xcd\x0e\x44\x8f\xad\x34\xb9\x8c\x58\x93\xf1\x3d\x00\x00\xad\x72\x01\xcb\x05\x5b\x6d\x36\xab\xeb\x12\xb2\x94\xa2\x03\x7f\x4e\x0c\x7f\xdd\x63\x06\xb9\x20\xeb\x0e\x09\x94\xb2\x98\xe7\xd8\x18\x3b\x51\xa6\xf8\xda\xe8\xe6\xd5\x6f\xb4\xb5\x64\x46\x3b\xc3\xe5\xc6\xb1\x7e\xf9\xf2\x79\x0f\x6f\x25\x27\x15\x97\xac\xdc\xe0\x0f\xc9\xc9\xca\xeb\xc0\x3f\xaf\xea\x5a\xdc\x4a\x8b\xbe\x8c\x22\x16\x10\xec\x38\x09\xa2\xc8\xe9\x1c\x19\xae\x9e\xa5\x05\x0d\xb7\x70\x73\x82\x62\xb2\xa5\x34\x68\x53\xad\x38\xe7\xbb\x4a\x91\x21\x3e\x38\x39\xc7\x18\x6e\xc1\x2d\xe9\xad\xc9\x5a\x2a\x06\x1f\x8e\x2e\xf7\x7e\xc9\x5d\xca\xdf\x7c\x67\xb6\x80\x7e\x5e\xdd\xd9\x3f\xce\x96\xed\xce\x85\xb6\xab\xbb\x3b\xd8\x4a\xa3\x23\xff\xea\x9e\x76\xa9\x02\x43\x0c\x95\x36\x58\x8c\xd1\xa2\x89\x10\x98\xc0\x3d\x1e\x94\x1a\x57\x9d\xe6\x85\xec\x36\xe4\xf7\x94\x65\x9a\x19\x15\x0c\xba\x17\x47\xf7\x0a\xcd\x89\xb2\xb2\xf0\x2b\x77\xc5\xc1\xe5\xa5\x5e\xb5\xa8\x19\x52\x65\xd0\xd0\x3a\xa1\x66\xfa\x7a\x52\xa9\x19\x29\x9c\x63\x44\x56\xf9\x8d\x7f\xd2\x4a\xb8\x24\x2d\xf5\xfe\xed\xce\xcb\xc5\x49\x54\xa1\x6a\xed\x37\xa2\x25\xda\xd2\xf6\xce\xe8\x14\x5f\x45\x2d\x81\xad\x13\xa7\x18\x8a\xf3\x48\xb6\x72\x6b\x16\x0b\x18\x74\x6b\xd0\xc5\x48\xcd\xd6\x7e\x1f\x5c\x72\x11\x38\xc1\xd2\x5f\xa0\xf5\x5f\x8c\xf8\x82\x54\x06\x2b\x97\xcf\xe8\x0f\xba\xa7\x37\xb8\x06\x26\x51\x86\xb3\xa6\xe9\xa2\xac\xe1\x23\x7c\x3a\xa2\x6f\x5e\xf5\xf5\xde\xfe\x07\x00\x00\xff\xff\x0b\x85\x8a\x83\x3a\x04\x00\x00" +var _idtablestakingNodeRegister_many_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\x4f\x6b\xdb\x4e\x10\xbd\xeb\x53\x0c\x3e\x04\x89\x5f\x2c\xff\x0a\xa5\x94\xc5\x69\x08\x29\x86\x90\xd2\x96\x24\x6d\x0e\xc6\x87\xb5\x76\x64\x6d\x23\xed\x98\xd5\x28\x6a\x28\xf9\xee\x65\x57\x8a\xf5\x17\x3a\x07\x81\xde\xbc\x99\xb7\x33\xf3\x74\x71\x24\xcb\xb0\xc9\xa9\xbe\xf9\xfc\x20\xf7\x39\xde\xb3\x7c\xd2\xe6\x00\xa9\xa5\x02\x16\xd3\xc4\x22\xe8\xd5\x3c\xd0\x13\x9a\x1e\xd5\xff\x77\x8c\xca\x1c\xf4\x3e\xc7\x01\xab\x8f\x2d\x82\x80\xad\x34\xa5\x4c\x58\x93\x09\x03\x00\x00\xad\x4a\x01\xdb\x7b\xb6\xda\x1c\x76\xe7\x1e\xb2\x94\xa3\x03\x7f\xdc\x18\xfe\xd8\x62\x06\xb9\x26\xeb\x1e\x74\xa5\x94\xc5\xb2\xc4\x49\x59\x47\xb9\xc5\x97\x49\xb6\x6c\xc6\x99\x4b\xc9\x82\x2a\xc3\x5e\x71\xa3\x7f\x7f\x78\xdf\xc2\x47\xc9\x59\xc3\x25\x2b\x0f\xf8\x5d\x72\xb6\x0b\x22\xf8\x13\x34\x59\x8b\x47\x69\x31\x94\x49\xc2\x02\x64\xc5\x59\xd8\x12\x23\x38\xbb\x4a\x12\xd7\xf2\x44\x76\xf1\x2c\x2d\x68\xb8\x80\xff\x3b\x28\x25\xeb\x55\x40\x9b\x46\xad\xcf\x77\x91\x23\x43\xfa\xb6\xe7\x3b\x4c\xe1\x02\x9c\x5e\x5c\x36\x4a\xf1\x9e\xac\xa5\x7a\xed\xd5\x07\x9b\x8e\x1f\x35\x67\xca\xca\x3a\x82\xb3\xd3\xa1\xe2\x9f\xb2\xca\xf9\x53\xe8\x2e\x23\x60\xd5\x36\x59\x9d\x04\x7c\x3a\x1a\x3c\xc0\xc5\xe5\x25\x1c\xa5\xd1\x49\xb8\xb8\xa6\x2a\x57\x60\x88\xa1\x11\x06\x8b\x29\x5a\x34\x09\x02\x13\x6c\xbe\x7c\x7b\x04\xdf\x63\x11\x4d\xc7\x60\xa7\x50\x5e\x53\x51\x68\x66\x54\xb0\x5e\x0e\x26\x8b\xeb\xf6\xc1\x61\x73\x0d\xf1\x76\x95\xad\xde\xcd\x74\x33\xa4\xbc\x41\xd1\xba\x46\x53\xd7\xc6\x52\xa9\xaf\xa4\xf0\x0e\x13\xb2\x2a\x9c\xcc\xa4\x95\x70\xce\xdb\xea\xf6\xd6\xfd\x70\xf6\x13\x8d\x09\x67\xf3\x13\x2b\x8a\x39\x77\xfe\xa3\xf4\x16\x5f\xc4\xc8\xb1\xb3\x15\x9d\x6d\x45\xdf\xc2\xb3\xdc\xd1\x8a\x05\xac\x97\x23\x68\x50\x32\x5a\xeb\x6a\x05\xce\xc0\x08\x9c\xa1\xdf\x2f\xd0\xfe\x17\x26\x3c\x20\x0d\xdc\x57\xca\x67\x0c\xd7\xcb\xee\x16\xe7\xc0\x24\xbc\x93\x47\xbd\x9d\xef\x35\xfc\x07\xef\x4e\xe8\x6b\xd0\x7c\x83\xd7\xbf\x01\x00\x00\xff\xff\x0d\x4e\x7d\xd1\x93\x04\x00\x00" func idtablestakingNodeRegister_many_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2860,11 +2920,11 @@ func idtablestakingNodeRegister_many_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/register_many_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xce, 0x4a, 0xf8, 0x11, 0x23, 0xc3, 0xa6, 0x1c, 0x71, 0xfd, 0x59, 0xc, 0xa6, 0x8c, 0x13, 0x6a, 0x2b, 0x1, 0x7a, 0x59, 0xed, 0x14, 0x8d, 0xef, 0x41, 0x24, 0x32, 0xd1, 0xd1, 0x65, 0x26}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x24, 0xe6, 0xd8, 0x4d, 0x7f, 0xa7, 0x90, 0xd1, 0xbd, 0x2e, 0x9d, 0x30, 0xb6, 0xc9, 0x30, 0x9a, 0xbd, 0x9b, 0x1, 0xae, 0xca, 0x83, 0xf9, 0xb4, 0x8b, 0xd9, 0x22, 0xa, 0x7c, 0x65, 0xe9}} return a, nil } -var _idtablestakingNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x52\x41\x6f\xda\x4c\x10\xbd\xfb\x57\x8c\x72\x88\x8c\x44\xe0\x3b\x7c\xaa\x2a\x8b\x24\xa2\x01\x24\x94\x88\x44\xe0\xb4\xea\x71\xd9\x1d\xc3\x16\xb3\x63\xed\x8e\xeb\x20\xc4\x7f\xaf\xd6\x16\xd8\x0e\x34\x4a\x7d\x30\x78\xe6\xbd\x37\xbb\xef\x8d\xde\x66\x64\x19\x26\x29\x15\xd3\x51\x2c\x96\x29\x2e\x58\x6c\xb4\x59\x41\x62\x69\x0b\xff\xbd\x4d\x47\xe3\x59\x3c\x8d\x7f\xc6\xc3\x6f\x4f\xe3\xe1\x68\x34\x1f\x2f\x16\x41\x83\x15\xd3\x06\xcd\x11\x3c\x79\x7a\xfe\x11\x3f\x3f\x8e\x67\x47\x60\xd0\xef\x43\xbc\xd6\x0e\xd8\x0a\xe3\x84\x64\x4d\x06\xa4\x45\xc1\xe8\x40\x80\xc1\x02\x0c\x29\x04\xc7\x36\x97\x0c\xb4\xfc\x85\x92\x3d\x49\x18\x05\x79\xa6\x4a\x1c\xaf\x11\x32\x4b\x19\x39\x54\x30\x55\x68\x58\xf3\x0e\xca\xc3\x06\x41\x43\x38\x0c\x00\x00\xb4\x8a\x60\xc1\x56\x9b\x55\xb7\xfc\xb6\x94\x62\x04\xaf\x53\xc3\x5f\xab\x82\x41\x2e\xc8\xfa\x3b\x0e\x95\xb2\xe8\x5c\x1b\x5f\xb7\x1f\x71\xd7\x6e\xb9\xca\x9a\xb3\xba\xd8\x52\x6e\x38\x82\xd7\x89\x7e\xfb\xf2\x7f\xd0\x81\x7d\x50\xd6\x53\x64\x48\x8e\x1e\xcd\x31\x89\xe0\xfa\x64\x59\xef\xbb\xc8\x53\xae\x70\x99\xc5\x4c\x58\x0c\x85\x94\x1c\xc1\x30\xe7\xf5\x50\x4a\x2f\x79\x52\x2a\xa7\x63\x9a\xf4\x9a\x72\x70\x0b\x9e\xd1\x5b\x92\xb5\x54\x0c\xde\x6b\xdf\x85\x3e\x95\x08\xfa\x8e\xc9\x8a\x15\xf6\x4f\xdc\xb2\xdd\x39\x09\xfb\xe7\xfe\x1e\x32\x61\xb4\x0c\xaf\x1e\x28\x4f\x15\x18\x62\xa8\x74\xc1\x62\x82\x16\x8d\x44\x60\x02\x9f\x30\x94\xfc\xab\x4e\x7d\x34\x7f\x51\x9f\xa3\xdf\x1d\xb4\x30\xb8\xb9\xb0\x50\x3d\xa1\xd4\x8c\x14\xce\x51\x92\x55\x61\x6b\xba\xcf\x4c\xab\x6e\xab\x56\xe5\xe6\xdf\xed\xfa\x85\xf8\xce\x4a\x7f\x63\x94\xc9\xb5\x3e\xdb\xc8\x66\xc0\xf5\xff\x36\x86\xbd\x83\xee\x81\xb6\x5b\xcd\x8c\x2a\x82\xc1\xcd\x59\x32\xbd\x42\xf3\x5a\x59\x51\x84\xc7\xd5\xa8\x7e\x6b\xcf\x1b\xe6\xe9\xe4\x3c\xc6\x77\xd6\xcd\x4e\xde\x1e\x43\xfd\x10\xb4\xa8\x02\x7f\x11\xbc\xee\xc0\xed\x2d\x18\x9d\x36\x17\xa9\x5c\x59\x3f\xd1\x89\xdf\x18\x0e\x6e\xea\xe4\xba\xc0\xf4\x0f\xda\x17\x24\x53\x6d\x36\x83\xeb\xfd\x87\x12\x2f\xf9\x32\xd5\xf2\x70\xd7\xde\x01\xff\x7c\x82\xe6\x07\x77\xcf\x88\x2c\xec\x0a\xf9\xf3\x47\x6f\x09\xd4\xa9\x1c\x00\x53\x87\xb0\x6f\xb5\x15\x3a\xb6\xb4\x6b\x2c\x78\x8d\x0f\xaa\xf7\xe1\x4f\x00\x00\x00\xff\xff\xdb\x54\x5a\x43\x47\x05\x00\x00" +var _idtablestakingNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\x5f\x6b\xdb\x3e\x14\x7d\xf7\xa7\xb8\xe4\xa1\xd8\x90\x3a\x2f\x3f\x7e\x8c\x90\xb6\x94\x8c\x42\xd9\x58\x4b\xff\xac\xcf\xb2\x74\x1d\x6b\x55\x74\x8d\x74\x3d\xaf\x94\x7e\xf7\x21\x3b\x89\x2d\x9c\x75\x6b\x1e\x1c\xeb\xfe\x3b\x47\xe7\x1e\xeb\x6d\x4d\x8e\xe1\xca\x50\x7b\xfd\xf9\x41\x14\x06\xef\x59\x3c\x6b\xbb\x81\xd2\xd1\x16\x66\xd3\xc4\x2c\x19\xf5\x3c\xd0\x33\xda\x51\x69\x77\x1e\x2a\x1a\xbb\xd1\x85\xc1\xa8\x6a\x1c\x9b\x25\xc9\x62\x01\x0f\x95\xf6\xc0\x4e\x58\x2f\x24\x6b\xb2\x20\x1d\x0a\x46\x0f\x02\x2c\xb6\x60\x49\x21\x78\x76\x8d\x64\xa0\xe2\x07\x4a\x0e\x4d\xc2\x2a\x68\x6a\xd5\xd5\x71\x85\x50\x3b\xaa\xc9\xa3\x82\x6b\x85\x96\x35\xbf\x40\x47\x3a\x49\x46\x83\xd3\x04\x00\x40\xab\x25\xdc\xb3\xd3\x76\x33\xef\xce\x8e\x0c\x2e\xe1\xf1\xda\xf2\xa7\x3e\x60\x91\x5b\x72\xe1\xae\x97\x4a\x39\xf4\x3e\xae\x1f\xd2\x5f\xf0\x25\x4e\xf9\x5e\xa2\x49\x5c\x6c\xa9\xb1\xbc\x84\xc7\x2b\xfd\xeb\xff\xff\x92\x0c\x5e\x93\x2e\x6e\x90\xa1\xdc\xcb\x76\x87\xe5\x12\x44\xc3\x55\x1a\x69\x94\x3f\x69\xae\x94\x13\x6d\x06\x27\x07\x89\xf3\xef\xa2\x31\xdc\x0f\xa9\x1d\xd6\xc2\x61\x2a\xa4\xe4\xdd\x80\x7b\x26\x27\x36\x38\x87\xb5\xa8\x45\xa1\x8d\x66\x8d\x3e\x83\x93\x4b\x29\x03\x91\x03\x7e\xc7\x19\x4d\x99\x8f\x49\xc0\x19\x84\x51\xb9\xef\x87\xe4\x05\x39\x47\xed\xea\x43\xcc\xce\xd3\xb0\xed\x25\x2c\x76\x43\x16\x07\x80\x2e\x9d\x1d\xd0\xc3\xef\xe2\x02\x6a\x61\xb5\x4c\x67\x6b\x6a\x8c\x02\x4b\x0c\x3d\x28\x38\x2c\xd1\xa1\x95\x08\x4c\x70\xf5\xf5\xe6\x09\xba\xfe\x59\x36\xf0\x0f\x1a\x06\x8b\x04\x7b\xa2\x83\xd5\xe9\x11\x33\xe7\x42\xa9\x6f\xa4\xf0\x0e\x25\x39\x95\x46\xe8\xc1\x0e\x5a\xcd\xa3\x58\x6f\x89\xf0\x8c\xe3\x47\x9c\x31\x09\xfd\xa9\xa3\x33\x45\x74\x8c\x2b\xc7\xde\x19\xde\xe3\x1a\x0e\x0a\xfa\x35\x6d\xb7\x9a\x19\xd5\x12\x56\xa7\x93\xf5\xe5\xed\x6e\x2b\xe9\xde\x75\xfd\xff\xa0\xf9\x48\x3c\x5d\xbe\xb3\xeb\xa9\x8c\x41\xc3\x9b\x1a\x9d\x60\x72\xbb\xa5\x1f\xa9\xe8\x37\xb1\xb7\xc0\xbb\x45\x3b\xa3\xde\x0a\xae\x32\x38\x3b\x03\xab\xcd\xd8\x9b\xdd\xb7\x33\xe6\xe7\xc5\x4f\x4c\x57\xa7\xc3\xbe\xe7\xc0\xf4\x01\x8c\x78\x74\x6c\x9d\xb5\xa8\xf7\xd6\x97\xa3\xcf\xe6\x80\xad\xbd\x6f\x70\x75\xf2\xfa\x2e\xd8\x6d\x53\x18\x2d\xdf\xce\x63\x8f\x85\xdf\xbf\x72\x8c\x1a\xb3\x23\x5a\x44\xe4\xea\x80\xe7\xab\x29\x5c\x74\xaf\xf9\x24\x2d\xf8\x2f\xaa\xf5\x17\x39\x42\x68\xff\xf6\x06\x68\x3c\xc2\x6b\x94\x56\xe8\xd9\xd1\xcb\x08\x7d\xa8\x4f\xfa\xe7\xdb\xef\x00\x00\x00\xff\xff\xd7\xf7\xa2\x42\x73\x06\x00\x00" func idtablestakingNodeRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -2880,11 +2940,11 @@ func idtablestakingNodeRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x76, 0x8, 0xa4, 0x1a, 0xd1, 0xae, 0xff, 0xc6, 0x3f, 0xf9, 0x3f, 0xb2, 0x21, 0xbe, 0x35, 0xc8, 0x47, 0x64, 0xa8, 0x8a, 0xa, 0x3c, 0x56, 0x1, 0x44, 0xa5, 0xa3, 0xce, 0x1c, 0xcd, 0x59, 0x84}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0xcb, 0x2d, 0xbc, 0x35, 0x44, 0x32, 0x3e, 0x73, 0x50, 0x5f, 0xa1, 0x63, 0x18, 0x71, 0x7f, 0x5f, 0x26, 0xb5, 0x59, 0x98, 0x82, 0x74, 0xab, 0xa6, 0x15, 0x3c, 0x8f, 0xfa, 0x4d, 0x85, 0x69}} return a, nil } -var _idtablestakingNodeRequest_unstakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x2f\x49\x0f\xa5\x87\xd0\x56\xd2\x46\x41\x10\x29\x26\x1e\x7a\x1c\xd7\x89\xa6\xc6\x9d\x74\x32\xa9\x81\xe2\x7f\x2f\x6b\x6a\x28\x58\xa4\xef\x32\x7b\xd8\x7d\xf3\xed\x7b\xc5\xbe\x62\x51\x98\x94\x7c\x98\x26\x19\xae\x4a\x4a\x15\x77\x85\xdd\x40\x2e\xbc\x87\xdb\x76\x9a\x8c\xe7\xd9\x34\x7b\xcb\xe2\xe7\xd9\x38\x4e\x92\xc5\x38\x4d\x3d\xcf\x53\x41\x5b\xa3\xd1\x82\xad\x8f\x7b\x6e\xac\x46\xb0\x9c\x14\xed\xfd\xdd\x10\xbe\x3c\x0f\x00\x20\x0c\x61\xc6\x06\x4b\xf8\x44\x29\x9c\x33\xe4\x2c\x80\x20\x94\x93\x90\x35\x04\xca\xa0\x5b\x02\xcb\x6b\x02\x5e\xbd\x93\xd1\xd3\xc3\x92\x14\x6a\xc5\x1d\xc9\x82\xf2\x08\x6e\x2e\xe1\x82\x39\xaf\x4f\x67\x92\x6e\x57\x25\x54\xa1\x90\x8f\xc6\x68\x04\x71\xa3\xdb\xd8\x18\x47\xe5\x68\xe0\x47\x61\x08\x2b\x16\xe1\xc3\x7f\x20\x9c\x6a\x2a\xf3\xa0\x27\x81\x47\x70\xf6\x41\xe7\xf1\x70\x1d\xeb\xc9\x77\xf9\x45\x7f\x04\xfb\xeb\x52\xaa\x2c\xb8\xa1\x57\xd4\xed\xb0\x5f\xea\x34\x1a\x41\x85\xb6\x30\xfe\xe0\x85\x9b\x72\x0d\x96\xf5\x8c\x7e\x0d\x7c\x30\xec\xd2\x38\x76\x83\x5a\x32\x8d\xd2\xb9\x8f\xcb\x1f\x05\x42\x1f\x0d\xd5\xba\xb4\x75\xc7\xd6\x57\xd9\xcd\xde\xee\xf8\x1d\x00\x00\xff\xff\xc8\xee\x14\x2d\x27\x02\x00\x00" +var _idtablestakingNodeRequest_unstakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xbf\x4e\xc3\x40\x0c\xc6\xf7\x3c\x85\x95\xa1\x4a\x96\x64\x41\x0c\x15\x50\xf1\x47\x95\x90\x10\x20\x4a\xd9\xdd\x8b\xd3\x1e\xbd\x9c\x83\xe3\xd0\x4a\xa8\xef\x8e\xae\x49\xab\x56\x05\x89\x01\x2f\x37\x9c\xfd\xf9\xfb\xd9\xb6\x55\xcd\xa2\x30\x76\xbc\xba\xbf\x7b\xc5\x99\xa3\x89\xe2\xd2\xfa\x39\x94\xc2\x15\xc4\xa7\x1f\x71\x14\x45\x2a\xe8\x1b\x34\x6a\xd9\x27\x58\x71\xeb\x75\x08\xd3\xb1\x5d\x9f\x9f\xa5\xf0\x15\x45\x00\x00\x79\x0e\x0f\x6c\xd0\xc1\x27\x8a\x0d\xe5\x50\xb2\x00\x82\x50\x49\x42\xde\x10\x28\x83\x2e\x08\x3c\x17\x04\x3c\x7b\x27\xa3\xdb\x42\x47\x0a\x8d\xe2\x92\xe4\x85\xca\x21\x60\xab\x8b\xe4\xd4\x45\xf6\xc8\x05\x3d\xd5\x24\xa8\x2c\x29\x0c\x7e\xc9\x98\x6c\x85\x3a\x47\xb5\x50\x8d\x42\x09\x1a\xa3\xbd\xee\x0d\x8b\xf0\xea\x0d\x5d\x4b\x29\x0c\xae\x8d\x09\x28\x01\x01\xfa\xc8\x73\x98\x6d\x73\xfe\xe2\x3c\x44\x43\xae\xcc\xf6\xf6\xe1\x12\x42\xb7\xac\x51\x16\x9c\x53\xd6\x69\x5d\xfc\x07\xd3\x55\x12\x16\x34\xfc\x61\x73\x07\x49\x93\xae\xef\x33\xea\x22\xdd\x5b\x0c\x31\x1a\x41\x8d\xde\x9a\x24\xbe\xe5\xd6\x15\xe0\x59\x77\xa0\x47\x98\x4d\x7f\x0c\x58\x54\xd6\xc7\x9d\xc6\xa6\x1b\x27\xad\xc9\xb4\x4a\x07\xc3\x3a\x66\xcf\x84\x3e\x5a\x6a\x74\xea\x7b\x91\xfd\xa5\x74\xef\x4e\x6c\x13\x7d\x07\x00\x00\xff\xff\x7d\xcc\x86\xf9\x84\x02\x00\x00" func idtablestakingNodeRequest_unstakeCdcBytes() ([]byte, error) { return bindataRead( @@ -2900,11 +2960,11 @@ func idtablestakingNodeRequest_unstakeCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/request_unstake.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x79, 0xf1, 0x50, 0x3e, 0x13, 0xea, 0xe6, 0xa4, 0xfb, 0x7d, 0x7c, 0x79, 0x1, 0x20, 0xab, 0xc3, 0xca, 0xd6, 0x2, 0x24, 0x4, 0x1b, 0xe0, 0x6, 0x3c, 0xb2, 0x81, 0x63, 0x50, 0xb4, 0x75}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8, 0x6c, 0x5c, 0x95, 0xf8, 0x1, 0x61, 0xb4, 0x8e, 0xcb, 0x97, 0xb8, 0x11, 0xcb, 0x4e, 0xd9, 0xd7, 0x1c, 0xc2, 0xbe, 0x23, 0xfa, 0x38, 0x54, 0xcf, 0xc5, 0x78, 0xac, 0x14, 0x7c, 0x28, 0xe6}} return a, nil } -var _idtablestakingNodeStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x8f\x94\x40\x10\x85\xef\xfc\x8a\xca\x1e\x0c\x1c\x04\x0f\xc6\x03\x59\xdd\xa0\x30\xc9\xc4\x09\x6b\x16\xd4\x78\xac\x69\x8a\x05\x87\xe9\x22\x4d\x21\x93\x98\xf9\xef\xa6\x41\x10\x33\x93\x89\xb1\x2e\xdd\x84\xf7\xba\xbf\x7a\x5d\xf5\xb1\x65\x23\xb0\x69\x78\xd8\xc6\x39\xee\x1b\xca\x04\x0f\xb5\x7e\x86\xd2\xf0\x11\x5e\x9d\xb6\x71\x92\xe6\xdb\xfc\x5b\x1e\xbd\xdf\x25\x51\x1c\x3f\x25\x59\xe6\xac\x5c\x39\x1f\x48\xcf\xe2\xcd\xee\xf1\x6b\xfe\xf8\x31\x49\x67\xa1\xe3\x88\x41\xdd\xa1\x92\x9a\xb5\x8b\x47\xee\xb5\x84\xf0\x79\x53\x9f\xde\xbc\xf6\xe0\xa7\xe3\x00\x00\x04\x01\xec\x58\x61\x03\x3f\xd0\xd4\x16\x01\x4a\x36\x80\x60\xa8\x24\x43\x5a\x11\x08\x83\x54\x04\x9a\x0b\x02\xde\x7f\x27\x25\xa3\xb1\x21\x81\x4e\xf0\x40\xe6\x89\xca\x10\x5e\x5c\x76\xe1\xa7\x5c\x8c\x7b\x32\xce\x62\x29\x67\xec\x3f\xae\xf1\xd3\xff\x82\x7d\x23\x93\xae\x35\xd4\xa2\x21\x17\x95\x92\x10\xa2\x5e\xaa\x48\x29\x4b\x6f\xa9\xe1\x77\x05\x01\xec\xd9\x18\x1e\xfe\x05\xd6\x56\x47\x4d\xe9\x2f\xc4\xf0\x16\xec\xf1\xfe\x74\xc6\xfd\x6d\xfc\x77\xae\xcd\x38\xbc\xf2\x52\x2b\x51\x26\x6c\xf0\x99\x3e\xa1\x54\xde\x72\xa9\xad\x87\x07\x68\x51\xd7\xca\xbd\xfb\xc0\x7d\x53\x80\x66\x99\xd1\x6f\x81\xdf\x79\xce\xdf\xec\xeb\xe8\xae\xe1\xaf\x72\x9c\x81\x83\x6e\x82\x0a\x16\xef\xf8\xfb\xff\xf8\xec\x80\xc1\xe8\x9f\xd1\xce\xd3\x42\x27\x52\xbd\xd0\x3c\x52\x97\x61\x4f\xbb\x94\x26\x84\xce\xbd\x7f\x79\xd1\x90\x3f\xd4\x52\x15\x06\x87\x65\x50\xa7\xd5\x5b\xae\x3a\xff\x0a\x00\x00\xff\xff\x86\xf3\x84\x50\x2f\x03\x00\x00" +var _idtablestakingNodeStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\xcf\x6e\xdb\x30\x0c\xc6\xef\x7a\x0a\xc2\x87\xc2\x3e\xcc\xbe\x0c\x3b\x04\xdd\x8a\xfd\x41\x80\x01\x45\x3b\x2c\x5d\x7b\x66\x64\x3a\xd1\xa2\x88\x06\x4d\x2f\x05\x86\xbe\xfb\x60\xcb\xf1\x14\x64\x1b\x8a\xa1\xba\xd8\x96\x3e\x7e\xe4\x8f\x94\xdd\xbe\x65\x51\x58\x7a\x3e\x7c\xfe\x74\x87\x6b\x4f\x2b\xc5\x9d\x0b\x1b\x68\x84\xf7\x90\x9d\x1f\x64\x26\x89\xb9\xe3\x1d\x85\x44\x3a\x7e\xff\x56\xf4\x61\xe3\xd6\x9e\x4e\x54\xe9\x5e\x66\x8c\x0a\x86\x0e\xad\x3a\x0e\x39\xee\xb9\x0f\xba\x80\x6f\x4b\xf7\xf8\xe6\x75\x01\x3f\x8d\x01\x00\xa8\x2a\xb8\x66\x8b\x1e\x7e\xa0\xb8\xa1\x12\x68\x58\x00\x41\xa8\x21\xa1\x60\x09\x94\x41\xb7\x04\x81\x6b\x02\x5e\x7f\x27\xab\x63\xa0\x27\x85\x4e\x71\x47\xf2\x95\x9a\x05\x60\xaf\xdb\xfc\x1c\xa8\xbc\xe1\x9a\x6e\x5b\x12\x54\x96\x02\x2e\xfe\xa2\x58\x8d\x46\x66\x36\x6e\x8e\xb8\x89\x77\xca\x56\x3e\x38\xdd\xd6\x82\x87\xc9\x32\x6e\xde\x63\xef\x35\x9a\xb4\x42\x2d\x0a\xe5\x68\xad\x4e\x06\x1f\x58\x84\x0f\xf7\xe8\x7b\x2a\xe0\xe2\xbd\xb5\x43\x3f\x86\x3e\xc0\xb4\xaa\x0a\xd6\xa3\xe6\x39\xf8\xc3\xea\xc8\x37\xe5\xdc\x03\x78\x0b\x43\xb6\xb2\x53\x16\xdc\x50\x19\xbd\x2e\x5f\xa2\x31\xef\xf2\x61\xbe\x8b\x3f\xdc\xa4\x44\xb4\x8a\x79\xbf\xa0\x6e\x8b\xb9\xc4\x61\x5d\x5d\x41\x8b\xc1\xd9\x3c\xfb\xc8\xbd\xaf\x21\xb0\x1e\x41\x4f\x30\xbb\xe9\x72\x62\xbd\x77\x21\x2b\xcc\x29\x67\x3a\x92\x7f\xa2\x3e\x73\x4e\x47\xa6\x6a\x32\xa9\xe6\x04\xe3\xf1\xff\x21\x2c\xaf\x6f\x1f\x60\x8c\xcf\xa2\xc1\x53\xa4\xa0\x47\xb2\xbd\x52\x32\xec\xd3\xd9\xc5\xb7\x1b\x8a\x05\x74\xf9\xe5\xab\x33\xe6\xf2\x30\xa1\xcc\x7f\x52\x7c\x16\xc7\x44\x4f\xe6\x57\x00\x00\x00\xff\xff\x2e\x56\x90\x70\xf0\x03\x00\x00" func idtablestakingNodeStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2920,11 +2980,11 @@ func idtablestakingNodeStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4, 0xa, 0x1e, 0xd2, 0xf6, 0xd, 0x9, 0x22, 0xa5, 0x89, 0x6e, 0xb0, 0x95, 0x31, 0xff, 0x54, 0xab, 0x41, 0xeb, 0xd7, 0x74, 0x1b, 0x6e, 0x60, 0xf7, 0x1c, 0x81, 0x20, 0xf5, 0x4b, 0xdb, 0x57}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0xd, 0x0, 0x9f, 0x56, 0x91, 0x6d, 0x32, 0x3d, 0xa3, 0x10, 0xcb, 0x41, 0x84, 0x26, 0x62, 0x39, 0xa9, 0xe, 0x6f, 0x2, 0xd0, 0xa3, 0xa5, 0xf5, 0x1a, 0x67, 0xe7, 0x57, 0x0, 0xb3, 0xca}} return a, nil } -var _idtablestakingNodeStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x2f\xa6\x87\xd2\x43\x68\x2b\x69\xa3\x20\x88\x14\x93\x1e\x7a\x1c\x37\x13\x4d\x8d\x3b\x61\x32\xa9\x42\xf1\xbf\x97\x75\x6b\x28\x58\xa4\xef\x32\x73\xd8\x7d\xf3\xcd\x9b\x6a\xd7\xb0\x28\x4c\x6b\xde\xcf\xd2\x1c\x57\x35\x65\x8a\xdb\xca\xae\xa1\x14\xde\xc1\xed\x61\x96\x4e\x16\xf9\x2c\x7f\xcf\x93\xe7\xf9\x24\x49\xd3\xe5\x24\xcb\x82\x20\x50\x41\xdb\xa2\xd1\x8a\x6d\x88\x3b\xee\xac\xc6\xf0\x36\xad\x0e\xf7\x77\x43\xf8\x0a\x02\x00\x80\x28\x82\x39\x1b\xac\xe1\x13\xa5\x72\xce\x50\xb2\x00\x82\x50\x49\x42\xd6\x10\x28\x83\x6e\x08\x2c\x17\x04\xbc\xfa\x20\xa3\xa7\x8f\x35\x29\xb4\x8a\x5b\x92\x25\x95\x31\xdc\x5c\xc2\x8d\x16\x5c\x9c\x7a\x12\x3f\xab\x11\x6a\x50\x28\x44\x63\x34\x86\xa4\xd3\x4d\x62\x8c\xa3\x72\x34\xf0\xa3\x28\x82\x15\x8b\xf0\xfe\x3f\x10\x4e\x2d\xd5\xe5\xa8\x27\x81\x47\x70\xf6\x23\xef\xf1\x70\x1d\xeb\x29\x74\xf9\xc5\x7f\x04\xfb\xeb\x51\xa6\x2c\xb8\xa6\x57\xd4\xcd\xb0\x1f\xea\x34\x1e\x43\x83\xb6\x32\xe1\xe0\x85\xbb\xba\x00\xcb\x7a\x46\xbf\x06\x3e\x18\xfa\x34\x8e\xbe\xd0\x81\x4c\xa7\x74\xbe\xc7\xe5\x46\xbe\x5b\xd2\x1e\xa5\xa0\x22\xe7\x2d\xd9\xb6\xbf\xa6\xaf\xbd\xe3\xf1\x3b\x00\x00\xff\xff\xde\xe4\xde\xe8\x2a\x02\x00\x00" +var _idtablestakingNodeStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x4f\x6b\xea\x50\x10\xc5\xf7\xf9\x14\x87\x2c\x24\xd9\x24\x9b\xc7\x5b\xc8\x7b\x95\xfe\x41\x28\x94\xb6\xa8\xed\x7e\xbc\x99\x68\x6a\x72\x27\x4c\x26\x55\x28\x7e\xf7\x12\xa3\xa2\xd8\x42\x17\x9d\x4d\x02\x77\xe6\xcc\xf9\xcd\x4c\x51\xd5\xa2\x86\x71\x29\xeb\xfb\xbb\x19\xcd\x4b\x9e\x1a\xad\x0a\xbf\x40\xae\x52\x21\xbc\x7c\x08\x83\x20\x30\x25\xdf\x90\xb3\x42\x7c\x44\x95\xb4\xde\x86\x78\x19\x17\x9b\xbf\x7f\x62\x7c\x04\x01\x00\xa4\x29\x1e\xc4\x51\x89\x77\xd2\xa2\x2b\x47\x2e\x0a\x82\x72\xce\xca\xde\x31\x4c\x60\x4b\x86\x97\x8c\x21\xf3\x37\x76\xb6\x2b\x2c\xd9\xd0\x18\xad\x58\x27\x9c\x0f\x41\xad\x2d\xa3\x4b\x17\xc9\xa3\x64\xfc\x54\xb3\x92\x89\xc6\x18\x7c\x93\x31\xdd\x09\xf5\x8e\x6a\xe5\x9a\x94\x23\x72\xce\xf6\xba\x37\xa2\x2a\xeb\x57\x2a\x5b\x8e\x31\xb8\x76\xae\x43\xe9\x10\xb0\x8f\x34\xc5\x7c\x97\xf3\x13\xe7\x5d\x34\x5c\xe6\xc9\xd1\x3e\xfe\xa3\xeb\x96\x34\x26\x4a\x0b\x4e\x7a\xad\x7f\xbf\xc1\x74\x15\x75\x0b\x1a\x7e\xb1\xb9\x93\xa4\x69\xdf\xf7\x99\x6c\x19\x1f\x2d\x76\x31\x1a\xa1\x26\x5f\xb8\x28\xbc\x95\xb6\xcc\xe0\xc5\x0e\xa0\x67\x98\xcd\xfe\x18\x28\xab\x0a\x1f\xf6\x1a\xdb\x7e\x9c\xbc\x61\xd7\x1a\x9f\x0c\xeb\x9c\xbd\xff\x9b\xf0\x9a\x34\xe3\x6c\x26\x2b\xf6\xcd\xf1\x58\xfa\xef\x41\x6f\x1b\x7c\x06\x00\x00\xff\xff\x84\x76\x84\xb1\x87\x02\x00\x00" func idtablestakingNodeStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2940,11 +3000,11 @@ func idtablestakingNodeStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x4c, 0x75, 0x1a, 0x17, 0x3f, 0xb6, 0xdd, 0xcf, 0xf0, 0x65, 0x80, 0xf, 0x7d, 0x6d, 0x4b, 0x9a, 0x77, 0x8f, 0xa4, 0x2f, 0xf6, 0x70, 0x6b, 0x67, 0x6f, 0x86, 0x72, 0x23, 0x15, 0xe9, 0xa8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0x6d, 0xdc, 0x1e, 0x2c, 0x5b, 0xbb, 0xc7, 0xea, 0xf2, 0x93, 0xd9, 0x2f, 0x30, 0x7b, 0xb0, 0xc7, 0x6f, 0xd5, 0xba, 0x2a, 0x93, 0x4b, 0xa6, 0x82, 0x5d, 0x62, 0xe5, 0xe9, 0xc, 0x13, 0xed}} return a, nil } -var _idtablestakingNodeStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x0f\x0f\x25\x5e\x4c\x0f\xa5\x87\xd0\x56\xd2\x46\x41\x10\x0f\x1a\x0f\x3d\xae\x9b\x89\xa6\xc6\x9d\x30\x99\x54\xa1\xf8\xdf\x4b\xdc\x9a\x8b\x20\x7d\x97\x37\x10\xf2\xed\xb7\xb3\xe5\xa1\x66\x51\x4c\x2b\x3e\xce\xd2\xcc\x6c\x2a\x5a\xa9\xd9\x97\x6e\x8b\x42\xf8\x80\xc7\xd3\x2c\x9d\x2c\xb2\x59\xf6\x99\x25\xef\xf3\x49\x92\xa6\xcb\xc9\x6a\x15\x04\x81\x8a\x71\x8d\xb1\x5a\xb2\x0b\xcd\x81\x5b\xa7\x31\xd6\xd3\xf2\xf4\xfc\x34\xc4\x4f\x10\x00\x40\x14\x61\xce\xd6\x54\xf8\x36\x52\x76\x64\x14\x2c\x30\x10\x2a\x48\xc8\x59\x82\x32\x74\x47\x70\x9c\x13\x78\xf3\x45\x56\x2f\x3f\x56\xa4\x68\xd4\xec\x49\x96\x54\xc4\x78\xb8\x95\x1b\x2d\x38\xbf\xcc\x24\xfe\xac\x5a\xa8\x36\x42\xa1\xb1\x56\x63\x24\xad\xee\x12\x6b\x3b\xab\xce\x06\x7f\x89\x22\x6c\x58\x84\x8f\xff\x91\xe8\xd2\x50\x55\x8c\x7a\x13\xbc\xa2\xc3\x8f\x3c\xe3\xe5\xbe\xd6\x5b\xd8\xed\x2f\x46\xd4\x28\x8b\xd9\x52\x54\x54\x7c\xf4\x9f\x86\x3d\xbf\xcb\x78\x8c\xda\xb8\xd2\x86\x83\x0f\x6e\xab\x1c\x8e\xf5\x6a\x79\xcf\x71\x30\xf4\x17\x3f\xfb\xa2\x13\xd9\x56\xe9\xba\xfa\x5b\x79\x3f\xad\xdd\xa5\xf2\x8c\xf7\xe4\x9a\xfe\xe1\x7c\xf7\xc4\xf3\x6f\x00\x00\x00\xff\xff\x41\xb5\x61\xec\x15\x02\x00\x00" +var _idtablestakingNodeStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xcd\x8a\xdb\x50\x0c\x85\xf7\x7e\x8a\x83\x17\xc1\xde\xd8\x9b\xd2\x45\x68\x1b\xfa\x43\xa0\x50\x5a\x68\x92\xd9\x2b\xd7\x72\xe2\xc9\xf5\x95\x91\xe5\x49\x60\xc8\xbb\x0f\xfe\x49\x98\x10\x06\x66\x31\xda\xc8\x20\xe9\xf8\x7c\xd2\xad\xea\x46\xd4\xb0\xf4\x72\xfc\xfd\x6b\x4d\x5b\xcf\x2b\xa3\x43\x15\x76\x28\x55\x6a\xc4\xf7\x85\x38\x8a\x22\x53\x0a\x2d\x39\xab\x24\x24\x54\x4b\x17\x6c\x8e\xcd\xb2\x3a\x7d\xfe\x94\xe2\x39\x8a\x00\x20\xcf\xf1\x47\x1c\x79\x3c\x91\x56\xfd\x38\x4a\x51\x10\x94\x4b\x56\x0e\x8e\x61\x02\xdb\x33\x82\x14\x0c\xd9\x3e\xb2\xb3\x61\xd0\xb3\xa1\x35\x3a\xb0\xfe\xe7\x72\x0e\xea\x6c\x9f\xdc\xbb\xc8\xfe\x4a\xc1\xff\x1a\x56\x32\xd1\x14\xb3\x37\x3a\x56\x83\xd0\xe8\xa8\x51\x6e\x48\x39\x21\xe7\x6c\xd2\xfd\x21\xaa\x72\x7c\x20\xdf\x71\x8a\xd9\x77\xe7\x7a\x94\x1e\x01\x53\xe4\x39\xb6\x43\xcf\x7b\x9c\xf7\xd1\xb2\x2f\xb3\xab\x7d\x7c\x45\xff\xb7\xac\x35\x51\xda\x71\x36\x6a\x7d\xf9\x08\xa6\x6f\x49\x7f\xa0\x39\xf2\x49\x3b\x2f\xbd\x1c\xc7\x52\x7a\x75\xd3\xc7\x62\x81\x86\x42\xe5\x92\xf8\xa7\x74\xbe\x40\x10\xbb\x30\xdd\x10\xb5\xd3\xdd\xa9\xa8\xab\x10\x8f\x1a\xe7\x71\x73\x7c\x62\xd7\x19\xbf\xda\xcb\x2d\xe6\xf8\xb5\x09\x43\x2a\xd6\x72\xe0\xd0\x5e\xdf\xc5\x98\x2f\x7a\xe7\xe8\x25\x00\x00\xff\xff\xbf\x2c\x3f\x68\x72\x02\x00\x00" func idtablestakingNodeStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2960,11 +3020,11 @@ func idtablestakingNodeStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfc, 0x6b, 0x10, 0x5f, 0x81, 0x24, 0xe5, 0x30, 0x13, 0x2, 0x34, 0x58, 0x85, 0xd0, 0x3d, 0x73, 0xf9, 0xe6, 0xd2, 0x19, 0x17, 0xce, 0x6e, 0xd7, 0x65, 0x4e, 0xc5, 0x26, 0x66, 0x3c, 0x3f, 0xdf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0xb1, 0xec, 0x45, 0x6a, 0xd6, 0xd6, 0x63, 0x55, 0x11, 0x3, 0xac, 0x13, 0xe4, 0x53, 0xd3, 0xb6, 0x8b, 0x82, 0xb3, 0x97, 0x39, 0x1d, 0x61, 0x2d, 0xb5, 0x64, 0x2d, 0xc3, 0x2f, 0xa9, 0x72}} return a, nil } -var _idtablestakingNodeUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x41\x6b\xea\x50\x10\x85\xf7\xf9\x15\x07\x17\x8f\xb8\x89\x6f\x2d\xef\x3d\xc9\x6b\x2c\x08\x22\xc5\x64\xd3\xe5\x78\x9d\x68\xea\xf5\x4e\x18\x27\x55\x10\xff\x7b\x49\x52\xa5\x60\x91\xce\xe6\xce\x62\xe6\x9c\xef\x9e\xa9\xf6\xb5\xa8\xe1\xd9\xcb\x71\x96\x15\xb4\xf2\x9c\x1b\xed\xaa\xb0\x41\xa9\xb2\xc7\xef\xd3\x2c\x9b\x2e\x8a\x59\xf1\x5a\xa4\xff\xe7\xd3\x34\xcb\x96\xd3\x3c\x8f\xa2\xc8\x94\xc2\x81\x9c\x55\x12\x70\x8e\x22\x00\x18\x8d\x30\x17\x47\x1e\xef\xa4\x55\xab\x84\x52\x14\x04\xe5\x92\x95\x83\x63\x98\xc0\xb6\x8c\x20\x6b\x86\xac\xde\xd8\x59\xb7\xe8\xd9\x70\x30\xda\xb1\x2e\xb9\x1c\xe3\xd7\x3d\x4c\xb2\x90\x75\xd7\xb3\xf6\x5e\xb5\x72\x4d\xca\x31\x39\x67\x63\xa4\x8d\x6d\x53\xe7\xa4\x09\x36\xc4\xb9\x1b\xf8\x04\x5a\x89\xaa\x1c\x7f\x02\xd1\xd6\x81\x7d\x99\xdc\x48\xf0\x17\xad\x7c\xd2\x6b\xfc\x79\x8c\xf5\x2f\x6e\xf3\x1a\x7f\x13\xe4\x97\xa1\xdc\x44\x69\xc3\x2f\x64\xdb\xe1\xcd\xb4\xad\xc9\x04\x35\x85\xca\xc5\x83\x27\x69\xfc\x1a\x41\xec\x8a\xfe\x08\x7c\x30\xec\xd3\xb8\xf4\x0f\x9f\xd8\x35\xc6\xd7\x7b\xdc\xff\x28\x69\x42\xd7\xa7\xde\xc7\xb7\xd5\xcb\x47\x00\x00\x00\xff\xff\x71\x58\x69\x70\x03\x02\x00\x00" +var _idtablestakingNodeUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x51\xcd\x4a\xf3\x50\x10\xdd\xe7\x29\x0e\x59\x94\x64\x93\xee\xcb\xf7\x59\xaa\x22\x08\xa2\x62\xc5\xfd\xf4\x66\xd2\xc6\xde\xde\x09\x93\x89\x15\x4a\xdf\x5d\xf2\xd3\xd2\x52\x05\x17\xce\xea\xc2\x3d\x73\x7e\xe6\x94\x9b\x4a\xd4\x70\xe7\x65\x7b\x7f\xfb\x4a\x0b\xcf\x73\xa3\x75\x19\x96\x28\x54\x36\x88\x2f\x3f\xe2\x28\x8a\x4c\x29\xd4\xe4\xac\x94\x80\x5d\x14\x01\xc0\x78\x8c\x07\x71\xe4\xf1\x41\x5a\xb6\x70\x14\xa2\x20\x28\x17\xac\x1c\x1c\xc3\x04\xb6\x62\x04\xc9\x19\xb2\x78\x67\x67\xdd\xa2\x67\x43\x6d\xb4\x66\x7d\xe1\x62\x02\x6a\x6c\x95\x5c\xaa\x66\x8f\x92\xf3\x53\xc5\x4a\x26\x9a\x62\xf4\x03\x62\xde\x11\xf5\x8e\x2a\xe5\x8a\x94\x13\x72\xce\x06\xde\x6b\x51\x95\xed\x1b\xf9\x86\x53\x8c\x66\xce\x49\x13\x2c\xc5\xae\xc3\x0f\x29\x16\x1d\xe6\x37\xce\xdb\xa9\xd9\x17\xd9\xd1\x3e\xfe\xa3\x55\xcb\x6a\x13\xa5\x25\x67\x3d\xd7\xbf\xbf\xc8\x74\x95\xb4\x85\x4c\xbe\x69\xea\x04\x34\xef\x75\x9f\xc9\x56\xe9\xd1\x62\x3b\xd3\x29\x2a\x0a\xa5\x4b\xe2\x1b\x69\x7c\x8e\x20\x76\x08\x7a\x16\xb3\x1e\xca\xa7\x7c\x53\x86\xb8\xe7\xd8\xf7\xe7\xe4\x4f\x76\x8d\xf1\xc9\xb1\xce\xb3\x67\x4d\xe8\xde\x33\xef\x93\xc3\xe2\x3e\xfa\x0a\x00\x00\xff\xff\xa1\x88\x84\x20\x60\x02\x00\x00" func idtablestakingNodeUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -2980,11 +3040,11 @@ func idtablestakingNodeUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4e, 0x95, 0x37, 0xa2, 0xd8, 0xd1, 0x91, 0x70, 0xdb, 0x79, 0x3a, 0x20, 0x5d, 0x7, 0x45, 0xe7, 0xfb, 0x54, 0xb7, 0xc3, 0x41, 0x2f, 0x7e, 0xe9, 0xaa, 0x3a, 0x69, 0x13, 0xb6, 0xd6, 0x76, 0x27}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0x1c, 0xa5, 0xdd, 0xf7, 0xea, 0x9b, 0x33, 0xd5, 0xdd, 0xc3, 0x4a, 0x31, 0x12, 0x57, 0x68, 0x42, 0x35, 0x8c, 0x64, 0xa7, 0x47, 0x11, 0x93, 0x34, 0xbe, 0x86, 0xb7, 0x1b, 0x2, 0x80, 0x5}} return a, nil } -var _idtablestakingNodeUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x0f\x0f\x25\x5e\x92\x9e\x43\x5b\x49\x1b\x0b\x82\x48\x31\xb9\xf4\xb8\x6e\x26\x9a\x1a\x77\xc2\x64\xd2\x08\xc5\xff\x5e\x62\x54\x04\x8b\x74\x4e\x7b\xd8\xfd\xe6\xdb\xf7\xca\x5d\xcd\xa2\x78\xaf\xb8\x9b\x25\x99\x59\x55\x94\xaa\xd9\x96\x6e\x8d\x42\x78\x87\xc7\xfd\x2c\x99\x2e\xb2\x59\xf6\x99\xc5\xaf\xf3\x69\x9c\x24\xcb\x69\x9a\x7a\x9e\x8a\x71\x8d\xb1\x5a\xb2\xf3\x1d\x75\x71\x9e\x0b\x35\x4d\x84\x54\xa5\x74\xeb\x31\x7e\x3c\x0f\x00\xc2\x10\x73\xb6\xa6\xc2\xb7\x91\xb2\x87\xa3\x60\x81\x81\x50\x41\x42\xce\x12\x94\xa1\x1b\x82\xe3\x9c\xc0\xab\x2f\xb2\x7a\x7c\x58\x91\xa2\x51\xb3\x25\x59\x52\x11\xe1\xe1\xd6\x2f\x58\x70\x7e\x3c\x93\x0c\xbb\x6a\xa1\xda\x08\xf9\xc6\x5a\x8d\x10\xb7\xba\x89\xad\xe5\xd6\x69\x6f\x83\xd3\x84\x21\x56\x2c\xc2\xdd\x7f\x24\xfa\x69\xa8\x2a\x82\x8b\x09\x9e\xd1\xe3\x83\x81\xf1\x74\x5f\xeb\xc5\xef\x23\x8c\xfe\xc8\xf6\xea\x52\xaa\x2c\x66\x4d\x1f\x46\x37\xe3\xcb\xd2\x7e\x26\x13\xd4\xc6\x95\xd6\x1f\xbd\x71\x5b\xe5\x70\xac\x67\xf5\x7b\xe2\xa3\x81\x72\x18\x32\xa1\x3d\xd9\x56\xe9\x5c\xc7\xed\x87\x82\xb6\xce\x8d\xd2\x82\xb4\x63\xe9\xd5\x4e\x4d\x5e\x95\x3a\xf6\x4e\xc4\xc3\x6f\x00\x00\x00\xff\xff\xe2\xcc\x6e\xd8\x2c\x02\x00\x00" +var _idtablestakingNodeUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xc1\x4a\xf3\x50\x10\x85\xf7\x79\x8a\x43\x16\x25\xd9\x24\xfb\xf2\xff\x96\xaa\x08\x82\x54\x31\xe2\x7e\x7a\x33\x69\x63\xd3\x3b\x61\x32\x31\x82\xf4\xdd\x25\x4d\x5a\x5a\xaa\xe0\xc2\xd9\xde\xb9\xdf\x9c\x33\x73\xca\x6d\x2d\x6a\xb8\xab\xa4\xbb\xbf\x7d\xa1\x65\xc5\x99\xd1\xa6\xf4\x2b\x14\x2a\x5b\x84\x97\x0f\x61\x10\x98\x92\x6f\xc8\x59\x29\x3e\xf2\xdc\xcd\xf3\x5c\xb9\x69\xa6\xc8\x4c\x4b\xbf\x8a\xf1\x19\x04\x00\x90\xa6\x78\x10\x47\x15\xde\x49\xcb\x9e\x80\x42\x14\x04\xe5\x82\x95\xbd\x63\x98\xc0\xd6\x0c\x2f\x39\x43\x96\x6f\xec\x6c\xff\xb1\x62\x43\x63\xb4\x61\x7d\xe6\x62\x0a\x6a\x6d\x1d\x5d\x0a\x49\x16\x92\xf3\x63\xcd\x4a\x26\x1a\x63\xf2\x43\x47\xb6\x07\x0d\x8a\x6a\xe5\x9a\x94\x23\x72\xce\x46\xee\xb5\xa8\x4a\xf7\x4a\x55\xcb\x31\x26\x73\xe7\xa4\xf5\xd6\x5b\xc0\x58\x69\x8a\xe5\xbe\xe7\x37\xca\xfb\x6a\xb8\x2a\x92\xa3\x7c\xfc\x47\x3f\x2d\x69\x4c\x94\x56\x9c\x0c\xac\x7f\x7f\xe1\xe9\x2a\xea\x6f\x34\xfd\xe6\x78\x27\x4d\xd9\x30\xf7\x89\x6c\x1d\x1f\x25\xf6\x35\x9b\xa1\x26\x5f\xba\x28\xbc\x91\xb6\xca\xe1\xc5\x0e\x46\xcf\x6c\x36\x63\x1e\x28\xdf\x96\x3e\x1c\x18\xbb\x61\x9d\xfc\xc1\xae\x35\x3e\x59\xd6\xb9\xf7\xa4\xad\x73\x32\x5e\xb0\x75\xa2\x3d\x64\x4c\xca\x49\x68\x0e\xbc\x5d\xf0\x15\x00\x00\xff\xff\x85\x75\xea\x7b\x8a\x02\x00\x00" func idtablestakingNodeUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -3000,11 +3060,11 @@ func idtablestakingNodeUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0xff, 0xd7, 0xe9, 0x86, 0x61, 0x79, 0xad, 0x99, 0xa6, 0xaa, 0x48, 0x6, 0xe9, 0x53, 0x70, 0xa0, 0xae, 0x82, 0xf6, 0x21, 0xec, 0x11, 0x8, 0x6, 0x4d, 0x42, 0xd1, 0xc6, 0xe5, 0x8, 0x9d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xd2, 0x71, 0xf6, 0xe3, 0x80, 0x71, 0xc6, 0xeb, 0x99, 0xb9, 0x5f, 0x5b, 0x7b, 0x58, 0x5a, 0x60, 0xeb, 0x99, 0x8d, 0x8e, 0x29, 0xae, 0x92, 0xd0, 0x8c, 0x1, 0xe5, 0x56, 0xf7, 0x10, 0xee}} return a, nil } -var _idtablestakingNodeWithdraw_reward_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x8f\x93\x50\x10\xc7\xef\x7c\x8a\xc9\x1e\x4c\x7b\x10\x3c\x18\x0f\xcd\xea\xa6\x5a\x9a\x34\x36\x5d\x53\x50\xe3\x71\xfa\x18\x96\x67\xe9\x1b\x32\x0c\xd2\xc4\xec\x77\x37\x0f\x16\x64\x63\xd3\x98\x9d\xcb\x40\xf8\xff\x67\x7e\xcc\x8c\x3d\x55\x2c\x0a\xeb\x92\xdb\xcd\x2a\xc5\x43\x49\x89\xe2\xd1\xba\x07\xc8\x85\x4f\xf0\xe6\xbc\x59\xc5\xbb\x74\x93\xfe\x48\x97\x1f\xb7\xf1\x72\xb5\xda\xc7\x49\x12\x4c\x5c\x29\x1f\xc9\x0d\xe2\xf5\xf6\xfe\x7b\x7a\xff\x39\xde\x0d\xc2\x20\x50\x41\x57\xa3\x51\xcb\x6e\x86\x27\x6e\x9c\x2e\xe0\xeb\xda\x9e\xdf\xbd\x9d\xc3\xef\x20\x00\x00\x88\x22\xd8\xb2\xc1\x12\x7e\xa1\x58\x8f\x00\x39\x0b\x20\x08\xe5\x24\xe4\x0c\x81\x32\x68\x41\xe0\x38\x23\xe0\xc3\x4f\x32\xda\x19\x4b\x52\xa8\x15\x8f\x24\x7b\xca\x17\xf0\xea\xdf\xbf\x08\x77\x9c\x75\xcf\x24\xc1\x68\xc9\x07\xec\xbf\xae\xee\x35\xfc\x86\x4d\xa9\xbd\xae\x12\xaa\x50\x68\x86\xc6\xe8\x02\x96\x8d\x16\x4b\x63\x3c\xbd\xa7\x86\xa7\x88\x22\x38\xb0\x08\xb7\xff\x03\xeb\xa3\xa6\x32\x0f\x47\x62\x78\x0f\xbe\x7c\xd8\xd7\xb8\xbd\x8e\xff\x61\xe6\x67\xbc\xb8\xb0\xa9\x89\x28\x51\x16\x7c\xa0\x2f\xa8\xc5\x7c\x6c\xea\xe3\xee\x0e\x2a\x74\xd6\xcc\x6e\x3e\x71\x53\x66\xe0\x58\x07\xf4\x6b\xe0\x37\xf3\xe0\x39\xfb\x74\x74\x97\xf0\x27\x73\x1c\x80\xa3\xba\x87\x8a\x46\x6f\xf7\xf9\x65\x7c\xfe\xc0\xa0\xf3\x0f\x68\x8f\x7d\xa2\x33\x99\x46\x69\x38\xa9\x8b\xc0\x61\x46\x15\xd7\x56\x9f\xc0\x6e\x5f\x3f\x5f\x47\xd8\x5a\x2d\x32\xc1\x76\x4f\x2d\x4a\x46\x59\xe7\xab\xc7\xab\xed\xf3\x7c\xec\xfb\xf8\x27\x00\x00\xff\xff\x60\x5a\x76\x7d\x3c\x03\x00\x00" +var _idtablestakingNodeWithdraw_reward_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x4f\x6b\xdb\x40\x10\xc5\xef\xfb\x29\x06\x1d\x8c\x74\xa8\x74\x29\x3d\x98\xb4\xa1\x7f\x30\x14\x42\x53\xe2\x34\x3d\x8f\x57\xa3\x78\xeb\xf5\x8e\x18\x8d\xaa\x40\xc9\x77\x2f\x5a\xfd\x41\xae\x6b\x28\x25\x73\x11\x62\xdf\xbc\x79\x3f\xcd\xca\x1d\x6b\x16\x85\x8d\xe7\xee\xf3\xa7\x7b\xdc\x79\xda\x2a\x1e\x5c\x78\x84\x4a\xf8\x08\xc9\xf9\x41\x62\x16\x3d\xf7\x7c\xa0\xb0\x90\xc6\xf7\xc4\x18\xa3\x82\xa1\x41\xab\x8e\x43\x8a\x47\x6e\x83\xae\xe1\xdb\xc6\x3d\xbd\x79\x9d\xc1\x2f\x63\x00\x00\x8a\x02\x6e\xd8\xa2\x87\x9f\x28\xae\x1f\x00\x15\x0b\x20\x08\x55\x24\x14\x2c\x81\x32\xe8\x9e\x20\x70\x49\xc0\xbb\x1f\x64\x35\x36\x7a\x52\x68\x14\x0f\x24\x77\x54\xad\x01\x5b\xdd\xa7\xe7\x39\xf3\x2f\x5c\xd2\x6d\x4d\x82\xca\x92\xc1\xea\x82\x62\x1b\x8d\xcc\x6c\x5c\x4d\x14\xd1\x7b\x35\x43\xe5\x0f\xd8\x7a\x1d\x74\xb5\x50\x8d\x42\x29\x5a\xab\xe3\xfc\x0f\x2c\xc2\xdd\x03\xfa\x96\x32\x58\xbd\xb7\xb6\x47\xee\x51\x61\xac\xa2\x80\x5d\xd4\xfc\x0b\x61\x5f\x0d\xf9\x2a\x9f\x31\xe1\x2d\xf4\xd3\xf2\x46\x59\xf0\x91\xf2\xc1\xeb\xea\x25\xd8\xdf\xa5\xfd\xfe\xd6\x7f\xb9\x03\x0b\xd1\x76\x98\xfb\x15\x75\x9f\xcd\x11\xfb\xba\xbe\x86\x1a\x83\xb3\x69\xf2\x91\x5b\x5f\x42\x60\x9d\x40\x4f\x30\x9b\xf1\x5a\x61\x79\x74\x21\xc9\xcc\x29\xe7\xf2\xab\x5f\x40\xfd\x73\x15\x53\xec\x62\xd4\x15\xb3\x47\x3c\xfe\xbf\x94\x9b\x9b\xdb\xef\x10\xfb\x93\xc1\xe0\x79\x08\x4a\x4f\x64\x5b\xa5\xc5\x3e\xcf\x62\xe7\x25\xd5\xdc\x38\x1d\x63\x5d\xbd\x3a\x5d\x60\xde\x39\xdd\x97\x82\xdd\x1d\x75\x28\x25\x95\xb1\xaf\x99\x7f\x8e\xe1\x99\x4d\x53\x9f\xcd\xef\x00\x00\x00\xff\xff\x59\x46\xe5\x62\x9a\x03\x00\x00" func idtablestakingNodeWithdraw_reward_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3020,11 +3080,11 @@ func idtablestakingNodeWithdraw_reward_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/withdraw_reward_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5f, 0x9c, 0xf5, 0xbe, 0x1e, 0xf3, 0xb8, 0x1e, 0x25, 0x2c, 0x3b, 0x3, 0xf1, 0xc8, 0xaf, 0xae, 0x4b, 0xb5, 0xb5, 0x88, 0x5e, 0x4f, 0x61, 0x4, 0x43, 0x82, 0xe4, 0xaf, 0x60, 0x6b, 0xf1, 0x19}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x52, 0xeb, 0x3d, 0x25, 0xa1, 0xa5, 0x3e, 0xc5, 0x3, 0xd5, 0xde, 0x8f, 0xc3, 0xa1, 0x8, 0xb9, 0x75, 0x58, 0x54, 0x20, 0xdd, 0xea, 0x4d, 0x82, 0x1d, 0xd1, 0x39, 0x18, 0xbd, 0x95, 0x4c, 0xe7}} return a, nil } -var _idtablestakingNodeWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xcf\x8e\x94\x40\x10\xc6\xef\x3c\x45\x65\x0f\x06\x0e\x82\x07\xe3\x81\xac\x6e\x50\x98\x64\xe2\x64\xd6\x2c\xac\xc6\x63\x4d\x53\x2c\xed\x30\x5d\xa4\x29\x64\x12\xb3\xef\x6e\x1a\x16\x64\xe3\x64\x63\xac\x4b\xf3\xe7\xfb\xaa\x7e\x5d\x55\xfa\xd4\xb2\x15\xd8\x34\x3c\x6c\xd3\x02\x0f\x0d\xe5\x82\x47\x6d\x1e\xa0\xb2\x7c\x82\x37\xe7\x6d\x9a\xed\x8b\x6d\xf1\xbd\x48\x3e\xee\xb2\x24\x4d\xef\xb2\x3c\xf7\x56\xae\x82\x8f\x64\x66\xf1\x66\x77\xfb\xad\xb8\xfd\x9c\xed\x67\xa1\xe7\x89\x45\xd3\xa1\x12\xcd\xc6\xc7\x13\xf7\x46\x62\xb8\xdf\xe8\xf3\xbb\xb7\x01\xfc\xf2\x3c\x00\x80\x28\x82\x1d\x2b\x6c\xe0\x27\x5a\xed\x10\xa0\x62\x0b\x08\x96\x2a\xb2\x64\x14\x81\x30\x48\x4d\x60\xb8\x24\xe0\xc3\x0f\x52\x32\x1a\x1b\x12\xe8\x04\x8f\x64\xef\xa8\x8a\xe1\xd5\xdf\xb7\x08\xf7\x5c\x8e\xcf\x64\xbd\xc5\x52\xcd\xd8\x7f\x5c\xe3\x6b\xf8\x15\xfb\x46\x26\x5d\x6b\xa9\x45\x4b\x3e\x2a\x25\x31\x24\xbd\xd4\x89\x52\x8e\xde\x51\xc3\x53\x44\x11\x1c\xd8\x5a\x1e\xfe\x05\xd6\x45\x47\x4d\x15\x2e\xc4\xf0\x1e\x5c\xfa\x70\xca\x71\xfd\x32\xfe\x07\xdf\xf5\x38\xbe\x30\xa9\x95\x28\x17\xb6\xf8\x40\x5f\x50\xea\x60\x29\xea\xe2\xe6\x06\x5a\x34\x5a\xf9\x57\x9f\xb8\x6f\x4a\x30\x2c\x33\xfa\x4b\xe0\x57\x81\xf7\x9c\x7d\xdd\xba\x4b\xf8\xab\x3e\xce\xc0\x51\x37\x41\x45\x8b\x77\xfc\xfd\x7f\x7c\x6e\xc1\x60\xf4\xcf\x68\x8f\xd3\x41\x67\x52\xbd\xd0\xbc\x52\x17\x81\xc3\x92\x5a\xee\xb4\x3c\x81\x5d\xbf\x7e\x3e\x8e\x70\xd0\x52\x97\x16\x87\x7b\x33\x7e\x2b\x47\x5f\xb7\x6c\xed\x74\x06\x4b\xdd\xc7\xdf\x01\x00\x00\xff\xff\x0d\xd7\x89\xd6\x3c\x03\x00\x00" +var _idtablestakingNodeWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x4f\x6b\xdb\x40\x10\xc5\xef\xfb\x29\x06\x1d\x8c\x74\xa8\x74\x29\x3d\x98\xb4\xa1\x7f\x30\x14\x42\x53\xea\x24\x3d\x8f\x57\xa3\x78\xeb\xf5\x8e\x18\x8d\xaa\x40\xc9\x77\x2f\x5a\xfd\x41\xae\x6b\x28\x25\x73\x31\xd6\xbe\x79\xf3\x7e\x9a\x95\x3b\xd6\x2c\x0a\x1b\xcf\xdd\xe7\x4f\x77\xb8\xf3\xb4\x55\x3c\xb8\xf0\x08\x95\xf0\x11\x92\xf3\x83\xc4\x2c\x7a\xee\xf8\x40\x61\x21\x8d\xff\x13\x63\x8c\x0a\x86\x06\xad\x3a\x0e\x29\x1e\xb9\x0d\xba\x86\xfb\x8d\x7b\x7a\xf3\x3a\x83\x5f\xc6\x00\x00\x14\x05\xdc\xb0\x45\x0f\x3f\x51\x5c\x3f\x00\x2a\x16\x40\x10\xaa\x48\x28\x58\x02\x65\xd0\x3d\x41\xe0\x92\x80\x77\x3f\xc8\x6a\x6c\xf4\xa4\xd0\x28\x1e\x48\xbe\x51\xb5\x06\x6c\x75\x9f\x9e\xe7\xcc\xbf\x70\x49\xb7\x35\x09\x2a\x4b\x06\xab\x0b\x8a\x6d\x34\x32\xb3\x71\x35\x51\x44\xef\xd5\x0c\x95\x3f\x60\xeb\x75\xd0\xd5\x42\x35\x0a\xa5\x68\xad\x8e\xf3\x3f\xb0\x08\x77\x0f\xe8\x5b\xca\x60\xf5\xde\xda\x1e\xb9\x47\x85\xb1\x8a\x02\x76\x51\xf3\x2f\x84\x7d\x35\xe4\xab\x7c\xc6\x84\xb7\xd0\x4f\xcb\x1b\x65\xc1\x47\xca\x07\xaf\xab\x97\x60\x7f\x97\xf6\xfb\x5b\xff\xe5\x0e\x2c\x44\xdb\x61\xee\x57\xd4\x7d\x36\x47\xec\xeb\xfa\x1a\x6a\x0c\xce\xa6\xc9\x47\x6e\x7d\x09\x81\x75\x02\x3d\xc1\x6c\xc6\x6b\x85\xe5\xd1\x85\x24\x33\xa7\x9c\xcb\xb7\x7e\x01\xf5\xcf\x55\x4c\xb1\x8b\x51\x57\xcc\x1e\xf1\xf8\xff\x52\x6e\x6e\x6e\xbf\x43\xec\x4f\x06\x83\xe7\x21\x28\x3d\x91\x6d\x95\x16\xfb\x3c\x8b\x9d\x97\x54\x73\xe3\x74\x8c\x75\xf5\xea\x74\x81\x79\xe7\x74\x5f\x0a\x76\xf7\x21\x3e\x2b\x63\x5f\x33\x7f\x1c\xc3\x6f\x36\x4d\x7d\x36\xbf\x03\x00\x00\xff\xff\x34\xcb\x1a\xc9\x9a\x03\x00\x00" func idtablestakingNodeWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3040,11 +3100,11 @@ func idtablestakingNodeWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0x80, 0xfb, 0x68, 0x62, 0x31, 0x5b, 0x95, 0x88, 0x56, 0xa3, 0xd1, 0xe9, 0x54, 0xb3, 0xe9, 0x58, 0xcc, 0x3f, 0xf4, 0x64, 0x15, 0x1c, 0x8, 0xbb, 0x85, 0xd9, 0x8d, 0x1e, 0x30, 0x5e, 0x2b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x77, 0xc9, 0x29, 0x2b, 0x34, 0x2, 0xd7, 0x10, 0x4e, 0x68, 0xa9, 0x5e, 0x1e, 0x2d, 0xc5, 0xd9, 0xdb, 0xca, 0xd0, 0x10, 0xb4, 0x22, 0xef, 0xd4, 0xa5, 0x9c, 0xe5, 0xcd, 0xe, 0xb5, 0x16, 0xa8}} return a, nil } -var _idtablestakingScriptsGet_approved_but_not_staked_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\xc1\xca\x9b\x40\x14\x85\xf7\x3e\xc5\xe9\x4e\x37\xf9\xbb\x0e\xb8\x48\x30\x05\x21\xcd\xa2\xba\x29\xc1\xc5\x18\xaf\x71\x88\xce\x4c\x67\xee\xa4\x29\xc1\x77\x2f\x6a\xaa\x86\x96\xce\x42\xf0\xfa\x1d\xbf\xe3\x45\xd9\x19\x6d\x19\x5f\x5a\xfd\x33\x4d\x72\x51\xb6\x94\xb1\xb8\x49\x75\x45\x6d\x75\x87\xcf\x8f\x34\x39\x9c\xf2\x34\xff\x9e\xef\xf6\xc7\xc3\x2e\x49\xbe\x1d\xb2\x2c\x08\x3e\x3e\x90\x37\xd2\xc1\x5d\xac\x34\x0c\x4b\xec\xad\x72\xe0\x86\xd0\x4a\xc7\xd0\x35\x94\xae\x68\x98\x08\x86\xb0\x04\xad\xc6\xa7\xc2\x18\xab\xef\x54\x4d\x58\xe9\x19\x95\x86\xd2\x8c\x8b\xb7\x96\x14\xb7\xbf\xd0\x88\x3b\x81\xf5\x8d\x94\x83\x63\x71\xa3\x0a\xa2\xd4\xc3\xac\x21\x74\x52\xc9\xce\x77\xb0\xf4\xc3\x4b\x4b\x1d\x29\xde\x04\xc6\x97\xa8\xbd\x42\x27\xa4\x0a\xa3\x2d\xce\x19\x5b\xa9\xae\x05\x9e\x01\x00\xb4\xc4\xb3\x37\x4d\x1c\xe2\x7f\x7c\xee\xe6\x4a\xbc\x7b\x31\x47\xe9\x38\x8c\xe6\xe8\xd4\xe1\x7f\xc1\x6c\x24\x4e\xba\xa2\x34\x71\x61\x14\xfc\x1d\xfd\x2a\xcc\x16\xcf\xa9\xd6\x16\x7b\xad\xdb\x1e\x31\x9e\xfd\x48\xd6\xda\xce\x24\xa4\x5a\x09\xa7\xfe\xc3\x59\xbf\xe9\xfc\xe7\xa6\x40\x0c\xb6\x9e\x46\xaa\x5f\xb4\xf4\x60\x2b\x5e\x75\x56\xdb\x88\x71\x2e\x66\xe1\xb2\x90\x41\xb9\x5e\xcf\x22\x95\xf5\xbb\x77\xa1\x0a\x7c\x9a\xd4\x2b\x7a\x38\x6b\xf3\x46\x18\x43\xaa\x0a\x97\x54\x34\xb3\x7d\xb0\x5c\xa7\x9f\xe7\x2d\x1a\xf4\xbf\x03\x00\x00\xff\xff\xa2\xd8\x97\xd5\x98\x02\x00\x00" +var _idtablestakingScriptsGet_approved_but_not_staked_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x31\x8f\x9b\x40\x10\x85\x7b\x7e\xc5\x8b\x2b\x68\xec\xde\x12\x45\x22\x2b\x92\xa5\x24\x8d\xdd\x59\x14\x6b\x18\xcc\xca\xcb\x0e\x99\x1d\x9c\x9c\x2c\xfe\xfb\x09\xf0\x01\x96\x4f\xb7\x05\x12\xbb\xdf\xe3\x7b\x8c\xd6\xd6\x0d\x8b\xe2\xa7\xe3\x7f\xfb\xdd\xd1\x9c\x1d\x1d\xd4\x5c\xad\xbf\xa0\x14\xae\xb1\x7a\x3d\x58\x45\xd1\x66\x83\x63\x65\x03\x42\x2e\xb6\x51\x08\x69\x2b\x3e\x40\x2b\x82\xb3\x41\xc1\x25\x3c\x17\xd4\xef\x18\x85\x11\x02\xfb\xe1\xd4\x34\x8d\xf0\x8d\x8a\x11\x3b\xb7\x8a\x82\xe1\x59\x91\xb7\x22\xe4\xd5\xbd\xa1\x32\x37\x82\xf2\x95\x7c\x40\x50\x73\xa5\x02\xe6\xcc\xfd\x5e\x45\xa8\xad\xb7\x75\x5b\x43\xe8\x6f\x6b\x85\x6a\xf2\xba\x8e\x4c\x9e\x53\x08\xb1\x71\x2e\x41\xd9\x7a\xd4\xc6\xfa\x38\xd9\xe2\x74\x50\xb1\xfe\x92\xe1\x1e\x01\x80\x23\x9d\xfc\xfb\x5d\x40\xfa\xc9\x4f\xaf\x2f\xa4\xdf\x1f\xcc\x2f\x1b\x34\x4e\xa6\xe8\xd8\xe5\xab\xe0\x61\x20\xfe\x70\x41\xfb\x5d\x88\x93\xe8\x35\xfa\xdb\x34\x5b\xdc\xc7\x5a\x5b\xfc\x60\x76\x1d\x52\xdc\xbb\x81\x2c\x59\x26\x12\xd6\x2f\x84\x63\xff\x7e\x2d\xbf\x74\xfa\x78\xc9\x90\x42\xa5\xa5\x81\xea\x66\x2d\xfd\x57\x31\x8f\x3a\x8b\x69\xa4\x38\x65\x93\x70\x1e\x48\xaf\x5c\x8e\x67\x96\xda\xf2\xd9\x3b\x53\x19\xbe\x8d\xea\x05\xdd\xaf\xa5\x79\x6d\x9a\x86\x7c\x11\xcf\xa9\x64\x62\xbb\x68\x7e\x8e\x97\xe8\x29\x1a\x75\xef\x01\x00\x00\xff\xff\x1f\x13\x7f\x5b\x9e\x02\x00\x00" func idtablestakingScriptsGet_approved_but_not_staked_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -3060,11 +3120,11 @@ func idtablestakingScriptsGet_approved_but_not_staked_nodesCdc() (*asset, error) } info := bindataFileInfo{name: "idTableStaking/scripts/get_approved_but_not_staked_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc7, 0xd1, 0x94, 0x0, 0xe, 0x54, 0x44, 0x5c, 0x91, 0xdc, 0xe, 0x56, 0xa7, 0x76, 0x7d, 0x4, 0x90, 0x93, 0xa2, 0x39, 0xc3, 0x18, 0x9f, 0x62, 0x8e, 0x5f, 0xa4, 0xb, 0x33, 0x42, 0xc4, 0xc4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x14, 0xa8, 0xd9, 0xd7, 0xa2, 0x3c, 0xd5, 0x82, 0xed, 0xbe, 0x41, 0xd5, 0xa4, 0x94, 0x1e, 0x60, 0x33, 0x2f, 0x2e, 0x61, 0x5a, 0x62, 0x82, 0xc9, 0x65, 0x58, 0xaf, 0xf, 0x89, 0x70, 0xdd, 0xec}} return a, nil } -var _idtablestakingScriptsGet_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x4f\x4b\xc3\x40\x10\xc5\xef\xfb\x29\x1e\x3d\x25\x97\xd6\xb3\x20\x25\x9a\x08\x81\xe2\xc1\xec\x45\xc4\xc3\x36\xd9\xa6\x43\x37\xbb\xcb\xec\xac\x7f\x10\xbf\xbb\xa4\x11\x51\xe8\x9c\xe7\xf7\xde\xef\xd1\x14\x03\x0b\xee\x5d\x78\x6b\x6b\x6d\xf6\xce\x76\x62\x4e\xe4\x47\x1c\x38\x4c\xb8\x7a\x6f\xeb\xe6\x41\xb7\xfa\x49\x57\xb7\xbb\xa6\xaa\xeb\xc7\xa6\xeb\x94\xda\x6c\xa0\x8f\x94\x90\x7a\xa6\x28\x60\x2b\x99\x7d\x82\x1c\x2d\xfa\xcc\x6c\xbd\xc0\xc4\xc8\xe1\xd5\x0e\x70\x94\x44\xa9\x98\xf7\x38\x64\x8f\xc9\x90\x2f\xca\x6b\x3c\x77\xc2\xe4\xc7\x17\x7c\x2a\x00\x70\xf6\x97\xd8\x51\x12\xdc\x5c\x50\x5a\x8f\x56\xaa\x9f\xd4\xf9\xa9\x28\xcf\xe8\x7c\xdb\x2d\xa2\xf1\xd4\x17\xab\xbb\x90\xdd\x00\x1f\x66\x29\x33\xfc\xb7\x58\x36\x25\x09\x6c\x46\xbb\x2a\xd5\x19\x5f\xdc\xff\x96\xaf\x4f\xf6\x23\xa9\xaf\xef\x00\x00\x00\xff\xff\x84\xeb\x78\x1d\x1b\x01\x00\x00" +var _idtablestakingScriptsGet_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\x03\x41\x0c\x85\xef\xf3\x2b\x1e\x7b\xda\xbd\xb4\x77\x41\x8a\x28\x82\xe0\xad\xbd\x89\x87\x38\x9b\x6e\x43\x67\x67\x86\x24\xa3\x88\xf8\xdf\x65\x5b\x11\xc5\xe6\x9a\x7c\x79\xdf\x93\xb9\x16\x75\xdc\xa7\xf2\xf6\x70\xb7\xa3\x97\xc4\x5b\xa7\xa3\xe4\x09\x7b\x2d\x33\xba\xff\x8b\x2e\x84\xf5\x1a\xbb\x83\x18\x2c\xaa\x54\x87\xb2\x37\xcd\x06\x3f\x30\x62\x53\xe5\xec\xa0\x5a\xb5\xbc\xf2\x88\x24\xe6\x21\x50\x8c\x6c\xd6\x53\x4a\x03\xf6\x2d\x63\x26\xc9\xfd\x70\x85\xa7\xad\xab\xe4\xe9\x19\x1f\x01\x00\x12\xff\x90\x8f\x62\x8e\xeb\x0b\x62\xab\x89\xfd\xe6\xfb\xfb\x72\xd4\x0f\x27\x74\x99\xcd\x06\x95\xb2\xc4\xbe\xbb\x2d\x2d\x8d\xc8\x65\x91\xa3\xf1\xaf\xcd\xb9\x99\x79\x51\x9a\xb8\x1b\xc2\x09\x3f\x77\xf8\x1d\xbe\x3a\xf2\xbb\x85\xcf\xaf\x00\x00\x00\xff\xff\x00\x5c\x95\xe3\x21\x01\x00\x00" func idtablestakingScriptsGet_approved_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -3080,11 +3140,11 @@ func idtablestakingScriptsGet_approved_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_approved_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0x8, 0x8e, 0xe3, 0x26, 0xd9, 0x3d, 0x53, 0xe3, 0x54, 0x6, 0xee, 0x19, 0xa8, 0x6, 0xfc, 0xdd, 0xee, 0x6, 0x9f, 0x37, 0x52, 0x4d, 0xe2, 0xf4, 0xd, 0x3d, 0xcc, 0x97, 0x6, 0xd3, 0x22}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0xac, 0xf9, 0x96, 0xc5, 0x4, 0x35, 0x8f, 0xd3, 0xaf, 0xca, 0x92, 0x87, 0x91, 0x68, 0xe0, 0xfd, 0xe2, 0xfc, 0x80, 0x6b, 0x22, 0xa5, 0x41, 0x2, 0x1c, 0xa8, 0xb1, 0x19, 0x20, 0xe7, 0x1a}} return a, nil } -var _idtablestakingScriptsGet_candidate_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x8f\x9e\x92\x8b\xf5\x20\x22\xbd\x94\xda\x44\x08\x94\x1e\xcc\x7a\xf0\xb8\xcd\x4e\x9a\xc1\xcd\x4c\xd8\x4c\x50\x28\xfd\xef\xd2\x56\xc1\x83\x73\x19\x78\xf0\xde\xf7\xf1\x30\x6a\x32\xbc\x44\xfd\xac\x4b\xe7\x0f\x91\x1a\xf3\x1f\x2c\x47\x74\x49\x07\xdc\x7f\xd5\x65\xb5\x77\xb5\x7b\x77\x9b\xe7\x5d\xb5\x29\xcb\xd7\xaa\x69\xb2\x6c\xb9\x84\xeb\x79\xc2\xd4\x26\x1e\x0d\x89\x6c\x4e\x32\xc1\x7a\x42\xe4\x81\x6d\x42\xa7\x09\xad\x97\xc0\xc1\x1b\x41\x34\xd0\x2d\x23\xdf\xf6\x48\x1a\x29\x1b\xe7\x03\xba\x59\x30\x78\x96\xbc\x58\xe1\xf4\x56\x8b\x3d\xad\x70\x79\x8f\x0f\x67\x9c\x32\x00\x3f\xd3\xff\x08\xde\x1d\xc9\xb6\xbf\x80\xbd\x06\xda\x5d\xc1\x79\x71\xad\x5d\x6e\xbd\xc6\xe8\x85\xdb\x7c\xb1\xd5\x39\x06\x88\x1a\xa2\xfa\xf0\xc7\xeb\x26\xbb\x28\xb2\xf3\x77\x00\x00\x00\xff\xff\x2c\xee\x71\x69\x09\x01\x00\x00" +var _idtablestakingScriptsGet_candidate_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xc1\x4a\x03\x41\x0c\x06\xe0\xfb\x3c\xc5\xcf\x9e\x76\x2f\xf6\x22\x22\xbd\xf4\x50\x11\x0a\xe2\xc5\xfa\x00\x71\x26\xdb\x0d\xce\x24\xcb\x4c\x16\x0f\xa5\xef\x2e\x6d\x15\x04\x9b\x4b\x20\xe1\xe7\xff\xa4\xcc\x56\x1d\xcf\xd9\xbe\x76\x4f\x7b\xfa\xc8\xfc\xe6\xf4\x29\x7a\xc0\x58\xad\xa0\xfb\xff\xe8\x42\x58\xad\xb0\x9f\xa4\xa1\xc5\x2a\xb3\xa3\xb2\x2f\x55\x1b\x7c\x62\x64\x29\xe2\x0d\xa3\x55\x44\xd2\x24\x89\x9c\xa1\x96\xf8\x7a\x63\x8a\x13\xaa\x65\x0e\x14\x23\xb7\xd6\x53\xce\x03\xc6\x45\x51\x48\xb4\x1f\xd6\x38\xbe\xef\xd4\x1f\xd7\x38\xaf\x87\xfb\x13\x8e\x01\xc0\x4f\xc5\x0d\xe6\xdd\x81\x7d\xfb\x5b\xf4\x6a\x89\x5f\x2e\x80\x7e\xb8\xc4\xce\xb3\xd9\x60\x26\x95\xd8\x77\x5b\x5b\x72\x82\x9a\x23\x1b\xa5\x3f\xbe\x2b\xba\x1b\xc2\xe9\x3b\x00\x00\xff\xff\xa1\x29\xc8\x31\x0f\x01\x00\x00" func idtablestakingScriptsGet_candidate_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -3100,11 +3160,11 @@ func idtablestakingScriptsGet_candidate_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_candidate_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc5, 0x8e, 0x7c, 0xef, 0x38, 0x37, 0x1b, 0xdd, 0x51, 0x69, 0xdd, 0xbd, 0xa6, 0xd2, 0x82, 0x8c, 0x73, 0x2f, 0x74, 0xc9, 0x67, 0x7e, 0x6, 0x19, 0xaf, 0xcf, 0x3d, 0xec, 0xf7, 0x50, 0x49, 0x82}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x60, 0xa1, 0xa5, 0x45, 0xe1, 0x6a, 0x41, 0x4d, 0x33, 0x8d, 0xe9, 0x2a, 0x3f, 0x31, 0x86, 0xb6, 0x91, 0x74, 0xd1, 0xd9, 0x51, 0xe2, 0x22, 0x15, 0xb2, 0xcf, 0x5d, 0x6a, 0x5c, 0x5c, 0xd3, 0xa5}} return a, nil } -var _idtablestakingScriptsGet_candidate_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\x31\x4f\x84\x40\x10\xc5\xf1\x7e\x3f\xc5\x2b\xef\x1a\xcf\xd2\xd0\xdd\x09\x26\x24\x97\x2b\x64\x2d\x2c\xf7\x60\x80\x89\x30\xb3\xd9\x1d\xa2\x09\xe1\xbb\x1b\x8c\x76\xf6\xef\xe5\xf7\xe7\x39\x6a\x32\xbc\x4c\xfa\x59\x97\x3e\xdc\x27\x6a\x2c\x7c\xb0\x0c\xe8\x93\xce\x78\xfc\xaa\xcb\xea\xe6\x6b\xff\xee\xcf\x97\x6b\x75\x2e\xcb\xd7\xaa\x69\x9c\x3b\x9d\xe0\x47\xce\xc8\x6d\xe2\x68\x48\x64\x4b\x92\x0c\x1b\x09\x13\x67\x83\xf6\x68\x83\x74\xdc\x05\x23\x88\x76\x94\xf7\x4b\xaf\xe9\x67\xb2\xc4\x56\xe7\xdd\xa0\xa8\xed\xe8\xe2\x72\x47\xbf\x08\xe6\xc0\x72\x38\x16\x58\xdf\x6a\xb1\xa7\x02\x6b\x63\x89\x65\x28\x70\x51\x9d\xb6\x0d\xab\x03\xf0\x6b\xfd\x53\xfc\x30\x90\x3d\xff\xa1\x37\xed\xe8\xca\xd9\x0e\x47\xb7\x7d\x07\x00\x00\xff\xff\x5d\x0f\xc6\x78\xe4\x00\x00\x00" +var _idtablestakingScriptsGet_candidate_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4e\xc4\x30\x10\x04\xd0\xde\x5f\x31\xba\x2a\x69\xb8\x16\xa5\x04\x84\x74\x12\xa2\xb9\xe3\x03\x8c\xb3\x49\x56\xd8\xbb\x96\x77\x23\x8a\x28\xff\x8e\x82\xa0\x82\x7a\x66\xf4\x86\x4b\xd5\xe6\x78\xce\xfa\x79\x79\xba\xc5\xf7\x4c\x57\x8f\x1f\x2c\x33\xa6\xa6\x05\xa7\xbf\xc1\x29\x84\xf3\x19\xb7\x85\x0d\x96\x1a\x57\x47\x23\x5f\x9b\x18\x7c\x21\x64\x36\x87\x4e\x48\x51\x46\x1e\xa3\x13\x44\x47\xb2\x63\x32\x69\xfb\xae\xac\x35\x69\x39\x04\xaa\x9a\x96\x10\x53\x22\xb3\x2e\xe6\xdc\x63\x5a\x05\x25\xb2\x74\xfd\x80\xed\xed\x22\x7e\x3f\x60\xbb\x7a\x63\x99\x07\x3c\xa8\xe6\x7d\xc7\x16\x00\xfc\x98\xff\xfc\xbe\x9b\xc9\x1f\x7f\xf1\x57\x1d\xe9\x85\xcd\xbb\x3e\xec\x5f\x01\x00\x00\xff\xff\x7b\x95\x26\x62\xea\x00\x00\x00" func idtablestakingScriptsGet_candidate_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -3120,11 +3180,11 @@ func idtablestakingScriptsGet_candidate_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_candidate_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x69, 0xd6, 0x82, 0x37, 0x73, 0x6d, 0xfe, 0xcb, 0x3d, 0x37, 0x2e, 0xd4, 0x43, 0x65, 0x62, 0xfd, 0x2c, 0x85, 0xea, 0x4e, 0x93, 0x70, 0xa4, 0x6a, 0x4c, 0xd2, 0xd9, 0xf2, 0xea, 0xa3, 0xb2, 0xff}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x84, 0x34, 0x2c, 0xe4, 0x3e, 0x22, 0x7b, 0x2, 0x58, 0xff, 0x6d, 0xe6, 0x39, 0x29, 0x45, 0xd4, 0x5e, 0x50, 0x9d, 0xec, 0xf7, 0x45, 0xd8, 0xa8, 0x2f, 0x14, 0x2e, 0x64, 0x10, 0x35, 0x81, 0xf1}} return a, nil } -var _idtablestakingScriptsGet_current_tableCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4a\xc4\x40\x10\x87\xf1\x7e\x9f\xe2\x5f\xde\x35\x9e\xb5\xdd\xc9\x46\x58\x90\x2b\xdc\x6d\x44\x2c\x72\xc9\x64\x33\x98\xcc\x86\xd9\x59\x54\xc4\x77\x97\x80\xe5\x75\x5f\xf5\xe3\xe3\x75\x2b\x6a\x78\x5a\xca\x67\xf0\xa9\xbf\x2e\x14\xad\xff\x60\xc9\x98\xb4\xac\xb8\xff\x0a\xbe\xbb\xa4\x90\x5e\xd3\xf9\xf1\xb9\x3b\x7b\xff\xd2\xc5\xe8\xdc\xe9\x84\x34\x73\x45\x1d\x94\x37\x83\x92\x35\x95\x0a\x9b\x09\x43\x53\x25\x31\xf0\x48\x62\x6c\xdf\xb0\x5d\xc5\x42\x92\x6d\x76\x6e\x6b\x57\x4c\x4d\xb0\xf6\x2c\x87\xe3\x03\xde\xa2\x29\x4b\x7e\xc7\x8f\x03\xf0\x2f\xdd\xf8\xb9\xcb\x64\x7b\xd2\x78\x29\x23\x05\x5f\x0f\x47\xf7\xfb\x17\x00\x00\xff\xff\x4a\xf4\xfe\xa9\xbe\x00\x00\x00" +var _idtablestakingScriptsGet_current_tableCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xaa\x83\x40\x10\x45\xfb\xfd\x8a\x8b\x95\x36\xcf\xfe\xd5\xf2\xc0\xe6\x35\xda\x85\x14\x9b\x75\x5c\x87\xac\xb3\x32\x3b\x12\x42\xc8\xbf\x07\x21\x5d\xd2\x5d\xb8\x9c\xc3\xe1\x75\xcb\x6a\xf8\x4b\xf9\xd6\x77\xa3\xbf\x24\x1a\xcc\x5f\x59\x22\x66\xcd\x2b\xaa\xcf\xa3\x72\xae\x6d\x31\x2e\x5c\x50\x82\xf2\x66\x50\xb2\x5d\xa5\xc0\x16\x42\xd8\x55\x49\x0c\x3c\x91\x18\xdb\x1d\x76\xa0\x48\x24\xd1\x16\xe7\x7c\x08\x54\x4a\xed\x53\x6a\x30\xef\x82\xd5\xb3\xd4\xcd\x2f\x4e\x83\x29\x4b\x3c\xe3\xe1\x00\xbc\x8d\x5f\xaa\x7e\x22\xd9\x31\x69\xfa\xcf\x13\xf5\x5d\xa9\x1b\xf7\x7c\x05\x00\x00\xff\xff\x1e\x08\x43\x94\xc4\x00\x00\x00" func idtablestakingScriptsGet_current_tableCdcBytes() ([]byte, error) { return bindataRead( @@ -3140,11 +3200,11 @@ func idtablestakingScriptsGet_current_tableCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_current_table.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x58, 0x1e, 0x72, 0x94, 0xe0, 0x76, 0x87, 0xd9, 0x75, 0x4c, 0x72, 0xa3, 0xa1, 0x74, 0x9e, 0xa3, 0x3e, 0x29, 0x8a, 0xe4, 0xeb, 0x5e, 0x72, 0x24, 0x51, 0x5b, 0x77, 0xb4, 0xfb, 0xda, 0xf0, 0x72}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x2a, 0x6b, 0x96, 0x8d, 0x9a, 0x6c, 0xa5, 0xb8, 0x89, 0xda, 0x4d, 0x43, 0x19, 0x77, 0x6c, 0xda, 0x84, 0x85, 0xfc, 0xfa, 0xdc, 0x7f, 0x3a, 0xa7, 0x27, 0x23, 0x9a, 0x14, 0x5, 0xb7, 0x1e}} return a, nil } -var _idtablestakingScriptsGet_cut_percentageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4e\x85\x30\x14\x87\xf1\xbd\x4f\xf1\x1f\xef\x5d\xbc\x0e\xc6\xc1\x0d\x2d\x24\x24\xc6\x18\xa8\x83\xe3\x01\x0e\xd0\x00\xa7\xa4\x3d\x0d\x24\xc6\x77\x37\x26\x8e\xae\xdf\xf0\xe5\xe7\xb7\x3d\x44\x45\xb5\x86\xa3\xb6\x8e\xba\x95\x5b\xa5\xc5\xcb\x84\x31\x86\x0d\xf7\x67\x6d\xcb\x37\x57\xbb\x4f\x57\x3c\xbf\x96\x85\xb5\x4d\xd9\xb6\xc6\xdc\x6e\x70\xb3\x4f\x48\x7d\xf4\xbb\x22\xb2\xe6\x28\x09\x3a\x33\x3a\x5a\x49\x7a\x46\x18\x91\x94\x16\x1e\xa0\x61\x61\x49\xbf\x81\x20\x61\x60\x63\xf6\xdc\x61\xcc\x82\x8d\xbc\x5c\xae\x4f\xf8\xa8\xfc\xf9\xf8\x80\x2f\x03\xe0\x6f\xf6\x0f\xe9\x6e\x62\x6d\xf8\xa0\x38\xbc\x64\x7d\xe7\xd8\xb3\x28\x4d\x7c\xb9\x9a\xef\x9f\x00\x00\x00\xff\xff\x28\x6a\xf6\x9f\xc7\x00\x00\x00" +var _idtablestakingScriptsGet_cut_percentageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x8b\x83\x40\x10\x46\xfb\xfd\x15\x1f\x56\xda\x9c\xcd\x71\xc5\xb5\x77\x08\xe9\x42\x62\x7e\xc0\xb8\x8e\xba\xb8\xce\xca\xce\x88\x81\x90\xff\x1e\x02\xe9\x92\xf6\x3d\x78\xbc\xb0\xac\x29\x1b\x9a\x98\xf6\xc3\x7f\x4b\x5d\xe4\xb3\xd1\x1c\x64\xc4\x90\xd3\x82\xe2\x5d\x14\xce\xd5\x35\xda\x29\x28\xd4\xe7\xb0\x1a\x32\xdb\x96\x45\x61\x13\xa3\xa3\x48\xe2\x19\x69\x80\x1a\xcd\xdc\xc3\xd2\xcc\xa2\x4f\x40\x90\xd4\xb3\x73\xe4\x3d\xab\x96\x14\x63\x85\x61\x13\x2c\x14\xa4\xac\x7e\x71\x69\xc2\xf5\xe7\x1b\x37\x07\xe0\x15\xfd\x30\xf6\x35\xb2\x9d\x78\xa7\xdc\xff\x6d\x76\xe4\xec\x59\x8c\x46\x2e\x2b\x77\x7f\x04\x00\x00\xff\xff\x65\xa1\x14\x25\xcd\x00\x00\x00" func idtablestakingScriptsGet_cut_percentageCdcBytes() ([]byte, error) { return bindataRead( @@ -3160,11 +3220,11 @@ func idtablestakingScriptsGet_cut_percentageCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_cut_percentage.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa3, 0x9, 0x30, 0xa9, 0xd4, 0x7, 0x19, 0x3d, 0x43, 0x39, 0x32, 0xda, 0x6f, 0xaa, 0xf3, 0xcb, 0xa5, 0x4d, 0x97, 0x58, 0x23, 0x1b, 0xec, 0x30, 0x61, 0x49, 0x8e, 0x9, 0x33, 0x2a, 0x4d, 0x92}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0xe2, 0xb8, 0x9, 0x30, 0x55, 0xde, 0x80, 0x22, 0x1d, 0xce, 0xcd, 0x75, 0x1c, 0x49, 0x6c, 0xc0, 0xf4, 0x71, 0xba, 0x1a, 0x1f, 0x4, 0x99, 0x53, 0xe6, 0x65, 0xc4, 0xff, 0x2b, 0xe7, 0x62}} return a, nil } -var _idtablestakingScriptsGet_del_stake_requirementsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4a\xc6\x30\x14\xc5\xf1\x3d\x4f\x71\xc6\xef\x5b\xac\x83\x38\xb8\x55\xd2\x42\x41\x1d\xda\x38\x38\xa6\x7a\xdb\x5e\xda\x24\xf5\xe6\x06\x0b\xe2\xbb\x8b\xa8\xb8\x38\x1f\xf8\xff\x0e\x87\x3d\x89\xa2\xdd\xd2\x5b\x67\x9d\x1f\x37\x1a\xd4\xaf\x1c\x67\x4c\x92\x02\x2e\x8f\xce\x36\x0f\xae\x73\x4f\xae\xbe\xbd\x6b\x6a\x6b\xfb\x66\x18\x8c\xa9\x2a\xb8\x85\x33\xf2\xb3\xf0\xae\x10\xd2\x22\x31\x43\x17\x42\xe0\xc8\xa1\x04\x64\xf5\x2b\x41\xe8\xb5\xb0\x50\xa0\xa8\x98\x92\xe0\x85\x36\x9a\xbd\x26\xc9\xc6\xec\x65\xc4\x54\x22\x82\xe7\x78\x3a\xdf\xe0\xb1\xe5\xe3\xfa\x0a\xef\x06\xc0\x4f\xf2\x9f\x63\x17\x33\xa9\xfd\xad\xdc\x7f\x63\x5f\x13\xf5\x7f\xd4\xe9\x6c\x3e\x3e\x03\x00\x00\xff\xff\xc8\x81\xc5\x13\xda\x00\x00\x00" +var _idtablestakingScriptsGet_del_stake_requirementsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xbd\x8a\xc2\x40\x14\x46\xfb\x79\x8a\x8f\x54\x49\xb3\x69\x96\x2d\xb6\x0e\x01\x0b\x1b\x8d\x0f\x30\xc6\x9b\xe4\x92\xf9\x89\x77\xee\xa0\x20\xbe\xbb\x88\x8a\x85\xd6\x07\xce\x39\xec\x97\x28\x8a\xd6\xc5\xd3\xaa\xe9\xec\xde\xd1\x56\xed\xcc\x61\xc4\x20\xd1\xa3\xf8\x04\x85\x31\x75\x8d\x6e\xe2\x84\xd4\x0b\x2f\x0a\x21\xcd\x12\x12\x74\x22\x78\x0e\xec\xb3\x47\x52\x3b\x13\x84\x8e\x99\x85\x3c\x05\xc5\x10\x05\x07\x72\x34\x5a\x8d\x92\x8c\xb1\x7d\x4f\x29\x95\xd6\xb9\x0a\x43\x0e\xf0\x96\x43\x59\xfd\x63\xd7\xf2\xf9\xef\x17\x17\x03\xe0\xa9\xfe\xb2\xf7\x33\x92\x36\x2f\xdb\xfa\x11\xbd\x23\xda\xbc\x93\x65\x65\xae\xb7\x00\x00\x00\xff\xff\x64\x7c\x1f\x80\xe0\x00\x00\x00" func idtablestakingScriptsGet_del_stake_requirementsCdcBytes() ([]byte, error) { return bindataRead( @@ -3180,11 +3240,11 @@ func idtablestakingScriptsGet_del_stake_requirementsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_del_stake_requirements.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa3, 0xcb, 0xbc, 0x3f, 0x87, 0x66, 0x14, 0x66, 0x46, 0x5b, 0xef, 0xa7, 0x88, 0xb8, 0xb6, 0xbf, 0x9a, 0xbe, 0xfd, 0xbd, 0x7d, 0x8f, 0x1c, 0x9, 0xdd, 0x15, 0xb5, 0xca, 0xc4, 0x1, 0x76, 0xab}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1a, 0x91, 0xe2, 0x54, 0xf9, 0x96, 0x3e, 0xcc, 0xa2, 0xe6, 0x3c, 0x46, 0x6b, 0xe2, 0xf0, 0x7e, 0xa2, 0x0, 0xec, 0xf0, 0xd0, 0xa4, 0x98, 0xa9, 0x64, 0x92, 0xc, 0xd0, 0xe4, 0x47, 0x5f, 0x75}} return a, nil } -var _idtablestakingScriptsGet_delegators_below_minCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x55\x5f\x6b\xdb\x3e\x14\x7d\xf7\xa7\x38\x4f\xfd\x39\xf4\x87\xeb\xc1\xba\x07\xb3\x0c\x5a\xdc\x82\xa1\xeb\x60\xf1\x18\xa3\x94\x22\xd7\x72\x22\x62\x4b\x41\x92\x9b\xb2\x92\xef\x3e\xe4\x3f\xb1\x15\x2b\xe9\xe6\x97\x52\xdd\x73\xcf\x39\xf7\x5e\x5d\x85\x55\x1b\x21\x35\x6e\x4b\xb1\x4d\xe2\x94\x64\x25\x5d\x68\xb2\x66\x7c\x89\x42\x8a\x0a\xe1\x6b\x12\xdf\xdc\xa7\x49\xfa\x2b\xbd\xba\xbe\xbb\xb9\x8a\xe3\xef\x37\x8b\x85\xe7\x5d\x5c\x20\x5d\x31\x05\xf5\x2c\xd9\x46\xa3\x60\x3c\x57\x20\x65\x09\x51\x80\x80\x8b\x9c\xfe\xa7\x90\xd3\x92\x2e\x89\x16\x52\x61\xbb\x12\x20\x92\x42\x69\xb2\xa6\x39\x48\x26\x5e\x28\x7e\x53\x29\x0c\x53\x56\x6b\x64\xb4\x14\x5b\xe8\x15\x45\xc5\x38\xab\xea\xca\x30\x5d\x86\xb8\xbd\xfb\xf6\x13\x84\xe7\x90\x54\xd7\x92\x2b\x30\x5e\x08\x59\x11\xcd\x04\x37\x34\xb5\x36\x49\x95\xe7\x6d\xea\x0c\x4a\xcb\xfa\x59\x23\xee\x75\xaf\x0d\xe9\x57\xc6\x13\x5e\x08\xbc\x79\x1e\x00\x18\xdc\x0b\x91\xd0\x42\x93\x72\xd1\xd8\x89\xf0\xe3\x96\xbd\x7e\xfa\x38\x8d\xf7\x04\xc6\xd0\x01\xd6\x02\xf3\xba\xda\x8b\xaa\x08\x09\xd7\xc7\xc3\x3d\x67\x0b\xb3\x70\xfb\x86\x19\xc3\x03\xee\x61\x3a\x9d\x20\x1e\x43\x1f\x5b\x1a\xc6\x99\xf6\xa7\x56\x66\x78\x6b\xc2\xe6\x53\xb4\x2c\x82\x51\xe9\x98\x23\x0c\x42\x47\x78\x5a\xb9\x0b\x6a\x89\x61\x6e\x17\x7a\x02\xda\xb3\x1b\x4e\x1b\xe6\x6c\x01\xe6\x78\x78\x6c\x70\xbb\xa1\x61\x45\xcd\x41\xf2\x3c\x1d\x8a\xf1\x9f\xda\xfb\xd5\xcf\xe8\x9d\xc2\x27\x47\xe7\x6d\xfa\x11\xa1\xde\xcc\xbf\x68\x39\xbb\x78\x32\x7c\xda\xc3\xe4\x66\xfb\x13\xdd\x63\x7d\x3e\x11\x3c\xc7\x87\xf7\xf4\xcc\x34\xfc\xa7\x66\xf9\x22\xc7\x63\x61\x5f\xc7\x89\x27\xe7\x50\x03\xb2\xd9\x50\x9e\xfb\x86\x73\xd6\xe9\xef\xda\x3d\x36\xea\x15\x61\xdc\x37\x0f\x49\x12\x47\x58\x68\xc9\xf8\x72\x16\x1d\x5d\x6d\x93\x5e\x52\xdd\xbc\x3c\xcd\xd1\xdc\xe5\xf2\xbe\x8b\xee\x79\xdb\xbf\x33\x6f\x9f\x9f\x5b\xb7\xb9\x83\x0f\xfe\xd5\x80\xcc\x46\xb3\xc3\xdc\x6d\xec\x70\x19\x07\x9e\xa0\xa4\x7c\xa9\x57\x9d\x72\x21\xc6\xbb\x1f\x83\xf1\xb1\x91\xa1\x99\x9d\xc3\xe3\x05\xda\xf3\xb2\xab\xfc\x7f\x2c\x11\x8d\xff\xe9\x5c\x98\x6f\x5c\x55\x70\xb0\x5d\x9d\x72\xa0\xc5\x9a\x72\xd5\x1e\x8e\x52\x59\x01\x17\x02\x9f\x71\x19\x06\x21\xce\xce\xdc\xe1\x2f\xe6\x55\x19\xd5\xe8\x72\x61\x97\xd5\xd1\xcc\xfe\x2e\x65\xd8\x94\x93\xf8\x83\xed\x76\xd7\xda\x27\xef\xc6\xeb\xd2\xfe\x30\x59\x84\xde\xce\xfb\x13\x00\x00\xff\xff\xfd\x6d\x7d\x7d\x58\x07\x00\x00" +var _idtablestakingScriptsGet_delegators_below_minCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x55\x4d\x8b\xdb\x30\x10\xbd\xfb\x57\x3c\xf6\xb0\xb5\xd9\xe2\x4d\xa1\xdb\x83\x69\x7a\x28\x61\x21\xd0\x8f\x43\x52\x7a\x58\x96\x45\x89\xe5\x44\x44\x96\x82\x24\x6f\x4a\x97\xfc\xf7\x22\x7f\xc4\x52\xac\x7c\x54\x97\x10\xcd\x9b\x37\x6f\x66\x34\x63\x56\x6e\xa5\x32\x78\xe4\x72\x37\x9d\xcc\xc9\x82\xd3\x99\x21\x1b\x26\x56\x28\x94\x2c\x71\x33\x34\xdc\x44\xd1\xfd\x3d\xe6\x6b\xa6\xa1\x97\x8a\x6d\x0d\x0a\x26\x72\x0d\xc2\x39\x64\x01\x02\x21\x73\xfa\x4e\x23\xa7\x9c\xae\x88\x91\x4a\x63\xb7\x96\x20\x8a\x42\x1b\xb2\xa1\x39\xc8\x42\xbe\x52\xfc\xa5\x4a\x5a\xa6\x45\x65\xb0\xa0\x5c\xee\x60\xd6\x14\x25\x13\xac\xac\x4a\xcb\xf4\x30\xc2\xe3\xb7\x9f\xbf\x41\x44\x0e\x45\x4d\xa5\x84\x06\x13\x85\x54\x25\x31\x4c\x0a\x4b\x53\x19\xeb\x54\x46\x11\x59\x2e\xa9\xd6\x31\xe1\x3c\x81\x36\xaa\x5a\x1a\x4c\xba\xf8\x5f\x2d\xf9\x77\x26\xa6\xa2\x90\x78\x8b\x22\x00\x70\xf1\xaf\x44\xc1\x48\x43\xf8\xac\x96\x97\xe1\xd7\x23\xfb\xf3\xe9\xe3\x69\x5c\x47\x68\x85\x1e\xf9\x04\x9d\x44\x55\x1e\xc4\xe8\x0c\x53\x61\x2e\xc3\xba\x18\x0d\x3c\x88\x3f\x14\xd8\x26\xd6\xe3\x9f\x86\x2d\x4b\x27\x2e\xf4\xb9\xa1\x63\x82\x99\x78\x28\x2d\xc1\x5b\x6d\xb6\x47\x53\x5e\xa4\x4e\x69\x30\xc6\x28\x1d\x05\xcc\xc3\x8a\x84\xa0\x5e\x30\x8c\xfd\x84\xcf\x40\x3b\x76\xcb\xe9\xc3\x82\x25\xc0\x18\x4f\xcf\x35\x6e\x3f\x2c\x5c\x51\x09\x90\x3c\x9f\xf7\x49\xc5\x2f\xcd\xbb\xec\x7a\x78\xa1\x00\x83\xab\xbb\xc6\xfd\x42\xc0\x4e\xdc\xff\xc4\x0c\x56\xf5\xac\xf9\x3a\x2d\x83\xc9\x88\x07\xf1\x4f\xd5\xff\x8c\xf1\x0e\x1f\xae\x8d\x6b\xbb\x15\xbf\xd4\xc3\x9c\x05\x56\x8f\xff\x5c\x07\xda\x82\x4d\x4f\xc9\x76\x4b\x45\x1e\x5b\xce\xa4\xd5\xb1\xf7\xf7\x82\x55\x51\x12\x26\x62\xbb\xa0\xa6\x93\x0c\x33\xa3\x98\x58\x25\xd9\xc9\x55\x61\x69\x38\x35\xf5\x46\xab\xaf\xc6\x21\xb5\x3f\x5a\xeb\x81\xb7\xf9\x4d\xa2\x83\x7f\xee\xbd\xfa\x16\xde\xe7\xa1\x7b\xe4\xc2\xe9\x29\xc6\x61\x61\xc7\x43\xdb\xf3\xa4\x9c\x8a\x95\x59\xb7\x91\x0b\xe9\xee\x88\x09\x98\x70\x85\xf4\x45\x6d\x15\x9e\x4e\xd0\xef\x9b\x9f\xe5\x7b\x37\x44\xe6\xfe\x69\x55\xd8\xe3\x66\x95\x1e\x4d\x5f\x1b\x39\x35\x72\x43\x85\x6e\x2e\x1d\x57\x56\x20\x84\xc0\x67\x3c\x8c\xd2\x11\x6e\x6f\xc3\xe6\x2f\x76\xfb\x38\x39\x86\x54\xf8\x69\xb5\x34\xc9\x75\x2e\xfd\xe4\x9c\xc5\x1f\x4d\x7d\x38\xd7\xce\x79\xef\x8e\x4f\xf3\xc1\xf3\x08\xa3\x7d\xf4\x2f\x00\x00\xff\xff\xb6\xa7\x8d\x2b\xae\x07\x00\x00" func idtablestakingScriptsGet_delegators_below_minCdcBytes() ([]byte, error) { return bindataRead( @@ -3200,11 +3260,11 @@ func idtablestakingScriptsGet_delegators_below_minCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_delegators_below_min.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc1, 0x3e, 0x51, 0x9d, 0xc6, 0x98, 0x72, 0xb, 0x31, 0x4f, 0x85, 0x6c, 0xe1, 0x1, 0x92, 0xec, 0x81, 0x38, 0x9b, 0x8a, 0x2f, 0xe3, 0xaf, 0xbc, 0x6a, 0xf9, 0x17, 0xd9, 0xca, 0x39, 0xc7, 0xb7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x25, 0x96, 0x53, 0x67, 0x6, 0x66, 0xfa, 0x53, 0xbc, 0xa1, 0x1d, 0x59, 0xf, 0x29, 0xe, 0x3a, 0x37, 0x82, 0x68, 0x33, 0x3e, 0xb1, 0x9e, 0xd9, 0xc5, 0x5d, 0xf5, 0x2b, 0xab, 0x83, 0x17, 0x5}} return a, nil } -var _idtablestakingScriptsGet_node_committed_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\xc3\x30\x10\x46\x77\xfd\x8a\x6f\x6c\x96\xa4\x43\xe9\x10\xe8\x90\x56\x0e\x08\x4a\x86\x5a\x1d\x3a\xca\xf1\x39\x11\xb6\xee\x8c\x74\xa6\x81\xd2\xff\x5e\x12\x17\x4f\x99\x0e\xbe\xe3\x3d\x5e\x4c\xa3\x64\xc5\x7e\x90\x6f\x67\x7d\x68\x06\xaa\x35\xf4\x91\x4f\xe8\xb2\x24\x3c\x5e\x9c\xad\x0e\xde\xf9\x2f\xbf\x7b\x7d\xaf\x76\xd6\x7e\x54\x75\x6d\xcc\x66\x03\x7f\x8e\x05\xe5\x98\xe3\xa8\xc8\xa4\x53\xe6\x02\x3d\x13\x9a\x30\x04\x3e\x12\xa4\x43\xd1\xd0\x53\x0b\x95\x9e\xb8\x5c\x87\x00\x96\x96\x8c\x19\xa7\x06\xdd\xc4\x48\x21\xf2\xc3\x75\x72\x76\x8b\x5a\x73\xe4\xd3\x6a\x8b\xcf\x7d\xbc\x3c\x3f\xe1\xc7\x00\xc0\x40\x7a\x83\x1c\x77\x82\x97\x3b\xa1\xeb\xc3\xff\x77\x11\xcd\x77\x75\xc3\xe7\xb2\xc5\xb0\x9e\x5b\xde\x24\xa5\xa8\x4a\xad\xf9\xfd\x0b\x00\x00\xff\xff\xd7\xe0\x3c\x12\x01\x01\x00\x00" +var _idtablestakingScriptsGet_node_committed_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6a\x03\x41\x0c\x45\xfb\x39\xc5\xc7\x95\xb7\xb1\x9b\x90\xc2\x90\x2a\xc6\xb0\x4d\x1a\x3b\x07\x90\x67\x35\xb6\xd8\x19\xc9\xcc\xc8\x24\x10\x72\xf7\xe0\xdd\xb0\x4d\x52\x09\xf4\xf8\x8f\x27\xe5\x66\xd5\x71\xc8\xf6\xd1\xef\x4f\x74\xce\x7c\x74\x1a\x45\x2f\x48\xd5\x0a\x56\x7f\xc1\x2a\x84\xed\x16\xa7\xab\x34\xb4\x58\xe5\xe6\xa8\xec\xf7\xaa\x0d\x7e\x65\x9c\x29\x93\x46\x86\x25\x34\xa7\x91\x07\xb8\x8d\xac\xed\xf1\x20\xa8\x0d\x1c\x02\xc5\xc8\xad\xad\x29\xe7\x0e\xe9\xae\x28\x24\xba\x7e\xa0\x7e\xbf\xc3\xd1\xab\xe8\xa5\xdb\xe1\xfd\x20\x9f\xcf\x4f\xf8\x0a\x00\x90\xd9\xa7\x71\xaf\xc9\xf0\xf2\x4f\xee\xe6\xed\x97\x2e\xa2\xf9\x76\xd3\x7c\x2e\x5c\x0c\x9b\xb9\xe9\xd5\x4a\x11\x77\x1e\xc2\xf7\x4f\x00\x00\x00\xff\xff\x76\x78\x67\x79\x07\x01\x00\x00" func idtablestakingScriptsGet_node_committed_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3220,11 +3280,11 @@ func idtablestakingScriptsGet_node_committed_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_committed_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x11, 0x65, 0x3, 0x17, 0x42, 0x11, 0x30, 0xfa, 0xb9, 0xb6, 0xd9, 0x8a, 0x5c, 0x41, 0xaa, 0xe7, 0xc4, 0xbb, 0x42, 0xf5, 0xe9, 0x39, 0x84, 0x75, 0x26, 0xa5, 0x46, 0x5e, 0xdc, 0xef, 0xfe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0xb9, 0x2, 0x2f, 0xff, 0xa2, 0x25, 0x20, 0x27, 0xda, 0xa3, 0xde, 0xa5, 0x91, 0xdb, 0x43, 0xb6, 0x80, 0x4c, 0x45, 0x3d, 0x15, 0x8c, 0xd4, 0x75, 0x99, 0x3, 0xed, 0x25, 0x51, 0x1b, 0x2c}} return a, nil } -var _idtablestakingScriptsGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xce\x31\x4b\xc5\x30\x14\xc5\xf1\x3d\x9f\xe2\x8c\x76\xb1\xce\xdd\x2a\xa9\x10\x90\x0e\x26\x8b\x63\x6a\xd3\xf6\x62\x7a\x53\x92\x1b\x14\xc4\xef\x2e\xc5\xc7\x9b\x1e\x6f\x3a\xcb\x9f\x1f\x87\xf6\x23\x65\xc1\x4b\x4c\x5f\x46\x3b\x3f\xc5\x60\xc5\x7f\x12\xaf\x58\x72\xda\xf1\xf4\x6d\xf4\x30\x3a\xe3\xde\x5d\xff\xfc\x3a\xf4\x5a\xbf\x0d\xd6\x2a\xd5\xb6\x70\x1b\x15\x94\x8f\x4c\x87\x60\x0d\x52\xe0\x63\x84\x6c\x01\xc4\x4b\x82\x9f\x52\x15\x78\x70\x9a\x03\x3c\xcf\xc8\x41\x6a\xe6\x02\x12\xa5\x8e\x3a\x61\xa9\x8c\xdd\x13\x3f\x9c\x85\xd1\x1d\xac\x64\xe2\xb5\xe9\x6e\x7c\x79\x1c\xcf\xe6\x64\x7f\x14\x80\x8b\x75\x2f\xbc\xaa\xff\xdb\xa8\x5f\xf5\x17\x00\x00\xff\xff\x58\x6d\x78\x81\xea\x00\x00\x00" +var _idtablestakingScriptsGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xce\xb1\x0e\x82\x40\x0c\xc6\xf1\xbd\x4f\xf1\x85\x09\x16\xd9\x99\x89\x09\x8b\x0b\xbc\x40\x81\x03\x1a\x8f\x1e\xb9\x2b\x71\x30\xbe\xbb\x21\x1a\x17\x8d\x53\x87\xfe\xf3\xcb\x27\xeb\x16\xa2\xe1\xec\xc3\xad\xa9\x3b\xee\xbd\x6b\x8d\xaf\xa2\x33\xa6\x18\x56\x64\xdf\x8f\x8c\xa8\x2c\xd1\x2d\x92\x90\x86\x28\x9b\x61\x76\x96\xc0\xde\xc3\x16\x07\xd1\x29\x80\xfb\xb0\x1b\x18\x1a\x46\x07\xd6\x11\xd1\xd9\x1e\x35\x41\x8c\x88\x87\xc1\xa5\x94\xb3\xf7\x05\xa6\x5d\xb1\xb2\x68\x7e\x94\x4d\x5d\xa1\xb5\x28\x3a\x17\xd5\x8f\x45\xa7\xcb\xd1\x1c\xfc\x9d\x00\xbc\xcd\x7f\xe1\x47\x7d\xdd\x82\x1e\xf4\x0c\x00\x00\xff\xff\x18\xd8\x93\xc8\xf0\x00\x00\x00" func idtablestakingScriptsGet_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -3240,11 +3300,11 @@ func idtablestakingScriptsGet_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x5c, 0x8d, 0xac, 0x80, 0x53, 0x4, 0xd4, 0x7f, 0x6, 0x1f, 0xa9, 0x73, 0x36, 0xfa, 0x49, 0x9b, 0x3, 0x97, 0x47, 0x1b, 0xb3, 0x5b, 0x19, 0x13, 0x20, 0x54, 0xd8, 0x98, 0xec, 0x23, 0x73}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xba, 0x21, 0xcd, 0xb7, 0xd2, 0xc, 0x46, 0xd2, 0xc3, 0x2b, 0x49, 0xac, 0x98, 0xc7, 0x5a, 0x8, 0x8e, 0xaa, 0xfe, 0xdd, 0x85, 0xe6, 0x93, 0x64, 0x53, 0x63, 0xc5, 0x65, 0xe3, 0xef, 0xa3, 0x39}} return a, nil } -var _idtablestakingScriptsGet_node_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\x31\x6b\xf3\x30\x10\x86\x77\xfd\x8a\x97\x0c\x1f\xf6\x92\x7c\x73\x68\x1b\xdc\x38\x05\x43\x09\xa1\xf1\xd2\x51\xb6\xcf\x89\x5a\x45\x67\xa4\x13\x69\x09\xf9\xef\xc5\x11\xa5\x19\xda\x52\x4d\x42\x7a\xef\xb9\xbb\xc7\x1c\x06\xf6\x82\x07\xcb\xc7\xaa\xac\x75\x63\x69\x2b\xfa\xd5\xb8\x1d\x7a\xcf\x07\xfc\x7f\xab\xca\xd5\xba\xae\xea\xe7\xba\xb8\x7f\x5c\x15\x65\xf9\xb4\xda\x6e\x95\x9a\xcd\x50\xef\x4d\x40\x68\xbd\x19\x04\x3b\x92\x00\x6d\x2d\x64\x4f\x30\xae\x67\xe8\x86\xa3\x40\xc3\x71\x47\xd0\xae\x83\x27\x89\xde\x05\x18\x51\x6a\x88\x0d\xfa\xe8\x70\xd0\xc6\x65\xba\xeb\x3c\x85\x30\x47\x91\x2e\xf9\xfc\x9b\x69\xa6\x6b\xee\xa8\x1a\xc1\x27\xa5\x00\xc0\x92\x5c\xd8\xe3\x3f\x79\xdc\x8e\x23\x14\x6d\xcb\xd1\xc9\x27\x31\xbf\x04\xc7\x33\xdd\x91\x2c\xf5\xa0\x1b\x63\x8d\xbc\xdf\xfc\x3b\xfd\xd0\x20\xc1\x36\xb1\xb1\xa6\x3d\xdf\x65\x7f\x48\x6d\xb4\xec\xaf\xfa\x34\xec\x3d\x1f\xb3\xaf\x97\xc5\x02\x83\x76\xa6\xcd\x26\x4b\x8e\xb6\x83\x63\x41\x0a\xc1\x53\x4f\x9e\x5c\x4b\x10\x4e\x9a\x42\xda\x85\x9b\x17\x6a\x65\x92\xa7\x45\x93\xb7\xdf\x94\x64\x63\x71\x55\xce\xaf\x7c\x4c\x4d\x97\xab\xb3\xfa\x08\x00\x00\xff\xff\xc3\x58\x0f\x27\xdd\x01\x00\x00" +var _idtablestakingScriptsGet_node_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcd\x6a\xeb\x30\x10\x85\xf7\x7a\x8a\x83\x17\x17\x7b\xe3\xec\xc3\x6d\x43\x68\x28\x64\x53\x02\xcd\x0b\x8c\xe5\x71\x32\xad\xa2\x31\xd2\x98\x2c\x42\xde\xbd\x38\xa2\xb4\xd0\x1f\xaa\x95\x60\x46\xe7\x3b\xfa\xe4\x34\x6a\x32\x3c\x06\x3d\x6f\x37\x7b\xea\x02\x3f\x1b\xbd\x4a\x3c\x60\x48\x7a\x42\xf5\x75\x50\x39\xb7\x58\x60\x7f\x94\x8c\xec\x93\x8c\x86\x03\x5b\x06\x85\x00\x3b\x32\x24\x0e\x0a\xea\x74\x32\x10\xa2\xf6\x0c\x8a\x3d\x12\xdb\x94\x62\x86\x98\x73\xe4\x3d\xe7\x5c\x53\x08\x0d\x86\x29\xe2\x44\x12\x6b\xea\xfb\xc4\x39\x2f\xb1\x2e\x97\x66\xf9\x4d\xa7\xf6\x49\x7b\xde\xce\x80\x8b\x73\x00\x10\xd8\x6e\x8c\x79\xce\x09\x77\x73\x95\xb5\xf7\x3a\x45\x7b\x4f\x6c\x6e\x8b\xf3\x69\x3d\x8d\xd4\x49\x10\x13\xce\x6d\xa7\x29\xe9\xf9\xff\xbf\xcb\x0f\x98\x12\xb9\x9b\xba\x20\xfe\x7a\x5f\xff\x61\x6b\x47\x76\xfc\xa0\xad\x56\x18\x29\x8a\xaf\xab\x07\x9d\x42\x8f\xa8\x86\xc2\x44\xe2\x81\x13\x47\xcf\x30\x2d\x8a\x72\xe9\xaf\xdd\x0b\x7b\xab\x9a\xf2\xb9\xe2\xec\x37\x0d\xf5\xfc\x78\xbb\x59\x7e\x72\xd0\x4a\xdf\xb8\xab\x7b\x0b\x00\x00\xff\xff\x31\x19\xe4\x4c\xd7\x01\x00\x00" func idtablestakingScriptsGet_node_info_from_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -3260,11 +3320,11 @@ func idtablestakingScriptsGet_node_info_from_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_info_from_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0x2b, 0xf2, 0x88, 0x52, 0x81, 0x46, 0x3d, 0x1, 0x1f, 0x5a, 0x48, 0x68, 0x9, 0xa3, 0x66, 0x4c, 0x24, 0xf3, 0x75, 0xdb, 0x88, 0x8a, 0x63, 0x6f, 0x11, 0x90, 0x24, 0xf0, 0x7a, 0xd8, 0xd0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0xd7, 0x3, 0x14, 0x4b, 0x6c, 0x3a, 0x16, 0x47, 0x8e, 0xdb, 0x75, 0x1b, 0x8, 0xe, 0x87, 0x83, 0x39, 0x57, 0x8d, 0x2b, 0x31, 0x72, 0x62, 0x9d, 0x31, 0xbc, 0x7e, 0xc6, 0xbe, 0x92, 0xeb}} return a, nil } -var _idtablestakingScriptsGet_node_initial_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\x41\x4b\xc4\x30\x10\x05\xe0\x7b\x7e\xc5\x3b\xba\x97\x5d\x0f\xe2\x61\xc1\xc3\x4a\x2a\x04\xa4\x07\x13\x11\x8f\xa9\x26\xed\x60\x3a\x29\xe9\x94\x0a\xe2\x7f\x17\xdb\xd2\xd3\x9e\x06\xe6\xf1\x1e\x1f\xf5\x43\x2e\x82\xa7\x94\x67\xa3\x9d\x6f\x52\xb0\xe2\xbf\x88\x5b\xc4\x92\x7b\xdc\x7e\x1b\x5d\xd5\xce\xb8\x77\x77\x79\x7c\xae\x2e\x5a\xbf\x54\xd6\x2a\x75\x3a\xc1\x75\x34\x62\xfc\x28\x34\x08\x4a\x90\xa9\xf0\x08\xe9\x02\x88\x49\xc8\x27\xcc\x81\xda\x4e\x90\x23\x3c\x38\x7f\x06\xa5\x86\xa9\x41\x9c\x18\xbd\x27\xbe\xf9\x7f\x19\x7d\x86\x95\x42\xdc\x1e\xce\x78\x35\x2c\xf7\x77\xf8\x51\x00\x90\x82\x2c\x25\xc3\x31\xe3\xe1\x0a\xef\x58\x6f\xe9\x3e\xb4\xde\xc3\x52\x5f\x3d\xfb\xc2\x71\x33\xbd\x2d\x24\xf5\xfb\x17\x00\x00\xff\xff\x4a\xf0\xca\x23\xf5\x00\x00\x00" +var _idtablestakingScriptsGet_node_initial_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\x8a\x84\x30\x14\x45\xfb\x7c\xc5\xc5\x4a\x1b\x6d\x96\x2d\x84\xed\x64\x21\xcd\x36\xba\x6c\x9d\x75\x12\x7d\x4c\x7c\x91\xe4\x89\xc5\x30\xff\x3e\x8c\x8a\xcd\x4c\x75\x8b\xc3\x3d\x1c\x9a\xe6\x10\x05\xdf\x3e\xac\xba\xe9\xcc\xbf\xb7\xad\x98\x2b\xf1\x00\x17\xc3\x84\xec\x15\x64\x4a\x55\x15\xba\x91\x12\x52\x1f\x69\x16\x44\x2b\x4b\xe4\x04\x19\x2d\x88\x49\xc8\x78\xac\x96\x86\x51\x10\x1c\x0c\x38\x5c\xac\x52\xa6\xef\x6d\x4a\xb9\xf1\xbe\x80\x5b\x18\x93\x21\xce\x9f\x48\x37\x35\x5a\x89\xc4\x43\x51\xe3\x57\xb3\x7c\x7e\xe0\xa6\x00\xc0\x5b\xd9\xce\x9a\x5d\xc0\xd7\x9b\xc8\xf2\xe7\xa0\xa7\x68\xdf\x62\xbb\xef\x5d\xa7\xa1\x3c\xda\xfe\xb6\x34\x75\x7f\x04\x00\x00\xff\xff\x7c\x2d\x7f\xbb\xfb\x00\x00\x00" func idtablestakingScriptsGet_node_initial_weightCdcBytes() ([]byte, error) { return bindataRead( @@ -3280,11 +3340,11 @@ func idtablestakingScriptsGet_node_initial_weightCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_initial_weight.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf, 0xc0, 0x17, 0x67, 0x2c, 0xf0, 0xf8, 0xba, 0x42, 0x20, 0x9f, 0x54, 0x8b, 0x43, 0x3, 0x86, 0x8c, 0x2b, 0xbf, 0x6b, 0x3f, 0xa2, 0x5f, 0x47, 0xbc, 0x87, 0xa7, 0x24, 0x30, 0xc2, 0x95, 0xf5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0x31, 0x8c, 0x67, 0xbd, 0xca, 0x66, 0x6e, 0xa, 0xa, 0x1, 0x6b, 0x1f, 0xf3, 0x67, 0xaf, 0xa1, 0x6d, 0x22, 0xeb, 0xb9, 0xd0, 0xa7, 0x45, 0xd8, 0x2b, 0x75, 0xb2, 0x1d, 0xfe, 0xb1, 0x92}} return a, nil } -var _idtablestakingScriptsGet_node_networking_addrCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x41\x4b\xc4\x30\x10\x46\xef\xf9\x15\xdf\xd1\xbd\xec\x7a\x16\x3c\x54\x52\x21\x20\x7b\x30\xb9\x78\x4c\x6d\xd2\x06\xdb\x49\x99\x4c\xa9\x20\xfe\x77\xb1\xad\xf5\xb2\xa7\x19\x66\x78\x8f\x97\xc6\x29\xb3\xe0\x79\xc8\x8b\xd1\xce\x37\x43\xb0\xe2\x3f\x12\x75\x88\x9c\x47\xdc\x7f\x1a\x5d\x5f\x9d\x71\x6f\xae\x7a\x7a\xa9\x2b\xad\x5f\x6b\x6b\x95\xba\x5c\xe0\xfa\x54\x50\xde\x39\x4d\x02\x0e\x32\x33\x15\x48\x1f\x40\x41\x96\xcc\xab\xa2\x6a\x5b\x0e\xa5\x20\x47\x78\x50\x6e\x83\x52\xd3\xdc\x20\xce\x84\xd1\x27\xba\xfb\x3d\x19\xfd\x00\x2b\x9c\xa8\x3b\xfd\x2d\xf8\x52\x00\x30\x04\x59\x21\x43\x31\xe3\xf1\x46\xe2\xf9\xba\x7f\x0f\xd1\x36\x4f\x2b\xbe\x35\x1d\x86\xf3\x7f\xd7\x9e\xa5\xbe\x7f\x02\x00\x00\xff\xff\xe4\xf6\x2e\xea\xfd\x00\x00\x00" +var _idtablestakingScriptsGet_node_networking_addrCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\x6a\x84\x40\x10\x86\xfb\x7d\x8a\x1f\x2b\x6d\xb4\x0f\xa4\x08\x48\xc0\x26\x8d\xbe\xc0\x46\x67\x75\xc9\x3a\x2b\xb3\x23\x16\x21\xef\x1e\x4e\x3d\xaf\xb8\xab\x66\xe0\xe3\xff\xf8\xfc\xbc\x44\x51\x7c\x86\xb8\x35\x75\x67\xbf\x03\xb5\x6a\x7f\x3c\x8f\x70\x12\x67\x64\xcf\x20\x33\xa6\xaa\xd0\x4d\x3e\x21\xf5\xe2\x17\x85\x90\xae\xc2\x09\x3a\x11\x98\x74\x8b\xb2\x0b\x3e\x86\x41\x28\x25\x44\x07\x0b\x8e\x03\x19\x63\xfb\x9e\x52\xca\x6d\x08\x05\xdc\xca\x98\xad\xe7\xfc\x86\x9a\xfa\x0d\xad\x8a\xe7\xb1\xb8\x3f\xf8\x35\x00\x10\x48\xf7\x71\xc3\x2e\xe2\xfd\x45\x68\xf9\x75\xd2\x4b\x74\xdc\x62\x9f\x1f\x6d\x97\xa1\x7c\xf4\x9d\x79\xe6\xef\x3f\x00\x00\xff\xff\x9b\x3e\x96\x87\x03\x01\x00\x00" func idtablestakingScriptsGet_node_networking_addrCdcBytes() ([]byte, error) { return bindataRead( @@ -3300,11 +3360,11 @@ func idtablestakingScriptsGet_node_networking_addrCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_networking_addr.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x77, 0x9c, 0xbc, 0xa2, 0xdd, 0xeb, 0xde, 0xcd, 0xad, 0x72, 0x18, 0xa9, 0x16, 0x54, 0x32, 0xe6, 0x4, 0xd9, 0x5a, 0x2f, 0xed, 0x4e, 0x90, 0x88, 0x2, 0x16, 0x9, 0x5c, 0xe3, 0x45, 0x8c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa8, 0x91, 0xae, 0x4, 0xd4, 0x58, 0xda, 0xbc, 0x54, 0xfe, 0xdd, 0xf4, 0x99, 0x87, 0x9a, 0xe2, 0x69, 0xe0, 0xca, 0xcf, 0xf, 0xc2, 0x5d, 0x7e, 0xa9, 0x2b, 0xd8, 0x99, 0xca, 0xcd, 0x39, 0xf6}} return a, nil } -var _idtablestakingScriptsGet_node_networking_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\x4f\x85\x30\x10\x87\xf7\xfe\x15\xbf\xd1\xb7\xbc\xe7\x6c\xe2\x80\x29\x26\x8d\x86\xc1\x76\x71\x2c\x7a\x85\x06\xb8\x92\x72\x04\x89\xf1\x7f\x37\x82\xe2\xf2\xa6\xbb\xdc\xe5\xfb\xf2\xc5\x61\x4c\x59\xf0\xd8\xa7\xc5\x68\xe7\xeb\x9e\xac\xf8\x2e\x72\x83\x90\xd3\x80\xdb\x0f\xa3\xcb\xca\x19\xf7\xea\x8a\x87\xe7\xb2\xd0\xfa\xa5\xb4\x56\xa9\xcb\x05\xae\x8d\x13\xa6\xb7\x1c\x47\x41\x26\x99\x33\x4f\x90\x96\xc0\x24\x4b\xca\x9b\xa2\xa3\x15\x29\xc0\x83\xd3\x3b\x29\x35\xce\x35\xc2\xcc\x18\x7c\xe4\x9b\x9f\x93\xd1\x77\xb0\x92\x23\x37\xa7\xbf\x05\x9f\x0a\x00\x7a\x92\x0d\x32\x1c\x12\xee\xaf\xe4\x9d\xab\xdf\xef\x21\xda\xe7\x69\xc3\xf7\x9e\xc3\x70\xfe\x6f\x7a\xa2\x55\x7d\x7d\x07\x00\x00\xff\xff\xd1\xf6\x05\xda\xf5\x00\x00\x00" +var _idtablestakingScriptsGet_node_networking_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xaa\x83\x40\x10\x45\xfb\xfd\x8a\x8b\x95\x36\xda\x3f\x78\x9d\x3c\x90\x07\x69\xf4\x07\x36\x66\x56\x17\xd7\x59\xd9\x1d\x11\x09\xf9\xf7\x10\x4d\x4c\x91\x54\x33\x70\xb8\x87\x63\xc7\xc9\x07\xc1\x9f\xf3\x4b\x55\x36\xfa\xec\xa8\x16\x3d\x58\xee\x60\x82\x1f\x91\x7c\x82\x44\xa9\xa2\x40\xd3\xdb\x88\xd8\x06\x3b\x09\x02\xc9\x1c\x38\x42\x7a\x02\x93\x2c\x3e\x6c\x82\x81\x56\x78\x03\x0d\xf6\x17\x52\x4a\xb7\x2d\xc5\x98\x6a\xe7\x32\x98\x99\x31\x6a\xcb\xe9\x03\x55\xe5\x0f\x6a\x09\x96\xbb\xec\xf5\xe0\xaa\x00\xc0\x91\x6c\xe3\x8a\x8d\xc7\xef\x97\xc8\xfc\xf4\xa4\x87\x68\xbf\xd9\x36\xdf\xbb\x0e\x43\xfe\x6e\xfb\xa7\x55\xdd\xee\x01\x00\x00\xff\xff\x95\x72\xe4\x3d\xfb\x00\x00\x00" func idtablestakingScriptsGet_node_networking_keyCdcBytes() ([]byte, error) { return bindataRead( @@ -3320,11 +3380,11 @@ func idtablestakingScriptsGet_node_networking_keyCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_networking_key.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xba, 0x39, 0x41, 0x31, 0x6, 0x4d, 0x30, 0xeb, 0xd3, 0x9d, 0xc8, 0x3f, 0xee, 0x5a, 0x9, 0x3, 0x4c, 0x73, 0xa0, 0xfe, 0x29, 0x92, 0x56, 0xea, 0xc3, 0x25, 0x7c, 0x59, 0x6f, 0xb3, 0xa9, 0xac}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2a, 0x80, 0xca, 0xa7, 0xf8, 0xbc, 0x50, 0xe7, 0x5b, 0x44, 0x46, 0xe3, 0x38, 0x25, 0x5d, 0x5f, 0xfe, 0x21, 0x3, 0xbd, 0xd6, 0x4a, 0x73, 0x41, 0x70, 0x5d, 0x8f, 0xbc, 0x57, 0x97, 0xf6, 0x77}} return a, nil } -var _idtablestakingScriptsGet_node_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\x31\x6b\xc3\x30\x10\x05\xe0\x5d\xbf\xe2\x8d\xcd\x92\x74\x28\x1d\x02\x1d\x52\xe4\x80\xa0\x64\x88\xd5\xa1\xa3\x1c\x9f\x13\x11\xf9\x64\x4e\x67\x12\x28\xfd\xef\x25\x71\xf0\x94\xe9\xe0\x1d\xef\xf1\xc5\x7e\xc8\xa2\xd8\xa6\x7c\x71\xd6\x87\x26\x51\xad\xe1\x1c\xf9\x88\x4e\x72\x8f\xd7\xab\xb3\xd5\xce\x3b\xff\xe3\x37\x9f\x5f\xd5\xc6\xda\x7d\x55\xd7\xc6\xac\x56\xf0\xa7\x58\x50\x0e\x12\x07\x85\x90\x8e\xc2\x05\x7a\x22\x34\x21\x05\x3e\x10\x72\x07\xa1\x4b\x90\x96\x5a\x68\x3e\x13\x97\x5b\x14\xc0\xb9\x25\x63\x86\xb1\x41\x37\x32\xfa\x10\xf9\xe5\x16\x39\xbb\x46\xad\x12\xf9\xb8\x58\xe3\x7b\x1b\xaf\xef\x6f\xf8\x35\x00\x90\x48\xef\x25\xc7\x5d\xc6\xc7\x13\xea\x72\xf7\xf8\xce\x43\xd3\x5d\xdc\xeb\x93\x6d\x5e\x58\x4e\x96\xfd\x83\x66\xfe\xfe\x03\x00\x00\xff\xff\x1e\xee\x86\x4b\x02\x01\x00\x00" +var _idtablestakingScriptsGet_node_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x3d\x6a\xc3\x40\x10\x46\xfb\x3d\xc5\x87\x2b\xab\xb1\x9b\x90\xc2\x90\xce\x18\xd4\xa4\x88\x9d\x03\x8c\x57\xb3\xf6\xa2\xd5\xac\x98\x1d\xa1\x40\xc8\xdd\x83\x7e\x50\x93\x54\x03\xf3\xf8\x1e\x2f\x76\x7d\x56\xc3\x25\xe5\xb1\x3e\xdf\xe8\x9e\xf8\x6a\xd4\x46\x79\x20\x68\xee\xb0\xfb\x0b\x76\xce\x1d\x8f\xb8\x3d\x63\x41\xf1\x1a\x7b\x83\xb2\x0d\x2a\x05\xf6\x64\xdc\x29\x91\x78\x46\x0e\x50\x1e\x49\x1b\x6e\x60\xb9\x65\x29\xd3\x8b\x20\xb9\x61\xe7\xc8\x7b\x2e\x65\x4f\x29\x55\x08\x83\xa0\xa3\x28\xfb\x09\xd5\xe7\x13\xae\xa6\x51\x1e\xd5\x09\x9f\x97\xf8\xf5\xfa\x82\x6f\x07\x00\x89\x6d\x1e\xd7\x12\x32\xde\xfe\x09\x3e\xbc\xaf\x74\x13\x2d\xb7\x9a\xe7\x4b\xe3\x66\x38\x2c\x4d\x1f\x6b\xa2\xfb\xf9\x0d\x00\x00\xff\xff\xf4\x1f\x63\x6a\x08\x01\x00\x00" func idtablestakingScriptsGet_node_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3340,11 +3400,11 @@ func idtablestakingScriptsGet_node_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x91, 0x31, 0x52, 0xe3, 0xb5, 0xc6, 0x8e, 0x86, 0x7b, 0xee, 0xce, 0x3f, 0x8f, 0x80, 0x32, 0xbe, 0x41, 0xf5, 0x1, 0x7, 0xf8, 0x80, 0x7c, 0xca, 0x2, 0x28, 0x8, 0x5c, 0x7c, 0x30, 0xd5, 0x56}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x9a, 0xcb, 0xd1, 0x44, 0xce, 0xa6, 0xa9, 0xb, 0xf5, 0x69, 0x8, 0x75, 0x31, 0x3d, 0xa4, 0xfe, 0x77, 0x25, 0x7, 0x2e, 0x9a, 0x2a, 0xe8, 0xf2, 0x14, 0x6d, 0x39, 0x96, 0x0, 0x13, 0x24}} return a, nil } -var _idtablestakingScriptsGet_node_roleCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\x85\x30\x14\x46\xf7\xfc\x8a\x6f\xac\x8b\x76\x2c\x42\x07\x4b\x2c\x04\x8a\x43\x93\x0e\x1d\x63\x9b\x68\x68\xbc\x91\x78\xa5\x85\xf2\xfe\xfb\x43\x7d\x38\xbd\xe9\xc2\xfd\x38\x87\x13\xa6\x39\x65\xc6\x6b\x4c\xbf\x4a\x1a\xdb\x47\xa7\xd9\xfe\x04\x1a\xe0\x73\x9a\xf0\xf8\xa7\x64\xdb\x19\x65\x3e\x4d\xf3\xf2\xd6\x36\x52\xbe\xb7\x5a\x0b\x51\x55\x30\x63\x58\xb0\x7c\xe5\x30\x33\xb2\xe3\x35\xd3\x02\x1e\x1d\x72\x8a\x0e\xc9\xc3\x82\xd2\xb7\x13\x62\x5e\x7b\xf8\x95\x30\xd9\x40\x0f\xdb\x4b\xc9\x1a\x9a\x73\xa0\xa1\xa8\xf1\xa1\x88\x9f\xf0\x2f\x00\x20\x3a\xde\x19\x45\x3e\xe1\xf9\x4e\x53\xd9\xdd\xd6\xd3\x73\xdc\x62\xc7\x8f\x88\xd3\x50\x6e\x21\xe2\x72\x0d\x00\x00\xff\xff\xf4\x8e\xc6\x37\xe1\x00\x00\x00" +var _idtablestakingScriptsGet_node_roleCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xca\x83\x30\x14\x85\xf7\x3c\xc5\xc1\x49\x17\x5d\x7f\x84\x7f\x93\x42\x96\x2e\xda\x07\x48\x6d\xa2\xa1\xf1\x46\x6e\xae\x74\x28\x7d\xf7\xa2\x16\x97\x76\x3a\xc3\xc7\xf9\xf8\xfc\x34\x47\x16\x9c\x42\x7c\xe8\xa6\x33\xd7\x60\x5b\x31\x77\x4f\x03\x1c\xc7\x09\xd9\x37\xc8\x94\xaa\x2a\x74\xa3\x4f\x48\x3d\xfb\x59\xc0\x56\x16\xa6\x04\x19\x2d\x38\x06\x8b\xe8\x60\x40\xf1\x66\x95\x32\x7d\x6f\x53\xca\x4d\x08\x05\xdc\x42\x98\x8c\xa7\x7c\x45\xba\xa9\xd1\x0a\x7b\x1a\x8a\x1a\x17\x4d\xf2\x87\xa7\x02\x80\x60\x65\xfb\x6a\x72\x11\xff\x3f\xca\xca\xf3\x87\x1e\x9e\x7d\x8b\xed\xbe\xc7\x1c\x86\x72\x0d\x52\xaf\x77\x00\x00\x00\xff\xff\xf6\xa1\xe0\xc7\xe7\x00\x00\x00" func idtablestakingScriptsGet_node_roleCdcBytes() ([]byte, error) { return bindataRead( @@ -3360,11 +3420,11 @@ func idtablestakingScriptsGet_node_roleCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_role.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0x9e, 0xda, 0x8e, 0x65, 0x95, 0xfa, 0x4e, 0xa1, 0xbc, 0xcc, 0x44, 0xe8, 0xa4, 0x4b, 0xbb, 0xe5, 0x51, 0x79, 0xb1, 0x87, 0x98, 0xe, 0xfe, 0x5e, 0x5d, 0x35, 0x73, 0x4, 0xec, 0xc8, 0x57}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x0, 0xb7, 0xb0, 0x5f, 0x96, 0x55, 0x19, 0x86, 0x7a, 0x0, 0xf0, 0xfe, 0xd6, 0x6f, 0xce, 0xc4, 0x56, 0x65, 0x59, 0x5c, 0x66, 0x15, 0x56, 0x22, 0xc8, 0xe, 0x22, 0x44, 0x49, 0xf0, 0xc0, 0x78}} return a, nil } -var _idtablestakingScriptsGet_node_staked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\x31\x6b\xc3\x30\x10\x05\xe0\x5d\xbf\xe2\x8d\xcd\x92\x74\x28\x1d\x02\x1d\x52\xe4\x80\xa0\x64\xa8\xd4\xa1\xa3\x9c\x9c\x12\x61\xf9\x64\xa4\x33\x0d\x94\xfe\xf7\x62\xbb\x78\xea\x74\xf0\x8e\xf7\xf8\x62\x3f\xe4\x22\x38\xa6\xfc\x65\xb4\xf3\x6d\x22\x2b\xbe\x8b\x7c\x45\x28\xb9\xc7\xe3\xdd\xe8\xe6\xe4\x8c\xfb\x74\x87\xd7\xb7\xe6\xa0\xf5\x7b\x63\xad\x52\xbb\x1d\xdc\x2d\x56\xd4\x73\x89\x83\xa0\x90\x8c\x85\x2b\xe4\x46\x68\x7d\xf2\x7c\x26\xe4\x80\x2a\xbe\xa3\x0b\x24\x77\xc4\x75\x0a\x3c\x38\x5f\x48\xa9\x61\x6c\x11\x46\x46\xef\x23\x3f\x4c\x91\xd1\x7b\x58\x29\x91\xaf\x9b\x3d\x3e\x8e\xf1\xfe\xfc\x84\x6f\x05\x00\x89\x64\x2e\x19\x0e\x19\x2f\xff\x40\xb7\xa7\xbf\xef\x3a\xb4\xdc\xcd\x5c\x5f\x64\xeb\xc2\x76\xb1\xd8\x19\xa6\x7e\x7e\x03\x00\x00\xff\xff\x46\xae\x83\xcb\xfe\x00\x00\x00" +var _idtablestakingScriptsGet_node_staked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\x6a\x84\x40\x10\x86\xfb\x7d\x8a\x9f\xab\xce\xe6\xae\x09\x29\x0e\xd2\x89\x60\x93\x46\xf3\x00\xe3\x3a\xab\x8b\xeb\xac\xec\x8e\x24\x10\xf2\xee\x41\x0d\x36\xb9\x6a\x60\x3e\xfe\x8f\xcf\xcf\x4b\x4c\x8a\x2a\xc4\xcf\xba\x6c\xa9\x0b\xdc\x28\x4d\x5e\x06\xb8\x14\x67\x5c\xfe\x83\x8b\x31\xf7\x3b\xda\xd1\x67\x64\x9b\xfc\xa2\x48\xac\x6b\x92\x0c\x1d\x19\x1d\x05\x12\xcb\x88\x0e\x59\x69\xe2\x1e\x1a\x27\x96\xbc\x3d\x08\x12\x7b\x36\x86\xac\xe5\x9c\xaf\x14\x42\x01\xb7\x0a\x66\xf2\x72\xdd\x50\x5d\x3e\xd0\x68\xf2\x32\x14\x0f\x7c\x54\xfe\xeb\xf5\x05\xdf\x06\x00\x02\xeb\x3e\xae\xc5\x45\xbc\x3d\xc9\xbd\xbd\xff\xd1\x53\x74\xdc\x62\x9f\x1f\x85\xa7\xe1\x76\x34\x35\x7b\xa0\xf9\xf9\x0d\x00\x00\xff\xff\x88\xf6\xd5\xbd\x04\x01\x00\x00" func idtablestakingScriptsGet_node_staked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3380,11 +3440,11 @@ func idtablestakingScriptsGet_node_staked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_staked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc9, 0xa5, 0xe0, 0x6e, 0x32, 0xb4, 0x2d, 0xce, 0xcf, 0xef, 0x6c, 0xad, 0xa0, 0xc, 0x96, 0x72, 0x4d, 0x32, 0x5b, 0xfa, 0x45, 0xea, 0x74, 0x20, 0x42, 0x4b, 0x9e, 0x2c, 0x86, 0xa0, 0x44, 0x9e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0x54, 0xed, 0x63, 0x3d, 0x4f, 0x58, 0xcc, 0xc0, 0xc2, 0x61, 0x56, 0xca, 0x69, 0xb6, 0x69, 0xbc, 0xb0, 0x62, 0x73, 0x82, 0x4c, 0x79, 0xe7, 0x37, 0xfd, 0x98, 0x8e, 0x96, 0x78, 0x0, 0xd9}} return a, nil } -var _idtablestakingScriptsGet_node_staking_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\xaf\x82\x30\x14\x46\xf7\xfe\x8a\x6f\x7c\x2c\xf0\xe6\x97\xbc\x01\x53\x4c\x1a\x0c\x83\xed\xe2\x58\xb4\x85\x46\x68\x49\x5b\xa2\xc4\xf8\xdf\x8d\x80\x4c\x4e\xf7\xe6\xde\x9c\x93\x63\xfa\xc1\xf9\x88\x7d\xe7\x6e\x8c\x0a\x59\x77\x8a\x47\x79\x35\xb6\x81\xf6\xae\xc7\xef\x9d\xd1\xa2\x12\x4c\x9c\x44\xbe\x3b\x14\x39\xa5\xc7\x82\x73\x42\xb2\x0c\xa2\x35\x01\xe1\xec\xcd\x10\xe1\x55\x1c\xbd\x0d\x88\xad\x42\x58\xf9\x52\x4d\x70\x1a\x12\xd6\x5d\x14\x21\xc3\x58\x43\x8f\x16\xbd\x34\xf6\xe7\x7d\x62\xf4\x0f\x3c\x7a\x63\x9b\xe4\xb3\xe0\x41\x00\xa0\x53\x71\x86\x98\xd5\x0e\xff\x5f\xda\xd2\x6a\xfd\x6e\xa2\x65\x26\x33\xbe\xc4\x6c\x86\x74\x0d\x2a\xd5\x44\x9e\xaf\x00\x00\x00\xff\xff\x09\x99\x69\xfa\xef\x00\x00\x00" +var _idtablestakingScriptsGet_node_staking_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xaa\x83\x40\x10\x45\xfb\xfd\x8a\x8b\x95\x36\xda\x3f\x78\x9d\x04\x44\x48\xa3\x3f\xb0\x31\xb3\xba\x64\x9d\x95\xdd\x91\x20\x21\xff\x1e\xa2\xc6\x26\xa9\x66\xe0\x70\x2e\xc7\x8e\x93\x0f\x82\x93\xf3\xf7\xaa\x6c\xf5\xc5\x51\x23\xfa\x66\xb9\x87\x09\x7e\x44\xf2\x0d\x12\xa5\x8a\x02\xed\x60\x23\x62\x17\xec\x24\x08\x24\x73\xe0\x08\x19\x08\x71\xb7\x6b\x5a\xe0\x0d\x34\xd8\x5f\x49\x29\xdd\x75\x14\x63\xaa\x9d\xcb\x60\x66\xc6\xa8\x2d\xa7\x6f\x54\x95\x7f\x68\x24\x58\xee\xb3\xcf\x83\x87\x02\x00\x47\xb2\xca\x15\x1b\x8f\xff\x1f\x85\xf9\x79\xa7\xc7\xd0\x76\xb3\x55\xdf\xa2\x8e\x85\x7c\x0f\xab\x69\x51\xcf\x57\x00\x00\x00\xff\xff\xe3\x1d\xee\xbd\xf5\x00\x00\x00" func idtablestakingScriptsGet_node_staking_keyCdcBytes() ([]byte, error) { return bindataRead( @@ -3400,11 +3460,11 @@ func idtablestakingScriptsGet_node_staking_keyCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_staking_key.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xab, 0x13, 0x1f, 0xf1, 0xf9, 0x2c, 0xc6, 0x26, 0x45, 0x9a, 0xa, 0xf0, 0x4f, 0x7, 0xa2, 0x39, 0x1a, 0xd, 0x99, 0xd6, 0x51, 0x83, 0x95, 0xa, 0x58, 0xb5, 0x72, 0xf8, 0xa1, 0xe7, 0xf0, 0x62}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0x60, 0xc8, 0xcc, 0xd8, 0xd1, 0x4, 0x35, 0xdc, 0x43, 0xab, 0xa6, 0x61, 0x23, 0x93, 0x51, 0xd2, 0x5a, 0x24, 0xe6, 0xe2, 0x95, 0xc3, 0xe5, 0xbf, 0x68, 0x26, 0x94, 0xfb, 0x6a, 0xe9, 0x73}} return a, nil } -var _idtablestakingScriptsGet_node_total_commitmentCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\xc3\x30\x10\x46\x77\xfd\x8a\x6f\x8c\x97\xa4\x43\xe9\x10\xe8\x90\x56\x0e\x08\x4a\x86\x5a\xa5\x74\x94\xe3\xb3\x2d\x2c\xe9\x8c\x74\xa6\x81\xd2\xff\x5e\x92\x94\x4c\x99\x0e\xbe\xe3\x3d\x9e\x8f\x33\x67\xc1\x3e\xf0\xb7\xd1\xd6\xb5\x81\x1a\x71\x93\x4f\x03\xfa\xcc\x11\x0f\x27\xa3\xeb\x83\x35\xf6\xcb\xee\x5e\xde\xea\x9d\xd6\xef\x75\xd3\x28\xb5\xd9\xc0\x8e\xbe\xa0\x1c\xb3\x9f\x05\x99\x64\xc9\xa9\x40\x46\x42\xeb\x82\x4b\x47\x02\xf7\x28\xe2\x26\xea\x20\x3c\x51\x2a\xe7\xc1\x21\x71\x47\x4a\xcd\x4b\x8b\x7e\x49\x88\xce\xa7\xd5\x79\x32\x7a\x8b\x46\xb2\x4f\x43\xb5\xc5\xc7\xde\x9f\x9e\x1e\xf1\xa3\x00\x20\x90\x5c\x20\x93\x7a\xc6\xf3\x9d\xd0\xf5\xe1\xff\x7b\x13\x5d\x6f\x75\xc1\xaf\x65\x37\xc3\x5a\x58\x5c\x78\xe5\x18\xbd\x08\x75\x9f\x5e\x46\x4d\x81\x06\x27\x9c\xcb\xaa\x52\xbf\xea\x2f\x00\x00\xff\xff\x38\xb0\x49\xad\x11\x01\x00\x00" +var _idtablestakingScriptsGet_node_total_commitmentCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\xc3\x40\x0c\x46\xf7\xfb\x15\x1f\x99\xec\x25\x59\x4a\x87\x40\xa7\x9a\x80\x97\x2e\x49\xe9\xac\xd8\x3a\x5b\xf8\x4e\x0a\x77\x0a\x2d\x94\xfe\xf7\x92\xa4\x64\x69\x26\x81\x1e\xdf\xe3\x49\x3e\x59\x71\xec\x92\x7d\xf6\xdd\x81\x8e\x89\xf7\x4e\x8b\xe8\x84\x58\x2c\x63\xf5\x1f\xac\x42\xd8\x6c\x70\x98\xa5\xa2\x0e\x45\x4e\x8e\xc2\x7e\x2e\x5a\xe1\x33\xe3\x48\x89\x74\x60\x58\x44\x75\x5a\x78\x84\xdb\xc2\x5a\x2f\x0f\x82\xda\xc8\x21\xd0\x30\x70\xad\x0d\xa5\xd4\x22\x9e\x15\x99\x44\x9b\x0b\xea\xbb\x2d\xf6\x5e\x44\xa7\x76\x8b\xf7\x9d\x7c\x3d\x3f\xe1\x3b\x00\x40\x62\xbf\x8e\x7b\x8d\x86\x97\x07\xb9\xeb\xb7\x3f\x7a\x17\xdd\x6e\x7b\x9d\xdf\x0a\xef\x86\xb5\x9b\x53\x7a\xb5\x9c\xc5\x9d\xc7\x0f\xf1\xb9\xe3\xc4\x13\xb9\x95\xda\xb4\xe1\x27\xfc\x06\x00\x00\xff\xff\xde\x81\x86\x0c\x17\x01\x00\x00" func idtablestakingScriptsGet_node_total_commitmentCdcBytes() ([]byte, error) { return bindataRead( @@ -3420,11 +3480,11 @@ func idtablestakingScriptsGet_node_total_commitmentCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_total_commitment.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9a, 0xb3, 0x90, 0x58, 0xe3, 0xb3, 0x74, 0x22, 0x31, 0x4f, 0xd0, 0x3b, 0xa0, 0x9e, 0x61, 0x27, 0x36, 0xe5, 0x70, 0xb2, 0xef, 0x1d, 0x2e, 0x4a, 0xe1, 0x1a, 0xef, 0x56, 0x9e, 0x47, 0x48, 0xd8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0x4e, 0xa8, 0x2, 0x91, 0x80, 0xc1, 0xa6, 0xf6, 0x9b, 0x8c, 0x17, 0xce, 0x51, 0x4d, 0x8c, 0x4, 0x66, 0x16, 0xe7, 0x9e, 0x9c, 0x54, 0xd7, 0x3c, 0x96, 0x45, 0x48, 0x4b, 0x9a, 0x26, 0x27}} return a, nil } -var _idtablestakingScriptsGet_node_total_commitment_without_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\xc3\x30\x10\x46\x77\xfd\x8a\x6f\x8c\x97\xa4\x43\xe9\x10\xe8\x90\x56\x0e\x08\x4a\x86\x5a\xa5\x74\x94\xe3\xb3\x2d\x2c\xe9\x8c\x74\xa6\x81\xd2\xff\x5e\x92\x94\x4c\x99\x0e\xbe\xe3\x3d\x9e\x8f\x33\x67\xc1\x3e\xf0\xb7\xd1\xd6\xb5\x81\x1a\x71\x93\x4f\x03\xfa\xcc\x11\x0f\x27\xa3\xeb\x83\x35\xf6\xcb\xee\x5e\xde\xea\x9d\xd6\xef\x75\xd3\x28\xb5\xd9\xc0\x8e\xbe\xa0\x1c\xb3\x9f\x05\x99\x64\xc9\xa9\x40\x46\x42\xeb\x82\x4b\x47\x02\xf7\x28\xe2\x26\xea\x20\x3c\x51\x2a\xe7\xc1\x21\x71\x47\x4a\xcd\x4b\x8b\x7e\x49\x88\xce\xa7\xd5\x79\x32\x7a\x8b\x46\xb2\x4f\x43\xb5\xc5\xc7\xde\x9f\x9e\x1e\xf1\xa3\x00\x20\x90\x5c\x20\x93\x7a\xc6\xf3\x9d\xd0\xf5\xe1\xff\x7b\x13\x5d\x6f\x75\xc1\xaf\x65\x37\xc3\x5a\x58\x5c\x78\xe5\x18\xbd\x08\x75\x9f\x5e\x46\x5e\x44\x53\xa0\xc1\x09\xe7\xb2\xaa\xd4\xaf\xfa\x0b\x00\x00\xff\xff\x10\x9e\xf2\x15\x14\x01\x00\x00" +var _idtablestakingScriptsGet_node_total_commitment_without_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\xc3\x40\x0c\x46\xf7\xfb\x15\x1f\x99\xec\x25\x59\x4a\x87\x40\xa7\x9a\x80\x97\x2e\x49\xe9\xac\xd8\xb2\x2d\x7c\x27\x85\x3b\x99\x16\x4a\xff\x7b\x49\x52\xbc\x34\x93\x40\x8f\xef\xf1\x24\x5d\x2c\x3b\x0e\xd1\x3e\xdb\xe6\x44\xe7\xc8\x47\xa7\x59\x74\xc4\x90\x2d\x61\xf3\x1f\x6c\x42\xd8\xed\x70\x9a\xa4\xa0\x74\x59\x2e\x8e\xcc\xbe\x64\x2d\xf0\x89\x71\xa6\x48\xda\x31\x6c\x40\x71\x9a\xb9\x87\xdb\xcc\x5a\xae\x0f\x82\x5a\xcf\x21\x50\xd7\x71\x29\x15\xc5\x58\x63\x58\x14\x89\x44\xab\x2b\x6a\x9b\x3d\x8e\x9e\x45\xc7\x7a\x8f\xf7\x83\x7c\x3d\x3f\xe1\x3b\x00\x40\x64\xbf\x8d\x5b\x1d\x0c\x2f\x0f\x72\xb7\x6f\x7f\x74\x15\xdd\x6f\x7d\x9b\xdf\x0b\x57\xc3\xd6\xcd\x29\xbe\x5a\x4a\xe2\xce\xfd\x87\xf8\x64\x8b\x37\x1c\x79\x24\xb7\x5c\xaa\x3a\xfc\x84\xdf\x00\x00\x00\xff\xff\x30\xea\x1b\x75\x1a\x01\x00\x00" func idtablestakingScriptsGet_node_total_commitment_without_delegatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -3440,11 +3500,11 @@ func idtablestakingScriptsGet_node_total_commitment_without_delegatorsCdc() (*as } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_total_commitment_without_delegators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xad, 0x78, 0x6, 0x75, 0x27, 0xd2, 0xa2, 0x58, 0x76, 0xf1, 0x1d, 0xf8, 0x39, 0xfc, 0xef, 0xfc, 0xfe, 0xe9, 0x4b, 0xa5, 0x25, 0x13, 0xb7, 0x3, 0x8d, 0x8e, 0xcd, 0xdb, 0xc1, 0x61, 0x21, 0xf4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x84, 0x32, 0xaf, 0x9f, 0xd3, 0x1e, 0x55, 0x10, 0x72, 0x2d, 0x94, 0x44, 0xae, 0x6b, 0xa4, 0xc5, 0xe4, 0x2, 0xc6, 0x10, 0x0, 0xae, 0xb5, 0x69, 0x35, 0xb, 0xf6, 0x87, 0x8d, 0x53, 0x4, 0xa7}} return a, nil } -var _idtablestakingScriptsGet_node_type_ratioCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x9e\xb7\xf6\x62\x3d\x88\x48\xc1\x43\x25\x29\x04\xc4\x43\xb2\x3d\x88\x78\x98\x34\x93\x76\xc9\x66\x27\xcc\x4e\x68\x41\xfc\xef\xd2\xea\xb1\xd7\xc7\xfb\x3e\xbe\x30\x4e\xa2\x86\x6d\x94\x53\x55\x78\x6a\x23\x37\x46\x43\x48\x07\xf4\x2a\x23\x1e\xce\x55\x51\xbe\xfb\xca\x7f\xf8\xcd\xeb\x5b\xb9\x29\x8a\xba\x6c\x1a\xe7\x56\x2b\xf8\x63\xc8\xc8\x7b\x0d\x93\x41\xd9\x66\x4d\x19\x76\x64\xb4\x14\x29\xed\x19\xd2\x23\x1b\x0d\xdc\xc1\x64\xe0\x94\x2f\x03\x21\x49\xc7\xce\x4d\x73\x8b\x7e\x4e\x18\x29\xa4\x85\x4a\xe4\x35\x76\x55\xb2\xe7\xe5\x1a\xbb\x6d\x38\x3f\x3d\xe2\xdb\x01\x40\x64\x83\x92\x05\xc9\x78\xb9\xd1\x78\x7f\x60\xab\xf9\x44\xda\xd5\xd7\xd3\x62\xe9\xae\xd8\x5f\xce\x3f\xf9\x79\xf1\x7f\xdd\xb9\x9f\xdf\x00\x00\x00\xff\xff\xd9\xe6\xb6\x53\xeb\x00\x00\x00" +var _idtablestakingScriptsGet_node_type_ratioCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\x03\x51\x10\x84\xfb\xf7\x2b\xc6\x54\x77\x8d\x69\x44\x24\x60\x27\x81\xb4\x31\xa9\xc4\x62\xf3\x6e\x2f\x79\xdc\xbb\xdd\xb0\xbb\xe1\x04\xf1\xbf\xcb\x9d\x76\xda\xce\xcc\x37\x7c\x65\xbc\xaa\x05\xb6\x55\xa7\xdd\xcb\x81\x4e\x95\x5f\x83\x86\x22\x67\xf4\xa6\x23\x56\x7f\x8b\x55\x4a\xeb\x35\x0e\x97\xe2\xf0\x6c\xe5\x1a\x30\x8e\x9b\x89\x23\x2e\x8c\x13\x55\x92\xcc\xd0\x1e\x1e\x34\x70\x87\xd0\x81\xc5\xe7\x80\x20\xda\x71\x4a\x94\x33\xbb\x37\x54\x6b\x8b\xfe\x26\x18\xa9\x48\x63\x5a\x79\x83\xe3\x4e\xe2\xa9\xdd\xe0\xb8\x2d\x1f\x8f\x0f\xf8\x4c\x00\x50\x39\x60\x14\x45\x1d\xcf\xff\x98\xde\x9f\x39\xf6\x3c\x91\x75\xfb\x65\xd4\xb4\x69\xc1\x7e\xb4\x7e\xc9\xb7\xf9\xff\xfd\x2e\x7d\x7d\x07\x00\x00\xff\xff\x6f\x62\x2e\xa0\xf1\x00\x00\x00" func idtablestakingScriptsGet_node_type_ratioCdcBytes() ([]byte, error) { return bindataRead( @@ -3460,11 +3520,11 @@ func idtablestakingScriptsGet_node_type_ratioCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_type_ratio.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x27, 0xe6, 0x4, 0x86, 0x23, 0x25, 0x65, 0xf9, 0xf4, 0xdb, 0x7e, 0xdf, 0xf4, 0xcc, 0x96, 0xf1, 0xd7, 0xda, 0xd8, 0x20, 0xa, 0xc1, 0xb, 0x17, 0x4c, 0xf8, 0xb8, 0x4c, 0xfa, 0x5a, 0xf2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa9, 0x6, 0x3f, 0x1a, 0x72, 0xbf, 0x77, 0x88, 0xc2, 0xac, 0xd6, 0x2a, 0xea, 0x37, 0xc, 0x1, 0xe8, 0x1b, 0x86, 0x79, 0x76, 0xdc, 0x56, 0x9b, 0x51, 0x27, 0x7d, 0xd1, 0x92, 0x12, 0xe8, 0x89}} return a, nil } -var _idtablestakingScriptsGet_node_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x6a\x03\x31\x10\x04\xd0\x5e\x5f\x31\x65\xdc\xd8\x29\x42\x0a\x43\x0a\x07\x9d\x41\x10\x5c\x44\x72\x91\x52\x67\xaf\x6c\x71\xba\xd5\x21\xad\x88\x21\xe4\xdf\x83\x7d\xc6\x55\xaa\x85\x59\x66\x78\x71\x9c\x72\x11\x6c\x53\xfe\x36\xda\xf9\x3e\x91\x15\x3f\x44\x3e\x21\x94\x3c\xe2\xf9\x62\x74\xb7\x73\xc6\x7d\xb9\xcd\xfb\x47\xb7\xd1\xfa\xb3\xb3\x56\xa9\xd5\x0a\xee\x1c\x2b\xea\xa1\xc4\x49\x50\x48\x5a\xe1\x0a\x39\x13\x7a\x9f\x3c\x1f\x08\x39\xa0\x71\x15\x3f\xd0\x11\x92\x07\xe2\x7a\x8d\x3c\x38\x1f\x49\xa9\xa9\xf5\x08\x8d\x31\xfa\xc8\x4f\xd7\xc8\xe8\x35\xac\x94\xc8\xa7\xc5\x1a\xfb\x6d\xbc\xbc\xbe\xe0\x47\x01\x40\x22\xb9\x95\x0c\x87\x8c\xb7\x7f\xa8\xcb\xdd\xfd\xfb\x18\x9a\xef\xe2\x56\x9f\x6d\x8f\x85\xe5\x6c\xd9\xdf\x69\xea\xf7\x2f\x00\x00\xff\xff\xed\xa2\xe5\x11\x02\x01\x00\x00" +var _idtablestakingScriptsGet_node_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x3d\x6a\xc3\x40\x10\x46\xfb\x3d\xc5\x87\x2b\xab\xb1\x9b\x90\xc2\x90\xce\x18\xd4\xa4\xb1\x74\x80\xd1\x6a\x56\x5a\xb4\x9a\x15\xbb\x23\x12\x08\xb9\x7b\xd0\x0f\x6a\xe2\x6a\x60\x1e\xdf\xe3\xf9\x71\x8a\x49\xf1\x08\xf1\xab\xbc\x57\xd4\x04\x7e\x2a\x0d\x5e\x3a\xb8\x14\x47\x9c\xfe\x83\x93\x31\xd7\x2b\xaa\xde\x67\x64\x9b\xfc\xa4\x48\xac\x73\x92\x0c\xed\x19\x0d\x05\x12\xcb\x88\x0e\xb3\x64\xa5\x81\x5b\x68\x1c\x58\xf2\xf2\x22\x48\x6c\xd9\x18\xb2\x96\x73\x3e\x53\x08\x05\xdc\x2c\x18\xc9\xcb\x79\x41\xe5\xfd\x86\xa7\x26\x2f\x5d\x71\x43\xfd\xf0\xdf\xef\x6f\xf8\x31\x00\x10\x58\xd7\x71\x29\x2e\xe2\xe3\x45\xf0\xe5\x73\xa7\x87\x68\xbb\xc5\x3a\xdf\x1a\x0f\xc3\x65\x6b\xaa\xf7\x44\xf3\xfb\x17\x00\x00\xff\xff\xa2\xd9\x0b\x78\x08\x01\x00\x00" func idtablestakingScriptsGet_node_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3480,11 +3540,11 @@ func idtablestakingScriptsGet_node_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xca, 0xa8, 0x4b, 0x66, 0x19, 0x7f, 0x23, 0x8c, 0x14, 0x37, 0x8f, 0xc6, 0xfb, 0x78, 0x7a, 0x4d, 0x97, 0xc, 0x94, 0xe7, 0x9b, 0x1e, 0xa, 0xa8, 0x8b, 0xcf, 0xbb, 0x18, 0x65, 0xc7, 0x5d, 0x9a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x15, 0xa2, 0xab, 0xa0, 0xe4, 0x1e, 0x5c, 0xf, 0xd8, 0x2c, 0x53, 0xe8, 0xa3, 0x53, 0x38, 0xd8, 0xa7, 0x8e, 0x66, 0x3a, 0x95, 0x72, 0xf5, 0x76, 0xe2, 0x78, 0xad, 0xc0, 0xa8, 0x45, 0xe2, 0xc4}} return a, nil } -var _idtablestakingScriptsGet_node_unstaking_requestCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\x02\x41\x10\x46\xfb\xfd\x15\x5f\x19\x1b\x4d\x11\x52\x08\x29\x0c\x7b\xc2\x42\xb0\xf0\xd6\x22\xe5\x1a\xe7\x74\xf1\x76\xe6\xb2\x3b\x4b\x84\x90\xff\x1e\x72\x9a\xab\xac\x06\xe6\xe3\x3d\x5e\x4c\x83\x64\xc5\xba\x97\x2f\x67\x7d\xd8\xf7\xd4\x6a\x38\x47\x3e\xa2\xcb\x92\xf0\x78\x71\xb6\xd9\x78\xe7\xdf\xfd\xea\xf5\xad\x59\x59\xbb\x6d\xda\xd6\x98\xc5\x02\xfe\x14\x0b\xca\x47\x8e\x83\x22\x93\xd6\xcc\x05\x7a\x22\x64\xfa\xac\x54\x94\x0e\xa8\x5c\x6e\xae\x90\xa4\xb2\xa2\x93\x8c\x00\x96\x03\x19\x33\xd4\x3d\xba\xca\x48\x21\xf2\xc3\xdf\xcb\xd9\x25\x5a\xcd\x91\x8f\xb3\x25\x76\xeb\x78\x79\x7e\xc2\xb7\x01\x80\x9e\x74\x84\x1c\x77\x82\x97\x3b\xad\xf3\xcd\x6d\x9d\x44\xd7\x3b\x1b\xf1\x6b\xdc\x64\x98\xab\x9c\x89\xcb\xf6\x3f\xd3\xcb\x6e\xec\x24\xf3\xf3\x1b\x00\x00\xff\xff\x79\x9d\x09\x48\x0d\x01\x00\x00" +var _idtablestakingScriptsGet_node_unstaking_requestCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\x4e\x02\x41\x10\x86\xfb\x7d\x8a\x3f\x54\x5c\x03\x8d\xb1\x20\xb1\x23\x24\xd7\x58\xc8\xf1\x00\xeb\x31\x0b\x1b\x76\x67\x70\x66\x36\x9a\x18\xdf\xdd\x78\xe0\x35\x5a\xfd\xc5\x97\xff\xcb\x97\xeb\x55\xd4\xb1\x2b\xf2\xde\x6f\x87\xf8\x5a\x68\xef\xf1\x92\xf9\x84\xa4\x52\xb1\xf8\x0b\x16\x21\xac\xd7\x18\xce\xd9\x60\xa3\xe6\xab\x43\xc9\x9b\xb2\xc1\xcf\x04\xa5\xb7\x46\xe6\x74\x44\x63\xbb\x9b\x62\x95\xc6\x8e\x24\x8a\x08\x96\x23\x85\x10\xc7\x91\xcc\x96\xb1\x94\x0e\xa9\x31\x6a\xcc\xbc\xfc\x41\xfd\x76\x83\xbd\x6b\xe6\x53\xb7\xc1\x61\x97\x3f\x1e\x1f\xf0\x19\x00\xa0\x90\x4f\xe7\x9e\x93\xe0\xe9\x9f\xe2\xd5\xf3\x9d\xce\xa2\xdb\x76\xd3\xfd\x16\x39\x1b\x56\x2e\x17\x62\x7b\xf9\xcd\x1d\xe4\x30\xf5\x52\xf8\xfa\x0e\x00\x00\xff\xff\x8e\x70\xaf\x46\x13\x01\x00\x00" func idtablestakingScriptsGet_node_unstaking_requestCdcBytes() ([]byte, error) { return bindataRead( @@ -3500,11 +3560,11 @@ func idtablestakingScriptsGet_node_unstaking_requestCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_unstaking_request.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x0, 0x9a, 0x2b, 0x37, 0x6, 0x8a, 0x4, 0xbb, 0xdd, 0x5f, 0xc4, 0xae, 0x23, 0x26, 0x8d, 0x28, 0xee, 0xe8, 0x4, 0xc1, 0xde, 0x14, 0x1f, 0x48, 0x86, 0x41, 0xef, 0xb4, 0xc3, 0x29, 0x4a, 0xcb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4a, 0x48, 0x65, 0x66, 0x2f, 0x86, 0x85, 0xb3, 0x19, 0xdb, 0x18, 0xda, 0x34, 0x83, 0xe5, 0x55, 0xa, 0xd6, 0x75, 0xc8, 0x5f, 0xba, 0xf2, 0xe, 0x69, 0xf6, 0x73, 0x47, 0xe0, 0x35, 0x6c, 0x84}} return a, nil } -var _idtablestakingScriptsGet_node_unstaking_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xbd\x6a\xc3\x30\x14\x46\x77\x3d\xc5\x37\x36\x4b\xd2\xa1\x74\x08\x74\x48\x91\x03\x82\x92\xa1\x52\x86\x8e\x72\x2a\x25\x22\xf2\x95\x91\xae\xa8\xa1\xf4\xdd\x8b\x7f\xea\xa9\xd3\x85\xef\x72\x0e\x27\x74\x7d\xca\x8c\x63\x4c\x5f\x4a\x1a\xdb\x46\xa7\xd9\xde\x03\x5d\xe1\x73\xea\xf0\x38\x28\xd9\x9c\x8c\x32\x1f\xe6\xf0\xfa\xd6\x1c\xa4\x7c\x6f\xb4\x16\x62\xb7\x83\xb9\x85\x82\x72\xc9\xa1\x67\x64\xc7\x35\x53\x01\xdf\x1c\x5a\x1b\x2d\x5d\x1c\x92\x47\xa5\xb2\xc8\x38\xdd\x1d\x95\x71\xb3\xa0\xf4\xe9\x84\xe8\x6b\x0b\x5f\x09\x9d\x0d\xf4\x30\x4e\x4a\xee\xa1\x39\x07\xba\x6e\xf6\x38\x1f\xc3\xf0\xfc\x84\x6f\x01\x00\xd1\xf1\x04\x29\xf2\x09\x2f\xff\xb4\x6e\x4f\xcb\x77\x15\xcd\x77\x33\xe1\x73\xdc\x6a\xd8\xce\x2d\xe7\xbf\x36\xf1\xf3\x1b\x00\x00\xff\xff\xc7\x92\x11\x03\x04\x01\x00\x00" +var _idtablestakingScriptsGet_node_unstaking_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x3d\x6a\xc3\x40\x10\x46\xfb\x3d\xc5\x87\x2b\xab\xb1\x9b\x90\xc2\x90\xce\x18\xd4\xa4\x91\x74\x80\xd1\x66\x56\x5a\xb4\x9a\x15\xbb\x23\x12\x08\xb9\x7b\xd0\x4f\xd4\xc4\xd5\xc0\x3c\xbe\xc7\xf3\xe3\x14\x93\xe2\x11\xe2\x67\x79\xaf\xa9\x0d\x5c\x29\x0d\x5e\x3a\xb8\x14\x47\x9c\xfe\x83\x93\x31\xd7\x2b\xea\xde\x67\x64\x9b\xfc\xa4\x48\xac\x73\x92\x0c\xed\x19\x2d\x05\x12\xcb\x88\x0e\xb3\xe4\x5d\xa5\x71\x60\xc9\xcb\x8f\x20\xf1\x83\x8d\x21\x6b\x39\xe7\x33\x85\x50\xc0\xcd\x82\x91\xbc\x9c\x17\x54\xde\x6f\xa8\x34\x79\xe9\x8a\x1b\x9a\x87\xff\x7a\x7d\xc1\xb7\x01\x80\xc0\xba\x8e\x4b\x71\x11\x6f\x4f\x8a\x2f\xef\x3b\x3d\x44\xdb\x2d\xd6\xf9\x16\x79\x18\x2e\x5b\x53\xf3\xd7\x68\x7e\x7e\x03\x00\x00\xff\xff\xfc\x55\x50\x18\x0a\x01\x00\x00" func idtablestakingScriptsGet_node_unstaking_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3520,11 +3580,11 @@ func idtablestakingScriptsGet_node_unstaking_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_unstaking_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbd, 0xf6, 0x22, 0xda, 0x4e, 0x2a, 0x9, 0x28, 0x40, 0x45, 0xb2, 0x8, 0x55, 0xc6, 0x13, 0x27, 0xf4, 0xcb, 0x53, 0x99, 0x5b, 0x2d, 0xab, 0x76, 0x7, 0x33, 0xe7, 0xa, 0x2, 0xb2, 0xd9, 0x6b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0xa2, 0x4e, 0x56, 0xb7, 0x3, 0xd3, 0x8, 0x1c, 0xf9, 0x4b, 0xa2, 0x84, 0xcc, 0xc7, 0xdd, 0x56, 0xbc, 0xd7, 0xae, 0x99, 0x6d, 0x53, 0x4e, 0xa9, 0xd4, 0x97, 0x14, 0x3f, 0xe3, 0xa, 0xfa}} return a, nil } -var _idtablestakingScriptsGet_non_operationalCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4a\xc5\x30\x14\x06\xe0\x3d\x4f\xf1\x8f\xf7\x0e\xde\x3a\xbb\x55\x52\xa1\x50\x2a\x98\x2c\x22\x0e\xa9\xa6\xed\xa1\xe9\x39\x21\x39\x45\x45\x7c\x77\x11\x04\x17\x5f\xe0\xe3\xa3\x3d\x4b\x51\xdc\x25\x79\xeb\xad\x0f\x53\x8a\x4e\xc3\x46\xbc\x60\x2e\xb2\xe3\xfa\xbd\xb7\xdd\xe8\x7b\xff\xe8\xdb\xdb\xa1\x6b\xad\x7d\xe8\x9c\x33\xa6\x69\xe0\x57\xaa\xa8\x2f\x85\xb2\xa2\x44\x3d\x0a\x57\xe8\x1a\x91\xa8\x2a\x64\x06\x0b\x5f\x49\x8e\x25\x28\x09\x87\x04\x96\xd7\x58\x8d\xc9\xc7\x84\xf9\x60\xec\x81\xf8\x74\xbe\xc1\x93\xd3\x42\xbc\x3c\xe3\xd3\x00\xf8\x95\xfe\xf9\x5c\x96\xa8\xa3\xf0\xfd\x9f\x38\xfe\x80\x03\x55\x3d\x9d\x2f\x5b\xfc\xa8\xe6\xeb\x3b\x00\x00\xff\xff\x40\xc7\xef\x0e\xcd\x00\x00\x00" +var _idtablestakingScriptsGet_non_operationalCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x6b\x83\x50\x10\xc7\xf1\xfd\xfd\x15\x3f\x9c\x74\xa8\xee\x9d\x4b\xa1\x50\xec\xa0\x5b\xe9\xf0\x6a\x4e\x3d\x7c\xde\xc9\xbb\x93\x10\x42\xfe\xf7\x10\x08\x64\x48\xe6\x2f\x7c\xf8\xf2\xba\x69\x76\x7c\x26\x3d\x7e\x7d\xf4\xf1\x3f\x51\xe7\x71\x61\x99\x30\x66\x5d\x51\x3c\x87\x22\x84\xa6\x41\x3f\xb3\xc1\x86\xcc\x9b\x23\x93\xef\x59\x0c\x3e\x13\x12\x9b\x43\x47\x88\xca\x9b\x6e\x94\xa3\xb3\x4a\x4c\x10\x3d\x90\x85\x10\x87\x81\xcc\xca\x98\x52\x85\x71\x17\xac\x91\xa5\xac\xde\xf1\xdb\x79\x66\x99\xfe\x70\x0e\x00\xee\xe2\x8b\xab\x7a\x22\x6f\x55\x7e\x1e\x72\x7b\x83\xbf\xd9\xbc\xac\xea\x85\x4e\x16\x2e\xd7\x00\x00\x00\xff\xff\x38\xdb\x00\xb4\xd3\x00\x00\x00" func idtablestakingScriptsGet_non_operationalCdcBytes() ([]byte, error) { return bindataRead( @@ -3540,11 +3600,11 @@ func idtablestakingScriptsGet_non_operationalCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_non_operational.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xeb, 0xa0, 0x38, 0xa8, 0x89, 0xab, 0xee, 0xef, 0xcf, 0x75, 0x60, 0xc1, 0x29, 0x70, 0xdb, 0xd0, 0x51, 0xc9, 0xee, 0x42, 0x0, 0x31, 0x2a, 0x42, 0x2c, 0x26, 0x32, 0xea, 0x1d, 0xbe, 0xd2, 0x80}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x40, 0x89, 0x18, 0xff, 0x98, 0x6e, 0xd7, 0x28, 0x71, 0xee, 0x6f, 0xa0, 0x59, 0x7e, 0xc5, 0x96, 0xcb, 0xef, 0xb4, 0x9f, 0x6b, 0xe6, 0x75, 0x21, 0xb, 0x6a, 0x90, 0xb5, 0xde, 0xa5, 0xfd, 0x61}} return a, nil } -var _idtablestakingScriptsGet_proposed_tableCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4a\x04\x31\x10\x06\xe0\x3e\x4f\xf1\x97\x77\x8d\x67\x6d\x77\x92\x15\x02\x72\x88\x49\x23\x62\xb1\x77\x3b\x9b\x1d\xdc\x9d\x84\xc9\x04\x15\xf1\xdd\x45\xb0\xbc\x17\xf8\xf8\x78\xab\x45\x0d\x0f\x6b\xf9\x08\x3e\x8d\xe7\x95\xa2\x8d\xef\x2c\x19\xb3\x96\x0d\xb7\x9f\xc1\x0f\xa7\x14\xd2\x4b\x3a\xde\x3f\x0e\x47\xef\x9f\x87\x18\x9d\x3b\x1c\x90\x16\x6e\x68\x17\xe5\x6a\x50\xb2\xae\xd2\x60\x0b\xe1\xd2\x55\x49\x0c\x3c\x91\x18\xdb\x17\xec\x4f\xc5\x4a\x92\x6d\x71\xae\xf6\x33\xe6\x2e\xd8\x46\x96\xdd\xfe\x0e\xaf\xd1\x94\x25\xbf\xe1\xdb\x01\xf8\x97\xae\x7c\x6e\x32\xd9\x93\x96\x5a\x1a\x4d\xa7\x32\x51\xf0\x6d\xb7\x77\x3f\xbf\x01\x00\x00\xff\xff\xd3\xe0\x18\x61\xc0\x00\x00\x00" +var _idtablestakingScriptsGet_proposed_tableCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x8b\xc2\x40\x10\x46\xfb\xfd\x15\x1f\xa9\x92\xe6\xd2\x5f\x1d\x0e\xd2\x1c\x42\xd2\x89\xc5\xba\x99\x6c\x06\x37\xb3\x61\x76\x82\x88\xf8\xdf\x45\xb0\xd3\xfa\xf1\x1e\x8f\xd7\x2d\xab\xe1\x2f\xe5\x6b\xdf\x8d\xfe\x9c\x68\x30\x7f\x61\x89\x98\x35\xaf\xa8\x3e\x41\xe5\x5c\xdb\x62\x5c\xb8\xa0\x04\xe5\xcd\xa0\x64\xbb\x4a\x81\x2d\x84\xb0\xab\x92\x18\x78\x22\x31\xb6\x1b\xec\xa5\x22\x91\x44\x5b\x9c\xf3\x21\x50\x29\xb5\x4f\xa9\xc1\xbc\x0b\x56\xcf\x52\x37\xbf\x38\x0e\xa6\x2c\xf1\x84\xbb\x03\xf0\x2e\x7e\xb9\xfa\x89\x64\x07\xcd\x5b\x2e\x34\xfd\xe7\x89\xfa\xae\xd4\x8d\x7b\x3c\x03\x00\x00\xff\xff\x09\xfb\xc4\x0b\xc6\x00\x00\x00" func idtablestakingScriptsGet_proposed_tableCdcBytes() ([]byte, error) { return bindataRead( @@ -3560,11 +3620,11 @@ func idtablestakingScriptsGet_proposed_tableCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_proposed_table.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0xca, 0x75, 0x49, 0x77, 0x1d, 0x0, 0x4c, 0x7b, 0x1a, 0xc3, 0x14, 0x3f, 0xd9, 0x9e, 0x45, 0xf1, 0x9a, 0xeb, 0x3e, 0x4e, 0x8a, 0x4, 0x5e, 0x94, 0x18, 0xcf, 0x6b, 0x8b, 0x24, 0xd6, 0x5e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb2, 0x53, 0xc3, 0x59, 0x7d, 0xbb, 0x1e, 0xfe, 0x8e, 0x70, 0x72, 0xc5, 0x58, 0x91, 0x67, 0xc1, 0xd3, 0x89, 0x22, 0x23, 0x5, 0xf9, 0x9c, 0xf4, 0x18, 0xbd, 0x64, 0x88, 0xef, 0x61, 0xa4, 0xcb}} return a, nil } -var _idtablestakingScriptsGet_role_countsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4a\x03\x41\x10\x87\xf1\x7e\x9f\xe2\x5f\x26\x8d\xd1\x46\x24\x5d\xcc\x9e\xb0\x20\x29\x72\x6b\x61\x79\x31\x73\xb9\xc5\xdd\x99\x63\x76\x16\x85\xe3\xde\x5d\x04\x4b\xab\xaf\xfb\xf8\xa5\x32\x8b\x1a\x5e\xb2\x7c\x05\x1f\x87\x4b\xa6\xde\x86\xcf\xc4\x37\x8c\x2a\x05\xf7\xdf\xc1\x77\xa7\x18\xe2\x7b\x3c\x3c\xbf\x76\x07\xef\xcf\x5d\xdf\x3b\xb7\xdb\x21\x4e\xa9\xa2\x7e\x68\x9a\x0d\x4a\xd6\x94\x2b\x6c\x22\xd4\x2c\x86\x9c\x4a\xb2\x8a\x51\x14\x2c\x57\x82\x4a\xa6\xea\xdc\xdc\x2e\x18\x1b\xa3\x0c\x89\x37\xdb\x3d\x96\xb7\xc0\xf6\xb4\xc7\x6f\x1e\x1e\x57\x2c\x0e\xc0\xdf\xed\x1f\xd3\xdd\x8d\xec\xd8\x54\x89\xed\x2c\x99\x4e\x72\xa5\xa3\x34\xb6\xba\xd9\xba\xf5\x27\x00\x00\xff\xff\xfe\x16\x53\xb9\xca\x00\x00\x00" +var _idtablestakingScriptsGet_role_countsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\xc4\x40\x10\x46\xfb\xfd\x15\x1f\x57\x25\x8d\x87\x8d\xc8\xb5\x27\xc2\x35\x16\x1a\x7f\xc0\x9a\x4c\x92\xc5\xd9\x99\x30\x33\x8b\x45\xc8\x7f\x17\xc1\x4e\xab\x57\x3c\x78\xbc\x52\x37\xb5\xc0\x33\xeb\xd7\xed\x69\xc8\x1f\x4c\x6f\x91\x3f\x8b\x2c\x98\x4d\x2b\x4e\x7f\xc5\x29\xa5\xf3\x19\xc3\x5a\x1c\x3e\x5a\xd9\x02\x46\xd1\x4c\x1c\xb1\x12\x9c\x35\xc0\xa5\x96\x70\xcc\x6a\x10\x9d\x08\xa6\x4c\x9e\x52\x1e\x47\x72\xef\x32\x73\x8f\xb9\x09\x6a\x2e\xd2\xf5\x17\xec\xef\x37\x89\xc7\x0b\x7e\x70\xff\x70\x60\x4f\x00\x7e\xab\xff\x9c\xdd\x2d\x14\xd7\x66\x46\x12\xaf\xca\xf4\xa2\x13\x5d\xb5\x49\x78\xd7\xa7\xe3\x3b\x00\x00\xff\xff\xe7\x1d\xde\xdf\xd0\x00\x00\x00" func idtablestakingScriptsGet_role_countsCdcBytes() ([]byte, error) { return bindataRead( @@ -3580,11 +3640,11 @@ func idtablestakingScriptsGet_role_countsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_role_counts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0x61, 0xf8, 0x74, 0xa8, 0xe7, 0x8c, 0x76, 0xe5, 0xed, 0x59, 0x4a, 0x68, 0x4a, 0x9f, 0xf9, 0xd9, 0xb6, 0x3f, 0xab, 0xc3, 0x63, 0xa1, 0x67, 0x38, 0x3d, 0x17, 0xee, 0x63, 0x82, 0x62, 0x40}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x52, 0xf9, 0xab, 0x6c, 0xc9, 0xbd, 0x96, 0x38, 0x13, 0xbc, 0x3b, 0x1, 0xb0, 0x5c, 0x4, 0xc8, 0xe4, 0x78, 0xca, 0x66, 0x28, 0x95, 0xe4, 0xb4, 0x54, 0x91, 0xa5, 0xa0, 0x3f, 0x44, 0xe9}} return a, nil } -var _idtablestakingScriptsGet_slot_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcf\x41\x4b\xf3\x40\x10\xc6\xf1\xfb\x7e\x8a\x87\x9e\x92\xcb\xdb\xd7\x8b\x88\x20\xa5\x9a\x08\x81\xe2\xa1\x89\x07\x11\x0f\x69\x32\xdb\x0e\x6e\x76\x96\xdd\x09\x0a\xe2\x77\x97\x6c\x11\x3d\xb8\x97\x85\x61\xf8\xf3\x1b\x9e\x82\x44\xc5\xbd\x93\xb7\xa6\xea\xfa\x83\xa3\x56\xfb\x57\xf6\x47\xd8\x28\x13\xfe\xbf\x37\x55\xfd\xd0\x35\xdd\x53\xb7\xbd\xdd\xd5\xdb\xaa\xda\xd7\x6d\x6b\xcc\x7a\x8d\xee\xc4\x09\x69\x88\x1c\x14\x91\x74\x8e\x3e\x41\x4f\x84\xe4\x44\xe1\x78\x62\x4d\xb0\x12\xe1\x65\x24\x44\x71\x94\x8c\x09\xf3\x01\x76\xf6\x98\x7a\xf6\xc5\x32\xbb\xc6\x63\xe3\xf5\xaa\x3c\xff\x17\x97\xf8\x30\x00\xe0\x48\x73\x67\xb7\x64\x70\xf3\x07\xef\xdf\x91\x74\x2f\x8e\xda\xef\xad\x54\x94\xcf\x4b\xf1\x25\x07\x96\xb7\xd9\x20\xf4\x9e\x87\x62\x75\x27\xb3\x1b\xe1\x45\x61\xd9\x8f\xbf\x84\x19\x98\xd1\x81\x06\xb6\x4c\x63\x96\xae\x4a\x93\x2b\xe7\xb3\x7e\x24\xe6\xf3\x2b\x00\x00\xff\xff\xd0\xf8\x5e\x99\x2f\x01\x00\x00" +var _idtablestakingScriptsGet_slot_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcf\x31\x4b\x34\x31\x10\xc6\xf1\x3e\x9f\xe2\x61\xab\xdd\xe6\x3d\xde\x46\x44\x90\x2b\x14\xe1\xc0\xca\x3b\x2b\xb1\x88\xd9\xc9\xdd\xe0\x6c\x66\xc9\xcc\x62\x21\x7e\x77\xd9\x1c\xa2\xa0\x69\x52\x3c\xe1\xcf\x2f\x3c\xcd\x5a\x1d\x77\xa2\x6f\xbb\xdb\x43\x7c\x11\xda\x7b\x7c\xe5\x72\x44\xae\x3a\xa1\xfb\x3d\x74\x21\x6c\x36\x38\x9c\xd8\x60\xa9\xf2\xec\xa8\xe4\x4b\x2d\x06\x3f\x11\x4c\xd4\x21\x3c\xb1\x1b\xb2\x56\x14\x1d\x09\x55\x85\x2c\x84\x98\x12\x99\xf5\x51\x64\x40\x5e\x0a\xa6\xc8\xa5\x5f\xb7\x2b\x3c\xee\x8a\x5f\x0e\xe7\xfb\xff\x05\xde\x03\x00\x08\x79\xeb\xdd\xaf\x39\x5c\xff\x81\xfc\x77\x24\x7f\x50\xa1\xfd\xd7\x2b\xeb\x87\xa7\xb5\xf8\xdc\x02\xeb\xd9\x6e\x31\xc7\xc2\xa9\xef\x6e\x74\x91\x11\x45\x1d\x99\xcb\xf8\x43\xda\xa0\x0d\x3f\x53\xe2\xcc\x34\x36\x71\x37\x84\x56\x39\x7f\xef\x5b\x12\x3e\x3e\x03\x00\x00\xff\xff\x3b\xd0\x7e\xcc\x35\x01\x00\x00" func idtablestakingScriptsGet_slot_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -3600,11 +3660,11 @@ func idtablestakingScriptsGet_slot_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_slot_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfa, 0x17, 0x95, 0x42, 0xcd, 0xcf, 0x54, 0x6, 0x58, 0xcd, 0x76, 0x5d, 0x53, 0x5e, 0x4d, 0xde, 0x46, 0xe7, 0x2e, 0xe6, 0x51, 0xbc, 0xe7, 0x66, 0x76, 0x1, 0xb2, 0xbf, 0x7d, 0xda, 0x1f, 0x21}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x48, 0xb5, 0xbb, 0x6d, 0xa6, 0x2a, 0xf, 0xfa, 0xb4, 0xc1, 0x4, 0x2, 0x12, 0x6f, 0x89, 0xa8, 0x7, 0x2f, 0x19, 0x27, 0x70, 0xe6, 0x9a, 0xc2, 0xc7, 0xa2, 0x4c, 0xd7, 0x65, 0xa4, 0x4e, 0xd0}} return a, nil } -var _idtablestakingScriptsGet_stake_requirementsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\x33\x41\x14\x45\xfb\xf9\x15\xf7\xeb\x92\xe6\x8b\x85\x88\x04\x2c\x22\xbb\x81\x05\xb5\xc8\x4e\x0a\x11\x8b\xd9\xe4\x6d\xf2\xd8\x99\x37\x9b\x99\x37\x18\x10\xff\xbb\x8c\xb6\xb6\x07\xee\xb9\x87\xc3\x1c\x93\x62\xeb\xe3\x47\xd7\x58\x37\x78\xea\xd5\x4d\x2c\x27\x8c\x29\x06\xdc\x5c\xbb\xa6\x7d\xb1\x9d\x7d\xb5\x9b\xc7\xa7\x76\xd3\x34\xbb\xb6\xef\x8d\x59\xad\x60\xcf\x9c\x91\x0f\x89\x67\x45\x22\x2d\x49\x32\xf4\x4c\x18\x9c\x77\x72\x20\xc4\x11\x59\xdd\x44\x47\x68\x9c\x48\x72\x05\x0e\x12\x8f\x64\xcc\x5c\x06\x8c\x45\x10\x1c\xcb\x22\x45\x4f\x6b\xec\x3b\xd1\xfb\xe5\x1a\xfb\x2d\x5f\xef\x6e\xf1\x69\x00\xc0\x53\x75\x5f\xf0\xf0\x47\xe0\xff\x13\xe9\x33\x0b\x87\x12\x2a\xa1\x1d\x5d\x0a\x27\x0a\x24\x9a\x17\x4b\xf3\xb3\xff\xed\xaa\x8a\xb7\xfa\xf2\xfe\xcf\x7c\x7d\x07\x00\x00\xff\xff\x94\x17\x67\xd0\xf1\x00\x00\x00" +var _idtablestakingScriptsGet_stake_requirementsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\x03\x41\x10\x46\xfb\xfd\x15\x9f\xa9\xee\x1a\xd3\x88\x48\xc0\x4e\x02\x29\x6c\x34\xa9\xc4\x62\xb2\x99\x4b\x86\xdb\x9d\x4d\x76\x66\x51\x10\xff\xbb\xac\x96\xa6\x7d\xc3\x7c\xef\x49\x3e\x97\xea\x58\xa7\xf2\xb1\x79\xda\xd2\x3e\xf1\xab\xd3\x2c\x7a\xc4\x54\x4b\xc6\xe2\xff\x61\x11\xc2\x72\x89\xed\x49\x0c\x16\xab\x9c\x1d\x95\xbd\x55\x35\xf8\x89\xb1\xa7\x44\x1a\x19\x65\x82\x39\xcd\x7c\x80\x97\x99\xd5\x3a\x20\x68\x39\x70\x08\x14\x23\x9b\x0d\x94\xd2\x88\xa9\x29\x32\x89\x0e\xb5\x24\x5e\x61\xb7\x51\x7f\x18\x57\xd8\xad\xe5\xf3\xfe\x0e\x5f\x01\x00\x12\x77\xc7\x05\x8f\x57\x32\x6f\x8f\xec\xcf\xa2\x92\x5b\xee\x84\x5f\xf8\xd2\xa4\x72\x66\x75\x1b\xc6\xf0\xfb\xff\xd7\xd7\x27\xde\xba\xe5\xfd\x26\x7c\xff\x04\x00\x00\xff\xff\x6c\xf5\xe4\x97\xf7\x00\x00\x00" func idtablestakingScriptsGet_stake_requirementsCdcBytes() ([]byte, error) { return bindataRead( @@ -3620,11 +3680,11 @@ func idtablestakingScriptsGet_stake_requirementsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_stake_requirements.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa2, 0x42, 0x8e, 0x32, 0x9e, 0x5d, 0x9, 0x77, 0x67, 0x63, 0xb3, 0x34, 0x22, 0x62, 0x79, 0x87, 0xaf, 0x67, 0x2c, 0x9b, 0xed, 0x6c, 0x82, 0xf7, 0x38, 0xaa, 0x16, 0x74, 0xcd, 0x2a, 0xf8, 0x5d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe7, 0x86, 0xdf, 0xf1, 0xc8, 0xc4, 0x94, 0xcc, 0x38, 0x85, 0xa2, 0x94, 0x17, 0x58, 0xe4, 0xe, 0xc7, 0x91, 0x1f, 0xd6, 0x72, 0xd0, 0x98, 0x61, 0x35, 0x17, 0x5, 0x79, 0x52, 0xf2, 0xcc, 0xf3}} return a, nil } -var _idtablestakingScriptsGet_tableCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xbf\x4a\x04\x31\x10\x07\xe0\x3e\x4f\xf1\x2b\xef\x1a\xcf\xda\xee\x24\x2b\x04\x64\x0b\x93\x46\xc4\x62\xff\xcc\x66\x07\x77\x27\xcb\x64\x82\x8a\xf8\xee\x22\x58\xfa\x02\x1f\x1f\xef\x47\x51\xc3\xc3\x56\xde\x83\x4f\xc3\xb8\x51\xb4\xe1\x8d\x25\x63\xd1\xb2\xe3\xf6\x23\xf8\xae\x4f\x21\x3d\xa7\xeb\xfd\x63\x77\xf5\xfe\xa9\x8b\xd1\xb9\xcb\x05\x69\xe5\x8a\x3a\x29\x1f\x06\x25\x6b\x2a\x15\xb6\x12\xa6\xa6\x4a\x62\xe0\x99\xc4\xd8\x3e\x61\xbf\x2a\x36\x92\x6c\xab\x73\x47\x1b\xb1\x34\xc1\x3e\xb0\x9c\xce\x77\x78\x89\xa6\x2c\xf9\x15\x5f\x0e\xc0\x9f\xf4\xcf\xe7\x26\x93\xf5\x65\xa6\xe0\xeb\xe9\xec\xbe\x7f\x02\x00\x00\xff\xff\x94\x0c\xfa\xd5\xb8\x00\x00\x00" +var _idtablestakingScriptsGet_tableCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xca\xc2\x40\x10\x06\xfb\x7b\x8a\x8f\x54\x49\xf3\xa7\xff\xeb\x20\xa4\xb1\x49\x3a\xb1\x38\x2f\x9b\xcb\xe2\x65\x2f\xec\x6d\x10\x11\xdf\x5d\x04\x3b\xad\x87\x19\x86\xd7\x2d\xab\xe1\x90\xf2\xad\xef\x46\x7f\x49\x34\x98\xbf\xb2\x44\xcc\x9a\x57\x54\xdf\xa0\x72\xae\x6d\x31\x2e\x5c\x50\x82\xf2\x66\x50\xb2\x5d\xa5\xc0\x16\x42\xd8\x55\x49\x0c\x3c\x91\x18\xdb\x1d\xf6\x56\x91\x48\xa2\x2d\xce\xf9\x10\xa8\x94\xda\xa7\xd4\x60\xde\x05\xab\x67\xa9\x9b\x7f\x9c\x06\x53\x96\x78\xc6\xc3\x01\xf8\x14\x7f\x5c\xfd\x45\xb2\x63\x9e\xa8\xef\x4a\xdd\xb8\xe7\x2b\x00\x00\xff\xff\x9f\x7f\xe9\x36\xbe\x00\x00\x00" func idtablestakingScriptsGet_tableCdcBytes() ([]byte, error) { return bindataRead( @@ -3640,11 +3700,11 @@ func idtablestakingScriptsGet_tableCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_table.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0xf8, 0x5a, 0xde, 0x69, 0xf4, 0xb2, 0x52, 0xda, 0x8c, 0xf5, 0xfd, 0xb, 0x8, 0x27, 0x24, 0xc0, 0x38, 0xc, 0x44, 0x35, 0xdf, 0xfc, 0x26, 0xe7, 0xe6, 0x2d, 0xd, 0x2d, 0x51, 0x84, 0x99}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x37, 0xc8, 0x81, 0x80, 0x7d, 0x40, 0xfd, 0xf, 0xc7, 0x71, 0xe, 0x59, 0x88, 0xdd, 0x66, 0x97, 0x72, 0x23, 0xc6, 0xf1, 0x52, 0xa2, 0x60, 0x27, 0xb8, 0x71, 0x9d, 0x2, 0xcf, 0x39, 0x24, 0x16}} return a, nil } -var _idtablestakingScriptsGet_total_stakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x6b\xfa\x30\x1c\xc5\xef\xfd\x2b\x9e\x37\xe5\x07\xea\xe1\xb7\x31\x06\x3d\x28\x55\x28\x0c\x0f\x6b\x3c\x8c\xb1\x43\xac\xdf\xba\xd0\x34\x91\xe4\x9b\x4d\x19\xfe\xef\xc3\xc4\x39\x0b\xeb\xa1\x21\xf0\xde\xe7\x7d\xa2\xba\xbd\x75\x8c\xa5\xb6\x9f\x65\x21\xe4\x46\x53\xc5\xb2\x55\x66\x87\xc6\xd9\x0e\xd3\x43\x59\x2c\x56\xa2\x14\x2f\x62\x36\x7f\x5a\xcc\x8a\xe2\x79\x51\x55\x59\xb6\x0f\x1b\x34\xc1\xa0\x93\xca\x0c\x47\x8f\x58\x2f\xd5\xe1\xfe\x3f\xbe\x32\x00\xd0\xc4\xf0\x2c\x5b\xda\x0a\xdb\x92\xf1\xc8\xff\xe0\x8f\x77\xc4\xc2\xb2\xd4\x29\x53\xc5\xfc\xfc\xb8\xb2\x5b\x12\xc7\x3d\x0d\x47\x59\x64\x4d\x26\xa8\xa5\xae\x83\x96\x4c\xe0\x77\x02\x9f\x3b\x30\xa1\xdb\x90\x83\x6d\xc0\x69\x22\xed\xc5\xca\x87\x74\x29\x95\x98\x57\xb9\x1c\xd3\xf1\x34\x26\x1a\xeb\x60\x2e\x43\x50\xa6\x27\x3b\x6e\xe9\xe8\x2f\x0f\xb9\x08\x14\x16\xc6\x32\x6a\x1b\x0c\x43\xd6\x35\x79\x1f\xeb\xfe\x1a\x52\xcd\x2f\x6f\x90\x63\x5d\x1a\x7e\x18\xde\x8d\x6e\x30\xe7\xef\x46\x0a\x79\xef\xf6\xaf\xa7\xf0\xfa\xc3\x7a\x1b\x5c\xfb\xa7\x2c\xfd\xe3\xe1\x88\x83\x33\xb7\x84\xec\xf4\x1d\x00\x00\xff\xff\x92\x54\xac\x93\xc9\x01\x00\x00" +var _idtablestakingScriptsGet_total_stakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x4f\xc3\x30\x14\x84\x77\xff\x8a\x6b\xa7\x44\x48\x6d\x07\x40\x08\x29\x0b\xaa\x2a\x75\x61\x69\x3a\x21\x06\x37\x7d\x29\x56\x1c\xbf\xca\x7e\x01\x2a\xd4\xff\x8e\x6a\x97\x90\x08\x3c\xd8\xb2\x7c\xf7\xdd\xf9\x99\xf6\xc8\x5e\xb0\xb2\xfc\xb1\x5e\x96\x7a\x67\x69\x23\xba\x31\xee\x80\xda\x73\x8b\xe9\xdf\x87\xa9\x52\xba\xaa\x28\x84\x4c\x5b\x9b\xa3\xee\x1c\x5a\x6d\x5c\x96\x3f\x62\xbb\x32\x9f\xf7\xb7\xf8\x52\x00\x60\x49\x10\x44\x37\xb4\x2f\xb9\x21\x17\x50\xfc\x93\x32\x3b\x90\x94\x2c\xda\x26\xcd\x26\xea\x9f\x4e\xcf\xbc\xa7\xf2\x74\xa4\x2c\x57\x91\x35\x9f\xa3\xd2\xb6\xea\xac\x16\x82\xbc\x11\xe4\xe2\x81\xeb\xda\x1d\x79\x70\x0d\x49\x11\x29\x2f\x5a\xde\xb5\x4f\xaa\xc4\xec\xcb\x15\x58\xcc\x16\x51\x51\xb3\x87\xbb\x06\xc1\xb8\x51\xd9\x59\x43\xa7\x70\xfd\xc8\xb5\xc0\x92\xe1\x58\x50\x71\xe7\x04\x69\x02\xd1\x1e\x7a\x91\xa9\x7f\x79\x93\x02\xdb\xb5\x93\x87\xec\x2e\x1f\x60\x2e\x6b\x50\x0a\xc5\xe8\x76\x33\xaa\xf0\xf2\xc3\x7a\x9d\xf4\xfe\xb3\x4a\x7b\x3c\x3c\x49\xe7\xdd\x90\xa0\xce\xdf\x01\x00\x00\xff\xff\x4d\x18\xa4\x68\xcf\x01\x00\x00" func idtablestakingScriptsGet_total_stakedCdcBytes() ([]byte, error) { return bindataRead( @@ -3660,11 +3720,11 @@ func idtablestakingScriptsGet_total_stakedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_total_staked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0xe, 0x2f, 0xe3, 0x9c, 0xa, 0x4d, 0xce, 0x85, 0x12, 0x72, 0x14, 0x74, 0x65, 0x62, 0x3b, 0x74, 0x22, 0x25, 0xaf, 0x1a, 0x94, 0x4d, 0x5d, 0x4c, 0x74, 0xb6, 0x76, 0xd3, 0x6d, 0x7e, 0xf6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xee, 0x84, 0x69, 0x78, 0x9e, 0xaf, 0x71, 0x2a, 0xc4, 0x96, 0xa3, 0xa6, 0x92, 0x57, 0x3c, 0x53, 0xe3, 0x4, 0xe7, 0x79, 0x41, 0x9e, 0x30, 0xd3, 0xee, 0x4c, 0xf1, 0x6c, 0xee, 0x29, 0x62, 0x56}} return a, nil } -var _idtablestakingScriptsGet_total_staked_by_typeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xc1\x4a\xc3\x40\x14\x45\xf7\xf3\x15\xd7\x5d\xbb\xb1\x2e\x44\xa4\xe0\xa2\x25\x29\x04\xa4\x0b\x33\x5d\x88\xb8\x98\x34\x2f\xed\x90\xc9\x7b\xc3\xcc\x0b\xb6\x88\xff\x2e\x89\xba\x73\x7b\xb9\x9c\x73\xfc\x10\x25\x29\x76\x41\x3e\xaa\xc2\xba\x26\x50\xad\xae\xf7\x7c\x42\x97\x64\xc0\xdd\xa5\x2a\xca\xbd\xad\xec\xab\xdd\x6c\x9f\xcb\x4d\x51\xbc\x94\x75\x6d\xcc\x6a\x05\x7b\xf6\x19\xf9\x98\x7c\x54\x24\xd2\x31\x71\x86\x9e\x09\x8d\x0b\x8e\x8f\x04\xe9\x90\xd5\xf5\xd4\x42\xa5\x27\xce\xd3\xe0\xc0\xd2\x92\x31\x71\x6c\xd0\x8d\x8c\xc1\x79\x5e\x24\x09\xb4\xc6\xa1\x62\x7d\x5c\xae\x71\xd8\xf9\xcb\xc3\x3d\x3e\x0d\x00\x04\xd2\x3f\xc8\xd3\x3f\x8d\xb7\x27\x52\x2b\xea\x82\x9d\x0d\xf5\xfc\xdc\x5e\xf7\xd2\x92\xbd\x46\x5a\x2c\xcd\x4c\xf9\xa9\xfb\x05\xbd\x4d\xba\xf7\x1b\xf3\xf5\x1d\x00\x00\xff\xff\xa3\x91\xa6\x55\xfa\x00\x00\x00" +var _idtablestakingScriptsGet_total_staked_by_typeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\x03\x41\x10\x46\xfb\xfd\x15\x9f\xa9\xee\x1a\xd3\x88\x48\xc0\x46\x24\x90\xc6\x26\x9b\x4a\x2c\x26\x7b\x73\xc9\x72\x73\x33\xc7\xee\x04\x0d\xe2\x7f\x97\x9c\x5a\x99\x76\xe6\xe3\xbd\x97\xc7\xc9\x8a\x63\x2d\xf6\xbe\x79\x8e\xb4\x17\xde\x3a\x0d\x59\x0f\xe8\x8b\x8d\x58\xfc\x7f\x2c\x42\x58\x2e\x11\x8f\xb9\xa2\xa6\x92\x27\x47\x61\x3f\x15\xad\xf0\x23\x63\x4f\x42\x9a\x18\xd6\xa3\x3a\x0d\xdc\xc1\x6d\x60\xad\x97\x03\x41\xad\xe3\x10\x28\x25\xae\xb5\x21\x91\x16\xfd\x49\x31\x52\xd6\xa6\x98\xf0\x0a\xbb\x8d\xfa\x43\xbb\xc2\x6e\x9d\x3f\xee\xef\xf0\x19\x00\x40\xd8\xff\x60\x8f\x57\x4a\x6f\x0f\xec\xd1\x9c\x24\xce\xa6\xed\xbc\x7c\x3a\xbf\x58\xc7\xf1\x3c\x71\xd3\x86\x99\xf2\x53\xf9\x0b\x7a\xbd\xe8\xde\x6e\xc2\xd7\x77\x00\x00\x00\xff\xff\x86\x18\xde\x12\x00\x01\x00\x00" func idtablestakingScriptsGet_total_staked_by_typeCdcBytes() ([]byte, error) { return bindataRead( @@ -3680,11 +3740,11 @@ func idtablestakingScriptsGet_total_staked_by_typeCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_total_staked_by_type.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0x23, 0xae, 0xad, 0x6a, 0x8a, 0xa, 0x6e, 0x26, 0x92, 0x41, 0x25, 0x43, 0x64, 0x93, 0x17, 0xde, 0xa4, 0x31, 0x94, 0x9d, 0xb7, 0xb2, 0x15, 0xcb, 0xe1, 0xf8, 0x7b, 0x9a, 0x28, 0xf6, 0xa4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xa5, 0x8b, 0x42, 0xe8, 0x8b, 0x45, 0x62, 0x3c, 0x6, 0x1b, 0x16, 0xa7, 0xc3, 0xfc, 0xf9, 0x75, 0xc8, 0x3b, 0xbe, 0x43, 0x97, 0xee, 0x83, 0xd6, 0x7f, 0xa5, 0x89, 0x4d, 0x3c, 0xdb, 0xe6}} return a, nil } -var _idtablestakingScriptsGet_weekly_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4b\xc4\x30\x14\xc7\xf1\x3d\x7f\xc5\x6f\xbc\x5b\x3c\x07\x71\x70\x3b\x49\x0e\x0a\x22\x62\xe3\xe0\xf8\xda\x7b\x6d\x43\xdb\xbc\x90\xbc\x60\x45\xfc\xdf\xa5\xe0\x78\xeb\x77\xf8\xf0\x0d\x6b\x92\xac\xb8\x2c\xf2\xd5\x58\x4f\xdd\xc2\xad\xd2\x1c\xe2\x88\x21\xcb\x8a\xfb\xad\xb1\xee\xd5\x37\xfe\xd3\x9f\x9f\x5f\xdc\xd9\xda\x77\xd7\xb6\xc6\x9c\x4e\xf0\x53\x28\x28\x7d\x0e\x49\x91\x59\x6b\x8e\x05\x3a\x31\x3a\x5a\x28\xf6\x0c\x19\x50\x94\x66\xbe\x42\x65\xe6\x58\xf6\x40\x88\x72\x65\x63\x52\xed\x30\xd4\x88\x95\x42\x3c\x1c\x9f\xf0\x71\x09\xdb\xe3\x03\x7e\x0c\x80\x7f\xec\xc6\xd2\xdd\xc8\xea\x92\xf4\x93\xdf\xc1\x37\xfa\x96\xaa\x87\xa3\xf9\xfd\x0b\x00\x00\xff\xff\xaa\x9e\x1d\x2b\xc4\x00\x00\x00" +var _idtablestakingScriptsGet_weekly_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x8a\x83\x40\x10\xc6\xf1\x7e\x9f\xe2\xc3\x4a\x9b\xb3\x39\xae\xb8\xfa\x4e\x48\x17\x88\x79\x80\x71\x1d\x75\x71\xdd\x91\x9d\x91\x24\x84\xbc\x7b\x10\xd2\x25\xed\xf7\xc1\x8f\x7f\x58\x56\xc9\x86\x26\xca\xe5\xf0\xd7\x52\x17\xf9\x64\x34\x87\x34\x62\xc8\xb2\xa0\x78\x3f\x0a\xe7\xea\x1a\xed\x14\x14\xea\x73\x58\x0d\x99\x6d\xcb\x49\x61\x13\xa3\xa3\x48\xc9\x33\x64\x80\x1a\xcd\xdc\xc3\x64\xe6\xa4\xfb\x40\x48\xd2\xb3\x73\xe4\x3d\xab\x96\x14\x63\x85\x61\x4b\x58\x28\xa4\xb2\xfa\xc5\xb9\x09\xd7\x9f\x6f\xdc\x1d\x80\x17\xfa\x21\xec\x6b\x64\xfb\x5f\xc5\x4f\xed\x0e\x1f\xe9\x26\x9b\x95\x95\x7b\x3c\x03\x00\x00\xff\xff\x18\x12\xd8\x60\xca\x00\x00\x00" func idtablestakingScriptsGet_weekly_payoutCdcBytes() ([]byte, error) { return bindataRead( @@ -3700,31 +3760,11 @@ func idtablestakingScriptsGet_weekly_payoutCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_weekly_payout.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9b, 0xeb, 0x9b, 0x20, 0x40, 0xd3, 0x5b, 0x8, 0x6d, 0xe7, 0x22, 0xb, 0xdd, 0x87, 0xa4, 0x41, 0xf2, 0xb5, 0xc2, 0x43, 0x2d, 0x8f, 0x9a, 0x65, 0xf4, 0x31, 0xfa, 0xd2, 0x6f, 0xda, 0x4f, 0x9d}} - return a, nil -} - -var _inspect_fieldCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xc1\x09\x42\x31\x0c\x06\xe0\x7b\xa7\xf8\x8f\x7a\x91\x22\x5a\x1f\xde\xbc\x74\x01\x71\x80\xbe\x9a\x42\xc0\x26\x8f\x98\xea\x03\x71\x77\x17\x70\x81\x8f\xfb\xa2\xe6\xc8\x0f\x7d\x5f\xc9\x5e\x5c\xe9\x52\xab\x0e\x71\x34\xd3\x8e\xb8\xb6\xe9\x9e\x28\x1e\xa7\x34\xc7\xb2\x8f\xf5\x14\xc2\x32\x66\xb4\x21\xe8\x85\x65\xb3\x3d\xe3\x96\x79\x4d\x07\x7c\x02\x00\x18\xf9\x30\xf9\xe3\xed\xdc\x8a\x3c\x4b\x75\x56\xc9\x44\xe1\xfb\x0b\x00\x00\xff\xff\x7c\xe1\x51\x3b\x7a\x00\x00\x00" - -func inspect_fieldCdcBytes() ([]byte, error) { - return bindataRead( - _inspect_fieldCdc, - "inspect_field.cdc", - ) -} - -func inspect_fieldCdc() (*asset, error) { - bytes, err := inspect_fieldCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "inspect_field.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x74, 0xeb, 0x82, 0x68, 0x87, 0xc8, 0xaf, 0x97, 0x60, 0xf6, 0x63, 0x18, 0x23, 0x85, 0x7b, 0xb6, 0xf6, 0xbb, 0x8c, 0x4d, 0x40, 0x9c, 0x25, 0xc, 0xc5, 0x56, 0xa, 0xdf, 0x63, 0xa8, 0x28, 0xea}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0x33, 0xf7, 0xf1, 0xb5, 0x1, 0x7e, 0x39, 0x3f, 0xe8, 0x81, 0x91, 0x4, 0x3e, 0x4c, 0x38, 0xba, 0x10, 0x42, 0xdd, 0xcc, 0x18, 0xf7, 0xcf, 0xa, 0xd1, 0x9e, 0x85, 0x1d, 0xc7, 0xe2, 0x81}} return a, nil } -var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x57\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\xf6\x50\xc8\x80\x63\x79\x8f\x15\x92\x2e\x5c\xc7\x69\x17\x71\x37\x41\x92\x6d\xce\x8c\x34\xb6\x08\xcb\xa4\x4a\x52\x76\x8d\x20\xff\xbd\xa0\xa8\x17\x25\xca\x8f\xa2\xc5\xfa\x64\x49\xdf\xbc\xbe\x79\x70\x48\xb7\x19\x17\x0a\xe6\xe2\x90\x29\xee\x95\x4f\x77\x29\xdf\xbf\xf0\x0d\x32\x58\x09\xbe\x85\xe9\xdf\x77\xcb\x87\xd7\x97\x87\xfb\xc5\xb7\xd9\xed\xed\xd3\xe2\xf9\xb9\x06\xe6\x6c\x4d\xdf\x52\xb4\xc1\xdf\xbf\xfd\xf6\xf5\xd7\xe5\xc2\x25\xb0\xe4\xd1\x06\xe3\x02\x2e\x2b\xfc\xf2\x61\x7e\xbf\xb8\xb5\xd0\x5e\x10\x04\xf0\x22\x08\x93\x24\x52\x94\x33\x50\x09\x51\xa0\x12\x84\x2d\xa1\x0c\x54\x61\x8e\xc4\x5b\xca\x60\xcf\xf3\x34\x06\x49\xd7\xac\x10\x52\x1c\x22\x81\x44\x21\x10\x90\x09\x11\x18\x03\x89\x22\x9e\x33\x05\x84\xc5\x40\x18\xe4\x2c\x2d\x9c\x28\xe0\xc4\x7c\x5a\x71\x01\x04\x72\x89\xc2\xf3\x54\x63\xd6\xf7\x00\x00\x32\x22\x14\x25\xe9\x4c\x9b\x7b\xcc\xdf\x52\x1a\xdd\xe3\x21\x2c\x29\x9b\xdc\xe3\x61\x49\xa5\x5a\x30\x25\x0e\x63\x08\x02\x78\x45\xba\x4e\x54\x08\x9f\xa7\xd3\xb6\xf8\x77\x89\xe2\x02\xe9\x9f\x4b\xe9\x55\x9e\x5e\x2a\xfa\x79\x3a\x9d\x7a\x23\x80\x77\xcf\xd8\x17\x98\x11\x81\x7e\x41\x57\x08\xb3\x5c\x25\x33\xc3\xc8\xa8\x82\xe8\x5f\x10\xc0\xdc\x10\xa7\x69\x66\xb8\xaf\x78\x93\x86\xb8\x38\xd6\x1f\xa8\x80\x0d\x1e\x64\x2d\x95\xa2\x2a\x69\x2e\x75\xc2\x4d\xdb\x82\x9f\x91\x03\x8a\xd0\xa4\x6a\x64\x49\x69\xb2\xcf\x91\xa9\x85\x2c\x33\x13\xed\xc5\x84\xc4\xb1\x9f\x35\xc4\x38\x13\x35\xa9\x01\x63\x48\x88\x4c\x66\xe9\x9a\x0b\xaa\x92\xed\x10\xde\x02\x8d\x61\x5f\xb2\xea\x06\x9b\xaf\xa3\xcb\x9d\xb4\x72\x7a\xda\x47\x1b\x7e\xdc\x45\x1b\x5b\x79\x58\xbb\xd8\x22\xde\xe9\x60\xaf\xe2\x8e\x78\xd7\xc7\x0e\xb8\xd6\x07\xf6\xfc\x6a\x0a\x90\x40\x26\xe8\x4e\xff\x4b\x29\xdb\xe8\x96\xd6\x25\x29\x15\xd7\xdd\xbc\x23\x79\xaa\xac\x4a\x2a\xde\xcc\x49\x46\xde\x68\x4a\xd5\x01\x6e\xec\x2c\xd4\x58\xfd\x9b\x68\x8d\xd7\x3f\xd5\x03\x6e\xf2\xa7\x16\xfe\xc5\xb7\x40\x85\x37\xa5\x0b\xc1\xaa\x82\x16\xc8\x71\x0f\xa8\x88\x58\xa3\x0a\x21\xd0\xfe\x91\x75\x57\xc0\xc2\x8f\xac\xa7\x2f\x5f\x20\x23\x8c\x46\xfe\xa7\x79\x31\xc3\x18\x57\x26\x60\xed\x1d\x98\x91\x5a\xe8\x80\xa8\x0e\xee\x93\x4d\x58\x3d\xea\xcc\x48\x2b\x07\xe3\x96\x30\xb2\x46\x51\xf4\x6d\xc9\x1a\x55\xa0\xe7\xa6\xa6\xd1\x1a\x8a\x16\x91\x69\x33\x9c\xff\x28\x55\x5c\x5f\x59\x23\x7b\x62\x0c\x2e\x7b\x40\xbf\x48\x42\xd8\xcd\xc5\x50\x63\x48\xb2\x43\xff\xfa\xaa\x6f\x70\x0c\x8a\x87\xb6\xc9\xbe\xb1\x67\xc3\xf4\x23\x51\x49\x8b\x0e\x1d\x81\x6a\xa1\x2e\xab\x88\x13\x26\x1d\x15\x72\x42\xe2\xd1\xd4\x8f\x76\x72\xb8\x68\xce\x0f\xb4\x56\x31\x3a\x56\x39\x76\xfe\xdd\x65\x53\xf3\xf4\x3b\x4f\xe3\xc1\x14\xbf\x34\x08\x3b\x74\x93\xb3\x59\x1c\x0b\x94\x32\xec\xe4\x95\x98\xd7\x76\xc0\xed\xa4\x84\x03\x29\x6a\xc2\x73\x0f\xaa\xa2\x60\x2c\xad\xd7\x57\xad\x20\xba\x06\x3b\xcc\xb6\x82\x69\x51\x3a\x3e\x65\xd4\x51\x19\x2d\x4d\xef\x8e\xe4\x95\x92\x5f\xd9\x8a\x7f\x74\x4a\xe6\x38\xda\xcc\xc5\x7e\xb1\x38\x0b\xc5\x1d\x8e\x2b\x9a\x3a\xd7\xc5\xb1\xf5\xa3\x3a\xc2\x9c\x99\xff\x53\x3f\xc0\xf9\x73\xb5\xbd\x36\xea\x43\xa5\xdd\x2c\xce\x0e\x31\xac\xf1\x34\x45\xb3\x85\xde\x18\x61\x9b\xad\x37\x2e\x04\xdf\xbb\xea\xa4\x23\xee\x60\x4c\x6f\xc0\xc3\x51\x77\xe4\xff\x7d\xf4\xc6\x45\x10\xb8\x42\x81\x2c\x42\x1d\xbd\xa1\x21\xaa\xb5\xb7\x09\x70\x05\xaf\x7b\xbb\xda\xd0\x2c\x83\x56\x21\x5d\x32\x17\xaa\x45\xbc\x2b\xda\x6e\xc1\xe1\x81\x32\x33\xeb\xac\xab\xba\x5d\x9d\x10\x04\xf0\xb0\x43\x21\x68\x6c\x16\xdc\x18\x57\xc5\xd1\xda\x5c\x75\x04\x46\x48\x77\x28\x06\x8e\xac\x9c\xe9\x1a\xf2\x03\xb3\x0c\x35\xa7\xfc\x53\x29\xe6\x3c\x98\xf5\x1a\x5d\xe9\x35\x77\x98\x2d\x11\x1b\x59\xbd\x2b\x0f\x6c\x09\x44\x36\xd7\x12\xb7\x79\xd3\x93\x33\x76\x78\x42\xc9\x73\x11\xe1\xbb\x75\xf7\x9a\x54\x6e\x74\xc7\xce\xa0\xbf\x67\xcc\x99\x33\x0f\x24\x2b\xf0\x2c\x57\xc0\xb8\xd8\x92\xb4\x09\x9c\x32\x7d\x19\xd3\xb7\x10\xcd\x49\xce\xe8\x5f\x39\x42\xd6\xd6\xf1\xdf\xc6\x6a\x88\xbc\x3b\x2f\xe2\x53\x7b\x9b\xe9\xae\x0f\xef\xc3\xfb\x27\x00\x00\xff\xff\xee\x39\xfd\xd7\x2b\x0f\x00\x00" +var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xde\x63\x8d\x24\x0b\xd7\xe8\xa2\xc5\xa6\xe8\xa2\x4d\x77\xcf\x13\x69\x6c\x11\xa6\x48\x95\xa4\x6c\x18\x8b\xbc\x7b\x41\x51\x7f\x94\x25\x3b\x6e\x57\x87\xc0\xa2\xe6\xf7\x9b\x99\x8f\x13\x96\x17\x52\x19\xd8\xa8\x53\x61\x64\x50\xbf\x7d\xe2\xf2\xf8\x22\xf7\x24\x60\xab\x64\x0e\xb3\xf6\x7d\xd6\x4a\x94\x62\xc7\x5e\x39\x79\x52\xfd\xb3\x56\xf2\x59\x26\x7b\x4a\xab\x33\x5d\x0b\xf6\x8f\x66\x41\x10\xc7\x31\xbc\x28\x14\x1a\x13\xc3\xa4\x00\x93\xa1\x01\x93\x11\xe4\xc8\x04\x98\xca\x03\xa6\x39\x13\x70\x94\x25\x4f\x41\xb3\x9d\xa8\x94\x8c\x84\x44\x11\x1a\x02\x04\x9d\xa1\xa2\x14\x30\x49\x64\x29\x0c\xa0\x48\x01\x05\x94\x82\x57\xbe\x2a\x71\x74\x9f\xb6\x52\x01\x42\xa9\x49\x05\x81\xe9\xdc\x86\x01\x00\x40\x81\xca\x30\xe4\x6b\xeb\xee\x4b\xf9\xca\x59\xf2\x99\x4e\xab\x1a\x9e\xe8\x33\x9d\x9e\x99\x36\xbf\x08\xa3\x4e\x0b\x88\x63\xf8\x46\x6c\x97\x99\x15\x7c\x58\x2e\xfb\xea\x7f\x6b\x52\x37\x68\xff\x54\x6b\x6f\x4b\x7e\xab\xea\x87\xe5\x72\x19\xcc\x01\xbe\x07\xce\xbf\xa2\x02\x15\x85\x15\x5c\x2b\xc0\xd2\x64\xe1\xcf\x52\x29\x79\xfc\x8a\xbc\xa4\x39\xdc\xad\x1d\x40\xf3\x46\xc3\x3e\x71\x0c\x1b\x87\xa3\x45\x5d\xd0\xb1\x81\x51\x3b\x1c\xd3\xd4\x7e\x60\x0a\xf6\x74\xd2\xad\x16\x27\x53\xa3\x5e\xdb\x84\x47\xa8\x7f\x85\x05\x9e\x48\xad\x5c\xd5\xe6\x9e\x86\xc5\xfd\x9a\x7c\xab\xe0\x99\x8f\xac\xf7\x08\xd3\x34\x2c\x3a\x7c\x46\xeb\x15\xb5\x02\x0b\xc8\x50\x67\x6b\xbe\x93\x8a\x99\x2c\x9f\x92\xf7\x84\x16\x70\xac\xc1\x1d\x17\x76\x5f\xe7\xb7\x07\xe9\x95\xf6\x7a\x8c\xbe\xf8\xe5\x10\x7d\xd9\x26\xc2\x36\xc4\x1e\xe8\xa3\x01\x9e\x35\xde\x85\xe8\xce\x65\x27\x42\x3b\x17\x3c\x8b\xab\x6b\x3c\x84\x42\xb1\x83\xfd\xc5\x99\xd8\xdb\xc9\xb6\xad\xa8\x8d\xb4\x43\x7d\xc0\x92\x1b\xaf\x8b\xaa\x93\x0d\x16\xf8\xca\x38\x33\x27\x78\x1c\x54\x21\x69\x3e\x31\xd2\x91\xb5\x82\x3b\x8a\x98\xd6\x25\xb5\x66\xec\xf3\x50\x0d\x88\xc7\x5b\xd1\x37\x66\xb2\x54\xe1\x71\x0e\x77\x2d\xed\x45\x5f\xad\xbf\x27\x4f\x37\x8c\x6b\xbb\xf1\xb6\x11\xab\xa4\xfc\xf4\x5a\x7e\x72\x3c\x54\xb3\x59\x8e\x02\x77\xa4\xaa\xe9\xaa\x73\x64\x06\x2c\xd9\xd9\xa4\x3d\x26\xf3\xd2\xe6\x1d\x71\xfe\x5e\x9b\x78\xb8\xf7\x18\x36\x72\x0e\x9f\xcf\x04\xc3\x0a\xb2\xd5\x10\xb9\xa9\x36\x6e\x30\xd3\x78\xa0\xf0\xe1\xfe\xdc\xf1\x02\x8c\x5c\xf9\xae\xcf\x9d\xfe\xe5\xac\x7c\x41\x93\xf5\x60\xb1\x99\x98\x9e\xd4\x74\x1d\x3d\xc0\x2f\x14\xf5\x4a\x1d\xaf\x44\xf9\x14\x7a\x7e\xec\xf3\xff\xf2\xfa\x55\xf2\x74\xb2\x34\x2f\x9d\x84\xef\xd7\x61\xbc\x4e\x53\x45\x5a\xaf\x06\xf5\x40\x77\xbc\xf0\x34\xfa\x20\xae\x26\x20\x6d\x15\x26\xe8\xc0\x2b\xb4\x3f\x1c\xf7\xbd\x64\x86\x8e\x07\xa5\xef\x25\xd5\xc3\x66\xcc\xb7\x05\x89\x89\xad\xdc\x60\x01\x8f\x5e\x24\x17\xca\x7b\x37\xe5\x6c\x50\xba\xdb\x62\x1a\x83\xc3\x0b\xa2\x22\x41\x9d\x85\x75\xbc\x0b\x40\x33\xda\xf2\xb5\xf2\x6f\x62\x2b\x1d\xd9\x4d\x35\x46\x75\x93\x6c\x24\xe7\xe4\x36\x9d\x47\x77\xe3\x35\xd9\xfa\xed\xfe\x5a\xdd\xdb\x63\xb9\x0f\xcc\x8c\xf4\xaf\xdd\xb3\xa6\xa7\x73\xa0\x3f\x86\x8e\x8f\x90\x7d\x3e\x7e\x84\x02\x05\x4b\xc2\xd9\xa6\xda\xc2\x84\x34\xe0\x42\x04\x45\x5b\x52\x24\x12\xb2\xbc\xed\x36\xb5\xa4\xb5\x3e\xeb\x01\x31\x06\x82\x6d\xed\x66\x0d\xf0\x1c\x7a\x03\x70\xcb\x58\x34\x4b\xdf\x50\xb5\x5f\xe7\xe9\x79\x5a\xbb\xd5\xe9\xfd\xd3\x14\xc7\xf0\xc7\x81\x94\x62\xa9\xdb\x9f\x52\xda\x5a\x8e\xed\x2d\xd1\x8a\x12\x62\x07\x52\x13\x5c\xeb\xf5\x5c\x29\x9a\xae\x8b\xdd\x1d\xdc\x5d\x2f\x7f\xd6\x66\x46\x6f\x18\xbb\xb5\x35\x7e\xdc\x06\x9d\xa3\xda\xeb\xe6\xac\xbe\x79\x34\xa0\xee\x96\xe2\x7e\x7f\xf6\x18\x5e\x77\x69\xdf\x70\xb1\x3e\xdc\x7d\xf7\x09\xb8\x09\xf7\xed\x29\xbc\x85\x4e\xdf\x81\x51\x83\xd0\x08\x7d\x0e\x13\xf0\x0b\x6c\xe7\x77\x12\xd6\x89\xda\x16\xa5\x01\x21\x55\x8e\xbc\xc3\x97\x09\xfb\x1f\x87\x5d\xb5\x2d\xf4\xa5\x60\xff\x94\x04\x45\x7f\x7e\xda\x91\x6f\xac\xff\x38\x30\x27\xf7\x8e\xff\x8a\xdc\x30\xce\x69\xcc\x1c\xc6\x9f\x2e\x20\x67\xff\xbe\x05\x6f\xc1\xbf\x01\x00\x00\xff\xff\xaf\xee\x68\xd2\x57\x0e\x00\x00" func lockedtokensAdminAdmin_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3740,11 +3780,11 @@ func lockedtokensAdminAdmin_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x60, 0x18, 0xb5, 0x3a, 0x77, 0x18, 0x85, 0x6e, 0x97, 0xa3, 0x8f, 0xcd, 0xf8, 0x4e, 0x1a, 0x1, 0xe, 0x28, 0x32, 0x4, 0x29, 0x8e, 0x94, 0x96, 0x66, 0xa6, 0x68, 0xd, 0xb0, 0xd8, 0x9c, 0x99}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8, 0x7d, 0x60, 0xa4, 0xb3, 0xc9, 0x1d, 0x40, 0x3b, 0xe2, 0xeb, 0x74, 0xb5, 0x11, 0x4b, 0x52, 0xa3, 0x6d, 0xd6, 0xa3, 0x70, 0x4d, 0xea, 0x5, 0xab, 0xb5, 0x40, 0x3f, 0x87, 0x25, 0xb2, 0xb8}} return a, nil } -var _lockedtokensAdminAdmin_deploy_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x4f\xc1\x4a\xc5\x30\x10\xbc\xf7\x2b\xf6\xd8\x42\xe9\x07\x14\x3c\x14\x11\x84\x27\x5e\xf4\x26\x1e\x62\xb2\x36\xa1\x6d\x36\x6c\xb6\x68\x90\xf7\xef\xd2\x86\xf6\x45\xcc\x61\x92\xcd\xce\xce\xce\xb8\x25\x10\x0b\xdc\x73\x0a\x42\x55\x25\xac\x7c\x54\x5a\x1c\xf9\x5a\x93\x17\x56\x5a\x9e\xd5\x82\x3d\xbc\x08\x3b\x3f\xb6\xa0\xc9\x14\x55\x58\x3f\x66\xa7\x2f\x98\x62\x0f\x6f\x59\xa4\xbb\x60\x7a\x72\x51\x1e\xbc\x70\x7a\x6f\xe0\xa7\x02\x00\xd8\x21\x30\x06\xc5\x58\x2b\xb3\x38\xdf\xc3\xb0\x8a\x1d\xb4\xa6\xd5\xcb\x41\xdb\xce\x8c\x02\x33\xe9\x09\xcd\x2b\x4d\xe8\x23\xdc\x95\xcc\x3a\xa8\x84\xdc\xc3\xae\xd1\xdc\x86\x8a\x81\xee\x70\x1e\x3b\x65\x4c\xed\x77\xff\x65\x9a\x23\xc5\x86\x9d\xc1\xed\x7a\xc4\xef\xba\x69\x0f\xd5\x53\xf6\x93\x18\x26\x4c\xe0\x7c\x11\xb5\xf0\xfa\x6f\xf5\x84\x29\x6f\x3d\xe9\xfd\x26\xd0\x9d\x65\x0b\x56\x45\x3b\xcc\x23\xb1\x13\xbb\xe4\xee\x9f\xaf\x16\xbe\xd0\x8d\x56\x72\x2b\xbf\x6f\x41\xaf\x55\xc6\x6b\xf5\x1b\x00\x00\xff\xff\xdf\x5c\xcb\x79\xbb\x01\x00\x00" +var _lockedtokensAdminAdmin_deploy_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xc1\x4a\xc4\x30\x10\x86\xef\x7d\x8a\x39\x49\x0b\xa5\x0f\x50\xf0\xb0\x8a\x20\xac\x78\x59\xf1\x22\x1e\xc6\x64\x6c\x43\xdb\x4c\x98\x4c\x59\x83\xec\xbb\x4b\x37\x76\xb7\x62\x0f\x7f\x33\x99\x7f\xfe\xc9\xe7\xa6\xc0\xa2\x70\x2f\x29\x28\x17\x85\x0a\xfa\x88\x46\x1d\xfb\xd2\xb0\x57\x41\xa3\xcf\x38\x51\x0b\x07\x15\xe7\xbb\x1a\x0c\xdb\x4d\x15\xe6\x8f\xd1\x99\x3d\xa5\xd8\xc2\x5b\x0e\x69\xf6\x94\x9e\x5c\xd4\x07\xaf\x92\xde\x2b\xf8\x2e\x00\x00\xce\x12\x84\x02\x0a\x95\x68\x27\xe7\x5b\xc0\x59\xfb\xf2\xa0\x2c\xd8\x51\x0d\x77\x2c\xc2\xc7\x57\x1c\x67\xaa\xe0\x66\x67\x0c\xcf\x5e\xd7\xf1\xe5\x1b\x49\x61\x64\x33\x90\x7d\xe1\x81\x7c\x84\x5b\xf8\x75\x95\x01\x13\x49\x0b\xe7\xdc\xea\x3a\xb0\x31\x37\x2b\x4d\x6c\xd0\xda\xd2\x9f\x99\xb6\x84\x2b\xd9\xa2\x8d\xa5\xe5\xf7\x48\x5f\x65\x55\xaf\xa9\x97\xd8\x4f\x16\x18\x28\x81\xf3\x1b\xfc\xcd\x3b\xff\xad\x1e\x28\xe5\xad\x17\x7b\xbb\x04\x34\x97\xb2\x86\x1e\x63\xbf\x1b\x3b\x16\xa7\xfd\x94\xbb\x7f\xae\x6a\x38\x92\xeb\x7a\xcd\xad\x7c\xbe\x82\x9e\x8a\xac\xa7\xe2\x27\x00\x00\xff\xff\x8f\x01\xaf\x74\xcf\x01\x00\x00" func lockedtokensAdminAdmin_deploy_contractCdcBytes() ([]byte, error) { return bindataRead( @@ -3760,11 +3800,11 @@ func lockedtokensAdminAdmin_deploy_contractCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_deploy_contract.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x9a, 0x97, 0x6b, 0xe8, 0x7e, 0x5e, 0x52, 0xde, 0xaf, 0x33, 0x49, 0x33, 0x5e, 0x3e, 0xa7, 0x54, 0x57, 0x9d, 0xa1, 0x71, 0x7e, 0xbe, 0x2e, 0x5e, 0x2b, 0xc2, 0x3a, 0x9d, 0xd4, 0xd2, 0x7a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x61, 0x8, 0x4c, 0x45, 0x80, 0x10, 0x34, 0x60, 0xc1, 0xb0, 0xed, 0xeb, 0xc8, 0x43, 0x86, 0xb6, 0xd9, 0xa4, 0x12, 0x84, 0xc4, 0x57, 0x3, 0xce, 0xb7, 0x53, 0x94, 0x20, 0x92, 0x33, 0x8}} return a, nil } -var _lockedtokensAdminAdmin_deposit_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xdb\x30\x0c\xbd\xfb\x2b\x88\x1e\x36\xe7\x92\xec\x1c\xac\x2b\x0c\x27\xa7\x16\x6b\xd0\xe6\x07\x18\x89\x8d\x85\x2a\xa2\x40\xd1\xe9\x8a\x22\xff\x3e\xc8\x36\x52\xbb\xcb\xb6\xf2\x64\x13\xef\x3d\xf2\x3d\xd1\x1d\x22\x8b\xc2\x1d\x9b\x67\xb2\x5b\x7e\xa6\x90\xe0\x49\xf8\x00\xdf\x7e\xdd\xdd\xd7\xb7\xeb\xd5\xf6\xfe\x76\xfd\xb3\x5a\xad\x1e\xd6\x8f\x8f\x45\xb1\x58\x2c\x40\x33\x0a\xd0\x1e\x5c\x80\xe4\xf6\x21\x81\x36\x2e\x81\x0a\x86\x84\x46\x1d\x07\x50\x06\x4b\x91\x93\x53\x40\x30\x18\x71\xe7\xbc\xd3\xd7\x8e\xee\x82\x72\xee\xb6\x49\xd9\xbe\x42\x14\x3e\x3a\x4b\xf2\x35\x01\x1a\xc3\x6d\x50\xd0\x06\x15\xd0\x7b\x7e\xc9\xd2\x74\xc8\x72\x68\x6d\xc7\x1e\x30\x29\xf7\xb4\x21\x10\x32\x2c\xb6\x28\x46\xd3\xcb\x41\x7a\x33\x28\x57\xd6\x0a\xa5\xb4\x84\xe1\x63\x06\x6f\x45\x01\x00\x10\x85\x22\x0a\x95\x9d\x95\x25\x54\xad\x36\x55\x2f\x7f\x86\xe4\xf2\xa4\x23\x0f\x0f\x64\xc8\x1d\x49\xe0\x1a\xf6\xa4\x03\xfe\x2f\x23\x67\x67\x8d\x5c\xf3\x3d\x69\x7d\xd6\xf9\xfe\x65\x9c\xf9\xbc\xff\x19\xe4\x6a\x21\x54\x96\xb7\xff\x22\x36\xed\xce\x3b\x73\xfa\x51\x4e\x06\xe5\xfa\x24\x75\x83\xda\x4c\xb8\x1f\x56\xde\xb1\x08\xbf\x94\xd3\xee\xcd\x0d\x44\x0c\xce\x94\x57\x35\xb7\xde\x42\x60\x85\x1e\x38\xca\x29\xbf\x4c\x1f\x94\xd0\x13\x09\x05\x43\x57\xb3\x69\xa8\xdd\x21\x55\x39\xfc\x9a\xbd\xa7\xfe\x74\xae\xfb\xcb\xfa\x67\x58\xdb\x0b\xc4\x0f\x19\x5c\xf0\xff\xce\xda\x88\x3b\xa2\xd2\xc4\xfc\x68\xb7\x3f\x1f\x7b\x8e\xd6\xbe\x6f\x53\x1a\x8c\xcb\x8b\xdb\xf7\x39\x9d\x8a\x53\xf1\x3b\x00\x00\xff\xff\x5b\xc8\xe1\xb2\x58\x03\x00\x00" +var _lockedtokensAdminAdmin_deposit_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x41\x6f\xdb\x30\x0c\x85\xef\xfa\x15\x5c\x0e\x9d\x0d\x0c\xce\x3d\x58\x57\x64\xb9\xee\x10\x6c\xc5\xee\x8c\xc4\xc6\x42\x15\x51\xa0\xe8\x16\xc1\xd0\xff\x3e\xc8\xf2\x32\x3b\xcb\x50\x9d\x2c\x42\xef\xf1\x7d\x34\xfd\x29\xb1\x28\x7c\x63\xfb\x4c\xee\x91\x9f\x29\x66\x78\x12\x3e\xc1\x6a\x5e\x5a\x19\xb3\x5e\xaf\x41\xcb\x05\xd0\x9d\x7c\x84\xec\x8f\x31\x83\xf6\x3e\x83\x0a\xc6\x8c\x56\x3d\x47\x50\x06\x47\x89\xb3\x57\x40\xb0\x98\xf0\xe0\x83\xd7\xf3\x28\xf7\x51\xb9\x54\x87\xac\xec\xce\x90\x84\x5f\xbc\x23\xf9\x98\x01\xad\xe5\x21\x2a\x68\x8f\x0a\x18\x02\xbf\x16\x6b\x3a\x15\x3b\x74\x6e\x54\x4f\x6f\x72\xa9\x69\x4f\x20\x64\x59\x9c\x31\xb3\xee\xcd\x64\xbd\x9f\x9c\xb7\xce\x09\xe5\xbc\x81\xe9\xa3\x85\x5f\xc6\x00\x00\x24\xa1\x84\x42\xcd\x88\xb2\x01\x1c\xb4\x6f\xbe\xb2\x08\xbf\xfe\xc4\x30\xd0\x27\xd8\xfd\x49\xee\x29\xb7\x70\xb7\xad\xbd\x2f\xfa\x72\x02\xe9\x0c\xf0\x3b\x59\xf2\x2f\x24\x70\x0f\x47\xd2\xe9\xfd\x7f\xf2\xb4\x17\x8f\x72\x3a\x3b\xeb\xd5\x1d\xc6\x14\x9f\xef\xe6\xd3\xef\xea\x65\x32\xdd\x09\xa1\xb2\x7c\x69\x16\x2e\xe5\xbc\xab\xd9\x0f\x87\xe0\xed\x1e\xb5\x5f\x68\x97\x79\x1e\x1e\x20\x61\xf4\xb6\x59\xed\x78\x08\x0e\x22\x2b\xd4\x54\x33\xdc\x32\xfd\xca\x2b\xf4\x44\x42\xd1\xd2\xaa\x5d\xce\x66\x5c\x96\x6d\x19\xf0\x8e\x43\xa0\xba\x1e\xf7\x75\x7b\x96\xcc\x59\x59\xf0\x48\x9d\xcf\x79\xa0\x2b\xf4\xc7\x1b\x2e\x57\xe8\x37\xb0\x6f\xa9\x7e\xd4\x2e\x0b\xfa\xf6\xc3\xdf\xcc\xff\xfe\xcb\x0e\x9d\xbb\x2c\xc2\xb9\xb1\x98\x36\x37\xa9\xea\xfc\xde\xcc\x9b\xf9\x1d\x00\x00\xff\xff\x84\x09\x5b\x53\x4e\x03\x00\x00" func lockedtokensAdminAdmin_deposit_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3780,11 +3820,11 @@ func lockedtokensAdminAdmin_deposit_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_deposit_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0x1e, 0x26, 0xb4, 0x11, 0xed, 0x11, 0x3, 0x57, 0x39, 0x8f, 0x13, 0xbb, 0x53, 0xfa, 0xf, 0x22, 0x4b, 0x55, 0x77, 0xa1, 0xd8, 0xbe, 0x7a, 0x22, 0x23, 0x55, 0xdd, 0xe4, 0xbd, 0xaf, 0x33}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0x82, 0x4, 0xe6, 0x5b, 0xce, 0x35, 0x7d, 0x2e, 0xd, 0x46, 0xda, 0x8a, 0x52, 0x1a, 0xd5, 0x89, 0x30, 0xea, 0xb4, 0xdf, 0xc2, 0xb0, 0xbe, 0xb3, 0xdb, 0xf6, 0x5e, 0x8d, 0x29, 0x66, 0xd7}} return a, nil } -var _lockedtokensAdminAdmin_remove_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8f\xc1\x4f\xfa\x50\x0c\xc7\xef\xfb\x2b\xfa\xe3\xf0\xcb\x76\x90\x78\x26\x28\x99\x6c\x26\x04\x04\xc3\xde\xc5\x63\x79\x2b\x63\xe1\xed\x75\xe9\x8a\x68\x0c\xff\xbb\x99\x73\x32\x4f\xf6\xd6\xf4\xf3\x69\xbf\x2d\xab\x9a\x45\xe1\xd1\xf1\x79\x91\x18\xdc\x39\xca\x14\x8f\xa5\x2f\x60\x2f\x5c\xc1\xed\xdb\x22\x49\xd7\x66\x61\x5e\x4c\xfc\xb0\x4a\xe3\x24\xd9\xa6\x59\x16\x7c\x5b\x2b\xb6\x47\xca\x0d\x1f\xc9\x37\x3d\xbf\xda\xcc\x97\x69\x62\x36\xcb\x74\xdd\xd3\x81\x0a\xfa\x06\xad\x96\xec\xe1\x23\x08\x00\x00\x6a\xa1\x1a\x85\xc2\xa6\x2c\x3c\xc9\x04\xe2\x93\x1e\x62\x6b\xf9\xe4\x35\xea\x99\xb6\x1c\x29\x54\xe8\xb1\x20\xd9\xd2\x1e\xee\xa0\x13\xc6\x3b\x16\xe1\xf3\xf4\xff\x30\xc2\x78\xd0\x3c\x75\xce\x7d\xd8\xc6\x9a\xc0\x1f\x58\xa6\x2c\x58\xd0\x33\xea\x21\xfa\x39\xdd\xd6\x6c\x06\x35\xfa\xd2\x86\xa3\x39\x9f\x5c\x0e\x9e\x15\xba\xd3\x80\x20\xb4\x27\x21\x6f\x09\x94\x41\x0f\x04\xee\x6b\x31\x68\xbb\xb9\x4f\x3d\x8a\x7e\x3f\x93\x93\xa3\x02\x95\x05\xa6\x37\x83\xcf\xc6\x42\x15\xbf\x52\xd2\x4f\xc3\xe8\xdf\xd5\xcb\xa9\x51\xe1\xf7\xab\xdb\x8d\x2e\xc1\x25\xf8\x0c\x00\x00\xff\xff\x33\x91\x55\x64\xc0\x01\x00\x00" +var _lockedtokensAdminAdmin_remove_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x9e\x39\x94\xe4\x60\x7e\x40\xa9\x16\xb5\x08\x82\x82\xd8\xe2\x7d\xba\x99\xa6\xa1\x9b\x9d\x30\x99\x58\x44\xfa\xdf\x25\x4d\x6b\x23\x1e\x9c\xdb\xee\x9b\xef\xcd\x7b\x55\xdd\x88\x1a\x1e\x83\xec\x9f\x16\x2b\x5a\x07\x5e\x1a\xed\xaa\x58\x62\xa3\x52\x23\xf9\x2b\x24\xee\xc4\x3c\x8b\xdf\x71\xb1\x92\x1d\xc7\xf6\xb4\x3d\xfe\x4a\x9c\x33\xa5\xd8\x92\xb7\x4a\x22\xbe\x9c\x03\x80\x46\xb9\x21\xe5\xb4\xad\xca\xc8\x3a\x05\x75\xb6\x4d\xef\x45\x55\xf6\xef\x14\x3a\xce\x30\xb9\xf3\x5e\xba\x68\xd9\x19\xe9\x27\xb0\xa1\xa6\x48\x25\xeb\x1b\x6f\x70\x83\x81\xcf\x5b\x13\xa5\x92\xf3\xf5\xd1\x61\x36\x19\x07\xc8\x47\x8f\x97\x81\xbd\x4d\xfb\x9c\x53\xfc\xb3\xb6\x1c\x5c\x5f\xc9\xb6\xd9\x4f\x84\x7e\xe6\x73\x34\x14\x2b\x9f\x26\x0f\xd2\x85\x02\x51\x0c\xc3\x69\x10\x94\x37\xac\x1c\x3d\xc3\x04\xb6\x65\x84\xa3\x31\xac\x77\x3e\xa7\x4f\xb2\xdf\xa5\x0a\x0e\x5c\x92\x89\x62\x76\x3d\x6a\x98\x2b\xd7\xf2\xc1\x8b\xb3\x9a\x66\x57\x17\xae\xe0\xd6\x54\x3e\x2f\xec\x20\x1d\xdc\xc1\x7d\x07\x00\x00\xff\xff\x04\xab\xd5\xde\xcf\x01\x00\x00" func lockedtokensAdminAdmin_remove_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3800,11 +3840,11 @@ func lockedtokensAdminAdmin_remove_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_remove_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7b, 0x45, 0x4f, 0xc6, 0x2d, 0xa8, 0x8, 0x67, 0x3d, 0x3b, 0x76, 0x24, 0x7e, 0x97, 0xc8, 0x6, 0x34, 0xe8, 0xea, 0xfa, 0x7b, 0x91, 0x9c, 0x76, 0x38, 0x88, 0x31, 0x29, 0xb2, 0x25, 0x1, 0xf6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdf, 0xa8, 0x3f, 0x3a, 0x74, 0xce, 0x68, 0x6e, 0x7, 0xc0, 0x36, 0x29, 0x95, 0x78, 0x26, 0xc2, 0x17, 0xe2, 0xa9, 0x89, 0x16, 0xce, 0x87, 0x20, 0xb3, 0xe6, 0x1f, 0x1d, 0x99, 0x77, 0x55, 0x20}} return a, nil } -var _lockedtokensAdminCheck_main_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x13\x1f\x8a\x0c\x45\xf4\x2c\xea\x04\x55\x76\xda\x10\x13\x87\xd8\xa5\xe7\xf1\x6a\x24\x2f\x59\xed\x8a\xdd\x11\x69\x09\xfe\xee\x45\xab\x3f\x68\x1b\xe3\x43\xf7\x22\xb4\xfa\xcd\xbc\x37\x4f\x23\xeb\xc6\x58\x86\xfb\x56\x57\xf2\xa8\xe8\x60\x5e\x49\x43\x69\x4d\x0d\x5f\x7e\xdf\xff\x7c\xfa\xfe\xf0\x6d\xbb\x39\xec\x1e\x37\x4f\xd9\x7a\xfd\xb2\xd9\xef\xa3\xb1\x40\x99\xb7\x10\xde\xee\x7e\x05\xe0\x48\x6e\x8d\x78\xa5\xc2\xb3\x6e\x84\xb7\xbb\xfc\x71\xb3\x0e\x71\xb6\xa8\x1d\x0a\x96\x46\xc7\x35\x4a\x9d\x09\x61\x5a\xcd\x29\x64\x45\x61\xc9\xb9\x25\xbc\x47\x11\x00\x40\x63\xa9\x41\x4b\xb1\x93\x95\x26\x9b\x42\xd6\xf2\x69\x80\x27\xa6\x3b\x8a\x18\xb0\xa8\xa5\x7e\xa1\x12\x56\xd0\xe3\xc9\xd1\x58\x6b\xde\xbe\x7e\x9a\xdb\x4a\xfc\x23\xeb\xd8\xdc\x28\x45\xde\xc4\x6d\xdc\x99\x4d\x03\xff\xc9\xec\xe5\x1f\x7c\xcf\xc6\x62\x45\xcf\xc8\xa7\xe5\x64\xa1\x3b\x77\x77\xd0\xa0\x96\x22\x5e\xe4\xa6\x55\x05\x68\xc3\xd0\x9b\x00\x04\x4b\x25\x59\xd2\x82\x80\x0d\xf0\x89\x40\x79\x01\x60\x1f\xad\x77\x0f\x62\xd2\x58\x2c\xc3\xe9\x7a\x78\x98\xfd\x41\x97\xa6\x9f\xb4\x22\x1e\xee\xe6\x41\x86\xae\x92\x8a\x38\xc7\x06\x8f\x52\x49\xfe\x73\x29\x8e\x1f\x46\x15\x64\xdf\x2f\x8c\x3f\x13\x3c\xdf\xc6\xd7\x81\xe7\xf6\xa8\xa4\xf8\x98\xca\xf0\x1f\xe2\xff\xcd\xaa\xf1\x7d\xe1\x83\xde\xd5\x88\x60\x75\x31\xb2\x2e\x8b\xa0\xd1\xb0\x71\xf1\xac\x17\x3a\x47\x96\xe3\xc0\xed\xb8\x5c\xc9\x2c\x70\xec\x4b\xd3\x50\x68\x09\x37\x2b\xd0\x52\x7d\x0e\xea\x6b\x72\x0e\x2b\x4a\x61\x71\x38\x11\xb8\x86\x84\x2c\x25\x15\x80\x83\x5b\xe9\x7c\x00\x38\x2e\xc5\x70\x7f\x03\x39\xea\xee\x83\x23\x5d\x04\x0b\xe3\x16\x53\xff\x3e\xd7\x73\x74\x8e\xfe\x06\x00\x00\xff\xff\xfe\xf4\xaf\xdc\xe2\x03\x00\x00" +var _lockedtokensAdminCheck_main_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\xc1\x6a\xdc\x30\x14\xbc\xfb\x2b\x26\x3e\x04\x1b\x8a\x3f\xc0\x74\x13\xb6\x0b\xa5\x85\x1e\x42\x1b\x7a\x7f\x2b\x3d\x7b\x45\x64\xc9\x48\xcf\xe4\x50\xf2\xef\xc5\xb2\xbd\x58\x6d\xd8\x4b\x74\x59\xf4\x76\x66\xde\xcc\x58\x66\x18\x7d\x10\x7c\x9d\x5c\x6f\xce\x96\x9f\xfd\x0b\x3b\x74\xc1\x0f\x28\xb3\x59\x59\x6c\x48\xeb\x5f\x33\xd4\x76\x2f\x8b\x0d\xf2\xc3\xab\x17\xd6\x69\x18\x57\xd4\x7e\x54\x16\x85\x04\x72\x91\x94\x18\xef\xaa\x81\x8c\x3b\x2a\xe5\x27\x27\x2d\x8e\x5a\x07\x8e\xb1\xc6\x9f\xa2\x00\x80\x31\xf0\x48\x81\xab\x68\x7a\xc7\xa1\x05\x4d\x72\xa9\xbe\xf8\x10\xfc\xeb\x6f\xb2\x13\xd7\xb8\x5f\xb9\x57\xca\x7c\x2c\x0b\x48\x0f\xc6\xfd\xe4\x0e\x07\x2c\xec\x26\x8a\x0f\xd4\x73\x73\x4e\xfc\xcf\xf7\x7b\x53\x4d\xfa\x39\xce\x9c\x93\xb7\x96\x93\xb7\x87\x6a\x76\xdf\x66\x81\x9a\xdd\xe5\x1f\xf8\xaf\x45\xff\x89\xe4\x52\x5f\xad\xcc\xe7\xf1\x11\x23\x39\xa3\xaa\xf2\xe4\x27\xab\xe1\xbc\x60\x31\x01\x42\xe0\x8e\x03\x3b\xc5\x10\x0f\xb9\x30\x6c\x5a\x00\x49\x25\xa7\x14\x50\xd7\x1d\x65\x9d\xa7\x5c\xc0\x6b\x07\xdf\x5d\xe7\x97\xc4\x3d\xcb\x3a\xdb\xf7\x9b\xbb\x6a\x14\x8d\x74\x36\xd6\x88\xe1\x78\xa3\x94\x6f\xde\x6a\x0e\x0f\xd5\x3b\x2d\xec\xf6\x3e\x4d\x67\x6b\xd4\x47\xb2\x8f\x49\x01\xff\x29\xdf\x8c\x8c\xc3\xbb\x15\x34\x3d\x4b\x26\xb4\x3e\xac\x6a\xa7\x45\x31\x72\x90\x2a\x73\xbb\x3d\x9a\x66\x57\x20\x2d\xd4\x36\x5f\x54\xe3\xee\x00\x67\xec\xa7\x8c\x3f\x70\x8c\xd4\x73\x8b\xf2\xf9\xc2\x88\x23\x2b\xd3\x19\xd6\xa0\xd5\xad\x89\xa9\x00\xda\x3e\xf2\x3a\xbf\xc3\x89\xdc\xfc\x47\x64\xa7\xb3\x07\x10\xcb\xab\xfe\xd2\xeb\x5b\xf1\x56\xfc\x0d\x00\x00\xff\xff\x9d\x91\x65\xc1\xb5\x03\x00\x00" func lockedtokensAdminCheck_main_registrationCdcBytes() ([]byte, error) { return bindataRead( @@ -3820,11 +3860,11 @@ func lockedtokensAdminCheck_main_registrationCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/check_main_registration.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9a, 0x91, 0x4b, 0x4f, 0x2, 0xae, 0x1, 0x4d, 0x39, 0xc9, 0xba, 0xca, 0xda, 0xcc, 0xd6, 0x3c, 0x56, 0xc8, 0xa1, 0x8a, 0x46, 0x1f, 0xa7, 0x9, 0x71, 0xf4, 0xbb, 0xf7, 0xa1, 0xd8, 0xa6, 0x15}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0x92, 0xbe, 0x27, 0xf, 0xc8, 0x19, 0xb2, 0x24, 0xd8, 0xfb, 0x9, 0x26, 0x43, 0xec, 0x91, 0x14, 0xe, 0xaf, 0x4a, 0x9, 0xd, 0x12, 0xde, 0xa, 0x73, 0x8d, 0x3, 0x5d, 0x53, 0xd0, 0xc6}} return a, nil } -var _lockedtokensAdminCheck_shared_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x51\xcb\x9b\x30\x14\x86\xef\xfd\x15\xef\xe7\xc5\x50\x18\xb2\x6b\xd9\xb7\xe2\xac\x1d\xa3\xd2\x8e\xb6\x63\xd7\x69\x3c\x6a\x68\x4c\x24\x89\x74\x30\xfa\xdf\x87\x5a\x5d\xb3\xdc\x88\xfa\x9c\x9c\xe7\x7d\x45\xd7\x6b\xe3\xb0\x1b\x54\x23\xae\x92\x2e\xfa\x46\x0a\xb5\xd1\x1d\x3e\xfd\xde\xfd\x3c\x7c\xfb\xfe\xb5\x2c\x2e\xc7\x7d\x71\xc8\xb6\xdb\x53\x71\x3e\x07\xcb\x80\xd4\x77\x1f\x2e\x8f\xbf\x3c\x70\x21\x4b\xcd\x6f\x54\x4d\xac\x5d\xe0\xf2\x98\xef\x8b\xad\x8f\x3b\xc3\x94\x65\xdc\x09\xad\x22\x39\xcd\x64\x9c\xeb\x41\xb9\x14\x59\x55\x19\xb2\x36\xc6\x9f\x20\x00\x80\xde\x50\xcf\x0c\x45\x56\x34\x8a\x4c\x8a\x6c\x70\xed\x13\x5e\x99\xf1\x48\x72\x60\x55\x27\xd4\x89\x6a\xbc\x63\xc6\x93\xab\x36\x46\xdf\x3f\x7f\x78\x15\x4b\xa6\x47\x36\xb2\xb9\x96\x92\x26\x8d\x2f\xd1\xa8\x9b\x7a\x09\x92\x97\x97\xff\xf0\xb3\xd3\x86\x35\xf4\x83\xb9\x36\x5e\x15\xc6\xb3\xd9\xa0\x67\x4a\xf0\x28\xcc\xf5\x20\x2b\x28\xed\x30\x4b\x80\xc1\x50\x4d\x86\x14\x27\x38\x0d\xd7\x12\xe6\xec\x70\x53\xb9\x93\x3d\xf8\xba\x23\x8c\xff\xa5\x63\xd6\x92\x71\x88\xbc\x5d\x4b\xdc\xa4\x21\xf7\xac\x24\x62\x73\x7d\x29\xbc\x5a\x63\xbc\xbd\x43\x09\xf9\xd1\x9b\xef\xc8\x5a\xd6\x50\x8a\xf0\xd2\x12\x6c\x4f\x5c\xd4\x82\x2a\xb0\x79\x08\xc2\x4e\xfa\x6c\xd1\x7c\x7e\x7f\x43\xce\xd4\xf8\xc3\x92\xaa\xbc\x08\x36\x5c\xef\x9f\x5b\x79\x04\x8f\xe0\x6f\x00\x00\x00\xff\xff\xbc\x66\x6c\x69\x76\x02\x00\x00" +var _lockedtokensAdminCheck_shared_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x50\x4d\x6b\xe3\x30\x14\xbc\xeb\x57\x4c\x74\x08\x36\x2c\xfe\x01\x66\xb3\x21\x1b\xe8\xa9\x87\xd2\x86\xde\x5f\xe4\x67\x5b\x44\x96\x8c\x24\x93\x43\xc9\x7f\x2f\x96\x3f\x1a\x57\x17\xa1\xd1\xcc\x7b\x33\xa3\xbb\xde\xf9\x88\x97\xc1\x36\xfa\x6a\xf8\xe2\x6e\x6c\x51\x7b\xd7\x41\x6e\x30\x29\x16\xa6\x71\xf7\x0d\x6b\x79\x4b\xb1\x50\x5e\x9d\xba\x71\x95\xc0\x30\xb3\x9e\x21\x29\x44\xf4\x64\x03\xa9\xa8\x9d\xcd\x4c\xfa\x3a\x29\xe5\x06\x1b\x4b\x9c\xaa\xca\x73\x08\x39\xbe\x84\x00\x80\xde\x73\x4f\x9e\xb3\xa0\x1b\xcb\xbe\x04\x0d\xb1\xcd\xfe\x3b\xef\xdd\xfd\x93\xcc\xc0\x39\xf6\xb3\x76\x95\x8c\xc7\x70\x04\x55\x9d\xb6\xef\x5c\xe3\x80\x49\x5d\x84\xe8\x3c\x35\x5c\x5c\x93\xfe\xef\xfe\xd9\x56\x91\xae\xd3\xa8\x39\x3b\x63\x38\xb9\xfb\x97\x8d\xfe\xcb\x4d\xa4\xe2\xe9\xf1\x8b\xfe\x31\xcd\x7f\xa3\xd8\xe6\xab\x95\xf1\x1c\x8f\xe8\xc9\x6a\x95\xc9\xb3\x1b\x4c\x05\xeb\x22\x26\x13\x20\x78\xae\xd9\xb3\x55\x8c\xe8\x10\x5b\xc6\x54\x09\x62\xaa\x39\xa5\x80\x5a\x77\xc8\xfc\x27\x25\x85\xc0\x3e\x22\xdb\xec\x5a\x62\x17\x0d\xc7\xb9\x9a\x8c\xa6\x56\x4b\x6c\xda\xce\xb1\x3b\xc0\x6a\xf3\x67\xa3\xef\x38\x04\x6a\xb8\x84\xbc\xb4\x8c\xd0\xb3\xd2\xb5\xe6\x0a\x34\x89\xa0\x43\xb2\x4f\x8b\xcd\x19\xdf\xe1\x4c\x76\xfc\x08\x6c\xab\x4d\x84\x20\xd7\xf9\x53\x2b\x0f\xf1\x10\xdf\x01\x00\x00\xff\xff\xc7\x12\xd7\xca\x79\x02\x00\x00" func lockedtokensAdminCheck_shared_registrationCdcBytes() ([]byte, error) { return bindataRead( @@ -3840,11 +3880,11 @@ func lockedtokensAdminCheck_shared_registrationCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/check_shared_registration.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xda, 0xb6, 0x7e, 0x98, 0xe7, 0x40, 0x4d, 0xb7, 0x6c, 0xd, 0x16, 0xb, 0xee, 0x68, 0x21, 0xce, 0x15, 0xb6, 0x5f, 0x9, 0xfb, 0x96, 0x47, 0x61, 0x89, 0x5e, 0xc2, 0x29, 0x54, 0xaa, 0x34, 0xb8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5f, 0xce, 0x2e, 0x8a, 0xa6, 0x4e, 0x37, 0xb0, 0x50, 0xb0, 0xe3, 0x24, 0x8c, 0xa4, 0xea, 0x43, 0x5f, 0xc7, 0xa6, 0xa1, 0x26, 0x54, 0x66, 0x7c, 0x8d, 0xd8, 0xa7, 0xe6, 0xb, 0xb6, 0x72, 0x84}} return a, nil } -var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\xf6\x50\xc8\x80\x22\xa5\x57\x21\xc9\xc2\x75\x9c\x76\x11\x77\x13\x24\xd9\xee\x99\x96\xc6\x16\x61\x99\x54\x49\xca\xae\x10\xe4\xbf\x17\x24\xf5\xa2\x2c\xe5\x81\x06\xa8\x0e\x01\x62\x7e\xf3\xf8\xbe\x99\x21\x87\xee\x0b\x2e\x14\x2c\x44\x55\x28\xee\xd5\xff\xdd\xe4\xfc\xf8\xc4\x77\xc8\x60\x23\xf8\x1e\xce\xff\xb9\x59\xdd\xfd\x7c\xba\xbb\x5d\x7e\x9f\x5f\x5f\x3f\x2c\x1f\x1f\x5b\x60\xc9\xb6\x74\x9d\xa3\x0b\xfe\xf1\xfd\xf7\x6f\xbf\xad\x96\x63\x06\x2b\x9e\xec\x30\x35\x70\xd9\xe0\x57\x77\x8b\xdb\xe5\xb5\x83\xf6\xa2\x28\x82\x27\x41\x98\x24\x89\xa2\x9c\x81\xca\x88\x02\x02\x49\x29\x15\x4f\x2b\x28\x04\x3f\xd0\x14\x05\x1c\x79\x99\xa7\x20\xe9\x96\x19\x13\xc5\x21\x11\x48\x14\x02\x01\x99\x11\x81\x29\x90\x24\xe1\x25\x53\x40\x58\x0a\x84\x41\xc9\x72\x93\x82\x81\x37\x67\x1b\x2e\x80\x40\x29\x51\x78\x9e\xea\xa2\xfa\x1e\x00\xc0\xa6\xcc\xf3\x79\xba\xa7\xec\xbe\x5c\xe7\x34\xb9\xc5\x2a\xae\xe5\x0a\x6f\xb1\x5a\x51\xa9\x96\x4c\x89\x2a\x80\x28\x82\x9f\x48\xb7\x99\x8a\xe1\xd7\xf3\xf3\xf3\xd6\xf8\x87\x44\xf1\x51\xdb\x19\xc0\xb3\x67\x3c\x14\x02\x0b\x22\xd0\xaf\xa9\xdf\xd7\xcc\x63\x98\x97\x2a\x9b\x5b\x02\xb3\x06\xac\xbf\x1c\x55\xcd\xbd\x3e\x85\xcb\x3e\xd6\x2f\x48\xa5\xcd\x07\xfe\x66\x8e\xbd\x96\xe2\x63\xd6\xad\xb9\x13\x3a\xdc\x61\x25\x43\x92\xa6\x7e\xd1\x09\x70\x2a\x68\xd8\x9e\x06\x90\x11\x99\xcd\xf3\x2d\x17\x54\x65\xfb\x51\xb0\x83\x08\xe0\x58\xeb\x36\x82\xb4\x47\x1d\x35\xfd\xb5\xff\xf4\x38\x4e\xa6\xe9\x94\xee\x8d\x2c\x5d\xec\x2b\x49\xba\xc0\x3a\x47\x00\xb7\x82\x07\x52\xe6\x6a\x41\x0a\xb2\xa6\x39\x55\x15\x5c\xba\xc2\x3a\x94\xc2\x9c\xb2\xdd\xc5\x2f\xed\xd4\x86\x7f\x69\xe3\x2b\x3f\x2a\x04\x3d\x10\x85\xd1\xa6\x39\x31\x07\x01\x28\x22\xb6\xa8\x62\x88\xa4\xe2\x82\x6c\x87\x00\x57\xb0\xaf\x5f\xa1\x20\x8c\x26\xfe\x97\x85\x19\x36\xc6\x15\xe8\x80\xe6\x96\x00\x3b\xf9\xc6\x0c\x92\x36\xdd\x2f\x33\x97\x4d\xde\x8d\xfd\x9f\x84\x91\x2d\x0a\xb8\x38\x73\x2e\x83\xd0\xce\xed\xea\x04\xe8\x1b\x25\xe2\xa1\x20\x93\x1d\x27\xc9\x01\xfd\x8b\xb3\xd3\x88\x01\x28\x1e\xbb\x31\x4f\xa3\x3d\x5a\x41\xee\x89\xca\x06\x14\x54\x0f\xf5\xb1\xba\xbc\x11\xf2\xca\x77\x8c\xf4\xf7\x86\xc5\xbd\x2d\xab\x4e\x32\x38\xb1\x6d\x6a\xfb\x7e\xa2\xad\x8b\xd9\x6b\xd5\x36\xfc\x61\x5f\x57\x6f\xba\xd4\x06\xf7\x07\xcf\xd3\xc9\x1a\x3f\x75\x08\xdf\x96\x69\x9e\xa6\x02\xa5\x8c\x07\xa5\x24\xf6\xe7\xc0\xd1\x3e\x9e\xa8\x44\x2f\x8d\xfe\x64\x9b\x76\x70\x44\xba\x38\xeb\xa5\x18\x80\x73\x76\xd2\x21\xbd\x5c\x7b\x8a\x75\xaa\x4f\x44\x1d\x29\x7c\xcf\xd3\xf3\x48\x6d\x6a\xcb\x6f\x6c\xc3\x5f\xae\xfc\xd7\x01\xf6\xf2\x30\x89\x8c\x97\x7b\x3c\xeb\xb1\x42\x99\x0b\xf3\xff\x6a\x67\x7b\x5b\x7f\x6e\x33\xbf\xf3\xee\xb2\xdd\x3c\x78\xc5\xf4\xfa\xe0\xb4\xf9\xf8\x35\x56\x6b\xb3\xd0\xcd\xcc\x05\x5c\x0e\xdd\xb8\xa2\xad\xb9\x10\xfc\x38\x2a\x9b\xeb\xe8\xca\xd7\xfb\xd0\x28\x57\x17\xf8\x21\xb6\x36\x3c\x08\xdc\xa0\x40\x96\xa0\xe6\x38\xe6\xd4\xa1\x3a\x72\xae\x87\xb1\xd9\x01\x9c\x16\x79\x6b\x76\x9b\x85\x6b\x08\xef\x8f\x8b\x3b\xe8\xa6\x2d\xe2\xd1\xfe\xec\x25\x19\x45\x70\x77\x40\x21\x68\x8a\xa0\x32\x84\x14\x37\xe6\x11\xea\x76\x57\x81\x09\xd2\x43\xaf\x1e\x6e\x86\x25\xd3\x9d\xe0\x47\xf6\x55\xef\x9e\xc0\x87\xda\x6c\x62\x6d\x88\xa2\x66\xc5\x64\x78\x6c\x63\xd8\x05\x75\x4f\xc4\x4e\x36\xbf\xa5\x96\x81\x04\x22\xbb\xad\x73\x3c\x15\x3b\x58\x73\x56\x3d\xa0\xe4\xa5\x48\xf0\xd9\x59\xac\xc3\x26\xa5\x97\xc1\x70\x4d\xe6\xee\x4e\xd2\x7f\x79\x12\x1c\xc1\x8b\x72\x0d\x8c\x8b\x3d\xc9\x3b\xe2\x94\xe9\x5d\x5b\xef\xa8\x5a\x93\x92\xd1\xbf\x4b\x84\xa2\xef\xe3\x73\xb9\x5a\x21\x6f\xde\xc7\x78\x62\xc1\xe9\xd1\xd3\x7f\x5f\xbc\x17\xef\xdf\x00\x00\x00\xff\xff\x31\xd2\x5f\xbb\x08\x0d\x00\x00" +var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xe9\xd5\x70\xb2\x48\x8d\x2e\x5a\x6c\x8a\x06\x6d\xba\x7b\x9e\x88\x63\x8b\x08\x4d\xaa\xfc\xb1\x61\x04\x79\xf7\x82\x12\x25\x8b\xb2\x94\xb8\x45\x7b\x59\x1d\x82\x98\x9c\x9f\x6f\xbe\x99\xe1\x0c\xdf\x55\x4a\x5b\x58\xeb\x63\x65\x55\x12\x7e\x7d\x16\xea\xf0\xa4\x5e\x48\xc2\x46\xab\x1d\xcc\xba\xdf\xb3\x4e\xc2\xc9\x2d\x7f\x16\x14\x49\xf5\xcf\x3a\xc9\x07\x55\xbc\x10\xab\xcf\x4c\x10\xec\x1f\xcd\x92\x24\xcf\x73\x78\xd2\x28\x0d\x16\x96\x2b\x09\xb6\x44\x0b\x08\x85\x33\x56\xb1\x23\x54\x5a\xed\x39\x23\x0d\x07\xe5\x04\x03\xc3\xb7\xb2\x56\xb1\x0a\x0a\x4d\x68\x09\x10\x4c\x89\x9a\x18\x60\x51\x28\x27\x2d\xa0\x64\x80\x12\x9c\x14\xb5\xa7\x5a\xbc\xbd\xdb\x28\x0d\x08\xce\x90\x4e\x12\x7b\xf2\x9a\x26\x00\x00\x1b\x27\xc4\x3d\xdb\x71\xf9\xe8\x9e\x05\x2f\xbe\xd0\x71\x19\xa8\xc9\xbe\xd0\xf1\x81\x1b\xfb\x93\xb4\xfa\xb8\x80\x3c\x87\x6f\xc4\xb7\xa5\x5d\xc2\x0f\x37\x37\x37\x9d\xf2\x9f\x86\xf4\x3f\xd5\x9d\x03\xbc\x26\xb5\x85\x4a\x53\x85\x9a\xd2\x10\xfa\x63\x88\x7c\x09\xe8\x6c\x99\xfe\xa8\xb4\x56\x87\xaf\x28\x1c\xcd\xe1\xea\xbe\x89\x67\xde\xea\xfa\x4f\x90\x0d\x54\x84\x5b\xb8\x85\xf0\x5f\x5a\xe1\xd1\x5b\x1a\x98\x9e\x47\xba\x9e\x95\xcb\x35\x3b\xd5\xc8\x65\xf6\x42\x47\x93\x21\x63\x69\x75\xe2\xe1\x9c\xd7\xac\xbb\x5d\x40\x89\xa6\xbc\x17\x5b\xa5\xb9\x2d\x77\xa3\xc2\x91\xc4\x02\x0e\x81\xbe\x11\xc9\xe6\xaa\x07\xae\x17\xd3\x24\xb4\x28\x6b\x1f\x20\x8b\x65\xdf\x01\x16\x0b\x9e\xe1\xf2\x7c\xef\xd1\x09\xbb\xc6\x0a\x9f\xb9\xe0\xf6\x08\xb7\x03\x2a\x8b\xf6\x8a\x93\xc9\x8c\x55\x1a\xb7\xd4\x19\xf0\x5f\xc6\x8d\x71\xb4\xaa\xcb\x23\x6a\xbf\xec\x1b\xb7\x25\xd3\x78\x98\xc3\x55\xd7\xbd\xd9\x57\xef\xef\x2e\xcd\x83\xa9\x7c\xd3\xde\xd4\x17\x03\x70\xe2\xd4\xa5\xbf\xa2\xc4\x2d\x69\x58\x5d\x47\xed\x9c\x35\xfd\xf7\x70\x26\x98\xd6\x81\x2d\x87\xf1\x4d\x96\x4c\xc0\x93\x19\xdc\x53\xba\xba\x3e\xf7\xbc\x00\xab\x96\xb1\xef\x73\xaf\x7f\x34\x56\x1e\xd1\x96\x83\x50\x6c\x4f\xea\x7f\xa7\xfb\x03\x94\x77\x69\x64\xd2\x7f\x97\xc7\x15\xa9\x8e\x05\xf9\xb3\x12\x6c\x32\x51\x4f\x27\x89\xb4\xe1\xf8\x9e\x31\x4d\xc6\x2c\x07\x44\x60\x73\xbc\x88\x88\x5b\x4e\xd0\x38\xd1\x6b\x51\x4e\x23\xdc\xab\xeb\x1e\xd4\x45\x74\x75\x96\xe5\x1e\xe4\x31\x1a\xa6\x29\x58\x63\x05\xb7\x11\xa0\xb1\xec\x86\x84\x5e\x4d\xf9\xbc\x4b\x2f\x40\x33\x1f\x8d\x3f\x72\x57\x3f\x29\xa6\x4c\x63\x80\x0b\x40\x3b\x5a\xd5\xc1\xc6\x2f\x72\xa3\x9a\x17\x64\xaa\xa6\xeb\xc7\xef\xbb\xad\x68\xd1\x27\x63\xed\x4b\x58\x69\xb8\x1d\x0e\xa2\xf1\xb8\x9e\xeb\x61\xb9\x1a\xc3\x1e\x1b\xbc\x4b\xfd\x52\xf2\x5e\x1a\x82\xe0\x68\xc6\xfd\xf7\xe9\x13\x54\x28\x79\x91\xce\xd6\xf5\x86\x22\x95\x85\xc6\x7d\x88\xa0\xdb\x3d\x8a\xc6\xd2\xac\x1f\xe7\x88\x27\xdf\x7f\xed\xf0\x8d\x3c\x45\xc9\xfd\xa0\x77\x23\xc5\x76\x13\x1a\xaa\xf6\x0b\x76\x54\xf1\x54\x65\xcb\xd1\x8a\x1b\xeb\xc4\x3c\x87\xdf\xf6\xa4\x35\x67\x04\xb6\x24\x60\xb4\xf1\x73\xa0\xb7\x55\x6a\x2a\x88\xef\x49\x67\x13\xf3\x20\x2a\x5b\x27\xdb\xee\xc9\x9b\xc9\x7c\x1a\x5b\xbf\x07\x3b\xb1\xf3\xb0\x15\x4a\x3a\x74\x8e\x9a\x9d\x72\x87\xfa\xc5\xb4\x67\xac\x89\xc7\x00\x9a\x8e\x9e\x6c\x6a\x00\x9a\xd3\xab\x77\x51\x8f\xb5\xef\xca\x6b\xdc\x53\x2d\xde\xb7\xc1\xbb\xf2\xc1\x2c\xbb\x80\xa4\x96\xa2\x28\x79\xe3\x01\xc4\x09\xf6\x2f\xd0\x24\xaf\x13\xd9\xad\x9c\x05\xa9\xf4\x0e\xc5\x89\x60\x2e\xfd\x1a\xee\xd7\x57\xcf\xbd\x93\xfc\x2f\x47\x50\xa1\x2d\xb3\xf3\x57\xab\x35\xff\xdf\xb1\x39\xb9\xd1\xfc\x5b\xea\x86\x38\xa7\x49\x6b\x48\xfe\xfc\x0e\x75\xfe\xef\x5b\xf2\x96\xfc\x1d\x00\x00\xff\xff\x44\x3c\xd7\x13\x6b\x0d\x00\x00" func lockedtokensAdminCustody_create_account_with_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3860,11 +3900,11 @@ func lockedtokensAdminCustody_create_account_with_lease_accountCdc() (*asset, er } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_account_with_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9a, 0xd8, 0x1f, 0x8, 0xcf, 0x85, 0xf3, 0x68, 0x9d, 0xa4, 0x3e, 0xb2, 0x52, 0x18, 0x97, 0xe4, 0xdf, 0xb4, 0x42, 0x80, 0x49, 0xa2, 0x2f, 0x96, 0x50, 0x77, 0x51, 0x4f, 0x6, 0xb9, 0xb5, 0xed}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0xea, 0x4d, 0xc, 0xc6, 0x6b, 0x93, 0xc7, 0x45, 0xb4, 0x90, 0x7c, 0xb1, 0xdc, 0xc1, 0xd5, 0x1a, 0xd8, 0x8d, 0x8c, 0xb3, 0x98, 0x32, 0x8f, 0x37, 0x9a, 0x21, 0x37, 0x53, 0x2a, 0x88, 0x7d}} return a, nil } -var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\x51\x6f\xe3\x36\x0c\x7e\xf7\xaf\x20\xee\x61\x70\x00\x37\xee\x5e\x8d\xb6\x87\x2c\x4d\xb7\x43\xb3\x6b\xd1\x76\xbb\x67\xc5\x66\x62\x21\x8a\xe4\x49\x72\x32\xa3\xc8\x7f\x1f\x24\x39\x8e\xe4\x38\xd7\x1e\x56\xe0\xf2\x50\xa0\xd6\x47\xf2\xe3\x47\x52\x22\xdd\x54\x42\x6a\x98\xca\xa6\xd2\x22\x6a\xff\xbb\x63\x62\xf7\x22\xd6\xc8\x61\x29\xc5\x06\x2e\xff\xbd\x9b\x3f\x7c\x7b\x79\xb8\x9f\x7d\x9d\xdc\xde\x3e\xcd\x9e\x9f\x3b\x60\xcd\x57\x74\xc1\x30\x04\xff\xf5\xf5\xf7\x2f\xbf\xcd\x67\x43\x06\x73\x91\xaf\xb1\xb0\x70\x75\xc0\xcf\x1f\xa6\xf7\xb3\xdb\x00\x1d\xa5\x69\x0a\x2f\x92\x70\x45\x72\x4d\x05\x07\x5d\x12\x0d\x04\xf2\x5a\x69\x51\x34\x50\x49\xb1\xa5\x05\x4a\xd8\x89\x9a\x15\xa0\xe8\x8a\x5b\x13\x2d\x20\x97\x48\x34\x02\x01\x55\x12\x89\x05\x90\x3c\x17\x35\xd7\xb0\x14\x12\x08\xd4\xca\x18\x95\x02\x08\x93\x48\x8a\xc6\x5a\x95\x44\x81\x2e\x91\x4a\xa8\x39\xb3\x04\x3b\x2b\xe7\xad\x30\x30\xc7\xa9\xc4\x53\x90\xb5\x17\x96\x85\xf1\x03\xda\x23\x4e\x98\x12\x51\xe4\x7d\x89\x23\x00\x80\x65\xcd\xd8\xa4\xd8\x50\xfe\x58\x2f\x18\xcd\xef\xb1\xc9\xda\x1a\x8c\xef\xb1\x99\x53\xa5\x67\x5c\xcb\x26\x81\x34\x85\x6f\x48\x57\xa5\xce\xe0\xd7\xcb\xcb\xcb\x68\x04\xf0\x1a\x59\x17\x95\xc4\x8a\x48\x8c\x5b\x4d\x1e\x5b\x49\x32\x98\xd4\xba\x9c\x38\x6a\x89\x4d\xb8\xfd\x27\x38\x19\x1d\xdc\x98\x1f\x43\xdd\xca\xd5\x9e\xc2\xb5\x8f\x8d\x2b\xd2\x18\xc7\xbd\x48\xa3\xa3\x83\xc0\x78\xbc\xc6\x46\x8d\x49\x51\xc4\xd5\x31\xb9\xd3\x84\xc7\xdd\x69\x62\x14\x2c\x27\x6c\x25\x24\xd5\xe5\x66\x10\x1c\x20\x12\xd8\xb5\x9a\x0c\x20\xdd\xd1\x28\xcc\x6e\x4b\x6a\xa6\xa7\xa4\x22\x0b\xca\xa8\x6e\xe0\x3a\xa4\xdc\x61\xcd\x6f\xcc\x28\x5f\x5f\xfd\xd2\x0d\xc1\xf8\x6f\x63\x7c\x13\xa7\x95\xa4\x5b\xa2\x31\x5d\x1e\x4e\xec\x41\x02\x9a\xc8\x15\xea\x0c\x52\xa5\x85\x24\xab\x3e\x60\x14\x78\xff\xfc\x19\x2a\xc2\x69\x1e\x7f\x9a\xda\xde\xe5\x42\x83\x09\x68\x87\x0e\xdc\x20\x59\x33\xc8\x3b\xba\x9f\x7a\xd9\xb0\xe3\x14\xfd\x49\x38\x59\xa1\x84\xab\x8b\x60\xb6\xc6\xae\x71\xe7\x27\xc0\xd8\x2a\x91\xf5\x05\x39\x5b\x4b\x45\xb6\x18\x5f\x5d\x9c\x46\x4c\x40\x8b\x2c\x8c\x79\x1a\xed\xd9\x09\xf2\x48\x74\xd9\x4b\x41\x7b\xa8\x1f\xab\xcb\x1b\x21\x6f\xe2\xc0\xc8\xfc\xde\xb0\x78\x74\x65\x35\x24\x93\x13\xdb\x43\x6d\xdf\x9f\x68\xe7\x62\xf4\xbd\x6a\xdb\xfc\x61\xd3\x56\xef\x7c\xa9\x2d\xee\x0f\xc1\x8a\xb3\x35\x7e\x39\x22\x62\x57\xa6\x49\x51\x48\x54\x2a\xeb\x95\x92\xb8\xcf\x49\xa0\x7d\x76\xa6\x12\x1e\x0d\xef\x0a\x71\xed\x10\x88\x74\x75\xe1\x51\x4c\x20\x38\x3b\xe9\x10\x8f\xab\xa7\xd8\x51\xf5\x33\x51\x07\x0a\xef\x79\x7a\x1d\xa8\x4d\x6b\xf9\x85\x2f\xc5\xfe\x26\xfe\x3e\xc0\x5d\x1d\x96\xc8\x70\xb9\x87\x59\x0f\x15\xca\x5e\x45\x3f\xab\x9d\xdd\x3d\xf8\xb1\xcd\xfc\xce\xbb\xcb\x75\x73\xef\x7d\x30\x6f\x62\xd0\xe6\xa6\xb7\x07\xee\xb1\x56\x9c\xa9\xe9\x66\x21\xe1\xba\xef\x27\x54\x6d\x21\xa4\x14\xbb\x41\xdd\x42\x47\x37\xb1\xd9\x2f\x06\x93\x0d\x81\x3f\x94\xae\x0b\x0f\x12\x97\x28\x91\xe7\x68\x92\x1c\x72\x1a\xcc\xf1\xc0\xb9\x99\xc6\xc3\xf3\x1a\xf4\xc8\x5b\xc3\x7b\xd8\x3e\xfa\x70\x7f\x5e\xc2\x49\xb7\x7d\x91\x0d\x36\xa8\x47\x32\x4d\xe1\x61\x8b\x52\xd2\x02\xed\x12\x53\xe0\xd2\xbe\x42\xc7\x5d\x50\x62\x8e\x74\xeb\xd5\x23\x64\x58\x73\xd3\x0a\x71\xea\x9e\xf5\xe3\x1b\xf8\xd4\x9a\x85\xda\xfa\x71\xdb\x95\x8d\xe3\xae\x8b\xe1\x16\xbe\x0d\x91\x6b\x75\xf8\x56\xb8\x0c\x14\x10\xd5\x89\x70\x86\x8a\x9b\xac\x09\x6f\x9e\x50\x89\x5a\xe6\xf8\x1a\x2c\xaa\xe3\x03\xa5\x7d\x6f\xba\xce\x72\x0f\x47\xe9\xff\xbc\x09\x81\xe0\x55\xbd\x00\x2e\xe4\x86\xb0\x63\xe2\x94\x9b\xdd\xd5\xac\x76\x46\x93\x9a\xd3\x7f\x6a\x84\xca\xf7\xf1\xb1\xb9\x3a\x21\xef\xde\x97\xf1\x99\x0d\xc7\x4b\xcf\xfc\xdd\x47\xfb\xe8\xbf\x00\x00\x00\xff\xff\xbd\xb5\xf1\x52\x58\x0c\x00\x00" +var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xe9\xd5\x70\xb2\x48\x8d\x2e\x5a\x6c\x8a\x06\x6d\xb0\x7b\x9e\x88\x63\x8b\x08\x4d\xaa\x24\x65\x43\x58\xe4\xdd\x0b\x52\x94\x2c\xca\xd2\xae\x5b\xb4\x97\xea\x10\xc4\xe4\xfc\x7c\xf3\xcd\x70\x66\xf8\xa1\x52\xda\xc2\x56\x37\x95\x55\x49\xf8\xf5\x51\xa8\xd3\x8b\x7a\x23\x09\x3b\xad\x0e\xb0\xe8\x7f\x2f\x7a\x89\x5a\xee\xf9\xab\xa0\x48\x6a\x78\xd6\x4b\x3e\xa9\xe2\x8d\x98\x3f\x33\x41\x70\x78\xb4\x48\x92\x3c\xcf\xe1\x45\xa3\x34\x58\x58\xae\x24\xd8\x12\x2d\x20\x14\xb5\xb1\x8a\x35\x50\x69\x75\xe4\x8c\x34\x9c\x54\x2d\x18\x18\xbe\x97\x5e\xc5\x2a\x28\x34\xa1\x25\x40\x30\x25\x6a\x62\x80\x45\xa1\x6a\x69\x61\xa7\x34\x20\xd4\xc6\x29\x95\x0a\x50\x68\x42\xd6\x78\xad\x12\x0d\xd8\x92\xb8\x86\x5a\x0a\x8f\xa3\xd7\x6a\xad\x31\x27\xd6\x62\x2a\xe9\x52\xc8\xeb\x2b\x8f\xc2\xd9\x01\x3b\x00\x8e\xc2\xa8\x24\x19\x9c\xa4\x09\x00\xc0\xae\x16\xe2\x91\x1d\xb8\x7c\xae\x5f\x05\x2f\x3e\x51\xb3\x0e\x7c\x67\x9f\xa8\x79\xe2\xc6\xfe\x24\xad\x6e\x56\x90\xe7\xf0\x85\xf8\xbe\xb4\x6b\xf8\xe1\xee\xee\x2e\x59\x02\x7c\x4d\xbc\x89\x4a\x53\x85\x9a\xd2\xc0\xc9\x73\xa0\x64\x0d\x58\xdb\x32\xfd\x51\x69\xad\x4e\x9f\x51\xd4\xb4\x84\x9b\xc7\x16\xe9\xca\xc7\x1f\x7e\x04\xc1\x3f\xac\xd2\xb8\xa7\x15\x6c\xb1\xc2\x57\x2e\xb8\xe5\x64\xce\x2a\xcb\xce\x9d\xfb\x04\xd9\x40\x6b\xb8\x85\x7b\x08\xff\xa5\x15\x36\xce\xf9\x08\xcd\xf2\xac\x1c\x29\x66\x6f\xd4\x98\x0c\x19\x4b\xab\x33\x01\x97\xa4\x64\xfd\xed\xca\xb1\x5c\x3e\x8a\xbd\xd2\xdc\x96\x87\x49\xe1\x48\x62\x05\xa7\xc0\xdb\x84\x64\x7b\xb5\x8c\x23\x3b\x62\x2d\x6c\xcf\x42\x03\xf7\x23\xc8\xc5\x80\xa0\xcc\xb4\xb4\xf5\x06\xdc\x97\x71\x63\x6a\xda\x78\x5a\xa3\xc2\xcf\xbe\x70\x5b\x32\x8d\xa7\x25\xdc\xf4\xef\x26\xfb\xec\xfc\x3d\xa4\x79\x30\x95\xef\xba\x1b\x7f\x31\x02\x27\xce\xef\xe3\x57\x94\xb8\x27\x0d\x9b\xdb\xe8\x21\x65\x6d\xad\x3e\x5d\x08\xa6\x3e\xb0\xf5\x38\xbe\xd9\xd4\x04\x3c\x99\xc1\x23\xa5\x9b\xdb\x4b\xcf\x2b\xb0\x6a\x1d\xfb\xbe\xf4\x1a\xea\xea\x19\x6d\x39\x0a\xc5\x0e\xa4\xfe\x73\xba\xbf\x83\xf2\x21\x8d\x4c\xba\xef\xfa\xb8\x22\xd5\xa9\x20\x7f\x56\x82\xcd\x26\xea\xe5\x2c\x11\x83\x68\x09\x7f\x64\x4c\x93\x31\xeb\x11\x2b\xd8\x1e\xaf\x22\x8d\x21\xa3\xeb\x19\x7e\x93\x09\xa0\x83\x6e\x10\x67\x3d\xb2\xbe\xb9\x1d\x04\x33\x76\x3c\xaa\x83\x41\x50\x53\x44\xcd\x93\xb4\xc5\x0a\xee\x23\x40\x53\xf9\x0f\x29\xbf\x99\xf3\xf9\x90\x5e\x81\x66\x39\x19\x7f\xe4\xce\xb7\x1d\x53\xa6\x31\xc0\x15\xa0\x9d\xac\xfb\x60\xe3\x17\xb9\x53\x6d\x8f\x99\xab\x7a\xdf\x86\xfe\xb7\x35\x2f\x86\x64\x6c\x5d\x91\x2b\x0d\xf7\xe3\x91\x30\x1d\xd7\xab\x9f\x57\x9b\x29\xec\xb1\xc1\x87\xd4\x2d\x0c\xdf\x4a\x43\x10\x9c\xcc\xb8\xfb\x3e\x7c\x80\x0a\x25\x2f\xd2\xc5\xd6\x6f\x0f\x52\x59\x68\xdd\xc3\xd4\xf4\x57\x7a\x31\x8c\x73\xc2\x93\x7b\x94\xdd\x18\x8c\x3c\x45\xc9\xfd\x3b\x0f\xba\x5b\x31\xc6\xaa\xc3\x82\x9d\xef\x04\xbe\xca\xd6\x93\x15\x37\xf5\x12\xf3\x1c\x7e\x3b\x92\xd6\x9c\x91\x5f\x5f\x18\xed\xdc\xa4\x18\x6c\x7c\x9a\x0a\xe2\x47\xd2\xd9\xcc\xc4\x88\xca\xb6\x96\xdd\xeb\xc9\xdb\xe9\x7d\x1e\x6c\xbf\x07\x3b\xb1\xf3\xb0\xb1\x49\x3a\xf5\x8e\xda\x7d\xef\x80\xfa\xcd\x74\x67\xac\x8d\xc7\x00\x9a\x9e\x9e\x6c\x6e\x44\x9a\x73\xfb\xbb\xea\x8d\x75\x7d\xe5\x6b\xfc\xa6\x3a\xbc\xef\xa3\xbe\xf2\x9d\x69\x77\x05\x49\x1d\x45\x13\x8d\x7f\x1c\x40\x9c\x60\xd7\x81\x66\x79\x9d\xc9\x6e\x55\x5b\x90\x4a\x1f\x50\x9c\x09\xe6\xd2\xad\xc8\x6e\x83\x74\xdc\xd7\x92\xff\x59\x13\x54\x68\xcb\xec\xb2\x6b\x75\xe6\xff\x3d\x36\x67\x77\x9e\x7f\x4a\xdd\x18\xe7\x3c\x69\x2d\xc9\x1f\xbf\x41\x9d\xfb\xfb\x9e\xbc\x27\x7f\x05\x00\x00\xff\xff\xe2\x38\x62\x8b\x07\x0d\x00\x00" func lockedtokensAdminCustody_create_only_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3880,11 +3920,11 @@ func lockedtokensAdminCustody_create_only_lease_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x43, 0x2b, 0xad, 0x8, 0xe2, 0x40, 0x95, 0x23, 0x8c, 0xd8, 0xfe, 0x6a, 0x87, 0xc4, 0x1, 0xf1, 0xb9, 0xc5, 0xf, 0xec, 0x25, 0x7c, 0xc4, 0xbf, 0x2d, 0xfa, 0xb7, 0x44, 0x7d, 0x16, 0x7d, 0xb9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x16, 0xfa, 0xe7, 0x1, 0x8d, 0x5d, 0xca, 0x94, 0x12, 0x96, 0x29, 0x39, 0xb8, 0xa6, 0x56, 0x88, 0xde, 0xb0, 0xdf, 0x9b, 0xfe, 0xdd, 0xd, 0x16, 0xaa, 0xa7, 0xb5, 0x85, 0xb3, 0xbc, 0x7c, 0xe3}} return a, nil } -var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\xf6\x50\xc8\x80\x63\xb9\xc7\x0a\xc9\x2e\x5c\xc7\x69\x17\x71\x37\x41\x92\xed\x9e\x69\x69\x6c\x11\x96\x49\x95\xa4\xec\x0a\x41\xfe\x7b\x41\x52\x92\x45\x99\xda\xd8\x45\x81\xae\x4e\x89\xf8\xe6\xeb\x3d\xce\x68\x4c\x77\x05\x17\x0a\xe6\xa2\x2a\x14\x0f\xea\xff\xee\x72\x7e\x78\xe1\x5b\x64\xb0\x16\x7c\x07\xd3\xbf\xef\x96\x0f\xdf\x5e\x1e\xee\x17\x5f\x66\xb7\xb7\x4f\x8b\xe7\xe7\x16\x58\xb2\x0d\x5d\xe5\xe8\x82\xbf\x7e\xf9\xed\xf3\xaf\xcb\x85\xcf\x60\xc9\x93\x2d\xa6\x06\x2e\x1b\xfc\xf2\x61\x7e\xbf\xb8\x75\xd0\x41\x14\x45\xf0\x22\x08\x93\x24\x51\x94\x33\x50\x19\x51\x40\x20\x29\xa5\xe2\x69\x05\x85\xe0\x7b\x9a\xa2\x80\x03\x2f\xf3\x14\x24\xdd\x30\x63\xa2\x38\x24\x02\x89\x42\x20\x20\x33\x22\x30\x05\x92\x24\xbc\x64\x0a\xd6\x5c\x00\x81\x52\x6a\xa3\x8c\x03\xc9\x05\x92\xb4\x32\x56\x19\x91\xa0\x32\xa4\x02\x4a\x96\x9b\x04\x5b\x2b\xeb\x2d\xd5\x30\x9b\x53\x86\xa7\x20\x63\xcf\x4d\x16\xda\x0f\xa8\x4e\xe2\x24\x97\x3c\x08\x3a\x6f\xc2\x00\x00\xa0\x20\x42\x51\x92\xcf\xd2\x1d\x65\x8f\xe5\x2a\xa7\xc9\x3d\x56\x71\x2d\xc3\xe4\x1e\xab\x25\x95\x6a\xc1\x94\xa8\xc6\x10\x45\xf0\x0d\xe9\x26\x53\x31\xfc\x3c\x9d\x76\xcd\xbf\x4a\x14\x17\x58\xff\x32\x9d\x06\x23\x80\xd7\xc0\xfa\x10\x58\x10\x81\x61\xcd\xe9\x63\x4d\x69\x0c\xb3\x52\x65\x33\x5b\xda\xd8\x10\x56\xff\xe3\x9c\x8c\x1a\x37\xfa\xc9\x51\xd5\x74\xd7\xa7\x70\xd3\xc5\x86\x05\xa9\xb4\xe3\x5e\xa4\xd1\xd1\x81\x63\x3c\xd9\x62\x25\x27\x24\x4d\xc3\xe2\x58\x9b\x97\xb0\x49\x0b\x18\x6b\x11\xb2\x59\xbe\xe1\x82\xaa\x6c\x37\x84\x77\x40\x63\x38\xd4\xc4\xf8\xc1\xf6\x74\x74\x79\x92\x8e\x2c\xef\xe7\xe8\xc2\xbf\x9f\xa2\x8b\x6d\x32\x74\x84\xd8\x93\x32\x57\x73\x52\x90\x15\xcd\xa9\xaa\xe0\xc6\x4d\xbc\xc5\xea\x67\x92\x53\xb6\xbd\xfe\xa9\xed\xf7\xc9\x9f\xda\xf8\x63\x18\x15\x82\xee\x89\xc2\x68\xdd\x9c\x98\x83\x31\x28\x22\x36\xa8\x62\x88\xa4\xe2\x82\x6c\xfa\x80\x91\xe3\xfd\xd3\x27\x28\x08\xa3\x49\xf8\x61\x6e\xda\x94\x71\x05\x3a\xa0\x99\x2f\x60\x67\x86\x31\x83\xa4\x4d\xf7\x43\xaf\x9a\xfc\x38\x30\xfe\x20\x8c\x6c\x50\xc0\xf5\x95\x33\x46\x26\xb6\x47\x97\x27\xc0\xd0\x30\x11\xf7\x09\x19\xbc\x76\x92\xec\x31\xbc\xbe\x3a\x8d\x38\x06\xc5\x63\x37\xe6\x69\xb4\x67\x4b\xc8\x23\x51\x59\xaf\x04\xd5\x41\x5d\xa6\xcb\x3b\x21\x3f\x86\x8e\x91\x7e\xde\xb1\x78\xb4\xb2\xea\x24\xc7\x27\xb6\x8d\xb6\xe7\x17\xea\xb8\x38\x53\x7b\xc3\x06\xec\x6a\x2d\x87\x85\x37\xb8\xdf\x79\x9e\x0e\x2a\xfe\x72\x44\xb8\x44\x58\x05\x67\x69\x2a\x50\xca\xb8\xa7\x32\xb1\xaf\xdd\xf2\xbb\x12\xc5\x03\x82\x05\xc7\x42\xdb\x3f\x3b\xd3\xd1\x5e\x1f\xc7\xeb\xf5\x55\xa7\x88\x7e\xc0\x1e\xcf\x9d\x62\x3a\x04\x8f\xdf\x0b\xea\xb9\x27\x1d\x4f\xaf\x1e\x29\x6b\xcb\xcf\x6c\xcd\xdf\x7a\x17\xe8\xfb\x68\x3b\x76\x4e\xaf\x8e\xf7\xda\xf8\xcb\xf1\x55\xd3\x6a\x6d\xa6\xef\xff\xd5\x1f\x76\xf4\xff\x28\xdd\xd1\xfb\x50\xea\xe5\xc2\x69\x1b\xdd\x2b\x9e\x29\x59\x33\x35\xd7\xdd\xc1\x05\xdc\xf4\xfd\xb8\x14\xae\xb8\x10\xfc\xe0\x25\xd1\x75\xe4\xa1\x51\x6f\x6e\x5e\x2a\x5c\xcb\x7f\x4f\x86\x4d\x0e\x04\xae\x51\x20\x4b\x50\x53\xe0\x8b\xe0\x4c\x0d\xcf\xb9\x6e\xf7\x66\x0b\x71\x82\x3a\x77\xeb\x92\x51\xd1\x6c\x7f\x7d\xd3\x6e\x57\x0e\xcf\x18\x73\xcf\x62\xef\x85\xf7\x35\x47\x14\xc1\xc3\x1e\x85\xa0\x29\x9a\xcd\x32\xc5\xb5\xf9\x5e\x1e\x17\x74\x81\x09\xd2\x7d\x47\x5b\xb7\x84\x92\xe9\x6b\x15\x46\x76\x09\x39\x7e\xad\x9f\x6a\x33\x37\x56\xbd\x3b\x33\x3c\xb4\x7e\xed\xe6\xbd\x23\x62\x2b\x9b\x77\xa9\x4d\x5f\x02\x91\x2d\x1b\x03\xe1\x6d\x9b\xce\x58\xf5\x84\x92\x97\x22\xc1\x57\xe7\x17\xc3\xa4\x49\xa3\x3f\x89\x06\xf3\x3d\x63\xf4\x9c\xd7\x93\x6e\xe1\x45\xb9\x02\xc6\xc5\x8e\xe4\xc7\xc2\x29\xd3\x3f\x22\xf4\x8e\xac\x39\x29\x19\xfd\xab\x44\x28\xba\x3e\xfe\xdb\x5a\x2d\x91\x77\xe7\x55\x3c\xb0\x7f\x05\x6e\x87\xbd\x05\x6f\xc1\x3f\x01\x00\x00\xff\xff\xcd\x41\x82\xba\xe1\x0d\x00\x00" +var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\x7c\x08\x64\xc0\x91\xd2\x63\x0d\x27\x8b\xd4\xe8\xa2\xc5\xa6\x68\xd0\xa6\xbb\xe7\x89\x38\xb6\x88\xd0\xa4\x4a\x52\x36\x84\x20\xff\xbd\xa0\x44\x3d\x28\x4b\x79\x14\xed\x65\x75\x08\x22\x6a\x1e\xdf\x7c\x33\x9c\x19\xf3\x43\xa1\xb4\x85\xad\xae\x0a\xab\x22\xff\xf6\x59\xa8\xd3\x83\x7a\x22\x09\x3b\xad\x0e\xb0\xe8\xde\x17\x9d\x44\x29\xf7\xfc\x51\x50\x20\x35\x3c\xeb\x24\xef\x54\xf6\x44\xac\x3e\x33\x5e\x70\x78\xb4\x88\xa2\x34\x4d\xe1\x41\xa3\x34\x98\x59\xae\x24\xd8\x1c\x2d\x20\x64\xa5\xb1\x8a\x55\x50\x68\x75\xe4\x8c\x34\x9c\x54\x29\x18\x18\xbe\x97\xb5\x8a\x55\x90\x69\x42\x4b\x80\x60\x72\xd4\xc4\x00\xb3\x4c\x95\xd2\xc2\x4e\x69\x40\x28\x8d\x53\xca\x15\xa0\xd0\x84\xac\xaa\xb5\x72\x34\x60\x73\xe2\x1a\x4a\x29\x6a\x1c\x9d\x56\x63\x8d\x39\xb1\x06\x53\x4e\xe7\x42\xb5\xbe\xaa\x51\x38\x3b\x60\x07\xc0\x51\x18\x15\x45\x83\x93\x38\x02\x00\x28\x50\x5b\x8e\xe2\x96\x1d\xb8\xbc\x2f\x1f\x05\xcf\xbe\x50\xb5\xf6\x94\x27\x5f\xa8\xba\xe3\xc6\xfe\x2c\xad\xae\x56\x90\xa6\xf0\x8d\xf8\x3e\xb7\x6b\xf8\xe1\xea\x6a\xa8\xfe\x97\x21\xfd\x01\xed\x1f\xaf\xae\xa2\x25\xc0\x73\xd4\xd8\xd0\x54\xa0\xa6\xd8\x73\x7a\xef\x29\x5d\x03\x96\x36\x8f\x7f\x52\x5a\xab\xd3\x57\x14\x25\x2d\xe1\xe2\xb6\x89\x74\x55\xf3\xe7\x5f\xbc\xe0\x9f\x56\x69\xdc\xd3\x0a\xb6\x58\xe0\x23\x17\xdc\x72\x32\xbd\xca\xb2\x75\xe7\x1e\x41\xd6\xa7\xc5\x7f\x85\x6b\xf0\xff\xc5\x05\x56\xce\xf9\x08\xcd\xb2\x57\x0e\x14\x93\x27\xaa\x4c\x82\x8c\xc5\x45\x1f\xff\x24\xa9\x49\x27\xb0\x72\x89\xca\x6f\xc5\x5e\x69\x6e\xf3\xc3\x9c\x7c\x20\xb4\x82\x93\x27\x6f\x5a\xb8\xf9\xba\xfc\x38\xc8\x20\x75\x6f\x63\x0c\xc5\x5f\x87\x18\xca\xb6\x08\x83\x24\x1c\xb1\x14\xb6\x4b\x58\x05\xd7\x23\xe0\xd9\x20\x97\x89\x69\x32\xdc\x19\x70\x4f\xc2\x8d\x29\x69\x53\x57\x40\x70\xc7\x93\x6f\xdc\xe6\x4c\xe3\x69\x09\x17\x5d\x8b\x48\xbe\x3a\x7f\x37\x71\xea\x4d\xa5\xbb\xf6\x4b\xfd\x61\x04\x4e\xf4\xad\xe0\x37\x94\xb8\x27\x0d\x9b\xcb\xa0\x67\x24\xcd\xb5\xbc\x3b\x13\x8c\xeb\xc0\xd6\xe3\xf8\x66\xab\xc8\xe3\x49\x0c\x1e\x29\xde\x5c\x9e\x7b\x5e\x81\x55\xeb\xd0\xf7\xb9\x57\x7f\x05\xee\xd1\xe6\xa3\x50\xec\x40\xea\x7f\xa7\xfb\x0d\x94\x37\x71\x60\xd2\x3d\xef\x8f\x2b\x50\x9d\x0a\xf2\x17\x25\xd8\x6c\xa2\x1e\x7a\x89\x10\x44\x43\xf8\x2d\x63\x9a\x8c\x59\x8f\x58\xc1\xe6\x78\x15\x68\x0c\x19\x5d\xcf\xf0\x1b\x4d\x00\x1d\x34\xae\x30\xeb\x81\xf5\xcd\xe5\x20\x98\xb1\xe3\x51\x1d\x0c\x82\x9a\x22\x6a\x9e\xa4\x2d\x16\x70\x1d\x00\x9a\xca\xbf\x4f\xf9\xc5\x9c\xcf\x9b\xf8\x1d\x68\x96\x93\xf1\x07\xee\xea\xd6\x63\xf2\x38\x04\xb8\x02\xb4\x93\x75\xef\x6d\xfc\x2a\x77\xaa\xe9\x31\x73\x55\x5f\x37\xca\xef\xb6\xe6\xc5\x90\x8c\xad\x2b\x72\xa5\xe1\x7a\x3c\xbd\xa6\xe3\x7a\xac\x47\xeb\x66\x0a\x7b\x68\xf0\x26\x76\xbb\xd1\x6b\x69\xf0\x82\x93\x19\x77\xcf\xa7\x4f\x50\xa0\xe4\x59\xbc\xd8\xd6\x8b\x92\x54\x16\x1a\xf7\x30\xb5\xe8\x28\xbd\x18\xc6\x39\xe1\xc9\x5d\xca\x76\x62\x07\x9e\x82\xe4\x7e\xe4\x42\xb7\xdb\xd4\x58\x75\x58\xb0\xf3\x9d\xa0\xae\xb2\xf5\x64\xc5\x4d\xdd\xc4\x34\x85\xdf\x8f\xa4\x35\x67\x54\x6f\x6a\x8c\x76\x6e\x52\x0c\x96\x5b\x4d\x19\xf1\x23\xe9\x64\x66\x62\x04\x65\x5b\xca\xf6\xf6\xa4\xcd\x04\xef\x07\xdb\x1f\xde\x4e\xe8\xdc\x2f\xa7\x92\x4e\x9d\xa3\x66\xb5\x3d\xa0\x7e\x32\xed\x19\x6b\xe2\x31\x80\xa6\xa3\x27\x99\x1b\x91\xa6\x6f\x7f\xef\xba\x63\x6d\x5f\x79\x0e\xef\x54\x8b\xf7\x65\xd4\x57\xde\x98\x76\xef\x20\xa9\xa5\x68\xa2\xf1\x8f\x03\x08\x13\xec\x3a\xd0\x2c\xaf\x33\xd9\x2d\x4a\x0b\x52\xe9\x03\x8a\x9e\x60\x2e\xdd\xaf\x01\xb7\xec\x3a\xee\x4b\xc9\xff\x2e\x09\x0a\xb4\x79\x72\xde\xb5\x5a\xf3\xff\x1d\x9b\xb3\x3b\xcf\xbf\xa5\x6e\x8c\x73\x9e\xb4\x86\xe4\xcf\xaf\x50\xe7\xfe\xbe\x44\x2f\xd1\x3f\x01\x00\x00\xff\xff\x54\x81\x36\x64\xf2\x0d\x00\x00" func lockedtokensAdminCustody_create_only_shared_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3900,11 +3940,11 @@ func lockedtokensAdminCustody_create_only_shared_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_shared_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x55, 0xbf, 0xb7, 0x6c, 0xdf, 0x9b, 0xe, 0x1e, 0xf4, 0x72, 0xb3, 0xa8, 0x9b, 0xad, 0x62, 0x78, 0x7b, 0xc3, 0xc1, 0xb1, 0x5d, 0x45, 0x73, 0xad, 0x27, 0xbc, 0x2b, 0xc0, 0x9f, 0x7c, 0xd7, 0xab}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0xe5, 0xf1, 0xe3, 0x9c, 0x8f, 0xa1, 0xf1, 0xe8, 0x70, 0x0, 0xa1, 0xcd, 0x92, 0x19, 0x17, 0x49, 0xf2, 0x4e, 0x68, 0xef, 0x32, 0x85, 0xb6, 0xac, 0x41, 0x2a, 0x9b, 0xfe, 0xa8, 0x96, 0x31}} return a, nil } -var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\xf6\x50\x28\x80\x63\x79\x8f\x15\x92\x2e\x5c\xc7\x69\x17\x71\x37\x41\x92\xed\x9e\x69\x69\x6c\x11\x96\x49\x95\xa4\xec\x0a\x41\xfe\x7b\x41\x51\x5f\x94\xa8\x38\x0e\x0a\xb4\xba\xd9\x7c\xc3\x99\x79\x6f\x66\x48\xd2\x7d\xc6\x85\x82\x85\x28\x32\xc5\xbd\xea\xd7\x6d\xca\x8f\xcf\x7c\x87\x0c\x36\x82\xef\x61\xf6\xf7\xed\xea\xfe\xc7\xf3\xfd\xdd\xf2\xdb\xfc\xe6\xe6\x71\xf9\xf4\xd4\x00\x73\xb6\xa5\xeb\x14\x6d\xf0\xf7\x6f\xbf\x7d\xfd\x75\xb5\x74\x19\xac\x78\xb4\xc3\xb8\x84\xcb\x1a\xbf\xba\x5f\xdc\x2d\x6f\x2c\xb4\x17\x04\x01\x3c\x0b\xc2\x24\x89\x14\xe5\x0c\x54\x42\x14\x10\x88\x72\xa9\x78\x5c\x40\x26\xf8\x81\xc6\x28\xe0\xc8\xf3\x34\x06\x49\xb7\xac\x34\x51\x1c\x22\x81\x44\x21\x10\x90\x09\x11\x18\x03\x89\x22\x9e\x33\x05\x84\xc5\x40\x18\xe4\x2c\x2d\x43\x28\xe1\xf5\xda\x86\x0b\x20\x90\x4b\x14\x9e\xa7\x5a\xaf\xbe\x07\x00\x90\x11\xa1\x28\x49\xe7\xf1\x9e\xb2\x87\x7c\x9d\xd2\xe8\x0e\x8b\xb0\x62\x6c\x7a\x87\xc5\x8a\x4a\xb5\x64\x4a\x14\x13\x08\x02\xf8\x81\x74\x9b\xa8\x10\x3e\xcf\x66\x5d\xf3\xef\x12\xc5\x19\xd6\x3f\x57\xd6\x9b\x3c\x3d\xd7\xf4\xf3\x6c\x36\xf3\x2e\xe0\xc5\x33\xee\x05\x66\x44\xa0\x5f\x31\xf7\x50\x11\x17\xc2\x3c\x57\xc9\xdc\xe4\xdf\x80\xf5\x97\xa2\xaa\xa8\xab\x56\xe1\xba\x8b\xf5\x33\x52\x68\xf3\xde\x7e\x17\x96\xbd\x66\xf2\x3c\xeb\xc6\xdc\x72\x3d\xdd\x61\x21\xa7\x24\x8e\xfd\xac\xcd\xdf\xa9\xc7\xb4\x01\x4c\x20\x21\x32\x99\xa7\x5b\x2e\xa8\x4a\xf6\x63\x78\x0b\x34\x81\x63\x45\x9e\x1b\x6c\x56\x2f\xce\x0f\xd2\x92\xee\x74\x8c\x36\xfc\xed\x10\x6d\x6c\x1d\x61\x13\x62\x47\x02\x67\x80\x83\xc2\x7a\x23\xba\x21\x76\x24\xb4\x21\x70\x10\x97\x2e\x8f\x03\xc9\x53\xb5\x20\x19\x59\xd3\x94\xaa\x02\xae\x6d\x42\x1b\xac\xfe\xa6\x29\x65\xbb\xab\x9f\x9a\x89\x34\xfd\x53\x1b\xff\xe2\x5b\x20\xfd\x05\x99\xa0\x07\xa2\x30\xd8\xd4\xd0\x12\x39\x19\x00\x15\x11\x5b\x54\x21\x04\x52\x71\x41\xb6\x7d\x03\x0b\x7f\x61\xfd\xfa\xf2\x05\x32\xc2\x68\xe4\x7f\x5a\x94\x63\x87\x71\x05\x3a\xbc\x72\x5e\x82\x99\x81\xe5\x1e\x10\x35\xc9\x7d\xea\xe5\x9e\xb6\x03\xf0\x0f\xc2\xc8\x16\x05\x5c\x5d\x5a\x63\x71\x6a\x26\xd8\x6a\x00\xf4\x4b\xde\xc2\x3e\x7d\xa3\xcd\x23\xc9\x01\xfd\xab\xcb\xa1\xc7\x09\x28\x1e\xda\x3e\x87\xde\x9e\x0c\x3b\x0f\x44\x25\xbd\x14\x54\x07\x75\x9e\x8a\x27\x5c\x3a\x54\x3d\x61\xf1\x60\x34\xd7\x41\x8e\x0b\xfd\xfe\x44\x3f\xa2\x7d\xc9\x06\xec\x2b\x2d\xc7\x85\x2f\x71\xbf\xf3\x34\x1e\x55\xfc\xb9\x45\xd8\x44\x18\x05\xe7\x71\x2c\x50\xca\xb0\xa7\x32\x31\x7f\xdb\xe9\x77\x25\x0a\x47\x04\xf3\xda\x44\x9d\x53\xa3\x2c\x1f\x6b\xd7\xab\xcb\x4e\x12\x7d\x87\x3d\x9e\x3b\xc9\x74\x08\x9e\x9c\x72\xea\xa8\x93\xce\x4e\x2f\x0e\x29\x2b\xcb\xaf\x6c\xc3\x5f\x7b\x05\xf4\x36\xda\x0c\xa9\x61\xe9\x38\xcb\xc6\x9d\x8e\x2b\x9b\x46\xeb\xf2\x0c\xf9\xaf\xfa\xc3\x1c\x60\xff\x97\xee\xe8\x1d\xf7\xfa\x9a\x66\xb5\x8d\x7b\x48\x56\x44\x2d\x74\x73\x70\x01\xd7\xfd\x6d\x6c\x06\xd7\x5c\x08\x7e\x74\x72\x68\x6f\xe4\x60\x51\x5f\x44\x9d\x4c\xd8\x96\x1f\xe7\xc2\x04\x07\x02\x37\x28\x90\x45\xa8\x19\x70\x79\xb0\x88\x70\xac\xeb\x6e\xaf\xaf\x52\x96\x53\xab\xb4\xce\x99\x14\xf5\x7d\xb8\x6f\xda\x6d\xca\xf1\x11\x53\x96\x59\xe8\xac\x77\x57\x6f\x04\x01\xdc\x1f\x50\x08\x1a\x23\xa8\x04\x21\xc6\x4d\x79\x5c\xb6\xef\x0d\x81\x11\xd2\x43\x47\x5b\x3b\x85\x9c\xe9\xaa\xf2\x03\x73\x57\x69\x4f\xee\xc7\xca\xcc\xf6\x55\x3d\x05\x18\x1e\x9b\x7d\xcd\x43\x62\x4f\xc4\x4e\xd6\xff\xc5\x26\x7c\x09\x44\xb6\xaf\x03\xb7\x7b\xd3\xa5\x73\x56\x3c\xa2\xe4\xb9\x88\xf0\xc5\x7a\x00\x4d\xeb\x30\xfa\x83\x68\x34\xde\x77\x4c\x9e\xf7\xb5\xa4\x9d\x78\x96\xaf\x81\x71\xb1\x27\x69\x9b\x38\x65\xfa\x4d\xa4\x1f\x03\x9a\x93\x9c\xd1\xbf\x72\x84\xac\xbb\xc7\xbf\x9b\xab\x21\xf2\xf6\x7d\x19\x9f\xba\x8b\x99\x0e\x7b\xf5\x5e\xbd\x7f\x02\x00\x00\xff\xff\xa7\x8e\x77\xbc\xb0\x0e\x00\x00" +var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xde\x63\x0d\x27\x8b\xd4\xe8\xa2\xc5\xa6\x68\xd0\xa6\xbb\xe7\x89\x34\xb6\x88\xc8\xa4\xca\x1f\x1b\x46\x90\x77\x2f\x28\x51\xb2\x28\x51\x89\x53\xb4\x97\xf2\x10\x44\xe4\xfc\x7c\xf3\xcd\x70\x38\x66\xfb\x4a\x48\x0d\x1b\x79\xaa\xb4\x88\xdc\xd7\x97\x52\x1c\x1f\xc5\x33\x71\xd8\x4a\xb1\x87\x59\xf7\x3d\xeb\x24\x0c\xdf\xb1\xa7\x92\x3c\xa9\xfe\x5e\x27\x79\x2f\xb2\x67\xca\xeb\x3d\xe5\x04\xfb\x5b\xb3\x28\x4a\xd3\x14\x1e\x25\x72\x85\x99\x66\x82\x83\x2e\x50\x03\x42\x66\x94\x16\xf9\x09\x2a\x29\x0e\x2c\x27\x09\x47\x61\xca\x1c\x14\xdb\xf1\x5a\x45\x0b\xc8\x24\xa1\x26\x40\x50\x05\x4a\xca\x01\xb3\x4c\x18\xae\x01\x79\x0e\xc8\xc1\xf0\xb2\xf6\x54\x8b\xb7\x67\x5b\x21\x01\xc1\x28\x92\x51\xa4\xcf\x5e\xe3\x08\x00\xa0\x42\xa9\x19\x96\x77\xf9\x9e\xf1\x07\xf3\x54\xb2\xec\x2b\x9d\x56\x8e\x9d\xe4\x2b\x9d\xee\x99\xd2\x3f\x71\x2d\x4f\x0b\x48\x53\xf8\x4e\x6c\x57\xe8\x15\x7c\x5a\x2e\xfb\xea\x7f\x2a\x92\x1f\xd0\xfe\xc1\x69\x6f\x4d\xf9\x51\xd5\x4f\xcb\xe5\x32\x9a\xc3\x4b\xd4\xb8\x97\x54\xa1\xa4\xd8\x31\xf7\xe0\x88\x5b\x01\x1a\x5d\xc4\x3f\x0a\x29\xc5\xf1\x1b\x96\x86\xe6\x70\x75\xd7\xd0\xd1\xe9\xda\x55\x92\x76\x4c\xba\x53\xb8\x01\xf7\x5f\x5c\xe1\xc9\x5a\x1a\x98\x9e\x7b\xba\x96\xd4\xcb\x35\x3b\x55\xcf\x65\xf2\x4c\x27\x95\x60\x9e\xc7\xd5\x99\x86\x60\x5a\x92\x4e\x60\x01\x05\xaa\xe2\xae\xdc\x09\xc9\x74\xb1\x9f\x92\xf7\x84\x16\x70\x74\x1c\x86\x85\x9b\xd3\xf9\xc7\x41\x7a\x19\x7c\x1f\xa3\x2f\xfe\x36\x44\x5f\xb6\x45\xd8\x41\xec\xd1\x1f\x04\x38\xaa\xaf\x37\xd0\x8d\x65\x27\xa0\x8d\x05\x47\xb8\x6c\x69\x1c\xd0\x94\x7a\x83\x15\x3e\xb1\x92\xe9\x13\xdc\x0c\x08\xcd\xda\x23\x46\x2a\x51\x5a\x48\xdc\x51\x67\xc0\xae\x84\x29\x65\x68\x5d\x57\xb2\xd7\x68\x92\xef\x4c\x17\xb9\xc4\xe3\x1c\xae\xba\x3e\x95\x7c\xb3\xfe\x6e\xe3\xd4\x99\x4a\xb7\xed\x49\x7d\x30\x00\x57\x9e\xfb\xd1\xaf\xc8\x71\x47\x12\xd6\xd7\x5e\xe3\x4a\x9a\x4e\x73\x3f\x12\x8c\xeb\xc0\x56\xc3\xf8\x26\xab\xdb\xe1\x49\x14\x1e\x28\x5e\x5f\x8f\x3d\x2f\x40\x8b\x95\xef\x7b\xec\xf5\x8f\xc6\xca\x03\xea\x62\x10\x8a\xee\x49\xfd\xe7\x74\xbf\x83\xf2\x36\xf6\x4c\xda\x75\x79\x5c\x9e\x6a\x28\xc8\x9f\x45\x99\x4f\x26\xea\xf1\x2c\xe1\x83\x68\x08\xbf\xcb\x73\x49\x4a\xad\x06\xac\x60\xb3\xbd\xf0\x34\xfa\x8c\xae\x26\xf8\x8d\x02\x40\xfb\xb7\xd1\xcb\xba\x67\x7d\x7d\xdd\x0b\x66\xe8\x78\x50\x07\xbd\xa0\x42\x44\x4d\x93\xb4\xc1\x0a\x6e\x3c\x40\xa1\xfc\xbb\x94\x5f\x4d\xf9\xbc\x8d\x2f\x40\x33\x0f\xc6\xef\xb9\xab\x9b\x8e\x2a\x62\x1f\xe0\x02\x50\x07\xeb\xde\xd9\xf8\x85\x6f\x45\xd3\x63\xa6\xaa\xbe\x6e\xe0\xff\xdb\x9a\x2f\xfb\x64\x6c\x6c\x91\x0b\x09\x37\xc3\x57\x35\x1c\xd7\x53\xfd\xf2\xaf\x43\xd8\x7d\x83\xb7\xb1\x1d\xd0\xde\x4a\x83\x13\x0c\x66\xdc\xae\xcf\x9f\xa1\x42\xce\xb2\x78\xb6\xa9\xa7\x35\x2e\x34\x34\xee\xbb\x01\x2c\x73\xe0\x25\x6d\x49\x12\xcf\x68\xd6\x0f\x35\xe0\xcc\xde\xcb\x76\x98\xf0\x9c\x79\xf9\xfd\xc8\x9d\x6e\x07\xc3\xa1\x6a\xbf\x66\xa7\x9b\x41\x5d\x68\xab\x60\xd1\x85\x2e\x63\x9a\xc2\x6f\x07\x92\x92\xe5\x04\xba\x20\xc8\x69\x6b\x1f\x8b\xde\x90\x2d\x29\x23\x76\x20\x99\x4c\x3c\x1a\x5e\xe5\x1a\xde\x5e\xa0\xb4\x79\xbe\xcf\x6f\xdb\xef\xce\x8e\xef\xdc\x0d\xc9\x9c\x8e\x9d\xa3\x66\xc4\xde\xa3\x7c\x56\xed\x5e\xde\xc4\xa3\x00\x55\x47\x4f\x32\xf5\x4a\xaa\x73\x07\xbc\xe8\x9a\xb5\xad\xe5\xc5\xbf\x56\x2d\xde\xd7\x41\x6b\x79\xe7\xc1\xbb\x80\xa4\x96\xa2\x40\xef\x1f\x06\xe0\x27\xd8\x36\xa1\x49\x5e\x27\xb2\x5b\x19\x0d\x5c\xc8\x3d\x96\x67\x82\x19\xb7\xbf\x4a\xec\x38\x6e\xb9\x37\x9c\xfd\x65\x08\x2a\xd4\x45\x32\x6e\x5c\xad\xf9\x7f\x8f\xcd\xc9\xb1\xe7\x9f\x52\x37\xc4\x39\x4d\x5a\x43\xf2\x97\x37\xa8\xb3\x7f\x5f\xa3\xd7\xe8\xef\x00\x00\x00\xff\xff\x49\x24\x03\x98\x7a\x0e\x00\x00" func lockedtokensAdminCustody_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3920,11 +3960,11 @@ func lockedtokensAdminCustody_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x74, 0x50, 0x5a, 0xa9, 0xa6, 0xb0, 0xd4, 0xdd, 0x14, 0x0, 0xfe, 0x63, 0xd4, 0xc3, 0x61, 0x85, 0xb3, 0xc0, 0x6f, 0xc0, 0x4a, 0xba, 0x4c, 0x57, 0xb3, 0x72, 0x4d, 0xc2, 0x2a, 0xc0, 0x5d, 0x57}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8d, 0x9c, 0xa9, 0xa6, 0xfd, 0xba, 0xcb, 0xf6, 0x70, 0x43, 0xa6, 0x9a, 0x65, 0x1e, 0x20, 0xa, 0xe3, 0x83, 0x0, 0x12, 0xfd, 0xaa, 0xf5, 0x47, 0x97, 0x51, 0xdd, 0xcd, 0x30, 0xd9, 0x8d, 0x16}} return a, nil } -var _lockedtokensAdminCustody_setup_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\xdd\x6a\xc2\x40\x10\x85\xef\xf7\x29\xe6\xaa\x28\xf8\xd3\x6b\x91\x42\xd0\x5c\x29\x35\x34\xbe\xc0\x74\x33\x35\x4b\x92\xdd\x30\x3b\x49\x5b\x24\xef\x5e\x62\x30\x65\xa5\xc5\x76\xee\xf6\xcc\xcf\x39\xfb\x99\xaa\x76\x2c\xb0\x77\xba\xa0\xec\xe8\x0a\xb2\x1e\xde\xd8\x55\xf0\xf8\xb1\x3f\x6c\x76\xf1\xf6\x78\xd8\xc5\xcf\xd1\x76\xfb\x12\xa7\xa9\x52\xc2\x68\x3d\x6a\x31\xce\xc2\x59\x29\x00\x80\x9a\xa9\x46\xa6\x89\x6e\xbc\xb8\xec\x33\x61\xd7\x9a\x8c\x78\x05\x51\x23\x79\xa4\xb5\x6b\xac\x4c\xaf\xc3\x7d\x95\x24\x80\x83\xbe\x61\x42\x71\x0c\xeb\x79\x90\x60\xa1\x7b\x9d\x06\x29\x0a\x46\x27\xd3\xef\x43\x37\x8e\x0b\x8f\x2d\x4d\xc6\x6e\x5f\xeb\x79\x68\x34\x83\xa0\x2d\x6e\x15\xfa\xfe\xe4\x98\x8a\x63\x3c\x51\x82\x92\xcf\xc6\xed\x69\x70\x67\x7c\x2c\x97\x30\x44\x07\x4b\xef\xc0\xa4\xc9\xb4\xc4\x20\x39\x0a\x54\xc8\x85\xbf\x6a\x19\xc8\xc0\x1a\x3d\x34\xb6\xbc\xd8\xfe\xfa\xaf\xd2\xd8\x62\xfd\x70\x37\xe8\xf9\xee\x44\xd2\xbc\x96\x46\x77\x4f\x21\xa4\x3f\xae\x85\x00\x2e\xf8\x90\x4f\x24\xff\x43\x78\x43\xb0\x53\x9d\xfa\x0a\x00\x00\xff\xff\x03\x0d\xf1\xc2\x83\x02\x00\x00" +var _lockedtokensAdminCustody_setup_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x51\xcb\x6a\xeb\x30\x10\xdd\xeb\x2b\x86\x2c\x82\x03\x79\xec\x43\xee\x85\x90\x6d\x17\x86\x94\xee\x27\xf2\xb4\x16\x96\x25\x31\x1a\xb9\x94\x92\x7f\x2f\xae\x89\x6b\xa5\xe9\x03\x3a\x0b\x2f\x8e\x47\xe7\x35\xa6\x0d\x9e\x05\xee\xbc\x6e\xa8\xba\xf7\x0d\xb9\x08\x8f\xec\x5b\x98\x4d\xa1\x99\x52\xc2\xe8\x22\x6a\x31\xde\xc1\xab\x52\x00\x00\x81\x29\x20\x53\xa1\x53\x14\x5f\xbd\x94\xec\x3b\x53\x11\x6f\x01\x93\xd4\xc5\x11\x3b\x7a\x40\x9b\x68\x09\x07\x0c\x78\x32\xd6\x88\xa1\xb8\x80\xf9\x5e\x6b\x9f\x9c\x2c\x2e\x3c\xfd\x58\x12\xc0\x01\x3f\x30\xa1\x78\x86\xdd\x2a\xb3\xb5\xd6\x3d\x4e\x03\xb4\xcf\x56\x8b\xc5\x07\xd1\x95\x99\x75\x14\xcf\xf8\x44\xeb\x88\x1d\x15\xe3\x56\x3f\xbb\x55\x2e\xb8\xcc\xfe\x8a\xdf\xe6\xf2\xb7\x84\x8f\x03\x79\x89\x52\x8f\x8f\x27\x5e\x36\x1b\x18\x4c\x83\xa3\x67\x60\xd2\x64\x3a\x62\x90\x1a\x05\x5a\xe4\x26\x5e\xb0\x0a\x64\xa8\x1e\x23\x24\x67\xdf\x95\xb2\x6a\xec\x0d\xf1\x03\x06\xf8\xf7\x29\xaf\x9e\x74\x3d\x86\x37\x31\x26\xda\xcd\x7f\xcc\xf3\x3f\x6f\xe8\xaf\xf9\xbf\xf5\x16\xd2\xc9\x9a\x58\xe7\x8a\x5f\xe4\xcc\x4f\x83\xf2\x8b\xd3\x94\x3d\xbd\xbe\x72\xd6\x7f\xcf\xea\xac\xde\x02\x00\x00\xff\xff\xb3\xbb\x63\xe2\xf6\x02\x00\x00" func lockedtokensAdminCustody_setup_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3940,11 +3980,11 @@ func lockedtokensAdminCustody_setup_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_setup_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x96, 0xaa, 0x40, 0xfa, 0xc7, 0xc8, 0x86, 0x4b, 0xda, 0x8f, 0x8a, 0x8f, 0x20, 0x36, 0xd0, 0xb0, 0x25, 0xd0, 0xe0, 0xed, 0x70, 0x60, 0xf2, 0x2c, 0x9a, 0x8d, 0x46, 0x4c, 0xce, 0xd8, 0x9, 0x5f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcb, 0x18, 0xe4, 0x77, 0xf3, 0x8, 0x1c, 0x54, 0xd1, 0x5, 0x32, 0x49, 0x92, 0x5f, 0x1e, 0x68, 0xe1, 0x59, 0x8d, 0x29, 0x7e, 0x52, 0xc6, 0x8e, 0x2e, 0x6b, 0xc4, 0xe4, 0xe8, 0x87, 0x58, 0x72}} return a, nil } -var _lockedtokensAdminDeposit_locked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x51\x4f\xdb\x30\x10\x7e\x26\xbf\xe2\xe8\x03\xa4\x12\xa4\x7b\x98\xf6\x10\x15\x58\xd7\x16\x34\x51\xc1\x54\x60\x3c\xbb\xc9\xa5\xf1\x70\xed\xc8\xbe\x50\x10\xe2\xbf\x4f\xb1\xe3\x2c\xa6\x08\x96\x97\x28\xf6\xdd\x77\xdf\x7d\xf7\x5d\xf8\xa6\x52\x9a\xe0\xbc\x96\x6b\xbe\x12\x78\xab\x1e\x50\x42\xa1\xd5\x06\xbe\x3c\x9d\xdf\x5d\x5d\xfc\xfc\xb1\x98\xdf\x5e\x5f\xce\xaf\x26\xb3\xd9\x72\x7e\x73\x13\xf9\x04\xa1\xb6\x61\xf0\xe2\xfa\x3e\x08\xf4\x91\x0b\x95\x3d\x60\x6e\x63\x8d\x0f\x5e\x5c\x4f\x2f\xe7\xb3\x30\x9c\x34\x93\x86\x65\xc4\x95\x8c\x49\xa5\x30\xc9\x73\x8d\xc6\x1c\x01\xdb\xa8\x5a\x52\x0a\x77\xe7\xfc\xe9\xdb\xd7\x21\xbc\x44\x11\x00\xc0\x68\x04\xb7\x25\xc2\x6f\x56\x0b\x02\x8d\x46\xd5\x3a\x43\xa0\x92\x11\x94\x4a\xe4\x06\xa8\x44\x20\x57\xd6\x9e\x32\x8d\xb0\x42\x2e\xd7\x60\x4b\x15\xa8\x35\xe6\x16\x4a\x20\x81\x41\x49\x16\x2b\x85\xef\x81\x1a\x89\x3d\x75\x35\x2b\x8d\x15\xd3\x18\xb3\x7c\xc3\x65\x0a\x93\x9a\xca\x49\x96\x35\xf4\x3a\x5a\x2d\xb5\x0b\x24\x60\xa0\xb1\x40\x8d\xb2\xe1\xa5\x2c\x1f\x9b\x78\x68\xc0\x90\xd2\x98\xc3\xa3\x85\xf6\x69\x0d\x0d\x7b\xb2\xc4\x02\x4e\x5c\x6c\xb2\x52\x5a\xab\xed\xf8\xa0\x13\xdc\xf1\x39\x8d\x1b\x29\x53\x18\x35\x48\x6c\x8d\xa3\xc2\xdf\xdb\xeb\x61\xb4\xb7\xb7\x77\x76\x06\x15\x93\x3c\x8b\x07\x53\x55\x8b\x1c\xa4\x22\x70\x70\xbb\xc4\xd4\x56\xa2\x3e\x34\x4e\xce\xfd\xc1\x30\x0a\x58\x59\x2a\x3d\x56\xdd\x65\xf3\x74\x14\xfb\x93\x4e\xec\x6b\xd2\x04\x4f\x95\x10\x68\xe7\x7a\x1a\x07\x89\xcd\xe3\xba\x08\x32\x7b\x1f\x6f\xf2\x6f\x5c\xaf\xbf\x18\x95\x01\xd0\x30\xf8\xfa\xa0\xed\x77\x26\x22\x6c\x35\x67\x14\xd7\x1c\x64\x5d\xc1\xbe\x0e\xcc\x18\xd4\x14\x76\xe0\x75\x49\xd6\x48\xad\x11\x62\xe6\x7c\x9b\x02\xa9\x21\xec\x9f\x80\xe4\xe2\x28\x48\xda\xa0\x31\x6c\x8d\x29\x0c\x1a\xff\x9a\x0a\x33\x5e\x70\xcc\x81\x39\x00\xe0\xc6\x52\x66\x9e\x5a\x7b\xbe\x0f\x53\x26\x9b\x0b\x83\x32\x0f\x68\x9b\x41\xf4\x4f\x89\xbe\x09\xef\x39\x95\xb9\x66\x5b\xbf\x06\x76\xfb\x3e\xb5\xa1\x41\x51\x24\xdd\x3a\xc0\xf8\xb8\x33\x65\xb2\x6d\x01\x63\xbf\x93\xee\xed\xf4\x7f\x75\xb5\xf1\x09\xb3\x9a\xf0\x9d\x7d\x68\x2a\x6b\xcc\x78\xc5\x51\xd2\xa1\x81\xaa\x5e\x09\x9e\x75\x7d\xab\xd5\x1f\xcc\xc2\x6d\xe8\xa2\xe1\x04\x7a\x12\x93\x1a\xfe\xcf\xb2\xf5\x6b\x2d\x31\x43\xfe\x88\xfa\x2d\xbc\x3d\x74\xce\xee\xc2\x43\x77\xaf\x91\xa6\xac\x62\x2b\x2e\x38\x3d\x8f\x0f\x26\xf2\x79\xd9\xfe\x6c\x5e\xc2\xff\x84\x2f\xf1\xfa\x8e\xcd\x47\xae\xd7\x91\x1b\x5b\xb7\xcb\x3b\xac\x76\xdd\xdc\x6e\x57\xfc\xf9\x46\x3b\xa8\x8f\x65\x68\x6d\x63\x27\x3b\x08\x45\x9c\x61\xa5\x0c\x77\x53\xf2\x73\x96\xde\x39\x5c\xee\x40\xe9\xb7\xdc\x7b\x6a\x26\xb9\x03\x6b\x7f\x52\xe3\xe3\xd0\x53\xde\x2f\xaf\xd1\xdf\x00\x00\x00\xff\xff\xf3\x18\x9a\xb9\x7f\x06\x00\x00" +var _lockedtokensAdminDeposit_locked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x4f\xdc\x3e\x10\x3d\x93\x4f\x31\xe4\x00\x89\x04\xd9\xcb\x4f\xbf\x43\xc4\x9f\x52\x2a\x7a\xe9\xa1\xa2\x94\x9e\x1d\x67\xb2\x71\xf1\xda\x91\x3d\x61\x91\x10\xdf\xbd\x8a\x1d\xbb\xf1\xee\x0a\x9a\x4b\xe4\xf1\xcc\xbc\x37\x33\x6f\x2c\x36\x83\x36\x04\x77\xa3\x5a\x8b\x46\xe2\x83\x7e\x42\x05\x9d\xd1\x1b\xc8\x13\x5b\x9e\x05\x4f\xa9\xb7\x89\x57\x38\xe7\x59\x70\xf9\xa6\xf9\x13\xb6\xce\x68\x67\xaf\xa5\x29\xcf\x32\x32\x4c\x59\xc6\x49\x68\x55\x90\xae\xe1\xa6\x6d\x0d\x5a\x7b\x06\x6c\xa3\x47\x45\x35\xfc\xbc\x13\x2f\xff\xff\x57\xc2\x6b\x96\x01\x00\xac\x56\xf0\xd0\x23\x3c\xb2\x51\x12\x18\xb4\x7a\x34\x1c\x81\x7a\x46\xd0\x6b\xd9\x5a\xa0\x1e\x81\x3c\xa0\xb3\x32\x83\xd0\xa0\x50\x6b\x70\x50\x1d\x1a\x83\xad\x4b\x25\x91\xc0\xa2\x22\x97\xab\x86\x4f\xaf\x49\x99\x95\x33\xbf\x79\xd4\xc1\xe0\xc0\x0c\x16\xac\xdd\x08\x55\x03\x1b\xa9\x2f\x3e\x6b\x63\xf4\xf6\x91\xc9\x11\x4b\x38\xb9\xe1\x7c\xe2\x1b\x79\xce\x5c\xbf\x22\x01\x03\x83\x1d\x1a\x54\x13\x51\xed\x08\xba\x3c\xa7\x16\x2c\x69\x83\x2d\x3c\x4f\x50\x31\x6c\xe2\xe5\x2c\xf7\xd8\xc1\xa5\xf7\xad\x26\x4f\xb6\xc6\xaa\x71\xa8\x17\x8e\x41\xca\xf7\x97\xa0\xbe\x35\x6c\x5b\xc2\x49\x9c\x84\x2f\xe2\xaa\x98\x5a\x5f\xc3\x6a\x4e\xb2\xea\xc2\xbd\xbb\x2e\xb3\xa3\xa3\xa3\xeb\x6b\x18\x98\x12\xbc\xc8\x6f\xf5\x28\x5b\x50\x9a\xc0\x63\xed\xb3\xd7\x5b\x85\xe6\xd4\xfa\x21\x1c\xe7\x65\x96\x50\x77\x7c\x0f\x50\x8f\x4e\xd3\x17\xea\x38\x59\xca\xa1\x72\xbf\x9b\x29\xe8\x56\x4b\x89\x4e\x15\x57\x45\x12\x38\x7d\xbe\x9a\x24\x72\x71\xd8\x89\xff\xe1\xd1\xbf\x33\xea\x93\x44\x65\x72\x7a\xa7\xfc\x03\xe3\x93\x0e\xcd\xcb\xcc\x17\x09\x3c\x02\x2e\xfb\xc1\xac\x45\x43\x69\x05\xa1\x3f\xd5\x1a\x69\x56\x4d\xc1\xbc\xea\x6b\x20\x5d\xc2\xf1\x25\x28\x21\xcf\x92\xa0\x0d\x5a\xcb\xd6\x58\x43\x3e\xa9\xdf\x0e\xc8\x45\x27\xb0\x05\xe6\x13\x80\xb0\x8e\x32\x0b\xd4\x66\xfb\x31\xdc\x32\x35\x5d\x58\x54\x6d\x42\xdb\xe6\xd9\xdf\x4e\x2c\x15\x1b\x64\x14\x96\xc8\x6d\xed\x87\x9a\xb5\x28\xbb\x2a\x2e\x13\x5c\x9c\x47\x05\x57\xdb\x39\x61\x11\x36\xda\xff\x7d\xff\xe7\xfd\xc2\x17\xe4\x23\xe1\x81\xe5\x99\x90\x0d\x72\x31\x08\x54\x74\x6a\x61\x18\x1b\x29\x78\xac\x5b\x37\xbf\x91\xa7\xab\x13\xbd\xe1\x12\x16\x2d\x26\x5d\xfe\xcb\x66\x2e\xb1\xee\x91\xa3\x78\x46\xb3\x9b\xde\x19\xbd\xc2\xa3\x7b\xaa\x6e\xce\x06\xd6\x08\x29\x48\xa0\x8d\x52\xdf\x79\x5f\x42\xf6\xb7\x03\x0a\x5f\xf9\x32\x57\x7e\x62\x71\x9d\xf7\x08\xf9\xf1\x7d\xb4\xbe\x3e\xe8\xfd\x5a\x67\x6d\xb8\xf1\xe5\x69\xa7\xbe\xe0\xa0\xad\xf0\xa3\x08\xc3\x54\x41\x1e\x42\xed\xa5\x32\xbb\x2c\x17\x2d\xab\x5a\x9f\x6c\x7e\x91\x2e\xce\x53\xe1\x04\x51\xbc\x65\x7f\x02\x00\x00\xff\xff\x94\x91\x54\x35\x8e\x06\x00\x00" func lockedtokensAdminDeposit_locked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3960,31 +4000,11 @@ func lockedtokensAdminDeposit_locked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/deposit_locked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x97, 0xf7, 0x8d, 0x2a, 0x18, 0x7c, 0x14, 0x6a, 0x90, 0x21, 0x34, 0x33, 0x63, 0xb4, 0xa0, 0x31, 0x6b, 0xb8, 0x85, 0xb5, 0xbf, 0xe8, 0xdd, 0x6, 0xa8, 0xbc, 0x74, 0x3, 0x46, 0x89, 0x24}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0x20, 0xf3, 0x69, 0x56, 0x19, 0x68, 0x47, 0x94, 0x66, 0xf4, 0x82, 0x18, 0xa4, 0xba, 0x93, 0xed, 0x42, 0x70, 0xeb, 0xaf, 0xac, 0x53, 0x45, 0x32, 0x2e, 0xd2, 0x81, 0xf9, 0x8, 0xa6, 0x11}} return a, nil } -var _lockedtokensAdminGet_unlocking_bad_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x6e\x83\x30\x10\x44\xef\x7c\xc5\x34\x87\x0a\x2e\xc9\xa5\xea\x01\x95\x46\x34\x55\x3f\xa0\x52\x4f\x55\x0f\xc6\x36\x68\x05\xd9\x45\xc6\x56\x8b\x10\xff\x5e\x25\x10\x1a\x35\xf8\x64\xcb\x33\xf3\x66\x37\x8a\xda\x50\xa0\x0c\x8c\xa3\x22\x8e\xbd\xd4\x96\x73\x73\x24\x4e\x91\x1b\xe3\x6c\xd7\x25\x29\x86\xf9\x9a\xe2\xe3\x8d\x7e\x1e\x1f\x46\x0c\x51\x04\x00\x8d\xf5\xd0\xd2\xf6\x52\xbe\x92\xf6\x24\xac\x5c\xbf\x26\xcf\x30\x8c\x7f\x0e\xa5\xb5\x04\xf6\xc8\x50\x59\x9f\x4f\x8f\x2b\x72\x72\x16\x2e\x6a\xb3\x24\xbf\xdb\xd2\x3a\xcb\xda\x22\xbb\x64\x6c\x2b\xeb\x0f\xaa\x55\x05\x35\xe4\xfb\xa7\xfb\x1b\xf4\x73\xbc\x6b\x43\xd1\x90\xde\x05\x6e\x44\xd7\xc4\xd5\x8b\x32\x33\xb4\x4b\xb6\x85\x38\x27\xdf\xf1\xc4\x3c\x9d\xfd\x1e\xad\x62\xd2\xf1\xe6\x20\xa1\x31\x60\xf1\xa7\x9a\x28\x94\xb9\x40\xbb\xab\x4e\x9b\x64\x9a\xab\x14\x07\x35\xb1\x41\xbc\x56\x7a\x5b\xdb\xbe\xc3\xb0\x80\xfe\xef\xed\x73\xb6\x7f\x21\x5b\xb3\x2f\xdf\x77\xe7\x84\x79\x9d\xce\xfa\xe0\xf8\x26\x2b\x1a\x7f\x03\x00\x00\xff\xff\xc1\x6f\xdb\x13\xd8\x01\x00\x00" - -func lockedtokensAdminGet_unlocking_bad_accountsCdcBytes() ([]byte, error) { - return bindataRead( - _lockedtokensAdminGet_unlocking_bad_accountsCdc, - "lockedTokens/admin/get_unlocking_bad_accounts.cdc", - ) -} - -func lockedtokensAdminGet_unlocking_bad_accountsCdc() (*asset, error) { - bytes, err := lockedtokensAdminGet_unlocking_bad_accountsCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "lockedTokens/admin/get_unlocking_bad_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x78, 0xe6, 0x4d, 0xc9, 0xc6, 0x4c, 0x38, 0x6b, 0xac, 0x70, 0xbe, 0xab, 0x73, 0x1f, 0xac, 0x4a, 0x17, 0x50, 0xba, 0x88, 0xc7, 0xa8, 0xd1, 0x5e, 0x27, 0xaf, 0x36, 0xf3, 0x78, 0x8b, 0x30, 0x8b}} - return a, nil -} - -var _lockedtokensAdminUnlock_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x91\xcd\x6e\xea\x30\x10\x85\xf7\x79\x8a\xb9\x2c\xee\x4d\xa4\xab\xa8\x8b\xaa\x8b\xa8\x2d\x8a\x80\x6e\xa0\xa5\xe2\xe7\x01\xa6\xce\x04\x2c\x12\x4f\x34\x9e\xa8\x48\x15\xef\x5e\x25\x46\x34\xb0\xed\x6c\xc6\x96\x8f\xed\xef\x9c\xb1\x75\xc3\xa2\xb0\x60\x73\xa0\x62\xc3\x07\x72\x1e\x4a\xe1\x1a\xee\x8e\x8b\xe5\x64\x3e\x9b\x6e\x96\xf3\xd9\x5b\x3e\x9d\xae\x66\xeb\x75\x14\xa9\xa0\xf3\x68\xd4\xb2\x8b\x15\x65\x47\x9a\x1b\xc3\xad\xd3\x0c\xf2\xa2\x10\xf2\xfe\x3f\x14\x54\x29\x66\xb0\x7d\xb1\xc7\x87\xfb\x04\xbe\xa2\x08\x00\xa0\x11\x6a\x50\x28\xc6\xa2\xb6\x2e\x83\xbc\xd5\xfd\xf9\xea\x45\xd2\x55\x45\x0a\xbd\x64\x45\x25\x3c\x85\x65\xfa\xc1\x22\xfc\xf9\xf8\x77\x48\x99\xf6\x2d\xef\xce\x27\x5c\x55\xd4\x33\x3d\xc7\x1d\x7b\x76\x65\x27\x1d\x6c\x6e\xe4\x6b\x65\xc1\x1d\xbd\xa3\xee\x93\x0b\x41\x57\xe3\x31\x34\xe8\xac\x89\x47\x13\x6e\xab\x02\x1c\x2b\x04\x08\x40\x10\x2a\x49\xc8\x19\x02\x65\xd0\x3d\x05\x48\x30\x97\x67\x47\xc9\xb5\x1f\xed\xbe\x7e\x45\x87\x3b\x92\x81\xad\x15\x95\xe9\x4f\x80\x31\x86\xfc\x32\xb8\xca\x35\xf9\x73\x76\x1f\xff\x86\xb0\xf5\x24\xff\x7c\x00\x81\x3a\x90\x0c\x29\x6f\x08\x53\xeb\x8c\x10\x7a\xda\xba\x8a\xcd\x61\x61\x6b\xab\xf1\x79\xac\x7d\x0b\x2c\xa7\xe8\x14\x7d\x07\x00\x00\xff\xff\xd0\xd3\x4e\x0e\x40\x02\x00\x00" +var _lockedtokensAdminUnlock_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x91\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x63\x0e\x75\x03\x92\x93\x78\x08\x6a\xa9\x05\x4f\x15\xa4\x5a\xef\xe3\x66\xd2\x2e\xdd\xec\x84\xd9\x09\x0a\xd2\xff\x2e\xc9\x96\x9a\xf6\xea\x5c\x26\x59\x66\xde\x7e\xef\xad\x6b\x3b\x16\x85\x15\xdb\x3d\xd5\xef\xbc\xa7\x10\xa1\x11\x6e\x21\x9f\x1e\xe5\x59\xa6\x82\x21\xa2\x55\xc7\xc1\x28\xca\x96\x74\x61\x2d\xf7\x41\x2b\x58\xd4\xb5\x50\x8c\x37\x50\x93\x57\xac\x60\xf3\xec\xbe\xef\x6e\x0b\xf8\xc9\x32\x00\x80\x4e\xa8\x43\x21\x83\x75\xeb\x42\x05\xd8\xeb\xce\x3c\xb1\x08\x7f\x7d\xa0\xef\xa9\x80\xd9\x51\xe9\xb4\x31\x94\x27\x85\x71\x63\x4d\x0d\x3c\xa4\xcf\x32\x2a\x0b\x6e\xa9\xfc\x1c\xd7\xef\x67\x53\xc6\x72\x6c\x8b\x61\x6e\xc9\xde\xd3\x88\xfa\x68\x06\x33\xd5\x99\xbf\x72\xf2\x73\x31\xfe\x96\xf4\x5f\x51\x77\xc5\x89\x64\xa8\xf9\x1c\x3a\x0c\xce\x9a\x7c\xc9\xbd\xaf\x21\xb0\x42\x82\x00\x04\xa1\x86\x84\x82\x25\x50\x06\xdd\x51\x82\x05\x7b\x92\xcd\x8b\x73\x5f\x3a\x5c\xfd\x82\x01\xb7\x24\x13\x7b\x6b\x6a\xca\xbf\x5c\x0d\xa6\x58\x2b\x38\x8b\xbb\xb8\x3a\xba\x37\xff\x21\xec\x23\xc9\x75\x4c\x20\xd0\x26\x92\x29\xe5\x05\x61\xe9\x82\x15\xc2\x48\x9b\xe0\xd9\xee\x57\xae\x75\x6a\x8e\xaf\x3d\xb6\xc4\x72\xc8\x0e\xd9\x6f\x00\x00\x00\xff\xff\xfd\x94\x1c\x78\x51\x02\x00\x00" func lockedtokensAdminUnlock_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4000,11 +4020,11 @@ func lockedtokensAdminUnlock_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/unlock_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x58, 0xa9, 0x1, 0xbc, 0x31, 0xd2, 0x33, 0xd, 0x5b, 0xb, 0x97, 0x13, 0xe6, 0x85, 0x86, 0x57, 0xa2, 0x99, 0xa6, 0x1f, 0x8c, 0x9f, 0x8b, 0xb5, 0xab, 0xd9, 0x40, 0x1, 0x5d, 0x97, 0x33}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x69, 0x90, 0x59, 0xfe, 0x29, 0x32, 0xe, 0xe7, 0xbe, 0x46, 0xb8, 0xce, 0x1a, 0x34, 0xdd, 0x1f, 0x52, 0x19, 0x81, 0x95, 0x62, 0x32, 0xfe, 0xdc, 0xb7, 0xcf, 0xca, 0xde, 0x73, 0x50, 0xb4, 0x10}} return a, nil } -var _lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x4d\x6f\xe3\x46\x0c\xbd\xfb\x57\xb0\x7b\xd8\xda\x40\x10\xf7\x50\xf4\x10\x24\xbb\x70\x93\xb4\x0d\x36\xed\x2e\x92\xec\xa9\xe8\x81\xd6\x50\xd2\xc0\xd2\x8c\x31\x43\xc5\x09\x02\xff\xf7\x82\x33\x92\x3d\xfa\x88\xb1\xba\x24\x96\xc8\xc7\xaf\x47\x3e\x5d\x6f\xad\x63\xb8\xb7\xd9\x86\xd4\x93\xdd\x90\xf1\x90\x3b\x5b\xc3\x2f\x2f\xf7\x5f\xaf\xbf\xdc\xde\x3c\x7d\xfd\x72\xfb\xcf\xea\xe6\xe6\xe1\xf6\xf1\x71\x36\x5b\x2e\xe1\xa9\xd4\x1e\xd8\xa1\xf1\x98\xb1\xb6\x06\x1a\x4f\x1e\xb8\x24\xa8\x02\x08\x70\x44\x41\x55\x6b\x23\x0e\x6c\xc1\x13\x07\x8b\xc6\x88\x0d\x54\xba\xd6\x0c\xb9\x75\x50\x37\x15\xeb\x6d\x45\x80\x59\x66\x1b\xc3\x5e\x1c\xb4\x01\x04\xaf\x4d\x51\x51\x1a\x28\x06\x3f\x98\x02\x2a\xe5\xc8\x4b\xf0\xc6\x93\x02\xf4\xb0\xa1\xd7\x00\xe0\x4b\xdb\x54\x0a\xd6\x94\x04\x15\x8b\xa1\xe3\x6c\x96\xc0\xcf\xa3\xdd\x9d\xc9\xed\x05\xbc\xad\xa2\xcd\x05\x7c\xff\x43\xbf\xfc\xf6\xeb\x7e\x01\x6f\xb3\x19\x00\xc0\xd6\xd1\x16\x1d\xcd\x43\x79\x17\xb0\x6a\xb8\x5c\x45\xdc\x83\x89\x3c\xcb\x25\x7c\xef\xe2\xae\x46\x09\x73\x89\x0c\x25\x2a\xf0\xb6\x26\xf0\x32\x01\x9b\x03\x39\x67\x5d\x8a\x80\x8e\xc0\xb3\x75\xa4\xa4\x27\x2c\x8d\x57\x3a\x24\x8b\xee\x15\xbc\x95\xf2\x5e\x21\x43\x23\xa5\x6a\xe3\xb7\x94\x31\x29\xa8\x90\xa9\x87\x73\x97\x87\x46\xa4\x43\x33\x44\xca\xcb\x68\x5c\x63\x8e\x53\x60\x5d\x93\x3f\x4b\x5d\xb9\x24\x13\x9c\x93\xc0\xda\x83\xb1\x0c\xf6\x99\xdc\xce\x69\x66\x32\x07\x8f\x67\x74\xb0\x46\xd5\x56\xec\x27\x1a\x09\x57\x91\x19\xe7\x95\x45\x75\x39\xfa\xfc\x69\x2e\xec\xbb\x80\xa5\xd4\x8d\x05\x2d\xe3\x54\xb4\x29\x7e\x3f\xc2\x2e\x0e\xf1\xe4\xf9\xfc\x19\xde\xf6\x32\xfe\x11\xd8\x71\x1c\x15\x71\x0c\xfb\x40\xf9\x21\x83\xb5\x75\xce\xee\x2e\x3f\xa6\xe4\x3f\x0f\x7f\x56\xf2\xfd\xda\x56\x15\x85\xa2\xbb\xa4\x7a\x86\xc9\x8f\x81\xf9\x63\x4c\xfd\x1b\x72\x39\xca\x74\x8b\x46\x67\xf3\x0f\xd7\x81\xa0\xd2\xc5\x98\x04\x20\x38\xca\xc9\x91\xc9\x48\xa6\x22\x1d\x0f\x49\x42\x76\x80\xfd\xb0\x38\xd6\x23\xbb\xd3\xf1\xba\xad\x5a\x28\x72\xa4\xf0\xb9\xec\x42\x4a\xc8\x76\x9e\xab\xaa\x12\xaa\x09\xbe\xce\xa5\x2d\x3e\xb0\x6c\x4d\x19\x36\x9e\x60\x47\xa0\xac\xf9\x99\x01\x76\x68\x18\xd8\x0e\xfd\x1d\x3d\x93\x8b\xcb\x4c\x86\xb5\xeb\xb3\x4a\xe7\x20\x8b\x8d\xba\xf2\x43\x47\xb6\x50\xb4\x57\x40\x9b\xdc\xba\x1a\x83\x87\x14\x72\x58\xf6\x76\x41\x7a\xae\x31\xcb\xf6\xb6\xb4\x04\x90\x02\xe3\x20\x0b\xe2\xf6\xdd\x7c\xd0\x8e\x7e\xe7\xe5\x39\x2f\x88\xaf\x71\x8b\x6b\x5d\x69\x7e\x9d\x1a\xfb\x5f\xb6\x52\xe4\xde\x26\xc6\x9c\x04\xde\x7f\x9a\x9f\x36\xf8\xd6\xac\x2b\x9d\x8d\xa7\x1f\x72\x88\xe3\x9e\x2f\x86\xa3\xe9\x48\xda\xab\xb3\x9b\xec\xd5\x64\xf9\x52\xcf\xfd\x84\xf9\x7c\x31\x86\xee\x75\x31\x72\x36\xfa\x3c\x50\x66\x9d\xea\x56\xa2\x45\xed\x5a\x8a\xdd\x3e\x4d\x65\x25\x25\x0c\xc3\xc8\x33\xf9\xb2\x8d\x1f\xa4\xe1\x6f\x34\x58\x90\x8b\x03\x7c\x2f\xa3\x93\x8d\x4a\x68\xf5\x67\x5f\x59\xb0\x0e\x97\x36\x28\xd8\xf0\xe4\xa1\x2b\x9a\x9a\x0c\x27\xa7\xec\x5d\x64\xb9\x63\x11\x72\x15\x11\xaf\x92\xdd\xfa\x77\x40\xb5\xff\x7e\x3a\x99\xe2\x9d\xc9\x1c\xa1\xa7\xb1\x02\xae\x5f\xe3\xa2\x87\x10\xef\x42\x0c\x9a\x76\xae\x5b\xbc\xa8\x2f\xf7\x82\x34\x57\x54\x31\x5e\xf4\x52\x9e\x60\x41\x92\xd4\xb5\x35\xac\x4d\x73\x38\x36\x86\x5e\x18\x34\x93\x8b\x6b\xd9\x9e\x88\xca\xda\xed\x29\x94\xee\x6c\x70\x22\xcb\xbe\xc9\x32\x22\x25\x7a\x6b\x14\x28\x4b\x51\x2d\x44\x70\x4e\x41\xb1\x15\x11\xab\xd1\x6d\xa2\x96\xaf\xf1\x7d\xf3\xac\x4d\x7e\xd2\x60\x3f\x7a\xbb\xef\x73\x72\x3f\x3a\x8a\xad\x3e\xd2\x0b\x65\x4d\x28\xbf\xc6\x0d\x79\x39\x65\x25\x39\x82\xf9\xa1\x08\x47\x98\x95\xc1\xb6\x4b\x01\x70\x6d\x9f\x69\x31\x44\xd4\x0c\x35\xa1\xf1\x41\xe0\xb9\xd4\xa6\x80\x9d\x50\x6f\xe7\xac\xfc\xab\xb9\x4c\xd8\x20\x5f\xe5\x0e\x26\x5d\x1c\xe2\x49\x2b\x35\x1f\x55\x7b\x4d\xe0\xf1\x79\xd0\xd1\x44\x78\x47\x14\x3d\x4d\xe0\xd9\x44\x6f\xa2\x46\x4a\x94\x29\x95\x4e\x62\x9d\x01\xdb\x1f\x16\xec\x56\xfb\xb5\xd9\x5c\x7e\x9c\x80\x5d\x6e\xc3\xf1\x9c\x04\x39\x03\x46\x57\x10\xff\x50\xac\xfd\x6c\x3f\xfb\x3f\x00\x00\xff\xff\xf5\xc0\xcc\x21\xdc\x0a\x00\x00" +var _lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x6f\xe3\x36\x10\xbd\xfb\x57\x4c\x73\x48\x65\x20\xb0\x2f\x45\x0f\x46\xb2\x0b\x37\x40\xdb\x00\x29\xb0\xd8\xee\x9e\x8a\x1e\xc6\xe4\xd8\x22\x22\x91\x06\x39\xb2\x13\x04\xfe\xef\xc5\x90\x92\x4d\x7d\xc4\x5d\x5d\x12\xcb\x33\x6f\xbe\xde\xcc\xb3\xa9\xf7\xce\x33\x3c\x3b\xf5\x42\xfa\x9b\x7b\x21\x1b\x60\xeb\x5d\x0d\x37\xf9\xab\x9b\xd9\x6c\xb9\x84\x6f\xa5\x09\xc0\x1e\x6d\x40\xc5\xc6\x59\x68\x02\x05\xe0\x92\xa0\x8a\xb6\xc0\xc9\x1f\x75\x6d\xac\x38\xb0\x83\x40\x1c\x2d\x1a\x2b\x36\x50\x99\xda\x30\x6c\x9d\x87\xba\xa9\xd8\xec\x2b\x02\x54\xca\x35\x96\x83\x38\x18\x0b\x08\xc1\xd8\x5d\x45\x79\xa0\x14\xfc\x6c\x0a\xa8\xb5\xa7\x20\xc1\x9b\x40\x1a\x30\xc0\x0b\xbd\x45\x80\x50\xba\xa6\xd2\xb0\xa1\x2c\xa8\x58\x0c\x1d\x67\xb3\x0c\xbe\x48\x76\x4f\x76\xeb\x56\xf0\xbe\x4e\x36\x2b\xf8\xfe\xbb\x79\xfd\xf5\x97\xd3\x1c\xde\x67\x33\x00\x80\xbd\xa7\x3d\x7a\x2a\x62\x79\x2b\xc0\x86\xcb\xe2\x6f\x76\x1e\x77\x74\x07\x8f\xb8\xc7\x8d\xa9\x0c\x1b\x0a\x73\xb8\x5d\xa7\x80\x67\x5f\x79\x96\x4b\xf8\xde\x25\xb4\x1e\x55\xc2\x25\x32\x94\xa8\x21\xb8\x9a\x20\xc8\x50\xdc\x16\xc8\x7b\xe7\x73\x04\xf4\x04\x81\x9d\x27\x2d\xcd\x62\x99\x88\x36\xb1\x0a\xf4\x6f\x10\x9c\xd4\xfd\x06\x0a\xad\xf4\xc0\xd8\xb0\x27\xc5\xa4\xa1\x42\xa6\x1e\xce\xd3\x36\x76\x28\x9f\xa6\x25\xd2\x41\x66\xe6\x1b\x7b\x19\x0f\x9b\x9a\xc2\x5d\xee\xca\x25\xd9\xe8\x9c\x05\x36\x01\xac\x63\x70\x07\xf2\x47\x6f\x98\xc9\x9e\x3d\x0e\xe8\x61\x83\xba\xad\x38\x4c\x74\x18\x1e\x12\x65\x16\x21\x75\x73\x51\x39\xd4\xf7\x23\xb3\x4f\x85\x10\x73\x05\xcb\xd6\x6c\x99\xc6\x66\xec\xee\xb7\x0b\xfc\xfc\x1c\x57\x9e\xcf\x9f\xe1\xfd\x24\xfc\x18\x81\x5d\xc6\x52\x11\xa7\xf0\x5f\x69\x3b\xca\x64\xe3\xbc\x77\xc7\xfb\xdb\x7c\x19\x16\xf1\xcf\x5a\xec\x1e\x5d\x55\x51\x6c\x42\x97\x5c\xcf\x30\xfb\x30\x30\x6f\x79\xf3\x05\xb9\x1c\x65\xbc\x47\x6b\x54\x71\xf3\x18\x99\x2c\x5d\x4d\x49\x00\x82\xa7\x2d\x79\xb2\x8a\x64\x4a\x32\x81\x98\x2c\xa8\x33\xec\xcd\xfc\x52\x97\x2c\x59\xb7\x00\x6d\xf5\x42\x99\x0b\xd7\x17\xb2\x34\x39\x41\xdb\xf9\xae\xab\x4a\xa8\x27\xf8\x66\x2b\xed\x09\x91\x75\x1b\x52\xd8\x04\x82\x23\x81\x76\xf6\x67\x06\x38\xa2\x65\x60\x37\xf4\xf7\x74\x20\x9f\xb6\x9e\x2c\x1b\xdf\x67\x99\xd9\x82\x5c\x00\x34\x55\x18\x3a\xb2\x83\x5d\x7b\x2e\x8c\xdd\x3a\x5f\x63\xf4\x90\x42\xce\x57\xa1\x5d\x98\x9e\x6b\xca\xb2\x3d\x42\x2d\x11\xa4\xc0\x34\xd0\x1d\x71\xfb\xae\x18\xb4\xa3\xdf\x79\x79\x16\x2a\x5b\xe3\x2b\xc3\xff\xd3\x55\x9a\xfc\xa7\x62\x62\xda\x59\xfc\x2f\xcd\xa6\x32\x2a\xce\x78\xd8\xe6\x8e\x78\xbd\x9c\xbb\x29\x3d\x4c\x96\xb2\xd8\x11\x3f\x4f\x98\x17\xf3\x31\x74\xaf\x23\x89\x7f\xc9\xe7\x2b\x29\xe7\x75\x47\xf3\x16\xb5\x6b\x0f\x76\x3b\x32\x95\x95\x94\x30\x0c\x23\xcf\xe4\xcb\x36\x7e\xd4\x83\xbf\xd0\xe2\x8e\x7c\x1a\xc6\x47\x19\xb5\xbd\x2e\x26\x1b\x95\x51\xe4\x8f\xbe\x9c\x60\x1d\xaf\x68\x14\xac\xe1\x39\x43\xbf\x6b\x6a\xb2\x9c\x9d\xa9\x0f\x91\xe5\x46\x25\xc8\x75\x42\x7c\xc8\xf6\xe4\x9f\x01\x6d\xfe\xfd\xe9\x6a\x8a\x4f\x56\x79\xc2\x40\x63\xd9\xdb\xbc\xa5\xa5\x8d\x21\x3e\x84\x18\x34\x6d\x61\x5a\xbc\xa4\x1d\xcf\x82\x54\x68\xaa\x18\x57\xbd\x94\x27\x58\x90\x25\xf5\xe8\x2c\x1b\xdb\x9c\x0f\x87\xa5\x57\x06\xc3\xe4\xd3\x8a\xb5\xeb\x5e\x39\xb7\xbf\x86\xd2\x9d\x00\xce\xb4\x38\x34\x4a\x11\x69\x11\x59\xab\x41\x3b\x4a\x4a\x20\x62\x72\x0d\x8a\x9d\x08\x54\x8d\xfe\x25\x09\xf8\x06\x3f\x36\x57\x6d\xf2\x93\x06\xa7\xd1\xdb\x53\x9f\x93\xa7\xd1\x81\x6b\xb5\x8f\x5e\x49\x35\xb1\xfc\x1a\x5f\x28\xc8\x59\x2a\xc9\x13\x14\xe7\x22\x3c\xa1\x2a\xa3\x6d\x97\x02\xe0\xc6\x1d\x68\x3e\x44\x34\x0c\x35\xa1\x0d\x51\xbc\xb9\x34\x76\x07\x47\xa1\xde\xd1\x3b\xf9\xd7\x70\x99\xb1\x41\xbe\x95\x9b\x96\x75\x71\x88\x27\xad\x34\x7c\x51\xe4\x0d\x41\xc0\xc3\xa0\xa3\x99\xa8\x8e\x28\x7a\x9d\xc0\xb3\x89\xde\xf4\x75\x4f\xa2\x4d\x29\x70\x16\xf3\x0e\xd8\xfd\xaf\x18\xf7\x54\x76\xc2\xe4\x11\xf7\x67\xcd\xed\xdd\xde\x2e\x11\x13\x42\x43\xf7\xb7\x13\xa9\xfc\xe0\xcf\x80\x09\xec\xbd\xdc\xe5\x50\x16\xd3\xf9\xdc\x01\xf2\x0a\x96\xd1\x48\x5d\x01\x3f\xcd\x4e\xb3\xff\x02\x00\x00\xff\xff\x96\x5e\x9c\xb2\x3e\x0b\x00\x00" func lockedtokensAdminUnlock_tokens_for_multiple_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -4020,11 +4040,11 @@ func lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xa2, 0x43, 0xbc, 0x49, 0x46, 0x92, 0xec, 0x61, 0x1a, 0x24, 0xbd, 0x80, 0x79, 0x40, 0x9e, 0x6d, 0x9f, 0x5e, 0x56, 0xff, 0x85, 0xca, 0x7b, 0x49, 0x86, 0xc4, 0x1b, 0x47, 0x3c, 0xa8, 0xd2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x2d, 0x48, 0xce, 0xc5, 0xd4, 0xe6, 0xfb, 0x53, 0xc1, 0x93, 0x3b, 0xed, 0x3b, 0x3c, 0xa3, 0x70, 0x2d, 0xac, 0x89, 0xe5, 0x3d, 0x8a, 0xd2, 0xa8, 0xe6, 0x77, 0xa5, 0xd9, 0xfb, 0xfc, 0xef}} return a, nil } -var _lockedtokensDelegatorDelegate_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\x4d\x6f\xda\x40\x10\xbd\xfb\x57\x4c\x39\x54\xe6\x10\xa7\x87\xaa\x07\x04\x8d\x48\x80\xb6\x0a\x82\x28\x24\xed\x79\xb1\xc7\x1f\x62\xf1\x58\xbb\xe3\x42\x85\xf8\xef\xd5\x7a\xd7\xc4\xeb\x24\x52\xa5\xfa\xb2\x82\x79\xf3\xde\x9b\x99\x57\xec\x2b\x52\x0c\x0b\x49\x87\x27\xda\x61\x09\xa9\xa2\x3d\x7c\x3a\x2e\x96\xeb\x5f\x4f\xeb\xfb\xf9\x6a\x3a\x9b\x3d\xce\x37\x9b\xa0\x05\xd6\x65\x56\x6c\x25\xfa\xe0\xe7\xd5\xb7\x1f\xb7\xcb\xf9\x5b\x0d\x4b\x8a\x77\x98\x34\x70\xdd\xe2\x97\xeb\xbb\xfb\xf9\xcc\x43\x07\xac\x44\xa9\x45\xcc\x05\x95\xa1\xd8\x53\x5d\xf2\x08\x9e\x17\xc5\xf1\xcb\xe7\x21\x9c\x82\x00\x00\x40\x22\x43\x4e\x32\x41\xf5\x88\xe9\x08\x3e\x76\xa9\xa3\xe6\xf9\xde\x54\x5f\xd0\xbf\x45\x2d\xd9\x82\x2f\x13\x46\x3f\xcd\x9f\x16\x53\x29\xac\x84\xc2\x50\xc4\xb1\x55\x9c\xd6\x9c\x4f\xed\x0f\x23\x0b\xee\xd3\x28\xd3\xe8\x22\x0d\x13\x70\x0d\xd1\x96\x94\xa2\xc3\xf8\x5d\x2b\x5f\x43\x33\xf2\x08\xde\xab\x6f\x98\x94\xc8\xf0\x41\x70\x3e\xbc\xa8\x99\xef\xe6\x06\x2a\x51\x16\x71\x38\xb8\xa3\x5a\x26\x50\x12\x83\x15\x03\x85\x29\x2a\x2c\x63\x04\x26\xe8\x70\x0d\x86\x81\x6f\xb8\x9d\xfe\x0d\xbf\xbd\x6d\xb4\x36\xaf\xb5\xf5\x73\x9d\xb6\xf5\xa6\xfc\xcf\xd6\x4c\x1b\x70\x13\x8d\x46\xfc\xc5\xeb\xc0\x72\x9c\xad\x45\x3c\x62\x5c\x33\x76\x36\x6c\xae\xa5\x59\xec\x50\x3d\x28\x3a\xfe\x81\x49\x6f\xe7\xce\xf9\x0c\x25\x66\x82\x49\x85\x9d\x61\x4d\xaf\x6c\x16\x7c\x2b\xa4\x30\x8b\x79\xd5\x9d\x21\xdb\x13\xb8\xe3\x3a\x60\x97\xa5\x48\xc1\xe6\x0e\xc6\x93\x1e\xdd\x29\xf0\x16\xd0\xf1\x19\x25\xd6\x10\xae\xd0\xee\x4b\x5f\xc2\x6b\xdf\x8e\xc0\x19\x50\x6a\x34\x3a\xa1\x03\xc1\x95\x2f\x34\x34\xd2\xde\xe9\xa2\x6d\x5b\xe9\x7b\xf0\xe7\x4b\xb0\x22\x5d\xb0\x3b\xe3\xf8\xca\x27\x39\x14\x9c\x27\x4a\x1c\x7a\xde\x5e\xc9\x0f\xff\x67\xce\xde\x98\x27\x8f\xca\x05\x66\x45\x0c\x58\x52\x9d\xe5\x36\x25\xda\x44\xb8\x91\xf9\x30\xe8\x30\xb8\xa8\x9c\x83\xbf\x01\x00\x00\xff\xff\x25\x14\xe5\x23\x9e\x04\x00\x00" +var _lockedtokensDelegatorDelegate_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x6b\xdb\x40\x10\xbd\xeb\x57\x4c\x75\x08\x12\x34\xca\xa5\xf4\x60\xec\x86\xa6\x25\xf4\x50\xd2\xd0\x8f\xf4\xbc\x96\x46\x96\xf0\x5a\x23\x76\x47\xb5\x8b\xf1\x7f\x2f\xfb\x21\x79\x57\x26\x34\x50\xaa\xcb\xa2\x9d\x99\x37\xef\xcd\x9b\x6d\x77\x3d\x29\x86\x7b\x49\xfb\xef\xb4\xc5\x0e\x6a\x45\x3b\x48\xa7\xff\x34\x19\x33\x86\x6e\xd3\xae\x25\x46\x59\xe1\xdd\x94\xf9\x99\xca\x2d\x56\xf6\x4e\xfb\xc4\xf0\x2a\x4d\x12\x56\xa2\xd3\xa2\xe4\x96\xba\x4c\xec\x68\xe8\x78\x01\x3f\xee\xdb\xc3\xdb\x37\x39\x1c\x93\x04\x00\x40\x22\x43\x43\xb2\x42\xf5\x15\xeb\x05\x88\x81\x9b\x2c\x44\x29\xec\xf1\xa5\x47\x25\x0c\x8c\x7e\x1d\x13\x2c\x7e\xb6\xdc\x54\x4a\xec\x73\xb8\xba\x2c\xfb\x64\x81\xcf\x8d\x7e\x89\x41\xf2\xb9\xcf\xb3\x48\xd3\x54\x8a\x27\x53\xe1\x00\x7a\x85\xbd\x50\x98\x89\xb2\x74\x4a\x2c\xc6\x1d\x29\x45\xfb\x27\x21\x07\xcc\xe1\xea\xbd\x8b\x19\x75\xe0\x3f\x8d\xb2\x2e\x26\x85\xb0\x02\x5f\x5f\x68\x26\x25\x36\x58\xac\x2d\xc2\xf2\x7f\x28\x7f\x97\x19\x5b\x16\xf0\x5c\xfc\x9b\xa3\xf0\x28\xb8\xc9\x27\xc2\xe6\xbb\xbd\x85\x5e\x74\x6d\x99\xa5\x1f\x68\x90\x15\x74\xc4\xe0\x78\x82\xc2\x1a\x15\x76\x25\x02\x13\x04\x58\x69\x9e\xc4\x9a\xc7\x61\xff\x45\xf2\x4b\x4d\x18\xb5\xdc\x78\x90\x9b\x7a\x8c\xdb\xf0\x8b\xf9\x9b\x32\x60\xbb\xdc\x96\xe1\x59\x50\xea\x30\x4e\x4e\x07\x1e\xb0\x1c\x18\x03\x27\xcd\x06\x69\x16\x5b\x54\x8f\x8a\x0e\xbf\x61\x35\xf3\xd6\xcb\xfa\x88\x12\x37\x82\x49\x65\xc1\x44\x4c\xad\xb4\x2e\xdc\x09\x29\xcc\xf4\x2e\xaa\x37\xc8\xce\x27\xbf\x44\x3e\x31\x44\x69\x6b\x70\xcf\x08\x96\xab\x19\xdc\x31\x89\x06\x10\xf0\x2c\x2a\x47\x08\x1f\xd0\xcd\x4b\x4f\x6f\xd1\x9d\x41\x83\x13\xa0\xd4\x68\xfa\x64\x3e\x09\xae\xe3\x46\xb9\x69\x1d\xf9\x5b\xac\xc7\xc8\x9c\x43\xac\xaf\xc2\x9e\x74\xcb\xde\xc6\xe5\x75\x0c\xb2\xf7\xc6\xcf\xb8\x5d\xb4\xcf\xff\x45\xe7\x4c\xe6\x31\x82\xf2\x0b\xf3\x40\x0c\xd8\xd1\xb0\x69\xdc\x96\x68\xb3\xe7\xb6\xcd\xab\x34\x40\xf0\xab\x72\x4a\xfe\x04\x00\x00\xff\xff\x27\x2b\xab\x74\x59\x05\x00\x00" func lockedtokensDelegatorDelegate_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4040,11 +4060,11 @@ func lockedtokensDelegatorDelegate_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0xc7, 0x4, 0xa0, 0xdf, 0xa1, 0xa9, 0xb0, 0xb0, 0x70, 0x98, 0x6, 0x1e, 0xd0, 0x93, 0xe4, 0x97, 0x13, 0x73, 0x7d, 0x6b, 0xde, 0x32, 0x8a, 0x55, 0x33, 0x8f, 0x4, 0xca, 0xfb, 0xd8, 0x5a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3e, 0xfd, 0xc4, 0x42, 0x2b, 0x91, 0x5b, 0x9a, 0x45, 0x5d, 0x9a, 0x60, 0xe7, 0xda, 0xab, 0x8, 0x8a, 0x76, 0xda, 0xf2, 0xe4, 0xb7, 0x0, 0x52, 0xc0, 0xe5, 0x43, 0xbf, 0xb5, 0xb5, 0x26, 0xd5}} return a, nil } -var _lockedtokensDelegatorDelegate_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x2f\xa1\x87\xd2\x83\xd4\x8a\x34\x96\x82\xa2\xa2\xf6\x07\x4c\x77\x27\x66\x31\xee\x84\xc9\x58\x53\x8a\xff\xbd\xe8\x9a\x54\x2b\xcd\x65\x32\xec\xe3\x7d\xfb\xde\xba\x6d\xc9\xa2\x30\x61\xb3\x21\xbb\xe2\x0d\xf9\x0a\x32\xe1\x2d\xdc\xd7\x93\xd9\xcb\x78\x94\xae\x66\xe3\xd1\x74\x98\xa6\x8b\xd1\x72\x19\x45\x2a\xe8\x2b\x34\xea\xd8\xc7\xb8\xe5\x9d\xd7\x1e\xbc\xbf\xba\xfa\xf1\xa1\x0b\xdf\x11\x00\x40\x41\x0a\x9e\x2d\xa5\x54\xd0\x1a\x95\x65\x2e\x5c\x7f\xf5\xae\x08\x49\x58\xa6\x37\xb2\xe8\x64\x51\x0a\x95\x28\x14\xa3\x31\x81\x30\xdc\x69\x3e\x0c\x4b\x83\x69\x50\x39\x17\x96\x64\x41\x19\xf4\xe1\xac\x4f\x3e\x58\x84\xf7\x4f\x77\x57\xc8\xd3\x78\x3b\xa9\x9f\xe3\x63\xc2\x3f\x57\xba\x38\x5f\x2a\x0b\xae\x69\x8e\x9a\x77\xa1\xa5\x1d\xbf\xc1\x00\x4a\xf4\xce\xc4\x9d\x0b\x39\xb8\x0a\x3c\x2b\x54\xf8\x49\x16\x50\xa1\x2a\xc9\xb8\xcc\x91\x85\x12\x35\xef\x74\x5b\x8b\xf6\xa7\xa2\x22\x4b\x6e\x5b\x82\xfe\x6f\x9e\x73\x8a\x56\x10\x07\x9b\x43\xa8\x88\x6a\x32\x3b\xa5\x8b\x32\xfe\xb1\x4c\x6c\x58\x69\x41\x7b\x14\xdb\xc4\x6d\x1f\x2f\xcc\xc6\xfb\x10\xfd\x04\x00\x00\xff\xff\xf2\xb4\xba\xeb\x10\x02\x00\x00" +var _lockedtokensDelegatorDelegate_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xcb\x6a\xeb\x30\x10\xdd\xfb\x2b\x06\x2f\x82\x0d\x17\xaf\x2e\x5d\x84\xa6\xa1\xa5\x84\x2e\x4a\x1b\xd2\xd7\x7a\x62\x8d\x63\x11\x47\x12\xa3\x71\x93\x52\xf2\xef\x25\x96\xed\xd8\x0d\xf5\x46\xd6\xe8\xe8\xbc\x90\xde\x39\xcb\x02\x8f\x36\xdf\x92\x7a\xb5\x5b\x32\x1e\x0a\xb6\x3b\x88\x87\xa3\x38\x6a\x71\x8b\xda\x6c\xf4\xba\xa2\x66\xdc\x02\x47\xb3\x38\x8a\x84\xd1\x78\xcc\x45\x5b\x93\xe0\xce\xd6\x46\xa6\xf0\xb6\xd0\x87\xab\xff\x29\x7c\x47\x00\x00\x15\x09\x18\xab\xe8\x9e\x2a\xda\xa0\x58\x5e\xb2\x3d\x7c\x4d\x47\x2e\xb2\xb0\x79\xba\x80\x45\x0d\x85\x63\x72\xc8\x94\x60\x9e\x07\x05\xac\xa5\x4c\xee\x2c\xb3\xdd\xbf\x63\x55\x53\x0a\x93\xdb\x70\xd6\xa9\x76\xca\xa5\xad\x14\xf1\x8a\x0a\x98\x41\x7b\x3d\xf3\x62\x19\x37\x94\xad\x1b\x82\xeb\x86\x6c\xe4\xa6\x59\x9e\x1d\x31\x9e\x72\xf9\x7f\xe3\x26\xb2\x0f\x2d\xa5\x62\xdc\xa7\x30\xb9\xbc\xf6\xd0\x08\xde\x24\xa7\xba\x7e\x85\x1c\x9c\xbf\x04\x0b\x4b\x94\x32\xed\xfd\x9e\xbe\xf9\x1c\x1c\x1a\x9d\x27\xf1\x00\x0d\xda\x83\xb1\x02\x1e\x3f\x49\x01\x0a\x78\x47\xb9\x2e\x34\x29\x70\x28\x65\x7c\xa6\xe8\x7f\x3c\x55\x45\x76\x59\x3b\xcc\xce\x8d\xb4\xf9\x7b\x40\x12\x68\x8e\xa1\x73\x3a\x50\x5e\x0b\x0d\xea\xfc\x83\x32\x53\x61\x4b\x2b\xda\x23\xab\x2e\x6d\xff\x1a\xc2\xda\x71\x1f\xa3\x9f\x00\x00\x00\xff\xff\xea\xe0\x30\x4d\x85\x02\x00\x00" func lockedtokensDelegatorDelegate_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4060,11 +4080,11 @@ func lockedtokensDelegatorDelegate_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xb5, 0x9a, 0xc5, 0xf6, 0xa3, 0xb3, 0x51, 0x42, 0xb8, 0x88, 0xa8, 0x28, 0x71, 0x66, 0x3d, 0x34, 0x4, 0x99, 0xf3, 0x94, 0x13, 0xef, 0x85, 0x3f, 0x7f, 0xa0, 0xa3, 0x40, 0x76, 0x94, 0xb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd4, 0x98, 0x5, 0x2f, 0xf1, 0x93, 0xc8, 0x5b, 0xf1, 0x7e, 0x2d, 0x4e, 0xc0, 0x43, 0xef, 0xdb, 0xcc, 0x0, 0xc1, 0xf8, 0xcc, 0xd9, 0x4, 0x9a, 0xc0, 0x5c, 0x31, 0xaf, 0xb7, 0x3b, 0x43, 0x40}} return a, nil } -var _lockedtokensDelegatorDelegate_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6a\xc2\x40\x10\xc6\xef\x79\x8a\xc1\x43\x49\x2e\xa1\x87\xd2\x83\xd4\x8a\x34\x96\x82\xa2\xe2\x9f\x07\x98\x6e\x26\x66\x31\xee\x2c\xbb\x63\x9b\x52\x7c\xf7\x62\x56\xd3\x58\xe9\x5e\x86\x61\xbf\xfd\x7e\xf3\xcd\xea\xbd\x65\x27\x30\x65\xb5\xa3\x7c\xcd\x3b\x32\x1e\x0a\xc7\x7b\xb8\xaf\xa7\xf3\x97\xc9\x38\x5b\xcf\x27\xe3\xd9\x28\xcb\x96\xe3\xd5\x2a\x8a\xc4\xa1\xf1\xa8\x44\xb3\x89\x71\xcf\x07\x23\x7d\xd8\xbc\xea\xfa\xf1\x21\x81\xef\x08\x00\xa0\x22\x01\xc3\x39\x65\x54\xd1\x16\x85\xdd\xc2\x71\xfd\xd5\xbf\x22\xa4\xa1\x99\xdd\xc8\xa2\xc6\xc2\x3a\xb2\xe8\x28\x46\xa5\x02\x61\x74\x90\x72\x14\x9a\x0b\xe6\x82\x2a\xb9\xca\xc9\x2d\xa9\x80\x01\x9c\xf5\xe9\x3b\x3b\xc7\x9f\x4f\x77\x57\xc8\xa6\xbc\x35\xea\xe7\xf8\x94\xf0\xcf\x48\x9d\xfb\x95\xb0\xc3\x2d\x2d\x50\xca\x04\x5a\xda\xe9\x0c\x87\x60\xd1\x68\x15\xf7\x3a\x72\xd0\x1e\x0c\x0b\x78\xfc\xa0\x1c\x50\xc0\x5b\x52\xba\xd0\x94\x83\x45\x29\x7b\x49\xd4\x7a\x78\xaa\x8a\xf4\x76\x3b\x30\xf8\xcd\x71\x9e\xbe\x15\xc4\x49\xf3\xfa\x18\x4c\xa8\x26\x75\x10\xea\x2c\xe1\x1f\xcb\x34\x0f\x2d\x6d\x8c\x17\x6c\x63\xb6\x9f\x16\xea\xc5\xfb\x18\xfd\x04\x00\x00\xff\xff\xfe\xc1\x9a\x73\x08\x02\x00\x00" +var _lockedtokensDelegatorDelegate_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4f\x4b\xeb\x40\x10\xbf\xe7\x53\x0c\x39\x94\x04\x1e\x39\x3d\xde\xa1\xbc\x5a\x14\x29\x1e\x44\x8b\x5a\x3d\x4f\x77\x27\xcd\xd2\x74\x67\xd9\x9d\xd8\x8a\xf4\xbb\x4b\xb3\x69\x4c\x2c\xe6\xb2\xec\xec\x6f\x7e\xff\x88\xd9\x39\xf6\x02\xf7\xac\xb6\xa4\x5f\x78\x4b\x36\x40\xe9\x79\x07\xe9\x70\x94\x26\x1d\x6e\xd1\xd8\x8d\x59\xd7\xd4\x8e\x3b\xe0\x68\x96\x26\x89\x78\xb4\x01\x95\x18\xb6\x19\xee\xb8\xb1\x32\x85\xd5\xc2\x1c\xfe\xfd\xcd\xe1\x33\x01\x00\xa8\x49\xc0\xb2\xa6\x5b\xaa\x69\x83\xc2\x7e\xe9\xf9\xf0\x31\x1d\xb9\x28\xe2\xe5\xe1\x02\x96\xb4\x14\xce\x93\x43\x4f\x19\x2a\x15\x15\xb0\x91\x2a\xbb\x61\xef\x79\xff\x8a\x75\x43\x39\x4c\xae\xe3\xdb\x59\xf5\xac\x5c\x71\xad\xc9\x3f\x51\x09\x33\xe8\xd6\x8b\x20\xec\x71\x43\xc5\xba\x25\xf8\xdf\x92\x8d\xdc\xb4\xc7\xa3\x23\x8f\xa7\x5c\xe1\xcf\xb8\x89\xe2\xcd\x48\xa5\x3d\xee\x73\x98\x5c\xae\xdd\xb5\x82\x57\xd9\xa9\xae\x1f\x21\x07\xef\xcf\xd1\xc2\x12\xa5\xca\x7b\xbf\xa7\x6f\x3e\x07\x87\xd6\xa8\x2c\x1d\xa0\xc1\x04\xb0\x2c\x10\xf0\x9d\x34\xa0\x40\x70\xa4\x4c\x69\x48\x83\x43\xa9\xd2\x3c\xe9\x39\x02\xd5\x65\x71\x59\x37\xcc\xbe\x9b\xe8\x72\xf7\x80\x2c\x3a\x38\x46\x12\x3a\x90\x6a\x84\x06\x35\xfe\x42\x59\xe8\x78\xa5\x95\x0d\x82\x7d\xca\xfe\x2f\x88\xe7\x99\xfb\x98\x7c\x05\x00\x00\xff\xff\xbf\x32\xa6\x32\x7d\x02\x00\x00" func lockedtokensDelegatorDelegate_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4080,11 +4100,11 @@ func lockedtokensDelegatorDelegate_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x89, 0xfe, 0xf6, 0x67, 0xf, 0x7b, 0x3, 0xf4, 0x14, 0x99, 0xaa, 0x92, 0xe3, 0xd4, 0x35, 0x90, 0x51, 0x4f, 0x83, 0x36, 0xd6, 0xf9, 0xed, 0x2a, 0x9f, 0x37, 0x1, 0x43, 0x9f, 0xd5, 0x50, 0x8f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0x83, 0x51, 0xb4, 0x43, 0xb4, 0x5a, 0x2, 0xbf, 0x7, 0xab, 0xdf, 0x75, 0x84, 0x56, 0xd, 0x4a, 0xbe, 0x18, 0xa4, 0x1, 0x5e, 0xcc, 0xc5, 0xf0, 0x4, 0xe, 0x42, 0xc8, 0x24, 0xa0, 0x99}} return a, nil } -var _lockedtokensDelegatorGet_delegator_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x4f\x4f\xc2\x40\x10\xc5\xef\xfb\x29\x9e\x1c\x4c\x7b\x21\x46\x6f\x44\x25\x84\x92\x48\x20\x42\x00\x3f\xc0\x76\x3b\xc5\x0d\xcb\x4e\xb3\x9d\x8d\x1a\xc2\x77\x37\x6d\x15\xf1\x4f\x9c\xcb\x26\xb3\x6f\x7e\xef\xe5\xd9\x7d\xc5\x41\x30\x67\xb3\xa3\x62\xc3\x3b\xf2\x35\xca\xc0\x7b\x5c\xbd\xce\x17\xe3\xd9\x24\xdb\x2c\x66\x93\xc7\x51\x96\xad\x26\xeb\xb5\x52\x55\xcc\x51\x46\x8f\xbd\xb6\x3e\xd1\xc6\x70\xf4\x32\xc0\xa8\x28\x02\xd5\x75\x3a\xc0\xd3\xd4\xcb\xcd\x35\x0e\x4a\x01\x80\x23\x81\x6b\xc9\xa3\x4e\x3a\xf5\x25\xaf\xa8\xc4\x1d\xb6\x24\x1f\xbb\x4f\x4c\xda\x9e\x34\xd3\xdf\x92\x8c\x75\xa5\x73\xeb\xac\xbc\xdd\x5e\x9e\x87\xeb\xb7\xcf\x03\xbb\x82\xc2\xe1\xdb\xc7\xfc\xa7\xd1\xf1\x3e\x39\x21\x9b\xf9\x5f\xbd\x8c\xb9\xb3\x66\xa9\xe5\xf9\x74\x74\x96\x28\xe7\x10\xf8\x25\xf9\xda\x0c\x87\xa8\xb4\xb7\x26\xe9\x8d\x39\xba\x02\x9e\x05\x9d\x08\x1a\x81\x4a\x0a\xe4\x0d\x41\x18\x55\x0b\xc6\x2f\xc3\x5e\xda\x95\x14\x48\x62\xf0\x7f\xf6\xd4\x14\x91\x91\xa3\xad\x16\x0e\xd3\x2c\x49\x2f\xd4\x51\xbd\x07\x00\x00\xff\xff\xe7\xd6\x88\xde\xb2\x01\x00\x00" +var _lockedtokensDelegatorGet_delegator_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcd\x4e\xc3\x30\x10\x84\xef\x7e\x8a\x21\x07\x94\x5c\x72\x80\x5b\x05\x54\x15\x3d\x10\xa9\x87\x0a\xc1\x03\x38\xce\x26\x58\x75\xbc\xd1\x7a\x2d\x0e\x88\x77\x47\x4d\xa0\x94\x9f\xbd\x58\x1a\xcd\x7c\xe3\xf1\xe3\xc4\xa2\xd8\xb1\x3b\x50\xf7\xc4\x07\x8a\x09\xbd\xf0\x88\xe2\x5c\x2a\x8c\xb1\xce\x51\x4a\xa5\x0d\xa1\x42\x9f\x23\x46\xeb\x63\x69\x9d\xe3\x1c\x75\x85\x4d\xd7\x09\xa5\x54\xad\xf0\xdc\x44\xbd\xbe\xc2\x9b\x31\x00\x10\x48\x11\x66\xd0\x66\xb1\x36\xb1\xe7\x47\xea\x71\x8b\x81\xf4\x53\xfb\xc2\x54\x73\xe4\x78\xb5\xb3\x93\x6d\x7d\xf0\xea\x29\xd5\x2d\x8b\xf0\xeb\xcd\xe5\xf9\x8f\xea\xf9\x79\xe0\xd0\x91\xdc\x95\xa7\xe0\xf1\x7e\xd8\x76\xbf\xcb\xf7\xb9\x0d\xde\xed\xad\xbe\x9c\x42\xdf\xbd\xeb\x35\x26\x1b\xbd\x2b\x8b\x7b\xce\xa1\x43\x64\xc5\xd2\x0e\x0b\xa1\x9e\x84\xa2\x23\x28\x63\x9a\x31\xf8\x83\x2f\xaa\x65\xb8\x90\x66\x89\xff\x6e\xaf\x07\xd2\x2d\x05\x1a\xac\xb2\x34\xdb\xb2\xba\x30\xef\xe6\x23\x00\x00\xff\xff\x3e\xb8\x32\x69\x88\x01\x00\x00" func lockedtokensDelegatorGet_delegator_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4100,11 +4120,11 @@ func lockedtokensDelegatorGet_delegator_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0x54, 0x61, 0x8e, 0x91, 0xdf, 0x10, 0x8d, 0xe7, 0x4, 0xc6, 0x8d, 0xb5, 0x85, 0x3d, 0x1c, 0x19, 0x8f, 0x22, 0xbb, 0xa7, 0xdb, 0xf0, 0x3d, 0x23, 0x29, 0xe6, 0x34, 0x4, 0x4d, 0x68, 0xdb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x12, 0xcf, 0xbd, 0xf4, 0xb4, 0xe2, 0x96, 0x6a, 0xb, 0x7b, 0x4f, 0xdf, 0xfe, 0x86, 0x5a, 0xbc, 0xa7, 0xae, 0x48, 0x8a, 0x9f, 0x27, 0xf1, 0x4c, 0xdb, 0x2a, 0x8c, 0xf4, 0x72, 0xc0, 0x88}} return a, nil } -var _lockedtokensDelegatorGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4d\x8f\x9b\x30\x10\xbd\xf3\x2b\x66\x2f\x51\x90\x56\xa4\xe7\xa8\x54\xa2\x81\xaa\x68\xa3\xec\x2a\xe1\x52\xad\xf6\x60\xb0\x21\x6e\x1c\x0f\x32\x46\xe9\x0a\xe5\xbf\x57\x7c\x06\x27\xa4\x8a\xca\x05\x65\xfc\xde\xf8\xcd\xbc\x17\xf8\x31\x47\xa5\xe1\x87\xc0\x53\xe8\x47\x24\x16\x6c\xa7\xc9\x81\xcb\x0c\x52\x85\x47\xf8\xf2\x27\xf4\x83\x4d\x14\x46\xbf\x22\xef\xfb\x3a\xf0\x7c\x7f\x1b\xec\x76\x56\xc7\x5a\x63\x72\x60\x34\xc2\x03\x93\x45\x8f\x5f\xbf\xae\x5e\x02\x3f\x7a\x7d\x09\x36\x3d\xda\x5a\x2c\x60\xcb\x74\xa9\x64\x01\x44\x02\x51\x8a\x7c\x02\xa6\xe0\x33\xc1\x32\xa2\x51\x85\x32\x45\xc0\xf8\x37\x4b\x74\x01\x7a\x4f\x34\xe8\x3d\x03\x92\x24\x58\x4a\x0d\x09\x4a\xad\x50\x14\x75\x1b\x2e\x81\xeb\x02\x24\xaa\x23\x11\x03\x82\x48\x0a\xc5\x9e\x28\x46\xfb\x92\x65\xe5\x65\x0c\x69\x29\xe1\x48\xb8\x9c\x77\xd5\x25\x78\x94\x2a\x56\x14\xf6\x12\xde\x6f\x47\x76\x0c\x41\x1f\x50\x59\x16\x00\x80\x60\x1a\xe8\xf8\xc4\xab\x07\x78\xa8\x83\x0b\xef\x1f\x97\x26\x79\x19\x7b\x9d\x62\x17\x32\xa6\xbb\x1f\xbd\x3a\x7b\xe2\xba\x15\xc9\xc1\x1d\x11\x1b\x44\xfd\x38\x19\xd3\x2b\x92\x93\x98\x0b\xae\x3f\xbf\xce\xaa\x09\x31\x1b\xa4\x6c\x10\xf4\x56\xc6\x82\x27\xe7\x6f\xf3\xa1\x45\xfd\x2c\xf2\xa6\xbc\x48\x05\x9e\x3a\xda\xc0\x18\x80\x9d\x30\x9e\x9a\xda\xb6\x2c\x05\xd7\x90\xea\xc4\xa8\x14\x9e\xe6\x36\x54\x03\xb9\xa6\xf0\xda\x5f\x77\x22\x64\xe6\xbe\x4c\x69\x12\x29\x0b\xfd\xa5\x71\x9f\xd3\x16\x9f\x0d\xe0\xc5\x9b\x6b\x34\xa7\xa3\x19\x6e\xe1\xbd\x95\x0e\xc9\x73\x26\xe9\xbc\x96\xd9\xe2\xce\x17\x2b\x44\x93\xf1\x6e\xfd\x35\xe5\x61\x4b\xc6\xff\x0e\xa7\x79\xfd\x44\x41\x99\xaa\x8c\x83\xf5\x75\xff\x6b\x8b\xfe\x8d\x6e\x6d\x7d\x23\x7a\x7f\xc7\xae\x1b\xfd\xad\x6d\x53\x63\xdd\xb3\xaf\x5d\xfa\x14\xa9\x5e\x72\xc6\xf4\xe0\xe2\xa6\x41\xce\x6d\x83\x3e\xf2\xe7\x91\x1e\x0d\x7f\x68\xc0\xd3\xfe\xfa\x27\x17\x24\x17\x30\x9b\x19\x0d\xbb\x6a\x65\xac\xec\xbf\x33\x37\xce\x5d\xfb\x7e\x7a\xbe\x01\x4c\xe7\x2d\xf4\x9f\x0c\xa4\x7d\x27\xa3\xf7\x43\xd7\x06\x6f\x14\x3f\xd5\x7c\x33\x27\xb8\xd6\xd9\xfa\x1b\x00\x00\xff\xff\xea\xbb\x2d\x02\xb8\x05\x00\x00" +var _lockedtokensDelegatorGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4d\x8b\xdb\x30\x14\xbc\xfb\x57\xbc\xe4\x10\x6c\x58\x9c\x7b\xa8\x0b\x81\x50\x1a\x28\xcb\xb2\xdd\xdb\xb2\x87\x67\xeb\x39\x51\xa3\xe8\x19\x49\x26\x94\x90\xff\x5e\xfc\x11\xc5\x5a\x3b\x25\xad\x2f\x26\x4f\x33\xa3\x91\x66\x62\x79\xac\xd8\x38\xf8\xa6\xf8\xb4\xdd\xbc\x61\xae\xe8\xa7\xc3\x83\xd4\x3b\x28\x0d\x1f\x61\x3e\x5e\x98\x47\x3d\xe7\x07\x17\x07\x12\x6f\x7c\x20\x6d\x7b\xf4\x70\x34\x8f\xa2\xe5\x12\x5e\xc9\xd5\x46\x5b\x40\x0d\x68\x0c\xfe\x06\x2e\x61\x43\x8a\x76\xe8\xd8\x6c\x75\xc9\xc0\xf9\x2f\x2a\x9c\x05\xb7\x47\x07\x6e\x4f\x80\x45\xc1\xb5\x76\x50\xb0\x76\x86\x95\x6d\x64\xa4\x06\xe9\x2c\x68\x36\x47\x54\x1e\x81\x5a\x80\xdd\xa3\x21\x71\x1d\x45\x11\x16\x05\x59\x1b\xa3\x52\x09\x94\xb5\x86\x23\x4a\x1d\xf7\xab\x2b\x58\x0b\x61\xc8\xda\x64\x05\xef\xe3\x93\xa5\x81\xb1\x0f\x38\x47\x11\x00\x80\x22\x07\x62\xb8\xb2\x6e\x0e\xf2\x90\x42\x06\xef\x1f\x37\x91\xaa\xce\xd7\xbd\xf3\x0c\x76\xe4\xfa\x1f\x57\x77\xc9\x0d\xc9\x95\x93\xac\x51\x79\xb9\x57\x2a\x21\x1b\x08\xb4\xc8\xe6\x49\x0b\xac\x30\x97\x4a\x3a\x49\x36\xcd\xd9\x18\x3e\x7d\x59\x9c\x27\xac\x3d\xb3\x20\xaf\xf7\x52\xe7\x4a\x16\x97\xaf\xb1\x17\x6a\x9e\x65\xd5\x8e\x97\xa5\xe2\x53\x4f\xf3\x0c\x0f\xec\x6d\xca\x32\xbc\x98\xce\xe1\xa4\xf1\xb3\xe7\x36\x0c\xd9\x84\x9e\x4d\x34\x2e\xbc\xbc\xd0\x99\x66\x41\xdb\xcd\x2a\xd8\x2e\xed\x86\x4f\x01\xf0\x16\xd4\x67\xb4\x14\x83\x23\x8c\xe1\xd7\x5c\x53\xac\x2a\xd2\x22\x6e\x6c\x76\xb8\xcb\x38\x97\xae\xe7\x7d\x16\x0d\xf5\x1f\xf3\x19\xfe\x4f\xd2\xf6\xf5\x9d\x95\x20\xf3\x29\x8f\x00\x36\xda\xb3\xcb\xf0\x05\xdd\xfe\x4e\x36\x6a\xda\xe5\x5f\x0f\x11\x66\xd5\xdd\x30\x64\x93\x52\xe9\x8e\x9c\x8f\xec\xb9\x45\xc6\x49\x40\x1f\x84\xf1\x88\x46\xcb\xf7\x02\xb2\xbc\x6e\x3f\xcb\x40\x4b\x05\x8b\x45\x20\xd8\x4f\xcf\xc1\x8d\xfd\x77\xc1\x86\x25\xeb\xde\xb3\xa7\x11\x60\xba\x5c\xdb\xcd\x2c\x40\x26\x77\x0a\x79\xbf\x61\x5d\xcb\x06\x5d\x33\xed\x57\x73\x82\x1b\x5d\xa2\x3f\x01\x00\x00\xff\xff\xc7\x86\x6b\x79\xb2\x05\x00\x00" func lockedtokensDelegatorGet_delegator_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -4120,11 +4140,11 @@ func lockedtokensDelegatorGet_delegator_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x16, 0x55, 0xa6, 0x48, 0x7d, 0xe9, 0x3d, 0xc, 0xa1, 0x5e, 0xbd, 0x50, 0x98, 0x4f, 0x5f, 0x92, 0x42, 0xcd, 0x4d, 0x9a, 0x25, 0xd1, 0x1, 0xbf, 0xe3, 0xc, 0x5f, 0x64, 0xb1, 0x0, 0x82, 0xb4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa9, 0x5c, 0xc3, 0x5a, 0x3c, 0x1a, 0xd2, 0x9d, 0x8d, 0xd9, 0xb6, 0x51, 0x45, 0x55, 0x69, 0xac, 0x7b, 0x6b, 0x27, 0x53, 0x9f, 0xd8, 0xc7, 0xf1, 0x19, 0xf9, 0xa9, 0x40, 0x26, 0x69, 0xf2, 0x3f}} return a, nil } -var _lockedtokensDelegatorGet_delegator_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x4f\x6b\xc2\x40\x10\xc5\xef\xfb\x29\xa6\x1e\x4a\x72\x91\x9e\xa5\xad\x88\x11\x2a\x8a\x8a\xf1\x0b\x6c\x76\x27\xe9\xe2\x66\x27\x4c\x66\x69\x8b\xf8\xdd\x4b\x92\xd6\xda\x3f\x74\x2e\x0b\xb3\x6f\x7e\xef\xf1\x5c\xdd\x10\x0b\xac\xc9\x1c\xd1\x1e\xe8\x88\xa1\x85\x92\xa9\x86\xbb\xd7\xf5\x76\xbe\x5a\x64\x87\xed\x6a\xb1\x99\x65\xd9\x7e\x91\xe7\x4a\x35\xb1\x80\x32\x06\xa8\xb5\x0b\x89\x36\x86\x62\x90\x09\xcc\xac\x65\x6c\xdb\x74\x02\xb9\xb0\x0b\x15\x9c\x94\x02\x00\xf0\x28\xe0\x7b\xf2\x6c\x90\x2e\x43\x49\x7b\x2c\xe1\x01\x2a\x94\x8f\xdd\x27\x26\xed\x4f\xba\x19\x57\x28\x73\xdd\xe8\xc2\x79\x27\x6f\xf7\xb7\xd7\xe1\xc6\xfd\xf3\x44\xde\x22\x9f\xbe\x7d\xac\x7f\x1a\x9d\x1f\x93\x0b\xb2\x9b\xff\xd5\xbb\x58\x78\x67\x76\x5a\x9e\x2f\x47\x57\x89\x0a\x62\xa6\x97\xe4\x6b\x33\x9d\x42\xa3\x83\x33\xc9\x68\x4e\xd1\x5b\x08\x24\x30\x88\x40\x03\x63\x89\x8c\xc1\x20\x08\x41\xd3\x83\xe1\x97\xe1\x28\x1d\x4a\x62\x94\xc8\xe1\xcf\x9e\xba\x22\x32\xf4\x58\x69\x21\xde\x90\xc5\x65\x96\xa4\x37\xea\xac\xde\x03\x00\x00\xff\xff\xa8\xa0\x14\xf5\xb6\x01\x00\x00" +var _lockedtokensDelegatorGet_delegator_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcf\x4e\xf3\x30\x10\xc4\xef\x7e\x8a\xf9\x72\xf8\x94\x5c\xf2\x00\x15\x50\x55\xf4\x40\xa5\x0a\x55\xc0\x0b\x38\xf6\x26\x58\x75\xbc\xd1\x7a\x2d\x0e\x88\x77\x47\x4d\xa0\x94\x3f\x7b\xb1\x34\x9a\xf9\x8d\x27\x8c\x13\x8b\x62\xcf\xee\x48\xfe\x89\x8f\x94\x32\x7a\xe1\x11\xd5\xa5\x54\x19\x63\x9d\xa3\x9c\x6b\x1b\x63\x83\xbe\x24\x8c\x36\xa4\xda\x3a\xc7\x25\xe9\x0a\x1b\xef\x85\x72\x6e\x56\x78\x54\x09\x69\xc0\xab\x31\x00\x10\x49\x11\x67\xd0\x66\xb1\xee\x52\xcf\x0f\xd4\xe3\x1a\x03\xe9\x87\xf6\x89\x69\xe6\xc8\xe9\x5a\x67\x27\xdb\x85\x18\x34\x50\x6e\x3b\x16\xe1\x97\xab\xff\x97\x3f\x6a\xe7\xe7\x8e\xa3\x27\xb9\xa9\xcf\xc1\xd3\x7d\xb3\xed\x7f\x96\x1f\x4a\x17\x83\x3b\x58\x7d\x3e\x87\xbe\x7a\xd7\x6b\x4c\x36\x05\x57\x57\xb7\x5c\xa2\x47\x62\xc5\xd2\x0e\x0b\xa1\x9e\x84\x92\x23\x28\x63\x9a\x31\xf8\x85\xaf\x9a\x65\xb8\x90\x16\x49\x7f\x6e\x6f\x07\xd2\x2d\x45\x1a\xac\xb2\xdc\xb3\xa7\xdd\xb6\x6e\xfe\x99\x37\xf3\x1e\x00\x00\xff\xff\x2b\x7f\x31\x90\x8c\x01\x00\x00" func lockedtokensDelegatorGet_delegator_node_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4140,11 +4160,11 @@ func lockedtokensDelegatorGet_delegator_node_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_node_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe4, 0xa6, 0x64, 0xd9, 0x19, 0xbf, 0x3b, 0xbb, 0x52, 0xfd, 0xfa, 0x51, 0x34, 0x21, 0xa9, 0xb0, 0xa, 0x66, 0x33, 0xcf, 0xce, 0x7c, 0x53, 0xe7, 0xe0, 0xc4, 0xe5, 0x27, 0x67, 0x1c, 0xae, 0x8f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xee, 0x61, 0xcb, 0xb1, 0x59, 0xce, 0x22, 0xfb, 0x43, 0x23, 0xf2, 0x1, 0xc5, 0x22, 0xa9, 0x53, 0xc9, 0x52, 0xbb, 0x83, 0x3c, 0x7d, 0xdb, 0xcd, 0xfa, 0x13, 0x12, 0xf1, 0x57, 0xe7, 0x31, 0xdc}} return a, nil } -var _lockedtokensDelegatorRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x53\xc1\x6e\x9b\x40\x10\xbd\xf3\x15\x53\x1f\x2a\x90\x1a\xd2\x43\xd5\x83\x95\x34\x72\x82\xa3\x5a\x71\x9d\x28\xa6\xad\x7a\xdc\xb0\x03\xac\x0c\xbb\x74\x77\x88\x5d\x45\xfe\xf7\x6a\x59\x70\x80\xd8\xfd\x81\xee\xc5\x32\xf3\xe6\xcd\x9b\x37\x33\xa2\xac\x94\x26\xb8\x2d\xd4\x36\x56\x1b\x94\x90\x6a\x55\xc2\xc7\xdd\xed\xf2\xfe\x67\x7c\x7f\x37\x5f\xcd\xa2\xe8\x71\xbe\x5e\x7b\x2d\x70\xa9\x92\x0d\xf2\x06\x6a\x3a\xec\xf2\xfe\xe6\x6e\x1e\x1d\x43\x5b\xda\x45\x14\xb3\xa7\x02\xd7\xc4\x36\x42\x66\x5d\xce\x22\x9a\xaf\xe2\x45\xfc\x2b\x9e\x5d\x2f\xe7\x5d\x96\x47\x9a\x49\xc3\x12\x12\x4a\xfa\x82\x4f\x61\x4d\x5a\xc8\xec\x03\xb0\x52\xd5\x92\xa6\xf0\xfd\x56\xec\x3e\x7f\x0a\xe0\xc5\xf3\x00\x00\x0a\x24\xc8\x55\xc1\x51\x3f\x62\x3a\x85\xf7\x7d\x71\x61\xf3\xf3\xb5\x89\xbe\xa2\x9f\x59\x5d\x90\x03\x1f\x5a\x0e\x7f\xd8\x8f\x0e\x53\x69\xac\x98\x46\x9f\x25\x89\xab\x38\xab\x29\x9f\xb9\x3f\xb6\x2c\xb4\xcf\x60\x91\x86\x87\xd2\x70\x09\x6d\x42\xf8\xa4\xb4\x56\xdb\x8b\x93\x52\xbe\xf8\xd6\x80\x29\x9c\x8a\xaf\x49\x69\x96\xe1\x03\xa3\x3c\x80\x43\x39\xfb\xae\xae\xa0\x62\x52\x24\xfe\xa4\x07\x07\x61\x40\x2a\x02\xc3\x9e\x91\x03\x23\x30\x15\x26\x22\x15\xc8\xa1\x62\x94\x4f\x02\x6f\x28\xb9\xeb\xff\x88\xe2\x91\x1f\x9d\xd0\x73\xe3\x14\x9d\xa7\x5d\xbc\x09\x07\x27\xb4\xdd\xa8\xba\xe0\x8d\x24\xc7\x0b\x36\x0d\xa8\x59\xad\xa6\x38\x68\x4c\x51\xa3\x4c\x70\xe2\x38\xf6\x4e\x22\xee\x30\xa9\x09\x7b\x1e\xdb\x79\x15\x8d\x4d\xd7\xac\x60\x32\x41\xb8\x1c\xf9\x1e\x66\x48\xce\xc8\x76\x44\x2d\xd0\xef\xb5\x2d\xd2\x76\x7b\xe0\xe2\x72\x44\xf7\xe2\x0d\x9a\x18\x71\x27\x1a\x19\xe1\x4a\x71\x8c\xb0\xc0\x8c\x91\xd2\xbe\x54\x1c\x17\xd1\x14\x04\x0f\x86\xb9\x56\xab\x21\xb6\x41\xfd\xa0\xd5\xee\xcf\x5b\xa5\xce\x8d\x57\xa6\x51\x7e\x2f\x37\xe4\x0e\x84\x2b\x74\x7e\x1b\xbf\x5b\xff\xb6\x91\xb3\x23\x77\x65\xad\x38\xb0\x7f\x13\x52\x94\x75\x69\x43\xf8\x88\xbf\x6b\xa1\xb1\x44\x49\x7e\xd0\xab\xba\x07\x2c\x0c\x5a\x7b\x7c\xff\xc0\x3b\xf0\x27\xb0\x8e\x0d\xb6\x26\x7c\xea\x22\xff\xb6\x8e\x63\xa5\x8c\xa0\x76\x83\x2e\xce\x86\x24\x5b\x41\x39\xd7\x6c\xfb\xb6\xad\x61\xf9\xb1\x45\xff\xe3\x78\x5e\x06\x32\xda\x1b\x5b\x29\x02\x94\xaa\xce\x72\x77\x58\x06\x48\x39\x89\xef\x26\xaf\x77\xb9\x6f\xaf\x6b\xef\xfd\x0d\x00\x00\xff\xff\xa4\x8b\xdc\xe3\xe4\x05\x00\x00" +var _lockedtokensDelegatorRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x54\x41\x6f\xdb\x3c\x0c\xbd\xfb\x57\xf0\xf3\xa1\xb0\x81\xd6\xbd\x7c\xd8\x21\x68\x56\xac\x0b\x8a\x15\xd8\xb2\xa2\xe9\xba\xb3\x62\xd1\xb6\x10\x59\xf2\x24\xba\xc9\x10\xe4\xbf\x0f\xb2\x14\xc7\x4e\x96\x6d\x97\x9d\xe6\x4b\x51\x91\x7c\x7c\xef\x91\x8c\xa8\x1b\x6d\x08\xee\xa5\x5e\x3f\xeb\x15\x2a\x28\x8c\xae\x21\xee\xff\x8f\xa3\x90\xf1\x51\xe7\x2b\xe4\xdd\x9b\x0d\x49\xc3\xa7\x3e\xcf\x55\x3e\xcc\x9e\xd9\x52\xe2\x82\xd8\x4a\xa8\x72\x00\x39\x0e\x1c\x6a\x5a\x55\x8a\xa5\xc4\x11\x83\xe1\x5b\x1c\x45\x64\x98\xb2\x2c\x27\xa1\x55\x22\xf8\x04\x16\x64\x84\x2a\x2f\x81\xd5\xba\x55\x34\x81\x2f\xf7\x62\xf3\xe6\xff\x14\xb6\x51\x04\x00\x20\x91\xa0\xd2\x92\xa3\x79\xc2\x62\x02\xac\xa5\x2a\x19\xf2\xcd\xba\x3f\x9f\x1b\x34\xcc\x41\xda\xcb\x31\x89\xec\xab\xa0\x8a\x1b\xb6\x4e\xe1\xe2\xb4\xec\x43\x07\x7c\x68\xf4\xca\x5a\x49\x87\x3e\x67\x91\x7a\x57\xb3\x17\x57\xe1\x01\x1a\x83\x0d\x33\x98\xb0\x3c\xf7\x4a\x3a\x8c\x3b\x6d\x8c\x5e\xbf\x30\xd9\x62\x0a\x17\xef\x7c\xcc\xa9\x83\xf0\x59\x94\x45\xd6\x2b\x84\x29\x84\xfa\xcc\x92\x36\xac\xc4\x6c\xd9\x21\xdc\xfc\x0d\xe5\x6f\x13\x37\xa3\x09\x9c\x8b\x2f\x3c\x85\x47\x46\x55\xda\x13\x76\xdf\xed\x2d\x34\x4c\x89\x3c\x89\x07\xd9\x20\x2c\x28\x4d\x60\xd9\x2b\x72\x60\x04\xb6\xc1\x5c\x14\x02\x39\x34\x8c\xaa\x38\x8d\xc6\xa2\xf7\x6e\xff\x46\xf3\x9f\x4e\x61\x2f\xe6\x3a\x80\x5c\x17\xfb\x78\x17\x3e\x27\xe0\xbd\x6e\x25\xef\x78\xfb\xa6\xe0\xca\x80\xba\x0d\xee\x18\x82\xc1\x02\x0d\xaa\x1c\x63\x8f\xb1\xf3\x3a\x70\x83\x79\x4b\x38\x18\xa5\x5b\x21\xd9\x59\x79\xc7\x24\x53\x39\xc2\xf4\x68\xbc\x59\x89\xe4\xcd\x0e\x9b\x10\x12\x93\x81\x37\xa2\x08\xb7\x00\x37\xd3\x23\xb8\x6d\x34\x12\x71\x84\x9d\x1b\x64\x84\x73\xcd\x71\x86\x12\x4b\x46\xda\x24\x4a\x73\x7c\x98\x4d\x40\xf0\x74\x5c\xeb\xb8\x5a\x62\x2b\x34\x8f\x46\x6f\xbe\x9f\x32\xf5\x6e\x1c\x90\x8e\xea\x07\xb5\x19\xf7\x49\x38\x47\xef\xb7\x4d\xf6\xc7\x1c\x84\x5c\xfd\xe4\xd7\xc4\x59\xd1\xa3\x7f\x12\x4a\xd4\x6d\xed\x42\xf8\x84\xdf\x5a\x61\xb0\x46\x45\x49\x3a\xe8\xba\x03\x94\x16\x9d\x3d\x49\xd2\xe3\x8e\xfc\x49\x9d\x63\xa3\xd5\xca\x96\xfb\xc8\xaf\xad\xe3\xd8\x68\x2b\x28\x6c\xd0\xcd\xd5\x18\x64\x1d\x76\xee\x54\xd6\xb8\xfd\xb1\x45\xff\xe2\x78\xb6\x23\x1a\xe1\xc6\xe6\x9a\x00\x95\x6e\xcb\xca\x1f\x96\x05\xd2\x9e\xe2\x7f\xf1\xe1\x2e\x77\xe1\xba\x76\xd1\x8f\x00\x00\x00\xff\xff\xff\xca\xcc\xa6\xcd\x06\x00\x00" func lockedtokensDelegatorRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -4160,11 +4180,11 @@ func lockedtokensDelegatorRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x91, 0x9, 0xb6, 0x65, 0x81, 0x2d, 0x4b, 0x98, 0x9a, 0x49, 0x39, 0xf6, 0x73, 0xe4, 0x73, 0x75, 0xe4, 0x4e, 0x78, 0xa9, 0xe, 0x69, 0x8d, 0x9d, 0x36, 0x7d, 0xc4, 0x4, 0xad, 0xdb, 0xb5, 0xe5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0xbb, 0xe3, 0x9f, 0x58, 0x2d, 0xa7, 0x68, 0x5e, 0x3e, 0x8b, 0x4a, 0xbe, 0x59, 0xab, 0xc6, 0xae, 0x8e, 0xfe, 0x37, 0xc, 0xdc, 0x3a, 0xc5, 0xb2, 0x4d, 0x34, 0x53, 0x6e, 0xef, 0x38, 0x69}} return a, nil } -var _lockedtokensDelegatorRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xdf\x6a\xf2\x40\x10\xc5\xef\xf3\x14\x83\x17\x1f\xf1\x26\x7c\x17\xa5\x17\x52\x2b\xd2\x58\x0a\x8a\x8a\x7f\x1e\x60\xba\x99\x98\xc5\xb8\x93\xce\x4e\xda\x94\xe2\xbb\x17\x5d\x4d\xb5\xd2\xdc\x4c\x86\x3d\x9c\xdf\x9e\xb3\x76\x57\xb1\x28\x4c\xd8\x6c\x29\x5b\xf1\x96\x9c\x87\x5c\x78\x07\xff\x9b\xc9\xec\x69\x3c\x4a\x57\xb3\xf1\x68\x3a\x4c\xd3\xc5\x68\xb9\x8c\x22\x15\x74\x1e\x8d\x5a\x76\x31\xee\xb8\x76\xda\x83\xf5\xb3\x6d\xee\xef\xba\xf0\x15\x01\x00\x94\xa4\xe0\x38\xa3\x94\x4a\xda\xa0\xb2\xcc\x85\x9b\xcf\xde\x15\x21\x09\xcb\xf4\x46\x16\x1d\x2d\x2a\xa1\x0a\x85\x62\x34\x26\x10\x86\xb5\x16\xc3\xb0\x9c\x31\x67\x54\xc1\x65\x46\xb2\xa0\x1c\xfa\x70\xd2\x27\xaf\x2c\xc2\x1f\x0f\xff\xae\x90\xc7\xf1\x72\x54\x3f\xc6\x87\x84\xbf\xae\x74\x71\xbe\x54\x16\xdc\xd0\x1c\xb5\xe8\x42\x4b\x3b\x7c\x83\x01\x54\xe8\xac\x89\x3b\x17\x72\xb0\x1e\x1c\x2b\x78\x7c\xa7\x0c\x50\xc1\x57\x64\x6c\x6e\x29\x83\x0a\xb5\xe8\x74\x5b\x8b\xf6\xc7\x53\x99\x27\xb7\x2d\x41\xff\x27\xcf\x29\x45\x2b\x88\x83\xcd\x3e\x54\x44\x0d\x99\x5a\xe9\xa2\x8c\x3f\x2c\x13\xa1\xb7\x9a\xbc\xae\x9d\x57\xdc\x5a\xb7\x69\x9f\x2d\xcc\xb3\xeb\x3e\xfa\x0e\x00\x00\xff\xff\xb1\xf9\x7f\xb3\x0a\x02\x00\x00" +var _lockedtokensDelegatorRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xc1\x4e\xab\x50\x10\xdd\xf3\x15\x13\x16\x0d\x24\x2f\xac\x5e\xde\xa2\x79\xb5\xd1\x98\xc6\x85\xd1\x46\xad\xae\xa7\x30\xc0\x4d\xe9\x1d\x9c\x3b\xd8\x1a\xd3\x7f\x37\xe5\x52\x0a\x36\xb2\x19\x98\x39\x73\xce\x99\x13\xcc\xb6\x66\x51\xb8\xe7\x74\x43\xd9\x0b\x6f\xc8\x3a\xc8\x85\xb7\x10\x0e\x5b\x61\xd0\xe1\x16\x8d\x2d\xcc\xba\xa2\xb6\xdd\x01\x47\xbd\x30\x08\x54\xd0\x3a\x4c\xd5\xb0\x8d\x70\xcb\x8d\xd5\x29\xac\x16\x66\xff\xef\x6f\x0c\x5f\x01\x00\x40\x45\x0a\x96\x33\xba\xa5\x8a\x0a\x54\x96\xa5\xf0\xfe\x73\x3a\x72\x91\xf8\x8f\x87\x0b\x58\xd0\x52\xd4\x42\x35\x0a\x45\x98\xa6\x5e\x01\x1b\x2d\xa3\x1b\x16\xe1\xdd\x2b\x56\x0d\xc5\x30\xb9\xf6\xb3\x93\xea\x49\xb9\xe4\x2a\x23\x79\xa2\x1c\x66\xd0\xad\x27\x4e\x59\xb0\xa0\x64\xdd\x12\xfc\x6f\xc9\x46\x6e\xda\xf2\x58\x93\xe0\xf1\x2e\xf7\x67\x9c\x44\xf2\x66\xb4\xcc\x04\x77\x31\x4c\x2e\xd7\xee\x5a\xc1\xab\xe8\x18\xd7\x8f\x23\x07\xf3\x67\x6f\x61\x89\x5a\xc6\xbd\xdf\xe3\x33\x9f\x43\x8d\xd6\xa4\x51\x38\x40\x83\x71\x60\x59\xc1\xe1\x07\x65\x80\x0a\xae\xa6\xd4\xe4\x86\x32\xa8\x51\xcb\xf0\x4c\xd1\xbf\x38\xaa\xf2\xe4\x32\x76\x98\x9d\x13\xe9\xee\xef\x01\x91\xa7\x39\xf8\xcc\x69\x4f\x69\xa3\x34\x88\xf3\x17\xca\x44\xe8\xbd\x21\xa7\x2b\xeb\x14\x37\xc6\x16\xfd\x7f\xe0\xeb\x89\xf5\x10\x7c\x07\x00\x00\xff\xff\x6f\x65\xa9\x7e\x7f\x02\x00\x00" func lockedtokensDelegatorRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -4180,11 +4200,11 @@ func lockedtokensDelegatorRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x54, 0x4a, 0xf3, 0x42, 0x72, 0x6b, 0xbf, 0x51, 0x4d, 0x3a, 0xe6, 0x9b, 0xce, 0x42, 0xbc, 0x7, 0x8b, 0xa6, 0x15, 0x6a, 0xda, 0xb7, 0x66, 0x6b, 0xa8, 0xbd, 0x2e, 0xf1, 0x0, 0x96, 0x7, 0x4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0x38, 0x26, 0x65, 0xbe, 0x12, 0x28, 0x9a, 0x64, 0x62, 0xf9, 0x85, 0x12, 0x94, 0xe3, 0xcb, 0x8c, 0xba, 0x20, 0x9b, 0x44, 0xed, 0x73, 0x7c, 0x4b, 0xa0, 0x91, 0x6c, 0x85, 0x78, 0x4d, 0x5b}} return a, nil } -var _lockedtokensDelegatorWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x8f\xa2\x40\x10\x85\xef\xfc\x8a\x8a\x87\x0d\x1c\x16\xf7\xb0\xd9\x83\xd1\x35\x46\x34\x93\x68\x46\xa3\xce\xcc\xb9\x07\x0a\x21\xb6\x14\x69\x0a\x61\x32\xf1\xbf\x4f\xa0\x69\x06\x89\x5e\xa6\x2f\x1d\xa8\xd7\xf5\xbe\x7a\xdd\xf1\x39\x25\xc5\xb0\x26\xff\x84\xc1\x81\x4e\x98\x64\x10\x2a\x3a\xc3\x9f\x72\xbd\x99\xaf\x16\xde\x61\xb3\x5a\x3c\xcf\x3c\x6f\xb7\xd8\xef\xad\x46\xbd\x94\x54\xd4\x5a\x23\x5d\xae\x37\x6f\x37\x42\x8b\x95\x48\x32\xe1\x73\x4c\x89\x2d\xce\x94\x27\x3c\x82\x97\x65\x5c\xfe\xfb\xeb\xc0\xa7\x65\x01\x00\x48\x64\x88\x48\x06\xa8\x76\x18\x8e\xe0\x57\x97\xc1\xad\xb7\xa7\xba\xda\x8a\x2f\x22\x97\xac\xb5\x2d\x81\xfb\x5a\xfd\xd4\x0d\x53\x85\xa9\x50\x68\x0b\xdf\xd7\x86\xb3\x9c\xa3\x99\xfe\xa8\x5c\xa1\x59\x19\xca\xd0\x6d\x9d\x61\x02\xcd\x01\xf7\x9d\x94\xa2\x62\xfc\x90\xe4\xbf\x5d\xcd\x3b\x82\x47\xf5\x3d\x93\x12\x47\xdc\x0a\x8e\x1c\x68\xed\xaa\x35\x9d\x42\x2a\x92\xd8\xb7\x07\x73\xca\x65\x00\x09\x31\x68\x37\x50\x18\xa2\xc2\xc4\x47\x60\x82\x4e\xb3\x81\x63\xdd\x12\x9b\xf1\xef\x00\xf7\xe2\x30\x9c\xc3\x4c\x03\x0d\x43\x53\xaf\xcb\xce\x8f\xd0\xbe\x2f\xfd\x22\x64\x8e\x03\xdd\xe5\xaa\x21\xb1\x44\x3f\x67\xec\x84\x5c\x5d\x58\x80\x12\x8f\x82\x49\x6d\x15\x95\x1f\x30\xe9\x25\xdf\xe0\x7b\x46\x65\x77\x26\xbe\x3d\xea\x16\x31\x47\x81\x12\xc5\x0e\x0b\xa1\x02\x93\x7d\xfb\xb2\xf4\xee\xdc\xcf\xcb\x0d\x30\xa5\x2c\xe6\x26\x94\xf1\xef\x1e\x85\xe9\xdd\xef\x66\x06\xbc\x5a\x5f\x01\x00\x00\xff\xff\x29\x29\x64\xb8\x25\x03\x00\x00" +var _lockedtokensDelegatorWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xcf\x6e\xa3\x30\x10\xc6\xef\x3c\xc5\x88\x43\x04\xd2\xae\x73\x59\xed\x21\x4a\x36\xda\x3f\x8a\xf6\x50\xa9\x51\xda\xa6\x67\x07\x86\x80\xe2\x78\xd0\x60\x42\xaa\x2a\xef\x5e\x81\x0d\x01\xda\x5c\x2a\x95\x8b\xc5\xcc\xf8\xf3\xef\x9b\x99\xec\x98\x13\x1b\xb8\xa3\xe8\x80\xf1\x23\x1d\x50\x17\x90\x30\x1d\xc1\xef\x87\x7c\xcf\xd5\xad\x14\x55\x4d\xc8\x15\x75\xff\xd7\x8a\x52\xef\xb3\x9d\xc2\x41\x55\x3f\xe6\x7b\x9e\x61\xa9\x0b\x19\x99\x8c\x74\x20\x8f\x54\x6a\x33\x83\xa7\x55\x76\xfe\xf9\x23\x84\x57\xcf\x03\x00\x50\x68\x20\x25\x15\x23\x6f\x30\x99\x81\x2c\x4d\x1a\xf4\x89\x44\x73\xdc\xe7\xc8\xb2\x96\x29\xbe\x0d\x1f\x16\xcf\x99\x49\x63\x96\x55\x08\x93\xf7\xd7\xfe\x37\xc2\xdd\x3b\x27\x59\x2a\xd3\x3c\x33\xe9\xfc\x88\x6d\x1d\xb4\x2c\x39\x63\x2e\x19\x03\x19\x45\x96\xb5\xa1\xf9\x43\xcc\x54\x6d\xa5\x2a\x31\x84\xc9\x6f\x9b\xab\xf9\xc1\x7d\x05\xaa\x44\x74\x1e\x60\x01\xee\xbe\x28\x0c\xb1\xdc\xa3\xd8\x35\x0a\xf3\xaf\xf0\xf6\x2b\xa8\x3b\x3f\x83\x5b\xf9\x07\x8b\xb0\x96\x26\x0d\x3b\xe0\xfa\x5b\x2e\x21\x97\x3a\x8b\x02\xff\x2f\x95\x2a\x06\x4d\x06\x2c\x27\x30\x26\xc8\xa8\x23\x04\x43\xd0\xd3\xf2\x43\x6f\xe8\xb9\xed\xe7\x6d\xcb\xe3\x3e\xb7\xb8\x53\x57\x37\x4d\xda\x7c\x93\xfe\x1c\xe2\x75\x57\x4f\xf5\x90\x7c\xab\x72\xb1\xb0\x78\xc6\xa8\x34\xd8\x1b\x57\xbd\x09\x31\x2a\xdc\x4b\x43\xbc\x66\x3a\xbf\xc0\x62\x34\x43\x87\xff\xaf\xad\x0a\x7a\xce\x87\x57\x45\xe5\x66\xb4\xc1\x4a\x72\xdc\x8e\xa0\xdb\x76\x7b\x86\x1f\xf7\x4d\xc4\x98\x53\x91\x19\xd7\x94\xf9\xf7\x11\x45\xab\x3d\x56\x6b\x0d\x5e\xbc\xb7\x00\x00\x00\xff\xff\x0e\x35\x51\xeb\xd6\x03\x00\x00" func lockedtokensDelegatorWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4200,11 +4220,11 @@ func lockedtokensDelegatorWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe6, 0x5, 0x83, 0x8, 0x2a, 0x18, 0xaf, 0xe7, 0xdc, 0x32, 0xf3, 0xaa, 0x20, 0x75, 0x3b, 0x26, 0xe1, 0xbb, 0xd2, 0x3a, 0xfa, 0x32, 0x6, 0xb0, 0x49, 0x94, 0x57, 0x54, 0x30, 0x79, 0x4d, 0x56}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x94, 0x24, 0x6d, 0x9c, 0xe, 0x60, 0xf7, 0xf3, 0x2c, 0x32, 0x60, 0x16, 0x15, 0x5d, 0x1b, 0x7f, 0x82, 0x13, 0x92, 0x79, 0x2a, 0x26, 0x1f, 0xbd, 0xc6, 0x8e, 0x23, 0xe0, 0x48, 0x1c, 0x44, 0xdd}} return a, nil } -var _lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x2f\xa1\x87\xd2\x83\xd4\x8a\x34\x96\x82\xa2\xa2\xf6\x07\x4c\x77\x27\x66\x31\xee\x84\xc9\xd8\xa4\x14\xff\x7b\xd1\x98\x34\x56\x9a\xcb\x64\xd8\xc7\xfb\xf6\xbd\x75\xfb\x9c\x45\x61\xc6\x66\x47\x76\xc3\x3b\xf2\x05\x24\xc2\x7b\xb8\xaf\x66\x8b\x97\xe9\x24\xde\x2c\xa6\x93\xf9\x38\x8e\x57\x93\xf5\x3a\x08\x54\xd0\x17\x68\xd4\xb1\x0f\x71\xcf\x07\xaf\x03\x78\x7f\x75\xd5\xe3\x43\x1f\xbe\x03\x00\x80\x8c\x14\x3c\x5b\x8a\x29\xa3\x2d\x2a\xcb\x52\xb8\xfa\x1a\x5c\x11\xa2\x7a\x99\xdf\xc8\x82\xb3\x45\x2e\x94\xa3\x50\x88\xc6\xd4\x84\xf1\x41\xd3\x71\xbd\x34\x98\x06\x95\x72\x66\x49\x56\x94\xc0\x10\x2e\xfa\xe8\x83\x45\xb8\x7c\xba\xbb\x42\x9e\xc7\xdb\x59\xfd\x1c\x9e\x12\xfe\xb9\x52\xe7\x7c\xad\x2c\xb8\xa5\x25\x6a\xda\x87\x96\x76\xfa\x46\x23\xc8\xd1\x3b\x13\xf6\x3a\x72\x70\x05\x78\x56\x28\xf0\x93\x2c\xa0\x42\x91\x93\x71\x89\x23\x0b\x39\x6a\xda\xeb\xb7\x16\xed\x4f\x41\x59\x12\xdd\xb6\x04\xc3\xdf\x3c\x97\x14\xad\x20\xac\x6d\x8e\x75\x45\x54\x91\x39\x28\x75\xca\xf8\xc7\x32\x2a\x9d\xa6\x56\xb0\x5c\x51\x89\x62\x9b\xb8\xed\xe3\xd5\xb3\xf1\x3e\x06\x3f\x01\x00\x00\xff\xff\x93\x68\x03\x07\x10\x02\x00\x00" +var _lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4f\x6b\xa3\x50\x10\xbf\xfb\x29\x06\x0f\x41\x61\xf1\xb4\xec\x21\x6c\x36\x6c\x29\xa1\x87\xd2\x86\xf4\xdf\x79\xa2\x63\x7c\xc4\xbc\x91\x79\x63\x4d\x29\xf9\xee\x25\x3e\x35\xda\x50\x2f\x4f\xe7\xfd\xe6\xf7\x0f\xcd\xa1\x62\x51\xb8\xe7\x74\x4f\xd9\x33\xef\xc9\x3a\xc8\x85\x0f\x10\x8e\x47\x61\xd0\xe1\x56\xb5\xdd\x99\x6d\x49\xed\xb8\x03\x4e\x66\x61\x10\xa8\xa0\x75\x98\xaa\x61\x1b\xe1\x81\x6b\xab\x73\x78\x59\x99\xe3\x9f\xdf\x31\x7c\x06\x00\x00\x25\x29\x58\xce\xe8\x96\x4a\xda\xa1\xb2\xac\x85\x8f\x1f\xf3\x89\x8b\xc4\x7f\x3c\x5c\xc1\x82\x96\xa2\x12\xaa\x50\x28\xc2\x34\xf5\x0a\x58\x6b\x11\xdd\xb0\x08\x37\xaf\x58\xd6\x14\xc3\xec\xbf\xbf\xeb\x55\x7b\xe5\x82\xcb\x8c\x64\x43\x39\x2c\xa0\x5b\x4f\x9c\xb2\xe0\x8e\x92\x6d\x4b\xf0\xb7\x25\x9b\xb8\x69\x8f\xc7\x8a\x04\xcf\xb9\xdc\xaf\x69\x13\xc9\x9b\xd1\x22\x13\x6c\x62\x98\x5d\xaf\xdd\xb5\x82\xff\xa2\x73\x5d\xdf\x42\x8e\xee\x9f\xbc\x85\x35\x6a\x11\x0f\x7e\xcf\xcf\x72\x09\x15\x5a\x93\x46\xe1\x08\x0d\xc6\x81\x65\x05\x87\xef\x94\x01\x2a\xb8\x8a\x52\x93\x1b\xca\xa0\x42\x2d\xc2\x0b\xc5\xf0\xe2\xa8\xcc\x93\xeb\xda\x61\x71\x69\xa4\xcb\x3f\x00\x22\x4f\x73\xf2\x9d\xd3\x91\xd2\x5a\x69\x54\xe7\x0f\x94\x49\xd3\xd5\xb1\xa1\x06\x25\xeb\xd3\x0e\x7f\x83\x3f\x7b\xee\x53\xf0\x15\x00\x00\xff\xff\x8b\x3c\x89\xa1\x85\x02\x00\x00" func lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdcBytes() ([]byte, error) { return bindataRead( @@ -4220,11 +4240,11 @@ func lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6d, 0x82, 0x3d, 0xe0, 0xb7, 0x1e, 0xf7, 0xed, 0x59, 0xb8, 0x4, 0xce, 0x38, 0xb6, 0x6e, 0x9a, 0x69, 0x60, 0x72, 0x8, 0x27, 0xcf, 0xa5, 0x8, 0x5f, 0x3e, 0xb7, 0x74, 0xcb, 0xaa, 0x37, 0xfe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0xbe, 0x82, 0xa7, 0xde, 0x1f, 0xfd, 0xc2, 0x7d, 0x57, 0x2, 0xd5, 0x9d, 0xb0, 0x5e, 0xde, 0xad, 0x51, 0xee, 0xe9, 0x0, 0x5b, 0x77, 0xbf, 0xff, 0xbc, 0x87, 0xf0, 0x16, 0x44, 0x76, 0x94}} return a, nil } -var _lockedtokensDelegatorWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xdf\x6a\xf2\x40\x10\xc5\xef\xf3\x14\x83\x17\x1f\xf1\x26\x7c\x17\xa5\x17\x52\x2b\xd2\x58\x0a\x8a\x8a\x7f\x1e\x60\xba\x99\x98\xc5\xb8\x13\x66\xc7\x9a\x52\x7c\xf7\xa2\xd1\x6d\xac\x34\x37\x93\x61\x0f\xe7\xb7\xe7\xac\xdd\x55\x2c\x0a\x13\x36\x5b\xca\x56\xbc\x25\xe7\x21\x17\xde\xc1\xff\x7a\x32\x7b\x19\x8f\xd2\xd5\x6c\x3c\x9a\x0e\xd3\x74\x31\x5a\x2e\xa3\x48\x05\x9d\x47\xa3\x96\x5d\x8c\x3b\xde\x3b\xed\xc1\xfa\xd5\xd6\x8f\x0f\x5d\xf8\x8a\x00\x00\x4a\x52\x70\x9c\x51\x4a\x25\x6d\x50\x59\xe6\xc2\xf5\x67\xef\x86\x90\x34\xcb\xf4\x4e\x16\x9d\x2d\x2a\xa1\x0a\x85\x62\x34\xa6\x21\x0c\xf7\x5a\x0c\x9b\xe5\x8a\xb9\xa2\x0a\x2e\x33\x92\x05\xe5\xd0\x87\x8b\x3e\x79\x67\x11\x3e\x3c\xfd\xbb\x41\x9e\xc7\xdb\x59\xfd\x1c\x9f\x12\xfe\xba\x52\xeb\x7c\xa9\x2c\xb8\xa1\x39\x6a\xd1\x85\x40\x3b\x7d\x83\x01\x54\xe8\xac\x89\x3b\x2d\x39\x58\x0f\x8e\x15\x3c\x7e\x50\x06\xa8\xe0\x2b\x32\x36\xb7\x94\x41\x85\x5a\x74\xba\xc1\x22\xfc\x78\x2a\xf3\xe4\xbe\x25\xe8\xff\xe4\xb9\xa4\x08\x82\xb8\xb1\x39\x36\x15\x51\x4d\x66\xaf\xd4\x2a\xe3\x0f\xcb\xe4\x60\xb5\xc8\x04\x0f\x6b\xe7\x15\x43\xdc\xf0\x78\xcd\xbc\x7a\x1f\xa3\xef\x00\x00\x00\xff\xff\xbc\x5c\xb3\x29\x10\x02\x00\x00" +var _lockedtokensDelegatorWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4d\x4f\xb3\x40\x10\xbe\xf3\x2b\x26\x1c\x1a\x48\xde\x70\x7a\xe3\xa1\xb1\x36\x1a\xd3\x78\x30\xda\xa8\xd5\xf3\x74\x19\xca\xa6\x74\x67\xb3\x3b\xd8\x1a\xd3\xff\x6e\xca\x52\x0a\x12\xb9\x2c\xcc\x3e\xf3\x7c\x05\xbd\xb3\xec\x04\x1e\x59\x6d\x29\x7f\xe3\x2d\x19\x0f\x85\xe3\x1d\xc4\xfd\x51\x1c\xb5\xb8\x45\x6d\x36\x7a\x5d\x51\x33\x6e\x81\x83\x59\x1c\x45\xe2\xd0\x78\x54\xa2\xd9\x24\xb8\xe3\xda\xc8\x14\x56\x0b\x7d\xb8\xfa\x9f\xc2\x77\x04\x00\x50\x91\x80\xe1\x9c\xee\xa9\xa2\x0d\x0a\xbb\xa5\xe3\xc3\xd7\x74\xe0\x22\x0b\x1f\x4f\x23\x58\xd4\x50\x58\x47\x16\x1d\x25\xa8\x54\x50\xc0\x5a\xca\xe4\x8e\x9d\xe3\xfd\x3b\x56\x35\xa5\x30\xb9\x0d\x77\x67\xd5\xb3\x72\xc9\x55\x4e\xee\x85\x0a\x98\x41\xbb\x9e\x79\x61\x87\x1b\xca\xd6\x0d\xc1\x75\x43\x36\x70\xd3\x1c\xcf\x96\x1c\x9e\x72\xf9\x7f\xc3\x26\xb2\x0f\x2d\x65\xee\x70\x9f\xc2\x64\xbc\xf6\xd0\x08\xde\x24\xa7\xba\x7e\x85\xec\xdd\xbf\x06\x0b\x4b\x94\x32\xed\xfc\x9e\x9e\xf9\x1c\x2c\x1a\xad\x92\xb8\x87\x06\xed\xc1\xb0\x80\xc7\x4f\xca\x01\x05\xbc\x25\xa5\x0b\x4d\x39\x58\x94\x32\xbe\x50\x74\x2f\x9e\xaa\x22\x1b\xd7\x0e\xb3\x4b\x23\x6d\xfe\x0e\x90\x04\x9a\x63\xe8\x9c\x0e\xa4\x6a\xa1\x5e\x9d\x7f\x50\x66\xfb\xb6\x8e\x95\xf1\x82\x5d\xda\xee\x6f\x08\xe7\x99\xfb\x18\xfd\x04\x00\x00\xff\xff\xa4\x08\x39\x8f\x85\x02\x00\x00" func lockedtokensDelegatorWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4240,11 +4260,11 @@ func lockedtokensDelegatorWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x76, 0x6b, 0xcd, 0x92, 0x2d, 0xc7, 0x26, 0xf1, 0x84, 0xdd, 0xbf, 0xe1, 0x63, 0x85, 0x81, 0xc6, 0xbc, 0xb9, 0x4b, 0x27, 0xa4, 0x96, 0xfc, 0xab, 0x2c, 0x32, 0x7a, 0x19, 0xc1, 0xcc, 0xec, 0x30}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x97, 0xad, 0xe8, 0x0, 0x2f, 0x41, 0x5f, 0x1e, 0x2a, 0x37, 0x13, 0xff, 0x4f, 0xde, 0x3f, 0xe4, 0xaf, 0x70, 0x62, 0x1d, 0x9d, 0xbb, 0x53, 0x40, 0x87, 0x7e, 0xed, 0xc8, 0x1b, 0x46, 0xaf, 0xab}} return a, nil } -var _lockedtokensStakerGet_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x5f\x6b\xc2\x30\x14\xc5\xdf\xf3\x29\xce\x7c\x18\xed\x8b\xec\x59\xb6\x89\x58\x61\xa2\xa8\x58\xbf\x40\x9a\xdc\x76\xc1\x34\xb7\xa4\x09\xdb\x10\xbf\xfb\x68\xbb\x39\xf7\x87\xdd\x97\xc0\xcd\xb9\xbf\x73\x38\xa6\x6e\xd8\x07\xac\x59\x1d\x49\x1f\xf8\x48\xae\x45\xe9\xb9\xc6\xdd\xeb\x7a\x3b\x5f\x2d\xb2\xc3\x76\xb5\xd8\xcc\xb2\x6c\xbf\xc8\x73\x21\x9a\x58\xa0\x8c\x0e\xb5\x34\x2e\x91\x4a\x71\x74\x61\x82\x99\xd6\x9e\xda\x36\x9d\x20\x0f\xde\xb8\x0a\x27\x21\x00\xc0\x52\x80\xed\xc9\xb3\x41\xba\x74\x25\xef\xa9\xc4\x03\x2a\x0a\x1f\xbb\x4f\x4c\xda\x9f\x74\x33\xae\x28\xcc\x65\x23\x0b\x63\x4d\x78\xbb\xbf\xbd\x0e\x37\xee\x9f\x27\xb6\x9a\xfc\xe9\xdb\xc7\xfa\xa7\xd1\xf9\x31\xb9\x20\xbb\xf9\x5f\xbd\x8b\x85\x35\x6a\x27\xc3\xf3\xe5\xe8\x2a\x51\xc1\xde\xf3\x4b\xf2\xb5\x99\x4e\xd1\x48\x67\x54\x32\x9a\x73\xb4\x1a\x8e\x03\x06\x11\x24\x3c\x95\xe4\xc9\x29\x42\x60\x34\x3d\x18\xbf\x0c\x47\xe9\x50\x92\xa7\x10\xbd\xfb\xb3\xa7\xae\x88\x0d\x6b\x5a\x66\x49\x7a\x23\xce\xe2\x3d\x00\x00\xff\xff\x59\x32\x6f\x4f\xad\x01\x00\x00" +var _lockedtokensStakerGet_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcd\x4e\xc3\x30\x10\x84\xef\x7e\x8a\x21\x07\x94\x5c\xf2\x00\x15\x50\x55\x70\xa0\x52\x85\x2a\xe0\x05\x1c\x7b\x13\xac\x3a\xde\x68\xbd\x16\x07\xc4\xbb\xa3\x26\x50\xca\xcf\x5e\x2c\x8d\x66\xbe\xf1\x84\x71\x62\x51\xec\xd8\x1d\xc8\x3f\xf3\x81\x52\x46\x2f\x3c\xa2\x3a\x97\x2a\x63\xac\x73\x94\x73\x6d\x63\x6c\xd0\x97\x84\xd1\x86\x54\x5b\xe7\xb8\x24\x5d\x61\xe3\xbd\x50\xce\xcd\x0a\x4f\x2a\x21\x0d\x78\x33\x06\x00\x22\x29\xe2\x0c\xda\x2c\xd6\x6d\xea\xf9\x91\x7a\x5c\x63\x20\xfd\xd4\xbe\x30\xcd\x1c\x39\x5e\xeb\xec\x64\xbb\x10\x83\x06\xca\x6d\xc7\x22\xfc\x7a\x75\x79\xfe\xa3\x76\x7e\xee\x39\x7a\x92\x9b\xfa\x14\x3c\xde\x0f\xdb\xee\x77\xf9\xbe\x74\x31\xb8\xbd\xd5\x97\x53\xe8\xbb\x77\xbd\xc6\x64\x53\x70\x75\x75\xcb\x25\x7a\x24\x56\x2c\xed\xb0\x10\xea\x49\x28\x39\x82\x32\xa6\x19\x83\x3f\xf8\xaa\x59\x86\x0b\x69\x91\xf4\xef\xf6\x76\x20\x7d\x60\x4f\xdb\xbb\xba\xb9\x30\xef\xe6\x23\x00\x00\xff\xff\x0f\x71\x7a\xf7\x83\x01\x00\x00" func lockedtokensStakerGet_node_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4260,11 +4280,11 @@ func lockedtokensStakerGet_node_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/get_node_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x36, 0xf1, 0x48, 0xbc, 0x29, 0x8, 0xe1, 0x54, 0xd9, 0xcd, 0x2f, 0x3f, 0x8c, 0x57, 0xfa, 0xce, 0x1c, 0x97, 0xce, 0xe6, 0xf4, 0xb4, 0xc7, 0xd7, 0xb0, 0x8b, 0x59, 0xcf, 0x1c, 0x80, 0x8c, 0x24}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0x84, 0xe, 0x5d, 0x19, 0x55, 0x83, 0xac, 0xfc, 0xd7, 0x38, 0x2e, 0x90, 0xd2, 0x96, 0x6, 0xf1, 0x2f, 0x3e, 0x2d, 0x2c, 0x94, 0x18, 0xed, 0x24, 0xeb, 0x46, 0x62, 0x19, 0xf7, 0xa4, 0x79}} return a, nil } -var _lockedtokensStakerGet_staker_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x94\xc1\x6f\xda\x30\x14\xc6\xef\xf9\x2b\xde\x69\x4a\x2e\xe9\xce\x68\x99\x94\xe1\x4c\x8b\x8a\x68\x05\xb9\x4c\x55\x0f\x4e\xfc\x02\x1e\xc6\x8e\x9c\x17\x75\x15\xe2\x7f\x9f\x1c\x92\x34\xa1\x74\xa0\xfa\x82\x30\xef\xf7\xf9\xf3\xf7\x59\xc8\x7d\x65\x2c\xc1\x4f\x65\x5e\x52\x96\xf1\x5c\xe1\x9a\xf8\x4e\xea\x0d\x94\xd6\xec\xe1\xeb\xdf\x94\x25\xcb\x2c\xcd\x7e\x67\xf1\x8f\x45\x12\x33\xb6\x4a\xd6\x6b\xaf\xa3\x16\xa6\xd8\xa1\xc8\xcc\x0e\x75\xdd\xcf\x2f\x1e\xe6\xf7\x09\xcb\x1e\xee\x93\x65\x3f\xed\xdd\xdd\xc1\x0a\xa9\xb1\xba\x06\xae\x81\x5b\xcb\x5f\xc1\x94\xb0\x34\x02\x53\x5d\x1a\x30\xf9\x1f\x2c\xa8\x06\xda\x72\x02\xda\x22\xf0\xa2\x30\x8d\x26\x28\x8c\x26\x6b\x54\xed\x14\xa4\x06\x49\x35\x68\x63\xf7\x5c\x0d\x13\x5c\x0b\xa8\xb7\xdc\xa2\xe8\xb7\x3c\xaf\x6a\x72\x28\x1b\x0d\x7b\x2e\xb5\xdf\xed\xce\x20\x16\xc2\x62\x5d\x07\x33\x78\x7a\x7f\xdb\xb0\xf7\xf2\x0c\x07\xcf\x03\x00\x50\x48\xa0\xbb\xcd\xd8\x39\xbe\xc6\x45\xf0\xf4\xfc\x86\x56\x4d\x1e\x77\x16\x23\xd8\x20\x75\x5f\x7a\x3b\xc1\xf4\x10\xa7\x86\x76\xce\x2b\x88\x46\x64\x3b\xe2\x56\xb8\x41\x9a\xf3\x8a\xe7\x52\x49\x7a\xfd\xf6\xe5\xf0\x81\x91\x93\xcc\x63\x93\x2b\x59\x1c\xbf\xfb\x03\xef\xd6\x0d\xc8\x23\xa7\xed\xc0\x74\x0e\x65\x79\x66\x72\x85\x25\x44\x53\xd3\x61\x6e\xac\x35\x2f\x7e\x00\x87\x01\x77\x90\x74\xdd\x46\x1f\x9d\xec\x52\xf3\xdb\x84\xd9\x6c\xaa\x1f\x4a\x11\x0c\x42\x93\x0e\x42\x5e\x55\xa8\x85\xef\x94\x4f\x23\xc7\xb7\x20\x55\xfb\x1a\xbb\xec\x1c\x72\x73\x9e\xe3\x77\x1c\xb6\x1f\xbf\x8c\x12\x68\x0f\x93\x1f\x16\xe7\xfa\xe7\x11\xff\x7f\xfa\x6a\xc6\xef\xfc\x9f\xa2\xbe\x74\xad\x4b\x89\x8f\x9a\x4a\xd9\x25\xce\x25\xbb\x41\x6a\xb3\x67\x13\xf4\x93\x85\xa5\x2c\x98\x48\x5c\xa9\xea\x54\xd7\xa8\x34\xdb\xfe\x27\x4c\x31\xef\xe8\xfd\x0b\x00\x00\xff\xff\xec\x44\xa8\x4d\x93\x04\x00\x00" +var _lockedtokensStakerGet_staker_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xc1\x8a\xdb\x30\x10\xbd\xeb\x2b\x86\x1c\x8a\x7d\xf1\xde\x43\x5d\x08\x98\xd2\x40\x29\xcb\x76\x6f\xcb\x1e\xc6\xd2\x38\x51\xa3\x68\x8c\x34\x66\x29\x21\xff\x5e\xe4\x38\x8e\xdd\x64\x9b\xb6\xba\x84\x48\xef\x3d\xbd\x79\x4f\xd8\xee\x5b\x0e\x02\x9f\x1d\xbf\xad\xab\x67\xac\x1d\x7d\x17\xdc\x59\xbf\x81\x26\xf0\x1e\x16\xd7\x07\x0b\x35\x70\xbe\xb2\xde\x91\x79\xe6\x1d\xf9\x38\xa0\xa7\x5b\x0b\xa5\x1e\x1e\xe0\x89\xa4\x0b\x3e\x02\x7a\xc0\x10\xf0\x27\x70\x03\xdf\xd8\xd0\xda\x37\x0c\x5c\xff\x20\x2d\x11\x64\x8b\x02\xb2\x25\x40\xad\xb9\xf3\x02\x9a\xbd\x04\x76\x31\x29\x58\x0f\x56\x22\x78\x0e\x7b\x74\x23\x02\xbd\x81\xb8\xc5\x40\xe6\xbc\xa5\x14\x6a\x4d\x31\x66\xe8\x5c\x0e\x4d\xe7\x61\x8f\xd6\x67\xc3\xe9\x12\x56\xc6\x04\x8a\x31\x5f\xc2\xcb\xf5\x50\xc5\xd9\xd3\x2b\x1c\x94\x02\x00\x70\x24\xe0\x87\xcd\x55\x72\x7e\x8f\x57\xc2\xcb\xeb\x85\xda\x76\xf5\x6a\xb0\x5a\xc2\x86\x64\xf8\x73\xb6\x93\x5f\x90\xdc\x8a\x65\x8f\x2e\x29\x25\x55\x0a\x4f\xd4\x40\x39\x51\xe8\xa1\x69\x15\x1a\x5b\xac\xad\xb3\x62\x29\x16\x35\x87\xc0\x6f\x1f\x3f\x1c\xde\xb1\x75\x12\x7b\xec\x6a\x67\xf5\xf1\x53\x36\xaa\xa4\xf5\x17\x94\x47\x94\xed\xc8\x19\xfc\xda\x66\xcc\x65\x6a\xf5\xf6\x08\x87\x91\x9d\x38\x36\x15\x5e\xbe\x77\x71\x8a\x30\xeb\xe3\xae\x96\x73\xf9\xc2\x9a\x7c\x14\x9a\x15\x52\x60\xdb\x92\x37\x59\x52\x3e\x41\x8e\xd7\xa9\x9e\x5e\xe4\x10\x64\xa2\xfe\x63\xb8\xd3\x17\x5d\xf4\x3f\x5f\xd8\x19\x0a\xbf\xe5\x39\x83\x5d\xdd\x79\x37\x50\x77\xdb\xe5\x1f\x87\xb8\xc4\x3b\x69\x65\x5d\x41\x79\x53\xad\xd8\x90\xf4\x41\x57\x59\x3e\xa1\xfe\x67\x3b\xeb\x2a\x9f\x49\xdc\xe9\xe5\xd4\xcd\xa4\xa1\xd0\x7f\x15\xe6\x34\x75\x54\xbf\x02\x00\x00\xff\xff\x2f\x27\xba\xbf\x8d\x04\x00\x00" func lockedtokensStakerGet_staker_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -4280,11 +4300,11 @@ func lockedtokensStakerGet_staker_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/get_staker_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0xbf, 0x4c, 0xa8, 0x6, 0x7d, 0xbb, 0x2b, 0x3, 0xaf, 0x56, 0xe3, 0x7e, 0xbb, 0xbc, 0x9c, 0x5a, 0x1a, 0xff, 0xe0, 0x27, 0xb6, 0x9a, 0xbe, 0xcc, 0x6d, 0x18, 0x3c, 0x9f, 0x81, 0xe8, 0x89}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x12, 0x2d, 0x71, 0xfd, 0xfb, 0x2c, 0xe0, 0x95, 0x39, 0x71, 0xb4, 0xb2, 0xbe, 0x29, 0xf5, 0x53, 0xef, 0xa9, 0xc4, 0x22, 0x24, 0xed, 0x2b, 0x64, 0x26, 0xca, 0xb9, 0xaa, 0x28, 0xf8, 0xf4, 0xf9}} return a, nil } -var _lockedtokensStakerRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\xcd\x8e\xda\x4c\x10\xbc\xfb\x29\xfa\xe3\xf0\xc9\x48\xbb\xde\x1c\xa2\x28\xb2\x20\x2b\xb2\x40\x82\x40\x80\x30\x9b\x9f\xe3\xac\xdd\x06\x0b\x33\x8d\xc6\xed\xc0\x0a\xf1\xee\xd1\x78\x6c\xec\x01\x36\xca\x25\x3e\xf8\xa7\xbb\xdc\x55\x53\x53\x93\x6c\x77\xa4\x18\x86\x29\xed\x97\xb4\x41\x09\xb1\xa2\x2d\xbc\x3b\x0c\x27\xb3\xef\xcb\xd9\x78\x30\xed\xf5\xfb\x8b\x41\x10\x38\x25\x70\x42\xe1\x06\xa3\x02\x9a\x55\xd8\xc9\xec\x69\x3c\xe8\xdf\x42\x07\x2c\x36\x89\x5c\xcd\x15\x1d\x5e\x2b\x74\xb0\xec\x8d\x47\xd3\x2f\xf3\xc5\xec\xc7\xcf\x0a\xee\xb0\x12\x32\x13\x21\x27\x24\xdd\x24\xf2\x21\x60\x95\xc8\xd5\x1d\x28\x4a\xd1\x87\xe7\x91\xe4\x8f\x77\x20\x91\xf7\xa4\xf4\xc0\x5e\x14\x29\xcc\xb2\x1a\x57\xb7\xc6\xf8\x5a\x97\x33\xc3\x6f\xd5\xc4\x96\x72\xc9\x3e\x3c\x0f\x93\xc3\x87\xf7\x6d\x38\x3a\x0e\x00\x40\x8a\x0c\x6b\x4a\x23\x54\x0b\x8c\x7d\xf8\xbf\xb9\x50\xaf\x78\x7c\x2d\xba\x35\xfa\x97\xc8\x53\x36\xe0\xb3\x7d\xde\x37\x5d\x34\x98\x9d\xc2\x9d\x50\xe8\x8a\x30\x34\x8c\xbd\x9c\xd7\x3d\xf3\xa1\x69\xa1\xbc\x32\x4c\x63\xef\x4c\x0d\x5d\x28\x7f\xf0\x5e\x48\x29\xda\x77\xde\x94\xf2\xc9\xd5\x96\xfa\xf0\x56\x3f\x60\x52\x62\x85\x73\xc1\xeb\xf6\x99\x4d\x5f\x8f\x8f\xb0\x13\x32\x09\xdd\xd6\x13\xe5\x69\x04\x92\x18\x0c\x19\x28\x8c\x81\x09\x1a\x53\x5a\x6d\xc7\x96\x5a\xad\xfb\x86\xd2\x0b\x1f\x2a\x81\x0f\x99\x51\xf2\x10\x57\xfd\xa2\xfd\xd7\xa2\xf4\x6f\xc0\x45\x3c\x0b\x72\xad\x12\x15\xca\x10\x5b\x66\xc6\xc9\x48\xc4\x03\x86\x39\x63\xc3\x5b\xbd\x4f\x92\x22\x1c\xc9\x98\xa0\x6b\xe5\xd1\x9b\x96\x75\xb7\x00\xf4\x7d\x48\xa2\x2a\x70\xfa\x7e\x33\x6f\x57\xa5\xab\xe8\x59\x9f\x76\x02\xeb\xf7\x86\xa5\x5a\x61\x5a\x6c\xe0\x67\x91\x0a\x19\x22\x74\x2f\x12\xe1\xad\x90\xcd\x16\x97\xe1\x29\x81\x6e\x63\x4a\x12\x97\xb9\x86\x4e\xf7\x62\xdc\xd1\xb1\x6c\xbe\x98\x1d\x2a\x14\x8c\xda\x0a\xed\x0d\x2a\xb7\x72\xcb\x3f\xfb\x56\x1f\x19\xf3\x6c\xd0\x9e\x00\xd3\x0c\x35\xbb\xeb\x96\xfc\xf7\x36\x7d\x5b\x0b\xb2\x62\xe3\xbd\x54\x9d\x3f\x2b\x8b\x70\x47\x59\xc2\x65\x84\x3a\xf7\xf6\x90\x7d\xc2\xeb\x48\x89\xbd\x6b\x6b\xbb\xa2\x6f\xff\xfb\xd5\x1f\x2d\x86\x32\xc3\x53\x62\x40\x49\xf9\x6a\x6d\x82\x9b\xe9\x53\xa5\x03\x80\xff\xb5\xea\xdc\x9f\xce\x6f\x65\x8c\x4f\xce\xef\x00\x00\x00\xff\xff\x93\x3a\x5c\xc0\x91\x05\x00\x00" +var _lockedtokensStakerRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x51\x4f\xdb\x30\x10\x7e\xcf\xaf\xb8\xe5\x01\x25\x52\x09\x2f\xd3\x34\x45\x74\x08\x36\xa1\xa1\x4d\x0c\x8d\xc1\x9e\xdd\xe4\x92\x5a\x75\xed\xc8\xb9\xac\x45\x55\xff\xfb\xe4\xd8\x49\xec\x16\x36\x5e\xe8\x03\x49\xee\x3e\x7f\x77\xdf\xf9\x3b\xf8\xba\x51\x9a\xe0\x5a\xa8\xcd\x2f\xb5\x42\x09\x95\x56\x6b\x88\xc7\xef\x38\x1a\x10\x9d\xac\xf9\x42\x60\x80\xf2\x63\x23\xf2\xbb\x2a\x56\x58\xf6\xb1\xd6\x01\xfd\xd0\x88\xbb\x27\xb6\xe2\xb2\xbe\xd3\x6a\xfb\xe4\x70\x7e\x28\x8e\x22\xd2\x4c\xb6\xac\x20\xae\x64\xc2\xcb\x1c\xee\x49\x73\x59\xcf\x40\x2b\x81\x39\x3c\xdc\x48\xfa\x38\x03\x89\xb4\x51\xda\x1c\xbb\x2c\x4b\x8d\x6d\x3b\xe1\xa6\xd4\x37\x7c\x9a\xc2\xad\xad\x12\xc4\xd8\x5a\x75\x92\x72\x78\xb8\xe6\xdb\x0f\xef\x53\xd8\x45\x11\x00\x80\x40\x82\xa5\x12\x25\xea\x9f\x58\xe5\xc0\x3a\x5a\x26\xbe\x98\xac\x7f\xfc\x68\x50\x33\xd3\x65\x3b\x0b\xe7\x94\xfd\xe6\xb4\x2c\x35\xdb\xa4\x70\x72\x7c\xec\x6b\x4f\x3c\x15\xfa\xc3\x3a\x41\x53\x9d\x17\x99\xc6\xcb\xc9\x1e\xcd\x09\x4b\xd0\x68\x6c\x98\xc6\x84\x15\x85\x55\xd2\x73\x5c\x29\xad\xd5\xe6\x91\x89\x0e\x53\x38\xb9\xb4\x39\xa3\x0e\xdc\xaf\x45\x51\x65\xa3\x42\x98\x83\x3b\x9f\xb5\xa4\x34\xab\x31\x5b\xf4\x0c\xe7\x6f\xa1\xfc\x53\x62\x6e\x3d\x87\x97\xf2\xf7\xb6\x85\x3b\x46\xcb\x74\x6c\xd8\xfc\x2e\x2e\xa0\x61\x92\x17\x49\xfc\x59\x75\xa2\x04\xa9\x08\x6c\x9f\xa0\xb1\x02\x52\xe0\xb1\xc4\x69\x14\xaa\x1d\xc6\xfc\x1f\xb1\xaf\x1d\xff\xa0\xe2\xcc\x91\x9c\x55\x43\xbe\x4f\xbf\xba\x73\x73\x0c\xa8\xdf\xae\xbe\x43\x23\x05\x35\xca\x02\x63\xcb\xb1\xb7\x3a\x70\x8b\x45\x47\xe8\xdd\xa1\xf1\x8e\x54\x25\xde\xc8\x4a\xc1\x3c\xd8\xab\xec\xd6\xc5\x13\xaf\x8d\x1e\xfb\x25\x07\x5e\xce\xbc\xa8\x5d\x2a\xf3\xd7\x8f\x3e\xb3\x5d\x47\xa1\xe7\xf1\xfd\x7a\x05\x9f\x3e\xce\xdf\xc1\xe9\x7d\x04\x78\x77\x66\xd4\x89\xde\x21\x57\x4c\x30\x59\x20\xcc\x0f\x5c\x9b\xd5\x48\xd6\x43\xce\xe0\x0e\x98\x78\x2c\xbc\x72\x2b\x0e\xe7\xf3\x03\xba\x5d\x14\x5c\xd1\x01\x77\xa1\x91\x11\x9a\x31\x9a\xb9\xa2\x4e\x86\x49\xe7\xe3\xcc\xa7\xff\x1e\xf6\xe9\x95\xdd\x03\x8a\x16\x4d\xf5\x24\x71\xf5\x4f\xc3\xf2\xa9\x69\x28\xf0\x65\xb6\x18\x32\xff\xee\xac\xc4\x46\xb5\x9c\x9c\xfd\xce\x4f\x43\x92\x8d\x33\x6c\x12\xf6\x76\x54\x3e\x7d\x7b\xf5\xbb\xa0\x82\xf3\xff\xad\x22\x40\xa9\xba\x7a\x69\x4d\xdf\x9a\xb5\x35\x4e\xc0\x77\xf1\xb4\x33\xfb\xf1\xcd\xad\xc0\x3e\xfa\x1b\x00\x00\xff\xff\x8e\x3f\xa9\xa3\xb2\x06\x00\x00" func lockedtokensStakerRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -4300,11 +4320,11 @@ func lockedtokensStakerRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x35, 0x10, 0x94, 0x2e, 0xaa, 0x18, 0xe0, 0x8d, 0x21, 0x58, 0x32, 0x92, 0xf5, 0xdf, 0x2f, 0xa3, 0x89, 0xdd, 0x37, 0x8e, 0x2a, 0xd2, 0x49, 0x8f, 0x30, 0x28, 0x1c, 0xcf, 0x93, 0x26, 0xe1, 0x4d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdb, 0x99, 0x9d, 0x62, 0xc7, 0xa4, 0x1f, 0xa9, 0x34, 0x1a, 0x76, 0xe, 0xd5, 0x14, 0x51, 0x9d, 0x15, 0xbc, 0xd1, 0x4, 0x50, 0x20, 0xe8, 0x57, 0xf2, 0xc4, 0xd8, 0xe, 0x23, 0x49, 0x96, 0xfe}} return a, nil } -var _lockedtokensStakerRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4d\x6b\xf2\x40\x10\xc7\xef\xfb\x29\x06\x0f\x0f\xf1\x12\x9e\x43\xe9\x41\x6a\x25\xa8\x7d\x41\x51\x71\x15\xda\xe3\x76\x9d\x68\x48\xdc\x49\x67\x27\x34\xa5\xf8\xdd\x4b\xdc\xf8\x42\xc1\xbd\x0c\xcb\xfc\xe7\x3f\xf3\x9b\xc9\xf6\x25\xb1\xc0\x94\x6c\x8e\x9b\x15\xe5\xe8\x3c\xa4\x4c\x7b\xf8\x5f\x4f\xe7\xc3\xc9\x78\xb4\x9a\x4f\xc6\xb3\x64\x34\x5a\x8e\xb5\x56\xad\x5a\x8b\xc9\x33\xb7\x5d\x30\xd5\xdf\x27\xb5\x5e\x25\x93\xd7\xd9\xf3\x62\x39\x7f\x7b\x3f\xc9\x95\xb0\x71\xde\x58\xc9\xc8\x45\x66\x4f\x95\x93\x1e\xac\x9f\xb2\xfa\xfe\xae\x0b\x3f\x4a\x01\x00\x14\x28\xb0\xa3\x62\x83\xbc\xc4\xb4\x07\xff\xae\x27\x89\x8f\xe1\xe5\x98\x0d\xea\x92\xb1\x34\x8c\x91\xb1\x36\xb8\x25\x95\xec\x92\xf0\x69\x2c\xa1\x7d\x1e\x8b\x34\x3e\xdb\x42\x1f\xda\x82\xf8\x83\x98\xe9\xeb\xe1\x66\x9b\xc7\xa8\xe1\xe9\xc1\xad\xbc\x16\x62\xb3\xc5\x85\x91\x5d\xf7\xdc\xad\x79\x83\x01\x94\xc6\x65\x36\xea\x0c\xa9\x2a\x36\xe0\x48\x20\x34\x03\xc6\x14\x19\x9d\x45\x10\x82\x2b\xaf\x4e\x70\x38\x04\x34\xac\xd1\x56\x82\x57\x10\xcd\x6a\xbc\x98\x1c\x39\x6c\xba\xff\x07\xab\x85\xd1\x47\x49\xd4\x55\x17\xfa\x4b\x51\xcc\xf8\x59\xa1\x97\xb5\xf3\xe1\x68\xe7\x3b\x84\x78\x1a\xe1\xa0\x7e\x03\x00\x00\xff\xff\x5f\x78\x28\xec\x0a\x02\x00\x00" +var _lockedtokensStakerRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x43\x0e\x25\x01\xc9\x49\x3c\x14\x6b\x51\xa1\x78\x10\x2c\xd6\xea\x79\x9a\x4c\x9a\x90\x74\x27\xce\xce\xd2\x8a\xf4\xbf\x4b\xb2\x31\x4d\x15\x8f\xee\x65\x61\xf6\xcd\x9b\x8f\xb7\x53\xee\x1a\x16\x85\x47\x4e\x2b\xca\x5e\xb8\x22\x63\x21\x17\xde\x41\x38\x2e\x85\x41\xaf\x5b\x29\x56\xa5\xd9\x2e\x85\x0f\x1f\xbd\x6e\x5c\x1a\x74\x0b\x67\xb6\xe5\xa6\xa6\xae\xbd\x17\x9e\xd5\xc2\x20\x50\x41\x63\x31\xd5\x92\x4d\x84\x3b\x76\x46\xa7\xb0\x5e\x94\x87\xab\xcb\x18\x3e\x83\x00\x00\xa0\x26\x85\x82\xeb\x8c\xe4\x99\xf2\x29\xa0\xd3\x22\x1a\x73\x25\xdd\xf5\xd4\x90\x60\x6b\x63\x2f\xce\x07\x27\x6f\xa5\x16\x99\xe0\x3e\x86\xc9\xef\xb6\x87\xce\xd8\x0f\x6a\x84\x1a\x14\x8a\x30\x4d\x3d\x48\x37\xea\x8e\x45\x78\xff\x8a\xb5\xa3\x18\x26\xb7\xfe\xad\x85\x83\xfe\x58\xaa\xf3\x64\x00\x84\x19\xf4\xfd\x89\x55\x16\xdc\x52\xb2\xe9\x1c\xae\xff\x03\xfc\x26\x6a\x63\x9d\xc2\x5f\xef\x2b\x8f\xb0\x44\x2d\xe2\x01\xb8\x3d\xf3\x39\x34\x68\xca\x34\x0a\xef\xd9\xd5\x19\x18\x56\xf0\x9c\x20\x94\x93\x90\x49\x09\x94\x61\xe4\x15\x7a\x87\xa3\x0f\x8b\x0e\x94\x3a\xa5\x51\x0e\xed\x3f\x59\xc5\x8a\xc4\x6f\xc6\xec\x47\x32\x7d\x0e\xab\x4e\x12\xc5\xc1\x29\xc0\x53\x53\x22\xf4\xee\xc8\xea\xda\x58\xbf\x51\xc3\x52\xf8\xfb\x1b\xe1\x18\x7c\x05\x00\x00\xff\xff\x8c\x90\x77\x98\xb4\x02\x00\x00" func lockedtokensStakerRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -4320,11 +4340,11 @@ func lockedtokensStakerRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x58, 0x89, 0x50, 0xca, 0x45, 0x71, 0x4e, 0x85, 0xb7, 0xbe, 0xb5, 0xb7, 0x66, 0xdb, 0x88, 0x48, 0xdf, 0xfa, 0x85, 0x70, 0x19, 0xa4, 0x67, 0x61, 0xc2, 0x33, 0xc, 0xc5, 0x1, 0xea, 0xd4, 0xb9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x43, 0x96, 0xc0, 0xc3, 0xf5, 0xcd, 0xe1, 0xb9, 0xfa, 0x2f, 0x25, 0x5a, 0x6c, 0x3b, 0x3d, 0xc4, 0x1a, 0xa9, 0x3, 0x7c, 0x91, 0xfe, 0x22, 0x28, 0x3c, 0xb9, 0x98, 0x62, 0xb4, 0xd0, 0xb2, 0xbf}} return a, nil } -var _lockedtokensStakerStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\x4d\x6f\xda\x40\x10\xbd\xfb\x57\x4c\x39\x54\xe6\x10\xa7\x87\xaa\x87\x08\x1a\x91\x00\x69\x04\x32\x08\x93\x7e\x1c\x17\x7b\xfc\x21\x96\x5d\x6b\x3d\x2e\x54\x88\xff\x5e\xed\xae\x6d\x6c\x27\x91\xaa\xfa\x62\xf0\xbc\x79\xef\xcd\xcc\xcb\x0e\xb9\x54\x04\x73\x2e\x8f\x5b\xb9\x47\x01\xb1\x92\x07\xf8\x74\x9a\x2f\x57\x3f\xb6\xab\xc5\xcc\x9f\x4c\xa7\x9b\x59\x10\x38\x35\xb0\x14\x49\xb6\xe3\xd8\x05\xbf\xf8\x4f\xcf\x0f\xcb\x59\xa7\xa1\xee\x58\xca\x70\x8f\x91\xc1\x17\x75\xc3\x72\xf5\xb8\x98\x4d\xdf\xe2\x0f\x88\xed\x33\x91\xac\x95\x3c\xfd\xa9\xd1\xc1\x76\xb2\x78\xf6\x9f\xd6\x9b\xd5\xcf\x5f\x0d\x3b\x29\x26\x0a\x16\x52\x26\x85\xcb\x0e\xb2\x14\x74\x07\x2f\xf3\xec\xf4\xe5\xf3\x10\xce\x8e\x03\x00\xc0\x91\x20\x95\x3c\x42\xb5\xc1\xf8\x0e\x3e\xb6\x9d\x78\xe6\xf5\xcd\x54\xaf\xe8\xdf\xac\xe4\x64\xc1\xcd\x46\xbc\xef\xfa\xa3\xc5\xe4\x0a\x73\xa6\xd0\x65\x61\x68\x15\x27\x25\xa5\x13\xfb\x47\xcb\x42\xf5\x14\xc8\x63\xaf\x91\x86\x31\x54\x0d\xde\x4e\x2a\x25\x8f\xa3\x77\xad\x7c\x75\xf5\xcc\x77\xf0\x5e\x3d\x20\xa9\x58\x82\x6b\x46\xe9\xb0\x51\xd3\xcf\xfd\x3d\xe4\x4c\x64\xa1\x3b\x78\x94\x25\x8f\x40\x48\x02\x2b\x06\x0a\x63\x54\x28\x42\x04\x92\xd0\xe2\x1a\x0c\x9d\xae\xe1\x7a\xfa\x37\xfc\xf6\xb6\x51\xdb\xbc\x2d\xac\x9f\xdb\xb8\xae\x9b\xf2\x3f\x5b\xd3\x6d\x40\x26\x4a\x46\xfc\xea\x75\x60\x39\x2e\xd6\x22\x9e\x30\x2c\x09\x5b\x1b\xd6\xd7\x2a\x88\xed\x51\xd9\xa8\x8c\x7b\x3b\xaf\x9c\x07\x06\xe2\xb6\x26\xd5\x8d\xdc\x6c\xf7\x81\x71\xa6\xb7\xf2\xaa\x35\x41\xb2\xfb\xaf\x2e\x5b\x01\xdb\x2c\x59\x0c\x36\x74\x30\x1a\xf7\xe8\xce\x4e\x67\xfa\x96\x49\xcf\xfc\xf6\xd1\x6e\xaa\x68\x62\x6b\xdf\x2d\xf6\x0b\x20\x2f\x50\x8b\xb8\x15\x08\x6e\xba\x2a\x43\xad\xdb\x39\x9a\xb7\xab\x2b\x7d\x03\xdd\xe1\x22\xcc\x65\x91\x51\x75\xc0\xd1\x4d\x97\xe4\x98\x51\x1a\x29\x76\xec\x79\x7b\x25\x3f\xfc\xef\x21\xdb\x6d\xfd\x81\xcf\x9d\x6a\x15\x1a\x5f\x12\xa0\x90\x65\x92\xda\xa4\x14\x3a\xc6\x46\xe4\xc3\xe0\x4a\x77\xa9\xe2\x72\x71\xfe\x06\x00\x00\xff\xff\x31\x42\x9b\x1e\xd2\x04\x00\x00" +var _lockedtokensStakerStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x8b\xdb\x30\x10\xbd\xfb\x57\x4c\x7d\x58\x6c\xe8\x7a\x2f\xa5\x87\x90\x74\xe9\x16\x96\x1e\xca\x76\x69\xda\xed\x59\xb1\xc7\x1f\x44\x91\x8c\x34\x6e\x52\x42\xfe\x7b\xd1\x87\x1d\xc9\x61\x69\x28\xd4\x17\x25\x9a\x37\x6f\xe6\xcd\x1b\x75\xbb\x5e\x2a\x82\x47\x2e\xf7\xdf\xe5\x16\x05\xd4\x4a\xee\x20\x9d\xfe\xa7\xc9\x88\x18\x44\xd3\x6d\x38\x46\xa8\xf0\x6e\x42\x7e\x91\xe5\x16\x2b\x7b\xa7\x3d\x30\xbc\x9a\x70\x6b\x62\xdb\x4e\x34\xcf\x4a\x1e\x7e\x7b\x5c\x78\x95\x26\x09\x29\x26\x34\x2b\xa9\x93\x22\x63\x3b\x39\x08\x5a\xc0\x8f\xc7\xee\xf0\xfe\x5d\x0e\xc7\x24\x01\x00\xe0\x48\xd0\x4a\x5e\xa1\xfa\x86\xf5\x02\xd8\x40\x6d\x16\x56\x2b\xec\xf1\xb5\x47\xc5\x0c\x8d\x7e\x1b\x0b\x29\x7e\x76\xd4\x56\x8a\xed\x73\xb8\xb9\x4c\xfb\x6c\x89\xcf\x85\x7e\xb1\x81\xd3\xb9\xce\xab\x4c\xd3\xf4\x8a\x17\x93\xe1\x08\x7a\x85\x3d\x53\x98\xb1\xb2\x74\x4a\x2c\xc7\x83\x54\x4a\xee\x5f\x18\x1f\x30\x87\x9b\x8f\x2e\x66\xd4\x81\xff\x34\xf2\xba\x98\x14\xc2\x0a\x7c\x7e\xa1\x49\x2a\xd6\x60\xb1\xb1\x0c\xcb\xff\xa1\xfc\x43\x66\x6c\x59\xc0\x6b\xf1\xb5\x6b\xe1\x99\x51\x9b\x4f\x0d\x9b\xef\xfe\x1e\x7a\x26\xba\x32\x4b\x3f\xc9\x81\x57\x20\x24\x81\xeb\x13\x14\xd6\xa8\x50\x94\x08\x24\x21\xe0\x4a\xf3\x24\xd6\x3c\x0e\xfb\x2f\x92\xaf\x35\x61\xd4\x72\xe7\x49\xee\xea\x31\x6e\xc3\x57\xf7\x6f\xd2\x80\xec\x23\xb0\x1d\x9e\x05\xa5\x8e\xe3\xe4\x74\xe0\x01\xcb\x81\x30\x70\xd2\x6c\x90\x26\xb6\x45\xe5\x56\x7e\x35\xf3\xd6\xcb\x5a\x5b\x48\x16\x8c\xc3\x24\x72\x6b\xc1\x03\xe3\xcc\x8c\xee\x22\xb5\x41\x72\x26\xf9\x0d\xf2\xc0\x90\xa5\xab\xc1\xbd\x21\x58\xae\x66\x74\xc7\x24\x52\x1f\x34\x59\xd8\xdf\x4f\xe8\x26\xa5\xa7\x57\xe8\xce\x80\xfd\x04\xc8\x35\x9a\x22\x99\x07\xc1\x6d\x5c\x25\x37\x75\x23\x67\x8b\xcd\x18\x99\x37\x10\x8b\xab\xb0\x97\xba\x23\x6f\xe0\xf2\x36\x26\xd9\x7b\xcb\x67\xbd\x5d\x94\xcf\xff\x59\x64\x98\x36\x17\x7c\x8c\xa2\x7e\x69\x9e\x24\x01\x0a\x39\x34\xad\xdb\x14\x6d\x76\xdd\x16\x79\x93\x9e\xe9\x4e\x7e\x5d\x4e\xc9\x9f\x00\x00\x00\xff\xff\x73\x2a\x82\xe7\x85\x05\x00\x00" func lockedtokensStakerStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4340,11 +4360,11 @@ func lockedtokensStakerStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf9, 0x76, 0x5e, 0x6f, 0x41, 0xe5, 0xe9, 0x35, 0x96, 0x1e, 0x65, 0x98, 0x9a, 0x42, 0xc8, 0xf6, 0xca, 0x37, 0x27, 0x38, 0x8d, 0x70, 0xfb, 0x14, 0xf8, 0xe, 0x2b, 0x5c, 0xca, 0xd4, 0x80, 0x73}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0x94, 0xa9, 0xe1, 0x94, 0x21, 0x96, 0x84, 0xaa, 0x9a, 0xa0, 0xb6, 0xdb, 0x1c, 0x29, 0x14, 0x18, 0x54, 0xdd, 0x63, 0xda, 0x32, 0x1c, 0xa8, 0xae, 0xbc, 0x10, 0x74, 0xb7, 0x33, 0xdf, 0x90}} return a, nil } -var _lockedtokensStakerStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6b\xc2\x50\x0c\xc7\xef\xfd\x2b\x82\x87\x51\x2f\x65\x87\xb1\x83\xcc\x49\x51\xf7\x03\x45\xa5\xcf\xc1\x76\x7c\x7b\x4d\xb5\xb4\xbe\x94\x34\xc5\x8e\xe1\xff\x3e\xda\xd7\xaa\x0c\xcc\x25\x2d\xf9\xe6\x9b\x7c\xf2\xd2\x43\x41\x2c\xb0\x24\x93\x61\xbc\xa5\x0c\x6d\x09\x09\xd3\x01\xee\xeb\xe5\x7a\xba\x98\xcf\xb6\xeb\xc5\x7c\x15\xce\x66\xd1\x5c\x29\xaf\x53\x2b\xd1\x59\x6a\x77\x1b\xa6\xfa\xa7\x57\xab\x6d\xb8\x78\x5f\xbd\x6e\xa2\xf5\xe7\x57\x2f\xf7\x84\xb5\x2d\xb5\x91\x94\xac\xaf\x0f\x54\x59\x19\xc1\xc7\x4b\x5a\x3f\x3e\x0c\xe1\xd7\xf3\x00\x00\x72\x14\xd8\x53\x1e\x23\x47\x98\x8c\xe0\xee\x7a\x93\xa0\x4d\x6f\x6d\xd5\xa9\x0b\xc6\x42\x33\xfa\xda\x18\xe7\x16\x56\xb2\x0f\xdd\x4f\x63\x09\x5d\x94\x98\x27\xc1\xd9\x16\xc6\xd0\x35\x04\xdf\xc4\x4c\xc7\xa7\x9b\x63\x9e\xfd\x86\x67\x04\xb7\xea\x4a\x88\xf5\x0e\x37\x5a\xf6\xc3\xf3\xb4\x26\x26\x13\x28\xb4\x4d\x8d\x3f\x98\x52\x95\xc7\x60\x49\xc0\x0d\x03\xc6\x04\x19\xad\x41\x10\x82\x2b\xaf\x81\x73\x38\x39\x34\xac\xd1\x54\x82\x57\x10\xcd\x69\x4a\xd1\x19\xb2\xbb\xf4\xf8\x1f\x56\x07\xa3\x5a\x89\x3f\xf4\x2e\xf4\x97\xa6\xa0\xfd\x8e\xf0\xa8\x39\xee\x79\xce\x4f\xe1\x72\xbf\xc5\xc9\xfb\x0b\x00\x00\xff\xff\x4c\x01\x8a\x3b\x0d\x02\x00\x00" +var _lockedtokensStakerStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x6b\x83\x40\x10\xc5\xef\x7e\x8a\xc1\x43\x50\x28\x9e\x4a\x0f\xa1\x69\x68\x0b\xa1\x87\x42\x43\xd2\x3f\xe7\x89\x8e\x71\xd1\xec\xc8\x38\x92\x94\x92\xef\x5e\xdc\x35\xc6\xb4\xf4\xd8\xbd\xac\xcc\xbe\x79\xf3\xf3\xed\x9a\x5d\xcd\xa2\xf0\xcc\x69\x49\xd9\x2b\x97\x64\x1b\xc8\x85\x77\x10\x8e\x4b\x61\xd0\xeb\xd6\x8a\xa5\xb1\xdb\xa5\xf0\xe1\xb3\xd7\x8d\x4b\x83\x6e\xd1\xda\xad\xd9\x54\xe4\xda\x7b\xe1\x45\x2d\x0c\x02\x15\xb4\x0d\xa6\x6a\xd8\x46\xb8\xe3\xd6\xea\x14\xde\x16\xe6\x70\x73\x1d\xc3\x57\x10\x00\x00\x54\xa4\x50\x70\x95\x91\xac\x28\x9f\x02\xb6\x5a\x44\x63\xae\xc4\x6d\x2f\x35\x09\x76\x36\xcd\xd5\xe5\xe0\xe4\xc3\x68\x91\x09\xee\x63\x98\xfc\x6e\x7b\x72\xc6\x7e\x50\x2d\x54\xa3\x50\x84\x69\xea\x41\xdc\xa8\x07\x16\xe1\xfd\x3b\x56\x2d\xc5\x30\xb9\xf7\x67\x1d\x1c\xf4\xab\xa1\x2a\x4f\x06\x40\x98\x41\xdf\x9f\x34\xca\x82\x5b\x4a\x36\xce\xe1\xf6\x3f\xc0\xef\xa2\x2e\xd6\x29\xfc\x75\xbe\xf6\x08\x4b\xd4\x22\x1e\x80\xbb\x35\x9f\x43\x8d\xd6\xa4\x51\xf8\xc8\x6d\x95\x81\x65\x05\xcf\x09\x42\x39\x09\xd9\x94\x40\x19\x46\x5e\xa1\x77\x38\xfa\xb0\xe8\x40\x69\xab\x34\xca\xa1\xbb\xa7\x46\xb1\x24\xf1\x2f\x63\xf6\x23\x99\x3e\x87\xb5\x93\x44\x71\x70\x0e\xf0\xdc\x94\xb8\xef\x15\xed\x51\xb2\xd3\xff\x0c\xef\xc2\xef\x27\x8a\x63\xf0\x1d\x00\x00\xff\xff\xd0\xbf\x36\xd9\xb7\x02\x00\x00" func lockedtokensStakerStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4360,11 +4380,11 @@ func lockedtokensStakerStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2d, 0x5f, 0x47, 0xa5, 0x4b, 0xa0, 0x20, 0x8f, 0xd4, 0xc8, 0xff, 0x36, 0x18, 0xd, 0x76, 0xea, 0x11, 0x69, 0x2a, 0x66, 0x7f, 0xb9, 0xbb, 0xec, 0x61, 0xba, 0x59, 0xc0, 0x50, 0x23, 0xa6, 0x12}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0xa0, 0x71, 0x36, 0x7, 0x30, 0xc6, 0x7b, 0x66, 0x12, 0xac, 0xed, 0xc2, 0xbc, 0x68, 0x9a, 0xe6, 0xbd, 0xa3, 0x1, 0xa2, 0x22, 0x15, 0xe4, 0xda, 0xdd, 0xae, 0xe4, 0x5c, 0xa2, 0x96, 0x31}} return a, nil } -var _lockedtokensStakerStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6a\xc2\x40\x10\xc6\xef\xfb\x14\x83\x87\x12\x2f\xa1\x87\xd2\x83\xd4\x4a\x50\xfb\x07\x45\xc5\x55\x68\x8f\xdb\x75\xa2\x21\x71\x27\x4c\x26\x34\xa5\xf8\xee\x25\xd9\xa8\xa1\xe0\x5c\x26\x61\xbe\xf9\x66\x7e\xb3\xc9\x31\x27\x16\x98\x93\x4d\x71\xb7\xa1\x14\x5d\x01\x31\xd3\x11\xee\xab\xf9\x72\x3c\x9b\x4e\x36\xcb\xd9\x74\x11\x4d\x26\xeb\xa9\xd6\xaa\x55\x6b\x31\x69\xe2\xf6\x2b\xa6\xea\xe7\xac\xd6\x9b\x68\xf6\xbe\x78\x5d\xad\x97\x1f\x9f\x67\xb9\x12\x36\xae\x30\x56\x12\x72\x81\x39\x52\xe9\x64\x00\xdb\x97\xa4\x7a\x7c\xe8\xc3\xaf\x52\x00\x00\x19\x0a\x1c\x28\xdb\x21\xaf\x31\x1e\xc0\x5d\x77\x93\xb0\x49\x6f\x4d\xd5\xab\x73\xc6\xdc\x30\x06\xc6\x5a\xef\x16\x95\x72\x88\xfc\x4f\x6d\x09\x6d\x14\x98\xc5\xe1\xc5\x16\x86\xd0\x36\x84\x5f\xc4\x4c\xdf\x4f\x37\xc7\x3c\x07\x35\xcf\x00\x6e\xd5\xb5\x10\x9b\x3d\xae\x8c\x1c\xfa\x97\x69\x75\x8c\x46\x90\x1b\x97\xd8\xa0\x37\xa6\x32\xdb\x81\x23\x01\x3f\x0c\x18\x63\x64\x74\x16\x41\x08\x3a\x5e\x3d\xef\x70\xf2\x68\x58\xa1\x2d\x05\x3b\x10\xf5\x69\x0a\x31\x29\xb2\xbf\xf4\xf0\x1f\x56\x0b\xa3\x1b\x49\xd0\x57\x57\xfa\x6b\x53\xd8\x7c\x6f\x5d\x93\x5a\x9e\xcb\x53\xf8\x7c\xde\xe2\xa4\xfe\x02\x00\x00\xff\xff\x63\x35\x3a\x15\x0d\x02\x00\x00" +var _lockedtokensStakerStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6b\xe3\x40\x0c\x85\xef\xfe\x15\xc2\x87\x60\xc3\xe2\xd3\xb2\x87\xb0\xd9\xb0\x2d\x84\x1e\x0a\x0d\x4d\xd3\x9e\x15\x5b\x8e\x07\x3b\x23\x23\xcb\x24\xa5\xe4\xbf\x17\xcf\x4c\x1d\xa7\xa5\xc7\xce\x45\x41\xf3\xf4\xf4\xe5\x79\xcc\xa1\x65\x51\xb8\xe7\xbc\xa6\xe2\x89\x6b\xb2\x1d\x94\xc2\x07\x88\xa7\xad\x38\x0a\xba\x8d\x62\x6d\xec\x7e\x2d\x7c\x7a\x0d\xba\x69\x6b\xd4\xad\x7a\xbb\x37\xbb\x86\xdc\x78\x10\x5e\xf5\xe2\x28\x52\x41\xdb\x61\xae\x86\x6d\x82\x07\xee\xad\xce\x61\xbb\x32\xa7\x3f\xbf\x53\x78\x8b\x22\x00\x80\x86\x14\x2a\x6e\x0a\x92\x47\x2a\xe7\x80\xbd\x56\xc9\x94\x2b\x73\xe5\xa1\x25\xc1\xc1\xa6\xfb\x75\xbd\x38\x7b\x31\x5a\x15\x82\xc7\x14\x66\x5f\xc7\xee\x9c\xb1\x5f\xd4\x0a\xb5\x28\x94\x60\x9e\x7b\x10\xb7\xea\x86\x45\xf8\xf8\x8c\x4d\x4f\x29\xcc\xfe\xfb\xbb\x01\x0e\xc2\xe9\xa8\x29\xb3\x11\x10\x16\x10\xe6\xb3\x4e\x59\x70\x4f\xd9\xce\x39\xfc\xfd\x09\xf0\x7f\xc9\x10\xeb\x1c\xbe\xbb\xdf\x78\x84\x35\x6a\x95\x8e\xc0\xc3\x59\x2e\xa1\x45\x6b\xf2\x24\xbe\xe5\xbe\x29\xc0\xb2\x82\xe7\x04\xa1\x92\x84\x6c\x4e\xa0\x0c\x13\xaf\xd8\x3b\x9c\x7d\x58\x74\xa2\xbc\x57\x9a\xe4\x30\x7c\xa7\x4e\xb1\x26\xf1\x2f\x63\xf1\x29\x99\x90\xc3\xc6\x49\x92\x34\xba\x04\x78\x19\xca\xdc\xef\xad\x75\x25\xfc\x9f\xf1\x5d\xf8\xfa\x41\x71\x8e\xde\x03\x00\x00\xff\xff\xff\x8b\x86\xf7\xb7\x02\x00\x00" func lockedtokensStakerStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4380,11 +4400,11 @@ func lockedtokensStakerStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0x1d, 0x1, 0x11, 0xf9, 0x79, 0xef, 0xb3, 0xce, 0x49, 0x93, 0x62, 0xfc, 0x29, 0x5c, 0xc2, 0x92, 0xc4, 0xa4, 0xc9, 0x40, 0x13, 0x75, 0x6, 0x2a, 0xf, 0x2c, 0x4e, 0x71, 0xae, 0x7e, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x12, 0xf1, 0x86, 0x58, 0x5d, 0x91, 0x7f, 0x1a, 0x15, 0x92, 0xc5, 0xf3, 0xa7, 0xa6, 0xd3, 0x7a, 0x72, 0xd0, 0x90, 0x7c, 0xc2, 0x70, 0x26, 0x1f, 0xbc, 0xcf, 0x67, 0xa, 0x38, 0x17, 0x82, 0xc7}} return a, nil } -var _lockedtokensStakerUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x41\x6b\xfa\x40\x10\xc5\xef\xfb\x29\x06\x0f\x7f\xd6\x4b\xf8\x9f\xa5\x56\x82\x4a\x5b\x14\x15\xd7\x43\x7b\xdc\xae\x13\x0d\x59\x77\xc2\x64\x42\x2d\xc5\xef\x5e\x92\x8d\x1a\x0a\xce\x65\x18\xe6\xcd\x7b\xfc\x26\x3f\x95\xc4\x02\x4b\x72\x05\xee\x77\x54\x60\xa8\x20\x63\x3a\xc1\xff\xf3\x72\x3d\x5d\xcc\x67\xbb\xf5\x62\xbe\x4a\x67\xb3\xed\xdc\x18\xd5\xa9\x8d\xd8\x22\x0f\x87\x0d\xd3\xf9\xfb\xaa\x36\xbb\x74\xf1\xb6\x7a\xd9\x6c\xd7\xef\x1f\x57\xb9\x12\xb6\xa1\xb2\x4e\x72\x0a\x7a\x08\x3f\x4a\x01\x00\x78\x14\x38\x92\xdf\x23\x6f\x31\x1b\xc1\xbf\x7e\x76\xd2\xb6\xd7\x76\x1b\xd5\x25\x63\x69\x19\xb5\x75\x8e\xea\x20\x23\x48\x6b\x39\xa6\x71\x68\x2c\xa1\xab\x0a\x7d\x96\xdc\x6c\x61\x0c\xdd\x41\xf2\x49\xcc\xf4\xf5\xf4\x30\xe6\x59\x37\x04\x23\x78\xb4\x37\x42\x6c\x0f\xb8\xb1\x72\x1c\xde\xd2\x9a\x9a\x4c\xa0\xb4\x21\x77\x7a\x30\xa5\xda\xef\x21\x90\x40\x0c\x03\xc6\x0c\x19\x83\x43\x10\x82\x9e\xd7\x20\x3a\x5c\x22\x1a\x9e\xd1\xd5\x82\x3d\x88\xe6\x35\x95\xd8\x02\x39\xfe\x76\xfc\x07\xab\x83\x31\xad\x44\x0f\xd5\x9d\xfe\x7e\x94\xd4\xa1\x9d\x52\xef\xf5\x35\xee\xa2\x7e\x03\x00\x00\xff\xff\x74\xb5\x4c\x21\xe8\x01\x00\x00" +var _lockedtokensStakerUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x51\x4d\x4b\xf3\x40\x10\xbe\xef\xaf\x18\x72\x28\x1b\x78\xc9\x0f\x28\x6f\x2d\x55\x10\x0f\x82\xc5\x8a\x9e\xa7\x9b\x49\x13\xb2\xdd\x09\x93\x59\x5a\x91\xfe\x77\xc9\x87\x6d\xaa\x78\x74\x2e\x21\x33\xcf\x17\xcf\x56\xfb\x86\x45\xe1\x91\x5d\x4d\xf9\x0b\xd7\x14\x5a\x28\x84\xf7\x90\x4c\x57\x89\x19\x71\xf7\x31\xec\xaa\xad\xa7\x7e\x3d\x02\xaf\x76\x89\x31\x2a\x18\x5a\x74\x5a\x71\xb0\x29\x7c\x18\x03\x00\xe0\x49\xa1\x64\x9f\x93\x3c\x53\x31\x07\x8c\x5a\xda\xa9\x43\xd6\x7f\x9e\x1a\x12\xec\x88\xed\xbf\x6b\xab\xec\xad\xd2\x32\x17\x3c\xa4\x30\xfb\x49\x7b\xe8\x85\x07\xa3\x46\xa8\x41\x21\x8b\xce\x71\x0c\x3a\x5a\xdd\xb2\x08\x1f\x5e\xd1\x47\x4a\x61\xb6\x1a\x6e\x5d\x38\x18\xa7\x25\x5f\x64\xe7\x80\xb0\x80\x91\x9f\xb5\xca\x82\x3b\xca\xb6\xbd\xc2\xff\xbf\x08\x7e\x63\xbb\x22\xe7\xf0\xdb\x7d\x33\x44\x58\xa3\x96\xe9\x39\x70\x37\xcb\x25\x34\x18\x2a\x67\x93\x3b\x8e\x3e\x87\xc0\x0a\x43\x4e\x10\x2a\x48\x28\x38\x02\x65\x98\x68\x25\x83\xc2\x69\x28\x8b\x8e\xe4\xa2\xd2\xa4\x87\xee\x9d\x5a\xc5\x9a\x64\x2d\x7c\x7c\x87\xc5\xb7\x66\xc6\x1e\x36\x3d\xc4\xa6\xe6\x52\xe0\x85\x94\xc5\xd0\xff\xad\xbc\xb7\x5f\x76\x27\xf3\x19\x00\x00\xff\xff\x30\xca\xb7\x9c\x6a\x02\x00\x00" func lockedtokensStakerUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -4400,11 +4420,11 @@ func lockedtokensStakerUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0xd3, 0x2e, 0xa, 0x8e, 0xd8, 0xe4, 0x82, 0xc3, 0xb4, 0xc9, 0x21, 0x28, 0x8, 0x53, 0xa5, 0x6d, 0xb0, 0xa8, 0x9, 0x45, 0xd8, 0x11, 0xf1, 0x8a, 0x70, 0x2d, 0x4f, 0x79, 0x43, 0x3f, 0x86}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdc, 0xc1, 0xaf, 0x7a, 0x10, 0xfb, 0xfd, 0x3b, 0x33, 0xc6, 0xc6, 0xce, 0xa3, 0x80, 0xcf, 0x7f, 0x17, 0xf2, 0x6f, 0xae, 0x9a, 0xba, 0x53, 0xa9, 0x11, 0x16, 0x37, 0xb0, 0x94, 0xa3, 0x4c, 0x20}} return a, nil } -var _lockedtokensStakerUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4d\x8b\xf2\x40\x0c\x80\xef\xf3\x2b\x82\x87\x97\x7a\x29\xef\xb9\xac\x2b\x45\x85\x05\x45\xc5\xfa\x07\x66\x67\xd2\x0f\x5a\x27\x25\x93\xd2\x2e\x8b\xff\x7d\xe9\xc7\x6a\x59\x30\x97\x61\x48\xf2\x64\x9e\x49\x71\xab\x89\x05\x0e\x64\x4a\xb4\x57\x2a\xd1\x79\x48\x99\x6e\xf0\xbf\x3b\x9c\x36\xfb\xdd\xf6\x7a\xda\xef\x8e\xf1\x76\x7b\xd9\x25\x89\x52\xc2\xda\x79\x6d\xa4\x20\x17\x38\x6c\x63\x6b\x19\xbd\x8f\x20\x11\x2e\x5c\xb6\x84\x6f\xa5\x00\x00\x2a\x14\xc8\xa9\xb2\xc8\x17\x4c\x23\xf8\x37\xc7\x87\xc3\xf1\x31\x64\xc7\xea\x9a\xb1\xd6\x8c\x81\x36\x86\x1a\x27\x11\xc4\x8d\xe4\xf1\x78\xe9\x91\x30\x85\xc7\x2a\x0d\x1f\x58\x58\xc1\xd4\x10\x7e\x12\x33\xb5\x6f\x2f\xc7\xbc\x07\xbd\x52\x04\xaf\xf2\x89\x10\xeb\x0c\xcf\x5a\xf2\xe5\x63\x5a\x1f\xeb\x35\xd4\xda\x15\x26\x58\x6c\xa8\xa9\x2c\x38\x12\x18\x87\x01\x63\x8a\x8c\xce\x20\x08\xc1\x8c\xb5\x18\x09\xf7\x51\x0d\x3b\x34\x8d\xe0\x4c\xa2\xff\x1a\x2f\xba\x44\x3e\x33\x75\x5f\xb0\xfa\xa3\x35\xc9\x24\x43\x49\xb0\x54\x4f\xfb\x67\x53\xd8\xd4\x56\x0b\x1e\x51\x5a\xe2\xb2\x70\xd9\xb4\x87\xd9\x4a\x7e\x5f\x71\x57\x3f\x01\x00\x00\xff\xff\x7e\x1e\x81\xca\xe2\x01\x00\x00" +var _lockedtokensStakerUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xcd\x6a\xeb\x30\x10\x85\xf7\x7e\x8a\xc1\x8b\x60\xc3\xc5\x0f\x10\x6e\x6e\xc8\x2d\x94\x2e\x4a\x1b\x9a\xd2\xae\x15\x69\x6c\x0b\x3b\x1a\x33\x1a\xe1\x94\x92\x77\x2f\xb6\xd5\xc4\x69\xe9\xb2\xda\x18\xe6\xe7\x9c\x8f\xe3\xb1\x87\x8e\x58\xe0\x9e\x74\x83\xe6\x99\x1a\x74\x1e\x4a\xa6\x03\xa4\xf3\x52\x9a\xc4\xb9\xdb\xe0\x2a\xbb\x6f\x71\x2c\xc7\xc1\xab\x5a\x9a\x24\xc2\xca\x79\xa5\xc5\x92\xcb\x1c\xf6\x1b\x63\x18\xbd\x5f\xc2\x4e\xd8\xba\x2a\x87\xf7\x24\x01\x00\x68\x51\xa0\xa6\xd6\x20\x3f\x61\xb9\x04\x15\xa4\xce\xe6\x9e\xc5\xf8\x79\xec\x90\xd5\x20\xe5\xff\x5c\x9b\x17\xaf\x56\x6a\xc3\xaa\xcf\x61\xf1\x7d\xed\x6e\x14\x9e\x8c\x3a\xc6\x4e\x31\x66\x4a\x6b\x0a\x4e\xa2\xd5\x7f\x62\xa6\xfe\x45\xb5\x01\x73\x58\x6c\xa6\xde\x00\x07\xf1\x79\x6c\xcb\xe2\x0c\x08\x2b\x88\xfb\x85\x17\x62\x55\x61\xb1\x1f\x15\xfe\xfe\x06\xf8\xbf\x6c\x88\x76\x09\x3f\xf5\x77\x13\xc2\x56\x49\x9d\x9f\x81\x87\xb7\x5e\x43\xa7\x9c\xd5\x59\x7a\x43\xa1\x35\xe0\x48\x60\xe2\x04\xc6\x12\x19\x9d\x46\x10\x82\x99\x56\x3a\x29\x9c\xa6\xb0\xf0\x88\x3a\x08\xce\x72\x18\xfe\x93\x17\xd5\x20\x6f\x99\x8e\x6f\xb0\xfa\x92\x4c\xcc\x61\x37\x8e\x64\x79\x72\x09\xf0\xb2\x54\x84\xce\x28\xc1\x07\x94\x9e\xb8\xb1\xae\x8a\x47\x31\xbb\x8f\x4f\x8a\x53\xf2\x11\x00\x00\xff\xff\x4a\x3a\x43\x6d\x93\x02\x00\x00" func lockedtokensStakerUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -4420,11 +4440,11 @@ func lockedtokensStakerUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xda, 0xe7, 0xc1, 0x75, 0xd6, 0x8e, 0x1a, 0x5c, 0xb2, 0x5f, 0xcd, 0xb3, 0x4f, 0xa6, 0x85, 0x5a, 0xd4, 0x54, 0x29, 0x2c, 0x6f, 0x5d, 0x2a, 0xcd, 0x98, 0x25, 0x64, 0x6c, 0xa3, 0xb7, 0x33, 0x8c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7d, 0xe2, 0x2b, 0x45, 0xf7, 0x48, 0x74, 0x1b, 0x7a, 0xf8, 0xba, 0x91, 0x56, 0x13, 0x38, 0x14, 0xae, 0x4d, 0x1c, 0xdf, 0x80, 0xc7, 0x48, 0xcc, 0x45, 0x7d, 0xf9, 0x69, 0x6b, 0xb, 0x49, 0x9f}} return a, nil } -var _lockedtokensStakerWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x4f\x8f\xa2\x40\x10\xc5\xef\x7c\x8a\x8a\x87\x0d\x1c\x16\xf7\xb0\xd9\x83\xd1\x35\xc6\x3f\x99\x44\x33\x1a\x71\x66\xce\x3d\x50\x0c\x44\xa4\x48\x51\x08\x93\x89\xdf\x7d\x02\x0d\x88\x44\x2f\xd3\x97\x0e\xd4\xeb\x7a\xbf\x7a\xdd\xe1\x29\x21\x16\xd8\x90\x7b\x44\xef\x40\x47\x8c\x53\xf0\x99\x4e\xf0\xa7\xd8\x6c\xe7\xeb\xe5\xe2\xb0\x5d\x2f\x9f\x67\x8b\xc5\x7e\xe9\x38\x46\xad\x5e\x45\x94\x57\xda\x46\xba\xda\x6c\xdf\x6e\x84\x86\xb0\x8a\x53\xe5\x4a\x48\xb1\xa9\x4e\x94\xc5\x32\x82\x97\x55\x58\xfc\xfb\x6b\xc1\x97\x61\x00\x00\x44\x28\x10\x50\xe4\x21\xef\xd1\x1f\xc1\xaf\x2e\x83\x5d\x6d\x4f\x55\xb5\x15\x9f\x55\x16\x89\xd6\xb6\x04\xf6\x6b\xf9\x53\x37\x4c\x18\x13\xc5\x68\x2a\xd7\xd5\x86\xb3\x4c\x82\x99\xfe\x28\x5d\xa1\x5e\x29\x46\xbe\xdd\x3a\xc3\x04\xea\x03\xf6\x3b\x31\x53\x3e\x7e\x48\xf2\xdf\x2c\xe7\x1d\xc1\xa3\xba\x23\xc4\xea\x03\x77\x4a\x02\xab\x75\x2b\xd7\x74\x0a\x89\x8a\x43\xd7\x1c\xcc\x29\x8b\x3c\x88\x49\x40\x9b\x01\xa3\x8f\x8c\xb1\x8b\x20\x04\x9d\x5e\x03\xcb\xb8\x05\x6e\xa6\xbf\xc3\xdb\x4b\xa3\xc1\x1c\xa6\x9a\x67\xe8\x37\xf5\xaa\xfc\x33\xb4\xeb\x9d\x9f\x55\x94\xe1\x40\x77\xb9\x68\x48\x2c\xd0\xcd\x04\x3b\x19\x97\xf7\x95\x8a\x3a\x22\xef\x98\x8a\x4f\x98\xf4\x52\xaf\xd9\x9d\x4a\x62\x76\x67\xbd\x1e\xb2\xf3\x50\x02\x8f\x55\xbe\xc7\x5c\xb1\xd7\x24\xde\xbe\x27\xbd\x5b\xf7\x63\xb2\x3d\x4c\x28\x0d\xa5\xce\x62\xfc\xbb\xe7\xdf\xf4\xee\x77\x6b\xe6\xba\x18\xdf\x01\x00\x00\xff\xff\x5e\xcd\xa6\x9b\x1b\x03\x00\x00" +var _lockedtokensStakerWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xc1\x8e\xda\x30\x10\x86\xef\x79\x8a\x51\x0e\x28\x91\x5a\x73\xa9\x7a\x40\x50\xd4\x56\x42\x3d\x54\x2a\x82\x96\x9e\x4d\x32\x21\x11\xc6\x13\x4d\x1c\xc2\x6a\xc5\xbb\xaf\x62\x3b\x21\x64\x97\xcb\x4a\x9b\x8b\x95\x99\xf1\x3f\xdf\x3f\xe3\xe2\x54\x12\x1b\xf8\x4d\xc9\x11\xd3\xbf\x74\x44\x5d\x41\xc6\x74\x82\x70\x18\x0a\x03\x5f\xb7\x52\xd4\xd8\x90\x2f\xea\xff\x6f\x15\xb5\x3e\x14\x7b\x85\x77\x55\xc3\x58\x18\x04\x86\xa5\xae\x64\x62\x0a\xd2\x91\x3c\x51\xad\xcd\x0c\xfe\xad\x8a\xcb\xd7\x2f\x31\x3c\x07\x01\x00\x80\x42\x03\x39\xa9\x14\x79\x83\xd9\x0c\x64\x6d\xf2\x68\x48\x24\xec\xf1\xa7\x44\x96\xad\x4c\xf5\xe9\xbe\xb1\xf8\x5f\x98\x3c\x65\xd9\xc4\x30\x79\x7d\xed\x97\x15\xee\xfb\x9c\x65\xad\x8c\x6d\x33\xe9\xfd\x88\x5d\x1b\x74\x2c\x25\x63\x29\x19\x23\x99\x24\x8e\xd5\xd2\xfc\x20\x66\x6a\x76\x52\xd5\x18\xc3\xe4\xbb\xcb\xb5\xfc\xe0\xbf\x0a\x55\x26\x7a\x0f\xb0\x00\x7f\x5f\x54\x86\x58\x1e\x50\xec\xad\xc2\xfc\x23\xbc\x7d\x8b\xda\xc9\xcf\xe0\x51\x7e\xeb\x10\xd6\xd2\xe4\x71\x0f\xdc\x7e\xcb\x25\x94\x52\x17\x49\x14\xfe\xa4\x5a\xa5\xa0\xc9\x80\xe3\x04\xc6\x0c\x19\x75\x82\x60\x08\x06\x5a\x61\x1c\xdc\x7b\xee\xe6\xf9\xd8\xf2\x78\xce\x1d\xee\xd4\xd7\x4d\xb3\x2e\x6f\xd3\xef\x43\xbc\xbd\xd5\x73\xbb\xa4\xd0\xa9\x5c\x1d\x2c\x5e\x30\xa9\x0d\x0e\xd6\xd5\xbe\x84\xca\xc8\x23\xf2\x9a\xe9\xf2\x04\x8b\xd1\x02\x3d\xfb\xd6\x96\x44\x43\xcf\xb7\x4b\xa2\xf1\xab\xd9\x60\x23\x39\xed\x26\xdf\x3f\x72\x77\xc6\x6f\x8f\x4b\xa4\x58\x52\x55\x18\x3f\x8b\xf9\xe7\x51\xff\x4e\x7b\xac\xd6\xf9\xba\x06\x2f\x01\x00\x00\xff\xff\x84\xb1\x80\xaf\xcd\x03\x00\x00" func lockedtokensStakerWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4440,11 +4460,11 @@ func lockedtokensStakerWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8d, 0x8a, 0xc1, 0xc0, 0x10, 0xe2, 0xf1, 0x46, 0xbe, 0x81, 0x21, 0x16, 0x25, 0x90, 0x8, 0x82, 0x70, 0x2d, 0xac, 0x24, 0xc8, 0x11, 0xcc, 0x3e, 0xa1, 0x71, 0xa3, 0x3f, 0xf8, 0x5e, 0x35, 0xa0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0xee, 0xf6, 0x2e, 0xef, 0x76, 0x89, 0x30, 0x4a, 0x84, 0xd5, 0xa7, 0x97, 0xb6, 0xc8, 0x9c, 0xfc, 0xc3, 0xc6, 0xd8, 0x30, 0x74, 0x8, 0xb5, 0x6e, 0x92, 0x38, 0x2d, 0xb6, 0x35, 0xeb, 0x38}} return a, nil } -var _lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6b\xc2\x50\x0c\xc7\xef\xfd\x2b\x82\x87\x51\x2f\x65\x87\xb1\x83\xcc\x49\x51\xf7\x03\x45\xa5\x75\xb0\x1d\xdf\x5e\x53\x5b\x5a\x5f\x4a\x9a\xd2\x8e\xe1\xff\x3e\xea\x6b\xb5\x0c\xcc\x25\x3c\xf2\xcd\x37\xf9\xe4\xa5\xc7\x82\x58\x60\x4d\x3a\xc3\x68\x4f\x19\x9a\x12\x62\xa6\x23\xdc\x37\xeb\xed\x7c\xb5\x5c\xec\xb7\xab\xe5\xc6\x5f\x2c\x82\x65\x18\x3a\x9d\x3a\x14\x95\xa5\xe6\xb0\x63\x6a\x7e\x7a\x75\xb8\xf7\x57\xef\x9b\xd7\x5d\xb0\xfd\xfc\xea\xe5\x8e\xb0\x32\xa5\xd2\x92\x92\x71\xd5\x91\x2a\x23\x13\xf8\x78\x49\x9b\xc7\x87\x31\xfc\x3a\x0e\x00\x40\x8e\x02\x09\xe5\x11\x72\x80\xf1\x04\xee\x86\x9b\x78\xe7\xf4\x76\xae\x5a\x75\xc1\x58\x28\x46\x57\x69\x6d\xdd\xfc\x4a\x12\xdf\x3e\x5a\x4b\xe8\xa2\xc4\x3c\xf6\x2e\xb6\x30\x85\xae\xc1\xfb\x26\x66\xaa\x9f\x6e\x8e\x79\x76\x5b\x9e\x09\xdc\xaa\x87\x42\xac\x0e\xb8\x53\x92\x8c\x2f\xd3\xda\x98\xcd\xa0\x50\x26\xd5\xee\x68\x4e\x55\x1e\x81\x21\x01\x3b\x0c\x18\x63\x64\x34\x1a\x41\x08\x06\x5e\x23\xeb\x70\xb2\x68\xd8\xa0\xae\x04\x07\x10\xed\x69\x4a\x51\x19\xb2\xbd\xf4\xf4\x1f\x56\x07\x13\x9e\x25\xee\xd8\xb9\xd2\x5f\x9b\xbc\x3a\x95\x24\x62\x55\x07\x58\x2b\x8e\x7a\xa4\xcb\x6f\xd8\xdc\x2f\x72\x72\xfe\x02\x00\x00\xff\xff\xd5\xd5\xf1\x96\x10\x02\x00\x00" +var _lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x6b\x83\x40\x10\xc5\xef\xfb\x29\x06\x0f\x41\xa1\x78\x2a\x3d\x84\xa6\xa1\x2d\x84\x1e\x0a\x0d\x49\xff\x9c\x27\xeb\x18\x25\x66\x47\xc6\x11\x53\x4a\xbe\x7b\xd1\x35\xc6\xb4\xf4\xd8\xbd\x2c\xcc\xce\xbc\xf7\x9b\xa7\xf9\xbe\x64\x51\x78\x66\xbb\xa3\xe4\x95\x77\xe4\x2a\x48\x85\xf7\x10\x8c\x4b\x81\xe9\xfb\x16\xb5\xdb\xe6\x9b\x82\xba\x72\xdf\x78\x51\x0b\x8c\x51\x41\x57\xa1\xd5\x9c\x5d\x88\x7b\xae\x9d\x4e\xe1\x6d\x91\x1f\x6e\xae\x23\xf8\x32\x06\x00\xa0\x20\x85\x8c\x8b\x84\x64\x45\xe9\x14\xb0\xd6\x2c\x1c\xfb\xc5\xdd\xf5\x52\x92\x60\x2b\x53\x5d\x5d\x1a\xc7\x1f\xb9\x66\x89\x60\x13\xc1\xe4\xf7\xd8\x53\x27\xec\x8d\x4a\xa1\x12\x85\x42\xb4\xd6\x83\x74\x56\x0f\x2c\xc2\xcd\x3b\x16\x35\x45\x30\xb9\xf7\x6f\x2d\x1c\xf4\xa7\xa2\x22\x8d\x07\x40\x98\x41\x3f\x1f\x57\xca\x82\x5b\x8a\x37\x9d\xc2\xed\x7f\x80\xdf\x85\x6d\xac\x53\xf8\xeb\x7d\xed\x11\x96\xa8\x59\x34\x00\xb7\x67\x3e\x87\x12\x5d\x6e\xc3\xe0\x91\xeb\x22\x01\xc7\x0a\x9e\x13\x84\x52\x12\x72\x96\x40\x19\x46\x5a\x81\x57\x38\xfa\xb0\xe8\x40\xb6\x56\x1a\xe5\xd0\x7e\xa7\x4a\x71\x47\xb2\x14\x3e\x7c\xc2\xec\x47\x32\x7d\x0e\xeb\xae\x25\x8c\xcc\x39\xc0\xf3\x50\xdc\xf4\x3b\xaf\xa8\x41\x49\x4e\x2b\x0d\xbf\x86\xbf\x4f\x20\x47\xf3\x1d\x00\x00\xff\xff\x3e\x0d\x58\x54\x92\x02\x00\x00" func lockedtokensStakerWithdraw_rewarded_tokens_lockedCdcBytes() ([]byte, error) { return bindataRead( @@ -4460,11 +4480,11 @@ func lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0xae, 0xac, 0xc7, 0x74, 0x93, 0x11, 0x75, 0xd9, 0x15, 0x9f, 0x5d, 0x7e, 0x5d, 0xa1, 0xd1, 0x7b, 0x82, 0x30, 0xf4, 0xb2, 0xda, 0xf6, 0xce, 0x9f, 0x28, 0xd0, 0xa9, 0xa0, 0xd5, 0x91, 0x1b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x13, 0xa5, 0xaf, 0x96, 0x28, 0x9e, 0xf5, 0x9, 0x1d, 0x5, 0x22, 0x6d, 0x55, 0xb5, 0x0, 0x1e, 0x47, 0xd, 0x10, 0x2b, 0x1b, 0xe6, 0x12, 0x5c, 0x4b, 0xc4, 0x95, 0x48, 0xf8, 0x64, 0x8c, 0x43}} return a, nil } -var _lockedtokensStakerWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4f\x6b\xf2\x40\x10\xc6\xef\xf9\x14\x83\x87\x97\x78\x09\xef\xa1\xf4\x20\xb5\x12\xd4\xfe\x41\x51\x31\x0a\xed\x71\xbb\x99\x98\x25\x71\x27\x4c\x26\x98\x52\xfc\xee\x25\xd9\xa8\xa1\xe0\x5c\x86\x64\x9e\x79\x66\x7e\xb3\xe6\x58\x10\x0b\x2c\x49\x67\x18\xef\x28\x43\x5b\x42\xc2\x74\x84\xff\xf5\x72\x3d\x5d\xcc\x67\xbb\xf5\x62\xbe\x0a\x67\xb3\xed\x3c\x8a\xbc\x4e\x1d\x89\xca\x8c\x3d\x6c\x98\xea\xef\x8b\x3a\xda\x85\x8b\xf7\xd5\xeb\x66\xbb\xfe\xf8\xbc\xc8\x3d\x61\x65\x4b\xa5\xc5\x90\xf5\xd5\x91\x2a\x2b\x23\xd8\xbf\x98\xfa\xf1\x61\x08\x3f\x9e\x07\x00\x90\xa3\x40\x4a\x79\x8c\xbc\xc5\x64\x04\xff\xfa\x9b\x04\x6d\x7a\x6b\xab\x4e\x5d\x30\x16\x8a\xd1\x57\x5a\x3b\xb7\xb0\x92\x34\x74\x1f\x8d\x25\x74\x51\x62\x9e\x04\x57\x5b\x18\x43\xd7\x10\x7c\x11\x33\x9d\x9e\xee\x8e\x79\xf6\x1b\x9e\x11\xdc\xab\x47\x42\xac\x0e\xb8\x51\x92\x0e\xaf\xd3\x9a\x98\x4c\xa0\x50\xd6\x68\x7f\x30\xa5\x2a\x8f\xc1\x92\x80\x1b\x06\x8c\x09\x32\x5a\x8d\x20\x04\x3d\xaf\x81\x73\x38\x3b\x34\xac\x51\x57\x82\x3d\x88\xe6\x34\xa5\xa8\x0c\xd9\x5d\x7a\xfc\x07\xab\x83\x89\x5a\x89\x3f\xf4\x6e\xf4\xb7\xa6\xe0\x64\x24\x8d\x59\x9d\xf6\xb6\xfd\xdb\x21\x5d\x5f\xc3\xe5\xcb\x22\x67\xef\x37\x00\x00\xff\xff\xfa\xe1\x41\xb8\x10\x02\x00\x00" +var _lockedtokensStakerWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6b\xe3\x40\x0c\x85\xef\xf3\x2b\x84\x0f\xc1\x86\xc5\xa7\x65\x0f\x61\xb3\x61\x5b\x08\x3d\x14\x1a\x9a\xa6\x3d\x2b\x63\x39\x36\x71\x46\x46\x96\x49\x4a\xc9\x7f\x2f\x9e\x99\x26\x4e\x4b\x8f\x9d\xcb\x80\x46\x7a\xef\xd3\xb3\xeb\x7d\xcb\xa2\x70\xcf\x76\x47\xc5\x13\xef\xc8\x75\x50\x0a\xef\x21\x19\x97\x12\x13\xfb\x16\xbd\xdb\xd6\x9b\x86\x7c\x39\x36\x5e\xd5\x12\x63\x54\xd0\x75\x68\xb5\x66\x97\xe2\x9e\x7b\xa7\x53\x58\x2f\xea\xe3\x9f\xdf\x19\xbc\x19\x03\x00\xd0\x90\x42\xc5\x4d\x41\xf2\x48\xe5\x14\xb0\xd7\x2a\x1d\xfb\xe5\xfe\x7a\x68\x49\x70\x90\xe9\x7e\x5d\x1b\xe7\x2f\xb5\x56\x85\xe0\x21\x83\xc9\xd7\xb1\x3b\x2f\x1c\x8c\x5a\xa1\x16\x85\x52\xb4\x36\x80\x78\xab\x1b\x16\xe1\xc3\x33\x36\x3d\x65\x30\xf9\x1f\xde\x06\x38\x88\xa7\xa3\xa6\xcc\xcf\x80\x30\x83\x38\x9f\x77\xca\x82\x5b\xca\x37\x5e\xe1\xef\x4f\x80\xff\x4b\x87\x58\xa7\xf0\xdd\xfb\x2a\x20\x2c\x51\xab\xec\x0c\x3c\x9c\xf9\x1c\x5a\x74\xb5\x4d\x93\x5b\xee\x9b\x02\x1c\x2b\x04\x4e\x10\x2a\x49\xc8\x59\x02\x65\x18\x69\x25\x41\xe1\x14\xc2\xa2\x23\xd9\x5e\x69\x94\xc3\xf0\x9d\x3a\xc5\x1d\xc9\x52\xf8\xf8\x0a\xb3\x4f\xc9\xc4\x1c\x56\xbe\x25\xcd\xcc\x25\xc0\xcb\x50\x7e\x88\x3b\xaf\x9d\xaf\xc6\x95\xce\xbf\x46\xb8\x3f\x40\x4e\xe6\x3d\x00\x00\xff\xff\x11\x39\xe8\x7a\x92\x02\x00\x00" func lockedtokensStakerWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4480,11 +4500,11 @@ func lockedtokensStakerWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0xec, 0x5f, 0x9a, 0x23, 0xd5, 0x31, 0x36, 0x95, 0x2c, 0xc0, 0x94, 0x2c, 0x22, 0xb0, 0x1e, 0xdd, 0x3, 0x79, 0xff, 0x8e, 0x9c, 0xf3, 0x37, 0xf, 0xb3, 0xc2, 0x8d, 0xb4, 0x76, 0xaa, 0x4f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0x46, 0x2b, 0xa7, 0xad, 0xfb, 0xcd, 0x79, 0xce, 0xdd, 0xec, 0x78, 0xff, 0x7c, 0x42, 0x3d, 0x6e, 0x19, 0xe, 0x4c, 0x1f, 0x75, 0xdb, 0xd5, 0x69, 0xe9, 0x9c, 0xc8, 0x54, 0xbd, 0x4f, 0xcb}} return a, nil } -var _lockedtokensUserDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6f\xb2\x40\x10\xc6\xef\x7c\x8a\x89\x87\x37\x70\x78\xb1\x87\xa6\x07\x62\x6b\xac\x62\xdb\x48\xb4\xf1\x4f\x7b\x5e\x97\x41\x88\xb8\x43\x96\xa1\x98\x34\x7e\xf7\x66\x41\x88\x98\x9a\x74\x2f\x9b\xec\xf3\xcc\x3c\xbf\xd9\x4c\x72\xc8\x48\x33\x4c\x0b\xb5\x4b\xb6\x29\xae\x69\x8f\x0a\x22\x4d\x07\xb8\x3b\x4e\x37\xf3\x97\xb7\xe7\xc0\x5f\x2f\x66\xfe\x7c\x34\x99\x2c\xfd\xd5\xca\x6a\x0a\x52\x2a\xbb\xe6\x60\xf1\xf9\x9b\x31\x20\xb9\xc7\xb0\xb2\xe6\x8d\x37\x58\x8c\x67\xfe\xa4\xe3\xb6\x58\x0b\x95\x0b\xc9\x09\x29\x5b\x1c\xa8\x50\xec\xc1\x66\x9a\x1c\x1f\xee\x1d\xf8\xb6\x2c\x00\x80\x14\x19\x62\x4a\x43\xd4\x4b\x8c\x3c\xf8\x77\xd9\xda\xad\xae\xd7\x4a\x6d\xcd\x5f\xa2\x48\xb9\xf6\xb6\xbc\xee\x87\x79\xac\x1b\x66\x1a\x33\xa1\xd1\x16\x52\xb2\x07\xa3\x82\xe3\x91\x94\x26\xda\x44\xc2\xf9\xe4\x98\x46\x6e\x1b\x0b\x8f\x60\xdc\xee\x96\xb4\xa6\x72\x70\x93\xe1\xc9\x36\xb3\x7a\x70\x4b\x5f\x31\x69\xb1\xc3\x77\xc1\xb1\xd3\x46\x99\x33\x1c\x42\x26\x54\x22\xed\xde\x98\x8a\x34\x04\x45\x0c\x75\x18\x08\xd0\x18\xa1\x46\x25\x11\x98\xe0\xa2\x5b\xcf\xb1\xba\xbc\xcd\xe4\xd7\xb8\x57\xdf\xd0\x50\xf6\xf3\x1a\xa7\x1f\x35\x7a\x25\xff\x99\xcc\x94\x01\x57\xeb\x50\x25\x1b\xd0\x5e\x5d\x7d\xaa\xc9\xf0\x88\xb2\x60\xbc\xf9\xaf\x6e\x88\x19\xe5\x09\x9f\x81\x06\xff\x3b\x63\xb8\x65\xc2\x71\xa8\x45\xd9\xae\x46\x7d\x3b\x4d\xc6\xc9\xfa\x09\x00\x00\xff\xff\xd8\x78\x8a\x49\xc9\x02\x00\x00" +var _lockedtokensUserDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x92\xbf\x6e\xdc\x30\x0c\xc6\x77\x3f\x05\xe1\xe1\x60\x0f\x55\x96\xa2\xc3\x21\x6d\xd0\x16\x08\x3a\x74\x28\xda\x34\x9d\x19\x99\x8e\x85\x93\x45\x43\xa2\xce\x57\x14\xf7\xee\x85\xe4\x3f\x38\x0f\x1e\xa2\x45\x30\xf9\x91\xfc\x7d\xb4\x4c\x3f\xb0\x17\x78\x8c\xee\xd5\xbc\x58\x7a\xe2\x13\x39\x68\x3d\xf7\x50\x6e\x62\x65\xb1\x28\x2d\x8f\x1b\xd5\xf2\xbd\x2a\xbe\xb3\x3e\x51\x93\x63\x61\x16\xdd\x86\xca\xa2\x10\x8f\x2e\xa0\x16\xc3\xae\xc2\x9e\xa3\x93\x23\xfc\x7e\x34\x97\x0f\xef\x6b\xf8\x57\x14\x00\x00\x96\x04\x3a\xb6\x0d\xf9\x9f\xd4\x1e\xe1\x70\xdb\x41\xe5\xeb\x5b\xce\xae\xe2\x33\x46\x2b\x59\x8b\x51\xba\x6a\x03\xaf\xfe\x18\xe9\x1a\x8f\x63\x0d\x87\x95\x57\x3d\xa7\x8a\x69\xda\xe0\x69\x40\x4f\x15\x6a\x2d\x73\x83\x2f\xec\x3d\x8f\xcf\x68\x23\xd5\x70\xf8\xac\x75\xc2\x4c\x78\x30\x9f\x40\xb6\x55\x2b\x22\x7c\x84\x54\xac\x82\xb0\xc7\x57\x52\x2f\xb9\xfc\x7e\x97\xfb\x53\x95\x36\x73\x84\xbd\xfc\xaf\xa9\xcf\x0f\x94\xae\x5e\x47\xa6\xf3\xf0\x00\x03\x3a\xa3\xab\xf2\xa9\x23\x18\xbc\xe9\xd1\xff\x85\x18\xc8\x27\x80\x04\x09\x0d\x53\x00\xc7\x02\x1d\x9e\x09\xd0\x01\x86\xc0\xda\xa0\x50\x03\x36\xcf\x5b\xa4\x65\x5d\x6c\xfd\x2c\x5b\xdc\xb1\xf3\xa6\xd5\x2e\x16\xef\xe6\x26\x77\xed\x92\xcf\xe9\x3d\x5b\x5f\x39\xda\x26\xe3\x4f\x43\x21\x95\x81\xe4\x27\x97\xf1\xc0\x53\x5b\x4e\xd5\xd7\x09\x9f\x2e\xa4\xa3\xd0\xee\xcf\x51\x0d\x0d\x1c\x8c\xcc\x40\xf7\xef\x36\x5e\xd5\x38\x5b\x58\xdf\xe2\x74\xd7\xcb\x8c\x6b\xf1\x3f\x00\x00\xff\xff\x06\xda\x11\x7f\x26\x03\x00\x00" func lockedtokensUserDeposit_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4500,11 +4520,11 @@ func lockedtokensUserDeposit_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/deposit_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa5, 0xa, 0xdf, 0x26, 0x3f, 0xf, 0x6e, 0xbc, 0x78, 0x6f, 0xab, 0xd2, 0xb9, 0x60, 0xc2, 0xab, 0x81, 0x1, 0xf1, 0xa2, 0xae, 0x5a, 0x57, 0x2a, 0xc8, 0xa, 0x5b, 0x36, 0x40, 0x8c, 0xc1, 0x1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0xa5, 0xe5, 0x96, 0x71, 0x49, 0x43, 0x2c, 0x42, 0xb0, 0x75, 0x57, 0xe2, 0x55, 0x9a, 0x95, 0xfe, 0xf3, 0xec, 0xdf, 0x91, 0x6e, 0x41, 0x44, 0xc, 0x5b, 0x1, 0x46, 0x8e, 0x83, 0xab, 0xd7}} return a, nil } -var _lockedtokensUserGet_locked_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x1e\x3d\x48\x72\x29\x9e\x45\x2d\x21\x09\x28\x0d\xb6\xb4\xfd\x03\x9b\xcd\xa4\x2e\xdd\xec\x84\xcd\x2e\x2a\xa5\xff\x5d\x92\xd4\xd8\xaa\x38\x97\x5d\x66\xde\x7b\x33\x7c\xba\x69\xd9\x79\x14\xac\x0e\x54\xed\xf8\x40\xb6\x43\xed\xb8\xc1\xed\x7b\xb1\x4a\x97\x79\xb6\x5b\x2d\xf3\x97\x24\xcb\x36\xf9\x76\x2b\x44\x1b\x4a\xd4\xc1\xa2\x91\xda\x46\x52\x29\x0e\xd6\xdf\x21\xa9\x2a\x47\x5d\x17\x4f\x3f\x1c\x85\x00\x00\x43\x1e\x66\x88\x4e\x46\xed\xb3\xad\x79\x43\x35\x1e\xb0\x27\x7f\xee\x7d\xe5\xc4\x83\xa5\xaf\xf9\x9e\x7c\x2a\x5b\x59\x6a\xa3\xfd\xc7\xfd\xcd\xe5\x75\xf3\xe1\x79\x62\x53\x91\x3b\x5e\x0d\x8a\x9f\x8b\x4e\x8f\xd1\x14\xd9\xd7\xff\xea\x75\x28\x8d\x56\x6b\xe9\x5f\x27\xd3\xc5\x45\x25\x3b\xc7\x6f\xd1\x77\x67\xb1\x40\x2b\xad\x56\xd1\x2c\xe5\x60\x2a\x58\xf6\x18\x45\x90\x70\x54\x93\x23\xab\x08\x9e\xd1\x0e\xc1\xf8\xb5\x70\x16\x8f\x90\x1c\xf9\xe0\xec\x9f\x9c\x7a\x10\x57\xbe\x33\xdf\x28\x16\x27\xf1\x19\x00\x00\xff\xff\x93\x76\x77\x6b\xbb\x01\x00\x00" +var _lockedtokensUserGet_locked_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x4e\xc3\x30\x0c\x86\xef\x79\x8a\x5f\x3d\xa0\xf6\xd2\x07\x40\xc0\x34\x71\x01\x69\x87\x09\xf1\x02\x69\xe2\x8c\x68\x69\x5c\x39\x8e\x38\x20\xde\x1d\xad\x1d\x65\x03\x7c\x49\x64\xf9\xfb\xfe\x38\x71\x9c\x58\x14\x3b\x76\x47\xf2\xaf\x7c\xa4\x5c\x10\x84\x47\x34\x97\xad\xc6\x18\xeb\x1c\x95\xd2\xda\x94\x3a\x84\x9a\x31\xda\x98\x5b\xeb\x1c\xd7\xac\xb7\xd8\x7a\x2f\x54\x4a\xb7\xde\xf0\x61\x0c\x00\x24\x52\xa4\xd9\xb4\x5d\x66\x9f\x73\xe0\x17\x0a\xb8\xc7\x81\xf4\xdc\xfb\xf6\x74\x33\x72\xaa\xde\xd9\xc9\x0e\x31\x45\x8d\x54\xfa\x81\x45\xf8\xfd\xee\xe6\xf2\x49\xfd\x7c\x3c\x71\xf2\x24\x0f\xed\x0a\x9e\xea\x6a\x6c\xf7\x3b\x7c\x5f\x87\x14\xdd\xde\xea\xdb\x0a\xfd\xe4\x6e\x36\x98\x6c\x8e\xae\x6d\x1e\xb9\x26\x8f\xcc\x8a\x25\x1d\x16\x42\x81\x84\xb2\x23\x28\x63\x9a\x35\xf8\xa3\x6f\xba\x65\x71\x21\xad\x92\xff\xdd\xbd\x3f\x90\x5e\x71\xe7\x3f\x6b\x3b\xf3\x69\xbe\x02\x00\x00\xff\xff\x5f\x74\xcf\x97\x91\x01\x00\x00" func lockedtokensUserGet_locked_account_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -4520,11 +4540,11 @@ func lockedtokensUserGet_locked_account_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_locked_account_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4c, 0xbe, 0xe8, 0x78, 0x27, 0x47, 0x3b, 0xa0, 0xc8, 0x22, 0x70, 0xb2, 0xac, 0xa6, 0x18, 0x30, 0x3b, 0x65, 0xd7, 0x4, 0x7e, 0x42, 0xc6, 0x5a, 0xcc, 0x96, 0xd, 0x11, 0x92, 0xf3, 0x5, 0x84}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x1c, 0x7f, 0x55, 0xaa, 0x4, 0xd5, 0x1d, 0x5b, 0xbd, 0xdf, 0x3f, 0x2f, 0xe4, 0x4f, 0x2f, 0x22, 0x93, 0x27, 0x85, 0x4b, 0x23, 0x56, 0xaf, 0x5e, 0xc5, 0xd, 0x28, 0x5f, 0xee, 0x60, 0x44}} return a, nil } -var _lockedtokensUserGet_locked_account_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x51\x4f\xc2\x30\x14\x85\xdf\xfb\x2b\x4e\x78\x30\xdb\x0b\xf1\xc1\xf8\x40\x54\x82\x6c\x46\xc3\x22\x04\xf0\x07\x74\xdd\x1d\x36\x74\xbd\x4b\xd7\x46\x0c\xe1\xbf\x9b\x6d\x8a\xa0\xc6\xfb\xd2\xe4\xf6\x9c\xef\x9e\x1c\x5d\xd5\xec\x3c\x32\x56\x5b\x2a\xd6\xbc\x25\xdb\xa0\x74\x5c\xe1\x72\x97\xcd\xa7\xb3\x34\x59\xcf\x67\xe9\xf3\x24\x49\x96\xe9\x6a\x25\x44\x1d\x72\x94\xc1\xa2\x92\xda\x46\x52\x29\x0e\xd6\x8f\x30\x29\x0a\x47\x4d\x13\x8f\xf0\xf2\xa0\x77\xd7\x57\xd8\x0b\x01\x00\x86\x3c\x4c\x47\x9e\xf4\xd2\x27\x5b\xf2\x92\x4a\xdc\x62\x43\xfe\x73\xf7\x85\x89\x3b\x4b\x3b\xc3\x0d\xf9\xa9\xac\x65\xae\x8d\xf6\xef\x37\x17\xa7\xe1\x86\xdd\xf3\xc8\xa6\x20\xb7\x3f\xfb\xc8\x7e\x1e\x3a\xdc\x45\x47\x64\x3b\xff\xab\x17\x21\x37\x5a\x2d\xa4\x7f\x3d\x9a\x4e\x12\xe5\xec\x1c\xbf\x45\xdf\x9b\xf1\x18\xb5\xb4\x5a\x45\x83\x29\x07\x53\xc0\xb2\x47\x2f\x82\x84\xa3\x92\x1c\x59\x45\xf0\x8c\xba\x03\xe3\xd7\xc1\x41\xdc\x97\xe4\xc8\x07\x67\xff\xec\xa9\x2d\xe2\xcc\x77\x2f\x8d\xb4\x8a\xa2\x58\x1c\xc4\x47\x00\x00\x00\xff\xff\xb4\x2e\x8d\x4e\xba\x01\x00\x00" +var _lockedtokensUserGet_locked_account_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4a\xc3\x40\x10\x86\xef\xfb\x14\x3f\x39\x48\x72\xc9\x49\x3c\x14\xb5\x54\x41\x14\x7a\x28\xa2\x0f\x30\xd9\x4c\xea\xd2\xcd\x4e\x98\x9d\xa0\x20\xbe\xbb\x34\xd1\xda\xaa\x73\x59\x18\xe6\xfb\xfe\xfd\x43\x3f\x88\x1a\xd6\xe2\x77\xdc\x3e\xc9\x8e\x53\x46\xa7\xd2\xa3\x38\x5e\x15\xce\x91\xf7\x9c\x73\x49\x31\x56\xe8\xc6\x84\x9e\x42\x2a\xc9\x7b\x19\x93\x2d\xb0\x6a\x5b\xe5\x9c\xab\x05\x9e\xef\xc2\xdb\xc5\x39\xde\x9d\x03\x80\xc8\x86\x38\x89\x56\xf3\xe9\x43\xea\xe4\x91\x3b\x5c\x61\xcb\xf6\xb5\xfb\xd6\x54\x13\xb2\x9f\xda\xd3\x40\x4d\x88\xc1\x02\xe7\xba\x11\x55\x79\xbd\x3c\x3b\xfe\x51\x3d\x3d\xf7\x12\x5b\xd6\xeb\xf2\x00\xee\xe7\xe4\x6c\xfd\x3b\x7c\x33\x36\x31\xf8\x0d\xd9\xcb\x01\xfa\xc9\x5d\x2e\x31\x50\x0a\xbe\x2c\x6e\x65\x8c\x2d\x92\x18\xe6\x74\x10\x94\x3b\x56\x4e\x9e\x61\x82\x61\xd2\xe0\x8f\xbe\xa8\xe6\xe2\xca\x36\x6a\xfa\xb7\x7b\xbd\x65\x3b\xe1\x6e\x28\x52\xf2\x5c\x56\xee\xc3\x7d\x06\x00\x00\xff\xff\xf4\x54\xe0\xd6\x90\x01\x00\x00" func lockedtokensUserGet_locked_account_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -4540,11 +4560,11 @@ func lockedtokensUserGet_locked_account_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_locked_account_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x43, 0x1e, 0xb4, 0x8c, 0xa1, 0x3b, 0x72, 0xd3, 0xaf, 0x2c, 0xe7, 0x97, 0x87, 0xfb, 0xd4, 0x36, 0xf8, 0x3a, 0xc3, 0x46, 0x33, 0xe0, 0x9, 0x45, 0x45, 0x17, 0xf, 0x6e, 0x59, 0x7b, 0x77, 0xd1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x2d, 0x23, 0x62, 0x8e, 0xdd, 0x89, 0x34, 0xc5, 0x3e, 0x78, 0xc5, 0xcd, 0x35, 0x2e, 0xcf, 0xa3, 0x3a, 0xed, 0x97, 0x92, 0x6e, 0x8, 0x74, 0x90, 0x9d, 0x36, 0x9d, 0x94, 0xe3, 0xc0, 0x6d}} return a, nil } -var _lockedtokensUserGet_multiple_unlock_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcf\x4f\xfa\x40\x10\xc5\xef\xfb\x57\xbc\x70\xf8\xa6\xbd\x90\xef\xc1\x78\x20\x22\x21\x80\xd1\xd0\x08\xe1\xc7\x89\x70\xd8\xb6\x53\xdc\xb0\xdd\xd9\x6c\xb7\x8a\x21\xfc\xef\xa6\x2d\xa8\x45\xe3\x5c\xda\xcc\x67\xe6\xcd\xdb\xa7\x72\xcb\xce\x23\xe2\x64\x4f\xe9\x8a\xf7\x64\x0a\x64\x8e\x73\xfc\x3f\x44\xb3\xd1\x74\x32\x5e\xcd\xa6\x93\xe7\xe1\x78\xbc\x98\x2c\x97\x42\xd8\x32\x46\x56\x1a\xe4\x52\x99\x40\x26\x09\x97\xc6\x17\x3d\x6c\x86\x69\xea\xa8\x28\xb6\x61\x0f\x9b\xf5\x83\x3a\xdc\xde\x6c\x71\x14\x02\x00\x5e\xa5\x83\x56\xb9\xaa\xe7\x2e\xac\x8f\xcd\xb6\xc1\x19\x3b\x9c\x85\xa0\xcc\xe5\xb7\xc0\xb1\xa6\x55\x69\xf2\xd0\xb5\xbf\x61\x03\x9f\x4c\xc6\x0b\xca\xd0\xc7\x8e\xfc\xb9\x77\x31\x13\x7e\xae\x55\xd5\xdd\x91\x1f\x49\x2b\x63\xa5\x95\x7f\xbf\xfb\xf7\xfd\x99\xdd\xfa\xf3\xc8\x3a\x25\x77\x6c\x81\xe8\xfa\xd8\xe9\x3e\x68\xc9\x56\xf5\xf7\xc6\xbc\x8c\xb5\x4a\xe6\xd2\xbf\xb4\x16\xaf\xdc\xc5\xec\x1c\xbf\x05\xed\xee\x60\x00\x2b\x8d\x4a\x82\xce\x88\x4b\x9d\xc2\xb0\x47\x33\x08\x09\x47\x19\x39\x32\x09\xc1\x33\x6c\x7d\x04\x3f\x8e\x77\x42\xf1\x15\x5e\x9d\x7c\x57\x5a\x4b\x26\x0d\x7e\x8b\xb1\xca\x68\x6d\x2a\x12\x55\xb3\x41\xd8\xd8\x39\x35\x1a\x8e\x7c\xe9\xcc\x59\x46\x9c\xc4\x47\x00\x00\x00\xff\xff\xf0\x63\x18\x09\x30\x02\x00\x00" +var _lockedtokensUserGet_multiple_unlock_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x6b\xfb\x30\x10\xc5\x77\x7d\x8a\x87\x87\x3f\xf6\xe2\xe9\x4f\x87\xd0\x34\x84\x42\x69\x21\x43\x28\xcd\x14\x32\x28\xf2\x39\x15\x91\x75\xe6\x24\xb7\x85\x90\xef\x5e\x2c\xc7\x6d\xdc\xf6\x16\x89\x7b\x77\x4f\x3f\x3d\xdb\xb4\x2c\x11\x2b\x36\x47\xaa\x5e\xf8\x48\x3e\xa0\x16\x6e\x90\x5d\xb7\x32\xa5\xb4\x31\x14\x42\xae\x9d\x2b\x50\x77\x1e\x8d\xb6\x3e\xd7\xc6\x70\xe7\x63\x98\x61\xbb\xac\x2a\xa1\x10\x76\xc5\x0c\xdb\xcd\x83\xfd\xb8\xf9\xbf\xc3\x49\x29\x00\x78\xd3\x02\x67\x1b\x9b\xe6\x46\x6d\x8e\xed\x6e\x90\x6b\x16\x5c\x8c\x60\xfd\x78\x0d\x38\x25\xb5\x2f\x47\x11\x2e\xe1\x2c\x07\xf1\xc9\xd7\xfc\x4c\x35\xe6\x38\x50\xbc\xf4\x46\x98\xe2\x6b\xad\xaf\xd2\xe8\x56\xef\xad\xb3\xd1\x52\x28\xf7\x2c\xc2\xef\xb7\xff\xae\xff\x56\xa6\xe3\x91\x5d\x45\x72\x97\x4f\x96\xfb\x9a\x8c\xae\x7e\x42\xac\xbb\xbd\xb3\x66\xad\xe3\xeb\x64\x71\xca\xb0\x58\xa0\xd5\xde\x9a\x3c\xbb\xe7\xce\x55\xf0\x1c\x31\x90\x40\x43\xa8\x26\x21\x6f\x08\x91\xd1\x26\x3b\xfc\x7a\x26\x2b\xd4\x77\x18\x29\xc9\x52\xb7\x2d\xf9\x2a\xff\x2b\x96\xf2\x40\x71\xe3\x7b\x65\xd5\xcf\xe6\xc5\x80\x73\x1e\x3c\x84\x62\x27\xfe\x62\xa3\xce\xea\x33\x00\x00\xff\xff\x76\x76\x5f\x52\x02\x02\x00\x00" func lockedtokensUserGet_multiple_unlock_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -4560,11 +4580,11 @@ func lockedtokensUserGet_multiple_unlock_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_multiple_unlock_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x44, 0x53, 0x90, 0x61, 0xff, 0x97, 0xc8, 0x5, 0x7e, 0xc0, 0x6d, 0x11, 0x4b, 0x9, 0x5d, 0x3a, 0xdf, 0x48, 0x9a, 0xa6, 0x8e, 0x90, 0xe2, 0x7c, 0x70, 0x72, 0x99, 0xf5, 0xfa, 0xb2, 0x54, 0x24}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0xe, 0xa9, 0x44, 0x29, 0x58, 0xa8, 0xea, 0x68, 0x48, 0xe8, 0xbc, 0x31, 0xbe, 0x7d, 0xc4, 0x5e, 0x8c, 0xb8, 0xaa, 0x3e, 0x37, 0xdb, 0xc9, 0xe, 0x63, 0xbd, 0xc1, 0xcf, 0x8b, 0x36, 0x1a}} return a, nil } -var _lockedtokensUserGet_total_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x55\x51\x6f\xa3\x38\x10\x7e\xe7\x57\xcc\xd3\x1e\xe8\x22\xd2\x87\xd3\x3d\x44\x9b\x95\xd2\x92\xee\xa1\x8d\x92\x55\x4b\xef\x74\x8f\x06\x4c\x82\xea\xd8\xc8\x36\x6d\x4f\x51\xfe\xfb\xc9\x18\x3b\x98\x40\x9a\x6d\x79\x68\x52\xfc\xcd\xcc\x37\xdf\x37\x9e\x94\xfb\x8a\x71\x09\xf7\x35\xdd\x96\x29\xc1\x09\x7b\xc6\x14\x0a\xce\xf6\x70\xf3\x76\xff\xb4\xfe\x1e\xdf\xae\x96\xc9\xe6\xc7\x72\xbd\x88\xa2\x87\xe5\xe3\xa3\x67\x02\x08\x7b\x75\xc1\xab\xcd\x3f\x63\xc0\x38\x4a\x50\x4a\xf0\xa3\x44\xcf\x25\xdd\x9a\x88\x38\x5a\xae\x93\x38\xf9\x37\x59\xdc\xae\x96\xbd\xa8\x15\xcb\x9e\x71\xde\x14\x10\x06\xbf\xda\xdc\xfd\x58\x46\x4e\x0d\x6f\x3a\x85\x64\x57\x0a\x10\x19\x2f\x2b\x09\x5b\x2c\x05\xc8\x1d\x86\x64\x93\x2c\x56\x40\xeb\x7d\x8a\x39\xb0\x02\x14\x3b\x40\x14\x50\x96\xb1\x9a\x4a\x60\xaf\x54\x4c\x00\x65\x9c\x09\x01\x35\x25\x4d\xb9\x09\x98\x4f\x44\x73\x10\x9a\x6d\xd8\x14\x59\xe4\xb9\x80\xba\x52\xb9\x05\x6e\xf3\x8a\x59\x73\x24\x35\xc9\x92\x02\x65\x7c\x8f\x88\xa9\x71\xe9\xcc\x24\xbf\x88\xc9\x31\xc1\x5b\x24\xcf\x60\x62\x87\x38\xce\x87\xcb\xb8\x67\xc3\x65\x7a\x98\x4e\x19\xcf\xab\xea\x14\x8a\x9a\xc2\x1e\x95\xd4\x47\x79\xce\xb1\x10\x33\xd5\xbd\xfa\x12\xcc\xe0\xe9\xbe\x7c\xfb\xf3\x0f\x38\x78\x1e\x00\xc0\x0b\xe2\x20\xea\x3d\xcc\xe1\x26\xbc\xd1\xaf\x08\x96\x36\xf3\x5c\xf9\xb1\xd0\xff\x98\x64\x81\x86\x95\x45\x83\x7c\x41\x35\x91\x0f\xb8\x80\xb9\x09\x0a\xb7\x58\xde\xa1\x0a\xa5\x25\x29\xe5\x7f\xfe\xb4\xaa\x53\x52\x66\xd3\xc2\x8c\xdb\x2d\x22\x88\x66\x38\x68\xb2\xa8\x27\x4c\x19\xe7\xec\xf5\xeb\x17\x3b\x91\xe1\xdf\x2a\xeb\xc1\x19\xe9\xb0\x8d\x3b\x7e\xf3\x03\x68\x62\x0f\x36\x83\xee\x40\xfd\xfd\xdd\x12\x0a\x53\x8d\x6f\x40\x47\xcd\x79\x3a\x85\xef\x58\x6a\x21\xa1\x3d\xd7\xb3\xa9\x26\xce\x0c\x91\x69\xe4\x37\x01\x94\xe5\xd8\x58\x00\x15\x63\x44\x58\x89\xd4\x91\xba\x0e\x98\xdf\xa1\xea\xd4\xfd\xa9\x2b\x47\x86\xaf\x5f\x0e\xe7\xd7\x28\x5c\xdb\x1c\x3f\x1b\x91\x8e\xdf\x7c\x1b\xaf\x9e\x2b\x42\x7e\x22\xb9\xb3\x31\xae\x35\x27\x86\xda\x1f\x87\x71\x2b\xba\x1f\x74\x64\x34\x41\x31\x2d\x18\xcc\xc7\xaa\xab\x53\xbf\x81\x45\x33\xb7\x46\x58\xe6\xc1\xa0\x27\x26\x69\x28\x99\x44\x44\xef\x84\x98\x3e\xe0\x8c\xf1\xdc\x0f\x3e\xe5\x50\x3b\xfb\x8c\x8f\xd8\x64\xcf\x3f\xe7\x52\x64\xd2\x0c\x1b\xd5\x1d\xf2\x36\xcc\x46\x8c\xb8\x63\x89\x69\x73\xba\x3c\xc7\xbc\xb1\x98\x71\x83\xa2\x2e\xc4\xe5\x68\x2c\xeb\x16\x0e\xf5\xcb\x89\x03\x3c\x95\xe9\xa3\xcb\xbc\xd3\xcc\x90\xd1\x0e\xc3\x31\xb7\x87\xfc\xde\x61\x70\xad\x05\xad\x28\x64\xd6\x1c\x6b\xa9\x06\xb6\x5b\x49\x15\xba\xce\xda\xee\x0f\x52\xd8\x7c\xfc\xc5\x48\x8e\xf9\xc1\x39\x58\xf5\x93\xf7\xad\xbe\x8c\x7e\xf7\x52\x9e\x91\xd7\xf6\x0f\xf5\x34\x34\x06\xfa\x87\x6c\x48\xaf\xee\xba\xeb\xdb\x32\x54\x54\xc9\xe3\xd0\x6f\xf7\xab\xdf\xf2\xed\x55\x33\x77\x91\x15\x80\x08\x69\x5e\x9d\x2f\xc7\xd3\x4d\x75\xc9\xd9\x84\x9d\xcd\x14\x47\x43\x6d\xb7\xc4\x9a\x3d\x13\x39\x9d\x7f\x62\x41\xc5\x51\xe0\xa4\xf9\xc5\xd5\xd4\x19\xd7\xf7\x45\x19\xd9\x47\xd7\x2a\xd3\xb9\x7b\x17\xe4\x39\xdd\xf2\x73\x8d\xae\x95\xd8\xe6\x18\xd1\xfa\xc3\x4b\xc7\x55\x7e\x32\xb2\x4e\xfa\x9e\x7c\x68\x93\x74\x9e\xa3\xe7\x7e\x6b\x0d\xe3\x58\xd6\x9c\xaa\x9c\xde\xd1\xfb\x3f\x00\x00\xff\xff\x69\xed\x3d\xf3\x2a\x0b\x00\x00" +var _lockedtokensUserGet_total_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x4d\x6f\xdb\x38\x10\xbd\xeb\x57\x0c\x72\xd8\x95\xb0\x86\x9c\xc3\xa2\x07\xa3\x0e\x90\x42\x48\x6b\x20\x68\x82\xd4\x6d\xcf\x94\x48\xd9\x44\x68\x52\x20\xa9\xa4\x45\xe0\xff\x5e\x88\x14\x69\x52\x96\x9c\xaf\xea\xe0\x0f\xf2\xcd\xbc\xc7\x79\xc3\x11\xdd\x35\x42\x6a\xb8\x6a\xf9\x86\x96\x8c\xac\xc5\x3d\xe1\x50\x4b\xb1\x83\xb3\x68\xed\x2c\x71\x48\x26\x1e\x23\x94\xfb\x1f\x21\x56\xc5\x1a\x95\x8c\x7c\xd3\xe8\x9e\xf2\x4d\x00\x8d\x37\x7c\xcc\xb5\xa8\xee\x09\x36\x79\x54\x8f\x0e\x97\xce\x92\x64\x3e\x87\xf5\x96\x2a\x50\x95\xa4\x8d\x86\x0d\xd1\x0a\xf4\x96\xc0\xfa\x66\x7d\x79\x0d\xbc\xdd\x95\x44\x82\xa8\xe1\xea\xfa\xe6\x27\x20\x0e\xa8\xaa\x44\xcb\x35\x88\x47\xae\x66\x80\x2a\x29\x94\x82\x96\x33\x93\x75\x06\xee\x1b\x71\x0c\xca\x8a\xc9\x0d\xc9\x25\xc6\x0a\xda\xa6\xcb\xad\x48\x9f\x57\x2d\xcc\x96\xb6\xf2\x28\x07\x2e\xe4\x0e\x31\xc7\x71\x6a\xcf\x25\x3f\x89\xc1\x84\x91\x0d\xd2\x47\x30\xb5\x45\x92\xe0\x71\x9a\x78\x6f\x9c\x66\x80\x09\x68\x92\x04\x55\x15\x51\x2a\x45\x8c\x65\x50\xb7\x1c\x76\x88\xf2\x14\x61\x2c\x89\x52\x8b\xae\x0a\xdd\x8f\x6c\x01\xdf\xaf\xe8\xaf\x0f\xff\xc3\x53\x92\x00\x00\x3c\x20\x09\xaa\xdd\xc1\x12\xce\xf3\x73\xbb\xc4\x88\xf6\x0c\xcb\xce\x97\x4b\xfb\xc7\x25\xcb\x2c\x8c\xd6\x06\xf9\x80\x5a\xa6\xef\x48\x0d\x4b\x17\x94\x57\xa8\x41\x25\x65\x54\x53\xa2\xf2\x52\x48\x29\x1e\x3f\xfe\xe3\xdb\x2a\xff\xd1\x45\x5c\xa4\xf3\xa6\x2d\x19\xad\xe6\xb5\xdb\xf8\x84\x18\xe2\x15\xc9\xe0\xc9\xe4\xef\x1e\xab\xac\xfb\xfc\xcf\x13\xe5\xa5\xc5\x19\xd0\xde\x6a\x99\xcf\xe1\x33\xd1\xb6\x50\xd0\xef\xdb\xae\xeb\x3a\xca\x35\x89\x13\xf8\xaf\x02\x2e\x30\x71\x25\x86\x46\x08\xa6\xfc\xd1\x45\xa3\xa9\xe0\x88\x7d\x15\xd8\x74\x35\x91\xd1\xe9\xbc\xb6\xf1\x63\x3e\x1d\xdf\x89\xfc\x90\xe9\xd6\x1c\x79\x7f\x91\xfa\x2c\xdd\xf3\x82\x90\x5b\xa4\xb7\x3e\x26\x36\x80\x0f\x74\x8e\xeb\x3f\xd4\xd4\xc5\xac\x78\x2d\x60\x39\x45\xde\xed\xa6\x06\x56\x2c\x62\x8a\x9c\xe2\x6c\xd4\x20\x97\x34\xd7\x42\x23\x66\xef\xf9\x8a\xdf\x91\x4a\x48\x9c\x66\xef\xb2\xab\x6f\x74\x21\x9f\xf1\xac\x70\xb8\xbf\x61\x99\x4f\x36\xee\x5a\xd8\xbf\x7d\x98\x8f\x98\xb0\x0a\xc7\xf2\x46\x55\xc7\x46\xf9\x88\x69\xb7\x8a\x10\x12\x4b\x74\xfe\x85\xbc\xb9\x5d\x9c\x45\xc0\x03\xcd\x10\x4d\x71\x70\x96\x31\xd7\x23\x85\x53\xd6\x8f\x99\xbf\x25\x10\xfb\x0c\xb6\xa0\xe0\x4d\xfa\x7d\xe4\xaf\x7d\x85\xf4\xf3\xa8\x23\x7c\x8d\xcf\xe1\xfb\x27\x37\x5f\x5f\x04\xc3\x44\x0e\x7c\x8d\x60\x47\x84\xcf\x5e\x47\x36\x2e\xf1\xe4\x09\x0e\x9e\xdb\xf7\xd5\x58\x71\xc2\xa9\x37\xf4\x60\x8c\x33\xdf\x10\x1d\x91\xf5\xe3\x35\xed\xe5\x0e\xd8\xdc\x2d\x14\x35\x20\xc6\xcc\xd2\xf1\x8c\x3c\xdc\xd1\x58\x9c\x4f\x18\x8c\xa4\x55\x01\xcb\x49\x61\x66\xc2\x14\x69\x38\xea\xdf\x31\x9a\x56\x45\x16\xa5\x79\xe5\x50\x0a\x7a\xf3\xf9\xa2\x4c\x4c\xa2\x97\x56\x26\xb8\x68\x27\xca\x73\xb8\xd2\xc7\x35\x7a\x69\x89\x7d\x8e\x89\x5a\xbf\x79\xc2\xc4\x95\x9f\x4d\xcc\x8e\xa1\x27\x6f\x1a\x1b\xc1\xb3\x4f\xe2\x5f\xbd\x61\x92\xe8\x56\xf2\x2e\x67\xb2\x4f\xfe\x04\x00\x00\xff\xff\xff\xc7\x1b\xb5\xfb\x0a\x00\x00" func lockedtokensUserGet_total_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -4580,11 +4600,11 @@ func lockedtokensUserGet_total_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_total_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1b, 0xa, 0x98, 0x52, 0xac, 0x67, 0xd6, 0x22, 0x47, 0xdd, 0xb3, 0x76, 0x45, 0x60, 0x8, 0x86, 0xbd, 0x8b, 0x86, 0x74, 0x3b, 0xb, 0x80, 0x9e, 0x19, 0x46, 0xa1, 0xda, 0xfe, 0x3f, 0x6a, 0xa6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x55, 0x8, 0x27, 0xe, 0x25, 0x30, 0xdf, 0xb4, 0x9b, 0xdf, 0x6d, 0x5, 0xd5, 0xf1, 0xd8, 0x3a, 0xef, 0xc2, 0x45, 0x3a, 0xa1, 0xd2, 0x90, 0x9, 0xf6, 0x54, 0x3c, 0xdb, 0x11, 0x6e, 0xa9, 0x9e}} return a, nil } -var _lockedtokensUserGet_unlock_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcb\x6a\xf3\x30\x10\x85\xf7\x7a\x8a\x43\x16\x3f\xf6\x26\xfc\x8b\xd2\x45\x68\x1b\x82\xed\xd2\x12\xd3\x84\x5c\x1e\x40\x96\xc7\xa9\x88\xac\x31\xb2\x44\x53\x42\xde\xbd\xd8\x6e\xd3\xf4\x42\x67\x33\x30\x73\xe6\x9b\xc3\xd1\x75\xc3\xce\x23\x67\xb5\xa7\x72\xc3\x7b\xb2\x2d\x2a\xc7\x35\xfe\x1f\xf2\x45\x32\xcf\xd2\xcd\x62\x9e\x3d\xcd\xd2\x74\x95\xad\xd7\x42\x34\xa1\x40\x15\x2c\x6a\xa9\x6d\x24\x95\xe2\x60\xfd\x04\xb3\xb2\x74\xd4\xb6\xf1\x04\xdb\x7b\x7d\xb8\xbe\xc2\x51\x08\x00\x30\xe4\x61\x7a\xf2\x6c\x90\x3e\xda\x8a\x57\x54\xe1\x16\x3b\xf2\xef\xb3\x0f\x4c\xdc\x9f\x74\x35\xde\x91\x4f\x64\x23\x0b\x6d\xb4\x7f\xbd\xf9\x77\x69\x6e\xdc\xb7\x07\x36\x25\xb9\xe3\x97\x45\xfe\xfd\xd1\xe9\x2e\x3a\x23\xbb\xfa\x5b\xbd\x0c\x85\xd1\x6a\x29\xfd\xf3\xf9\xe8\xc2\x51\xc1\xce\xf1\x4b\xf4\x39\x99\x4e\xd1\x48\xab\x55\x34\x4a\x38\x98\x12\x96\x3d\x06\x11\x24\x1c\x55\xe4\xc8\x2a\x82\x67\x34\x3d\x18\x3f\x1e\x8e\xe2\x21\x24\x47\x3e\x38\xfb\x6b\x4e\x5d\x10\x5b\xdb\x6d\x72\x5d\x6b\x1f\xc5\xe2\x24\xde\x02\x00\x00\xff\xff\xd0\xf0\x69\xcd\xb1\x01\x00\x00" +var _lockedtokensUserGet_unlock_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x1e\x39\x48\x72\xc9\x49\x3c\x14\xb5\x14\x41\x14\x72\x28\x62\x7f\xc0\x66\x33\xa9\x4b\x37\x3b\x61\x76\x16\x05\xf1\xbf\x4b\x12\xad\x55\x3b\x97\x85\xd9\xf7\xbe\x37\xcf\x0f\x23\x8b\xa2\x61\x77\xa0\xee\x99\x0f\x14\x13\x7a\xe1\x01\xc5\xe9\xaa\x30\xc6\x3a\x47\x29\x95\x36\x84\x0a\x7d\x8e\x18\xac\x8f\xa5\x75\x8e\x73\xd4\x15\x36\x5d\x27\x94\x52\xb5\xc2\xee\xde\xbf\x5d\x5d\xe2\xdd\x18\x00\x08\xa4\x08\x33\x68\xb3\x48\x1f\x63\xcf\x4f\xd4\xe3\x06\x7b\xd2\xaf\xdd\x37\xa6\x9a\x2d\xd3\xd4\xce\x8e\xb6\xf5\xc1\xab\xa7\x54\xb7\x2c\xc2\xaf\xd7\x17\xa7\x17\xd5\xf3\xf3\xc0\xa1\x23\xb9\x2d\x8f\xc6\x69\x7e\xc9\x9a\xbf\xe1\xdb\xdc\x06\xef\xb6\x56\x5f\x8e\xa6\x9f\xdc\xf5\x1a\xa3\x8d\xde\x95\xc5\x1d\xe7\xd0\x21\xb2\x62\x49\x87\x85\x50\x4f\x42\xd1\x11\x94\x31\xce\x18\xfc\xc3\x17\xd5\x52\x5c\x48\xb3\xc4\xb3\xdd\xeb\x3d\xe9\x2e\x4e\x3f\x8d\x1f\xbc\x96\x95\xf9\x30\x9f\x01\x00\x00\xff\xff\x4e\xa6\xd0\xc0\x87\x01\x00\x00" func lockedtokensUserGet_unlock_limitCdcBytes() ([]byte, error) { return bindataRead( @@ -4600,11 +4620,11 @@ func lockedtokensUserGet_unlock_limitCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_unlock_limit.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0xb1, 0x1b, 0x25, 0xfc, 0xa2, 0xd7, 0x60, 0x50, 0x3e, 0x8f, 0x7, 0xc4, 0x89, 0xbf, 0xd, 0xaf, 0x1c, 0x92, 0x84, 0x7c, 0xdb, 0x16, 0xed, 0xc2, 0x7e, 0x4e, 0xf5, 0xa7, 0x92, 0x81, 0x2c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6f, 0xf9, 0x2, 0x6b, 0x3a, 0x2a, 0x9b, 0x2f, 0xb6, 0xec, 0x74, 0x3b, 0x63, 0xa6, 0x99, 0x2e, 0x44, 0xaa, 0xa7, 0xfd, 0xf7, 0x7f, 0x81, 0xb1, 0x1c, 0x70, 0xf, 0xe3, 0xf1, 0x6f, 0xe4, 0xd4}} return a, nil } -var _lockedtokensUserWithdraw_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6f\xb2\x40\x10\xc6\xef\x7c\x8a\x89\x87\x37\x70\x78\xb1\x87\xa6\x07\x62\x6b\xac\x62\xdb\x48\xb4\xf1\x4f\x7b\x5e\x97\x41\x88\xb8\x43\x96\xa1\x98\x34\x7e\xf7\x66\x41\x88\x98\x9a\x74\x2f\x9b\xec\xf3\xcc\x3c\xbf\x9d\x4c\x72\xc8\x48\x33\x4c\x0b\xb5\x4b\xb6\x29\xae\x69\x8f\x0a\x22\x4d\x07\xb8\x3b\x4e\x37\xf3\x97\xb7\xe7\xc0\x5f\x2f\x66\xfe\x7c\x34\x99\x2c\xfd\xd5\xca\x6a\x0a\x52\x2a\xbb\xe6\x60\xf1\xf9\x9b\x31\x20\xb9\xc7\xb0\xb2\xe6\x8d\x37\x58\x8c\x67\xfe\xa4\xe3\xb6\x58\x0b\x95\x0b\xc9\x09\x29\x5b\x1c\xa8\x50\xec\xc1\x66\x9a\x1c\x1f\xee\x1d\xf8\xb6\x2c\x00\x80\x14\x19\x62\x4a\x43\xd4\x4b\x8c\x3c\xf8\x77\xd9\xda\xad\xae\xd7\x4a\x6d\xcd\x5f\xa2\x48\xb9\xf6\xb6\xbc\xee\x87\x79\xac\x1b\x66\x1a\x33\xa1\xd1\x16\x52\xb2\x07\xa3\x82\xe3\x91\x94\x26\xda\x44\xc2\xf9\xe4\x98\x46\x6e\x1b\x0b\x8f\x60\xdc\xee\x96\xb4\xa6\x72\x70\x93\xe1\xc9\x36\x7f\xf5\xe0\x96\xbe\x62\xd2\x62\x87\xef\x82\x63\xa7\x8d\x32\x67\x38\x84\x4c\xa8\x44\xda\xbd\x31\x15\x69\x08\x8a\x18\xea\x30\x10\xa0\x31\x42\x8d\x4a\x22\x30\xc1\x45\xb7\x9e\x63\x75\x79\x9b\x9f\x5f\xe3\x5e\x8d\xa1\xa1\xec\xe7\x35\x4e\x3f\x6a\xf4\x4a\xfe\x33\x99\x29\x03\xae\xd6\xa1\x4a\x36\xa0\xbd\xba\xfa\x54\x93\xe1\x11\x65\xc1\x78\x3d\xd7\x86\xd3\x0d\x31\xa3\x3c\xe1\x33\xcf\xe0\x7f\x77\xea\x6e\x99\x70\x1c\x6a\x51\xb6\xab\x51\xdf\x4e\x93\x71\xb2\x7e\x02\x00\x00\xff\xff\x0b\xcc\x3c\x2f\xc9\x02\x00\x00" +var _lockedtokensUserWithdraw_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x93\x41\x6f\xd4\x30\x10\x85\xef\xf9\x15\xa3\x1c\xaa\x44\x02\xf7\x82\x38\xac\x0a\x15\x20\x55\x1c\x90\x40\x50\xca\x79\xea\x4c\x1a\xab\x8e\x27\xb2\xc7\x4d\x11\xea\x7f\x47\x76\xe2\xb0\x01\x2d\xe2\x82\x2f\xd6\xda\xf3\xde\xbc\xcf\xb3\x31\xe3\xc4\x5e\xe0\x2a\xba\x3b\x73\x6b\xe9\x9a\xef\xc9\x41\xef\x79\x84\x7a\x77\x56\x57\xa5\xd2\xf2\xbc\xab\x2a\xbf\xb7\x8a\x0f\xac\xef\xa9\xcb\x67\x61\x2d\x3a\x3e\xaa\xab\x4a\x3c\xba\x80\x5a\x0c\xbb\x06\x47\x8e\x4e\x0e\xf0\xf5\xca\x3c\xbe\x7c\xd1\xc2\x8f\xaa\x02\x00\xb0\x24\x30\xb0\xed\xc8\x7f\xa6\xfe\x00\x18\x65\x68\x8e\x5d\x54\xde\x3e\x4e\xe4\x31\xd9\x84\x67\x7b\x04\xf5\xcd\xc8\xd0\x79\x9c\x5b\x38\xfb\x53\xf6\x3e\x1b\x6f\x7d\x1e\x30\x5a\xf9\xd5\xe6\xa4\xd1\x86\xaa\x6e\x92\x62\x09\x3a\x79\x9a\xd0\x53\x83\x5a\xcb\x6a\xf0\x96\xbd\xe7\xf9\x06\x6d\xa4\x16\xce\xde\x68\x9d\x08\x13\x19\xac\x2b\x90\xed\xd5\x46\x07\xaf\x20\x89\x55\x10\xf6\x78\x47\xea\x36\xcb\x2f\xfe\x07\xf2\xeb\x26\xcd\xe3\x00\xa7\xee\xbf\x2c\x11\x3e\xa1\x0c\xed\x96\x36\xad\xcb\x4b\x98\xd0\x19\xdd\xd4\xd7\x03\xc1\xe4\xcd\x88\xfe\x3b\xc4\x40\x3e\x65\x4f\x7c\xd0\x31\x05\x70\x2c\x30\xe0\x03\x01\x3a\xc0\x10\x58\x1b\x14\xea\xc0\xe6\x7e\xa5\xb4\x6e\xab\xfd\x53\x94\x01\xfc\xed\x25\xfe\x75\x2a\x05\xf1\x7c\x35\x39\xef\xcb\x7d\xbe\x3e\x85\xf5\x8e\xa3\xed\x72\xfc\xa5\x29\x24\x19\x48\xfe\xa3\xe7\x78\xe0\xa9\xaf\x17\xf5\xd3\x12\x9f\x1e\x49\x47\xa1\xdf\xe7\x5a\x60\x54\x47\x13\x07\x23\x6b\x9e\x8b\xe7\xfb\xa9\xab\x79\x45\xd8\xbe\x80\x65\x6f\x4b\x8f\xa7\xea\x67\x00\x00\x00\xff\xff\x10\x94\xa0\x76\x9c\x03\x00\x00" func lockedtokensUserWithdraw_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4620,11 +4640,11 @@ func lockedtokensUserWithdraw_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/withdraw_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x9e, 0xfa, 0x63, 0x21, 0x9d, 0x83, 0x7b, 0xab, 0x3e, 0x34, 0x39, 0x94, 0xe9, 0x36, 0xc, 0xbd, 0x5b, 0x16, 0x4, 0xae, 0xf1, 0x49, 0x8f, 0x56, 0xa7, 0xec, 0x6b, 0xcf, 0x6c, 0xb8, 0x32}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9b, 0xeb, 0x8e, 0xc2, 0xbe, 0x58, 0xf9, 0x1, 0x8a, 0x51, 0x9, 0xe7, 0x16, 0x2a, 0x38, 0xa2, 0xab, 0x0, 0xe5, 0x81, 0xa7, 0x55, 0x73, 0xaf, 0xb7, 0x5c, 0x78, 0x54, 0x71, 0x19, 0x9a, 0xd5}} return a, nil } -var _nodeversionbeaconAdminChange_version_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\xc1\x6e\xdb\x4c\x0c\x84\xef\x7a\x8a\x81\x0f\xff\x6f\x5f\xac\x1e\x8a\x1e\x84\xba\x81\x1c\xbb\x40\x2e\x76\x60\x37\xb9\x6f\x77\x29\x6b\x01\x89\x14\x28\xaa\x4e\x5b\xe4\xdd\x0b\x49\x6e\x1b\x44\x75\x8e\x5a\x92\xdf\xcc\x90\x8a\x75\x23\x6a\xd8\x49\xa0\x47\xd2\x36\x0a\xaf\xc9\x79\x61\x14\x2a\x35\xde\x3d\xed\xf6\x9b\xed\xe3\xf6\x70\xbc\xdb\xef\xd6\xdb\xfc\x76\xbf\xcb\x37\x9b\xc3\xf6\x78\x4c\x92\x34\x4d\xf1\x45\x1d\xb7\xce\x5b\x14\x86\x95\xce\xe0\xaa\x4a\xce\xed\x4b\x5c\x1e\xea\xc8\x30\x81\x2f\x1d\x9f\x68\x18\xb3\x92\x10\xa8\x88\x4c\x01\xdf\xc6\xb6\x87\x26\x38\xa3\x75\x57\x14\xa4\x49\x62\x7f\xb9\x73\xa6\xf3\x67\x25\xfa\x41\xf7\xa4\x51\x42\x86\x87\x3b\xb6\x0f\xef\x17\xf8\x99\x24\x40\x45\xff\x30\x3f\x68\x1e\xa8\xc8\xf0\xdf\xa4\xb6\x1c\x8a\xfd\x68\xa3\xd4\x38\xa5\xb9\xf3\xde\x32\xe4\x9d\x95\xb9\xf7\xd2\xb1\xf5\x68\x00\x48\x53\xac\x45\x55\xce\x70\x50\x2a\x48\x89\x3d\xf5\x51\x7a\xff\x93\x88\xb1\x6e\x2a\xaa\x89\x2d\xf2\x09\x4a\xad\x74\xea\x69\xe0\xb4\x54\x15\xcb\xab\x26\xb1\x42\xef\x60\xf9\x75\x90\xfa\x78\xcd\xf1\xa7\x01\x05\xcc\xfb\xc3\x64\xd3\xcc\x63\xd7\xd1\x44\xdd\x89\xee\x9d\x95\x8b\xcb\xc0\xcd\x0d\x1a\xc7\xd1\xcf\x67\xb7\xd2\x55\x81\xff\x37\x8c\x52\xd7\x18\x38\x5c\xcc\xcf\x7a\xc4\x73\xbf\x2a\x7a\x22\xdf\x19\x5d\xf6\xf2\x76\x9e\x65\x4b\xf6\xbb\x20\x1d\x07\xa7\xdf\x5f\xde\x6f\x7a\xcf\x57\x0f\x7f\x44\x1b\x69\x6d\x14\x9c\x1a\x3d\xbd\xad\xb1\xc0\x6a\xf5\x9a\x8b\x0c\xb3\xf1\x1b\xcd\xf8\x70\x76\x2d\x58\x0c\xdd\xf0\xef\x85\xd9\x20\xfc\x9c\xfc\x0a\x00\x00\xff\xff\x20\x17\x63\x91\x13\x03\x00\x00" +var _nodeversionbeaconAdminChange_version_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x4f\x6f\xd4\x40\x0c\xc5\xef\xf9\x14\x4f\x39\x94\xec\x25\xb9\x20\x0e\x11\x4b\xd5\x45\x42\xe2\x82\xaa\x42\x7b\x1f\x66\x9c\xcd\x48\x89\x1d\x79\x3c\x2c\x7f\xd4\xef\x8e\x92\x2c\x50\x35\x6c\x8f\xb1\xc7\xef\xf7\x9e\x9d\x38\x4e\xa2\x86\x4f\x12\xe8\x81\x34\x45\xe1\x03\x39\x2f\x8c\x4e\x65\x44\xb9\xa9\x97\x45\xd1\x34\x0d\xbe\xa8\xe3\xe4\xbc\x45\x61\x58\xef\x0c\x6e\x18\xe4\x94\x9e\xea\xdc\x84\x31\x32\x4c\xe0\x7b\xc7\x47\x5a\xc6\xac\x27\x04\xea\x22\x53\xc0\xb7\xf5\xd9\xfd\x14\x9c\xd1\x21\x77\x1d\x69\x51\xd8\x3f\xdd\x8a\xe9\xf4\x41\x89\x7e\xd2\x2d\x69\x94\xd0\xe2\xfe\x23\xdb\x9b\xd7\x3b\xfc\x2a\x0a\x60\xa0\xff\xb8\x5e\x98\x77\xd4\xb5\xb8\xda\xf4\xea\xa5\x39\x8f\x4e\x4a\x93\x53\xaa\x9c\xf7\xd6\xc2\x65\xeb\xab\x83\xa8\xca\xe9\xc1\x0d\x99\x76\xb8\xba\xf1\x5e\x32\xdb\x4c\x02\x80\xa6\xc1\xda\x87\x83\x52\x47\x4a\xec\x69\x4e\x36\xc7\xd9\x24\x8e\xe3\x34\xd0\x48\x6c\x91\x8f\x50\x4a\x92\xd5\xd3\xa2\x93\x68\xe8\xea\x8b\x9e\xb1\xc7\x6c\xa8\x4e\x26\xea\x8e\x54\x7f\x5d\x90\x6f\x2f\x05\x79\xb7\x48\x02\xd5\x7c\xa8\x76\xbb\x8a\xf5\xd5\xe7\x55\xec\xd6\x59\xbf\x3b\x0f\x5c\x5f\x63\x72\x1c\x7d\x55\xbe\x97\x3c\x04\x7e\x65\x58\x51\x97\x34\x70\x77\x0e\x51\xce\x12\x8f\xf3\x06\xe9\x3b\xf9\x6c\x74\xde\xcf\xcb\xb9\xea\x44\xf6\xa7\x21\x99\x83\xd3\x1f\x4f\xcf\xba\x3d\xf3\xb3\xc2\x5f\xe8\x24\xc9\x56\xe0\xd6\xe8\xf1\x65\xc6\x0e\xfb\xfd\x73\x5d\xb4\x28\xd7\x6f\x4c\x6b\xe1\xe4\x12\x58\x0c\x79\xf9\x25\x43\xb9\x80\x1f\x8b\xdf\x01\x00\x00\xff\xff\x1f\xd2\xbe\x76\x23\x03\x00\x00" func nodeversionbeaconAdminChange_version_freeze_periodCdcBytes() ([]byte, error) { return bindataRead( @@ -4640,11 +4660,11 @@ func nodeversionbeaconAdminChange_version_freeze_periodCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/change_version_freeze_period.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x85, 0x64, 0xe7, 0xfd, 0x12, 0xa9, 0xc4, 0xb2, 0xa7, 0x40, 0x45, 0xbd, 0xde, 0xe5, 0xb6, 0xcf, 0x5f, 0xae, 0x29, 0x72, 0xaa, 0x59, 0x3a, 0x38, 0xc, 0xe5, 0xbc, 0xbf, 0xc4, 0x20, 0x97, 0xd9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4c, 0x60, 0x96, 0xf7, 0x76, 0x86, 0xbe, 0x53, 0x4e, 0x92, 0x54, 0x6, 0xb1, 0x20, 0x8d, 0x20, 0xf8, 0x11, 0x29, 0xfe, 0x14, 0x3e, 0xf6, 0x77, 0xe1, 0x2, 0x7a, 0xf3, 0x56, 0x5f, 0x27, 0xd3}} return a, nil } -var _nodeversionbeaconAdminDelete_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xd3\x40\x10\xbd\xfb\x2b\x9e\x7a\x80\xf4\x12\x73\x40\x1c\x2c\xa0\x72\xea\x48\xf4\x92\xa0\x24\xf4\x3e\x59\x8f\xe3\x15\xf6\x8e\xb5\x1e\xd3\x22\xd4\x7f\x47\xbb\x76\xda\xa0\x34\xa8\xd7\x7d\xf3\xde\xbe\x79\xf3\x6c\xdb\x89\x57\xac\xa4\xe4\x7b\xf6\xbd\x15\xb7\x60\x32\xe2\x50\x79\x69\xf1\xe1\x71\xb5\x2e\x96\xf7\xcb\xcd\xf6\x6e\xbd\x5a\x2c\xf3\xdb\xf5\x2a\x2f\x8a\xcd\x72\xbb\x4d\x92\x34\x4d\xb1\xf3\xe4\x7a\x32\x6a\xc5\x41\x6b\x52\x50\xd3\xc8\x43\x7f\x2a\x97\x97\xad\x75\x50\x41\xc9\x0d\x2b\x43\x6b\x8e\xd4\x5f\x23\x8c\xbd\x0c\xae\x24\xff\x1b\x2d\x75\x9d\x75\x07\x84\xe9\x9a\x8f\xf8\x8e\xf6\x0d\x83\x34\xbe\xf5\x1d\x1b\x5b\x59\x2e\xa3\xc2\xbe\x11\xf3\x13\x35\xdb\x43\xad\xe8\xc8\x53\xcb\xca\x3e\x49\xf4\xc5\xd4\x2c\xce\x7c\x8b\x23\x8b\xe9\xa3\x9d\x14\xd1\x49\x86\x1f\x77\x4e\x3f\x7d\xbc\xc6\x9f\x24\x01\x1a\x7e\x25\x85\x68\x7e\xc3\x55\x86\x77\x67\xd8\x3c\x82\x81\xda\x79\xee\xc8\xf3\x8c\x8c\xd1\x0c\xf9\xa0\x75\x6e\x8c\x0c\x4e\x83\x34\x00\xa4\x29\x16\xe2\xbd\x3c\x80\xe0\xb9\x62\xcf\xce\x70\xc8\x24\x2c\x75\x96\x95\xe7\x5e\x06\x6f\x38\x52\x7b\x6e\xaa\xf9\x45\x5f\xf8\x82\xf0\xe9\x7c\x1f\xd5\x3f\x5f\x32\xf9\x35\x4a\x01\xb3\x70\xd4\xec\x7c\xcd\x71\x6a\xab\xe2\xe9\xc0\xdf\x49\xeb\xeb\x89\x70\x73\x83\x8e\x9c\x35\xb3\xab\x5b\x19\x9a\xd2\xbd\x57\x8c\x5f\x5d\x88\x0a\x9b\xc9\xfb\x55\x50\x78\x0a\xe1\xf0\x23\x9b\x41\xf9\x25\x89\xe2\xb9\x07\xcf\x1d\x88\x5d\x3b\x7d\xd0\x57\xaf\xfe\xef\xc5\x8f\xc5\x79\x43\x4c\xf3\xb1\x7b\x47\x6c\x22\x9e\x96\x23\xc3\x7f\x9a\x32\xed\xf2\xf4\x37\x00\x00\xff\xff\xfb\x0f\x35\x18\x2c\x03\x00\x00" +var _nodeversionbeaconAdminDelete_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xd4\x30\x10\xbd\xe7\x2b\x9e\xf6\x50\xb2\x97\xe4\x82\x38\x44\x40\xd5\xa5\x07\xb8\x20\x54\x96\xde\x67\x9d\xc9\xc6\xc2\xf1\x58\xce\x84\x82\x50\xff\x1d\xd9\xc9\xb6\x8b\xd2\x45\x5c\xfd\x66\xde\xbc\xf7\xfc\xec\x10\x24\x2a\x3e\x4b\xcb\xf7\x1c\x47\x2b\x7e\xc7\x64\xc4\xa3\x8b\x32\x60\xb3\x7a\xdf\x14\x45\x5d\xd7\xd8\x47\xf2\x23\x19\xb5\xe2\xa1\x3d\x29\xc8\x39\x79\x18\xcf\x79\x6e\xda\xc1\x7a\xa8\xa0\x65\xc7\xca\xd0\x9e\xf3\xea\x8f\x19\xc6\x41\x26\xdf\x52\xfc\x85\x81\x42\xb0\xfe\x88\x34\xdd\xf3\x09\xdf\xd3\xc1\x31\x48\xf3\xdb\x18\xd8\xd8\xce\x72\x9b\x19\x0e\x4e\xcc\x77\xf4\x6c\x8f\xbd\x22\x50\xa4\x81\x95\x63\x51\xe8\xb3\xa8\x32\xcf\x7c\xcc\x23\xbb\xe5\xd0\x5e\x6e\xb3\x92\x06\xdf\x3e\x79\x7d\xf3\x7a\x8b\xdf\x45\x01\x38\x7e\xc1\x7e\x16\x7f\xc7\x5d\x83\xab\x15\x56\x65\x30\xad\x86\xc8\x81\x22\x97\x64\x8c\x36\xa0\x49\xfb\x72\x27\x31\xca\xc3\x3d\xb9\x89\xb7\xb8\xba\x31\x46\x26\xaf\xe9\x12\x00\xd4\x35\x66\x1c\x84\xc8\x1d\x47\xf6\x86\x53\x44\xc9\xe3\x2a\xba\xc8\xa3\x4c\xd1\x70\x5e\x1d\xd9\x75\xd5\x45\x99\x78\x87\xa4\xa1\x1a\x55\x22\x1d\xb9\x3a\xe4\x2b\x6f\x2f\x69\x7f\x9f\x29\x81\x32\x7d\x72\xb3\x76\x3f\x4f\x7d\x9d\xc9\xbe\x90\xf6\xdb\x65\xe1\xfa\x1a\x81\xbc\x35\xe5\xe6\x83\x4c\xae\xf5\xaf\x14\xf3\xa9\x0b\x09\xe2\x6e\xf1\xb0\x49\x0c\x8f\x29\x33\xfe\xc9\x66\x52\x7e\x4e\xe4\xf6\xa9\x1e\x4f\xd5\xc8\xdd\x3b\x7f\xd0\x17\xcb\xf0\x77\x11\x4e\x7d\xfa\x8f\xb8\xaa\xb9\x92\x27\x6c\x59\x3c\xef\x4c\x83\x7f\x14\x68\xf1\xf2\xf8\x27\x00\x00\xff\xff\xb2\x03\xaa\xae\x3c\x03\x00\x00" func nodeversionbeaconAdminDelete_version_boundaryCdcBytes() ([]byte, error) { return bindataRead( @@ -4660,11 +4680,11 @@ func nodeversionbeaconAdminDelete_version_boundaryCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/delete_version_boundary.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xc4, 0xca, 0x36, 0x2a, 0xbe, 0xa6, 0xf1, 0x75, 0x8f, 0xd5, 0x82, 0x0, 0x82, 0xf0, 0x4c, 0x1b, 0xa5, 0xf5, 0xc6, 0x85, 0x25, 0xc3, 0x9c, 0xbe, 0xbe, 0xda, 0x83, 0xf4, 0x4d, 0xfe, 0x32}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xce, 0xdd, 0x99, 0x3c, 0x5e, 0x76, 0xfe, 0x27, 0x22, 0xe4, 0x7b, 0x78, 0x77, 0x89, 0xb6, 0x82, 0x89, 0x60, 0x66, 0xee, 0x3b, 0x76, 0xe7, 0xef, 0x52, 0xe7, 0xe7, 0x7a, 0x6b, 0x65, 0x71}} return a, nil } -var _nodeversionbeaconAdminHeartbeatCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x6f\x82\x40\x10\x85\xef\xfc\x8a\x17\x0f\x2d\x5e\xa0\x67\xd3\xd6\xa0\x92\xb4\x17\x6c\x20\xf1\xbe\x2e\x83\xbb\x09\xec\x90\x65\xa8\x26\x8d\xff\xbd\x11\xac\x35\xb1\xb1\x7b\xda\xd9\x9d\x79\xef\x9b\x67\x9b\x96\xbd\x20\xe3\x92\x36\xe4\x3b\xcb\x6e\x41\x4a\xb3\x43\xe5\xb9\xc1\xd3\x21\x5b\xaf\xd2\x4d\x9a\x17\xef\xeb\x6c\x91\x26\xcb\x75\x96\xac\x56\x79\x5a\x14\x41\x10\xc7\x58\xaa\xba\xee\x20\x86\xd0\x90\x18\x2e\x21\x46\x09\xa8\xb1\x32\xbe\x8a\xda\xd6\x84\xbd\x15\x33\x94\xd6\x69\x6e\xac\xdb\xe1\x73\x74\xea\x02\xf1\xca\x75\x4a\x8b\x65\x17\x4e\xf1\x15\x04\x00\x50\xd3\x1f\x3c\x6f\xa4\xbc\x6c\x49\x49\x4e\xd5\x0c\x0f\x37\xff\xd1\xa5\x61\x14\x69\x3d\xb5\xca\x53\xa8\xb4\x96\x19\x92\x5e\x4c\xa2\x35\xf7\x4e\x4e\x36\x38\x9f\x38\xc6\x82\xbd\xe7\x3d\x14\x3c\x55\xe4\xc9\x69\x82\xf0\x40\x7b\x65\x91\x94\x8d\x75\xf0\xd4\x71\xef\x35\x5d\xc6\x3b\xaa\xab\xe8\x2e\x29\x5e\x70\x02\x88\xb6\x83\xcb\xf3\x3d\xec\xd7\x8b\x2c\x10\x9e\xc2\x9f\xdd\x86\xf0\xdb\x5d\x08\x7b\xb5\xa3\x0f\x25\x66\x7a\x35\x38\x9f\xa3\x55\xce\xea\x70\xb2\xe4\xbe\x2e\xdd\xa3\x60\xb4\xbe\xa7\x85\xfc\xbc\xd8\x64\x94\x3a\x02\x18\x2e\x74\x20\xdd\x0b\x5d\x05\xf6\xff\xc6\x91\xf9\x29\xc2\xb3\x5a\x70\xfc\x0e\x00\x00\xff\xff\x54\xf5\x87\x79\x64\x02\x00\x00" +var _nodeversionbeaconAdminHeartbeatCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x41\x6f\xe2\x40\x0c\x85\xef\xf9\x15\x4f\x39\xb0\xe1\x92\xdc\xd1\xee\x22\xe0\xd2\x53\x55\x51\x89\xbb\x99\x38\x64\xa4\x64\x1c\x79\x9c\x52\xa9\xe2\xbf\x57\x64\x28\x45\xa2\xa2\x73\x1a\x7b\xec\xef\x3d\x7b\x7c\x3f\x88\x1a\x9e\xa5\xe6\x1d\x6b\xf4\x12\xd6\x4c\x4e\x02\x1a\x95\x1e\xf9\x5d\x3e\xcf\xb2\xaa\xc2\x86\xba\x2e\xc2\x5a\x46\xcf\xd6\x4a\x0d\x6b\xc9\xc0\xbd\xb7\x94\x35\xda\x77\x8c\xa3\xb7\x76\x0a\x7d\x70\xd2\xfb\x70\xc0\x5b\x42\xc5\xcc\x94\x42\x24\x67\x5e\x42\x31\xc7\x47\x96\x01\x40\xc7\x3f\x18\x79\x62\x52\xdb\x33\xd9\x96\x9b\x05\x66\x77\xef\xe5\xb5\x20\x41\x06\xe5\x81\x94\x0b\x72\xce\x16\xa0\xd1\xda\x62\x2d\xaa\x72\xdc\x51\x37\xf2\x1c\xb3\x95\x73\x32\x06\x3b\xab\xe2\x72\xaa\x0a\xa9\x06\x04\xe5\x86\x95\x83\x63\x98\x4c\xe6\x6f\x14\x57\x75\xef\x03\x94\xa3\x8c\xea\xf8\xda\x1e\xb9\x6b\xca\x87\xc6\xf1\x0f\x67\x3f\x65\x34\x51\x3a\x70\xb9\x9f\xd4\xfe\x3e\x9a\xe6\xff\x15\x0f\x14\xe7\xcf\x58\xdc\xef\xe6\xbb\xfa\x35\x81\x5f\xc8\xda\xf9\x4d\xe3\x72\x89\x81\x82\x77\x45\xbe\x91\xb1\xab\xc3\x1f\x43\x92\x7e\xc4\xc2\xf6\x32\x60\x9e\x50\x27\x00\xd3\x85\xdf\xd9\x8d\xc6\x37\x8b\xfb\x7d\xf2\xb2\xfd\x0a\x8a\x0b\x2d\x3b\x7d\x06\x00\x00\xff\xff\x23\xcb\x77\xbd\x74\x02\x00\x00" func nodeversionbeaconAdminHeartbeatCdcBytes() ([]byte, error) { return bindataRead( @@ -4680,11 +4700,11 @@ func nodeversionbeaconAdminHeartbeatCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/heartbeat.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0x8d, 0x70, 0x49, 0x14, 0x1, 0xa9, 0x56, 0x3d, 0xde, 0xa3, 0xc4, 0xf6, 0xfa, 0x14, 0x16, 0x9a, 0xdc, 0xc3, 0x9d, 0x56, 0xff, 0xb5, 0x96, 0x96, 0xf9, 0xba, 0x4c, 0x8b, 0x8c, 0xb4, 0xb0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9f, 0x2e, 0x33, 0xc2, 0x68, 0xee, 0x46, 0xb8, 0xb7, 0xd6, 0xdc, 0x46, 0x84, 0x75, 0x4a, 0xb1, 0xc1, 0x19, 0x4b, 0xaf, 0x3d, 0xb9, 0x5, 0x88, 0x7d, 0xd2, 0x59, 0x36, 0x2b, 0x5e, 0x7, 0x29}} return a, nil } -var _nodeversionbeaconAdminSet_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\xc1\x6e\xdb\x30\x0c\x86\xef\x7e\x0a\x22\x87\xcd\x01\x02\x7b\x87\x61\x18\x8c\x75\x85\xd3\x06\x58\x0f\x4b\x8b\xa4\xeb\x9d\x91\xe9\x44\x9b\x2d\x79\x12\x9d\x74\x18\xfa\xee\x83\x64\x3b\x71\xec\x04\xd8\xa9\x28\x49\x91\x3f\x3f\xfe\xb1\x2c\x2b\x6d\x18\x96\x3a\xa3\x17\x32\x56\x6a\x35\x27\x14\x5a\x41\x6e\x74\x09\x1f\x5e\x97\x8f\xf7\x8b\x97\xc5\x6a\xfd\xf0\xb8\x9c\x2f\xd2\xbb\xc7\x65\x7a\x7f\xbf\x5a\xac\xd7\x41\x10\xc7\x31\x3c\x1b\x54\x16\x05\x4b\xad\x80\x77\xc8\x80\x45\xa1\x0f\xb6\xdf\x2e\xcd\x4a\xa9\x80\x35\x60\x96\x01\x82\xa2\x03\xec\x9b\x8c\x0b\xf2\x8e\x7c\xa3\x63\x08\x37\x05\x41\x46\xb9\x54\x52\x6d\x01\x8f\x89\x8d\xae\x55\x86\xe6\x0f\x20\xbb\x47\xc0\x68\xb6\xc4\xf3\x42\x8b\x5f\xdf\x48\x6e\x77\x1c\x04\x7c\x12\x13\x06\xe0\x26\x7d\xc7\x9f\xda\x24\xf0\xe3\x41\xf1\xe7\x59\x1b\x92\x6a\x18\x7a\x42\x16\xbb\x41\xc8\xd0\x8a\x0a\x42\x4b\x09\xac\xd9\x48\xb5\xbd\x75\x99\xcd\x69\x5c\x53\xff\xe9\x63\x30\x85\xbf\x41\x00\x50\xd0\x05\x88\x7e\xf7\x15\xe5\x09\xbc\x1b\xe5\x22\x9f\x6c\x5f\x2a\x3a\x74\xc9\x76\xcf\x64\xdc\x2d\x1a\x94\xb8\xb1\x95\xa1\x0a\x0d\x85\x28\x04\x27\x90\xd6\xbc\x4b\x85\xd0\xb5\x62\x27\x0b\x00\x20\x8e\xe1\xce\x10\x32\x79\x6a\x7d\xfa\xfe\xc0\x2e\x58\xa1\xb5\x94\x41\x85\x06\x4b\x62\x32\xd6\x3f\x3c\x97\x05\x37\x17\xf4\xac\xa9\xdc\x93\x09\x7d\x39\x40\xd9\xc0\xee\xb0\xcf\xa0\x6c\x50\x77\xd0\x67\x50\x35\xa0\x3b\xe4\x33\xa7\xfe\x88\xf9\x8c\xba\x6f\x39\x0d\xfc\x1f\x4b\x45\x1e\x8d\x01\x5d\x54\x34\xa8\x09\xcf\x0e\xd6\xfb\x67\xd6\x51\x48\x7a\x3b\xb6\xf3\xe2\x18\xe6\xda\x18\x7d\x00\x04\x43\x39\x19\x52\x82\x5a\xaf\x8e\x8d\x6d\xc8\xea\xda\x08\x3a\x49\xbd\xea\x02\xb8\x01\x77\xa6\x68\xe3\xbb\x7f\xb9\x66\x89\xaf\x2d\xcf\xd0\x1d\xe8\x92\x0d\x7c\xd5\x9a\xb5\xc1\x2d\x3d\x21\xef\xa6\xed\x83\xdb\x5b\xa8\x50\x49\x11\x4e\xee\x74\x5d\x64\xea\x3d\x43\x33\xea\x5a\x0f\x58\xb5\xe2\x27\xae\xc5\x9b\x5b\x9f\x5e\x49\xd4\x4c\x27\xf3\xa4\x59\x36\x72\x4e\xcb\xe2\xec\x37\xfb\x1f\xfb\x47\x96\x78\x78\xa0\xfd\xd0\xf5\x57\xae\x7d\x14\x58\x69\xcb\x8d\xb8\xf1\x52\xdb\x71\x7f\xca\x73\x12\x2c\xf7\x94\xf6\xbf\x15\x67\x5e\x98\x46\xad\x88\xc8\xb2\x91\x82\x17\xbf\x6b\x2c\x9e\x75\x78\x45\x49\x57\xdd\x52\x4f\x60\xb2\xec\xa1\x39\xa0\x05\xa5\xd9\x7d\xec\x28\x1b\x80\x7a\x76\x9c\x26\x7e\x91\xb7\xe0\x5f\x00\x00\x00\xff\xff\x6f\x29\x85\xa7\x78\x05\x00\x00" +var _nodeversionbeaconAdminSet_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x6b\xdb\x4e\x10\xbd\xeb\x53\x3c\x7c\xc8\x4f\x06\x23\x5d\x7e\x94\x22\x9a\x06\x27\x14\xda\x43\x43\x48\xdc\xdc\xc7\xab\x91\xad\x56\xda\x55\x77\x47\x76\x4b\xc9\x77\x2f\x2b\xad\x6d\x59\xb2\xa1\x27\xe3\xf9\xfb\xe6\xbd\xa7\x2d\xeb\xc6\x58\xc1\xa3\xc9\xf9\x95\xad\x2b\x8d\xbe\x67\x52\x46\xa3\xb0\xa6\xc6\x6c\x12\x9f\x45\x51\x9a\xa6\x58\x59\xd2\x8e\x94\x94\x46\x43\xb6\x24\xa0\xaa\x32\x7b\x37\x9c\xb3\xcc\xeb\x52\x43\x0c\x28\xcf\x41\xd0\xbc\xc7\xae\xcf\xf8\xa0\x6c\xb9\x1b\x74\x0c\xd1\xba\x62\xe4\x5c\x94\xba\xd4\x1b\xd0\x31\xb1\x36\xad\xce\xc9\xfe\x06\x89\x6f\x82\x90\xdd\xb0\xdc\x57\x46\xfd\xf8\xcc\xe5\x66\x2b\x51\x24\x27\x30\x71\x04\xbf\xe9\x2b\x7d\x37\x36\xc3\xb7\x2f\x5a\xde\x2f\x42\xa8\xd4\xe3\xd0\x13\x89\xda\x8e\x42\x96\x9f\xb9\x62\x72\x9c\xe1\x45\x6c\xa9\x37\x77\x3e\xb3\x3e\xad\xeb\xeb\xdf\xfd\x1f\xcd\xf1\x27\x8a\x80\x8a\x2f\xb0\xd7\xdd\xfe\xcc\x45\x86\x9b\x49\x2e\xe9\x92\xa1\x53\xf3\xfe\x90\x0c\x77\x66\xd3\x69\xc9\xa8\xc4\xaf\x6d\x2c\x37\x64\x39\x26\xa5\x24\x03\xb5\xb2\x8d\xef\x8d\xb5\x66\xff\x4a\x55\xcb\x73\xdc\x2c\x95\x32\xad\x16\x8f\x12\x00\xd2\x14\x0f\x96\x49\xb8\x23\x71\x28\x46\x27\xb4\x0f\x36\xe4\x1c\xe7\x68\xc8\x52\xcd\xc2\xd6\x75\x8d\xe7\x28\x71\x7b\x01\xde\x0b\xd7\x3b\xb6\x71\x57\x0e\xd4\x3d\xf7\x07\x15\x16\xa8\x7b\xe6\x0f\x1a\x2c\xd0\xf4\xbc\x1f\x14\x58\xf8\x63\x8e\xac\x9f\x89\xd0\x8d\x9c\x47\xdd\x8f\xe3\xaa\x48\xa6\x7c\x5d\x44\x34\xaa\x89\xcf\xf4\x1b\xfc\x59\x1c\x58\xc8\x06\x37\x86\x7d\x69\x8a\x9e\x51\x10\x2c\x17\x6c\x59\x2b\x0e\xd6\x9d\xfa\xdc\xb2\x33\xad\x55\x7c\x82\x7a\xd5\x14\xb8\x85\x57\x2d\x71\x62\x2c\x6d\x38\x59\x77\x5b\x3e\x5c\x73\xca\xc7\xc0\x6b\xec\x85\xba\xe4\x8e\xae\xea\xa5\x1f\xf6\x44\xb2\x9d\x87\x86\xbb\x3b\x34\xa4\x4b\x15\xcf\x1e\x4c\x5b\xe5\xfa\x3f\x41\xbf\xea\xda\x0c\x3c\x87\x23\x66\x7e\xc4\x9b\xa7\x81\x7f\xb1\x6a\x85\x4f\x26\x5a\xe6\xf9\xc4\x41\x81\x93\xb3\x4f\xf9\x1f\x78\x48\x1c\xcb\x58\xa8\xdd\xf8\x63\xb8\xa2\xfa\x11\x60\x63\x9c\x04\x74\xd3\xab\x36\xd3\x05\x5c\x14\xac\xa4\xdc\xf1\x72\xf8\x86\x9c\x99\x62\x9e\x04\x14\x81\x47\x20\x71\x62\x4b\x25\x9f\x7e\xb6\x54\xad\x4c\x7c\x05\xd3\xa1\x6d\x8e\x0c\xb3\xc7\x01\x3f\x7b\x72\xd0\x46\xfc\x43\xc8\xf9\x88\xad\x95\x27\x6b\xd6\x5d\xf3\x16\xfd\x0d\x00\x00\xff\xff\x4f\xa8\x29\x9e\x8d\x05\x00\x00" func nodeversionbeaconAdminSet_version_boundaryCdcBytes() ([]byte, error) { return bindataRead( @@ -4700,11 +4720,11 @@ func nodeversionbeaconAdminSet_version_boundaryCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/set_version_boundary.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0x49, 0x35, 0xe6, 0xaf, 0x28, 0x5e, 0xc9, 0x5b, 0x35, 0xf1, 0x3, 0x12, 0x28, 0xdd, 0x59, 0xcb, 0x3b, 0xdf, 0x46, 0xd5, 0xa8, 0x3, 0x78, 0x65, 0xe5, 0xcf, 0xd4, 0x1e, 0xb, 0xa1, 0x5d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0x5f, 0x19, 0x8f, 0xfe, 0x87, 0x52, 0x72, 0x46, 0xb0, 0x81, 0xa2, 0xc2, 0xf7, 0x57, 0xb4, 0x96, 0xcb, 0xa2, 0xcc, 0xe3, 0xf0, 0x47, 0x81, 0x59, 0x45, 0x5f, 0xf7, 0xcb, 0x2a, 0x8e, 0xb5}} return a, nil } -var _nodeversionbeaconScriptsGet_current_node_versionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4f\xc3\x30\x14\x84\x77\xff\x8a\xdb\x68\x97\x86\x99\xad\x6d\x2c\xc4\xe2\x48\x35\xca\xee\xc4\x2f\x60\x09\x3f\x47\x2f\xcf\x11\x08\xf1\xdf\x19\x42\x26\xba\xde\x7d\xba\xfb\x52\x9e\x8b\x28\x5c\x89\xd4\x93\x2c\xa9\xf0\x85\xc2\x58\x18\x93\x94\x8c\xc7\x4f\xd7\xb5\xb6\xb7\x37\xff\xd2\xb9\x8b\x3d\x5f\x3b\x77\x6e\xdb\x9b\xf5\xde\x98\xa6\x69\xf0\x4c\xba\x40\xdf\x09\x63\x15\x21\x56\xac\xdb\x06\x22\x4d\x89\x29\x22\xf1\x56\x17\x56\x09\xa3\x3e\x2c\x3b\xf1\x1a\x86\x0f\x32\x73\x1d\x30\x55\x46\x0e\x89\x0f\xc7\xa7\xff\x1a\x27\x4f\x79\x25\xc1\xb7\x01\x00\x21\xad\xc2\x77\xa8\x37\xd2\xeb\x66\xb0\xe7\xa5\x72\x0c\xf2\x75\x38\x9e\xfe\x0e\xcd\x8f\xf9\x0d\x00\x00\xff\xff\xd3\x89\x47\xe6\xec\x00\x00\x00" +var _nodeversionbeaconScriptsGet_current_node_versionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xae\xc2\x30\x10\x04\x7b\x7f\xc5\x2a\xcd\x4b\x9a\xa4\x7f\x25\x14\x74\x34\x20\x7a\x63\x5f\xc0\x52\x7c\x87\xce\xe7\x48\x08\xf1\xef\x14\x21\x55\x68\x67\x47\xda\x49\xf9\x21\x6a\x38\x4a\xa4\x0b\x69\x49\xc2\x3b\xf2\x41\x18\xa3\x4a\x46\xb3\xe1\x8d\x73\xc3\x30\xe0\x40\x56\x60\x77\x42\xa8\xaa\xc4\x86\x79\x91\x10\x69\x4c\x4c\x11\x89\x97\x59\xd8\xd4\x07\xfb\x2b\xab\x71\xf6\xd7\x89\x9c\x0f\x81\x4a\x69\xfd\x34\x75\x18\x2b\x23\xfb\xc4\x6d\xf7\xbf\xed\xe8\x4f\x94\x67\x52\xbc\x1c\x00\x28\x59\x55\xfe\x61\xdd\xc8\xf6\x4b\xc9\xca\xa5\x72\xf4\xfa\x6c\xbb\xfe\x7b\xec\xde\xee\x13\x00\x00\xff\xff\x85\x05\xca\x6f\xed\x00\x00\x00" func nodeversionbeaconScriptsGet_current_node_versionCdcBytes() ([]byte, error) { return bindataRead( @@ -4720,11 +4740,11 @@ func nodeversionbeaconScriptsGet_current_node_versionCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_current_node_version.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfb, 0x9f, 0x48, 0x25, 0x5e, 0xe5, 0xf5, 0xf3, 0x98, 0x16, 0x65, 0xb7, 0xcc, 0x3c, 0x13, 0x9e, 0xa0, 0x46, 0x5d, 0x48, 0x2a, 0xe8, 0x1, 0xa3, 0x34, 0x78, 0xa7, 0x4e, 0x4e, 0xf4, 0x54, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0xcf, 0xc4, 0xaa, 0x86, 0xfc, 0xd, 0x40, 0xfc, 0xe6, 0xbb, 0xcc, 0x27, 0xcc, 0xf8, 0x3f, 0x97, 0x44, 0xb5, 0x3, 0x35, 0xb9, 0xe4, 0xe4, 0xa6, 0x73, 0x22, 0xa5, 0xc3, 0x50, 0x54, 0x87}} return a, nil } -var _nodeversionbeaconScriptsGet_current_node_version_as_stringCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\x31\x4f\xc3\x30\x10\x85\x77\xff\x8a\x37\x26\x4b\xc2\x8c\xc4\xd0\x36\x11\x62\x71\xa4\x1a\x75\x77\xea\x4b\xb1\xd4\x9c\xa3\xcb\x19\x81\x10\xff\x1d\x29\x31\x2c\xac\xdf\xdd\xfb\xde\x8b\xf3\x92\x44\x61\x53\xa0\x0b\xc9\x1a\x13\x1f\xc9\x5f\x13\x63\x92\x34\xe3\xe1\xc3\x0e\x5d\x7f\xe9\xcf\xee\x65\xb0\xc7\xfe\x70\x1a\xec\xa1\xeb\xce\xbd\x73\xc6\xb4\x6d\x8b\x67\xd2\x15\xfa\x46\xb8\x66\x11\x62\xc5\xfb\xee\x40\xa0\x29\x32\x05\x44\xde\xce\x05\xbf\xfa\xf1\x4e\x5b\xd0\xaf\xf0\x70\x2a\x91\x6f\x8d\x59\xf2\x88\x29\x33\x66\x1f\xb9\xaa\x1f\x0b\xc7\x97\x01\x80\x3b\x29\xc6\x94\x39\x78\xf9\xc4\xd3\xff\xa1\xcd\x8d\xf4\xb4\xb7\xff\xf2\xf2\x5d\xd5\x9b\x40\x48\xb3\xf0\x9f\xa3\x29\x5b\x1a\x4d\x7b\x4f\x55\x9b\x6f\xf3\x13\x00\x00\xff\xff\x57\x8d\x58\xd7\x07\x01\x00\x00" +var _nodeversionbeaconScriptsGet_current_node_version_as_stringCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\xb1\x4e\x04\x31\x0c\x44\xfb\x7c\xc5\xe8\xaa\xa4\xc9\xf6\x48\x34\x50\xd0\xd1\x80\xe8\x7d\x89\xf7\x88\x94\x75\x90\xe3\x20\x21\xc4\xbf\x23\xed\x06\x9a\x6d\xdf\x8c\xc7\xaf\x6c\x1f\x4d\x0d\xcf\x2d\xf3\x1b\x6b\x2f\x4d\x1e\x98\x52\x13\xac\xda\x36\x5c\x4e\xfc\xe2\xdc\xb2\x2c\x78\x62\xeb\xb0\x77\x46\x1a\xaa\x2c\x86\xcf\xa3\x84\xcc\x6b\x11\xce\x28\xb2\xc7\x13\xbf\xd2\xb5\xf2\x7e\x48\x1d\x84\x17\xd3\x22\xb7\xe8\x28\x25\xee\xdd\x53\xad\x01\xeb\x10\x6c\x54\xc4\x87\xbb\x99\xe3\xdb\x01\x40\x65\xc3\xb5\x0d\xc9\xa4\x5f\xb8\x3f\x9b\xc6\x1b\xdb\xe3\x61\xf1\xc7\x67\xdb\x87\x7d\x40\xd9\x86\xca\xff\x46\x9c\x4e\xd1\xda\xf1\xc7\x07\xf7\xe3\x7e\x03\x00\x00\xff\xff\xb6\xe8\xbb\xb2\x08\x01\x00\x00" func nodeversionbeaconScriptsGet_current_node_version_as_stringCdcBytes() ([]byte, error) { return bindataRead( @@ -4740,11 +4760,11 @@ func nodeversionbeaconScriptsGet_current_node_version_as_stringCdc() (*asset, er } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x23, 0x94, 0x82, 0x7f, 0x6f, 0x76, 0x57, 0x6f, 0x57, 0xa5, 0xb0, 0xd3, 0xa9, 0x73, 0x3b, 0xd9, 0x46, 0x6, 0x45, 0x4b, 0x52, 0x3, 0xc1, 0xa9, 0xb5, 0x2e, 0x95, 0x86, 0xce, 0x4b, 0x4e, 0x3a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x95, 0x4a, 0x28, 0x9c, 0x3d, 0x34, 0xab, 0xe4, 0x22, 0xbd, 0x8d, 0x1f, 0x3b, 0x1f, 0xeb, 0x42, 0xe7, 0xa4, 0x2, 0xb1, 0xec, 0x6d, 0x34, 0x10, 0xc1, 0xd8, 0x6c, 0xc2, 0xec, 0xcd, 0x9f, 0x68}} return a, nil } -var _nodeversionbeaconScriptsGet_next_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\x3d\x6b\xc3\x30\x10\xc6\xf1\x5d\x9f\xe2\x19\x93\xa5\xee\xdc\xa5\x24\xb5\x86\x2e\x32\xd8\x90\xdd\x89\x4e\xe9\x41\x75\x67\xce\x92\x71\x29\xfd\xee\xa5\x6f\x4b\x9d\xf1\xe0\xff\x3b\x1e\xce\x93\x5a\x41\xd0\x48\x27\xb2\x99\x55\x8e\x34\x5e\x54\x90\x4c\x33\xee\xd7\xd0\xb5\xfe\xe4\xfb\xe1\xb9\x0b\x47\x7f\x78\xea\xc2\xa1\x6d\x7b\x3f\x0c\xce\x35\x4d\x83\x9e\x8a\x31\x2d\x34\xa3\xbc\x10\x84\xd6\x82\xe5\xe7\x0b\xce\x5a\x25\x8e\xf6\x06\x35\x08\xbf\x7e\xe7\x9c\xbe\x3a\x23\xf0\x0c\x51\xd4\xe9\xa2\x99\xe5\xba\x35\x91\x12\x0b\x45\x37\xd5\x33\x52\x15\xe4\x91\x65\xb7\x7f\xd8\xce\xbc\xfb\xbb\x7e\xe5\x23\xde\x1d\x00\x18\x95\x6a\x72\xa3\xbf\x52\x09\xb4\x96\x7f\x6c\xb7\x77\x1f\xee\x33\x00\x00\xff\xff\x95\x44\xbb\xfa\x0b\x01\x00\x00" +var _nodeversionbeaconScriptsGet_next_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xbf\x6a\xc4\x30\x0c\xc7\xf1\xdd\x4f\xf1\x23\x53\xb2\x34\x7b\x97\x42\x1f\x20\x43\x87\xee\xae\x2d\xa7\x82\x58\x0a\xb2\x1d\x52\xca\xbd\xfb\x71\xff\x96\xcb\x8d\x12\x9f\xaf\x10\xe7\x55\xad\x62\xd2\x48\xdf\x64\x85\x55\x3e\xc9\x07\x15\x24\xd3\x8c\xee\xb0\xef\x9c\x1b\xc7\x11\x5f\x54\x8d\x69\xa3\x82\xfa\x4b\x10\xda\x2b\xb6\x1b\xc3\x8f\x36\x89\xde\xfe\xa0\x06\xe1\xe5\xca\x39\x5d\x9c\x11\xb8\x40\x14\x6d\x0d\x9a\x59\xe6\x63\x13\x29\xb1\x50\x74\x3e\x04\x2a\xa5\xf7\xcb\x32\x20\x35\x41\xf6\x2c\xfd\xf0\x7e\xfc\xf3\xed\x31\xdd\x2f\x7c\xe0\xdf\x01\x80\x51\x6d\x26\x2f\xfc\x4c\x75\xa2\xbd\x3e\x65\xfd\xe0\x4e\xee\x1c\x00\x00\xff\xff\x75\x24\x24\x44\x0c\x01\x00\x00" func nodeversionbeaconScriptsGet_next_version_boundaryCdcBytes() ([]byte, error) { return bindataRead( @@ -4760,11 +4780,11 @@ func nodeversionbeaconScriptsGet_next_version_boundaryCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_next_version_boundary.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x96, 0x49, 0x75, 0xa7, 0x75, 0xc1, 0xdc, 0x59, 0xdf, 0x44, 0xe1, 0xec, 0x7c, 0x20, 0x61, 0xa6, 0xb0, 0x5a, 0x2f, 0x8c, 0x59, 0x64, 0xf9, 0xe2, 0xac, 0xed, 0x22, 0x7d, 0xa9, 0x7d, 0xb9, 0xe6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x75, 0xb3, 0x64, 0xda, 0xd6, 0x80, 0x83, 0xd1, 0x25, 0x20, 0x2d, 0x41, 0xf5, 0x29, 0xd2, 0xd2, 0x6a, 0x68, 0x45, 0x17, 0x46, 0x2a, 0x5a, 0x4b, 0x8, 0xc5, 0x33, 0xd4, 0xfa, 0xbd, 0xc1, 0x4d}} return a, nil } -var _nodeversionbeaconScriptsGet_next_version_update_sequenceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\x31\x4f\x86\x30\x18\x06\xf7\xfe\x8a\x67\xfc\xbe\x45\x1c\x8c\x83\x1b\x48\x63\x58\x4a\x42\x23\x7b\x81\x07\x25\xb1\x6f\xb1\xbc\x35\x24\xc6\xff\x6e\x62\x5c\x8c\xeb\xdd\x70\xb7\xc5\x3d\x65\x85\x4b\x0b\x47\xe6\x63\x4b\xd2\x30\xcc\x49\xb0\xe6\x14\x71\x7b\xba\xbe\xb5\xa3\x1d\x7c\xd7\xbb\xc6\xd6\x8f\xbd\xab\xdb\x76\xb0\xde\x1b\x53\x55\x15\x9e\xa8\x07\xf4\x95\x10\x9e\x8a\x83\xef\x85\x32\x13\x52\xe2\xc4\x8c\x35\xe5\x1f\xa9\x61\x7a\x23\xca\xbe\x04\xe5\x02\x7e\x50\xd4\xec\x65\xc2\x5a\x04\x31\x6c\x72\xb9\x3e\xe0\xb9\x13\xbd\xbf\xc3\xa7\x01\x80\x4c\x2d\x59\xfe\x4f\xdd\xbc\x50\x1d\x4f\xfd\x03\xfd\x6f\xf5\x72\x35\x5f\xdf\x01\x00\x00\xff\xff\x79\x0b\x75\xa7\xce\x00\x00\x00" +var _nodeversionbeaconScriptsGet_next_version_update_sequenceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xce\x31\x8b\xc2\x40\x14\xc4\xf1\x7e\x3f\xc5\x90\x2a\x69\x2e\xcd\x71\xc5\x95\x36\x62\x93\x46\xb4\xdf\x6c\x26\x1a\xc8\xbe\x8d\x6f\xdf\x4a\x40\xfc\xee\x82\xd8\x48\xda\xdf\x14\xf3\x9f\xe2\x92\xd4\xd0\xa5\x81\x67\x6a\x9e\x92\xec\xe8\x43\x12\x8c\x9a\x22\xaa\x8d\x57\xce\xb5\x6d\x8b\x3d\x2d\xc3\xae\x84\x70\x35\x64\xde\x0a\x25\x10\x52\x62\x4f\xc5\x98\xf4\x3d\x9a\xef\x67\xa2\x2c\x83\x37\x0e\xe0\x9d\x62\xce\x87\xc0\x9c\x6b\x3f\xcf\x0d\xc6\x22\x88\x7e\x92\xba\xf9\xc7\xe9\x20\xf6\xf7\x8b\x87\x03\x00\xa5\x15\x95\x6d\xd5\xcf\x85\xd6\x71\xb5\x2f\x3c\x7e\xde\xeb\xc6\x3d\x5f\x01\x00\x00\xff\xff\x15\x0c\xe6\x10\xcf\x00\x00\x00" func nodeversionbeaconScriptsGet_next_version_update_sequenceCdcBytes() ([]byte, error) { return bindataRead( @@ -4780,11 +4800,11 @@ func nodeversionbeaconScriptsGet_next_version_update_sequenceCdc() (*asset, erro } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_next_version_update_sequence.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xba, 0x6, 0xe1, 0xfb, 0x2, 0x94, 0x1d, 0x0, 0x37, 0xef, 0xb8, 0xb1, 0xbf, 0x79, 0x81, 0xd4, 0x32, 0x4f, 0x2d, 0xfb, 0x3a, 0x10, 0x53, 0xa9, 0x9c, 0x65, 0x73, 0x1e, 0x22, 0xc1, 0x59, 0xec}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0x59, 0xeb, 0x83, 0xb9, 0x7c, 0xaf, 0x1c, 0x21, 0xdf, 0x42, 0x68, 0xcd, 0x9, 0x94, 0x45, 0xa5, 0xd4, 0xc4, 0x6d, 0xa6, 0x19, 0x7f, 0xac, 0x69, 0x9a, 0x84, 0xe7, 0xe6, 0x74, 0x11, 0x3}} return a, nil } -var _nodeversionbeaconScriptsGet_version_boundariesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xbd\x4e\xc4\x30\x10\x84\x7b\x3f\xc5\x94\x9c\x84\x2e\xd4\xd7\xdd\x11\x17\xd7\x38\x28\x91\xdc\x1b\xb2\x31\x2e\xb2\xb6\x36\x76\x04\x42\xbc\x3b\x72\x08\x12\x7f\xcd\x6a\x77\x67\x46\xf3\x85\x39\x45\xc9\x30\x71\x24\x4b\xb2\x84\xc8\x17\x72\x4f\x91\x31\x49\x9c\x71\xf7\x62\xba\x56\x5b\xdd\x0f\xd7\xce\x5c\xf4\xf9\xbe\x33\xe7\xb6\xed\xf5\x30\x28\xd5\x34\x0d\x7a\xca\x45\x78\x41\x7e\x26\xac\x7b\x3c\x16\x1e\x9d\x04\x5a\x90\x9c\x27\x4c\x51\x36\xd9\x87\x95\xf8\xf3\xe5\x78\x44\x22\x79\x70\x9e\x8e\x2a\x95\x47\x4c\x85\x31\xbb\xc0\x37\x55\x3e\xe1\xca\xf9\xf6\xcb\xb0\x5d\x87\xd3\x5f\xc0\xa3\xfd\xd1\xf7\x5a\xcd\x78\x53\x00\x20\x1b\xd5\x3f\x11\x4f\xd9\xfe\xa6\xac\xb9\xbd\xb7\xce\x6f\xc5\xfb\x72\x50\xef\x1f\x01\x00\x00\xff\xff\xb5\x4e\xf5\xec\x25\x01\x00\x00" +var _nodeversionbeaconScriptsGet_version_boundariesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x3f\xcb\x83\x30\x10\xc6\xf7\x7c\x8a\x07\x27\x85\x17\xdd\x1d\xdf\xad\x4b\x29\x1d\xdc\x0f\x3d\xd3\x80\x5e\xe4\x12\x85\x52\xfa\xdd\x4b\xac\x85\xb6\x76\x09\xb9\xe7\x0f\xcf\xcf\x8d\x93\xd7\x88\xa3\xef\xb8\x61\x0d\xce\xcb\x3f\x53\xeb\x05\xbd\xfa\x11\xd9\x4e\xcf\x8c\xa9\xaa\x0a\x67\x8e\xb3\x4a\x40\xbc\x30\x96\xcd\xf7\xb3\x74\xa4\x8e\x03\x26\xb2\x8c\xde\xeb\x6a\x5b\xb7\xb0\x3c\x25\x92\x0e\x13\xeb\x89\x2c\x97\x86\xda\x96\x43\xc8\x69\x18\x0a\xf4\xb3\x60\x24\x27\x79\x8a\xd5\x38\x48\xfc\x7b\x05\xd7\xab\xa8\xf7\x84\x65\xf3\xb1\x7b\x4d\x61\xdc\x0c\x00\xe8\x4a\xf7\xa3\x62\x39\x36\xdf\xb4\xa9\xb7\xed\xa6\xf7\x6d\x78\xfb\x14\xe6\xfe\x08\x00\x00\xff\xff\xca\xa3\xbd\xbb\x26\x01\x00\x00" func nodeversionbeaconScriptsGet_version_boundariesCdcBytes() ([]byte, error) { return bindataRead( @@ -4800,11 +4820,11 @@ func nodeversionbeaconScriptsGet_version_boundariesCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_version_boundaries.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xab, 0x9c, 0x4b, 0xef, 0x3a, 0x1f, 0xed, 0x48, 0x7e, 0x0, 0xca, 0xa9, 0x4e, 0x7c, 0x4a, 0x4a, 0xc1, 0xaa, 0xb6, 0x1a, 0xfa, 0xc6, 0x2b, 0x52, 0x44, 0x25, 0x72, 0xb8, 0x99, 0xe7, 0x77, 0x6a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0xa1, 0x9, 0x94, 0xd7, 0xa0, 0x68, 0x9d, 0xa1, 0x3f, 0x5d, 0xe9, 0xd1, 0x3a, 0x52, 0x92, 0x56, 0xf0, 0xc1, 0x29, 0x9b, 0x93, 0xef, 0x15, 0x57, 0x95, 0x86, 0x70, 0xb4, 0xa4, 0x2b, 0xe2}} return a, nil } -var _nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xd0\xbd\x4e\xeb\x40\x10\x05\xe0\xde\x4f\x71\xca\xa4\xb9\xb9\x05\xa2\xa0\x4b\xb0\x91\xd2\xd8\xc8\x16\xee\xd7\xde\xb1\x77\x04\x3b\x6b\xed\xce\x12\x7e\xc4\xbb\x23\x39\xa6\x42\xf4\x33\xdf\xcc\x39\xec\x97\x10\x15\x75\xb0\xd4\x53\x4c\x1c\xe4\x44\x66\x0c\x82\x29\x06\x8f\xff\x6f\x75\x53\x56\x7d\xd5\x76\xe7\xa6\x3e\x55\xc7\xfb\xa6\x3e\x96\x65\x5b\x75\x5d\x51\x1c\x0e\x07\xb4\xa4\x39\x4a\x82\x3a\xc2\xeb\xb6\x1e\xb2\x58\x13\xdf\x1f\x22\xd1\x07\x3d\x52\xe4\x60\x71\x71\x3c\x3a\x58\x9a\x58\xe8\x3a\xed\x59\xd8\x67\x0f\xc9\x7e\xa0\x88\x30\x61\x78\x09\xe3\x73\x5a\x59\x75\x46\xe1\x73\x52\x2c\x26\x25\x0c\xa4\x17\x22\x41\x5e\xac\x51\x96\x19\xe6\xe7\x18\x8c\x58\xb0\xa6\x8d\xb6\x57\x04\x8e\x78\x76\xba\x52\xc3\xf6\x4e\xb1\xe4\x01\x53\x16\x78\xc3\xb2\xdb\xdf\xe1\xe9\x2c\x7a\x7b\x83\xcf\x02\x00\xe2\x9a\xe3\x77\x0b\xff\x66\xd2\xfe\xef\x5c\xbb\x7d\xf1\xf5\x1d\x00\x00\xff\xff\x9d\x4e\x18\x47\x41\x01\x00\x00" +var _nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xd0\xb1\x4e\xc4\x30\x0c\x06\xe0\x3d\x4f\xf1\xeb\xa6\x76\xa1\x0b\x62\x60\x64\x40\x62\x41\x08\x89\xdb\xdd\xc4\x6d\x2c\x1a\xa7\x4a\x1c\x4e\x80\x78\x77\xa4\x5e\x99\x2a\x56\xdb\xfa\xec\xdf\x92\xd6\x5c\x0c\xcf\x39\xf0\x99\x4b\x95\xac\x0f\x4c\x3e\x2b\xa6\x92\x13\x4e\x87\xfa\xc9\xb9\x61\x18\xf0\xca\xd6\x8a\x56\x58\x64\x7c\xec\xfd\xdc\x34\x50\xf9\x7c\x2c\xcc\x5f\xfc\xc2\x45\x72\xc0\x25\x8a\x8f\x08\x3c\x89\xf2\x75\x3a\x89\x4a\x6a\x09\xda\xd2\xc8\x05\x79\xc2\xb8\x64\xff\x5e\x37\xd6\x22\x19\x52\xab\x86\x95\x6a\xc5\xc8\x76\x61\x56\xb4\x35\x90\x89\xce\xa0\xbf\x65\x20\x0d\x10\xab\x3b\x1d\xae\x08\x22\xcb\x1c\x6d\xa3\xc6\xfd\x1c\x47\xde\x73\xad\x1d\x2d\x4b\x8f\xa9\x29\x12\x89\x76\xfd\x3d\xde\x9e\xd4\xee\x6e\xf1\xed\x00\xa0\x6c\x79\x8e\x6f\xb8\x99\xd9\xce\xff\xe7\xeb\x7a\xf7\xf3\x1b\x00\x00\xff\xff\x2f\xba\x20\x02\x42\x01\x00\x00" func nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdcBytes() ([]byte, error) { return bindataRead( @@ -4820,11 +4840,11 @@ func nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdc() (*asset, er } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_version_boundary_freeze_period.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x36, 0x8d, 0x65, 0x52, 0xa7, 0x75, 0xb3, 0x7c, 0x0, 0x6a, 0xd1, 0x48, 0x8c, 0x30, 0xbd, 0x1, 0xde, 0xef, 0x97, 0xb5, 0xbf, 0xfd, 0x57, 0x70, 0x84, 0x7c, 0x73, 0x22, 0xa4, 0xec, 0x7, 0x44}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0x6, 0x8b, 0x76, 0x1c, 0x24, 0xee, 0x96, 0x38, 0x5f, 0x6a, 0xf, 0x88, 0xd6, 0x73, 0xa4, 0x44, 0x22, 0xa4, 0x98, 0xb7, 0x60, 0x1, 0x71, 0x29, 0xb4, 0xf9, 0xdd, 0x3c, 0xd0, 0xa2, 0x32}} return a, nil } -var _quorumcertificateAdminPublish_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4e\xc3\x30\x10\x44\xef\xfe\x8a\x39\xa1\x56\x42\x0d\xe7\x0a\x21\x45\x2e\x9c\x09\xe5\x07\x96\xb0\x89\x2d\x1c\x6f\xb4\xde\xb4\x48\x55\xff\x1d\x39\xbd\x80\xc4\x5e\x77\x66\xde\x4c\x9c\x66\x51\xc3\x4b\x92\xb3\x4f\x4b\x31\xd6\xce\x63\x50\x99\xf0\xf0\xdd\xf9\xf6\x70\x78\x7b\x3e\x1e\x9d\x6b\x1a\xbc\x73\x31\x98\x52\x2e\xd4\x5b\x94\x8c\x41\x14\x16\x18\x9d\x07\x7d\x4e\x31\xc3\x04\xf3\xf2\x91\x62\x09\x20\x28\x0f\xac\x9c\x7b\xae\x5e\x0b\x64\xa0\x94\xe4\x5c\x40\x7d\x2f\x4b\xb6\x52\xe5\xca\x63\xac\xcc\x35\xab\xf3\x38\x89\xc5\x3c\x3a\xf7\x1b\x73\x71\x0e\x00\x66\xe5\x99\x94\x37\x25\x8e\x99\x75\x8f\x76\xb1\xd0\xde\xa2\xb6\xb8\xac\x92\x7a\xb7\xf7\x2e\xc5\xfc\xf5\x78\xf7\x67\xd5\xae\xad\x25\x9f\x36\xcd\xda\xb1\x6f\x4e\x62\xac\x5e\x99\x4c\xf4\x1e\x46\x3a\xb2\xed\xf1\x8f\xe5\x68\xa2\x34\xf2\x2b\x59\xd8\xae\x9c\xab\xbb\xfe\x04\x00\x00\xff\xff\x97\xf7\x08\x84\x37\x01\x00\x00" +var _quorumcertificateAdminPublish_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x6a\xf3\x30\x10\x84\xef\x7a\x8a\x21\x87\xe0\xc0\x8f\x7d\x0f\x7f\x0b\x41\xd0\x73\x43\xfb\x02\x1b\x75\x63\x0b\x14\xad\x58\xad\x93\x43\xc8\xbb\x17\xdb\x6d\x49\x20\x3a\x0e\xfa\xbe\x19\x29\x9e\x8a\xa8\xe1\x2d\xc9\xc5\xa7\xb1\x1a\xeb\xde\xe3\xa8\x72\xc2\xea\x21\x5b\x39\xd7\x75\xf8\xe4\x6a\x30\xa5\x5c\x29\x58\x94\x8c\xa3\x28\x6c\x60\xec\x3d\xe8\xeb\x14\x33\x4c\x50\xc6\x43\x8a\x75\x00\x41\xf9\xc8\xca\x39\xf0\xc4\xda\x40\x06\x4a\x49\x2e\x15\x14\x82\x8c\xd9\xea\x74\x5d\xb9\x8f\x53\xc7\xec\xda\x7b\x9c\xc5\x62\xee\x9d\xbb\xaf\xb9\x3a\x07\x00\x45\xb9\x90\x72\x53\x63\x9f\x59\xb7\xa0\xd1\x86\xc6\x53\xa1\x43\x4c\xd1\x22\xd7\x0d\xd6\xbb\x45\xbd\xc1\x75\x46\xa6\x93\xd8\x96\x75\x9e\x0a\x5e\xb0\xd0\x6d\xb8\xe3\xda\x6a\xa2\xd4\x73\x1b\x6b\x1d\xf9\xff\xfa\xe1\xe9\xed\x6e\x62\x5f\x9b\x27\xe1\xc7\x82\xbd\x93\x0d\x9b\xbf\xba\x67\xfe\x9f\x3f\x69\x7e\x67\xfc\x03\xd9\x16\xdd\x1c\x87\xee\x2c\xc6\xea\x95\xc9\x44\x17\xcf\xcd\xdd\xdc\x77\x00\x00\x00\xff\xff\xbf\xcc\x5d\xab\x9b\x01\x00\x00" func quorumcertificateAdminPublish_voterCdcBytes() ([]byte, error) { return bindataRead( @@ -4840,11 +4860,11 @@ func quorumcertificateAdminPublish_voterCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/admin/publish_voter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x62, 0x25, 0xcd, 0x7f, 0xbf, 0x92, 0xcd, 0x55, 0x37, 0x4c, 0xbc, 0x66, 0x88, 0x88, 0x9, 0x48, 0xe5, 0x38, 0x46, 0x33, 0xac, 0x31, 0x40, 0x2c, 0x65, 0x1f, 0x77, 0x1, 0x34, 0x4, 0x5b, 0x37}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2f, 0xd7, 0x84, 0xd7, 0x6, 0xe, 0x60, 0xa8, 0x8, 0xe9, 0x87, 0x59, 0x2c, 0x71, 0xbf, 0x8c, 0x9e, 0xd2, 0xe2, 0xa3, 0x9c, 0x39, 0xfc, 0xfe, 0x41, 0xe8, 0x1f, 0xc2, 0x19, 0x5b, 0x40, 0xe6}} return a, nil } -var _quorumcertificateAdminStart_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\xcd\x6e\xdb\x3c\x10\xbc\xeb\x29\x06\x39\x7c\x9f\x8d\x06\x76\x02\x14\x39\x08\x75\x03\xd7\x6e\x01\x5f\x8a\x3a\xee\xcf\x41\xd0\x81\xa1\x68\x89\x85\x4c\xaa\xe4\x2a\x4e\x60\xf8\xdd\x0b\x92\x92\x23\xc6\xae\x00\x03\xb2\x38\xb3\x3b\xbb\x3b\x5c\xb9\x6b\xb4\x21\x7c\xa9\xf5\x7e\x51\xb7\x96\x84\x59\x2f\xb0\x35\x7a\x87\x9b\xe7\xf5\x62\xbe\x5c\x3e\x7c\xde\x6c\x92\x64\x3a\xc5\x77\x61\x09\x64\x98\xb2\x8c\x93\xd4\x0a\x5b\x6d\x40\x95\xc0\x7a\x01\x56\xec\xa4\x02\x69\x58\x62\x86\xfa\xaf\x4f\x9a\xa4\x2a\xd1\x08\x23\x75\xe1\x42\xec\x25\x55\x60\x60\xc6\xb0\x17\xe8\x2d\xb8\xae\x6b\xc1\x49\x1b\x28\x5d\x08\xf0\x20\xc0\xfa\x74\x73\x53\xb6\x3b\xa1\xc8\xa6\xee\x9f\xfb\x49\x55\x48\x2e\x6c\x8a\xb9\x1a\x84\x08\x9c\xfe\xd0\xe1\xba\x4f\x5f\x75\x21\x56\x4b\x07\xef\xb1\x9e\x64\xfd\x5b\x5d\x7b\x91\x3e\xed\x6a\x69\x21\x15\x04\xe3\x55\xcf\x75\x61\xdc\xd9\x2f\x21\xcb\x8a\x2e\xc7\xf0\xdc\x7d\x00\x9c\xf1\x93\x41\xa3\x46\x27\xe1\xd9\x8f\x95\xa2\xdb\xbb\xfc\xfa\x4c\x63\x96\x6d\xc8\x48\x55\xe6\xf9\x75\x9c\x38\xf3\x9c\xbb\xf7\x79\x3e\xc6\x21\x49\x00\xa0\x31\xa2\x61\x46\x8c\xac\x2c\x95\x30\x29\xe6\x2d\x55\x73\xce\x75\xab\xe8\x84\x71\xcf\x74\x8a\x4f\xda\x18\xbd\x07\x83\x11\x5b\x61\x84\xe2\xc2\x0d\x29\x1a\x9a\x7e\xfc\x2d\x38\x9d\x48\xb5\xa0\x70\xf0\x20\xb6\x98\x21\xe4\x98\x3c\xfa\x38\x1f\xfe\x8b\x6c\x32\x99\x3b\xdc\xc7\x91\x73\x4b\x8a\x0b\x47\x1b\xd2\x86\x95\xe2\x1b\xa3\x6a\x7c\x4a\xe0\x9e\xfb\x7b\x34\x4c\x49\x3e\xba\x5a\xe8\xb6\x2e\xa0\x34\x21\xa4\x88\x85\xfe\xe1\x41\xcb\xd5\x38\x89\x04\xf6\x46\x49\x91\xc5\x69\xbb\xb7\x1c\x33\x64\xf9\x89\x32\xec\xc8\x8a\x84\x61\x24\x40\x95\xd1\x6d\x59\x45\x53\x03\x53\x05\xb8\x56\x96\x4c\xcb\x09\x0c\x5d\xb8\xb7\x3d\x72\xc6\x97\xaa\x10\xcf\x6e\xec\xdd\x70\x87\x8d\xef\x65\x0e\x06\xb9\x94\xde\x0a\xcc\xbc\xa4\x38\x84\x51\xa7\x08\x93\x3d\x62\x86\xc3\x31\x22\x3f\x31\x03\x89\x19\x6e\xe2\x98\xd3\x29\x36\x82\x82\x64\x17\xfb\x7f\x0b\x59\x78\xd1\xc1\x86\x6f\xc1\x0b\x56\xf3\xb6\x0e\xd5\xba\x7e\x12\xab\x3b\xa4\x2f\x21\x32\xec\x90\xba\xed\x2e\xe4\x6a\xe9\x0a\x8c\xad\x9a\xf9\xc2\x73\x1c\x22\xc6\xb0\x62\x8b\xd9\xb0\xf2\x8e\xf0\x4f\x78\x80\x75\x1c\x9b\xc9\x3c\x39\x83\x5e\xec\x63\x16\x14\xe6\x51\xb6\x73\xae\x6b\xa3\xc4\x3b\xdc\x46\x27\xc7\x18\xd8\xfb\x69\xc2\x9a\x46\xa8\x62\x74\xd1\x54\x23\x5f\x48\x1a\x26\xff\xe6\x96\x5e\x54\x38\x7e\x35\xfd\x31\xba\x95\x1b\xbf\x24\xd7\x0b\xfc\x0c\x0b\xd2\xaf\x45\x37\x22\xdb\x36\x4d\x2d\x45\xf1\xba\x09\x7b\x56\x7f\x25\x27\x7e\xc1\x06\xde\xe8\xf5\x1a\xf4\x6f\x21\xe3\x31\x39\xfe\x0d\x00\x00\xff\xff\x34\x89\x6e\x08\xd7\x05\x00\x00" +var _quorumcertificateAdminStart_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\xc1\x6e\xdb\x38\x10\xbd\xeb\x2b\x1e\x7c\xc8\xca\xd8\xc0\xde\x00\x8b\x1c\x84\xf5\x06\xae\x8d\x02\xbe\x14\x4d\xdd\xa6\x07\x41\x07\x86\xa2\x25\x16\x32\xa9\x92\xa3\xb8\x81\xe1\x7f\x2f\x48\x4a\x8e\x18\xbb\x02\x0c\xc8\xe2\x7b\x33\x6f\x66\xde\x50\xee\x5b\x6d\x08\x1f\x1b\x7d\x58\x35\x9d\x25\x61\x1e\x57\xd8\x19\xbd\xc7\x24\xfa\x36\x49\x92\xf9\x1c\x5f\x85\x25\x90\x61\xca\x32\x4e\x52\x2b\xec\xb4\x01\xd5\x02\x8f\x2b\xb0\x72\x2f\x15\x48\xc3\x12\x33\x34\x7c\x7d\xd1\x24\x55\x85\x56\x18\xa9\x4b\x17\xe2\x20\xa9\x06\x03\x33\x86\xbd\x42\xef\xc0\x75\xd3\x08\x4e\xda\x40\xe9\x52\x80\x87\x84\xd6\xa7\x5b\x9a\xaa\xdb\x0b\x45\x36\x73\xff\xdc\x4f\xaa\x52\x72\x61\x33\x2c\xd5\x28\x44\xe0\x0c\x87\x0e\xd7\x7f\xfa\xa4\x4b\xb1\x59\x3b\xf8\x80\xf5\x24\xeb\xdf\x9a\xc6\x8b\xf4\x69\x37\x6b\x0b\xa9\x20\x18\xaf\x07\xae\x0b\xe3\xce\xbe\x0b\x59\xd5\x74\x3d\x86\xe7\x1e\x02\xe0\x82\x9f\x8c\x1a\x95\x9e\x85\xe7\xdf\x36\x8a\xee\xee\x8b\xdb\x0b\x8d\x79\xbe\x25\x23\x55\x55\x14\xb7\x71\xe2\xdc\x73\xee\xff\x2d\x8a\x29\x8e\x49\x02\x00\xad\x11\x2d\x33\x22\xb5\xb2\x52\xc2\x64\x60\x1d\xd5\xe9\x07\x6d\x8c\x3e\x3c\xb1\xa6\x13\x53\xdc\x2c\x39\xd7\x9d\xa2\x33\xc5\x3d\xf3\x39\x02\x08\x0c\x46\xec\x84\x11\x8a\x0b\x37\xb3\x68\x86\xfa\xf9\x87\xe0\x74\x26\x35\x82\xc2\xc1\x17\xb1\xc3\x02\x21\xe5\xcc\x92\x36\xac\x12\xb3\x67\x1f\xef\xbf\x9b\xc8\x2d\xb3\xa5\xc3\xff\x9f\x3a\x23\x65\xb8\x72\xb4\x0d\xec\xcf\x8c\xea\xe9\x39\x91\x7b\x1e\x1e\xd0\x32\x25\x79\x3a\x59\xe9\xae\x29\xa1\x34\x21\xa4\x88\x05\xff\xe4\x41\xd3\x64\x9a\x44\x42\x07\xff\x64\xc8\xe3\xb4\xfd\x5b\x81\x05\xf2\xe2\x4c\x19\x77\x66\x43\xc2\x30\x12\xa0\xda\xe8\xae\xaa\xa3\x61\x82\xa9\x12\x5c\x2b\x4b\xa6\xe3\x04\x86\x3e\xdc\xfb\x5e\xb9\x7d\x90\xaa\x14\xbf\x9c\x1b\xfa\x99\x8f\x07\x30\xc8\x1c\xcd\x77\x2d\xbd\x43\x98\x79\xcd\x70\x0c\x0e\xc8\x10\x06\x7e\xc2\x02\xc7\x53\x44\x7e\x61\x06\x12\x0b\xfc\x13\xc7\x9c\xcf\xb1\x15\x14\x24\xbb\xd8\x7f\x59\xc8\xd2\x8b\x0e\xee\x7c\x0f\x5e\xb1\x86\x77\x4d\xa8\xd6\xf5\x93\x58\xd3\x23\x7d\x09\x91\x8f\xc7\xd4\x5d\xbf\xa7\x9b\xb5\x2b\x30\x76\x70\xee\x0b\x2f\x70\x8c\x18\xe3\x8a\x2d\x16\xe3\xca\x7b\xc2\x1f\xe1\x01\xd6\x73\x6c\x2e\x8b\xe4\x02\x7a\xb5\x8f\x79\x50\x58\x44\xd9\x2e\xb9\xae\x8d\x12\x7f\xe3\x2e\x3a\x39\xc5\xc0\xc1\x4f\x33\xd6\xb6\x42\x95\xe9\x55\x53\xa5\xbe\x90\x2c\x4c\xfe\xdd\xf2\x5e\x55\x38\x7d\x33\xfd\x29\xda\xce\xad\xbf\x3b\x1f\x57\x78\x0a\xf7\xa6\xbf\x2d\xdd\x88\x6c\xd7\xb6\x8d\x14\xe5\xdb\x05\x39\xb0\x86\xd5\x9c\xf9\x7b\x37\xf0\xd2\xb7\x35\x18\xde\x42\xc6\x53\x72\xfa\x1d\x00\x00\xff\xff\xd2\x6f\xc8\x6d\xf2\x05\x00\x00" func quorumcertificateAdminStart_votingCdcBytes() ([]byte, error) { return bindataRead( @@ -4860,11 +4880,11 @@ func quorumcertificateAdminStart_votingCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/admin/start_voting.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf5, 0x37, 0xb6, 0x46, 0xc9, 0xb7, 0x82, 0xbe, 0x4d, 0x32, 0x73, 0x50, 0x5, 0xcc, 0x34, 0x71, 0xdc, 0xa8, 0x85, 0xc1, 0x15, 0x8e, 0x4d, 0x2e, 0x95, 0x28, 0x22, 0x7c, 0x35, 0x6e, 0x5f, 0x44}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2a, 0x25, 0xc2, 0xfc, 0x62, 0x2e, 0xbc, 0xbe, 0xa8, 0x6, 0x15, 0x20, 0x12, 0xd0, 0x13, 0xe, 0x7, 0x1e, 0x52, 0x3, 0x82, 0xe1, 0xca, 0x1d, 0xcb, 0xfc, 0xda, 0x7b, 0x42, 0x3f, 0xa0, 0xfd}} return a, nil } -var _quorumcertificateAdminStop_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4e\xf3\x30\x10\x84\xef\x7e\x8a\x51\x0f\xbf\xd2\x4b\xfa\x9f\x2b\xa0\x8a\x52\x38\x93\x06\x71\x37\xce\x26\xb1\x94\x78\xcd\x66\x43\x91\xaa\xbe\x3b\x72\x22\x2a\x90\x98\xa3\x3d\xb3\x33\x9f\x1f\x23\x8b\xe2\x69\xe0\x73\x39\xcc\x93\x92\x54\x25\x5a\xe1\x11\xff\x3f\xab\xb2\x38\x1e\x4f\x8f\x75\x6d\xcc\x6e\x87\x17\x9a\x14\x2a\x36\x4c\xd6\xa9\xe7\x80\x96\x05\xda\x13\xaa\x12\x8e\x83\x8a\x75\x0a\x65\x4c\xca\x71\x79\xff\x60\xf5\xa1\x43\x24\xf1\xdc\x18\xf3\x33\x7a\x31\x06\x00\xa2\x50\xb4\x42\xd9\xe4\xbb\x40\xb2\x47\x31\x6b\x5f\x38\xc7\x73\xd0\x2d\x2e\x8b\x25\x69\x20\x85\x6d\x46\x1f\x4e\xd4\xe2\x1e\xab\x3b\x7f\x63\x11\x3e\xdf\xfd\xfb\x35\x3d\x2f\x92\xef\x21\x4b\x04\x7b\xfc\xf1\x55\x2b\x8b\xed\xe8\xd9\x6a\xbf\xbd\x15\x24\x1d\x0e\x88\x36\x78\x97\x6d\x4a\x9e\x87\x06\x81\x15\x6b\x05\x84\x5a\x12\x0a\x8e\x12\xde\xbb\x5b\xb7\x6c\xb6\xe6\x96\xff\x1e\x97\x27\xf6\xd7\x05\x3b\x5b\xaf\x5f\xcd\xf5\x2b\x00\x00\xff\xff\x4d\x7d\x7c\x39\x62\x01\x00\x00" +var _quorumcertificateAdminStop_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x4f\xc3\x30\x14\x84\x77\xff\x8a\x53\x86\x2a\x59\xd2\xbd\x02\xaa\x12\x89\x99\x02\xea\x6e\x9c\x97\xc4\x52\xe2\x67\x9e\x5f\xe8\x50\xf5\xbf\x23\x27\xa2\xa2\x12\x37\x9e\xfd\xf9\xee\xec\xa7\xc8\xa2\x78\x19\xf9\xdc\x8c\x73\x52\x92\x63\x83\x4e\x78\x42\x71\xe7\x15\xc6\x6c\xb7\xf8\xa0\xa4\x50\xb1\x21\x59\xa7\x9e\x03\x3a\x16\xe8\x40\x38\x36\x70\x1c\x54\xac\x53\x28\x23\x29\xc7\xc5\xff\x66\xf5\xa1\x47\x24\xf1\xdc\x1a\xf3\x17\xbd\x18\x03\x00\x51\x28\x5a\xa1\x32\xf9\x3e\x90\xec\x60\x67\x1d\xca\x67\x16\xe1\xf3\xc9\x8e\x33\x55\xd8\x1c\x9c\xe3\x39\x68\x85\xcb\x42\x64\x8d\xa4\xb0\xed\xe4\xc3\x1b\x75\x78\xc4\x0a\xd7\x49\x59\x6c\x4f\xf5\xe7\x82\x3f\x6c\xee\x16\xd4\x87\x7c\xff\xa9\xcc\xe3\x76\xf8\xe7\xe8\x7d\xa5\x5f\xad\x0e\xd5\x2d\x28\x6b\xbf\x47\xb4\xc1\xbb\xb2\x68\x78\x1e\x5b\x04\x56\xac\x11\x10\xea\x48\x28\x38\xca\xab\xbf\xdc\xda\xa9\xa8\xcc\x8d\xff\x2d\x99\xbb\xc5\xd3\xf2\x1b\xe5\xfa\xfa\xd5\x5c\x7f\x02\x00\x00\xff\xff\x0d\x6e\x1d\x9b\x7d\x01\x00\x00" func quorumcertificateAdminStop_votingCdcBytes() ([]byte, error) { return bindataRead( @@ -4880,11 +4900,11 @@ func quorumcertificateAdminStop_votingCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/admin/stop_voting.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa5, 0xa0, 0xd9, 0x1d, 0x55, 0xa2, 0xfc, 0xf1, 0x23, 0x3d, 0xa6, 0xbd, 0xe5, 0xdd, 0xa2, 0x17, 0xc9, 0xeb, 0x3f, 0x53, 0xe2, 0x30, 0x9c, 0x47, 0x65, 0x66, 0xad, 0xd9, 0x55, 0xca, 0x9b, 0x79}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x77, 0xe8, 0x1e, 0x53, 0x15, 0x63, 0xab, 0xf7, 0x58, 0xcf, 0x72, 0xc3, 0x9c, 0x7f, 0xb1, 0x1c, 0x0, 0x14, 0xa6, 0x2f, 0x3e, 0xad, 0x97, 0xe2, 0x6d, 0xfa, 0xe9, 0x25, 0xc2, 0xec, 0xfb}} return a, nil } -var _quorumcertificateCreate_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x54\x4d\x6f\xdb\x30\x0c\xbd\xe7\x57\x70\x3d\x0c\x0e\xd0\x26\x3b\x07\xed\x8a\xc0\xdd\x86\x61\x87\x35\x4d\xb1\x9d\x15\x99\xb6\xb5\x2a\xa2\x47\xd1\xc9\x82\xa1\xff\x7d\xa0\xe4\x3a\x31\x26\x20\x88\x3e\xc8\x47\xbe\xc7\x07\xbb\x7d\x47\x2c\xf0\xd9\xd3\xb1\xf4\x7d\x14\xe4\x4d\x09\x35\xd3\x1e\x3e\xfc\xd9\x94\xeb\x87\x87\xa7\x4f\xdb\xed\x6c\xb6\x5c\xc2\x33\x46\x81\x67\x36\x21\x1a\x2b\x8e\x02\xd4\xc4\x60\x20\x50\x85\x20\x04\x8c\xbf\x7b\x8d\x30\xb0\x29\xe1\x07\x09\x32\x7c\xdf\xfd\x42\x2b\x19\x4d\x5a\x04\x4b\x41\xd8\x58\x51\xb4\x9f\xce\x7b\xd8\x21\xf4\x5d\x65\x04\x2b\x45\xe8\x23\xa6\x30\xec\xc8\xb6\x63\x30\x1c\x5b\x0c\x20\xad\x11\x70\x11\x2c\xed\x3b\x8f\x82\x55\xea\xa8\x45\x38\xa4\x4a\x94\x2b\x51\xf0\x27\x08\x88\x55\x54\xbc\x1d\x82\x65\x4c\xe8\x14\x2c\x82\x09\x95\x42\x1c\x8c\x77\x55\x6a\x1e\x0f\xc8\x27\xa8\x7b\xe9\x79\xa8\xaa\xa8\xc7\x16\x39\x37\x92\xa8\xb9\x08\x66\xc8\x89\x62\x5e\xb0\x4a\xd7\x49\x91\x47\xc3\x66\x8f\x82\x1c\x57\x7a\xd4\x9f\xa9\xf6\x2e\xac\xab\x8a\x31\xc6\x55\x02\x31\xf9\x00\x54\xa7\xe3\xa6\xcc\x31\x97\x92\xe9\x7d\x56\x4c\xa5\x52\x18\x2d\xf1\xf5\x21\x03\xb8\xea\x2d\x37\x4b\xad\x4a\x24\x60\x6b\xa9\x0f\x49\x15\xea\x90\x8d\xb8\xd0\x68\xae\x76\xe9\x42\xf3\x0d\x4f\xab\xa4\xd0\x70\x86\x17\x3c\x25\xd6\x79\x12\xde\xa3\x15\xe2\x81\x8c\x9c\xc7\x5a\x4c\x29\x0c\x9b\xeb\xb1\xa5\xad\xb0\x0b\xcd\xf5\xa4\x4c\xbe\x9b\xc3\xdf\xd9\x0c\x00\xa0\x63\xec\x0c\x63\x11\x5d\x13\x90\x57\xb0\xee\xa5\x5d\xe7\x6e\xc7\x18\x5d\xcb\x25\x7c\xc1\x81\x4c\xd2\x84\xb1\x46\x46\x9d\xd5\xe8\x99\xfc\x30\x70\x1d\x33\x3d\xca\xf0\x72\x07\x0d\xca\x00\x3e\x69\x7d\xfe\x7f\xf0\x13\xd6\x70\x97\xb7\x8b\x06\xa5\x34\x9d\xd9\x39\xef\xe4\x74\xfb\x7e\xe2\xff\xc5\x5a\x43\x3e\x16\xcb\xae\xdf\x79\x67\x97\xc9\x63\xa5\x5a\x89\x78\xfe\x6e\xc4\xd5\xb5\xd8\x11\x33\x1d\x8b\x39\xdc\xdf\x43\x67\x82\xb3\xc5\x55\x49\xbd\x57\x97\x08\xe4\x47\x30\x17\xc4\x84\xce\xb4\xae\xe6\x13\x2d\x52\x05\x54\xb7\x5d\x7a\x5a\x5d\x1b\xcd\x01\xc1\x89\x26\x47\x21\x36\x0d\x4e\xc8\xe5\xf8\xdb\x9b\x91\xe5\x22\xfb\x3e\x79\xaa\x78\x1b\x5c\xfe\x9f\x0e\xee\xbc\xbf\x68\x25\x8f\x6d\xa1\x45\x8b\xdb\x9b\x04\x7e\x0d\x42\xab\xe9\x47\x62\x91\xd0\xb7\xb9\x9d\x47\x23\x6d\x16\xfc\x75\xf6\xfa\x2f\x00\x00\xff\xff\xd3\x11\xd1\x52\x53\x04\x00\x00" +var _quorumcertificateCreate_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x54\xc1\x6e\xdb\x30\x0c\xbd\xe7\x2b\x88\x1c\x0a\x07\x68\x9d\x7b\xd0\xae\x28\x32\x6c\x18\x76\x58\xbb\x16\xdd\x99\x91\x99\x58\xab\x22\x7a\x14\x9d\x20\x18\xfa\xef\x03\x25\xd7\x89\x31\x03\x41\x24\x9a\x7c\xe4\x7b\x7c\x89\xdf\x77\x2c\x0a\x5f\x02\x1f\xd7\xa1\x4f\x4a\xf2\xb4\x86\xad\xf0\x1e\xe6\x93\xd8\x7c\x36\x5b\x2e\xe1\x85\x92\xc2\x8b\x60\x4c\xe8\xd4\x73\x84\x2d\x0b\x20\x44\x6e\x08\x94\x41\xe8\x4f\x6f\x19\x08\x4f\x6b\x78\x65\x25\x81\x1f\x9b\xdf\xe4\xb4\x20\x6a\x4b\xe0\x38\xaa\xa0\x53\x43\xfb\xe5\x43\x80\x0d\x41\xdf\x35\xa8\xd4\x18\x42\x9f\x28\xa7\x51\xc7\xae\x1d\x93\xe1\xd8\x52\x04\x6d\x51\xc1\x27\x70\xbc\xef\x02\x29\x35\x79\xa2\x96\xe0\x90\x3b\x71\xe9\xc4\x31\x9c\x20\x12\x35\xc9\xf0\x36\x04\x4e\x28\xa3\x73\x74\x04\x18\x1b\x83\x38\x60\xf0\x4d\x1e\x9e\x0e\x24\x27\xd8\xf6\xda\xcb\xd0\xd5\x50\x8f\x2d\x49\x19\x24\x53\xf3\x09\x70\xa8\x49\x8a\x6f\xd4\xe4\x70\x56\xe4\x11\x05\xf7\xa4\x24\x69\x65\x57\xfb\x60\xb3\xf7\xf1\xa1\x69\x84\x52\x5a\x65\x10\x2c\x17\xe0\x6d\xbe\x3e\xad\x4b\xce\xa5\x64\x16\x2f\x8a\x99\x54\x06\x63\x2d\xbe\x7d\x2e\x00\xbe\xf9\xa8\x2d\x52\x9b\x12\x19\xd8\x39\xee\x63\x56\x85\x3b\x12\x54\x1f\x77\x56\x6b\x53\xfa\xb8\xfb\x4e\xa7\x55\x56\x68\xb8\xc3\x1b\x9d\x32\xeb\xb2\x89\x10\xc8\x29\xcb\x40\x46\xcf\x6b\xad\xa6\x14\x86\xc3\xf5\x38\xd2\xb3\x8a\x8f\xbb\xeb\x49\x9b\x12\x5b\xc0\xdf\xd9\x0c\x00\xa0\x13\xea\x50\xa8\x4a\x7e\x17\x49\x56\x80\xbd\xb6\xd5\x33\x1e\xe8\x15\x43\x4f\x0b\xb8\x7a\x28\xa3\x8f\x05\xf6\x2c\x97\xf0\x95\x06\x66\x59\x20\xa1\x2d\x09\xd9\xe2\x46\x03\x95\x17\x03\xf1\xb1\x32\x90\x0e\x6f\xee\x60\x47\x3a\x80\x4f\x78\x2c\xfe\x4f\xfe\x49\x5b\xb8\x2b\xc7\xda\x61\x87\x1b\x1f\xbc\x7a\x4a\xf5\x86\x45\xf8\x78\x7b\x35\xf9\x09\xd4\x0f\x96\xf8\xa9\x5a\x76\xfd\x26\x78\xb7\xcc\xb6\x5b\x9b\xbb\x58\xce\xe0\xf6\xdc\xdf\x43\x87\xd1\xbb\x6a\xbe\xe6\x3e\x98\x5b\x14\x0a\x24\xe0\x05\x27\xe5\x33\xa3\xf9\x62\x22\x43\x86\x25\x73\xdd\xa5\xb7\xcd\xbd\x09\x0f\x04\x5e\xad\x38\x29\x0b\xee\x68\xc2\xab\xe4\xdf\xde\x8c\x04\xeb\xe2\xff\xec\xad\xea\x63\x81\xe5\x7b\xba\xc0\xf3\xf9\x62\x94\xb2\xbe\x7a\xe8\x54\x5b\xf3\xea\xf6\x26\x37\xb9\x06\xe5\xd5\xf4\x8f\xa3\xce\x5d\x9e\x4b\xf2\x23\x6a\x5b\x64\x79\x9f\xbd\xff\x0b\x00\x00\xff\xff\x8f\x15\x72\x2c\x67\x04\x00\x00" func quorumcertificateCreate_voterCdcBytes() ([]byte, error) { return bindataRead( @@ -4900,11 +4920,11 @@ func quorumcertificateCreate_voterCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/create_voter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc1, 0xaa, 0x8c, 0x53, 0x14, 0x61, 0xae, 0x77, 0x43, 0x9f, 0x9b, 0xf7, 0x46, 0x21, 0xfd, 0x67, 0xd2, 0x64, 0xf8, 0xc6, 0x4a, 0x8a, 0x4e, 0x63, 0x7f, 0xd7, 0xfe, 0x20, 0xb2, 0x2b, 0x8e, 0x28}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xad, 0x49, 0x65, 0x97, 0x80, 0x97, 0x22, 0x49, 0xa2, 0xf8, 0x29, 0x1b, 0x8, 0xa4, 0xf, 0x7f, 0xbe, 0xec, 0x14, 0x9f, 0x6a, 0x19, 0xfc, 0x68, 0x8a, 0xca, 0xa2, 0xab, 0x45, 0x42, 0x14, 0xcd}} return a, nil } -var _quorumcertificateScriptsGenerate_quorum_certificateCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\x31\x4b\x03\x41\x10\x46\xfb\xfd\x15\x1f\x69\xbc\x6b\x12\x6d\x2c\x02\x12\x64\xa3\x92\xf2\x0c\x56\x62\xb1\x5e\xe6\xe2\xc2\xed\xec\x39\x3b\x83\x01\xf1\xbf\x8b\xc9\xc5\x68\xb6\x5b\x78\x6f\xde\x4c\x4c\x43\x16\xc5\x7d\x9f\x3f\x7c\x6f\x45\x49\x1a\x8f\x4e\x72\xc2\xe5\xae\xf1\xb7\xcb\xe5\xe3\xdd\x7a\xed\xdc\x6c\x86\x07\xd2\x02\x7d\x23\x14\x0d\x6a\x05\xb9\x43\x40\x7b\x70\x2e\x0a\x1a\x8f\x2d\x31\x49\xd0\x98\xd9\xb9\xc1\x5e\xd1\x19\x23\x85\xc8\xd5\x48\xad\x78\x43\xbb\x39\x9e\x56\xac\x57\xd7\xf5\xfc\x7f\x74\x7a\xca\x7f\x3a\x07\x00\x3d\xe9\x71\x7e\xc1\xcd\x19\xbd\x25\x1d\x3f\xa5\xaa\x0f\xbc\x90\x9a\xf0\xaf\xf2\xfc\xb7\xfa\x32\x1d\x97\xa3\xc6\xb2\x58\xf2\x24\x1a\xbb\xd8\x06\xa5\xaa\xde\xdb\x3f\x6f\xb1\xc0\x10\x38\xb6\xd5\xc4\x67\xeb\x37\xe0\xac\xc7\xa3\x08\xef\x7b\x11\xed\xc9\x9c\xd4\xce\x7d\x7d\x07\x00\x00\xff\xff\xc6\x91\xba\xec\x41\x01\x00\x00" +var _quorumcertificateScriptsGenerate_quorum_certificateCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\x41\x4b\x03\x31\x10\x85\xef\xf9\x15\x8f\xbd\x98\x5c\x5a\xbc\x78\x28\x48\x0f\x01\xa5\xc7\x3d\x78\x12\x0f\x21\x9d\xad\x81\x64\x52\x33\x13\x14\xc4\xff\x2e\xb6\x5b\xeb\x3a\xb7\x19\xbe\x8f\xf7\x26\x95\x63\x6d\x8a\x87\x5c\xdf\x7d\xee\xa2\xd4\x46\x8f\xa9\xd5\x82\x61\x71\x1b\x8c\x59\xaf\xf1\x48\x2a\xd0\x57\x82\x68\xd0\x2e\xa8\x13\x02\xe2\x99\xb9\x11\x8c\x1e\x07\x62\x6a\x41\x53\x65\x63\x42\x8c\x24\x62\x43\xce\x0e\x53\x67\x94\x90\xd8\xce\xf4\x8e\xf7\xf4\xb1\xc1\xd3\x8e\xf5\xf6\xce\x6d\x96\x05\x56\xd7\x2a\x9f\xc6\x00\x40\x26\xbd\xe4\x08\xee\xff\xd1\x07\xd2\x79\x11\xeb\xce\x7c\x23\xed\x8d\x7f\x95\xe7\xbf\xa9\x2f\xab\xb9\x24\x8d\xbd\xb6\x5e\x3c\x35\x4d\x53\x8a\x41\xc9\xba\x93\xfd\x33\xdb\x2d\x8e\x81\x53\xb4\x83\xaf\x3d\xef\xc1\x55\x2f\xcf\x11\xde\x4e\x22\xe2\xd5\x1c\x9c\x31\x5f\xdf\x01\x00\x00\xff\xff\x81\x01\xe7\xc1\x4d\x01\x00\x00" func quorumcertificateScriptsGenerate_quorum_certificateCdcBytes() ([]byte, error) { return bindataRead( @@ -4920,11 +4940,11 @@ func quorumcertificateScriptsGenerate_quorum_certificateCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/generate_quorum_certificate.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe6, 0x66, 0xdb, 0xc8, 0xb6, 0x96, 0xb4, 0x7e, 0x86, 0xc, 0x90, 0x5a, 0xca, 0xd2, 0x3a, 0x4d, 0x1e, 0xfc, 0x36, 0x84, 0x76, 0x62, 0xb4, 0x4c, 0x96, 0xe0, 0x89, 0xbe, 0x4d, 0xb8, 0x59, 0x8b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0x7e, 0xec, 0xe8, 0x58, 0x2b, 0x59, 0xe0, 0xfa, 0xc3, 0x3, 0xd8, 0xb2, 0xbd, 0xf7, 0xe1, 0xda, 0xa1, 0x9b, 0x9c, 0x12, 0x5, 0x3d, 0xdd, 0x99, 0x39, 0x29, 0x37, 0x8c, 0xee, 0x72, 0x48}} return a, nil } -var _quorumcertificateScriptsGet_clusterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x30\xa8\x08\x74\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x28\xf4\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\xb4\x42\x35\x43\x0f\xca\x52\xa8\xe6\xe2\x52\x50\x50\x50\xc8\x49\x2d\x51\x80\xea\x2b\x56\xb0\x45\x53\x9b\x9e\x5a\x02\xe5\x14\x6b\x68\x42\xd4\x17\xa5\x96\x94\x16\xe5\xc1\xb5\x44\x23\xdb\x19\xcb\xc5\x55\x0b\x08\x00\x00\xff\xff\x6c\xe0\xad\x73\xb8\x00\x00\x00" +var _quorumcertificateScriptsGet_clusterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x50\x42\x11\x53\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x28\xf0\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\xb4\x42\x35\x4f\x0f\xca\x52\xa8\xe6\xe2\x52\x50\x50\x50\xc8\x49\x2d\x51\x80\xea\x2b\x56\xb0\x45\x53\x9b\x9e\x5a\x02\xe5\x14\x6b\x68\x42\xd4\x17\xa5\x96\x94\x16\xe5\xc1\xb5\x44\x23\xdb\x19\xcb\xc5\x55\x0b\x08\x00\x00\xff\xff\xf7\xb0\x6f\x1a\xc4\x00\x00\x00" func quorumcertificateScriptsGet_clusterCdcBytes() ([]byte, error) { return bindataRead( @@ -4940,11 +4960,11 @@ func quorumcertificateScriptsGet_clusterCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x18, 0x9a, 0x6f, 0x7, 0xc4, 0x89, 0xbf, 0x2, 0xac, 0xdd, 0x29, 0x29, 0x26, 0x43, 0x97, 0x38, 0xdb, 0x4a, 0x10, 0x1b, 0x7a, 0x37, 0x77, 0xb6, 0x72, 0xac, 0x95, 0x27, 0x7d, 0x7a, 0xf7, 0xe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0x25, 0x34, 0x4, 0xee, 0x6c, 0x4f, 0xfe, 0x9f, 0x3c, 0x45, 0xb8, 0x36, 0x94, 0x90, 0xe, 0xd1, 0xe0, 0x85, 0x2c, 0x17, 0x23, 0xb8, 0x1d, 0xda, 0x3a, 0xc0, 0x29, 0xde, 0x80, 0x86, 0x3d}} return a, nil } -var _quorumcertificateScriptsGet_cluster_completeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xb1\x4e\xc3\x40\x10\x44\xfb\xfd\x8a\xa1\xc2\x6e\x12\x68\x28\x22\xa5\x80\x0b\xa0\x94\x26\xa2\x42\x14\x07\xac\xc3\x49\x77\xbb\xd6\xed\x9e\x88\x84\xf8\x77\x0a\x1b\x04\xe5\x48\xef\xcd\x4c\x2a\x93\x56\xc7\x5d\xd6\x8f\x90\x9b\x39\xd7\x21\x60\xac\x5a\x70\x71\x1a\xc2\xf5\x6e\xf7\x70\x7b\x38\x10\xad\xd7\xb8\x67\x37\xf8\x3b\xc3\x3c\x7a\x33\xe8\x88\x88\xd7\xd9\x39\x37\x0c\x01\x47\x16\xae\xd1\x93\x0a\xd1\xd4\x5e\x30\x36\x41\x89\x49\xba\x85\xda\xcb\x1b\x9f\x36\x78\xdc\x8b\x5f\x5e\xf5\x1b\xdc\xa8\x66\x7c\x12\x01\x40\x66\xff\x29\x33\x6c\xff\xff\x59\x1d\xd9\x97\x60\x5d\x3f\xf3\x95\xbd\x55\xf9\x55\x9e\xfe\x4e\x3c\xaf\x92\x05\x2d\x53\x66\xe7\xae\xc7\xd9\x16\x92\x32\xd1\xd7\x77\x00\x00\x00\xff\xff\xa8\x61\x29\x9e\xec\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_completeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\x3f\x4b\x43\x41\x10\xc4\xfb\xfd\x14\x63\x1a\xdf\x35\x09\x36\x16\x81\x34\x1e\x28\x29\x53\x58\x89\xc5\xf1\xdc\x17\x0f\xf6\x76\xc3\xed\x1e\x0a\xe2\x77\xb7\x48\x14\x53\xce\xf0\x9b\x3f\xb5\x9d\xac\x07\x1e\xc5\x3e\xb2\x0c\x0f\xee\x87\x8c\xa5\x5b\xc3\xea\xca\x5b\x11\x6d\x36\x78\xe2\x70\xc4\x3b\xc3\xa3\xc4\x70\xd8\x82\x82\xf9\xcc\xdc\x3a\x0e\x19\x47\x56\xee\x25\xaa\x29\x51\x99\x67\x76\x9f\x8a\x48\xc2\x32\x14\xad\x54\x9d\x2e\xf4\x5e\xdf\xf8\x73\x8b\xe7\xbd\xc6\xdd\x7d\xda\xe2\xc1\x4c\xf0\x45\x04\x00\xc2\xf1\x5b\xea\xd8\x5d\x7f\x5b\x1f\x39\x2e\xc2\xa7\x74\xe6\x3b\xc7\xe8\xfa\x17\x79\xf9\x3f\xf1\xba\xae\x9e\xad\x9d\x84\x83\xa7\x84\x9b\x1d\xb4\x0a\xd1\xf7\x4f\x00\x00\x00\xff\xff\xf4\x49\xb4\xa1\xf8\x00\x00\x00" func quorumcertificateScriptsGet_cluster_completeCdcBytes() ([]byte, error) { return bindataRead( @@ -4960,11 +4980,11 @@ func quorumcertificateScriptsGet_cluster_completeCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_complete.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0xac, 0xe1, 0x2a, 0x34, 0xa3, 0x58, 0x0, 0xf9, 0xf8, 0xe3, 0xd6, 0xf7, 0x15, 0xf8, 0x4b, 0xa9, 0xd5, 0xf2, 0xf2, 0x57, 0x95, 0x98, 0xf1, 0xfa, 0x53, 0x4c, 0x36, 0x38, 0xa9, 0xa5, 0xa4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x3, 0xb, 0xcc, 0xb6, 0x3, 0x6, 0x7, 0xb7, 0xb7, 0x52, 0x1, 0xe3, 0xa5, 0x66, 0x48, 0x6e, 0xc6, 0xb9, 0x38, 0xdc, 0x35, 0x47, 0x51, 0x62, 0x9c, 0x7b, 0x6b, 0xc4, 0x86, 0xff, 0x13}} return a, nil } -var _quorumcertificateScriptsGet_cluster_node_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8d\x41\xcb\x82\x40\x14\x45\xf7\xf3\x2b\xee\x52\x37\xf2\x7d\x10\x2e\x84\x16\xa1\x05\x2e\x4d\xa2\x45\xb4\xa8\x7c\xda\x80\xbe\x91\x99\x37\x24\x88\xff\xbd\xc5\x48\xd4\xf2\x5e\xce\xe1\xe8\x61\x34\x56\x70\xe8\xcd\x2b\xef\xbd\x13\xb2\x55\x8e\xd6\x9a\x01\x7f\x53\x95\xef\x8a\xe2\xb8\xaf\x6b\xa5\x46\x7f\x47\xeb\x19\xc3\x4d\x73\xf4\x08\x60\xc9\x0d\x4d\x19\x4e\x25\xcb\x7f\x1a\x67\x98\x6b\xb1\x9a\xbb\xf0\xa4\x9b\x05\xb3\x52\x00\xd0\x93\x60\x55\x1c\xb6\xbf\xa9\xa4\x23\x59\x87\x8b\xe2\xc0\x5b\x12\x6f\xf9\xa3\x5c\xbe\x73\xd7\x84\x4d\x43\x67\xd2\xdd\x53\x9c\x52\xcb\x3b\x00\x00\xff\xff\x3e\x1f\x66\x7e\xbf\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_node_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8d\xb1\xaa\x83\x40\x10\x45\xfb\xfd\x8a\x8b\x95\x36\xc2\x83\x87\x85\x90\x4a\x08\x58\x86\x10\x52\x84\x14\xa2\xa3\x59\x58\x67\xc3\xcc\x48\x02\xe2\xbf\xa7\x50\x42\x2c\xef\xe5\x1c\x8e\x1f\x9f\x51\x0c\xc7\x10\x5f\x55\x98\xd4\x48\x4e\x15\x7a\x89\x23\x92\xdd\x97\x38\xd7\xb4\x2d\xa9\xa6\x4d\x08\x19\xfa\x89\x31\x36\x9e\xd3\x76\x05\x6a\xee\xe8\x5d\xe2\x52\xb3\xfd\x15\x59\x89\xf9\x6c\xe2\x79\x58\x9f\xe2\x7f\xc1\xec\x1c\x00\x04\x32\x6c\x8a\xe2\xb0\xcf\xe6\x03\xd9\x36\x34\xcd\x56\x5e\xc8\x26\xe1\xaf\x72\xfb\xcd\xdd\x73\x8e\x1d\x5d\xc9\x0f\x0f\x53\xe7\x96\x4f\x00\x00\x00\xff\xff\x3d\x36\xdc\x4a\xcb\x00\x00\x00" func quorumcertificateScriptsGet_cluster_node_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -4980,11 +5000,11 @@ func quorumcertificateScriptsGet_cluster_node_weightsCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_node_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x27, 0x8d, 0x33, 0xdc, 0x7a, 0x3e, 0xbe, 0xf7, 0xb5, 0x79, 0xf1, 0x0, 0xc4, 0xb2, 0xbb, 0x1e, 0x27, 0x9d, 0xff, 0xb8, 0xfc, 0x54, 0x0, 0x52, 0xc0, 0xe8, 0x57, 0x77, 0x5b, 0xc8, 0x16, 0xc3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x29, 0x1d, 0x52, 0x4, 0x6b, 0x83, 0x52, 0x76, 0x40, 0x43, 0xaf, 0xa, 0xe2, 0xe4, 0xd8, 0xcb, 0x79, 0x13, 0xea, 0xc6, 0xca, 0x2a, 0x11, 0x64, 0x1c, 0x9e, 0x29, 0xfc, 0x74, 0x8, 0xeb, 0x69}} return a, nil } -var _quorumcertificateScriptsGet_cluster_vote_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x30\xa8\x08\x74\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x28\xf4\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\x84\x30\xcc\x4c\x14\xaa\xb9\xb8\x14\x14\x14\x14\x72\x52\x4b\x14\xa0\x0a\x8b\x15\x6c\x51\x2d\xd0\x4b\x4f\x2d\x81\x72\x8a\x35\x34\x21\xea\x8b\x52\x4b\x4a\x8b\xf2\xe0\x5a\xa2\x91\x2d\x89\xd5\x2b\xcb\x2f\x49\x0d\xc9\x28\x4a\x2d\xce\xc8\xcf\x49\x01\x69\xa9\x05\x04\x00\x00\xff\xff\x7f\xd1\x70\x38\xb9\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_vote_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x50\x42\x11\x53\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x28\xf0\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\x84\x30\xcc\x4c\x14\xaa\xb9\xb8\x14\x14\x14\x14\x72\x52\x4b\x14\xa0\x0a\x8b\x15\x6c\x51\x2d\xd3\x4b\x4f\x2d\x81\x72\x8a\x35\x34\x21\xea\x8b\x52\x4b\x4a\x8b\xf2\xe0\x5a\xa2\x91\x2d\x89\xd5\x2b\xcb\x2f\x49\x0d\xc9\x28\x4a\x2d\xce\xc8\xcf\x49\x01\x69\xa9\x05\x04\x00\x00\xff\xff\xe3\x59\xc4\x5f\xc5\x00\x00\x00" func quorumcertificateScriptsGet_cluster_vote_thresholdCdcBytes() ([]byte, error) { return bindataRead( @@ -5000,11 +5020,11 @@ func quorumcertificateScriptsGet_cluster_vote_thresholdCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_vote_threshold.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0xc1, 0x7c, 0x17, 0x83, 0x18, 0x3b, 0xc, 0xe4, 0xc3, 0xdd, 0xae, 0xd5, 0x42, 0xcc, 0x41, 0x67, 0x72, 0xac, 0x6e, 0x80, 0x88, 0xb4, 0x22, 0xf, 0x39, 0x74, 0xda, 0x7e, 0xe1, 0xd6, 0x11}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x90, 0x39, 0xfc, 0xde, 0xe2, 0xb0, 0x6e, 0xbb, 0x43, 0x4, 0x67, 0x78, 0x3e, 0x0, 0x52, 0x62, 0x27, 0xd5, 0x72, 0x9a, 0xcb, 0xd8, 0x3c, 0x8e, 0x11, 0xc6, 0xdb, 0x82, 0x38, 0x3f, 0xb5, 0xd1}} return a, nil } -var _quorumcertificateScriptsGet_cluster_votesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\x31\x4f\x84\x40\x10\x46\xfb\xf9\x15\x5f\x79\xd7\x70\xda\x58\x5c\x62\x61\x38\x4d\x28\x81\x68\x43\x28\x56\x98\xd5\x4d\x60\x97\xcc\xce\x2a\xc6\xf8\xdf\x0d\x82\x46\xca\x99\xcc\xbc\xf7\xdc\x38\x05\x51\x3c\x0c\xe1\x3d\x1f\x52\x54\x96\x32\x87\x95\x30\xe2\x6a\x2e\xf3\xbb\xcb\xa5\xba\xaf\x6b\xa2\xd3\x09\x15\x6b\x12\x1f\x61\x3c\x8c\x88\xf9\x40\xb0\x78\x0a\xca\x11\x36\x08\xf4\x95\x11\x27\xee\x9c\x75\xdc\xa3\x5b\x51\x44\x53\x7a\x86\x4d\x1e\xa3\x71\xfe\xb0\x6d\x0b\xdf\xf3\x7c\xc6\x63\xe1\xf5\xfa\xe6\x78\x46\xb3\x93\x67\x0b\xb3\xc5\x27\x11\x00\x0c\xac\xbf\xb0\x88\xdb\x7d\x66\xf6\xc2\xba\x0d\xf1\x70\x5c\xef\xe5\x27\xf2\xef\xa5\xf9\xaf\x6c\xb3\xb7\x25\x97\xe8\xeb\x3b\x00\x00\xff\xff\x98\x1f\xda\xd8\xf5\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_votesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xbd\x4a\xc5\x40\x10\x85\xfb\x79\x8a\xc3\xad\x92\x26\x17\x1b\x8b\x0b\x56\x01\x21\xa5\x82\x36\x21\xc5\xb2\x99\xd5\x85\xcd\x6e\x98\x99\xf8\x83\xf8\xee\x12\x13\xe5\xa6\x9c\x9f\x73\xbe\x2f\x4e\x73\x11\xc3\x7d\x2a\xef\x6d\x5a\xd4\x58\x1e\x5a\x04\x29\x13\x4e\x87\xdd\x89\xe8\x7c\xc6\x23\xdb\x22\x59\xe1\x32\x9c\x88\xfb\x44\x09\x78\x2e\xc6\x8a\x50\x04\xf6\xca\xd0\x99\x7d\x0c\x91\x47\xf8\x2d\x4a\xe4\xbc\x67\xd5\xca\xa5\x54\x23\x2c\x19\x93\x8b\xb9\xda\xaf\x5d\x1e\xf9\xe3\x82\xa7\x2e\xdb\xcd\x6d\x7d\x41\x7f\x80\x36\x6b\xf7\x80\x2f\x22\x00\x48\x6c\x7f\xa5\x8a\xbb\xa3\x72\xf3\xc2\xb6\x0f\x5a\xd5\xdb\xbf\xfc\xca\xfe\x47\xfa\x6b\xe4\xd0\xbc\xad\xda\x44\xdf\x3f\x01\x00\x00\xff\xff\xc7\xaa\x11\x90\x01\x01\x00\x00" func quorumcertificateScriptsGet_cluster_votesCdcBytes() ([]byte, error) { return bindataRead( @@ -5020,11 +5040,11 @@ func quorumcertificateScriptsGet_cluster_votesCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_votes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe3, 0x7b, 0x4e, 0x81, 0xc6, 0xce, 0x66, 0x20, 0x4d, 0xa4, 0x47, 0x99, 0x55, 0xd7, 0xa9, 0x6f, 0x27, 0x7c, 0x1e, 0x2b, 0xb4, 0xac, 0x53, 0x2b, 0x7e, 0xfa, 0xf7, 0x8b, 0x0, 0xc2, 0x22, 0x32}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0x5d, 0xff, 0x6e, 0xd7, 0xf9, 0x68, 0xe, 0xcb, 0x93, 0xff, 0xd6, 0xd2, 0xad, 0xc1, 0xc5, 0xa6, 0x42, 0x74, 0x84, 0x25, 0xb9, 0x41, 0x5, 0x9b, 0x72, 0x51, 0x1e, 0x7d, 0xec, 0x22, 0xbd}} return a, nil } -var _quorumcertificateScriptsGet_cluster_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x30\xa8\x08\x74\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x28\xf4\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\x84\x30\xcc\x4c\x14\xaa\xb9\xb8\x14\x14\x14\x14\x72\x52\x4b\x14\xa0\x0a\x8b\x15\x6c\x51\x2d\xd0\x4b\x4f\x2d\x81\x72\x8a\x35\x34\x21\xea\x8b\x52\x4b\x4a\x8b\xf2\xe0\x5a\xa2\x91\x2d\x89\xd5\x2b\xc9\x2f\x49\xcc\x09\x4f\xcd\x4c\xcf\x28\xe1\xe2\xaa\x05\x04\x00\x00\xff\xff\xe3\x8b\x1a\x8c\xb5\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8d\x31\x0b\xc2\x30\x14\x84\xf7\xf7\x2b\x8e\x4e\xed\x52\x10\xa4\x83\xe0\x54\x10\x3a\x3a\x88\x83\x38\x84\xfa\x5a\x03\x2f\x89\x24\x2f\x28\x88\xff\xdd\x21\x45\xec\x76\x77\x7c\xc7\x67\xdd\x23\x44\xc5\x41\xc2\xb3\x97\x9c\x94\xe3\xb1\xc7\x14\x83\x43\xb5\xda\x2a\x22\x33\x8e\x9c\x52\x6d\x44\x1a\x4c\xd9\xc3\x19\xeb\xeb\xb1\x00\x83\xbf\xf1\x6b\x87\xd3\xe0\x75\xd3\x35\x25\x74\x5b\xbc\x89\x00\x40\x58\xb1\x80\x09\xfb\xb5\xac\x9d\x59\x97\x92\xea\xa6\xf0\x91\x35\x47\xff\xbb\x5c\xfe\x25\xd7\x56\x83\x1a\x39\xb3\x9d\xef\x4a\xf4\xf9\x06\x00\x00\xff\xff\xf1\x3a\x40\x1a\xc1\x00\x00\x00" func quorumcertificateScriptsGet_cluster_weightCdcBytes() ([]byte, error) { return bindataRead( @@ -5040,11 +5060,11 @@ func quorumcertificateScriptsGet_cluster_weightCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_weight.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x77, 0xf7, 0x57, 0xa2, 0x71, 0x66, 0x1c, 0x23, 0x5b, 0xb0, 0xd8, 0xa4, 0x24, 0xf0, 0x4b, 0xc1, 0x4, 0x3a, 0x17, 0xe8, 0x8f, 0xf3, 0xe4, 0xaf, 0xf, 0x90, 0xe5, 0x76, 0x2e, 0x7f, 0xf1, 0x70}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7c, 0x30, 0x57, 0xa9, 0x38, 0x97, 0xfa, 0xe9, 0x63, 0xc9, 0x3a, 0x59, 0xce, 0x31, 0x44, 0x6f, 0x2a, 0xc0, 0xf6, 0xab, 0x44, 0xe5, 0x12, 0x7c, 0x6a, 0xcb, 0x8b, 0xe8, 0x57, 0x7e, 0xce, 0x2d}} return a, nil } -var _quorumcertificateScriptsGet_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\x3f\x6b\xc3\x40\x0c\xc5\x77\x7d\x8a\x37\x26\x4b\xd2\x2e\x1d\x02\x1d\xca\xa5\x85\x8c\xa9\xe9\x14\x32\xa8\x17\xb9\x39\xb8\x3f\x46\xd1\x61\x97\xd2\xef\x5e\x8a\x6d\x88\x37\x81\xf4\xf4\xfb\xbd\x90\xba\xa2\x86\xb7\x58\x7a\x17\xeb\xcd\x44\x8f\x0e\xad\x96\x84\x87\xe1\xe8\x5e\xf6\xfb\xf7\xd7\xa6\x21\xda\x6e\xd1\x78\x0d\x9d\xc1\x0a\x54\xac\x6a\x06\x67\xb0\x2a\x7f\xa3\xb4\x70\x25\x46\xf1\x56\x14\xd3\x97\x1b\xfa\x60\x57\x70\x8c\xff\x6b\xbb\x4a\x50\x24\x31\xbe\xb0\x31\x51\x57\x3f\xd1\xd6\x8c\xc4\x21\xaf\xfc\x98\x38\xe4\x8b\x0c\x3b\x7c\x1c\xb2\x3d\x3e\xad\x77\x38\x2d\x9c\x36\xd3\x74\xc6\x0f\x11\x00\x44\x31\xf8\x99\xf5\xbc\x2c\xb0\xf9\x12\x9b\x3d\x56\xeb\xf1\x7e\x92\x9e\x23\xa7\x7b\xea\x99\xe8\xf7\x2f\x00\x00\xff\xff\x60\x84\x69\xbf\x09\x01\x00\x00" +var _quorumcertificateScriptsGet_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\x31\x6b\xc3\x40\x0c\x85\x77\xfd\x8a\x47\x26\x7b\x49\xe8\xd2\x21\xd0\xc9\x50\xc8\x58\x4a\xa7\x90\x41\x5c\xe4\xfa\x40\x77\x67\x74\x32\x6e\x29\xfd\xef\xa5\xd8\x86\x78\x13\x92\x3e\xde\xf7\x62\x1a\x8b\x39\x5e\xb5\xcc\x9d\x4e\xd5\xc5\xde\x3a\xf4\x56\x12\x0e\xbb\xdd\x81\xe8\x74\xc2\x7b\xb0\x38\x3a\xbc\xc0\xc4\x27\xcb\xe0\x0c\x36\xe3\x6f\x94\x1e\x5d\x51\x95\xe0\xc5\xb0\x52\x15\x73\xf4\x01\xac\xfa\x7f\xf6\x41\xa2\x21\x89\xf3\x9d\x9d\x89\x38\x04\xa9\xb5\x61\xd5\x16\xfd\x94\x91\x38\xe6\x26\x2c\xe4\x25\xdf\xe5\xeb\x8c\x8f\x4b\xf6\xa7\xe7\xf6\x8c\xeb\xce\xe5\xb8\x4e\x37\xfc\x10\x01\x80\x8a\x23\x6c\x99\x2f\xfb\x32\xc7\x4f\xf1\xcd\xa7\x69\x97\xff\x55\x7e\x43\xae\x8f\xa9\x37\xa2\xdf\xbf\x00\x00\x00\xff\xff\xa6\xc7\x74\x36\x15\x01\x00\x00" func quorumcertificateScriptsGet_clustersCdcBytes() ([]byte, error) { return bindataRead( @@ -5060,11 +5080,11 @@ func quorumcertificateScriptsGet_clustersCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_clusters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0xea, 0xb9, 0x6, 0x48, 0xf1, 0x64, 0x54, 0x82, 0x9f, 0xea, 0xc1, 0x19, 0xa6, 0xb8, 0x26, 0xca, 0xe0, 0xa7, 0xa8, 0x17, 0x29, 0x8a, 0x2e, 0x2c, 0xc1, 0x93, 0x31, 0x77, 0xeb, 0x2c, 0x18}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0xfa, 0xb0, 0xff, 0x20, 0xaf, 0xe0, 0x18, 0x68, 0x21, 0x71, 0xea, 0x8d, 0x67, 0x52, 0xa1, 0x54, 0x7b, 0xe3, 0x84, 0xef, 0xbd, 0x91, 0xcf, 0x60, 0x8, 0x86, 0xd8, 0xe, 0xed, 0xb7, 0xea}} return a, nil } -var _quorumcertificateScriptsGet_node_has_votedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x91\x41\x6f\xd3\x40\x10\x85\xef\xfb\x2b\xde\xa9\x6a\xa4\x2a\xe1\xdc\x1b\x24\x45\xf4\x82\x68\x5c\xb8\x4f\xec\x71\x76\xd5\xf5\x8c\xb5\x33\x8e\x41\x88\xff\x8e\xd6\x4e\x24\xe8\xd9\x9e\xf7\xbe\xf7\x6d\x1a\x46\x2d\x8e\xcf\x59\xe7\x7d\x9e\xcc\xb9\xbc\xec\xd1\x17\x1d\xf0\xe1\xe7\xcb\xfe\xe3\xe1\x70\x7c\x6a\x9a\x10\x76\x3b\x1c\xd9\xa7\x22\x06\xc2\x49\x35\x33\x09\x92\x74\xa9\x25\x4f\x72\x46\xea\x41\x10\xed\x18\x91\x0c\x36\x9d\x86\xe4\xce\x1d\x08\x17\x75\x46\xaf\x05\x1e\x93\x81\x47\x6d\x63\x08\xe3\x74\x42\x3f\x09\x06\x4a\x72\x5f\xcf\x9e\x0f\x8f\x68\xbc\x24\x39\x6f\x1e\xf1\x49\x35\xe3\x77\x08\x00\xb0\xdb\xe1\xb9\xc7\xcc\xa0\xc2\x48\x02\x8f\x0c\x73\x7a\xab\xa5\x34\xb5\x9e\x54\x30\x46\x32\xc6\xfd\x45\x17\x14\x51\xaf\x3f\x8e\x45\xcf\x85\xcd\x36\x0f\xcb\x4d\xc5\xb0\x5b\xe2\xb2\x2f\x93\xf9\xca\xb3\x64\x9b\xa7\x9c\x61\xae\xa5\x62\x4b\xb7\xac\xf9\x42\xf6\x43\xeb\x8e\xc2\x55\x93\xe1\xb5\x4c\xbc\x45\x93\xa4\x65\xcc\x7c\xcb\x53\xc9\xbf\x30\x93\x38\x5c\xf1\x26\x3a\x63\x8e\xec\x91\x4b\x05\x8f\x74\x59\xeb\xbb\xab\x06\xc6\xfe\xfb\xf1\xf8\xf4\xf5\x75\x6d\x7f\x80\x0e\xc9\x57\x3d\x2d\x19\x6f\x97\xd4\xb2\xd8\xfe\xff\x5d\xb6\x49\xbe\x5d\x57\xe1\xee\xee\xdd\xb7\x7f\x71\xaf\x4a\x37\x21\xfc\xf9\x1b\x00\x00\xff\xff\x27\xdb\x8d\xf4\xe0\x01\x00\x00" +var _quorumcertificateScriptsGet_node_has_votedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x91\x41\x8f\xd3\x30\x10\x85\xef\xfe\x15\x4f\x7b\x58\x35\xd2\xaa\xb9\xef\x91\x02\x62\x2f\x08\xba\x0b\xf7\xd9\x64\x52\x5b\x75\x66\x22\xcf\xa4\x11\x42\xfc\x77\xe4\xa4\x95\x28\x57\xdb\xf3\xe6\x7b\x9f\xd3\x38\x69\x71\x7c\xce\xba\x1c\xf2\x6c\xce\xe5\xfb\x01\x43\xd1\x11\x0f\x77\x67\x0f\x21\xb4\x2d\x8e\xec\x73\x11\x03\xe1\x5d\x35\x33\x09\x92\xf4\xa9\x23\x4f\x72\x42\x1a\x40\x10\xed\x19\x91\x0c\x36\xbf\x8f\xc9\x9d\x7b\x10\x2e\xea\x8c\x41\x0b\x3c\x26\x03\x4f\xda\xc5\x10\xa8\xeb\xd8\x6c\x47\x39\x37\x18\x66\xc1\x48\x49\x76\x75\xfc\xe5\xe3\x33\x5e\xbd\x24\x39\x35\xcf\xf8\xa0\x9a\xf1\x3b\x04\x00\x68\x5b\xbc\x0c\x58\x18\x54\x18\x49\xe0\x91\x61\x4e\xe7\xba\x9c\xe6\xce\x93\x0a\xa6\x48\xc6\xd8\x5d\x74\x45\x12\xf5\xfa\x70\x2a\x7a\x2a\x6c\xd6\x3c\xad\x33\x15\xc7\x6e\x89\x6b\xd7\x4c\xe6\x1b\xd7\x9a\x6d\x9e\x72\x86\xb9\x96\x8a\x2f\xfd\xda\xea\x0b\xd9\x4f\xad\x7d\x0a\x57\x65\x86\xb7\x32\xf3\x1e\xaf\x49\x3a\xc6\xc2\xb7\x3c\x95\xfc\x0b\x0b\x89\xc3\x15\x67\xd1\x05\x4b\x64\x8f\x5c\x2a\x78\xa4\xcb\xb6\xbe\xbf\xea\x60\x1c\x7e\x1c\x8f\x9f\xbe\xbe\x6d\xdb\x9f\xa0\x63\xf2\x4d\x53\x47\xc6\xfb\x35\xb5\xac\xd6\xef\xff\x68\x9f\xe4\xdb\xb5\x15\x1e\x1f\xff\xbb\xfb\x17\xf7\xaa\xb4\x09\xe1\xcf\xdf\x00\x00\x00\xff\xff\xa0\xa8\x11\xb6\xec\x01\x00\x00" func quorumcertificateScriptsGet_node_has_votedCdcBytes() ([]byte, error) { return bindataRead( @@ -5080,11 +5100,11 @@ func quorumcertificateScriptsGet_node_has_votedCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_node_has_voted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0xf9, 0xf9, 0x94, 0x9c, 0xff, 0xe1, 0x6a, 0x1, 0x85, 0x98, 0x1f, 0xfc, 0x7c, 0xef, 0xe4, 0x42, 0x47, 0x88, 0x91, 0x70, 0x78, 0x6c, 0xbc, 0xc1, 0xb0, 0xa8, 0x7c, 0xff, 0x13, 0x4b, 0x27}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0xf8, 0x21, 0xe, 0xb3, 0x57, 0x9d, 0x37, 0xd, 0xfa, 0xd5, 0x9e, 0x93, 0xb5, 0xaf, 0xf1, 0x62, 0xd9, 0x2b, 0x82, 0xe9, 0x2c, 0x36, 0x3c, 0x6d, 0xc5, 0x18, 0x2b, 0xdd, 0x26, 0x8e, 0xf1}} return a, nil } -var _quorumcertificateScriptsGet_node_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8f\x31\x6b\x84\x40\x10\x85\xfb\xfd\x15\xef\xba\x3b\x08\xc7\x05\xc2\x15\x07\x57\x04\x4d\xc0\xd2\x48\x48\x21\x16\x26\x8e\x66\x61\x9d\x95\xdd\x59\x22\x88\xff\x3d\xe8\x4a\x48\x48\x75\xd3\x0d\xf3\xbd\xf7\x31\xba\x1f\xac\x13\x3c\x1b\xfb\x95\x98\xe0\x85\x5c\x9e\xa0\x75\xb6\xc7\x69\xcc\x93\xc7\x34\x7d\x79\x2a\x0a\xa5\x86\xf0\x8e\x36\x30\xfa\x5a\xf3\xfe\x23\x82\x19\x37\x34\x5e\xf0\x9a\xb1\xdc\x9f\xef\xc0\xb6\xa1\x2c\xbd\xa0\x10\xa7\xb9\x3b\xc4\xc3\xf9\x01\x93\x52\x00\x60\x48\xb0\x05\x3d\xae\x7f\x85\xc7\x8e\x64\x5b\xfc\xfe\x10\x79\xdd\xfe\xe0\xe5\x6f\x61\x75\x5c\x44\x6f\xa4\xbb\x4f\xf1\x65\x94\x56\xd8\x5d\xc1\xda\x60\x5a\xa3\xcb\x38\x92\xe0\xf8\x86\x8a\xdd\x1a\x9d\x41\xc6\xd3\xff\x9e\x13\x6a\xbf\x3d\x14\x39\xa5\xe6\xef\x00\x00\x00\xff\xff\xec\x0b\xfb\xe3\x3b\x01\x00\x00" +var _quorumcertificateScriptsGet_node_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8f\x31\x4b\xc4\x40\x10\x85\xfb\xfd\x15\xef\xae\x4a\x40\x0e\x05\xb9\xe2\xe0\xaa\x88\x90\x52\x44\x2c\x42\x8a\x25\x99\xc4\x85\xcd\xac\xec\x4c\x50\x08\xf9\xef\x92\x6c\x10\x83\xd5\x6d\xb7\x33\xdf\x7b\x1f\xe3\x86\xcf\x10\x15\xcf\x3e\x7c\x15\x7e\x14\xa5\xf8\x52\xa0\x8b\x61\xc0\x71\x37\x3b\x1a\x63\x9b\x86\x44\x32\xeb\x7d\x8e\x6e\x64\x0c\xd6\x71\xd6\x24\xa0\xe4\x96\xbe\x2f\x78\x2b\x59\x1f\xce\x77\xe0\xd0\x52\xf9\x74\xc1\xab\x46\xc7\x7d\x9e\x16\xe7\x47\x4c\xc6\x00\x80\x27\xc5\x16\x14\x5c\xf7\xf2\x53\x4f\xba\x7d\x24\xcb\x13\xef\xba\x5f\xbc\xfa\x2b\xac\x4f\x8b\xe8\x9d\x5c\xff\xa1\x52\x25\x69\x8d\xc3\x15\xec\x3c\xa6\x35\xba\xbc\x48\x3a\x46\xbe\xa1\xe2\xb0\x46\x67\x90\x17\xfa\xdf\x73\x0f\x2b\xdb\x41\x89\x33\x66\xfe\x09\x00\x00\xff\xff\x50\x00\x3d\xc8\x47\x01\x00\x00" func quorumcertificateScriptsGet_node_weightCdcBytes() ([]byte, error) { return bindataRead( @@ -5100,11 +5120,11 @@ func quorumcertificateScriptsGet_node_weightCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_node_weight.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0x9c, 0x30, 0x47, 0x7d, 0x62, 0xd0, 0xa6, 0x81, 0xca, 0xe6, 0xf1, 0x83, 0x8e, 0x2f, 0x26, 0x25, 0x47, 0x8b, 0x62, 0x97, 0xde, 0xac, 0x2d, 0xf, 0xb1, 0xe1, 0x32, 0x9d, 0xfb, 0x27, 0xda}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x93, 0x25, 0xfa, 0x54, 0x63, 0x59, 0xc9, 0xed, 0x7c, 0xb4, 0x5, 0x3, 0xd4, 0xe1, 0x46, 0x77, 0x8e, 0x2d, 0xec, 0x84, 0x5b, 0x67, 0x8, 0x2a, 0xe3, 0xdc, 0xaa, 0x1c, 0xfb, 0x6, 0xd4}} return a, nil } -var _quorumcertificateScriptsGet_qc_enabledCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x30\xa8\x08\x74\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x70\xca\xcf\xcf\x51\xa8\xe6\xe2\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x35\x42\x2f\x33\x2f\xa0\x28\x3f\xbd\x28\xb5\xb8\x98\x8b\xab\x16\x10\x00\x00\xff\xff\x91\xb7\x70\x7a\x65\x00\x00\x00" +var _quorumcertificateScriptsGet_qc_enabledCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xcc\x31\x0a\x42\x31\x0c\x06\xe0\x3d\xa7\xf8\x79\xd3\xeb\xe2\x01\x1c\x2d\x38\xeb\x11\x4a\x49\xa5\x90\x26\x92\xb4\x38\x88\x77\x77\xee\xfa\x0d\x5f\x1f\x6f\xf3\x89\xbb\xd8\x27\xcb\x8a\xc9\xfe\xcc\x68\x6e\x03\xc7\x66\x07\x51\xa9\x95\x23\xce\x22\x92\xd0\x96\x62\x94\xae\x67\xba\xe2\x66\x26\xf8\x12\x01\x80\xf3\x5c\xae\x7b\x77\xe9\xfa\x70\x7b\x39\x47\x10\xfd\xfe\x01\x00\x00\xff\xff\x53\x18\x41\x96\x71\x00\x00\x00" func quorumcertificateScriptsGet_qc_enabledCdcBytes() ([]byte, error) { return bindataRead( @@ -5120,11 +5140,11 @@ func quorumcertificateScriptsGet_qc_enabledCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_qc_enabled.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0xd8, 0xc8, 0x9f, 0xb4, 0x4d, 0x43, 0xa4, 0x5b, 0x58, 0xc3, 0xef, 0xe6, 0xab, 0x17, 0xb8, 0xa8, 0xae, 0x35, 0x7c, 0xc4, 0xff, 0xb2, 0xd5, 0xe2, 0x17, 0x9e, 0xab, 0x50, 0xe8, 0x4e, 0xab}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe4, 0x1, 0xc8, 0x57, 0x3, 0x99, 0xe8, 0x3a, 0xeb, 0xa5, 0xac, 0x3b, 0x72, 0x25, 0x55, 0x34, 0xf7, 0x31, 0x44, 0x4b, 0xc6, 0x3, 0x7, 0x69, 0x63, 0x0, 0xea, 0xb, 0x6f, 0x71, 0x5, 0xba}} return a, nil } -var _quorumcertificateScriptsGet_voter_is_registeredCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x41\x6a\x84\x40\x10\x85\xe1\x7d\x9d\xe2\x2d\xe3\x26\x66\xed\x2e\xd1\x04\x5c\xaa\x27\x68\x63\xb7\x14\xb4\x55\x52\xdd\x6d\x02\xc3\xdc\x7d\x70\x18\x06\x66\xff\xf3\xbd\xc7\xdb\xae\x96\xf1\x13\xf5\xaf\x8d\x25\x65\x6f\x43\x8b\x60\xba\xe1\xe3\x7f\x68\x3f\xbb\x6e\xfc\x9e\x26\xa2\xba\xc6\xe8\x73\x31\x49\x70\x98\x55\xa3\x77\x02\x96\x85\x7f\x5d\x66\x59\xc1\x01\x0e\xa2\x8b\x07\x27\x98\x5f\xf9\x94\xfc\x82\xa0\x86\x43\xcf\x84\x68\x2f\x33\x42\x11\x6c\x8e\xe5\xed\x6c\xfb\xae\xc1\x94\x8d\x65\xad\x1a\x7c\xa9\x46\x5c\x88\x00\xc0\xee\x53\xaf\xa7\xde\x0f\xcd\xde\xfa\x34\x3e\xf1\x87\x51\x11\x5d\x6f\x01\x00\x00\xff\xff\x25\xd3\x9a\xb5\xc6\x00\x00\x00" +var _quorumcertificateScriptsGet_voter_is_registeredCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xc1\x8a\x83\x40\x10\x44\xef\xfd\x15\x85\x27\xbd\xac\x77\x8f\xeb\xb2\xe0\x71\xdd\x2f\x98\x68\x8f\x34\x8c\xdd\xa1\x67\x34\x87\x90\x7f\x0f\x86\x10\xf0\x5a\xd4\xab\x57\xb2\x5e\xcd\x0b\x7e\x93\xdd\xfa\xb4\xe5\xc2\xfe\xd7\x23\xba\xad\xa8\x4e\x59\x45\xd4\xb6\x18\xb9\x6c\xae\x19\x01\x17\xb3\xc4\x41\x21\x3a\xcb\x14\x8a\xe8\x02\x89\x08\x50\x9b\x19\x92\xe1\xbc\xc8\x41\xf2\x8c\x68\x8e\xdd\x8e\x0a\x51\x98\x26\xce\xb9\x0e\x29\x35\x88\x9b\x62\x0d\xa2\xf5\xc1\x0c\x3f\x1d\xfe\x8b\x8b\x2e\x4d\x87\x6f\xb3\x84\x3b\x11\x00\xf8\x4b\x79\x3e\xf8\xb5\x5b\x61\x1f\xf2\xf8\x91\xbc\x37\x1a\xa2\xc7\x33\x00\x00\xff\xff\xc7\x79\x0f\x5e\xd2\x00\x00\x00" func quorumcertificateScriptsGet_voter_is_registeredCdcBytes() ([]byte, error) { return bindataRead( @@ -5140,11 +5160,11 @@ func quorumcertificateScriptsGet_voter_is_registeredCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_voter_is_registered.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0xb, 0x7e, 0xe9, 0xf, 0xb8, 0xd4, 0x4, 0xbe, 0x72, 0xc1, 0x51, 0x89, 0xc8, 0x3f, 0xee, 0xde, 0x87, 0xd6, 0xa6, 0x14, 0x73, 0xeb, 0xa4, 0x18, 0x82, 0x7e, 0xeb, 0x4a, 0x9d, 0xf8, 0x9b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xc6, 0x3d, 0x20, 0x48, 0xaf, 0x41, 0xc4, 0xfd, 0x17, 0xf1, 0x48, 0xb8, 0x5b, 0xd0, 0x4c, 0xa5, 0xf1, 0x23, 0x4e, 0x87, 0xf, 0xa5, 0xb1, 0x4d, 0x99, 0x1e, 0x1e, 0xfa, 0x87, 0x7f, 0x65}} return a, nil } -var _quorumcertificateScriptsGet_voting_completedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x31\x4e\xc5\x30\x0c\x06\xe0\xdd\xa7\xf8\xc7\xf7\x16\xca\xcc\x06\x29\xec\x6d\x4f\x90\x36\x0e\xb5\x94\xc4\x51\xe2\x14\x24\xc4\xdd\x11\x6c\x9c\xe0\xfb\x24\x57\x6d\x86\xb7\xa4\x1f\x2e\x8d\x6e\xdc\x16\x87\xd8\x34\xe3\xf1\x73\x71\xcf\xf3\xbc\xbe\x6e\x1b\xd1\x34\x61\x65\x1b\xad\x74\x78\xec\xaa\x89\x7d\x81\x94\x20\x87\x37\x29\xef\x90\x08\x8f\xa2\x81\x71\xfa\x8e\x3e\xf6\x2c\x66\x1c\xe0\x71\xa9\x31\xa2\x36\xd8\x29\x1d\x5c\xf5\x38\x89\xea\xd8\x11\x47\x41\xf6\x52\x6e\xf7\x27\xbc\xa8\x26\x7c\x11\x01\x40\xfb\x73\xfe\x8f\x1e\x2e\xfd\x65\x9c\xe6\x9a\xd8\x38\xdc\xee\x44\xdf\x3f\x01\x00\x00\xff\xff\x19\xef\x8b\xe7\xbb\x00\x00\x00" +var _quorumcertificateScriptsGet_voting_completedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\xa1\x6e\xc5\x30\x0c\x46\x61\xee\xa7\xf8\x55\xd4\x92\x95\x0f\xae\xd2\xf8\xf6\x06\x6e\xe2\xac\x96\x92\xb8\x4a\x9c\x0e\x4c\x7b\xf7\xab\x7b\x59\xe9\x21\xdf\xd1\x72\x5a\x73\x7c\x66\xfb\xdd\xf2\xe8\x2e\xed\x6b\x43\x6a\x56\x30\xdd\xda\x44\xb4\xae\xf8\x16\x1f\xad\x76\x30\x76\xb3\x2c\x5c\xa1\x35\x6a\x60\xd7\xfa\x03\x4d\x60\x54\x8b\x82\x83\x3b\xfa\xd8\x8b\xba\x4b\x04\xe3\x32\x17\x24\x6b\xf0\x43\x3b\xe4\xb4\x70\x10\x71\x08\xd2\xfb\xcc\x39\x2f\x48\xa3\xa2\xb0\xd6\x79\x79\xc7\x87\x59\xc6\x1f\x11\x00\xb4\x97\x77\xbf\x7b\xbb\xec\xc9\x6d\x56\xce\x2c\x2e\x71\x5e\x88\xfe\x1f\x01\x00\x00\xff\xff\xb1\xa0\xbe\x79\xc7\x00\x00\x00" func quorumcertificateScriptsGet_voting_completedCdcBytes() ([]byte, error) { return bindataRead( @@ -5160,11 +5180,11 @@ func quorumcertificateScriptsGet_voting_completedCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_voting_completed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd7, 0x4, 0x25, 0x98, 0x8d, 0xb7, 0x66, 0x53, 0x62, 0x94, 0xae, 0x9d, 0x79, 0xd5, 0xb7, 0x36, 0x53, 0xb9, 0xae, 0xd1, 0xa, 0x1c, 0x9c, 0x85, 0x25, 0x5d, 0xd6, 0xc8, 0xf, 0xf7, 0x1b, 0xdc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0x87, 0x1d, 0x98, 0xc3, 0xe7, 0x56, 0x6d, 0x1d, 0xe6, 0x4a, 0xf0, 0xa5, 0xde, 0x33, 0xfa, 0x4b, 0xb0, 0x81, 0x1f, 0xaf, 0x72, 0xa7, 0xdf, 0x2f, 0xc2, 0xe0, 0xbd, 0x62, 0x6d, 0xfe, 0xa9}} return a, nil } -var _quorumcertificateSubmit_voteCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\x51\xcf\x93\x40\x10\x7c\xbf\x5f\x31\xf9\x1e\x94\x26\x5a\x7c\x26\xea\x17\x42\xf5\xcd\xa4\x2d\xc6\xf7\x2b\x2c\x70\x29\xdc\xe1\xde\x9e\xad\x31\xfd\xef\xe6\x38\xdb\xb4\x8d\x9b\x90\xb0\xbb\x33\xb3\xc3\x60\xa6\xd9\xb1\xe0\xeb\xe8\x4e\xd5\x18\xbc\x10\xef\x2a\x74\xec\x26\x7c\x38\xef\xaa\x72\xb3\xd9\x7f\xa9\x6b\xa5\xf2\x1c\x25\xac\x6b\x09\xbf\x9c\x10\x23\x78\xf2\x90\xc1\x78\x08\x6b\xeb\x75\x23\xc6\x59\x88\x83\x0f\x87\xc9\x08\x34\x76\xd5\x02\x55\x79\x1e\xc9\x5b\xcd\x7a\x22\x21\xf6\x45\x6c\xe3\x13\xb7\xb5\xe9\xad\x96\xc0\x54\xe0\xfb\x40\xf0\xa6\xb7\xd4\x62\x22\xef\x75\x4f\x08\xde\xd8\x1e\x32\xd0\x72\xf9\xad\x87\x17\x7d\x8c\xa3\x23\xfd\xbe\x2a\x7c\x4b\xd8\xc4\x1f\xe8\xfc\x9e\x6c\xe3\x5a\x6a\xe1\x85\x23\xd4\x75\x8b\x00\xeb\xd3\x55\x56\xa9\x3b\xcb\xd9\x93\x8b\x7a\x61\xbd\x7b\x94\x4e\xc3\x15\xfe\x28\x05\x00\x33\xd3\xac\x99\xb2\xc5\x2d\x17\x28\x83\x0c\x65\xd3\xb8\x60\x25\x62\xf0\xaf\x46\x92\x14\xd6\x9e\x3a\x7c\x4a\xdf\xc6\xeb\x83\x63\x76\xa7\x8f\x6f\x1e\x02\x5f\xff\x88\xb8\xcf\x59\xcc\xbd\xc0\x7f\x56\xb5\x38\xd6\x3d\x6d\xb5\x0c\xab\xdb\x81\x58\xaf\xaf\x98\xb5\x35\x4d\xf6\x52\xb9\x30\xb6\xb0\x4e\x90\x4e\x80\xa9\x23\x26\xdb\x50\xfc\x2d\x3f\x9b\xe4\xe5\x65\xa5\x6e\xfc\xab\xb9\x75\x7c\x79\x0e\xe2\xa1\x7d\xca\xe3\xae\x49\x6e\x2e\xea\xf2\x37\x00\x00\xff\xff\x81\x4d\x6f\x1c\x48\x02\x00\x00" +var _quorumcertificateSubmit_voteCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\xc1\xaa\xdb\x30\x10\xbc\xeb\x2b\x06\x1f\x5e\x6d\x68\xed\xbb\x69\xfb\x78\x35\xf4\x56\x78\x69\x4a\xee\x8a\xbd\xb6\x45\x6c\xc9\x5d\xad\x9a\x96\x92\x7f\x2f\xb2\x9a\x10\x87\x27\x30\x78\x57\x33\xb3\xa3\x59\x33\x2f\x8e\x05\x5f\x27\x77\x6e\xa6\xe0\x85\x78\xd7\xa0\x67\x37\x23\xdb\xf4\x32\xa5\xaa\x0a\x2f\xb0\xae\x23\xfc\x72\x42\x8c\xe0\xc9\x43\x46\xe3\x21\xac\xad\xd7\xad\x18\x67\x21\x0e\x3e\x1c\x67\x23\xd0\xd8\x35\x2b\x54\x55\x55\x24\xbf\x6a\xd6\x33\x09\xb1\xaf\x63\x19\xbf\x78\xbb\x37\x83\xd5\x12\x98\x6a\xfc\x18\x09\xde\x0c\x96\x3a\xcc\xe4\xbd\x1e\x08\xc1\x1b\x3b\x40\x46\x5a\x27\xbf\xf3\xf0\xa2\x4f\xb1\x75\xa2\x3f\x57\x85\x6f\x09\x9b\xf8\x23\xfd\xfe\x40\xb6\x75\x1d\x75\xf0\xc2\x11\xea\xfa\x55\x80\xf5\xf9\x2a\xab\xd4\x9d\xe5\xfc\xc1\xc5\x7e\x65\xbd\xdf\x4a\xa7\x66\x81\xbf\x4a\x01\xc0\xc2\xb4\x68\xa6\x7c\x75\xcb\x35\x74\x90\x31\xff\xe2\x98\xdd\xf9\xa0\xa7\x40\x05\x9e\x5e\xda\xd6\x05\x2b\x91\x82\xff\x67\x22\x49\xd9\x7d\xa7\x1e\x9f\xd2\x53\xb9\xf4\xe2\x58\x0f\x54\x1e\x57\xfa\xc7\xa7\x4d\xee\xe5\x21\xe2\x3f\xe7\x71\x25\x35\xde\xb8\xda\x27\xf6\xab\x96\xb1\xb8\x0d\x8a\xe7\xf9\x19\x8b\xb6\xa6\xcd\xb3\xc6\x85\xa9\x83\x75\x82\x34\x02\x4c\x3d\x31\xd9\x96\xe2\xb6\x7e\xb6\xc9\x53\x56\xa8\x1b\xff\x6a\xb2\x8c\x3f\x8f\xf9\x6c\xca\x87\x98\xee\x8a\xe4\xe6\xa2\x2e\xff\x02\x00\x00\xff\xff\xf6\x6f\xe5\x6d\x63\x02\x00\x00" func quorumcertificateSubmit_voteCdcBytes() ([]byte, error) { return bindataRead( @@ -5180,7 +5200,7 @@ func quorumcertificateSubmit_voteCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/submit_vote.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x97, 0xf6, 0x2f, 0x9, 0xa3, 0xbc, 0x7e, 0x74, 0xb2, 0xa3, 0xe, 0xf0, 0x38, 0x14, 0x3e, 0x45, 0xca, 0xa1, 0xa1, 0x7f, 0xa4, 0x86, 0x99, 0x91, 0x81, 0xb3, 0x63, 0x6d, 0x75, 0x3b, 0xe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xff, 0x17, 0x2e, 0x7e, 0x4e, 0xc0, 0xf1, 0x63, 0x79, 0x30, 0x6a, 0xd7, 0xc7, 0xad, 0xdf, 0x22, 0xad, 0x5f, 0xfd, 0xd, 0x41, 0xc7, 0x37, 0xea, 0xef, 0x44, 0x8b, 0x91, 0x62, 0xe4, 0x9e}} return a, nil } @@ -5244,7 +5264,7 @@ func randombeaconhistoryScriptsGet_source_of_randomness_pageCdc() (*asset, error return a, nil } -var _stakingcollectionClose_stakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xd4\x40\x0c\xbd\xe7\x2b\xac\x1e\xd0\x56\xaa\xb6\x08\x6e\x11\xb0\x8a\xb2\x05\x45\x54\x2d\x6a\x96\x0f\x70\x26\x4e\x32\x30\x19\x47\x33\x4e\x5b\x84\xfa\xef\x68\x66\x48\x40\xdd\x3d\xac\x0f\x89\xfc\x64\xbf\xf7\x6c\x8f\x1e\x27\x76\x02\x9f\x0d\x3f\xd5\x82\x3f\xb5\xed\x4b\x36\x86\x94\x68\xb6\xd0\x39\x1e\xe1\xed\x73\x7d\x28\xbe\x56\x77\x5f\xca\xfb\xdb\xdb\x9b\xf2\x50\xdd\xdf\x15\xfb\xfd\xc3\x4d\x5d\x67\xd9\xf5\x35\x94\x86\x3d\x79\xe0\x59\x00\xc1\x27\x0a\xe0\xe6\x07\x29\x01\x6d\x41\x06\x5a\x51\xb5\x32\x87\xc6\xc3\xa0\x3d\xb4\x4c\x1e\x2c\x0b\x38\x1a\xf9\x91\x62\xb9\x23\xc5\xae\x4d\xe2\x21\xd7\x2d\x59\xd1\xf2\x0b\x04\x1b\x43\x57\xa1\xb7\x99\x05\xb4\xa4\xee\x91\x30\xc8\xa0\xc4\x62\x54\x8a\x67\x2b\x09\x50\xc9\x9b\x16\x50\x68\x83\x0a\x3d\x92\x0b\x25\xe4\x23\x8a\x3d\x6a\x9b\x65\xe2\xd0\x7a\x8c\xc6\x36\x96\x5b\xaa\xf6\x39\xd4\xe2\xb4\xed\xaf\xa0\x25\x43\x3d\x0a\xbb\x00\x7e\xaf\xac\xbc\x7f\xb7\xbb\x84\xdf\x19\x00\x40\xfc\x18\x92\x65\xc0\x7f\x9b\x7b\xa0\x2e\x87\x37\x27\x97\xba\x3d\x42\xb2\xc8\x33\x39\x9a\xd0\xd1\xe6\xef\x00\x39\x14\xb3\x0c\x45\x4a\x16\xc1\x10\x9e\x4c\xb7\x3d\x25\x08\x1f\x97\xe1\xb7\x0d\x3b\xc7\x4f\x1f\xce\x35\xf0\x69\x13\x76\x9d\x9f\x7e\x04\xc7\xe5\xb5\xb0\xc3\x9e\xbe\xa1\x0c\x97\xab\xad\x10\xbb\x1d\x4c\x68\xb5\xda\x5c\x94\x3c\x9b\x36\xde\x35\x59\x01\x47\x1d\x08\xc3\x11\xd7\x45\x62\x78\x49\x3b\xa0\x67\x52\xb3\xd0\x39\xd3\x6e\xe3\x6d\x03\x1f\xad\x37\x4b\xff\x57\x37\xfb\x2f\x59\xb4\x5e\xb2\x3f\x01\x00\x00\xff\xff\x6e\x12\x74\xdf\xf6\x02\x00\x00" +var _stakingcollectionClose_stakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x8e\xd3\x30\x10\xbd\xe7\x2b\x46\x3d\x2c\xa9\xb4\xca\x4a\x70\xab\x80\x0a\x8a\x90\xf6\x04\xa2\xc0\x7d\xea\x4c\x13\x83\xe3\x89\xc6\xe3\x2d\x2b\xb4\xff\x8e\x6c\x37\x29\xa2\x39\x70\x59\x1f\x92\x78\xfc\x26\xef\xcd\xf3\xb3\xc3\xc8\xa2\xf0\xd1\xf1\x69\xaf\xf8\xd3\xfa\x6e\xc7\xce\x91\x51\xcb\x1e\x8e\xc2\x03\xac\x16\xcf\x56\x55\x75\x77\x07\x3b\xc7\x81\x02\x70\x54\x40\x08\x05\x03\x7c\xf8\x41\x46\xc1\x7a\xd0\x9e\xe6\xaa\x99\x5b\x53\xe3\xd7\xde\x06\x68\x99\x02\x78\x56\x10\x1a\xf8\x81\x32\x5c\xc8\xb0\xb4\x85\x39\xed\x6d\x4b\x5e\xad\x3e\x82\xe2\xc1\xd1\x6d\xea\x3d\x44\x05\xab\xa5\x7b\x20\x4c\x34\xa8\x19\x8c\xc6\x70\xf4\x5a\x0a\xa6\x68\xb3\x0a\x06\x7d\x62\xa1\x07\x92\x04\xa1\x90\xab\xd8\xa1\xf5\x55\xa5\x82\x3e\x60\x16\x56\x7b\x6e\xe9\xfe\xc3\x06\xf6\x2a\xd6\x77\xb7\xd0\x92\xa3\x0e\x95\x25\x15\xbf\xdd\x7b\x7d\xf5\x72\xbb\x86\xdf\x15\x00\x40\x7e\x38\xd2\x69\xc0\x8b\x35\x5f\xe8\xb8\x01\x8c\xda\xd7\x8b\xce\x35\x97\xcf\x4f\x27\x4f\xb2\x86\x9b\x65\xdc\x55\xa5\xca\x9c\xa3\xd0\x88\x42\xf5\x79\xd8\x33\xd5\x7b\x16\xe1\xd3\x77\x74\x91\xd6\x70\xf3\xae\x9c\x4d\x5a\xd3\x0a\xe4\x8e\xcd\x92\x56\x78\x33\xf9\xd6\x04\x65\xc1\x8e\x9a\x43\xfe\xd9\xeb\xe7\x98\xe1\x6d\x9d\xae\x76\xb3\x1c\xb8\x6b\xf8\xbe\x28\xfa\x8c\xda\xaf\xe7\x51\xd2\xda\x6e\x61\x44\x6f\x4d\xbd\xda\x71\x74\x6d\x8e\x51\x91\x0d\x08\x42\x47\x12\xf2\x86\x40\x19\x10\xae\x83\x7d\xce\xe6\x28\x76\x40\x79\x84\x18\x48\x5e\x84\xc9\x86\x55\x61\x7a\x2a\x76\xd3\x2f\x32\x51\xe9\x7f\x9c\x6c\x72\xe4\x12\x1b\xcd\x51\x2a\xef\x7f\xa2\xf4\xd7\x66\xe2\x7a\xaa\xfe\x04\x00\x00\xff\xff\x81\xd2\xc8\xc9\x8a\x03\x00\x00" func stakingcollectionClose_stakeCdcBytes() ([]byte, error) { return bindataRead( @@ -5260,11 +5280,11 @@ func stakingcollectionClose_stakeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/close_stake.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x59, 0x8d, 0x88, 0x8f, 0x9d, 0x2f, 0x9b, 0x93, 0x92, 0x8c, 0x12, 0x2b, 0xb, 0x67, 0x85, 0x23, 0x87, 0x27, 0x5b, 0x5f, 0x46, 0x81, 0x35, 0x3e, 0x3d, 0x28, 0xbf, 0xd8, 0x89, 0xc8, 0x19}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x31, 0xd6, 0xfa, 0x69, 0x5f, 0x9d, 0x28, 0xd3, 0x8b, 0x18, 0x15, 0x2c, 0xdc, 0xf3, 0x4d, 0x92, 0xf3, 0x99, 0x54, 0x52, 0x91, 0x27, 0xbf, 0x10, 0xdd, 0x65, 0x16, 0xce, 0xac, 0x21, 0xd9, 0x7b}} return a, nil } -var _stakingcollectionCreate_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x6f\x9b\x40\x10\xbd\xf3\x2b\x5e\x73\xa8\x1c\xc9\x22\x39\xa3\xba\x91\x85\x9d\xca\xb2\xeb\x54\x21\xb7\xaa\x87\x0d\x0c\xb0\xf2\x7a\x17\xed\x8e\xeb\xd0\xc6\xff\xbd\x5a\xc0\xc4\x9f\x52\xf7\x00\xcc\x2e\x33\xef\xcd\x9b\xb7\x72\x5d\x19\xcb\x88\x6d\x5d\xb1\x09\xba\xe8\x51\x99\x6d\xc2\x62\x25\x75\x11\x1b\xa5\x28\x65\x69\x34\x72\x6b\xd6\xb8\x7f\x4b\x5e\xc6\xf3\xd9\xf2\x5b\xfc\xb4\x58\x4c\xe3\x97\xd9\xd3\x72\x3c\x99\x3c\x4f\x93\x24\x08\xee\xee\xee\x10\x5b\x12\x4c\x0e\x02\x6b\x91\x96\x52\x13\x44\x9a\x9a\x8d\x66\xe4\xc6\x42\x40\x9b\x8c\xc0\xa5\x60\x48\x07\xa1\x2c\x89\xac\x86\xd4\xe0\x92\xe0\x5a\x48\xa4\x3d\x66\x53\x52\xe8\x0c\x22\xcb\x1c\xaa\xcd\xab\x92\x29\x56\x54\x3b\xb0\x69\x52\x34\x6d\xf7\x00\x41\xc0\x56\x68\x27\x9a\xc4\x81\xc7\x99\x4d\x22\x24\x6c\xa5\x2e\x86\x5d\xee\x9c\x6a\x17\xe1\x67\xdb\x6d\x38\xa7\x7a\x21\x1d\x4f\x35\xdb\xfa\xd7\x2d\xfe\x06\x00\xd0\x3c\x14\xf1\x9e\xcd\x87\x00\xcf\x94\x47\xf8\x7c\x51\x9b\xf0\x6c\x27\x68\xea\x54\x96\x2a\x61\x69\xd0\x51\x8c\x30\xde\x70\x39\x6e\x83\x3d\xa0\x5f\x8e\x54\x1e\x5e\x02\xc4\x68\xdf\x5e\xf8\x6a\xac\x35\xdb\x2f\xff\x4b\xe0\xeb\xc0\xcf\x2b\xba\x3c\xcb\xf3\xdf\x13\x36\x56\x14\xf4\x43\x70\x79\xdb\xd3\xf2\xeb\xe1\x01\x95\xd0\x32\x1d\xdc\xc4\x66\xa3\x32\x68\xc3\x68\xa9\xc0\x52\xee\xe7\x70\x56\xeb\xe6\x36\xe8\x4b\xc8\xbc\x11\xb3\x33\x43\xd7\x3a\x46\xd7\x3b\x0e\xd3\xc6\x41\xdf\x8f\x12\x1e\x8d\x9d\xbe\x49\xc7\x52\x17\x4b\x93\x51\x3f\xdd\xf6\x3d\x44\x25\x6a\xb2\xd1\x5e\xaa\x43\x65\x3b\x0e\x1f\xe3\xc7\x68\x04\x2d\x15\xde\xdf\x0f\x36\x3f\x85\x8a\x74\xc1\xa5\x3f\xbc\x3f\xc9\x6e\xe6\xd8\x29\x20\xb4\x6f\xbf\xb2\xe6\xb7\xcc\x08\x7f\xc8\x9a\xd6\x8d\xde\xdb\xde\x8e\x27\x9e\xbf\x39\x96\x72\x77\x14\xf9\x9c\x15\x35\xe6\x3f\x60\x77\x8e\x7d\x2c\x5d\xe8\xf1\x42\x91\x65\x83\x3e\x29\xf2\x65\xc2\x3e\x1c\xa2\x14\xae\x1c\xab\xc2\x58\xc9\xe5\xba\x3d\x3d\xda\x1a\x62\x4b\xb2\x28\xb9\x3d\x6a\xbf\xaf\x31\xdd\x81\x94\xa3\x13\x5a\x67\x86\x68\x67\x76\xe5\xd2\x37\xf7\xd4\x64\x74\xa0\x46\x5b\x7f\x17\xec\x82\x7f\x01\x00\x00\xff\xff\x33\xed\x36\xa1\x80\x04\x00\x00" +var _stakingcollectionCreate_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x4d\x4f\xdb\x40\x10\x3d\xe3\x5f\xf1\x94\x03\xb5\xa5\xc8\xa4\xb7\xca\x6a\x8a\x68\x5a\x04\x42\x6d\x51\xa3\xf6\x3e\x78\x27\xf6\x0a\x67\xd7\x9a\x5d\x13\xac\x8a\xff\x5e\xf9\x2b\x24\xc4\x50\x38\xd4\x07\x67\xed\xec\xcc\x7b\xfb\xe6\xcd\x58\xaf\x4b\x2b\x1e\x0b\xa9\x4b\x6f\x83\xfe\xe9\xbc\xb0\x9b\xa5\xa7\x5b\x6d\xb2\x85\x2d\x0a\x4e\xbd\xb6\x06\x2b\xb1\x6b\x4c\x46\xff\x9b\x04\xc1\xc9\xc9\x09\x16\xc2\xe4\xd9\x81\xb0\xa6\x34\xd7\x86\x41\x69\x6a\x2b\xe3\xb1\xb2\x02\x82\xb1\x8a\xe1\x73\xf2\xd0\x0e\x54\x08\x93\xaa\xa1\x0d\x7c\xce\x70\x5d\x4e\xa4\xdb\xa4\x6d\x4a\x32\x0a\xa4\x94\x43\x59\xdd\x14\x3a\xc5\x2d\xd7\x0e\xde\xb6\x21\x86\x37\x03\x40\x10\x78\x21\xe3\xa8\x0d\x0c\x1b\x9c\xcb\x2f\x09\x96\x5e\xb4\xc9\xa6\x08\xb0\x73\xf5\xd4\xce\xba\xc0\x2b\xae\x5f\xbb\x6f\xa9\x33\x43\xbe\x12\x3e\x2b\x32\x2b\xda\xe7\xeb\x04\xbf\x2e\x8d\xff\xf0\xaf\xc0\x0b\x72\xf9\xd3\x98\x08\x7f\xda\xa0\xf6\x56\xb0\x1f\xce\xff\xa8\xe9\x4f\x5e\x25\xa0\xca\xe7\xe1\xa8\xe4\xf1\xe3\xf2\xc7\xc6\xb0\x44\x38\x1e\xdf\x77\xf0\x26\x68\x31\x4b\xe1\x92\x84\xc3\x5e\xc0\x1e\xea\xb3\x15\xb1\x9b\xdf\x54\x54\x1c\xe1\xb8\x3f\xc2\xc0\xb5\xb9\x1c\x17\xab\x78\x8c\x2b\xe6\x43\x2d\x62\xe7\xad\x50\xc6\xf1\x4d\x9b\xec\xe3\xff\x38\xc3\xa7\xb0\x71\x63\x32\xee\xd4\xc3\xed\xcb\x8e\xd1\x35\xf9\x3c\xda\xab\xd5\xe9\x29\x4a\x32\x3a\x0d\x27\x0b\x5b\x15\x0a\xc6\x7a\x74\xb4\x41\x10\x5e\xb1\xb0\x49\xb9\x31\x1c\xe1\xb0\x23\x7a\xeb\x96\xa2\xd7\x24\x35\x2a\xc7\xf2\xce\x0d\x32\x4c\xa2\x60\x0b\xa5\x57\x6d\x8d\xf7\x9d\x81\xf9\xf3\x6a\xc6\x69\xdb\x4a\xdf\xf6\x02\xce\xad\x7c\xbd\xd7\xce\x6b\x93\x7d\xb7\x8a\xb7\x36\xef\x7e\xa7\x28\xa9\x66\x49\x06\xfc\xdd\xaa\x6d\x4d\xa6\xb3\xc6\x88\x98\xe3\xd0\xcc\xa1\x50\x57\xf8\xe4\x35\xd6\xdf\x97\xf1\x39\x29\x33\xf6\xa0\x06\xb5\x8b\x06\x0d\xe1\xdd\x30\x69\xc4\x13\xda\x80\x4d\xb5\xc6\x5d\x83\x8d\x52\xec\x9d\x56\xac\x76\xd5\x1b\xd8\xe7\x7d\x1f\x61\x8e\xbd\x96\x7a\x89\xf9\xde\xc6\xb7\x90\x6e\xc0\xde\xc6\x77\x37\xef\x01\xf7\x6e\x7c\x5d\x71\x8d\x39\xae\x87\x75\x18\x1c\x1d\x1d\xb5\xcd\x38\xbc\x19\x39\x41\xac\x38\xb5\x8a\x2f\xf8\x3e\x8c\xa6\x43\x80\x1b\x99\x45\x7d\x71\x83\x6e\x47\xf4\xc2\x4c\x8a\x9b\x29\x1a\x93\x52\xe1\x0e\xf0\x76\x39\xdd\x0a\xdd\x27\x1e\x1e\xa7\xd8\xb0\xce\x72\x9f\xe0\xfd\x6c\x36\x8b\x67\x8f\x10\x0f\xe0\xc2\xf1\x13\xc3\x1d\x08\xdb\x79\xfa\x99\xaf\x43\x3b\xd0\xad\xe2\x1d\x21\x1f\x82\xee\xfe\x10\xfc\x0d\x00\x00\xff\xff\xae\x12\x08\x8b\xa6\x06\x00\x00" func stakingcollectionCreate_machine_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -5280,11 +5300,11 @@ func stakingcollectionCreate_machine_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/create_machine_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0xa9, 0xbc, 0xef, 0x3, 0x1e, 0x98, 0xd6, 0x4d, 0xb8, 0xc3, 0xa3, 0x9c, 0x38, 0x31, 0xcb, 0x72, 0x80, 0xa, 0x1, 0xee, 0xd9, 0x6, 0xe8, 0xc7, 0xe8, 0x77, 0x86, 0xd5, 0xd5, 0xae, 0x7f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0xdf, 0x3d, 0x5, 0xff, 0xf4, 0xd, 0xa2, 0x7, 0x81, 0x97, 0xc9, 0x37, 0xf5, 0x18, 0x28, 0x47, 0x12, 0xbc, 0x5b, 0x84, 0x1f, 0x3e, 0xac, 0x1c, 0x12, 0x62, 0x6e, 0xaf, 0x13, 0x2f, 0x4e}} return a, nil } -var _stakingcollectionCreate_new_tokenholder_acctCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\xdf\x6f\xe2\x46\x10\x7e\xe7\xaf\x98\xbe\x54\x20\x11\xe8\x33\x4a\x4e\x42\x84\xbb\x46\xd0\x23\x2a\xb4\x7d\xa8\xfa\xb0\xb1\x07\x7b\xcb\xb2\x6b\xed\x0e\xe4\x50\x94\xff\xbd\xda\x1f\xb6\x77\xc1\xe8\x88\x54\xe9\x78\x49\x6c\xcf\x7c\xf3\x7d\xdf\xcc\x8e\xcd\xf7\x95\xd2\x04\x33\x7d\xaa\x48\xf5\xc2\xd5\x67\xa1\x5e\x37\x6a\x87\x12\xb6\x5a\xed\xe1\x97\x6f\x9f\x97\xab\xbf\x36\xab\xc5\xfc\xeb\xf4\xf1\xf1\xf7\xf9\x7a\x5d\x07\x2e\x55\xb6\xc3\xdc\x85\x9a\x3a\x76\xb9\x9a\x2d\xe6\x8f\x5d\xd1\x16\x76\x4d\x6c\xc7\x65\x31\x53\x42\x60\x46\x5c\x35\x25\xd6\x9b\xe9\xe2\xe9\xeb\x97\xd9\x6a\xb9\x9c\xcf\x36\x4f\xab\x26\xb9\x37\x1e\xc3\xa6\xe4\x06\x48\x33\x69\x98\x4f\x62\x42\xa8\x57\x03\x54\x22\x64\x4a\x92\xb6\x70\x1a\xd4\xd6\xdd\x11\x8e\x15\xb0\x2c\x53\x07\x49\x36\x9f\x14\x64\x1a\x19\x21\x30\x90\xf8\x9a\xf0\x1e\xb9\x3f\xbf\x2a\x91\x5b\x84\x97\x7f\x31\x23\x60\x32\x07\x43\x4a\x23\x70\x02\x2e\x43\x56\x04\xc8\x84\x51\xc0\xf2\x9c\xcb\x02\x18\x18\x2f\x0a\xb2\x56\x55\x00\x22\xe5\x18\xc5\xd9\x36\x7d\x81\x58\x59\xdc\x3d\x97\x39\x50\xc9\x08\xc8\x2a\xcc\x15\x1a\x90\xca\x96\x3c\x32\xc1\x73\x4b\xd8\xa6\xe3\x37\x6e\xc8\x16\x88\xa9\x46\x6c\x36\x2a\xcd\x60\x54\x3f\x1d\xc2\x49\x1d\x40\x22\xe6\x96\x0a\x72\x2a\x51\x43\x8e\x02\x03\x72\x0c\xa8\xd1\xa8\x83\xce\xd0\x22\x2a\x7b\x79\x54\x3b\xb4\x4e\xc3\x0e\x4f\xa1\xbd\x31\x76\xaf\x17\x75\xa4\x5f\x1d\x5e\x04\xcf\x16\x78\x32\x13\xf8\xdb\x8f\xd3\x68\x81\xa7\x25\x37\x34\x97\xa4\x4f\xff\x0c\xe0\xad\x07\x00\x50\x69\xac\x98\xc6\xbe\xe1\x85\x44\x3d\x81\xe9\x81\xca\xa9\x47\xb4\x21\x2e\xc6\xfe\xc6\x63\x98\xf9\x9e\x9d\x39\xe8\xba\xc3\xf2\x1c\x7c\x49\xc7\xae\xc9\x12\x48\x36\x36\x00\xc2\x43\x0c\xdf\xaf\xd8\xc9\x56\xf4\x95\x07\x4d\xce\x56\x69\x0b\x62\x1b\xd2\xaa\x08\x6c\xeb\x5f\x8b\x39\xb2\xf5\x46\x2c\xcf\x5b\xc9\x13\x9b\x3e\x6a\x2e\x87\x50\x32\x53\x4e\x45\xa1\x34\xa7\x72\xef\x9f\x26\xb7\x86\xf0\x8a\xbc\x28\xc9\x3f\xf2\xff\xb7\x7c\xde\x13\x13\xbe\x20\xb5\xad\xfa\x8d\x49\x56\xa0\x86\x19\xab\xd8\x0b\x17\x9c\x4e\x75\x5f\x2e\xc6\x3e\x76\x84\xa2\xdc\x28\xf5\x21\x58\x91\x28\x1d\x15\x48\x6d\xcc\xfd\xcf\xc9\x59\x89\x2e\x02\xdc\xa7\x7e\x92\xfd\x9d\xe8\x67\xcd\x8f\x8c\xf0\x99\x51\x39\x48\x54\xfe\x61\x7c\x9f\xf7\x41\x60\xd6\xb2\x3c\x3f\xbc\xd1\xcc\x5e\x8a\x0c\xb3\x7c\x7f\x97\x32\xf1\x00\x51\x66\xca\xda\x5b\x37\xcd\x73\x8d\xc6\xd4\x03\x62\x7b\x6c\xaf\x87\x49\x68\x6c\xe5\xe4\x8a\xb1\x4d\x42\xaa\x71\xcd\x8e\xd7\x4f\x5d\xc7\xaa\x70\x83\xde\x48\x0f\xd3\x9e\x5d\x56\x89\x66\xd3\xb0\x23\xa6\xd2\xee\xef\x22\x5f\xce\xa5\x4c\xae\x6e\xc2\x35\x29\xcd\x0a\xd7\xa8\x61\x97\x9c\xa8\xa6\xe0\x72\x77\x36\x26\x11\xd0\x5b\xc7\x44\x84\xcc\x27\xb9\x55\xef\xdf\x9f\x9f\x28\xfa\xd9\x79\x90\x92\x72\x4a\x98\x2e\x90\x6e\x52\x13\x8b\xe9\xd8\x35\x95\x1f\xd0\xd6\x66\x8e\xc6\x2d\x08\xdb\x1b\xe7\x24\x94\x61\xff\xca\x1c\x0e\x32\x1c\xba\x23\x3b\x88\xf4\xc8\xf9\x07\xa1\xc9\x0f\xb7\xfb\xf5\xa9\x3f\x0e\x1c\xc6\xdb\xfa\x35\x1c\x9a\xf7\x11\x99\x83\x9f\x12\x36\x0d\x54\x17\x95\xe6\x75\x3f\xfa\xd3\xca\xe8\x62\xe0\x1e\xb4\x04\xc6\xc6\x57\x3a\x0b\x88\x8a\x76\x58\xeb\x4f\x6f\xf8\x00\x80\xe8\x0b\xc0\x3a\x59\x1d\x28\xbc\x6b\x03\x74\x03\xc0\xb7\x89\x97\xa3\xac\xc4\x6c\xd7\x1f\x5c\xdf\xcf\xee\x0c\xdc\xdf\x75\x7e\x6d\x84\x45\x70\x71\xbf\x5f\x77\xd2\xe9\x98\xb4\x7e\x0d\xe3\xb5\x32\x49\x98\x0c\x86\xee\x04\x75\xd7\xb9\xb8\x13\xf7\xa6\xdd\xf4\x80\xc2\xe0\x8f\x91\x22\xb9\xf8\x3f\x14\x74\x1d\xa2\x66\x59\xd9\xf9\xaa\x17\xdb\xe5\x47\xd2\xf5\x65\x72\x23\xa3\xb7\x1b\xe3\xfc\xda\x38\x5f\x35\x1f\x4a\xbe\xbe\x73\x3e\xee\x5e\xb4\x82\xbc\x85\xef\xff\x05\x00\x00\xff\xff\xcf\xca\x4a\x4a\x86\x0b\x00\x00" +var _stakingcollectionCreate_new_tokenholder_acctCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x56\x49\x6f\xe3\x36\x14\xbe\xfb\x57\xbc\xc9\x21\x90\x00\x8f\x8c\x5e\x8d\x24\x40\x6a\x74\x43\xa6\x68\x80\xa4\xd3\xc3\x20\x07\x46\x7c\x96\x58\xd3\xa4\x40\x52\x76\x85\x22\xff\xbd\xe0\x22\x89\x94\xe5\xc6\x5d\x50\xa0\xbe\x58\x24\xdf\xf2\xbd\xef\x2d\x24\xdb\x37\x52\x19\xd8\xa8\xae\x31\x72\x11\x56\xdf\x72\x79\x7c\x96\x3b\x14\xb0\x55\x72\x0f\x57\xc3\xfa\x6a\x90\x68\x45\xc5\x5e\x39\x26\x52\xf1\xde\x20\xf9\x49\x96\x3b\xa4\x6e\x4f\x07\xc1\x78\xeb\x2a\xf6\xf9\x64\xc8\x8e\x89\x6a\x23\x39\xc7\xd2\x30\x19\xfb\x3f\x39\xbb\x5a\x2c\x56\x2b\x78\xae\x99\x06\xa3\x88\xd0\xc4\x6b\x10\xce\xe5\x51\x83\xa9\x11\x4a\x29\x8c\xb2\xf2\x0a\xe4\xd6\xed\x70\xe7\x19\x48\x59\xca\x56\x18\xab\x6f\x24\x94\x0a\x89\x41\x20\x20\xf0\x98\xc0\x2d\xdc\xdf\xf7\x92\x53\x6b\xe1\xf5\x57\x2c\x0d\x10\x41\x41\x1b\xa9\x10\x98\x01\x26\x82\x56\x64\x90\x70\x2d\x81\x50\xca\x44\x05\x04\xb4\x47\x0d\xe5\x18\x52\x30\x64\xa4\x43\x14\x6b\x5b\xf5\x07\xc4\xc6\xda\xdd\x33\x41\xc1\xd4\xc4\x80\xb1\x11\x52\x89\x1a\x84\xb4\x2e\x0f\x84\x33\x6a\x01\x5b\x75\xfc\x8d\x69\x63\x1d\xc4\x50\x23\x34\xcf\x32\xd5\x20\xa6\x3f\x5d\x42\x27\x5b\x10\x88\xd4\x42\x41\x66\x6a\x54\x40\x91\x63\xb0\x1c\x1b\x54\xa8\x65\xab\x4a\xb4\x16\xa5\x5d\x1e\xe4\x0e\x2d\xd3\xb0\xc3\x2e\x64\x35\xb6\xbd\x58\x44\x19\xc9\x9a\xf6\x95\xb3\xf2\x01\x3b\xbd\x86\x2f\xbe\xd0\x8a\x07\xec\x3e\x31\x6d\xbe\x11\x46\x75\x2f\x39\xfc\xbe\x00\x00\x68\x14\x36\x44\x61\xa6\x59\x25\x50\xad\x81\xb4\xa6\xce\xbe\x96\x4a\xc9\xe3\x67\xc2\x5b\x5c\xc2\x93\x91\x8a\x54\xb8\x84\x0d\x69\xc8\x2b\xe3\xcc\x30\xd4\x39\x5c\xdf\x7b\xbf\xd6\x90\xb3\x64\x7f\xab\x15\x6c\x7c\x66\x27\x3c\xbb\x1c\x12\x4a\xc1\x03\x73\x31\x14\x83\x1a\x47\x63\x85\x83\x45\xb8\x85\xf0\x95\x35\xa4\xb3\xa0\x3c\xb8\x7c\x90\xdf\x4a\x65\x2d\xd8\x9c\x8d\x81\x86\x80\xfa\xdf\x68\xaf\x70\xce\x08\xa5\x23\x2b\x6b\xab\x5e\x0c\xcb\x25\xd4\x44\xd7\xf7\xbc\x92\x8a\x99\x7a\xef\x4f\x93\xad\x25\x1c\x91\x55\xb5\xf1\x47\xfe\x7b\xc4\xf3\x96\x30\xf0\x1d\x9a\x31\x9b\x3f\x12\x41\x2a\x54\x23\x79\x5d\x9f\xba\x69\x67\xa4\x74\x98\x48\x79\xd4\xdd\x8c\xdd\x75\x1b\x58\x29\xca\x28\x2d\x85\xf6\xc9\x2a\x2a\x34\xa3\xac\xce\xb6\x52\x3d\x12\x53\xaf\xd3\x56\x8b\x16\xc1\x53\xc8\xb5\x95\xcd\xbf\x7c\xf5\xf2\xe1\x02\x48\x70\xfb\x2e\xd6\x11\x62\x07\x44\x7f\x88\xb8\xb8\x71\xe5\x96\x0c\xb1\xe2\x17\x66\x6a\xaa\xc8\x31\x87\xeb\x77\xd0\xde\x25\xb4\xff\xac\x7d\xd5\xed\x03\xe3\x91\xd3\xe9\xc0\x89\xfa\x6c\x86\xf5\xd0\x80\x37\x1f\x53\xb6\xbc\x85\x48\x35\x4b\xea\xcd\x27\xf3\x9e\x52\x85\x5a\xf7\x25\x6b\xab\xce\xae\x97\x89\x68\xcc\xd7\xfa\x0c\x7b\x83\x42\x9e\x04\xf9\x44\x0e\xe7\x47\xc5\xcc\x7c\x73\x7d\x37\xc4\x1e\x9a\x6f\x64\x66\x8c\x3e\x6a\x97\xbe\x86\x34\x39\x60\x1a\xe3\xcd\xc7\x88\xa0\x69\x4c\xeb\xb3\x73\x3c\xaa\xaa\xb9\xb0\x26\xc4\x6f\x48\x03\xb7\x31\x9e\xb9\x02\x4f\x7c\x17\x4c\xeb\x16\x6f\xae\xcf\xf9\xbf\xcb\x2e\x40\x96\xcf\x51\x91\xb8\x76\xec\xe9\x3a\x3b\xcd\xe5\x00\x3c\xe5\x84\x98\xd9\x86\x0b\xc6\x7f\x10\x5b\xf9\xe8\x12\x32\x25\x66\x66\x9c\xc6\x40\xdc\xf8\xb3\x79\x76\xbe\xa1\x0e\x17\x90\xa0\xd0\x8a\x30\x52\x0e\xa4\xe5\x93\x81\xe2\x4f\x42\xc5\xbc\xcb\x6f\xa0\xf4\x4f\xda\x73\x39\x93\xee\x9f\x1a\x54\xc4\xde\x3f\x7a\xda\xbc\x7f\x3f\x1b\x16\xfb\x76\x78\x1b\xfd\x0b\xc0\x73\xb8\x1e\xde\x56\xc5\x67\x4b\xd4\x5d\xb6\x0a\xda\xab\xc1\x93\x3b\x18\x51\xcc\xa4\xc4\x8f\x92\xf0\x44\x82\xe8\xfd\x64\x33\xd1\xb4\x26\x3c\x56\x7a\x5c\x83\x05\xb6\x4d\x72\x51\x94\x35\x96\xbb\x2c\x3f\x7f\x7d\x9d\xef\x47\xdf\x93\xf3\xcf\xb8\x30\xaf\x4e\xf6\x4f\x2d\xd8\x5f\x5f\x39\x2e\xec\xf5\x48\xf8\x72\x56\x3a\x2a\xfa\x75\x12\xcc\x89\x74\x7e\x6a\xc0\x4e\x8a\x79\xc4\x27\x3b\x73\x83\xc3\xf7\x48\xff\xf5\x06\xc8\x35\xfe\x6f\xb9\x13\x8c\xff\xf7\x94\x25\xf3\xe5\xd1\x0f\x35\x20\x93\xfb\xd2\xbd\xe5\x1d\x0b\x74\xe6\x41\x9d\x8e\x16\x3d\x05\x71\xd1\x08\xef\xa7\xf6\x85\x81\xdd\xa5\xe4\xff\x03\x3a\xa2\xab\xe7\x2f\x8d\xfa\xb9\x30\x4f\x07\xfe\x85\xc0\x66\x27\xbf\x4f\xcf\xdb\x1f\x01\x00\x00\xff\xff\x67\x6a\x0f\xb0\x20\x0e\x00\x00" func stakingcollectionCreate_new_tokenholder_acctCdcBytes() ([]byte, error) { return bindataRead( @@ -5300,11 +5320,11 @@ func stakingcollectionCreate_new_tokenholder_acctCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/create_new_tokenholder_acct.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4a, 0x6f, 0x86, 0x43, 0x9d, 0xd1, 0x12, 0x9a, 0x67, 0xc7, 0xb5, 0xa4, 0x61, 0xe7, 0xd2, 0x2d, 0xd0, 0xeb, 0x97, 0x91, 0x68, 0xc2, 0xff, 0x73, 0x7e, 0x83, 0xb3, 0x4b, 0x5c, 0x10, 0x33, 0x7f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xef, 0xf3, 0xe8, 0xc5, 0x56, 0xc1, 0x18, 0x8f, 0xbe, 0xfd, 0x7b, 0xd1, 0x27, 0x19, 0xc8, 0x43, 0xae, 0x40, 0x33, 0x7e, 0x5e, 0xc0, 0x12, 0x42, 0x93, 0xe2, 0x91, 0xa7, 0xa, 0xc7, 0x40, 0x5f}} return a, nil } -var _stakingcollectionDeploy_collection_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8d\xb1\x6a\xc4\x40\x0c\x44\xfb\xfd\x8a\x29\x6d\x08\x76\x7f\xdd\x41\x8a\x54\x69\x42\x3e\x40\x68\xc5\x9d\xb1\x2d\x99\x5d\x1d\x24\x84\xfb\xf7\xb0\x0a\x6b\xb2\x85\x16\x8d\x66\xe6\xcd\x33\x5e\xe5\xd8\xec\xbb\x82\xc0\xa6\x5e\x88\x1d\x6e\x20\x05\x31\xdb\x43\x3d\xcd\x33\x3e\xab\xe4\xa6\xe6\xf0\xc2\xef\x82\xea\xb4\x2e\x7a\x03\xdb\xb6\x09\xfb\x62\xda\x0c\x71\xa1\x5d\x7a\x18\x54\x43\xdb\x8c\xd7\xa8\x58\x45\xeb\x09\x4a\xc9\x0b\x69\xa5\x88\x0f\x5d\x7d\xa7\x5d\x2e\xf8\xf0\xb2\xe8\xed\x05\x6c\xf9\xdc\x46\xfc\x24\x00\x88\x71\x14\x39\xa8\xc8\x40\x79\x5f\xf4\x82\xeb\xc3\xef\xd7\x3f\x68\xb7\xb5\x17\xd7\xa9\x57\xd7\x89\x72\x1e\x34\x00\xff\x71\x1d\xd3\xe6\x94\xa5\x7d\x6f\xf2\x35\x8c\x63\xf4\x3c\xd3\x33\xfd\x06\x00\x00\xff\xff\xa7\x5f\x56\xfd\x29\x01\x00\x00" +var _stakingcollectionDeploy_collection_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8e\xb1\x6a\xc4\x30\x10\x44\x7b\x7d\xc5\x54\x41\x86\x60\xf7\xd7\x1d\x49\x91\x2a\x4d\xc8\x07\x2c\xda\xe5\xce\xd8\x5e\x19\x69\x0f\x12\xc2\xfd\x7b\xd0\x26\x32\xa7\x62\x85\x46\x33\xf3\x76\x9a\xf0\x2a\xfb\x9a\xbf\x2b\x08\x29\xab\x15\x4a\x06\xcb\x20\x05\xa5\x94\x6f\x6a\x61\x9a\xf0\x59\x85\x9b\xca\xee\x85\x5d\x05\xd5\x68\x99\xf5\x82\x94\xd7\x55\x92\xcd\x59\x9b\xc1\x7f\x68\x93\x1e\x06\x55\xd7\xd6\x9c\x16\xaf\x58\x44\xeb\x01\x0a\xc1\x0a\x69\x25\x8f\xc7\xae\xbe\xd3\x26\x27\x7c\x58\x99\xf5\xf2\x8c\x94\xf9\x78\x0d\xf8\x09\x00\xe0\x63\x2f\xb2\x53\x91\x48\xbc\xcd\x7a\x02\xdd\xec\x1a\xcf\xcc\x2f\xff\x2d\x03\x9e\xce\x7f\x3b\xf4\x54\x3b\x6e\x1e\x3b\xa9\x8e\xc4\x1c\xd5\x79\x8f\xf4\x4e\x6d\x73\x64\x69\xd7\x9b\x7c\xc5\x61\xf0\x9e\x7b\xb8\x87\xdf\x00\x00\x00\xff\xff\x97\xdc\x67\x42\x38\x01\x00\x00" func stakingcollectionDeploy_collection_contractCdcBytes() ([]byte, error) { return bindataRead( @@ -5320,11 +5340,11 @@ func stakingcollectionDeploy_collection_contractCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/deploy_collection_contract.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbd, 0x3e, 0xf2, 0xcf, 0xfd, 0x65, 0x3, 0xfc, 0xc1, 0x73, 0xff, 0x84, 0x1f, 0xad, 0xc6, 0xe3, 0x57, 0x8d, 0x57, 0x22, 0x89, 0xc2, 0x14, 0x62, 0x4d, 0x1f, 0x9d, 0xae, 0xb6, 0x6b, 0xe4, 0x55}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0x65, 0xef, 0x78, 0xd5, 0x3e, 0x89, 0x71, 0xda, 0x8b, 0xc, 0x78, 0x34, 0x3c, 0x6e, 0xb9, 0x9, 0xa0, 0x2b, 0x75, 0x35, 0xbf, 0x9f, 0x65, 0xdd, 0xa, 0x3e, 0x8b, 0x30, 0xd, 0x4b, 0x10}} return a, nil } -var _stakingcollectionRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\x82\x40\x10\xbd\xf3\x15\x13\x0f\x0d\x26\x0d\xf6\xd0\xf4\x40\xda\x1a\x02\xda\x98\x1a\x6d\xc4\x7e\xc0\x76\x19\x70\x23\xec\x90\x61\x88\x26\x8d\xff\xde\xc0\x62\x3d\xe8\xc1\x3d\x40\x60\x67\xde\x7b\xf3\xde\x98\xaa\x26\x16\x98\x97\x74\x48\x45\xed\x8d\x2d\x62\x2a\x4b\xd4\x62\xc8\x42\xce\x54\xc1\xd3\x31\xdd\x46\x9f\x8b\xd5\x47\xbc\x5e\x2e\x67\xf1\x76\xb1\x5e\x45\x49\xb2\x99\xa5\xa9\xe7\x4d\x26\x13\xd8\x60\x61\x1a\x41\x6e\x40\x41\x86\x25\x16\x4a\x88\xc1\x58\x90\x1d\x42\xe3\x30\x41\x5f\x40\x19\x1b\x6a\x59\x63\xdf\x9c\x13\xbb\xba\x1a\xb5\xc9\x0d\x66\x60\x29\xc3\x45\x02\xca\x66\xfd\x85\xaa\xa8\xb5\x02\x94\x83\xd0\x1e\x6d\x03\x42\xa0\xa9\xaa\x8c\x78\x9e\xb0\xb2\x8d\xea\x51\x7d\x93\x85\x90\x0a\x1b\x5b\x3c\x0e\x3d\x21\x7c\xcf\xcd\xf1\xe5\x79\x0c\xbf\x1e\x00\x40\xff\x28\x51\xce\x9a\x2e\x73\x6e\x30\x0f\xe1\xe1\xa6\x05\xc1\xd5\x1f\xaf\xc7\xa9\x19\x6b\xc5\xe8\x2b\xad\x1d\x57\xd4\xca\x2e\x72\x1f\x67\xc2\xee\x34\x58\xe6\xc1\x2d\x42\x78\x83\xa1\x37\xf8\x21\x66\x3a\xbc\xde\x2b\xe0\xdd\xef\x62\x09\x6f\x47\x76\x5d\x9e\x0a\xb1\x2a\xf0\x4b\xc9\x6e\xfc\x2f\xab\x3b\xd3\x29\xd4\xca\x1a\xed\x8f\x62\x6a\xcb\xce\x78\x01\x27\x05\x18\x3b\xbb\xe1\x0a\x6b\xe4\x10\x4e\xce\x03\x3c\xa2\x6e\x05\xef\x99\x36\xe0\x61\x49\x92\xf3\x82\xf8\x2e\xe7\x10\x4c\x76\x09\xcc\xbd\xc7\x0e\x6c\xa0\x3a\x79\x7f\x01\x00\x00\xff\xff\xdd\x5f\xdf\x77\xa3\x02\x00\x00" +var _stakingcollectionRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x31\x8f\xd4\x40\x0c\x85\xfb\xfc\x8a\xa7\x2d\x8e\x44\x42\xd9\x06\x51\x44\xc0\x09\xee\x74\x12\x15\xe8\x56\xd0\x9b\x89\x93\x1d\xdd\x64\x1c\x79\x1c\xed\x21\x74\xff\x1d\x25\x93\x65\x8b\x4d\x41\x73\x53\x24\x51\x6c\x3f\x3f\x7b\x3e\x3f\x8c\xa2\x86\x87\x20\xa7\x83\xd1\x93\x8f\xfd\x9d\x84\xc0\xce\xbc\x44\x74\x2a\x03\x76\x9b\xb1\x5d\x51\xec\xf7\x7b\x3c\x72\xef\x93\xb1\x26\x10\x5a\x0e\xdc\x93\x89\xc2\x47\xd8\x91\x91\x72\x11\xdc\x45\x51\x39\xc9\xa4\x8e\x97\xe2\x4e\x34\xe7\x8d\xec\x7c\xe7\xb9\x45\x94\x96\xbf\xde\x83\x62\xbb\x04\x68\x90\x29\x1a\xa4\x83\xc9\x13\xc7\x04\x13\x38\x19\x06\x6f\x45\x61\x4a\x31\xd1\xa2\x5a\xfa\xb6\xc1\xc1\xd4\xc7\xfe\xed\x5a\xd3\xe0\xc7\x83\x7f\x7e\xff\xae\xc2\x9f\x02\x00\x96\x47\x60\x3b\x7b\xba\x0c\xf2\xc8\x5d\x03\x9a\xec\x58\x6e\xce\x59\x5f\x3e\xbf\x9d\x22\x6b\x85\x9b\xed\xbc\xab\x3f\xc5\xd2\x73\x54\x1e\x49\xb9\x24\xe7\xb2\xaf\xa5\xd5\x17\x51\x95\xd3\x4f\x0a\x13\x57\xb8\xf9\x9c\x63\x67\xaf\xf3\x49\x1c\xba\x7a\xcb\x2b\x3e\x62\x95\xaa\x93\x89\x52\xcf\xf5\xaf\x45\xec\xc3\x6b\xcc\xf0\xa9\x9c\x11\x68\xb6\xf1\xb8\x4e\x3f\x64\x47\xdf\xc9\x8e\xd5\xbf\x51\xe6\x73\x7b\x8b\x91\xa2\x77\xe5\xee\x4e\xa6\x30\xdf\xb3\x21\xdb\x06\x41\xb9\x63\xe5\xe8\x78\xbe\x5e\xc2\x35\x86\x2b\x4e\xa3\xfa\x81\xf4\x37\xa6\xc4\xfa\x26\x9d\xd7\xb0\xcb\x9d\x5e\xf2\xba\xf9\x99\xdd\x64\xfc\x3f\x9b\xac\x75\x65\xf7\xfe\xcc\x6d\x99\xf1\x6b\xe0\xdb\x0b\x47\xf9\x5d\x65\xb1\xb5\xd5\x4b\xf1\x37\x00\x00\xff\xff\x50\xb7\x12\x6d\x37\x03\x00\x00" func stakingcollectionRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -5340,11 +5360,11 @@ func stakingcollectionRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x61, 0x18, 0x59, 0x73, 0x8c, 0xe4, 0x18, 0x5c, 0xc3, 0x6a, 0x63, 0xba, 0xf1, 0x3a, 0x2f, 0x4c, 0x28, 0x93, 0x6e, 0x5a, 0x61, 0x2f, 0xfc, 0x43, 0xe1, 0x29, 0x1a, 0xec, 0xc8, 0xdf, 0x45, 0x55}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x24, 0xb5, 0x3c, 0x3f, 0x4c, 0x1c, 0x87, 0xd4, 0xd0, 0xf5, 0x99, 0x13, 0x52, 0x85, 0x4e, 0xe2, 0x34, 0xbe, 0xc5, 0x5b, 0xb0, 0xd5, 0x7, 0xb7, 0x78, 0x4c, 0x27, 0xcd, 0x8a, 0xf5, 0x38, 0xf6}} return a, nil } -var _stakingcollectionRegister_multiple_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x6b\xdb\x4e\x10\xc5\xef\xfa\x14\x8f\x1c\xfe\xc8\xfc\x8b\x9d\x42\xe9\x41\x34\x0d\xc6\x4e\x8a\x69\x48\x8a\x95\x9e\x82\x0f\x5b\x69\x24\x0f\x59\xed\x88\xdd\x51\x63\x28\xfe\xee\x65\x25\xcb\x49\xb1\x29\xdd\x83\x40\xc3\xec\x6f\xde\xbe\x37\xdc\xb4\xe2\x15\xb7\x56\x5e\x72\x35\xcf\xec\xea\x85\x58\x4b\x85\xb2\x38\x54\x5e\x1a\x5c\xee\xf2\xc7\xf9\xd7\xd5\xfd\x97\xc5\xc3\xdd\xdd\xcd\xe2\x71\xf5\x70\x3f\x5f\x2e\xd7\x37\x79\x9e\x24\xb3\xd9\x0c\x6b\xaa\x39\x28\xf9\x80\xa6\xb3\xca\xad\x25\x94\x64\xa9\x36\x2a\x3e\x80\x1d\x74\x4b\x08\x03\x1b\xc5\x2b\xdc\x53\x90\xce\x17\xd4\x43\x2a\xf1\x43\x5f\x4b\x05\x57\x4c\x25\x9c\x94\xb4\x5a\x06\x18\x57\xc2\x34\xd2\x39\x85\x54\x50\x79\x26\x17\xa0\x82\x42\x9a\x86\x35\x49\xd4\x1b\x17\x4c\x8f\x4c\xb9\x0c\x19\x9e\x72\xf5\xec\xea\xcd\xbb\xc3\xb5\x58\xfa\x7e\xcb\xbb\x8f\x1f\x36\x13\xfc\x4a\x00\xa0\xff\x58\xd2\x51\xd6\xeb\x93\xd7\x54\x65\xf8\xef\xac\x1b\xd3\x93\x4a\xd2\x73\x5a\x4f\xad\xf1\x94\x9a\xa2\x88\xe3\x32\xcc\x3b\xdd\xce\x87\x9f\x71\x60\x3c\x81\x6c\x35\x3d\x37\x10\x57\x38\xdc\x9d\xfe\x10\xef\xe5\xe5\xd3\xbf\x0a\xf8\x9c\xc6\x84\xb2\xf3\xe9\x9d\xb6\xe7\x2a\xde\xd4\xf4\xcd\xe8\x76\x72\x94\x15\xcf\xf5\x35\x5a\xe3\xb8\x48\x2f\x16\xd2\xd9\xe8\xbd\x62\x90\x02\x4f\xd1\x74\x9c\xb0\x2e\x06\xc2\x7e\xf0\x80\x76\x54\x74\x4a\x6f\x5e\xfb\xd3\x78\x30\xae\x70\x79\xac\xc4\x88\xb9\x8c\x0b\xc1\x65\x78\xd3\xf9\x57\x6f\xa6\xfe\xb0\x5d\xcb\x71\xa5\xd2\x61\x31\x32\x70\x39\x26\x9c\x8d\x49\x3f\xf1\x66\xd2\xe7\xfb\x07\x3c\xca\x60\xfc\x8f\xf7\xc7\xea\xfe\xa0\x7d\x9f\xfc\x0e\x00\x00\xff\xff\x07\x6b\xf3\x42\xff\x02\x00\x00" +var _stakingcollectionRegister_multiple_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x6b\xdc\x30\x10\xc5\xef\xfe\x14\x8f\x3d\x04\x2f\x2d\xde\x16\x4a\x0f\xa6\x69\x68\x13\x02\x3d\xb5\x64\x69\x2f\x61\x0f\xaa\x3c\xf6\x0e\x91\x25\x33\x1a\x77\x03\x65\xbf\x7b\x91\xff\xec\xa6\xac\xe9\xad\x3a\x18\x33\x1a\x3d\xbd\x37\xfa\x71\xdb\x05\x51\xdc\xbb\x70\xd8\xaa\x79\x62\xdf\xdc\x06\xe7\xc8\x2a\x07\x8f\x5a\x42\x8b\xd5\xe2\xde\x2a\xcb\x36\x9b\x0d\x1e\xa8\xe1\xa8\x24\x11\x6d\xef\x94\x3b\x47\xa8\xc8\x51\x63\x34\x48\x04\x7b\xe8\x9e\x10\xc7\xc3\xb0\x67\x65\xa1\x18\x7a\xb1\x34\x88\xd4\x41\xc6\xbe\x8e\x2c\xd7\x4c\x15\x7c\xa8\xe8\xcb\x5d\x84\xf1\x15\x4c\x1b\x7a\xaf\x08\x35\x34\x3c\x91\x8f\xd0\x00\x1b\xda\x96\x35\xcb\x54\x8c\x8f\x66\x90\xcc\xb9\x8a\x25\x1e\xb7\x2a\xec\x9b\xdd\xeb\xe9\x58\x2a\x7d\xbf\xe7\xe7\xf7\xef\x76\x6b\xfc\xce\x00\x60\xf8\x38\xd2\xd9\xd6\x39\xd3\x03\xd5\x25\x4c\xaf\xfb\x7c\x31\x72\x71\xfe\xfd\x7a\xf0\x24\x6b\x5c\x2d\xf7\x5d\x54\xb2\xe1\xce\x4e\xa8\x33\x42\xb9\xb1\x36\x59\x9b\xae\xfa\x1c\x44\xc2\xe1\x87\x71\x3d\xad\x71\xf5\x69\xdc\x9b\xbd\xa6\x15\xc9\xd5\xc5\x92\x57\x5c\x63\x92\x2a\xa2\x06\x31\x0d\x15\x3f\x07\xb1\x0f\xff\x23\xc3\xc7\x3c\xd1\x50\x2e\x93\x72\xd9\xbe\x1d\x1d\x7d\x33\xba\x5f\x9f\xa2\xa4\x75\x73\x83\xce\x78\xb6\xf9\xea\x36\xf4\x2e\x3d\xb5\x62\xb4\x0d\xa1\xf4\xc6\xb8\x64\x6d\x54\x38\x8e\x63\xa4\x67\xb2\xbd\xd2\x8b\x09\xfd\x32\x02\xc6\x35\xde\x9c\x2a\x89\x28\xae\x12\x7f\x5c\xc5\x17\x9d\xff\x9c\x67\x21\x13\xcc\x77\x33\xc1\xf9\xc8\x61\x09\xae\x66\xa0\xca\x19\xac\x47\xde\xad\x07\x9c\xfe\x12\x4f\x36\x18\xaf\xf0\xf6\x54\x3d\x4e\xde\x8f\xd9\x9f\x00\x00\x00\xff\xff\x02\xdc\x8f\x76\x6b\x03\x00\x00" func stakingcollectionRegister_multiple_delegatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -5360,11 +5380,11 @@ func stakingcollectionRegister_multiple_delegatorsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_multiple_delegators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0x31, 0xb5, 0x31, 0x72, 0x2e, 0x40, 0x1a, 0xe0, 0xb2, 0x95, 0xdc, 0x95, 0xd2, 0xb2, 0xa6, 0xa4, 0x49, 0x7a, 0x4d, 0x6a, 0xfb, 0x84, 0x73, 0x52, 0x39, 0x78, 0xa8, 0xe1, 0x99, 0x65, 0x2e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x55, 0xaf, 0x3d, 0x1, 0xae, 0xfd, 0xe5, 0x9b, 0xc1, 0x4a, 0xad, 0x60, 0x30, 0x97, 0x5b, 0xd3, 0xfd, 0xb2, 0x73, 0x19, 0xdf, 0x4b, 0x61, 0x5e, 0xa7, 0x53, 0x2c, 0x3a, 0xd1, 0xce, 0xe5, 0xb4}} return a, nil } -var _stakingcollectionRegister_multiple_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\x5d\x4f\xdb\x30\x14\x86\xef\xf3\x2b\xce\xb8\x98\x5a\xad\x0a\x4c\x9a\xa6\x29\x5a\x87\xaa\x02\x13\x2a\x82\x89\xb2\xab\xaa\x17\x26\x3e\x49\x8e\x70\xec\xe8\xd8\xa5\x64\xc0\x7f\x9f\x9c\xa4\x1f\x21\xe9\x58\x2e\xaa\xfa\x7c\xbc\x7e\x73\xfc\x38\x94\x17\x86\x1d\x4c\xb9\x2c\x9c\x09\x9a\xd5\x85\x32\xeb\xb9\x13\x0f\xa4\xd3\xa9\x51\x0a\x63\x47\x46\x43\xc2\x26\x87\x93\xa7\xf9\xdd\x64\x76\x79\xfd\x73\x7a\x73\x75\x75\x3e\xbd\xbb\xbc\xb9\x9e\x9c\x9d\xdd\x9e\xcf\xe7\x41\x70\x7c\x7c\x0c\xb7\x98\x92\x75\xc8\x16\xf2\x95\x72\x54\x28\x04\x6d\x24\x5a\x20\x0d\x2e\x43\xb0\xb5\x2c\xc4\x3b\x5d\x46\x6b\x56\x1c\x63\xd5\x9f\x18\xae\xeb\x0a\x8c\x29\x21\x94\x55\x3b\x90\x4e\x0c\xe7\xc2\xd7\x07\x81\x63\xa1\xad\xa8\x9a\x07\x24\x6d\x04\x8b\xb9\x63\xd2\xe9\x72\x14\xc0\xde\xc3\x46\xa1\x4f\xfe\xbe\xd4\xee\xdb\x9b\x9c\x46\xb7\x36\xec\x9d\x4c\xa4\x64\xb4\x16\x0f\xca\xec\x4a\x67\x58\x1e\xac\x6a\xde\xeb\x5f\x25\x22\x37\x2b\xed\x2a\x47\x17\xf4\xf4\xf5\xcb\x9b\x74\xb1\xba\x57\x14\x37\x02\x8b\xfa\x40\xc2\x19\x96\x57\x64\xdd\xb9\x76\x5c\x2e\x4f\x97\x43\x78\xae\x7a\xaa\x1f\x85\x6e\xb3\xed\xee\x94\x6e\x31\x89\xe0\x63\xef\x01\x86\x9d\x48\x50\xe9\x14\x8c\x85\x60\x1c\x88\x38\xf6\x06\x23\x98\xac\x5c\x36\xa9\x17\x9b\x0d\xab\x57\x44\x95\x84\x7d\x1b\xc2\x18\x9a\xde\xf0\xde\x30\x9b\xf5\xf7\xff\x35\xf0\x63\xe0\xa1\x8a\xfa\x81\xeb\x96\xcf\x9d\x61\x91\xe2\x2f\xe1\xb2\x61\x6b\x76\xa7\xa7\x50\x08\x4d\xf1\xe0\x68\x6a\x56\xca\x33\xe3\xa0\xb6\x02\x8c\x09\x38\x03\x1d\xad\xa3\x61\xb0\x95\x78\x14\x0c\x04\x63\x38\xd9\x85\x3c\x87\x24\x3d\xb5\x24\xed\xde\x10\xfc\x43\x49\x35\xfb\x5c\xc4\x19\x69\x6c\x26\x05\xe3\xc3\x03\x0a\xb9\xb9\x15\xd7\x46\xe2\xa0\xa5\x55\xe9\xc9\x08\x48\x8e\x3a\x71\x0f\x70\x54\x63\xbc\xa0\x65\x37\xdf\x81\x38\xea\xe3\xfa\x9d\xd6\x19\x96\xd1\x1b\xc6\x7b\x3b\x76\x80\x47\xfb\xb0\xf7\xd6\xd6\xa4\x47\x1b\xe2\x7b\x6b\x0a\x51\x22\x47\x1b\x70\x86\xd0\x2a\x78\xee\xce\x28\xd9\xbb\x20\x0b\x5a\xc2\x78\x0c\x9a\x14\xbc\xbc\xb4\xe3\x1f\x42\x85\x3a\x75\x99\xcf\x9f\xf4\xe8\xd4\x5b\xd7\xa8\x08\xed\x39\x29\xd8\x3c\x92\x44\xf8\x83\x6c\xe0\x01\x4b\xbb\xfd\x06\x35\x07\xbc\xf1\x78\x34\xec\xa8\xbd\x76\x22\xbe\xf7\x01\x4b\x0f\x4e\xdb\xd7\x01\x2f\x6d\x88\x42\xbf\x7f\x28\xa4\x1c\x6c\x9b\x23\x2f\x17\x6e\x97\x23\xc8\x84\xcd\x26\x2a\x35\x4c\x2e\xcb\xeb\x6c\x2b\x34\x82\x35\x52\x9a\xb9\x3a\x55\xff\x7f\xcf\x79\x7b\xe5\xaf\x02\xc1\x27\xf8\x1c\xb4\xf3\xaf\xc1\x6b\xf0\x37\x00\x00\xff\xff\x09\x34\xd7\xde\x30\x06\x00\x00" +var _stakingcollectionRegister_multiple_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x4d\x6f\xd3\x40\x10\xbd\xfb\x57\x0c\x39\x54\xb6\x88\xdc\x22\x21\x84\x2c\x42\x55\x2a\x2a\xa1\x22\x40\xad\xe0\x12\xe5\xb0\xb5\xc7\xf6\xa8\xeb\x5d\x6b\x76\xdd\x60\xda\xfe\x77\xb4\x5e\xe7\xc3\xb1\x43\x4f\xf8\x10\xd9\x33\x6f\xde\xbe\x9d\x99\x17\xaa\x6a\xcd\x16\x2e\xb9\xad\xad\x0e\xfa\xaf\x2b\xa9\xd7\xb7\x56\xdc\x93\x2a\x2e\xb5\x94\x98\x5a\xd2\x0a\x72\xd6\x15\xcc\x26\x73\xb3\x20\x38\x3d\x3d\x85\x1b\x2c\xc8\x58\x64\x03\x55\x23\x2d\xd5\x12\x41\xe9\x0c\x0d\x90\x02\x5b\x22\x18\x5f\x07\xe9\x8e\x94\xd1\xe8\x86\x53\xec\xea\x73\xcd\x1e\x57\x63\x4a\x39\x61\xd6\x95\x03\xa9\x5c\x73\x25\x1c\x3e\x08\x2c\x0b\x65\x44\x57\x1c\x52\x66\x12\x58\xde\x5a\x26\x55\xac\xe6\x01\xec\x3d\xac\x25\xba\xe4\xcf\x2f\xca\xbe\x3f\xc8\x29\xb4\x6b\xcd\x4e\xc9\x45\x96\x31\x1a\x83\x47\x69\x76\xd0\x6b\x6c\x8f\xa2\xfa\x7b\xfd\x0b\x22\x2a\xdd\x28\xdb\x29\xba\xa2\xdf\xef\xde\x1e\xa4\xeb\xe6\x4e\x52\xda\x13\x2c\xfd\x34\xe2\x6b\x6c\xbf\x92\xb1\x9f\x95\xe5\x76\x75\xbe\x8a\xe0\xb1\xab\xe9\x7e\x24\xda\xcd\xb1\xbb\x31\xdc\x60\x9e\x80\x68\x6c\x19\x4e\x4e\x29\xde\xbd\x7e\x5f\x2b\xe4\x08\x4e\xa6\x71\xa3\x48\xd0\x9d\x59\x33\xd6\x82\x31\x14\x69\xea\x2e\xd3\x1f\xf5\x49\x33\xeb\xf5\x2f\x21\x1b\x8c\xe0\xe4\xc2\xe7\x36\x5a\xbb\xee\xa0\xcc\xe3\x29\xad\xb0\x80\x9e\x2a\x36\x56\xb3\x28\x30\xbe\xeb\xc8\x3e\xfc\x8f\x3b\x7c\x0c\xdd\x02\x27\xd3\xcb\x3d\x86\xdf\x7a\x45\x3f\x84\x2d\xa3\xc1\xa8\xce\xcf\xa1\x16\x8a\xd2\x70\x76\xa9\x1b\xe9\x56\xd4\x82\x97\x0d\x8c\x39\x58\x0d\x63\x7b\x44\xc1\x96\xe2\x41\x30\x10\x2c\xe0\x6c\x17\x72\x6b\x4f\x99\x33\x09\x65\x66\xaf\x71\xee\xa1\xbc\x1b\x75\x25\xd2\x92\x14\xf6\xdd\x85\xc5\xf1\xa6\xc6\xdc\x9b\xf0\x9b\xce\x30\x1c\x70\x75\x7c\x59\x02\x94\xcd\x47\x71\xe7\x97\xc4\xbb\x66\x49\xab\x71\x7e\xe4\x99\x64\xca\x46\x2f\x94\x5e\x63\x9b\x1c\x58\x6a\xb2\x62\xe7\xa7\x64\xdf\x5b\x93\x58\x6f\xac\x64\x63\xb0\x49\x4c\x2d\x5a\xe4\x64\xb3\x6c\x11\x0c\x00\x8f\xe3\x1e\xe5\x7b\x7e\x5c\xd2\x0a\x16\x0b\x50\x24\xe1\xe9\x69\x18\x7f\x15\x4b\x54\x85\x2d\x5d\xfe\x6c\x82\xc7\x1f\xed\x57\x45\x28\xb7\x27\x35\xeb\x07\xca\x10\xfe\x20\x6b\xb8\xc7\xd6\x6c\xff\xf2\xfa\x01\x6f\x34\xce\xa2\x11\xdb\xf3\x28\xe2\x6a\xef\xb1\x75\x8b\x33\xd4\x75\x44\xcb\x70\x89\x62\x77\x7e\x2c\xb2\x2c\xdc\x16\x27\x8e\x2e\xde\x7e\xce\xa1\x14\xa6\xbc\x90\x85\x66\xb2\x65\xe5\xb3\x83\xd0\x1c\xd6\x48\x45\x69\x7d\xca\xbf\xbf\xa4\x7c\xf8\xe5\xac\x40\xf0\x1a\xde\x04\xc3\xfc\x73\xf0\x1c\xfc\x0d\x00\x00\xff\xff\x27\x86\x76\xa0\x9c\x06\x00\x00" func stakingcollectionRegister_multiple_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -5380,11 +5400,11 @@ func stakingcollectionRegister_multiple_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_multiple_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc1, 0x8b, 0xd4, 0xe0, 0x9f, 0x32, 0x52, 0xb9, 0xc9, 0x8, 0x23, 0x5, 0x79, 0x81, 0x7e, 0x42, 0xcd, 0x96, 0x39, 0x91, 0x58, 0x2c, 0xf3, 0x42, 0x51, 0x86, 0x4b, 0xb9, 0x33, 0xf4, 0xff, 0x3a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0x96, 0x94, 0x8c, 0x6e, 0x12, 0x77, 0x29, 0x32, 0xd4, 0x1c, 0x47, 0x25, 0xdd, 0xdc, 0x25, 0xd1, 0x4c, 0x61, 0x97, 0x3e, 0xc1, 0x8e, 0xe8, 0xe7, 0x4b, 0x73, 0xea, 0xe7, 0xa, 0xfc, 0xd2}} return a, nil } -var _stakingcollectionRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x4f\xdb\x4e\x10\xbd\xfb\x53\xcc\x8f\xc3\x4f\x89\x84\x0c\x87\xaa\xaa\xac\xa6\x28\x0a\x50\xa1\x20\xa8\x08\x9c\xaa\x1e\x16\xef\xd8\x5e\x65\xbd\x63\x8d\x27\x0d\x2e\xe4\xbb\x57\xeb\xcd\x3f\x13\xa7\x6d\x0e\xce\xce\xce\xcc\x9b\x37\x7e\x4f\x36\x65\x45\x2c\x30\xe1\xa6\x12\x8a\xd6\xd1\xb5\xa5\xe5\x4c\xd4\xdc\xb8\x7c\x42\xd6\x62\x2a\x86\x1c\x64\x4c\x25\x9c\xbf\xcc\x1e\xc7\xd3\x9b\xbb\xaf\x93\xfb\xdb\xdb\xab\xc9\xe3\xcd\xfd\xdd\xf8\xf2\xf2\xe1\x6a\x36\x8b\xa2\xb3\xb3\x33\x78\xc0\xdc\xd4\x82\x5c\x83\x02\x8d\x16\x73\x25\xc4\x60\x1c\x48\x81\x50\x07\x4c\x48\x77\xa0\x8c\x35\x2d\x38\xc5\xb6\x39\x23\x0e\x75\x15\xa6\x26\x33\xa8\xc1\x91\x46\x30\x2e\x23\x2e\x55\x5b\xaf\x9c\x6e\x4b\x54\x49\x0b\x27\x40\x19\x08\xcd\xd1\xd5\x20\x04\x29\x95\xa5\x91\x28\x12\x56\xae\x56\x2d\xfe\xc0\xe8\x04\x66\xc2\xc6\xe5\xa7\x11\xec\xfd\x98\x2c\x26\xf0\x74\xe3\xe4\x53\x37\xe1\x50\x96\xc4\x9e\xe6\x58\x6b\xc6\xba\xee\xef\xdf\x95\x4d\xb1\xe9\x2f\x59\x6f\x7b\x34\x1f\x56\x48\xe0\xe9\xda\xbc\x7c\xfc\xd0\xcd\x55\x8b\x67\x6b\xd2\x29\x36\x75\x02\xdf\x83\x38\xf1\x14\x9b\x5b\x53\xcb\x95\x13\x6e\x7e\x5c\x0c\xe1\xb5\xed\x68\x1f\x16\x65\x33\x6e\x27\xd8\x03\x66\x09\xfc\xdf\xab\x65\x7c\x70\x13\xb5\x38\x15\x63\xa5\x18\x07\x2a\x4d\x03\xb7\xf1\x42\x8a\x71\x08\x36\x03\xdb\xd5\xd0\x66\x71\xdf\x40\x18\xc1\xba\x37\x7e\x26\x66\x5a\x7e\xfe\x57\x02\x5f\x06\xde\x5f\x49\xbf\xf7\x0e\xcb\x67\x42\xac\x72\xfc\xa6\xa4\x18\x76\xde\xdc\xc5\x05\x54\xca\x99\x74\x70\x32\xa1\x85\xf5\x0e\x12\x08\x54\x80\xd1\xbb\x05\x0e\xb0\x4e\x86\xd1\x16\xc2\x64\xed\xcb\x2c\x55\x5a\x18\x87\xeb\xd5\x61\x74\x7c\xe3\x98\xd7\x8e\xbf\x23\x8d\x83\x0e\x15\xef\x3d\xa3\xfb\x7c\xe7\x9f\x7f\xb5\xdd\xc1\xd5\x1f\x1d\xd8\x09\x8f\x1b\x71\x77\xee\x37\x63\xf8\x7f\x67\x46\xd5\x20\x27\x1b\x61\x87\xb0\x4d\xbe\x76\xd7\xcd\xf6\x6c\x0b\xa3\x11\x38\x63\xe1\xed\x6d\xef\xf2\xbf\xd8\xa2\xcb\xa5\xf0\xc9\xf3\x77\xdd\x61\x50\x10\x4e\x39\xaf\x5a\xc5\xf4\xd3\x68\x84\x5f\xc8\x04\x73\x8f\xb9\xf9\x3e\xac\xd5\xd9\x30\x3a\xe9\x3a\x60\xd5\x89\x7c\xcf\x1c\x1b\xff\x09\xda\x23\xd2\x33\xbc\x2b\x79\xec\x07\xc6\x4a\xeb\xc1\xb6\x2b\xf1\x38\xf1\x36\x3c\x85\x42\xd5\xc5\xd8\xe6\xc4\x46\x8a\x32\x64\x3b\x57\xa7\xb0\x44\x93\x17\x12\x52\xe1\x7c\x8c\x6a\x38\xad\xa2\x55\xf4\x3b\x00\x00\xff\xff\x67\xfb\x69\x9e\x92\x05\x00\x00" +var _stakingcollectionRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x51\x6b\xe3\x48\x0c\x7e\xae\x7f\x85\xc8\x43\xcf\x86\xe0\xe6\xe0\x38\x0e\x73\xd9\xd2\x2d\x94\x2e\x85\xdd\xd2\xd0\x7d\x57\x3d\xb2\x3d\xd4\x1e\x19\xcd\xb8\x69\x58\xfa\xdf\x17\x7b\xec\x24\xde\x38\xe9\xf6\x61\xf3\xe0\xcc\x8c\x3e\x49\x9f\x46\xfa\x46\x57\x35\x8b\x83\x6b\xd9\xd4\x8e\x83\x7e\x77\x53\xf2\x7a\xe5\xf0\x59\x9b\xfc\x9a\xcb\x92\x52\xa7\xd9\x40\x26\x5c\xc1\x6c\xd2\x36\x0b\x82\x8b\x8b\x0b\x78\xa0\x5c\x5b\x47\x62\x01\x41\x51\x49\x39\x3a\x16\xd0\x06\x5c\x41\x60\xbd\x13\xa4\xbb\x88\x42\x96\x1b\x49\xa9\x73\xce\x58\x3c\xae\xa6\x54\x67\x9a\x14\x18\x56\x04\xda\x64\x2c\x15\x76\x78\x34\xaa\x83\x60\xc5\x8d\x71\xc0\x19\x38\x7e\x26\x63\xc1\x31\xa4\x5c\x55\xda\x05\x81\x13\x34\x16\xbb\xf8\xa1\x56\x09\xac\x9c\x68\x93\xcf\x03\xd8\xfb\x09\x97\x94\xc0\xe3\x17\xe3\xfe\x1b\x1b\x0c\xb9\x35\x4b\x4b\xf3\x4a\x29\x21\x6b\xa7\xfd\x77\xb0\x3b\xda\x4c\x43\xfa\x6a\x8f\xda\x7d\x09\x09\x3c\xde\xe8\xd7\x7f\xff\x19\xdb\x2a\x4c\x0b\x6d\xe8\x2a\x4d\x5b\xcc\x7e\x08\x38\x8d\x5b\xe9\xdc\xa0\x6b\x84\xae\xca\x9c\x45\xbb\xa2\x1a\xaa\x7c\xc7\xf1\x16\x6d\xf1\xab\x4f\x04\x3f\x82\xce\xab\x24\x37\x94\xb3\xeb\xf8\x03\x65\x09\x60\xe3\x8a\x70\x72\x20\xe2\xdd\xf2\xdb\xda\x90\x44\x70\x3e\x8d\x3b\x38\xf1\x39\x6b\xa1\x1a\x85\x42\xf4\x14\xfb\x54\x9f\x59\x84\xd7\xdf\xb1\x6c\x28\x82\xf3\x9e\x7e\xcb\x73\x7b\xeb\x54\x66\xf1\x14\x57\x58\x42\x1f\x2a\xb6\x8e\x05\x73\x8a\x9f\xba\x60\xff\xff\x89\x1a\x3e\x85\xad\x56\x92\x69\x1d\x1d\xc2\x57\x9e\xd1\x3d\xba\x22\x1a\xf5\xe9\xf2\x12\x6a\x34\x3a\x0d\x67\xd7\xdc\x94\xad\x20\x1c\x78\xda\x80\x20\x94\x91\x90\x49\xa9\x9d\x7e\x84\x43\xbd\xf6\xba\xab\x45\x57\x28\x1b\x68\x2c\xc9\x5f\x76\xb8\x86\x59\x14\x6c\x53\xe9\xac\xeb\xf1\x78\x2a\x60\x79\xfc\x36\x63\xe9\x85\xfe\x95\x15\x85\x23\xca\xad\xe4\xb4\x9a\x92\x5b\xfb\x7d\x57\x6d\x07\x47\x27\x85\x37\xda\x1e\xd7\xdf\x6e\x3d\xad\x41\xff\x3f\xb6\xd5\xb8\x21\x49\x86\xdb\xda\x9a\xf6\x87\x6d\xab\x0d\x9d\xb7\xda\x81\x25\x1c\xea\x2f\x14\xf4\xf3\x9a\xfc\x8e\x5a\xc7\xdd\x3f\x36\x01\x39\x39\xc0\x36\xab\xf7\x06\x1c\xdc\xfd\x0b\xdd\xf6\x5c\x70\x0d\x64\x9a\x0a\x5e\xda\xdc\x50\x0b\xbf\x68\x45\x6a\xbf\xe9\x03\xfb\xa2\x97\x3e\x2c\x61\xf4\x0a\x9c\x62\x3e\x02\x7e\x84\x74\x9b\xec\x63\x7c\xf7\xe3\x1e\x70\xaf\x9b\xa7\x52\xa7\x77\xb4\x81\x25\xdc\x0f\xeb\x30\x38\x3b\x3b\xeb\x5a\x38\x9c\x4c\x54\x10\x2b\x4a\x59\xd1\x2d\xbd\x86\xd1\x7c\x70\xb0\x13\xcf\x67\xdf\xdc\xc0\x23\xa2\x13\xcf\x68\xfc\x4c\x1b\x1b\xa3\x52\xe1\x5e\xe2\xed\x72\xbe\xbd\xe8\x3e\xf0\xb0\x9d\xc3\x9a\x74\x5e\xb8\x04\xfe\x5e\x2c\x16\xf1\x62\x97\xe2\x2d\xf0\xdf\xb7\xe0\x67\x00\x00\x00\xff\xff\x4b\x15\xb8\xc7\xa5\x07\x00\x00" func stakingcollectionRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5400,11 +5420,11 @@ func stakingcollectionRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xae, 0x5, 0x7e, 0x2a, 0xe2, 0xbe, 0x17, 0x25, 0x72, 0xa9, 0x5, 0x40, 0x5, 0xe3, 0xe4, 0xf8, 0x12, 0xf2, 0xe1, 0xd6, 0x2f, 0x88, 0x6e, 0xb6, 0xcd, 0xf8, 0x53, 0xe7, 0x20, 0x35, 0xfc, 0x3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xcb, 0x54, 0x53, 0x1a, 0x9d, 0x3e, 0x32, 0x51, 0xe3, 0x52, 0x76, 0xf2, 0xee, 0xcd, 0xe3, 0xb, 0xab, 0xed, 0x51, 0x3d, 0xed, 0xa4, 0x99, 0x55, 0xe7, 0xfb, 0xec, 0x6c, 0x87, 0xf2, 0xbf}} return a, nil } -var _stakingcollectionRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\x51\x6b\xf2\x50\x0c\x7d\xef\xaf\x08\x3e\x7c\x54\x90\xfa\xb1\x8d\x3d\x94\x6d\x52\xaa\x8e\x32\xd1\x61\xf5\x07\xdc\xd5\xb4\x5e\x76\xbd\xe9\xd2\x14\x85\xe1\x7f\x1f\xf5\x5a\x1d\xd3\x07\xef\x43\x43\x42\x72\xce\x49\x4f\xf4\xa6\x24\x16\x18\x1b\xda\xa6\xa2\x3e\xb5\x2d\x62\x32\x06\x33\xd1\x64\x21\x67\xda\xc0\xff\x5d\xba\x88\xde\x92\xe9\x6b\x3c\x9b\x4c\x46\xf1\x22\x99\x4d\xa3\xe1\x70\x3e\x4a\x53\xcf\xeb\xf7\xfb\x30\xc7\xaf\x1a\x2b\xa9\xa0\xb6\x95\x43\x80\x9c\x18\x64\x8d\x50\x95\x98\xe9\x5c\xe3\x0a\x2c\xad\x10\x88\x61\x85\x06\x0b\x25\xc4\xa0\xad\x6b\x39\x8e\x64\x27\x56\xcf\x13\x56\xb6\x52\x87\xc4\x6f\x06\x93\x61\x08\xa9\xb0\xb6\x45\xef\x0c\xd0\x14\x97\x89\x95\xfb\xbb\x41\x0f\xd4\x86\x6a\x2b\x21\x2c\xc7\x7a\xf7\xf8\xd0\x85\x6f\x0f\x00\xe0\xf0\x31\x28\x2d\xc9\x79\xb3\x39\xe6\x21\xfc\xbb\xba\x74\x70\x51\xf1\x0e\x38\x25\x63\xa9\x18\x7d\x95\x65\x8e\x2b\xaa\x65\x1d\xb9\xa4\x25\x6c\x5e\x85\x26\x0f\xae\x11\xc2\x33\x1c\x67\x83\x0f\x62\xa6\xed\xd3\xad\x02\x5e\xfc\xc6\x88\xf0\xba\x49\x97\xed\xa9\x10\xab\x02\xdf\x95\xac\xbb\x27\x59\xcd\x1b\x0c\xa0\x54\x56\x67\x7e\x27\xa6\xda\x34\xa6\x08\x38\x29\xc0\x98\x83\x10\x5c\x60\x75\x1c\xc2\xde\xfd\x03\xdc\x61\x56\x0b\xde\xb2\x6d\xc0\xee\x2c\x96\xed\x51\x9c\x9c\x74\xf1\x8f\x93\xbf\x92\xb3\x9b\x2e\xb6\x0a\xf6\xde\x4f\x00\x00\x00\xff\xff\x78\x58\xc1\x42\xac\x02\x00\x00" +var _stakingcollectionRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x8f\xd3\x30\x10\x85\xef\xf9\x15\x4f\x39\x2c\x89\xb4\x4a\x25\x40\x1c\x22\xa0\x82\x45\x2b\xf5\x04\x6a\x55\xee\xc6\x9d\xa4\x16\x8e\x1d\xc6\x63\xb5\x08\xf5\xbf\xa3\xc4\x4d\x83\x68\x0e\x5c\xf0\x21\x8e\xed\xf1\xbc\x37\xe3\xcf\x74\xbd\x67\xc1\xb3\xf5\xa7\x9d\xa8\xef\xc6\xb5\x4f\xde\x5a\xd2\x62\xbc\x43\xc3\xbe\x43\xbe\x78\x96\x67\xd9\x6a\xb5\xc2\x96\x7e\x44\x0a\x12\x10\x5d\x48\x21\x68\x3c\x43\x8e\x84\xd0\x93\x36\x8d\xa1\x03\x9c\x3f\x10\x3c\xe3\x40\x96\x5a\x25\x9e\x61\x5c\x0a\xb9\x5e\xd1\xb7\xb4\x59\x26\xac\x5c\x50\xe3\xa2\x18\x2e\x6e\x3e\xd5\xd8\x09\x1b\xd7\x3e\xce\x09\x86\xcd\xfd\xc6\xc9\xab\x97\xeb\x47\xa8\xce\x47\x27\x35\xf6\xcf\xe6\xfc\xe6\x75\x89\x5f\x19\x00\x8c\x1f\x4b\x32\x89\xcc\xd6\xb7\xd4\xd4\x50\x51\x8e\xc5\x62\x65\xd5\xfc\xfb\xf9\xe4\x88\x4b\x3c\x2c\xc7\xdd\xed\x64\xa3\x66\xcf\xd4\x2b\xa6\x42\x69\x9d\x7c\x8d\x52\x1f\x3d\xb3\x3f\x7d\x55\x36\x52\x89\x87\x0f\xe9\x6c\xf2\x3a\x8c\x40\xb6\xa9\x96\xbc\xe2\x1d\xae\xa9\xaa\x20\x9e\x55\x4b\xd5\xb7\x31\xd9\xdb\xff\x51\xc3\xfb\x62\x78\xf4\x7a\x19\x88\xfb\xf0\x5d\x72\xf4\x45\xc9\xb1\xbc\x95\x32\x8c\xf5\x1a\xbd\x72\x46\x17\xf9\x93\x8f\x76\x60\x40\x90\x6c\x43\x81\xa9\x21\x26\xa7\x09\xe2\xa1\x70\x0f\xde\x95\x8f\x9e\x4d\xa7\xf8\x27\x62\x20\x7e\x11\xa6\x36\xe4\x49\xe9\x92\xda\x4d\x67\xd2\x51\xe8\x5f\x3a\x59\x71\xa2\x75\x3f\xb1\x7a\x03\x2c\xcd\x7f\x01\xf6\xc7\x62\x86\x2c\xcd\x93\x83\x4b\xf6\x3b\x00\x00\xff\xff\x6a\x87\x6b\x8d\x40\x03\x00\x00" func stakingcollectionRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -5420,11 +5440,11 @@ func stakingcollectionRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xef, 0xea, 0x1c, 0x7d, 0xa0, 0xfd, 0x94, 0xf6, 0x62, 0xff, 0xe2, 0x56, 0x30, 0xb4, 0x51, 0x60, 0x6f, 0x63, 0xec, 0x73, 0xb9, 0x24, 0x10, 0xba, 0xd2, 0x4e, 0xda, 0x1f, 0x16, 0xf4, 0xe2, 0xd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0x9, 0xd0, 0xec, 0x1c, 0x52, 0x7a, 0x4e, 0xdd, 0x2e, 0x32, 0x4e, 0x54, 0x32, 0x24, 0xf7, 0x13, 0x28, 0xda, 0x6, 0x1f, 0x13, 0x61, 0x82, 0x5c, 0x5, 0x93, 0xc9, 0xcd, 0x4c, 0xce, 0x85}} return a, nil } -var _stakingcollectionRestake_all_stakersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x52\x4d\x8f\x9b\x30\x10\xbd\xfb\x57\x8c\xf6\x50\x11\x69\x45\x7a\x8e\x9a\xae\x28\xa4\x15\x6a\xc4\x56\x81\x4b\x8f\x5e\x18\xb2\x28\xc6\x13\x19\xa3\xac\xb4\xca\x7f\xaf\x8c\xf9\x0c\xa4\xad\xd4\xfa\x60\x25\x66\xe6\xcd\x9b\xf7\x5e\x51\x9e\x49\x69\xf8\x2a\xe8\x12\x6b\x7e\x2a\xe4\xd1\x27\x21\x30\xd5\x05\x49\xc8\x15\x95\xf0\xf1\x2d\x4e\xbc\xef\x61\xf4\xcd\x7f\xde\xef\x77\x7e\x12\x3e\x47\x5e\x10\x1c\x76\x71\xcc\x46\xcd\x61\x90\xf0\x17\x81\x2d\x46\xd7\x19\x06\xbb\x28\x09\x93\x9f\x89\xf7\x65\xbf\xeb\xba\xd8\x7a\xbd\x06\x9f\xca\xb2\xd0\x15\x28\xbc\x70\x95\x61\x06\x9a\x4e\x28\x2b\xd0\x04\x95\xe6\x27\x84\x9c\x14\x70\x21\x40\x52\x86\x15\x70\x99\x41\x86\x02\x8f\x5c\x93\xaa\xa0\x90\xc0\x21\xed\x89\x32\xa6\x15\x97\x15\xb7\xac\xdf\x19\x00\x40\x73\x09\xd4\x0d\xdc\x64\xad\x03\xe6\x1b\xf8\xb0\xb8\xb1\x3b\x7b\x61\x0d\xce\x59\xe1\x99\x2b\x74\x78\x9a\x52\x2d\xf5\x06\xbc\x5a\xbf\x7a\xf6\xcf\xaa\x1d\x68\x4e\x85\x22\x77\x97\x06\xc2\x16\xda\x5e\xf7\x85\x94\xa2\xcb\xa7\xbf\x25\xf0\xd9\x31\x5a\x6e\x96\x1d\x9a\x97\xc7\x9a\x14\x3f\xe2\x0f\xae\x5f\x57\x3d\x2d\x73\x9e\x9e\xe0\xcc\x65\x91\x3a\x0f\x3e\xd5\x22\x03\x49\x1a\x2c\x15\x50\x98\x1b\xdd\x67\x58\x0f\x16\xe1\x6a\x35\xc0\x37\x4c\x6b\x8d\xa3\x6d\x8d\xba\xc6\x9e\x30\xa8\x60\x7b\x7f\x77\xf7\x88\x3a\xb2\x65\xce\x8a\xf5\xdd\xc6\x60\xdb\x6d\xec\xec\x70\xde\x27\xa4\xfb\x09\x32\x27\xd8\x2e\x04\xcd\x8d\xda\xaf\x8e\x05\xd8\xb4\x40\xd3\xdd\xef\x53\x6b\xb2\x76\x68\x33\x98\x34\x11\xbc\x41\x7a\x1c\x72\xd7\x3c\x16\xe2\x11\x78\x69\x53\xd0\x51\x73\x6d\x78\x3b\x9c\x61\xf8\x95\x4d\xc4\x1a\x25\xf8\x0f\x7a\x05\xc3\xcc\x99\x68\x3d\x8a\xd1\x6d\x04\x39\x97\x6e\x60\x7e\x57\xbf\x60\x5c\xd2\xaf\xde\x37\xba\xfd\xaf\x68\x49\x8d\x85\xba\x5b\xed\xff\x83\x11\xff\xc4\x66\x70\x6b\xa2\xc6\x6f\x2c\xb3\xf7\x95\xfd\x0a\x00\x00\xff\xff\xca\x5e\x38\x8c\x1b\x05\x00\x00" +var _stakingcollectionRestake_all_stakersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x6f\xdb\x30\x0c\xbd\xeb\x57\x10\x39\x14\x36\x50\x38\xf7\x60\x59\xb1\x25\x18\xd0\x4b\x36\xb4\xc5\xee\xac\x4d\xa7\x46\x64\x31\x90\x68\x64\x40\x91\xff\x3e\xc8\x72\xfc\x11\x2b\xdb\x61\xab\x0f\x86\x20\x92\x8f\x8f\x8f\x4f\x55\x7d\x64\x2b\xf0\x4d\xf3\xe9\x59\xf0\x50\x99\xfd\x86\xb5\xa6\x5c\x2a\x36\x50\x5a\xae\x61\x11\x8d\x2d\xd4\xa8\xf2\x71\xfb\x82\xaf\x9a\xba\xa4\x51\xd9\x34\xb0\x50\x6a\xb9\x5c\xc2\x86\xeb\xba\x12\x07\x96\x4e\x68\x0b\x2a\x40\xf8\x40\xc6\x81\x30\x38\xc1\x03\x41\xc9\x16\x50\x6b\x30\x5c\x90\x03\x34\x05\x14\xa4\x69\x8f\xc2\xd6\x41\x65\x00\x21\xef\x79\x28\x25\x16\x8d\xc3\x40\xf8\x5d\x01\x00\xb4\x3f\x4d\xd2\xc2\x4d\x58\x3f\x51\xb9\x02\x6c\xe4\x2d\x89\x0e\x95\x0d\xc7\xef\x27\x43\x36\x85\xbb\x78\xde\xec\x46\xb5\x3d\x8f\x96\x8e\x68\x29\xc1\x3c\xe7\xc6\x48\xd7\xea\x2b\x5b\xcb\xa7\x9f\xa8\x1b\x4a\xe1\xee\x4b\x88\xa5\x1d\x57\xff\x39\xd2\x65\x16\xe3\x0a\x6b\xe8\xa0\x32\x27\x6c\x71\x4f\xd9\x6b\x0b\xf6\xe9\x23\x66\xf8\x9c\xf8\xc5\xad\xe2\x5e\x98\xa7\x3f\x07\x46\x3f\x50\xde\xd2\x7e\x14\xff\x3d\x3c\xc0\x11\x4d\x95\x27\x8b\x0d\x37\xba\x00\xc3\x02\x81\x36\x58\x2a\xfd\x9a\xe7\x6e\x0a\x08\xe7\x20\x23\xfd\xa2\xbc\x11\x1a\x29\xe4\x97\xe9\xdd\xf0\xb8\x75\xb0\xbe\xad\x57\xb6\x27\xd9\x85\xb4\x24\x55\x7d\xb5\xf7\x53\xa8\xf6\xee\xb9\xe0\xbc\x4f\x48\xf7\x1d\x4c\xc9\xb0\x8e\xb8\x3a\xdb\x75\xd1\x24\x00\xac\x3a\xa0\xe9\xec\xb7\xa9\xb5\xd6\x7e\xea\x2c\xff\xd2\x3a\xfe\x0a\xe9\x7e\xb0\x79\x7b\x59\xe9\x7b\xc0\x3a\x18\xe9\x42\x2d\x0b\x6f\xe5\x82\x33\x34\x3f\xab\x89\x58\xa3\x07\xf3\x17\xbd\xb6\x43\xcf\x99\x68\x3d\x8a\xd7\x6d\x04\x39\x97\x6e\x60\x7e\x53\xbf\xed\x38\xa5\x1f\xbd\x2f\xcc\xfa\xd3\x2e\xa6\x46\x24\xef\x5a\xfb\xff\xb0\x88\x7f\x62\x33\x6c\x6b\xa2\xc6\x1f\x56\x16\xfe\x67\xf5\x3b\x00\x00\xff\xff\xcb\xbd\x75\xfc\x85\x05\x00\x00" func stakingcollectionRestake_all_stakersCdcBytes() ([]byte, error) { return bindataRead( @@ -5440,11 +5460,11 @@ func stakingcollectionRestake_all_stakersCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/restake_all_stakers.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x12, 0xa0, 0xbf, 0x41, 0x72, 0x3e, 0x5b, 0xdf, 0x47, 0x61, 0x1f, 0x7f, 0x61, 0xf5, 0xb0, 0x7a, 0x10, 0xae, 0x7b, 0xf9, 0x7b, 0x91, 0xe2, 0x95, 0xa1, 0x16, 0x8b, 0x2a, 0x8c, 0x50, 0x47, 0x9f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0xee, 0xd6, 0x42, 0xaf, 0x95, 0x76, 0xc4, 0xef, 0x82, 0xa3, 0xbb, 0xb6, 0xa5, 0x72, 0xc9, 0xc0, 0x45, 0x5, 0xef, 0xd3, 0x94, 0x90, 0x5c, 0x7f, 0x90, 0x8b, 0x25, 0xf2, 0x33, 0xa3, 0x62}} return a, nil } -var _stakingcollectionScriptsDoes_account_have_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4e\xc3\x30\x10\xc6\xf1\xdd\x4f\xf1\x8d\x74\x21\xcc\xdd\x4c\x52\xa0\xa2\x6a\x25\xdc\x17\x30\xc9\x05\x4e\xd8\x77\x91\x7d\xa6\x48\x88\x77\x67\x68\xa5\x0e\xb0\xfd\x87\xd3\xfd\x3e\xce\x8b\x16\xc3\x43\xd2\x53\xb0\xf8\xc1\xf2\xd6\x6b\x4a\x34\x1a\xab\x60\x2e\x9a\x71\xf7\x15\x8e\xfe\x79\xbb\x7f\xec\x0f\xbb\xdd\xa6\x3f\x6e\x0f\x7b\x3f\x0c\x2f\x9b\x10\x9c\xeb\xba\x0e\x03\x19\x95\xcc\x42\x15\x3c\x23\x0a\xe2\x38\x6a\x13\x03\x57\x54\x32\xb4\x05\x27\xb6\x77\x44\x5c\x00\x5c\x05\xe7\x96\xf6\x8a\xb9\x09\x72\x64\xb9\x89\xd3\x54\xa8\xd6\x35\xfc\x39\x56\x6b\xdc\xab\x26\x7c\x3b\x00\x28\x64\xad\xc8\xff\x53\x6f\x27\xa5\xea\xcf\xf0\x53\xfc\xa4\x3f\x07\xd7\xdf\x97\x58\xb9\x9f\xdf\x00\x00\x00\xff\xff\x5d\x7d\x18\xf4\xfc\x00\x00\x00" +var _stakingcollectionScriptsDoes_account_have_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4e\xc4\x40\x0c\x45\xfb\x39\xc5\xd7\x56\x9b\x86\xf4\xdb\x2d\x20\x44\xcf\x09\xac\x89\x03\x16\x33\x76\x34\xf6\x90\x02\x71\x77\x8a\x44\x4a\xb1\xe9\x9e\xf4\xbf\x9e\x9e\xd4\xc5\x5a\xe0\xad\xd8\xfa\x11\xf4\x2d\xfa\xf9\x62\xa5\x70\x0e\x31\xc5\xdc\xac\xe2\x72\xba\x5d\x52\x1a\xc7\x11\xaf\x1c\xdc\xaa\x28\x3b\x64\x06\x29\x28\x67\xeb\x1a\x10\x87\x73\xa0\x2f\x58\x25\xbe\x40\xd8\x0d\x38\x14\x29\x51\xce\xec\x7e\xa5\x52\x06\xcc\x5d\x51\x49\xf4\x4a\xd3\xd4\xd8\xfd\x86\xfb\x06\xc3\x0d\xcf\x66\x05\xbf\x09\x00\x1a\x47\x6f\x7a\xde\xfb\x34\x19\xfb\x7d\x0b\x78\xa7\x1f\x7e\x38\x1c\xee\x1d\x86\xf4\xf7\x1f\x00\x00\xff\xff\x4a\x63\x63\xb2\x01\x01\x00\x00" func stakingcollectionScriptsDoes_account_have_staking_collectionCdcBytes() ([]byte, error) { return bindataRead( @@ -5460,11 +5480,11 @@ func stakingcollectionScriptsDoes_account_have_staking_collectionCdc() (*asset, } info := bindataFileInfo{name: "stakingCollection/scripts/does_account_have_staking_collection.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8c, 0xd, 0x47, 0xa3, 0x4f, 0xfc, 0x6f, 0x44, 0x5d, 0xbf, 0xd, 0xa3, 0x2c, 0x2b, 0x6d, 0xe1, 0x19, 0x8f, 0x95, 0x3f, 0x2f, 0xff, 0x8f, 0xf5, 0xdd, 0x30, 0x90, 0x79, 0x1a, 0x60, 0x2, 0x4e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0x34, 0x8c, 0xdd, 0x28, 0xf3, 0x71, 0x7c, 0x27, 0x34, 0x43, 0xc2, 0x6c, 0xde, 0x42, 0x3e, 0x68, 0x2d, 0xc2, 0x74, 0x34, 0x8e, 0x51, 0xaf, 0x77, 0xcc, 0xac, 0x1b, 0x8d, 0x90, 0x91, 0x7f}} return a, nil } -var _stakingcollectionScriptsGet_all_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xde\xd1\x5e\x5a\xcf\xbd\xc5\x24\x96\xc5\x90\x82\xd9\x8b\x88\x87\x69\x33\x89\xc1\xcd\x6e\x99\x9d\xa0\x22\xfe\x77\x41\x13\xab\xe8\xed\x31\xcc\x37\xdf\x63\x86\xf1\x14\x45\x71\xed\xe3\x73\xa3\xf4\x34\x84\x3e\x8f\xde\xf3\x51\x87\x18\xd0\x49\x1c\x71\xf9\xd2\xb8\xec\xc6\xd6\xbb\x7c\x5f\x55\x65\xee\xec\xbe\xce\x8a\xe2\xb6\x6c\x1a\xf3\x03\xb6\x85\xa3\x83\xe7\xf9\xc6\x42\xda\xa2\xac\x9d\x75\x77\x2e\xbb\xaa\xca\x85\x32\x9b\xcd\x06\x3b\xd6\x04\x0a\x20\x11\x7a\x45\xec\x40\xde\x43\x1f\x19\x2d\x7b\xee\x49\xa3\x60\x64\xa5\x96\x94\xd0\x45\x39\x8f\x13\x92\x46\xe1\x16\x43\xf8\xdc\x4f\xb3\xf1\xf8\x5d\xdb\x98\xd3\x74\x40\x37\x05\x8c\x34\x84\x0b\x6a\x5b\xe1\x94\xb6\xc8\xbe\xc2\x6a\x8b\xfb\xbf\x8d\xd7\xc5\x22\xb0\xa1\x8b\x0f\x78\x33\x00\x20\xac\x93\x84\xff\xbf\xb3\xee\x59\x33\xef\x7f\x71\x67\xd9\x1c\x56\xe6\xfd\x23\x00\x00\xff\xff\xfd\xb5\xa8\x45\x62\x01\x00\x00" +var _stakingcollectionScriptsGet_all_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x4b\x03\x51\x10\x84\xfb\xf7\x2b\x86\xab\x72\x4d\xae\x4f\x17\x0c\x4a\x6a\xed\xc4\x62\xbd\xb7\xef\x7c\xb8\xf7\x56\x76\x37\x88\x88\xff\x5d\xd0\xd3\x24\x24\xdd\xb0\x33\xc3\x37\x6c\x9d\xdf\xd4\x02\xb7\xa2\xef\xf7\x41\xaf\xb5\x4d\x37\x2a\xc2\x63\x54\x6d\x28\xa6\x33\xba\xab\x5e\x97\x4e\x9a\xfb\xdd\x03\x3d\x0b\x2f\xa1\x93\xda\xb9\xd1\xa5\x34\x0c\x03\xee\x38\x1c\xd4\x40\x66\xf4\x01\x2d\x20\x11\xc4\x0b\x23\xb3\xf0\x44\xa1\x86\x99\x83\x32\x05\xa1\xa8\x1d\xcf\x0e\x0f\x35\xce\xa8\xed\x27\xef\x0b\x6f\xfc\x5f\x95\x12\x8d\x23\xbb\xaf\x48\xa4\x47\x39\x34\xcc\x54\xdb\x8a\x72\x36\x76\xdf\x60\xfb\x2b\xfa\x0d\x1e\x2f\xe7\xad\x77\x7f\xa0\x7d\x2b\xfa\x84\xcf\x04\x00\xc6\x71\xb0\x76\xfd\x41\xeb\x89\x63\x2b\x72\xd6\x3b\xc2\x16\xd1\xa7\xaf\xef\x00\x00\x00\xff\xff\x8b\x34\x8c\xda\x65\x01\x00\x00" func stakingcollectionScriptsGet_all_delegator_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5480,11 +5500,11 @@ func stakingcollectionScriptsGet_all_delegator_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_all_delegator_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc2, 0xa7, 0xb0, 0x99, 0xa1, 0x70, 0xd1, 0x2b, 0x96, 0x92, 0x77, 0x7d, 0x16, 0xae, 0x8d, 0xe8, 0x88, 0xc7, 0xef, 0xbc, 0xe4, 0x59, 0x1f, 0x33, 0xb, 0x97, 0x3e, 0xbe, 0xe3, 0x8c, 0x2a, 0xd7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x61, 0xbc, 0xe9, 0xa, 0xd, 0xd8, 0x3e, 0x8b, 0x75, 0x60, 0x29, 0xdf, 0x8, 0xba, 0x2, 0xf2, 0xbb, 0xe3, 0x73, 0x8b, 0xed, 0x4a, 0xcc, 0x91, 0x4b, 0xa5, 0x5f, 0x2c, 0xe8, 0x7e, 0xf4, 0x11}} return a, nil } -var _stakingcollectionScriptsGet_all_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xde\xd1\x5e\x1a\xcf\xbd\xc5\x24\x96\xc5\x90\x82\xd9\x8b\x88\x87\x69\x77\x52\x17\x37\x3b\x65\x77\x83\x8a\xf8\xdf\x85\x9a\xa8\x60\x6f\x8f\x61\xbe\x79\x1f\xe3\xc6\x93\xc4\x8c\x5b\x2f\xaf\x7d\xa6\x17\x17\x8e\x95\x78\xcf\x87\xec\x24\x60\x88\x32\xe2\xfa\xad\x37\xe5\x9d\xee\xb6\xd5\xae\x6d\x9b\xca\xe8\x5d\x57\xd6\xf5\x7d\xd3\xf7\xea\x0f\xac\x6b\x43\x7b\xcf\xf3\x8d\x85\xd4\x75\xd3\x19\x6d\x1e\x4c\x79\xd3\x36\x0b\xa5\x8a\xa2\xc0\x96\x73\x02\x05\x50\x8c\xf4\x0e\x19\x40\xde\x23\x3f\x33\x82\x58\xc6\xc8\x99\x2c\x65\xc2\x20\xf1\x3c\x49\x48\x59\x22\x5b\xb8\x70\xde\x4a\x73\xcf\xe1\x47\x56\xa9\xd3\xb4\xc7\x30\x05\x8c\xe4\xc2\x15\x59\x1b\x39\xa5\x0d\xca\xef\xb0\xda\xe0\xf1\xbf\xe7\xba\x13\xcb\x3a\x0c\xf2\x84\x0f\x05\x00\x91\xf3\x14\xc3\xe5\x77\xac\x8f\x9c\x4b\xef\x17\xe4\xb7\x62\x0e\x2b\xf5\xf9\x15\x00\x00\xff\xff\xa5\xe7\xa3\xf6\x4e\x01\x00\x00" +var _stakingcollectionScriptsGet_all_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x4b\x43\x41\x10\x84\xfb\xfb\x15\xc3\xab\xf2\x9a\xbc\x3e\x5d\x50\x94\x34\x36\xda\x89\xc5\xfa\x6e\x2f\x1e\xee\xed\xca\xde\x06\x11\xf1\xbf\x0b\xf1\xa9\x11\xd3\x0d\x3b\xf3\x31\xc3\xd6\xf6\x62\x1e\xb8\x12\x7b\xbd\x0d\x7a\xae\xba\xbf\x30\x11\x9e\xa3\x9a\xa2\xb8\x35\x0c\x67\xbd\x21\x9d\x90\xbb\xcb\x3b\x7a\x14\x5e\x42\x27\xd8\x5f\x63\x48\x69\x9a\x26\x5c\x73\x74\x90\x82\xdc\xe9\x0d\x56\x40\x22\x88\x27\x86\x5a\x66\x34\x0e\xca\x14\x84\x62\x7e\xbc\x74\xf4\x30\xe7\x8c\xaa\xc7\x54\x5f\x5a\xe6\x9f\x2d\x29\xd1\x3c\x73\xef\x2b\x12\x19\x51\x0e\x8a\x46\x55\x57\x94\xb3\x73\xef\x1b\x6c\xbf\xc4\xb8\xc1\xfd\xff\x51\xeb\x1b\xcb\xbc\xd3\x62\x0f\x78\x4f\x00\xe0\x1c\x07\xd7\xf3\x1f\x59\xef\x39\xb6\x22\xdf\xc8\x6f\xc5\x22\xc6\xf4\xf1\x19\x00\x00\xff\xff\xcd\xc4\xa0\x99\x51\x01\x00\x00" func stakingcollectionScriptsGet_all_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5500,11 +5520,11 @@ func stakingcollectionScriptsGet_all_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_all_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0xb7, 0x63, 0x1e, 0xee, 0xc1, 0x60, 0xe2, 0xae, 0x71, 0xa0, 0x49, 0xa, 0xe8, 0xa0, 0x84, 0xcc, 0x39, 0x7b, 0xad, 0x66, 0xc7, 0x33, 0xc6, 0x2a, 0x80, 0x53, 0x15, 0xb9, 0xa6, 0xfd, 0xf9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0x1b, 0xdc, 0xc0, 0x18, 0xba, 0x5a, 0xa1, 0x59, 0xc9, 0x67, 0x12, 0x85, 0xb0, 0xda, 0x24, 0xdd, 0x74, 0x94, 0xbd, 0xbb, 0xbe, 0x46, 0xdd, 0x56, 0x2c, 0x3f, 0x4d, 0x4e, 0x6a, 0xe8, 0x7b}} return a, nil } -var _stakingcollectionScriptsGet_delegator_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcf\x4f\x4b\xc3\x40\x10\x05\xf0\xfb\x7e\x8a\x77\xb4\x97\xc6\x73\x6f\x21\x5b\x25\x58\x5a\x68\x7a\x13\x0f\x63\x77\x12\x17\x37\x3b\x65\x76\x82\x8a\xf8\xdd\x85\xd6\x3f\x3d\xe4\xf6\x60\x18\x7e\xef\xc5\xf1\x24\x6a\xb8\x4b\xf2\xd6\x19\xbd\xc6\x3c\x34\x92\x12\x1f\x2d\x4a\x46\xaf\x32\xe2\xf6\xbd\x3b\xd4\x0f\xed\xf6\xbe\xd9\x6d\x36\xeb\xe6\xd0\xee\xb6\xb5\xf7\xfb\x75\xd7\x39\x57\x55\x15\xf6\x6c\x93\xe6\x02\xca\x20\x55\xfa\x80\xf4\xa0\x94\x60\x2f\x8c\xc0\x89\x07\x32\x51\xb4\xbe\xa0\x98\x28\x07\xc4\x7c\xbe\x95\x0b\x87\xe3\x9f\xe7\xdc\x69\x7a\x46\x3f\x65\x8c\x14\xf3\x0d\x85\xa0\x5c\xca\x0a\xf5\x25\x2c\x56\x78\x9c\xed\xb9\xf4\xbf\x4c\xeb\xcb\x13\x3e\x1d\x00\xe8\xb9\xd6\xfc\xb0\xe5\xc0\x76\xfd\xf3\x4f\xfd\x84\x85\xfb\xfa\x0e\x00\x00\xff\xff\x4a\xb0\xd1\x0a\x19\x01\x00\x00" +var _stakingcollectionScriptsGet_delegator_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xbd\x6a\xc4\x40\x0c\x84\xfb\x7d\x8a\xe1\xaa\x73\x73\xee\xaf\x0b\x31\x01\xb7\x49\x19\x52\x88\x5d\xd9\x59\x22\xaf\x82\x24\x13\x42\xc8\xbb\x07\xec\xfc\x15\xee\x06\x06\xcd\xf7\xa9\x2e\xaf\x6a\x81\x3b\xd1\xb7\x87\xa0\x97\xda\xe6\x5b\x15\xe1\x1c\x55\x1b\x26\xd3\x05\xa7\xc3\xee\x94\x52\xdf\xf7\xb8\xe7\x58\xad\x39\xa8\x81\xcc\xe8\x1d\x3a\x81\x44\x10\xcf\x8c\xc2\xc2\x33\x85\x1a\xc6\xc1\xe1\xa1\xc6\x05\xb5\x6d\x9d\xef\x7b\xc8\xbf\x83\x29\x51\xce\xec\x7e\x26\x91\x0e\xd3\xda\xb0\x50\x6d\x67\x2a\xc5\xd8\xfd\x8a\x9b\x3d\x74\x57\x3c\x1e\x0a\x5d\x86\x1f\xdc\x38\xf8\x13\x3e\x12\x00\xd8\xa6\x77\xfc\xdd\x65\xe6\xf8\x7f\xf3\x87\xfa\x0e\x5d\xfa\xfc\x0a\x00\x00\xff\xff\x7b\xbc\xfe\x64\x1e\x01\x00\x00" func stakingcollectionScriptsGet_delegator_idsCdcBytes() ([]byte, error) { return bindataRead( @@ -5520,11 +5540,11 @@ func stakingcollectionScriptsGet_delegator_idsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_delegator_ids.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0xf8, 0x98, 0x3a, 0xf0, 0xad, 0x8c, 0x59, 0x26, 0xd8, 0x74, 0x8f, 0xf7, 0x27, 0xc2, 0xc4, 0x84, 0x5d, 0x3c, 0x37, 0x82, 0xa6, 0x34, 0x6b, 0x2d, 0xe, 0xfd, 0xd1, 0x10, 0x7a, 0x29, 0xe0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0x35, 0xab, 0x54, 0x9e, 0x17, 0xc5, 0x8d, 0xcb, 0x10, 0x21, 0xe1, 0x7c, 0x59, 0xcb, 0xec, 0x18, 0xbf, 0x66, 0xb7, 0x4f, 0x38, 0xc, 0x32, 0x7f, 0x8b, 0x9e, 0x82, 0x19, 0x52, 0xc, 0xbe}} return a, nil } -var _stakingcollectionScriptsGet_does_stake_existCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x6b\xb4\x30\x10\x86\xef\xf9\x15\x73\xfc\x16\x96\xcf\xd2\xde\xbc\x14\x57\x6d\x09\x15\x17\x6a\x7a\xe8\x31\x6b\x26\x36\x34\x66\x24\x89\x74\xa1\xf4\xbf\x17\x57\x17\x17\xe9\x29\xc9\x4b\xde\xe7\x19\xc6\xf4\x03\xf9\x08\x4f\x96\xbe\x9a\x28\x3f\x8d\xeb\x72\xb2\x16\xdb\x68\xc8\x81\xf6\xd4\xc3\xdd\xb9\x11\xd9\x0b\xaf\x9f\xf3\x63\x55\x95\xb9\xe0\xc7\x3a\x2b\x8a\xd7\xb2\x69\xd8\x4d\x99\x17\x42\x9e\x2c\x2e\x8c\x6b\x93\x17\x65\x2d\xb8\x78\x17\xd9\xa1\x2a\xaf\x2d\x96\x24\x09\x08\xb4\x36\x80\xd1\x10\x3f\x10\xc2\x80\xad\xd1\x06\x15\x38\x52\x08\xe4\x41\xa1\xc5\x4e\x46\xf2\x80\x67\x13\x62\x00\xe3\xe6\x9f\x0b\xbf\x5d\x87\xbc\xe0\x34\xf9\x0d\x49\x2a\xe5\x31\x04\xc6\x86\xf1\x04\x7a\x74\xd0\x4b\xe3\xfe\x2d\x69\x0a\xd9\x7c\xd9\x5f\x8c\xbc\x48\xa1\x89\xde\xb8\x6e\xbf\x9a\xa7\xf0\x8d\xbb\xf8\x70\xff\xb8\x4b\xe1\x40\x64\xe1\x9b\x01\x00\x78\x8c\xa3\x77\x7f\xaf\xec\xbf\x22\x0c\x53\x8a\xe5\x34\xf7\xea\x93\x5b\xdf\x7c\x6e\x7c\x37\x8f\x1d\xfb\xf9\x0d\x00\x00\xff\xff\xc9\x3b\x81\x54\x9c\x01\x00\x00" +var _stakingcollectionScriptsGet_does_stake_existCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x6a\xf3\x30\x10\x84\xef\x7a\x8a\xc1\xa7\x18\xc2\x6f\xf8\x7b\xf3\xa5\xb4\x4d\x0b\x3e\x27\x7d\x00\x55\x5a\xb9\x4b\xd7\xda\x20\x29\xb4\x50\xfa\xee\xc5\xb1\xc1\xae\xc9\x49\xd2\xce\xce\x7c\x83\x78\x38\x6b\x2a\x78\x11\xfd\x3c\x16\xfb\xc1\xb1\x7f\x52\x11\x72\x85\x35\x22\x24\x1d\x50\xdd\xd4\x2a\xb3\x72\x76\x87\x93\x7d\x13\x9a\x97\x56\xb6\xbf\x42\x65\x4c\xd3\x34\x38\x91\x48\x06\x07\x94\x77\x42\x3e\x93\xe3\xc0\xe4\x11\xd5\x13\x34\xc1\x93\x50\x6f\x8b\x26\xd0\x17\xe7\x92\xc1\x71\xda\x9c\xd3\xdd\xd2\xef\x1a\x17\x34\x6d\x92\xac\xf7\x89\x72\x36\xc6\x3a\x47\x39\xef\xac\x48\x8d\x70\x89\x18\x2c\xc7\xdd\xac\xb6\x78\x98\x2e\xfb\x2b\xb9\x3b\xb4\x38\x96\xc4\xb1\xdf\x2f\x0d\xc6\xe1\x6b\x17\xcb\xdd\xff\xfb\xba\xc5\xa3\xaa\xe0\xdb\x00\x40\xa2\x72\x49\xf1\xf6\xaf\xfd\xf3\x4a\x79\x9c\xd2\xf3\xd8\x7f\xe1\xd9\x2d\x6f\x3a\x37\xbc\xd5\xa3\x36\x3f\xbf\x01\x00\x00\xff\xff\xa0\xc3\x2f\x2d\x9f\x01\x00\x00" func stakingcollectionScriptsGet_does_stake_existCdcBytes() ([]byte, error) { return bindataRead( @@ -5540,11 +5560,11 @@ func stakingcollectionScriptsGet_does_stake_existCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_does_stake_exist.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x72, 0xa5, 0xa3, 0x68, 0xc7, 0x63, 0xaf, 0xd8, 0x21, 0x69, 0x50, 0x68, 0xf5, 0x65, 0xcc, 0xff, 0xec, 0x23, 0x17, 0x1a, 0xb3, 0x78, 0x4d, 0x90, 0xd1, 0xbc, 0xd, 0xab, 0xc, 0xb3, 0xd8, 0x47}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4, 0xb, 0x6f, 0x8c, 0x94, 0xdc, 0x94, 0x55, 0x5, 0x3d, 0xa0, 0x77, 0x92, 0x7, 0xba, 0x57, 0xbd, 0x9e, 0x52, 0x3f, 0x15, 0x13, 0x69, 0x71, 0x5, 0x3, 0xa5, 0x1c, 0x2a, 0xe6, 0xa2, 0xa4}} return a, nil } -var _stakingcollectionScriptsGet_locked_tokens_usedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xb1\x4e\xeb\x40\x10\x45\xfb\xfd\x8a\x5b\x26\xcd\xf3\x2b\x10\x85\x3b\xcb\x89\x51\x84\x95\x48\xd8\xf9\x80\xc5\x3b\x71\x56\x5e\xcf\x44\x3b\xbb\x4a\x10\xe2\xdf\x11\x0e\x88\x86\x7a\x34\xe7\x9c\xeb\xe7\x8b\xc4\x84\x26\xc8\xb5\x4b\x76\xf2\x3c\xd6\x12\x02\x0d\xc9\x0b\xe3\x14\x65\xc6\xff\x5b\xd7\x57\xcf\xbb\xfd\x53\x7d\x68\xdb\x6d\xdd\xef\x0e\xfb\x6a\xb3\x79\xd9\x76\x9d\x31\x45\x51\xa0\xa7\x10\x14\x67\xb9\x62\xb6\xfc\x86\x20\xc3\x44\x0e\x49\x26\x62\x45\x3a\x13\xec\x30\x48\xe6\x04\xaf\xc8\xea\x79\x5c\xbe\x1a\x89\x5f\xc7\x48\xd0\xbb\x16\xc3\xaf\x97\xc5\x91\xc2\xb2\x83\xa3\x40\xa3\x4d\x12\xd5\x98\x4b\x7e\xc5\x29\x33\x66\xeb\x79\xf5\x0d\x2d\x51\x39\x17\x49\x75\x5d\xe2\xd8\xf8\xdb\xe3\x03\xde\x0d\x00\x44\x4a\x39\xf2\xdf\xbb\xfe\x8d\x94\xda\x25\xb3\x5f\x2a\x8f\x4a\x6e\x65\xef\x9c\xf2\x27\x77\x6d\x3e\x3e\x03\x00\x00\xff\xff\x41\x5a\xaa\x77\x1c\x01\x00\x00" +var _stakingcollectionScriptsGet_locked_tokens_usedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xb1\x4e\xec\x40\x0c\x45\xfb\xf9\x8a\xab\xad\x92\xe6\xa5\x79\xa2\x48\x87\x90\x52\xd1\xb1\xfb\x01\xd6\x8c\x37\x3b\x8a\x63\xa3\xb1\xa3\x05\x21\xfe\x1d\x91\x05\xd1\x6c\x7d\xe4\xe3\x73\xeb\xfa\x6a\x2d\x30\x89\x5d\x5f\x82\x96\xaa\xf3\x93\x89\x70\x8e\x6a\x8a\x73\xb3\x15\x87\xbb\xec\x90\xd2\x30\x0c\x38\xb2\x88\xe3\x62\x57\xac\xa4\xef\x10\xcb\x0b\x17\x84\x2d\xac\x8e\xb8\x30\x28\x67\xdb\x34\x50\x1d\x9b\x57\x9d\xf7\xab\xc9\xda\x37\x6c\x0c\xbf\x79\x91\xff\x9e\xaa\x15\x76\x90\x16\x14\x16\x9e\x29\xac\x79\x4a\x94\x33\xbb\x77\x24\xd2\xe3\xbc\x29\x56\xaa\xda\xfd\xc8\x47\x3c\x96\xd2\xd8\xbd\x1f\x71\x9a\xea\xdb\xc3\x7f\x7c\x24\x00\x68\x1c\x5b\xd3\xfb\xe3\xfe\xcd\x1c\xcf\x7b\xee\x71\xaf\x3d\x39\x97\x8e\x6e\x9e\xf1\x37\xbb\x4f\x9f\x5f\x01\x00\x00\xff\xff\x7c\x03\x2f\x67\x21\x01\x00\x00" func stakingcollectionScriptsGet_locked_tokens_usedCdcBytes() ([]byte, error) { return bindataRead( @@ -5560,11 +5580,11 @@ func stakingcollectionScriptsGet_locked_tokens_usedCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_locked_tokens_used.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x95, 0x64, 0xd6, 0xd9, 0x3e, 0x7a, 0xd9, 0x9b, 0xd, 0x68, 0xa4, 0x4d, 0xfc, 0x18, 0x9c, 0xb1, 0xfd, 0xa0, 0x6b, 0xb8, 0x7c, 0x92, 0x5c, 0xba, 0x8d, 0x99, 0x2, 0x61, 0xfd, 0x1d, 0x80, 0x25}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0xc, 0xfb, 0x97, 0x66, 0x4b, 0x65, 0x92, 0x16, 0xae, 0xa2, 0x40, 0x46, 0xe3, 0xed, 0x54, 0x24, 0x26, 0x91, 0x9f, 0x43, 0x2, 0x56, 0xb6, 0x5e, 0x20, 0x64, 0xb9, 0x16, 0xd4, 0x6a, 0xd9}} return a, nil } -var _stakingcollectionScriptsGet_machine_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcd\x4b\xc3\x30\x18\xc6\xef\xf9\x2b\x9e\x9b\x1b\x88\xf5\x5c\x18\x52\xda\x39\x8a\x73\x03\xbb\x9b\x78\x88\xe9\x9b\x2e\x98\xbe\x29\x49\x8a\x82\xec\x7f\x97\xf5\x63\xf8\x95\x63\xde\xe7\xe3\xf7\x98\xb6\x73\x3e\xe2\xde\xba\xf7\x2a\xca\x37\xc3\x4d\xee\xac\x25\x15\x8d\x63\x68\xef\x5a\xdc\x7e\x54\x87\xec\xa1\xdc\x6d\xf2\xfd\x76\xbb\xce\x0f\xe5\x7e\x97\x15\xc5\xd3\xba\xaa\x84\x48\x92\x04\x1b\x8a\x01\xf1\x48\x68\xa5\x3a\x1a\x26\x48\xa5\x5c\xcf\x11\xb2\xae\x3d\x85\x00\xed\x3c\x24\x42\x47\xca\x68\xa3\xc0\xae\xa6\xc1\x68\x18\x92\x67\xf5\x55\x40\x18\xfb\xa1\x2e\x00\x42\x74\xfd\x2b\x74\xcf\x68\xa5\xe1\xc5\x24\x4d\x91\x8d\xc9\xd7\x43\x56\x59\xa4\xa8\xa2\x37\xdc\x2c\x2f\x97\x3b\x7c\x0a\x00\xb0\x14\x67\xac\x6c\x34\x07\xac\xfe\x1f\x7b\xd3\x50\x7c\xfc\x29\x5d\x4c\x0b\xd2\x19\x72\x29\x86\x54\xa3\x87\xe0\xe9\xb3\x64\xed\xb0\xfa\x5d\xf3\x3c\xa2\xbd\x4c\x20\xe7\xe7\x29\xf6\x9e\xbf\xdb\xce\x9d\x13\xf1\x62\x39\xe8\x4e\x20\x1b\xe8\xaf\x89\x8d\x1d\xef\xe2\x24\xbe\x02\x00\x00\xff\xff\xa7\x4d\x0f\xa6\xb3\x01\x00\x00" +var _stakingcollectionScriptsGet_machine_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xbb\x6a\xeb\x40\x10\x86\xfb\x7d\x8a\x1f\x37\x47\x82\x43\xd4\x0b\x4c\x30\x09\x09\x2e\x52\xb9\x0c\x29\x96\xd5\xac\x3c\x64\x35\x6b\x76\x46\xa4\x08\x7e\xf7\x60\x5d\x4c\x2e\xde\x72\xff\xdb\x37\x3c\x9c\x72\x31\x3c\xa5\xfc\x71\x30\xff\xce\xd2\x3f\xe4\x94\x28\x18\x67\x41\x2c\x79\xc0\xe6\xa6\xb6\x71\xae\x69\x1a\x3c\x93\x29\xec\x48\x18\x7c\x38\xb2\x10\x7c\x08\x79\x14\x83\xef\xba\x42\xaa\x88\xb9\xc0\x43\x4f\x14\x38\x72\x80\xe4\x8e\xa6\x20\x0b\xbc\xac\xee\x7f\x0a\x9d\x07\x10\xae\x0b\xce\xf9\x10\x48\xb5\xf2\x29\xd5\x88\xa3\x60\xf0\x2c\xd5\x12\x69\xb1\x9b\x17\xfe\x4f\x9d\xfb\xc7\x16\x07\x2b\x2c\x7d\x7d\x55\xee\xf1\xe9\x00\x20\x91\xad\x78\xbb\x39\xac\xd8\xde\xbe\xf8\xae\x27\x7b\xf9\x69\xad\x96\x4b\xda\x15\xb6\x76\x53\x2b\xc7\xa9\x78\xf9\xdc\x4b\xcc\xd8\xfe\x9e\x79\x9d\xd1\xde\x16\x90\xcb\x2b\x64\x63\x91\xef\xb1\xcb\xe6\x42\x5c\xd5\x93\xef\x0c\x4a\x4a\x7f\x43\xc2\x69\xd6\xdd\xd9\x7d\x05\x00\x00\xff\xff\x9e\xf8\xd0\x7c\xb8\x01\x00\x00" func stakingcollectionScriptsGet_machine_account_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -5580,11 +5600,11 @@ func stakingcollectionScriptsGet_machine_account_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_machine_account_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf2, 0xe2, 0x5a, 0xfd, 0xd5, 0xcf, 0xe0, 0x54, 0xb4, 0x24, 0xa7, 0x6a, 0x67, 0x96, 0x5d, 0xe, 0xd0, 0x8c, 0xac, 0x28, 0x8b, 0x31, 0x26, 0x52, 0x22, 0xab, 0xc1, 0xed, 0xc8, 0xbb, 0x23, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0x37, 0x6c, 0xc0, 0xd6, 0xcf, 0x69, 0x48, 0xd, 0x1b, 0x78, 0xb0, 0x47, 0x86, 0x8c, 0x66, 0xc0, 0x20, 0x9d, 0x87, 0xc5, 0xac, 0x73, 0xe, 0xc2, 0xd4, 0xa, 0x90, 0x65, 0xf0, 0x84, 0xd5}} return a, nil } -var _stakingcollectionScriptsGet_machine_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xc1\x4a\xc3\x40\x10\x86\xef\xfb\x14\xff\xcd\xf6\x62\x3c\xe7\x16\xd2\x5a\x82\xb5\x05\xb7\x2f\xb0\x6e\x26\xe9\xe2\x66\xa6\xec\x4e\x50\x28\x7d\x77\x21\x89\x82\x60\xef\xdf\x37\xff\x37\x61\xb8\x48\x52\x3c\x47\xf9\xb4\xea\x3e\x02\xf7\xb5\xc4\x48\x5e\x83\x30\xba\x24\x03\x9e\xbe\xec\xa9\x7a\x69\x0e\xbb\xfa\xb8\xdf\x6f\xeb\x53\x73\x3c\x54\x9b\xcd\xdb\xd6\x5a\x63\x8a\xa2\xc0\x8e\x34\xc3\xc5\x08\x3d\x13\x06\xe7\xcf\x81\x09\xce\x7b\x19\x59\xe1\xda\x36\x51\xce\x94\xd1\x49\x02\x4b\x4b\x79\x92\x02\x4f\xf8\x82\x3d\x64\xe4\x79\x1c\xfe\x77\xdd\x98\xcb\xf8\x8e\x6e\x64\x0c\x2e\xf0\x6a\x41\x4b\x54\xf3\xc9\x75\x89\xab\xd5\x14\xb8\x2f\xff\xaf\x7f\x7c\x9d\x5b\xaa\x59\x6c\xb8\x93\x1b\xae\x06\x00\x12\xe9\x98\xf8\x8e\xd6\x93\xfe\x35\xf3\x6a\xf9\xa2\xfc\xe9\x5d\x9b\x9b\xf9\x0e\x00\x00\xff\xff\xc1\x21\xcf\x72\x39\x01\x00\x00" +var _stakingcollectionScriptsGet_machine_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xb1\x6a\xc3\x40\x10\x44\xfb\xfb\x8a\xc1\x4d\xa4\x26\xea\xd5\x99\x40\x42\x8a\x54\xfe\x82\xe5\xb4\x27\x1f\xb9\xdb\x0d\xb7\x2b\x52\x18\xff\x7b\xc0\xa7\x04\x02\x76\x3d\xf3\x1e\x33\xb9\x7e\x69\x73\xbc\x16\xfd\x3e\x39\x7d\x66\x59\x5f\xb4\x14\x8e\x9e\x55\x90\x9a\x56\x1c\xee\x66\x87\x10\xa6\x69\xc2\x1b\xbb\x81\x4a\x81\x9f\x19\x95\xe2\x39\x0b\x83\x62\xd4\x4d\x1c\xb4\x2c\x8d\xcd\xd8\x90\xb4\x41\x74\x61\xbb\x41\x59\x6e\xf5\xbd\xf6\x64\xb0\x6e\x47\xfc\xd3\x87\x40\x31\xb2\xd9\x40\xa5\x8c\x48\x9b\xa0\x52\x96\x61\x47\x66\x1c\xbb\x7a\x9c\x71\x39\x79\xcb\xb2\xce\xf7\x2f\x3c\x7f\xf4\x4d\xc7\x0e\xbe\x4b\xd2\x2b\x2e\x01\x00\x1a\xfb\xd6\xe4\x01\xb6\xb2\xff\x27\x6d\xd8\xdf\xcc\xbf\xbb\xc7\x70\x0d\x3f\x01\x00\x00\xff\xff\x0c\xe4\x1e\xac\x3e\x01\x00\x00" func stakingcollectionScriptsGet_machine_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -5600,11 +5620,11 @@ func stakingcollectionScriptsGet_machine_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_machine_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x7e, 0x24, 0x2d, 0xfc, 0x9e, 0xeb, 0x56, 0x2a, 0x77, 0x86, 0x83, 0xb6, 0xdd, 0x2a, 0x61, 0xfc, 0xa2, 0xb2, 0x49, 0x23, 0x61, 0x2f, 0xed, 0xb3, 0x78, 0xf4, 0xa1, 0x25, 0x5d, 0x4e, 0x40}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4d, 0xfe, 0x63, 0x34, 0x4a, 0x68, 0xf3, 0x2f, 0xff, 0x43, 0xd0, 0xd2, 0xc7, 0x57, 0x2b, 0x2b, 0x9c, 0x1a, 0xd4, 0x96, 0xa0, 0x2e, 0xd8, 0x3a, 0x13, 0x78, 0x34, 0xf8, 0x39, 0x65, 0x45, 0x91}} return a, nil } -var _stakingcollectionScriptsGet_node_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4e\xc3\x30\x10\xc6\xf1\xdd\x4f\xf1\x8d\x74\x21\xcc\xdd\xa2\xa4\x20\x8b\x2a\x95\xea\x6e\x88\xc1\xd4\x97\x60\xe1\xdc\x55\xe7\x8b\x00\x21\xde\x1d\xa9\x45\xb0\x74\xfb\xeb\x86\xfb\x7d\x79\x3e\x89\x1a\xee\x8b\xbc\x07\x8b\x6f\x99\xa7\x4e\x4a\xa1\xa3\x65\x61\x8c\x2a\x33\xee\x3e\xc2\xa1\x7d\xf4\xc3\x43\xb7\xdb\x6e\x37\xdd\xc1\xef\x86\xb6\xef\xf7\x9b\x10\x9c\x6b\x9a\x06\x7b\xb2\x45\xb9\x22\x32\xa2\x6a\xfc\x84\x8c\x88\xa5\xc0\x5e\x09\x2c\x89\xe0\xfb\x8a\x6a\xa2\x94\x90\xf9\x7c\xae\x17\x09\xc7\x3f\xca\xb9\xd3\xf2\x82\x71\x61\xcc\x31\xf3\x4d\x4c\x49\xa9\xd6\x35\xda\x4b\xac\xd6\x78\x0a\xa6\x99\xa7\x67\x7c\x39\x00\xd0\xb3\x7a\x7d\xf7\xed\x44\x36\x48\x22\xdf\xd7\xff\x4f\xbf\xb1\x72\xdf\x3f\x01\x00\x00\xff\xff\xbd\x92\x43\x50\xf3\x00\x00\x00" +var _stakingcollectionScriptsGet_node_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\xc4\x40\x10\x85\xfb\xfd\x15\x8f\xab\x2e\x8d\xe9\xaf\x13\x0f\x21\x8d\x85\x29\xc5\x62\xd8\x9d\xc4\xc5\xcd\x8c\xcc\x4c\x10\x11\xff\xbb\x90\x88\xd7\xa4\xfb\x78\x0f\xbe\xf7\xea\xf2\xa1\x16\x78\x6c\xfa\x39\x06\xbd\x57\x99\x1f\xb4\x35\xce\x51\x55\x30\x99\x2e\x38\x1d\x76\xa7\x94\xfa\xbe\xc7\x33\xc7\x6a\xe2\x20\x01\x99\xd1\x17\x74\x02\xb5\x86\x78\x63\x88\x16\xc6\x70\x75\x78\xa8\x71\x41\x95\x2d\xf6\x5d\x85\xfc\xef\x4a\x89\x72\x66\xf7\x33\xb5\xd6\x61\x5a\x05\x0b\x55\x39\x53\x29\xc6\xee\x17\xdc\xef\xd0\x5d\xf0\x32\x86\x55\x99\x5f\xf1\x9d\x00\xc0\xb6\xf5\xe3\xf3\x77\x33\xc7\x93\x16\x1e\xae\x7e\x33\xfd\x41\x97\x7e\x7e\x03\x00\x00\xff\xff\x44\x15\x32\xea\xf8\x00\x00\x00" func stakingcollectionScriptsGet_node_idsCdcBytes() ([]byte, error) { return bindataRead( @@ -5620,11 +5640,11 @@ func stakingcollectionScriptsGet_node_idsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_node_ids.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x45, 0x32, 0xd2, 0x69, 0x44, 0xf5, 0xdc, 0xe6, 0x20, 0x93, 0x64, 0x24, 0xd0, 0x77, 0xfa, 0x5b, 0x23, 0x71, 0x4c, 0x54, 0xc7, 0x7e, 0x17, 0xf8, 0x10, 0x5a, 0x81, 0xa7, 0xe0, 0x50, 0x54, 0x12}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0xee, 0x46, 0xe2, 0xae, 0x7, 0xfa, 0x85, 0xe4, 0x58, 0x3f, 0xf4, 0xc3, 0x68, 0x7, 0xe9, 0x24, 0x83, 0xe2, 0x7, 0x84, 0x8a, 0x19, 0x96, 0xe7, 0x17, 0x22, 0xf9, 0x37, 0x5e, 0x4c, 0xf9}} return a, nil } -var _stakingcollectionScriptsGet_unlocked_tokens_usedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4e\xc2\x40\x10\x86\xef\xfb\x14\xff\x11\x2e\xd6\x83\xf1\xd0\x5b\x53\xa8\x21\x12\x48\x6c\xfb\x00\x6b\x77\x28\x9b\x6e\x67\xc8\xce\x6e\xc0\x18\xdf\xdd\x08\x18\x2f\x9e\x27\xf3\x7d\xdf\xef\xe7\x93\xc4\x84\x26\xc8\xb9\x4d\x76\xf2\x3c\xd6\x12\x02\x0d\xc9\x0b\xe3\x10\x65\xc6\xe3\xa5\xed\xaa\xd7\xcd\xee\xa5\xde\x6f\xb7\xeb\xba\xdb\xec\x77\xd5\x6a\xf5\xb6\x6e\x5b\x63\x8a\xa2\x40\x47\x21\x28\x8e\x72\xc6\x6c\xf9\x03\x99\x83\x0c\x13\x39\x24\x99\x88\x15\xe9\x48\xb0\xc3\x20\x99\x13\xbc\x22\xab\xe7\xf1\xfa\xd7\x48\xfc\x39\x46\x82\xde\xc4\x18\xfe\xcc\x2c\x8e\x14\x96\x1d\x1c\x05\x1a\x6d\x92\xa8\xc6\x9c\xf2\x3b\x0e\x99\x31\x5b\xcf\x8b\x3b\xb4\x44\xe5\x5c\x24\xd5\x65\x89\xbe\xf1\x97\xe7\x27\x7c\x1a\x00\x88\x94\x72\xe4\xff\x97\x3d\x8c\x94\xfa\x7b\x68\x77\xed\xec\x95\xdc\xc2\xde\x48\xe5\x6f\xf0\xd2\x7c\x99\xef\x00\x00\x00\xff\xff\xd2\x00\x11\x86\x21\x01\x00\x00" +var _stakingcollectionScriptsGet_unlocked_tokens_usedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x31\x6e\xc3\x30\x0c\x45\x77\x9d\xe2\x23\x93\xbd\xd4\x4b\xd1\xc1\x5b\x51\xc0\x17\x68\x7c\x00\x41\x62\x1c\xc1\x34\x59\x88\x14\xd2\xa2\xe8\xdd\x8b\x26\x29\xb2\x78\x7e\xe0\xe3\xfb\x65\xfb\xd0\xea\x98\x58\x2f\xef\x1e\xd7\x22\xcb\x9b\x32\x53\xf2\xa2\x82\x53\xd5\x0d\x87\x5d\x76\x08\x61\x18\x06\x1c\x89\xd9\x70\xd6\x0b\xb6\x28\x5f\x68\xc2\x9a\x56\xca\x70\x5d\x49\x0c\x7e\x26\xc4\x94\xb4\x89\xa3\x18\x9a\x15\x59\xae\x77\x93\xd6\x3f\x58\x09\x76\x33\x23\x3d\xde\x8a\x66\x32\x44\xc9\xc8\xc4\xb4\x44\xd7\x6a\x21\xc4\x94\xc8\xac\x8b\xcc\x3d\x4e\x4d\xb0\xc5\x22\xdd\x5d\x3e\xe2\x35\xe7\x4a\x66\xfd\x88\x79\x2a\x9f\x2f\xcf\xf8\x0e\x00\x50\xc9\x5b\x95\xfd\x79\x4f\x0b\xf9\x7c\x0f\x3e\x5e\x7b\x67\xa3\xdc\xc5\x9b\x69\xfc\x0f\xef\xc3\x4f\xf8\x0d\x00\x00\xff\xff\x31\xdc\x37\x2c\x26\x01\x00\x00" func stakingcollectionScriptsGet_unlocked_tokens_usedCdcBytes() ([]byte, error) { return bindataRead( @@ -5640,11 +5660,11 @@ func stakingcollectionScriptsGet_unlocked_tokens_usedCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_unlocked_tokens_used.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb7, 0x3a, 0xad, 0x80, 0x59, 0x47, 0x6f, 0xc6, 0x0, 0x50, 0xc4, 0xed, 0x7, 0xec, 0xe7, 0xdd, 0xdc, 0x0, 0x1b, 0x20, 0x27, 0x43, 0x2f, 0xda, 0x7c, 0x27, 0xb6, 0x99, 0x7a, 0x72, 0x66, 0x46}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x6b, 0x4a, 0x39, 0xdc, 0x90, 0x32, 0xaf, 0x58, 0x89, 0x48, 0x1d, 0x77, 0x1, 0x5, 0x8f, 0xe8, 0xf2, 0xc2, 0x68, 0xf, 0x44, 0xda, 0x36, 0x67, 0x13, 0x46, 0xf, 0x2a, 0x1c, 0x6d, 0xb2}} return a, nil } -var _stakingcollectionSetup_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\x4b\x6f\xea\x46\x14\xde\xf3\x2b\xce\xbd\x8b\x5b\x23\xf1\xe8\x1a\x91\xdc\x12\x20\xa9\x15\x04\x51\x70\x5b\x75\x39\xd8\xc7\xf6\x94\xc9\x8c\x35\x33\x86\x46\x11\xff\xbd\x1a\xdb\xe3\x07\xe0\x84\x44\x51\xca\x22\x44\xf6\x79\x7c\xdf\x77\x5e\xd0\xa7\x44\x48\x0d\xb7\x29\x8f\xe8\x86\xa1\x27\xb6\xc8\x21\x94\xe2\x09\x7e\xfd\xf7\xf6\x8f\xe5\x9d\x7b\xb3\x98\x7b\xab\xfb\xf9\x72\x32\x9b\x3d\xce\xd7\xeb\x8e\x75\x60\x62\xdf\x34\x5e\xac\xfe\x6a\x33\x74\x67\x1e\xd9\x30\x5c\x6b\xb2\xa5\x3c\xb2\x1e\xee\x6c\xbe\xf4\x5c\xef\x6f\x6f\x72\xb3\x98\x1f\x79\x2d\x84\xbf\xc5\x20\x4b\xa0\xac\xfd\x62\x35\xbd\x9f\xcf\xda\x72\x14\xc1\xa7\x82\x31\xf4\x35\x15\x25\xb0\xb5\x37\xb9\x77\x97\x77\xd3\xd5\x62\x31\x9f\x7a\xee\xaa\x74\xee\x0c\x87\x43\xf0\x62\xaa\x40\x4b\xc2\x15\xc9\xbd\x14\x6a\x05\x69\x02\x84\x03\xf1\x7d\x91\x72\x0d\x5a\x40\xaa\x10\x08\xa8\x82\x80\x5f\x26\xc9\x62\xb8\x1a\xf6\x94\x31\xd8\x0b\xb9\x05\x89\x11\x91\x01\x43\xa5\x40\x84\xb0\x8f\x51\xc7\x28\x41\xc7\xf8\x0c\x31\xd9\x99\x28\x12\xa3\x94\x11\x69\xc3\xf7\x80\x80\xde\x8b\xbe\xcd\xc6\x32\xea\xa0\x73\xee\x0a\x75\x9a\xf4\xb2\x34\x42\x96\x00\xc4\xe6\x1f\xf4\xb5\x02\xa5\x85\xc4\x00\x28\x37\x09\x20\xe5\x85\x6f\x11\xaa\xd3\xa9\x13\x7b\xe9\x00\x00\x24\x12\x13\x22\xd1\x51\x34\xe2\x28\x47\x30\x49\x75\x3c\xc9\xcd\xbb\xf0\xd2\xc9\x6c\xcc\xc7\xd0\x0a\x4d\x54\x89\x40\x15\xff\x45\x03\x61\x12\x49\xf0\x7c\x5e\x06\xeb\x46\x43\xc8\x23\x0f\x36\x42\x4a\xb1\x1f\xff\x38\x5b\x9b\xc1\xc9\x93\x6b\xc7\x94\x6b\x74\xbe\x94\xa7\xe6\x6b\x2d\x24\x89\xf0\x81\xe8\xb8\x0b\x57\x57\xc0\x29\xab\xa3\x2f\x18\x4c\x25\x12\x8d\x90\x48\xba\x33\xdf\x3e\x49\xc8\x86\x32\xaa\x29\x2a\x08\x45\x56\x95\x5c\x67\x88\x05\x0b\x50\x02\xe1\x41\xa5\xe2\x8e\xa4\x4c\x37\x42\x32\xb4\xe5\xf9\x3d\xb7\xbf\xb2\x6c\x19\xe5\xdb\xf1\x8f\x7a\xd7\x0e\xb2\xaf\xdc\xee\xda\x19\x16\x18\x86\xa1\x9d\x9b\xfc\x4d\x0f\x34\x91\x11\xea\x11\xb4\xf9\xd6\x99\x7e\x3b\x41\x53\x86\x3b\x86\x52\xce\xe7\xe0\x4f\x43\xe3\x1c\x82\xec\x45\x05\x60\xa8\xf2\x4c\x47\x06\x47\x49\x5b\x24\x26\xc0\x71\x0f\x76\xc0\x6b\x43\x68\x14\x4d\x52\x0d\x54\x9b\x2e\x2d\x52\x34\x82\xd0\xb0\xa1\xe9\xc0\x8f\xd1\xdf\x3a\xdd\xa2\x5f\xeb\x9f\x82\xa0\x22\x3b\x74\xc6\xfd\xf3\x9d\xe2\x67\x78\x4e\x9e\x3b\xb6\xaa\x19\xa7\x51\xa5\x5b\x2f\x6f\x80\x3c\xf7\xa8\x81\xa4\x6b\xde\x7d\xa8\x23\x1b\xc8\x0f\x80\x4c\xe1\xff\x43\x87\x53\xf6\x59\x2c\xda\x86\x8b\x40\x92\x6e\x18\xf5\xc1\xf4\x9d\x59\x95\x66\xa8\x5e\xd9\x10\x35\xe6\x55\xa7\x5e\x80\xec\xe5\x42\xbb\x87\x0c\xcd\xe1\xda\x39\xd1\xfb\x5d\x01\x8c\x02\xbd\x93\x10\x76\x56\xde\xaf\x66\x23\x54\x25\xed\xa1\xb1\x71\xf3\x9d\x99\x9d\x88\x10\x25\x72\x1f\x2f\x10\xd4\xac\x81\xea\xf1\x23\x86\xd5\x2a\xf8\xba\x1d\xdc\xa0\xf7\xf3\x27\x24\x84\x53\xdf\xf9\x3e\x15\x29\x0b\x80\x0b\x6d\xa9\x9d\xf2\xa8\xb8\x7e\xef\xb6\x9d\x1f\xb3\x5e\x44\x90\xab\x80\xb2\xb8\x7e\xf6\xea\x95\x67\xb4\x5a\x33\x6f\x28\x76\xfe\x48\x35\x7f\xa4\x0c\x96\x22\xc8\xfe\x37\xdb\xbb\x92\xa5\xd5\xa8\x71\x90\xbe\xd9\x83\x54\x57\xc5\xd4\x29\x63\x31\xee\x97\x03\x20\x48\x30\xfe\xed\x73\x93\x37\xd7\x75\xa3\x31\x06\x24\x08\x8c\xd3\x2a\xd3\xcf\x19\xf7\x0d\x9c\x1e\x3c\x11\x3f\xa6\x1c\x8b\x5f\x01\x2e\x0f\x45\xbe\x38\x5a\x9a\xb4\x59\x97\x00\x19\x46\x44\x8b\x2f\xac\xca\xcc\xa6\x7c\x45\x9b\xd2\xe6\xb2\xba\x54\x2c\x2e\x2c\xce\x87\x31\xbc\x51\x9e\xd2\xa7\xac\x51\x09\xad\x5e\x8f\xfc\xef\xa1\xf3\x5f\x00\x00\x00\xff\xff\x6b\x24\xa3\x92\xbe\x0b\x00\x00" +var _stakingcollectionSetup_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xdf\x4f\xfb\x36\x10\x7f\xcf\x5f\x71\xf4\x81\x25\x52\x9b\xbe\x57\x85\xef\xb6\x7e\x35\x0d\x69\x1a\x68\x20\xf6\x7c\x4d\x2e\x8d\x57\x63\x47\xb6\xd3\x08\x21\xfe\xf7\xc9\xce\x4f\x37\x29\x74\x30\x0d\x69\x7e\x20\xd4\xbe\x5f\x9f\xfb\xf8\xce\xc7\x9e\x0a\xa9\x0c\xfc\x52\x8a\x1d\xdb\x72\x7a\x90\x7b\x12\x90\x29\xf9\x04\x33\x6f\x6f\x16\xb4\x92\x5c\x56\x9e\x54\xfb\xdb\x93\xb8\xf9\xfe\x80\x5b\x4e\xf7\x06\xf7\x4c\xec\x06\xa2\xfe\x41\xa7\xf3\x9b\x4c\xf6\x94\x3a\x3b\xba\x91\x1e\x6e\x79\xb6\x1b\xdd\x8d\xe4\x9c\x12\xc3\xe4\x30\x92\xd1\xd9\x2c\x08\x96\xcb\x25\x3c\xe4\x4c\x83\x51\x28\x34\xd6\x2a\x9a\x8c\x86\xb2\x00\x14\x80\x49\x22\x4b\x61\xc0\x48\x28\x35\x01\x82\x6e\xa2\x4e\x3a\x2b\xce\xc6\x8d\x81\x8a\x71\x0e\x95\x54\x7b\x50\xb4\x43\x95\x72\xd2\x1a\x64\x06\x55\x4e\x26\x27\x05\x26\xa7\x67\xc8\xf1\x60\xad\x28\xda\x95\x1c\x55\x6b\x7e\x0e\x08\xa6\x92\x8b\xd6\x1b\x77\xf0\xc0\xd4\x90\x35\x99\xb2\x98\x3b\x37\x52\x75\x01\xc8\xed\x5f\x94\x18\x0d\xda\x48\x45\x29\x30\x61\x1d\x40\x29\x1a\xdd\xc6\x54\x10\x0c\x81\xbd\x04\x00\x00\x85\xa2\x02\x15\x85\x9a\xed\x04\xa9\x15\x60\x69\xf2\xf0\x67\xa9\x94\xac\x1e\x91\x97\x34\x87\x7b\x23\x15\xee\x68\x0e\x1b\x2c\x70\xcb\x38\x33\x8c\x74\x04\x97\x3f\xd5\x46\x23\x78\x09\x9c\x25\xbb\x2c\xf8\xcc\xfa\x56\x04\x4c\x8b\x1f\x0c\x20\x57\x84\xe9\xf3\x74\xb2\x5a\x35\x96\x41\xed\x3f\xd6\xb5\xb3\x78\xeb\x22\x58\x5f\x4e\x52\x15\x8f\x76\xae\x43\xcb\xec\x6a\x9a\xf5\xb1\x78\x03\xe9\x0e\x4d\x1e\xc1\xd5\x15\x08\xc6\x87\x28\x1a\x24\x1b\x45\x68\x08\x0a\xc5\x0e\xf6\x9b\x0c\xe0\x43\x26\x1d\x87\x35\x2b\x90\x4b\x9e\x92\x02\x14\x69\x9f\xf3\x03\x96\xdc\x78\x26\x39\xb5\x64\xfe\x5a\xcb\x5f\xb5\xa8\x87\xa6\xbb\x14\x30\xad\x4b\x5a\x3b\x3e\xbc\x02\x8b\xff\x64\x26\x4f\x15\x56\x73\xaf\x18\x62\xf7\xb9\x2d\x48\xa1\x85\x68\x19\x1a\x1f\xd7\x8e\xaf\xc3\x53\x27\xc3\xc4\x5c\x8c\x82\xcf\xba\x8a\xfe\x64\xe4\x11\x5c\x76\xdd\x20\x7e\xb4\x89\xba\x0e\x97\x8d\xf6\xb2\xf3\xe2\x0e\xa2\x8b\x53\xbc\x20\x08\xaa\xa0\x6d\x1c\x83\x22\xb7\x34\x14\xa5\x01\x66\x6c\x21\x34\x66\x3d\x23\x2c\xf3\x88\x88\x93\x9c\x92\x7d\x18\x35\x25\x31\x5c\x47\xd7\x52\xe3\x81\xc2\x91\x90\x5d\xeb\xc5\x89\xcb\x97\xb8\x68\x47\xfb\xd3\x56\xec\x6a\x6f\x90\x83\xbf\xea\x93\x3e\x3f\xa9\x61\x7a\x02\x57\x1e\xb0\x49\x8d\x68\xda\x90\x91\x1f\x29\x9f\x91\xa9\xc8\xdb\x79\x05\xe2\x9a\xfe\x17\x79\x15\x8c\x7f\x7d\x3a\x47\xb5\x70\x57\x6e\x39\xd3\x39\x60\xdf\x9e\x9e\xed\xfb\x64\x7b\x53\x9d\xa1\x74\xa2\xf1\xc6\xa3\xd2\xd6\xc7\x41\x6d\xb0\x38\xab\xca\xcf\xef\xd0\x23\x6c\x9f\x4c\x4f\xe4\x27\x63\x2a\xd4\xa2\xce\xce\xd8\xf5\x14\xdc\x31\x8f\x68\xce\xe6\xd0\xf1\x90\x4c\xc4\x38\x41\xdd\x72\x09\xf5\xf3\xe6\xde\xfe\x8c\x14\x89\x84\x5a\xd2\xde\x78\x25\x2d\x4f\xfd\xf6\x1f\x94\xf5\x04\xfd\xf7\xcf\xa6\x07\xf3\xdb\x37\x28\x50\xb0\x24\x9c\x6d\x64\xc9\x53\x10\xd2\xb4\x10\xc7\x78\x7a\xcc\xb3\xe8\xd4\xe4\x60\x9b\xbb\x4c\xeb\x6c\x90\x6a\xc6\x9b\x76\xac\xe9\xe6\xa4\xbe\xc9\xbf\x93\xb9\xb7\xe7\x0b\x7f\xd2\x8c\x7f\x97\xa9\xfb\xdf\xbe\x93\x7d\x7a\x4e\x0a\x79\xb3\xc4\x45\x3b\x4b\x1c\xd7\x97\x43\xb3\x5e\x1c\x87\xc1\x25\xa6\xeb\x1f\xff\xdd\x20\xfc\x77\xdb\xbb\x30\x31\xa6\xa9\x55\xba\x75\xf9\x0c\xd7\x0b\x1b\xd6\x1c\x9e\x30\xc9\x99\xa0\x66\xa0\xbb\x11\x99\x74\xed\xee\xd4\xe5\xf5\x79\x4a\x89\xd3\x0e\x8d\xfc\x02\x96\xbe\xb7\xae\xdf\xc8\x51\x27\x73\x1e\x4f\x3d\x9a\x7f\x48\xd6\x87\x63\x79\x87\xae\x4e\xa7\xe3\xac\x0b\x71\xc8\x4f\xfd\xf7\x35\xf8\x3b\x00\x00\xff\xff\x2f\x57\xf5\xcc\xa6\x0d\x00\x00" func stakingcollectionSetup_staking_collectionCdcBytes() ([]byte, error) { return bindataRead( @@ -5660,11 +5680,11 @@ func stakingcollectionSetup_staking_collectionCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/setup_staking_collection.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0x41, 0x87, 0x59, 0x87, 0x7c, 0xcb, 0xe9, 0xdd, 0x3a, 0x84, 0x4, 0xfe, 0x2e, 0xda, 0x72, 0xc3, 0xab, 0x10, 0xa9, 0x54, 0x90, 0x37, 0x82, 0x32, 0xfa, 0xb3, 0x41, 0xf, 0x73, 0x5a, 0xe8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc6, 0x8f, 0xd5, 0x44, 0x8b, 0x79, 0x97, 0x70, 0x5e, 0x2a, 0xd, 0xcd, 0x70, 0xb3, 0x50, 0xdb, 0x48, 0xaa, 0x31, 0xa6, 0xeb, 0xb3, 0x2, 0xb6, 0xeb, 0xdf, 0xee, 0xac, 0xe2, 0x1e, 0xd1, 0x58}} return a, nil } -var _stakingcollectionStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xc1\x6a\x1b\x31\x10\x86\xef\xfb\x14\x3f\x39\x14\x07\x8c\x5d\xda\xd2\x83\x69\x6b\xcc\x3a\x29\xa6\xc1\x29\x59\xe7\x01\x94\xdd\x91\x2d\xac\xd5\x2c\xd2\x6c\xd7\xa5\xe4\xdd\xcb\x4a\x59\x3b\xc4\x3e\x44\x07\x09\x0d\xa3\xef\xff\x35\x33\xa6\x6e\xd8\x0b\x6e\x2d\x77\x85\xa8\xbd\x71\xdb\x9c\xad\xa5\x52\x0c\x3b\x68\xcf\x35\x3e\x1e\x8a\xcd\xe2\xd7\x6a\xfd\x33\xbf\xbf\xbb\xbb\xc9\x37\xab\xfb\xf5\x62\xb9\x7c\xb8\x29\x8a\x2c\x9b\x4e\xa7\xc8\xb9\xae\x8d\x04\x38\xea\x20\xbc\x27\x17\x20\x8c\x20\x6a\x4f\xd0\xec\x21\x3b\x42\x68\xa8\x34\xda\x50\x05\xc7\x15\x81\x3d\x2a\xb2\xb4\x55\xc2\x1e\xc6\xa5\x94\xa4\x8e\xf2\x28\x1f\xe9\x9b\x1d\x0d\xd4\xe8\xa6\x4f\xb5\x5c\xee\xa9\xc2\x1f\xd5\x5a\x81\xf2\x84\x36\x50\x05\x6d\x7c\x90\x31\x8c\x86\x11\xd0\xc1\x04\x09\x91\xa0\xd9\x5a\xee\xa8\xc2\xd3\xdf\xf8\xfa\x2d\xad\x75\xaf\x79\x59\x26\x5e\xb9\xa0\xa2\x83\x51\xef\x76\xb5\x9c\xa1\x10\x6f\xdc\x76\x7c\x72\xdd\x07\x1f\x57\x4e\x3e\x7f\x9a\x8f\xa1\x6a\x6e\x9d\xcc\xf0\x78\x6b\x0e\x5f\xbf\x5c\xe3\x5f\x06\x00\x71\xb3\x24\xc3\xcf\x4e\x75\x7d\x20\x3d\xc3\x87\x8b\x25\x9f\x9c\x45\xb2\xc8\x69\x3c\x35\xca\xd3\x48\x95\x65\xd2\x5a\xb4\xb2\x5b\xa4\xcb\x20\xd8\xaf\x40\x56\x4f\x2e\x09\xe2\x3b\x5e\xde\x4e\x9e\xd8\x7b\xee\xbe\xbd\xd7\xc0\x8f\x51\x5f\xaa\xd9\xe5\x11\x39\x4f\x2f\x84\xbd\xda\xd2\x6f\x25\xbb\xeb\xa3\xad\x7e\xcd\xe7\x68\x94\x33\xe5\xe8\x2a\xe7\xd6\xf6\x93\x20\x48\x56\xe0\x49\xf7\x33\x73\xc6\xba\x4a\x84\xe7\x54\x03\x3a\x50\xd9\x0a\xbd\xe7\xb7\x31\x48\x6b\xea\x36\xb1\xd9\xc7\x3e\xa6\xf3\x4d\x1f\x5f\x5d\x4e\xbd\x4c\xe7\xa0\xff\x9c\xfd\x0f\x00\x00\xff\xff\xec\x54\xa2\x45\x28\x03\x00\x00" +var _stakingcollectionStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6f\xdb\x30\x0c\x85\xef\xfe\x15\x0f\x39\x74\x09\x10\x24\xc0\x36\xec\x10\x6c\x0b\xb6\x0c\x05\x7a\xd9\x86\xa5\xdd\x5d\xb5\xe9\x44\x88\x2c\x1a\x14\x3d\xa7\x18\xfa\xdf\x07\x49\x75\x52\x34\x3e\xec\x52\x1d\x2c\x9b\xa2\x1f\x1f\xa9\xcf\x36\x2d\x8b\xe2\xda\x71\xbf\x55\x73\xb0\x7e\xb7\x61\xe7\xa8\x54\xcb\x1e\xb5\x70\x83\xc9\xe8\xd9\xa4\x28\x96\xcb\x25\x36\xdc\x34\x56\x03\x3c\xf5\x50\x3e\x90\x0f\x50\x46\x50\x73\x20\xd4\x2c\xd0\x3d\x21\xb4\x54\xda\xda\x52\x05\xcf\x15\x81\x05\x15\x39\xda\x19\x65\x81\xf5\x39\x25\xcb\xa3\x3c\xe9\x27\xf5\xdb\x3d\x0d\xaa\xc9\x4a\x4c\x75\x5c\x1e\xa8\xc2\x1f\xd3\x39\x85\x11\x42\x17\xa8\x42\x6d\x25\xe8\x1c\xb6\x86\x55\xd0\xd1\x06\x0d\x49\xa1\x66\xe7\xb8\xa7\x0a\xf7\x0f\xe9\xef\x97\x6a\x9d\x7f\xae\x57\x14\x2a\xc6\x07\x93\x1c\x4c\xa3\xdb\x9b\x6f\x2b\x6c\x55\xac\xdf\xcd\xcf\xae\x63\xf0\xee\xc6\xeb\xbb\xb7\xeb\x39\x4c\xc3\x9d\xd7\x15\xee\xae\xed\xf1\xc3\xfb\x19\xfe\x16\x00\x90\x1e\x8e\x74\xe8\xec\x3c\xb8\x5f\x54\xaf\x60\x3a\xdd\x4f\x47\xe7\xba\x38\xbf\xfe\xe8\x3d\xc9\x0c\x57\xe3\x79\x17\x91\x22\xd5\x6c\x85\x5a\x23\x34\x35\x65\x99\x7d\xa5\x52\x5f\x59\x84\xfb\xdf\xc6\x75\x34\xc3\xd5\x97\x7c\x36\x78\x8d\x2b\x90\xab\x17\x63\x5e\xf1\x09\x4f\x52\x8b\xa0\x2c\x66\x47\x8b\xfb\x24\xf6\xf1\x35\x7a\xf8\x3c\x8d\x37\xb3\x1a\xc7\xf1\x32\x7d\x9b\x1d\xfd\x34\xba\x9f\x9d\x5a\x89\x6b\xbd\x46\x6b\xbc\x2d\xa7\x93\x0d\x77\x2e\x82\xa7\xc8\xb6\x61\x20\x54\x93\x90\x2f\x23\x0d\x30\xb8\xc4\xfe\x09\xca\x56\x6c\x63\xe4\x21\x02\x26\x6f\xc2\x30\x86\x49\xae\xf4\x98\xc7\x4d\x47\x2a\x3b\xa5\xff\x99\x64\x0a\xd2\x77\xea\x6f\x13\x83\x27\xbc\xf2\xfe\x02\xaf\x67\x1f\x67\xc4\xf2\x3e\xd4\x7f\x2c\xfe\x05\x00\x00\xff\xff\x19\x9a\x91\xbf\xbc\x03\x00\x00" func stakingcollectionStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5680,11 +5700,11 @@ func stakingcollectionStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd, 0x83, 0x37, 0x9f, 0xaa, 0xc4, 0x87, 0xda, 0x7e, 0xaf, 0x41, 0x49, 0xd3, 0xe, 0xac, 0xd, 0xa9, 0xb8, 0x16, 0xce, 0xbc, 0x57, 0xa0, 0x71, 0x8c, 0xf3, 0x87, 0x9c, 0x2e, 0xdc, 0x1e, 0x31}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x9a, 0xc7, 0x41, 0xbc, 0xe4, 0x74, 0x85, 0x15, 0x98, 0x99, 0xf, 0x7e, 0xfb, 0xc8, 0x6a, 0x9e, 0x96, 0x5b, 0xb6, 0x66, 0x12, 0x17, 0x77, 0x7b, 0xc3, 0x9e, 0x10, 0x6e, 0xc6, 0xe5, 0x3e}} return a, nil } -var _stakingcollectionStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xdd\xca\xda\x40\x10\xbd\xcf\x53\x1c\xbc\x28\x11\x44\x4b\x5b\x7a\x11\xda\x4a\x88\x5a\x42\x45\x8b\xd1\x07\xd8\x26\x93\xb8\x98\xec\x84\xcd\x04\x85\xe2\xbb\x7f\x24\xeb\xcf\xc7\xa7\x17\xee\xc5\x2e\x33\xec\x9c\x73\x66\xce\xe8\xaa\x66\x2b\x58\x94\x7c\x4c\x44\x1d\xb4\x29\x22\x2e\x4b\x4a\x45\xb3\x41\x6e\xb9\xc2\xe7\x53\xb2\x0d\xff\xc4\xab\xdf\xd1\x7a\xb9\x9c\x47\xdb\x78\xbd\x0a\x67\xb3\xcd\x3c\x49\x3c\x6f\x32\x99\x20\xe2\xaa\xd2\xd2\xc0\xd2\x51\xd9\x8c\x32\x08\x1f\xc8\x34\x10\x46\x23\xea\x40\xc8\xd9\x42\xf6\x84\xa6\xa6\x54\xe7\x9a\x32\x18\xce\x08\x6c\x91\x51\x49\x85\x12\xb6\xd0\xc6\x7d\x71\x12\x90\xde\x34\x78\x9e\x58\x65\x1a\xd5\x07\x7e\x57\x18\xcf\x02\x24\x62\xb5\x29\x46\x77\x80\x2e\xb9\x8b\x8d\x7c\xfd\x32\x1d\x41\x55\xdc\x1a\x09\xb0\x5b\xe8\xd3\xf7\x6f\x43\xfc\xf7\x00\xa0\xbf\x4a\x92\x2b\xc9\xbd\xcf\x0d\xe5\x01\x3e\x3d\x1d\xc1\xf8\x21\xe3\xf5\x38\xb5\xa5\x5a\x59\xf2\x55\x9a\x3a\xae\xb0\x95\x7d\xe8\x82\x2b\x61\x77\x1a\x2a\xf3\xf1\x33\x42\xfc\xc4\xa5\x76\xfc\x8f\xad\xe5\xe3\x8f\x57\x05\xfc\xf2\x3b\x5b\x82\xe7\x96\x3d\x7e\x4f\x84\xad\x2a\xe8\xaf\x92\xfd\xf0\x26\xab\x3b\xd3\x29\x6a\x65\x74\xea\x0f\x22\x6e\xcb\xce\x14\x81\x93\x02\x4b\x79\x67\xdf\x03\xd6\xc0\x21\x9c\xdd\x0c\xe8\x44\x69\x2b\xf4\x4a\xb7\x7d\x92\x36\x97\x0d\xd9\xf6\x0b\x72\x33\xd3\xbd\x1f\xcc\x7c\x17\xdc\x0d\x75\xef\x55\xc4\xd9\x7b\x0b\x00\x00\xff\xff\xa8\x2e\xa8\x04\xbd\x02\x00\x00" +var _stakingcollectionStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x8f\xd3\x30\x10\x85\xef\xf9\x15\x4f\x3d\x2c\xa9\xb4\x6a\x25\x40\x1c\x2a\xa0\x82\xa2\x95\xf6\x04\xda\xb2\xdc\x07\x67\xd2\x5a\x75\x3c\xd1\x78\xa2\x2e\x42\xfb\xdf\x51\xe2\xb6\x41\x34\x07\x2e\xeb\x43\x1c\x8f\xc7\xf3\xde\x8c\x3e\xdf\xb4\xa2\x86\xbb\x20\xc7\xad\xd1\xc1\xc7\xdd\x46\x42\x60\x67\x5e\x22\x6a\x95\x06\xb3\xc9\xbb\x59\x51\x2c\x97\x4b\x6c\xa4\x69\xbc\x25\x28\x1f\x49\x2b\xae\x60\x72\xe0\x98\x60\x82\x64\x74\x60\xd4\xa2\xb0\x3d\x23\xb5\xec\x7c\xed\xb9\x42\x94\x8a\x21\x8a\x8a\x03\xef\xc8\x44\xe1\x63\x4e\xc9\x1a\x70\x17\x91\xa2\x30\xa5\x98\x68\x38\x94\xfd\xc3\xfb\x2f\x2b\x6c\x4d\x7d\xdc\xdd\x8e\x05\xfa\xe0\xe3\x7d\xb4\x37\xaf\xd7\xb7\xa0\x46\xba\x68\x2b\x3c\xde\xf9\xa7\x77\x6f\xe7\xf8\x5d\x00\xc0\xf0\x09\x6c\x67\x91\xb1\x91\x07\xae\x57\xa0\xce\xf6\xe5\x64\x9f\x8b\xf1\xf7\xeb\x31\xb2\xce\x71\x33\x9d\x77\x15\x29\x06\xcd\x56\xb9\x25\xe5\x92\x9c\xcb\xbe\x06\xa9\xcf\xa2\x2a\xc7\x1f\x14\x3a\x9e\xe3\xe6\x53\xbe\x3b\x7b\xed\x57\xe2\x50\x2f\xa6\xbc\xe2\x03\x4e\xa5\x16\xc9\x44\x69\xc7\x8b\x9f\x43\xb1\xf7\x2f\xd1\xc3\xc7\xb2\x47\x60\x35\x8d\xc7\x75\xfa\x36\x3b\xfa\x46\xb6\x9f\x5f\x5a\xe9\xd7\x7a\x8d\x96\xa2\x77\xe5\x6c\x23\x5d\xe8\x19\x30\x64\xdb\x20\x28\xd7\xac\x1c\x1d\xf7\xd4\x10\xae\x31\x3c\xf1\xd1\xaa\x6f\x48\x7f\xa1\x4b\xac\xaf\xd2\x79\x0c\xb3\xac\xf4\x9c\xc7\xcd\x4f\xec\x3a\xe3\xff\x99\xe4\x10\xe4\x87\x13\xb8\xdf\x07\x6e\x2f\x8c\xe5\xfd\x1f\xc6\xfe\x3a\x8c\x9c\xe5\xfd\x6c\xe2\xb9\xf8\x13\x00\x00\xff\xff\x2f\x51\xad\x1c\x51\x03\x00\x00" func stakingcollectionStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5700,11 +5720,11 @@ func stakingcollectionStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0x8e, 0x32, 0xe0, 0x5e, 0x34, 0x11, 0x60, 0x2d, 0xf1, 0x4f, 0xad, 0x4e, 0x59, 0x3e, 0x2e, 0x5d, 0x31, 0xfd, 0x3d, 0x36, 0x15, 0xf8, 0x38, 0x97, 0x41, 0x38, 0xf, 0xdd, 0x44, 0xc6, 0x7a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x29, 0xa7, 0x4a, 0x17, 0x9b, 0x2d, 0xe2, 0x9b, 0xf8, 0xdb, 0xe2, 0xb2, 0x5b, 0x3b, 0xa5, 0x1c, 0xe, 0xec, 0x5d, 0xb3, 0x86, 0xb, 0xeb, 0xd5, 0x62, 0xbe, 0xc9, 0x84, 0x5, 0xe, 0x1d, 0x75}} return a, nil } -var _stakingcollectionStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xdd\xca\xda\x40\x10\xbd\xcf\x53\x1c\xbc\x28\x11\x44\x4b\x5b\x7a\x11\xda\x4a\x88\x5a\x42\x45\x8b\xd1\x07\xd8\x26\x93\xb8\x98\xec\x84\xcd\x04\x85\xe2\xbb\x7f\x24\xeb\xcf\xc7\xa7\x17\xee\xc5\x2e\x73\xd8\x3d\xe7\xec\x9c\xd1\x55\xcd\x56\xb0\x28\xf9\x98\x88\x3a\x68\x53\x44\x5c\x96\x94\x8a\x66\x83\xdc\x72\x85\xcf\xa7\x64\x1b\xfe\x89\x57\xbf\xa3\xf5\x72\x39\x8f\xb6\xf1\x7a\x15\xce\x66\x9b\x79\x92\x78\xde\x64\x32\x41\xc4\x55\xa5\xa5\x41\x6b\x1a\x51\x07\xca\x20\x7c\x20\xd3\x40\x18\x3d\x80\x9c\x2d\x64\x4f\x68\x6a\x4a\x75\xae\x29\x83\xe1\x8c\xc0\x16\x19\x95\x54\x28\x61\x0b\x6d\xdc\x15\x67\x01\xe9\xcd\x83\xe7\x89\x55\xa6\x51\x7d\xe1\x77\x0f\xe3\x59\x80\x44\xac\x36\xc5\xe8\x4e\xd0\x81\xbb\xd8\xc8\xd7\x2f\xd3\x11\x54\xc5\xad\x91\x00\xbb\x85\x3e\x7d\xff\x36\xc4\x7f\x0f\x00\xfa\xad\x24\xb9\x8a\xdc\xff\xb9\xa1\x3c\xc0\xa7\xa7\x2d\x18\x3f\x20\x5e\xcf\x53\x5b\xaa\x95\x25\x5f\xa5\xa9\xd3\x0a\x5b\xd9\x87\xae\xb8\x0a\x76\xab\xa1\x32\x1f\x3f\x13\xc4\x4f\x5c\xde\x8e\xff\xb1\xb5\x7c\xfc\xf1\xaa\x81\x5f\x7e\x17\x4b\xf0\x3c\xb2\xc7\xeb\x89\xb0\x55\x05\xfd\x55\xb2\x1f\xde\x6c\x75\x6b\x3a\x45\xad\x8c\x4e\xfd\x41\xc4\x6d\xd9\x85\x22\x70\x56\x60\x29\xef\xe2\x7b\xe0\x1a\x38\x86\xb3\xeb\x01\x9d\x28\x6d\x85\x5e\xf9\x6d\x0f\xd2\xee\x32\x21\xdb\x7e\x40\x6e\x61\xba\xf3\x43\x98\xef\x8a\x7b\xa0\xee\xbc\x9a\x38\x7b\x6f\x01\x00\x00\xff\xff\x3a\x54\x8d\x83\xbd\x02\x00\x00" +var _stakingcollectionStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x8f\xd3\x30\x10\xc5\xef\xf9\x14\x4f\x3d\x2c\xa9\xb4\x6a\x25\x40\x1c\x2a\xa0\x82\xa2\x95\xf6\x04\xa2\x94\xfb\xe0\x4e\x5a\xab\x8e\x27\x1a\x4f\xd4\x45\x68\xbf\x3b\x8a\xdd\x3f\x88\xe6\xc0\x05\x1f\xe2\x78\x3c\x9e\xf7\x66\xf4\xf3\x6d\x27\x6a\x78\x08\x72\x5c\x1b\x1d\x7c\xdc\xad\x24\x04\x76\xe6\x25\xa2\x51\x69\x31\x19\xbd\x9b\x54\xd5\x7c\x3e\xc7\x4a\xda\xd6\x5b\x42\x1f\x93\xd1\x81\xb7\x30\x39\x70\x4c\x30\x41\x0e\xa0\x11\x85\xed\x19\xa9\x63\xe7\x1b\xcf\x5b\x44\xd9\x32\x44\xb1\xe5\xc0\x3b\x32\x51\xf8\x58\x52\x8a\x06\xdc\x45\xa4\xaa\x4c\x29\x26\xca\x87\x7a\x78\xf8\xf8\x69\x81\xb5\xa9\x8f\xbb\xfb\x6b\x81\x21\xb8\x79\x8c\xf6\xea\xe5\xf2\x1e\xd4\x4a\x1f\x6d\x81\xcd\x83\x7f\x7a\xf3\x7a\x8a\x5f\x15\x00\xe4\x4f\x60\x3b\x8b\x5c\x1b\xf9\xca\xcd\x02\xd4\xdb\xbe\x1e\xed\x73\x76\xfd\xfd\x7c\x8c\xac\x53\xdc\x8d\xe7\xdd\x44\xaa\xac\xd9\x29\x77\xa4\x5c\x93\x73\xc5\x57\x96\xfa\x28\xaa\x72\xfc\x4e\xa1\xe7\x29\xee\x3e\x94\xbb\xb3\xd7\x61\x25\x0e\xcd\x6c\xcc\x2b\xde\xe1\x54\x6a\x96\x4c\x94\x76\x3c\xfb\x91\x8b\xbd\xfd\x1f\x3d\xbc\xaf\x07\x04\x16\xe3\x78\xdc\xa6\xaf\x8b\xa3\x2f\x64\xfb\xe9\xa5\x95\x61\x2d\x97\xe8\x28\x7a\x57\x4f\x56\xd2\x87\x81\x01\x43\xb1\x0d\x82\x72\xc3\xca\xd1\xf1\x40\x0d\xe1\x16\xc3\x13\x1f\x9d\xfa\x96\xf4\x27\xfa\xc4\xfa\x22\x9d\xc7\x30\x29\x4a\xcf\x65\xdc\xfc\xc4\xae\x37\xfe\x97\x49\xe6\x20\x6f\x4e\xe0\x7e\xcb\xdc\x5e\x18\x2b\xfb\x5f\x8c\xfd\x71\xb8\x72\x56\xf6\xb3\x89\xe7\xea\x77\x00\x00\x00\xff\xff\xb4\xae\x2d\x5d\x51\x03\x00\x00" func stakingcollectionStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5720,11 +5740,11 @@ func stakingcollectionStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa1, 0xa8, 0x7b, 0xe7, 0xd6, 0xdb, 0x84, 0x37, 0x16, 0xe4, 0x35, 0x22, 0x17, 0xe6, 0x1a, 0xc, 0x64, 0xda, 0x5a, 0x5a, 0xd1, 0x7a, 0x73, 0x9c, 0x6e, 0x62, 0xd, 0x8d, 0xab, 0x32, 0x7d, 0x4d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa2, 0xd9, 0xa3, 0x30, 0xe2, 0xac, 0xb5, 0xaf, 0xf, 0x7f, 0x25, 0x9f, 0x13, 0x26, 0xc8, 0x5b, 0x90, 0x55, 0x41, 0x24, 0x7e, 0x86, 0x5e, 0xbc, 0xc2, 0x80, 0x56, 0x9e, 0x7d, 0xb6, 0xb8, 0x5f}} return a, nil } -var _stakingcollectionTestDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\x9b\x40\x10\xbd\xf3\x15\xa3\x1c\x2a\x7c\x08\xf4\x50\xf5\x60\xb9\x8d\x28\xc6\x91\x65\x64\xaa\x80\xdb\xf3\x06\x06\xbc\xf2\x7a\x07\xed\x0e\x4a\xaa\x2a\xff\x5e\xc1\xc6\xc8\xd4\x54\x2a\x17\xb4\x3b\xef\xcd\xbe\x79\xf3\xe4\xb9\x25\xc3\xb0\x51\xf4\x92\xb3\x38\x49\xdd\xc4\xa4\x14\x96\x2c\x49\x43\x6d\xe8\x0c\x1f\x5f\xf3\x22\xda\x6d\xf7\x8f\x71\x96\xa6\x49\x5c\x6c\xb3\x7d\xb4\x5e\x3f\x25\x79\xee\x5d\x91\x0b\x3a\xe1\x48\xd8\xa4\xd9\xcf\x22\xdb\x25\x37\xc0\x4e\x37\xf2\x59\xe1\x14\x7c\xd8\x3f\x6e\xbf\xa5\xc9\x1c\x21\xa5\xf2\x84\xd5\x00\xb7\x17\x7c\x9a\xc5\xbb\x64\x3d\x41\x7b\x61\x08\x07\x8b\x15\x90\x56\xbf\xa0\x26\x03\x8c\x96\xa1\xed\x4c\x4b\x16\x2d\x30\xb9\x0b\x3e\x22\x54\xd8\x92\x95\x0c\xec\x34\x74\xda\x8d\x2a\xf5\x50\xb5\xce\x03\x28\x47\x13\x3c\x8f\x8d\xd0\x56\x0c\x07\x5f\x9c\xa9\xd3\xbc\x84\xc3\x46\xbe\x7e\xfe\xb4\x80\xdf\x9e\x07\x00\xd0\x1a\x6c\x85\x41\xdf\xca\x46\xa3\x59\x42\xd4\xf1\x31\x2a\xcb\x1e\x3b\x62\xfa\x4f\x21\x5f\xb5\x7e\xc2\x1a\xbe\x80\xe3\x04\xcf\x64\x0c\xbd\xac\x3e\xcc\x6e\x22\xb8\xb9\xf9\xea\xf7\x76\x2c\xe7\x17\x77\x0b\xcf\x99\x8c\x68\xf0\xbb\xe0\xe3\x62\x54\xd3\x7f\x0f\x0f\xd0\x0a\x2d\x4b\xff\x2e\xa6\x4e\x55\xa0\x89\xc1\x49\x01\x01\x06\x6b\x34\xa8\x4b\x1c\x1c\x9c\xb5\xe7\x6e\x31\x9d\xae\xbe\x64\xe1\x9f\xc3\x0d\xd5\xe0\x87\xe8\x14\x5f\x86\x08\xad\x93\x17\x8e\xec\xa1\xfc\xdf\x4a\x27\x3a\xfb\xf0\xc1\xc0\xff\x5b\x1b\xbb\x1c\xad\xee\xa7\x3b\x08\x1a\x64\x17\xb1\x71\xbd\xee\x3f\x7d\x7f\x3c\x4c\xc9\xef\x79\x7a\x6f\xe0\xe6\x59\xdd\xbb\xa7\x5c\x83\x37\xef\xed\x4f\x00\x00\x00\xff\xff\x64\xcc\x24\x0c\x66\x03\x00\x00" +var _stakingcollectionTestDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\x41\xcf\xda\x30\x0c\xbd\xe7\x57\x58\x3d\xa0\xf6\x40\x7b\x99\x76\x40\x6c\x68\x43\xe2\x84\xb4\x69\x0c\x76\x0e\xad\x5b\x22\x42\x5c\x25\x8e\xd8\x34\xf1\xdf\xa7\x26\xa5\x6b\x47\xa5\x7d\xb9\x44\xb6\x9f\xed\xf7\x6c\xab\x5b\x4b\x96\x61\xa7\xe9\x7e\x60\x79\x55\xa6\xd9\x92\xd6\x58\xb2\x22\x03\xb5\xa5\x1b\x24\xb3\xb1\x44\x8c\x32\xbf\xd3\x15\xc7\xe8\x60\xff\x45\x78\xd3\xa8\xb3\xc6\x09\x6a\xec\x1b\x90\x7b\x2a\xaf\x58\x05\x9f\xeb\x81\x63\x57\x22\x44\x51\xc0\xd1\x61\x05\x64\xf4\x2f\xa8\xc9\x02\xa3\x63\x68\xbd\x6d\xc9\xa1\x03\xa6\xe8\xe0\x0b\x42\x85\x2d\x39\xc5\xc0\xb1\xad\x37\x51\x93\x32\x21\xea\xa2\x20\x28\x07\x45\x42\xb0\x95\xc6\xc9\x60\xa4\xf2\x46\xde\xf0\x0a\x8e\x3b\xf5\xf3\xfd\xbb\x0c\x7e\x0b\x01\x00\xd0\x5a\x6c\xa5\xc5\xd4\xa9\xc6\xa0\x5d\x81\xf4\x7c\x49\x3f\x93\xb5\x74\x3f\x49\xed\x31\x83\xc5\xa7\xb2\xec\x52\x87\x94\xee\x69\xe4\x51\xa7\x6f\x58\xc3\x07\x88\x25\x72\xc7\x64\x65\x83\xf9\x39\x14\x59\x2f\x66\xa7\x9d\xbf\x78\x3e\xa6\xdd\x7c\x56\xf3\x8b\x7b\x85\x1f\x62\x97\xaf\x92\x2f\xd9\xc0\xaa\x7b\x9b\x0d\xb4\xd2\xa8\x32\x4d\xb6\xe4\x75\x05\x86\x18\x22\x15\x90\x60\xb1\x46\x8b\xa6\xc4\x30\xd8\xd9\xa9\x25\xd9\x54\x65\xfd\x5c\xff\x7f\x45\x06\x54\x7e\x92\x5e\xf3\x53\x4c\xd1\xe3\x8a\xa1\x4a\x08\xbf\x99\xf1\x84\xef\x6e\xff\xe5\x07\x84\xfc\x7f\x39\x72\x3c\xb0\xf5\x72\xba\x93\xbc\x41\x8e\x87\x36\x6c\x3f\xfe\xd3\xfe\x83\x31\x4d\xee\xcf\xad\x2f\x10\xf5\xac\x97\xb1\x55\x2c\xf0\x10\x8f\x3f\x01\x00\x00\xff\xff\x52\x6b\x3e\x3e\x6e\x03\x00\x00" func stakingcollectionTestDeposit_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5740,11 +5760,11 @@ func stakingcollectionTestDeposit_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/test/deposit_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0x8c, 0x1d, 0x33, 0xa6, 0xb6, 0xdb, 0x7f, 0x3f, 0xbd, 0x4f, 0x19, 0x21, 0x6a, 0xf7, 0xf3, 0x4e, 0x1e, 0x9d, 0x59, 0x35, 0xed, 0x39, 0xe4, 0x11, 0xb8, 0xb3, 0x35, 0x84, 0xa1, 0xbc, 0x80}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x1a, 0x62, 0x8a, 0x48, 0xfd, 0x30, 0xb2, 0xc1, 0x16, 0x95, 0xa1, 0xe8, 0x77, 0x7, 0x2a, 0x1f, 0x1c, 0xc0, 0x97, 0x59, 0x38, 0x3f, 0xdd, 0xbc, 0x1d, 0xd1, 0x3b, 0xec, 0x3e, 0x6e, 0x53}} return a, nil } -var _stakingcollectionTestGet_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\xcf\x9a\x40\x10\x86\xef\xfb\x2b\x26\x1e\x1a\x3c\x54\x7b\x68\x7a\x30\xb6\x86\x22\x1a\x23\x91\x46\x30\x3d\xaf\x30\xe0\x46\xdc\x21\xbb\x43\xd4\x34\xfe\xf7\x06\xf0\xe3\x93\xc8\x5e\x08\xb3\xcf\xbc\xd9\x79\x46\x5d\x4a\x32\x0c\xab\x82\xae\x11\xcb\xb3\xd2\xb9\x47\x45\x81\x09\x2b\xd2\x90\x19\xba\xc0\xb7\x5b\x14\xbb\xdb\xcd\x6e\xed\x85\x41\xe0\x7b\xf1\x26\xdc\xb9\xcb\xe5\xde\x8f\x22\xf1\xd2\x1c\xd3\x19\xbb\x86\x55\x10\xfe\x8d\xc3\xad\xff\x06\x56\x3a\x57\xc7\x02\xfb\xf0\x61\xb7\xde\xfc\x0e\xfc\xa1\x86\x80\x92\x33\xa6\x0d\x6e\x3f\xf8\x20\xf4\xb6\xfe\xb2\x47\x8b\xe9\x14\x0e\x16\x53\x20\x5d\xdc\x21\x23\x03\x8c\x96\xa1\xac\x4c\x49\x16\x2d\x30\xb5\x05\x3e\x21\xe4\xc8\xc0\xcf\xc0\x4a\xb7\x73\x2a\xdd\x5c\xd9\x56\x00\x24\x9d\x01\x21\xd8\x48\x6d\x65\xf3\xe3\xc8\x0b\x55\x9a\x67\x70\x58\xa9\xdb\x8f\xef\x63\xf8\x27\x04\x00\x40\x69\xb0\x94\x06\x1d\xab\x72\x8d\x66\x06\x6e\xc5\x27\x37\x49\x6a\xb6\x63\xea\x53\x20\xbf\x44\xef\x31\x83\x9f\xd0\xf6\x4c\x8e\x64\x0c\x5d\xe7\x5f\x06\xd7\x30\x79\xab\xfc\x72\x6a\x17\xb3\xe1\xad\xbd\xe3\x11\x93\x91\x39\xfe\x91\x7c\x1a\x77\xaf\xa9\xcf\x62\x01\xa5\xd4\x2a\x71\x46\x1e\x55\x45\x0a\x9a\x18\xda\xa7\x80\x04\x83\x19\x1a\xd4\x09\x36\xfa\x06\xf5\x8c\xfa\x71\xbd\x49\x9f\x8e\xe7\x5f\xfb\x33\x4f\x72\xe4\x76\x9f\x9d\xce\xf6\x3b\xfe\x14\x95\xa2\x65\x43\xf7\x67\x44\x53\x7e\x88\x87\x80\xff\x01\x00\x00\xff\xff\x07\xe3\x81\x01\xac\x02\x00\x00" +var _stakingcollectionTestGet_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\xb1\x8e\xe2\x30\x10\xed\xfd\x15\xa3\x14\x28\x29\x2e\x34\xa7\x2b\x10\x77\xe8\x16\x89\x6a\x8b\xd5\xb2\x6c\x6f\x92\x49\xb0\x30\x9e\x68\x3c\x11\x8b\x56\xfc\xfb\x2a\x76\x14\x12\x11\x37\x96\x9f\xdf\xbc\x99\xf7\xc6\x5c\x1a\x62\x81\x9d\xa5\xeb\x5e\xf4\xd9\xb8\x7a\x4b\xd6\x62\x21\x86\x1c\x54\x4c\x17\x48\x66\xff\x12\x35\xaa\xfc\xa0\x33\x8e\xd9\xe1\xfd\x60\xb4\xae\x36\x47\x8b\x13\xd6\x18\x1b\x98\xaf\x54\x9c\xb1\x0c\x98\xef\x89\x63\x28\x51\x6a\xb9\x84\x83\xc7\x12\xc8\xd9\x1b\x54\xc4\x20\xe8\x05\x9a\x96\x1b\xf2\xe8\x41\x28\x02\x72\x42\xa8\x51\x40\x7a\xa9\xd6\x45\x43\xc6\x85\x2f\x1f\xdd\x40\x31\xd8\x51\x4a\x58\x3b\xaf\xc3\x23\xd5\x17\x6a\x9d\xac\xe0\xb0\x33\x5f\x7f\x7e\x67\xf0\xad\x14\x00\x40\xc3\xd8\x68\xc6\xd4\x9b\xda\x21\xaf\x40\xb7\x72\x4a\x5f\x88\x99\xae\x9f\xda\xb6\x98\xc1\xe2\x7f\x51\x74\xa5\x43\x49\x77\x2c\xca\xa8\xd3\x3b\x56\xf0\x17\xa2\x44\xee\x85\x58\xd7\x98\x1f\x83\xc8\x7a\x31\x1b\x75\xfe\x84\xfc\x4b\xbb\x70\x56\xf3\x5b\x7b\xa6\xef\x63\x97\x37\x2d\xa7\x6c\x98\xaa\x3b\x9b\x0d\x34\xda\x99\x22\x4d\xb6\xd4\xda\x12\x1c\x09\xc4\x51\x40\x03\x63\x85\x8c\xae\xc0\x90\xea\x6c\x6a\xc9\x54\x6e\xe2\xb8\x8f\x7e\xfd\x6b\xea\x3d\xaf\x51\xe2\x36\x87\x94\xe3\x9d\x3d\x02\x2b\xd1\x0b\xd3\xad\x97\x08\xf0\x5d\xdd\x15\xfc\x04\x00\x00\xff\xff\xc6\xbe\x85\xb6\xac\x02\x00\x00" func stakingcollectionTestGet_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5760,11 +5780,11 @@ func stakingcollectionTestGet_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/test/get_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x75, 0x91, 0x4b, 0xc9, 0x1e, 0x4e, 0x2, 0xc2, 0x10, 0x3, 0xbf, 0x59, 0xe5, 0xec, 0xaa, 0x4b, 0x76, 0xbb, 0x48, 0xec, 0x66, 0x5, 0x6e, 0xb4, 0x41, 0x38, 0xc4, 0x16, 0x8b, 0x3, 0xc4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x72, 0xf3, 0xa0, 0xb7, 0xa9, 0x28, 0x84, 0x63, 0xc9, 0x3a, 0x84, 0x43, 0x16, 0xd4, 0xe, 0x5a, 0x3e, 0xb0, 0x91, 0xa4, 0x25, 0x42, 0x1a, 0xf0, 0x7e, 0xf, 0x1d, 0x75, 0x1b, 0x64, 0xa1, 0xc4}} return a, nil } -var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5d\x4f\xdb\x40\x10\x7c\xcf\xaf\x58\x78\xa8\x1c\x09\x4c\xd5\xbe\x45\x7c\x28\x4d\x28\x8d\x8a\x00\x11\xfa\x03\x36\xbe\xb5\x7d\xad\x73\x6b\x9d\xd7\x01\x8a\xf8\xef\xd5\x9d\x3f\x88\xb1\xdb\x06\x89\xbc\x44\x67\xef\xcd\xcd\xce\xcc\xfa\xf4\x3a\x67\x2b\xf0\x35\xe3\xfb\xa5\xe0\x2f\x6d\x92\x19\x67\x19\x45\xa2\xd9\x40\x6c\x79\x0d\x1f\x1f\x96\x77\xd3\xef\x8b\xab\x8b\xd9\xf5\xe5\xe5\xf9\xec\x6e\x71\x7d\x35\x9d\xcf\x6f\xcf\x97\xcb\xd1\xe8\xe8\x08\xee\x2c\x9a\x22\x26\x5b\x00\xc2\x15\x2b\x9a\x53\x46\x09\x0a\x5b\xe0\xd5\x4f\x8a\xa4\x02\x41\x03\x58\x4a\xca\x56\xff\xf6\xa5\x51\xc4\x5c\x1a\x71\x00\x68\x14\xa0\x52\x05\x48\x4a\xaf\x10\x84\x01\x0d\x4b\x4a\xd6\xef\x28\x8d\x14\x50\xb3\x84\x17\x9a\x0e\x44\x2b\x32\xa2\x63\x4d\x0a\x56\x8f\x1e\x49\x18\xa6\x4a\x59\x2a\x8a\x70\x34\x12\x47\x12\x7d\x75\x60\x58\xd1\x62\x3e\x81\xa5\x58\x6d\x92\x03\x50\xcd\x71\xee\xe1\x8f\x85\x91\xcf\x9f\x0e\x40\x78\xd2\x6c\x1f\xc3\xd3\x08\x00\x20\xa3\xaa\x97\x9e\x4c\xb7\x14\x4f\xe0\xc3\xa0\x82\x61\xef\x49\x0b\x25\xdc\x7b\x37\xc3\x7c\x77\xa0\xa7\x1d\xeb\x6e\xca\x55\xa6\xa3\xe7\x91\x3f\x38\xb7\x94\xa3\xa5\xa0\x56\x73\x02\xd3\x52\xd2\x69\xb5\x68\xfa\x74\x3f\xe7\x6b\x4a\x8d\xe8\x4e\x4b\xa9\x6d\x1e\x70\xa9\xf6\x59\x18\xd6\x65\x21\x90\xe2\x86\x00\x61\x83\x99\x56\x03\x6e\x81\x36\xc0\x56\x91\x77\xd7\x52\x44\x7a\x43\x7d\xd0\xb0\xa5\xa2\x63\x08\xf6\x86\x7b\x55\x4c\x45\x4d\xfe\x1b\x6e\xa8\x57\x10\x60\xe5\xe0\x04\x84\xc7\xdb\xed\x79\x29\xd0\xe8\x28\xd8\x9f\x53\x21\xda\xa0\x67\xd6\xb4\xbb\xdd\xc6\x40\x03\x05\x09\x94\x79\xb8\x3f\x6e\xf1\x6a\x75\x6b\xe5\x2e\x48\x00\xc1\x52\x4c\x96\x4c\xe4\x93\xe8\xfa\xdb\xce\xff\x70\x2c\xdc\xaf\xa0\x2c\x0e\xff\x16\x33\x38\x69\x38\x86\x2b\xb6\x96\xef\x8f\x77\x4d\xcb\x69\xe0\x30\x27\xc3\x73\xde\x2f\x5f\x0a\x5b\x4c\xe8\x06\x25\x1d\x77\x54\x3b\x3b\x6b\x84\x9b\x71\x99\x29\x30\x2c\x50\x51\x71\x0d\xbb\x56\x7b\x58\xfb\xe3\x9e\x3a\x4e\x8e\x2a\x97\xb5\x7d\xc0\x71\xa5\xd1\x4e\x81\x13\x0e\xa1\x85\xac\x66\xa9\xc1\x39\x81\x84\xa4\x5e\x04\xc2\xdd\xa3\xbf\x54\x44\x11\x22\xcc\x71\xa5\x33\x2d\x8f\x8d\x39\xb9\x67\x03\x6b\x92\x94\x55\x01\xb8\x41\x9d\xe1\x2a\x23\x60\xe3\xdf\xd7\x41\x1d\xb2\x2e\xec\x7a\x37\x3c\xd7\x70\xf2\x42\x32\x4c\x48\x66\x2d\x83\x9d\x2d\x7c\xe3\xc0\x9f\x06\x6f\xaa\xf7\x56\xd7\xa9\x0a\xde\xc3\xf3\xad\xb9\xa0\x07\x8a\x4a\xa1\xee\xf7\xe5\x96\xd6\x3c\x34\xf9\xd5\x7d\xf1\xdf\x81\x09\x3b\x01\x30\x1d\x84\xe3\xc3\x7f\x8f\x51\x68\xfd\xd9\xed\x86\xf6\x4a\xa8\xfe\x5f\x5d\x09\x5b\x8b\x6e\x9c\xe6\x94\x73\xa1\x65\xf8\xde\x7a\x8f\xd0\x84\xa8\x54\x0b\x7a\xed\xbf\xb2\xc1\xf1\x61\xb7\xd9\xbd\x46\xe9\xe7\x3f\x01\x00\x00\xff\xff\xe4\x62\x1c\xe8\xca\x07\x00\x00" +var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\xcd\x6e\xd3\x40\x10\xbe\xe7\x29\xa6\x39\x14\x5b\x6a\x5d\x09\x6e\x51\x4b\xd5\x36\x02\x7a\xa1\x55\x0b\xdc\x27\xde\x71\xbc\x60\xef\x58\xbb\xe3\x94\x82\xfa\xee\xc8\x6b\xaf\x1b\xc7\x86\x46\x08\x7c\x49\x6c\x8f\xbf\xfd\x7e\x66\x76\x75\x59\xb1\x15\x78\x57\xf0\xc3\xbd\xe0\x37\x6d\xd6\x57\x5c\x14\x94\x8a\x66\x03\x99\xe5\x12\xe6\x93\xef\xe6\xb3\xd9\xc9\x09\x7c\xb2\x68\x5c\x46\xd6\x01\xc2\x47\x56\xb4\xa4\x82\xd6\x28\x6c\x81\x57\x5f\x29\x95\x16\x01\x0d\x60\x2d\x39\x5b\xfd\xc3\x97\xa6\x29\x73\x6d\xa4\x01\x40\xa3\x00\x95\x72\x20\x39\xed\x20\x08\x03\x1a\x96\x9c\xac\xff\xa2\x36\xe2\xa0\xa3\x01\xcf\x3c\x1a\x10\xad\xc8\x88\xce\x34\x29\x58\x3d\x7a\x24\x61\xb8\x50\xca\x92\x73\xc9\x6c\x26\x0d\x49\xf4\xd5\x91\x61\x45\xd7\xcb\x05\xdc\x8b\xd5\x66\x7d\x04\x2a\x2c\xd7\x3c\xfc\x7c\x6d\xe4\xcd\xeb\x23\x10\x5e\x84\xcf\x63\xf8\x39\x03\x00\x28\xa8\xd5\x32\xf2\xe1\x8e\xb2\x85\x57\x17\x4d\xda\x94\x3c\xff\xbd\x79\x30\x64\x63\x38\x9c\xae\x1b\x3d\xe9\x97\x15\x1e\xbd\xbb\xc2\x6a\xb1\x3f\x90\x47\xaa\x2c\x55\x68\x29\xea\xac\xec\x38\x5f\xb2\xb5\xfc\xf0\x05\x8b\x9a\x62\x38\xbc\x68\xdf\x05\xcd\xcd\xd5\x64\x9c\x53\x08\xa0\xf1\x55\xba\xc8\x27\x12\xeb\x32\x17\x86\xb2\x76\x02\x39\x6e\x08\x10\x36\x58\x68\x35\x91\x1c\x68\x03\x6c\x15\xf9\xa4\x2d\xa5\xa4\x37\x34\x06\x4d\x7a\x2a\x3a\x83\xe8\x60\x5a\xb3\x62\x72\x1d\xf9\x0f\xb8\xa1\x51\x41\x84\x6d\x9a\x0b\x10\x8e\xb7\xe5\x79\x67\xd0\xe8\x34\x9a\x2f\xc9\x89\x36\xe8\x99\x05\xb9\xdb\x32\x26\x04\x38\x12\xa8\xab\x64\x1e\xf7\x78\x4f\xb3\x6d\xe7\xde\x93\x00\x82\xa5\x8c\x2c\x99\xd4\x77\x65\xa3\x6f\x7b\x16\xa6\x63\x6f\x2e\x47\x45\x96\xfc\xae\xe5\xe0\x2c\x70\x4c\x9c\xb0\xc5\x35\x25\x2b\x1f\xe5\xe9\xff\x68\xc5\xb7\x51\xc3\x63\x31\xbd\x49\x8c\xcb\xef\x5b\x46\xb7\x28\x79\x3c\x70\xfa\xfc\x3c\x98\x7d\xc5\x75\xa1\xc0\xb0\x40\x4b\x7b\xd7\x26\x1c\x1b\xd3\xb4\x4b\xe3\x5e\x65\x75\x89\xf6\x11\x6a\x47\xf6\x95\x0b\x36\xcc\xe3\x91\xf3\x4d\xf1\x6d\xbd\x2a\x74\xda\xb5\x06\x70\xd6\xfa\xbf\x57\x33\x0b\x27\xd0\x43\xb6\x73\x18\x70\xce\x60\x4d\xd2\xdd\x44\xc2\xc3\xa5\x2f\x83\xa0\x14\x2b\x5c\xe9\x42\xcb\x63\x08\xbe\xf2\x6c\xa0\x24\xc9\x59\x39\xc0\x0d\xea\x02\x57\x05\x01\xb7\xd2\xba\x21\x98\x6a\x8b\x64\xd8\x17\xd3\x7b\x02\x9c\x3d\x93\x4c\xfa\xe5\x35\xb9\x41\x0a\xa1\x53\xf6\x4f\x7f\xcf\xc2\xd6\xec\xbf\x89\x1d\xcb\x17\x63\x0f\xde\x0c\x22\xdf\x1a\x39\xfa\x4e\x69\x2d\x34\xdc\xba\xee\xa8\xe4\xa9\x4d\xa5\x3d\x96\x5e\x9c\xc5\x64\x90\xbf\x19\x20\x9c\x1e\xff\x79\x42\x13\xeb\xd7\xee\x3f\xe8\x4f\x9e\xf6\x77\xe7\xe4\xd9\xba\x19\x76\xd3\x92\x2a\x76\x5a\xa6\x8f\xc7\x7f\xd1\x33\x09\x2a\xd5\x83\xde\xf8\x0d\x3c\x3a\x3d\x1e\x8a\x3d\x08\x4e\x3f\xfd\x0a\x00\x00\xff\xff\x54\xf8\x55\x3e\x2e\x08\x00\x00" func stakingcollectionTransfer_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -5780,11 +5800,11 @@ func stakingcollectionTransfer_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/transfer_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xff, 0x7, 0xf, 0xbf, 0x6b, 0x6b, 0x4f, 0xdf, 0xea, 0x50, 0x55, 0xed, 0xb8, 0x6b, 0x3a, 0x3b, 0xeb, 0xff, 0x95, 0xda, 0x97, 0x68, 0x16, 0xce, 0x1e, 0xbb, 0x3e, 0x85, 0x63, 0xa5, 0x36, 0x63}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x83, 0xec, 0x8c, 0x84, 0x70, 0xc9, 0x5e, 0xfc, 0xb9, 0xf3, 0x21, 0x99, 0x5d, 0x9a, 0x65, 0x6a, 0xfc, 0xcb, 0xc8, 0x4f, 0x4d, 0x79, 0x9d, 0x9, 0x43, 0xed, 0x77, 0xec, 0xd9, 0x16, 0x2c, 0x33}} return a, nil } -var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5d\x4f\xdb\x4a\x10\x7d\xcf\xaf\x18\x78\xb8\x72\x24\x30\xf7\x39\x22\xa0\xdc\x84\x4b\xa3\x52\x40\x84\xb7\xaa\x0f\x13\xef\x38\xde\xd6\xd9\xb1\x76\xc7\xa1\x14\xf1\xdf\xab\xf5\xda\xf9\xc0\x6e\x13\x24\xf2\x12\xd9\x9e\x3d\x73\xe6\x9c\xb3\xbb\x7a\x59\xb0\x15\xf8\x3f\xe7\xa7\x99\xe0\x0f\x6d\x16\x63\xce\x73\x4a\x44\xb3\x81\xd4\xf2\x12\xfe\xfd\x39\x7b\x1c\x7d\x9e\xde\x5e\x8f\xef\x6e\x6e\xae\xc6\x8f\xd3\xbb\xdb\xd1\x64\xf2\x70\x35\x9b\xf5\x7a\x67\x67\xf0\x68\xd1\xb8\x94\xac\x03\x84\x5b\x56\xe4\x51\xc8\x02\xcf\xbf\x53\x22\x01\x01\x0d\x60\x29\x19\x5b\xfd\xab\xaa\x4b\x12\xe6\xd2\x88\x5f\x8d\x46\x01\x2a\xe5\x40\x32\xda\x5e\x2e\x0c\x68\x58\x32\xb2\x55\x79\x69\xc4\x41\xcd\x0f\x36\x04\x3d\x82\x56\x64\x44\xa7\x9a\x14\xcc\x9f\x2b\x18\x61\x18\x29\x65\xc9\xb9\xb8\xd7\x13\x4f\x0f\xab\xea\xc8\xb0\xa2\xe9\x64\x00\x33\xb1\xda\x2c\x4e\x40\x78\xd0\x54\xf6\xe1\xa5\x07\x00\x90\x53\xe0\xdc\xd2\xe2\x81\xd2\x01\xfc\xd3\x29\x53\xdc\x7a\xb3\x86\x12\x6e\x7d\x1b\x63\x71\x38\xd0\xcb\x81\x75\xf7\xe5\x3c\xd7\xc9\x6b\xaf\x6a\x5c\x58\x2a\xd0\x52\x54\x0b\x37\x80\x51\x29\xd9\x28\x3c\x34\x73\xfa\x9f\x37\x2f\xa3\x46\x5f\x2f\x9b\xd4\x5e\xbe\x75\xa3\x36\x53\x18\x96\xa5\x13\xc8\x70\x45\x80\xb0\xc2\x5c\xab\x0e\x57\x40\x1b\x60\xab\x82\x8b\x96\x12\xd2\x2b\x7a\x83\x18\xaf\x49\xe8\x14\xa2\xa3\xee\x29\x15\x93\xab\x69\x7f\xc2\x15\xb5\x0a\x22\x0c\xde\x0d\x40\xb8\xbf\x3d\x58\x25\x02\x1a\x9d\x44\xc7\x13\x72\xa2\x0d\x56\xb4\x9a\x41\xb7\x67\xe8\x60\xef\x48\xa0\x2c\xe2\xe3\xfe\x1a\xaf\xd6\xb5\xd6\xec\x9a\x04\x10\x2c\xa5\x64\xc9\x24\x55\xdc\xfc\x70\xdb\x09\xef\x0e\x84\xff\x39\xca\xd3\xf8\x4f\x01\x83\x61\xc3\x31\x9e\xb3\xb5\xfc\x74\x7e\x68\x4e\x2e\x22\x8f\x39\xe8\xde\xc6\xed\xf2\x99\xb0\xc5\x05\xdd\xa3\x64\xfd\x1d\xd5\x2e\x2f\x1b\xe1\xc6\x5c\xe6\x0a\x0c\x0b\x04\x2a\x7e\x60\x3f\x6a\x0b\xeb\xb8\xdf\x52\xc7\xcb\x11\x12\x59\xdb\x07\x9c\x06\x8d\xf6\x47\x4d\x38\x86\x35\x5e\xd8\x42\x0d\xc8\x10\x16\x24\xf5\x43\x24\xbc\xdb\xf7\xbf\xc0\x12\x21\xc1\x02\xe7\x3a\xd7\xf2\xdc\x38\x53\x54\x54\x60\x49\x92\xb1\x72\x80\x2b\xd4\x39\xce\x73\x02\x36\xd5\xf7\x3a\xa2\x5d\xbe\xc5\xbb\xc6\x75\x6f\x67\x18\x6e\x48\xc6\x0b\x92\xf1\x9a\xc1\xc1\xfe\xbd\x73\x9f\x5f\x44\xef\xaa\xaf\x7c\xae\x23\x15\x7d\xa8\xe1\xde\xa0\x25\x26\x99\x36\x54\x0b\x30\x35\x29\xc3\xf0\xef\x39\xf7\x22\x7d\xd9\x59\xe5\xa2\xfe\xd7\x70\x3a\x7f\xdb\x4b\x6f\xb1\xe9\xb9\x0e\x94\xf6\x5d\x53\x0e\x69\x72\x05\x25\xe1\x42\xf0\x90\x30\x9d\xbc\x89\xe8\x03\x2d\xb9\x75\x22\x85\x9b\x6a\xef\x46\x8e\x77\x46\x37\x9b\xe5\xe7\xa7\x7b\x66\xb6\x55\x57\xdf\x70\x7d\x0f\x85\xff\x5d\x72\x13\x2a\xd8\x69\xe9\xb8\x0f\x3f\x22\xaa\x31\x2a\xe5\x51\xef\xaa\x03\x3d\x3a\x3f\xdd\x1a\xe1\xe8\xa4\xc3\xca\x41\xc7\xbb\x90\xa0\xd7\xde\xeb\xef\x00\x00\x00\xff\xff\x96\xaa\xe3\x77\x3c\x08\x00\x00" +var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x4f\x53\xdb\x3a\x10\xbf\xe7\x53\x2c\x39\xf0\xec\x19\x30\xf7\x0c\x79\x0c\x90\x79\xef\x71\x78\x85\x81\x4e\x2f\x9d\x1e\x36\xd6\x3a\x56\xeb\x68\x3d\xd2\x3a\x0c\xed\xf0\xdd\x3b\xb2\xec\x24\x8e\xd5\x86\x43\xf1\x05\x62\xad\x76\x7f\xff\x2c\xe9\x75\xcd\x56\xe0\x9f\x8a\x9f\x9f\x04\xbf\x69\xb3\xba\xe5\xaa\xa2\x5c\x34\x1b\x28\x2c\xaf\x61\x1a\x5d\x9b\x4e\x26\x17\x17\xf0\xd1\xa2\x71\x05\x59\x07\x08\x1f\x58\x91\x2f\x23\x0b\xbc\xfc\x4a\xb9\x84\xed\x68\x00\x1b\x29\xd9\xea\xef\x6d\x5d\x9e\x33\x37\x46\xfc\x6e\x34\x0a\x50\x29\x07\x52\xd2\xfe\x76\x61\x40\xc3\x52\x92\x6d\xcb\x1b\x23\x0e\x3a\x00\xb0\x43\xe0\x3b\x68\x45\x46\x74\xa1\x49\xc1\xf2\xa5\x6d\x23\x0c\xd7\x4a\x59\x72\x2e\x9b\x4c\xc4\xc3\xc3\xb6\x3a\x31\xac\xe8\x6e\x31\x83\x27\xb1\xda\xac\xce\x40\x78\xd6\x57\xa6\xf0\x63\x02\x00\x50\x51\xc0\x3c\x22\xfb\x48\xc5\xac\x65\x91\x44\xb5\xc8\x76\xff\xde\x3f\x1b\xb2\x29\x9c\xc6\xeb\x46\x6f\xb6\x63\x85\x47\x6b\xb7\x58\xcf\xde\xde\xa8\xed\x54\x5b\xaa\xd1\x52\xd2\xa9\xd6\x61\xbe\x61\x6b\xf9\xf9\x13\x56\x0d\xa5\x70\x7a\x1d\xd6\x7a\xce\xfe\xf1\x46\x96\xd4\x6b\xed\x25\x94\xce\xd7\x43\x67\x3a\x63\x85\x61\xdd\x38\x81\x12\x37\x04\x08\x1b\xac\xb4\x8a\x38\x04\xda\x00\x5b\x15\x1c\xb5\x94\x93\xde\xd0\x41\xc7\x6c\x0b\x42\x17\x90\x9c\xc4\xd9\x2a\x26\xd7\xc1\xfe\x0f\x37\x34\x2a\x48\x30\xf8\x38\x03\xe1\x74\x9f\x58\xab\x09\x1a\x9d\x27\xd3\x05\x39\xd1\x06\x5b\x58\x3d\xd1\x7d\x0e\x11\xf4\x8e\x04\x9a\x3a\x9b\xa6\xdb\x7e\xaf\x93\x7d\xcd\xfe\x25\x01\x04\x4b\x05\x59\x32\x79\x1b\x3d\x4f\x6e\x3f\xed\x71\xc3\xfd\xe3\xa8\x2a\xb2\x5f\x85\x0d\xe6\x3d\xc6\xcc\x09\x5b\x5c\x51\xb6\x6c\x4d\xbc\x7c\x8f\x10\xfe\x9d\x78\x1c\xb3\xf8\x19\x30\x2e\x7f\x0a\x88\x1e\x50\xca\x74\xa0\xf4\xd5\x55\x2f\xf6\x2d\x37\x95\x02\xc3\x02\x01\xf6\xa1\x4c\x38\x16\xc6\x67\xc5\xab\x57\x5b\xbd\x46\xfb\x02\x8d\x23\xfb\x97\xeb\x65\x98\xa6\x23\xe5\x7d\xf1\x43\xb3\xac\x74\xde\x45\x03\xb8\x08\xfa\x1f\x8f\xb1\x70\x06\xdb\x7e\xe1\xf3\xeb\x9b\xcc\x61\x45\xd2\xfd\x48\x84\x87\x73\x6f\x7a\x36\x39\xd6\xb8\xd4\x95\x96\x97\xde\xf5\xba\x85\x02\x6b\x92\x92\x95\x03\xdc\xa0\xae\x70\x59\x11\x70\xe0\xd5\xc5\x3f\x96\x89\x6c\x18\x8a\xf8\x51\x00\xf3\x1d\xc8\x6c\x3b\x5e\x93\x1b\x58\xd0\xc7\xe4\xed\xd6\xbf\xb1\x30\x28\xfd\x4e\x9e\xf7\xda\xc4\xfd\xf6\xfe\xac\x31\x2f\xb5\xa1\x8e\xff\x9d\x29\x18\xe6\xbf\xff\x84\xb2\x15\xc9\xff\x83\x5d\x2e\x49\x3f\x87\x4b\xe0\xcb\x51\x0a\xab\xdd\xcc\x6d\x9e\xb4\x9f\x5a\x70\x08\x93\xab\x29\x0f\xf7\x8e\x6f\x09\x77\x8b\x83\x84\x3e\xd2\x9a\x47\x87\x5d\xb8\x10\x8f\x9e\x11\xd9\x80\xba\xd9\x6d\xbf\x3c\x3f\xc2\xd9\xb6\x53\xfd\xc0\xed\x75\x17\xfe\x0e\xc1\x2d\xa8\x66\xa7\x25\x72\xed\xfe\x89\xa4\x66\xa8\x94\xef\x7a\xdf\xde\x15\xc9\xe5\xf9\x1e\x85\x93\xb3\x88\x95\xb3\xc8\xbb\x90\xb2\xd7\xc9\xeb\xcf\x00\x00\x00\xff\xff\x2d\x4d\x77\x9d\xa0\x08\x00\x00" func stakingcollectionTransfer_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5800,11 +5820,11 @@ func stakingcollectionTransfer_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/transfer_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0x67, 0x83, 0xba, 0x26, 0xad, 0xc, 0x4e, 0xfe, 0xb7, 0x94, 0x11, 0x42, 0x42, 0xdc, 0x83, 0x93, 0x25, 0x10, 0x37, 0x21, 0xa1, 0x8f, 0xec, 0x4e, 0xf6, 0xfb, 0xed, 0x96, 0x5e, 0x71, 0x29}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x5d, 0xe5, 0x5c, 0x17, 0xee, 0x42, 0xc6, 0x72, 0x3f, 0x5d, 0x21, 0xbf, 0xd2, 0x37, 0x7a, 0x97, 0x58, 0x8a, 0x4, 0x83, 0x39, 0x9c, 0x7b, 0x7e, 0x8e, 0xfa, 0xed, 0xbe, 0x18, 0x27, 0xe}} return a, nil } -var _stakingcollectionUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xc1\x6e\xc2\x30\x0c\x86\xef\x7d\x8a\x5f\x1c\xa6\x72\x29\x3b\x57\xdb\x50\x55\xd8\x84\x56\xc1\x44\x79\x81\xac\xb8\x25\x22\xc4\x5d\xe2\x0a\xa4\x89\x77\x9f\x4a\x80\x1d\xe0\x80\x0f\xad\x1c\xd9\xbf\x3f\xfb\xd7\xbb\x96\x9d\xe0\xdd\xf0\xbe\x14\xb5\xd5\xb6\xc9\xd9\x18\xaa\x44\xb3\x45\xed\x78\x87\xe7\x43\xb9\xca\x3e\x67\xf3\x8f\x7c\x51\x14\xd3\x7c\x35\x5b\xcc\xb3\xc9\x64\x39\x2d\xcb\x28\x1a\x8d\x46\x58\xd2\x4f\x47\x5e\x3c\x84\xd1\x59\x2f\x6a\x4b\xc8\x8a\x02\xc2\x5b\xb2\x1e\x35\x3b\xc8\x86\xe0\x5b\xaa\x74\xad\x69\x0d\xcb\x6b\x02\x3b\xac\xc9\x50\xa3\x84\x1d\xb4\x0d\x25\x01\x00\xd5\x95\x20\x8a\xc4\x29\xeb\xd5\x29\x89\xfb\xc6\xd9\x24\x45\x29\x4e\xdb\x66\x88\xdf\x08\x00\x4e\x1f\x43\x72\x69\xff\xe7\x5f\x52\x9d\xe2\xe9\xee\x6a\xc9\xcd\x4b\x74\xd2\x69\x1d\xb5\xca\x51\xac\xaa\x8a\x3b\x2b\x29\xb2\x4e\x36\x59\x48\x2e\x03\xfb\xf0\x64\xea\xe4\xde\x40\xbc\xe2\xdc\x9b\x7c\xb3\x73\xbc\x7f\x79\x14\xe0\x2d\xee\xcf\x9d\xde\xb7\xe2\xb6\xbc\x14\x76\xaa\xa1\x2f\x25\x9b\xe1\x15\xab\x8f\xf1\x18\xad\xb2\xba\x8a\x07\x39\x77\xa6\x3f\xb7\x20\xa0\xc0\x51\xdd\xbb\x74\xa3\x35\x08\x0a\xc7\x70\x03\x3a\x50\xd5\x09\x3d\xb2\x6d\x72\x36\x3c\x33\xe6\xea\x4e\xf8\x5f\x14\x8f\xd1\x5f\x00\x00\x00\xff\xff\x92\xff\xa2\x70\x62\x02\x00\x00" +var _stakingcollectionUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\x4d\xaf\xd3\x30\x10\xbc\xe7\x57\x8c\x72\x78\x24\x97\xf4\x5e\x01\x4f\xa5\x08\x09\xa9\x12\xa8\x95\xb8\x1b\x77\x93\x5a\x75\xbd\x61\xbd\x56\x41\xa8\xff\x1d\x25\x4e\xda\x43\x73\xe0\xf2\x7c\xc8\x87\xf7\x63\x66\x77\xc6\x5d\x7a\x16\xc5\x17\xcf\xd7\x83\x9a\xb3\x0b\xdd\x96\xbd\x27\xab\x8e\x03\x5a\xe1\x0b\xca\xc5\x58\x59\x14\xab\xd5\x0a\x7b\xfa\x95\x28\x6a\x84\x32\x52\x88\x6a\xce\x84\xcd\x6e\x07\xe5\x33\x85\x88\x96\x05\x7a\x22\xc4\x9e\xac\x6b\x1d\x1d\x11\xf8\x48\x60\xc1\x91\x3c\x75\x46\x59\xe0\x42\x4e\xc9\x08\xb0\x77\x88\xa2\x50\x31\x21\x9a\xf1\xa7\x1a\x0a\xbf\x7e\x5e\xe3\xa0\xe2\x42\x57\xe3\x6f\x01\x00\xe3\xc3\x93\xce\xe5\x0f\x82\x7b\x6a\xd7\x30\x49\x4f\xd5\x22\xff\xe6\xf1\xf9\xed\x1a\x48\x6a\xbc\x2c\xe7\x3d\xdd\x14\x23\x66\x2f\xd4\x1b\xa1\xca\x58\xcb\x29\xe8\x04\xf5\x89\x45\xf8\xfa\xc3\xf8\x44\x35\x5e\x36\x39\x36\x73\x1d\x4e\x24\xdf\x36\x4b\x5c\xf1\x01\x53\xab\x26\x2a\x8b\xe9\xa8\xf9\x39\x36\x7b\xff\x16\x33\x7c\xac\x06\x69\xd7\xcb\xb2\x3f\xa7\x1f\x32\xa3\xef\x46\x4f\xf5\x7d\x94\xe1\xbc\xbe\xa2\x37\xc1\xd9\xaa\xdc\x72\xf2\x83\xba\x8a\x4c\x1b\x06\x42\x2d\x09\x05\x4b\x83\x39\x0c\x9e\xed\x35\x29\xdf\x8b\xbb\x18\xf9\x83\x14\x49\xde\xc5\x79\x0d\x65\x46\xba\xe5\x75\xd3\x6f\xb2\x49\xe9\x7f\x36\xd9\x4c\x3e\xdc\x78\x7f\x37\x4d\x7e\xcf\x1d\x6f\xc5\xbf\x00\x00\x00\xff\xff\x0c\xba\x48\x82\xf6\x02\x00\x00" func stakingcollectionUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -5820,11 +5840,11 @@ func stakingcollectionUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0xba, 0xb4, 0x65, 0xa5, 0xa4, 0x6, 0xf6, 0x67, 0x0, 0x75, 0x3a, 0x4f, 0x78, 0x89, 0xab, 0x9a, 0x3c, 0x83, 0xba, 0x1c, 0xf5, 0xe8, 0xae, 0xe7, 0x92, 0xc8, 0xa, 0xea, 0x9e, 0xd7, 0xc1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7c, 0xca, 0x8a, 0xc8, 0xf3, 0x52, 0x88, 0x5d, 0x94, 0xa8, 0xb5, 0xc9, 0x3b, 0x48, 0x3e, 0x46, 0x50, 0xcb, 0xf4, 0x7d, 0x65, 0x39, 0xd5, 0xb2, 0x99, 0xbf, 0xc6, 0xa4, 0xd7, 0xaa, 0x4e, 0xa}} return a, nil } -var _stakingcollectionUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x51\x5d\x8b\xe2\x40\x10\x7c\x9f\x5f\x51\xf8\x70\x44\x38\xe2\x3d\x87\xbb\x93\x10\xdd\x45\x56\x74\x31\xfe\x81\xd9\xa4\x93\x0c\x1b\xa7\xc3\x4c\x87\x08\x8b\xff\x7d\x49\xa2\x2e\xbb\xfa\x60\x3f\xe4\xa3\x67\xba\xaa\xba\xca\x1c\x1a\x76\x82\xa7\x9a\xbb\x54\xf4\xbb\xb1\x65\xc2\x75\x4d\x99\x18\xb6\x28\x1c\x1f\xf0\xe7\x98\xee\xe3\x97\xd5\xe6\x39\xd9\xae\xd7\xcb\x64\xbf\xda\x6e\xe2\xc5\x62\xb7\x4c\x53\xa5\x66\xb3\x19\x92\x4a\xdb\x92\x3c\xa4\x22\x58\x92\x8e\x5d\x8f\x02\x9d\xe7\x8e\xbc\x47\xc1\x6e\x38\xf2\x0d\x65\xa6\x30\x94\xc3\x72\x4e\x4a\x89\xd3\xd6\xeb\x81\x27\xe8\x3b\xab\x45\x84\x54\x9c\xb1\xe5\x6f\x58\xea\xe2\x71\xfc\xd2\x9b\xe2\x43\x01\xc0\xf0\xa8\x49\xe0\x7f\x8a\xdd\x51\x11\xe1\xd7\xdd\x3d\xc2\x9b\x8e\x1a\x70\x1a\x47\x8d\x76\x14\xe8\x2c\xe3\xd6\x4a\x84\xb8\x95\x2a\x1e\x7f\x2e\x84\x7d\x79\xaa\x8b\xf0\x1e\x21\xfe\xe1\x3c\x1b\xbe\xb1\x73\xdc\xfd\x7d\x54\xc0\xff\xa0\xf7\x36\xba\xef\xfb\xed\xf5\x54\xd8\xe9\x92\x5e\xb5\x54\xd3\xab\xac\xbe\xe6\x73\x34\xda\x9a\x2c\x98\x24\xdc\xd6\xbd\xb7\x82\x51\x0a\x1c\x15\x10\xc6\x0d\xd6\x64\x44\x38\x8d\x1e\xd0\x91\xb2\x56\xe8\x91\x6d\xc3\xb6\xc9\xb5\xd0\xe6\x9a\xf1\x39\xa3\x6b\x7c\xe3\xfb\x7b\x7c\x5f\xdf\x17\xda\x93\xfa\x0c\x00\x00\xff\xff\xa5\x85\x44\xd5\x74\x02\x00\x00" +var _stakingcollectionUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x4e\xe3\x40\x0c\xbd\xe7\x2b\x9e\x72\xe8\x26\xd2\x2a\xbd\x57\xbb\x54\xa5\x08\x89\x0b\x20\x2a\x71\x37\x89\x93\x8c\x48\x67\x22\x8f\xa3\x80\x50\xff\x1d\x25\xd3\xb4\x82\xe6\xc0\x05\x1f\x12\xcb\xf6\xf8\x3d\xdb\xcf\xec\x5b\x27\x8a\xdb\xc6\xf5\x3b\xa5\x57\x63\xab\xad\x6b\x1a\xce\xd5\x38\x8b\x52\xdc\x1e\xf1\x6c\x2e\x8e\xa2\xe5\x72\x89\x6d\x4d\xb6\x62\x0f\xad\x19\x96\xb5\x77\x32\x94\x81\x8a\x42\xd8\x7b\x94\x4e\xc6\x94\x6f\x39\x37\xa5\xe1\x02\xd6\x15\x1c\x45\x2a\x64\x3d\x8d\x8d\x92\x21\x72\x77\xb3\xc2\x4e\xc5\xd8\xea\x2f\x2c\xf7\x9b\xf0\x7c\x8a\xa5\xf8\x88\x00\x60\xfc\x34\xac\xf0\xdf\xd9\x3c\x71\xb9\x02\x75\x5a\x27\xb3\x64\xb3\xb3\xfb\xd0\x5b\x96\x14\x8b\xf9\xba\x8b\x48\x34\x62\xb6\xc2\x2d\x09\x27\x94\xe7\xae\xb3\x7a\x84\xba\x76\x22\xae\x7f\xa6\xa6\xe3\x14\x8b\x4d\xc8\x4d\x5c\x07\xf3\xdc\x94\xd9\x1c\x57\xfc\xc7\xb1\x55\xe6\xd5\x09\x55\x9c\xbd\x8c\xcd\xfe\xfd\xc6\x0c\x57\xc9\x70\xc7\xd5\xfc\x8d\x2f\xcb\x77\x81\xd1\x23\x69\x9d\x9e\x46\x19\x6c\xbd\x46\x4b\xd6\xe4\x49\xbc\x75\x5d\x33\x9c\x52\x11\x68\x83\x20\x5c\xb2\xb0\xcd\x19\xea\x40\xb8\xd4\x92\xb1\xa3\x12\x5a\x31\x7b\x92\x77\x74\x9e\xe5\x8f\x9f\xd6\x10\x07\xa4\x43\x58\x37\xbf\x71\xde\x29\xff\x64\x93\x59\xd7\x16\xa4\x7c\x7f\x92\xde\x51\x3a\x27\x55\x85\xff\x57\x55\x9d\xfd\x09\xf6\x10\x7d\x06\x00\x00\xff\xff\xf5\xc0\xe1\x03\x08\x03\x00\x00" func stakingcollectionUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -5840,11 +5860,11 @@ func stakingcollectionUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdd, 0xff, 0x7b, 0x7f, 0xd9, 0x90, 0x89, 0x51, 0x97, 0x22, 0x0, 0x42, 0x8d, 0x15, 0xe0, 0x7, 0xb8, 0x63, 0x93, 0x9e, 0x61, 0xf, 0x72, 0x10, 0xf7, 0xf8, 0x90, 0x99, 0xf9, 0x47, 0x7a, 0x14}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcf, 0x19, 0xee, 0xbd, 0xf6, 0xbe, 0xd2, 0x9d, 0x85, 0x71, 0xd0, 0xad, 0xf4, 0xa7, 0xf2, 0x23, 0xe5, 0xd4, 0x8f, 0xd5, 0xa8, 0x89, 0x1f, 0x90, 0x22, 0x4a, 0x2d, 0xe3, 0xb8, 0xeb, 0x86, 0xf1}} return a, nil } -var _stakingcollectionWithdraw_from_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x8e\xd3\x40\x0c\xbd\xe7\x2b\xac\x3d\xa0\xac\x84\x52\x0e\x88\x43\x04\xac\xa2\xb4\x45\x15\xa5\x45\x4d\xf9\x00\x33\x71\x9a\x51\x27\xe3\x30\xf1\x90\x22\xd4\x7f\x47\xc9\x34\x45\xda\xf6\x50\x1f\x62\x65\x64\x3f\x3f\xbf\x67\xdd\xb4\xec\x04\x96\x86\xfb\x42\xf0\xa8\xed\x21\x67\x63\x48\x89\x66\x0b\x95\xe3\x06\xde\x9d\x8a\x7d\xf6\x75\xb5\xf9\x92\x6f\xd7\xeb\x45\xbe\x5f\x6d\x37\xd9\x7c\xbe\x5b\x14\x45\x14\xcd\x66\x33\xd8\xd1\x2f\x4f\x9d\x80\x30\xf4\x5a\xea\xd2\x61\x0f\xc2\x47\xb2\x5d\xe8\x97\x9a\xa0\x41\x55\x6b\x4b\x80\x4a\xb1\xb7\x32\xf6\xed\x6b\x9a\xea\xd0\x11\xa0\x17\x6e\x50\xb4\x42\x63\xfe\x40\x49\x2d\x77\x5a\xa8\x1c\x60\x07\x04\x6f\x0d\xab\x23\x95\x13\x04\xfc\x46\x6f\x24\x8a\xc4\xa1\xed\x70\xa4\x1b\x5b\x2e\x69\x35\x4f\xa1\x10\xa7\xed\xe1\x2d\x60\x33\x54\xa6\xf0\x63\xa9\x4f\x1f\xde\x3f\xc3\xdf\x08\x00\x60\xfc\x18\x12\xe8\x5e\xef\xbb\xa3\x2a\x85\x37\x77\xa5\x48\x6e\x5e\xa2\x11\xa7\x75\xd4\xa2\xa3\xf8\xc2\x2a\x85\xcc\x4b\x9d\x85\x9f\x69\xe0\x10\x1d\x99\x2a\xb9\x37\x10\x3e\x4d\x1b\x25\x3f\xd9\x39\xee\x3f\x3e\x4a\xe0\x73\x3c\xc8\x9b\xde\xb7\xee\xb6\xbc\x10\x76\x78\xa0\xef\x28\xf5\xf3\x95\xd6\x10\x2f\x2f\xd0\xa2\xd5\x2a\x7e\xca\xd9\x9b\x12\x2c\x0b\x04\x2a\xe0\xa8\x1a\xf4\xbf\xc1\x7a\x0a\x08\xe7\xa0\x01\x9d\x48\x79\xa1\x47\xb6\x4d\xa6\x0b\x59\x3a\x6e\xbe\x85\xa3\xb8\xa8\x75\x75\x2f\xe4\xff\xee\x85\x3c\x4d\x3c\x47\xff\x02\x00\x00\xff\xff\xdb\xab\x20\x8d\xb2\x02\x00\x00" +var _stakingcollectionWithdraw_from_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xc1\x8e\xd4\x30\x0c\x86\xef\x7d\x0a\xab\x87\xa5\x95\x50\xe7\x82\x38\x54\xc0\x0a\x16\x8d\xc4\x01\x81\x76\x80\xbb\x49\xdd\x69\x34\x69\x5c\x1c\x87\xee\x0a\xed\xbb\xa3\x34\xd3\x5d\x89\xe9\x81\xcb\xe6\xd0\x54\x89\x63\xff\xbf\xfd\xd9\x71\x62\x51\xd8\x3b\x9e\x0f\x8a\x27\xeb\x8f\x37\xec\x1c\x19\xb5\xec\xa1\x17\x1e\xa1\xdc\xbc\x2b\x8b\x62\xb7\xdb\xc1\x2d\xfd\x8a\x14\x14\x94\x61\xb6\x3a\x74\x82\x33\x28\x9f\xc8\x87\xfc\x58\x07\x82\x11\xcd\x60\x3d\x01\x1a\xc3\xd1\xeb\xf2\xee\xdb\x40\x6b\x1c\x0a\x01\x46\xe5\x11\xd5\x1a\x74\xee\x1e\x3a\x9a\x38\x58\xa5\x2e\xa5\x4d\x19\xa2\x77\x6c\x4e\xd4\xad\x29\xe0\x37\x46\xa7\x45\xa1\x82\x3e\xe0\xa2\xa7\xf2\xdc\xd1\xa7\x8f\x2d\x1c\x54\xac\x3f\xbe\x04\x1c\x53\x64\x0b\xdf\xf7\xf6\xee\xf5\xab\x1a\xfe\x14\x00\x00\xcb\xc7\x91\x42\xf8\xd7\xd0\x2d\xf5\x6d\xd2\x31\x54\x9b\x7e\x9b\xa7\xdf\x2f\xb3\x27\xa9\xe1\x6a\x3b\xee\xe2\xa4\x58\x6a\x4e\x42\x13\x0a\x55\x67\x07\xe7\x52\x1f\x58\x84\xe7\x1f\xe8\x22\xd5\x70\xf5\x3e\xdf\xad\x5a\xd3\x0a\xe4\xfa\x66\x4b\x2b\xbc\x5d\x9b\xd1\x04\x65\xc1\x23\x35\x3f\x97\x64\x6f\x9e\xc3\xc3\xbb\x2a\x4d\xb3\xdd\xc6\xe4\x32\xfc\x90\x15\x7d\x45\x1d\xea\x47\x2b\x69\x5d\x5f\xc3\x84\xde\x9a\xaa\xbc\xe1\xe8\x3a\xf0\xac\x90\x65\x03\x82\x50\x4f\x42\xde\x24\x32\x00\xe1\x12\x47\xeb\x17\x1a\x26\xb1\x23\xca\x3d\xc4\x40\xf2\x22\xac\x6d\x28\x73\xa5\x87\xdc\x6e\xba\x23\x13\x95\xfe\xa7\x93\xcd\x0a\xee\x5e\x78\xfc\x9c\x59\x3d\x4f\xe2\x11\xaa\xbc\x3f\x41\x95\xf7\xb5\xe2\x43\xf1\x37\x00\x00\xff\xff\x3e\x13\xf0\x11\x46\x03\x00\x00" func stakingcollectionWithdraw_from_machine_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -5860,11 +5880,11 @@ func stakingcollectionWithdraw_from_machine_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_from_machine_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc7, 0x7c, 0xe3, 0xa9, 0xe3, 0x68, 0x1a, 0x64, 0x88, 0xe, 0xc6, 0xc4, 0xa4, 0x9b, 0x35, 0x9f, 0xa1, 0x43, 0xf2, 0x57, 0x79, 0xca, 0x6d, 0xa4, 0x6e, 0x57, 0xfe, 0xbe, 0x2f, 0x2e, 0x1f, 0xef}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x79, 0x73, 0xe2, 0xa4, 0xc3, 0x56, 0x8, 0x7c, 0xae, 0x27, 0x26, 0x4d, 0x17, 0x2d, 0xf2, 0xd5, 0xe4, 0x6e, 0x23, 0xa6, 0x6c, 0x17, 0xd, 0xf2, 0xe, 0x35, 0xdb, 0x65, 0x31, 0x32, 0xcb, 0x3c}} return a, nil } -var _stakingcollectionWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x8f\x1c\x8a\x03\xc6\x2e\x6d\xe9\x41\xb4\x35\xc2\x4e\x8a\x69\x48\x8a\xe5\xfc\x80\xad\x34\xb2\x16\xaf\x77\xd4\xd1\xa8\x72\x28\xf9\xef\x65\x25\xcb\x0e\xb5\x0f\xde\x83\x96\x5d\x46\xdf\xbc\xd9\xf7\xec\xae\x62\x51\xdc\x3b\x6e\x53\x35\x5b\xeb\x37\x73\x76\x8e\x32\xb5\xec\x51\x08\xef\xf0\x7e\x9f\xae\x93\x1f\xcb\xc7\xef\xf3\xa7\x87\x87\xbb\xf9\x7a\xf9\xf4\x98\x2c\x16\xab\xbb\x34\x8d\xa2\xe9\x74\x8a\x15\xfd\x6e\xa8\x56\x28\xa3\xb5\x5a\xe6\x62\x5a\x08\xb5\x46\x72\xca\xa1\xbc\x25\x5f\xa3\x60\x81\x96\x84\xba\xa2\xcc\x16\x96\x72\x78\xce\x09\x2c\xc8\xc9\xd1\xc6\x28\x0b\xac\xef\x4b\x7a\x15\xc8\x8e\x32\xba\x2e\xeb\x92\x06\x98\x11\x82\x69\x94\x77\x46\x6d\x66\x9c\x7b\x41\x4e\x15\xd7\x56\xbb\x7e\x1d\xa4\xf1\x8e\xb3\x2d\xe5\x30\x59\xc6\x8d\x57\xfc\x31\x8d\x53\x14\x56\x6a\x1d\x77\xbc\xc4\xe7\xa1\xd2\xc3\xf8\x17\x1c\x8a\xdf\xf0\x4f\x44\xeb\x0f\xcc\x4b\xc4\x28\x52\x31\xbe\x36\x9d\xce\x51\x98\x69\xb9\x88\x91\xaa\x58\xbf\x19\x9f\x66\x0b\x97\xcf\x4b\xaf\x1f\x3f\xcc\xc6\x30\xbb\xf0\x7f\x8c\xe7\x7b\xbb\xff\xfc\xe9\x16\x7f\x23\x00\xe8\x3e\x8e\x74\x98\xff\xe4\xc2\x8a\x8a\x18\xef\x2e\x1a\x34\x39\xbb\x89\x3a\x4e\x25\x54\x19\xa1\xd1\x41\x6b\x8c\xa4\xd1\x32\xe9\x0f\x43\xc3\xb0\x6a\x72\xc5\xe4\x52\x43\x7c\x1d\xe6\x9c\xfc\x62\x11\x6e\xbf\x5c\x2b\xe0\xdb\x28\x84\x26\xbe\x1c\xa8\xf3\xf2\x54\x59\xcc\x86\x7e\x1a\x2d\x6f\x8f\xb2\xc2\x9a\xcd\x50\x19\x6f\xb3\xd1\xcd\x9c\x1b\x17\xf2\xa2\xe8\xa5\x40\xa8\x08\x3e\x9f\xb1\x6e\x7a\xc2\x6b\xff\x06\xb4\xa7\xac\x51\xba\x66\xda\xc9\x90\xdb\xd5\x21\xb6\xeb\x2e\x08\x47\x3f\xfb\xfd\x3f\x3f\xdf\x1c\x4e\x9e\xf6\xfb\xa0\xe3\x35\xfa\x17\x00\x00\xff\xff\x64\xbf\x03\x75\x5e\x03\x00\x00" +var _stakingcollectionWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x8f\xd3\x3c\x10\xbe\xe7\x57\x3c\xea\x61\xdf\x56\xaa\x5a\xe9\x05\x71\xa8\x80\x6a\x59\xb4\xd2\x9e\x40\xed\x2e\xf7\xc1\x99\xb4\x56\x1d\x3b\x8c\x27\x64\x2b\xb4\xff\x1d\x39\x1f\xcd\x8a\xe6\xc0\x05\x1f\xea\xc6\x9e\x3c\x1f\x93\x67\x6c\x59\x05\x51\xdc\xbb\xd0\xec\x95\x4e\xd6\x1f\xee\x82\x73\x6c\xd4\x06\x8f\x42\x42\x89\xd9\xe4\xdd\x2c\xcb\xd6\xeb\x35\x76\xfc\xa3\xe6\xa8\xd0\x80\xc6\xea\x31\x17\x6a\x20\xdc\x90\xe4\x9c\x43\xc3\x89\x7d\x44\x11\x04\x7a\x64\xc4\x8a\x8d\x2d\x2c\xe7\xf0\x21\x67\x04\x41\xce\x8e\x0f\xa4\x41\x60\x7d\x57\xd2\xd1\xc0\x5c\x78\x5a\x96\xc7\x23\x0f\x60\x24\x0c\xaa\x35\x94\xa4\xd6\x90\x73\x67\xe4\x5c\x85\x68\xb5\xe5\x6b\x41\x6a\xef\x82\x39\x71\x0e\x32\x26\xd4\x5e\xf1\x93\x6a\xa7\x28\xac\x44\x5d\xb6\x78\xb7\x3e\x4f\x95\x1e\xe4\xcf\xe8\x8b\x5f\xe1\x8f\x88\xd6\xf7\x98\x53\x88\x59\xa6\x42\x3e\x52\xab\x73\x9e\x3c\x3d\x7c\xde\x60\xaf\x62\xfd\x61\x39\x7a\x4b\x87\x4f\x0f\x5e\xdf\xfc\xbf\x5d\x82\xca\xf4\xfe\x06\x4f\xf7\xf6\xf9\xdd\xdb\x05\x7e\x65\x00\xd0\xfe\x38\xd6\xc1\xff\xd8\xe6\x1d\x17\x9b\xe4\xf7\x38\x9f\xfc\x0a\xab\xf1\xef\x97\xc6\xb3\x2c\x70\x33\x5d\x77\x75\x92\xb5\x9c\x95\x70\x45\xc2\xf3\xde\x57\x4f\xf5\x29\x88\x84\xe6\x1b\xb9\x9a\x17\xb8\xb9\xed\xee\x06\xad\x69\x45\x76\xc5\x6a\x4a\x2b\x3e\x0c\x2d\x5a\x45\x0d\x42\x07\x5e\x7d\x6f\xc1\xde\xff\x0b\x0f\x1f\xe7\x29\xa0\x9b\xe9\xf0\x5e\x97\xef\x3b\x45\x5f\x49\x8f\x8b\x8b\x95\xb4\xb6\x5b\x54\xe4\xad\x99\xcf\xee\x42\xed\x52\x3c\x15\x9d\x6c\x10\x84\x0b\x16\xf6\x26\x25\x10\x84\xeb\x21\xe9\xa3\x5b\x89\x2d\x49\xce\xa8\x23\xcb\x7f\x71\x68\xc3\xac\x63\x7a\xe9\xda\xcd\xcf\x6c\x6a\xe5\xbf\xe9\xe4\x6a\x18\xa7\x5d\x3f\x4d\x8f\x6d\x3e\x2f\x31\xeb\xf6\x3f\x62\xf6\xea\x61\x8c\x5a\xb7\x0f\x3a\x5e\xb2\xdf\x01\x00\x00\xff\xff\xea\x2d\x23\xfe\xf2\x03\x00\x00" func stakingcollectionWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5880,11 +5900,11 @@ func stakingcollectionWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe6, 0x49, 0x8d, 0xd0, 0x5b, 0x42, 0x21, 0x6d, 0xfa, 0xef, 0x43, 0x36, 0x96, 0xc0, 0x98, 0x8f, 0x63, 0x76, 0xd0, 0x1a, 0xda, 0xbb, 0x68, 0x23, 0x3d, 0x88, 0x97, 0xea, 0xba, 0x59, 0x73, 0xd7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfb, 0x9a, 0xe1, 0x39, 0x28, 0x58, 0x61, 0xdc, 0x20, 0xc7, 0x14, 0x5c, 0xba, 0xb3, 0x84, 0xc9, 0x6a, 0x57, 0xb9, 0x13, 0x4f, 0x98, 0xa7, 0x23, 0xf, 0xc1, 0x35, 0x93, 0x60, 0xd1, 0x23, 0x6}} return a, nil } -var _stakingcollectionWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x8f\xda\x30\x10\x85\xef\xf9\x15\x4f\x7b\xa8\x58\x09\x41\xd5\x56\x3d\xa0\xb6\x28\x82\xdd\x0a\x75\xb5\x5b\x11\xf8\x01\xd3\x64\x42\x2c\x8c\x27\x75\xc6\x85\x55\xb5\xff\xbd\x72\x42\x60\x55\x38\xac\x0f\xb6\x6c\x8d\xbe\x79\xe3\xf7\xcc\xae\x16\xaf\xb8\xb7\xb2\xcf\x94\xb6\xc6\x6d\x66\x62\x2d\xe7\x6a\xc4\xa1\xf4\xb2\xc3\xfb\x43\xb6\x4a\x7f\x2c\x1e\xbf\xcf\x9e\x1e\x1e\xee\x66\xab\xc5\xd3\x63\x3a\x9f\x2f\xef\xb2\x2c\x49\xc6\xe3\x31\x96\xfc\x3b\x70\xa3\x50\xc1\xde\x68\x55\x78\xda\x23\xb8\x46\x69\xcb\x05\x54\xb6\xec\x1a\x94\xe2\xa1\x15\xa3\xa9\x39\x37\xa5\xe1\x02\x4e\x0a\x86\x78\x14\x6c\x79\x43\x2a\x1e\xc6\x75\x25\x9d\x0a\xe4\x27\x19\x6d\x97\x55\xc5\x3d\x8c\x3c\x83\x82\xca\x8e\xd4\xe4\x64\xed\x33\x0a\xae\xa5\x31\xda\xf6\x6b\x21\xc1\x59\xc9\x63\x7f\xca\x73\x09\x4e\xf1\x87\x82\x55\x94\xc6\x37\x3a\x6c\x79\xa9\x2b\x62\xa5\x03\xb9\x67\x1c\x8b\x5f\xf1\xcf\x44\xe3\x8e\xcc\xab\x44\x53\xc2\x28\x4c\x13\x2b\x3c\x27\x89\x7a\x72\x0d\xb5\xb2\x07\x71\xc4\xc5\x7c\x82\x4c\xbd\x71\x9b\xe1\x79\xd4\xf8\xb8\x5e\x38\xfd\xf8\x61\x3a\x04\xed\x22\x6e\x82\xf5\xbd\x39\x7c\xfe\x74\x8b\xbf\x09\x00\xb4\x9b\x65\xed\xbf\xe3\x6c\xca\x92\xcb\x09\xde\x5d\xf5\x6b\x74\xf1\x92\xb4\x9c\xda\x73\x4d\x9e\x07\x47\xe9\x13\xa4\x41\xab\xb4\xbb\xf4\x0d\xe3\x6a\xd8\x96\xa3\x6b\x0d\xf1\xb5\x1f\x7b\xf4\x4b\xbc\x97\xfd\x97\xb7\x0a\xf8\x36\x88\x19\x9a\x5c\xcf\xd7\x65\x79\xa6\xe2\x69\xc3\x3f\x49\xab\xdb\x93\xac\xb8\xa6\x53\xd4\xe4\x4c\x3e\xb8\x99\x49\xb0\x31\x3e\x8a\x4e\x0a\x3c\x97\xd1\xf6\x0b\xd6\x4d\x47\x78\xe9\xfe\x80\x0f\x9c\x07\xe5\xb7\x4c\x3b\xea\x63\xbc\x3e\xa6\x78\xd5\xe6\xe2\xe4\x67\x77\xfe\xe7\xe7\xab\xcb\xd9\xd3\xee\xec\x75\xbc\x24\xff\x02\x00\x00\xff\xff\x02\xba\xdf\x67\x6d\x03\x00\x00" +var _stakingcollectionWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\xcd\x6e\xdb\x3c\x10\xbc\xeb\x29\x06\x3e\xe4\xb3\x01\xc3\x06\xbe\x16\x3d\x18\x6d\x8d\x34\x45\x80\x9c\x5a\xc4\x71\xef\x5b\x6a\x65\x13\xa6\x49\x75\xb9\xac\x63\x14\x79\xf7\x82\xfa\xb1\x82\x5a\x87\x5e\xca\x83\x28\x91\x8b\x99\x9d\xd1\xac\x3d\xd6\x41\x14\xf7\x2e\x9c\x36\x4a\x07\xeb\x77\x77\xc1\x39\x36\x6a\x83\x47\x25\xe1\x88\xc9\xe8\xdd\xa4\x28\x96\xcb\x25\x1e\xf9\x47\xe2\xa8\xd0\x80\x93\xd5\x7d\x29\x74\x42\xf2\x51\xe9\xc0\x25\x34\x1c\xd8\x47\x54\x41\xa0\x7b\x46\xac\xd9\xd8\xca\x72\x09\x1f\x4a\x46\x10\x94\xec\x78\x47\x1a\x04\xd6\xb7\x25\x2d\x0d\xcc\x85\xa7\x61\x79\xda\x73\x0f\x46\xc2\xa0\xa4\xe1\x48\x6a\x0d\x39\x77\x46\xc9\x75\x88\x56\x1b\xbe\x06\x24\x79\x17\x4c\xe6\x27\x63\x42\xf2\x8a\x9f\x94\x9c\xa2\xb2\x12\x75\xde\xe0\xdd\xfa\x32\x57\x7a\x90\x3f\xa3\x2b\x7e\x85\x3f\x20\x5a\xdf\x61\x8e\x22\xda\x0a\x56\x61\x63\xae\x10\x2e\x0a\x15\xf2\x91\x9a\xb6\xa7\x59\xe2\xc3\xe7\x15\x36\x2a\xd6\xef\xe6\x83\xd4\x7c\xb8\x7d\xf0\xfa\xe6\xff\xf5\x1c\x74\xcc\x70\x2b\x6c\xef\xed\xf3\xbb\xb7\x33\xfc\x2a\x00\xa0\x79\x38\xd6\xde\x8e\xc1\xf5\x47\xae\x56\x59\xfe\x7e\x3a\xfa\x53\x16\xc3\xeb\x97\x93\x67\x99\xe1\x66\xbc\xee\xea\xa4\x68\x38\x6b\xe1\x9a\x84\xa7\x9d\xcc\x8e\xea\x53\x10\x09\xa7\x6f\xe4\x12\xcf\x70\x73\xdb\xde\xf5\xbd\xe6\x15\xd9\x55\x8b\xb1\x5e\xf1\xa1\x77\x6c\x11\x35\x08\xed\x78\xf1\xbd\x01\x7b\xff\x2f\x34\x7c\x9c\xe6\xbc\xae\xc6\xb3\x7c\x5d\xbe\x69\x3b\xfa\x4a\xba\x9f\x5d\xa4\xe4\xb5\x5e\xa3\x26\x6f\xcd\x74\x72\x17\x92\xcb\x69\x55\xb4\x6d\x83\x20\x5c\xb1\xb0\x37\x39\x90\x20\x5c\xcf\x4c\x97\xe4\x5a\xec\x91\xe4\x8c\x14\x59\xfe\x8b\xbd\x0d\x93\x96\xe9\xa5\xb5\x9b\x9f\xd9\x24\xe5\xbf\x71\x72\xd1\x4f\xd7\xb6\x1b\xae\xa7\x26\xae\x97\x98\xb5\xfb\x1f\x31\x7b\xf5\x31\x44\xad\xdd\xfb\x3e\x5e\x8a\xdf\x01\x00\x00\xff\xff\xf5\xac\x11\xd5\x01\x04\x00\x00" func stakingcollectionWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5900,11 +5920,11 @@ func stakingcollectionWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0x94, 0x7f, 0x6f, 0xf0, 0xe4, 0x28, 0x27, 0x2d, 0x99, 0x6, 0xd7, 0xff, 0xf1, 0xff, 0xa5, 0x7, 0x3a, 0x22, 0x3c, 0xba, 0x2f, 0xff, 0x40, 0x14, 0xdd, 0xe2, 0x43, 0x68, 0x43, 0xb0, 0x64}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf9, 0x49, 0x4d, 0x12, 0xd3, 0x8d, 0x96, 0x6e, 0x9, 0xec, 0x17, 0xc4, 0xc6, 0x99, 0x84, 0x28, 0xbd, 0x52, 0x73, 0x96, 0x3, 0x75, 0x59, 0x22, 0x85, 0x43, 0x73, 0xfa, 0x70, 0xe1, 0x91, 0xe0}} return a, nil } -var _stakingproxyAdd_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x41\xa4\xc7\x12\x6a\x25\x68\x69\x45\xd0\x60\x5a\x68\x8f\x6b\x76\xa2\x4b\xe3\xce\x32\x19\x51\x29\xfe\xf7\xb2\x46\x4d\x42\xba\x87\x90\x7d\x79\x9b\xfd\xde\x3c\xb3\x73\xc4\x02\xa9\xa8\x1f\x63\x37\x09\xd3\xf1\x04\x39\xd3\x0e\x1e\x8f\xe9\x47\x3c\x9f\x2d\xde\x92\xd5\xf2\xeb\x3b\x9e\x4e\x57\xaf\x69\x1a\x04\xc2\xca\x96\x2a\x13\x43\x36\x34\x3a\x82\x54\xd8\xd8\xcd\x00\x98\x0a\x8c\xe0\x73\x66\xe5\x69\x00\x16\xe5\x40\xec\x7f\x18\x6b\xcd\x58\x96\xb5\xaf\xfe\x34\xc7\x53\x2d\x97\xd5\xfd\x0d\xad\x0f\xbf\x41\x00\x00\xe0\x18\x9d\x62\x0c\x55\x96\xd1\xde\x4a\x04\xf1\x5e\xb6\x71\xb5\xf1\x26\xb8\xae\x02\x05\x9c\xe7\x7f\xa7\x42\x23\xc3\x08\xae\x27\x86\x6b\x62\xa6\xc3\xf3\x43\x33\xe4\x70\x41\x1a\xbd\x80\x9c\xd4\x87\x5e\x42\x9f\x3d\x82\x8e\x73\xe9\x90\x95\x10\x4f\x94\x53\x6b\x53\x18\x39\xa5\x42\xac\x36\x98\x28\xd9\xf6\xef\x0c\x7e\x8d\xc7\xe0\x94\x35\x59\xd8\x9b\xd0\xbe\xd0\x60\x49\xa0\x22\x00\xc6\x1c\x19\x6d\x86\x20\x74\x8b\x5c\x31\xc3\xf6\x72\x7f\xaf\x1f\xb4\xf2\x58\xd2\x38\xb3\x39\xc1\xa8\x8b\xe4\xf5\xf0\x62\x98\x46\x60\xf4\xad\x02\xff\xfc\xb7\x81\x8e\xd4\x29\xa3\xb5\x6d\x77\x52\xbf\x37\x08\x1b\xd3\x1e\x2a\xad\xdb\x50\x36\xa7\xe8\xce\x5f\x4d\xe8\x1c\x9c\x83\xbf\x00\x00\x00\xff\xff\x31\xc4\x60\xc0\x70\x02\x00\x00" +var _stakingproxyAdd_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x43\x0e\x92\x80\xe4\x5c\x42\xad\x58\x7b\xa8\x14\x5a\x41\xda\xfb\x98\x9d\xe8\xd2\xb8\xb3\x4c\x26\x58\x29\xfe\xf7\xb2\x46\x4d\x42\xba\x87\x90\x7d\x3b\x33\xfb\xed\x7b\xf6\xe0\x59\x14\x36\x8a\xdf\xd6\xed\xd6\xc2\x3f\x27\x28\x85\x0f\x10\xf7\xa5\x38\x8a\x54\xd0\xd5\x58\xa8\x65\x97\x58\x93\xc3\x46\xc5\xba\xdd\x14\x84\x2b\xca\xe1\x73\xe5\xf4\x61\x0a\x8e\xf4\xc8\x12\xda\x16\xc6\x08\xd5\x75\x57\xd7\x1d\xbd\xd1\xa9\x93\xeb\xf6\x96\x9e\x96\xc2\x6f\x14\x01\x00\x78\x21\x8f\x42\x09\x16\x05\x37\x4e\x73\xc0\x46\xf7\xc9\x33\x8b\xf0\xf1\x0b\xab\x86\x52\x98\x2c\xda\xb3\xd0\x03\xd7\x55\x91\x82\x0f\xd0\xaf\x5c\x19\x12\x98\xc1\x75\x40\x56\x2b\x0b\xee\x28\xdb\x5e\x46\x3c\x4e\xfa\x2f\xcc\xde\xd9\x50\x10\x48\xd6\x5d\xf3\x53\x12\xbc\xc8\x61\x54\xf9\xe1\x49\x50\x59\x96\xe8\x71\x6b\x2b\xab\xa7\x4d\x3b\x7c\x8d\xba\x4f\xef\x2c\x61\xcd\xe7\xe0\xd1\xd9\x22\x89\x97\xdc\x54\x06\x1c\x2b\xb4\x04\x20\x54\x92\x90\x2b\x08\x94\x6f\x4e\xb4\xec\xb0\xbf\xdc\x1f\xa7\xd1\xe0\x5d\x8e\x0d\xad\x5c\xc9\x30\x1b\x23\x05\x3d\xb9\x14\xbc\xe4\x60\xcd\x2d\x99\xf0\xfd\x37\x98\x91\x34\xca\x68\xb0\x1d\x46\xd5\xfd\xf7\x08\x7b\xae\x67\x68\xcc\x10\xca\x95\x9c\xdf\xf9\x5b\x87\xce\xd1\x39\xfa\x0b\x00\x00\xff\xff\x8d\x03\xa9\x86\x80\x02\x00\x00" func stakingproxyAdd_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5920,11 +5940,11 @@ func stakingproxyAdd_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/add_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb5, 0xf2, 0xa0, 0xe3, 0xb7, 0x7c, 0x79, 0xbd, 0xee, 0x11, 0x1e, 0x31, 0xf2, 0x7a, 0xdc, 0xa2, 0xf, 0xae, 0xba, 0x2a, 0x46, 0x9a, 0xf3, 0x65, 0xd9, 0xb4, 0x2d, 0xd1, 0x43, 0x7c, 0x8, 0xf6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x4c, 0x70, 0x39, 0x70, 0x71, 0x9e, 0x6c, 0x1, 0xdf, 0x9c, 0x65, 0xbf, 0x4, 0xb9, 0xfd, 0xe4, 0x59, 0x8e, 0x5a, 0xcf, 0xd2, 0x23, 0xd, 0x25, 0x7, 0xa2, 0xd, 0xd3, 0xe, 0xb1, 0x72}} return a, nil } -var _stakingproxyGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\xaf\x1e\x4a\x02\x45\x7a\x96\x5a\x09\x5a\x5a\x29\x68\x30\x3d\xb4\xc7\x4d\x32\x49\x97\xc6\x9d\x65\x9c\x50\x45\xfc\xef\x25\xa6\x1a\xaa\x87\xce\x25\x64\xe7\xcd\xfb\xf6\xcd\xda\xb5\x67\x51\xa4\x6a\xbe\xac\xab\x12\xe1\xed\x0e\xa5\xf0\x1a\xf7\xdb\xf4\x2d\x7e\x9d\x2f\x9e\x93\xd5\xf2\xfd\x23\x9e\xcd\x56\x4f\x69\x1a\x04\xbe\xc9\x50\x36\x0e\x6b\x63\x5d\x68\xf2\x9c\x1b\xa7\x23\xc4\x45\x21\xb4\xd9\xdc\xc1\x71\x41\xf3\xd9\x08\xa9\x8a\x75\x55\x34\xfa\x63\x3c\x5c\xb4\x5d\x57\x32\xf6\x41\x00\x00\x35\x29\x7c\xdb\x99\x1a\x6f\x32\x5b\x5b\xdd\x61\x8c\x8a\x34\xee\x8c\x4f\x80\xe8\xa8\x6e\x6b\x58\x91\xf6\xe2\x87\xdb\x2b\xfb\xf6\x80\xe4\xf8\xff\xc2\x75\x41\xb2\xff\x5f\x92\x34\x59\x6d\xf3\xc3\x63\x78\xc6\xb4\x75\x35\xb7\xf4\x24\x46\x59\x7a\x7e\x37\x98\x18\xfd\x3c\x4f\x46\x17\xc9\x56\x54\x62\x7c\x19\x72\x98\xb1\x08\x7f\x87\x7d\xae\xc9\x04\xde\x38\x9b\x87\x83\x29\x37\x75\x01\xc7\x8a\x4e\x04\x7f\x84\x40\xa8\x24\x21\x97\x13\x94\xb1\xe9\xee\xd6\xf9\x0e\x7e\x99\x42\xda\x88\x3b\x63\xdb\x55\x9d\x16\x1e\x9e\xde\xa5\xfb\x46\x37\xc1\x21\xf8\x09\x00\x00\xff\xff\xb3\xad\x9a\xc7\xfa\x01\x00\x00" +var _stakingproxyGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x4e\xf3\x30\x10\x85\xf7\x3e\xc5\xfb\xb3\xf8\x95\x48\x28\x07\xa8\x80\xaa\x2a\x0b\xd8\x40\x45\x4f\xe0\x3a\x93\x60\xe1\x7a\xac\xf1\x44\x50\x55\xbd\x3b\x4a\xad\x14\x50\x17\xcc\xc6\xf2\xcc\xbc\x37\x4f\x9f\xdf\x27\x16\xc5\x56\xed\xbb\x8f\xc3\x46\xf8\xf3\x80\x5e\x78\x8f\xea\x67\xab\x32\xc6\x3a\x47\x39\xd7\x36\x84\x06\xfd\x18\xb1\xb7\x3e\xd6\xd6\x39\x1e\xa3\x2e\xb0\xea\x3a\xa1\x9c\x6f\x10\xb9\xa3\xa7\x87\x05\xb6\x2a\x3e\x0e\xcd\xe2\x97\x73\xfb\x3c\x4d\x63\xcf\x38\x1a\x03\x00\x81\x14\x69\x9a\xbc\x52\x8f\x3b\x0c\xa4\xab\xe2\x38\x3b\x37\xe7\xb5\xa9\x5a\x67\x93\xdd\xf9\xe0\xd5\x53\x6e\x77\x2c\xc2\x1f\xb7\xff\xaf\xdc\xa7\x06\xc9\xf9\xff\xc8\xa1\x23\x39\xfe\xbd\xb2\x19\x77\xc1\xbb\xd3\x7d\x7d\x39\x36\xd5\x95\xee\x25\x91\x58\x65\x59\xcf\x41\x0e\x45\xb8\xb1\xfa\x76\x51\x7e\x07\x5e\x2e\x91\x6c\xf4\xae\xae\xd6\x3c\x86\x0e\x91\x15\x25\x36\xd2\x59\x07\xa1\x9e\x84\xa2\x23\x28\x23\x97\x73\x05\x47\xd5\x14\x3e\x42\x3a\x4a\xbc\x20\x6a\x07\xd2\x19\x61\x3d\x93\x2e\x6f\xf3\xcf\x9c\xcc\x57\x00\x00\x00\xff\xff\x07\xe6\x21\xd3\xcd\x01\x00\x00" func stakingproxyGet_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5940,11 +5960,11 @@ func stakingproxyGet_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/get_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0x8b, 0x46, 0x15, 0x59, 0x7a, 0x1d, 0x80, 0xde, 0x23, 0xc5, 0x1f, 0x2d, 0x9f, 0xde, 0xec, 0x2a, 0xfe, 0x91, 0xca, 0xb9, 0xea, 0xf1, 0x9c, 0xe6, 0x56, 0x27, 0x11, 0x3d, 0x3b, 0xe3, 0xff}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0x3e, 0xd4, 0xe5, 0xc4, 0x95, 0x56, 0x6b, 0xfd, 0xc9, 0xe5, 0x64, 0xc, 0x1b, 0xe0, 0xbd, 0xff, 0x2b, 0x95, 0x9a, 0xaf, 0x4e, 0xdd, 0xf1, 0x3c, 0xf7, 0x3e, 0xc0, 0xfd, 0x96, 0x31, 0x6c}} return a, nil } -var _stakingproxyRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x41\x8f\xda\x3c\x10\xbd\xe7\x57\xcc\xc7\x61\xbf\x44\x42\x51\x0f\x55\x0f\xd1\xb2\x2b\x04\xb4\x5d\xb1\x02\x44\xa8\xd4\x1e\x8d\x3d\x01\x8b\xe0\x89\x9c\x89\xca\x6a\xc5\x7f\xaf\x1c\x27\x21\xb0\xdd\xb6\xbe\x38\xce\xcc\xbc\x79\xef\x8d\xad\x8f\x05\x59\x86\x67\x92\x07\x54\x1b\x3a\xa0\x29\x21\xb3\x74\x84\x0f\xa7\xe7\xe5\x64\x3e\x9b\x6e\x96\xf3\xd9\x62\x3c\x9d\xae\x67\x69\x1a\x34\xd9\x29\x8b\x83\x36\xbb\x95\xa5\xd3\x4b\x9b\x9d\x6e\xc6\xf3\xa7\xc5\x97\xd5\x7a\xf9\xfd\x47\x9b\x1e\xb0\x15\xa6\x14\x92\x35\x99\x50\x28\x65\xb1\x2c\x13\x18\xfb\x8f\x21\x68\x95\x40\xca\x56\x9b\xdd\x10\xc4\x91\x2a\xc3\x09\x7c\xfb\xac\x4f\x9f\x3e\x46\xf0\x1a\x04\x00\x00\x39\x32\xec\x29\x57\x68\xd7\x98\x25\x70\xd7\xe7\x19\xd7\xdb\xd7\x3a\xea\xb3\x0b\x8b\x85\xb0\x18\x0a\x29\x3d\xda\xb8\xe2\xfd\xd8\x1f\x1c\x24\x34\xab\xc4\x3c\x8b\x3b\x58\x18\x41\x53\x10\x6f\xc9\x5a\xfa\x79\xff\x6e\x9b\x87\xd0\xa9\x4d\xe0\xbd\x78\xca\x64\xc5\x0e\x57\x82\xf7\x51\xd7\xcd\xad\xc7\x47\x28\x84\xd1\x32\x1c\x4c\xa8\xca\x15\x18\x62\xf0\xcd\xc0\x62\x86\x16\x8d\x44\x60\x82\x1e\xd6\xc0\x23\x9c\xbd\x34\x3c\xa1\xac\x18\x7b\x22\x9c\x35\x86\x14\x2e\x0b\xb4\x82\xa9\x51\xb2\x43\x6e\x04\xb7\x86\x47\xf1\x0e\x79\x22\x0a\xb1\xd5\xb9\xe6\x97\x2b\x5a\xf7\x77\xfd\x51\xc6\x0b\x52\xe8\x7e\xa0\xad\xcf\x9e\xc7\xeb\xdf\x53\x56\xd5\x36\xd7\xf2\xfc\x70\x85\x1d\xbe\xa9\x6b\x99\x5e\xc8\xf8\xc2\xda\xae\xff\x1a\xf3\xc3\x08\xfe\xd5\x39\xa7\x1e\xa8\x01\x85\xa2\xc6\x02\xd9\x81\x0f\xa2\xe0\x8d\x59\x4f\x26\x23\x18\xdd\xfa\xe6\x1c\x5a\x34\xd1\xb0\x4e\x9b\x26\xa0\xd5\x1f\x47\x68\xfe\x67\x67\x36\x68\x87\x98\x91\xf5\xf0\xd3\xd1\x20\x96\x64\xa4\xe0\x50\xab\xa8\x47\xe0\xfa\xca\xc5\xd2\xa2\x60\xbc\x98\x19\xb6\xe4\x92\x8e\xe6\xe5\x4d\xf8\xfd\x37\x6a\x7a\x83\x80\xd1\x6d\x0b\x6f\x52\x03\xdf\x2b\xbe\xd5\x2e\x94\xea\x4f\xaa\xd3\xdf\xf2\x88\xb5\x1a\x42\xe1\x42\xc9\x6d\xd3\xf6\x86\x9e\x83\x5f\x01\x00\x00\xff\xff\xa1\xc8\xc2\x7d\x47\x04\x00\x00" +var _stakingproxyRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x93\x41\x8f\xd3\x30\x10\x85\xef\xf9\x15\xa3\x1c\x4a\x22\x55\x3e\x21\x0e\x11\x65\xb5\xec\x0a\x81\x84\x96\x8a\x02\x77\xd7\x9e\xa4\x56\x53\x4f\xe4\x4c\x44\x2b\xb4\xff\x1d\x39\x76\x52\xb7\x05\x84\xb4\xbe\x64\xd7\xe3\x79\xf3\xbd\x67\xd7\x1c\x3a\x72\x0c\x9f\x49\xed\x51\x7f\xa3\x3d\xda\x1e\x6a\x47\x07\xc8\xd3\xad\x3c\x8b\xe7\x36\x2c\xf7\xc6\x36\x6b\x47\xc7\x53\x3c\x97\x6e\xe5\x59\xc6\x4e\xda\x5e\x2a\x36\x64\x0b\xa9\xb5\xc3\xbe\xaf\xe0\x3e\xfc\xb1\x04\xa3\x2b\xd8\xb0\x33\xb6\x59\x82\x3c\xd0\x60\xb9\x82\xef\x1f\xcc\xf1\xcd\xeb\x12\x7e\x65\x19\x00\x40\x8b\x0c\x3b\x6a\x35\xba\xaf\x58\x57\x20\x07\xde\x15\x29\x8b\x18\x3f\x5f\x3a\x74\xd2\x0f\xe9\x4b\x58\xdc\x96\x3f\x8e\x02\x41\xb0\x73\xd8\x49\x87\x85\x54\x2a\x0c\x1c\x25\xdf\x93\x73\xf4\xf3\x87\x6c\x07\x2c\x61\x71\x1f\x6a\x1e\x02\xe2\xea\xb1\xad\xc5\x0c\x02\x2b\x88\xfd\xa2\x67\x72\xb2\x41\xb1\x1d\x15\xde\xbe\x04\xf0\x5d\xe1\x33\xac\xe0\x6f\xf5\x4d\x18\xb5\x96\xbc\x2b\x67\x30\xbf\xee\xee\xa0\x93\xd6\xa8\x22\x7f\xa0\xa1\xd5\x60\x89\x21\xf0\x80\xc3\x1a\x1d\x5a\x85\xc0\x04\x89\x56\x1e\x14\x9e\x43\x28\x78\x44\x35\x30\x26\x7e\x7d\xee\x96\x34\x06\x70\x8a\xa6\x1b\xe4\x98\xcd\x74\x9b\xa5\x50\xb2\x93\x5b\xd3\x1a\x36\xd8\x5f\x50\x4d\x91\x2c\xd2\x37\x21\x9e\x48\xa3\xdf\x40\x37\xfe\x3f\x39\xbf\xe8\xf4\xeb\xa6\x69\x22\x79\x98\xe6\x9d\xd6\xc3\xb6\x35\xca\xc7\x71\xd1\xfd\xdf\xd9\x78\x7f\x40\x51\x16\xba\x51\x0d\x66\x3b\xa7\xbc\xcc\x6e\xe2\xf8\x64\x6b\x82\xd5\x75\x32\xa2\x41\x7e\x8a\xd5\x62\x3c\xf6\x58\x81\xd1\xff\x04\xb1\xaf\xd8\xc7\x09\xc6\x2b\xd6\xe4\x82\xfc\xe3\x2a\x17\x8a\xac\x92\x5c\x18\x5d\x26\x00\x97\xef\x4f\x28\x87\x92\xf1\x9c\x65\x31\xc1\x55\x33\xe6\xf9\x27\x15\xbe\x7f\x70\x93\xdc\x03\xac\xae\x47\x84\x90\xa2\x7c\xd2\x7c\xed\x5d\x6a\x9d\xde\xd5\xec\x7f\xe2\x10\x46\x2f\xa1\xf3\xa5\xea\x7a\xe8\xf4\x06\x9f\xb3\xdf\x01\x00\x00\xff\xff\x1f\x55\xea\x18\x79\x04\x00\x00" func stakingproxyRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5960,11 +5980,11 @@ func stakingproxyRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6a, 0xa8, 0x7a, 0xb4, 0x24, 0xcc, 0x6b, 0x8d, 0x67, 0xfe, 0xdd, 0x4c, 0xad, 0x2d, 0x6b, 0x86, 0x24, 0x5c, 0xfd, 0x26, 0x3e, 0x97, 0xdd, 0xeb, 0xd3, 0xd7, 0x4b, 0x36, 0xc8, 0xb5, 0xe2, 0x5c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x55, 0xf4, 0xb6, 0xef, 0xa5, 0x91, 0xdf, 0x85, 0xff, 0x8f, 0x28, 0xa1, 0x53, 0x69, 0x5a, 0x7e, 0x8e, 0x55, 0xcd, 0xa, 0xd5, 0xcc, 0x2c, 0x22, 0x93, 0xb6, 0xd1, 0xf4, 0x3, 0x6f, 0x61}} return a, nil } -var _stakingproxyRemove_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\x51\x4b\xc3\x40\x0c\xc7\xdf\xef\x53\xe4\x49\xda\x97\xe2\x73\x51\xe1\xb0\xa2\x45\xd8\x8e\x9d\x0f\xfa\x98\xb5\x59\x77\xd8\x5e\x8e\x98\xe9\x86\xec\xbb\xcb\xb9\x31\x0b\xe6\x25\x24\xfc\x7f\xe4\x97\x30\x25\x16\x05\xaf\xf8\x1e\xe2\xe0\x84\xf7\x07\xd8\x08\x4f\x70\xbd\xf7\x2f\xf6\xb9\x5d\x3c\xba\xd5\xf2\xf5\xcd\x36\xcd\xea\xc1\x7b\x63\x54\x30\x7e\x60\xa7\x81\x63\x11\xb9\xa7\xb6\xa9\xc1\xab\x84\x38\x94\xf0\x6d\x0c\x00\x40\x12\x4a\x28\x54\x60\xd7\xf1\x2e\x6a\x0d\x76\xa7\x5b\x7b\x1a\x72\x08\xce\x35\x92\x42\xca\x07\x9f\x78\xec\x49\xe0\x16\xce\x44\xb5\x66\x11\xfe\xba\xb9\x9a\x5b\x55\x0b\xee\x29\x2f\x48\xdc\x1f\x74\x57\x64\xd9\x1a\xfe\x25\x97\x89\x04\x95\xe5\x1e\x13\xae\xc3\x18\xf4\xe0\x95\x05\x07\x72\xa8\xdb\xd2\x5c\x24\x66\x02\x95\xd0\xc4\x9f\x94\xe9\x36\x6e\xf8\xf2\xde\xa9\x97\xbf\xc8\xd1\x1c\xcd\x4f\x00\x00\x00\xff\xff\x64\x64\x88\xd5\x33\x01\x00\x00" +var _stakingproxyRemove_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\x4d\x6a\xc3\x30\x10\x85\xf7\x3a\xc5\x23\x8b\x60\x6f\x7c\x00\xd3\x16\xfa\xb3\x68\x36\xad\xc1\xd0\xfd\xc4\x9e\x38\xa2\xb2\x46\x4c\xc6\x6d\x43\xc9\xdd\x8b\xe2\x90\x1a\xa2\x8d\xe0\x49\xdf\x9b\x6f\xfc\x98\x44\x0d\xad\xd1\xa7\x8f\x43\xa3\xf2\x73\xc4\x4e\x65\xc4\x6a\x19\xad\x9c\x33\xa5\x78\xa0\xce\xbc\xc4\x22\x4a\xcf\x9b\x97\x1a\xad\xa9\x8f\x43\x89\x5f\xe7\x00\x20\x29\x27\x52\x2e\xa8\xeb\x64\x8a\x56\x83\x26\xdb\x17\x4f\xa2\x2a\xdf\x1f\x14\x26\x2e\xb1\x7e\x9c\xdf\x32\x83\xcb\x09\x6c\x48\x79\xca\xab\x84\x9e\x15\xf7\xb8\x14\x54\x07\x13\xa5\x81\xab\xed\xb9\xe2\x6e\xbd\x54\xaa\xde\xa4\xe7\x1c\xb0\x36\xff\xf0\x43\x91\xe5\x6b\xdc\xfc\x7c\x4f\xac\x64\xa2\xcf\x94\x68\xeb\x83\xb7\x63\x3b\x97\x37\x64\xfb\xd2\x5d\x65\x16\x22\x95\xf2\x28\x5f\x9c\xe9\x4d\xdc\xc9\x75\xeb\xf9\x2e\xcf\xc8\xc9\x9d\xdc\x5f\x00\x00\x00\xff\xff\x28\xae\xe7\x3e\x43\x01\x00\x00" func stakingproxyRemove_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5980,11 +6000,11 @@ func stakingproxyRemove_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/remove_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0x54, 0xc1, 0x59, 0xe, 0x14, 0xb4, 0xd3, 0xf1, 0xd2, 0xef, 0x53, 0xff, 0x63, 0xb9, 0x6d, 0x1c, 0x93, 0xfc, 0x57, 0x6, 0xae, 0xa4, 0x12, 0x64, 0x2f, 0xc5, 0x89, 0x83, 0xfe, 0x93, 0x46}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0xf7, 0x1c, 0x46, 0x86, 0x72, 0x41, 0x59, 0x9b, 0xed, 0x64, 0x8f, 0xb4, 0x13, 0xa6, 0x40, 0x7a, 0xf2, 0x9a, 0x14, 0x5d, 0xf4, 0x21, 0xb0, 0x2, 0xbb, 0x79, 0xc5, 0x68, 0xb4, 0xb7, 0xcc}} return a, nil } -var _stakingproxyRemove_staking_proxyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xc1\x4a\xc3\x40\x10\x86\xef\xfb\x14\x73\x92\xe4\x12\x3c\x07\x15\x16\x23\x5a\x84\x76\xe9\x7a\xd0\xe3\x34\x19\x93\xc5\x64\x67\x19\xa7\xda\x22\x7d\x77\x59\x5b\x6a\xa0\x7b\x59\x66\xf8\xbf\x99\x6f\xc2\x94\x58\x14\xbc\xe2\x47\x88\xbd\x13\xde\xed\xe1\x5d\x78\x82\xeb\x9d\x7f\xb1\xcf\x8b\xe5\xa3\x5b\xaf\x5e\xdf\x6c\xd3\xac\x1f\xbc\x37\x46\x05\xe3\x27\xb6\x1a\x38\x16\x91\x3b\x5a\x34\x35\x78\x95\x10\xfb\x12\x7e\x8c\x01\x00\x48\x42\x09\x85\x0a\x6c\x5b\xde\x46\xad\xc1\x6e\x75\xb0\xc7\x22\x87\xe0\xf4\x46\x52\x48\x79\xe1\x13\x8f\x1d\x09\xdc\xc2\x89\xa8\x36\x2c\xc2\xdf\x37\x57\x73\xab\x6a\xc9\x1d\xe5\x06\x89\xfb\x87\xee\x8a\x2c\x5b\x43\xc2\x8b\xec\x2a\x91\xa0\xb2\xdc\x63\xc2\x4d\x18\x83\xee\xbd\xb2\x60\x4f\x0e\x75\xd0\xa1\x34\x67\x91\x99\x44\x25\x34\xf1\x17\xcd\x87\x9d\xcf\x3c\xfe\xe5\x1f\x76\x30\x07\xf3\x1b\x00\x00\xff\xff\x4f\x9f\x84\x5d\x3b\x01\x00\x00" +var _stakingproxyRemove_staking_proxyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\x4d\x6a\xc3\x30\x10\x85\xf7\x3a\xc5\x23\x8b\x60\x6f\x7c\x00\xd3\x16\xfa\xb3\x68\x37\xad\xc1\xd0\xfd\xc4\x9e\xda\xa2\xb6\x46\x4c\xc6\x6d\x43\xc9\xdd\x8b\xe2\x90\x0a\xa2\x8d\xe0\x49\xef\x9b\x6f\xfc\x1c\x45\x0d\xad\xd1\xa7\x0f\x43\xa3\xf2\x73\xc0\x87\xca\x8c\x4d\x1e\x6d\x9c\x33\xa5\xb0\xa7\xce\xbc\x84\x22\x48\xcf\x2f\x4f\x35\x5a\x53\x1f\x86\x12\xbf\xce\x01\x40\x54\x8e\xa4\x5c\x50\xd7\xc9\x12\xac\x06\x2d\x36\x16\x0f\xa2\x2a\xdf\xef\x34\x2d\x5c\x62\x7b\xbf\xbe\xa5\x0e\xce\x67\x62\x43\x4c\x53\x9e\x65\xea\x59\x71\x8b\x33\xa0\xda\x9b\x28\x0d\x5c\xed\x4e\x88\x9b\x6d\xae\x54\xbd\x4a\xcf\x29\x60\x6d\xfe\xcb\x77\x45\x92\xaf\x11\xe9\xea\xef\x5b\x64\x25\x13\x7d\xa4\x48\x3b\x3f\x79\x3b\xb4\x2b\xbe\x21\x1b\x6d\x2c\xdd\x45\x28\x93\xa9\x94\x67\xf9\xe2\x1c\x76\xd9\x7e\xbd\xcb\x53\xed\xe8\x8e\xee\x2f\x00\x00\xff\xff\x69\xc3\x7d\xed\x4b\x01\x00\x00" func stakingproxyRemove_staking_proxyCdcBytes() ([]byte, error) { return bindataRead( @@ -6000,11 +6020,11 @@ func stakingproxyRemove_staking_proxyCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/remove_staking_proxy.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcd, 0xb7, 0xb8, 0xff, 0xfc, 0x1e, 0x9f, 0xd3, 0x1a, 0x76, 0xac, 0x78, 0xe0, 0x9c, 0xf6, 0x9e, 0xd9, 0xed, 0x85, 0xd4, 0x2b, 0xa4, 0x7e, 0xed, 0xc5, 0xbf, 0x38, 0x7c, 0x76, 0xe6, 0x74, 0x14}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc8, 0xc0, 0x93, 0x87, 0x23, 0x74, 0x64, 0xa0, 0x10, 0x3f, 0xa9, 0x3b, 0xef, 0xb1, 0xde, 0xd5, 0xdb, 0x46, 0xc0, 0x26, 0x79, 0x83, 0x2d, 0x9b, 0x6, 0xd3, 0x1b, 0x19, 0x8, 0xcb, 0x3d, 0xa5}} return a, nil } -var _stakingproxyRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6b\xf2\x40\x10\xc7\xef\xfb\x29\xe6\xf1\xf0\x90\x40\x91\x1e\x4a\x0f\x52\x2b\x41\xfb\x22\x05\x0d\xa6\x42\x7b\x1c\x93\x51\x97\xc6\x9d\xed\x64\x42\x95\xe2\x77\x2f\xe9\xa6\x9a\xd2\xb9\x0c\x3b\x3b\x2f\xbf\xff\xdf\xee\x3c\x8b\x42\xa6\xf8\x66\xdd\x26\x15\xde\x1f\x60\x2d\xbc\x83\xcb\x7d\xf6\x9c\x3c\x4d\x67\x0f\xe9\x62\xfe\xf2\x9a\x4c\x26\x8b\xbb\x2c\x33\x46\x05\x5d\x85\xb9\x5a\x76\x91\xe3\x82\xa6\x93\x01\x64\x2a\xd6\x6d\x2e\x00\x77\x5c\x3b\x1d\xc0\xf2\xde\xee\xaf\xaf\x62\xf8\x34\x06\x00\xc0\x0b\x79\x14\x8a\x30\xcf\xc3\x7f\x52\xeb\x36\x09\x8f\xa6\x09\xda\x28\x49\xc1\x37\x00\x8f\x5c\x16\x24\x30\x84\x76\xa2\xbf\x62\x11\xfe\xb8\xf9\xdf\xa5\xec\xcf\xb8\xa0\xa6\x40\x92\x9e\x87\x6e\xa3\x06\x7e\x00\x7f\x3a\xe7\x9e\x04\x95\x65\x8c\x1e\x57\xb6\xb4\x7a\xc8\x94\x05\x37\x94\xa2\x6e\xe3\x13\x43\x13\xa3\x11\x78\x74\x36\x8f\x7a\x63\xae\xcb\x02\x1c\x2b\x04\x02\x10\x5a\x93\x90\xcb\x09\x94\xa1\x0a\x37\x02\x33\x6c\xbf\xef\xf7\x62\xf3\x4b\x4f\xd5\xf5\x75\xd8\x95\xd7\x8a\xea\x82\x9e\x0c\x0d\x39\xfe\x77\xde\xd5\xdd\xd3\x17\x7a\xaf\xa9\xd2\xa5\x6b\xab\xd1\x8f\xf1\x21\x07\x35\x47\x73\x34\x5f\x01\x00\x00\xff\xff\x09\x50\xee\xd5\xdd\x01\x00\x00" +var _stakingproxyRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\x4d\x4b\xf3\x40\x10\xbe\xef\xaf\x98\x37\x87\xb2\x81\x97\x9c\xc4\x43\xb1\x16\xad\x88\x5e\xb4\x50\xea\x7d\x9a\x4c\x9b\xc5\x64\x67\x9d\x4c\xb0\x45\xfa\xdf\x25\xdd\xd8\xae\x38\x97\x81\x67\x76\x9e\x8f\x59\xd7\x06\x16\x85\x95\xe2\xbb\xf3\xbb\xa5\xf0\xfe\x00\x5b\xe1\x16\xb2\x14\xca\x8c\x51\x41\xdf\x61\xa9\x8e\xbd\xf5\x5c\xd1\xf3\xc3\x14\x56\x2a\xce\xef\xfe\x03\xb6\xdc\x7b\x9d\xc2\xfa\xd1\xed\xaf\xaf\x72\xf8\x32\x06\x00\x20\x08\x05\x14\xb2\x58\x96\x71\x8e\xbd\xd6\xf6\x9e\x45\xf8\xf3\x0d\x9b\x9e\x72\x98\xdc\xc5\xd9\xb0\x03\x63\x35\xa4\x10\x06\xd5\x27\x6e\x2a\x12\x98\xc1\x48\x50\x74\xca\x82\x3b\x2a\x36\x27\x8a\x9b\x49\x6a\xb1\x78\xe1\x8a\x06\x80\x64\x79\x59\xbe\xb5\x43\x98\x29\xfc\x79\xf9\x1a\x48\x50\x59\x16\x18\x70\xe3\x1a\xa7\x87\x55\x24\x5f\xa2\xd6\xf9\xd9\xcb\x50\xf3\x39\x04\xf4\xae\xb4\xd9\x82\xfb\xa6\x02\xcf\x0a\xd1\x01\x08\x6d\x49\xc8\x97\x04\xca\xd0\x45\x8d\xe8\x1d\xea\x93\x7e\x96\x9b\x5f\xb9\xba\xf4\xce\xb3\x34\xe6\x18\x2a\x35\x7a\xbe\x73\xec\xf9\xbf\x0b\x57\xca\x53\x08\x7d\xf4\xd4\xe9\xda\x8f\xa8\xfd\xf9\x8f\xd8\x63\x9a\xa3\x39\x9a\xef\x00\x00\x00\xff\xff\xda\xf0\xd0\xe7\xed\x01\x00\x00" func stakingproxyRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -6020,11 +6040,11 @@ func stakingproxyRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0x4, 0xb5, 0x6d, 0xd4, 0x43, 0x6a, 0x62, 0x66, 0x8f, 0xf8, 0x22, 0x3c, 0x0, 0xa1, 0xef, 0x32, 0x6c, 0x7a, 0x1, 0xa5, 0x6b, 0x83, 0x30, 0xa, 0x8d, 0x29, 0x5a, 0xdd, 0xda, 0x77, 0x79}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x27, 0xc, 0x98, 0xb7, 0xdd, 0xba, 0xf0, 0x75, 0xec, 0x3a, 0xf0, 0x5f, 0xf6, 0x67, 0x82, 0x46, 0xbc, 0x45, 0xee, 0xe4, 0x17, 0x24, 0x7e, 0x73, 0x20, 0xb3, 0x84, 0x9f, 0x3, 0x4c, 0x6e, 0xc2}} return a, nil } -var _stakingproxySetup_node_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xe6\x24\x29\xb4\xc5\x73\x09\x42\xb0\xa2\x22\xb4\xa1\xf1\xa0\xc7\xe9\x76\x4c\x97\x6e\x77\x96\xe9\x44\x5a\x4a\xfe\xbb\xac\x4a\x4c\x10\x51\xdf\x69\x59\xde\xfb\xde\x1b\xb7\x8f\x2c\x0a\x95\xe2\xce\x85\xba\x14\x3e\x9e\xe0\x45\x78\x0f\x97\xc7\xea\xb1\x78\xb8\x5f\xdc\x96\xab\xe5\xd3\x73\x31\x9f\xaf\x6e\xaa\xca\x18\x15\x0c\x07\xb4\xea\x38\x64\x23\x38\x1b\x03\x00\x10\x85\x22\x0a\x65\x81\x37\xb4\x8c\x24\xa8\x2c\x33\x28\x1a\xdd\x16\xd6\x72\x13\x34\x39\xe1\x53\x9e\x14\x62\xea\xb9\x63\xbf\x21\x81\x7c\x32\x68\x9f\x5a\x21\x54\x2a\xbf\x1c\xd9\xc8\x74\xe1\x7e\xc3\xf4\x80\xaf\x94\xe5\x93\x1e\x6c\x0c\xca\xb3\x21\x6e\xd1\x4b\x5c\x63\xc4\xb5\xf3\x4e\x4f\x95\xb2\x60\x4d\x25\xea\xf6\x27\xba\x77\x61\x97\x5f\x7c\x63\xa5\x0f\x92\xde\xbc\xf3\xef\x96\xb2\x59\x7b\x67\xdb\xab\xac\x6b\x4a\xfa\xc3\xcc\x8f\x60\x5a\x39\x1e\x44\x15\xa5\x26\xfd\xef\xa5\x1d\x62\xf4\xfe\x6a\x4d\x6b\xde\x02\x00\x00\xff\xff\xf8\x08\x93\x28\xff\x01\x00\x00" +var _stakingproxySetup_node_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\xc1\x6a\xc3\x30\x0c\x86\xef\x7e\x0a\xd1\x43\x71\x20\xcd\x03\x94\x6c\x30\x76\xd9\x69\x0b\x04\x76\x57\x5d\xad\x31\x4b\x6d\x23\x2b\x65\x65\xf4\xdd\x87\xd9\xf0\xec\x8e\xc1\xe6\x43\x0e\x8a\xf4\x7f\x9f\x64\x8f\xc1\xb3\xc0\x28\xf8\x6a\xdd\x61\x60\xff\x76\x86\x17\xf6\x47\x58\x95\xa5\x95\x52\xc2\xe8\x22\x1a\xb1\xde\xe9\x06\xde\x95\x02\x00\x08\x4c\x01\x99\xb4\xf3\x7b\x7a\x0a\xc4\x28\x9e\xb7\x80\x8b\x4c\x7a\xc4\x13\x3d\xe3\xbc\x50\x0b\xf7\x18\x70\x67\x67\x2b\x96\x62\x03\xeb\x3b\x63\xfc\xe2\x24\x85\xc0\xd7\x9b\x49\x20\x24\xd0\x83\x9f\xf7\xc4\xd0\x6f\x2a\xa3\xce\x30\xa1\xd0\xf0\xdd\xa1\x1b\x95\x87\x4b\x78\x17\xc5\x33\x1e\xa8\x8b\x78\x22\xdd\x6f\x8a\xd0\x16\xc4\x6f\xeb\xd8\xc7\x62\x32\x4b\x9e\xc7\xcf\x88\x01\x65\x2a\x28\x49\xd1\xd5\xfd\x70\x53\xb3\x4d\xb1\x67\x16\xb1\x31\x2e\xd4\xaf\x7f\x70\x53\x81\xb8\x58\xe9\x56\x67\x56\x7a\xff\x13\xcd\xa3\xbf\xdd\xa5\x72\x0b\xcb\x6e\xb6\x71\xaa\x81\x57\xcb\xb5\xd5\x4f\x94\x3f\x9d\x6e\x48\xc1\xe6\x4a\x28\x7d\x2f\xea\xa2\x3e\x02\x00\x00\xff\xff\x35\x26\xe1\xc1\x6b\x02\x00\x00" func stakingproxySetup_node_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -6040,11 +6060,11 @@ func stakingproxySetup_node_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/setup_node_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb3, 0x0, 0x84, 0x96, 0x15, 0xf1, 0x23, 0x27, 0xca, 0xa4, 0x4, 0xe3, 0xc0, 0x8c, 0xc9, 0x59, 0x5e, 0x1e, 0x11, 0x6b, 0xd7, 0xe2, 0x9f, 0x69, 0x3c, 0xf0, 0x3a, 0xc6, 0xb8, 0x32, 0x46, 0x24}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2f, 0x9a, 0xe3, 0x34, 0x75, 0x3a, 0xde, 0xe7, 0x18, 0x77, 0x38, 0x64, 0x59, 0x95, 0xee, 0xf8, 0x2d, 0xa4, 0x2a, 0x35, 0x96, 0xbf, 0x85, 0x5c, 0x95, 0x1a, 0x63, 0x1b, 0xba, 0xae, 0x8d, 0xd9}} return a, nil } -var _stakingproxyStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6b\xc2\x40\x10\x86\xef\xfb\x2b\xa6\x1e\x4a\x02\x45\x7a\x28\x3d\x48\xad\x04\xed\x87\x14\x34\x18\x0b\xed\x71\x4c\x46\x5d\x8c\x3b\xcb\x64\x44\xa5\xf8\xdf\x4b\xba\xa9\xa6\x74\x2e\xc3\xec\xce\xc7\xf3\xbe\x76\xeb\x59\x14\x32\xc5\x8d\x75\xab\x54\xf8\x70\x84\xa5\xf0\x16\x6e\x0f\xd9\x3c\x79\x1b\x4f\x5e\xd2\xd9\xf4\xe3\x33\x19\x8d\x66\x4f\x59\x66\x8c\x0a\xba\x0a\x73\xb5\xec\x22\xc7\x05\x8d\x47\x3d\xc8\x54\xac\x5b\xdd\x00\x6e\x79\xe7\xb4\x07\xef\xcf\xf6\x70\x7f\x17\xc3\x97\x31\x00\x00\x5e\xc8\xa3\x50\x84\x79\x1e\xfe\x93\x9d\xae\x93\x50\xd4\x4d\xd0\x44\x49\x0a\xbe\x06\x78\xe5\xb2\x20\x81\x3e\x34\x13\xdd\x05\x8b\xf0\xfe\xe1\xba\x4d\xd9\x9d\x70\x41\xf5\x03\x49\x7a\x19\x7a\x8c\x6a\xf8\x1e\xfc\xeb\x9c\x7a\x12\x54\x96\x21\x7a\x5c\xd8\xd2\xea\x31\x53\x16\x5c\x51\x8a\xba\x8e\xcf\x0c\x75\x0c\x06\xe0\xd1\xd9\x3c\xea\x0c\x79\x57\x16\xe0\x58\x21\x10\x80\xd0\x92\x84\x5c\x4e\xa0\x0c\x55\xb8\x11\x98\x61\xfd\x73\xbf\x13\x9b\x3f\x7a\xaa\xb6\xaf\xfd\xb6\xbc\x46\x54\x1b\xf4\x6c\x68\xc8\xf1\xd5\x65\x57\x7b\x4f\xb7\x2e\x68\x42\xfb\x39\x6f\xc8\x55\xd1\xaf\xed\x21\x07\x2d\x27\x73\x32\xdf\x01\x00\x00\xff\xff\x05\x52\x1c\xe7\xdb\x01\x00\x00" +var _stakingproxyStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\xcf\x4e\x32\x41\x0c\xbf\xcf\x53\xf4\xdb\x03\x99\x4d\xbe\xec\xc9\x78\x20\x22\x51\x8c\xd1\x0b\x92\xa0\xde\xcb\x6e\x81\x09\xcb\x74\xd2\xed\x06\x88\xe1\xdd\xcd\x30\x08\x63\xec\xa5\x99\x76\xfa\xfb\xd3\xba\x6d\x60\x51\x98\x2b\x6e\x9c\x5f\xcd\x84\xf7\x07\x58\x0a\x6f\xa1\xc8\x4b\x85\x31\x2a\xe8\x3b\xac\xd5\xb1\xb7\x9e\x1b\x7a\x7d\x1a\xc2\x5c\xc5\xf9\xd5\x7f\xc0\x2d\xf7\x5e\x87\xf0\xf1\xec\xf6\xb7\x37\x25\x7c\x19\x03\x00\x10\x84\x02\x0a\x59\xac\xeb\xd4\xc7\x5e\xd7\xf6\x91\x45\x78\xf7\x89\x6d\x4f\x25\x0c\x1e\x52\x2f\xce\xc0\x39\x5a\x52\x08\x91\xf5\x85\xdb\x86\x04\x46\x70\x06\xa8\x3a\x65\xc1\x15\x55\x8b\x13\xc4\xdd\x20\x97\x58\x4d\xb9\xa1\x58\x20\x99\x5d\x87\xef\x6d\x34\x33\x84\x3f\x3f\xdf\x02\x09\x2a\xcb\x04\x03\x2e\x5c\xeb\xf4\x30\x4f\xe0\x33\xd4\x75\x79\xd1\x12\x63\x3c\x86\x80\xde\xd5\xb6\x98\x70\xdf\x36\xe0\x59\x21\x29\x00\xa1\x25\x09\xf9\x9a\x40\x19\xba\xc4\x91\xb4\xc3\xfa\xc4\x5f\x94\xe6\x97\xaf\x2e\xdf\xf3\x28\xb7\x79\x36\x95\x0b\xbd\xec\x39\xe5\xf2\xdf\x15\x2b\xc7\xa9\xe2\x83\xa6\xb4\x7b\xe7\x0d\xf9\xce\xfe\x5c\x23\xe5\xe4\xe5\x68\x8e\xe6\x3b\x00\x00\xff\xff\x4a\x7f\x70\x48\xeb\x01\x00\x00" func stakingproxyStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -6060,11 +6080,11 @@ func stakingproxyStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0xf5, 0xa3, 0x7d, 0x2b, 0xd5, 0x34, 0x68, 0x9, 0xf5, 0x8c, 0xe, 0x3c, 0x2a, 0x21, 0xf4, 0x5c, 0x52, 0x32, 0x7, 0x34, 0x9e, 0xa7, 0x2d, 0x55, 0x9, 0x63, 0x5d, 0x22, 0xc2, 0x25, 0xd0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0xfa, 0xc3, 0x3c, 0x9f, 0xf3, 0x8a, 0x9a, 0xdc, 0x74, 0xf7, 0x2b, 0x88, 0xd7, 0x95, 0xad, 0x57, 0x4c, 0x88, 0xe3, 0xa3, 0x8b, 0x57, 0x16, 0x99, 0xaa, 0xf0, 0x72, 0xcb, 0x5b, 0x7a, 0x23}} return a, nil } -var _stakingproxyStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6b\xf2\x40\x10\xc7\xef\xfb\x29\xe6\xf1\xf0\x90\x40\x91\x1e\x4a\x0f\x52\x2b\x41\xfb\x22\x05\x0d\x46\xa1\x3d\x8e\xc9\xa8\x8b\x71\x67\x99\x8c\x54\x29\x7e\xf7\x12\x37\xd5\x94\xce\x65\x98\xdd\x79\xf9\xfd\xff\x76\xe7\x59\x14\x32\xc5\xad\x75\xeb\x54\xf8\x70\x84\x95\xf0\x0e\x6e\x0f\xd9\x3c\x79\x1b\x4f\x5e\xd2\xd9\xf4\xfd\x23\x19\x8d\x66\x4f\x59\x66\x8c\x0a\xba\x0a\x73\xb5\xec\x22\xc7\x05\x8d\x47\x3d\xc8\x54\xac\x5b\xdf\x00\xee\x78\xef\xb4\x07\x8b\x67\x7b\xb8\xbf\x8b\xe1\xcb\x18\x00\x00\x2f\xe4\x51\x28\xc2\x3c\x0f\xff\xc9\x5e\x37\x49\x28\xea\x26\x68\xa2\x24\x05\x5f\x03\xbc\x72\x59\x90\x40\x1f\x9a\x89\xee\x92\x45\xf8\xf3\xe1\x7f\x9b\xb2\x3b\xe1\x82\xea\x07\x92\xf4\x3a\xf4\x18\xd5\xf0\x3d\xf8\xd3\x39\xf5\x24\xa8\x2c\x43\xf4\xb8\xb4\xa5\xd5\x63\xa6\x2c\xb8\xa6\x14\x75\x13\x5f\x18\xea\x18\x0c\xc0\xa3\xb3\x79\xd4\x19\xf2\xbe\x2c\xc0\xb1\x42\x20\x00\xa1\x15\x09\xb9\x9c\x40\x19\xaa\x70\x23\x30\xc3\xe6\x7c\xbf\x13\x9b\x5f\x7a\xaa\xb6\xaf\xfd\xb6\xbc\x46\x54\x1b\xf4\x62\x68\xc8\xf1\xbf\xeb\xae\xf6\x9e\x6e\x5d\xd0\xc2\x9d\x53\x31\xe7\x2d\xb9\x2a\xfa\xf1\x3e\xe4\x20\xe8\x64\x4e\xe6\x3b\x00\x00\xff\xff\x77\xae\x51\x52\xe0\x01\x00\x00" +var _stakingproxyStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\xcd\x4e\x02\x41\x0c\xbe\xcf\x53\xd4\x3d\x90\xd9\xc4\xec\xc9\x78\x20\x22\x51\x8c\xd1\x8b\x92\x20\xde\xcb\x6e\x81\x09\xcb\x74\xd2\xed\x46\x88\xe1\xdd\xcd\x30\x08\x63\xec\xe5\xcb\xb6\xdb\xef\xa7\xe3\xb6\x81\x45\x61\xa6\xb8\x71\x7e\x35\x15\xde\xed\x61\x29\xbc\x85\x22\x6f\x15\xc6\xa8\xa0\xef\xb0\x56\xc7\xde\x7a\x6e\xe8\xf5\x69\x08\x33\x15\xe7\x57\xd7\x80\x5b\xee\xbd\x0e\x61\xfe\xec\x76\xb7\x37\x25\x7c\x1b\x03\x00\x10\x84\x02\x0a\x59\xac\xeb\x34\xc7\x5e\xd7\xf6\x91\x45\xf8\xeb\x13\xdb\x9e\x4a\x18\x3c\xa4\x59\xdc\x81\x53\xb5\xa4\x10\xa2\xea\x0b\xb7\x0d\x09\x8c\xe0\x44\x50\x75\xca\x82\x2b\xaa\x16\x47\x8a\xbb\x41\x6e\xb1\x7a\xe3\x86\x62\x83\x64\x7a\x59\xbe\xb7\x31\xcc\x10\xfe\xfd\xf9\x1e\x48\x50\x59\x26\x18\x70\xe1\x5a\xa7\xfb\x59\x22\x9f\xa2\xae\xcb\xb3\x97\x58\xe3\x31\x04\xf4\xae\xb6\xc5\x84\xfb\xb6\x01\xcf\x0a\xc9\x01\x08\x2d\x49\xc8\xd7\x04\xca\xd0\x25\x8d\xe4\x1d\xd6\x47\xfd\xa2\x34\x7f\x72\x75\xf9\x9d\x47\x79\xcc\x53\xa8\xdc\xe8\xf9\xce\x09\xcb\xab\x0b\x57\xce\x53\xc5\x0f\x9a\xfb\x23\x34\x1f\xbc\x21\xdf\xd9\xdf\x27\x49\x98\x02\x1d\xcc\xc1\xfc\x04\x00\x00\xff\xff\x6e\x84\xf8\xb2\xf0\x01\x00\x00" func stakingproxyStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -6080,11 +6100,11 @@ func stakingproxyStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0x15, 0xbf, 0xec, 0x2c, 0xa1, 0xf, 0x8f, 0x26, 0xb9, 0x7f, 0x27, 0xf9, 0xf2, 0x13, 0xbe, 0xa, 0x44, 0x5f, 0x7f, 0x6b, 0x19, 0x18, 0xb2, 0xf7, 0x7, 0x6e, 0x41, 0x39, 0xf2, 0x8e, 0xf9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x53, 0x74, 0x5, 0xf2, 0x15, 0x8f, 0x8f, 0x44, 0xd1, 0xb7, 0x61, 0x2e, 0x6d, 0xbc, 0x17, 0x94, 0x6b, 0xb1, 0x72, 0x8e, 0xed, 0xab, 0x61, 0x43, 0x74, 0x96, 0x45, 0x94, 0xd4, 0xa8, 0xce}} return a, nil } -var _stakingproxyUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x41\x6b\xfb\x30\x0c\xc5\xef\xfe\x14\xfa\xf7\xf0\x27\xb9\x94\x9d\xcb\xba\x12\xda\xb1\x95\x41\x1b\xea\x1d\xb6\xa3\x9b\xa8\x89\x99\x6b\x19\x45\x61\x2d\xa3\xdf\x7d\x78\x0e\x6d\xc6\x74\x31\x32\x92\xde\xef\x3d\x7b\x0c\xc4\x02\x5a\xcc\x87\xf5\x4d\xc9\x74\x3a\xc3\x81\xe9\x08\x77\x27\xfd\x5a\xbc\xac\x37\x4f\xe5\x6e\xfb\xf6\x5e\xac\x56\xbb\x47\xad\x95\x12\x36\xbe\x33\x95\x58\xf2\x99\xa7\x1a\xd7\xab\x19\x68\x61\xeb\x9b\x1c\xbe\x94\x02\x00\x08\x8c\xc1\x30\x66\xa6\xaa\xa8\xf7\x32\x83\xa2\x97\xb6\x48\x4d\x1c\x82\xa1\x1c\x0a\x84\x28\xf8\x4c\xae\x46\x86\x39\x0c\x1b\xd3\x3d\x31\xd3\xe7\xfd\xff\x31\xd5\x74\x43\x35\xc6\x0f\xe4\xf2\xb6\xf4\x90\x45\xd8\x19\xfc\x99\xdc\x06\x64\x23\xc4\x4b\x13\xcc\xde\x3a\x2b\x67\x2d\xc4\xa6\xc1\xd2\x48\x9b\x5f\x19\x62\x2d\x16\x10\x8c\xb7\x55\x36\x59\x52\xef\x6a\xf0\x24\x90\x08\x80\xf1\x80\x8c\xbe\x42\x10\x82\x2e\x69\x24\x66\x68\x7f\xf4\x27\xb9\xfa\xe5\xa7\x1b\xe7\x38\x1f\xdb\x1b\x4c\x8d\x41\xaf\x01\xa6\x37\xff\x77\xbb\x35\xbe\x33\xed\x7d\x6c\xb1\x70\x2e\x4b\xe4\x17\x75\x51\xdf\x01\x00\x00\xff\xff\x44\x15\xbb\x2b\xb9\x01\x00\x00" +var _stakingproxyUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\xc1\x6e\xfa\x30\x0c\xc6\xef\x79\x0a\xff\x7b\x40\xe9\xa5\x0f\x80\xfe\x0c\x31\x76\xd8\x2e\x1b\x12\xd2\xee\xa6\x35\x6d\xb4\x10\x47\xae\xab\x0d\x4d\xbc\xfb\x14\x52\x41\xa6\xf9\x12\xc5\x89\xbf\xef\xf7\xd9\x9d\x22\x8b\xc2\x5e\xf1\xc3\x85\x7e\x27\xfc\x75\x86\xa3\xf0\x09\xaa\xb2\x55\x19\xa3\x82\x61\xc4\x56\x1d\x07\x1b\xb8\xa3\x97\xa7\x25\xec\x55\x5c\xe8\x6b\xf8\x36\x06\x00\x20\x0a\x45\x14\xb2\xd8\xb6\x3c\x05\x5d\x02\x4e\x3a\xd8\x47\x16\xe1\xcf\x77\xf4\x13\xd5\xb0\xd8\xe4\xb7\x34\x03\x73\x79\x52\x88\xc9\xe5\x99\x7d\x47\x02\x2b\x98\x05\x9a\x51\x59\xb0\xa7\xe6\x70\x95\xf8\xbf\x28\x91\x9a\x57\xee\x28\x35\x48\x76\xf7\xe1\x07\x9b\xe0\x97\xf0\xe7\xe7\x5b\x24\x41\x65\xd9\x62\xc4\x83\xf3\x4e\xcf\xfb\x2c\xbe\x43\x1d\xea\x1b\x4b\xaa\xf5\x1a\x22\x06\xd7\xda\x6a\xcb\x93\xef\x20\xb0\x42\x26\x00\xa1\x23\x09\x85\x96\x40\x19\xc6\xec\x91\xd9\x61\xb8\xfa\x57\xb5\xf9\x95\x6b\x2c\xf7\xba\x2a\x63\xce\xa1\x4a\xd0\xdb\x5e\xf3\x59\xff\xbb\x6b\x95\x3a\xcd\x14\xd2\x95\x36\xde\xdb\x4c\x7e\x31\x17\xf3\x13\x00\x00\xff\xff\xdd\x2c\x7a\xf3\xc9\x01\x00\x00" func stakingproxyUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -6100,11 +6120,11 @@ func stakingproxyUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4e, 0x22, 0xbf, 0xdd, 0x5d, 0x32, 0xc7, 0xd6, 0xbb, 0x36, 0xf6, 0xe, 0xd0, 0x40, 0xd0, 0xa2, 0x2c, 0x84, 0x49, 0xdd, 0x16, 0xbf, 0x84, 0xa3, 0xa0, 0xb1, 0x4a, 0xc8, 0x33, 0x23, 0xef, 0xa9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0x90, 0x5b, 0x1f, 0x96, 0x97, 0xc4, 0x6a, 0x9, 0x69, 0x0, 0xc3, 0xb0, 0x20, 0x88, 0x83, 0xe, 0xb1, 0xf7, 0x4e, 0x33, 0xd9, 0x1b, 0x7, 0xc3, 0xad, 0xf5, 0xd0, 0x72, 0x2b, 0xc8, 0xf1}} return a, nil } -var _stakingproxyWithdraw_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x5d\x6b\xea\x40\x10\x86\xef\xf3\x2b\xe6\x78\x71\x48\xe0\x20\xe7\xa2\xf4\x42\x6a\x25\x68\x3f\xa4\xa0\xc1\x58\x68\x2f\xc7\xec\x68\x16\xe3\xce\x32\x19\x89\x52\xfc\xef\x25\x5d\xab\x29\x9d\x9b\x61\x77\xbe\x9e\xf7\xb5\x3b\xcf\xa2\x90\x2b\x6e\xad\xdb\x64\xc2\x87\x23\xac\x85\x77\xf0\xff\x90\x2f\xd3\x97\xe9\xec\x29\x5b\xcc\xdf\xde\xd3\xc9\x64\xf1\x90\xe7\x51\xa4\x82\xae\xc6\x42\x2d\xbb\xd8\xb1\xa1\xe9\x64\x00\xb9\x8a\x75\x9b\x7f\x80\x3b\xde\x3b\x1d\xc0\xeb\xa3\x3d\xdc\xde\x24\xf0\x11\x45\x00\x00\x5e\xc8\xa3\x50\x8c\x45\x11\xea\xe9\x5e\xcb\x34\x3c\xda\x26\x38\x47\x45\x0a\xbe\x05\x78\xe6\xca\x90\xc0\x10\xce\x13\xfd\x15\x8b\x70\x73\xf7\xb7\x4b\xd9\x9f\xb1\xa1\xf6\x83\x24\xbb\x0e\xdd\xc7\x2d\xfc\x00\x7e\x75\xce\x3d\x09\x2a\xcb\x18\x3d\xae\x6c\x65\xf5\x98\x2b\x0b\x6e\x28\x43\x2d\x93\x0b\x43\x1b\xa3\x11\x78\x74\xb6\x88\x7b\x63\xde\x57\x06\x1c\x2b\x04\x02\x10\x5a\x93\x90\x2b\x08\x94\xa1\x0e\x37\x02\x33\x94\x5f\xf7\x7b\x49\xf4\x43\x4f\xdd\xf5\x75\xd8\x95\x77\x16\xd5\x05\xbd\x18\x1a\x72\xf2\xe7\xba\xab\xbb\xa7\xdf\x58\x2d\x8d\x60\xb3\xa0\x06\xc5\x90\x59\xf2\x96\x5c\x1d\x7f\xdb\x1f\x72\xd0\x74\x8a\x4e\xd1\x67\x00\x00\x00\xff\xff\x3f\x35\x0b\xc5\xe3\x01\x00\x00" +var _stakingproxyWithdraw_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x41\x4f\xf3\x30\x0c\x86\xef\xf9\x15\xfe\x7a\x98\x5a\xe9\x53\x4f\x88\xc3\xc4\x98\x60\x08\xc1\x05\x26\x06\xdc\xbd\xc6\x5b\xa3\x75\x71\xe4\xba\xea\x26\xb4\xff\x8e\xba\x8c\x2d\x08\x5f\x2c\xd9\xf1\xeb\xf7\x71\xdc\x36\xb0\x28\x2c\x14\x37\xce\xaf\xe7\xc2\xbb\x3d\xac\x84\xb7\x90\xa5\xa5\xcc\x18\x15\xf4\x2d\x56\xea\xd8\xe7\x9e\x2d\x3d\x3f\x8c\x61\xa1\xe2\xfc\xfa\x3f\xe0\x96\x3b\xaf\x63\xf8\x78\x74\xbb\xeb\xab\x02\xbe\x8c\x01\x00\x08\x42\x01\x85\x72\xac\xaa\xd8\xc7\x4e\xeb\xfc\x9e\x45\xb8\xff\xc4\xa6\xa3\x02\x46\x77\xb1\x37\xcc\xc0\x29\x1a\x52\x08\xc3\xd6\x27\x6e\x2c\x09\x4c\xe0\x24\x50\xb6\xca\x82\x6b\x2a\x97\x47\x89\x9b\x51\x6a\xb1\x7c\x61\x4b\x43\x81\x64\x7e\x19\xbe\xcd\x07\x98\x31\xfc\x79\xf9\x1a\x48\x50\x59\x66\x18\x70\xe9\x1a\xa7\xfb\x45\x14\x9f\xa3\xd6\xc5\xd9\xcb\x10\xd3\x29\x04\xf4\xae\xca\xb3\x19\x77\x8d\x05\xcf\x0a\xd1\x01\x08\xad\x48\xc8\x57\x04\xca\xd0\xc6\x1d\xd1\x3b\xd4\xc7\xfd\x59\x61\x7e\x71\xb5\xe9\x9d\x27\x29\xe6\x09\x2a\x35\x7a\xbe\x73\xcc\xc5\xbf\x8b\x56\xaa\x53\xf6\x4e\x6b\x2b\xd8\xbf\x51\x8f\x62\xc9\xbe\xf3\x86\x7c\x9b\xff\xfc\x4a\xcc\x91\xe9\x60\x0e\xe6\x3b\x00\x00\xff\xff\x44\x7a\x9d\x16\xf3\x01\x00\x00" func stakingproxyWithdraw_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -6120,11 +6140,11 @@ func stakingproxyWithdraw_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/withdraw_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe5, 0xb1, 0xc7, 0x2c, 0xab, 0x3c, 0x5b, 0xe5, 0xb1, 0xa4, 0x2e, 0xb, 0x7, 0xa6, 0x21, 0xff, 0x71, 0x28, 0x8f, 0x68, 0xb5, 0x96, 0x7, 0xf5, 0x2e, 0x1c, 0xf5, 0xc2, 0xcf, 0x22, 0xdb, 0xd3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0x67, 0xcd, 0x39, 0x60, 0x24, 0xa6, 0xba, 0xe0, 0x8a, 0xb5, 0x4e, 0x33, 0x37, 0x28, 0xc9, 0xc3, 0xda, 0x33, 0x76, 0x7b, 0xa, 0x4e, 0xd6, 0x9e, 0xc7, 0x9b, 0x7e, 0x8e, 0x7b, 0x77, 0x87}} return a, nil } -var _stakingproxyWithdraw_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6b\xf2\x40\x10\xc7\xef\xfb\x29\xe6\xf1\xf0\x90\x40\x91\x1e\x4a\x0f\x52\x2b\x41\xfb\x22\x05\x0d\x46\xa1\x3d\x8e\xc9\x68\x16\xe3\xce\x32\x19\x51\x29\x7e\xf7\x92\xae\xd5\x94\xce\x65\xd8\xd9\x79\xf9\xfd\xff\x76\xeb\x59\x14\x32\xc5\x8d\x75\xeb\x54\xf8\x70\x84\x95\xf0\x16\x6e\x0f\xd9\x3c\x79\x1b\x4f\x5e\xd2\xd9\xf4\xfd\x23\x19\x8d\x66\x4f\x59\x66\x8c\x0a\xba\x1a\x73\xb5\xec\x22\xc7\x05\x8d\x47\x3d\xc8\x54\xac\x5b\xdf\x00\x6e\x79\xe7\xb4\x07\x8b\x67\x7b\xb8\xbf\x8b\xe1\xd3\x18\x00\x00\x2f\xe4\x51\x28\xc2\x3c\x0f\xff\xc9\x4e\xcb\x24\x3c\x9a\x26\x38\x47\x45\x0a\xbe\x01\x78\xe5\xaa\x20\x81\x3e\x9c\x27\xba\x4b\x16\xe1\xfd\xc3\xff\x36\x65\x77\xc2\x05\x35\x05\x92\xf4\x3a\xf4\x18\x35\xf0\x3d\xf8\xd3\x39\xf5\x24\xa8\x2c\x43\xf4\xb8\xb4\x95\xd5\x63\xa6\x2c\xb8\xa6\x14\xb5\x8c\x2f\x0c\x4d\x0c\x06\xe0\xd1\xd9\x3c\xea\x0c\x79\x57\x15\xe0\x58\x21\x10\x80\xd0\x8a\x84\x5c\x4e\xa0\x0c\x75\xb8\x11\x98\xa1\xfc\xbe\xdf\x89\xcd\x2f\x3d\x75\xdb\xd7\x7e\x5b\xde\x59\x54\x1b\xf4\x62\x68\xc8\xf1\xbf\xeb\xae\xf6\x9e\xee\xde\x6a\x59\x08\xee\x17\xae\x29\x53\x31\xe7\x0d\xb9\x3a\xfa\xb1\x3f\xe4\xa0\xe9\x64\x4e\xe6\x2b\x00\x00\xff\xff\x10\x01\xbb\xeb\xe3\x01\x00\x00" +var _stakingproxyWithdraw_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\x4d\x6b\xf2\x40\x10\xbe\xef\xaf\x98\x37\x07\x49\xe0\x25\xa7\xd2\x83\xd4\x4a\x6b\x29\xed\xa5\x15\xac\xbd\x8f\xc9\x68\x16\xe3\xce\x32\x99\xa0\x52\xfc\xef\x65\xdd\x54\xb7\x74\x2e\x03\xcf\xec\x3c\x1f\xb3\x76\xe7\x59\x14\x16\x8a\x5b\xeb\x36\x73\xe1\xc3\x11\xd6\xc2\x3b\xc8\x52\x28\x33\x46\x05\x5d\x87\x95\x5a\x76\xb9\xe3\x9a\x5e\x9f\xc6\xb0\x50\xb1\x6e\xf3\x1f\x70\xc7\xbd\xd3\x31\x2c\x9f\xed\xe1\xf6\xa6\x80\x2f\x63\x00\x00\xbc\x90\x47\xa1\x1c\xab\x2a\xce\xb1\xd7\x26\x7f\x64\x11\xde\x7f\x62\xdb\x53\x01\xa3\x87\x38\x0b\x3b\x30\x54\x4b\x0a\x3e\xa8\xbe\x70\x5b\x93\xc0\x04\x06\x82\xb2\x53\x16\xdc\x50\xb9\x3a\x53\xdc\x8d\x52\x8b\xe5\x1b\xd7\x14\x00\x92\xf9\x75\xf9\x3e\x0f\x61\xc6\xf0\xe7\xe5\xbb\x27\x41\x65\x99\xa1\xc7\x95\x6d\xad\x1e\x17\x91\x7c\x8e\xda\x14\x17\x2f\xa1\xa6\x53\xf0\xe8\x6c\x95\x67\x33\xee\xdb\x1a\x1c\x2b\x44\x07\x20\xb4\x26\x21\x57\x11\x28\x43\x17\x35\xa2\x77\x68\xce\xfa\x59\x61\x7e\xe5\xea\xd2\x3b\x4f\xd2\x98\x43\xa8\xd4\xe8\xe5\xce\xb1\x17\xff\xae\x5c\x29\x4f\xb9\xb7\xda\xd4\x82\xfb\xa5\x0b\x30\xd5\x1f\xbc\x25\xd7\xe5\x3f\xbf\x12\x7b\xcc\x74\x32\x27\xf3\x1d\x00\x00\xff\xff\x6b\x4e\x2d\x38\xf3\x01\x00\x00" func stakingproxyWithdraw_unstakedCdcBytes() ([]byte, error) { return bindataRead( @@ -6140,11 +6160,11 @@ func stakingproxyWithdraw_unstakedCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/withdraw_unstaked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xf, 0x29, 0xf5, 0x62, 0x4a, 0xb5, 0x57, 0xd8, 0x30, 0x56, 0xc8, 0xbd, 0xe9, 0x8c, 0x9d, 0x40, 0x3, 0xa3, 0x63, 0xca, 0xca, 0x56, 0x54, 0x8d, 0x6c, 0x8c, 0x8b, 0x40, 0x53, 0xa1, 0xe3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb2, 0x72, 0x63, 0xb9, 0x44, 0x4, 0x84, 0x7a, 0xbd, 0x19, 0x88, 0x23, 0x78, 0x77, 0xb6, 0xf0, 0xfe, 0x8a, 0x5c, 0xf2, 0x6f, 0xa2, 0xf, 0xda, 0xdb, 0xb1, 0x89, 0x1c, 0x19, 0xb5, 0x56, 0x95}} return a, nil } -var _storagefeesAdminSet_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6f\xd3\x40\x10\xc5\xef\xfe\x14\xaf\x3d\x20\x57\x42\x31\x07\xc4\x21\xa2\x44\x86\xc6\x5c\xa8\x8a\xe2\x22\xce\xdb\xcd\x38\x5e\x64\xef\x5a\xb3\x63\x12\x84\xfc\xdd\xd1\xfa\x4f\x70\x09\x89\xba\x87\xe4\xe0\xf7\xde\xfc\xde\xce\x9a\xba\x71\x2c\xc8\x2a\xb7\xcf\xc5\xb1\xda\x51\x46\xe4\x51\xb0\xab\xf1\xe6\x90\x7d\x79\xf8\x9e\x3f\x3e\x6c\xd2\xcf\xeb\x6c\xbd\xce\xd3\xbb\xbb\xcd\x3a\xcf\xa3\x28\x49\xf0\x58\x1a\x0f\x61\x65\xbd\xd2\x62\x9c\x85\x2e\x95\xdd\x91\x87\x94\x84\xa2\x72\x7b\xf8\x21\x0f\x45\x08\x6c\x14\xab\x9a\x84\xd8\x47\x33\x53\x3c\x6a\x3e\xfe\x12\xf2\x5f\x89\x37\xe4\x89\x7f\xd2\x36\xcc\x5d\xe2\x5b\x66\x0e\xef\xde\xae\x5e\xa3\x36\xd6\xd4\x6d\x3d\x02\x0e\x22\x15\xfc\x47\xcd\x0d\x7e\x47\x00\xd0\xff\x54\x24\x50\xdb\xda\xd8\x0d\x15\x4b\xbc\xfa\xa7\xdb\x22\x0d\x9f\x8c\x17\x56\xe2\x38\xea\x1d\x0d\x53\xa3\x98\x62\xa5\xb5\x2c\x91\xb6\x52\xa6\x5a\xbb\xd6\xca\x94\x1b\x4e\x92\xe0\xc9\x31\xbb\x3d\x14\x98\x0a\x62\xb2\x9a\x20\xae\x6f\xdc\xcf\x83\x7b\xfa\x41\x5a\x8e\x0e\x4f\x55\xb1\x98\x48\x70\x8b\x10\xbf\x18\x32\xde\x5f\xc6\xfa\x10\x87\x0d\x2c\x91\x8c\x17\x34\xfd\x07\x65\x2f\xbc\x39\x0e\x09\x67\xb5\x42\xa3\xac\xd1\xf1\xf5\x27\xd7\x56\x5b\x58\x27\x13\xeb\x33\xd2\x67\x2b\xe9\xc1\xae\x87\xa0\x6e\xb8\x07\x3a\x90\x6e\x85\x66\xa5\x4d\x81\x0b\x3b\xc2\xd5\x2d\xac\xa9\x66\xfa\x93\xda\x0b\x4f\x32\xd6\xbc\xa7\x9d\xfa\x5f\xca\xa5\x57\x70\xf5\xb7\x68\x37\x87\x3a\xfb\x24\x5e\x88\x74\x7f\xce\x1f\x9f\x4d\x3e\x41\xe9\xa2\xee\x4f\x00\x00\x00\xff\xff\xec\x9d\x5e\x73\x3f\x03\x00\x00" +var _storagefeesAdminSet_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x2f\x3e\x04\x19\x8a\x74\x29\x3d\x98\xa6\x26\x29\xe8\xd4\xd0\x92\xfe\x3b\x4f\xd6\x23\x6b\x8b\xb4\x2b\x66\x47\x75\x4a\xd1\x77\x2f\xab\x3f\xae\x12\xd7\xa6\x7b\x90\x40\x7a\xef\xcd\x6f\x66\xd6\x36\xad\x17\x45\x51\xfb\xc3\x67\xf5\x42\x7b\x2e\x98\x03\x4a\xf1\x0d\x56\x2f\xbe\xae\x92\x24\xcf\xf1\xa5\xb2\x01\x2a\xe4\x02\x19\xb5\xde\xc1\x54\xe4\xf6\x1c\xa0\x15\xa3\xac\xfd\x01\x61\xb4\xa0\x8c\x49\x2d\x09\x35\xac\x2c\x21\x59\x98\xd2\x49\x73\xf7\x4b\x39\x7c\x62\x79\xe0\xc0\xf2\x93\x77\xc5\x87\x8f\xdf\x37\xf8\x5a\xd8\xa7\x37\xaf\xb7\xaf\xd0\x58\x67\x9b\xae\x99\x18\x46\x11\x45\xff\x51\xb3\xc6\xef\x04\x00\x86\x47\xcd\x0a\xda\x35\xd6\x3d\x70\xb9\xc1\xf5\x0b\xfc\xec\x36\xfe\xb2\x41\x85\xd4\x4b\x32\x38\x5a\xe1\x96\x84\x53\x32\x46\x37\xa0\x4e\xab\xf4\xce\x8b\xf8\xc3\x37\xaa\x3b\x5e\xe3\xfa\xd6\x18\xdf\x39\x9d\xcb\xc4\x93\xe7\x78\x1c\x34\x20\x08\x97\x2c\xec\x0c\x43\xfd\x30\x80\xa1\x3c\xfc\xe3\x0f\x36\x7a\x74\x04\xae\xcb\x6c\x06\xc3\x0d\x62\xb5\x6c\x9a\x40\x36\x66\xbd\xbd\x4c\xfb\x2e\x8d\x1b\xd9\x20\x9f\x5c\xf3\x3b\x2a\x07\xe1\xfa\x58\x2c\x9e\xed\x16\x2d\x39\x6b\xd2\xd5\x7b\xdf\xd5\x3b\x38\xaf\x33\xf3\x33\xe2\x67\x9b\x1a\x00\x57\x63\x50\x3f\x8e\x87\x9f\xd8\x74\xca\x8b\xe6\x6d\x89\x0b\xab\xc3\xd5\x0d\x9c\xad\x17\xfa\x93\xf6\xb3\xc0\x3a\xb5\x79\xcf\x7b\xfa\x57\xca\xa5\xcb\x71\xf5\xb7\xd1\x7e\x09\x75\xf6\xa6\xfc\x27\xd2\xfd\x39\x7f\x7a\x36\xf9\x04\xa5\x4f\xfa\x3f\x01\x00\x00\xff\xff\x05\xa9\x75\x7a\x4f\x03\x00\x00" func storagefeesAdminSet_parametersCdcBytes() ([]byte, error) { return bindataRead( @@ -6160,11 +6180,11 @@ func storagefeesAdminSet_parametersCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/admin/set_parameters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa7, 0xa3, 0x32, 0x6, 0x3f, 0x4f, 0xeb, 0xc7, 0xce, 0x3b, 0x61, 0xd9, 0x69, 0x36, 0x97, 0xdd, 0xaf, 0xd5, 0xa1, 0x25, 0x5d, 0xda, 0xa7, 0x27, 0x20, 0xcd, 0x26, 0x35, 0xa6, 0xb4, 0x82, 0xd1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0xd9, 0x32, 0xf5, 0x38, 0x90, 0x33, 0x23, 0xa, 0xeb, 0x8b, 0x76, 0xae, 0x50, 0x25, 0x2e, 0x3c, 0x95, 0x89, 0x31, 0x1, 0xd0, 0xa6, 0x9b, 0x56, 0x9b, 0x20, 0xe1, 0x48, 0x5e, 0xa9, 0x5c}} return a, nil } -var _storagefeesScriptsGet_account_available_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\xb1\x0e\x82\x30\x14\x46\xe1\xbd\x4f\xf1\x8f\xb2\x18\x07\xe3\xc0\x56\x43\xeb\x62\x42\x42\x31\xce\x17\xb8\x98\xc6\xd2\x92\xd2\x2a\x89\xf1\xdd\x5d\x9c\xd8\xce\x74\x3e\x3b\xcd\x21\x26\x68\x17\xde\x26\x85\x48\x0f\xd6\xcc\x0b\xc6\x18\x26\x1c\x56\x7d\xad\xef\xa6\xad\x1b\x79\x51\x5a\x29\x23\xab\xaa\x51\xc6\x08\x31\xe7\x0e\x63\xf6\x98\xc8\xfa\x1d\xf5\x7d\xc8\x3e\xc9\x61\x88\xbc\x2c\x25\xfe\x51\x94\xb8\x69\xbb\x9e\x8e\xf8\x08\x00\x88\x9c\x72\xf4\x5b\x69\x3f\xf0\x48\xd9\xa5\x36\x3c\xd9\xcb\x17\x59\x47\x9d\xe3\x33\x39\xf2\x3d\x6f\xd6\x85\xf8\x0a\xf1\x0b\x00\x00\xff\xff\x79\xc3\x9c\x46\xb1\x00\x00\x00" +var _storagefeesScriptsGet_account_available_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8d\x31\x0e\xc2\x30\x0c\x45\xf7\x9c\xe2\xab\x53\xbb\x30\x21\x86\x6e\x65\xe8\x05\x80\x03\x98\xd4\x45\x11\xae\x8d\x9c\x04\x90\x10\x77\x67\x61\xca\xf6\xf4\x86\xf7\xd2\xf6\x30\x2f\x98\xc5\x5e\xa7\x62\x4e\x37\x9e\x99\x33\x56\xb7\x0d\x5d\x63\xbb\x10\x28\x46\xce\xb9\x27\x91\x01\x6b\x55\x6c\x94\xb4\xa7\x18\xad\x6a\x99\x96\xc5\x39\xe7\x11\x7f\x18\x46\x5c\xe6\xf4\x3e\xec\xf1\x09\x00\xe0\x5c\xaa\x6b\xbb\xda\x2d\xbc\x52\x95\x72\xb6\x3b\xeb\xf4\xa4\x24\x74\x15\x3e\x92\x90\x46\x6e\xd2\x43\xf8\x86\xf0\x0b\x00\x00\xff\xff\xee\x68\x60\x24\xb2\x00\x00\x00" func storagefeesScriptsGet_account_available_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -6180,11 +6200,11 @@ func storagefeesScriptsGet_account_available_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/scripts/get_account_available_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0xfd, 0x85, 0x8, 0x30, 0x9, 0x65, 0xb6, 0x3a, 0x50, 0x6, 0x71, 0x64, 0x59, 0xeb, 0x4d, 0xb0, 0x14, 0xfb, 0xae, 0xc5, 0xa0, 0x16, 0xaa, 0x51, 0xa, 0x9a, 0x9d, 0x98, 0x6e, 0xb0, 0x97}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x32, 0x50, 0xda, 0x76, 0x6e, 0x91, 0xb, 0x23, 0x25, 0x39, 0x44, 0xac, 0xdf, 0x2c, 0xbb, 0xea, 0x83, 0xa1, 0xba, 0xc6, 0x85, 0x46, 0x4d, 0xac, 0x95, 0xe4, 0x42, 0xdd, 0x66, 0xb6, 0x86, 0xba}} return a, nil } -var _storagefeesScriptsGet_accounts_capacity_for_transaction_storage_checkCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\x41\x6b\x02\x31\x10\x85\xef\xfb\x2b\xde\x51\x61\x29\x3d\x94\x1e\xf6\xb6\xe8\xa6\x97\x82\x60\xb6\xf4\x20\x1e\xa6\x71\xb4\xa1\xdd\x64\x99\x24\x34\x52\xfa\xdf\x8b\x1a\x44\xd6\x5c\xf2\xf8\x78\xcc\xfb\xec\x30\x7a\x89\x50\xdf\xfe\x47\x47\x2f\x74\x60\xc5\x1c\xb0\x17\x3f\xe0\x31\xab\xd7\xd5\xbb\xee\x57\xeb\xf6\xa5\x53\x5d\xa7\xdb\xe5\x72\xdd\x69\x5d\x55\x63\xfa\xc0\x3e\x39\x0c\x64\xdd\x8c\x8c\xf1\xc9\xc5\x76\xb7\x13\x0e\x81\x43\x83\x4d\xc9\xdb\x1a\x23\x1d\x59\x1a\x14\x50\x63\xa0\xdc\xe7\xd3\x44\x83\x37\x65\xf3\xf3\xd3\xbc\xc1\xe6\x92\xb6\xf8\xad\x00\x40\x38\x26\x71\x53\xa5\x87\x03\xc7\xf6\xb2\x14\x16\x34\x92\xb1\xf1\xa8\xbc\xf4\x42\x2e\x90\x89\xd6\xbb\x52\x5e\x7c\xb2\xf9\x9a\x9d\x2f\x9d\xde\xbd\xdd\x94\xd4\xb8\x96\x8b\xed\xf9\xbb\xc1\x37\xd2\xd7\x38\xaf\xfe\xfe\x03\x00\x00\xff\xff\xbd\x5a\xcf\x11\x3c\x01\x00\x00" +var _storagefeesScriptsGet_accounts_capacity_for_transaction_storage_checkCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\x21\x27\x1b\x4c\x4f\xa5\x07\xdd\x42\x40\x3f\xd0\xf4\x14\x72\x58\x94\x4d\x2a\x6a\x49\x66\x57\xa6\x0e\xa5\xff\x5e\x12\x0b\x63\x5c\x5d\x34\x3c\x86\xd9\x17\xe2\x90\xa5\xc0\xf5\xf9\xfb\xbd\x64\xa1\x1b\x3b\x66\xc5\x55\x72\xc4\x6e\x43\x77\xc6\x90\xf7\xac\xda\x50\xdf\xb7\xb8\x8e\x09\x91\x42\x6a\xc8\xfb\x3c\xa6\xb2\xbf\x5c\x84\x55\x59\x2d\x4e\x35\x9f\x3b\x0c\x74\x67\xb1\xa8\xa0\x43\xa4\xe9\x38\x3d\xd6\x2c\x3e\x5c\x98\xde\x5e\x5b\x8b\xd3\x9c\xce\xf8\x31\x00\x20\x5c\x46\x49\x5b\xa7\x97\x1b\x97\xfd\x7c\x49\x0f\x34\x90\x0f\xe5\xee\xb2\x1c\x85\x92\x92\x2f\x21\xa7\x5a\x3e\x7c\xb2\xff\x6a\x9e\x4b\x8f\xf7\xdf\x6e\x4b\x3a\x2c\xe5\x6a\xfb\xfc\x56\x78\x25\xbd\xc4\xd6\xfc\xfe\x05\x00\x00\xff\xff\x33\xc0\x69\x3d\x3d\x01\x00\x00" func storagefeesScriptsGet_accounts_capacity_for_transaction_storage_checkCdcBytes() ([]byte, error) { return bindataRead( @@ -6200,11 +6220,11 @@ func storagefeesScriptsGet_accounts_capacity_for_transaction_storage_checkCdc() } info := bindataFileInfo{name: "storageFees/scripts/get_accounts_capacity_for_transaction_storage_check.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0x34, 0x74, 0x75, 0xae, 0x8f, 0x8, 0xcb, 0xda, 0x26, 0x6c, 0x8f, 0x86, 0x16, 0xb6, 0x27, 0x87, 0xd8, 0x97, 0xb6, 0x67, 0x1d, 0x1d, 0x3, 0xc4, 0xdb, 0xf1, 0x9a, 0x5f, 0xa8, 0x96, 0x9f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9b, 0xdf, 0x5, 0xd2, 0x29, 0xa8, 0x2a, 0x4b, 0xa1, 0xae, 0xb3, 0x56, 0xc, 0xa9, 0x35, 0x83, 0xaa, 0xa7, 0x33, 0x53, 0x3b, 0xa3, 0x19, 0x1b, 0x71, 0x36, 0xbc, 0x97, 0x1, 0x9, 0x48, 0xcc}} return a, nil } -var _storagefeesScriptsGet_storage_capacityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\xb1\x0a\xc2\x30\x14\x46\xe1\x3d\x4f\xf1\x8f\x76\x11\x07\x71\xe8\x16\x6c\xe2\x22\x14\x1a\xc5\xf9\x9a\xa6\x12\x68\x93\x92\xdc\x60\x45\x7c\x77\x07\x9d\xba\x9d\xe9\x3b\x7e\x9a\x63\x62\xe8\x31\x3e\x0d\xc7\x44\x0f\xa7\x9d\xcb\x18\x52\x9c\xb0\x5b\xf4\xb9\xbd\x99\x4b\xdb\xc9\x93\xd2\x4a\x19\xd9\x34\x9d\x32\x46\x88\xb9\xdc\x31\x94\x80\x89\x7c\xd8\x90\xb5\xb1\x04\x96\x7d\x9f\x5c\xce\x35\xfe\x51\xd5\xb8\x6a\xbf\x1c\xf6\x78\x0b\x00\x48\x8e\x4b\x0a\xeb\xd3\xd6\xd2\x68\xcb\x48\xec\xe4\x8f\x39\xd2\x4c\xd6\xf3\x6b\xc5\x56\xe2\x23\xc4\x37\x00\x00\xff\xff\x28\x3f\x05\x18\xad\x00\x00\x00" +var _storagefeesScriptsGet_storage_capacityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\xbd\xaa\xc2\x40\x10\xc5\xf1\x7e\x9e\xe2\x90\x2a\x69\x6e\x75\xb1\x48\x17\x84\xbc\x80\xf8\x00\xc3\x64\x22\x0b\xfb\x11\x66\x67\x51\x11\xdf\xdd\x42\xab\xed\x0e\xa7\xf8\xfd\x43\x3a\x8a\x39\xd6\x58\xee\x17\x2f\xc6\x37\x5d\x55\x2b\x76\x2b\x09\x43\xf7\x0e\x44\x2c\xa2\xb5\x8e\x1c\xe3\x84\xbd\x65\x24\x0e\x79\x64\x91\xd2\xb2\x2f\xdb\x66\x5a\xeb\x8c\xdf\x98\x66\x5c\xd7\xf0\x38\xfd\xe3\x45\x00\x60\xea\xcd\x72\x9f\xfa\x13\x8e\xd2\x22\xbb\x2e\x5f\xe6\xcc\x07\x4b\xf0\x67\xc7\x4e\xf4\x26\xfa\x04\x00\x00\xff\xff\x8c\x0d\x5c\xd9\xae\x00\x00\x00" func storagefeesScriptsGet_storage_capacityCdcBytes() ([]byte, error) { return bindataRead( @@ -6220,11 +6240,11 @@ func storagefeesScriptsGet_storage_capacityCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/scripts/get_storage_capacity.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1b, 0x18, 0xd9, 0xdf, 0xe2, 0x7a, 0x84, 0x72, 0x8c, 0xe3, 0xb1, 0x8d, 0xfc, 0x60, 0x9a, 0x3b, 0x64, 0xba, 0x43, 0xad, 0xab, 0x45, 0xaa, 0x55, 0xd9, 0x37, 0x6b, 0x76, 0x54, 0x24, 0x1f, 0x95}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x63, 0xd2, 0xf3, 0x9f, 0xea, 0xbb, 0x73, 0x3a, 0x51, 0xc8, 0xd, 0x5e, 0xc2, 0x63, 0x95, 0xa, 0x55, 0x31, 0x8e, 0x32, 0xbd, 0x2f, 0x88, 0xfe, 0xca, 0x12, 0x76, 0xa7, 0x3d, 0x7f, 0x40, 0xa7}} return a, nil } -var _storagefeesScriptsGet_storage_fee_conversionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x2e\xc9\x2f\x4a\x4c\x4f\x75\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x0f\x0e\xf1\x0f\x72\x74\x77\x75\x73\x75\x0d\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x37\x52\xaf\x18\xc2\xf6\x4d\x4d\x4f\x74\xaa\x2c\x49\x2d\x0e\x48\x2d\x0a\x4a\x2d\x4e\x2d\x2a\x4b\x4d\x01\x59\xc3\x55\xcb\xc5\x05\x08\x00\x00\xff\xff\x26\x69\x66\x9f\x8d\x00\x00\x00" +var _storagefeesScriptsGet_storage_fee_conversionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x2e\xc9\x2f\x4a\x4c\x4f\x75\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x50\x42\x13\x55\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x37\x53\xaf\x18\xc2\xf6\x4d\x4d\x4f\x74\xaa\x2c\x49\x2d\x0e\x48\x2d\x0a\x4a\x2d\x4e\x2d\x2a\x4b\x4d\x71\xf3\xf1\x0f\xe7\xaa\xe5\xe2\x02\x04\x00\x00\xff\xff\x0f\x9e\x44\xff\x8e\x00\x00\x00" func storagefeesScriptsGet_storage_fee_conversionCdcBytes() ([]byte, error) { return bindataRead( @@ -6240,11 +6260,11 @@ func storagefeesScriptsGet_storage_fee_conversionCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/scripts/get_storage_fee_conversion.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0x34, 0x70, 0x9c, 0x9c, 0xb7, 0x42, 0x13, 0x80, 0x4a, 0x0, 0x5e, 0x5b, 0x24, 0x1a, 0xee, 0x7d, 0x4e, 0x56, 0x8c, 0x3b, 0x21, 0xe6, 0x9f, 0xf8, 0xaf, 0xb2, 0xe6, 0x4d, 0xda, 0xfa, 0xd7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0x5c, 0x5d, 0x1, 0xde, 0x2a, 0xe5, 0x96, 0x6b, 0x2b, 0x70, 0x3a, 0x9c, 0xae, 0x50, 0x36, 0x4a, 0xea, 0xf2, 0xef, 0x3d, 0xdd, 0xf7, 0xa2, 0x20, 0x5c, 0x52, 0xf6, 0xb7, 0x93, 0x56, 0xb2}} return a, nil } -var _storagefeesScriptsGet_storage_fee_minCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcc\xb1\x0a\xc2\x30\x10\x06\xe0\xfd\x9e\xe2\x1f\x75\x11\x07\x71\x70\x2b\x34\x71\x11\x0a\x89\xe2\x1c\xe1\x2a\x07\x5e\x52\xae\x89\x16\xc4\x77\x77\x71\x72\xfd\x86\x4f\x74\x2a\x56\xe1\x1f\xe5\x15\x6b\xb1\x74\x67\xcf\x3c\x63\xb4\xa2\xd8\x2e\xfe\x34\x5c\xe3\x79\x08\xdd\xd1\x79\xe7\x62\xd7\xf7\xc1\xc5\x48\x34\xb5\x1b\xc6\x96\xa1\x49\xf2\x6a\x7d\xc0\xc5\xcb\xb2\xdf\xe1\x4d\x00\x60\x5c\x9b\xe5\xff\x72\xa3\x92\x45\x9b\xfe\x28\xf0\xcc\xf6\x4c\x55\x4a\xa6\x0f\xd1\x37\x00\x00\xff\xff\x80\x78\xb4\x0e\x87\x00\x00\x00" +var _storagefeesScriptsGet_storage_fee_minCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcc\x31\x0a\x02\x41\x0c\x05\xd0\x3e\xa7\xf8\x6c\xb5\xdb\x58\x89\x85\x07\x98\x03\x28\x1e\x20\x2c\x59\x09\x4c\x12\xc9\xcc\xa8\x20\xde\xdd\xc6\x6a\xdb\x57\x3c\xb5\x47\x64\x47\xa9\xf1\xba\xf6\x48\xbe\x4b\x11\x69\xd8\x32\x0c\xd3\x4e\x27\x22\x5e\x57\x69\x6d\xe6\x5a\x17\x6c\xc3\x61\xac\x3e\x2f\x67\xdc\x8a\xbe\x4f\x47\x7c\x08\x00\x52\xfa\x48\xdf\x9f\x07\x53\x57\x1b\xf6\xa7\x8b\x34\xc9\x27\x77\x0d\xa7\x2f\xd1\x2f\x00\x00\xff\xff\x10\x6e\x9d\x6a\x88\x00\x00\x00" func storagefeesScriptsGet_storage_fee_minCdcBytes() ([]byte, error) { return bindataRead( @@ -6260,7 +6280,7 @@ func storagefeesScriptsGet_storage_fee_minCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/scripts/get_storage_fee_min.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0x6d, 0xce, 0x10, 0xa9, 0x56, 0xe9, 0xc8, 0x0, 0xe6, 0x53, 0xcf, 0xc8, 0xb4, 0x52, 0x31, 0x44, 0xca, 0x1e, 0xe7, 0x1d, 0x2e, 0xe0, 0x25, 0xfd, 0xf5, 0x2c, 0x90, 0x3d, 0xbc, 0x7d, 0xeb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x65, 0x59, 0xec, 0xe1, 0xe, 0xc5, 0x8d, 0x9f, 0xd9, 0x60, 0xe4, 0x4e, 0xd0, 0x48, 0x59, 0xf0, 0xe1, 0x96, 0xc1, 0xc, 0xa, 0xd6, 0x95, 0x97, 0xa3, 0x50, 0x4c, 0xd1, 0x1d, 0x13, 0x3f, 0x1a}} return a, nil } @@ -6373,6 +6393,9 @@ var _bindata = map[string]func() (*asset, error){ "FlowServiceAccount/set_is_account_creation_restricted.cdc": flowserviceaccountSet_is_account_creation_restrictedCdc, "FlowServiceAccount/set_tx_fee_parameters.cdc": flowserviceaccountSet_tx_fee_parametersCdc, "FlowServiceAccount/set_tx_fee_surge_factor.cdc": flowserviceaccountSet_tx_fee_surge_factorCdc, + "accounts/add_key.cdc": accountsAdd_keyCdc, + "accounts/create_new_account.cdc": accountsCreate_new_accountCdc, + "accounts/revoke_key.cdc": accountsRevoke_keyCdc, "dkg/admin/force_stop_dkg.cdc": dkgAdminForce_stop_dkgCdc, "dkg/admin/publish_participant.cdc": dkgAdminPublish_participantCdc, "dkg/admin/set_safe_threshold.cdc": dkgAdminSet_safe_thresholdCdc, @@ -6522,7 +6545,6 @@ var _bindata = map[string]func() (*asset, error){ "idTableStaking/scripts/get_total_staked.cdc": idtablestakingScriptsGet_total_stakedCdc, "idTableStaking/scripts/get_total_staked_by_type.cdc": idtablestakingScriptsGet_total_staked_by_typeCdc, "idTableStaking/scripts/get_weekly_payout.cdc": idtablestakingScriptsGet_weekly_payoutCdc, - "inspect_field.cdc": inspect_fieldCdc, "lockedTokens/admin/admin_create_shared_accounts.cdc": lockedtokensAdminAdmin_create_shared_accountsCdc, "lockedTokens/admin/admin_deploy_contract.cdc": lockedtokensAdminAdmin_deploy_contractCdc, "lockedTokens/admin/admin_deposit_account_creator.cdc": lockedtokensAdminAdmin_deposit_account_creatorCdc, @@ -6535,7 +6557,6 @@ var _bindata = map[string]func() (*asset, error){ "lockedTokens/admin/custody_create_shared_accounts.cdc": lockedtokensAdminCustody_create_shared_accountsCdc, "lockedTokens/admin/custody_setup_account_creator.cdc": lockedtokensAdminCustody_setup_account_creatorCdc, "lockedTokens/admin/deposit_locked_tokens.cdc": lockedtokensAdminDeposit_locked_tokensCdc, - "lockedTokens/admin/get_unlocking_bad_accounts.cdc": lockedtokensAdminGet_unlocking_bad_accountsCdc, "lockedTokens/admin/unlock_tokens.cdc": lockedtokensAdminUnlock_tokensCdc, "lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc": lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc, "lockedTokens/delegator/delegate_new_tokens.cdc": lockedtokensDelegatorDelegate_new_tokensCdc, @@ -6659,11 +6680,13 @@ const AssetDebug = false // directory embedded in the file by go-bindata. // For example if you run go-bindata on data/... and data contains the // following hierarchy: -// data/ -// foo.txt -// img/ -// a.png -// b.png +// +// data/ +// foo.txt +// img/ +// a.png +// b.png +// // then AssetDir("data") would return []string{"foo.txt", "img"}, // AssetDir("data/img") would return []string{"a.png", "b.png"}, // AssetDir("foo.txt") and AssetDir("notexist") would return an error, and @@ -6718,6 +6741,11 @@ var _bintree = &bintree{nil, map[string]*bintree{ "set_tx_fee_parameters.cdc": {flowserviceaccountSet_tx_fee_parametersCdc, map[string]*bintree{}}, "set_tx_fee_surge_factor.cdc": {flowserviceaccountSet_tx_fee_surge_factorCdc, map[string]*bintree{}}, }}, + "accounts": {nil, map[string]*bintree{ + "add_key.cdc": {accountsAdd_keyCdc, map[string]*bintree{}}, + "create_new_account.cdc": {accountsCreate_new_accountCdc, map[string]*bintree{}}, + "revoke_key.cdc": {accountsRevoke_keyCdc, map[string]*bintree{}}, + }}, "dkg": {nil, map[string]*bintree{ "admin": {nil, map[string]*bintree{ "force_stop_dkg.cdc": {dkgAdminForce_stop_dkgCdc, map[string]*bintree{}}, @@ -6895,7 +6923,6 @@ var _bintree = &bintree{nil, map[string]*bintree{ "get_weekly_payout.cdc": {idtablestakingScriptsGet_weekly_payoutCdc, map[string]*bintree{}}, }}, }}, - "inspect_field.cdc": {inspect_fieldCdc, map[string]*bintree{}}, "lockedTokens": {nil, map[string]*bintree{ "admin": {nil, map[string]*bintree{ "admin_create_shared_accounts.cdc": {lockedtokensAdminAdmin_create_shared_accountsCdc, map[string]*bintree{}}, @@ -6910,7 +6937,6 @@ var _bintree = &bintree{nil, map[string]*bintree{ "custody_create_shared_accounts.cdc": {lockedtokensAdminCustody_create_shared_accountsCdc, map[string]*bintree{}}, "custody_setup_account_creator.cdc": {lockedtokensAdminCustody_setup_account_creatorCdc, map[string]*bintree{}}, "deposit_locked_tokens.cdc": {lockedtokensAdminDeposit_locked_tokensCdc, map[string]*bintree{}}, - "get_unlocking_bad_accounts.cdc": {lockedtokensAdminGet_unlocking_bad_accountsCdc, map[string]*bintree{}}, "unlock_tokens.cdc": {lockedtokensAdminUnlock_tokensCdc, map[string]*bintree{}}, "unlock_tokens_for_multiple_accounts.cdc": {lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc, map[string]*bintree{}}, }}, @@ -7079,7 +7105,7 @@ func RestoreAsset(dir, name string) error { if err != nil { return err } - err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode()) + err = os.WriteFile(_filePath(dir, name), data, info.Mode()) if err != nil { return err } diff --git a/lib/go/test/epoch_test_helpers.go b/lib/go/test/epoch_test_helpers.go index 2853b6055..3d377a758 100644 --- a/lib/go/test/epoch_test_helpers.go +++ b/lib/go/test/epoch_test_helpers.go @@ -130,6 +130,81 @@ type EpochCommit struct { dkgPubKeys []string } +// EpochRecover used to verify EpochRecover event fields in tests. +type EpochRecover struct { + counter uint64 + nodeInfoLength int + firstView uint64 + finalView uint64 + collectorClusters []cadence.Value + randomSource string + dkgPhase1FinalView uint64 + dkgPhase2FinalView uint64 + dkgPhase3FinalView uint64 + targetDuration uint64 + targetEndTime uint64 + clusterQCVoteDataLength int + dkgPubKeys []string +} + +type EpochRecoverEvent flow.Event + +// Counter returns counter field in EpochRecover event. +func (evt EpochRecoverEvent) Counter() cadence.UInt64 { + return evt.Value.Fields[0].(cadence.UInt64) +} + +// NodeInfo returns nodeInfo field in EpochRecover event. +func (evt EpochRecoverEvent) NodeInfo() cadence.Array { + return evt.Value.Fields[1].(cadence.Array) +} + +// FirstView returns firstView field in EpochRecover event. +func (evt EpochRecoverEvent) FirstView() cadence.UInt64 { + return evt.Value.Fields[2].(cadence.UInt64) +} + +// FinalView returns finalView field in EpochRecover event. +func (evt EpochRecoverEvent) FinalView() cadence.UInt64 { + return evt.Value.Fields[3].(cadence.UInt64) +} + +// CollectorClusters returns collectorClusters field in EpochRecover event. +func (evt EpochRecoverEvent) CollectorClusters() cadence.Array { + return evt.Value.Fields[4].(cadence.Array) +} + +// RandomSource returns randomSource field in EpochRecover event. +func (evt EpochRecoverEvent) RandomSource() cadence.String { + return evt.Value.Fields[5].(cadence.String) +} + +// DKGFinalViews returns dkgFinalViews field in EpochRecover event. +func (evt EpochRecoverEvent) DKGFinalViews() (cadence.UInt64, cadence.UInt64, cadence.UInt64) { + fields := evt.Value.Fields + return fields[6].(cadence.UInt64), fields[7].(cadence.UInt64), fields[8].(cadence.UInt64) +} + +// TargetDuration returns targetDuration field in EpochRecover event. +func (evt EpochRecoverEvent) TargetDuration() cadence.UInt64 { + return evt.Value.Fields[9].(cadence.UInt64) +} + +// TargetEndTime returns targetEndTime field in EpochRecover event. +func (evt EpochRecoverEvent) TargetEndTime() cadence.UInt64 { + return evt.Value.Fields[10].(cadence.UInt64) +} + +// ClusterQCVoteData returns clusterQCVoteData field in EpochRecover event. +func (evt EpochRecoverEvent) ClusterQCVoteData() cadence.Array { + return evt.Value.Fields[11].(cadence.Array) +} + +// DKGPubKeys returns dkgPubKeys field in EpochRecover event. +func (evt EpochRecoverEvent) DKGPubKeys() cadence.Array { + return evt.Value.Fields[12].(cadence.Array) +} + // Go event definitions for the epoch events // Can be used with the SDK to retreive and parse epoch events @@ -714,6 +789,55 @@ func verifyEpochCommit( } +// verifyEpochRecover verifies that the EpochRecover event values are equal to the provided expected values +func verifyEpochRecover( + t *testing.T, + adapter *adapters.SDKAdapter, + epochAddress flow.Address, + expectedRecover EpochRecover) { + var emittedEvent EpochRecoverEvent + evtTypeStr := fmt.Sprintf("A.%s.FlowEpoch.EpochRecover", epochAddress.String()) + var i uint64 + i = 0 + for i < 1000 { + results, _ := adapter.GetEventsForHeightRange(context.Background(), evtTypeStr, i, i) + + for _, result := range results { + for _, event := range result.Events { + if event.Type == evtTypeStr { + emittedEvent = EpochRecoverEvent(event) + } + } + } + + i = i + 1 + } + + assertEqual(t, cadence.NewUInt64(expectedRecover.counter), emittedEvent.Counter()) + assertEqual(t, expectedRecover.nodeInfoLength, len(emittedEvent.NodeInfo().Values)) + assertEqual(t, cadence.NewUInt64(expectedRecover.firstView), emittedEvent.FirstView()) + assertEqual(t, cadence.NewUInt64(expectedRecover.finalView), emittedEvent.FinalView()) + verifyCollectorClusters(t, expectedRecover.collectorClusters, emittedEvent.CollectorClusters().Values) + assertEqual(t, cadence.String(expectedRecover.randomSource), emittedEvent.RandomSource()) + dkgPhase1FinalView, dkgPhase2FinalView, dkgPhase3FinalView := emittedEvent.DKGFinalViews() + assertEqual(t, cadence.NewUInt64(expectedRecover.dkgPhase1FinalView), dkgPhase1FinalView) + assertEqual(t, cadence.NewUInt64(expectedRecover.dkgPhase2FinalView), dkgPhase2FinalView) + assertEqual(t, cadence.NewUInt64(expectedRecover.dkgPhase3FinalView), dkgPhase3FinalView) + assertEqual(t, cadence.NewUInt64(expectedRecover.targetDuration), emittedEvent.TargetDuration()) + assertEqual(t, cadence.NewUInt64(expectedRecover.targetEndTime), emittedEvent.TargetEndTime()) + assertEqual(t, expectedRecover.clusterQCVoteDataLength, len(emittedEvent.ClusterQCVoteData().Values)) + assertEqual(t, len(expectedRecover.dkgPubKeys), len(emittedEvent.DKGPubKeys().Values)) +} + +// verifyCollectorClusters verifies both collector clusters are equal. +func verifyCollectorClusters(t *testing.T, expected, got []cadence.Value) { + for i, cluster := range got { + for j, node := range cluster.(cadence.Array).Values { + assertEqual(t, expected[i].(cadence.Array).Values[j], node) + } + } +} + // expectedTargetEndTime returns the expected `targetEndTime` for the given target epoch, // as a second-precision Unix time. func expectedTargetEndTime(timingConfig cadence.Value, targetEpoch uint64) uint64 { diff --git a/lib/go/test/flow_epoch_test.go b/lib/go/test/flow_epoch_test.go index ac30d5303..d7e680481 100644 --- a/lib/go/test/flow_epoch_test.go +++ b/lib/go/test/flow_epoch_test.go @@ -1363,8 +1363,7 @@ func TestEpochReset(t *testing.T) { } func TestEpochRecover(t *testing.T) { - b, _, accountKeys, env := newTestSetup(t) - + b, adapter, accountKeys, env := newTestSetup(t) // Create new keys for the epoch account idTableAccountKey, IDTableSigner := accountKeys.NewWithSigner() @@ -1434,13 +1433,8 @@ func TestEpochRecover(t *testing.T) { false, ) - clusterQCs := make([][]string, numClusters) - clusterQCs[0] = make([]string, 1) - clusterQCs[1] = make([]string, 1) - - // collectorVoteHasher := crypto.NewExpandMsgXOFKMAC128(collectorVoteTag) - t.Run("Can recover the epoch and have everything return to normal", func(t *testing.T) { + epochTimingConfigResult := executeScriptAndCheck(t, b, templates.GenerateGetEpochTimingConfigScript(env), nil) var startView uint64 = 100 var stakingEndView uint64 = 120 @@ -1451,8 +1445,12 @@ func TestEpochRecover(t *testing.T) { tx.AddArgument(cadence.NewUInt64(startView)) tx.AddArgument(cadence.NewUInt64(stakingEndView)) tx.AddArgument(cadence.NewUInt64(endView)) - tx.AddArgument(cadence.NewArray([]cadence.Value{})) // collectorClusters - tx.AddArgument(cadence.NewArray([]cadence.Value{})) // clusterQCVoteData + collectorClusters := make([]cadence.Value, 3) + collectorClusters[0] = cadence.NewArray([]cadence.Value{CadenceString("node_1"), CadenceString("node_2"), CadenceString("node_3")}) + collectorClusters[1] = cadence.NewArray([]cadence.Value{CadenceString("node_4"), CadenceString("node_5"), CadenceString("node_6")}) + collectorClusters[2] = cadence.NewArray([]cadence.Value{CadenceString("node_7"), CadenceString("node_8"), CadenceString("node_9")}) + tx.AddArgument(cadence.NewArray(collectorClusters)) // collectorClusters + tx.AddArgument(cadence.NewArray(make([]cadence.Value, 0))) // clusterQCVoteData dkgPubKeys := []string{"pubkey_1"} dkgPubKeysCdc := make([]cadence.Value, len(dkgPubKeys)) @@ -1474,6 +1472,8 @@ func TestEpochRecover(t *testing.T) { false, ) + advanceView(t, b, env, idTableAddress, IDTableSigner, 1, "BLOCK", false) + verifyEpochMetadata(t, b, env, EpochMetadata{ counter: startEpochCounter + 1, @@ -1493,5 +1493,22 @@ func TestEpochRecover(t *testing.T) { result = executeScriptAndCheck(t, b, templates.GenerateGetQCEnabledScript(env), nil) assert.Equal(t, cadence.NewBool(false), result) + + expectedRecoverEvent := EpochRecover{ + counter: startEpochCounter + 1, + nodeInfoLength: len(nodeIDs), + firstView: startView, + finalView: endView, + collectorClusters: collectorClusters, + randomSource: "stillSoRandom", + dkgPhase1FinalView: startView + numStakingViews + numDKGViews - 1, + dkgPhase2FinalView: startView + numStakingViews + (2 * numDKGViews) - 1, + dkgPhase3FinalView: startView + numStakingViews + (3 * numDKGViews) - 1, + targetDuration: numEpochViews, + targetEndTime: expectedTargetEndTime(epochTimingConfigResult, startEpochCounter+1), + clusterQCVoteDataLength: 0, + dkgPubKeys: dkgPubKeys, + } + verifyEpochRecover(t, adapter, idTableAddress, expectedRecoverEvent) }) } diff --git a/transactions/epoch/admin/recover_epoch.cdc b/transactions/epoch/admin/recover_epoch.cdc index ec9e18278..9d9579051 100644 --- a/transactions/epoch/admin/recover_epoch.cdc +++ b/transactions/epoch/admin/recover_epoch.cdc @@ -1,6 +1,7 @@ -import FlowEpoch from 0xEPOCHADDRESS -import FlowIDTableStaking from 0xIDENTITYTABLEADDRESS -import FlowClusterQC from 0xQCADDRESS +import FlowEpoch from "FlowEpoch" +import FlowIDTableStaking from "FlowIDTableStaking" +import FlowClusterQC from "FlowClusterQC" + // The recoverEpoch transaction creates and starts a new epoch in the FlowEpoch smart contract // to which will force the network exit EFM. The recoverEpoch service event will be emitted // and processed by all protocol participants and each participant will update their protocol @@ -16,8 +17,8 @@ transaction(randomSource: String, dkgPubKeys: [String], nodeIDs: [String]) { - prepare(signer: AuthAccount) { - let epochAdmin = signer.borrow<&FlowEpoch.Admin>(from: FlowEpoch.adminStoragePath) + prepare(signer: auth(BorrowValue) &Account) { + let epochAdmin = signer.storage.borrow<&FlowEpoch.Admin>(from: FlowEpoch.adminStoragePath) ?? panic("Could not borrow epoch admin from storage path") epochAdmin.recoverEpoch(randomSource: randomSource, diff --git a/transactions/epoch/admin/reset_epoch.cdc b/transactions/epoch/admin/reset_epoch.cdc index 2dfa217d4..e1eae6a13 100644 --- a/transactions/epoch/admin/reset_epoch.cdc +++ b/transactions/epoch/admin/reset_epoch.cdc @@ -21,7 +21,7 @@ transaction(currentEpochCounter: UInt64, prepare(signer: auth(BorrowValue) &Account) { let epochAdmin = signer.storage.borrow<&FlowEpoch.Admin>(from: FlowEpoch.adminStoragePath) - ?? panic("Could not borrow heartbeat from storage path") + ?? panic("Could not borrow epoch admin from storage path") epochAdmin.resetEpoch(currentEpochCounter: currentEpochCounter, randomSource: randomSource, From 11e2b2d8973e430fc476d1335d40fb4aeb08cadd Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Fri, 12 Apr 2024 12:07:51 -0400 Subject: [PATCH 104/160] generate assets --- lib/go/templates/internal/assets/assets.go | 1870 ++++++++++---------- 1 file changed, 922 insertions(+), 948 deletions(-) diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 3cb68591e..f08a39508 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -1,301 +1,300 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: -// FlowServiceAccount/add_account_creator.cdc (588B) -// FlowServiceAccount/deposit_fees.cdc (871B) -// FlowServiceAccount/remove_account_creator.cdc (590B) -// FlowServiceAccount/scripts/get_account_creators.cdc (141B) -// FlowServiceAccount/scripts/get_account_fee.cdc (136B) -// FlowServiceAccount/scripts/get_execution_effort_weights.cdc (155B) -// FlowServiceAccount/scripts/get_execution_memory_limit.cdc (143B) -// FlowServiceAccount/scripts/get_execution_memory_weights.cdc (155B) -// FlowServiceAccount/scripts/get_fees_balance.cdc (103B) -// FlowServiceAccount/scripts/get_is_account_creation_restricted.cdc (145B) -// FlowServiceAccount/scripts/get_is_account_creator.cdc (157B) -// FlowServiceAccount/scripts/get_tx_fee_parameters.cdc (122B) -// FlowServiceAccount/set_execution_effort_weights.cdc (1.663kB) -// FlowServiceAccount/set_execution_memory_limit.cdc (287B) -// FlowServiceAccount/set_execution_memory_weights.cdc (315B) -// FlowServiceAccount/set_is_account_creation_restricted.cdc (609B) -// FlowServiceAccount/set_tx_fee_parameters.cdc (622B) -// FlowServiceAccount/set_tx_fee_surge_factor.cdc (481B) -// accounts/add_key.cdc (713B) -// accounts/create_new_account.cdc (768B) -// accounts/revoke_key.cdc (263B) -// dkg/admin/force_stop_dkg.cdc (350B) -// dkg/admin/publish_participant.cdc (314B) -// dkg/admin/set_safe_threshold.cdc (441B) -// dkg/admin/start_dkg.cdc (382B) -// dkg/admin/stop_dkg.cdc (345B) -// dkg/create_participant.cdc (442B) -// dkg/scripts/get_consensus_nodes.cdc (108B) -// dkg/scripts/get_dkg_canonical_final_submission.cdc (103B) -// dkg/scripts/get_dkg_completed.cdc (104B) -// dkg/scripts/get_dkg_enabled.cdc (93B) -// dkg/scripts/get_final_submissions.cdc (111B) -// dkg/scripts/get_latest_whiteboard_messages.cdc (335B) -// dkg/scripts/get_node_final_submission.cdc (133B) -// dkg/scripts/get_node_has_submitted.cdc (121B) -// dkg/scripts/get_node_is_claimed.cdc (223B) -// dkg/scripts/get_node_is_registered.cdc (128B) -// dkg/scripts/get_submissions_count.cdc (111B) -// dkg/scripts/get_thresholds.cdc (445B) -// dkg/scripts/get_whiteboard_messages.cdc (120B) -// dkg/send_final_submission.cdc (429B) -// dkg/send_whiteboard_message.cdc (412B) -// epoch/admin/advance_view.cdc (667B) -// epoch/admin/calculate_rewards.cdc (379B) -// epoch/admin/deploy_epoch.cdc (1.192kB) -// epoch/admin/deploy_qc_dkg.cdc (310B) -// epoch/admin/pay_rewards.cdc (497B) -// epoch/admin/recover_epoch.cdc (1.553kB) -// epoch/admin/reset_epoch.cdc (1.668kB) -// epoch/admin/set_automatic_rewards.cdc (376B) -// epoch/admin/set_bonus_tokens.cdc (624B) -// epoch/admin/update_clusters.cdc (358B) -// epoch/admin/update_dkg_phase_views.cdc (348B) -// epoch/admin/update_epoch_config.cdc (1.775kB) -// epoch/admin/update_epoch_timing_config.cdc (503B) -// epoch/admin/update_epoch_views.cdc (349B) -// epoch/admin/update_reward.cdc (361B) -// epoch/admin/update_staking_views.cdc (351B) -// epoch/node/register_dkg_participant.cdc (550B) -// epoch/node/register_node.cdc (3.104kB) -// epoch/node/register_qc_voter.cdc (548B) -// epoch/scripts/get_bonus_tokens.cdc (108B) -// epoch/scripts/get_config_metadata.cdc (121B) -// epoch/scripts/get_create_clusters.cdc (205B) -// epoch/scripts/get_current_view.cdc (147B) -// epoch/scripts/get_epoch_counter.cdc (110B) -// epoch/scripts/get_epoch_metadata.cdc (159B) -// epoch/scripts/get_epoch_phase.cdc (116B) -// epoch/scripts/get_epoch_timing_config.cdc (134B) -// epoch/scripts/get_proposed_counter.cdc (113B) -// epoch/scripts/get_randomize.cdc (125B) -// epoch/scripts/get_target_end_time_for_epoch.cdc (263B) -// flowToken/burn_tokens.cdc (1.131kB) -// flowToken/create_forwarder.cdc (2.025kB) -// flowToken/mint_tokens.cdc (1.019kB) -// flowToken/scripts/get_balance.cdc (420B) -// flowToken/scripts/get_supply.cdc (208B) -// flowToken/setup_account.cdc (1.349kB) -// flowToken/transfer_tokens.cdc (1.327kB) -// idTableStaking/admin/add_approved_and_limits.cdc (1.635kB) -// idTableStaking/admin/add_approved_nodes.cdc (1.055kB) -// idTableStaking/admin/capability_end_epoch.cdc (1.374kB) -// idTableStaking/admin/change_candidate_limits.cdc (727B) -// idTableStaking/admin/change_cut.cdc (665B) -// idTableStaking/admin/change_del_minimums.cdc (690B) -// idTableStaking/admin/change_minimums.cdc (818B) -// idTableStaking/admin/change_payout.cdc (625B) -// idTableStaking/admin/end_epoch.cdc (913B) -// idTableStaking/admin/end_epoch_change_payout.cdc (979B) -// idTableStaking/admin/end_staking.cdc (698B) -// idTableStaking/admin/move_tokens.cdc (598B) -// idTableStaking/admin/pay_rewards.cdc (686B) -// idTableStaking/admin/remove_approved_nodes.cdc (1.011kB) -// idTableStaking/admin/remove_invalid_nodes.cdc (697B) -// idTableStaking/admin/remove_node.cdc (629B) -// idTableStaking/admin/scale_rewards_test.cdc (713B) -// idTableStaking/admin/set_approved_nodes.cdc (628B) -// idTableStaking/admin/set_claimed.cdc (633B) -// idTableStaking/admin/set_node_weight.cdc (650B) -// idTableStaking/admin/set_non_operational.cdc (785B) -// idTableStaking/admin/set_open_access_node_slots.cdc (936B) -// idTableStaking/admin/set_slot_limits.cdc (1.572kB) -// idTableStaking/admin/start_staking.cdc (597B) -// idTableStaking/admin/transfer_admin.cdc (658B) -// idTableStaking/admin/transfer_fees_admin.cdc (444B) -// idTableStaking/admin/transfer_minter_deploy.cdc (1.344kB) -// idTableStaking/admin/upgrade_set_claimed.cdc (691B) -// idTableStaking/admin/upgrade_staking.cdc (159B) -// idTableStaking/delegation/del_request_unstaking.cdc (670B) -// idTableStaking/delegation/del_stake_new_tokens.cdc (1.044kB) -// idTableStaking/delegation/del_stake_rewarded.cdc (676B) -// idTableStaking/delegation/del_stake_unstaked.cdc (676B) -// idTableStaking/delegation/del_withdraw_reward_tokens.cdc (952B) -// idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc (952B) -// idTableStaking/delegation/delegator_add_capability.cdc (892B) -// idTableStaking/delegation/get_delegator_committed.cdc (321B) -// idTableStaking/delegation/get_delegator_info.cdc (299B) -// idTableStaking/delegation/get_delegator_info_from_address.cdc (505B) -// idTableStaking/delegation/get_delegator_request.cdc (330B) -// idTableStaking/delegation/get_delegator_rewarded.cdc (319B) -// idTableStaking/delegation/get_delegator_staked.cdc (315B) -// idTableStaking/delegation/get_delegator_unstaked.cdc (319B) -// idTableStaking/delegation/get_delegator_unstaking.cdc (321B) -// idTableStaking/delegation/get_delegator_unstaking_request.cdc (330B) -// idTableStaking/delegation/register_delegator.cdc (981B) -// idTableStaking/delegation/register_many_delegators.cdc (684B) -// idTableStaking/node/node_add_capability.cdc (900B) -// idTableStaking/node/register_many_nodes.cdc (1.171kB) -// idTableStaking/node/register_node.cdc (1.651kB) -// idTableStaking/node/request_unstake.cdc (644B) -// idTableStaking/node/stake_new_tokens.cdc (1.008kB) -// idTableStaking/node/stake_rewarded_tokens.cdc (647B) -// idTableStaking/node/stake_unstaked_tokens.cdc (626B) -// idTableStaking/node/unstake_all.cdc (608B) -// idTableStaking/node/update_networking_address.cdc (650B) -// idTableStaking/node/withdraw_reward_tokens.cdc (922B) -// idTableStaking/node/withdraw_unstaked_tokens.cdc (922B) -// idTableStaking/scripts/get_approved_but_not_staked_nodes.cdc (670B) -// idTableStaking/scripts/get_approved_nodes.cdc (289B) -// idTableStaking/scripts/get_candidate_limits.cdc (271B) -// idTableStaking/scripts/get_candidate_nodes.cdc (234B) -// idTableStaking/scripts/get_current_table.cdc (196B) -// idTableStaking/scripts/get_cut_percentage.cdc (205B) -// idTableStaking/scripts/get_del_stake_requirements.cdc (224B) -// idTableStaking/scripts/get_delegators_below_min.cdc (1.966kB) -// idTableStaking/scripts/get_node_committed_tokens.cdc (263B) -// idTableStaking/scripts/get_node_info.cdc (240B) -// idTableStaking/scripts/get_node_info_from_address.cdc (471B) -// idTableStaking/scripts/get_node_initial_weight.cdc (251B) -// idTableStaking/scripts/get_node_networking_addr.cdc (259B) -// idTableStaking/scripts/get_node_networking_key.cdc (251B) -// idTableStaking/scripts/get_node_rewarded_tokens.cdc (264B) -// idTableStaking/scripts/get_node_role.cdc (231B) -// idTableStaking/scripts/get_node_staked_tokens.cdc (260B) -// idTableStaking/scripts/get_node_staking_key.cdc (245B) -// idTableStaking/scripts/get_node_total_commitment.cdc (279B) -// idTableStaking/scripts/get_node_total_commitment_without_delegators.cdc (282B) -// idTableStaking/scripts/get_node_type_ratio.cdc (241B) -// idTableStaking/scripts/get_node_unstaked_tokens.cdc (264B) -// idTableStaking/scripts/get_node_unstaking_request.cdc (275B) -// idTableStaking/scripts/get_node_unstaking_tokens.cdc (266B) -// idTableStaking/scripts/get_non_operational.cdc (211B) -// idTableStaking/scripts/get_proposed_table.cdc (198B) -// idTableStaking/scripts/get_role_counts.cdc (208B) -// idTableStaking/scripts/get_slot_limits.cdc (309B) -// idTableStaking/scripts/get_stake_requirements.cdc (247B) -// idTableStaking/scripts/get_table.cdc (190B) -// idTableStaking/scripts/get_total_staked.cdc (463B) -// idTableStaking/scripts/get_total_staked_by_type.cdc (256B) -// idTableStaking/scripts/get_weekly_payout.cdc (202B) -// lockedTokens/admin/admin_create_shared_accounts.cdc (3.671kB) -// lockedTokens/admin/admin_deploy_contract.cdc (463B) -// lockedTokens/admin/admin_deposit_account_creator.cdc (846B) -// lockedTokens/admin/admin_remove_delegator.cdc (463B) -// lockedTokens/admin/check_main_registration.cdc (949B) -// lockedTokens/admin/check_shared_registration.cdc (633B) -// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.435kB) -// lockedTokens/admin/custody_create_only_lease_account.cdc (3.335kB) -// lockedTokens/admin/custody_create_only_shared_account.cdc (3.57kB) -// lockedTokens/admin/custody_create_shared_accounts.cdc (3.706kB) -// lockedTokens/admin/custody_setup_account_creator.cdc (758B) -// lockedTokens/admin/deposit_locked_tokens.cdc (1.678kB) -// lockedTokens/admin/unlock_tokens.cdc (593B) -// lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc (2.878kB) -// lockedTokens/delegator/delegate_new_tokens.cdc (1.369kB) -// lockedTokens/delegator/delegate_rewarded_tokens.cdc (645B) -// lockedTokens/delegator/delegate_unstaked_tokens.cdc (637B) -// lockedTokens/delegator/get_delegator_id.cdc (392B) -// lockedTokens/delegator/get_delegator_info.cdc (1.458kB) -// lockedTokens/delegator/get_delegator_node_id.cdc (396B) -// lockedTokens/delegator/register_delegator.cdc (1.741kB) -// lockedTokens/delegator/request_unstaking.cdc (639B) -// lockedTokens/delegator/withdraw_rewarded_tokens.cdc (982B) -// lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc (645B) -// lockedTokens/delegator/withdraw_unstaked_tokens.cdc (645B) -// lockedTokens/staker/get_node_id.cdc (387B) -// lockedTokens/staker/get_staker_info.cdc (1.165kB) -// lockedTokens/staker/register_node.cdc (1.714kB) -// lockedTokens/staker/request_unstaking.cdc (692B) -// lockedTokens/staker/stake_new_tokens.cdc (1.413kB) -// lockedTokens/staker/stake_rewarded_tokens.cdc (695B) -// lockedTokens/staker/stake_unstaked_tokens.cdc (695B) -// lockedTokens/staker/unstake_all.cdc (618B) -// lockedTokens/staker/update_networking_address.cdc (659B) -// lockedTokens/staker/withdraw_rewarded_tokens.cdc (973B) -// lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc (658B) -// lockedTokens/staker/withdraw_unstaked_tokens.cdc (658B) -// lockedTokens/user/deposit_tokens.cdc (806B) -// lockedTokens/user/get_locked_account_address.cdc (401B) -// lockedTokens/user/get_locked_account_balance.cdc (400B) -// lockedTokens/user/get_multiple_unlock_limits.cdc (514B) -// lockedTokens/user/get_total_balance.cdc (2.811kB) -// lockedTokens/user/get_unlock_limit.cdc (391B) -// lockedTokens/user/withdraw_tokens.cdc (924B) -// nodeVersionBeacon/admin/change_version_freeze_period.cdc (803B) -// nodeVersionBeacon/admin/delete_version_boundary.cdc (828B) -// nodeVersionBeacon/admin/heartbeat.cdc (628B) -// nodeVersionBeacon/admin/set_version_boundary.cdc (1.421kB) -// nodeVersionBeacon/scripts/get_current_node_version.cdc (237B) -// nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc (264B) -// nodeVersionBeacon/scripts/get_next_version_boundary.cdc (268B) -// nodeVersionBeacon/scripts/get_next_version_update_sequence.cdc (207B) -// nodeVersionBeacon/scripts/get_version_boundaries.cdc (294B) -// nodeVersionBeacon/scripts/get_version_boundary_freeze_period.cdc (322B) -// quorumCertificate/admin/publish_voter.cdc (411B) -// quorumCertificate/admin/start_voting.cdc (1.522kB) -// quorumCertificate/admin/stop_voting.cdc (381B) -// quorumCertificate/create_voter.cdc (1.127kB) -// quorumCertificate/scripts/generate_quorum_certificate.cdc (333B) -// quorumCertificate/scripts/get_cluster.cdc (196B) -// quorumCertificate/scripts/get_cluster_complete.cdc (248B) -// quorumCertificate/scripts/get_cluster_node_weights.cdc (203B) -// quorumCertificate/scripts/get_cluster_vote_threshold.cdc (197B) -// quorumCertificate/scripts/get_cluster_votes.cdc (257B) -// quorumCertificate/scripts/get_cluster_weight.cdc (193B) -// quorumCertificate/scripts/get_clusters.cdc (277B) -// quorumCertificate/scripts/get_node_has_voted.cdc (492B) -// quorumCertificate/scripts/get_node_weight.cdc (327B) -// quorumCertificate/scripts/get_qc_enabled.cdc (113B) -// quorumCertificate/scripts/get_voter_is_registered.cdc (210B) -// quorumCertificate/scripts/get_voting_completed.cdc (199B) -// quorumCertificate/submit_vote.cdc (611B) +// FlowServiceAccount/add_account_creator.cdc (565B) +// FlowServiceAccount/deposit_fees.cdc (838B) +// FlowServiceAccount/remove_account_creator.cdc (567B) +// FlowServiceAccount/scripts/get_account_creators.cdc (133B) +// FlowServiceAccount/scripts/get_account_fee.cdc (128B) +// FlowServiceAccount/scripts/get_execution_effort_weights.cdc (147B) +// FlowServiceAccount/scripts/get_execution_memory_limit.cdc (135B) +// FlowServiceAccount/scripts/get_execution_memory_weights.cdc (147B) +// FlowServiceAccount/scripts/get_fees_balance.cdc (102B) +// FlowServiceAccount/scripts/get_is_account_creation_restricted.cdc (137B) +// FlowServiceAccount/scripts/get_is_account_creator.cdc (149B) +// FlowServiceAccount/scripts/get_tx_fee_parameters.cdc (121B) +// FlowServiceAccount/set_execution_effort_weights.cdc (1.636kB) +// FlowServiceAccount/set_execution_memory_limit.cdc (260B) +// FlowServiceAccount/set_execution_memory_weights.cdc (288B) +// FlowServiceAccount/set_is_account_creation_restricted.cdc (586B) +// FlowServiceAccount/set_tx_fee_parameters.cdc (606B) +// FlowServiceAccount/set_tx_fee_surge_factor.cdc (465B) +// dkg/admin/force_stop_dkg.cdc (334B) +// dkg/admin/publish_participant.cdc (224B) +// dkg/admin/set_safe_threshold.cdc (425B) +// dkg/admin/start_dkg.cdc (366B) +// dkg/admin/stop_dkg.cdc (329B) +// dkg/create_participant.cdc (427B) +// dkg/scripts/get_consensus_nodes.cdc (103B) +// dkg/scripts/get_dkg_canonical_final_submission.cdc (98B) +// dkg/scripts/get_dkg_completed.cdc (99B) +// dkg/scripts/get_dkg_enabled.cdc (88B) +// dkg/scripts/get_final_submissions.cdc (106B) +// dkg/scripts/get_latest_whiteboard_messages.cdc (330B) +// dkg/scripts/get_node_final_submission.cdc (128B) +// dkg/scripts/get_node_has_submitted.cdc (116B) +// dkg/scripts/get_node_is_claimed.cdc (218B) +// dkg/scripts/get_node_is_registered.cdc (123B) +// dkg/scripts/get_submissions_count.cdc (114B) +// dkg/scripts/get_thresholds.cdc (408B) +// dkg/scripts/get_whiteboard_messages.cdc (115B) +// dkg/send_final_submission.cdc (412B) +// dkg/send_whiteboard_message.cdc (395B) +// epoch/admin/advance_view.cdc (649B) +// epoch/admin/calculate_rewards.cdc (361B) +// epoch/admin/deploy_epoch.cdc (1.173kB) +// epoch/admin/deploy_qc_dkg.cdc (295B) +// epoch/admin/pay_rewards.cdc (479B) +// epoch/admin/recover_epoch.cdc (1.53kB) +// epoch/admin/reset_epoch.cdc (1.648kB) +// epoch/admin/set_automatic_rewards.cdc (356B) +// epoch/admin/set_bonus_tokens.cdc (597B) +// epoch/admin/update_clusters.cdc (338B) +// epoch/admin/update_dkg_phase_views.cdc (328B) +// epoch/admin/update_epoch_config.cdc (1.755kB) +// epoch/admin/update_epoch_timing_config.cdc (483B) +// epoch/admin/update_epoch_views.cdc (329B) +// epoch/admin/update_reward.cdc (342B) +// epoch/admin/update_staking_views.cdc (331B) +// epoch/node/register_dkg_participant.cdc (531B) +// epoch/node/register_node.cdc (2.901kB) +// epoch/node/register_qc_voter.cdc (522B) +// epoch/scripts/get_bonus_tokens.cdc (102B) +// epoch/scripts/get_config_metadata.cdc (115B) +// epoch/scripts/get_create_clusters.cdc (197B) +// epoch/scripts/get_current_view.cdc (138B) +// epoch/scripts/get_epoch_counter.cdc (105B) +// epoch/scripts/get_epoch_metadata.cdc (154B) +// epoch/scripts/get_epoch_phase.cdc (111B) +// epoch/scripts/get_epoch_timing_config.cdc (129B) +// epoch/scripts/get_proposed_counter.cdc (108B) +// epoch/scripts/get_randomize.cdc (121B) +// epoch/scripts/get_target_end_time_for_epoch.cdc (258B) +// flowToken/burn_tokens.cdc (1.085kB) +// flowToken/create_forwarder.cdc (1.815kB) +// flowToken/mint_tokens.cdc (1.026kB) +// flowToken/scripts/get_balance.cdc (453B) +// flowToken/scripts/get_supply.cdc (207B) +// flowToken/setup_account.cdc (1.147kB) +// flowToken/transfer_tokens.cdc (1.301kB) +// idTableStaking/admin/add_approved_and_limits.cdc (1.606kB) +// idTableStaking/admin/add_approved_nodes.cdc (1.034kB) +// idTableStaking/admin/capability_end_epoch.cdc (1.355kB) +// idTableStaking/admin/change_candidate_limits.cdc (706B) +// idTableStaking/admin/change_cut.cdc (644B) +// idTableStaking/admin/change_del_minimums.cdc (669B) +// idTableStaking/admin/change_minimums.cdc (797B) +// idTableStaking/admin/change_payout.cdc (604B) +// idTableStaking/admin/end_epoch.cdc (892B) +// idTableStaking/admin/end_epoch_change_payout.cdc (958B) +// idTableStaking/admin/end_staking.cdc (677B) +// idTableStaking/admin/move_tokens.cdc (577B) +// idTableStaking/admin/pay_rewards.cdc (665B) +// idTableStaking/admin/remove_approved_nodes.cdc (990B) +// idTableStaking/admin/remove_invalid_nodes.cdc (676B) +// idTableStaking/admin/remove_node.cdc (608B) +// idTableStaking/admin/scale_rewards_test.cdc (716B) +// idTableStaking/admin/set_approved_nodes.cdc (607B) +// idTableStaking/admin/set_claimed.cdc (612B) +// idTableStaking/admin/set_node_weight.cdc (629B) +// idTableStaking/admin/set_non_operational.cdc (764B) +// idTableStaking/admin/set_open_access_node_slots.cdc (916B) +// idTableStaking/admin/set_slot_limits.cdc (1.551kB) +// idTableStaking/admin/start_staking.cdc (576B) +// idTableStaking/admin/transfer_admin.cdc (730B) +// idTableStaking/admin/transfer_fees_admin.cdc (409B) +// idTableStaking/admin/transfer_minter_deploy.cdc (1.305kB) +// idTableStaking/admin/upgrade_set_claimed.cdc (668B) +// idTableStaking/admin/upgrade_staking.cdc (156B) +// idTableStaking/delegation/del_request_unstaking.cdc (569B) +// idTableStaking/delegation/del_stake_new_tokens.cdc (842B) +// idTableStaking/delegation/del_stake_rewarded.cdc (575B) +// idTableStaking/delegation/del_stake_unstaked.cdc (575B) +// idTableStaking/delegation/del_withdraw_reward_tokens.cdc (850B) +// idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc (850B) +// idTableStaking/delegation/delegator_add_capability.cdc (704B) +// idTableStaking/delegation/get_delegator_committed.cdc (315B) +// idTableStaking/delegation/get_delegator_info.cdc (293B) +// idTableStaking/delegation/get_delegator_info_from_address.cdc (511B) +// idTableStaking/delegation/get_delegator_request.cdc (324B) +// idTableStaking/delegation/get_delegator_rewarded.cdc (313B) +// idTableStaking/delegation/get_delegator_staked.cdc (309B) +// idTableStaking/delegation/get_delegator_unstaked.cdc (313B) +// idTableStaking/delegation/get_delegator_unstaking.cdc (315B) +// idTableStaking/delegation/get_delegator_unstaking_request.cdc (324B) +// idTableStaking/delegation/register_delegator.cdc (794B) +// idTableStaking/delegation/register_many_delegators.cdc (637B) +// idTableStaking/node/node_add_capability.cdc (711B) +// idTableStaking/node/register_many_nodes.cdc (1.082kB) +// idTableStaking/node/register_node.cdc (1.351kB) +// idTableStaking/node/request_unstake.cdc (551B) +// idTableStaking/node/stake_new_tokens.cdc (815B) +// idTableStaking/node/stake_rewarded_tokens.cdc (554B) +// idTableStaking/node/stake_unstaked_tokens.cdc (533B) +// idTableStaking/node/unstake_all.cdc (515B) +// idTableStaking/node/update_networking_address.cdc (556B) +// idTableStaking/node/withdraw_reward_tokens.cdc (828B) +// idTableStaking/node/withdraw_unstaked_tokens.cdc (828B) +// idTableStaking/scripts/get_approved_but_not_staked_nodes.cdc (664B) +// idTableStaking/scripts/get_approved_nodes.cdc (283B) +// idTableStaking/scripts/get_candidate_limits.cdc (265B) +// idTableStaking/scripts/get_candidate_nodes.cdc (228B) +// idTableStaking/scripts/get_current_table.cdc (190B) +// idTableStaking/scripts/get_cut_percentage.cdc (199B) +// idTableStaking/scripts/get_del_stake_requirements.cdc (218B) +// idTableStaking/scripts/get_delegators_below_min.cdc (1.88kB) +// idTableStaking/scripts/get_node_committed_tokens.cdc (257B) +// idTableStaking/scripts/get_node_info.cdc (234B) +// idTableStaking/scripts/get_node_info_from_address.cdc (477B) +// idTableStaking/scripts/get_node_initial_weight.cdc (245B) +// idTableStaking/scripts/get_node_networking_addr.cdc (253B) +// idTableStaking/scripts/get_node_networking_key.cdc (245B) +// idTableStaking/scripts/get_node_rewarded_tokens.cdc (258B) +// idTableStaking/scripts/get_node_role.cdc (225B) +// idTableStaking/scripts/get_node_staked_tokens.cdc (254B) +// idTableStaking/scripts/get_node_staking_key.cdc (239B) +// idTableStaking/scripts/get_node_total_commitment.cdc (273B) +// idTableStaking/scripts/get_node_total_commitment_without_delegators.cdc (276B) +// idTableStaking/scripts/get_node_type_ratio.cdc (235B) +// idTableStaking/scripts/get_node_unstaked_tokens.cdc (258B) +// idTableStaking/scripts/get_node_unstaking_request.cdc (269B) +// idTableStaking/scripts/get_node_unstaking_tokens.cdc (260B) +// idTableStaking/scripts/get_non_operational.cdc (205B) +// idTableStaking/scripts/get_proposed_table.cdc (192B) +// idTableStaking/scripts/get_role_counts.cdc (202B) +// idTableStaking/scripts/get_slot_limits.cdc (303B) +// idTableStaking/scripts/get_stake_requirements.cdc (241B) +// idTableStaking/scripts/get_table.cdc (184B) +// idTableStaking/scripts/get_total_staked.cdc (457B) +// idTableStaking/scripts/get_total_staked_by_type.cdc (250B) +// idTableStaking/scripts/get_weekly_payout.cdc (196B) +// inspect_field.cdc (122B) +// lockedTokens/admin/admin_create_shared_accounts.cdc (3.883kB) +// lockedTokens/admin/admin_deploy_contract.cdc (443B) +// lockedTokens/admin/admin_deposit_account_creator.cdc (856B) +// lockedTokens/admin/admin_remove_delegator.cdc (448B) +// lockedTokens/admin/check_main_registration.cdc (994B) +// lockedTokens/admin/check_shared_registration.cdc (630B) +// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.336kB) +// lockedTokens/admin/custody_create_only_lease_account.cdc (3.16kB) +// lockedTokens/admin/custody_create_only_shared_account.cdc (3.553kB) +// lockedTokens/admin/custody_create_shared_accounts.cdc (3.76kB) +// lockedTokens/admin/custody_setup_account_creator.cdc (643B) +// lockedTokens/admin/deposit_locked_tokens.cdc (1.663kB) +// lockedTokens/admin/get_unlocking_bad_accounts.cdc (472B) +// lockedTokens/admin/unlock_tokens.cdc (576B) +// lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc (2.78kB) +// lockedTokens/delegator/delegate_new_tokens.cdc (1.182kB) +// lockedTokens/delegator/delegate_rewarded_tokens.cdc (528B) +// lockedTokens/delegator/delegate_unstaked_tokens.cdc (520B) +// lockedTokens/delegator/get_delegator_id.cdc (434B) +// lockedTokens/delegator/get_delegator_info.cdc (1.464kB) +// lockedTokens/delegator/get_delegator_node_id.cdc (438B) +// lockedTokens/delegator/register_delegator.cdc (1.508kB) +// lockedTokens/delegator/request_unstaking.cdc (522B) +// lockedTokens/delegator/withdraw_rewarded_tokens.cdc (805B) +// lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc (528B) +// lockedTokens/delegator/withdraw_unstaked_tokens.cdc (528B) +// lockedTokens/staker/get_node_id.cdc (429B) +// lockedTokens/staker/get_staker_info.cdc (1.171kB) +// lockedTokens/staker/register_node.cdc (1.425kB) +// lockedTokens/staker/request_unstaking.cdc (522B) +// lockedTokens/staker/stake_new_tokens.cdc (1.234kB) +// lockedTokens/staker/stake_rewarded_tokens.cdc (525B) +// lockedTokens/staker/stake_unstaked_tokens.cdc (525B) +// lockedTokens/staker/unstake_all.cdc (488B) +// lockedTokens/staker/update_networking_address.cdc (482B) +// lockedTokens/staker/withdraw_rewarded_tokens.cdc (795B) +// lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc (528B) +// lockedTokens/staker/withdraw_unstaked_tokens.cdc (528B) +// lockedTokens/user/deposit_tokens.cdc (713B) +// lockedTokens/user/get_locked_account_address.cdc (443B) +// lockedTokens/user/get_locked_account_balance.cdc (442B) +// lockedTokens/user/get_multiple_unlock_limits.cdc (560B) +// lockedTokens/user/get_total_balance.cdc (2.858kB) +// lockedTokens/user/get_unlock_limit.cdc (433B) +// lockedTokens/user/withdraw_tokens.cdc (713B) +// nodeVersionBeacon/admin/change_version_freeze_period.cdc (787B) +// nodeVersionBeacon/admin/delete_version_boundary.cdc (812B) +// nodeVersionBeacon/admin/heartbeat.cdc (612B) +// nodeVersionBeacon/admin/set_version_boundary.cdc (1.4kB) +// nodeVersionBeacon/scripts/get_current_node_version.cdc (236B) +// nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc (263B) +// nodeVersionBeacon/scripts/get_next_version_boundary.cdc (267B) +// nodeVersionBeacon/scripts/get_next_version_update_sequence.cdc (206B) +// nodeVersionBeacon/scripts/get_version_boundaries.cdc (293B) +// nodeVersionBeacon/scripts/get_version_boundary_freeze_period.cdc (321B) +// quorumCertificate/admin/publish_voter.cdc (311B) +// quorumCertificate/admin/start_voting.cdc (1.495kB) +// quorumCertificate/admin/stop_voting.cdc (354B) +// quorumCertificate/create_voter.cdc (1.107kB) +// quorumCertificate/scripts/generate_quorum_certificate.cdc (321B) +// quorumCertificate/scripts/get_cluster.cdc (184B) +// quorumCertificate/scripts/get_cluster_complete.cdc (236B) +// quorumCertificate/scripts/get_cluster_node_weights.cdc (191B) +// quorumCertificate/scripts/get_cluster_vote_threshold.cdc (185B) +// quorumCertificate/scripts/get_cluster_votes.cdc (245B) +// quorumCertificate/scripts/get_cluster_weight.cdc (181B) +// quorumCertificate/scripts/get_clusters.cdc (265B) +// quorumCertificate/scripts/get_node_has_voted.cdc (480B) +// quorumCertificate/scripts/get_node_weight.cdc (315B) +// quorumCertificate/scripts/get_qc_enabled.cdc (101B) +// quorumCertificate/scripts/get_voter_is_registered.cdc (198B) +// quorumCertificate/scripts/get_voting_completed.cdc (187B) +// quorumCertificate/submit_vote.cdc (584B) // randomBeaconHistory/scripts/get_latest_source_of_randomness.cdc (200B) // randomBeaconHistory/scripts/get_source_of_randomness.cdc (305B) // randomBeaconHistory/scripts/get_source_of_randomness_page.cdc (326B) -// stakingCollection/close_stake.cdc (906B) -// stakingCollection/create_machine_account.cdc (1.702kB) -// stakingCollection/create_new_tokenholder_acct.cdc (3.616kB) -// stakingCollection/deploy_collection_contract.cdc (312B) -// stakingCollection/register_delegator.cdc (823B) -// stakingCollection/register_multiple_delegators.cdc (875B) -// stakingCollection/register_multiple_nodes.cdc (1.692kB) -// stakingCollection/register_node.cdc (1.957kB) -// stakingCollection/request_unstaking.cdc (832B) -// stakingCollection/restake_all_stakers.cdc (1.413kB) -// stakingCollection/scripts/does_account_have_staking_collection.cdc (257B) -// stakingCollection/scripts/get_all_delegator_info.cdc (357B) -// stakingCollection/scripts/get_all_node_info.cdc (337B) -// stakingCollection/scripts/get_delegator_ids.cdc (286B) -// stakingCollection/scripts/get_does_stake_exist.cdc (415B) -// stakingCollection/scripts/get_locked_tokens_used.cdc (289B) -// stakingCollection/scripts/get_machine_account_address.cdc (440B) -// stakingCollection/scripts/get_machine_accounts.cdc (318B) -// stakingCollection/scripts/get_node_ids.cdc (248B) -// stakingCollection/scripts/get_unlocked_tokens_used.cdc (294B) -// stakingCollection/setup_staking_collection.cdc (3.494kB) -// stakingCollection/stake_new_tokens.cdc (956B) -// stakingCollection/stake_rewarded_tokens.cdc (849B) -// stakingCollection/stake_unstaked_tokens.cdc (849B) -// stakingCollection/test/deposit_tokens.cdc (878B) +// stakingCollection/close_stake.cdc (758B) +// stakingCollection/create_machine_account.cdc (1.152kB) +// stakingCollection/create_new_tokenholder_acct.cdc (2.95kB) +// stakingCollection/deploy_collection_contract.cdc (297B) +// stakingCollection/register_delegator.cdc (675B) +// stakingCollection/register_multiple_delegators.cdc (767B) +// stakingCollection/register_multiple_nodes.cdc (1.584kB) +// stakingCollection/register_node.cdc (1.426kB) +// stakingCollection/request_unstaking.cdc (684B) +// stakingCollection/restake_all_stakers.cdc (1.307kB) +// stakingCollection/scripts/does_account_have_staking_collection.cdc (252B) +// stakingCollection/scripts/get_all_delegator_info.cdc (354B) +// stakingCollection/scripts/get_all_node_info.cdc (334B) +// stakingCollection/scripts/get_delegator_ids.cdc (281B) +// stakingCollection/scripts/get_does_stake_exist.cdc (412B) +// stakingCollection/scripts/get_locked_tokens_used.cdc (284B) +// stakingCollection/scripts/get_machine_account_address.cdc (435B) +// stakingCollection/scripts/get_machine_accounts.cdc (313B) +// stakingCollection/scripts/get_node_ids.cdc (243B) +// stakingCollection/scripts/get_unlocked_tokens_used.cdc (289B) +// stakingCollection/setup_staking_collection.cdc (3.006kB) +// stakingCollection/stake_new_tokens.cdc (808B) +// stakingCollection/stake_rewarded_tokens.cdc (701B) +// stakingCollection/stake_unstaked_tokens.cdc (701B) +// stakingCollection/test/deposit_tokens.cdc (870B) // stakingCollection/test/get_tokens.cdc (684B) -// stakingCollection/transfer_delegator.cdc (2.094kB) -// stakingCollection/transfer_node.cdc (2.208kB) -// stakingCollection/unstake_all.cdc (758B) -// stakingCollection/update_networking_address.cdc (776B) -// stakingCollection/withdraw_from_machine_account.cdc (838B) -// stakingCollection/withdraw_rewarded_tokens.cdc (1.01kB) -// stakingCollection/withdraw_unstaked_tokens.cdc (1.025kB) -// stakingProxy/add_node_info.cdc (640B) -// stakingProxy/get_node_info.cdc (461B) -// stakingProxy/register_node.cdc (1.145kB) -// stakingProxy/remove_node_info.cdc (323B) -// stakingProxy/remove_staking_proxy.cdc (331B) -// stakingProxy/request_unstaking.cdc (493B) -// stakingProxy/setup_node_account.cdc (619B) -// stakingProxy/stake_new_tokens.cdc (491B) -// stakingProxy/stake_unstaked_tokens.cdc (496B) -// stakingProxy/unstake_all.cdc (457B) -// stakingProxy/withdraw_rewards.cdc (499B) -// stakingProxy/withdraw_unstaked.cdc (499B) -// storageFees/admin/set_parameters.cdc (847B) -// storageFees/scripts/get_account_available_balance.cdc (178B) -// storageFees/scripts/get_accounts_capacity_for_transaction_storage_check.cdc (317B) -// storageFees/scripts/get_storage_capacity.cdc (174B) -// storageFees/scripts/get_storage_fee_conversion.cdc (142B) -// storageFees/scripts/get_storage_fee_min.cdc (136B) +// stakingCollection/transfer_delegator.cdc (1.994kB) +// stakingCollection/transfer_node.cdc (2.108kB) +// stakingCollection/unstake_all.cdc (610B) +// stakingCollection/update_networking_address.cdc (628B) +// stakingCollection/withdraw_from_machine_account.cdc (690B) +// stakingCollection/withdraw_rewarded_tokens.cdc (862B) +// stakingCollection/withdraw_unstaked_tokens.cdc (877B) +// stakingProxy/add_node_info.cdc (624B) +// stakingProxy/get_node_info.cdc (506B) +// stakingProxy/register_node.cdc (1.095kB) +// stakingProxy/remove_node_info.cdc (307B) +// stakingProxy/remove_staking_proxy.cdc (315B) +// stakingProxy/request_unstaking.cdc (477B) +// stakingProxy/setup_node_account.cdc (511B) +// stakingProxy/stake_new_tokens.cdc (475B) +// stakingProxy/stake_unstaked_tokens.cdc (480B) +// stakingProxy/unstake_all.cdc (441B) +// stakingProxy/withdraw_rewards.cdc (483B) +// stakingProxy/withdraw_unstaked.cdc (483B) +// storageFees/admin/set_parameters.cdc (831B) +// storageFees/scripts/get_account_available_balance.cdc (177B) +// storageFees/scripts/get_accounts_capacity_for_transaction_storage_check.cdc (316B) +// storageFees/scripts/get_storage_capacity.cdc (173B) +// storageFees/scripts/get_storage_fee_conversion.cdc (141B) +// storageFees/scripts/get_storage_fee_min.cdc (135B) package assets @@ -305,6 +304,7 @@ import ( "crypto/sha256" "fmt" "io" + "io/ioutil" "os" "path/filepath" "strings" @@ -364,7 +364,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _flowserviceaccountAdd_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\xcb\x6e\xab\x30\x10\x5d\xdb\x5f\x31\x62\x11\xc1\xc6\xde\xa3\x7b\x1b\xd1\x4a\xfd\x81\x3e\xf6\x13\x7b\x48\x2c\x81\x8d\xc6\xa6\x54\xaa\xf2\xef\x15\x86\x45\x68\xa8\xba\x3e\x73\x9e\xe3\xfa\x21\x70\x82\xe7\x2e\x4c\x2f\xc4\x1f\xce\x50\x63\x4c\x18\x7d\x82\x96\x43\x0f\xc5\x3d\x50\x48\xa9\x35\xbc\x5e\x5c\x84\xc4\xe8\x23\x9a\xe4\x82\x07\xb4\x36\x02\x82\xa7\x09\x70\x55\x30\x4c\x8c\x29\xb0\xbc\xb9\x2b\x57\xf0\x89\x69\x86\x6a\x68\xac\x65\x8a\xb1\x82\x2f\x29\x45\x47\x09\xe2\xc6\xad\xb1\xbd\xf3\x35\x1c\xee\x73\xa8\x0c\xb9\x98\x16\x0f\x29\x06\xa6\x01\x99\xca\xe8\xce\x9e\xb8\x06\x1c\xd3\xa5\x7c\x0c\xcc\x61\x7a\xc7\x6e\xa4\x0a\x0e\x2b\x75\x36\x13\x42\x6b\x58\x50\x60\x6a\x89\xc9\x1b\x82\x14\xf6\xa6\xd8\x38\x01\x53\x0c\x23\x1b\x52\x59\x43\x0a\x11\xa9\x6b\xd5\x4e\x6c\xf8\x0f\x4b\x16\x15\x53\x60\x3c\x93\x3a\x65\xbf\x7f\x7f\xb6\x79\x28\xe7\xf5\x6b\xd0\x2b\x51\xb7\x37\x84\xf9\xb0\x92\x42\x88\xe3\x11\x06\xf4\xce\x94\xc5\x9b\xc7\x53\x97\xd3\x9f\x76\x1a\xe1\x6e\xfc\xa2\x92\xe2\x2a\x05\x7d\x92\x19\x13\xe5\x45\x7e\x2b\xa2\xd0\xda\x66\xf3\xb7\x1f\x6f\xcc\x52\xd7\xef\x00\x00\x00\xff\xff\x30\x9d\x0e\x50\x4c\x02\x00\x00" +var _flowserviceaccountAdd_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xcb\x6a\xc3\x30\x10\x45\xd7\xd2\x57\x0c\x59\x14\x67\x63\x75\x1d\xda\x06\x37\x0f\x28\x14\x0a\x71\x1f\xeb\x89\x34\x4e\x04\x8e\x64\x46\x72\x13\x28\xf9\xf7\x62\xc5\x8b\xb8\x75\xe9\x7a\x46\xe7\x9e\xab\xb1\x87\xc6\x73\x84\x75\xed\x8f\x25\xf1\xa7\xd5\x54\x68\xed\x5b\x17\xa1\x62\x7f\x80\xdb\xd3\xfa\xf9\xe5\xa3\x5c\x6d\xde\x9f\x16\xab\x62\xb9\xdc\xac\xca\x52\x4a\xa5\xe0\x75\x6f\x03\x44\x46\x17\x50\x47\xeb\x1d\xa0\x31\x01\x10\x1c\x1d\x01\x7b\x82\x66\x62\x8c\x9e\xe5\xd5\x5e\xd6\x0f\x17\x4c\xdd\x68\x06\x85\x31\x4c\x21\x4c\xe1\x4b\x4a\x51\x53\x84\x30\xd0\x28\xcc\xc1\xba\x19\xdc\xfc\x16\xcc\xd3\xc8\x86\x78\xc9\x90\xa2\x61\x6a\x90\x29\x0b\x76\xe7\xa8\x23\xb7\x71\xdf\xef\x76\x74\x21\x94\x82\x47\xcf\xec\x8f\xc0\x54\x11\x93\xd3\x04\xd1\x8f\x75\x1f\xa0\x81\x29\xf8\x96\x35\xe5\x89\x21\x85\x08\x54\x57\xf9\x88\x27\xdc\xc3\x25\x3c\xdf\xa6\x9c\xbb\x7f\xb5\x1f\xb2\xee\x9b\x67\xa0\x42\xf4\x8c\x3b\x52\xd5\xd5\x83\x6e\x71\x2a\x85\x10\xf3\x39\x34\xe8\xac\xce\x26\x6f\x0e\xb7\x75\xb2\xde\x8e\x34\xc1\x51\xed\xc9\x54\x8a\xb3\x14\x74\x22\xdd\x46\x4a\x3f\xf1\x57\x81\x1c\x8d\x29\x06\x07\xfa\x71\xaf\x84\x3a\x7f\x07\x00\x00\xff\xff\x58\x7a\xb8\x95\x35\x02\x00\x00" func flowserviceaccountAdd_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -380,11 +380,11 @@ func flowserviceaccountAdd_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/add_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb1, 0x11, 0x91, 0x94, 0xe5, 0x6c, 0x4, 0x20, 0xe4, 0x66, 0x6, 0x20, 0xd3, 0xd9, 0xf8, 0xab, 0x9b, 0xa9, 0xec, 0xe1, 0x9e, 0x25, 0x9b, 0x99, 0x68, 0xeb, 0xa9, 0x9f, 0xcf, 0x7a, 0xb4, 0xa2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x79, 0x2d, 0xa8, 0x63, 0x2c, 0xf1, 0x7e, 0xed, 0xbd, 0x9, 0xca, 0xc8, 0xdc, 0x63, 0x53, 0x29, 0x1e, 0xb5, 0x81, 0x4a, 0x50, 0x61, 0x83, 0xb4, 0x23, 0x25, 0xc0, 0x4b, 0xbf, 0x98, 0xe2, 0x54}} return a, nil } -var _flowserviceaccountDeposit_feesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x4f\x8f\x94\x40\x10\xc5\xcf\xcb\xa7\x78\x72\x58\xe1\xb0\x70\x31\x1e\x26\xa3\xeb\xbf\x8c\x77\xb3\xae\xe7\x1e\x28\xa0\x23\xd3\x45\xaa\x0b\x59\x33\xd9\xef\x6e\x68\x68\x5c\xe2\xc1\x13\xa1\xfa\xd5\xab\x5f\xfd\xb1\x97\x81\x45\x71\x1a\x5d\x6b\xcf\x3d\x3d\xf0\x4f\x72\x68\x84\x2f\x48\x77\xb1\x34\x89\xca\x9e\xa7\x9d\x2a\xfe\xef\x14\x27\x22\xff\x42\x30\xff\xa6\x49\x52\x96\xf8\x42\x03\x7b\xab\xd0\x39\xc5\x43\x19\xda\xd1\xdf\x94\x47\x33\xf6\x3a\xeb\xd8\xf5\xbf\xd1\xb0\x40\xc9\xab\x75\x6d\x92\xa8\x18\xe7\x4d\xa5\x96\x5d\x66\x2e\x3c\x3a\x3d\xe0\xfb\xc9\x3e\xbd\x7d\x93\xe3\x9a\x24\x00\x50\x96\x78\xe8\x68\x31\x81\x90\xe7\x51\x2a\x82\x76\x46\xd1\x71\x5f\xfb\x50\x2b\x56\x9e\xa3\x46\x08\x67\xb2\xae\x45\x70\x6f\x48\x84\xea\x60\xd5\x93\xc2\x93\xd3\xe0\x75\xc0\x87\xeb\x6e\x1a\x45\x08\x3f\x2f\x55\x07\xa1\xc1\x08\x65\xde\xb6\x8e\xe4\x00\x33\x6a\x97\x7d\x62\x11\x9e\x1e\x4d\x3f\x52\x8e\xdb\x8f\x55\x35\x03\x6f\xa0\x2b\xec\x57\x52\x18\x08\x35\x24\xe4\x66\xd2\x65\x1a\x8b\xd1\x6b\x0f\xaf\x2c\x54\xe3\x57\x18\x4a\xcc\x9b\xc9\x42\xe4\x1b\x35\x78\xb7\x8a\x8b\x59\x6a\x5a\x2a\xce\xa1\xee\x31\x30\xec\x91\x7f\x58\xed\x6a\x31\x53\x8e\xdb\x6d\x67\x4b\x1f\xef\xb3\x79\x53\x07\x94\xab\x49\xd9\xc4\xf7\xf0\x9c\x27\x37\x37\x37\xf7\xf7\x18\x8c\xb3\x55\x96\x7e\xe6\xb1\xaf\xe1\x58\xb1\xd4\xfa\x97\x9f\xa7\x05\x3f\x64\xbf\x4a\xf3\x5d\xcf\x11\x23\xee\x21\x1c\xc9\xff\xbb\xf6\xd4\x37\xc5\xb6\x10\x1c\xef\xb6\x19\x14\xd3\xea\xb8\x5d\xc5\xf2\xcd\x43\xee\xba\x23\x7a\xa2\x6a\x54\xc2\xf5\x25\xca\x76\x8b\x1d\x21\x9a\xb8\xc8\x65\xdd\xfe\x32\xf7\x38\x31\x5c\xd4\x8b\xc7\x3a\xc1\xe3\xdd\x9e\x33\x32\x3c\xff\x09\x00\x00\xff\xff\xbb\x16\x8b\x19\x67\x03\x00\x00" +var _flowserviceaccountDeposit_feesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x41\x6f\xd3\x40\x10\x85\xcf\xf1\xaf\x78\xf4\x00\xc9\xa1\x36\x07\xc4\x21\x0a\x94\x40\xec\x0a\x51\xb5\x52\x93\xd2\xf3\xc6\x1e\xdb\x2b\x9c\x5d\x6b\x77\x8c\x83\xaa\xfe\x77\xe4\x5d\xaf\xa9\x85\x10\x27\x4b\xe3\xf7\xde\x7c\x33\xb3\xf2\xd4\x6a\xc3\xc8\x3a\x55\xc9\x63\x43\x07\xfd\x83\x14\x4a\xa3\x4f\x78\x7b\xce\x1e\x6e\xaf\xbf\x7e\xbe\x49\x0f\x77\xdf\xd2\xdb\xed\x6e\x77\x9f\xee\xf7\x51\x30\x34\xba\x9f\x8b\x6f\xee\x1e\xff\x25\xcc\x88\xec\x4b\x5d\x96\xa6\xfb\x20\x8b\x92\x04\x3b\x6a\xb5\x95\x0c\x1e\x02\x2d\x58\x83\x6b\xfa\xe3\xfc\x2e\xba\x86\x07\x9d\x56\xcd\x2f\x94\xda\x80\xc9\xb2\x54\x55\x14\xb1\x11\xca\x8a\x9c\xa5\x56\x4b\x71\xd2\x9d\xe2\x35\x1e\x32\x79\x7e\xff\x6e\x85\xa7\x28\x02\x80\x24\xc1\xa1\x26\x1f\x02\x43\x56\x77\x26\x27\x70\x2d\x18\xb5\x6e\x0a\xeb\x7a\x85\xce\x43\x55\x18\xc2\x91\xa4\xaa\xe0\xd2\x4b\x32\x86\x0a\x17\xd5\x10\xc3\x92\x62\x97\xb5\xc6\xa7\xd9\xd6\x62\x8f\xe9\x84\xad\xa1\x56\x18\x5a\x5a\x59\x29\x32\x6b\x6c\x3b\xae\xb7\x79\x3e\xf0\x4d\x5c\x23\xdb\x35\x31\x04\x0c\x95\x64\x48\x0d\x60\x7e\x78\xef\x7c\x63\x61\x59\x1b\x2a\xf0\xd3\x85\x07\xdf\x00\xe2\x2a\xf7\x54\xe2\xc3\x28\x8e\x8f\xda\x18\xdd\x6f\x5e\x4f\xb7\xf1\x48\x1f\x97\xc3\xea\xd7\x48\x86\x28\x51\x51\x52\x86\xff\xee\xf7\x2a\x5a\x2c\x16\x57\x57\x68\x85\x92\xf9\xf2\xe2\x8b\xee\x9a\x02\x4a\x33\x7c\xdc\xdf\x68\xba\xf7\x64\xce\xfd\xea\x62\x35\x1b\xe7\x51\x72\x5d\x18\xd1\x87\x8d\xba\xab\xff\x7f\x20\x4b\x4d\x19\x4f\xab\xc5\xe6\x72\x1a\x2f\xee\xc7\xc4\xe9\xbe\xfe\xbb\x72\xde\x67\xdf\x9c\xce\x94\x77\x4c\x78\x7a\x89\x32\xbd\xaa\x9a\x10\x42\x54\xe0\x92\x6a\xfe\xc6\xe6\x38\xa1\x1c\x17\x3e\x63\xdc\xe0\xe6\x72\xce\x19\x18\x9e\x7f\x07\x00\x00\xff\xff\x46\x01\xf8\x5a\x46\x03\x00\x00" func flowserviceaccountDeposit_feesCdcBytes() ([]byte, error) { return bindataRead( @@ -400,11 +400,11 @@ func flowserviceaccountDeposit_feesCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/deposit_fees.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7d, 0x52, 0x74, 0xf2, 0x10, 0x54, 0xe7, 0x92, 0xfb, 0xd8, 0xeb, 0x33, 0x4f, 0x97, 0x24, 0x5, 0xe9, 0x43, 0xe, 0x3e, 0x92, 0xa, 0xbe, 0x33, 0xf9, 0xca, 0x6b, 0xe9, 0xf5, 0xb4, 0x56, 0x9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6d, 0x40, 0xd0, 0x49, 0x30, 0xb5, 0x4d, 0x6b, 0xdb, 0xc8, 0x82, 0xb0, 0x97, 0x31, 0x2a, 0xd, 0xcc, 0xff, 0x0, 0x91, 0xcb, 0xc, 0xa8, 0xe7, 0x67, 0xc4, 0x13, 0x3e, 0x0, 0xf, 0x0, 0xaf}} return a, nil } -var _flowserviceaccountRemove_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\xbd\x6e\x83\x30\x10\x9e\xed\xa7\x38\x31\x44\xb0\xd8\x3b\x6a\x1b\xd1\x4a\x7d\x81\xfe\xec\x17\xe7\x48\x2c\x81\x0f\x9d\x4d\x52\xa9\xca\xbb\x57\x31\x0c\xa1\xa1\xea\xfc\xdd\x7d\xbf\xbe\x1f\x58\x12\xbc\x76\x7c\x7e\x23\x39\x79\x47\x8d\x73\x3c\x86\x04\xad\x70\x0f\xc5\x3d\x50\x68\x6d\x2d\xbc\x1f\x7d\x84\x24\x18\x22\xba\xe4\x39\x80\x50\xcf\x27\x8a\x80\x01\x70\x66\x70\x42\x98\x58\xf4\xcd\x59\x39\x63\x2f\x13\x54\x43\xb3\xdf\x0b\xc5\x58\xc1\xb7\xd6\xaa\xa3\x04\x71\x21\xd6\xec\x7b\x1f\x6a\xd8\xdc\xdb\x30\x19\xf2\x31\x49\xd6\xd0\x6a\x10\x1a\x50\xa8\x8c\xfe\x10\x48\x6a\xc0\x31\x1d\xcb\x67\x16\xe1\xf3\x27\x76\x23\x55\xb0\x99\x5f\xaf\x62\x4a\x59\x0b\x13\x0a\x42\x2d\x09\x05\x47\x90\x78\xad\x89\x85\x12\x08\x45\x1e\xc5\x91\xc9\x1c\x5a\xa9\x48\x5d\x6b\x56\x6c\xc3\x23\x4c\x5e\x4c\x4c\x2c\x78\x20\xb3\xcb\x7a\x0f\xff\xa6\x79\x2a\xaf\xe5\xd7\x60\xe7\x47\xdb\xde\x3c\x5c\x0f\x2b\xad\x94\xda\x6e\x61\xc0\xe0\x5d\x59\x7c\x04\xdc\x75\xd9\xfd\x6e\x25\x11\xae\xda\x2f\x2a\xad\x2e\x5a\xd1\x17\xb9\x31\x51\x6e\xe4\xaf\x20\x66\xda\xb6\x59\x4c\xf7\x6b\xc9\xcc\x76\xf9\x09\x00\x00\xff\xff\xec\x46\x77\xa5\x4e\x02\x00\x00" +var _flowserviceaccountRemove_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xcb\x6a\xeb\x30\x10\x86\xd7\xd2\x53\x0c\x59\x1c\x9c\x8d\x75\xd6\xa1\x6d\x70\x73\x81\x42\xa1\x10\xf7\xb2\x56\xe4\x71\x22\xb0\x35\x66\x24\x27\x81\x92\x77\x2f\x96\xbd\x88\x5b\x97\xae\x67\xf4\xcd\xf7\xeb\xb7\x75\x43\x1c\x60\x5b\xd1\x39\x47\x3e\x59\x83\x99\x31\xd4\xba\x00\x25\x53\x0d\xff\x2f\xdb\xe7\x97\x8f\x7c\xb3\x7b\x7f\x5a\x6d\xb2\xf5\x7a\xb7\xc9\x73\x29\x95\x82\xd7\xa3\xf5\x10\x58\x3b\xaf\x4d\xb0\xe4\x80\xb1\xa6\x13\x7a\xd0\x0e\xf4\x40\x30\x8c\x3a\x10\xcb\x9b\xb5\x64\x98\xad\xfa\xd1\x02\xb2\xa2\x60\xf4\x7e\x0e\x9f\x52\x8a\x0a\x03\xf8\x91\x45\x56\xd4\xd6\x2d\xe0\xdf\x4f\xbf\x34\x8e\xac\x0f\x1c\x6f\x48\xd1\x30\x36\x9a\x31\xf1\xf6\xe0\xb0\x23\xb7\xe1\x38\xec\x76\x74\x21\x94\x82\x47\x62\xa6\x33\x30\x96\xc8\xe8\x0c\x42\xa0\xa9\xe8\x23\x34\x30\x7a\x6a\xd9\x60\x1a\x19\x52\x08\x8f\x55\x99\x4e\x78\xc2\x3d\xf4\xc7\xd3\x7d\xbc\x73\xf7\xa7\xf6\x43\xd2\xfd\xf2\x02\x94\x0f\xc4\xfa\x80\xaa\xbc\x79\xd0\x2d\xce\xa5\x10\x62\xb9\x84\x46\x3b\x6b\x92\xd9\x9b\xd3\xfb\x2a\x5a\xef\x27\x92\xe8\x49\xed\xd9\x5c\x8a\xab\x14\x78\x41\xd3\x06\x8c\x3f\xf1\x5b\x80\xb4\x2f\x31\x1b\x75\xf4\xad\xb2\x48\xbb\x7e\x05\x00\x00\xff\xff\xb4\x28\x75\xda\x37\x02\x00\x00" func flowserviceaccountRemove_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -420,11 +420,11 @@ func flowserviceaccountRemove_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/remove_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf0, 0x88, 0x85, 0x67, 0xec, 0xe6, 0x1a, 0x23, 0xf6, 0xee, 0x4f, 0xc, 0x7c, 0x58, 0x34, 0x3e, 0xf2, 0x45, 0x36, 0xc2, 0x8d, 0xbe, 0x5, 0xcc, 0xdf, 0x1a, 0xcc, 0x9c, 0x8c, 0xe9, 0x29, 0x21}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x45, 0x93, 0x3, 0xb, 0x31, 0xee, 0xf4, 0x0, 0x1, 0xd1, 0x23, 0xca, 0x29, 0xed, 0xf8, 0x8b, 0xd1, 0xa6, 0x66, 0x57, 0xe8, 0xf9, 0xf3, 0xf3, 0xfe, 0x91, 0xbc, 0xbb, 0x2f, 0x35, 0x84, 0x3}} return a, nil } -var _flowserviceaccountScriptsGet_account_creatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x31\x0a\x02\x31\x10\x46\xe1\x3e\xa7\xf8\xd9\x2a\x69\x3c\x80\xdd\x22\x78\x01\x4b\xb1\x08\xb3\x13\x09\x24\x19\x99\x99\x68\x21\xde\xdd\xc6\xce\xed\x1e\x3c\xf8\x6a\x7f\x88\x3a\xce\x4d\x5e\x17\xd6\x67\x25\x5e\x89\x64\x0e\x47\x51\xe9\x58\xfe\xc7\x12\x42\x26\x62\xb3\x98\x5b\x4b\x28\x73\xa0\xe7\x3a\x62\x3a\xe2\xba\x6e\x9b\xb2\xd9\x0d\xef\x00\x00\xca\x3e\x75\xec\xe0\x87\x3b\xfb\x2f\x4f\xca\xd9\x45\x2d\xa6\xf0\xf9\x06\x00\x00\xff\xff\x70\x58\x63\xbb\x8d\x00\x00\x00" +var _flowserviceaccountScriptsGet_account_creatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x4e\x2d\x2a\xcb\x4c\x4e\x75\x4c\x4e\xce\x2f\xcd\x2b\x51\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x0f\x76\x0d\x0a\xf3\x74\x76\x75\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x88\x76\x4c\x49\x29\x4a\x2d\x2e\x8e\x55\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\xc3\x62\xa8\x5e\x7a\x6a\x09\x94\xe9\x5c\x94\x9a\x58\x92\x5f\x54\xac\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x3a\x18\x2d\x67\x85\x00\x00\x00" func flowserviceaccountScriptsGet_account_creatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -440,11 +440,11 @@ func flowserviceaccountScriptsGet_account_creatorsCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_account_creators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb, 0x29, 0xe1, 0xc2, 0xd2, 0x0, 0xb4, 0xb8, 0x57, 0xa9, 0x8f, 0xc, 0x63, 0xa1, 0x40, 0x25, 0x23, 0xfd, 0x83, 0xcf, 0xb3, 0xef, 0xe1, 0x16, 0xe9, 0x84, 0xcf, 0xe7, 0x86, 0xa0, 0x5c, 0x7f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0x20, 0xf6, 0xc0, 0x61, 0x14, 0xc7, 0x64, 0xeb, 0x27, 0xe2, 0xc1, 0xc7, 0x29, 0x7a, 0x50, 0xa6, 0x42, 0xfb, 0x9b, 0xcd, 0x19, 0xad, 0x12, 0x40, 0x99, 0xd9, 0x5d, 0x94, 0xb9, 0xd9, 0xfa}} return a, nil } -var _flowserviceaccountScriptsGet_account_feeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x4e\x2d\x2a\xcb\x4c\x4e\x75\x4c\x4e\xce\x2f\xcd\x2b\x51\x48\x2b\xca\xcf\x55\x50\xc2\x94\x50\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\xc3\x62\xb2\x5e\x22\x84\x76\x2e\x4a\x4d\x2c\xc9\xcc\xcf\x73\x4b\x4d\xe5\xaa\x05\x04\x00\x00\xff\xff\xd5\x0c\xb4\x55\x88\x00\x00\x00" +var _flowserviceaccountScriptsGet_account_feeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x4e\x2d\x2a\xcb\x4c\x4e\x75\x4c\x4e\xce\x2f\xcd\x2b\x51\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x0f\x76\x0d\x0a\xf3\x74\x76\x75\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\xc3\x62\xa2\x5e\x22\x84\x76\x2e\x4a\x4d\x2c\xc9\xcc\xcf\x73\x4b\x4d\xe5\xaa\x05\x04\x00\x00\xff\xff\xfe\x58\x76\xda\x80\x00\x00\x00" func flowserviceaccountScriptsGet_account_feeCdcBytes() ([]byte, error) { return bindataRead( @@ -460,11 +460,11 @@ func flowserviceaccountScriptsGet_account_feeCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_account_fee.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd7, 0xc5, 0xf3, 0x5c, 0xe4, 0x84, 0x40, 0x9d, 0xd7, 0xb, 0x6b, 0x49, 0x46, 0x8c, 0xa5, 0xdd, 0xa3, 0x90, 0x91, 0x78, 0x62, 0xa8, 0xe, 0xa4, 0x2, 0x22, 0xba, 0xd8, 0x8c, 0x90, 0xf2, 0x66}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x8a, 0x3, 0xc, 0x87, 0xec, 0x16, 0x5, 0xf6, 0x12, 0xa7, 0x47, 0xd8, 0x4c, 0x66, 0x8f, 0x52, 0x8c, 0x70, 0x7a, 0x36, 0x1d, 0x38, 0x2e, 0x3b, 0x6, 0xf6, 0xa5, 0xea, 0x1a, 0x36, 0x6f}} return a, nil } -var _flowserviceaccountScriptsGet_execution_effort_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcd\xa1\x0e\xc2\x30\x10\x87\x71\xdf\xa7\xf8\x67\x6a\x33\x28\x82\x98\x43\x8c\x04\x4d\x08\x7a\xb9\x5c\x47\x93\xf6\x8e\x5c\xaf\x40\xb2\xec\xdd\x11\x48\x50\x9f\xf8\xc4\x2f\x95\x87\x9a\xe3\x94\xf5\x75\x61\x7b\x26\xe2\x23\x91\x36\x71\x44\xd3\x82\xee\x77\x74\x21\xcc\x44\x5c\x6b\x3f\xe7\x3c\x20\x36\x41\x99\x93\xf4\xc3\x88\xf5\x7a\x16\x3f\xec\x47\x7c\xbb\x61\x0d\x00\x60\xec\xcd\xe4\x8f\xb1\x5b\xd8\xa7\x37\x53\xf3\xa4\x32\xc5\xa8\xe6\x37\x4e\xcb\xdd\x6b\x3f\x84\xed\x13\x00\x00\xff\xff\xed\xee\xad\x32\x9b\x00\x00\x00" +var _flowserviceaccountScriptsGet_execution_effort_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x31\xcb\xc2\x30\x10\x06\xe0\x3d\xbf\xe2\x1d\xdb\xe5\xe3\x1b\xc4\xa1\x5b\xb1\x29\x14\x04\xa1\x41\x3b\x6b\x48\x6a\xc0\xde\x95\xf3\xa2\x85\xd2\xff\xee\xe0\xea\xf4\x6c\x4f\x9a\x66\x16\x45\xfb\xe0\xb7\x0b\xf2\x4a\x3e\xd4\xde\x73\x26\x45\x14\x9e\xf0\xbf\xb4\xc7\xd3\xe0\x6c\x7f\xe9\x0e\xb6\x6e\x9a\xde\x3a\x67\xcc\x9c\x6f\x88\x99\x30\x5d\x13\x15\x65\x85\xf5\xdc\x91\xee\x77\x15\xbe\x6e\x58\x0d\x00\x48\xd0\x2c\xf4\xe3\xfe\x1b\x83\xda\x25\xf8\xac\x89\xc9\xc6\xc8\xa2\x43\x48\xe3\x5d\x9f\x45\x69\xb6\x4f\x00\x00\x00\xff\xff\xbe\x4c\xb9\xc0\x93\x00\x00\x00" func flowserviceaccountScriptsGet_execution_effort_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -480,11 +480,11 @@ func flowserviceaccountScriptsGet_execution_effort_weightsCdc() (*asset, error) } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_execution_effort_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbc, 0x96, 0xc3, 0x69, 0xc1, 0xcc, 0x19, 0x11, 0xbd, 0xe0, 0x19, 0x1e, 0xb1, 0x38, 0xab, 0xae, 0x1, 0x48, 0x4, 0x1e, 0x57, 0xcf, 0x63, 0xee, 0x28, 0x4e, 0xf7, 0x13, 0x65, 0x30, 0xd6, 0x93}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x66, 0x94, 0x3f, 0xa3, 0x3a, 0xae, 0xef, 0x8c, 0xc9, 0x65, 0x5a, 0x5a, 0x9, 0xae, 0xc, 0x7c, 0x54, 0x7d, 0xcb, 0x61, 0x3e, 0xd1, 0x8a, 0xc, 0x5c, 0x1d, 0x4a, 0x9b, 0x79, 0x42, 0x97, 0x99}} return a, nil } -var _flowserviceaccountScriptsGet_execution_memory_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x3d\xaa\x42\x31\x10\x06\xd0\x3e\xab\xf8\xb8\x55\xd2\xbc\xea\x61\x61\x67\xa1\x20\x68\x25\x2e\x20\x0c\x73\x65\x20\x99\x91\xb9\x13\x7f\x10\xf7\xee\x02\xb4\x3e\x70\xa4\x5f\xcd\x03\xbb\x66\xf7\x13\xfb\x4d\x88\x37\x44\x36\x34\x30\xbb\x75\x4c\xdf\x30\xa5\x54\x89\x78\x59\x72\x6d\xad\x60\x1e\x8a\x5e\x45\x73\x59\xe3\xbc\xd7\x58\xfd\xe3\x95\x00\xc0\x39\x86\xeb\x8f\xf9\xef\xc2\xb1\x7d\x30\x8d\x10\xd3\x23\x77\xf3\xe7\x41\xba\x44\x2e\xe9\xfd\x09\x00\x00\xff\xff\xc8\x94\x6c\xb5\x8f\x00\x00\x00" +var _flowserviceaccountScriptsGet_execution_memory_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xb1\x0a\xc2\x30\x10\x06\xe0\x3d\x4f\xf1\x8f\xed\x22\x0e\xe2\xe0\x56\x6c\x0a\x85\x8a\xd0\xa0\xce\x1a\x52\x39\x30\x77\xe5\xb8\x68\x45\x7c\x77\x5f\xc0\x17\xf8\x28\xcf\xa2\x86\xee\x21\xaf\x90\xf4\x49\x31\x35\x31\x4a\x61\xc3\xa4\x92\xb1\x5e\xba\xe1\x78\x09\x7e\x3c\xf7\x7b\xdf\xb4\xed\xe8\x43\x70\x6e\x2e\x37\x4c\x85\x91\xaf\xc4\x55\xbd\xc3\xa9\x67\xdb\x6e\xf0\x71\x00\xa0\xc9\x8a\xf2\x1f\x71\x75\x4f\xe6\x97\x14\x8b\x91\xf0\x21\x65\xd1\xf7\x40\x99\xac\xaa\xdd\xf7\x17\x00\x00\xff\xff\x99\xae\x26\xc9\x87\x00\x00\x00" func flowserviceaccountScriptsGet_execution_memory_limitCdcBytes() ([]byte, error) { return bindataRead( @@ -500,11 +500,11 @@ func flowserviceaccountScriptsGet_execution_memory_limitCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_execution_memory_limit.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd5, 0x92, 0xbb, 0x36, 0x1b, 0xad, 0x73, 0x48, 0xdd, 0x41, 0x54, 0x99, 0x1e, 0xfa, 0x9b, 0x50, 0x6f, 0xbd, 0x17, 0xf5, 0xe3, 0xc6, 0xa1, 0x52, 0xaf, 0x15, 0xe0, 0x6c, 0x4d, 0x9c, 0x46, 0xd2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe3, 0x99, 0x2f, 0x9d, 0x84, 0xf5, 0xb, 0xdd, 0xdc, 0x9d, 0xe7, 0x38, 0xef, 0x7b, 0xd7, 0xb8, 0x51, 0xa0, 0xac, 0xbb, 0xd5, 0x8b, 0xbe, 0xda, 0x4b, 0x87, 0x55, 0xd7, 0x3b, 0xfb, 0x70, 0xba}} return a, nil } -var _flowserviceaccountScriptsGet_execution_memory_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x4e\x2d\x2a\xcb\x4c\x4e\x75\x4c\x4e\xce\x2f\xcd\x2b\x51\x48\x2b\xca\xcf\x55\x50\xc2\x94\x50\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\xa8\x0e\xf5\xcc\x2b\x31\x33\xb1\x52\x80\xd0\xb5\x0a\xd5\x5c\x0a\x0a\x0a\x0a\x45\xa9\x25\xa5\x45\x79\x58\xec\xd0\x4b\x4f\x2d\x71\xad\x48\x4d\x2e\x2d\xc9\xcc\xcf\xf3\x4d\xcd\xcd\x2f\xaa\x0c\x4f\xcd\x4c\xcf\x28\x29\xd6\xd0\xe4\xaa\x05\x04\x00\x00\xff\xff\x91\xb2\x2e\xbd\x9b\x00\x00\x00" +var _flowserviceaccountScriptsGet_execution_memory_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xb1\x0a\xc2\x30\x10\x06\xe0\x3d\x4f\xf1\x8f\xed\x22\x0e\xe2\xd0\xad\xd8\x14\x0a\x8a\xd0\xa0\x9d\x35\x5c\x6b\xc0\x24\xe5\xbc\x68\xa5\xf4\xdd\x1d\x5c\x3b\x7d\xdb\xe7\xfc\x18\x59\x50\x3f\xe3\xc7\x10\xbf\x9d\xa5\xd2\xda\x98\x82\xa0\xe7\xe8\xb1\x9d\xea\xe3\xb9\x33\xba\xbd\x36\x07\x5d\x56\x55\xab\x8d\x51\x6a\x4c\x77\xf4\x29\xc0\xdf\x5c\xc8\xf2\x02\xf3\xa5\x09\xb2\xdf\x15\xf8\xbb\x60\x56\x00\xc0\x24\x89\xc3\xca\xbd\x19\x48\xf4\x44\x36\x89\x8b\xe1\x44\x3e\xf2\xb7\x23\x37\x3c\xe4\x95\xe5\x6a\xf9\x05\x00\x00\xff\xff\xc2\x10\x3a\x4f\x93\x00\x00\x00" func flowserviceaccountScriptsGet_execution_memory_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -520,11 +520,11 @@ func flowserviceaccountScriptsGet_execution_memory_weightsCdc() (*asset, error) } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_execution_memory_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5, 0xcd, 0xd0, 0x38, 0x82, 0x36, 0xe4, 0x74, 0xde, 0x36, 0x36, 0x84, 0x3f, 0xa6, 0xf5, 0xb4, 0x59, 0x3a, 0x3b, 0x17, 0x7f, 0xa0, 0xbc, 0x82, 0xd6, 0xcc, 0x7c, 0xae, 0x39, 0x5c, 0x78, 0xe5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x84, 0x23, 0x2, 0x24, 0x2f, 0x68, 0xd8, 0xad, 0x75, 0xd2, 0x79, 0xd7, 0xac, 0xef, 0xdd, 0xa, 0x12, 0x4c, 0x65, 0x7c, 0x94, 0x9, 0x72, 0x3b, 0x82, 0x5d, 0x61, 0xe8, 0xc3, 0x2a, 0x80, 0xc9}} return a, nil } -var _flowserviceaccountScriptsGet_fees_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x50\x82\x71\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\xdd\x32\x2b\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\xe0\xa6\xe8\xa5\xa7\x96\xb8\xa5\xa6\x3a\x25\xe6\x24\xe6\x25\xa7\x6a\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x36\xc6\xa0\x51\x67\x00\x00\x00" +var _flowserviceaccountScriptsGet_fees_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x77\x73\x75\x0d\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x1b\xa2\x97\x9e\x5a\xe2\x96\x9a\xea\x94\x98\x93\x98\x97\x9c\xaa\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\xec\x72\xf2\xed\x66\x00\x00\x00" func flowserviceaccountScriptsGet_fees_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -540,11 +540,11 @@ func flowserviceaccountScriptsGet_fees_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_fees_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc6, 0xb4, 0xfa, 0x5d, 0x2c, 0x2f, 0x77, 0x80, 0x79, 0xa9, 0xb6, 0x97, 0xa3, 0x19, 0x3e, 0x2f, 0x94, 0xaa, 0x9, 0xa2, 0x75, 0x90, 0x67, 0x6b, 0x19, 0xc, 0xd, 0x59, 0xdc, 0x42, 0xc4, 0x4a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6f, 0xc8, 0x3b, 0x91, 0xc2, 0xc8, 0x97, 0x4e, 0x7c, 0x5e, 0xf9, 0xf, 0x80, 0x8e, 0xba, 0x76, 0x7c, 0x47, 0x55, 0x7e, 0xf6, 0xb, 0xe, 0x41, 0x19, 0x77, 0xa4, 0x91, 0x6c, 0x74, 0x47, 0x2d}} return a, nil } -var _flowserviceaccountScriptsGet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x31\x0a\x82\x31\x0c\x47\xf1\xbd\xa7\xf8\xf3\x4d\xed\xe2\x01\xdc\x54\xf0\x00\x7a\x82\x12\x53\x08\xb4\x89\xa4\xa9\x0e\xe2\xdd\x5d\xdc\x74\x7b\xf0\xe0\x27\xe3\x6e\x1e\x38\x77\x7b\x5e\xd9\x1f\x42\x7c\x20\xb2\xa5\x81\xe6\x36\xb0\xfd\x8e\x2d\xa5\x4a\xc4\x73\xe6\xda\x7b\x41\x5b\x8a\x51\x45\x73\xd9\xe3\x68\xd6\xf1\x4a\x00\xe0\x1c\xcb\xf5\x8f\xbb\x93\xf9\xad\x93\x73\x0d\x31\xbd\xf0\x0c\x17\x0a\xbe\xe5\x92\xde\x9f\x00\x00\x00\xff\xff\xdd\x1a\x44\xaa\x91\x00\x00\x00" +var _flowserviceaccountScriptsGet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x31\xcb\xc2\x30\x10\x06\xe0\x3d\xbf\xe2\x1d\xdb\xe5\xe3\x9b\xdd\x6a\x9b\x82\x20\x08\x09\xe8\x5c\xe3\x15\x0e\x9a\x5c\xb9\x5e\x54\x10\xff\xbb\x8b\xa3\xdb\x33\x3d\x9c\x57\x51\xc3\xb8\xc8\x23\x92\xde\x39\x51\x97\x92\xd4\x62\x98\x55\x32\xfe\x9f\xe3\xf1\x74\x89\x3e\x9c\x0f\xbd\xef\x86\x21\xf8\x18\x9d\x5b\xeb\x15\x73\x2d\xc8\x13\x97\xa6\xdd\x61\x2f\xb2\xe0\xe5\x00\x40\xc9\xaa\x96\x1f\xdf\x1f\x6f\x5f\xf5\x4a\x93\xb1\x94\x40\x9b\x29\x27\xa3\x5b\xd3\xba\xf7\x27\x00\x00\xff\xff\x30\xd3\xe8\xcf\x89\x00\x00\x00" func flowserviceaccountScriptsGet_is_account_creation_restrictedCdcBytes() ([]byte, error) { return bindataRead( @@ -560,11 +560,11 @@ func flowserviceaccountScriptsGet_is_account_creation_restrictedCdc() (*asset, e } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_is_account_creation_restricted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x78, 0x7f, 0x4b, 0x85, 0x11, 0xb6, 0x26, 0xa3, 0x91, 0xc, 0xc6, 0x56, 0x2f, 0x17, 0x6d, 0x44, 0x49, 0x35, 0x2f, 0xa, 0x6d, 0x2b, 0xc1, 0x30, 0xf1, 0x1e, 0xd5, 0x30, 0xec, 0x9a, 0x80, 0x23}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x33, 0x4f, 0x25, 0xf, 0x24, 0x69, 0x56, 0xe3, 0x8a, 0xce, 0x18, 0xe5, 0x4e, 0xce, 0x73, 0xf, 0x2b, 0x11, 0x4, 0xde, 0x2d, 0xb0, 0x7c, 0x76, 0x8, 0x3e, 0x82, 0x6e, 0xb9, 0xd2, 0xa4, 0x39}} return a, nil } -var _flowserviceaccountScriptsGet_is_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcd\x31\x0a\x02\x31\x10\x85\xe1\x3e\xa7\x78\x6c\xb5\x69\x3c\xc0\x76\xab\xe0\x05\x3c\xc1\x30\x3b\x0b\x81\x24\x23\x33\x13\x2d\xc4\xbb\x5b\xa8\x95\x76\x1f\x3c\x78\x7f\x69\x57\xb5\xc0\xb9\xea\xfd\x22\x76\x2b\x2c\x2b\xb3\x8e\x1e\xd8\x4d\x1b\xa6\xdf\x61\x4a\x89\x98\xc5\x7d\xa6\x5a\x33\xf6\xd1\xd1\xa8\xf4\x99\xb6\xcd\xc4\x7d\xc1\xfa\x46\x5e\x70\x54\xad\x78\x24\x00\x30\x89\x61\xfd\x4f\xe7\x50\xfc\xa3\x93\x09\x85\xda\xf7\x28\xa7\xe7\x2b\x00\x00\xff\xff\x9d\xb0\x81\x18\x9d\x00\x00\x00" +var _flowserviceaccountScriptsGet_is_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xb1\x0a\xc2\x30\x10\x06\xe0\x3d\x4f\xf1\x8f\x76\x11\xe7\x6e\xb1\x4d\x41\x10\x84\x06\x74\x8e\xe9\x15\x02\x4d\xae\x5c\x12\x15\xc4\x77\x77\x50\x37\xb7\x6f\xfa\x42\x5c\x59\x0a\x86\x85\xef\x96\xe4\x16\x3c\x69\xef\xb9\xa6\x82\x59\x38\x62\xf7\x18\x8e\xa7\x8b\x35\xe3\xf9\xd0\x19\xdd\xf7\xa3\xb1\x56\xa9\xb5\x5e\x31\xd7\x84\xe8\x42\xda\xb8\x69\x12\xca\xb9\x85\xfe\xa0\x69\xb1\x67\x5e\xf0\x54\x00\x20\x54\xaa\xa4\x3f\xff\x36\xe4\xaf\x3a\x21\x57\x58\x7e\x51\xa3\x5e\xef\x00\x00\x00\xff\xff\xda\x8e\xcf\xb1\x95\x00\x00\x00" func flowserviceaccountScriptsGet_is_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -580,11 +580,11 @@ func flowserviceaccountScriptsGet_is_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_is_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x95, 0xb8, 0x4e, 0xec, 0x66, 0x4a, 0x50, 0xbb, 0x8b, 0xb0, 0xb8, 0x52, 0x16, 0x26, 0xc, 0x19, 0xb, 0x4, 0x17, 0x3b, 0x4d, 0xb7, 0xe0, 0xa8, 0xc, 0x8f, 0x1e, 0xb3, 0xd2, 0xeb, 0x1f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4a, 0x6b, 0xfc, 0xd, 0xf7, 0xbd, 0x4c, 0x2b, 0x19, 0xf2, 0x34, 0x8a, 0xf2, 0xe0, 0x7c, 0x7b, 0x14, 0xa0, 0x83, 0xce, 0x53, 0x48, 0x48, 0xac, 0xe8, 0x97, 0xbd, 0x1, 0x42, 0xbc, 0x92, 0x91}} return a, nil } -var _flowserviceaccountScriptsGet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x50\x82\x71\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\xe0\x3a\xf4\xdc\x52\x53\x03\x12\x8b\x12\x73\x53\x4b\x52\x8b\x8a\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\x6a\xd2\x53\x4b\x50\x94\x69\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x4a\xde\xf2\x2a\x7a\x00\x00\x00" +var _flowserviceaccountScriptsGet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x77\x73\x75\x0d\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x82\x6b\xd0\x73\x4b\x4d\x0d\x48\x2c\x4a\xcc\x4d\x2d\x49\x2d\x2a\x56\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\xa8\x49\x4f\x2d\x41\x51\xa6\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x72\x08\x76\xd1\x79\x00\x00\x00" func flowserviceaccountScriptsGet_tx_fee_parametersCdcBytes() ([]byte, error) { return bindataRead( @@ -600,11 +600,11 @@ func flowserviceaccountScriptsGet_tx_fee_parametersCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_tx_fee_parameters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xee, 0x8f, 0xb0, 0x94, 0x23, 0x9d, 0x6b, 0x38, 0x2f, 0x83, 0x12, 0xee, 0x19, 0x73, 0x3f, 0x9d, 0x78, 0x57, 0x4c, 0xb8, 0x2b, 0x65, 0xe9, 0xa3, 0x4, 0x2b, 0x93, 0xdf, 0xda, 0xb5, 0x9c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0xaf, 0xc1, 0xff, 0x1a, 0x34, 0x69, 0x68, 0xb, 0xd, 0xc9, 0xba, 0xb4, 0xdb, 0x81, 0x8a, 0x41, 0x8, 0x38, 0xf6, 0x85, 0x75, 0xef, 0x4e, 0x8a, 0x6e, 0xb0, 0x6a, 0x22, 0xc1, 0x97, 0x1a}} return a, nil } -var _flowserviceaccountSet_execution_effort_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x93\x5f\x6b\xe3\x38\x14\xc5\xdf\xf3\x29\x2e\x5e\x58\x12\x48\xe3\x38\x89\x9d\xd8\x2c\x0b\x4b\x77\x0b\x65\xbb\xb0\xd0\xfd\xf3\x50\x3a\xf4\x5a\xbe\x8e\x35\xb5\x24\x8f\x24\x27\x0d\x21\xdf\x7d\x90\x15\xb7\xe9\x9f\x19\x66\x86\x79\x18\x43\x2c\xa1\x73\xee\xd1\x2f\xbe\x52\x18\xc2\x3f\x15\x37\x60\x35\x4a\x83\xcc\x72\x25\x0d\x18\xb2\x06\x24\x6d\x81\x1e\x88\xb5\x6e\x0d\xa8\x2c\x95\xb6\xb0\x25\xbe\xae\xac\x19\x74\x65\x04\x02\x1f\xb8\x68\xc5\x6b\x5f\xcd\x05\xb7\x50\x2a\xfd\x3c\x98\x1b\xc0\x7a\x8b\x3b\x03\xa9\x7b\x26\x7d\x8e\x8f\x05\x89\x82\x4c\xc8\x0b\x03\x0c\x25\xe4\x04\x86\x48\x42\x45\x9a\x32\xe7\x74\xbf\x33\xb8\x39\xc7\x82\x24\x23\x38\x57\xa2\x69\x2d\xba\xe4\x3f\xb9\x2c\x6e\x87\x95\xb5\x8d\xc9\xc2\x70\xcd\x6d\xd5\xe6\x13\xa6\x44\xa8\x64\x59\xab\x6d\xc8\x7c\x49\x98\xd7\x2a\x0f\x93\xe9\x32\xa6\x72\xb1\x62\x4b\x36\xc3\x69\x12\x15\xb3\x25\xcd\x93\x7c\x9a\xc6\x48\x4b\x62\x31\xcd\xa6\x8b\x98\xe1\x32\xd4\xad\xb4\x5c\x50\xc8\x94\x10\x4a\xba\xa1\xdf\xef\x9e\xcb\x62\xb2\x56\x3f\x5d\xcd\xa7\xa3\x23\xd5\xc5\x7f\x7f\x7d\x0d\x91\x7b\x9d\xad\x95\x27\x8a\x8a\x72\x31\x2f\x68\x15\xb3\x38\x5f\xc6\x49\xb4\x8a\xa3\x08\x57\x25\xa5\x29\xa5\x69\xba\xc2\x7c\x46\x0b\x56\xc4\x69\x58\x6e\x44\x28\xc8\x92\xf6\xef\x0e\x21\x75\x04\x1e\xc2\x56\x04\x5c\x5a\xd2\x12\x6b\x68\x34\x31\x6e\x5c\x4f\x54\xd9\x29\xaf\x9a\xd4\x65\xb8\x9e\xcc\xde\x45\xc9\x18\xb6\x15\x67\x15\x08\x42\xe9\x57\x9c\x42\x1f\x5a\xac\xc1\x2a\x88\x40\xb5\xb6\x4f\xb2\xca\x62\xed\x5b\xf8\x3a\x15\x37\xc8\x6b\xcc\x6b\x67\x03\x3c\xed\xff\xe4\x08\xea\x3a\x5e\x50\x89\x6d\xfd\x78\xa0\x00\x7d\x8f\xfd\xff\x78\xf1\x1d\xaf\x94\x6a\x32\x88\xde\xd4\xae\x2d\x5a\x12\x24\x6d\x06\x11\xbc\xe9\xb8\x68\x65\xb7\xfb\xa5\xdc\x28\xd6\xad\xfa\x2c\x67\x56\x1a\xb8\x84\x06\x35\xfa\x6f\x51\x2a\x2d\x7a\x8c\xbb\xbb\xbb\xf7\x46\x49\x37\xbd\x71\x2f\x80\xbd\x1f\x00\x02\xbb\x6b\x28\xc8\x20\xf8\x9d\x77\xd1\xa8\x77\xc1\xf8\x51\xdc\x60\xdd\x3a\xf5\xa6\x5f\x39\xa9\xec\x0c\xf7\xb4\x0b\x32\xd8\x3f\xc5\xfc\x7b\x29\x6d\xb2\x08\xc6\x4f\xb5\x41\x34\x9d\x46\x01\x1c\xc6\xcf\x0a\x7b\xf5\xf3\xa5\x49\x1c\xcf\x93\x00\x0e\x4f\xa5\xa7\x31\xdf\x84\x32\xfb\x71\x50\xe6\xdf\x0f\xa5\x9f\xde\xfa\x49\x1f\x7b\x92\xf3\x37\xda\xea\x34\x65\x0f\x41\xa1\x04\x72\xe9\x44\x63\x95\xc6\x35\x39\x9d\x17\x24\x2d\x2f\x39\x69\x27\x3c\x5e\x89\x3f\xba\x1b\xf1\xbf\x3f\xe2\x01\x1c\xfc\x96\xb7\xc7\xd3\x35\x38\xb9\x1a\x43\x49\xdb\xa3\x2f\x83\xbd\xc7\xcf\xc0\x8f\x87\x11\xec\x07\x8e\xb3\xd1\xd4\xa0\xa6\xa1\xe1\x6b\x49\x3a\x03\x6c\x6d\x35\xbc\xf6\x14\x23\xf8\xf9\x37\xc6\x54\x2b\x6d\xef\x76\x8f\x77\x4e\x8e\xa4\x93\x5a\x61\xf1\xcb\xcb\xf4\x5f\x87\xa5\x56\x22\x83\xf0\xe8\x0a\xdf\xc6\x1f\x7d\x2a\xd4\xe0\x86\x4e\xf0\xc7\x60\xd5\x17\x86\x1d\x06\x87\x8f\x01\x00\x00\xff\xff\x38\x5a\x8f\x3f\x7f\x06\x00\x00" +var _flowserviceaccountSet_execution_effort_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x93\x5d\x6b\xe3\x3a\x10\x86\xef\xf3\x2b\x06\x9f\x9b\x14\xd2\x38\x4e\x62\x27\x36\x87\x03\xa5\xe7\x14\xca\xe9\xc2\xc2\x7e\x5d\x94\x2e\x1d\xcb\xe3\x58\x5b\x4b\xf2\x4a\x72\xd2\x10\xf2\xdf\x17\x59\x71\x9b\x7e\xb0\xec\x2e\x7b\xb1\x86\x48\x62\xde\x99\x47\x6f\x34\x52\x18\xc2\xfb\x8a\x1b\xb0\x1a\xa5\x41\x66\xb9\x92\x06\x0c\x59\x03\x92\x36\x40\xf7\xc4\x5a\x17\x03\x2a\x4b\xa5\x2d\x6c\x88\xaf\x2a\x6b\x06\x5d\x19\x81\xc0\x7b\x2e\x5a\xf1\x32\xaf\xe6\x82\x5b\x28\x95\x7e\x0a\xe6\x06\xb0\xde\xe0\xd6\x40\xea\xbe\x71\xcf\xf1\x58\x90\x28\xc8\x84\xbc\x30\xc0\x50\x42\x4e\x60\x88\x24\x54\xa4\x29\x73\x99\xee\x77\x0a\xd7\xe7\x58\x90\x64\x04\xe7\x4a\x34\xad\x45\x47\xfe\x9f\xcb\xe2\x66\x58\x59\xdb\x98\x2c\x0c\x57\xdc\x56\x6d\x3e\x66\x4a\x84\x4a\x96\xb5\xda\x84\xcc\x97\x84\x79\xad\xf2\x30\x99\x2c\x62\x2a\xe7\x4b\xb6\x60\x53\x9c\x24\x51\x31\x5d\xd0\x2c\xc9\x27\x69\x8c\xb4\x20\x16\xd3\x74\x32\x8f\x19\x2e\x42\xdd\x4a\xcb\x05\x85\x4c\x09\xa1\xa4\x9b\xfa\xfd\xee\xb8\x2c\xc6\x2b\xf5\xd7\xd5\x6c\x72\x72\x70\x75\xf1\xf1\xcd\xcf\x38\x72\xc3\xe9\x4a\x79\x47\x51\x51\xce\x67\x05\x2d\x63\x16\xe7\x8b\x38\x89\x96\x71\x14\xe1\xb2\xa4\x34\xa5\x34\x4d\x97\x98\x4f\x69\xce\x8a\x38\x0d\xcb\xb5\x08\x05\x59\xd2\x7e\xec\x2c\xa4\xce\x81\x37\x61\x2b\x02\x2e\x2d\x69\x89\x35\x34\x9a\x18\x37\xae\x27\xaa\xec\x94\x17\x4d\xea\x18\xae\x27\xd3\xcf\x51\x32\x82\x4d\xc5\x59\x05\x82\x50\xfa\x88\x53\xe8\x6b\x8b\x35\x58\x05\x11\xa8\xd6\xf6\x24\xab\x2c\xd6\xbe\x85\x2f\xa9\xb8\x46\x5e\x63\x5e\xbb\x34\xc0\xe3\xfe\x8f\x0f\x46\x5d\xc7\x0b\x2a\xb1\xad\x1f\x2e\x14\xa0\xef\xb1\xff\x1f\xcf\xce\xf1\x4a\xa9\x26\x83\xe8\x55\xed\x9d\x45\x4b\x82\xa4\xcd\x20\x82\x57\x33\x2e\x5a\xd9\xed\x7e\x29\xd7\x8a\x75\x51\xcf\x72\xc9\x4a\x03\x97\xd0\xa0\x46\x7f\x16\xa5\xd2\xa2\xb7\x71\x7b\x7b\xfb\xc5\x28\xe9\x96\xd7\x6e\x00\xd8\xf9\x09\x20\xb0\xdb\x86\x82\x0c\x82\x7f\x79\x87\x46\xbd\x0d\x46\x0f\xe2\x1a\xeb\xd6\xa9\xd7\x7d\xe4\xa8\xb2\x4b\xb8\xa3\x6d\x90\xc1\xee\x11\xf3\xe1\x52\xda\x64\x1e\x8c\x1e\x6b\x83\x68\x32\x89\x02\xd8\x8f\x9e\x14\xf6\xea\xf7\x4b\x93\x38\x9e\x25\x01\xec\x1f\x4b\x8f\x31\xbf\x64\x65\xfa\xe7\x58\x99\xfd\x3e\x2b\xfd\xf2\xc6\x2f\x7a\xec\x11\xe7\x2d\xda\xea\x98\xb2\x83\xa0\x50\x02\xb9\x74\xa2\xb1\x4a\xe3\x8a\x9c\xce\x0b\x92\x96\x97\x9c\xb4\x13\x1e\x9e\xc4\x7f\xdd\x8b\xf8\xe4\xaf\x78\x00\x7b\xbf\xe5\xcd\xe1\x76\x0d\x8e\x9e\xc6\x50\xd2\xe6\x90\x97\xc1\xce\xdb\xcf\xc0\xcf\xfb\x13\xd8\x0d\x9c\xcf\x46\x53\x83\x9a\x86\x86\xaf\x24\xe9\x0c\xce\x5a\x5b\x9d\x31\xa6\x5a\x69\xfb\x14\xf7\x79\x79\x5c\x2b\x2c\xfe\x7e\x8e\xfa\x67\x58\x6a\x25\x32\x08\x0f\xe6\xc3\xd7\xbd\x9e\x3c\x87\x19\x5c\xd3\x91\xc7\x11\x58\xf5\x83\x90\xfd\x60\xff\x2d\x00\x00\xff\xff\xad\xdd\x1d\x36\x64\x06\x00\x00" func flowserviceaccountSet_execution_effort_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -620,11 +620,11 @@ func flowserviceaccountSet_execution_effort_weightsCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_execution_effort_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0xdb, 0xc1, 0xb9, 0x62, 0xa9, 0x42, 0x74, 0x68, 0xbe, 0xd1, 0xd7, 0xd6, 0x94, 0xc, 0x9d, 0x43, 0xe7, 0x67, 0xb0, 0xa7, 0x57, 0xa0, 0x72, 0xfa, 0xb0, 0x1f, 0x18, 0x12, 0xbd, 0x99, 0xf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x37, 0x75, 0xac, 0x6, 0xec, 0xf7, 0x3e, 0xda, 0xc2, 0x1c, 0xbc, 0xdb, 0xd2, 0xf9, 0x50, 0x92, 0x2c, 0xd2, 0x95, 0x48, 0xef, 0xad, 0xf0, 0x6a, 0xbc, 0x92, 0x53, 0xa0, 0xa, 0xcf, 0x9d, 0x6a}} return a, nil } -var _flowserviceaccountSet_execution_memory_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\xb1\x6a\xc3\x30\x10\x86\x77\x3f\xc5\x3f\x15\x19\x8a\xb5\x94\x0e\xa6\x14\x3a\x16\xda\xa9\xed\x03\x1c\xea\xc5\x16\x58\x92\xd1\x9d\xe3\x84\xe0\x77\x0f\xb6\x13\x93\x25\x90\x1b\xff\xfb\xf8\xf8\xac\xc5\x6f\xeb\x05\x9a\x29\x0a\x39\xf5\x29\x0a\x84\x55\x40\x88\x3c\x82\x0f\xec\x86\x79\x45\xe0\x90\xf2\x11\x9d\x0f\x5e\xab\xe2\x86\x37\x91\xc7\xaf\x79\xad\xf1\xf7\x19\xf5\xf5\xa5\xc4\xa9\x00\x80\x3e\x73\x4f\x99\x8d\xf8\x26\x72\xae\x41\x83\xb6\xe6\x47\x53\xa6\x86\x4b\x3c\x7d\x38\x97\x86\xa8\x57\x7a\xbe\x95\xac\x64\x65\xaa\x2e\xd1\xff\xdb\xea\x7c\x37\xbb\x9c\x42\x0d\x7b\xf9\xd9\x2d\xec\x7b\xe9\x5a\x02\xca\x7b\x22\xa1\x3d\x6f\x99\xcf\xd0\xf4\x90\x68\x2a\xa6\x73\x00\x00\x00\xff\xff\xc0\x86\x20\x70\x1f\x01\x00\x00" +var _flowserviceaccountSet_execution_memory_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\xc1\x8a\x83\x40\x10\x44\xef\x7e\x45\x1d\x15\x16\xe7\xb2\xec\x41\x96\x05\x8f\x0b\xc9\x2d\xf9\x80\x61\xd2\xd1\x01\x67\x46\xba\xdb\x98\x10\xfc\xf7\xa0\x12\x09\x39\xa5\x8f\xd5\xc5\xab\x67\x0c\x0e\xad\x17\x28\xdb\x28\xd6\xa9\x4f\x51\x20\xa4\x02\x8b\x48\x23\xe8\x4a\x6e\x98\x53\x04\x0a\x89\x6f\xe8\x7c\xf0\x5a\x66\x2f\xfd\x3c\xd2\xb8\x9b\xd3\x0a\xc7\xff\xa8\x3f\xdf\x05\xee\x19\x00\xf4\x4c\xbd\x65\xca\xc5\x37\x91\xb8\x42\x3d\x68\x5b\x3b\x97\x86\xa8\xcf\xca\x7c\xeb\xbb\xec\x92\x3d\xfd\xae\x80\xbf\xfc\xcc\x29\x54\x30\xa2\x89\x6d\x43\x66\xb3\xd8\x2f\x12\xcb\x5a\xf1\x0e\x10\x7b\xa1\xcd\xe5\x0b\x9a\x3e\x02\x4c\xd9\xf4\x08\x00\x00\xff\xff\x3e\xdc\x40\xf4\x04\x01\x00\x00" func flowserviceaccountSet_execution_memory_limitCdcBytes() ([]byte, error) { return bindataRead( @@ -640,11 +640,11 @@ func flowserviceaccountSet_execution_memory_limitCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_execution_memory_limit.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0x55, 0xd0, 0x7e, 0x5b, 0xb1, 0x66, 0x8e, 0x6e, 0x52, 0xd0, 0x4d, 0x3f, 0xf0, 0x8a, 0xa, 0x11, 0xfc, 0x2b, 0xb7, 0x1, 0xe1, 0x84, 0xf5, 0x2b, 0x69, 0xf5, 0xa8, 0xc2, 0x36, 0xc0, 0xbb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0x26, 0x87, 0x5b, 0xdc, 0xb4, 0xba, 0xbb, 0x30, 0xf6, 0x69, 0x15, 0xcf, 0xe4, 0x23, 0xea, 0x24, 0x40, 0x9e, 0x5c, 0xe7, 0x38, 0xfe, 0x13, 0x11, 0x19, 0xb1, 0xde, 0xab, 0x20, 0xe4, 0xf1}} return a, nil } -var _flowserviceaccountSet_execution_memory_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\x31\x6b\xc3\x30\x10\x46\x77\xff\x8a\x6f\x2a\x32\x14\x6b\x29\x1d\x44\x29\x74\xec\xd0\xa9\x2d\x99\x85\x72\xb1\x05\xb1\x64\x74\xe7\x38\xc1\xf8\xbf\x07\x47\x4e\x30\x81\x40\x6e\x39\xf8\x78\x3c\x9e\xd6\xf8\x6b\x3c\x43\x92\x0d\x6c\x9d\xf8\x18\x18\x4c\xc2\x08\x34\x80\x8e\xe4\xfa\x79\x43\x4b\x6d\x4c\x27\x0c\xe4\xeb\x46\xb8\x2a\x56\xbc\x0a\x34\x6c\xf2\x6e\x30\xfe\x7f\x07\x79\x7f\x33\xc8\x7f\x2a\x31\x16\x00\xd0\x25\xea\x6c\x22\xc5\xbe\x0e\x94\x0c\x6c\x2f\x8d\xfa\x95\x98\x6c\x4d\x25\x5e\xbe\x9c\x8b\x7d\x90\x2b\x3d\x5f\x26\x2b\xce\x4c\xb5\x8f\x76\xfb\x71\x6f\xff\x54\xbb\x14\x5b\x03\xbd\x50\xfa\x16\xfc\x73\xe9\x5d\xb2\xca\x47\x52\xb6\x07\x5a\xe5\xbf\x42\xe2\x93\xb2\xa9\x98\xce\x01\x00\x00\xff\xff\x43\xef\x3d\xe4\x3b\x01\x00\x00" +var _flowserviceaccountSet_execution_memory_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\x31\x0b\xc2\x30\x10\x85\xf7\xfe\x8a\x37\xb6\x20\xcd\x22\x0e\x41\x84\x8e\x0e\x6e\x8a\x73\x88\x67\x1b\xb0\x49\xc9\x5d\xad\x52\xfa\xdf\xa5\x56\xa5\x74\xf2\x96\x83\xf7\x1e\x1f\x9f\x52\x38\x56\x8e\x21\xd1\x78\x36\x56\x5c\xf0\x0c\x26\x61\x78\xea\x40\x0f\xb2\xed\x98\xa1\xa6\x3a\xc4\x27\x3a\x72\x65\x25\x9c\x27\xb3\x7d\xea\xa9\x3b\x4f\xb9\x46\x7f\xda\x7b\xd9\xac\x35\xa6\x3f\x64\xe8\x13\x00\x68\x22\x35\x26\x52\xca\xae\xf4\x14\x35\x8a\x56\xaa\xc2\xda\xd0\x7a\xf9\x4e\xc6\x9b\xea\xfc\x16\xcc\x65\xbb\x44\xed\xd2\x6b\x0c\xb5\x86\x62\x09\xd1\x94\xa4\x7e\x76\x87\xb7\xdc\xc7\x21\x5b\xc2\xd8\xdc\x69\xe6\xb8\x82\x84\x3f\x21\x43\x32\xbc\x02\x00\x00\xff\xff\x96\xe9\x2c\xf0\x20\x01\x00\x00" func flowserviceaccountSet_execution_memory_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -660,11 +660,11 @@ func flowserviceaccountSet_execution_memory_weightsCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_execution_memory_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x68, 0x24, 0x78, 0x78, 0x6b, 0x42, 0x18, 0x35, 0x8d, 0x1, 0x95, 0xfe, 0xec, 0x4b, 0x3b, 0x81, 0x3, 0xa1, 0x7, 0x1d, 0xeb, 0x87, 0x46, 0x33, 0xa2, 0x65, 0x58, 0xe5, 0x14, 0x5d, 0x3c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0x9e, 0xe1, 0x98, 0x6a, 0x53, 0x46, 0x75, 0xcd, 0x3e, 0x85, 0x4f, 0xc5, 0x75, 0x19, 0xd2, 0xa, 0x71, 0x20, 0xb2, 0xc3, 0xa8, 0x1c, 0x2a, 0xc6, 0x45, 0xd5, 0x39, 0x69, 0xee, 0xc9, 0x8c}} return a, nil } -var _flowserviceaccountSet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\x4d\x6b\xc2\x40\x10\x3d\xef\xfe\x8a\x21\x07\x49\x2e\xc9\x3d\xb4\x15\x2d\x14\x7a\xed\xd7\xd9\x71\x9d\xe8\x42\xdc\x09\xb3\x13\x2d\x14\xff\x7b\xc9\x1a\x5a\xc5\x94\x5e\xf7\xed\xfb\x9a\xe7\xf7\x1d\x8b\xc2\x53\xcb\xc7\x57\x92\x83\x77\xb4\x70\x8e\xfb\xa0\xd0\x08\xef\x21\xbb\x05\x32\x6b\xab\x0a\xde\x76\x3e\x82\x0a\x86\x88\x4e\x3d\x07\x70\x3b\x0c\x5b\x8a\xb0\xf2\x11\x70\x94\x70\x24\x98\x40\xa1\xa8\xe2\x9d\xd2\x66\x05\x07\x6c\x7b\xb2\x17\xd4\xfc\x17\xad\x61\xc9\xdc\x16\xf0\x65\xad\x69\x49\x21\x5e\x39\x2f\x36\x7b\x1f\x6a\x98\xdd\x66\x2a\x13\xe4\xa3\x0a\x2a\x8b\xb5\xa6\x13\xea\x50\x28\x8f\x7e\x1b\x48\x6a\xc0\x5e\x77\xf9\x92\x45\xf8\xf8\x31\xf8\x17\x30\x1b\xa9\x83\x99\x31\x55\x05\x67\x14\x84\x1a\x12\x0a\x8e\x40\x79\xea\x2c\x57\x4e\x43\x31\xee\xc5\x51\x99\x34\xac\x31\x91\xda\xa6\x9c\x88\x0d\xf7\x70\xce\x52\x46\x65\xc1\x2d\x95\xeb\xe4\x77\xf7\x6f\x9b\x87\x7c\x58\xa2\x86\x6a\x24\x56\xcd\x05\x61\xf8\x58\x58\x63\xcc\x7c\x0e\x1d\x06\xef\xf2\xec\x3d\xe0\xba\x4d\xe9\xd7\x13\x8d\x70\x32\x7e\x56\x58\x73\xb2\x86\x3e\xc9\xf5\x4a\xe9\x22\x7f\x15\x29\x23\xe9\x73\x1c\x5f\x1e\x85\xd2\xc0\x2f\x3f\x0b\x5e\x8c\x99\x34\x4f\xdf\x01\x00\x00\xff\xff\x81\x61\xec\x6a\x61\x02\x00\x00" +var _flowserviceaccountSet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x4d\x6b\xf3\x30\x10\x84\xcf\xd2\xaf\x58\x72\x78\x71\x2e\xf6\x7b\x36\x6d\x83\xf3\x05\x81\x42\x21\xee\xc7\x35\x8a\xb2\x4e\x04\x8e\xd6\xac\xd6\x49\xa0\xe4\xbf\x17\xab\xa1\x4d\xa8\x4b\xaf\x5a\xed\xec\x33\x33\x6e\xdf\x10\x0b\xcc\x6b\x3a\x96\xc8\x07\x67\xb1\xb0\x96\x5a\x2f\x50\x31\xed\xe1\xff\x69\xfe\xf8\xf4\x56\xce\x96\xaf\x8b\xc9\xac\x98\x4e\x97\xb3\xb2\xd4\x3a\xcb\xe0\x79\xe7\x02\x08\x1b\x1f\x8c\x15\x47\x1e\xec\xce\xf8\x2d\x06\x58\xb9\x00\xe6\x22\x61\x91\x4d\x1c\x32\x06\x61\x67\x05\x37\x2b\x38\x98\xba\x45\x7d\xb5\x9a\x7c\x4f\x73\x18\x13\xd5\x43\x78\xd7\x5a\xd5\x28\x10\x6e\x90\x8a\xcd\xde\xf9\x1c\xfe\xfd\x84\x4d\xe3\xc8\x05\x61\x23\xc4\x5a\xab\x86\xb1\x31\x8c\x49\x70\x5b\x8f\x9c\x43\xd1\xca\xee\xf2\xb7\x53\x57\x2a\xcb\x60\x4c\xcc\x74\x04\xc6\x0a\x19\xbd\x45\x10\xea\xcb\xe1\x46\xba\x73\x42\x2d\x5b\x4c\xa3\x86\x56\x2a\x60\x5d\xa5\x3d\x9c\x70\x0f\x9f\xc7\xd3\x75\xbc\x73\xf7\x27\xf6\x43\xd2\x45\x9e\x43\x16\x84\xd8\x6c\x31\xab\xae\x16\xba\x8f\x43\xad\x94\x1a\x8d\xa0\x31\xde\xd9\x64\xf0\xe2\xcd\xba\x8e\xd4\xeb\x1e\x27\xa6\x17\x7b\x30\xd4\xea\xac\x15\x9e\xd0\xb6\x82\x31\x89\xdf\x0c\xa4\x01\x65\x11\x2e\x2f\x13\xc6\xd8\xe4\xf2\xab\xaa\xab\xd6\xa2\xe6\xf9\x23\x00\x00\xff\xff\xd6\x4c\xa3\x70\x4a\x02\x00\x00" func flowserviceaccountSet_is_account_creation_restrictedCdcBytes() ([]byte, error) { return bindataRead( @@ -680,11 +680,11 @@ func flowserviceaccountSet_is_account_creation_restrictedCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_is_account_creation_restricted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x3d, 0xd6, 0x34, 0xd1, 0xea, 0xb6, 0x5e, 0x1f, 0xc8, 0xe2, 0xef, 0xf3, 0xff, 0xc2, 0x1d, 0xb0, 0x58, 0xd4, 0x2d, 0x2a, 0x99, 0x74, 0xde, 0x50, 0xe7, 0x21, 0x74, 0x5b, 0x8f, 0x11, 0x2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x99, 0xe6, 0x5c, 0x96, 0xf7, 0xd5, 0xbe, 0x67, 0xcc, 0x62, 0x34, 0x2b, 0x4d, 0xd5, 0x3f, 0xb6, 0x29, 0xe7, 0xa8, 0xe7, 0x8c, 0x2b, 0xa, 0xd0, 0x7e, 0x8c, 0x5, 0xc5, 0xe7, 0x9f, 0x69, 0x7f}} return a, nil } -var _flowserviceaccountSet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\xcf\x6a\xf3\x30\x10\xc4\xcf\xd2\x53\x2c\x3e\x04\x1b\x3e\xec\xcb\x47\x0f\xa6\x6d\x48\x4b\x7d\xee\xa1\xe9\x5d\x51\xd7\x89\xc0\xd6\x9a\xdd\x15\x09\x94\xbc\x7b\x89\xf3\xb7\xe0\xf4\xa8\xd9\xd5\x6f\x86\x9d\xd0\x0f\xc4\x0a\x4d\x47\xdb\x06\x51\xa0\x65\xea\x21\x3b\x3f\x33\x6b\xab\x0a\x3e\x36\x41\x40\xd9\x45\x71\x5e\x03\x45\x10\x54\x01\xdd\xe0\xf5\xdb\xe0\xd8\xf5\xa8\xc8\x62\x6f\x16\x73\x49\xbc\xc6\xc6\x79\x25\xae\x61\xd9\x84\xdd\xc3\xff\x7f\x10\xa2\xef\x92\x04\x8a\x6f\x6d\x4b\xac\xaf\x24\x7a\x1d\xe2\x0e\x7d\xd2\xc9\x61\x01\xdf\xd6\x74\xa8\xd0\x9e\x5c\x17\xde\x53\x8a\xba\xf8\xea\x43\xac\x61\x76\x0e\x53\x8e\x42\x10\x65\xa7\xc4\xd6\x9a\x81\x71\x70\x8c\xb9\x84\x75\x44\xae\xc1\x25\xdd\xe4\x2f\xc4\x4c\xdb\x4f\xd7\x25\x2c\x60\x76\x42\x8d\x16\x46\xb0\x6b\xcb\x29\x13\x78\x82\x23\xa3\x14\x25\x76\x6b\x2c\x57\x23\xe5\xf1\x8e\xf7\x73\x7e\x38\x67\x0d\xd5\x69\xbd\xba\x40\x0f\x5b\x85\x35\xc6\xcc\xe7\x30\xb8\x18\x7c\x9e\x2d\xa3\x5b\x75\x08\x4a\x70\x84\x02\x63\x8b\x8c\xd1\x8f\x9a\xbb\xe5\x02\xa3\x50\x62\x8f\x59\x61\xcd\xde\x9a\xe3\xd1\xf0\xef\xf0\xa5\xa0\x36\x88\xef\x97\xa6\x7e\xb7\x73\xf3\xb8\x53\xd1\x84\x78\xa7\xaf\x09\x71\x0c\xba\xff\x09\x00\x00\xff\xff\x3f\x59\x3d\x32\x6e\x02\x00\x00" +var _flowserviceaccountSet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\x41\x6b\xe3\x40\x0c\x85\xcf\x33\xbf\x42\xe4\xb0\x38\xb0\xd8\x7b\x58\xf6\x60\xb6\x0d\xa6\xb1\x4f\x85\x96\xa6\xa1\xe7\xc9\x54\x4e\x06\xec\x91\x91\x64\x12\x28\xf9\xef\x25\x4e\x9a\xa4\xe0\xf4\x38\x6f\xf4\x3e\x3d\xf4\x42\xdb\x11\x2b\x54\x0d\x6d\x2b\x44\x81\x9a\xa9\x85\x3f\xbb\xea\xf1\xe9\xad\x2a\xcb\x45\x31\x9f\xbf\x94\x8b\x85\xb5\x59\x06\xaf\x9b\x20\xa0\xec\xa2\x38\xaf\x81\x22\x08\xaa\x80\x6e\xf0\xe2\xee\x1c\xbb\x16\x15\x59\xec\xd5\x60\x22\x3d\xaf\xb1\x72\x5e\x89\x73\x58\x56\x61\xf7\xef\xef\x6f\x08\xd1\x37\xbd\x04\x8a\x65\x5d\x13\xeb\x03\x89\x5e\x3e\x71\x87\xbe\xd7\xd1\xcf\x29\x7c\x58\xd3\xa0\x42\x7d\xda\x5a\x78\x4f\x7d\xd4\xe2\xbd\x0d\x31\x87\x5f\x5f\x61\xd2\x41\x08\xa2\xec\x94\xd8\x5a\xd3\x31\x76\x8e\x31\x91\xb0\x8e\xc8\x39\x14\xbd\x6e\x4e\xde\x81\x69\x04\x9b\x3a\x1d\xa3\xc2\x1d\x1c\x4d\xe9\x8a\x98\x69\xfb\xff\xc6\x92\xfb\xe4\x70\xbe\x1c\x32\x51\x62\xb7\xc6\xec\x0c\x3b\x4c\x4d\xad\x31\x66\x36\x83\xce\xc5\xe0\x93\xc9\x32\xba\x55\x83\xa0\x04\x47\x28\x30\xd6\xc8\x18\xfd\xa0\xb9\x6b\x2e\x30\x0a\xf5\xec\x71\x32\xb5\x66\x6f\xcd\xf1\x3a\xf8\x73\xe8\x54\x50\x2b\xc4\xe7\x73\x25\xdf\x6b\xb8\x7a\xdc\xe8\x62\x44\xbc\x51\xcc\x88\x38\x04\xdd\x7f\x06\x00\x00\xff\xff\xff\xaa\x15\x0d\x5e\x02\x00\x00" func flowserviceaccountSet_tx_fee_parametersCdcBytes() ([]byte, error) { return bindataRead( @@ -700,11 +700,11 @@ func flowserviceaccountSet_tx_fee_parametersCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_tx_fee_parameters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7, 0x44, 0xba, 0x8b, 0xc3, 0xc9, 0x40, 0xba, 0x19, 0x23, 0xf3, 0x15, 0x57, 0xbc, 0x3a, 0x15, 0xd5, 0x73, 0xa0, 0x4, 0xae, 0x10, 0xc7, 0x3c, 0x8d, 0x23, 0xf0, 0xe3, 0xef, 0x69, 0x6c, 0xa2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc4, 0xd9, 0xa, 0xe8, 0x29, 0x62, 0x98, 0x4f, 0xb0, 0x5b, 0x5b, 0x90, 0x2e, 0x2c, 0xa0, 0x36, 0x6b, 0x6b, 0x7d, 0x8f, 0xfc, 0xdd, 0x15, 0xf5, 0xa9, 0x70, 0x54, 0xe7, 0x8, 0x37, 0x39, 0x9b}} return a, nil } -var _flowserviceaccountSet_tx_fee_surge_factorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xb1\x6a\xf3\x40\x10\x84\xeb\xbb\xa7\x58\x54\x18\xa9\x91\x9a\x9f\xbf\x10\x49\x8c\x53\xe8\x05\x12\xa7\x3f\x5f\x46\xf6\x81\x74\x27\x76\xf7\xb0\x21\xf8\xdd\x83\x65\x3b\x76\x20\x49\xb9\xc3\xcc\x37\xcb\x84\x71\x4a\xac\xd4\x0d\x69\xdf\x01\x42\x3d\xa7\x91\x8a\xeb\x59\x58\xdb\x34\xf4\xba\x0b\x42\xca\x2e\x8a\xf3\x1a\x52\x24\x81\x0a\xe9\x0e\xb7\xd8\xe4\xd8\x8d\x50\xb0\xd8\x3b\x63\x29\x99\xb7\xe8\x9c\xd7\xc4\x2d\xad\xbb\x70\xf8\xff\xaf\xa2\x0f\x6b\x06\x28\xf5\x97\xec\xca\xfb\x94\xa3\xae\xde\xc7\x10\x5b\x5a\x5c\x91\xf5\x2c\x04\x51\x76\x9a\xd8\x5a\x33\x31\x26\xc7\x28\x25\x6c\x23\xb8\x25\x97\x75\x57\x3e\x27\xe6\xb4\x7f\x73\x43\x46\x45\x8b\x0b\x6a\xae\x30\x82\xa1\xaf\x7f\x2a\xa1\x47\x3a\x33\x6a\xd1\xc4\x6e\x8b\x7a\x33\x53\x1e\x7e\xe9\x7e\x2a\x4f\xa3\xb4\xd4\x5c\xec\xcd\x17\xf4\xe4\xaa\xac\x31\x66\xb9\xa4\xc9\xc5\xe0\xcb\x62\x1d\xdd\x66\x00\x69\xa2\x33\x94\x18\x3d\x18\xd1\xcf\x9a\xbb\xe7\x12\x43\x52\x66\x8f\xa2\xb2\xe6\x68\x0d\x0e\xf0\x59\xf1\xf7\xf3\xb5\x40\x3b\xe0\xe5\x36\xec\xf7\x91\xef\x8e\x99\x7a\xfc\x0c\x00\x00\xff\xff\x3b\xbd\x5d\x8d\xe1\x01\x00\x00" +var _flowserviceaccountSet_tx_fee_surge_factorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xc1\x4a\xf3\x40\x14\x85\xd7\x33\x4f\x71\xe9\xe2\x27\xdd\x24\xff\x42\x5c\x04\xb5\x04\xda\x59\x09\x82\xb1\xb8\x9e\x8e\x27\xed\x40\x32\x13\xee\xdc\xd0\x82\xf4\xdd\xa5\x69\xb5\x11\xd4\xe5\x1c\xce\xf7\xcd\xe5\xf8\xae\x8f\x2c\x64\xda\xb8\x37\x40\xa2\x86\x63\x47\xff\x0f\xe6\xf1\xe9\xd5\xac\x56\x75\xb5\x5c\x3e\xaf\xea\x5a\xeb\xa2\xa0\x97\x9d\x4f\x24\x6c\x43\xb2\x4e\x7c\x0c\x94\x20\x89\x64\x87\x2b\xdd\x5b\xb6\x1d\x04\x9c\xf4\xa4\x98\xa5\x81\xb7\x30\xd6\x49\xe4\x92\xd6\xc6\x1f\x6e\x6f\xe6\xf4\xae\x55\x0b\xa1\xe6\xc2\x56\xce\xc5\x21\x48\xf5\xd6\xf9\x50\xd2\xbf\x4f\x65\x3e\x06\x3e\x09\x5b\x89\xac\xb5\xea\x19\xbd\x65\x64\xc9\x6f\x03\xb8\xa4\x6a\x90\xdd\x85\x1d\x9d\x2a\xa1\x6d\xf2\x9f\xac\x74\x4f\x67\x28\xdf\x44\xe6\xb8\xbf\xfb\xe5\x93\x87\xec\x34\x42\x49\x45\x92\xc8\x76\x8b\xe2\x4b\x76\x6a\xcd\xb5\x52\x6a\xb1\xa0\xde\x06\xef\xb2\xd9\x3a\xd8\x4d\x0b\x92\x48\x67\x29\x31\x1a\x30\x82\x1b\x33\x3b\xf5\x12\x23\xc5\x81\x1d\x66\x73\xad\x8e\x5a\xe1\x00\x37\x08\xfe\x3e\x3a\x4f\x10\x03\xd4\xd7\x05\xbf\xaf\x39\x79\x8c\xd6\xe3\x47\x00\x00\x00\xff\xff\x1e\x43\xfa\x9c\xd1\x01\x00\x00" func flowserviceaccountSet_tx_fee_surge_factorCdcBytes() ([]byte, error) { return bindataRead( @@ -720,71 +720,11 @@ func flowserviceaccountSet_tx_fee_surge_factorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_tx_fee_surge_factor.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x64, 0xef, 0xd8, 0xdc, 0x37, 0x2e, 0x4d, 0x8a, 0x1c, 0x33, 0x3d, 0x68, 0x59, 0xbd, 0xda, 0xe, 0x13, 0xad, 0x59, 0x87, 0xb7, 0x74, 0x45, 0xa3, 0xd1, 0xef, 0xa8, 0x33, 0x79, 0x24, 0x93, 0xb0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1d, 0x84, 0xea, 0x4e, 0xdf, 0x39, 0x64, 0x58, 0x5c, 0x35, 0xeb, 0xc3, 0x27, 0xcb, 0x39, 0xc9, 0xa5, 0xf, 0x7b, 0xbe, 0x52, 0x59, 0x3c, 0xbc, 0x9a, 0xc2, 0x15, 0x2f, 0x72, 0xc3, 0x0, 0xb2}} return a, nil } -var _accountsAdd_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x51\x6b\xdb\x30\x14\x85\x9f\xa5\x5f\x71\x9a\x87\x60\x83\x09\xce\x3a\xc2\x10\xf5\x20\x0c\x46\x47\x19\x0c\xba\xee\x5d\xb1\x2e\xb6\x88\x23\x19\xf9\xba\xae\x19\xf9\xef\x43\xc9\xe6\x26\x38\xec\x49\xf2\xf5\xb9\xe7\xd3\x3d\x5c\x7b\x68\x7d\x60\x7c\x09\x63\xcb\x5e\x4a\x0e\xda\x75\xba\x64\xeb\x5d\xb2\xa7\x51\xe1\x99\x83\x75\x55\x86\xce\x56\x4e\x73\x1f\x68\xdb\x54\x3e\x58\xae\x0f\x0a\x2f\xdf\x1c\x7f\xca\x50\xeb\xae\x9e\x57\x07\xb2\x55\xcd\x0a\x2f\x5f\xed\xdb\xe6\x63\x8a\xdf\x52\x8a\x36\x50\xab\x03\x25\xd1\x8c\x82\x82\xee\xb9\x4e\xb6\xc6\x3c\xd1\x98\x62\xb9\x2d\x4b\xdf\x3b\x8e\x52\x11\xa5\xa7\x53\xcc\xc1\xf8\x5c\x60\x8d\xe5\xf2\xc6\x9b\xf0\x50\xe0\x5e\x61\xf1\xbd\xef\x18\x6d\xf0\xaf\xd6\x10\xf4\xbb\x10\x7a\x52\x06\x3d\xe0\x55\x37\x3d\x81\x6b\xcd\xb0\x1d\xd6\x19\x3e\x64\xf0\x01\xf7\x8b\x08\xbe\x1a\x6b\x62\x5e\x57\x1f\x0a\x6c\xe6\xb8\xa8\xf9\x2f\x69\x47\x3c\x10\x39\xac\xa1\x9d\xc1\xe6\x84\x3b\xe7\x15\x1d\xd7\x79\x9e\xaf\x72\x85\xc5\xcf\x9a\xb0\xa7\xf1\x6f\x94\x38\x44\xca\x8e\xa6\xee\xfc\xd4\x1d\xd5\xd1\xe0\x28\x85\x68\x88\xd1\xf6\xbb\xc6\x96\x4f\x34\xa2\xc0\x8f\x7f\xf7\x24\x12\xa6\x3f\x2a\xba\xae\x0c\x95\xde\xd0\x23\xbd\x25\x69\x76\x3b\x68\x85\xe7\x59\x2d\x09\x7a\xf8\x15\x87\x51\x37\xe2\x4f\xef\xa4\x10\xa9\x94\x67\x33\x0a\xab\x3d\x8d\xdd\x4a\x1b\x93\x5c\xb0\xa7\xeb\x6c\x73\x1e\x2f\x3f\x2f\x40\x57\xb2\xf4\xee\x7d\xb7\xce\x67\x2a\xc5\x51\x1e\xff\x04\x00\x00\xff\xff\xa2\xf6\xe5\xb7\xc9\x02\x00\x00" - -func accountsAdd_keyCdcBytes() ([]byte, error) { - return bindataRead( - _accountsAdd_keyCdc, - "accounts/add_key.cdc", - ) -} - -func accountsAdd_keyCdc() (*asset, error) { - bytes, err := accountsAdd_keyCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "accounts/add_key.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0x9d, 0x12, 0x10, 0xf2, 0xbf, 0x12, 0x9b, 0x86, 0x80, 0x3b, 0x15, 0x3e, 0x13, 0x74, 0x20, 0xc9, 0x11, 0x7e, 0x8a, 0x24, 0x9, 0xa1, 0xe2, 0xef, 0x6f, 0x91, 0x6a, 0x4e, 0x8d, 0x61, 0x1f}} - return a, nil -} - -var _accountsCreate_new_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\x61\x8b\x9b\x40\x10\xfd\xac\xbf\xe2\x5d\x3e\x04\x05\x09\xa6\x57\x42\x59\xce\xc2\xb5\x50\xae\x94\x42\x21\xbd\x7e\x9f\xe8\xa0\x4b\x92\x5d\x59\xc7\xf3\xa4\xe4\xbf\x97\xd5\x9c\x97\x60\xe8\xa7\x5d\xc7\x37\xf3\xde\xbe\x79\xfa\x58\x5b\x27\xf8\xea\xfa\x5a\x6c\x18\x8a\x23\xd3\x50\x2e\xda\x9a\x68\xcf\xbd\xc2\x56\x9c\x36\x65\x82\x46\x97\x86\xa4\x75\xfc\x78\x28\xad\xd3\x52\x1d\x15\x9e\xbf\x1b\xf9\x94\xa0\xa2\xa6\x9a\x57\x3b\xd6\x65\x25\x0a\xcf\xdf\xf4\xeb\xe6\x63\x8c\xbf\x61\x50\x3b\xae\xc9\x71\xe4\x67\xb1\x53\xa0\x56\xaa\xe8\x8b\x75\xce\x76\x7f\xe8\xd0\x72\x82\xad\x58\x47\x25\xc7\x58\x3e\xe6\xb9\x6d\x8d\x0c\x7d\xbe\x71\x38\x83\xb9\x0a\x7c\xce\xb0\xc6\x72\x79\x43\x20\x1e\x32\xdc\x2b\x2c\x7e\xb6\x8d\xa0\x76\xf6\x45\x17\x0c\x7a\x07\x82\x26\xa4\xa3\x0e\x2f\x5e\x02\xa4\x22\x81\x6e\xb0\x4e\xf0\x21\x81\x75\xb8\x5f\x78\xe2\xab\x37\x4e\x9c\xd7\xd5\x87\x0c\x9b\x39\x9d\xc7\xfc\x97\x69\xc7\xd2\x31\x1b\xac\x41\xa6\xc0\x66\xa0\x1b\xcd\xf3\x13\xd7\x69\x9a\xae\x52\x85\xc5\xef\x8a\xb1\xe7\xfe\xec\x2b\x8e\x9e\x65\xc7\x53\x77\x3a\x74\x7b\xb4\x1f\x70\x0a\xc3\x20\x38\xb0\xa0\x6e\x77\x07\x9d\xff\xe0\x1e\x19\x7e\xbd\xdd\x23\x4f\x31\xfd\x51\x7e\xec\xaa\xe0\xdc\x16\xfc\xc4\xaf\x51\x9c\xdc\x76\x5a\x61\x3b\xab\x45\x8e\xc6\xd5\xa9\x1b\xfe\xc7\x77\x61\x10\xc4\x6f\x4a\x68\x5c\x28\x32\x9c\x57\x1b\xd5\xd4\xfb\x14\x8c\x69\x18\x70\x67\xcc\x6a\xcf\x7d\xb3\xa2\xa2\x88\x2e\x44\x4e\xd7\x59\xe0\x9e\x2e\x3f\x2f\x14\x5d\xc1\xe2\xbb\xf7\x48\x8e\x67\x1c\x06\xa7\xf0\xf4\x2f\x00\x00\xff\xff\xc9\x2b\x3a\x56\x00\x03\x00\x00" - -func accountsCreate_new_accountCdcBytes() ([]byte, error) { - return bindataRead( - _accountsCreate_new_accountCdc, - "accounts/create_new_account.cdc", - ) -} - -func accountsCreate_new_accountCdc() (*asset, error) { - bytes, err := accountsCreate_new_accountCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "accounts/create_new_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc4, 0xa7, 0xef, 0xd8, 0x70, 0x83, 0x96, 0xe8, 0xc7, 0xa3, 0x61, 0x1f, 0x72, 0xa9, 0xf8, 0x9f, 0x67, 0x5b, 0xf6, 0xd5, 0xc9, 0x33, 0x6d, 0xd3, 0x89, 0xe5, 0x83, 0x9c, 0xba, 0x78, 0x44, 0x3c}} - return a, nil -} - -var _accountsRevoke_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4e\xc4\x30\x10\x45\x6b\xfb\x14\xa3\x2d\xc0\xdb\xec\x01\x56\xa2\xa0\x5c\x21\x51\x70\x03\xcb\x7c\x92\x91\x57\xe3\xc8\x9e\x84\x18\x94\xbb\xa3\xd8\x20\xa5\xa0\xb3\xe4\xf7\xde\x7c\xcd\x5e\x8a\x0f\xca\x49\x5c\x44\xbd\xc9\x3b\xd6\x2b\xdd\x44\xcf\xf4\x6d\xcd\x94\x31\xf9\x0c\x57\x78\x10\xe4\x2b\xf9\x59\x47\xf7\x86\x25\x45\xbc\xa0\x9e\xe9\xe1\x39\x84\x34\xff\xc2\x86\x3f\xe8\x0e\xa5\x88\x4a\x4f\xd4\x95\x4b\x44\x2d\x97\x01\x7a\x88\xff\xbd\xba\x64\x8e\x60\x6e\xe9\xff\x58\x6b\xcc\x46\xb8\x17\x74\x69\xf2\xc2\xc1\x9d\x5e\x53\xbb\xf6\xc9\x3a\x92\x8e\xa0\x81\x17\x08\xf1\x6e\x10\x56\x2e\x5a\x28\x49\xfb\xd9\x97\xa7\xcc\x5f\xc8\x8f\x85\x7c\x5f\x7d\x6a\x55\x6b\x36\xbb\xfd\x04\x00\x00\xff\xff\x57\x3a\xd3\x8c\x07\x01\x00\x00" - -func accountsRevoke_keyCdcBytes() ([]byte, error) { - return bindataRead( - _accountsRevoke_keyCdc, - "accounts/revoke_key.cdc", - ) -} - -func accountsRevoke_keyCdc() (*asset, error) { - bytes, err := accountsRevoke_keyCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "accounts/revoke_key.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0x7a, 0xb7, 0x28, 0x37, 0xfd, 0xce, 0x77, 0xa9, 0x10, 0xf6, 0xfc, 0xc, 0x62, 0x2c, 0x6c, 0x4d, 0x5b, 0x17, 0xf6, 0xfb, 0xf7, 0x29, 0x5f, 0x34, 0x5d, 0x50, 0xd3, 0x50, 0x8d, 0xd5, 0x15}} - return a, nil -} - -var _dkgAdminForce_stop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xbf\x6a\xc3\x30\x10\xc6\x77\x3f\xc5\x87\x87\xa0\x2c\x7a\x00\xd3\x36\xa4\x4d\x9b\x21\x4b\xa1\xd0\x5d\x95\xcf\x8e\xa8\xac\x33\xe7\x13\x29\x84\xbc\x7b\xb1\x95\x14\x32\xf4\xb6\x3b\xee\xf7\xfd\x09\xc3\xc8\xa2\x78\x8b\x7c\xda\x1d\xf6\xe8\x84\x07\xd4\xd7\xad\xae\x2a\x15\x97\x26\xe7\x35\x70\xc2\xb9\xaa\x00\x20\x92\xa2\xfd\xee\xb7\xed\x10\x52\x83\xd5\xf5\xd7\x2e\x7b\xf9\x18\x85\x46\x27\x64\xa6\xd0\x27\x92\x06\x2e\xeb\xd1\x3c\xb3\x08\x9f\x3e\x5d\xcc\xb4\xc6\x6a\xeb\x3d\xe7\xa4\x6b\x9c\x17\x62\x9e\x89\x62\x67\x6f\xc2\x78\x44\xa1\xed\xa4\x2c\xae\x27\xfb\xb5\xf0\x0f\xf7\x7e\x4f\x66\x0e\xdc\xe0\xee\xf8\x51\x88\x77\xa7\xc7\xf5\x9f\xfa\x3c\x9b\x0d\x46\x97\x82\x37\xf5\x0b\xe7\xd8\x22\xb1\xa2\xc8\x62\xee\x5e\x8c\x85\x3a\x12\x4a\x9e\xea\x02\x5f\x4a\x27\xfa\x21\x9f\x95\xfe\xcb\x6b\x3b\x16\x4f\xaf\xa9\xdd\x1d\xf6\xe6\x06\x5e\xaa\xdf\x00\x00\x00\xff\xff\x8e\x1e\xeb\xa5\x5e\x01\x00\x00" +var _dkgAdminForce_stop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x41\x4f\x83\x40\x10\x85\xef\xfc\x8a\x97\x1e\x0c\x5c\x88\x67\xa2\x36\x44\x2a\x07\x2e\x46\x7e\xc1\xba\x0c\x74\x23\xcc\x90\x61\x48\x9b\x98\xfe\x77\x83\x6b\x35\x3d\xf8\x2e\x9b\x9d\xbc\xf7\xcd\x9b\x30\xcd\xa2\x86\x97\x51\x4e\x55\x53\xa3\x57\x99\x70\x7f\xae\x9a\xba\xac\xaa\xb7\x43\xdb\x26\x89\xa9\xe3\xc5\x79\x0b\xc2\xf8\x4c\x12\x00\x18\xc9\xd0\x7d\x0c\x65\x37\x05\x2e\x70\xf7\x13\xce\xbf\xff\xd1\x31\x2b\xcd\x4e\x29\x5d\xc2\xc0\xa4\x05\xca\xd5\x8e\xa5\xf7\xb2\xb2\x65\x57\xca\xa6\x85\xc6\x3e\xbf\xa2\xf0\x88\xe8\xcf\xdf\x45\x55\x4e\x0f\xb7\xe4\xa7\x74\x6b\x57\xe0\x66\xd8\x9a\xa8\x1b\xe8\xd5\xd9\x31\xfb\xa5\x6e\xda\xef\x31\x3b\x0e\x3e\xdd\x3d\xcb\x3a\x76\x60\x31\x44\x2c\xb6\x43\xe3\x42\xa5\x9e\x94\xd8\xd3\x2e\x8b\x9d\x2e\xf1\xa1\x33\xf9\xd5\xe8\xdf\xa6\x79\x2f\xea\xe9\xc0\x5d\xd5\xd4\xe9\x5f\xf4\xf2\x15\x00\x00\xff\xff\x6b\xe4\xb6\xb3\x4e\x01\x00\x00" func dkgAdminForce_stop_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -800,11 +740,11 @@ func dkgAdminForce_stop_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/force_stop_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd, 0x7, 0x7c, 0x9c, 0xa1, 0xca, 0xf3, 0xe6, 0x91, 0x69, 0x51, 0x5d, 0xe5, 0x2c, 0xbc, 0x86, 0x32, 0xf5, 0xb5, 0x87, 0xed, 0x11, 0x8e, 0x29, 0xe6, 0x7c, 0x43, 0xc6, 0x29, 0x64, 0x8b, 0x6d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0x53, 0xf9, 0x8d, 0x95, 0x45, 0x15, 0x8e, 0x63, 0x8, 0xf2, 0x6b, 0x8e, 0xd9, 0x78, 0xd1, 0xb5, 0x25, 0x89, 0x30, 0xf7, 0x90, 0x6d, 0xe2, 0x60, 0xed, 0x4d, 0xb9, 0x5d, 0xdc, 0xd, 0x6c}} return a, nil } -var _dkgAdminPublish_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x9e\x3d\x94\x04\x24\xb9\x17\x15\x4a\x45\x0f\x5e\x04\xfd\x03\xd3\xed\x36\x19\xdc\xec\x2e\x33\x13\x44\x4a\xff\xbb\x34\xa9\x12\xc1\xbd\xbd\xe5\x7d\xdf\x1b\x1e\x4a\x16\xc3\x53\xcc\x9f\x8f\x2f\xcf\x38\x4a\x1e\xb0\xba\xa6\x95\x73\x6d\x8b\xf7\x9e\x15\x26\x94\x94\xbc\x71\x4e\x60\x45\x4e\xf1\x0b\xc7\x2c\xb0\xa0\xc6\xa9\xbb\x71\x6e\xd9\x38\x39\x07\x00\x45\x42\x21\x09\x95\x72\x97\x82\x6c\x40\xa3\xf5\xd5\x8e\x0a\xed\x39\xb2\x71\xd0\x1a\xeb\xad\xf7\x79\x4c\x56\xe3\x34\x21\x97\x17\x83\x81\x0e\x03\xa7\x1d\x15\xdc\x63\xa6\x1b\xbf\xe0\x1a\xb5\x2c\xd4\x85\x86\x55\xc7\x70\xb7\xbe\xde\xdb\x6c\x2f\xd4\x43\xf5\x27\xbe\xcd\xd5\x57\xb2\xbe\xfe\x9d\xf8\xcf\x59\xc6\x7d\x64\xed\xab\x9f\xe9\x5b\x90\x6d\xd0\x4e\xdf\xbe\x3d\x7c\x74\x93\x6e\x76\x9c\xdd\xd9\x7d\x07\x00\x00\xff\xff\x7d\x13\x3d\x16\x3a\x01\x00\x00" +var _dkgAdminPublish_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x41\x4b\xc3\x40\x10\x05\xe0\xfb\xfc\x8a\xe7\x45\x5a\x90\xc6\x73\x11\x21\x10\xed\xa1\x17\x31\xfe\x81\x35\xdd\x6e\x86\x6e\x66\x96\xd9\x09\x2a\xd2\xff\x2e\x1a\x05\x3b\xc7\x79\x1f\x8f\xc7\x53\x51\x73\x3c\x66\x7d\xeb\xf6\x3b\x1c\x4d\x27\xdc\xbe\x77\xfb\x5d\xdb\x75\xcf\x0f\x7d\x4f\xd4\x34\x78\x19\xb9\xc2\x2d\x48\x0d\x83\xb3\x0a\xb8\x42\x25\x7f\xe0\xa8\x06\x8f\xd5\x59\xd2\x15\xd1\x7f\xf1\x49\x04\x00\xc5\x62\x09\x16\x57\x95\x93\x44\xdb\xa2\x9d\x7d\x6c\x87\x41\x67\xf1\xf5\x9f\xf9\xbe\x25\xdf\x64\x96\xd3\xdd\xf5\xef\x98\x4d\x7b\x98\x58\xee\x57\x4d\x99\x5f\x33\x0f\xcd\xe1\x94\x7e\x3e\x37\xf0\x60\x29\xfa\x16\x17\xb0\x77\xb5\x90\xe2\x53\xf0\x71\xbd\x14\x9f\x89\xce\x5f\x01\x00\x00\xff\xff\xd0\x9c\x76\xb8\xe0\x00\x00\x00" func dkgAdminPublish_participantCdcBytes() ([]byte, error) { return bindataRead( @@ -820,11 +760,11 @@ func dkgAdminPublish_participantCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/publish_participant.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x80, 0x1f, 0x80, 0x25, 0x1a, 0x97, 0xdc, 0x4d, 0x5, 0x1a, 0xfe, 0x33, 0x88, 0x86, 0x54, 0x16, 0xe2, 0xc9, 0x2b, 0x7e, 0xaa, 0x72, 0xdf, 0x55, 0x8f, 0x4a, 0x51, 0xd6, 0xe7, 0x59, 0x4e, 0xe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xec, 0x55, 0xff, 0x37, 0xec, 0x8, 0x49, 0xe7, 0xe0, 0xd, 0xea, 0xad, 0x75, 0x78, 0xe, 0x7e, 0x3e, 0xc5, 0xc4, 0x78, 0x6f, 0xda, 0x66, 0x26, 0x76, 0x96, 0xa0, 0x81, 0xc, 0xc3, 0xe3, 0x1c}} return a, nil } -var _dkgAdminSet_safe_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x31\x6b\xc3\x30\x10\x85\x77\xff\x8a\xc3\x43\x70\x16\x4f\xa5\x83\x69\x1b\xd2\x96\x74\xe8\x12\x70\xdb\x5d\x95\x9f\x6d\x51\x59\x32\xa7\x13\x0e\x94\xfc\xf7\xe2\xc8\x09\x04\x9a\xdb\xee\xd0\xfb\x9e\xde\x33\xc3\xe8\x59\x68\x67\xfd\xf4\xfa\xfe\x46\x2d\xfb\x81\xf2\x65\xcb\xb3\x4c\x58\xb9\xa0\xb4\x18\xef\x0a\x87\xe9\xa3\x67\x84\xde\xdb\x66\x0f\xd6\x70\xa2\x3a\x54\xf4\xb9\x33\x87\xfb\xbb\xcd\x9a\x7e\xb3\x8c\x88\xc8\x42\xa8\xf9\xe9\xb6\xcd\x60\x5c\x45\xab\x05\x56\x9e\xf6\xf4\x62\x64\x8c\x8a\x51\x04\xd3\x39\x70\x45\x2a\x4a\x5f\x3c\x7b\x66\x3f\x7d\x29\x1b\xb1\xa6\xd5\x56\x6b\x1f\x9d\xcc\x50\x5a\x26\xc0\xb6\xe5\x19\x4c\x8f\x94\xd4\x65\x10\xcf\xaa\x43\xf9\x7d\xd2\x3f\x5c\xfb\x3d\x15\x73\xa2\x8a\xae\x8e\x75\x52\xec\x95\xf4\xeb\x0b\x7d\x9e\xcd\x86\x46\xe5\x8c\x2e\xf2\x17\x1f\x6d\x43\xce\x0b\x25\x2c\xcd\xe5\x24\x63\x46\x0b\x86\xd3\xc8\x93\xf8\x98\x32\xe1\x00\x1d\x05\xb7\xfe\x5b\x06\x48\xad\x5a\xd4\x51\x6b\x84\x70\x29\xf2\x66\xab\xff\xdf\xcf\x96\xc7\xec\x2f\x00\x00\xff\xff\x3c\x47\xb5\xfd\xb9\x01\x00\x00" +var _dkgAdminSet_safe_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xc1\x6a\xb4\x40\x10\x84\xef\x3e\x45\xb3\x87\x1f\xbd\xc8\x7f\x08\x39\x48\x12\x91\x98\xdd\xc3\x5e\x96\x98\x3c\xc0\x64\x2c\x75\x88\xce\x48\x4f\x8b\x42\xd8\x77\x0f\x66\x12\xc3\x42\xb6\x2f\xc3\x14\xc5\x57\x45\x99\x61\x74\x2c\xb4\xef\xdd\x5c\x1e\x0f\xd4\xb0\x1b\xe8\xff\x52\x1e\x0f\x45\x59\x3e\x3f\x55\x55\x14\x09\x2b\xeb\x95\x16\xe3\x6c\x6c\x31\xbf\x74\x0c\xdf\xb9\xbe\x3e\x81\x35\xac\xa8\x16\x19\xbd\xee\xcd\x72\x7b\x93\x27\xf4\x11\x45\x44\x44\x3d\x84\xea\xf7\xb6\xa8\x07\x63\x33\xfa\xf7\x4d\x4f\xbf\xfe\xc1\x31\x32\x46\xc5\x88\xbd\x69\x2d\x38\xa3\x62\x92\xae\xd0\xda\x4d\x56\x36\xca\x7a\x1e\x7d\x93\xfe\xa0\xe8\x9e\x82\x3f\x7d\x73\xcc\x6e\xbe\xbb\x24\x3f\xc4\x6b\xfd\x8c\x2e\xc4\x4a\x1c\xab\x16\x27\x25\x5d\xb2\x51\xd7\xcb\x73\x1a\x95\x35\x3a\xde\x3d\xba\xa9\xaf\xc9\x3a\xa1\x80\xa5\x75\x89\x10\xc8\x68\xc0\xb0\x1a\xbb\x24\x74\x3a\x87\x07\x0b\xf4\x24\xb8\xda\x34\xf5\x90\x4a\x35\xa8\x26\xad\xe1\xfd\x36\xda\xd5\x05\xff\xd6\x7f\x43\xcf\x9f\x01\x00\x00\xff\xff\x08\xd4\x0e\xba\xa9\x01\x00\x00" func dkgAdminSet_safe_thresholdCdcBytes() ([]byte, error) { return bindataRead( @@ -840,11 +780,11 @@ func dkgAdminSet_safe_thresholdCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/set_safe_threshold.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0x67, 0xe6, 0xde, 0x86, 0xdf, 0xcb, 0xd9, 0x80, 0x6d, 0xf1, 0xfc, 0x5, 0xef, 0x4e, 0x31, 0xed, 0x61, 0xe0, 0x8e, 0xfa, 0xbd, 0x3f, 0xae, 0x92, 0x1e, 0x10, 0x99, 0xb1, 0x3d, 0x43, 0xa6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2a, 0xee, 0x21, 0xa5, 0x42, 0x7, 0x30, 0x80, 0x1b, 0x7f, 0x7f, 0x43, 0xfd, 0x0, 0x77, 0xfc, 0x63, 0xc5, 0x5d, 0x9c, 0x14, 0xe5, 0xe8, 0x5b, 0x96, 0x59, 0xd7, 0x95, 0xcc, 0x7a, 0x44, 0x85}} return a, nil } -var _dkgAdminStart_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xb1\x6a\xc3\x30\x10\x86\x77\x3f\xc5\x8f\x87\x60\x2f\x7e\x00\xd3\x36\xa4\x35\x0d\x25\x4b\x21\xd0\xa5\x74\x50\xe5\xb3\x23\x6a\xeb\xcc\xe9\x44\x0a\x25\xef\x5e\x1c\x39\x2d\x19\x72\x93\x4e\xe8\xfb\x4e\xf7\xbb\x71\x62\x51\x3c\x0f\x7c\x6c\x76\x5b\x74\xc2\x23\xf2\xa5\xcb\xb3\x4c\xc5\xf8\x60\xac\x3a\xf6\x85\xe7\x96\x5e\x9a\x50\xe3\x7d\xaf\xe2\x7c\xff\x51\xe2\x27\xcb\x00\x60\x20\x45\xfb\xd5\x6f\xda\xd1\xf9\x1a\xab\x05\xaf\xce\x7d\x7a\x31\x09\x4d\x46\xa8\x08\xae\xf7\x24\x35\x4c\xd4\x43\xf1\xc8\x22\x7c\x7c\x33\x43\xa4\x12\xab\x8d\xb5\x1c\xbd\xce\x52\x2c\x15\x68\xe8\xaa\x8b\x18\xf7\x48\x74\x15\x94\xc5\xf4\x54\x7d\x9e\xf9\xbb\xeb\x79\x0f\xc5\xbc\x43\x8d\xab\xcb\x7d\x22\x5e\x8d\x1e\xca\x3f\xfb\x5c\xeb\x35\x26\xe3\x9d\x2d\xf2\x27\x8e\x43\x0b\xcf\x8a\xa4\xc5\x1c\x47\x1a\x2c\xd4\x91\x90\xb7\x94\x27\xf8\x94\x76\xa2\x6f\xb2\x51\xe9\xd6\x7f\xab\xa0\x46\xb4\xd9\x6d\xff\x83\x5b\x0e\x17\xcb\x29\xfb\x0d\x00\x00\xff\xff\x5b\x70\x21\x9a\x7e\x01\x00\x00" +var _dkgAdminStart_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x8f\x1e\x24\xb9\x04\xcf\x41\x2d\xc1\xd5\x20\xb9\x88\x39\x8a\x87\x75\x33\x49\x17\x93\x9d\x30\x99\xd0\x82\xf4\xbf\x4b\xdc\xda\xd2\x83\xef\xb2\x3b\xc3\xe3\x9b\x37\xe3\xc7\x89\x45\xf1\x3c\xf0\xde\xd4\x15\x3a\xe1\x11\xb7\x07\x53\x57\xa5\x31\x6f\x4f\x4d\x93\x24\x2a\x36\xcc\xd6\xa9\xe7\x90\x06\x6e\xe9\xc5\xcc\x05\xde\x1b\x15\x1f\xfa\x8f\x0c\xdf\x49\x02\x00\x03\x29\xda\xaf\xbe\x6c\x47\x1f\x0a\xdc\x9c\x78\xf9\x6f\x1d\x1d\x93\xd0\x64\x85\xd2\xd9\xf7\x81\xa4\x40\xb9\xe8\xae\x74\x8e\x97\xa0\x67\xca\xaa\x99\x86\x2e\xff\x43\xe1\x1e\xd1\x9f\x7f\xb2\x08\xef\xef\xae\xc9\x0f\xe9\x1a\xb8\xc0\x55\xb3\x51\x16\xdb\xd3\xab\xd5\x5d\x76\xa6\xae\xda\x6e\x31\xd9\xe0\x5d\xba\x79\xe4\x65\x68\x11\x58\x11\xb1\x58\x77\x8f\x03\x85\x3a\x12\x0a\x8e\x36\x59\xcc\x74\x8c\x0f\x1d\xc8\x2d\x4a\xff\x26\xcd\x67\xb5\xa2\xa6\xae\x2e\x47\x3a\x7d\x2e\x9c\xe3\x4f\x00\x00\x00\xff\xff\x07\x1f\xfa\x84\x6e\x01\x00\x00" func dkgAdminStart_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -860,11 +800,11 @@ func dkgAdminStart_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/start_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0xad, 0x9e, 0x9d, 0xaa, 0x32, 0xd9, 0x6a, 0x40, 0x16, 0x36, 0x35, 0x82, 0x11, 0xeb, 0x74, 0x9f, 0xfc, 0x95, 0xaa, 0xa7, 0x64, 0x9c, 0xf0, 0xc5, 0x3c, 0x4a, 0xd9, 0xb, 0x1e, 0x18, 0xb7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0x9c, 0x4f, 0xf1, 0xca, 0x18, 0x35, 0xe8, 0xbf, 0xb3, 0x93, 0x79, 0x1b, 0x85, 0xe7, 0xc5, 0x4b, 0x22, 0x3, 0xa, 0x8a, 0x91, 0x42, 0xf4, 0x2e, 0x24, 0x32, 0x55, 0xba, 0xc8, 0x15, 0x5c}} return a, nil } -var _dkgAdminStop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xcd\x6a\xeb\x30\x10\x85\xf7\x7e\x8a\x83\x17\x41\xde\xe8\x01\xcc\xbd\x0d\x69\x43\xb3\xc8\xa6\x50\xe8\x5e\x95\xc7\x8e\xa8\xac\x31\xe3\x11\x29\x84\xbc\x7b\xb1\x95\x14\xb2\xe8\xec\x66\x98\xef\xfc\x84\x71\x62\x51\xbc\x46\x3e\xef\x8f\x07\xf4\xc2\x23\xea\xdb\x56\x57\x95\x8a\x4b\xb3\xf3\x1a\x38\xe1\x52\x55\x00\x10\x49\xd1\x7d\x0d\xbb\x6e\x0c\xa9\xc5\xe6\xf6\x6b\xd7\xbd\x7c\x4c\x42\x93\x13\x32\x73\x18\x12\x49\x0b\x97\xf5\x64\x9e\x59\x84\xcf\x1f\x2e\x66\x6a\xb0\xd9\x79\xcf\x39\x69\x83\xcb\x4a\x2c\x33\x53\xec\xed\x5d\x18\xff\x51\x68\x3b\x2b\x8b\x1b\xc8\x7e\xae\xfc\xbf\x47\xbf\x27\xb3\x04\x6e\xf1\x70\x7c\x2f\xc4\x9b\xd3\x53\xf3\xab\xbe\xcc\x76\x8b\xc9\xa5\xe0\x4d\xfd\xc2\x39\x76\x48\xac\x28\xb2\x58\xba\x17\x63\xa1\x9e\x84\x92\xa7\xba\xc0\xd7\xd2\x89\xbe\xc9\x67\xa5\xbf\xf2\x5a\x4a\xdd\xfe\x78\x30\x77\xe6\x5a\xfd\x04\x00\x00\xff\xff\x87\x3a\x5a\x8e\x59\x01\x00\x00" +var _dkgAdminStop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x41\x4f\x83\x40\x10\x85\xef\xfc\x8a\x97\x1e\x0c\x5c\x88\x67\xa2\x36\x44\x94\x03\x17\x23\xbf\x60\x5d\x06\xba\x11\x66\xc8\x30\xa4\x4d\x4c\xff\xbb\xc1\xb5\x9a\x1e\xfa\x2e\x9b\x9d\xbc\xf7\xcd\x9b\x30\xcd\xa2\x86\xd7\x51\x8e\x55\x53\xa3\x57\x99\x70\x7f\xaa\x9a\xba\xac\xaa\xf7\x97\xb6\x4d\x12\x53\xc7\x8b\xf3\x16\x84\xf1\x95\x24\x00\x30\x92\xa1\xfb\x1c\xca\x6e\x0a\x5c\xe0\xee\x37\x9c\xff\xfc\xa3\x63\x56\x9a\x9d\x52\xba\x84\x81\x49\x0b\x94\xab\x1d\x4a\xef\x65\x65\xcb\x2e\x94\x4d\x0b\x8d\x7d\x7e\x41\xe1\x11\xd1\x9f\x7f\x88\xaa\x1c\x1f\xae\xc9\x4f\xe9\xd6\xae\xc0\xd5\xb0\x35\x51\x37\xd0\x9b\xb3\x43\xf6\x47\xdd\xb4\xdf\x63\x76\x1c\x7c\xba\x7b\x96\x75\xec\xc0\x62\x88\x58\x6c\x87\xc6\x85\x4a\x3d\x29\xb1\xa7\x5d\x16\x3b\x9d\xe3\x43\x27\xf2\xab\xd1\xcd\xa6\x39\x71\x57\x35\x75\xfa\x9f\x3a\x7f\x07\x00\x00\xff\xff\x74\x8c\xee\x80\x49\x01\x00\x00" func dkgAdminStop_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -880,11 +820,11 @@ func dkgAdminStop_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/stop_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xda, 0x6d, 0xdc, 0x10, 0x3a, 0xa6, 0xb1, 0xad, 0x8f, 0x3, 0x9, 0x74, 0xf9, 0xc6, 0x3e, 0x5a, 0x8e, 0x69, 0xcf, 0x6e, 0x2a, 0xe, 0xed, 0x75, 0x9c, 0xf3, 0x4d, 0x37, 0x62, 0x8f, 0x9e, 0x5f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0xe4, 0x2, 0xa5, 0xa0, 0x9b, 0xd5, 0xc3, 0xdb, 0x5d, 0x5a, 0xfa, 0xe6, 0x41, 0x85, 0x32, 0x8e, 0xae, 0x4e, 0xd8, 0x6f, 0x1a, 0x37, 0x77, 0x7, 0xb2, 0xce, 0x6, 0x29, 0x48, 0x43, 0x84}} return a, nil } -var _dkgCreate_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\x4f\x8b\x32\x31\x0c\xc6\xef\xfd\x14\x61\x0e\xd2\x01\xad\xf7\xc1\xf7\x15\x59\xd9\x65\xd9\x8b\x20\xec\x3d\xb6\x71\x2c\xd6\xb6\xa4\x19\x3d\x2c\x7e\xf7\x45\x3b\x2e\x9a\x4b\xff\xa4\xcf\x2f\xe9\x13\x7f\xca\x89\x05\xde\x43\xba\xac\xbf\x3e\x60\xcf\xe9\x04\xcd\x78\x6a\x94\x12\xc6\x58\xd0\x8a\x4f\x51\xa3\x73\x4c\xa5\x74\xb0\xaa\x9b\x29\xc4\xe4\xe8\x73\xdd\xc1\x56\xd8\xc7\xbe\x85\x1f\xa5\x00\x00\x32\x53\x46\x26\x5d\x7c\x1f\x89\x3b\xc0\x41\x0e\x7a\x8b\x67\xfa\xc6\x30\x50\x0b\x93\x95\xb5\x69\x88\x72\x13\xc0\x18\x81\x04\xd0\x9d\x7c\x84\x7f\xd0\x93\x8c\x2f\x1e\x35\x5b\x63\x31\xe3\xce\x07\x2f\x9e\x8a\xd9\x25\xe6\x74\x59\x4c\xc6\x3e\xcd\xea\x26\xfc\xaf\xe7\x79\xd8\x05\x6f\xe7\xee\xd8\xdf\x6f\xda\x3f\xfa\x3d\x96\x4b\xc8\x18\xbd\xd5\xcd\x5b\x1a\x82\x83\x98\x04\x2a\x69\xac\xcc\xb4\x27\xa6\x68\xa9\x69\xd5\x4b\x63\xee\xd8\x6f\x90\xc5\x5b\x9f\x31\x0a\x2c\x66\x55\x60\x2c\x13\x0a\x3d\xa5\xf4\xc3\x91\xba\x3e\x61\xaa\x17\xa6\x48\x62\xec\xc9\x14\x3c\x93\x5e\xcc\x5e\xc1\x53\x90\xd4\x3d\x46\x61\x9e\x12\xdb\xaa\xda\xa0\x1c\xea\x9f\xae\x4a\x5d\x7f\x03\x00\x00\xff\xff\x98\xcb\x3b\x89\xba\x01\x00\x00" +var _dkgCreate_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x50\x4d\x6e\xf2\x30\x10\xdd\xfb\x14\x23\x16\x9f\x1c\x09\xc2\xb7\x8e\x68\x51\x44\x5a\x54\xb1\x41\xcd\x09\x06\x7b\x30\x16\xc1\xb6\x26\x93\xd2\xaa\xe2\xee\x15\x75\xa8\x60\x36\xb6\xfc\xe6\xfd\xf8\xf9\x53\x8a\x2c\xf0\xda\xc5\x73\xb3\x59\xc3\x9e\xe3\x09\xfe\x7f\x36\x9b\x75\xdd\x34\xef\x2f\x6d\xab\x94\x30\x86\x1e\x8d\xf8\x18\x34\x5a\xcb\xd4\xf7\x15\xd4\xf9\x32\x85\x10\x2d\xbd\x35\x15\xb4\xc2\x3e\xb8\x02\xbe\x95\x02\x00\x48\x4c\x09\x99\x74\xef\x5d\x20\xae\xa0\x1e\xe4\x50\x1b\x13\x87\x20\xd7\x1d\x18\xa7\x23\x01\xb4\x27\x1f\xe0\x09\x1c\xc9\xb8\x71\xb3\x29\x4a\x47\xb2\xc2\x84\x3b\xdf\x79\xf9\x5a\xfc\x1b\x53\x96\xf5\x95\xf2\xac\xe7\x69\xd8\x75\xde\xcc\xed\xd1\xfd\xbe\x14\x7f\xba\xd7\x29\x77\x91\x39\x9e\x75\x01\xcb\x25\x24\x0c\xde\xe8\xc9\x2a\x0e\x9d\x85\x10\x05\x32\x38\x9a\x33\xed\x89\x29\x18\x9a\x14\xea\x21\x9b\x3d\xba\x2d\xb2\x78\xe3\x13\x06\x81\xc5\x2c\x13\x4a\xc3\x84\x42\x77\x90\xbe\xf5\x90\xcf\x3b\x99\xdc\x40\xd9\xe3\x07\xe9\xc5\xec\x51\x70\x0a\x12\xab\x5b\xf7\xe5\x1d\xd0\x4a\x64\x74\xb4\x45\x39\xe4\x4f\x5d\x94\xba\xfc\x04\x00\x00\xff\xff\xb5\xd4\x8a\x93\xab\x01\x00\x00" func dkgCreate_participantCdcBytes() ([]byte, error) { return bindataRead( @@ -900,11 +840,11 @@ func dkgCreate_participantCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/create_participant.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc8, 0xd2, 0xd0, 0x2c, 0xe0, 0x71, 0x8f, 0x21, 0x72, 0xbf, 0x1e, 0x92, 0xa8, 0x50, 0xdd, 0x8b, 0x75, 0xf3, 0x9, 0xba, 0x2d, 0x99, 0x6, 0xd7, 0x5c, 0x10, 0x6f, 0x42, 0xe8, 0xd7, 0x40, 0x67}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9a, 0xdf, 0xc8, 0x88, 0x15, 0x2e, 0xc9, 0xee, 0xa3, 0xd2, 0xcc, 0x4b, 0xb5, 0xf2, 0x5, 0x2d, 0x92, 0x4f, 0x6e, 0xbd, 0x4b, 0x7c, 0x84, 0x40, 0x4a, 0x9b, 0x5e, 0x9f, 0x15, 0x5, 0x74, 0xb2}} return a, nil } -var _dkgScriptsGet_consensus_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\xa2\x83\x4b\x8a\x32\xf3\xd2\x63\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xa6\xe8\xa5\xa7\x96\x38\xe7\xe7\x15\xa7\xe6\x15\x97\x16\xfb\xe5\xa7\xa4\x7a\xba\x14\x6b\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x03\x4f\x6a\x43\x6c\x00\x00\x00" +var _dkgScriptsGet_consensus_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x88\x0e\x2e\x29\xca\xcc\x4b\x8f\x55\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x19\xa0\x97\x9e\x5a\xe2\x9c\x9f\x57\x9c\x9a\x57\x5c\x5a\xec\x97\x9f\x92\xea\xe9\x52\xac\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x91\x06\x0b\x94\x67\x00\x00\x00" func dkgScriptsGet_consensus_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -920,11 +860,11 @@ func dkgScriptsGet_consensus_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_consensus_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe7, 0x3d, 0x2d, 0xb4, 0x11, 0x55, 0x1c, 0x12, 0x8c, 0xef, 0x55, 0x49, 0x4, 0x87, 0x30, 0xe, 0x30, 0x30, 0x9, 0xbc, 0x2b, 0x37, 0x38, 0xda, 0x84, 0x9d, 0x4e, 0xf2, 0xc0, 0x6b, 0x83, 0xaa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x62, 0xae, 0xcb, 0x31, 0x2e, 0x3e, 0x43, 0xd9, 0xec, 0xfd, 0x3f, 0x4, 0x29, 0x3c, 0xfe, 0x36, 0x20, 0xe6, 0x83, 0x77, 0x9b, 0x70, 0x2e, 0xd, 0xb3, 0x56, 0xa7, 0xfc, 0x4a, 0x1e, 0x20, 0xa0}} return a, nil } -var _dkgScriptsGet_dkg_canonical_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\xa2\x83\x4b\x8a\x32\xf3\xd2\xed\x63\xed\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xe6\xe8\xa5\x64\xa7\x3b\xe7\xe7\x16\xe4\xa4\x96\xa4\xa6\x68\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x4a\x98\xa7\xb9\x67\x00\x00\x00" +var _dkgScriptsGet_dkg_canonical_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x88\x0e\x2e\x29\xca\xcc\x4b\xb7\x8f\xb5\x57\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x19\xa1\x97\x92\x9d\xee\x9c\x9f\x5b\x90\x93\x5a\x92\x9a\xa2\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x17\xf1\xc7\xb8\x62\x00\x00\x00" func dkgScriptsGet_dkg_canonical_final_submissionCdcBytes() ([]byte, error) { return bindataRead( @@ -940,11 +880,11 @@ func dkgScriptsGet_dkg_canonical_final_submissionCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_dkg_canonical_final_submission.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x57, 0xf2, 0x83, 0x6, 0xda, 0x92, 0xb2, 0x41, 0x12, 0x21, 0xe4, 0x90, 0x6e, 0x29, 0x13, 0xef, 0x81, 0x0, 0xf0, 0xe9, 0xfd, 0xb9, 0x93, 0x8f, 0x9d, 0xd0, 0x11, 0x19, 0xe6, 0x76, 0x9c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc9, 0x35, 0x32, 0x9f, 0x12, 0x28, 0xdf, 0x16, 0x2d, 0x78, 0x9a, 0x80, 0x36, 0xb5, 0x94, 0x18, 0x7f, 0xf, 0x47, 0x10, 0x4, 0x13, 0xdb, 0xe8, 0x78, 0xfd, 0x78, 0x31, 0xa0, 0xb8, 0xf7, 0xf3}} return a, nil } -var _dkgScriptsGet_dkg_completedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x9c\xf2\xf3\x73\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\x26\xe8\xa5\x64\xa7\x3b\xe7\xe7\x16\xe4\xa4\x96\xa4\xa6\x68\x68\x2a\x28\xda\x2a\xe4\x65\xe6\x70\xd5\x02\x02\x00\x00\xff\xff\x11\x95\xaf\x8f\x68\x00\x00\x00" +var _dkgScriptsGet_dkg_completedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x70\xca\xcf\xcf\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x69\xd6\x4b\xc9\x4e\x77\xce\xcf\x2d\xc8\x49\x2d\x49\x4d\xd1\xd0\x54\x50\xb4\x55\xc8\xcb\xcc\xe1\xaa\x05\x04\x00\x00\xff\xff\x31\xd8\x74\x9a\x63\x00\x00\x00" func dkgScriptsGet_dkg_completedCdcBytes() ([]byte, error) { return bindataRead( @@ -960,11 +900,11 @@ func dkgScriptsGet_dkg_completedCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_dkg_completed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x3d, 0xd5, 0x9b, 0xea, 0x53, 0x7d, 0x55, 0xf4, 0xf3, 0x4b, 0x20, 0x1b, 0x34, 0x62, 0x55, 0xf8, 0x5, 0x8c, 0x9a, 0x74, 0x89, 0xae, 0x91, 0x6, 0x82, 0xe4, 0x48, 0xf6, 0x4e, 0x8d, 0xee}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0xec, 0xda, 0x75, 0xa0, 0x1a, 0x21, 0x4d, 0xc6, 0xbf, 0xec, 0xd5, 0x92, 0xde, 0x61, 0xab, 0x5b, 0x90, 0xd1, 0x2f, 0x7c, 0x24, 0x2a, 0xd9, 0x62, 0x7f, 0xda, 0xe9, 0x2c, 0x58, 0x0, 0x2a}} return a, nil } -var _dkgScriptsGet_dkg_enabledCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x9c\xf2\xf3\x73\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\x26\xe8\xa5\x64\xa7\xbb\xe6\x25\x26\xe5\xa4\xa6\x70\xd5\x02\x02\x00\x00\xff\xff\x55\x28\x2f\xf2\x5d\x00\x00\x00" +var _dkgScriptsGet_dkg_enabledCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x70\xca\xcf\xcf\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x69\xd6\x4b\xc9\x4e\x77\xcd\x4b\x4c\xca\x49\x4d\xe1\xaa\x05\x04\x00\x00\xff\xff\xd5\x88\xda\xa0\x58\x00\x00\x00" func dkgScriptsGet_dkg_enabledCdcBytes() ([]byte, error) { return bindataRead( @@ -980,11 +920,11 @@ func dkgScriptsGet_dkg_enabledCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_dkg_enabled.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x68, 0xfc, 0x94, 0x94, 0xc2, 0x47, 0xe4, 0x85, 0xd6, 0xa7, 0x3e, 0x3d, 0xda, 0x58, 0x72, 0xa9, 0x4e, 0xf0, 0xd3, 0x49, 0xc0, 0x9e, 0x16, 0x91, 0x58, 0x35, 0xa, 0xb6, 0x16, 0x38, 0x76, 0x3c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6a, 0x64, 0x67, 0xbd, 0xba, 0x33, 0xa0, 0x7b, 0x26, 0xfb, 0x77, 0xc2, 0x7e, 0xe3, 0xe3, 0xc1, 0xe7, 0xc8, 0x8c, 0xd0, 0xc, 0x46, 0xaa, 0xbd, 0xb6, 0x2, 0x13, 0x35, 0xab, 0x39, 0x70, 0xd7}} return a, nil } -var _dkgScriptsGet_final_submissionsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\xa2\xa3\x83\x4b\x8a\x32\xf3\xd2\xed\x63\x63\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\x06\xe9\xa5\xa7\x96\xb8\x65\xe6\x25\xe6\x04\x97\x26\xe5\x66\x16\x17\x67\xe6\xe7\x15\x6b\x68\x72\xd5\x02\x02\x00\x00\xff\xff\xdf\x0a\xe3\xa8\x6f\x00\x00\x00" +var _dkgScriptsGet_final_submissionsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x88\x8e\x0e\x2e\x29\xca\xcc\x4b\xb7\x8f\x8d\x55\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x99\xa1\x97\x9e\x5a\xe2\x96\x99\x97\x98\x13\x5c\x9a\x94\x9b\x59\x5c\x9c\x99\x9f\x57\xac\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x14\xc3\x7a\x4d\x6a\x00\x00\x00" func dkgScriptsGet_final_submissionsCdcBytes() ([]byte, error) { return bindataRead( @@ -1000,11 +940,11 @@ func dkgScriptsGet_final_submissionsCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_final_submissions.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xee, 0xfe, 0xb9, 0x5, 0x6d, 0x2e, 0x29, 0xa0, 0x6e, 0x49, 0x94, 0x63, 0x61, 0xb4, 0xe8, 0x3, 0x6a, 0x1a, 0xa2, 0xc1, 0xd8, 0x3b, 0x19, 0x42, 0x60, 0x55, 0xeb, 0x52, 0x69, 0x6f, 0x7, 0x63}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbe, 0x89, 0x9, 0x33, 0x3b, 0xc1, 0x3b, 0x39, 0x4f, 0xb2, 0x40, 0x27, 0xdb, 0x2c, 0x5c, 0xc7, 0xc3, 0x33, 0x89, 0x27, 0x45, 0x95, 0x12, 0xea, 0x92, 0xa7, 0x71, 0x9b, 0xed, 0x4f, 0xb3, 0x22}} return a, nil } -var _dkgScriptsGet_latest_whiteboard_messagesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x4f\x4b\xc3\x40\x14\xc4\xef\xf9\x14\x43\x4f\x09\xc2\x82\xd7\x62\x2e\x22\x4a\x11\xcf\x1e\x42\x0e\x8f\xe6\x35\x79\xb0\x7f\xc2\xee\xab\x15\xa4\xdf\x5d\xba\x6e\x16\x14\x2f\x0b\x3b\x6f\x66\x7e\x23\x6e\x0d\x51\xf1\x6c\xc3\xe5\xe9\xf5\x05\xa7\x18\x1c\x76\xe5\xb7\x6b\x1a\x3a\x1e\x39\xa5\x96\xac\xed\x70\x3a\x7b\x38\x12\xdf\xde\x4c\x07\x3f\xf1\xe7\x1e\x07\xaf\xdd\x1e\x43\x09\x98\x37\x4e\x89\x66\x1e\xf1\xd5\x00\x80\x65\x85\xfb\x91\x12\xfa\x0d\x62\x66\xd6\xf7\x45\x94\x1f\x03\xc5\xa9\x44\x52\xdb\xe5\xc8\x07\x45\x58\x52\x4e\xba\x1d\xfe\xab\xef\x31\x8c\xd5\x2e\xe8\x51\x27\x65\xf5\xb2\x88\x65\x08\x1e\x2a\xdd\x58\xf6\xb3\x2e\x65\x57\xde\xf6\x0b\x62\x68\x5d\xd9\x4f\xed\xe6\x1f\x64\xec\xaa\xf5\x06\x10\xdc\xe1\x3e\x2b\xd7\xfc\x46\xd6\x73\xf4\x7f\x5a\x9a\xeb\x77\x00\x00\x00\xff\xff\xc3\xba\x75\xf6\x4f\x01\x00\x00" +var _dkgScriptsGet_latest_whiteboard_messagesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x4f\x4b\xc3\x40\x10\xc5\xef\xf9\x14\xef\x98\x20\x04\xbd\x16\x73\x50\xa2\xa5\x14\x2f\xf6\xe0\x21\xe4\xb0\x92\x69\x32\xb0\xff\xd8\x9d\xd8\x82\xf4\xbb\x4b\xd7\x64\x41\xe9\x65\x0e\x6f\xde\x9f\x1f\x1b\xef\x82\xe0\x55\xbb\x53\xbb\xdf\xe2\x18\x9c\xc1\xfd\xb9\xdd\x6f\x9f\xda\xf6\xfd\xe5\x70\x28\x0a\x3f\x7f\xe2\x38\x5b\x18\xc5\xb6\xbc\xfe\x77\x76\xa0\xf3\x06\x3b\x2b\xd5\x06\xdd\x92\xac\xdf\x28\x46\x35\x52\x8f\xef\x02\x00\x34\x09\xcc\xaf\x14\xd1\xac\xfd\xf5\x48\xf2\x31\xb1\xd0\xb3\x53\x61\x58\x22\xb1\xac\x52\xe4\x4b\x05\x68\x25\x14\x65\x7d\xdc\xaa\x6f\xd0\xf5\xd9\xce\x68\x90\x91\x92\x7a\x9a\x58\x13\x18\x8f\x79\xbd\xd6\x64\x47\x99\x16\xae\xc4\xf6\x67\xa4\x56\xde\x93\x1d\xca\xd5\xdf\x71\x5f\x65\xeb\x75\x80\x71\x87\x87\xa4\x5c\xd2\x0d\x24\x73\xb0\xff\x5a\x8a\xcb\x4f\x00\x00\x00\xff\xff\x17\x59\xd4\x87\x4a\x01\x00\x00" func dkgScriptsGet_latest_whiteboard_messagesCdcBytes() ([]byte, error) { return bindataRead( @@ -1020,11 +960,11 @@ func dkgScriptsGet_latest_whiteboard_messagesCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_latest_whiteboard_messages.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x55, 0x96, 0xf2, 0x4, 0x13, 0x63, 0xa6, 0xbb, 0x97, 0x4b, 0xe2, 0x69, 0xfe, 0x46, 0xd0, 0xe0, 0xbd, 0x99, 0xf0, 0x9c, 0x62, 0xfc, 0x72, 0x85, 0x97, 0x67, 0xff, 0x8b, 0xf9, 0xc1, 0xfa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcd, 0xfd, 0xac, 0xf8, 0x77, 0x23, 0x77, 0x3c, 0xe7, 0xfc, 0x17, 0x46, 0xbb, 0x23, 0xc2, 0x7c, 0x50, 0x71, 0x82, 0xc6, 0x9a, 0xf6, 0x8f, 0xd4, 0x1b, 0xa4, 0xb0, 0x72, 0xd4, 0x4, 0x5b, 0x91}} return a, nil } -var _dkgScriptsGet_node_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\xf2\xf2\x53\x52\x3d\x5d\xac\x14\x82\x4b\x8a\x32\xf3\xd2\x35\xad\x14\xa2\x21\x2c\xfb\x58\x85\x6a\x2e\x05\x05\x05\x85\xa2\xd4\x92\xd2\xa2\x3c\x98\xa1\x7a\xe9\xa9\x25\x7e\xf9\x29\xa9\x6e\x99\x79\x89\x39\xc1\xa5\x49\xb9\x99\xc5\xc5\x99\xf9\x30\x63\x34\x15\xb9\x6a\x01\x01\x00\x00\xff\xff\x26\x0a\xc4\x4b\x85\x00\x00\x00" +var _dkgScriptsGet_node_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xc8\xcb\x4f\x49\xf5\x74\xb1\x52\x08\x2e\x29\xca\xcc\x4b\xd7\xb4\x52\x88\x86\xb0\xec\x63\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xe6\xe9\xa5\xa7\x96\xf8\xe5\xa7\xa4\xba\x65\xe6\x25\xe6\x04\x97\x26\xe5\x66\x16\x17\x67\xe6\xc3\x8c\xd1\x54\xe4\xaa\x05\x04\x00\x00\xff\xff\xff\x70\xba\x8e\x80\x00\x00\x00" func dkgScriptsGet_node_final_submissionCdcBytes() ([]byte, error) { return bindataRead( @@ -1040,11 +980,11 @@ func dkgScriptsGet_node_final_submissionCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_node_final_submission.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0x5c, 0x55, 0x20, 0xed, 0x65, 0x8c, 0x26, 0x11, 0xb8, 0x8f, 0xf3, 0x5d, 0x8f, 0x70, 0x73, 0x12, 0x8e, 0xb2, 0xf3, 0xf7, 0x40, 0x45, 0x6e, 0xf1, 0x7d, 0xb5, 0x91, 0x60, 0xae, 0x86, 0x8a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0xb1, 0x7c, 0xd0, 0x2e, 0x49, 0x35, 0xa7, 0xed, 0x4b, 0xdc, 0x7e, 0xcb, 0x6f, 0x6a, 0x43, 0xdc, 0x68, 0xba, 0x2c, 0xb8, 0xca, 0x43, 0xaf, 0xd9, 0x1a, 0xb9, 0x29, 0x1f, 0x89, 0x15, 0xd0}} return a, nil } -var _dkgScriptsGet_node_has_submittedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\xf2\xf2\x53\x52\x3d\x5d\xac\x14\x82\x4b\x8a\x32\xf3\xd2\x35\xad\x14\x9c\xf2\xf3\x73\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xe6\xe9\x81\x94\x7a\x24\x16\x07\x97\x26\xe5\x66\x96\x94\xa4\xa6\x40\xf5\x6a\x72\xd5\x02\x02\x00\x00\xff\xff\x85\x3a\x25\x9d\x79\x00\x00\x00" +var _dkgScriptsGet_node_has_submittedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xc8\xcb\x4f\x49\xf5\x74\xb1\x52\x08\x2e\x29\xca\xcc\x4b\xd7\xb4\x52\x70\xca\xcf\xcf\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x19\xa5\x07\x52\xea\x91\x58\x1c\x5c\x9a\x94\x9b\x59\x52\x92\x9a\x02\xd5\xab\xc9\x55\x0b\x08\x00\x00\xff\xff\xaa\x5c\x49\x68\x74\x00\x00\x00" func dkgScriptsGet_node_has_submittedCdcBytes() ([]byte, error) { return bindataRead( @@ -1060,11 +1000,11 @@ func dkgScriptsGet_node_has_submittedCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_node_has_submitted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x53, 0xcd, 0x46, 0x4c, 0xce, 0x40, 0xef, 0x90, 0xf4, 0xd1, 0xe6, 0x7a, 0x2d, 0x67, 0xb9, 0x57, 0xc4, 0xcd, 0xf5, 0xd, 0x39, 0xb5, 0x3d, 0xda, 0x2f, 0xc0, 0x9, 0xda, 0x68, 0x71, 0x0, 0x95}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdb, 0xc0, 0xa0, 0x6e, 0x6c, 0x52, 0x38, 0xeb, 0xc0, 0xf7, 0x84, 0x1f, 0x63, 0x61, 0x5f, 0x3, 0x16, 0xdd, 0x5e, 0x77, 0x5f, 0x9a, 0x30, 0x88, 0x8, 0x1a, 0xd2, 0x50, 0x23, 0xb4, 0xf, 0xbe}} return a, nil } -var _dkgScriptsGet_node_is_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xcc\x31\xaa\xc2\x40\x10\xc6\xf1\x7e\x4f\xf1\x25\x55\xd2\xbc\x03\x04\x5e\xa3\x41\x09\x96\x9e\x60\x48\x66\x65\x60\x76\x36\xec\x6e\xb0\x90\xdc\x5d\xd4\xa4\xb2\x71\xba\x81\xef\xf7\x97\x30\xc7\x54\x70\xd2\x78\xef\x2f\x67\xf8\x14\x03\xea\xed\xab\x9d\xa3\x71\xe4\x9c\x1b\x52\x6d\xe1\x17\x43\x20\xb1\xc6\xe2\xc4\x43\xdf\xe1\x5a\x92\xd8\xad\xed\x70\x88\x51\xf1\x70\x00\x20\x7e\x6f\xfd\xcd\x94\x8a\x8c\x32\x93\x95\x21\x1f\x95\x24\xf0\xb4\xd9\x16\xd5\x3f\x4c\x76\xf4\xba\xc4\x65\x49\xf6\x13\xae\xde\x68\x05\x6b\xe6\xef\x82\x27\xcd\xfc\x59\xb8\xf5\x19\x00\x00\xff\xff\xad\xe0\xc3\x42\xdf\x00\x00\x00" +var _dkgScriptsGet_node_is_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xcc\xbf\xea\xc2\x30\x14\xc5\xf1\x3d\x4f\x71\xba\xfd\xba\xfc\x70\x2e\x38\xa8\xd1\x52\xba\xd9\x27\x88\x36\x91\x0b\xc9\x4d\xb8\x4d\x50\x90\xbe\xbb\xf8\xa7\x93\x8b\x67\x3e\x9f\x2f\x85\x14\x25\xe3\xe0\xe3\x55\xf7\x2d\x9c\xc4\x80\xd5\x4d\xf7\xed\x46\xeb\xe3\x7e\x18\x94\x4a\xe5\x04\x57\x18\xc1\x10\xff\x71\x1c\x6d\xa7\x1b\x0c\x59\x88\x2f\x75\x83\x6d\x8c\x1e\x77\x05\x00\xe4\x96\xcc\x7f\x32\x92\xe9\x4c\xc9\x70\xee\xa6\x9d\x37\x14\xec\xf8\xb1\x35\xaa\x35\x98\x16\xf4\x9c\xd8\x5c\x84\x7f\xc2\xd5\x0b\xcd\xb0\x7e\xb2\xdf\x05\x67\xfc\x64\xdf\x0f\x35\x3f\x02\x00\x00\xff\xff\x2a\xaf\x9b\x4a\xda\x00\x00\x00" func dkgScriptsGet_node_is_claimedCdcBytes() ([]byte, error) { return bindataRead( @@ -1080,11 +1020,11 @@ func dkgScriptsGet_node_is_claimedCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_node_is_claimed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0x3d, 0x29, 0x69, 0x3d, 0x84, 0x68, 0x8e, 0xa8, 0x92, 0xb8, 0x48, 0x92, 0xfe, 0x2a, 0x93, 0xa2, 0x96, 0x40, 0x52, 0xb, 0x8d, 0x15, 0x2d, 0x84, 0x22, 0x1c, 0x17, 0x15, 0x31, 0xba, 0xd1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa3, 0x1a, 0xe4, 0xdb, 0x6, 0xd1, 0x35, 0x6c, 0x35, 0x4b, 0xe3, 0xc7, 0x91, 0xfe, 0x2a, 0xa8, 0x37, 0x87, 0x70, 0xf3, 0x65, 0xe8, 0x6b, 0x9f, 0x81, 0x60, 0xed, 0xc4, 0x79, 0x2e, 0x36, 0x43}} return a, nil } -var _dkgScriptsGet_node_is_registeredCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\x31\x0e\xc2\x30\x0c\x05\xd0\x3d\xa7\xf8\xea\xd4\x2c\x1c\xa0\x23\xaa\x40\x15\x1b\x9c\x20\x4a\xdd\xca\x52\x62\x47\x8e\x2b\x06\xc4\xdd\x59\xca\xf8\x96\xc7\xb5\xa9\x39\x6e\x45\xdf\xf3\xe3\x8e\xcd\xb4\x62\x38\x35\x84\x90\x72\xa6\xde\xc7\x54\x4a\xc4\x76\x08\x6a\x62\x19\x45\x57\x5a\xe6\x09\x2f\x37\x96\x3d\x4e\xb8\xaa\x16\x7c\x02\x00\x18\xf9\x61\xf2\xff\x2e\x2d\x99\x73\xe6\x96\xc4\x97\xfe\xa4\x9d\xbb\x93\xd1\x7a\x16\x31\x7c\x7f\x01\x00\x00\xff\xff\xe5\x2c\x0e\x21\x80\x00\x00\x00" +var _dkgScriptsGet_node_is_registeredCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xb1\x0e\x82\x30\x10\x06\xe0\xbd\x4f\xf1\x8f\xb2\x18\x67\x36\x4d\x95\x10\x36\x78\x82\x2a\x07\xb9\x84\xde\x35\xc7\x35\x9a\x18\xdf\xdd\x45\x5f\xe0\xe3\x5c\xd4\x1c\xb7\x4d\x9f\x71\xe8\xb0\x98\x66\x9c\x5e\x71\xe8\xce\x31\x8e\xd7\x69\x0a\xa1\xd4\x3b\x96\x2a\xc8\x89\xe5\x20\x3a\x53\x1f\x5b\x4c\x6e\x2c\x6b\xd3\xe2\xa2\xba\xe1\x1d\x00\xc0\xc8\xab\xc9\x9f\x3a\x96\x64\xce\x0f\x2e\x49\xbc\xdf\x47\x5a\x79\x77\x32\x9a\x7f\x44\x13\x3e\xdf\x00\x00\x00\xff\xff\x0e\xf5\x2c\x2b\x7b\x00\x00\x00" func dkgScriptsGet_node_is_registeredCdcBytes() ([]byte, error) { return bindataRead( @@ -1100,11 +1040,11 @@ func dkgScriptsGet_node_is_registeredCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_node_is_registered.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0xa4, 0xcf, 0x88, 0xda, 0x35, 0xe9, 0xac, 0xe7, 0x73, 0x15, 0xf6, 0xf9, 0x64, 0xcd, 0x8e, 0x5c, 0x6f, 0xa0, 0x50, 0x9a, 0xbe, 0x2, 0x44, 0x72, 0x74, 0x82, 0xf9, 0x15, 0x37, 0x4b, 0x4d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xad, 0xbc, 0xa5, 0x94, 0xca, 0x89, 0x42, 0xfc, 0xbd, 0x28, 0x1d, 0x72, 0xd4, 0x0, 0x1d, 0xf2, 0xeb, 0xd3, 0x6a, 0x1, 0x26, 0xf1, 0xb5, 0x35, 0x15, 0x12, 0x7a, 0xfa, 0xdf, 0x6, 0x62, 0x4a}} return a, nil } -var _dkgScriptsGet_submissions_countCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xb1\x0a\x82\x70\x10\x06\xf0\xfd\x9e\xe2\xc3\x49\x97\xa6\x68\x70\x2d\x0c\x69\x8c\x1e\x40\x41\xe3\xc0\xff\x77\x72\xde\xd1\x20\xbe\x7b\x4b\x8d\xbf\xe5\xa7\x65\x35\x0f\x74\x8b\x7d\x6e\x8f\x3b\x66\xb7\x82\xea\xa7\x4a\x64\xcd\x11\x73\x12\x65\x50\xd6\x4d\x0b\xec\x3d\xa3\xc5\xab\x67\x5c\xce\x07\x76\x01\x00\x9f\x22\x9d\xff\xe3\xf4\x9e\xa2\x53\x0e\xcb\x33\xc7\xa2\xdb\xa6\xc6\xab\x25\xa3\x6e\xe4\x90\x6f\x00\x00\x00\xff\xff\x09\xb5\xb1\xae\x6f\x00\x00\x00" +var _dkgScriptsGet_submissions_countCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xc1\x0a\x82\x40\x10\x06\xe0\xfb\x3c\xc5\x7f\xd4\x4b\x74\x88\x0e\xde\xa2\x4d\x11\x6f\x2d\x3d\x80\x82\xc6\x80\x3b\x23\xeb\x0c\x05\xb2\xef\xde\xa9\x17\xf8\x38\x6d\x9a\x0d\xed\xaa\x9f\x30\x74\x58\xb2\x26\x9c\xbf\x61\xe8\x6e\x21\x3c\x1f\x31\x12\x6d\x3e\x61\x71\x41\x1a\x59\xaa\xba\x01\x8e\x5e\xac\xc1\xab\x17\xbb\x5e\x0a\x0e\x02\x80\x3c\x9b\x67\xf9\x33\xa7\xf7\x6c\x2d\xcb\xb8\x46\x9f\x12\xef\x3b\xab\xdc\xd5\xc5\xaa\x9a\x0a\xfd\x02\x00\x00\xff\xff\xe5\xd7\x26\xa5\x72\x00\x00\x00" func dkgScriptsGet_submissions_countCdcBytes() ([]byte, error) { return bindataRead( @@ -1120,11 +1060,11 @@ func dkgScriptsGet_submissions_countCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_submissions_count.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0x77, 0xc4, 0x99, 0x13, 0xc6, 0xc8, 0x2b, 0x1e, 0xfe, 0xa5, 0x3a, 0x39, 0x80, 0x42, 0x1e, 0x35, 0x84, 0xa1, 0xa6, 0x33, 0x61, 0x61, 0x91, 0x52, 0xf2, 0x8d, 0xb2, 0x36, 0x4d, 0x5d, 0x9e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc2, 0x62, 0x13, 0x4c, 0x53, 0x43, 0x18, 0xf7, 0xc7, 0xa8, 0x39, 0x4a, 0x6c, 0x6, 0x96, 0x10, 0xa8, 0x3c, 0x70, 0xe5, 0xaa, 0x27, 0x86, 0x32, 0x10, 0x17, 0x58, 0x9d, 0x83, 0x72, 0x85, 0x6e}} return a, nil } -var _dkgScriptsGet_thresholdsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcf\x4a\x03\x31\x10\xc6\xef\x79\x8a\x8f\x9e\x92\xcb\xd2\x43\xe9\xa1\x20\xbd\x48\x45\x04\x11\xaa\x0f\x10\xe2\xa4\x0d\x64\x13\x49\x26\x2a\xc8\xbe\xbb\x6c\xac\xfb\x87\x15\x6c\x6e\x19\x7e\xbf\xf9\x66\xc6\xb5\x6f\x31\x31\x0e\x3e\x7e\xdc\x3e\xdc\xc1\xa6\xd8\x62\x75\xf9\xad\x84\xd0\xc6\x50\xce\x52\x7b\xaf\x90\x39\x15\xc3\x78\x3e\x27\xca\xe7\xe8\x5f\x33\xbe\x04\x00\x4c\x19\x4f\x8c\xa0\xd9\xbd\xd3\x0e\x2f\xf7\x81\xb7\x9b\x3f\x91\xac\xed\xff\xc0\x13\x25\x43\x81\xf5\xa9\x47\x0f\xee\x73\xbb\x11\x95\x75\xc1\xb1\x54\x97\xf0\xfe\x65\xf2\xb6\xf9\x49\xc5\xcd\xef\x2a\xcd\x89\xf8\xb1\xd6\x8e\xa5\x36\x1f\xe6\x96\x6a\x6e\xf6\x59\x73\xef\xa8\xed\x55\xd6\x38\xe1\xd2\x1f\xc4\x11\x92\x0a\xfb\x3d\xd6\xcd\xba\x76\xea\x44\x37\xbf\xaf\x2d\x01\xad\x76\x41\xaa\xdd\xf2\xc8\x89\xb8\xa4\x30\xa9\x4b\x25\xba\xef\x00\x00\x00\xff\xff\xb3\xea\x59\x20\xbd\x01\x00\x00" +var _dkgScriptsGet_thresholdsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xc1\x4a\x03\x31\x18\x84\xef\x79\x8a\x39\x26\x97\x65\x0f\xa5\x87\x82\x14\x61\x6d\x91\x82\x88\xab\x0f\x10\xd7\x3f\x6d\x20\x9b\x94\xe4\x8f\x16\x64\xdf\x5d\xb2\xd5\xd6\x65\x11\xcc\xf1\x9f\xf9\x32\xc3\xd8\xfe\x18\x22\x63\xe3\xc2\x47\xb3\xdb\xc2\xc4\xd0\xa3\x3e\x35\xbb\xed\x6d\xd3\x3c\xdd\xb5\xad\x10\xc7\xfc\x8a\xc4\x31\x77\x8c\xe7\x43\xa4\x74\x08\xee\x2d\xe1\x53\x00\x40\xd1\x1c\x31\xbc\x66\xfb\x4e\x2b\xbc\xdc\x7b\x5e\x2e\x26\x52\xd2\xe6\x6f\xe1\x91\x62\x47\x9e\xf5\xbe\x58\x36\xf6\xb4\x5c\x88\xd1\x63\xbd\x65\xa9\xbe\x43\xca\x4b\xe4\x4c\x75\x4e\xc1\xcd\x4f\xdb\x6a\x4f\xfc\x30\xde\xda\xdc\x75\x94\xd2\xa5\x9f\x54\x53\xb2\x64\x4d\xb9\x56\x9b\x7f\x51\xd7\x86\x73\xfe\x02\x5e\x4d\x52\x61\xbd\x46\x5d\xd5\xe3\x4f\x83\x18\xce\xfb\x99\xec\xd1\x6b\xeb\xa5\x5a\xcd\x47\x8c\xc4\x39\xfa\x5f\x77\xa9\xc4\xf0\x15\x00\x00\xff\xff\x03\x93\xd8\xc7\x98\x01\x00\x00" func dkgScriptsGet_thresholdsCdcBytes() ([]byte, error) { return bindataRead( @@ -1140,11 +1080,11 @@ func dkgScriptsGet_thresholdsCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_thresholds.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x22, 0xd8, 0x8, 0xe9, 0xf9, 0x79, 0xd1, 0x2c, 0xce, 0xe5, 0x62, 0x4d, 0x9f, 0xd2, 0x6, 0xdf, 0x1d, 0x2d, 0x17, 0xa7, 0x40, 0x6d, 0x40, 0x6, 0xa2, 0x7a, 0x0, 0xbd, 0x7c, 0xf2, 0x89}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9f, 0x6, 0xd, 0xd4, 0x37, 0x50, 0xa5, 0x7, 0x78, 0xd8, 0x8d, 0x8f, 0x5d, 0x24, 0x7e, 0xb7, 0xab, 0x79, 0x29, 0x97, 0x3f, 0xf5, 0x8b, 0x75, 0x32, 0xf7, 0xa4, 0xaf, 0x24, 0x18, 0xd4, 0x8f}} return a, nil } -var _dkgScriptsGet_whiteboard_messagesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\xa2\xa1\x4a\xf4\x7c\x53\x8b\x8b\x13\xd3\x53\x63\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xc6\xe9\xa5\xa7\x96\x84\x67\x64\x96\xa4\x3a\xe5\x27\x16\xa5\x40\x95\x16\x6b\x68\x2a\x70\xd5\x02\x02\x00\x00\xff\xff\x68\x14\x95\x1b\x78\x00\x00\x00" +var _dkgScriptsGet_whiteboard_messagesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x88\x86\xaa\xd5\xf3\x4d\x2d\x2e\x4e\x4c\x4f\x8d\x55\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x99\xa4\x97\x9e\x5a\x12\x9e\x91\x59\x92\xea\x94\x9f\x58\x94\x02\x55\x5a\xac\xa1\xa9\xc0\x55\x0b\x08\x00\x00\xff\xff\x3f\x6c\x37\x78\x73\x00\x00\x00" func dkgScriptsGet_whiteboard_messagesCdcBytes() ([]byte, error) { return bindataRead( @@ -1160,11 +1100,11 @@ func dkgScriptsGet_whiteboard_messagesCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_whiteboard_messages.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0xd3, 0xb2, 0xb6, 0xfe, 0x25, 0x93, 0xf1, 0x4f, 0x70, 0x8a, 0x81, 0xe6, 0x35, 0x7e, 0xb7, 0x82, 0xca, 0x41, 0xba, 0xe7, 0xc5, 0x37, 0x28, 0x1d, 0xf3, 0xb4, 0xe, 0x87, 0x1b, 0xdb, 0xf9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb3, 0xd, 0x56, 0xa1, 0x9c, 0xba, 0x39, 0x42, 0xbd, 0xc, 0x6f, 0xdb, 0x33, 0xd0, 0x81, 0xc7, 0xf4, 0xd5, 0x31, 0x3f, 0xca, 0xa0, 0x49, 0xb7, 0x7e, 0x22, 0xeb, 0xb7, 0xfe, 0x63, 0x68, 0xe0}} return a, nil } -var _dkgSend_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xbd\x6a\xc3\x40\x0c\xc7\x77\x3f\x85\xf0\x10\xec\xc5\x0f\x60\xda\x9a\x7e\x90\x0e\x5d\x02\x86\x2e\xa5\x83\x72\x91\x9d\xa3\xb6\x74\xe8\x64\x52\x28\x79\xf7\xe2\x9e\x1b\x5c\x08\xd5\x76\x1f\xfa\xfd\xf5\x93\x1f\x83\xa8\xc1\x76\x90\xd3\xd3\xcb\x33\x74\x2a\x23\xe4\xcb\x29\xcf\x32\x53\xe4\x88\xce\xbc\x70\x11\xa7\xfd\xe8\x63\xf4\xc2\x35\xbc\xb5\xa6\x9e\xfb\xe6\xbd\x84\xaf\x2c\x03\x00\x18\xc8\xe0\xf0\xd1\xef\x50\xcd\x3b\x1f\x90\xad\x86\xcd\x02\xaa\x56\xb7\xe9\x77\x50\x0a\xa8\x54\x44\xdf\x33\x69\x0d\x38\xd9\xb1\x78\x10\x55\x39\xbd\xe2\x30\x51\x09\x9b\x7b\xe7\x64\x62\x9b\x03\x60\xa9\x48\x43\x57\xfd\x0d\x81\x5b\x48\x8c\x2a\x9a\x28\xf6\x54\xed\x7f\x28\x37\xd7\xb2\xef\x8a\xd9\xaf\x86\x2b\x4f\x6d\xea\xde\xa1\x1d\xcb\x4b\xde\x5c\x4d\x03\x01\xd9\xbb\x22\x7f\x44\x66\x31\x48\xfc\xd9\x15\xc2\x6a\x0e\xa5\x8e\x94\xd8\x51\x9e\xfa\xcf\x49\x94\x3e\xc9\x4d\x46\xff\x4b\x54\x91\xf8\xb0\xf5\x8c\x43\x7b\xd9\xf1\x6a\xdd\xbf\xc0\xf3\x77\x00\x00\x00\xff\xff\x55\xc6\xf9\x32\xad\x01\x00\x00" +var _dkgSend_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xb1\x6a\xf3\x40\x10\x84\x7b\x3d\xc5\xe2\xe2\x47\x6a\xc4\x5f\x8b\x24\x42\x44\xb1\x0b\x37\x26\x2a\x43\x8a\xf3\x79\x25\x2f\x91\x76\x8f\xbd\x15\x36\x04\xbf\x7b\x10\xb2\x8d\x02\xce\x94\x77\x37\xdf\xdc\x0c\x0d\x41\xd4\x60\xdd\xcb\xa9\xde\x6e\xa0\x55\x19\xe0\xff\xb9\xde\x6e\xaa\xba\x7e\x7f\x6b\x9a\x24\x31\x75\x1c\x9d\x37\x12\x4e\xe3\xb8\x1f\x28\x46\x12\x2e\xe0\xa3\x31\x25\xee\xca\xcf\x0c\xbe\x93\x04\x00\xa0\x47\x83\xc3\x57\xb7\x73\x6a\xe4\x29\x38\xb6\x02\xfe\x5d\xc9\xf9\xe2\x74\x7e\x1d\x14\x83\x53\x4c\x23\x75\x8c\x5a\x40\x35\xda\xb1\xf2\x5e\x46\xb6\x89\x08\x57\x45\xec\xdb\xfc\x37\x15\x9e\x61\x36\xe5\x7b\x51\x95\xd3\xd3\xa3\x90\x97\x74\xea\x52\xc0\x83\xab\xc6\x44\x5d\x87\x3b\x67\xc7\xec\x9e\x33\xa9\x2c\x21\x38\x26\x9f\xae\x5e\x1d\xb3\x18\xcc\xfc\xa9\x14\x84\x45\xbe\x62\x8b\x8a\xec\x71\x35\xfb\x2f\x73\x23\x3c\xa3\x1f\x0d\x6f\x73\xfc\xf1\xfb\x3c\x22\x1f\xd6\xc4\xae\x6f\xee\x6b\x2e\x86\xcd\x92\x1b\xf2\xf2\x13\x00\x00\xff\xff\x38\x14\x9d\x91\x9c\x01\x00\x00" func dkgSend_final_submissionCdcBytes() ([]byte, error) { return bindataRead( @@ -1180,11 +1120,11 @@ func dkgSend_final_submissionCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/send_final_submission.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd1, 0xc, 0x5e, 0xac, 0xc6, 0x72, 0x16, 0x6c, 0xf2, 0x1f, 0x31, 0x41, 0x51, 0x0, 0xcd, 0x15, 0x99, 0x86, 0xb3, 0xd3, 0x8a, 0x56, 0xf2, 0xf1, 0xf8, 0xf1, 0x9f, 0xd4, 0x36, 0xa4, 0x8, 0xba}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0xa1, 0xeb, 0xb8, 0x94, 0x6e, 0xb, 0x8d, 0x4f, 0xbe, 0xf4, 0xe4, 0x73, 0x98, 0xc9, 0x5b, 0x27, 0x91, 0x33, 0xac, 0x1a, 0xe, 0x48, 0xe7, 0x33, 0x1, 0x1f, 0xb, 0xa6, 0xac, 0x6a, 0x93}} return a, nil } -var _dkgSend_whiteboard_messageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcf\x6a\xc3\x30\x0c\x87\xef\x79\x0a\x91\x43\x49\x2e\x7e\x80\xb0\xad\xec\x0f\xdb\x61\x0c\x0a\x85\xdd\x35\x4f\x71\xcd\x52\xc9\xc8\x0a\x1d\x8c\xbe\xfb\xf0\x9c\x8e\x0e\xca\x74\xb3\x2d\x7d\x3f\x7f\x8a\xfb\x24\x6a\xf0\x38\xc9\xe1\xe1\xf9\x09\x46\x95\x3d\xb4\xcb\xa9\x6d\x1a\x53\xe4\x8c\xde\xa2\x70\xe7\x85\x8d\xd8\x06\xd8\x9a\x46\x0e\x3d\x7c\x35\x0d\x00\xc0\x44\x06\xef\x1f\x61\x83\x6a\xd1\xc7\x84\xa5\x65\xb5\x20\xdc\xd9\x6d\xed\x4e\x4a\x09\x95\xba\x1c\x03\x93\x0e\x80\xb3\xed\xba\x3b\x51\x95\xc3\x2b\x4e\x33\xf5\xb0\xba\xf5\x5e\x66\xb6\x12\x00\x4b\x65\x9a\x46\xf7\x37\x04\xae\xa1\x32\x5c\x36\x51\x0c\xe4\xde\x7e\x28\x57\x97\xb2\x6f\xba\x62\x36\xc0\x85\xa7\x6d\x9d\xde\xa0\xed\xfa\xdf\xbc\x52\xeb\x35\x24\xe4\xe8\xbb\xf6\x1e\x99\xc5\xa0\xf2\x8b\x2b\xa4\xb3\x7f\x28\x8d\xa4\xc4\x9e\xda\x3a\x7f\xac\xa2\xf4\x49\x7e\x36\xfa\x5f\xc2\x25\xc9\xf6\x42\x39\x63\xa0\xd3\x82\x4f\x94\xe3\x77\x00\x00\x00\xff\xff\xc6\xb5\x3f\x3f\x9c\x01\x00\x00" +var _dkgSend_whiteboard_messageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x43\x0f\x92\x5c\x82\xe7\xa0\x96\x60\xb4\x87\x22\x14\xf3\x0b\xc6\x75\x92\x2e\xa6\x33\xcb\xec\x84\x16\xa4\xff\x5d\x96\x6d\xa4\x42\x9d\xe3\xee\xbc\xef\xcd\x7b\xfe\x10\x44\x0d\x5e\x27\x39\x76\xdb\x0d\x0c\x2a\x07\xb8\x3f\x75\xdb\x4d\xdb\x75\xef\x2f\x7d\x5f\x14\xa6\xc8\x11\x9d\x79\xe1\xd2\x09\x1b\xb1\x35\xd0\x9b\x7a\x1e\x2b\xf8\x2e\x0a\x00\x80\x89\x0c\x3e\xbf\xc6\x1d\xaa\x79\xe7\x03\xa6\x95\xbb\x0b\xb3\xbe\x7a\xcd\xdb\x41\x29\xa0\x52\x19\xfd\xc8\xa4\x0d\xb4\xb3\xed\x5b\xe7\x64\x66\x4b\x44\xb8\x4c\xa4\x69\xa8\xff\x52\xe1\x11\xb2\xa8\xfe\x10\x55\x39\x3e\xdc\x32\x79\x2a\x53\x8a\x06\x6e\x7c\xf5\x26\x8a\x23\xed\xd0\xf6\xd5\xaf\x4f\x9a\xf5\x1a\x02\xb2\x77\xe5\xea\x19\x99\xc5\x20\xf3\x53\x28\x08\x57\xfe\x4a\x03\x29\xb1\xa3\x55\xd6\x9f\x73\x22\x3a\x91\x9b\x8d\x96\x3a\xfe\xb9\xbe\x0e\x12\xed\x8d\x62\xc4\x91\x96\x2a\xab\x62\xe1\x9c\x7f\x02\x00\x00\xff\xff\x42\x47\xff\x78\x8b\x01\x00\x00" func dkgSend_whiteboard_messageCdcBytes() ([]byte, error) { return bindataRead( @@ -1200,11 +1140,11 @@ func dkgSend_whiteboard_messageCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/send_whiteboard_message.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcb, 0xec, 0x78, 0xab, 0x6e, 0x8, 0xc7, 0xa7, 0x9c, 0x52, 0x92, 0x14, 0x8d, 0x49, 0x3e, 0xa1, 0x55, 0xf3, 0xe3, 0xaf, 0xa9, 0x17, 0x5e, 0xbf, 0x42, 0x66, 0xd4, 0x93, 0x31, 0x7b, 0xd0, 0x18}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaf, 0xbf, 0x30, 0x7e, 0x1e, 0xed, 0x99, 0xc1, 0x3d, 0xa0, 0x20, 0x22, 0x66, 0xaf, 0x3b, 0x43, 0x3f, 0x26, 0xca, 0xd8, 0xff, 0x25, 0x83, 0xbc, 0x7e, 0x33, 0x4a, 0x7b, 0xb0, 0x5d, 0xaf, 0x21}} return a, nil } -var _epochAdminAdvance_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x6f\x82\x40\x10\x85\xef\xfc\x8a\xc9\x1e\x0c\x5c\xf8\x01\xa6\xd6\x28\xda\x68\x5a\xab\x09\xb6\xf7\x71\x1d\x61\xe3\xb2\xbb\x59\x86\x7a\x68\xfc\xef\x0d\xa0\x48\x93\x5a\xe7\x40\x42\x76\xde\x37\xef\x3d\x55\x38\xeb\x19\x5e\xb4\x3d\xcd\x9d\x95\x39\x1c\xbc\x2d\x40\x74\xff\x22\xe8\x6d\x2c\x67\x5b\xdc\x69\x4a\x19\x8f\xca\x64\xbd\xd5\xdf\x0f\x22\x08\xd8\xa3\x29\x51\xb2\xb2\x26\x74\x39\x96\x34\x84\x94\xbd\x32\x59\x04\xdf\x01\x00\x80\xf3\xe4\xd0\x53\x58\xaa\xcc\x90\x1f\x02\x56\x9c\x87\x53\xeb\xbd\x3d\x7d\xa2\xae\x28\x82\xc1\x44\x4a\x5b\x19\xbe\x2a\xea\xd1\xc4\x90\x13\x7a\xde\x11\x32\x8c\xa0\x55\xc7\x25\x5b\x8f\x19\xc5\xbb\x46\xff\x34\xe8\xdc\xc7\x8b\xeb\xf2\x73\x58\xbb\x1d\xde\x82\xc6\x1d\x27\x6d\xd5\x1b\xe4\x3c\xea\x2e\xd5\x33\x1e\x83\x43\xa3\x64\x28\x12\x5b\xe9\x3d\x18\xcb\xd0\x9e\xe8\x99\x68\x4a\xb8\x18\x00\x87\x9c\x8b\x28\xe8\x28\xea\x00\x4d\x7a\x18\x8d\x40\xcc\x37\xeb\x64\x91\xce\xb7\x1f\x1b\xd1\x8b\x54\x4f\x47\x8b\xc9\xec\x2f\x25\x4e\xaa\xb6\xbd\x9b\xa5\x33\x90\x2e\xe9\x0f\x66\xb2\x5e\xad\x96\xdb\xfb\xd0\x92\xd1\x73\x13\x3a\xb1\x45\xa1\xf8\x11\xf3\x7d\xd6\x60\xff\x75\xd9\xe0\x1e\x80\xa6\x6f\xeb\xe4\xf5\x3e\x05\xf7\x5f\x68\x24\x4d\xb5\x95\xc7\x3e\x29\x68\xbf\xe7\x9f\x00\x00\x00\xff\xff\x77\x36\x16\x2b\x9b\x02\x00\x00" +var _epochAdminAdvance_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x4d\x4f\x83\x40\x10\x86\xef\xfc\x8a\x09\x07\x43\x2f\xc4\x73\x63\x6d\x28\x60\x4a\xec\x57\x04\x0f\x1e\xa7\x74\x0b\x9b\xc2\xce\x66\x19\xac\x89\xe9\x7f\x37\x80\x50\x0e\xd6\xce\x61\x4f\xef\x3e\xef\x87\x2c\x35\x19\x86\x97\x82\xce\xa1\xa6\x34\x87\xa3\xa1\x12\x1e\xbf\xc2\xdd\xd6\x5f\x7a\x41\xf0\x16\xc6\xb1\x35\x12\x45\x41\x82\xfb\x42\xc4\x8c\x27\xa9\xb2\x5e\x1d\x05\xe1\x26\x89\x92\x8f\xc4\x5b\xac\xc2\xfe\x97\xc5\x06\x55\x85\x29\x4b\x52\x8e\xce\xb1\x12\x53\x88\xd9\x48\x95\x4d\xe0\xdb\x02\x00\xd0\x46\x68\x34\xc2\xa9\x64\xa6\x84\x99\x82\x57\x73\xee\xa5\x29\xd5\x8a\x7b\x49\x73\x85\x60\xc8\x05\x1a\xde\x0b\x64\x98\x41\x27\x77\xf7\x64\x0c\x9d\x9f\x1e\x86\xec\xee\xb2\x17\x3d\x3b\x4d\xb0\xe9\xb5\x96\x3b\xfc\x8f\x99\x0c\x66\x62\x87\x9c\x4f\x06\x87\xe6\xe6\x73\xd0\xa8\x64\xea\xd8\x3e\xd5\xc5\x01\x14\x31\x74\x16\x23\xf3\xb6\x6f\xd5\x21\x40\x23\xe7\xf6\xc4\x1a\x28\xf2\x08\x6d\x4d\x98\xcd\xc0\x6e\x07\x8c\xc3\xe4\x7d\x67\x8f\xaa\x34\x37\xd0\x5c\xa1\x0e\xbf\x43\x7a\x75\x37\xd3\x35\xd2\x05\x44\x51\x89\x3f\x98\xfe\x76\xbd\x8e\x92\xdb\xd0\x8a\xd1\x70\x5b\xda\xa7\xb2\x94\x7c\x8f\xb9\x09\x5a\xec\xbf\x29\x5b\xdc\x1d\xd0\x62\xb5\xf5\x5f\x6f\x53\xf0\xf0\x89\x2a\x15\x8b\x82\xd2\xd3\x98\x64\x75\xef\xe5\x27\x00\x00\xff\xff\x78\x90\x9a\x7d\x89\x02\x00\x00" func epochAdminAdvance_viewCdcBytes() ([]byte, error) { return bindataRead( @@ -1220,11 +1160,11 @@ func epochAdminAdvance_viewCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/advance_view.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0xe1, 0x89, 0x75, 0x40, 0x79, 0x27, 0x42, 0xfc, 0x75, 0x5f, 0x1a, 0xb6, 0xef, 0xa4, 0xea, 0x47, 0xb1, 0x9b, 0x15, 0x59, 0x37, 0x8, 0x70, 0xe9, 0xb3, 0xc6, 0x77, 0xe7, 0xfc, 0xd8, 0x5c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0x42, 0xe3, 0xf9, 0x28, 0x5, 0x40, 0x9e, 0xbc, 0x3e, 0x89, 0x42, 0xb7, 0x29, 0xc5, 0x14, 0xd7, 0x33, 0x6a, 0x71, 0xd7, 0xd5, 0x26, 0xb9, 0xc0, 0x75, 0xbe, 0x53, 0xda, 0x3d, 0x81, 0xdc}} return a, nil } -var _epochAdminCalculate_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\xcd\x4e\xec\x30\x0c\x85\xf7\x79\x0a\xab\x8b\x51\xba\xe9\x03\x8c\xee\x65\x34\xfc\x09\x76\x88\x22\xf6\x6e\x6a\xda\x88\x4c\x1c\xb9\x8e\xba\x40\xf3\xee\xa8\x53\x26\x14\xef\xa2\x9c\xcf\xe7\xb3\x3f\x25\x16\x85\xc7\xc0\xf3\x43\x62\x37\xc2\x87\xf0\x09\xaa\xf2\xae\xcc\x26\xf1\x7c\xff\x86\x5d\xa0\x56\xf1\xd3\xc7\x61\x13\xfd\xfb\x51\x19\xa3\x82\x71\x42\xa7\x9e\xa3\xad\xe1\xcb\x00\x00\x24\xa1\x84\x42\x76\xf2\x43\x24\xd9\x03\x66\x1d\xed\x2d\x8b\xf0\xfc\x8e\x21\x53\x0d\xbb\xa3\x73\x9c\xa3\x5e\x89\x65\x02\x29\x8c\x84\xa2\x1d\xa1\xc2\x7f\x58\xe9\x66\x52\x16\x1c\xa8\xe9\x2e\xfc\xbf\x5d\x11\x6e\x9e\xae\xe1\x1b\xbb\x08\xee\x7f\x6f\x6b\xca\x9e\x76\xa5\x5f\x50\xc7\xba\x34\x2d\x73\x38\x40\xc2\xe8\x9d\xad\xee\x38\x87\x1e\x22\x2b\xac\x15\x1b\x89\xcb\xdd\x3f\x02\x90\x50\xc7\xaa\x36\x65\x4b\x89\x35\x0e\x83\xcb\x01\x95\x8e\xb1\x6f\x49\x5f\x69\x46\xe9\x27\xbb\x16\x9e\xcd\xf9\x3b\x00\x00\xff\xff\x06\x87\xee\x45\x7b\x01\x00\x00" +var _epochAdminCalculate_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8f\x41\x4f\x83\x40\x10\x85\xef\xfc\x8a\x49\x0f\x86\x5e\x88\xe7\x46\x6d\xb0\x60\x4a\x62\xb4\x29\x5c\x3c\x0e\xcb\x08\xc4\xed\xce\x66\x18\x82\x89\xe9\x7f\x37\x48\x58\x3b\xe7\x6f\xde\xf7\x5e\x7f\xf1\x2c\x0a\x2f\x96\xa7\xdc\xb3\xe9\xe0\x53\xf8\x02\xf7\xdf\xf9\xe9\xfd\x70\x4c\xb3\xec\x9c\x97\x65\x74\x03\x15\x59\x85\xb5\xa5\x52\xf1\xab\x77\xed\x4a\x17\x59\xfe\x56\x15\xd5\x47\x95\x3e\xbf\xe6\xeb\x57\xa4\x82\x6e\x40\xa3\x3d\xbb\x78\x0b\x3f\x11\x00\x80\x17\xf2\x28\x14\x0f\x7d\xeb\x48\x76\x90\x8e\xda\xa5\xc6\xf0\xe8\x74\x45\xe6\xb3\xa4\xd0\x11\x8a\xd6\x84\x0a\x8f\xb0\xe0\x49\xcd\x22\x3c\x3d\xdc\x85\xba\xc9\x71\x85\x9e\xe2\xb9\xcb\xee\x7f\x49\x12\xfe\x4b\x65\xc1\x96\x4e\xa8\xdd\x36\x18\xe6\xdb\xef\xc1\xa3\xeb\x4d\xbc\x39\xf0\x68\x1b\x70\xac\xb0\x28\x6e\xe4\x7f\x13\x87\x25\x02\x3c\x6a\xb7\xd9\x46\x21\x25\x60\x89\x41\x6b\x46\x8b\x4a\xa9\x6b\x4a\xd2\x33\x4d\x28\xcd\x10\x2f\xc2\x6b\x74\xfd\x0d\x00\x00\xff\xff\x65\x70\xd8\x1b\x69\x01\x00\x00" func epochAdminCalculate_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -1240,11 +1180,11 @@ func epochAdminCalculate_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/calculate_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6a, 0x28, 0xde, 0x44, 0x27, 0x64, 0x4f, 0xc3, 0x72, 0xfc, 0x29, 0x96, 0x71, 0x49, 0x1e, 0x7e, 0xf1, 0xf, 0x75, 0x6b, 0x4c, 0x31, 0x40, 0x4b, 0xf, 0x62, 0xa5, 0x65, 0x0, 0x94, 0xc0, 0x81}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf1, 0x90, 0x32, 0x9f, 0x87, 0xcc, 0xc2, 0x5c, 0x7d, 0xe9, 0xd1, 0x54, 0x3b, 0x45, 0xae, 0x38, 0xba, 0xcc, 0x78, 0x77, 0x70, 0x33, 0x8f, 0x7b, 0x2b, 0xbb, 0x1e, 0xb0, 0x79, 0x24, 0x81, 0xb8}} return a, nil } -var _epochAdminDeploy_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xc1\x6b\xea\x40\x10\xc6\xef\xf9\x2b\x06\x0f\x0f\x05\x11\x1e\x3c\xe4\xe1\x4d\xd2\x5a\xc4\x42\x15\x69\x7b\x10\x0f\xdb\xcd\x34\x06\x93\xd9\x30\x3b\x8b\x95\xe2\xff\x5e\x62\x22\x35\x31\x26\xb6\x1e\x16\xf3\xcd\xf7\x6d\x26\x33\xbf\x28\x49\x0d\x0b\x4c\x62\xb3\xf3\x63\x67\x05\x79\xe1\xc3\x3b\x9b\x04\x3a\x25\xad\xe3\x79\xc2\x8a\xac\xd2\x12\x19\xea\x92\x4a\x70\x04\x4b\xe1\x88\xc2\x3e\x78\x70\xf6\xd3\x26\xc0\x11\xac\x9e\xa7\x24\xff\xd7\xfd\x72\xc9\x31\x23\xc9\x7d\x6a\xf4\xc6\x37\x8e\x04\x79\x04\x99\x71\xf8\xaf\x6c\x24\x97\xbc\x44\xb8\xb3\x53\x3a\x7a\xdb\x4c\x4b\x51\xdb\x88\xc2\xb1\x3b\x36\xd7\xe6\xbe\x9b\x3d\xcc\x37\xca\xe2\x55\x9f\x6f\xe2\x18\xb5\x18\x2e\xbe\xde\xe6\xce\xbf\xc3\xb2\x73\xf2\xf8\xf4\x6a\x5d\x9a\xc6\xfb\x29\x69\x46\x65\x71\x8e\xac\x91\x44\x85\xd9\xdd\x93\xe8\xa3\x7a\x37\x2b\x0a\x4c\xb2\x34\x8e\xf5\xf7\xf4\x2a\xc3\xbb\x78\xf5\xaa\xb4\x87\x41\xf1\xaf\x3a\xd9\x53\xfd\x6a\x60\xe1\x57\x22\xc1\x36\x9c\xbb\xb7\x19\xee\xb3\x48\xde\xcb\xba\x07\x9f\x9e\x07\x90\x32\xa6\x8a\xb1\x6b\xa3\x90\xb2\x15\x29\x27\x9b\xee\x38\x08\x7c\x43\xc2\x4a\x4b\x0f\xfe\x8c\xb5\xce\x16\x58\x04\x00\x72\xeb\x40\x17\x0e\x3b\x50\x41\x50\x50\x92\x9d\xb5\x8c\x64\xe7\x0d\x80\xd4\x88\x2d\xb4\x54\x84\x5b\xb1\xb9\x56\xa9\x34\x5f\x47\xd2\xa5\x76\x19\xaa\xc1\xaa\x4e\xfd\x09\x64\x4d\xd5\x26\xf4\xce\x9f\xda\x01\x5c\x83\xb2\xbf\xc0\xb0\x21\xd6\x0c\x63\x1e\x3c\x21\xe9\x01\x1c\xbc\xc3\x57\x00\x00\x00\xff\xff\x4b\x08\x37\x75\xa8\x04\x00\x00" +var _epochAdminDeploy_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xc1\x6b\xea\x40\x10\xc6\xef\xf9\x2b\xe6\xe8\x03\x91\xf7\xe0\x21\x0f\x6f\x21\xea\x43\x2c\x54\x1b\xda\x1e\xc4\xc3\x76\x33\x8d\xc1\x64\x36\xcc\xee\xa2\x52\xfc\xdf\xcb\x9a\x48\x4d\x8c\x89\x6d\x0e\x4b\x32\xdf\xf7\x6d\x86\x99\x5f\x92\xe5\x8a\x0d\x4c\x53\xb5\x0b\x52\xab\x0d\xf2\x32\x80\x77\x56\x19\xfc\xde\x2f\x03\x7f\x3c\x7e\x9a\x84\xa1\xe7\x19\x16\xa4\x85\x34\x89\xa2\x1e\x89\x0c\x47\x10\x1a\x4e\x28\xee\x83\x07\x17\x8f\x54\x11\x8e\x60\xf5\x3c\x23\xf3\x6f\xdd\xaf\x4a\x96\x19\xc9\x4c\x72\x25\x37\x81\xb2\x64\x90\x47\xe0\x8c\xc3\xbf\x55\x23\xd9\xec\x25\xc1\x9d\x9e\xd1\xc9\xdb\x65\x0a\x8d\xd8\x26\x14\xfb\xf6\xd4\x5c\x97\x7b\x3c\xff\xbf\xd8\x08\x8d\x37\x7d\x81\x4a\x53\x94\x46\x71\x39\x0d\x5d\x38\xff\x0c\xab\xce\xe9\xc3\xe3\xab\xb6\x79\x9e\x1e\x66\x24\x19\x85\xc6\x05\xb2\x44\x32\x22\x76\x77\x4f\x93\x7d\xfd\x6e\x16\x14\xa9\x2c\x54\x96\xe5\xd7\xf4\x6a\xc3\xbb\xfa\xf5\xaa\xb2\x97\x41\xf9\x56\x9f\xec\x59\xbf\x19\x58\x06\xb5\x48\xb4\x8d\x17\xf6\x6d\x8e\x07\x17\x29\x7a\x59\xff\x82\x0f\xcf\x03\xc8\x19\x73\xc1\xd8\xd3\x49\x4c\x6e\x45\xbe\x35\x1b\x5f\x4a\xb7\xb1\xd2\x01\x50\x68\x03\xa9\xc8\xb0\x90\x46\x0f\x44\x14\x95\x58\xb8\xb3\x11\x0a\x77\xde\x41\x44\x43\xb1\x03\x8f\x5a\xe1\x5e\x4e\x6e\x29\xb5\xe6\x9b\xd0\xb9\xae\x5d\x87\x1a\x38\x6a\xaa\x7e\x87\xaa\x36\xb5\x8d\xb5\xcb\xaf\x6e\xe2\xd6\x20\xf4\x0f\xb8\x6b\x89\xb5\xd3\x57\x04\xcf\x0c\x7a\x00\x47\xef\xf8\x19\x00\x00\xff\xff\x77\xe6\xf2\x61\x95\x04\x00\x00" func epochAdminDeploy_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1260,11 +1200,11 @@ func epochAdminDeploy_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/deploy_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc0, 0xec, 0x40, 0x48, 0x4, 0x2f, 0x71, 0x7b, 0xd8, 0xb, 0xbb, 0x6b, 0xa7, 0x3c, 0x3f, 0x5f, 0x22, 0x3e, 0x7d, 0xb, 0x7f, 0x80, 0x8, 0x21, 0xc3, 0x66, 0x12, 0xb4, 0x70, 0xd2, 0x99, 0xc7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3b, 0x7a, 0xe, 0xfd, 0xd8, 0x13, 0x8f, 0x9b, 0x36, 0x65, 0x11, 0x9d, 0x7, 0x4f, 0x62, 0xb9, 0x4e, 0x62, 0xe3, 0x15, 0xb8, 0x23, 0xf6, 0x95, 0xa4, 0xd3, 0xde, 0xd3, 0x54, 0x5c, 0xff, 0x57}} return a, nil } -var _epochAdminDeploy_qc_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xce\xb1\x4a\x03\x41\x10\xc6\xf1\x7e\x9e\xe2\xab\xe4\x16\x8e\xa4\x95\xeb\x42\x6c\x6c\x6c\xc4\x4a\x2c\x86\xd9\x65\x5d\xa2\x33\x97\xdd\x09\x22\x92\x77\x17\xb2\xab\x98\xca\x72\xe0\xfb\x33\xbf\xed\x16\x77\x69\x7d\xb3\xcf\x06\xff\x30\x88\xa9\x57\x16\x6f\x70\x03\x2b\x58\xc4\x4e\xea\x28\x0a\xd3\x04\xaf\xac\x8d\xc5\x8b\x29\x81\xfe\x5c\xd3\x51\x1e\xf8\x3d\x2d\x78\xf4\x5a\x34\xcf\x38\xca\xde\x62\x5a\xf0\xfc\x74\xaf\x7e\xfb\x32\x23\x1e\xf2\xf5\x22\x1e\xf2\xd5\x24\xe0\x8b\x08\x58\x6b\x5a\xb9\xa6\xa9\x95\xac\xa9\x2e\xe0\x93\xbf\x4e\xbb\x18\xf7\x43\x16\x70\xb3\xeb\xa8\x11\x00\x7d\xba\xf9\xb5\x6f\x38\xc6\x49\x2f\xcf\x3a\x6b\x86\x5c\x3e\x75\x54\xf8\xb7\x1a\xd6\x9f\x6c\x48\x03\x01\x67\xa2\x33\x81\xbe\x03\x00\x00\xff\xff\x37\x0b\x9f\x58\x36\x01\x00\x00" +var _epochAdminDeploy_qc_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xce\x31\x4b\xc4\x40\x10\x05\xe0\x7e\x7e\xc5\x2b\x13\x08\x77\xad\xa4\x3b\xb4\xb1\xb1\x11\x2b\xb1\x18\x66\x97\x75\x39\x9d\x49\x76\x27\x88\x48\xfe\xbb\x90\x8d\x62\x2a\xcb\x61\xde\x7b\x7c\xe7\x33\xee\xe2\xf4\x66\x9f\x15\xfe\x61\x10\x53\x2f\x2c\x5e\xe1\x06\x56\xb0\x88\x2d\xea\xc8\x0a\xd3\x08\x2f\xac\x95\xc5\xb3\x29\x81\xfe\x5c\xdd\x2c\x0f\xfc\x1e\x47\x3c\x7a\xc9\x9a\x06\xcc\x72\x6b\x21\x8e\x78\x7e\xba\x57\xbf\x79\x19\x10\xae\xe9\x98\x08\xd7\x74\x88\xf4\xf8\x22\x02\xa6\x12\x27\x2e\xb1\xab\x39\x69\x2c\x23\x2e\x8b\xbf\x5e\x9a\x62\x4f\x00\xed\x77\xfa\xc5\x9e\x38\x84\x4e\xb7\xf5\xe6\x18\x20\xdb\x74\x53\xf4\xff\xb6\x76\xdc\x4f\x6d\xa7\xf5\x04\xac\x44\x2b\x81\xbe\x03\x00\x00\xff\xff\x63\x1d\x09\x1c\x27\x01\x00\x00" func epochAdminDeploy_qc_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -1280,11 +1220,11 @@ func epochAdminDeploy_qc_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/deploy_qc_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf2, 0xf3, 0x8a, 0xbb, 0x2a, 0x94, 0xec, 0x2, 0x91, 0xbb, 0xb8, 0x47, 0x83, 0xda, 0xe4, 0x7, 0x32, 0x98, 0x19, 0x9, 0x22, 0xec, 0xd7, 0x7e, 0x5d, 0x67, 0xf5, 0x20, 0x9d, 0x75, 0xef, 0x5f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0xe5, 0xe6, 0x5e, 0xb3, 0x8d, 0x7c, 0x34, 0x5, 0xbf, 0xe9, 0x71, 0x45, 0x48, 0x7, 0xa7, 0xaa, 0x67, 0xd5, 0x1e, 0x45, 0x4b, 0x78, 0xc9, 0x66, 0x5b, 0x35, 0x61, 0x8f, 0x22, 0xd8, 0x7d}} return a, nil } -var _epochAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\x4f\x6b\xc3\x30\x0c\xc5\xef\xfe\x14\x22\x87\x92\xc0\x48\xef\x65\x5b\xd9\xbf\xb2\xde\xca\x3a\x76\x57\x12\xb5\x36\x73\x2d\xa3\x28\x0d\x61\xf4\xbb\x8f\x24\x5d\x96\xea\x26\xfc\x9e\xde\xf3\xcf\x9d\x22\x8b\xc2\xc6\x73\xfb\x16\xb9\xb4\x70\x10\x3e\x41\x32\xed\x89\x99\x29\xb6\xaf\x9f\x58\x78\xda\x2b\x7e\xbb\x70\x9c\x49\x6f\x1f\x12\x63\x96\xcb\x25\xec\xb0\xab\x41\x2d\x81\x50\x8b\x52\xd5\x70\x60\x19\xf6\x28\x74\x76\xdc\xd4\x40\x7d\xc2\xa0\xdd\x1e\x6e\x94\x16\xcf\x04\xe8\x85\xb0\xea\xa0\x20\x0a\x10\xd1\x55\x77\xa3\x1b\xbb\x13\x05\x85\xd6\x79\x0f\x81\x15\x2c\xc6\x48\xc1\x18\x15\x0c\x35\x96\xea\x38\xc0\x8f\x01\x80\x3e\x28\xa2\x50\x5a\xbb\x63\x20\x59\x01\x36\x6a\xd3\x67\x16\xe1\xf6\x0b\x7d\x43\x19\x2c\x9e\xca\x92\x9b\xa0\xd9\xd5\xd1\x8f\x27\x05\x4b\x28\x5a\x10\x2a\x3c\xc0\xe8\xce\x6b\x65\xc1\x23\xe5\xc5\xe0\xbf\x5f\x4c\x88\xf2\xf7\x3f\xf1\x63\xda\x23\x59\xfd\xd3\xcc\xa7\x3b\xfb\xd1\xbd\x43\xb5\xd9\x94\xd4\xcf\x7a\x0d\x11\x83\x2b\xd3\xe4\x85\x1b\x5f\x0d\x3f\x1a\x23\x66\x25\x06\xd2\xd7\x02\x10\x51\x6d\x92\x99\xe9\xca\x24\xcb\x23\x76\x1f\x23\xc1\x0d\xcb\xee\x4a\x79\x28\x92\x8e\xa1\x17\x73\xf9\x0d\x00\x00\xff\xff\x18\x65\x13\x72\xf1\x01\x00\x00" +var _epochAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\xc1\x8a\xa3\x40\x10\x86\xef\x3e\x45\x91\xc3\x62\x60\x31\x7b\x0e\xbb\x1b\x9c\x68\x88\x30\xcc\x48\xf4\x32\xc7\x52\x2b\xe9\x66\x4c\x77\x53\x96\x71\x64\xc8\xbb\x0f\x6a\xe2\x64\xea\xd6\xf0\xfd\xf5\x55\xff\xfa\xec\x2c\x0b\xec\x6a\xdb\xc5\xce\x96\x0a\x8e\x6c\xcf\xf0\xe7\x23\x4e\x5f\xb7\xfb\x30\x8a\x0e\x71\x96\x79\x0f\x50\x12\xe5\x58\xd4\x94\x09\xbe\x6b\x73\xba\xd3\x49\x14\xbf\xe4\x49\xfe\x96\x87\x4f\xcf\xf1\x3d\xe5\xad\x56\x2b\x48\xb1\x6f\x40\x14\x01\x53\x87\x5c\x35\x70\xb4\x3c\xbe\x1d\xd3\x45\xdb\xb6\x01\x1a\xb4\x23\x9b\x1c\x7f\x90\x0a\x2f\x04\x58\x33\x61\xd5\x43\x41\x64\xc0\xa1\xae\x7e\x4f\x69\xec\xcf\x64\x04\x3a\x5d\xd7\x60\xac\x80\x42\xe7\xc8\x78\x9e\x30\x9a\x06\x4b\xd1\xd6\xc0\xa7\x07\x00\x83\xc8\x21\x93\xdf\xe8\x93\x21\x5e\x43\xd8\x8a\x0a\xcb\xd2\xb6\x46\x96\x37\x64\x98\x9a\x04\x14\x21\x4b\x41\x28\xf0\x0f\x26\x3c\x28\x2c\xb3\xed\xfe\xfe\x9a\x0b\x0a\xf6\x77\xe8\xbf\x3f\xfc\x7e\xfd\xdd\x5d\x30\xe7\x33\xb1\x8c\x27\x4a\x51\xd4\x72\x36\x0c\xb3\xd9\x80\x43\xa3\x4b\x7f\xb1\xb5\x6d\x5d\x8d\xa7\x4f\x8a\x07\xf9\x58\x6a\x33\xad\x00\x87\xa2\x16\x4b\x6f\xde\x32\x63\x81\xc3\xfe\x30\x55\xb5\xb3\x9c\xde\xea\x1c\x0f\xf1\x27\xe9\xd5\xbb\x7e\x05\x00\x00\xff\xff\x8c\x32\x25\xbc\xdf\x01\x00\x00" func epochAdminPay_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -1300,11 +1240,11 @@ func epochAdminPay_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/pay_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc5, 0x44, 0xb, 0xf, 0x17, 0x22, 0x70, 0x23, 0x47, 0x80, 0xe0, 0x8d, 0xa, 0x3c, 0x31, 0x58, 0xc8, 0xd8, 0xe5, 0x97, 0x7b, 0xb3, 0x3b, 0x2a, 0x68, 0x2, 0xa, 0xcf, 0xcb, 0xe8, 0x50, 0x83}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0x12, 0x23, 0x8e, 0xdb, 0x2b, 0x5a, 0x58, 0x1c, 0xdd, 0x6c, 0x42, 0xc0, 0xb7, 0x92, 0xf5, 0x52, 0x42, 0x73, 0xe4, 0xab, 0x3e, 0x1a, 0xa, 0xae, 0x60, 0x27, 0x7b, 0x5b, 0x49, 0x6e, 0x2b}} return a, nil } -var _epochAdminRecover_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xc1\x6e\xdb\x48\x0c\xbd\xeb\x2b\x08\x1f\x02\x1b\xd8\x28\x97\xc5\x1e\x84\xdd\x0d\x52\x27\x01\x82\xa2\x40\x0a\xa7\xb9\x04\x39\xd0\x23\xda\x1a\x64\x34\x14\x38\x54\x14\xa3\xc8\xbf\x17\x23\x29\xb2\x64\xb7\x75\x7d\x9a\x21\xdf\x7b\xf3\x4c\x3d\xda\xb2\x62\x51\xb8\x75\xdc\xdc\x54\x6c\x0a\xd8\x08\x97\x30\x1b\xee\xb3\x64\x84\xb8\xbb\x7e\xc0\xb5\xa3\x95\xe2\x8b\xf5\xdb\x11\x74\xda\x98\x70\x96\xae\x0e\x4a\xf2\x75\x39\x82\x0f\xb5\x59\x92\x5c\x5c\xc0\x43\x41\x20\x64\xf8\x95\xa4\xf3\xa0\x82\x3e\xa0\x51\xcb\x1e\x8c\x10\x2a\x05\x40\x9f\x43\x50\x14\x0d\x80\xe0\xa9\x01\x6a\xa1\xd6\x83\x16\x34\xf2\x1f\x4a\x14\x05\xc3\x5e\x05\x8d\x46\x79\x65\x68\x0a\x6b\x0a\x68\xac\x73\xb0\x61\x31\xd4\x72\x3c\x69\xc3\xf2\x02\xf4\x66\x15\x6e\x6e\xbf\xa4\xc7\x46\x02\xc9\xab\x35\x04\xf4\x4a\x5e\x3b\xfe\x9a\x80\x4a\xab\x4a\x39\x44\xf1\x68\xab\x12\x36\x14\x02\xe5\xb0\xde\x01\x3a\x17\x0b\xca\x86\x1d\x54\x28\x6a\x8d\xad\xd0\x6b\xf7\x0f\x08\x4d\x31\xae\x76\x9a\x75\x95\xa3\xb6\xa6\xac\xec\xc9\x51\x3e\x68\x6c\x34\x56\x8b\xde\x72\x03\x9d\xb3\x1c\x15\xd3\x6e\x78\x36\x4c\x06\x16\x0a\xae\x5d\x0e\xec\xdd\x2e\x9a\xad\xa3\xaf\x41\x80\x6b\xad\x6a\x05\xde\xb4\xb7\x35\xb3\x06\x15\xac\xa0\x56\xeb\xac\xee\xb2\xa8\x08\xed\xad\x9f\x2f\x6d\xca\xf3\x7e\x24\xe7\xfa\x76\x8e\xb2\x0d\xc9\xe8\xb5\xb9\xa0\xcf\xb9\x5c\x71\x2d\x86\x32\x58\xa9\x58\xbf\xfd\x2b\x81\xd1\xaf\xfd\x68\x8f\x96\x9a\x0c\xbe\xdd\x79\xfd\xe7\xef\xa3\x76\xcc\xcc\x8d\xcf\x7f\x8d\xa1\xdf\x35\x0d\x3b\x47\x46\x59\xfa\x54\x85\x0c\x9e\x9e\x3a\x23\xcf\xcf\x07\xd0\x8f\xdc\x3d\xb2\xd2\x35\x2a\x66\xf0\x34\xc9\x63\xba\x3c\x44\x1c\x28\xe4\x2f\xdb\xfb\x7a\xfd\x99\x76\xf1\x95\xfe\x91\x29\xc2\x73\x4e\x77\xd7\xa3\xf6\x02\xbe\x27\x2d\xa2\x12\xaa\x50\x68\x1e\xec\xd6\x93\x64\x80\xb5\x16\xf3\x4f\x2c\xc2\xcd\x23\xba\x9a\x16\x70\x76\x65\x0c\xd7\x5e\x23\xe5\x43\xcf\x91\x76\x9f\xe2\x2a\x2f\xad\x87\xff\xa0\xa3\xa7\x41\x59\x70\x4b\xe9\xba\x15\xf8\xf7\x6c\xd8\x80\xb4\x05\xfe\x3f\x8f\xeb\x96\xed\x17\x23\xc5\x58\x5e\x75\xac\x7b\xd4\x62\x31\xb1\x7d\x79\x09\x15\x7a\x6b\xe6\xb3\x65\x1b\x1f\xcf\x0a\x9d\x74\x1f\x84\x96\xde\xed\x70\xff\x34\x54\xa8\xc5\x6c\x91\x0c\x3a\x7b\x9b\xe9\x78\x8b\x0e\x32\x32\xbe\x4d\x47\x77\xf4\x1b\x45\x67\x38\x9e\xa6\x4c\xe2\x34\xbd\x9f\x20\x0f\x39\xa3\x3f\x82\xff\x24\x79\x47\xa5\x53\x12\xc7\x89\x3c\x2a\x9d\x90\x18\x47\x72\x7f\x3e\x41\x1a\x52\xda\x1f\xba\x30\xbc\x27\xef\xc9\x8f\x00\x00\x00\xff\xff\xf3\x0f\xd1\xe0\x11\x06\x00\x00" +var _epochAdminRecover_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x6f\xdb\x38\x10\xbd\xfb\x57\x0c\x72\x58\x38\xc0\xc6\xd9\xc3\x62\x0f\xc6\xb6\x81\x6b\x3b\xa8\xd1\xaf\xa4\x76\x03\x14\x41\x0e\x63\x6a\x6c\x11\xa1\x38\xc2\x70\x14\xc5\x28\xf2\xdf\x0b\x4a\xb2\x2d\xd9\x69\x5d\x9d\xc8\xe1\x7b\x8f\x4f\xc3\x37\x36\xcb\x59\x14\xae\x1d\x97\xd3\x9c\x4d\x0a\x2b\xe1\x0c\xfe\x79\x9e\xde\x7c\x19\xbf\x1f\x4d\x26\x5f\xa7\xf3\x79\xaf\x05\x9a\x4d\x16\xb8\x74\x34\x57\x7c\xb4\x7e\xbd\x45\xcf\x26\xd3\xcf\x8b\xd9\xe2\xfb\x62\xf4\xee\xe3\xf4\x15\xd6\xd8\x15\x41\x49\x6e\xc7\x5b\xc2\xed\x78\x8b\xba\xbc\x84\x45\x4a\x20\x64\xf8\x89\xa4\xf6\xa0\x82\x3e\xa0\x51\xcb\x1e\x8c\x10\x2a\x05\x40\x9f\x40\x50\x14\x0d\x80\xe0\xa9\x04\xaa\xa0\xd6\x83\xa6\xd4\xf2\x1f\x32\x14\x05\xc3\x5e\x05\x8d\x46\x79\x65\x28\x53\x6b\x52\x28\xad\x73\xb0\x62\x31\x54\x71\x3c\x69\xc9\xf2\x08\xf4\x6c\x15\xa6\xd7\x9f\x06\xc7\x46\x02\xc9\x93\x35\x04\xf4\x44\x5e\x6b\xfe\x92\x80\x32\xab\x4a\x09\x44\xf1\x68\x2b\x17\x36\x14\x02\x25\xb0\xdc\x00\x3a\x17\x0b\xca\x86\x1d\xe4\x28\x6a\x8d\xcd\xd1\x6b\xfd\x07\x84\x26\x6d\x57\x6b\xcd\x22\x4f\x50\x2b\x53\x56\xf6\xe4\x28\x1f\x34\x1e\x94\x56\xd3\xc6\x72\x09\xb5\xb3\x04\x15\x07\x75\xf3\x6c\xe8\x34\x2c\xa4\x5c\xb8\x04\xd8\xbb\x4d\x34\x5b\x44\x5f\x3b\x01\x2e\x34\x2f\x14\x78\x55\xed\x96\xcc\x1a\x54\x30\x87\x42\xad\xb3\xba\x19\x46\x45\xa8\x76\x4d\x7f\x69\x95\x5d\x34\x2d\xb9\xd0\xe7\x0b\x94\x75\xe8\xb5\x6e\xeb\x0b\xfa\x84\xb3\x39\x17\x62\x68\x08\x73\x15\xeb\xd7\x7f\xf7\xa0\xf5\x55\x8f\x76\x67\xa9\x1c\xc2\xb7\x99\xd7\xff\xfe\x3d\x3a\x8e\x49\x9a\xfa\xe4\xd7\x18\xfa\xdd\xa1\x61\xe7\xc8\x28\x4b\x13\xb2\x30\x84\xfb\xfb\xda\xc8\xc3\xc3\x01\x74\x1b\xc3\x3b\x56\x9a\xa0\xe2\x10\xee\x3b\xf1\x1c\x8c\x0f\x11\x07\x0a\xc9\xe3\xfa\xa6\x58\x7e\xa0\x4d\xbc\xa5\xb9\xa4\x8b\xf0\x9c\xd0\x6c\xd2\x3a\x3e\x87\x1f\xbd\x0a\x91\x0b\xe5\x28\xd4\x0f\x76\xed\x49\x86\x30\x2a\x34\x1d\x19\xc3\x85\xd7\x88\xd9\x0a\x38\xd2\xba\xf7\xa3\x24\xb3\x1e\xde\x40\x8d\x1f\x2c\x59\x84\xcb\xff\xff\xda\x45\x7d\x50\x01\xde\xf6\xe3\x48\x0d\xf7\x13\x30\xc0\x58\x9e\x2b\x0b\xae\xe9\x06\x35\x3d\xef\xf8\xbb\xba\x82\x1c\xbd\x35\xfd\xb3\x71\x95\x13\xcf\x0a\xb5\x74\xf3\xe2\x15\xbd\x9e\xd3\x50\x8b\x40\x8e\x9a\x9e\x9d\xf7\x76\x3a\x7b\x7b\x83\xf6\xb8\x1c\x84\xa1\xbd\xeb\xf6\xe8\xe8\x6b\x65\x64\xb7\x3c\x4d\xe9\xe4\xa6\xbb\x3f\x41\xde\x05\x8a\xfe\x08\xfe\x4a\xc4\x8e\x4a\xa7\x24\x8e\xa3\x77\x54\x3a\x21\xd1\xce\xde\x7e\x7d\x82\xb4\x8b\x63\xb3\xa8\xc3\xf0\xd2\x7b\xe9\xfd\x0c\x00\x00\xff\xff\x70\xfb\xb8\xdc\xfa\x05\x00\x00" func epochAdminRecover_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1320,11 +1260,11 @@ func epochAdminRecover_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/recover_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x0, 0x96, 0x18, 0x60, 0xc6, 0x26, 0xfe, 0xc7, 0xff, 0xd0, 0xe, 0x9c, 0xc7, 0xcb, 0xe9, 0x31, 0x96, 0xaa, 0xbf, 0xbe, 0xdb, 0x88, 0x81, 0x8b, 0x42, 0x39, 0xaf, 0x55, 0x60, 0x90, 0x31, 0xd8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf2, 0x75, 0xc7, 0x49, 0x25, 0x51, 0x5e, 0x42, 0x19, 0xce, 0x5e, 0x11, 0xe8, 0x8b, 0x3b, 0x57, 0x45, 0xc2, 0xf9, 0xd0, 0xed, 0x9, 0xb6, 0x2f, 0x6b, 0x9f, 0x57, 0xf2, 0x5, 0xb9, 0x32, 0xc2}} return a, nil } -var _epochAdminReset_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xcb\x6e\xdb\x30\x10\xbc\xeb\x2b\x16\x3e\xa4\x36\xe2\xc8\x08\x50\xf4\x60\xb4\x0d\x52\x27\x05\x82\x5e\x52\x38\xcd\xa5\xe8\x61\x2d\xad\x25\xc2\x12\x57\xe0\xae\xe2\x1a\x45\xfe\xbd\x20\xe9\x87\x54\xa8\x49\x7c\x32\xa9\x99\xe1\x70\x66\x69\xea\x86\x9d\xc2\xd7\x8a\xb7\xb7\x0d\x67\x25\xac\x1d\xd7\x30\x3a\xae\x47\x49\x07\x71\x77\xf3\x80\xab\x8a\x96\x8a\x1b\x63\x8b\x0e\xb4\xff\x61\x94\x24\xb3\x19\x3c\x94\x04\x8e\x84\x34\xea\xaa\x43\x2b\x98\xa9\x61\x0b\x64\x73\x01\x2d\x09\xb2\xd6\x39\xb2\x0a\x14\x20\xc6\x86\xcd\x93\x17\xa9\xd1\x29\x64\x6c\xd5\x61\xa6\x5e\x14\x6d\x0e\x2b\x2a\x8c\x15\x40\xb0\xb4\xdd\x33\xb7\x46\xcb\xc0\x2d\xcc\x13\x59\xcf\x58\x9b\xa2\x75\xe8\x4f\x4b\x83\x93\x13\x16\xab\x2d\xee\x04\x4a\x14\x2f\x18\x5c\x70\x6b\x95\xdc\xc1\x4d\x38\x7b\x11\xf7\xce\x2f\x23\xbd\xeb\x5e\xc8\xe6\xe4\xa0\x6e\x45\xa1\x71\xfc\x64\x72\x0a\x32\x5e\x6e\x40\x02\xc6\x2b\x5a\xb3\x8b\x98\x10\x08\x28\x6e\x48\xa0\xa9\x30\xa3\x09\xa0\xbf\x8a\xe0\x9a\x74\x07\x35\x65\x25\x5a\x23\x75\x9a\xcc\x66\x5e\xef\xa6\x75\x3e\x69\x4b\xba\x65\xb7\x01\x69\xd8\x6d\x64\x1a\xa4\x56\xcc\x2a\xea\xb0\x69\x28\xf7\x3e\x94\x33\xae\x40\x14\x95\xc0\x88\x0f\x33\x26\x14\xa3\x1c\x0f\x5e\x6e\x32\x3d\x84\xda\x69\xca\x08\xb4\x42\x39\x28\x83\x77\x53\x44\xe7\x31\xbc\x43\x54\x6f\xa8\x2a\x4c\xc7\x50\x1e\xca\x83\x6e\xe0\x1c\x2e\x27\x53\x10\x06\x2d\x51\xc1\xe8\x3b\xf1\x7a\x62\x44\xfd\x88\x84\x8a\x0f\x8d\xbd\x70\xf7\x34\xce\x9e\x91\x7e\x67\x25\xb7\x55\x0e\x6c\xab\x1d\xac\x28\xde\xef\x38\x34\xdc\x6a\xd3\x2a\xf0\xba\xaf\x0d\xad\x9a\xca\xe8\x6e\xee\x15\x21\xac\xf6\x29\x84\xb0\x2e\xf4\xf7\x05\xba\x42\x92\xa4\x73\xd0\xd0\xc5\xe6\xf0\xe3\xce\xea\x87\xf7\xd3\x04\x3a\x3f\x87\x36\xe7\x7a\xc9\xad\xcb\x68\x0e\x4b\xf5\x3d\xf7\x11\xa2\xe8\xf4\xd1\xd0\x76\x58\x40\xe2\x63\xbb\xb5\xf9\xff\x31\xd4\xff\x38\x81\x3f\x49\xf8\xde\x38\x6a\xd0\xd1\x58\x4c\x61\xbd\x41\x6c\xb5\x1c\x7f\x61\xe7\x78\xfb\x88\x55\x4b\x13\x38\xbb\xce\x42\xd7\x9e\x72\x50\xab\x68\xff\x52\xaf\xf3\xda\x58\xf8\x04\x91\x9e\x8a\xb2\xc3\x82\xd2\x55\x10\xf8\x78\x76\x9c\x8a\x34\x00\x3f\x8f\xfd\x28\xcc\x4f\xc3\x92\xa2\xdf\x5e\x46\xd6\x3d\x6a\x39\xe9\x99\xbe\xba\x82\x06\xad\xc9\xc6\xa3\x45\x28\xcd\xb2\x42\x94\x3e\xbc\xe0\x70\x7c\x98\xaf\xfd\xd1\xd0\xa0\x96\xa3\x49\x72\xd4\x39\xd9\x4c\x4f\x93\x3d\x5c\xce\xc0\x66\x3f\xc4\x7f\x7f\xfd\xe6\xba\xab\x97\x79\xdd\x42\x8f\x7f\x5f\xa7\xf4\x4a\xee\xaf\x5f\x21\x1f\xdb\xa7\x37\xc1\x33\xae\x2a\xca\x94\xdd\xa2\x6a\x45\xc9\xc9\x1c\x7e\xfe\x7a\x8d\x13\xa1\xdf\x17\x6f\x01\xe7\x9b\xe2\xbe\x5d\x7d\xa3\x5d\x00\xc7\xd2\x9f\x93\xe7\xe4\x6f\x00\x00\x00\xff\xff\x31\xe8\x6d\xe4\x84\x06\x00\x00" +var _epochAdminReset_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x5d\x6f\xdb\x46\x10\x7c\xe7\xaf\x58\xf8\xa1\x95\x60\x59\xaa\x81\xa2\x0f\x42\x5b\x43\x95\x54\x54\x68\xd1\xba\x91\x12\x20\x08\xf2\xb0\x24\x57\xe4\x41\xe4\x2d\x71\xbb\xb4\x2c\x04\xfe\xef\xc1\xdd\x59\x1f\x0c\x18\xdb\x7c\xe2\x1d\x67\xe6\xe6\x66\x96\xa6\x6e\xd8\x29\xfc\x59\xf1\x7e\xd9\x70\x56\xc2\xd6\x71\x0d\x3f\x3d\x2e\xef\xff\x9b\xff\x35\x5b\x2c\xde\x2d\xd7\xeb\xe4\x02\xb4\x5a\x6c\x30\xad\x68\xad\xb8\x33\xb6\x38\xa2\x57\x8b\xe5\xbf\x9b\xd5\xe6\xe3\x66\xf6\xc7\x3f\xcb\x23\x2b\x99\x4c\x60\x53\x12\x38\x12\xd2\x28\xae\x0e\xad\x60\xa6\x86\x2d\x90\xcd\x05\xb4\x24\xc8\x5a\xe7\xc8\x2a\x50\x80\x18\x1b\x36\xcf\x86\xa4\x46\xa7\x90\xb1\x55\x87\x99\x7a\x51\xb4\x39\xa4\x54\x18\x2b\x80\x60\x69\xff\xcc\xdc\x1b\x2d\x03\xb7\x30\x0f\x64\x3d\x63\x6b\x8a\xd6\xa1\x3f\x6d\x1c\x9c\x9c\xb1\x58\xed\xf1\x20\x50\xa2\x78\xc1\xe0\x82\x5b\xab\xe4\x8e\x6e\xc2\xd9\xf3\xb8\x77\x7d\x1b\xe9\x97\xee\x85\x6c\x4e\x0e\xea\x56\x14\x1a\xc7\x0f\x26\xa7\x20\xe3\xe5\x7a\x24\x60\x90\xd2\x96\x5d\xc4\x84\x40\x40\x71\x47\x02\x4d\x85\x19\x0d\x01\xfd\x55\x04\xb7\xa4\x07\xa8\x29\x2b\xd1\x1a\xa9\xc7\xc9\x64\xe2\xf5\x16\xad\xf3\x59\x5b\xd2\x3d\xbb\x1d\x48\xc3\x6e\x27\xa3\x20\x95\x32\xab\xa8\xc3\xa6\xa1\xdc\xfb\x50\xce\xb8\x02\x51\x54\x02\x23\x3e\xcc\x98\x50\x8c\x72\xd0\x7b\xb9\xe1\xe8\x18\xea\x45\x53\x46\xa0\x15\xca\x41\x19\xbc\x9b\x22\x3a\x8f\xe1\x1d\xa3\x7a\x43\x55\x61\x3e\xfa\xf2\x50\xee\x75\x03\xd7\x70\x3b\x1c\x81\x30\x68\x89\x0a\x46\x7f\x14\xaf\x27\x46\xd4\x8f\x48\xa8\xf8\xd8\xd8\x0b\x77\x1f\xc7\xd9\x33\xd2\xed\xac\xe4\xb6\xca\x81\x6d\x75\x80\x94\xe2\xfd\x4e\x43\xc3\xad\x36\xad\x02\x6f\xbb\xda\xd0\xaa\xa9\x8c\x1e\xa6\x5e\x11\xc2\xea\x39\x85\x10\xd6\x8d\x3e\xde\xa0\x2b\x24\x49\x2e\x0e\xea\xbb\xd8\x14\xde\xaf\xac\xfe\xf2\xf3\x28\x81\x8b\xc7\xa1\xcd\xb9\x5e\x73\xeb\x32\x9a\xc2\x5a\x7d\xcf\x5d\x84\x28\x3a\xfd\x60\x68\xdf\x2f\x20\xf1\x3f\x5c\xda\xfc\xfb\x18\xea\x7e\x1c\xc2\x97\x24\x7c\x6f\x1c\x35\xe8\x68\x20\xa6\xb0\xde\xe0\xac\xd5\x72\x96\x85\x72\x3d\xe6\x48\xaf\xe8\xf9\xd7\x9c\xe5\xb5\xb1\xf0\x1b\x44\xfc\x38\x65\xe7\x78\xff\xeb\x0f\xa7\xfa\xc7\x01\xf0\xfb\xc0\x77\x3e\x3d\x4f\xc5\x18\xfd\xf6\x5a\xd9\x61\x41\xf7\xa8\xe5\xb0\xe3\xee\xee\x0e\x1a\xb4\x26\x1b\x5c\xcd\x43\x3b\x96\x15\xa2\x34\x94\x84\x4e\x53\x42\x8d\x63\x24\x51\x02\x1a\xd4\xf2\x6a\x98\x9c\x54\xce\xe6\xc6\xe7\x01\xee\xef\xa0\x67\xb3\x9b\xd5\xb7\x4f\xb7\xa0\xcb\xd5\xcb\xbc\xcb\xde\x4e\xaf\xaf\x53\x3a\x5d\x76\xd7\xaf\x90\x4f\x25\xd3\x9b\xe0\x19\x57\x15\x65\xca\x6e\x5e\xb5\xa2\xe4\x64\x0a\x9f\x3e\xbf\xc6\x89\xd0\xff\xe7\x6f\x01\xe7\xbb\xe2\xbe\x4d\xff\xa6\x43\x00\xc7\xca\x9f\x92\xa7\xe4\x6b\x00\x00\x00\xff\xff\x5f\x6f\xdc\x53\x70\x06\x00\x00" func epochAdminReset_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1340,11 +1280,11 @@ func epochAdminReset_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/reset_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x65, 0xaa, 0xbb, 0x55, 0xc5, 0x22, 0xcf, 0x8f, 0x94, 0x74, 0x88, 0xe8, 0xa0, 0x90, 0x53, 0x15, 0x36, 0x1b, 0xe, 0x32, 0xd3, 0xb2, 0xb8, 0xe3, 0x72, 0xdd, 0x95, 0x41, 0x21, 0xce, 0x47, 0xe2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0x3, 0xd, 0x2d, 0x73, 0x2d, 0x6f, 0xa5, 0xfa, 0x8b, 0xb6, 0x7, 0xd9, 0x10, 0xd9, 0x12, 0xf5, 0x76, 0x4e, 0x50, 0x36, 0x2b, 0xb, 0x70, 0x17, 0xa7, 0x9c, 0xda, 0x7c, 0x8c, 0xbd, 0x7a}} return a, nil } -var _epochAdminSet_automatic_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xb1\x4e\xc4\x30\x10\x44\xfb\x7c\xc5\x2a\xc5\x29\x69\xfc\x01\x11\x70\xca\xa1\xa3\x46\x20\xd1\xef\xd9\xcb\xc5\x92\xe3\xb5\x36\x6b\xa5\x40\xf7\xef\xc8\x31\xe4\x1a\x98\xce\x96\x67\xe6\x79\xfc\x9c\x58\x14\x5e\x02\xaf\xe7\xc4\x76\x82\x4f\xe1\x19\xda\xfd\xdc\x36\x8d\x0a\xc6\x05\xad\x7a\x8e\x1d\x66\xe5\x19\xd5\xdb\x37\x5a\x51\xdc\x72\x8e\x78\x09\xe4\x06\x38\x31\x87\x1e\xbe\x1a\x00\x80\x24\x94\x50\xa8\x5b\xfc\x35\x92\x0c\x80\x59\xa7\xee\xc4\x22\xbc\x7e\x60\xc8\xd4\xc3\x61\xb4\x96\x73\xd4\x5f\x47\x51\x20\x05\x2a\x95\xa3\x9b\x7d\x84\x47\xa8\x76\xb3\x28\x0b\x5e\xc9\x5c\xb6\x80\x87\xc3\x8e\x66\xb6\x87\x4f\x5d\x21\x1e\xee\x3f\x30\x58\xae\xdf\xab\xeb\x15\x75\xea\xf7\x8a\xa2\xe3\x11\x12\x46\x6f\xbb\xf6\x99\x73\x70\x10\x59\xa1\x46\xc3\x66\xac\x03\xfc\x94\x42\x42\x9d\xda\xbe\xd9\x13\xee\x80\x26\x27\x87\x4a\xe3\xdf\x83\xfc\x37\x54\x65\xb9\x35\xb7\xef\x00\x00\x00\xff\xff\x14\xdd\x64\x3c\x78\x01\x00\x00" +var _epochAdminSet_automatic_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\x25\x87\xe2\x5c\x4c\xcf\xa6\x6d\x50\x13\x97\xde\x1a\xe2\x2f\xd8\x48\x6a\x2c\x90\xb5\x62\xbd\xc2\x85\x92\x7f\x2f\x8a\xa8\x73\x69\xe7\x28\x66\x46\x6f\xd6\x4f\x89\x58\xe0\x2d\xd0\xd2\x27\x32\x23\x7c\x32\x4d\xf0\xf8\xd5\x1f\x3f\xf6\xef\xfa\x70\x38\xf5\xc3\xa0\x94\x30\xc6\x19\x8d\x78\x8a\x0d\x66\xa1\x09\xc5\x9b\x93\x5b\x90\xed\xdc\x47\x3c\x07\x67\x3b\x78\x25\x0a\x5b\xf8\x56\x00\x00\x89\x5d\x42\x76\xcd\xec\x2f\xd1\x71\x07\x3a\xcb\xa8\x8d\xa1\x1c\xe5\xd7\x52\x14\x9c\x80\x2b\xdf\x6a\x3b\xf9\x08\xcf\x50\xfd\xed\x99\x98\x69\x79\x7a\x58\xb1\xda\x9b\xe1\xa5\x29\x74\xdd\x9d\xb6\xc5\xf2\x3c\x08\x31\x5e\xdc\x11\x65\xdc\xae\xd5\x45\xbb\x1d\x24\x8c\xde\x34\x9b\x3d\xe5\x60\x21\x92\x40\xad\x86\x5b\xb0\x8e\x9d\x6b\x1c\x12\xca\xb8\xd9\xaa\xb5\xe1\x0e\xd6\xe6\x64\x51\x9c\xfe\x7b\xf9\x7f\x17\xa9\x2c\x57\x75\xfd\x09\x00\x00\xff\xff\xac\x8e\x3a\x7a\x64\x01\x00\x00" func epochAdminSet_automatic_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -1360,11 +1300,11 @@ func epochAdminSet_automatic_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/set_automatic_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xd6, 0xdc, 0xeb, 0xa4, 0xe1, 0xef, 0xb3, 0x7b, 0x5, 0x20, 0x54, 0xbe, 0xeb, 0xff, 0x1b, 0x2a, 0xcd, 0xde, 0xf5, 0x11, 0xeb, 0x9e, 0x29, 0xb, 0xa3, 0x57, 0x6f, 0x14, 0x6d, 0xa8, 0x16}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x79, 0x9, 0x8e, 0xe5, 0x32, 0xcb, 0x3e, 0x61, 0xd5, 0x8a, 0x3c, 0xd2, 0xdb, 0x86, 0x84, 0x19, 0x2c, 0xb6, 0x67, 0x7b, 0xac, 0x61, 0x5f, 0x6, 0x64, 0xc2, 0xd, 0x5a, 0x24, 0x94, 0x6b}} return a, nil } -var _epochAdminSet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x31\xcb\xdb\x30\x10\x86\x77\xff\x8a\x77\x2a\x0e\x84\x78\x29\x1d\x42\x29\xa4\xd0\x4c\x85\x0e\x49\xe9\x7c\x96\x2f\xb1\xa9\x22\x99\xd3\xc9\xae\x5b\xf2\xdf\x8b\x64\xbb\xa4\xf9\xf8\xe0\xf3\xe0\x41\xf7\xdc\xa3\xf7\x74\x45\x55\x55\x38\xd1\xc0\x01\xe4\x40\x37\x1f\x9d\x42\x3d\x82\x7a\xa1\x2b\x43\x5b\x52\x08\xf7\xc2\x81\x53\xa5\xe5\x05\xca\x8d\xfe\x82\xda\xbb\x18\xa0\xfe\x27\xbb\x30\xd3\x2d\x0d\x8c\x89\xb3\xa6\x66\xd4\x51\x1c\x37\x19\x3f\xb7\x5d\x58\xef\xe8\x02\x42\xac\x55\xc8\x28\x37\xb8\x88\xbf\x65\xb9\x7a\x25\x8b\x10\xfb\xde\x4e\x49\x7f\xfc\xfa\xed\x47\xee\x1d\x5b\x76\x3c\xb0\x80\xe0\x78\x5c\x38\xe1\x91\xa4\x79\x74\x1a\xb2\x26\x5a\x4a\xce\x44\x4f\xe0\xde\x9b\x36\x1b\x6a\x36\x14\x43\x1a\x89\x27\x90\x30\x9c\x57\xdc\x98\xdc\x9a\x94\xd0\x93\x68\xba\xf5\x39\x49\xee\xcf\xbf\x2f\x03\x3b\x8d\x64\xed\xb4\x05\x59\xfb\xff\xf8\x63\x97\x4e\xd6\x91\x41\xae\x79\x78\xb0\x7f\xd5\xdf\x2c\xbe\x28\x54\xc8\x05\x32\xda\x79\x57\x66\xc9\x39\x39\x0e\x19\xdd\xe3\xfb\xb1\xfb\xf5\xe1\xfd\x06\x7f\x0a\x00\xe8\x85\x7b\x12\x2e\x43\x77\x75\x2c\x7b\x50\xd4\xb6\x3c\xcd\x1b\xda\xe0\xdd\xc1\x98\xd4\xb5\xd2\xe9\x9b\xc9\xdd\xb2\xc5\x9d\xf5\xd4\x7c\x9c\x9d\x9f\xca\xf4\xd6\x7b\x54\x4b\xad\x3a\x5a\x3f\x7e\x7e\x0a\xb0\x79\x4d\x14\x68\xe0\x17\x71\xb7\x50\xff\x26\xe1\xbd\xb8\xff\x0d\x00\x00\xff\xff\x6b\x0e\xc9\x02\x70\x02\x00\x00" +var _epochAdminSet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xcf\x8a\xdb\x30\x10\x87\xef\x7e\x8a\xdf\x31\x81\x50\x5f\x4a\x0f\xa1\x14\x52\x68\x4e\x85\x1e\x9a\xd2\xf3\x58\x9e\xc4\xa6\x8a\xc6\x8c\x46\x76\xbd\x4b\xde\x7d\x91\x12\x2f\xd9\xec\x65\x75\xd0\x41\xf3\xcd\x37\x7f\x54\xd5\x75\x8d\xdf\x34\x72\x04\x05\xd0\x59\x52\x30\x98\x20\x9a\x28\x9d\x18\xd6\x91\x41\x79\x50\x8e\x9c\x23\x1d\xdf\xa0\x92\x28\x47\x34\x12\x52\x84\xc9\x3f\x0e\xf1\x4a\x77\x34\x32\x66\x2e\x9a\x86\xd1\x24\x0d\xdc\x16\xfc\xd0\xf5\x71\xa9\xd1\x47\xc4\xd4\x98\x92\x33\x6e\x71\x54\x39\x17\xb9\x89\x91\x47\x4c\xc3\xe0\xe7\xac\xdf\xff\xfc\xf5\xb7\xe4\x4e\x1d\x07\x1e\x59\x41\x08\x3c\xdd\x38\xe5\x89\xb4\xbd\x77\x3a\xf2\x2e\x79\xca\xce\x4c\xcf\xe0\x41\x5c\x57\x0c\x0d\x3b\x4a\x31\x8f\xc4\x33\x48\x19\x41\x0c\x67\xa6\xb0\x74\x4a\x18\x48\x2d\x57\x7d\xec\xa4\xe4\x97\xeb\xc7\xc8\xc1\x12\x79\x3f\x6f\x40\xde\xbf\x1d\x7f\xea\xf3\xcb\x32\x32\x28\xb4\x77\x0b\x7b\x8d\x3e\xb1\x4a\x55\x99\x52\x88\xe4\xac\x97\xb0\x2a\x92\x43\x76\xec\x0a\xba\xc5\x9f\x7d\xff\xff\xcb\xe7\x35\x9e\x2b\x00\x18\x94\x07\x52\x5e\xc5\xfe\x14\x58\xb7\xd8\x25\xeb\x76\xce\x65\x74\x41\xf2\xb9\x86\x3f\x79\xa1\xf6\xeb\x55\xf0\x6d\x95\x17\xbb\x45\x7d\xfb\xce\x7a\xef\x65\xfa\xfe\x50\x6d\xfd\x28\x88\x34\xf2\xbb\x9e\x36\x30\xf9\x90\xe8\x52\x5d\x5e\x02\x00\x00\xff\xff\x15\x31\xd0\x69\x55\x02\x00\x00" func epochAdminSet_bonus_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1380,11 +1320,11 @@ func epochAdminSet_bonus_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/set_bonus_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0x59, 0x6d, 0x99, 0x1b, 0x9b, 0xe3, 0x7f, 0xac, 0xcc, 0x5b, 0x8e, 0xfc, 0xda, 0x10, 0xa3, 0xe1, 0x8e, 0x81, 0xf0, 0xde, 0xd9, 0x1e, 0x8c, 0x3c, 0xa0, 0x15, 0x29, 0xfc, 0x2f, 0x7f, 0xc1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x20, 0x8f, 0x73, 0xe4, 0xb3, 0x15, 0xd3, 0xb1, 0x4a, 0x58, 0xdb, 0xc7, 0xc6, 0x1a, 0xca, 0x74, 0x57, 0xfc, 0xb2, 0x4c, 0x2d, 0x98, 0xfb, 0x8c, 0xc1, 0x95, 0xfe, 0xf4, 0xf6, 0xd8, 0x29, 0xc4}} return a, nil } -var _epochAdminUpdate_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xf4\x30\x10\x86\xef\xfd\x15\x43\x0f\x4b\x7b\x09\x7c\x97\xef\x50\xd4\x65\x5d\x14\xbc\x88\x20\x7a\x1f\xd3\x71\x1b\x48\x33\x61\x32\xa1\x07\xd9\xff\x2e\x69\xb4\x05\xe7\x96\x90\x67\xde\x27\xaf\x9b\x23\x8b\xc2\xa3\xe7\xe5\x21\xb2\x9d\xe0\x53\x78\x86\x76\x3b\xb7\x4d\xa3\x82\x21\xa1\x55\xc7\xa1\x0b\xb4\x3c\xe7\xf9\xec\x73\x52\x92\x34\xc0\xdb\x53\xd0\x7f\xff\x7b\xf8\x6a\x00\x00\xa2\x50\x44\xa1\x2e\xb9\x4b\x20\x19\x00\xb3\x4e\xdd\x3d\x8b\xf0\xf2\x8e\x3e\x53\x0f\x87\x93\xb5\x9c\x83\x16\x62\x45\xca\x78\x52\xa0\x12\x76\x1a\x67\x17\xe0\x16\x2a\x6f\x92\xb2\xe0\x85\xcc\xc7\xba\xe1\xe6\xb0\x49\x99\xf5\xe1\x5d\x57\x5c\x87\xdd\xdd\x60\xb9\x7e\xad\xd4\x0b\xea\xd4\x6f\x11\x65\x8e\x47\x88\x18\x9c\xed\xda\x33\x67\x3f\x42\x60\x85\xba\x1a\x56\xb0\x7e\xfd\x27\x14\x22\xea\xd4\xf6\xbb\xe4\x2e\x68\x72\x1c\x51\xa9\xf4\xc0\xde\x93\x55\x96\xdf\x42\xfe\xf4\x53\xf3\xaf\xcd\xf5\x3b\x00\x00\xff\xff\xa4\x93\x38\x91\x66\x01\x00\x00" +var _epochAdminUpdate_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xcf\x4a\xc4\x30\x10\xc6\xef\x7d\x8a\x61\x0f\xd2\x5e\x8a\x5e\x3c\x14\x75\x29\xdd\x8a\x5e\x74\xb1\xf8\x00\x31\x1d\xb7\x81\x34\x13\x26\x13\x2a\xc8\xbe\xbb\xa4\xc1\x2d\xec\x1c\xc3\xf7\xe7\xf7\xc5\xcc\x9e\x58\xe0\xd9\xd2\xd2\x7b\xd2\x13\x7c\x33\xcd\x70\xfb\xd3\x1f\xdf\xbb\x97\xf6\x70\xf8\xe8\x87\xa1\x28\x84\x95\x0b\x4a\x8b\x21\x57\x3a\x5c\xde\xe2\xdc\xd9\x18\x04\x39\x34\xf0\xf9\xea\xe4\xee\xbe\x82\xdf\x02\x00\xc0\x33\x7a\xc5\x58\x06\x73\x72\xc8\x0d\xb4\x51\xa6\x56\x6b\x8a\x4e\x92\x64\xd5\xa4\xb3\x28\x80\xa9\xb0\x1d\x67\xe3\xe0\x11\xb2\xa1\xfe\x22\x66\x5a\x1e\x6e\x2e\x40\xf5\x2a\x78\x2a\x13\x57\xb3\x71\xd6\x2a\x3d\x0f\x42\xac\x4e\x78\x54\x32\x55\x97\xe8\x74\xfb\x3d\x78\xe5\x8c\x2e\x77\x1d\x45\x3b\x82\x23\x81\x1c\x0d\xab\x31\xcf\x0c\xd9\x0e\x5e\xc9\xb4\xab\x36\xb8\x0d\xac\x8e\x7e\x54\x82\x69\x30\x59\x8b\x5a\x88\xff\x97\x5f\x7d\x44\xee\x3f\x17\xe7\xbf\x00\x00\x00\xff\xff\x03\xa4\x2c\x1e\x52\x01\x00\x00" func epochAdminUpdate_clustersCdcBytes() ([]byte, error) { return bindataRead( @@ -1400,11 +1340,11 @@ func epochAdminUpdate_clustersCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_clusters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0x2d, 0x63, 0x8c, 0xa3, 0x90, 0x7, 0x27, 0x5f, 0x26, 0x35, 0x5c, 0xa4, 0x14, 0xfc, 0xe7, 0x15, 0xcf, 0x58, 0xf0, 0x63, 0xa9, 0x64, 0xac, 0x59, 0x2f, 0x89, 0xc9, 0x99, 0x40, 0x69, 0xf8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0x82, 0xa2, 0x21, 0x78, 0x90, 0x2d, 0xd5, 0x9d, 0xdb, 0x39, 0x32, 0x8a, 0x6b, 0x70, 0xe, 0xed, 0xcc, 0x2a, 0xd2, 0xba, 0x87, 0xd4, 0xdb, 0x78, 0xa5, 0x5a, 0x3a, 0xb7, 0xf5, 0xe9, 0x5a}} return a, nil } -var _epochAdminUpdate_dkg_phase_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\x4d\x4b\xc4\x30\x10\x86\xef\xfd\x15\x43\x0f\x4b\x7a\xc9\x49\x3c\x14\x75\x59\x3f\x11\x2f\x0b\xe2\xde\xc7\x74\xdc\x04\xda\x4c\x48\x26\xf4\x20\xfb\xdf\x25\x8d\xb6\x38\xb7\x84\xbc\xef\xf3\x64\xdc\x14\x38\x0a\x3c\x8f\x3c\x3f\x05\x36\x16\xbe\x22\x4f\xd0\xae\xe7\xb6\x69\x24\xa2\x4f\x68\xc4\xb1\x57\x9e\xe6\xa3\xc5\x44\x27\x47\x73\xea\xe1\xe3\xd5\xcb\xf5\x55\x07\xdf\x0d\x00\x40\x88\x14\x30\x92\x4a\xee\xec\x29\xf6\x80\x59\xac\xba\xe7\x18\x79\x3e\xe1\x98\xa9\x83\xdd\xc1\x18\xce\x5e\xfe\x12\x65\x46\x12\xa0\x82\x3a\x0c\x93\xf3\x70\x0b\x35\xae\x93\x70\xc4\x33\xe9\xcf\xa5\xe0\x66\xb7\x2a\xe9\xe5\xe1\x9d\x2a\xa6\xfd\x66\xae\xb1\x5c\xbf\xd7\xd4\x11\xc5\x76\x2b\xa2\xcc\x7e\x0f\x01\xbd\x33\xaa\x7d\xe0\x3c\x0e\xe0\x59\xa0\x56\xc3\x12\xac\x1f\xff\x85\x42\x40\xb1\x6d\xd7\xac\x0d\x9b\xa0\xce\x61\x40\xa1\xc7\xb7\x97\x6d\x11\xff\xd7\x52\xb9\x97\xe6\xf2\x13\x00\x00\xff\xff\x94\xd7\x29\x1e\x5c\x01\x00\x00" +var _epochAdminUpdate_dkg_phase_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\x4d\x4b\xc4\x30\x10\x86\xef\xfd\x15\xc3\x1e\xa4\xbd\x14\x0f\xe2\xa1\xa8\x4b\xd9\xd6\x0f\x3c\x58\x2c\x7a\x1f\xd3\x71\x13\x68\x33\x21\x99\x52\x41\xf6\xbf\x4b\x36\xd8\xb2\x73\x1c\xde\x8f\xe7\x35\x93\x63\x2f\xf0\x38\xf2\xd2\x3a\x56\x1a\xbe\x3d\x4f\x70\xfd\xd3\x76\x6f\x87\xe7\xba\x69\xde\xdb\xbe\xcf\x32\xf1\x68\x03\x2a\x31\x6c\x73\x4b\x4b\xa7\x31\xd0\xa7\xa1\x25\x54\xf0\xf1\x62\xe5\xf6\xa6\x80\xdf\x0c\x00\xc0\x79\x72\xe8\x29\x0f\xe6\x68\xc9\x57\x50\xcf\xa2\x6b\xa5\x78\xb6\xf2\x2f\x89\x37\x92\x00\xc5\xba\x7a\x98\x8c\x85\x7b\x48\xfa\xf2\x8b\xbd\xe7\xe5\xee\x6a\xc5\x29\xcf\x82\x87\x3c\x52\x55\x1b\x65\x89\xf1\xdd\x0b\x7b\x3c\x52\x87\xa2\x8b\x35\x3a\xde\x7e\x0f\x0e\xad\x51\xf9\xee\xc0\xf3\x38\x80\x65\x81\x14\x0d\x67\x63\x1a\x19\x92\x1d\x1c\x8a\xde\x15\xd9\x9a\xb0\x81\x95\xb3\x1b\x50\xa8\x79\x7d\xda\x16\x5f\xee\x4f\xbd\xa7\xec\xf4\x17\x00\x00\xff\xff\xe0\xf6\x16\x5e\x48\x01\x00\x00" func epochAdminUpdate_dkg_phase_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1420,11 +1360,11 @@ func epochAdminUpdate_dkg_phase_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_dkg_phase_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x82, 0xa0, 0x30, 0xce, 0xb4, 0x51, 0x7b, 0xb0, 0x89, 0x4c, 0xa1, 0x7c, 0x59, 0xaa, 0xcd, 0x18, 0xb8, 0x5d, 0x4a, 0xb, 0xca, 0x8f, 0x30, 0x58, 0xd0, 0xa4, 0x14, 0x7c, 0x48, 0x80, 0x98, 0x3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xff, 0x12, 0x5a, 0x44, 0xb8, 0xd5, 0xb8, 0x5, 0x2a, 0xd0, 0x45, 0x97, 0xa7, 0x29, 0x2a, 0x1a, 0x76, 0xdd, 0x50, 0x3e, 0x12, 0x2a, 0xfc, 0xbe, 0x96, 0x57, 0xce, 0x5, 0x83, 0xbd, 0xfa, 0x43}} return a, nil } -var _epochAdminUpdate_epoch_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x94\x4f\x4f\xdc\x3a\x14\xc5\xf7\xf3\x29\xce\x9b\x05\x9a\x91\xe6\x85\xcd\xd3\x5b\x8c\x5a\x10\x05\x4a\x11\x2d\x45\x82\xd2\xf5\x9d\xe4\x26\xb1\x48\xec\xc8\xbe\x21\x8b\x8a\xef\x5e\xd9\xce\xe4\xcf\xa8\x2a\x42\x55\xb3\x40\xc2\xe3\x73\xce\xbd\x3f\xdb\x57\xd5\x8d\xb1\x82\x8f\x95\xe9\x2e\x1b\x93\x96\xc8\xad\xa9\xb1\x1c\xfe\x5f\x2e\x16\x62\x49\x3b\x4a\x45\x19\xbd\xca\x9e\x8a\xbb\x92\x1c\x7f\x66\xbd\xc5\xb7\x6b\x2d\xff\xff\xb7\x81\x13\x7a\x52\xba\x98\xad\xb1\x17\x4f\x56\xd6\xf8\xb1\x00\x80\xc6\x72\x43\x96\x57\x4e\x15\x9a\xed\x16\xd4\x4a\xb9\xfa\x60\xac\x35\xdd\x23\x55\x2d\xaf\x71\x74\x96\xa6\xa6\xd5\xb2\x57\xf8\xaf\x62\x89\x8e\x67\x59\xad\x34\xde\x23\xca\x13\x27\xc6\x52\xc1\xc9\x2e\x18\xbc\x3b\x1a\xca\x4e\xc2\xc6\x93\x95\xef\x66\x3b\x76\x97\x90\x5f\xbe\x8f\xaa\x3b\x92\x72\x3d\x44\xf8\xef\xf4\x14\x0d\x69\x95\xae\x96\xe7\xa6\xad\x32\x68\x23\x88\xd6\x08\xc2\x08\xa7\x0f\x45\x43\x52\x2e\xd7\x8b\xc1\x41\xe5\xf8\x67\x4c\x52\xee\x91\x2a\x95\x05\x5a\xe7\x46\xe7\xaa\x68\x2d\x05\x86\x23\xae\x0d\x26\x3c\x47\x66\xd3\xce\x03\xb3\x58\xd3\x2d\x77\x88\x67\xf4\xa8\xb8\x73\xa8\x5b\x27\xd8\x31\x0a\xcb\x24\x6c\x21\x25\x69\x48\xc9\x70\x6d\x0d\x93\xef\x8f\x05\xa4\x33\x5c\xdc\x5c\x21\x04\xe1\xd9\x6b\x97\x63\xdf\x2f\x63\x03\xc7\xc7\xc7\xb8\x68\x19\x62\x82\x4d\x4e\xa9\x78\xd3\x1e\xfd\x9f\xa7\xce\x82\x3a\x8e\x56\x6d\x93\x91\x70\x70\x88\x31\x69\x80\x05\x15\x5d\x53\x63\x2d\xa7\x02\x63\x33\xb6\x09\x1e\x4a\xe5\xf0\xec\xc1\x06\x96\x50\x0e\x99\xd1\x0c\xa3\xc1\x94\x96\x33\x8b\x59\x5c\x8c\x49\xf0\xc9\x74\xc1\x57\xb7\xf5\x8e\xad\x2f\x38\x94\xb6\x8f\x8b\x7a\xe5\xb0\x63\xdf\x44\x54\x65\xc8\x58\xd8\xd6\x4a\xb3\x0b\xbb\x42\x31\x33\x7b\xa5\xd1\x95\x2a\x2d\xbd\x6f\xe0\x74\xad\xc3\x51\x6d\x26\x0b\xf7\x91\xcc\x59\x1b\x9e\xd2\x26\x10\x1a\x7f\xbd\xb8\xb9\x8a\xa8\x34\x73\xe6\x8f\x60\xc7\x43\xbc\x6b\xd3\x32\x9e\x84\x4f\x9f\xb4\xdf\x90\x73\xec\x92\x59\x29\xff\x42\xe9\xd4\x32\x39\xdf\xc0\x41\x39\xdb\x3d\xee\x83\x75\xec\x38\x37\x96\xdf\x5c\xec\x41\x70\xc6\x6f\x08\x9e\x27\x84\x80\x5f\xe1\x78\xa5\xb2\x59\x05\xb7\x5f\x1f\x2e\xb7\xf8\xce\x20\xe7\xda\x9a\x51\xb2\xe5\x91\x9b\xbf\x8d\x4d\xf0\xac\x58\x17\x12\x8e\xb9\xf6\x64\x5d\x4d\x55\x35\xbb\xca\xfd\x1d\xee\xf7\xe5\xc6\x82\xaa\x0a\x8d\x11\xd6\xa2\xa8\xea\x2f\x58\xff\xa0\x27\xfc\x55\x3e\x3c\x62\x9c\x4c\xc6\x4e\xc1\x12\x67\xc0\x17\x16\xca\x48\x68\xb5\x4e\x0e\x8f\xe0\xe0\xd1\x8f\xe3\x2e\x89\xe8\xc2\xae\xa0\x58\x0d\x83\xe2\xf7\x8a\x1e\x51\xd4\x8c\x53\xe7\x15\xd5\x9e\x7c\x94\x4d\x06\xd4\x64\x66\x80\x2b\xc7\xaf\x15\xfc\xd7\xe2\xdf\x8e\xe7\x65\x11\xff\xbe\xfc\x0c\x00\x00\xff\xff\x69\x95\xf0\xa2\xef\x06\x00\x00" +var _epochAdminUpdate_epoch_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x94\x41\x6f\xdb\x38\x10\x85\xef\xfe\x15\x6f\x73\x58\xd8\x80\x57\xd9\xc3\x62\x0f\x46\x9b\xc0\x88\xdd\x24\x48\x9b\x04\x75\x9a\x9e\xc7\xd2\x48\x22\x22\x91\x02\x39\x8a\x0a\x14\xf9\xef\x05\x49\xdb\x92\x8c\xa2\x41\x50\x54\x07\x1f\x68\xce\x7b\x6f\x3e\x92\xa3\xea\xc6\x58\xc1\x87\xca\x74\xeb\xc6\xa4\x25\x72\x6b\x6a\xfc\xfb\x6d\x7d\x7f\x77\x71\xb5\x5c\xad\x3e\xaf\x37\x9b\xc9\x44\x2c\x69\x47\xa9\x28\xa3\xa7\xd9\x53\x71\x5f\x92\xe3\x8f\xac\x17\xf8\x72\xad\xe5\xff\xff\xe6\x70\x42\x4f\x4a\x17\xa3\x35\xf6\x7a\x83\x95\x19\xbe\x4f\x00\xa0\xb1\xdc\x90\xe5\xa9\x53\x85\x66\xbb\xc0\xb2\x95\x72\x99\xa6\xa6\xd5\xb2\xdf\xe2\xbf\x8a\x25\x4a\x2c\xb3\x5a\x69\xbc\x47\xdc\x9f\x6c\x8d\xb5\xa6\x7b\xf7\xf7\x21\x72\x12\x36\x9c\x4d\x7d\xf2\x45\xdf\x49\x42\x7e\x79\x23\xc6\x52\xc1\xf7\x24\xe5\xec\x20\xed\xbf\xf3\x73\x34\xa4\x55\x3a\x3d\xb9\x30\x6d\x95\x41\x1b\x41\x94\x46\x28\x8c\x20\x5c\x2c\x47\x43\x52\x9e\xcc\x26\x07\x05\x95\xe3\xaf\xde\x49\xb9\x47\xaa\x54\x16\xb0\x5c\x18\x9d\xab\xa2\xb5\x14\x60\xf5\x5c\xe6\x18\x80\xeb\xe1\x0c\x3b\x0e\x70\x62\xa6\x5b\xee\x10\xcf\xe3\x51\x71\xe7\x50\xb7\x4e\xb0\x65\x14\x96\x49\xd8\x42\x4a\xd2\x90\x92\xe1\xda\x1a\x26\xdf\xf3\x07\xe9\x0c\xab\x9b\x4b\x04\x23\x3c\xfb\xda\x93\xbe\xef\x97\xbe\x81\xd3\xd3\x53\xac\x5a\x86\x98\x20\x93\x53\x2a\x5e\x74\x87\xfc\xf7\x5d\x47\x46\x1d\x47\xa9\xb6\xc9\x48\x38\x28\x44\x9b\x34\xc0\x82\x8a\xaa\xa9\xb1\x96\x53\x81\xb1\x19\xdb\x04\x0f\xa5\x72\x78\xf6\x60\x03\x4b\x28\x87\xcc\x68\x86\xd1\x60\x4a\xcb\x91\xc4\xc8\x2e\xda\x24\xb8\x32\x5d\xd0\xd5\x6d\xbd\x65\xeb\x03\x87\x68\x7b\xbb\x58\xaf\x1c\xb6\xec\x9b\x88\x55\x19\x32\x16\xb6\xb5\xd2\xec\xc2\xae\x10\x66\x24\xaf\x34\xba\x52\xa5\xa5\xd7\x0d\x9c\xae\x75\x38\xaa\xf9\x60\x61\x13\xc9\x2c\xdb\xf0\x66\xe6\x81\x50\xff\xef\xea\xe6\x32\xa2\xd2\xcc\x99\x3f\x82\x2d\x1f\xec\x5d\x9b\x96\xf1\x24\xbc\xfb\xa0\xfd\x86\x9c\x63\x97\x8c\xa2\xfc\x03\xa5\x53\xcb\xe4\x7c\x03\x47\x71\x16\x7b\xdc\x47\xeb\xd8\x72\x6e\x2c\xbf\x39\xec\x91\x71\xc6\x6f\x30\x1e\x3b\x04\x83\x9f\xe1\x78\x25\xd9\x28\xc1\xed\xdd\xc3\x7a\x81\xaf\x0c\x72\xae\xad\x19\x25\x5b\xee\xb9\xf9\xdb\xd8\x04\xcd\x8a\x75\x21\xe1\x98\x6b\x4f\xd6\xd5\x54\x55\xa3\xab\xbc\xbb\xc3\xbb\x7d\xb9\xb1\xa0\xaa\x42\x63\x84\xb5\x28\xaa\x76\x17\x6c\xf7\xa0\x07\xfc\x55\x7e\x78\xc4\x38\x1b\x8c\x9d\x82\x25\xce\x80\x4f\x2c\x94\x91\xd0\x74\x96\x1c\x1f\xc1\xd1\xa3\xef\xc7\x5c\x12\xd1\x85\x5d\xa1\x62\x7a\x18\x14\xbf\xae\xd8\x21\x8a\x35\xfd\xd4\x79\xa5\x6a\x4f\x3e\x96\x0d\x06\xd4\x60\x66\x80\x2b\xc7\xaf\x05\xfe\x63\xf6\x6f\xc7\xf3\x32\x89\xbf\x2f\x3f\x02\x00\x00\xff\xff\xb6\x8b\x7d\x6b\xdb\x06\x00\x00" func epochAdminUpdate_epoch_configCdcBytes() ([]byte, error) { return bindataRead( @@ -1440,11 +1380,11 @@ func epochAdminUpdate_epoch_configCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_epoch_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0xcd, 0x55, 0xcb, 0x2d, 0xe5, 0x21, 0x62, 0x30, 0xa4, 0xa3, 0x99, 0x58, 0x9e, 0xa2, 0xb1, 0x47, 0x7d, 0x26, 0xa1, 0x75, 0xd8, 0x12, 0x3f, 0xf, 0xf5, 0xc5, 0x3e, 0xf1, 0x44, 0x72, 0x60}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0xab, 0xdb, 0xbd, 0xb, 0x46, 0x8f, 0x2, 0x4c, 0xe4, 0x61, 0xc1, 0x47, 0xe7, 0x37, 0x1d, 0xa2, 0xcd, 0x8e, 0xe1, 0xd7, 0x53, 0x84, 0x58, 0x17, 0x53, 0x94, 0xc1, 0xd8, 0xb1, 0x40, 0x40}} return a, nil } -var _epochAdminUpdate_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x50\x4d\x6b\xf3\x30\x0c\xbe\xe7\x57\x88\x1c\x4a\x02\x2f\x39\xbd\xec\x50\xd6\x95\xae\x6c\xb0\xdb\x60\xdd\xee\x9a\xe3\x24\x86\xd8\x32\x8a\x4c\x0f\xa3\xff\x7d\x38\x5e\xbe\x36\x1d\x82\xa4\xf8\xf9\xd0\x63\xac\x27\x16\x78\xee\xe9\xfa\xe4\x49\x75\xd0\x30\x59\xc8\xe7\x39\xcf\x32\x61\x74\x03\x2a\x31\xe4\x8a\x3a\x30\xc6\x66\x0f\xef\x2f\x4e\xee\xfe\xff\x03\xd6\xcd\x99\x82\x13\xcd\x9b\xdd\xc5\x58\x3d\x08\x5a\x3f\x6d\x4b\xf8\xca\x00\x00\x3c\x6b\x8f\xac\x8b\xc1\xb4\x2e\x62\x30\x48\x57\x3c\x12\x33\x5d\x3f\xb0\x0f\xba\x84\xdd\x49\xa9\xc8\x38\x21\x62\xf5\x5a\x40\x47\x3f\xa7\xda\x1a\x07\x07\x48\xf0\x6a\x10\x62\x6c\x75\xf5\x39\x12\xdc\xef\x66\xdf\xd5\xf8\xf0\xa1\x88\xe7\xec\x97\xf3\x2a\x8c\xeb\xb7\x84\x7a\x45\xe9\xca\x59\x22\xd6\xf1\x08\x1e\x9d\x51\x45\x7e\xa6\xd0\xd7\xe0\x48\x20\x51\xc3\x08\x4c\xe9\xfc\x88\x82\x47\xe9\xf2\x32\xdb\x98\x54\xe4\x1a\xd3\xc2\x61\x25\x39\x7e\x2f\xc6\x1a\xd7\x9e\xc7\xbf\xab\x14\xa7\x6e\x9b\xe3\xd2\xff\xce\x72\x3d\x2d\xd6\x97\x64\xaa\xe0\x6b\x14\xfd\x57\x32\xf9\x4a\x90\x5b\x76\xfb\x0e\x00\x00\xff\xff\xe3\x9c\x76\xf0\xf7\x01\x00\x00" +var _epochAdminUpdate_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\xc1\x6a\xc3\x30\x0c\x86\xef\x79\x0a\xd1\xc3\x48\x60\x84\x1d\xc6\x0e\x65\x5d\x09\x69\xc6\x76\x5a\x59\xba\x07\xf0\x1c\x27\x31\xc4\x96\x51\x14\x3a\x18\x7d\xf7\xe1\x98\x34\xc9\xaa\x83\x91\x65\xfd\xd2\xe7\x5f\x1b\x87\xc4\xf0\xda\xe1\xb9\x70\x28\x5b\xa8\x09\x0d\x3c\xfc\x14\xc7\x8f\xfc\x2d\x3b\x1c\x3e\x8b\xb2\x8c\x22\x26\x61\x7b\x21\x59\xa3\x8d\xab\x81\x84\x4f\xb6\xf0\xf5\x6e\xf9\xe9\xf1\x1e\x48\xd5\x39\x0e\x96\x15\xad\x6a\x27\x6d\x54\xcf\xc2\xb8\xa9\x9a\xc0\x6f\x04\x00\xe0\x48\x39\x41\x2a\xee\x75\x63\xbd\x26\x1b\xb8\xcd\xa4\xf4\x23\xa6\x16\x1f\x9d\x62\x50\x9e\x29\xab\x8c\xb6\xb0\x83\xd0\x9f\x7e\x23\x11\x9e\x9f\xef\xae\xcc\xe9\xd8\xf0\x12\x7b\xf4\xed\xfc\x95\x54\xf8\x72\xc9\x48\xa2\x51\x47\xc1\x6d\x72\x1d\xed\x63\xbf\x07\x27\xac\x96\xf1\x26\xc7\xa1\xab\xc0\x22\x43\x18\x0d\xa3\x30\x38\xd1\x07\x39\x38\xc1\xed\x26\x89\x56\x70\x12\x6d\xad\x1b\xd8\x2d\x56\x8e\xe7\x49\x1b\x6d\x9b\x7c\x7c\x5d\xd8\x35\x65\x6b\xc3\xe6\xfc\xbf\x69\xcb\xdb\x8c\x3e\x3b\x92\x0e\xae\x12\xac\x6e\x57\x06\xae\x20\xb9\x44\x97\xbf\x00\x00\x00\xff\xff\x8d\xbe\x84\x8a\xe3\x01\x00\x00" func epochAdminUpdate_epoch_timing_configCdcBytes() ([]byte, error) { return bindataRead( @@ -1460,11 +1400,11 @@ func epochAdminUpdate_epoch_timing_configCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_epoch_timing_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd5, 0x60, 0x43, 0x69, 0x61, 0x53, 0x36, 0x3b, 0x34, 0x20, 0x40, 0x4b, 0xee, 0xa4, 0xd9, 0x27, 0x7a, 0x77, 0x2e, 0xc2, 0x5f, 0x9, 0x20, 0x44, 0x58, 0x2, 0x82, 0xd2, 0x40, 0xc3, 0xc9, 0xce}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0x1f, 0x6d, 0xa3, 0x37, 0xf6, 0x2c, 0x57, 0xc5, 0x90, 0xee, 0xac, 0xac, 0x3c, 0xb6, 0x96, 0x6a, 0xe5, 0x89, 0x8e, 0xd9, 0x24, 0x2e, 0x57, 0xa, 0x3a, 0x27, 0x79, 0x9a, 0x26, 0xa4, 0xb}} return a, nil } -var _epochAdminUpdate_epoch_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xc4\x30\x10\x85\xef\xfd\x15\x8f\x1e\x96\xf6\xd2\x93\x78\x28\xea\x52\x45\xc1\x9b\x20\xee\x7d\x4c\xc7\x6d\xa0\xcd\x84\x74\x42\x0f\xb2\xff\x5d\x92\x68\x17\x9c\x53\x12\xf2\xde\xf7\xe6\xd9\xc5\x4b\x50\xbc\xcc\xb2\x3d\x7b\x31\x13\xbe\x82\x2c\xa8\xf7\x7b\x5d\x55\x1a\xc8\xad\x64\xd4\x8a\x6b\x1c\x6f\x43\xcc\xc7\x93\xe5\x6d\xed\xf1\xf1\xea\xf4\xf6\xa6\xc5\x77\x05\x00\x3e\xb0\xa7\xc0\xcd\x6a\xcf\x8e\x43\x0f\x8a\x3a\x35\x8f\x12\x82\x6c\x27\x9a\x23\xb7\x38\x0c\xc6\x48\x74\xfa\xa7\x48\x33\xb3\x82\x13\x6c\x18\x17\xeb\x70\x8f\x22\xef\x56\x95\x40\x67\xee\x3e\xb3\xc1\xdd\x61\x0f\xd5\xe5\x8f\x0f\x4d\xca\xda\x5f\xb3\x77\x94\x9e\xdf\x8b\xea\x8d\x74\x6a\x77\x44\x9a\xe3\x11\x9e\x9c\x35\x4d\xfd\x24\x71\x1e\xe1\x44\x51\xac\x91\x85\x65\xf5\x5f\x28\x3c\xe9\x54\xb7\xd5\xee\x70\x0d\xd8\x45\x3f\x92\x72\x46\xe6\x16\xfe\xb7\x52\xb0\x97\xea\xf2\x13\x00\x00\xff\xff\x08\x1f\x1c\x16\x5d\x01\x00\x00" +var _epochAdminUpdate_epoch_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\xcf\x4a\xf4\x30\x14\xc5\xf7\x79\x8a\xc3\x2c\x3e\xda\x4d\xf9\x16\xe2\xa2\xa8\x43\x98\xa9\xe8\xca\xc1\xa2\xfb\x98\xc6\x69\xa0\xcd\x0d\xe9\x0d\x15\x64\xde\x5d\x92\x60\x07\xbc\xab\x10\xce\x9f\xdf\xb1\xb3\xa7\xc0\x78\x9c\x68\xed\x3c\xe9\x11\x9f\x81\x66\xfc\xff\xea\x4e\x2f\x87\x27\x79\x3c\xbe\x76\x7d\x2f\x04\x07\xe5\x16\xa5\xd9\x92\xab\x9c\x59\x65\xcc\xcf\x77\x6b\xd6\xa5\xc5\xdb\xb3\xe3\xdb\x9b\x1a\xdf\x02\x00\x7c\x30\x5e\x05\x53\x2d\xf6\xec\x4c\x68\x21\x23\x8f\x52\x6b\x8a\x8e\x7f\x25\xe9\x26\xc3\x30\xa9\x50\x0e\xb3\x75\xb8\x47\xd1\x37\x1f\x14\x02\xad\x77\xff\x36\xa0\x26\x0b\x1e\xaa\xc4\xd5\x5e\x39\x1b\x95\xbe\x7b\xa6\xa0\xce\xe6\xa4\x78\xac\xb7\xe8\x74\xfb\x3d\xbc\x72\x56\x57\xbb\x03\xc5\x69\x80\x23\x46\x89\x46\x36\x96\x99\x4b\xb1\xc3\x2b\x1e\x77\xb5\xd8\x12\xae\x60\x4d\xf4\x83\x62\x93\x2b\xf3\xdc\xbf\xf3\x4b\xed\x45\x5c\x7e\x02\x00\x00\xff\xff\x31\x03\xa1\x69\x49\x01\x00\x00" func epochAdminUpdate_epoch_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1480,11 +1420,11 @@ func epochAdminUpdate_epoch_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_epoch_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1d, 0xaf, 0x8a, 0x1f, 0xbf, 0xa6, 0x25, 0x31, 0x9e, 0xff, 0x30, 0x9, 0x34, 0xd3, 0x90, 0xa4, 0xfd, 0x12, 0x32, 0x1f, 0x2, 0x95, 0xf1, 0x49, 0xb6, 0x85, 0x28, 0xf9, 0x7f, 0x47, 0x75, 0x8d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4f, 0xb9, 0x7, 0xd8, 0xff, 0x10, 0xc6, 0x15, 0x25, 0x69, 0x5, 0x27, 0x32, 0x30, 0xf3, 0x4e, 0x2f, 0x72, 0x33, 0xda, 0xfa, 0x1f, 0x2a, 0xd7, 0x5a, 0x14, 0xb2, 0x90, 0xd4, 0x9f, 0x25, 0x7b}} return a, nil } -var _epochAdminUpdate_rewardCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\xc1\x4a\xc4\x30\x10\x86\xef\x7d\x8a\xa1\x87\xa5\xbd\xf4\x24\x1e\x8a\xba\x54\xb1\x20\x08\x16\x17\x15\x8f\x63\x3a\xb6\x81\x36\x13\xa6\x13\xaa\xc8\xbe\xbb\xb4\xd1\x2e\x3b\xb7\x84\x7c\xff\xff\x65\xec\xe8\x59\x14\xea\x81\xe7\x7b\xcf\xa6\x87\x4f\xe1\x11\xd2\xed\x9c\x26\x89\x0a\xba\x09\x8d\x5a\x76\x99\xa3\xf9\x99\x66\x94\xb6\x6a\xde\x4b\x78\xa9\xed\xd7\xe5\x45\x0e\x3f\x09\x00\x80\x17\xf2\x28\x94\x4d\xb6\x73\x24\x25\x60\xd0\x3e\xbb\x65\x11\x9e\x5f\x71\x08\x94\xc3\xae\x32\x86\x83\xd3\x7f\x62\x99\x81\x14\x68\x69\xaa\xda\xd1\x3a\xb8\x86\x88\x17\x93\xb2\x60\x47\xc5\xc7\x1a\x70\xb5\xdb\x8c\x8a\xf5\xe1\x4d\xb6\x88\x96\x27\xf1\x02\x97\xeb\x43\xa4\x1a\xd4\x3e\xdf\x2a\x96\xd9\xef\xc1\xa3\xb3\x26\x4b\xef\x38\x0c\x2d\x38\x56\x88\xd1\xb0\x82\xf1\xdf\x7f\xa5\xe0\x51\xfb\x34\x4f\xb6\x84\x93\x60\x11\x7c\x8b\x4a\xf5\xe3\xd3\xdb\x21\x78\x3f\x7c\x3f\x38\x23\x84\x13\x35\x24\x86\x9c\x62\x47\x67\x4b\x8a\x16\xc7\xe4\xf8\x1b\x00\x00\xff\xff\x36\x0b\xb8\x8f\x69\x01\x00\x00" +var _epochAdminUpdate_rewardCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\x41\x6b\xbc\x40\x0c\xc5\xef\x7e\x8a\xb0\x87\x3f\x7a\x91\xff\xa1\xf4\x20\x6d\x17\xd9\x55\x5a\x28\xac\xac\x94\xd2\x63\x3a\xa6\x3a\xa0\x93\x21\x46\xdc\x52\xf6\xbb\x97\x51\x58\xe9\x3b\x86\xf7\x5e\x7e\x89\x1d\x3c\x8b\x42\xd9\xf3\x5c\x78\x36\x1d\x7c\x09\x0f\xf0\xff\x52\x54\xa7\xc3\x73\x7e\x3c\x9e\x8b\xba\x8e\x22\x15\x74\x23\x1a\xb5\xec\x62\x47\xf3\x99\x66\x94\x26\xaf\x3e\x32\x78\x2b\xed\xe5\xfe\x2e\x81\x9f\x08\x00\xc0\x0b\x79\x14\x8a\x47\xdb\x3a\x92\x0c\xf2\x49\xbb\xdc\x18\x9e\x9c\x06\xcb\xe2\x09\xea\x49\x81\xc2\xba\xbc\x19\xac\x83\x47\x58\x03\xe9\x27\x8b\xf0\xfc\xf0\xef\x86\x93\x2e\x86\xa7\x38\x50\x65\x1b\x65\x8a\x61\x5c\x2b\x0b\xb6\x54\xa1\x76\xc9\xad\x3a\x68\xbf\x07\x8f\xce\x9a\x78\x77\xe0\xa9\x6f\xc0\xb1\xc2\x5a\x0d\x4b\x70\x3d\x72\x5c\xe3\xe0\x51\xbb\x5d\xb2\xc1\x6d\x60\xe9\xe4\x1b\x54\x2a\x5f\x4f\xef\xf5\xe4\x7d\xff\xfd\xe2\x8c\x10\x8e\x54\x91\x18\x72\x8a\x2d\xfd\x79\xc7\x4a\x71\x8d\xae\xbf\x01\x00\x00\xff\xff\x9e\x26\x8d\xcb\x56\x01\x00\x00" func epochAdminUpdate_rewardCdcBytes() ([]byte, error) { return bindataRead( @@ -1500,11 +1440,11 @@ func epochAdminUpdate_rewardCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_reward.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0x15, 0x3f, 0xbe, 0xe9, 0xbe, 0xe7, 0xe5, 0x26, 0x20, 0xbc, 0x39, 0x7e, 0xe9, 0x8e, 0x3e, 0x10, 0xb7, 0x38, 0x63, 0x11, 0xfc, 0x1, 0xbc, 0xa9, 0xb7, 0x56, 0xc3, 0x3, 0x42, 0x57, 0x9b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0x9b, 0x4a, 0x66, 0xb5, 0x60, 0xad, 0x5b, 0x16, 0x20, 0x4a, 0x74, 0x57, 0x86, 0x99, 0x3e, 0xa4, 0x6c, 0x68, 0xd7, 0x49, 0x3f, 0xef, 0xe2, 0x6, 0x7, 0xcc, 0x78, 0xf3, 0xe6, 0xfa, 0xd9}} return a, nil } -var _epochAdminUpdate_staking_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xc4\x30\x10\x85\xef\xfd\x15\x43\x0f\x4b\x7b\xc9\x49\x3c\x14\x75\xa9\xa2\xe0\x4d\x58\xdc\xfb\x98\x8e\x6d\xb0\x9d\x09\xe9\x84\x1e\x64\xff\xbb\x24\xd1\x2e\xf8\x6e\x09\x79\xef\x7d\x79\x6e\xf1\x12\x14\x5e\x66\xd9\x9e\xbd\xd8\x09\x3e\x83\x2c\x50\xef\xe7\xba\xaa\x34\x20\xaf\x68\xd5\x09\x37\x4c\xdb\x49\xf1\xcb\xf1\x78\x76\xb4\xad\x1d\xbc\xbf\xb2\xde\xde\xb4\xf0\x5d\x01\x00\xf8\x40\x1e\x03\x35\xab\x1b\x99\x42\x07\x18\x75\x6a\x1e\x25\x04\xd9\xce\x38\x47\x6a\xe1\xd0\x5b\x2b\x91\xf5\xcf\x91\x34\x93\x02\xa5\xb2\x7e\x58\x1c\xc3\x3d\x14\xbb\x59\x55\x02\x8e\x64\x3e\x72\xc0\xdd\x61\x87\x32\xf9\xe1\x43\x93\x58\xbb\x2b\xbb\xc1\x74\x7d\x2a\xae\x37\xd4\xa9\xdd\x2b\x92\x8e\x47\xf0\xc8\xce\x36\xf5\x93\xc4\x79\x00\x16\x85\x12\x0d\xd9\x58\xbe\xfe\x5b\x0a\x1e\x75\xaa\xdb\x6a\x4f\xb8\x02\x9a\xe8\x07\x54\xea\x63\x9e\x24\xef\xf0\x7f\x97\x52\x7c\xa9\x2e\x3f\x01\x00\x00\xff\xff\x86\xa7\x6b\x09\x5f\x01\x00\x00" +var _epochAdminUpdate_staking_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xcf\x4a\xc4\x30\x10\xc6\xef\x79\x8a\x61\x0f\xd2\x5e\x8a\x07\xf1\x50\xd4\x25\xec\x56\xf4\xe4\x62\xd1\xfb\x98\xc6\x36\xd8\xce\x84\x74\x42\x05\xd9\x77\x97\x34\xd8\x05\xe7\x18\xbe\x3f\xbf\x2f\x6e\xf2\x1c\x04\x1e\x47\x5e\x1a\xcf\x66\x80\xcf\xc0\x13\x5c\x7f\x37\xa7\x97\xc3\x93\x3e\x1e\x5f\x9b\xb6\x55\x4a\x02\xd2\x8c\x46\x1c\x53\x41\x76\x69\x05\xbf\x1c\xf5\xef\xce\x2e\x73\x0d\x6f\xcf\x24\xb7\x37\x25\xfc\x28\x00\x00\x1f\xac\xc7\x60\x8b\xd9\xf5\x64\x43\x0d\x3a\xca\xa0\x8d\xe1\x48\xf2\x27\x49\x37\x5a\x01\x9b\x0a\x75\x37\x39\x82\x7b\xc8\xfa\xea\x83\x43\xe0\xe5\xee\x6a\x03\xaa\x56\xc1\x43\x91\xb8\xea\x0b\x67\x85\xe9\xb9\x15\x0e\xd8\xdb\x13\xca\x50\x6e\xd1\xe9\xf6\x7b\xf0\x48\xce\x14\xbb\x03\xc7\xb1\x03\x62\x81\x1c\x0d\xab\x31\xcf\x9c\xb3\x1d\x3c\xca\xb0\x2b\xd5\x96\x70\x01\xab\xa2\xef\x50\xac\x8e\xeb\xf6\x75\xf0\xff\x0f\xc8\xc5\x67\x75\xfe\x0d\x00\x00\xff\xff\x9e\x01\x4d\x3d\x4b\x01\x00\x00" func epochAdminUpdate_staking_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1520,11 +1460,11 @@ func epochAdminUpdate_staking_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_staking_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0xc5, 0xe9, 0xd8, 0x71, 0xef, 0xa, 0x19, 0xd, 0xc0, 0x54, 0x1c, 0x22, 0x6f, 0x41, 0xf5, 0xc4, 0x93, 0x64, 0x53, 0x59, 0xf5, 0xac, 0xb0, 0x85, 0xa0, 0x42, 0x71, 0x7c, 0x86, 0x6d, 0xba}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x48, 0x2e, 0xa2, 0x66, 0x2c, 0x29, 0xe2, 0xbf, 0xdd, 0x5e, 0x40, 0xcb, 0xb9, 0xb5, 0x61, 0x12, 0x2c, 0x66, 0x4a, 0x87, 0x97, 0xc8, 0xa6, 0x8f, 0x8c, 0x46, 0x9a, 0x63, 0x86, 0xf0, 0x79, 0x95}} return a, nil } -var _epochNodeRegister_dkg_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x51\x6e\xc2\x30\x0c\x86\xdf\x7b\x0a\xab\x0f\x28\x95\x46\x0f\x50\xb1\xa1\x69\xdd\xd0\x84\x34\xa1\xb1\x0b\x98\xd4\xb4\x11\x25\x8e\x5c\x33\x1e\x26\xee\x3e\x41\xa1\x4b\xb7\xf9\x29\x91\x7f\xdb\x9f\x7f\xbb\x7d\x60\x51\x78\x69\xf9\xf8\x1c\xd8\x36\xb0\x15\xde\x43\x3a\xfc\xd3\x24\x52\xbc\x96\x1f\xb8\x69\x69\xad\xb8\x73\xbe\x8e\xa4\xe3\xc4\xa8\xa6\x5c\x2e\x22\x61\xb9\x5c\xa4\x49\xa2\x82\xbe\x43\xab\x8e\xbd\xc9\xe0\x2b\x49\x00\x00\x82\x50\x40\x21\xd3\xb9\xda\x93\x14\x80\x07\x6d\xcc\x5a\x59\xb0\xa6\x0c\x26\x8f\xd6\xf2\xc1\xeb\x20\x3f\x47\x4b\x0a\x9e\x2b\x7a\xa7\x2d\xdc\x43\x5f\x98\x77\x7d\x49\xbe\x61\x11\x3e\xce\x26\x7f\xf9\xf2\x37\xae\x2e\x6f\x92\x07\x73\x66\x2b\xfe\xd9\x2e\x12\x5d\x21\x56\xa8\x4d\x36\xcc\x3e\xc7\x7c\x0e\x01\xbd\xb3\x26\x7d\xe2\x43\x5b\x81\x67\x85\x7e\xec\x05\x0b\x84\xb6\x24\xe4\x2d\xf5\x0e\x5c\xc9\x20\xa0\x36\x69\x36\x5e\xa3\xda\xd5\x2b\x14\x75\xd6\x05\xf4\x0a\xb3\xe9\xcf\x49\xf2\x9a\xb4\x5c\x2e\xa2\xb4\xf1\x03\x5b\x71\x33\x20\xea\xf7\xcb\x88\x0e\x3f\xc9\xcc\xa6\xe3\x09\x77\xa0\x5c\xdc\x0e\x94\x47\x89\xd1\xb2\x97\x96\xa7\xe4\xf4\x1d\x00\x00\xff\xff\x4e\x62\x63\xb2\x26\x02\x00\x00" +var _epochNodeRegister_dkg_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6f\xe2\x40\x0c\x85\xef\xf9\x15\x16\x87\x55\x90\x96\x68\xcf\x11\x5b\x94\x32\x29\x45\x54\x14\x91\x5c\x7a\x1c\x26\x26\x19\x11\xc6\x23\xc7\x94\x4a\x15\xff\xbd\x82\x34\x34\xa8\xf8\x34\x92\xbf\x79\x7e\xcf\xb6\x7b\x4f\x2c\xf0\x54\xd3\x31\xf5\x64\x2a\xd8\x32\xed\xe1\xdf\x47\xba\x7a\x9d\x3e\x27\x4a\xad\xd3\x2c\x0b\x7a\xd0\x5c\xe5\x7a\x53\x63\x26\x7a\x67\x5d\xd9\xd1\x73\x95\x2e\xf3\x79\xfe\x96\x27\x8f\x2f\xe9\x9d\x5f\x6a\x31\xeb\x50\xb5\x98\x75\x40\x20\xac\x5d\xa3\x8d\x58\x72\xe1\x10\x3e\x83\x00\x00\xc0\x33\x7a\xcd\x18\x36\xb6\x74\xc8\x31\x24\x07\xa9\x12\x63\xe8\xe0\xe4\xca\x9c\xab\x46\x01\x47\x05\xae\x71\x0b\xff\xa1\xa5\xa3\x0d\x31\xd3\x71\xfc\xe7\xb7\xd5\x68\x49\xc5\xe5\x8d\xfc\x10\x9e\xbd\xc4\x77\xf2\xf4\xa0\x4c\x88\x75\x89\x2b\x2d\xd5\xf0\x3a\xf3\x5c\x93\x09\x78\xed\xac\x09\x07\x53\x3a\xd4\x05\x38\x12\x68\xc7\x5e\xec\x00\xe3\x16\x19\x9d\xc1\x36\x71\xd3\xea\x80\xd7\x52\x0d\x86\xb7\xf6\x8b\x5d\xb9\xd2\x2c\xd6\x58\xaf\x9d\xc0\x78\xf4\x73\x87\xa8\x44\x51\x8b\x59\xaf\x1d\xba\xab\xb7\xb8\x0b\xde\xd3\xfb\x5e\x40\xa3\xdf\x31\x1c\x8f\x6e\x95\xff\x82\x50\xdc\x1d\x22\xea\x35\x6e\x42\x5e\xa4\x4e\xc1\xe9\x2b\x00\x00\xff\xff\x27\xf5\x15\x16\x13\x02\x00\x00" func epochNodeRegister_dkg_participantCdcBytes() ([]byte, error) { return bindataRead( @@ -1540,11 +1480,11 @@ func epochNodeRegister_dkg_participantCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/node/register_dkg_participant.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0xdd, 0x3f, 0x15, 0x1e, 0xf, 0x7e, 0x70, 0x58, 0xec, 0x18, 0xf8, 0x58, 0xb3, 0x8e, 0x70, 0xd4, 0x98, 0xda, 0x47, 0xb5, 0xc2, 0x4b, 0x55, 0xa9, 0xa6, 0x77, 0x76, 0x6e, 0xfb, 0xdb, 0x66}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x7, 0xc8, 0x9e, 0x29, 0xfb, 0xa9, 0xfe, 0xec, 0xee, 0x49, 0x5a, 0x1c, 0x1a, 0x36, 0x13, 0x5e, 0x8, 0xf1, 0x41, 0xf3, 0x3a, 0xed, 0xf3, 0x7d, 0x78, 0x7, 0x7e, 0x64, 0x34, 0x92, 0x74}} return a, nil } -var _epochNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x56\x4b\x8f\xdb\x36\x10\xbe\xfb\x57\x0c\xf6\xb0\x90\x01\xad\x8c\x16\x45\x51\x08\x76\x02\xc3\xce\x2e\x0c\x07\xed\x66\x77\x93\x1c\x8a\x1e\x68\x72\x64\xb1\x96\x49\x95\x1c\xd5\x15\x16\xfe\xef\x05\xf5\x66\xe4\x6c\x12\xb4\xb7\xf8\x20\x8b\xf3\xf8\x66\x86\xf3\x92\x3c\xe6\xda\x10\xac\x4c\x99\x93\x9e\x34\xa7\xdb\x4c\x9f\x36\xeb\x27\xb6\xcb\xf0\x91\xd8\x41\xaa\x3d\x24\x46\x1f\xe1\x6a\xcc\xb8\x1a\xea\x3c\xe9\x03\xaa\x81\x68\x75\xf6\x24\x56\x59\x61\x09\xcd\xbb\xd5\x40\xaa\xa3\x79\x92\xeb\xed\xdd\x40\x66\xbd\xbd\xf3\xb8\x6f\x72\xcd\xd3\x01\xbf\x3a\xf7\x12\x85\xda\xcb\x5d\x86\x9e\x3f\x43\xda\xd5\x64\x32\x9b\xc1\x53\x2a\x2d\x90\x61\xca\x32\x4e\x52\x2b\xe0\x06\x19\xa1\x05\x06\x0a\x4f\xa0\xb4\x40\xb0\x64\x0a\x4e\xa0\x77\x7f\x22\xa7\x5a\x09\x55\x08\x32\x01\x4a\xb1\x16\x91\x4e\x81\xeb\x2c\x43\x4e\xda\x54\xb4\xf0\x13\x28\xc6\xb9\x2e\x14\x01\x53\x02\x98\x10\x8e\xfc\x6e\xd5\x80\x02\x69\x90\x15\xf4\x66\x0c\xaa\x2c\x2a\x5b\xd8\x06\x54\xd2\x97\x71\xdd\xbd\x79\xc0\x93\x41\x84\xc1\x04\x00\x40\x8a\x18\x1e\xc9\x48\xb5\x0f\xab\xb3\xd1\x19\xc6\xf0\x7e\xa3\xe8\x97\x9a\xa0\x90\x4e\xda\xb8\xf4\x2e\x85\x30\x68\xad\x2f\xdf\xb3\xb7\x58\xfa\x2c\x5b\x57\xc5\x88\xce\x8e\xce\xcf\x18\xde\xdf\xca\x7f\x7e\xfe\xa9\xa6\xe5\xc5\x2e\x93\x7c\x8b\xa5\x8d\xe1\xf7\xba\x00\xa3\x2d\x96\x6f\xa5\xa5\x37\x8a\x4c\xf9\xc7\x64\x0a\xcf\x93\x4a\x34\x43\x82\xa4\x2d\xa8\x07\x4c\x62\x60\x05\xa5\x81\x97\xd3\xe8\xa3\xa4\x54\x18\x76\x9a\xc2\x75\x57\x7c\xd1\x07\x56\x64\x54\x83\xe4\x06\x73\x66\x30\x60\x9c\x53\x03\xf0\x48\xda\xb0\x3d\x86\xb0\x62\x39\xdb\xc9\x4c\x92\x44\x1b\xc2\x52\x88\x2d\x96\x53\xb8\x5e\xd6\xf7\xdb\xf9\x51\x85\x88\x59\x12\x0d\x9d\x81\x85\xcb\x03\x45\xb6\x06\x8b\x76\xda\x18\x7d\x9a\x7f\x93\x87\xaf\x02\x57\xa5\x31\xcc\x1a\x90\x59\x67\xa0\x62\x4f\x3b\xeb\xee\xf7\xfa\x35\xe4\x4c\x49\x1e\x5c\xad\x74\x91\x09\x50\x9a\xa0\x36\x0a\x06\x13\x34\xa8\x38\xba\xe4\xdf\xbe\xfd\xed\x23\x54\xfa\x57\xd3\xde\xff\xd9\x0c\x1e\x70\x2f\x5d\xcb\xc1\xaf\x5a\x60\xc7\x90\xc9\xc5\x38\xae\xc7\x4d\x1f\x39\x3d\xf7\x8e\xa6\x75\xfc\x45\xa1\xe6\x9a\xef\x19\xa5\x53\x58\x2c\x40\xc9\x6c\x78\xa3\x6d\x86\x55\xa7\x00\xf3\x9b\x4b\x88\x4c\x08\x07\xfa\x80\x5c\x1b\x11\x78\xfa\x6d\x5d\x4b\x11\x8e\xe8\x75\x7d\xbb\xe7\x98\x77\xa1\xd4\x47\xa4\x97\xb4\xaa\x4a\xf7\x8e\x63\xe9\x61\x53\xf4\xef\x63\x39\x72\xf9\xb6\x2b\x7d\x3c\x4a\x22\x14\x31\xcc\x6f\x46\xc5\x16\x9d\x9a\x1a\x0a\xda\x96\xaa\xff\xfd\x0a\x99\xfa\x97\xeb\xa5\xd5\xb2\xbf\x31\x98\xdf\xf4\x97\x1d\x02\xe9\x6f\x48\xe0\x4b\x79\x5b\xb1\xbc\xed\x06\x3e\xe8\xa8\xce\xb6\xb4\xb6\xc0\xf9\xf5\xf3\x8b\xc6\xee\xab\xb9\x70\x7e\x15\x7c\xbd\x4b\xa3\x60\x3d\xeb\xd5\xa0\xb1\x69\xe0\xf9\x19\x02\xa3\x2f\x44\x5d\x3b\xe2\x5b\x38\xf7\xe1\xb7\xa1\x7f\x7e\x04\xfc\xcf\xad\xf3\xb5\x43\xa0\x5a\x20\xfd\x24\xa8\xf6\x5f\xe3\x19\xe4\x8c\xd2\xe1\x34\x68\x83\xd8\xa8\x44\xc3\xe2\x73\xbe\x38\x6e\x75\x7d\x9b\x75\xdc\xc6\x1c\x49\xe1\x4f\x95\x0b\xeb\xab\xdd\x89\xda\x8c\x76\x59\xbd\xc8\x80\x81\x45\xae\x95\x60\xa6\xec\xb6\x59\xa2\x8d\x43\x92\x06\x6c\x8e\x5c\x26\x92\x37\x1b\xcd\x0e\x67\x55\xeb\x75\xe4\x1a\xdb\x4d\x95\x1f\x80\xd9\x7a\x8b\x5d\x1a\x2e\x47\xc6\x53\xa9\x70\xc9\x39\xc1\x02\x9a\xc1\x1e\xe4\xac\x44\x13\x57\xc9\xf3\xaf\xd7\xf9\x70\xc0\x12\xa4\x1a\xec\x29\x78\x1e\xf5\xec\x00\x36\x3a\x60\x69\xdd\x8c\x0a\x3a\x8d\xd8\x61\x44\xdd\x31\x84\x94\xd9\x74\x99\xed\xb5\x91\x94\x1e\x6b\xae\x47\x0a\xe1\x84\x72\x9f\x52\xcd\xaa\xdf\x7d\xc7\xce\xe3\xd0\xfe\xe2\x1f\x34\xf5\x43\xb3\xfa\x16\x8a\xf6\x48\xdd\x87\x55\xc5\x1e\x94\x7f\x97\x43\x1f\x7a\x18\xcb\x27\xd3\xa2\x31\xd1\x8f\x8a\x0e\x3b\xaa\x18\x97\x07\xc4\x19\x30\xb3\x78\x31\x59\x3f\x7e\xaf\xc9\x12\x87\xfd\x3d\x33\x24\xb9\xcc\x99\xa2\x51\xce\xd6\xdb\xbb\x01\xfb\x3f\xe5\xcc\xb7\xd4\xa7\x6e\xbd\xbd\x8b\x06\x8c\x8b\x13\xe6\x3c\xa9\x9f\xe7\x7f\x03\x00\x00\xff\xff\x02\xb2\x4a\x46\x20\x0c\x00\x00" +var _epochNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x56\xdd\x6f\x22\x37\x10\x7f\xe7\xaf\x18\xdd\xc3\x69\x91\xc8\xd2\x56\x55\x55\xad\xe0\x4e\x14\x48\x8a\x88\xf2\x05\x77\x55\x55\xf5\xc1\xb1\x67\x59\x97\xc5\xde\xda\x43\x39\x14\xf1\xbf\x57\x5e\xb3\x5f\xd9\x4d\x9a\x56\x7d\xbb\x3c\x04\x7b\x3e\x7e\x8c\x67\x7e\x33\x83\xdc\x65\xda\x10\x4c\xcd\x31\x23\xdd\x3b\xdf\x2e\x53\x7d\x58\xcc\xd6\xec\x31\xc5\x15\xb1\xad\x54\x1b\x88\x8d\xde\xc1\x37\x5f\x16\xb3\xf9\xcd\x7a\xb1\xfe\x75\x3d\xf9\xe9\x7a\x3e\x99\xcd\x1e\xe6\xab\x55\xdd\x6b\xad\xb7\xa8\x0a\xe3\xcb\xeb\xdb\x5f\xd6\xb7\xcb\xf9\x4d\x87\xe1\x34\xdd\x5b\x42\x73\x3f\x2d\x8c\xef\xa7\x1d\x56\xb3\xe5\x55\xa1\x9f\x2d\xaf\x3a\x0c\xe6\x99\xe6\x49\x61\x32\xbf\xbb\x9d\xfe\x5c\x18\xf5\x86\x43\x58\x27\xd2\x02\x19\xa6\x2c\xe3\x24\xb5\x02\x6e\x90\x11\x5a\x60\xa0\xf0\x00\x4a\x0b\x04\x4b\x66\xcf\x09\xf4\xe3\x1f\xc8\xc9\x3b\xa1\x1a\x80\x8c\x81\x12\xf4\x26\xd2\x39\x70\x9d\xa6\xc8\x49\x9b\x5c\x36\x78\x06\xc5\x38\xd7\x7b\x45\xc0\x94\x00\x26\x84\x13\xdf\x4f\xcf\xa0\x40\x1a\x64\x0e\xbd\x68\x83\x2a\x8b\xca\xee\xed\x19\x54\xd2\x3f\xe3\xba\x9c\x34\x80\x7b\xb5\x17\x06\x3d\x00\x00\x29\x22\x58\x91\x91\x6a\x33\xc8\xef\x46\xa7\x18\xc1\xa7\x85\xa2\x1f\xbd\x40\x21\x1d\xb4\x71\x85\x9d\x08\x61\xd0\xda\xa6\x7d\xa5\x5e\xe2\xb1\xa9\xb2\x9e\x0f\x2d\x39\xdb\xb9\x38\x23\xf8\x74\x29\xbf\xfc\xf0\xbd\x97\x65\xfb\xc7\x54\xf2\x25\x1e\x6d\x04\xbf\x79\x86\x85\x4b\x3c\x5e\x4b\x4b\x73\x45\xe6\xf8\x7b\xaf\x0f\x4f\xbd\xdc\x34\x45\x82\xb8\xe0\xcf\x03\xc6\x11\xbc\x2f\xe9\x14\x7e\x66\xfb\x94\xbc\x5d\x66\x30\x63\x06\x03\xc6\x39\x45\x30\xd9\x53\x32\xf1\x19\x2a\x91\xf2\x20\x31\x8d\xc3\x3a\x1c\x8c\x5d\x26\x29\x7c\xd4\xc6\xe8\xc3\xe8\x39\xf6\x87\xc0\x31\x28\x82\xa1\x25\x6d\xd8\x06\x87\xa5\x6f\xae\xee\x97\xc0\xee\xef\xe3\x47\xc8\x98\x92\x3c\x78\x37\xd5\xfb\x54\x80\xd2\x04\x1e\x17\x0c\xc6\x68\x50\x71\x74\x95\x71\xec\x87\xdc\xff\x5d\xbf\x0a\x6d\x38\x84\x07\xdc\x48\xc7\x7d\xb8\xd1\x02\x4b\x85\x8c\xdb\x21\x36\x7b\x30\x74\xf6\xee\x8c\xa6\x08\xf8\x55\xa3\x95\x7f\xcc\x1d\xa3\xa4\x0f\xe3\x31\x28\x99\xd6\x93\x54\xa4\x5d\x95\x0e\x30\xba\xe8\x42\x64\x42\x38\xd0\x07\xe4\xda\x88\xa0\xe1\x5f\x90\x4d\x8a\x41\x4b\xee\x49\xe7\xfe\xb7\x75\x1d\xfc\x6b\x89\x5e\xf3\xca\xe9\xd7\xb8\xb6\xad\xeb\x4c\xad\xce\x6d\x3b\x72\x75\xb6\x53\xbd\xdb\x49\x22\x14\x11\x8c\x2e\x5a\xfc\x09\x0f\x92\x12\x61\xd8\x21\x28\x78\xee\x3f\x9b\xcc\xe8\x37\x93\x9b\x97\xd3\xb2\xbf\x30\x18\x5d\x54\x49\x1e\x00\xe9\x7f\x51\xb8\x0e\xc8\x54\xaa\xed\xe8\xfd\xd3\xab\x10\x77\x79\xeb\x9d\x3e\xb4\xcb\xf5\x06\x37\xf7\xc5\x1d\x79\x62\x66\x83\xf4\xf6\xd0\x9f\xa5\xa6\x38\x9d\xaa\x17\x15\xec\x7b\xa1\x41\xff\x3f\xf6\xbf\xb5\x7f\xf3\xc1\x5c\x35\x71\xbe\x56\xce\x23\x01\x32\x46\x49\xbd\x91\x8b\xe0\x17\x2a\xd6\x30\x7e\x29\x16\xa7\x0d\x72\xb3\x59\x54\xbc\x35\x94\xa2\x39\x10\x3a\xd6\x42\xb1\x6b\xb4\x69\xed\x08\xbf\x20\x80\x81\x45\xae\x95\x60\xe6\x58\x6e\x89\x58\x1b\x87\x24\x0d\xd8\x0c\xb9\x8c\x25\x3f\x6f\x0a\x5b\x1f\x33\x45\xd4\xa1\xeb\x4d\x37\x18\xbe\x05\x66\xfd\x76\xe8\x9a\x0f\x3b\xc6\x13\xa9\x70\xc2\x39\xc1\xb8\x3e\x72\x83\x8c\x1d\xd1\x44\x79\xe1\x9a\x29\x76\x71\x6c\xf1\x08\x52\xd5\x76\x00\x3c\xb5\x28\x55\x83\x0e\xb7\x78\xb4\x6e\xd4\x04\xa5\x47\xe4\x30\xc2\xf2\x3a\x80\x84\xd9\x64\x92\x6e\xb4\x91\x94\xec\xbc\xb6\x21\x1a\xc0\x01\xe5\x26\x21\xaf\xf2\xe7\x66\x60\xa7\xf6\xf3\xfe\xe4\x9f\x35\x55\xb3\x2f\xff\x41\x11\x6e\x90\xca\x1f\x28\xb9\x3a\xa8\x1a\xb8\xac\xe3\xb3\xde\xac\x3f\xe6\xdc\xf5\x67\xec\xaa\xe5\x4b\xd0\x30\x57\x74\x37\xfa\x09\x30\xb5\xd8\x59\xa9\xef\xbe\xe6\x4a\x89\xed\xe6\x8e\x19\x92\x5c\x66\x4c\x51\xab\x60\xb3\xe5\x55\x4d\xfd\xdf\x0a\xd6\xfc\x8a\xaa\x6e\xb3\xe5\x55\x58\x53\xbc\x50\x37\x7f\x3c\xf5\x4e\x7f\x07\x00\x00\xff\xff\x85\xfa\xf3\xa8\x55\x0b\x00\x00" func epochNodeRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -1560,11 +1500,11 @@ func epochNodeRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/node/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x68, 0x71, 0x8d, 0x2a, 0x43, 0x15, 0x3f, 0xea, 0xe6, 0xaf, 0x8c, 0x46, 0xaa, 0x5, 0x11, 0x3d, 0x13, 0x3d, 0x30, 0xf1, 0x3b, 0x87, 0xc6, 0xa3, 0x39, 0x96, 0xcf, 0x3d, 0x75, 0x77, 0xbb, 0x90}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x69, 0xe1, 0xcd, 0xd2, 0xf9, 0x1d, 0xb4, 0x43, 0x49, 0x62, 0x8b, 0x4e, 0x14, 0x50, 0x24, 0x67, 0xce, 0x3e, 0x97, 0x76, 0xb7, 0x2b, 0x86, 0xa4, 0x89, 0xec, 0xa9, 0xb4, 0x9b, 0xf6, 0x8a, 0xa5}} return a, nil } -var _epochNodeRegister_qc_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\xcd\x4e\x84\x40\x0c\xc7\xef\xf3\x14\x0d\x87\xcd\x90\xb8\x3c\x00\x41\x37\x06\x35\xf1\x62\xd4\x35\xde\x67\x87\xf2\x11\xd9\xe9\x58\x8a\x7b\x30\xfb\xee\x86\x0f\x47\x50\x7b\x82\xe9\xbf\xed\xef\xdf\x36\x47\x4f\x2c\x70\xd7\xd2\xe9\xd6\x93\xad\xa1\x64\x3a\x42\x14\xfe\x23\xb5\x50\xdc\xdf\xbc\x98\x43\x8b\x7b\x31\x6f\x8d\xab\x16\xd2\x75\x62\x55\x93\xb7\x7d\x27\xc8\x4f\xf9\x42\x1e\xde\x22\xa5\x84\x8d\xeb\x8c\x95\x86\x9c\x8e\xe1\x53\x29\x00\x00\xcf\xe8\x0d\xa3\xee\x9a\xca\x21\xa7\x60\x7a\xa9\xf5\x5e\x88\x4d\x85\x31\x6c\xae\xad\xa5\xde\x49\x90\x0f\xd1\xa2\x80\xa3\x02\x9f\xb1\x84\x4b\x98\x0a\x93\x6e\x2a\x49\x0e\xc4\x4c\xa7\x6c\xf3\x97\x35\x79\xa0\x62\xfc\x46\xbe\xd2\x03\x61\xfa\x8f\xd3\x85\x68\x86\x78\x34\x52\xc7\x61\xf6\x10\xbb\x1d\x78\xe3\x1a\xab\xa3\x9c\xfa\xb6\x00\x47\x02\xd3\xd8\x11\x0b\x18\x4b\x64\x74\x16\xa7\x3d\xcc\x64\xe0\x8d\xd4\x51\xbc\xb6\xf1\x6e\x5f\x49\x90\x21\xdb\xfe\xdc\x25\xa9\x50\xc2\xda\xc6\xb4\x76\x01\x2a\xfd\x76\xbe\x68\xf4\x6b\x03\x9d\xf9\x40\x9d\x6d\xe7\xd6\x17\x20\x94\xae\xcf\x93\x8c\x89\x95\xbd\xb1\xd7\x59\x9d\xbf\x02\x00\x00\xff\xff\x2b\x73\x77\x18\x24\x02\x00\x00" +var _epochNodeRegister_qc_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6b\x83\x40\x10\x85\xef\xfe\x8a\x21\x87\x62\xa0\x91\x9e\x25\x6d\xb0\x6a\x69\xa0\xa4\x49\x94\x42\x8f\x9b\xcd\x44\xa5\x66\x67\x3b\x8e\x4d\xa1\xe4\xbf\x97\x68\xb4\x91\x66\x4e\x0b\xf3\xcd\x9b\xf7\x66\x8b\xbd\x25\x16\x78\x2a\xe9\x10\x5b\xd2\x39\xec\x98\xf6\x70\xf7\x1d\x2f\x5f\xc3\xe7\x20\x8a\xd6\x71\x92\x38\x17\xd0\x3c\x4a\xd5\xa6\xc4\x44\xd4\x47\x61\xb2\x8e\x9e\x47\xf1\x22\x9d\xa7\xef\x69\xf0\xf8\x12\x5f\x99\x0a\xcb\xba\x12\xe4\x55\xd8\x0d\xac\xc2\x8e\x72\x84\x95\xa9\x94\x96\x82\x8c\x3b\x86\x1f\xc7\x01\x00\xb0\x8c\x56\x31\xba\x55\x91\x19\x64\x1f\x82\x5a\xf2\x40\x6b\xaa\x8d\xf4\xcc\xa9\x4a\x14\x30\xb4\xc5\x35\xee\xe0\x1e\x5a\xda\xdb\x10\x33\x1d\xa6\x37\xff\xfd\x7a\x0b\xda\x36\x6f\xe4\x07\xf7\x64\xc5\xbf\x12\xea\x02\x4a\x84\x58\x65\xb8\x54\x92\x8f\xfb\x9d\xa7\x9a\xcd\xc0\x2a\x53\x68\x77\x14\x52\x5d\x6e\xc1\x90\x40\xbb\xb6\xb1\x03\x8c\x3b\x64\x34\x1a\xdb\xc0\x55\xab\x03\x56\x49\x3e\x1a\x0f\xed\x7f\xea\x37\x12\x64\x98\x4e\xfe\x7e\xc1\xcb\x50\xfa\x9b\x35\x6d\xd7\xf4\xa6\xfc\x2e\xf1\x85\xd0\x39\x79\xa5\xbe\xd0\x9d\x4e\xce\x92\xb7\x20\xe4\x0f\xef\xef\x35\x8d\x41\xac\x46\xe3\xe8\x1c\x7f\x03\x00\x00\xff\xff\x74\xcf\x74\xd0\x0a\x02\x00\x00" func epochNodeRegister_qc_voterCdcBytes() ([]byte, error) { return bindataRead( @@ -1580,11 +1520,11 @@ func epochNodeRegister_qc_voterCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/node/register_qc_voter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe3, 0x85, 0x38, 0x83, 0x3f, 0x29, 0xc8, 0x67, 0xf8, 0x39, 0x18, 0x90, 0x30, 0x95, 0xd7, 0xfb, 0xcb, 0x28, 0xff, 0x42, 0xeb, 0x66, 0x30, 0x6, 0x8b, 0x32, 0xc, 0x6a, 0x41, 0x3f, 0x8d, 0xc0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfe, 0xd1, 0x80, 0x46, 0x4e, 0x2a, 0x21, 0x39, 0x43, 0x6e, 0x28, 0xcd, 0x8c, 0x59, 0x5e, 0xef, 0x96, 0x18, 0xea, 0xa7, 0x24, 0x97, 0x61, 0x3, 0xac, 0x3c, 0xbb, 0x81, 0x38, 0x1d, 0x8, 0xea}} return a, nil } -var _epochScriptsGet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\xdd\x32\x2b\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\xe6\xe8\xa5\xa7\x96\x38\xe5\xe7\x95\x16\x87\xe4\x67\xa7\xe6\x15\x6b\x68\x72\xd5\x72\x01\x02\x00\x00\xff\xff\x76\x1b\x5a\x11\x6c\x00\x00\x00" +var _epochScriptsGet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x18\xa1\x97\x9e\x5a\xe2\x94\x9f\x57\x5a\x1c\x92\x9f\x9d\x9a\x57\xac\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x22\xca\x00\x28\x66\x00\x00\x00" func epochScriptsGet_bonus_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1600,11 +1540,11 @@ func epochScriptsGet_bonus_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_bonus_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdf, 0xb7, 0x12, 0xf4, 0xd5, 0x3, 0x5c, 0xc, 0xe2, 0x8f, 0xba, 0x1, 0xf6, 0xeb, 0xf5, 0x5e, 0x78, 0xa2, 0xa7, 0x95, 0x60, 0x32, 0x30, 0x36, 0x18, 0xe8, 0xde, 0xb7, 0x4d, 0xbd, 0xd3, 0xa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2d, 0x14, 0x74, 0x6e, 0xc9, 0x89, 0xa4, 0x34, 0xe3, 0xa3, 0x76, 0x4, 0x44, 0x1d, 0xf1, 0x42, 0xfe, 0xa3, 0x87, 0x9c, 0xb, 0x97, 0x1e, 0x37, 0x84, 0xa1, 0x4d, 0xdf, 0x61, 0xe1, 0xf2, 0x1b}} return a, nil } -var _epochScriptsGet_config_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x10\x7a\xf4\x9c\xf3\xf3\xd2\x32\xd3\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x90\x64\xd3\x53\x4b\x20\x0a\x7c\x53\x4b\x12\x53\x12\x4b\x12\x35\x34\xb9\x6a\xb9\x00\x01\x00\x00\xff\xff\x49\x98\x62\x2b\x79\x00\x00\x00" +var _epochScriptsGet_config_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x42\x28\xd7\x73\xce\xcf\x4b\xcb\x4c\x57\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x92\x4d\x4f\x2d\x81\x28\xf0\x4d\x2d\x49\x4c\x49\x2c\x49\xd4\xd0\xe4\xaa\x05\x04\x00\x00\xff\xff\x9e\xe7\x40\xf1\x73\x00\x00\x00" func epochScriptsGet_config_metadataCdcBytes() ([]byte, error) { return bindataRead( @@ -1620,11 +1560,11 @@ func epochScriptsGet_config_metadataCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_config_metadata.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdc, 0x29, 0xb6, 0xd6, 0xa0, 0xb4, 0x99, 0xd, 0x4b, 0x96, 0x98, 0x11, 0xa1, 0x5d, 0x26, 0xa8, 0xa1, 0xfe, 0x9c, 0xbd, 0x5f, 0xbc, 0xac, 0xc5, 0x8, 0xcc, 0xe7, 0xf2, 0x6d, 0xd2, 0x51, 0xb7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xec, 0xb9, 0x3f, 0x2, 0xdb, 0xb7, 0x87, 0x6f, 0x92, 0x1e, 0x7e, 0x5d, 0xec, 0xa3, 0x9, 0x4a, 0xe, 0x1d, 0xa3, 0xaf, 0xd7, 0xc9, 0x3, 0xc9, 0xd3, 0x74, 0xe0, 0xee, 0xa0, 0xff, 0x9f, 0xd9}} return a, nil } -var _epochScriptsGet_create_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xb1\xca\x83\x40\x10\x84\xfb\x7b\x8a\xc1\x4a\x1b\x1f\xc0\xd6\xff\x0f\xa4\x0c\x29\xc5\x62\xb9\xac\x89\xb0\xde\xca\xde\x4a\x08\x21\xef\x1e\x08\x62\x4c\x37\x33\x7c\xc3\xcc\x38\xcd\x6a\x8e\x83\xe8\xfd\x7f\xd6\x78\xc3\x60\x3a\xa1\xd8\x7c\x11\x76\x44\x2b\x4b\x76\xb6\x53\xbb\xa3\xb6\xac\x08\x81\x62\xe4\x9c\x4b\x12\xa9\x30\x2c\x09\x13\x8d\xa9\x24\x33\x7a\x34\xe8\xce\x6e\x63\xba\xf6\x55\x83\xee\xa7\x57\xaf\xaa\xc7\x33\x00\x80\xb1\x2f\x96\xbe\x8f\xea\x68\x4c\xce\xad\x8a\x70\x74\xb5\x15\xcf\x65\xd2\x0b\x1f\xff\x72\x83\xcf\x42\x15\x5e\xe1\x1d\x00\x00\xff\xff\xb5\xb7\x78\xee\xcd\x00\x00\x00" +var _epochScriptsGet_create_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x31\x0f\x82\x30\x14\x04\xe0\xbd\xbf\xe2\x46\x58\x88\x33\x9b\x29\x18\x9d\x14\x19\x09\x43\xc5\xa2\x24\xa5\x8f\xbc\xbe\x46\x8d\xf1\xbf\x9b\x18\x88\xba\xdd\xf0\x5d\xee\x86\x71\x22\x16\x6c\x1c\xdd\xca\x89\xba\x2b\x7a\xa6\x11\xab\x7b\x79\xd8\xeb\xed\xba\x28\x8e\x65\x5d\xab\x1f\xa4\x5d\x0c\x62\xb9\xd2\x0b\xac\xf4\xa2\xd4\x14\x4f\xe8\xa3\xc7\x68\x06\x9f\x18\x66\xf3\xc8\xd1\xd4\xc2\x83\xbf\xb4\x69\x8e\xe6\xaf\x9f\xcd\xa9\xc5\x53\x29\x00\x60\x2b\x91\xfd\xf7\x49\xd6\xb1\x35\x62\x35\x39\x67\x3b\x21\x9e\x7d\x48\x3c\x9d\xed\xae\x08\x39\x3e\x13\xa9\x52\xaf\x77\x00\x00\x00\xff\xff\xd4\x3f\xa4\x4f\xc5\x00\x00\x00" func epochScriptsGet_create_clustersCdcBytes() ([]byte, error) { return bindataRead( @@ -1640,11 +1580,11 @@ func epochScriptsGet_create_clustersCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_create_clusters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x53, 0x30, 0xb5, 0x66, 0xa1, 0x17, 0x72, 0xdf, 0xf5, 0x1a, 0x82, 0x7a, 0xa9, 0x3d, 0x91, 0xef, 0xbf, 0x11, 0x15, 0x6e, 0xfd, 0x84, 0x7, 0x85, 0xde, 0xd8, 0x9, 0x31, 0x4d, 0x21, 0x64, 0x35}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5f, 0xb5, 0xe4, 0x8c, 0xf5, 0x14, 0xb0, 0x64, 0xce, 0x90, 0x7, 0xc4, 0x7a, 0xdd, 0x38, 0xe8, 0x37, 0xea, 0x59, 0xe3, 0x75, 0x4d, 0x2e, 0xb0, 0x71, 0xc2, 0x5b, 0xf5, 0x92, 0xb5, 0x6d, 0xb1}} return a, nil } -var _epochScriptsGet_current_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd2\xd7\x57\x08\x4a\x2d\x29\x2d\xca\x2b\x56\x28\xc9\x48\x55\x28\xcb\x4c\x2d\x57\xc8\x4f\x03\xb3\x93\x4b\x8b\x8a\x52\xf3\x4a\x14\x92\x72\xf2\x93\xb3\xb9\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\x3d\xf3\x4a\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x72\x52\x4b\x60\xfa\x9c\x40\xda\x14\x6c\x15\xd2\x53\x4b\x9c\x91\x44\x34\x34\xc1\x0a\x8b\xc0\x96\xa2\xa8\xd5\x03\x59\xce\x55\xcb\x05\x08\x00\x00\xff\xff\x31\x43\x70\x8e\x93\x00\x00\x00" +var _epochScriptsGet_current_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd2\xd7\x57\x08\x4a\x2d\x29\x2d\xca\x2b\x56\x28\xc9\x48\x55\x28\xcb\x4c\x2d\x57\xc8\x4f\x03\xb3\x93\x4b\x8b\x8a\x52\xf3\x4a\x14\x92\x72\xf2\x93\xb3\xb9\xb8\x0a\x4a\x93\x14\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\x3d\xf3\x4a\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x72\x52\x4b\x60\xea\x9d\x40\xca\x15\x6c\x15\xd2\x53\x4b\x9c\x91\x44\x34\x34\xc1\x0a\x8b\xc0\x96\xa1\xa8\xd5\x03\x59\xca\x55\x0b\x08\x00\x00\xff\xff\xc5\x9c\xf3\xf5\x8a\x00\x00\x00" func epochScriptsGet_current_viewCdcBytes() ([]byte, error) { return bindataRead( @@ -1660,11 +1600,11 @@ func epochScriptsGet_current_viewCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_current_view.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xca, 0x73, 0xd7, 0x7e, 0xbb, 0xc1, 0xf1, 0x48, 0x38, 0xc7, 0x46, 0x64, 0xbd, 0x3, 0x96, 0xc3, 0x96, 0xa1, 0x6c, 0x17, 0x53, 0x1e, 0x2e, 0x17, 0x5e, 0x74, 0x20, 0x69, 0x5, 0x49, 0x81, 0x46}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0xe7, 0xfb, 0x19, 0x77, 0x21, 0xb8, 0x52, 0x37, 0x51, 0xd3, 0x1, 0xe3, 0x74, 0xbc, 0x18, 0x86, 0x2d, 0x47, 0xe3, 0x12, 0xb4, 0x61, 0x2a, 0xbd, 0x26, 0xf9, 0xb3, 0x34, 0x69, 0xa8, 0xe}} return a, nil } -var _epochScriptsGet_epoch_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\x3d\xf3\x4a\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\xe6\xe8\x25\x97\x16\x15\xa5\xe6\x95\x80\x39\xce\xf9\xa5\x79\x25\xa9\x45\x5c\xb5\x80\x00\x00\x00\xff\xff\xc6\x93\x6d\x15\x6e\x00\x00\x00" +var _epochScriptsGet_epoch_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\xf5\xcc\x2b\x31\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x18\xa1\x97\x5c\x5a\x54\x94\x9a\x57\x02\xe6\x38\xe7\x97\xe6\x95\xa4\x16\x71\xd5\x02\x02\x00\x00\xff\xff\x59\x76\xbe\x5f\x69\x00\x00\x00" func epochScriptsGet_epoch_counterCdcBytes() ([]byte, error) { return bindataRead( @@ -1680,11 +1620,11 @@ func epochScriptsGet_epoch_counterCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_epoch_counter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x83, 0x42, 0x10, 0xa0, 0xad, 0xb7, 0x47, 0xa, 0x61, 0x20, 0xe3, 0xe2, 0xef, 0x4c, 0x70, 0xe6, 0x10, 0xef, 0x4d, 0x43, 0x5e, 0xcb, 0xa9, 0x60, 0x2d, 0x66, 0x4, 0xf2, 0xee, 0x88, 0xd2, 0x26}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0x29, 0xfd, 0x4d, 0x49, 0x4c, 0x4e, 0x71, 0x61, 0x2b, 0xc3, 0xb5, 0x76, 0xb2, 0x70, 0x62, 0x3d, 0xda, 0xef, 0x24, 0x72, 0x5e, 0x7c, 0xfd, 0xab, 0x4d, 0x55, 0x13, 0x2e, 0xc, 0x79, 0x62}} return a, nil } -var _epochScriptsGet_epoch_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x52\x41\x92\xce\xf9\xa5\x79\x25\xa9\x45\x56\x0a\xa1\x9e\x79\x25\x66\x26\x9a\x56\x08\x73\xf4\xc0\xa4\x6f\x6a\x49\x62\x4a\x62\x49\xa2\x42\x35\x97\x82\x82\x82\x42\x51\x6a\x49\x69\x51\x1e\x92\xa2\xf4\xd4\x12\x14\x75\x28\xc6\x6a\x2a\x72\xd5\x02\x02\x00\x00\xff\xff\xc7\x41\x13\xa2\x9f\x00\x00\x00" +var _epochScriptsGet_epoch_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x05\xa9\x73\xce\x2f\xcd\x2b\x49\x2d\xb2\x52\x08\xf5\xcc\x2b\x31\x33\xd1\xb4\x42\x18\xa1\x07\x26\x7d\x53\x4b\x12\x53\x12\x4b\x12\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x90\x14\xa5\xa7\x96\xa0\xa8\x43\x31\x56\x53\x91\xab\x16\x10\x00\x00\xff\xff\xea\x2c\x4c\x69\x9a\x00\x00\x00" func epochScriptsGet_epoch_metadataCdcBytes() ([]byte, error) { return bindataRead( @@ -1700,11 +1640,11 @@ func epochScriptsGet_epoch_metadataCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_epoch_metadata.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xf7, 0x5b, 0xef, 0xc4, 0x5f, 0xa4, 0xcf, 0xc5, 0x9e, 0x16, 0x2e, 0xa9, 0x19, 0x76, 0x2b, 0x9f, 0x9, 0xdf, 0x16, 0x2c, 0xf3, 0x59, 0x48, 0x8c, 0x36, 0x26, 0xc, 0x9c, 0xd6, 0xb8, 0x12}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0xd2, 0xe0, 0xe9, 0xc1, 0x42, 0xed, 0x3a, 0x65, 0x49, 0xb3, 0xf3, 0xb4, 0x9d, 0xf0, 0x50, 0xe, 0xeb, 0x52, 0xd, 0x4c, 0x83, 0xb5, 0x75, 0x83, 0xd3, 0x28, 0xb6, 0x8b, 0x5b, 0x57, 0xd}} return a, nil } -var _epochScriptsGet_epoch_phaseCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xcc\xb1\x0a\xc2\x40\x0c\x06\xe0\xfd\x9e\xe2\xa7\x53\xbb\x74\x16\x77\x05\x37\x17\xdd\xc3\x91\xd2\x42\x2e\x29\xb9\x84\x0e\xe2\xbb\x0b\x0e\x3a\x7e\xcb\xb7\xb5\xdd\x3c\x70\x15\x3b\x2e\xbb\xd5\x15\x8b\x5b\xc3\xf0\xf3\x50\x0a\xd5\xca\xbd\x8f\x24\x32\x61\x49\x45\xa3\x4d\xc7\xe9\x8c\xc7\x4d\xe3\x84\x57\x01\x00\xe7\x48\xd7\x7f\x33\xd7\x74\x67\x8d\x2f\xee\x2b\x75\x9e\x9d\x8e\x27\x49\x72\x79\x7f\x02\x00\x00\xff\xff\xd2\xb5\x20\xc1\x74\x00\x00\x00" +var _epochScriptsGet_epoch_phaseCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\xf5\xcc\x2b\xb1\x50\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x98\xa0\x97\x5c\x5a\x54\x94\x9a\x57\x02\xe6\x04\x64\x24\x16\xa7\xea\x15\x25\x96\x87\x25\xe6\x94\xa6\x72\xd5\x02\x02\x00\x00\xff\xff\x8a\x47\xc8\x84\x6f\x00\x00\x00" func epochScriptsGet_epoch_phaseCdcBytes() ([]byte, error) { return bindataRead( @@ -1720,11 +1660,11 @@ func epochScriptsGet_epoch_phaseCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_epoch_phase.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8e, 0xc2, 0x92, 0xc6, 0x5c, 0xd7, 0x19, 0x5d, 0xed, 0x1d, 0xe8, 0xfc, 0x5a, 0xfa, 0x53, 0x75, 0x8a, 0x15, 0x52, 0x13, 0xdf, 0x55, 0xae, 0x71, 0x7e, 0xcc, 0xc, 0x81, 0x95, 0xdc, 0xc7, 0xc5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0xa7, 0x17, 0x55, 0x9f, 0xf4, 0x58, 0xc4, 0xc6, 0x16, 0x8b, 0xe6, 0xd4, 0x55, 0x28, 0x7f, 0x32, 0x29, 0x66, 0x4e, 0x75, 0x64, 0xec, 0x24, 0x54, 0xf5, 0x6b, 0xf8, 0x1a, 0xfa, 0xbe, 0x74}} return a, nil } -var _epochScriptsGet_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x10\x7a\xf4\xc0\x64\x48\x66\x6e\x66\x5e\xba\x73\x7e\x5e\x5a\x66\xba\x42\x35\x97\x82\x82\x82\x42\x51\x6a\x49\x69\x51\x1e\x92\xc2\xf4\xd4\x12\x0c\xb5\x1a\x9a\x5c\xb5\x80\x00\x00\x00\xff\xff\xd4\x6d\x92\x2d\x86\x00\x00\x00" +var _epochScriptsGet_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x42\x28\xd7\x03\x93\x21\x99\xb9\x99\x79\xe9\xce\xf9\x79\x69\x99\xe9\x0a\xd5\x5c\x0a\x0a\x0a\x0a\x45\xa9\x25\xa5\x45\x79\x48\x0a\xd3\x53\x4b\x30\xd4\x6a\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x36\x40\x3a\x4b\x81\x00\x00\x00" func epochScriptsGet_epoch_timing_configCdcBytes() ([]byte, error) { return bindataRead( @@ -1740,11 +1680,11 @@ func epochScriptsGet_epoch_timing_configCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_epoch_timing_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0x3f, 0xce, 0x1b, 0x5d, 0x2, 0xa1, 0xda, 0x74, 0x91, 0x1e, 0x7f, 0x30, 0x80, 0x4b, 0xa1, 0xc5, 0xbc, 0x78, 0x58, 0xe2, 0x85, 0xa3, 0x36, 0x62, 0x7a, 0x19, 0xcc, 0x30, 0xc4, 0x9e, 0x8c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe5, 0xbe, 0x93, 0x2d, 0x1, 0xa9, 0x63, 0x45, 0x26, 0x2b, 0xa4, 0x83, 0x3f, 0xeb, 0x95, 0x61, 0x2f, 0x3d, 0x1a, 0xbe, 0x7e, 0x6a, 0x7d, 0xf7, 0x18, 0x6f, 0x75, 0xf3, 0x7, 0x42, 0x69, 0xdd}} return a, nil } -var _epochScriptsGet_proposed_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\x3d\xf3\x4a\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\xe6\xe8\x15\x14\xe5\x17\xe4\x17\xa7\xa6\x80\x79\xce\xf9\xa5\x79\x25\xa9\x45\x1a\x9a\x5c\xb5\x80\x00\x00\x00\xff\xff\x47\x3a\xad\xbf\x71\x00\x00\x00" +var _epochScriptsGet_proposed_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\xf5\xcc\x2b\x31\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x18\xa1\x57\x50\x94\x5f\x90\x5f\x9c\x9a\x02\xe6\x39\xe7\x97\xe6\x95\xa4\x16\x69\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x07\x41\x31\x75\x6c\x00\x00\x00" func epochScriptsGet_proposed_counterCdcBytes() ([]byte, error) { return bindataRead( @@ -1760,11 +1700,11 @@ func epochScriptsGet_proposed_counterCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_proposed_counter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0xc4, 0xf8, 0x7c, 0xf, 0x29, 0xc7, 0x76, 0xb4, 0x12, 0x90, 0xa3, 0x44, 0x2d, 0x55, 0x7e, 0x6f, 0x2e, 0x42, 0xac, 0x6e, 0x97, 0xb6, 0x9d, 0xf3, 0x7f, 0x88, 0xf4, 0x20, 0x92, 0xed, 0x42}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa0, 0xaf, 0x64, 0x22, 0x79, 0x9f, 0xc5, 0xe9, 0xfa, 0xc, 0xf4, 0x32, 0x2c, 0xa2, 0x14, 0xcd, 0x55, 0xe1, 0xd4, 0x57, 0x3f, 0x7e, 0x2c, 0xc6, 0x89, 0x89, 0xe, 0x1c, 0xf6, 0x9e, 0xd6, 0x2d}} return a, nil } -var _epochScriptsGet_randomizeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x12\x8b\x8a\x12\x2b\xad\x14\xa2\x83\x4b\x8a\x32\xf3\xd2\x63\x35\x11\x4c\x85\x6a\x2e\x05\x05\x05\x85\xa2\xd4\x92\xd2\xa2\x3c\x84\xc1\x7a\x45\x89\x79\x29\xf9\xb9\x99\x55\xa9\x10\xbd\x9a\x5c\xb5\x5c\x80\x00\x00\x00\xff\xff\x71\xcc\x71\x38\x7d\x00\x00\x00" +var _epochScriptsGet_randomizeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x2c\x2a\x4a\xac\xb4\x52\x88\x0e\x2e\x29\xca\xcc\x4b\x8f\xd5\x44\x30\x15\xaa\xb9\xb8\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\x86\xea\x15\x25\xe6\xa5\xe4\xe7\x66\x56\xa5\x42\x34\x6b\x72\x71\xd5\x02\x02\x00\x00\xff\xff\xa0\xd2\x7c\x11\x79\x00\x00\x00" func epochScriptsGet_randomizeCdcBytes() ([]byte, error) { return bindataRead( @@ -1780,11 +1720,11 @@ func epochScriptsGet_randomizeCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_randomize.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0x12, 0xd9, 0x65, 0x36, 0xf, 0xe4, 0x3b, 0x80, 0x3b, 0xdd, 0x29, 0x6b, 0xfd, 0x50, 0x6a, 0x2e, 0xa5, 0xa1, 0x70, 0x41, 0xc2, 0x79, 0xec, 0xfb, 0x14, 0x51, 0xc, 0xe8, 0xb8, 0xcb, 0xb4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x15, 0x1a, 0x8d, 0x4d, 0xe8, 0x67, 0x7a, 0x7b, 0xc6, 0xeb, 0x95, 0xae, 0xc7, 0x7a, 0x1a, 0x50, 0xb8, 0x2b, 0xa3, 0xb1, 0x4c, 0xa0, 0x83, 0xea, 0xa9, 0x8e, 0xc1, 0x5b, 0x3d, 0x41, 0x8a, 0x79}} return a, nil } -var _epochScriptsGet_target_end_time_for_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8f\x31\x8b\xc3\x30\x0c\x85\x77\xff\x8a\x47\xa6\x78\xb9\xe9\xb8\xe1\xa0\x5d\x42\x03\xdd\xd3\x1f\x60\x5c\x25\x35\xd8\x72\x50\x6c\x3a\x94\xfc\xf7\x12\x27\x69\xa3\x41\x3c\xa1\xf7\xe9\x21\x17\xc6\x28\x09\xad\x8f\xcf\xcb\x18\xed\x03\xbd\xc4\x80\xea\x33\x57\x4a\x19\x6b\x69\x9a\x6a\xe3\xbd\x46\x9f\x19\xc1\x38\xae\x93\x91\x81\x52\xb1\xfc\xe3\x76\xe5\xf4\xf7\xab\x77\x81\x97\x02\x80\x51\x68\x53\x4b\x1d\x00\x9c\x4f\xdf\xc0\x1f\x9b\x45\x88\xd7\x4d\x13\x33\x27\x92\x02\xcd\xa5\x7b\x4a\xb0\x91\x7b\x37\xe0\x08\xed\xa7\x3a\x17\x1c\x0f\x4d\x31\xd4\xba\x10\x42\x29\x0b\x6f\xd0\x62\xec\xd6\x64\xbe\x77\x2e\x50\x1b\xa5\x80\xc7\x07\xb4\x9a\xdf\x01\x00\x00\xff\xff\x48\xb4\xb0\xb3\x07\x01\x00\x00" +var _epochScriptsGet_target_end_time_for_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8f\x4d\x0a\xc2\x30\x10\x85\xf7\x39\xc5\x5b\xb6\x1b\x71\x21\x2e\x04\x05\xe9\x0f\xba\x52\x6c\x3d\x40\xad\x69\x0d\x34\x93\x30\x24\x28\x48\xef\x2e\x4d\x5b\x6c\x16\xe1\xc1\x7c\xdf\x3c\x46\x69\x6b\xd8\x21\xef\xcc\x3b\xb3\xa6\x7e\xa1\x61\xa3\xb1\xfe\x64\xd7\x4b\x72\x3a\xa6\xe9\x2d\x2b\x0a\x21\xac\x7f\xa0\xf1\x04\x5d\x29\x8a\x5c\xc5\xad\x74\x81\xde\xe1\x7e\x26\xb7\xdd\xc4\x73\xc0\x57\x00\x80\x65\x39\xa5\xe1\x2d\x04\x1c\xf6\xff\xae\x55\xed\x99\x25\x8d\x93\xc4\x78\x72\x92\x83\xd4\x87\xbf\x93\x0e\xb5\xa1\x46\xb5\x58\x4a\xf3\xaa\x52\x69\x45\x6d\x12\x80\x28\x0e\x06\x4b\xe7\x99\x26\x69\x00\xcb\xb1\x99\x9e\xa5\xd2\x32\x37\x1c\xc4\xe5\x01\xb1\xe8\x7f\x01\x00\x00\xff\xff\x4c\x97\xdf\x07\x02\x01\x00\x00" func epochScriptsGet_target_end_time_for_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1800,11 +1740,11 @@ func epochScriptsGet_target_end_time_for_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_target_end_time_for_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x2c, 0x9a, 0x3f, 0xf9, 0x63, 0x6b, 0x6, 0x62, 0x77, 0x4b, 0xf8, 0x7c, 0xfa, 0xc0, 0x87, 0x40, 0xcb, 0x6c, 0x11, 0x6, 0x75, 0xc3, 0x10, 0x56, 0xdc, 0xf7, 0x79, 0x9, 0xa4, 0x6f, 0xd4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0xdd, 0x7, 0xc, 0x15, 0x68, 0xe9, 0x1, 0x77, 0x80, 0xe2, 0x2f, 0x44, 0xa8, 0xc, 0xf6, 0x4f, 0x60, 0x38, 0xab, 0xbe, 0x6e, 0x2c, 0xc4, 0x97, 0x55, 0x49, 0xad, 0x21, 0x6d, 0xb4, 0xa0}} return a, nil } -var _flowtokenBurn_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x3d\x73\x9c\x30\x10\xed\xf9\x15\x2f\x57\x78\xa0\x30\x34\x99\x14\x37\x97\x38\xb6\x67\x5c\xa6\x72\x9c\x5a\xc0\xde\xa1\x09\x48\xcc\x4a\x04\x7b\x3c\xfe\xef\x19\xad\x40\x86\xe2\xae\x38\x40\xda\x7d\x1f\xfb\xb6\xaa\xf0\xdc\x69\x07\xcf\xca\x38\xd5\x78\x6d\x0d\xb4\x83\x82\xa7\x61\xec\x95\x27\x9c\x2d\x87\xcf\xcd\xbd\xef\x94\xcf\xaa\x0a\x8d\x9d\xfa\x16\x35\x61\x72\xd4\xa2\x7e\x83\xef\x08\xaa\x1d\xb4\x81\x6a\x1a\x3b\x19\x0f\x6f\x51\x4f\x6c\xe0\xed\x5f\x32\x2e\x34\x9d\xd9\x0e\xa1\x50\x33\x9c\xb7\x4c\x2d\x5e\xd4\xd4\x07\xbc\x4c\xb4\x90\x34\x68\x73\x81\x1a\x04\x62\x5e\x59\x14\x46\xc5\x6a\x20\x4f\x1c\x70\x03\xd9\x46\x55\x96\xe9\x61\xb4\xec\xf1\x34\x99\x8b\xae\x7b\x7a\x0e\x94\x91\xee\xb0\x3b\x3b\xa4\xca\xde\xce\xbb\xaa\xf5\xfb\x90\x65\x1b\xe4\x3c\x0a\x39\xe2\xf7\x93\x7e\xfd\xf6\xb5\xc0\x7b\x96\x01\x40\x55\x45\xe9\x60\x72\x76\xe2\x86\x64\x30\xe8\x6c\xdf\xba\xa8\x4e\x4c\xc7\x53\xc5\x84\x9a\x82\xad\x60\x8f\x5a\x41\xe8\xc9\xe3\x5f\x80\x38\xe2\xe7\x4e\x62\x19\x67\x92\x8a\x64\xa8\x47\xdc\x24\x85\xe5\x7d\x38\xd1\xce\xb3\xf2\x96\x63\xe1\xc8\x34\x2a\xa6\xdc\xe9\x8b\x21\x3e\x42\x4d\xbe\xcb\x1f\x2c\xb3\x9d\x5f\x54\x3f\x51\x81\x9b\xfb\x18\x4b\xb2\xb0\xd8\xf8\xa3\x7d\xd7\xb2\x9a\x57\xc5\x6b\x46\x4b\x98\x22\x11\xda\x48\x60\xea\x42\xa9\xd5\x51\x7f\x2e\xe3\xed\xe9\x16\x91\xb7\x5c\x8a\xca\x5a\x98\x4f\xa2\x62\x6f\x6e\xa5\x2b\xb6\x86\xc4\xf1\x8f\x3c\x50\x1f\x51\x2d\x20\xd5\x79\xbd\x97\xeb\xe2\x4b\xa2\x0e\xbf\x72\x5e\x80\x52\x42\xf1\x59\xec\xcc\x3d\x32\x85\x35\x56\x60\x3a\x13\x93\x09\x39\xd9\xed\xaa\xca\x7f\xca\xf0\x9a\xcd\x58\xf6\xfd\x8a\xcb\x6b\xc9\x5c\x37\x24\x65\xc5\xce\xcf\xdd\x1d\x46\x65\x74\x93\x1f\x1e\x65\xe7\x8d\xf5\x88\xf8\xd7\xd5\xaf\xba\x0f\x11\xea\x23\x5a\xa7\x57\x6a\x26\x4f\x78\x4f\xf8\x61\x8b\x64\xf3\x58\xa2\x4a\x8e\xca\x46\xc6\xf3\x8b\xe6\x07\xb9\xcd\x3f\x25\xa5\x97\xd8\x57\x86\x87\x48\x77\x8b\xa9\xd3\xed\xe7\x02\x6c\x66\xde\x92\xf3\x6c\xdf\x96\xb6\x45\xd6\x47\x86\xff\x01\x00\x00\xff\xff\xc1\xb3\x5c\x5c\x6b\x04\x00\x00" +var _flowtokenBurn_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x31\x6f\xdb\x30\x10\x85\x77\xfd\x8a\xd7\x0c\x85\x3d\x44\xea\x50\x74\x30\xd2\xa6\x4e\x62\x17\x45\x03\x07\x68\x9c\x66\xa6\xa4\xb3\x45\x54\x22\x85\x23\x55\x39\x08\xf2\xdf\x0b\x92\x12\x23\x0d\xf6\x60\xd9\xe2\xdd\xbb\xef\xbd\x63\x96\x61\x5f\x49\x03\xcb\x42\x19\x51\x58\xa9\x15\xa4\x81\x80\xa5\xa6\xad\x85\x25\x1c\x34\xbb\xbf\x93\x73\x5b\x09\x9b\x64\x19\x0a\xdd\xd5\x25\x72\x42\x67\xa8\x44\xfe\x02\x5b\x11\x44\xd9\x48\x05\x51\x14\xba\x53\x16\x56\x23\xef\x58\xc1\xea\xbf\xa4\x8c\x6b\x3a\xb0\x6e\x5c\xa1\x64\x18\xab\x99\x4a\xfc\x11\x5d\xed\xf4\x12\xcf\x42\xbe\x41\xaa\x23\x44\xe3\x25\xfa\x71\x8a\x40\x2b\x58\x34\x64\x89\x9d\xae\x1b\x36\xa1\x4a\x12\xd9\xb4\x9a\x2d\xb6\x9d\x3a\xca\xbc\xa6\xbd\x1b\x19\xc6\x7d\x3a\x6d\x9f\x76\x3f\x7e\xde\xdc\x6f\xf6\x0f\xbf\x36\xbb\xf5\xdd\xdd\xef\xcd\xe3\x63\x6c\xa8\x75\x3f\x2f\xbe\x7f\x78\x9e\x15\x26\x93\x39\x8b\x80\xb5\xc2\xd3\x56\x9e\xbe\x7c\x5e\xe2\x35\x49\x00\x20\xcb\x82\x11\x30\x19\xdd\x71\x41\x3e\x26\x54\xba\x2e\x4d\x60\xf5\x11\x84\xb7\x82\x09\x39\x39\x93\xce\x2c\x95\x5e\xa1\x26\x8b\x7f\x4e\x62\x85\xef\x33\x13\x69\x48\x28\x16\xf9\x88\x57\xf8\x18\xc1\xd3\xb5\x7b\x23\x8d\x65\x61\x35\x87\xc2\x96\xa9\x15\x4c\x0b\x23\x8f\x8a\x78\x85\x75\x67\xab\x75\xd8\x4a\x64\x1e\xb8\x9f\xa5\xad\x4a\x16\xfd\x88\x38\xae\x68\xd8\xa5\x67\x82\x54\x7e\x5f\xe2\x48\xb1\xd5\x50\x7d\x48\xc3\xe9\xd5\x25\xc2\xa0\x34\xd7\xcc\xba\xbf\x9a\xc0\x79\xfa\x6f\x0b\xa7\xba\x42\x36\x88\x64\x87\xf1\xdc\x1f\x2f\x3f\x44\x55\xf7\x49\xfb\x01\x29\xa6\x1d\x9e\xcb\x19\xf7\x2d\x93\xbb\xa0\x02\x4c\x07\x62\x52\x2e\x73\x3d\xbd\x84\xfe\x3b\xee\xe3\x9c\x83\x50\xf6\xf5\xbc\x81\x59\xba\xe7\x8d\xf8\xb2\xe5\xcc\xc7\xf5\x35\x5a\xa1\x64\xb1\xb8\xb8\xf5\xb7\x58\x69\x8b\xa0\x7f\x9e\x7a\xe4\xbd\x08\x52\x6f\xc1\x32\x9d\xa8\xe8\x2c\xe1\x35\xea\xbb\x9b\xe0\x6f\x0f\xfb\xf4\xa3\x93\xb4\xf0\xb1\xec\xa8\xbf\xf1\xa7\x8b\x77\xa4\xf8\x23\xf4\xa5\xee\xe1\xd1\xcd\x60\xea\xea\xf2\x7d\xa7\x93\xac\x4b\x32\x96\xf5\xcb\xd0\x36\x60\xbd\x25\xf8\x1f\x00\x00\xff\xff\x96\xb2\x1c\x72\x3d\x04\x00\x00" func flowtokenBurn_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1820,11 +1760,11 @@ func flowtokenBurn_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/burn_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0xab, 0x79, 0xb7, 0x68, 0xcb, 0x5f, 0xd1, 0x64, 0x9d, 0xc7, 0xd0, 0x52, 0xf7, 0xf0, 0x89, 0x6f, 0x7d, 0x6e, 0x44, 0xe6, 0xe9, 0x29, 0x7d, 0xed, 0xf4, 0x61, 0x3e, 0x14, 0xb1, 0x1d, 0xe0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x5e, 0x83, 0x88, 0x8b, 0xe7, 0xad, 0xf0, 0x65, 0x31, 0xb6, 0xb7, 0x44, 0xba, 0x99, 0xb3, 0x4b, 0xf5, 0x4e, 0xdb, 0xcb, 0xb7, 0x0, 0xd8, 0xdb, 0xe4, 0x3d, 0xff, 0x1d, 0x3f, 0x61, 0xf5}} return a, nil } -var _flowtokenCreate_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\x4d\x6f\xe3\x36\x10\xbd\xf3\x57\x4c\x73\xd8\xda\x81\x23\xa3\x5f\x17\x23\x5b\x60\x9b\x22\x40\x2f\x3d\xb4\xc1\x5e\xbb\x63\x72\x64\xb2\x2b\x91\x02\x39\xb2\x60\x2c\xf2\xdf\x0b\x7e\x88\x96\x0c\x24\xa7\xfa\x64\x72\x66\xde\xbc\xf7\x66\xa8\xfd\xfd\xbd\x10\x2f\xda\x04\x60\x8f\x36\xa0\x64\xe3\x2c\x98\x00\x08\x4c\xfd\xd0\x21\x13\xb4\xce\xc7\xe3\x22\xce\x1a\x19\xa4\x1b\x3b\x05\x47\x82\x31\x90\x12\xec\x20\x10\xc3\x38\x00\x5a\x40\x29\xdd\x68\x19\xd8\xc5\xe2\x09\xbd\x02\x45\x83\x0b\x86\x49\x01\xbb\xaf\x64\x43\x8c\xa1\x75\xac\xc9\x83\x27\x49\xe6\x4c\xbe\x11\xe2\x8f\x16\xd0\x5e\x9c\x25\x08\x64\x55\x58\x26\xc7\x3e\xfe\xfb\x00\xcf\x19\x91\x3c\xfc\x55\xea\x76\x82\x35\xd5\x13\x4c\xa6\xeb\xe0\xdf\x31\x70\x6d\xce\xda\x05\x5a\x60\xc5\xf4\xcf\x38\x76\x9c\x95\x68\x0c\x70\x24\xb2\x22\x2a\xc0\x90\xc2\x9e\xa4\x19\x0c\x59\x06\xb4\x0a\xa8\x37\xf1\x0f\xd0\x39\xde\xa4\x22\x63\x95\x91\xc8\x14\xc4\xa4\x8d\xd4\x89\xdd\xdc\x30\xaa\xd4\x73\xc3\xa6\x18\x3c\xe1\x65\x07\x26\xea\x03\xd7\xb6\x0f\x52\xa3\xb1\x10\xc8\x9f\x8d\x24\x98\xd0\x72\xa2\xd6\x3b\x6b\xd8\x79\x98\xb4\x8b\x63\x28\x80\xc6\x9e\xc4\x95\xbe\xe1\x1d\x18\x06\x89\x16\x26\x64\xa9\x33\xad\x14\x0a\x44\x30\x69\xf2\xb4\x20\x00\x12\x7b\x82\xd6\xbb\xbe\x11\xe2\x6f\xa6\xa1\x64\xe6\x69\xe5\x51\x05\x98\x0c\xeb\x5c\x50\x55\xf8\x83\x10\x3f\x34\xf0\xa2\x09\x9e\x47\x7b\x32\xc7\x8e\xe0\x25\x65\x48\x67\xd9\xa3\x8c\x2e\x30\xf9\x16\x25\x41\xd0\x69\x1f\xb0\xf3\x84\xea\x12\xf7\x42\xd1\xd0\xb9\x0b\x29\x08\xae\xa7\x44\x4a\xfc\x98\xd1\x70\x18\x3a\x23\x31\xe2\xf1\x1a\xaf\xa0\x2c\xaa\x1b\xf1\x53\x2e\x5a\x4c\xa4\xac\x57\x49\xd6\x78\x26\xc0\x32\xd0\xb8\xac\x9c\xf6\x39\x03\x7b\x42\x26\x25\x00\x20\x0d\x32\xb0\xf3\xa4\xc0\x58\x30\x1c\xd2\x09\x4f\x94\xb5\x23\x0c\xe3\xb1\x33\x41\x93\xaa\xbb\x24\x7e\x6e\xe0\xf7\x44\x24\xf9\xf9\x25\xa9\x7f\xae\x33\x69\xa4\x92\x5f\xae\xe4\xd3\x96\x2a\xd3\xb6\xe4\x17\x34\xc5\x2f\x4d\xdc\x59\x40\xb0\x34\xc1\xa7\x7c\x79\x80\xa7\xc4\x2c\xc1\xce\x7a\xac\xf3\x3d\x76\xdd\x65\x97\xe8\xb2\x26\x0b\x7e\xb4\xb9\x73\x16\xf2\x4f\x1d\x4d\x6e\xbd\x78\x94\xb9\xe8\x44\xcc\xc6\x9e\x60\xf5\x20\xe2\xe8\x57\x8d\xf2\x02\xdf\x2c\x7a\x23\xee\xf7\x42\x98\x7e\x70\x9e\xeb\xbc\xf3\xb8\x13\xc0\xdd\xea\xee\xae\x66\x76\x6e\x5a\x65\xcd\xe7\x9a\x71\x63\x5a\xc9\xbb\xb9\xbd\x13\x62\x21\x66\x33\x7f\x12\x0e\xf0\x49\x29\x4f\x21\x6c\xe1\x9b\x48\x0a\x07\x4f\x03\x7a\xda\xa0\x94\x7c\x00\x1c\x59\x6f\x7e\x73\xde\xbb\xe9\x33\x76\x23\xed\xe0\x09\x07\x3c\x9a\xce\xb0\xa1\xb0\x85\x0f\xc5\xef\x58\x0e\xe5\xd7\x11\x2f\x96\xe9\x63\xf4\xac\x64\xd5\xb6\xdb\x9a\x1c\x7f\x8d\x5c\x60\x36\x27\xe2\xc7\x0f\xdf\x56\x66\x34\xb3\xd5\xaf\xbf\x6e\xf6\x69\x8b\xe4\xbe\x9d\x7d\x98\x63\xdb\xef\xc4\x8a\xc2\x39\xed\xeb\xe3\xc3\xad\x3f\x4d\x1e\xf5\x9f\x34\xd5\x2f\xdd\xa6\xd2\x3d\x5c\x99\x5f\x39\x46\x2b\x9a\xb2\xcb\x4d\xc0\x33\x6d\x1e\x1f\x12\xfa\x0e\xd8\x1d\x60\x5f\x42\x57\x4a\x15\x78\x7b\xa5\x64\xda\xc4\x4a\xe2\x00\x1f\x33\xe2\xff\xa3\x7a\x61\x7c\x69\x23\x71\x68\xa4\x26\xf9\x75\x73\x1b\xac\x62\x56\xad\x47\x5b\x1e\xe6\x3b\x5d\x56\x30\xaf\xe2\xfa\x6f\x65\x79\x7d\x3d\x4f\x6f\xa8\x9c\x4d\x34\x21\x8c\xf4\xae\xde\xf7\x3c\x7d\x5b\x4a\x11\xf2\x1e\xf2\x4a\xc9\x92\xf0\x6e\x15\x41\x3e\xc0\x9b\x76\xd4\xcc\xcc\xe5\x55\xbc\x8a\xff\x02\x00\x00\xff\xff\x9f\xd7\x66\x7a\xe9\x07\x00\x00" +var _flowtokenCreate_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x4d\x6f\xe3\x36\x10\xbd\xf3\x57\xcc\xa9\xf5\x06\x8e\xdc\xcf\x8b\x91\x16\x70\x37\xc9\x22\x68\x91\x05\x9c\xb4\x3d\x76\xc7\xe4\xc8\x64\x23\x93\x02\x39\xb2\x6a\x04\xf9\xef\x05\x49\x89\x96\x82\xd6\x3e\x59\xe2\x9b\x37\xef\xcd\x3c\x71\x75\x75\x25\xc4\xb3\x36\x01\xd8\xa3\x0d\x28\xd9\x38\x0b\x26\x00\x02\xd3\xa1\x6d\x90\x09\x6a\xe7\xe3\xe3\xe4\x9c\x35\x32\x48\xd7\x35\x0a\x76\x04\x5d\x20\x25\xd8\x41\x20\x86\xae\x05\xb4\x80\x52\xba\xce\x32\xb0\x8b\xc5\x3d\x7a\x05\x8a\x5a\x17\x0c\x93\x02\x76\x2f\x64\x43\x3c\x43\xeb\x58\x93\x07\x4f\x92\xcc\x91\x7c\x25\xc4\x43\x0d\x68\x4f\xce\x12\x04\xb2\x2a\x4c\xc1\xb1\x8f\xff\x3a\xc0\x7d\x66\x24\x0f\xdb\xa1\x6e\x29\x58\x53\x79\x82\xde\x34\x0d\xfc\xdd\x05\x2e\xcd\x59\xbb\x40\x13\xae\x08\xff\x03\xbb\x86\xb3\x13\x8d\x01\x76\x44\x56\x44\x07\x18\xd2\xb1\x27\x69\x5a\x43\x96\x01\xad\x02\x3a\x98\xf8\x07\xe8\x18\xdf\xa4\x22\x63\x95\x91\xc8\x14\x44\xaf\x8d\xd4\x49\xdd\xd8\x30\xba\xd4\x63\xc3\x6a\x18\x70\x8f\xa7\x25\x98\xe8\x0f\x5c\x5d\x5f\x4b\x8d\xc6\x42\x20\x7f\x34\x92\xa0\x47\xcb\x49\xda\xc1\x59\xc3\xce\x43\xaf\x5d\x5c\xc3\x40\x68\xec\x5e\x9c\xe5\x1b\x5e\x82\x61\x90\x68\xa1\x47\x96\x3a\xcb\x4a\x47\x81\x08\x7a\x4d\x9e\x26\x02\x40\xe2\x81\xa0\xf6\xee\x50\x09\xf1\xc4\xd4\x0e\xc8\xbc\xad\xbc\xaa\x00\xbd\x61\x9d\x0b\x8a\x0b\xbf\x16\xe2\xdb\x0a\x9e\x35\xc1\x7d\x67\xf7\x66\xd7\x10\x3c\x27\x84\x74\x96\x3d\xca\x38\x05\x26\x5f\xa3\x24\x08\x3a\xe5\x01\x1b\x4f\xa8\x4e\x31\x17\x8a\xda\xc6\x9d\x48\x41\x70\x07\x4a\xa2\xc4\x77\x99\x0d\xdb\xb6\x31\x12\x23\x1f\xcf\xf9\x06\x96\x49\x75\x25\xbe\xcf\x45\x93\x8d\x0c\xf1\x1a\xc0\x1a\x8f\x04\x38\x2c\x34\x86\x95\x53\x9e\x33\xb1\x27\x64\x52\x02\x00\xd2\x22\x03\x3b\x4f\x0a\x8c\x05\xc3\x21\x3d\xe1\x9e\xb2\x77\x84\xb6\xdb\x35\x26\x68\x52\x25\x4b\xe2\x87\x0a\x6e\x93\x90\x34\xcf\x2f\xc9\xfd\x7d\xd9\x49\x25\x95\xfc\x72\x16\x9f\x52\xaa\x4c\x5d\x93\x9f\xc8\x14\x3f\x56\x31\xb3\x80\x60\xa9\x87\x4d\x7e\xb9\x86\x8f\x49\x59\xa2\x1d\xfd\x58\xe7\x0f\xd8\x34\xa7\x65\x92\xcb\x9a\x2c\xf8\xce\xe6\xce\xd9\xc8\x5f\x65\x35\xb9\xf5\xe4\xa3\xcc\x45\x7b\x62\x36\x76\x0f\xb3\x0f\x22\xae\x7e\xd6\x28\x07\xf8\x5d\xd0\x2b\x71\xb5\x12\xc2\x1c\x5a\xe7\xb9\xec\x3b\xaf\x3b\x11\x7c\xf3\xcf\xfd\xef\x8f\x9f\x1e\x7e\xf9\xed\xee\xf9\xf3\xaf\x77\x8f\x9b\xdb\xdb\xed\xdd\xd3\x53\x29\x68\x5c\x3f\x03\xff\x17\xe8\xdd\xf8\x0a\xef\xe7\xed\x9f\x9b\xed\xed\xc3\xe3\xa7\x11\x2f\x26\xc6\x16\xe3\xf5\xb0\x86\x8d\x52\x9e\x42\xf8\x00\xaf\x22\xb9\x6d\x3d\xb5\xe8\x69\x81\x52\xf2\x1a\x36\x1d\xeb\x61\xbc\x11\x01\xc3\xaf\x21\x9e\x64\xe7\xa7\x38\xa2\x01\x55\x98\x3f\x14\x70\xfc\x55\x7b\xe2\x8f\xd8\xe2\xce\x34\x86\x4f\x37\x5f\xbd\xce\x86\x51\x8d\x63\x7d\xfb\x79\xb1\x4a\x89\x91\xab\x7a\x34\xbf\x2d\x84\xb3\xf6\xc7\x14\xcd\x9b\xeb\xf7\x03\xa8\xf2\x56\x1f\xa9\x2f\x97\xda\xa2\x48\x5d\x9f\x55\x9f\xf5\x45\xa7\x55\xc0\x23\x2d\x6e\xae\x13\xeb\x12\xd8\xad\x61\x35\x24\xf9\xac\xa4\x10\x4e\xa4\xc4\xcb\x27\xd6\xcf\xfc\x5d\x30\x51\x49\x4d\xf2\xe5\xd2\x00\xa6\x73\x2e\xf2\x3a\xdb\x18\xfb\x72\x69\x38\x23\xfc\x6d\xee\x2b\x96\x5d\xea\x36\x6b\xf5\xbf\xf4\xcb\x19\x8c\xd1\xef\x89\x2f\x4e\xa8\xe0\xb3\xb0\x37\xf1\x26\xfe\x0d\x00\x00\xff\xff\xd2\xae\xc8\xb7\x17\x07\x00\x00" func flowtokenCreate_forwarderCdcBytes() ([]byte, error) { return bindataRead( @@ -1840,11 +1780,11 @@ func flowtokenCreate_forwarderCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/create_forwarder.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x52, 0xf4, 0x68, 0x6a, 0x7f, 0xc6, 0x10, 0x5d, 0xeb, 0x73, 0x26, 0xb1, 0xf5, 0xf9, 0xea, 0x93, 0x64, 0xae, 0xa6, 0x4, 0x9d, 0x63, 0xa4, 0xdc, 0xfa, 0x8f, 0xa1, 0x28, 0x46, 0xf4, 0x43, 0x5a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x42, 0xa4, 0x5, 0xa, 0x19, 0x3f, 0x28, 0x81, 0x28, 0x7d, 0x64, 0x95, 0xda, 0x21, 0x88, 0x7f, 0x1d, 0x27, 0x7d, 0xc3, 0x47, 0x64, 0x7a, 0x7c, 0x3e, 0xd2, 0x6a, 0x1e, 0xd6, 0x4a, 0xb6, 0x3f}} return a, nil } -var _flowtokenMint_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x31\x6f\xdb\x30\x10\x85\x77\xfd\x8a\x83\x86\x40\x06\x1a\x69\x29\x3a\x08\x4e\x02\x77\xc8\xd6\x0e\x6d\x92\x9d\xa2\xce\xf2\xa1\x14\x29\x1c\x4f\x71\x0a\x23\xff\xbd\x20\x29\xc9\x56\x5a\x57\x8b\x61\xf2\xdd\x77\xef\xdd\x91\xfa\xc1\xb1\xc0\xe3\x68\x3b\x6a\x0c\x3e\xb9\x5f\x68\x61\xcf\xae\x87\x7c\x75\x96\x67\xb3\xd2\xb8\xe3\x4a\x35\xff\xcf\xb3\xac\xaa\x2a\x78\x3a\x90\x07\x61\x65\xbd\xd2\x42\xce\x42\x4f\x56\x3c\x48\x90\x78\x18\x3d\xd9\x0e\xe4\x80\xa0\xb4\x76\xa3\x15\x90\x83\x12\xf0\xe2\x18\x7d\x3c\x0f\x3c\x48\x0d\x76\x6d\x4f\x16\x18\xbd\x1b\x59\xe3\x99\x4e\x49\xe9\x91\x5f\x49\x2f\xa4\x2c\xbb\xe8\x5a\x30\x6a\x1a\x08\xad\xd4\xb0\x6b\x5b\x46\xef\x3f\x81\xea\x83\xae\x86\xe7\x47\x7a\xfb\xf2\x79\x03\xa7\x2c\x03\x00\x30\x28\xc9\x5e\xec\x57\xc3\xcd\x12\xa9\x8c\x27\xe4\x85\x95\x38\x5e\x8b\x7f\xa0\x46\x7a\x45\xae\xe1\xe6\xb4\x9a\x54\x39\xdf\xbc\x27\xfc\xc0\x38\x28\xc6\xc2\x53\x67\x83\x5c\x8d\x72\x28\xbe\x3a\x66\x77\x7c\x51\x66\xc4\x0d\xdc\xec\x52\x82\xc5\x51\xf8\x3c\x9a\x7d\x79\xb6\x05\x77\x90\x00\x65\x98\x95\xea\x70\x11\x86\xaf\x6c\x22\x6f\x7b\xcd\xfa\x7d\x11\x96\x55\x43\x35\x15\x57\xfb\x59\x17\x65\x9b\x15\xec\xe1\x01\x06\x65\x49\x17\xf9\xcf\xd8\x31\xcc\xdb\x3a\x89\x33\x8f\x86\x40\x85\xa2\x7c\xf3\x2f\xb3\x73\x78\xb8\x83\x0e\x65\x0a\x76\xde\xc6\xba\x53\xa9\xd5\xa0\x1a\x32\x24\x84\x7e\xc9\x70\x6d\x9c\xf7\x45\x35\x8c\x8d\x21\x7d\x76\x3f\xdf\x5d\x0b\xf0\x6c\x55\x63\x82\x6b\x48\x70\xe0\xd9\x1e\xe3\x1e\x19\xad\xc6\x3c\xd5\x4e\xcb\xc2\x37\xd4\xa3\x20\x9c\x16\x60\x58\x78\x78\xc2\xc8\xb0\xbd\xfd\xb8\x95\x52\x33\x2a\xc1\xef\x78\xfc\x16\x25\x85\x32\xc6\x1d\xb1\xdd\x4d\x2f\x2d\xbd\xb8\xcd\xdf\xb0\xf6\x45\x8d\x46\x02\x31\xb1\xcb\xf0\x13\x23\xf9\x42\x7d\x28\xfe\xcf\x94\xcb\x16\x07\xe7\x49\xa6\xf5\x6e\x6f\x2f\xe0\x17\x85\x2d\x7a\x61\xf7\x7b\xea\x35\xe5\x7d\xff\x13\x00\x00\xff\xff\x4d\x4d\x2d\xec\xfb\x03\x00\x00" +var _flowtokenMint_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\xcd\x6e\xda\x40\x10\xbe\xfb\x29\x46\x1c\x22\x23\x35\x76\x0f\x55\x0f\x88\x24\x72\x1b\xa8\xaa\xa6\x44\x0a\xd0\x9e\x97\xf5\x60\x46\x35\xbb\xd6\xec\x38\x10\xa1\xbc\x7b\xb5\x5e\x1b\x70\x1a\xba\x17\x4b\xeb\x6f\xbe\xbf\x59\xda\x56\x96\x05\xa6\xb5\x29\x68\x55\xe2\xc2\xfe\x41\x03\x6b\xb6\x5b\xf8\xb8\x9f\x2e\x67\xdf\xbe\x7f\x79\x98\x2c\x1e\x7f\x4c\x66\xd9\xfd\xfd\xd3\x64\x3e\x8f\xba\x81\xd2\xee\xfa\xe0\x87\xc7\xdf\x3d\x60\x94\xa6\x29\x2c\x36\xe4\x40\x58\x19\xa7\xb4\x90\x35\xb0\x25\x23\x0e\xc4\x4f\x3a\xa8\x1d\x99\x02\x64\x83\xa0\xb4\xb6\xb5\x11\x90\x8d\x12\x70\x62\x19\x5d\x73\xef\x65\x20\xe8\x64\xf9\x96\x0c\x30\x3a\x5b\xb3\xc6\x13\x3b\x05\xa4\x43\x7e\x26\x7d\x64\x8a\xa2\x33\xd5\x98\x51\x53\x45\x68\x64\x04\x59\x9e\x33\x3a\xf7\x01\xd4\xd6\xe3\x46\xb0\x9c\xd2\xfe\xf3\xa7\x21\x1c\xa2\x08\x00\xa0\x44\x09\xf6\x1a\xbd\x11\x5c\x1d\x93\x26\xcd\x0d\x39\x61\x25\x96\xfb\xe0\x27\xd4\x48\xcf\xc8\x23\xb8\x3a\xf4\xba\x4c\xba\x3f\xaf\x81\xbe\x62\xac\x14\x63\xec\xa8\x30\x1e\x9e\xd5\xb2\xc9\x82\xe5\xa3\x05\x7f\x1c\x96\xeb\xe4\xe4\x03\x6e\x20\x4c\x1c\x01\xfe\x24\x2b\xcb\x6c\x77\xe3\x4b\x1e\x6f\x63\xbf\x9c\x11\xa4\xbe\x51\x55\x60\xba\xee\x70\x0d\x6c\xd8\x23\xbb\xbb\x83\x4a\x19\xd2\xf1\x60\xde\x28\xf9\x62\x8d\x95\xa6\xdc\xc6\x08\x28\x3f\x34\x18\xbe\x67\xb2\x4b\x09\x37\x50\xa0\xb4\x81\x4e\xb5\xf7\x95\x92\x02\xe5\xab\xaa\xd4\x8a\x4a\x92\x97\x38\xad\xea\x55\x49\xfa\x64\xae\x23\x1b\xbe\x1f\xf6\x52\xc1\xb7\xf1\xa5\x40\x4b\xa3\x56\xa5\x4f\x01\x81\x03\xb8\xb3\xcb\xb8\x46\x46\xa3\x71\x10\x66\xdb\x2d\xe1\x1e\x75\x2d\x08\x87\x23\xa1\xdf\xb4\x7f\xbb\xc8\x30\xbe\x7e\xbb\x9d\x44\x33\x2a\xc1\x19\xee\x7e\x36\x90\x58\x95\xa5\xdd\x61\x9e\xb5\x4f\x2c\x3c\xb5\xe1\xbf\x64\xf9\x2f\x55\x97\xe2\x19\x03\x77\xe2\x3f\x4d\x2c\x17\xab\x37\xc3\xff\x69\x3d\xc9\xb1\xb2\x8e\xa4\x5d\xf7\xf8\xfa\x8c\xfc\x6c\x30\x47\x27\x6c\x5f\x5a\xad\x36\xef\xeb\xdf\x00\x00\x00\xff\xff\xac\x61\xd6\x4a\x02\x04\x00\x00" func flowtokenMint_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1860,11 +1800,11 @@ func flowtokenMint_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/mint_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x85, 0x9a, 0xca, 0x71, 0x4a, 0xfb, 0x5f, 0xd5, 0x56, 0xf3, 0x5f, 0xb8, 0xc1, 0xd8, 0xfe, 0x87, 0xff, 0x71, 0x1d, 0x2f, 0x26, 0x65, 0x2, 0x7, 0xfd, 0x3e, 0xa1, 0xab, 0x25, 0xc9, 0x2d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xff, 0xc6, 0x66, 0x5d, 0xee, 0x48, 0xe, 0xb9, 0xea, 0x2f, 0xd, 0xc1, 0xe8, 0xcf, 0x70, 0x67, 0x81, 0x67, 0x29, 0x35, 0x1, 0x39, 0x44, 0x65, 0x4b, 0xc, 0x19, 0x1e, 0xcd, 0x6a, 0x57, 0x65}} return a, nil } -var _flowtokenScriptsGet_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\xcb\x4e\xf3\x30\x10\x85\xf7\x7e\x8a\xa3\x2c\xfe\x3f\xd9\x24\x1b\xc4\xa2\x02\xaa\x82\xd4\x07\x40\x85\xfd\xc4\x19\xb7\x23\x1c\x3b\xf2\x85\x22\x55\x7d\x77\x94\xe6\x82\xea\x95\xed\x39\x73\xfc\xf9\x4c\xd3\xe0\x70\x92\x88\xa8\x83\x0c\x09\x81\xa9\x8b\x48\x27\x46\x4b\x96\x9c\x66\x18\x61\xdb\xc1\x1b\x90\x03\x69\xed\xb3\x4b\xff\x23\xf6\xd6\x9f\x0f\xfe\x8b\x1d\x5e\x27\x9d\x52\xd2\x0f\x3e\x24\xec\xb3\x3b\x4a\x6b\x79\xaa\x9a\xe0\x7b\x14\x77\x77\xc5\xaa\x5c\x3d\x66\xd5\x72\x2e\x94\x22\xad\x39\xc6\x92\xac\xad\x60\xb2\x43\x4f\xe2\xca\xf9\xf9\x0d\x76\x5d\x17\x38\xc6\x6a\x83\x8f\xbd\xfc\x3c\x3e\xe0\xa2\x14\x00\x58\x4e\xf8\xa6\x6c\xd3\x3b\x1b\x3c\xe3\xc8\x69\x37\xb5\x2c\xad\xd5\x4d\x36\xae\x5a\xd3\x40\xad\x58\x49\xc2\xb1\x6e\x7d\x08\xfe\xfc\xf4\xef\x72\x47\x5a\xcf\x7f\xbb\xbe\x94\xcd\x90\x5b\x2b\xba\x31\x0b\xe3\x5c\xfa\x33\xdc\x6e\x31\x90\x13\x5d\x16\x6f\x3e\xdb\x0e\xce\x27\x4c\xb6\x4b\x44\x08\x6c\x38\xf0\xb8\x4b\xfe\x96\xf1\xe7\xc8\x5a\x54\x13\x7c\xe0\x94\x83\x5b\xf9\xeb\x79\x00\xea\xaa\x7e\x03\x00\x00\xff\xff\x0c\xc2\x32\xf4\xa4\x01\x00\x00" +var _flowtokenScriptsGet_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\xcb\x6e\xf2\x30\x14\x84\xf7\x7e\x8a\x11\x8b\xff\x0f\x9b\xa4\x8b\xaa\x0b\xd4\x16\x71\x4b\x55\x15\x81\xc4\xa5\x5d\x3b\xc9\x31\x58\x35\x76\xe4\x4b\xa1\x42\xbc\x7b\x45\x6e\x2d\x5e\x59\xf2\x7c\xe3\x99\x73\x92\x04\x9b\xbd\x74\x70\xb9\x95\xa5\x87\x25\x5e\x38\xf8\x3d\x21\xe3\x8a\xeb\x9c\x20\x24\xa9\x02\x46\x80\x6b\xf0\x3c\x37\x41\xfb\xff\x0e\xa9\x32\xc7\x8d\xf9\x24\x8d\x71\xad\x63\x4c\x1e\x4a\x63\x3d\xd2\xa0\x77\x32\x53\x54\xbf\x0a\x6b\x0e\xb8\x3b\xa5\xdb\xc5\xcb\xeb\x78\x3e\xdb\x2c\xdf\x66\x8b\xd1\x74\xba\x9a\xad\xd7\x1d\xd0\x59\xb5\xe2\xf9\xf2\xe3\x46\xc8\xca\x90\x41\x04\x8d\x03\x97\x3a\x6a\x42\x0c\x30\x2a\x0a\x4b\xce\xf5\x07\xd8\xa6\xf2\xf4\x70\x8f\x33\x63\x00\xa0\xc8\xe3\x8b\x07\xe5\x57\x24\xf0\x84\x1d\xf9\x51\x8d\xb4\x68\xbf\x92\x5d\x4f\xbc\x23\x3f\xe1\x25\xcf\xa4\x92\xfe\x3b\x4a\xca\x90\x29\x99\x27\xa2\x8d\xd4\x94\xfb\x03\x64\xc6\x5a\x73\x7c\xfc\xd7\xa5\x8e\xdf\xaf\x5f\x9d\x6f\x6a\xc7\x0d\x77\x79\x8e\x7e\xd1\xe1\x10\x25\xd7\x32\x8f\x7a\x13\x13\x54\x01\x6d\x3c\x6a\xb7\x76\x86\xb0\x24\xc8\xd2\xf5\xe6\x4d\xb5\x84\xca\xbb\xd7\xaf\x7b\x59\xf2\xc1\xea\xae\x5a\xdc\x6c\x88\x5d\xd8\x4f\x00\x00\x00\xff\xff\x38\x9b\x14\x49\xc5\x01\x00\x00" func flowtokenScriptsGet_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -1880,11 +1820,11 @@ func flowtokenScriptsGet_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/scripts/get_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9f, 0x43, 0x79, 0xfd, 0x4, 0xd6, 0xad, 0x3a, 0xc5, 0x7, 0x57, 0x5, 0x10, 0xbc, 0x51, 0x96, 0xe8, 0x27, 0x94, 0x74, 0x77, 0x6d, 0x23, 0xa3, 0x76, 0x56, 0xd2, 0xcf, 0x8f, 0x3b, 0xac, 0x5b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xeb, 0x3, 0xd9, 0xd3, 0xc5, 0xf4, 0x33, 0xcb, 0xf, 0x2c, 0xdd, 0x7f, 0x8f, 0xa6, 0x25, 0xa7, 0x5e, 0xce, 0x4c, 0x9f, 0xad, 0x8c, 0x3b, 0xa5, 0x1f, 0xbf, 0x1a, 0x3c, 0xe2, 0xdb, 0xa8, 0xda}} return a, nil } -var _flowtokenScriptsGet_supplyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8e\x3d\x8a\xc3\x30\x14\x84\xfb\x77\x8a\xc1\x95\xdd\xac\x9a\x65\x8b\x85\xb4\xbe\x40\x9c\x03\x08\x59\xc2\x22\xfa\xe3\xbd\x67\x92\x10\x72\xf7\x80\xf3\x5b\xce\xcc\xc7\xcc\x18\x83\x69\x89\x02\x71\x1c\x9b\x82\xbd\x9d\x05\xba\x78\x68\x55\x9b\x20\x6b\x6b\xe9\x82\x10\x7d\x9a\xc9\x18\xd4\xb0\x85\x63\xaa\xa7\xa9\x1e\x7d\x81\x64\xcb\x0a\x57\x8b\xb2\x75\x4a\x14\x73\xab\xac\x5f\x40\xe0\x9a\xd1\xbd\x75\x47\x64\x9d\xf3\x22\xbd\x4d\x69\x40\x58\x0b\xb2\x8d\xa5\x1f\xfe\x71\x18\xe3\xf9\xef\x17\x57\x22\x00\x48\x5e\x5f\xeb\xbb\x4f\xdd\xcf\x76\x6b\xbf\xf9\x0f\x8e\xbd\xae\x5c\x9e\x28\xdd\xee\x01\x00\x00\xff\xff\x93\xe0\xcd\xc5\xd0\x00\x00\x00" +var _flowtokenScriptsGet_supplyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xce\x3f\x4b\xc4\x40\x10\x05\xf0\x7e\x3e\xc5\x2b\xb5\x71\x2d\xc4\x42\xb0\x10\x92\x34\x8a\x01\x13\xb1\x5e\x93\x5d\xb2\xb8\xff\x98\x9d\xc5\x1c\xc7\x7d\xf7\x83\xdc\x1d\x77\xed\xcc\x8f\xf7\x9e\x52\x18\x17\x57\x50\x26\x76\x59\xc0\x46\xcf\x05\xb2\x18\x48\x12\xed\x51\x6a\xce\x7e\x07\xeb\x8c\x9f\x49\x29\x24\xbb\x3d\x3b\x9f\xfe\xc7\xf4\x67\x22\x4a\xd0\x2c\x98\x52\x14\xd6\x93\x10\xb9\x90\x13\xcb\x0d\xb0\x9c\x02\x1e\xd7\xee\xa3\xff\x19\xfb\xf7\xf6\xf3\xad\x69\xbe\xda\x61\x20\xca\xf5\x17\xb6\x46\x04\xed\xe2\xdd\xfd\x0b\xbe\x3b\xb7\x3e\x3f\x61\x4f\x04\x00\xde\xc8\xa5\xfc\xf5\x9a\xf6\xb0\xad\x1a\xb6\xfb\xc9\xb1\x91\xca\xf1\x4c\xe9\x70\x0c\x00\x00\xff\xff\x89\xd7\x2e\x22\xcf\x00\x00\x00" func flowtokenScriptsGet_supplyCdcBytes() ([]byte, error) { return bindataRead( @@ -1900,11 +1840,11 @@ func flowtokenScriptsGet_supplyCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/scripts/get_supply.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4f, 0x7c, 0x11, 0x45, 0x40, 0xad, 0x8d, 0x3d, 0x20, 0x6, 0x5b, 0x4d, 0x33, 0xbd, 0x92, 0x38, 0xcd, 0x91, 0x1f, 0x33, 0x5d, 0xa2, 0x8c, 0xf9, 0x8e, 0xd7, 0xdf, 0x52, 0x6d, 0xc0, 0x4e, 0x90}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x14, 0x97, 0xdd, 0xc6, 0x1f, 0xdd, 0xa3, 0xc6, 0x4b, 0xf9, 0xd5, 0xe8, 0x4b, 0x50, 0xb5, 0x98, 0x62, 0xbb, 0xdf, 0x23, 0xd, 0x65, 0x66, 0x9e, 0xf3, 0x3, 0x62, 0x4b, 0xee, 0xcb, 0x8f, 0x71}} return a, nil } -var _flowtokenSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x51\xcd\x8e\x1a\x3d\x10\xbc\xfb\x29\x4a\x1c\x56\x20\xed\xc7\xdc\xd1\xf2\x49\xc9\x2a\x79\x80\x64\x95\x7b\x63\x7a\x18\x2b\xc6\xb6\xec\x36\x04\xad\xf6\xdd\x23\xcf\x6f\x86\x85\x28\x87\x5c\xe2\xc3\x68\xdc\x5d\xae\xae\xae\x52\x55\x85\x97\xc6\x24\x48\x24\x97\x48\x8b\xf1\x0e\x26\x81\x20\x7c\x0c\x96\x84\x51\xfb\x58\xae\x53\xbf\xbc\x11\x0f\xda\xef\x41\xf8\x46\xd9\x0a\x22\x27\x9f\xa3\xe6\x52\x97\x86\x4d\x04\x69\xed\xb3\x93\x82\x4d\xa5\x46\x52\x1a\x17\x68\x72\xc8\x89\xcb\x05\xb5\xf5\xe7\x17\xff\x9d\x9d\x52\xe6\x18\x7c\x14\x7c\xce\xee\x60\x76\x96\xdb\x2a\xea\xe8\x8f\x58\xcc\x6a\x8b\x11\x39\xbc\x1d\x50\xc3\x7d\xa1\xd4\xaf\xbb\xbc\x2a\x05\x00\x21\x72\xa0\xc8\xcb\x64\x0e\x8e\xe3\x06\x94\xa5\x59\x7e\x15\x1f\xe9\xc0\x2b\x3c\x7c\xe8\xd4\xae\x06\x78\x39\xa6\x46\x87\x5e\xa7\x0e\xb7\xde\xf9\x18\xfd\xf9\xe9\x61\x9c\xb5\x6e\xb7\xff\x7f\x59\x24\x6c\x50\xf5\xb8\x6a\xdc\xab\x6d\xaf\xb0\xdd\xc2\x19\x8b\xd7\x91\xba\x9c\xaa\xc2\x73\xe4\x62\x30\xc1\xf1\x79\x32\xa3\xb7\x94\xdc\x1e\x21\x0b\x8c\xc0\x38\xf4\xd4\x33\x86\x2b\x75\x89\x4e\xbc\x7c\xfa\x6f\x12\xa7\x5b\xfa\x4f\xc7\x20\x97\x96\x72\xb9\x7a\x84\xf8\xfb\x3a\xd5\x5d\x7d\x21\xef\xac\xd1\xd0\x14\x68\x67\xac\x91\x4b\x9f\x73\x2f\xb5\x4d\xd7\x3b\x7b\x01\xff\x08\x3e\x71\xba\x26\x2a\xd0\x3d\x07\x9f\x8c\xa0\xce\xae\x4b\x46\x9a\xe8\xf3\xa1\x69\x9b\x5f\x58\xb3\x39\x71\x84\x71\xc2\xb1\x26\x3d\xdf\xd4\xb2\xe0\x54\x46\x3d\x53\xc0\x76\x58\x7c\x94\x63\x38\x8d\x2e\x98\x94\x32\xdf\x88\x68\xc6\xd7\xca\xba\xed\xc2\x0c\x77\x65\xc9\xad\xb9\xad\x35\xa9\x79\xcf\x3f\xe8\x7d\x7c\xd7\x21\xd9\xa0\xea\x2c\x9d\x86\x0f\x0e\xfc\x6e\xfe\xdf\x8e\x64\x47\x96\x9c\x66\xd4\x86\xed\x7e\x96\xc7\xc7\xbe\x73\x3f\x8e\xfe\xed\x3f\x14\xc8\xa4\xf8\x0f\x23\xe9\x4d\xb8\x12\x30\xfc\xbd\xa9\xee\xfb\xa6\xf0\x33\x00\x00\xff\xff\x74\xcd\x81\x62\x45\x05\x00\x00" +var _flowtokenSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xdf\x6a\x1b\x3d\x10\xc5\xef\xf7\x29\xce\xd5\x87\x0d\xf9\xbc\xbd\x0e\x49\xc0\x69\x9c\x52\x5a\x52\x48\xdc\xde\x8f\xe5\xd9\x5d\x11\x59\x12\xd2\x28\x8e\x31\x7e\xf7\xa2\xfd\x63\x77\x9b\x1a\x0a\xa1\xba\x30\xd6\xcc\xd1\xd1\x99\x9f\xb6\x28\x4b\x2c\x1b\x1d\x21\x81\x6c\x24\x25\xda\x59\xe8\x08\x82\xf0\xc6\x1b\x12\x46\xe5\x42\xde\x9e\xfa\xf9\x8c\x38\xd0\x7a\x0d\xc2\x0f\x4a\x46\x10\x38\xba\x14\x14\xe7\xba\x34\xac\x03\x48\x29\x97\xac\x64\x6d\xcc\x35\x92\xdc\xd8\x41\x91\x45\x8a\x9c\x37\xa8\x8c\xdb\x2e\xdd\x33\xdb\xa2\xd0\x1b\xef\x82\xe0\x3e\xd9\x5a\xaf\x0c\xb7\x55\x54\xc1\x6d\xf0\xe1\xf5\xfe\xfb\xc3\xa7\xcf\xb7\x5f\x17\xcb\x6f\x5f\x16\x0f\xf3\xbb\xbb\xc7\xc5\xd3\xd3\xf1\xc0\x60\x31\x88\x47\xa2\xe2\xd7\xa9\xf6\x45\x01\x00\x3e\xb0\xa7\xc0\x93\xa8\x6b\xcb\xe1\x12\xf3\x24\xcd\xbc\x0b\x3b\x1d\x34\x79\xe9\x0a\x9d\x64\xb6\x72\x21\xb8\xed\xd5\x7f\xc7\xbb\x66\xed\xd0\x37\x93\x7c\xe5\x25\xca\x28\x2e\x50\xcd\xe5\x71\x9c\xb6\x3d\xc5\xf5\x35\xac\x36\xd8\x1f\x2d\xf3\x2a\x4b\x7c\x0c\x9c\xb9\x12\x2c\x6f\x4f\x0c\x7a\x92\x64\xd7\xf0\x49\xa0\x05\xda\xa2\xb7\x1e\x39\xf4\xa9\x22\xbd\xf0\xe4\xea\xff\x53\x28\xd5\xda\x2e\x36\x5e\x76\xad\xd5\x64\x7a\x01\x71\xe7\xf3\x15\x67\x73\xf9\xb4\x32\x5a\x41\x91\xa7\x95\x36\x5a\x76\xfd\xb3\xf6\x11\xdb\xc7\x74\xd6\xec\xc0\xaf\xde\x45\x8e\xbf\x1b\x65\xe9\x9a\xbd\x8b\x5a\x50\x25\xdb\xe1\x97\x26\xb8\x54\x37\x6d\xf3\x91\x15\xeb\x17\x0e\xd0\x56\x38\x54\xa4\xfe\x38\xa1\xd1\xf6\xf9\x0d\xf5\xfd\xe8\x13\x99\x0d\x4e\x87\x9b\xc9\xc8\xa2\x4d\xd2\xcd\x71\x9a\x7b\x10\x5f\xbc\x91\x0a\x85\x9a\xe5\x2c\xab\x91\xfe\x1f\x83\x5b\x91\x21\xab\x18\x95\x66\xb3\x1e\x51\xbb\xed\x3b\xef\x86\xd6\x1b\xfd\x15\xb3\x5e\xfb\x5e\x64\xc3\xbf\x43\xd1\xfd\x1e\x0a\xfc\x0c\x00\x00\xff\xff\xf5\xa4\x7a\x20\x7b\x04\x00\x00" func flowtokenSetup_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -1920,11 +1860,11 @@ func flowtokenSetup_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/setup_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x26, 0x3b, 0x9, 0x19, 0x12, 0xf7, 0x3d, 0x9c, 0x52, 0x2d, 0x2c, 0x62, 0x9c, 0x34, 0xbd, 0x30, 0x11, 0xa0, 0xaa, 0xb7, 0x70, 0xa, 0xf6, 0xc6, 0xed, 0xe4, 0x7d, 0x3f, 0xe5, 0xca, 0x4a, 0xf0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd, 0x7f, 0xe2, 0x5c, 0x57, 0xa8, 0xac, 0xa8, 0xe3, 0xb8, 0xd6, 0x96, 0x91, 0x2e, 0x58, 0x58, 0x1, 0xf3, 0x34, 0xd2, 0x9e, 0xcf, 0x4a, 0xfd, 0xec, 0xea, 0x87, 0xa2, 0x4d, 0xa5, 0xfb, 0xc9}} return a, nil } -var _flowtokenTransfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x41\x4f\xdc\x3c\x10\x3d\x93\x5f\xf1\xbe\x3d\x40\x22\x7d\x24\x97\x4f\xdf\x61\x45\xa1\xb4\x15\xbd\x23\x4a\xcf\x4e\x32\xd9\x58\xcd\xda\xd1\x78\xc2\x82\x10\xff\xbd\xb2\x1d\x87\x0d\x48\xa5\x7b\x59\x65\x3c\xf3\xde\x9b\xf7\xec\xaa\xc2\x5d\xaf\x1d\x84\x95\x71\xaa\x11\x6d\x0d\xb4\x83\x82\xd0\x7e\x1c\x94\x10\x3a\xcb\xfe\xf3\xe8\x5c\x7a\x25\x59\x55\xa1\xb1\xd3\xd0\xa2\x26\x4c\x8e\x5a\xd4\x4f\x50\xe6\xc9\x1a\x82\x58\x38\x32\x2d\xc4\xfe\x22\xe3\xfc\xa7\x32\x56\x7a\x62\xa8\xa6\xb1\x93\x09\xc3\x1e\x04\xbd\x72\xa8\x89\x0c\x1c\x09\xa6\xd1\xb7\x32\x35\xa4\x1f\x68\x1e\x2e\xb3\xaa\xca\x82\x46\xc2\x41\x4b\xdf\xb2\x3a\x40\xed\x3d\x08\x94\xa7\xe8\x29\x81\xa2\x63\xbb\xc7\x8e\xe4\xfa\x95\xe4\x90\x14\xfa\xbe\x51\xb1\xda\x93\x10\x07\x49\xbe\x72\xb4\x54\x96\xe9\xfd\x68\x59\x70\x33\x99\x9d\xae\x07\xba\xf3\xfc\x11\x73\xb3\xaa\x6d\x96\xce\xc1\x1e\x56\x5d\xe9\x7b\x93\x65\x47\xc8\x79\x94\xbb\xc5\x8f\x1b\xfd\xf8\xff\x7f\xff\x42\xec\x16\xd7\x6d\xcb\xe4\x5c\x81\xe7\x2c\x03\x80\x79\xc5\x7b\x35\x0d\x02\x26\x67\x27\x6e\x68\xf6\xc8\x0e\xad\x8b\x72\x67\x3f\x7d\x55\x31\xa1\x26\x6d\x76\x71\x89\x8e\x98\xa9\x0d\x50\x03\x89\xb7\x5f\x02\xd6\x16\x9f\x57\xe2\xcb\x50\x8d\x9c\x23\xd3\xa8\x98\x72\xa7\x77\x86\x78\x0b\x35\x49\x9f\x7f\xb1\xcc\xf6\x70\xaf\x86\x89\x0a\x9c\xce\x56\x2e\x32\x67\xa9\xdf\x49\xa0\xc0\xd4\x11\x93\x69\x28\xd9\x19\x81\xce\x1c\x9c\x58\xa6\x16\x0f\x81\x2b\xcd\x79\x5d\xa1\x72\x4b\x1d\x3e\xcd\xcd\xa5\x6f\x55\x3b\x2a\xeb\xc0\x7b\x11\x34\xac\x15\xff\x9c\x63\x2f\x70\xba\x38\x1c\xd7\xb8\xcc\xbd\xf1\x5b\x54\x33\x48\xd5\xa5\xf3\x70\x5c\x64\x27\x27\x27\x57\x57\x18\x95\xd1\x4d\xbe\xf9\x1a\xee\x82\xb1\x82\xc8\xf5\x5e\xbf\x3d\x44\xf9\x61\xfa\x9f\x4d\xb1\xda\x39\xc9\x48\x29\x84\xcc\x3f\xde\xda\xd1\xd0\x95\x4b\x1c\xb8\x38\x5f\x3c\x28\xd3\x7d\x5e\x2e\x48\xfc\x2f\xc2\xec\x4b\x24\xa7\x47\x6a\x26\xa1\xbf\xf3\x9f\xa9\xd1\xa3\x26\x23\x67\x0e\xb7\xf1\x19\xf1\xca\xfe\xf9\x6d\x71\x4c\xe0\xe8\xad\xe4\x62\x8b\xa5\xd3\xff\xca\x46\x8d\xaa\xd6\x83\x16\x4d\x2e\x85\x73\xfa\xbc\x4e\x26\x71\xbc\x5c\xe6\xd5\x38\xd5\x83\x6e\x5e\x13\x48\x67\x1f\x87\x10\xfb\xfe\xbc\x4d\x30\xef\x4d\x20\xdf\x68\xb4\x4e\x4b\xe8\x4d\x56\x9a\x94\x8e\x36\xef\x30\xf8\xad\x23\x47\x6e\x94\x6d\x04\x9b\x2f\xd4\xc5\xf9\x3a\xb6\x14\xc9\x4b\xf6\x3b\x00\x00\xff\xff\xf7\x2a\x53\x84\x2f\x05\x00\x00" +var _flowtokenTransfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xc1\x6e\xdb\x3a\x10\x3c\x47\x5f\xb1\x2f\x87\x17\x19\x68\xa4\x1e\x8a\x1e\x8c\x34\xa9\x9b\xc4\x41\xd1\x22\x05\x1c\xa7\x3d\x53\xd2\x4a\x22\x2a\x93\xc2\x72\x15\xd9\x08\xfc\xef\x05\x49\x51\xb1\x1c\xa0\xa9\x2f\x86\xc8\xd9\xd9\xd9\x99\x65\x9a\xc2\xba\x96\x06\x98\x84\x32\x22\x67\xa9\x15\x48\x03\x02\x18\x37\x6d\x23\x18\xa1\xd4\x64\x3f\x0f\xee\xb9\x16\x1c\xa5\x29\xe4\xba\x6b\x0a\xc8\x10\x3a\x83\x05\x64\x3b\x10\x6a\xa7\x15\x02\x6b\x30\xa8\x0a\x60\xfd\x1b\x95\xb1\x9f\x42\x69\xae\x91\x40\xe4\xb9\xee\x94\x2b\xb6\x24\x50\x0b\x03\x19\xa2\x02\x83\x0c\x5d\x6b\xa1\x84\x39\xca\x27\x1c\x8a\x93\x28\x4d\x23\xa7\x11\xa1\x97\x5c\x17\x24\x7a\x10\x1b\x4b\x02\xc2\xb6\xa8\x31\x90\x42\x49\x7a\x03\x15\xf2\xe2\xa5\x49\x1f\x14\x5a\x5c\x2b\x48\x6c\x90\x91\x9c\x24\x7b\x72\x30\x54\x14\xc9\x4d\xab\x89\x61\xd9\xa9\x4a\x66\x0d\xae\x6d\x7f\xcf\xf9\x7e\xbb\x7c\xbc\xbf\xfb\xfa\xe5\xfb\xed\xfa\xc7\xb7\xdb\xfb\xc5\xcd\xcd\xea\xf6\xe1\x61\x2c\x68\x74\x3f\x01\x4f\x40\xd1\x41\x8f\xd8\x0b\x9f\xc3\xe3\x52\x6e\x3f\x7e\x78\x07\xac\xe7\xb0\x28\x0a\x42\x63\x66\xf0\x1c\x45\x00\x00\xc3\xb0\x3f\x45\xd7\x30\x10\x1a\xdd\x51\x8e\x83\x5b\xba\x29\x8c\x17\x3e\x38\x6b\x4f\x05\x21\x64\x28\x55\xe5\xc7\x29\x91\x08\x0b\x47\xd5\x20\xdb\x20\xd8\x71\xcd\xe1\xf3\x64\xb4\xc4\x9d\xfa\x9e\x2d\x61\x2b\x08\x63\x23\x2b\x85\x34\x87\x45\xc7\xf5\xe0\xe2\xa8\x6b\xd0\x76\x87\x0c\x02\x08\x4b\x24\x54\x39\x06\x27\x7d\xe5\x99\x01\xc3\x9a\xb0\x80\x27\x47\x1e\xea\xac\x10\x77\xb2\xc2\x12\x3e\x0d\xe0\x24\xd3\x44\xba\xbf\xf8\x7f\x34\xd0\x4b\xba\x8c\xad\x8f\x73\x48\x2d\x95\xa8\x30\x2d\xc3\xbd\xbb\x9e\x45\x27\x27\x27\x57\x57\xd0\x0a\x25\xf3\xf8\xf4\xda\x25\xac\x34\x83\xa7\x7b\x2d\x4d\xf7\x5e\x99\xab\xfe\xef\x74\x36\x19\xe7\x57\xd8\xa9\xc1\x51\x17\xe1\xdb\x03\x19\x6c\xca\x64\xb4\x16\x2e\xce\xc7\xf1\x92\xb0\xa5\x63\xd8\xfe\x7f\xe6\x6a\xf7\xbe\x39\x6e\x31\xef\x18\xff\xcd\x5a\xc2\x5c\xb6\x12\x15\x9f\x19\x58\xf9\xc7\x41\x13\x67\x87\x17\x43\xde\xdc\x83\x17\x10\xb3\x9e\x8d\x48\xfb\x4b\x2a\xe4\x6b\xd1\x8a\x4c\x36\x92\x77\x71\xda\x76\x59\x23\xf3\x17\x83\x03\xfd\x51\x55\x08\xea\x79\xba\x40\x01\xbd\xbf\x8c\xdf\x0e\xc5\x43\xff\x3e\x9d\x33\xf3\x28\xa0\x1b\x6c\xb5\x91\xec\xb0\xc1\x5a\x15\xd2\x92\xea\x15\x07\x1d\x3b\x74\xe0\x4e\x52\x78\xb2\x61\xc1\x2e\xce\xa7\x31\x86\x88\xf6\xd1\x9f\x00\x00\x00\xff\xff\xab\x4d\x31\xba\x15\x05\x00\x00" func flowtokenTransfer_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1940,11 +1880,11 @@ func flowtokenTransfer_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/transfer_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0x6a, 0x53, 0x3a, 0xa2, 0xb8, 0xe7, 0x84, 0x84, 0xde, 0x4c, 0x92, 0xe8, 0xa8, 0x54, 0x49, 0xdf, 0xa7, 0x97, 0xe, 0x83, 0x7a, 0x21, 0xad, 0xba, 0x30, 0x65, 0xe5, 0x5b, 0xf4, 0x7d, 0x8b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x85, 0xa4, 0x80, 0x7b, 0x7, 0xe0, 0x6e, 0xa7, 0xff, 0xc4, 0x37, 0xf4, 0x66, 0x87, 0x8a, 0x20, 0x73, 0x73, 0xdb, 0x44, 0x60, 0xdd, 0xfe, 0x20, 0x1c, 0x22, 0x9c, 0x38, 0x17, 0x58, 0x62, 0xa3}} return a, nil } -var _idtablestakingAdminAdd_approved_and_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x4d\x6f\xe3\x36\x10\x3d\x4b\xbf\x62\xd6\x87\xad\x8c\x16\x32\xf6\x6a\xd4\x5d\xa4\x35\x0a\x08\x08\x16\xc5\x7a\xd1\x4b\x90\x03\x4d\x8e\x2c\xb6\x34\x47\x20\x47\x51\x82\xc0\xff\xbd\x18\x4a\xf2\x47\xa2\xa0\xbc\x18\x30\xdf\xbc\x79\x7c\xf3\x46\xf6\xd8\x52\x60\xf8\xd3\x51\x5f\x6d\x7f\xa8\xbd\xc3\x1d\xab\x7f\xad\x3f\x40\x1d\xe8\x08\x8b\xf7\x17\x8b\x3c\x5f\xad\x56\xf0\xa3\xb1\x11\x38\x28\x1f\x95\x66\x4b\x1e\x94\x31\x11\x3c\x19\x84\x6a\x1b\x81\x09\xb8\x41\x70\x36\x32\x50\x0d\xaa\x6d\x03\x3d\xa1\x49\x80\x08\xd6\x27\x0e\x41\x54\x5b\x60\x61\x2f\x21\xfd\x55\x31\x28\x17\x09\xac\xd7\x01\x55\xc4\x08\xd1\x11\x83\xb3\x47\xcb\x31\x21\xf6\x2f\xa9\xce\x77\xc7\x3d\x06\xe1\x1e\x28\xfb\x86\x40\x05\x14\x19\x68\x04\x38\xd0\xd5\xa0\xfc\x8b\xa0\xa4\x46\x34\x58\x73\x56\xa1\x5c\x40\x65\x5e\x00\x9f\x45\xa5\xf5\x37\x7a\x7e\x01\x6e\xec\xd0\xf1\xfa\x95\xbd\x75\x0e\x3c\x31\x04\x7c\xc2\xc0\x50\x58\x83\xc7\x96\x18\x3d\x2f\xf3\xfc\x0a\x59\x78\xec\xef\xc6\x57\x57\xdb\xb8\x86\x87\x1d\x07\xeb\x0f\x8f\x4b\x78\xcd\x73\x00\x80\xd5\x0a\xee\x49\x2b\x07\x4f\x2a\x58\x69\x09\x35\x05\x50\x10\xb0\xc6\x80\x5e\xe3\x64\x62\xb5\x85\x34\x00\xb8\x33\x47\xeb\x81\xf6\xff\xa0\xe6\x44\xe1\x90\x41\xc9\x9f\xdf\xb1\x5e\xc3\xe7\xf7\xc3\x2a\x53\xc9\xd0\xaf\x0d\xd8\xaa\x80\x85\xd2\x9a\xd7\xa0\x3a\x6e\x8a\xdf\x29\x04\xea\xff\x56\xae\xc3\x25\x7c\xbe\xd3\x9a\x3a\xcf\x22\x10\xc6\x23\x7e\x27\xcc\x9c\x2e\xf5\x56\x8e\x9c\x88\xae\x2e\x27\x4d\xb0\x01\xe9\x56\x46\xa6\xa0\x0e\x58\x0e\x5c\xbf\x7e\x28\xf4\xb7\x42\x52\xb7\x9e\x89\x63\x39\xfe\x26\xd8\x6e\xa0\xfb\x4b\x71\xb3\x3c\x37\x96\xf3\xf5\x2b\xb4\xca\x5b\x5d\x2c\xfe\xa0\xce\x99\x34\xa8\x51\xff\x8d\xfa\x38\x66\x3c\xe9\x5c\x0c\x1c\xa7\xc1\x25\x7c\x46\xdd\x31\xc2\x6b\x9e\x65\x62\x6f\x0a\x87\x34\xbe\xcc\x12\x36\x73\x02\x0f\xc8\x13\xe6\xde\x46\x2e\x96\x79\x96\x65\x73\x82\x1c\x29\x73\x59\x08\xd9\x90\xc5\x32\x1f\xbb\x49\xd8\xef\x53\xd6\x3f\x6c\xf2\x9d\x1c\xee\xce\xb0\x22\x95\xae\x56\x92\xfb\x14\x75\x8f\xfd\xb4\x85\xd0\x37\x56\x37\x60\x08\xa3\xff\x89\xe7\xe3\x3e\xea\x48\x32\x46\x22\x6f\xce\xdb\x97\x20\x5a\x79\x63\x8d\x62\x1c\x78\x87\x55\x4c\xb0\xab\xd5\x94\xb5\xfc\x32\x10\x48\x8a\x51\xe9\x06\x34\x85\x80\xb1\x25\x6f\xc4\xeb\x54\x3c\x6c\x67\x96\x09\xc6\x63\xff\x8d\x0c\x56\x5b\xd1\x72\xbb\x2d\xc9\xfd\xcc\xd6\x73\xee\x3f\x9c\xeb\x1e\xe1\xd3\x06\xbc\x75\x63\x5e\xb3\x2c\xd3\xe4\xd9\xfa\x0e\xa5\xfa\x24\xc6\x24\x53\xa5\x73\xe5\x6b\x9a\xb7\xf4\xdb\x78\x5b\x24\xd8\x76\x7d\xd1\x95\xac\xcd\x2e\x23\x79\x98\x88\xca\x40\x0e\x1f\x61\x03\x1f\xde\x7d\x82\x9f\xe1\x4b\x2a\xff\x9f\x17\x6c\x80\x43\xd2\x7b\x1a\xe7\x18\x91\xaf\x07\x33\x04\x64\xda\xb8\xce\xcb\x37\x88\x2e\xbe\xa4\x31\x5c\x8d\x3c\xce\xef\x61\x19\xdf\x84\x73\x46\xd5\x14\xa4\x9d\x38\x86\xfd\xcd\x77\x37\xcb\xde\xd1\x5d\x45\xf0\xe2\xc2\xfa\xca\x91\x69\xab\x4e\xff\x05\x00\x00\xff\xff\xa0\x1b\xa9\x9a\x63\x06\x00\x00" +var _idtablestakingAdminAdd_approved_and_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x4d\x6b\xdb\x40\x10\x3d\x4b\xbf\x62\x92\x43\x2b\xd3\x62\x37\x57\x53\x37\xb8\x55\x0a\x02\x13\x4a\xec\x4b\x09\x39\xac\x77\x47\xd6\xb6\xeb\x5d\xb1\x3b\x8e\x12\x82\xff\x7b\x99\x95\xe4\x8f\x44\xa1\x7b\x11\x48\x6f\xde\x3c\xbd\x79\xb3\x7a\x5b\x3b\x4f\xf0\xd3\xb8\xa6\xc8\x57\x62\x6d\x70\x49\xe2\xaf\xb6\x1b\x28\xbd\xdb\xc2\x97\xa7\x22\xbf\xb9\x5d\x15\xab\xdf\xab\xf9\xf7\xc5\xcd\x3c\xcf\xef\x6e\x96\xcb\x34\x9d\x4c\x26\xb0\xaa\x74\x00\xf2\xc2\x06\x21\x49\x3b\x0b\x42\xa9\x00\xd6\x29\x84\x22\x0f\x40\x0e\xa8\x42\x30\x3a\x10\xb8\x12\x44\x5d\x7b\xf7\x88\x2a\x02\x02\x68\x1b\x39\x18\x51\xe4\x40\xdc\x78\x0c\xf1\x55\x41\x20\x4c\x70\xa0\xad\xf4\x28\x02\x06\x08\xc6\x11\x18\xbd\xd5\x14\x22\x62\xfd\x1c\xeb\xec\x6e\xbb\x46\xcf\xdc\x2d\x65\x53\x39\x10\x1e\x59\x06\x2a\x06\xb6\x74\x25\x08\xfb\xcc\x28\xae\x61\x0d\x5a\x1d\x54\x08\xe3\x51\xa8\x67\xc0\x27\x56\xa9\xed\x99\x9e\xcf\x40\x95\x6e\x3b\x9e\xfe\x65\xa3\x8d\x01\xeb\x08\x3c\x3e\xa2\x27\xc8\xb4\xc2\x6d\xed\x08\x2d\x8d\xd2\xf4\x04\x99\x59\x6c\xe6\xdd\x5f\x17\x79\x98\xc2\xfd\x92\xbc\xb6\x9b\x87\x11\xbc\xa4\x29\x00\xc0\x64\x02\x0b\x27\x85\x81\x47\xe1\x35\xb7\x84\xd2\x79\x10\xe0\xb1\x44\x8f\x56\x62\x6f\x62\x91\x43\x9c\x0d\xcc\xd5\x56\x5b\x70\xeb\x3f\x28\x29\x52\x18\x24\x10\xfc\xf2\x0e\xcb\x29\x7c\x78\x3b\xc7\x71\x2c\x69\xfb\xd5\x1e\x6b\xe1\x31\x13\x52\xd2\x14\xe6\x3b\xaa\xe6\x52\xba\x9d\x25\x56\x04\xdd\x61\x83\x9d\xf7\xae\x19\x12\x22\x5e\xf7\xe7\x13\xd0\x94\xe3\x5e\x04\xcc\x80\xe9\xc7\x2d\xc7\xd7\x77\x15\x7d\xcb\x38\x60\xd3\x81\xe4\x8d\xbb\x67\x84\x2d\xc9\x79\xb1\xc1\x5f\x82\xaa\xd1\xa1\x21\x9f\xeb\x6b\xa8\x85\xd5\x32\xbb\xfc\xe1\x76\x46\xc5\x89\x74\xba\xcf\x54\x87\x2e\xce\x51\xdf\x65\xcb\xb1\x6f\xed\xc0\x27\x94\x3b\x42\x78\x49\x93\x84\x7d\x8c\x29\xe0\xc6\xc7\xa1\xc1\x6c\x48\xe0\x06\xa9\xc7\x2c\x74\xa0\x6c\x94\x26\x49\x32\x24\xc8\x38\xa1\x8e\xc9\xe7\x55\xb8\x1c\xa5\x5d\x37\x4e\xf5\x22\x86\xfa\xdd\x26\x77\xce\xe0\xf2\x00\xcb\x62\xe9\x64\xc2\x01\x8f\x99\xb6\xd8\xf4\xeb\x06\x4d\xa5\x65\x05\xca\x61\xb0\x1f\x69\x38\xd7\x9d\x8e\x28\xa3\x23\xb2\xea\xb0\x66\x11\x22\x85\x55\x5a\x09\xc2\x96\xb7\xdd\xb9\x08\x3b\xd9\x41\xde\xbf\xab\x96\x80\xe3\x8a\x42\x56\x20\x9d\xf7\x18\x6a\x67\x15\x7b\x1d\x8b\xdb\x35\x4c\x12\xc6\x58\x6c\x6e\x9d\xc2\x22\x67\x2d\xe7\x6b\x11\xdd\x4f\x74\x39\xe4\xfe\xfd\xa1\xee\x01\x2e\x66\x60\xb5\xe9\x72\x9a\x24\x89\x74\x96\xb4\xdd\x21\x57\xef\xd9\x98\x68\x2a\x77\x2e\x6c\xe9\x86\x2d\xbd\xed\xbe\x66\x07\xde\x68\x69\x72\x1c\xc5\x7d\x4f\x30\xf6\xce\xe0\x03\xcc\xe0\xdd\x6f\x17\xf0\x09\xae\x62\xf9\x7f\x94\xcf\x80\x7c\xd4\xb9\xef\xe6\x17\x90\x4e\x07\xd2\x06\xa3\xdf\xb0\x9d\xe5\x4b\xc6\x1d\xfd\x88\xf6\x9f\x8c\x3a\x0c\xef\xdd\x38\xbc\x0a\xe5\x80\xaa\x3e\x40\x4b\x76\x0a\x9b\xb3\x8b\x35\x49\xde\xd0\x9d\x44\xef\xe8\xc2\xf4\xc4\x91\x7e\x9b\xf6\xff\x02\x00\x00\xff\xff\x1a\xe3\xcc\x49\x46\x06\x00\x00" func idtablestakingAdminAdd_approved_and_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -1960,11 +1900,11 @@ func idtablestakingAdminAdd_approved_and_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/add_approved_and_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0x5c, 0xc3, 0x2d, 0xdd, 0xd4, 0x3f, 0x6, 0xb, 0x28, 0xd4, 0x83, 0xa8, 0x94, 0xed, 0x21, 0x85, 0x73, 0x1f, 0x61, 0xf0, 0x2f, 0xba, 0x6c, 0xed, 0xc4, 0x1f, 0xbe, 0x46, 0xf9, 0x40, 0x80}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc8, 0xe6, 0xc4, 0xf4, 0x46, 0x26, 0x18, 0x6a, 0x26, 0xbd, 0xc5, 0x90, 0x12, 0x8e, 0x38, 0x0, 0x49, 0xa, 0x72, 0x2a, 0x83, 0x1e, 0xd0, 0x97, 0xae, 0x62, 0x87, 0x70, 0x94, 0xe8, 0x16, 0x1b}} return a, nil } -var _idtablestakingAdminAdd_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x93\x51\x6b\xdb\x30\x14\x85\x9f\xed\x5f\x71\xc8\x43\xe7\xc0\xb0\xdf\xc3\xba\x92\x2d\x0c\x02\x65\x8c\xa5\xec\xa5\xf4\x41\xb1\xae\x63\x6d\x8e\x64\xa4\xeb\xb8\xa5\xe4\xbf\x8f\x2b\xdb\x21\x69\x33\xa6\x17\x83\x75\xef\xb9\x47\x47\x9f\xcc\xbe\x75\x9e\xf1\xad\x71\xfd\x7a\xf5\xa0\xb6\x0d\x6d\x58\xfd\x31\x76\x87\xca\xbb\x3d\x66\xef\x37\x66\x69\x5a\x14\x78\xa8\x4d\x00\x7b\x65\x83\x2a\xd9\x38\x0b\xa5\x75\x80\x75\x9a\xb0\x5e\x05\xb0\x03\xd7\x84\xc6\x04\x86\xab\xa0\xda\xd6\xbb\x03\xe9\x58\x10\x60\xac\x48\x48\xc1\x7a\x05\x16\xed\x1c\xf2\x67\x5d\x41\xd9\x17\x69\x90\x3d\x69\x31\xfa\xd4\xa4\x1a\x4f\x4a\xbf\x80\x9e\x45\xd4\xd8\x8b\xfe\x8f\xe0\xda\x84\xa8\x7a\xe6\xa9\x37\x4d\x03\xeb\x18\x9e\x0e\xe4\x19\x99\xd1\xb4\x6f\x1d\x93\xe5\x79\x9a\x9e\x55\x66\x46\x87\x05\x1e\x37\xec\x8d\xdd\x3d\xcd\xf1\x9a\xa6\x00\x50\x14\xb8\x77\xa5\x6a\x70\x50\xde\xc8\x18\x54\xce\x43\xc1\x53\x45\x9e\x6c\x49\xd3\x39\xd7\x2b\xc4\x88\xb0\xd4\x7b\x63\xe1\xb6\xbf\xa9\xe4\x28\xd1\x10\x43\xc9\xcf\x9f\x54\x2d\x70\xf3\x3e\xce\x3c\xb6\x0c\xf3\x5a\x4f\xad\xf2\x94\xa9\xb2\xe4\x05\x54\xc7\x75\xf6\xc5\x79\xef\xfa\x5f\xaa\xe9\x68\x8e\x9b\x65\x59\xba\xce\xb2\x18\xc4\xb8\x8a\x02\xdb\x58\x73\xcd\x97\x7a\x6b\x47\x56\xa0\xa6\xca\x27\x4f\xb8\x85\x4c\xcb\x03\x3b\xaf\x76\x94\x0f\x5a\x9f\xfe\x69\xf4\x73\x26\x5c\x2c\xae\x00\x93\x8f\xdf\x58\xb6\x19\xe4\x7e\x28\xae\xe7\xa7\xc1\xb2\xee\xee\xd0\x2a\x6b\xca\x6c\xf6\xd5\x75\x8d\x8e\xb7\x33\xfa\xbf\x70\x1f\x46\x0a\xa3\xcf\xd9\xa0\x71\x1c\x52\xa2\x67\x2a\x3b\x26\xbc\xa6\x49\x22\xf1\x0a\x1e\xc2\xdc\xed\x35\x53\x3b\xe2\xe5\x08\xdf\xbd\x09\x9c\xfd\xdf\x8d\x50\x36\x01\x3b\x00\x1c\x5f\xc2\x18\xd0\x6c\x9e\xa6\x49\x52\x14\xc2\x7b\x84\xd5\x52\x3f\x61\x8f\xbe\x36\x65\x0d\xed\x28\xd8\x0f\x7c\x09\x6c\x9a\x24\xc2\x8e\xa5\xfe\x7b\xb4\x2b\x00\x1b\x1d\xe2\x21\x92\xf1\x04\x8f\xa7\xdd\x27\xdc\x82\x7d\x47\x69\x92\x1c\xc7\x79\x81\x78\xb8\xd2\xe9\x29\x45\x6b\xe3\x3d\x77\x56\x70\x77\xd5\x30\x2b\xe6\x66\xf5\xb9\xb5\x70\xfd\xf6\xf3\xf0\x26\x9e\xd1\xc9\x94\xf7\xf1\x6f\x00\x00\x00\xff\xff\xba\x60\xb0\x0b\x1f\x04\x00\x00" +var _idtablestakingAdminAdd_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x93\x5f\x6b\xdb\x3c\x14\xc6\xaf\xed\x4f\xf1\xd0\x8b\xf7\x75\x60\xd8\xbb\x0e\xeb\x8a\x37\x77\x60\x28\x65\x34\xb9\x19\xa5\x17\x8a\x75\x1c\x6b\x73\x24\x23\x1d\xc7\x29\x25\xdf\x7d\x48\xb6\x43\xd2\x65\x4c\x37\x06\xe9\xfc\x79\xce\x73\x7e\x56\xbb\xce\x58\xc6\xb7\xd6\x0c\x65\xb1\x16\x9b\x96\x56\x2c\x7e\x29\xbd\x45\x6d\xcd\x0e\x1f\x0f\x65\x71\xff\xb8\x2e\xd7\x3f\xd6\xf9\x97\x87\xfb\xbc\x28\x9e\xee\x57\xab\x38\xce\x32\xac\x1b\xe5\xc0\x56\x68\x27\x2a\x56\x46\x43\x48\xe9\xa0\x8d\x24\x94\x85\x03\x1b\x70\x43\x68\x95\x63\x98\x1a\xa2\xeb\xac\xd9\x93\x0c\x01\x0e\x4a\xfb\x12\x3e\xa0\x2c\xc0\xbe\x6d\x0a\x7f\x53\xd6\x10\xfa\xd5\x27\xf8\x37\x9f\xa2\xe4\x29\x49\xb4\x96\x84\x7c\x05\x1d\x7c\x51\xa5\x2f\xf2\x3f\x80\x1b\xe5\x42\xd5\x33\x4d\x83\x6a\x5b\x68\xc3\xb0\xb4\x27\xcb\x48\x94\xa4\x5d\x67\x98\x34\x2f\xe2\xf8\x2c\x32\x51\xd2\x2d\xf1\xbc\x62\xab\xf4\xf6\x65\x81\xb7\x38\x06\x80\x2c\xc3\x83\xa9\x44\x8b\xbd\xb0\xca\xb7\x41\x6d\x2c\x04\x2c\xd5\x64\x49\x57\x34\xcf\x59\x16\x08\xee\x21\x97\x3b\xa5\x61\x36\x3f\xa9\xe2\x50\xa2\x25\x86\xf0\x97\x4f\x54\x2f\xf1\xdf\x9f\x4e\xa7\x21\x65\xec\xd7\x59\xea\x84\xa5\x44\x54\x15\x2f\x91\xf7\xdc\xe4\x55\x65\x7a\xcd\x5e\x11\xa6\x93\x65\xd8\x18\x6b\xcd\x70\x4d\x88\x78\xdf\xdf\x1f\x47\x6d\x9d\xce\x22\x70\x0b\x5f\x3e\x1d\x6b\x7c\xfa\xab\xa2\xcf\x89\x47\x60\x79\x85\x8d\x74\xfa\x86\xb0\x15\x1b\x2b\xb6\xf4\x5d\x70\xb3\x38\x35\xf4\xe7\xee\x0e\x9d\xd0\xaa\x4a\x6e\xbe\x9a\xbe\x95\x61\x0d\x93\xee\x0b\xd5\x6e\x02\x2e\xe8\xbb\x19\x6b\x1c\x47\x3b\xe8\x40\x55\xcf\x84\xb7\x38\x8a\xbc\x8f\x9e\x03\x0f\xd7\xed\x35\x51\x5b\xe2\x7c\xa2\xec\x41\x39\x4e\xfe\xad\xc6\xe3\x34\x93\x39\x92\x1a\xa0\x77\xe3\x44\x37\x8b\x38\x8e\xa2\x2c\xf3\x60\x07\x2a\x35\x0d\x33\xdf\x18\x1a\x55\x35\x90\x86\x9c\xfe\x9f\x2f\xc9\x8c\xa3\xc8\x43\xa2\x69\x78\x0c\x72\x3d\xa9\x4a\xba\x30\x44\x34\x4d\xf0\x7c\x7a\x7d\xc1\x2d\xd8\xf6\x14\x47\xd1\x71\xea\xe7\x88\xc7\x55\xce\xff\x4c\x90\x36\xed\xb7\xd7\x9e\x6b\x53\x8f\xbd\x82\x6f\x5a\x9e\x4b\x73\xd7\xb7\x9e\xba\x77\xf6\x4c\x4a\x66\xbf\x8f\xbf\x03\x00\x00\xff\xff\xb8\xd4\x12\x39\x0a\x04\x00\x00" func idtablestakingAdminAdd_approved_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -1980,11 +1920,11 @@ func idtablestakingAdminAdd_approved_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/add_approved_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc4, 0x2e, 0x15, 0x46, 0x80, 0xde, 0x18, 0xca, 0x68, 0xd8, 0xcb, 0xd0, 0xd8, 0xb5, 0x9c, 0x1c, 0x8d, 0x79, 0x2a, 0xfc, 0xfd, 0x40, 0x7c, 0xeb, 0xd1, 0x65, 0x4f, 0xc8, 0x1, 0xa7, 0x95, 0x8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0x5a, 0x78, 0xd4, 0xfa, 0x43, 0xe2, 0xe0, 0xa8, 0x42, 0xec, 0xc0, 0x92, 0x56, 0x5c, 0xb, 0x55, 0x70, 0x39, 0xaf, 0xd9, 0x49, 0x71, 0xb2, 0x12, 0x22, 0x40, 0xeb, 0x88, 0x3a, 0x49, 0x8c}} return a, nil } -var _idtablestakingAdminCapability_end_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x4d\x6b\xe4\x48\x0c\xbd\xfb\x57\x88\x3e\x04\x37\x34\x36\xbb\x2c\x7b\x30\xd9\x84\x6c\x67\x02\x81\x1c\x42\x3a\x33\xd7\x20\x97\xe5\x76\x4d\xec\x92\xa9\x92\xe3\x34\x21\xff\x7d\x28\x97\xed\xb4\xf3\x31\x53\x97\xa6\x91\xde\xd3\x93\xf4\x64\xdd\xb4\x6c\x05\xae\x6a\xee\xaf\x2f\xef\x31\xaf\x69\x27\xf8\xa8\xcd\x1e\x4a\xcb\x0d\xac\x3e\x06\x56\x51\x94\xa6\x70\x5f\x69\x07\x62\xd1\x38\x54\xa2\xd9\x40\xe7\xc8\x01\x82\x1b\xd1\x58\x34\xda\x80\xc2\x16\x73\x5d\x6b\x39\x78\x8c\x30\xb4\x78\x00\x4b\x3d\xda\xc2\x6d\x80\x4c\x01\x52\xd1\x1b\xa6\x1b\xa8\x36\x80\xa6\x98\x83\xd4\xb2\xaa\x92\x28\x4d\x3d\xc3\xb5\x80\xe2\x26\xd7\x86\xdc\x10\x6c\xf1\xf0\x70\x4c\xf7\x30\x53\x99\x02\x1a\x7e\xa2\x07\xe1\x47\x32\x0b\xa5\xce\x13\xf5\x95\x56\x95\x47\xb8\xcf\x15\x84\xb8\xa5\xb2\xf3\x29\x86\x0b\x72\xd0\x6b\xa9\x40\x1b\xd7\x95\xa5\x56\x9a\x8c\x0c\x30\xf2\x74\x53\x39\x07\x63\xbd\x9c\xa4\x27\x32\x90\x77\xea\x91\xc4\x8d\xda\xb1\x76\x0c\x8e\xc4\x0f\xca\x50\x1f\x92\x7d\x13\xdc\x09\x94\x6c\x07\x2d\x86\x9e\x25\x74\x1d\x45\x47\xb2\x63\x5d\xb8\x0c\x5e\x76\x62\xb5\xd9\x67\xf0\x3f\x73\xfd\xba\xf1\x2c\xb7\x03\x3c\x83\xef\x57\xfa\xf9\xdf\x7f\xd6\xf0\x12\x45\x00\x00\x69\x0a\x37\xac\xb0\x86\x27\xb4\xda\xaf\x6f\x28\x80\xbe\x27\xb2\x64\x14\xf9\x75\xf8\x7a\xd7\x97\x30\xac\x17\x2e\x86\x95\x71\xfe\x93\x94\x0c\x14\x35\x49\xd8\xe3\x1d\x95\x19\x9c\x7c\xb4\x42\x32\x40\x42\xbd\xd6\x52\x8b\x96\x62\x54\x4a\x32\xc0\x4e\xaa\x78\xcb\xed\xe1\x07\xd6\x1d\xad\xe1\xe4\x42\x29\xee\x8c\x78\x79\x30\xbe\x99\x7e\x3b\xbb\x04\xfe\x03\x8f\x4f\x9c\xb0\xc5\x3d\x25\x8a\xdb\xc3\xe9\x5b\xf8\x2c\xf6\xa6\xcc\x3e\x71\x6b\x32\xfe\x0e\x82\x76\x01\x7d\x8b\x52\xad\xe7\x6a\xfe\x9d\x9f\x43\x8b\x46\xab\x78\xb5\xe5\xae\x2e\xc0\xb0\xc0\x9e\xe4\xc8\xa6\xc1\xf5\x18\xc4\xc2\x28\x63\xb5\x8e\x66\x9a\x34\x85\x9c\xad\xe5\xfe\xb3\x51\xe2\xfb\x09\xfa\xe7\xa8\x2e\x93\x69\x8c\xbe\xc1\x65\xcb\x49\xa0\x3b\xfd\x72\xbc\x67\xf1\x9f\x9b\x18\x25\x2d\x04\x2d\x2e\x71\x15\x38\x5e\x43\x23\xf4\x4c\xaa\x13\x9a\xac\x32\x2d\x63\xbc\xa4\x5d\xd7\x34\x68\xfd\x2e\x16\xd2\x13\x85\xb5\xea\x6a\x14\xba\x0b\x79\x47\xba\x96\x89\x2d\x1e\xa6\x94\x92\xed\x37\x6f\xe5\xad\x9f\x27\xd9\x0c\xfe\xda\xbc\x2b\x93\xbd\xfb\x7f\x34\xeb\x25\xab\x23\x19\xa8\xee\xfd\xd1\x04\xd3\xc7\xb3\xfd\x7f\x87\xba\x68\x5b\xcb\x4f\x54\xdc\x68\x27\xfe\x8a\xbe\xcc\x25\x53\x4c\x36\x0a\xdf\x81\xf8\xcb\x54\x7f\xec\x83\x10\xe7\x35\x2c\x5b\xfc\x7b\x9a\xf5\x6b\xf4\x2b\x00\x00\xff\xff\xad\x41\xde\x8f\x5e\x05\x00\x00" +var _idtablestakingAdminCapability_end_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x53\xc1\x6a\xe3\x48\x10\xbd\xeb\x2b\x8a\x1c\x16\x05\x8c\xb4\xbb\x2c\x7b\x10\x99\x04\x27\x76\xc0\x10\x86\x10\x7b\x0e\x73\x0a\xa5\x56\xc9\xea\x89\xd4\x2d\xba\x4b\x91\x4d\xc8\xbf\x0f\xdd\x2d\x29\x56\x26\x99\xe9\x8b\xb1\xaa\xde\xab\x57\x55\xaf\x64\xd3\x6a\xc3\x70\x5b\xeb\x7e\xb3\xda\x61\x5e\xd3\x96\xf1\x49\xaa\x3d\x94\x46\x37\xf0\xf7\x61\xb3\x5a\x7f\xdd\x6d\x76\xdf\x77\xcb\xeb\xbb\xf5\x72\xb5\x7a\x58\x6f\xb7\x51\x94\xa6\xb0\xab\xa4\x05\x36\xa8\x2c\x0a\x96\x5a\x41\x67\xc9\x02\x82\x1d\xf0\x58\x34\x52\x81\xc0\x16\x73\x59\x4b\x3e\x3a\x0c\x6b\x68\xf1\x08\x86\x7a\x34\x85\x5d\x00\xa9\x02\xb8\xa2\x37\x4c\xe7\xa9\x16\x80\xaa\x98\x82\xd4\x6a\x51\x25\x51\x9a\x3a\x86\x0d\x83\xd0\x4d\x2e\x15\x59\x1f\x6c\xf1\xf8\x78\x4a\xf7\x38\x51\xa9\x02\x1a\xfd\x4c\x8f\xac\x9f\x48\xcd\x94\x5a\x47\xd4\x57\x52\x54\x0e\x61\x3f\x56\x10\xe2\x86\xca\xce\xa5\x28\x5d\x90\x85\x5e\x72\x05\x52\xd9\xae\x2c\xa5\x90\xa4\xd8\xc3\xc8\xd1\x8d\xe5\x2c\x0c\xf5\x72\xe2\x9e\x48\x41\xde\x89\x27\x62\x3b\x68\xc7\xda\x6a\xb0\xc4\x6e\x50\x8a\xfa\x90\xec\x9a\xd0\x1d\x43\xa9\x8d\xd7\xa2\xe8\xc0\xa1\xeb\x28\x3a\x91\x1d\xcb\xc2\x66\xf0\xb2\x65\x23\xd5\x3e\x83\x6b\xad\xeb\xd7\x85\x63\xb9\xf7\xf0\x0c\xbe\xdd\xca\xc3\xff\xff\x9d\xc3\x4b\x14\x01\x00\xa4\x29\xdc\x69\x81\x35\x3c\xa3\x91\x6e\xb3\xbe\x00\xba\x9e\xc8\x90\x12\xe4\xd6\xe1\xea\x6d\x56\xe0\x37\x0f\x4b\xbf\x32\x9d\xff\x20\xc1\x9e\xa2\x26\x0e\x7b\x7c\xa0\x32\x83\xbf\x7e\x75\x49\xe2\x21\xa1\x5e\x6b\xa8\x45\x43\x31\x0a\xc1\x19\x2c\x3b\xae\x96\x42\xe8\x4e\xb1\x53\x04\xc3\x9b\x18\x6f\x26\x63\xc0\x17\x70\x90\x44\xe8\xf6\x78\xf1\xf6\xf9\x32\x76\x0e\xcc\x3e\xb0\x66\x32\xfc\xfa\xda\x5b\xd6\x06\xf7\x74\x8f\x5c\x9d\x4f\x55\xdc\xbb\xba\x82\x16\x95\x14\xf1\xd9\x8d\xee\xea\x02\x94\x66\xd8\x13\x9f\x38\x32\x58\x1c\x83\x48\xb0\x81\xe8\xec\x3c\x9a\x68\xd2\x14\x72\x6d\x8c\xee\x3f\x9a\x1a\xbe\x1f\x96\x7b\x96\xea\x32\x19\x27\xe6\x1a\x9b\xb7\x9a\x04\xba\x8b\x4f\x27\x79\x19\xff\xb9\x89\x41\xd2\x4c\xd0\xec\xe8\xce\x02\xc7\x6b\x68\x84\x0e\x24\x3a\xa6\xd1\x15\xe3\x12\x86\xa3\xd9\x76\x4d\x83\xc6\xed\x60\x26\x3d\x11\x58\x8b\xae\x46\xa6\x87\x90\x77\xa2\x6b\x9e\xd8\xe2\x71\x4c\x29\xb5\x59\x3b\xd7\xde\xb8\x79\x92\xc9\xe0\x9f\xc5\xbb\x32\xd9\xbb\xff\x27\xb3\x9e\xb3\x5a\x62\x4f\xb5\x73\xf7\x11\xfc\x1d\x4f\x4e\xff\x1d\x6a\xd9\xb6\x46\x3f\x53\x71\x27\x2d\xbb\x83\xf9\x34\x97\x54\x31\xda\x28\x9c\x7c\xfc\x69\xaa\xbb\x6b\x2f\xc4\x3a\x0d\xf3\x16\xff\x1d\x67\xfd\x1a\xfd\x0c\x00\x00\xff\xff\xb9\xf6\xf9\xe9\x4b\x05\x00\x00" func idtablestakingAdminCapability_end_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -2000,11 +1940,11 @@ func idtablestakingAdminCapability_end_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/capability_end_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0xe8, 0x46, 0x80, 0xfa, 0x86, 0x18, 0x85, 0xdd, 0xa4, 0xf2, 0x3b, 0x47, 0x60, 0x5c, 0x35, 0x94, 0x4d, 0x3a, 0xa2, 0x2c, 0xc3, 0x36, 0x6b, 0x8c, 0x2a, 0xfb, 0xc5, 0x3d, 0x7b, 0x29, 0x9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0x21, 0xea, 0x77, 0xb, 0xd2, 0x13, 0x35, 0x6d, 0xf1, 0xd1, 0xa0, 0x41, 0xa2, 0xf5, 0x3d, 0x9a, 0xdc, 0xb2, 0x18, 0x94, 0x70, 0x3c, 0xa8, 0xca, 0xff, 0xf0, 0xee, 0x2e, 0x7f, 0xc0, 0xfc}} return a, nil } -var _idtablestakingAdminChange_candidate_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdc\x30\x10\x85\xef\xfe\x15\x8f\x3d\x04\x2f\x14\xfb\x52\x4a\x59\xda\x86\x34\xa1\xb0\x10\x4a\x69\xd2\xde\xc7\xf2\x78\xad\x56\xd6\x18\x69\xdc\x0d\x94\xfc\xf7\x22\xd9\x2e\xd9\xee\x76\x0e\x36\x48\x9a\xf7\x3e\xcd\x93\x1d\x46\x09\x8a\x4f\x4e\x8e\xfb\xbb\x47\x6a\x1c\x3f\x28\xfd\xb4\xfe\x80\x2e\xc8\x80\xcd\xf9\xc6\xa6\x28\xea\xba\xc6\x63\x6f\x23\x34\x90\x8f\x64\xd4\x8a\x87\xe9\xc9\x1f\x38\x42\x7b\x86\xb3\x83\x55\x48\x07\xcf\x47\x78\x69\xf3\x32\x29\x0c\x79\x34\x9c\x7e\xad\x6d\x49\x39\x66\xa9\x4e\x42\xee\xf2\xfc\xa4\xe0\x51\x4c\x5f\xbc\x10\x2e\x83\x38\xde\xe1\xdb\xde\xeb\xdb\x57\x49\xf0\x76\xed\xfe\x2c\x2d\xdf\x27\xa7\x79\xf7\xcd\xeb\x2d\x7e\x17\x05\x00\x24\xd5\x7b\x31\xe4\xf0\x8b\x82\x4d\xf0\xd9\x84\x10\xb8\xe3\xc0\xde\x30\x54\xb2\xe7\xfe\x0e\xf9\x72\xb8\x69\x07\xeb\x21\xcd\x0f\x36\x9a\x35\x1c\x2b\x28\x2d\x7e\xe5\x6e\x87\xab\xf3\x41\x54\xb9\x65\x36\x1c\x03\x8f\x14\xb8\x24\x63\x74\x07\x9a\xb4\x2f\x3f\x4a\x08\x72\xfc\x4e\x6e\xe2\x2d\xae\x6e\x8c\x91\xc9\x6b\x22\xc4\x52\x75\x8d\x26\x9f\xb9\xc4\x45\xff\xe2\xa4\x8a\xec\xba\x6a\x65\xc2\x7b\x24\xb7\x2a\xaa\x04\x3a\x70\x35\x6b\xbd\xfb\x2f\xe8\x87\x32\x25\xba\xbb\x10\x75\xb5\xfc\xf3\xb1\x87\x59\xee\x0b\x69\xbf\xfd\x6b\x9c\xea\xfa\x1a\x23\x79\x6b\xca\xcd\xad\x4c\xae\x85\x17\x5d\xf9\x4f\xe8\xe3\xf2\x7e\x32\xe7\x66\xd6\x78\x9e\xa7\xc4\x4f\x6c\x26\xe5\x17\x33\x38\xb9\x51\x15\x59\xcf\xc3\x5d\xf2\x4f\xdf\x1c\xff\x92\xf8\xc5\x87\xb0\xba\x3d\xff\x09\x00\x00\xff\xff\xa3\x37\xb2\x3b\xd7\x02\x00\x00" +var _idtablestakingAdminChange_candidate_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xd1\x8b\xd3\x40\x10\xc6\xdf\xf3\x57\x7c\xdc\x83\xf4\x40\x12\x1f\x44\xa4\xa8\x47\xbc\x54\x08\x94\x43\xae\xf1\xc1\xc7\xe9\x66\xd2\xac\x6e\x77\xc2\x66\x6a\x0b\x72\xff\xbb\xec\x26\x95\x3b\x5b\xe7\x21\x0b\x9b\xcc\xef\xfb\x66\xbe\xd8\xfd\x20\x41\xf1\xc5\xc9\xb1\xae\x1a\xda\x3a\xde\x28\xfd\xb4\x7e\x87\x2e\xc8\x1e\x6f\x4e\x75\xb5\x7a\x68\xea\xe6\x7b\x53\x7e\x5e\xaf\xca\xaa\x7a\x5c\x6d\x36\x59\x56\x14\x05\x9a\xde\x8e\xd0\x40\x7e\x24\xa3\x56\x3c\x4c\x4f\x7e\xc7\x23\xb4\x67\x38\xbb\xb7\x0a\xe9\xe0\xf9\x08\x2f\x6d\xba\x26\x85\x21\x8f\x2d\xc7\xa3\xb5\x2d\x29\x8f\x09\xd5\x49\x48\x5d\x9e\x4f\x0a\x1e\xc4\xf4\xd9\x33\xf0\x22\x88\xe3\x25\xbe\xd5\x5e\xdf\xbf\x8e\xc0\xfb\x73\xf7\x83\xb4\xbc\x8e\x4a\xd3\xdb\x77\x6f\x6f\xf1\x3b\xcb\x00\x20\x52\xd7\x62\xc8\xe1\x17\x05\x1b\xe7\x4a\x22\x84\xc0\x1d\x07\xf6\x86\xa1\x92\x34\xeb\x0a\x69\x6e\x94\xed\xde\x7a\xc8\xf6\x07\x1b\x4d\x0c\xc7\x0a\x8a\x97\x8f\xdc\x2d\xf1\xea\x72\x47\x79\x6a\x99\x04\x87\xc0\x03\x05\x5e\x90\x31\xba\x44\x79\xd0\xbe\x34\x46\x0e\x5e\xa3\x25\xcc\x55\x14\xd8\x4a\x08\x72\xbc\x66\x84\xfe\xd5\x8f\x35\xb2\xeb\xf2\xb3\x09\x7c\x44\xc4\xe7\x13\xe3\xc3\x7f\x1d\x7d\x5a\xc4\xf0\x96\x57\x52\xcd\xe7\x33\x7d\xb6\x51\x09\xb4\xe3\xaf\xa4\xfd\xed\x5f\xc1\x58\x77\x77\x18\xc8\x5b\xb3\xb8\xb9\x97\x83\x6b\xe1\x45\xcf\xbe\x5f\xb8\x1e\xe7\x5f\x25\xf9\xbb\x99\x18\x4f\xd3\x3a\xf8\xc4\xe6\xa0\xfc\x6c\xf6\x17\x93\xe4\x23\xeb\x65\x8a\x73\xd0\xf1\x99\x72\x9e\xa3\xbd\x9a\xf8\x59\xed\xe9\x4f\x00\x00\x00\xff\xff\x5b\x20\xd7\xc9\xc2\x02\x00\x00" func idtablestakingAdminChange_candidate_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -2020,11 +1960,11 @@ func idtablestakingAdminChange_candidate_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_candidate_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0x8b, 0x69, 0x1, 0xa6, 0x30, 0xfc, 0xb9, 0x20, 0x3, 0xb0, 0x87, 0xff, 0x80, 0xf, 0xa7, 0x89, 0xa7, 0x8, 0xf4, 0x47, 0xfe, 0xa0, 0xd6, 0x59, 0xa2, 0xaa, 0xa4, 0x16, 0x8e, 0xad, 0x7f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0xdb, 0xe5, 0xea, 0x4b, 0x2a, 0x6d, 0x5e, 0x1, 0x52, 0x63, 0xeb, 0x7e, 0x12, 0x89, 0x85, 0x22, 0x5d, 0xfd, 0x9c, 0xcf, 0xc8, 0x9a, 0x79, 0x46, 0xb0, 0x29, 0x10, 0x43, 0x55, 0x71, 0x62}} return a, nil } -var _idtablestakingAdminChange_cutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x0f\x1f\x82\x7c\x91\x2e\xa5\x07\xd3\x36\xa4\x09\x81\x40\x0f\xa1\x49\x7b\x1f\xaf\x46\xd2\xd6\xeb\x1d\x31\x3b\xaa\x02\x25\xff\xbd\xac\x64\x97\xb8\x76\xe6\x22\xd0\xce\xbe\xf7\xcd\xbc\xf5\xfb\x41\xd4\x70\x1f\x64\x7a\xb8\x7b\xa6\x6d\xe0\x27\xa3\x9d\x8f\x1d\x5a\x95\x3d\x56\xe7\x07\xab\xa2\xa8\x6b\x3c\xf7\x3e\xc1\x94\x62\x22\x67\x5e\x22\x5c\x4f\xb1\xe3\x04\xeb\x19\x6d\x90\x09\x26\x3b\x8e\x50\x9e\x48\x1b\xb8\xd1\x60\x3d\x19\xa2\x34\xb9\x89\x76\xbc\x18\x34\x1c\xb8\x23\x13\x4d\x45\xf1\x46\xae\x8c\x3c\xdd\x8e\xf6\xc8\xea\x38\x1a\x75\xbc\xc1\x8f\x7b\xff\xf2\xf1\xc3\x1a\x7f\x8a\x02\x00\xea\x1a\xdf\xc4\x51\xc0\x6f\x52\x9f\xf1\xd0\x8a\x82\xa0\xdc\xb2\x72\x74\x0c\x93\x19\xe6\xe1\x0e\x33\x3e\x6e\x9a\xbd\x8f\x90\xed\x2f\x76\x36\x4b\x04\x36\x50\xfe\xf9\x9d\xdb\x0d\xae\xce\x47\xad\xe6\x2b\x8b\xdf\xa0\x3c\x90\x72\x49\xce\xd9\x06\x34\x5a\x5f\x7e\x15\x55\x99\x7e\x52\x18\x79\x8d\xab\x1b\xe7\x64\x8c\x96\x01\x71\xa8\xba\xc6\x76\xee\xb9\xc4\x45\xff\xe3\xe4\x4a\x1c\xda\xea\xc8\x84\xcf\xc8\x6e\x55\x32\x51\xea\xb8\x5a\xb4\x3e\xbd\x0b\xfa\xa5\xcc\x2b\xdd\x5c\x08\xb3\x3a\x7c\xe7\xb6\xa7\x45\xee\x91\xac\x5f\xff\x33\xce\x75\x7d\x8d\x81\xa2\x77\xe5\xea\x56\xc6\xd0\x20\x8a\x1d\xf9\x4f\xe8\xd3\xe1\x85\xcc\x9c\xab\x45\xe3\x75\xd9\x12\xbf\xb0\x1b\x8d\xdf\xec\xe0\x64\xa2\x2a\xb1\x9d\xc4\x7a\x96\xf3\x51\xed\xf5\x6f\x00\x00\x00\xff\xff\xab\xef\x4a\xd9\x99\x02\x00\x00" +var _idtablestakingAdminChange_cutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x8f\x1c\x8a\x73\x91\x7a\x28\x3d\x98\xb6\x41\x8d\x1c\x30\x84\x12\x62\xf5\xd0\xe3\x78\x35\xfa\x53\xaf\x77\xcc\x68\x54\x19\x4a\xbe\x7b\x59\xc9\x2e\x71\xe3\xce\x65\x61\x99\x7d\xef\x37\xf3\xb6\xdb\x1f\x44\x0d\x0f\x5e\xc6\x75\x51\xd2\xd6\xf3\xc6\x68\xd7\x85\x06\xb5\xca\x1e\xef\x8f\xeb\x62\xf5\xad\x5c\x97\x3f\xca\xfc\xeb\xe3\x2a\x2f\x8a\xe7\xd5\x66\x93\x24\x59\x86\xb2\xed\x7a\x98\x52\xe8\xc9\x59\x27\x01\xae\xa5\xd0\x70\x0f\x6b\x19\xb5\x97\x11\x26\x3b\x0e\x50\x1e\x49\x2b\xb8\xc1\x60\x2d\x19\x82\x54\xb1\x89\x76\x3c\x5b\x54\xec\xb9\x21\x13\xed\x93\xe4\x95\xdc\x22\xf0\x78\x3f\xd8\x13\xab\xe3\x60\xd4\xf0\x12\xdf\x1f\xba\xe3\xc7\x0f\xb7\xf8\x9d\x24\x00\x90\x65\x78\x14\x47\x1e\xbf\x48\xbb\x48\x8e\x5a\x14\x04\xe5\x9a\x95\x83\x63\x98\x4c\x30\xeb\x02\xd3\x64\xc8\xab\x7d\x17\x20\xdb\x9f\xec\x6c\x92\xf0\x6c\xa0\x78\xf9\xcc\xf5\x12\xef\xde\x6e\x21\x9d\x9e\xcc\x7e\x07\xe5\x03\x29\x2f\xc8\x39\x5b\x22\x1f\xac\xcd\x9d\x93\x21\x58\x24\xc2\xa9\xb2\x0c\x5b\x51\x95\xf1\x1a\x08\xfd\xeb\x1f\xab\x67\x5f\xa7\x67\x08\x7c\x46\x94\x4f\x67\x8d\x4f\xff\x25\xfa\xb2\x88\xbb\x5b\x5e\xc9\x2d\x3d\x9d\x53\xdb\xc6\x44\xa9\xe1\x27\xb2\xf6\xf6\xaf\x61\xac\xbb\x3b\x1c\x28\x74\x6e\x71\x73\x2f\x83\xaf\x10\xc4\xce\xdc\x17\xd4\xfd\xe9\x33\x4c\x7c\x37\xb3\xc6\xcb\xbc\x0e\x3e\xb2\x1b\x8c\x5f\xcd\x7e\x31\x49\xda\xb3\x5d\xe4\xf7\x26\xd0\xb3\xda\xcb\x9f\x00\x00\x00\xff\xff\x8e\xa5\x1f\xd1\x84\x02\x00\x00" func idtablestakingAdminChange_cutCdcBytes() ([]byte, error) { return bindataRead( @@ -2040,11 +1980,11 @@ func idtablestakingAdminChange_cutCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_cut.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x44, 0x7a, 0x5d, 0xf4, 0xb4, 0x22, 0xad, 0xa1, 0x2e, 0x57, 0x29, 0x66, 0x47, 0x5f, 0xca, 0x24, 0x3b, 0xd2, 0x71, 0x49, 0xa8, 0xb4, 0x2c, 0x34, 0xd3, 0xf, 0x36, 0xa0, 0x2a, 0x5f, 0x58, 0x1a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0x16, 0x86, 0xfb, 0xee, 0x3b, 0xc9, 0x84, 0xcd, 0xcb, 0x97, 0x24, 0x33, 0xd9, 0xe3, 0x6b, 0x46, 0x7d, 0x40, 0x73, 0x24, 0x7a, 0x38, 0x38, 0xd5, 0x51, 0xa1, 0x58, 0x44, 0xaf, 0xb3, 0x7a}} return a, nil } -var _idtablestakingAdminChange_del_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdc\x40\x0c\xc5\xef\xfe\x14\x8f\x3d\x04\xef\xc5\xbe\x94\x1e\x96\xb6\x21\xed\x12\x08\xb4\x50\x92\xb4\x77\xed\x58\x5e\x4f\x77\x3c\xda\xca\x9a\x3a\x50\xf2\xdd\xcb\xd8\xeb\x92\x3f\x1b\x5d\x06\x46\x9a\xf7\x7e\x92\xc6\xf7\x47\x51\xc3\x75\x90\xf1\x66\x7b\x4f\xbb\xc0\x77\x46\x07\x1f\xf7\x68\x55\x7a\xac\x5e\x27\x56\x45\x51\xd7\xb8\xef\xfc\x00\x53\x8a\x03\x39\xf3\x12\xe1\x3a\x8a\x7b\x1e\x60\x1d\xa3\x0d\x32\xc2\xe4\xc0\x11\xca\x23\x69\x03\x97\x0c\xd6\x91\x21\x4a\x93\x8b\xe8\xc0\xb3\x41\xc3\x81\xf7\x64\xa2\x43\x51\x3c\x91\x2b\x23\x8f\xdb\x25\xf5\xcd\x47\xdf\xa7\x7e\x83\x1f\xd7\xfe\xe1\xfd\xbb\x35\xfe\x16\x05\x00\xd4\x35\xbe\x8a\xa3\x80\x3f\xa4\x3e\x13\xa2\x15\x05\x41\xb9\x65\xe5\xe8\x18\x26\x13\xcf\xcd\x16\x53\x07\xb8\x6a\x7a\x1f\x21\xbb\x5f\xec\x6c\x92\x08\x6c\xa0\x7c\x79\xcb\xed\x06\x17\xaf\xbb\xad\xa6\x27\xb3\xdf\x51\xf9\x48\xca\x25\x39\x67\x1b\x50\xb2\xae\xfc\x2c\xaa\x32\xfe\xa4\x90\x78\x8d\x8b\x2b\xe7\x24\x45\xcb\x80\x38\x45\x5d\x63\x37\xd5\x9c\xe3\xa2\x97\x38\x39\x06\x0e\x6d\xb5\x30\xe1\x23\xb2\x5b\x35\x98\x28\xed\xb9\x9a\xb5\x3e\xbc\x09\xfa\xa9\xcc\x53\xdd\x9c\xd9\x67\x75\x3a\xa7\xb2\xbb\x59\xee\x3b\x59\xb7\xfe\x6f\x9c\xe3\xf2\x12\x47\x8a\xde\x95\xab\x2f\x92\x42\x83\x28\xb6\xf0\x3f\xa3\x1f\x4e\x9f\x64\xe2\x5c\xcd\x1a\x8f\xf3\x94\xf8\x81\x5d\x32\x7e\x32\x83\x67\x1d\x55\x03\xdb\xcb\xcd\x66\x34\xbe\xe5\xdf\xc9\x2b\xf7\x1c\xed\xdc\xf6\x17\x8f\xc7\x7f\x01\x00\x00\xff\xff\xa7\xa0\xc3\xae\xb2\x02\x00\x00" +var _idtablestakingAdminChange_del_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6f\xd3\x40\x10\x85\xef\xfe\x15\x4f\x3d\xa0\xf4\x62\x73\x40\x1c\x22\xa0\x32\x38\x95\x22\x15\x84\x12\x73\xe0\x38\x59\x8f\xe3\x25\xf6\x4e\x18\x8f\x71\x24\xd4\xff\x8e\xd6\x4e\x50\x5b\xc2\x5c\x2c\x79\x67\xdf\xfb\x66\xde\xfa\xee\x28\x6a\xb8\x6f\x65\x5c\x17\x25\xed\x5a\xde\x1a\x1d\x7c\xd8\xa3\x56\xe9\xf0\xfa\xb4\x2e\x56\x5f\xca\x75\xf9\xbd\xcc\x3f\x3e\xac\xf2\xa2\xd8\xac\xb6\xdb\x24\xc9\x32\x94\x8d\xef\x61\x4a\xa1\x27\x67\x5e\x02\x5c\x43\x61\xcf\x3d\xac\x61\xd4\xad\x8c\x30\x39\x70\x80\xf2\x48\x5a\xc1\x0d\x06\x6b\xc8\x10\xa4\x8a\x4d\x74\xe0\xd9\xa2\xe2\x96\xf7\x64\xa2\x7d\x92\x3c\x91\x5b\x04\x1e\x8b\xcb\xd1\x67\x1f\x7c\x37\x74\x4b\x7c\xbb\xf7\xa7\xb7\x6f\x6e\xf1\x3b\x49\x00\x20\xcb\xf0\x20\x8e\x5a\xfc\x22\xf5\x11\x1e\xb5\x28\x08\xca\x35\x2b\x07\xc7\x30\x99\x78\xd6\x05\xa6\xe1\x90\x57\x9d\x0f\x90\xdd\x0f\x76\x36\x49\xb4\x6c\xa0\xf8\x73\xc3\xf5\x12\xaf\xfe\x5d\x44\x3a\x5d\x99\xfd\x8e\xca\x47\x52\x5e\x90\x73\xb6\x44\x3e\x58\x93\x3b\x27\x43\xb0\x48\x84\x73\x65\x19\x76\xa2\x2a\xe3\x35\x10\x7a\xe9\x1f\xab\xe7\xb6\x4e\x2f\x10\x78\x8f\x28\x9f\xce\x1a\xef\xfe\x4b\xf4\x61\x11\xd7\xb7\xbc\x12\x5d\x7a\xfe\x4e\x6d\x5b\x13\xa5\x3d\x7f\x25\x6b\x6e\xff\x1a\xc6\xba\xbb\xc3\x91\x82\x77\x8b\x9b\x4f\x32\xb4\x15\x82\xd8\x85\xfb\x19\x75\x7f\x7e\x0f\x13\xdf\xcd\xac\xf1\x38\xaf\x83\x4f\xec\x06\xe3\x27\xb3\x3f\x9b\x24\xed\xd9\x5e\x46\x18\xd1\x78\xc3\x3f\x07\xaf\xdc\x71\xb0\x6b\x31\x5f\x3c\x1e\xff\x04\x00\x00\xff\xff\x40\xe4\x7d\xfd\x9d\x02\x00\x00" func idtablestakingAdminChange_del_minimumsCdcBytes() ([]byte, error) { return bindataRead( @@ -2060,11 +2000,11 @@ func idtablestakingAdminChange_del_minimumsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_del_minimums.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xc8, 0x3f, 0x11, 0x11, 0x9f, 0xf0, 0xb8, 0x71, 0xbf, 0x48, 0xf0, 0x40, 0xd5, 0x29, 0xf3, 0x4e, 0xeb, 0xa2, 0x2c, 0xea, 0xa8, 0xad, 0x9e, 0x76, 0x65, 0x5f, 0xb6, 0xaf, 0x82, 0x71, 0x6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xc7, 0x8e, 0xf0, 0x6d, 0x55, 0xc2, 0xe2, 0xb7, 0x54, 0xf0, 0x39, 0x30, 0x8f, 0x8f, 0x12, 0xf2, 0x7e, 0xcf, 0xf7, 0x67, 0x4b, 0x8, 0x13, 0x23, 0x2, 0x72, 0x73, 0xcd, 0x73, 0xe9, 0x75}} return a, nil } -var _idtablestakingAdminChange_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x4c\x41\x22\x50\x4a\x11\x55\x43\xda\x10\x30\xb4\x50\xf2\xa7\x97\x90\xc3\x78\x3d\xb2\xb6\x95\x76\xd5\xdd\x51\x1c\x30\xfe\xee\x65\x57\x92\xab\xd4\xc9\x5c\x84\xb4\xb3\xef\xfd\x66\x9e\x74\xdb\x59\x27\xb8\x6e\xec\x6e\x75\x75\x47\xeb\x86\x6f\x85\x7e\x6b\xb3\x45\xe5\x6c\x8b\xc5\xe9\xc1\x22\x49\xf2\x1c\x77\xb5\xf6\x10\x47\xc6\x93\x12\x6d\x0d\x54\x4d\x66\xcb\x1e\x52\x33\xfc\x28\xd1\x6a\xd3\xb7\x7d\xeb\x51\x59\x07\x63\x37\x0c\xdb\xb1\x23\xb1\xce\x27\xc9\xec\x72\x6a\x78\xf7\x5d\x1b\x1d\x7a\x0b\x3c\xdc\x5f\xeb\xe7\x0f\xef\x1f\x97\xd8\x27\x09\x00\xe4\x39\xbe\x59\x45\x0d\x9e\xc8\xe9\x40\x12\xf5\x08\x8e\x2b\x76\x6c\x14\x43\x6c\xf4\x5d\x5d\x21\x92\xe2\x72\xd3\x6a\x03\xbb\xfe\xc5\x4a\xa2\x44\xc3\x02\x0a\x1f\x6f\xb8\x2a\x70\x76\x3a\x55\x16\xaf\x0c\x7e\x9d\xe3\x8e\x1c\xa7\xa4\x94\x14\xa0\x5e\xea\xf4\x8b\x75\xce\xee\x7e\x52\xd3\xf3\x12\x67\x97\x4a\xd9\xde\x48\x00\xc4\x58\x79\x8e\x75\xec\x79\x8d\x8b\xfe\xc7\x09\xe5\xb9\xa9\xb2\x89\x09\x25\x82\x5b\xe6\xc5\x3a\xda\x72\x36\x68\x7d\x7a\x13\xf4\x73\x1a\xe2\x29\x5e\xc9\x2d\x1b\x9f\xb1\xed\x76\x90\xfb\x41\x52\x2f\x8f\xc6\xa1\x2e\x2e\xd0\x91\xd1\x2a\x5d\x7c\xb5\x7d\xb3\x81\xb1\x32\xf1\xbf\xa0\x9f\x92\x8c\x9c\x8b\x41\xe3\x30\x6c\x89\x9f\x59\xf5\xc2\xb3\x1d\x84\x25\xb7\xc7\x18\xf7\xf7\x2b\x23\x1f\x0b\x0c\x69\x1e\x50\x62\x7f\x38\xb6\x3e\x91\x83\x2e\x10\x5b\x50\xe2\xfc\x78\x10\x92\x0d\xcb\xd2\x06\xb3\x9f\x62\x66\x12\x6a\x32\x79\xd0\x8f\x28\xc3\xdb\x8b\x53\x8d\x12\x1a\xef\x06\xf1\xf4\xfc\xdf\xe0\x23\xf8\xc9\xf2\x33\xcf\x32\x3a\x85\xe5\xf1\x0d\xff\xe9\xb5\xe3\x96\x8d\xf8\x74\xf2\x9a\x66\x3f\xfc\x0d\x00\x00\xff\xff\x0c\xd9\xc0\xe7\x32\x03\x00\x00" +var _idtablestakingAdminChange_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x51\xdd\x6a\xdb\x30\x14\xbe\xf7\x53\x7c\xf4\x62\xb8\x0c\xec\x15\xc6\x18\x66\x5e\xf1\xe6\x14\x0c\xdd\x18\x89\x7b\x31\x4a\x2f\x14\xe5\x38\xd6\x66\x4b\x9e\x74\xdc\x04\x42\xde\x7d\xc8\x3f\x59\xba\xb6\xe7\xc6\x58\x3a\xfa\x7e\x55\xdb\x19\xcb\xb8\x69\xcc\xae\xc8\x4b\xb1\x6e\x68\xc5\xe2\xb7\xd2\x5b\x54\xd6\xb4\x78\xb7\x2f\xf2\xc5\xf7\xb2\x28\x7f\x96\xd9\x97\xdb\x45\x96\xe7\xcb\xc5\x6a\x15\x04\x71\x8c\xb2\x56\x0e\x6c\x85\x76\x42\xb2\x32\x1a\xb2\x16\x7a\x4b\x0e\x5c\x13\xdc\x04\xd2\x2a\xdd\xb7\x7d\xeb\x50\x19\x0b\x6d\x36\x04\xd3\x91\x15\x6c\xac\x0b\x82\xb3\xc7\xa1\xa6\xdd\x37\xa5\x95\xdf\x4d\x70\x7f\x77\xa3\xf6\x1f\xde\x3f\x5c\xe2\x10\x04\x00\x10\xc7\xb8\x35\x52\x34\x78\x14\x56\x79\x91\x03\x9e\x80\xa5\x8a\x2c\x69\x49\x60\x33\xf0\x16\x39\x06\x13\xc8\x36\xad\xd2\x30\xeb\x5f\x24\x79\x80\x68\x88\x21\xfc\xe1\x92\xaa\x04\x6f\x9e\x1b\x8e\x86\x27\x23\x5f\x67\xa9\x13\x96\x42\x21\x25\x27\xc8\x7a\xae\x33\x29\x4d\xaf\xd9\x2b\xc2\x34\x71\x8c\xb5\xb1\xd6\xec\x5e\x12\x22\xfe\xe7\xf7\xe3\xa8\xa9\xa2\x59\x04\x52\x78\xf8\x68\xc4\xf8\xf4\xaa\xa2\xcf\xa1\x6f\x22\x79\xa1\xa2\x68\xfa\x0e\x6b\x2b\x36\x56\x6c\xe9\x87\xe0\xfa\xf2\x44\xe8\xe7\xfa\x1a\x9d\xd0\x4a\x86\x17\x5f\x4d\xdf\x6c\xa0\x0d\xcf\xba\x9f\xa8\x9e\x2b\x1b\xf4\x5d\x8c\x18\xc7\x31\x0e\xda\x93\xec\x99\xce\xbc\xfb\x34\xdb\x53\x5f\x87\xbb\x42\xf3\xc7\x04\x63\x6d\x47\xa4\x38\x1c\x4f\xab\x8f\xc2\x42\x25\x18\x56\x90\xe2\xea\x74\xe1\x2b\xf4\x21\x29\x8d\xb3\xf6\xcf\x48\xfc\xcc\x24\xf7\xea\x01\xa9\xff\x7b\x72\xab\x90\x42\xe1\xed\x08\x1e\x5e\xfd\x33\x3e\x09\x7f\x16\x7a\xe4\x88\x27\x26\x1f\x1e\x2d\xe9\x4f\xaf\x2c\xb5\xa4\xd9\x85\x33\xd7\xec\xfd\xf8\x37\x00\x00\xff\xff\x7a\x62\x5e\x37\x1d\x03\x00\x00" func idtablestakingAdminChange_minimumsCdcBytes() ([]byte, error) { return bindataRead( @@ -2080,11 +2020,11 @@ func idtablestakingAdminChange_minimumsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_minimums.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0xc4, 0xf5, 0xcf, 0xc4, 0x9, 0xda, 0xde, 0x4, 0x25, 0x88, 0xdb, 0xca, 0x1a, 0x54, 0x9, 0x1f, 0x68, 0x91, 0x8, 0x74, 0xa8, 0x6, 0x87, 0x54, 0x36, 0x2, 0x68, 0x3f, 0x5, 0x4f, 0x3d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0x43, 0x5f, 0x10, 0x9, 0x12, 0xd6, 0x29, 0xcd, 0x0, 0xf9, 0x15, 0xc6, 0xbf, 0xf6, 0xbd, 0x21, 0x40, 0xc9, 0x80, 0x4, 0x22, 0x3a, 0x3c, 0x24, 0xd3, 0x7e, 0x36, 0xea, 0x6, 0x28, 0x33}} return a, nil } -var _idtablestakingAdminChange_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x8f\xd3\x40\x0c\x85\xef\xf9\x15\x4f\x39\xac\xd2\x4b\x72\x41\x1c\x22\x60\xb5\xb0\xac\xb4\x12\x87\x8a\x16\xee\xee\xd4\x69\x86\x4e\xc7\xd1\xc4\x21\xad\x50\xff\x3b\x9a\x49\x0b\x2d\x2d\xbe\x44\x9a\xd8\xef\x7d\xf6\xb3\xbb\x4e\x82\xe2\xc5\xc9\xf8\xfa\xbc\xa4\x95\xe3\x85\xd2\xd6\xfa\x0d\x9a\x20\x3b\xe4\xb7\x3f\xf2\x2c\xab\x2a\x2c\x5b\xdb\x43\x03\xf9\x9e\x8c\x5a\xf1\x30\x2d\xf9\x0d\xf7\xd0\x96\xd1\x38\x19\xa1\xb2\x65\x8f\x91\x79\xeb\x0e\xe8\xe8\x20\x83\x66\xd9\xc5\x44\xe1\x79\x9c\xa7\xe7\x1a\xdf\x5e\xec\xfe\xed\x9b\x19\x7e\x65\x19\x00\x54\x15\xbe\x88\x21\x87\x9f\x14\x6c\xb4\x46\x23\x01\x84\xc0\x0d\x07\xf6\x86\xa1\x92\x8c\x5e\x9f\x91\xd0\xf0\xb4\xde\x59\x0f\x59\xfd\x60\xa3\x49\xc2\xb1\x82\xe2\xe3\x57\x6e\x6a\x3c\xdc\xae\x51\xa6\x91\xc9\xaf\x0b\xdc\x51\xe0\x82\x8c\xd1\x1a\x34\x68\x5b\x7c\x94\x10\x64\xfc\x4e\x6e\xe0\x19\x1e\x9e\x8c\x91\xc1\x6b\x04\xc4\xa9\xaa\x0a\xab\xd4\x73\x8f\x8b\xfe\xc5\x89\xd5\xb3\x6b\xca\x33\x13\xde\x23\xba\x95\xbd\x4a\xa0\x0d\x97\x93\xd6\xbb\xff\x82\x7e\x28\x62\x1e\xf5\x9d\xa0\xca\xd3\x37\xb5\x2d\x26\xb9\x39\x69\x3b\xfb\x63\x1c\xeb\xf1\x11\x1d\x79\x6b\x8a\xfc\x93\x0c\x6e\x0d\x2f\x7a\xe6\xbf\xa2\xef\x4f\xe9\x27\xce\x7c\xd2\x38\x4e\x57\xe2\x3d\x9b\x41\xf9\xe2\x06\x57\x1b\x95\x3d\xeb\xe7\x4e\x4c\xbb\x8c\xc1\x4f\xc9\xfe\xcd\xf8\xac\x74\xfc\x1d\x00\x00\xff\xff\xbc\x8e\x06\xa6\x71\x02\x00\x00" +var _idtablestakingAdminChange_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6f\xd4\x40\x0c\x85\xef\xf9\x15\x4f\x3d\xa0\xed\x25\xe1\x80\x38\x44\x40\x15\x48\x2a\x45\xaa\x50\xd5\x84\x03\x47\xef\xd4\xd9\x0c\x3b\x3b\x8e\x26\x0e\xd9\x0a\xf5\xbf\xa3\x49\x76\xa1\x85\xd6\x97\x91\xac\xf1\x7b\x9f\xfd\xec\x61\x90\xa0\xb8\x76\x32\xd7\x65\x4b\x5b\xc7\x8d\xd2\xde\xfa\x1d\xba\x20\x07\xbc\x3d\xd6\x65\xf5\xb5\xad\xdb\xef\x6d\xf1\xf9\xa6\x2a\xca\xf2\xae\x6a\x9a\x24\xc9\x32\xb4\xbd\x1d\xa1\x81\xfc\x48\x46\xad\x78\x98\x9e\xfc\x8e\x47\x68\xcf\xe8\x9c\xcc\x50\xd9\xb3\xc7\xcc\xbc\x77\x0f\x18\xe8\x41\x26\x4d\x92\x27\x13\x1b\xcf\xf3\xed\xd2\xce\xf1\xed\xda\x1e\xdf\xbf\xbb\xc4\xaf\x24\x01\x80\x2c\xc3\x8d\x18\x72\xf8\x49\xc1\x46\x2a\x74\x12\x40\x08\xdc\x71\x60\x6f\x18\x2a\x8b\x51\x5d\x62\xa1\x46\x71\x7f\xb0\x1e\xb2\xfd\xc1\x46\x17\x09\xc7\x0a\x8a\xcd\x3b\xee\x72\xbc\xf9\x7f\xc3\x74\x19\x59\xfd\x86\xc0\x03\x05\xde\x90\x31\x9a\xa3\x98\xb4\x2f\x8c\x91\xc9\x6b\x24\xc2\xa9\xb2\x0c\x5b\x09\x41\xe6\x97\x40\xe8\x5f\xff\x58\x23\xbb\x2e\x3d\x43\xe0\x23\xa2\x7c\xba\x6a\x7c\x78\x95\xe8\xd3\x26\x9e\x3e\x7f\x21\x93\xf4\xf4\x2e\xdf\x1a\x95\x40\x3b\xbe\x25\xed\x2f\xff\x18\xc6\xba\xba\xc2\x40\xde\x9a\xcd\xc5\x17\x99\xdc\x3d\xbc\xe8\x99\xfb\x19\xf5\x78\x0a\x7a\xe1\xbb\x58\x35\x1e\xd7\x73\xf0\x91\xcd\xa4\xfc\x64\xf7\x67\x9b\xa4\x23\x6b\x35\x88\xe9\xdb\x98\xf0\x1a\xe1\xdf\x30\xcf\x4a\x8f\xbf\x03\x00\x00\xff\xff\x2a\x3e\x38\xa0\x5c\x02\x00\x00" func idtablestakingAdminChange_payoutCdcBytes() ([]byte, error) { return bindataRead( @@ -2100,11 +2040,11 @@ func idtablestakingAdminChange_payoutCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_payout.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf1, 0x15, 0x65, 0x64, 0x1, 0xa4, 0xaa, 0xc1, 0x1e, 0x57, 0x8c, 0x4f, 0xa7, 0xc2, 0xec, 0xde, 0xbc, 0x6d, 0xad, 0x7a, 0xa, 0xf2, 0x6a, 0x7e, 0xb5, 0x8a, 0x77, 0x9a, 0x2e, 0x9e, 0x83, 0xe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2f, 0x71, 0xde, 0xb0, 0x70, 0x7b, 0x4e, 0xe0, 0xb6, 0xbf, 0x9, 0x1, 0xfd, 0xd4, 0x85, 0x6b, 0xc0, 0x17, 0x99, 0x82, 0x25, 0x8, 0x5a, 0x86, 0xf6, 0xee, 0xa6, 0xa2, 0xad, 0xd0, 0x2a, 0x66}} return a, nil } -var _idtablestakingAdminEnd_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\xcf\x6b\xdb\x4e\x10\xc5\xef\xfa\x2b\x1e\x3e\x04\x19\xbe\x48\xf0\x3d\x8a\xb6\x21\x3f\x5a\x30\xe4\x50\x6a\xd3\x6b\x58\xad\x46\xd6\xd6\xf2\x8c\xd8\x1d\x59\x2d\xc1\xff\x7b\x59\x49\x76\xe2\x26\xde\x8b\x40\x3b\xef\xbd\x8f\x66\x46\x6e\xdf\x89\x57\x7c\x6b\x65\x58\x3d\x6e\x4c\xd9\xd2\x5a\xcd\xce\xf1\x16\xb5\x97\x3d\x16\xef\x2f\x16\x49\x92\xe7\xd8\x34\x2e\x40\xbd\xe1\x60\xac\x3a\x61\x50\x5d\x93\x55\x77\xa0\xf6\x0f\x88\xab\x00\x6d\x08\xd4\x89\x6d\x60\xb8\x42\x50\xe3\x35\xc0\x80\x69\x80\x30\x65\x49\x9e\x47\x9f\x95\xc2\xca\xbe\x74\x4c\xb3\x82\xab\xe7\x30\x13\x44\xdd\x5e\x0e\xf4\xac\xb2\x23\xbe\x88\x0b\x51\x3b\x34\xce\x36\xaf\x61\x67\x59\x3f\x96\xfc\x37\xdf\x7b\xaa\xfb\x58\xc2\x52\x51\xc0\xe0\xb4\x81\xe3\xd0\xd7\xb5\xb3\x8e\x58\x47\x19\x45\xbb\x53\x5c\xc0\x9c\x57\x92\x0e\x44\x8c\xb2\xb7\x3b\xd2\x90\x24\x6f\x00\x52\x57\x85\x02\x2f\x6b\xf5\x8e\xb7\x05\xee\x45\xda\xe3\x12\x2f\x49\x02\x00\x79\x8e\x27\xb1\xa6\xc5\xc1\x78\x17\x5b\x87\x5a\x3c\x4c\x44\x21\x4f\x6c\x09\x2a\x23\xf2\xea\x11\x63\x6b\x71\x57\xed\x1d\x43\xca\x5f\x64\x75\xb4\x68\x49\x61\xe2\xcb\x1f\x54\x17\xb8\x79\x3f\x86\x6c\x94\x4c\x79\x9d\xa7\xce\x78\x4a\x8d\xb5\x5a\xc0\xf4\xda\xa4\xf7\xe2\xbd\x0c\x3f\x4d\xdb\xd3\x12\x37\x77\xd6\x4a\xcf\x1a\x01\x31\x9f\x3c\x47\x39\xd6\x7c\xc4\x65\xfe\xc5\x89\x27\x50\x5b\x67\x27\x26\x7c\x46\x4c\xcb\x82\x8a\x37\x5b\xca\x26\xaf\x4f\x57\x41\xbf\xa4\x71\x9f\x8a\x0f\x16\x2d\x9b\x9f\x63\xd9\x7a\xb2\xfb\x6e\xb4\x59\x9e\x83\xe3\xb9\xbd\x45\x67\xd8\xd9\x74\xf1\x20\x7d\x5b\x81\x45\x4f\xfc\x17\xf4\xe7\x25\x88\x6e\x8b\xc9\xe3\x38\x75\x89\x7e\x93\xed\x95\xde\xf4\xe0\xe2\x8b\xb2\x40\x7a\xd7\x75\x5e\x0e\x54\x3d\xb9\xa0\x71\xc2\xaf\x0c\x57\x34\xc4\xd5\x09\x7f\xda\xba\x74\x99\x5c\x29\x8d\xab\xb5\x19\x17\x2b\x65\x1a\xbe\xc6\x3f\xe3\x21\x0e\x85\x7c\x81\xff\x4f\xa0\xc7\xe4\x6f\x00\x00\x00\xff\xff\x8d\x3c\x5c\x65\x91\x03\x00\x00" +var _idtablestakingAdminEnd_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x41\x6f\x9b\x40\x10\x85\xef\xfc\x8a\xa7\x1c\x2a\x22\x55\x50\xf5\x88\xda\x46\x24\x76\x25\x4b\x56\x55\xc5\x5c\x7a\x8a\x96\x65\x30\x5b\xe3\x1d\xb4\x3b\x98\x54\x91\xff\x7b\xb5\x18\x9c\xb8\x8d\xf7\x82\x04\xf3\xde\xfb\x76\x66\x30\xfb\x8e\x9d\xe0\x7b\xcb\xc3\x6a\x51\xa8\xb2\xa5\x8d\xa8\x9d\xb1\x5b\xd4\x8e\xf7\xf8\xf4\xbc\x5a\x2c\x7f\x14\xab\xe2\x57\x91\xdf\xaf\x97\xf9\x62\xf1\xb8\xdc\x6c\xa2\x28\x4d\x51\x34\xc6\x43\x9c\xb2\x5e\x69\x31\x6c\x41\x75\x4d\x5a\xcc\x81\xda\x3f\x20\x5b\x79\x48\x43\xa0\x8e\x75\x03\x65\x2b\x78\x51\x4e\x3c\x14\x2c\x0d\x60\x4b\x49\x94\xa6\xc1\x67\x25\xd0\xbc\x2f\x8d\xa5\x49\x61\xab\x27\x3f\x31\x04\xdd\x9e\x0f\xf4\x24\xbc\x23\x7b\x11\xe7\x83\x76\x68\x8c\x6e\x5e\xc3\xce\xb2\x7e\x2c\xf9\x38\x7d\x77\x54\xf7\xa1\xc4\x72\x45\x1e\x83\x91\x06\xc6\xfa\xbe\xae\x8d\x36\x64\x65\x94\x51\xb0\x9b\xe3\x3c\xa6\xbc\x92\x64\x20\xb2\x28\x7b\xbd\x23\xf1\x51\xf4\x06\x20\x36\x95\xcf\xf0\xb2\x11\x67\xec\x36\xc3\x3d\x73\x7b\xbc\xc5\x4b\x14\x01\x40\x9a\x62\xcd\x5a\xb5\x38\x28\x67\x42\x57\x51\xb3\x83\x0a\x28\xe4\xc8\x6a\x82\xf0\x88\xbc\x5a\x60\xec\x3a\xf2\x6a\x6f\x2c\xb8\xfc\x4d\x5a\x46\x8b\x96\x04\x2a\xbc\x7c\xa4\x3a\xc3\x87\xff\x27\x94\x8c\x92\x53\x5e\xe7\xa8\x53\x8e\x62\xa5\xb5\x64\xc8\x7b\x69\x72\xad\xb9\xb7\x12\x88\x30\x9d\x34\x45\xc9\xce\xf1\xf0\x1e\x88\xfa\x37\x3f\x1c\x4f\x6d\x9d\xcc\x10\xf8\x8a\x60\x9f\x9c\x3c\xbe\x5c\x25\xfa\x16\x87\xd5\xc9\xde\xd9\xa9\x64\x7a\x8e\x65\x1b\x61\xa7\xb6\xf4\x53\x49\x73\x7b\x0e\x0c\xe7\xee\x0e\x9d\xb2\x46\xc7\x37\x0f\xdc\xb7\x15\x2c\xcb\xcc\x7d\x41\x7d\x9e\x76\x70\xbb\x39\x79\x1c\x4f\xed\xa0\x67\xd2\xbd\xd0\x9b\xbb\x5f\xdc\x24\xf1\x24\x79\xd7\x39\x3e\x50\xb5\x36\x5e\xc2\x28\x5f\x19\xae\x68\xc8\x56\x33\xfe\x69\xbd\xe2\xdb\xe8\x4a\x69\xd8\xa1\x62\xdc\xa0\xd8\xd2\xb0\x0c\xbf\xc0\x43\x18\x06\xb9\x0c\x9f\x67\xd0\x63\xf4\x37\x00\x00\xff\xff\xa5\x82\x19\x7e\x7c\x03\x00\x00" func idtablestakingAdminEnd_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -2120,11 +2060,11 @@ func idtablestakingAdminEnd_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/end_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8a, 0x39, 0xa5, 0x67, 0xa9, 0xac, 0xdd, 0x37, 0xb9, 0xd1, 0xa, 0x19, 0x7d, 0x6a, 0xea, 0xd1, 0xc7, 0x67, 0x66, 0x30, 0x20, 0x98, 0x41, 0x85, 0x6a, 0x3c, 0x10, 0x5, 0x47, 0x5f, 0xc4, 0x20}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0x2e, 0x77, 0x4b, 0xfa, 0x66, 0x71, 0xc4, 0x59, 0x37, 0xe1, 0xf2, 0x5a, 0xec, 0x49, 0x7c, 0x75, 0x9f, 0xe7, 0x85, 0x42, 0x78, 0x76, 0xa5, 0x68, 0x96, 0xcc, 0x5, 0x54, 0xc2, 0xd4, 0x72}} return a, nil } -var _idtablestakingAdminEnd_epoch_change_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x0c\x41\x82\x52\x7a\x10\x6d\x43\xfe\x34\x60\xc8\x21\xd4\x6e\xaf\x61\xb5\x1a\x59\x5b\x4b\x3b\x62\x77\x64\x25\x04\x7f\xf7\xb2\xfa\xe3\x36\x75\xdc\xbd\x08\xb4\x33\xef\xfd\x66\xe7\x99\xa6\x65\x27\xb8\xaf\xb9\x5f\xdd\x6d\x54\x5e\xd3\x5a\xd4\xce\xd8\x2d\x4a\xc7\x0d\x16\xa7\x17\x8b\x28\x4a\x53\x6c\x2a\xe3\x21\x4e\x59\xaf\xb4\x18\xb6\xa0\xb2\x24\x2d\x66\x4f\xf5\x0b\xc8\x16\x1e\x52\x11\xa8\x65\x5d\x41\xd9\x02\x5e\x94\x13\x0f\x05\x4b\x3d\xd8\x52\x12\xa5\x69\xd0\x59\x09\x34\x37\xb9\xb1\x34\x75\xd8\xe2\xc9\x4f\x04\xa1\xaf\xe1\x3d\x3d\x09\xef\xc8\xbe\xb1\xf3\xa1\xb7\xaf\x8c\xae\xfe\x98\x1d\xdb\xba\xa1\xe4\x72\xba\x77\x54\x76\xa1\xc4\x72\x41\x1e\xbd\x91\x0a\xc6\xfa\xae\x2c\x8d\x36\x64\x65\x68\xa3\x20\x37\xdb\x79\x4c\x7e\x39\x49\x4f\x64\x91\x77\x7a\x47\xe2\xa3\xe8\x2f\x80\xd8\x14\x3e\xc3\xeb\x5a\x9c\xb1\xdb\x0c\x37\xcc\xf5\xe1\x32\x0c\xf7\xa8\x5e\xb8\x93\x0c\x3f\xee\xcd\xf3\xa7\x8f\x4b\xbc\x46\x11\x00\xa4\x29\x1e\x58\xab\x1a\x7b\xe5\x4c\x78\x4d\x94\xec\xa0\x02\x1d\x39\xb2\x9a\x20\x3c\x4c\xb1\xba\xc3\xf0\xda\xb8\x2e\x1a\x63\xc1\xf9\x2f\xd2\x32\x48\xd4\x24\x50\xe1\xe7\x77\x2a\x33\x5c\x9c\x6e\x26\x19\x5a\x46\xbf\xd6\x51\xab\x1c\xc5\x4a\x6b\xc9\xa0\x3a\xa9\xe2\x1b\x76\x8e\xfb\x9f\xaa\xee\x68\x89\x8b\x6b\xad\xb9\xb3\x12\x00\x31\x9d\x34\x45\x3e\xd4\xbc\xc7\xa5\xfe\xc5\x09\xc7\x53\x5d\x26\x33\x13\xbe\x20\xb8\x25\x5e\xd8\xa9\x2d\x25\xa3\xd6\xe7\xb3\xa0\x5f\xe3\x10\xb1\xec\x9d\xec\x25\xd3\x77\x28\x5b\x8f\x72\x8f\x4a\xaa\xe5\xd1\x38\x9c\xab\x2b\xb4\xca\x1a\x1d\x2f\x6e\xb9\xab\x0b\x58\x96\x99\xff\x0d\xfd\x31\x17\x41\x6d\x31\x6a\x1c\xc6\x57\xa2\x67\xd2\x9d\xd0\xbc\xa4\x93\x91\x12\x4f\xf2\x2d\x64\x78\x13\x12\x31\xae\x36\x3e\x2e\x79\xf9\x9f\xae\xeb\xb6\x75\xbc\xa7\xe2\xc1\x78\x09\x59\x39\x5b\x4b\xb6\x98\xa7\x1d\x73\x1b\x9f\x2d\x0d\xe1\x1c\x40\x7c\x60\x18\xb8\x6e\xc3\x0e\xc9\x65\xf8\x30\xcf\x75\x88\x7e\x07\x00\x00\xff\xff\x68\xee\x57\x96\xd3\x03\x00\x00" +var _idtablestakingAdminEnd_epoch_change_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\x4f\x6b\xdb\x4e\x10\xbd\xeb\x53\x3c\x72\xf8\xa1\x40\x90\x7e\x94\xd2\x83\x68\x1b\x94\xd8\x01\x43\x28\x21\x56\x0f\x3d\x85\xd5\x6a\x14\x6d\x23\xef\x88\xdd\x91\x95\x10\xf2\xdd\xcb\xea\x8f\xdb\x34\x71\xe7\x62\xb0\xe6\xfd\x99\x7d\xcf\xec\x3a\x76\x82\xab\x96\x87\xcd\xaa\x50\x65\x4b\x5b\x51\x0f\xc6\xde\xa3\x76\xbc\xc3\xff\x8f\x9b\xd5\xfa\x5b\xb1\x29\x7e\x14\xf9\xc5\xf5\x3a\x5f\xad\x6e\xd7\xdb\x6d\x14\xa5\x29\x8a\xc6\x78\x88\x53\xd6\x2b\x2d\x86\x2d\xa8\xae\x49\x8b\xd9\x53\xfb\x04\xb2\x95\x87\x34\x04\xea\x58\x37\x50\xb6\x82\x17\xe5\xc4\x43\xc1\xd2\x00\xb6\x94\x44\x69\x1a\x78\x36\x02\xcd\xbb\xd2\x58\x9a\x11\xb6\xba\xf3\xb3\x87\x80\xdb\xf1\x9e\xee\x84\x1f\xc8\xbe\x92\xf3\x01\x3b\x34\x46\x37\xbf\xc5\x0e\xb0\x7e\x5c\x39\x9b\xbf\x3b\xaa\xfb\xb0\x62\xb9\x22\x8f\xc1\x48\x03\x63\x7d\x5f\xd7\x46\x1b\xb2\x32\xc2\x28\xd0\x2d\x72\x1e\xb3\x5e\x49\x32\x10\x59\x94\xbd\x7e\x20\xf1\x51\xf4\x87\x81\xd8\x54\x3e\xc3\xf3\x56\x9c\xb1\xf7\x19\x2e\x98\xdb\x97\xb3\x70\xdc\x8d\x7a\xe2\x5e\x32\x7c\xbf\x32\x8f\x9f\x3e\x9e\xe2\x39\x8a\x00\x20\x4d\x71\xcd\x5a\xb5\xd8\x2b\x67\xc2\x43\xa3\x66\x07\x15\xdc\x91\x23\xab\x09\xc2\xe3\x15\x9b\x15\xc6\x20\x90\x57\x3b\x63\xc1\xe5\x4f\xd2\x32\x52\xb4\x24\x50\xe1\xcf\x5b\xaa\x33\xfc\xf7\x36\xb4\x64\x84\x4c\x7a\x9d\xa3\x4e\x39\x8a\x95\xd6\x92\x21\xef\xa5\xc9\xb5\xe6\xde\x4a\x70\x84\x79\xd2\x14\x25\x3b\xc7\xc3\x7b\x46\xd4\xdf\xfa\x61\x3c\xb5\x75\xb2\x98\xc0\x17\x04\xfa\x64\xe2\xf8\x7c\xd4\xd1\xd7\x38\xb4\x29\x7b\xa7\x66\xc9\xfc\x3b\xae\x6d\x85\x9d\xba\xa7\x1b\x25\xcd\xe9\x41\x30\xcc\xf9\x39\x3a\x65\x8d\x8e\x4f\x2e\xb9\x6f\x2b\x58\x96\xc5\xf7\x2b\xd7\x87\x02\x04\xb6\x93\x89\xe3\x65\x7a\x0e\x7a\x24\xdd\x0b\x2d\x69\xbc\x39\x25\xf1\x24\xeb\x50\xd6\x22\x44\x3f\x65\x18\x1f\xd2\x3c\xfd\x07\x2a\xef\x3a\xc7\x7b\xaa\xae\x8d\x97\x50\x8a\xa3\xbb\x64\xab\xe5\xda\xa9\xa0\xf1\xd1\xd5\xd0\xc2\xd1\x88\x0f\x1e\x46\x5f\x97\x21\x3b\x72\x19\x3e\x2c\x77\xbd\x44\xbf\x02\x00\x00\xff\xff\xd9\x78\x1a\x48\xbe\x03\x00\x00" func idtablestakingAdminEnd_epoch_change_payoutCdcBytes() ([]byte, error) { return bindataRead( @@ -2140,11 +2080,11 @@ func idtablestakingAdminEnd_epoch_change_payoutCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/end_epoch_change_payout.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x3f, 0xf, 0xc8, 0x75, 0x2e, 0x7b, 0xe1, 0x35, 0x4d, 0x36, 0x48, 0x6d, 0x3c, 0xa5, 0x9c, 0x43, 0x74, 0xdf, 0x63, 0xab, 0xba, 0xae, 0x2c, 0xf9, 0xf4, 0xf4, 0xa, 0xb6, 0xd9, 0xbb, 0xb3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1a, 0x52, 0xcb, 0x9a, 0xf4, 0xb3, 0x83, 0x34, 0xe5, 0xe, 0xf1, 0xbb, 0x6d, 0x4c, 0xb8, 0x6e, 0x10, 0x16, 0x8c, 0x33, 0xcc, 0x52, 0xb7, 0x29, 0x5d, 0xbe, 0xa6, 0xbb, 0xe0, 0x87, 0xb7, 0x28}} return a, nil } -var _idtablestakingAdminEnd_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x0f\x1f\x82\x0c\x45\xba\x8b\xb6\xc1\x69\x28\x04\x72\x28\x75\xe8\x7d\xbc\x1a\x59\xdb\xae\x77\xc4\xee\x6c\x54\x08\xfe\xef\x65\x57\x56\x68\xeb\x64\x2e\x02\xcd\xcc\x7b\xdf\xe8\xc9\x9e\x26\x09\x8a\xaf\x4e\xe6\x87\xfb\x27\x3a\x38\xde\x2b\xfd\xb2\xfe\x88\x21\xc8\x09\x9b\xeb\xc6\xa6\xaa\xda\x16\x4f\xa3\x8d\xd0\x40\x3e\x92\x51\x2b\x1e\xec\xfb\x08\x1d\x19\xf1\xb2\x4f\xa9\x34\x3e\x60\x1e\xad\x19\x11\x78\x48\x79\xc4\x4b\xcf\x11\x59\x62\xb6\x3a\xc2\xfa\x98\x86\xc1\x1a\xcb\x5e\xcb\x2a\x57\xd5\x5f\xb2\xb5\xed\x63\x87\x97\xbd\x06\xeb\x8f\x1d\xee\x44\xdc\x79\x8b\x97\xaa\x02\x80\xb6\xc5\xa3\x18\x72\x78\xa6\x60\x33\x21\x06\x09\xa0\x6c\xc5\x81\xbd\x61\xa8\x14\xa4\x87\x7b\x94\x0b\xb0\xeb\x4f\xd6\x43\x0e\x3f\xd9\x68\x91\x70\xac\xa0\xfc\xf2\x3b\x0f\x1d\x6e\xae\xaf\x6d\xca\xca\xe2\x37\x05\x9e\x28\x70\x4d\xc6\x68\x07\x4a\x3a\xd6\x77\x12\x82\xcc\x3f\xc8\x25\xde\xe2\x66\x67\x8c\x24\xaf\x19\x10\x97\x6a\x5b\x1c\xca\xcc\x5b\x5c\xf4\x3f\x4e\xae\xc8\x6e\x68\x56\x26\x7c\x42\x76\x6b\xa2\x4a\xa0\x23\x37\x8b\xd6\xc7\x77\x41\x3f\xd7\x39\xb6\xee\x8d\x3c\x9b\xcb\xb3\x8c\xed\x17\xb9\x6f\xa4\xe3\xf6\xd5\x38\xd7\xed\x2d\x26\xf2\xd6\xd4\x9b\x2f\x92\x5c\x0f\x2f\xba\xf2\xff\x43\xff\x1a\x72\x56\xdb\x2c\x1a\xe7\xe5\x2b\xf1\x6f\x36\x49\x79\x0d\xe9\xea\xa4\x26\xb2\xee\xa6\x29\xc8\x33\xf7\x8f\x36\x6a\x8e\x78\xfb\xde\x2c\xfb\x7e\xe5\x5e\x7e\xa7\x7a\xf5\x3a\xff\x09\x00\x00\xff\xff\x12\x49\x6b\xee\xba\x02\x00\x00" +var _idtablestakingAdminEnd_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x8b\x9c\x40\x10\x85\xef\xfe\x8a\xc7\x1e\x82\x03\x41\x73\x96\x24\x8b\x1b\x27\x20\x0c\x21\xac\x5e\x72\xec\x69\xcb\xb1\x13\xa7\x4b\xba\xcb\x75\x61\x99\xff\x1e\x5a\xc7\x21\xd9\x99\xa9\x8b\xa0\x55\xef\x7d\x55\x4f\x73\x1c\xd8\x09\xbe\xf7\x3c\x95\x45\xad\xf6\x3d\x55\xa2\xfe\x18\x7b\x40\xeb\xf8\x88\x4f\xaf\x65\xb1\xfd\x51\x97\xf5\xaf\x3a\x7f\xda\x6d\xf3\xa2\x78\xde\x56\x55\x14\xa5\x29\xea\xce\x78\x88\x53\xd6\x2b\x2d\x86\x2d\xc8\x36\x1e\xd2\x11\xfc\x59\x41\x8d\xf3\x87\x8f\x98\x3a\xa3\x3b\x38\x6a\xc7\xd0\x62\xb9\x21\x8f\x20\x31\x19\xe9\x60\xac\x1f\xdb\xd6\x68\x43\x56\xe6\x51\x8a\xa2\x7f\x64\x63\xd3\xf8\x0c\x6f\x95\x38\x63\x0f\x19\x9e\x98\xfb\xd3\x06\x6f\x51\x04\x00\x69\x8a\x1d\x6b\xd5\xe3\x45\x39\x13\xe0\xd1\xb2\x83\x0a\x56\xe4\xc8\x6a\x82\xf0\x8c\x54\x16\x98\x97\x43\xde\x1c\x8d\x05\xef\x7f\x93\x96\x59\xa2\x27\x81\x0a\x2f\x9f\xa9\xcd\xf0\xe1\xfa\x10\xc9\x3c\xb2\xf8\x0d\x8e\x06\xe5\x28\x56\x5a\x4b\x86\x7c\x94\x2e\xd7\x9a\x47\x2b\x81\x08\xe7\x4a\x53\xec\xd9\x39\x9e\x6e\x81\xa8\xf7\xfe\xa1\x3c\xf5\x6d\xb2\x42\xe0\x0b\x82\x7c\xb2\x68\x7c\xbe\x4b\xf4\x35\x0e\x09\x65\x37\xa2\x4b\xce\xcf\xb9\xad\x12\x76\xea\x40\x3f\x95\x74\x9b\x8b\x61\xa8\xc7\x47\x0c\xca\x1a\x1d\x3f\x7c\xe3\xb1\x6f\x60\x59\x56\xee\xff\xa8\x2f\x69\x06\xb5\x87\x45\xe3\xb4\x9c\x83\x5e\x49\x8f\x42\x6b\x1a\x57\xab\x24\x9e\x24\x1f\x06\xc7\x2f\xd4\xec\x8c\x97\x90\xe5\xe6\x5e\x2f\xd9\x66\xe5\x5e\xfe\x9b\x78\xf5\x3a\xfd\x0d\x00\x00\xff\xff\x5c\x5c\x6f\xbd\xa5\x02\x00\x00" func idtablestakingAdminEnd_stakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2160,11 +2100,11 @@ func idtablestakingAdminEnd_stakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/end_staking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0xb3, 0xec, 0x2e, 0x69, 0xa9, 0x17, 0x98, 0x82, 0xc1, 0xe2, 0x4f, 0xf2, 0xd4, 0x82, 0xe9, 0x56, 0x9d, 0xb1, 0xdc, 0xbe, 0x9a, 0xd7, 0x2d, 0x12, 0x75, 0x92, 0x64, 0x6, 0x1d, 0x90, 0x10}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0xd, 0xea, 0x6, 0x3d, 0x16, 0x7, 0x5e, 0x7e, 0xb8, 0x24, 0x9e, 0xe2, 0x6a, 0x6d, 0x4d, 0xf2, 0x73, 0x20, 0x5, 0x38, 0xd9, 0xac, 0xef, 0x64, 0x7d, 0xcf, 0x59, 0x67, 0x35, 0xaf, 0xd5}} return a, nil } -var _idtablestakingAdminMove_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\xab\x9b\x40\x14\x85\xf7\xfe\x8a\x83\x8b\x87\xd9\x28\x74\x29\x6d\x1f\xaf\x49\x0b\x81\x2e\x4a\x13\xba\xbf\x4e\xae\xd1\x46\xe7\xca\xcc\x35\x16\x42\xfe\x7b\x99\x31\x29\x49\x93\x37\x1b\x41\x8f\xe7\x7c\x73\x4e\xdb\x0f\xe2\x14\xdf\x3a\x99\xd6\xab\x2d\x55\x1d\x6f\x94\x0e\xad\xdd\xa3\x76\xd2\x23\x7d\xfc\x90\x26\x49\x51\x60\xdb\xb4\x1e\xea\xc8\x7a\x32\xda\x8a\x45\x2f\x47\xf6\x50\x39\xb0\xf5\xa8\x58\x27\x66\x8b\x6a\x34\x07\x56\x9f\x24\xb7\xca\x53\x92\x00\x40\x51\xe0\xbb\x18\xea\x70\x24\xd7\x06\x7f\xd4\xe2\x40\x70\x5c\xb3\x63\x6b\x18\x2a\xd0\x86\xb1\x5e\x21\xe6\xe3\x6d\xd7\xb7\x16\x52\xfd\x66\xa3\xd1\xa2\x63\x05\x85\x97\x3f\xb9\x2e\xf1\xf2\xc8\x9a\xc7\x5f\xe6\xbc\xc1\xf1\x40\x8e\x33\x32\x46\x4b\xd0\xa8\x4d\xf6\x45\x9c\x93\xe9\x17\x75\x23\x2f\xf0\xf2\x66\x8c\x8c\x56\x17\x38\x45\xfd\x85\xb1\x8a\x9a\x67\x5c\xf4\x3f\x4e\x38\x9e\xbb\x3a\xbf\x32\xe1\x13\x42\x5a\xee\x55\x1c\xed\x39\x9f\xbd\x3e\xbe\x0b\xfa\x39\x0b\xa5\x97\x4f\xd6\xc8\x2f\xcf\x28\xdb\xcc\x76\x3f\x48\x9b\xc5\xbf\xe0\x70\x5e\x5f\x31\x90\x6d\x4d\x96\x2e\x65\xec\x76\xb0\xa2\x57\xfe\x3b\x7a\x7f\x99\x38\x72\xa6\xb3\xc7\x79\x6e\x89\xff\xb0\x19\x95\x6f\x3a\xb8\xbb\x51\x1e\x66\xde\xc6\x91\x33\xcb\xd3\xd7\x41\x4c\xb3\x0c\xad\xb1\x2b\xf1\xe1\xea\x74\xfe\x1b\x00\x00\xff\xff\x57\x3b\x5b\xb4\x56\x02\x00\x00" +var _idtablestakingAdminMove_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\xeb\x9b\x40\x10\xc5\xef\x7e\x8a\xc7\xff\x50\xcc\x45\x4b\x8f\xd2\x36\xd8\x68\x41\x08\xa5\x44\x2f\x3d\xae\x9b\x31\xda\xe8\x8e\xac\x63\x0c\x84\x7c\xf7\xb2\x9a\x94\xa4\xcd\x7f\x2e\x82\xcc\xbe\xf7\x9b\xf7\x9a\xae\x67\x2b\xf8\xde\xf2\x94\x25\x85\x2a\x5b\xca\x45\x1d\x1b\x73\x40\x65\xb9\xc3\xc7\x73\x96\xa4\x3f\x8a\xac\xf8\x55\xc4\xdf\xb6\x69\x9c\x24\xbb\x34\xcf\x3d\x2f\x0c\x51\xd4\xcd\x00\xb1\xca\x0c\x4a\x4b\xc3\x06\x1d\x9f\x68\x80\xf0\x91\xcc\x80\x92\x64\x22\x32\x28\x47\x7d\x24\x19\x3c\xef\x71\xf3\xe2\x79\x00\x10\x86\xd8\xb2\x56\x2d\x4e\xca\x36\xce\x1a\x15\x5b\x28\x58\xaa\xc8\x92\xd1\x04\x61\x48\x4d\xc8\x12\xcc\x68\x88\xf7\x5d\x63\xc0\xe5\x6f\xd2\x32\x4b\xb4\x24\x50\xee\xe7\x8e\xaa\x08\x1f\xfe\x3f\x23\x98\x9f\x2c\x7e\xbd\xa5\x5e\x59\xf2\x95\xd6\x12\x21\x1e\xa5\x8e\xb5\xe6\xd1\xc8\x0a\x97\x79\xe1\x06\x55\xb2\xb5\x3c\xbd\x02\x51\xff\xfa\xbb\x19\xa8\xad\x82\x3b\x04\xbe\xc0\xc9\x07\x8b\xc6\xe7\x77\x89\xbe\xfa\x2e\xdf\xe8\x45\xf0\xc1\xed\x3b\xaf\xe5\xc2\x56\x1d\xe8\xa7\x92\x7a\xf5\xd7\xd0\xcd\x7a\x8d\x5e\x99\x46\xfb\x6f\x1b\x1e\xdb\x3d\x0c\xcb\x9d\xfb\x89\x7a\xb8\xb5\x39\xf3\xbd\x2d\x1a\xd7\x25\x0e\x3a\x93\x1e\x85\x1e\x6e\x7f\xba\x24\x70\x7d\x16\x73\x9b\xbe\xa1\x29\xed\x59\xd7\x1b\x97\x16\xd9\x08\x9f\xee\x4a\xd7\x3f\x01\x00\x00\xff\xff\x77\xf2\xa1\x3f\x41\x02\x00\x00" func idtablestakingAdminMove_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2180,11 +2120,11 @@ func idtablestakingAdminMove_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/move_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0x12, 0x76, 0x16, 0xfb, 0xc4, 0x12, 0x4, 0xa9, 0x4, 0x1, 0x23, 0xe9, 0x22, 0x31, 0x3c, 0x95, 0x93, 0x2e, 0x67, 0x21, 0x9a, 0xcb, 0xeb, 0x32, 0x88, 0x84, 0x4b, 0x2c, 0x36, 0x3e, 0xea}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0xad, 0xa9, 0xd9, 0x5a, 0x58, 0xda, 0xa3, 0xa5, 0xb6, 0xdc, 0xd5, 0x51, 0x86, 0xea, 0xf2, 0xf2, 0x5, 0x4d, 0x71, 0x5d, 0x15, 0x82, 0xd9, 0x75, 0x7e, 0x9b, 0xf3, 0x4a, 0xb1, 0xf6, 0x30}} return a, nil } -var _idtablestakingAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x0f\x1f\x82\x04\x45\xa2\x57\xd1\x34\xa4\x49\x0b\x81\x1e\x4a\x1c\x7a\x1f\xaf\x46\x91\x9a\xd5\x8e\x98\x1d\xd5\x35\x21\xff\xbd\xac\x64\x95\xa4\x76\xf6\x22\x90\xde\xbe\xf7\xe9\xcd\xf4\xc3\x28\x6a\xf8\xe6\x65\x7f\x77\xfb\x40\x3b\xcf\x5b\xa3\xa7\x3e\x3c\xa2\x55\x19\xb0\x39\xfd\xb0\xc9\xb2\xaa\xc2\x43\xd7\x47\x98\x52\x88\xe4\xac\x97\x80\x91\x0e\x11\xca\x7b\xd2\x26\xc2\x04\xe4\x3d\xac\x63\x44\xa3\x27\x6e\x10\xa4\xe1\x98\x65\xaf\x6f\x3c\x67\x19\x00\x54\x15\xbe\x8b\x23\x8f\xdf\xa4\x7d\xca\x41\x2b\x0a\x82\x72\xcb\xca\xc1\x71\x72\x4b\x4e\x77\xb7\x98\x39\x70\xdd\x0c\x7d\x80\xec\x7e\xb1\xb3\xd9\xc2\xb3\x81\xd2\xcb\x7b\x6e\x6b\x5c\x9c\x32\x97\xf3\x95\x25\x6f\x54\x1e\x49\x39\x27\xe7\xac\x06\x4d\xd6\xe5\x5f\x44\x55\xf6\x3f\xc9\x4f\x5c\xe0\xe2\xda\x39\x99\x82\x15\x78\x9e\xf5\x47\xc6\xdd\xac\x39\xc7\x45\xff\xe3\xa4\x13\xd9\xb7\xe5\xca\x84\x4b\xa4\xb4\x32\x9a\x28\x3d\x72\xb9\x78\x7d\x7a\x17\xf4\x73\x9e\xca\xaf\xcf\x4c\xa5\x3c\x3e\x67\xd9\x76\xb1\xfb\x41\xd6\x15\xff\x82\xd3\xb9\xba\xc2\x48\xa1\x77\xf9\xe6\x46\x26\x9f\xca\xb7\x95\xff\x0d\x7d\x3c\x8e\x7a\xe6\xdc\x2c\x1e\x2f\x4b\x4b\xfc\x87\xdd\x64\xfc\xaa\x83\x54\x72\x9c\x86\x81\xf4\x80\xcb\xb7\xff\x57\x3a\xf2\x6e\xf2\x64\x7c\xbf\x2c\x40\x5e\x9c\x2f\xa2\x1c\xe9\xb0\x4a\x5a\xd1\xaf\xa3\xb8\xee\x26\x95\xcd\x5a\xe3\xe3\x87\x75\x7f\xb6\x4b\x4c\xbd\xe6\xad\x64\x2f\x7f\x03\x00\x00\xff\xff\xca\xd7\x91\xe9\xae\x02\x00\x00" +var _idtablestakingAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x8f\x1c\x8a\x0d\x45\x6e\xaf\xa2\x69\x50\x23\x17\x0c\xa1\x14\x4b\x97\x1e\xc7\xab\x51\xa4\x66\xb5\x2b\x66\x47\x75\x4c\xc8\x7f\x2f\x2b\x59\x25\x6e\xdd\xb9\x08\xc4\xcc\x7b\xdf\xbc\xd9\xae\x1f\xbc\x28\xbe\x5a\x7f\xdc\x15\x15\x1d\x2c\x97\x4a\x4f\x9d\x7b\x44\x23\xbe\xc7\x87\xe7\x5d\xb1\xfd\x56\xed\xaa\x1f\x55\xfe\xe5\x61\x9b\x17\xc5\x7e\x5b\x96\x49\xb2\xd9\xa0\x6a\xbb\x00\x15\x72\x81\x8c\x76\xde\x61\xa0\x53\x80\xf0\x91\xa4\x0e\x50\x0f\xb2\x16\xda\x32\x82\xd2\x13\xd7\x70\xbe\xe6\x90\x24\x6f\x27\x5e\x92\x04\x00\x36\x1b\x3c\x78\x43\x16\xbf\x48\xba\x88\x80\xc6\x0b\x08\xc2\x0d\x0b\x3b\xc3\x51\x2d\x2a\xed\x0a\x4c\x88\xc8\xeb\xbe\x73\xf0\x87\x9f\x6c\x74\x92\xb0\xac\xa0\xf8\x73\xcf\x4d\x86\x77\xff\xae\x93\x4e\x23\xb3\xdf\x20\x3c\x90\xf0\x8a\x8c\xd1\x0c\xf9\xa8\x6d\x6e\x8c\x1f\x9d\xae\xf1\x32\x35\x9c\xa1\x0e\x5e\xc4\x1f\xaf\x81\xd0\xdf\xfe\xb1\x02\xdb\x26\x5d\x20\x70\x8b\x28\x9f\xce\x1a\x9f\xfe\x4b\xf4\x79\x15\x73\xce\xae\x1c\x20\x3d\x7f\xa7\xb6\x52\xbd\xd0\x23\x7f\x27\x6d\xd7\x7f\x0c\x63\xdd\xdd\x61\x20\xd7\x99\xd5\xcd\xbd\x1f\x6d\x4c\x59\x17\xee\x0b\xea\x70\xbe\xea\xc4\x77\x33\x6b\xbc\xce\x71\xf0\x33\x9b\x51\xf9\xcd\xee\x31\xcd\x30\xf6\x3d\xc9\x09\xb7\x97\x7b\xa5\x86\xac\x19\x2d\x29\xef\xe7\x4b\xaf\xd6\xd7\x03\x48\x07\x3a\x2d\x2d\x8d\x97\xed\xe0\x4d\x7b\x1f\x43\x66\xc9\xf0\xf1\xfd\xf2\x50\xca\xd9\x26\x5b\xfc\x16\xb2\xd7\xdf\x01\x00\x00\xff\xff\xdb\x4f\x91\x9f\x99\x02\x00\x00" func idtablestakingAdminPay_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -2200,11 +2140,11 @@ func idtablestakingAdminPay_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/pay_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x72, 0xa1, 0x77, 0xd1, 0xb0, 0xeb, 0xf3, 0x3e, 0x3d, 0x4e, 0x76, 0xb5, 0xee, 0x90, 0xec, 0xf4, 0xd4, 0xa5, 0x89, 0xb1, 0xe2, 0xc2, 0xf1, 0x5b, 0x49, 0x6b, 0x10, 0x62, 0xf2, 0x54, 0xaf, 0x4a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x58, 0xb8, 0x76, 0x47, 0x5f, 0xe1, 0x22, 0x4e, 0x3c, 0x15, 0x6d, 0xa6, 0xea, 0x98, 0x7f, 0xf6, 0x3e, 0x5, 0x2f, 0x90, 0x61, 0xb2, 0x6c, 0xce, 0x7c, 0xb9, 0x8a, 0x26, 0x93, 0x47, 0xdb, 0x72}} return a, nil } -var _idtablestakingAdminRemove_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x4f\x6b\xdb\x40\x10\xc5\xcf\xd6\xa7\x78\xf8\x10\x64\x68\xa5\xbb\x69\x1a\xd2\x9a\x82\x21\x34\x25\x31\xbd\x84\x1c\xc6\xd2\xc8\xda\x76\xbd\x2b\x76\xc7\x76\x4c\xf0\x77\x2f\xa3\x95\xda\xfc\x71\xf7\x22\xd8\x99\x79\xf3\xdb\x99\x27\xb3\xed\x7c\x10\x7c\xb3\xfe\xb0\x5c\xac\x68\x6d\xf9\x5e\xe8\xb7\x71\x1b\x34\xc1\x6f\x31\x7d\x1f\x98\x66\x59\x59\x62\xd5\x9a\x08\x09\xe4\x22\x55\x62\xbc\x43\xe0\xad\xdf\x73\x84\xf3\x35\x63\xb9\x88\xa9\x5e\x5a\x86\x35\x51\xe0\x1b\x50\xd7\x05\xbf\xe7\xba\x4f\x89\x30\x4e\x75\x34\x61\xb9\x80\x68\x83\x02\x7a\xb3\x6c\x40\xee\xa8\x05\x29\x16\xb1\xb8\xc5\xf7\xdb\x15\xf8\x49\x85\xc8\x06\xa6\xfa\x08\xe3\xfa\xb8\xa9\xd9\x89\x91\x63\x52\xf8\x00\x69\x4d\xec\x75\x5f\xa0\x1d\x8c\xb5\x08\xbc\xe7\x20\xc8\x9d\x17\x2d\xda\x76\x5e\xd8\xc9\x2c\xcb\x5e\x64\xe6\xa6\x8e\x73\x3c\xdc\x4b\x30\x6e\xf3\x38\xc3\x73\x96\x01\x40\x59\xe2\xc6\x57\x64\xb1\xa7\x60\xb4\x0d\x1a\x1f\x40\x08\xdc\x70\x60\x57\x31\xc4\x8f\x0f\xe9\x27\x85\xeb\x7a\x6b\x1c\xfc\xfa\x17\x57\xd2\x4b\x58\x16\x90\x5e\xde\x71\x33\xc7\xc5\xfb\xa9\x16\x7d\x49\xea\xd7\x05\xee\x28\x70\x4e\x55\x25\x73\xd0\x4e\xda\xfc\x8b\x0f\xc1\x1f\x7e\x92\xdd\xf1\x0c\x17\xd7\x55\xe5\x77\x4e\x14\x10\xc3\x29\x4b\xac\xfb\x9c\x73\x5c\xf4\x16\x47\x4f\x64\xdb\x14\x23\x13\x2e\xa1\xdd\x8a\x28\x3e\xd0\x86\x8b\xa4\xf5\xe9\xbf\xa0\x9f\x73\x5d\xef\xfc\x8c\x6f\x8a\xe1\xdb\xa7\xdd\x27\xb9\x1f\x24\xed\xec\x6f\x63\x3d\x57\x57\xe8\xc8\x99\x2a\x9f\x7e\xf5\x3b\xab\x96\x90\x91\xff\x15\x7d\x1c\xcc\xd8\x73\x4e\x93\xc6\x29\x4d\x89\x9f\xb8\xda\x09\xe3\x39\x9b\xe8\x74\xd5\x54\x6a\x96\xcb\x73\x4c\x1b\x96\xeb\xc1\x7d\x37\x26\x4a\xfe\x0f\xe6\x1c\x88\x1a\x6c\x74\x6b\x72\x6f\xef\xe5\x61\x36\xd3\x59\x96\x4d\xca\x72\x30\x3c\x98\xaa\x36\x99\x3e\x9b\xa8\x2d\x12\xc7\xca\xdf\xa5\xb0\x71\x30\x75\x54\xc8\xc9\x40\xf8\xf0\x3a\xe3\x11\x97\x70\xc6\x66\x93\x53\x92\x8d\x2c\x69\x67\xe3\xdf\xd2\x03\x0c\x8b\x74\x7c\x00\x59\xeb\x0f\x1f\xf5\xf6\xfc\x2a\x8b\xf8\xe6\xb1\x43\xdf\x71\x78\xa7\x3f\x01\x00\x00\xff\xff\x5e\x32\x19\xb8\xf3\x03\x00\x00" +var _idtablestakingAdminRemove_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x4f\x8b\xdb\x30\x10\xc5\xcf\xf1\xa7\x78\xe4\x50\x1c\x68\xed\x9e\x43\xd3\xc5\xad\x53\x30\x84\xdd\x92\xf8\x52\x96\x3d\x28\xf6\x38\x56\xab\x48\x46\x9a\xfc\x63\xc9\x77\x2f\xb2\xec\x76\x77\x9b\xea\x62\x90\x46\x6f\x7e\x9a\xf7\x2c\xf7\x9d\xb1\x8c\x6f\xca\x9c\x8a\xbc\x14\x5b\x45\x1b\x16\xbf\xa4\xde\xa1\xb1\x66\x8f\x8f\xe7\x22\x5f\xde\x97\x45\xf9\xa3\xcc\xbe\xac\x96\x59\x9e\xaf\x97\x9b\x4d\x14\xa5\x29\xca\x56\x3a\xb0\x15\xda\x89\x8a\xa5\xd1\xb0\xb4\x37\x47\x72\xd0\xa6\x26\x14\xb9\x0b\x0a\xdc\x12\x94\x74\x0c\xd3\x40\x74\x9d\x35\x47\xaa\xfb\x12\x07\xa9\xbd\x8e\x2f\x28\x72\xb0\xef\x9d\xc0\xef\x14\x0d\x84\xbe\xf8\x0b\xe1\xcc\x21\x7f\xc0\xfd\x43\x09\x3a\x7b\x21\xa1\x2c\x89\xfa\x02\xa9\xfb\x73\x59\x93\x66\xc9\x97\xa0\xf0\x1e\xdc\x4a\xd7\xeb\xbe\x40\x3b\x49\xa5\x60\xe9\x48\x96\x11\x6b\xc3\xfe\xd2\xbe\x33\x4c\x9a\x67\x51\xf4\xa2\x32\x96\xb5\x9b\xe3\x71\xc3\x56\xea\xdd\xd3\x0c\xcf\x51\x04\x00\x69\x8a\x95\xa9\x84\xc2\x51\x58\xe9\xdb\xa0\x31\x16\x02\x96\x1a\xb2\xa4\x2b\x02\x9b\xf1\x21\xfd\x10\x91\xd5\x7b\xa9\x61\xb6\x3f\xa9\xe2\x5e\x42\x11\x43\xf8\xcd\x35\x35\x73\xbc\xfb\x77\xe0\x49\x7f\x25\xf4\xeb\x2c\x75\xc2\x52\x2c\xaa\x8a\xe7\xc8\x0e\xdc\x66\x55\x65\x0e\x9a\x3d\x11\x86\x95\xa6\xd8\x1a\x6b\xcd\xe9\x16\x88\x78\xdb\xdf\x2f\x47\xaa\x49\x46\x08\x2c\xe0\xe5\x93\xa0\xf1\xe9\xbf\x44\x9f\x63\xef\xe3\xfc\x46\x44\x92\xe1\xdb\x97\x6d\xd8\x58\xb1\xa3\xef\x82\xdb\xd9\x9f\x86\x7e\xdd\xdd\xa1\x13\x5a\x56\xf1\xf4\xab\x39\x28\xef\x3d\x8f\xdc\xaf\xa8\xdd\x90\xbb\x9e\x6f\x1a\x34\xae\x61\x1c\x74\xa6\xea\xc0\x84\xe7\x68\xe2\xc7\xe8\xd3\xe3\x53\xb1\xb8\xc5\xb4\x23\xce\x86\x98\xad\xa4\xe3\xf8\x2f\xcc\x2d\x10\x9f\xa4\x31\x96\x21\xa6\x7d\x68\x5d\x78\xcc\x74\x16\x45\x93\x34\x1d\x92\x0d\x12\x55\x1b\xd2\x1d\x4d\xbc\xff\x81\xa3\x34\xeb\x70\x2c\x35\x64\xed\x3c\xe4\x64\x20\x7c\x7c\x5d\xf1\x84\x05\xb4\x54\xd1\xe4\x1a\x64\x1d\x71\xf0\x6a\xfc\x2d\x7a\x80\xc1\x40\x4d\x27\x08\xa5\xcc\xe9\x83\xdf\xbd\x6d\x61\xe2\xde\x3c\x76\xe8\x3b\x0e\xef\xfa\x3b\x00\x00\xff\xff\x88\x87\x14\x09\xde\x03\x00\x00" func idtablestakingAdminRemove_approved_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2220,11 +2160,11 @@ func idtablestakingAdminRemove_approved_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/remove_approved_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x6e, 0x8d, 0x79, 0xfb, 0x33, 0x46, 0x8c, 0x90, 0xf0, 0x5b, 0xed, 0x99, 0x74, 0x18, 0xe0, 0x89, 0x87, 0xdb, 0x8d, 0x1e, 0x5, 0xba, 0x54, 0x1, 0x90, 0xdb, 0x87, 0xa8, 0x8f, 0x79, 0x8d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x19, 0xc1, 0x2b, 0xce, 0x80, 0x31, 0x1b, 0xd, 0xa9, 0x5d, 0x5b, 0x5e, 0x54, 0x71, 0xac, 0x23, 0xd6, 0x3e, 0xd2, 0x88, 0xb2, 0x31, 0xc2, 0x94, 0x49, 0x37, 0x6a, 0xd2, 0x9c, 0xd5, 0xfb}} return a, nil } -var _idtablestakingAdminRemove_invalid_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x0c\x45\xba\x8b\xb6\xc1\x69\x28\x18\x42\x29\x75\xe8\x7d\xbc\x1a\x59\xd3\xae\x77\xc4\xee\xc8\x2e\x04\x7f\xf7\xb2\x92\x1d\xf2\xcf\x73\x11\x68\x67\xde\xfb\xcd\xbe\x95\xfd\xa0\xd1\xf0\xdd\xeb\x71\x7d\xff\x48\x5b\xcf\x1b\xa3\xbf\x12\x76\xe8\xa2\xee\xb1\x78\x7f\xb0\x28\x8a\xba\xc6\x63\x2f\x09\x16\x29\x24\x72\x26\x1a\xc0\xa1\x4d\xb0\x9e\x91\xce\xf3\x34\x4e\x07\x9f\x70\xec\xc5\xf5\x88\xdc\x8d\xb9\x25\x68\xcb\x09\x59\xe2\x28\xd6\x43\x42\x1a\xbb\x4e\x9c\x70\xb0\x69\x94\x8b\xe2\x85\x6c\x29\x6d\x6a\xf0\xb4\xb1\x28\x61\xd7\xe0\x4e\xd5\x9f\x96\x78\x2a\x0a\x00\xa8\x6b\x3c\xa8\x23\x8f\x03\x45\xc9\x84\xe8\x34\x82\xb2\x15\x47\x0e\x8e\x61\x3a\x21\xad\xef\x31\x6d\x80\x55\xbb\x97\x00\xdd\xfe\x61\x67\x93\x84\x67\x03\xe5\x9f\xbf\xb8\x6b\x70\xf3\x7e\xdb\x6a\x1a\x99\xfd\x86\xc8\x03\x45\x2e\xc9\x39\x6b\x40\xa3\xf5\xe5\x9d\xc6\xa8\xc7\xdf\xe4\x47\x5e\xe2\x66\xe5\x9c\x8e\xc1\x32\x20\xce\x55\xd7\xd8\x4e\x3d\x1f\x71\xd1\x5b\x9c\x5c\x89\x7d\x57\x5d\x98\xf0\x05\xd9\xad\x4a\xa6\x91\x76\x5c\xcd\x5a\x9f\xaf\x82\x7e\x2d\x73\x6c\xcd\x07\x79\x56\xe7\xef\xd4\xb6\x99\xe5\x7e\x92\xf5\xcb\x67\xe3\x5c\xb7\xb7\x18\x28\x88\x2b\x17\xdf\x74\xf4\x2d\x82\xda\x85\xff\x15\xfd\x73\xc8\x59\x6d\x31\x6b\x9c\xe6\x5b\xe2\x7f\xec\x46\xe3\x17\x77\xf0\x6a\xa3\x2a\xb1\xad\x86\x21\xea\x81\xdb\x07\x49\x96\x13\x5e\x5e\x69\x8d\xbc\xd7\x03\xaf\xc3\x81\xbc\xb4\x3f\xf2\xc3\x29\x2f\x56\xa7\xff\x01\x00\x00\xff\xff\x90\x7f\xa1\x57\xb9\x02\x00\x00" +var _idtablestakingAdminRemove_invalid_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xc1\x6a\xdb\x40\x10\x86\xef\x7a\x8a\x9f\x1c\x8a\x0c\x45\xea\x59\xb4\x0d\x4a\xe5\x82\xc0\x84\x12\xe9\xd2\xe3\x7a\x35\xb2\xa6\x95\x77\xc4\xee\xc8\x0e\x04\xbf\x7b\x59\xd9\x0e\x49\x93\xcc\x45\x20\xcd\x7e\xff\x37\x3b\xe2\xfd\x24\x5e\xf1\x73\x94\x63\x5d\xb5\x66\x3b\x52\xa3\xe6\x2f\xbb\x1d\x7a\x2f\x7b\x7c\x79\xac\xab\xf5\x7d\x5b\xb7\xbf\xdb\xf2\x6e\xb3\x2e\xab\xea\x61\xdd\x34\x49\x92\xe7\x68\x07\x0e\x50\x6f\x5c\x30\x56\x59\x1c\xc8\x75\x01\x3a\x10\xc2\x85\x60\xe6\xe5\xc3\x67\x1c\x07\xb6\x03\x3c\xf5\x73\x6c\x71\xd2\x51\x40\x44\x1c\x59\x07\xb0\x0b\x73\xdf\xb3\x65\x72\xba\x1c\xa5\x24\x79\x81\x4d\xb9\x0b\x05\x9e\x1a\xf5\xec\x76\x05\xee\x44\xc6\xd3\x0a\x4f\x49\x02\x00\x79\x8e\x8d\x58\x33\xe2\x60\x3c\x47\x79\xf4\xe2\x61\x62\x14\x79\x72\x96\xa0\xb2\x28\xd5\x15\x96\xe1\x50\x76\x7b\x76\x90\xed\x1f\xb2\xba\x20\x46\x52\x98\xf8\xf2\x81\xfa\x02\x9f\xde\x5e\x44\xb6\x1c\x39\xe7\x4d\x9e\x26\xe3\x29\x35\xd6\x6a\x81\x72\xd6\xa1\xb4\x56\x66\xa7\xd1\x08\x97\xca\x73\x6c\xc5\x7b\x39\xbe\x27\x62\xfe\xcf\x8f\x15\x68\xec\xb3\xab\x04\xbe\x21\xe2\xb3\x33\xe3\xeb\x87\x46\xdf\xd3\xb8\xa1\xe2\x9d\xd5\x65\x97\xe7\xd2\xd6\xa8\x78\xb3\xa3\x5f\x46\x87\xd5\x73\x60\xac\xdb\x5b\x4c\xc6\xb1\x4d\x6f\x7e\xc8\x3c\x76\x70\xa2\x57\xef\x57\xd6\xcf\xdb\x8c\xb4\x9b\x33\xe3\x74\xbe\x0e\x7a\x24\x3b\x2b\xbd\x98\xfd\xd5\x24\x59\x20\x2d\xa7\xc9\xcb\x81\xba\x0d\x07\x8d\xab\x5c\x7d\xd0\xea\x69\x2f\x07\xaa\xdd\xc1\x8c\xdc\xdd\xc7\x3f\x24\xbd\x46\x9d\xfe\x05\x00\x00\xff\xff\x62\x01\x27\xe0\xa4\x02\x00\x00" func idtablestakingAdminRemove_invalid_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2240,11 +2180,11 @@ func idtablestakingAdminRemove_invalid_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/remove_invalid_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0x2e, 0x4, 0x44, 0x5, 0x11, 0x74, 0xed, 0x35, 0xd5, 0x12, 0x3e, 0x87, 0x55, 0x45, 0x89, 0x30, 0x16, 0xa9, 0x35, 0x7b, 0x87, 0x79, 0x7a, 0x5, 0x9f, 0x18, 0xac, 0xb6, 0x2a, 0x5e, 0xa3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x72, 0xb, 0xf4, 0x44, 0xf3, 0x74, 0xb7, 0x89, 0x8c, 0xb6, 0x17, 0xd1, 0xde, 0x3, 0x5e, 0xf7, 0x9b, 0xf0, 0x2f, 0x57, 0xbe, 0x4b, 0x8f, 0xe9, 0x1f, 0xea, 0x14, 0x34, 0xe1, 0x24, 0x95, 0x2a}} return a, nil } -var _idtablestakingAdminRemove_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\xcb\xda\x40\x10\x86\xef\xf9\x15\x2f\x39\x48\xbc\x24\xf7\xd0\x56\x6c\xa5\x20\x94\x52\x54\x7a\x1f\x77\x27\x66\xdb\x64\x27\x6c\x26\x6a\x29\xfe\xf7\xb2\x89\x16\xfd\xf4\x9b\x4b\x20\x99\x79\xe6\x99\xc9\xb8\xb6\x93\xa0\xf8\xda\xc8\x69\xbd\xda\xd1\xbe\xe1\xad\xd2\x6f\xe7\x0f\xa8\x82\xb4\x48\x9f\x3f\xa4\x49\x52\x14\xd8\xd5\xae\x87\x06\xf2\x3d\x19\x75\xe2\x11\xb8\x95\x23\xf7\x20\x0f\x3e\xbb\x5e\x23\xc2\x8b\xe5\x89\xa3\x35\xc3\x59\xf6\xea\xf4\x0f\x34\xd2\x92\xe4\xae\x3a\x73\xb6\xc4\x56\x83\xf3\x87\x39\xfe\x26\x09\x00\x14\x05\xbe\x89\xa1\x06\x47\x0a\x2e\x56\xa0\x92\x00\x42\xe0\x8a\x03\x7b\xc3\x50\x19\xb9\xeb\x15\x46\x3f\x2c\x6d\xeb\x3c\x64\xff\x8b\x8d\x8e\x88\x86\x15\x14\x5f\x6e\xb8\x2a\x31\x7b\x9e\x25\x1f\x4b\xa6\x7e\x5d\xe0\x8e\x02\x67\x64\x8c\x96\xa0\x41\xeb\xec\xb3\x84\x20\xa7\x9f\xd4\x0c\x3c\xc7\x6c\x69\x8c\x0c\x5e\xa3\x20\xae\x51\x14\xd8\x8f\x39\xaf\xbc\xe8\xad\x4e\x8c\x9e\x9b\x2a\xbf\x39\xe1\x23\x62\xb7\xbc\x57\x09\x74\xe0\x7c\x62\x7d\x78\x57\xf4\x53\x16\x97\x59\xbe\xf8\x5b\xf9\xf5\x39\xa6\x6d\x27\xdc\x0f\xd2\x7a\xfe\xbf\x71\x8c\xc5\x02\x1d\x79\x67\xb2\xf4\x8b\x0c\x8d\x85\x17\xbd\xf9\x3f\xd8\xf7\xd7\x13\x18\x3d\xd3\x89\x71\x99\xb6\xc4\x67\x36\x83\xf2\xdd\x0e\x1e\x26\xca\xa7\x33\x58\x7a\xbb\xe1\x6a\xf0\xf6\xbb\x58\xde\xb0\x91\x60\x33\x67\x6f\xa0\xcb\xbf\x00\x00\x00\xff\xff\x4d\x37\x98\xf0\x75\x02\x00\x00" +var _idtablestakingAdminRemove_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\xab\x9b\x40\x10\xc7\xef\x7e\x8a\x3f\xef\x50\x7c\x17\xed\x59\xda\x3e\x6c\x4d\x41\x78\x84\xa2\x5e\x7a\xdc\xec\x8e\x71\x5b\xdd\x91\x75\x4c\x52\x4a\xbe\x7b\x59\x4d\x4a\xd2\xe6\xcd\x45\x90\x9d\xdf\xff\x37\x33\x76\x18\xd9\x0b\xbe\xf6\x7c\x2c\x8b\x46\xed\x7a\xaa\x45\xfd\xb4\x6e\x8f\xd6\xf3\x80\xf7\xa7\xb2\xd8\x6c\x9b\xb2\xf9\xde\xe4\x9f\x5f\x37\x79\x51\x54\x9b\xba\x8e\xa2\x34\x45\xd3\xd9\x09\xe2\x95\x9b\x94\x16\xcb\x0e\x9e\x06\x3e\xd0\x04\xe5\x40\x27\x3b\x49\x80\x38\x36\xb4\x92\xa4\x23\x58\x43\x4e\xac\xfc\x82\x84\xa0\x28\xba\xe9\x8e\xad\xc9\x50\x8b\xb7\x6e\xff\x8c\xdf\x51\x04\x00\x69\x8a\x57\xd6\xaa\xc7\x41\x79\x1b\x3a\xd0\xb2\x87\x82\xa7\x96\x3c\x39\x4d\x10\x5e\xb8\x65\x81\x45\x1d\xb9\x19\xac\x03\xef\x7e\x90\x96\x05\xd1\x93\x40\x85\x9f\x15\xb5\x19\xde\xfd\x3f\x66\xb2\xb4\xac\x79\xa3\xa7\x51\x79\x8a\x95\xd6\x92\x21\x9f\xa5\xcb\xb5\xe6\xd9\x49\x30\xc2\xa5\xd2\x14\x3b\xf6\x9e\x8f\x8f\x44\xd4\xbf\xf9\xa1\x26\xea\xdb\xe4\x2a\x81\x8f\x08\xf8\x64\x65\x7c\x78\xd3\xe8\x53\x1c\xb6\x96\x3d\x38\x4c\x72\xf9\x2e\xcf\x6a\x61\xaf\xf6\xf4\x4d\x49\xf7\xfc\x37\x30\xd4\xcb\x0b\x46\xe5\xac\x8e\x9f\xbe\xf0\xdc\x1b\x38\x96\xab\xf7\x9d\xf5\x74\xb9\xf6\xe2\xf7\xb4\x32\xce\xeb\x3a\xe8\x44\x7a\x16\xba\x99\xfd\x6e\x92\x64\xbd\x77\xee\x4c\x45\xed\xec\xcc\x96\x0d\x55\xa4\xd9\x9b\xd8\x9a\x2b\xe8\xfc\x27\x00\x00\xff\xff\x22\x63\x8e\xec\x60\x02\x00\x00" func idtablestakingAdminRemove_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -2260,11 +2200,11 @@ func idtablestakingAdminRemove_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/remove_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xca, 0x33, 0x14, 0xe6, 0x42, 0xf6, 0x32, 0x5d, 0x3b, 0x1b, 0xdf, 0xdd, 0xb5, 0x64, 0x5f, 0x18, 0x98, 0xfb, 0x4e, 0xc9, 0x81, 0x63, 0x57, 0x72, 0xf2, 0x1e, 0xc1, 0x11, 0xaa, 0xbc, 0x19, 0x24}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf6, 0xe4, 0xe1, 0x3a, 0x2a, 0x6b, 0xb5, 0x2d, 0x92, 0xdd, 0xa3, 0x6c, 0x8a, 0xd4, 0x7f, 0x7d, 0x72, 0xfa, 0x69, 0xf2, 0xab, 0x98, 0x7c, 0x56, 0xcb, 0xc4, 0xb0, 0xb8, 0xc5, 0xc2, 0xbb, 0x0}} return a, nil } -var _idtablestakingAdminScale_rewards_testCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x3f\x6b\xc3\x30\x10\xc5\x77\x7d\x8a\xab\x87\xe2\x40\x30\x76\x4b\x16\x83\x87\x94\x10\xc8\xd2\xa1\x7f\xa6\xd2\xe1\x2a\x5d\x8d\x89\x22\x85\xd3\x15\x0f\x21\xdf\xbd\x28\x89\x9d\xbf\x75\x35\x18\x0e\xbd\xf7\xd3\x7b\xe7\x66\xb5\xf6\x2c\x30\xb7\xbe\x5d\xcc\xde\xf0\xcb\xd2\xab\xe0\xb2\x71\x35\x7c\xb3\x5f\x41\x72\x7d\x91\x28\x25\x8c\x2e\xa0\x96\xc6\x3b\xd8\x28\x05\x00\xb0\x66\x5a\x23\x53\x8a\x5a\x4b\x09\xf7\x53\xad\xfd\x8f\x93\x11\x6c\x76\xb7\xf1\x58\x12\x60\x6a\x91\x4d\x78\x62\xc2\xa5\xf1\xad\x83\xea\xc6\xcb\xd9\xcb\x85\x2a\x75\xde\xd0\x62\x56\x42\x92\x1f\x4e\x91\x8c\x54\x0f\xbe\x84\x66\x81\xe4\xd9\x1b\x3a\x60\xd2\x22\xcf\xf3\x2c\x1f\x0d\xea\x67\x64\xa9\x46\xf1\xbc\x37\xa5\xa6\x9b\xe3\xb3\x05\x60\x80\xf7\x85\x93\xc7\x87\x71\xe7\x2e\xa1\xd8\x53\x07\xb0\x1a\x2d\x4d\xad\xed\x72\xc4\xb9\x71\xf5\x1c\xb5\x78\x2e\x21\xcf\x26\xc7\x4c\x18\x02\xb1\xa4\xfd\x7c\x13\xe8\x8e\xa5\xa0\xaa\x60\x12\x03\x8c\xcf\x2c\x2b\x0a\x01\x6b\x2a\x21\x69\xd9\xbb\x1a\xa2\xa3\xe3\xc0\x2e\x4f\xd2\xeb\x4f\xa2\xc7\x5f\x63\xce\x37\x10\xa0\xba\x0e\x70\xa9\xf9\x38\xd9\xcc\xe7\x9d\x1a\x6c\x73\xcd\x8f\x0d\xfe\x2b\xd0\xbb\xfe\x6e\x11\xbf\x5b\xb5\xfd\x0d\x00\x00\xff\xff\xbe\x67\xb1\xec\xc9\x02\x00\x00" +var _idtablestakingAdminScale_rewards_testCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\x4d\x6b\xc2\x40\x10\xbd\xef\xaf\x98\xe6\x14\x41\xc2\xda\xe2\x25\xe0\x21\x12\x85\x40\xe9\x41\xd3\x43\x29\x3d\x4c\x37\xd3\x34\xb8\xee\xca\xee\x48\x0a\xe2\x7f\x2f\x6b\x35\xf8\x51\x75\x0e\x0b\x03\xef\xbd\x79\xef\x6d\xb3\x5c\x59\xc7\x30\xd5\xb6\x2d\xf2\x12\x3f\x35\xcd\x19\x17\x8d\xa9\xe1\xcb\xd9\x25\xc8\x9f\x22\x9f\xbc\x94\x45\xf9\x56\x66\xe3\xe7\x49\x96\xe7\xb3\xc9\x7c\x2e\x04\x3b\x34\x1e\x15\x37\xd6\xc0\x46\x08\x00\x80\x95\xa3\x15\x3a\x8a\x51\x29\x4e\x21\x5b\xf3\x77\xa6\x94\x5d\x1b\xee\xc1\x66\x07\x08\xa3\x89\xc1\x51\x8b\xae\xf2\x63\x47\xb8\xa8\x6c\x6b\x60\xf4\xcf\xf9\x64\x76\x86\x8a\x8d\xad\xa8\xc8\x53\x88\xe4\x7e\x06\x51\x4f\x74\xc2\xe7\xa2\x49\x80\xef\x35\x60\x04\x03\x29\x65\x22\xaf\xa3\x3d\x71\x4e\x9a\x6a\x64\xeb\xfe\x58\x71\x75\xd8\xc3\xd1\x01\xa0\x87\xd7\xc2\xf0\xd3\x63\xff\xc0\x4e\x83\x6a\x22\x6f\x99\xf0\x0a\x35\x65\x5a\xef\x8d\xc4\x61\x6f\x4c\x3d\x45\xc5\xd6\xa5\x20\x93\x61\xaf\x23\xa3\xf7\xe4\x38\xee\xf6\xfb\xa9\x46\x30\x0c\x06\xfa\x27\x94\x25\x79\x8f\x35\xa5\x10\xb5\xce\x9a\x1a\x02\xe3\xa0\x03\x3b\x3f\x51\x87\x3f\xb2\x1e\x3e\xa6\x3a\x6d\x20\xf4\x76\x61\xe0\x1c\xf3\x7e\xd4\xcc\xc7\x83\xb8\x99\xe6\x52\x3f\x24\xb8\x17\xa0\x63\x5d\x4f\x11\xde\xad\xd8\xfe\x06\x00\x00\xff\xff\xb2\x19\x09\x1c\xcc\x02\x00\x00" func idtablestakingAdminScale_rewards_testCdcBytes() ([]byte, error) { return bindataRead( @@ -2280,11 +2220,11 @@ func idtablestakingAdminScale_rewards_testCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/scale_rewards_test.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0xfb, 0xe0, 0xff, 0xc8, 0xd5, 0x10, 0x1a, 0xf1, 0x22, 0x4, 0x38, 0x3f, 0xc9, 0xbd, 0xd9, 0x0, 0xa9, 0xb3, 0x36, 0xcf, 0x67, 0xb1, 0x7e, 0xbe, 0xe4, 0x70, 0x2b, 0x92, 0xff, 0x37, 0x16}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0x39, 0xc5, 0x67, 0x9f, 0x4b, 0xfc, 0xd2, 0xa6, 0xc9, 0x65, 0xd0, 0xe9, 0xc, 0x91, 0xf2, 0x55, 0x35, 0x9e, 0xbe, 0x20, 0xc0, 0x8f, 0x35, 0xf0, 0xb0, 0x73, 0xf4, 0xc9, 0xe, 0x1a, 0x70}} return a, nil } -var _idtablestakingAdminSet_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x8b\xdb\x30\x10\xc5\xef\xfe\x14\x0f\x1f\x16\xe7\x62\xdf\x4d\xdb\x25\xdb\xa5\xb0\xb0\x87\xd2\x84\xde\x27\xf2\x38\x56\xab\x68\x8c\x34\x4e\x0a\x21\xdf\xbd\xc8\x7f\x4a\xd2\x64\xe7\x62\xb0\xf4\xde\xfc\x34\x6f\xec\xa1\x97\xa0\xf8\xe6\xe4\xf4\xf6\xba\xa5\x9d\xe3\x8d\xd2\x6f\xeb\xf7\x68\x83\x1c\x90\xdf\x1f\xe4\x59\x56\x55\xd8\x76\x36\x42\x03\xf9\x48\x46\xad\x78\x44\xd6\x08\xed\x18\xce\x46\x85\xb4\xa0\xbe\x0f\x72\xe4\x06\x5e\x1a\x8e\xb0\x7e\x3c\x7d\x7b\x85\x26\xb3\x2c\xbb\x12\x17\xb6\x89\x35\xce\x1b\x0d\xd6\xef\x6b\xbc\x88\xb8\xcb\x0a\xe7\x2c\x03\x80\xaa\xc2\xbb\x18\x72\x38\x52\xb0\x49\x8a\x56\x02\x08\x81\x5b\x0e\xec\x0d\x43\x65\xb1\x1e\x39\xb1\x6e\x0e\xd6\x43\x76\xbf\xd8\xe8\x68\xe1\x58\x41\xe9\xe7\x0f\x6e\x6b\x3c\xdd\xbf\xa9\x1c\x25\x53\xbf\x3e\x70\x4f\x81\x0b\x32\x46\x6b\xd0\xa0\x5d\xf1\x22\x21\xc8\xe9\x27\xb9\x81\x57\x78\x5a\x1b\x23\x83\xd7\x04\x88\xb9\xaa\x0a\xbb\xf1\xce\x23\x2e\xfa\x1f\x27\x55\x64\xd7\x96\x0b\x13\x3e\x23\x75\x2b\xa3\x4a\xa0\x3d\x97\x93\xd7\xa7\x0f\x41\xbf\x14\x29\x9c\xfa\x41\x6a\xe5\xfc\x1d\xaf\x6d\x26\xbb\xef\xa4\xdd\xea\x5f\xe3\x54\xcf\xcf\xe8\xc9\x5b\x53\xe4\x5f\x65\x70\x29\x21\x5d\xf8\x6f\xe8\xe3\xbc\x0a\x23\x67\x3e\x79\x5c\xa6\x29\xf1\x1f\x36\x83\xf2\xd5\x0c\x6e\x5e\x54\x46\xd6\xf5\xbc\x00\xef\x36\x6a\x4a\x78\xd1\x5f\xfe\x06\x00\x00\xff\xff\xff\xfc\x9f\x93\x74\x02\x00\x00" +var _idtablestakingAdminSet_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4f\x6b\xdc\x30\x10\xc5\xef\xfe\x14\x8f\x1c\x8a\x73\xb1\x7b\x36\x6d\x83\x53\x6f\xc1\xb0\x94\x12\xfb\xd2\xa3\x56\x1e\xaf\xd5\x6a\x35\x46\x1a\x27\x81\xb0\xdf\xbd\xc8\x7f\xca\x6e\xbb\x99\x8b\xc1\xd2\xbc\xf7\x7b\x7a\xe6\x34\xb2\x17\x7c\xb3\xfc\x52\x57\xad\x3a\x58\x6a\x44\xfd\x36\xee\x88\xde\xf3\x09\x1f\x5f\xeb\x6a\xf7\xbd\xad\xdb\x9f\x6d\xf9\xb8\xdf\x95\x55\xf5\xb4\x6b\x9a\x24\xc9\x73\xb4\x83\x09\x10\xaf\x5c\x50\x5a\x0c\x3b\x04\x92\x00\x19\x08\xd6\x04\x01\xf7\x50\xe3\xe8\xf9\x99\x3a\x38\xee\x28\xc0\xb8\xf9\xb4\xae\x20\xd1\x27\x49\x2e\x96\x53\xd3\x85\x02\x6f\x8d\x78\xe3\x8e\x05\x1e\x99\xed\xf9\x1e\x6f\x49\x02\x00\x79\x8e\x3d\x6b\x65\xf1\xac\xbc\x89\xab\xe8\xd9\x43\xc1\x53\x4f\x9e\x9c\x26\x08\x6f\xd2\x73\x04\x94\xdd\xc9\x38\xf0\xe1\x17\x69\x99\x25\x2c\x09\x54\xfc\xf9\x44\x7d\x81\x0f\xff\xc7\xcd\xe6\x95\xc5\x6f\xf4\x34\x2a\x4f\xa9\xd2\x5a\x0a\x94\x93\x0c\xa5\xd6\x3c\x39\x89\x44\x58\x27\xcf\x71\x60\xef\xf9\xe5\x16\x88\xfa\xd7\x3f\x4e\x20\xdb\x67\x1b\x04\x3e\x23\xca\x67\x8b\xc6\xa7\x77\x89\xbe\xa4\xb1\x87\xe2\x46\x41\xd9\xfa\x9d\xaf\x35\xc2\x5e\x1d\xe9\x87\x92\xe1\xfe\xaf\x61\x9c\x87\x07\x8c\xca\x19\x9d\xde\x7d\xe5\xc9\xc6\x2a\x64\xe3\xbe\xa2\x0e\x6b\xeb\x33\xdf\xdd\xa2\x71\x5e\x9e\x83\x5e\x49\x4f\x42\x17\xd9\xaf\x92\x64\x81\xa4\x5c\x9b\xde\x9b\x20\xb1\xca\x6d\xff\xfc\x27\x00\x00\xff\xff\xc5\xca\x43\xb8\x5f\x02\x00\x00" func idtablestakingAdminSet_approved_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2300,11 +2240,11 @@ func idtablestakingAdminSet_approved_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_approved_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x44, 0xa0, 0xfc, 0x5d, 0x65, 0x80, 0xeb, 0x76, 0x1e, 0x7, 0x24, 0x56, 0x7b, 0x94, 0x24, 0x0, 0x60, 0xd1, 0x2c, 0xd8, 0x6d, 0xd5, 0x84, 0xca, 0x73, 0x54, 0x45, 0x90, 0x97, 0x72, 0x4f, 0x64}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x65, 0x9e, 0x70, 0xe8, 0x77, 0x3e, 0xbb, 0xfe, 0x9f, 0x48, 0xbe, 0x7e, 0xf7, 0x80, 0x8a, 0x63, 0xad, 0x45, 0xdb, 0x75, 0x8b, 0xfd, 0x23, 0x66, 0x45, 0x89, 0x90, 0x81, 0xe1, 0xf0, 0xce, 0xe1}} return a, nil } -var _idtablestakingAdminSet_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6f\xe2\x30\x10\x85\xef\xf9\x15\x4f\x39\xa0\xe4\x92\xdc\xd1\xee\x22\x16\xb4\x12\xd2\x1e\x56\x0b\xea\x7d\x70\x26\xc4\xc5\xb1\x23\x7b\x52\x5a\x21\xfe\x7b\xe5\x84\x54\x6d\x81\xb9\x44\x8a\x67\xde\xfb\x66\x9e\x6e\x3b\xe7\x05\x7f\x8c\x3b\x6d\xd6\x3b\xda\x1b\xde\x0a\x1d\xb5\x3d\xa0\xf6\xae\x45\x7a\xfb\x90\x26\x49\x59\x62\xd7\xe8\x00\xf1\x64\x03\x29\xd1\xce\xa2\xa3\xb7\x00\xcf\x27\xf2\x55\x80\x38\x90\x31\x90\x86\x11\x84\x8e\x5c\xc1\xba\x8a\x43\x92\x7c\x9e\x38\x27\x09\x00\x94\x25\xfe\x3a\x45\x06\x2f\xe4\x75\xf4\x41\xed\x3c\x08\x9e\x6b\xf6\x6c\x15\x47\xb5\xa8\xb4\x59\x63\xe0\xc0\xb2\x6a\xb5\x85\xdb\x3f\xb3\x92\x41\xc2\xb0\x80\xe2\xcf\xff\x5c\xcf\x31\xbb\x65\x2e\x86\x91\xd1\xaf\xf3\xdc\x91\xe7\x8c\x94\x92\x39\xa8\x97\x26\xfb\xed\xbc\x77\xa7\x27\x32\x3d\xe7\x98\x2d\x95\x72\xbd\x95\x7c\x02\xbc\x42\xee\x87\xa6\x7b\x60\xf4\x9d\x27\x56\x60\x53\x17\x13\x14\x7e\x22\xda\x15\x41\x9c\xa7\x03\x17\xa3\xd6\x8f\x87\xa4\xbf\xb2\x78\xfd\xf9\x9d\x58\x8a\xeb\x77\x68\xdb\x8e\x72\xff\x48\x9a\xfc\xc3\x38\xd6\x62\x81\x8e\xac\x56\x59\xba\x72\xbd\x89\xd7\x97\x89\xff\x0b\x7d\xb8\x66\x3d\x70\xa6\xa3\xc6\x65\xdc\x9a\x5f\x59\xf5\xc2\x38\xdf\xdf\xa8\x08\x2c\x2b\x43\xba\xe5\x2a\xcb\x1f\xb5\x08\x79\x99\x78\xfb\x21\xf4\x6c\xf2\xb8\xbc\x07\x00\x00\xff\xff\x58\x92\xe9\x95\x79\x02\x00\x00" +var _idtablestakingAdminSet_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xc1\x8a\xdb\x30\x10\x86\xef\x7e\x8a\x9f\x3d\x14\xe7\x62\xf7\x1c\xda\x2e\xee\x3a\x05\xc3\x52\xca\xda\x97\x1e\x27\xf2\x78\xad\x46\x96\x8c\x34\x6e\x52\x42\xde\xbd\xc8\x8e\x4b\xdb\x4d\xe6\x22\x10\x33\xdf\x7c\x33\xa3\x87\xd1\x79\xc1\x17\xe3\x8e\x55\xd9\xd0\xde\x70\x2d\x74\xd0\xf6\x15\x9d\x77\x03\xde\x9f\xaa\x72\xf7\xb5\xa9\x9a\xef\x4d\xf1\xf9\x79\x57\x94\xe5\xcb\xae\xae\x93\x24\xcf\xd1\xf4\x3a\x40\x3c\xd9\x40\x4a\xb4\xb3\x18\xe9\x57\x80\xe7\x23\xf9\x36\x40\x1c\xc8\x18\x48\xcf\x08\x42\x07\x6e\x61\x5d\xcb\x21\x49\xfe\xae\x38\x27\x09\x00\xe4\x39\x9e\x9d\x22\x83\x9f\xe4\x75\x54\x40\xe7\x3c\x08\x9e\x3b\xf6\x6c\x15\x47\x5a\x24\x55\x25\x66\x45\x14\xed\xa0\x2d\xdc\xfe\x07\x2b\x99\x11\x86\x05\x14\x3f\x5f\xb8\xdb\xe2\xdd\xdb\x71\xb2\xb9\x64\xe9\x37\x7a\x1e\xc9\x73\x4a\x4a\xc9\x16\xc5\x24\x7d\xa1\x94\x9b\xac\x6c\x56\xa3\xab\xd5\xde\x79\xef\x8e\xb7\x4c\xe8\x7f\x81\x18\x81\x4d\x97\xad\x16\xf8\x88\xc8\xcf\x16\xc6\x87\xbb\x4a\x9f\xd2\xb8\xe8\xed\x8d\x0b\x64\xd7\x77\x4e\xab\xc5\x79\x7a\xe5\x6f\x24\xfd\xe6\x4f\xc3\x18\x8f\x8f\x18\xc9\x6a\x95\x3e\x3c\xb9\xc9\xc4\x35\xcb\xea\xfd\x8f\x75\xb8\x9e\x75\xf6\x7b\x58\x18\x97\x65\x5a\x3e\xb1\x9a\x84\x71\xbe\x3d\x49\x16\x58\x9e\x0c\xe9\x81\xdb\x74\x73\x2f\x45\xc8\xcb\xea\x3b\xcd\xd7\x4d\xd7\x1e\x97\xdf\x01\x00\x00\xff\xff\x7b\xc7\x21\x68\x64\x02\x00\x00" func idtablestakingAdminSet_claimedCdcBytes() ([]byte, error) { return bindataRead( @@ -2320,11 +2260,11 @@ func idtablestakingAdminSet_claimedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_claimed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0xd5, 0xa0, 0x15, 0x9, 0x9e, 0xf5, 0xc0, 0xaf, 0xa2, 0x3e, 0xd3, 0x54, 0x30, 0xef, 0xcb, 0x9, 0xa1, 0x94, 0xb6, 0x48, 0x83, 0xf2, 0x39, 0xb2, 0xac, 0x3a, 0xf1, 0x6, 0x97, 0xdc, 0x21}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xb4, 0xad, 0x42, 0x53, 0x64, 0xc1, 0x6f, 0x27, 0xf0, 0xd8, 0xf6, 0xf8, 0x47, 0x9f, 0x1e, 0x61, 0x7c, 0x35, 0xb0, 0xd3, 0x57, 0xe1, 0x19, 0x43, 0x5, 0x52, 0x66, 0x26, 0x65, 0xb6, 0x6}} return a, nil } -var _idtablestakingAdminSet_node_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x8b\xd4\x40\x10\x85\xef\xf9\x15\x8f\x1c\x96\x0c\x48\x72\x11\x0f\x41\x5d\x56\x07\x21\x20\x22\xce\xaa\xe7\x9a\x4e\x25\x69\xed\xe9\x0a\xdd\x15\x67\x41\xf6\xbf\x4b\x77\x66\x74\xd7\x9d\xad\x4b\x43\xd2\xf5\xde\xd7\xf5\xca\x1e\x66\x09\x8a\x0f\x4e\x8e\xdd\xf6\x96\xf6\x8e\x77\x4a\x3f\xad\x1f\x31\x04\x39\xa0\x7c\xfa\xa3\x2c\x8a\xa6\xc1\xed\x64\x23\x34\x90\x8f\x64\xd4\x8a\x47\x64\x8d\xd0\x89\x61\xbd\x55\x4b\xee\x3b\xdb\x71\x52\xc8\x00\xf2\xe0\x3b\x1b\x35\x89\x7a\xe9\xb9\x78\xd0\x56\xd9\xbe\xc5\x4e\x83\xf5\xe3\x0b\x1c\x73\x4b\x8b\xaf\x9d\xd7\x57\x2f\x37\xf8\x5d\x14\x00\xd0\x34\xf8\x28\x86\x1c\x7e\x51\xb0\x09\x04\x83\x04\x10\x02\x0f\x1c\xd8\x1b\x86\x4a\x76\xee\xb6\xc8\xa0\xb8\xe9\x0f\xd6\x43\xf6\x3f\xd8\x68\x96\x70\xac\xa0\xf4\xf1\x0b\x0f\x2d\xae\x9e\x3e\xaa\xce\x2d\xab\xdf\x1c\x78\xa6\xc0\x15\x19\xa3\x2d\x68\xd1\xa9\x7a\x27\x21\xc8\xf1\x1b\xb9\x85\x37\xb8\xba\x31\x46\x16\xaf\x09\x10\xa7\x6a\x1a\xec\xf3\x9d\x4b\x5c\xf4\x3f\x4e\xaa\xc8\x6e\xa8\xcf\x4c\x78\x83\xe4\x56\x47\x95\x40\x23\xd7\xab\xd6\xeb\x67\x41\xdf\x56\x29\x9d\xf6\x42\x6c\xf5\xe9\xcc\xd7\x76\xab\xdc\x67\xd2\x69\xf3\xd7\x38\xd5\xf5\x35\x66\xf2\xd6\x54\xe5\x7b\x59\x5c\x0f\x2f\x7a\xe6\x7f\x44\x1f\x4f\xbb\x90\x39\xcb\x55\xe3\x7e\x9d\x12\xdf\xb1\x59\x94\x1f\xcc\xe0\xd1\x8b\xea\xc8\xfa\x49\x7a\x5e\xd7\xa0\x4a\xb9\x77\xdb\x16\xb6\xff\x17\xf3\x7a\x9e\x45\xef\xff\x04\x00\x00\xff\xff\xf3\x29\x18\xae\x8a\x02\x00\x00" +var _idtablestakingAdminSet_node_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x8b\xd4\x40\x10\x85\xef\xf9\x15\x8f\x3d\x48\x16\x24\xf1\x20\x1e\x82\xba\x44\x33\x42\x60\x59\x64\x13\x11\x8f\x35\x9d\xca\xa4\x35\xd3\x15\xba\x2b\xce\x80\xec\x7f\x97\x4e\x66\x74\x57\x67\xeb\x52\x10\x52\xef\x7d\xaf\x9f\xdd\x4f\xe2\x15\x9f\x46\x39\xd4\x55\x4b\xdb\x91\x1b\xa5\x1f\xd6\xed\xd0\x7b\xd9\xe3\xd5\xb1\xae\x36\x77\x6d\xdd\x7e\x6b\xcb\x0f\xb7\x9b\xb2\xaa\xee\x37\x4d\x93\x24\x79\x8e\x76\xb0\x01\xea\xc9\x05\x32\x6a\xc5\x21\xb0\x06\xe8\xc0\xb0\xce\xaa\xa5\xf1\x2b\xdb\xdd\xa0\x90\x1e\xe4\xc0\x47\x1b\x34\xca\x3a\xe9\x38\x79\x74\x96\xda\xae\x40\xa3\xde\xba\xdd\x4b\x1c\x96\x93\x02\x5f\x6a\xa7\x6f\x5e\x5f\xe3\x57\x92\x00\x40\x9e\xe3\x56\x0c\x8d\xf8\x49\xde\x46\x46\xf4\xe2\x41\xf0\xdc\xb3\x67\x67\x18\x2a\x8b\x73\x5d\x61\xc9\x80\xb2\xdb\x5b\x07\xd9\x7e\x67\xa3\x8b\xc4\xc8\x0a\x8a\x1f\xef\xb9\x2f\xf0\xe2\xff\xbc\xd9\x72\xb2\xfa\x4d\x9e\x27\xf2\x9c\x92\x31\x5a\xa0\x9c\x75\x28\x8d\x91\xd9\x69\x24\xc2\x69\xf2\x1c\x5b\xf1\x5e\x0e\x97\x40\xe8\x5f\xff\x38\x81\xc7\x3e\x3b\x43\xe0\x1d\xa2\x7c\xb6\x6a\xbc\x7d\x96\xe8\x7d\x1a\x8b\x28\x2e\x34\x94\x9d\xf6\xf2\x5b\xa3\xe2\x69\xc7\x9f\x49\x87\xeb\x3f\x86\x71\x6e\x6e\x30\x91\xb3\x26\xbd\xfa\x28\xf3\xd8\xc1\x89\x9e\xb9\x9f\x50\x87\x53\xed\x0b\xdf\xd5\xaa\xf1\xb0\x3e\x07\x1f\xd9\xcc\xca\x8f\xb2\x3f\x49\x92\x05\xd6\x3b\xe9\x78\xed\x3b\x8d\x05\xd7\x55\x01\xdb\xfd\xed\x73\xdd\x67\xd1\x87\xdf\x01\x00\x00\xff\xff\xc7\x86\x8f\xec\x75\x02\x00\x00" func idtablestakingAdminSet_node_weightCdcBytes() ([]byte, error) { return bindataRead( @@ -2340,11 +2280,11 @@ func idtablestakingAdminSet_node_weightCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_node_weight.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x83, 0x38, 0x72, 0x86, 0x8a, 0x4f, 0x3d, 0x9e, 0x30, 0x9c, 0x8f, 0x8a, 0x50, 0xc1, 0x8, 0x15, 0x7, 0x30, 0xda, 0xd0, 0x81, 0x97, 0xb8, 0x37, 0xfe, 0x1b, 0x35, 0xa, 0xf0, 0x51, 0x3b, 0x4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfe, 0xb, 0x49, 0x3b, 0xa5, 0x0, 0x6c, 0x1e, 0x8a, 0xe, 0x82, 0xb, 0xaf, 0xd9, 0x32, 0xa3, 0x33, 0xeb, 0x65, 0xb7, 0x87, 0x42, 0x1d, 0xe4, 0x89, 0xe6, 0x19, 0xa5, 0x25, 0xae, 0x5c, 0xcd}} return a, nil } -var _idtablestakingAdminSet_non_operationalCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x7c\x91\x72\x28\x3d\x88\xba\x21\x6d\x08\x04\x42\x5a\xea\xb4\x97\x90\xc3\x78\x77\x64\x6d\xbb\xde\x31\xbb\xe3\x2a\x60\xfc\xdd\xcb\x4a\xb6\xeb\xd6\xc9\x5c\x04\x9a\xd9\xf7\x7e\xf3\xc7\xad\xd6\x12\x15\xb7\x5e\xfa\xbb\x9b\x47\x5a\x78\x9e\x2b\xfd\x72\x61\x89\x36\xca\x0a\x93\xf3\xc4\xa4\x28\xea\x1a\x8f\x9d\x4b\xd0\x48\x21\x91\x51\x27\x01\x89\x35\x41\x3b\x86\x77\x49\x21\x2d\x82\x58\x4e\xe8\x3b\x01\x45\x46\x90\x00\x59\x73\xa4\x5c\x4c\x3e\x4b\x50\xb0\x39\x9d\x18\x91\x7b\x8a\x36\xa1\x77\xde\x63\xc1\xe8\x9d\x76\x1d\x7b\x5b\x14\x27\x0e\xa5\xb3\xa9\xc1\xd3\x5c\xa3\x0b\xcb\xe7\x29\xb6\x45\x01\x00\x75\x8d\x7b\x31\xe4\xf1\x9b\xa2\xcb\x98\x68\x25\x82\x10\xb9\xe5\xc8\xc1\x30\x54\x06\xae\xbb\x1b\x0c\x6d\xe0\xda\xae\x5c\x80\x2c\x7e\xb2\xd1\x41\xc2\xb3\x82\xf2\xcf\x6f\xdc\x36\xb8\x38\x6f\xb9\x1a\x9e\x8c\x7e\xeb\xc8\x6b\x8a\x5c\x92\x31\xda\x80\x36\xda\x95\x9f\x24\x46\xe9\x7f\x90\xdf\xf0\x14\x17\xd7\xc6\xc8\x26\x68\x06\xc4\x3e\xea\x1a\x8b\xa1\xe6\x35\x2e\xfa\x1f\x27\x47\x62\xdf\x56\x07\x26\xcc\x90\xdd\xaa\xa4\x12\x69\xc9\xd5\xa8\xf5\xe1\x4d\xd0\x8f\x65\xde\x5d\xf3\xca\x52\xab\xfd\x77\x28\x9b\x8f\x72\x5f\x49\xbb\xe9\xd1\x38\xc7\xd5\x15\xd6\x14\x9c\x29\x27\x9f\x65\xe3\x2d\x82\xe8\x81\xff\x1f\xfa\xb4\xbf\x94\x81\x73\x32\x6a\xec\xc6\x29\xf1\x0b\x9b\x8d\xf2\xc9\x0c\xf2\x90\xf3\x49\xdc\xbb\xa4\x0d\xb6\xe3\x1a\x1b\x7c\xbf\x75\x2f\xef\xdf\xed\x30\xc3\x76\x77\xac\xcd\x1b\x74\x16\x2e\xc0\xd9\x74\xa2\x91\xe3\xa0\xf1\xe4\xec\x33\x66\xb8\xac\x2e\x8f\xe9\xbd\xf7\xd9\xfc\xaa\xc4\xfa\x20\xe1\xcb\xdf\xf3\x7b\xc8\xb7\x99\x55\xca\x83\xdc\x81\x7e\xf7\x27\x00\x00\xff\xff\x8f\xd3\xc9\x6a\x11\x03\x00\x00" +var _idtablestakingAdminSet_non_operationalCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x8f\xda\x3e\x10\xc5\xef\xf9\x14\x4f\x7b\xf8\x8b\xbd\x24\x1c\xfe\xea\x21\x2a\x5d\xd1\xc2\x4a\x48\x88\x56\x0b\x3d\x54\xab\x3d\x18\x7b\x42\xdc\x1a\x4f\x64\x0f\x0d\x12\xe2\xbb\x57\x4e\x08\xa5\xdd\xed\x5c\x90\xf0\xe4\xbd\xdf\xcc\x1b\xbb\x6f\x38\x08\x1e\x1d\xb7\x8b\xd9\x46\x6d\x1d\xad\x45\xfd\xb0\x7e\x87\x2a\xf0\x1e\xe3\xe3\x62\x36\x5f\x6d\x16\x9b\x6f\x9b\xe9\xc7\xe5\x7c\x3a\x9b\x3d\xcd\xd7\xeb\x2c\x2b\x0a\x6c\x6a\x1b\x21\x41\xf9\xa8\xb4\x58\xf6\x88\x24\x11\x52\x13\x9c\x8d\x02\xae\xe0\xd9\x50\x44\x5b\x33\x54\x20\x78\xf6\xe0\x86\x82\x4a\xcd\xca\x25\x09\xe5\x4d\x7a\x8e\x84\x40\xad\x0a\x26\xa2\xb5\xce\x61\x4b\x68\xad\xd4\x35\x39\x93\x65\x37\x0e\x23\x6b\x62\x89\xe7\xb5\x04\xeb\x77\x2f\xf7\x38\x65\x19\x00\x14\x05\x96\xac\x95\xc3\x4f\x15\x6c\x9a\x00\x15\x07\x28\x04\xaa\x28\x90\xd7\x04\xe1\x8e\x6b\x31\x43\x37\x21\xa6\x66\x6f\x3d\x78\xfb\x9d\xb4\x74\x12\x8e\x04\x2a\xfd\xf9\x44\x55\x89\xff\x5e\x6f\x23\xef\x3e\xe9\xfd\x9a\x40\x8d\x0a\x34\x52\x5a\x4b\x89\xe9\x41\xea\xa9\xd6\x7c\xf0\x92\x88\x70\xa9\xa2\xc0\x96\x43\xe0\xf6\x2d\x10\xf5\xb7\x7f\xaa\x48\xae\xca\x07\x08\x4c\x90\xe4\xf3\x5e\xe3\xfd\x3f\x89\x3e\x8c\x52\x4c\xe5\x1b\xf9\xe5\x97\xdf\xae\x6d\x2d\x1c\xd4\x8e\xbe\x28\xa9\xef\xaf\x86\xa9\x1e\x1e\xd0\x28\x6f\xf5\xe8\xee\x13\x1f\x9c\x81\x67\x19\xb8\xff\xa0\x8e\x97\xa3\xe8\xf8\xee\x7a\x8d\x73\xbf\x0e\x3a\x92\x3e\x08\xdd\xcc\x9e\xb6\x99\xb2\x5f\xda\x28\x25\x4e\x7d\x5e\x25\xbe\x3e\xda\xe3\xbb\xff\xcf\x98\xe0\x74\xbe\xf6\xa6\xa8\xac\x81\xf5\xb0\x26\xde\x68\xa4\x1a\x34\x9e\xad\x79\xc1\x04\xe3\x7c\x7c\x7d\xbe\x78\xbf\xda\x5b\x1e\x49\x56\xec\x3f\xff\xbe\xb3\x55\x3a\xc2\xa4\x32\x1a\xe4\x06\xfa\xf3\xaf\x00\x00\x00\xff\xff\x2e\x67\x28\x92\xfc\x02\x00\x00" func idtablestakingAdminSet_non_operationalCdcBytes() ([]byte, error) { return bindataRead( @@ -2360,11 +2300,11 @@ func idtablestakingAdminSet_non_operationalCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_non_operational.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0x68, 0xc4, 0x60, 0xca, 0x3c, 0x78, 0xdf, 0x66, 0x1d, 0xb4, 0xe3, 0xec, 0x5f, 0xa3, 0xa7, 0x1f, 0xe1, 0x64, 0x1e, 0xd3, 0xcf, 0x20, 0xfe, 0xff, 0x7b, 0x98, 0xdb, 0xaa, 0x39, 0x72, 0xcc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x32, 0x99, 0x51, 0x92, 0xa9, 0x12, 0x60, 0xc4, 0xab, 0xdc, 0x1b, 0x6d, 0x9, 0x41, 0xee, 0xae, 0xda, 0xfa, 0xb1, 0x2f, 0xe9, 0x74, 0x21, 0x64, 0x50, 0x37, 0xde, 0xc7, 0x84, 0xda, 0x31, 0x2b}} return a, nil } -var _idtablestakingAdminSet_open_access_node_slotsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xd1\x6a\xdb\x40\x10\x7c\xd7\x57\x0c\x7e\x08\x32\x04\x89\x3e\xb4\x14\xd1\x34\xa4\x0d\x85\x40\x69\x4b\x9d\xf6\x7d\x7d\x5a\x59\x97\xc8\xb7\xe2\x6e\x65\xd7\x18\xff\x7b\xb9\x93\xd5\xa6\xb6\xbb\x2f\x82\xd3\xce\xec\xec\xce\xd8\x75\x2f\x5e\xf1\xa9\x93\xed\xc3\xfd\x23\x2d\x3b\x5e\x28\x3d\x5b\xb7\x42\xe3\x65\x8d\xd9\xf9\x8f\x59\x96\x95\x65\x89\xc7\xd6\x06\xa8\x27\x17\xc8\xa8\x15\x87\xc0\x1a\xa0\x2d\x43\x7a\x76\x70\x52\x33\x42\x27\x1a\xd0\x88\x07\x19\xc3\x21\xa4\xd7\x90\xe0\x5f\x4f\x9a\xc8\x73\x02\xbb\x61\xbd\x64\x0f\x69\x8e\xef\xda\x92\xa6\x9f\x91\x35\x21\x99\x4c\x0b\xee\xc5\xb4\xd7\xf0\xbc\x22\x5f\x77\x91\x5a\x1a\xb4\xb2\xc5\x9a\xdc\x6e\x1c\x83\x27\xb1\x8e\x6b\x58\x97\x88\x7b\xcf\x1b\x2b\x43\x18\xa1\xc5\x71\x07\xde\x25\x72\xcf\x8d\xe7\xd0\x72\xfd\x82\x3d\xcb\x5e\x6c\x97\xc7\xf1\x77\x69\x89\x45\xd4\x55\xe1\xc7\x83\xd3\x57\x6f\xe6\xd8\x67\x19\x00\x94\x25\x3e\x8b\xa1\x0e\x1b\xf2\x36\x5e\x6b\x5c\x3b\x32\xb3\x67\x67\x18\x2a\x49\xc7\xc3\x3d\xd2\x35\x71\x57\xaf\xad\x83\x2c\x9f\xd8\x68\xa2\xe8\x58\x41\xf1\xf1\x3b\x37\x15\xae\xce\x2f\x5f\x24\xc8\x38\xaf\xf7\xdc\x93\xe7\x9c\x8c\xd1\x0a\x34\x68\x9b\x7f\x10\xef\x65\xfb\x93\xba\x81\xe7\xb8\xba\x33\x46\x06\xa7\x51\x20\x8e\x55\x96\x58\xa6\x9e\x4b\xba\xe8\x54\x4e\xac\xc0\x5d\x53\x4c\x9a\x70\x13\x6d\xd4\x22\xa8\x78\x5a\x71\x31\x72\xbd\xfb\xaf\xd0\xf7\x79\x8c\x50\x75\x21\x5b\xc5\xf1\x9b\xda\x16\x23\xdd\x37\xd2\x76\xfe\x67\x70\xac\xdb\x5b\xf4\xe4\xac\xc9\x67\x1f\x65\xe8\x6a\x38\xd1\x49\xff\x3f\xea\xc3\x31\xb0\x49\xe7\x6c\xe4\x38\x8c\x57\xe2\x5f\x6c\x06\xe5\xc9\xa4\x58\x1b\xf2\x29\x4b\xd1\xc6\x7b\x9b\xcc\x25\xbf\xab\xb0\x8f\x86\xbe\x9d\x7c\x3d\xe0\x06\xfb\xc3\x5f\xd4\x39\xa2\xb0\x2e\xb0\xd7\xfc\x99\x77\x15\x5e\x5f\xe3\x24\x20\xf3\xec\xf2\x11\x8b\xc0\x1a\xb3\xff\x45\x6a\x4e\x8d\xf9\x44\x1d\xaa\x0b\x53\xa6\x6d\x0e\xbf\x03\x00\x00\xff\xff\x2c\x22\xfd\x94\xa8\x03\x00\x00" +var _idtablestakingAdminSet_open_access_node_slotsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xc1\x6a\xdb\x40\x10\xbd\xeb\x2b\x1e\x39\x14\x05\x82\xd4\x1e\x5a\x8a\x68\x1a\xd4\x2a\x05\x43\x48\x4b\xec\x1e\x7a\x5c\xaf\x46\xd6\x26\xf2\x8e\xd8\x1d\xd9\x31\xc6\xff\x5e\x76\x65\xb5\xa9\xe3\xce\x45\xb0\x9a\xf7\xe6\xcd\xbc\x67\xd6\x3d\x3b\xc1\xb7\x8e\xb7\xb3\x6a\xa1\x96\x1d\xcd\x45\x3d\x19\xbb\x42\xe3\x78\x8d\xb7\xcf\xb3\xea\xf6\x7e\x31\x5b\xfc\x5a\x94\x5f\xee\x6e\xcb\xaa\x7a\xb8\x9d\xcf\x93\x24\xcf\x73\x2c\x5a\xe3\x21\x4e\x59\xaf\xb4\x18\xb6\xf0\x24\x1e\xd2\x12\xb8\x27\x0b\xcb\x35\xc1\x77\x2c\x1e\x0d\x3b\x28\xad\xc9\xfb\xf8\xea\x23\xfc\xfb\x49\x93\x72\x14\xc1\x76\x58\x2f\xc9\x81\x9b\xe3\xbb\xb4\x4a\xe2\xcf\xc0\x1a\x91\xa4\x74\x0b\xea\x59\xb7\x57\x70\xb4\x52\xae\xee\x02\x35\x37\x68\x79\x8b\xb5\xb2\xbb\x71\x0c\x1e\xd9\x58\xaa\x61\x6c\x24\xee\x1d\x6d\x0c\x0f\x7e\x84\x66\xc7\x1d\x68\x17\xc9\x1d\x35\x8e\x7c\x4b\xf5\x0b\xf6\x24\x79\xb1\x5d\x1a\xc6\x97\x71\x89\x79\xd0\x55\xe0\xe7\xcc\xca\xbb\x0f\x97\xd8\x27\x09\x00\xe4\x39\xee\x58\xab\x0e\x1b\xe5\x4c\x38\xe4\xb8\x76\x60\x26\x47\x56\x13\x84\xa3\x8e\x59\x85\x78\x68\x94\xf5\xda\x58\xf0\xf2\x91\xb4\x44\x8a\x8e\x04\x2a\x3c\x3e\x50\x53\xe0\xcd\x6b\x53\xb2\x08\x19\xe7\xf5\x8e\x7a\xe5\x28\x55\x5a\x4b\x81\x72\x90\xb6\xd4\x9a\x07\x2b\x41\x11\x8e\x95\xe7\x58\xb2\x73\xbc\x3d\x27\x44\x9d\xce\x0f\xe5\xa9\x6b\xb2\x49\x04\xae\x83\x6f\x92\x8d\x1c\x9f\xfe\xab\xe8\x73\x1a\xd2\x52\x9c\x89\x51\x76\xfc\xc6\xb6\xb9\xb0\x53\x2b\xfa\xa1\xa4\xbd\xfc\x33\x30\xd4\xcd\x0d\x7a\x65\x8d\x4e\x2f\xbe\xf2\xd0\xd5\xb0\x2c\x93\xee\x7f\x54\xfb\x63\x36\xa3\xbe\x8b\x91\xe3\x30\x9e\x83\x9e\x49\x0f\x42\x93\x1b\xa1\x36\xca\xc5\xd0\x04\xbf\x2a\x13\x5d\x54\x6e\x57\x60\x1f\x9c\xfb\x38\x19\x78\xc0\x35\xf6\x87\xbf\xa8\xd7\x88\xcc\x58\x4f\x4e\xd2\x27\xda\x15\x78\x7f\x85\x93\x24\x5c\x26\xc9\xf9\xeb\x65\x9e\x24\xa4\xfc\x9e\x6b\x8a\x9d\xe9\xc4\xed\x8b\x33\x63\xa6\x75\x0e\xbf\x03\x00\x00\xff\xff\xc9\x09\xa3\xcf\x94\x03\x00\x00" func idtablestakingAdminSet_open_access_node_slotsCdcBytes() ([]byte, error) { return bindataRead( @@ -2380,11 +2320,11 @@ func idtablestakingAdminSet_open_access_node_slotsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_open_access_node_slots.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3e, 0x9e, 0xf6, 0xa, 0x8d, 0x4, 0x32, 0x57, 0x37, 0xcc, 0x87, 0x7f, 0x70, 0xba, 0x58, 0xeb, 0x64, 0xa4, 0x47, 0xbb, 0xd5, 0xf6, 0xdf, 0x5d, 0x55, 0x98, 0xcb, 0x43, 0x52, 0xa, 0x5a, 0x5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8a, 0x92, 0x6b, 0x66, 0xe9, 0x67, 0xd6, 0x9f, 0x61, 0x14, 0xbe, 0xf1, 0x4, 0x20, 0x33, 0xcf, 0xff, 0xee, 0x16, 0x1e, 0x5, 0xdb, 0xed, 0x7c, 0xe0, 0x4e, 0x35, 0x18, 0x75, 0x70, 0x77, 0xa7}} return a, nil } -var _idtablestakingAdminSet_slot_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\xc1\x8e\xdb\x36\x10\xbd\xfb\x2b\x5e\x7d\x08\xbc\x48\x22\xd7\x40\x53\x04\x46\xdd\x20\xed\xa2\x80\xd1\x1c\x8a\x6e\xda\x4b\xd1\xc3\x98\x1a\x99\xec\x52\xa4\x40\x8e\xec\x18\x8b\xfd\xf7\x82\xa4\x2d\x59\x1b\xb7\xbc\x18\x32\x67\xde\xbc\x79\xf3\x86\xa6\xed\x7c\x10\xfc\x62\xfd\x71\x7b\xff\x99\x76\x96\x1f\x84\x1e\x8d\xdb\xa3\x09\xbe\xc5\xfc\xeb\x8b\xf9\x6c\xb6\x5c\x2e\xf1\x59\x9b\x08\x09\xe4\x22\x29\x31\xde\x21\xb2\x44\x88\x66\x44\xeb\x05\xd6\xb4\x46\x22\x1a\x1f\xc0\xa4\x34\x9c\xaf\x19\x72\xea\x18\x25\x3d\x05\x7d\x2a\x31\x26\x82\xf0\xc7\xd6\xc9\xea\x7b\x50\x08\x74\x82\x68\x12\x28\xef\x84\x8c\x2b\x98\x19\x2e\xa1\xe5\xe4\x17\x88\xc6\xc1\x87\x9a\x43\xa1\xfc\xed\xdb\xef\x2a\x6c\x25\xc1\xf6\x91\x6b\x88\x47\xe7\xbb\xde\x92\x70\x4e\x26\xd4\x26\x33\xa6\x70\xae\xa4\x29\xe2\x91\x4f\x11\x51\x9b\x46\xb8\xc6\xeb\x15\xa2\x2f\x77\xa2\xf9\x04\xb2\x66\xef\x72\xf2\xd1\x88\xce\x84\xd8\xf5\x2d\x07\x4a\xd1\x03\x91\x58\x08\xac\xde\xbe\xbb\x48\xc4\x81\x73\x7b\xce\x8b\xe6\x80\x96\x95\x26\x67\x62\x8b\xa3\x36\x4a\x83\xac\xf5\xc7\x22\x12\x21\x76\xac\x4c\x63\xb8\xce\xb9\xae\x6f\x77\x1c\xe0\x9b\xac\xd4\x4b\x21\x83\xb7\x8c\x8e\x03\xb8\xf3\x4a\x57\x39\x63\xdb\x14\xc6\x63\x91\xd4\x17\xe1\x40\xb6\xe7\x34\x9d\x73\x9d\x01\xe0\x0d\x8c\xe0\x68\xac\x85\x3f\x70\x08\xa6\x2e\xfa\x1c\x35\x09\x1f\x38\xe4\xf4\x1d\x73\x9e\xec\xa5\xf1\xe9\xcc\xab\xd9\xec\xea\x6b\x31\xce\x74\x8d\xbf\xca\x40\xff\xbe\xc3\xd3\x6c\x06\x00\xcb\x25\x3e\x79\x45\x16\x07\x0a\x26\xd9\xe9\x4c\x27\x70\xc3\x81\x9d\xe2\x34\xa8\xa4\xec\xf6\x1e\xd9\x6e\xf8\x58\xb7\x69\xb2\xbb\x7f\x58\x49\x86\xb0\x2c\xa0\xf4\xe7\xef\xdc\xac\xf1\xea\x6b\x6b\x56\x39\xa5\xd4\xeb\x02\x77\x14\x78\x41\x4a\xc9\x1a\xd4\x8b\x5e\xfc\xe4\x43\xf0\xc7\x3f\x93\x1e\x77\x78\xf5\x51\x29\xdf\x3b\x49\x04\x71\x3e\xcb\x25\x76\x39\xe6\x16\x2f\x7a\x49\x27\x9d\xc8\xb6\xa9\x2e\x9c\xb0\x41\xaa\x56\x45\xf1\x81\xf6\x5c\x15\xac\x1f\xfe\x93\xe8\x8f\x8b\xe4\x97\xf5\x8d\xe5\xab\xce\xbf\x39\xec\xa1\xc0\xfd\x46\xa2\xef\x86\xc2\xe9\x7c\xf8\x80\x8e\x9c\x51\x8b\xf9\xcf\xbe\xb7\xc9\x88\x72\xe1\x3f\x61\x1f\xcf\x1b\x9d\x79\xce\x0b\xc6\x73\x51\x89\xbf\xb0\xea\x85\xa7\x1a\x64\x50\x98\x06\x47\x46\xed\x33\x6c\x31\xe7\x09\xfc\x85\x94\xd8\x13\xbc\xbb\xde\xf3\x6c\xc5\xc1\x57\x03\x94\x69\xae\xd6\xbc\xb2\xec\xf6\xa2\xf1\xcd\x06\xef\xae\xca\xe5\x51\x95\x26\xae\x1f\x13\x0a\xfb\xbe\x65\x27\x68\xfb\x38\x56\xff\xbf\xaa\xf3\x51\x9b\x73\x6f\xe9\x1c\x28\x8c\x1c\xee\x87\xbd\x5f\xe3\x29\xf9\xf3\xfd\xfa\xfc\xee\x3c\x63\x83\xa7\xe7\x49\xd6\xf8\x48\xfc\xca\xa7\x12\xf7\x1e\x1b\xac\x46\xec\xe4\xdf\x01\x3b\x3d\x42\x57\x6f\xda\xb4\xc1\x1b\x0c\x2a\xe3\x22\x07\x59\x3c\x26\xf0\x49\xad\x37\x63\xf8\x74\xdc\x93\x28\x6c\x5e\x7c\xbf\xc6\xea\x96\x00\x13\x83\x56\x91\xe5\x61\x20\x39\xd9\xd7\x1b\x14\x2f\x46\x79\xfe\x37\x00\x00\xff\xff\xb3\xaf\x59\xc4\x24\x06\x00\x00" +var _idtablestakingAdminSet_slot_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x4d\x6f\x23\x45\x10\xbd\xfb\x57\x3c\x72\x40\x5e\xed\xee\x18\x4b\x2c\x5a\x59\x98\x95\xc1\x41\xb2\x88\x10\x8a\xcd\x01\x21\x0e\xe5\x9e\x1a\x77\x93\x9e\xee\x51\x77\x8d\x1d\x2b\xca\x7f\x47\xdd\x33\xfe\x98\x60\xe8\x4b\x34\x71\xd5\x7b\xaf\xaa\x5e\x95\xa9\x1b\x1f\x04\x3f\x5b\x7f\x58\x2d\x37\xb4\xb5\xbc\x16\x7a\x32\x6e\x87\x2a\xf8\x1a\xdf\x3c\xaf\x96\xf7\xbf\x6e\x56\x9b\x3f\x36\x8b\x1f\x1f\xee\x17\xcb\xe5\xe3\xfd\x7a\x3d\x1a\x4d\x26\x13\x6c\xb4\x89\x90\x40\x2e\x92\x12\xe3\x1d\x22\x4b\x84\x68\x46\xb4\x5e\x60\x4d\x6d\x24\xa2\xf2\x01\x4c\x4a\xc3\xf9\x92\x21\xc7\x86\xd1\xa5\xa7\xa0\x87\x2e\xc6\x44\x10\x7e\x5f\x39\x99\x7e\x07\x0a\x81\x8e\x10\x4d\x02\xe5\x9d\x90\x71\x1d\x66\x86\x4b\x68\x39\xf9\x0d\xa2\x71\xf0\xa1\xe4\xd0\x8b\xfe\xf8\x6d\x81\x95\x24\xd8\x36\x72\x09\xf1\x68\x7c\xd3\x5a\x12\xce\xc9\x84\xd2\x64\xc5\x14\x7a\x26\x4d\x11\x4f\x7c\x8c\x88\xda\x54\xc2\x25\xde\x4f\x11\x7d\xf7\x9b\x68\x3e\x82\xac\xd9\xb9\x9c\x7c\x30\xa2\xb3\x20\x76\x6d\xcd\x81\x52\xf4\x59\x48\xec\x04\x4c\x3f\x7e\x3a\xb5\x88\x03\xe7\xf2\x9c\x17\xcd\x01\x35\x2b\x4d\xce\xc4\x1a\x07\x6d\x94\x06\x59\xeb\x0f\x5d\x93\x08\xb1\x61\x65\x2a\xc3\x65\xce\x75\x6d\xbd\xe5\x00\x5f\xe5\x4e\xbd\x6d\x64\xf0\x96\xd1\x70\x00\x37\x5e\xe9\x22\x67\xac\xaa\x4e\xf1\x85\x24\xd5\x45\xd8\x93\x6d\x39\x4d\xa7\xe7\x39\x03\x7c\x80\x11\x1c\x8c\xb5\xf0\x7b\x0e\xc1\x94\x5d\x7f\x0e\x9a\x84\xf7\x1c\x72\xfa\x96\x39\x4f\xf6\x54\xf8\x70\xe6\xc5\x68\x74\xf5\x35\xbe\xcc\x74\x86\x3f\xbb\x81\xfe\xf5\x0e\x2f\xa3\x11\x00\x4c\x26\x78\xf0\x8a\x2c\xf6\x14\x4c\x72\x5a\x2f\x27\x70\xc5\x81\x9d\xe2\x34\xa8\xd4\xd9\xd5\x12\xd9\x89\x58\x94\x75\x9a\xec\xf6\x6f\x56\x92\x21\x2c\x0b\x28\xfd\xf3\x91\xab\x19\xbe\xfe\xb7\x6b\x8b\x9c\xd2\xf1\x35\x81\x1b\x0a\x3c\x26\xa5\x64\x86\x45\x2b\x7a\xa1\x94\x6f\x9d\x24\x45\xe8\xdf\x64\x82\xad\x0f\xc1\x1f\x6e\x09\xa1\xb7\xfc\xe9\x45\xb6\x55\x71\x12\x81\x39\x12\x7c\xd1\x61\x7c\xff\x9f\x8a\x7e\x18\x27\x63\xcc\x6e\xec\x59\xd1\xff\xcd\x61\x6b\xf1\x81\x76\xfc\x1b\x89\x7e\x77\x26\x4c\xef\xcb\x17\x34\xe4\x8c\x1a\xdf\xfd\xe4\x5b\x9b\x1c\x27\x27\xdd\x03\xd5\xb1\x5f\xde\xac\xef\xae\xc3\x78\xed\xda\xc1\xcf\xac\x5a\xe1\x61\xed\x19\x14\xa6\xc2\x81\x51\xfa\x0c\xdb\xb9\xf0\x08\x7e\x26\x25\xf6\x08\xef\xae\x17\x3a\x7b\xee\x6c\xa0\x33\x94\xa9\xae\xf6\xb9\xb0\xec\x76\xa2\xf1\xd5\x1c\x9f\xae\xe8\xf2\x4c\xba\x22\xae\xaf\x06\x85\x5d\x5b\xb3\x13\xd4\x6d\xbc\xb0\xff\x1f\xeb\xdd\xa5\x37\x7d\x6d\xe9\xed\x29\x5c\x34\x2c\xcf\x0b\x3e\xc3\x4b\x32\xe2\xe7\x59\x7f\x60\x5e\x31\xc7\xcb\xeb\x20\xeb\x72\x0d\x7e\xe1\x63\x17\xf7\x19\x73\x4c\x2f\xd8\xc9\xa8\x67\xec\x74\x6d\xae\x8e\xd7\xb0\xc0\x1b\x0a\x0a\xe3\x22\x07\x19\x3f\x25\xf0\x01\xd7\x87\x4b\xf8\x70\xdc\x83\x28\xcc\xdf\x7c\xbf\xc7\xf4\x56\x03\x06\xc6\x2c\x22\xcb\xfa\x2c\x72\xb0\x98\x37\x24\x9e\x8c\xf2\xfa\x4f\x00\x00\x00\xff\xff\x2a\x66\x95\xb5\x0f\x06\x00\x00" func idtablestakingAdminSet_slot_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -2400,11 +2340,11 @@ func idtablestakingAdminSet_slot_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_slot_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0xf1, 0xe8, 0x24, 0xbe, 0xac, 0x4a, 0x5d, 0x51, 0xdf, 0xdb, 0x3, 0x15, 0xe4, 0xb, 0xaa, 0x9e, 0x25, 0x75, 0x49, 0xeb, 0x51, 0x93, 0xbb, 0x48, 0x33, 0xbf, 0x80, 0x61, 0x29, 0xfd, 0x66}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0x71, 0xda, 0x79, 0x1d, 0x92, 0xc5, 0x37, 0x9e, 0x88, 0x17, 0x33, 0x62, 0x8d, 0xf5, 0x30, 0x3e, 0xb6, 0x8f, 0x45, 0x7f, 0x24, 0x43, 0x79, 0x7b, 0xb4, 0x85, 0xa8, 0x41, 0xc8, 0xed, 0x7e}} return a, nil } -var _idtablestakingAdminStart_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x31\x6f\xc2\x30\x10\x85\xf7\xfc\x8a\xa7\x0c\x28\x2c\xc9\x8e\xda\x22\x5a\x54\x09\xa9\x43\x55\x50\xf7\xc3\xb9\x90\x14\x63\x47\xf6\xa5\xb4\x42\xfc\xf7\xca\x0e\xa9\xa0\xd0\x5b\x2c\xd9\x77\xef\x7d\x7e\xd7\xec\x5a\xeb\x04\xcf\xda\xee\x17\xf3\x15\xad\x35\x2f\x85\xb6\x8d\xd9\xa0\x72\x76\x87\xf4\xfa\x21\x4d\x92\xa2\xc0\xaa\x6e\x3c\xc4\x91\xf1\xa4\xa4\xb1\x06\x2d\x7d\x7b\x38\xde\x93\x2b\x3d\xc4\x82\xb4\x86\xd4\x0c\x2f\xb4\xe5\x12\xc6\x96\xec\x93\xe4\x7c\xe2\x90\x24\x00\x50\x14\x78\xb1\x8a\x34\x3e\xc9\x35\xc1\x07\x95\x75\x20\x38\xae\xd8\xb1\x51\x1c\xd4\x82\xd2\x62\x8e\xc8\x81\x59\xb9\x6b\x0c\xec\xfa\x83\x95\x44\x09\xcd\x02\x0a\x97\x6f\x5c\x4d\x30\xba\x66\xce\xe3\x48\xef\xd7\x3a\x6e\xc9\x71\x46\x4a\xc9\x04\xd4\x49\x9d\x3d\x5a\xe7\xec\xfe\x9d\x74\xc7\x63\x8c\x66\x4a\xd9\xce\xc8\x18\x87\xd8\x7f\x62\x5c\xc7\x9e\x5b\x5c\xf4\x17\x27\x94\x67\x5d\xe5\x03\x13\xee\x11\xdc\x72\x2f\xd6\xd1\x86\xf3\x5e\xeb\xee\x5f\xd0\x87\x2c\x84\x3f\xb9\xb1\x95\xfc\x74\xc6\xb6\x65\x2f\xf7\x4a\x52\x8f\x7f\x8d\x43\x4d\xa7\x68\xc9\x34\x2a\x4b\x9f\x6c\xa7\x43\xf8\x32\xf0\x5f\xd0\xfb\xd3\xaa\x23\x67\xda\x6b\x1c\xfb\x94\xf8\x8b\x55\x27\x7c\x96\xc1\xc5\x8f\x72\x2f\xe4\x64\x80\xe9\xe2\x42\xb3\x41\xe0\xf8\x13\x00\x00\xff\xff\x18\xdb\x97\xa0\x55\x02\x00\x00" +var _idtablestakingAdminStart_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xc1\xea\xda\x40\x10\x87\xef\x79\x8a\x1f\x1e\x4a\xbc\x24\x3d\x4b\x5b\x49\x1b\x0b\x01\x29\xc5\xe4\xd2\xe3\xb8\x99\x98\xd4\x75\x37\xec\x4e\xaa\x45\x7c\xf7\xb2\x89\x29\xda\xfa\x9f\xcb\xc2\x32\xf3\xcd\x37\x33\xdd\xa9\xb7\x4e\xf0\x55\xdb\x73\x91\x57\xb4\xd7\x5c\x0a\x1d\x3b\x73\x40\xe3\xec\x09\xef\x2f\x45\xbe\xf9\x56\x15\xd5\x8f\x2a\xfb\xbc\xdd\x64\x79\xbe\xdb\x94\x65\x14\xa5\x29\xaa\xb6\xf3\x10\x47\xc6\x93\x92\xce\x1a\xf4\xf4\xdb\xc3\xf1\x99\x5c\xed\x21\x16\xa4\x35\xa4\x65\x78\xa1\x23\xd7\x30\xb6\x66\x1f\x45\x8f\x15\xd7\x28\x02\x80\x34\xc5\xd6\x2a\xd2\xf8\x45\xae\x0b\x0a\x68\xac\x03\xc1\x71\xc3\x8e\x8d\xe2\x40\x0b\xa4\x22\xc7\xa8\x88\xac\x3e\x75\x06\x76\xff\x93\x95\x8c\x08\xcd\x02\x0a\x9f\x3b\x6e\x56\x78\xf7\xff\x38\xc9\x58\x32\xf5\xeb\x1d\xf7\xe4\x38\x26\xa5\x64\x85\x6c\x90\x36\x53\xca\x0e\x46\x96\xb8\x8e\x09\x77\xa9\xbd\x75\xce\x9e\x5f\x89\xd0\xbf\xfd\x43\x78\xd6\x4d\x32\x4b\xe0\x23\x02\x3e\x99\x18\x1f\xde\x34\xfa\x14\x87\x3d\xaf\x5e\x1c\x20\xb9\xbf\x63\x5a\x29\xd6\xd1\x81\xbf\x93\xb4\xcb\xbf\x0d\x43\xac\xd7\xe8\xc9\x74\x2a\x5e\x7c\xb1\x83\x0e\x5b\x96\xd9\xfb\xc9\xda\xdf\xaf\x3a\xfa\x2d\x26\xc6\x6d\x5a\x07\x5f\x58\x0d\xc2\x0f\xb3\x3f\x4d\x92\x78\x21\x27\xb3\xcc\x30\x5e\x2e\x9e\x01\xb7\x3f\x01\x00\x00\xff\xff\xeb\x9d\x33\x87\x40\x02\x00\x00" func idtablestakingAdminStart_stakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2420,11 +2360,11 @@ func idtablestakingAdminStart_stakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/start_staking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0xae, 0x60, 0x65, 0xba, 0x40, 0xc1, 0x30, 0x64, 0xff, 0xc4, 0x97, 0x57, 0xf8, 0x6d, 0x7d, 0x89, 0xc3, 0x8c, 0xef, 0x8b, 0xca, 0x84, 0xfb, 0x5c, 0xb5, 0x0, 0x2e, 0xf, 0xce, 0xda, 0x60}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc0, 0x1d, 0x9b, 0xaf, 0xf6, 0x47, 0xd8, 0xb, 0x3a, 0x65, 0x23, 0x93, 0x9b, 0xb7, 0x9, 0x9f, 0xd1, 0x20, 0x8d, 0x22, 0xc0, 0xe4, 0xc8, 0x10, 0x6b, 0xf7, 0x84, 0x52, 0xb9, 0xf6, 0xe2, 0x24}} return a, nil } -var _idtablestakingAdminTransfer_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\x41\x6b\xc2\x40\x10\x85\xef\xfb\x2b\x1e\x1e\x6c\x02\x36\xde\xc5\x96\x4a\x4b\x4b\x6f\x05\xfd\x03\x63\x1c\xe3\xd2\x75\x27\xec\x8e\x8a\x88\xff\xbd\x74\x8d\x31\x54\x4b\xe9\x75\xe7\xed\xbc\xef\xcd\xb3\xeb\x5a\x82\xe2\xd5\xc9\xee\xfd\x65\x46\x73\xc7\x53\xa5\x4f\xeb\x2b\x2c\x83\xac\xd1\xbb\x1e\xf4\x8c\xd1\x40\x3e\x52\xa9\x56\x3c\x0e\x06\xa8\x03\xd7\x14\x38\x93\x9d\xe7\x30\x02\x6d\x74\x95\x3d\x53\x4d\x73\xeb\xac\x5a\x8e\x39\xfa\x93\xb2\x94\x8d\xd7\x01\x02\x97\x6c\xb7\xad\x6c\xaa\x12\xa8\xe2\x8b\x22\xc7\xc1\x18\x00\x18\x0e\xf1\xc6\x0a\x42\x6c\x80\x68\xb1\xb6\x1e\xe5\x79\xef\x3e\xa9\x1c\x2b\x96\x4e\x76\x0d\xdc\x24\x69\x1e\x90\x48\x8a\xb2\xc3\x50\xc4\x93\x53\x61\x63\xdc\xf0\xb8\x7f\x1d\xac\x48\x9f\x1f\xb3\x1b\x93\xee\xf6\x86\xf8\x83\x74\x95\x9b\x96\xe1\x82\x85\xf1\x7d\x1b\xb2\x35\x75\x42\x8b\xf1\xd3\xef\x9e\xdf\xc7\x1e\xdd\x68\xe1\x2f\x67\xa9\xb2\x8b\x73\x51\xb1\xce\xf6\x35\x67\x79\x33\x5e\x70\xd4\x20\xfb\xee\xcd\xce\xa7\x9d\xd2\x96\xa1\x2b\xee\x82\xab\xa4\x97\x33\xfc\x5d\x04\x9d\x3a\x41\x13\x23\x7d\xbe\xca\x16\x69\xcb\xd9\xcf\x0e\x06\x50\xf9\x5f\x20\xe0\x68\x8e\x06\xe6\x2b\x00\x00\xff\xff\x7a\xe3\x3f\x16\x92\x02\x00\x00" +var _idtablestakingAdminTransfer_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x91\xcf\x4f\xea\x40\x10\xc7\xef\xfb\x57\xcc\xe9\xbd\x36\xe1\xb5\xef\x4c\xd0\x58\x2d\x26\x24\xc4\x18\xdb\x8b\xc7\xa1\x0c\x65\xc3\xb2\xb3\xd9\x0e\x45\x42\xf8\xdf\x4d\x4b\xad\x88\x78\xc0\xeb\xce\xce\xf7\xc7\x7c\xf4\xda\xb1\x17\x78\x34\xbc\x9d\xa4\x39\xce\x0c\x65\x82\x2b\x6d\x4b\x58\x78\x5e\xc3\xff\xb7\x49\x3a\x7e\xca\x27\xf9\x6b\x9e\xdc\x4f\xc7\x49\x9a\xbe\x8c\xb3\x4c\x29\xf1\x68\x2b\x2c\x44\xb3\x85\xbd\x02\x70\x9e\x1c\x7a\x0a\x78\x6b\xc9\x0f\x21\xd9\xc8\x32\x29\x0a\xde\x58\x19\x80\xa7\x82\x74\x7d\xf6\x1c\xc2\x5e\x29\x00\x80\x38\x86\xa9\xb6\x2b\x90\x25\x41\xd5\x59\xe3\x7c\xad\x2d\x14\xe8\x70\xa6\x8d\x96\x1d\x08\x03\x82\xf3\xba\x46\x21\x70\x06\x0b\x6a\x77\x5b\xb7\xc8\x68\xbb\x1a\xfd\xf9\xde\x20\x4a\x1a\x99\xdb\x20\xee\x16\xe3\x85\xe1\x6d\x37\x6b\x47\x03\x10\xf4\x25\xc9\xf0\x42\xfd\xe8\xf4\x63\x26\xec\xb1\xa4\x67\x94\x65\xd8\x1a\x1b\x12\x38\x57\x83\x9b\x2e\x4f\x49\xf2\xd0\x47\xff\x55\xb0\x50\xf5\x2e\x27\x47\x18\xfd\xeb\x4f\x19\x19\xc6\xf9\xe8\xee\x67\xe9\x06\xde\x75\xb5\x8e\x8e\x5c\x06\x9f\x8e\x4d\x93\x7c\xe7\x28\x08\xbb\xf1\x9c\x2a\xf1\xbc\x3b\x09\xd5\x33\xcc\xb0\xa6\x96\xe1\x57\x6a\xcd\xcb\x47\xe8\xbf\x15\xe0\x11\x3e\x54\x47\xe7\x76\xb9\xef\x54\x61\x4d\xc1\x05\x46\x7c\x2d\x9f\x83\x3a\x28\x50\xef\x01\x00\x00\xff\xff\xd8\xed\xd8\x42\xda\x02\x00\x00" func idtablestakingAdminTransfer_adminCdcBytes() ([]byte, error) { return bindataRead( @@ -2440,11 +2380,11 @@ func idtablestakingAdminTransfer_adminCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/transfer_admin.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0x0, 0xac, 0x5d, 0xe7, 0x0, 0x5b, 0x3b, 0x2d, 0x66, 0xa7, 0xb7, 0x92, 0xd3, 0x4b, 0x2b, 0xe1, 0xd1, 0xb3, 0x8, 0xa, 0x34, 0x56, 0x6b, 0x24, 0x16, 0xd3, 0xe9, 0xa4, 0xf5, 0x60, 0x21}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe6, 0xd2, 0x4c, 0xe2, 0xed, 0x2d, 0xe4, 0x8c, 0x11, 0xed, 0x41, 0x67, 0xc9, 0xf2, 0x86, 0xbe, 0x14, 0x7c, 0x66, 0x91, 0x5e, 0x28, 0x28, 0x97, 0xc5, 0x23, 0x5b, 0xc6, 0xcb, 0x36, 0x2e, 0xdf}} return a, nil } -var _idtablestakingAdminTransfer_fees_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x31\x6b\xc3\x30\x10\x46\x77\xfd\x8a\xaf\x19\x5a\x07\x92\x78\x0f\xa1\x34\x4b\xa6\x6c\x85\xee\x57\xe5\x9c\x88\xc8\x3a\x21\x9d\x1d\x4a\xc9\x7f\x2f\x56\x6d\x43\x0a\xf5\x66\xf1\xee\xe3\x3d\xd7\x46\x49\x8a\x83\x97\xdb\x81\x39\xa3\x49\xd2\x62\x31\xfd\x2e\x8c\xd1\x44\x21\x93\x55\x27\x01\xdf\xc6\x00\x40\x4c\x1c\x29\x71\x25\xb7\xc0\x69\x0b\xea\xf4\x52\x1d\x85\x4e\x1f\xe4\x3b\x5e\xe2\x79\x6f\xad\x74\x41\x57\x48\x6c\xd9\xf5\x33\xf3\x4e\x3d\xff\x61\x96\xd3\xe6\xf0\xd5\x35\x8e\x2e\x5c\xa1\x17\x46\x56\xba\xba\x70\x06\x9d\x5a\x17\x60\x29\xd2\xa7\xf3\x4e\xbf\xa0\x02\x42\x4c\xae\x27\x65\x44\x4f\x96\xe7\x7b\xcf\x8a\x86\x39\xef\xcb\xcd\x6e\x8d\x22\xb8\xc9\x2a\x89\xce\xbc\xf1\x42\xa7\xdd\xdb\x94\xb6\x29\x94\xcb\x9a\x48\x25\xbd\x56\x43\xf8\x16\xf5\x08\xd7\xcd\x88\x15\x6a\xf9\xf4\x20\x39\x74\x14\xc9\x47\xad\xe1\x65\x2a\x7e\xc9\xa0\xdf\x42\x8c\x8b\xf3\xc0\x84\xcc\x5e\x99\x7a\xae\x76\xeb\xd9\x7c\x05\x95\x7f\x4d\xca\xcc\xdd\x98\xbb\x81\xf9\x09\x00\x00\xff\xff\x99\xa2\xe7\xfc\xbc\x01\x00\x00" +var _idtablestakingAdminTransfer_fees_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\xe9\xa9\x09\x24\x76\xcf\xc1\x94\x1a\x62\x9f\x02\x85\xfa\xd0\xf3\x56\x59\x27\x22\xb6\x24\xa4\x8d\xd3\x52\xf2\xef\xc5\x6a\x6c\x48\xa1\x3a\xae\x66\x86\xf7\x4c\xef\x5d\x10\xd4\x9d\xbb\xd4\xcc\x11\x6d\x70\x3d\x9e\x3e\xeb\xdd\xeb\x7b\x5d\x55\x4d\xb9\xdd\xbe\x55\x4d\xa3\x94\x04\xb2\x91\xb4\x18\x67\xf1\xad\x14\x00\xf8\xc0\x9e\x02\x2f\xdc\xc5\x72\xd8\xa0\x3c\xcb\xb1\xd4\xda\x9d\xad\xac\x10\x58\xb3\x19\xfe\x9c\x97\x53\x73\x7c\x79\x8e\x9d\xb1\x27\xc8\x91\x11\x85\x4e\xc6\x1e\x40\xfb\xde\x58\x68\xf2\xf4\x61\x3a\x23\x5f\x10\x07\x82\x0f\x66\x20\x61\xf8\x8e\x34\xcf\xfd\x8e\x05\x2d\x73\x2c\x53\xa7\x58\x23\x61\x64\x9d\xa3\x7d\xf1\x32\xe9\x64\xe9\xd7\x44\x09\x24\x2e\x3c\x2f\x46\xbb\x0d\xf2\x28\x2e\xd0\x81\xf3\xf6\x16\x4b\xa9\xe5\xc3\x1d\x5c\x43\x03\x27\xb8\x7b\x9c\xf1\x32\xc9\x3d\x46\xd0\xaf\x19\x6e\x8b\xf3\xc0\x14\xc9\x22\x0d\xbc\x28\xd6\x33\xe9\x0a\xe2\xfe\x25\x48\xf5\xab\x52\x57\x05\xf5\x13\x00\x00\xff\xff\x1e\x04\x07\xfe\x99\x01\x00\x00" func idtablestakingAdminTransfer_fees_adminCdcBytes() ([]byte, error) { return bindataRead( @@ -2460,11 +2400,11 @@ func idtablestakingAdminTransfer_fees_adminCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/transfer_fees_admin.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xc1, 0xdf, 0xbd, 0x8e, 0xdc, 0xe3, 0xd0, 0x75, 0x45, 0x73, 0x94, 0x3, 0xfc, 0x88, 0x86, 0xe4, 0xe3, 0x76, 0x0, 0x2f, 0x71, 0xde, 0x33, 0x80, 0x84, 0xa8, 0xfe, 0xdd, 0xbc, 0xa6, 0x4d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0xfe, 0x7f, 0xe5, 0x76, 0xf2, 0x7c, 0x89, 0xf0, 0xca, 0xa8, 0xbe, 0x89, 0x31, 0x37, 0xfe, 0x76, 0x6e, 0xe, 0x60, 0x1a, 0x5a, 0x20, 0x2d, 0x47, 0x78, 0x63, 0x90, 0x53, 0xe7, 0x67, 0xa7}} return a, nil } -var _idtablestakingAdminTransfer_minter_deployCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x4f\xdb\x4e\x10\xbd\xfb\x53\x3c\xe5\x80\x1c\xfd\x82\x03\x12\x20\x64\xe1\x1f\x4a\xd3\x22\x55\x50\x0e\xa5\xf4\x82\x38\x6c\xec\x49\xbc\xc2\xde\xb5\x76\xc7\x49\xad\x28\xdf\xbd\x5a\xaf\xed\x04\x9a\x4a\xf5\x61\x93\x9d\x3f\x6f\x66\xde\xce\x8c\x2c\x2b\x6d\x18\x73\xd3\x54\xac\x83\xee\x76\x57\xe8\xcd\x0f\xfd\x46\x0a\x4b\xa3\x4b\x8c\x86\xfb\x28\x08\xd8\x08\x65\x45\xca\x52\xab\xb0\xaa\x17\x85\x4c\xef\xa9\xb1\x31\x5e\x3c\x44\x74\x4f\xcd\x83\xb4\xfc\x45\xb1\x69\x5e\x27\x48\xb5\x62\x23\x52\x7e\x14\x25\xc5\x78\x62\x23\xd5\xca\x49\xb3\x83\x9b\xa1\x8d\x30\xd9\xac\xd4\xb5\xe2\x18\xcf\x77\xf2\xd7\xd5\x45\x2f\x9d\xd7\x07\xa2\x54\xa8\x4c\x66\x82\xe9\x51\x67\xf4\x20\x4b\xc9\x2e\xf0\xf3\x57\xc5\x57\x17\xaf\x63\x6c\x83\x00\xa8\x0c\x55\xc2\x50\x68\xe5\x4a\x91\x89\x21\x6a\xce\xc3\x59\x96\xdd\x53\x33\xc1\x93\x58\xd3\x4f\x51\xd4\x34\xc1\x27\x6d\x8c\xde\xb4\x97\x31\x4e\x66\x69\xea\xa2\x77\x18\x40\x41\x0c\x91\xa6\x8c\x04\x9d\x2a\xac\x44\xe3\xf0\x3c\xee\xb8\xb5\x6a\x8f\xa5\x36\x78\xa3\x06\x52\x61\xcf\x07\xb6\xad\xce\x7d\x0e\x26\x7a\xa3\xc6\x46\x22\xcb\xf6\x94\xc5\xce\x29\x1a\xae\x13\xe4\xc2\xe6\xb3\x62\xa5\x8d\xe4\xbc\xf4\xda\x77\xa2\x09\x36\x24\x57\x39\x7b\x95\xff\xef\xd3\xd8\xf9\x9c\xa7\xd3\x69\x57\x15\x04\x0c\x2d\xc9\x90\x4a\x09\xac\xc1\x39\xb5\x6f\x0a\xff\xa8\xb3\xac\x94\xca\xe5\xeb\xe4\xc2\x97\x07\xcb\xda\x88\x15\x0d\xd5\x2f\xfb\x37\xf7\xd6\x49\x57\x78\xd4\xd9\x45\x8b\x36\xd2\xcd\xc9\xd0\x1b\x51\x6b\x28\x2d\x1b\xc1\xda\xfc\x1f\xba\xd6\x89\x31\xed\xec\xa7\xef\xf1\xc6\x03\x3d\xb7\xb7\xa8\x84\x92\x69\x38\x9a\xeb\xba\xc8\xa0\x34\x63\xf1\xef\x55\x18\xb2\xba\x36\x29\x8d\xc6\x7b\x12\xe6\x86\x04\x13\xc4\xbe\x86\x6f\x52\x31\x99\xef\x9d\xed\x9f\x35\x7a\x3d\x6e\x4e\x3f\x94\x1d\xa5\x2d\xd4\x23\x6d\xbc\x45\x28\x8a\x42\x6f\x68\xe8\xd5\xf3\xb3\xfe\x8b\xce\xba\x04\xda\xe7\xee\x49\xb2\x62\x4d\xe1\xcd\xe9\x87\x38\x13\xb0\x3e\xc6\x8c\xd7\xf6\x38\xd6\x92\xe1\xf0\x48\xcb\x47\x05\xa9\x15\xe7\x48\x12\x5c\x4e\x06\x1e\x01\x94\x64\xad\x58\x51\x8c\xd1\xbc\xf7\x82\x73\x43\xeb\x87\x42\x5a\xc6\xa2\x66\xe4\x62\xed\xd8\xe9\x60\xf4\x12\x97\x3d\x7b\x8e\x94\x23\x11\x3f\xcb\x94\x63\x6c\xdd\xa0\x5d\xc7\xf0\xf3\xb6\x43\x82\xed\xae\xf5\x5a\x0b\x03\xa3\x0b\xf2\xaa\x6b\x24\x38\x0f\x86\xd1\x28\xda\xd8\x52\x1d\xc3\x1d\xa6\xe4\x2f\x31\x5f\x1c\xea\x2b\x12\x0f\xd2\xd9\x3a\x19\x12\xff\xf3\x1f\xce\x0f\x27\xa0\xe5\xbe\xdf\x38\x7e\xde\x54\xbb\x77\x0e\xb7\x50\xbf\x7d\xdc\x19\xd5\xbc\xbc\x7e\xbf\x80\x0e\x16\xcf\xd1\x85\xe3\xf2\x72\xdd\xbb\x0b\x82\x5d\x80\xe0\x77\x00\x00\x00\xff\xff\x21\x67\x62\x69\x40\x05\x00\x00" +var _idtablestakingAdminTransfer_minter_deployCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4d\x4f\xe3\x3c\x10\xbe\xe7\x57\x3c\xe2\xf0\x2a\xd5\x5b\x52\x90\x00\xa1\x88\x2c\xea\x16\x90\x56\xb0\x45\xe2\x43\x7b\x40\x1c\xdc\x64\xda\x58\x24\x76\x65\x4f\x28\x51\xd5\xff\xbe\x72\x9c\xa4\x85\xed\x4a\x9b\x83\x5b\xcf\xc7\x33\x33\x8f\x67\x46\x96\x4b\x6d\x18\x13\x53\x2f\x59\x07\xed\xed\xa6\xd0\xab\x27\xfd\x46\x0a\x73\xa3\x4b\x1c\x7d\xdc\xdc\xdd\xff\x7a\xba\xbf\xbd\x9e\x8e\xaf\xae\x1e\xae\x1f\x1f\x83\x80\x8d\x50\x56\xa4\x2c\xb5\x0a\x97\xd5\xac\x90\xe9\x2d\xd5\x36\xc6\x8b\x47\x8a\x6e\xa9\xbe\x93\x96\xaf\x15\x9b\xfa\x75\x88\x54\x2b\x36\x22\xe5\xa9\x28\x29\xc6\x23\x1b\xa9\x16\x4e\x9a\xed\xdc\x0c\xad\x84\xc9\xc6\xa5\xae\x14\xc7\x78\xbe\x91\x1f\x67\x27\x9d\x74\x52\xed\x88\x52\xa1\x32\x99\x09\xa6\xa9\xce\xe8\x4e\x96\x92\x5d\xe0\xe7\x1f\x8a\xcf\x4e\x5e\x07\x58\x07\x01\xb0\x34\xb4\x14\x86\x42\x2b\x17\x8a\x4c\x8c\x71\xc5\xf9\x38\x4d\x1d\x76\x6b\x01\x14\xc4\x10\x69\xca\x48\x76\xd5\xe1\x52\xd4\xce\xc3\x7b\x0e\x1a\xcb\xe6\x98\x6b\x83\x37\xaa\x21\x15\xb6\x15\x63\xdd\xe8\xdc\xe7\xa0\xa2\x37\xaa\x6d\x24\xb2\x6c\x4b\x4a\xec\x9c\xa2\xfe\x3a\x44\x2e\x6c\x3e\x2e\x16\xda\x48\xce\x4b\xaf\xfd\x24\x1a\x62\x45\x72\x91\xb3\x57\xf9\xff\x3e\x8d\x8d\xcf\x7b\x34\x1a\xe1\xbb\x36\x46\xaf\x20\x60\x68\x4e\x86\x54\x4a\x60\x0d\xce\xa9\x79\x3c\xf8\xd7\x1b\x67\xa5\x54\x2e\x5f\x27\x17\xbe\x3c\x58\xd6\x46\x2c\xa8\x67\x60\xde\x3d\xb6\xb7\x4e\xda\xc2\xa3\x59\x13\xe1\xe2\xbf\xbe\x19\xa2\xc6\x40\x5a\x36\x82\xb5\xf9\x16\xba\xde\x88\x31\x6a\xf1\x46\x9f\x71\x06\x3d\x2d\x97\x97\x58\x0a\x25\xd3\xf0\x60\xa2\xab\x22\x83\xd2\x8c\xd9\xbf\x67\x6f\xc8\xea\xca\xa4\x74\x30\xd8\x16\x3f\x31\x24\x98\x20\xb6\xb9\xff\x94\x8a\xc9\x3c\xb4\xb6\x7f\xd6\xe6\xf5\xb8\x38\xfc\x52\x6e\x94\x36\x50\x53\x5a\x79\x8b\x50\x14\x85\x5e\x51\xdf\x85\xc7\x47\xdd\x17\x1d\xb5\x09\x34\xcf\x6c\xc5\x3b\x85\x17\x87\x5f\xf0\x87\x60\xbd\x8f\x11\xaf\xed\xfc\xad\x25\xc3\xe1\x9e\x26\x8e\x0a\x52\x0b\xce\x91\x24\x38\x1d\xf6\xfc\x01\x28\xc9\x5a\xb1\xa0\x18\x07\x93\xce\x0b\xce\x0d\x8d\x1f\x0a\x69\x19\xb3\x8a\x91\x8b\x77\xc7\x4a\x0b\xa3\xe7\x38\xed\x58\x73\x64\xec\x89\x78\x25\x53\x8e\xb1\x76\xa3\x73\x1e\xc3\x4f\xd0\x06\x09\xd6\x9b\xc6\xeb\x5d\x18\x18\x5d\x90\x57\x9d\x23\xc1\x71\xd0\x8f\x42\xd1\xc4\x96\x6a\x1f\x6e\x3f\x15\x7f\x89\xf9\xe2\x50\x5f\x91\x78\x90\xd6\xd6\xc9\x90\xf8\x9f\xff\x71\xbc\xdb\xf1\x0d\xe7\xdd\x0e\xf1\xf3\xa5\x9a\x4d\xb2\xbb\x57\xba\x7d\xe2\xce\xa8\xe2\xf9\xf9\xe7\x95\xb2\xb3\x4a\xf6\xae\x10\x97\x97\xeb\xda\x4d\x10\x6c\x02\x04\xbf\x03\x00\x00\xff\xff\x77\x67\xa8\xaf\x19\x05\x00\x00" func idtablestakingAdminTransfer_minter_deployCdcBytes() ([]byte, error) { return bindataRead( @@ -2480,11 +2420,11 @@ func idtablestakingAdminTransfer_minter_deployCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/transfer_minter_deploy.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbe, 0x1e, 0x95, 0xdc, 0x42, 0x25, 0x57, 0x4f, 0xdb, 0xbe, 0x75, 0x38, 0xea, 0x13, 0xcf, 0xba, 0x25, 0xcb, 0x98, 0x2a, 0x37, 0xfe, 0x7a, 0x6c, 0xec, 0xe4, 0xc3, 0x36, 0x5a, 0x3, 0x6b, 0x54}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4a, 0x80, 0x4d, 0xef, 0x2d, 0xfe, 0x8a, 0x7f, 0x18, 0x1d, 0xd7, 0xb5, 0xf2, 0x80, 0x2a, 0x6f, 0xfe, 0xcc, 0x13, 0xd0, 0xbd, 0xc8, 0xaa, 0x76, 0x68, 0xf3, 0xb3, 0xa1, 0x15, 0x9, 0xd7, 0x8e}} return a, nil } -var _idtablestakingAdminUpgrade_set_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x8b\x9c\x40\x10\xc5\xef\x7e\x8a\x87\x87\x45\x61\xd1\x6b\x90\x24\xcb\x66\x96\xc0\x40\x0e\x21\xbb\x9b\x4b\xc8\xa1\xa6\x2d\xd7\xce\xb6\x5d\xd2\x5d\x66\x12\x96\xf9\xee\xa1\x75\x66\xf2\x67\x4c\x1d\x14\xd4\xf7\x7b\xef\x75\x69\x87\x51\x82\xe2\xbd\x93\xfd\xf6\xee\x81\x76\x8e\xef\x95\x9e\xad\x7f\x42\x17\x64\x40\x7e\xf9\x22\xcf\xb2\xba\xc6\x43\x6f\x23\x34\x90\x8f\x64\xd4\x8a\xc7\x48\x3f\x23\x02\xef\x29\xb4\x11\x2a\x20\xe7\xa0\x3d\x23\x2a\x3d\x73\x0b\x2f\x2d\xc7\x2c\xfb\x43\x51\x18\x69\xb9\xc1\x97\xc7\xad\xd7\x57\x5f\x4b\xbc\x64\x19\x00\xd4\x35\x3e\x88\x21\x87\xef\x14\x6c\xb2\x45\x27\x01\x84\xc0\x1d\x07\xf6\x86\x13\x3c\x81\xb7\x77\x98\x63\xe1\xb6\x1d\xac\x87\xec\xbe\xb1\xd1\x19\xe1\x58\x41\xe9\xe1\x27\xee\x1a\x5c\x5d\x56\xa8\x66\xc9\xe2\x37\x06\x1e\x29\x70\x41\xc6\x68\x03\x9a\xb4\x2f\x1e\xc7\x96\x94\x37\xe2\x35\x90\xd1\x6b\xbc\x93\x10\x64\xff\x99\xdc\xc4\x25\xae\x6e\x8d\x91\xc9\xeb\x39\x70\x9a\x24\xae\xcc\x51\x10\xab\x69\x06\x14\x9e\x06\x6e\x56\x8f\xf0\x1a\x4b\xf9\x74\x2d\x7f\x63\xea\x1a\xbb\xd9\x6b\xad\x2f\xfd\x5b\x33\x4d\x64\xd7\x55\xa7\xae\x78\xb3\x04\x89\x2a\x81\x9e\xb8\x5a\x58\xaf\xff\x7b\x00\x6f\x8b\xb4\xe3\x66\x65\xf9\xd5\xf1\x3e\x7f\x76\xbf\xe0\x3e\x92\xf6\xe5\xd9\x38\xcd\xcd\x0d\x46\xf2\xd6\x14\xf9\x46\x26\x97\x76\xac\xa7\xfc\x7f\xa5\x8f\xc7\x3f\x6a\xce\x99\x2f\x8c\xc3\xd2\x9a\x7f\xb0\x99\x94\xf1\xb2\xde\xa8\x8a\xac\x1b\x47\x76\xe0\xb6\x38\xe9\x0e\xbf\x02\x00\x00\xff\xff\xf6\x62\xb3\x93\xb3\x02\x00\x00" +var _idtablestakingAdminUpgrade_set_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xdf\x6b\x9c\x40\x10\xc7\xdf\xfd\x2b\xbe\xdc\x43\xf1\xa0\x68\x1f\x8b\xb4\x0d\x36\x5e\x41\x08\xa5\x44\xfb\x50\x4a\x09\x73\xeb\x18\xb7\x59\x77\x65\x77\xec\x5d\x09\xf9\xdf\xcb\x6a\x2e\xfd\x91\xeb\x3c\x28\xe8\xce\x77\x3e\x1f\x66\xf5\x38\x39\x2f\xf8\x60\xdc\xa1\xae\x5a\xda\x1b\x6e\x84\xee\xb4\xbd\x45\xef\xdd\x88\x57\xc7\xba\xda\x7d\x6c\xeb\xf6\x4b\x5b\xbe\xbf\xda\x95\x55\x75\xbd\x6b\x9a\x24\xc9\x73\xb4\x83\x0e\x10\x4f\x36\x90\x12\xed\x2c\x26\xfa\x19\xe0\xf9\x40\xbe\x0b\x10\x07\x32\x06\x32\x30\x82\xd0\x1d\x77\xb0\xae\xe3\x90\x24\x7f\x74\xa4\xca\x75\x5c\xe0\xeb\xe7\xda\xca\xeb\x6f\x5b\xdc\x27\x09\x00\xe4\x39\xae\x9c\x22\x83\x1f\xe4\x75\x24\x42\xef\x3c\x08\x9e\x7b\xf6\x6c\x15\xc7\xf0\x18\x5c\x57\x58\x88\x51\x76\xa3\xb6\x70\xfb\xef\xac\x64\x89\x30\x2c\xa0\xf8\xf1\x9a\xfb\x02\x2f\x9e\xdb\x65\x4b\xcb\x3a\x6f\xf2\x3c\x91\xe7\x94\x94\x92\x02\xe5\x2c\x43\xa9\x94\x9b\xad\x3c\x11\xc5\x8a\x7f\x33\xe5\xac\x78\x52\x12\xb2\x79\xea\x48\xf8\xe6\x86\x8f\x13\x7b\x3d\xb2\x15\x32\xa9\xa5\x91\x0b\x6c\x9e\x8f\xdb\xbc\xc4\xea\x1a\x9f\xdb\xdf\xa1\x79\x8e\xbd\xf3\xde\x1d\xce\xe9\xd1\xbf\x56\xb1\x02\x9b\x3e\x3b\xa9\xe1\xed\x8a\xb5\x66\xbc\xf9\xaf\xe7\xbb\x34\x2e\xb3\x38\xb3\xe5\xec\xf1\xbd\x1c\x6b\xc4\x79\xba\xe5\x4f\x24\xc3\xf6\x69\x60\xac\x8b\x0b\x4c\x64\xb5\x4a\x37\x97\x6e\x36\x71\x95\x72\xe2\xfe\x8b\x3a\x3c\x5e\x9d\x85\x6f\xb3\x66\x3c\xac\xb6\x7c\x64\x35\x0b\xe3\xfe\xbc\x49\x16\x58\x2e\x0d\xe9\x91\xbb\xf4\xd4\xf7\xf0\x2b\x00\x00\xff\xff\x46\x0d\x04\xc2\x9c\x02\x00\x00" func idtablestakingAdminUpgrade_set_claimedCdcBytes() ([]byte, error) { return bindataRead( @@ -2500,11 +2440,11 @@ func idtablestakingAdminUpgrade_set_claimedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/upgrade_set_claimed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb2, 0x18, 0xb2, 0xdd, 0x50, 0x4a, 0xbf, 0x69, 0x23, 0x23, 0x78, 0xc8, 0x53, 0xc8, 0xd4, 0x61, 0x14, 0x50, 0x2b, 0x78, 0xc8, 0x94, 0xba, 0xb8, 0xbf, 0x98, 0xfe, 0x51, 0x48, 0x61, 0x83, 0xa0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbd, 0x60, 0x96, 0xc9, 0xe2, 0xe7, 0xb2, 0xfc, 0xfa, 0x4c, 0xe, 0x98, 0xd8, 0x18, 0xe0, 0x48, 0x7e, 0x34, 0xa6, 0xf3, 0xa9, 0xb0, 0x10, 0xd5, 0xc5, 0xdf, 0xb5, 0x7c, 0xcb, 0xbb, 0xd4, 0x3f}} return a, nil } -var _idtablestakingAdminUpgrade_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2c\x8d\xb1\x0a\xc2\x40\x10\x44\xfb\xfb\x8a\x21\x85\x5c\x40\x52\x4b\x3a\x51\x84\xd4\x9a\x4a\x2c\xd6\xcd\xa2\xc1\xb8\x17\x2e\x7b\x58\x48\xfe\x5d\x2e\x66\x8a\xa9\xde\x9b\x71\x16\x49\x27\x62\xeb\x83\x7a\x0e\x9d\xd4\xb8\xb6\x8d\xda\xee\x56\xe2\xeb\x1c\x00\x8c\x51\x46\x8a\xe2\x89\xd9\x6a\x50\xb2\xa7\x6f\xc7\x8e\x4c\x0e\x41\x2d\x12\x5b\x89\xcd\x9e\x39\x24\xb5\xec\x60\x4d\xc6\x2b\x5e\x91\xa9\x4a\x8b\xe2\x95\xde\x52\xa3\x38\x0d\xe1\xd3\x1c\x2f\x74\x1f\xe4\x6c\xf4\xea\xf5\x51\x6c\xf1\xbf\xcf\x5d\x2e\x2b\xb3\x9b\x7f\x01\x00\x00\xff\xff\xe2\xcb\x57\x03\x9f\x00\x00\x00" +var _idtablestakingAdminUpgrade_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x3c\x8d\x31\x0b\xc2\x30\x10\x85\xf7\xfc\x8a\xa3\x53\x0a\xd2\x59\xb2\x15\x44\xe8\xac\x4e\x22\xe5\xbc\x1e\x1a\x4c\x2f\x21\xbd\xa0\x20\xfd\xef\x12\x05\xdf\xf0\x96\xf7\xf8\x3e\xa3\x19\x65\x41\x52\x1f\xc5\x52\x9c\xd8\xc1\xf9\x34\x88\x6e\x2f\x2d\xbc\x8d\x01\x00\x48\x99\x13\x66\xb6\x48\xa4\x0e\xfa\xa2\xf7\x9e\x28\x16\xd1\xff\xa3\xa6\xae\x1d\x45\xd1\x8c\xa4\x4b\x57\xd2\x84\xca\xe3\xc8\xaf\xc4\xd9\xcf\x2c\x8a\xc1\x0a\xce\xec\xa0\xd9\x87\xf8\x1c\x76\x47\xbc\x06\x3e\x28\x3e\xbc\xdc\x9a\x0d\xfc\xdc\xb5\xdb\x2f\x73\x35\xeb\x27\x00\x00\xff\xff\x83\x09\x8a\xc4\x9c\x00\x00\x00" func idtablestakingAdminUpgrade_stakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2520,11 +2460,11 @@ func idtablestakingAdminUpgrade_stakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/upgrade_staking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x81, 0x5e, 0x5c, 0xd3, 0xb2, 0xd5, 0xa5, 0x4c, 0x45, 0xf4, 0x38, 0x8c, 0x9, 0x99, 0x95, 0xbc, 0xbd, 0x11, 0x8d, 0x62, 0x50, 0xa2, 0x21, 0xf2, 0x46, 0xce, 0x6e, 0xbe, 0x67, 0x1f, 0x7, 0x96}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0x44, 0x64, 0x8e, 0x9e, 0xfe, 0x87, 0x20, 0x69, 0xfd, 0xe9, 0x55, 0x7d, 0x7f, 0xf4, 0xf9, 0xcc, 0xf5, 0xbb, 0x3f, 0x22, 0xc, 0x1b, 0xd1, 0xa6, 0xb2, 0x45, 0xe9, 0x48, 0x41, 0x19, 0xc4}} return a, nil } -var _idtablestakingDelegationDel_request_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xb1\x4e\xc3\x40\x0c\x86\xf7\x3c\x85\x95\xa1\x4a\x96\x64\x41\x0c\x15\x50\x01\x55\x25\x24\x04\x88\x52\x76\xf7\xe2\xb4\x81\xeb\x39\x38\x0e\xad\x84\xfa\xee\xe8\x7a\x4d\x00\x35\x23\x5e\x6e\x38\xfb\xf7\xff\xd9\xae\x36\x35\x8b\xc2\xcc\xf2\xf6\x6e\xfa\x82\x4b\x4b\x73\xc5\xf7\xca\xad\xa0\x14\xde\x40\x7c\xfa\x11\x47\x51\xa4\x82\xae\x41\xa3\x15\xbb\x04\x37\xdc\x3a\x1d\xc3\x62\x56\xed\xce\xcf\x52\xf8\x8a\x22\x00\x80\x3c\x87\x7b\x36\x68\xe1\x13\xa5\xf2\xe5\x50\xb2\x00\x82\x50\x49\x42\xce\x10\x28\x83\xae\x09\xa6\x64\x69\x85\xca\x02\xbc\x7c\x23\xa3\x87\x6a\x4b\x0a\x45\xf7\xf1\x4c\xe5\x18\xb0\xd5\x75\x72\xea\x26\xeb\xcb\x1f\xb7\x8e\x24\x85\xd1\x40\xce\x03\x17\xd4\xe7\x05\x7b\xb5\x50\x8d\x42\x09\x1a\xa3\x47\xf1\x1b\x16\xe1\xed\x2b\xda\x96\x52\x18\x5d\x1b\xe3\xb9\x3c\x0f\x1c\x23\xcf\x61\x79\xc8\x19\xc2\x28\x86\x30\x7c\x34\x64\xcb\xec\x37\x0b\x5c\x82\xef\x9a\x35\xca\x82\x2b\xca\x82\xe6\xc5\xbf\x01\x5e\x25\x7e\x75\xe3\x81\x9d\xfe\x68\xcd\x43\xef\x27\xd4\x75\xda\x3b\xf5\x31\x99\x40\x8d\xae\x32\x49\x7c\xcb\xad\x2d\xc0\xb1\x76\xd0\x7f\x90\x7b\xa0\x38\x0d\x03\xdd\x87\x87\x76\x64\x5a\xa5\xee\x0a\x06\x07\x90\x09\x7d\xb4\xd4\xe8\xc2\x35\xc1\x57\x7f\x43\xe1\xed\x15\xf7\xdf\x01\x00\x00\xff\xff\x32\x83\xa3\x36\x9e\x02\x00\x00" +var _idtablestakingDelegationDel_request_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x41\x6b\xe3\x40\x0c\x85\xef\xfe\x15\x22\x87\xc5\xb9\xd8\x7b\x58\xf6\x60\x76\x1b\xdc\x3a\x81\x40\x08\x25\x76\x0e\x3d\x2a\x63\x39\x71\x3b\x19\xb9\xb2\xdc\x04\x4a\xfe\x7b\x99\xba\x31\x2d\x35\x54\x17\x1d\x66\xa4\xf7\xbd\xa7\xfa\xd8\xb0\x28\x2c\x2c\x9f\x96\x59\x81\x3b\x4b\xb9\xe2\x53\xed\xf6\x50\x09\x1f\xe1\xf7\x79\x99\xcd\xd7\xc5\xb2\x78\x28\xd2\xdb\xd5\x3c\xcd\xb2\xcd\x3c\xcf\x83\x20\x50\x41\xd7\xa2\xd1\x9a\x5d\x88\x47\xee\x9c\x26\xb0\x5d\xd4\xe7\xbf\x7f\xa6\xf0\x1a\x04\x00\x00\x71\x0c\x2b\x36\x68\xe1\x05\xa5\xf6\x9b\xa1\x62\x01\x04\xa1\x8a\x84\x9c\x21\x50\x06\x3d\x10\x64\x64\x69\x8f\xca\x02\xbc\x7b\x24\xa3\xef\xd3\x96\x14\xca\xeb\xc3\x86\xaa\x04\x7e\x7d\x87\x8c\xd6\x5c\xd2\x30\xde\xcb\x36\x42\x0d\x0a\x85\x68\x8c\x26\x90\x76\x7a\x48\x8d\xf1\x80\x1e\x0c\x3e\x2a\x8e\x61\xc7\x22\x7c\x1a\xe3\x29\xc7\x78\x7c\xb5\x64\xab\xe8\x33\x14\xfc\x07\x2f\x13\xf5\xbb\xfe\xfd\x48\x78\x13\xfa\x54\x93\x91\xb8\xa3\xe1\x4f\xae\x2c\xb8\xa7\x7b\xd4\xc3\x74\x50\xf6\x35\x9b\x41\x83\xae\x36\xe1\xe4\x8e\x3b\x5b\x82\x63\xbd\x9a\xf8\x62\x61\x00\x9c\x4c\xfb\x44\x2e\x7d\xa3\x33\x99\x4e\xe9\x7a\x9e\x51\x43\x91\xd0\x73\x47\xad\x6e\x5d\xdb\x73\x0d\xc7\xed\xfb\xb0\xf1\xf2\x16\x00\x00\xff\xff\x59\x8c\xf0\xa8\x39\x02\x00\x00" func idtablestakingDelegationDel_request_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2540,11 +2480,11 @@ func idtablestakingDelegationDel_request_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x87, 0xb8, 0x8e, 0xfc, 0xc, 0xe8, 0x6c, 0xa0, 0x8b, 0xce, 0x40, 0x25, 0x93, 0xd5, 0xb2, 0xfd, 0x6a, 0xfb, 0x2, 0x9c, 0xa5, 0x42, 0x21, 0xf5, 0xc2, 0x16, 0x83, 0x68, 0x5d, 0xa5, 0x8d, 0xe8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0x1d, 0xf8, 0x36, 0x96, 0xba, 0x29, 0x5f, 0x9e, 0xc8, 0x53, 0x9a, 0x3f, 0x61, 0x22, 0xe7, 0x41, 0xc3, 0x9d, 0xe8, 0x55, 0xee, 0x64, 0xd8, 0x5e, 0x39, 0x16, 0x38, 0x80, 0xc8, 0xc, 0xa}} return a, nil } -var _idtablestakingDelegationDel_stake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\xcd\x6a\xdb\x40\x10\xbe\xef\x53\x0c\x3a\x04\xe9\x50\xe9\x52\x7a\x30\x69\x43\xdb\x60\x28\x84\xa4\x34\x69\x7c\x1e\xad\x46\xd2\xd6\xeb\x1d\xb1\x1a\x55\x86\xe2\x77\x2f\xfa\xb5\x8c\x4d\x31\x25\x7b\x11\xbb\xfb\xcd\x7c\x3f\xa3\x35\xbb\x8a\xbd\xc0\xda\x72\xfb\xed\xfe\x05\x53\x4b\xcf\x82\x5b\xe3\x0a\xc8\x3d\xef\x20\x38\xbf\x08\xd4\xa2\xe6\x85\xb7\xe4\x16\xd0\x7e\x7f\x44\x34\xae\x30\xa9\xa5\x13\xd4\xf2\x2c\x50\x4a\x89\x47\x57\xa3\x16\xc3\x2e\xc4\x1d\x37\x4e\x56\xf0\x73\x6d\xf6\x1f\xde\x47\xf0\x47\x29\x00\x80\x24\x81\x07\xd6\x68\xe1\x37\x7a\xd3\x49\x81\x9c\x3d\x20\x78\xca\xc9\x93\xd3\x04\xc2\x20\x25\x41\x46\x96\x0a\x14\xf6\xc0\xe9\x2f\xd2\xd2\x57\x5b\x92\xe3\xc5\x0f\xca\x57\x80\x8d\x94\xe1\xb9\xb3\xf8\x7e\x42\x3d\xb5\x8e\x7c\x04\x37\x17\x30\x8f\x9c\xd1\x8c\x53\x33\x41\x3e\x99\x5f\x10\x2c\x9d\xc6\x1b\x23\x65\xe6\xb1\x1d\xbb\x0e\x87\xaf\xd8\x58\x19\x9a\x54\x9e\x2a\xf4\x14\xa2\xd6\x32\x36\xf8\xc2\xde\x73\xfb\x8a\xb6\xa1\x08\x6e\x3e\x6b\xdd\x85\xd3\x85\x02\xe3\x4a\x12\x48\x7b\xcc\xd5\x59\x74\xab\x26\x9b\xc7\xcb\x40\xe0\x23\x74\xac\x71\x2d\xec\xb1\xa0\x78\xe8\x79\xfb\x66\x29\x7d\x0a\xbb\xd1\xaf\x2e\xfc\x64\xc7\x5e\xcf\x03\xf7\x77\x94\x32\x9a\x95\x76\xeb\xee\x0e\x2a\x74\x46\x87\xc1\x57\x6e\x6c\x06\x8e\x65\x32\x7d\x62\x79\x36\x14\x44\xea\xd4\xea\x72\x34\xff\xb4\x7a\xe5\xbc\x26\x3b\xc9\xd8\x24\x99\x09\xfa\xeb\xff\x93\xbf\x7e\x78\xda\x40\x5f\x3f\xe9\x3f\x0c\x1f\xda\x93\x6e\x84\xa6\xa7\x70\x71\x80\xd3\x86\x1e\x69\x10\x52\x8f\x12\x6f\xdf\x9d\x25\x10\xb7\xa3\xb1\xf9\xb1\x0d\xdf\x68\xa6\x3d\xfc\x0d\x00\x00\xff\xff\xc1\x80\x21\xc4\x14\x04\x00\x00" +var _idtablestakingDelegationDel_stake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x8f\x94\x40\x10\x85\xef\xfc\x8a\xca\x1e\xcc\xcc\x41\xf0\x60\x3c\x4c\x56\x37\x28\x4c\x32\x71\xc2\x9a\x05\x35\x1e\x6b\x9a\x62\xc0\xed\xe9\x22\x4d\x21\x93\x98\xfd\xef\xa6\x61\x9b\x65\xb3\x93\x68\xac\x4b\xa7\xd3\xef\x51\xdf\x2b\xaa\x39\xb5\x6c\x05\xb6\x9a\x87\x5d\x52\xe0\x41\x53\x2e\x78\xdf\x98\x23\x54\x96\x4f\xf0\xe6\xbc\x4b\xd2\xac\xd8\x15\x3f\x8a\xf8\xe3\x3e\x8d\x93\xe4\x2e\xcd\xf3\x60\xe1\x2a\xf8\x9e\x8c\x17\x6f\xf7\xb7\xdf\x8b\xdb\xcf\x69\xe6\x85\x41\x20\x16\x4d\x87\x4a\x1a\x36\x2b\x3c\x71\x6f\x64\x03\x5f\xb7\xcd\xf9\xdd\xdb\x35\xfc\x0e\x02\x00\x80\x28\x82\x3d\x2b\xd4\xf0\x0b\x6d\xe3\x10\xa0\x62\x0b\x08\x96\x2a\xb2\x64\x14\x81\x30\x48\x4d\x50\x92\xa6\x23\x0a\x5b\xe0\xc3\x4f\x52\x32\xba\x35\xc9\xd3\xc3\x1d\x55\x1b\x78\xf5\x32\x4d\x98\x71\x49\x89\x57\x05\xb3\xb1\xf2\x09\x9e\x8c\xe3\x35\xfc\x86\xbd\x96\x49\xd7\x5a\x6a\xd1\xd2\x0a\x95\x92\x0d\xc4\xbd\xd4\xb1\x52\x2e\x88\x0b\x00\x8f\x15\x45\x70\x60\x6b\x79\xf8\x67\x6e\x57\x1d\xe9\x2a\x5c\xc2\xc3\x7b\x70\x6d\xc2\xe9\x5b\xd7\x7f\x4d\xf2\x61\xe5\x26\xbf\xb9\xf0\xff\xc2\x59\x93\x0b\x5b\x3c\xd2\x17\x94\x7a\x3d\x77\x76\x75\x73\x03\x2d\x9a\x46\xad\xae\x3e\x71\xaf\x4b\x30\x2c\x3e\xc4\xb3\x08\x33\xe0\xd5\x3a\x78\x8e\xbe\x1c\xdf\x25\xf4\xc5\x2c\x3d\x69\xd4\x4d\x38\xd1\xec\x1d\x9f\xff\x8f\xcc\xed\x1b\x8c\x7e\x8f\xf6\x30\x1d\x74\x26\xd5\x0b\xf9\x0d\xbb\x38\x6b\x7f\xa1\x8c\x26\x90\xee\x11\xf1\xfa\xf5\x8b\x70\xe1\xd0\x48\x5d\x5a\x1c\xe6\x1d\x9e\xce\xf5\xdc\xf6\xe1\x4f\x00\x00\x00\xff\xff\x7d\x72\x30\x6f\x4a\x03\x00\x00" func idtablestakingDelegationDel_stake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2560,11 +2500,11 @@ func idtablestakingDelegationDel_stake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xef, 0x10, 0x2b, 0x72, 0x96, 0xd1, 0x8e, 0xa0, 0x84, 0xd7, 0xe0, 0x69, 0x57, 0x1c, 0x1b, 0x5e, 0xf2, 0x48, 0x5f, 0x81, 0x81, 0x5c, 0xbe, 0x2, 0x4b, 0x1e, 0x7b, 0x4b, 0xf7, 0xbd, 0x9a, 0x2a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x53, 0x38, 0xd9, 0x47, 0x24, 0xbb, 0xe8, 0x6e, 0x60, 0xdf, 0x9c, 0x19, 0x3a, 0x3c, 0x47, 0x18, 0xa7, 0xb5, 0x74, 0x88, 0x1d, 0x6, 0xd7, 0xb5, 0x24, 0xc1, 0xa1, 0xd3, 0x49, 0x79, 0xbe, 0x8b}} return a, nil } -var _idtablestakingDelegationDel_stake_rewardedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xc1\x4b\xfb\x50\x0c\xc7\xef\xfd\x2b\x42\x0f\xa3\xbd\xb4\x97\x1f\xbf\xc3\x50\x87\x3a\x06\x82\xa8\x6c\xd3\x7b\xf6\x9a\x6e\x75\xaf\x2f\x25\x4d\xed\x40\xf6\xbf\xcb\x5b\xd7\xaa\xac\x47\x73\x79\x3c\x92\x7c\x93\x4f\x92\xa2\xac\x58\x14\x16\x96\xdb\x87\xf9\x1a\x37\x96\x56\x8a\xfb\xc2\x6d\x21\x17\x2e\x21\xbc\x74\x84\x41\x10\xa8\xa0\xab\xd1\x68\xc1\x2e\xc2\x92\x1b\xa7\x53\x78\x5d\x14\x87\xff\xff\x62\xf8\x0c\x02\x00\x80\x34\x85\x47\x36\x68\xe1\x03\xa5\xf0\xe9\x90\xb3\x00\x82\x50\x4e\x42\xce\x10\x28\x83\xee\x08\xe6\x64\x69\x8b\xca\x02\xbc\x79\x27\xa3\xa7\x6c\x4b\x0a\x59\xef\x58\x52\x3e\x05\x6c\x74\x17\x5d\x76\x93\x0c\xe9\xcf\xad\x23\x89\x61\x32\x12\xf3\xc4\x19\x0d\x71\x5d\x7b\x95\x50\x85\x42\x11\x1a\xa3\x67\xf1\x3b\x16\xe1\xf6\x0d\x6d\x43\x31\x4c\x6e\x8d\xf1\x5c\x9e\x07\xce\x96\xa6\xb0\x39\xc5\x8c\x61\x64\x63\x18\xde\x6a\xb2\x79\xf2\x93\x05\xae\xc1\x57\x4d\x6a\x65\xc1\x2d\x25\x9d\xe6\xd5\x9f\x01\xde\x44\x7e\x75\xd3\x91\x9d\x7e\x6b\xad\xba\xda\x2f\xa8\xbb\x78\xe8\xd4\xdb\x6c\x06\x15\xba\xc2\x44\xe1\x3d\x37\x36\x03\xc7\xda\x43\xff\x42\x1e\x80\xc2\xb8\x1b\xe8\xb1\x7b\xe8\x40\xa6\x51\xea\xaf\x60\x74\x00\xfd\x87\x96\xd4\xa2\x64\x94\xad\x79\x4f\xae\x1e\x2e\xa9\x7b\x07\xdd\xe3\x57\x00\x00\x00\xff\xff\xb1\x5e\xd1\xad\xa4\x02\x00\x00" +var _idtablestakingDelegationDel_stake_rewardedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x41\x6b\xab\x50\x10\x85\xf7\xfe\x8a\x21\x8b\x87\xd9\xe8\x5b\x3c\xde\x42\xda\x06\x5b\x13\x08\x84\x50\xa2\x5d\x74\x39\xb9\x8e\x89\xcd\xcd\x1d\x99\x8c\x4d\xa0\xe4\xbf\x97\x5b\xab\xb4\x54\xe8\x6c\x06\xf1\xce\x9c\xef\x9c\xa9\x8f\x0d\x8b\xc2\xc2\xf2\x79\x99\x15\xb8\xb5\x94\x2b\x1e\x6a\xb7\x83\x4a\xf8\x08\x7f\x2f\xcb\x6c\xbe\x2e\x96\xc5\x73\x91\xde\xaf\xe6\x69\x96\x6d\xe6\x79\x1e\x04\x81\x0a\xba\x13\x1a\xad\xd9\x85\x78\xe4\xd6\x69\x02\x4f\x8b\xfa\xf2\xff\xdf\x14\xde\x82\x00\x00\x20\x8e\x61\xc5\x06\x2d\xbc\xa2\xd4\x7e\x33\x54\x2c\x80\x20\x54\x91\x90\x33\x04\xca\xa0\x7b\x82\x8c\x2c\xed\x50\x59\x80\xb7\x2f\x64\xf4\x63\xda\x92\x42\xd9\xff\xd8\x50\x95\xc0\x9f\x9f\x90\xd1\x9a\x4b\x1a\xc6\x3b\xd9\x46\xa8\x41\xa1\x10\x8d\xd1\x04\xd2\x56\xf7\xa9\x31\x1e\xd0\x83\xc1\x67\xc5\x31\x6c\x59\x84\xcf\x63\x3c\xe5\x18\x8f\xaf\x13\xd9\x2a\xfa\x0a\x05\xb7\xe0\x65\xa2\x6e\xd7\xcd\xaf\x84\x77\xa1\x4f\x35\x19\x89\x3b\x1a\xde\xe4\xca\x82\x3b\x7a\x44\xdd\x4f\x07\x65\x5f\xb3\x19\x34\xe8\x6a\x13\x4e\x1e\xb8\xb5\x25\x38\xd6\xde\xc4\x37\x0b\x03\xe0\x64\xda\x25\x72\xed\x1a\x5d\xc8\xb4\x4a\xfd\x79\x46\x0d\xf5\x1f\xb4\xa1\x33\x4a\x49\x65\xc1\x07\x72\xa7\xe1\xc4\x5d\x1f\xf6\x5e\xdf\x03\x00\x00\xff\xff\x4f\x03\x87\x63\x3f\x02\x00\x00" func idtablestakingDelegationDel_stake_rewardedCdcBytes() ([]byte, error) { return bindataRead( @@ -2580,11 +2520,11 @@ func idtablestakingDelegationDel_stake_rewardedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_stake_rewarded.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0xab, 0x43, 0xc4, 0x6c, 0xd2, 0xcc, 0x46, 0xb9, 0xe9, 0xe8, 0x58, 0xd2, 0x56, 0x18, 0xf, 0xca, 0xf0, 0x2e, 0xf4, 0x55, 0xe9, 0x4f, 0x44, 0x76, 0xed, 0x31, 0x9c, 0x48, 0x31, 0xf0, 0xf7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf, 0x9f, 0xc3, 0x4b, 0x19, 0xbb, 0xe2, 0x96, 0x5c, 0x6c, 0x69, 0x8b, 0x86, 0x7e, 0xeb, 0x78, 0x72, 0x47, 0xef, 0x12, 0x0, 0xd0, 0x9b, 0x25, 0x23, 0x9a, 0x67, 0x29, 0x3e, 0xa1, 0x89, 0x59}} return a, nil } -var _idtablestakingDelegationDel_stake_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x31\x4f\xf3\x40\x0c\x86\xf7\xfc\x8a\x57\x19\xaa\x64\x49\x96\x4f\xdf\x50\x01\x15\x50\x55\x42\x42\x80\x68\xcb\xee\x5e\x9c\x36\xf4\x7a\x8e\x2e\x0e\xad\x84\xfa\xdf\x51\x9a\x26\x80\x9a\x11\x2f\xa7\x93\xed\xd7\x7e\x6c\x17\xbb\x52\xbc\x62\x66\x65\xff\x30\x5d\xd0\xca\xf2\x5c\x69\x5b\xb8\x35\x72\x2f\x3b\x84\x97\x8e\x30\x08\x02\xf5\xe4\x2a\x32\x5a\x88\x8b\x68\x27\xb5\xd3\x31\x96\xb3\xe2\xf0\xff\x5f\x8c\xcf\x20\x00\x80\x34\xc5\xa3\x18\xb2\xf8\x20\x5f\x34\xe9\xc8\xc5\x83\xe0\x39\x67\xcf\xce\x30\x54\xa0\x1b\xc6\x94\x2d\xaf\x49\xc5\x43\x56\xef\x6c\xf4\x94\x6d\x59\x91\x75\x8e\x57\xce\xc7\xa0\x5a\x37\xd1\x65\x37\x49\x9f\xfe\xbc\x77\xec\x63\x8c\x06\x62\x9e\x24\xe3\x3e\xae\x6d\xaf\xf4\x5c\x92\xe7\x88\x8c\xd1\xb3\xf8\x9d\x78\x2f\xfb\x37\xb2\x35\xc7\x18\xdd\x1a\xd3\x70\x35\x3c\x38\x5b\x9a\x62\x75\x8a\x19\xc2\xc8\x86\x30\x1a\xab\xd8\xe6\xc9\x4f\x16\x5c\xa3\xa9\x9a\x54\x2a\x9e\xd6\x9c\xb4\x9a\x57\x7f\x06\x78\x13\x35\xab\x1b\x0f\xec\xf4\x5b\x6b\xde\xd6\x7e\x21\xdd\xc4\x7d\xa7\x8d\x4d\x26\x28\xc9\x15\x26\x0a\xef\xa5\xb6\x19\x9c\x68\x07\xfd\x0b\xb9\x07\x0a\xe3\x76\xa0\xc7\xf6\xe1\x03\x9b\x5a\xb9\xbb\x82\xc1\x01\x74\x1f\x5e\xba\x4a\x69\xcb\xd9\x42\xb6\xec\xaa\xfe\x92\xda\xb7\xd7\x3d\x7e\x05\x00\x00\xff\xff\x9e\x6a\x61\x83\xa4\x02\x00\x00" +var _idtablestakingDelegationDel_stake_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xc1\x6a\xb3\x50\x10\x85\xf7\x3e\xc5\x90\xc5\x8f\xd9\xe8\xbf\x28\x5d\x48\xdb\x60\x6b\x02\x81\x10\x4a\x34\x8b\x2e\x27\xd7\x31\xb1\x31\x77\x64\x1c\x9b\x40\xc9\xbb\x97\x5b\xab\xb4\x54\xe8\x6c\x06\xf1\xce\x9c\xef\x9c\x29\x4f\x35\x8b\xc2\xa2\xe2\xf3\x32\xc9\x70\x57\x51\xaa\x78\x2c\xed\x1e\x0a\xe1\x13\xfc\xbf\x2c\x93\xf9\x3a\x5b\x66\x2f\x59\xfc\xb8\x9a\xc7\x49\xb2\x99\xa7\xa9\xe7\x79\x2a\x68\x1b\x34\x5a\xb2\xf5\xf1\xc4\xad\xd5\x08\xb6\x8b\xf2\x72\x7b\x33\x85\x77\xcf\x03\x00\x08\x43\x58\xb1\xc1\x0a\xde\x50\x4a\xb7\x19\x0a\x16\x40\x10\x2a\x48\xc8\x1a\x02\x65\xd0\x03\x41\x42\x15\xed\x51\x59\x80\x77\xaf\x64\xf4\x73\xba\x22\x85\xbc\xff\xb1\xa1\x22\x82\x7f\xbf\x21\x83\x35\xe7\x34\x8c\x77\xb2\xb5\x50\x8d\x42\x3e\x1a\xa3\x11\xc4\xad\x1e\x62\x63\x1c\xa0\x03\x83\xaf\x0a\x43\xd8\xb1\x08\x9f\xc7\x78\xf2\x31\x1e\x57\x0d\x55\x45\xf0\x1d\x0a\xee\xc1\xc9\x04\xdd\xae\xbb\x3f\x09\x1f\x7c\x97\x6a\x34\x12\x77\x30\xbc\x49\x95\x05\xf7\xf4\x8c\x7a\x98\x0e\xca\xae\x66\x33\xa8\xd1\x96\xc6\x9f\x3c\x71\x5b\xe5\x60\x59\x7b\x13\x3f\x2c\x0c\x80\x93\x69\x97\xc8\xb5\x6b\x74\x21\xd3\x2a\xf5\xe7\x19\x35\xd4\x7f\xd0\xd6\x36\x8a\x47\xca\x33\x3e\x92\x6d\x86\x13\x77\x7d\xd8\x7b\xfd\x08\x00\x00\xff\xff\x60\x37\x37\x4d\x3f\x02\x00\x00" func idtablestakingDelegationDel_stake_unstakedCdcBytes() ([]byte, error) { return bindataRead( @@ -2600,11 +2540,11 @@ func idtablestakingDelegationDel_stake_unstakedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_stake_unstaked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb2, 0xe0, 0x9e, 0xd0, 0xcb, 0x7b, 0x17, 0x55, 0xd4, 0x3c, 0x3a, 0xb7, 0x69, 0x8d, 0xf0, 0x10, 0x95, 0x57, 0x91, 0x73, 0xc7, 0xbe, 0xf3, 0x94, 0x97, 0x96, 0xe, 0x27, 0x37, 0x17, 0xff, 0x6a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x74, 0xad, 0x88, 0x47, 0x36, 0x16, 0xef, 0x73, 0xad, 0x97, 0xe5, 0xea, 0x2d, 0xf8, 0xaa, 0x76, 0xc6, 0xa, 0x7b, 0xa9, 0x51, 0x85, 0x17, 0x72, 0x7, 0xfe, 0xb0, 0x79, 0xb4, 0xaa, 0xda, 0x62}} return a, nil } -var _idtablestakingDelegationDel_withdraw_reward_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\x4d\x6b\xdc\x40\x0c\xbd\xcf\xaf\x10\x3e\x2c\xf6\xa1\xf6\xa5\xf4\xb0\xa4\x0d\x6d\xc3\x42\x21\x34\x25\x49\xd3\xb3\x76\x46\xde\x9d\x66\x76\x64\x64\xb9\x0e\x94\xfc\xf7\xe2\xcf\x78\xbb\x5b\x28\xa5\xba\x08\xa3\x27\xbd\xf7\x2c\x8d\x3f\x54\x2c\x0a\x9b\xc0\xed\xa7\xab\x7b\xdc\x06\xba\x53\x7c\xf4\x71\x07\xa5\xf0\x01\x92\xd3\x42\x62\x16\x3d\xf7\xfc\x48\x71\x01\xed\xbf\x13\x63\x8c\x0a\xc6\x1a\xad\x7a\x8e\x29\x1e\xb8\x89\xba\x86\xaf\x1b\xff\xf4\xe6\x75\x06\x3f\x8d\x01\x00\x28\x0a\xb8\x66\x8b\x01\x7e\xa0\xf8\x8e\x00\x4a\x16\x40\x10\x2a\x49\x28\x5a\x02\x65\xd0\x3d\x81\xa3\x40\x3b\x54\x16\xe0\xed\x77\xb2\xda\x77\x07\xd2\x97\xc2\x2d\x95\x6b\xc0\x46\xf7\xe9\xa9\xde\xfc\x6a\x42\xdd\xb4\x91\x24\x83\xd5\x19\xcc\x67\x76\x34\xe3\xcc\x4c\x50\x4e\x96\x7a\x82\xd5\xec\x30\x7f\xc0\x26\xe8\x80\xab\x84\x2a\x14\x4a\xd1\x5a\x1d\x45\x7c\x60\x11\x6e\x1f\x30\x34\x94\xc1\xea\xbd\xb5\x9d\xff\xce\x37\x8c\x51\x14\xb0\xed\x31\x7f\x6d\xb7\x8b\x9a\x42\x99\x2f\x3d\xc3\x5b\xe8\x58\xf3\x5a\x59\x70\x47\xf9\x30\xf3\xe2\xbf\xfd\x88\x77\x69\xb7\xd9\xf5\x99\xeb\x78\x99\x75\x37\x70\x7f\x41\xdd\x67\xb3\xd2\x2e\x2e\x2f\xa1\xc2\xe8\x6d\x9a\x7c\xe4\x26\x38\x88\xac\x93\xe9\x23\xcb\xf5\x78\x6f\xe8\x0e\x3e\x26\x99\x39\xb6\xbb\xdc\xc0\x1f\xec\xfe\xbe\x96\x49\x75\x31\xe2\x8a\x79\x46\x5f\xfe\x37\x95\x9b\xeb\x9b\x6f\xd0\xf7\x4f\x12\x9f\x87\x44\x4f\x64\x1b\xa5\xe9\xa8\xcf\x0a\xcf\x1d\x55\x5c\x7b\x1d\x85\x5d\xbc\x3a\xd9\x64\xde\x7a\xdd\x3b\xc1\xf6\x96\x5a\x14\x47\xae\x6f\xad\xe7\xa7\x33\xe4\x6c\xa6\x7e\xfe\x15\x00\x00\xff\xff\xd5\x98\xe2\x33\xb8\x03\x00\x00" +var _idtablestakingDelegationDel_withdraw_reward_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x8f\xd3\x30\x10\x85\xef\xf9\x15\xa3\x3d\xa0\xf6\x40\xc2\x01\x71\xa8\x16\x56\x85\xb4\x52\x45\xd5\x45\x6d\x00\x71\x9c\xda\x93\xd6\xac\xeb\x89\x9c\x09\xa9\x84\xf6\xbf\x23\x27\x75\x36\xab\xad\x04\x62\x2e\x56\xe4\xf7\x32\xdf\x1b\x8f\x39\x55\xec\x05\x96\x96\xdb\x55\x5e\xe0\xde\xd2\x4e\xf0\xc1\xb8\x03\x94\x9e\x4f\xf0\xe6\xbc\xca\x17\x9b\x62\x55\xfc\x28\xe6\x1f\xd7\x8b\x79\x9e\x6f\x17\xbb\x5d\x32\x72\x15\xfc\x40\x2e\x8a\x97\xeb\xfb\xef\xc5\xfd\xe7\xc5\x26\x0a\x93\x44\x3c\xba\x1a\x95\x18\x76\x13\x3c\x71\xe3\x64\x06\x5f\x97\xe6\xfc\xee\xed\x14\x7e\x27\x09\x00\x40\x96\xc1\x9a\x15\x5a\xf8\x85\xde\x04\x04\x28\xd9\x03\x82\xa7\x92\x3c\x39\x45\x20\x0c\x72\x24\xd0\x64\xe9\x80\xc2\x1e\x78\xff\x93\x94\x74\x6e\x4b\xf2\x74\xb1\xa5\x72\x06\xaf\x5e\xa6\x49\x37\xac\x29\x8f\xaa\x64\x30\x96\x31\xc1\x93\xb1\xfb\x4c\xbf\x61\x63\xa5\xd7\x55\x9e\x2a\xf4\x34\x41\xa5\x64\x06\xf3\x46\x8e\x73\xa5\x42\x90\x10\x00\x2e\x95\x65\xb0\x67\xef\xb9\xfd\x67\xee\x50\x35\xd9\x32\x1d\xc3\xc3\x7b\x08\x6d\xd2\xfe\x5f\xb7\x7f\x4d\xf2\x61\x12\x26\x3f\xbb\xf2\x7e\xe9\xa0\xd9\x09\x7b\x3c\xd0\x17\x94\xe3\x74\xe8\x1c\xea\xee\x0e\x2a\x74\x46\x4d\x6e\x3e\x71\x63\x35\x38\x96\x18\xe2\x59\x84\xfa\xb2\x11\xa8\x4f\xc6\xdd\x4c\x93\xe7\xf8\xe3\x11\x5e\xc3\x1f\xcd\x33\xd2\x66\x75\x8f\x94\x0d\xde\xee\xfa\xff\xe8\xc2\xce\x41\xe7\x8f\x68\x8f\xfd\x41\x67\x52\x8d\x50\xdc\xb2\xab\xc0\xa9\xa6\x8a\x6b\x23\x17\xb0\xdb\xd7\x2f\x5e\x24\x6d\x8d\x1c\xb5\xc7\x76\x4b\x2d\x7a\x4d\xba\xb3\xd6\xc3\x2e\xf7\xe7\x74\x68\xfd\xf8\x27\x00\x00\xff\xff\x48\xa4\x68\x6b\x52\x03\x00\x00" func idtablestakingDelegationDel_withdraw_reward_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2620,11 +2560,11 @@ func idtablestakingDelegationDel_withdraw_reward_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_withdraw_reward_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0x69, 0x4a, 0xc2, 0x9c, 0x8c, 0xbe, 0x30, 0xf1, 0x75, 0xca, 0x4, 0xe6, 0x89, 0xc4, 0x37, 0xa4, 0x54, 0x4, 0x46, 0x39, 0x59, 0x38, 0x65, 0xad, 0x42, 0x81, 0x10, 0x43, 0x24, 0x11, 0x43}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x59, 0x52, 0x4d, 0x97, 0xb1, 0xb9, 0xbc, 0x88, 0xbd, 0xa4, 0x74, 0x59, 0xab, 0xf1, 0x25, 0x8a, 0x1c, 0x55, 0x41, 0x8e, 0x6b, 0x4d, 0x3c, 0xfe, 0x4c, 0xb6, 0xdb, 0x88, 0xd3, 0xa9, 0xbf, 0x50}} return a, nil } -var _idtablestakingDelegationDel_withdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\x4d\x8b\xdb\x40\x0c\xbd\xcf\xaf\x10\x3e\x04\xfb\x50\xfb\x52\x7a\x08\xdb\x2e\x6d\x97\x40\x61\xe9\x96\xee\x47\xcf\xca\x58\x8e\xa7\x19\x8f\xcc\x58\xae\x03\x25\xff\xbd\x8c\xbf\xe2\x34\x29\x94\x52\x5d\x06\xa3\x27\xbd\xf7\x24\xd9\x54\x35\x7b\x81\x8d\xe5\xee\xd3\xdd\x13\x6e\x2d\x3d\x0a\xee\x8d\xdb\x41\xe1\xb9\x82\xe8\x32\x11\xa9\x45\xcd\x13\xef\xc9\x2d\xa0\xfd\x77\xa4\x94\x12\x8f\xae\x41\x2d\x86\x5d\x8c\x15\xb7\x4e\xd6\xf0\xbc\x31\x87\x37\xaf\x13\xf8\xa9\x14\x00\x40\x96\xc1\x3d\x6b\xb4\xf0\x03\xbd\x09\x04\x50\xb0\x07\x04\x4f\x05\x79\x72\x9a\x40\x18\xa4\x24\xc8\xc9\xd2\x0e\x85\x3d\xf0\xf6\x3b\x69\xe9\xab\x2d\xc9\x29\xf1\x95\x8a\x35\x60\x2b\x65\x7c\xa9\x37\xbd\x9b\x50\x0f\x9d\x23\x9f\xc0\xea\x0a\xe6\x33\xe7\x34\xe3\xd4\x4c\x50\x4c\x96\x7a\x82\xd5\xec\x30\x7d\xc1\xd6\xca\x80\xab\x3d\xd5\xe8\x29\x46\xad\x65\x14\xf1\x81\xbd\xe7\xee\x05\x6d\x4b\x09\xac\xde\x6b\x1d\xfc\x07\xdf\x30\x46\x96\xc1\xb6\xc7\xfc\xb5\xdd\x10\x0d\xd9\x22\x5d\x7a\x86\xb7\x10\x58\xd3\x46\xd8\xe3\x8e\xd2\xa1\xe7\xcd\x7f\x1b\xc4\xbb\x38\x6c\x76\x7d\xe5\x3a\x4e\xbd\x1e\x07\xee\x2f\x28\x65\x32\x2b\x0d\x71\x7b\x0b\x35\x3a\xa3\xe3\xe8\x23\xb7\x36\x07\xc7\x32\x99\x3e\xb3\xdc\x8c\xf7\x86\x79\x65\x5c\x94\xa8\x73\xbb\xcb\x0d\xfc\xc1\xee\xef\x6b\x99\x54\x67\x23\x2e\x9b\x7b\xf4\xe9\x7f\x53\xb9\xb9\x7f\xf8\x06\x7d\xfd\x24\xf1\x38\x3c\x74\x20\xdd\x0a\x4d\x47\x7d\x55\x78\x9a\x53\xcd\x8d\x91\x51\xd8\xcd\xab\x8b\x4d\xa6\x9d\x91\x32\xf7\xd8\x3d\xbb\x30\x0f\xca\xfb\xd2\x66\xfe\x75\x86\x37\x99\xa9\x8f\xbf\x02\x00\x00\xff\xff\xb8\x15\x1d\x98\xb8\x03\x00\x00" +var _idtablestakingDelegationDel_withdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x43\x0e\xc5\x3e\x54\xea\xa1\xf4\x60\xd2\x06\xb7\xb2\xc1\xd4\x38\x25\x56\x5a\x7a\x1c\xaf\x46\xd6\x36\xab\x1d\xb1\x1a\x55\x86\x92\xff\x5e\x56\xf2\x2a\x0a\x31\xb4\x64\x2e\x8b\xd8\xf7\x34\xdf\x9b\x1d\x5d\xd5\xec\x04\xd6\x86\xbb\x4d\x9a\xe1\xc1\xd0\x5e\xf0\x41\xdb\x23\x14\x8e\x2b\x78\x77\xda\xa4\xab\x5d\xb6\xc9\x7e\x66\xcb\xcf\xdb\xd5\x32\x4d\xef\x56\xfb\x7d\x34\x71\x65\xfc\x40\x36\x88\xd7\xdb\xdb\x1f\xd9\xed\xd7\xd5\x2e\x08\xa3\x48\x1c\xda\x06\x95\x68\xb6\x33\xac\xb8\xb5\xb2\x80\xfb\xb5\x3e\x7d\x78\x3f\x87\x3f\x51\x04\x00\x90\x24\xb0\x65\x85\x06\x7e\xa3\xd3\x1e\x01\x0a\x76\x80\xe0\xa8\x20\x47\x56\x11\x08\x83\x94\x04\x39\x19\x3a\xa2\xb0\x03\x3e\xfc\x22\x25\xbd\xdb\x90\x3c\x5d\xdc\x51\xb1\x80\x37\x2f\xd3\xc4\x3b\xce\x29\x0d\xaa\x68\x34\x16\x21\xc1\x93\xb1\xff\x8c\xbf\x63\x6b\x64\xd0\xd5\x8e\x6a\x74\x34\x43\xa5\x64\x01\xcb\x56\xca\xa5\x52\x3e\x88\x0f\x00\xe7\x4a\x12\x38\xb0\x73\xdc\xfd\x37\xb7\xaf\x86\x4c\x11\x4f\xe1\xe1\x23\xf8\x36\xf1\xf0\xaf\xeb\x7f\x26\xf9\x34\xf3\x93\x5f\x5c\x78\xbf\x78\xd4\xec\x85\x1d\x1e\xe9\x1b\x4a\x39\x1f\x3b\xfb\xba\xb9\x81\x1a\xad\x56\xb3\xab\x2f\xdc\x9a\x1c\x2c\x4b\x08\xf1\x2c\x42\x73\xde\x08\xcc\x2b\x6d\xaf\xe6\xd1\x73\xfc\xe9\x08\x2f\xe1\x4f\xe6\x19\x68\x93\x66\x40\x4a\x46\x6f\x7f\xfd\x3a\x3a\xbf\x73\xd0\xfb\x03\xda\xe3\x70\xd0\x89\x54\x2b\x14\xb6\xec\x22\x70\x9c\x53\xcd\x8d\x96\x33\xd8\xf5\xdb\x17\x2f\x12\x77\x5a\xca\xdc\x61\x77\x6f\xfd\x1c\x28\xef\xad\xcd\xb8\xcb\xc3\x39\x1f\x5b\x3f\xfe\x0d\x00\x00\xff\xff\x25\x29\x97\xc0\x52\x03\x00\x00" func idtablestakingDelegationDel_withdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2640,11 +2580,11 @@ func idtablestakingDelegationDel_withdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0x9, 0xa9, 0xbe, 0x99, 0x3e, 0x9a, 0x30, 0x27, 0x80, 0xe7, 0x17, 0x89, 0x21, 0xf2, 0xd3, 0x7d, 0x98, 0x8f, 0xf6, 0x2c, 0xc2, 0xb1, 0x96, 0x6, 0x8a, 0x98, 0x7e, 0xc2, 0xed, 0x7c, 0x58}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0xb6, 0xed, 0x54, 0x52, 0x1d, 0x47, 0x45, 0x7d, 0xec, 0xd7, 0x70, 0x4a, 0x4e, 0xf5, 0x39, 0x8e, 0xda, 0x57, 0xea, 0x35, 0x5c, 0x33, 0xcd, 0xae, 0x27, 0x42, 0x6f, 0x3, 0xcd, 0x14, 0x31}} return a, nil } -var _idtablestakingDelegationDelegator_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\xcb\xae\x9b\x30\x10\x86\xf7\x7e\x8a\x51\x16\x11\x48\x11\xec\xa3\x5c\xd4\x26\xaa\xd4\x4d\x1b\x29\x51\xf7\x83\x19\xc0\x8d\x63\x23\x7b\x10\xad\x12\xde\xbd\x82\x34\x04\x4e\x72\x6e\xde\x81\x67\xe6\xff\xfc\x8d\x3a\x95\xd6\x31\x7c\xd3\xb6\xfe\xbe\x3d\x60\xa2\x69\xcf\x78\x54\x26\x87\xcc\xd9\x13\x4c\x1e\x2f\x26\x62\xd0\x73\xb0\x47\x32\x83\xd2\xee\x7b\x22\x44\x1c\xc3\xa1\x50\x1e\xd8\xa1\xf1\x28\x59\x59\x03\x98\xa6\x1e\x10\xca\x2a\xd1\x4a\x42\x4a\x9a\x72\x64\xeb\x40\x62\x89\x89\xd2\x8a\xff\x02\x5b\x40\x03\x28\xa5\xad\x0c\x43\xad\xb8\x68\x27\xa1\x01\xfa\xa3\x3c\xb7\x54\x3f\x6c\x4a\xdb\xbe\xd5\x26\xbf\x49\xb2\x10\xc3\x98\xb3\x10\x00\x00\xa5\xa3\x12\x1d\x05\x28\x25\xcf\x01\x2b\x2e\x82\xaf\xd6\x39\x5b\xff\x42\x5d\xd1\x0c\x36\xb7\x54\x45\x3e\x84\xe9\x97\x6b\x66\x78\x6b\x6f\x8f\xca\x5a\x14\x8e\x3c\x5b\x87\x39\x45\x49\xd7\xbf\xe8\x66\x3d\x7a\x89\x7a\xac\x9f\xb5\x21\x17\xc2\xf4\x49\xcd\x08\x7f\x15\xb4\xe2\xe6\x4f\xe4\xdf\x67\xed\xaf\xd9\x3b\xe4\x22\x84\xe5\x12\x8c\xd2\x70\xb9\xf4\x88\xed\xe9\x18\xe5\xe0\x39\x51\x4e\xbc\x98\x9e\xdf\x8b\xdf\x75\x8b\x68\x56\x41\x7c\x5d\x49\x9c\x69\x5b\xff\xaf\xec\x8b\xc2\x75\x24\x0b\x92\xc7\x20\x84\xf5\x1a\x32\xd4\x9e\xfa\xf0\xf3\x08\xc3\x11\x57\xce\xf4\xbf\x9a\xbb\x47\x4d\x7c\x5f\xf7\x06\x4b\x58\x3e\x61\xbe\x49\x56\xde\x57\xf4\x19\xfa\x11\xc4\x07\x55\xf6\x3d\xa1\x78\xdd\x62\x67\xc5\x17\xe3\x80\xe1\x3b\x66\xe3\x35\xf0\x1c\xde\x32\xf9\x22\xb3\x11\xcd\xbf\x00\x00\x00\xff\xff\xe8\x8a\xcb\x49\x7c\x03\x00\x00" +var _idtablestakingDelegationDelegator_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\x4d\x8b\xa3\x40\x10\x86\xef\xfe\x8a\x3a\x05\x85\x45\xf7\x1c\x92\x80\xbb\x1a\x08\x1b\x92\xb0\x0a\xc3\x1c\xcb\xb6\xa3\x3d\x76\xba\xa5\x2d\x31\x43\xe2\x7f\x1f\x4c\x26\x3d\x91\x19\xe6\xa3\x8f\xcd\x53\xf5\xbc\xf5\x8a\x43\xad\x0d\xc1\x52\xea\x6e\x15\xa5\x98\x49\x9e\x10\x56\x42\x15\xb0\x37\xfa\x00\xbf\x8f\xab\x28\xde\xa4\xab\xf4\x31\x0d\xff\xac\xe3\x30\x8a\xfe\xc7\x49\xe2\xdc\x4d\xa5\xba\xe2\xea\x06\x2f\xd7\xdb\x87\x74\xfb\x2f\xde\xdc\x40\x27\x08\x20\x2d\x45\x03\x64\x50\x35\xc8\x48\x68\x05\x98\xe7\x0d\x20\xd4\x6d\x26\x05\x83\x9c\x4b\x5e\x20\x69\x03\x0c\x6b\xcc\x84\x14\xf4\x0c\xa4\x01\x15\x20\x63\xba\x55\x04\x9d\xa0\x72\xd8\x84\x0a\xf8\x51\x34\x34\xc4\xdb\xe8\x9c\x47\x76\x54\x67\x4f\x9c\x91\xe3\xdc\x6b\x4e\x8e\x03\x00\x50\x1b\x5e\xa3\xe1\x2e\x32\x46\x53\x08\x5b\x2a\xc3\xeb\x5a\xef\x46\x0c\x4f\xec\x07\x1b\xf9\x99\x36\x46\x77\xb3\xc9\xfb\x42\xfc\x91\x71\xe1\x0e\x27\x4f\x3f\x28\xce\xb7\x4c\x42\xda\x60\xc1\x77\x48\xa5\x07\xf3\x39\x28\x21\xe1\x7c\xb6\xca\xe1\x5d\x9c\x05\xa7\xbf\xf6\xf4\xd9\xe4\xf4\x95\x7b\x77\x29\xae\x5f\xb8\xc1\xb5\xc2\x60\x2f\x75\xf7\x4a\x5a\xc8\xf3\x59\xc9\x59\xe5\x7a\xd6\x77\x1a\x99\x0d\xa7\xd6\x28\xfb\xd5\xbf\x55\x71\xc9\x24\x85\xaa\x7e\x12\x65\xb4\xfb\xb3\x5c\xbf\x46\x24\xa1\x29\x38\x7d\xbb\x46\x3b\x7b\xbd\xaa\x77\xfa\x97\x00\x00\x00\xff\xff\x74\x62\xf7\x3a\xc0\x02\x00\x00" func idtablestakingDelegationDelegator_add_capabilityCdcBytes() ([]byte, error) { return bindataRead( @@ -2660,11 +2600,11 @@ func idtablestakingDelegationDelegator_add_capabilityCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/delegator_add_capability.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xc2, 0x21, 0x2e, 0xa2, 0xb9, 0x97, 0xd6, 0xee, 0x84, 0x4, 0xc0, 0x18, 0x6c, 0x12, 0xc9, 0x80, 0x6f, 0xd0, 0x3a, 0xc6, 0xcc, 0xa3, 0x72, 0x33, 0xa7, 0xe4, 0xde, 0xb6, 0x7e, 0xfd, 0x12}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8c, 0xbe, 0xa, 0x4e, 0xbc, 0x74, 0xc8, 0x4f, 0xad, 0xc7, 0xaa, 0x94, 0x93, 0x8, 0xc7, 0x22, 0x42, 0xa1, 0x73, 0xae, 0xad, 0xe8, 0xe8, 0xff, 0xbb, 0x58, 0xf6, 0x30, 0xb, 0xef, 0x9, 0xa}} return a, nil } -var _idtablestakingDelegationGet_delegator_committedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\x03\x31\x10\x85\xef\xf9\x15\x8f\x9e\xba\x20\x2d\xa8\x78\x28\x78\x72\x29\xec\xb9\xed\x0f\x98\x66\x27\xdb\xd0\x64\xa6\x24\x53\x14\xc4\xff\x2e\xeb\xd2\x55\xd4\x53\xc8\x9b\xc7\xf7\xf8\x62\xbe\x68\x31\x6c\x93\xbe\x76\xed\x9e\x8e\x89\x77\x46\xe7\x28\x03\x42\xd1\x8c\xc5\xdf\xc3\xc2\xb9\xf5\x1a\xfb\x53\xac\xa8\xbe\xc4\x8b\xa1\xb0\x5d\x8b\x54\xd8\x89\x71\xa4\x44\xe2\x19\x1a\xe0\x35\xe7\x68\xc6\x3d\x4c\xcf\x2c\x75\xcc\x08\x3d\x27\x1e\xc8\xb4\x38\x47\xde\x73\xad\x4b\x4a\xa9\x41\xb8\x0a\x32\x45\x59\x8a\xf6\xdc\xb5\x1b\xec\xac\x44\x19\xee\xbe\xfb\x63\x78\xe8\xc4\x1e\xee\x9b\x0d\x0e\xdb\xf8\xf6\xf4\x88\x77\x07\x00\x89\x6d\xac\x75\x12\x14\xcf\xff\xa8\xac\xda\x99\x21\x41\xe7\x85\xe9\xfd\xb5\xf0\xe3\xd3\x7c\xc1\x27\xb9\x1b\x7f\x35\xa9\xbc\xdc\xd4\xdc\xc7\x67\x00\x00\x00\xff\xff\xf7\xec\x35\xd4\x41\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_committedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xde\xd1\x82\xb4\xa2\xe2\xa1\xe0\xa1\xba\x29\x2c\x88\x07\x93\x1e\x3c\x6e\x92\x49\xba\x34\x3b\x13\x36\x13\x2c\x88\xff\x5d\x62\x68\x15\xe9\x69\x98\xc7\xe3\x7b\x7c\x21\xf6\x92\x14\xdb\x4e\x3e\x9c\x2d\x7c\xd9\x51\xae\xfe\x10\xb8\x45\x93\x24\xe2\xe6\xe8\x6c\xf6\x5a\xb8\xe2\xbd\xd8\x3c\xbd\x64\x1b\x6b\xdf\xb2\x3c\x37\x66\xb5\x42\xb1\x0f\x03\x86\x2a\x85\x5e\x91\x48\xc7\xc4\x03\x74\x4f\x28\x7d\xe7\xb9\x22\x48\x83\x4a\x62\x0c\xaa\x54\x43\xe5\x40\x3c\x4c\x99\x47\x4d\x1d\xb5\x5e\x25\x19\xd3\x8f\x25\x9a\x91\x11\x7d\xe0\x2b\x96\x9a\x9c\x5d\x23\xd7\x14\xb8\xbd\xfe\xed\x4d\xe1\xce\xb1\xde\xdd\x2e\xd6\xd8\x6d\xc3\xf1\xe1\x1e\x9f\x06\x00\x3a\xd2\xa9\xe6\xb8\x11\x3c\x5e\x90\x58\xda\x33\x83\x1b\x39\x2f\xcc\xf7\xdf\xc2\x9f\x67\xf1\x03\x9f\xa5\x4e\xfc\xe5\xac\xf0\x7c\x52\x32\x5f\xdf\x01\x00\x00\xff\xff\xd0\x83\xf2\x49\x3b\x01\x00\x00" func idtablestakingDelegationGet_delegator_committedCdcBytes() ([]byte, error) { return bindataRead( @@ -2680,11 +2620,11 @@ func idtablestakingDelegationGet_delegator_committedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_committed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0x47, 0x67, 0x61, 0x72, 0x82, 0xe7, 0x5, 0x71, 0x85, 0xa0, 0x71, 0x55, 0x61, 0x1, 0x5c, 0x1e, 0x63, 0xf7, 0x20, 0xd0, 0xe0, 0x44, 0x4f, 0x2d, 0xf0, 0xd3, 0x90, 0x56, 0x35, 0xa3, 0x92}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0xb5, 0xf, 0xba, 0xf, 0x7b, 0x39, 0xf1, 0x31, 0xef, 0x95, 0x64, 0x1f, 0x4, 0xc8, 0xd9, 0xc1, 0xc4, 0x5b, 0x9a, 0xb2, 0x85, 0x44, 0xde, 0x8d, 0x99, 0x72, 0x68, 0x5, 0xc4, 0x36, 0x2b}} return a, nil } -var _idtablestakingDelegationGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8e\xc1\x4a\x87\x40\x10\x87\xef\xfb\x14\x3f\x3c\x29\x44\x42\xdd\x3c\x4b\xe0\x59\x7b\x80\x69\x1d\x75\x68\x9d\x95\xdd\x11\x0f\xd1\xbb\x87\x14\x16\x15\xfc\x4f\xc3\xcc\x7c\xf0\x7d\xb2\x6e\x31\x19\x9e\x42\x3c\xba\x76\xa0\x97\xc0\xbd\xd1\xab\xe8\x8c\x29\xc5\x15\xc5\xdf\x47\xe1\x5c\x5d\x63\x58\x24\x23\xfb\x24\x9b\x21\xb1\xed\x49\x33\x28\x04\xd8\xc2\x10\x9d\x22\x28\xe7\xe8\x85\x8c\x47\x1c\x62\x0b\x08\x23\x07\x9e\xc9\x62\x72\x8e\xbc\xe7\x9c\x4b\x0a\xa1\xc2\xb4\x2b\x56\x12\x2d\x35\x8e\xdc\xb5\x0d\x7a\x4b\xa2\xf3\xdd\x37\x7f\x1e\x9f\x3b\xb5\xc7\x87\xaa\xf9\xa7\xf4\xbe\xbd\xc0\x53\xfc\xe6\x00\x7c\x35\xdd\xa4\x2f\xe9\xe7\xfc\x25\xfd\xb1\x54\xee\xfd\x23\x00\x00\xff\xff\x23\x78\xfb\x5e\x2b\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8e\x41\x4b\xc4\x30\x10\x46\xef\xf9\x15\xdf\xd1\x05\x71\x45\x6f\x7b\x5b\x49\x85\x80\x78\x30\xf1\xe0\x71\x76\x9b\xb6\x83\xe9\xa4\x24\x53\x56\x10\xff\xbb\x14\xa5\x8a\x08\x7b\x1a\xe6\xe3\xc1\x7b\x3c\x4e\xb9\x28\xee\x53\x3e\x39\x1b\xe8\x90\xa2\x57\x7a\x65\xe9\xd1\x95\x3c\xe2\xfa\xcd\xd9\xe6\x31\xb8\xf0\x12\xf6\x77\x0f\xcd\xde\xda\xa7\xc6\x7b\x63\xb6\x5b\x84\x81\x2b\xea\xb1\xf0\xa4\x28\x51\xe7\x22\x15\x94\x12\x74\x88\x60\xe9\x32\xa8\xd6\x7c\x64\xd2\xd8\xe2\xc4\x3a\x80\xd0\xc6\x14\x7b\xd2\x5c\x8c\x99\xe6\x03\xba\x59\x30\x12\xcb\x85\xe4\x36\x3a\xbb\x83\xd7\xc2\xd2\x5f\xfe\x70\xcb\xf8\xec\x44\x6f\x6f\x36\xbb\x7f\x1a\xaf\xec\x0a\x2e\xc2\x77\x03\xe0\xbb\xe5\x2c\xbd\x4a\xbf\xee\x1f\xe9\xaf\x67\x63\x3e\x3e\x03\x00\x00\xff\xff\x51\x05\x16\x8f\x25\x01\x00\x00" func idtablestakingDelegationGet_delegator_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -2700,11 +2640,11 @@ func idtablestakingDelegationGet_delegator_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0xec, 0xa2, 0x5c, 0x37, 0x3d, 0x48, 0x22, 0x10, 0x24, 0xc6, 0xbc, 0x82, 0x80, 0x47, 0xaf, 0xd2, 0xac, 0xbf, 0xb3, 0xc5, 0x14, 0x25, 0x8f, 0x5b, 0x8f, 0x80, 0x5e, 0x86, 0x97, 0x9e, 0x72}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x21, 0xa8, 0x94, 0x85, 0xd9, 0xe1, 0x14, 0x1f, 0x3d, 0x6a, 0x33, 0xd5, 0xbe, 0xc1, 0x84, 0x39, 0xc8, 0x4a, 0x14, 0x55, 0x44, 0xdc, 0xa6, 0x75, 0xae, 0x4f, 0xff, 0xc4, 0xc4, 0xeb, 0xd6}} return a, nil } -var _idtablestakingDelegationGet_delegator_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\xc1\x6a\xf3\x30\x10\x84\xef\x7a\x8a\xc1\x87\x1f\x1b\x7e\xec\x7b\x68\x1b\x42\x43\x21\x97\x52\x68\x5e\x60\x2d\xad\x13\xb5\x8a\xd6\x48\x6b\x72\x08\x79\xf7\x92\xb8\x89\x53\x1a\xa8\x4e\xcb\xee\x30\xdf\x68\xfc\xae\x97\xa4\x78\x09\xb2\x5f\x2d\xd7\xd4\x06\x7e\x57\xfa\xf4\x71\x83\x2e\xc9\x0e\xc5\xef\x43\x61\x4c\xd3\x60\xbd\xf5\x19\xd9\x26\xdf\x2b\x36\xac\x19\x14\x02\x74\xcb\xf0\xb1\x13\x50\x2b\x83\x82\xe0\x38\xf0\x86\x54\x12\x28\x3a\x24\xd6\x21\xc5\x0c\xaf\xc6\x90\xb5\x9c\x73\x49\x21\x54\xe8\x86\x88\x1d\xf9\x58\x92\x73\x89\x73\x9e\x61\x31\x0e\xd5\xec\x4e\xb0\x7a\x79\x31\x5d\x9d\x50\x07\x63\x00\x20\xb0\xde\xd0\x1e\x4f\x99\x16\xd6\xca\x10\xf5\xe2\x5a\x9d\x75\xa7\x57\x5b\xea\xa9\xf5\xc1\xab\xe7\x5c\xb7\x92\x92\xec\x1f\xfe\x1d\xee\xa0\x5e\xc5\xf1\x15\xf7\x36\xb4\xc1\xdb\xe3\x53\xd9\xf4\xe7\xa9\xe9\x82\xec\xbf\x95\x57\xd1\x44\x99\xcf\xd1\x53\xf4\xb6\x2c\x9e\x65\x08\x0e\x51\x14\x23\x0b\x89\x3b\x4e\x1c\x2d\x43\xe5\x26\xb5\xb4\x1f\x6c\xb5\xa8\xc6\x1f\x8d\x6d\xfd\x59\x40\x19\xc5\xf1\x6a\x39\x9b\x7c\xea\x71\xf3\x7f\xda\xfc\x3c\x7b\x57\x99\xa3\xf9\x0a\x00\x00\xff\xff\xb9\xc7\x94\xa1\xf9\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x4f\x4b\xc3\x40\x10\xc5\xef\xfb\x29\x1e\x3d\x48\x02\xd2\x78\x2e\x6a\x89\x4d\x85\x80\x14\xb1\xb9\x78\xdc\x64\x27\xe9\xea\x76\x27\x6c\x26\x54\x29\xfd\xee\xd2\xc6\xfe\x11\x0a\xee\x69\x78\xfb\x78\xbf\x99\x67\xd7\x2d\x07\xc1\xb3\xe3\x4d\x9e\x15\xba\x74\xb4\x14\xfd\x69\x7d\x83\x3a\xf0\x1a\x77\x5f\x79\x36\x5f\x14\x79\xf1\x5e\xa4\x4f\x2f\xf3\x34\xcb\xde\xe6\xcb\xa5\x52\x49\x82\x62\x65\x3b\x74\x55\xb0\xad\xa0\x21\xe9\xa0\x9d\x83\xac\x08\xd6\xd7\x0c\x5d\x72\x2f\xd0\x30\xe4\xa8\xd1\xc2\x01\xda\x1b\x04\x92\x3e\xf8\x0e\x56\x94\x6a\xfb\x12\x75\xef\xb1\xd6\xd6\x47\xda\x98\x40\x5d\x37\x41\x3a\x0c\xf1\xe4\xca\x4a\xe3\xec\x18\x96\xef\x11\x5b\xa5\x00\xc0\x91\x5c\x50\x1e\xf6\xbb\xa4\x55\xc5\xbd\x97\x63\x6a\x7c\xf0\xed\xdf\xb8\x21\x99\xe9\x56\x97\xd6\x59\xf9\xbe\xbf\xd9\x5e\x81\x2c\xd8\xd0\x09\xf4\xda\x97\xce\x56\xbb\xc7\x28\x69\x0f\x53\x52\x3b\xde\xfc\x3a\x4f\xa6\x8b\xfc\x92\x43\xe0\x4d\x74\x56\xa6\x53\xb4\xda\xdb\x2a\x1a\xcd\xb8\x77\x06\x9e\x05\x83\x09\x81\x6a\x0a\xe4\x2b\x82\xf0\xc5\x05\x5c\x7e\x50\x25\xa3\x78\xb8\x6e\x68\xec\xdf\x32\x22\xcf\x86\xf2\x6c\x72\xce\x19\x0f\xca\xed\x59\xf9\xfb\x6d\x4d\xac\x76\xea\x27\x00\x00\xff\xff\x48\xe7\x60\xcd\xff\x01\x00\x00" func idtablestakingDelegationGet_delegator_info_from_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -2720,11 +2660,11 @@ func idtablestakingDelegationGet_delegator_info_from_addressCdc() (*asset, error } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_info_from_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x6d, 0xf0, 0x20, 0xdc, 0x44, 0xad, 0x75, 0x83, 0x22, 0xdd, 0xd0, 0xfe, 0x92, 0x57, 0x2d, 0xf0, 0xc2, 0x14, 0x1b, 0x47, 0x3a, 0xe7, 0x2c, 0xc6, 0xc0, 0xeb, 0x5b, 0xa3, 0xba, 0x2e, 0xa9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa, 0x76, 0xb3, 0x28, 0xb8, 0xcd, 0xae, 0x9, 0x22, 0x66, 0x1, 0x9, 0x23, 0x30, 0xd7, 0x40, 0x20, 0x33, 0x70, 0x33, 0xec, 0x8, 0x11, 0x57, 0x5f, 0xab, 0x83, 0x13, 0x9, 0xa3, 0xb2, 0xa9}} return a, nil } -var _idtablestakingDelegationGet_delegator_requestCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4a\xc3\x40\x10\x86\xef\xfb\x14\x3f\x3d\x35\x20\x2d\xa8\x78\x28\x78\x0b\x85\x5c\x6d\xf2\x00\xd3\x64\x36\x5d\xba\x99\xa9\xbb\xb3\x28\x88\xef\x2e\x6d\x6d\x15\xed\x69\x98\x99\x9f\xef\xe7\x0b\xd3\x41\x93\x61\x1d\xf5\xad\xa9\x5b\xda\x46\xde\x18\xed\x83\x8c\xf0\x49\x27\xcc\xfe\x3f\x66\xce\x2d\x97\x68\x77\x21\x23\xf7\x29\x1c\x0c\x89\xad\x24\xc9\xb0\x1d\x23\xf1\x6b\xe1\x6c\x3c\xa0\x48\xfe\x26\x6d\x29\x92\xf4\x0c\xf5\x20\x0c\x1c\x79\x24\xd3\xe4\x1c\xf5\x3d\xe7\x3c\xa7\x18\x2b\xf8\x22\x98\x28\xc8\x5c\x74\xe0\xa6\x5e\x61\x63\x29\xc8\x78\xf7\x93\x3f\x1e\xbb\x46\xec\xe1\xbe\x5a\xa1\x5b\x87\xf7\xa7\x47\x7c\x38\x00\x88\x6c\xc7\x58\x23\x5e\xf1\x7c\x43\x65\x51\x5f\x19\xe2\xf5\xda\x70\x9e\x7f\x1a\x7e\x2d\xd5\x09\x7e\x96\xbb\xf0\x17\xa6\x7b\x96\xfc\x72\xb1\x6c\xb5\x3b\x69\xb2\xfb\xfc\x0a\x00\x00\xff\xff\xac\xc1\x7c\x54\x4a\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_requestCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xde\xd1\x82\xb4\xa2\xe2\xa1\xe0\xa1\xb2\x2d\x2c\x88\x87\x66\x73\xf0\xb8\x69\x26\xe9\xd2\x64\x26\xee\x4e\xb0\x20\xfe\x77\x69\x6b\xab\x88\xa7\x61\x1e\x8f\xef\xf1\xc5\x7e\x90\xa4\x58\x75\xf2\xee\xac\x0f\x55\x47\x85\x86\x5d\xe4\x16\x4d\x92\x1e\x37\x7b\x67\x97\x2f\xde\xf9\x57\xbf\x78\x7a\x5e\x2e\xac\x5d\x2f\x8b\xc2\x98\xd9\x0c\x7e\x1b\x33\xf2\x26\xc5\x41\x91\x48\xc7\xc4\x19\xba\x25\x24\x7a\x1b\x29\x2b\xd5\x18\x39\x7f\xb3\xaa\xd0\x05\xde\x10\xa4\x41\x40\x4d\x1d\xb5\x41\x25\x19\x33\x8c\x15\x9a\x91\xd1\x87\xc8\x57\x2c\x35\x39\x3b\x47\xa1\x29\x72\x7b\xfd\xd3\x3b\x84\xa5\x63\xbd\xbb\x9d\xcc\x51\xae\xe2\xfe\xe1\x1e\x1f\x06\x00\x3a\xd2\x43\xcd\x71\x23\x78\xfc\x47\x62\x6a\x2f\x0c\x6e\xe4\xb2\x70\xba\x7f\x16\x7e\x3d\x93\x23\xfc\x24\x75\xe6\x4f\x55\x76\xc4\x79\x7d\xb6\xf3\x52\x1e\xf5\xc8\x7c\x7e\x05\x00\x00\xff\xff\xa8\x39\xca\x4b\x44\x01\x00\x00" func idtablestakingDelegationGet_delegator_requestCdcBytes() ([]byte, error) { return bindataRead( @@ -2740,11 +2680,11 @@ func idtablestakingDelegationGet_delegator_requestCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_request.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb3, 0xbb, 0x41, 0xe6, 0xc4, 0x7c, 0xfd, 0xd9, 0xbd, 0x61, 0xf5, 0x8b, 0xe7, 0x6b, 0x66, 0x9e, 0xb3, 0x1c, 0x8b, 0xe3, 0x1f, 0xcf, 0x60, 0x5b, 0x7d, 0x90, 0x27, 0x78, 0xc9, 0x89, 0x7c, 0x74}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0x6, 0x0, 0x57, 0x46, 0x94, 0xda, 0x7f, 0x98, 0xf0, 0x3a, 0xb8, 0xa9, 0xe7, 0xe4, 0x9a, 0xea, 0xbe, 0xf6, 0xe9, 0xbe, 0x9e, 0x8a, 0x20, 0xad, 0x44, 0x2, 0x5d, 0x20, 0xa9, 0x12, 0xb8}} return a, nil } -var _idtablestakingDelegationGet_delegator_rewardedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x1e\x3d\x35\x20\x2d\xa8\x78\x28\x78\x0b\x85\x5c\x6d\xfb\x03\xa6\xc9\x6c\xba\x74\x33\x53\x66\xa7\x54\x10\xff\xbb\xc4\x68\x15\xed\x69\xd9\x37\x8f\xef\xf1\xa5\xe1\xa4\xe6\x58\x67\xbd\x34\xf5\x96\xf6\x99\x37\x4e\xc7\x24\x3d\xa2\xe9\x80\xd9\xff\xc3\x2c\x84\xe5\x12\xdb\x43\x2a\x28\xad\xa5\x93\xc3\xd8\xcf\x26\x05\x7e\x60\xec\x29\x93\xb4\x0c\x8d\x30\xbe\x90\x75\xdc\xc1\xf5\xc8\x52\xc6\x88\xd0\x71\xe6\x9e\x5c\x2d\x04\x6a\x5b\x2e\x65\x4e\x39\x57\x88\x67\xc1\x40\x49\xe6\xa2\x1d\x37\xf5\x0a\x1b\xb7\x24\xfd\xdd\x4f\x7f\x0c\x77\x8d\xf8\xc3\x7d\xb5\xc2\x6e\x9d\x5e\x9f\x1e\xf1\x16\x00\x20\xb3\x8f\xb5\x46\xa2\xe2\xf9\x86\xc9\xa2\xbe\x32\x24\xea\x75\x61\x7a\xff\x2c\xfc\xfa\x54\x9f\xf0\xc9\xed\x9b\xbf\x98\x54\x5e\xbe\xcc\xc2\xfb\x47\x00\x00\x00\xff\xff\x43\x2a\x44\xd3\x3f\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_rewardedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xde\xd1\x82\xb4\xa2\xe2\xa1\xe0\xa1\xb2\x29\x2c\x88\x87\x66\x7b\xf0\xb8\x69\x66\xd3\xa5\x9b\xd9\xb0\x99\xd0\x82\xf8\xdf\x25\x46\xa3\x88\xa7\x61\x1e\x8f\xef\xf1\x85\xb6\x4b\x59\xb0\x8d\xe9\x6c\xb4\x75\x55\xa4\x52\xdc\x29\x70\x03\x9f\x53\x8b\x9b\x8b\xd1\xc5\x8b\x35\xf6\xd5\x6e\x9e\x9e\x8b\x8d\xd6\xbb\xa2\x2c\x95\x5a\xad\x60\x8f\xa1\x47\x7f\xc8\xa1\x13\x64\x92\x21\x73\x0f\x39\x12\x2a\x17\x1d\x1f\x08\xc9\x23\xd3\xd9\xe5\x9a\x6a\x48\x3a\x11\xf7\x63\xe4\x50\x53\xa4\xc6\x49\xca\x4a\x75\x43\x05\x3f\x30\x5a\x17\xf8\x8a\x53\x4d\x46\xaf\x51\x4a\x0e\xdc\x5c\xff\xf4\xc6\x70\x6f\x58\xee\x6e\x17\x6b\xec\xb7\xe1\xf2\x70\x8f\x37\x05\x00\x91\x64\xac\x19\xf6\x09\x8f\xff\x38\x2c\xf5\xcc\x60\x9f\xe6\x85\xe9\xfe\x59\xf8\xf5\x2c\x3e\xe1\x93\xd3\x37\x7f\x39\x29\xec\xbe\x8c\xd4\xfb\x47\x00\x00\x00\xff\xff\x68\x0c\xb5\xcb\x39\x01\x00\x00" func idtablestakingDelegationGet_delegator_rewardedCdcBytes() ([]byte, error) { return bindataRead( @@ -2760,11 +2700,11 @@ func idtablestakingDelegationGet_delegator_rewardedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_rewarded.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x49, 0x68, 0x38, 0xca, 0x24, 0xda, 0x96, 0x6b, 0xc3, 0x6d, 0x21, 0xa3, 0xf8, 0x87, 0x48, 0x9, 0x2b, 0x15, 0x80, 0xf6, 0x53, 0x30, 0xce, 0x89, 0x5d, 0x88, 0xbe, 0xba, 0xd, 0xab, 0x52, 0x88}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0xe2, 0x1d, 0xb1, 0x8f, 0x92, 0x3c, 0xb3, 0x88, 0xe3, 0xf7, 0x4a, 0xc, 0xdd, 0x45, 0xa6, 0x56, 0x82, 0x78, 0xe4, 0x42, 0xbb, 0xa3, 0xf8, 0x81, 0xc0, 0x20, 0x10, 0x3b, 0x3f, 0x1d, 0x5e}} return a, nil } -var _idtablestakingDelegationGet_delegator_stakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\x21\xa7\x18\x4a\x02\x6d\xe9\x21\xd0\x9b\x09\xf8\xec\xe4\x03\x36\xf2\xca\x11\x96\x77\x83\xb4\xa1\x85\xd2\x7f\x2f\x8e\xa9\x5b\xda\x9c\x84\x66\x87\x37\xbc\x38\x5e\x34\x1b\xf6\x49\xdf\x9a\xfa\x40\xa7\xc4\xad\xd1\x10\xa5\x47\xc8\x3a\x62\xf5\xff\xb0\x72\x6e\xbb\xc5\xe1\x1c\x0b\x8a\xcf\xf1\x62\xc8\x6c\xd7\x2c\x05\x76\x66\x9c\x28\x91\x78\x86\x06\x14\xa3\x81\x3b\x98\x0e\x2c\x65\x0a\x08\x1d\x27\xee\xc9\x34\x3b\x47\xde\x73\x29\x6b\x4a\xa9\x42\xb8\x0a\x46\x8a\xb2\x16\xed\xb8\xa9\x77\x68\x2d\x47\xe9\x1f\x7e\xfa\x53\x78\x6c\xc4\x9e\x1e\xab\x1d\x8e\xfb\xf8\xfe\xf2\x8c\x0f\x07\x00\x89\x6d\xaa\x35\x12\x14\xaf\x77\x3c\x36\xf5\xc2\x90\xa0\xcb\xc2\xfc\xfe\x59\xf8\xf5\xa9\x6e\xf0\xd9\xec\x9b\xbf\x99\x55\xda\x9b\x97\xfb\xfc\x0a\x00\x00\xff\xff\xb6\x0e\x61\x8e\x3b\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_stakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\x03\x31\x10\x85\xef\xf9\x15\xef\x68\x41\x5a\x51\xf1\x50\xf0\x50\x49\x0b\x01\xf1\xe0\xa6\x07\x8f\xd9\xee\x64\x1b\x36\x3b\x59\x92\x59\x2c\x88\xff\x5d\xb6\x8b\x55\xc4\xd3\x30\x8f\xc7\xf7\xf8\x42\x3f\xa4\x2c\xd8\xc5\xf4\x6e\xb4\x75\x75\xa4\x4a\x5c\x17\xb8\x85\xcf\xa9\xc7\xcd\xc9\xe8\xed\x8b\x35\xf6\xcd\x6e\x9e\x9e\xb7\x1b\xad\x5f\xb7\x55\xa5\xd4\x6a\x05\x7b\x0c\x05\xe5\x90\xc3\x20\xc8\x24\x63\xe6\x02\x39\x12\x6a\x17\x1d\x1f\x08\xc9\xa3\x88\xeb\xa8\x81\xa4\x8e\xb8\x4c\x81\x43\x43\x91\x5a\x27\x29\x2b\x35\x8c\x35\xfc\xc8\xe8\x5d\xe0\x2b\x4e\x0d\x19\xbd\x46\x25\x39\x70\x7b\xfd\xd3\x9b\xc2\xbd\x61\xb9\xbb\x5d\xac\xb1\xdf\x85\xd3\xc3\x3d\x3e\x14\x00\x44\x92\xa9\x66\xd8\x27\x3c\xfe\x63\xb0\xd4\x17\x06\xfb\x74\x59\x98\xef\x9f\x85\x5f\xcf\xe2\x0c\x9f\x8d\xbe\xf9\xcb\x59\xa1\x3a\xfb\xa8\xcf\xaf\x00\x00\x00\xff\xff\xb5\xc8\x55\xe1\x35\x01\x00\x00" func idtablestakingDelegationGet_delegator_stakedCdcBytes() ([]byte, error) { return bindataRead( @@ -2780,11 +2720,11 @@ func idtablestakingDelegationGet_delegator_stakedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_staked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0xa3, 0x50, 0xb5, 0xe3, 0xfd, 0x6a, 0x86, 0xd8, 0xd, 0x25, 0x9d, 0x1, 0xff, 0xb6, 0x29, 0x19, 0xea, 0xb3, 0x5e, 0x31, 0x71, 0x98, 0xc9, 0x61, 0x24, 0x8c, 0xc6, 0x53, 0x15, 0xa5, 0xee}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfb, 0x1a, 0x98, 0xb2, 0xb2, 0x34, 0xae, 0x31, 0x6d, 0x97, 0xe8, 0xb4, 0x15, 0x21, 0x0, 0xd9, 0xcc, 0x76, 0xb5, 0x42, 0x72, 0xc5, 0x28, 0x29, 0x17, 0x94, 0x27, 0x49, 0x89, 0x4a, 0x83, 0xbb}} return a, nil } -var _idtablestakingDelegationGet_delegator_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x1e\x3d\x35\x20\x2d\xa8\x78\x28\x78\x0b\x85\x9c\xdb\xfc\x80\xe9\x66\x36\x5d\xb2\x99\x29\xbb\x13\x14\xc4\xff\x2e\x31\x18\x45\x3d\x2d\xfb\xe6\xf1\x3d\xbe\x38\xde\x34\x1b\x8e\x49\x5f\x9a\xfa\x4c\x97\xc4\x27\xa3\x21\x4a\x8f\x90\x75\xc4\xe6\xef\x61\xe3\xdc\x7e\x8f\xf3\x35\x16\x14\x9f\xe3\xcd\x90\xd9\xa6\x2c\x05\x76\x65\x5c\x28\x91\x78\x86\x06\x4c\x92\xd4\x0f\xdc\xc1\x74\x60\x29\x73\x44\xe8\x38\x71\x4f\xa6\xd9\x39\xf2\x9e\x4b\xd9\x52\x4a\x15\xc2\x24\x18\x29\xca\x56\xb4\xe3\xa6\x3e\xe0\x64\x39\x4a\x7f\xf7\xdd\x9f\xc3\xb6\x11\x7b\xb8\xaf\x0e\x68\x8f\xf1\xf5\xe9\x11\x6f\x0e\x00\x12\xdb\x5c\x6b\x24\x28\x9e\xff\x31\xd9\xd5\x2b\x43\x82\xae\x0b\xcb\xfb\x6b\xe1\xc7\xa7\xfa\x84\x2f\x6e\x5f\xfc\xdd\xa2\xd2\x4a\x31\x1a\xb8\x73\xef\x1f\x01\x00\x00\xff\xff\x17\x71\xde\xe9\x3f\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4a\xf4\x40\x10\x84\xef\xf3\x14\x75\xfc\x17\x7e\x76\x45\xc5\xc3\x82\x87\x95\xc9\xc2\x80\x78\x30\xc9\xc1\xe3\x24\xe9\x64\x87\x4c\xba\xc3\xa4\x83\x0b\xe2\xbb\x4b\x0c\xae\x22\x9e\x9a\x2e\x8a\xaf\xf8\xc2\x30\x4a\x52\x1c\xa3\xbc\x3a\x5b\xf8\x2a\x52\xae\xbe\x0f\xdc\xa1\x4d\x32\xe0\xea\xec\x6c\xf6\x54\xb8\xe2\xa5\x38\x3c\x3c\x66\x07\x6b\x9f\xb3\x3c\x37\x66\xb7\x43\x71\x0a\x13\xa6\x3a\x85\x51\x91\x48\xe7\xc4\x13\xf4\x44\xa8\x7c\xf4\x5c\x13\xa4\xc5\xcc\x51\xea\x9e\x1a\xa8\xf4\xc4\xd3\x12\x79\x34\x14\xa9\xf3\x2a\xc9\x98\x71\xae\xd0\xce\x8c\xc1\x07\xfe\xc7\xd2\x90\xb3\x7b\xe4\x9a\x02\x77\xff\xbf\x7b\x4b\x58\x3a\xd6\x9b\xeb\xcd\x1e\xe5\x31\x9c\xef\x6e\xf1\x66\x00\x20\x92\x2e\x35\xc7\xad\xe0\xfe\x0f\x87\xad\xbd\x30\xb8\x95\xcb\xc2\x7a\x7f\x2d\xfc\x78\x36\x9f\xf0\xd5\xe9\x8b\xbf\x5d\x15\x4a\x9e\xd4\xf7\xd4\x98\xf7\x8f\x00\x00\x00\xff\xff\x38\x38\xde\x6a\x39\x01\x00\x00" func idtablestakingDelegationGet_delegator_unstakedCdcBytes() ([]byte, error) { return bindataRead( @@ -2800,11 +2740,11 @@ func idtablestakingDelegationGet_delegator_unstakedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_unstaked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0xc8, 0x77, 0xab, 0xbb, 0xa7, 0xd3, 0xbf, 0xfd, 0x5a, 0xfa, 0x9a, 0xce, 0x3f, 0xb2, 0x23, 0x98, 0x64, 0x8b, 0x20, 0x2a, 0x9f, 0x26, 0xb6, 0x78, 0xe5, 0xc, 0x1a, 0x6f, 0xa7, 0xf9, 0xcf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd2, 0xbf, 0x6e, 0x9a, 0xf7, 0x0, 0xbe, 0xa, 0x1e, 0x24, 0x27, 0xfd, 0x32, 0x5a, 0xe9, 0x93, 0xd, 0x78, 0x58, 0x6b, 0x3b, 0x89, 0x34, 0x82, 0x8, 0x4a, 0x9e, 0x8a, 0x86, 0xe9, 0x4b, 0xd2}} return a, nil } -var _idtablestakingDelegationGet_delegator_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\x03\x31\x10\x85\xef\xf9\x15\x8f\x9e\xba\x20\x2d\xa8\x78\x28\x78\x5b\x0a\x39\xb7\xfb\x03\xa6\xe9\x64\x1b\x9a\x9d\x29\xc9\x2c\x0a\xe2\x7f\x97\x75\x6d\x15\xf5\x14\xf2\xe6\xf1\x3d\xbe\x34\x5c\xb4\x18\xb6\x59\x5f\x7c\xbb\xa7\x43\xe6\x9d\xd1\x39\x49\x8f\x58\x74\xc0\xe2\xef\x61\xe1\xdc\x7a\x8d\xfd\x29\x55\xd4\x50\xd2\xc5\x50\xd8\xc6\x22\x15\x76\x62\x1c\x28\x93\x04\x86\x46\x8c\x52\xbf\x50\xa6\x67\x96\x3a\x65\x84\x23\x67\xee\xc9\xb4\x38\x47\x21\x70\xad\x4b\xca\xb9\x41\x1c\x05\x03\x25\x59\x8a\x1e\xd9\xb7\x1b\xec\xac\x24\xe9\xef\xbe\xfb\x53\xd8\x79\xb1\x87\xfb\x66\x83\x6e\x9b\x5e\x9f\x1e\xf1\xe6\x00\x20\xb3\x4d\x35\x2f\x51\xf1\xfc\x8f\xca\xaa\xbd\x31\x24\xea\x6d\x61\x7e\x7f\x2d\xfc\xf8\x34\x9f\xf0\x59\xee\xca\x5f\xcd\x2a\xdd\x55\xcd\xbd\x7f\x04\x00\x00\xff\xff\x4e\x43\x93\xce\x41\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4a\x33\x31\x14\x85\xf7\x79\x8a\xb3\xfc\x0b\x3f\xad\xa8\xb8\x28\xb8\xa8\x64\x0a\x01\x71\xe1\x64\x16\x2e\x33\x6d\x32\x0d\xcd\xdc\x3b\x24\x77\xb0\x20\xbe\xbb\x8c\x63\xab\x88\xab\xcb\x3d\x1c\xbe\xc3\x17\xfb\x81\xb3\x60\x9b\xf8\xd5\x68\xeb\xda\xe4\x6b\x71\xc7\x48\x1d\x42\xe6\x1e\x57\x27\xa3\xab\x27\x6b\xec\x8b\xdd\x3c\x3c\x56\x1b\xad\x9f\xab\xba\x56\x6a\xb5\x82\x3d\xc4\x82\xb2\xcb\x71\x10\x64\x2f\x63\xa6\x02\x39\x78\xb4\x2e\x39\xda\x79\x70\xc0\x48\xe5\x0b\x26\x7c\xf4\x54\xa6\xcc\x61\xef\x93\xef\x9c\x70\x56\x6a\x18\x5b\x84\x91\xd0\xbb\x48\xff\x88\xf7\xde\xe8\x35\x6a\xc9\x91\xba\xff\xdf\xbd\x29\x6c\x0c\xc9\xcd\xf5\x62\x8d\x66\x1b\x4f\x77\xb7\x78\x53\x00\x90\xbc\x4c\x35\x43\x81\x71\xff\x87\xc4\x52\x5f\x18\x14\xf8\xb2\x30\xdf\x5f\x0b\x3f\x9e\xc5\x27\x7c\x96\x3a\xf3\x97\xb3\x42\x73\x56\x52\xef\x1f\x01\x00\x00\xff\xff\x59\x64\x08\x22\x3b\x01\x00\x00" func idtablestakingDelegationGet_delegator_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2820,11 +2760,11 @@ func idtablestakingDelegationGet_delegator_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7e, 0x24, 0x1a, 0xd4, 0x50, 0x1c, 0x82, 0xa3, 0x78, 0x5f, 0xcf, 0x98, 0x34, 0xf2, 0x69, 0x64, 0x7d, 0x4e, 0xb2, 0xf8, 0x97, 0x2b, 0x6d, 0xd5, 0x4d, 0x7f, 0x79, 0x31, 0xfb, 0xa5, 0x97, 0xda}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0xcc, 0xb4, 0xc7, 0x5b, 0x20, 0xa9, 0x46, 0xd8, 0x41, 0x41, 0x21, 0x21, 0x9e, 0x97, 0x29, 0x8a, 0x19, 0x72, 0x4e, 0x64, 0x3, 0x3a, 0xd5, 0x46, 0x41, 0xa6, 0x9f, 0xdf, 0x8d, 0xbb, 0xf6}} return a, nil } -var _idtablestakingDelegationGet_delegator_unstaking_requestCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x1e\x3d\x35\x20\x2d\xa8\x78\x28\x78\x0b\x85\x5c\x6d\xf2\x03\xa6\xc9\x6c\xba\x74\x33\x53\x77\x27\x28\x88\xff\x5d\xd2\x68\x14\xf5\xb4\xec\x9b\xc7\xf7\xf8\xc2\x70\xd1\x64\xd8\x47\x7d\xa9\xca\x9a\x8e\x91\x0f\x46\xe7\x20\x3d\x7c\xd2\x01\xab\xbf\x87\x95\x73\xdb\x2d\xea\x53\xc8\xc8\x6d\x0a\x17\x43\x62\x1b\x93\x64\xd8\x89\x71\xa4\x48\xd2\x32\xd4\x63\x94\xfc\x89\x32\x3d\xb3\xe4\x29\x23\x74\x1c\xb9\x27\xd3\xe4\x1c\xb5\x2d\xe7\xbc\xa6\x18\x0b\xf8\x51\x30\x50\x90\xb5\x68\xc7\x55\xb9\xc3\xc1\x52\x90\xfe\xe6\xbb\x3f\x85\x4d\x25\x76\x77\x5b\xec\xd0\xec\xc3\xeb\xc3\x3d\xde\x1c\x00\x44\xb6\xa9\x56\x89\x57\x3c\xfe\xa3\xb2\x29\x17\x86\x78\x5d\x16\xe6\xf7\xd7\xc2\x8f\x4f\x71\x85\xcf\x72\x5f\xfc\xcd\xac\xf2\xc4\xcf\x23\x67\xe3\xae\xd6\xe6\x6a\xc9\xee\xfd\x23\x00\x00\xff\xff\x1d\xef\xbb\x1e\x4a\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_unstaking_requestCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4a\xf3\x40\x14\x85\xf7\xf3\x14\x67\xf9\x17\x7e\x5a\x51\x71\x51\x70\x51\x99\x14\x06\xc4\x45\x33\x59\xb8\x9c\x34\x37\xe9\xd0\xe4\x4e\x9c\xb9\x83\x05\xf1\xdd\x25\x8d\x56\x11\x57\x97\x7b\x38\x7c\x87\xcf\x0f\x63\x88\x82\x6d\x1f\x5e\x8d\xb6\xae\xee\xa9\x14\x77\xf4\xdc\xa1\x8d\x61\xc0\xd5\xc9\xe8\xe2\xc9\x1a\xfb\x6c\x37\x0f\x8f\xc5\x46\xeb\x5d\x51\x96\x4a\xad\x56\xb0\x07\x9f\x90\xf6\xd1\x8f\x82\x48\x92\x23\x27\xc8\x81\x50\xbb\xde\xf1\x9e\x10\x5a\x64\x4e\x9f\x30\x09\x47\xe2\x34\x65\x0e\x0d\xf5\xd4\x39\x09\x51\xa9\x31\xd7\x68\x33\x63\x70\x9e\xff\x71\x68\xc8\xe8\x35\x4a\x89\x9e\xbb\xff\xdf\xbd\x29\xac\x0c\xcb\xcd\xf5\x62\x8d\x6a\xeb\x4f\x77\xb7\x78\x53\x00\xd0\x93\x4c\x35\xc3\x6d\xc0\xfd\x1f\x12\x4b\x7d\x61\x70\x1b\x2e\x0b\xf3\xfd\xb5\xf0\xe3\x59\x9c\xe1\xb3\xd4\x17\x7f\x39\x2b\xec\xe8\x25\x53\x12\x6a\x6c\xa8\xce\x76\xa4\xde\x3f\x02\x00\x00\xff\xff\xd5\x52\xe0\xa9\x44\x01\x00\x00" func idtablestakingDelegationGet_delegator_unstaking_requestCdcBytes() ([]byte, error) { return bindataRead( @@ -2840,11 +2780,11 @@ func idtablestakingDelegationGet_delegator_unstaking_requestCdc() (*asset, error } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_unstaking_request.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb7, 0xe, 0x2e, 0xcf, 0x7d, 0x6e, 0x43, 0x3d, 0x3f, 0x1c, 0x19, 0x96, 0x15, 0x58, 0x75, 0x47, 0x8, 0x3c, 0xc1, 0xd, 0x7, 0x76, 0x5f, 0x45, 0x84, 0xc5, 0x71, 0xa6, 0x4e, 0xc1, 0x3, 0x6a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0x11, 0x6f, 0xac, 0xf2, 0xc9, 0x38, 0x6a, 0x2f, 0x9d, 0x96, 0xd5, 0xe2, 0xfd, 0x20, 0x61, 0x12, 0xcd, 0xc8, 0xa8, 0x97, 0x82, 0x66, 0xa4, 0xec, 0xda, 0xde, 0xae, 0xdb, 0xc0, 0x2b, 0xf1}} return a, nil } -var _idtablestakingDelegationRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xcd\x8e\x9b\x30\x10\xbe\xf3\x14\xa3\x1c\x22\x90\x12\xb8\x54\x3d\x20\xba\xab\x8a\x28\xd2\x4a\xd5\x76\xd5\x6c\xbb\xe7\xc1\x0c\xe0\x2e\xd8\xc8\x1e\x4a\xa5\x55\xde\xbd\x32\x24\x5e\x68\x73\xa8\x2f\x16\xf8\x9b\xef\x67\x66\x64\xd7\x6b\xc3\x70\x6c\xf5\xf8\x70\x78\xc6\xa2\xa5\x13\xe3\xab\x54\x35\x54\x46\x77\xb0\xf9\xf7\x61\x13\x2c\x6a\x9e\xf5\x2b\xa9\x05\x74\xfa\x7e\x47\x0c\xaa\x96\x45\x4b\x2b\xd4\xf2\xdf\x26\x08\xd8\xa0\xb2\x28\x58\x6a\x15\x2a\x5d\xd2\xc3\x21\x85\x13\x1b\xa9\xea\x1d\x60\xa7\x07\xc5\x29\x7c\x3f\xca\xdf\x1f\x3f\x44\xf0\x16\x04\x00\x00\xbd\xa1\x1e\x0d\x85\x28\x04\xa7\x80\x03\x37\xe1\x89\xb5\xc1\x9a\x76\x90\x63\x8f\x85\x6c\x25\x4b\xb2\x11\x6c\x3f\x0b\xe1\x28\x7c\xa9\x3b\x2d\x31\x54\x57\xaf\xdf\xa8\x82\x4f\xe0\x98\x62\x3b\x73\xc4\x85\x36\x46\x8f\xd9\xc4\xbb\x72\x1b\xbf\x48\x6e\x4a\x83\x63\x04\x5b\x1f\x36\xfe\x81\x43\xcb\x77\xa1\x4b\x97\x42\x72\x21\x49\xbc\xc0\xf4\x1c\x79\x71\x77\xee\xef\xa1\x47\x25\x45\xb8\xc9\xf5\xd0\x96\xa0\x34\xc3\x2c\x0a\x86\x2a\x32\xa4\x04\x01\x6b\x38\x7e\xf9\xfa\x02\x53\xfd\x26\x7a\xb7\x9f\x24\x90\x1b\x42\x26\x40\x50\x34\x42\x49\x2d\xd5\xc8\xda\x80\x2e\x7e\x92\x60\xa8\xb4\x01\x6e\x08\x5c\x37\x57\xa1\x15\x8d\x07\x0f\xce\xf6\x37\x86\x1e\x1b\xaa\xa5\x65\x32\x8f\x0b\xa8\x1f\xcb\x7c\xef\x80\x5d\x2e\x9b\xeb\xae\x93\xcc\x54\xa6\x90\xed\x97\xfd\x8c\xc7\x4b\x9b\xc2\xeb\xfc\xe6\x3b\x5a\x87\x70\x23\xa3\xc9\xe8\xdf\x09\x3c\x6a\x35\x16\x8b\xbf\x28\xcc\xf6\xcb\x10\xce\x4a\x7a\x2b\x86\x47\x5c\xf6\xe2\x09\xb9\x89\xd6\x1b\xe0\x45\x73\xec\xaf\x1b\x20\x16\xcb\xe3\x75\xa5\xb5\x03\x65\xdb\xb7\x1b\x32\x8f\xba\x24\x2f\xf5\x34\x14\xad\x14\xe7\xbb\xf0\xbf\xfd\xac\x62\xae\xb4\x7b\xc7\x65\x9b\x70\x69\x72\x07\xc8\x29\x24\xd3\x93\x98\xf6\xeb\xc2\xee\xc9\x67\xc6\x73\x70\xfe\x13\x00\x00\xff\xff\xbb\xd1\x84\x7f\xd5\x03\x00\x00" +var _idtablestakingDelegationRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\x41\x6f\x9b\x4c\x10\x86\xef\xfc\x8a\x51\x0e\x11\x96\x62\xf3\x1d\x3e\xf5\x80\x68\x22\xd7\xd8\x92\xd5\xc8\x89\x02\x6d\xd5\xe3\x7a\x19\xf0\xd6\xb0\x83\x86\xa1\x44\x8a\xfc\xdf\xab\xc5\xf5\x96\x54\xbe\x74\x2f\x8b\xc4\x33\xb3\xcf\x3b\x63\x9a\x96\x58\x60\x53\xd3\xb0\x4d\x73\xb5\xaf\x31\x13\x75\x34\xb6\x82\x92\xa9\x81\xff\x5e\xb7\xe9\x7a\x97\x6f\xf3\xef\xf9\xf2\xd3\xe3\x7a\x99\xa6\x2f\xeb\x2c\x0b\x26\x55\x39\x1d\xd1\x5e\xe0\xcd\xe3\xd3\xb7\xfc\xe9\xf3\x7a\x77\x01\x03\x61\x65\x3b\xa5\xc5\x90\x0d\x2d\x15\xb8\x4d\x63\xc8\x84\x8d\xad\xee\x40\x35\xd4\x5b\x89\xe1\xcb\xc6\xbc\x7e\xf8\x7f\x06\x6f\x41\x00\x00\xd0\x32\xb6\x8a\x31\x54\x5a\x4b\x0c\xcb\x5e\x0e\x4b\xad\x1d\xe9\x09\x77\x6a\x14\x28\x2f\xef\xbf\x60\x09\x1f\xc1\x15\x2c\xf6\xc4\x4c\x43\x72\xeb\xdd\x16\x5f\x55\x5f\xcb\x7d\xe8\x14\x63\x88\x3a\x21\x56\x15\x46\xbe\x76\xfc\x3d\xf3\x7d\xdd\x79\x78\x80\x56\x59\xa3\xc3\x9b\x15\xf5\x75\x01\x96\x04\xce\x7d\x81\xb1\x44\x46\xab\x11\x84\xc0\xc5\x85\xb1\xfe\x66\xf6\xc7\x2c\x8a\x60\xc5\xa8\x04\x41\x81\xc5\x01\x0a\xac\xb1\x52\x42\x0c\xb4\xff\x81\x5a\xa0\x24\x06\x39\x20\xb8\x79\xbc\xcb\x63\x71\x48\x3d\x9c\xcc\xaf\x6c\x65\xc1\x58\x99\x4e\x90\x77\x13\xd4\x0f\xf6\x7c\xdf\x81\xb8\x5c\xdd\x8a\x9a\xc6\x88\x60\x11\x43\x32\x9f\x8e\x6a\x31\x18\x39\x14\xac\x86\xf0\xb2\x81\xf3\x3d\x7b\x1f\x22\x13\x62\x1c\x45\xff\x4e\xe0\xa9\x71\xe2\x9d\xfa\x89\x61\x32\x9f\xca\x3b\x85\xf8\x9a\xbe\x27\xb2\xf3\x1a\x9e\x95\x1c\x26\xaf\x8e\xfd\x6a\x63\x8f\xc9\xed\xdb\x95\xea\x1d\x15\xe8\x3b\x3c\xf7\xfb\xda\xe8\xd3\x7d\x18\xb5\xe3\xd7\xb8\xd1\xdf\xe4\x54\x44\x71\x85\xf2\x0f\x32\xce\xe3\x14\x04\xa7\x5f\x01\x00\x00\xff\xff\x04\xd2\xf0\x2f\x1a\x03\x00\x00" func idtablestakingDelegationRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -2860,11 +2800,11 @@ func idtablestakingDelegationRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xd1, 0x2c, 0x94, 0x87, 0xed, 0x6e, 0x56, 0x43, 0x77, 0xd5, 0x5, 0x39, 0x7, 0xf8, 0x30, 0x30, 0x29, 0x8b, 0x42, 0x51, 0x3f, 0x5e, 0x80, 0xb7, 0xdd, 0x39, 0x36, 0xbd, 0xbc, 0x2, 0x1b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0xc8, 0x69, 0xd6, 0x84, 0xe1, 0x91, 0x3f, 0xe8, 0xab, 0x9d, 0xe1, 0x8, 0x8e, 0x59, 0x6f, 0x6d, 0xa8, 0x9e, 0xcc, 0x90, 0x1e, 0x8b, 0xbc, 0x2e, 0x7e, 0xa, 0x57, 0xdc, 0xa1, 0x41, 0xdc}} return a, nil } -var _idtablestakingDelegationRegister_many_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6f\xe2\x30\x10\x85\xef\xfe\x15\x23\x0e\xab\x44\x0b\x81\xbd\x46\x61\xd5\x0a\x5a\x89\x4b\x55\x09\xc4\x05\x71\x18\xc2\x90\xb8\x24\x76\xe4\x4c\x82\x10\xe2\xbf\x57\x36\x10\x92\xb4\x3e\x58\x30\xf3\x5e\x66\xde\x67\x99\x17\xda\x30\xbc\x67\xfa\xb4\x98\xaf\x70\x97\xd1\x92\xf1\x28\x55\x02\x07\xa3\x73\x18\xfc\x6c\x0c\x44\xcb\xb3\xd2\x47\x52\x2d\xa9\xfb\x3f\x10\x82\x0d\xaa\x12\x63\x96\x5a\x79\x4a\xef\x69\x31\x2f\x43\xd8\x2c\xd9\x48\x95\x6c\x87\x50\x20\xa7\xb7\x82\x36\x98\xd0\x27\x72\xba\xf5\xe1\x22\x04\x00\x40\x61\xa8\x40\x43\x1e\xc6\x31\x87\x80\x15\xa7\xde\x12\x6b\x5a\x63\x56\x91\x0f\x7f\x5e\xe3\x58\x57\x8a\x1b\xb9\x3d\x35\x1a\x90\x30\x85\xc9\xb3\x74\xd0\xc6\x8d\x01\xa9\x6e\xe3\xe0\xd2\xf4\xec\x19\x8f\x61\x66\x08\x99\x00\x41\xd1\x09\xf6\x94\x51\x82\xac\x0d\xe8\xdd\x17\xc5\xec\x3e\xc0\x29\x81\x5d\xbf\xe3\xcc\x88\xad\x63\xde\x18\xa2\xd1\x2f\xfc\x02\x43\x89\x2c\x99\xcc\x47\x4b\x7a\x67\x11\xc2\x9d\xc9\x46\x6e\x87\xc0\x96\x59\x39\xd3\x79\x2e\x99\x69\x1f\x42\x34\x6a\x50\x06\xb1\xdb\xf1\x2d\x2f\xf8\xbc\xc6\x2a\x63\xaf\xb6\xf7\xea\x5c\x50\x08\xf6\x8e\x5e\x9e\x5a\x27\xf8\xef\xf9\xbe\x2f\xfa\x51\x2d\x68\x72\x71\xfa\x39\x3b\x4a\x8b\x3c\x28\x6f\x8f\x12\x94\x58\x93\x17\x8d\xda\x51\xed\xb2\xa1\xc3\xd9\x1b\x61\xe1\x4b\xf8\x0b\xff\xba\xd5\x83\x6d\x4c\x1f\x69\x83\x8c\x54\xc2\x69\xef\x21\x1e\xf6\x49\xa7\x7a\x15\xdd\x5f\x57\x21\xae\xdf\x01\x00\x00\xff\xff\xdc\x28\xf5\x58\xac\x02\x00\x00" +var _idtablestakingDelegationRegister_many_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\xef\x9a\x40\x10\xc5\xef\xfb\x29\xe6\x88\xa9\xa2\xbd\x12\x3d\x50\xc1\x84\xd4\x68\x53\x48\x9b\xc6\x78\x18\x71\x84\xad\xb0\x4b\x96\x51\xdb\x18\xbf\x7b\xb3\x28\x54\xc8\x7f\x4f\x64\xe6\xbd\xe1\xbd\x9f\x2c\x2b\x6d\x18\x56\x85\xbe\x45\x41\x82\x87\x82\x62\xc6\xb3\x54\x19\x9c\x8c\x2e\x61\xf6\x27\x0a\xc2\x4d\x12\x25\xbf\x12\xff\xcb\x3a\xf4\x83\xe0\x7b\x18\xc7\xe2\xcd\x95\xe8\x33\xa9\x56\xbc\x5a\x6f\x7f\x26\xdb\xaf\xe1\xa6\x15\x0a\x36\xa8\x6a\x4c\x59\x6a\xe5\x28\x7d\xa4\x28\xa8\x3d\xd8\xc5\x6c\xa4\xca\xf6\x63\xa8\x90\xf3\xe7\x40\x1b\xcc\xe8\x1b\x72\xbe\x1f\xc1\x5d\x08\x00\x80\xca\x50\x85\x86\x1c\x4c\x53\xf6\xc0\xbf\x70\xee\xa7\xa9\xbe\x28\xee\x14\xf6\x5d\xd1\x80\x84\x05\xcc\xfe\x8f\x4e\xda\x34\x97\x41\xaa\xe7\x1f\xe0\xde\xed\xec\x9b\x4e\x61\x69\x08\x99\x00\x41\xd1\x0d\x8e\x54\x50\x86\xac\x0d\xe8\xc3\x6f\x4a\xb9\x39\xc0\x39\x81\x4d\xdc\x73\x16\xc4\xd6\x11\x74\x86\xf9\xe4\x03\x76\xae\xa1\x4c\xd6\x4c\x66\xf3\x26\x7d\xd5\xf7\xe0\x85\x61\x27\xf7\x63\x60\x4b\xaf\x5e\xea\xb2\x94\xcc\x74\xf4\x60\x3e\xe9\xa0\xba\x69\x93\x31\x2c\x2b\xfe\xfb\x03\x2f\x05\x3b\xa3\x91\x18\xf6\xb0\xe0\xa8\xc9\x3a\x2c\xd1\x53\x5a\x84\x6e\x8d\x57\x72\xe6\x93\xf7\xfc\x36\x81\xd7\x30\x1a\x9c\xb6\x44\x25\x7c\x82\xcf\xfd\xe9\xc9\x2e\x16\x6d\x05\xb7\x20\x95\x71\x3e\xa0\xdb\xda\x67\xbd\xe9\x43\xf4\xbf\x1e\x42\x3c\xfe\x05\x00\x00\xff\xff\xc5\x9d\x30\xdd\x7d\x02\x00\x00" func idtablestakingDelegationRegister_many_delegatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -2880,11 +2820,11 @@ func idtablestakingDelegationRegister_many_delegatorsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/register_many_delegators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0x77, 0xf9, 0xad, 0xba, 0xdd, 0x3, 0x54, 0xa7, 0xa1, 0x6b, 0x8e, 0x5d, 0x19, 0x2b, 0x23, 0xea, 0x5, 0x9b, 0xd8, 0x21, 0x1d, 0x7b, 0x64, 0x8e, 0x76, 0x91, 0x58, 0xd4, 0xd2, 0xe2, 0x2f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdc, 0x5c, 0xbd, 0x63, 0x87, 0xcb, 0xb9, 0xa3, 0x2b, 0x17, 0x3c, 0x50, 0x61, 0x63, 0xda, 0x6, 0x77, 0x4b, 0x25, 0xfc, 0x31, 0x5a, 0xda, 0x73, 0x52, 0x75, 0xc2, 0x55, 0xab, 0x3e, 0x1, 0xf8}} return a, nil } -var _idtablestakingNodeNode_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6b\xc2\x40\x10\xc5\xef\xf9\x14\x83\x07\x49\x40\xe2\x5d\xfc\x43\x6b\x29\xf4\xd2\x0a\x4a\xef\x93\xcd\x68\xb6\xae\xbb\x61\x77\x82\x2d\xea\x77\x2f\xd9\x60\xdc\xa0\xb6\xce\x2d\xc9\xcc\x7b\xbf\x79\x13\xb9\x2b\x8d\x65\x78\x55\x66\xff\xf6\xb2\xc2\x4c\xd1\x92\x71\x2b\xf5\x06\xd6\xd6\xec\xa0\x77\xfd\xa1\x17\x05\x33\x2b\xb3\x25\x1d\xb4\xfa\xe7\x5e\x14\x0d\x87\xb0\x2a\xa4\x03\xb6\xa8\x1d\x0a\x96\x46\x03\xe6\xb9\x03\x84\xb2\xca\x94\x14\xa0\x4d\x4e\x20\xb0\xc4\x4c\x2a\xc9\x3f\xc0\x06\x50\x03\x0a\x61\x2a\xcd\xb0\x97\x5c\xd4\x22\xa8\x81\xbe\xa5\xe3\x1a\xe8\xdd\xe4\x9e\x81\x2c\x98\xec\x8b\x04\x47\x51\x28\x7f\x88\x22\x00\x80\xd2\x52\x89\x96\x62\x14\x82\x47\x80\x15\x17\xf1\xb3\xb1\xd6\xec\x3f\x51\x55\x34\x80\xf9\xd9\x52\x92\x4b\xa0\xff\xd4\x18\x26\xe7\xf1\xba\xe4\xba\xe6\xe0\xd4\xb1\xb1\xb8\xa1\x34\xf3\xf3\x63\xaf\x75\x9d\x47\x5a\x73\x7d\x94\x64\x91\x8d\x4d\xa0\x7f\xa7\xa3\x21\x9f\xc6\x75\x56\xa3\x1b\x79\x07\x4d\xcb\xc6\x77\x81\x5c\x24\x30\x99\x80\x96\x0a\x8e\xc7\x16\xaf\x2e\xcf\x27\x82\x55\xd2\x0d\xf1\xb8\x7f\xf8\x53\x77\xe1\x93\x3f\x4d\xef\x2d\x11\x76\x79\xf3\x59\x2a\x0a\x12\xdb\x38\x81\xd9\x0c\xd6\xa8\x1c\xb5\x10\x87\x0e\x8e\x25\xae\xac\x6e\x5f\x9d\x2e\x59\x2a\x62\x7f\xea\x46\x7b\x8e\x25\x4c\x6e\xc0\x9f\x93\x96\xce\x55\xf4\xf0\x1a\x1d\x84\x47\x13\x6d\x87\x92\x0b\xe4\x35\x90\xff\x49\x5d\xd1\xb5\xe8\xec\x31\xe8\xde\x83\xff\xb9\xe9\x25\xd5\x00\xa0\xc9\xea\xf4\x1b\x00\x00\xff\xff\x76\x70\x54\x96\x84\x03\x00\x00" +var _idtablestakingNodeNode_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x73\x92\x08\x45\x7b\x16\x15\xd2\x26\x82\x54\x54\x9a\x85\xd2\xe3\x64\xb3\x26\xdb\xc4\x9d\xb0\x99\xa0\x45\xf3\xdf\x4b\x22\x46\xa5\xa5\x64\x8f\xcb\x9b\xf7\xbe\xf7\xf4\xbe\x20\xcb\xb0\xc8\xe9\xb0\xf4\x05\x46\xb9\x0a\x19\x33\x6d\x12\xd8\x59\xda\xc3\xf3\x71\xe9\x07\x6b\xb1\x14\x9f\xc2\x7b\x59\x05\x9e\xef\xbf\x07\x61\xe8\xdc\x5d\x09\xca\x94\xb9\x8a\x17\xab\xcd\x87\xd8\xbc\x05\xeb\xab\xd0\x19\x8f\x41\xa4\xba\x04\xb6\x68\x4a\x94\xac\xc9\x00\xc6\x71\x09\x08\x45\x15\xe5\x5a\x82\xa1\x58\x81\xc4\x02\x23\x9d\x6b\xfe\x06\x26\x40\x03\x28\x25\x55\x86\xe1\xa0\x39\x6d\x4c\xd0\x80\x3a\xea\x92\x1b\xb2\x35\xc5\x2d\xa5\xb2\x40\xd1\x97\x92\xec\x38\xf7\xf6\x27\xc7\x01\x00\x28\xac\x2a\xd0\x2a\x17\xa5\xe4\x09\x78\x15\xa7\xde\xc5\x73\x78\x55\x34\x4f\xef\x9a\x28\x1e\x45\x64\x2d\x1d\xa6\x83\xdf\x43\x8c\x6e\x71\x73\xb7\xe9\x39\xf9\x63\xad\x3b\x51\xc8\x64\x31\x51\x5b\xe4\x74\x08\xb3\x19\x18\x9d\xc3\xf9\xdc\x05\x36\xaf\x4d\x4c\x14\xbf\x76\xad\xa7\x83\xd3\xbf\xa6\xdb\x76\xab\x7a\xee\xf6\x50\xb5\xc9\x23\x99\x2a\x99\xb9\xc3\x2e\xf7\xf4\x40\x60\x15\x57\xd6\x74\x5f\xf5\x6d\x90\x96\x2d\xd7\x26\xeb\x8d\xf4\x60\xdc\x93\xef\xe9\xe1\x88\xd1\x26\x8a\xfb\xef\xda\x1d\x5f\xea\xd5\x4e\xfd\x13\x00\x00\xff\xff\x7d\x56\xcd\xe6\xc7\x02\x00\x00" func idtablestakingNodeNode_add_capabilityCdcBytes() ([]byte, error) { return bindataRead( @@ -2900,11 +2840,11 @@ func idtablestakingNodeNode_add_capabilityCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/node_add_capability.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xc4, 0x53, 0x4f, 0xc8, 0xa0, 0x67, 0x6e, 0x7a, 0xe2, 0x1e, 0x5c, 0xee, 0xad, 0xeb, 0x9e, 0x2e, 0x9f, 0x6f, 0x6c, 0xed, 0xcd, 0xad, 0xf3, 0xaa, 0x72, 0xd, 0x11, 0x47, 0xd4, 0x2a, 0xd0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa, 0x7e, 0x60, 0x84, 0x8b, 0x25, 0xdc, 0xfc, 0xcf, 0xe8, 0x1e, 0x2d, 0x1e, 0x7f, 0xe3, 0x55, 0x16, 0x50, 0x49, 0xaf, 0xf7, 0x75, 0x19, 0xf6, 0x3d, 0x83, 0xec, 0x7a, 0x90, 0xdc, 0xf2, 0x46}} return a, nil } -var _idtablestakingNodeRegister_many_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\x4f\x6b\xdb\x4e\x10\xbd\xeb\x53\x0c\x3e\x04\x89\x5f\x2c\xff\x0a\xa5\x94\xc5\x69\x08\x29\x86\x90\xd2\x96\x24\x6d\x0e\xc6\x87\xb5\x76\x64\x6d\x23\xed\x98\xd5\x28\x6a\x28\xf9\xee\x65\x57\x8a\xf5\x17\x3a\x07\x81\xde\xbc\x99\xb7\x33\xf3\x74\x71\x24\xcb\xb0\xc9\xa9\xbe\xf9\xfc\x20\xf7\x39\xde\xb3\x7c\xd2\xe6\x00\xa9\xa5\x02\x16\xd3\xc4\x22\xe8\xd5\x3c\xd0\x13\x9a\x1e\xd5\xff\x77\x8c\xca\x1c\xf4\x3e\xc7\x01\xab\x8f\x2d\x82\x80\xad\x34\xa5\x4c\x58\x93\x09\x03\x00\x00\xad\x4a\x01\xdb\x7b\xb6\xda\x1c\x76\xe7\x1e\xb2\x94\xa3\x03\x7f\xdc\x18\xfe\xd8\x62\x06\xb9\x26\xeb\x1e\x74\xa5\x94\xc5\xb2\xc4\x49\x59\x47\xb9\xc5\x97\x49\xb6\x6c\xc6\x99\x4b\xc9\x82\x2a\xc3\x5e\x71\xa3\x7f\x7f\x78\xdf\xc2\x47\xc9\x59\xc3\x25\x2b\x0f\xf8\x5d\x72\xb6\x0b\x22\xf8\x13\x34\x59\x8b\x47\x69\x31\x94\x49\xc2\x02\x64\xc5\x59\xd8\x12\x23\x38\xbb\x4a\x12\xd7\xf2\x44\x76\xf1\x2c\x2d\x68\xb8\x80\xff\x3b\x28\x25\xeb\x55\x40\x9b\x46\xad\xcf\x77\x91\x23\x43\xfa\xb6\xe7\x3b\x4c\xe1\x02\x9c\x5e\x5c\x36\x4a\xf1\x9e\xac\xa5\x7a\xed\xd5\x07\x9b\x8e\x1f\x35\x67\xca\xca\x3a\x82\xb3\xd3\xa1\xe2\x9f\xb2\xca\xf9\x53\xe8\x2e\x23\x60\xd5\x36\x59\x9d\x04\x7c\x3a\x1a\x3c\xc0\xc5\xe5\x25\x1c\xa5\xd1\x49\xb8\xb8\xa6\x2a\x57\x60\x88\xa1\x11\x06\x8b\x29\x5a\x34\x09\x02\x13\x6c\xbe\x7c\x7b\x04\xdf\x63\x11\x4d\xc7\x60\xa7\x50\x5e\x53\x51\x68\x66\x54\xb0\x5e\x0e\x26\x8b\xeb\xf6\xc1\x61\x73\x0d\xf1\x76\x95\xad\xde\xcd\x74\x33\xa4\xbc\x41\xd1\xba\x46\x53\xd7\xc6\x52\xa9\xaf\xa4\xf0\x0e\x13\xb2\x2a\x9c\xcc\xa4\x95\x70\xce\xdb\xea\xf6\xd6\xfd\x70\xf6\x13\x8d\x09\x67\xf3\x13\x2b\x8a\x39\x77\xfe\xa3\xf4\x16\x5f\xc4\xc8\xb1\xb3\x15\x9d\x6d\x45\xdf\xc2\xb3\xdc\xd1\x8a\x05\xac\x97\x23\x68\x50\x32\x5a\xeb\x6a\x05\xce\xc0\x08\x9c\xa1\xdf\x2f\xd0\xfe\x17\x26\x3c\x20\x0d\xdc\x57\xca\x67\x0c\xd7\xcb\xee\x16\xe7\xc0\x24\xbc\x93\x47\xbd\x9d\xef\x35\xfc\x07\xef\x4e\xe8\x6b\xd0\x7c\x83\xd7\xbf\x01\x00\x00\xff\xff\x0d\x4e\x7d\xd1\x93\x04\x00\x00" +var _idtablestakingNodeRegister_many_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\x4d\x6b\xdb\x40\x10\xbd\xeb\x57\x0c\x39\x14\x99\xc6\x76\x0a\xa5\x94\xc5\x69\x50\x63\x1b\x8c\x83\x53\x6c\xb5\xa5\x18\x1f\xd6\xda\x91\xb5\x8d\xb4\x63\x56\xe3\x28\xa1\xe4\xbf\x97\x95\xfc\x29\x09\x32\x07\x1d\xde\xbc\x79\x33\x7a\xfb\x74\xb6\x25\xcb\x30\x4e\xa9\x98\x0c\x43\xb9\x4e\x71\xc1\xf2\x49\x9b\x0d\xc4\x96\x32\xb8\x79\x99\x0c\x47\xb3\x70\x12\xfe\x09\x83\xef\x0f\xa3\x60\x38\x9c\x8f\x16\x0b\xef\x6c\x2a\xa4\x27\x34\x07\xf2\xf8\xe1\xf1\x77\xf8\x38\x1d\xcd\x0e\x44\x8f\xad\x34\xb9\x8c\x58\x93\xf1\x3d\x00\x00\xad\x72\x01\xcb\x05\x5b\x6d\x36\xab\xeb\x12\xb2\x94\xa2\x03\x7f\x4e\x0c\x7f\xdd\x63\x06\xb9\x20\xeb\x0e\x09\x94\xb2\x98\xe7\xd8\x18\x3b\x51\xa6\xf8\xda\xe8\xe6\xd5\x6f\xb4\xb5\x64\x46\x3b\xc3\xe5\xc6\xb1\x7e\xf9\xf2\x79\x0f\x6f\x25\x27\x15\x97\xac\xdc\xe0\x0f\xc9\xc9\xca\xeb\xc0\x3f\xaf\xea\x5a\xdc\x4a\x8b\xbe\x8c\x22\x16\x10\xec\x38\x09\xa2\xc8\xe9\x1c\x19\xae\x9e\xa5\x05\x0d\xb7\x70\x73\x82\x62\xb2\xa5\x34\x68\x53\xad\x38\xe7\xbb\x4a\x91\x21\x3e\x38\x39\xc7\x18\x6e\xc1\x2d\xe9\xad\xc9\x5a\x2a\x06\x1f\x8e\x2e\xf7\x7e\xc9\x5d\xca\xdf\x7c\x67\xb6\x80\x7e\x5e\xdd\xd9\x3f\xce\x96\xed\xce\x85\xb6\xab\xbb\x3b\xd8\x4a\xa3\x23\xff\xea\x9e\x76\xa9\x02\x43\x0c\x95\x36\x58\x8c\xd1\xa2\x89\x10\x98\xc0\x3d\x1e\x94\x1a\x57\x9d\xe6\x85\xec\x36\xe4\xf7\x94\x65\x9a\x19\x15\x0c\xba\x17\x47\xf7\x0a\xcd\x89\xb2\xb2\xf0\x2b\x77\xc5\xc1\xe5\xa5\x5e\xb5\xa8\x19\x52\x65\xd0\xd0\x3a\xa1\x66\xfa\x7a\x52\xa9\x19\x29\x9c\x63\x44\x56\xf9\x8d\x7f\xd2\x4a\xb8\x24\x2d\xf5\xfe\xed\xce\xcb\xc5\x49\x54\xa1\x6a\xed\x37\xa2\x25\xda\xd2\xf6\xce\xe8\x14\x5f\x45\x2d\x81\xad\x13\xa7\x18\x8a\xf3\x48\xb6\x72\x6b\x16\x0b\x18\x74\x6b\xd0\xc5\x48\xcd\xd6\x7e\x1f\x5c\x72\x11\x38\xc1\xd2\x5f\xa0\xf5\x5f\x8c\xf8\x82\x54\x06\x2b\x97\xcf\xe8\x0f\xba\xa7\x37\xb8\x06\x26\x51\x86\xb3\xa6\xe9\xa2\xac\xe1\x23\x7c\x3a\xa2\x6f\x5e\xf5\xf5\xde\xfe\x07\x00\x00\xff\xff\x0b\x85\x8a\x83\x3a\x04\x00\x00" func idtablestakingNodeRegister_many_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2920,11 +2860,11 @@ func idtablestakingNodeRegister_many_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/register_many_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x24, 0xe6, 0xd8, 0x4d, 0x7f, 0xa7, 0x90, 0xd1, 0xbd, 0x2e, 0x9d, 0x30, 0xb6, 0xc9, 0x30, 0x9a, 0xbd, 0x9b, 0x1, 0xae, 0xca, 0x83, 0xf9, 0xb4, 0x8b, 0xd9, 0x22, 0xa, 0x7c, 0x65, 0xe9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xce, 0x4a, 0xf8, 0x11, 0x23, 0xc3, 0xa6, 0x1c, 0x71, 0xfd, 0x59, 0xc, 0xa6, 0x8c, 0x13, 0x6a, 0x2b, 0x1, 0x7a, 0x59, 0xed, 0x14, 0x8d, 0xef, 0x41, 0x24, 0x32, 0xd1, 0xd1, 0x65, 0x26}} return a, nil } -var _idtablestakingNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\x5f\x6b\xdb\x3e\x14\x7d\xf7\xa7\xb8\xe4\xa1\xd8\x90\x3a\x2f\x3f\x7e\x8c\x90\xb6\x94\x8c\x42\xd9\x58\x4b\xff\xac\xcf\xb2\x74\x1d\x6b\x55\x74\x8d\x74\x3d\xaf\x94\x7e\xf7\x21\x3b\x89\x2d\x9c\x75\x6b\x1e\x1c\xeb\xfe\x3b\x47\xe7\x1e\xeb\x6d\x4d\x8e\xe1\xca\x50\x7b\xfd\xf9\x41\x14\x06\xef\x59\x3c\x6b\xbb\x81\xd2\xd1\x16\x66\xd3\xc4\x2c\x19\xf5\x3c\xd0\x33\xda\x51\x69\x77\x1e\x2a\x1a\xbb\xd1\x85\xc1\xa8\x6a\x1c\x9b\x25\xc9\x62\x01\x0f\x95\xf6\xc0\x4e\x58\x2f\x24\x6b\xb2\x20\x1d\x0a\x46\x0f\x02\x2c\xb6\x60\x49\x21\x78\x76\x8d\x64\xa0\xe2\x07\x4a\x0e\x4d\xc2\x2a\x68\x6a\xd5\xd5\x71\x85\x50\x3b\xaa\xc9\xa3\x82\x6b\x85\x96\x35\xbf\x40\x47\x3a\x49\x46\x83\xd3\x04\x00\x40\xab\x25\xdc\xb3\xd3\x76\x33\xef\xce\x8e\x0c\x2e\xe1\xf1\xda\xf2\xa7\x3e\x60\x91\x5b\x72\xe1\xae\x97\x4a\x39\xf4\x3e\xae\x1f\xd2\x5f\xf0\x25\x4e\xf9\x5e\xa2\x49\x5c\x6c\xa9\xb1\xbc\x84\xc7\x2b\xfd\xeb\xff\xff\x92\x0c\x5e\x93\x2e\x6e\x90\xa1\xdc\xcb\x76\x87\xe5\x12\x44\xc3\x55\x1a\x69\x94\x3f\x69\xae\x94\x13\x6d\x06\x27\x07\x89\xf3\xef\xa2\x31\xdc\x0f\xa9\x1d\xd6\xc2\x61\x2a\xa4\xe4\xdd\x80\x7b\x26\x27\x36\x38\x87\xb5\xa8\x45\xa1\x8d\x66\x8d\x3e\x83\x93\x4b\x29\x03\x91\x03\x7e\xc7\x19\x4d\x99\x8f\x49\xc0\x19\x84\x51\xb9\xef\x87\xe4\x05\x39\x47\xed\xea\x43\xcc\xce\xd3\xb0\xed\x25\x2c\x76\x43\x16\x07\x80\x2e\x9d\x1d\xd0\xc3\xef\xe2\x02\x6a\x61\xb5\x4c\x67\x6b\x6a\x8c\x02\x4b\x0c\x3d\x28\x38\x2c\xd1\xa1\x95\x08\x4c\x70\xf5\xf5\xe6\x09\xba\xfe\x59\x36\xf0\x0f\x1a\x06\x8b\x04\x7b\xa2\x83\xd5\xe9\x11\x33\xe7\x42\xa9\x6f\xa4\xf0\x0e\x25\x39\x95\x46\xe8\xc1\x0e\x5a\xcd\xa3\x58\x6f\x89\xf0\x8c\xe3\x47\x9c\x31\x09\xfd\xa9\xa3\x33\x45\x74\x8c\x2b\xc7\xde\x19\xde\xe3\x1a\x0e\x0a\xfa\x35\x6d\xb7\x9a\x19\xd5\x12\x56\xa7\x93\xf5\xe5\xed\x6e\x2b\xe9\xde\x75\xfd\xff\xa0\xf9\x48\x3c\x5d\xbe\xb3\xeb\xa9\x8c\x41\xc3\x9b\x1a\x9d\x60\x72\xbb\xa5\x1f\xa9\xe8\x37\xb1\xb7\xc0\xbb\x45\x3b\xa3\xde\x0a\xae\x32\x38\x3b\x03\xab\xcd\xd8\x9b\xdd\xb7\x33\xe6\xe7\xc5\x4f\x4c\x57\xa7\xc3\xbe\xe7\xc0\xf4\x01\x8c\x78\x74\x6c\x9d\xb5\xa8\xf7\xd6\x97\xa3\xcf\xe6\x80\xad\xbd\x6f\x70\x75\xf2\xfa\x2e\xd8\x6d\x53\x18\x2d\xdf\xce\x63\x8f\x85\xdf\xbf\x72\x8c\x1a\xb3\x23\x5a\x44\xe4\xea\x80\xe7\xab\x29\x5c\x74\xaf\xf9\x24\x2d\xf8\x2f\xaa\xf5\x17\x39\x42\x68\xff\xf6\x06\x68\x3c\xc2\x6b\x94\x56\xe8\xd9\xd1\xcb\x08\x7d\xa8\x4f\xfa\xe7\xdb\xef\x00\x00\x00\xff\xff\xd7\xf7\xa2\x42\x73\x06\x00\x00" +var _idtablestakingNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x52\x41\x6f\xda\x4c\x10\xbd\xfb\x57\x8c\x72\x88\x8c\x44\xe0\x3b\x7c\xaa\x2a\x8b\x24\xa2\x01\x24\x94\x88\x44\xe0\xb4\xea\x71\xd9\x1d\xc3\x16\xb3\x63\xed\x8e\xeb\x20\xc4\x7f\xaf\xd6\x16\xd8\x0e\x34\x4a\x7d\x30\x78\xe6\xbd\x37\xbb\xef\x8d\xde\x66\x64\x19\x26\x29\x15\xd3\x51\x2c\x96\x29\x2e\x58\x6c\xb4\x59\x41\x62\x69\x0b\xff\xbd\x4d\x47\xe3\x59\x3c\x8d\x7f\xc6\xc3\x6f\x4f\xe3\xe1\x68\x34\x1f\x2f\x16\x41\x83\x15\xd3\x06\xcd\x11\x3c\x79\x7a\xfe\x11\x3f\x3f\x8e\x67\x47\x60\xd0\xef\x43\xbc\xd6\x0e\xd8\x0a\xe3\x84\x64\x4d\x06\xa4\x45\xc1\xe8\x40\x80\xc1\x02\x0c\x29\x04\xc7\x36\x97\x0c\xb4\xfc\x85\x92\x3d\x49\x18\x05\x79\xa6\x4a\x1c\xaf\x11\x32\x4b\x19\x39\x54\x30\x55\x68\x58\xf3\x0e\xca\xc3\x06\x41\x43\x38\x0c\x00\x00\xb4\x8a\x60\xc1\x56\x9b\x55\xb7\xfc\xb6\x94\x62\x04\xaf\x53\xc3\x5f\xab\x82\x41\x2e\xc8\xfa\x3b\x0e\x95\xb2\xe8\x5c\x1b\x5f\xb7\x1f\x71\xd7\x6e\xb9\xca\x9a\xb3\xba\xd8\x52\x6e\x38\x82\xd7\x89\x7e\xfb\xf2\x7f\xd0\x81\x7d\x50\xd6\x53\x64\x48\x8e\x1e\xcd\x31\x89\xe0\xfa\x64\x59\xef\xbb\xc8\x53\xae\x70\x99\xc5\x4c\x58\x0c\x85\x94\x1c\xc1\x30\xe7\xf5\x50\x4a\x2f\x79\x52\x2a\xa7\x63\x9a\xf4\x9a\x72\x70\x0b\x9e\xd1\x5b\x92\xb5\x54\x0c\xde\x6b\xdf\x85\x3e\x95\x08\xfa\x8e\xc9\x8a\x15\xf6\x4f\xdc\xb2\xdd\x39\x09\xfb\xe7\xfe\x1e\x32\x61\xb4\x0c\xaf\x1e\x28\x4f\x15\x18\x62\xa8\x74\xc1\x62\x82\x16\x8d\x44\x60\x02\x9f\x30\x94\xfc\xab\x4e\x7d\x34\x7f\x51\x9f\xa3\xdf\x1d\xb4\x30\xb8\xb9\xb0\x50\x3d\xa1\xd4\x8c\x14\xce\x51\x92\x55\x61\x6b\xba\xcf\x4c\xab\x6e\xab\x56\xe5\xe6\xdf\xed\xfa\x85\xf8\xce\x4a\x7f\x63\x94\xc9\xb5\x3e\xdb\xc8\x66\xc0\xf5\xff\x36\x86\xbd\x83\xee\x81\xb6\x5b\xcd\x8c\x2a\x82\xc1\xcd\x59\x32\xbd\x42\xf3\x5a\x59\x51\x84\xc7\xd5\xa8\x7e\x6b\xcf\x1b\xe6\xe9\xe4\x3c\xc6\x77\xd6\xcd\x4e\xde\x1e\x43\xfd\x10\xb4\xa8\x02\x7f\x11\xbc\xee\xc0\xed\x2d\x18\x9d\x36\x17\xa9\x5c\x59\x3f\xd1\x89\xdf\x18\x0e\x6e\xea\xe4\xba\xc0\xf4\x0f\xda\x17\x24\x53\x6d\x36\x83\xeb\xfd\x87\x12\x2f\xf9\x32\xd5\xf2\x70\xd7\xde\x01\xff\x7c\x82\xe6\x07\x77\xcf\x88\x2c\xec\x0a\xf9\xf3\x47\x6f\x09\xd4\xa9\x1c\x00\x53\x87\xb0\x6f\xb5\x15\x3a\xb6\xb4\x6b\x2c\x78\x8d\x0f\xaa\xf7\xe1\x4f\x00\x00\x00\xff\xff\xdb\x54\x5a\x43\x47\x05\x00\x00" func idtablestakingNodeRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -2940,11 +2880,11 @@ func idtablestakingNodeRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0xcb, 0x2d, 0xbc, 0x35, 0x44, 0x32, 0x3e, 0x73, 0x50, 0x5f, 0xa1, 0x63, 0x18, 0x71, 0x7f, 0x5f, 0x26, 0xb5, 0x59, 0x98, 0x82, 0x74, 0xab, 0xa6, 0x15, 0x3c, 0x8f, 0xfa, 0x4d, 0x85, 0x69}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x76, 0x8, 0xa4, 0x1a, 0xd1, 0xae, 0xff, 0xc6, 0x3f, 0xf9, 0x3f, 0xb2, 0x21, 0xbe, 0x35, 0xc8, 0x47, 0x64, 0xa8, 0x8a, 0xa, 0x3c, 0x56, 0x1, 0x44, 0xa5, 0xa3, 0xce, 0x1c, 0xcd, 0x59, 0x84}} return a, nil } -var _idtablestakingNodeRequest_unstakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xbf\x4e\xc3\x40\x0c\xc6\xf7\x3c\x85\x95\xa1\x4a\x96\x64\x41\x0c\x15\x50\xf1\x47\x95\x90\x10\x20\x4a\xd9\xdd\x8b\xd3\x1e\xbd\x9c\x83\xe3\xd0\x4a\xa8\xef\x8e\xae\x49\xab\x56\x05\x89\x01\x2f\x37\x9c\xfd\xf9\xfb\xd9\xb6\x55\xcd\xa2\x30\x76\xbc\xba\xbf\x7b\xc5\x99\xa3\x89\xe2\xd2\xfa\x39\x94\xc2\x15\xc4\xa7\x1f\x71\x14\x45\x2a\xe8\x1b\x34\x6a\xd9\x27\x58\x71\xeb\x75\x08\xd3\xb1\x5d\x9f\x9f\xa5\xf0\x15\x45\x00\x00\x79\x0e\x0f\x6c\xd0\xc1\x27\x8a\x0d\xe5\x50\xb2\x00\x82\x50\x49\x42\xde\x10\x28\x83\x2e\x08\x3c\x17\x04\x3c\x7b\x27\xa3\xdb\x42\x47\x0a\x8d\xe2\x92\xe4\x85\xca\x21\x60\xab\x8b\xe4\xd4\x45\xf6\xc8\x05\x3d\xd5\x24\xa8\x2c\x29\x0c\x7e\xc9\x98\x6c\x85\x3a\x47\xb5\x50\x8d\x42\x09\x1a\xa3\xbd\xee\x0d\x8b\xf0\xea\x0d\x5d\x4b\x29\x0c\xae\x8d\x09\x28\x01\x01\xfa\xc8\x73\x98\x6d\x73\xfe\xe2\x3c\x44\x43\xae\xcc\xf6\xf6\xe1\x12\x42\xb7\xac\x51\x16\x9c\x53\xd6\x69\x5d\xfc\x07\xd3\x55\x12\x16\x34\xfc\x61\x73\x07\x49\x93\xae\xef\x33\xea\x22\xdd\x5b\x0c\x31\x1a\x41\x8d\xde\x9a\x24\xbe\xe5\xd6\x15\xe0\x59\x77\xa0\x47\x98\x4d\x7f\x0c\x58\x54\xd6\xc7\x9d\xc6\xa6\x1b\x27\xad\xc9\xb4\x4a\x07\xc3\x3a\x66\xcf\x84\x3e\x5a\x6a\x74\xea\x7b\x91\xfd\xa5\x74\xef\x4e\x6c\x13\x7d\x07\x00\x00\xff\xff\x7d\xcc\x86\xf9\x84\x02\x00\x00" +var _idtablestakingNodeRequest_unstakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x2f\x49\x0f\xa5\x87\xd0\x56\xd2\x46\x41\x10\x29\x26\x1e\x7a\x1c\xd7\x89\xa6\xc6\x9d\x74\x32\xa9\x81\xe2\x7f\x2f\x6b\x6a\x28\x58\xa4\xef\x32\x7b\xd8\x7d\xf3\xed\x7b\xc5\xbe\x62\x51\x98\x94\x7c\x98\x26\x19\xae\x4a\x4a\x15\x77\x85\xdd\x40\x2e\xbc\x87\xdb\x76\x9a\x8c\xe7\xd9\x34\x7b\xcb\xe2\xe7\xd9\x38\x4e\x92\xc5\x38\x4d\x3d\xcf\x53\x41\x5b\xa3\xd1\x82\xad\x8f\x7b\x6e\xac\x46\xb0\x9c\x14\xed\xfd\xdd\x10\xbe\x3c\x0f\x00\x20\x0c\x61\xc6\x06\x4b\xf8\x44\x29\x9c\x33\xe4\x2c\x80\x20\x94\x93\x90\x35\x04\xca\xa0\x5b\x02\xcb\x6b\x02\x5e\xbd\x93\xd1\xd3\xc3\x92\x14\x6a\xc5\x1d\xc9\x82\xf2\x08\x6e\x2e\xe1\x82\x39\xaf\x4f\x67\x92\x6e\x57\x25\x54\xa1\x90\x8f\xc6\x68\x04\x71\xa3\xdb\xd8\x18\x47\xe5\x68\xe0\x47\x61\x08\x2b\x16\xe1\xc3\x7f\x20\x9c\x6a\x2a\xf3\xa0\x27\x81\x47\x70\xf6\x41\xe7\xf1\x70\x1d\xeb\xc9\x77\xf9\x45\x7f\x04\xfb\xeb\x52\xaa\x2c\xb8\xa1\x57\xd4\xed\xb0\x5f\xea\x34\x1a\x41\x85\xb6\x30\xfe\xe0\x85\x9b\x72\x0d\x96\xf5\x8c\x7e\x0d\x7c\x30\xec\xd2\x38\x76\x83\x5a\x32\x8d\xd2\xb9\x8f\xcb\x1f\x05\x42\x1f\x0d\xd5\xba\xb4\x75\xc7\xd6\x57\xd9\xcd\xde\xee\xf8\x1d\x00\x00\xff\xff\xc8\xee\x14\x2d\x27\x02\x00\x00" func idtablestakingNodeRequest_unstakeCdcBytes() ([]byte, error) { return bindataRead( @@ -2960,11 +2900,11 @@ func idtablestakingNodeRequest_unstakeCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/request_unstake.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8, 0x6c, 0x5c, 0x95, 0xf8, 0x1, 0x61, 0xb4, 0x8e, 0xcb, 0x97, 0xb8, 0x11, 0xcb, 0x4e, 0xd9, 0xd7, 0x1c, 0xc2, 0xbe, 0x23, 0xfa, 0x38, 0x54, 0xcf, 0xc5, 0x78, 0xac, 0x14, 0x7c, 0x28, 0xe6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x79, 0xf1, 0x50, 0x3e, 0x13, 0xea, 0xe6, 0xa4, 0xfb, 0x7d, 0x7c, 0x79, 0x1, 0x20, 0xab, 0xc3, 0xca, 0xd6, 0x2, 0x24, 0x4, 0x1b, 0xe0, 0x6, 0x3c, 0xb2, 0x81, 0x63, 0x50, 0xb4, 0x75}} return a, nil } -var _idtablestakingNodeStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\xcf\x6e\xdb\x30\x0c\xc6\xef\x7a\x0a\xc2\x87\xc2\x3e\xcc\xbe\x0c\x3b\x04\xdd\x8a\xfd\x41\x80\x01\x45\x3b\x2c\x5d\x7b\x66\x64\x3a\xd1\xa2\x88\x06\x4d\x2f\x05\x86\xbe\xfb\x60\xcb\xf1\x14\x64\x1b\x8a\xa1\xba\xd8\x96\x3e\x7e\xe4\x8f\x94\xdd\xbe\x65\x51\x58\x7a\x3e\x7c\xfe\x74\x87\x6b\x4f\x2b\xc5\x9d\x0b\x1b\x68\x84\xf7\x90\x9d\x1f\x64\x26\x89\xb9\xe3\x1d\x85\x44\x3a\x7e\xff\x56\xf4\x61\xe3\xd6\x9e\x4e\x54\xe9\x5e\x66\x8c\x0a\x86\x0e\xad\x3a\x0e\x39\xee\xb9\x0f\xba\x80\x6f\x4b\xf7\xf8\xe6\x75\x01\x3f\x8d\x01\x00\xa8\x2a\xb8\x66\x8b\x1e\x7e\xa0\xb8\xa1\x12\x68\x58\x00\x41\xa8\x21\xa1\x60\x09\x94\x41\xb7\x04\x81\x6b\x02\x5e\x7f\x27\xab\x63\xa0\x27\x85\x4e\x71\x47\xf2\x95\x9a\x05\x60\xaf\xdb\xfc\x1c\xa8\xbc\xe1\x9a\x6e\x5b\x12\x54\x96\x02\x2e\xfe\xa2\x58\x8d\x46\x66\x36\x6e\x8e\xb8\x89\x77\xca\x56\x3e\x38\xdd\xd6\x82\x87\xc9\x32\x6e\xde\x63\xef\x35\x9a\xb4\x42\x2d\x0a\xe5\x68\xad\x4e\x06\x1f\x58\x84\x0f\xf7\xe8\x7b\x2a\xe0\xe2\xbd\xb5\x43\x3f\x86\x3e\xc0\xb4\xaa\x0a\xd6\xa3\xe6\x39\xf8\xc3\xea\xc8\x37\xe5\xdc\x03\x78\x0b\x43\xb6\xb2\x53\x16\xdc\x50\x19\xbd\x2e\x5f\xa2\x31\xef\xf2\x61\xbe\x8b\x3f\xdc\xa4\x44\xb4\x8a\x79\xbf\xa0\x6e\x8b\xb9\xc4\x61\x5d\x5d\x41\x8b\xc1\xd9\x3c\xfb\xc8\xbd\xaf\x21\xb0\x1e\x41\x4f\x30\xbb\xe9\x72\x62\xbd\x77\x21\x2b\xcc\x29\x67\x3a\x92\x7f\xa2\x3e\x73\x4e\x47\xa6\x6a\x32\xa9\xe6\x04\xe3\xf1\xff\x21\x2c\xaf\x6f\x1f\x60\x8c\xcf\xa2\xc1\x53\xa4\xa0\x47\xb2\xbd\x52\x32\xec\xd3\xd9\xc5\xb7\x1b\x8a\x05\x74\xf9\xe5\xab\x33\xe6\xf2\x30\xa1\xcc\x7f\x52\x7c\x16\xc7\x44\x4f\xe6\x57\x00\x00\x00\xff\xff\x2e\x56\x90\x70\xf0\x03\x00\x00" +var _idtablestakingNodeStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x8f\x94\x40\x10\x85\xef\xfc\x8a\xca\x1e\x0c\x1c\x04\x0f\xc6\x03\x59\xdd\xa0\x30\xc9\xc4\x09\x6b\x16\xd4\x78\xac\x69\x8a\x05\x87\xe9\x22\x4d\x21\x93\x98\xf9\xef\xa6\x41\x10\x33\x93\x89\xb1\x2e\xdd\x84\xf7\xba\xbf\x7a\x5d\xf5\xb1\x65\x23\xb0\x69\x78\xd8\xc6\x39\xee\x1b\xca\x04\x0f\xb5\x7e\x86\xd2\xf0\x11\x5e\x9d\xb6\x71\x92\xe6\xdb\xfc\x5b\x1e\xbd\xdf\x25\x51\x1c\x3f\x25\x59\xe6\xac\x5c\x39\x1f\x48\xcf\xe2\xcd\xee\xf1\x6b\xfe\xf8\x31\x49\x67\xa1\xe3\x88\x41\xdd\xa1\x92\x9a\xb5\x8b\x47\xee\xb5\x84\xf0\x79\x53\x9f\xde\xbc\xf6\xe0\xa7\xe3\x00\x00\x04\x01\xec\x58\x61\x03\x3f\xd0\xd4\x16\x01\x4a\x36\x80\x60\xa8\x24\x43\x5a\x11\x08\x83\x54\x04\x9a\x0b\x02\xde\x7f\x27\x25\xa3\xb1\x21\x81\x4e\xf0\x40\xe6\x89\xca\x10\x5e\x5c\x76\xe1\xa7\x5c\x8c\x7b\x32\xce\x62\x29\x67\xec\x3f\xae\xf1\xd3\xff\x82\x7d\x23\x93\xae\x35\xd4\xa2\x21\x17\x95\x92\x10\xa2\x5e\xaa\x48\x29\x4b\x6f\xa9\xe1\x77\x05\x01\xec\xd9\x18\x1e\xfe\x05\xd6\x56\x47\x4d\xe9\x2f\xc4\xf0\x16\xec\xf1\xfe\x74\xc6\xfd\x6d\xfc\x77\xae\xcd\x38\xbc\xf2\x52\x2b\x51\x26\x6c\xf0\x99\x3e\xa1\x54\xde\x72\xa9\xad\x87\x07\x68\x51\xd7\xca\xbd\xfb\xc0\x7d\x53\x80\x66\x99\xd1\x6f\x81\xdf\x79\xce\xdf\xec\xeb\xe8\xae\xe1\xaf\x72\x9c\x81\x83\x6e\x82\x0a\x16\xef\xf8\xfb\xff\xf8\xec\x80\xc1\xe8\x9f\xd1\xce\xd3\x42\x27\x52\xbd\xd0\x3c\x52\x97\x61\x4f\xbb\x94\x26\x84\xce\xbd\x7f\x79\xd1\x90\x3f\xd4\x52\x15\x06\x87\x65\x50\xa7\xd5\x5b\xae\x3a\xff\x0a\x00\x00\xff\xff\x86\xf3\x84\x50\x2f\x03\x00\x00" func idtablestakingNodeStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2980,11 +2920,11 @@ func idtablestakingNodeStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0xd, 0x0, 0x9f, 0x56, 0x91, 0x6d, 0x32, 0x3d, 0xa3, 0x10, 0xcb, 0x41, 0x84, 0x26, 0x62, 0x39, 0xa9, 0xe, 0x6f, 0x2, 0xd0, 0xa3, 0xa5, 0xf5, 0x1a, 0x67, 0xe7, 0x57, 0x0, 0xb3, 0xca}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4, 0xa, 0x1e, 0xd2, 0xf6, 0xd, 0x9, 0x22, 0xa5, 0x89, 0x6e, 0xb0, 0x95, 0x31, 0xff, 0x54, 0xab, 0x41, 0xeb, 0xd7, 0x74, 0x1b, 0x6e, 0x60, 0xf7, 0x1c, 0x81, 0x20, 0xf5, 0x4b, 0xdb, 0x57}} return a, nil } -var _idtablestakingNodeStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x4f\x6b\xea\x50\x10\xc5\xf7\xf9\x14\x87\x2c\x24\xd9\x24\x9b\xc7\x5b\xc8\x7b\x95\xfe\x41\x28\x94\xb6\xa8\xed\x7e\xbc\x99\x68\x6a\x72\x27\x4c\x26\x55\x28\x7e\xf7\x12\xa3\xa2\xd8\x42\x17\x9d\x4d\x02\x77\xe6\xcc\xf9\xcd\x4c\x51\xd5\xa2\x86\x71\x29\xeb\xfb\xbb\x19\xcd\x4b\x9e\x1a\xad\x0a\xbf\x40\xae\x52\x21\xbc\x7c\x08\x83\x20\x30\x25\xdf\x90\xb3\x42\x7c\x44\x95\xb4\xde\x86\x78\x19\x17\x9b\xbf\x7f\x62\x7c\x04\x01\x00\xa4\x29\x1e\xc4\x51\x89\x77\xd2\xa2\x2b\x47\x2e\x0a\x82\x72\xce\xca\xde\x31\x4c\x60\x4b\x86\x97\x8c\x21\xf3\x37\x76\xb6\x2b\x2c\xd9\xd0\x18\xad\x58\x27\x9c\x0f\x41\xad\x2d\xa3\x4b\x17\xc9\xa3\x64\xfc\x54\xb3\x92\x89\xc6\x18\x7c\x93\x31\xdd\x09\xf5\x8e\x6a\xe5\x9a\x94\x23\x72\xce\xf6\xba\x37\xa2\x2a\xeb\x57\x2a\x5b\x8e\x31\xb8\x76\xae\x43\xe9\x10\xb0\x8f\x34\xc5\x7c\x97\xf3\x13\xe7\x5d\x34\x5c\xe6\xc9\xd1\x3e\xfe\xa3\xeb\x96\x34\x26\x4a\x0b\x4e\x7a\xad\x7f\xbf\xc1\x74\x15\x75\x0b\x1a\x7e\xb1\xb9\x93\xa4\x69\xdf\xf7\x99\x6c\x19\x1f\x2d\x76\x31\x1a\xa1\x26\x5f\xb8\x28\xbc\x95\xb6\xcc\xe0\xc5\x0e\xa0\x67\x98\xcd\xfe\x18\x28\xab\x0a\x1f\xf6\x1a\xdb\x7e\x9c\xbc\x61\xd7\x1a\x9f\x0c\xeb\x9c\xbd\xff\x9b\xf0\x9a\x34\xe3\x6c\x26\x2b\xf6\xcd\xf1\x58\xfa\xef\x41\x6f\x1b\x7c\x06\x00\x00\xff\xff\x84\x76\x84\xb1\x87\x02\x00\x00" +var _idtablestakingNodeStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x2f\xa6\x87\xd2\x43\x68\x2b\x69\xa3\x20\x88\x14\x93\x1e\x7a\x1c\x37\x13\x4d\x8d\x3b\x61\x32\xa9\x42\xf1\xbf\x97\x75\x6b\x28\x58\xa4\xef\x32\x73\xd8\x7d\xf3\xcd\x9b\x6a\xd7\xb0\x28\x4c\x6b\xde\xcf\xd2\x1c\x57\x35\x65\x8a\xdb\xca\xae\xa1\x14\xde\xc1\xed\x61\x96\x4e\x16\xf9\x2c\x7f\xcf\x93\xe7\xf9\x24\x49\xd3\xe5\x24\xcb\x82\x20\x50\x41\xdb\xa2\xd1\x8a\x6d\x88\x3b\xee\xac\xc6\xf0\x36\xad\x0e\xf7\x77\x43\xf8\x0a\x02\x00\x80\x28\x82\x39\x1b\xac\xe1\x13\xa5\x72\xce\x50\xb2\x00\x82\x50\x49\x42\xd6\x10\x28\x83\x6e\x08\x2c\x17\x04\xbc\xfa\x20\xa3\xa7\x8f\x35\x29\xb4\x8a\x5b\x92\x25\x95\x31\xdc\x5c\xc2\x8d\x16\x5c\x9c\x7a\x12\x3f\xab\x11\x6a\x50\x28\x44\x63\x34\x86\xa4\xd3\x4d\x62\x8c\xa3\x72\x34\xf0\xa3\x28\x82\x15\x8b\xf0\xfe\x3f\x10\x4e\x2d\xd5\xe5\xa8\x27\x81\x47\x70\xf6\x23\xef\xf1\x70\x1d\xeb\x29\x74\xf9\xc5\x7f\x04\xfb\xeb\x51\xa6\x2c\xb8\xa6\x57\xd4\xcd\xb0\x1f\xea\x34\x1e\x43\x83\xb6\x32\xe1\xe0\x85\xbb\xba\x00\xcb\x7a\x46\xbf\x06\x3e\x18\xfa\x34\x8e\xbe\xd0\x81\x4c\xa7\x74\xbe\xc7\xe5\x46\xbe\x5b\xd2\x1e\xa5\xa0\x22\xe7\x2d\xd9\xb6\xbf\xa6\xaf\xbd\xe3\xf1\x3b\x00\x00\xff\xff\xde\xe4\xde\xe8\x2a\x02\x00\x00" func idtablestakingNodeStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3000,11 +2940,11 @@ func idtablestakingNodeStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0x6d, 0xdc, 0x1e, 0x2c, 0x5b, 0xbb, 0xc7, 0xea, 0xf2, 0x93, 0xd9, 0x2f, 0x30, 0x7b, 0xb0, 0xc7, 0x6f, 0xd5, 0xba, 0x2a, 0x93, 0x4b, 0xa6, 0x82, 0x5d, 0x62, 0xe5, 0xe9, 0xc, 0x13, 0xed}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x4c, 0x75, 0x1a, 0x17, 0x3f, 0xb6, 0xdd, 0xcf, 0xf0, 0x65, 0x80, 0xf, 0x7d, 0x6d, 0x4b, 0x9a, 0x77, 0x8f, 0xa4, 0x2f, 0xf6, 0x70, 0x6b, 0x67, 0x6f, 0x86, 0x72, 0x23, 0x15, 0xe9, 0xa8}} return a, nil } -var _idtablestakingNodeStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xcd\x8a\xdb\x50\x0c\x85\xf7\x7e\x8a\x83\x17\xc1\xde\xd8\x9b\xd2\x45\x68\x1b\xfa\x43\xa0\x50\x5a\x68\x92\xd9\x2b\xd7\x72\xe2\xc9\xf5\x95\x91\xe5\x49\x60\xc8\xbb\x0f\xfe\x49\x98\x10\x06\x66\x31\xda\xc8\x20\xe9\xf8\x7c\xd2\xad\xea\x46\xd4\xb0\xf4\x72\xfc\xfd\x6b\x4d\x5b\xcf\x2b\xa3\x43\x15\x76\x28\x55\x6a\xc4\xf7\x85\x38\x8a\x22\x53\x0a\x2d\x39\xab\x24\x24\x54\x4b\x17\x6c\x8e\xcd\xb2\x3a\x7d\xfe\x94\xe2\x39\x8a\x00\x20\xcf\xf1\x47\x1c\x79\x3c\x91\x56\xfd\x38\x4a\x51\x10\x94\x4b\x56\x0e\x8e\x61\x02\xdb\x33\x82\x14\x0c\xd9\x3e\xb2\xb3\x61\xd0\xb3\xa1\x35\x3a\xb0\xfe\xe7\x72\x0e\xea\x6c\x9f\xdc\xbb\xc8\xfe\x4a\xc1\xff\x1a\x56\x32\xd1\x14\xb3\x37\x3a\x56\x83\xd0\xe8\xa8\x51\x6e\x48\x39\x21\xe7\x6c\xd2\xfd\x21\xaa\x72\x7c\x20\xdf\x71\x8a\xd9\x77\xe7\x7a\x94\x1e\x01\x53\xe4\x39\xb6\x43\xcf\x7b\x9c\xf7\xd1\xb2\x2f\xb3\xab\x7d\x7c\x45\xff\xb7\xac\x35\x51\xda\x71\x36\x6a\x7d\xf9\x08\xa6\x6f\x49\x7f\xa0\x39\xf2\x49\x3b\x2f\xbd\x1c\xc7\x52\x7a\x75\xd3\xc7\x62\x81\x86\x42\xe5\x92\xf8\xa7\x74\xbe\x40\x10\xbb\x30\xdd\x10\xb5\xd3\xdd\xa9\xa8\xab\x10\x8f\x1a\xe7\x71\x73\x7c\x62\xd7\x19\xbf\xda\xcb\x2d\xe6\xf8\xb5\x09\x43\x2a\xd6\x72\xe0\xd0\x5e\xdf\xc5\x98\x2f\x7a\xe7\xe8\x25\x00\x00\xff\xff\xbf\x2c\x3f\x68\x72\x02\x00\x00" +var _idtablestakingNodeStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x0f\x0f\x25\x5e\x4c\x0f\xa5\x87\xd0\x56\xd2\x46\x41\x10\x0f\x1a\x0f\x3d\xae\x9b\x89\xa6\xc6\x9d\x30\x99\x54\xa1\xf8\xdf\x4b\xdc\x9a\x8b\x20\x7d\x97\x37\x10\xf2\xed\xb7\xb3\xe5\xa1\x66\x51\x4c\x2b\x3e\xce\xd2\xcc\x6c\x2a\x5a\xa9\xd9\x97\x6e\x8b\x42\xf8\x80\xc7\xd3\x2c\x9d\x2c\xb2\x59\xf6\x99\x25\xef\xf3\x49\x92\xa6\xcb\xc9\x6a\x15\x04\x81\x8a\x71\x8d\xb1\x5a\xb2\x0b\xcd\x81\x5b\xa7\x31\xd6\xd3\xf2\xf4\xfc\x34\xc4\x4f\x10\x00\x40\x14\x61\xce\xd6\x54\xf8\x36\x52\x76\x64\x14\x2c\x30\x10\x2a\x48\xc8\x59\x82\x32\x74\x47\x70\x9c\x13\x78\xf3\x45\x56\x2f\x3f\x56\xa4\x68\xd4\xec\x49\x96\x54\xc4\x78\xb8\x95\x1b\x2d\x38\xbf\xcc\x24\xfe\xac\x5a\xa8\x36\x42\xa1\xb1\x56\x63\x24\xad\xee\x12\x6b\x3b\xab\xce\x06\x7f\x89\x22\x6c\x58\x84\x8f\xff\x91\xe8\xd2\x50\x55\x8c\x7a\x13\xbc\xa2\xc3\x8f\x3c\xe3\xe5\xbe\xd6\x5b\xd8\xed\x2f\x46\xd4\x28\x8b\xd9\x52\x54\x54\x7c\xf4\x9f\x86\x3d\xbf\xcb\x78\x8c\xda\xb8\xd2\x86\x83\x0f\x6e\xab\x1c\x8e\xf5\x6a\x79\xcf\x71\x30\xf4\x17\x3f\xfb\xa2\x13\xd9\x56\xe9\xba\xfa\x5b\x79\x3f\xad\xdd\xa5\xf2\x8c\xf7\xe4\x9a\xfe\xe1\x7c\xf7\xc4\xf3\x6f\x00\x00\x00\xff\xff\x41\xb5\x61\xec\x15\x02\x00\x00" func idtablestakingNodeStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3020,11 +2960,11 @@ func idtablestakingNodeStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0xb1, 0xec, 0x45, 0x6a, 0xd6, 0xd6, 0x63, 0x55, 0x11, 0x3, 0xac, 0x13, 0xe4, 0x53, 0xd3, 0xb6, 0x8b, 0x82, 0xb3, 0x97, 0x39, 0x1d, 0x61, 0x2d, 0xb5, 0x64, 0x2d, 0xc3, 0x2f, 0xa9, 0x72}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfc, 0x6b, 0x10, 0x5f, 0x81, 0x24, 0xe5, 0x30, 0x13, 0x2, 0x34, 0x58, 0x85, 0xd0, 0x3d, 0x73, 0xf9, 0xe6, 0xd2, 0x19, 0x17, 0xce, 0x6e, 0xd7, 0x65, 0x4e, 0xc5, 0x26, 0x66, 0x3c, 0x3f, 0xdf}} return a, nil } -var _idtablestakingNodeUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x51\xcd\x4a\xf3\x50\x10\xdd\xe7\x29\x0e\x59\x94\x64\x93\xee\xcb\xf7\x59\xaa\x22\x08\xa2\x62\xc5\xfd\xf4\x66\xd2\xc6\xde\xde\x09\x93\x89\x15\x4a\xdf\x5d\xf2\xd3\xd2\x52\x05\x17\xce\xea\xc2\x3d\x73\x7e\xe6\x94\x9b\x4a\xd4\x70\xe7\x65\x7b\x7f\xfb\x4a\x0b\xcf\x73\xa3\x75\x19\x96\x28\x54\x36\x88\x2f\x3f\xe2\x28\x8a\x4c\x29\xd4\xe4\xac\x94\x80\x5d\x14\x01\xc0\x78\x8c\x07\x71\xe4\xf1\x41\x5a\xb6\x70\x14\xa2\x20\x28\x17\xac\x1c\x1c\xc3\x04\xb6\x62\x04\xc9\x19\xb2\x78\x67\x67\xdd\xa2\x67\x43\x6d\xb4\x66\x7d\xe1\x62\x02\x6a\x6c\x95\x5c\xaa\x66\x8f\x92\xf3\x53\xc5\x4a\x26\x9a\x62\xf4\x03\x62\xde\x11\xf5\x8e\x2a\xe5\x8a\x94\x13\x72\xce\x06\xde\x6b\x51\x95\xed\x1b\xf9\x86\x53\x8c\x66\xce\x49\x13\x2c\xc5\xae\xc3\x0f\x29\x16\x1d\xe6\x37\xce\xdb\xa9\xd9\x17\xd9\xd1\x3e\xfe\xa3\x55\xcb\x6a\x13\xa5\x25\x67\x3d\xd7\xbf\xbf\xc8\x74\x95\xb4\x85\x4c\xbe\x69\xea\x04\x34\xef\x75\x9f\xc9\x56\xe9\xd1\x62\x3b\xd3\x29\x2a\x0a\xa5\x4b\xe2\x1b\x69\x7c\x8e\x20\x76\x08\x7a\x16\xb3\x1e\xca\xa7\x7c\x53\x86\xb8\xe7\xd8\xf7\xe7\xe4\x4f\x76\x8d\xf1\xc9\xb1\xce\xb3\x67\x4d\xe8\xde\x33\xef\x93\xc3\xe2\x3e\xfa\x0a\x00\x00\xff\xff\xa1\x88\x84\x20\x60\x02\x00\x00" +var _idtablestakingNodeUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x41\x6b\xea\x50\x10\x85\xf7\xf9\x15\x07\x17\x8f\xb8\x89\x6f\x2d\xef\x3d\xc9\x6b\x2c\x08\x22\xc5\x64\xd3\xe5\x78\x9d\x68\xea\xf5\x4e\x18\x27\x55\x10\xff\x7b\x49\x52\xa5\x60\x91\xce\xe6\xce\x62\xe6\x9c\xef\x9e\xa9\xf6\xb5\xa8\xe1\xd9\xcb\x71\x96\x15\xb4\xf2\x9c\x1b\xed\xaa\xb0\x41\xa9\xb2\xc7\xef\xd3\x2c\x9b\x2e\x8a\x59\xf1\x5a\xa4\xff\xe7\xd3\x34\xcb\x96\xd3\x3c\x8f\xa2\xc8\x94\xc2\x81\x9c\x55\x12\x70\x8e\x22\x00\x18\x8d\x30\x17\x47\x1e\xef\xa4\x55\xab\x84\x52\x14\x04\xe5\x92\x95\x83\x63\x98\xc0\xb6\x8c\x20\x6b\x86\xac\xde\xd8\x59\xb7\xe8\xd9\x70\x30\xda\xb1\x2e\xb9\x1c\xe3\xd7\x3d\x4c\xb2\x90\x75\xd7\xb3\xf6\x5e\xb5\x72\x4d\xca\x31\x39\x67\x63\xa4\x8d\x6d\x53\xe7\xa4\x09\x36\xc4\xb9\x1b\xf8\x04\x5a\x89\xaa\x1c\x7f\x02\xd1\xd6\x81\x7d\x99\xdc\x48\xf0\x17\xad\x7c\xd2\x6b\xfc\x79\x8c\xf5\x2f\x6e\xf3\x1a\x7f\x13\xe4\x97\xa1\xdc\x44\x69\xc3\x2f\x64\xdb\xe1\xcd\xb4\xad\xc9\x04\x35\x85\xca\xc5\x83\x27\x69\xfc\x1a\x41\xec\x8a\xfe\x08\x7c\x30\xec\xd3\xb8\xf4\x0f\x9f\xd8\x35\xc6\xd7\x7b\xdc\xff\x28\x69\x42\xd7\xa7\xde\xc7\xb7\xd5\xcb\x47\x00\x00\x00\xff\xff\x71\x58\x69\x70\x03\x02\x00\x00" func idtablestakingNodeUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -3040,11 +2980,11 @@ func idtablestakingNodeUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0x1c, 0xa5, 0xdd, 0xf7, 0xea, 0x9b, 0x33, 0xd5, 0xdd, 0xc3, 0x4a, 0x31, 0x12, 0x57, 0x68, 0x42, 0x35, 0x8c, 0x64, 0xa7, 0x47, 0x11, 0x93, 0x34, 0xbe, 0x86, 0xb7, 0x1b, 0x2, 0x80, 0x5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4e, 0x95, 0x37, 0xa2, 0xd8, 0xd1, 0x91, 0x70, 0xdb, 0x79, 0x3a, 0x20, 0x5d, 0x7, 0x45, 0xe7, 0xfb, 0x54, 0xb7, 0xc3, 0x41, 0x2f, 0x7e, 0xe9, 0xaa, 0x3a, 0x69, 0x13, 0xb6, 0xd6, 0x76, 0x27}} return a, nil } -var _idtablestakingNodeUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xc1\x4a\xf3\x50\x10\x85\xf7\x79\x8a\x43\x16\x25\xd9\x24\xfb\xf2\xff\x96\xaa\x08\x82\x54\x31\xe2\x7e\x7a\x33\x69\x63\xd3\x3b\x61\x32\x31\x82\xf4\xdd\x25\x4d\x5a\x5a\xaa\xe0\xc2\xd9\xde\xb9\xdf\x9c\x33\x73\xca\x6d\x2d\x6a\xb8\xab\xa4\xbb\xbf\x7d\xa1\x65\xc5\x99\xd1\xa6\xf4\x2b\x14\x2a\x5b\x84\x97\x0f\x61\x10\x98\x92\x6f\xc8\x59\x29\x3e\xf2\xdc\xcd\xf3\x5c\xb9\x69\xa6\xc8\x4c\x4b\xbf\x8a\xf1\x19\x04\x00\x90\xa6\x78\x10\x47\x15\xde\x49\xcb\x9e\x80\x42\x14\x04\xe5\x82\x95\xbd\x63\x98\xc0\xd6\x0c\x2f\x39\x43\x96\x6f\xec\x6c\xff\xb1\x62\x43\x63\xb4\x61\x7d\xe6\x62\x0a\x6a\x6d\x1d\x5d\x0a\x49\x16\x92\xf3\x63\xcd\x4a\x26\x1a\x63\xf2\x43\x47\xb6\x07\x0d\x8a\x6a\xe5\x9a\x94\x23\x72\xce\x46\xee\xb5\xa8\x4a\xf7\x4a\x55\xcb\x31\x26\x73\xe7\xa4\xf5\xd6\x5b\xc0\x58\x69\x8a\xe5\xbe\xe7\x37\xca\xfb\x6a\xb8\x2a\x92\xa3\x7c\xfc\x47\x3f\x2d\x69\x4c\x94\x56\x9c\x0c\xac\x7f\x7f\xe1\xe9\x2a\xea\x6f\x34\xfd\xe6\x78\x27\x4d\xd9\x30\xf7\x89\x6c\x1d\x1f\x25\xf6\x35\x9b\xa1\x26\x5f\xba\x28\xbc\x91\xb6\xca\xe1\xc5\x0e\x46\xcf\x6c\x36\x63\x1e\x28\xdf\x96\x3e\x1c\x18\xbb\x61\x9d\xfc\xc1\xae\x35\x3e\x59\xd6\xb9\xf7\xa4\xad\x73\x32\x5e\xb0\x75\xa2\x3d\x64\x4c\xca\x49\x68\x0e\xbc\x5d\xf0\x15\x00\x00\xff\xff\x85\x75\xea\x7b\x8a\x02\x00\x00" +var _idtablestakingNodeUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x0f\x0f\x25\x5e\x92\x9e\x43\x5b\x49\x1b\x0b\x82\x48\x31\xb9\xf4\xb8\x6e\x26\x9a\x1a\x77\xc2\x64\xd2\x08\xc5\xff\x5e\x62\x54\x04\x8b\x74\x4e\x7b\xd8\xfd\xe6\xdb\xf7\xca\x5d\xcd\xa2\x78\xaf\xb8\x9b\x25\x99\x59\x55\x94\xaa\xd9\x96\x6e\x8d\x42\x78\x87\xc7\xfd\x2c\x99\x2e\xb2\x59\xf6\x99\xc5\xaf\xf3\x69\x9c\x24\xcb\x69\x9a\x7a\x9e\x8a\x71\x8d\xb1\x5a\xb2\xf3\x1d\x75\x71\x9e\x0b\x35\x4d\x84\x54\xa5\x74\xeb\x31\x7e\x3c\x0f\x00\xc2\x10\x73\xb6\xa6\xc2\xb7\x91\xb2\x87\xa3\x60\x81\x81\x50\x41\x42\xce\x12\x94\xa1\x1b\x82\xe3\x9c\xc0\xab\x2f\xb2\x7a\x7c\x58\x91\xa2\x51\xb3\x25\x59\x52\x11\xe1\xe1\xd6\x2f\x58\x70\x7e\x3c\x93\x0c\xbb\x6a\xa1\xda\x08\xf9\xc6\x5a\x8d\x10\xb7\xba\x89\xad\xe5\xd6\x69\x6f\x83\xd3\x84\x21\x56\x2c\xc2\xdd\x7f\x24\xfa\x69\xa8\x2a\x82\x8b\x09\x9e\xd1\xe3\x83\x81\xf1\x74\x5f\xeb\xc5\xef\x23\x8c\xfe\xc8\xf6\xea\x52\xaa\x2c\x66\x4d\x1f\x46\x37\xe3\xcb\xd2\x7e\x26\x13\xd4\xc6\x95\xd6\x1f\xbd\x71\x5b\xe5\x70\xac\x67\xf5\x7b\xe2\xa3\x81\x72\x18\x32\xa1\x3d\xd9\x56\xe9\x5c\xc7\xed\x87\x82\xb6\xce\x8d\xd2\x82\xb4\x63\xe9\xd5\x4e\x4d\x5e\x95\x3a\xf6\x4e\xc4\xc3\x6f\x00\x00\x00\xff\xff\xe2\xcc\x6e\xd8\x2c\x02\x00\x00" func idtablestakingNodeUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -3060,11 +3000,11 @@ func idtablestakingNodeUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xd2, 0x71, 0xf6, 0xe3, 0x80, 0x71, 0xc6, 0xeb, 0x99, 0xb9, 0x5f, 0x5b, 0x7b, 0x58, 0x5a, 0x60, 0xeb, 0x99, 0x8d, 0x8e, 0x29, 0xae, 0x92, 0xd0, 0x8c, 0x1, 0xe5, 0x56, 0xf7, 0x10, 0xee}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0xff, 0xd7, 0xe9, 0x86, 0x61, 0x79, 0xad, 0x99, 0xa6, 0xaa, 0x48, 0x6, 0xe9, 0x53, 0x70, 0xa0, 0xae, 0x82, 0xf6, 0x21, 0xec, 0x11, 0x8, 0x6, 0x4d, 0x42, 0xd1, 0xc6, 0xe5, 0x8, 0x9d}} return a, nil } -var _idtablestakingNodeWithdraw_reward_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x4f\x6b\xdb\x40\x10\xc5\xef\xfb\x29\x06\x1d\x8c\x74\xa8\x74\x29\x3d\x98\xb4\xa1\x7f\x30\x14\x42\x53\xe2\x34\x3d\x8f\x57\xa3\x78\xeb\xf5\x8e\x18\x8d\xaa\x40\xc9\x77\x2f\x5a\xfd\x41\xae\x6b\x28\x25\x73\x11\x62\xdf\xbc\x79\x3f\xcd\xca\x1d\x6b\x16\x85\x8d\xe7\xee\xf3\xa7\x7b\xdc\x79\xda\x2a\x1e\x5c\x78\x84\x4a\xf8\x08\xc9\xf9\x41\x62\x16\x3d\xf7\x7c\xa0\xb0\x90\xc6\xf7\xc4\x18\xa3\x82\xa1\x41\xab\x8e\x43\x8a\x47\x6e\x83\xae\xe1\xdb\xc6\x3d\xbd\x79\x9d\xc1\x2f\x63\x00\x00\x8a\x02\x6e\xd8\xa2\x87\x9f\x28\xae\x1f\x00\x15\x0b\x20\x08\x55\x24\x14\x2c\x81\x32\xe8\x9e\x20\x70\x49\xc0\xbb\x1f\x64\x35\x36\x7a\x52\x68\x14\x0f\x24\x77\x54\xad\x01\x5b\xdd\xa7\xe7\x39\xf3\x2f\x5c\xd2\x6d\x4d\x82\xca\x92\xc1\xea\x82\x62\x1b\x8d\xcc\x6c\x5c\x4d\x14\xd1\x7b\x35\x43\xe5\x0f\xd8\x7a\x1d\x74\xb5\x50\x8d\x42\x29\x5a\xab\xe3\xfc\x0f\x2c\xc2\xdd\x03\xfa\x96\x32\x58\xbd\xb7\xb6\x47\xee\x51\x61\xac\xa2\x80\x5d\xd4\xfc\x0b\x61\x5f\x0d\xf9\x2a\x9f\x31\xe1\x2d\xf4\xd3\xf2\x46\x59\xf0\x91\xf2\xc1\xeb\xea\x25\xd8\xdf\xa5\xfd\xfe\xd6\x7f\xb9\x03\x0b\xd1\x76\x98\xfb\x15\x75\x9f\xcd\x11\xfb\xba\xbe\x86\x1a\x83\xb3\x69\xf2\x91\x5b\x5f\x42\x60\x9d\x40\x4f\x30\x9b\xf1\x5a\x61\x79\x74\x21\xc9\xcc\x29\xe7\xf2\xab\x5f\x40\xfd\x73\x15\x53\xec\x62\xd4\x15\xb3\x47\x3c\xfe\xbf\x94\x9b\x9b\xdb\xef\x10\xfb\x93\xc1\xe0\x79\x08\x4a\x4f\x64\x5b\xa5\xc5\x3e\xcf\x62\xe7\x25\xd5\xdc\x38\x1d\x63\x5d\xbd\x3a\x5d\x60\xde\x39\xdd\x97\x82\xdd\x1d\x75\x28\x25\x95\xb1\xaf\x99\x7f\x8e\xe1\x99\x4d\x53\x9f\xcd\xef\x00\x00\x00\xff\xff\x59\x46\xe5\x62\x9a\x03\x00\x00" +var _idtablestakingNodeWithdraw_reward_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x8f\x93\x50\x10\xc7\xef\x7c\x8a\xc9\x1e\x4c\x7b\x10\x3c\x18\x0f\xcd\xea\xa6\x5a\x9a\x34\x36\x5d\x53\x50\xe3\x71\xfa\x18\x96\x67\xe9\x1b\x32\x0c\xd2\xc4\xec\x77\x37\x0f\x16\x64\x63\xd3\x98\x9d\xcb\x40\xf8\xff\x67\x7e\xcc\x8c\x3d\x55\x2c\x0a\xeb\x92\xdb\xcd\x2a\xc5\x43\x49\x89\xe2\xd1\xba\x07\xc8\x85\x4f\xf0\xe6\xbc\x59\xc5\xbb\x74\x93\xfe\x48\x97\x1f\xb7\xf1\x72\xb5\xda\xc7\x49\x12\x4c\x5c\x29\x1f\xc9\x0d\xe2\xf5\xf6\xfe\x7b\x7a\xff\x39\xde\x0d\xc2\x20\x50\x41\x57\xa3\x51\xcb\x6e\x86\x27\x6e\x9c\x2e\xe0\xeb\xda\x9e\xdf\xbd\x9d\xc3\xef\x20\x00\x00\x88\x22\xd8\xb2\xc1\x12\x7e\xa1\x58\x8f\x00\x39\x0b\x20\x08\xe5\x24\xe4\x0c\x81\x32\x68\x41\xe0\x38\x23\xe0\xc3\x4f\x32\xda\x19\x4b\x52\xa8\x15\x8f\x24\x7b\xca\x17\xf0\xea\xdf\xbf\x08\x77\x9c\x75\xcf\x24\xc1\x68\xc9\x07\xec\xbf\xae\xee\x35\xfc\x86\x4d\xa9\xbd\xae\x12\xaa\x50\x68\x86\xc6\xe8\x02\x96\x8d\x16\x4b\x63\x3c\xbd\xa7\x86\xa7\x88\x22\x38\xb0\x08\xb7\xff\x03\xeb\xa3\xa6\x32\x0f\x47\x62\x78\x0f\xbe\x7c\xd8\xd7\xb8\xbd\x8e\xff\x61\xe6\x67\xbc\xb8\xb0\xa9\x89\x28\x51\x16\x7c\xa0\x2f\xa8\xc5\x7c\x6c\xea\xe3\xee\x0e\x2a\x74\xd6\xcc\x6e\x3e\x71\x53\x66\xe0\x58\x07\xf4\x6b\xe0\x37\xf3\xe0\x39\xfb\x74\x74\x97\xf0\x27\x73\x1c\x80\xa3\xba\x87\x8a\x46\x6f\xf7\xf9\x65\x7c\xfe\xc0\xa0\xf3\x0f\x68\x8f\x7d\xa2\x33\x99\x46\x69\x38\xa9\x8b\xc0\x61\x46\x15\xd7\x56\x9f\xc0\x6e\x5f\x3f\x5f\x47\xd8\x5a\x2d\x32\xc1\x76\x4f\x2d\x4a\x46\x59\xe7\xab\xc7\xab\xed\xf3\x7c\xec\xfb\xf8\x27\x00\x00\xff\xff\x60\x5a\x76\x7d\x3c\x03\x00\x00" func idtablestakingNodeWithdraw_reward_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3080,11 +3020,11 @@ func idtablestakingNodeWithdraw_reward_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/withdraw_reward_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x52, 0xeb, 0x3d, 0x25, 0xa1, 0xa5, 0x3e, 0xc5, 0x3, 0xd5, 0xde, 0x8f, 0xc3, 0xa1, 0x8, 0xb9, 0x75, 0x58, 0x54, 0x20, 0xdd, 0xea, 0x4d, 0x82, 0x1d, 0xd1, 0x39, 0x18, 0xbd, 0x95, 0x4c, 0xe7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5f, 0x9c, 0xf5, 0xbe, 0x1e, 0xf3, 0xb8, 0x1e, 0x25, 0x2c, 0x3b, 0x3, 0xf1, 0xc8, 0xaf, 0xae, 0x4b, 0xb5, 0xb5, 0x88, 0x5e, 0x4f, 0x61, 0x4, 0x43, 0x82, 0xe4, 0xaf, 0x60, 0x6b, 0xf1, 0x19}} return a, nil } -var _idtablestakingNodeWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x4f\x6b\xdb\x40\x10\xc5\xef\xfb\x29\x06\x1d\x8c\x74\xa8\x74\x29\x3d\x98\xb4\xa1\x7f\x30\x14\x42\x53\xea\x24\x3d\x8f\x57\xa3\x78\xeb\xf5\x8e\x18\x8d\xaa\x40\xc9\x77\x2f\x5a\xfd\x41\xae\x6b\x28\x25\x73\x31\xd6\xbe\x79\xf3\x7e\x9a\x95\x3b\xd6\x2c\x0a\x1b\xcf\xdd\xe7\x4f\x77\xb8\xf3\xb4\x55\x3c\xb8\xf0\x08\x95\xf0\x11\x92\xf3\x83\xc4\x2c\x7a\xee\xf8\x40\x61\x21\x8d\xff\x13\x63\x8c\x0a\x86\x06\xad\x3a\x0e\x29\x1e\xb9\x0d\xba\x86\xfb\x8d\x7b\x7a\xf3\x3a\x83\x5f\xc6\x00\x00\x14\x05\xdc\xb0\x45\x0f\x3f\x51\x5c\x3f\x00\x2a\x16\x40\x10\xaa\x48\x28\x58\x02\x65\xd0\x3d\x41\xe0\x92\x80\x77\x3f\xc8\x6a\x6c\xf4\xa4\xd0\x28\x1e\x48\xbe\x51\xb5\x06\x6c\x75\x9f\x9e\xe7\xcc\xbf\x70\x49\xb7\x35\x09\x2a\x4b\x06\xab\x0b\x8a\x6d\x34\x32\xb3\x71\x35\x51\x44\xef\xd5\x0c\x95\x3f\x60\xeb\x75\xd0\xd5\x42\x35\x0a\xa5\x68\xad\x8e\xf3\x3f\xb0\x08\x77\x0f\xe8\x5b\xca\x60\xf5\xde\xda\x1e\xb9\x47\x85\xb1\x8a\x02\x76\x51\xf3\x2f\x84\x7d\x35\xe4\xab\x7c\xc6\x84\xb7\xd0\x4f\xcb\x1b\x65\xc1\x47\xca\x07\xaf\xab\x97\x60\x7f\x97\xf6\xfb\x5b\xff\xe5\x0e\x2c\x44\xdb\x61\xee\x57\xd4\x7d\x36\x47\xec\xeb\xfa\x1a\x6a\x0c\xce\xa6\xc9\x47\x6e\x7d\x09\x81\x75\x02\x3d\xc1\x6c\xc6\x6b\x85\xe5\xd1\x85\x24\x33\xa7\x9c\xcb\xb7\x7e\x01\xf5\xcf\x55\x4c\xb1\x8b\x51\x57\xcc\x1e\xf1\xf8\xff\x52\x6e\x6e\x6e\xbf\x43\xec\x4f\x06\x83\xe7\x21\x28\x3d\x91\x6d\x95\x16\xfb\x3c\x8b\x9d\x97\x54\x73\xe3\x74\x8c\x75\xf5\xea\x74\x81\x79\xe7\x74\x5f\x0a\x76\xf7\x21\x3e\x2b\x63\x5f\x33\x7f\x1c\xc3\x6f\x36\x4d\x7d\x36\xbf\x03\x00\x00\xff\xff\x34\xcb\x1a\xc9\x9a\x03\x00\x00" +var _idtablestakingNodeWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xcf\x8e\x94\x40\x10\xc6\xef\x3c\x45\x65\x0f\x06\x0e\x82\x07\xe3\x81\xac\x6e\x50\x98\x64\xe2\x64\xd6\x2c\xac\xc6\x63\x4d\x53\x2c\xed\x30\x5d\xa4\x29\x64\x12\xb3\xef\x6e\x1a\x16\x64\xe3\x64\x63\xac\x4b\xf3\xe7\xfb\xaa\x7e\x5d\x55\xfa\xd4\xb2\x15\xd8\x34\x3c\x6c\xd3\x02\x0f\x0d\xe5\x82\x47\x6d\x1e\xa0\xb2\x7c\x82\x37\xe7\x6d\x9a\xed\x8b\x6d\xf1\xbd\x48\x3e\xee\xb2\x24\x4d\xef\xb2\x3c\xf7\x56\xae\x82\x8f\x64\x66\xf1\x66\x77\xfb\xad\xb8\xfd\x9c\xed\x67\xa1\xe7\x89\x45\xd3\xa1\x12\xcd\xc6\xc7\x13\xf7\x46\x62\xb8\xdf\xe8\xf3\xbb\xb7\x01\xfc\xf2\x3c\x00\x80\x28\x82\x1d\x2b\x6c\xe0\x27\x5a\xed\x10\xa0\x62\x0b\x08\x96\x2a\xb2\x64\x14\x81\x30\x48\x4d\x60\xb8\x24\xe0\xc3\x0f\x52\x32\x1a\x1b\x12\xe8\x04\x8f\x64\xef\xa8\x8a\xe1\xd5\xdf\xb7\x08\xf7\x5c\x8e\xcf\x64\xbd\xc5\x52\xcd\xd8\x7f\x5c\xe3\x6b\xf8\x15\xfb\x46\x26\x5d\x6b\xa9\x45\x4b\x3e\x2a\x25\x31\x24\xbd\xd4\x89\x52\x8e\xde\x51\xc3\x53\x44\x11\x1c\xd8\x5a\x1e\xfe\x05\xd6\x45\x47\x4d\x15\x2e\xc4\xf0\x1e\x5c\xfa\x70\xca\x71\xfd\x32\xfe\x07\xdf\xf5\x38\xbe\x30\xa9\x95\x28\x17\xb6\xf8\x40\x5f\x50\xea\x60\x29\xea\xe2\xe6\x06\x5a\x34\x5a\xf9\x57\x9f\xb8\x6f\x4a\x30\x2c\x33\xfa\x4b\xe0\x57\x81\xf7\x9c\x7d\xdd\xba\x4b\xf8\xab\x3e\xce\xc0\x51\x37\x41\x45\x8b\x77\xfc\xfd\x7f\x7c\x6e\xc1\x60\xf4\xcf\x68\x8f\xd3\x41\x67\x52\xbd\xd0\xbc\x52\x17\x81\xc3\x92\x5a\xee\xb4\x3c\x81\x5d\xbf\x7e\x3e\x8e\x70\xd0\x52\x97\x16\x87\x7b\x33\x7e\x2b\x47\x5f\xb7\x6c\xed\x74\x06\x4b\xdd\xc7\xdf\x01\x00\x00\xff\xff\x0d\xd7\x89\xd6\x3c\x03\x00\x00" func idtablestakingNodeWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3100,11 +3040,11 @@ func idtablestakingNodeWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x77, 0xc9, 0x29, 0x2b, 0x34, 0x2, 0xd7, 0x10, 0x4e, 0x68, 0xa9, 0x5e, 0x1e, 0x2d, 0xc5, 0xd9, 0xdb, 0xca, 0xd0, 0x10, 0xb4, 0x22, 0xef, 0xd4, 0xa5, 0x9c, 0xe5, 0xcd, 0xe, 0xb5, 0x16, 0xa8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0x80, 0xfb, 0x68, 0x62, 0x31, 0x5b, 0x95, 0x88, 0x56, 0xa3, 0xd1, 0xe9, 0x54, 0xb3, 0xe9, 0x58, 0xcc, 0x3f, 0xf4, 0x64, 0x15, 0x1c, 0x8, 0xbb, 0x85, 0xd9, 0x8d, 0x1e, 0x30, 0x5e, 0x2b}} return a, nil } -var _idtablestakingScriptsGet_approved_but_not_staked_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x31\x8f\x9b\x40\x10\x85\x7b\x7e\xc5\x8b\x2b\x68\xec\xde\x12\x45\x22\x2b\x92\xa5\x24\x8d\xdd\x59\x14\x6b\x18\xcc\xca\xcb\x0e\x99\x1d\x9c\x9c\x2c\xfe\xfb\x09\xf0\x01\x96\x4f\xb7\x05\x12\xbb\xdf\xe3\x7b\x8c\xd6\xd6\x0d\x8b\xe2\xa7\xe3\x7f\xfb\xdd\xd1\x9c\x1d\x1d\xd4\x5c\xad\xbf\xa0\x14\xae\xb1\x7a\x3d\x58\x45\xd1\x66\x83\x63\x65\x03\x42\x2e\xb6\x51\x08\x69\x2b\x3e\x40\x2b\x82\xb3\x41\xc1\x25\x3c\x17\xd4\xef\x18\x85\x11\x02\xfb\xe1\xd4\x34\x8d\xf0\x8d\x8a\x11\x3b\xb7\x8a\x82\xe1\x59\x91\xb7\x22\xe4\xd5\xbd\xa1\x32\x37\x82\xf2\x95\x7c\x40\x50\x73\xa5\x02\xe6\xcc\xfd\x5e\x45\xa8\xad\xb7\x75\x5b\x43\xe8\x6f\x6b\x85\x6a\xf2\xba\x8e\x4c\x9e\x53\x08\xb1\x71\x2e\x41\xd9\x7a\xd4\xc6\xfa\x38\xd9\xe2\x74\x50\xb1\xfe\x92\xe1\x1e\x01\x80\x23\x9d\xfc\xfb\x5d\x40\xfa\xc9\x4f\xaf\x2f\xa4\xdf\x1f\xcc\x2f\x1b\x34\x4e\xa6\xe8\xd8\xe5\xab\xe0\x61\x20\xfe\x70\x41\xfb\x5d\x88\x93\xe8\x35\xfa\xdb\x34\x5b\xdc\xc7\x5a\x5b\xfc\x60\x76\x1d\x52\xdc\xbb\x81\x2c\x59\x26\x12\xd6\x2f\x84\x63\xff\x7e\x2d\xbf\x74\xfa\x78\xc9\x90\x42\xa5\xa5\x81\xea\x66\x2d\xfd\x57\x31\x8f\x3a\x8b\x69\xa4\x38\x65\x93\x70\x1e\x48\xaf\x5c\x8e\x67\x96\xda\xf2\xd9\x3b\x53\x19\xbe\x8d\xea\x05\xdd\xaf\xa5\x79\x6d\x9a\x86\x7c\x11\xcf\xa9\x64\x62\xbb\x68\x7e\x8e\x97\xe8\x29\x1a\x75\xef\x01\x00\x00\xff\xff\x1f\x13\x7f\x5b\x9e\x02\x00\x00" +var _idtablestakingScriptsGet_approved_but_not_staked_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\xc1\xca\x9b\x40\x14\x85\xf7\x3e\xc5\xe9\x4e\x37\xf9\xbb\x0e\xb8\x48\x30\x05\x21\xcd\xa2\xba\x29\xc1\xc5\x18\xaf\x71\x88\xce\x4c\x67\xee\xa4\x29\xc1\x77\x2f\x6a\xaa\x86\x96\xce\x42\xf0\xfa\x1d\xbf\xe3\x45\xd9\x19\x6d\x19\x5f\x5a\xfd\x33\x4d\x72\x51\xb6\x94\xb1\xb8\x49\x75\x45\x6d\x75\x87\xcf\x8f\x34\x39\x9c\xf2\x34\xff\x9e\xef\xf6\xc7\xc3\x2e\x49\xbe\x1d\xb2\x2c\x08\x3e\x3e\x90\x37\xd2\xc1\x5d\xac\x34\x0c\x4b\xec\xad\x72\xe0\x86\xd0\x4a\xc7\xd0\x35\x94\xae\x68\x98\x08\x86\xb0\x04\xad\xc6\xa7\xc2\x18\xab\xef\x54\x4d\x58\xe9\x19\x95\x86\xd2\x8c\x8b\xb7\x96\x14\xb7\xbf\xd0\x88\x3b\x81\xf5\x8d\x94\x83\x63\x71\xa3\x0a\xa2\xd4\xc3\xac\x21\x74\x52\xc9\xce\x77\xb0\xf4\xc3\x4b\x4b\x1d\x29\xde\x04\xc6\x97\xa8\xbd\x42\x27\xa4\x0a\xa3\x2d\xce\x19\x5b\xa9\xae\x05\x9e\x01\x00\xb4\xc4\xb3\x37\x4d\x1c\xe2\x7f\x7c\xee\xe6\x4a\xbc\x7b\x31\x47\xe9\x38\x8c\xe6\xe8\xd4\xe1\x7f\xc1\x6c\x24\x4e\xba\xa2\x34\x71\x61\x14\xfc\x1d\xfd\x2a\xcc\x16\xcf\xa9\xd6\x16\x7b\xad\xdb\x1e\x31\x9e\xfd\x48\xd6\xda\xce\x24\xa4\x5a\x09\xa7\xfe\xc3\x59\xbf\xe9\xfc\xe7\xa6\x40\x0c\xb6\x9e\x46\xaa\x5f\xb4\xf4\x60\x2b\x5e\x75\x56\xdb\x88\x71\x2e\x66\xe1\xb2\x90\x41\xb9\x5e\xcf\x22\x95\xf5\xbb\x77\xa1\x0a\x7c\x9a\xd4\x2b\x7a\x38\x6b\xf3\x46\x18\x43\xaa\x0a\x97\x54\x34\xb3\x7d\xb0\x5c\xa7\x9f\xe7\x2d\x1a\xf4\xbf\x03\x00\x00\xff\xff\xa2\xd8\x97\xd5\x98\x02\x00\x00" func idtablestakingScriptsGet_approved_but_not_staked_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -3120,11 +3060,11 @@ func idtablestakingScriptsGet_approved_but_not_staked_nodesCdc() (*asset, error) } info := bindataFileInfo{name: "idTableStaking/scripts/get_approved_but_not_staked_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x14, 0xa8, 0xd9, 0xd7, 0xa2, 0x3c, 0xd5, 0x82, 0xed, 0xbe, 0x41, 0xd5, 0xa4, 0x94, 0x1e, 0x60, 0x33, 0x2f, 0x2e, 0x61, 0x5a, 0x62, 0x82, 0xc9, 0x65, 0x58, 0xaf, 0xf, 0x89, 0x70, 0xdd, 0xec}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc7, 0xd1, 0x94, 0x0, 0xe, 0x54, 0x44, 0x5c, 0x91, 0xdc, 0xe, 0x56, 0xa7, 0x76, 0x7d, 0x4, 0x90, 0x93, 0xa2, 0x39, 0xc3, 0x18, 0x9f, 0x62, 0x8e, 0x5f, 0xa4, 0xb, 0x33, 0x42, 0xc4, 0xc4}} return a, nil } -var _idtablestakingScriptsGet_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\x03\x41\x0c\x85\xef\xf3\x2b\x1e\x7b\xda\xbd\xb4\x77\x41\x8a\x28\x82\xe0\xad\xbd\x89\x87\x38\x9b\x6e\x43\x67\x67\x86\x24\xa3\x88\xf8\xdf\x65\x5b\x11\xc5\xe6\x9a\x7c\x79\xdf\x93\xb9\x16\x75\xdc\xa7\xf2\xf6\x70\xb7\xa3\x97\xc4\x5b\xa7\xa3\xe4\x09\x7b\x2d\x33\xba\xff\x8b\x2e\x84\xf5\x1a\xbb\x83\x18\x2c\xaa\x54\x87\xb2\x37\xcd\x06\x3f\x30\x62\x53\xe5\xec\xa0\x5a\xb5\xbc\xf2\x88\x24\xe6\x21\x50\x8c\x6c\xd6\x53\x4a\x03\xf6\x2d\x63\x26\xc9\xfd\x70\x85\xa7\xad\xab\xe4\xe9\x19\x1f\x01\x00\x12\xff\x90\x8f\x62\x8e\xeb\x0b\x62\xab\x89\xfd\xe6\xfb\xfb\x72\xd4\x0f\x27\x74\x99\xcd\x06\x95\xb2\xc4\xbe\xbb\x2d\x2d\x8d\xc8\x65\x91\xa3\xf1\xaf\xcd\xb9\x99\x79\x51\x9a\xb8\x1b\xc2\x09\x3f\x77\xf8\x1d\xbe\x3a\xf2\xbb\x85\xcf\xaf\x00\x00\x00\xff\xff\x00\x5c\x95\xe3\x21\x01\x00\x00" +var _idtablestakingScriptsGet_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x4f\x4b\xc3\x40\x10\xc5\xef\xfb\x29\x1e\x3d\x25\x97\xd6\xb3\x20\x25\x9a\x08\x81\xe2\xc1\xec\x45\xc4\xc3\x36\xd9\xa6\x43\x37\xbb\xcb\xec\xac\x7f\x10\xbf\xbb\xa4\x11\x51\xe8\x9c\xe7\xf7\xde\xef\xd1\x14\x03\x0b\xee\x5d\x78\x6b\x6b\x6d\xf6\xce\x76\x62\x4e\xe4\x47\x1c\x38\x4c\xb8\x7a\x6f\xeb\xe6\x41\xb7\xfa\x49\x57\xb7\xbb\xa6\xaa\xeb\xc7\xa6\xeb\x94\xda\x6c\xa0\x8f\x94\x90\x7a\xa6\x28\x60\x2b\x99\x7d\x82\x1c\x2d\xfa\xcc\x6c\xbd\xc0\xc4\xc8\xe1\xd5\x0e\x70\x94\x44\xa9\x98\xf7\x38\x64\x8f\xc9\x90\x2f\xca\x6b\x3c\x77\xc2\xe4\xc7\x17\x7c\x2a\x00\x70\xf6\x97\xd8\x51\x12\xdc\x5c\x50\x5a\x8f\x56\xaa\x9f\xd4\xf9\xa9\x28\xcf\xe8\x7c\xdb\x2d\xa2\xf1\xd4\x17\xab\xbb\x90\xdd\x00\x1f\x66\x29\x33\xfc\xb7\x58\x36\x25\x09\x6c\x46\xbb\x2a\xd5\x19\x5f\xdc\xff\x96\xaf\x4f\xf6\x23\xa9\xaf\xef\x00\x00\x00\xff\xff\x84\xeb\x78\x1d\x1b\x01\x00\x00" func idtablestakingScriptsGet_approved_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -3140,11 +3080,11 @@ func idtablestakingScriptsGet_approved_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_approved_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0xac, 0xf9, 0x96, 0xc5, 0x4, 0x35, 0x8f, 0xd3, 0xaf, 0xca, 0x92, 0x87, 0x91, 0x68, 0xe0, 0xfd, 0xe2, 0xfc, 0x80, 0x6b, 0x22, 0xa5, 0x41, 0x2, 0x1c, 0xa8, 0xb1, 0x19, 0x20, 0xe7, 0x1a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0x8, 0x8e, 0xe3, 0x26, 0xd9, 0x3d, 0x53, 0xe3, 0x54, 0x6, 0xee, 0x19, 0xa8, 0x6, 0xfc, 0xdd, 0xee, 0x6, 0x9f, 0x37, 0x52, 0x4d, 0xe2, 0xf4, 0xd, 0x3d, 0xcc, 0x97, 0x6, 0xd3, 0x22}} return a, nil } -var _idtablestakingScriptsGet_candidate_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xc1\x4a\x03\x41\x0c\x06\xe0\xfb\x3c\xc5\xcf\x9e\x76\x2f\xf6\x22\x22\xbd\xf4\x50\x11\x0a\xe2\xc5\xfa\x00\x71\x26\xdb\x0d\xce\x24\xcb\x4c\x16\x0f\xa5\xef\x2e\x6d\x15\x04\x9b\x4b\x20\xe1\xe7\xff\xa4\xcc\x56\x1d\xcf\xd9\xbe\x76\x4f\x7b\xfa\xc8\xfc\xe6\xf4\x29\x7a\xc0\x58\xad\xa0\xfb\xff\xe8\x42\x58\xad\xb0\x9f\xa4\xa1\xc5\x2a\xb3\xa3\xb2\x2f\x55\x1b\x7c\x62\x64\x29\xe2\x0d\xa3\x55\x44\xd2\x24\x89\x9c\xa1\x96\xf8\x7a\x63\x8a\x13\xaa\x65\x0e\x14\x23\xb7\xd6\x53\xce\x03\xc6\x45\x51\x48\xb4\x1f\xd6\x38\xbe\xef\xd4\x1f\xd7\x38\xaf\x87\xfb\x13\x8e\x01\xc0\x4f\xc5\x0d\xe6\xdd\x81\x7d\xfb\x5b\xf4\x6a\x89\x5f\x2e\x80\x7e\xb8\xc4\xce\xb3\xd9\x60\x26\x95\xd8\x77\x5b\x5b\x72\x82\x9a\x23\x1b\xa5\x3f\xbe\x2b\xba\x1b\xc2\xe9\x3b\x00\x00\xff\xff\xa1\x29\xc8\x31\x0f\x01\x00\x00" +var _idtablestakingScriptsGet_candidate_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x8f\x9e\x92\x8b\xf5\x20\x22\xbd\x94\xda\x44\x08\x94\x1e\xcc\x7a\xf0\xb8\xcd\x4e\x9a\xc1\xcd\x4c\xd8\x4c\x50\x28\xfd\xef\xd2\x56\xc1\x83\x73\x19\x78\xf0\xde\xf7\xf1\x30\x6a\x32\xbc\x44\xfd\xac\x4b\xe7\x0f\x91\x1a\xf3\x1f\x2c\x47\x74\x49\x07\xdc\x7f\xd5\x65\xb5\x77\xb5\x7b\x77\x9b\xe7\x5d\xb5\x29\xcb\xd7\xaa\x69\xb2\x6c\xb9\x84\xeb\x79\xc2\xd4\x26\x1e\x0d\x89\x6c\x4e\x32\xc1\x7a\x42\xe4\x81\x6d\x42\xa7\x09\xad\x97\xc0\xc1\x1b\x41\x34\xd0\x2d\x23\xdf\xf6\x48\x1a\x29\x1b\xe7\x03\xba\x59\x30\x78\x96\xbc\x58\xe1\xf4\x56\x8b\x3d\xad\x70\x79\x8f\x0f\x67\x9c\x32\x00\x3f\xd3\xff\x08\xde\x1d\xc9\xb6\xbf\x80\xbd\x06\xda\x5d\xc1\x79\x71\xad\x5d\x6e\xbd\xc6\xe8\x85\xdb\x7c\xb1\xd5\x39\x06\x88\x1a\xa2\xfa\xf0\xc7\xeb\x26\xbb\x28\xb2\xf3\x77\x00\x00\x00\xff\xff\x2c\xee\x71\x69\x09\x01\x00\x00" func idtablestakingScriptsGet_candidate_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -3160,11 +3100,11 @@ func idtablestakingScriptsGet_candidate_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_candidate_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x60, 0xa1, 0xa5, 0x45, 0xe1, 0x6a, 0x41, 0x4d, 0x33, 0x8d, 0xe9, 0x2a, 0x3f, 0x31, 0x86, 0xb6, 0x91, 0x74, 0xd1, 0xd9, 0x51, 0xe2, 0x22, 0x15, 0xb2, 0xcf, 0x5d, 0x6a, 0x5c, 0x5c, 0xd3, 0xa5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc5, 0x8e, 0x7c, 0xef, 0x38, 0x37, 0x1b, 0xdd, 0x51, 0x69, 0xdd, 0xbd, 0xa6, 0xd2, 0x82, 0x8c, 0x73, 0x2f, 0x74, 0xc9, 0x67, 0x7e, 0x6, 0x19, 0xaf, 0xcf, 0x3d, 0xec, 0xf7, 0x50, 0x49, 0x82}} return a, nil } -var _idtablestakingScriptsGet_candidate_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4e\xc4\x30\x10\x04\xd0\xde\x5f\x31\xba\x2a\x69\xb8\x16\xa5\x04\x84\x74\x12\xa2\xb9\xe3\x03\x8c\xb3\x49\x56\xd8\xbb\x96\x77\x23\x8a\x28\xff\x8e\x82\xa0\x82\x7a\x66\xf4\x86\x4b\xd5\xe6\x78\xce\xfa\x79\x79\xba\xc5\xf7\x4c\x57\x8f\x1f\x2c\x33\xa6\xa6\x05\xa7\xbf\xc1\x29\x84\xf3\x19\xb7\x85\x0d\x96\x1a\x57\x47\x23\x5f\x9b\x18\x7c\x21\x64\x36\x87\x4e\x48\x51\x46\x1e\xa3\x13\x44\x47\xb2\x63\x32\x69\xfb\xae\xac\x35\x69\x39\x04\xaa\x9a\x96\x10\x53\x22\xb3\x2e\xe6\xdc\x63\x5a\x05\x25\xb2\x74\xfd\x80\xed\xed\x22\x7e\x3f\x60\xbb\x7a\x63\x99\x07\x3c\xa8\xe6\x7d\xc7\x16\x00\xfc\x98\xff\xfc\xbe\x9b\xc9\x1f\x7f\xf1\x57\x1d\xe9\x85\xcd\xbb\x3e\xec\x5f\x01\x00\x00\xff\xff\x7b\x95\x26\x62\xea\x00\x00\x00" +var _idtablestakingScriptsGet_candidate_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\x31\x4f\x84\x40\x10\xc5\xf1\x7e\x3f\xc5\x2b\xef\x1a\xcf\xd2\xd0\xdd\x09\x26\x24\x97\x2b\x64\x2d\x2c\xf7\x60\x80\x89\x30\xb3\xd9\x1d\xa2\x09\xe1\xbb\x1b\x8c\x76\xf6\xef\xe5\xf7\xe7\x39\x6a\x32\xbc\x4c\xfa\x59\x97\x3e\xdc\x27\x6a\x2c\x7c\xb0\x0c\xe8\x93\xce\x78\xfc\xaa\xcb\xea\xe6\x6b\xff\xee\xcf\x97\x6b\x75\x2e\xcb\xd7\xaa\x69\x9c\x3b\x9d\xe0\x47\xce\xc8\x6d\xe2\x68\x48\x64\x4b\x92\x0c\x1b\x09\x13\x67\x83\xf6\x68\x83\x74\xdc\x05\x23\x88\x76\x94\xf7\x4b\xaf\xe9\x67\xb2\xc4\x56\xe7\xdd\xa0\xa8\xed\xe8\xe2\x72\x47\xbf\x08\xe6\xc0\x72\x38\x16\x58\xdf\x6a\xb1\xa7\x02\x6b\x63\x89\x65\x28\x70\x51\x9d\xb6\x0d\xab\x03\xf0\x6b\xfd\x53\xfc\x30\x90\x3d\xff\xa1\x37\xed\xe8\xca\xd9\x0e\x47\xb7\x7d\x07\x00\x00\xff\xff\x5d\x0f\xc6\x78\xe4\x00\x00\x00" func idtablestakingScriptsGet_candidate_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -3180,11 +3120,11 @@ func idtablestakingScriptsGet_candidate_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_candidate_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x84, 0x34, 0x2c, 0xe4, 0x3e, 0x22, 0x7b, 0x2, 0x58, 0xff, 0x6d, 0xe6, 0x39, 0x29, 0x45, 0xd4, 0x5e, 0x50, 0x9d, 0xec, 0xf7, 0x45, 0xd8, 0xa8, 0x2f, 0x14, 0x2e, 0x64, 0x10, 0x35, 0x81, 0xf1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x69, 0xd6, 0x82, 0x37, 0x73, 0x6d, 0xfe, 0xcb, 0x3d, 0x37, 0x2e, 0xd4, 0x43, 0x65, 0x62, 0xfd, 0x2c, 0x85, 0xea, 0x4e, 0x93, 0x70, 0xa4, 0x6a, 0x4c, 0xd2, 0xd9, 0xf2, 0xea, 0xa3, 0xb2, 0xff}} return a, nil } -var _idtablestakingScriptsGet_current_tableCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xaa\x83\x40\x10\x45\xfb\xfd\x8a\x8b\x95\x36\xcf\xfe\xd5\xf2\xc0\xe6\x35\xda\x85\x14\x9b\x75\x5c\x87\xac\xb3\x32\x3b\x12\x42\xc8\xbf\x07\x21\x5d\xd2\x5d\xb8\x9c\xc3\xe1\x75\xcb\x6a\xf8\x4b\xf9\xd6\x77\xa3\xbf\x24\x1a\xcc\x5f\x59\x22\x66\xcd\x2b\xaa\xcf\xa3\x72\xae\x6d\x31\x2e\x5c\x50\x82\xf2\x66\x50\xb2\x5d\xa5\xc0\x16\x42\xd8\x55\x49\x0c\x3c\x91\x18\xdb\x1d\x76\xa0\x48\x24\xd1\x16\xe7\x7c\x08\x54\x4a\xed\x53\x6a\x30\xef\x82\xd5\xb3\xd4\xcd\x2f\x4e\x83\x29\x4b\x3c\xe3\xe1\x00\xbc\x8d\x5f\xaa\x7e\x22\xd9\x31\x69\xfa\xcf\x13\xf5\x5d\xa9\x1b\xf7\x7c\x05\x00\x00\xff\xff\x1e\x08\x43\x94\xc4\x00\x00\x00" +var _idtablestakingScriptsGet_current_tableCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4a\xc4\x40\x10\x87\xf1\x7e\x9f\xe2\x5f\xde\x35\x9e\xb5\xdd\xc9\x46\x58\x90\x2b\xdc\x6d\x44\x2c\x72\xc9\x64\x33\x98\xcc\x86\xd9\x59\x54\xc4\x77\x97\x80\xe5\x75\x5f\xf5\xe3\xe3\x75\x2b\x6a\x78\x5a\xca\x67\xf0\xa9\xbf\x2e\x14\xad\xff\x60\xc9\x98\xb4\xac\xb8\xff\x0a\xbe\xbb\xa4\x90\x5e\xd3\xf9\xf1\xb9\x3b\x7b\xff\xd2\xc5\xe8\xdc\xe9\x84\x34\x73\x45\x1d\x94\x37\x83\x92\x35\x95\x0a\x9b\x09\x43\x53\x25\x31\xf0\x48\x62\x6c\xdf\xb0\x5d\xc5\x42\x92\x6d\x76\x6e\x6b\x57\x4c\x4d\xb0\xf6\x2c\x87\xe3\x03\xde\xa2\x29\x4b\x7e\xc7\x8f\x03\xf0\x2f\xdd\xf8\xb9\xcb\x64\x7b\xd2\x78\x29\x23\x05\x5f\x0f\x47\xf7\xfb\x17\x00\x00\xff\xff\x4a\xf4\xfe\xa9\xbe\x00\x00\x00" func idtablestakingScriptsGet_current_tableCdcBytes() ([]byte, error) { return bindataRead( @@ -3200,11 +3140,11 @@ func idtablestakingScriptsGet_current_tableCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_current_table.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x2a, 0x6b, 0x96, 0x8d, 0x9a, 0x6c, 0xa5, 0xb8, 0x89, 0xda, 0x4d, 0x43, 0x19, 0x77, 0x6c, 0xda, 0x84, 0x85, 0xfc, 0xfa, 0xdc, 0x7f, 0x3a, 0xa7, 0x27, 0x23, 0x9a, 0x14, 0x5, 0xb7, 0x1e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x58, 0x1e, 0x72, 0x94, 0xe0, 0x76, 0x87, 0xd9, 0x75, 0x4c, 0x72, 0xa3, 0xa1, 0x74, 0x9e, 0xa3, 0x3e, 0x29, 0x8a, 0xe4, 0xeb, 0x5e, 0x72, 0x24, 0x51, 0x5b, 0x77, 0xb4, 0xfb, 0xda, 0xf0, 0x72}} return a, nil } -var _idtablestakingScriptsGet_cut_percentageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x8b\x83\x40\x10\x46\xfb\xfd\x15\x1f\x56\xda\x9c\xcd\x71\xc5\xb5\x77\x08\xe9\x42\x62\x7e\xc0\xb8\x8e\xba\xb8\xce\xca\xce\x88\x81\x90\xff\x1e\x02\xe9\x92\xf6\x3d\x78\xbc\xb0\xac\x29\x1b\x9a\x98\xf6\xc3\x7f\x4b\x5d\xe4\xb3\xd1\x1c\x64\xc4\x90\xd3\x82\xe2\x5d\x14\xce\xd5\x35\xda\x29\x28\xd4\xe7\xb0\x1a\x32\xdb\x96\x45\x61\x13\xa3\xa3\x48\xe2\x19\x69\x80\x1a\xcd\xdc\xc3\xd2\xcc\xa2\x4f\x40\x90\xd4\xb3\x73\xe4\x3d\xab\x96\x14\x63\x85\x61\x13\x2c\x14\xa4\xac\x7e\x71\x69\xc2\xf5\xe7\x1b\x37\x07\xe0\x15\xfd\x30\xf6\x35\xb2\x9d\x78\xa7\xdc\xff\x6d\x76\xe4\xec\x59\x8c\x46\x2e\x2b\x77\x7f\x04\x00\x00\xff\xff\x65\xa1\x14\x25\xcd\x00\x00\x00" +var _idtablestakingScriptsGet_cut_percentageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4e\x85\x30\x14\x87\xf1\xbd\x4f\xf1\x1f\xef\x5d\xbc\x0e\xc6\xc1\x0d\x2d\x24\x24\xc6\x18\xa8\x83\xe3\x01\x0e\xd0\x00\xa7\xa4\x3d\x0d\x24\xc6\x77\x37\x26\x8e\xae\xdf\xf0\xe5\xe7\xb7\x3d\x44\x45\xb5\x86\xa3\xb6\x8e\xba\x95\x5b\xa5\xc5\xcb\x84\x31\x86\x0d\xf7\x67\x6d\xcb\x37\x57\xbb\x4f\x57\x3c\xbf\x96\x85\xb5\x4d\xd9\xb6\xc6\xdc\x6e\x70\xb3\x4f\x48\x7d\xf4\xbb\x22\xb2\xe6\x28\x09\x3a\x33\x3a\x5a\x49\x7a\x46\x18\x91\x94\x16\x1e\xa0\x61\x61\x49\xbf\x81\x20\x61\x60\x63\xf6\xdc\x61\xcc\x82\x8d\xbc\x5c\xae\x4f\xf8\xa8\xfc\xf9\xf8\x80\x2f\x03\xe0\x6f\xf6\x0f\xe9\x6e\x62\x6d\xf8\xa0\x38\xbc\x64\x7d\xe7\xd8\xb3\x28\x4d\x7c\xb9\x9a\xef\x9f\x00\x00\x00\xff\xff\x28\x6a\xf6\x9f\xc7\x00\x00\x00" func idtablestakingScriptsGet_cut_percentageCdcBytes() ([]byte, error) { return bindataRead( @@ -3220,11 +3160,11 @@ func idtablestakingScriptsGet_cut_percentageCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_cut_percentage.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0xe2, 0xb8, 0x9, 0x30, 0x55, 0xde, 0x80, 0x22, 0x1d, 0xce, 0xcd, 0x75, 0x1c, 0x49, 0x6c, 0xc0, 0xf4, 0x71, 0xba, 0x1a, 0x1f, 0x4, 0x99, 0x53, 0xe6, 0x65, 0xc4, 0xff, 0x2b, 0xe7, 0x62}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa3, 0x9, 0x30, 0xa9, 0xd4, 0x7, 0x19, 0x3d, 0x43, 0x39, 0x32, 0xda, 0x6f, 0xaa, 0xf3, 0xcb, 0xa5, 0x4d, 0x97, 0x58, 0x23, 0x1b, 0xec, 0x30, 0x61, 0x49, 0x8e, 0x9, 0x33, 0x2a, 0x4d, 0x92}} return a, nil } -var _idtablestakingScriptsGet_del_stake_requirementsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xbd\x8a\xc2\x40\x14\x46\xfb\x79\x8a\x8f\x54\x49\xb3\x69\x96\x2d\xb6\x0e\x01\x0b\x1b\x8d\x0f\x30\xc6\x9b\xe4\x92\xf9\x89\x77\xee\xa0\x20\xbe\xbb\x88\x8a\x85\xd6\x07\xce\x39\xec\x97\x28\x8a\xd6\xc5\xd3\xaa\xe9\xec\xde\xd1\x56\xed\xcc\x61\xc4\x20\xd1\xa3\xf8\x04\x85\x31\x75\x8d\x6e\xe2\x84\xd4\x0b\x2f\x0a\x21\xcd\x12\x12\x74\x22\x78\x0e\xec\xb3\x47\x52\x3b\x13\x84\x8e\x99\x85\x3c\x05\xc5\x10\x05\x07\x72\x34\x5a\x8d\x92\x8c\xb1\x7d\x4f\x29\x95\xd6\xb9\x0a\x43\x0e\xf0\x96\x43\x59\xfd\x63\xd7\xf2\xf9\xef\x17\x17\x03\xe0\xa9\xfe\xb2\xf7\x33\x92\x36\x2f\xdb\xfa\x11\xbd\x23\xda\xbc\x93\x65\x65\xae\xb7\x00\x00\x00\xff\xff\x64\x7c\x1f\x80\xe0\x00\x00\x00" +var _idtablestakingScriptsGet_del_stake_requirementsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4a\xc6\x30\x14\xc5\xf1\x3d\x4f\x71\xc6\xef\x5b\xac\x83\x38\xb8\x55\xd2\x42\x41\x1d\xda\x38\x38\xa6\x7a\xdb\x5e\xda\x24\xf5\xe6\x06\x0b\xe2\xbb\x8b\xa8\xb8\x38\x1f\xf8\xff\x0e\x87\x3d\x89\xa2\xdd\xd2\x5b\x67\x9d\x1f\x37\x1a\xd4\xaf\x1c\x67\x4c\x92\x02\x2e\x8f\xce\x36\x0f\xae\x73\x4f\xae\xbe\xbd\x6b\x6a\x6b\xfb\x66\x18\x8c\xa9\x2a\xb8\x85\x33\xf2\xb3\xf0\xae\x10\xd2\x22\x31\x43\x17\x42\xe0\xc8\xa1\x04\x64\xf5\x2b\x41\xe8\xb5\xb0\x50\xa0\xa8\x98\x92\xe0\x85\x36\x9a\xbd\x26\xc9\xc6\xec\x65\xc4\x54\x22\x82\xe7\x78\x3a\xdf\xe0\xb1\xe5\xe3\xfa\x0a\xef\x06\xc0\x4f\xf2\x9f\x63\x17\x33\xa9\xfd\xad\xdc\x7f\x63\x5f\x13\xf5\x7f\xd4\xe9\x6c\x3e\x3e\x03\x00\x00\xff\xff\xc8\x81\xc5\x13\xda\x00\x00\x00" func idtablestakingScriptsGet_del_stake_requirementsCdcBytes() ([]byte, error) { return bindataRead( @@ -3240,11 +3180,11 @@ func idtablestakingScriptsGet_del_stake_requirementsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_del_stake_requirements.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1a, 0x91, 0xe2, 0x54, 0xf9, 0x96, 0x3e, 0xcc, 0xa2, 0xe6, 0x3c, 0x46, 0x6b, 0xe2, 0xf0, 0x7e, 0xa2, 0x0, 0xec, 0xf0, 0xd0, 0xa4, 0x98, 0xa9, 0x64, 0x92, 0xc, 0xd0, 0xe4, 0x47, 0x5f, 0x75}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa3, 0xcb, 0xbc, 0x3f, 0x87, 0x66, 0x14, 0x66, 0x46, 0x5b, 0xef, 0xa7, 0x88, 0xb8, 0xb6, 0xbf, 0x9a, 0xbe, 0xfd, 0xbd, 0x7d, 0x8f, 0x1c, 0x9, 0xdd, 0x15, 0xb5, 0xca, 0xc4, 0x1, 0x76, 0xab}} return a, nil } -var _idtablestakingScriptsGet_delegators_below_minCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x55\x4d\x8b\xdb\x30\x10\xbd\xfb\x57\x3c\xf6\xb0\xb5\xd9\xe2\x4d\xa1\xdb\x83\x69\x7a\x28\x61\x21\xd0\x8f\x43\x52\x7a\x58\x96\x45\x89\xe5\x44\x44\x96\x82\x24\x6f\x4a\x97\xfc\xf7\x22\x7f\xc4\x52\xac\x7c\x54\x97\x10\xcd\x9b\x37\x6f\x66\x34\x63\x56\x6e\xa5\x32\x78\xe4\x72\x37\x9d\xcc\xc9\x82\xd3\x99\x21\x1b\x26\x56\x28\x94\x2c\x71\x33\x34\xdc\x44\xd1\xfd\x3d\xe6\x6b\xa6\xa1\x97\x8a\x6d\x0d\x0a\x26\x72\x0d\xc2\x39\x64\x01\x02\x21\x73\xfa\x4e\x23\xa7\x9c\xae\x88\x91\x4a\x63\xb7\x96\x20\x8a\x42\x1b\xb2\xa1\x39\xc8\x42\xbe\x52\xfc\xa5\x4a\x5a\xa6\x45\x65\xb0\xa0\x5c\xee\x60\xd6\x14\x25\x13\xac\xac\x4a\xcb\xf4\x30\xc2\xe3\xb7\x9f\xbf\x41\x44\x0e\x45\x4d\xa5\x84\x06\x13\x85\x54\x25\x31\x4c\x0a\x4b\x53\x19\xeb\x54\x46\x11\x59\x2e\xa9\xd6\x31\xe1\x3c\x81\x36\xaa\x5a\x1a\x4c\xba\xf8\x5f\x2d\xf9\x77\x26\xa6\xa2\x90\x78\x8b\x22\x00\x70\xf1\xaf\x44\xc1\x48\x43\xf8\xac\x96\x97\xe1\xd7\x23\xfb\xf3\xe9\xe3\x69\x5c\x47\x68\x85\x1e\xf9\x04\x9d\x44\x55\x1e\xc4\xe8\x0c\x53\x61\x2e\xc3\xba\x18\x0d\x3c\x88\x3f\x14\xd8\x26\xd6\xe3\x9f\x86\x2d\x4b\x27\x2e\xf4\xb9\xa1\x63\x82\x99\x78\x28\x2d\xc1\x5b\x6d\xb6\x47\x53\x5e\xa4\x4e\x69\x30\xc6\x28\x1d\x05\xcc\xc3\x8a\x84\xa0\x5e\x30\x8c\xfd\x84\xcf\x40\x3b\x76\xcb\xe9\xc3\x82\x25\xc0\x18\x4f\xcf\x35\x6e\x3f\x2c\x5c\x51\x09\x90\x3c\x9f\xf7\x49\xc5\x2f\xcd\xbb\xec\x7a\x78\xa1\x00\x83\xab\xbb\xc6\xfd\x42\xc0\x4e\xdc\xff\xc4\x0c\x56\xf5\xac\xf9\x3a\x2d\x83\xc9\x88\x07\xf1\x4f\xd5\xff\x8c\xf1\x0e\x1f\xae\x8d\x6b\xbb\x15\xbf\xd4\xc3\x9c\x05\x56\x8f\xff\x5c\x07\xda\x82\x4d\x4f\xc9\x76\x4b\x45\x1e\x5b\xce\xa4\xd5\xb1\xf7\xf7\x82\x55\x51\x12\x26\x62\xbb\xa0\xa6\x93\x0c\x33\xa3\x98\x58\x25\xd9\xc9\x55\x61\x69\x38\x35\xf5\x46\xab\xaf\xc6\x21\xb5\x3f\x5a\xeb\x81\xb7\xf9\x4d\xa2\x83\x7f\xee\xbd\xfa\x16\xde\xe7\xa1\x7b\xe4\xc2\xe9\x29\xc6\x61\x61\xc7\x43\xdb\xf3\xa4\x9c\x8a\x95\x59\xb7\x91\x0b\xe9\xee\x88\x09\x98\x70\x85\xf4\x45\x6d\x15\x9e\x4e\xd0\xef\x9b\x9f\xe5\x7b\x37\x44\xe6\xfe\x69\x55\xd8\xe3\x66\x95\x1e\x4d\x5f\x1b\x39\x35\x72\x43\x85\x6e\x2e\x1d\x57\x56\x20\x84\xc0\x67\x3c\x8c\xd2\x11\x6e\x6f\xc3\xe6\x2f\x76\xfb\x38\x39\x86\x54\xf8\x69\xb5\x34\xc9\x75\x2e\xfd\xe4\x9c\xc5\x1f\x4d\x7d\x38\xd7\xce\x79\xef\x8e\x4f\xf3\xc1\xf3\x08\xa3\x7d\xf4\x2f\x00\x00\xff\xff\xb6\xa7\x8d\x2b\xae\x07\x00\x00" +var _idtablestakingScriptsGet_delegators_below_minCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x55\x5f\x6b\xdb\x3e\x14\x7d\xf7\xa7\x38\x4f\xfd\x39\xf4\x87\xeb\xc1\xba\x07\xb3\x0c\x5a\xdc\x82\xa1\xeb\x60\xf1\x18\xa3\x94\x22\xd7\x72\x22\x62\x4b\x41\x92\x9b\xb2\x92\xef\x3e\xe4\x3f\xb1\x15\x2b\xe9\xe6\x97\x52\xdd\x73\xcf\x39\xf7\x5e\x5d\x85\x55\x1b\x21\x35\x6e\x4b\xb1\x4d\xe2\x94\x64\x25\x5d\x68\xb2\x66\x7c\x89\x42\x8a\x0a\xe1\x6b\x12\xdf\xdc\xa7\x49\xfa\x2b\xbd\xba\xbe\xbb\xb9\x8a\xe3\xef\x37\x8b\x85\xe7\x5d\x5c\x20\x5d\x31\x05\xf5\x2c\xd9\x46\xa3\x60\x3c\x57\x20\x65\x09\x51\x80\x80\x8b\x9c\xfe\xa7\x90\xd3\x92\x2e\x89\x16\x52\x61\xbb\x12\x20\x92\x42\x69\xb2\xa6\x39\x48\x26\x5e\x28\x7e\x53\x29\x0c\x53\x56\x6b\x64\xb4\x14\x5b\xe8\x15\x45\xc5\x38\xab\xea\xca\x30\x5d\x86\xb8\xbd\xfb\xf6\x13\x84\xe7\x90\x54\xd7\x92\x2b\x30\x5e\x08\x59\x11\xcd\x04\x37\x34\xb5\x36\x49\x95\xe7\x6d\xea\x0c\x4a\xcb\xfa\x59\x23\xee\x75\xaf\x0d\xe9\x57\xc6\x13\x5e\x08\xbc\x79\x1e\x00\x18\xdc\x0b\x91\xd0\x42\x93\x72\xd1\xd8\x89\xf0\xe3\x96\xbd\x7e\xfa\x38\x8d\xf7\x04\xc6\xd0\x01\xd6\x02\xf3\xba\xda\x8b\xaa\x08\x09\xd7\xc7\xc3\x3d\x67\x0b\xb3\x70\xfb\x86\x19\xc3\x03\xee\x61\x3a\x9d\x20\x1e\x43\x1f\x5b\x1a\xc6\x99\xf6\xa7\x56\x66\x78\x6b\xc2\xe6\x53\xb4\x2c\x82\x51\xe9\x98\x23\x0c\x42\x47\x78\x5a\xb9\x0b\x6a\x89\x61\x6e\x17\x7a\x02\xda\xb3\x1b\x4e\x1b\xe6\x6c\x01\xe6\x78\x78\x6c\x70\xbb\xa1\x61\x45\xcd\x41\xf2\x3c\x1d\x8a\xf1\x9f\xda\xfb\xd5\xcf\xe8\x9d\xc2\x27\x47\xe7\x6d\xfa\x11\xa1\xde\xcc\xbf\x68\x39\xbb\x78\x32\x7c\xda\xc3\xe4\x66\xfb\x13\xdd\x63\x7d\x3e\x11\x3c\xc7\x87\xf7\xf4\xcc\x34\xfc\xa7\x66\xf9\x22\xc7\x63\x61\x5f\xc7\x89\x27\xe7\x50\x03\xb2\xd9\x50\x9e\xfb\x86\x73\xd6\xe9\xef\xda\x3d\x36\xea\x15\x61\xdc\x37\x0f\x49\x12\x47\x58\x68\xc9\xf8\x72\x16\x1d\x5d\x6d\x93\x5e\x52\xdd\xbc\x3c\xcd\xd1\xdc\xe5\xf2\xbe\x8b\xee\x79\xdb\xbf\x33\x6f\x9f\x9f\x5b\xb7\xb9\x83\x0f\xfe\xd5\x80\xcc\x46\xb3\xc3\xdc\x6d\xec\x70\x19\x07\x9e\xa0\xa4\x7c\xa9\x57\x9d\x72\x21\xc6\xbb\x1f\x83\xf1\xb1\x91\xa1\x99\x9d\xc3\xe3\x05\xda\xf3\xb2\xab\xfc\x7f\x2c\x11\x8d\xff\xe9\x5c\x98\x6f\x5c\x55\x70\xb0\x5d\x9d\x72\xa0\xc5\x9a\x72\xd5\x1e\x8e\x52\x59\x01\x17\x02\x9f\x71\x19\x06\x21\xce\xce\xdc\xe1\x2f\xe6\x55\x19\xd5\xe8\x72\x61\x97\xd5\xd1\xcc\xfe\x2e\x65\xd8\x94\x93\xf8\x83\xed\x76\xd7\xda\x27\xef\xc6\xeb\xd2\xfe\x30\x59\x84\xde\xce\xfb\x13\x00\x00\xff\xff\xfd\x6d\x7d\x7d\x58\x07\x00\x00" func idtablestakingScriptsGet_delegators_below_minCdcBytes() ([]byte, error) { return bindataRead( @@ -3260,11 +3200,11 @@ func idtablestakingScriptsGet_delegators_below_minCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_delegators_below_min.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x25, 0x96, 0x53, 0x67, 0x6, 0x66, 0xfa, 0x53, 0xbc, 0xa1, 0x1d, 0x59, 0xf, 0x29, 0xe, 0x3a, 0x37, 0x82, 0x68, 0x33, 0x3e, 0xb1, 0x9e, 0xd9, 0xc5, 0x5d, 0xf5, 0x2b, 0xab, 0x83, 0x17, 0x5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc1, 0x3e, 0x51, 0x9d, 0xc6, 0x98, 0x72, 0xb, 0x31, 0x4f, 0x85, 0x6c, 0xe1, 0x1, 0x92, 0xec, 0x81, 0x38, 0x9b, 0x8a, 0x2f, 0xe3, 0xaf, 0xbc, 0x6a, 0xf9, 0x17, 0xd9, 0xca, 0x39, 0xc7, 0xb7}} return a, nil } -var _idtablestakingScriptsGet_node_committed_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6a\x03\x41\x0c\x45\xfb\x39\xc5\xc7\x95\xb7\xb1\x9b\x90\xc2\x90\x2a\xc6\xb0\x4d\x1a\x3b\x07\x90\x67\x35\xb6\xd8\x19\xc9\xcc\xc8\x24\x10\x72\xf7\xe0\xdd\xb0\x4d\x52\x09\xf4\xf8\x8f\x27\xe5\x66\xd5\x71\xc8\xf6\xd1\xef\x4f\x74\xce\x7c\x74\x1a\x45\x2f\x48\xd5\x0a\x56\x7f\xc1\x2a\x84\xed\x16\xa7\xab\x34\xb4\x58\xe5\xe6\xa8\xec\xf7\xaa\x0d\x7e\x65\x9c\x29\x93\x46\x86\x25\x34\xa7\x91\x07\xb8\x8d\xac\xed\xf1\x20\xa8\x0d\x1c\x02\xc5\xc8\xad\xad\x29\xe7\x0e\xe9\xae\x28\x24\xba\x7e\xa0\x7e\xbf\xc3\xd1\xab\xe8\xa5\xdb\xe1\xfd\x20\x9f\xcf\x4f\xf8\x0a\x00\x90\xd9\xa7\x71\xaf\xc9\xf0\xf2\x4f\xee\xe6\xed\x97\x2e\xa2\xf9\x76\xd3\x7c\x2e\x5c\x0c\x9b\xb9\xe9\xd5\x4a\x11\x77\x1e\xc2\xf7\x4f\x00\x00\x00\xff\xff\x76\x78\x67\x79\x07\x01\x00\x00" +var _idtablestakingScriptsGet_node_committed_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\xc3\x30\x10\x46\x77\xfd\x8a\x6f\x6c\x96\xa4\x43\xe9\x10\xe8\x90\x56\x0e\x08\x4a\x86\x5a\x1d\x3a\xca\xf1\x39\x11\xb6\xee\x8c\x74\xa6\x81\xd2\xff\x5e\x12\x17\x4f\x99\x0e\xbe\xe3\x3d\x5e\x4c\xa3\x64\xc5\x7e\x90\x6f\x67\x7d\x68\x06\xaa\x35\xf4\x91\x4f\xe8\xb2\x24\x3c\x5e\x9c\xad\x0e\xde\xf9\x2f\xbf\x7b\x7d\xaf\x76\xd6\x7e\x54\x75\x6d\xcc\x66\x03\x7f\x8e\x05\xe5\x98\xe3\xa8\xc8\xa4\x53\xe6\x02\x3d\x13\x9a\x30\x04\x3e\x12\xa4\x43\xd1\xd0\x53\x0b\x95\x9e\xb8\x5c\x87\x00\x96\x96\x8c\x19\xa7\x06\xdd\xc4\x48\x21\xf2\xc3\x75\x72\x76\x8b\x5a\x73\xe4\xd3\x6a\x8b\xcf\x7d\xbc\x3c\x3f\xe1\xc7\x00\xc0\x40\x7a\x83\x1c\x77\x82\x97\x3b\xa1\xeb\xc3\xff\x77\x11\xcd\x77\x75\xc3\xe7\xb2\xc5\xb0\x9e\x5b\xde\x24\xa5\xa8\x4a\xad\xf9\xfd\x0b\x00\x00\xff\xff\xd7\xe0\x3c\x12\x01\x01\x00\x00" func idtablestakingScriptsGet_node_committed_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3280,11 +3220,11 @@ func idtablestakingScriptsGet_node_committed_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_committed_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0xb9, 0x2, 0x2f, 0xff, 0xa2, 0x25, 0x20, 0x27, 0xda, 0xa3, 0xde, 0xa5, 0x91, 0xdb, 0x43, 0xb6, 0x80, 0x4c, 0x45, 0x3d, 0x15, 0x8c, 0xd4, 0x75, 0x99, 0x3, 0xed, 0x25, 0x51, 0x1b, 0x2c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x11, 0x65, 0x3, 0x17, 0x42, 0x11, 0x30, 0xfa, 0xb9, 0xb6, 0xd9, 0x8a, 0x5c, 0x41, 0xaa, 0xe7, 0xc4, 0xbb, 0x42, 0xf5, 0xe9, 0x39, 0x84, 0x75, 0x26, 0xa5, 0x46, 0x5e, 0xdc, 0xef, 0xfe}} return a, nil } -var _idtablestakingScriptsGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xce\xb1\x0e\x82\x40\x0c\xc6\xf1\xbd\x4f\xf1\x85\x09\x16\xd9\x99\x89\x09\x8b\x0b\xbc\x40\x81\x03\x1a\x8f\x1e\xb9\x2b\x71\x30\xbe\xbb\x21\x1a\x17\x8d\x53\x87\xfe\xf3\xcb\x27\xeb\x16\xa2\xe1\xec\xc3\xad\xa9\x3b\xee\xbd\x6b\x8d\xaf\xa2\x33\xa6\x18\x56\x64\xdf\x8f\x8c\xa8\x2c\xd1\x2d\x92\x90\x86\x28\x9b\x61\x76\x96\xc0\xde\xc3\x16\x07\xd1\x29\x80\xfb\xb0\x1b\x18\x1a\x46\x07\xd6\x11\xd1\xd9\x1e\x35\x41\x8c\x88\x87\xc1\xa5\x94\xb3\xf7\x05\xa6\x5d\xb1\xb2\x68\x7e\x94\x4d\x5d\xa1\xb5\x28\x3a\x17\xd5\x8f\x45\xa7\xcb\xd1\x1c\xfc\x9d\x00\xbc\xcd\x7f\xe1\x47\x7d\xdd\x82\x1e\xf4\x0c\x00\x00\xff\xff\x18\xd8\x93\xc8\xf0\x00\x00\x00" +var _idtablestakingScriptsGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xce\x31\x4b\xc5\x30\x14\xc5\xf1\x3d\x9f\xe2\x8c\x76\xb1\xce\xdd\x2a\xa9\x10\x90\x0e\x26\x8b\x63\x6a\xd3\xf6\x62\x7a\x53\x92\x1b\x14\xc4\xef\x2e\xc5\xc7\x9b\x1e\x6f\x3a\xcb\x9f\x1f\x87\xf6\x23\x65\xc1\x4b\x4c\x5f\x46\x3b\x3f\xc5\x60\xc5\x7f\x12\xaf\x58\x72\xda\xf1\xf4\x6d\xf4\x30\x3a\xe3\xde\x5d\xff\xfc\x3a\xf4\x5a\xbf\x0d\xd6\x2a\xd5\xb6\x70\x1b\x15\x94\x8f\x4c\x87\x60\x0d\x52\xe0\x63\x84\x6c\x01\xc4\x4b\x82\x9f\x52\x15\x78\x70\x9a\x03\x3c\xcf\xc8\x41\x6a\xe6\x02\x12\xa5\x8e\x3a\x61\xa9\x8c\xdd\x13\x3f\x9c\x85\xd1\x1d\xac\x64\xe2\xb5\xe9\x6e\x7c\x79\x1c\xcf\xe6\x64\x7f\x14\x80\x8b\x75\x2f\xbc\xaa\xff\xdb\xa8\x5f\xf5\x17\x00\x00\xff\xff\x58\x6d\x78\x81\xea\x00\x00\x00" func idtablestakingScriptsGet_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -3300,11 +3240,11 @@ func idtablestakingScriptsGet_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xba, 0x21, 0xcd, 0xb7, 0xd2, 0xc, 0x46, 0xd2, 0xc3, 0x2b, 0x49, 0xac, 0x98, 0xc7, 0x5a, 0x8, 0x8e, 0xaa, 0xfe, 0xdd, 0x85, 0xe6, 0x93, 0x64, 0x53, 0x63, 0xc5, 0x65, 0xe3, 0xef, 0xa3, 0x39}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x5c, 0x8d, 0xac, 0x80, 0x53, 0x4, 0xd4, 0x7f, 0x6, 0x1f, 0xa9, 0x73, 0x36, 0xfa, 0x49, 0x9b, 0x3, 0x97, 0x47, 0x1b, 0xb3, 0x5b, 0x19, 0x13, 0x20, 0x54, 0xd8, 0x98, 0xec, 0x23, 0x73}} return a, nil } -var _idtablestakingScriptsGet_node_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcd\x6a\xeb\x30\x10\x85\xf7\x7a\x8a\x83\x17\x17\x7b\xe3\xec\xc3\x6d\x43\x68\x28\x64\x53\x02\xcd\x0b\x8c\xe5\x71\x32\xad\xa2\x31\xd2\x98\x2c\x42\xde\xbd\x38\xa2\xb4\xd0\x1f\xaa\x95\x60\x46\xe7\x3b\xfa\xe4\x34\x6a\x32\x3c\x06\x3d\x6f\x37\x7b\xea\x02\x3f\x1b\xbd\x4a\x3c\x60\x48\x7a\x42\xf5\x75\x50\x39\xb7\x58\x60\x7f\x94\x8c\xec\x93\x8c\x86\x03\x5b\x06\x85\x00\x3b\x32\x24\x0e\x0a\xea\x74\x32\x10\xa2\xf6\x0c\x8a\x3d\x12\xdb\x94\x62\x86\x98\x73\xe4\x3d\xe7\x5c\x53\x08\x0d\x86\x29\xe2\x44\x12\x6b\xea\xfb\xc4\x39\x2f\xb1\x2e\x97\x66\xf9\x4d\xa7\xf6\x49\x7b\xde\xce\x80\x8b\x73\x00\x10\xd8\x6e\x8c\x79\xce\x09\x77\x73\x95\xb5\xf7\x3a\x45\x7b\x4f\x6c\x6e\x8b\xf3\x69\x3d\x8d\xd4\x49\x10\x13\xce\x6d\xa7\x29\xe9\xf9\xff\xbf\xcb\x0f\x98\x12\xb9\x9b\xba\x20\xfe\x7a\x5f\xff\x61\x6b\x47\x76\xfc\xa0\xad\x56\x18\x29\x8a\xaf\xab\x07\x9d\x42\x8f\xa8\x86\xc2\x44\xe2\x81\x13\x47\xcf\x30\x2d\x8a\x72\xe9\xaf\xdd\x0b\x7b\xab\x9a\xf2\xb9\xe2\xec\x37\x0d\xf5\xfc\x78\xbb\x59\x7e\x72\xd0\x4a\xdf\xb8\xab\x7b\x0b\x00\x00\xff\xff\x31\x19\xe4\x4c\xd7\x01\x00\x00" +var _idtablestakingScriptsGet_node_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\x31\x6b\xf3\x30\x10\x86\x77\xfd\x8a\x97\x0c\x1f\xf6\x92\x7c\x73\x68\x1b\xdc\x38\x05\x43\x09\xa1\xf1\xd2\x51\xb6\xcf\x89\x5a\x45\x67\xa4\x13\x69\x09\xf9\xef\xc5\x11\xa5\x19\xda\x52\x4d\x42\x7a\xef\xb9\xbb\xc7\x1c\x06\xf6\x82\x07\xcb\xc7\xaa\xac\x75\x63\x69\x2b\xfa\xd5\xb8\x1d\x7a\xcf\x07\xfc\x7f\xab\xca\xd5\xba\xae\xea\xe7\xba\xb8\x7f\x5c\x15\x65\xf9\xb4\xda\x6e\x95\x9a\xcd\x50\xef\x4d\x40\x68\xbd\x19\x04\x3b\x92\x00\x6d\x2d\x64\x4f\x30\xae\x67\xe8\x86\xa3\x40\xc3\x71\x47\xd0\xae\x83\x27\x89\xde\x05\x18\x51\x6a\x88\x0d\xfa\xe8\x70\xd0\xc6\x65\xba\xeb\x3c\x85\x30\x47\x91\x2e\xf9\xfc\x9b\x69\xa6\x6b\xee\xa8\x1a\xc1\x27\xa5\x00\xc0\x92\x5c\xd8\xe3\x3f\x79\xdc\x8e\x23\x14\x6d\xcb\xd1\xc9\x27\x31\xbf\x04\xc7\x33\xdd\x91\x2c\xf5\xa0\x1b\x63\x8d\xbc\xdf\xfc\x3b\xfd\xd0\x20\xc1\x36\xb1\xb1\xa6\x3d\xdf\x65\x7f\x48\x6d\xb4\xec\xaf\xfa\x34\xec\x3d\x1f\xb3\xaf\x97\xc5\x02\x83\x76\xa6\xcd\x26\x4b\x8e\xb6\x83\x63\x41\x0a\xc1\x53\x4f\x9e\x5c\x4b\x10\x4e\x9a\x42\xda\x85\x9b\x17\x6a\x65\x92\xa7\x45\x93\xb7\xdf\x94\x64\x63\x71\x55\xce\xaf\x7c\x4c\x4d\x97\xab\xb3\xfa\x08\x00\x00\xff\xff\xc3\x58\x0f\x27\xdd\x01\x00\x00" func idtablestakingScriptsGet_node_info_from_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -3320,11 +3260,11 @@ func idtablestakingScriptsGet_node_info_from_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_info_from_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0xd7, 0x3, 0x14, 0x4b, 0x6c, 0x3a, 0x16, 0x47, 0x8e, 0xdb, 0x75, 0x1b, 0x8, 0xe, 0x87, 0x83, 0x39, 0x57, 0x8d, 0x2b, 0x31, 0x72, 0x62, 0x9d, 0x31, 0xbc, 0x7e, 0xc6, 0xbe, 0x92, 0xeb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0x2b, 0xf2, 0x88, 0x52, 0x81, 0x46, 0x3d, 0x1, 0x1f, 0x5a, 0x48, 0x68, 0x9, 0xa3, 0x66, 0x4c, 0x24, 0xf3, 0x75, 0xdb, 0x88, 0x8a, 0x63, 0x6f, 0x11, 0x90, 0x24, 0xf0, 0x7a, 0xd8, 0xd0}} return a, nil } -var _idtablestakingScriptsGet_node_initial_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\x8a\x84\x30\x14\x45\xfb\x7c\xc5\xc5\x4a\x1b\x6d\x96\x2d\x84\xed\x64\x21\xcd\x36\xba\x6c\x9d\x75\x12\x7d\x4c\x7c\x91\xe4\x89\xc5\x30\xff\x3e\x8c\x8a\xcd\x4c\x75\x8b\xc3\x3d\x1c\x9a\xe6\x10\x05\xdf\x3e\xac\xba\xe9\xcc\xbf\xb7\xad\x98\x2b\xf1\x00\x17\xc3\x84\xec\x15\x64\x4a\x55\x15\xba\x91\x12\x52\x1f\x69\x16\x44\x2b\x4b\xe4\x04\x19\x2d\x88\x49\xc8\x78\xac\x96\x86\x51\x10\x1c\x0c\x38\x5c\xac\x52\xa6\xef\x6d\x4a\xb9\xf1\xbe\x80\x5b\x18\x93\x21\xce\x9f\x48\x37\x35\x5a\x89\xc4\x43\x51\xe3\x57\xb3\x7c\x7e\xe0\xa6\x00\xc0\x5b\xd9\xce\x9a\x5d\xc0\xd7\x9b\xc8\xf2\xe7\xa0\xa7\x68\xdf\x62\xbb\xef\x5d\xa7\xa1\x3c\xda\xfe\xb6\x34\x75\x7f\x04\x00\x00\xff\xff\x7c\x2d\x7f\xbb\xfb\x00\x00\x00" +var _idtablestakingScriptsGet_node_initial_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\x41\x4b\xc4\x30\x10\x05\xe0\x7b\x7e\xc5\x3b\xba\x97\x5d\x0f\xe2\x61\xc1\xc3\x4a\x2a\x04\xa4\x07\x13\x11\x8f\xa9\x26\xed\x60\x3a\x29\xe9\x94\x0a\xe2\x7f\x17\xdb\xd2\xd3\x9e\x06\xe6\xf1\x1e\x1f\xf5\x43\x2e\x82\xa7\x94\x67\xa3\x9d\x6f\x52\xb0\xe2\xbf\x88\x5b\xc4\x92\x7b\xdc\x7e\x1b\x5d\xd5\xce\xb8\x77\x77\x79\x7c\xae\x2e\x5a\xbf\x54\xd6\x2a\x75\x3a\xc1\x75\x34\x62\xfc\x28\x34\x08\x4a\x90\xa9\xf0\x08\xe9\x02\x88\x49\xc8\x27\xcc\x81\xda\x4e\x90\x23\x3c\x38\x7f\x06\xa5\x86\xa9\x41\x9c\x18\xbd\x27\xbe\xf9\x7f\x19\x7d\x86\x95\x42\xdc\x1e\xce\x78\x35\x2c\xf7\x77\xf8\x51\x00\x90\x82\x2c\x25\xc3\x31\xe3\xe1\x0a\xef\x58\x6f\xe9\x3e\xb4\xde\xc3\x52\x5f\x3d\xfb\xc2\x71\x33\xbd\x2d\x24\xf5\xfb\x17\x00\x00\xff\xff\x4a\xf0\xca\x23\xf5\x00\x00\x00" func idtablestakingScriptsGet_node_initial_weightCdcBytes() ([]byte, error) { return bindataRead( @@ -3340,11 +3280,11 @@ func idtablestakingScriptsGet_node_initial_weightCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_initial_weight.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0x31, 0x8c, 0x67, 0xbd, 0xca, 0x66, 0x6e, 0xa, 0xa, 0x1, 0x6b, 0x1f, 0xf3, 0x67, 0xaf, 0xa1, 0x6d, 0x22, 0xeb, 0xb9, 0xd0, 0xa7, 0x45, 0xd8, 0x2b, 0x75, 0xb2, 0x1d, 0xfe, 0xb1, 0x92}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf, 0xc0, 0x17, 0x67, 0x2c, 0xf0, 0xf8, 0xba, 0x42, 0x20, 0x9f, 0x54, 0x8b, 0x43, 0x3, 0x86, 0x8c, 0x2b, 0xbf, 0x6b, 0x3f, 0xa2, 0x5f, 0x47, 0xbc, 0x87, 0xa7, 0x24, 0x30, 0xc2, 0x95, 0xf5}} return a, nil } -var _idtablestakingScriptsGet_node_networking_addrCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\x6a\x84\x40\x10\x86\xfb\x7d\x8a\x1f\x2b\x6d\xb4\x0f\xa4\x08\x48\xc0\x26\x8d\xbe\xc0\x46\x67\x75\xc9\x3a\x2b\xb3\x23\x16\x21\xef\x1e\x4e\x3d\xaf\xb8\xab\x66\xe0\xe3\xff\xf8\xfc\xbc\x44\x51\x7c\x86\xb8\x35\x75\x67\xbf\x03\xb5\x6a\x7f\x3c\x8f\x70\x12\x67\x64\xcf\x20\x33\xa6\xaa\xd0\x4d\x3e\x21\xf5\xe2\x17\x85\x90\xae\xc2\x09\x3a\x11\x98\x74\x8b\xb2\x0b\x3e\x86\x41\x28\x25\x44\x07\x0b\x8e\x03\x19\x63\xfb\x9e\x52\xca\x6d\x08\x05\xdc\xca\x98\xad\xe7\xfc\x86\x9a\xfa\x0d\xad\x8a\xe7\xb1\xb8\x3f\xf8\x35\x00\x10\x48\xf7\x71\xc3\x2e\xe2\xfd\x45\x68\xf9\x75\xd2\x4b\x74\xdc\x62\x9f\x1f\x6d\x97\xa1\x7c\xf4\x9d\x79\xe6\xef\x3f\x00\x00\xff\xff\x9b\x3e\x96\x87\x03\x01\x00\x00" +var _idtablestakingScriptsGet_node_networking_addrCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x41\x4b\xc4\x30\x10\x46\xef\xf9\x15\xdf\xd1\xbd\xec\x7a\x16\x3c\x54\x52\x21\x20\x7b\x30\xb9\x78\x4c\x6d\xd2\x06\xdb\x49\x99\x4c\xa9\x20\xfe\x77\xb1\xad\xf5\xb2\xa7\x19\x66\x78\x8f\x97\xc6\x29\xb3\xe0\x79\xc8\x8b\xd1\xce\x37\x43\xb0\xe2\x3f\x12\x75\x88\x9c\x47\xdc\x7f\x1a\x5d\x5f\x9d\x71\x6f\xae\x7a\x7a\xa9\x2b\xad\x5f\x6b\x6b\x95\xba\x5c\xe0\xfa\x54\x50\xde\x39\x4d\x02\x0e\x32\x33\x15\x48\x1f\x40\x41\x96\xcc\xab\xa2\x6a\x5b\x0e\xa5\x20\x47\x78\x50\x6e\x83\x52\xd3\xdc\x20\xce\x84\xd1\x27\xba\xfb\x3d\x19\xfd\x00\x2b\x9c\xa8\x3b\xfd\x2d\xf8\x52\x00\x30\x04\x59\x21\x43\x31\xe3\xf1\x46\xe2\xf9\xba\x7f\x0f\xd1\x36\x4f\x2b\xbe\x35\x1d\x86\xf3\x7f\xd7\x9e\xa5\xbe\x7f\x02\x00\x00\xff\xff\xe4\xf6\x2e\xea\xfd\x00\x00\x00" func idtablestakingScriptsGet_node_networking_addrCdcBytes() ([]byte, error) { return bindataRead( @@ -3360,11 +3300,11 @@ func idtablestakingScriptsGet_node_networking_addrCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_networking_addr.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa8, 0x91, 0xae, 0x4, 0xd4, 0x58, 0xda, 0xbc, 0x54, 0xfe, 0xdd, 0xf4, 0x99, 0x87, 0x9a, 0xe2, 0x69, 0xe0, 0xca, 0xcf, 0xf, 0xc2, 0x5d, 0x7e, 0xa9, 0x2b, 0xd8, 0x99, 0xca, 0xcd, 0x39, 0xf6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x77, 0x9c, 0xbc, 0xa2, 0xdd, 0xeb, 0xde, 0xcd, 0xad, 0x72, 0x18, 0xa9, 0x16, 0x54, 0x32, 0xe6, 0x4, 0xd9, 0x5a, 0x2f, 0xed, 0x4e, 0x90, 0x88, 0x2, 0x16, 0x9, 0x5c, 0xe3, 0x45, 0x8c}} return a, nil } -var _idtablestakingScriptsGet_node_networking_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xaa\x83\x40\x10\x45\xfb\xfd\x8a\x8b\x95\x36\xda\x3f\x78\x9d\x3c\x90\x07\x69\xf4\x07\x36\x66\x56\x17\xd7\x59\xd9\x1d\x11\x09\xf9\xf7\x10\x4d\x4c\x91\x54\x33\x70\xb8\x87\x63\xc7\xc9\x07\xc1\x9f\xf3\x4b\x55\x36\xfa\xec\xa8\x16\x3d\x58\xee\x60\x82\x1f\x91\x7c\x82\x44\xa9\xa2\x40\xd3\xdb\x88\xd8\x06\x3b\x09\x02\xc9\x1c\x38\x42\x7a\x02\x93\x2c\x3e\x6c\x82\x81\x56\x78\x03\x0d\xf6\x17\x52\x4a\xb7\x2d\xc5\x98\x6a\xe7\x32\x98\x99\x31\x6a\xcb\xe9\x03\x55\xe5\x0f\x6a\x09\x96\xbb\xec\xf5\xe0\xaa\x00\xc0\x91\x6c\xe3\x8a\x8d\xc7\xef\x97\xc8\xfc\xf4\xa4\x87\x68\xbf\xd9\x36\xdf\xbb\x0e\x43\xfe\x6e\xfb\xa7\x55\xdd\xee\x01\x00\x00\xff\xff\x95\x72\xe4\x3d\xfb\x00\x00\x00" +var _idtablestakingScriptsGet_node_networking_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\x4f\x85\x30\x10\x87\xf7\xfe\x15\xbf\xd1\xb7\xbc\xe7\x6c\xe2\x80\x29\x26\x8d\x86\xc1\x76\x71\x2c\x7a\x85\x06\xb8\x92\x72\x04\x89\xf1\x7f\x37\x82\xe2\xf2\xa6\xbb\xdc\xe5\xfb\xf2\xc5\x61\x4c\x59\xf0\xd8\xa7\xc5\x68\xe7\xeb\x9e\xac\xf8\x2e\x72\x83\x90\xd3\x80\xdb\x0f\xa3\xcb\xca\x19\xf7\xea\x8a\x87\xe7\xb2\xd0\xfa\xa5\xb4\x56\xa9\xcb\x05\xae\x8d\x13\xa6\xb7\x1c\x47\x41\x26\x99\x33\x4f\x90\x96\xc0\x24\x4b\xca\x9b\xa2\xa3\x15\x29\xc0\x83\xd3\x3b\x29\x35\xce\x35\xc2\xcc\x18\x7c\xe4\x9b\x9f\x93\xd1\x77\xb0\x92\x23\x37\xa7\xbf\x05\x9f\x0a\x00\x7a\x92\x0d\x32\x1c\x12\xee\xaf\xe4\x9d\xab\xdf\xef\x21\xda\xe7\x69\xc3\xf7\x9e\xc3\x70\xfe\x6f\x7a\xa2\x55\x7d\x7d\x07\x00\x00\xff\xff\xd1\xf6\x05\xda\xf5\x00\x00\x00" func idtablestakingScriptsGet_node_networking_keyCdcBytes() ([]byte, error) { return bindataRead( @@ -3380,11 +3320,11 @@ func idtablestakingScriptsGet_node_networking_keyCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_networking_key.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2a, 0x80, 0xca, 0xa7, 0xf8, 0xbc, 0x50, 0xe7, 0x5b, 0x44, 0x46, 0xe3, 0x38, 0x25, 0x5d, 0x5f, 0xfe, 0x21, 0x3, 0xbd, 0xd6, 0x4a, 0x73, 0x41, 0x70, 0x5d, 0x8f, 0xbc, 0x57, 0x97, 0xf6, 0x77}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xba, 0x39, 0x41, 0x31, 0x6, 0x4d, 0x30, 0xeb, 0xd3, 0x9d, 0xc8, 0x3f, 0xee, 0x5a, 0x9, 0x3, 0x4c, 0x73, 0xa0, 0xfe, 0x29, 0x92, 0x56, 0xea, 0xc3, 0x25, 0x7c, 0x59, 0x6f, 0xb3, 0xa9, 0xac}} return a, nil } -var _idtablestakingScriptsGet_node_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x3d\x6a\xc3\x40\x10\x46\xfb\x3d\xc5\x87\x2b\xab\xb1\x9b\x90\xc2\x90\xce\x18\xd4\xa4\x88\x9d\x03\x8c\x57\xb3\xf6\xa2\xd5\xac\x98\x1d\xa1\x40\xc8\xdd\x83\x7e\x50\x93\x54\x03\xf3\xf8\x1e\x2f\x76\x7d\x56\xc3\x25\xe5\xb1\x3e\xdf\xe8\x9e\xf8\x6a\xd4\x46\x79\x20\x68\xee\xb0\xfb\x0b\x76\xce\x1d\x8f\xb8\x3d\x63\x41\xf1\x1a\x7b\x83\xb2\x0d\x2a\x05\xf6\x64\xdc\x29\x91\x78\x46\x0e\x50\x1e\x49\x1b\x6e\x60\xb9\x65\x29\xd3\x8b\x20\xb9\x61\xe7\xc8\x7b\x2e\x65\x4f\x29\x55\x08\x83\xa0\xa3\x28\xfb\x09\xd5\xe7\x13\xae\xa6\x51\x1e\xd5\x09\x9f\x97\xf8\xf5\xfa\x82\x6f\x07\x00\x89\x6d\x1e\xd7\x12\x32\xde\xfe\x09\x3e\xbc\xaf\x74\x13\x2d\xb7\x9a\xe7\x4b\xe3\x66\x38\x2c\x4d\x1f\x6b\xa2\xfb\xf9\x0d\x00\x00\xff\xff\xf4\x1f\x63\x6a\x08\x01\x00\x00" +var _idtablestakingScriptsGet_node_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\x31\x6b\xc3\x30\x10\x05\xe0\x5d\xbf\xe2\x8d\xcd\x92\x74\x28\x1d\x02\x1d\x52\xe4\x80\xa0\x64\x88\xd5\xa1\xa3\x1c\x9f\x13\x11\xf9\x64\x4e\x67\x12\x28\xfd\xef\x25\x71\xf0\x94\xe9\xe0\x1d\xef\xf1\xc5\x7e\xc8\xa2\xd8\xa6\x7c\x71\xd6\x87\x26\x51\xad\xe1\x1c\xf9\x88\x4e\x72\x8f\xd7\xab\xb3\xd5\xce\x3b\xff\xe3\x37\x9f\x5f\xd5\xc6\xda\x7d\x55\xd7\xc6\xac\x56\xf0\xa7\x58\x50\x0e\x12\x07\x85\x90\x8e\xc2\x05\x7a\x22\x34\x21\x05\x3e\x10\x72\x07\xa1\x4b\x90\x96\x5a\x68\x3e\x13\x97\x5b\x14\xc0\xb9\x25\x63\x86\xb1\x41\x37\x32\xfa\x10\xf9\xe5\x16\x39\xbb\x46\xad\x12\xf9\xb8\x58\xe3\x7b\x1b\xaf\xef\x6f\xf8\x35\x00\x90\x48\xef\x25\xc7\x5d\xc6\xc7\x13\xea\x72\xf7\xf8\xce\x43\xd3\x5d\xdc\xeb\x93\x6d\x5e\x58\x4e\x96\xfd\x83\x66\xfe\xfe\x03\x00\x00\xff\xff\x1e\xee\x86\x4b\x02\x01\x00\x00" func idtablestakingScriptsGet_node_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3400,11 +3340,11 @@ func idtablestakingScriptsGet_node_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x9a, 0xcb, 0xd1, 0x44, 0xce, 0xa6, 0xa9, 0xb, 0xf5, 0x69, 0x8, 0x75, 0x31, 0x3d, 0xa4, 0xfe, 0x77, 0x25, 0x7, 0x2e, 0x9a, 0x2a, 0xe8, 0xf2, 0x14, 0x6d, 0x39, 0x96, 0x0, 0x13, 0x24}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x91, 0x31, 0x52, 0xe3, 0xb5, 0xc6, 0x8e, 0x86, 0x7b, 0xee, 0xce, 0x3f, 0x8f, 0x80, 0x32, 0xbe, 0x41, 0xf5, 0x1, 0x7, 0xf8, 0x80, 0x7c, 0xca, 0x2, 0x28, 0x8, 0x5c, 0x7c, 0x30, 0xd5, 0x56}} return a, nil } -var _idtablestakingScriptsGet_node_roleCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xca\x83\x30\x14\x85\xf7\x3c\xc5\xc1\x49\x17\x5d\x7f\x84\x7f\x93\x42\x96\x2e\xda\x07\x48\x6d\xa2\xa1\xf1\x46\x6e\xae\x74\x28\x7d\xf7\xa2\x16\x97\x76\x3a\xc3\xc7\xf9\xf8\xfc\x34\x47\x16\x9c\x42\x7c\xe8\xa6\x33\xd7\x60\x5b\x31\x77\x4f\x03\x1c\xc7\x09\xd9\x37\xc8\x94\xaa\x2a\x74\xa3\x4f\x48\x3d\xfb\x59\xc0\x56\x16\xa6\x04\x19\x2d\x38\x06\x8b\xe8\x60\x40\xf1\x66\x95\x32\x7d\x6f\x53\xca\x4d\x08\x05\xdc\x42\x98\x8c\xa7\x7c\x45\xba\xa9\xd1\x0a\x7b\x1a\x8a\x1a\x17\x4d\xf2\x87\xa7\x02\x80\x60\x65\xfb\x6a\x72\x11\xff\x3f\xca\xca\xf3\x87\x1e\x9e\x7d\x8b\xed\xbe\xc7\x1c\x86\x72\x0d\x52\xaf\x77\x00\x00\x00\xff\xff\xf6\xa1\xe0\xc7\xe7\x00\x00\x00" +var _idtablestakingScriptsGet_node_roleCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\x85\x30\x14\x46\xf7\xfc\x8a\x6f\xac\x8b\x76\x2c\x42\x07\x4b\x2c\x04\x8a\x43\x93\x0e\x1d\x63\x9b\x68\x68\xbc\x91\x78\xa5\x85\xf2\xfe\xfb\x43\x7d\x38\xbd\xe9\xc2\xfd\x38\x87\x13\xa6\x39\x65\xc6\x6b\x4c\xbf\x4a\x1a\xdb\x47\xa7\xd9\xfe\x04\x1a\xe0\x73\x9a\xf0\xf8\xa7\x64\xdb\x19\x65\x3e\x4d\xf3\xf2\xd6\x36\x52\xbe\xb7\x5a\x0b\x51\x55\x30\x63\x58\xb0\x7c\xe5\x30\x33\xb2\xe3\x35\xd3\x02\x1e\x1d\x72\x8a\x0e\xc9\xc3\x82\xd2\xb7\x13\x62\x5e\x7b\xf8\x95\x30\xd9\x40\x0f\xdb\x4b\xc9\x1a\x9a\x73\xa0\xa1\xa8\xf1\xa1\x88\x9f\xf0\x2f\x00\x20\x3a\xde\x19\x45\x3e\xe1\xf9\x4e\x53\xd9\xdd\xd6\xd3\x73\xdc\x62\xc7\x8f\x88\xd3\x50\x6e\x21\xe2\x72\x0d\x00\x00\xff\xff\xf4\x8e\xc6\x37\xe1\x00\x00\x00" func idtablestakingScriptsGet_node_roleCdcBytes() ([]byte, error) { return bindataRead( @@ -3420,11 +3360,11 @@ func idtablestakingScriptsGet_node_roleCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_role.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x0, 0xb7, 0xb0, 0x5f, 0x96, 0x55, 0x19, 0x86, 0x7a, 0x0, 0xf0, 0xfe, 0xd6, 0x6f, 0xce, 0xc4, 0x56, 0x65, 0x59, 0x5c, 0x66, 0x15, 0x56, 0x22, 0xc8, 0xe, 0x22, 0x44, 0x49, 0xf0, 0xc0, 0x78}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0x9e, 0xda, 0x8e, 0x65, 0x95, 0xfa, 0x4e, 0xa1, 0xbc, 0xcc, 0x44, 0xe8, 0xa4, 0x4b, 0xbb, 0xe5, 0x51, 0x79, 0xb1, 0x87, 0x98, 0xe, 0xfe, 0x5e, 0x5d, 0x35, 0x73, 0x4, 0xec, 0xc8, 0x57}} return a, nil } -var _idtablestakingScriptsGet_node_staked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\x6a\x84\x40\x10\x86\xfb\x7d\x8a\x9f\xab\xce\xe6\xae\x09\x29\x0e\xd2\x89\x60\x93\x46\xf3\x00\xe3\x3a\xab\x8b\xeb\xac\xec\x8e\x24\x10\xf2\xee\x41\x0d\x36\xb9\x6a\x60\x3e\xfe\x8f\xcf\xcf\x4b\x4c\x8a\x2a\xc4\xcf\xba\x6c\xa9\x0b\xdc\x28\x4d\x5e\x06\xb8\x14\x67\x5c\xfe\x83\x8b\x31\xf7\x3b\xda\xd1\x67\x64\x9b\xfc\xa2\x48\xac\x6b\x92\x0c\x1d\x19\x1d\x05\x12\xcb\x88\x0e\x59\x69\xe2\x1e\x1a\x27\x96\xbc\x3d\x08\x12\x7b\x36\x86\xac\xe5\x9c\xaf\x14\x42\x01\xb7\x0a\x66\xf2\x72\xdd\x50\x5d\x3e\xd0\x68\xf2\x32\x14\x0f\x7c\x54\xfe\xeb\xf5\x05\xdf\x06\x00\x02\xeb\x3e\xae\xc5\x45\xbc\x3d\xc9\xbd\xbd\xff\xd1\x53\x74\xdc\x62\x9f\x1f\x85\xa7\xe1\x76\x34\x35\x7b\xa0\xf9\xf9\x0d\x00\x00\xff\xff\x88\xf6\xd5\xbd\x04\x01\x00\x00" +var _idtablestakingScriptsGet_node_staked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\x31\x6b\xc3\x30\x10\x05\xe0\x5d\xbf\xe2\x8d\xcd\x92\x74\x28\x1d\x02\x1d\x52\xe4\x80\xa0\x64\xa8\xd4\xa1\xa3\x9c\x9c\x12\x61\xf9\x64\xa4\x33\x0d\x94\xfe\xf7\x62\xbb\x78\xea\x74\xf0\x8e\xf7\xf8\x62\x3f\xe4\x22\x38\xa6\xfc\x65\xb4\xf3\x6d\x22\x2b\xbe\x8b\x7c\x45\x28\xb9\xc7\xe3\xdd\xe8\xe6\xe4\x8c\xfb\x74\x87\xd7\xb7\xe6\xa0\xf5\x7b\x63\xad\x52\xbb\x1d\xdc\x2d\x56\xd4\x73\x89\x83\xa0\x90\x8c\x85\x2b\xe4\x46\x68\x7d\xf2\x7c\x26\xe4\x80\x2a\xbe\xa3\x0b\x24\x77\xc4\x75\x0a\x3c\x38\x5f\x48\xa9\x61\x6c\x11\x46\x46\xef\x23\x3f\x4c\x91\xd1\x7b\x58\x29\x91\xaf\x9b\x3d\x3e\x8e\xf1\xfe\xfc\x84\x6f\x05\x00\x89\x64\x2e\x19\x0e\x19\x2f\xff\x40\xb7\xa7\xbf\xef\x3a\xb4\xdc\xcd\x5c\x5f\x64\xeb\xc2\x76\xb1\xd8\x19\xa6\x7e\x7e\x03\x00\x00\xff\xff\x46\xae\x83\xcb\xfe\x00\x00\x00" func idtablestakingScriptsGet_node_staked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3440,11 +3380,11 @@ func idtablestakingScriptsGet_node_staked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_staked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0x54, 0xed, 0x63, 0x3d, 0x4f, 0x58, 0xcc, 0xc0, 0xc2, 0x61, 0x56, 0xca, 0x69, 0xb6, 0x69, 0xbc, 0xb0, 0x62, 0x73, 0x82, 0x4c, 0x79, 0xe7, 0x37, 0xfd, 0x98, 0x8e, 0x96, 0x78, 0x0, 0xd9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc9, 0xa5, 0xe0, 0x6e, 0x32, 0xb4, 0x2d, 0xce, 0xcf, 0xef, 0x6c, 0xad, 0xa0, 0xc, 0x96, 0x72, 0x4d, 0x32, 0x5b, 0xfa, 0x45, 0xea, 0x74, 0x20, 0x42, 0x4b, 0x9e, 0x2c, 0x86, 0xa0, 0x44, 0x9e}} return a, nil } -var _idtablestakingScriptsGet_node_staking_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xaa\x83\x40\x10\x45\xfb\xfd\x8a\x8b\x95\x36\xda\x3f\x78\x9d\x04\x44\x48\xa3\x3f\xb0\x31\xb3\xba\x64\x9d\x95\xdd\x91\x20\x21\xff\x1e\xa2\xc6\x26\xa9\x66\xe0\x70\x2e\xc7\x8e\x93\x0f\x82\x93\xf3\xf7\xaa\x6c\xf5\xc5\x51\x23\xfa\x66\xb9\x87\x09\x7e\x44\xf2\x0d\x12\xa5\x8a\x02\xed\x60\x23\x62\x17\xec\x24\x08\x24\x73\xe0\x08\x19\x08\x71\xb7\x6b\x5a\xe0\x0d\x34\xd8\x5f\x49\x29\xdd\x75\x14\x63\xaa\x9d\xcb\x60\x66\xc6\xa8\x2d\xa7\x6f\x54\x95\x7f\x68\x24\x58\xee\xb3\xcf\x83\x87\x02\x00\x47\xb2\xca\x15\x1b\x8f\xff\x1f\x85\xf9\x79\xa7\xc7\xd0\x76\xb3\x55\xdf\xa2\x8e\x85\x7c\x0f\xab\x69\x51\xcf\x57\x00\x00\x00\xff\xff\xe3\x1d\xee\xbd\xf5\x00\x00\x00" +var _idtablestakingScriptsGet_node_staking_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\xaf\x82\x30\x14\x46\xf7\xfe\x8a\x6f\x7c\x2c\xf0\xe6\x97\xbc\x01\x53\x4c\x1a\x0c\x83\xed\xe2\x58\xb4\x85\x46\x68\x49\x5b\xa2\xc4\xf8\xdf\x8d\x80\x4c\x4e\xf7\xe6\xde\x9c\x93\x63\xfa\xc1\xf9\x88\x7d\xe7\x6e\x8c\x0a\x59\x77\x8a\x47\x79\x35\xb6\x81\xf6\xae\xc7\xef\x9d\xd1\xa2\x12\x4c\x9c\x44\xbe\x3b\x14\x39\xa5\xc7\x82\x73\x42\xb2\x0c\xa2\x35\x01\xe1\xec\xcd\x10\xe1\x55\x1c\xbd\x0d\x88\xad\x42\x58\xf9\x52\x4d\x70\x1a\x12\xd6\x5d\x14\x21\xc3\x58\x43\x8f\x16\xbd\x34\xf6\xe7\x7d\x62\xf4\x0f\x3c\x7a\x63\x9b\xe4\xb3\xe0\x41\x00\xa0\x53\x71\x86\x98\xd5\x0e\xff\x5f\xda\xd2\x6a\xfd\x6e\xa2\x65\x26\x33\xbe\xc4\x6c\x86\x74\x0d\x2a\xd5\x44\x9e\xaf\x00\x00\x00\xff\xff\x09\x99\x69\xfa\xef\x00\x00\x00" func idtablestakingScriptsGet_node_staking_keyCdcBytes() ([]byte, error) { return bindataRead( @@ -3460,11 +3400,11 @@ func idtablestakingScriptsGet_node_staking_keyCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_staking_key.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0x60, 0xc8, 0xcc, 0xd8, 0xd1, 0x4, 0x35, 0xdc, 0x43, 0xab, 0xa6, 0x61, 0x23, 0x93, 0x51, 0xd2, 0x5a, 0x24, 0xe6, 0xe2, 0x95, 0xc3, 0xe5, 0xbf, 0x68, 0x26, 0x94, 0xfb, 0x6a, 0xe9, 0x73}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xab, 0x13, 0x1f, 0xf1, 0xf9, 0x2c, 0xc6, 0x26, 0x45, 0x9a, 0xa, 0xf0, 0x4f, 0x7, 0xa2, 0x39, 0x1a, 0xd, 0x99, 0xd6, 0x51, 0x83, 0x95, 0xa, 0x58, 0xb5, 0x72, 0xf8, 0xa1, 0xe7, 0xf0, 0x62}} return a, nil } -var _idtablestakingScriptsGet_node_total_commitmentCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\xc3\x40\x0c\x46\xf7\xfb\x15\x1f\x99\xec\x25\x59\x4a\x87\x40\xa7\x9a\x80\x97\x2e\x49\xe9\xac\xd8\x3a\x5b\xf8\x4e\x0a\x77\x0a\x2d\x94\xfe\xf7\x92\xa4\x64\x69\x26\x81\x1e\xdf\xe3\x49\x3e\x59\x71\xec\x92\x7d\xf6\xdd\x81\x8e\x89\xf7\x4e\x8b\xe8\x84\x58\x2c\x63\xf5\x1f\xac\x42\xd8\x6c\x70\x98\xa5\xa2\x0e\x45\x4e\x8e\xc2\x7e\x2e\x5a\xe1\x33\xe3\x48\x89\x74\x60\x58\x44\x75\x5a\x78\x84\xdb\xc2\x5a\x2f\x0f\x82\xda\xc8\x21\xd0\x30\x70\xad\x0d\xa5\xd4\x22\x9e\x15\x99\x44\x9b\x0b\xea\xbb\x2d\xf6\x5e\x44\xa7\x76\x8b\xf7\x9d\x7c\x3d\x3f\xe1\x3b\x00\x40\x62\xbf\x8e\x7b\x8d\x86\x97\x07\xb9\xeb\xb7\x3f\x7a\x17\xdd\x6e\x7b\x9d\xdf\x0a\xef\x86\xb5\x9b\x53\x7a\xb5\x9c\xc5\x9d\xc7\x0f\xf1\xb9\xe3\xc4\x13\xb9\x95\xda\xb4\xe1\x27\xfc\x06\x00\x00\xff\xff\xde\x81\x86\x0c\x17\x01\x00\x00" +var _idtablestakingScriptsGet_node_total_commitmentCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\xc3\x30\x10\x46\x77\xfd\x8a\x6f\x8c\x97\xa4\x43\xe9\x10\xe8\x90\x56\x0e\x08\x4a\x86\x5a\xa5\x74\x94\xe3\xb3\x2d\x2c\xe9\x8c\x74\xa6\x81\xd2\xff\x5e\x92\x94\x4c\x99\x0e\xbe\xe3\x3d\x9e\x8f\x33\x67\xc1\x3e\xf0\xb7\xd1\xd6\xb5\x81\x1a\x71\x93\x4f\x03\xfa\xcc\x11\x0f\x27\xa3\xeb\x83\x35\xf6\xcb\xee\x5e\xde\xea\x9d\xd6\xef\x75\xd3\x28\xb5\xd9\xc0\x8e\xbe\xa0\x1c\xb3\x9f\x05\x99\x64\xc9\xa9\x40\x46\x42\xeb\x82\x4b\x47\x02\xf7\x28\xe2\x26\xea\x20\x3c\x51\x2a\xe7\xc1\x21\x71\x47\x4a\xcd\x4b\x8b\x7e\x49\x88\xce\xa7\xd5\x79\x32\x7a\x8b\x46\xb2\x4f\x43\xb5\xc5\xc7\xde\x9f\x9e\x1e\xf1\xa3\x00\x20\x90\x5c\x20\x93\x7a\xc6\xf3\x9d\xd0\xf5\xe1\xff\x7b\x13\x5d\x6f\x75\xc1\xaf\x65\x37\xc3\x5a\x58\x5c\x78\xe5\x18\xbd\x08\x75\x9f\x5e\x46\x4d\x81\x06\x27\x9c\xcb\xaa\x52\xbf\xea\x2f\x00\x00\xff\xff\x38\xb0\x49\xad\x11\x01\x00\x00" func idtablestakingScriptsGet_node_total_commitmentCdcBytes() ([]byte, error) { return bindataRead( @@ -3480,11 +3420,11 @@ func idtablestakingScriptsGet_node_total_commitmentCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_total_commitment.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0x4e, 0xa8, 0x2, 0x91, 0x80, 0xc1, 0xa6, 0xf6, 0x9b, 0x8c, 0x17, 0xce, 0x51, 0x4d, 0x8c, 0x4, 0x66, 0x16, 0xe7, 0x9e, 0x9c, 0x54, 0xd7, 0x3c, 0x96, 0x45, 0x48, 0x4b, 0x9a, 0x26, 0x27}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9a, 0xb3, 0x90, 0x58, 0xe3, 0xb3, 0x74, 0x22, 0x31, 0x4f, 0xd0, 0x3b, 0xa0, 0x9e, 0x61, 0x27, 0x36, 0xe5, 0x70, 0xb2, 0xef, 0x1d, 0x2e, 0x4a, 0xe1, 0x1a, 0xef, 0x56, 0x9e, 0x47, 0x48, 0xd8}} return a, nil } -var _idtablestakingScriptsGet_node_total_commitment_without_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\xc3\x40\x0c\x46\xf7\xfb\x15\x1f\x99\xec\x25\x59\x4a\x87\x40\xa7\x9a\x80\x97\x2e\x49\xe9\xac\xd8\xb2\x2d\x7c\x27\x85\x3b\x99\x16\x4a\xff\x7b\x49\x52\xbc\x34\x93\x40\x8f\xef\xf1\x24\x5d\x2c\x3b\x0e\xd1\x3e\xdb\xe6\x44\xe7\xc8\x47\xa7\x59\x74\xc4\x90\x2d\x61\xf3\x1f\x6c\x42\xd8\xed\x70\x9a\xa4\xa0\x74\x59\x2e\x8e\xcc\xbe\x64\x2d\xf0\x89\x71\xa6\x48\xda\x31\x6c\x40\x71\x9a\xb9\x87\xdb\xcc\x5a\xae\x0f\x82\x5a\xcf\x21\x50\xd7\x71\x29\x15\xc5\x58\x63\x58\x14\x89\x44\xab\x2b\x6a\x9b\x3d\x8e\x9e\x45\xc7\x7a\x8f\xf7\x83\x7c\x3d\x3f\xe1\x3b\x00\x40\x64\xbf\x8d\x5b\x1d\x0c\x2f\x0f\x72\xb7\x6f\x7f\x74\x15\xdd\x6f\x7d\x9b\xdf\x0b\x57\xc3\xd6\xcd\x29\xbe\x5a\x4a\xe2\xce\xfd\x87\xf8\x64\x8b\x37\x1c\x79\x24\xb7\x5c\xaa\x3a\xfc\x84\xdf\x00\x00\x00\xff\xff\x30\xea\x1b\x75\x1a\x01\x00\x00" +var _idtablestakingScriptsGet_node_total_commitment_without_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\xc3\x30\x10\x46\x77\xfd\x8a\x6f\x8c\x97\xa4\x43\xe9\x10\xe8\x90\x56\x0e\x08\x4a\x86\x5a\xa5\x74\x94\xe3\xb3\x2d\x2c\xe9\x8c\x74\xa6\x81\xd2\xff\x5e\x92\x94\x4c\x99\x0e\xbe\xe3\x3d\x9e\x8f\x33\x67\xc1\x3e\xf0\xb7\xd1\xd6\xb5\x81\x1a\x71\x93\x4f\x03\xfa\xcc\x11\x0f\x27\xa3\xeb\x83\x35\xf6\xcb\xee\x5e\xde\xea\x9d\xd6\xef\x75\xd3\x28\xb5\xd9\xc0\x8e\xbe\xa0\x1c\xb3\x9f\x05\x99\x64\xc9\xa9\x40\x46\x42\xeb\x82\x4b\x47\x02\xf7\x28\xe2\x26\xea\x20\x3c\x51\x2a\xe7\xc1\x21\x71\x47\x4a\xcd\x4b\x8b\x7e\x49\x88\xce\xa7\xd5\x79\x32\x7a\x8b\x46\xb2\x4f\x43\xb5\xc5\xc7\xde\x9f\x9e\x1e\xf1\xa3\x00\x20\x90\x5c\x20\x93\x7a\xc6\xf3\x9d\xd0\xf5\xe1\xff\x7b\x13\x5d\x6f\x75\xc1\xaf\x65\x37\xc3\x5a\x58\x5c\x78\xe5\x18\xbd\x08\x75\x9f\x5e\x46\x5e\x44\x53\xa0\xc1\x09\xe7\xb2\xaa\xd4\xaf\xfa\x0b\x00\x00\xff\xff\x10\x9e\xf2\x15\x14\x01\x00\x00" func idtablestakingScriptsGet_node_total_commitment_without_delegatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -3500,11 +3440,11 @@ func idtablestakingScriptsGet_node_total_commitment_without_delegatorsCdc() (*as } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_total_commitment_without_delegators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x84, 0x32, 0xaf, 0x9f, 0xd3, 0x1e, 0x55, 0x10, 0x72, 0x2d, 0x94, 0x44, 0xae, 0x6b, 0xa4, 0xc5, 0xe4, 0x2, 0xc6, 0x10, 0x0, 0xae, 0xb5, 0x69, 0x35, 0xb, 0xf6, 0x87, 0x8d, 0x53, 0x4, 0xa7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xad, 0x78, 0x6, 0x75, 0x27, 0xd2, 0xa2, 0x58, 0x76, 0xf1, 0x1d, 0xf8, 0x39, 0xfc, 0xef, 0xfc, 0xfe, 0xe9, 0x4b, 0xa5, 0x25, 0x13, 0xb7, 0x3, 0x8d, 0x8e, 0xcd, 0xdb, 0xc1, 0x61, 0x21, 0xf4}} return a, nil } -var _idtablestakingScriptsGet_node_type_ratioCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\x03\x51\x10\x84\xfb\xf7\x2b\xc6\x54\x77\x8d\x69\x44\x24\x60\x27\x81\xb4\x31\xa9\xc4\x62\xf3\x6e\x2f\x79\xdc\xbb\xdd\xb0\xbb\xe1\x04\xf1\xbf\xcb\x9d\x76\xda\xce\xcc\x37\x7c\x65\xbc\xaa\x05\xb6\x55\xa7\xdd\xcb\x81\x4e\x95\x5f\x83\x86\x22\x67\xf4\xa6\x23\x56\x7f\x8b\x55\x4a\xeb\x35\x0e\x97\xe2\xf0\x6c\xe5\x1a\x30\x8e\x9b\x89\x23\x2e\x8c\x13\x55\x92\xcc\xd0\x1e\x1e\x34\x70\x87\xd0\x81\xc5\xe7\x80\x20\xda\x71\x4a\x94\x33\xbb\x37\x54\x6b\x8b\xfe\x26\x18\xa9\x48\x63\x5a\x79\x83\xe3\x4e\xe2\xa9\xdd\xe0\xb8\x2d\x1f\x8f\x0f\xf8\x4c\x00\x50\x39\x60\x14\x45\x1d\xcf\xff\x98\xde\x9f\x39\xf6\x3c\x91\x75\xfb\x65\xd4\xb4\x69\xc1\x7e\xb4\x7e\xc9\xb7\xf9\xff\xfd\x2e\x7d\x7d\x07\x00\x00\xff\xff\x6f\x62\x2e\xa0\xf1\x00\x00\x00" +var _idtablestakingScriptsGet_node_type_ratioCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x9e\xb7\xf6\x62\x3d\x88\x48\xc1\x43\x25\x29\x04\xc4\x43\xb2\x3d\x88\x78\x98\x34\x93\x76\xc9\x66\x27\xcc\x4e\x68\x41\xfc\xef\xd2\xea\xb1\xd7\xc7\xfb\x3e\xbe\x30\x4e\xa2\x86\x6d\x94\x53\x55\x78\x6a\x23\x37\x46\x43\x48\x07\xf4\x2a\x23\x1e\xce\x55\x51\xbe\xfb\xca\x7f\xf8\xcd\xeb\x5b\xb9\x29\x8a\xba\x6c\x1a\xe7\x56\x2b\xf8\x63\xc8\xc8\x7b\x0d\x93\x41\xd9\x66\x4d\x19\x76\x64\xb4\x14\x29\xed\x19\xd2\x23\x1b\x0d\xdc\xc1\x64\xe0\x94\x2f\x03\x21\x49\xc7\xce\x4d\x73\x8b\x7e\x4e\x18\x29\xa4\x85\x4a\xe4\x35\x76\x55\xb2\xe7\xe5\x1a\xbb\x6d\x38\x3f\x3d\xe2\xdb\x01\x40\x64\x83\x92\x05\xc9\x78\xb9\xd1\x78\x7f\x60\xab\xf9\x44\xda\xd5\xd7\xd3\x62\xe9\xae\xd8\x5f\xce\x3f\xf9\x79\xf1\x7f\xdd\xb9\x9f\xdf\x00\x00\x00\xff\xff\xd9\xe6\xb6\x53\xeb\x00\x00\x00" func idtablestakingScriptsGet_node_type_ratioCdcBytes() ([]byte, error) { return bindataRead( @@ -3520,11 +3460,11 @@ func idtablestakingScriptsGet_node_type_ratioCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_type_ratio.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa9, 0x6, 0x3f, 0x1a, 0x72, 0xbf, 0x77, 0x88, 0xc2, 0xac, 0xd6, 0x2a, 0xea, 0x37, 0xc, 0x1, 0xe8, 0x1b, 0x86, 0x79, 0x76, 0xdc, 0x56, 0x9b, 0x51, 0x27, 0x7d, 0xd1, 0x92, 0x12, 0xe8, 0x89}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x27, 0xe6, 0x4, 0x86, 0x23, 0x25, 0x65, 0xf9, 0xf4, 0xdb, 0x7e, 0xdf, 0xf4, 0xcc, 0x96, 0xf1, 0xd7, 0xda, 0xd8, 0x20, 0xa, 0xc1, 0xb, 0x17, 0x4c, 0xf8, 0xb8, 0x4c, 0xfa, 0x5a, 0xf2}} return a, nil } -var _idtablestakingScriptsGet_node_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x3d\x6a\xc3\x40\x10\x46\xfb\x3d\xc5\x87\x2b\xab\xb1\x9b\x90\xc2\x90\xce\x18\xd4\xa4\xb1\x74\x80\xd1\x6a\x56\x5a\xb4\x9a\x15\xbb\x23\x12\x08\xb9\x7b\xd0\x0f\x6a\xe2\x6a\x60\x1e\xdf\xe3\xf9\x71\x8a\x49\xf1\x08\xf1\xab\xbc\x57\xd4\x04\x7e\x2a\x0d\x5e\x3a\xb8\x14\x47\x9c\xfe\x83\x93\x31\xd7\x2b\xaa\xde\x67\x64\x9b\xfc\xa4\x48\xac\x73\x92\x0c\xed\x19\x0d\x05\x12\xcb\x88\x0e\xb3\x64\xa5\x81\x5b\x68\x1c\x58\xf2\xf2\x22\x48\x6c\xd9\x18\xb2\x96\x73\x3e\x53\x08\x05\xdc\x2c\x18\xc9\xcb\x79\x41\xe5\xfd\x86\xa7\x26\x2f\x5d\x71\x43\xfd\xf0\xdf\xef\x6f\xf8\x31\x00\x10\x58\xd7\x71\x29\x2e\xe2\xe3\x45\xf0\xe5\x73\xa7\x87\x68\xbb\xc5\x3a\xdf\x1a\x0f\xc3\x65\x6b\xaa\xf7\x44\xf3\xfb\x17\x00\x00\xff\xff\xa2\xd9\x0b\x78\x08\x01\x00\x00" +var _idtablestakingScriptsGet_node_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x6a\x03\x31\x10\x04\xd0\x5e\x5f\x31\x65\xdc\xd8\x29\x42\x0a\x43\x0a\x07\x9d\x41\x10\x5c\x44\x72\x91\x52\x67\xaf\x6c\x71\xba\xd5\x21\xad\x88\x21\xe4\xdf\x83\x7d\xc6\x55\xaa\x85\x59\x66\x78\x71\x9c\x72\x11\x6c\x53\xfe\x36\xda\xf9\x3e\x91\x15\x3f\x44\x3e\x21\x94\x3c\xe2\xf9\x62\x74\xb7\x73\xc6\x7d\xb9\xcd\xfb\x47\xb7\xd1\xfa\xb3\xb3\x56\xa9\xd5\x0a\xee\x1c\x2b\xea\xa1\xc4\x49\x50\x48\x5a\xe1\x0a\x39\x13\x7a\x9f\x3c\x1f\x08\x39\xa0\x71\x15\x3f\xd0\x11\x92\x07\xe2\x7a\x8d\x3c\x38\x1f\x49\xa9\xa9\xf5\x08\x8d\x31\xfa\xc8\x4f\xd7\xc8\xe8\x35\xac\x94\xc8\xa7\xc5\x1a\xfb\x6d\xbc\xbc\xbe\xe0\x47\x01\x40\x22\xb9\x95\x0c\x87\x8c\xb7\x7f\xa8\xcb\xdd\xfd\xfb\x18\x9a\xef\xe2\x56\x9f\x6d\x8f\x85\xe5\x6c\xd9\xdf\x69\xea\xf7\x2f\x00\x00\xff\xff\xed\xa2\xe5\x11\x02\x01\x00\x00" func idtablestakingScriptsGet_node_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3540,11 +3480,11 @@ func idtablestakingScriptsGet_node_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x15, 0xa2, 0xab, 0xa0, 0xe4, 0x1e, 0x5c, 0xf, 0xd8, 0x2c, 0x53, 0xe8, 0xa3, 0x53, 0x38, 0xd8, 0xa7, 0x8e, 0x66, 0x3a, 0x95, 0x72, 0xf5, 0x76, 0xe2, 0x78, 0xad, 0xc0, 0xa8, 0x45, 0xe2, 0xc4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xca, 0xa8, 0x4b, 0x66, 0x19, 0x7f, 0x23, 0x8c, 0x14, 0x37, 0x8f, 0xc6, 0xfb, 0x78, 0x7a, 0x4d, 0x97, 0xc, 0x94, 0xe7, 0x9b, 0x1e, 0xa, 0xa8, 0x8b, 0xcf, 0xbb, 0x18, 0x65, 0xc7, 0x5d, 0x9a}} return a, nil } -var _idtablestakingScriptsGet_node_unstaking_requestCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\x4e\x02\x41\x10\x86\xfb\x7d\x8a\x3f\x54\x5c\x03\x8d\xb1\x20\xb1\x23\x24\xd7\x58\xc8\xf1\x00\xeb\x31\x0b\x1b\x76\x67\x70\x66\x36\x9a\x18\xdf\xdd\x78\xe0\x35\x5a\xfd\xc5\x97\xff\xcb\x97\xeb\x55\xd4\xb1\x2b\xf2\xde\x6f\x87\xf8\x5a\x68\xef\xf1\x92\xf9\x84\xa4\x52\xb1\xf8\x0b\x16\x21\xac\xd7\x18\xce\xd9\x60\xa3\xe6\xab\x43\xc9\x9b\xb2\xc1\xcf\x04\xa5\xb7\x46\xe6\x74\x44\x63\xbb\x9b\x62\x95\xc6\x8e\x24\x8a\x08\x96\x23\x85\x10\xc7\x91\xcc\x96\xb1\x94\x0e\xa9\x31\x6a\xcc\xbc\xfc\x41\xfd\x76\x83\xbd\x6b\xe6\x53\xb7\xc1\x61\x97\x3f\x1e\x1f\xf0\x19\x00\xa0\x90\x4f\xe7\x9e\x93\xe0\xe9\x9f\xe2\xd5\xf3\x9d\xce\xa2\xdb\x76\xd3\xfd\x16\x39\x1b\x56\x2e\x17\x62\x7b\xf9\xcd\x1d\xe4\x30\xf5\x52\xf8\xfa\x0e\x00\x00\xff\xff\x8e\x70\xaf\x46\x13\x01\x00\x00" +var _idtablestakingScriptsGet_node_unstaking_requestCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\x02\x41\x10\x46\xfb\xfd\x15\x5f\x19\x1b\x4d\x11\x52\x08\x29\x0c\x7b\xc2\x42\xb0\xf0\xd6\x22\xe5\x1a\xe7\x74\xf1\x76\xe6\xb2\x3b\x4b\x84\x90\xff\x1e\x72\x9a\xab\xac\x06\xe6\xe3\x3d\x5e\x4c\x83\x64\xc5\xba\x97\x2f\x67\x7d\xd8\xf7\xd4\x6a\x38\x47\x3e\xa2\xcb\x92\xf0\x78\x71\xb6\xd9\x78\xe7\xdf\xfd\xea\xf5\xad\x59\x59\xbb\x6d\xda\xd6\x98\xc5\x02\xfe\x14\x0b\xca\x47\x8e\x83\x22\x93\xd6\xcc\x05\x7a\x22\x64\xfa\xac\x54\x94\x0e\xa8\x5c\x6e\xae\x90\xa4\xb2\xa2\x93\x8c\x00\x96\x03\x19\x33\xd4\x3d\xba\xca\x48\x21\xf2\xc3\xdf\xcb\xd9\x25\x5a\xcd\x91\x8f\xb3\x25\x76\xeb\x78\x79\x7e\xc2\xb7\x01\x80\x9e\x74\x84\x1c\x77\x82\x97\x3b\xad\xf3\xcd\x6d\x9d\x44\xd7\x3b\x1b\xf1\x6b\xdc\x64\x98\xab\x9c\x89\xcb\xf6\x3f\xd3\xcb\x6e\xec\x24\xf3\xf3\x1b\x00\x00\xff\xff\x79\x9d\x09\x48\x0d\x01\x00\x00" func idtablestakingScriptsGet_node_unstaking_requestCdcBytes() ([]byte, error) { return bindataRead( @@ -3560,11 +3500,11 @@ func idtablestakingScriptsGet_node_unstaking_requestCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_unstaking_request.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4a, 0x48, 0x65, 0x66, 0x2f, 0x86, 0x85, 0xb3, 0x19, 0xdb, 0x18, 0xda, 0x34, 0x83, 0xe5, 0x55, 0xa, 0xd6, 0x75, 0xc8, 0x5f, 0xba, 0xf2, 0xe, 0x69, 0xf6, 0x73, 0x47, 0xe0, 0x35, 0x6c, 0x84}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x0, 0x9a, 0x2b, 0x37, 0x6, 0x8a, 0x4, 0xbb, 0xdd, 0x5f, 0xc4, 0xae, 0x23, 0x26, 0x8d, 0x28, 0xee, 0xe8, 0x4, 0xc1, 0xde, 0x14, 0x1f, 0x48, 0x86, 0x41, 0xef, 0xb4, 0xc3, 0x29, 0x4a, 0xcb}} return a, nil } -var _idtablestakingScriptsGet_node_unstaking_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x3d\x6a\xc3\x40\x10\x46\xfb\x3d\xc5\x87\x2b\xab\xb1\x9b\x90\xc2\x90\xce\x18\xd4\xa4\x91\x74\x80\xd1\x66\x56\x5a\xb4\x9a\x15\xbb\x23\x12\x08\xb9\x7b\xd0\x4f\xd4\xc4\xd5\xc0\x3c\xbe\xc7\xf3\xe3\x14\x93\xe2\x11\xe2\x67\x79\xaf\xa9\x0d\x5c\x29\x0d\x5e\x3a\xb8\x14\x47\x9c\xfe\x83\x93\x31\xd7\x2b\xea\xde\x67\x64\x9b\xfc\xa4\x48\xac\x73\x92\x0c\xed\x19\x2d\x05\x12\xcb\x88\x0e\xb3\xe4\x5d\xa5\x71\x60\xc9\xcb\x8f\x20\xf1\x83\x8d\x21\x6b\x39\xe7\x33\x85\x50\xc0\xcd\x82\x91\xbc\x9c\x17\x54\xde\x6f\xa8\x34\x79\xe9\x8a\x1b\x9a\x87\xff\x7a\x7d\xc1\xb7\x01\x80\xc0\xba\x8e\x4b\x71\x11\x6f\x4f\x8a\x2f\xef\x3b\x3d\x44\xdb\x2d\xd6\xf9\x16\x79\x18\x2e\x5b\x53\xf3\xd7\x68\x7e\x7e\x03\x00\x00\xff\xff\xfc\x55\x50\x18\x0a\x01\x00\x00" +var _idtablestakingScriptsGet_node_unstaking_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xbd\x6a\xc3\x30\x14\x46\x77\x3d\xc5\x37\x36\x4b\xd2\xa1\x74\x08\x74\x48\x91\x03\x82\x92\xa1\x52\x86\x8e\x72\x2a\x25\x22\xf2\x95\x91\xae\xa8\xa1\xf4\xdd\x8b\x7f\xea\xa9\xd3\x85\xef\x72\x0e\x27\x74\x7d\xca\x8c\x63\x4c\x5f\x4a\x1a\xdb\x46\xa7\xd9\xde\x03\x5d\xe1\x73\xea\xf0\x38\x28\xd9\x9c\x8c\x32\x1f\xe6\xf0\xfa\xd6\x1c\xa4\x7c\x6f\xb4\x16\x62\xb7\x83\xb9\x85\x82\x72\xc9\xa1\x67\x64\xc7\x35\x53\x01\xdf\x1c\x5a\x1b\x2d\x5d\x1c\x92\x47\xa5\xb2\xc8\x38\xdd\x1d\x95\x71\xb3\xa0\xf4\xe9\x84\xe8\x6b\x0b\x5f\x09\x9d\x0d\xf4\x30\x4e\x4a\xee\xa1\x39\x07\xba\x6e\xf6\x38\x1f\xc3\xf0\xfc\x84\x6f\x01\x00\xd1\xf1\x04\x29\xf2\x09\x2f\xff\xb4\x6e\x4f\xcb\x77\x15\xcd\x77\x33\xe1\x73\xdc\x6a\xd8\xce\x2d\xe7\xbf\x36\xf1\xf3\x1b\x00\x00\xff\xff\xc7\x92\x11\x03\x04\x01\x00\x00" func idtablestakingScriptsGet_node_unstaking_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3580,11 +3520,11 @@ func idtablestakingScriptsGet_node_unstaking_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_unstaking_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0xa2, 0x4e, 0x56, 0xb7, 0x3, 0xd3, 0x8, 0x1c, 0xf9, 0x4b, 0xa2, 0x84, 0xcc, 0xc7, 0xdd, 0x56, 0xbc, 0xd7, 0xae, 0x99, 0x6d, 0x53, 0x4e, 0xa9, 0xd4, 0x97, 0x14, 0x3f, 0xe3, 0xa, 0xfa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbd, 0xf6, 0x22, 0xda, 0x4e, 0x2a, 0x9, 0x28, 0x40, 0x45, 0xb2, 0x8, 0x55, 0xc6, 0x13, 0x27, 0xf4, 0xcb, 0x53, 0x99, 0x5b, 0x2d, 0xab, 0x76, 0x7, 0x33, 0xe7, 0xa, 0x2, 0xb2, 0xd9, 0x6b}} return a, nil } -var _idtablestakingScriptsGet_non_operationalCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x6b\x83\x50\x10\xc7\xf1\xfd\xfd\x15\x3f\x9c\x74\xa8\xee\x9d\x4b\xa1\x50\xec\xa0\x5b\xe9\xf0\x6a\x4e\x3d\x7c\xde\xc9\xbb\x93\x10\x42\xfe\xf7\x10\x08\x64\x48\xe6\x2f\x7c\xf8\xf2\xba\x69\x76\x7c\x26\x3d\x7e\x7d\xf4\xf1\x3f\x51\xe7\x71\x61\x99\x30\x66\x5d\x51\x3c\x87\x22\x84\xa6\x41\x3f\xb3\xc1\x86\xcc\x9b\x23\x93\xef\x59\x0c\x3e\x13\x12\x9b\x43\x47\x88\xca\x9b\x6e\x94\xa3\xb3\x4a\x4c\x10\x3d\x90\x85\x10\x87\x81\xcc\xca\x98\x52\x85\x71\x17\xac\x91\xa5\xac\xde\xf1\xdb\x79\x66\x99\xfe\x70\x0e\x00\xee\xe2\x8b\xab\x7a\x22\x6f\x55\x7e\x1e\x72\x7b\x83\xbf\xd9\xbc\xac\xea\x85\x4e\x16\x2e\xd7\x00\x00\x00\xff\xff\x38\xdb\x00\xb4\xd3\x00\x00\x00" +var _idtablestakingScriptsGet_non_operationalCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4a\xc5\x30\x14\x06\xe0\x3d\x4f\xf1\x8f\xf7\x0e\xde\x3a\xbb\x55\x52\xa1\x50\x2a\x98\x2c\x22\x0e\xa9\xa6\xed\xa1\xe9\x39\x21\x39\x45\x45\x7c\x77\x11\x04\x17\x5f\xe0\xe3\xa3\x3d\x4b\x51\xdc\x25\x79\xeb\xad\x0f\x53\x8a\x4e\xc3\x46\xbc\x60\x2e\xb2\xe3\xfa\xbd\xb7\xdd\xe8\x7b\xff\xe8\xdb\xdb\xa1\x6b\xad\x7d\xe8\x9c\x33\xa6\x69\xe0\x57\xaa\xa8\x2f\x85\xb2\xa2\x44\x3d\x0a\x57\xe8\x1a\x91\xa8\x2a\x64\x06\x0b\x5f\x49\x8e\x25\x28\x09\x87\x04\x96\xd7\x58\x8d\xc9\xc7\x84\xf9\x60\xec\x81\xf8\x74\xbe\xc1\x93\xd3\x42\xbc\x3c\xe3\xd3\x00\xf8\x95\xfe\xf9\x5c\x96\xa8\xa3\xf0\xfd\x9f\x38\xfe\x80\x03\x55\x3d\x9d\x2f\x5b\xfc\xa8\xe6\xeb\x3b\x00\x00\xff\xff\x40\xc7\xef\x0e\xcd\x00\x00\x00" func idtablestakingScriptsGet_non_operationalCdcBytes() ([]byte, error) { return bindataRead( @@ -3600,11 +3540,11 @@ func idtablestakingScriptsGet_non_operationalCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_non_operational.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x40, 0x89, 0x18, 0xff, 0x98, 0x6e, 0xd7, 0x28, 0x71, 0xee, 0x6f, 0xa0, 0x59, 0x7e, 0xc5, 0x96, 0xcb, 0xef, 0xb4, 0x9f, 0x6b, 0xe6, 0x75, 0x21, 0xb, 0x6a, 0x90, 0xb5, 0xde, 0xa5, 0xfd, 0x61}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xeb, 0xa0, 0x38, 0xa8, 0x89, 0xab, 0xee, 0xef, 0xcf, 0x75, 0x60, 0xc1, 0x29, 0x70, 0xdb, 0xd0, 0x51, 0xc9, 0xee, 0x42, 0x0, 0x31, 0x2a, 0x42, 0x2c, 0x26, 0x32, 0xea, 0x1d, 0xbe, 0xd2, 0x80}} return a, nil } -var _idtablestakingScriptsGet_proposed_tableCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x8b\xc2\x40\x10\x46\xfb\xfd\x15\x1f\xa9\x92\xe6\xd2\x5f\x1d\x0e\xd2\x1c\x42\xd2\x89\xc5\xba\x99\x6c\x06\x37\xb3\x61\x76\x82\x88\xf8\xdf\x45\xb0\xd3\xfa\xf1\x1e\x8f\xd7\x2d\xab\xe1\x2f\xe5\x6b\xdf\x8d\xfe\x9c\x68\x30\x7f\x61\x89\x98\x35\xaf\xa8\x3e\x41\xe5\x5c\xdb\x62\x5c\xb8\xa0\x04\xe5\xcd\xa0\x64\xbb\x4a\x81\x2d\x84\xb0\xab\x92\x18\x78\x22\x31\xb6\x1b\xec\xa5\x22\x91\x44\x5b\x9c\xf3\x21\x50\x29\xb5\x4f\xa9\xc1\xbc\x0b\x56\xcf\x52\x37\xbf\x38\x0e\xa6\x2c\xf1\x84\xbb\x03\xf0\x2e\x7e\xb9\xfa\x89\x64\x07\xcd\x5b\x2e\x34\xfd\xe7\x89\xfa\xae\xd4\x8d\x7b\x3c\x03\x00\x00\xff\xff\x09\xfb\xc4\x0b\xc6\x00\x00\x00" +var _idtablestakingScriptsGet_proposed_tableCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4a\x04\x31\x10\x06\xe0\x3e\x4f\xf1\x97\x77\x8d\x67\x6d\x77\x92\x15\x02\x72\x88\x49\x23\x62\xb1\x77\x3b\x9b\x1d\xdc\x9d\x84\xc9\x04\x15\xf1\xdd\x45\xb0\xbc\x17\xf8\xf8\x78\xab\x45\x0d\x0f\x6b\xf9\x08\x3e\x8d\xe7\x95\xa2\x8d\xef\x2c\x19\xb3\x96\x0d\xb7\x9f\xc1\x0f\xa7\x14\xd2\x4b\x3a\xde\x3f\x0e\x47\xef\x9f\x87\x18\x9d\x3b\x1c\x90\x16\x6e\x68\x17\xe5\x6a\x50\xb2\xae\xd2\x60\x0b\xe1\xd2\x55\x49\x0c\x3c\x91\x18\xdb\x17\xec\x4f\xc5\x4a\x92\x6d\x71\xae\xf6\x33\xe6\x2e\xd8\x46\x96\xdd\xfe\x0e\xaf\xd1\x94\x25\xbf\xe1\xdb\x01\xf8\x97\xae\x7c\x6e\x32\xd9\x93\x96\x5a\x1a\x4d\xa7\x32\x51\xf0\x6d\xb7\x77\x3f\xbf\x01\x00\x00\xff\xff\xd3\xe0\x18\x61\xc0\x00\x00\x00" func idtablestakingScriptsGet_proposed_tableCdcBytes() ([]byte, error) { return bindataRead( @@ -3620,11 +3560,11 @@ func idtablestakingScriptsGet_proposed_tableCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_proposed_table.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb2, 0x53, 0xc3, 0x59, 0x7d, 0xbb, 0x1e, 0xfe, 0x8e, 0x70, 0x72, 0xc5, 0x58, 0x91, 0x67, 0xc1, 0xd3, 0x89, 0x22, 0x23, 0x5, 0xf9, 0x9c, 0xf4, 0x18, 0xbd, 0x64, 0x88, 0xef, 0x61, 0xa4, 0xcb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0xca, 0x75, 0x49, 0x77, 0x1d, 0x0, 0x4c, 0x7b, 0x1a, 0xc3, 0x14, 0x3f, 0xd9, 0x9e, 0x45, 0xf1, 0x9a, 0xeb, 0x3e, 0x4e, 0x8a, 0x4, 0x5e, 0x94, 0x18, 0xcf, 0x6b, 0x8b, 0x24, 0xd6, 0x5e}} return a, nil } -var _idtablestakingScriptsGet_role_countsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\xc4\x40\x10\x46\xfb\xfd\x15\x1f\x57\x25\x8d\x87\x8d\xc8\xb5\x27\xc2\x35\x16\x1a\x7f\xc0\x9a\x4c\x92\xc5\xd9\x99\x30\x33\x8b\x45\xc8\x7f\x17\xc1\x4e\xab\x57\x3c\x78\xbc\x52\x37\xb5\xc0\x33\xeb\xd7\xed\x69\xc8\x1f\x4c\x6f\x91\x3f\x8b\x2c\x98\x4d\x2b\x4e\x7f\xc5\x29\xa5\xf3\x19\xc3\x5a\x1c\x3e\x5a\xd9\x02\x46\xd1\x4c\x1c\xb1\x12\x9c\x35\xc0\xa5\x96\x70\xcc\x6a\x10\x9d\x08\xa6\x4c\x9e\x52\x1e\x47\x72\xef\x32\x73\x8f\xb9\x09\x6a\x2e\xd2\xf5\x17\xec\xef\x37\x89\xc7\x0b\x7e\x70\xff\x70\x60\x4f\x00\x7e\xab\xff\x9c\xdd\x2d\x14\xd7\x66\x46\x12\xaf\xca\xf4\xa2\x13\x5d\xb5\x49\x78\xd7\xa7\xe3\x3b\x00\x00\xff\xff\xe7\x1d\xde\xdf\xd0\x00\x00\x00" +var _idtablestakingScriptsGet_role_countsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4a\x03\x41\x10\x87\xf1\x7e\x9f\xe2\x5f\x26\x8d\xd1\x46\x24\x5d\xcc\x9e\xb0\x20\x29\x72\x6b\x61\x79\x31\x73\xb9\xc5\xdd\x99\x63\x76\x16\x85\xe3\xde\x5d\x04\x4b\xab\xaf\xfb\xf8\xa5\x32\x8b\x1a\x5e\xb2\x7c\x05\x1f\x87\x4b\xa6\xde\x86\xcf\xc4\x37\x8c\x2a\x05\xf7\xdf\xc1\x77\xa7\x18\xe2\x7b\x3c\x3c\xbf\x76\x07\xef\xcf\x5d\xdf\x3b\xb7\xdb\x21\x4e\xa9\xa2\x7e\x68\x9a\x0d\x4a\xd6\x94\x2b\x6c\x22\xd4\x2c\x86\x9c\x4a\xb2\x8a\x51\x14\x2c\x57\x82\x4a\xa6\xea\xdc\xdc\x2e\x18\x1b\xa3\x0c\x89\x37\xdb\x3d\x96\xb7\xc0\xf6\xb4\xc7\x6f\x1e\x1e\x57\x2c\x0e\xc0\xdf\xed\x1f\xd3\xdd\x8d\xec\xd8\x54\x89\xed\x2c\x99\x4e\x72\xa5\xa3\x34\xb6\xba\xd9\xba\xf5\x27\x00\x00\xff\xff\xfe\x16\x53\xb9\xca\x00\x00\x00" func idtablestakingScriptsGet_role_countsCdcBytes() ([]byte, error) { return bindataRead( @@ -3640,11 +3580,11 @@ func idtablestakingScriptsGet_role_countsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_role_counts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x52, 0xf9, 0xab, 0x6c, 0xc9, 0xbd, 0x96, 0x38, 0x13, 0xbc, 0x3b, 0x1, 0xb0, 0x5c, 0x4, 0xc8, 0xe4, 0x78, 0xca, 0x66, 0x28, 0x95, 0xe4, 0xb4, 0x54, 0x91, 0xa5, 0xa0, 0x3f, 0x44, 0xe9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0x61, 0xf8, 0x74, 0xa8, 0xe7, 0x8c, 0x76, 0xe5, 0xed, 0x59, 0x4a, 0x68, 0x4a, 0x9f, 0xf9, 0xd9, 0xb6, 0x3f, 0xab, 0xc3, 0x63, 0xa1, 0x67, 0x38, 0x3d, 0x17, 0xee, 0x63, 0x82, 0x62, 0x40}} return a, nil } -var _idtablestakingScriptsGet_slot_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcf\x31\x4b\x34\x31\x10\xc6\xf1\x3e\x9f\xe2\x61\xab\xdd\xe6\x3d\xde\x46\x44\x90\x2b\x14\xe1\xc0\xca\x3b\x2b\xb1\x88\xd9\xc9\xdd\xe0\x6c\x66\xc9\xcc\x62\x21\x7e\x77\xd9\x1c\xa2\xa0\x69\x52\x3c\xe1\xcf\x2f\x3c\xcd\x5a\x1d\x77\xa2\x6f\xbb\xdb\x43\x7c\x11\xda\x7b\x7c\xe5\x72\x44\xae\x3a\xa1\xfb\x3d\x74\x21\x6c\x36\x38\x9c\xd8\x60\xa9\xf2\xec\xa8\xe4\x4b\x2d\x06\x3f\x11\x4c\xd4\x21\x3c\xb1\x1b\xb2\x56\x14\x1d\x09\x55\x85\x2c\x84\x98\x12\x99\xf5\x51\x64\x40\x5e\x0a\xa6\xc8\xa5\x5f\xb7\x2b\x3c\xee\x8a\x5f\x0e\xe7\xfb\xff\x05\xde\x03\x00\x08\x79\xeb\xdd\xaf\x39\x5c\xff\x81\xfc\x77\x24\x7f\x50\xa1\xfd\xd7\x2b\xeb\x87\xa7\xb5\xf8\xdc\x02\xeb\xd9\x6e\x31\xc7\xc2\xa9\xef\x6e\x74\x91\x11\x45\x1d\x99\xcb\xf8\x43\xda\xa0\x0d\x3f\x53\xe2\xcc\x34\x36\x71\x37\x84\x56\x39\x7f\xef\x5b\x12\x3e\x3e\x03\x00\x00\xff\xff\x3b\xd0\x7e\xcc\x35\x01\x00\x00" +var _idtablestakingScriptsGet_slot_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcf\x41\x4b\xf3\x40\x10\xc6\xf1\xfb\x7e\x8a\x87\x9e\x92\xcb\xdb\xd7\x8b\x88\x20\xa5\x9a\x08\x81\xe2\xa1\x89\x07\x11\x0f\x69\x32\xdb\x0e\x6e\x76\x96\xdd\x09\x0a\xe2\x77\x97\x6c\x11\x3d\xb8\x97\x85\x61\xf8\xf3\x1b\x9e\x82\x44\xc5\xbd\x93\xb7\xa6\xea\xfa\x83\xa3\x56\xfb\x57\xf6\x47\xd8\x28\x13\xfe\xbf\x37\x55\xfd\xd0\x35\xdd\x53\xb7\xbd\xdd\xd5\xdb\xaa\xda\xd7\x6d\x6b\xcc\x7a\x8d\xee\xc4\x09\x69\x88\x1c\x14\x91\x74\x8e\x3e\x41\x4f\x84\xe4\x44\xe1\x78\x62\x4d\xb0\x12\xe1\x65\x24\x44\x71\x94\x8c\x09\xf3\x01\x76\xf6\x98\x7a\xf6\xc5\x32\xbb\xc6\x63\xe3\xf5\xaa\x3c\xff\x17\x97\xf8\x30\x00\xe0\x48\x73\x67\xb7\x64\x70\xf3\x07\xef\xdf\x91\x74\x2f\x8e\xda\xef\xad\x54\x94\xcf\x4b\xf1\x25\x07\x96\xb7\xd9\x20\xf4\x9e\x87\x62\x75\x27\xb3\x1b\xe1\x45\x61\xd9\x8f\xbf\x84\x19\x98\xd1\x81\x06\xb6\x4c\x63\x96\xae\x4a\x93\x2b\xe7\xb3\x7e\x24\xe6\xf3\x2b\x00\x00\xff\xff\xd0\xf8\x5e\x99\x2f\x01\x00\x00" func idtablestakingScriptsGet_slot_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -3660,11 +3600,11 @@ func idtablestakingScriptsGet_slot_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_slot_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x48, 0xb5, 0xbb, 0x6d, 0xa6, 0x2a, 0xf, 0xfa, 0xb4, 0xc1, 0x4, 0x2, 0x12, 0x6f, 0x89, 0xa8, 0x7, 0x2f, 0x19, 0x27, 0x70, 0xe6, 0x9a, 0xc2, 0xc7, 0xa2, 0x4c, 0xd7, 0x65, 0xa4, 0x4e, 0xd0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfa, 0x17, 0x95, 0x42, 0xcd, 0xcf, 0x54, 0x6, 0x58, 0xcd, 0x76, 0x5d, 0x53, 0x5e, 0x4d, 0xde, 0x46, 0xe7, 0x2e, 0xe6, 0x51, 0xbc, 0xe7, 0x66, 0x76, 0x1, 0xb2, 0xbf, 0x7d, 0xda, 0x1f, 0x21}} return a, nil } -var _idtablestakingScriptsGet_stake_requirementsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\x03\x41\x10\x46\xfb\xfd\x15\x9f\xa9\xee\x1a\xd3\x88\x48\xc0\x4e\x02\x29\x6c\x34\xa9\xc4\x62\xb2\x99\x4b\x86\xdb\x9d\x4d\x76\x66\x51\x10\xff\xbb\xac\x96\xa6\x7d\xc3\x7c\xef\x49\x3e\x97\xea\x58\xa7\xf2\xb1\x79\xda\xd2\x3e\xf1\xab\xd3\x2c\x7a\xc4\x54\x4b\xc6\xe2\xff\x61\x11\xc2\x72\x89\xed\x49\x0c\x16\xab\x9c\x1d\x95\xbd\x55\x35\xf8\x89\xb1\xa7\x44\x1a\x19\x65\x82\x39\xcd\x7c\x80\x97\x99\xd5\x3a\x20\x68\x39\x70\x08\x14\x23\x9b\x0d\x94\xd2\x88\xa9\x29\x32\x89\x0e\xb5\x24\x5e\x61\xb7\x51\x7f\x18\x57\xd8\xad\xe5\xf3\xfe\x0e\x5f\x01\x00\x12\x77\xc7\x05\x8f\x57\x32\x6f\x8f\xec\xcf\xa2\x92\x5b\xee\x84\x5f\xf8\xd2\xa4\x72\x66\x75\x1b\xc6\xf0\xfb\xff\xd7\xd7\x27\xde\xba\xe5\xfd\x26\x7c\xff\x04\x00\x00\xff\xff\x6c\xf5\xe4\x97\xf7\x00\x00\x00" +var _idtablestakingScriptsGet_stake_requirementsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\x33\x41\x14\x45\xfb\xf9\x15\xf7\xeb\x92\xe6\x8b\x85\x88\x04\x2c\x22\xbb\x81\x05\xb5\xc8\x4e\x0a\x11\x8b\xd9\xe4\x6d\xf2\xd8\x99\x37\x9b\x99\x37\x18\x10\xff\xbb\x8c\xb6\xb6\x07\xee\xb9\x87\xc3\x1c\x93\x62\xeb\xe3\x47\xd7\x58\x37\x78\xea\xd5\x4d\x2c\x27\x8c\x29\x06\xdc\x5c\xbb\xa6\x7d\xb1\x9d\x7d\xb5\x9b\xc7\xa7\x76\xd3\x34\xbb\xb6\xef\x8d\x59\xad\x60\xcf\x9c\x91\x0f\x89\x67\x45\x22\x2d\x49\x32\xf4\x4c\x18\x9c\x77\x72\x20\xc4\x11\x59\xdd\x44\x47\x68\x9c\x48\x72\x05\x0e\x12\x8f\x64\xcc\x5c\x06\x8c\x45\x10\x1c\xcb\x22\x45\x4f\x6b\xec\x3b\xd1\xfb\xe5\x1a\xfb\x2d\x5f\xef\x6e\xf1\x69\x00\xc0\x53\x75\x5f\xf0\xf0\x47\xe0\xff\x13\xe9\x33\x0b\x87\x12\x2a\xa1\x1d\x5d\x0a\x27\x0a\x24\x9a\x17\x4b\xf3\xb3\xff\xed\xaa\x8a\xb7\xfa\xf2\xfe\xcf\x7c\x7d\x07\x00\x00\xff\xff\x94\x17\x67\xd0\xf1\x00\x00\x00" func idtablestakingScriptsGet_stake_requirementsCdcBytes() ([]byte, error) { return bindataRead( @@ -3680,11 +3620,11 @@ func idtablestakingScriptsGet_stake_requirementsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_stake_requirements.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe7, 0x86, 0xdf, 0xf1, 0xc8, 0xc4, 0x94, 0xcc, 0x38, 0x85, 0xa2, 0x94, 0x17, 0x58, 0xe4, 0xe, 0xc7, 0x91, 0x1f, 0xd6, 0x72, 0xd0, 0x98, 0x61, 0x35, 0x17, 0x5, 0x79, 0x52, 0xf2, 0xcc, 0xf3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa2, 0x42, 0x8e, 0x32, 0x9e, 0x5d, 0x9, 0x77, 0x67, 0x63, 0xb3, 0x34, 0x22, 0x62, 0x79, 0x87, 0xaf, 0x67, 0x2c, 0x9b, 0xed, 0x6c, 0x82, 0xf7, 0x38, 0xaa, 0x16, 0x74, 0xcd, 0x2a, 0xf8, 0x5d}} return a, nil } -var _idtablestakingScriptsGet_tableCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xca\xc2\x40\x10\x06\xfb\x7b\x8a\x8f\x54\x49\xf3\xa7\xff\xeb\x20\xa4\xb1\x49\x3a\xb1\x38\x2f\x9b\xcb\xe2\x65\x2f\xec\x6d\x10\x11\xdf\x5d\x04\x3b\xad\x87\x19\x86\xd7\x2d\xab\xe1\x90\xf2\xad\xef\x46\x7f\x49\x34\x98\xbf\xb2\x44\xcc\x9a\x57\x54\xdf\xa0\x72\xae\x6d\x31\x2e\x5c\x50\x82\xf2\x66\x50\xb2\x5d\xa5\xc0\x16\x42\xd8\x55\x49\x0c\x3c\x91\x18\xdb\x1d\xf6\x56\x91\x48\xa2\x2d\xce\xf9\x10\xa8\x94\xda\xa7\xd4\x60\xde\x05\xab\x67\xa9\x9b\x7f\x9c\x06\x53\x96\x78\xc6\xc3\x01\xf8\x14\x7f\x5c\xfd\x45\xb2\x63\x9e\xa8\xef\x4a\xdd\xb8\xe7\x2b\x00\x00\xff\xff\x9f\x7f\xe9\x36\xbe\x00\x00\x00" +var _idtablestakingScriptsGet_tableCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xbf\x4a\x04\x31\x10\x07\xe0\x3e\x4f\xf1\x2b\xef\x1a\xcf\xda\xee\x24\x2b\x04\x64\x0b\x93\x46\xc4\x62\xff\xcc\x66\x07\x77\x27\xcb\x64\x82\x8a\xf8\xee\x22\x58\xfa\x02\x1f\x1f\xef\x47\x51\xc3\xc3\x56\xde\x83\x4f\xc3\xb8\x51\xb4\xe1\x8d\x25\x63\xd1\xb2\xe3\xf6\x23\xf8\xae\x4f\x21\x3d\xa7\xeb\xfd\x63\x77\xf5\xfe\xa9\x8b\xd1\xb9\xcb\x05\x69\xe5\x8a\x3a\x29\x1f\x06\x25\x6b\x2a\x15\xb6\x12\xa6\xa6\x4a\x62\xe0\x99\xc4\xd8\x3e\x61\xbf\x2a\x36\x92\x6c\xab\x73\x47\x1b\xb1\x34\xc1\x3e\xb0\x9c\xce\x77\x78\x89\xa6\x2c\xf9\x15\x5f\x0e\xc0\x9f\xf4\xcf\xe7\x26\x93\xf5\x65\xa6\xe0\xeb\xe9\xec\xbe\x7f\x02\x00\x00\xff\xff\x94\x0c\xfa\xd5\xb8\x00\x00\x00" func idtablestakingScriptsGet_tableCdcBytes() ([]byte, error) { return bindataRead( @@ -3700,11 +3640,11 @@ func idtablestakingScriptsGet_tableCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_table.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x37, 0xc8, 0x81, 0x80, 0x7d, 0x40, 0xfd, 0xf, 0xc7, 0x71, 0xe, 0x59, 0x88, 0xdd, 0x66, 0x97, 0x72, 0x23, 0xc6, 0xf1, 0x52, 0xa2, 0x60, 0x27, 0xb8, 0x71, 0x9d, 0x2, 0xcf, 0x39, 0x24, 0x16}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0xf8, 0x5a, 0xde, 0x69, 0xf4, 0xb2, 0x52, 0xda, 0x8c, 0xf5, 0xfd, 0xb, 0x8, 0x27, 0x24, 0xc0, 0x38, 0xc, 0x44, 0x35, 0xdf, 0xfc, 0x26, 0xe7, 0xe6, 0x2d, 0xd, 0x2d, 0x51, 0x84, 0x99}} return a, nil } -var _idtablestakingScriptsGet_total_stakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x4f\xc3\x30\x14\x84\x77\xff\x8a\x6b\xa7\x44\x48\x6d\x07\x40\x08\x29\x0b\xaa\x2a\x75\x61\x69\x3a\x21\x06\x37\x7d\x29\x56\x1c\xbf\xca\x7e\x01\x2a\xd4\xff\x8e\x6a\x97\x90\x08\x3c\xd8\xb2\x7c\xf7\xdd\xf9\x99\xf6\xc8\x5e\xb0\xb2\xfc\xb1\x5e\x96\x7a\x67\x69\x23\xba\x31\xee\x80\xda\x73\x8b\xe9\xdf\x87\xa9\x52\xba\xaa\x28\x84\x4c\x5b\x9b\xa3\xee\x1c\x5a\x6d\x5c\x96\x3f\x62\xbb\x32\x9f\xf7\xb7\xf8\x52\x00\x60\x49\x10\x44\x37\xb4\x2f\xb9\x21\x17\x50\xfc\x93\x32\x3b\x90\x94\x2c\xda\x26\xcd\x26\xea\x9f\x4e\xcf\xbc\xa7\xf2\x74\xa4\x2c\x57\x91\x35\x9f\xa3\xd2\xb6\xea\xac\x16\x82\xbc\x11\xe4\xe2\x81\xeb\xda\x1d\x79\x70\x0d\x49\x11\x29\x2f\x5a\xde\xb5\x4f\xaa\xc4\xec\xcb\x15\x58\xcc\x16\x51\x51\xb3\x87\xbb\x06\xc1\xb8\x51\xd9\x59\x43\xa7\x70\xfd\xc8\xb5\xc0\x92\xe1\x58\x50\x71\xe7\x04\x69\x02\xd1\x1e\x7a\x91\xa9\x7f\x79\x93\x02\xdb\xb5\x93\x87\xec\x2e\x1f\x60\x2e\x6b\x50\x0a\xc5\xe8\x76\x33\xaa\xf0\xf2\xc3\x7a\x9d\xf4\xfe\xb3\x4a\x7b\x3c\x3c\x49\xe7\xdd\x90\xa0\xce\xdf\x01\x00\x00\xff\xff\x4d\x18\xa4\x68\xcf\x01\x00\x00" +var _idtablestakingScriptsGet_total_stakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x6b\xfa\x30\x1c\xc5\xef\xfd\x2b\x9e\x37\xe5\x07\xea\xe1\xb7\x31\x06\x3d\x28\x55\x28\x0c\x0f\x6b\x3c\x8c\xb1\x43\xac\xdf\xba\xd0\x34\x91\xe4\x9b\x4d\x19\xfe\xef\xc3\xc4\x39\x0b\xeb\xa1\x21\xf0\xde\xe7\x7d\xa2\xba\xbd\x75\x8c\xa5\xb6\x9f\x65\x21\xe4\x46\x53\xc5\xb2\x55\x66\x87\xc6\xd9\x0e\xd3\x43\x59\x2c\x56\xa2\x14\x2f\x62\x36\x7f\x5a\xcc\x8a\xe2\x79\x51\x55\x59\xb6\x0f\x1b\x34\xc1\xa0\x93\xca\x0c\x47\x8f\x58\x2f\xd5\xe1\xfe\x3f\xbe\x32\x00\xd0\xc4\xf0\x2c\x5b\xda\x0a\xdb\x92\xf1\xc8\xff\xe0\x8f\x77\xc4\xc2\xb2\xd4\x29\x53\xc5\xfc\xfc\xb8\xb2\x5b\x12\xc7\x3d\x0d\x47\x59\x64\x4d\x26\xa8\xa5\xae\x83\x96\x4c\xe0\x77\x02\x9f\x3b\x30\xa1\xdb\x90\x83\x6d\xc0\x69\x22\xed\xc5\xca\x87\x74\x29\x95\x98\x57\xb9\x1c\xd3\xf1\x34\x26\x1a\xeb\x60\x2e\x43\x50\xa6\x27\x3b\x6e\xe9\xe8\x2f\x0f\xb9\x08\x14\x16\xc6\x32\x6a\x1b\x0c\x43\xd6\x35\x79\x1f\xeb\xfe\x1a\x52\xcd\x2f\x6f\x90\x63\x5d\x1a\x7e\x18\xde\x8d\x6e\x30\xe7\xef\x46\x0a\x79\xef\xf6\xaf\xa7\xf0\xfa\xc3\x7a\x1b\x5c\xfb\xa7\x2c\xfd\xe3\xe1\x88\x83\x33\xb7\x84\xec\xf4\x1d\x00\x00\xff\xff\x92\x54\xac\x93\xc9\x01\x00\x00" func idtablestakingScriptsGet_total_stakedCdcBytes() ([]byte, error) { return bindataRead( @@ -3720,11 +3660,11 @@ func idtablestakingScriptsGet_total_stakedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_total_staked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xee, 0x84, 0x69, 0x78, 0x9e, 0xaf, 0x71, 0x2a, 0xc4, 0x96, 0xa3, 0xa6, 0x92, 0x57, 0x3c, 0x53, 0xe3, 0x4, 0xe7, 0x79, 0x41, 0x9e, 0x30, 0xd3, 0xee, 0x4c, 0xf1, 0x6c, 0xee, 0x29, 0x62, 0x56}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0xe, 0x2f, 0xe3, 0x9c, 0xa, 0x4d, 0xce, 0x85, 0x12, 0x72, 0x14, 0x74, 0x65, 0x62, 0x3b, 0x74, 0x22, 0x25, 0xaf, 0x1a, 0x94, 0x4d, 0x5d, 0x4c, 0x74, 0xb6, 0x76, 0xd3, 0x6d, 0x7e, 0xf6}} return a, nil } -var _idtablestakingScriptsGet_total_staked_by_typeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\x03\x41\x10\x46\xfb\xfd\x15\x9f\xa9\xee\x1a\xd3\x88\x48\xc0\x46\x24\x90\xc6\x26\x9b\x4a\x2c\x26\x7b\x73\xc9\x72\x73\x33\xc7\xee\x04\x0d\xe2\x7f\x97\x9c\x5a\x99\x76\xe6\xe3\xbd\x97\xc7\xc9\x8a\x63\x2d\xf6\xbe\x79\x8e\xb4\x17\xde\x3a\x0d\x59\x0f\xe8\x8b\x8d\x58\xfc\x7f\x2c\x42\x58\x2e\x11\x8f\xb9\xa2\xa6\x92\x27\x47\x61\x3f\x15\xad\xf0\x23\x63\x4f\x42\x9a\x18\xd6\xa3\x3a\x0d\xdc\xc1\x6d\x60\xad\x97\x03\x41\xad\xe3\x10\x28\x25\xae\xb5\x21\x91\x16\xfd\x49\x31\x52\xd6\xa6\x98\xf0\x0a\xbb\x8d\xfa\x43\xbb\xc2\x6e\x9d\x3f\xee\xef\xf0\x19\x00\x40\xd8\xff\x60\x8f\x57\x4a\x6f\x0f\xec\xd1\x9c\x24\xce\xa6\xed\xbc\x7c\x3a\xbf\x58\xc7\xf1\x3c\x71\xd3\x86\x99\xf2\x53\xf9\x0b\x7a\xbd\xe8\xde\x6e\xc2\xd7\x77\x00\x00\x00\xff\xff\x86\x18\xde\x12\x00\x01\x00\x00" +var _idtablestakingScriptsGet_total_staked_by_typeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xc1\x4a\xc3\x40\x14\x45\xf7\xf3\x15\xd7\x5d\xbb\xb1\x2e\x44\xa4\xe0\xa2\x25\x29\x04\xa4\x0b\x33\x5d\x88\xb8\x98\x34\x2f\xed\x90\xc9\x7b\xc3\xcc\x0b\xb6\x88\xff\x2e\x89\xba\x73\x7b\xb9\x9c\x73\xfc\x10\x25\x29\x76\x41\x3e\xaa\xc2\xba\x26\x50\xad\xae\xf7\x7c\x42\x97\x64\xc0\xdd\xa5\x2a\xca\xbd\xad\xec\xab\xdd\x6c\x9f\xcb\x4d\x51\xbc\x94\x75\x6d\xcc\x6a\x05\x7b\xf6\x19\xf9\x98\x7c\x54\x24\xd2\x31\x71\x86\x9e\x09\x8d\x0b\x8e\x8f\x04\xe9\x90\xd5\xf5\xd4\x42\xa5\x27\xce\xd3\xe0\xc0\xd2\x92\x31\x71\x6c\xd0\x8d\x8c\xc1\x79\x5e\x24\x09\xb4\xc6\xa1\x62\x7d\x5c\xae\x71\xd8\xf9\xcb\xc3\x3d\x3e\x0d\x00\x04\xd2\x3f\xc8\xd3\x3f\x8d\xb7\x27\x52\x2b\xea\x82\x9d\x0d\xf5\xfc\xdc\x5e\xf7\xd2\x92\xbd\x46\x5a\x2c\xcd\x4c\xf9\xa9\xfb\x05\xbd\x4d\xba\xf7\x1b\xf3\xf5\x1d\x00\x00\xff\xff\xa3\x91\xa6\x55\xfa\x00\x00\x00" func idtablestakingScriptsGet_total_staked_by_typeCdcBytes() ([]byte, error) { return bindataRead( @@ -3740,11 +3680,11 @@ func idtablestakingScriptsGet_total_staked_by_typeCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_total_staked_by_type.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xa5, 0x8b, 0x42, 0xe8, 0x8b, 0x45, 0x62, 0x3c, 0x6, 0x1b, 0x16, 0xa7, 0xc3, 0xfc, 0xf9, 0x75, 0xc8, 0x3b, 0xbe, 0x43, 0x97, 0xee, 0x83, 0xd6, 0x7f, 0xa5, 0x89, 0x4d, 0x3c, 0xdb, 0xe6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0x23, 0xae, 0xad, 0x6a, 0x8a, 0xa, 0x6e, 0x26, 0x92, 0x41, 0x25, 0x43, 0x64, 0x93, 0x17, 0xde, 0xa4, 0x31, 0x94, 0x9d, 0xb7, 0xb2, 0x15, 0xcb, 0xe1, 0xf8, 0x7b, 0x9a, 0x28, 0xf6, 0xa4}} return a, nil } -var _idtablestakingScriptsGet_weekly_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x8a\x83\x40\x10\xc6\xf1\x7e\x9f\xe2\xc3\x4a\x9b\xb3\x39\xae\xb8\xfa\x4e\x48\x17\x88\x79\x80\x71\x1d\x75\x71\xdd\x91\x9d\x91\x24\x84\xbc\x7b\x10\xd2\x25\xed\xf7\xc1\x8f\x7f\x58\x56\xc9\x86\x26\xca\xe5\xf0\xd7\x52\x17\xf9\x64\x34\x87\x34\x62\xc8\xb2\xa0\x78\x3f\x0a\xe7\xea\x1a\xed\x14\x14\xea\x73\x58\x0d\x99\x6d\xcb\x49\x61\x13\xa3\xa3\x48\xc9\x33\x64\x80\x1a\xcd\xdc\xc3\x64\xe6\xa4\xfb\x40\x48\xd2\xb3\x73\xe4\x3d\xab\x96\x14\x63\x85\x61\x4b\x58\x28\xa4\xb2\xfa\xc5\xb9\x09\xd7\x9f\x6f\xdc\x1d\x80\x17\xfa\x21\xec\x6b\x64\xfb\x5f\xc5\x4f\xed\x0e\x1f\xe9\x26\x9b\x95\x95\x7b\x3c\x03\x00\x00\xff\xff\x18\x12\xd8\x60\xca\x00\x00\x00" +var _idtablestakingScriptsGet_weekly_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4b\xc4\x30\x14\xc7\xf1\x3d\x7f\xc5\x6f\xbc\x5b\x3c\x07\x71\x70\x3b\x49\x0e\x0a\x22\x62\xe3\xe0\xf8\xda\x7b\x6d\x43\xdb\xbc\x90\xbc\x60\x45\xfc\xdf\xa5\xe0\x78\xeb\x77\xf8\xf0\x0d\x6b\x92\xac\xb8\x2c\xf2\xd5\x58\x4f\xdd\xc2\xad\xd2\x1c\xe2\x88\x21\xcb\x8a\xfb\xad\xb1\xee\xd5\x37\xfe\xd3\x9f\x9f\x5f\xdc\xd9\xda\x77\xd7\xb6\xc6\x9c\x4e\xf0\x53\x28\x28\x7d\x0e\x49\x91\x59\x6b\x8e\x05\x3a\x31\x3a\x5a\x28\xf6\x0c\x19\x50\x94\x66\xbe\x42\x65\xe6\x58\xf6\x40\x88\x72\x65\x63\x52\xed\x30\xd4\x88\x95\x42\x3c\x1c\x9f\xf0\x71\x09\xdb\xe3\x03\x7e\x0c\x80\x7f\xec\xc6\xd2\xdd\xc8\xea\x92\xf4\x93\xdf\xc1\x37\xfa\x96\xaa\x87\xa3\xf9\xfd\x0b\x00\x00\xff\xff\xaa\x9e\x1d\x2b\xc4\x00\x00\x00" func idtablestakingScriptsGet_weekly_payoutCdcBytes() ([]byte, error) { return bindataRead( @@ -3760,11 +3700,31 @@ func idtablestakingScriptsGet_weekly_payoutCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_weekly_payout.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0x33, 0xf7, 0xf1, 0xb5, 0x1, 0x7e, 0x39, 0x3f, 0xe8, 0x81, 0x91, 0x4, 0x3e, 0x4c, 0x38, 0xba, 0x10, 0x42, 0xdd, 0xcc, 0x18, 0xf7, 0xcf, 0xa, 0xd1, 0x9e, 0x85, 0x1d, 0xc7, 0xe2, 0x81}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9b, 0xeb, 0x9b, 0x20, 0x40, 0xd3, 0x5b, 0x8, 0x6d, 0xe7, 0x22, 0xb, 0xdd, 0x87, 0xa4, 0x41, 0xf2, 0xb5, 0xc2, 0x43, 0x2d, 0x8f, 0x9a, 0x65, 0xf4, 0x31, 0xfa, 0xd2, 0x6f, 0xda, 0x4f, 0x9d}} + return a, nil +} + +var _inspect_fieldCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xc1\x09\x42\x31\x0c\x06\xe0\x7b\xa7\xf8\x8f\x7a\x91\x22\x5a\x1f\xde\xbc\x74\x01\x71\x80\xbe\x9a\x42\xc0\x26\x8f\x98\xea\x03\x71\x77\x17\x70\x81\x8f\xfb\xa2\xe6\xc8\x0f\x7d\x5f\xc9\x5e\x5c\xe9\x52\xab\x0e\x71\x34\xd3\x8e\xb8\xb6\xe9\x9e\x28\x1e\xa7\x34\xc7\xb2\x8f\xf5\x14\xc2\x32\x66\xb4\x21\xe8\x85\x65\xb3\x3d\xe3\x96\x79\x4d\x07\x7c\x02\x00\x18\xf9\x30\xf9\xe3\xed\xdc\x8a\x3c\x4b\x75\x56\xc9\x44\xe1\xfb\x0b\x00\x00\xff\xff\x7c\xe1\x51\x3b\x7a\x00\x00\x00" + +func inspect_fieldCdcBytes() ([]byte, error) { + return bindataRead( + _inspect_fieldCdc, + "inspect_field.cdc", + ) +} + +func inspect_fieldCdc() (*asset, error) { + bytes, err := inspect_fieldCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "inspect_field.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x74, 0xeb, 0x82, 0x68, 0x87, 0xc8, 0xaf, 0x97, 0x60, 0xf6, 0x63, 0x18, 0x23, 0x85, 0x7b, 0xb6, 0xf6, 0xbb, 0x8c, 0x4d, 0x40, 0x9c, 0x25, 0xc, 0xc5, 0x56, 0xa, 0xdf, 0x63, 0xa8, 0x28, 0xea}} return a, nil } -var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xde\x63\x8d\x24\x0b\xd7\xe8\xa2\xc5\xa6\xe8\xa2\x4d\x77\xcf\x13\x69\x6c\x11\xa6\x48\x95\xa4\x6c\x18\x8b\xbc\x7b\x41\x51\x7f\x94\x25\x3b\x6e\x57\x87\xc0\xa2\xe6\xf7\x9b\x99\x8f\x13\x96\x17\x52\x19\xd8\xa8\x53\x61\x64\x50\xbf\x7d\xe2\xf2\xf8\x22\xf7\x24\x60\xab\x64\x0e\xb3\xf6\x7d\xd6\x4a\x94\x62\xc7\x5e\x39\x79\x52\xfd\xb3\x56\xf2\x59\x26\x7b\x4a\xab\x33\x5d\x0b\xf6\x8f\x66\x41\x10\xc7\x31\xbc\x28\x14\x1a\x13\xc3\xa4\x00\x93\xa1\x01\x93\x11\xe4\xc8\x04\x98\xca\x03\xa6\x39\x13\x70\x94\x25\x4f\x41\xb3\x9d\xa8\x94\x8c\x84\x44\x11\x1a\x02\x04\x9d\xa1\xa2\x14\x30\x49\x64\x29\x0c\xa0\x48\x01\x05\x94\x82\x57\xbe\x2a\x71\x74\x9f\xb6\x52\x01\x42\xa9\x49\x05\x81\xe9\xdc\x86\x01\x00\x40\x81\xca\x30\xe4\x6b\xeb\xee\x4b\xf9\xca\x59\xf2\x99\x4e\xab\x1a\x9e\xe8\x33\x9d\x9e\x99\x36\xbf\x08\xa3\x4e\x0b\x88\x63\xf8\x46\x6c\x97\x99\x15\x7c\x58\x2e\xfb\xea\x7f\x6b\x52\x37\x68\xff\x54\x6b\x6f\x4b\x7e\xab\xea\x87\xe5\x72\x19\xcc\x01\xbe\x07\xce\xbf\xa2\x02\x15\x85\x15\x5c\x2b\xc0\xd2\x64\xe1\xcf\x52\x29\x79\xfc\x8a\xbc\xa4\x39\xdc\xad\x1d\x40\xf3\x46\xc3\x3e\x71\x0c\x1b\x87\xa3\x45\x5d\xd0\xb1\x81\x51\x3b\x1c\xd3\xd4\x7e\x60\x0a\xf6\x74\xd2\xad\x16\x27\x53\xa3\x5e\xdb\x84\x47\xa8\x7f\x85\x05\x9e\x48\xad\x5c\xd5\xe6\x9e\x86\xc5\xfd\x9a\x7c\xab\xe0\x99\x8f\xac\xf7\x08\xd3\x34\x2c\x3a\x7c\x46\xeb\x15\xb5\x02\x0b\xc8\x50\x67\x6b\xbe\x93\x8a\x99\x2c\x9f\x92\xf7\x84\x16\x70\xac\xc1\x1d\x17\x76\x5f\xe7\xb7\x07\xe9\x95\xf6\x7a\x8c\xbe\xf8\xe5\x10\x7d\xd9\x26\xc2\x36\xc4\x1e\xe8\xa3\x01\x9e\x35\xde\x85\xe8\xce\x65\x27\x42\x3b\x17\x3c\x8b\xab\x6b\x3c\x84\x42\xb1\x83\xfd\xc5\x99\xd8\xdb\xc9\xb6\xad\xa8\x8d\xb4\x43\x7d\xc0\x92\x1b\xaf\x8b\xaa\x93\x0d\x16\xf8\xca\x38\x33\x27\x78\x1c\x54\x21\x69\x3e\x31\xd2\x91\xb5\x82\x3b\x8a\x98\xd6\x25\xb5\x66\xec\xf3\x50\x0d\x88\xc7\x5b\xd1\x37\x66\xb2\x54\xe1\x71\x0e\x77\x2d\xed\x45\x5f\xad\xbf\x27\x4f\x37\x8c\x6b\xbb\xf1\xb6\x11\xab\xa4\xfc\xf4\x5a\x7e\x72\x3c\x54\xb3\x59\x8e\x02\x77\xa4\xaa\xe9\xaa\x73\x64\x06\x2c\xd9\xd9\xa4\x3d\x26\xf3\xd2\xe6\x1d\x71\xfe\x5e\x9b\x78\xb8\xf7\x18\x36\x72\x0e\x9f\xcf\x04\xc3\x0a\xb2\xd5\x10\xb9\xa9\x36\x6e\x30\xd3\x78\xa0\xf0\xe1\xfe\xdc\xf1\x02\x8c\x5c\xf9\xae\xcf\x9d\xfe\xe5\xac\x7c\x41\x93\xf5\x60\xb1\x99\x98\x9e\xd4\x74\x1d\x3d\xc0\x2f\x14\xf5\x4a\x1d\xaf\x44\xf9\x14\x7a\x7e\xec\xf3\xff\xf2\xfa\x55\xf2\x74\xb2\x34\x2f\x9d\x84\xef\xd7\x61\xbc\x4e\x53\x45\x5a\xaf\x06\xf5\x40\x77\xbc\xf0\x34\xfa\x20\xae\x26\x20\x6d\x15\x26\xe8\xc0\x2b\xb4\x3f\x1c\xf7\xbd\x64\x86\x8e\x07\xa5\xef\x25\xd5\xc3\x66\xcc\xb7\x05\x89\x89\xad\xdc\x60\x01\x8f\x5e\x24\x17\xca\x7b\x37\xe5\x6c\x50\xba\xdb\x62\x1a\x83\xc3\x0b\xa2\x22\x41\x9d\x85\x75\xbc\x0b\x40\x33\xda\xf2\xb5\xf2\x6f\x62\x2b\x1d\xd9\x4d\x35\x46\x75\x93\x6c\x24\xe7\xe4\x36\x9d\x47\x77\xe3\x35\xd9\xfa\xed\xfe\x5a\xdd\xdb\x63\xb9\x0f\xcc\x8c\xf4\xaf\xdd\xb3\xa6\xa7\x73\xa0\x3f\x86\x8e\x8f\x90\x7d\x3e\x7e\x84\x02\x05\x4b\xc2\xd9\xa6\xda\xc2\x84\x34\xe0\x42\x04\x45\x5b\x52\x24\x12\xb2\xbc\xed\x36\xb5\xa4\xb5\x3e\xeb\x01\x31\x06\x82\x6d\xed\x66\x0d\xf0\x1c\x7a\x03\x70\xcb\x58\x34\x4b\xdf\x50\xb5\x5f\xe7\xe9\x79\x5a\xbb\xd5\xe9\xfd\xd3\x14\xc7\xf0\xc7\x81\x94\x62\xa9\xdb\x9f\x52\xda\x5a\x8e\xed\x2d\xd1\x8a\x12\x62\x07\x52\x13\x5c\xeb\xf5\x5c\x29\x9a\xae\x8b\xdd\x1d\xdc\x5d\x2f\x7f\xd6\x66\x46\x6f\x18\xbb\xb5\x35\x7e\xdc\x06\x9d\xa3\xda\xeb\xe6\xac\xbe\x79\x34\xa0\xee\x96\xe2\x7e\x7f\xf6\x18\x5e\x77\x69\xdf\x70\xb1\x3e\xdc\x7d\xf7\x09\xb8\x09\xf7\xed\x29\xbc\x85\x4e\xdf\x81\x51\x83\xd0\x08\x7d\x0e\x13\xf0\x0b\x6c\xe7\x77\x12\xd6\x89\xda\x16\xa5\x01\x21\x55\x8e\xbc\xc3\x97\x09\xfb\x1f\x87\x5d\xb5\x2d\xf4\xa5\x60\xff\x94\x04\x45\x7f\x7e\xda\x91\x6f\xac\xff\x38\x30\x27\xf7\x8e\xff\x8a\xdc\x30\xce\x69\xcc\x1c\xc6\x9f\x2e\x20\x67\xff\xbe\x05\x6f\xc1\xbf\x01\x00\x00\xff\xff\xaf\xee\x68\xd2\x57\x0e\x00\x00" +var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x57\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\xf6\x50\xc8\x80\x63\x79\x8f\x15\x92\x2e\x5c\xc7\x69\x17\x71\x37\x41\x92\x6d\xce\x8c\x34\xb6\x08\xcb\xa4\x4a\x52\x76\x8d\x20\xff\xbd\xa0\xa8\x17\x25\xca\x8f\xa2\xc5\xfa\x64\x49\xdf\xbc\xbe\x79\x70\x48\xb7\x19\x17\x0a\xe6\xe2\x90\x29\xee\x95\x4f\x77\x29\xdf\xbf\xf0\x0d\x32\x58\x09\xbe\x85\xe9\xdf\x77\xcb\x87\xd7\x97\x87\xfb\xc5\xb7\xd9\xed\xed\xd3\xe2\xf9\xb9\x06\xe6\x6c\x4d\xdf\x52\xb4\xc1\xdf\xbf\xfd\xf6\xf5\xd7\xe5\xc2\x25\xb0\xe4\xd1\x06\xe3\x02\x2e\x2b\xfc\xf2\x61\x7e\xbf\xb8\xb5\xd0\x5e\x10\x04\xf0\x22\x08\x93\x24\x52\x94\x33\x50\x09\x51\xa0\x12\x84\x2d\xa1\x0c\x54\x61\x8e\xc4\x5b\xca\x60\xcf\xf3\x34\x06\x49\xd7\xac\x10\x52\x1c\x22\x81\x44\x21\x10\x90\x09\x11\x18\x03\x89\x22\x9e\x33\x05\x84\xc5\x40\x18\xe4\x2c\x2d\x9c\x28\xe0\xc4\x7c\x5a\x71\x01\x04\x72\x89\xc2\xf3\x54\x63\xd6\xf7\x00\x00\x32\x22\x14\x25\xe9\x4c\x9b\x7b\xcc\xdf\x52\x1a\xdd\xe3\x21\x2c\x29\x9b\xdc\xe3\x61\x49\xa5\x5a\x30\x25\x0e\x63\x08\x02\x78\x45\xba\x4e\x54\x08\x9f\xa7\xd3\xb6\xf8\x77\x89\xe2\x02\xe9\x9f\x4b\xe9\x55\x9e\x5e\x2a\xfa\x79\x3a\x9d\x7a\x23\x80\x77\xcf\xd8\x17\x98\x11\x81\x7e\x41\x57\x08\xb3\x5c\x25\x33\xc3\xc8\xa8\x82\xe8\x5f\x10\xc0\xdc\x10\xa7\x69\x66\xb8\xaf\x78\x93\x86\xb8\x38\xd6\x1f\xa8\x80\x0d\x1e\x64\x2d\x95\xa2\x2a\x69\x2e\x75\xc2\x4d\xdb\x82\x9f\x91\x03\x8a\xd0\xa4\x6a\x64\x49\x69\xb2\xcf\x91\xa9\x85\x2c\x33\x13\xed\xc5\x84\xc4\xb1\x9f\x35\xc4\x38\x13\x35\xa9\x01\x63\x48\x88\x4c\x66\xe9\x9a\x0b\xaa\x92\xed\x10\xde\x02\x8d\x61\x5f\xb2\xea\x06\x9b\xaf\xa3\xcb\x9d\xb4\x72\x7a\xda\x47\x1b\x7e\xdc\x45\x1b\x5b\x79\x58\xbb\xd8\x22\xde\xe9\x60\xaf\xe2\x8e\x78\xd7\xc7\x0e\xb8\xd6\x07\xf6\xfc\x6a\x0a\x90\x40\x26\xe8\x4e\xff\x4b\x29\xdb\xe8\x96\xd6\x25\x29\x15\xd7\xdd\xbc\x23\x79\xaa\xac\x4a\x2a\xde\xcc\x49\x46\xde\x68\x4a\xd5\x01\x6e\xec\x2c\xd4\x58\xfd\x9b\x68\x8d\xd7\x3f\xd5\x03\x6e\xf2\xa7\x16\xfe\xc5\xb7\x40\x85\x37\xa5\x0b\xc1\xaa\x82\x16\xc8\x71\x0f\xa8\x88\x58\xa3\x0a\x21\xd0\xfe\x91\x75\x57\xc0\xc2\x8f\xac\xa7\x2f\x5f\x20\x23\x8c\x46\xfe\xa7\x79\x31\xc3\x18\x57\x26\x60\xed\x1d\x98\x91\x5a\xe8\x80\xa8\x0e\xee\x93\x4d\x58\x3d\xea\xcc\x48\x2b\x07\xe3\x96\x30\xb2\x46\x51\xf4\x6d\xc9\x1a\x55\xa0\xe7\xa6\xa6\xd1\x1a\x8a\x16\x91\x69\x33\x9c\xff\x28\x55\x5c\x5f\x59\x23\x7b\x62\x0c\x2e\x7b\x40\xbf\x48\x42\xd8\xcd\xc5\x50\x63\x48\xb2\x43\xff\xfa\xaa\x6f\x70\x0c\x8a\x87\xb6\xc9\xbe\xb1\x67\xc3\xf4\x23\x51\x49\x8b\x0e\x1d\x81\x6a\xa1\x2e\xab\x88\x13\x26\x1d\x15\x72\x42\xe2\xd1\xd4\x8f\x76\x72\xb8\x68\xce\x0f\xb4\x56\x31\x3a\x56\x39\x76\xfe\xdd\x65\x53\xf3\xf4\x3b\x4f\xe3\xc1\x14\xbf\x34\x08\x3b\x74\x93\xb3\x59\x1c\x0b\x94\x32\xec\xe4\x95\x98\xd7\x76\xc0\xed\xa4\x84\x03\x29\x6a\xc2\x73\x0f\xaa\xa2\x60\x2c\xad\xd7\x57\xad\x20\xba\x06\x3b\xcc\xb6\x82\x69\x51\x3a\x3e\x65\xd4\x51\x19\x2d\x4d\xef\x8e\xe4\x95\x92\x5f\xd9\x8a\x7f\x74\x4a\xe6\x38\xda\xcc\xc5\x7e\xb1\x38\x0b\xc5\x1d\x8e\x2b\x9a\x3a\xd7\xc5\xb1\xf5\xa3\x3a\xc2\x9c\x99\xff\x53\x3f\xc0\xf9\x73\xb5\xbd\x36\xea\x43\xa5\xdd\x2c\xce\x0e\x31\xac\xf1\x34\x45\xb3\x85\xde\x18\x61\x9b\xad\x37\x2e\x04\xdf\xbb\xea\xa4\x23\xee\x60\x4c\x6f\xc0\xc3\x51\x77\xe4\xff\x7d\xf4\xc6\x45\x10\xb8\x42\x81\x2c\x42\x1d\xbd\xa1\x21\xaa\xb5\xb7\x09\x70\x05\xaf\x7b\xbb\xda\xd0\x2c\x83\x56\x21\x5d\x32\x17\xaa\x45\xbc\x2b\xda\x6e\xc1\xe1\x81\x32\x33\xeb\xac\xab\xba\x5d\x9d\x10\x04\xf0\xb0\x43\x21\x68\x6c\x16\xdc\x18\x57\xc5\xd1\xda\x5c\x75\x04\x46\x48\x77\x28\x06\x8e\xac\x9c\xe9\x1a\xf2\x03\xb3\x0c\x35\xa7\xfc\x53\x29\xe6\x3c\x98\xf5\x1a\x5d\xe9\x35\x77\x98\x2d\x11\x1b\x59\xbd\x2b\x0f\x6c\x09\x44\x36\xd7\x12\xb7\x79\xd3\x93\x33\x76\x78\x42\xc9\x73\x11\xe1\xbb\x75\xf7\x9a\x54\x6e\x74\xc7\xce\xa0\xbf\x67\xcc\x99\x33\x0f\x24\x2b\xf0\x2c\x57\xc0\xb8\xd8\x92\xb4\x09\x9c\x32\x7d\x19\xd3\xb7\x10\xcd\x49\xce\xe8\x5f\x39\x42\xd6\xd6\xf1\xdf\xc6\x6a\x88\xbc\x3b\x2f\xe2\x53\x7b\x9b\xe9\xae\x0f\xef\xc3\xfb\x27\x00\x00\xff\xff\xee\x39\xfd\xd7\x2b\x0f\x00\x00" func lockedtokensAdminAdmin_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3780,11 +3740,11 @@ func lockedtokensAdminAdmin_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8, 0x7d, 0x60, 0xa4, 0xb3, 0xc9, 0x1d, 0x40, 0x3b, 0xe2, 0xeb, 0x74, 0xb5, 0x11, 0x4b, 0x52, 0xa3, 0x6d, 0xd6, 0xa3, 0x70, 0x4d, 0xea, 0x5, 0xab, 0xb5, 0x40, 0x3f, 0x87, 0x25, 0xb2, 0xb8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x60, 0x18, 0xb5, 0x3a, 0x77, 0x18, 0x85, 0x6e, 0x97, 0xa3, 0x8f, 0xcd, 0xf8, 0x4e, 0x1a, 0x1, 0xe, 0x28, 0x32, 0x4, 0x29, 0x8e, 0x94, 0x96, 0x66, 0xa6, 0x68, 0xd, 0xb0, 0xd8, 0x9c, 0x99}} return a, nil } -var _lockedtokensAdminAdmin_deploy_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xc1\x4a\xc4\x30\x10\x86\xef\x7d\x8a\x39\x49\x0b\xa5\x0f\x50\xf0\xb0\x8a\x20\xac\x78\x59\xf1\x22\x1e\xc6\x64\x6c\x43\xdb\x4c\x98\x4c\x59\x83\xec\xbb\x4b\x37\x76\xb7\x62\x0f\x7f\x33\x99\x7f\xfe\xc9\xe7\xa6\xc0\xa2\x70\x2f\x29\x28\x17\x85\x0a\xfa\x88\x46\x1d\xfb\xd2\xb0\x57\x41\xa3\xcf\x38\x51\x0b\x07\x15\xe7\xbb\x1a\x0c\xdb\x4d\x15\xe6\x8f\xd1\x99\x3d\xa5\xd8\xc2\x5b\x0e\x69\xf6\x94\x9e\x5c\xd4\x07\xaf\x92\xde\x2b\xf8\x2e\x00\x00\xce\x12\x84\x02\x0a\x95\x68\x27\xe7\x5b\xc0\x59\xfb\xf2\xa0\x2c\xd8\x51\x0d\x77\x2c\xc2\xc7\x57\x1c\x67\xaa\xe0\x66\x67\x0c\xcf\x5e\xd7\xf1\xe5\x1b\x49\x61\x64\x33\x90\x7d\xe1\x81\x7c\x84\x5b\xf8\x75\x95\x01\x13\x49\x0b\xe7\xdc\xea\x3a\xb0\x31\x37\x2b\x4d\x6c\xd0\xda\xd2\x9f\x99\xb6\x84\x2b\xd9\xa2\x8d\xa5\xe5\xf7\x48\x5f\x65\x55\xaf\xa9\x97\xd8\x4f\x16\x18\x28\x81\xf3\x1b\xfc\xcd\x3b\xff\xad\x1e\x28\xe5\xad\x17\x7b\xbb\x04\x34\x97\xb2\x86\x1e\x63\xbf\x1b\x3b\x16\xa7\xfd\x94\xbb\x7f\xae\x6a\x38\x92\xeb\x7a\xcd\xad\x7c\xbe\x82\x9e\x8a\xac\xa7\xe2\x27\x00\x00\xff\xff\x8f\x01\xaf\x74\xcf\x01\x00\x00" +var _lockedtokensAdminAdmin_deploy_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x4f\xc1\x4a\xc5\x30\x10\xbc\xf7\x2b\xf6\xd8\x42\xe9\x07\x14\x3c\x14\x11\x84\x27\x5e\xf4\x26\x1e\x62\xb2\x36\xa1\x6d\x36\x6c\xb6\x68\x90\xf7\xef\xd2\x86\xf6\x45\xcc\x61\x92\xcd\xce\xce\xce\xb8\x25\x10\x0b\xdc\x73\x0a\x42\x55\x25\xac\x7c\x54\x5a\x1c\xf9\x5a\x93\x17\x56\x5a\x9e\xd5\x82\x3d\xbc\x08\x3b\x3f\xb6\xa0\xc9\x14\x55\x58\x3f\x66\xa7\x2f\x98\x62\x0f\x6f\x59\xa4\xbb\x60\x7a\x72\x51\x1e\xbc\x70\x7a\x6f\xe0\xa7\x02\x00\xd8\x21\x30\x06\xc5\x58\x2b\xb3\x38\xdf\xc3\xb0\x8a\x1d\xb4\xa6\xd5\xcb\x41\xdb\xce\x8c\x02\x33\xe9\x09\xcd\x2b\x4d\xe8\x23\xdc\x95\xcc\x3a\xa8\x84\xdc\xc3\xae\xd1\xdc\x86\x8a\x81\xee\x70\x1e\x3b\x65\x4c\xed\x77\xff\x65\x9a\x23\xc5\x86\x9d\xc1\xed\x7a\xc4\xef\xba\x69\x0f\xd5\x53\xf6\x93\x18\x26\x4c\xe0\x7c\x11\xb5\xf0\xfa\x6f\xf5\x84\x29\x6f\x3d\xe9\xfd\x26\xd0\x9d\x65\x0b\x56\x45\x3b\xcc\x23\xb1\x13\xbb\xe4\xee\x9f\xaf\x16\xbe\xd0\x8d\x56\x72\x2b\xbf\x6f\x41\xaf\x55\xc6\x6b\xf5\x1b\x00\x00\xff\xff\xdf\x5c\xcb\x79\xbb\x01\x00\x00" func lockedtokensAdminAdmin_deploy_contractCdcBytes() ([]byte, error) { return bindataRead( @@ -3800,11 +3760,11 @@ func lockedtokensAdminAdmin_deploy_contractCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_deploy_contract.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x61, 0x8, 0x4c, 0x45, 0x80, 0x10, 0x34, 0x60, 0xc1, 0xb0, 0xed, 0xeb, 0xc8, 0x43, 0x86, 0xb6, 0xd9, 0xa4, 0x12, 0x84, 0xc4, 0x57, 0x3, 0xce, 0xb7, 0x53, 0x94, 0x20, 0x92, 0x33, 0x8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x9a, 0x97, 0x6b, 0xe8, 0x7e, 0x5e, 0x52, 0xde, 0xaf, 0x33, 0x49, 0x33, 0x5e, 0x3e, 0xa7, 0x54, 0x57, 0x9d, 0xa1, 0x71, 0x7e, 0xbe, 0x2e, 0x5e, 0x2b, 0xc2, 0x3a, 0x9d, 0xd4, 0xd2, 0x7a}} return a, nil } -var _lockedtokensAdminAdmin_deposit_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x41\x6f\xdb\x30\x0c\x85\xef\xfa\x15\x5c\x0e\x9d\x0d\x0c\xce\x3d\x58\x57\x64\xb9\xee\x10\x6c\xc5\xee\x8c\xc4\xc6\x42\x15\x51\xa0\xe8\x16\xc1\xd0\xff\x3e\xc8\xf2\x32\x3b\xcb\x50\x9d\x2c\x42\xef\xf1\x7d\x34\xfd\x29\xb1\x28\x7c\x63\xfb\x4c\xee\x91\x9f\x29\x66\x78\x12\x3e\xc1\x6a\x5e\x5a\x19\xb3\x5e\xaf\x41\xcb\x05\xd0\x9d\x7c\x84\xec\x8f\x31\x83\xf6\x3e\x83\x0a\xc6\x8c\x56\x3d\x47\x50\x06\x47\x89\xb3\x57\x40\xb0\x98\xf0\xe0\x83\xd7\xf3\x28\xf7\x51\xb9\x54\x87\xac\xec\xce\x90\x84\x5f\xbc\x23\xf9\x98\x01\xad\xe5\x21\x2a\x68\x8f\x0a\x18\x02\xbf\x16\x6b\x3a\x15\x3b\x74\x6e\x54\x4f\x6f\x72\xa9\x69\x4f\x20\x64\x59\x9c\x31\xb3\xee\xcd\x64\xbd\x9f\x9c\xb7\xce\x09\xe5\xbc\x81\xe9\xa3\x85\x5f\xc6\x00\x00\x24\xa1\x84\x42\xcd\x88\xb2\x01\x1c\xb4\x6f\xbe\xb2\x08\xbf\xfe\xc4\x30\xd0\x27\xd8\xfd\x49\xee\x29\xb7\x70\xb7\xad\xbd\x2f\xfa\x72\x02\xe9\x0c\xf0\x3b\x59\xf2\x2f\x24\x70\x0f\x47\xd2\xe9\xfd\x7f\xf2\xb4\x17\x8f\x72\x3a\x3b\xeb\xd5\x1d\xc6\x14\x9f\xef\xe6\xd3\xef\xea\x65\x32\xdd\x09\xa1\xb2\x7c\x69\x16\x2e\xe5\xbc\xab\xd9\x0f\x87\xe0\xed\x1e\xb5\x5f\x68\x97\x79\x1e\x1e\x20\x61\xf4\xb6\x59\xed\x78\x08\x0e\x22\x2b\xd4\x54\x33\xdc\x32\xfd\xca\x2b\xf4\x44\x42\xd1\xd2\xaa\x5d\xce\x66\x5c\x96\x6d\x19\xf0\x8e\x43\xa0\xba\x1e\xf7\x75\x7b\x96\xcc\x59\x59\xf0\x48\x9d\xcf\x79\xa0\x2b\xf4\xc7\x1b\x2e\x57\xe8\x37\xb0\x6f\xa9\x7e\xd4\x2e\x0b\xfa\xf6\xc3\xdf\xcc\xff\xfe\xcb\x0e\x9d\xbb\x2c\xc2\xb9\xb1\x98\x36\x37\xa9\xea\xfc\xde\xcc\x9b\xf9\x1d\x00\x00\xff\xff\x84\x09\x5b\x53\x4e\x03\x00\x00" +var _lockedtokensAdminAdmin_deposit_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xdb\x30\x0c\xbd\xfb\x2b\x88\x1e\x36\xe7\x92\xec\x1c\xac\x2b\x0c\x27\xa7\x16\x6b\xd0\xe6\x07\x18\x89\x8d\x85\x2a\xa2\x40\xd1\xe9\x8a\x22\xff\x3e\xc8\x36\x52\xbb\xcb\xb6\xf2\x64\x13\xef\x3d\xf2\x3d\xd1\x1d\x22\x8b\xc2\x1d\x9b\x67\xb2\x5b\x7e\xa6\x90\xe0\x49\xf8\x00\xdf\x7e\xdd\xdd\xd7\xb7\xeb\xd5\xf6\xfe\x76\xfd\xb3\x5a\xad\x1e\xd6\x8f\x8f\x45\xb1\x58\x2c\x40\x33\x0a\xd0\x1e\x5c\x80\xe4\xf6\x21\x81\x36\x2e\x81\x0a\x86\x84\x46\x1d\x07\x50\x06\x4b\x91\x93\x53\x40\x30\x18\x71\xe7\xbc\xd3\xd7\x8e\xee\x82\x72\xee\xb6\x49\xd9\xbe\x42\x14\x3e\x3a\x4b\xf2\x35\x01\x1a\xc3\x6d\x50\xd0\x06\x15\xd0\x7b\x7e\xc9\xd2\x74\xc8\x72\x68\x6d\xc7\x1e\x30\x29\xf7\xb4\x21\x10\x32\x2c\xb6\x28\x46\xd3\xcb\x41\x7a\x33\x28\x57\xd6\x0a\xa5\xb4\x84\xe1\x63\x06\x6f\x45\x01\x00\x10\x85\x22\x0a\x95\x9d\x95\x25\x54\xad\x36\x55\x2f\x7f\x86\xe4\xf2\xa4\x23\x0f\x0f\x64\xc8\x1d\x49\xe0\x1a\xf6\xa4\x03\xfe\x2f\x23\x67\x67\x8d\x5c\xf3\x3d\x69\x7d\xd6\xf9\xfe\x65\x9c\xf9\xbc\xff\x19\xe4\x6a\x21\x54\x96\xb7\xff\x22\x36\xed\xce\x3b\x73\xfa\x51\x4e\x06\xe5\xfa\x24\x75\x83\xda\x4c\xb8\x1f\x56\xde\xb1\x08\xbf\x94\xd3\xee\xcd\x0d\x44\x0c\xce\x94\x57\x35\xb7\xde\x42\x60\x85\x1e\x38\xca\x29\xbf\x4c\x1f\x94\xd0\x13\x09\x05\x43\x57\xb3\x69\xa8\xdd\x21\x55\x39\xfc\x9a\xbd\xa7\xfe\x74\xae\xfb\xcb\xfa\x67\x58\xdb\x0b\xc4\x0f\x19\x5c\xf0\xff\xce\xda\x88\x3b\xa2\xd2\xc4\xfc\x68\xb7\x3f\x1f\x7b\x8e\xd6\xbe\x6f\x53\x1a\x8c\xcb\x8b\xdb\xf7\x39\x9d\x8a\x53\xf1\x3b\x00\x00\xff\xff\x5b\xc8\xe1\xb2\x58\x03\x00\x00" func lockedtokensAdminAdmin_deposit_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3820,11 +3780,11 @@ func lockedtokensAdminAdmin_deposit_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_deposit_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0x82, 0x4, 0xe6, 0x5b, 0xce, 0x35, 0x7d, 0x2e, 0xd, 0x46, 0xda, 0x8a, 0x52, 0x1a, 0xd5, 0x89, 0x30, 0xea, 0xb4, 0xdf, 0xc2, 0xb0, 0xbe, 0xb3, 0xdb, 0xf6, 0x5e, 0x8d, 0x29, 0x66, 0xd7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0x1e, 0x26, 0xb4, 0x11, 0xed, 0x11, 0x3, 0x57, 0x39, 0x8f, 0x13, 0xbb, 0x53, 0xfa, 0xf, 0x22, 0x4b, 0x55, 0x77, 0xa1, 0xd8, 0xbe, 0x7a, 0x22, 0x23, 0x55, 0xdd, 0xe4, 0xbd, 0xaf, 0x33}} return a, nil } -var _lockedtokensAdminAdmin_remove_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x9e\x39\x94\xe4\x60\x7e\x40\xa9\x16\xb5\x08\x82\x82\xd8\xe2\x7d\xba\x99\xa6\xa1\x9b\x9d\x30\x99\x58\x44\xfa\xdf\x25\x4d\x6b\x23\x1e\x9c\xdb\xee\x9b\xef\xcd\x7b\x55\xdd\x88\x1a\x1e\x83\xec\x9f\x16\x2b\x5a\x07\x5e\x1a\xed\xaa\x58\x62\xa3\x52\x23\xf9\x2b\x24\xee\xc4\x3c\x8b\xdf\x71\xb1\x92\x1d\xc7\xf6\xb4\x3d\xfe\x4a\x9c\x33\xa5\xd8\x92\xb7\x4a\x22\xbe\x9c\x03\x80\x46\xb9\x21\xe5\xb4\xad\xca\xc8\x3a\x05\x75\xb6\x4d\xef\x45\x55\xf6\xef\x14\x3a\xce\x30\xb9\xf3\x5e\xba\x68\xd9\x19\xe9\x27\xb0\xa1\xa6\x48\x25\xeb\x1b\x6f\x70\x83\x81\xcf\x5b\x13\xa5\x92\xf3\xf5\xd1\x61\x36\x19\x07\xc8\x47\x8f\x97\x81\xbd\x4d\xfb\x9c\x53\xfc\xb3\xb6\x1c\x5c\x5f\xc9\xb6\xd9\x4f\x84\x7e\xe6\x73\x34\x14\x2b\x9f\x26\x0f\xd2\x85\x02\x51\x0c\xc3\x69\x10\x94\x37\xac\x1c\x3d\xc3\x04\xb6\x65\x84\xa3\x31\xac\x77\x3e\xa7\x4f\xb2\xdf\xa5\x0a\x0e\x5c\x92\x89\x62\x76\x3d\x6a\x98\x2b\xd7\xf2\xc1\x8b\xb3\x9a\x66\x57\x17\xae\xe0\xd6\x54\x3e\x2f\xec\x20\x1d\xdc\xc1\x7d\x07\x00\x00\xff\xff\x04\xab\xd5\xde\xcf\x01\x00\x00" +var _lockedtokensAdminAdmin_remove_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8f\xc1\x4f\xfa\x50\x0c\xc7\xef\xfb\x2b\xfa\xe3\xf0\xcb\x76\x90\x78\x26\x28\x99\x6c\x26\x04\x04\xc3\xde\xc5\x63\x79\x2b\x63\xe1\xed\x75\xe9\x8a\x68\x0c\xff\xbb\x99\x73\x32\x4f\xf6\xd6\xf4\xf3\x69\xbf\x2d\xab\x9a\x45\xe1\xd1\xf1\x79\x91\x18\xdc\x39\xca\x14\x8f\xa5\x2f\x60\x2f\x5c\xc1\xed\xdb\x22\x49\xd7\x66\x61\x5e\x4c\xfc\xb0\x4a\xe3\x24\xd9\xa6\x59\x16\x7c\x5b\x2b\xb6\x47\xca\x0d\x1f\xc9\x37\x3d\xbf\xda\xcc\x97\x69\x62\x36\xcb\x74\xdd\xd3\x81\x0a\xfa\x06\xad\x96\xec\xe1\x23\x08\x00\x00\x6a\xa1\x1a\x85\xc2\xa6\x2c\x3c\xc9\x04\xe2\x93\x1e\x62\x6b\xf9\xe4\x35\xea\x99\xb6\x1c\x29\x54\xe8\xb1\x20\xd9\xd2\x1e\xee\xa0\x13\xc6\x3b\x16\xe1\xf3\xf4\xff\x30\xc2\x78\xd0\x3c\x75\xce\x7d\xd8\xc6\x9a\xc0\x1f\x58\xa6\x2c\x58\xd0\x33\xea\x21\xfa\x39\xdd\xd6\x6c\x06\x35\xfa\xd2\x86\xa3\x39\x9f\x5c\x0e\x9e\x15\xba\xd3\x80\x20\xb4\x27\x21\x6f\x09\x94\x41\x0f\x04\xee\x6b\x31\x68\xbb\xb9\x4f\x3d\x8a\x7e\x3f\x93\x93\xa3\x02\x95\x05\xa6\x37\x83\xcf\xc6\x42\x15\xbf\x52\xd2\x4f\xc3\xe8\xdf\xd5\xcb\xa9\x51\xe1\xf7\xab\xdb\x8d\x2e\xc1\x25\xf8\x0c\x00\x00\xff\xff\x33\x91\x55\x64\xc0\x01\x00\x00" func lockedtokensAdminAdmin_remove_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3840,11 +3800,11 @@ func lockedtokensAdminAdmin_remove_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_remove_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdf, 0xa8, 0x3f, 0x3a, 0x74, 0xce, 0x68, 0x6e, 0x7, 0xc0, 0x36, 0x29, 0x95, 0x78, 0x26, 0xc2, 0x17, 0xe2, 0xa9, 0x89, 0x16, 0xce, 0x87, 0x20, 0xb3, 0xe6, 0x1f, 0x1d, 0x99, 0x77, 0x55, 0x20}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7b, 0x45, 0x4f, 0xc6, 0x2d, 0xa8, 0x8, 0x67, 0x3d, 0x3b, 0x76, 0x24, 0x7e, 0x97, 0xc8, 0x6, 0x34, 0xe8, 0xea, 0xfa, 0x7b, 0x91, 0x9c, 0x76, 0x38, 0x88, 0x31, 0x29, 0xb2, 0x25, 0x1, 0xf6}} return a, nil } -var _lockedtokensAdminCheck_main_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\xc1\x6a\xdc\x30\x14\xbc\xfb\x2b\x26\x3e\x04\x1b\x8a\x3f\xc0\x74\x13\xb6\x0b\xa5\x85\x1e\x42\x1b\x7a\x7f\x2b\x3d\x7b\x45\x64\xc9\x48\xcf\xe4\x50\xf2\xef\xc5\xb2\xbd\x58\x6d\xd8\x4b\x74\x59\xf4\x76\x66\xde\xcc\x58\x66\x18\x7d\x10\x7c\x9d\x5c\x6f\xce\x96\x9f\xfd\x0b\x3b\x74\xc1\x0f\x28\xb3\x59\x59\x6c\x48\xeb\x5f\x33\xd4\x76\x2f\x8b\x0d\xf2\xc3\xab\x17\xd6\x69\x18\x57\xd4\x7e\x54\x16\x85\x04\x72\x91\x94\x18\xef\xaa\x81\x8c\x3b\x2a\xe5\x27\x27\x2d\x8e\x5a\x07\x8e\xb1\xc6\x9f\xa2\x00\x80\x31\xf0\x48\x81\xab\x68\x7a\xc7\xa1\x05\x4d\x72\xa9\xbe\xf8\x10\xfc\xeb\x6f\xb2\x13\xd7\xb8\x5f\xb9\x57\xca\x7c\x2c\x0b\x48\x0f\xc6\xfd\xe4\x0e\x07\x2c\xec\x26\x8a\x0f\xd4\x73\x73\x4e\xfc\xcf\xf7\x7b\x53\x4d\xfa\x39\xce\x9c\x93\xb7\x96\x93\xb7\x87\x6a\x76\xdf\x66\x81\x9a\xdd\xe5\x1f\xf8\xaf\x45\xff\x89\xe4\x52\x5f\xad\xcc\xe7\xf1\x11\x23\x39\xa3\xaa\xf2\xe4\x27\xab\xe1\xbc\x60\x31\x01\x42\xe0\x8e\x03\x3b\xc5\x10\x0f\xb9\x30\x6c\x5a\x00\x49\x25\xa7\x14\x50\xd7\x1d\x65\x9d\xa7\x5c\xc0\x6b\x07\xdf\x5d\xe7\x97\xc4\x3d\xcb\x3a\xdb\xf7\x9b\xbb\x6a\x14\x8d\x74\x36\xd6\x88\xe1\x78\xa3\x94\x6f\xde\x6a\x0e\x0f\xd5\x3b\x2d\xec\xf6\x3e\x4d\x67\x6b\xd4\x47\xb2\x8f\x49\x01\xff\x29\xdf\x8c\x8c\xc3\xbb\x15\x34\x3d\x4b\x26\xb4\x3e\xac\x6a\xa7\x45\x31\x72\x90\x2a\x73\xbb\x3d\x9a\x66\x57\x20\x2d\xd4\x36\x5f\x54\xe3\xee\x00\x67\xec\xa7\x8c\x3f\x70\x8c\xd4\x73\x8b\xf2\xf9\xc2\x88\x23\x2b\xd3\x19\xd6\xa0\xd5\xad\x89\xa9\x00\xda\x3e\xf2\x3a\xbf\xc3\x89\xdc\xfc\x47\x64\xa7\xb3\x07\x10\xcb\xab\xfe\xd2\xeb\x5b\xf1\x56\xfc\x0d\x00\x00\xff\xff\x9d\x91\x65\xc1\xb5\x03\x00\x00" +var _lockedtokensAdminCheck_main_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x13\x1f\x8a\x0c\x45\xf4\x2c\xea\x04\x55\x76\xda\x10\x13\x87\xd8\xa5\xe7\xf1\x6a\x24\x2f\x59\xed\x8a\xdd\x11\x69\x09\xfe\xee\x45\xab\x3f\x68\x1b\xe3\x43\xf7\x22\xb4\xfa\xcd\xbc\x37\x4f\x23\xeb\xc6\x58\x86\xfb\x56\x57\xf2\xa8\xe8\x60\x5e\x49\x43\x69\x4d\x0d\x5f\x7e\xdf\xff\x7c\xfa\xfe\xf0\x6d\xbb\x39\xec\x1e\x37\x4f\xd9\x7a\xfd\xb2\xd9\xef\xa3\xb1\x40\x99\xb7\x10\xde\xee\x7e\x05\xe0\x48\x6e\x8d\x78\xa5\xc2\xb3\x6e\x84\xb7\xbb\xfc\x71\xb3\x0e\x71\xb6\xa8\x1d\x0a\x96\x46\xc7\x35\x4a\x9d\x09\x61\x5a\xcd\x29\x64\x45\x61\xc9\xb9\x25\xbc\x47\x11\x00\x40\x63\xa9\x41\x4b\xb1\x93\x95\x26\x9b\x42\xd6\xf2\x69\x80\x27\xa6\x3b\x8a\x18\xb0\xa8\xa5\x7e\xa1\x12\x56\xd0\xe3\xc9\xd1\x58\x6b\xde\xbe\x7e\x9a\xdb\x4a\xfc\x23\xeb\xd8\xdc\x28\x45\xde\xc4\x6d\xdc\x99\x4d\x03\xff\xc9\xec\xe5\x1f\x7c\xcf\xc6\x62\x45\xcf\xc8\xa7\xe5\x64\xa1\x3b\x77\x77\xd0\xa0\x96\x22\x5e\xe4\xa6\x55\x05\x68\xc3\xd0\x9b\x00\x04\x4b\x25\x59\xd2\x82\x80\x0d\xf0\x89\x40\x79\x01\x60\x1f\xad\x77\x0f\x62\xd2\x58\x2c\xc3\xe9\x7a\x78\x98\xfd\x41\x97\xa6\x9f\xb4\x22\x1e\xee\xe6\x41\x86\xae\x92\x8a\x38\xc7\x06\x8f\x52\x49\xfe\x73\x29\x8e\x1f\x46\x15\x64\xdf\x2f\x8c\x3f\x13\x3c\xdf\xc6\xd7\x81\xe7\xf6\xa8\xa4\xf8\x98\xca\xf0\x1f\xe2\xff\xcd\xaa\xf1\x7d\xe1\x83\xde\xd5\x88\x60\x75\x31\xb2\x2e\x8b\xa0\xd1\xb0\x71\xf1\xac\x17\x3a\x47\x96\xe3\xc0\xed\xb8\x5c\xc9\x2c\x70\xec\x4b\xd3\x50\x68\x09\x37\x2b\xd0\x52\x7d\x0e\xea\x6b\x72\x0e\x2b\x4a\x61\x71\x38\x11\xb8\x86\x84\x2c\x25\x15\x80\x83\x5b\xe9\x7c\x00\x38\x2e\xc5\x70\x7f\x03\x39\xea\xee\x83\x23\x5d\x04\x0b\xe3\x16\x53\xff\x3e\xd7\x73\x74\x8e\xfe\x06\x00\x00\xff\xff\xfe\xf4\xaf\xdc\xe2\x03\x00\x00" func lockedtokensAdminCheck_main_registrationCdcBytes() ([]byte, error) { return bindataRead( @@ -3860,11 +3820,11 @@ func lockedtokensAdminCheck_main_registrationCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/check_main_registration.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0x92, 0xbe, 0x27, 0xf, 0xc8, 0x19, 0xb2, 0x24, 0xd8, 0xfb, 0x9, 0x26, 0x43, 0xec, 0x91, 0x14, 0xe, 0xaf, 0x4a, 0x9, 0xd, 0x12, 0xde, 0xa, 0x73, 0x8d, 0x3, 0x5d, 0x53, 0xd0, 0xc6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9a, 0x91, 0x4b, 0x4f, 0x2, 0xae, 0x1, 0x4d, 0x39, 0xc9, 0xba, 0xca, 0xda, 0xcc, 0xd6, 0x3c, 0x56, 0xc8, 0xa1, 0x8a, 0x46, 0x1f, 0xa7, 0x9, 0x71, 0xf4, 0xbb, 0xf7, 0xa1, 0xd8, 0xa6, 0x15}} return a, nil } -var _lockedtokensAdminCheck_shared_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x50\x4d\x6b\xe3\x30\x14\xbc\xeb\x57\x4c\x74\x08\x36\x2c\xfe\x01\x66\xb3\x21\x1b\xe8\xa9\x87\xd2\x86\xde\x5f\xe4\x67\x5b\x44\x96\x8c\x24\x93\x43\xc9\x7f\x2f\x96\x3f\x1a\x57\x17\xa1\xd1\xcc\x7b\x33\xa3\xbb\xde\xf9\x88\x97\xc1\x36\xfa\x6a\xf8\xe2\x6e\x6c\x51\x7b\xd7\x41\x6e\x30\x29\x16\xa6\x71\xf7\x0d\x6b\x79\x4b\xb1\x50\x5e\x9d\xba\x71\x95\xc0\x30\xb3\x9e\x21\x29\x44\xf4\x64\x03\xa9\xa8\x9d\xcd\x4c\xfa\x3a\x29\xe5\x06\x1b\x4b\x9c\xaa\xca\x73\x08\x39\xbe\x84\x00\x80\xde\x73\x4f\x9e\xb3\xa0\x1b\xcb\xbe\x04\x0d\xb1\xcd\xfe\x3b\xef\xdd\xfd\x93\xcc\xc0\x39\xf6\xb3\x76\x95\x8c\xc7\x70\x04\x55\x9d\xb6\xef\x5c\xe3\x80\x49\x5d\x84\xe8\x3c\x35\x5c\x5c\x93\xfe\xef\xfe\xd9\x56\x91\xae\xd3\xa8\x39\x3b\x63\x38\xb9\xfb\x97\x8d\xfe\xcb\x4d\xa4\xe2\xe9\xf1\x8b\xfe\x31\xcd\x7f\xa3\xd8\xe6\xab\x95\xf1\x1c\x8f\xe8\xc9\x6a\x95\xc9\xb3\x1b\x4c\x05\xeb\x22\x26\x13\x20\x78\xae\xd9\xb3\x55\x8c\xe8\x10\x5b\xc6\x54\x09\x62\xaa\x39\xa5\x80\x5a\x77\xc8\xfc\x27\x25\x85\xc0\x3e\x22\xdb\xec\x5a\x62\x17\x0d\xc7\xb9\x9a\x8c\xa6\x56\x4b\x6c\xda\xce\xb1\x3b\xc0\x6a\xf3\x67\xa3\xef\x38\x04\x6a\xb8\x84\xbc\xb4\x8c\xd0\xb3\xd2\xb5\xe6\x0a\x34\x89\xa0\x43\xb2\x4f\x8b\xcd\x19\xdf\xe1\x4c\x76\xfc\x08\x6c\xab\x4d\x84\x20\xd7\xf9\x53\x2b\x0f\xf1\x10\xdf\x01\x00\x00\xff\xff\xc7\x12\xd7\xca\x79\x02\x00\x00" +var _lockedtokensAdminCheck_shared_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x51\xcb\x9b\x30\x14\x86\xef\xfd\x15\xef\xe7\xc5\x50\x18\xb2\x6b\xd9\xb7\xe2\xac\x1d\xa3\xd2\x8e\xb6\x63\xd7\x69\x3c\x6a\x68\x4c\x24\x89\x74\x30\xfa\xdf\x87\x5a\x5d\xb3\xdc\x88\xfa\x9c\x9c\xe7\x7d\x45\xd7\x6b\xe3\xb0\x1b\x54\x23\xae\x92\x2e\xfa\x46\x0a\xb5\xd1\x1d\x3e\xfd\xde\xfd\x3c\x7c\xfb\xfe\xb5\x2c\x2e\xc7\x7d\x71\xc8\xb6\xdb\x53\x71\x3e\x07\xcb\x80\xd4\x77\x1f\x2e\x8f\xbf\x3c\x70\x21\x4b\xcd\x6f\x54\x4d\xac\x5d\xe0\xf2\x98\xef\x8b\xad\x8f\x3b\xc3\x94\x65\xdc\x09\xad\x22\x39\xcd\x64\x9c\xeb\x41\xb9\x14\x59\x55\x19\xb2\x36\xc6\x9f\x20\x00\x80\xde\x50\xcf\x0c\x45\x56\x34\x8a\x4c\x8a\x6c\x70\xed\x13\x5e\x99\xf1\x48\x72\x60\x55\x27\xd4\x89\x6a\xbc\x63\xc6\x93\xab\x36\x46\xdf\x3f\x7f\x78\x15\x4b\xa6\x47\x36\xb2\xb9\x96\x92\x26\x8d\x2f\xd1\xa8\x9b\x7a\x09\x92\x97\x97\xff\xf0\xb3\xd3\x86\x35\xf4\x83\xb9\x36\x5e\x15\xc6\xb3\xd9\xa0\x67\x4a\xf0\x28\xcc\xf5\x20\x2b\x28\xed\x30\x4b\x80\xc1\x50\x4d\x86\x14\x27\x38\x0d\xd7\x12\xe6\xec\x70\x53\xb9\x93\x3d\xf8\xba\x23\x8c\xff\xa5\x63\xd6\x92\x71\x88\xbc\x5d\x4b\xdc\xa4\x21\xf7\xac\x24\x62\x73\x7d\x29\xbc\x5a\x63\xbc\xbd\x43\x09\xf9\xd1\x9b\xef\xc8\x5a\xd6\x50\x8a\xf0\xd2\x12\x6c\x4f\x5c\xd4\x82\x2a\xb0\x79\x08\xc2\x4e\xfa\x6c\xd1\x7c\x7e\x7f\x43\xce\xd4\xf8\xc3\x92\xaa\xbc\x08\x36\x5c\xef\x9f\x5b\x79\x04\x8f\xe0\x6f\x00\x00\x00\xff\xff\xbc\x66\x6c\x69\x76\x02\x00\x00" func lockedtokensAdminCheck_shared_registrationCdcBytes() ([]byte, error) { return bindataRead( @@ -3880,11 +3840,11 @@ func lockedtokensAdminCheck_shared_registrationCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/check_shared_registration.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5f, 0xce, 0x2e, 0x8a, 0xa6, 0x4e, 0x37, 0xb0, 0x50, 0xb0, 0xe3, 0x24, 0x8c, 0xa4, 0xea, 0x43, 0x5f, 0xc7, 0xa6, 0xa1, 0x26, 0x54, 0x66, 0x7c, 0x8d, 0xd8, 0xa7, 0xe6, 0xb, 0xb6, 0x72, 0x84}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xda, 0xb6, 0x7e, 0x98, 0xe7, 0x40, 0x4d, 0xb7, 0x6c, 0xd, 0x16, 0xb, 0xee, 0x68, 0x21, 0xce, 0x15, 0xb6, 0x5f, 0x9, 0xfb, 0x96, 0x47, 0x61, 0x89, 0x5e, 0xc2, 0x29, 0x54, 0xaa, 0x34, 0xb8}} return a, nil } -var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xe9\xd5\x70\xb2\x48\x8d\x2e\x5a\x6c\x8a\x06\x6d\xba\x7b\x9e\x88\x63\x8b\x08\x4d\xaa\xfc\xb1\x61\x04\x79\xf7\x82\x12\x25\x8b\xb2\x94\xb8\x45\x7b\x59\x1d\x82\x98\x9c\x9f\x6f\xbe\x99\xe1\x0c\xdf\x55\x4a\x5b\x58\xeb\x63\x65\x55\x12\x7e\x7d\x16\xea\xf0\xa4\x5e\x48\xc2\x46\xab\x1d\xcc\xba\xdf\xb3\x4e\xc2\xc9\x2d\x7f\x16\x14\x49\xf5\xcf\x3a\xc9\x07\x55\xbc\x10\xab\xcf\x4c\x10\xec\x1f\xcd\x92\x24\xcf\x73\x78\xd2\x28\x0d\x16\x96\x2b\x09\xb6\x44\x0b\x08\x85\x33\x56\xb1\x23\x54\x5a\xed\x39\x23\x0d\x07\xe5\x04\x03\xc3\xb7\xb2\x56\xb1\x0a\x0a\x4d\x68\x09\x10\x4c\x89\x9a\x18\x60\x51\x28\x27\x2d\xa0\x64\x80\x12\x9c\x14\xb5\xa7\x5a\xbc\xbd\xdb\x28\x0d\x08\xce\x90\x4e\x12\x7b\xf2\x9a\x26\x00\x00\x1b\x27\xc4\x3d\xdb\x71\xf9\xe8\x9e\x05\x2f\xbe\xd0\x71\x19\xa8\xc9\xbe\xd0\xf1\x81\x1b\xfb\x93\xb4\xfa\xb8\x80\x3c\x87\x6f\xc4\xb7\xa5\x5d\xc2\x0f\x37\x37\x37\x9d\xf2\x9f\x86\xf4\x3f\xd5\x9d\x03\xbc\x26\xb5\x85\x4a\x53\x85\x9a\xd2\x10\xfa\x63\x88\x7c\x09\xe8\x6c\x99\xfe\xa8\xb4\x56\x87\xaf\x28\x1c\xcd\xe1\xea\xbe\x89\x67\xde\xea\xfa\x4f\x90\x0d\x54\x84\x5b\xb8\x85\xf0\x5f\x5a\xe1\xd1\x5b\x1a\x98\x9e\x47\xba\x9e\x95\xcb\x35\x3b\xd5\xc8\x65\xf6\x42\x47\x93\x21\x63\x69\x75\xe2\xe1\x9c\xd7\xac\xbb\x5d\x40\x89\xa6\xbc\x17\x5b\xa5\xb9\x2d\x77\xa3\xc2\x91\xc4\x02\x0e\x81\xbe\x11\xc9\xe6\xaa\x07\xae\x17\xd3\x24\xb4\x28\x6b\x1f\x20\x8b\x65\xdf\x01\x16\x0b\x9e\xe1\xf2\x7c\xef\xd1\x09\xbb\xc6\x0a\x9f\xb9\xe0\xf6\x08\xb7\x03\x2a\x8b\xf6\x8a\x93\xc9\x8c\x55\x1a\xb7\xd4\x19\xf0\x5f\xc6\x8d\x71\xb4\xaa\xcb\x23\x6a\xbf\xec\x1b\xb7\x25\xd3\x78\x98\xc3\x55\xd7\xbd\xd9\x57\xef\xef\x2e\xcd\x83\xa9\x7c\xd3\xde\xd4\x17\x03\x70\xe2\xd4\xa5\xbf\xa2\xc4\x2d\x69\x58\x5d\x47\xed\x9c\x35\xfd\xf7\x70\x26\x98\xd6\x81\x2d\x87\xf1\x4d\x96\x4c\xc0\x93\x19\xdc\x53\xba\xba\x3e\xf7\xbc\x00\xab\x96\xb1\xef\x73\xaf\x7f\x34\x56\x1e\xd1\x96\x83\x50\x6c\x4f\xea\x7f\xa7\xfb\x03\x94\x77\x69\x64\xd2\x7f\x97\xc7\x15\xa9\x8e\x05\xf9\xb3\x12\x6c\x32\x51\x4f\x27\x89\xb4\xe1\xf8\x9e\x31\x4d\xc6\x2c\x07\x44\x60\x73\xbc\x88\x88\x5b\x4e\xd0\x38\xd1\x6b\x51\x4e\x23\xdc\xab\xeb\x1e\xd4\x45\x74\x75\x96\xe5\x1e\xe4\x31\x1a\xa6\x29\x58\x63\x05\xb7\x11\xa0\xb1\xec\x86\x84\x5e\x4d\xf9\xbc\x4b\x2f\x40\x33\x1f\x8d\x3f\x72\x57\x3f\x29\xa6\x4c\x63\x80\x0b\x40\x3b\x5a\xd5\xc1\xc6\x2f\x72\xa3\x9a\x17\x64\xaa\xa6\xeb\xc7\xef\xbb\xad\x68\xd1\x27\x63\xed\x4b\x58\x69\xb8\x1d\x0e\xa2\xf1\xb8\x9e\xeb\x61\xb9\x1a\xc3\x1e\x1b\xbc\x4b\xfd\x52\xf2\x5e\x1a\x82\xe0\x68\xc6\xfd\xf7\xe9\x13\x54\x28\x79\x91\xce\xd6\xf5\x86\x22\x95\x85\xc6\x7d\x88\xa0\xdb\x3d\x8a\xc6\xd2\xac\x1f\xe7\x88\x27\xdf\x7f\xed\xf0\x8d\x3c\x45\xc9\xfd\xa0\x77\x23\xc5\x76\x13\x1a\xaa\xf6\x0b\x76\x54\xf1\x54\x65\xcb\xd1\x8a\x1b\xeb\xc4\x3c\x87\xdf\xf6\xa4\x35\x67\x04\xb6\x24\x60\xb4\xf1\x73\xa0\xb7\x55\x6a\x2a\x88\xef\x49\x67\x13\xf3\x20\x2a\x5b\x27\xdb\xee\xc9\x9b\xc9\x7c\x1a\x5b\xbf\x07\x3b\xb1\xf3\xb0\x15\x4a\x3a\x74\x8e\x9a\x9d\x72\x87\xfa\xc5\xb4\x67\xac\x89\xc7\x00\x9a\x8e\x9e\x6c\x6a\x00\x9a\xd3\xab\x77\x51\x8f\xb5\xef\xca\x6b\xdc\x53\x2d\xde\xb7\xc1\xbb\xf2\xc1\x2c\xbb\x80\xa4\x96\xa2\x28\x79\xe3\x01\xc4\x09\xf6\x2f\xd0\x24\xaf\x13\xd9\xad\x9c\x05\xa9\xf4\x0e\xc5\x89\x60\x2e\xfd\x1a\xee\xd7\x57\xcf\xbd\x93\xfc\x2f\x47\x50\xa1\x2d\xb3\xf3\x57\xab\x35\xff\xdf\xb1\x39\xb9\xd1\xfc\x5b\xea\x86\x38\xa7\x49\x6b\x48\xfe\xfc\x0e\x75\xfe\xef\x5b\xf2\x96\xfc\x1d\x00\x00\xff\xff\x44\x3c\xd7\x13\x6b\x0d\x00\x00" +var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\xf6\x50\xc8\x80\x22\xa5\x57\x21\xc9\xc2\x75\x9c\x76\x11\x77\x13\x24\xd9\xee\x99\x96\xc6\x16\x61\x99\x54\x49\xca\xae\x10\xe4\xbf\x17\x24\xf5\xa2\x2c\xe5\x81\x06\xa8\x0e\x01\x62\x7e\xf3\xf8\xbe\x99\x21\x87\xee\x0b\x2e\x14\x2c\x44\x55\x28\xee\xd5\xff\xdd\xe4\xfc\xf8\xc4\x77\xc8\x60\x23\xf8\x1e\xce\xff\xb9\x59\xdd\xfd\x7c\xba\xbb\x5d\x7e\x9f\x5f\x5f\x3f\x2c\x1f\x1f\x5b\x60\xc9\xb6\x74\x9d\xa3\x0b\xfe\xf1\xfd\xf7\x6f\xbf\xad\x96\x63\x06\x2b\x9e\xec\x30\x35\x70\xd9\xe0\x57\x77\x8b\xdb\xe5\xb5\x83\xf6\xa2\x28\x82\x27\x41\x98\x24\x89\xa2\x9c\x81\xca\x88\x02\x02\x49\x29\x15\x4f\x2b\x28\x04\x3f\xd0\x14\x05\x1c\x79\x99\xa7\x20\xe9\x96\x19\x13\xc5\x21\x11\x48\x14\x02\x01\x99\x11\x81\x29\x90\x24\xe1\x25\x53\x40\x58\x0a\x84\x41\xc9\x72\x93\x82\x81\x37\x67\x1b\x2e\x80\x40\x29\x51\x78\x9e\xea\xa2\xfa\x1e\x00\xc0\xa6\xcc\xf3\x79\xba\xa7\xec\xbe\x5c\xe7\x34\xb9\xc5\x2a\xae\xe5\x0a\x6f\xb1\x5a\x51\xa9\x96\x4c\x89\x2a\x80\x28\x82\x9f\x48\xb7\x99\x8a\xe1\xd7\xf3\xf3\xf3\xd6\xf8\x87\x44\xf1\x51\xdb\x19\xc0\xb3\x67\x3c\x14\x02\x0b\x22\xd0\xaf\xa9\xdf\xd7\xcc\x63\x98\x97\x2a\x9b\x5b\x02\xb3\x06\xac\xbf\x1c\x55\xcd\xbd\x3e\x85\xcb\x3e\xd6\x2f\x48\xa5\xcd\x07\xfe\x66\x8e\xbd\x96\xe2\x63\xd6\xad\xb9\x13\x3a\xdc\x61\x25\x43\x92\xa6\x7e\xd1\x09\x70\x2a\x68\xd8\x9e\x06\x90\x11\x99\xcd\xf3\x2d\x17\x54\x65\xfb\x51\xb0\x83\x08\xe0\x58\xeb\x36\x82\xb4\x47\x1d\x35\xfd\xb5\xff\xf4\x38\x4e\xa6\xe9\x94\xee\x8d\x2c\x5d\xec\x2b\x49\xba\xc0\x3a\x47\x00\xb7\x82\x07\x52\xe6\x6a\x41\x0a\xb2\xa6\x39\x55\x15\x5c\xba\xc2\x3a\x94\xc2\x9c\xb2\xdd\xc5\x2f\xed\xd4\x86\x7f\x69\xe3\x2b\x3f\x2a\x04\x3d\x10\x85\xd1\xa6\x39\x31\x07\x01\x28\x22\xb6\xa8\x62\x88\xa4\xe2\x82\x6c\x87\x00\x57\xb0\xaf\x5f\xa1\x20\x8c\x26\xfe\x97\x85\x19\x36\xc6\x15\xe8\x80\xe6\x96\x00\x3b\xf9\xc6\x0c\x92\x36\xdd\x2f\x33\x97\x4d\xde\x8d\xfd\x9f\x84\x91\x2d\x0a\xb8\x38\x73\x2e\x83\xd0\xce\xed\xea\x04\xe8\x1b\x25\xe2\xa1\x20\x93\x1d\x27\xc9\x01\xfd\x8b\xb3\xd3\x88\x01\x28\x1e\xbb\x31\x4f\xa3\x3d\x5a\x41\xee\x89\xca\x06\x14\x54\x0f\xf5\xb1\xba\xbc\x11\xf2\xca\x77\x8c\xf4\xf7\x86\xc5\xbd\x2d\xab\x4e\x32\x38\xb1\x6d\x6a\xfb\x7e\xa2\xad\x8b\xd9\x6b\xd5\x36\xfc\x61\x5f\x57\x6f\xba\xd4\x06\xf7\x07\xcf\xd3\xc9\x1a\x3f\x75\x08\xdf\x96\x69\x9e\xa6\x02\xa5\x8c\x07\xa5\x24\xf6\xe7\xc0\xd1\x3e\x9e\xa8\x44\x2f\x8d\xfe\x64\x9b\x76\x70\x44\xba\x38\xeb\xa5\x18\x80\x73\x76\xd2\x21\xbd\x5c\x7b\x8a\x75\xaa\x4f\x44\x1d\x29\x7c\xcf\xd3\xf3\x48\x6d\x6a\xcb\x6f\x6c\xc3\x5f\xae\xfc\xd7\x01\xf6\xf2\x30\x89\x8c\x97\x7b\x3c\xeb\xb1\x42\x99\x0b\xf3\xff\x6a\x67\x7b\x5b\x7f\x6e\x33\xbf\xf3\xee\xb2\xdd\x3c\x78\xc5\xf4\xfa\xe0\xb4\xf9\xf8\x35\x56\x6b\xb3\xd0\xcd\xcc\x05\x5c\x0e\xdd\xb8\xa2\xad\xb9\x10\xfc\x38\x2a\x9b\xeb\xe8\xca\xd7\xfb\xd0\x28\x57\x17\xf8\x21\xb6\x36\x3c\x08\xdc\xa0\x40\x96\xa0\xe6\x38\xe6\xd4\xa1\x3a\x72\xae\x87\xb1\xd9\x01\x9c\x16\x79\x6b\x76\x9b\x85\x6b\x08\xef\x8f\x8b\x3b\xe8\xa6\x2d\xe2\xd1\xfe\xec\x25\x19\x45\x70\x77\x40\x21\x68\x8a\xa0\x32\x84\x14\x37\xe6\x11\xea\x76\x57\x81\x09\xd2\x43\xaf\x1e\x6e\x86\x25\xd3\x9d\xe0\x47\xf6\x55\xef\x9e\xc0\x87\xda\x6c\x62\x6d\x88\xa2\x66\xc5\x64\x78\x6c\x63\xd8\x05\x75\x4f\xc4\x4e\x36\xbf\xa5\x96\x81\x04\x22\xbb\xad\x73\x3c\x15\x3b\x58\x73\x56\x3d\xa0\xe4\xa5\x48\xf0\xd9\x59\xac\xc3\x26\xa5\x97\xc1\x70\x4d\xe6\xee\x4e\xd2\x7f\x79\x12\x1c\xc1\x8b\x72\x0d\x8c\x8b\x3d\xc9\x3b\xe2\x94\xe9\x5d\x5b\xef\xa8\x5a\x93\x92\xd1\xbf\x4b\x84\xa2\xef\xe3\x73\xb9\x5a\x21\x6f\xde\xc7\x78\x62\xc1\xe9\xd1\xd3\x7f\x5f\xbc\x17\xef\xdf\x00\x00\x00\xff\xff\x31\xd2\x5f\xbb\x08\x0d\x00\x00" func lockedtokensAdminCustody_create_account_with_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3900,11 +3860,11 @@ func lockedtokensAdminCustody_create_account_with_lease_accountCdc() (*asset, er } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_account_with_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0xea, 0x4d, 0xc, 0xc6, 0x6b, 0x93, 0xc7, 0x45, 0xb4, 0x90, 0x7c, 0xb1, 0xdc, 0xc1, 0xd5, 0x1a, 0xd8, 0x8d, 0x8c, 0xb3, 0x98, 0x32, 0x8f, 0x37, 0x9a, 0x21, 0x37, 0x53, 0x2a, 0x88, 0x7d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9a, 0xd8, 0x1f, 0x8, 0xcf, 0x85, 0xf3, 0x68, 0x9d, 0xa4, 0x3e, 0xb2, 0x52, 0x18, 0x97, 0xe4, 0xdf, 0xb4, 0x42, 0x80, 0x49, 0xa2, 0x2f, 0x96, 0x50, 0x77, 0x51, 0x4f, 0x6, 0xb9, 0xb5, 0xed}} return a, nil } -var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xe9\xd5\x70\xb2\x48\x8d\x2e\x5a\x6c\x8a\x06\x6d\xb0\x7b\x9e\x88\x63\x8b\x08\x4d\xaa\x24\x65\x43\x58\xe4\xdd\x0b\x52\x94\x2c\xca\xd2\xae\x5b\xb4\x97\xea\x10\xc4\xe4\xfc\x7c\xf3\xcd\x70\x66\xf8\xa1\x52\xda\xc2\x56\x37\x95\x55\x49\xf8\xf5\x51\xa8\xd3\x8b\x7a\x23\x09\x3b\xad\x0e\xb0\xe8\x7f\x2f\x7a\x89\x5a\xee\xf9\xab\xa0\x48\x6a\x78\xd6\x4b\x3e\xa9\xe2\x8d\x98\x3f\x33\x41\x70\x78\xb4\x48\x92\x3c\xcf\xe1\x45\xa3\x34\x58\x58\xae\x24\xd8\x12\x2d\x20\x14\xb5\xb1\x8a\x35\x50\x69\x75\xe4\x8c\x34\x9c\x54\x2d\x18\x18\xbe\x97\x5e\xc5\x2a\x28\x34\xa1\x25\x40\x30\x25\x6a\x62\x80\x45\xa1\x6a\x69\x61\xa7\x34\x20\xd4\xc6\x29\x95\x0a\x50\x68\x42\xd6\x78\xad\x12\x0d\xd8\x92\xb8\x86\x5a\x0a\x8f\xa3\xd7\x6a\xad\x31\x27\xd6\x62\x2a\xe9\x52\xc8\xeb\x2b\x8f\xc2\xd9\x01\x3b\x00\x8e\xc2\xa8\x24\x19\x9c\xa4\x09\x00\xc0\xae\x16\xe2\x91\x1d\xb8\x7c\xae\x5f\x05\x2f\x3e\x51\xb3\x0e\x7c\x67\x9f\xa8\x79\xe2\xc6\xfe\x24\xad\x6e\x56\x90\xe7\xf0\x85\xf8\xbe\xb4\x6b\xf8\xe1\xee\xee\x2e\x59\x02\x7c\x4d\xbc\x89\x4a\x53\x85\x9a\xd2\xc0\xc9\x73\xa0\x64\x0d\x58\xdb\x32\xfd\x51\x69\xad\x4e\x9f\x51\xd4\xb4\x84\x9b\xc7\x16\xe9\xca\xc7\x1f\x7e\x04\xc1\x3f\xac\xd2\xb8\xa7\x15\x6c\xb1\xc2\x57\x2e\xb8\xe5\x64\xce\x2a\xcb\xce\x9d\xfb\x04\xd9\x40\x6b\xb8\x85\x7b\x08\xff\xa5\x15\x36\xce\xf9\x08\xcd\xf2\xac\x1c\x29\x66\x6f\xd4\x98\x0c\x19\x4b\xab\x33\x01\x97\xa4\x64\xfd\xed\xca\xb1\x5c\x3e\x8a\xbd\xd2\xdc\x96\x87\x49\xe1\x48\x62\x05\xa7\xc0\xdb\x84\x64\x7b\xb5\x8c\x23\x3b\x62\x2d\x6c\xcf\x42\x03\xf7\x23\xc8\xc5\x80\xa0\xcc\xb4\xb4\xf5\x06\xdc\x97\x71\x63\x6a\xda\x78\x5a\xa3\xc2\xcf\xbe\x70\x5b\x32\x8d\xa7\x25\xdc\xf4\xef\x26\xfb\xec\xfc\x3d\xa4\x79\x30\x95\xef\xba\x1b\x7f\x31\x02\x27\xce\xef\xe3\x57\x94\xb8\x27\x0d\x9b\xdb\xe8\x21\x65\x6d\xad\x3e\x5d\x08\xa6\x3e\xb0\xf5\x38\xbe\xd9\xd4\x04\x3c\x99\xc1\x23\xa5\x9b\xdb\x4b\xcf\x2b\xb0\x6a\x1d\xfb\xbe\xf4\x1a\xea\xea\x19\x6d\x39\x0a\xc5\x0e\xa4\xfe\x73\xba\xbf\x83\xf2\x21\x8d\x4c\xba\xef\xfa\xb8\x22\xd5\xa9\x20\x7f\x56\x82\xcd\x26\xea\xe5\x2c\x11\x83\x68\x09\x7f\x64\x4c\x93\x31\xeb\x11\x2b\xd8\x1e\xaf\x22\x8d\x21\xa3\xeb\x19\x7e\x93\x09\xa0\x83\x6e\x10\x67\x3d\xb2\xbe\xb9\x1d\x04\x33\x76\x3c\xaa\x83\x41\x50\x53\x44\xcd\x93\xb4\xc5\x0a\xee\x23\x40\x53\xf9\x0f\x29\xbf\x99\xf3\xf9\x90\x5e\x81\x66\x39\x19\x7f\xe4\xce\xb7\x1d\x53\xa6\x31\xc0\x15\xa0\x9d\xac\xfb\x60\xe3\x17\xb9\x53\x6d\x8f\x99\xab\x7a\xdf\x86\xfe\xb7\x35\x2f\x86\x64\x6c\x5d\x91\x2b\x0d\xf7\xe3\x91\x30\x1d\xd7\xab\x9f\x57\x9b\x29\xec\xb1\xc1\x87\xd4\x2d\x0c\xdf\x4a\x43\x10\x9c\xcc\xb8\xfb\x3e\x7c\x80\x0a\x25\x2f\xd2\xc5\xd6\x6f\x0f\x52\x59\x68\xdd\xc3\xd4\xf4\x57\x7a\x31\x8c\x73\xc2\x93\x7b\x94\xdd\x18\x8c\x3c\x45\xc9\xfd\x3b\x0f\xba\x5b\x31\xc6\xaa\xc3\x82\x9d\xef\x04\xbe\xca\xd6\x93\x15\x37\xf5\x12\xf3\x1c\x7e\x3b\x92\xd6\x9c\x91\x5f\x5f\x18\xed\xdc\xa4\x18\x6c\x7c\x9a\x0a\xe2\x47\xd2\xd9\xcc\xc4\x88\xca\xb6\x96\xdd\xeb\xc9\xdb\xe9\x7d\x1e\x6c\xbf\x07\x3b\xb1\xf3\xb0\xb1\x49\x3a\xf5\x8e\xda\x7d\xef\x80\xfa\xcd\x74\x67\xac\x8d\xc7\x00\x9a\x9e\x9e\x6c\x6e\x44\x9a\x73\xfb\xbb\xea\x8d\x75\x7d\xe5\x6b\xfc\xa6\x3a\xbc\xef\xa3\xbe\xf2\x9d\x69\x77\x05\x49\x1d\x45\x13\x8d\x7f\x1c\x40\x9c\x60\xd7\x81\x66\x79\x9d\xc9\x6e\x55\x5b\x90\x4a\x1f\x50\x9c\x09\xe6\xd2\xad\xc8\x6e\x83\x74\xdc\xd7\x92\xff\x59\x13\x54\x68\xcb\xec\xb2\x6b\x75\xe6\xff\x3d\x36\x67\x77\x9e\x7f\x4a\xdd\x18\xe7\x3c\x69\x2d\xc9\x1f\xbf\x41\x9d\xfb\xfb\x9e\xbc\x27\x7f\x05\x00\x00\xff\xff\xe2\x38\x62\x8b\x07\x0d\x00\x00" +var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\x51\x6f\xe3\x36\x0c\x7e\xf7\xaf\x20\xee\x61\x70\x00\x37\xee\x5e\x8d\xb6\x87\x2c\x4d\xb7\x43\xb3\x6b\xd1\x76\xbb\x67\xc5\x66\x62\x21\x8a\xe4\x49\x72\x32\xa3\xc8\x7f\x1f\x24\x39\x8e\xe4\x38\xd7\x1e\x56\xe0\xf2\x50\xa0\xd6\x47\xf2\xe3\x47\x52\x22\xdd\x54\x42\x6a\x98\xca\xa6\xd2\x22\x6a\xff\xbb\x63\x62\xf7\x22\xd6\xc8\x61\x29\xc5\x06\x2e\xff\xbd\x9b\x3f\x7c\x7b\x79\xb8\x9f\x7d\x9d\xdc\xde\x3e\xcd\x9e\x9f\x3b\x60\xcd\x57\x74\xc1\x30\x04\xff\xf5\xf5\xf7\x2f\xbf\xcd\x67\x43\x06\x73\x91\xaf\xb1\xb0\x70\x75\xc0\xcf\x1f\xa6\xf7\xb3\xdb\x00\x1d\xa5\x69\x0a\x2f\x92\x70\x45\x72\x4d\x05\x07\x5d\x12\x0d\x04\xf2\x5a\x69\x51\x34\x50\x49\xb1\xa5\x05\x4a\xd8\x89\x9a\x15\xa0\xe8\x8a\x5b\x13\x2d\x20\x97\x48\x34\x02\x01\x55\x12\x89\x05\x90\x3c\x17\x35\xd7\xb0\x14\x12\x08\xd4\xca\x18\x95\x02\x08\x93\x48\x8a\xc6\x5a\x95\x44\x81\x2e\x91\x4a\xa8\x39\xb3\x04\x3b\x2b\xe7\xad\x30\x30\xc7\xa9\xc4\x53\x90\xb5\x17\x96\x85\xf1\x03\xda\x23\x4e\x98\x12\x51\xe4\x7d\x89\x23\x00\x80\x65\xcd\xd8\xa4\xd8\x50\xfe\x58\x2f\x18\xcd\xef\xb1\xc9\xda\x1a\x8c\xef\xb1\x99\x53\xa5\x67\x5c\xcb\x26\x81\x34\x85\x6f\x48\x57\xa5\xce\xe0\xd7\xcb\xcb\xcb\x68\x04\xf0\x1a\x59\x17\x95\xc4\x8a\x48\x8c\x5b\x4d\x1e\x5b\x49\x32\x98\xd4\xba\x9c\x38\x6a\x89\x4d\xb8\xfd\x27\x38\x19\x1d\xdc\x98\x1f\x43\xdd\xca\xd5\x9e\xc2\xb5\x8f\x8d\x2b\xd2\x18\xc7\xbd\x48\xa3\xa3\x83\xc0\x78\xbc\xc6\x46\x8d\x49\x51\xc4\xd5\x31\xb9\xd3\x84\xc7\xdd\x69\x62\x14\x2c\x27\x6c\x25\x24\xd5\xe5\x66\x10\x1c\x20\x12\xd8\xb5\x9a\x0c\x20\xdd\xd1\x28\xcc\x6e\x4b\x6a\xa6\xa7\xa4\x22\x0b\xca\xa8\x6e\xe0\x3a\xa4\xdc\x61\xcd\x6f\xcc\x28\x5f\x5f\xfd\xd2\x0d\xc1\xf8\x6f\x63\x7c\x13\xa7\x95\xa4\x5b\xa2\x31\x5d\x1e\x4e\xec\x41\x02\x9a\xc8\x15\xea\x0c\x52\xa5\x85\x24\xab\x3e\x60\x14\x78\xff\xfc\x19\x2a\xc2\x69\x1e\x7f\x9a\xda\xde\xe5\x42\x83\x09\x68\x87\x0e\xdc\x20\x59\x33\xc8\x3b\xba\x9f\x7a\xd9\xb0\xe3\x14\xfd\x49\x38\x59\xa1\x84\xab\x8b\x60\xb6\xc6\xae\x71\xe7\x27\xc0\xd8\x2a\x91\xf5\x05\x39\x5b\x4b\x45\xb6\x18\x5f\x5d\x9c\x46\x4c\x40\x8b\x2c\x8c\x79\x1a\xed\xd9\x09\xf2\x48\x74\xd9\x4b\x41\x7b\xa8\x1f\xab\xcb\x1b\x21\x6f\xe2\xc0\xc8\xfc\xde\xb0\x78\x74\x65\x35\x24\x93\x13\xdb\x43\x6d\xdf\x9f\x68\xe7\x62\xf4\xbd\x6a\xdb\xfc\x61\xd3\x56\xef\x7c\xa9\x2d\xee\x0f\xc1\x8a\xb3\x35\x7e\x39\x22\x62\x57\xa6\x49\x51\x48\x54\x2a\xeb\x95\x92\xb8\xcf\x49\xa0\x7d\x76\xa6\x12\x1e\x0d\xef\x0a\x71\xed\x10\x88\x74\x75\xe1\x51\x4c\x20\x38\x3b\xe9\x10\x8f\xab\xa7\xd8\x51\xf5\x33\x51\x07\x0a\xef\x79\x7a\x1d\xa8\x4d\x6b\xf9\x85\x2f\xc5\xfe\x26\xfe\x3e\xc0\x5d\x1d\x96\xc8\x70\xb9\x87\x59\x0f\x15\xca\x5e\x45\x3f\xab\x9d\xdd\x3d\xf8\xb1\xcd\xfc\xce\xbb\xcb\x75\x73\xef\x7d\x30\x6f\x62\xd0\xe6\xa6\xb7\x07\xee\xb1\x56\x9c\xa9\xe9\x66\x21\xe1\xba\xef\x27\x54\x6d\x21\xa4\x14\xbb\x41\xdd\x42\x47\x37\xb1\xd9\x2f\x06\x93\x0d\x81\x3f\x94\xae\x0b\x0f\x12\x97\x28\x91\xe7\x68\x92\x1c\x72\x1a\xcc\xf1\xc0\xb9\x99\xc6\xc3\xf3\x1a\xf4\xc8\x5b\xc3\x7b\xd8\x3e\xfa\x70\x7f\x5e\xc2\x49\xb7\x7d\x91\x0d\x36\xa8\x47\x32\x4d\xe1\x61\x8b\x52\xd2\x02\xed\x12\x53\xe0\xd2\xbe\x42\xc7\x5d\x50\x62\x8e\x74\xeb\xd5\x23\x64\x58\x73\xd3\x0a\x71\xea\x9e\xf5\xe3\x1b\xf8\xd4\x9a\x85\xda\xfa\x71\xdb\x95\x8d\xe3\xae\x8b\xe1\x16\xbe\x0d\x91\x6b\x75\xf8\x56\xb8\x0c\x14\x10\xd5\x89\x70\x86\x8a\x9b\xac\x09\x6f\x9e\x50\x89\x5a\xe6\xf8\x1a\x2c\xaa\xe3\x03\xa5\x7d\x6f\xba\xce\x72\x0f\x47\xe9\xff\xbc\x09\x81\xe0\x55\xbd\x00\x2e\xe4\x86\xb0\x63\xe2\x94\x9b\xdd\xd5\xac\x76\x46\x93\x9a\xd3\x7f\x6a\x84\xca\xf7\xf1\xb1\xb9\x3a\x21\xef\xde\x97\xf1\x99\x0d\xc7\x4b\xcf\xfc\xdd\x47\xfb\xe8\xbf\x00\x00\x00\xff\xff\xbd\xb5\xf1\x52\x58\x0c\x00\x00" func lockedtokensAdminCustody_create_only_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3920,11 +3880,11 @@ func lockedtokensAdminCustody_create_only_lease_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x16, 0xfa, 0xe7, 0x1, 0x8d, 0x5d, 0xca, 0x94, 0x12, 0x96, 0x29, 0x39, 0xb8, 0xa6, 0x56, 0x88, 0xde, 0xb0, 0xdf, 0x9b, 0xfe, 0xdd, 0xd, 0x16, 0xaa, 0xa7, 0xb5, 0x85, 0xb3, 0xbc, 0x7c, 0xe3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x43, 0x2b, 0xad, 0x8, 0xe2, 0x40, 0x95, 0x23, 0x8c, 0xd8, 0xfe, 0x6a, 0x87, 0xc4, 0x1, 0xf1, 0xb9, 0xc5, 0xf, 0xec, 0x25, 0x7c, 0xc4, 0xbf, 0x2d, 0xfa, 0xb7, 0x44, 0x7d, 0x16, 0x7d, 0xb9}} return a, nil } -var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\x7c\x08\x64\xc0\x91\xd2\x63\x0d\x27\x8b\xd4\xe8\xa2\xc5\xa6\x68\xd0\xa6\xbb\xe7\x89\x38\xb6\x88\xd0\xa4\x4a\x52\x36\x84\x20\xff\xbd\xa0\x44\x3d\x28\x4b\x79\x14\xed\x65\x75\x08\x22\x6a\x1e\xdf\x7c\x33\x9c\x19\xf3\x43\xa1\xb4\x85\xad\xae\x0a\xab\x22\xff\xf6\x59\xa8\xd3\x83\x7a\x22\x09\x3b\xad\x0e\xb0\xe8\xde\x17\x9d\x44\x29\xf7\xfc\x51\x50\x20\x35\x3c\xeb\x24\xef\x54\xf6\x44\xac\x3e\x33\x5e\x70\x78\xb4\x88\xa2\x34\x4d\xe1\x41\xa3\x34\x98\x59\xae\x24\xd8\x1c\x2d\x20\x64\xa5\xb1\x8a\x55\x50\x68\x75\xe4\x8c\x34\x9c\x54\x29\x18\x18\xbe\x97\xb5\x8a\x55\x90\x69\x42\x4b\x80\x60\x72\xd4\xc4\x00\xb3\x4c\x95\xd2\xc2\x4e\x69\x40\x28\x8d\x53\xca\x15\xa0\xd0\x84\xac\xaa\xb5\x72\x34\x60\x73\xe2\x1a\x4a\x29\x6a\x1c\x9d\x56\x63\x8d\x39\xb1\x06\x53\x4e\xe7\x42\xb5\xbe\xaa\x51\x38\x3b\x60\x07\xc0\x51\x18\x15\x45\x83\x93\x38\x02\x00\x28\x50\x5b\x8e\xe2\x96\x1d\xb8\xbc\x2f\x1f\x05\xcf\xbe\x50\xb5\xf6\x94\x27\x5f\xa8\xba\xe3\xc6\xfe\x2c\xad\xae\x56\x90\xa6\xf0\x8d\xf8\x3e\xb7\x6b\xf8\xe1\xea\x6a\xa8\xfe\x97\x21\xfd\x01\xed\x1f\xaf\xae\xa2\x25\xc0\x73\xd4\xd8\xd0\x54\xa0\xa6\xd8\x73\x7a\xef\x29\x5d\x03\x96\x36\x8f\x7f\x52\x5a\xab\xd3\x57\x14\x25\x2d\xe1\xe2\xb6\x89\x74\x55\xf3\xe7\x5f\xbc\xe0\x9f\x56\x69\xdc\xd3\x0a\xb6\x58\xe0\x23\x17\xdc\x72\x32\xbd\xca\xb2\x75\xe7\x1e\x41\xd6\xa7\xc5\x7f\x85\x6b\xf0\xff\xc5\x05\x56\xce\xf9\x08\xcd\xb2\x57\x0e\x14\x93\x27\xaa\x4c\x82\x8c\xc5\x45\x1f\xff\x24\xa9\x49\x27\xb0\x72\x89\xca\x6f\xc5\x5e\x69\x6e\xf3\xc3\x9c\x7c\x20\xb4\x82\x93\x27\x6f\x5a\xb8\xf9\xba\xfc\x38\xc8\x20\x75\x6f\x63\x0c\xc5\x5f\x87\x18\xca\xb6\x08\x83\x24\x1c\xb1\x14\xb6\x4b\x58\x05\xd7\x23\xe0\xd9\x20\x97\x89\x69\x32\xdc\x19\x70\x4f\xc2\x8d\x29\x69\x53\x57\x40\x70\xc7\x93\x6f\xdc\xe6\x4c\xe3\x69\x09\x17\x5d\x8b\x48\xbe\x3a\x7f\x37\x71\xea\x4d\xa5\xbb\xf6\x4b\xfd\x61\x04\x4e\xf4\xad\xe0\x37\x94\xb8\x27\x0d\x9b\xcb\xa0\x67\x24\xcd\xb5\xbc\x3b\x13\x8c\xeb\xc0\xd6\xe3\xf8\x66\xab\xc8\xe3\x49\x0c\x1e\x29\xde\x5c\x9e\x7b\x5e\x81\x55\xeb\xd0\xf7\xb9\x57\x7f\x05\xee\xd1\xe6\xa3\x50\xec\x40\xea\x7f\xa7\xfb\x0d\x94\x37\x71\x60\xd2\x3d\xef\x8f\x2b\x50\x9d\x0a\xf2\x17\x25\xd8\x6c\xa2\x1e\x7a\x89\x10\x44\x43\xf8\x2d\x63\x9a\x8c\x59\x8f\x58\xc1\xe6\x78\x15\x68\x0c\x19\x5d\xcf\xf0\x1b\x4d\x00\x1d\x34\xae\x30\xeb\x81\xf5\xcd\xe5\x20\x98\xb1\xe3\x51\x1d\x0c\x82\x9a\x22\x6a\x9e\xa4\x2d\x16\x70\x1d\x00\x9a\xca\xbf\x4f\xf9\xc5\x9c\xcf\x9b\xf8\x1d\x68\x96\x93\xf1\x07\xee\xea\xd6\x63\xf2\x38\x04\xb8\x02\xb4\x93\x75\xef\x6d\xfc\x2a\x77\xaa\xe9\x31\x73\x55\x5f\x37\xca\xef\xb6\xe6\xc5\x90\x8c\xad\x2b\x72\xa5\xe1\x7a\x3c\xbd\xa6\xe3\x7a\xac\x47\xeb\x66\x0a\x7b\x68\xf0\x26\x76\xbb\xd1\x6b\x69\xf0\x82\x93\x19\x77\xcf\xa7\x4f\x50\xa0\xe4\x59\xbc\xd8\xd6\x8b\x92\x54\x16\x1a\xf7\x30\xb5\xe8\x28\xbd\x18\xc6\x39\xe1\xc9\x5d\xca\x76\x62\x07\x9e\x82\xe4\x7e\xe4\x42\xb7\xdb\xd4\x58\x75\x58\xb0\xf3\x9d\xa0\xae\xb2\xf5\x64\xc5\x4d\xdd\xc4\x34\x85\xdf\x8f\xa4\x35\x67\x54\x6f\x6a\x8c\x76\x6e\x52\x0c\x96\x5b\x4d\x19\xf1\x23\xe9\x64\x66\x62\x04\x65\x5b\xca\xf6\xf6\xa4\xcd\x04\xef\x07\xdb\x1f\xde\x4e\xe8\xdc\x2f\xa7\x92\x4e\x9d\xa3\x66\xb5\x3d\xa0\x7e\x32\xed\x19\x6b\xe2\x31\x80\xa6\xa3\x27\x99\x1b\x91\xa6\x6f\x7f\xef\xba\x63\x6d\x5f\x79\x0e\xef\x54\x8b\xf7\x65\xd4\x57\xde\x98\x76\xef\x20\xa9\xa5\x68\xa2\xf1\x8f\x03\x08\x13\xec\x3a\xd0\x2c\xaf\x33\xd9\x2d\x4a\x0b\x52\xe9\x03\x8a\x9e\x60\x2e\xdd\xaf\x01\xb7\xec\x3a\xee\x4b\xc9\xff\x2e\x09\x0a\xb4\x79\x72\xde\xb5\x5a\xf3\xff\x1d\x9b\xb3\x3b\xcf\xbf\xa5\x6e\x8c\x73\x9e\xb4\x86\xe4\xcf\xaf\x50\xe7\xfe\xbe\x44\x2f\xd1\x3f\x01\x00\x00\xff\xff\x54\x81\x36\x64\xf2\x0d\x00\x00" +var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\xf6\x50\xc8\x80\x63\xb9\xc7\x0a\xc9\x2e\x5c\xc7\x69\x17\x71\x37\x41\x92\xed\x9e\x69\x69\x6c\x11\x96\x49\x95\xa4\xec\x0a\x41\xfe\x7b\x41\x52\x92\x45\x99\xda\xd8\x45\x81\xae\x4e\x89\xf8\xe6\xeb\x3d\xce\x68\x4c\x77\x05\x17\x0a\xe6\xa2\x2a\x14\x0f\xea\xff\xee\x72\x7e\x78\xe1\x5b\x64\xb0\x16\x7c\x07\xd3\xbf\xef\x96\x0f\xdf\x5e\x1e\xee\x17\x5f\x66\xb7\xb7\x4f\x8b\xe7\xe7\x16\x58\xb2\x0d\x5d\xe5\xe8\x82\xbf\x7e\xf9\xed\xf3\xaf\xcb\x85\xcf\x60\xc9\x93\x2d\xa6\x06\x2e\x1b\xfc\xf2\x61\x7e\xbf\xb8\x75\xd0\x41\x14\x45\xf0\x22\x08\x93\x24\x51\x94\x33\x50\x19\x51\x40\x20\x29\xa5\xe2\x69\x05\x85\xe0\x7b\x9a\xa2\x80\x03\x2f\xf3\x14\x24\xdd\x30\x63\xa2\x38\x24\x02\x89\x42\x20\x20\x33\x22\x30\x05\x92\x24\xbc\x64\x0a\xd6\x5c\x00\x81\x52\x6a\xa3\x8c\x03\xc9\x05\x92\xb4\x32\x56\x19\x91\xa0\x32\xa4\x02\x4a\x96\x9b\x04\x5b\x2b\xeb\x2d\xd5\x30\x9b\x53\x86\xa7\x20\x63\xcf\x4d\x16\xda\x0f\xa8\x4e\xe2\x24\x97\x3c\x08\x3a\x6f\xc2\x00\x00\xa0\x20\x42\x51\x92\xcf\xd2\x1d\x65\x8f\xe5\x2a\xa7\xc9\x3d\x56\x71\x2d\xc3\xe4\x1e\xab\x25\x95\x6a\xc1\x94\xa8\xc6\x10\x45\xf0\x0d\xe9\x26\x53\x31\xfc\x3c\x9d\x76\xcd\xbf\x4a\x14\x17\x58\xff\x32\x9d\x06\x23\x80\xd7\xc0\xfa\x10\x58\x10\x81\x61\xcd\xe9\x63\x4d\x69\x0c\xb3\x52\x65\x33\x5b\xda\xd8\x10\x56\xff\xe3\x9c\x8c\x1a\x37\xfa\xc9\x51\xd5\x74\xd7\xa7\x70\xd3\xc5\x86\x05\xa9\xb4\xe3\x5e\xa4\xd1\xd1\x81\x63\x3c\xd9\x62\x25\x27\x24\x4d\xc3\xe2\x58\x9b\x97\xb0\x49\x0b\x18\x6b\x11\xb2\x59\xbe\xe1\x82\xaa\x6c\x37\x84\x77\x40\x63\x38\xd4\xc4\xf8\xc1\xf6\x74\x74\x79\x92\x8e\x2c\xef\xe7\xe8\xc2\xbf\x9f\xa2\x8b\x6d\x32\x74\x84\xd8\x93\x32\x57\x73\x52\x90\x15\xcd\xa9\xaa\xe0\xc6\x4d\xbc\xc5\xea\x67\x92\x53\xb6\xbd\xfe\xa9\xed\xf7\xc9\x9f\xda\xf8\x63\x18\x15\x82\xee\x89\xc2\x68\xdd\x9c\x98\x83\x31\x28\x22\x36\xa8\x62\x88\xa4\xe2\x82\x6c\xfa\x80\x91\xe3\xfd\xd3\x27\x28\x08\xa3\x49\xf8\x61\x6e\xda\x94\x71\x05\x3a\xa0\x99\x2f\x60\x67\x86\x31\x83\xa4\x4d\xf7\x43\xaf\x9a\xfc\x38\x30\xfe\x20\x8c\x6c\x50\xc0\xf5\x95\x33\x46\x26\xb6\x47\x97\x27\xc0\xd0\x30\x11\xf7\x09\x19\xbc\x76\x92\xec\x31\xbc\xbe\x3a\x8d\x38\x06\xc5\x63\x37\xe6\x69\xb4\x67\x4b\xc8\x23\x51\x59\xaf\x04\xd5\x41\x5d\xa6\xcb\x3b\x21\x3f\x86\x8e\x91\x7e\xde\xb1\x78\xb4\xb2\xea\x24\xc7\x27\xb6\x8d\xb6\xe7\x17\xea\xb8\x38\x53\x7b\xc3\x06\xec\x6a\x2d\x87\x85\x37\xb8\xdf\x79\x9e\x0e\x2a\xfe\x72\x44\xb8\x44\x58\x05\x67\x69\x2a\x50\xca\xb8\xa7\x32\xb1\xaf\xdd\xf2\xbb\x12\xc5\x03\x82\x05\xc7\x42\xdb\x3f\x3b\xd3\xd1\x5e\x1f\xc7\xeb\xf5\x55\xa7\x88\x7e\xc0\x1e\xcf\x9d\x62\x3a\x04\x8f\xdf\x0b\xea\xb9\x27\x1d\x4f\xaf\x1e\x29\x6b\xcb\xcf\x6c\xcd\xdf\x7a\x17\xe8\xfb\x68\x3b\x76\x4e\xaf\x8e\xf7\xda\xf8\xcb\xf1\x55\xd3\x6a\x6d\xa6\xef\xff\xd5\x1f\x76\xf4\xff\x28\xdd\xd1\xfb\x50\xea\xe5\xc2\x69\x1b\xdd\x2b\x9e\x29\x59\x33\x35\xd7\xdd\xc1\x05\xdc\xf4\xfd\xb8\x14\xae\xb8\x10\xfc\xe0\x25\xd1\x75\xe4\xa1\x51\x6f\x6e\x5e\x2a\x5c\xcb\x7f\x4f\x86\x4d\x0e\x04\xae\x51\x20\x4b\x50\x53\xe0\x8b\xe0\x4c\x0d\xcf\xb9\x6e\xf7\x66\x0b\x71\x82\x3a\x77\xeb\x92\x51\xd1\x6c\x7f\x7d\xd3\x6e\x57\x0e\xcf\x18\x73\xcf\x62\xef\x85\xf7\x35\x47\x14\xc1\xc3\x1e\x85\xa0\x29\x9a\xcd\x32\xc5\xb5\xf9\x5e\x1e\x17\x74\x81\x09\xd2\x7d\x47\x5b\xb7\x84\x92\xe9\x6b\x15\x46\x76\x09\x39\x7e\xad\x9f\x6a\x33\x37\x56\xbd\x3b\x33\x3c\xb4\x7e\xed\xe6\xbd\x23\x62\x2b\x9b\x77\xa9\x4d\x5f\x02\x91\x2d\x1b\x03\xe1\x6d\x9b\xce\x58\xf5\x84\x92\x97\x22\xc1\x57\xe7\x17\xc3\xa4\x49\xa3\x3f\x89\x06\xf3\x3d\x63\xf4\x9c\xd7\x93\x6e\xe1\x45\xb9\x02\xc6\xc5\x8e\xe4\xc7\xc2\x29\xd3\x3f\x22\xf4\x8e\xac\x39\x29\x19\xfd\xab\x44\x28\xba\x3e\xfe\xdb\x5a\x2d\x91\x77\xe7\x55\x3c\xb0\x7f\x05\x6e\x87\xbd\x05\x6f\xc1\x3f\x01\x00\x00\xff\xff\xcd\x41\x82\xba\xe1\x0d\x00\x00" func lockedtokensAdminCustody_create_only_shared_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3940,11 +3900,11 @@ func lockedtokensAdminCustody_create_only_shared_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_shared_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0xe5, 0xf1, 0xe3, 0x9c, 0x8f, 0xa1, 0xf1, 0xe8, 0x70, 0x0, 0xa1, 0xcd, 0x92, 0x19, 0x17, 0x49, 0xf2, 0x4e, 0x68, 0xef, 0x32, 0x85, 0xb6, 0xac, 0x41, 0x2a, 0x9b, 0xfe, 0xa8, 0x96, 0x31}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x55, 0xbf, 0xb7, 0x6c, 0xdf, 0x9b, 0xe, 0x1e, 0xf4, 0x72, 0xb3, 0xa8, 0x9b, 0xad, 0x62, 0x78, 0x7b, 0xc3, 0xc1, 0xb1, 0x5d, 0x45, 0x73, 0xad, 0x27, 0xbc, 0x2b, 0xc0, 0x9f, 0x7c, 0xd7, 0xab}} return a, nil } -var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xde\x63\x0d\x27\x8b\xd4\xe8\xa2\xc5\xa6\x68\xd0\xa6\xbb\xe7\x89\x34\xb6\x88\xc8\xa4\xca\x1f\x1b\x46\x90\x77\x2f\x28\x51\xb2\x28\x51\x89\x53\xb4\x97\xf2\x10\x44\xe4\xfc\x7c\xf3\xcd\x70\x38\x66\xfb\x4a\x48\x0d\x1b\x79\xaa\xb4\x88\xdc\xd7\x97\x52\x1c\x1f\xc5\x33\x71\xd8\x4a\xb1\x87\x59\xf7\x3d\xeb\x24\x0c\xdf\xb1\xa7\x92\x3c\xa9\xfe\x5e\x27\x79\x2f\xb2\x67\xca\xeb\x3d\xe5\x04\xfb\x5b\xb3\x28\x4a\xd3\x14\x1e\x25\x72\x85\x99\x66\x82\x83\x2e\x50\x03\x42\x66\x94\x16\xf9\x09\x2a\x29\x0e\x2c\x27\x09\x47\x61\xca\x1c\x14\xdb\xf1\x5a\x45\x0b\xc8\x24\xa1\x26\x40\x50\x05\x4a\xca\x01\xb3\x4c\x18\xae\x01\x79\x0e\xc8\xc1\xf0\xb2\xf6\x54\x8b\xb7\x67\x5b\x21\x01\xc1\x28\x92\x51\xa4\xcf\x5e\xe3\x08\x00\xa0\x42\xa9\x19\x96\x77\xf9\x9e\xf1\x07\xf3\x54\xb2\xec\x2b\x9d\x56\x8e\x9d\xe4\x2b\x9d\xee\x99\xd2\x3f\x71\x2d\x4f\x0b\x48\x53\xf8\x4e\x6c\x57\xe8\x15\x7c\x5a\x2e\xfb\xea\x7f\x2a\x92\x1f\xd0\xfe\xc1\x69\x6f\x4d\xf9\x51\xd5\x4f\xcb\xe5\x32\x9a\xc3\x4b\xd4\xb8\x97\x54\xa1\xa4\xd8\x31\xf7\xe0\x88\x5b\x01\x1a\x5d\xc4\x3f\x0a\x29\xc5\xf1\x1b\x96\x86\xe6\x70\x75\xd7\xd0\xd1\xe9\xda\x55\x92\x76\x4c\xba\x53\xb8\x01\xf7\x5f\x5c\xe1\xc9\x5a\x1a\x98\x9e\x7b\xba\x96\xd4\xcb\x35\x3b\x55\xcf\x65\xf2\x4c\x27\x95\x60\x9e\xc7\xd5\x99\x86\x60\x5a\x92\x4e\x60\x01\x05\xaa\xe2\xae\xdc\x09\xc9\x74\xb1\x9f\x92\xf7\x84\x16\x70\x74\x1c\x86\x85\x9b\xd3\xf9\xc7\x41\x7a\x19\x7c\x1f\xa3\x2f\xfe\x36\x44\x5f\xb6\x45\xd8\x41\xec\xd1\x1f\x04\x38\xaa\xaf\x37\xd0\x8d\x65\x27\xa0\x8d\x05\x47\xb8\x6c\x69\x1c\xd0\x94\x7a\x83\x15\x3e\xb1\x92\xe9\x13\xdc\x0c\x08\xcd\xda\x23\x46\x2a\x51\x5a\x48\xdc\x51\x67\xc0\xae\x84\x29\x65\x68\x5d\x57\xb2\xd7\x68\x92\xef\x4c\x17\xb9\xc4\xe3\x1c\xae\xba\x3e\x95\x7c\xb3\xfe\x6e\xe3\xd4\x99\x4a\xb7\xed\x49\x7d\x30\x00\x57\x9e\xfb\xd1\xaf\xc8\x71\x47\x12\xd6\xd7\x5e\xe3\x4a\x9a\x4e\x73\x3f\x12\x8c\xeb\xc0\x56\xc3\xf8\x26\xab\xdb\xe1\x49\x14\x1e\x28\x5e\x5f\x8f\x3d\x2f\x40\x8b\x95\xef\x7b\xec\xf5\x8f\xc6\xca\x03\xea\x62\x10\x8a\xee\x49\xfd\xe7\x74\xbf\x83\xf2\x36\xf6\x4c\xda\x75\x79\x5c\x9e\x6a\x28\xc8\x9f\x45\x99\x4f\x26\xea\xf1\x2c\xe1\x83\x68\x08\xbf\xcb\x73\x49\x4a\xad\x06\xac\x60\xb3\xbd\xf0\x34\xfa\x8c\xae\x26\xf8\x8d\x02\x40\xfb\xb7\xd1\xcb\xba\x67\x7d\x7d\xdd\x0b\x66\xe8\x78\x50\x07\xbd\xa0\x42\x44\x4d\x93\xb4\xc1\x0a\x6e\x3c\x40\xa1\xfc\xbb\x94\x5f\x4d\xf9\xbc\x8d\x2f\x40\x33\x0f\xc6\xef\xb9\xab\x9b\x8e\x2a\x62\x1f\xe0\x02\x50\x07\xeb\xde\xd9\xf8\x85\x6f\x45\xd3\x63\xa6\xaa\xbe\x6e\xe0\xff\xdb\x9a\x2f\xfb\x64\x6c\x6c\x91\x0b\x09\x37\xc3\x57\x35\x1c\xd7\x53\xfd\xf2\xaf\x43\xd8\x7d\x83\xb7\xb1\x1d\xd0\xde\x4a\x83\x13\x0c\x66\xdc\xae\xcf\x9f\xa1\x42\xce\xb2\x78\xb6\xa9\xa7\x35\x2e\x34\x34\xee\xbb\x01\x2c\x73\xe0\x25\x6d\x49\x12\xcf\x68\xd6\x0f\x35\xe0\xcc\xde\xcb\x76\x98\xf0\x9c\x79\xf9\xfd\xc8\x9d\x6e\x07\xc3\xa1\x6a\xbf\x66\xa7\x9b\x41\x5d\x68\xab\x60\xd1\x85\x2e\x63\x9a\xc2\x6f\x07\x92\x92\xe5\x04\xba\x20\xc8\x69\x6b\x1f\x8b\xde\x90\x2d\x29\x23\x76\x20\x99\x4c\x3c\x1a\x5e\xe5\x1a\xde\x5e\xa0\xb4\x79\xbe\xcf\x6f\xdb\xef\xce\x8e\xef\xdc\x0d\xc9\x9c\x8e\x9d\xa3\x66\xc4\xde\xa3\x7c\x56\xed\x5e\xde\xc4\xa3\x00\x55\x47\x4f\x32\xf5\x4a\xaa\x73\x07\xbc\xe8\x9a\xb5\xad\xe5\xc5\xbf\x56\x2d\xde\xd7\x41\x6b\x79\xe7\xc1\xbb\x80\xa4\x96\xa2\x40\xef\x1f\x06\xe0\x27\xd8\x36\xa1\x49\x5e\x27\xb2\x5b\x19\x0d\x5c\xc8\x3d\x96\x67\x82\x19\xb7\xbf\x4a\xec\x38\x6e\xb9\x37\x9c\xfd\x65\x08\x2a\xd4\x45\x32\x6e\x5c\xad\xf9\x7f\x8f\xcd\xc9\xb1\xe7\x9f\x52\x37\xc4\x39\x4d\x5a\x43\xf2\x97\x37\xa8\xb3\x7f\x5f\xa3\xd7\xe8\xef\x00\x00\x00\xff\xff\x49\x24\x03\x98\x7a\x0e\x00\x00" +var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\xf6\x50\x28\x80\x63\x79\x8f\x15\x92\x2e\x5c\xc7\x69\x17\x71\x37\x41\x92\xed\x9e\x69\x69\x6c\x11\x96\x49\x95\xa4\xec\x0a\x41\xfe\x7b\x41\x51\x5f\x94\xa8\x38\x0e\x0a\xb4\xba\xd9\x7c\xc3\x99\x79\x6f\x66\x48\xd2\x7d\xc6\x85\x82\x85\x28\x32\xc5\xbd\xea\xd7\x6d\xca\x8f\xcf\x7c\x87\x0c\x36\x82\xef\x61\xf6\xf7\xed\xea\xfe\xc7\xf3\xfd\xdd\xf2\xdb\xfc\xe6\xe6\x71\xf9\xf4\xd4\x00\x73\xb6\xa5\xeb\x14\x6d\xf0\xf7\x6f\xbf\x7d\xfd\x75\xb5\x74\x19\xac\x78\xb4\xc3\xb8\x84\xcb\x1a\xbf\xba\x5f\xdc\x2d\x6f\x2c\xb4\x17\x04\x01\x3c\x0b\xc2\x24\x89\x14\xe5\x0c\x54\x42\x14\x10\x88\x72\xa9\x78\x5c\x40\x26\xf8\x81\xc6\x28\xe0\xc8\xf3\x34\x06\x49\xb7\xac\x34\x51\x1c\x22\x81\x44\x21\x10\x90\x09\x11\x18\x03\x89\x22\x9e\x33\x05\x84\xc5\x40\x18\xe4\x2c\x2d\x43\x28\xe1\xf5\xda\x86\x0b\x20\x90\x4b\x14\x9e\xa7\x5a\xaf\xbe\x07\x00\x90\x11\xa1\x28\x49\xe7\xf1\x9e\xb2\x87\x7c\x9d\xd2\xe8\x0e\x8b\xb0\x62\x6c\x7a\x87\xc5\x8a\x4a\xb5\x64\x4a\x14\x13\x08\x02\xf8\x81\x74\x9b\xa8\x10\x3e\xcf\x66\x5d\xf3\xef\x12\xc5\x19\xd6\x3f\x57\xd6\x9b\x3c\x3d\xd7\xf4\xf3\x6c\x36\xf3\x2e\xe0\xc5\x33\xee\x05\x66\x44\xa0\x5f\x31\xf7\x50\x11\x17\xc2\x3c\x57\xc9\xdc\xe4\xdf\x80\xf5\x97\xa2\xaa\xa8\xab\x56\xe1\xba\x8b\xf5\x33\x52\x68\xf3\xde\x7e\x17\x96\xbd\x66\xf2\x3c\xeb\xc6\xdc\x72\x3d\xdd\x61\x21\xa7\x24\x8e\xfd\xac\xcd\xdf\xa9\xc7\xb4\x01\x4c\x20\x21\x32\x99\xa7\x5b\x2e\xa8\x4a\xf6\x63\x78\x0b\x34\x81\x63\x45\x9e\x1b\x6c\x56\x2f\xce\x0f\xd2\x92\xee\x74\x8c\x36\xfc\xed\x10\x6d\x6c\x1d\x61\x13\x62\x47\x02\x67\x80\x83\xc2\x7a\x23\xba\x21\x76\x24\xb4\x21\x70\x10\x97\x2e\x8f\x03\xc9\x53\xb5\x20\x19\x59\xd3\x94\xaa\x02\xae\x6d\x42\x1b\xac\xfe\xa6\x29\x65\xbb\xab\x9f\x9a\x89\x34\xfd\x53\x1b\xff\xe2\x5b\x20\xfd\x05\x99\xa0\x07\xa2\x30\xd8\xd4\xd0\x12\x39\x19\x00\x15\x11\x5b\x54\x21\x04\x52\x71\x41\xb6\x7d\x03\x0b\x7f\x61\xfd\xfa\xf2\x05\x32\xc2\x68\xe4\x7f\x5a\x94\x63\x87\x71\x05\x3a\xbc\x72\x5e\x82\x99\x81\xe5\x1e\x10\x35\xc9\x7d\xea\xe5\x9e\xb6\x03\xf0\x0f\xc2\xc8\x16\x05\x5c\x5d\x5a\x63\x71\x6a\x26\xd8\x6a\x00\xf4\x4b\xde\xc2\x3e\x7d\xa3\xcd\x23\xc9\x01\xfd\xab\xcb\xa1\xc7\x09\x28\x1e\xda\x3e\x87\xde\x9e\x0c\x3b\x0f\x44\x25\xbd\x14\x54\x07\x75\x9e\x8a\x27\x5c\x3a\x54\x3d\x61\xf1\x60\x34\xd7\x41\x8e\x0b\xfd\xfe\x44\x3f\xa2\x7d\xc9\x06\xec\x2b\x2d\xc7\x85\x2f\x71\xbf\xf3\x34\x1e\x55\xfc\xb9\x45\xd8\x44\x18\x05\xe7\x71\x2c\x50\xca\xb0\xa7\x32\x31\x7f\xdb\xe9\x77\x25\x0a\x47\x04\xf3\xda\x44\x9d\x53\xa3\x2c\x1f\x6b\xd7\xab\xcb\x4e\x12\x7d\x87\x3d\x9e\x3b\xc9\x74\x08\x9e\x9c\x72\xea\xa8\x93\xce\x4e\x2f\x0e\x29\x2b\xcb\xaf\x6c\xc3\x5f\x7b\x05\xf4\x36\xda\x0c\xa9\x61\xe9\x38\xcb\xc6\x9d\x8e\x2b\x9b\x46\xeb\xf2\x0c\xf9\xaf\xfa\xc3\x1c\x60\xff\x97\xee\xe8\x1d\xf7\xfa\x9a\x66\xb5\x8d\x7b\x48\x56\x44\x2d\x74\x73\x70\x01\xd7\xfd\x6d\x6c\x06\xd7\x5c\x08\x7e\x74\x72\x68\x6f\xe4\x60\x51\x5f\x44\x9d\x4c\xd8\x96\x1f\xe7\xc2\x04\x07\x02\x37\x28\x90\x45\xa8\x19\x70\x79\xb0\x88\x70\xac\xeb\x6e\xaf\xaf\x52\x96\x53\xab\xb4\xce\x99\x14\xf5\x7d\xb8\x6f\xda\x6d\xca\xf1\x11\x53\x96\x59\xe8\xac\x77\x57\x6f\x04\x01\xdc\x1f\x50\x08\x1a\x23\xa8\x04\x21\xc6\x4d\x79\x5c\xb6\xef\x0d\x81\x11\xd2\x43\x47\x5b\x3b\x85\x9c\xe9\xaa\xf2\x03\x73\x57\x69\x4f\xee\xc7\xca\xcc\xf6\x55\x3d\x05\x18\x1e\x9b\x7d\xcd\x43\x62\x4f\xc4\x4e\xd6\xff\xc5\x26\x7c\x09\x44\xb6\xaf\x03\xb7\x7b\xd3\xa5\x73\x56\x3c\xa2\xe4\xb9\x88\xf0\xc5\x7a\x00\x4d\xeb\x30\xfa\x83\x68\x34\xde\x77\x4c\x9e\xf7\xb5\xa4\x9d\x78\x96\xaf\x81\x71\xb1\x27\x69\x9b\x38\x65\xfa\x4d\xa4\x1f\x03\x9a\x93\x9c\xd1\xbf\x72\x84\xac\xbb\xc7\xbf\x9b\xab\x21\xf2\xf6\x7d\x19\x9f\xba\x8b\x99\x0e\x7b\xf5\x5e\xbd\x7f\x02\x00\x00\xff\xff\xa7\x8e\x77\xbc\xb0\x0e\x00\x00" func lockedtokensAdminCustody_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3960,11 +3920,11 @@ func lockedtokensAdminCustody_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8d, 0x9c, 0xa9, 0xa6, 0xfd, 0xba, 0xcb, 0xf6, 0x70, 0x43, 0xa6, 0x9a, 0x65, 0x1e, 0x20, 0xa, 0xe3, 0x83, 0x0, 0x12, 0xfd, 0xaa, 0xf5, 0x47, 0x97, 0x51, 0xdd, 0xcd, 0x30, 0xd9, 0x8d, 0x16}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x74, 0x50, 0x5a, 0xa9, 0xa6, 0xb0, 0xd4, 0xdd, 0x14, 0x0, 0xfe, 0x63, 0xd4, 0xc3, 0x61, 0x85, 0xb3, 0xc0, 0x6f, 0xc0, 0x4a, 0xba, 0x4c, 0x57, 0xb3, 0x72, 0x4d, 0xc2, 0x2a, 0xc0, 0x5d, 0x57}} return a, nil } -var _lockedtokensAdminCustody_setup_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x51\xcb\x6a\xeb\x30\x10\xdd\xeb\x2b\x86\x2c\x82\x03\x79\xec\x43\xee\x85\x90\x6d\x17\x86\x94\xee\x27\xf2\xb4\x16\x96\x25\x31\x1a\xb9\x94\x92\x7f\x2f\xae\x89\x6b\xa5\xe9\x03\x3a\x0b\x2f\x8e\x47\xe7\x35\xa6\x0d\x9e\x05\xee\xbc\x6e\xa8\xba\xf7\x0d\xb9\x08\x8f\xec\x5b\x98\x4d\xa1\x99\x52\xc2\xe8\x22\x6a\x31\xde\xc1\xab\x52\x00\x00\x81\x29\x20\x53\xa1\x53\x14\x5f\xbd\x94\xec\x3b\x53\x11\x6f\x01\x93\xd4\xc5\x11\x3b\x7a\x40\x9b\x68\x09\x07\x0c\x78\x32\xd6\x88\xa1\xb8\x80\xf9\x5e\x6b\x9f\x9c\x2c\x2e\x3c\xfd\x58\x12\xc0\x01\x3f\x30\xa1\x78\x86\xdd\x2a\xb3\xb5\xd6\x3d\x4e\x03\xb4\xcf\x56\x8b\xc5\x07\xd1\x95\x99\x75\x14\xcf\xf8\x44\xeb\x88\x1d\x15\xe3\x56\x3f\xbb\x55\x2e\xb8\xcc\xfe\x8a\xdf\xe6\xf2\xb7\x84\x8f\x03\x79\x89\x52\x8f\x8f\x27\x5e\x36\x1b\x18\x4c\x83\xa3\x67\x60\xd2\x64\x3a\x62\x90\x1a\x05\x5a\xe4\x26\x5e\xb0\x0a\x64\xa8\x1e\x23\x24\x67\xdf\x95\xb2\x6a\xec\x0d\xf1\x03\x06\xf8\xf7\x29\xaf\x9e\x74\x3d\x86\x37\x31\x26\xda\xcd\x7f\xcc\xf3\x3f\x6f\xe8\xaf\xf9\xbf\xf5\x16\xd2\xc9\x9a\x58\xe7\x8a\x5f\xe4\xcc\x4f\x83\xf2\x8b\xd3\x94\x3d\xbd\xbe\x72\xd6\x7f\xcf\xea\xac\xde\x02\x00\x00\xff\xff\xb3\xbb\x63\xe2\xf6\x02\x00\x00" +var _lockedtokensAdminCustody_setup_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\xdd\x6a\xc2\x40\x10\x85\xef\xf7\x29\xe6\xaa\x28\xf8\xd3\x6b\x91\x42\xd0\x5c\x29\x35\x34\xbe\xc0\x74\x33\x35\x4b\x92\xdd\x30\x3b\x49\x5b\x24\xef\x5e\x62\x30\x65\xa5\xc5\x76\xee\xf6\xcc\xcf\x39\xfb\x99\xaa\x76\x2c\xb0\x77\xba\xa0\xec\xe8\x0a\xb2\x1e\xde\xd8\x55\xf0\xf8\xb1\x3f\x6c\x76\xf1\xf6\x78\xd8\xc5\xcf\xd1\x76\xfb\x12\xa7\xa9\x52\xc2\x68\x3d\x6a\x31\xce\xc2\x59\x29\x00\x80\x9a\xa9\x46\xa6\x89\x6e\xbc\xb8\xec\x33\x61\xd7\x9a\x8c\x78\x05\x51\x23\x79\xa4\xb5\x6b\xac\x4c\xaf\xc3\x7d\x95\x24\x80\x83\xbe\x61\x42\x71\x0c\xeb\x79\x90\x60\xa1\x7b\x9d\x06\x29\x0a\x46\x27\xd3\xef\x43\x37\x8e\x0b\x8f\x2d\x4d\xc6\x6e\x5f\xeb\x79\x68\x34\x83\xa0\x2d\x6e\x15\xfa\xfe\xe4\x98\x8a\x63\x3c\x51\x82\x92\xcf\xc6\xed\x69\x70\x67\x7c\x2c\x97\x30\x44\x07\x4b\xef\xc0\xa4\xc9\xb4\xc4\x20\x39\x0a\x54\xc8\x85\xbf\x6a\x19\xc8\xc0\x1a\x3d\x34\xb6\xbc\xd8\xfe\xfa\xaf\xd2\xd8\x62\xfd\x70\x37\xe8\xf9\xee\x44\xd2\xbc\x96\x46\x77\x4f\x21\xa4\x3f\xae\x85\x00\x2e\xf8\x90\x4f\x24\xff\x43\x78\x43\xb0\x53\x9d\xfa\x0a\x00\x00\xff\xff\x03\x0d\xf1\xc2\x83\x02\x00\x00" func lockedtokensAdminCustody_setup_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3980,11 +3940,11 @@ func lockedtokensAdminCustody_setup_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_setup_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcb, 0x18, 0xe4, 0x77, 0xf3, 0x8, 0x1c, 0x54, 0xd1, 0x5, 0x32, 0x49, 0x92, 0x5f, 0x1e, 0x68, 0xe1, 0x59, 0x8d, 0x29, 0x7e, 0x52, 0xc6, 0x8e, 0x2e, 0x6b, 0xc4, 0xe4, 0xe8, 0x87, 0x58, 0x72}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x96, 0xaa, 0x40, 0xfa, 0xc7, 0xc8, 0x86, 0x4b, 0xda, 0x8f, 0x8a, 0x8f, 0x20, 0x36, 0xd0, 0xb0, 0x25, 0xd0, 0xe0, 0xed, 0x70, 0x60, 0xf2, 0x2c, 0x9a, 0x8d, 0x46, 0x4c, 0xce, 0xd8, 0x9, 0x5f}} return a, nil } -var _lockedtokensAdminDeposit_locked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x4f\xdc\x3e\x10\x3d\x93\x4f\x31\xe4\x00\x89\x04\xd9\xcb\x4f\xbf\x43\xc4\x9f\x52\x2a\x7a\xe9\xa1\xa2\x94\x9e\x1d\x67\xb2\x71\xf1\xda\x91\x3d\x61\x91\x10\xdf\xbd\x8a\x1d\xbb\xf1\xee\x0a\x9a\x4b\xe4\xf1\xcc\xbc\x37\x33\x6f\x2c\x36\x83\x36\x04\x77\xa3\x5a\x8b\x46\xe2\x83\x7e\x42\x05\x9d\xd1\x1b\xc8\x13\x5b\x9e\x05\x4f\xa9\xb7\x89\x57\x38\xe7\x59\x70\xf9\xa6\xf9\x13\xb6\xce\x68\x67\xaf\xa5\x29\xcf\x32\x32\x4c\x59\xc6\x49\x68\x55\x90\xae\xe1\xa6\x6d\x0d\x5a\x7b\x06\x6c\xa3\x47\x45\x35\xfc\xbc\x13\x2f\xff\xff\x57\xc2\x6b\x96\x01\x00\xac\x56\xf0\xd0\x23\x3c\xb2\x51\x12\x18\xb4\x7a\x34\x1c\x81\x7a\x46\xd0\x6b\xd9\x5a\xa0\x1e\x81\x3c\xa0\xb3\x32\x83\xd0\xa0\x50\x6b\x70\x50\x1d\x1a\x83\xad\x4b\x25\x91\xc0\xa2\x22\x97\xab\x86\x4f\xaf\x49\x99\x95\x33\xbf\x79\xd4\xc1\xe0\xc0\x0c\x16\xac\xdd\x08\x55\x03\x1b\xa9\x2f\x3e\x6b\x63\xf4\xf6\x91\xc9\x11\x4b\x38\xb9\xe1\x7c\xe2\x1b\x79\xce\x5c\xbf\x22\x01\x03\x83\x1d\x1a\x54\x13\x51\xed\x08\xba\x3c\xa7\x16\x2c\x69\x83\x2d\x3c\x4f\x50\x31\x6c\xe2\xe5\x2c\xf7\xd8\xc1\xa5\xf7\xad\x26\x4f\xb6\xc6\xaa\x71\xa8\x17\x8e\x41\xca\xf7\x97\xa0\xbe\x35\x6c\x5b\xc2\x49\x9c\x84\x2f\xe2\xaa\x98\x5a\x5f\xc3\x6a\x4e\xb2\xea\xc2\xbd\xbb\x2e\xb3\xa3\xa3\xa3\xeb\x6b\x18\x98\x12\xbc\xc8\x6f\xf5\x28\x5b\x50\x9a\xc0\x63\xed\xb3\xd7\x5b\x85\xe6\xd4\xfa\x21\x1c\xe7\x65\x96\x50\x77\x7c\x0f\x50\x8f\x4e\xd3\x17\xea\x38\x59\xca\xa1\x72\xbf\x9b\x29\xe8\x56\x4b\x89\x4e\x15\x57\x45\x12\x38\x7d\xbe\x9a\x24\x72\x71\xd8\x89\xff\xe1\xd1\xbf\x33\xea\x93\x44\x65\x72\x7a\xa7\xfc\x03\xe3\x93\x0e\xcd\xcb\xcc\x17\x09\x3c\x02\x2e\xfb\xc1\xac\x45\x43\x69\x05\xa1\x3f\xd5\x1a\x69\x56\x4d\xc1\xbc\xea\x6b\x20\x5d\xc2\xf1\x25\x28\x21\xcf\x92\xa0\x0d\x5a\xcb\xd6\x58\x43\x3e\xa9\xdf\x0e\xc8\x45\x27\xb0\x05\xe6\x13\x80\xb0\x8e\x32\x0b\xd4\x66\xfb\x31\xdc\x32\x35\x5d\x58\x54\x6d\x42\xdb\xe6\xd9\xdf\x4e\x2c\x15\x1b\x64\x14\x96\xc8\x6d\xed\x87\x9a\xb5\x28\xbb\x2a\x2e\x13\x5c\x9c\x47\x05\x57\xdb\x39\x61\x11\x36\xda\xff\x7d\xff\xe7\xfd\xc2\x17\xe4\x23\xe1\x81\xe5\x99\x90\x0d\x72\x31\x08\x54\x74\x6a\x61\x18\x1b\x29\x78\xac\x5b\x37\xbf\x91\xa7\xab\x13\xbd\xe1\x12\x16\x2d\x26\x5d\xfe\xcb\x66\x2e\xb1\xee\x91\xa3\x78\x46\xb3\x9b\xde\x19\xbd\xc2\xa3\x7b\xaa\x6e\xce\x06\xd6\x08\x29\x48\xa0\x8d\x52\xdf\x79\x5f\x42\xf6\xb7\x03\x0a\x5f\xf9\x32\x57\x7e\x62\x71\x9d\xf7\x08\xf9\xf1\x7d\xb4\xbe\x3e\xe8\xfd\x5a\x67\x6d\xb8\xf1\xe5\x69\xa7\xbe\xe0\xa0\xad\xf0\xa3\x08\xc3\x54\x41\x1e\x42\xed\xa5\x32\xbb\x2c\x17\x2d\xab\x5a\x9f\x6c\x7e\x91\x2e\xce\x53\xe1\x04\x51\xbc\x65\x7f\x02\x00\x00\xff\xff\x94\x91\x54\x35\x8e\x06\x00\x00" +var _lockedtokensAdminDeposit_locked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x51\x4f\xdb\x30\x10\x7e\x26\xbf\xe2\xe8\x03\xa4\x12\xa4\x7b\x98\xf6\x10\x15\x58\xd7\x16\x34\x51\xc1\x54\x60\x3c\xbb\xc9\xa5\xf1\x70\xed\xc8\xbe\x50\x10\xe2\xbf\x4f\xb1\xe3\x2c\xa6\x08\x96\x97\x28\xf6\xdd\x77\xdf\x7d\xf7\x5d\xf8\xa6\x52\x9a\xe0\xbc\x96\x6b\xbe\x12\x78\xab\x1e\x50\x42\xa1\xd5\x06\xbe\x3c\x9d\xdf\x5d\x5d\xfc\xfc\xb1\x98\xdf\x5e\x5f\xce\xaf\x26\xb3\xd9\x72\x7e\x73\x13\xf9\x04\xa1\xb6\x61\xf0\xe2\xfa\x3e\x08\xf4\x91\x0b\x95\x3d\x60\x6e\x63\x8d\x0f\x5e\x5c\x4f\x2f\xe7\xb3\x30\x9c\x34\x93\x86\x65\xc4\x95\x8c\x49\xa5\x30\xc9\x73\x8d\xc6\x1c\x01\xdb\xa8\x5a\x52\x0a\x77\xe7\xfc\xe9\xdb\xd7\x21\xbc\x44\x11\x00\xc0\x68\x04\xb7\x25\xc2\x6f\x56\x0b\x02\x8d\x46\xd5\x3a\x43\xa0\x92\x11\x94\x4a\xe4\x06\xa8\x44\x20\x57\xd6\x9e\x32\x8d\xb0\x42\x2e\xd7\x60\x4b\x15\xa8\x35\xe6\x16\x4a\x20\x81\x41\x49\x16\x2b\x85\xef\x81\x1a\x89\x3d\x75\x35\x2b\x8d\x15\xd3\x18\xb3\x7c\xc3\x65\x0a\x93\x9a\xca\x49\x96\x35\xf4\x3a\x5a\x2d\xb5\x0b\x24\x60\xa0\xb1\x40\x8d\xb2\xe1\xa5\x2c\x1f\x9b\x78\x68\xc0\x90\xd2\x98\xc3\xa3\x85\xf6\x69\x0d\x0d\x7b\xb2\xc4\x02\x4e\x5c\x6c\xb2\x52\x5a\xab\xed\xf8\xa0\x13\xdc\xf1\x39\x8d\x1b\x29\x53\x18\x35\x48\x6c\x8d\xa3\xc2\xdf\xdb\xeb\x61\xb4\xb7\xb7\x77\x76\x06\x15\x93\x3c\x8b\x07\x53\x55\x8b\x1c\xa4\x22\x70\x70\xbb\xc4\xd4\x56\xa2\x3e\x34\x4e\xce\xfd\xc1\x30\x0a\x58\x59\x2a\x3d\x56\xdd\x65\xf3\x74\x14\xfb\x93\x4e\xec\x6b\xd2\x04\x4f\x95\x10\x68\xe7\x7a\x1a\x07\x89\xcd\xe3\xba\x08\x32\x7b\x1f\x6f\xf2\x6f\x5c\xaf\xbf\x18\x95\x01\xd0\x30\xf8\xfa\xa0\xed\x77\x26\x22\x6c\x35\x67\x14\xd7\x1c\x64\x5d\xc1\xbe\x0e\xcc\x18\xd4\x14\x76\xe0\x75\x49\xd6\x48\xad\x11\x62\xe6\x7c\x9b\x02\xa9\x21\xec\x9f\x80\xe4\xe2\x28\x48\xda\xa0\x31\x6c\x8d\x29\x0c\x1a\xff\x9a\x0a\x33\x5e\x70\xcc\x81\x39\x00\xe0\xc6\x52\x66\x9e\x5a\x7b\xbe\x0f\x53\x26\x9b\x0b\x83\x32\x0f\x68\x9b\x41\xf4\x4f\x89\xbe\x09\xef\x39\x95\xb9\x66\x5b\xbf\x06\x76\xfb\x3e\xb5\xa1\x41\x51\x24\xdd\x3a\xc0\xf8\xb8\x33\x65\xb2\x6d\x01\x63\xbf\x93\xee\xed\xf4\x7f\x75\xb5\xf1\x09\xb3\x9a\xf0\x9d\x7d\x68\x2a\x6b\xcc\x78\xc5\x51\xd2\xa1\x81\xaa\x5e\x09\x9e\x75\x7d\xab\xd5\x1f\xcc\xc2\x6d\xe8\xa2\xe1\x04\x7a\x12\x93\x1a\xfe\xcf\xb2\xf5\x6b\x2d\x31\x43\xfe\x88\xfa\x2d\xbc\x3d\x74\xce\xee\xc2\x43\x77\xaf\x91\xa6\xac\x62\x2b\x2e\x38\x3d\x8f\x0f\x26\xf2\x79\xd9\xfe\x6c\x5e\xc2\xff\x84\x2f\xf1\xfa\x8e\xcd\x47\xae\xd7\x91\x1b\x5b\xb7\xcb\x3b\xac\x76\xdd\xdc\x6e\x57\xfc\xf9\x46\x3b\xa8\x8f\x65\x68\x6d\x63\x27\x3b\x08\x45\x9c\x61\xa5\x0c\x77\x53\xf2\x73\x96\xde\x39\x5c\xee\x40\xe9\xb7\xdc\x7b\x6a\x26\xb9\x03\x6b\x7f\x52\xe3\xe3\xd0\x53\xde\x2f\xaf\xd1\xdf\x00\x00\x00\xff\xff\xf3\x18\x9a\xb9\x7f\x06\x00\x00" func lockedtokensAdminDeposit_locked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4000,11 +3960,31 @@ func lockedtokensAdminDeposit_locked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/deposit_locked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0x20, 0xf3, 0x69, 0x56, 0x19, 0x68, 0x47, 0x94, 0x66, 0xf4, 0x82, 0x18, 0xa4, 0xba, 0x93, 0xed, 0x42, 0x70, 0xeb, 0xaf, 0xac, 0x53, 0x45, 0x32, 0x2e, 0xd2, 0x81, 0xf9, 0x8, 0xa6, 0x11}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x97, 0xf7, 0x8d, 0x2a, 0x18, 0x7c, 0x14, 0x6a, 0x90, 0x21, 0x34, 0x33, 0x63, 0xb4, 0xa0, 0x31, 0x6b, 0xb8, 0x85, 0xb5, 0xbf, 0xe8, 0xdd, 0x6, 0xa8, 0xbc, 0x74, 0x3, 0x46, 0x89, 0x24}} return a, nil } -var _lockedtokensAdminUnlock_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x91\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x63\x0e\x75\x03\x92\x93\x78\x08\x6a\xa9\x05\x4f\x15\xa4\x5a\xef\xe3\x66\xd2\x2e\xdd\xec\x84\xd9\x09\x0a\xd2\xff\x2e\xc9\x96\x9a\xf6\xea\x5c\x26\x59\x66\xde\x7e\xef\xad\x6b\x3b\x16\x85\x15\xdb\x3d\xd5\xef\xbc\xa7\x10\xa1\x11\x6e\x21\x9f\x1e\xe5\x59\xa6\x82\x21\xa2\x55\xc7\xc1\x28\xca\x96\x74\x61\x2d\xf7\x41\x2b\x58\xd4\xb5\x50\x8c\x37\x50\x93\x57\xac\x60\xf3\xec\xbe\xef\x6e\x0b\xf8\xc9\x32\x00\x80\x4e\xa8\x43\x21\x83\x75\xeb\x42\x05\xd8\xeb\xce\x3c\xb1\x08\x7f\x7d\xa0\xef\xa9\x80\xd9\x51\xe9\xb4\x31\x94\x27\x85\x71\x63\x4d\x0d\x3c\xa4\xcf\x32\x2a\x0b\x6e\xa9\xfc\x1c\xd7\xef\x67\x53\xc6\x72\x6c\x8b\x61\x6e\xc9\xde\xd3\x88\xfa\x68\x06\x33\xd5\x99\xbf\x72\xf2\x73\x31\xfe\x96\xf4\x5f\x51\x77\xc5\x89\x64\xa8\xf9\x1c\x3a\x0c\xce\x9a\x7c\xc9\xbd\xaf\x21\xb0\x42\x82\x00\x04\xa1\x86\x84\x82\x25\x50\x06\xdd\x51\x82\x05\x7b\x92\xcd\x8b\x73\x5f\x3a\x5c\xfd\x82\x01\xb7\x24\x13\x7b\x6b\x6a\xca\xbf\x5c\x0d\xa6\x58\x2b\x38\x8b\xbb\xb8\x3a\xba\x37\xff\x21\xec\x23\xc9\x75\x4c\x20\xd0\x26\x92\x29\xe5\x05\x61\xe9\x82\x15\xc2\x48\x9b\xe0\xd9\xee\x57\xae\x75\x6a\x8e\xaf\x3d\xb6\xc4\x72\xc8\x0e\xd9\x6f\x00\x00\x00\xff\xff\xfd\x94\x1c\x78\x51\x02\x00\x00" +var _lockedtokensAdminGet_unlocking_bad_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x6e\x83\x30\x10\x44\xef\x7c\xc5\x34\x87\x0a\x2e\xc9\xa5\xea\x01\x95\x46\x34\x55\x3f\xa0\x52\x4f\x55\x0f\xc6\x36\x68\x05\xd9\x45\xc6\x56\x8b\x10\xff\x5e\x25\x10\x1a\x35\xf8\x64\xcb\x33\xf3\x66\x37\x8a\xda\x50\xa0\x0c\x8c\xa3\x22\x8e\xbd\xd4\x96\x73\x73\x24\x4e\x91\x1b\xe3\x6c\xd7\x25\x29\x86\xf9\x9a\xe2\xe3\x8d\x7e\x1e\x1f\x46\x0c\x51\x04\x00\x8d\xf5\xd0\xd2\xf6\x52\xbe\x92\xf6\x24\xac\x5c\xbf\x26\xcf\x30\x8c\x7f\x0e\xa5\xb5\x04\xf6\xc8\x50\x59\x9f\x4f\x8f\x2b\x72\x72\x16\x2e\x6a\xb3\x24\xbf\xdb\xd2\x3a\xcb\xda\x22\xbb\x64\x6c\x2b\xeb\x0f\xaa\x55\x05\x35\xe4\xfb\xa7\xfb\x1b\xf4\x73\xbc\x6b\x43\xd1\x90\xde\x05\x6e\x44\xd7\xc4\xd5\x8b\x32\x33\xb4\x4b\xb6\x85\x38\x27\xdf\xf1\xc4\x3c\x9d\xfd\x1e\xad\x62\xd2\xf1\xe6\x20\xa1\x31\x60\xf1\xa7\x9a\x28\x94\xb9\x40\xbb\xab\x4e\x9b\x64\x9a\xab\x14\x07\x35\xb1\x41\xbc\x56\x7a\x5b\xdb\xbe\xc3\xb0\x80\xfe\xef\xed\x73\xb6\x7f\x21\x5b\xb3\x2f\xdf\x77\xe7\x84\x79\x9d\xce\xfa\xe0\xf8\x26\x2b\x1a\x7f\x03\x00\x00\xff\xff\xc1\x6f\xdb\x13\xd8\x01\x00\x00" + +func lockedtokensAdminGet_unlocking_bad_accountsCdcBytes() ([]byte, error) { + return bindataRead( + _lockedtokensAdminGet_unlocking_bad_accountsCdc, + "lockedTokens/admin/get_unlocking_bad_accounts.cdc", + ) +} + +func lockedtokensAdminGet_unlocking_bad_accountsCdc() (*asset, error) { + bytes, err := lockedtokensAdminGet_unlocking_bad_accountsCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "lockedTokens/admin/get_unlocking_bad_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x78, 0xe6, 0x4d, 0xc9, 0xc6, 0x4c, 0x38, 0x6b, 0xac, 0x70, 0xbe, 0xab, 0x73, 0x1f, 0xac, 0x4a, 0x17, 0x50, 0xba, 0x88, 0xc7, 0xa8, 0xd1, 0x5e, 0x27, 0xaf, 0x36, 0xf3, 0x78, 0x8b, 0x30, 0x8b}} + return a, nil +} + +var _lockedtokensAdminUnlock_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x91\xcd\x6e\xea\x30\x10\x85\xf7\x79\x8a\xb9\x2c\xee\x4d\xa4\xab\xa8\x8b\xaa\x8b\xa8\x2d\x8a\x80\x6e\xa0\xa5\xe2\xe7\x01\xa6\xce\x04\x2c\x12\x4f\x34\x9e\xa8\x48\x15\xef\x5e\x25\x46\x34\xb0\xed\x6c\xc6\x96\x8f\xed\xef\x9c\xb1\x75\xc3\xa2\xb0\x60\x73\xa0\x62\xc3\x07\x72\x1e\x4a\xe1\x1a\xee\x8e\x8b\xe5\x64\x3e\x9b\x6e\x96\xf3\xd9\x5b\x3e\x9d\xae\x66\xeb\x75\x14\xa9\xa0\xf3\x68\xd4\xb2\x8b\x15\x65\x47\x9a\x1b\xc3\xad\xd3\x0c\xf2\xa2\x10\xf2\xfe\x3f\x14\x54\x29\x66\xb0\x7d\xb1\xc7\x87\xfb\x04\xbe\xa2\x08\x00\xa0\x11\x6a\x50\x28\xc6\xa2\xb6\x2e\x83\xbc\xd5\xfd\xf9\xea\x45\xd2\x55\x45\x0a\xbd\x64\x45\x25\x3c\x85\x65\xfa\xc1\x22\xfc\xf9\xf8\x77\x48\x99\xf6\x2d\xef\xce\x27\x5c\x55\xd4\x33\x3d\xc7\x1d\x7b\x76\x65\x27\x1d\x6c\x6e\xe4\x6b\x65\xc1\x1d\xbd\xa3\xee\x93\x0b\x41\x57\xe3\x31\x34\xe8\xac\x89\x47\x13\x6e\xab\x02\x1c\x2b\x04\x08\x40\x10\x2a\x49\xc8\x19\x02\x65\xd0\x3d\x05\x48\x30\x97\x67\x47\xc9\xb5\x1f\xed\xbe\x7e\x45\x87\x3b\x92\x81\xad\x15\x95\xe9\x4f\x80\x31\x86\xfc\x32\xb8\xca\x35\xf9\x73\x76\x1f\xff\x86\xb0\xf5\x24\xff\x7c\x00\x81\x3a\x90\x0c\x29\x6f\x08\x53\xeb\x8c\x10\x7a\xda\xba\x8a\xcd\x61\x61\x6b\xab\xf1\x79\xac\x7d\x0b\x2c\xa7\xe8\x14\x7d\x07\x00\x00\xff\xff\xd0\xd3\x4e\x0e\x40\x02\x00\x00" func lockedtokensAdminUnlock_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4020,11 +4000,11 @@ func lockedtokensAdminUnlock_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/unlock_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x69, 0x90, 0x59, 0xfe, 0x29, 0x32, 0xe, 0xe7, 0xbe, 0x46, 0xb8, 0xce, 0x1a, 0x34, 0xdd, 0x1f, 0x52, 0x19, 0x81, 0x95, 0x62, 0x32, 0xfe, 0xdc, 0xb7, 0xcf, 0xca, 0xde, 0x73, 0x50, 0xb4, 0x10}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x58, 0xa9, 0x1, 0xbc, 0x31, 0xd2, 0x33, 0xd, 0x5b, 0xb, 0x97, 0x13, 0xe6, 0x85, 0x86, 0x57, 0xa2, 0x99, 0xa6, 0x1f, 0x8c, 0x9f, 0x8b, 0xb5, 0xab, 0xd9, 0x40, 0x1, 0x5d, 0x97, 0x33}} return a, nil } -var _lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x6f\xe3\x36\x10\xbd\xfb\x57\x4c\x73\x48\x65\x20\xb0\x2f\x45\x0f\x46\xb2\x0b\x37\x40\xdb\x00\x29\xb0\xd8\xee\x9e\x8a\x1e\xc6\xe4\xd8\x22\x22\x91\x06\x39\xb2\x13\x04\xfe\xef\xc5\x90\x92\x4d\x7d\xc4\x5d\x5d\x12\xcb\x33\x6f\xbe\xde\xcc\xb3\xa9\xf7\xce\x33\x3c\x3b\xf5\x42\xfa\x9b\x7b\x21\x1b\x60\xeb\x5d\x0d\x37\xf9\xab\x9b\xd9\x6c\xb9\x84\x6f\xa5\x09\xc0\x1e\x6d\x40\xc5\xc6\x59\x68\x02\x05\xe0\x92\xa0\x8a\xb6\xc0\xc9\x1f\x75\x6d\xac\x38\xb0\x83\x40\x1c\x2d\x1a\x2b\x36\x50\x99\xda\x30\x6c\x9d\x87\xba\xa9\xd8\xec\x2b\x02\x54\xca\x35\x96\x83\x38\x18\x0b\x08\xc1\xd8\x5d\x45\x79\xa0\x14\xfc\x6c\x0a\xa8\xb5\xa7\x20\xc1\x9b\x40\x1a\x30\xc0\x0b\xbd\x45\x80\x50\xba\xa6\xd2\xb0\xa1\x2c\xa8\x58\x0c\x1d\x67\xb3\x0c\xbe\x48\x76\x4f\x76\xeb\x56\xf0\xbe\x4e\x36\x2b\xf8\xfe\xbb\x79\xfd\xf5\x97\xd3\x1c\xde\x67\x33\x00\x80\xbd\xa7\x3d\x7a\x2a\x62\x79\x2b\xc0\x86\xcb\xe2\x6f\x76\x1e\x77\x74\x07\x8f\xb8\xc7\x8d\xa9\x0c\x1b\x0a\x73\xb8\x5d\xa7\x80\x67\x5f\x79\x96\x4b\xf8\xde\x25\xb4\x1e\x55\xc2\x25\x32\x94\xa8\x21\xb8\x9a\x20\xc8\x50\xdc\x16\xc8\x7b\xe7\x73\x04\xf4\x04\x81\x9d\x27\x2d\xcd\x62\x99\x88\x36\xb1\x0a\xf4\x6f\x10\x9c\xd4\xfd\x06\x0a\xad\xf4\xc0\xd8\xb0\x27\xc5\xa4\xa1\x42\xa6\x1e\xce\xd3\x36\x76\x28\x9f\xa6\x25\xd2\x41\x66\xe6\x1b\x7b\x19\x0f\x9b\x9a\xc2\x5d\xee\xca\x25\xd9\xe8\x9c\x05\x36\x01\xac\x63\x70\x07\xf2\x47\x6f\x98\xc9\x9e\x3d\x0e\xe8\x61\x83\xba\xad\x38\x4c\x74\x18\x1e\x12\x65\x16\x21\x75\x73\x51\x39\xd4\xf7\x23\xb3\x4f\x85\x10\x73\x05\xcb\xd6\x6c\x99\xc6\x66\xec\xee\xb7\x0b\xfc\xfc\x1c\x57\x9e\xcf\x9f\xe1\xfd\x24\xfc\x18\x81\x5d\xc6\x52\x11\xa7\xf0\x5f\x69\x3b\xca\x64\xe3\xbc\x77\xc7\xfb\xdb\x7c\x19\x16\xf1\xcf\x5a\xec\x1e\x5d\x55\x51\x6c\x42\x97\x5c\xcf\x30\xfb\x30\x30\x6f\x79\xf3\x05\xb9\x1c\x65\xbc\x47\x6b\x54\x71\xf3\x18\x99\x2c\x5d\x4d\x49\x00\x82\xa7\x2d\x79\xb2\x8a\x64\x4a\x32\x81\x98\x2c\xa8\x33\xec\xcd\xfc\x52\x97\x2c\x59\xb7\x00\x6d\xf5\x42\x99\x0b\xd7\x17\xb2\x34\x39\x41\xdb\xf9\xae\xab\x4a\xa8\x27\xf8\x66\x2b\xed\x09\x91\x75\x1b\x52\xd8\x04\x82\x23\x81\x76\xf6\x67\x06\x38\xa2\x65\x60\x37\xf4\xf7\x74\x20\x9f\xb6\x9e\x2c\x1b\xdf\x67\x99\xd9\x82\x5c\x00\x34\x55\x18\x3a\xb2\x83\x5d\x7b\x2e\x8c\xdd\x3a\x5f\x63\xf4\x90\x42\xce\x57\xa1\x5d\x98\x9e\x6b\xca\xb2\x3d\x42\x2d\x11\xa4\xc0\x34\xd0\x1d\x71\xfb\xae\x18\xb4\xa3\xdf\x79\x79\x16\x2a\x5b\xe3\x2b\xc3\xff\xd3\x55\x9a\xfc\xa7\x62\x62\xda\x59\xfc\x2f\xcd\xa6\x32\x2a\xce\x78\xd8\xe6\x8e\x78\xbd\x9c\xbb\x29\x3d\x4c\x96\xb2\xd8\x11\x3f\x4f\x98\x17\xf3\x31\x74\xaf\x23\x89\x7f\xc9\xe7\x2b\x29\xe7\x75\x47\xf3\x16\xb5\x6b\x0f\x76\x3b\x32\x95\x95\x94\x30\x0c\x23\xcf\xe4\xcb\x36\x7e\xd4\x83\xbf\xd0\xe2\x8e\x7c\x1a\xc6\x47\x19\xb5\xbd\x2e\x26\x1b\x95\x51\xe4\x8f\xbe\x9c\x60\x1d\xaf\x68\x14\xac\xe1\x39\x43\xbf\x6b\x6a\xb2\x9c\x9d\xa9\x0f\x91\xe5\x46\x25\xc8\x75\x42\x7c\xc8\xf6\xe4\x9f\x01\x6d\xfe\xfd\xe9\x6a\x8a\x4f\x56\x79\xc2\x40\x63\xd9\xdb\xbc\xa5\xa5\x8d\x21\x3e\x84\x18\x34\x6d\x61\x5a\xbc\xa4\x1d\xcf\x82\x54\x68\xaa\x18\x57\xbd\x94\x27\x58\x90\x25\xf5\xe8\x2c\x1b\xdb\x9c\x0f\x87\xa5\x57\x06\xc3\xe4\xd3\x8a\xb5\xeb\x5e\x39\xb7\xbf\x86\xd2\x9d\x00\xce\xb4\x38\x34\x4a\x11\x69\x11\x59\xab\x41\x3b\x4a\x4a\x20\x62\x72\x0d\x8a\x9d\x08\x54\x8d\xfe\x25\x09\xf8\x06\x3f\x36\x57\x6d\xf2\x93\x06\xa7\xd1\xdb\x53\x9f\x93\xa7\xd1\x81\x6b\xb5\x8f\x5e\x49\x35\xb1\xfc\x1a\x5f\x28\xc8\x59\x2a\xc9\x13\x14\xe7\x22\x3c\xa1\x2a\xa3\x6d\x97\x02\xe0\xc6\x1d\x68\x3e\x44\x34\x0c\x35\xa1\x0d\x51\xbc\xb9\x34\x76\x07\x47\xa1\xde\xd1\x3b\xf9\xd7\x70\x99\xb1\x41\xbe\x95\x9b\x96\x75\x71\x88\x27\xad\x34\x7c\x51\xe4\x0d\x41\xc0\xc3\xa0\xa3\x99\xa8\x8e\x28\x7a\x9d\xc0\xb3\x89\xde\xf4\x75\x4f\xa2\x4d\x29\x70\x16\xf3\x0e\xd8\xfd\xaf\x18\xf7\x54\x76\xc2\xe4\x11\xf7\x67\xcd\xed\xdd\xde\x2e\x11\x13\x42\x43\xf7\xb7\x13\xa9\xfc\xe0\xcf\x80\x09\xec\xbd\xdc\xe5\x50\x16\xd3\xf9\xdc\x01\xf2\x0a\x96\xd1\x48\x5d\x01\x3f\xcd\x4e\xb3\xff\x02\x00\x00\xff\xff\x96\x5e\x9c\xb2\x3e\x0b\x00\x00" +var _lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x4d\x6f\xe3\x46\x0c\xbd\xfb\x57\xb0\x7b\xd8\xda\x40\x10\xf7\x50\xf4\x10\x24\xbb\x70\x93\xb4\x0d\x36\xed\x2e\x92\xec\xa9\xe8\x81\xd6\x50\xd2\xc0\xd2\x8c\x31\x43\xc5\x09\x02\xff\xf7\x82\x33\x92\x3d\xfa\x88\xb1\xba\x24\x96\xc8\xc7\xaf\x47\x3e\x5d\x6f\xad\x63\xb8\xb7\xd9\x86\xd4\x93\xdd\x90\xf1\x90\x3b\x5b\xc3\x2f\x2f\xf7\x5f\xaf\xbf\xdc\xde\x3c\x7d\xfd\x72\xfb\xcf\xea\xe6\xe6\xe1\xf6\xf1\x71\x36\x5b\x2e\xe1\xa9\xd4\x1e\xd8\xa1\xf1\x98\xb1\xb6\x06\x1a\x4f\x1e\xb8\x24\xa8\x02\x08\x70\x44\x41\x55\x6b\x23\x0e\x6c\xc1\x13\x07\x8b\xc6\x88\x0d\x54\xba\xd6\x0c\xb9\x75\x50\x37\x15\xeb\x6d\x45\x80\x59\x66\x1b\xc3\x5e\x1c\xb4\x01\x04\xaf\x4d\x51\x51\x1a\x28\x06\x3f\x98\x02\x2a\xe5\xc8\x4b\xf0\xc6\x93\x02\xf4\xb0\xa1\xd7\x00\xe0\x4b\xdb\x54\x0a\xd6\x94\x04\x15\x8b\xa1\xe3\x6c\x96\xc0\xcf\xa3\xdd\x9d\xc9\xed\x05\xbc\xad\xa2\xcd\x05\x7c\xff\x43\xbf\xfc\xf6\xeb\x7e\x01\x6f\xb3\x19\x00\xc0\xd6\xd1\x16\x1d\xcd\x43\x79\x17\xb0\x6a\xb8\x5c\x45\xdc\x83\x89\x3c\xcb\x25\x7c\xef\xe2\xae\x46\x09\x73\x89\x0c\x25\x2a\xf0\xb6\x26\xf0\x32\x01\x9b\x03\x39\x67\x5d\x8a\x80\x8e\xc0\xb3\x75\xa4\xa4\x27\x2c\x8d\x57\x3a\x24\x8b\xee\x15\xbc\x95\xf2\x5e\x21\x43\x23\xa5\x6a\xe3\xb7\x94\x31\x29\xa8\x90\xa9\x87\x73\x97\x87\x46\xa4\x43\x33\x44\xca\xcb\x68\x5c\x63\x8e\x53\x60\x5d\x93\x3f\x4b\x5d\xb9\x24\x13\x9c\x93\xc0\xda\x83\xb1\x0c\xf6\x99\xdc\xce\x69\x66\x32\x07\x8f\x67\x74\xb0\x46\xd5\x56\xec\x27\x1a\x09\x57\x91\x19\xe7\x95\x45\x75\x39\xfa\xfc\x69\x2e\xec\xbb\x80\xa5\xd4\x8d\x05\x2d\xe3\x54\xb4\x29\x7e\x3f\xc2\x2e\x0e\xf1\xe4\xf9\xfc\x19\xde\xf6\x32\xfe\x11\xd8\x71\x1c\x15\x71\x0c\xfb\x40\xf9\x21\x83\xb5\x75\xce\xee\x2e\x3f\xa6\xe4\x3f\x0f\x7f\x56\xf2\xfd\xda\x56\x15\x85\xa2\xbb\xa4\x7a\x86\xc9\x8f\x81\xf9\x63\x4c\xfd\x1b\x72\x39\xca\x74\x8b\x46\x67\xf3\x0f\xd7\x81\xa0\xd2\xc5\x98\x04\x20\x38\xca\xc9\x91\xc9\x48\xa6\x22\x1d\x0f\x49\x42\x76\x80\xfd\xb0\x38\xd6\x23\xbb\xd3\xf1\xba\xad\x5a\x28\x72\xa4\xf0\xb9\xec\x42\x4a\xc8\x76\x9e\xab\xaa\x12\xaa\x09\xbe\xce\xa5\x2d\x3e\xb0\x6c\x4d\x19\x36\x9e\x60\x47\xa0\xac\xf9\x99\x01\x76\x68\x18\xd8\x0e\xfd\x1d\x3d\x93\x8b\xcb\x4c\x86\xb5\xeb\xb3\x4a\xe7\x20\x8b\x8d\xba\xf2\x43\x47\xb6\x50\xb4\x57\x40\x9b\xdc\xba\x1a\x83\x87\x14\x72\x58\xf6\x76\x41\x7a\xae\x31\xcb\xf6\xb6\xb4\x04\x90\x02\xe3\x20\x0b\xe2\xf6\xdd\x7c\xd0\x8e\x7e\xe7\xe5\x39\x2f\x88\xaf\x71\x8b\x6b\x5d\x69\x7e\x9d\x1a\xfb\x5f\xb6\x52\xe4\xde\x26\xc6\x9c\x04\xde\x7f\x9a\x9f\x36\xf8\xd6\xac\x2b\x9d\x8d\xa7\x1f\x72\x88\xe3\x9e\x2f\x86\xa3\xe9\x48\xda\xab\xb3\x9b\xec\xd5\x64\xf9\x52\xcf\xfd\x84\xf9\x7c\x31\x86\xee\x75\x31\x72\x36\xfa\x3c\x50\x66\x9d\xea\x56\xa2\x45\xed\x5a\x8a\xdd\x3e\x4d\x65\x25\x25\x0c\xc3\xc8\x33\xf9\xb2\x8d\x1f\xa4\xe1\x6f\x34\x58\x90\x8b\x03\x7c\x2f\xa3\x93\x8d\x4a\x68\xf5\x67\x5f\x59\xb0\x0e\x97\x36\x28\xd8\xf0\xe4\xa1\x2b\x9a\x9a\x0c\x27\xa7\xec\x5d\x64\xb9\x63\x11\x72\x15\x11\xaf\x92\xdd\xfa\x77\x40\xb5\xff\x7e\x3a\x99\xe2\x9d\xc9\x1c\xa1\xa7\xb1\x02\xae\x5f\xe3\xa2\x87\x10\xef\x42\x0c\x9a\x76\xae\x5b\xbc\xa8\x2f\xf7\x82\x34\x57\x54\x31\x5e\xf4\x52\x9e\x60\x41\x92\xd4\xb5\x35\xac\x4d\x73\x38\x36\x86\x5e\x18\x34\x93\x8b\x6b\xd9\x9e\x88\xca\xda\xed\x29\x94\xee\x6c\x70\x22\xcb\xbe\xc9\x32\x22\x25\x7a\x6b\x14\x28\x4b\x51\x2d\x44\x70\x4e\x41\xb1\x15\x11\xab\xd1\x6d\xa2\x96\xaf\xf1\x7d\xf3\xac\x4d\x7e\xd2\x60\x3f\x7a\xbb\xef\x73\x72\x3f\x3a\x8a\xad\x3e\xd2\x0b\x65\x4d\x28\xbf\xc6\x0d\x79\x39\x65\x25\x39\x82\xf9\xa1\x08\x47\x98\x95\xc1\xb6\x4b\x01\x70\x6d\x9f\x69\x31\x44\xd4\x0c\x35\xa1\xf1\x41\xe0\xb9\xd4\xa6\x80\x9d\x50\x6f\xe7\xac\xfc\xab\xb9\x4c\xd8\x20\x5f\xe5\x0e\x26\x5d\x1c\xe2\x49\x2b\x35\x1f\x55\x7b\x4d\xe0\xf1\x79\xd0\xd1\x44\x78\x47\x14\x3d\x4d\xe0\xd9\x44\x6f\xa2\x46\x4a\x94\x29\x95\x4e\x62\x9d\x01\xdb\x1f\x16\xec\x56\xfb\xb5\xd9\x5c\x7e\x9c\x80\x5d\x6e\xc3\xf1\x9c\x04\x39\x03\x46\x57\x10\xff\x50\xac\xfd\x6c\x3f\xfb\x3f\x00\x00\xff\xff\xf5\xc0\xcc\x21\xdc\x0a\x00\x00" func lockedtokensAdminUnlock_tokens_for_multiple_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -4040,11 +4020,11 @@ func lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x2d, 0x48, 0xce, 0xc5, 0xd4, 0xe6, 0xfb, 0x53, 0xc1, 0x93, 0x3b, 0xed, 0x3b, 0x3c, 0xa3, 0x70, 0x2d, 0xac, 0x89, 0xe5, 0x3d, 0x8a, 0xd2, 0xa8, 0xe6, 0x77, 0xa5, 0xd9, 0xfb, 0xfc, 0xef}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xa2, 0x43, 0xbc, 0x49, 0x46, 0x92, 0xec, 0x61, 0x1a, 0x24, 0xbd, 0x80, 0x79, 0x40, 0x9e, 0x6d, 0x9f, 0x5e, 0x56, 0xff, 0x85, 0xca, 0x7b, 0x49, 0x86, 0xc4, 0x1b, 0x47, 0x3c, 0xa8, 0xd2}} return a, nil } -var _lockedtokensDelegatorDelegate_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x6b\xdb\x40\x10\xbd\xeb\x57\x4c\x75\x08\x12\x34\xca\xa5\xf4\x60\xec\x86\xa6\x25\xf4\x50\xd2\xd0\x8f\xf4\xbc\x96\x46\x96\xf0\x5a\x23\x76\x47\xb5\x8b\xf1\x7f\x2f\xfb\x21\x79\x57\x26\x34\x50\xaa\xcb\xa2\x9d\x99\x37\xef\xcd\x9b\x6d\x77\x3d\x29\x86\x7b\x49\xfb\xef\xb4\xc5\x0e\x6a\x45\x3b\x48\xa7\xff\x34\x19\x33\x86\x6e\xd3\xae\x25\x46\x59\xe1\xdd\x94\xf9\x99\xca\x2d\x56\xf6\x4e\xfb\xc4\xf0\x2a\x4d\x12\x56\xa2\xd3\xa2\xe4\x96\xba\x4c\xec\x68\xe8\x78\x01\x3f\xee\xdb\xc3\xdb\x37\x39\x1c\x93\x04\x00\x40\x22\x43\x43\xb2\x42\xf5\x15\xeb\x05\x88\x81\x9b\x2c\x44\x29\xec\xf1\xa5\x47\x25\x0c\x8c\x7e\x1d\x13\x2c\x7e\xb6\xdc\x54\x4a\xec\x73\xb8\xba\x2c\xfb\x64\x81\xcf\x8d\x7e\x89\x41\xf2\xb9\xcf\xb3\x48\xd3\x54\x8a\x27\x53\xe1\x00\x7a\x85\xbd\x50\x98\x89\xb2\x74\x4a\x2c\xc6\x1d\x29\x45\xfb\x27\x21\x07\xcc\xe1\xea\xbd\x8b\x19\x75\xe0\x3f\x8d\xb2\x2e\x26\x85\xb0\x02\x5f\x5f\x68\x26\x25\x36\x58\xac\x2d\xc2\xf2\x7f\x28\x7f\x97\x19\x5b\x16\xf0\x5c\xfc\x9b\xa3\xf0\x28\xb8\xc9\x27\xc2\xe6\xbb\xbd\x85\x5e\x74\x6d\x99\xa5\x1f\x68\x90\x15\x74\xc4\xe0\x78\x82\xc2\x1a\x15\x76\x25\x02\x13\x04\x58\x69\x9e\xc4\x9a\xc7\x61\xff\x45\xf2\x4b\x4d\x18\xb5\xdc\x78\x90\x9b\x7a\x8c\xdb\xf0\x8b\xf9\x9b\x32\x60\xbb\xdc\x96\xe1\x59\x50\xea\x30\x4e\x4e\x07\x1e\xb0\x1c\x18\x03\x27\xcd\x06\x69\x16\x5b\x54\x8f\x8a\x0e\xbf\x61\x35\xf3\xd6\xcb\xfa\x88\x12\x37\x82\x49\x65\xc1\x44\x4c\xad\xb4\x2e\xdc\x09\x29\xcc\xf4\x2e\xaa\x37\xc8\xce\x27\xbf\x44\x3e\x31\x44\x69\x6b\x70\xcf\x08\x96\xab\x19\xdc\x31\x89\x06\x10\xf0\x2c\x2a\x47\x08\x1f\xd0\xcd\x4b\x4f\x6f\xd1\x9d\x41\x83\x13\xa0\xd4\x68\xfa\x64\x3e\x09\xae\xe3\x46\xb9\x69\x1d\xf9\x5b\xac\xc7\xc8\x9c\x43\xac\xaf\xc2\x9e\x74\xcb\xde\xc6\xe5\x75\x0c\xb2\xf7\xc6\xcf\xb8\x5d\xb4\xcf\xff\x45\xe7\x4c\xe6\x31\x82\xf2\x0b\xf3\x40\x0c\xd8\xd1\xb0\x69\xdc\x96\x68\xb3\xe7\xb6\xcd\xab\x34\x40\xf0\xab\x72\x4a\xfe\x04\x00\x00\xff\xff\x27\x2b\xab\x74\x59\x05\x00\x00" +var _lockedtokensDelegatorDelegate_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\x4d\x6f\xda\x40\x10\xbd\xfb\x57\x4c\x39\x54\xe6\x10\xa7\x87\xaa\x07\x04\x8d\x48\x80\xb6\x0a\x82\x28\x24\xed\x79\xb1\xc7\x1f\x62\xf1\x58\xbb\xe3\x42\x85\xf8\xef\xd5\x7a\xd7\xc4\xeb\x24\x52\xa5\xfa\xb2\x82\x79\xf3\xde\x9b\x99\x57\xec\x2b\x52\x0c\x0b\x49\x87\x27\xda\x61\x09\xa9\xa2\x3d\x7c\x3a\x2e\x96\xeb\x5f\x4f\xeb\xfb\xf9\x6a\x3a\x9b\x3d\xce\x37\x9b\xa0\x05\xd6\x65\x56\x6c\x25\xfa\xe0\xe7\xd5\xb7\x1f\xb7\xcb\xf9\x5b\x0d\x4b\x8a\x77\x98\x34\x70\xdd\xe2\x97\xeb\xbb\xfb\xf9\xcc\x43\x07\xac\x44\xa9\x45\xcc\x05\x95\xa1\xd8\x53\x5d\xf2\x08\x9e\x17\xc5\xf1\xcb\xe7\x21\x9c\x82\x00\x00\x40\x22\x43\x4e\x32\x41\xf5\x88\xe9\x08\x3e\x76\xa9\xa3\xe6\xf9\xde\x54\x5f\xd0\xbf\x45\x2d\xd9\x82\x2f\x13\x46\x3f\xcd\x9f\x16\x53\x29\xac\x84\xc2\x50\xc4\xb1\x55\x9c\xd6\x9c\x4f\xed\x0f\x23\x0b\xee\xd3\x28\xd3\xe8\x22\x0d\x13\x70\x0d\xd1\x96\x94\xa2\xc3\xf8\x5d\x2b\x5f\x43\x33\xf2\x08\xde\xab\x6f\x98\x94\xc8\xf0\x41\x70\x3e\xbc\xa8\x99\xef\xe6\x06\x2a\x51\x16\x71\x38\xb8\xa3\x5a\x26\x50\x12\x83\x15\x03\x85\x29\x2a\x2c\x63\x04\x26\xe8\x70\x0d\x86\x81\x6f\xb8\x9d\xfe\x0d\xbf\xbd\x6d\xb4\x36\xaf\xb5\xf5\x73\x9d\xb6\xf5\xa6\xfc\xcf\xd6\x4c\x1b\x70\x13\x8d\x46\xfc\xc5\xeb\xc0\x72\x9c\xad\x45\x3c\x62\x5c\x33\x76\x36\x6c\xae\xa5\x59\xec\x50\x3d\x28\x3a\xfe\x81\x49\x6f\xe7\xce\xf9\x0c\x25\x66\x82\x49\x85\x9d\x61\x4d\xaf\x6c\x16\x7c\x2b\xa4\x30\x8b\x79\xd5\x9d\x21\xdb\x13\xb8\xe3\x3a\x60\x97\xa5\x48\xc1\xe6\x0e\xc6\x93\x1e\xdd\x29\xf0\x16\xd0\xf1\x19\x25\xd6\x10\xae\xd0\xee\x4b\x5f\xc2\x6b\xdf\x8e\xc0\x19\x50\x6a\x34\x3a\xa1\x03\xc1\x95\x2f\x34\x34\xd2\xde\xe9\xa2\x6d\x5b\xe9\x7b\xf0\xe7\x4b\xb0\x22\x5d\xb0\x3b\xe3\xf8\xca\x27\x39\x14\x9c\x27\x4a\x1c\x7a\xde\x5e\xc9\x0f\xff\x67\xce\xde\x98\x27\x8f\xca\x05\x66\x45\x0c\x58\x52\x9d\xe5\x36\x25\xda\x44\xb8\x91\xf9\x30\xe8\x30\xb8\xa8\x9c\x83\xbf\x01\x00\x00\xff\xff\x25\x14\xe5\x23\x9e\x04\x00\x00" func lockedtokensDelegatorDelegate_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4060,11 +4040,11 @@ func lockedtokensDelegatorDelegate_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3e, 0xfd, 0xc4, 0x42, 0x2b, 0x91, 0x5b, 0x9a, 0x45, 0x5d, 0x9a, 0x60, 0xe7, 0xda, 0xab, 0x8, 0x8a, 0x76, 0xda, 0xf2, 0xe4, 0xb7, 0x0, 0x52, 0xc0, 0xe5, 0x43, 0xbf, 0xb5, 0xb5, 0x26, 0xd5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0xc7, 0x4, 0xa0, 0xdf, 0xa1, 0xa9, 0xb0, 0xb0, 0x70, 0x98, 0x6, 0x1e, 0xd0, 0x93, 0xe4, 0x97, 0x13, 0x73, 0x7d, 0x6b, 0xde, 0x32, 0x8a, 0x55, 0x33, 0x8f, 0x4, 0xca, 0xfb, 0xd8, 0x5a}} return a, nil } -var _lockedtokensDelegatorDelegate_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xcb\x6a\xeb\x30\x10\xdd\xfb\x2b\x06\x2f\x82\x0d\x17\xaf\x2e\x5d\x84\xa6\xa1\xa5\x84\x2e\x4a\x1b\xd2\xd7\x7a\x62\x8d\x63\x11\x47\x12\xa3\x71\x93\x52\xf2\xef\x25\x96\xed\xd8\x0d\xf5\x46\xd6\xe8\xe8\xbc\x90\xde\x39\xcb\x02\x8f\x36\xdf\x92\x7a\xb5\x5b\x32\x1e\x0a\xb6\x3b\x88\x87\xa3\x38\x6a\x71\x8b\xda\x6c\xf4\xba\xa2\x66\xdc\x02\x47\xb3\x38\x8a\x84\xd1\x78\xcc\x45\x5b\x93\xe0\xce\xd6\x46\xa6\xf0\xb6\xd0\x87\xab\xff\x29\x7c\x47\x00\x00\x15\x09\x18\xab\xe8\x9e\x2a\xda\xa0\x58\x5e\xb2\x3d\x7c\x4d\x47\x2e\xb2\xb0\x79\xba\x80\x45\x0d\x85\x63\x72\xc8\x94\x60\x9e\x07\x05\xac\xa5\x4c\xee\x2c\xb3\xdd\xbf\x63\x55\x53\x0a\x93\xdb\x70\xd6\xa9\x76\xca\xa5\xad\x14\xf1\x8a\x0a\x98\x41\x7b\x3d\xf3\x62\x19\x37\x94\xad\x1b\x82\xeb\x86\x6c\xe4\xa6\x59\x9e\x1d\x31\x9e\x72\xf9\x7f\xe3\x26\xb2\x0f\x2d\xa5\x62\xdc\xa7\x30\xb9\xbc\xf6\xd0\x08\xde\x24\xa7\xba\x7e\x85\x1c\x9c\xbf\x04\x0b\x4b\x94\x32\xed\xfd\x9e\xbe\xf9\x1c\x1c\x1a\x9d\x27\xf1\x00\x0d\xda\x83\xb1\x02\x1e\x3f\x49\x01\x0a\x78\x47\xb9\x2e\x34\x29\x70\x28\x65\x7c\xa6\xe8\x7f\x3c\x55\x45\x76\x59\x3b\xcc\xce\x8d\xb4\xf9\x7b\x40\x12\x68\x8e\xa1\x73\x3a\x50\x5e\x0b\x0d\xea\xfc\x83\x32\x53\x61\x4b\x2b\xda\x23\xab\x2e\x6d\xff\x1a\xc2\xda\x71\x1f\xa3\x9f\x00\x00\x00\xff\xff\xea\xe0\x30\x4d\x85\x02\x00\x00" +var _lockedtokensDelegatorDelegate_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x2f\xa1\x87\xd2\x83\xd4\x8a\x34\x96\x82\xa2\xa2\xf6\x07\x4c\x77\x27\x66\x31\xee\x84\xc9\x58\x53\x8a\xff\xbd\xe8\x9a\x54\x2b\xcd\x65\x32\xec\xe3\x7d\xfb\xde\xba\x6d\xc9\xa2\x30\x61\xb3\x21\xbb\xe2\x0d\xf9\x0a\x32\xe1\x2d\xdc\xd7\x93\xd9\xcb\x78\x94\xae\x66\xe3\xd1\x74\x98\xa6\x8b\xd1\x72\x19\x45\x2a\xe8\x2b\x34\xea\xd8\xc7\xb8\xe5\x9d\xd7\x1e\xbc\xbf\xba\xfa\xf1\xa1\x0b\xdf\x11\x00\x40\x41\x0a\x9e\x2d\xa5\x54\xd0\x1a\x95\x65\x2e\x5c\x7f\xf5\xae\x08\x49\x58\xa6\x37\xb2\xe8\x64\x51\x0a\x95\x28\x14\xa3\x31\x81\x30\xdc\x69\x3e\x0c\x4b\x83\x69\x50\x39\x17\x96\x64\x41\x19\xf4\xe1\xac\x4f\x3e\x58\x84\xf7\x4f\x77\x57\xc8\xd3\x78\x3b\xa9\x9f\xe3\x63\xc2\x3f\x57\xba\x38\x5f\x2a\x0b\xae\x69\x8e\x9a\x77\xa1\xa5\x1d\xbf\xc1\x00\x4a\xf4\xce\xc4\x9d\x0b\x39\xb8\x0a\x3c\x2b\x54\xf8\x49\x16\x50\xa1\x2a\xc9\xb8\xcc\x91\x85\x12\x35\xef\x74\x5b\x8b\xf6\xa7\xa2\x22\x4b\x6e\x5b\x82\xfe\x6f\x9e\x73\x8a\x56\x10\x07\x9b\x43\xa8\x88\x6a\x32\x3b\xa5\x8b\x32\xfe\xb1\x4c\x6c\x58\x69\x41\x7b\x14\xdb\xc4\x6d\x1f\x2f\xcc\xc6\xfb\x10\xfd\x04\x00\x00\xff\xff\xf2\xb4\xba\xeb\x10\x02\x00\x00" func lockedtokensDelegatorDelegate_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4080,11 +4060,11 @@ func lockedtokensDelegatorDelegate_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd4, 0x98, 0x5, 0x2f, 0xf1, 0x93, 0xc8, 0x5b, 0xf1, 0x7e, 0x2d, 0x4e, 0xc0, 0x43, 0xef, 0xdb, 0xcc, 0x0, 0xc1, 0xf8, 0xcc, 0xd9, 0x4, 0x9a, 0xc0, 0x5c, 0x31, 0xaf, 0xb7, 0x3b, 0x43, 0x40}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xb5, 0x9a, 0xc5, 0xf6, 0xa3, 0xb3, 0x51, 0x42, 0xb8, 0x88, 0xa8, 0x28, 0x71, 0x66, 0x3d, 0x34, 0x4, 0x99, 0xf3, 0x94, 0x13, 0xef, 0x85, 0x3f, 0x7f, 0xa0, 0xa3, 0x40, 0x76, 0x94, 0xb}} return a, nil } -var _lockedtokensDelegatorDelegate_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4f\x4b\xeb\x40\x10\xbf\xe7\x53\x0c\x39\x94\x04\x1e\x39\x3d\xde\xa1\xbc\x5a\x14\x29\x1e\x44\x8b\x5a\x3d\x4f\x77\x27\xcd\xd2\x74\x67\xd9\x9d\xd8\x8a\xf4\xbb\x4b\xb3\x69\x4c\x2c\xe6\xb2\xec\xec\x6f\x7e\xff\x88\xd9\x39\xf6\x02\xf7\xac\xb6\xa4\x5f\x78\x4b\x36\x40\xe9\x79\x07\xe9\x70\x94\x26\x1d\x6e\xd1\xd8\x8d\x59\xd7\xd4\x8e\x3b\xe0\x68\x96\x26\x89\x78\xb4\x01\x95\x18\xb6\x19\xee\xb8\xb1\x32\x85\xd5\xc2\x1c\xfe\xfd\xcd\xe1\x33\x01\x00\xa8\x49\xc0\xb2\xa6\x5b\xaa\x69\x83\xc2\x7e\xe9\xf9\xf0\x31\x1d\xb9\x28\xe2\xe5\xe1\x02\x96\xb4\x14\xce\x93\x43\x4f\x19\x2a\x15\x15\xb0\x91\x2a\xbb\x61\xef\x79\xff\x8a\x75\x43\x39\x4c\xae\xe3\xdb\x59\xf5\xac\x5c\x71\xad\xc9\x3f\x51\x09\x33\xe8\xd6\x8b\x20\xec\x71\x43\xc5\xba\x25\xf8\xdf\x92\x8d\xdc\xb4\xc7\xa3\x23\x8f\xa7\x5c\xe1\xcf\xb8\x89\xe2\xcd\x48\xa5\x3d\xee\x73\x98\x5c\xae\xdd\xb5\x82\x57\xd9\xa9\xae\x1f\x21\x07\xef\xcf\xd1\xc2\x12\xa5\xca\x7b\xbf\xa7\x6f\x3e\x07\x87\xd6\xa8\x2c\x1d\xa0\xc1\x04\xb0\x2c\x10\xf0\x9d\x34\xa0\x40\x70\xa4\x4c\x69\x48\x83\x43\xa9\xd2\x3c\xe9\x39\x02\xd5\x65\x71\x59\x37\xcc\xbe\x9b\xe8\x72\xf7\x80\x2c\x3a\x38\x46\x12\x3a\x90\x6a\x84\x06\x35\xfe\x42\x59\xe8\x78\xa5\x95\x0d\x82\x7d\xca\xfe\x2f\x88\xe7\x99\xfb\x98\x7c\x05\x00\x00\xff\xff\xbf\x32\xa6\x32\x7d\x02\x00\x00" +var _lockedtokensDelegatorDelegate_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6a\xc2\x40\x10\xc6\xef\x79\x8a\xc1\x43\x49\x2e\xa1\x87\xd2\x83\xd4\x8a\x34\x96\x82\xa2\xe2\x9f\x07\x98\x6e\x26\x66\x31\xee\x2c\xbb\x63\x9b\x52\x7c\xf7\x62\x56\xd3\x58\xe9\x5e\x86\x61\xbf\xfd\x7e\xf3\xcd\xea\xbd\x65\x27\x30\x65\xb5\xa3\x7c\xcd\x3b\x32\x1e\x0a\xc7\x7b\xb8\xaf\xa7\xf3\x97\xc9\x38\x5b\xcf\x27\xe3\xd9\x28\xcb\x96\xe3\xd5\x2a\x8a\xc4\xa1\xf1\xa8\x44\xb3\x89\x71\xcf\x07\x23\x7d\xd8\xbc\xea\xfa\xf1\x21\x81\xef\x08\x00\xa0\x22\x01\xc3\x39\x65\x54\xd1\x16\x85\xdd\xc2\x71\xfd\xd5\xbf\x22\xa4\xa1\x99\xdd\xc8\xa2\xc6\xc2\x3a\xb2\xe8\x28\x46\xa5\x02\x61\x74\x90\x72\x14\x9a\x0b\xe6\x82\x2a\xb9\xca\xc9\x2d\xa9\x80\x01\x9c\xf5\xe9\x3b\x3b\xc7\x9f\x4f\x77\x57\xc8\xa6\xbc\x35\xea\xe7\xf8\x94\xf0\xcf\x48\x9d\xfb\x95\xb0\xc3\x2d\x2d\x50\xca\x04\x5a\xda\xe9\x0c\x87\x60\xd1\x68\x15\xf7\x3a\x72\xd0\x1e\x0c\x0b\x78\xfc\xa0\x1c\x50\xc0\x5b\x52\xba\xd0\x94\x83\x45\x29\x7b\x49\xd4\x7a\x78\xaa\x8a\xf4\x76\x3b\x30\xf8\xcd\x71\x9e\xbe\x15\xc4\x49\xf3\xfa\x18\x4c\xa8\x26\x75\x10\xea\x2c\xe1\x1f\xcb\x34\x0f\x2d\x6d\x8c\x17\x6c\x63\xb6\x9f\x16\xea\xc5\xfb\x18\xfd\x04\x00\x00\xff\xff\xfe\xc1\x9a\x73\x08\x02\x00\x00" func lockedtokensDelegatorDelegate_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4100,11 +4080,11 @@ func lockedtokensDelegatorDelegate_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0x83, 0x51, 0xb4, 0x43, 0xb4, 0x5a, 0x2, 0xbf, 0x7, 0xab, 0xdf, 0x75, 0x84, 0x56, 0xd, 0x4a, 0xbe, 0x18, 0xa4, 0x1, 0x5e, 0xcc, 0xc5, 0xf0, 0x4, 0xe, 0x42, 0xc8, 0x24, 0xa0, 0x99}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x89, 0xfe, 0xf6, 0x67, 0xf, 0x7b, 0x3, 0xf4, 0x14, 0x99, 0xaa, 0x92, 0xe3, 0xd4, 0x35, 0x90, 0x51, 0x4f, 0x83, 0x36, 0xd6, 0xf9, 0xed, 0x2a, 0x9f, 0x37, 0x1, 0x43, 0x9f, 0xd5, 0x50, 0x8f}} return a, nil } -var _lockedtokensDelegatorGet_delegator_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcd\x4e\xc3\x30\x10\x84\xef\x7e\x8a\x21\x07\x94\x5c\x72\x80\x5b\x05\x54\x15\x3d\x10\xa9\x87\x0a\xc1\x03\x38\xce\x26\x58\x75\xbc\xd1\x7a\x2d\x0e\x88\x77\x47\x4d\xa0\x94\x9f\xbd\x58\x1a\xcd\x7c\xe3\xf1\xe3\xc4\xa2\xd8\xb1\x3b\x50\xf7\xc4\x07\x8a\x09\xbd\xf0\x88\xe2\x5c\x2a\x8c\xb1\xce\x51\x4a\xa5\x0d\xa1\x42\x9f\x23\x46\xeb\x63\x69\x9d\xe3\x1c\x75\x85\x4d\xd7\x09\xa5\x54\xad\xf0\xdc\x44\xbd\xbe\xc2\x9b\x31\x00\x10\x48\x11\x66\xd0\x66\xb1\x36\xb1\xe7\x47\xea\x71\x8b\x81\xf4\x53\xfb\xc2\x54\x73\xe4\x78\xb5\xb3\x93\x6d\x7d\xf0\xea\x29\xd5\x2d\x8b\xf0\xeb\xcd\xe5\xf9\x8f\xea\xf9\x79\xe0\xd0\x91\xdc\x95\xa7\xe0\xf1\x7e\xd8\x76\xbf\xcb\xf7\xb9\x0d\xde\xed\xad\xbe\x9c\x42\xdf\xbd\xeb\x35\x26\x1b\xbd\x2b\x8b\x7b\xce\xa1\x43\x64\xc5\xd2\x0e\x0b\xa1\x9e\x84\xa2\x23\x28\x63\x9a\x31\xf8\x83\x2f\xaa\x65\xb8\x90\x66\x89\xff\x6e\xaf\x07\xd2\x2d\x05\x1a\xac\xb2\x34\xdb\xb2\xba\x30\xef\xe6\x23\x00\x00\xff\xff\x3e\xb8\x32\x69\x88\x01\x00\x00" +var _lockedtokensDelegatorGet_delegator_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x4f\x4f\xc2\x40\x10\xc5\xef\xfb\x29\x9e\x1c\x4c\x7b\x21\x46\x6f\x44\x25\x84\x92\x48\x20\x42\x00\x3f\xc0\x76\x3b\xc5\x0d\xcb\x4e\xb3\x9d\x8d\x1a\xc2\x77\x37\x6d\x15\xf1\x4f\x9c\xcb\x26\xb3\x6f\x7e\xef\xe5\xd9\x7d\xc5\x41\x30\x67\xb3\xa3\x62\xc3\x3b\xf2\x35\xca\xc0\x7b\x5c\xbd\xce\x17\xe3\xd9\x24\xdb\x2c\x66\x93\xc7\x51\x96\xad\x26\xeb\xb5\x52\x55\xcc\x51\x46\x8f\xbd\xb6\x3e\xd1\xc6\x70\xf4\x32\xc0\xa8\x28\x02\xd5\x75\x3a\xc0\xd3\xd4\xcb\xcd\x35\x0e\x4a\x01\x80\x23\x81\x6b\xc9\xa3\x4e\x3a\xf5\x25\xaf\xa8\xc4\x1d\xb6\x24\x1f\xbb\x4f\x4c\xda\x9e\x34\xd3\xdf\x92\x8c\x75\xa5\x73\xeb\xac\xbc\xdd\x5e\x9e\x87\xeb\xb7\xcf\x03\xbb\x82\xc2\xe1\xdb\xc7\xfc\xa7\xd1\xf1\x3e\x39\x21\x9b\xf9\x5f\xbd\x8c\xb9\xb3\x66\xa9\xe5\xf9\x74\x74\x96\x28\xe7\x10\xf8\x25\xf9\xda\x0c\x87\xa8\xb4\xb7\x26\xe9\x8d\x39\xba\x02\x9e\x05\x9d\x08\x1a\x81\x4a\x0a\xe4\x0d\x41\x18\x55\x0b\xc6\x2f\xc3\x5e\xda\x95\x14\x48\x62\xf0\x7f\xf6\xd4\x14\x91\x91\xa3\xad\x16\x0e\xd3\x2c\x49\x2f\xd4\x51\xbd\x07\x00\x00\xff\xff\xe7\xd6\x88\xde\xb2\x01\x00\x00" func lockedtokensDelegatorGet_delegator_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4120,11 +4100,11 @@ func lockedtokensDelegatorGet_delegator_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x12, 0xcf, 0xbd, 0xf4, 0xb4, 0xe2, 0x96, 0x6a, 0xb, 0x7b, 0x4f, 0xdf, 0xfe, 0x86, 0x5a, 0xbc, 0xa7, 0xae, 0x48, 0x8a, 0x9f, 0x27, 0xf1, 0x4c, 0xdb, 0x2a, 0x8c, 0xf4, 0x72, 0xc0, 0x88}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0x54, 0x61, 0x8e, 0x91, 0xdf, 0x10, 0x8d, 0xe7, 0x4, 0xc6, 0x8d, 0xb5, 0x85, 0x3d, 0x1c, 0x19, 0x8f, 0x22, 0xbb, 0xa7, 0xdb, 0xf0, 0x3d, 0x23, 0x29, 0xe6, 0x34, 0x4, 0x4d, 0x68, 0xdb}} return a, nil } -var _lockedtokensDelegatorGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4d\x8b\xdb\x30\x14\xbc\xfb\x57\xbc\xe4\x10\x6c\x58\x9c\x7b\xa8\x0b\x81\x50\x1a\x28\xcb\xb2\xdd\xdb\xb2\x87\x67\xeb\x39\x51\xa3\xe8\x19\x49\x26\x94\x90\xff\x5e\xfc\x11\xc5\x5a\x3b\x25\xad\x2f\x26\x4f\x33\xa3\x91\x66\x62\x79\xac\xd8\x38\xf8\xa6\xf8\xb4\xdd\xbc\x61\xae\xe8\xa7\xc3\x83\xd4\x3b\x28\x0d\x1f\x61\x3e\x5e\x98\x47\x3d\xe7\x07\x17\x07\x12\x6f\x7c\x20\x6d\x7b\xf4\x70\x34\x8f\xa2\xe5\x12\x5e\xc9\xd5\x46\x5b\x40\x0d\x68\x0c\xfe\x06\x2e\x61\x43\x8a\x76\xe8\xd8\x6c\x75\xc9\xc0\xf9\x2f\x2a\x9c\x05\xb7\x47\x07\x6e\x4f\x80\x45\xc1\xb5\x76\x50\xb0\x76\x86\x95\x6d\x64\xa4\x06\xe9\x2c\x68\x36\x47\x54\x1e\x81\x5a\x80\xdd\xa3\x21\x71\x1d\x45\x11\x16\x05\x59\x1b\xa3\x52\x09\x94\xb5\x86\x23\x4a\x1d\xf7\xab\x2b\x58\x0b\x61\xc8\xda\x64\x05\xef\xe3\x93\xa5\x81\xb1\x0f\x38\x47\x11\x00\x80\x22\x07\x62\xb8\xb2\x6e\x0e\xf2\x90\x42\x06\xef\x1f\x37\x91\xaa\xce\xd7\xbd\xf3\x0c\x76\xe4\xfa\x1f\x57\x77\xc9\x0d\xc9\x95\x93\xac\x51\x79\xb9\x57\x2a\x21\x1b\x08\xb4\xc8\xe6\x49\x0b\xac\x30\x97\x4a\x3a\x49\x36\xcd\xd9\x18\x3e\x7d\x59\x9c\x27\xac\x3d\xb3\x20\xaf\xf7\x52\xe7\x4a\x16\x97\xaf\xb1\x17\x6a\x9e\x65\xd5\x8e\x97\xa5\xe2\x53\x4f\xf3\x0c\x0f\xec\x6d\xca\x32\xbc\x98\xce\xe1\xa4\xf1\xb3\xe7\x36\x0c\xd9\x84\x9e\x4d\x34\x2e\xbc\xbc\xd0\x99\x66\x41\xdb\xcd\x2a\xd8\x2e\xed\x86\x4f\x01\xf0\x16\xd4\x67\xb4\x14\x83\x23\x8c\xe1\xd7\x5c\x53\xac\x2a\xd2\x22\x6e\x6c\x76\xb8\xcb\x38\x97\xae\xe7\x7d\x16\x0d\xf5\x1f\xf3\x19\xfe\x4f\xd2\xf6\xf5\x9d\x95\x20\xf3\x29\x8f\x00\x36\xda\xb3\xcb\xf0\x05\xdd\xfe\x4e\x36\x6a\xda\xe5\x5f\x0f\x11\x66\xd5\xdd\x30\x64\x93\x52\xe9\x8e\x9c\x8f\xec\xb9\x45\xc6\x49\x40\x1f\x84\xf1\x88\x46\xcb\xf7\x02\xb2\xbc\x6e\x3f\xcb\x40\x4b\x05\x8b\x45\x20\xd8\x4f\xcf\xc1\x8d\xfd\x77\xc1\x86\x25\xeb\xde\xb3\xa7\x11\x60\xba\x5c\xdb\xcd\x2c\x40\x26\x77\x0a\x79\xbf\x61\x5d\xcb\x06\x5d\x33\xed\x57\x73\x82\x1b\x5d\xa2\x3f\x01\x00\x00\xff\xff\xc7\x86\x6b\x79\xb2\x05\x00\x00" +var _lockedtokensDelegatorGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4d\x8f\x9b\x30\x10\xbd\xf3\x2b\x66\x2f\x51\x90\x56\xa4\xe7\xa8\x54\xa2\x81\xaa\x68\xa3\xec\x2a\xe1\x52\xad\xf6\x60\xb0\x21\x6e\x1c\x0f\x32\x46\xe9\x0a\xe5\xbf\x57\x7c\x06\x27\xa4\x8a\xca\x05\x65\xfc\xde\xf8\xcd\xbc\x17\xf8\x31\x47\xa5\xe1\x87\xc0\x53\xe8\x47\x24\x16\x6c\xa7\xc9\x81\xcb\x0c\x52\x85\x47\xf8\xf2\x27\xf4\x83\x4d\x14\x46\xbf\x22\xef\xfb\x3a\xf0\x7c\x7f\x1b\xec\x76\x56\xc7\x5a\x63\x72\x60\x34\xc2\x03\x93\x45\x8f\x5f\xbf\xae\x5e\x02\x3f\x7a\x7d\x09\x36\x3d\xda\x5a\x2c\x60\xcb\x74\xa9\x64\x01\x44\x02\x51\x8a\x7c\x02\xa6\xe0\x33\xc1\x32\xa2\x51\x85\x32\x45\xc0\xf8\x37\x4b\x74\x01\x7a\x4f\x34\xe8\x3d\x03\x92\x24\x58\x4a\x0d\x09\x4a\xad\x50\x14\x75\x1b\x2e\x81\xeb\x02\x24\xaa\x23\x11\x03\x82\x48\x0a\xc5\x9e\x28\x46\xfb\x92\x65\xe5\x65\x0c\x69\x29\xe1\x48\xb8\x9c\x77\xd5\x25\x78\x94\x2a\x56\x14\xf6\x12\xde\x6f\x47\x76\x0c\x41\x1f\x50\x59\x16\x00\x80\x60\x1a\xe8\xf8\xc4\xab\x07\x78\xa8\x83\x0b\xef\x1f\x97\x26\x79\x19\x7b\x9d\x62\x17\x32\xa6\xbb\x1f\xbd\x3a\x7b\xe2\xba\x15\xc9\xc1\x1d\x11\x1b\x44\xfd\x38\x19\xd3\x2b\x92\x93\x98\x0b\xae\x3f\xbf\xce\xaa\x09\x31\x1b\xa4\x6c\x10\xf4\x56\xc6\x82\x27\xe7\x6f\xf3\xa1\x45\xfd\x2c\xf2\xa6\xbc\x48\x05\x9e\x3a\xda\xc0\x18\x80\x9d\x30\x9e\x9a\xda\xb6\x2c\x05\xd7\x90\xea\xc4\xa8\x14\x9e\xe6\x36\x54\x03\xb9\xa6\xf0\xda\x5f\x77\x22\x64\xe6\xbe\x4c\x69\x12\x29\x0b\xfd\xa5\x71\x9f\xd3\x16\x9f\x0d\xe0\xc5\x9b\x6b\x34\xa7\xa3\x19\x6e\xe1\xbd\x95\x0e\xc9\x73\x26\xe9\xbc\x96\xd9\xe2\xce\x17\x2b\x44\x93\xf1\x6e\xfd\x35\xe5\x61\x4b\xc6\xff\x0e\xa7\x79\xfd\x44\x41\x99\xaa\x8c\x83\xf5\x75\xff\x6b\x8b\xfe\x8d\x6e\x6d\x7d\x23\x7a\x7f\xc7\xae\x1b\xfd\xad\x6d\x53\x63\xdd\xb3\xaf\x5d\xfa\x14\xa9\x5e\x72\xc6\xf4\xe0\xe2\xa6\x41\xce\x6d\x83\x3e\xf2\xe7\x91\x1e\x0d\x7f\x68\xc0\xd3\xfe\xfa\x27\x17\x24\x17\x30\x9b\x19\x0d\xbb\x6a\x65\xac\xec\xbf\x33\x37\xce\x5d\xfb\x7e\x7a\xbe\x01\x4c\xe7\x2d\xf4\x9f\x0c\xa4\x7d\x27\xa3\xf7\x43\xd7\x06\x6f\x14\x3f\xd5\x7c\x33\x27\xb8\xd6\xd9\xfa\x1b\x00\x00\xff\xff\xea\xbb\x2d\x02\xb8\x05\x00\x00" func lockedtokensDelegatorGet_delegator_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -4140,11 +4120,11 @@ func lockedtokensDelegatorGet_delegator_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa9, 0x5c, 0xc3, 0x5a, 0x3c, 0x1a, 0xd2, 0x9d, 0x8d, 0xd9, 0xb6, 0x51, 0x45, 0x55, 0x69, 0xac, 0x7b, 0x6b, 0x27, 0x53, 0x9f, 0xd8, 0xc7, 0xf1, 0x19, 0xf9, 0xa9, 0x40, 0x26, 0x69, 0xf2, 0x3f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x16, 0x55, 0xa6, 0x48, 0x7d, 0xe9, 0x3d, 0xc, 0xa1, 0x5e, 0xbd, 0x50, 0x98, 0x4f, 0x5f, 0x92, 0x42, 0xcd, 0x4d, 0x9a, 0x25, 0xd1, 0x1, 0xbf, 0xe3, 0xc, 0x5f, 0x64, 0xb1, 0x0, 0x82, 0xb4}} return a, nil } -var _lockedtokensDelegatorGet_delegator_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcf\x4e\xf3\x30\x10\xc4\xef\x7e\x8a\xf9\x72\xf8\x94\x5c\xf2\x00\x15\x50\x55\xf4\x40\xa5\x0a\x55\xc0\x0b\x38\xf6\x26\x58\x75\xbc\xd1\x7a\x2d\x0e\x88\x77\x47\x4d\xa0\x94\x3f\x7b\xb1\x34\x9a\xf9\x8d\x27\x8c\x13\x8b\x62\xcf\xee\x48\xfe\x89\x8f\x94\x32\x7a\xe1\x11\xd5\xa5\x54\x19\x63\x9d\xa3\x9c\x6b\x1b\x63\x83\xbe\x24\x8c\x36\xa4\xda\x3a\xc7\x25\xe9\x0a\x1b\xef\x85\x72\x6e\x56\x78\x54\x09\x69\xc0\xab\x31\x00\x10\x49\x11\x67\xd0\x66\xb1\xee\x52\xcf\x0f\xd4\xe3\x1a\x03\xe9\x87\xf6\x89\x69\xe6\xc8\xe9\x5a\x67\x27\xdb\x85\x18\x34\x50\x6e\x3b\x16\xe1\x97\xab\xff\x97\x3f\x6a\xe7\xe7\x8e\xa3\x27\xb9\xa9\xcf\xc1\xd3\x7d\xb3\xed\x7f\x96\x1f\x4a\x17\x83\x3b\x58\x7d\x3e\x87\xbe\x7a\xd7\x6b\x4c\x36\x05\x57\x57\xb7\x5c\xa2\x47\x62\xc5\xd2\x0e\x0b\xa1\x9e\x84\x92\x23\x28\x63\x9a\x31\xf8\x85\xaf\x9a\x65\xb8\x90\x16\x49\x7f\x6e\x6f\x07\xd2\x2d\x45\x1a\xac\xb2\xdc\xb3\xa7\xdd\xb6\x6e\xfe\x99\x37\xf3\x1e\x00\x00\xff\xff\x2b\x7f\x31\x90\x8c\x01\x00\x00" +var _lockedtokensDelegatorGet_delegator_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x4f\x6b\xc2\x40\x10\xc5\xef\xfb\x29\xa6\x1e\x4a\x72\x91\x9e\xa5\xad\x88\x11\x2a\x8a\x8a\xf1\x0b\x6c\x76\x27\xe9\xe2\x66\x27\x4c\x66\x69\x8b\xf8\xdd\x4b\x92\xd6\xda\x3f\x74\x2e\x0b\xb3\x6f\x7e\xef\xf1\x5c\xdd\x10\x0b\xac\xc9\x1c\xd1\x1e\xe8\x88\xa1\x85\x92\xa9\x86\xbb\xd7\xf5\x76\xbe\x5a\x64\x87\xed\x6a\xb1\x99\x65\xd9\x7e\x91\xe7\x4a\x35\xb1\x80\x32\x06\xa8\xb5\x0b\x89\x36\x86\x62\x90\x09\xcc\xac\x65\x6c\xdb\x74\x02\xb9\xb0\x0b\x15\x9c\x94\x02\x00\xf0\x28\xe0\x7b\xf2\x6c\x90\x2e\x43\x49\x7b\x2c\xe1\x01\x2a\x94\x8f\xdd\x27\x26\xed\x4f\xba\x19\x57\x28\x73\xdd\xe8\xc2\x79\x27\x6f\xf7\xb7\xd7\xe1\xc6\xfd\xf3\x44\xde\x22\x9f\xbe\x7d\xac\x7f\x1a\x9d\x1f\x93\x0b\xb2\x9b\xff\xd5\xbb\x58\x78\x67\x76\x5a\x9e\x2f\x47\x57\x89\x0a\x62\xa6\x97\xe4\x6b\x33\x9d\x42\xa3\x83\x33\xc9\x68\x4e\xd1\x5b\x08\x24\x30\x88\x40\x03\x63\x89\x8c\xc1\x20\x08\x41\xd3\x83\xe1\x97\xe1\x28\x1d\x4a\x62\x94\xc8\xe1\xcf\x9e\xba\x22\x32\xf4\x58\x69\x21\xde\x90\xc5\x65\x96\xa4\x37\xea\xac\xde\x03\x00\x00\xff\xff\xa8\xa0\x14\xf5\xb6\x01\x00\x00" func lockedtokensDelegatorGet_delegator_node_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4160,11 +4140,11 @@ func lockedtokensDelegatorGet_delegator_node_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_node_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xee, 0x61, 0xcb, 0xb1, 0x59, 0xce, 0x22, 0xfb, 0x43, 0x23, 0xf2, 0x1, 0xc5, 0x22, 0xa9, 0x53, 0xc9, 0x52, 0xbb, 0x83, 0x3c, 0x7d, 0xdb, 0xcd, 0xfa, 0x13, 0x12, 0xf1, 0x57, 0xe7, 0x31, 0xdc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe4, 0xa6, 0x64, 0xd9, 0x19, 0xbf, 0x3b, 0xbb, 0x52, 0xfd, 0xfa, 0x51, 0x34, 0x21, 0xa9, 0xb0, 0xa, 0x66, 0x33, 0xcf, 0xce, 0x7c, 0x53, 0xe7, 0xe0, 0xc4, 0xe5, 0x27, 0x67, 0x1c, 0xae, 0x8f}} return a, nil } -var _lockedtokensDelegatorRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x54\x41\x6f\xdb\x3c\x0c\xbd\xfb\x57\xf0\xf3\xa1\xb0\x81\xd6\xbd\x7c\xd8\x21\x68\x56\xac\x0b\x8a\x15\xd8\xb2\xa2\xe9\xba\xb3\x62\xd1\xb6\x10\x59\xf2\x24\xba\xc9\x10\xe4\xbf\x0f\xb2\x14\xc7\x4e\x96\x6d\x97\x9d\xe6\x4b\x51\x91\x7c\x7c\xef\x91\x8c\xa8\x1b\x6d\x08\xee\xa5\x5e\x3f\xeb\x15\x2a\x28\x8c\xae\x21\xee\xff\x8f\xa3\x90\xf1\x51\xe7\x2b\xe4\xdd\x9b\x0d\x49\xc3\xa7\x3e\xcf\x55\x3e\xcc\x9e\xd9\x52\xe2\x82\xd8\x4a\xa8\x72\x00\x39\x0e\x1c\x6a\x5a\x55\x8a\xa5\xc4\x11\x83\xe1\x5b\x1c\x45\x64\x98\xb2\x2c\x27\xa1\x55\x22\xf8\x04\x16\x64\x84\x2a\x2f\x81\xd5\xba\x55\x34\x81\x2f\xf7\x62\xf3\xe6\xff\x14\xb6\x51\x04\x00\x20\x91\xa0\xd2\x92\xa3\x79\xc2\x62\x02\xac\xa5\x2a\x19\xf2\xcd\xba\x3f\x9f\x1b\x34\xcc\x41\xda\xcb\x31\x89\xec\xab\xa0\x8a\x1b\xb6\x4e\xe1\xe2\xb4\xec\x43\x07\x7c\x68\xf4\xca\x5a\x49\x87\x3e\x67\x91\x7a\x57\xb3\x17\x57\xe1\x01\x1a\x83\x0d\x33\x98\xb0\x3c\xf7\x4a\x3a\x8c\x3b\x6d\x8c\x5e\xbf\x30\xd9\x62\x0a\x17\xef\x7c\xcc\xa9\x83\xf0\x59\x94\x45\xd6\x2b\x84\x29\x84\xfa\xcc\x92\x36\xac\xc4\x6c\xd9\x21\xdc\xfc\x0d\xe5\x6f\x13\x37\xa3\x09\x9c\x8b\x2f\x3c\x85\x47\x46\x55\xda\x13\x76\xdf\xed\x2d\x34\x4c\x89\x3c\x89\x07\xd9\x20\x2c\x28\x4d\x60\xd9\x2b\x72\x60\x04\xb6\xc1\x5c\x14\x02\x39\x34\x8c\xaa\x38\x8d\xc6\xa2\xf7\x6e\xff\x46\xf3\x9f\x4e\x61\x2f\xe6\x3a\x80\x5c\x17\xfb\x78\x17\x3e\x27\xe0\xbd\x6e\x25\xef\x78\xfb\xa6\xe0\xca\x80\xba\x0d\xee\x18\x82\xc1\x02\x0d\xaa\x1c\x63\x8f\xb1\xf3\x3a\x70\x83\x79\x4b\x38\x18\xa5\x5b\x21\xd9\x59\x79\xc7\x24\x53\x39\xc2\xf4\x68\xbc\x59\x89\xe4\xcd\x0e\x9b\x10\x12\x93\x81\x37\xa2\x08\xb7\x00\x37\xd3\x23\xb8\x6d\x34\x12\x71\x84\x9d\x1b\x64\x84\x73\xcd\x71\x86\x12\x4b\x46\xda\x24\x4a\x73\x7c\x98\x4d\x40\xf0\x74\x5c\xeb\xb8\x5a\x62\x2b\x34\x8f\x46\x6f\xbe\x9f\x32\xf5\x6e\x1c\x90\x8e\xea\x07\xb5\x19\xf7\x49\x38\x47\xef\xb7\x4d\xf6\xc7\x1c\x84\x5c\xfd\xe4\xd7\xc4\x59\xd1\xa3\x7f\x12\x4a\xd4\x6d\xed\x42\xf8\x84\xdf\x5a\x61\xb0\x46\x45\x49\x3a\xe8\xba\x03\x94\x16\x9d\x3d\x49\xd2\xe3\x8e\xfc\x49\x9d\x63\xa3\xd5\xca\x96\xfb\xc8\xaf\xad\xe3\xd8\x68\x2b\x28\x6c\xd0\xcd\xd5\x18\x64\x1d\x76\xee\x54\xd6\xb8\xfd\xb1\x45\xff\xe2\x78\xb6\x23\x1a\xe1\xc6\xe6\x9a\x00\x95\x6e\xcb\xca\x1f\x96\x05\xd2\x9e\xe2\x7f\xf1\xe1\x2e\x77\xe1\xba\x76\xd1\x8f\x00\x00\x00\xff\xff\xff\xca\xcc\xa6\xcd\x06\x00\x00" +var _lockedtokensDelegatorRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x53\xc1\x6e\x9b\x40\x10\xbd\xf3\x15\x53\x1f\x2a\x90\x1a\xd2\x43\xd5\x83\x95\x34\x72\x82\xa3\x5a\x71\x9d\x28\xa6\xad\x7a\xdc\xb0\x03\xac\x0c\xbb\x74\x77\x88\x5d\x45\xfe\xf7\x6a\x59\x70\x80\xd8\xfd\x81\xee\xc5\x32\xf3\xe6\xcd\x9b\x37\x33\xa2\xac\x94\x26\xb8\x2d\xd4\x36\x56\x1b\x94\x90\x6a\x55\xc2\xc7\xdd\xed\xf2\xfe\x67\x7c\x7f\x37\x5f\xcd\xa2\xe8\x71\xbe\x5e\x7b\x2d\x70\xa9\x92\x0d\xf2\x06\x6a\x3a\xec\xf2\xfe\xe6\x6e\x1e\x1d\x43\x5b\xda\x45\x14\xb3\xa7\x02\xd7\xc4\x36\x42\x66\x5d\xce\x22\x9a\xaf\xe2\x45\xfc\x2b\x9e\x5d\x2f\xe7\x5d\x96\x47\x9a\x49\xc3\x12\x12\x4a\xfa\x82\x4f\x61\x4d\x5a\xc8\xec\x03\xb0\x52\xd5\x92\xa6\xf0\xfd\x56\xec\x3e\x7f\x0a\xe0\xc5\xf3\x00\x00\x0a\x24\xc8\x55\xc1\x51\x3f\x62\x3a\x85\xf7\x7d\x71\x61\xf3\xf3\xb5\x89\xbe\xa2\x9f\x59\x5d\x90\x03\x1f\x5a\x0e\x7f\xd8\x8f\x0e\x53\x69\xac\x98\x46\x9f\x25\x89\xab\x38\xab\x29\x9f\xb9\x3f\xb6\x2c\xb4\xcf\x60\x91\x86\x87\xd2\x70\x09\x6d\x42\xf8\xa4\xb4\x56\xdb\x8b\x93\x52\xbe\xf8\xd6\x80\x29\x9c\x8a\xaf\x49\x69\x96\xe1\x03\xa3\x3c\x80\x43\x39\xfb\xae\xae\xa0\x62\x52\x24\xfe\xa4\x07\x07\x61\x40\x2a\x02\xc3\x9e\x91\x03\x23\x30\x15\x26\x22\x15\xc8\xa1\x62\x94\x4f\x02\x6f\x28\xb9\xeb\xff\x88\xe2\x91\x1f\x9d\xd0\x73\xe3\x14\x9d\xa7\x5d\xbc\x09\x07\x27\xb4\xdd\xa8\xba\xe0\x8d\x24\xc7\x0b\x36\x0d\xa8\x59\xad\xa6\x38\x68\x4c\x51\xa3\x4c\x70\xe2\x38\xf6\x4e\x22\xee\x30\xa9\x09\x7b\x1e\xdb\x79\x15\x8d\x4d\xd7\xac\x60\x32\x41\xb8\x1c\xf9\x1e\x66\x48\xce\xc8\x76\x44\x2d\xd0\xef\xb5\x2d\xd2\x76\x7b\xe0\xe2\x72\x44\xf7\xe2\x0d\x9a\x18\x71\x27\x1a\x19\xe1\x4a\x71\x8c\xb0\xc0\x8c\x91\xd2\xbe\x54\x1c\x17\xd1\x14\x04\x0f\x86\xb9\x56\xab\x21\xb6\x41\xfd\xa0\xd5\xee\xcf\x5b\xa5\xce\x8d\x57\xa6\x51\x7e\x2f\x37\xe4\x0e\x84\x2b\x74\x7e\x1b\xbf\x5b\xff\xb6\x91\xb3\x23\x77\x65\xad\x38\xb0\x7f\x13\x52\x94\x75\x69\x43\xf8\x88\xbf\x6b\xa1\xb1\x44\x49\x7e\xd0\xab\xba\x07\x2c\x0c\x5a\x7b\x7c\xff\xc0\x3b\xf0\x27\xb0\x8e\x0d\xb6\x26\x7c\xea\x22\xff\xb6\x8e\x63\xa5\x8c\xa0\x76\x83\x2e\xce\x86\x24\x5b\x41\x39\xd7\x6c\xfb\xb6\xad\x61\xf9\xb1\x45\xff\xe3\x78\x5e\x06\x32\xda\x1b\x5b\x29\x02\x94\xaa\xce\x72\x77\x58\x06\x48\x39\x89\xef\x26\xaf\x77\xb9\x6f\xaf\x6b\xef\xfd\x0d\x00\x00\xff\xff\xa4\x8b\xdc\xe3\xe4\x05\x00\x00" func lockedtokensDelegatorRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -4180,11 +4160,11 @@ func lockedtokensDelegatorRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0xbb, 0xe3, 0x9f, 0x58, 0x2d, 0xa7, 0x68, 0x5e, 0x3e, 0x8b, 0x4a, 0xbe, 0x59, 0xab, 0xc6, 0xae, 0x8e, 0xfe, 0x37, 0xc, 0xdc, 0x3a, 0xc5, 0xb2, 0x4d, 0x34, 0x53, 0x6e, 0xef, 0x38, 0x69}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x91, 0x9, 0xb6, 0x65, 0x81, 0x2d, 0x4b, 0x98, 0x9a, 0x49, 0x39, 0xf6, 0x73, 0xe4, 0x73, 0x75, 0xe4, 0x4e, 0x78, 0xa9, 0xe, 0x69, 0x8d, 0x9d, 0x36, 0x7d, 0xc4, 0x4, 0xad, 0xdb, 0xb5, 0xe5}} return a, nil } -var _lockedtokensDelegatorRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xc1\x4e\xab\x50\x10\xdd\xf3\x15\x13\x16\x0d\x24\x2f\xac\x5e\xde\xa2\x79\xb5\xd1\x98\xc6\x85\xd1\x46\xad\xae\xa7\x30\xc0\x4d\xe9\x1d\x9c\x3b\xd8\x1a\xd3\x7f\x37\xe5\x52\x0a\x36\xb2\x19\x98\x39\x73\xce\x99\x13\xcc\xb6\x66\x51\xb8\xe7\x74\x43\xd9\x0b\x6f\xc8\x3a\xc8\x85\xb7\x10\x0e\x5b\x61\xd0\xe1\x16\x8d\x2d\xcc\xba\xa2\xb6\xdd\x01\x47\xbd\x30\x08\x54\xd0\x3a\x4c\xd5\xb0\x8d\x70\xcb\x8d\xd5\x29\xac\x16\x66\xff\xef\x6f\x0c\x5f\x01\x00\x40\x45\x0a\x96\x33\xba\xa5\x8a\x0a\x54\x96\xa5\xf0\xfe\x73\x3a\x72\x91\xf8\x8f\x87\x0b\x58\xd0\x52\xd4\x42\x35\x0a\x45\x98\xa6\x5e\x01\x1b\x2d\xa3\x1b\x16\xe1\xdd\x2b\x56\x0d\xc5\x30\xb9\xf6\xb3\x93\xea\x49\xb9\xe4\x2a\x23\x79\xa2\x1c\x66\xd0\xad\x27\x4e\x59\xb0\xa0\x64\xdd\x12\xfc\x6f\xc9\x46\x6e\xda\xf2\x58\x93\xe0\xf1\x2e\xf7\x67\x9c\x44\xf2\x66\xb4\xcc\x04\x77\x31\x4c\x2e\xd7\xee\x5a\xc1\xab\xe8\x18\xd7\x8f\x23\x07\xf3\x67\x6f\x61\x89\x5a\xc6\xbd\xdf\xe3\x33\x9f\x43\x8d\xd6\xa4\x51\x38\x40\x83\x71\x60\x59\xc1\xe1\x07\x65\x80\x0a\xae\xa6\xd4\xe4\x86\x32\xa8\x51\xcb\xf0\x4c\xd1\xbf\x38\xaa\xf2\xe4\x32\x76\x98\x9d\x13\xe9\xee\xef\x01\x91\xa7\x39\xf8\xcc\x69\x4f\x69\xa3\x34\x88\xf3\x17\xca\x44\xe8\xbd\x21\xa7\x2b\xeb\x14\x37\xc6\x16\xfd\x7f\xe0\xeb\x89\xf5\x10\x7c\x07\x00\x00\xff\xff\x6f\x65\xa9\x7e\x7f\x02\x00\x00" +var _lockedtokensDelegatorRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xdf\x6a\xf2\x40\x10\xc5\xef\xf3\x14\x83\x17\x1f\xf1\x26\x7c\x17\xa5\x17\x52\x2b\xd2\x58\x0a\x8a\x8a\x7f\x1e\x60\xba\x99\x98\xc5\xb8\x93\xce\x4e\xda\x94\xe2\xbb\x17\x5d\x4d\xb5\xd2\xdc\x4c\x86\x3d\x9c\xdf\x9e\xb3\x76\x57\xb1\x28\x4c\xd8\x6c\x29\x5b\xf1\x96\x9c\x87\x5c\x78\x07\xff\x9b\xc9\xec\x69\x3c\x4a\x57\xb3\xf1\x68\x3a\x4c\xd3\xc5\x68\xb9\x8c\x22\x15\x74\x1e\x8d\x5a\x76\x31\xee\xb8\x76\xda\x83\xf5\xb3\x6d\xee\xef\xba\xf0\x15\x01\x00\x94\xa4\xe0\x38\xa3\x94\x4a\xda\xa0\xb2\xcc\x85\x9b\xcf\xde\x15\x21\x09\xcb\xf4\x46\x16\x1d\x2d\x2a\xa1\x0a\x85\x62\x34\x26\x10\x86\xb5\x16\xc3\xb0\x9c\x31\x67\x54\xc1\x65\x46\xb2\xa0\x1c\xfa\x70\xd2\x27\xaf\x2c\xc2\x1f\x0f\xff\xae\x90\xc7\xf1\x72\x54\x3f\xc6\x87\x84\xbf\xae\x74\x71\xbe\x54\x16\xdc\xd0\x1c\xb5\xe8\x42\x4b\x3b\x7c\x83\x01\x54\xe8\xac\x89\x3b\x17\x72\xb0\x1e\x1c\x2b\x78\x7c\xa7\x0c\x50\xc1\x57\x64\x6c\x6e\x29\x83\x0a\xb5\xe8\x74\x5b\x8b\xf6\xc7\x53\x99\x27\xb7\x2d\x41\xff\x27\xcf\x29\x45\x2b\x88\x83\xcd\x3e\x54\x44\x0d\x99\x5a\xe9\xa2\x8c\x3f\x2c\x13\xa1\xb7\x9a\xbc\xae\x9d\x57\xdc\x5a\xb7\x69\x9f\x2d\xcc\xb3\xeb\x3e\xfa\x0e\x00\x00\xff\xff\xb1\xf9\x7f\xb3\x0a\x02\x00\x00" func lockedtokensDelegatorRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -4200,11 +4180,11 @@ func lockedtokensDelegatorRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0x38, 0x26, 0x65, 0xbe, 0x12, 0x28, 0x9a, 0x64, 0x62, 0xf9, 0x85, 0x12, 0x94, 0xe3, 0xcb, 0x8c, 0xba, 0x20, 0x9b, 0x44, 0xed, 0x73, 0x7c, 0x4b, 0xa0, 0x91, 0x6c, 0x85, 0x78, 0x4d, 0x5b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x54, 0x4a, 0xf3, 0x42, 0x72, 0x6b, 0xbf, 0x51, 0x4d, 0x3a, 0xe6, 0x9b, 0xce, 0x42, 0xbc, 0x7, 0x8b, 0xa6, 0x15, 0x6a, 0xda, 0xb7, 0x66, 0x6b, 0xa8, 0xbd, 0x2e, 0xf1, 0x0, 0x96, 0x7, 0x4}} return a, nil } -var _lockedtokensDelegatorWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xcf\x6e\xa3\x30\x10\xc6\xef\x3c\xc5\x88\x43\x04\xd2\xae\x73\x59\xed\x21\x4a\x36\xda\x3f\x8a\xf6\x50\xa9\x51\xda\xa6\x67\x07\x86\x80\xe2\x78\xd0\x60\x42\xaa\x2a\xef\x5e\x81\x0d\x01\xda\x5c\x2a\x95\x8b\xc5\xcc\xf8\xf3\xef\x9b\x99\xec\x98\x13\x1b\xb8\xa3\xe8\x80\xf1\x23\x1d\x50\x17\x90\x30\x1d\xc1\xef\x87\x7c\xcf\xd5\xad\x14\x55\x4d\xc8\x15\x75\xff\xd7\x8a\x52\xef\xb3\x9d\xc2\x41\x55\x3f\xe6\x7b\x9e\x61\xa9\x0b\x19\x99\x8c\x74\x20\x8f\x54\x6a\x33\x83\xa7\x55\x76\xfe\xf9\x23\x84\x57\xcf\x03\x00\x50\x68\x20\x25\x15\x23\x6f\x30\x99\x81\x2c\x4d\x1a\xf4\x89\x44\x73\xdc\xe7\xc8\xb2\x96\x29\xbe\x0d\x1f\x16\xcf\x99\x49\x63\x96\x55\x08\x93\xf7\xd7\xfe\x37\xc2\xdd\x3b\x27\x59\x2a\xd3\x3c\x33\xe9\xfc\x88\x6d\x1d\xb4\x2c\x39\x63\x2e\x19\x03\x19\x45\x96\xb5\xa1\xf9\x43\xcc\x54\x6d\xa5\x2a\x31\x84\xc9\x6f\x9b\xab\xf9\xc1\x7d\x05\xaa\x44\x74\x1e\x60\x01\xee\xbe\x28\x0c\xb1\xdc\xa3\xd8\x35\x0a\xf3\xaf\xf0\xf6\x2b\xa8\x3b\x3f\x83\x5b\xf9\x07\x8b\xb0\x96\x26\x0d\x3b\xe0\xfa\x5b\x2e\x21\x97\x3a\x8b\x02\xff\x2f\x95\x2a\x06\x4d\x06\x2c\x27\x30\x26\xc8\xa8\x23\x04\x43\xd0\xd3\xf2\x43\x6f\xe8\xb9\xed\xe7\x6d\xcb\xe3\x3e\xb7\xb8\x53\x57\x37\x4d\xda\x7c\x93\xfe\x1c\xe2\x75\x57\x4f\xf5\x90\x7c\xab\x72\xb1\xb0\x78\xc6\xa8\x34\xd8\x1b\x57\xbd\x09\x31\x2a\xdc\x4b\x43\xbc\x66\x3a\xbf\xc0\x62\x34\x43\x87\xff\xaf\xad\x0a\x7a\xce\x87\x57\x45\xe5\x66\xb4\xc1\x4a\x72\xdc\x8e\xa0\xdb\x76\x7b\x86\x1f\xf7\x4d\xc4\x98\x53\x91\x19\xd7\x94\xf9\xf7\x11\x45\xab\x3d\x56\x6b\x0d\x5e\xbc\xb7\x00\x00\x00\xff\xff\x0e\x35\x51\xeb\xd6\x03\x00\x00" +var _lockedtokensDelegatorWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x8f\xa2\x40\x10\x85\xef\xfc\x8a\x8a\x87\x0d\x1c\x16\xf7\xb0\xd9\x83\xd1\x35\x46\x34\x93\x68\x46\xa3\xce\xcc\xb9\x07\x0a\x21\xb6\x14\x69\x0a\x61\x32\xf1\xbf\x4f\xa0\x69\x06\x89\x5e\xa6\x2f\x1d\xa8\xd7\xf5\xbe\x7a\xdd\xf1\x39\x25\xc5\xb0\x26\xff\x84\xc1\x81\x4e\x98\x64\x10\x2a\x3a\xc3\x9f\x72\xbd\x99\xaf\x16\xde\x61\xb3\x5a\x3c\xcf\x3c\x6f\xb7\xd8\xef\xad\x46\xbd\x94\x54\xd4\x5a\x23\x5d\xae\x37\x6f\x37\x42\x8b\x95\x48\x32\xe1\x73\x4c\x89\x2d\xce\x94\x27\x3c\x82\x97\x65\x5c\xfe\xfb\xeb\xc0\xa7\x65\x01\x00\x48\x64\x88\x48\x06\xa8\x76\x18\x8e\xe0\x57\x97\xc1\xad\xb7\xa7\xba\xda\x8a\x2f\x22\x97\xac\xb5\x2d\x81\xfb\x5a\xfd\xd4\x0d\x53\x85\xa9\x50\x68\x0b\xdf\xd7\x86\xb3\x9c\xa3\x99\xfe\xa8\x5c\xa1\x59\x19\xca\xd0\x6d\x9d\x61\x02\xcd\x01\xf7\x9d\x94\xa2\x62\xfc\x90\xe4\xbf\x5d\xcd\x3b\x82\x47\xf5\x3d\x93\x12\x47\xdc\x0a\x8e\x1c\x68\xed\xaa\x35\x9d\x42\x2a\x92\xd8\xb7\x07\x73\xca\x65\x00\x09\x31\x68\x37\x50\x18\xa2\xc2\xc4\x47\x60\x82\x4e\xb3\x81\x63\xdd\x12\x9b\xf1\xef\x00\xf7\xe2\x30\x9c\xc3\x4c\x03\x0d\x43\x53\xaf\xcb\xce\x8f\xd0\xbe\x2f\xfd\x22\x64\x8e\x03\xdd\xe5\xaa\x21\xb1\x44\x3f\x67\xec\x84\x5c\x5d\x58\x80\x12\x8f\x82\x49\x6d\x15\x95\x1f\x30\xe9\x25\xdf\xe0\x7b\x46\x65\x77\x26\xbe\x3d\xea\x16\x31\x47\x81\x12\xc5\x0e\x0b\xa1\x02\x93\x7d\xfb\xb2\xf4\xee\xdc\xcf\xcb\x0d\x30\xa5\x2c\xe6\x26\x94\xf1\xef\x1e\x85\xe9\xdd\xef\x66\x06\xbc\x5a\x5f\x01\x00\x00\xff\xff\x29\x29\x64\xb8\x25\x03\x00\x00" func lockedtokensDelegatorWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4220,11 +4200,11 @@ func lockedtokensDelegatorWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x94, 0x24, 0x6d, 0x9c, 0xe, 0x60, 0xf7, 0xf3, 0x2c, 0x32, 0x60, 0x16, 0x15, 0x5d, 0x1b, 0x7f, 0x82, 0x13, 0x92, 0x79, 0x2a, 0x26, 0x1f, 0xbd, 0xc6, 0x8e, 0x23, 0xe0, 0x48, 0x1c, 0x44, 0xdd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe6, 0x5, 0x83, 0x8, 0x2a, 0x18, 0xaf, 0xe7, 0xdc, 0x32, 0xf3, 0xaa, 0x20, 0x75, 0x3b, 0x26, 0xe1, 0xbb, 0xd2, 0x3a, 0xfa, 0x32, 0x6, 0xb0, 0x49, 0x94, 0x57, 0x54, 0x30, 0x79, 0x4d, 0x56}} return a, nil } -var _lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4f\x6b\xa3\x50\x10\xbf\xfb\x29\x06\x0f\x41\x61\xf1\xb4\xec\x21\x6c\x36\x6c\x29\xa1\x87\xd2\x86\xf4\xdf\x79\xa2\x63\x7c\xc4\xbc\x91\x79\x63\x4d\x29\xf9\xee\x25\x3e\x35\xda\x50\x2f\x4f\xe7\xfd\xe6\xf7\x0f\xcd\xa1\x62\x51\xb8\xe7\x74\x4f\xd9\x33\xef\xc9\x3a\xc8\x85\x0f\x10\x8e\x47\x61\xd0\xe1\x56\xb5\xdd\x99\x6d\x49\xed\xb8\x03\x4e\x66\x61\x10\xa8\xa0\x75\x98\xaa\x61\x1b\xe1\x81\x6b\xab\x73\x78\x59\x99\xe3\x9f\xdf\x31\x7c\x06\x00\x00\x25\x29\x58\xce\xe8\x96\x4a\xda\xa1\xb2\xac\x85\x8f\x1f\xf3\x89\x8b\xc4\x7f\x3c\x5c\xc1\x82\x96\xa2\x12\xaa\x50\x28\xc2\x34\xf5\x0a\x58\x6b\x11\xdd\xb0\x08\x37\xaf\x58\xd6\x14\xc3\xec\xbf\xbf\xeb\x55\x7b\xe5\x82\xcb\x8c\x64\x43\x39\x2c\xa0\x5b\x4f\x9c\xb2\xe0\x8e\x92\x6d\x4b\xf0\xb7\x25\x9b\xb8\x69\x8f\xc7\x8a\x04\xcf\xb9\xdc\xaf\x69\x13\xc9\x9b\xd1\x22\x13\x6c\x62\x98\x5d\xaf\xdd\xb5\x82\xff\xa2\x73\x5d\xdf\x42\x8e\xee\x9f\xbc\x85\x35\x6a\x11\x0f\x7e\xcf\xcf\x72\x09\x15\x5a\x93\x46\xe1\x08\x0d\xc6\x81\x65\x05\x87\xef\x94\x01\x2a\xb8\x8a\x52\x93\x1b\xca\xa0\x42\x2d\xc2\x0b\xc5\xf0\xe2\xa8\xcc\x93\xeb\xda\x61\x71\x69\xa4\xcb\x3f\x00\x22\x4f\x73\xf2\x9d\xd3\x91\xd2\x5a\x69\x54\xe7\x0f\x94\x49\xd3\xd5\xb1\xa1\x06\x25\xeb\xd3\x0e\x7f\x83\x3f\x7b\xee\x53\xf0\x15\x00\x00\xff\xff\x8b\x3c\x89\xa1\x85\x02\x00\x00" +var _lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x2f\xa1\x87\xd2\x83\xd4\x8a\x34\x96\x82\xa2\xa2\xf6\x07\x4c\x77\x27\x66\x31\xee\x84\xc9\xd8\xa4\x14\xff\x7b\xd1\x98\x34\x56\x9a\xcb\x64\xd8\xc7\xfb\xf6\xbd\x75\xfb\x9c\x45\x61\xc6\x66\x47\x76\xc3\x3b\xf2\x05\x24\xc2\x7b\xb8\xaf\x66\x8b\x97\xe9\x24\xde\x2c\xa6\x93\xf9\x38\x8e\x57\x93\xf5\x3a\x08\x54\xd0\x17\x68\xd4\xb1\x0f\x71\xcf\x07\xaf\x03\x78\x7f\x75\xd5\xe3\x43\x1f\xbe\x03\x00\x80\x8c\x14\x3c\x5b\x8a\x29\xa3\x2d\x2a\xcb\x52\xb8\xfa\x1a\x5c\x11\xa2\x7a\x99\xdf\xc8\x82\xb3\x45\x2e\x94\xa3\x50\x88\xc6\xd4\x84\xf1\x41\xd3\x71\xbd\x34\x98\x06\x95\x72\x66\x49\x56\x94\xc0\x10\x2e\xfa\xe8\x83\x45\xb8\x7c\xba\xbb\x42\x9e\xc7\xdb\x59\xfd\x1c\x9e\x12\xfe\xb9\x52\xe7\x7c\xad\x2c\xb8\xa5\x25\x6a\xda\x87\x96\x76\xfa\x46\x23\xc8\xd1\x3b\x13\xf6\x3a\x72\x70\x05\x78\x56\x28\xf0\x93\x2c\xa0\x42\x91\x93\x71\x89\x23\x0b\x39\x6a\xda\xeb\xb7\x16\xed\x4f\x41\x59\x12\xdd\xb6\x04\xc3\xdf\x3c\x97\x14\xad\x20\xac\x6d\x8e\x75\x45\x54\x91\x39\x28\x75\xca\xf8\xc7\x32\x2a\x9d\xa6\x56\xb0\x5c\x51\x89\x62\x9b\xb8\xed\xe3\xd5\xb3\xf1\x3e\x06\x3f\x01\x00\x00\xff\xff\x93\x68\x03\x07\x10\x02\x00\x00" func lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdcBytes() ([]byte, error) { return bindataRead( @@ -4240,11 +4220,11 @@ func lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0xbe, 0x82, 0xa7, 0xde, 0x1f, 0xfd, 0xc2, 0x7d, 0x57, 0x2, 0xd5, 0x9d, 0xb0, 0x5e, 0xde, 0xad, 0x51, 0xee, 0xe9, 0x0, 0x5b, 0x77, 0xbf, 0xff, 0xbc, 0x87, 0xf0, 0x16, 0x44, 0x76, 0x94}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6d, 0x82, 0x3d, 0xe0, 0xb7, 0x1e, 0xf7, 0xed, 0x59, 0xb8, 0x4, 0xce, 0x38, 0xb6, 0x6e, 0x9a, 0x69, 0x60, 0x72, 0x8, 0x27, 0xcf, 0xa5, 0x8, 0x5f, 0x3e, 0xb7, 0x74, 0xcb, 0xaa, 0x37, 0xfe}} return a, nil } -var _lockedtokensDelegatorWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4d\x4f\xb3\x40\x10\xbe\xf3\x2b\x26\x1c\x1a\x48\xde\x70\x7a\xe3\xa1\xb1\x36\x1a\xd3\x78\x30\xda\xa8\xd5\xf3\x74\x19\xca\xa6\x74\x67\xb3\x3b\xd8\x1a\xd3\xff\x6e\xca\x52\x0a\x12\xb9\x2c\xcc\x3e\xf3\x7c\x05\xbd\xb3\xec\x04\x1e\x59\x6d\x29\x7f\xe3\x2d\x19\x0f\x85\xe3\x1d\xc4\xfd\x51\x1c\xb5\xb8\x45\x6d\x36\x7a\x5d\x51\x33\x6e\x81\x83\x59\x1c\x45\xe2\xd0\x78\x54\xa2\xd9\x24\xb8\xe3\xda\xc8\x14\x56\x0b\x7d\xb8\xfa\x9f\xc2\x77\x04\x00\x50\x91\x80\xe1\x9c\xee\xa9\xa2\x0d\x0a\xbb\xa5\xe3\xc3\xd7\x74\xe0\x22\x0b\x1f\x4f\x23\x58\xd4\x50\x58\x47\x16\x1d\x25\xa8\x54\x50\xc0\x5a\xca\xe4\x8e\x9d\xe3\xfd\x3b\x56\x35\xa5\x30\xb9\x0d\x77\x67\xd5\xb3\x72\xc9\x55\x4e\xee\x85\x0a\x98\x41\xbb\x9e\x79\x61\x87\x1b\xca\xd6\x0d\xc1\x75\x43\x36\x70\xd3\x1c\xcf\x96\x1c\x9e\x72\xf9\x7f\xc3\x26\xb2\x0f\x2d\x65\xee\x70\x9f\xc2\x64\xbc\xf6\xd0\x08\xde\x24\xa7\xba\x7e\x85\xec\xdd\xbf\x06\x0b\x4b\x94\x32\xed\xfc\x9e\x9e\xf9\x1c\x2c\x1a\xad\x92\xb8\x87\x06\xed\xc1\xb0\x80\xc7\x4f\xca\x01\x05\xbc\x25\xa5\x0b\x4d\x39\x58\x94\x32\xbe\x50\x74\x2f\x9e\xaa\x22\x1b\xd7\x0e\xb3\x4b\x23\x6d\xfe\x0e\x90\x04\x9a\x63\xe8\x9c\x0e\xa4\x6a\xa1\x5e\x9d\x7f\x50\x66\xfb\xb6\x8e\x95\xf1\x82\x5d\xda\xee\x6f\x08\xe7\x99\xfb\x18\xfd\x04\x00\x00\xff\xff\xa4\x08\x39\x8f\x85\x02\x00\x00" +var _lockedtokensDelegatorWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xdf\x6a\xf2\x40\x10\xc5\xef\xf3\x14\x83\x17\x1f\xf1\x26\x7c\x17\xa5\x17\x52\x2b\xd2\x58\x0a\x8a\x8a\x7f\x1e\x60\xba\x99\x98\xc5\xb8\x13\x66\xc7\x9a\x52\x7c\xf7\xa2\xd1\x6d\xac\x34\x37\x93\x61\x0f\xe7\xb7\xe7\xac\xdd\x55\x2c\x0a\x13\x36\x5b\xca\x56\xbc\x25\xe7\x21\x17\xde\xc1\xff\x7a\x32\x7b\x19\x8f\xd2\xd5\x6c\x3c\x9a\x0e\xd3\x74\x31\x5a\x2e\xa3\x48\x05\x9d\x47\xa3\x96\x5d\x8c\x3b\xde\x3b\xed\xc1\xfa\xd5\xd6\x8f\x0f\x5d\xf8\x8a\x00\x00\x4a\x52\x70\x9c\x51\x4a\x25\x6d\x50\x59\xe6\xc2\xf5\x67\xef\x86\x90\x34\xcb\xf4\x4e\x16\x9d\x2d\x2a\xa1\x0a\x85\x62\x34\xa6\x21\x0c\xf7\x5a\x0c\x9b\xe5\x8a\xb9\xa2\x0a\x2e\x33\x92\x05\xe5\xd0\x87\x8b\x3e\x79\x67\x11\x3e\x3c\xfd\xbb\x41\x9e\xc7\xdb\x59\xfd\x1c\x9f\x12\xfe\xba\x52\xeb\x7c\xa9\x2c\xb8\xa1\x39\x6a\xd1\x85\x40\x3b\x7d\x83\x01\x54\xe8\xac\x89\x3b\x2d\x39\x58\x0f\x8e\x15\x3c\x7e\x50\x06\xa8\xe0\x2b\x32\x36\xb7\x94\x41\x85\x5a\x74\xba\xc1\x22\xfc\x78\x2a\xf3\xe4\xbe\x25\xe8\xff\xe4\xb9\xa4\x08\x82\xb8\xb1\x39\x36\x15\x51\x4d\x66\xaf\xd4\x2a\xe3\x0f\xcb\xe4\x60\xb5\xc8\x04\x0f\x6b\xe7\x15\x43\xdc\xf0\x78\xcd\xbc\x7a\x1f\xa3\xef\x00\x00\x00\xff\xff\xbc\x5c\xb3\x29\x10\x02\x00\x00" func lockedtokensDelegatorWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4260,11 +4240,11 @@ func lockedtokensDelegatorWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x97, 0xad, 0xe8, 0x0, 0x2f, 0x41, 0x5f, 0x1e, 0x2a, 0x37, 0x13, 0xff, 0x4f, 0xde, 0x3f, 0xe4, 0xaf, 0x70, 0x62, 0x1d, 0x9d, 0xbb, 0x53, 0x40, 0x87, 0x7e, 0xed, 0xc8, 0x1b, 0x46, 0xaf, 0xab}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x76, 0x6b, 0xcd, 0x92, 0x2d, 0xc7, 0x26, 0xf1, 0x84, 0xdd, 0xbf, 0xe1, 0x63, 0x85, 0x81, 0xc6, 0xbc, 0xb9, 0x4b, 0x27, 0xa4, 0x96, 0xfc, 0xab, 0x2c, 0x32, 0x7a, 0x19, 0xc1, 0xcc, 0xec, 0x30}} return a, nil } -var _lockedtokensStakerGet_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcd\x4e\xc3\x30\x10\x84\xef\x7e\x8a\x21\x07\x94\x5c\xf2\x00\x15\x50\x55\x70\xa0\x52\x85\x2a\xe0\x05\x1c\x7b\x13\xac\x3a\xde\x68\xbd\x16\x07\xc4\xbb\xa3\x26\x50\xca\xcf\x5e\x2c\x8d\x66\xbe\xf1\x84\x71\x62\x51\xec\xd8\x1d\xc8\x3f\xf3\x81\x52\x46\x2f\x3c\xa2\x3a\x97\x2a\x63\xac\x73\x94\x73\x6d\x63\x6c\xd0\x97\x84\xd1\x86\x54\x5b\xe7\xb8\x24\x5d\x61\xe3\xbd\x50\xce\xcd\x0a\x4f\x2a\x21\x0d\x78\x33\x06\x00\x22\x29\xe2\x0c\xda\x2c\xd6\x6d\xea\xf9\x91\x7a\x5c\x63\x20\xfd\xd4\xbe\x30\xcd\x1c\x39\x5e\xeb\xec\x64\xbb\x10\x83\x06\xca\x6d\xc7\x22\xfc\x7a\x75\x79\xfe\xa3\x76\x7e\xee\x39\x7a\x92\x9b\xfa\x14\x3c\xde\x0f\xdb\xee\x77\xf9\xbe\x74\x31\xb8\xbd\xd5\x97\x53\xe8\xbb\x77\xbd\xc6\x64\x53\x70\x75\x75\xcb\x25\x7a\x24\x56\x2c\xed\xb0\x10\xea\x49\x28\x39\x82\x32\xa6\x19\x83\x3f\xf8\xaa\x59\x86\x0b\x69\x91\xf4\xef\xf6\x76\x20\x7d\x60\x4f\xdb\xbb\xba\xb9\x30\xef\xe6\x23\x00\x00\xff\xff\x0f\x71\x7a\xf7\x83\x01\x00\x00" +var _lockedtokensStakerGet_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x5f\x6b\xc2\x30\x14\xc5\xdf\xf3\x29\xce\x7c\x18\xed\x8b\xec\x59\xb6\x89\x58\x61\xa2\xa8\x58\xbf\x40\x9a\xdc\x76\xc1\x34\xb7\xa4\x09\xdb\x10\xbf\xfb\x68\xbb\x39\xf7\x87\xdd\x97\xc0\xcd\xb9\xbf\x73\x38\xa6\x6e\xd8\x07\xac\x59\x1d\x49\x1f\xf8\x48\xae\x45\xe9\xb9\xc6\xdd\xeb\x7a\x3b\x5f\x2d\xb2\xc3\x76\xb5\xd8\xcc\xb2\x6c\xbf\xc8\x73\x21\x9a\x58\xa0\x8c\x0e\xb5\x34\x2e\x91\x4a\x71\x74\x61\x82\x99\xd6\x9e\xda\x36\x9d\x20\x0f\xde\xb8\x0a\x27\x21\x00\xc0\x52\x80\xed\xc9\xb3\x41\xba\x74\x25\xef\xa9\xc4\x03\x2a\x0a\x1f\xbb\x4f\x4c\xda\x9f\x74\x33\xae\x28\xcc\x65\x23\x0b\x63\x4d\x78\xbb\xbf\xbd\x0e\x37\xee\x9f\x27\xb6\x9a\xfc\xe9\xdb\xc7\xfa\xa7\xd1\xf9\x31\xb9\x20\xbb\xf9\x5f\xbd\x8b\x85\x35\x6a\x27\xc3\xf3\xe5\xe8\x2a\x51\xc1\xde\xf3\x4b\xf2\xb5\x99\x4e\xd1\x48\x67\x54\x32\x9a\x73\xb4\x1a\x8e\x03\x06\x11\x24\x3c\x95\xe4\xc9\x29\x42\x60\x34\x3d\x18\xbf\x0c\x47\xe9\x50\x92\xa7\x10\xbd\xfb\xb3\xa7\xae\x88\x0d\x6b\x5a\x66\x49\x7a\x23\xce\xe2\x3d\x00\x00\xff\xff\x59\x32\x6f\x4f\xad\x01\x00\x00" func lockedtokensStakerGet_node_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4280,11 +4260,11 @@ func lockedtokensStakerGet_node_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/get_node_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0x84, 0xe, 0x5d, 0x19, 0x55, 0x83, 0xac, 0xfc, 0xd7, 0x38, 0x2e, 0x90, 0xd2, 0x96, 0x6, 0xf1, 0x2f, 0x3e, 0x2d, 0x2c, 0x94, 0x18, 0xed, 0x24, 0xeb, 0x46, 0x62, 0x19, 0xf7, 0xa4, 0x79}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x36, 0xf1, 0x48, 0xbc, 0x29, 0x8, 0xe1, 0x54, 0xd9, 0xcd, 0x2f, 0x3f, 0x8c, 0x57, 0xfa, 0xce, 0x1c, 0x97, 0xce, 0xe6, 0xf4, 0xb4, 0xc7, 0xd7, 0xb0, 0x8b, 0x59, 0xcf, 0x1c, 0x80, 0x8c, 0x24}} return a, nil } -var _lockedtokensStakerGet_staker_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xc1\x8a\xdb\x30\x10\xbd\xeb\x2b\x86\x1c\x8a\x7d\xf1\xde\x43\x5d\x08\x98\xd2\x40\x29\xcb\x76\x6f\xcb\x1e\xc6\xd2\x38\x51\xa3\x68\x8c\x34\x66\x29\x21\xff\x5e\xe4\x38\x8e\xdd\x64\x9b\xb6\xba\x84\x48\xef\x3d\xbd\x79\x4f\xd8\xee\x5b\x0e\x02\x9f\x1d\xbf\xad\xab\x67\xac\x1d\x7d\x17\xdc\x59\xbf\x81\x26\xf0\x1e\x16\xd7\x07\x0b\x35\x70\xbe\xb2\xde\x91\x79\xe6\x1d\xf9\x38\xa0\xa7\x5b\x0b\xa5\x1e\x1e\xe0\x89\xa4\x0b\x3e\x02\x7a\xc0\x10\xf0\x27\x70\x03\xdf\xd8\xd0\xda\x37\x0c\x5c\xff\x20\x2d\x11\x64\x8b\x02\xb2\x25\x40\xad\xb9\xf3\x02\x9a\xbd\x04\x76\x31\x29\x58\x0f\x56\x22\x78\x0e\x7b\x74\x23\x02\xbd\x81\xb8\xc5\x40\xe6\xbc\xa5\x14\x6a\x4d\x31\x66\xe8\x5c\x0e\x4d\xe7\x61\x8f\xd6\x67\xc3\xe9\x12\x56\xc6\x04\x8a\x31\x5f\xc2\xcb\xf5\x50\xc5\xd9\xd3\x2b\x1c\x94\x02\x00\x70\x24\xe0\x87\xcd\x55\x72\x7e\x8f\x57\xc2\xcb\xeb\x85\xda\x76\xf5\x6a\xb0\x5a\xc2\x86\x64\xf8\x73\xb6\x93\x5f\x90\xdc\x8a\x65\x8f\x2e\x29\x25\x55\x0a\x4f\xd4\x40\x39\x51\xe8\xa1\x69\x15\x1a\x5b\xac\xad\xb3\x62\x29\x16\x35\x87\xc0\x6f\x1f\x3f\x1c\xde\xb1\x75\x12\x7b\xec\x6a\x67\xf5\xf1\x53\x36\xaa\xa4\xf5\x17\x94\x47\x94\xed\xc8\x19\xfc\xda\x66\xcc\x65\x6a\xf5\xf6\x08\x87\x91\x9d\x38\x36\x15\x5e\xbe\x77\x71\x8a\x30\xeb\xe3\xae\x96\x73\xf9\xc2\x9a\x7c\x14\x9a\x15\x52\x60\xdb\x92\x37\x59\x52\x3e\x41\x8e\xd7\xa9\x9e\x5e\xe4\x10\x64\xa2\xfe\x63\xb8\xd3\x17\x5d\xf4\x3f\x5f\xd8\x19\x0a\xbf\xe5\x39\x83\x5d\xdd\x79\x37\x50\x77\xdb\xe5\x1f\x87\xb8\xc4\x3b\x69\x65\x5d\x41\x79\x53\xad\xd8\x90\xf4\x41\x57\x59\x3e\xa1\xfe\x67\x3b\xeb\x2a\x9f\x49\xdc\xe9\xe5\xd4\xcd\xa4\xa1\xd0\x7f\x15\xe6\x34\x75\x54\xbf\x02\x00\x00\xff\xff\x2f\x27\xba\xbf\x8d\x04\x00\x00" +var _lockedtokensStakerGet_staker_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x94\xc1\x6f\xda\x30\x14\xc6\xef\xf9\x2b\xde\x69\x4a\x2e\xe9\xce\x68\x99\x94\xe1\x4c\x8b\x8a\x68\x05\xb9\x4c\x55\x0f\x4e\xfc\x02\x1e\xc6\x8e\x9c\x17\x75\x15\xe2\x7f\x9f\x1c\x92\x34\xa1\x74\xa0\xfa\x82\x30\xef\xf7\xf9\xf3\xf7\x59\xc8\x7d\x65\x2c\xc1\x4f\x65\x5e\x52\x96\xf1\x5c\xe1\x9a\xf8\x4e\xea\x0d\x94\xd6\xec\xe1\xeb\xdf\x94\x25\xcb\x2c\xcd\x7e\x67\xf1\x8f\x45\x12\x33\xb6\x4a\xd6\x6b\xaf\xa3\x16\xa6\xd8\xa1\xc8\xcc\x0e\x75\xdd\xcf\x2f\x1e\xe6\xf7\x09\xcb\x1e\xee\x93\x65\x3f\xed\xdd\xdd\xc1\x0a\xa9\xb1\xba\x06\xae\x81\x5b\xcb\x5f\xc1\x94\xb0\x34\x02\x53\x5d\x1a\x30\xf9\x1f\x2c\xa8\x06\xda\x72\x02\xda\x22\xf0\xa2\x30\x8d\x26\x28\x8c\x26\x6b\x54\xed\x14\xa4\x06\x49\x35\x68\x63\xf7\x5c\x0d\x13\x5c\x0b\xa8\xb7\xdc\xa2\xe8\xb7\x3c\xaf\x6a\x72\x28\x1b\x0d\x7b\x2e\xb5\xdf\xed\xce\x20\x16\xc2\x62\x5d\x07\x33\x78\x7a\x7f\xdb\xb0\xf7\xf2\x0c\x07\xcf\x03\x00\x50\x48\xa0\xbb\xcd\xd8\x39\xbe\xc6\x45\xf0\xf4\xfc\x86\x56\x4d\x1e\x77\x16\x23\xd8\x20\x75\x5f\x7a\x3b\xc1\xf4\x10\xa7\x86\x76\xce\x2b\x88\x46\x64\x3b\xe2\x56\xb8\x41\x9a\xf3\x8a\xe7\x52\x49\x7a\xfd\xf6\xe5\xf0\x81\x91\x93\xcc\x63\x93\x2b\x59\x1c\xbf\xfb\x03\xef\xd6\x0d\xc8\x23\xa7\xed\xc0\x74\x0e\x65\x79\x66\x72\x85\x25\x44\x53\xd3\x61\x6e\xac\x35\x2f\x7e\x00\x87\x01\x77\x90\x74\xdd\x46\x1f\x9d\xec\x52\xf3\xdb\x84\xd9\x6c\xaa\x1f\x4a\x11\x0c\x42\x93\x0e\x42\x5e\x55\xa8\x85\xef\x94\x4f\x23\xc7\xb7\x20\x55\xfb\x1a\xbb\xec\x1c\x72\x73\x9e\xe3\x77\x1c\xb6\x1f\xbf\x8c\x12\x68\x0f\x93\x1f\x16\xe7\xfa\xe7\x11\xff\x7f\xfa\x6a\xc6\xef\xfc\x9f\xa2\xbe\x74\xad\x4b\x89\x8f\x9a\x4a\xd9\x25\xce\x25\xbb\x41\x6a\xb3\x67\x13\xf4\x93\x85\xa5\x2c\x98\x48\x5c\xa9\xea\x54\xd7\xa8\x34\xdb\xfe\x27\x4c\x31\xef\xe8\xfd\x0b\x00\x00\xff\xff\xec\x44\xa8\x4d\x93\x04\x00\x00" func lockedtokensStakerGet_staker_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -4300,11 +4280,11 @@ func lockedtokensStakerGet_staker_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/get_staker_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x12, 0x2d, 0x71, 0xfd, 0xfb, 0x2c, 0xe0, 0x95, 0x39, 0x71, 0xb4, 0xb2, 0xbe, 0x29, 0xf5, 0x53, 0xef, 0xa9, 0xc4, 0x22, 0x24, 0xed, 0x2b, 0x64, 0x26, 0xca, 0xb9, 0xaa, 0x28, 0xf8, 0xf4, 0xf9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0xbf, 0x4c, 0xa8, 0x6, 0x7d, 0xbb, 0x2b, 0x3, 0xaf, 0x56, 0xe3, 0x7e, 0xbb, 0xbc, 0x9c, 0x5a, 0x1a, 0xff, 0xe0, 0x27, 0xb6, 0x9a, 0xbe, 0xcc, 0x6d, 0x18, 0x3c, 0x9f, 0x81, 0xe8, 0x89}} return a, nil } -var _lockedtokensStakerRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x51\x4f\xdb\x30\x10\x7e\xcf\xaf\xb8\xe5\x01\x25\x52\x09\x2f\xd3\x34\x45\x74\x08\x36\xa1\xa1\x4d\x0c\x8d\xc1\x9e\xdd\xe4\x92\x5a\x75\xed\xc8\xb9\xac\x45\x55\xff\xfb\xe4\xd8\x49\xec\x16\x36\x5e\xe8\x03\x49\xee\x3e\x7f\x77\xdf\xf9\x3b\xf8\xba\x51\x9a\xe0\x5a\xa8\xcd\x2f\xb5\x42\x09\x95\x56\x6b\x88\xc7\xef\x38\x1a\x10\x9d\xac\xf9\x42\x60\x80\xf2\x63\x23\xf2\xbb\x2a\x56\x58\xf6\xb1\xd6\x01\xfd\xd0\x88\xbb\x27\xb6\xe2\xb2\xbe\xd3\x6a\xfb\xe4\x70\x7e\x28\x8e\x22\xd2\x4c\xb6\xac\x20\xae\x64\xc2\xcb\x1c\xee\x49\x73\x59\xcf\x40\x2b\x81\x39\x3c\xdc\x48\xfa\x38\x03\x89\xb4\x51\xda\x1c\xbb\x2c\x4b\x8d\x6d\x3b\xe1\xa6\xd4\x37\x7c\x9a\xc2\xad\xad\x12\xc4\xd8\x5a\x75\x92\x72\x78\xb8\xe6\xdb\x0f\xef\x53\xd8\x45\x11\x00\x80\x40\x82\xa5\x12\x25\xea\x9f\x58\xe5\xc0\x3a\x5a\x26\xbe\x98\xac\x7f\xfc\x68\x50\x33\xd3\x65\x3b\x0b\xe7\x94\xfd\xe6\xb4\x2c\x35\xdb\xa4\x70\x72\x7c\xec\x6b\x4f\x3c\x15\xfa\xc3\x3a\x41\x53\x9d\x17\x99\xc6\xcb\xc9\x1e\xcd\x09\x4b\xd0\x68\x6c\x98\xc6\x84\x15\x85\x55\xd2\x73\x5c\x29\xad\xd5\xe6\x91\x89\x0e\x53\x38\xb9\xb4\x39\xa3\x0e\xdc\xaf\x45\x51\x65\xa3\x42\x98\x83\x3b\x9f\xb5\xa4\x34\xab\x31\x5b\xf4\x0c\xe7\x6f\xa1\xfc\x53\x62\x6e\x3d\x87\x97\xf2\xf7\xb6\x85\x3b\x46\xcb\x74\x6c\xd8\xfc\x2e\x2e\xa0\x61\x92\x17\x49\xfc\x59\x75\xa2\x04\xa9\x08\x6c\x9f\xa0\xb1\x02\x52\xe0\xb1\xc4\x69\x14\xaa\x1d\xc6\xfc\x1f\xb1\xaf\x1d\xff\xa0\xe2\xcc\x91\x9c\x55\x43\xbe\x4f\xbf\xba\x73\x73\x0c\xa8\xdf\xae\xbe\x43\x23\x05\x35\xca\x02\x63\xcb\xb1\xb7\x3a\x70\x8b\x45\x47\xe8\xdd\xa1\xf1\x8e\x54\x25\xde\xc8\x4a\xc1\x3c\xd8\xab\xec\xd6\xc5\x13\xaf\x8d\x1e\xfb\x25\x07\x5e\xce\xbc\xa8\x5d\x2a\xf3\xd7\x8f\x3e\xb3\x5d\x47\xa1\xe7\xf1\xfd\x7a\x05\x9f\x3e\xce\xdf\xc1\xe9\x7d\x04\x78\x77\x66\xd4\x89\xde\x21\x57\x4c\x30\x59\x20\xcc\x0f\x5c\x9b\xd5\x48\xd6\x43\xce\xe0\x0e\x98\x78\x2c\xbc\x72\x2b\x0e\xe7\xf3\x03\xba\x5d\x14\x5c\xd1\x01\x77\xa1\x91\x11\x9a\x31\x9a\xb9\xa2\x4e\x86\x49\xe7\xe3\xcc\xa7\xff\x1e\xf6\xe9\x95\xdd\x03\x8a\x16\x4d\xf5\x24\x71\xf5\x4f\xc3\xf2\xa9\x69\x28\xf0\x65\xb6\x18\x32\xff\xee\xac\xc4\x46\xb5\x9c\x9c\xfd\xce\x4f\x43\x92\x8d\x33\x6c\x12\xf6\x76\x54\x3e\x7d\x7b\xf5\xbb\xa0\x82\xf3\xff\xad\x22\x40\xa9\xba\x7a\x69\x4d\xdf\x9a\xb5\x35\x4e\xc0\x77\xf1\xb4\x33\xfb\xf1\xcd\xad\xc0\x3e\xfa\x1b\x00\x00\xff\xff\x8e\x3f\xa9\xa3\xb2\x06\x00\x00" +var _lockedtokensStakerRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\xcd\x8e\xda\x4c\x10\xbc\xfb\x29\xfa\xe3\xf0\xc9\x48\xbb\xde\x1c\xa2\x28\xb2\x20\x2b\xb2\x40\x82\x40\x80\x30\x9b\x9f\xe3\xac\xdd\x06\x0b\x33\x8d\xc6\xed\xc0\x0a\xf1\xee\xd1\x78\x6c\xec\x01\x36\xca\x25\x3e\xf8\xa7\xbb\xdc\x55\x53\x53\x93\x6c\x77\xa4\x18\x86\x29\xed\x97\xb4\x41\x09\xb1\xa2\x2d\xbc\x3b\x0c\x27\xb3\xef\xcb\xd9\x78\x30\xed\xf5\xfb\x8b\x41\x10\x38\x25\x70\x42\xe1\x06\xa3\x02\x9a\x55\xd8\xc9\xec\x69\x3c\xe8\xdf\x42\x07\x2c\x36\x89\x5c\xcd\x15\x1d\x5e\x2b\x74\xb0\xec\x8d\x47\xd3\x2f\xf3\xc5\xec\xc7\xcf\x0a\xee\xb0\x12\x32\x13\x21\x27\x24\xdd\x24\xf2\x21\x60\x95\xc8\xd5\x1d\x28\x4a\xd1\x87\xe7\x91\xe4\x8f\x77\x20\x91\xf7\xa4\xf4\xc0\x5e\x14\x29\xcc\xb2\x1a\x57\xb7\xc6\xf8\x5a\x97\x33\xc3\x6f\xd5\xc4\x96\x72\xc9\x3e\x3c\x0f\x93\xc3\x87\xf7\x6d\x38\x3a\x0e\x00\x40\x8a\x0c\x6b\x4a\x23\x54\x0b\x8c\x7d\xf8\xbf\xb9\x50\xaf\x78\x7c\x2d\xba\x35\xfa\x97\xc8\x53\x36\xe0\xb3\x7d\xde\x37\x5d\x34\x98\x9d\xc2\x9d\x50\xe8\x8a\x30\x34\x8c\xbd\x9c\xd7\x3d\xf3\xa1\x69\xa1\xbc\x32\x4c\x63\xef\x4c\x0d\x5d\x28\x7f\xf0\x5e\x48\x29\xda\x77\xde\x94\xf2\xc9\xd5\x96\xfa\xf0\x56\x3f\x60\x52\x62\x85\x73\xc1\xeb\xf6\x99\x4d\x5f\x8f\x8f\xb0\x13\x32\x09\xdd\xd6\x13\xe5\x69\x04\x92\x18\x0c\x19\x28\x8c\x81\x09\x1a\x53\x5a\x6d\xc7\x96\x5a\xad\xfb\x86\xd2\x0b\x1f\x2a\x81\x0f\x99\x51\xf2\x10\x57\xfd\xa2\xfd\xd7\xa2\xf4\x6f\xc0\x45\x3c\x0b\x72\xad\x12\x15\xca\x10\x5b\x66\xc6\xc9\x48\xc4\x03\x86\x39\x63\xc3\x5b\xbd\x4f\x92\x22\x1c\xc9\x98\xa0\x6b\xe5\xd1\x9b\x96\x75\xb7\x00\xf4\x7d\x48\xa2\x2a\x70\xfa\x7e\x33\x6f\x57\xa5\xab\xe8\x59\x9f\x76\x02\xeb\xf7\x86\xa5\x5a\x61\x5a\x6c\xe0\x67\x91\x0a\x19\x22\x74\x2f\x12\xe1\xad\x90\xcd\x16\x97\xe1\x29\x81\x6e\x63\x4a\x12\x97\xb9\x86\x4e\xf7\x62\xdc\xd1\xb1\x6c\xbe\x98\x1d\x2a\x14\x8c\xda\x0a\xed\x0d\x2a\xb7\x72\xcb\x3f\xfb\x56\x1f\x19\xf3\x6c\xd0\x9e\x00\xd3\x0c\x35\xbb\xeb\x96\xfc\xf7\x36\x7d\x5b\x0b\xb2\x62\xe3\xbd\x54\x9d\x3f\x2b\x8b\x70\x47\x59\xc2\x65\x84\x3a\xf7\xf6\x90\x7d\xc2\xeb\x48\x89\xbd\x6b\x6b\xbb\xa2\x6f\xff\xfb\xd5\x1f\x2d\x86\x32\xc3\x53\x62\x40\x49\xf9\x6a\x6d\x82\x9b\xe9\x53\xa5\x03\x80\xff\xb5\xea\xdc\x9f\xce\x6f\x65\x8c\x4f\xce\xef\x00\x00\x00\xff\xff\x93\x3a\x5c\xc0\x91\x05\x00\x00" func lockedtokensStakerRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -4320,11 +4300,11 @@ func lockedtokensStakerRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdb, 0x99, 0x9d, 0x62, 0xc7, 0xa4, 0x1f, 0xa9, 0x34, 0x1a, 0x76, 0xe, 0xd5, 0x14, 0x51, 0x9d, 0x15, 0xbc, 0xd1, 0x4, 0x50, 0x20, 0xe8, 0x57, 0xf2, 0xc4, 0xd8, 0xe, 0x23, 0x49, 0x96, 0xfe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x35, 0x10, 0x94, 0x2e, 0xaa, 0x18, 0xe0, 0x8d, 0x21, 0x58, 0x32, 0x92, 0xf5, 0xdf, 0x2f, 0xa3, 0x89, 0xdd, 0x37, 0x8e, 0x2a, 0xd2, 0x49, 0x8f, 0x30, 0x28, 0x1c, 0xcf, 0x93, 0x26, 0xe1, 0x4d}} return a, nil } -var _lockedtokensStakerRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x43\x0e\x25\x01\xc9\x49\x3c\x14\x6b\x51\xa1\x78\x10\x2c\xd6\xea\x79\x9a\x4c\x9a\x90\x74\x27\xce\xce\xd2\x8a\xf4\xbf\x4b\xb2\x31\x4d\x15\x8f\xee\x65\x61\xf6\xcd\x9b\x8f\xb7\x53\xee\x1a\x16\x85\x47\x4e\x2b\xca\x5e\xb8\x22\x63\x21\x17\xde\x41\x38\x2e\x85\x41\xaf\x5b\x29\x56\xa5\xd9\x2e\x85\x0f\x1f\xbd\x6e\x5c\x1a\x74\x0b\x67\xb6\xe5\xa6\xa6\xae\xbd\x17\x9e\xd5\xc2\x20\x50\x41\x63\x31\xd5\x92\x4d\x84\x3b\x76\x46\xa7\xb0\x5e\x94\x87\xab\xcb\x18\x3e\x83\x00\x00\xa0\x26\x85\x82\xeb\x8c\xe4\x99\xf2\x29\xa0\xd3\x22\x1a\x73\x25\xdd\xf5\xd4\x90\x60\x6b\x63\x2f\xce\x07\x27\x6f\xa5\x16\x99\xe0\x3e\x86\xc9\xef\xb6\x87\xce\xd8\x0f\x6a\x84\x1a\x14\x8a\x30\x4d\x3d\x48\x37\xea\x8e\x45\x78\xff\x8a\xb5\xa3\x18\x26\xb7\xfe\xad\x85\x83\xfe\x58\xaa\xf3\x64\x00\x84\x19\xf4\xfd\x89\x55\x16\xdc\x52\xb2\xe9\x1c\xae\xff\x03\xfc\x26\x6a\x63\x9d\xc2\x5f\xef\x2b\x8f\xb0\x44\x2d\xe2\x01\xb8\x3d\xf3\x39\x34\x68\xca\x34\x0a\xef\xd9\xd5\x19\x18\x56\xf0\x9c\x20\x94\x93\x90\x49\x09\x94\x61\xe4\x15\x7a\x87\xa3\x0f\x8b\x0e\x94\x3a\xa5\x51\x0e\xed\x3f\x59\xc5\x8a\xc4\x6f\xc6\xec\x47\x32\x7d\x0e\xab\x4e\x12\xc5\xc1\x29\xc0\x53\x53\x22\xf4\xee\xc8\xea\xda\x58\xbf\x51\xc3\x52\xf8\xfb\x1b\xe1\x18\x7c\x05\x00\x00\xff\xff\x8c\x90\x77\x98\xb4\x02\x00\x00" +var _lockedtokensStakerRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4d\x6b\xf2\x40\x10\xc7\xef\xfb\x29\x06\x0f\x0f\xf1\x12\x9e\x43\xe9\x41\x6a\x25\xa8\x7d\x41\x51\x71\x15\xda\xe3\x76\x9d\x68\x48\xdc\x49\x67\x27\x34\xa5\xf8\xdd\x4b\xdc\xf8\x42\xc1\xbd\x0c\xcb\xfc\xe7\x3f\xf3\x9b\xc9\xf6\x25\xb1\xc0\x94\x6c\x8e\x9b\x15\xe5\xe8\x3c\xa4\x4c\x7b\xf8\x5f\x4f\xe7\xc3\xc9\x78\xb4\x9a\x4f\xc6\xb3\x64\x34\x5a\x8e\xb5\x56\xad\x5a\x8b\xc9\x33\xb7\x5d\x30\xd5\xdf\x27\xb5\x5e\x25\x93\xd7\xd9\xf3\x62\x39\x7f\x7b\x3f\xc9\x95\xb0\x71\xde\x58\xc9\xc8\x45\x66\x4f\x95\x93\x1e\xac\x9f\xb2\xfa\xfe\xae\x0b\x3f\x4a\x01\x00\x14\x28\xb0\xa3\x62\x83\xbc\xc4\xb4\x07\xff\xae\x27\x89\x8f\xe1\xe5\x98\x0d\xea\x92\xb1\x34\x8c\x91\xb1\x36\xb8\x25\x95\xec\x92\xf0\x69\x2c\xa1\x7d\x1e\x8b\x34\x3e\xdb\x42\x1f\xda\x82\xf8\x83\x98\xe9\xeb\xe1\x66\x9b\xc7\xa8\xe1\xe9\xc1\xad\xbc\x16\x62\xb3\xc5\x85\x91\x5d\xf7\xdc\xad\x79\x83\x01\x94\xc6\x65\x36\xea\x0c\xa9\x2a\x36\xe0\x48\x20\x34\x03\xc6\x14\x19\x9d\x45\x10\x82\x2b\xaf\x4e\x70\x38\x04\x34\xac\xd1\x56\x82\x57\x10\xcd\x6a\xbc\x98\x1c\x39\x6c\xba\xff\x07\xab\x85\xd1\x47\x49\xd4\x55\x17\xfa\x4b\x51\xcc\xf8\x59\xa1\x97\xb5\xf3\xe1\x68\xe7\x3b\x84\x78\x1a\xe1\xa0\x7e\x03\x00\x00\xff\xff\x5f\x78\x28\xec\x0a\x02\x00\x00" func lockedtokensStakerRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -4340,11 +4320,11 @@ func lockedtokensStakerRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x43, 0x96, 0xc0, 0xc3, 0xf5, 0xcd, 0xe1, 0xb9, 0xfa, 0x2f, 0x25, 0x5a, 0x6c, 0x3b, 0x3d, 0xc4, 0x1a, 0xa9, 0x3, 0x7c, 0x91, 0xfe, 0x22, 0x28, 0x3c, 0xb9, 0x98, 0x62, 0xb4, 0xd0, 0xb2, 0xbf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x58, 0x89, 0x50, 0xca, 0x45, 0x71, 0x4e, 0x85, 0xb7, 0xbe, 0xb5, 0xb7, 0x66, 0xdb, 0x88, 0x48, 0xdf, 0xfa, 0x85, 0x70, 0x19, 0xa4, 0x67, 0x61, 0xc2, 0x33, 0xc, 0xc5, 0x1, 0xea, 0xd4, 0xb9}} return a, nil } -var _lockedtokensStakerStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x8b\xdb\x30\x10\xbd\xfb\x57\x4c\x7d\x58\x6c\xe8\x7a\x2f\xa5\x87\x90\x74\xe9\x16\x96\x1e\xca\x76\x69\xda\xed\x59\xb1\xc7\x1f\x44\x91\x8c\x34\x6e\x52\x42\xfe\x7b\xd1\x87\x1d\xc9\x61\x69\x28\xd4\x17\x25\x9a\x37\x6f\xe6\xcd\x1b\x75\xbb\x5e\x2a\x82\x47\x2e\xf7\xdf\xe5\x16\x05\xd4\x4a\xee\x20\x9d\xfe\xa7\xc9\x88\x18\x44\xd3\x6d\x38\x46\xa8\xf0\x6e\x42\x7e\x91\xe5\x16\x2b\x7b\xa7\x3d\x30\xbc\x9a\x70\x6b\x62\xdb\x4e\x34\xcf\x4a\x1e\x7e\x7b\x5c\x78\x95\x26\x09\x29\x26\x34\x2b\xa9\x93\x22\x63\x3b\x39\x08\x5a\xc0\x8f\xc7\xee\xf0\xfe\x5d\x0e\xc7\x24\x01\x00\xe0\x48\xd0\x4a\x5e\xa1\xfa\x86\xf5\x02\xd8\x40\x6d\x16\x56\x2b\xec\xf1\xb5\x47\xc5\x0c\x8d\x7e\x1b\x0b\x29\x7e\x76\xd4\x56\x8a\xed\x73\xb8\xb9\x4c\xfb\x6c\x89\xcf\x85\x7e\xb1\x81\xd3\xb9\xce\xab\x4c\xd3\xf4\x8a\x17\x93\xe1\x08\x7a\x85\x3d\x53\x98\xb1\xb2\x74\x4a\x2c\xc7\x83\x54\x4a\xee\x5f\x18\x1f\x30\x87\x9b\x8f\x2e\x66\xd4\x81\xff\x34\xf2\xba\x98\x14\xc2\x0a\x7c\x7e\xa1\x49\x2a\xd6\x60\xb1\xb1\x0c\xcb\xff\xa1\xfc\x43\x66\x6c\x59\xc0\x6b\xf1\xb5\x6b\xe1\x99\x51\x9b\x4f\x0d\x9b\xef\xfe\x1e\x7a\x26\xba\x32\x4b\x3f\xc9\x81\x57\x20\x24\x81\xeb\x13\x14\xd6\xa8\x50\x94\x08\x24\x21\xe0\x4a\xf3\x24\xd6\x3c\x0e\xfb\x2f\x92\xaf\x35\x61\xd4\x72\xe7\x49\xee\xea\x31\x6e\xc3\x57\xf7\x6f\xd2\x80\xec\x23\xb0\x1d\x9e\x05\xa5\x8e\xe3\xe4\x74\xe0\x01\xcb\x81\x30\x70\xd2\x6c\x90\x26\xb6\x45\xe5\x56\x7e\x35\xf3\xd6\xcb\x5a\x5b\x48\x16\x8c\xc3\x24\x72\x6b\xc1\x03\xe3\xcc\x8c\xee\x22\xb5\x41\x72\x26\xf9\x0d\xf2\xc0\x90\xa5\xab\xc1\xbd\x21\x58\xae\x66\x74\xc7\x24\x52\x1f\x34\x59\xd8\xdf\x4f\xe8\x26\xa5\xa7\x57\xe8\xce\x80\xfd\x04\xc8\x35\x9a\x22\x99\x07\xc1\x6d\x5c\x25\x37\x75\x23\x67\x8b\xcd\x18\x99\x37\x10\x8b\xab\xb0\x97\xba\x23\x6f\xe0\xf2\x36\x26\xd9\x7b\xcb\x67\xbd\x5d\x94\xcf\xff\x59\x64\x98\x36\x17\x7c\x8c\xa2\x7e\x69\x9e\x24\x01\x0a\x39\x34\xad\xdb\x14\x6d\x76\xdd\x16\x79\x93\x9e\xe9\x4e\x7e\x5d\x4e\xc9\x9f\x00\x00\x00\xff\xff\x73\x2a\x82\xe7\x85\x05\x00\x00" +var _lockedtokensStakerStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\x4d\x6f\xda\x40\x10\xbd\xfb\x57\x4c\x39\x54\xe6\x10\xa7\x87\xaa\x87\x08\x1a\x91\x00\x69\x04\x32\x08\x93\x7e\x1c\x17\x7b\xfc\x21\x96\x5d\x6b\x3d\x2e\x54\x88\xff\x5e\xed\xae\x6d\x6c\x27\x91\xaa\xfa\x62\xf0\xbc\x79\xef\xcd\xcc\xcb\x0e\xb9\x54\x04\x73\x2e\x8f\x5b\xb9\x47\x01\xb1\x92\x07\xf8\x74\x9a\x2f\x57\x3f\xb6\xab\xc5\xcc\x9f\x4c\xa7\x9b\x59\x10\x38\x35\xb0\x14\x49\xb6\xe3\xd8\x05\xbf\xf8\x4f\xcf\x0f\xcb\x59\xa7\xa1\xee\x58\xca\x70\x8f\x91\xc1\x17\x75\xc3\x72\xf5\xb8\x98\x4d\xdf\xe2\x0f\x88\xed\x33\x91\xac\x95\x3c\xfd\xa9\xd1\xc1\x76\xb2\x78\xf6\x9f\xd6\x9b\xd5\xcf\x5f\x0d\x3b\x29\x26\x0a\x16\x52\x26\x85\xcb\x0e\xb2\x14\x74\x07\x2f\xf3\xec\xf4\xe5\xf3\x10\xce\x8e\x03\x00\xc0\x91\x20\x95\x3c\x42\xb5\xc1\xf8\x0e\x3e\xb6\x9d\x78\xe6\xf5\xcd\x54\xaf\xe8\xdf\xac\xe4\x64\xc1\xcd\x46\xbc\xef\xfa\xa3\xc5\xe4\x0a\x73\xa6\xd0\x65\x61\x68\x15\x27\x25\xa5\x13\xfb\x47\xcb\x42\xf5\x14\xc8\x63\xaf\x91\x86\x31\x54\x0d\xde\x4e\x2a\x25\x8f\xa3\x77\xad\x7c\x75\xf5\xcc\x77\xf0\x5e\x3d\x20\xa9\x58\x82\x6b\x46\xe9\xb0\x51\xd3\xcf\xfd\x3d\xe4\x4c\x64\xa1\x3b\x78\x94\x25\x8f\x40\x48\x02\x2b\x06\x0a\x63\x54\x28\x42\x04\x92\xd0\xe2\x1a\x0c\x9d\xae\xe1\x7a\xfa\x37\xfc\xf6\xb6\x51\xdb\xbc\x2d\xac\x9f\xdb\xb8\xae\x9b\xf2\x3f\x5b\xd3\x6d\x40\x26\x4a\x46\xfc\xea\x75\x60\x39\x2e\xd6\x22\x9e\x30\x2c\x09\x5b\x1b\xd6\xd7\x2a\x88\xed\x51\xd9\xa8\x8c\x7b\x3b\xaf\x9c\x07\x06\xe2\xb6\x26\xd5\x8d\xdc\x6c\xf7\x81\x71\xa6\xb7\xf2\xaa\x35\x41\xb2\xfb\xaf\x2e\x5b\x01\xdb\x2c\x59\x0c\x36\x74\x30\x1a\xf7\xe8\xce\x4e\x67\xfa\x96\x49\xcf\xfc\xf6\xd1\x6e\xaa\x68\x62\x6b\xdf\x2d\xf6\x0b\x20\x2f\x50\x8b\xb8\x15\x08\x6e\xba\x2a\x43\xad\xdb\x39\x9a\xb7\xab\x2b\x7d\x03\xdd\xe1\x22\xcc\x65\x91\x51\x75\xc0\xd1\x4d\x97\xe4\x98\x51\x1a\x29\x76\xec\x79\x7b\x25\x3f\xfc\xef\x21\xdb\x6d\xfd\x81\xcf\x9d\x6a\x15\x1a\x5f\x12\xa0\x90\x65\x92\xda\xa4\x14\x3a\xc6\x46\xe4\xc3\xe0\x4a\x77\xa9\xe2\x72\x71\xfe\x06\x00\x00\xff\xff\x31\x42\x9b\x1e\xd2\x04\x00\x00" func lockedtokensStakerStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4360,11 +4340,11 @@ func lockedtokensStakerStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0x94, 0xa9, 0xe1, 0x94, 0x21, 0x96, 0x84, 0xaa, 0x9a, 0xa0, 0xb6, 0xdb, 0x1c, 0x29, 0x14, 0x18, 0x54, 0xdd, 0x63, 0xda, 0x32, 0x1c, 0xa8, 0xae, 0xbc, 0x10, 0x74, 0xb7, 0x33, 0xdf, 0x90}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf9, 0x76, 0x5e, 0x6f, 0x41, 0xe5, 0xe9, 0x35, 0x96, 0x1e, 0x65, 0x98, 0x9a, 0x42, 0xc8, 0xf6, 0xca, 0x37, 0x27, 0x38, 0x8d, 0x70, 0xfb, 0x14, 0xf8, 0xe, 0x2b, 0x5c, 0xca, 0xd4, 0x80, 0x73}} return a, nil } -var _lockedtokensStakerStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x6b\x83\x40\x10\xc5\xef\x7e\x8a\xc1\x43\x50\x28\x9e\x4a\x0f\xa1\x69\x68\x0b\xa1\x87\x42\x43\xd2\x3f\xe7\x89\x8e\x71\xd1\xec\xc8\x38\x92\x94\x92\xef\x5e\xdc\x35\xc6\xb4\xf4\xd8\xbd\xac\xcc\xbe\x79\xf3\xf3\xed\x9a\x5d\xcd\xa2\xf0\xcc\x69\x49\xd9\x2b\x97\x64\x1b\xc8\x85\x77\x10\x8e\x4b\x61\xd0\xeb\xd6\x8a\xa5\xb1\xdb\xa5\xf0\xe1\xb3\xd7\x8d\x4b\x83\x6e\xd1\xda\xad\xd9\x54\xe4\xda\x7b\xe1\x45\x2d\x0c\x02\x15\xb4\x0d\xa6\x6a\xd8\x46\xb8\xe3\xd6\xea\x14\xde\x16\xe6\x70\x73\x1d\xc3\x57\x10\x00\x00\x54\xa4\x50\x70\x95\x91\xac\x28\x9f\x02\xb6\x5a\x44\x63\xae\xc4\x6d\x2f\x35\x09\x76\x36\xcd\xd5\xe5\xe0\xe4\xc3\x68\x91\x09\xee\x63\x98\xfc\x6e\x7b\x72\xc6\x7e\x50\x2d\x54\xa3\x50\x84\x69\xea\x41\xdc\xa8\x07\x16\xe1\xfd\x3b\x56\x2d\xc5\x30\xb9\xf7\x67\x1d\x1c\xf4\xab\xa1\x2a\x4f\x06\x40\x98\x41\xdf\x9f\x34\xca\x82\x5b\x4a\x36\xce\xe1\xf6\x3f\xc0\xef\xa2\x2e\xd6\x29\xfc\x75\xbe\xf6\x08\x4b\xd4\x22\x1e\x80\xbb\x35\x9f\x43\x8d\xd6\xa4\x51\xf8\xc8\x6d\x95\x81\x65\x05\xcf\x09\x42\x39\x09\xd9\x94\x40\x19\x46\x5e\xa1\x77\x38\xfa\xb0\xe8\x40\x69\xab\x34\xca\xa1\xbb\xa7\x46\xb1\x24\xf1\x2f\x63\xf6\x23\x99\x3e\x87\xb5\x93\x44\x71\x70\x0e\xf0\xdc\x94\xb8\xef\x15\xed\x51\xb2\xd3\xff\x0c\xef\xc2\xef\x27\x8a\x63\xf0\x1d\x00\x00\xff\xff\xd0\xbf\x36\xd9\xb7\x02\x00\x00" +var _lockedtokensStakerStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6b\xc2\x50\x0c\xc7\xef\xfd\x2b\x82\x87\x51\x2f\x65\x87\xb1\x83\xcc\x49\x51\xf7\x03\x45\xa5\xcf\xc1\x76\x7c\x7b\x4d\xb5\xb4\xbe\x94\x34\xc5\x8e\xe1\xff\x3e\xda\xd7\xaa\x0c\xcc\x25\x2d\xf9\xe6\x9b\x7c\xf2\xd2\x43\x41\x2c\xb0\x24\x93\x61\xbc\xa5\x0c\x6d\x09\x09\xd3\x01\xee\xeb\xe5\x7a\xba\x98\xcf\xb6\xeb\xc5\x7c\x15\xce\x66\xd1\x5c\x29\xaf\x53\x2b\xd1\x59\x6a\x77\x1b\xa6\xfa\xa7\x57\xab\x6d\xb8\x78\x5f\xbd\x6e\xa2\xf5\xe7\x57\x2f\xf7\x84\xb5\x2d\xb5\x91\x94\xac\xaf\x0f\x54\x59\x19\xc1\xc7\x4b\x5a\x3f\x3e\x0c\xe1\xd7\xf3\x00\x00\x72\x14\xd8\x53\x1e\x23\x47\x98\x8c\xe0\xee\x7a\x93\xa0\x4d\x6f\x6d\xd5\xa9\x0b\xc6\x42\x33\xfa\xda\x18\xe7\x16\x56\xb2\x0f\xdd\x4f\x63\x09\x5d\x94\x98\x27\xc1\xd9\x16\xc6\xd0\x35\x04\xdf\xc4\x4c\xc7\xa7\x9b\x63\x9e\xfd\x86\x67\x04\xb7\xea\x4a\x88\xf5\x0e\x37\x5a\xf6\xc3\xf3\xb4\x26\x26\x13\x28\xb4\x4d\x8d\x3f\x98\x52\x95\xc7\x60\x49\xc0\x0d\x03\xc6\x04\x19\xad\x41\x10\x82\x2b\xaf\x81\x73\x38\x39\x34\xac\xd1\x54\x82\x57\x10\xcd\x69\x4a\xd1\x19\xb2\xbb\xf4\xf8\x1f\x56\x07\xa3\x5a\x89\x3f\xf4\x2e\xf4\x97\xa6\xa0\xfd\x8e\xf0\xa8\x39\xee\x79\xce\x4f\xe1\x72\xbf\xc5\xc9\xfb\x0b\x00\x00\xff\xff\x4c\x01\x8a\x3b\x0d\x02\x00\x00" func lockedtokensStakerStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4380,11 +4360,11 @@ func lockedtokensStakerStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0xa0, 0x71, 0x36, 0x7, 0x30, 0xc6, 0x7b, 0x66, 0x12, 0xac, 0xed, 0xc2, 0xbc, 0x68, 0x9a, 0xe6, 0xbd, 0xa3, 0x1, 0xa2, 0x22, 0x15, 0xe4, 0xda, 0xdd, 0xae, 0xe4, 0x5c, 0xa2, 0x96, 0x31}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2d, 0x5f, 0x47, 0xa5, 0x4b, 0xa0, 0x20, 0x8f, 0xd4, 0xc8, 0xff, 0x36, 0x18, 0xd, 0x76, 0xea, 0x11, 0x69, 0x2a, 0x66, 0x7f, 0xb9, 0xbb, 0xec, 0x61, 0xba, 0x59, 0xc0, 0x50, 0x23, 0xa6, 0x12}} return a, nil } -var _lockedtokensStakerStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6b\xe3\x40\x0c\x85\xef\xfe\x15\xc2\x87\x60\xc3\xe2\xd3\xb2\x87\xb0\xd9\xb0\x2d\x84\x1e\x0a\x0d\x4d\xd3\x9e\x15\x5b\x8e\x07\x3b\x23\x23\xcb\x24\xa5\xe4\xbf\x17\xcf\x4c\x1d\xa7\xa5\xc7\xce\x45\x41\xf3\xf4\xf4\xe5\x79\xcc\xa1\x65\x51\xb8\xe7\xbc\xa6\xe2\x89\x6b\xb2\x1d\x94\xc2\x07\x88\xa7\xad\x38\x0a\xba\x8d\x62\x6d\xec\x7e\x2d\x7c\x7a\x0d\xba\x69\x6b\xd4\xad\x7a\xbb\x37\xbb\x86\xdc\x78\x10\x5e\xf5\xe2\x28\x52\x41\xdb\x61\xae\x86\x6d\x82\x07\xee\xad\xce\x61\xbb\x32\xa7\x3f\xbf\x53\x78\x8b\x22\x00\x80\x86\x14\x2a\x6e\x0a\x92\x47\x2a\xe7\x80\xbd\x56\xc9\x94\x2b\x73\xe5\xa1\x25\xc1\xc1\xa6\xfb\x75\xbd\x38\x7b\x31\x5a\x15\x82\xc7\x14\x66\x5f\xc7\xee\x9c\xb1\x5f\xd4\x0a\xb5\x28\x94\x60\x9e\x7b\x10\xb7\xea\x86\x45\xf8\xf8\x8c\x4d\x4f\x29\xcc\xfe\xfb\xbb\x01\x0e\xc2\xe9\xa8\x29\xb3\x11\x10\x16\x10\xe6\xb3\x4e\x59\x70\x4f\xd9\xce\x39\xfc\xfd\x09\xf0\x7f\xc9\x10\xeb\x1c\xbe\xbb\xdf\x78\x84\x35\x6a\x95\x8e\xc0\xc3\x59\x2e\xa1\x45\x6b\xf2\x24\xbe\xe5\xbe\x29\xc0\xb2\x82\xe7\x04\xa1\x92\x84\x6c\x4e\xa0\x0c\x13\xaf\xd8\x3b\x9c\x7d\x58\x74\xa2\xbc\x57\x9a\xe4\x30\x7c\xa7\x4e\xb1\x26\xf1\x2f\x63\xf1\x29\x99\x90\xc3\xc6\x49\x92\x34\xba\x04\x78\x19\xca\xdc\xef\xad\x75\x25\xfc\x9f\xf1\x5d\xf8\xfa\x41\x71\x8e\xde\x03\x00\x00\xff\xff\xff\x8b\x86\xf7\xb7\x02\x00\x00" +var _lockedtokensStakerStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6a\xc2\x40\x10\xc6\xef\xfb\x14\x83\x87\x12\x2f\xa1\x87\xd2\x83\xd4\x4a\x50\xfb\x07\x45\xc5\x55\x68\x8f\xdb\x75\xa2\x21\x71\x27\x4c\x26\x34\xa5\xf8\xee\x25\xd9\xa8\xa1\xe0\x5c\x26\x61\xbe\xf9\x66\x7e\xb3\xc9\x31\x27\x16\x98\x93\x4d\x71\xb7\xa1\x14\x5d\x01\x31\xd3\x11\xee\xab\xf9\x72\x3c\x9b\x4e\x36\xcb\xd9\x74\x11\x4d\x26\xeb\xa9\xd6\xaa\x55\x6b\x31\x69\xe2\xf6\x2b\xa6\xea\xe7\xac\xd6\x9b\x68\xf6\xbe\x78\x5d\xad\x97\x1f\x9f\x67\xb9\x12\x36\xae\x30\x56\x12\x72\x81\x39\x52\xe9\x64\x00\xdb\x97\xa4\x7a\x7c\xe8\xc3\xaf\x52\x00\x00\x19\x0a\x1c\x28\xdb\x21\xaf\x31\x1e\xc0\x5d\x77\x93\xb0\x49\x6f\x4d\xd5\xab\x73\xc6\xdc\x30\x06\xc6\x5a\xef\x16\x95\x72\x88\xfc\x4f\x6d\x09\x6d\x14\x98\xc5\xe1\xc5\x16\x86\xd0\x36\x84\x5f\xc4\x4c\xdf\x4f\x37\xc7\x3c\x07\x35\xcf\x00\x6e\xd5\xb5\x10\x9b\x3d\xae\x8c\x1c\xfa\x97\x69\x75\x8c\x46\x90\x1b\x97\xd8\xa0\x37\xa6\x32\xdb\x81\x23\x01\x3f\x0c\x18\x63\x64\x74\x16\x41\x08\x3a\x5e\x3d\xef\x70\xf2\x68\x58\xa1\x2d\x05\x3b\x10\xf5\x69\x0a\x31\x29\xb2\xbf\xf4\xf0\x1f\x56\x0b\xa3\x1b\x49\xd0\x57\x57\xfa\x6b\x53\xd8\x7c\x6f\x5d\x93\x5a\x9e\xcb\x53\xf8\x7c\xde\xe2\xa4\xfe\x02\x00\x00\xff\xff\x63\x35\x3a\x15\x0d\x02\x00\x00" func lockedtokensStakerStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4400,11 +4380,11 @@ func lockedtokensStakerStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x12, 0xf1, 0x86, 0x58, 0x5d, 0x91, 0x7f, 0x1a, 0x15, 0x92, 0xc5, 0xf3, 0xa7, 0xa6, 0xd3, 0x7a, 0x72, 0xd0, 0x90, 0x7c, 0xc2, 0x70, 0x26, 0x1f, 0xbc, 0xcf, 0x67, 0xa, 0x38, 0x17, 0x82, 0xc7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0x1d, 0x1, 0x11, 0xf9, 0x79, 0xef, 0xb3, 0xce, 0x49, 0x93, 0x62, 0xfc, 0x29, 0x5c, 0xc2, 0x92, 0xc4, 0xa4, 0xc9, 0x40, 0x13, 0x75, 0x6, 0x2a, 0xf, 0x2c, 0x4e, 0x71, 0xae, 0x7e, 0xb2}} return a, nil } -var _lockedtokensStakerUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x51\x4d\x4b\xf3\x40\x10\xbe\xef\xaf\x18\x72\x28\x1b\x78\xc9\x0f\x28\x6f\x2d\x55\x10\x0f\x82\xc5\x8a\x9e\xa7\x9b\x49\x13\xb2\xdd\x09\x93\x59\x5a\x91\xfe\x77\xc9\x87\x6d\xaa\x78\x74\x2e\x21\x33\xcf\x17\xcf\x56\xfb\x86\x45\xe1\x91\x5d\x4d\xf9\x0b\xd7\x14\x5a\x28\x84\xf7\x90\x4c\x57\x89\x19\x71\xf7\x31\xec\xaa\xad\xa7\x7e\x3d\x02\xaf\x76\x89\x31\x2a\x18\x5a\x74\x5a\x71\xb0\x29\x7c\x18\x03\x00\xe0\x49\xa1\x64\x9f\x93\x3c\x53\x31\x07\x8c\x5a\xda\xa9\x43\xd6\x7f\x9e\x1a\x12\xec\x88\xed\xbf\x6b\xab\xec\xad\xd2\x32\x17\x3c\xa4\x30\xfb\x49\x7b\xe8\x85\x07\xa3\x46\xa8\x41\x21\x8b\xce\x71\x0c\x3a\x5a\xdd\xb2\x08\x1f\x5e\xd1\x47\x4a\x61\xb6\x1a\x6e\x5d\x38\x18\xa7\x25\x5f\x64\xe7\x80\xb0\x80\x91\x9f\xb5\xca\x82\x3b\xca\xb6\xbd\xc2\xff\xbf\x08\x7e\x63\xbb\x22\xe7\xf0\xdb\x7d\x33\x44\x58\xa3\x96\xe9\x39\x70\x37\xcb\x25\x34\x18\x2a\x67\x93\x3b\x8e\x3e\x87\xc0\x0a\x43\x4e\x10\x2a\x48\x28\x38\x02\x65\x98\x68\x25\x83\xc2\x69\x28\x8b\x8e\xe4\xa2\xd2\xa4\x87\xee\x9d\x5a\xc5\x9a\x64\x2d\x7c\x7c\x87\xc5\xb7\x66\xc6\x1e\x36\x3d\xc4\xa6\xe6\x52\xe0\x85\x94\xc5\xd0\xff\xad\xbc\xb7\x5f\x76\x27\xf3\x19\x00\x00\xff\xff\x30\xca\xb7\x9c\x6a\x02\x00\x00" +var _lockedtokensStakerUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x41\x6b\xfa\x40\x10\xc5\xef\xfb\x29\x06\x0f\x7f\xd6\x4b\xf8\x9f\xa5\x56\x82\x4a\x5b\x14\x15\xd7\x43\x7b\xdc\xae\x13\x0d\x59\x77\xc2\x64\x42\x2d\xc5\xef\x5e\x92\x8d\x1a\x0a\xce\x65\x18\xe6\xcd\x7b\xfc\x26\x3f\x95\xc4\x02\x4b\x72\x05\xee\x77\x54\x60\xa8\x20\x63\x3a\xc1\xff\xf3\x72\x3d\x5d\xcc\x67\xbb\xf5\x62\xbe\x4a\x67\xb3\xed\xdc\x18\xd5\xa9\x8d\xd8\x22\x0f\x87\x0d\xd3\xf9\xfb\xaa\x36\xbb\x74\xf1\xb6\x7a\xd9\x6c\xd7\xef\x1f\x57\xb9\x12\xb6\xa1\xb2\x4e\x72\x0a\x7a\x08\x3f\x4a\x01\x00\x78\x14\x38\x92\xdf\x23\x6f\x31\x1b\xc1\xbf\x7e\x76\xd2\xb6\xd7\x76\x1b\xd5\x25\x63\x69\x19\xb5\x75\x8e\xea\x20\x23\x48\x6b\x39\xa6\x71\x68\x2c\xa1\xab\x0a\x7d\x96\xdc\x6c\x61\x0c\xdd\x41\xf2\x49\xcc\xf4\xf5\xf4\x30\xe6\x59\x37\x04\x23\x78\xb4\x37\x42\x6c\x0f\xb8\xb1\x72\x1c\xde\xd2\x9a\x9a\x4c\xa0\xb4\x21\x77\x7a\x30\xa5\xda\xef\x21\x90\x40\x0c\x03\xc6\x0c\x19\x83\x43\x10\x82\x9e\xd7\x20\x3a\x5c\x22\x1a\x9e\xd1\xd5\x82\x3d\x88\xe6\x35\x95\xd8\x02\x39\xfe\x76\xfc\x07\xab\x83\x31\xad\x44\x0f\xd5\x9d\xfe\x7e\x94\xd4\xa1\x9d\x52\xef\xf5\x35\xee\xa2\x7e\x03\x00\x00\xff\xff\x74\xb5\x4c\x21\xe8\x01\x00\x00" func lockedtokensStakerUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -4420,11 +4400,11 @@ func lockedtokensStakerUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdc, 0xc1, 0xaf, 0x7a, 0x10, 0xfb, 0xfd, 0x3b, 0x33, 0xc6, 0xc6, 0xce, 0xa3, 0x80, 0xcf, 0x7f, 0x17, 0xf2, 0x6f, 0xae, 0x9a, 0xba, 0x53, 0xa9, 0x11, 0x16, 0x37, 0xb0, 0x94, 0xa3, 0x4c, 0x20}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0xd3, 0x2e, 0xa, 0x8e, 0xd8, 0xe4, 0x82, 0xc3, 0xb4, 0xc9, 0x21, 0x28, 0x8, 0x53, 0xa5, 0x6d, 0xb0, 0xa8, 0x9, 0x45, 0xd8, 0x11, 0xf1, 0x8a, 0x70, 0x2d, 0x4f, 0x79, 0x43, 0x3f, 0x86}} return a, nil } -var _lockedtokensStakerUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xcd\x6a\xeb\x30\x10\x85\xf7\x7e\x8a\xc1\x8b\x60\xc3\xc5\x0f\x10\x6e\x6e\xc8\x2d\x94\x2e\x4a\x1b\x9a\xd2\xae\x15\x69\x6c\x0b\x3b\x1a\x33\x1a\xe1\x94\x92\x77\x2f\xb6\xd5\xc4\x69\xe9\xb2\xda\x18\xe6\xe7\x9c\x8f\xe3\xb1\x87\x8e\x58\xe0\x9e\x74\x83\xe6\x99\x1a\x74\x1e\x4a\xa6\x03\xa4\xf3\x52\x9a\xc4\xb9\xdb\xe0\x2a\xbb\x6f\x71\x2c\xc7\xc1\xab\x5a\x9a\x24\xc2\xca\x79\xa5\xc5\x92\xcb\x1c\xf6\x1b\x63\x18\xbd\x5f\xc2\x4e\xd8\xba\x2a\x87\xf7\x24\x01\x00\x68\x51\xa0\xa6\xd6\x20\x3f\x61\xb9\x04\x15\xa4\xce\xe6\x9e\xc5\xf8\x79\xec\x90\xd5\x20\xe5\xff\x5c\x9b\x17\xaf\x56\x6a\xc3\xaa\xcf\x61\xf1\x7d\xed\x6e\x14\x9e\x8c\x3a\xc6\x4e\x31\x66\x4a\x6b\x0a\x4e\xa2\xd5\x7f\x62\xa6\xfe\x45\xb5\x01\x73\x58\x6c\xa6\xde\x00\x07\xf1\x79\x6c\xcb\xe2\x0c\x08\x2b\x88\xfb\x85\x17\x62\x55\x61\xb1\x1f\x15\xfe\xfe\x06\xf8\xbf\x6c\x88\x76\x09\x3f\xf5\x77\x13\xc2\x56\x49\x9d\x9f\x81\x87\xb7\x5e\x43\xa7\x9c\xd5\x59\x7a\x43\xa1\x35\xe0\x48\x60\xe2\x04\xc6\x12\x19\x9d\x46\x10\x82\x99\x56\x3a\x29\x9c\xa6\xb0\xf0\x88\x3a\x08\xce\x72\x18\xfe\x93\x17\xd5\x20\x6f\x99\x8e\x6f\xb0\xfa\x92\x4c\xcc\x61\x37\x8e\x64\x79\x72\x09\xf0\xb2\x54\x84\xce\x28\xc1\x07\x94\x9e\xb8\xb1\xae\x8a\x47\x31\xbb\x8f\x4f\x8a\x53\xf2\x11\x00\x00\xff\xff\x4a\x3a\x43\x6d\x93\x02\x00\x00" +var _lockedtokensStakerUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4d\x8b\xf2\x40\x0c\x80\xef\xf3\x2b\x82\x87\x97\x7a\x29\xef\xb9\xac\x2b\x45\x85\x05\x45\xc5\xfa\x07\x66\x67\xd2\x0f\x5a\x27\x25\x93\xd2\x2e\x8b\xff\x7d\xe9\xc7\x6a\x59\x30\x97\x61\x48\xf2\x64\x9e\x49\x71\xab\x89\x05\x0e\x64\x4a\xb4\x57\x2a\xd1\x79\x48\x99\x6e\xf0\xbf\x3b\x9c\x36\xfb\xdd\xf6\x7a\xda\xef\x8e\xf1\x76\x7b\xd9\x25\x89\x52\xc2\xda\x79\x6d\xa4\x20\x17\x38\x6c\x63\x6b\x19\xbd\x8f\x20\x11\x2e\x5c\xb6\x84\x6f\xa5\x00\x00\x2a\x14\xc8\xa9\xb2\xc8\x17\x4c\x23\xf8\x37\xc7\x87\xc3\xf1\x31\x64\xc7\xea\x9a\xb1\xd6\x8c\x81\x36\x86\x1a\x27\x11\xc4\x8d\xe4\xf1\x78\xe9\x91\x30\x85\xc7\x2a\x0d\x1f\x58\x58\xc1\xd4\x10\x7e\x12\x33\xb5\x6f\x2f\xc7\xbc\x07\xbd\x52\x04\xaf\xf2\x89\x10\xeb\x0c\xcf\x5a\xf2\xe5\x63\x5a\x1f\xeb\x35\xd4\xda\x15\x26\x58\x6c\xa8\xa9\x2c\x38\x12\x18\x87\x01\x63\x8a\x8c\xce\x20\x08\xc1\x8c\xb5\x18\x09\xf7\x51\x0d\x3b\x34\x8d\xe0\x4c\xa2\xff\x1a\x2f\xba\x44\x3e\x33\x75\x5f\xb0\xfa\xa3\x35\xc9\x24\x43\x49\xb0\x54\x4f\xfb\x67\x53\xd8\xd4\x56\x0b\x1e\x51\x5a\xe2\xb2\x70\xd9\xb4\x87\xd9\x4a\x7e\x5f\x71\x57\x3f\x01\x00\x00\xff\xff\x7e\x1e\x81\xca\xe2\x01\x00\x00" func lockedtokensStakerUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -4440,11 +4420,11 @@ func lockedtokensStakerUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7d, 0xe2, 0x2b, 0x45, 0xf7, 0x48, 0x74, 0x1b, 0x7a, 0xf8, 0xba, 0x91, 0x56, 0x13, 0x38, 0x14, 0xae, 0x4d, 0x1c, 0xdf, 0x80, 0xc7, 0x48, 0xcc, 0x45, 0x7d, 0xf9, 0x69, 0x6b, 0xb, 0x49, 0x9f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xda, 0xe7, 0xc1, 0x75, 0xd6, 0x8e, 0x1a, 0x5c, 0xb2, 0x5f, 0xcd, 0xb3, 0x4f, 0xa6, 0x85, 0x5a, 0xd4, 0x54, 0x29, 0x2c, 0x6f, 0x5d, 0x2a, 0xcd, 0x98, 0x25, 0x64, 0x6c, 0xa3, 0xb7, 0x33, 0x8c}} return a, nil } -var _lockedtokensStakerWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xc1\x8e\xda\x30\x10\x86\xef\x79\x8a\x51\x0e\x28\x91\x5a\x73\xa9\x7a\x40\x50\xd4\x56\x42\x3d\x54\x2a\x82\x96\x9e\x4d\x32\x21\x11\xc6\x13\x4d\x1c\xc2\x6a\xc5\xbb\xaf\x62\x3b\x21\x64\x97\xcb\x4a\x9b\x8b\x95\x99\xf1\x3f\xdf\x3f\xe3\xe2\x54\x12\x1b\xf8\x4d\xc9\x11\xd3\xbf\x74\x44\x5d\x41\xc6\x74\x82\x70\x18\x0a\x03\x5f\xb7\x52\xd4\xd8\x90\x2f\xea\xff\x6f\x15\xb5\x3e\x14\x7b\x85\x77\x55\xc3\x58\x18\x04\x86\xa5\xae\x64\x62\x0a\xd2\x91\x3c\x51\xad\xcd\x0c\xfe\xad\x8a\xcb\xd7\x2f\x31\x3c\x07\x01\x00\x80\x42\x03\x39\xa9\x14\x79\x83\xd9\x0c\x64\x6d\xf2\x68\x48\x24\xec\xf1\xa7\x44\x96\xad\x4c\xf5\xe9\xbe\xb1\xf8\x5f\x98\x3c\x65\xd9\xc4\x30\x79\x7d\xed\x97\x15\xee\xfb\x9c\x65\xad\x8c\x6d\x33\xe9\xfd\x88\x5d\x1b\x74\x2c\x25\x63\x29\x19\x23\x99\x24\x8e\xd5\xd2\xfc\x20\x66\x6a\x76\x52\xd5\x18\xc3\xe4\xbb\xcb\xb5\xfc\xe0\xbf\x0a\x55\x26\x7a\x0f\xb0\x00\x7f\x5f\x54\x86\x58\x1e\x50\xec\xad\xc2\xfc\x23\xbc\x7d\x8b\xda\xc9\xcf\xe0\x51\x7e\xeb\x10\xd6\xd2\xe4\x71\x0f\xdc\x7e\xcb\x25\x94\x52\x17\x49\x14\xfe\xa4\x5a\xa5\xa0\xc9\x80\xe3\x04\xc6\x0c\x19\x75\x82\x60\x08\x06\x5a\x61\x1c\xdc\x7b\xee\xe6\xf9\xd8\xf2\x78\xce\x1d\xee\xd4\xd7\x4d\xb3\x2e\x6f\xd3\xef\x43\xbc\xbd\xd5\x73\xbb\xa4\xd0\xa9\x5c\x1d\x2c\x5e\x30\xa9\x0d\x0e\xd6\xd5\xbe\x84\xca\xc8\x23\xf2\x9a\xe9\xf2\x04\x8b\xd1\x02\x3d\xfb\xd6\x96\x44\x43\xcf\xb7\x4b\xa2\xf1\xab\xd9\x60\x23\x39\xed\x26\xdf\x3f\x72\x77\xc6\x6f\x8f\x4b\xa4\x58\x52\x55\x18\x3f\x8b\xf9\xe7\x51\xff\x4e\x7b\xac\xd6\xf9\xba\x06\x2f\x01\x00\x00\xff\xff\x84\xb1\x80\xaf\xcd\x03\x00\x00" +var _lockedtokensStakerWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x4f\x8f\xa2\x40\x10\xc5\xef\x7c\x8a\x8a\x87\x0d\x1c\x16\xf7\xb0\xd9\x83\xd1\x35\xc6\x3f\x99\x44\x33\x1a\x71\x66\xce\x3d\x50\x0c\x44\xa4\x48\x51\x08\x93\x89\xdf\x7d\x02\x0d\x88\x44\x2f\xd3\x97\x0e\xd4\xeb\x7a\xbf\x7a\xdd\xe1\x29\x21\x16\xd8\x90\x7b\x44\xef\x40\x47\x8c\x53\xf0\x99\x4e\xf0\xa7\xd8\x6c\xe7\xeb\xe5\xe2\xb0\x5d\x2f\x9f\x67\x8b\xc5\x7e\xe9\x38\x46\xad\x5e\x45\x94\x57\xda\x46\xba\xda\x6c\xdf\x6e\x84\x86\xb0\x8a\x53\xe5\x4a\x48\xb1\xa9\x4e\x94\xc5\x32\x82\x97\x55\x58\xfc\xfb\x6b\xc1\x97\x61\x00\x00\x44\x28\x10\x50\xe4\x21\xef\xd1\x1f\xc1\xaf\x2e\x83\x5d\x6d\x4f\x55\xb5\x15\x9f\x55\x16\x89\xd6\xb6\x04\xf6\x6b\xf9\x53\x37\x4c\x18\x13\xc5\x68\x2a\xd7\xd5\x86\xb3\x4c\x82\x99\xfe\x28\x5d\xa1\x5e\x29\x46\xbe\xdd\x3a\xc3\x04\xea\x03\xf6\x3b\x31\x53\x3e\x7e\x48\xf2\xdf\x2c\xe7\x1d\xc1\xa3\xba\x23\xc4\xea\x03\x77\x4a\x02\xab\x75\x2b\xd7\x74\x0a\x89\x8a\x43\xd7\x1c\xcc\x29\x8b\x3c\x88\x49\x40\x9b\x01\xa3\x8f\x8c\xb1\x8b\x20\x04\x9d\x5e\x03\xcb\xb8\x05\x6e\xa6\xbf\xc3\xdb\x4b\xa3\xc1\x1c\xa6\x9a\x67\xe8\x37\xf5\xaa\xfc\x33\xb4\xeb\x9d\x9f\x55\x94\xe1\x40\x77\xb9\x68\x48\x2c\xd0\xcd\x04\x3b\x19\x97\xf7\x95\x8a\x3a\x22\xef\x98\x8a\x4f\x98\xf4\x52\xaf\xd9\x9d\x4a\x62\x76\x67\xbd\x1e\xb2\xf3\x50\x02\x8f\x55\xbe\xc7\x5c\xb1\xd7\x24\xde\xbe\x27\xbd\x5b\xf7\x63\xb2\x3d\x4c\x28\x0d\xa5\xce\x62\xfc\xbb\xe7\xdf\xf4\xee\x77\x6b\xe6\xba\x18\xdf\x01\x00\x00\xff\xff\x5e\xcd\xa6\x9b\x1b\x03\x00\x00" func lockedtokensStakerWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4460,11 +4440,11 @@ func lockedtokensStakerWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0xee, 0xf6, 0x2e, 0xef, 0x76, 0x89, 0x30, 0x4a, 0x84, 0xd5, 0xa7, 0x97, 0xb6, 0xc8, 0x9c, 0xfc, 0xc3, 0xc6, 0xd8, 0x30, 0x74, 0x8, 0xb5, 0x6e, 0x92, 0x38, 0x2d, 0xb6, 0x35, 0xeb, 0x38}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8d, 0x8a, 0xc1, 0xc0, 0x10, 0xe2, 0xf1, 0x46, 0xbe, 0x81, 0x21, 0x16, 0x25, 0x90, 0x8, 0x82, 0x70, 0x2d, 0xac, 0x24, 0xc8, 0x11, 0xcc, 0x3e, 0xa1, 0x71, 0xa3, 0x3f, 0xf8, 0x5e, 0x35, 0xa0}} return a, nil } -var _lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x6b\x83\x40\x10\xc5\xef\xfb\x29\x06\x0f\x41\xa1\x78\x2a\x3d\x84\xa6\xa1\x2d\x84\x1e\x0a\x0d\x49\xff\x9c\x27\xeb\x18\x25\x66\x47\xc6\x11\x53\x4a\xbe\x7b\xd1\x35\xc6\xb4\xf4\xd8\xbd\x2c\xcc\xce\xbc\xf7\x9b\xa7\xf9\xbe\x64\x51\x78\x66\xbb\xa3\xe4\x95\x77\xe4\x2a\x48\x85\xf7\x10\x8c\x4b\x81\xe9\xfb\x16\xb5\xdb\xe6\x9b\x82\xba\x72\xdf\x78\x51\x0b\x8c\x51\x41\x57\xa1\xd5\x9c\x5d\x88\x7b\xae\x9d\x4e\xe1\x6d\x91\x1f\x6e\xae\x23\xf8\x32\x06\x00\xa0\x20\x85\x8c\x8b\x84\x64\x45\xe9\x14\xb0\xd6\x2c\x1c\xfb\xc5\xdd\xf5\x52\x92\x60\x2b\x53\x5d\x5d\x1a\xc7\x1f\xb9\x66\x89\x60\x13\xc1\xe4\xf7\xd8\x53\x27\xec\x8d\x4a\xa1\x12\x85\x42\xb4\xd6\x83\x74\x56\x0f\x2c\xc2\xcd\x3b\x16\x35\x45\x30\xb9\xf7\x6f\x2d\x1c\xf4\xa7\xa2\x22\x8d\x07\x40\x98\x41\x3f\x1f\x57\xca\x82\x5b\x8a\x37\x9d\xc2\xed\x7f\x80\xdf\x85\x6d\xac\x53\xf8\xeb\x7d\xed\x11\x96\xa8\x59\x34\x00\xb7\x67\x3e\x87\x12\x5d\x6e\xc3\xe0\x91\xeb\x22\x01\xc7\x0a\x9e\x13\x84\x52\x12\x72\x96\x40\x19\x46\x5a\x81\x57\x38\xfa\xb0\xe8\x40\xb6\x56\x1a\xe5\xd0\x7e\xa7\x4a\x71\x47\xb2\x14\x3e\x7c\xc2\xec\x47\x32\x7d\x0e\xeb\xae\x25\x8c\xcc\x39\xc0\xf3\x50\xdc\xf4\x3b\xaf\xa8\x41\x49\x4e\x2b\x0d\xbf\x86\xbf\x4f\x20\x47\xf3\x1d\x00\x00\xff\xff\x3e\x0d\x58\x54\x92\x02\x00\x00" +var _lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6b\xc2\x50\x0c\xc7\xef\xfd\x2b\x82\x87\x51\x2f\x65\x87\xb1\x83\xcc\x49\x51\xf7\x03\x45\xa5\x75\xb0\x1d\xdf\x5e\x53\x5b\x5a\x5f\x4a\x9a\xd2\x8e\xe1\xff\x3e\xea\x6b\xb5\x0c\xcc\x25\x3c\xf2\xcd\x37\xf9\xe4\xa5\xc7\x82\x58\x60\x4d\x3a\xc3\x68\x4f\x19\x9a\x12\x62\xa6\x23\xdc\x37\xeb\xed\x7c\xb5\x5c\xec\xb7\xab\xe5\xc6\x5f\x2c\x82\x65\x18\x3a\x9d\x3a\x14\x95\xa5\xe6\xb0\x63\x6a\x7e\x7a\x75\xb8\xf7\x57\xef\x9b\xd7\x5d\xb0\xfd\xfc\xea\xe5\x8e\xb0\x32\xa5\xd2\x92\x92\x71\xd5\x91\x2a\x23\x13\xf8\x78\x49\x9b\xc7\x87\x31\xfc\x3a\x0e\x00\x40\x8e\x02\x09\xe5\x11\x72\x80\xf1\x04\xee\x86\x9b\x78\xe7\xf4\x76\xae\x5a\x75\xc1\x58\x28\x46\x57\x69\x6d\xdd\xfc\x4a\x12\xdf\x3e\x5a\x4b\xe8\xa2\xc4\x3c\xf6\x2e\xb6\x30\x85\xae\xc1\xfb\x26\x66\xaa\x9f\x6e\x8e\x79\x76\x5b\x9e\x09\xdc\xaa\x87\x42\xac\x0e\xb8\x53\x92\x8c\x2f\xd3\xda\x98\xcd\xa0\x50\x26\xd5\xee\x68\x4e\x55\x1e\x81\x21\x01\x3b\x0c\x18\x63\x64\x34\x1a\x41\x08\x06\x5e\x23\xeb\x70\xb2\x68\xd8\xa0\xae\x04\x07\x10\xed\x69\x4a\x51\x19\xb2\xbd\xf4\xf4\x1f\x56\x07\x13\x9e\x25\xee\xd8\xb9\xd2\x5f\x9b\xbc\x3a\x95\x24\x62\x55\x07\x58\x2b\x8e\x7a\xa4\xcb\x6f\xd8\xdc\x2f\x72\x72\xfe\x02\x00\x00\xff\xff\xd5\xd5\xf1\x96\x10\x02\x00\x00" func lockedtokensStakerWithdraw_rewarded_tokens_lockedCdcBytes() ([]byte, error) { return bindataRead( @@ -4480,11 +4460,11 @@ func lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x13, 0xa5, 0xaf, 0x96, 0x28, 0x9e, 0xf5, 0x9, 0x1d, 0x5, 0x22, 0x6d, 0x55, 0xb5, 0x0, 0x1e, 0x47, 0xd, 0x10, 0x2b, 0x1b, 0xe6, 0x12, 0x5c, 0x4b, 0xc4, 0x95, 0x48, 0xf8, 0x64, 0x8c, 0x43}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0xae, 0xac, 0xc7, 0x74, 0x93, 0x11, 0x75, 0xd9, 0x15, 0x9f, 0x5d, 0x7e, 0x5d, 0xa1, 0xd1, 0x7b, 0x82, 0x30, 0xf4, 0xb2, 0xda, 0xf6, 0xce, 0x9f, 0x28, 0xd0, 0xa9, 0xa0, 0xd5, 0x91, 0x1b}} return a, nil } -var _lockedtokensStakerWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6b\xe3\x40\x0c\x85\xef\xf3\x2b\x84\x0f\xc1\x86\xc5\xa7\x65\x0f\x61\xb3\x61\x5b\x08\x3d\x14\x1a\x9a\xa6\x3d\x2b\x63\x39\x36\x71\x46\x46\x96\x49\x4a\xc9\x7f\x2f\x9e\x99\x26\x4e\x4b\x8f\x9d\xcb\x80\x46\x7a\xef\xd3\xb3\xeb\x7d\xcb\xa2\x70\xcf\x76\x47\xc5\x13\xef\xc8\x75\x50\x0a\xef\x21\x19\x97\x12\x13\xfb\x16\xbd\xdb\xd6\x9b\x86\x7c\x39\x36\x5e\xd5\x12\x63\x54\xd0\x75\x68\xb5\x66\x97\xe2\x9e\x7b\xa7\x53\x58\x2f\xea\xe3\x9f\xdf\x19\xbc\x19\x03\x00\xd0\x90\x42\xc5\x4d\x41\xf2\x48\xe5\x14\xb0\xd7\x2a\x1d\xfb\xe5\xfe\x7a\x68\x49\x70\x90\xe9\x7e\x5d\x1b\xe7\x2f\xb5\x56\x85\xe0\x21\x83\xc9\xd7\xb1\x3b\x2f\x1c\x8c\x5a\xa1\x16\x85\x52\xb4\x36\x80\x78\xab\x1b\x16\xe1\xc3\x33\x36\x3d\x65\x30\xf9\x1f\xde\x06\x38\x88\xa7\xa3\xa6\xcc\xcf\x80\x30\x83\x38\x9f\x77\xca\x82\x5b\xca\x37\x5e\xe1\xef\x4f\x80\xff\x4b\x87\x58\xa7\xf0\xdd\xfb\x2a\x20\x2c\x51\xab\xec\x0c\x3c\x9c\xf9\x1c\x5a\x74\xb5\x4d\x93\x5b\xee\x9b\x02\x1c\x2b\x04\x4e\x10\x2a\x49\xc8\x59\x02\x65\x18\x69\x25\x41\xe1\x14\xc2\xa2\x23\xd9\x5e\x69\x94\xc3\xf0\x9d\x3a\xc5\x1d\xc9\x52\xf8\xf8\x0a\xb3\x4f\xc9\xc4\x1c\x56\xbe\x25\xcd\xcc\x25\xc0\xcb\x50\x7e\x88\x3b\xaf\x9d\xaf\xc6\x95\xce\xbf\x46\xb8\x3f\x40\x4e\xe6\x3d\x00\x00\xff\xff\x11\x39\xe8\x7a\x92\x02\x00\x00" +var _lockedtokensStakerWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4f\x6b\xf2\x40\x10\xc6\xef\xf9\x14\x83\x87\x97\x78\x09\xef\xa1\xf4\x20\xb5\x12\xd4\xfe\x41\x51\x31\x0a\xed\x71\xbb\x99\x98\x25\x71\x27\x4c\x26\x98\x52\xfc\xee\x25\xd9\xa8\xa1\xe0\x5c\x86\x64\x9e\x79\x66\x7e\xb3\xe6\x58\x10\x0b\x2c\x49\x67\x18\xef\x28\x43\x5b\x42\xc2\x74\x84\xff\xf5\x72\x3d\x5d\xcc\x67\xbb\xf5\x62\xbe\x0a\x67\xb3\xed\x3c\x8a\xbc\x4e\x1d\x89\xca\x8c\x3d\x6c\x98\xea\xef\x8b\x3a\xda\x85\x8b\xf7\xd5\xeb\x66\xbb\xfe\xf8\xbc\xc8\x3d\x61\x65\x4b\xa5\xc5\x90\xf5\xd5\x91\x2a\x2b\x23\xd8\xbf\x98\xfa\xf1\x61\x08\x3f\x9e\x07\x00\x90\xa3\x40\x4a\x79\x8c\xbc\xc5\x64\x04\xff\xfa\x9b\x04\x6d\x7a\x6b\xab\x4e\x5d\x30\x16\x8a\xd1\x57\x5a\x3b\xb7\xb0\x92\x34\x74\x1f\x8d\x25\x74\x51\x62\x9e\x04\x57\x5b\x18\x43\xd7\x10\x7c\x11\x33\x9d\x9e\xee\x8e\x79\xf6\x1b\x9e\x11\xdc\xab\x47\x42\xac\x0e\xb8\x51\x92\x0e\xaf\xd3\x9a\x98\x4c\xa0\x50\xd6\x68\x7f\x30\xa5\x2a\x8f\xc1\x92\x80\x1b\x06\x8c\x09\x32\x5a\x8d\x20\x04\x3d\xaf\x81\x73\x38\x3b\x34\xac\x51\x57\x82\x3d\x88\xe6\x34\xa5\xa8\x0c\xd9\x5d\x7a\xfc\x07\xab\x83\x89\x5a\x89\x3f\xf4\x6e\xf4\xb7\xa6\xe0\x64\x24\x8d\x59\x9d\xf6\xb6\xfd\xdb\x21\x5d\x5f\xc3\xe5\xcb\x22\x67\xef\x37\x00\x00\xff\xff\xfa\xe1\x41\xb8\x10\x02\x00\x00" func lockedtokensStakerWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4500,11 +4480,11 @@ func lockedtokensStakerWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0x46, 0x2b, 0xa7, 0xad, 0xfb, 0xcd, 0x79, 0xce, 0xdd, 0xec, 0x78, 0xff, 0x7c, 0x42, 0x3d, 0x6e, 0x19, 0xe, 0x4c, 0x1f, 0x75, 0xdb, 0xd5, 0x69, 0xe9, 0x9c, 0xc8, 0x54, 0xbd, 0x4f, 0xcb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0xec, 0x5f, 0x9a, 0x23, 0xd5, 0x31, 0x36, 0x95, 0x2c, 0xc0, 0x94, 0x2c, 0x22, 0xb0, 0x1e, 0xdd, 0x3, 0x79, 0xff, 0x8e, 0x9c, 0xf3, 0x37, 0xf, 0xb3, 0xc2, 0x8d, 0xb4, 0x76, 0xaa, 0x4f}} return a, nil } -var _lockedtokensUserDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x92\xbf\x6e\xdc\x30\x0c\xc6\x77\x3f\x05\xe1\xe1\x60\x0f\x55\x96\xa2\xc3\x21\x6d\xd0\x16\x08\x3a\x74\x28\xda\x34\x9d\x19\x99\x8e\x85\x93\x45\x43\xa2\xce\x57\x14\xf7\xee\x85\xe4\x3f\x38\x0f\x1e\xa2\x45\x30\xf9\x91\xfc\x7d\xb4\x4c\x3f\xb0\x17\x78\x8c\xee\xd5\xbc\x58\x7a\xe2\x13\x39\x68\x3d\xf7\x50\x6e\x62\x65\xb1\x28\x2d\x8f\x1b\xd5\xf2\xbd\x2a\xbe\xb3\x3e\x51\x93\x63\x61\x16\xdd\x86\xca\xa2\x10\x8f\x2e\xa0\x16\xc3\xae\xc2\x9e\xa3\x93\x23\xfc\x7e\x34\x97\x0f\xef\x6b\xf8\x57\x14\x00\x00\x96\x04\x3a\xb6\x0d\xf9\x9f\xd4\x1e\xe1\x70\xdb\x41\xe5\xeb\x5b\xce\xae\xe2\x33\x46\x2b\x59\x8b\x51\xba\x6a\x03\xaf\xfe\x18\xe9\x1a\x8f\x63\x0d\x87\x95\x57\x3d\xa7\x8a\x69\xda\xe0\x69\x40\x4f\x15\x6a\x2d\x73\x83\x2f\xec\x3d\x8f\xcf\x68\x23\xd5\x70\xf8\xac\x75\xc2\x4c\x78\x30\x9f\x40\xb6\x55\x2b\x22\x7c\x84\x54\xac\x82\xb0\xc7\x57\x52\x2f\xb9\xfc\x7e\x97\xfb\x53\x95\x36\x73\x84\xbd\xfc\xaf\xa9\xcf\x0f\x94\xae\x5e\x47\xa6\xf3\xf0\x00\x03\x3a\xa3\xab\xf2\xa9\x23\x18\xbc\xe9\xd1\xff\x85\x18\xc8\x27\x80\x04\x09\x0d\x53\x00\xc7\x02\x1d\x9e\x09\xd0\x01\x86\xc0\xda\xa0\x50\x03\x36\xcf\x5b\xa4\x65\x5d\x6c\xfd\x2c\x5b\xdc\xb1\xf3\xa6\xd5\x2e\x16\xef\xe6\x26\x77\xed\x92\xcf\xe9\x3d\x5b\x5f\x39\xda\x26\xe3\x4f\x43\x21\x95\x81\xe4\x27\x97\xf1\xc0\x53\x5b\x4e\xd5\xd7\x09\x9f\x2e\xa4\xa3\xd0\xee\xcf\x51\x0d\x0d\x1c\x8c\xcc\x40\xf7\xef\x36\x5e\xd5\x38\x5b\x58\xdf\xe2\x74\xd7\xcb\x8c\x6b\xf1\x3f\x00\x00\xff\xff\x06\xda\x11\x7f\x26\x03\x00\x00" +var _lockedtokensUserDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6f\xb2\x40\x10\xc6\xef\x7c\x8a\x89\x87\x37\x70\x78\xb1\x87\xa6\x07\x62\x6b\xac\x62\xdb\x48\xb4\xf1\x4f\x7b\x5e\x97\x41\x88\xb8\x43\x96\xa1\x98\x34\x7e\xf7\x66\x41\x88\x98\x9a\x74\x2f\x9b\xec\xf3\xcc\x3c\xbf\xd9\x4c\x72\xc8\x48\x33\x4c\x0b\xb5\x4b\xb6\x29\xae\x69\x8f\x0a\x22\x4d\x07\xb8\x3b\x4e\x37\xf3\x97\xb7\xe7\xc0\x5f\x2f\x66\xfe\x7c\x34\x99\x2c\xfd\xd5\xca\x6a\x0a\x52\x2a\xbb\xe6\x60\xf1\xf9\x9b\x31\x20\xb9\xc7\xb0\xb2\xe6\x8d\x37\x58\x8c\x67\xfe\xa4\xe3\xb6\x58\x0b\x95\x0b\xc9\x09\x29\x5b\x1c\xa8\x50\xec\xc1\x66\x9a\x1c\x1f\xee\x1d\xf8\xb6\x2c\x00\x80\x14\x19\x62\x4a\x43\xd4\x4b\x8c\x3c\xf8\x77\xd9\xda\xad\xae\xd7\x4a\x6d\xcd\x5f\xa2\x48\xb9\xf6\xb6\xbc\xee\x87\x79\xac\x1b\x66\x1a\x33\xa1\xd1\x16\x52\xb2\x07\xa3\x82\xe3\x91\x94\x26\xda\x44\xc2\xf9\xe4\x98\x46\x6e\x1b\x0b\x8f\x60\xdc\xee\x96\xb4\xa6\x72\x70\x93\xe1\xc9\x36\xb3\x7a\x70\x4b\x5f\x31\x69\xb1\xc3\x77\xc1\xb1\xd3\x46\x99\x33\x1c\x42\x26\x54\x22\xed\xde\x98\x8a\x34\x04\x45\x0c\x75\x18\x08\xd0\x18\xa1\x46\x25\x11\x98\xe0\xa2\x5b\xcf\xb1\xba\xbc\xcd\xe4\xd7\xb8\x57\xdf\xd0\x50\xf6\xf3\x1a\xa7\x1f\x35\x7a\x25\xff\x99\xcc\x94\x01\x57\xeb\x50\x25\x1b\xd0\x5e\x5d\x7d\xaa\xc9\xf0\x88\xb2\x60\xbc\xf9\xaf\x6e\x88\x19\xe5\x09\x9f\x81\x06\xff\x3b\x63\xb8\x65\xc2\x71\xa8\x45\xd9\xae\x46\x7d\x3b\x4d\xc6\xc9\xfa\x09\x00\x00\xff\xff\xd8\x78\x8a\x49\xc9\x02\x00\x00" func lockedtokensUserDeposit_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4520,11 +4500,11 @@ func lockedtokensUserDeposit_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/deposit_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0xa5, 0xe5, 0x96, 0x71, 0x49, 0x43, 0x2c, 0x42, 0xb0, 0x75, 0x57, 0xe2, 0x55, 0x9a, 0x95, 0xfe, 0xf3, 0xec, 0xdf, 0x91, 0x6e, 0x41, 0x44, 0xc, 0x5b, 0x1, 0x46, 0x8e, 0x83, 0xab, 0xd7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa5, 0xa, 0xdf, 0x26, 0x3f, 0xf, 0x6e, 0xbc, 0x78, 0x6f, 0xab, 0xd2, 0xb9, 0x60, 0xc2, 0xab, 0x81, 0x1, 0xf1, 0xa2, 0xae, 0x5a, 0x57, 0x2a, 0xc8, 0xa, 0x5b, 0x36, 0x40, 0x8c, 0xc1, 0x1}} return a, nil } -var _lockedtokensUserGet_locked_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x4e\xc3\x30\x0c\x86\xef\x79\x8a\x5f\x3d\xa0\xf6\xd2\x07\x40\xc0\x34\x71\x01\x69\x87\x09\xf1\x02\x69\xe2\x8c\x68\x69\x5c\x39\x8e\x38\x20\xde\x1d\xad\x1d\x65\x03\x7c\x49\x64\xf9\xfb\xfe\x38\x71\x9c\x58\x14\x3b\x76\x47\xf2\xaf\x7c\xa4\x5c\x10\x84\x47\x34\x97\xad\xc6\x18\xeb\x1c\x95\xd2\xda\x94\x3a\x84\x9a\x31\xda\x98\x5b\xeb\x1c\xd7\xac\xb7\xd8\x7a\x2f\x54\x4a\xb7\xde\xf0\x61\x0c\x00\x24\x52\xa4\xd9\xb4\x5d\x66\x9f\x73\xe0\x17\x0a\xb8\xc7\x81\xf4\xdc\xfb\xf6\x74\x33\x72\xaa\xde\xd9\xc9\x0e\x31\x45\x8d\x54\xfa\x81\x45\xf8\xfd\xee\xe6\xf2\x49\xfd\x7c\x3c\x71\xf2\x24\x0f\xed\x0a\x9e\xea\x6a\x6c\xf7\x3b\x7c\x5f\x87\x14\xdd\xde\xea\xdb\x0a\xfd\xe4\x6e\x36\x98\x6c\x8e\xae\x6d\x1e\xb9\x26\x8f\xcc\x8a\x25\x1d\x16\x42\x81\x84\xb2\x23\x28\x63\x9a\x35\xf8\xa3\x6f\xba\x65\x71\x21\xad\x92\xff\xdd\xbd\x3f\x90\x5e\x71\xe7\x3f\x6b\x3b\xf3\x69\xbe\x02\x00\x00\xff\xff\x5f\x74\xcf\x97\x91\x01\x00\x00" +var _lockedtokensUserGet_locked_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x1e\x3d\x48\x72\x29\x9e\x45\x2d\x21\x09\x28\x0d\xb6\xb4\xfd\x03\x9b\xcd\xa4\x2e\xdd\xec\x84\xcd\x2e\x2a\xa5\xff\x5d\x92\xd4\xd8\xaa\x38\x97\x5d\x66\xde\x7b\x33\x7c\xba\x69\xd9\x79\x14\xac\x0e\x54\xed\xf8\x40\xb6\x43\xed\xb8\xc1\xed\x7b\xb1\x4a\x97\x79\xb6\x5b\x2d\xf3\x97\x24\xcb\x36\xf9\x76\x2b\x44\x1b\x4a\xd4\xc1\xa2\x91\xda\x46\x52\x29\x0e\xd6\xdf\x21\xa9\x2a\x47\x5d\x17\x4f\x3f\x1c\x85\x00\x00\x43\x1e\x66\x88\x4e\x46\xed\xb3\xad\x79\x43\x35\x1e\xb0\x27\x7f\xee\x7d\xe5\xc4\x83\xa5\xaf\xf9\x9e\x7c\x2a\x5b\x59\x6a\xa3\xfd\xc7\xfd\xcd\xe5\x75\xf3\xe1\x79\x62\x53\x91\x3b\x5e\x0d\x8a\x9f\x8b\x4e\x8f\xd1\x14\xd9\xd7\xff\xea\x75\x28\x8d\x56\x6b\xe9\x5f\x27\xd3\xc5\x45\x25\x3b\xc7\x6f\xd1\x77\x67\xb1\x40\x2b\xad\x56\xd1\x2c\xe5\x60\x2a\x58\xf6\x18\x45\x90\x70\x54\x93\x23\xab\x08\x9e\xd1\x0e\xc1\xf8\xb5\x70\x16\x8f\x90\x1c\xf9\xe0\xec\x9f\x9c\x7a\x10\x57\xbe\x33\xdf\x28\x16\x27\xf1\x19\x00\x00\xff\xff\x93\x76\x77\x6b\xbb\x01\x00\x00" func lockedtokensUserGet_locked_account_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -4540,11 +4520,11 @@ func lockedtokensUserGet_locked_account_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_locked_account_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x1c, 0x7f, 0x55, 0xaa, 0x4, 0xd5, 0x1d, 0x5b, 0xbd, 0xdf, 0x3f, 0x2f, 0xe4, 0x4f, 0x2f, 0x22, 0x93, 0x27, 0x85, 0x4b, 0x23, 0x56, 0xaf, 0x5e, 0xc5, 0xd, 0x28, 0x5f, 0xee, 0x60, 0x44}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4c, 0xbe, 0xe8, 0x78, 0x27, 0x47, 0x3b, 0xa0, 0xc8, 0x22, 0x70, 0xb2, 0xac, 0xa6, 0x18, 0x30, 0x3b, 0x65, 0xd7, 0x4, 0x7e, 0x42, 0xc6, 0x5a, 0xcc, 0x96, 0xd, 0x11, 0x92, 0xf3, 0x5, 0x84}} return a, nil } -var _lockedtokensUserGet_locked_account_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4a\xc3\x40\x10\x86\xef\xfb\x14\x3f\x39\x48\x72\xc9\x49\x3c\x14\xb5\x54\x41\x14\x7a\x28\xa2\x0f\x30\xd9\x4c\xea\xd2\xcd\x4e\x98\x9d\xa0\x20\xbe\xbb\x34\xd1\xda\xaa\x73\x59\x18\xe6\xfb\xfe\xfd\x43\x3f\x88\x1a\xd6\xe2\x77\xdc\x3e\xc9\x8e\x53\x46\xa7\xd2\xa3\x38\x5e\x15\xce\x91\xf7\x9c\x73\x49\x31\x56\xe8\xc6\x84\x9e\x42\x2a\xc9\x7b\x19\x93\x2d\xb0\x6a\x5b\xe5\x9c\xab\x05\x9e\xef\xc2\xdb\xc5\x39\xde\x9d\x03\x80\xc8\x86\x38\x89\x56\xf3\xe9\x43\xea\xe4\x91\x3b\x5c\x61\xcb\xf6\xb5\xfb\xd6\x54\x13\xb2\x9f\xda\xd3\x40\x4d\x88\xc1\x02\xe7\xba\x11\x55\x79\xbd\x3c\x3b\xfe\x51\x3d\x3d\xf7\x12\x5b\xd6\xeb\xf2\x00\xee\xe7\xe4\x6c\xfd\x3b\x7c\x33\x36\x31\xf8\x0d\xd9\xcb\x01\xfa\xc9\x5d\x2e\x31\x50\x0a\xbe\x2c\x6e\x65\x8c\x2d\x92\x18\xe6\x74\x10\x94\x3b\x56\x4e\x9e\x61\x82\x61\xd2\xe0\x8f\xbe\xa8\xe6\xe2\xca\x36\x6a\xfa\xb7\x7b\xbd\x65\x3b\xe1\x6e\x28\x52\xf2\x5c\x56\xee\xc3\x7d\x06\x00\x00\xff\xff\xf4\x54\xe0\xd6\x90\x01\x00\x00" +var _lockedtokensUserGet_locked_account_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x51\x4f\xc2\x30\x14\x85\xdf\xfb\x2b\x4e\x78\x30\xdb\x0b\xf1\xc1\xf8\x40\x54\x82\x6c\x46\xc3\x22\x04\xf0\x07\x74\xdd\x1d\x36\x74\xbd\x4b\xd7\x46\x0c\xe1\xbf\x9b\x6d\x8a\xa0\xc6\xfb\xd2\xe4\xf6\x9c\xef\x9e\x1c\x5d\xd5\xec\x3c\x32\x56\x5b\x2a\xd6\xbc\x25\xdb\xa0\x74\x5c\xe1\x72\x97\xcd\xa7\xb3\x34\x59\xcf\x67\xe9\xf3\x24\x49\x96\xe9\x6a\x25\x44\x1d\x72\x94\xc1\xa2\x92\xda\x46\x52\x29\x0e\xd6\x8f\x30\x29\x0a\x47\x4d\x13\x8f\xf0\xf2\xa0\x77\xd7\x57\xd8\x0b\x01\x00\x86\x3c\x4c\x47\x9e\xf4\xd2\x27\x5b\xf2\x92\x4a\xdc\x62\x43\xfe\x73\xf7\x85\x89\x3b\x4b\x3b\xc3\x0d\xf9\xa9\xac\x65\xae\x8d\xf6\xef\x37\x17\xa7\xe1\x86\xdd\xf3\xc8\xa6\x20\xb7\x3f\xfb\xc8\x7e\x1e\x3a\xdc\x45\x47\x64\x3b\xff\xab\x17\x21\x37\x5a\x2d\xa4\x7f\x3d\x9a\x4e\x12\xe5\xec\x1c\xbf\x45\xdf\x9b\xf1\x18\xb5\xb4\x5a\x45\x83\x29\x07\x53\xc0\xb2\x47\x2f\x82\x84\xa3\x92\x1c\x59\x45\xf0\x8c\xba\x03\xe3\xd7\xc1\x41\xdc\x97\xe4\xc8\x07\x67\xff\xec\xa9\x2d\xe2\xcc\x77\x2f\x8d\xb4\x8a\xa2\x58\x1c\xc4\x47\x00\x00\x00\xff\xff\xb4\x2e\x8d\x4e\xba\x01\x00\x00" func lockedtokensUserGet_locked_account_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -4560,11 +4540,11 @@ func lockedtokensUserGet_locked_account_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_locked_account_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x2d, 0x23, 0x62, 0x8e, 0xdd, 0x89, 0x34, 0xc5, 0x3e, 0x78, 0xc5, 0xcd, 0x35, 0x2e, 0xcf, 0xa3, 0x3a, 0xed, 0x97, 0x92, 0x6e, 0x8, 0x74, 0x90, 0x9d, 0x36, 0x9d, 0x94, 0xe3, 0xc0, 0x6d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x43, 0x1e, 0xb4, 0x8c, 0xa1, 0x3b, 0x72, 0xd3, 0xaf, 0x2c, 0xe7, 0x97, 0x87, 0xfb, 0xd4, 0x36, 0xf8, 0x3a, 0xc3, 0x46, 0x33, 0xe0, 0x9, 0x45, 0x45, 0x17, 0xf, 0x6e, 0x59, 0x7b, 0x77, 0xd1}} return a, nil } -var _lockedtokensUserGet_multiple_unlock_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x6b\xfb\x30\x10\xc5\x77\x7d\x8a\x87\x87\x3f\xf6\xe2\xe9\x4f\x87\xd0\x34\x84\x42\x69\x21\x43\x28\xcd\x14\x32\x28\xf2\x39\x15\x91\x75\xe6\x24\xb7\x85\x90\xef\x5e\x2c\xc7\x6d\xdc\xf6\x16\x89\x7b\x77\x4f\x3f\x3d\xdb\xb4\x2c\x11\x2b\x36\x47\xaa\x5e\xf8\x48\x3e\xa0\x16\x6e\x90\x5d\xb7\x32\xa5\xb4\x31\x14\x42\xae\x9d\x2b\x50\x77\x1e\x8d\xb6\x3e\xd7\xc6\x70\xe7\x63\x98\x61\xbb\xac\x2a\xa1\x10\x76\xc5\x0c\xdb\xcd\x83\xfd\xb8\xf9\xbf\xc3\x49\x29\x00\x78\xd3\x02\x67\x1b\x9b\xe6\x46\x6d\x8e\xed\x6e\x90\x6b\x16\x5c\x8c\x60\xfd\x78\x0d\x38\x25\xb5\x2f\x47\x11\x2e\xe1\x2c\x07\xf1\xc9\xd7\xfc\x4c\x35\xe6\x38\x50\xbc\xf4\x46\x98\xe2\x6b\xad\xaf\xd2\xe8\x56\xef\xad\xb3\xd1\x52\x28\xf7\x2c\xc2\xef\xb7\xff\xae\xff\x56\xa6\xe3\x91\x5d\x45\x72\x97\x4f\x96\xfb\x9a\x8c\xae\x7e\x42\xac\xbb\xbd\xb3\x66\xad\xe3\xeb\x64\x71\xca\xb0\x58\xa0\xd5\xde\x9a\x3c\xbb\xe7\xce\x55\xf0\x1c\x31\x90\x40\x43\xa8\x26\x21\x6f\x08\x91\xd1\x26\x3b\xfc\x7a\x26\x2b\xd4\x77\x18\x29\xc9\x52\xb7\x2d\xf9\x2a\xff\x2b\x96\xf2\x40\x71\xe3\x7b\x65\xd5\xcf\xe6\xc5\x80\x73\x1e\x3c\x84\x62\x27\xfe\x62\xa3\xce\xea\x33\x00\x00\xff\xff\x76\x76\x5f\x52\x02\x02\x00\x00" +var _lockedtokensUserGet_multiple_unlock_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcf\x4f\xfa\x40\x10\xc5\xef\xfb\x57\xbc\x70\xf8\xa6\xbd\x90\xef\xc1\x78\x20\x22\x21\x80\xd1\xd0\x08\xe1\xc7\x89\x70\xd8\xb6\x53\xdc\xb0\xdd\xd9\x6c\xb7\x8a\x21\xfc\xef\xa6\x2d\xa8\x45\xe3\x5c\xda\xcc\x67\xe6\xcd\xdb\xa7\x72\xcb\xce\x23\xe2\x64\x4f\xe9\x8a\xf7\x64\x0a\x64\x8e\x73\xfc\x3f\x44\xb3\xd1\x74\x32\x5e\xcd\xa6\x93\xe7\xe1\x78\xbc\x98\x2c\x97\x42\xd8\x32\x46\x56\x1a\xe4\x52\x99\x40\x26\x09\x97\xc6\x17\x3d\x6c\x86\x69\xea\xa8\x28\xb6\x61\x0f\x9b\xf5\x83\x3a\xdc\xde\x6c\x71\x14\x02\x00\x5e\xa5\x83\x56\xb9\xaa\xe7\x2e\xac\x8f\xcd\xb6\xc1\x19\x3b\x9c\x85\xa0\xcc\xe5\xb7\xc0\xb1\xa6\x55\x69\xf2\xd0\xb5\xbf\x61\x03\x9f\x4c\xc6\x0b\xca\xd0\xc7\x8e\xfc\xb9\x77\x31\x13\x7e\xae\x55\xd5\xdd\x91\x1f\x49\x2b\x63\xa5\x95\x7f\xbf\xfb\xf7\xfd\x99\xdd\xfa\xf3\xc8\x3a\x25\x77\x6c\x81\xe8\xfa\xd8\xe9\x3e\x68\xc9\x56\xf5\xf7\xc6\xbc\x8c\xb5\x4a\xe6\xd2\xbf\xb4\x16\xaf\xdc\xc5\xec\x1c\xbf\x05\xed\xee\x60\x00\x2b\x8d\x4a\x82\xce\x88\x4b\x9d\xc2\xb0\x47\x33\x08\x09\x47\x19\x39\x32\x09\xc1\x33\x6c\x7d\x04\x3f\x8e\x77\x42\xf1\x15\x5e\x9d\x7c\x57\x5a\x4b\x26\x0d\x7e\x8b\xb1\xca\x68\x6d\x2a\x12\x55\xb3\x41\xd8\xd8\x39\x35\x1a\x8e\x7c\xe9\xcc\x59\x46\x9c\xc4\x47\x00\x00\x00\xff\xff\xf0\x63\x18\x09\x30\x02\x00\x00" func lockedtokensUserGet_multiple_unlock_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -4580,11 +4560,11 @@ func lockedtokensUserGet_multiple_unlock_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_multiple_unlock_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0xe, 0xa9, 0x44, 0x29, 0x58, 0xa8, 0xea, 0x68, 0x48, 0xe8, 0xbc, 0x31, 0xbe, 0x7d, 0xc4, 0x5e, 0x8c, 0xb8, 0xaa, 0x3e, 0x37, 0xdb, 0xc9, 0xe, 0x63, 0xbd, 0xc1, 0xcf, 0x8b, 0x36, 0x1a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x44, 0x53, 0x90, 0x61, 0xff, 0x97, 0xc8, 0x5, 0x7e, 0xc0, 0x6d, 0x11, 0x4b, 0x9, 0x5d, 0x3a, 0xdf, 0x48, 0x9a, 0xa6, 0x8e, 0x90, 0xe2, 0x7c, 0x70, 0x72, 0x99, 0xf5, 0xfa, 0xb2, 0x54, 0x24}} return a, nil } -var _lockedtokensUserGet_total_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x4d\x6f\xdb\x38\x10\xbd\xeb\x57\x0c\x72\xd8\x95\xb0\x86\x9c\xc3\xa2\x07\xa3\x0e\x90\x42\x48\x6b\x20\x68\x82\xd4\x6d\xcf\x94\x48\xd9\x44\x68\x52\x20\xa9\xa4\x45\xe0\xff\x5e\x88\x14\x69\x52\x96\x9c\xaf\xea\xe0\x0f\xf2\xcd\xbc\xc7\x79\xc3\x11\xdd\x35\x42\x6a\xb8\x6a\xf9\x86\x96\x8c\xac\xc5\x3d\xe1\x50\x4b\xb1\x83\xb3\x68\xed\x2c\x71\x48\x26\x1e\x23\x94\xfb\x1f\x21\x56\xc5\x1a\x95\x8c\x7c\xd3\xe8\x9e\xf2\x4d\x00\x8d\x37\x7c\xcc\xb5\xa8\xee\x09\x36\x79\x54\x8f\x0e\x97\xce\x92\x64\x3e\x87\xf5\x96\x2a\x50\x95\xa4\x8d\x86\x0d\xd1\x0a\xf4\x96\xc0\xfa\x66\x7d\x79\x0d\xbc\xdd\x95\x44\x82\xa8\xe1\xea\xfa\xe6\x27\x20\x0e\xa8\xaa\x44\xcb\x35\x88\x47\xae\x66\x80\x2a\x29\x94\x82\x96\x33\x93\x75\x06\xee\x1b\x71\x0c\xca\x8a\xc9\x0d\xc9\x25\xc6\x0a\xda\xa6\xcb\xad\x48\x9f\x57\x2d\xcc\x96\xb6\xf2\x28\x07\x2e\xe4\x0e\x31\xc7\x71\x6a\xcf\x25\x3f\x89\xc1\x84\x91\x0d\xd2\x47\x30\xb5\x45\x92\xe0\x71\x9a\x78\x6f\x9c\x66\x80\x09\x68\x92\x04\x55\x15\x51\x2a\x45\x8c\x65\x50\xb7\x1c\x76\x88\xf2\x14\x61\x2c\x89\x52\x8b\xae\x0a\xdd\x8f\x6c\x01\xdf\xaf\xe8\xaf\x0f\xff\xc3\x53\x92\x00\x00\x3c\x20\x09\xaa\xdd\xc1\x12\xce\xf3\x73\xbb\xc4\x88\xf6\x0c\xcb\xce\x97\x4b\xfb\xc7\x25\xcb\x2c\x8c\xd6\x06\xf9\x80\x5a\xa6\xef\x48\x0d\x4b\x17\x94\x57\xa8\x41\x25\x65\x54\x53\xa2\xf2\x52\x48\x29\x1e\x3f\xfe\xe3\xdb\x2a\xff\xd1\x45\x5c\xa4\xf3\xa6\x2d\x19\xad\xe6\xb5\xdb\xf8\x84\x18\xe2\x15\xc9\xe0\xc9\xe4\xef\x1e\xab\xac\xfb\xfc\xcf\x13\xe5\xa5\xc5\x19\xd0\xde\x6a\x99\xcf\xe1\x33\xd1\xb6\x50\xd0\xef\xdb\xae\xeb\x3a\xca\x35\x89\x13\xf8\xaf\x02\x2e\x30\x71\x25\x86\x46\x08\xa6\xfc\xd1\x45\xa3\xa9\xe0\x88\x7d\x15\xd8\x74\x35\x91\xd1\xe9\xbc\xb6\xf1\x63\x3e\x1d\xdf\x89\xfc\x90\xe9\xd6\x1c\x79\x7f\x91\xfa\x2c\xdd\xf3\x82\x90\x5b\xa4\xb7\x3e\x26\x36\x80\x0f\x74\x8e\xeb\x3f\xd4\xd4\xc5\xac\x78\x2d\x60\x39\x45\xde\xed\xa6\x06\x56\x2c\x62\x8a\x9c\xe2\x6c\xd4\x20\x97\x34\xd7\x42\x23\x66\xef\xf9\x8a\xdf\x91\x4a\x48\x9c\x66\xef\xb2\xab\x6f\x74\x21\x9f\xf1\xac\x70\xb8\xbf\x61\x99\x4f\x36\xee\x5a\xd8\xbf\x7d\x98\x8f\x98\xb0\x0a\xc7\xf2\x46\x55\xc7\x46\xf9\x88\x69\xb7\x8a\x10\x12\x4b\x74\xfe\x85\xbc\xb9\x5d\x9c\x45\xc0\x03\xcd\x10\x4d\x71\x70\x96\x31\xd7\x23\x85\x53\xd6\x8f\x99\xbf\x25\x10\xfb\x0c\xb6\xa0\xe0\x4d\xfa\x7d\xe4\xaf\x7d\x85\xf4\xf3\xa8\x23\x7c\x8d\xcf\xe1\xfb\x27\x37\x5f\x5f\x04\xc3\x44\x0e\x7c\x8d\x60\x47\x84\xcf\x5e\x47\x36\x2e\xf1\xe4\x09\x0e\x9e\xdb\xf7\xd5\x58\x71\xc2\xa9\x37\xf4\x60\x8c\x33\xdf\x10\x1d\x91\xf5\xe3\x35\xed\xe5\x0e\xd8\xdc\x2d\x14\x35\x20\xc6\xcc\xd2\xf1\x8c\x3c\xdc\xd1\x58\x9c\x4f\x18\x8c\xa4\x55\x01\xcb\x49\x61\x66\xc2\x14\x69\x38\xea\xdf\x31\x9a\x56\x45\x16\xa5\x79\xe5\x50\x0a\x7a\xf3\xf9\xa2\x4c\x4c\xa2\x97\x56\x26\xb8\x68\x27\xca\x73\xb8\xd2\xc7\x35\x7a\x69\x89\x7d\x8e\x89\x5a\xbf\x79\xc2\xc4\x95\x9f\x4d\xcc\x8e\xa1\x27\x6f\x1a\x1b\xc1\xb3\x4f\xe2\x5f\xbd\x61\x92\xe8\x56\xf2\x2e\x67\xb2\x4f\xfe\x04\x00\x00\xff\xff\xff\xc7\x1b\xb5\xfb\x0a\x00\x00" +var _lockedtokensUserGet_total_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x55\x51\x6f\xa3\x38\x10\x7e\xe7\x57\xcc\xd3\x1e\xe8\x22\xd2\x87\xd3\x3d\x44\x9b\x95\xd2\x92\xee\xa1\x8d\x92\x55\x4b\xef\x74\x8f\x06\x4c\x82\xea\xd8\xc8\x36\x6d\x4f\x51\xfe\xfb\xc9\x18\x3b\x98\x40\x9a\x6d\x79\x68\x52\xfc\xcd\xcc\x37\xdf\x37\x9e\x94\xfb\x8a\x71\x09\xf7\x35\xdd\x96\x29\xc1\x09\x7b\xc6\x14\x0a\xce\xf6\x70\xf3\x76\xff\xb4\xfe\x1e\xdf\xae\x96\xc9\xe6\xc7\x72\xbd\x88\xa2\x87\xe5\xe3\xa3\x67\x02\x08\x7b\x75\xc1\xab\xcd\x3f\x63\xc0\x38\x4a\x50\x4a\xf0\xa3\x44\xcf\x25\xdd\x9a\x88\x38\x5a\xae\x93\x38\xf9\x37\x59\xdc\xae\x96\xbd\xa8\x15\xcb\x9e\x71\xde\x14\x10\x06\xbf\xda\xdc\xfd\x58\x46\x4e\x0d\x6f\x3a\x85\x64\x57\x0a\x10\x19\x2f\x2b\x09\x5b\x2c\x05\xc8\x1d\x86\x64\x93\x2c\x56\x40\xeb\x7d\x8a\x39\xb0\x02\x14\x3b\x40\x14\x50\x96\xb1\x9a\x4a\x60\xaf\x54\x4c\x00\x65\x9c\x09\x01\x35\x25\x4d\xb9\x09\x98\x4f\x44\x73\x10\x9a\x6d\xd8\x14\x59\xe4\xb9\x80\xba\x52\xb9\x05\x6e\xf3\x8a\x59\x73\x24\x35\xc9\x92\x02\x65\x7c\x8f\x88\xa9\x71\xe9\xcc\x24\xbf\x88\xc9\x31\xc1\x5b\x24\xcf\x60\x62\x87\x38\xce\x87\xcb\xb8\x67\xc3\x65\x7a\x98\x4e\x19\xcf\xab\xea\x14\x8a\x9a\xc2\x1e\x95\xd4\x47\x79\xce\xb1\x10\x33\xd5\xbd\xfa\x12\xcc\xe0\xe9\xbe\x7c\xfb\xf3\x0f\x38\x78\x1e\x00\xc0\x0b\xe2\x20\xea\x3d\xcc\xe1\x26\xbc\xd1\xaf\x08\x96\x36\xf3\x5c\xf9\xb1\xd0\xff\x98\x64\x81\x86\x95\x45\x83\x7c\x41\x35\x91\x0f\xb8\x80\xb9\x09\x0a\xb7\x58\xde\xa1\x0a\xa5\x25\x29\xe5\x7f\xfe\xb4\xaa\x53\x52\x66\xd3\xc2\x8c\xdb\x2d\x22\x88\x66\x38\x68\xb2\xa8\x27\x4c\x19\xe7\xec\xf5\xeb\x17\x3b\x91\xe1\xdf\x2a\xeb\xc1\x19\xe9\xb0\x8d\x3b\x7e\xf3\x03\x68\x62\x0f\x36\x83\xee\x40\xfd\xfd\xdd\x12\x0a\x53\x8d\x6f\x40\x47\xcd\x79\x3a\x85\xef\x58\x6a\x21\xa1\x3d\xd7\xb3\xa9\x26\xce\x0c\x91\x69\xe4\x37\x01\x94\xe5\xd8\x58\x00\x15\x63\x44\x58\x89\xd4\x91\xba\x0e\x98\xdf\xa1\xea\xd4\xfd\xa9\x2b\x47\x86\xaf\x5f\x0e\xe7\xd7\x28\x5c\xdb\x1c\x3f\x1b\x91\x8e\xdf\x7c\x1b\xaf\x9e\x2b\x42\x7e\x22\xb9\xb3\x31\xae\x35\x27\x86\xda\x1f\x87\x71\x2b\xba\x1f\x74\x64\x34\x41\x31\x2d\x18\xcc\xc7\xaa\xab\x53\xbf\x81\x45\x33\xb7\x46\x58\xe6\xc1\xa0\x27\x26\x69\x28\x99\x44\x44\xef\x84\x98\x3e\xe0\x8c\xf1\xdc\x0f\x3e\xe5\x50\x3b\xfb\x8c\x8f\xd8\x64\xcf\x3f\xe7\x52\x64\xd2\x0c\x1b\xd5\x1d\xf2\x36\xcc\x46\x8c\xb8\x63\x89\x69\x73\xba\x3c\xc7\xbc\xb1\x98\x71\x83\xa2\x2e\xc4\xe5\x68\x2c\xeb\x16\x0e\xf5\xcb\x89\x03\x3c\x95\xe9\xa3\xcb\xbc\xd3\xcc\x90\xd1\x0e\xc3\x31\xb7\x87\xfc\xde\x61\x70\xad\x05\xad\x28\x64\xd6\x1c\x6b\xa9\x06\xb6\x5b\x49\x15\xba\xce\xda\xee\x0f\x52\xd8\x7c\xfc\xc5\x48\x8e\xf9\xc1\x39\x58\xf5\x93\xf7\xad\xbe\x8c\x7e\xf7\x52\x9e\x91\xd7\xf6\x0f\xf5\x34\x34\x06\xfa\x87\x6c\x48\xaf\xee\xba\xeb\xdb\x32\x54\x54\xc9\xe3\xd0\x6f\xf7\xab\xdf\xf2\xed\x55\x33\x77\x91\x15\x80\x08\x69\x5e\x9d\x2f\xc7\xd3\x4d\x75\xc9\xd9\x84\x9d\xcd\x14\x47\x43\x6d\xb7\xc4\x9a\x3d\x13\x39\x9d\x7f\x62\x41\xc5\x51\xe0\xa4\xf9\xc5\xd5\xd4\x19\xd7\xf7\x45\x19\xd9\x47\xd7\x2a\xd3\xb9\x7b\x17\xe4\x39\xdd\xf2\x73\x8d\xae\x95\xd8\xe6\x18\xd1\xfa\xc3\x4b\xc7\x55\x7e\x32\xb2\x4e\xfa\x9e\x7c\x68\x93\x74\x9e\xa3\xe7\x7e\x6b\x0d\xe3\x58\xd6\x9c\xaa\x9c\xde\xd1\xfb\x3f\x00\x00\xff\xff\x69\xed\x3d\xf3\x2a\x0b\x00\x00" func lockedtokensUserGet_total_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -4600,11 +4580,11 @@ func lockedtokensUserGet_total_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_total_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x55, 0x8, 0x27, 0xe, 0x25, 0x30, 0xdf, 0xb4, 0x9b, 0xdf, 0x6d, 0x5, 0xd5, 0xf1, 0xd8, 0x3a, 0xef, 0xc2, 0x45, 0x3a, 0xa1, 0xd2, 0x90, 0x9, 0xf6, 0x54, 0x3c, 0xdb, 0x11, 0x6e, 0xa9, 0x9e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1b, 0xa, 0x98, 0x52, 0xac, 0x67, 0xd6, 0x22, 0x47, 0xdd, 0xb3, 0x76, 0x45, 0x60, 0x8, 0x86, 0xbd, 0x8b, 0x86, 0x74, 0x3b, 0xb, 0x80, 0x9e, 0x19, 0x46, 0xa1, 0xda, 0xfe, 0x3f, 0x6a, 0xa6}} return a, nil } -var _lockedtokensUserGet_unlock_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x1e\x39\x48\x72\xc9\x49\x3c\x14\xb5\x14\x41\x14\x72\x28\x62\x7f\xc0\x66\x33\xa9\x4b\x37\x3b\x61\x76\x16\x05\xf1\xbf\x4b\x12\xad\x55\x3b\x97\x85\xd9\xf7\xbe\x37\xcf\x0f\x23\x8b\xa2\x61\x77\xa0\xee\x99\x0f\x14\x13\x7a\xe1\x01\xc5\xe9\xaa\x30\xc6\x3a\x47\x29\x95\x36\x84\x0a\x7d\x8e\x18\xac\x8f\xa5\x75\x8e\x73\xd4\x15\x36\x5d\x27\x94\x52\xb5\xc2\xee\xde\xbf\x5d\x5d\xe2\xdd\x18\x00\x08\xa4\x08\x33\x68\xb3\x48\x1f\x63\xcf\x4f\xd4\xe3\x06\x7b\xd2\xaf\xdd\x37\xa6\x9a\x2d\xd3\xd4\xce\x8e\xb6\xf5\xc1\xab\xa7\x54\xb7\x2c\xc2\xaf\xd7\x17\xa7\x17\xd5\xf3\xf3\xc0\xa1\x23\xb9\x2d\x8f\xc6\x69\x7e\xc9\x9a\xbf\xe1\xdb\xdc\x06\xef\xb6\x56\x5f\x8e\xa6\x9f\xdc\xf5\x1a\xa3\x8d\xde\x95\xc5\x1d\xe7\xd0\x21\xb2\x62\x49\x87\x85\x50\x4f\x42\xd1\x11\x94\x31\xce\x18\xfc\xc3\x17\xd5\x52\x5c\x48\xb3\xc4\xb3\xdd\xeb\x3d\xe9\x2e\x4e\x3f\x8d\x1f\xbc\x96\x95\xf9\x30\x9f\x01\x00\x00\xff\xff\x4e\xa6\xd0\xc0\x87\x01\x00\x00" +var _lockedtokensUserGet_unlock_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcb\x6a\xf3\x30\x10\x85\xf7\x7a\x8a\x43\x16\x3f\xf6\x26\xfc\x8b\xd2\x45\x68\x1b\x82\xed\xd2\x12\xd3\x84\x5c\x1e\x40\x96\xc7\xa9\x88\xac\x31\xb2\x44\x53\x42\xde\xbd\xd8\x6e\xd3\xf4\x42\x67\x33\x30\x73\xe6\x9b\xc3\xd1\x75\xc3\xce\x23\x67\xb5\xa7\x72\xc3\x7b\xb2\x2d\x2a\xc7\x35\xfe\x1f\xf2\x45\x32\xcf\xd2\xcd\x62\x9e\x3d\xcd\xd2\x74\x95\xad\xd7\x42\x34\xa1\x40\x15\x2c\x6a\xa9\x6d\x24\x95\xe2\x60\xfd\x04\xb3\xb2\x74\xd4\xb6\xf1\x04\xdb\x7b\x7d\xb8\xbe\xc2\x51\x08\x00\x30\xe4\x61\x7a\xf2\x6c\x90\x3e\xda\x8a\x57\x54\xe1\x16\x3b\xf2\xef\xb3\x0f\x4c\xdc\x9f\x74\x35\xde\x91\x4f\x64\x23\x0b\x6d\xb4\x7f\xbd\xf9\x77\x69\x6e\xdc\xb7\x07\x36\x25\xb9\xe3\x97\x45\xfe\xfd\xd1\xe9\x2e\x3a\x23\xbb\xfa\x5b\xbd\x0c\x85\xd1\x6a\x29\xfd\xf3\xf9\xe8\xc2\x51\xc1\xce\xf1\x4b\xf4\x39\x99\x4e\xd1\x48\xab\x55\x34\x4a\x38\x98\x12\x96\x3d\x06\x11\x24\x1c\x55\xe4\xc8\x2a\x82\x67\x34\x3d\x18\x3f\x1e\x8e\xe2\x21\x24\x47\x3e\x38\xfb\x6b\x4e\x5d\x10\x5b\xdb\x6d\x72\x5d\x6b\x1f\xc5\xe2\x24\xde\x02\x00\x00\xff\xff\xd0\xf0\x69\xcd\xb1\x01\x00\x00" func lockedtokensUserGet_unlock_limitCdcBytes() ([]byte, error) { return bindataRead( @@ -4620,11 +4600,11 @@ func lockedtokensUserGet_unlock_limitCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_unlock_limit.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6f, 0xf9, 0x2, 0x6b, 0x3a, 0x2a, 0x9b, 0x2f, 0xb6, 0xec, 0x74, 0x3b, 0x63, 0xa6, 0x99, 0x2e, 0x44, 0xaa, 0xa7, 0xfd, 0xf7, 0x7f, 0x81, 0xb1, 0x1c, 0x70, 0xf, 0xe3, 0xf1, 0x6f, 0xe4, 0xd4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0xb1, 0x1b, 0x25, 0xfc, 0xa2, 0xd7, 0x60, 0x50, 0x3e, 0x8f, 0x7, 0xc4, 0x89, 0xbf, 0xd, 0xaf, 0x1c, 0x92, 0x84, 0x7c, 0xdb, 0x16, 0xed, 0xc2, 0x7e, 0x4e, 0xf5, 0xa7, 0x92, 0x81, 0x2c}} return a, nil } -var _lockedtokensUserWithdraw_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x93\x41\x6f\xd4\x30\x10\x85\xef\xf9\x15\xa3\x1c\xaa\x44\x02\xf7\x82\x38\xac\x0a\x15\x20\x55\x1c\x90\x40\x50\xca\x79\xea\x4c\x1a\xab\x8e\x27\xb2\xc7\x4d\x11\xea\x7f\x47\x76\xe2\xb0\x01\x2d\xe2\x82\x2f\xd6\xda\xf3\xde\xbc\xcf\xb3\x31\xe3\xc4\x5e\xe0\x2a\xba\x3b\x73\x6b\xe9\x9a\xef\xc9\x41\xef\x79\x84\x7a\x77\x56\x57\xa5\xd2\xf2\xbc\xab\x2a\xbf\xb7\x8a\x0f\xac\xef\xa9\xcb\x67\x61\x2d\x3a\x3e\xaa\xab\x4a\x3c\xba\x80\x5a\x0c\xbb\x06\x47\x8e\x4e\x0e\xf0\xf5\xca\x3c\xbe\x7c\xd1\xc2\x8f\xaa\x02\x00\xb0\x24\x30\xb0\xed\xc8\x7f\xa6\xfe\x00\x18\x65\x68\x8e\x5d\x54\xde\x3e\x4e\xe4\x31\xd9\x84\x67\x7b\x04\xf5\xcd\xc8\xd0\x79\x9c\x5b\x38\xfb\x53\xf6\x3e\x1b\x6f\x7d\x1e\x30\x5a\xf9\xd5\xe6\xa4\xd1\x86\xaa\x6e\x92\x62\x09\x3a\x79\x9a\xd0\x53\x83\x5a\xcb\x6a\xf0\x96\xbd\xe7\xf9\x06\x6d\xa4\x16\xce\xde\x68\x9d\x08\x13\x19\xac\x2b\x90\xed\xd5\x46\x07\xaf\x20\x89\x55\x10\xf6\x78\x47\xea\x36\xcb\x2f\xfe\x07\xf2\xeb\x26\xcd\xe3\x00\xa7\xee\xbf\x2c\x11\x3e\xa1\x0c\xed\x96\x36\xad\xcb\x4b\x98\xd0\x19\xdd\xd4\xd7\x03\xc1\xe4\xcd\x88\xfe\x3b\xc4\x40\x3e\x65\x4f\x7c\xd0\x31\x05\x70\x2c\x30\xe0\x03\x01\x3a\xc0\x10\x58\x1b\x14\xea\xc0\xe6\x7e\xa5\xb4\x6e\xab\xfd\x53\x94\x01\xfc\xed\x25\xfe\x75\x2a\x05\xf1\x7c\x35\x39\xef\xcb\x7d\xbe\x3e\x85\xf5\x8e\xa3\xed\x72\xfc\xa5\x29\x24\x19\x48\xfe\xa3\xe7\x78\xe0\xa9\xaf\x17\xf5\xd3\x12\x9f\x1e\x49\x47\xa1\xdf\xe7\x5a\x60\x54\x47\x13\x07\x23\x6b\x9e\x8b\xe7\xfb\xa9\xab\x79\x45\xd8\xbe\x80\x65\x6f\x4b\x8f\xa7\xea\x67\x00\x00\x00\xff\xff\x10\x94\xa0\x76\x9c\x03\x00\x00" +var _lockedtokensUserWithdraw_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6f\xb2\x40\x10\xc6\xef\x7c\x8a\x89\x87\x37\x70\x78\xb1\x87\xa6\x07\x62\x6b\xac\x62\xdb\x48\xb4\xf1\x4f\x7b\x5e\x97\x41\x88\xb8\x43\x96\xa1\x98\x34\x7e\xf7\x66\x41\x88\x98\x9a\x74\x2f\x9b\xec\xf3\xcc\x3c\xbf\x9d\x4c\x72\xc8\x48\x33\x4c\x0b\xb5\x4b\xb6\x29\xae\x69\x8f\x0a\x22\x4d\x07\xb8\x3b\x4e\x37\xf3\x97\xb7\xe7\xc0\x5f\x2f\x66\xfe\x7c\x34\x99\x2c\xfd\xd5\xca\x6a\x0a\x52\x2a\xbb\xe6\x60\xf1\xf9\x9b\x31\x20\xb9\xc7\xb0\xb2\xe6\x8d\x37\x58\x8c\x67\xfe\xa4\xe3\xb6\x58\x0b\x95\x0b\xc9\x09\x29\x5b\x1c\xa8\x50\xec\xc1\x66\x9a\x1c\x1f\xee\x1d\xf8\xb6\x2c\x00\x80\x14\x19\x62\x4a\x43\xd4\x4b\x8c\x3c\xf8\x77\xd9\xda\xad\xae\xd7\x4a\x6d\xcd\x5f\xa2\x48\xb9\xf6\xb6\xbc\xee\x87\x79\xac\x1b\x66\x1a\x33\xa1\xd1\x16\x52\xb2\x07\xa3\x82\xe3\x91\x94\x26\xda\x44\xc2\xf9\xe4\x98\x46\x6e\x1b\x0b\x8f\x60\xdc\xee\x96\xb4\xa6\x72\x70\x93\xe1\xc9\x36\x7f\xf5\xe0\x96\xbe\x62\xd2\x62\x87\xef\x82\x63\xa7\x8d\x32\x67\x38\x84\x4c\xa8\x44\xda\xbd\x31\x15\x69\x08\x8a\x18\xea\x30\x10\xa0\x31\x42\x8d\x4a\x22\x30\xc1\x45\xb7\x9e\x63\x75\x79\x9b\x9f\x5f\xe3\x5e\x8d\xa1\xa1\xec\xe7\x35\x4e\x3f\x6a\xf4\x4a\xfe\x33\x99\x29\x03\xae\xd6\xa1\x4a\x36\xa0\xbd\xba\xfa\x54\x93\xe1\x11\x65\xc1\x78\x3d\xd7\x86\xd3\x0d\x31\xa3\x3c\xe1\x33\xcf\xe0\x7f\x77\xea\x6e\x99\x70\x1c\x6a\x51\xb6\xab\x51\xdf\x4e\x93\x71\xb2\x7e\x02\x00\x00\xff\xff\x0b\xcc\x3c\x2f\xc9\x02\x00\x00" func lockedtokensUserWithdraw_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4640,11 +4620,11 @@ func lockedtokensUserWithdraw_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/withdraw_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9b, 0xeb, 0x8e, 0xc2, 0xbe, 0x58, 0xf9, 0x1, 0x8a, 0x51, 0x9, 0xe7, 0x16, 0x2a, 0x38, 0xa2, 0xab, 0x0, 0xe5, 0x81, 0xa7, 0x55, 0x73, 0xaf, 0xb7, 0x5c, 0x78, 0x54, 0x71, 0x19, 0x9a, 0xd5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x9e, 0xfa, 0x63, 0x21, 0x9d, 0x83, 0x7b, 0xab, 0x3e, 0x34, 0x39, 0x94, 0xe9, 0x36, 0xc, 0xbd, 0x5b, 0x16, 0x4, 0xae, 0xf1, 0x49, 0x8f, 0x56, 0xa7, 0xec, 0x6b, 0xcf, 0x6c, 0xb8, 0x32}} return a, nil } -var _nodeversionbeaconAdminChange_version_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x4f\x6f\xd4\x40\x0c\xc5\xef\xf9\x14\x4f\x39\x94\xec\x25\xb9\x20\x0e\x11\x4b\xd5\x45\x42\xe2\x82\xaa\x42\x7b\x1f\x66\x9c\xcd\x48\x89\x1d\x79\x3c\x2c\x7f\xd4\xef\x8e\x92\x2c\x50\x35\x6c\x8f\xb1\xc7\xef\xf7\x9e\x9d\x38\x4e\xa2\x86\x4f\x12\xe8\x81\x34\x45\xe1\x03\x39\x2f\x8c\x4e\x65\x44\xb9\xa9\x97\x45\xd1\x34\x0d\xbe\xa8\xe3\xe4\xbc\x45\x61\x58\xef\x0c\x6e\x18\xe4\x94\x9e\xea\xdc\x84\x31\x32\x4c\xe0\x7b\xc7\x47\x5a\xc6\xac\x27\x04\xea\x22\x53\xc0\xb7\xf5\xd9\xfd\x14\x9c\xd1\x21\x77\x1d\x69\x51\xd8\x3f\xdd\x8a\xe9\xf4\x41\x89\x7e\xd2\x2d\x69\x94\xd0\xe2\xfe\x23\xdb\x9b\xd7\x3b\xfc\x2a\x0a\x60\xa0\xff\xb8\x5e\x98\x77\xd4\xb5\xb8\xda\xf4\xea\xa5\x39\x8f\x4e\x4a\x93\x53\xaa\x9c\xf7\xd6\xc2\x65\xeb\xab\x83\xa8\xca\xe9\xc1\x0d\x99\x76\xb8\xba\xf1\x5e\x32\xdb\x4c\x02\x80\xa6\xc1\xda\x87\x83\x52\x47\x4a\xec\x69\x4e\x36\xc7\xd9\x24\x8e\xe3\x34\xd0\x48\x6c\x91\x8f\x50\x4a\x92\xd5\xd3\xa2\x93\x68\xe8\xea\x8b\x9e\xb1\xc7\x6c\xa8\x4e\x26\xea\x8e\x54\x7f\x5d\x90\x6f\x2f\x05\x79\xb7\x48\x02\xd5\x7c\xa8\x76\xbb\x8a\xf5\xd5\xe7\x55\xec\xd6\x59\xbf\x3b\x0f\x5c\x5f\x63\x72\x1c\x7d\x55\xbe\x97\x3c\x04\x7e\x65\x58\x51\x97\x34\x70\x77\x0e\x51\xce\x12\x8f\xf3\x06\xe9\x3b\xf9\x6c\x74\xde\xcf\xcb\xb9\xea\x44\xf6\xa7\x21\x99\x83\xd3\x1f\x4f\xcf\xba\x3d\xf3\xb3\xc2\x5f\xe8\x24\xc9\x56\xe0\xd6\xe8\xf1\x65\xc6\x0e\xfb\xfd\x73\x5d\xb4\x28\xd7\x6f\x4c\x6b\xe1\xe4\x12\x58\x0c\x79\xf9\x25\x43\xb9\x80\x1f\x8b\xdf\x01\x00\x00\xff\xff\x1f\xd2\xbe\x76\x23\x03\x00\x00" +var _nodeversionbeaconAdminChange_version_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\xc1\x6e\xdb\x4c\x0c\x84\xef\x7a\x8a\x81\x0f\xff\x6f\x5f\xac\x1e\x8a\x1e\x84\xba\x81\x1c\xbb\x40\x2e\x76\x60\x37\xb9\x6f\x77\x29\x6b\x01\x89\x14\x28\xaa\x4e\x5b\xe4\xdd\x0b\x49\x6e\x1b\x44\x75\x8e\x5a\x92\xdf\xcc\x90\x8a\x75\x23\x6a\xd8\x49\xa0\x47\xd2\x36\x0a\xaf\xc9\x79\x61\x14\x2a\x35\xde\x3d\xed\xf6\x9b\xed\xe3\xf6\x70\xbc\xdb\xef\xd6\xdb\xfc\x76\xbf\xcb\x37\x9b\xc3\xf6\x78\x4c\x92\x34\x4d\xf1\x45\x1d\xb7\xce\x5b\x14\x86\x95\xce\xe0\xaa\x4a\xce\xed\x4b\x5c\x1e\xea\xc8\x30\x81\x2f\x1d\x9f\x68\x18\xb3\x92\x10\xa8\x88\x4c\x01\xdf\xc6\xb6\x87\x26\x38\xa3\x75\x57\x14\xa4\x49\x62\x7f\xb9\x73\xa6\xf3\x67\x25\xfa\x41\xf7\xa4\x51\x42\x86\x87\x3b\xb6\x0f\xef\x17\xf8\x99\x24\x40\x45\xff\x30\x3f\x68\x1e\xa8\xc8\xf0\xdf\xa4\xb6\x1c\x8a\xfd\x68\xa3\xd4\x38\xa5\xb9\xf3\xde\x32\xe4\x9d\x95\xb9\xf7\xd2\xb1\xf5\x68\x00\x48\x53\xac\x45\x55\xce\x70\x50\x2a\x48\x89\x3d\xf5\x51\x7a\xff\x93\x88\xb1\x6e\x2a\xaa\x89\x2d\xf2\x09\x4a\xad\x74\xea\x69\xe0\xb4\x54\x15\xcb\xab\x26\xb1\x42\xef\x60\xf9\x75\x90\xfa\x78\xcd\xf1\xa7\x01\x05\xcc\xfb\xc3\x64\xd3\xcc\x63\xd7\xd1\x44\xdd\x89\xee\x9d\x95\x8b\xcb\xc0\xcd\x0d\x1a\xc7\xd1\xcf\x67\xb7\xd2\x55\x81\xff\x37\x8c\x52\xd7\x18\x38\x5c\xcc\xcf\x7a\xc4\x73\xbf\x2a\x7a\x22\xdf\x19\x5d\xf6\xf2\x76\x9e\x65\x4b\xf6\xbb\x20\x1d\x07\xa7\xdf\x5f\xde\x6f\x7a\xcf\x57\x0f\x7f\x44\x1b\x69\x6d\x14\x9c\x1a\x3d\xbd\xad\xb1\xc0\x6a\xf5\x9a\x8b\x0c\xb3\xf1\x1b\xcd\xf8\x70\x76\x2d\x58\x0c\xdd\xf0\xef\x85\xd9\x20\xfc\x9c\xfc\x0a\x00\x00\xff\xff\x20\x17\x63\x91\x13\x03\x00\x00" func nodeversionbeaconAdminChange_version_freeze_periodCdcBytes() ([]byte, error) { return bindataRead( @@ -4660,11 +4640,11 @@ func nodeversionbeaconAdminChange_version_freeze_periodCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/change_version_freeze_period.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4c, 0x60, 0x96, 0xf7, 0x76, 0x86, 0xbe, 0x53, 0x4e, 0x92, 0x54, 0x6, 0xb1, 0x20, 0x8d, 0x20, 0xf8, 0x11, 0x29, 0xfe, 0x14, 0x3e, 0xf6, 0x77, 0xe1, 0x2, 0x7a, 0xf3, 0x56, 0x5f, 0x27, 0xd3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x85, 0x64, 0xe7, 0xfd, 0x12, 0xa9, 0xc4, 0xb2, 0xa7, 0x40, 0x45, 0xbd, 0xde, 0xe5, 0xb6, 0xcf, 0x5f, 0xae, 0x29, 0x72, 0xaa, 0x59, 0x3a, 0x38, 0xc, 0xe5, 0xbc, 0xbf, 0xc4, 0x20, 0x97, 0xd9}} return a, nil } -var _nodeversionbeaconAdminDelete_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xd4\x30\x10\xbd\xe7\x2b\x9e\xf6\x50\xb2\x97\xe4\x82\x38\x44\x40\xd5\xa5\x07\xb8\x20\x54\x96\xde\x67\x9d\xc9\xc6\xc2\xf1\x58\xce\x84\x82\x50\xff\x1d\xd9\xc9\xb6\x8b\xd2\x45\x5c\xfd\x66\xde\xbc\xf7\xfc\xec\x10\x24\x2a\x3e\x4b\xcb\xf7\x1c\x47\x2b\x7e\xc7\x64\xc4\xa3\x8b\x32\x60\xb3\x7a\xdf\x14\x45\x5d\xd7\xd8\x47\xf2\x23\x19\xb5\xe2\xa1\x3d\x29\xc8\x39\x79\x18\xcf\x79\x6e\xda\xc1\x7a\xa8\xa0\x65\xc7\xca\xd0\x9e\xf3\xea\x8f\x19\xc6\x41\x26\xdf\x52\xfc\x85\x81\x42\xb0\xfe\x88\x34\xdd\xf3\x09\xdf\xd3\xc1\x31\x48\xf3\xdb\x18\xd8\xd8\xce\x72\x9b\x19\x0e\x4e\xcc\x77\xf4\x6c\x8f\xbd\x22\x50\xa4\x81\x95\x63\x51\xe8\xb3\xa8\x32\xcf\x7c\xcc\x23\xbb\xe5\xd0\x5e\x6e\xb3\x92\x06\xdf\x3e\x79\x7d\xf3\x7a\x8b\xdf\x45\x01\x38\x7e\xc1\x7e\x16\x7f\xc7\x5d\x83\xab\x15\x56\x65\x30\xad\x86\xc8\x81\x22\x97\x64\x8c\x36\xa0\x49\xfb\x72\x27\x31\xca\xc3\x3d\xb9\x89\xb7\xb8\xba\x31\x46\x26\xaf\xe9\x12\x00\xd4\x35\x66\x1c\x84\xc8\x1d\x47\xf6\x86\x53\x44\xc9\xe3\x2a\xba\xc8\xa3\x4c\xd1\x70\x5e\x1d\xd9\x75\xd5\x45\x99\x78\x87\xa4\xa1\x1a\x55\x22\x1d\xb9\x3a\xe4\x2b\x6f\x2f\x69\x7f\x9f\x29\x81\x32\x7d\x72\xb3\x76\x3f\x4f\x7d\x9d\xc9\xbe\x90\xf6\xdb\x65\xe1\xfa\x1a\x81\xbc\x35\xe5\xe6\x83\x4c\xae\xf5\xaf\x14\xf3\xa9\x0b\x09\xe2\x6e\xf1\xb0\x49\x0c\x8f\x29\x33\xfe\xc9\x66\x52\x7e\x4e\xe4\xf6\xa9\x1e\x4f\xd5\xc8\xdd\x3b\x7f\xd0\x17\xcb\xf0\x77\x11\x4e\x7d\xfa\x8f\xb8\xaa\xb9\x92\x27\x6c\x59\x3c\xef\x4c\x83\x7f\x14\x68\xf1\xf2\xf8\x27\x00\x00\xff\xff\xb2\x03\xaa\xae\x3c\x03\x00\x00" +var _nodeversionbeaconAdminDelete_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xd3\x40\x10\xbd\xfb\x2b\x9e\x7a\x80\xf4\x12\x73\x40\x1c\x2c\xa0\x72\xea\x48\xf4\x92\xa0\x24\xf4\x3e\x59\x8f\xe3\x15\xf6\x8e\xb5\x1e\xd3\x22\xd4\x7f\x47\xbb\x76\xda\xa0\x34\xa8\xd7\x7d\xf3\xde\xbe\x79\xf3\x6c\xdb\x89\x57\xac\xa4\xe4\x7b\xf6\xbd\x15\xb7\x60\x32\xe2\x50\x79\x69\xf1\xe1\x71\xb5\x2e\x96\xf7\xcb\xcd\xf6\x6e\xbd\x5a\x2c\xf3\xdb\xf5\x2a\x2f\x8a\xcd\x72\xbb\x4d\x92\x34\x4d\xb1\xf3\xe4\x7a\x32\x6a\xc5\x41\x6b\x52\x50\xd3\xc8\x43\x7f\x2a\x97\x97\xad\x75\x50\x41\xc9\x0d\x2b\x43\x6b\x8e\xd4\x5f\x23\x8c\xbd\x0c\xae\x24\xff\x1b\x2d\x75\x9d\x75\x07\x84\xe9\x9a\x8f\xf8\x8e\xf6\x0d\x83\x34\xbe\xf5\x1d\x1b\x5b\x59\x2e\xa3\xc2\xbe\x11\xf3\x13\x35\xdb\x43\xad\xe8\xc8\x53\xcb\xca\x3e\x49\xf4\xc5\xd4\x2c\xce\x7c\x8b\x23\x8b\xe9\xa3\x9d\x14\xd1\x49\x86\x1f\x77\x4e\x3f\x7d\xbc\xc6\x9f\x24\x01\x1a\x7e\x25\x85\x68\x7e\xc3\x55\x86\x77\x67\xd8\x3c\x82\x81\xda\x79\xee\xc8\xf3\x8c\x8c\xd1\x0c\xf9\xa0\x75\x6e\x8c\x0c\x4e\x83\x34\x00\xa4\x29\x16\xe2\xbd\x3c\x80\xe0\xb9\x62\xcf\xce\x70\xc8\x24\x2c\x75\x96\x95\xe7\x5e\x06\x6f\x38\x52\x7b\x6e\xaa\xf9\x45\x5f\xf8\x82\xf0\xe9\x7c\x1f\xd5\x3f\x5f\x32\xf9\x35\x4a\x01\xb3\x70\xd4\xec\x7c\xcd\x71\x6a\xab\xe2\xe9\xc0\xdf\x49\xeb\xeb\x89\x70\x73\x83\x8e\x9c\x35\xb3\xab\x5b\x19\x9a\xd2\xbd\x57\x8c\x5f\x5d\x88\x0a\x9b\xc9\xfb\x55\x50\x78\x0a\xe1\xf0\x23\x9b\x41\xf9\x25\x89\xe2\xb9\x07\xcf\x1d\x88\x5d\x3b\x7d\xd0\x57\xaf\xfe\xef\xc5\x8f\xc5\x79\x43\x4c\xf3\xb1\x7b\x47\x6c\x22\x9e\x96\x23\xc3\x7f\x9a\x32\xed\xf2\xf4\x37\x00\x00\xff\xff\xfb\x0f\x35\x18\x2c\x03\x00\x00" func nodeversionbeaconAdminDelete_version_boundaryCdcBytes() ([]byte, error) { return bindataRead( @@ -4680,11 +4660,11 @@ func nodeversionbeaconAdminDelete_version_boundaryCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/delete_version_boundary.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xce, 0xdd, 0x99, 0x3c, 0x5e, 0x76, 0xfe, 0x27, 0x22, 0xe4, 0x7b, 0x78, 0x77, 0x89, 0xb6, 0x82, 0x89, 0x60, 0x66, 0xee, 0x3b, 0x76, 0xe7, 0xef, 0x52, 0xe7, 0xe7, 0x7a, 0x6b, 0x65, 0x71}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xc4, 0xca, 0x36, 0x2a, 0xbe, 0xa6, 0xf1, 0x75, 0x8f, 0xd5, 0x82, 0x0, 0x82, 0xf0, 0x4c, 0x1b, 0xa5, 0xf5, 0xc6, 0x85, 0x25, 0xc3, 0x9c, 0xbe, 0xbe, 0xda, 0x83, 0xf4, 0x4d, 0xfe, 0x32}} return a, nil } -var _nodeversionbeaconAdminHeartbeatCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x41\x6f\xe2\x40\x0c\x85\xef\xf9\x15\x4f\x39\xb0\xe1\x92\xdc\xd1\xee\x22\xe0\xd2\x53\x55\x51\x89\xbb\x99\x38\x64\xa4\x64\x1c\x79\x9c\x52\xa9\xe2\xbf\x57\x64\x28\x45\xa2\xa2\x73\x1a\x7b\xec\xef\x3d\x7b\x7c\x3f\x88\x1a\x9e\xa5\xe6\x1d\x6b\xf4\x12\xd6\x4c\x4e\x02\x1a\x95\x1e\xf9\x5d\x3e\xcf\xb2\xaa\xc2\x86\xba\x2e\xc2\x5a\x46\xcf\xd6\x4a\x0d\x6b\xc9\xc0\xbd\xb7\x94\x35\xda\x77\x8c\xa3\xb7\x76\x0a\x7d\x70\xd2\xfb\x70\xc0\x5b\x42\xc5\xcc\x94\x42\x24\x67\x5e\x42\x31\xc7\x47\x96\x01\x40\xc7\x3f\x18\x79\x62\x52\xdb\x33\xd9\x96\x9b\x05\x66\x77\xef\xe5\xb5\x20\x41\x06\xe5\x81\x94\x0b\x72\xce\x16\xa0\xd1\xda\x62\x2d\xaa\x72\xdc\x51\x37\xf2\x1c\xb3\x95\x73\x32\x06\x3b\xab\xe2\x72\xaa\x0a\xa9\x06\x04\xe5\x86\x95\x83\x63\x98\x4c\xe6\x6f\x14\x57\x75\xef\x03\x94\xa3\x8c\xea\xf8\xda\x1e\xb9\x6b\xca\x87\xc6\xf1\x0f\x67\x3f\x65\x34\x51\x3a\x70\xb9\x9f\xd4\xfe\x3e\x9a\xe6\xff\x15\x0f\x14\xe7\xcf\x58\xdc\xef\xe6\xbb\xfa\x35\x81\x5f\xc8\xda\xf9\x4d\xe3\x72\x89\x81\x82\x77\x45\xbe\x91\xb1\xab\xc3\x1f\x43\x92\x7e\xc4\xc2\xf6\x32\x60\x9e\x50\x27\x00\xd3\x85\xdf\xd9\x8d\xc6\x37\x8b\xfb\x7d\xf2\xb2\xfd\x0a\x8a\x0b\x2d\x3b\x7d\x06\x00\x00\xff\xff\x23\xcb\x77\xbd\x74\x02\x00\x00" +var _nodeversionbeaconAdminHeartbeatCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x6f\x82\x40\x10\x85\xef\xfc\x8a\x17\x0f\x2d\x5e\xa0\x67\xd3\xd6\xa0\x92\xb4\x17\x6c\x20\xf1\xbe\x2e\x83\xbb\x09\xec\x90\x65\xa8\x26\x8d\xff\xbd\x11\xac\x35\xb1\xb1\x7b\xda\xd9\x9d\x79\xef\x9b\x67\x9b\x96\xbd\x20\xe3\x92\x36\xe4\x3b\xcb\x6e\x41\x4a\xb3\x43\xe5\xb9\xc1\xd3\x21\x5b\xaf\xd2\x4d\x9a\x17\xef\xeb\x6c\x91\x26\xcb\x75\x96\xac\x56\x79\x5a\x14\x41\x10\xc7\x58\xaa\xba\xee\x20\x86\xd0\x90\x18\x2e\x21\x46\x09\xa8\xb1\x32\xbe\x8a\xda\xd6\x84\xbd\x15\x33\x94\xd6\x69\x6e\xac\xdb\xe1\x73\x74\xea\x02\xf1\xca\x75\x4a\x8b\x65\x17\x4e\xf1\x15\x04\x00\x50\xd3\x1f\x3c\x6f\xa4\xbc\x6c\x49\x49\x4e\xd5\x0c\x0f\x37\xff\xd1\xa5\x61\x14\x69\x3d\xb5\xca\x53\xa8\xb4\x96\x19\x92\x5e\x4c\xa2\x35\xf7\x4e\x4e\x36\x38\x9f\x38\xc6\x82\xbd\xe7\x3d\x14\x3c\x55\xe4\xc9\x69\x82\xf0\x40\x7b\x65\x91\x94\x8d\x75\xf0\xd4\x71\xef\x35\x5d\xc6\x3b\xaa\xab\xe8\x2e\x29\x5e\x70\x02\x88\xb6\x83\xcb\xf3\x3d\xec\xd7\x8b\x2c\x10\x9e\xc2\x9f\xdd\x86\xf0\xdb\x5d\x08\x7b\xb5\xa3\x0f\x25\x66\x7a\x35\x38\x9f\xa3\x55\xce\xea\x70\xb2\xe4\xbe\x2e\xdd\xa3\x60\xb4\xbe\xa7\x85\xfc\xbc\xd8\x64\x94\x3a\x02\x18\x2e\x74\x20\xdd\x0b\x5d\x05\xf6\xff\xc6\x91\xf9\x29\xc2\xb3\x5a\x70\xfc\x0e\x00\x00\xff\xff\x54\xf5\x87\x79\x64\x02\x00\x00" func nodeversionbeaconAdminHeartbeatCdcBytes() ([]byte, error) { return bindataRead( @@ -4700,11 +4680,11 @@ func nodeversionbeaconAdminHeartbeatCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/heartbeat.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9f, 0x2e, 0x33, 0xc2, 0x68, 0xee, 0x46, 0xb8, 0xb7, 0xd6, 0xdc, 0x46, 0x84, 0x75, 0x4a, 0xb1, 0xc1, 0x19, 0x4b, 0xaf, 0x3d, 0xb9, 0x5, 0x88, 0x7d, 0xd2, 0x59, 0x36, 0x2b, 0x5e, 0x7, 0x29}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0x8d, 0x70, 0x49, 0x14, 0x1, 0xa9, 0x56, 0x3d, 0xde, 0xa3, 0xc4, 0xf6, 0xfa, 0x14, 0x16, 0x9a, 0xdc, 0xc3, 0x9d, 0x56, 0xff, 0xb5, 0x96, 0x96, 0xf9, 0xba, 0x4c, 0x8b, 0x8c, 0xb4, 0xb0}} return a, nil } -var _nodeversionbeaconAdminSet_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x6b\xdb\x4e\x10\xbd\xeb\x53\x3c\x7c\xc8\x4f\x06\x23\x5d\x7e\x94\x22\x9a\x06\x27\x14\xda\x43\x43\x48\xdc\xdc\xc7\xab\x91\xad\x56\xda\x55\x77\x47\x76\x4b\xc9\x77\x2f\x2b\xad\x6d\x59\xb2\xa1\x27\xe3\xf9\xfb\xe6\xbd\xa7\x2d\xeb\xc6\x58\xc1\xa3\xc9\xf9\x95\xad\x2b\x8d\xbe\x67\x52\x46\xa3\xb0\xa6\xc6\x6c\x12\x9f\x45\x51\x9a\xa6\x58\x59\xd2\x8e\x94\x94\x46\x43\xb6\x24\xa0\xaa\x32\x7b\x37\x9c\xb3\xcc\xeb\x52\x43\x0c\x28\xcf\x41\xd0\xbc\xc7\xae\xcf\xf8\xa0\x6c\xb9\x1b\x74\x0c\xd1\xba\x62\xe4\x5c\x94\xba\xd4\x1b\xd0\x31\xb1\x36\xad\xce\xc9\xfe\x06\x89\x6f\x82\x90\xdd\xb0\xdc\x57\x46\xfd\xf8\xcc\xe5\x66\x2b\x51\x24\x27\x30\x71\x04\xbf\xe9\x2b\x7d\x37\x36\xc3\xb7\x2f\x5a\xde\x2f\x42\xa8\xd4\xe3\xd0\x13\x89\xda\x8e\x42\x96\x9f\xb9\x62\x72\x9c\xe1\x45\x6c\xa9\x37\x77\x3e\xb3\x3e\xad\xeb\xeb\xdf\xfd\x1f\xcd\xf1\x27\x8a\x80\x8a\x2f\xb0\xd7\xdd\xfe\xcc\x45\x86\x9b\x49\x2e\xe9\x92\xa1\x53\xf3\xfe\x90\x0c\x77\x66\xd3\x69\xc9\xa8\xc4\xaf\x6d\x2c\x37\x64\x39\x26\xa5\x24\x03\xb5\xb2\x8d\xef\x8d\xb5\x66\xff\x4a\x55\xcb\x73\xdc\x2c\x95\x32\xad\x16\x8f\x12\x00\xd2\x14\x0f\x96\x49\xb8\x23\x71\x28\x46\x27\xb4\x0f\x36\xe4\x1c\xe7\x68\xc8\x52\xcd\xc2\xd6\x75\x8d\xe7\x28\x71\x7b\x01\xde\x0b\xd7\x3b\xb6\x71\x57\x0e\xd4\x3d\xf7\x07\x15\x16\xa8\x7b\xe6\x0f\x1a\x2c\xd0\xf4\xbc\x1f\x14\x58\xf8\x63\x8e\xac\x9f\x89\xd0\x8d\x9c\x47\xdd\x8f\xe3\xaa\x48\xa6\x7c\x5d\x44\x34\xaa\x89\xcf\xf4\x1b\xfc\x59\x1c\x58\xc8\x06\x37\x86\x7d\x69\x8a\x9e\x51\x10\x2c\x17\x6c\x59\x2b\x0e\xd6\x9d\xfa\xdc\xb2\x33\xad\x55\x7c\x82\x7a\xd5\x14\xb8\x85\x57\x2d\x71\x62\x2c\x6d\x38\x59\x77\x5b\x3e\x5c\x73\xca\xc7\xc0\x6b\xec\x85\xba\xe4\x8e\xae\xea\xa5\x1f\xf6\x44\xb2\x9d\x87\x86\xbb\x3b\x34\xa4\x4b\x15\xcf\x1e\x4c\x5b\xe5\xfa\x3f\x41\xbf\xea\xda\x0c\x3c\x87\x23\x66\x7e\xc4\x9b\xa7\x81\x7f\xb1\x6a\x85\x4f\x26\x5a\xe6\xf9\xc4\x41\x81\x93\xb3\x4f\xf9\x1f\x78\x48\x1c\xcb\x58\xa8\xdd\xf8\x63\xb8\xa2\xfa\x11\x60\x63\x9c\x04\x74\xd3\xab\x36\xd3\x05\x5c\x14\xac\xa4\xdc\xf1\x72\xf8\x86\x9c\x99\x62\x9e\x04\x14\x81\x47\x20\x71\x62\x4b\x25\x9f\x7e\xb6\x54\xad\x4c\x7c\x05\xd3\xa1\x6d\x8e\x0c\xb3\xc7\x01\x3f\x7b\x72\xd0\x46\xfc\x43\xc8\xf9\x88\xad\x95\x27\x6b\xd6\x5d\xf3\x16\xfd\x0d\x00\x00\xff\xff\x4f\xa8\x29\x9e\x8d\x05\x00\x00" +var _nodeversionbeaconAdminSet_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\xc1\x6e\xdb\x30\x0c\x86\xef\x7e\x0a\x22\x87\xcd\x01\x02\x7b\x87\x61\x18\x8c\x75\x85\xd3\x06\x58\x0f\x4b\x8b\xa4\xeb\x9d\x91\xe9\x44\x9b\x2d\x79\x12\x9d\x74\x18\xfa\xee\x83\x64\x3b\x71\xec\x04\xd8\xa9\x28\x49\x91\x3f\x3f\xfe\xb1\x2c\x2b\x6d\x18\x96\x3a\xa3\x17\x32\x56\x6a\x35\x27\x14\x5a\x41\x6e\x74\x09\x1f\x5e\x97\x8f\xf7\x8b\x97\xc5\x6a\xfd\xf0\xb8\x9c\x2f\xd2\xbb\xc7\x65\x7a\x7f\xbf\x5a\xac\xd7\x41\x10\xc7\x31\x3c\x1b\x54\x16\x05\x4b\xad\x80\x77\xc8\x80\x45\xa1\x0f\xb6\xdf\x2e\xcd\x4a\xa9\x80\x35\x60\x96\x01\x82\xa2\x03\xec\x9b\x8c\x0b\xf2\x8e\x7c\xa3\x63\x08\x37\x05\x41\x46\xb9\x54\x52\x6d\x01\x8f\x89\x8d\xae\x55\x86\xe6\x0f\x20\xbb\x47\xc0\x68\xb6\xc4\xf3\x42\x8b\x5f\xdf\x48\x6e\x77\x1c\x04\x7c\x12\x13\x06\xe0\x26\x7d\xc7\x9f\xda\x24\xf0\xe3\x41\xf1\xe7\x59\x1b\x92\x6a\x18\x7a\x42\x16\xbb\x41\xc8\xd0\x8a\x0a\x42\x4b\x09\xac\xd9\x48\xb5\xbd\x75\x99\xcd\x69\x5c\x53\xff\xe9\x63\x30\x85\xbf\x41\x00\x50\xd0\x05\x88\x7e\xf7\x15\xe5\x09\xbc\x1b\xe5\x22\x9f\x6c\x5f\x2a\x3a\x74\xc9\x76\xcf\x64\xdc\x2d\x1a\x94\xb8\xb1\x95\xa1\x0a\x0d\x85\x28\x04\x27\x90\xd6\xbc\x4b\x85\xd0\xb5\x62\x27\x0b\x00\x20\x8e\xe1\xce\x10\x32\x79\x6a\x7d\xfa\xfe\xc0\x2e\x58\xa1\xb5\x94\x41\x85\x06\x4b\x62\x32\xd6\x3f\x3c\x97\x05\x37\x17\xf4\xac\xa9\xdc\x93\x09\x7d\x39\x40\xd9\xc0\xee\xb0\xcf\xa0\x6c\x50\x77\xd0\x67\x50\x35\xa0\x3b\xe4\x33\xa7\xfe\x88\xf9\x8c\xba\x6f\x39\x0d\xfc\x1f\x4b\x45\x1e\x8d\x01\x5d\x54\x34\xa8\x09\xcf\x0e\xd6\xfb\x67\xd6\x51\x48\x7a\x3b\xb6\xf3\xe2\x18\xe6\xda\x18\x7d\x00\x04\x43\x39\x19\x52\x82\x5a\xaf\x8e\x8d\x6d\xc8\xea\xda\x08\x3a\x49\xbd\xea\x02\xb8\x01\x77\xa6\x68\xe3\xbb\x7f\xb9\x66\x89\xaf\x2d\xcf\xd0\x1d\xe8\x92\x0d\x7c\xd5\x9a\xb5\xc1\x2d\x3d\x21\xef\xa6\xed\x83\xdb\x5b\xa8\x50\x49\x11\x4e\xee\x74\x5d\x64\xea\x3d\x43\x33\xea\x5a\x0f\x58\xb5\xe2\x27\xae\xc5\x9b\x5b\x9f\x5e\x49\xd4\x4c\x27\xf3\xa4\x59\x36\x72\x4e\xcb\xe2\xec\x37\xfb\x1f\xfb\x47\x96\x78\x78\xa0\xfd\xd0\xf5\x57\xae\x7d\x14\x58\x69\xcb\x8d\xb8\xf1\x52\xdb\x71\x7f\xca\x73\x12\x2c\xf7\x94\xf6\xbf\x15\x67\x5e\x98\x46\xad\x88\xc8\xb2\x91\x82\x17\xbf\x6b\x2c\x9e\x75\x78\x45\x49\x57\xdd\x52\x4f\x60\xb2\xec\xa1\x39\xa0\x05\xa5\xd9\x7d\xec\x28\x1b\x80\x7a\x76\x9c\x26\x7e\x91\xb7\xe0\x5f\x00\x00\x00\xff\xff\x6f\x29\x85\xa7\x78\x05\x00\x00" func nodeversionbeaconAdminSet_version_boundaryCdcBytes() ([]byte, error) { return bindataRead( @@ -4720,11 +4700,11 @@ func nodeversionbeaconAdminSet_version_boundaryCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/set_version_boundary.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0x5f, 0x19, 0x8f, 0xfe, 0x87, 0x52, 0x72, 0x46, 0xb0, 0x81, 0xa2, 0xc2, 0xf7, 0x57, 0xb4, 0x96, 0xcb, 0xa2, 0xcc, 0xe3, 0xf0, 0x47, 0x81, 0x59, 0x45, 0x5f, 0xf7, 0xcb, 0x2a, 0x8e, 0xb5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0x49, 0x35, 0xe6, 0xaf, 0x28, 0x5e, 0xc9, 0x5b, 0x35, 0xf1, 0x3, 0x12, 0x28, 0xdd, 0x59, 0xcb, 0x3b, 0xdf, 0x46, 0xd5, 0xa8, 0x3, 0x78, 0x65, 0xe5, 0xcf, 0xd4, 0x1e, 0xb, 0xa1, 0x5d}} return a, nil } -var _nodeversionbeaconScriptsGet_current_node_versionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xae\xc2\x30\x10\x04\x7b\x7f\xc5\x2a\xcd\x4b\x9a\xa4\x7f\x25\x14\x74\x34\x20\x7a\x63\x5f\xc0\x52\x7c\x87\xce\xe7\x48\x08\xf1\xef\x14\x21\x55\x68\x67\x47\xda\x49\xf9\x21\x6a\x38\x4a\xa4\x0b\x69\x49\xc2\x3b\xf2\x41\x18\xa3\x4a\x46\xb3\xe1\x8d\x73\xc3\x30\xe0\x40\x56\x60\x77\x42\xa8\xaa\xc4\x86\x79\x91\x10\x69\x4c\x4c\x11\x89\x97\x59\xd8\xd4\x07\xfb\x2b\xab\x71\xf6\xd7\x89\x9c\x0f\x81\x4a\x69\xfd\x34\x75\x18\x2b\x23\xfb\xc4\x6d\xf7\xbf\xed\xe8\x4f\x94\x67\x52\xbc\x1c\x00\x28\x59\x55\xfe\x61\xdd\xc8\xf6\x4b\xc9\xca\xa5\x72\xf4\xfa\x6c\xbb\xfe\x7b\xec\xde\xee\x13\x00\x00\xff\xff\x85\x05\xca\x6f\xed\x00\x00\x00" +var _nodeversionbeaconScriptsGet_current_node_versionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4f\xc3\x30\x14\x84\x77\xff\x8a\xdb\x68\x97\x86\x99\xad\x6d\x2c\xc4\xe2\x48\x35\xca\xee\xc4\x2f\x60\x09\x3f\x47\x2f\xcf\x11\x08\xf1\xdf\x19\x42\x26\xba\xde\x7d\xba\xfb\x52\x9e\x8b\x28\x5c\x89\xd4\x93\x2c\xa9\xf0\x85\xc2\x58\x18\x93\x94\x8c\xc7\x4f\xd7\xb5\xb6\xb7\x37\xff\xd2\xb9\x8b\x3d\x5f\x3b\x77\x6e\xdb\x9b\xf5\xde\x98\xa6\x69\xf0\x4c\xba\x40\xdf\x09\x63\x15\x21\x56\xac\xdb\x06\x22\x4d\x89\x29\x22\xf1\x56\x17\x56\x09\xa3\x3e\x2c\x3b\xf1\x1a\x86\x0f\x32\x73\x1d\x30\x55\x46\x0e\x89\x0f\xc7\xa7\xff\x1a\x27\x4f\x79\x25\xc1\xb7\x01\x00\x21\xad\xc2\x77\xa8\x37\xd2\xeb\x66\xb0\xe7\xa5\x72\x0c\xf2\x75\x38\x9e\xfe\x0e\xcd\x8f\xf9\x0d\x00\x00\xff\xff\xd3\x89\x47\xe6\xec\x00\x00\x00" func nodeversionbeaconScriptsGet_current_node_versionCdcBytes() ([]byte, error) { return bindataRead( @@ -4740,11 +4720,11 @@ func nodeversionbeaconScriptsGet_current_node_versionCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_current_node_version.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0xcf, 0xc4, 0xaa, 0x86, 0xfc, 0xd, 0x40, 0xfc, 0xe6, 0xbb, 0xcc, 0x27, 0xcc, 0xf8, 0x3f, 0x97, 0x44, 0xb5, 0x3, 0x35, 0xb9, 0xe4, 0xe4, 0xa6, 0x73, 0x22, 0xa5, 0xc3, 0x50, 0x54, 0x87}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfb, 0x9f, 0x48, 0x25, 0x5e, 0xe5, 0xf5, 0xf3, 0x98, 0x16, 0x65, 0xb7, 0xcc, 0x3c, 0x13, 0x9e, 0xa0, 0x46, 0x5d, 0x48, 0x2a, 0xe8, 0x1, 0xa3, 0x34, 0x78, 0xa7, 0x4e, 0x4e, 0xf4, 0x54, 0xb2}} return a, nil } -var _nodeversionbeaconScriptsGet_current_node_version_as_stringCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\xb1\x4e\x04\x31\x0c\x44\xfb\x7c\xc5\xe8\xaa\xa4\xc9\xf6\x48\x34\x50\xd0\xd1\x80\xe8\x7d\x89\xf7\x88\x94\x75\x90\xe3\x20\x21\xc4\xbf\x23\xed\x06\x9a\x6d\xdf\x8c\xc7\xaf\x6c\x1f\x4d\x0d\xcf\x2d\xf3\x1b\x6b\x2f\x4d\x1e\x98\x52\x13\xac\xda\x36\x5c\x4e\xfc\xe2\xdc\xb2\x2c\x78\x62\xeb\xb0\x77\x46\x1a\xaa\x2c\x86\xcf\xa3\x84\xcc\x6b\x11\xce\x28\xb2\xc7\x13\xbf\xd2\xb5\xf2\x7e\x48\x1d\x84\x17\xd3\x22\xb7\xe8\x28\x25\xee\xdd\x53\xad\x01\xeb\x10\x6c\x54\xc4\x87\xbb\x99\xe3\xdb\x01\x40\x65\xc3\xb5\x0d\xc9\xa4\x5f\xb8\x3f\x9b\xc6\x1b\xdb\xe3\x61\xf1\xc7\x67\xdb\x87\x7d\x40\xd9\x86\xca\xff\x46\x9c\x4e\xd1\xda\xf1\xc7\x07\xf7\xe3\x7e\x03\x00\x00\xff\xff\xb6\xe8\xbb\xb2\x08\x01\x00\x00" +var _nodeversionbeaconScriptsGet_current_node_version_as_stringCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\x31\x4f\xc3\x30\x10\x85\x77\xff\x8a\x37\x26\x4b\xc2\x8c\xc4\xd0\x36\x11\x62\x71\xa4\x1a\x75\x77\xea\x4b\xb1\xd4\x9c\xa3\xcb\x19\x81\x10\xff\x1d\x29\x31\x2c\xac\xdf\xdd\xfb\xde\x8b\xf3\x92\x44\x61\x53\xa0\x0b\xc9\x1a\x13\x1f\xc9\x5f\x13\x63\x92\x34\xe3\xe1\xc3\x0e\x5d\x7f\xe9\xcf\xee\x65\xb0\xc7\xfe\x70\x1a\xec\xa1\xeb\xce\xbd\x73\xc6\xb4\x6d\x8b\x67\xd2\x15\xfa\x46\xb8\x66\x11\x62\xc5\xfb\xee\x40\xa0\x29\x32\x05\x44\xde\xce\x05\xbf\xfa\xf1\x4e\x5b\xd0\xaf\xf0\x70\x2a\x91\x6f\x8d\x59\xf2\x88\x29\x33\x66\x1f\xb9\xaa\x1f\x0b\xc7\x97\x01\x80\x3b\x29\xc6\x94\x39\x78\xf9\xc4\xd3\xff\xa1\xcd\x8d\xf4\xb4\xb7\xff\xf2\xf2\x5d\xd5\x9b\x40\x48\xb3\xf0\x9f\xa3\x29\x5b\x1a\x4d\x7b\x4f\x55\x9b\x6f\xf3\x13\x00\x00\xff\xff\x57\x8d\x58\xd7\x07\x01\x00\x00" func nodeversionbeaconScriptsGet_current_node_version_as_stringCdcBytes() ([]byte, error) { return bindataRead( @@ -4760,11 +4740,11 @@ func nodeversionbeaconScriptsGet_current_node_version_as_stringCdc() (*asset, er } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x95, 0x4a, 0x28, 0x9c, 0x3d, 0x34, 0xab, 0xe4, 0x22, 0xbd, 0x8d, 0x1f, 0x3b, 0x1f, 0xeb, 0x42, 0xe7, 0xa4, 0x2, 0xb1, 0xec, 0x6d, 0x34, 0x10, 0xc1, 0xd8, 0x6c, 0xc2, 0xec, 0xcd, 0x9f, 0x68}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x23, 0x94, 0x82, 0x7f, 0x6f, 0x76, 0x57, 0x6f, 0x57, 0xa5, 0xb0, 0xd3, 0xa9, 0x73, 0x3b, 0xd9, 0x46, 0x6, 0x45, 0x4b, 0x52, 0x3, 0xc1, 0xa9, 0xb5, 0x2e, 0x95, 0x86, 0xce, 0x4b, 0x4e, 0x3a}} return a, nil } -var _nodeversionbeaconScriptsGet_next_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xbf\x6a\xc4\x30\x0c\xc7\xf1\xdd\x4f\xf1\x23\x53\xb2\x34\x7b\x97\x42\x1f\x20\x43\x87\xee\xae\x2d\xa7\x82\x58\x0a\xb2\x1d\x52\xca\xbd\xfb\x71\xff\x96\xcb\x8d\x12\x9f\xaf\x10\xe7\x55\xad\x62\xd2\x48\xdf\x64\x85\x55\x3e\xc9\x07\x15\x24\xd3\x8c\xee\xb0\xef\x9c\x1b\xc7\x11\x5f\x54\x8d\x69\xa3\x82\xfa\x4b\x10\xda\x2b\xb6\x1b\xc3\x8f\x36\x89\xde\xfe\xa0\x06\xe1\xe5\xca\x39\x5d\x9c\x11\xb8\x40\x14\x6d\x0d\x9a\x59\xe6\x63\x13\x29\xb1\x50\x74\x3e\x04\x2a\xa5\xf7\xcb\x32\x20\x35\x41\xf6\x2c\xfd\xf0\x7e\xfc\xf3\xed\x31\xdd\x2f\x7c\xe0\xdf\x01\x80\x51\x6d\x26\x2f\xfc\x4c\x75\xa2\xbd\x3e\x65\xfd\xe0\x4e\xee\x1c\x00\x00\xff\xff\x75\x24\x24\x44\x0c\x01\x00\x00" +var _nodeversionbeaconScriptsGet_next_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\x3d\x6b\xc3\x30\x10\xc6\xf1\x5d\x9f\xe2\x19\x93\xa5\xee\xdc\xa5\x24\xb5\x86\x2e\x32\xd8\x90\xdd\x89\x4e\xe9\x41\x75\x67\xce\x92\x71\x29\xfd\xee\xa5\x6f\x4b\x9d\xf1\xe0\xff\x3b\x1e\xce\x93\x5a\x41\xd0\x48\x27\xb2\x99\x55\x8e\x34\x5e\x54\x90\x4c\x33\xee\xd7\xd0\xb5\xfe\xe4\xfb\xe1\xb9\x0b\x47\x7f\x78\xea\xc2\xa1\x6d\x7b\x3f\x0c\xce\x35\x4d\x83\x9e\x8a\x31\x2d\x34\xa3\xbc\x10\x84\xd6\x82\xe5\xe7\x0b\xce\x5a\x25\x8e\xf6\x06\x35\x08\xbf\x7e\xe7\x9c\xbe\x3a\x23\xf0\x0c\x51\xd4\xe9\xa2\x99\xe5\xba\x35\x91\x12\x0b\x45\x37\xd5\x33\x52\x15\xe4\x91\x65\xb7\x7f\xd8\xce\xbc\xfb\xbb\x7e\xe5\x23\xde\x1d\x00\x18\x95\x6a\x72\xa3\xbf\x52\x09\xb4\x96\x7f\x6c\xb7\x77\x1f\xee\x33\x00\x00\xff\xff\x95\x44\xbb\xfa\x0b\x01\x00\x00" func nodeversionbeaconScriptsGet_next_version_boundaryCdcBytes() ([]byte, error) { return bindataRead( @@ -4780,11 +4760,11 @@ func nodeversionbeaconScriptsGet_next_version_boundaryCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_next_version_boundary.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x75, 0xb3, 0x64, 0xda, 0xd6, 0x80, 0x83, 0xd1, 0x25, 0x20, 0x2d, 0x41, 0xf5, 0x29, 0xd2, 0xd2, 0x6a, 0x68, 0x45, 0x17, 0x46, 0x2a, 0x5a, 0x4b, 0x8, 0xc5, 0x33, 0xd4, 0xfa, 0xbd, 0xc1, 0x4d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x96, 0x49, 0x75, 0xa7, 0x75, 0xc1, 0xdc, 0x59, 0xdf, 0x44, 0xe1, 0xec, 0x7c, 0x20, 0x61, 0xa6, 0xb0, 0x5a, 0x2f, 0x8c, 0x59, 0x64, 0xf9, 0xe2, 0xac, 0xed, 0x22, 0x7d, 0xa9, 0x7d, 0xb9, 0xe6}} return a, nil } -var _nodeversionbeaconScriptsGet_next_version_update_sequenceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xce\x31\x8b\xc2\x40\x14\xc4\xf1\x7e\x3f\xc5\x90\x2a\x69\x2e\xcd\x71\xc5\x95\x36\x62\x93\x46\xb4\xdf\x6c\x26\x1a\xc8\xbe\x8d\x6f\xdf\x4a\x40\xfc\xee\x82\xd8\x48\xda\xdf\x14\xf3\x9f\xe2\x92\xd4\xd0\xa5\x81\x67\x6a\x9e\x92\xec\xe8\x43\x12\x8c\x9a\x22\xaa\x8d\x57\xce\xb5\x6d\x8b\x3d\x2d\xc3\xae\x84\x70\x35\x64\xde\x0a\x25\x10\x52\x62\x4f\xc5\x98\xf4\x3d\x9a\xef\x67\xa2\x2c\x83\x37\x0e\xe0\x9d\x62\xce\x87\xc0\x9c\x6b\x3f\xcf\x0d\xc6\x22\x88\x7e\x92\xba\xf9\xc7\xe9\x20\xf6\xf7\x8b\x87\x03\x00\xa5\x15\x95\x6d\xd5\xcf\x85\xd6\x71\xb5\x2f\x3c\x7e\xde\xeb\xc6\x3d\x5f\x01\x00\x00\xff\xff\x15\x0c\xe6\x10\xcf\x00\x00\x00" +var _nodeversionbeaconScriptsGet_next_version_update_sequenceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\x31\x4f\x86\x30\x18\x06\xf7\xfe\x8a\x67\xfc\xbe\x45\x1c\x8c\x83\x1b\x48\x63\x58\x4a\x42\x23\x7b\x81\x07\x25\xb1\x6f\xb1\xbc\x35\x24\xc6\xff\x6e\x62\x5c\x8c\xeb\xdd\x70\xb7\xc5\x3d\x65\x85\x4b\x0b\x47\xe6\x63\x4b\xd2\x30\xcc\x49\xb0\xe6\x14\x71\x7b\xba\xbe\xb5\xa3\x1d\x7c\xd7\xbb\xc6\xd6\x8f\xbd\xab\xdb\x76\xb0\xde\x1b\x53\x55\x15\x9e\xa8\x07\xf4\x95\x10\x9e\x8a\x83\xef\x85\x32\x13\x52\xe2\xc4\x8c\x35\xe5\x1f\xa9\x61\x7a\x23\xca\xbe\x04\xe5\x02\x7e\x50\xd4\xec\x65\xc2\x5a\x04\x31\x6c\x72\xb9\x3e\xe0\xb9\x13\xbd\xbf\xc3\xa7\x01\x80\x4c\x2d\x59\xfe\x4f\xdd\xbc\x50\x1d\x4f\xfd\x03\xfd\x6f\xf5\x72\x35\x5f\xdf\x01\x00\x00\xff\xff\x79\x0b\x75\xa7\xce\x00\x00\x00" func nodeversionbeaconScriptsGet_next_version_update_sequenceCdcBytes() ([]byte, error) { return bindataRead( @@ -4800,11 +4780,11 @@ func nodeversionbeaconScriptsGet_next_version_update_sequenceCdc() (*asset, erro } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_next_version_update_sequence.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0x59, 0xeb, 0x83, 0xb9, 0x7c, 0xaf, 0x1c, 0x21, 0xdf, 0x42, 0x68, 0xcd, 0x9, 0x94, 0x45, 0xa5, 0xd4, 0xc4, 0x6d, 0xa6, 0x19, 0x7f, 0xac, 0x69, 0x9a, 0x84, 0xe7, 0xe6, 0x74, 0x11, 0x3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xba, 0x6, 0xe1, 0xfb, 0x2, 0x94, 0x1d, 0x0, 0x37, 0xef, 0xb8, 0xb1, 0xbf, 0x79, 0x81, 0xd4, 0x32, 0x4f, 0x2d, 0xfb, 0x3a, 0x10, 0x53, 0xa9, 0x9c, 0x65, 0x73, 0x1e, 0x22, 0xc1, 0x59, 0xec}} return a, nil } -var _nodeversionbeaconScriptsGet_version_boundariesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x3f\xcb\x83\x30\x10\xc6\xf7\x7c\x8a\x07\x27\x85\x17\xdd\x1d\xdf\xad\x4b\x29\x1d\xdc\x0f\x3d\xd3\x80\x5e\xe4\x12\x85\x52\xfa\xdd\x4b\xac\x85\xb6\x76\x09\xb9\xe7\x0f\xcf\xcf\x8d\x93\xd7\x88\xa3\xef\xb8\x61\x0d\xce\xcb\x3f\x53\xeb\x05\xbd\xfa\x11\xd9\x4e\xcf\x8c\xa9\xaa\x0a\x67\x8e\xb3\x4a\x40\xbc\x30\x96\xcd\xf7\xb3\x74\xa4\x8e\x03\x26\xb2\x8c\xde\xeb\x6a\x5b\xb7\xb0\x3c\x25\x92\x0e\x13\xeb\x89\x2c\x97\x86\xda\x96\x43\xc8\x69\x18\x0a\xf4\xb3\x60\x24\x27\x79\x8a\xd5\x38\x48\xfc\x7b\x05\xd7\xab\xa8\xf7\x84\x65\xf3\xb1\x7b\x4d\x61\xdc\x0c\x00\xe8\x4a\xf7\xa3\x62\x39\x36\xdf\xb4\xa9\xb7\xed\xa6\xf7\x6d\x78\xfb\x14\xe6\xfe\x08\x00\x00\xff\xff\xca\xa3\xbd\xbb\x26\x01\x00\x00" +var _nodeversionbeaconScriptsGet_version_boundariesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xbd\x4e\xc4\x30\x10\x84\x7b\x3f\xc5\x94\x9c\x84\x2e\xd4\xd7\xdd\x11\x17\xd7\x38\x28\x91\xdc\x1b\xb2\x31\x2e\xb2\xb6\x36\x76\x04\x42\xbc\x3b\x72\x08\x12\x7f\xcd\x6a\x77\x67\x46\xf3\x85\x39\x45\xc9\x30\x71\x24\x4b\xb2\x84\xc8\x17\x72\x4f\x91\x31\x49\x9c\x71\xf7\x62\xba\x56\x5b\xdd\x0f\xd7\xce\x5c\xf4\xf9\xbe\x33\xe7\xb6\xed\xf5\x30\x28\xd5\x34\x0d\x7a\xca\x45\x78\x41\x7e\x26\xac\x7b\x3c\x16\x1e\x9d\x04\x5a\x90\x9c\x27\x4c\x51\x36\xd9\x87\x95\xf8\xf3\xe5\x78\x44\x22\x79\x70\x9e\x8e\x2a\x95\x47\x4c\x85\x31\xbb\xc0\x37\x55\x3e\xe1\xca\xf9\xf6\xcb\xb0\x5d\x87\xd3\x5f\xc0\xa3\xfd\xd1\xf7\x5a\xcd\x78\x53\x00\x20\x1b\xd5\x3f\x11\x4f\xd9\xfe\xa6\xac\xb9\xbd\xb7\xce\x6f\xc5\xfb\x72\x50\xef\x1f\x01\x00\x00\xff\xff\xb5\x4e\xf5\xec\x25\x01\x00\x00" func nodeversionbeaconScriptsGet_version_boundariesCdcBytes() ([]byte, error) { return bindataRead( @@ -4820,11 +4800,11 @@ func nodeversionbeaconScriptsGet_version_boundariesCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_version_boundaries.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0xa1, 0x9, 0x94, 0xd7, 0xa0, 0x68, 0x9d, 0xa1, 0x3f, 0x5d, 0xe9, 0xd1, 0x3a, 0x52, 0x92, 0x56, 0xf0, 0xc1, 0x29, 0x9b, 0x93, 0xef, 0x15, 0x57, 0x95, 0x86, 0x70, 0xb4, 0xa4, 0x2b, 0xe2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xab, 0x9c, 0x4b, 0xef, 0x3a, 0x1f, 0xed, 0x48, 0x7e, 0x0, 0xca, 0xa9, 0x4e, 0x7c, 0x4a, 0x4a, 0xc1, 0xaa, 0xb6, 0x1a, 0xfa, 0xc6, 0x2b, 0x52, 0x44, 0x25, 0x72, 0xb8, 0x99, 0xe7, 0x77, 0x6a}} return a, nil } -var _nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xd0\xb1\x4e\xc4\x30\x0c\x06\xe0\x3d\x4f\xf1\xeb\xa6\x76\xa1\x0b\x62\x60\x64\x40\x62\x41\x08\x89\xdb\xdd\xc4\x6d\x2c\x1a\xa7\x4a\x1c\x4e\x80\x78\x77\xa4\x5e\x99\x2a\x56\xdb\xfa\xec\xdf\x92\xd6\x5c\x0c\xcf\x39\xf0\x99\x4b\x95\xac\x0f\x4c\x3e\x2b\xa6\x92\x13\x4e\x87\xfa\xc9\xb9\x61\x18\xf0\xca\xd6\x8a\x56\x58\x64\x7c\xec\xfd\xdc\x34\x50\xf9\x7c\x2c\xcc\x5f\xfc\xc2\x45\x72\xc0\x25\x8a\x8f\x08\x3c\x89\xf2\x75\x3a\x89\x4a\x6a\x09\xda\xd2\xc8\x05\x79\xc2\xb8\x64\xff\x5e\x37\xd6\x22\x19\x52\xab\x86\x95\x6a\xc5\xc8\x76\x61\x56\xb4\x35\x90\x89\xce\xa0\xbf\x65\x20\x0d\x10\xab\x3b\x1d\xae\x08\x22\xcb\x1c\x6d\xa3\xc6\xfd\x1c\x47\xde\x73\xad\x1d\x2d\x4b\x8f\xa9\x29\x12\x89\x76\xfd\x3d\xde\x9e\xd4\xee\x6e\xf1\xed\x00\xa0\x6c\x79\x8e\x6f\xb8\x99\xd9\xce\xff\xe7\xeb\x7a\xf7\xf3\x1b\x00\x00\xff\xff\x2f\xba\x20\x02\x42\x01\x00\x00" +var _nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xd0\xbd\x4e\xeb\x40\x10\x05\xe0\xde\x4f\x71\xca\xa4\xb9\xb9\x05\xa2\xa0\x4b\xb0\x91\xd2\xd8\xc8\x16\xee\xd7\xde\xb1\x77\x04\x3b\x6b\xed\xce\x12\x7e\xc4\xbb\x23\x39\xa6\x42\xf4\x33\xdf\xcc\x39\xec\x97\x10\x15\x75\xb0\xd4\x53\x4c\x1c\xe4\x44\x66\x0c\x82\x29\x06\x8f\xff\x6f\x75\x53\x56\x7d\xd5\x76\xe7\xa6\x3e\x55\xc7\xfb\xa6\x3e\x96\x65\x5b\x75\x5d\x51\x1c\x0e\x07\xb4\xa4\x39\x4a\x82\x3a\xc2\xeb\xb6\x1e\xb2\x58\x13\xdf\x1f\x22\xd1\x07\x3d\x52\xe4\x60\x71\x71\x3c\x3a\x58\x9a\x58\xe8\x3a\xed\x59\xd8\x67\x0f\xc9\x7e\xa0\x88\x30\x61\x78\x09\xe3\x73\x5a\x59\x75\x46\xe1\x73\x52\x2c\x26\x25\x0c\xa4\x17\x22\x41\x5e\xac\x51\x96\x19\xe6\xe7\x18\x8c\x58\xb0\xa6\x8d\xb6\x57\x04\x8e\x78\x76\xba\x52\xc3\xf6\x4e\xb1\xe4\x01\x53\x16\x78\xc3\xb2\xdb\xdf\xe1\xe9\x2c\x7a\x7b\x83\xcf\x02\x00\xe2\x9a\xe3\x77\x0b\xff\x66\xd2\xfe\xef\x5c\xbb\x7d\xf1\xf5\x1d\x00\x00\xff\xff\x9d\x4e\x18\x47\x41\x01\x00\x00" func nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdcBytes() ([]byte, error) { return bindataRead( @@ -4840,11 +4820,11 @@ func nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdc() (*asset, er } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_version_boundary_freeze_period.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0x6, 0x8b, 0x76, 0x1c, 0x24, 0xee, 0x96, 0x38, 0x5f, 0x6a, 0xf, 0x88, 0xd6, 0x73, 0xa4, 0x44, 0x22, 0xa4, 0x98, 0xb7, 0x60, 0x1, 0x71, 0x29, 0xb4, 0xf9, 0xdd, 0x3c, 0xd0, 0xa2, 0x32}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x36, 0x8d, 0x65, 0x52, 0xa7, 0x75, 0xb3, 0x7c, 0x0, 0x6a, 0xd1, 0x48, 0x8c, 0x30, 0xbd, 0x1, 0xde, 0xef, 0x97, 0xb5, 0xbf, 0xfd, 0x57, 0x70, 0x84, 0x7c, 0x73, 0x22, 0xa4, 0xec, 0x7, 0x44}} return a, nil } -var _quorumcertificateAdminPublish_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x6a\xf3\x30\x10\x84\xef\x7a\x8a\x21\x87\xe0\xc0\x8f\x7d\x0f\x7f\x0b\x41\xd0\x73\x43\xfb\x02\x1b\x75\x63\x0b\x14\xad\x58\xad\x93\x43\xc8\xbb\x17\xdb\x6d\x49\x20\x3a\x0e\xfa\xbe\x19\x29\x9e\x8a\xa8\xe1\x2d\xc9\xc5\xa7\xb1\x1a\xeb\xde\xe3\xa8\x72\xc2\xea\x21\x5b\x39\xd7\x75\xf8\xe4\x6a\x30\xa5\x5c\x29\x58\x94\x8c\xa3\x28\x6c\x60\xec\x3d\xe8\xeb\x14\x33\x4c\x50\xc6\x43\x8a\x75\x00\x41\xf9\xc8\xca\x39\xf0\xc4\xda\x40\x06\x4a\x49\x2e\x15\x14\x82\x8c\xd9\xea\x74\x5d\xb9\x8f\x53\xc7\xec\xda\x7b\x9c\xc5\x62\xee\x9d\xbb\xaf\xb9\x3a\x07\x00\x45\xb9\x90\x72\x53\x63\x9f\x59\xb7\xa0\xd1\x86\xc6\x53\xa1\x43\x4c\xd1\x22\xd7\x0d\xd6\xbb\x45\xbd\xc1\x75\x46\xa6\x93\xd8\x96\x75\x9e\x0a\x5e\xb0\xd0\x6d\xb8\xe3\xda\x6a\xa2\xd4\x73\x1b\x6b\x1d\xf9\xff\xfa\xe1\xe9\xed\x6e\x62\x5f\x9b\x27\xe1\xc7\x82\xbd\x93\x0d\x9b\xbf\xba\x67\xfe\x9f\x3f\x69\x7e\x67\xfc\x03\xd9\x16\xdd\x1c\x87\xee\x2c\xc6\xea\x95\xc9\x44\x17\xcf\xcd\xdd\xdc\x77\x00\x00\x00\xff\xff\xbf\xcc\x5d\xab\x9b\x01\x00\x00" +var _quorumcertificateAdminPublish_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4e\xc3\x30\x10\x44\xef\xfe\x8a\x39\xa1\x56\x42\x0d\xe7\x0a\x21\x45\x2e\x9c\x09\xe5\x07\x96\xb0\x89\x2d\x1c\x6f\xb4\xde\xb4\x48\x55\xff\x1d\x39\xbd\x80\xc4\x5e\x77\x66\xde\x4c\x9c\x66\x51\xc3\x4b\x92\xb3\x4f\x4b\x31\xd6\xce\x63\x50\x99\xf0\xf0\xdd\xf9\xf6\x70\x78\x7b\x3e\x1e\x9d\x6b\x1a\xbc\x73\x31\x98\x52\x2e\xd4\x5b\x94\x8c\x41\x14\x16\x18\x9d\x07\x7d\x4e\x31\xc3\x04\xf3\xf2\x91\x62\x09\x20\x28\x0f\xac\x9c\x7b\xae\x5e\x0b\x64\xa0\x94\xe4\x5c\x40\x7d\x2f\x4b\xb6\x52\xe5\xca\x63\xac\xcc\x35\xab\xf3\x38\x89\xc5\x3c\x3a\xf7\x1b\x73\x71\x0e\x00\x66\xe5\x99\x94\x37\x25\x8e\x99\x75\x8f\x76\xb1\xd0\xde\xa2\xb6\xb8\xac\x92\x7a\xb7\xf7\x2e\xc5\xfc\xf5\x78\xf7\x67\xd5\xae\xad\x25\x9f\x36\xcd\xda\xb1\x6f\x4e\x62\xac\x5e\x99\x4c\xf4\x1e\x46\x3a\xb2\xed\xf1\x8f\xe5\x68\xa2\x34\xf2\x2b\x59\xd8\xae\x9c\xab\xbb\xfe\x04\x00\x00\xff\xff\x97\xf7\x08\x84\x37\x01\x00\x00" func quorumcertificateAdminPublish_voterCdcBytes() ([]byte, error) { return bindataRead( @@ -4860,11 +4840,11 @@ func quorumcertificateAdminPublish_voterCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/admin/publish_voter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2f, 0xd7, 0x84, 0xd7, 0x6, 0xe, 0x60, 0xa8, 0x8, 0xe9, 0x87, 0x59, 0x2c, 0x71, 0xbf, 0x8c, 0x9e, 0xd2, 0xe2, 0xa3, 0x9c, 0x39, 0xfc, 0xfe, 0x41, 0xe8, 0x1f, 0xc2, 0x19, 0x5b, 0x40, 0xe6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x62, 0x25, 0xcd, 0x7f, 0xbf, 0x92, 0xcd, 0x55, 0x37, 0x4c, 0xbc, 0x66, 0x88, 0x88, 0x9, 0x48, 0xe5, 0x38, 0x46, 0x33, 0xac, 0x31, 0x40, 0x2c, 0x65, 0x1f, 0x77, 0x1, 0x34, 0x4, 0x5b, 0x37}} return a, nil } -var _quorumcertificateAdminStart_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\xc1\x6e\xdb\x38\x10\xbd\xeb\x2b\x1e\x7c\xc8\xca\xd8\xc0\xde\x00\x8b\x1c\x84\xf5\x06\xae\x8d\x02\xbe\x14\x4d\xdd\xa6\x07\x41\x07\x86\xa2\x25\x16\x32\xa9\x92\xa3\xb8\x81\xe1\x7f\x2f\x48\x4a\x8e\x18\xbb\x02\x0c\xc8\xe2\x7b\x33\x6f\x66\xde\x50\xee\x5b\x6d\x08\x1f\x1b\x7d\x58\x35\x9d\x25\x61\x1e\x57\xd8\x19\xbd\xc7\x24\xfa\x36\x49\x92\xf9\x1c\x5f\x85\x25\x90\x61\xca\x32\x4e\x52\x2b\xec\xb4\x01\xd5\x02\x8f\x2b\xb0\x72\x2f\x15\x48\xc3\x12\x33\x34\x7c\x7d\xd1\x24\x55\x85\x56\x18\xa9\x4b\x17\xe2\x20\xa9\x06\x03\x33\x86\xbd\x42\xef\xc0\x75\xd3\x08\x4e\xda\x40\xe9\x52\x80\x87\x84\xd6\xa7\x5b\x9a\xaa\xdb\x0b\x45\x36\x73\xff\xdc\x4f\xaa\x52\x72\x61\x33\x2c\xd5\x28\x44\xe0\x0c\x87\x0e\xd7\x7f\xfa\xa4\x4b\xb1\x59\x3b\xf8\x80\xf5\x24\xeb\xdf\x9a\xc6\x8b\xf4\x69\x37\x6b\x0b\xa9\x20\x18\xaf\x07\xae\x0b\xe3\xce\xbe\x0b\x59\xd5\x74\x3d\x86\xe7\x1e\x02\xe0\x82\x9f\x8c\x1a\x95\x9e\x85\xe7\xdf\x36\x8a\xee\xee\x8b\xdb\x0b\x8d\x79\xbe\x25\x23\x55\x55\x14\xb7\x71\xe2\xdc\x73\xee\xff\x2d\x8a\x29\x8e\x49\x02\x00\xad\x11\x2d\x33\x22\xb5\xb2\x52\xc2\x64\x60\x1d\xd5\xe9\x07\x6d\x8c\x3e\x3c\xb1\xa6\x13\x53\xdc\x2c\x39\xd7\x9d\xa2\x33\xc5\x3d\xf3\x39\x02\x08\x0c\x46\xec\x84\x11\x8a\x0b\x37\xb3\x68\x86\xfa\xf9\x87\xe0\x74\x26\x35\x82\xc2\xc1\x17\xb1\xc3\x02\x21\xe5\xcc\x92\x36\xac\x12\xb3\x67\x1f\xef\xbf\x9b\xc8\x2d\xb3\xa5\xc3\xff\x9f\x3a\x23\x65\xb8\x72\xb4\x0d\xec\xcf\x8c\xea\xe9\x39\x91\x7b\x1e\x1e\xd0\x32\x25\x79\x3a\x59\xe9\xae\x29\xa1\x34\x21\xa4\x88\x05\xff\xe4\x41\xd3\x64\x9a\x44\x42\x07\xff\x64\xc8\xe3\xb4\xfd\x5b\x81\x05\xf2\xe2\x4c\x19\x77\x66\x43\xc2\x30\x12\xa0\xda\xe8\xae\xaa\xa3\x61\x82\xa9\x12\x5c\x2b\x4b\xa6\xe3\x04\x86\x3e\xdc\xfb\x5e\xb9\x7d\x90\xaa\x14\xbf\x9c\x1b\xfa\x99\x8f\x07\x30\xc8\x1c\xcd\x77\x2d\xbd\x43\x98\x79\xcd\x70\x0c\x0e\xc8\x10\x06\x7e\xc2\x02\xc7\x53\x44\x7e\x61\x06\x12\x0b\xfc\x13\xc7\x9c\xcf\xb1\x15\x14\x24\xbb\xd8\x7f\x59\xc8\xd2\x8b\x0e\xee\x7c\x0f\x5e\xb1\x86\x77\x4d\xa8\xd6\xf5\x93\x58\xd3\x23\x7d\x09\x91\x8f\xc7\xd4\x5d\xbf\xa7\x9b\xb5\x2b\x30\x76\x70\xee\x0b\x2f\x70\x8c\x18\xe3\x8a\x2d\x16\xe3\xca\x7b\xc2\x1f\xe1\x01\xd6\x73\x6c\x2e\x8b\xe4\x02\x7a\xb5\x8f\x79\x50\x58\x44\xd9\x2e\xb9\xae\x8d\x12\x7f\xe3\x2e\x3a\x39\xc5\xc0\xc1\x4f\x33\xd6\xb6\x42\x95\xe9\x55\x53\xa5\xbe\x90\x2c\x4c\xfe\xdd\xf2\x5e\x55\x38\x7d\x33\xfd\x29\xda\xce\xad\xbf\x3b\x1f\x57\x78\x0a\xf7\xa6\xbf\x2d\xdd\x88\x6c\xd7\xb6\x8d\x14\xe5\xdb\x05\x39\xb0\x86\xd5\x9c\xf9\x7b\x37\xf0\xd2\xb7\x35\x18\xde\x42\xc6\x53\x72\xfa\x1d\x00\x00\xff\xff\xd2\x6f\xc8\x6d\xf2\x05\x00\x00" +var _quorumcertificateAdminStart_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\xcd\x6e\xdb\x3c\x10\xbc\xeb\x29\x06\x39\x7c\x9f\x8d\x06\x76\x02\x14\x39\x08\x75\x03\xd7\x6e\x01\x5f\x8a\x3a\xee\xcf\x41\xd0\x81\xa1\x68\x89\x85\x4c\xaa\xe4\x2a\x4e\x60\xf8\xdd\x0b\x92\x92\x23\xc6\xae\x00\x03\xb2\x38\xb3\x3b\xbb\x3b\x5c\xb9\x6b\xb4\x21\x7c\xa9\xf5\x7e\x51\xb7\x96\x84\x59\x2f\xb0\x35\x7a\x87\x9b\xe7\xf5\x62\xbe\x5c\x3e\x7c\xde\x6c\x92\x64\x3a\xc5\x77\x61\x09\x64\x98\xb2\x8c\x93\xd4\x0a\x5b\x6d\x40\x95\xc0\x7a\x01\x56\xec\xa4\x02\x69\x58\x62\x86\xfa\xaf\x4f\x9a\xa4\x2a\xd1\x08\x23\x75\xe1\x42\xec\x25\x55\x60\x60\xc6\xb0\x17\xe8\x2d\xb8\xae\x6b\xc1\x49\x1b\x28\x5d\x08\xf0\x20\xc0\xfa\x74\x73\x53\xb6\x3b\xa1\xc8\xa6\xee\x9f\xfb\x49\x55\x48\x2e\x6c\x8a\xb9\x1a\x84\x08\x9c\xfe\xd0\xe1\xba\x4f\x5f\x75\x21\x56\x4b\x07\xef\xb1\x9e\x64\xfd\x5b\x5d\x7b\x91\x3e\xed\x6a\x69\x21\x15\x04\xe3\x55\xcf\x75\x61\xdc\xd9\x2f\x21\xcb\x8a\x2e\xc7\xf0\xdc\x7d\x00\x9c\xf1\x93\x41\xa3\x46\x27\xe1\xd9\x8f\x95\xa2\xdb\xbb\xfc\xfa\x4c\x63\x96\x6d\xc8\x48\x55\xe6\xf9\x75\x9c\x38\xf3\x9c\xbb\xf7\x79\x3e\xc6\x21\x49\x00\xa0\x31\xa2\x61\x46\x8c\xac\x2c\x95\x30\x29\xe6\x2d\x55\x73\xce\x75\xab\xe8\x84\x71\xcf\x74\x8a\x4f\xda\x18\xbd\x07\x83\x11\x5b\x61\x84\xe2\xc2\x0d\x29\x1a\x9a\x7e\xfc\x2d\x38\x9d\x48\xb5\xa0\x70\xf0\x20\xb6\x98\x21\xe4\x98\x3c\xfa\x38\x1f\xfe\x8b\x6c\x32\x99\x3b\xdc\xc7\x91\x73\x4b\x8a\x0b\x47\x1b\xd2\x86\x95\xe2\x1b\xa3\x6a\x7c\x4a\xe0\x9e\xfb\x7b\x34\x4c\x49\x3e\xba\x5a\xe8\xb6\x2e\xa0\x34\x21\xa4\x88\x85\xfe\xe1\x41\xcb\xd5\x38\x89\x04\xf6\x46\x49\x91\xc5\x69\xbb\xb7\x1c\x33\x64\xf9\x89\x32\xec\xc8\x8a\x84\x61\x24\x40\x95\xd1\x6d\x59\x45\x53\x03\x53\x05\xb8\x56\x96\x4c\xcb\x09\x0c\x5d\xb8\xb7\x3d\x72\xc6\x97\xaa\x10\xcf\x6e\xec\xdd\x70\x87\x8d\xef\x65\x0e\x06\xb9\x94\xde\x0a\xcc\xbc\xa4\x38\x84\x51\xa7\x08\x93\x3d\x62\x86\xc3\x31\x22\x3f\x31\x03\x89\x19\x6e\xe2\x98\xd3\x29\x36\x82\x82\x64\x17\xfb\x7f\x0b\x59\x78\xd1\xc1\x86\x6f\xc1\x0b\x56\xf3\xb6\x0e\xd5\xba\x7e\x12\xab\x3b\xa4\x2f\x21\x32\xec\x90\xba\xed\x2e\xe4\x6a\xe9\x0a\x8c\xad\x9a\xf9\xc2\x73\x1c\x22\xc6\xb0\x62\x8b\xd9\xb0\xf2\x8e\xf0\x4f\x78\x80\x75\x1c\x9b\xc9\x3c\x39\x83\x5e\xec\x63\x16\x14\xe6\x51\xb6\x73\xae\x6b\xa3\xc4\x3b\xdc\x46\x27\xc7\x18\xd8\xfb\x69\xc2\x9a\x46\xa8\x62\x74\xd1\x54\x23\x5f\x48\x1a\x26\xff\xe6\x96\x5e\x54\x38\x7e\x35\xfd\x31\xba\x95\x1b\xbf\x24\xd7\x0b\xfc\x0c\x0b\xd2\xaf\x45\x37\x22\xdb\x36\x4d\x2d\x45\xf1\xba\x09\x7b\x56\x7f\x25\x27\x7e\xc1\x06\xde\xe8\xf5\x1a\xf4\x6f\x21\xe3\x31\x39\xfe\x0d\x00\x00\xff\xff\x34\x89\x6e\x08\xd7\x05\x00\x00" func quorumcertificateAdminStart_votingCdcBytes() ([]byte, error) { return bindataRead( @@ -4880,11 +4860,11 @@ func quorumcertificateAdminStart_votingCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/admin/start_voting.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2a, 0x25, 0xc2, 0xfc, 0x62, 0x2e, 0xbc, 0xbe, 0xa8, 0x6, 0x15, 0x20, 0x12, 0xd0, 0x13, 0xe, 0x7, 0x1e, 0x52, 0x3, 0x82, 0xe1, 0xca, 0x1d, 0xcb, 0xfc, 0xda, 0x7b, 0x42, 0x3f, 0xa0, 0xfd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf5, 0x37, 0xb6, 0x46, 0xc9, 0xb7, 0x82, 0xbe, 0x4d, 0x32, 0x73, 0x50, 0x5, 0xcc, 0x34, 0x71, 0xdc, 0xa8, 0x85, 0xc1, 0x15, 0x8e, 0x4d, 0x2e, 0x95, 0x28, 0x22, 0x7c, 0x35, 0x6e, 0x5f, 0x44}} return a, nil } -var _quorumcertificateAdminStop_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x4f\xc3\x30\x14\x84\x77\xff\x8a\x53\x86\x2a\x59\xd2\xbd\x02\xaa\x12\x89\x99\x02\xea\x6e\x9c\x97\xc4\x52\xe2\x67\x9e\x5f\xe8\x50\xf5\xbf\x23\x27\xa2\xa2\x12\x37\x9e\xfd\xf9\xee\xec\xa7\xc8\xa2\x78\x19\xf9\xdc\x8c\x73\x52\x92\x63\x83\x4e\x78\x42\x71\xe7\x15\xc6\x6c\xb7\xf8\xa0\xa4\x50\xb1\x21\x59\xa7\x9e\x03\x3a\x16\xe8\x40\x38\x36\x70\x1c\x54\xac\x53\x28\x23\x29\xc7\xc5\xff\x66\xf5\xa1\x47\x24\xf1\xdc\x1a\xf3\x17\xbd\x18\x03\x00\x51\x28\x5a\xa1\x32\xf9\x3e\x90\xec\x60\x67\x1d\xca\x67\x16\xe1\xf3\xc9\x8e\x33\x55\xd8\x1c\x9c\xe3\x39\x68\x85\xcb\x42\x64\x8d\xa4\xb0\xed\xe4\xc3\x1b\x75\x78\xc4\x0a\xd7\x49\x59\x6c\x4f\xf5\xe7\x82\x3f\x6c\xee\x16\xd4\x87\x7c\xff\xa9\xcc\xe3\x76\xf8\xe7\xe8\x7d\xa5\x5f\xad\x0e\xd5\x2d\x28\x6b\xbf\x47\xb4\xc1\xbb\xb2\x68\x78\x1e\x5b\x04\x56\xac\x11\x10\xea\x48\x28\x38\xca\xab\xbf\xdc\xda\xa9\xa8\xcc\x8d\xff\x2d\x99\xbb\xc5\xd3\xf2\x1b\xe5\xfa\xfa\xd5\x5c\x7f\x02\x00\x00\xff\xff\x0d\x6e\x1d\x9b\x7d\x01\x00\x00" +var _quorumcertificateAdminStop_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4e\xf3\x30\x10\x84\xef\x7e\x8a\x51\x0f\xbf\xd2\x4b\xfa\x9f\x2b\xa0\x8a\x52\x38\x93\x06\x71\x37\xce\x26\xb1\x94\x78\xcd\x66\x43\x91\xaa\xbe\x3b\x72\x22\x2a\x90\x98\xa3\x3d\xb3\x33\x9f\x1f\x23\x8b\xe2\x69\xe0\x73\x39\xcc\x93\x92\x54\x25\x5a\xe1\x11\xff\x3f\xab\xb2\x38\x1e\x4f\x8f\x75\x6d\xcc\x6e\x87\x17\x9a\x14\x2a\x36\x4c\xd6\xa9\xe7\x80\x96\x05\xda\x13\xaa\x12\x8e\x83\x8a\x75\x0a\x65\x4c\xca\x71\x79\xff\x60\xf5\xa1\x43\x24\xf1\xdc\x18\xf3\x33\x7a\x31\x06\x00\xa2\x50\xb4\x42\xd9\xe4\xbb\x40\xb2\x47\x31\x6b\x5f\x38\xc7\x73\xd0\x2d\x2e\x8b\x25\x69\x20\x85\x6d\x46\x1f\x4e\xd4\xe2\x1e\xab\x3b\x7f\x63\x11\x3e\xdf\xfd\xfb\x35\x3d\x2f\x92\xef\x21\x4b\x04\x7b\xfc\xf1\x55\x2b\x8b\xed\xe8\xd9\x6a\xbf\xbd\x15\x24\x1d\x0e\x88\x36\x78\x97\x6d\x4a\x9e\x87\x06\x81\x15\x6b\x05\x84\x5a\x12\x0a\x8e\x12\xde\xbb\x5b\xb7\x6c\xb6\xe6\x96\xff\x1e\x97\x27\xf6\xd7\x05\x3b\x5b\xaf\x5f\xcd\xf5\x2b\x00\x00\xff\xff\x4d\x7d\x7c\x39\x62\x01\x00\x00" func quorumcertificateAdminStop_votingCdcBytes() ([]byte, error) { return bindataRead( @@ -4900,11 +4880,11 @@ func quorumcertificateAdminStop_votingCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/admin/stop_voting.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x77, 0xe8, 0x1e, 0x53, 0x15, 0x63, 0xab, 0xf7, 0x58, 0xcf, 0x72, 0xc3, 0x9c, 0x7f, 0xb1, 0x1c, 0x0, 0x14, 0xa6, 0x2f, 0x3e, 0xad, 0x97, 0xe2, 0x6d, 0xfa, 0xe9, 0x25, 0xc2, 0xec, 0xfb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa5, 0xa0, 0xd9, 0x1d, 0x55, 0xa2, 0xfc, 0xf1, 0x23, 0x3d, 0xa6, 0xbd, 0xe5, 0xdd, 0xa2, 0x17, 0xc9, 0xeb, 0x3f, 0x53, 0xe2, 0x30, 0x9c, 0x47, 0x65, 0x66, 0xad, 0xd9, 0x55, 0xca, 0x9b, 0x79}} return a, nil } -var _quorumcertificateCreate_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x54\xc1\x6e\xdb\x30\x0c\xbd\xe7\x2b\x88\x1c\x0a\x07\x68\x9d\x7b\xd0\xae\x28\x32\x6c\x18\x76\x58\xbb\x16\xdd\x99\x91\x99\x58\xab\x22\x7a\x14\x9d\x20\x18\xfa\xef\x03\x25\xd7\x89\x31\x03\x41\x24\x9a\x7c\xe4\x7b\x7c\x89\xdf\x77\x2c\x0a\x5f\x02\x1f\xd7\xa1\x4f\x4a\xf2\xb4\x86\xad\xf0\x1e\xe6\x93\xd8\x7c\x36\x5b\x2e\xe1\x85\x92\xc2\x8b\x60\x4c\xe8\xd4\x73\x84\x2d\x0b\x20\x44\x6e\x08\x94\x41\xe8\x4f\x6f\x19\x08\x4f\x6b\x78\x65\x25\x81\x1f\x9b\xdf\xe4\xb4\x20\x6a\x4b\xe0\x38\xaa\xa0\x53\x43\xfb\xe5\x43\x80\x0d\x41\xdf\x35\xa8\xd4\x18\x42\x9f\x28\xa7\x51\xc7\xae\x1d\x93\xe1\xd8\x52\x04\x6d\x51\xc1\x27\x70\xbc\xef\x02\x29\x35\x79\xa2\x96\xe0\x90\x3b\x71\xe9\xc4\x31\x9c\x20\x12\x35\xc9\xf0\x36\x04\x4e\x28\xa3\x73\x74\x04\x18\x1b\x83\x38\x60\xf0\x4d\x1e\x9e\x0e\x24\x27\xd8\xf6\xda\xcb\xd0\xd5\x50\x8f\x2d\x49\x19\x24\x53\xf3\x09\x70\xa8\x49\x8a\x6f\xd4\xe4\x70\x56\xe4\x11\x05\xf7\xa4\x24\x69\x65\x57\xfb\x60\xb3\xf7\xf1\xa1\x69\x84\x52\x5a\x65\x10\x2c\x17\xe0\x6d\xbe\x3e\xad\x4b\xce\xa5\x64\x16\x2f\x8a\x99\x54\x06\x63\x2d\xbe\x7d\x2e\x00\xbe\xf9\xa8\x2d\x52\x9b\x12\x19\xd8\x39\xee\x63\x56\x85\x3b\x12\x54\x1f\x77\x56\x6b\x53\xfa\xb8\xfb\x4e\xa7\x55\x56\x68\xb8\xc3\x1b\x9d\x32\xeb\xb2\x89\x10\xc8\x29\xcb\x40\x46\xcf\x6b\xad\xa6\x14\x86\xc3\xf5\x38\xd2\xb3\x8a\x8f\xbb\xeb\x49\x9b\x12\x5b\xc0\xdf\xd9\x0c\x00\xa0\x13\xea\x50\xa8\x4a\x7e\x17\x49\x56\x80\xbd\xb6\xd5\x33\x1e\xe8\x15\x43\x4f\x0b\xb8\x7a\x28\xa3\x8f\x05\xf6\x2c\x97\xf0\x95\x06\x66\x59\x20\xa1\x2d\x09\xd9\xe2\x46\x03\x95\x17\x03\xf1\xb1\x32\x90\x0e\x6f\xee\x60\x47\x3a\x80\x4f\x78\x2c\xfe\x4f\xfe\x49\x5b\xb8\x2b\xc7\xda\x61\x87\x1b\x1f\xbc\x7a\x4a\xf5\x86\x45\xf8\x78\x7b\x35\xf9\x09\xd4\x0f\x96\xf8\xa9\x5a\x76\xfd\x26\x78\xb7\xcc\xb6\x5b\x9b\xbb\x58\xce\xe0\xf6\xdc\xdf\x43\x87\xd1\xbb\x6a\xbe\xe6\x3e\x98\x5b\x14\x0a\x24\xe0\x05\x27\xe5\x33\xa3\xf9\x62\x22\x43\x86\x25\x73\xdd\xa5\xb7\xcd\xbd\x09\x0f\x04\x5e\xad\x38\x29\x0b\xee\x68\xc2\xab\xe4\xdf\xde\x8c\x04\xeb\xe2\xff\xec\xad\xea\x63\x81\xe5\x7b\xba\xc0\xf3\xf9\x62\x94\xb2\xbe\x7a\xe8\x54\x5b\xf3\xea\xf6\x26\x37\xb9\x06\xe5\xd5\xf4\x8f\xa3\xce\x5d\x9e\x4b\xf2\x23\x6a\x5b\x64\x79\x9f\xbd\xff\x0b\x00\x00\xff\xff\x8f\x15\x72\x2c\x67\x04\x00\x00" +var _quorumcertificateCreate_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x54\x4d\x6f\xdb\x30\x0c\xbd\xe7\x57\x70\x3d\x0c\x0e\xd0\x26\x3b\x07\xed\x8a\xc0\xdd\x86\x61\x87\x35\x4d\xb1\x9d\x15\x99\xb6\xb5\x2a\xa2\x47\xd1\xc9\x82\xa1\xff\x7d\xa0\xe4\x3a\x31\x26\x20\x88\x3e\xc8\x47\xbe\xc7\x07\xbb\x7d\x47\x2c\xf0\xd9\xd3\xb1\xf4\x7d\x14\xe4\x4d\x09\x35\xd3\x1e\x3e\xfc\xd9\x94\xeb\x87\x87\xa7\x4f\xdb\xed\x6c\xb6\x5c\xc2\x33\x46\x81\x67\x36\x21\x1a\x2b\x8e\x02\xd4\xc4\x60\x20\x50\x85\x20\x04\x8c\xbf\x7b\x8d\x30\xb0\x29\xe1\x07\x09\x32\x7c\xdf\xfd\x42\x2b\x19\x4d\x5a\x04\x4b\x41\xd8\x58\x51\xb4\x9f\xce\x7b\xd8\x21\xf4\x5d\x65\x04\x2b\x45\xe8\x23\xa6\x30\xec\xc8\xb6\x63\x30\x1c\x5b\x0c\x20\xad\x11\x70\x11\x2c\xed\x3b\x8f\x82\x55\xea\xa8\x45\x38\xa4\x4a\x94\x2b\x51\xf0\x27\x08\x88\x55\x54\xbc\x1d\x82\x65\x4c\xe8\x14\x2c\x82\x09\x95\x42\x1c\x8c\x77\x55\x6a\x1e\x0f\xc8\x27\xa8\x7b\xe9\x79\xa8\xaa\xa8\xc7\x16\x39\x37\x92\xa8\xb9\x08\x66\xc8\x89\x62\x5e\xb0\x4a\xd7\x49\x91\x47\xc3\x66\x8f\x82\x1c\x57\x7a\xd4\x9f\xa9\xf6\x2e\xac\xab\x8a\x31\xc6\x55\x02\x31\xf9\x00\x54\xa7\xe3\xa6\xcc\x31\x97\x92\xe9\x7d\x56\x4c\xa5\x52\x18\x2d\xf1\xf5\x21\x03\xb8\xea\x2d\x37\x4b\xad\x4a\x24\x60\x6b\xa9\x0f\x49\x15\xea\x90\x8d\xb8\xd0\x68\xae\x76\xe9\x42\xf3\x0d\x4f\xab\xa4\xd0\x70\x86\x17\x3c\x25\xd6\x79\x12\xde\xa3\x15\xe2\x81\x8c\x9c\xc7\x5a\x4c\x29\x0c\x9b\xeb\xb1\xa5\xad\xb0\x0b\xcd\xf5\xa4\x4c\xbe\x9b\xc3\xdf\xd9\x0c\x00\xa0\x63\xec\x0c\x63\x11\x5d\x13\x90\x57\xb0\xee\xa5\x5d\xe7\x6e\xc7\x18\x5d\xcb\x25\x7c\xc1\x81\x4c\xd2\x84\xb1\x46\x46\x9d\xd5\xe8\x99\xfc\x30\x70\x1d\x33\x3d\xca\xf0\x72\x07\x0d\xca\x00\x3e\x69\x7d\xfe\x7f\xf0\x13\xd6\x70\x97\xb7\x8b\x06\xa5\x34\x9d\xd9\x39\xef\xe4\x74\xfb\x7e\xe2\xff\xc5\x5a\x43\x3e\x16\xcb\xae\xdf\x79\x67\x97\xc9\x63\xa5\x5a\x89\x78\xfe\x6e\xc4\xd5\xb5\xd8\x11\x33\x1d\x8b\x39\xdc\xdf\x43\x67\x82\xb3\xc5\x55\x49\xbd\x57\x97\x08\xe4\x47\x30\x17\xc4\x84\xce\xb4\xae\xe6\x13\x2d\x52\x05\x54\xb7\x5d\x7a\x5a\x5d\x1b\xcd\x01\xc1\x89\x26\x47\x21\x36\x0d\x4e\xc8\xe5\xf8\xdb\x9b\x91\xe5\x22\xfb\x3e\x79\xaa\x78\x1b\x5c\xfe\x9f\x0e\xee\xbc\xbf\x68\x25\x8f\x6d\xa1\x45\x8b\xdb\x9b\x04\x7e\x0d\x42\xab\xe9\x47\x62\x91\xd0\xb7\xb9\x9d\x47\x23\x6d\x16\xfc\x75\xf6\xfa\x2f\x00\x00\xff\xff\xd3\x11\xd1\x52\x53\x04\x00\x00" func quorumcertificateCreate_voterCdcBytes() ([]byte, error) { return bindataRead( @@ -4920,11 +4900,11 @@ func quorumcertificateCreate_voterCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/create_voter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xad, 0x49, 0x65, 0x97, 0x80, 0x97, 0x22, 0x49, 0xa2, 0xf8, 0x29, 0x1b, 0x8, 0xa4, 0xf, 0x7f, 0xbe, 0xec, 0x14, 0x9f, 0x6a, 0x19, 0xfc, 0x68, 0x8a, 0xca, 0xa2, 0xab, 0x45, 0x42, 0x14, 0xcd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc1, 0xaa, 0x8c, 0x53, 0x14, 0x61, 0xae, 0x77, 0x43, 0x9f, 0x9b, 0xf7, 0x46, 0x21, 0xfd, 0x67, 0xd2, 0x64, 0xf8, 0xc6, 0x4a, 0x8a, 0x4e, 0x63, 0x7f, 0xd7, 0xfe, 0x20, 0xb2, 0x2b, 0x8e, 0x28}} return a, nil } -var _quorumcertificateScriptsGenerate_quorum_certificateCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\x41\x4b\x03\x31\x10\x85\xef\xf9\x15\x8f\xbd\x98\x5c\x5a\xbc\x78\x28\x48\x0f\x01\xa5\xc7\x3d\x78\x12\x0f\x21\x9d\xad\x81\x64\x52\x33\x13\x14\xc4\xff\x2e\xb6\x5b\xeb\x3a\xb7\x19\xbe\x8f\xf7\x26\x95\x63\x6d\x8a\x87\x5c\xdf\x7d\xee\xa2\xd4\x46\x8f\xa9\xd5\x82\x61\x71\x1b\x8c\x59\xaf\xf1\x48\x2a\xd0\x57\x82\x68\xd0\x2e\xa8\x13\x02\xe2\x99\xb9\x11\x8c\x1e\x07\x62\x6a\x41\x53\x65\x63\x42\x8c\x24\x62\x43\xce\x0e\x53\x67\x94\x90\xd8\xce\xf4\x8e\xf7\xf4\xb1\xc1\xd3\x8e\xf5\xf6\xce\x6d\x96\x05\x56\xd7\x2a\x9f\xc6\x00\x40\x26\xbd\xe4\x08\xee\xff\xd1\x07\xd2\x79\x11\xeb\xce\x7c\x23\xed\x8d\x7f\x95\xe7\xbf\xa9\x2f\xab\xb9\x24\x8d\xbd\xb6\x5e\x3c\x35\x4d\x53\x8a\x41\xc9\xba\x93\xfd\x33\xdb\x2d\x8e\x81\x53\xb4\x83\xaf\x3d\xef\xc1\x55\x2f\xcf\x11\xde\x4e\x22\xe2\xd5\x1c\x9c\x31\x5f\xdf\x01\x00\x00\xff\xff\x81\x01\xe7\xc1\x4d\x01\x00\x00" +var _quorumcertificateScriptsGenerate_quorum_certificateCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\x31\x4b\x03\x41\x10\x46\xfb\xfd\x15\x1f\x69\xbc\x6b\x12\x6d\x2c\x02\x12\x64\xa3\x92\xf2\x0c\x56\x62\xb1\x5e\xe6\xe2\xc2\xed\xec\x39\x3b\x83\x01\xf1\xbf\x8b\xc9\xc5\x68\xb6\x5b\x78\x6f\xde\x4c\x4c\x43\x16\xc5\x7d\x9f\x3f\x7c\x6f\x45\x49\x1a\x8f\x4e\x72\xc2\xe5\xae\xf1\xb7\xcb\xe5\xe3\xdd\x7a\xed\xdc\x6c\x86\x07\xd2\x02\x7d\x23\x14\x0d\x6a\x05\xb9\x43\x40\x7b\x70\x2e\x0a\x1a\x8f\x2d\x31\x49\xd0\x98\xd9\xb9\xc1\x5e\xd1\x19\x23\x85\xc8\xd5\x48\xad\x78\x43\xbb\x39\x9e\x56\xac\x57\xd7\xf5\xfc\x7f\x74\x7a\xca\x7f\x3a\x07\x00\x3d\xe9\x71\x7e\xc1\xcd\x19\xbd\x25\x1d\x3f\xa5\xaa\x0f\xbc\x90\x9a\xf0\xaf\xf2\xfc\xb7\xfa\x32\x1d\x97\xa3\xc6\xb2\x58\xf2\x24\x1a\xbb\xd8\x06\xa5\xaa\xde\xdb\x3f\x6f\xb1\xc0\x10\x38\xb6\xd5\xc4\x67\xeb\x37\xe0\xac\xc7\xa3\x08\xef\x7b\x11\xed\xc9\x9c\xd4\xce\x7d\x7d\x07\x00\x00\xff\xff\xc6\x91\xba\xec\x41\x01\x00\x00" func quorumcertificateScriptsGenerate_quorum_certificateCdcBytes() ([]byte, error) { return bindataRead( @@ -4940,11 +4920,11 @@ func quorumcertificateScriptsGenerate_quorum_certificateCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/generate_quorum_certificate.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0x7e, 0xec, 0xe8, 0x58, 0x2b, 0x59, 0xe0, 0xfa, 0xc3, 0x3, 0xd8, 0xb2, 0xbd, 0xf7, 0xe1, 0xda, 0xa1, 0x9b, 0x9c, 0x12, 0x5, 0x3d, 0xdd, 0x99, 0x39, 0x29, 0x37, 0x8c, 0xee, 0x72, 0x48}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe6, 0x66, 0xdb, 0xc8, 0xb6, 0x96, 0xb4, 0x7e, 0x86, 0xc, 0x90, 0x5a, 0xca, 0xd2, 0x3a, 0x4d, 0x1e, 0xfc, 0x36, 0x84, 0x76, 0x62, 0xb4, 0x4c, 0x96, 0xe0, 0x89, 0xbe, 0x4d, 0xb8, 0x59, 0x8b}} return a, nil } -var _quorumcertificateScriptsGet_clusterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x50\x42\x11\x53\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x28\xf0\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\xb4\x42\x35\x4f\x0f\xca\x52\xa8\xe6\xe2\x52\x50\x50\x50\xc8\x49\x2d\x51\x80\xea\x2b\x56\xb0\x45\x53\x9b\x9e\x5a\x02\xe5\x14\x6b\x68\x42\xd4\x17\xa5\x96\x94\x16\xe5\xc1\xb5\x44\x23\xdb\x19\xcb\xc5\x55\x0b\x08\x00\x00\xff\xff\xf7\xb0\x6f\x1a\xc4\x00\x00\x00" +var _quorumcertificateScriptsGet_clusterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x30\xa8\x08\x74\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x28\xf4\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\xb4\x42\x35\x43\x0f\xca\x52\xa8\xe6\xe2\x52\x50\x50\x50\xc8\x49\x2d\x51\x80\xea\x2b\x56\xb0\x45\x53\x9b\x9e\x5a\x02\xe5\x14\x6b\x68\x42\xd4\x17\xa5\x96\x94\x16\xe5\xc1\xb5\x44\x23\xdb\x19\xcb\xc5\x55\x0b\x08\x00\x00\xff\xff\x6c\xe0\xad\x73\xb8\x00\x00\x00" func quorumcertificateScriptsGet_clusterCdcBytes() ([]byte, error) { return bindataRead( @@ -4960,11 +4940,11 @@ func quorumcertificateScriptsGet_clusterCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0x25, 0x34, 0x4, 0xee, 0x6c, 0x4f, 0xfe, 0x9f, 0x3c, 0x45, 0xb8, 0x36, 0x94, 0x90, 0xe, 0xd1, 0xe0, 0x85, 0x2c, 0x17, 0x23, 0xb8, 0x1d, 0xda, 0x3a, 0xc0, 0x29, 0xde, 0x80, 0x86, 0x3d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x18, 0x9a, 0x6f, 0x7, 0xc4, 0x89, 0xbf, 0x2, 0xac, 0xdd, 0x29, 0x29, 0x26, 0x43, 0x97, 0x38, 0xdb, 0x4a, 0x10, 0x1b, 0x7a, 0x37, 0x77, 0xb6, 0x72, 0xac, 0x95, 0x27, 0x7d, 0x7a, 0xf7, 0xe}} return a, nil } -var _quorumcertificateScriptsGet_cluster_completeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\x3f\x4b\x43\x41\x10\xc4\xfb\xfd\x14\x63\x1a\xdf\x35\x09\x36\x16\x81\x34\x1e\x28\x29\x53\x58\x89\xc5\xf1\xdc\x17\x0f\xf6\x76\xc3\xed\x1e\x0a\xe2\x77\xb7\x48\x14\x53\xce\xf0\x9b\x3f\xb5\x9d\xac\x07\x1e\xc5\x3e\xb2\x0c\x0f\xee\x87\x8c\xa5\x5b\xc3\xea\xca\x5b\x11\x6d\x36\x78\xe2\x70\xc4\x3b\xc3\xa3\xc4\x70\xd8\x82\x82\xf9\xcc\xdc\x3a\x0e\x19\x47\x56\xee\x25\xaa\x29\x51\x99\x67\x76\x9f\x8a\x48\xc2\x32\x14\xad\x54\x9d\x2e\xf4\x5e\xdf\xf8\x73\x8b\xe7\xbd\xc6\xdd\x7d\xda\xe2\xc1\x4c\xf0\x45\x04\x00\xc2\xf1\x5b\xea\xd8\x5d\x7f\x5b\x1f\x39\x2e\xc2\xa7\x74\xe6\x3b\xc7\xe8\xfa\x17\x79\xf9\x3f\xf1\xba\xae\x9e\xad\x9d\x84\x83\xa7\x84\x9b\x1d\xb4\x0a\xd1\xf7\x4f\x00\x00\x00\xff\xff\xf4\x49\xb4\xa1\xf8\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_completeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xb1\x4e\xc3\x40\x10\x44\xfb\xfd\x8a\xa1\xc2\x6e\x12\x68\x28\x22\xa5\x80\x0b\xa0\x94\x26\xa2\x42\x14\x07\xac\xc3\x49\x77\xbb\xd6\xed\x9e\x88\x84\xf8\x77\x0a\x1b\x04\xe5\x48\xef\xcd\x4c\x2a\x93\x56\xc7\x5d\xd6\x8f\x90\x9b\x39\xd7\x21\x60\xac\x5a\x70\x71\x1a\xc2\xf5\x6e\xf7\x70\x7b\x38\x10\xad\xd7\xb8\x67\x37\xf8\x3b\xc3\x3c\x7a\x33\xe8\x88\x88\xd7\xd9\x39\x37\x0c\x01\x47\x16\xae\xd1\x93\x0a\xd1\xd4\x5e\x30\x36\x41\x89\x49\xba\x85\xda\xcb\x1b\x9f\x36\x78\xdc\x8b\x5f\x5e\xf5\x1b\xdc\xa8\x66\x7c\x12\x01\x40\x66\xff\x29\x33\x6c\xff\xff\x59\x1d\xd9\x97\x60\x5d\x3f\xf3\x95\xbd\x55\xf9\x55\x9e\xfe\x4e\x3c\xaf\x92\x05\x2d\x53\x66\xe7\xae\xc7\xd9\x16\x92\x32\xd1\xd7\x77\x00\x00\x00\xff\xff\xa8\x61\x29\x9e\xec\x00\x00\x00" func quorumcertificateScriptsGet_cluster_completeCdcBytes() ([]byte, error) { return bindataRead( @@ -4980,11 +4960,11 @@ func quorumcertificateScriptsGet_cluster_completeCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_complete.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x3, 0xb, 0xcc, 0xb6, 0x3, 0x6, 0x7, 0xb7, 0xb7, 0x52, 0x1, 0xe3, 0xa5, 0x66, 0x48, 0x6e, 0xc6, 0xb9, 0x38, 0xdc, 0x35, 0x47, 0x51, 0x62, 0x9c, 0x7b, 0x6b, 0xc4, 0x86, 0xff, 0x13}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0xac, 0xe1, 0x2a, 0x34, 0xa3, 0x58, 0x0, 0xf9, 0xf8, 0xe3, 0xd6, 0xf7, 0x15, 0xf8, 0x4b, 0xa9, 0xd5, 0xf2, 0xf2, 0x57, 0x95, 0x98, 0xf1, 0xfa, 0x53, 0x4c, 0x36, 0x38, 0xa9, 0xa5, 0xa4}} return a, nil } -var _quorumcertificateScriptsGet_cluster_node_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8d\xb1\xaa\x83\x40\x10\x45\xfb\xfd\x8a\x8b\x95\x36\xc2\x83\x87\x85\x90\x4a\x08\x58\x86\x10\x52\x84\x14\xa2\xa3\x59\x58\x67\xc3\xcc\x48\x02\xe2\xbf\xa7\x50\x42\x2c\xef\xe5\x1c\x8e\x1f\x9f\x51\x0c\xc7\x10\x5f\x55\x98\xd4\x48\x4e\x15\x7a\x89\x23\x92\xdd\x97\x38\xd7\xb4\x2d\xa9\xa6\x4d\x08\x19\xfa\x89\x31\x36\x9e\xd3\x76\x05\x6a\xee\xe8\x5d\xe2\x52\xb3\xfd\x15\x59\x89\xf9\x6c\xe2\x79\x58\x9f\xe2\x7f\xc1\xec\x1c\x00\x04\x32\x6c\x8a\xe2\xb0\xcf\xe6\x03\xd9\x36\x34\xcd\x56\x5e\xc8\x26\xe1\xaf\x72\xfb\xcd\xdd\x73\x8e\x1d\x5d\xc9\x0f\x0f\x53\xe7\x96\x4f\x00\x00\x00\xff\xff\x3d\x36\xdc\x4a\xcb\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_node_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8d\x41\xcb\x82\x40\x14\x45\xf7\xf3\x2b\xee\x52\x37\xf2\x7d\x10\x2e\x84\x16\xa1\x05\x2e\x4d\xa2\x45\xb4\xa8\x7c\xda\x80\xbe\x91\x99\x37\x24\x88\xff\xbd\xc5\x48\xd4\xf2\x5e\xce\xe1\xe8\x61\x34\x56\x70\xe8\xcd\x2b\xef\xbd\x13\xb2\x55\x8e\xd6\x9a\x01\x7f\x53\x95\xef\x8a\xe2\xb8\xaf\x6b\xa5\x46\x7f\x47\xeb\x19\xc3\x4d\x73\xf4\x08\x60\xc9\x0d\x4d\x19\x4e\x25\xcb\x7f\x1a\x67\x98\x6b\xb1\x9a\xbb\xf0\xa4\x9b\x05\xb3\x52\x00\xd0\x93\x60\x55\x1c\xb6\xbf\xa9\xa4\x23\x59\x87\x8b\xe2\xc0\x5b\x12\x6f\xf9\xa3\x5c\xbe\x73\xd7\x84\x4d\x43\x67\xd2\xdd\x53\x9c\x52\xcb\x3b\x00\x00\xff\xff\x3e\x1f\x66\x7e\xbf\x00\x00\x00" func quorumcertificateScriptsGet_cluster_node_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -5000,11 +4980,11 @@ func quorumcertificateScriptsGet_cluster_node_weightsCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_node_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x29, 0x1d, 0x52, 0x4, 0x6b, 0x83, 0x52, 0x76, 0x40, 0x43, 0xaf, 0xa, 0xe2, 0xe4, 0xd8, 0xcb, 0x79, 0x13, 0xea, 0xc6, 0xca, 0x2a, 0x11, 0x64, 0x1c, 0x9e, 0x29, 0xfc, 0x74, 0x8, 0xeb, 0x69}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x27, 0x8d, 0x33, 0xdc, 0x7a, 0x3e, 0xbe, 0xf7, 0xb5, 0x79, 0xf1, 0x0, 0xc4, 0xb2, 0xbb, 0x1e, 0x27, 0x9d, 0xff, 0xb8, 0xfc, 0x54, 0x0, 0x52, 0xc0, 0xe8, 0x57, 0x77, 0x5b, 0xc8, 0x16, 0xc3}} return a, nil } -var _quorumcertificateScriptsGet_cluster_vote_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x50\x42\x11\x53\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x28\xf0\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\x84\x30\xcc\x4c\x14\xaa\xb9\xb8\x14\x14\x14\x14\x72\x52\x4b\x14\xa0\x0a\x8b\x15\x6c\x51\x2d\xd3\x4b\x4f\x2d\x81\x72\x8a\x35\x34\x21\xea\x8b\x52\x4b\x4a\x8b\xf2\xe0\x5a\xa2\x91\x2d\x89\xd5\x2b\xcb\x2f\x49\x0d\xc9\x28\x4a\x2d\xce\xc8\xcf\x49\x01\x69\xa9\x05\x04\x00\x00\xff\xff\xe3\x59\xc4\x5f\xc5\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_vote_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x30\xa8\x08\x74\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x28\xf4\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\x84\x30\xcc\x4c\x14\xaa\xb9\xb8\x14\x14\x14\x14\x72\x52\x4b\x14\xa0\x0a\x8b\x15\x6c\x51\x2d\xd0\x4b\x4f\x2d\x81\x72\x8a\x35\x34\x21\xea\x8b\x52\x4b\x4a\x8b\xf2\xe0\x5a\xa2\x91\x2d\x89\xd5\x2b\xcb\x2f\x49\x0d\xc9\x28\x4a\x2d\xce\xc8\xcf\x49\x01\x69\xa9\x05\x04\x00\x00\xff\xff\x7f\xd1\x70\x38\xb9\x00\x00\x00" func quorumcertificateScriptsGet_cluster_vote_thresholdCdcBytes() ([]byte, error) { return bindataRead( @@ -5020,11 +5000,11 @@ func quorumcertificateScriptsGet_cluster_vote_thresholdCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_vote_threshold.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x90, 0x39, 0xfc, 0xde, 0xe2, 0xb0, 0x6e, 0xbb, 0x43, 0x4, 0x67, 0x78, 0x3e, 0x0, 0x52, 0x62, 0x27, 0xd5, 0x72, 0x9a, 0xcb, 0xd8, 0x3c, 0x8e, 0x11, 0xc6, 0xdb, 0x82, 0x38, 0x3f, 0xb5, 0xd1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0xc1, 0x7c, 0x17, 0x83, 0x18, 0x3b, 0xc, 0xe4, 0xc3, 0xdd, 0xae, 0xd5, 0x42, 0xcc, 0x41, 0x67, 0x72, 0xac, 0x6e, 0x80, 0x88, 0xb4, 0x22, 0xf, 0x39, 0x74, 0xda, 0x7e, 0xe1, 0xd6, 0x11}} return a, nil } -var _quorumcertificateScriptsGet_cluster_votesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xbd\x4a\xc5\x40\x10\x85\xfb\x79\x8a\xc3\xad\x92\x26\x17\x1b\x8b\x0b\x56\x01\x21\xa5\x82\x36\x21\xc5\xb2\x99\xd5\x85\xcd\x6e\x98\x99\xf8\x83\xf8\xee\x12\x13\xe5\xa6\x9c\x9f\x73\xbe\x2f\x4e\x73\x11\xc3\x7d\x2a\xef\x6d\x5a\xd4\x58\x1e\x5a\x04\x29\x13\x4e\x87\xdd\x89\xe8\x7c\xc6\x23\xdb\x22\x59\xe1\x32\x9c\x88\xfb\x44\x09\x78\x2e\xc6\x8a\x50\x04\xf6\xca\xd0\x99\x7d\x0c\x91\x47\xf8\x2d\x4a\xe4\xbc\x67\xd5\xca\xa5\x54\x23\x2c\x19\x93\x8b\xb9\xda\xaf\x5d\x1e\xf9\xe3\x82\xa7\x2e\xdb\xcd\x6d\x7d\x41\x7f\x80\x36\x6b\xf7\x80\x2f\x22\x00\x48\x6c\x7f\xa5\x8a\xbb\xa3\x72\xf3\xc2\xb6\x0f\x5a\xd5\xdb\xbf\xfc\xca\xfe\x47\xfa\x6b\xe4\xd0\xbc\xad\xda\x44\xdf\x3f\x01\x00\x00\xff\xff\xc7\xaa\x11\x90\x01\x01\x00\x00" +var _quorumcertificateScriptsGet_cluster_votesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\x31\x4f\x84\x40\x10\x46\xfb\xf9\x15\x5f\x79\xd7\x70\xda\x58\x5c\x62\x61\x38\x4d\x28\x81\x68\x43\x28\x56\x98\xd5\x4d\x60\x97\xcc\xce\x2a\xc6\xf8\xdf\x0d\x82\x46\xca\x99\xcc\xbc\xf7\xdc\x38\x05\x51\x3c\x0c\xe1\x3d\x1f\x52\x54\x96\x32\x87\x95\x30\xe2\x6a\x2e\xf3\xbb\xcb\xa5\xba\xaf\x6b\xa2\xd3\x09\x15\x6b\x12\x1f\x61\x3c\x8c\x88\xf9\x40\xb0\x78\x0a\xca\x11\x36\x08\xf4\x95\x11\x27\xee\x9c\x75\xdc\xa3\x5b\x51\x44\x53\x7a\x86\x4d\x1e\xa3\x71\xfe\xb0\x6d\x0b\xdf\xf3\x7c\xc6\x63\xe1\xf5\xfa\xe6\x78\x46\xb3\x93\x67\x0b\xb3\xc5\x27\x11\x00\x0c\xac\xbf\xb0\x88\xdb\x7d\x66\xf6\xc2\xba\x0d\xf1\x70\x5c\xef\xe5\x27\xf2\xef\xa5\xf9\xaf\x6c\xb3\xb7\x25\x97\xe8\xeb\x3b\x00\x00\xff\xff\x98\x1f\xda\xd8\xf5\x00\x00\x00" func quorumcertificateScriptsGet_cluster_votesCdcBytes() ([]byte, error) { return bindataRead( @@ -5040,11 +5020,11 @@ func quorumcertificateScriptsGet_cluster_votesCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_votes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0x5d, 0xff, 0x6e, 0xd7, 0xf9, 0x68, 0xe, 0xcb, 0x93, 0xff, 0xd6, 0xd2, 0xad, 0xc1, 0xc5, 0xa6, 0x42, 0x74, 0x84, 0x25, 0xb9, 0x41, 0x5, 0x9b, 0x72, 0x51, 0x1e, 0x7d, 0xec, 0x22, 0xbd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe3, 0x7b, 0x4e, 0x81, 0xc6, 0xce, 0x66, 0x20, 0x4d, 0xa4, 0x47, 0x99, 0x55, 0xd7, 0xa9, 0x6f, 0x27, 0x7c, 0x1e, 0x2b, 0xb4, 0xac, 0x53, 0x2b, 0x7e, 0xfa, 0xf7, 0x8b, 0x0, 0xc2, 0x22, 0x32}} return a, nil } -var _quorumcertificateScriptsGet_cluster_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8d\x31\x0b\xc2\x30\x14\x84\xf7\xf7\x2b\x8e\x4e\xed\x52\x10\xa4\x83\xe0\x54\x10\x3a\x3a\x88\x83\x38\x84\xfa\x5a\x03\x2f\x89\x24\x2f\x28\x88\xff\xdd\x21\x45\xec\x76\x77\x7c\xc7\x67\xdd\x23\x44\xc5\x41\xc2\xb3\x97\x9c\x94\xe3\xb1\xc7\x14\x83\x43\xb5\xda\x2a\x22\x33\x8e\x9c\x52\x6d\x44\x1a\x4c\xd9\xc3\x19\xeb\xeb\xb1\x00\x83\xbf\xf1\x6b\x87\xd3\xe0\x75\xd3\x35\x25\x74\x5b\xbc\x89\x00\x40\x58\xb1\x80\x09\xfb\xb5\xac\x9d\x59\x97\x92\xea\xa6\xf0\x91\x35\x47\xff\xbb\x5c\xfe\x25\xd7\x56\x83\x1a\x39\xb3\x9d\xef\x4a\xf4\xf9\x06\x00\x00\xff\xff\xf1\x3a\x40\x1a\xc1\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x30\xa8\x08\x74\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x28\xf4\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\x84\x30\xcc\x4c\x14\xaa\xb9\xb8\x14\x14\x14\x14\x72\x52\x4b\x14\xa0\x0a\x8b\x15\x6c\x51\x2d\xd0\x4b\x4f\x2d\x81\x72\x8a\x35\x34\x21\xea\x8b\x52\x4b\x4a\x8b\xf2\xe0\x5a\xa2\x91\x2d\x89\xd5\x2b\xc9\x2f\x49\xcc\x09\x4f\xcd\x4c\xcf\x28\xe1\xe2\xaa\x05\x04\x00\x00\xff\xff\xe3\x8b\x1a\x8c\xb5\x00\x00\x00" func quorumcertificateScriptsGet_cluster_weightCdcBytes() ([]byte, error) { return bindataRead( @@ -5060,11 +5040,11 @@ func quorumcertificateScriptsGet_cluster_weightCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_weight.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7c, 0x30, 0x57, 0xa9, 0x38, 0x97, 0xfa, 0xe9, 0x63, 0xc9, 0x3a, 0x59, 0xce, 0x31, 0x44, 0x6f, 0x2a, 0xc0, 0xf6, 0xab, 0x44, 0xe5, 0x12, 0x7c, 0x6a, 0xcb, 0x8b, 0xe8, 0x57, 0x7e, 0xce, 0x2d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x77, 0xf7, 0x57, 0xa2, 0x71, 0x66, 0x1c, 0x23, 0x5b, 0xb0, 0xd8, 0xa4, 0x24, 0xf0, 0x4b, 0xc1, 0x4, 0x3a, 0x17, 0xe8, 0x8f, 0xf3, 0xe4, 0xaf, 0xf, 0x90, 0xe5, 0x76, 0x2e, 0x7f, 0xf1, 0x70}} return a, nil } -var _quorumcertificateScriptsGet_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\x31\x6b\xc3\x40\x0c\x85\x77\xfd\x8a\x47\x26\x7b\x49\xe8\xd2\x21\xd0\xc9\x50\xc8\x58\x4a\xa7\x90\x41\x5c\xe4\xfa\x40\x77\x67\x74\x32\x6e\x29\xfd\xef\xa5\xd8\x86\x78\x13\x92\x3e\xde\xf7\x62\x1a\x8b\x39\x5e\xb5\xcc\x9d\x4e\xd5\xc5\xde\x3a\xf4\x56\x12\x0e\xbb\xdd\x81\xe8\x74\xc2\x7b\xb0\x38\x3a\xbc\xc0\xc4\x27\xcb\xe0\x0c\x36\xe3\x6f\x94\x1e\x5d\x51\x95\xe0\xc5\xb0\x52\x15\x73\xf4\x01\xac\xfa\x7f\xf6\x41\xa2\x21\x89\xf3\x9d\x9d\x89\x38\x04\xa9\xb5\x61\xd5\x16\xfd\x94\x91\x38\xe6\x26\x2c\xe4\x25\xdf\xe5\xeb\x8c\x8f\x4b\xf6\xa7\xe7\xf6\x8c\xeb\xce\xe5\xb8\x4e\x37\xfc\x10\x01\x80\x8a\x23\x6c\x99\x2f\xfb\x32\xc7\x4f\xf1\xcd\xa7\x69\x97\xff\x55\x7e\x43\xae\x8f\xa9\x37\xa2\xdf\xbf\x00\x00\x00\xff\xff\xa6\xc7\x74\x36\x15\x01\x00\x00" +var _quorumcertificateScriptsGet_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\x3f\x6b\xc3\x40\x0c\xc5\x77\x7d\x8a\x37\x26\x4b\xd2\x2e\x1d\x02\x1d\xca\xa5\x85\x8c\xa9\xe9\x14\x32\xa8\x17\xb9\x39\xb8\x3f\x46\xd1\x61\x97\xd2\xef\x5e\x8a\x6d\x88\x37\x81\xf4\xf4\xfb\xbd\x90\xba\xa2\x86\xb7\x58\x7a\x17\xeb\xcd\x44\x8f\x0e\xad\x96\x84\x87\xe1\xe8\x5e\xf6\xfb\xf7\xd7\xa6\x21\xda\x6e\xd1\x78\x0d\x9d\xc1\x0a\x54\xac\x6a\x06\x67\xb0\x2a\x7f\xa3\xb4\x70\x25\x46\xf1\x56\x14\xd3\x97\x1b\xfa\x60\x57\x70\x8c\xff\x6b\xbb\x4a\x50\x24\x31\xbe\xb0\x31\x51\x57\x3f\xd1\xd6\x8c\xc4\x21\xaf\xfc\x98\x38\xe4\x8b\x0c\x3b\x7c\x1c\xb2\x3d\x3e\xad\x77\x38\x2d\x9c\x36\xd3\x74\xc6\x0f\x11\x00\x44\x31\xf8\x99\xf5\xbc\x2c\xb0\xf9\x12\x9b\x3d\x56\xeb\xf1\x7e\x92\x9e\x23\xa7\x7b\xea\x99\xe8\xf7\x2f\x00\x00\xff\xff\x60\x84\x69\xbf\x09\x01\x00\x00" func quorumcertificateScriptsGet_clustersCdcBytes() ([]byte, error) { return bindataRead( @@ -5080,11 +5060,11 @@ func quorumcertificateScriptsGet_clustersCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_clusters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0xfa, 0xb0, 0xff, 0x20, 0xaf, 0xe0, 0x18, 0x68, 0x21, 0x71, 0xea, 0x8d, 0x67, 0x52, 0xa1, 0x54, 0x7b, 0xe3, 0x84, 0xef, 0xbd, 0x91, 0xcf, 0x60, 0x8, 0x86, 0xd8, 0xe, 0xed, 0xb7, 0xea}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0xea, 0xb9, 0x6, 0x48, 0xf1, 0x64, 0x54, 0x82, 0x9f, 0xea, 0xc1, 0x19, 0xa6, 0xb8, 0x26, 0xca, 0xe0, 0xa7, 0xa8, 0x17, 0x29, 0x8a, 0x2e, 0x2c, 0xc1, 0x93, 0x31, 0x77, 0xeb, 0x2c, 0x18}} return a, nil } -var _quorumcertificateScriptsGet_node_has_votedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x91\x41\x8f\xd3\x30\x10\x85\xef\xfe\x15\x4f\x7b\x58\x35\xd2\xaa\xb9\xef\x91\x02\x62\x2f\x08\xba\x0b\xf7\xd9\x64\x52\x5b\x75\x66\x22\xcf\xa4\x11\x42\xfc\x77\xe4\xa4\x95\x28\x57\xdb\xf3\xe6\x7b\x9f\xd3\x38\x69\x71\x7c\xce\xba\x1c\xf2\x6c\xce\xe5\xfb\x01\x43\xd1\x11\x0f\x77\x67\x0f\x21\xb4\x2d\x8e\xec\x73\x11\x03\xe1\x5d\x35\x33\x09\x92\xf4\xa9\x23\x4f\x72\x42\x1a\x40\x10\xed\x19\x91\x0c\x36\xbf\x8f\xc9\x9d\x7b\x10\x2e\xea\x8c\x41\x0b\x3c\x26\x03\x4f\xda\xc5\x10\xa8\xeb\xd8\x6c\x47\x39\x37\x18\x66\xc1\x48\x49\x76\x75\xfc\xe5\xe3\x33\x5e\xbd\x24\x39\x35\xcf\xf8\xa0\x9a\xf1\x3b\x04\x00\x68\x5b\xbc\x0c\x58\x18\x54\x18\x49\xe0\x91\x61\x4e\xe7\xba\x9c\xe6\xce\x93\x0a\xa6\x48\xc6\xd8\x5d\x74\x45\x12\xf5\xfa\x70\x2a\x7a\x2a\x6c\xd6\x3c\xad\x33\x15\xc7\x6e\x89\x6b\xd7\x4c\xe6\x1b\xd7\x9a\x6d\x9e\x72\x86\xb9\x96\x8a\x2f\xfd\xda\xea\x0b\xd9\x4f\xad\x7d\x0a\x57\x65\x86\xb7\x32\xf3\x1e\xaf\x49\x3a\xc6\xc2\xb7\x3c\x95\xfc\x0b\x0b\x89\xc3\x15\x67\xd1\x05\x4b\x64\x8f\x5c\x2a\x78\xa4\xcb\xb6\xbe\xbf\xea\x60\x1c\x7e\x1c\x8f\x9f\xbe\xbe\x6d\xdb\x9f\xa0\x63\xf2\x4d\x53\x47\xc6\xfb\x35\xb5\xac\xd6\xef\xff\x68\x9f\xe4\xdb\xb5\x15\x1e\x1f\xff\xbb\xfb\x17\xf7\xaa\xb4\x09\xe1\xcf\xdf\x00\x00\x00\xff\xff\xa0\xa8\x11\xb6\xec\x01\x00\x00" +var _quorumcertificateScriptsGet_node_has_votedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x91\x41\x6f\xd3\x40\x10\x85\xef\xfb\x2b\xde\xa9\x6a\xa4\x2a\xe1\xdc\x1b\x24\x45\xf4\x82\x68\x5c\xb8\x4f\xec\x71\x76\xd5\xf5\x8c\xb5\x33\x8e\x41\x88\xff\x8e\xd6\x4e\x24\xe8\xd9\x9e\xf7\xbe\xf7\x6d\x1a\x46\x2d\x8e\xcf\x59\xe7\x7d\x9e\xcc\xb9\xbc\xec\xd1\x17\x1d\xf0\xe1\xe7\xcb\xfe\xe3\xe1\x70\x7c\x6a\x9a\x10\x76\x3b\x1c\xd9\xa7\x22\x06\xc2\x49\x35\x33\x09\x92\x74\xa9\x25\x4f\x72\x46\xea\x41\x10\xed\x18\x91\x0c\x36\x9d\x86\xe4\xce\x1d\x08\x17\x75\x46\xaf\x05\x1e\x93\x81\x47\x6d\x63\x08\xe3\x74\x42\x3f\x09\x06\x4a\x72\x5f\xcf\x9e\x0f\x8f\x68\xbc\x24\x39\x6f\x1e\xf1\x49\x35\xe3\x77\x08\x00\xb0\xdb\xe1\xb9\xc7\xcc\xa0\xc2\x48\x02\x8f\x0c\x73\x7a\xab\xa5\x34\xb5\x9e\x54\x30\x46\x32\xc6\xfd\x45\x17\x14\x51\xaf\x3f\x8e\x45\xcf\x85\xcd\x36\x0f\xcb\x4d\xc5\xb0\x5b\xe2\xb2\x2f\x93\xf9\xca\xb3\x64\x9b\xa7\x9c\x61\xae\xa5\x62\x4b\xb7\xac\xf9\x42\xf6\x43\xeb\x8e\xc2\x55\x93\xe1\xb5\x4c\xbc\x45\x93\xa4\x65\xcc\x7c\xcb\x53\xc9\xbf\x30\x93\x38\x5c\xf1\x26\x3a\x63\x8e\xec\x91\x4b\x05\x8f\x74\x59\xeb\xbb\xab\x06\xc6\xfe\xfb\xf1\xf8\xf4\xf5\x75\x6d\x7f\x80\x0e\xc9\x57\x3d\x2d\x19\x6f\x97\xd4\xb2\xd8\xfe\xff\x5d\xb6\x49\xbe\x5d\x57\xe1\xee\xee\xdd\xb7\x7f\x71\xaf\x4a\x37\x21\xfc\xf9\x1b\x00\x00\xff\xff\x27\xdb\x8d\xf4\xe0\x01\x00\x00" func quorumcertificateScriptsGet_node_has_votedCdcBytes() ([]byte, error) { return bindataRead( @@ -5100,11 +5080,11 @@ func quorumcertificateScriptsGet_node_has_votedCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_node_has_voted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0xf8, 0x21, 0xe, 0xb3, 0x57, 0x9d, 0x37, 0xd, 0xfa, 0xd5, 0x9e, 0x93, 0xb5, 0xaf, 0xf1, 0x62, 0xd9, 0x2b, 0x82, 0xe9, 0x2c, 0x36, 0x3c, 0x6d, 0xc5, 0x18, 0x2b, 0xdd, 0x26, 0x8e, 0xf1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0xf9, 0xf9, 0x94, 0x9c, 0xff, 0xe1, 0x6a, 0x1, 0x85, 0x98, 0x1f, 0xfc, 0x7c, 0xef, 0xe4, 0x42, 0x47, 0x88, 0x91, 0x70, 0x78, 0x6c, 0xbc, 0xc1, 0xb0, 0xa8, 0x7c, 0xff, 0x13, 0x4b, 0x27}} return a, nil } -var _quorumcertificateScriptsGet_node_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8f\x31\x4b\xc4\x40\x10\x85\xfb\xfd\x15\xef\xae\x4a\x40\x0e\x05\xb9\xe2\xe0\xaa\x88\x90\x52\x44\x2c\x42\x8a\x25\x99\xc4\x85\xcd\xac\xec\x4c\x50\x08\xf9\xef\x92\x6c\x10\x83\xd5\x6d\xb7\x33\xdf\x7b\x1f\xe3\x86\xcf\x10\x15\xcf\x3e\x7c\x15\x7e\x14\xa5\xf8\x52\xa0\x8b\x61\xc0\x71\x37\x3b\x1a\x63\x9b\x86\x44\x32\xeb\x7d\x8e\x6e\x64\x0c\xd6\x71\xd6\x24\xa0\xe4\x96\xbe\x2f\x78\x2b\x59\x1f\xce\x77\xe0\xd0\x52\xf9\x74\xc1\xab\x46\xc7\x7d\x9e\x16\xe7\x47\x4c\xc6\x00\x80\x27\xc5\x16\x14\x5c\xf7\xf2\x53\x4f\xba\x7d\x24\xcb\x13\xef\xba\x5f\xbc\xfa\x2b\xac\x4f\x8b\xe8\x9d\x5c\xff\xa1\x52\x25\x69\x8d\xc3\x15\xec\x3c\xa6\x35\xba\xbc\x48\x3a\x46\xbe\xa1\xe2\xb0\x46\x67\x90\x17\xfa\xdf\x73\x0f\x2b\xdb\x41\x89\x33\x66\xfe\x09\x00\x00\xff\xff\x50\x00\x3d\xc8\x47\x01\x00\x00" +var _quorumcertificateScriptsGet_node_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8f\x31\x6b\x84\x40\x10\x85\xfb\xfd\x15\xef\xba\x3b\x08\xc7\x05\xc2\x15\x07\x57\x04\x4d\xc0\xd2\x48\x48\x21\x16\x26\x8e\x66\x61\x9d\x95\xdd\x59\x22\x88\xff\x3d\xe8\x4a\x48\x48\x75\xd3\x0d\xf3\xbd\xf7\x31\xba\x1f\xac\x13\x3c\x1b\xfb\x95\x98\xe0\x85\x5c\x9e\xa0\x75\xb6\xc7\x69\xcc\x93\xc7\x34\x7d\x79\x2a\x0a\xa5\x86\xf0\x8e\x36\x30\xfa\x5a\xf3\xfe\x23\x82\x19\x37\x34\x5e\xf0\x9a\xb1\xdc\x9f\xef\xc0\xb6\xa1\x2c\xbd\xa0\x10\xa7\xb9\x3b\xc4\xc3\xf9\x01\x93\x52\x00\x60\x48\xb0\x05\x3d\xae\x7f\x85\xc7\x8e\x64\x5b\xfc\xfe\x10\x79\xdd\xfe\xe0\xe5\x6f\x61\x75\x5c\x44\x6f\xa4\xbb\x4f\xf1\x65\x94\x56\xd8\x5d\xc1\xda\x60\x5a\xa3\xcb\x38\x92\xe0\xf8\x86\x8a\xdd\x1a\x9d\x41\xc6\xd3\xff\x9e\x13\x6a\xbf\x3d\x14\x39\xa5\xe6\xef\x00\x00\x00\xff\xff\xec\x0b\xfb\xe3\x3b\x01\x00\x00" func quorumcertificateScriptsGet_node_weightCdcBytes() ([]byte, error) { return bindataRead( @@ -5120,11 +5100,11 @@ func quorumcertificateScriptsGet_node_weightCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_node_weight.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x93, 0x25, 0xfa, 0x54, 0x63, 0x59, 0xc9, 0xed, 0x7c, 0xb4, 0x5, 0x3, 0xd4, 0xe1, 0x46, 0x77, 0x8e, 0x2d, 0xec, 0x84, 0x5b, 0x67, 0x8, 0x2a, 0xe3, 0xdc, 0xaa, 0x1c, 0xfb, 0x6, 0xd4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0x9c, 0x30, 0x47, 0x7d, 0x62, 0xd0, 0xa6, 0x81, 0xca, 0xe6, 0xf1, 0x83, 0x8e, 0x2f, 0x26, 0x25, 0x47, 0x8b, 0x62, 0x97, 0xde, 0xac, 0x2d, 0xf, 0xb1, 0xe1, 0x32, 0x9d, 0xfb, 0x27, 0xda}} return a, nil } -var _quorumcertificateScriptsGet_qc_enabledCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xcc\x31\x0a\x42\x31\x0c\x06\xe0\x3d\xa7\xf8\x79\xd3\xeb\xe2\x01\x1c\x2d\x38\xeb\x11\x4a\x49\xa5\x90\x26\x92\xb4\x38\x88\x77\x77\xee\xfa\x0d\x5f\x1f\x6f\xf3\x89\xbb\xd8\x27\xcb\x8a\xc9\xfe\xcc\x68\x6e\x03\xc7\x66\x07\x51\xa9\x95\x23\xce\x22\x92\xd0\x96\x62\x94\xae\x67\xba\xe2\x66\x26\xf8\x12\x01\x80\xf3\x5c\xae\x7b\x77\xe9\xfa\x70\x7b\x39\x47\x10\xfd\xfe\x01\x00\x00\xff\xff\x53\x18\x41\x96\x71\x00\x00\x00" +var _quorumcertificateScriptsGet_qc_enabledCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x30\xa8\x08\x74\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x70\xca\xcf\xcf\x51\xa8\xe6\xe2\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x35\x42\x2f\x33\x2f\xa0\x28\x3f\xbd\x28\xb5\xb8\x98\x8b\xab\x16\x10\x00\x00\xff\xff\x91\xb7\x70\x7a\x65\x00\x00\x00" func quorumcertificateScriptsGet_qc_enabledCdcBytes() ([]byte, error) { return bindataRead( @@ -5140,11 +5120,11 @@ func quorumcertificateScriptsGet_qc_enabledCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_qc_enabled.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe4, 0x1, 0xc8, 0x57, 0x3, 0x99, 0xe8, 0x3a, 0xeb, 0xa5, 0xac, 0x3b, 0x72, 0x25, 0x55, 0x34, 0xf7, 0x31, 0x44, 0x4b, 0xc6, 0x3, 0x7, 0x69, 0x63, 0x0, 0xea, 0xb, 0x6f, 0x71, 0x5, 0xba}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0xd8, 0xc8, 0x9f, 0xb4, 0x4d, 0x43, 0xa4, 0x5b, 0x58, 0xc3, 0xef, 0xe6, 0xab, 0x17, 0xb8, 0xa8, 0xae, 0x35, 0x7c, 0xc4, 0xff, 0xb2, 0xd5, 0xe2, 0x17, 0x9e, 0xab, 0x50, 0xe8, 0x4e, 0xab}} return a, nil } -var _quorumcertificateScriptsGet_voter_is_registeredCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xc1\x8a\x83\x40\x10\x44\xef\xfd\x15\x85\x27\xbd\xac\x77\x8f\xeb\xb2\xe0\x71\xdd\x2f\x98\x68\x8f\x34\x8c\xdd\xa1\x67\x34\x87\x90\x7f\x0f\x86\x10\xf0\x5a\xd4\xab\x57\xb2\x5e\xcd\x0b\x7e\x93\xdd\xfa\xb4\xe5\xc2\xfe\xd7\x23\xba\xad\xa8\x4e\x59\x45\xd4\xb6\x18\xb9\x6c\xae\x19\x01\x17\xb3\xc4\x41\x21\x3a\xcb\x14\x8a\xe8\x02\x89\x08\x50\x9b\x19\x92\xe1\xbc\xc8\x41\xf2\x8c\x68\x8e\xdd\x8e\x0a\x51\x98\x26\xce\xb9\x0e\x29\x35\x88\x9b\x62\x0d\xa2\xf5\xc1\x0c\x3f\x1d\xfe\x8b\x8b\x2e\x4d\x87\x6f\xb3\x84\x3b\x11\x00\xf8\x4b\x79\x3e\xf8\xb5\x5b\x61\x1f\xf2\xf8\x91\xbc\x37\x1a\xa2\xc7\x33\x00\x00\xff\xff\xc7\x79\x0f\x5e\xd2\x00\x00\x00" +var _quorumcertificateScriptsGet_voter_is_registeredCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x41\x6a\x84\x40\x10\x85\xe1\x7d\x9d\xe2\x2d\xe3\x26\x66\xed\x2e\xd1\x04\x5c\xaa\x27\x68\x63\xb7\x14\xb4\x55\x52\xdd\x6d\x02\xc3\xdc\x7d\x70\x18\x06\x66\xff\xf3\xbd\xc7\xdb\xae\x96\xf1\x13\xf5\xaf\x8d\x25\x65\x6f\x43\x8b\x60\xba\xe1\xe3\x7f\x68\x3f\xbb\x6e\xfc\x9e\x26\xa2\xba\xc6\xe8\x73\x31\x49\x70\x98\x55\xa3\x77\x02\x96\x85\x7f\x5d\x66\x59\xc1\x01\x0e\xa2\x8b\x07\x27\x98\x5f\xf9\x94\xfc\x82\xa0\x86\x43\xcf\x84\x68\x2f\x33\x42\x11\x6c\x8e\xe5\xed\x6c\xfb\xae\xc1\x94\x8d\x65\xad\x1a\x7c\xa9\x46\x5c\x88\x00\xc0\xee\x53\xaf\xa7\xde\x0f\xcd\xde\xfa\x34\x3e\xf1\x87\x51\x11\x5d\x6f\x01\x00\x00\xff\xff\x25\xd3\x9a\xb5\xc6\x00\x00\x00" func quorumcertificateScriptsGet_voter_is_registeredCdcBytes() ([]byte, error) { return bindataRead( @@ -5160,11 +5140,11 @@ func quorumcertificateScriptsGet_voter_is_registeredCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_voter_is_registered.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xc6, 0x3d, 0x20, 0x48, 0xaf, 0x41, 0xc4, 0xfd, 0x17, 0xf1, 0x48, 0xb8, 0x5b, 0xd0, 0x4c, 0xa5, 0xf1, 0x23, 0x4e, 0x87, 0xf, 0xa5, 0xb1, 0x4d, 0x99, 0x1e, 0x1e, 0xfa, 0x87, 0x7f, 0x65}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0xb, 0x7e, 0xe9, 0xf, 0xb8, 0xd4, 0x4, 0xbe, 0x72, 0xc1, 0x51, 0x89, 0xc8, 0x3f, 0xee, 0xde, 0x87, 0xd6, 0xa6, 0x14, 0x73, 0xeb, 0xa4, 0x18, 0x82, 0x7e, 0xeb, 0x4a, 0x9d, 0xf8, 0x9b}} return a, nil } -var _quorumcertificateScriptsGet_voting_completedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\xa1\x6e\xc5\x30\x0c\x46\x61\xee\xa7\xf8\x55\xd4\x92\x95\x0f\xae\xd2\xf8\xf6\x06\x6e\xe2\xac\x96\x92\xb8\x4a\x9c\x0e\x4c\x7b\xf7\xab\x7b\x59\xe9\x21\xdf\xd1\x72\x5a\x73\x7c\x66\xfb\xdd\xf2\xe8\x2e\xed\x6b\x43\x6a\x56\x30\xdd\xda\x44\xb4\xae\xf8\x16\x1f\xad\x76\x30\x76\xb3\x2c\x5c\xa1\x35\x6a\x60\xd7\xfa\x03\x4d\x60\x54\x8b\x82\x83\x3b\xfa\xd8\x8b\xba\x4b\x04\xe3\x32\x17\x24\x6b\xf0\x43\x3b\xe4\xb4\x70\x10\x71\x08\xd2\xfb\xcc\x39\x2f\x48\xa3\xa2\xb0\xd6\x79\x79\xc7\x87\x59\xc6\x1f\x11\x00\xb4\x97\x77\xbf\x7b\xbb\xec\xc9\x6d\x56\xce\x2c\x2e\x71\x5e\x88\xfe\x1f\x01\x00\x00\xff\xff\xb1\xa0\xbe\x79\xc7\x00\x00\x00" +var _quorumcertificateScriptsGet_voting_completedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x31\x4e\xc5\x30\x0c\x06\xe0\xdd\xa7\xf8\xc7\xf7\x16\xca\xcc\x06\x29\xec\x6d\x4f\x90\x36\x0e\xb5\x94\xc4\x51\xe2\x14\x24\xc4\xdd\x11\x6c\x9c\xe0\xfb\x24\x57\x6d\x86\xb7\xa4\x1f\x2e\x8d\x6e\xdc\x16\x87\xd8\x34\xe3\xf1\x73\x71\xcf\xf3\xbc\xbe\x6e\x1b\xd1\x34\x61\x65\x1b\xad\x74\x78\xec\xaa\x89\x7d\x81\x94\x20\x87\x37\x29\xef\x90\x08\x8f\xa2\x81\x71\xfa\x8e\x3e\xf6\x2c\x66\x1c\xe0\x71\xa9\x31\xa2\x36\xd8\x29\x1d\x5c\xf5\x38\x89\xea\xd8\x11\x47\x41\xf6\x52\x6e\xf7\x27\xbc\xa8\x26\x7c\x11\x01\x40\xfb\x73\xfe\x8f\x1e\x2e\xfd\x65\x9c\xe6\x9a\xd8\x38\xdc\xee\x44\xdf\x3f\x01\x00\x00\xff\xff\x19\xef\x8b\xe7\xbb\x00\x00\x00" func quorumcertificateScriptsGet_voting_completedCdcBytes() ([]byte, error) { return bindataRead( @@ -5180,11 +5160,11 @@ func quorumcertificateScriptsGet_voting_completedCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_voting_completed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0x87, 0x1d, 0x98, 0xc3, 0xe7, 0x56, 0x6d, 0x1d, 0xe6, 0x4a, 0xf0, 0xa5, 0xde, 0x33, 0xfa, 0x4b, 0xb0, 0x81, 0x1f, 0xaf, 0x72, 0xa7, 0xdf, 0x2f, 0xc2, 0xe0, 0xbd, 0x62, 0x6d, 0xfe, 0xa9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd7, 0x4, 0x25, 0x98, 0x8d, 0xb7, 0x66, 0x53, 0x62, 0x94, 0xae, 0x9d, 0x79, 0xd5, 0xb7, 0x36, 0x53, 0xb9, 0xae, 0xd1, 0xa, 0x1c, 0x9c, 0x85, 0x25, 0x5d, 0xd6, 0xc8, 0xf, 0xf7, 0x1b, 0xdc}} return a, nil } -var _quorumcertificateSubmit_voteCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\xc1\xaa\xdb\x30\x10\xbc\xeb\x2b\x06\x1f\x5e\x6d\x68\xed\xbb\x69\xfb\x78\x35\xf4\x56\x78\x69\x4a\xee\x8a\xbd\xb6\x45\x6c\xc9\x5d\xad\x9a\x96\x92\x7f\x2f\xb2\x9a\x10\x87\x27\x30\x78\x57\x33\xb3\xa3\x59\x33\x2f\x8e\x05\x5f\x27\x77\x6e\xa6\xe0\x85\x78\xd7\xa0\x67\x37\x23\xdb\xf4\x32\xa5\xaa\x0a\x2f\xb0\xae\x23\xfc\x72\x42\x8c\xe0\xc9\x43\x46\xe3\x21\xac\xad\xd7\xad\x18\x67\x21\x0e\x3e\x1c\x67\x23\xd0\xd8\x35\x2b\x54\x55\x55\x24\xbf\x6a\xd6\x33\x09\xb1\xaf\x63\x19\xbf\x78\xbb\x37\x83\xd5\x12\x98\x6a\xfc\x18\x09\xde\x0c\x96\x3a\xcc\xe4\xbd\x1e\x08\xc1\x1b\x3b\x40\x46\x5a\x27\xbf\xf3\xf0\xa2\x4f\xb1\x75\xa2\x3f\x57\x85\x6f\x09\x9b\xf8\x23\xfd\xfe\x40\xb6\x75\x1d\x75\xf0\xc2\x11\xea\xfa\x55\x80\xf5\xf9\x2a\xab\xd4\x9d\xe5\xfc\xc1\xc5\x7e\x65\xbd\xdf\x4a\xa7\x66\x81\xbf\x4a\x01\xc0\xc2\xb4\x68\xa6\x7c\x75\xcb\x35\x74\x90\x31\xff\xe2\x98\xdd\xf9\xa0\xa7\x40\x05\x9e\x5e\xda\xd6\x05\x2b\x91\x82\xff\x67\x22\x49\xd9\x7d\xa7\x1e\x9f\xd2\x53\xb9\xf4\xe2\x58\x0f\x54\x1e\x57\xfa\xc7\xa7\x4d\xee\xe5\x21\xe2\x3f\xe7\x71\x25\x35\xde\xb8\xda\x27\xf6\xab\x96\xb1\xb8\x0d\x8a\xe7\xf9\x19\x8b\xb6\xa6\xcd\xb3\xc6\x85\xa9\x83\x75\x82\x34\x02\x4c\x3d\x31\xd9\x96\xe2\xb6\x7e\xb6\xc9\x53\x56\xa8\x1b\xff\x6a\xb2\x8c\x3f\x8f\xf9\x6c\xca\x87\x98\xee\x8a\xe4\xe6\xa2\x2e\xff\x02\x00\x00\xff\xff\xf6\x6f\xe5\x6d\x63\x02\x00\x00" +var _quorumcertificateSubmit_voteCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\x51\xcf\x93\x40\x10\x7c\xbf\x5f\x31\xf9\x1e\x94\x26\x5a\x7c\x26\xea\x17\x42\xf5\xcd\xa4\x2d\xc6\xf7\x2b\x2c\x70\x29\xdc\xe1\xde\x9e\xad\x31\xfd\xef\xe6\x38\xdb\xb4\x8d\x9b\x90\xb0\xbb\x33\xb3\xc3\x60\xa6\xd9\xb1\xe0\xeb\xe8\x4e\xd5\x18\xbc\x10\xef\x2a\x74\xec\x26\x7c\x38\xef\xaa\x72\xb3\xd9\x7f\xa9\x6b\xa5\xf2\x1c\x25\xac\x6b\x09\xbf\x9c\x10\x23\x78\xf2\x90\xc1\x78\x08\x6b\xeb\x75\x23\xc6\x59\x88\x83\x0f\x87\xc9\x08\x34\x76\xd5\x02\x55\x79\x1e\xc9\x5b\xcd\x7a\x22\x21\xf6\x45\x6c\xe3\x13\xb7\xb5\xe9\xad\x96\xc0\x54\xe0\xfb\x40\xf0\xa6\xb7\xd4\x62\x22\xef\x75\x4f\x08\xde\xd8\x1e\x32\xd0\x72\xf9\xad\x87\x17\x7d\x8c\xa3\x23\xfd\xbe\x2a\x7c\x4b\xd8\xc4\x1f\xe8\xfc\x9e\x6c\xe3\x5a\x6a\xe1\x85\x23\xd4\x75\x8b\x00\xeb\xd3\x55\x56\xa9\x3b\xcb\xd9\x93\x8b\x7a\x61\xbd\x7b\x94\x4e\xc3\x15\xfe\x28\x05\x00\x33\xd3\xac\x99\xb2\xc5\x2d\x17\x28\x83\x0c\x65\xd3\xb8\x60\x25\x62\xf0\xaf\x46\x92\x14\xd6\x9e\x3a\x7c\x4a\xdf\xc6\xeb\x83\x63\x76\xa7\x8f\x6f\x1e\x02\x5f\xff\x88\xb8\xcf\x59\xcc\xbd\xc0\x7f\x56\xb5\x38\xd6\x3d\x6d\xb5\x0c\xab\xdb\x81\x58\xaf\xaf\x98\xb5\x35\x4d\xf6\x52\xb9\x30\xb6\xb0\x4e\x90\x4e\x80\xa9\x23\x26\xdb\x50\xfc\x2d\x3f\x9b\xe4\xe5\x65\xa5\x6e\xfc\xab\xb9\x75\x7c\x79\x0e\xe2\xa1\x7d\xca\xe3\xae\x49\x6e\x2e\xea\xf2\x37\x00\x00\xff\xff\x81\x4d\x6f\x1c\x48\x02\x00\x00" func quorumcertificateSubmit_voteCdcBytes() ([]byte, error) { return bindataRead( @@ -5200,7 +5180,7 @@ func quorumcertificateSubmit_voteCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/submit_vote.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xff, 0x17, 0x2e, 0x7e, 0x4e, 0xc0, 0xf1, 0x63, 0x79, 0x30, 0x6a, 0xd7, 0xc7, 0xad, 0xdf, 0x22, 0xad, 0x5f, 0xfd, 0xd, 0x41, 0xc7, 0x37, 0xea, 0xef, 0x44, 0x8b, 0x91, 0x62, 0xe4, 0x9e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x97, 0xf6, 0x2f, 0x9, 0xa3, 0xbc, 0x7e, 0x74, 0xb2, 0xa3, 0xe, 0xf0, 0x38, 0x14, 0x3e, 0x45, 0xca, 0xa1, 0xa1, 0x7f, 0xa4, 0x86, 0x99, 0x91, 0x81, 0xb3, 0x63, 0x6d, 0x75, 0x3b, 0xe}} return a, nil } @@ -5264,7 +5244,7 @@ func randombeaconhistoryScriptsGet_source_of_randomness_pageCdc() (*asset, error return a, nil } -var _stakingcollectionClose_stakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x8e\xd3\x30\x10\xbd\xe7\x2b\x46\x3d\x2c\xa9\xb4\xca\x4a\x70\xab\x80\x0a\x8a\x90\xf6\x04\xa2\xc0\x7d\xea\x4c\x13\x83\xe3\x89\xc6\xe3\x2d\x2b\xb4\xff\x8e\x6c\x37\x29\xa2\x39\x70\x59\x1f\x92\x78\xfc\x26\xef\xcd\xf3\xb3\xc3\xc8\xa2\xf0\xd1\xf1\x69\xaf\xf8\xd3\xfa\x6e\xc7\xce\x91\x51\xcb\x1e\x8e\xc2\x03\xac\x16\xcf\x56\x55\x75\x77\x07\x3b\xc7\x81\x02\x70\x54\x40\x08\x05\x03\x7c\xf8\x41\x46\xc1\x7a\xd0\x9e\xe6\xaa\x99\x5b\x53\xe3\xd7\xde\x06\x68\x99\x02\x78\x56\x10\x1a\xf8\x81\x32\x5c\xc8\xb0\xb4\x85\x39\xed\x6d\x4b\x5e\xad\x3e\x82\xe2\xc1\xd1\x6d\xea\x3d\x44\x05\xab\xa5\x7b\x20\x4c\x34\xa8\x19\x8c\xc6\x70\xf4\x5a\x0a\xa6\x68\xb3\x0a\x06\x7d\x62\xa1\x07\x92\x04\xa1\x90\xab\xd8\xa1\xf5\x55\xa5\x82\x3e\x60\x16\x56\x7b\x6e\xe9\xfe\xc3\x06\xf6\x2a\xd6\x77\xb7\xd0\x92\xa3\x0e\x95\x25\x15\xbf\xdd\x7b\x7d\xf5\x72\xbb\x86\xdf\x15\x00\x40\x7e\x38\xd2\x69\xc0\x8b\x35\x5f\xe8\xb8\x01\x8c\xda\xd7\x8b\xce\x35\x97\xcf\x4f\x27\x4f\xb2\x86\x9b\x65\xdc\x55\xa5\xca\x9c\xa3\xd0\x88\x42\xf5\x79\xd8\x33\xd5\x7b\x16\xe1\xd3\x77\x74\x91\xd6\x70\xf3\xae\x9c\x4d\x5a\xd3\x0a\xe4\x8e\xcd\x92\x56\x78\x33\xf9\xd6\x04\x65\xc1\x8e\x9a\x43\xfe\xd9\xeb\xe7\x98\xe1\x6d\x9d\xae\x76\xb3\x1c\xb8\x6b\xf8\xbe\x28\xfa\x8c\xda\xaf\xe7\x51\xd2\xda\x6e\x61\x44\x6f\x4d\xbd\xda\x71\x74\x6d\x8e\x51\x91\x0d\x08\x42\x47\x12\xf2\x86\x40\x19\x10\xae\x83\x7d\xce\xe6\x28\x76\x40\x79\x84\x18\x48\x5e\x84\xc9\x86\x55\x61\x7a\x2a\x76\xd3\x2f\x32\x51\xe9\x7f\x9c\x6c\x72\xe4\x12\x1b\xcd\x51\x2a\xef\x7f\xa2\xf4\xd7\x66\xe2\x7a\xaa\xfe\x04\x00\x00\xff\xff\x81\xd2\xc8\xc9\x8a\x03\x00\x00" +var _stakingcollectionClose_stakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xd4\x40\x0c\xbd\xe7\x2b\xac\x1e\xd0\x56\xaa\xb6\x08\x6e\x11\xb0\x8a\xb2\x05\x45\x54\x2d\x6a\x96\x0f\x70\x26\x4e\x32\x30\x19\x47\x33\x4e\x5b\x84\xfa\xef\x68\x66\x48\x40\xdd\x3d\xac\x0f\x89\xfc\x64\xbf\xf7\x6c\x8f\x1e\x27\x76\x02\x9f\x0d\x3f\xd5\x82\x3f\xb5\xed\x4b\x36\x86\x94\x68\xb6\xd0\x39\x1e\xe1\xed\x73\x7d\x28\xbe\x56\x77\x5f\xca\xfb\xdb\xdb\x9b\xf2\x50\xdd\xdf\x15\xfb\xfd\xc3\x4d\x5d\x67\xd9\xf5\x35\x94\x86\x3d\x79\xe0\x59\x00\xc1\x27\x0a\xe0\xe6\x07\x29\x01\x6d\x41\x06\x5a\x51\xb5\x32\x87\xc6\xc3\xa0\x3d\xb4\x4c\x1e\x2c\x0b\x38\x1a\xf9\x91\x62\xb9\x23\xc5\xae\x4d\xe2\x21\xd7\x2d\x59\xd1\xf2\x0b\x04\x1b\x43\x57\xa1\xb7\x99\x05\xb4\xa4\xee\x91\x30\xc8\xa0\xc4\x62\x54\x8a\x67\x2b\x09\x50\xc9\x9b\x16\x50\x68\x83\x0a\x3d\x92\x0b\x25\xe4\x23\x8a\x3d\x6a\x9b\x65\xe2\xd0\x7a\x8c\xc6\x36\x96\x5b\xaa\xf6\x39\xd4\xe2\xb4\xed\xaf\xa0\x25\x43\x3d\x0a\xbb\x00\x7e\xaf\xac\xbc\x7f\xb7\xbb\x84\xdf\x19\x00\x40\xfc\x18\x92\x65\xc0\x7f\x9b\x7b\xa0\x2e\x87\x37\x27\x97\xba\x3d\x42\xb2\xc8\x33\x39\x9a\xd0\xd1\xe6\xef\x00\x39\x14\xb3\x0c\x45\x4a\x16\xc1\x10\x9e\x4c\xb7\x3d\x25\x08\x1f\x97\xe1\xb7\x0d\x3b\xc7\x4f\x1f\xce\x35\xf0\x69\x13\x76\x9d\x9f\x7e\x04\xc7\xe5\xb5\xb0\xc3\x9e\xbe\xa1\x0c\x97\xab\xad\x10\xbb\x1d\x4c\x68\xb5\xda\x5c\x94\x3c\x9b\x36\xde\x35\x59\x01\x47\x1d\x08\xc3\x11\xd7\x45\x62\x78\x49\x3b\xa0\x67\x52\xb3\xd0\x39\xd3\x6e\xe3\x6d\x03\x1f\xad\x37\x4b\xff\x57\x37\xfb\x2f\x59\xb4\x5e\xb2\x3f\x01\x00\x00\xff\xff\x6e\x12\x74\xdf\xf6\x02\x00\x00" func stakingcollectionClose_stakeCdcBytes() ([]byte, error) { return bindataRead( @@ -5280,11 +5260,11 @@ func stakingcollectionClose_stakeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/close_stake.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x31, 0xd6, 0xfa, 0x69, 0x5f, 0x9d, 0x28, 0xd3, 0x8b, 0x18, 0x15, 0x2c, 0xdc, 0xf3, 0x4d, 0x92, 0xf3, 0x99, 0x54, 0x52, 0x91, 0x27, 0xbf, 0x10, 0xdd, 0x65, 0x16, 0xce, 0xac, 0x21, 0xd9, 0x7b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x59, 0x8d, 0x88, 0x8f, 0x9d, 0x2f, 0x9b, 0x93, 0x92, 0x8c, 0x12, 0x2b, 0xb, 0x67, 0x85, 0x23, 0x87, 0x27, 0x5b, 0x5f, 0x46, 0x81, 0x35, 0x3e, 0x3d, 0x28, 0xbf, 0xd8, 0x89, 0xc8, 0x19}} return a, nil } -var _stakingcollectionCreate_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x4d\x4f\xdb\x40\x10\x3d\xe3\x5f\xf1\x94\x03\xb5\xa5\xc8\xa4\xb7\xca\x6a\x8a\x68\x5a\x04\x42\x6d\x51\xa3\xf6\x3e\x78\x27\xf6\x0a\x67\xd7\x9a\x5d\x13\xac\x8a\xff\x5e\xf9\x2b\x24\xc4\x50\x38\xd4\x07\x67\xed\xec\xcc\x7b\xfb\xe6\xcd\x58\xaf\x4b\x2b\x1e\x0b\xa9\x4b\x6f\x83\xfe\xe9\xbc\xb0\x9b\xa5\xa7\x5b\x6d\xb2\x85\x2d\x0a\x4e\xbd\xb6\x06\x2b\xb1\x6b\x4c\x46\xff\x9b\x04\xc1\xc9\xc9\x09\x16\xc2\xe4\xd9\x81\xb0\xa6\x34\xd7\x86\x41\x69\x6a\x2b\xe3\xb1\xb2\x02\x82\xb1\x8a\xe1\x73\xf2\xd0\x0e\x54\x08\x93\xaa\xa1\x0d\x7c\xce\x70\x5d\x4e\xa4\xdb\xa4\x6d\x4a\x32\x0a\xa4\x94\x43\x59\xdd\x14\x3a\xc5\x2d\xd7\x0e\xde\xb6\x21\x86\x37\x03\x40\x10\x78\x21\xe3\xa8\x0d\x0c\x1b\x9c\xcb\x2f\x09\x96\x5e\xb4\xc9\xa6\x08\xb0\x73\xf5\xd4\xce\xba\xc0\x2b\xae\x5f\xbb\x6f\xa9\x33\x43\xbe\x12\x3e\x2b\x32\x2b\xda\xe7\xeb\x04\xbf\x2e\x8d\xff\xf0\xaf\xc0\x0b\x72\xf9\xd3\x98\x08\x7f\xda\xa0\xf6\x56\xb0\x1f\xce\xff\xa8\xe9\x4f\x5e\x25\xa0\xca\xe7\xe1\xa8\xe4\xf1\xe3\xf2\xc7\xc6\xb0\x44\x38\x1e\xdf\x77\xf0\x26\x68\x31\x4b\xe1\x92\x84\xc3\x5e\xc0\x1e\xea\xb3\x15\xb1\x9b\xdf\x54\x54\x1c\xe1\xb8\x3f\xc2\xc0\xb5\xb9\x1c\x17\xab\x78\x8c\x2b\xe6\x43\x2d\x62\xe7\xad\x50\xc6\xf1\x4d\x9b\xec\xe3\xff\x38\xc3\xa7\xb0\x71\x63\x32\xee\xd4\xc3\xed\xcb\x8e\xd1\x35\xf9\x3c\xda\xab\xd5\xe9\x29\x4a\x32\x3a\x0d\x27\x0b\x5b\x15\x0a\xc6\x7a\x74\xb4\x41\x10\x5e\xb1\xb0\x49\xb9\x31\x1c\xe1\xb0\x23\x7a\xeb\x96\xa2\xd7\x24\x35\x2a\xc7\xf2\xce\x0d\x32\x4c\xa2\x60\x0b\xa5\x57\x6d\x8d\xf7\x9d\x81\xf9\xf3\x6a\xc6\x69\xdb\x4a\xdf\xf6\x02\xce\xad\x7c\xbd\xd7\xce\x6b\x93\x7d\xb7\x8a\xb7\x36\xef\x7e\xa7\x28\xa9\x66\x49\x06\xfc\xdd\xaa\x6d\x4d\xa6\xb3\xc6\x88\x98\xe3\xd0\xcc\xa1\x50\x57\xf8\xe4\x35\xd6\xdf\x97\xf1\x39\x29\x33\xf6\xa0\x06\xb5\x8b\x06\x0d\xe1\xdd\x30\x69\xc4\x13\xda\x80\x4d\xb5\xc6\x5d\x83\x8d\x52\xec\x9d\x56\xac\x76\xd5\x1b\xd8\xe7\x7d\x1f\x61\x8e\xbd\x96\x7a\x89\xf9\xde\xc6\xb7\x90\x6e\xc0\xde\xc6\x77\x37\xef\x01\xf7\x6e\x7c\x5d\x71\x8d\x39\xae\x87\x75\x18\x1c\x1d\x1d\xb5\xcd\x38\xbc\x19\x39\x41\xac\x38\xb5\x8a\x2f\xf8\x3e\x8c\xa6\x43\x80\x1b\x99\x45\x7d\x71\x83\x6e\x47\xf4\xc2\x4c\x8a\x9b\x29\x1a\x93\x52\xe1\x0e\xf0\x76\x39\xdd\x0a\xdd\x27\x1e\x1e\xa7\xd8\xb0\xce\x72\x9f\xe0\xfd\x6c\x36\x8b\x67\x8f\x10\x0f\xe0\xc2\xf1\x13\xc3\x1d\x08\xdb\x79\xfa\x99\xaf\x43\x3b\xd0\xad\xe2\x1d\x21\x1f\x82\xee\xfe\x10\xfc\x0d\x00\x00\xff\xff\xae\x12\x08\x8b\xa6\x06\x00\x00" +var _stakingcollectionCreate_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x6f\x9b\x40\x10\xbd\xf3\x2b\x5e\x73\xa8\x1c\xc9\x22\x39\xa3\xba\x91\x85\x9d\xca\xb2\xeb\x54\x21\xb7\xaa\x87\x0d\x0c\xb0\xf2\x7a\x17\xed\x8e\xeb\xd0\xc6\xff\xbd\x5a\xc0\xc4\x9f\x52\xf7\x00\xcc\x2e\x33\xef\xcd\x9b\xb7\x72\x5d\x19\xcb\x88\x6d\x5d\xb1\x09\xba\xe8\x51\x99\x6d\xc2\x62\x25\x75\x11\x1b\xa5\x28\x65\x69\x34\x72\x6b\xd6\xb8\x7f\x4b\x5e\xc6\xf3\xd9\xf2\x5b\xfc\xb4\x58\x4c\xe3\x97\xd9\xd3\x72\x3c\x99\x3c\x4f\x93\x24\x08\xee\xee\xee\x10\x5b\x12\x4c\x0e\x02\x6b\x91\x96\x52\x13\x44\x9a\x9a\x8d\x66\xe4\xc6\x42\x40\x9b\x8c\xc0\xa5\x60\x48\x07\xa1\x2c\x89\xac\x86\xd4\xe0\x92\xe0\x5a\x48\xa4\x3d\x66\x53\x52\xe8\x0c\x22\xcb\x1c\xaa\xcd\xab\x92\x29\x56\x54\x3b\xb0\x69\x52\x34\x6d\xf7\x00\x41\xc0\x56\x68\x27\x9a\xc4\x81\xc7\x99\x4d\x22\x24\x6c\xa5\x2e\x86\x5d\xee\x9c\x6a\x17\xe1\x67\xdb\x6d\x38\xa7\x7a\x21\x1d\x4f\x35\xdb\xfa\xd7\x2d\xfe\x06\x00\xd0\x3c\x14\xf1\x9e\xcd\x87\x00\xcf\x94\x47\xf8\x7c\x51\x9b\xf0\x6c\x27\x68\xea\x54\x96\x2a\x61\x69\xd0\x51\x8c\x30\xde\x70\x39\x6e\x83\x3d\xa0\x5f\x8e\x54\x1e\x5e\x02\xc4\x68\xdf\x5e\xf8\x6a\xac\x35\xdb\x2f\xff\x4b\xe0\xeb\xc0\xcf\x2b\xba\x3c\xcb\xf3\xdf\x13\x36\x56\x14\xf4\x43\x70\x79\xdb\xd3\xf2\xeb\xe1\x01\x95\xd0\x32\x1d\xdc\xc4\x66\xa3\x32\x68\xc3\x68\xa9\xc0\x52\xee\xe7\x70\x56\xeb\xe6\x36\xe8\x4b\xc8\xbc\x11\xb3\x33\x43\xd7\x3a\x46\xd7\x3b\x0e\xd3\xc6\x41\xdf\x8f\x12\x1e\x8d\x9d\xbe\x49\xc7\x52\x17\x4b\x93\x51\x3f\xdd\xf6\x3d\x44\x25\x6a\xb2\xd1\x5e\xaa\x43\x65\x3b\x0e\x1f\xe3\xc7\x68\x04\x2d\x15\xde\xdf\x0f\x36\x3f\x85\x8a\x74\xc1\xa5\x3f\xbc\x3f\xc9\x6e\xe6\xd8\x29\x20\xb4\x6f\xbf\xb2\xe6\xb7\xcc\x08\x7f\xc8\x9a\xd6\x8d\xde\xdb\xde\x8e\x27\x9e\xbf\x39\x96\x72\x77\x14\xf9\x9c\x15\x35\xe6\x3f\x60\x77\x8e\x7d\x2c\x5d\xe8\xf1\x42\x91\x65\x83\x3e\x29\xf2\x65\xc2\x3e\x1c\xa2\x14\xae\x1c\xab\xc2\x58\xc9\xe5\xba\x3d\x3d\xda\x1a\x62\x4b\xb2\x28\xb9\x3d\x6a\xbf\xaf\x31\xdd\x81\x94\xa3\x13\x5a\x67\x86\x68\x67\x76\xe5\xd2\x37\xf7\xd4\x64\x74\xa0\x46\x5b\x7f\x17\xec\x82\x7f\x01\x00\x00\xff\xff\x33\xed\x36\xa1\x80\x04\x00\x00" func stakingcollectionCreate_machine_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -5300,11 +5280,11 @@ func stakingcollectionCreate_machine_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/create_machine_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0xdf, 0x3d, 0x5, 0xff, 0xf4, 0xd, 0xa2, 0x7, 0x81, 0x97, 0xc9, 0x37, 0xf5, 0x18, 0x28, 0x47, 0x12, 0xbc, 0x5b, 0x84, 0x1f, 0x3e, 0xac, 0x1c, 0x12, 0x62, 0x6e, 0xaf, 0x13, 0x2f, 0x4e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0xa9, 0xbc, 0xef, 0x3, 0x1e, 0x98, 0xd6, 0x4d, 0xb8, 0xc3, 0xa3, 0x9c, 0x38, 0x31, 0xcb, 0x72, 0x80, 0xa, 0x1, 0xee, 0xd9, 0x6, 0xe8, 0xc7, 0xe8, 0x77, 0x86, 0xd5, 0xd5, 0xae, 0x7f}} return a, nil } -var _stakingcollectionCreate_new_tokenholder_acctCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x56\x49\x6f\xe3\x36\x14\xbe\xfb\x57\xbc\xc9\x21\x90\x00\x8f\x8c\x5e\x8d\x24\x40\x6a\x74\x43\xa6\x68\x80\xa4\xd3\xc3\x20\x07\x46\x7c\x96\x58\xd3\xa4\x40\x52\x76\x85\x22\xff\xbd\xe0\x22\x89\x94\xe5\xc6\x5d\x50\xa0\xbe\x58\x24\xdf\xf2\xbd\xef\x2d\x24\xdb\x37\x52\x19\xd8\xa8\xae\x31\x72\x11\x56\xdf\x72\x79\x7c\x96\x3b\x14\xb0\x55\x72\x0f\x57\xc3\xfa\x6a\x90\x68\x45\xc5\x5e\x39\x26\x52\xf1\xde\x20\xf9\x49\x96\x3b\xa4\x6e\x4f\x07\xc1\x78\xeb\x2a\xf6\xf9\x64\xc8\x8e\x89\x6a\x23\x39\xc7\xd2\x30\x19\xfb\x3f\x39\xbb\x5a\x2c\x56\x2b\x78\xae\x99\x06\xa3\x88\xd0\xc4\x6b\x10\xce\xe5\x51\x83\xa9\x11\x4a\x29\x8c\xb2\xf2\x0a\xe4\xd6\xed\x70\xe7\x19\x48\x59\xca\x56\x18\xab\x6f\x24\x94\x0a\x89\x41\x20\x20\xf0\x98\xc0\x2d\xdc\xdf\xf7\x92\x53\x6b\xe1\xf5\x57\x2c\x0d\x10\x41\x41\x1b\xa9\x10\x98\x01\x26\x82\x56\x64\x90\x70\x2d\x81\x50\xca\x44\x05\x04\xb4\x47\x0d\xe5\x18\x52\x30\x64\xa4\x43\x14\x6b\x5b\xf5\x07\xc4\xc6\xda\xdd\x33\x41\xc1\xd4\xc4\x80\xb1\x11\x52\x89\x1a\x84\xb4\x2e\x0f\x84\x33\x6a\x01\x5b\x75\xfc\x8d\x69\x63\x1d\xc4\x50\x23\x34\xcf\x32\xd5\x20\xa6\x3f\x5d\x42\x27\x5b\x10\x88\xd4\x42\x41\x66\x6a\x54\x40\x91\x63\xb0\x1c\x1b\x54\xa8\x65\xab\x4a\xb4\x16\xa5\x5d\x1e\xe4\x0e\x2d\xd3\xb0\xc3\x2e\x64\x35\xb6\xbd\x58\x44\x19\xc9\x9a\xf6\x95\xb3\xf2\x01\x3b\xbd\x86\x2f\xbe\xd0\x8a\x07\xec\x3e\x31\x6d\xbe\x11\x46\x75\x2f\x39\xfc\xbe\x00\x00\x68\x14\x36\x44\x61\xa6\x59\x25\x50\xad\x81\xb4\xa6\xce\xbe\x96\x4a\xc9\xe3\x67\xc2\x5b\x5c\xc2\x93\x91\x8a\x54\xb8\x84\x0d\x69\xc8\x2b\xe3\xcc\x30\xd4\x39\x5c\xdf\x7b\xbf\xd6\x90\xb3\x64\x7f\xab\x15\x6c\x7c\x66\x27\x3c\xbb\x1c\x12\x4a\xc1\x03\x73\x31\x14\x83\x1a\x47\x63\x85\x83\x45\xb8\x85\xf0\x95\x35\xa4\xb3\xa0\x3c\xb8\x7c\x90\xdf\x4a\x65\x2d\xd8\x9c\x8d\x81\x86\x80\xfa\xdf\x68\xaf\x70\xce\x08\xa5\x23\x2b\x6b\xab\x5e\x0c\xcb\x25\xd4\x44\xd7\xf7\xbc\x92\x8a\x99\x7a\xef\x4f\x93\xad\x25\x1c\x91\x55\xb5\xf1\x47\xfe\x7b\xc4\xf3\x96\x30\xf0\x1d\x9a\x31\x9b\x3f\x12\x41\x2a\x54\x23\x79\x5d\x9f\xba\x69\x67\xa4\x74\x98\x48\x79\xd4\xdd\x8c\xdd\x75\x1b\x58\x29\xca\x28\x2d\x85\xf6\xc9\x2a\x2a\x34\xa3\xac\xce\xb6\x52\x3d\x12\x53\xaf\xd3\x56\x8b\x16\xc1\x53\xc8\xb5\x95\xcd\xbf\x7c\xf5\xf2\xe1\x02\x48\x70\xfb\x2e\xd6\x11\x62\x07\x44\x7f\x88\xb8\xb8\x71\xe5\x96\x0c\xb1\xe2\x17\x66\x6a\xaa\xc8\x31\x87\xeb\x77\xd0\xde\x25\xb4\xff\xac\x7d\xd5\xed\x03\xe3\x91\xd3\xe9\xc0\x89\xfa\x6c\x86\xf5\xd0\x80\x37\x1f\x53\xb6\xbc\x85\x48\x35\x4b\xea\xcd\x27\xf3\x9e\x52\x85\x5a\xf7\x25\x6b\xab\xce\xae\x97\x89\x68\xcc\xd7\xfa\x0c\x7b\x83\x42\x9e\x04\xf9\x44\x0e\xe7\x47\xc5\xcc\x7c\x73\x7d\x37\xc4\x1e\x9a\x6f\x64\x66\x8c\x3e\x6a\x97\xbe\x86\x34\x39\x60\x1a\xe3\xcd\xc7\x88\xa0\x69\x4c\xeb\xb3\x73\x3c\xaa\xaa\xb9\xb0\x26\xc4\x6f\x48\x03\xb7\x31\x9e\xb9\x02\x4f\x7c\x17\x4c\xeb\x16\x6f\xae\xcf\xf9\xbf\xcb\x2e\x40\x96\xcf\x51\x91\xb8\x76\xec\xe9\x3a\x3b\xcd\xe5\x00\x3c\xe5\x84\x98\xd9\x86\x0b\xc6\x7f\x10\x5b\xf9\xe8\x12\x32\x25\x66\x66\x9c\xc6\x40\xdc\xf8\xb3\x79\x76\xbe\xa1\x0e\x17\x90\xa0\xd0\x8a\x30\x52\x0e\xa4\xe5\x93\x81\xe2\x4f\x42\xc5\xbc\xcb\x6f\xa0\xf4\x4f\xda\x73\x39\x93\xee\x9f\x1a\x54\xc4\xde\x3f\x7a\xda\xbc\x7f\x3f\x1b\x16\xfb\x76\x78\x1b\xfd\x0b\xc0\x73\xb8\x1e\xde\x56\xc5\x67\x4b\xd4\x5d\xb6\x0a\xda\xab\xc1\x93\x3b\x18\x51\xcc\xa4\xc4\x8f\x92\xf0\x44\x82\xe8\xfd\x64\x33\xd1\xb4\x26\x3c\x56\x7a\x5c\x83\x05\xb6\x4d\x72\x51\x94\x35\x96\xbb\x2c\x3f\x7f\x7d\x9d\xef\x47\xdf\x93\xf3\xcf\xb8\x30\xaf\x4e\xf6\x4f\x2d\xd8\x5f\x5f\x39\x2e\xec\xf5\x48\xf8\x72\x56\x3a\x2a\xfa\x75\x12\xcc\x89\x74\x7e\x6a\xc0\x4e\x8a\x79\xc4\x27\x3b\x73\x83\xc3\xf7\x48\xff\xf5\x06\xc8\x35\xfe\x6f\xb9\x13\x8c\xff\xf7\x94\x25\xf3\xe5\xd1\x0f\x35\x20\x93\xfb\xd2\xbd\xe5\x1d\x0b\x74\xe6\x41\x9d\x8e\x16\x3d\x05\x71\xd1\x08\xef\xa7\xf6\x85\x81\xdd\xa5\xe4\xff\x03\x3a\xa2\xab\xe7\x2f\x8d\xfa\xb9\x30\x4f\x07\xfe\x85\xc0\x66\x27\xbf\x4f\xcf\xdb\x1f\x01\x00\x00\xff\xff\x67\x6a\x0f\xb0\x20\x0e\x00\x00" +var _stakingcollectionCreate_new_tokenholder_acctCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\xdf\x6f\xe2\x46\x10\x7e\xe7\xaf\x98\xbe\x54\x20\x11\xe8\x33\x4a\x4e\x42\x84\xbb\x46\xd0\x23\x2a\xb4\x7d\xa8\xfa\xb0\xb1\x07\x7b\xcb\xb2\x6b\xed\x0e\xe4\x50\x94\xff\xbd\xda\x1f\xb6\x77\xc1\xe8\x88\x54\xe9\x78\x49\x6c\xcf\x7c\xf3\x7d\xdf\xcc\x8e\xcd\xf7\x95\xd2\x04\x33\x7d\xaa\x48\xf5\xc2\xd5\x67\xa1\x5e\x37\x6a\x87\x12\xb6\x5a\xed\xe1\x97\x6f\x9f\x97\xab\xbf\x36\xab\xc5\xfc\xeb\xf4\xf1\xf1\xf7\xf9\x7a\x5d\x07\x2e\x55\xb6\xc3\xdc\x85\x9a\x3a\x76\xb9\x9a\x2d\xe6\x8f\x5d\xd1\x16\x76\x4d\x6c\xc7\x65\x31\x53\x42\x60\x46\x5c\x35\x25\xd6\x9b\xe9\xe2\xe9\xeb\x97\xd9\x6a\xb9\x9c\xcf\x36\x4f\xab\x26\xb9\x37\x1e\xc3\xa6\xe4\x06\x48\x33\x69\x98\x4f\x62\x42\xa8\x57\x03\x54\x22\x64\x4a\x92\xb6\x70\x1a\xd4\xd6\xdd\x11\x8e\x15\xb0\x2c\x53\x07\x49\x36\x9f\x14\x64\x1a\x19\x21\x30\x90\xf8\x9a\xf0\x1e\xb9\x3f\xbf\x2a\x91\x5b\x84\x97\x7f\x31\x23\x60\x32\x07\x43\x4a\x23\x70\x02\x2e\x43\x56\x04\xc8\x84\x51\xc0\xf2\x9c\xcb\x02\x18\x18\x2f\x0a\xb2\x56\x55\x00\x22\xe5\x18\xc5\xd9\x36\x7d\x81\x58\x59\xdc\x3d\x97\x39\x50\xc9\x08\xc8\x2a\xcc\x15\x1a\x90\xca\x96\x3c\x32\xc1\x73\x4b\xd8\xa6\xe3\x37\x6e\xc8\x16\x88\xa9\x46\x6c\x36\x2a\xcd\x60\x54\x3f\x1d\xc2\x49\x1d\x40\x22\xe6\x96\x0a\x72\x2a\x51\x43\x8e\x02\x03\x72\x0c\xa8\xd1\xa8\x83\xce\xd0\x22\x2a\x7b\x79\x54\x3b\xb4\x4e\xc3\x0e\x4f\xa1\xbd\x31\x76\xaf\x17\x75\xa4\x5f\x1d\x5e\x04\xcf\x16\x78\x32\x13\xf8\xdb\x8f\xd3\x68\x81\xa7\x25\x37\x34\x97\xa4\x4f\xff\x0c\xe0\xad\x07\x00\x50\x69\xac\x98\xc6\xbe\xe1\x85\x44\x3d\x81\xe9\x81\xca\xa9\x47\xb4\x21\x2e\xc6\xfe\xc6\x63\x98\xf9\x9e\x9d\x39\xe8\xba\xc3\xf2\x1c\x7c\x49\xc7\xae\xc9\x12\x48\x36\x36\x00\xc2\x43\x0c\xdf\xaf\xd8\xc9\x56\xf4\x95\x07\x4d\xce\x56\x69\x0b\x62\x1b\xd2\xaa\x08\x6c\xeb\x5f\x8b\x39\xb2\xf5\x46\x2c\xcf\x5b\xc9\x13\x9b\x3e\x6a\x2e\x87\x50\x32\x53\x4e\x45\xa1\x34\xa7\x72\xef\x9f\x26\xb7\x86\xf0\x8a\xbc\x28\xc9\x3f\xf2\xff\xb7\x7c\xde\x13\x13\xbe\x20\xb5\xad\xfa\x8d\x49\x56\xa0\x86\x19\xab\xd8\x0b\x17\x9c\x4e\x75\x5f\x2e\xc6\x3e\x76\x84\xa2\xdc\x28\xf5\x21\x58\x91\x28\x1d\x15\x48\x6d\xcc\xfd\xcf\xc9\x59\x89\x2e\x02\xdc\xa7\x7e\x92\xfd\x9d\xe8\x67\xcd\x8f\x8c\xf0\x99\x51\x39\x48\x54\xfe\x61\x7c\x9f\xf7\x41\x60\xd6\xb2\x3c\x3f\xbc\xd1\xcc\x5e\x8a\x0c\xb3\x7c\x7f\x97\x32\xf1\x00\x51\x66\xca\xda\x5b\x37\xcd\x73\x8d\xc6\xd4\x03\x62\x7b\x6c\xaf\x87\x49\x68\x6c\xe5\xe4\x8a\xb1\x4d\x42\xaa\x71\xcd\x8e\xd7\x4f\x5d\xc7\xaa\x70\x83\xde\x48\x0f\xd3\x9e\x5d\x56\x89\x66\xd3\xb0\x23\xa6\xd2\xee\xef\x22\x5f\xce\xa5\x4c\xae\x6e\xc2\x35\x29\xcd\x0a\xd7\xa8\x61\x97\x9c\xa8\xa6\xe0\x72\x77\x36\x26\x11\xd0\x5b\xc7\x44\x84\xcc\x27\xb9\x55\xef\xdf\x9f\x9f\x28\xfa\xd9\x79\x90\x92\x72\x4a\x98\x2e\x90\x6e\x52\x13\x8b\xe9\xd8\x35\x95\x1f\xd0\xd6\x66\x8e\xc6\x2d\x08\xdb\x1b\xe7\x24\x94\x61\xff\xca\x1c\x0e\x32\x1c\xba\x23\x3b\x88\xf4\xc8\xf9\x07\xa1\xc9\x0f\xb7\xfb\xf5\xa9\x3f\x0e\x1c\xc6\xdb\xfa\x35\x1c\x9a\xf7\x11\x99\x83\x9f\x12\x36\x0d\x54\x17\x95\xe6\x75\x3f\xfa\xd3\xca\xe8\x62\xe0\x1e\xb4\x04\xc6\xc6\x57\x3a\x0b\x88\x8a\x76\x58\xeb\x4f\x6f\xf8\x00\x80\xe8\x0b\xc0\x3a\x59\x1d\x28\xbc\x6b\x03\x74\x03\xc0\xb7\x89\x97\xa3\xac\xc4\x6c\xd7\x1f\x5c\xdf\xcf\xee\x0c\xdc\xdf\x75\x7e\x6d\x84\x45\x70\x71\xbf\x5f\x77\xd2\xe9\x98\xb4\x7e\x0d\xe3\xb5\x32\x49\x98\x0c\x86\xee\x04\x75\xd7\xb9\xb8\x13\xf7\xa6\xdd\xf4\x80\xc2\xe0\x8f\x91\x22\xb9\xf8\x3f\x14\x74\x1d\xa2\x66\x59\xd9\xf9\xaa\x17\xdb\xe5\x47\xd2\xf5\x65\x72\x23\xa3\xb7\x1b\xe3\xfc\xda\x38\x5f\x35\x1f\x4a\xbe\xbe\x73\x3e\xee\x5e\xb4\x82\xbc\x85\xef\xff\x05\x00\x00\xff\xff\xcf\xca\x4a\x4a\x86\x0b\x00\x00" func stakingcollectionCreate_new_tokenholder_acctCdcBytes() ([]byte, error) { return bindataRead( @@ -5320,11 +5300,11 @@ func stakingcollectionCreate_new_tokenholder_acctCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/create_new_tokenholder_acct.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xef, 0xf3, 0xe8, 0xc5, 0x56, 0xc1, 0x18, 0x8f, 0xbe, 0xfd, 0x7b, 0xd1, 0x27, 0x19, 0xc8, 0x43, 0xae, 0x40, 0x33, 0x7e, 0x5e, 0xc0, 0x12, 0x42, 0x93, 0xe2, 0x91, 0xa7, 0xa, 0xc7, 0x40, 0x5f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4a, 0x6f, 0x86, 0x43, 0x9d, 0xd1, 0x12, 0x9a, 0x67, 0xc7, 0xb5, 0xa4, 0x61, 0xe7, 0xd2, 0x2d, 0xd0, 0xeb, 0x97, 0x91, 0x68, 0xc2, 0xff, 0x73, 0x7e, 0x83, 0xb3, 0x4b, 0x5c, 0x10, 0x33, 0x7f}} return a, nil } -var _stakingcollectionDeploy_collection_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8e\xb1\x6a\xc4\x30\x10\x44\x7b\x7d\xc5\x54\x41\x86\x60\xf7\xd7\x1d\x49\x91\x2a\x4d\xc8\x07\x2c\xda\xe5\xce\xd8\x5e\x19\x69\x0f\x12\xc2\xfd\x7b\xd0\x26\x32\xa7\x62\x85\x46\x33\xf3\x76\x9a\xf0\x2a\xfb\x9a\xbf\x2b\x08\x29\xab\x15\x4a\x06\xcb\x20\x05\xa5\x94\x6f\x6a\x61\x9a\xf0\x59\x85\x9b\xca\xee\x85\x5d\x05\xd5\x68\x99\xf5\x82\x94\xd7\x55\x92\xcd\x59\x9b\xc1\x7f\x68\x93\x1e\x06\x55\xd7\xd6\x9c\x16\xaf\x58\x44\xeb\x01\x0a\xc1\x0a\x69\x25\x8f\xc7\xae\xbe\xd3\x26\x27\x7c\x58\x99\xf5\xf2\x8c\x94\xf9\x78\x0d\xf8\x09\x00\xe0\x63\x2f\xb2\x53\x91\x48\xbc\xcd\x7a\x02\xdd\xec\x1a\xcf\xcc\x2f\xff\x2d\x03\x9e\xce\x7f\x3b\xf4\x54\x3b\x6e\x1e\x3b\xa9\x8e\xc4\x1c\xd5\x79\x8f\xf4\x4e\x6d\x73\x64\x69\xd7\x9b\x7c\xc5\x61\xf0\x9e\x7b\xb8\x87\xdf\x00\x00\x00\xff\xff\x97\xdc\x67\x42\x38\x01\x00\x00" +var _stakingcollectionDeploy_collection_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8d\xb1\x6a\xc4\x40\x0c\x44\xfb\xfd\x8a\x29\x6d\x08\x76\x7f\xdd\x41\x8a\x54\x69\x42\x3e\x40\x68\xc5\x9d\xb1\x2d\x99\x5d\x1d\x24\x84\xfb\xf7\xb0\x0a\x6b\xb2\x85\x16\x8d\x66\xe6\xcd\x33\x5e\xe5\xd8\xec\xbb\x82\xc0\xa6\x5e\x88\x1d\x6e\x20\x05\x31\xdb\x43\x3d\xcd\x33\x3e\xab\xe4\xa6\xe6\xf0\xc2\xef\x82\xea\xb4\x2e\x7a\x03\xdb\xb6\x09\xfb\x62\xda\x0c\x71\xa1\x5d\x7a\x18\x54\x43\xdb\x8c\xd7\xa8\x58\x45\xeb\x09\x4a\xc9\x0b\x69\xa5\x88\x0f\x5d\x7d\xa7\x5d\x2e\xf8\xf0\xb2\xe8\xed\x05\x6c\xf9\xdc\x46\xfc\x24\x00\x88\x71\x14\x39\xa8\xc8\x40\x79\x5f\xf4\x82\xeb\xc3\xef\xd7\x3f\x68\xb7\xb5\x17\xd7\xa9\x57\xd7\x89\x72\x1e\x34\x00\xff\x71\x1d\xd3\xe6\x94\xa5\x7d\x6f\xf2\x35\x8c\x63\xf4\x3c\xd3\x33\xfd\x06\x00\x00\xff\xff\xa7\x5f\x56\xfd\x29\x01\x00\x00" func stakingcollectionDeploy_collection_contractCdcBytes() ([]byte, error) { return bindataRead( @@ -5340,11 +5320,11 @@ func stakingcollectionDeploy_collection_contractCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/deploy_collection_contract.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0x65, 0xef, 0x78, 0xd5, 0x3e, 0x89, 0x71, 0xda, 0x8b, 0xc, 0x78, 0x34, 0x3c, 0x6e, 0xb9, 0x9, 0xa0, 0x2b, 0x75, 0x35, 0xbf, 0x9f, 0x65, 0xdd, 0xa, 0x3e, 0x8b, 0x30, 0xd, 0x4b, 0x10}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbd, 0x3e, 0xf2, 0xcf, 0xfd, 0x65, 0x3, 0xfc, 0xc1, 0x73, 0xff, 0x84, 0x1f, 0xad, 0xc6, 0xe3, 0x57, 0x8d, 0x57, 0x22, 0x89, 0xc2, 0x14, 0x62, 0x4d, 0x1f, 0x9d, 0xae, 0xb6, 0x6b, 0xe4, 0x55}} return a, nil } -var _stakingcollectionRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x31\x8f\xd4\x40\x0c\x85\xfb\xfc\x8a\xa7\x2d\x8e\x44\x42\xd9\x06\x51\x44\xc0\x09\xee\x74\x12\x15\xe8\x56\xd0\x9b\x89\x93\x1d\xdd\x64\x1c\x79\x1c\xed\x21\x74\xff\x1d\x25\x93\x65\x8b\x4d\x41\x73\x53\x24\x51\x6c\x3f\x3f\x7b\x3e\x3f\x8c\xa2\x86\x87\x20\xa7\x83\xd1\x93\x8f\xfd\x9d\x84\xc0\xce\xbc\x44\x74\x2a\x03\x76\x9b\xb1\x5d\x51\xec\xf7\x7b\x3c\x72\xef\x93\xb1\x26\x10\x5a\x0e\xdc\x93\x89\xc2\x47\xd8\x91\x91\x72\x11\xdc\x45\x51\x39\xc9\xa4\x8e\x97\xe2\x4e\x34\xe7\x8d\xec\x7c\xe7\xb9\x45\x94\x96\xbf\xde\x83\x62\xbb\x04\x68\x90\x29\x1a\xa4\x83\xc9\x13\xc7\x04\x13\x38\x19\x06\x6f\x45\x61\x4a\x31\xd1\xa2\x5a\xfa\xb6\xc1\xc1\xd4\xc7\xfe\xed\x5a\xd3\xe0\xc7\x83\x7f\x7e\xff\xae\xc2\x9f\x02\x00\x96\x47\x60\x3b\x7b\xba\x0c\xf2\xc8\x5d\x03\x9a\xec\x58\x6e\xce\x59\x5f\x3e\xbf\x9d\x22\x6b\x85\x9b\xed\xbc\xab\x3f\xc5\xd2\x73\x54\x1e\x49\xb9\x24\xe7\xb2\xaf\xa5\xd5\x17\x51\x95\xd3\x4f\x0a\x13\x57\xb8\xf9\x9c\x63\x67\xaf\xf3\x49\x1c\xba\x7a\xcb\x2b\x3e\x62\x95\xaa\x93\x89\x52\xcf\xf5\xaf\x45\xec\xc3\x6b\xcc\xf0\xa9\x9c\x11\x68\xb6\xf1\xb8\x4e\x3f\x64\x47\xdf\xc9\x8e\xd5\xbf\x51\xe6\x73\x7b\x8b\x91\xa2\x77\xe5\xee\x4e\xa6\x30\xdf\xb3\x21\xdb\x06\x41\xb9\x63\xe5\xe8\x78\xbe\x5e\xc2\x35\x86\x2b\x4e\xa3\xfa\x81\xf4\x37\xa6\xc4\xfa\x26\x9d\xd7\xb0\xcb\x9d\x5e\xf2\xba\xf9\x99\xdd\x64\xfc\x3f\x9b\xac\x75\x65\xf7\xfe\xcc\x6d\x99\xf1\x6b\xe0\xdb\x0b\x47\xf9\x5d\x65\xb1\xb5\xd5\x4b\xf1\x37\x00\x00\xff\xff\x50\xb7\x12\x6d\x37\x03\x00\x00" +var _stakingcollectionRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\x82\x40\x10\xbd\xf3\x15\x13\x0f\x0d\x26\x0d\xf6\xd0\xf4\x40\xda\x1a\x02\xda\x98\x1a\x6d\xc4\x7e\xc0\x76\x19\x70\x23\xec\x90\x61\x88\x26\x8d\xff\xde\xc0\x62\x3d\xe8\xc1\x3d\x40\x60\x67\xde\x7b\xf3\xde\x98\xaa\x26\x16\x98\x97\x74\x48\x45\xed\x8d\x2d\x62\x2a\x4b\xd4\x62\xc8\x42\xce\x54\xc1\xd3\x31\xdd\x46\x9f\x8b\xd5\x47\xbc\x5e\x2e\x67\xf1\x76\xb1\x5e\x45\x49\xb2\x99\xa5\xa9\xe7\x4d\x26\x13\xd8\x60\x61\x1a\x41\x6e\x40\x41\x86\x25\x16\x4a\x88\xc1\x58\x90\x1d\x42\xe3\x30\x41\x5f\x40\x19\x1b\x6a\x59\x63\xdf\x9c\x13\xbb\xba\x1a\xb5\xc9\x0d\x66\x60\x29\xc3\x45\x02\xca\x66\xfd\x85\xaa\xa8\xb5\x02\x94\x83\xd0\x1e\x6d\x03\x42\xa0\xa9\xaa\x8c\x78\x9e\xb0\xb2\x8d\xea\x51\x7d\x93\x85\x90\x0a\x1b\x5b\x3c\x0e\x3d\x21\x7c\xcf\xcd\xf1\xe5\x79\x0c\xbf\x1e\x00\x40\xff\x28\x51\xce\x9a\x2e\x73\x6e\x30\x0f\xe1\xe1\xa6\x05\xc1\xd5\x1f\xaf\xc7\xa9\x19\x6b\xc5\xe8\x2b\xad\x1d\x57\xd4\xca\x2e\x72\x1f\x67\xc2\xee\x34\x58\xe6\xc1\x2d\x42\x78\x83\xa1\x37\xf8\x21\x66\x3a\xbc\xde\x2b\xe0\xdd\xef\x62\x09\x6f\x47\x76\x5d\x9e\x0a\xb1\x2a\xf0\x4b\xc9\x6e\xfc\x2f\xab\x3b\xd3\x29\xd4\xca\x1a\xed\x8f\x62\x6a\xcb\xce\x78\x01\x27\x05\x18\x3b\xbb\xe1\x0a\x6b\xe4\x10\x4e\xce\x03\x3c\xa2\x6e\x05\xef\x99\x36\xe0\x61\x49\x92\xf3\x82\xf8\x2e\xe7\x10\x4c\x76\x09\xcc\xbd\xc7\x0e\x6c\xa0\x3a\x79\x7f\x01\x00\x00\xff\xff\xdd\x5f\xdf\x77\xa3\x02\x00\x00" func stakingcollectionRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -5360,11 +5340,11 @@ func stakingcollectionRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x24, 0xb5, 0x3c, 0x3f, 0x4c, 0x1c, 0x87, 0xd4, 0xd0, 0xf5, 0x99, 0x13, 0x52, 0x85, 0x4e, 0xe2, 0x34, 0xbe, 0xc5, 0x5b, 0xb0, 0xd5, 0x7, 0xb7, 0x78, 0x4c, 0x27, 0xcd, 0x8a, 0xf5, 0x38, 0xf6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x61, 0x18, 0x59, 0x73, 0x8c, 0xe4, 0x18, 0x5c, 0xc3, 0x6a, 0x63, 0xba, 0xf1, 0x3a, 0x2f, 0x4c, 0x28, 0x93, 0x6e, 0x5a, 0x61, 0x2f, 0xfc, 0x43, 0xe1, 0x29, 0x1a, 0xec, 0xc8, 0xdf, 0x45, 0x55}} return a, nil } -var _stakingcollectionRegister_multiple_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x6b\xdc\x30\x10\xc5\xef\xfe\x14\x8f\x3d\x04\x2f\x2d\xde\x16\x4a\x0f\xa6\x69\x68\x13\x02\x3d\xb5\x64\x69\x2f\x61\x0f\xaa\x3c\xf6\x0e\x91\x25\x33\x1a\x77\x03\x65\xbf\x7b\x91\xff\xec\xa6\xac\xe9\xad\x3a\x18\x33\x1a\x3d\xbd\x37\xfa\x71\xdb\x05\x51\xdc\xbb\x70\xd8\xaa\x79\x62\xdf\xdc\x06\xe7\xc8\x2a\x07\x8f\x5a\x42\x8b\xd5\xe2\xde\x2a\xcb\x36\x9b\x0d\x1e\xa8\xe1\xa8\x24\x11\x6d\xef\x94\x3b\x47\xa8\xc8\x51\x63\x34\x48\x04\x7b\xe8\x9e\x10\xc7\xc3\xb0\x67\x65\xa1\x18\x7a\xb1\x34\x88\xd4\x41\xc6\xbe\x8e\x2c\xd7\x4c\x15\x7c\xa8\xe8\xcb\x5d\x84\xf1\x15\x4c\x1b\x7a\xaf\x08\x35\x34\x3c\x91\x8f\xd0\x00\x1b\xda\x96\x35\xcb\x54\x8c\x8f\x66\x90\xcc\xb9\x8a\x25\x1e\xb7\x2a\xec\x9b\xdd\xeb\xe9\x58\x2a\x7d\xbf\xe7\xe7\xf7\xef\x76\x6b\xfc\xce\x00\x60\xf8\x38\xd2\xd9\xd6\x39\xd3\x03\xd5\x25\x4c\xaf\xfb\x7c\x31\x72\x71\xfe\xfd\x7a\xf0\x24\x6b\x5c\x2d\xf7\x5d\x54\xb2\xe1\xce\x4e\xa8\x33\x42\xb9\xb1\x36\x59\x9b\xae\xfa\x1c\x44\xc2\xe1\x87\x71\x3d\xad\x71\xf5\x69\xdc\x9b\xbd\xa6\x15\xc9\xd5\xc5\x92\x57\x5c\x63\x92\x2a\xa2\x06\x31\x0d\x15\x3f\x07\xb1\x0f\xff\x23\xc3\xc7\x3c\xd1\x50\x2e\x93\x72\xd9\xbe\x1d\x1d\x7d\x33\xba\x5f\x9f\xa2\xa4\x75\x73\x83\xce\x78\xb6\xf9\xea\x36\xf4\x2e\x3d\xb5\x62\xb4\x0d\xa1\xf4\xc6\xb8\x64\x6d\x54\x38\x8e\x63\xa4\x67\xb2\xbd\xd2\x8b\x09\xfd\x32\x02\xc6\x35\xde\x9c\x2a\x89\x28\xae\x12\x7f\x5c\xc5\x17\x9d\xff\x9c\x67\x21\x13\xcc\x77\x33\xc1\xf9\xc8\x61\x09\xae\x66\xa0\xca\x19\xac\x47\xde\xad\x07\x9c\xfe\x12\x4f\x36\x18\xaf\xf0\xf6\x54\x3d\x4e\xde\x8f\xd9\x9f\x00\x00\x00\xff\xff\x02\xdc\x8f\x76\x6b\x03\x00\x00" +var _stakingcollectionRegister_multiple_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x6b\xdb\x4e\x10\xc5\xef\xfa\x14\x8f\x1c\xfe\xc8\xfc\x8b\x9d\x42\xe9\x41\x34\x0d\xc6\x4e\x8a\x69\x48\x8a\x95\x9e\x82\x0f\x5b\x69\x24\x0f\x59\xed\x88\xdd\x51\x63\x28\xfe\xee\x65\x25\xcb\x49\xb1\x29\xdd\x83\x40\xc3\xec\x6f\xde\xbe\x37\xdc\xb4\xe2\x15\xb7\x56\x5e\x72\x35\xcf\xec\xea\x85\x58\x4b\x85\xb2\x38\x54\x5e\x1a\x5c\xee\xf2\xc7\xf9\xd7\xd5\xfd\x97\xc5\xc3\xdd\xdd\xcd\xe2\x71\xf5\x70\x3f\x5f\x2e\xd7\x37\x79\x9e\x24\xb3\xd9\x0c\x6b\xaa\x39\x28\xf9\x80\xa6\xb3\xca\xad\x25\x94\x64\xa9\x36\x2a\x3e\x80\x1d\x74\x4b\x08\x03\x1b\xc5\x2b\xdc\x53\x90\xce\x17\xd4\x43\x2a\xf1\x43\x5f\x4b\x05\x57\x4c\x25\x9c\x94\xb4\x5a\x06\x18\x57\xc2\x34\xd2\x39\x85\x54\x50\x79\x26\x17\xa0\x82\x42\x9a\x86\x35\x49\xd4\x1b\x17\x4c\x8f\x4c\xb9\x0c\x19\x9e\x72\xf5\xec\xea\xcd\xbb\xc3\xb5\x58\xfa\x7e\xcb\xbb\x8f\x1f\x36\x13\xfc\x4a\x00\xa0\xff\x58\xd2\x51\xd6\xeb\x93\xd7\x54\x65\xf8\xef\xac\x1b\xd3\x93\x4a\xd2\x73\x5a\x4f\xad\xf1\x94\x9a\xa2\x88\xe3\x32\xcc\x3b\xdd\xce\x87\x9f\x71\x60\x3c\x81\x6c\x35\x3d\x37\x10\x57\x38\xdc\x9d\xfe\x10\xef\xe5\xe5\xd3\xbf\x0a\xf8\x9c\xc6\x84\xb2\xf3\xe9\x9d\xb6\xe7\x2a\xde\xd4\xf4\xcd\xe8\x76\x72\x94\x15\xcf\xf5\x35\x5a\xe3\xb8\x48\x2f\x16\xd2\xd9\xe8\xbd\x62\x90\x02\x4f\xd1\x74\x9c\xb0\x2e\x06\xc2\x7e\xf0\x80\x76\x54\x74\x4a\x6f\x5e\xfb\xd3\x78\x30\xae\x70\x79\xac\xc4\x88\xb9\x8c\x0b\xc1\x65\x78\xd3\xf9\x57\x6f\xa6\xfe\xb0\x5d\xcb\x71\xa5\xd2\x61\x31\x32\x70\x39\x26\x9c\x8d\x49\x3f\xf1\x66\xd2\xe7\xfb\x07\x3c\xca\x60\xfc\x8f\xf7\xc7\xea\xfe\xa0\x7d\x9f\xfc\x0e\x00\x00\xff\xff\x07\x6b\xf3\x42\xff\x02\x00\x00" func stakingcollectionRegister_multiple_delegatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -5380,11 +5360,11 @@ func stakingcollectionRegister_multiple_delegatorsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_multiple_delegators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x55, 0xaf, 0x3d, 0x1, 0xae, 0xfd, 0xe5, 0x9b, 0xc1, 0x4a, 0xad, 0x60, 0x30, 0x97, 0x5b, 0xd3, 0xfd, 0xb2, 0x73, 0x19, 0xdf, 0x4b, 0x61, 0x5e, 0xa7, 0x53, 0x2c, 0x3a, 0xd1, 0xce, 0xe5, 0xb4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0x31, 0xb5, 0x31, 0x72, 0x2e, 0x40, 0x1a, 0xe0, 0xb2, 0x95, 0xdc, 0x95, 0xd2, 0xb2, 0xa6, 0xa4, 0x49, 0x7a, 0x4d, 0x6a, 0xfb, 0x84, 0x73, 0x52, 0x39, 0x78, 0xa8, 0xe1, 0x99, 0x65, 0x2e}} return a, nil } -var _stakingcollectionRegister_multiple_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x4d\x6f\xd3\x40\x10\xbd\xfb\x57\x0c\x39\x54\xb6\x88\xdc\x22\x21\x84\x2c\x42\x55\x2a\x2a\xa1\x22\x40\xad\xe0\x12\xe5\xb0\xb5\xc7\xf6\xa8\xeb\x5d\x6b\x76\xdd\x60\xda\xfe\x77\xb4\x5e\xe7\xc3\xb1\x43\x4f\xf8\x10\xd9\x33\x6f\xde\xbe\x9d\x99\x17\xaa\x6a\xcd\x16\x2e\xb9\xad\xad\x0e\xfa\xaf\x2b\xa9\xd7\xb7\x56\xdc\x93\x2a\x2e\xb5\x94\x98\x5a\xd2\x0a\x72\xd6\x15\xcc\x26\x73\xb3\x20\x38\x3d\x3d\x85\x1b\x2c\xc8\x58\x64\x03\x55\x23\x2d\xd5\x12\x41\xe9\x0c\x0d\x90\x02\x5b\x22\x18\x5f\x07\xe9\x8e\x94\xd1\xe8\x86\x53\xec\xea\x73\xcd\x1e\x57\x63\x4a\x39\x61\xd6\x95\x03\xa9\x5c\x73\x25\x1c\x3e\x08\x2c\x0b\x65\x44\x57\x1c\x52\x66\x12\x58\xde\x5a\x26\x55\xac\xe6\x01\xec\x3d\xac\x25\xba\xe4\xcf\x2f\xca\xbe\x3f\xc8\x29\xb4\x6b\xcd\x4e\xc9\x45\x96\x31\x1a\x83\x47\x69\x76\xd0\x6b\x6c\x8f\xa2\xfa\x7b\xfd\x0b\x22\x2a\xdd\x28\xdb\x29\xba\xa2\xdf\xef\xde\x1e\xa4\xeb\xe6\x4e\x52\xda\x13\x2c\xfd\x34\xe2\x6b\x6c\xbf\x92\xb1\x9f\x95\xe5\x76\x75\xbe\x8a\xe0\xb1\xab\xe9\x7e\x24\xda\xcd\xb1\xbb\x31\xdc\x60\x9e\x80\x68\x6c\x19\x4e\x4e\x29\xde\xbd\x7e\x5f\x2b\xe4\x08\x4e\xa6\x71\xa3\x48\xd0\x9d\x59\x33\xd6\x82\x31\x14\x69\xea\x2e\xd3\x1f\xf5\x49\x33\xeb\xf5\x2f\x21\x1b\x8c\xe0\xe4\xc2\xe7\x36\x5a\xbb\xee\xa0\xcc\xe3\x29\xad\xb0\x80\x9e\x2a\x36\x56\xb3\x28\x30\xbe\xeb\xc8\x3e\xfc\x8f\x3b\x7c\x0c\xdd\x02\x27\xd3\xcb\x3d\x86\xdf\x7a\x45\x3f\x84\x2d\xa3\xc1\xa8\xce\xcf\xa1\x16\x8a\xd2\x70\x76\xa9\x1b\xe9\x56\xd4\x82\x97\x0d\x8c\x39\x58\x0d\x63\x7b\x44\xc1\x96\xe2\x41\x30\x10\x2c\xe0\x6c\x17\x72\x6b\x4f\x99\x33\x09\x65\x66\xaf\x71\xee\xa1\xbc\x1b\x75\x25\xd2\x92\x14\xf6\xdd\x85\xc5\xf1\xa6\xc6\xdc\x9b\xf0\x9b\xce\x30\x1c\x70\x75\x7c\x59\x02\x94\xcd\x47\x71\xe7\x97\xc4\xbb\x66\x49\xab\x71\x7e\xe4\x99\x64\xca\x46\x2f\x94\x5e\x63\x9b\x1c\x58\x6a\xb2\x62\xe7\xa7\x64\xdf\x5b\x93\x58\x6f\xac\x64\x63\xb0\x49\x4c\x2d\x5a\xe4\x64\xb3\x6c\x11\x0c\x00\x8f\xe3\x1e\xe5\x7b\x7e\x5c\xd2\x0a\x16\x0b\x50\x24\xe1\xe9\x69\x18\x7f\x15\x4b\x54\x85\x2d\x5d\xfe\x6c\x82\xc7\x1f\xed\x57\x45\x28\xb7\x27\x35\xeb\x07\xca\x10\xfe\x20\x6b\xb8\xc7\xd6\x6c\xff\xf2\xfa\x01\x6f\x34\xce\xa2\x11\xdb\xf3\x28\xe2\x6a\xef\xb1\x75\x8b\x33\xd4\x75\x44\xcb\x70\x89\x62\x77\x7e\x2c\xb2\x2c\xdc\x16\x27\x8e\x2e\xde\x7e\xce\xa1\x14\xa6\xbc\x90\x85\x66\xb2\x65\xe5\xb3\x83\xd0\x1c\xd6\x48\x45\x69\x7d\xca\xbf\xbf\xa4\x7c\xf8\xe5\xac\x40\xf0\x1a\xde\x04\xc3\xfc\x73\xf0\x1c\xfc\x0d\x00\x00\xff\xff\x27\x86\x76\xa0\x9c\x06\x00\x00" +var _stakingcollectionRegister_multiple_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\x5d\x4f\xdb\x30\x14\x86\xef\xf3\x2b\xce\xb8\x98\x5a\xad\x0a\x4c\x9a\xa6\x29\x5a\x87\xaa\x02\x13\x2a\x82\x89\xb2\xab\xaa\x17\x26\x3e\x49\x8e\x70\xec\xe8\xd8\xa5\x64\xc0\x7f\x9f\x9c\xa4\x1f\x21\xe9\x58\x2e\xaa\xfa\x7c\xbc\x7e\x73\xfc\x38\x94\x17\x86\x1d\x4c\xb9\x2c\x9c\x09\x9a\xd5\x85\x32\xeb\xb9\x13\x0f\xa4\xd3\xa9\x51\x0a\x63\x47\x46\x43\xc2\x26\x87\x93\xa7\xf9\xdd\x64\x76\x79\xfd\x73\x7a\x73\x75\x75\x3e\xbd\xbb\xbc\xb9\x9e\x9c\x9d\xdd\x9e\xcf\xe7\x41\x70\x7c\x7c\x0c\xb7\x98\x92\x75\xc8\x16\xf2\x95\x72\x54\x28\x04\x6d\x24\x5a\x20\x0d\x2e\x43\xb0\xb5\x2c\xc4\x3b\x5d\x46\x6b\x56\x1c\x63\xd5\x9f\x18\xae\xeb\x0a\x8c\x29\x21\x94\x55\x3b\x90\x4e\x0c\xe7\xc2\xd7\x07\x81\x63\xa1\xad\xa8\x9a\x07\x24\x6d\x04\x8b\xb9\x63\xd2\xe9\x72\x14\xc0\xde\xc3\x46\xa1\x4f\xfe\xbe\xd4\xee\xdb\x9b\x9c\x46\xb7\x36\xec\x9d\x4c\xa4\x64\xb4\x16\x0f\xca\xec\x4a\x67\x58\x1e\xac\x6a\xde\xeb\x5f\x25\x22\x37\x2b\xed\x2a\x47\x17\xf4\xf4\xf5\xcb\x9b\x74\xb1\xba\x57\x14\x37\x02\x8b\xfa\x40\xc2\x19\x96\x57\x64\xdd\xb9\x76\x5c\x2e\x4f\x97\x43\x78\xae\x7a\xaa\x1f\x85\x6e\xb3\xed\xee\x94\x6e\x31\x89\xe0\x63\xef\x01\x86\x9d\x48\x50\xe9\x14\x8c\x85\x60\x1c\x88\x38\xf6\x06\x23\x98\xac\x5c\x36\xa9\x17\x9b\x0d\xab\x57\x44\x95\x84\x7d\x1b\xc2\x18\x9a\xde\xf0\xde\x30\x9b\xf5\xf7\xff\x35\xf0\x63\xe0\xa1\x8a\xfa\x81\xeb\x96\xcf\x9d\x61\x91\xe2\x2f\xe1\xb2\x61\x6b\x76\xa7\xa7\x50\x08\x4d\xf1\xe0\x68\x6a\x56\xca\x33\xe3\xa0\xb6\x02\x8c\x09\x38\x03\x1d\xad\xa3\x61\xb0\x95\x78\x14\x0c\x04\x63\x38\xd9\x85\x3c\x87\x24\x3d\xb5\x24\xed\xde\x10\xfc\x43\x49\x35\xfb\x5c\xc4\x19\x69\x6c\x26\x05\xe3\xc3\x03\x0a\xb9\xb9\x15\xd7\x46\xe2\xa0\xa5\x55\xe9\xc9\x08\x48\x8e\x3a\x71\x0f\x70\x54\x63\xbc\xa0\x65\x37\xdf\x81\x38\xea\xe3\xfa\x9d\xd6\x19\x96\xd1\x1b\xc6\x7b\x3b\x76\x80\x47\xfb\xb0\xf7\xd6\xd6\xa4\x47\x1b\xe2\x7b\x6b\x0a\x51\x22\x47\x1b\x70\x86\xd0\x2a\x78\xee\xce\x28\xd9\xbb\x20\x0b\x5a\xc2\x78\x0c\x9a\x14\xbc\xbc\xb4\xe3\x1f\x42\x85\x3a\x75\x99\xcf\x9f\xf4\xe8\xd4\x5b\xd7\xa8\x08\xed\x39\x29\xd8\x3c\x92\x44\xf8\x83\x6c\xe0\x01\x4b\xbb\xfd\x06\x35\x07\xbc\xf1\x78\x34\xec\xa8\xbd\x76\x22\xbe\xf7\x01\x4b\x0f\x4e\xdb\xd7\x01\x2f\x6d\x88\x42\xbf\x7f\x28\xa4\x1c\x6c\x9b\x23\x2f\x17\x6e\x97\x23\xc8\x84\xcd\x26\x2a\x35\x4c\x2e\xcb\xeb\x6c\x2b\x34\x82\x35\x52\x9a\xb9\x3a\x55\xff\x7f\xcf\x79\x7b\xe5\xaf\x02\xc1\x27\xf8\x1c\xb4\xf3\xaf\xc1\x6b\xf0\x37\x00\x00\xff\xff\x09\x34\xd7\xde\x30\x06\x00\x00" func stakingcollectionRegister_multiple_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -5400,11 +5380,11 @@ func stakingcollectionRegister_multiple_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_multiple_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0x96, 0x94, 0x8c, 0x6e, 0x12, 0x77, 0x29, 0x32, 0xd4, 0x1c, 0x47, 0x25, 0xdd, 0xdc, 0x25, 0xd1, 0x4c, 0x61, 0x97, 0x3e, 0xc1, 0x8e, 0xe8, 0xe7, 0x4b, 0x73, 0xea, 0xe7, 0xa, 0xfc, 0xd2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc1, 0x8b, 0xd4, 0xe0, 0x9f, 0x32, 0x52, 0xb9, 0xc9, 0x8, 0x23, 0x5, 0x79, 0x81, 0x7e, 0x42, 0xcd, 0x96, 0x39, 0x91, 0x58, 0x2c, 0xf3, 0x42, 0x51, 0x86, 0x4b, 0xb9, 0x33, 0xf4, 0xff, 0x3a}} return a, nil } -var _stakingcollectionRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x51\x6b\xe3\x48\x0c\x7e\xae\x7f\x85\xc8\x43\xcf\x86\xe0\xe6\xe0\x38\x0e\x73\xd9\xd2\x2d\x94\x2e\x85\xdd\xd2\xd0\x7d\x57\x3d\xb2\x3d\xd4\x1e\x19\xcd\xb8\x69\x58\xfa\xdf\x17\x7b\xec\x24\xde\x38\xe9\xf6\x61\xf3\xe0\xcc\x8c\x3e\x49\x9f\x46\xfa\x46\x57\x35\x8b\x83\x6b\xd9\xd4\x8e\x83\x7e\x77\x53\xf2\x7a\xe5\xf0\x59\x9b\xfc\x9a\xcb\x92\x52\xa7\xd9\x40\x26\x5c\xc1\x6c\xd2\x36\x0b\x82\x8b\x8b\x0b\x78\xa0\x5c\x5b\x47\x62\x01\x41\x51\x49\x39\x3a\x16\xd0\x06\x5c\x41\x60\xbd\x13\xa4\xbb\x88\x42\x96\x1b\x49\xa9\x73\xce\x58\x3c\xae\xa6\x54\x67\x9a\x14\x18\x56\x04\xda\x64\x2c\x15\x76\x78\x34\xaa\x83\x60\xc5\x8d\x71\xc0\x19\x38\x7e\x26\x63\xc1\x31\xa4\x5c\x55\xda\x05\x81\x13\x34\x16\xbb\xf8\xa1\x56\x09\xac\x9c\x68\x93\xcf\x03\xd8\xfb\x09\x97\x94\xc0\xe3\x17\xe3\xfe\x1b\x1b\x0c\xb9\x35\x4b\x4b\xf3\x4a\x29\x21\x6b\xa7\xfd\x77\xb0\x3b\xda\x4c\x43\xfa\x6a\x8f\xda\x7d\x09\x09\x3c\xde\xe8\xd7\x7f\xff\x19\xdb\x2a\x4c\x0b\x6d\xe8\x2a\x4d\x5b\xcc\x7e\x08\x38\x8d\x5b\xe9\xdc\xa0\x6b\x84\xae\xca\x9c\x45\xbb\xa2\x1a\xaa\x7c\xc7\xf1\x16\x6d\xf1\xab\x4f\x04\x3f\x82\xce\xab\x24\x37\x94\xb3\xeb\xf8\x03\x65\x09\x60\xe3\x8a\x70\x72\x20\xe2\xdd\xf2\xdb\xda\x90\x44\x70\x3e\x8d\x3b\x38\xf1\x39\x6b\xa1\x1a\x85\x42\xf4\x14\xfb\x54\x9f\x59\x84\xd7\xdf\xb1\x6c\x28\x82\xf3\x9e\x7e\xcb\x73\x7b\xeb\x54\x66\xf1\x14\x57\x58\x42\x1f\x2a\xb6\x8e\x05\x73\x8a\x9f\xba\x60\xff\xff\x89\x1a\x3e\x85\xad\x56\x92\x69\x1d\x1d\xc2\x57\x9e\xd1\x3d\xba\x22\x1a\xf5\xe9\xf2\x12\x6a\x34\x3a\x0d\x67\xd7\xdc\x94\xad\x20\x1c\x78\xda\x80\x20\x94\x91\x90\x49\xa9\x9d\x7e\x84\x43\xbd\xf6\xba\xab\x45\x57\x28\x1b\x68\x2c\xc9\x5f\x76\xb8\x86\x59\x14\x6c\x53\xe9\xac\xeb\xf1\x78\x2a\x60\x79\xfc\x36\x63\xe9\x85\xfe\x95\x15\x85\x23\xca\xad\xe4\xb4\x9a\x92\x5b\xfb\x7d\x57\x6d\x07\x47\x27\x85\x37\xda\x1e\xd7\xdf\x6e\x3d\xad\x41\xff\x3f\xb6\xd5\xb8\x21\x49\x86\xdb\xda\x9a\xf6\x87\x6d\xab\x0d\x9d\xb7\xda\x81\x25\x1c\xea\x2f\x14\xf4\xf3\x9a\xfc\x8e\x5a\xc7\xdd\x3f\x36\x01\x39\x39\xc0\x36\xab\xf7\x06\x1c\xdc\xfd\x0b\xdd\xf6\x5c\x70\x0d\x64\x9a\x0a\x5e\xda\xdc\x50\x0b\xbf\x68\x45\x6a\xbf\xe9\x03\xfb\xa2\x97\x3e\x2c\x61\xf4\x0a\x9c\x62\x3e\x02\x7e\x84\x74\x9b\xec\x63\x7c\xf7\xe3\x1e\x70\xaf\x9b\xa7\x52\xa7\x77\xb4\x81\x25\xdc\x0f\xeb\x30\x38\x3b\x3b\xeb\x5a\x38\x9c\x4c\x54\x10\x2b\x4a\x59\xd1\x2d\xbd\x86\xd1\x7c\x70\xb0\x13\xcf\x67\xdf\xdc\xc0\x23\xa2\x13\xcf\x68\xfc\x4c\x1b\x1b\xa3\x52\xe1\x5e\xe2\xed\x72\xbe\xbd\xe8\x3e\xf0\xb0\x9d\xc3\x9a\x74\x5e\xb8\x04\xfe\x5e\x2c\x16\xf1\x62\x97\xe2\x2d\xf0\xdf\xb7\xe0\x67\x00\x00\x00\xff\xff\x4b\x15\xb8\xc7\xa5\x07\x00\x00" +var _stakingcollectionRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x4f\xdb\x4e\x10\xbd\xfb\x53\xcc\x8f\xc3\x4f\x89\x84\x0c\x87\xaa\xaa\xac\xa6\x28\x0a\x50\xa1\x20\xa8\x08\x9c\xaa\x1e\x16\xef\xd8\x5e\x65\xbd\x63\x8d\x27\x0d\x2e\xe4\xbb\x57\xeb\xcd\x3f\x13\xa7\x6d\x0e\xce\xce\xce\xcc\x9b\x37\x7e\x4f\x36\x65\x45\x2c\x30\xe1\xa6\x12\x8a\xd6\xd1\xb5\xa5\xe5\x4c\xd4\xdc\xb8\x7c\x42\xd6\x62\x2a\x86\x1c\x64\x4c\x25\x9c\xbf\xcc\x1e\xc7\xd3\x9b\xbb\xaf\x93\xfb\xdb\xdb\xab\xc9\xe3\xcd\xfd\xdd\xf8\xf2\xf2\xe1\x6a\x36\x8b\xa2\xb3\xb3\x33\x78\xc0\xdc\xd4\x82\x5c\x83\x02\x8d\x16\x73\x25\xc4\x60\x1c\x48\x81\x50\x07\x4c\x48\x77\xa0\x8c\x35\x2d\x38\xc5\xb6\x39\x23\x0e\x75\x15\xa6\x26\x33\xa8\xc1\x91\x46\x30\x2e\x23\x2e\x55\x5b\xaf\x9c\x6e\x4b\x54\x49\x0b\x27\x40\x19\x08\xcd\xd1\xd5\x20\x04\x29\x95\xa5\x91\x28\x12\x56\xae\x56\x2d\xfe\xc0\xe8\x04\x66\xc2\xc6\xe5\xa7\x11\xec\xfd\x98\x2c\x26\xf0\x74\xe3\xe4\x53\x37\xe1\x50\x96\xc4\x9e\xe6\x58\x6b\xc6\xba\xee\xef\xdf\x95\x4d\xb1\xe9\x2f\x59\x6f\x7b\x34\x1f\x56\x48\xe0\xe9\xda\xbc\x7c\xfc\xd0\xcd\x55\x8b\x67\x6b\xd2\x29\x36\x75\x02\xdf\x83\x38\xf1\x14\x9b\x5b\x53\xcb\x95\x13\x6e\x7e\x5c\x0c\xe1\xb5\xed\x68\x1f\x16\x65\x33\x6e\x27\xd8\x03\x66\x09\xfc\xdf\xab\x65\x7c\x70\x13\xb5\x38\x15\x63\xa5\x18\x07\x2a\x4d\x03\xb7\xf1\x42\x8a\x71\x08\x36\x03\xdb\xd5\xd0\x66\x71\xdf\x40\x18\xc1\xba\x37\x7e\x26\x66\x5a\x7e\xfe\x57\x02\x5f\x06\xde\x5f\x49\xbf\xf7\x0e\xcb\x67\x42\xac\x72\xfc\xa6\xa4\x18\x76\xde\xdc\xc5\x05\x54\xca\x99\x74\x70\x32\xa1\x85\xf5\x0e\x12\x08\x54\x80\xd1\xbb\x05\x0e\xb0\x4e\x86\xd1\x16\xc2\x64\xed\xcb\x2c\x55\x5a\x18\x87\xeb\xd5\x61\x74\x7c\xe3\x98\xd7\x8e\xbf\x23\x8d\x83\x0e\x15\xef\x3d\xa3\xfb\x7c\xe7\x9f\x7f\xb5\xdd\xc1\xd5\x1f\x1d\xd8\x09\x8f\x1b\x71\x77\xee\x37\x63\xf8\x7f\x67\x46\xd5\x20\x27\x1b\x61\x87\xb0\x4d\xbe\x76\xd7\xcd\xf6\x6c\x0b\xa3\x11\x38\x63\xe1\xed\x6d\xef\xf2\xbf\xd8\xa2\xcb\xa5\xf0\xc9\xf3\x77\xdd\x61\x50\x10\x4e\x39\xaf\x5a\xc5\xf4\xd3\x68\x84\x5f\xc8\x04\x73\x8f\xb9\xf9\x3e\xac\xd5\xd9\x30\x3a\xe9\x3a\x60\xd5\x89\x7c\xcf\x1c\x1b\xff\x09\xda\x23\xd2\x33\xbc\x2b\x79\xec\x07\xc6\x4a\xeb\xc1\xb6\x2b\xf1\x38\xf1\x36\x3c\x85\x42\xd5\xc5\xd8\xe6\xc4\x46\x8a\x32\x64\x3b\x57\xa7\xb0\x44\x93\x17\x12\x52\xe1\x7c\x8c\x6a\x38\xad\xa2\x55\xf4\x3b\x00\x00\xff\xff\x67\xfb\x69\x9e\x92\x05\x00\x00" func stakingcollectionRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5420,11 +5400,11 @@ func stakingcollectionRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xcb, 0x54, 0x53, 0x1a, 0x9d, 0x3e, 0x32, 0x51, 0xe3, 0x52, 0x76, 0xf2, 0xee, 0xcd, 0xe3, 0xb, 0xab, 0xed, 0x51, 0x3d, 0xed, 0xa4, 0x99, 0x55, 0xe7, 0xfb, 0xec, 0x6c, 0x87, 0xf2, 0xbf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xae, 0x5, 0x7e, 0x2a, 0xe2, 0xbe, 0x17, 0x25, 0x72, 0xa9, 0x5, 0x40, 0x5, 0xe3, 0xe4, 0xf8, 0x12, 0xf2, 0xe1, 0xd6, 0x2f, 0x88, 0x6e, 0xb6, 0xcd, 0xf8, 0x53, 0xe7, 0x20, 0x35, 0xfc, 0x3}} return a, nil } -var _stakingcollectionRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x8f\xd3\x30\x10\x85\xef\xf9\x15\x4f\x39\x2c\x89\xb4\x4a\x25\x40\x1c\x22\xa0\x82\x45\x2b\xf5\x04\x6a\x55\xee\xc6\x9d\xa4\x16\x8e\x1d\xc6\x63\xb5\x08\xf5\xbf\xa3\xc4\x4d\x83\x68\x0e\x5c\xf0\x21\x8e\xed\xf1\xbc\x37\xe3\xcf\x74\xbd\x67\xc1\xb3\xf5\xa7\x9d\xa8\xef\xc6\xb5\x4f\xde\x5a\xd2\x62\xbc\x43\xc3\xbe\x43\xbe\x78\x96\x67\xd9\x6a\xb5\xc2\x96\x7e\x44\x0a\x12\x10\x5d\x48\x21\x68\x3c\x43\x8e\x84\xd0\x93\x36\x8d\xa1\x03\x9c\x3f\x10\x3c\xe3\x40\x96\x5a\x25\x9e\x61\x5c\x0a\xb9\x5e\xd1\xb7\xb4\x59\x26\xac\x5c\x50\xe3\xa2\x18\x2e\x6e\x3e\xd5\xd8\x09\x1b\xd7\x3e\xce\x09\x86\xcd\xfd\xc6\xc9\xab\x97\xeb\x47\xa8\xce\x47\x27\x35\xf6\xcf\xe6\xfc\xe6\x75\x89\x5f\x19\x00\x8c\x1f\x4b\x32\x89\xcc\xd6\xb7\xd4\xd4\x50\x51\x8e\xc5\x62\x65\xd5\xfc\xfb\xf9\xe4\x88\x4b\x3c\x2c\xc7\xdd\xed\x64\xa3\x66\xcf\xd4\x2b\xa6\x42\x69\x9d\x7c\x8d\x52\x1f\x3d\xb3\x3f\x7d\x55\x36\x52\x89\x87\x0f\xe9\x6c\xf2\x3a\x8c\x40\xb6\xa9\x96\xbc\xe2\x1d\xae\xa9\xaa\x20\x9e\x55\x4b\xd5\xb7\x31\xd9\xdb\xff\x51\xc3\xfb\x62\x78\xf4\x7a\x19\x88\xfb\xf0\x5d\x72\xf4\x45\xc9\xb1\xbc\x95\x32\x8c\xf5\x1a\xbd\x72\x46\x17\xf9\x93\x8f\x76\x60\x40\x90\x6c\x43\x81\xa9\x21\x26\xa7\x09\xe2\xa1\x70\x0f\xde\x95\x8f\x9e\x4d\xa7\xf8\x27\x62\x20\x7e\x11\xa6\x36\xe4\x49\xe9\x92\xda\x4d\x67\xd2\x51\xe8\x5f\x3a\x59\x71\xa2\x75\x3f\xb1\x7a\x03\x2c\xcd\x7f\x01\xf6\xc7\x62\x86\x2c\xcd\x93\x83\x4b\xf6\x3b\x00\x00\xff\xff\x6a\x87\x6b\x8d\x40\x03\x00\x00" +var _stakingcollectionRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\x51\x6b\xf2\x50\x0c\x7d\xef\xaf\x08\x3e\x7c\x54\x90\xfa\xb1\x8d\x3d\x94\x6d\x52\xaa\x8e\x32\xd1\x61\xf5\x07\xdc\xd5\xb4\x5e\x76\xbd\xe9\xd2\x14\x85\xe1\x7f\x1f\xf5\x5a\x1d\xd3\x07\xef\x43\x43\x42\x72\xce\x49\x4f\xf4\xa6\x24\x16\x18\x1b\xda\xa6\xa2\x3e\xb5\x2d\x62\x32\x06\x33\xd1\x64\x21\x67\xda\xc0\xff\x5d\xba\x88\xde\x92\xe9\x6b\x3c\x9b\x4c\x46\xf1\x22\x99\x4d\xa3\xe1\x70\x3e\x4a\x53\xcf\xeb\xf7\xfb\x30\xc7\xaf\x1a\x2b\xa9\xa0\xb6\x95\x43\x80\x9c\x18\x64\x8d\x50\x95\x98\xe9\x5c\xe3\x0a\x2c\xad\x10\x88\x61\x85\x06\x0b\x25\xc4\xa0\xad\x6b\x39\x8e\x64\x27\x56\xcf\x13\x56\xb6\x52\x87\xc4\x6f\x06\x93\x61\x08\xa9\xb0\xb6\x45\xef\x0c\xd0\x14\x97\x89\x95\xfb\xbb\x41\x0f\xd4\x86\x6a\x2b\x21\x2c\xc7\x7a\xf7\xf8\xd0\x85\x6f\x0f\x00\xe0\xf0\x31\x28\x2d\xc9\x79\xb3\x39\xe6\x21\xfc\xbb\xba\x74\x70\x51\xf1\x0e\x38\x25\x63\xa9\x18\x7d\x95\x65\x8e\x2b\xaa\x65\x1d\xb9\xa4\x25\x6c\x5e\x85\x26\x0f\xae\x11\xc2\x33\x1c\x67\x83\x0f\x62\xa6\xed\xd3\xad\x02\x5e\xfc\xc6\x88\xf0\xba\x49\x97\xed\xa9\x10\xab\x02\xdf\x95\xac\xbb\x27\x59\xcd\x1b\x0c\xa0\x54\x56\x67\x7e\x27\xa6\xda\x34\xa6\x08\x38\x29\xc0\x98\x83\x10\x5c\x60\x75\x1c\xc2\xde\xfd\x03\xdc\x61\x56\x0b\xde\xb2\x6d\xc0\xee\x2c\x96\xed\x51\x9c\x9c\x74\xf1\x8f\x93\xbf\x92\xb3\x9b\x2e\xb6\x0a\xf6\xde\x4f\x00\x00\x00\xff\xff\x78\x58\xc1\x42\xac\x02\x00\x00" func stakingcollectionRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -5440,11 +5420,11 @@ func stakingcollectionRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0x9, 0xd0, 0xec, 0x1c, 0x52, 0x7a, 0x4e, 0xdd, 0x2e, 0x32, 0x4e, 0x54, 0x32, 0x24, 0xf7, 0x13, 0x28, 0xda, 0x6, 0x1f, 0x13, 0x61, 0x82, 0x5c, 0x5, 0x93, 0xc9, 0xcd, 0x4c, 0xce, 0x85}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xef, 0xea, 0x1c, 0x7d, 0xa0, 0xfd, 0x94, 0xf6, 0x62, 0xff, 0xe2, 0x56, 0x30, 0xb4, 0x51, 0x60, 0x6f, 0x63, 0xec, 0x73, 0xb9, 0x24, 0x10, 0xba, 0xd2, 0x4e, 0xda, 0x1f, 0x16, 0xf4, 0xe2, 0xd}} return a, nil } -var _stakingcollectionRestake_all_stakersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x6f\xdb\x30\x0c\xbd\xeb\x57\x10\x39\x14\x36\x50\x38\xf7\x60\x59\xb1\x25\x18\xd0\x4b\x36\xb4\xc5\xee\xac\x4d\xa7\x46\x64\x31\x90\x68\x64\x40\x91\xff\x3e\xc8\x72\xfc\x11\x2b\xdb\x61\xab\x0f\x86\x20\x92\x8f\x8f\x8f\x4f\x55\x7d\x64\x2b\xf0\x4d\xf3\xe9\x59\xf0\x50\x99\xfd\x86\xb5\xa6\x5c\x2a\x36\x50\x5a\xae\x61\x11\x8d\x2d\xd4\xa8\xf2\x71\xfb\x82\xaf\x9a\xba\xa4\x51\xd9\x34\xb0\x50\x6a\xb9\x5c\xc2\x86\xeb\xba\x12\x07\x96\x4e\x68\x0b\x2a\x40\xf8\x40\xc6\x81\x30\x38\xc1\x03\x41\xc9\x16\x50\x6b\x30\x5c\x90\x03\x34\x05\x14\xa4\x69\x8f\xc2\xd6\x41\x65\x00\x21\xef\x79\x28\x25\x16\x8d\xc3\x40\xf8\x5d\x01\x00\xb4\x3f\x4d\xd2\xc2\x4d\x58\x3f\x51\xb9\x02\x6c\xe4\x2d\x89\x0e\x95\x0d\xc7\xef\x27\x43\x36\x85\xbb\x78\xde\xec\x46\xb5\x3d\x8f\x96\x8e\x68\x29\xc1\x3c\xe7\xc6\x48\xd7\xea\x2b\x5b\xcb\xa7\x9f\xa8\x1b\x4a\xe1\xee\x4b\x88\xa5\x1d\x57\xff\x39\xd2\x65\x16\xe3\x0a\x6b\xe8\xa0\x32\x27\x6c\x71\x4f\xd9\x6b\x0b\xf6\xe9\x23\x66\xf8\x9c\xf8\xc5\xad\xe2\x5e\x98\xa7\x3f\x07\x46\x3f\x50\xde\xd2\x7e\x14\xff\x3d\x3c\xc0\x11\x4d\x95\x27\x8b\x0d\x37\xba\x00\xc3\x02\x81\x36\x58\x2a\xfd\x9a\xe7\x6e\x0a\x08\xe7\x20\x23\xfd\xa2\xbc\x11\x1a\x29\xe4\x97\xe9\xdd\xf0\xb8\x75\xb0\xbe\xad\x57\xb6\x27\xd9\x85\xb4\x24\x55\x7d\xb5\xf7\x53\xa8\xf6\xee\xb9\xe0\xbc\x4f\x48\xf7\x1d\x4c\xc9\xb0\x8e\xb8\x3a\xdb\x75\xd1\x24\x00\xac\x3a\xa0\xe9\xec\xb7\xa9\xb5\xd6\x7e\xea\x2c\xff\xd2\x3a\xfe\x0a\xe9\x7e\xb0\x79\x7b\x59\xe9\x7b\xc0\x3a\x18\xe9\x42\x2d\x0b\x6f\xe5\x82\x33\x34\x3f\xab\x89\x58\xa3\x07\xf3\x17\xbd\xb6\x43\xcf\x99\x68\x3d\x8a\xd7\x6d\x04\x39\x97\x6e\x60\x7e\x53\xbf\xed\x38\xa5\x1f\xbd\x2f\xcc\xfa\xd3\x2e\xa6\x46\x24\xef\x5a\xfb\xff\xb0\x88\x7f\x62\x33\x6c\x6b\xa2\xc6\x1f\x56\x16\xfe\x67\xf5\x3b\x00\x00\xff\xff\xcb\xbd\x75\xfc\x85\x05\x00\x00" +var _stakingcollectionRestake_all_stakersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x52\x4d\x8f\x9b\x30\x10\xbd\xfb\x57\x8c\xf6\x50\x11\x69\x45\x7a\x8e\x9a\xae\x28\xa4\x15\x6a\xc4\x56\x81\x4b\x8f\x5e\x18\xb2\x28\xc6\x13\x19\xa3\xac\xb4\xca\x7f\xaf\x8c\xf9\x0c\xa4\xad\xd4\xfa\x60\x25\x66\xe6\xcd\x9b\xf7\x5e\x51\x9e\x49\x69\xf8\x2a\xe8\x12\x6b\x7e\x2a\xe4\xd1\x27\x21\x30\xd5\x05\x49\xc8\x15\x95\xf0\xf1\x2d\x4e\xbc\xef\x61\xf4\xcd\x7f\xde\xef\x77\x7e\x12\x3e\x47\x5e\x10\x1c\x76\x71\xcc\x46\xcd\x61\x90\xf0\x17\x81\x2d\x46\xd7\x19\x06\xbb\x28\x09\x93\x9f\x89\xf7\x65\xbf\xeb\xba\xd8\x7a\xbd\x06\x9f\xca\xb2\xd0\x15\x28\xbc\x70\x95\x61\x06\x9a\x4e\x28\x2b\xd0\x04\x95\xe6\x27\x84\x9c\x14\x70\x21\x40\x52\x86\x15\x70\x99\x41\x86\x02\x8f\x5c\x93\xaa\xa0\x90\xc0\x21\xed\x89\x32\xa6\x15\x97\x15\xb7\xac\xdf\x19\x00\x40\x73\x09\xd4\x0d\xdc\x64\xad\x03\xe6\x1b\xf8\xb0\xb8\xb1\x3b\x7b\x61\x0d\xce\x59\xe1\x99\x2b\x74\x78\x9a\x52\x2d\xf5\x06\xbc\x5a\xbf\x7a\xf6\xcf\xaa\x1d\x68\x4e\x85\x22\x77\x97\x06\xc2\x16\xda\x5e\xf7\x85\x94\xa2\xcb\xa7\xbf\x25\xf0\xd9\x31\x5a\x6e\x96\x1d\x9a\x97\xc7\x9a\x14\x3f\xe2\x0f\xae\x5f\x57\x3d\x2d\x73\x9e\x9e\xe0\xcc\x65\x91\x3a\x0f\x3e\xd5\x22\x03\x49\x1a\x2c\x15\x50\x98\x1b\xdd\x67\x58\x0f\x16\xe1\x6a\x35\xc0\x37\x4c\x6b\x8d\xa3\x6d\x8d\xba\xc6\x9e\x30\xa8\x60\x7b\x7f\x77\xf7\x88\x3a\xb2\x65\xce\x8a\xf5\xdd\xc6\x60\xdb\x6d\xec\xec\x70\xde\x27\xa4\xfb\x09\x32\x27\xd8\x2e\x04\xcd\x8d\xda\xaf\x8e\x05\xd8\xb4\x40\xd3\xdd\xef\x53\x6b\xb2\x76\x68\x33\x98\x34\x11\xbc\x41\x7a\x1c\x72\xd7\x3c\x16\xe2\x11\x78\x69\x53\xd0\x51\x73\x6d\x78\x3b\x9c\x61\xf8\x95\x4d\xc4\x1a\x25\xf8\x0f\x7a\x05\xc3\xcc\x99\x68\x3d\x8a\xd1\x6d\x04\x39\x97\x6e\x60\x7e\x57\xbf\x60\x5c\xd2\xaf\xde\x37\xba\xfd\xaf\x68\x49\x8d\x85\xba\x5b\xed\xff\x83\x11\xff\xc4\x66\x70\x6b\xa2\xc6\x6f\x2c\xb3\xf7\x95\xfd\x0a\x00\x00\xff\xff\xca\x5e\x38\x8c\x1b\x05\x00\x00" func stakingcollectionRestake_all_stakersCdcBytes() ([]byte, error) { return bindataRead( @@ -5460,11 +5440,11 @@ func stakingcollectionRestake_all_stakersCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/restake_all_stakers.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0xee, 0xd6, 0x42, 0xaf, 0x95, 0x76, 0xc4, 0xef, 0x82, 0xa3, 0xbb, 0xb6, 0xa5, 0x72, 0xc9, 0xc0, 0x45, 0x5, 0xef, 0xd3, 0x94, 0x90, 0x5c, 0x7f, 0x90, 0x8b, 0x25, 0xf2, 0x33, 0xa3, 0x62}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x12, 0xa0, 0xbf, 0x41, 0x72, 0x3e, 0x5b, 0xdf, 0x47, 0x61, 0x1f, 0x7f, 0x61, 0xf5, 0xb0, 0x7a, 0x10, 0xae, 0x7b, 0xf9, 0x7b, 0x91, 0xe2, 0x95, 0xa1, 0x16, 0x8b, 0x2a, 0x8c, 0x50, 0x47, 0x9f}} return a, nil } -var _stakingcollectionScriptsDoes_account_have_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4e\xc4\x40\x0c\x45\xfb\x39\xc5\xd7\x56\x9b\x86\xf4\xdb\x2d\x20\x44\xcf\x09\xac\x89\x03\x16\x33\x76\x34\xf6\x90\x02\x71\x77\x8a\x44\x4a\xb1\xe9\x9e\xf4\xbf\x9e\x9e\xd4\xc5\x5a\xe0\xad\xd8\xfa\x11\xf4\x2d\xfa\xf9\x62\xa5\x70\x0e\x31\xc5\xdc\xac\xe2\x72\xba\x5d\x52\x1a\xc7\x11\xaf\x1c\xdc\xaa\x28\x3b\x64\x06\x29\x28\x67\xeb\x1a\x10\x87\x73\xa0\x2f\x58\x25\xbe\x40\xd8\x0d\x38\x14\x29\x51\xce\xec\x7e\xa5\x52\x06\xcc\x5d\x51\x49\xf4\x4a\xd3\xd4\xd8\xfd\x86\xfb\x06\xc3\x0d\xcf\x66\x05\xbf\x09\x00\x1a\x47\x6f\x7a\xde\xfb\x34\x19\xfb\x7d\x0b\x78\xa7\x1f\x7e\x38\x1c\xee\x1d\x86\xf4\xf7\x1f\x00\x00\xff\xff\x4a\x63\x63\xb2\x01\x01\x00\x00" +var _stakingcollectionScriptsDoes_account_have_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4e\xc3\x30\x10\xc6\xf1\xdd\x4f\xf1\x8d\x74\x21\xcc\xdd\x4c\x52\xa0\xa2\x6a\x25\xdc\x17\x30\xc9\x05\x4e\xd8\x77\x91\x7d\xa6\x48\x88\x77\x67\x68\xa5\x0e\xb0\xfd\x87\xd3\xfd\x3e\xce\x8b\x16\xc3\x43\xd2\x53\xb0\xf8\xc1\xf2\xd6\x6b\x4a\x34\x1a\xab\x60\x2e\x9a\x71\xf7\x15\x8e\xfe\x79\xbb\x7f\xec\x0f\xbb\xdd\xa6\x3f\x6e\x0f\x7b\x3f\x0c\x2f\x9b\x10\x9c\xeb\xba\x0e\x03\x19\x95\xcc\x42\x15\x3c\x23\x0a\xe2\x38\x6a\x13\x03\x57\x54\x32\xb4\x05\x27\xb6\x77\x44\x5c\x00\x5c\x05\xe7\x96\xf6\x8a\xb9\x09\x72\x64\xb9\x89\xd3\x54\xa8\xd6\x35\xfc\x39\x56\x6b\xdc\xab\x26\x7c\x3b\x00\x28\x64\xad\xc8\xff\x53\x6f\x27\xa5\xea\xcf\xf0\x53\xfc\xa4\x3f\x07\xd7\xdf\x97\x58\xb9\x9f\xdf\x00\x00\x00\xff\xff\x5d\x7d\x18\xf4\xfc\x00\x00\x00" func stakingcollectionScriptsDoes_account_have_staking_collectionCdcBytes() ([]byte, error) { return bindataRead( @@ -5480,11 +5460,11 @@ func stakingcollectionScriptsDoes_account_have_staking_collectionCdc() (*asset, } info := bindataFileInfo{name: "stakingCollection/scripts/does_account_have_staking_collection.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0x34, 0x8c, 0xdd, 0x28, 0xf3, 0x71, 0x7c, 0x27, 0x34, 0x43, 0xc2, 0x6c, 0xde, 0x42, 0x3e, 0x68, 0x2d, 0xc2, 0x74, 0x34, 0x8e, 0x51, 0xaf, 0x77, 0xcc, 0xac, 0x1b, 0x8d, 0x90, 0x91, 0x7f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8c, 0xd, 0x47, 0xa3, 0x4f, 0xfc, 0x6f, 0x44, 0x5d, 0xbf, 0xd, 0xa3, 0x2c, 0x2b, 0x6d, 0xe1, 0x19, 0x8f, 0x95, 0x3f, 0x2f, 0xff, 0x8f, 0xf5, 0xdd, 0x30, 0x90, 0x79, 0x1a, 0x60, 0x2, 0x4e}} return a, nil } -var _stakingcollectionScriptsGet_all_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x4b\x03\x51\x10\x84\xfb\xf7\x2b\x86\xab\x72\x4d\xae\x4f\x17\x0c\x4a\x6a\xed\xc4\x62\xbd\xb7\xef\x7c\xb8\xf7\x56\x76\x37\x88\x88\xff\x5d\xd0\xd3\x24\x24\xdd\xb0\x33\xc3\x37\x6c\x9d\xdf\xd4\x02\xb7\xa2\xef\xf7\x41\xaf\xb5\x4d\x37\x2a\xc2\x63\x54\x6d\x28\xa6\x33\xba\xab\x5e\x97\x4e\x9a\xfb\xdd\x03\x3d\x0b\x2f\xa1\x93\xda\xb9\xd1\xa5\x34\x0c\x03\xee\x38\x1c\xd4\x40\x66\xf4\x01\x2d\x20\x11\xc4\x0b\x23\xb3\xf0\x44\xa1\x86\x99\x83\x32\x05\xa1\xa8\x1d\xcf\x0e\x0f\x35\xce\xa8\xed\x27\xef\x0b\x6f\xfc\x5f\x95\x12\x8d\x23\xbb\xaf\x48\xa4\x47\x39\x34\xcc\x54\xdb\x8a\x72\x36\x76\xdf\x60\xfb\x2b\xfa\x0d\x1e\x2f\xe7\xad\x77\x7f\xa0\x7d\x2b\xfa\x84\xcf\x04\x00\xc6\x71\xb0\x76\xfd\x41\xeb\x89\x63\x2b\x72\xd6\x3b\xc2\x16\xd1\xa7\xaf\xef\x00\x00\x00\xff\xff\x8b\x34\x8c\xda\x65\x01\x00\x00" +var _stakingcollectionScriptsGet_all_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xde\xd1\x5e\x5a\xcf\xbd\xc5\x24\x96\xc5\x90\x82\xd9\x8b\x88\x87\x69\x33\x89\xc1\xcd\x6e\x99\x9d\xa0\x22\xfe\x77\x41\x13\xab\xe8\xed\x31\xcc\x37\xdf\x63\x86\xf1\x14\x45\x71\xed\xe3\x73\xa3\xf4\x34\x84\x3e\x8f\xde\xf3\x51\x87\x18\xd0\x49\x1c\x71\xf9\xd2\xb8\xec\xc6\xd6\xbb\x7c\x5f\x55\x65\xee\xec\xbe\xce\x8a\xe2\xb6\x6c\x1a\xf3\x03\xb6\x85\xa3\x83\xe7\xf9\xc6\x42\xda\xa2\xac\x9d\x75\x77\x2e\xbb\xaa\xca\x85\x32\x9b\xcd\x06\x3b\xd6\x04\x0a\x20\x11\x7a\x45\xec\x40\xde\x43\x1f\x19\x2d\x7b\xee\x49\xa3\x60\x64\xa5\x96\x94\xd0\x45\x39\x8f\x13\x92\x46\xe1\x16\x43\xf8\xdc\x4f\xb3\xf1\xf8\x5d\xdb\x98\xd3\x74\x40\x37\x05\x8c\x34\x84\x0b\x6a\x5b\xe1\x94\xb6\xc8\xbe\xc2\x6a\x8b\xfb\xbf\x8d\xd7\xc5\x22\xb0\xa1\x8b\x0f\x78\x33\x00\x20\xac\x93\x84\xff\xbf\xb3\xee\x59\x33\xef\x7f\x71\x67\xd9\x1c\x56\xe6\xfd\x23\x00\x00\xff\xff\xfd\xb5\xa8\x45\x62\x01\x00\x00" func stakingcollectionScriptsGet_all_delegator_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5500,11 +5480,11 @@ func stakingcollectionScriptsGet_all_delegator_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_all_delegator_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x61, 0xbc, 0xe9, 0xa, 0xd, 0xd8, 0x3e, 0x8b, 0x75, 0x60, 0x29, 0xdf, 0x8, 0xba, 0x2, 0xf2, 0xbb, 0xe3, 0x73, 0x8b, 0xed, 0x4a, 0xcc, 0x91, 0x4b, 0xa5, 0x5f, 0x2c, 0xe8, 0x7e, 0xf4, 0x11}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc2, 0xa7, 0xb0, 0x99, 0xa1, 0x70, 0xd1, 0x2b, 0x96, 0x92, 0x77, 0x7d, 0x16, 0xae, 0x8d, 0xe8, 0x88, 0xc7, 0xef, 0xbc, 0xe4, 0x59, 0x1f, 0x33, 0xb, 0x97, 0x3e, 0xbe, 0xe3, 0x8c, 0x2a, 0xd7}} return a, nil } -var _stakingcollectionScriptsGet_all_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x4b\x43\x41\x10\x84\xfb\xfb\x15\xc3\xab\xf2\x9a\xbc\x3e\x5d\x50\x94\x34\x36\xda\x89\xc5\xfa\x6e\x2f\x1e\xee\xed\xca\xde\x06\x11\xf1\xbf\x0b\xf1\xa9\x11\xd3\x0d\x3b\xf3\x31\xc3\xd6\xf6\x62\x1e\xb8\x12\x7b\xbd\x0d\x7a\xae\xba\xbf\x30\x11\x9e\xa3\x9a\xa2\xb8\x35\x0c\x67\xbd\x21\x9d\x90\xbb\xcb\x3b\x7a\x14\x5e\x42\x27\xd8\x5f\x63\x48\x69\x9a\x26\x5c\x73\x74\x90\x82\xdc\xe9\x0d\x56\x40\x22\x88\x27\x86\x5a\x66\x34\x0e\xca\x14\x84\x62\x7e\xbc\x74\xf4\x30\xe7\x8c\xaa\xc7\x54\x5f\x5a\xe6\x9f\x2d\x29\xd1\x3c\x73\xef\x2b\x12\x19\x51\x0e\x8a\x46\x55\x57\x94\xb3\x73\xef\x1b\x6c\xbf\xc4\xb8\xc1\xfd\xff\x51\xeb\x1b\xcb\xbc\xd3\x62\x0f\x78\x4f\x00\xe0\x1c\x07\xd7\xf3\x1f\x59\xef\x39\xb6\x22\xdf\xc8\x6f\xc5\x22\xc6\xf4\xf1\x19\x00\x00\xff\xff\xcd\xc4\xa0\x99\x51\x01\x00\x00" +var _stakingcollectionScriptsGet_all_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xde\xd1\x5e\x1a\xcf\xbd\xc5\x24\x96\xc5\x90\x82\xd9\x8b\x88\x87\x69\x77\x52\x17\x37\x3b\x65\x77\x83\x8a\xf8\xdf\x85\x9a\xa8\x60\x6f\x8f\x61\xbe\x79\x1f\xe3\xc6\x93\xc4\x8c\x5b\x2f\xaf\x7d\xa6\x17\x17\x8e\x95\x78\xcf\x87\xec\x24\x60\x88\x32\xe2\xfa\xad\x37\xe5\x9d\xee\xb6\xd5\xae\x6d\x9b\xca\xe8\x5d\x57\xd6\xf5\x7d\xd3\xf7\xea\x0f\xac\x6b\x43\x7b\xcf\xf3\x8d\x85\xd4\x75\xd3\x19\x6d\x1e\x4c\x79\xd3\x36\x0b\xa5\x8a\xa2\xc0\x96\x73\x02\x05\x50\x8c\xf4\x0e\x19\x40\xde\x23\x3f\x33\x82\x58\xc6\xc8\x99\x2c\x65\xc2\x20\xf1\x3c\x49\x48\x59\x22\x5b\xb8\x70\xde\x4a\x73\xcf\xe1\x47\x56\xa9\xd3\xb4\xc7\x30\x05\x8c\xe4\xc2\x15\x59\x1b\x39\xa5\x0d\xca\xef\xb0\xda\xe0\xf1\xbf\xe7\xba\x13\xcb\x3a\x0c\xf2\x84\x0f\x05\x00\x91\xf3\x14\xc3\xe5\x77\xac\x8f\x9c\x4b\xef\x17\xe4\xb7\x62\x0e\x2b\xf5\xf9\x15\x00\x00\xff\xff\xa5\xe7\xa3\xf6\x4e\x01\x00\x00" func stakingcollectionScriptsGet_all_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5520,11 +5500,11 @@ func stakingcollectionScriptsGet_all_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_all_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0x1b, 0xdc, 0xc0, 0x18, 0xba, 0x5a, 0xa1, 0x59, 0xc9, 0x67, 0x12, 0x85, 0xb0, 0xda, 0x24, 0xdd, 0x74, 0x94, 0xbd, 0xbb, 0xbe, 0x46, 0xdd, 0x56, 0x2c, 0x3f, 0x4d, 0x4e, 0x6a, 0xe8, 0x7b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0xb7, 0x63, 0x1e, 0xee, 0xc1, 0x60, 0xe2, 0xae, 0x71, 0xa0, 0x49, 0xa, 0xe8, 0xa0, 0x84, 0xcc, 0x39, 0x7b, 0xad, 0x66, 0xc7, 0x33, 0xc6, 0x2a, 0x80, 0x53, 0x15, 0xb9, 0xa6, 0xfd, 0xf9}} return a, nil } -var _stakingcollectionScriptsGet_delegator_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xbd\x6a\xc4\x40\x0c\x84\xfb\x7d\x8a\xe1\xaa\x73\x73\xee\xaf\x0b\x31\x01\xb7\x49\x19\x52\x88\x5d\xd9\x59\x22\xaf\x82\x24\x13\x42\xc8\xbb\x07\xec\xfc\x15\xee\x06\x06\xcd\xf7\xa9\x2e\xaf\x6a\x81\x3b\xd1\xb7\x87\xa0\x97\xda\xe6\x5b\x15\xe1\x1c\x55\x1b\x26\xd3\x05\xa7\xc3\xee\x94\x52\xdf\xf7\xb8\xe7\x58\xad\x39\xa8\x81\xcc\xe8\x1d\x3a\x81\x44\x10\xcf\x8c\xc2\xc2\x33\x85\x1a\xc6\xc1\xe1\xa1\xc6\x05\xb5\x6d\x9d\xef\x7b\xc8\xbf\x83\x29\x51\xce\xec\x7e\x26\x91\x0e\xd3\xda\xb0\x50\x6d\x67\x2a\xc5\xd8\xfd\x8a\x9b\x3d\x74\x57\x3c\x1e\x0a\x5d\x86\x1f\xdc\x38\xf8\x13\x3e\x12\x00\xd8\xa6\x77\xfc\xdd\x65\xe6\xf8\x7f\xf3\x87\xfa\x0e\x5d\xfa\xfc\x0a\x00\x00\xff\xff\x7b\xbc\xfe\x64\x1e\x01\x00\x00" +var _stakingcollectionScriptsGet_delegator_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcf\x4f\x4b\xc3\x40\x10\x05\xf0\xfb\x7e\x8a\x77\xb4\x97\xc6\x73\x6f\x21\x5b\x25\x58\x5a\x68\x7a\x13\x0f\x63\x77\x12\x17\x37\x3b\x65\x76\x82\x8a\xf8\xdd\x85\xd6\x3f\x3d\xe4\xf6\x60\x18\x7e\xef\xc5\xf1\x24\x6a\xb8\x4b\xf2\xd6\x19\xbd\xc6\x3c\x34\x92\x12\x1f\x2d\x4a\x46\xaf\x32\xe2\xf6\xbd\x3b\xd4\x0f\xed\xf6\xbe\xd9\x6d\x36\xeb\xe6\xd0\xee\xb6\xb5\xf7\xfb\x75\xd7\x39\x57\x55\x15\xf6\x6c\x93\xe6\x02\xca\x20\x55\xfa\x80\xf4\xa0\x94\x60\x2f\x8c\xc0\x89\x07\x32\x51\xb4\xbe\xa0\x98\x28\x07\xc4\x7c\xbe\x95\x0b\x87\xe3\x9f\xe7\xdc\x69\x7a\x46\x3f\x65\x8c\x14\xf3\x0d\x85\xa0\x5c\xca\x0a\xf5\x25\x2c\x56\x78\x9c\xed\xb9\xf4\xbf\x4c\xeb\xcb\x13\x3e\x1d\x00\xe8\xb9\xd6\xfc\xb0\xe5\xc0\x76\xfd\xf3\x4f\xfd\x84\x85\xfb\xfa\x0e\x00\x00\xff\xff\x4a\xb0\xd1\x0a\x19\x01\x00\x00" func stakingcollectionScriptsGet_delegator_idsCdcBytes() ([]byte, error) { return bindataRead( @@ -5540,11 +5520,11 @@ func stakingcollectionScriptsGet_delegator_idsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_delegator_ids.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0x35, 0xab, 0x54, 0x9e, 0x17, 0xc5, 0x8d, 0xcb, 0x10, 0x21, 0xe1, 0x7c, 0x59, 0xcb, 0xec, 0x18, 0xbf, 0x66, 0xb7, 0x4f, 0x38, 0xc, 0x32, 0x7f, 0x8b, 0x9e, 0x82, 0x19, 0x52, 0xc, 0xbe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0xf8, 0x98, 0x3a, 0xf0, 0xad, 0x8c, 0x59, 0x26, 0xd8, 0x74, 0x8f, 0xf7, 0x27, 0xc2, 0xc4, 0x84, 0x5d, 0x3c, 0x37, 0x82, 0xa6, 0x34, 0x6b, 0x2d, 0xe, 0xfd, 0xd1, 0x10, 0x7a, 0x29, 0xe0}} return a, nil } -var _stakingcollectionScriptsGet_does_stake_existCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x6a\xf3\x30\x10\x84\xef\x7a\x8a\xc1\xa7\x18\xc2\x6f\xf8\x7b\xf3\xa5\xb4\x4d\x0b\x3e\x27\x7d\x00\x55\x5a\xb9\x4b\xd7\xda\x20\x29\xb4\x50\xfa\xee\xc5\xb1\xc1\xae\xc9\x49\xd2\xce\xce\x7c\x83\x78\x38\x6b\x2a\x78\x11\xfd\x3c\x16\xfb\xc1\xb1\x7f\x52\x11\x72\x85\x35\x22\x24\x1d\x50\xdd\xd4\x2a\xb3\x72\x76\x87\x93\x7d\x13\x9a\x97\x56\xb6\xbf\x42\x65\x4c\xd3\x34\x38\x91\x48\x06\x07\x94\x77\x42\x3e\x93\xe3\xc0\xe4\x11\xd5\x13\x34\xc1\x93\x50\x6f\x8b\x26\xd0\x17\xe7\x92\xc1\x71\xda\x9c\xd3\xdd\xd2\xef\x1a\x17\x34\x6d\x92\xac\xf7\x89\x72\x36\xc6\x3a\x47\x39\xef\xac\x48\x8d\x70\x89\x18\x2c\xc7\xdd\xac\xb6\x78\x98\x2e\xfb\x2b\xb9\x3b\xb4\x38\x96\xc4\xb1\xdf\x2f\x0d\xc6\xe1\x6b\x17\xcb\xdd\xff\xfb\xba\xc5\xa3\xaa\xe0\xdb\x00\x40\xa2\x72\x49\xf1\xf6\xaf\xfd\xf3\x4a\x79\x9c\xd2\xf3\xd8\x7f\xe1\xd9\x2d\x6f\x3a\x37\xbc\xd5\xa3\x36\x3f\xbf\x01\x00\x00\xff\xff\xa0\xc3\x2f\x2d\x9f\x01\x00\x00" +var _stakingcollectionScriptsGet_does_stake_existCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x6b\xb4\x30\x10\x86\xef\xf9\x15\x73\xfc\x16\x96\xcf\xd2\xde\xbc\x14\x57\x6d\x09\x15\x17\x6a\x7a\xe8\x31\x6b\x26\x36\x34\x66\x24\x89\x74\xa1\xf4\xbf\x17\x57\x17\x17\xe9\x29\xc9\x4b\xde\xe7\x19\xc6\xf4\x03\xf9\x08\x4f\x96\xbe\x9a\x28\x3f\x8d\xeb\x72\xb2\x16\xdb\x68\xc8\x81\xf6\xd4\xc3\xdd\xb9\x11\xd9\x0b\xaf\x9f\xf3\x63\x55\x95\xb9\xe0\xc7\x3a\x2b\x8a\xd7\xb2\x69\xd8\x4d\x99\x17\x42\x9e\x2c\x2e\x8c\x6b\x93\x17\x65\x2d\xb8\x78\x17\xd9\xa1\x2a\xaf\x2d\x96\x24\x09\x08\xb4\x36\x80\xd1\x10\x3f\x10\xc2\x80\xad\xd1\x06\x15\x38\x52\x08\xe4\x41\xa1\xc5\x4e\x46\xf2\x80\x67\x13\x62\x00\xe3\xe6\x9f\x0b\xbf\x5d\x87\xbc\xe0\x34\xf9\x0d\x49\x2a\xe5\x31\x04\xc6\x86\xf1\x04\x7a\x74\xd0\x4b\xe3\xfe\x2d\x69\x0a\xd9\x7c\xd9\x5f\x8c\xbc\x48\xa1\x89\xde\xb8\x6e\xbf\x9a\xa7\xf0\x8d\xbb\xf8\x70\xff\xb8\x4b\xe1\x40\x64\xe1\x9b\x01\x00\x78\x8c\xa3\x77\x7f\xaf\xec\xbf\x22\x0c\x53\x8a\xe5\x34\xf7\xea\x93\x5b\xdf\x7c\x6e\x7c\x37\x8f\x1d\xfb\xf9\x0d\x00\x00\xff\xff\xc9\x3b\x81\x54\x9c\x01\x00\x00" func stakingcollectionScriptsGet_does_stake_existCdcBytes() ([]byte, error) { return bindataRead( @@ -5560,11 +5540,11 @@ func stakingcollectionScriptsGet_does_stake_existCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_does_stake_exist.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4, 0xb, 0x6f, 0x8c, 0x94, 0xdc, 0x94, 0x55, 0x5, 0x3d, 0xa0, 0x77, 0x92, 0x7, 0xba, 0x57, 0xbd, 0x9e, 0x52, 0x3f, 0x15, 0x13, 0x69, 0x71, 0x5, 0x3, 0xa5, 0x1c, 0x2a, 0xe6, 0xa2, 0xa4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x72, 0xa5, 0xa3, 0x68, 0xc7, 0x63, 0xaf, 0xd8, 0x21, 0x69, 0x50, 0x68, 0xf5, 0x65, 0xcc, 0xff, 0xec, 0x23, 0x17, 0x1a, 0xb3, 0x78, 0x4d, 0x90, 0xd1, 0xbc, 0xd, 0xab, 0xc, 0xb3, 0xd8, 0x47}} return a, nil } -var _stakingcollectionScriptsGet_locked_tokens_usedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xb1\x4e\xec\x40\x0c\x45\xfb\xf9\x8a\xab\xad\x92\xe6\xa5\x79\xa2\x48\x87\x90\x52\xd1\xb1\xfb\x01\xd6\x8c\x37\x3b\x8a\x63\xa3\xb1\xa3\x05\x21\xfe\x1d\x91\x05\xd1\x6c\x7d\xe4\xe3\x73\xeb\xfa\x6a\x2d\x30\x89\x5d\x5f\x82\x96\xaa\xf3\x93\x89\x70\x8e\x6a\x8a\x73\xb3\x15\x87\xbb\xec\x90\xd2\x30\x0c\x38\xb2\x88\xe3\x62\x57\xac\xa4\xef\x10\xcb\x0b\x17\x84\x2d\xac\x8e\xb8\x30\x28\x67\xdb\x34\x50\x1d\x9b\x57\x9d\xf7\xab\xc9\xda\x37\x6c\x0c\xbf\x79\x91\xff\x9e\xaa\x15\x76\x90\x16\x14\x16\x9e\x29\xac\x79\x4a\x94\x33\xbb\x77\x24\xd2\xe3\xbc\x29\x56\xaa\xda\xfd\xc8\x47\x3c\x96\xd2\xd8\xbd\x1f\x71\x9a\xea\xdb\xc3\x7f\x7c\x24\x00\x68\x1c\x5b\xd3\xfb\xe3\xfe\xcd\x1c\xcf\x7b\xee\x71\xaf\x3d\x39\x97\x8e\x6e\x9e\xf1\x37\xbb\x4f\x9f\x5f\x01\x00\x00\xff\xff\x7c\x03\x2f\x67\x21\x01\x00\x00" +var _stakingcollectionScriptsGet_locked_tokens_usedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xb1\x4e\xeb\x40\x10\x45\xfb\xfd\x8a\x5b\x26\xcd\xf3\x2b\x10\x85\x3b\xcb\x89\x51\x84\x95\x48\xd8\xf9\x80\xc5\x3b\x71\x56\x5e\xcf\x44\x3b\xbb\x4a\x10\xe2\xdf\x11\x0e\x88\x86\x7a\x34\xe7\x9c\xeb\xe7\x8b\xc4\x84\x26\xc8\xb5\x4b\x76\xf2\x3c\xd6\x12\x02\x0d\xc9\x0b\xe3\x14\x65\xc6\xff\x5b\xd7\x57\xcf\xbb\xfd\x53\x7d\x68\xdb\x6d\xdd\xef\x0e\xfb\x6a\xb3\x79\xd9\x76\x9d\x31\x45\x51\xa0\xa7\x10\x14\x67\xb9\x62\xb6\xfc\x86\x20\xc3\x44\x0e\x49\x26\x62\x45\x3a\x13\xec\x30\x48\xe6\x04\xaf\xc8\xea\x79\x5c\xbe\x1a\x89\x5f\xc7\x48\xd0\xbb\x16\xc3\xaf\x97\xc5\x91\xc2\xb2\x83\xa3\x40\xa3\x4d\x12\xd5\x98\x4b\x7e\xc5\x29\x33\x66\xeb\x79\xf5\x0d\x2d\x51\x39\x17\x49\x75\x5d\xe2\xd8\xf8\xdb\xe3\x03\xde\x0d\x00\x44\x4a\x39\xf2\xdf\xbb\xfe\x8d\x94\xda\x25\xb3\x5f\x2a\x8f\x4a\x6e\x65\xef\x9c\xf2\x27\x77\x6d\x3e\x3e\x03\x00\x00\xff\xff\x41\x5a\xaa\x77\x1c\x01\x00\x00" func stakingcollectionScriptsGet_locked_tokens_usedCdcBytes() ([]byte, error) { return bindataRead( @@ -5580,11 +5560,11 @@ func stakingcollectionScriptsGet_locked_tokens_usedCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_locked_tokens_used.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0xc, 0xfb, 0x97, 0x66, 0x4b, 0x65, 0x92, 0x16, 0xae, 0xa2, 0x40, 0x46, 0xe3, 0xed, 0x54, 0x24, 0x26, 0x91, 0x9f, 0x43, 0x2, 0x56, 0xb6, 0x5e, 0x20, 0x64, 0xb9, 0x16, 0xd4, 0x6a, 0xd9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x95, 0x64, 0xd6, 0xd9, 0x3e, 0x7a, 0xd9, 0x9b, 0xd, 0x68, 0xa4, 0x4d, 0xfc, 0x18, 0x9c, 0xb1, 0xfd, 0xa0, 0x6b, 0xb8, 0x7c, 0x92, 0x5c, 0xba, 0x8d, 0x99, 0x2, 0x61, 0xfd, 0x1d, 0x80, 0x25}} return a, nil } -var _stakingcollectionScriptsGet_machine_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xbb\x6a\xeb\x40\x10\x86\xfb\x7d\x8a\x1f\x37\x47\x82\x43\xd4\x0b\x4c\x30\x09\x09\x2e\x52\xb9\x0c\x29\x96\xd5\xac\x3c\x64\x35\x6b\x76\x46\xa4\x08\x7e\xf7\x60\x5d\x4c\x2e\xde\x72\xff\xdb\x37\x3c\x9c\x72\x31\x3c\xa5\xfc\x71\x30\xff\xce\xd2\x3f\xe4\x94\x28\x18\x67\x41\x2c\x79\xc0\xe6\xa6\xb6\x71\xae\x69\x1a\x3c\x93\x29\xec\x48\x18\x7c\x38\xb2\x10\x7c\x08\x79\x14\x83\xef\xba\x42\xaa\x88\xb9\xc0\x43\x4f\x14\x38\x72\x80\xe4\x8e\xa6\x20\x0b\xbc\xac\xee\x7f\x0a\x9d\x07\x10\xae\x0b\xce\xf9\x10\x48\xb5\xf2\x29\xd5\x88\xa3\x60\xf0\x2c\xd5\x12\x69\xb1\x9b\x17\xfe\x4f\x9d\xfb\xc7\x16\x07\x2b\x2c\x7d\x7d\x55\xee\xf1\xe9\x00\x20\x91\xad\x78\xbb\x39\xac\xd8\xde\xbe\xf8\xae\x27\x7b\xf9\x69\xad\x96\x4b\xda\x15\xb6\x76\x53\x2b\xc7\xa9\x78\xf9\xdc\x4b\xcc\xd8\xfe\x9e\x79\x9d\xd1\xde\x16\x90\xcb\x2b\x64\x63\x91\xef\xb1\xcb\xe6\x42\x5c\xd5\x93\xef\x0c\x4a\x4a\x7f\x43\xc2\x69\xd6\xdd\xd9\x7d\x05\x00\x00\xff\xff\x9e\xf8\xd0\x7c\xb8\x01\x00\x00" +var _stakingcollectionScriptsGet_machine_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcd\x4b\xc3\x30\x18\xc6\xef\xf9\x2b\x9e\x9b\x1b\x88\xf5\x5c\x18\x52\xda\x39\x8a\x73\x03\xbb\x9b\x78\x88\xe9\x9b\x2e\x98\xbe\x29\x49\x8a\x82\xec\x7f\x97\xf5\x63\xf8\x95\x63\xde\xe7\xe3\xf7\x98\xb6\x73\x3e\xe2\xde\xba\xf7\x2a\xca\x37\xc3\x4d\xee\xac\x25\x15\x8d\x63\x68\xef\x5a\xdc\x7e\x54\x87\xec\xa1\xdc\x6d\xf2\xfd\x76\xbb\xce\x0f\xe5\x7e\x97\x15\xc5\xd3\xba\xaa\x84\x48\x92\x04\x1b\x8a\x01\xf1\x48\x68\xa5\x3a\x1a\x26\x48\xa5\x5c\xcf\x11\xb2\xae\x3d\x85\x00\xed\x3c\x24\x42\x47\xca\x68\xa3\xc0\xae\xa6\xc1\x68\x18\x92\x67\xf5\x55\x40\x18\xfb\xa1\x2e\x00\x42\x74\xfd\x2b\x74\xcf\x68\xa5\xe1\xc5\x24\x4d\x91\x8d\xc9\xd7\x43\x56\x59\xa4\xa8\xa2\x37\xdc\x2c\x2f\x97\x3b\x7c\x0a\x00\xb0\x14\x67\xac\x6c\x34\x07\xac\xfe\x1f\x7b\xd3\x50\x7c\xfc\x29\x5d\x4c\x0b\xd2\x19\x72\x29\x86\x54\xa3\x87\xe0\xe9\xb3\x64\xed\xb0\xfa\x5d\xf3\x3c\xa2\xbd\x4c\x20\xe7\xe7\x29\xf6\x9e\xbf\xdb\xce\x9d\x13\xf1\x62\x39\xe8\x4e\x20\x1b\xe8\xaf\x89\x8d\x1d\xef\xe2\x24\xbe\x02\x00\x00\xff\xff\xa7\x4d\x0f\xa6\xb3\x01\x00\x00" func stakingcollectionScriptsGet_machine_account_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -5600,11 +5580,11 @@ func stakingcollectionScriptsGet_machine_account_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_machine_account_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0x37, 0x6c, 0xc0, 0xd6, 0xcf, 0x69, 0x48, 0xd, 0x1b, 0x78, 0xb0, 0x47, 0x86, 0x8c, 0x66, 0xc0, 0x20, 0x9d, 0x87, 0xc5, 0xac, 0x73, 0xe, 0xc2, 0xd4, 0xa, 0x90, 0x65, 0xf0, 0x84, 0xd5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf2, 0xe2, 0x5a, 0xfd, 0xd5, 0xcf, 0xe0, 0x54, 0xb4, 0x24, 0xa7, 0x6a, 0x67, 0x96, 0x5d, 0xe, 0xd0, 0x8c, 0xac, 0x28, 0x8b, 0x31, 0x26, 0x52, 0x22, 0xab, 0xc1, 0xed, 0xc8, 0xbb, 0x23, 0xb2}} return a, nil } -var _stakingcollectionScriptsGet_machine_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xb1\x6a\xc3\x40\x10\x44\xfb\xfb\x8a\xc1\x4d\xa4\x26\xea\xd5\x99\x40\x42\x8a\x54\xfe\x82\xe5\xb4\x27\x1f\xb9\xdb\x0d\xb7\x2b\x52\x18\xff\x7b\xc0\xa7\x04\x02\x76\x3d\xf3\x1e\x33\xb9\x7e\x69\x73\xbc\x16\xfd\x3e\x39\x7d\x66\x59\x5f\xb4\x14\x8e\x9e\x55\x90\x9a\x56\x1c\xee\x66\x87\x10\xa6\x69\xc2\x1b\xbb\x81\x4a\x81\x9f\x19\x95\xe2\x39\x0b\x83\x62\xd4\x4d\x1c\xb4\x2c\x8d\xcd\xd8\x90\xb4\x41\x74\x61\xbb\x41\x59\x6e\xf5\xbd\xf6\x64\xb0\x6e\x47\xfc\xd3\x87\x40\x31\xb2\xd9\x40\xa5\x8c\x48\x9b\xa0\x52\x96\x61\x47\x66\x1c\xbb\x7a\x9c\x71\x39\x79\xcb\xb2\xce\xf7\x2f\x3c\x7f\xf4\x4d\xc7\x0e\xbe\x4b\xd2\x2b\x2e\x01\x00\x1a\xfb\xd6\xe4\x01\xb6\xb2\xff\x27\x6d\xd8\xdf\xcc\xbf\xbb\xc7\x70\x0d\x3f\x01\x00\x00\xff\xff\x0c\xe4\x1e\xac\x3e\x01\x00\x00" +var _stakingcollectionScriptsGet_machine_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xc1\x4a\xc3\x40\x10\x86\xef\xfb\x14\xff\xcd\xf6\x62\x3c\xe7\x16\xd2\x5a\x82\xb5\x05\xb7\x2f\xb0\x6e\x26\xe9\xe2\x66\xa6\xec\x4e\x50\x28\x7d\x77\x21\x89\x82\x60\xef\xdf\x37\xff\x37\x61\xb8\x48\x52\x3c\x47\xf9\xb4\xea\x3e\x02\xf7\xb5\xc4\x48\x5e\x83\x30\xba\x24\x03\x9e\xbe\xec\xa9\x7a\x69\x0e\xbb\xfa\xb8\xdf\x6f\xeb\x53\x73\x3c\x54\x9b\xcd\xdb\xd6\x5a\x63\x8a\xa2\xc0\x8e\x34\xc3\xc5\x08\x3d\x13\x06\xe7\xcf\x81\x09\xce\x7b\x19\x59\xe1\xda\x36\x51\xce\x94\xd1\x49\x02\x4b\x4b\x79\x92\x02\x4f\xf8\x82\x3d\x64\xe4\x79\x1c\xfe\x77\xdd\x98\xcb\xf8\x8e\x6e\x64\x0c\x2e\xf0\x6a\x41\x4b\x54\xf3\xc9\x75\x89\xab\xd5\x14\xb8\x2f\xff\xaf\x7f\x7c\x9d\x5b\xaa\x59\x6c\xb8\x93\x1b\xae\x06\x00\x12\xe9\x98\xf8\x8e\xd6\x93\xfe\x35\xf3\x6a\xf9\xa2\xfc\xe9\x5d\x9b\x9b\xf9\x0e\x00\x00\xff\xff\xc1\x21\xcf\x72\x39\x01\x00\x00" func stakingcollectionScriptsGet_machine_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -5620,11 +5600,11 @@ func stakingcollectionScriptsGet_machine_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_machine_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4d, 0xfe, 0x63, 0x34, 0x4a, 0x68, 0xf3, 0x2f, 0xff, 0x43, 0xd0, 0xd2, 0xc7, 0x57, 0x2b, 0x2b, 0x9c, 0x1a, 0xd4, 0x96, 0xa0, 0x2e, 0xd8, 0x3a, 0x13, 0x78, 0x34, 0xf8, 0x39, 0x65, 0x45, 0x91}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x7e, 0x24, 0x2d, 0xfc, 0x9e, 0xeb, 0x56, 0x2a, 0x77, 0x86, 0x83, 0xb6, 0xdd, 0x2a, 0x61, 0xfc, 0xa2, 0xb2, 0x49, 0x23, 0x61, 0x2f, 0xed, 0xb3, 0x78, 0xf4, 0xa1, 0x25, 0x5d, 0x4e, 0x40}} return a, nil } -var _stakingcollectionScriptsGet_node_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\xc4\x40\x10\x85\xfb\xfd\x15\x8f\xab\x2e\x8d\xe9\xaf\x13\x0f\x21\x8d\x85\x29\xc5\x62\xd8\x9d\xc4\xc5\xcd\x8c\xcc\x4c\x10\x11\xff\xbb\x90\x88\xd7\xa4\xfb\x78\x0f\xbe\xf7\xea\xf2\xa1\x16\x78\x6c\xfa\x39\x06\xbd\x57\x99\x1f\xb4\x35\xce\x51\x55\x30\x99\x2e\x38\x1d\x76\xa7\x94\xfa\xbe\xc7\x33\xc7\x6a\xe2\x20\x01\x99\xd1\x17\x74\x02\xb5\x86\x78\x63\x88\x16\xc6\x70\x75\x78\xa8\x71\x41\x95\x2d\xf6\x5d\x85\xfc\xef\x4a\x89\x72\x66\xf7\x33\xb5\xd6\x61\x5a\x05\x0b\x55\x39\x53\x29\xc6\xee\x17\xdc\xef\xd0\x5d\xf0\x32\x86\x55\x99\x5f\xf1\x9d\x00\xc0\xb6\xf5\xe3\xf3\x77\x33\xc7\x93\x16\x1e\xae\x7e\x33\xfd\x41\x97\x7e\x7e\x03\x00\x00\xff\xff\x44\x15\x32\xea\xf8\x00\x00\x00" +var _stakingcollectionScriptsGet_node_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4e\xc3\x30\x10\xc6\xf1\xdd\x4f\xf1\x8d\x74\x21\xcc\xdd\xa2\xa4\x20\x8b\x2a\x95\xea\x6e\x88\xc1\xd4\x97\x60\xe1\xdc\x55\xe7\x8b\x00\x21\xde\x1d\xa9\x45\xb0\x74\xfb\xeb\x86\xfb\x7d\x79\x3e\x89\x1a\xee\x8b\xbc\x07\x8b\x6f\x99\xa7\x4e\x4a\xa1\xa3\x65\x61\x8c\x2a\x33\xee\x3e\xc2\xa1\x7d\xf4\xc3\x43\xb7\xdb\x6e\x37\xdd\xc1\xef\x86\xb6\xef\xf7\x9b\x10\x9c\x6b\x9a\x06\x7b\xb2\x45\xb9\x22\x32\xa2\x6a\xfc\x84\x8c\x88\xa5\xc0\x5e\x09\x2c\x89\xe0\xfb\x8a\x6a\xa2\x94\x90\xf9\x7c\xae\x17\x09\xc7\x3f\xca\xb9\xd3\xf2\x82\x71\x61\xcc\x31\xf3\x4d\x4c\x49\xa9\xd6\x35\xda\x4b\xac\xd6\x78\x0a\xa6\x99\xa7\x67\x7c\x39\x00\xd0\xb3\x7a\x7d\xf7\xed\x44\x36\x48\x22\xdf\xd7\xff\x4f\xbf\xb1\x72\xdf\x3f\x01\x00\x00\xff\xff\xbd\x92\x43\x50\xf3\x00\x00\x00" func stakingcollectionScriptsGet_node_idsCdcBytes() ([]byte, error) { return bindataRead( @@ -5640,11 +5620,11 @@ func stakingcollectionScriptsGet_node_idsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_node_ids.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0xee, 0x46, 0xe2, 0xae, 0x7, 0xfa, 0x85, 0xe4, 0x58, 0x3f, 0xf4, 0xc3, 0x68, 0x7, 0xe9, 0x24, 0x83, 0xe2, 0x7, 0x84, 0x8a, 0x19, 0x96, 0xe7, 0x17, 0x22, 0xf9, 0x37, 0x5e, 0x4c, 0xf9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x45, 0x32, 0xd2, 0x69, 0x44, 0xf5, 0xdc, 0xe6, 0x20, 0x93, 0x64, 0x24, 0xd0, 0x77, 0xfa, 0x5b, 0x23, 0x71, 0x4c, 0x54, 0xc7, 0x7e, 0x17, 0xf8, 0x10, 0x5a, 0x81, 0xa7, 0xe0, 0x50, 0x54, 0x12}} return a, nil } -var _stakingcollectionScriptsGet_unlocked_tokens_usedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x31\x6e\xc3\x30\x0c\x45\x77\x9d\xe2\x23\x93\xbd\xd4\x4b\xd1\xc1\x5b\x51\xc0\x17\x68\x7c\x00\x41\x62\x1c\xc1\x34\x59\x88\x14\xd2\xa2\xe8\xdd\x8b\x26\x29\xb2\x78\x7e\xe0\xe3\xfb\x65\xfb\xd0\xea\x98\x58\x2f\xef\x1e\xd7\x22\xcb\x9b\x32\x53\xf2\xa2\x82\x53\xd5\x0d\x87\x5d\x76\x08\x61\x18\x06\x1c\x89\xd9\x70\xd6\x0b\xb6\x28\x5f\x68\xc2\x9a\x56\xca\x70\x5d\x49\x0c\x7e\x26\xc4\x94\xb4\x89\xa3\x18\x9a\x15\x59\xae\x77\x93\xd6\x3f\x58\x09\x76\x33\x23\x3d\xde\x8a\x66\x32\x44\xc9\xc8\xc4\xb4\x44\xd7\x6a\x21\xc4\x94\xc8\xac\x8b\xcc\x3d\x4e\x4d\xb0\xc5\x22\xdd\x5d\x3e\xe2\x35\xe7\x4a\x66\xfd\x88\x79\x2a\x9f\x2f\xcf\xf8\x0e\x00\x50\xc9\x5b\x95\xfd\x79\x4f\x0b\xf9\x7c\x0f\x3e\x5e\x7b\x67\xa3\xdc\xc5\x9b\x69\xfc\x0f\xef\xc3\x4f\xf8\x0d\x00\x00\xff\xff\x31\xdc\x37\x2c\x26\x01\x00\x00" +var _stakingcollectionScriptsGet_unlocked_tokens_usedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4e\xc2\x40\x10\x86\xef\xfb\x14\xff\x11\x2e\xd6\x83\xf1\xd0\x5b\x53\xa8\x21\x12\x48\x6c\xfb\x00\x6b\x77\x28\x9b\x6e\x67\xc8\xce\x6e\xc0\x18\xdf\xdd\x08\x18\x2f\x9e\x27\xf3\x7d\xdf\xef\xe7\x93\xc4\x84\x26\xc8\xb9\x4d\x76\xf2\x3c\xd6\x12\x02\x0d\xc9\x0b\xe3\x10\x65\xc6\xe3\xa5\xed\xaa\xd7\xcd\xee\xa5\xde\x6f\xb7\xeb\xba\xdb\xec\x77\xd5\x6a\xf5\xb6\x6e\x5b\x63\x8a\xa2\x40\x47\x21\x28\x8e\x72\xc6\x6c\xf9\x03\x99\x83\x0c\x13\x39\x24\x99\x88\x15\xe9\x48\xb0\xc3\x20\x99\x13\xbc\x22\xab\xe7\xf1\xfa\xd7\x48\xfc\x39\x46\x82\xde\xc4\x18\xfe\xcc\x2c\x8e\x14\x96\x1d\x1c\x05\x1a\x6d\x92\xa8\xc6\x9c\xf2\x3b\x0e\x99\x31\x5b\xcf\x8b\x3b\xb4\x44\xe5\x5c\x24\xd5\x65\x89\xbe\xf1\x97\xe7\x27\x7c\x1a\x00\x88\x94\x72\xe4\xff\x97\x3d\x8c\x94\xfa\x7b\x68\x77\xed\xec\x95\xdc\xc2\xde\x48\xe5\x6f\xf0\xd2\x7c\x99\xef\x00\x00\x00\xff\xff\xd2\x00\x11\x86\x21\x01\x00\x00" func stakingcollectionScriptsGet_unlocked_tokens_usedCdcBytes() ([]byte, error) { return bindataRead( @@ -5660,11 +5640,11 @@ func stakingcollectionScriptsGet_unlocked_tokens_usedCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_unlocked_tokens_used.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x6b, 0x4a, 0x39, 0xdc, 0x90, 0x32, 0xaf, 0x58, 0x89, 0x48, 0x1d, 0x77, 0x1, 0x5, 0x8f, 0xe8, 0xf2, 0xc2, 0x68, 0xf, 0x44, 0xda, 0x36, 0x67, 0x13, 0x46, 0xf, 0x2a, 0x1c, 0x6d, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb7, 0x3a, 0xad, 0x80, 0x59, 0x47, 0x6f, 0xc6, 0x0, 0x50, 0xc4, 0xed, 0x7, 0xec, 0xe7, 0xdd, 0xdc, 0x0, 0x1b, 0x20, 0x27, 0x43, 0x2f, 0xda, 0x7c, 0x27, 0xb6, 0x99, 0x7a, 0x72, 0x66, 0x46}} return a, nil } -var _stakingcollectionSetup_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xdf\x4f\xfb\x36\x10\x7f\xcf\x5f\x71\xf4\x81\x25\x52\x9b\xbe\x57\x85\xef\xb6\x7e\x35\x0d\x69\x1a\x68\x20\xf6\x7c\x4d\x2e\x8d\x57\x63\x47\xb6\xd3\x08\x21\xfe\xf7\xc9\xce\x4f\x37\x29\x74\x30\x0d\x69\x7e\x20\xd4\xbe\x5f\x9f\xfb\xf8\xce\xc7\x9e\x0a\xa9\x0c\xfc\x52\x8a\x1d\xdb\x72\x7a\x90\x7b\x12\x90\x29\xf9\x04\x33\x6f\x6f\x16\xb4\x92\x5c\x56\x9e\x54\xfb\xdb\x93\xb8\xf9\xfe\x80\x5b\x4e\xf7\x06\xf7\x4c\xec\x06\xa2\xfe\x41\xa7\xf3\x9b\x4c\xf6\x94\x3a\x3b\xba\x91\x1e\x6e\x79\xb6\x1b\xdd\x8d\xe4\x9c\x12\xc3\xe4\x30\x92\xd1\xd9\x2c\x08\x96\xcb\x25\x3c\xe4\x4c\x83\x51\x28\x34\xd6\x2a\x9a\x8c\x86\xb2\x00\x14\x80\x49\x22\x4b\x61\xc0\x48\x28\x35\x01\x82\x6e\xa2\x4e\x3a\x2b\xce\xc6\x8d\x81\x8a\x71\x0e\x95\x54\x7b\x50\xb4\x43\x95\x72\xd2\x1a\x64\x06\x55\x4e\x26\x27\x05\x26\xa7\x67\xc8\xf1\x60\xad\x28\xda\x95\x1c\x55\x6b\x7e\x0e\x08\xa6\x92\x8b\xd6\x1b\x77\xf0\xc0\xd4\x90\x35\x99\xb2\x98\x3b\x37\x52\x75\x01\xc8\xed\x5f\x94\x18\x0d\xda\x48\x45\x29\x30\x61\x1d\x40\x29\x1a\xdd\xc6\x54\x10\x0c\x81\xbd\x04\x00\x00\x85\xa2\x02\x15\x85\x9a\xed\x04\xa9\x15\x60\x69\xf2\xf0\x67\xa9\x94\xac\x1e\x91\x97\x34\x87\x7b\x23\x15\xee\x68\x0e\x1b\x2c\x70\xcb\x38\x33\x8c\x74\x04\x97\x3f\xd5\x46\x23\x78\x09\x9c\x25\xbb\x2c\xf8\xcc\xfa\x56\x04\x4c\x8b\x1f\x0c\x20\x57\x84\xe9\xf3\x74\xb2\x5a\x35\x96\x41\xed\x3f\xd6\xb5\xb3\x78\xeb\x22\x58\x5f\x4e\x52\x15\x8f\x76\xae\x43\xcb\xec\x6a\x9a\xf5\xb1\x78\x03\xe9\x0e\x4d\x1e\xc1\xd5\x15\x08\xc6\x87\x28\x1a\x24\x1b\x45\x68\x08\x0a\xc5\x0e\xf6\x9b\x0c\xe0\x43\x26\x1d\x87\x35\x2b\x90\x4b\x9e\x92\x02\x14\x69\x9f\xf3\x03\x96\xdc\x78\x26\x39\xb5\x64\xfe\x5a\xcb\x5f\xb5\xa8\x87\xa6\xbb\x14\x30\xad\x4b\x5a\x3b\x3e\xbc\x02\x8b\xff\x64\x26\x4f\x15\x56\x73\xaf\x18\x62\xf7\xb9\x2d\x48\xa1\x85\x68\x19\x1a\x1f\xd7\x8e\xaf\xc3\x53\x27\xc3\xc4\x5c\x8c\x82\xcf\xba\x8a\xfe\x64\xe4\x11\x5c\x76\xdd\x20\x7e\xb4\x89\xba\x0e\x97\x8d\xf6\xb2\xf3\xe2\x0e\xa2\x8b\x53\xbc\x20\x08\xaa\xa0\x6d\x1c\x83\x22\xb7\x34\x14\xa5\x01\x66\x6c\x21\x34\x66\x3d\x23\x2c\xf3\x88\x88\x93\x9c\x92\x7d\x18\x35\x25\x31\x5c\x47\xd7\x52\xe3\x81\xc2\x91\x90\x5d\xeb\xc5\x89\xcb\x97\xb8\x68\x47\xfb\xd3\x56\xec\x6a\x6f\x90\x83\xbf\xea\x93\x3e\x3f\xa9\x61\x7a\x02\x57\x1e\xb0\x49\x8d\x68\xda\x90\x91\x1f\x29\x9f\x91\xa9\xc8\xdb\x79\x05\xe2\x9a\xfe\x17\x79\x15\x8c\x7f\x7d\x3a\x47\xb5\x70\x57\x6e\x39\xd3\x39\x60\xdf\x9e\x9e\xed\xfb\x64\x7b\x53\x9d\xa1\x74\xa2\xf1\xc6\xa3\xd2\xd6\xc7\x41\x6d\xb0\x38\xab\xca\xcf\xef\xd0\x23\x6c\x9f\x4c\x4f\xe4\x27\x63\x2a\xd4\xa2\xce\xce\xd8\xf5\x14\xdc\x31\x8f\x68\xce\xe6\xd0\xf1\x90\x4c\xc4\x38\x41\xdd\x72\x09\xf5\xf3\xe6\xde\xfe\x8c\x14\x89\x84\x5a\xd2\xde\x78\x25\x2d\x4f\xfd\xf6\x1f\x94\xf5\x04\xfd\xf7\xcf\xa6\x07\xf3\xdb\x37\x28\x50\xb0\x24\x9c\x6d\x64\xc9\x53\x10\xd2\xb4\x10\xc7\x78\x7a\xcc\xb3\xe8\xd4\xe4\x60\x9b\xbb\x4c\xeb\x6c\x90\x6a\xc6\x9b\x76\xac\xe9\xe6\xa4\xbe\xc9\xbf\x93\xb9\xb7\xe7\x0b\x7f\xd2\x8c\x7f\x97\xa9\xfb\xdf\xbe\x93\x7d\x7a\x4e\x0a\x79\xb3\xc4\x45\x3b\x4b\x1c\xd7\x97\x43\xb3\x5e\x1c\x87\xc1\x25\xa6\xeb\x1f\xff\xdd\x20\xfc\x77\xdb\xbb\x30\x31\xa6\xa9\x55\xba\x75\xf9\x0c\xd7\x0b\x1b\xd6\x1c\x9e\x30\xc9\x99\xa0\x66\xa0\xbb\x11\x99\x74\xed\xee\xd4\xe5\xf5\x79\x4a\x89\xd3\x0e\x8d\xfc\x02\x96\xbe\xb7\xae\xdf\xc8\x51\x27\x73\x1e\x4f\x3d\x9a\x7f\x48\xd6\x87\x63\x79\x87\xae\x4e\xa7\xe3\xac\x0b\x71\xc8\x4f\xfd\xf7\x35\xf8\x3b\x00\x00\xff\xff\x2f\x57\xf5\xcc\xa6\x0d\x00\x00" +var _stakingcollectionSetup_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\x4b\x6f\xea\x46\x14\xde\xf3\x2b\xce\xbd\x8b\x5b\x23\xf1\xe8\x1a\x91\xdc\x12\x20\xa9\x15\x04\x51\x70\x5b\x75\x39\xd8\xc7\xf6\x94\xc9\x8c\x35\x33\x86\x46\x11\xff\xbd\x1a\xdb\xe3\x07\xe0\x84\x44\x51\xca\x22\x44\xf6\x79\x7c\xdf\x77\x5e\xd0\xa7\x44\x48\x0d\xb7\x29\x8f\xe8\x86\xa1\x27\xb6\xc8\x21\x94\xe2\x09\x7e\xfd\xf7\xf6\x8f\xe5\x9d\x7b\xb3\x98\x7b\xab\xfb\xf9\x72\x32\x9b\x3d\xce\xd7\xeb\x8e\x75\x60\x62\xdf\x34\x5e\xac\xfe\x6a\x33\x74\x67\x1e\xd9\x30\x5c\x6b\xb2\xa5\x3c\xb2\x1e\xee\x6c\xbe\xf4\x5c\xef\x6f\x6f\x72\xb3\x98\x1f\x79\x2d\x84\xbf\xc5\x20\x4b\xa0\xac\xfd\x62\x35\xbd\x9f\xcf\xda\x72\x14\xc1\xa7\x82\x31\xf4\x35\x15\x25\xb0\xb5\x37\xb9\x77\x97\x77\xd3\xd5\x62\x31\x9f\x7a\xee\xaa\x74\xee\x0c\x87\x43\xf0\x62\xaa\x40\x4b\xc2\x15\xc9\xbd\x14\x6a\x05\x69\x02\x84\x03\xf1\x7d\x91\x72\x0d\x5a\x40\xaa\x10\x08\xa8\x82\x80\x5f\x26\xc9\x62\xb8\x1a\xf6\x94\x31\xd8\x0b\xb9\x05\x89\x11\x91\x01\x43\xa5\x40\x84\xb0\x8f\x51\xc7\x28\x41\xc7\xf8\x0c\x31\xd9\x99\x28\x12\xa3\x94\x11\x69\xc3\xf7\x80\x80\xde\x8b\xbe\xcd\xc6\x32\xea\xa0\x73\xee\x0a\x75\x9a\xf4\xb2\x34\x42\x96\x00\xc4\xe6\x1f\xf4\xb5\x02\xa5\x85\xc4\x00\x28\x37\x09\x20\xe5\x85\x6f\x11\xaa\xd3\xa9\x13\x7b\xe9\x00\x00\x24\x12\x13\x22\xd1\x51\x34\xe2\x28\x47\x30\x49\x75\x3c\xc9\xcd\xbb\xf0\xd2\xc9\x6c\xcc\xc7\xd0\x0a\x4d\x54\x89\x40\x15\xff\x45\x03\x61\x12\x49\xf0\x7c\x5e\x06\xeb\x46\x43\xc8\x23\x0f\x36\x42\x4a\xb1\x1f\xff\x38\x5b\x9b\xc1\xc9\x93\x6b\xc7\x94\x6b\x74\xbe\x94\xa7\xe6\x6b\x2d\x24\x89\xf0\x81\xe8\xb8\x0b\x57\x57\xc0\x29\xab\xa3\x2f\x18\x4c\x25\x12\x8d\x90\x48\xba\x33\xdf\x3e\x49\xc8\x86\x32\xaa\x29\x2a\x08\x45\x56\x95\x5c\x67\x88\x05\x0b\x50\x02\xe1\x41\xa5\xe2\x8e\xa4\x4c\x37\x42\x32\xb4\xe5\xf9\x3d\xb7\xbf\xb2\x6c\x19\xe5\xdb\xf1\x8f\x7a\xd7\x0e\xb2\xaf\xdc\xee\xda\x19\x16\x18\x86\xa1\x9d\x9b\xfc\x4d\x0f\x34\x91\x11\xea\x11\xb4\xf9\xd6\x99\x7e\x3b\x41\x53\x86\x3b\x86\x52\xce\xe7\xe0\x4f\x43\xe3\x1c\x82\xec\x45\x05\x60\xa8\xf2\x4c\x47\x06\x47\x49\x5b\x24\x26\xc0\x71\x0f\x76\xc0\x6b\x43\x68\x14\x4d\x52\x0d\x54\x9b\x2e\x2d\x52\x34\x82\xd0\xb0\xa1\xe9\xc0\x8f\xd1\xdf\x3a\xdd\xa2\x5f\xeb\x9f\x82\xa0\x22\x3b\x74\xc6\xfd\xf3\x9d\xe2\x67\x78\x4e\x9e\x3b\xb6\xaa\x19\xa7\x51\xa5\x5b\x2f\x6f\x80\x3c\xf7\xa8\x81\xa4\x6b\xde\x7d\xa8\x23\x1b\xc8\x0f\x80\x4c\xe1\xff\x43\x87\x53\xf6\x59\x2c\xda\x86\x8b\x40\x92\x6e\x18\xf5\xc1\xf4\x9d\x59\x95\x66\xa8\x5e\xd9\x10\x35\xe6\x55\xa7\x5e\x80\xec\xe5\x42\xbb\x87\x0c\xcd\xe1\xda\x39\xd1\xfb\x5d\x01\x8c\x02\xbd\x93\x10\x76\x56\xde\xaf\x66\x23\x54\x25\xed\xa1\xb1\x71\xf3\x9d\x99\x9d\x88\x10\x25\x72\x1f\x2f\x10\xd4\xac\x81\xea\xf1\x23\x86\xd5\x2a\xf8\xba\x1d\xdc\xa0\xf7\xf3\x27\x24\x84\x53\xdf\xf9\x3e\x15\x29\x0b\x80\x0b\x6d\xa9\x9d\xf2\xa8\xb8\x7e\xef\xb6\x9d\x1f\xb3\x5e\x44\x90\xab\x80\xb2\xb8\x7e\xf6\xea\x95\x67\xb4\x5a\x33\x6f\x28\x76\xfe\x48\x35\x7f\xa4\x0c\x96\x22\xc8\xfe\x37\xdb\xbb\x92\xa5\xd5\xa8\x71\x90\xbe\xd9\x83\x54\x57\xc5\xd4\x29\x63\x31\xee\x97\x03\x20\x48\x30\xfe\xed\x73\x93\x37\xd7\x75\xa3\x31\x06\x24\x08\x8c\xd3\x2a\xd3\xcf\x19\xf7\x0d\x9c\x1e\x3c\x11\x3f\xa6\x1c\x8b\x5f\x01\x2e\x0f\x45\xbe\x38\x5a\x9a\xb4\x59\x97\x00\x19\x46\x44\x8b\x2f\xac\xca\xcc\xa6\x7c\x45\x9b\xd2\xe6\xb2\xba\x54\x2c\x2e\x2c\xce\x87\x31\xbc\x51\x9e\xd2\xa7\xac\x51\x09\xad\x5e\x8f\xfc\xef\xa1\xf3\x5f\x00\x00\x00\xff\xff\x6b\x24\xa3\x92\xbe\x0b\x00\x00" func stakingcollectionSetup_staking_collectionCdcBytes() ([]byte, error) { return bindataRead( @@ -5680,11 +5660,11 @@ func stakingcollectionSetup_staking_collectionCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/setup_staking_collection.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc6, 0x8f, 0xd5, 0x44, 0x8b, 0x79, 0x97, 0x70, 0x5e, 0x2a, 0xd, 0xcd, 0x70, 0xb3, 0x50, 0xdb, 0x48, 0xaa, 0x31, 0xa6, 0xeb, 0xb3, 0x2, 0xb6, 0xeb, 0xdf, 0xee, 0xac, 0xe2, 0x1e, 0xd1, 0x58}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0x41, 0x87, 0x59, 0x87, 0x7c, 0xcb, 0xe9, 0xdd, 0x3a, 0x84, 0x4, 0xfe, 0x2e, 0xda, 0x72, 0xc3, 0xab, 0x10, 0xa9, 0x54, 0x90, 0x37, 0x82, 0x32, 0xfa, 0xb3, 0x41, 0xf, 0x73, 0x5a, 0xe8}} return a, nil } -var _stakingcollectionStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6f\xdb\x30\x0c\x85\xef\xfe\x15\x0f\x39\x74\x09\x10\x24\xc0\x36\xec\x10\x6c\x0b\xb6\x0c\x05\x7a\xd9\x86\xa5\xdd\x5d\xb5\xe9\x44\x88\x2c\x1a\x14\x3d\xa7\x18\xfa\xdf\x07\x49\x75\x52\x34\x3e\xec\x52\x1d\x2c\x9b\xa2\x1f\x1f\xa9\xcf\x36\x2d\x8b\xe2\xda\x71\xbf\x55\x73\xb0\x7e\xb7\x61\xe7\xa8\x54\xcb\x1e\xb5\x70\x83\xc9\xe8\xd9\xa4\x28\x96\xcb\x25\x36\xdc\x34\x56\x03\x3c\xf5\x50\x3e\x90\x0f\x50\x46\x50\x73\x20\xd4\x2c\xd0\x3d\x21\xb4\x54\xda\xda\x52\x05\xcf\x15\x81\x05\x15\x39\xda\x19\x65\x81\xf5\x39\x25\xcb\xa3\x3c\xe9\x27\xf5\xdb\x3d\x0d\xaa\xc9\x4a\x4c\x75\x5c\x1e\xa8\xc2\x1f\xd3\x39\x85\x11\x42\x17\xa8\x42\x6d\x25\xe8\x1c\xb6\x86\x55\xd0\xd1\x06\x0d\x49\xa1\x66\xe7\xb8\xa7\x0a\xf7\x0f\xe9\xef\x97\x6a\x9d\x7f\xae\x57\x14\x2a\xc6\x07\x93\x1c\x4c\xa3\xdb\x9b\x6f\x2b\x6c\x55\xac\xdf\xcd\xcf\xae\x63\xf0\xee\xc6\xeb\xbb\xb7\xeb\x39\x4c\xc3\x9d\xd7\x15\xee\xae\xed\xf1\xc3\xfb\x19\xfe\x16\x00\x90\x1e\x8e\x74\xe8\xec\x3c\xb8\x5f\x54\xaf\x60\x3a\xdd\x4f\x47\xe7\xba\x38\xbf\xfe\xe8\x3d\xc9\x0c\x57\xe3\x79\x17\x91\x22\xd5\x6c\x85\x5a\x23\x34\x35\x65\x99\x7d\xa5\x52\x5f\x59\x84\xfb\xdf\xc6\x75\x34\xc3\xd5\x97\x7c\x36\x78\x8d\x2b\x90\xab\x17\x63\x5e\xf1\x09\x4f\x52\x8b\xa0\x2c\x66\x47\x8b\xfb\x24\xf6\xf1\x35\x7a\xf8\x3c\x8d\x37\xb3\x1a\xc7\xf1\x32\x7d\x9b\x1d\xfd\x34\xba\x9f\x9d\x5a\x89\x6b\xbd\x46\x6b\xbc\x2d\xa7\x93\x0d\x77\x2e\x82\xa7\xc8\xb6\x61\x20\x54\x93\x90\x2f\x23\x0d\x30\xb8\xc4\xfe\x09\xca\x56\x6c\x63\xe4\x21\x02\x26\x6f\xc2\x30\x86\x49\xae\xf4\x98\xc7\x4d\x47\x2a\x3b\xa5\xff\x99\x64\x0a\xd2\x77\xea\x6f\x13\x83\x27\xbc\xf2\xfe\x02\xaf\x67\x1f\x67\xc4\xf2\x3e\xd4\x7f\x2c\xfe\x05\x00\x00\xff\xff\x19\x9a\x91\xbf\xbc\x03\x00\x00" +var _stakingcollectionStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xc1\x6a\x1b\x31\x10\x86\xef\xfb\x14\x3f\x39\x14\x07\x8c\x5d\xda\xd2\x83\x69\x6b\xcc\x3a\x29\xa6\xc1\x29\x59\xe7\x01\x94\xdd\x91\x2d\xac\xd5\x2c\xd2\x6c\xd7\xa5\xe4\xdd\xcb\x4a\x59\x3b\xc4\x3e\x44\x07\x09\x0d\xa3\xef\xff\x35\x33\xa6\x6e\xd8\x0b\x6e\x2d\x77\x85\xa8\xbd\x71\xdb\x9c\xad\xa5\x52\x0c\x3b\x68\xcf\x35\x3e\x1e\x8a\xcd\xe2\xd7\x6a\xfd\x33\xbf\xbf\xbb\xbb\xc9\x37\xab\xfb\xf5\x62\xb9\x7c\xb8\x29\x8a\x2c\x9b\x4e\xa7\xc8\xb9\xae\x8d\x04\x38\xea\x20\xbc\x27\x17\x20\x8c\x20\x6a\x4f\xd0\xec\x21\x3b\x42\x68\xa8\x34\xda\x50\x05\xc7\x15\x81\x3d\x2a\xb2\xb4\x55\xc2\x1e\xc6\xa5\x94\xa4\x8e\xf2\x28\x1f\xe9\x9b\x1d\x0d\xd4\xe8\xa6\x4f\xb5\x5c\xee\xa9\xc2\x1f\xd5\x5a\x81\xf2\x84\x36\x50\x05\x6d\x7c\x90\x31\x8c\x86\x11\xd0\xc1\x04\x09\x91\xa0\xd9\x5a\xee\xa8\xc2\xd3\xdf\xf8\xfa\x2d\xad\x75\xaf\x79\x59\x26\x5e\xb9\xa0\xa2\x83\x51\xef\x76\xb5\x9c\xa1\x10\x6f\xdc\x76\x7c\x72\xdd\x07\x1f\x57\x4e\x3e\x7f\x9a\x8f\xa1\x6a\x6e\x9d\xcc\xf0\x78\x6b\x0e\x5f\xbf\x5c\xe3\x5f\x06\x00\x71\xb3\x24\xc3\xcf\x4e\x75\x7d\x20\x3d\xc3\x87\x8b\x25\x9f\x9c\x45\xb2\xc8\x69\x3c\x35\xca\xd3\x48\x95\x65\xd2\x5a\xb4\xb2\x5b\xa4\xcb\x20\xd8\xaf\x40\x56\x4f\x2e\x09\xe2\x3b\x5e\xde\x4e\x9e\xd8\x7b\xee\xbe\xbd\xd7\xc0\x8f\x51\x5f\xaa\xd9\xe5\x11\x39\x4f\x2f\x84\xbd\xda\xd2\x6f\x25\xbb\xeb\xa3\xad\x7e\xcd\xe7\x68\x94\x33\xe5\xe8\x2a\xe7\xd6\xf6\x93\x20\x48\x56\xe0\x49\xf7\x33\x73\xc6\xba\x4a\x84\xe7\x54\x03\x3a\x50\xd9\x0a\xbd\xe7\xb7\x31\x48\x6b\xea\x36\xb1\xd9\xc7\x3e\xa6\xf3\x4d\x1f\x5f\x5d\x4e\xbd\x4c\xe7\xa0\xff\x9c\xfd\x0f\x00\x00\xff\xff\xec\x54\xa2\x45\x28\x03\x00\x00" func stakingcollectionStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5700,11 +5680,11 @@ func stakingcollectionStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x9a, 0xc7, 0x41, 0xbc, 0xe4, 0x74, 0x85, 0x15, 0x98, 0x99, 0xf, 0x7e, 0xfb, 0xc8, 0x6a, 0x9e, 0x96, 0x5b, 0xb6, 0x66, 0x12, 0x17, 0x77, 0x7b, 0xc3, 0x9e, 0x10, 0x6e, 0xc6, 0xe5, 0x3e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd, 0x83, 0x37, 0x9f, 0xaa, 0xc4, 0x87, 0xda, 0x7e, 0xaf, 0x41, 0x49, 0xd3, 0xe, 0xac, 0xd, 0xa9, 0xb8, 0x16, 0xce, 0xbc, 0x57, 0xa0, 0x71, 0x8c, 0xf3, 0x87, 0x9c, 0x2e, 0xdc, 0x1e, 0x31}} return a, nil } -var _stakingcollectionStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x8f\xd3\x30\x10\x85\xef\xf9\x15\x4f\x3d\x2c\xa9\xb4\x6a\x25\x40\x1c\x2a\xa0\x82\xa2\x95\xf6\x04\xda\xb2\xdc\x07\x67\xd2\x5a\x75\x3c\xd1\x78\xa2\x2e\x42\xfb\xdf\x51\xe2\xb6\x41\x34\x07\x2e\xeb\x43\x1c\x8f\xc7\xf3\xde\x8c\x3e\xdf\xb4\xa2\x86\xbb\x20\xc7\xad\xd1\xc1\xc7\xdd\x46\x42\x60\x67\x5e\x22\x6a\x95\x06\xb3\xc9\xbb\x59\x51\x2c\x97\x4b\x6c\xa4\x69\xbc\x25\x28\x1f\x49\x2b\xae\x60\x72\xe0\x98\x60\x82\x64\x74\x60\xd4\xa2\xb0\x3d\x23\xb5\xec\x7c\xed\xb9\x42\x94\x8a\x21\x8a\x8a\x03\xef\xc8\x44\xe1\x63\x4e\xc9\x1a\x70\x17\x91\xa2\x30\xa5\x98\x68\x38\x94\xfd\xc3\xfb\x2f\x2b\x6c\x4d\x7d\xdc\xdd\x8e\x05\xfa\xe0\xe3\x7d\xb4\x37\xaf\xd7\xb7\xa0\x46\xba\x68\x2b\x3c\xde\xf9\xa7\x77\x6f\xe7\xf8\x5d\x00\xc0\xf0\x09\x6c\x67\x91\xb1\x91\x07\xae\x57\xa0\xce\xf6\xe5\x64\x9f\x8b\xf1\xf7\xeb\x31\xb2\xce\x71\x33\x9d\x77\x15\x29\x06\xcd\x56\xb9\x25\xe5\x92\x9c\xcb\xbe\x06\xa9\xcf\xa2\x2a\xc7\x1f\x14\x3a\x9e\xe3\xe6\x53\xbe\x3b\x7b\xed\x57\xe2\x50\x2f\xa6\xbc\xe2\x03\x4e\xa5\x16\xc9\x44\x69\xc7\x8b\x9f\x43\xb1\xf7\x2f\xd1\xc3\xc7\xb2\x47\x60\x35\x8d\xc7\x75\xfa\x36\x3b\xfa\x46\xb6\x9f\x5f\x5a\xe9\xd7\x7a\x8d\x96\xa2\x77\xe5\x6c\x23\x5d\xe8\x19\x30\x64\xdb\x20\x28\xd7\xac\x1c\x1d\xf7\xd4\x10\xae\x31\x3c\xf1\xd1\xaa\x6f\x48\x7f\xa1\x4b\xac\xaf\xd2\x79\x0c\xb3\xac\xf4\x9c\xc7\xcd\x4f\xec\x3a\xe3\xff\x99\xe4\x10\xe4\x87\x13\xb8\xdf\x07\x6e\x2f\x8c\xe5\xfd\x1f\xc6\xfe\x3a\x8c\x9c\xe5\xfd\x6c\xe2\xb9\xf8\x13\x00\x00\xff\xff\x2f\x51\xad\x1c\x51\x03\x00\x00" +var _stakingcollectionStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xdd\xca\xda\x40\x10\xbd\xcf\x53\x1c\xbc\x28\x11\x44\x4b\x5b\x7a\x11\xda\x4a\x88\x5a\x42\x45\x8b\xd1\x07\xd8\x26\x93\xb8\x98\xec\x84\xcd\x04\x85\xe2\xbb\x7f\x24\xeb\xcf\xc7\xa7\x17\xee\xc5\x2e\x33\xec\x9c\x73\x66\xce\xe8\xaa\x66\x2b\x58\x94\x7c\x4c\x44\x1d\xb4\x29\x22\x2e\x4b\x4a\x45\xb3\x41\x6e\xb9\xc2\xe7\x53\xb2\x0d\xff\xc4\xab\xdf\xd1\x7a\xb9\x9c\x47\xdb\x78\xbd\x0a\x67\xb3\xcd\x3c\x49\x3c\x6f\x32\x99\x20\xe2\xaa\xd2\xd2\xc0\xd2\x51\xd9\x8c\x32\x08\x1f\xc8\x34\x10\x46\x23\xea\x40\xc8\xd9\x42\xf6\x84\xa6\xa6\x54\xe7\x9a\x32\x18\xce\x08\x6c\x91\x51\x49\x85\x12\xb6\xd0\xc6\x7d\x71\x12\x90\xde\x34\x78\x9e\x58\x65\x1a\xd5\x07\x7e\x57\x18\xcf\x02\x24\x62\xb5\x29\x46\x77\x80\x2e\xb9\x8b\x8d\x7c\xfd\x32\x1d\x41\x55\xdc\x1a\x09\xb0\x5b\xe8\xd3\xf7\x6f\x43\xfc\xf7\x00\xa0\xbf\x4a\x92\x2b\xc9\xbd\xcf\x0d\xe5\x01\x3e\x3d\x1d\xc1\xf8\x21\xe3\xf5\x38\xb5\xa5\x5a\x59\xf2\x55\x9a\x3a\xae\xb0\x95\x7d\xe8\x82\x2b\x61\x77\x1a\x2a\xf3\xf1\x33\x42\xfc\xc4\xa5\x76\xfc\x8f\xad\xe5\xe3\x8f\x57\x05\xfc\xf2\x3b\x5b\x82\xe7\x96\x3d\x7e\x4f\x84\xad\x2a\xe8\xaf\x92\xfd\xf0\x26\xab\x3b\xd3\x29\x6a\x65\x74\xea\x0f\x22\x6e\xcb\xce\x14\x81\x93\x02\x4b\x79\x67\xdf\x03\xd6\xc0\x21\x9c\xdd\x0c\xe8\x44\x69\x2b\xf4\x4a\xb7\x7d\x92\x36\x97\x0d\xd9\xf6\x0b\x72\x33\xd3\xbd\x1f\xcc\x7c\x17\xdc\x0d\x75\xef\x55\xc4\xd9\x7b\x0b\x00\x00\xff\xff\xa8\x2e\xa8\x04\xbd\x02\x00\x00" func stakingcollectionStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5720,11 +5700,11 @@ func stakingcollectionStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x29, 0xa7, 0x4a, 0x17, 0x9b, 0x2d, 0xe2, 0x9b, 0xf8, 0xdb, 0xe2, 0xb2, 0x5b, 0x3b, 0xa5, 0x1c, 0xe, 0xec, 0x5d, 0xb3, 0x86, 0xb, 0xeb, 0xd5, 0x62, 0xbe, 0xc9, 0x84, 0x5, 0xe, 0x1d, 0x75}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0x8e, 0x32, 0xe0, 0x5e, 0x34, 0x11, 0x60, 0x2d, 0xf1, 0x4f, 0xad, 0x4e, 0x59, 0x3e, 0x2e, 0x5d, 0x31, 0xfd, 0x3d, 0x36, 0x15, 0xf8, 0x38, 0x97, 0x41, 0x38, 0xf, 0xdd, 0x44, 0xc6, 0x7a}} return a, nil } -var _stakingcollectionStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x8f\xd3\x30\x10\xc5\xef\xf9\x14\x4f\x3d\x2c\xa9\xb4\x6a\x25\x40\x1c\x2a\xa0\x82\xa2\x95\xf6\x04\xa2\x94\xfb\xe0\x4e\x5a\xab\x8e\x27\x1a\x4f\xd4\x45\x68\xbf\x3b\x8a\xdd\x3f\x88\xe6\xc0\x05\x1f\xe2\x78\x3c\x9e\xf7\x66\xf4\xf3\x6d\x27\x6a\x78\x08\x72\x5c\x1b\x1d\x7c\xdc\xad\x24\x04\x76\xe6\x25\xa2\x51\x69\x31\x19\xbd\x9b\x54\xd5\x7c\x3e\xc7\x4a\xda\xd6\x5b\x42\x1f\x93\xd1\x81\xb7\x30\x39\x70\x4c\x30\x41\x0e\xa0\x11\x85\xed\x19\xa9\x63\xe7\x1b\xcf\x5b\x44\xd9\x32\x44\xb1\xe5\xc0\x3b\x32\x51\xf8\x58\x52\x8a\x06\xdc\x45\xa4\xaa\x4c\x29\x26\xca\x87\x7a\x78\xf8\xf8\x69\x81\xb5\xa9\x8f\xbb\xfb\x6b\x81\x21\xb8\x79\x8c\xf6\xea\xe5\xf2\x1e\xd4\x4a\x1f\x6d\x81\xcd\x83\x7f\x7a\xf3\x7a\x8a\x5f\x15\x00\xe4\x4f\x60\x3b\x8b\x5c\x1b\xf9\xca\xcd\x02\xd4\xdb\xbe\x1e\xed\x73\x76\xfd\xfd\x7c\x8c\xac\x53\xdc\x8d\xe7\xdd\x44\xaa\xac\xd9\x29\x77\xa4\x5c\x93\x73\xc5\x57\x96\xfa\x28\xaa\x72\xfc\x4e\xa1\xe7\x29\xee\x3e\x94\xbb\xb3\xd7\x61\x25\x0e\xcd\x6c\xcc\x2b\xde\xe1\x54\x6a\x96\x4c\x94\x76\x3c\xfb\x91\x8b\xbd\xfd\x1f\x3d\xbc\xaf\x07\x04\x16\xe3\x78\xdc\xa6\xaf\x8b\xa3\x2f\x64\xfb\xe9\xa5\x95\x61\x2d\x97\xe8\x28\x7a\x57\x4f\x56\xd2\x87\x81\x01\x43\xb1\x0d\x82\x72\xc3\xca\xd1\xf1\x40\x0d\xe1\x16\xc3\x13\x1f\x9d\xfa\x96\xf4\x27\xfa\xc4\xfa\x22\x9d\xc7\x30\x29\x4a\xcf\x65\xdc\xfc\xc4\xae\x37\xfe\x97\x49\xe6\x20\x6f\x4e\xe0\x7e\xcb\xdc\x5e\x18\x2b\xfb\x5f\x8c\xfd\x71\xb8\x72\x56\xf6\xb3\x89\xe7\xea\x77\x00\x00\x00\xff\xff\xb4\xae\x2d\x5d\x51\x03\x00\x00" +var _stakingcollectionStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xdd\xca\xda\x40\x10\xbd\xcf\x53\x1c\xbc\x28\x11\x44\x4b\x5b\x7a\x11\xda\x4a\x88\x5a\x42\x45\x8b\xd1\x07\xd8\x26\x93\xb8\x98\xec\x84\xcd\x04\x85\xe2\xbb\x7f\x24\xeb\xcf\xc7\xa7\x17\xee\xc5\x2e\x73\xd8\x3d\xe7\xec\x9c\xd1\x55\xcd\x56\xb0\x28\xf9\x98\x88\x3a\x68\x53\x44\x5c\x96\x94\x8a\x66\x83\xdc\x72\x85\xcf\xa7\x64\x1b\xfe\x89\x57\xbf\xa3\xf5\x72\x39\x8f\xb6\xf1\x7a\x15\xce\x66\x9b\x79\x92\x78\xde\x64\x32\x41\xc4\x55\xa5\xa5\x41\x6b\x1a\x51\x07\xca\x20\x7c\x20\xd3\x40\x18\x3d\x80\x9c\x2d\x64\x4f\x68\x6a\x4a\x75\xae\x29\x83\xe1\x8c\xc0\x16\x19\x95\x54\x28\x61\x0b\x6d\xdc\x15\x67\x01\xe9\xcd\x83\xe7\x89\x55\xa6\x51\x7d\xe1\x77\x0f\xe3\x59\x80\x44\xac\x36\xc5\xe8\x4e\xd0\x81\xbb\xd8\xc8\xd7\x2f\xd3\x11\x54\xc5\xad\x91\x00\xbb\x85\x3e\x7d\xff\x36\xc4\x7f\x0f\x00\xfa\xad\x24\xb9\x8a\xdc\xff\xb9\xa1\x3c\xc0\xa7\xa7\x2d\x18\x3f\x20\x5e\xcf\x53\x5b\xaa\x95\x25\x5f\xa5\xa9\xd3\x0a\x5b\xd9\x87\xae\xb8\x0a\x76\xab\xa1\x32\x1f\x3f\x13\xc4\x4f\x5c\xde\x8e\xff\xb1\xb5\x7c\xfc\xf1\xaa\x81\x5f\x7e\x17\x4b\xf0\x3c\xb2\xc7\xeb\x89\xb0\x55\x05\xfd\x55\xb2\x1f\xde\x6c\x75\x6b\x3a\x45\xad\x8c\x4e\xfd\x41\xc4\x6d\xd9\x85\x22\x70\x56\x60\x29\xef\xe2\x7b\xe0\x1a\x38\x86\xb3\xeb\x01\x9d\x28\x6d\x85\x5e\xf9\x6d\x0f\xd2\xee\x32\x21\xdb\x7e\x40\x6e\x61\xba\xf3\x43\x98\xef\x8a\x7b\xa0\xee\xbc\x9a\x38\x7b\x6f\x01\x00\x00\xff\xff\x3a\x54\x8d\x83\xbd\x02\x00\x00" func stakingcollectionStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5740,11 +5720,11 @@ func stakingcollectionStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa2, 0xd9, 0xa3, 0x30, 0xe2, 0xac, 0xb5, 0xaf, 0xf, 0x7f, 0x25, 0x9f, 0x13, 0x26, 0xc8, 0x5b, 0x90, 0x55, 0x41, 0x24, 0x7e, 0x86, 0x5e, 0xbc, 0xc2, 0x80, 0x56, 0x9e, 0x7d, 0xb6, 0xb8, 0x5f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa1, 0xa8, 0x7b, 0xe7, 0xd6, 0xdb, 0x84, 0x37, 0x16, 0xe4, 0x35, 0x22, 0x17, 0xe6, 0x1a, 0xc, 0x64, 0xda, 0x5a, 0x5a, 0xd1, 0x7a, 0x73, 0x9c, 0x6e, 0x62, 0xd, 0x8d, 0xab, 0x32, 0x7d, 0x4d}} return a, nil } -var _stakingcollectionTestDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\x41\xcf\xda\x30\x0c\xbd\xe7\x57\x58\x3d\xa0\xf6\x40\x7b\x99\x76\x40\x6c\x68\x43\xe2\x84\xb4\x69\x0c\x76\x0e\xad\x5b\x22\x42\x5c\x25\x8e\xd8\x34\xf1\xdf\xa7\x26\xa5\x6b\x47\xa5\x7d\xb9\x44\xb6\x9f\xed\xf7\x6c\xab\x5b\x4b\x96\x61\xa7\xe9\x7e\x60\x79\x55\xa6\xd9\x92\xd6\x58\xb2\x22\x03\xb5\xa5\x1b\x24\xb3\xb1\x44\x8c\x32\xbf\xd3\x15\xc7\xe8\x60\xff\x45\x78\xd3\xa8\xb3\xc6\x09\x6a\xec\x1b\x90\x7b\x2a\xaf\x58\x05\x9f\xeb\x81\x63\x57\x22\x44\x51\xc0\xd1\x61\x05\x64\xf4\x2f\xa8\xc9\x02\xa3\x63\x68\xbd\x6d\xc9\xa1\x03\xa6\xe8\xe0\x0b\x42\x85\x2d\x39\xc5\xc0\xb1\xad\x37\x51\x93\x32\x21\xea\xa2\x20\x28\x07\x45\x42\xb0\x95\xc6\xc9\x60\xa4\xf2\x46\xde\xf0\x0a\x8e\x3b\xf5\xf3\xfd\xbb\x0c\x7e\x0b\x01\x00\xd0\x5a\x6c\xa5\xc5\xd4\xa9\xc6\xa0\x5d\x81\xf4\x7c\x49\x3f\x93\xb5\x74\x3f\x49\xed\x31\x83\xc5\xa7\xb2\xec\x52\x87\x94\xee\x69\xe4\x51\xa7\x6f\x58\xc3\x07\x88\x25\x72\xc7\x64\x65\x83\xf9\x39\x14\x59\x2f\x66\xa7\x9d\xbf\x78\x3e\xa6\xdd\x7c\x56\xf3\x8b\x7b\x85\x1f\x62\x97\xaf\x92\x2f\xd9\xc0\xaa\x7b\x9b\x0d\xb4\xd2\xa8\x32\x4d\xb6\xe4\x75\x05\x86\x18\x22\x15\x90\x60\xb1\x46\x8b\xa6\xc4\x30\xd8\xd9\xa9\x25\xd9\x54\x65\xfd\x5c\xff\x7f\x45\x06\x54\x7e\x92\x5e\xf3\x53\x4c\xd1\xe3\x8a\xa1\x4a\x08\xbf\x99\xf1\x84\xef\x6e\xff\xe5\x07\x84\xfc\x7f\x39\x72\x3c\xb0\xf5\x72\xba\x93\xbc\x41\x8e\x87\x36\x6c\x3f\xfe\xd3\xfe\x83\x31\x4d\xee\xcf\xad\x2f\x10\xf5\xac\x97\xb1\x55\x2c\xf0\x10\x8f\x3f\x01\x00\x00\xff\xff\x52\x6b\x3e\x3e\x6e\x03\x00\x00" +var _stakingcollectionTestDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\x9b\x40\x10\xbd\xf3\x15\xa3\x1c\x2a\x7c\x08\xf4\x50\xf5\x60\xb9\x8d\x28\xc6\x91\x65\x64\xaa\x80\xdb\xf3\x06\x06\xbc\xf2\x7a\x07\xed\x0e\x4a\xaa\x2a\xff\x5e\xc1\xc6\xc8\xd4\x54\x2a\x17\xb4\x3b\xef\xcd\xbe\x79\xf3\xe4\xb9\x25\xc3\xb0\x51\xf4\x92\xb3\x38\x49\xdd\xc4\xa4\x14\x96\x2c\x49\x43\x6d\xe8\x0c\x1f\x5f\xf3\x22\xda\x6d\xf7\x8f\x71\x96\xa6\x49\x5c\x6c\xb3\x7d\xb4\x5e\x3f\x25\x79\xee\x5d\x91\x0b\x3a\xe1\x48\xd8\xa4\xd9\xcf\x22\xdb\x25\x37\xc0\x4e\x37\xf2\x59\xe1\x14\x7c\xd8\x3f\x6e\xbf\xa5\xc9\x1c\x21\xa5\xf2\x84\xd5\x00\xb7\x17\x7c\x9a\xc5\xbb\x64\x3d\x41\x7b\x61\x08\x07\x8b\x15\x90\x56\xbf\xa0\x26\x03\x8c\x96\xa1\xed\x4c\x4b\x16\x2d\x30\xb9\x0b\x3e\x22\x54\xd8\x92\x95\x0c\xec\x34\x74\xda\x8d\x2a\xf5\x50\xb5\xce\x03\x28\x47\x13\x3c\x8f\x8d\xd0\x56\x0c\x07\x5f\x9c\xa9\xd3\xbc\x84\xc3\x46\xbe\x7e\xfe\xb4\x80\xdf\x9e\x07\x00\xd0\x1a\x6c\x85\x41\xdf\xca\x46\xa3\x59\x42\xd4\xf1\x31\x2a\xcb\x1e\x3b\x62\xfa\x4f\x21\x5f\xb5\x7e\xc2\x1a\xbe\x80\xe3\x04\xcf\x64\x0c\xbd\xac\x3e\xcc\x6e\x22\xb8\xb9\xf9\xea\xf7\x76\x2c\xe7\x17\x77\x0b\xcf\x99\x8c\x68\xf0\xbb\xe0\xe3\x62\x54\xd3\x7f\x0f\x0f\xd0\x0a\x2d\x4b\xff\x2e\xa6\x4e\x55\xa0\x89\xc1\x49\x01\x01\x06\x6b\x34\xa8\x4b\x1c\x1c\x9c\xb5\xe7\x6e\x31\x9d\xae\xbe\x64\xe1\x9f\xc3\x0d\xd5\xe0\x87\xe8\x14\x5f\x86\x08\xad\x93\x17\x8e\xec\xa1\xfc\xdf\x4a\x27\x3a\xfb\xf0\xc1\xc0\xff\x5b\x1b\xbb\x1c\xad\xee\xa7\x3b\x08\x1a\x64\x17\xb1\x71\xbd\xee\x3f\x7d\x7f\x3c\x4c\xc9\xef\x79\x7a\x6f\xe0\xe6\x59\xdd\xbb\xa7\x5c\x83\x37\xef\xed\x4f\x00\x00\x00\xff\xff\x64\xcc\x24\x0c\x66\x03\x00\x00" func stakingcollectionTestDeposit_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5760,11 +5740,11 @@ func stakingcollectionTestDeposit_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/test/deposit_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x1a, 0x62, 0x8a, 0x48, 0xfd, 0x30, 0xb2, 0xc1, 0x16, 0x95, 0xa1, 0xe8, 0x77, 0x7, 0x2a, 0x1f, 0x1c, 0xc0, 0x97, 0x59, 0x38, 0x3f, 0xdd, 0xbc, 0x1d, 0xd1, 0x3b, 0xec, 0x3e, 0x6e, 0x53}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0x8c, 0x1d, 0x33, 0xa6, 0xb6, 0xdb, 0x7f, 0x3f, 0xbd, 0x4f, 0x19, 0x21, 0x6a, 0xf7, 0xf3, 0x4e, 0x1e, 0x9d, 0x59, 0x35, 0xed, 0x39, 0xe4, 0x11, 0xb8, 0xb3, 0x35, 0x84, 0xa1, 0xbc, 0x80}} return a, nil } -var _stakingcollectionTestGet_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\xb1\x8e\xe2\x30\x10\xed\xfd\x15\xa3\x14\x28\x29\x2e\x34\xa7\x2b\x10\x77\xe8\x16\x89\x6a\x8b\xd5\xb2\x6c\x6f\x92\x49\xb0\x30\x9e\x68\x3c\x11\x8b\x56\xfc\xfb\x2a\x76\x14\x12\x11\x37\x96\x9f\xdf\xbc\x99\xf7\xc6\x5c\x1a\x62\x81\x9d\xa5\xeb\x5e\xf4\xd9\xb8\x7a\x4b\xd6\x62\x21\x86\x1c\x54\x4c\x17\x48\x66\xff\x12\x35\xaa\xfc\xa0\x33\x8e\xd9\xe1\xfd\x60\xb4\xae\x36\x47\x8b\x13\xd6\x18\x1b\x98\xaf\x54\x9c\xb1\x0c\x98\xef\x89\x63\x28\x51\x6a\xb9\x84\x83\xc7\x12\xc8\xd9\x1b\x54\xc4\x20\xe8\x05\x9a\x96\x1b\xf2\xe8\x41\x28\x02\x72\x42\xa8\x51\x40\x7a\xa9\xd6\x45\x43\xc6\x85\x2f\x1f\xdd\x40\x31\xd8\x51\x4a\x58\x3b\xaf\xc3\x23\xd5\x17\x6a\x9d\xac\xe0\xb0\x33\x5f\x7f\x7e\x67\xf0\xad\x14\x00\x40\xc3\xd8\x68\xc6\xd4\x9b\xda\x21\xaf\x40\xb7\x72\x4a\x5f\x88\x99\xae\x9f\xda\xb6\x98\xc1\xe2\x7f\x51\x74\xa5\x43\x49\x77\x2c\xca\xa8\xd3\x3b\x56\xf0\x17\xa2\x44\xee\x85\x58\xd7\x98\x1f\x83\xc8\x7a\x31\x1b\x75\xfe\x84\xfc\x4b\xbb\x70\x56\xf3\x5b\x7b\xa6\xef\x63\x97\x37\x2d\xa7\x6c\x98\xaa\x3b\x9b\x0d\x34\xda\x99\x22\x4d\xb6\xd4\xda\x12\x1c\x09\xc4\x51\x40\x03\x63\x85\x8c\xae\xc0\x90\xea\x6c\x6a\xc9\x54\x6e\xe2\xb8\x8f\x7e\xfd\x6b\xea\x3d\xaf\x51\xe2\x36\x87\x94\xe3\x9d\x3d\x02\x2b\xd1\x0b\xd3\xad\x97\x08\xf0\x5d\xdd\x15\xfc\x04\x00\x00\xff\xff\xc6\xbe\x85\xb6\xac\x02\x00\x00" +var _stakingcollectionTestGet_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\xcf\x9a\x40\x10\x86\xef\xfb\x2b\x26\x1e\x1a\x3c\x54\x7b\x68\x7a\x30\xb6\x86\x22\x1a\x23\x91\x46\x30\x3d\xaf\x30\xe0\x46\xdc\x21\xbb\x43\xd4\x34\xfe\xf7\x06\xf0\xe3\x93\xc8\x5e\x08\xb3\xcf\xbc\xd9\x79\x46\x5d\x4a\x32\x0c\xab\x82\xae\x11\xcb\xb3\xd2\xb9\x47\x45\x81\x09\x2b\xd2\x90\x19\xba\xc0\xb7\x5b\x14\xbb\xdb\xcd\x6e\xed\x85\x41\xe0\x7b\xf1\x26\xdc\xb9\xcb\xe5\xde\x8f\x22\xf1\xd2\x1c\xd3\x19\xbb\x86\x55\x10\xfe\x8d\xc3\xad\xff\x06\x56\x3a\x57\xc7\x02\xfb\xf0\x61\xb7\xde\xfc\x0e\xfc\xa1\x86\x80\x92\x33\xa6\x0d\x6e\x3f\xf8\x20\xf4\xb6\xfe\xb2\x47\x8b\xe9\x14\x0e\x16\x53\x20\x5d\xdc\x21\x23\x03\x8c\x96\xa1\xac\x4c\x49\x16\x2d\x30\xb5\x05\x3e\x21\xe4\xc8\xc0\xcf\xc0\x4a\xb7\x73\x2a\xdd\x5c\xd9\x56\x00\x24\x9d\x01\x21\xd8\x48\x6d\x65\xf3\xe3\xc8\x0b\x55\x9a\x67\x70\x58\xa9\xdb\x8f\xef\x63\xf8\x27\x04\x00\x40\x69\xb0\x94\x06\x1d\xab\x72\x8d\x66\x06\x6e\xc5\x27\x37\x49\x6a\xb6\x63\xea\x53\x20\xbf\x44\xef\x31\x83\x9f\xd0\xf6\x4c\x8e\x64\x0c\x5d\xe7\x5f\x06\xd7\x30\x79\xab\xfc\x72\x6a\x17\xb3\xe1\xad\xbd\xe3\x11\x93\x91\x39\xfe\x91\x7c\x1a\x77\xaf\xa9\xcf\x62\x01\xa5\xd4\x2a\x71\x46\x1e\x55\x45\x0a\x9a\x18\xda\xa7\x80\x04\x83\x19\x1a\xd4\x09\x36\xfa\x06\xf5\x8c\xfa\x71\xbd\x49\x9f\x8e\xe7\x5f\xfb\x33\x4f\x72\xe4\x76\x9f\x9d\xce\xf6\x3b\xfe\x14\x95\xa2\x65\x43\xf7\x67\x44\x53\x7e\x88\x87\x80\xff\x01\x00\x00\xff\xff\x07\xe3\x81\x01\xac\x02\x00\x00" func stakingcollectionTestGet_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5780,11 +5760,11 @@ func stakingcollectionTestGet_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/test/get_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x72, 0xf3, 0xa0, 0xb7, 0xa9, 0x28, 0x84, 0x63, 0xc9, 0x3a, 0x84, 0x43, 0x16, 0xd4, 0xe, 0x5a, 0x3e, 0xb0, 0x91, 0xa4, 0x25, 0x42, 0x1a, 0xf0, 0x7e, 0xf, 0x1d, 0x75, 0x1b, 0x64, 0xa1, 0xc4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x75, 0x91, 0x4b, 0xc9, 0x1e, 0x4e, 0x2, 0xc2, 0x10, 0x3, 0xbf, 0x59, 0xe5, 0xec, 0xaa, 0x4b, 0x76, 0xbb, 0x48, 0xec, 0x66, 0x5, 0x6e, 0xb4, 0x41, 0x38, 0xc4, 0x16, 0x8b, 0x3, 0xc4}} return a, nil } -var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\xcd\x6e\xd3\x40\x10\xbe\xe7\x29\xa6\x39\x14\x5b\x6a\x5d\x09\x6e\x51\x4b\xd5\x36\x02\x7a\xa1\x55\x0b\xdc\x27\xde\x71\xbc\x60\xef\x58\xbb\xe3\x94\x82\xfa\xee\xc8\x6b\xaf\x1b\xc7\x86\x46\x08\x7c\x49\x6c\x8f\xbf\xfd\x7e\x66\x76\x75\x59\xb1\x15\x78\x57\xf0\xc3\xbd\xe0\x37\x6d\xd6\x57\x5c\x14\x94\x8a\x66\x03\x99\xe5\x12\xe6\x93\xef\xe6\xb3\xd9\xc9\x09\x7c\xb2\x68\x5c\x46\xd6\x01\xc2\x47\x56\xb4\xa4\x82\xd6\x28\x6c\x81\x57\x5f\x29\x95\x16\x01\x0d\x60\x2d\x39\x5b\xfd\xc3\x97\xa6\x29\x73\x6d\xa4\x01\x40\xa3\x00\x95\x72\x20\x39\xed\x20\x08\x03\x1a\x96\x9c\xac\xff\xa2\x36\xe2\xa0\xa3\x01\xcf\x3c\x1a\x10\xad\xc8\x88\xce\x34\x29\x58\x3d\x7a\x24\x61\xb8\x50\xca\x92\x73\xc9\x6c\x26\x0d\x49\xf4\xd5\x91\x61\x45\xd7\xcb\x05\xdc\x8b\xd5\x66\x7d\x04\x2a\x2c\xd7\x3c\xfc\x7c\x6d\xe4\xcd\xeb\x23\x10\x5e\x84\xcf\x63\xf8\x39\x03\x00\x28\xa8\xd5\x32\xf2\xe1\x8e\xb2\x85\x57\x17\x4d\xda\x94\x3c\xff\xbd\x79\x30\x64\x63\x38\x9c\xae\x1b\x3d\xe9\x97\x15\x1e\xbd\xbb\xc2\x6a\xb1\x3f\x90\x47\xaa\x2c\x55\x68\x29\xea\xac\xec\x38\x5f\xb2\xb5\xfc\xf0\x05\x8b\x9a\x62\x38\xbc\x68\xdf\x05\xcd\xcd\xd5\x64\x9c\x53\x08\xa0\xf1\x55\xba\xc8\x27\x12\xeb\x32\x17\x86\xb2\x76\x02\x39\x6e\x08\x10\x36\x58\x68\x35\x91\x1c\x68\x03\x6c\x15\xf9\xa4\x2d\xa5\xa4\x37\x34\x06\x4d\x7a\x2a\x3a\x83\xe8\x60\x5a\xb3\x62\x72\x1d\xf9\x0f\xb8\xa1\x51\x41\x84\x6d\x9a\x0b\x10\x8e\xb7\xe5\x79\x67\xd0\xe8\x34\x9a\x2f\xc9\x89\x36\xe8\x99\x05\xb9\xdb\x32\x26\x04\x38\x12\xa8\xab\x64\x1e\xf7\x78\x4f\xb3\x6d\xe7\xde\x93\x00\x82\xa5\x8c\x2c\x99\xd4\x77\x65\xa3\x6f\x7b\x16\xa6\x63\x6f\x2e\x47\x45\x96\xfc\xae\xe5\xe0\x2c\x70\x4c\x9c\xb0\xc5\x35\x25\x2b\x1f\xe5\xe9\xff\x68\xc5\xb7\x51\xc3\x63\x31\xbd\x49\x8c\xcb\xef\x5b\x46\xb7\x28\x79\x3c\x70\xfa\xfc\x3c\x98\x7d\xc5\x75\xa1\xc0\xb0\x40\x4b\x7b\xd7\x26\x1c\x1b\xd3\xb4\x4b\xe3\x5e\x65\x75\x89\xf6\x11\x6a\x47\xf6\x95\x0b\x36\xcc\xe3\x91\xf3\x4d\xf1\x6d\xbd\x2a\x74\xda\xb5\x06\x70\xd6\xfa\xbf\x57\x33\x0b\x27\xd0\x43\xb6\x73\x18\x70\xce\x60\x4d\xd2\xdd\x44\xc2\xc3\xa5\x2f\x83\xa0\x14\x2b\x5c\xe9\x42\xcb\x63\x08\xbe\xf2\x6c\xa0\x24\xc9\x59\x39\xc0\x0d\xea\x02\x57\x05\x01\xb7\xd2\xba\x21\x98\x6a\x8b\x64\xd8\x17\xd3\x7b\x02\x9c\x3d\x93\x4c\xfa\xe5\x35\xb9\x41\x0a\xa1\x53\xf6\x4f\x7f\xcf\xc2\xd6\xec\xbf\x89\x1d\xcb\x17\x63\x0f\xde\x0c\x22\xdf\x1a\x39\xfa\x4e\x69\x2d\x34\xdc\xba\xee\xa8\xe4\xa9\x4d\xa5\x3d\x96\x5e\x9c\xc5\x64\x90\xbf\x19\x20\x9c\x1e\xff\x79\x42\x13\xeb\xd7\xee\x3f\xe8\x4f\x9e\xf6\x77\xe7\xe4\xd9\xba\x19\x76\xd3\x92\x2a\x76\x5a\xa6\x8f\xc7\x7f\xd1\x33\x09\x2a\xd5\x83\xde\xf8\x0d\x3c\x3a\x3d\x1e\x8a\x3d\x08\x4e\x3f\xfd\x0a\x00\x00\xff\xff\x54\xf8\x55\x3e\x2e\x08\x00\x00" +var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5d\x4f\xdb\x40\x10\x7c\xcf\xaf\x58\x78\xa8\x1c\x09\x4c\xd5\xbe\x45\x7c\x28\x4d\x28\x8d\x8a\x00\x11\xfa\x03\x36\xbe\xb5\x7d\xad\x73\x6b\x9d\xd7\x01\x8a\xf8\xef\xd5\x9d\x3f\x88\xb1\xdb\x06\x89\xbc\x44\x67\xef\xcd\xcd\xce\xcc\xfa\xf4\x3a\x67\x2b\xf0\x35\xe3\xfb\xa5\xe0\x2f\x6d\x92\x19\x67\x19\x45\xa2\xd9\x40\x6c\x79\x0d\x1f\x1f\x96\x77\xd3\xef\x8b\xab\x8b\xd9\xf5\xe5\xe5\xf9\xec\x6e\x71\x7d\x35\x9d\xcf\x6f\xcf\x97\xcb\xd1\xe8\xe8\x08\xee\x2c\x9a\x22\x26\x5b\x00\xc2\x15\x2b\x9a\x53\x46\x09\x0a\x5b\xe0\xd5\x4f\x8a\xa4\x02\x41\x03\x58\x4a\xca\x56\xff\xf6\xa5\x51\xc4\x5c\x1a\x71\x00\x68\x14\xa0\x52\x05\x48\x4a\xaf\x10\x84\x01\x0d\x4b\x4a\xd6\xef\x28\x8d\x14\x50\xb3\x84\x17\x9a\x0e\x44\x2b\x32\xa2\x63\x4d\x0a\x56\x8f\x1e\x49\x18\xa6\x4a\x59\x2a\x8a\x70\x34\x12\x47\x12\x7d\x75\x60\x58\xd1\x62\x3e\x81\xa5\x58\x6d\x92\x03\x50\xcd\x71\xee\xe1\x8f\x85\x91\xcf\x9f\x0e\x40\x78\xd2\x6c\x1f\xc3\xd3\x08\x00\x20\xa3\xaa\x97\x9e\x4c\xb7\x14\x4f\xe0\xc3\xa0\x82\x61\xef\x49\x0b\x25\xdc\x7b\x37\xc3\x7c\x77\xa0\xa7\x1d\xeb\x6e\xca\x55\xa6\xa3\xe7\x91\x3f\x38\xb7\x94\xa3\xa5\xa0\x56\x73\x02\xd3\x52\xd2\x69\xb5\x68\xfa\x74\x3f\xe7\x6b\x4a\x8d\xe8\x4e\x4b\xa9\x6d\x1e\x70\xa9\xf6\x59\x18\xd6\x65\x21\x90\xe2\x86\x00\x61\x83\x99\x56\x03\x6e\x81\x36\xc0\x56\x91\x77\xd7\x52\x44\x7a\x43\x7d\xd0\xb0\xa5\xa2\x63\x08\xf6\x86\x7b\x55\x4c\x45\x4d\xfe\x1b\x6e\xa8\x57\x10\x60\xe5\xe0\x04\x84\xc7\xdb\xed\x79\x29\xd0\xe8\x28\xd8\x9f\x53\x21\xda\xa0\x67\xd6\xb4\xbb\xdd\xc6\x40\x03\x05\x09\x94\x79\xb8\x3f\x6e\xf1\x6a\x75\x6b\xe5\x2e\x48\x00\xc1\x52\x4c\x96\x4c\xe4\x93\xe8\xfa\xdb\xce\xff\x70\x2c\xdc\xaf\xa0\x2c\x0e\xff\x16\x33\x38\x69\x38\x86\x2b\xb6\x96\xef\x8f\x77\x4d\xcb\x69\xe0\x30\x27\xc3\x73\xde\x2f\x5f\x0a\x5b\x4c\xe8\x06\x25\x1d\x77\x54\x3b\x3b\x6b\x84\x9b\x71\x99\x29\x30\x2c\x50\x51\x71\x0d\xbb\x56\x7b\x58\xfb\xe3\x9e\x3a\x4e\x8e\x2a\x97\xb5\x7d\xc0\x71\xa5\xd1\x4e\x81\x13\x0e\xa1\x85\xac\x66\xa9\xc1\x39\x81\x84\xa4\x5e\x04\xc2\xdd\xa3\xbf\x54\x44\x11\x22\xcc\x71\xa5\x33\x2d\x8f\x8d\x39\xb9\x67\x03\x6b\x92\x94\x55\x01\xb8\x41\x9d\xe1\x2a\x23\x60\xe3\xdf\xd7\x41\x1d\xb2\x2e\xec\x7a\x37\x3c\xd7\x70\xf2\x42\x32\x4c\x48\x66\x2d\x83\x9d\x2d\x7c\xe3\xc0\x9f\x06\x6f\xaa\xf7\x56\xd7\xa9\x0a\xde\xc3\xf3\xad\xb9\xa0\x07\x8a\x4a\xa1\xee\xf7\xe5\x96\xd6\x3c\x34\xf9\xd5\x7d\xf1\xdf\x81\x09\x3b\x01\x30\x1d\x84\xe3\xc3\x7f\x8f\x51\x68\xfd\xd9\xed\x86\xf6\x4a\xa8\xfe\x5f\x5d\x09\x5b\x8b\x6e\x9c\xe6\x94\x73\xa1\x65\xf8\xde\x7a\x8f\xd0\x84\xa8\x54\x0b\x7a\xed\xbf\xb2\xc1\xf1\x61\xb7\xd9\xbd\x46\xe9\xe7\x3f\x01\x00\x00\xff\xff\xe4\x62\x1c\xe8\xca\x07\x00\x00" func stakingcollectionTransfer_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -5800,11 +5780,11 @@ func stakingcollectionTransfer_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/transfer_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x83, 0xec, 0x8c, 0x84, 0x70, 0xc9, 0x5e, 0xfc, 0xb9, 0xf3, 0x21, 0x99, 0x5d, 0x9a, 0x65, 0x6a, 0xfc, 0xcb, 0xc8, 0x4f, 0x4d, 0x79, 0x9d, 0x9, 0x43, 0xed, 0x77, 0xec, 0xd9, 0x16, 0x2c, 0x33}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xff, 0x7, 0xf, 0xbf, 0x6b, 0x6b, 0x4f, 0xdf, 0xea, 0x50, 0x55, 0xed, 0xb8, 0x6b, 0x3a, 0x3b, 0xeb, 0xff, 0x95, 0xda, 0x97, 0x68, 0x16, 0xce, 0x1e, 0xbb, 0x3e, 0x85, 0x63, 0xa5, 0x36, 0x63}} return a, nil } -var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x4f\x53\xdb\x3a\x10\xbf\xe7\x53\x2c\x39\xf0\xec\x19\x30\xf7\x0c\x79\x0c\x90\x79\xef\x71\x78\x85\x81\x4e\x2f\x9d\x1e\x36\xd6\x3a\x56\xeb\x68\x3d\xd2\x3a\x0c\xed\xf0\xdd\x3b\xb2\xec\x24\x8e\xd5\x86\x43\xf1\x05\x62\xad\x76\x7f\xff\x2c\xe9\x75\xcd\x56\xe0\x9f\x8a\x9f\x9f\x04\xbf\x69\xb3\xba\xe5\xaa\xa2\x5c\x34\x1b\x28\x2c\xaf\x61\x1a\x5d\x9b\x4e\x26\x17\x17\xf0\xd1\xa2\x71\x05\x59\x07\x08\x1f\x58\x91\x2f\x23\x0b\xbc\xfc\x4a\xb9\x84\xed\x68\x00\x1b\x29\xd9\xea\xef\x6d\x5d\x9e\x33\x37\x46\xfc\x6e\x34\x0a\x50\x29\x07\x52\xd2\xfe\x76\x61\x40\xc3\x52\x92\x6d\xcb\x1b\x23\x0e\x3a\x00\xb0\x43\xe0\x3b\x68\x45\x46\x74\xa1\x49\xc1\xf2\xa5\x6d\x23\x0c\xd7\x4a\x59\x72\x2e\x9b\x4c\xc4\xc3\xc3\xb6\x3a\x31\xac\xe8\x6e\x31\x83\x27\xb1\xda\xac\xce\x40\x78\xd6\x57\xa6\xf0\x63\x02\x00\x50\x51\xc0\x3c\x22\xfb\x48\xc5\xac\x65\x91\x44\xb5\xc8\x76\xff\xde\x3f\x1b\xb2\x29\x9c\xc6\xeb\x46\x6f\xb6\x63\x85\x47\x6b\xb7\x58\xcf\xde\xde\xa8\xed\x54\x5b\xaa\xd1\x52\xd2\xa9\xd6\x61\xbe\x61\x6b\xf9\xf9\x13\x56\x0d\xa5\x70\x7a\x1d\xd6\x7a\xce\xfe\xf1\x46\x96\xd4\x6b\xed\x25\x94\xce\xd7\x43\x67\x3a\x63\x85\x61\xdd\x38\x81\x12\x37\x04\x08\x1b\xac\xb4\x8a\x38\x04\xda\x00\x5b\x15\x1c\xb5\x94\x93\xde\xd0\x41\xc7\x6c\x0b\x42\x17\x90\x9c\xc4\xd9\x2a\x26\xd7\xc1\xfe\x0f\x37\x34\x2a\x48\x30\xf8\x38\x03\xe1\x74\x9f\x58\xab\x09\x1a\x9d\x27\xd3\x05\x39\xd1\x06\x5b\x58\x3d\xd1\x7d\x0e\x11\xf4\x8e\x04\x9a\x3a\x9b\xa6\xdb\x7e\xaf\x93\x7d\xcd\xfe\x25\x01\x04\x4b\x05\x59\x32\x79\x1b\x3d\x4f\x6e\x3f\xed\x71\xc3\xfd\xe3\xa8\x2a\xb2\x5f\x85\x0d\xe6\x3d\xc6\xcc\x09\x5b\x5c\x51\xb6\x6c\x4d\xbc\x7c\x8f\x10\xfe\x9d\x78\x1c\xb3\xf8\x19\x30\x2e\x7f\x0a\x88\x1e\x50\xca\x74\xa0\xf4\xd5\x55\x2f\xf6\x2d\x37\x95\x02\xc3\x02\x01\xf6\xa1\x4c\x38\x16\xc6\x67\xc5\xab\x57\x5b\xbd\x46\xfb\x02\x8d\x23\xfb\x97\xeb\x65\x98\xa6\x23\xe5\x7d\xf1\x43\xb3\xac\x74\xde\x45\x03\xb8\x08\xfa\x1f\x8f\xb1\x70\x06\xdb\x7e\xe1\xf3\xeb\x9b\xcc\x61\x45\xd2\xfd\x48\x84\x87\x73\x6f\x7a\x36\x39\xd6\xb8\xd4\x95\x96\x97\xde\xf5\xba\x85\x02\x6b\x92\x92\x95\x03\xdc\xa0\xae\x70\x59\x11\x70\xe0\xd5\xc5\x3f\x96\x89\x6c\x18\x8a\xf8\x51\x00\xf3\x1d\xc8\x6c\x3b\x5e\x93\x1b\x58\xd0\xc7\xe4\xed\xd6\xbf\xb1\x30\x28\xfd\x4e\x9e\xf7\xda\xc4\xfd\xf6\xfe\xac\x31\x2f\xb5\xa1\x8e\xff\x9d\x29\x18\xe6\xbf\xff\x84\xb2\x15\xc9\xff\x83\x5d\x2e\x49\x3f\x87\x4b\xe0\xcb\x51\x0a\xab\xdd\xcc\x6d\x9e\xb4\x9f\x5a\x70\x08\x93\xab\x29\x0f\xf7\x8e\x6f\x09\x77\x8b\x83\x84\x3e\xd2\x9a\x47\x87\x5d\xb8\x10\x8f\x9e\x11\xd9\x80\xba\xd9\x6d\xbf\x3c\x3f\xc2\xd9\xb6\x53\xfd\xc0\xed\x75\x17\xfe\x0e\xc1\x2d\xa8\x66\xa7\x25\x72\xed\xfe\x89\xa4\x66\xa8\x94\xef\x7a\xdf\xde\x15\xc9\xe5\xf9\x1e\x85\x93\xb3\x88\x95\xb3\xc8\xbb\x90\xb2\xd7\xc9\xeb\xcf\x00\x00\x00\xff\xff\x2d\x4d\x77\x9d\xa0\x08\x00\x00" +var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5d\x4f\xdb\x4a\x10\x7d\xcf\xaf\x18\x78\xb8\x72\x24\x30\xf7\x39\x22\xa0\xdc\x84\x4b\xa3\x52\x40\x84\xb7\xaa\x0f\x13\xef\x38\xde\xd6\xd9\xb1\x76\xc7\xa1\x14\xf1\xdf\xab\xf5\xda\xf9\xc0\x6e\x13\x24\xf2\x12\xd9\x9e\x3d\x73\xe6\x9c\xb3\xbb\x7a\x59\xb0\x15\xf8\x3f\xe7\xa7\x99\xe0\x0f\x6d\x16\x63\xce\x73\x4a\x44\xb3\x81\xd4\xf2\x12\xfe\xfd\x39\x7b\x1c\x7d\x9e\xde\x5e\x8f\xef\x6e\x6e\xae\xc6\x8f\xd3\xbb\xdb\xd1\x64\xf2\x70\x35\x9b\xf5\x7a\x67\x67\xf0\x68\xd1\xb8\x94\xac\x03\x84\x5b\x56\xe4\x51\xc8\x02\xcf\xbf\x53\x22\x01\x01\x0d\x60\x29\x19\x5b\xfd\xab\xaa\x4b\x12\xe6\xd2\x88\x5f\x8d\x46\x01\x2a\xe5\x40\x32\xda\x5e\x2e\x0c\x68\x58\x32\xb2\x55\x79\x69\xc4\x41\xcd\x0f\x36\x04\x3d\x82\x56\x64\x44\xa7\x9a\x14\xcc\x9f\x2b\x18\x61\x18\x29\x65\xc9\xb9\xb8\xd7\x13\x4f\x0f\xab\xea\xc8\xb0\xa2\xe9\x64\x00\x33\xb1\xda\x2c\x4e\x40\x78\xd0\x54\xf6\xe1\xa5\x07\x00\x90\x53\xe0\xdc\xd2\xe2\x81\xd2\x01\xfc\xd3\x29\x53\xdc\x7a\xb3\x86\x12\x6e\x7d\x1b\x63\x71\x38\xd0\xcb\x81\x75\xf7\xe5\x3c\xd7\xc9\x6b\xaf\x6a\x5c\x58\x2a\xd0\x52\x54\x0b\x37\x80\x51\x29\xd9\x28\x3c\x34\x73\xfa\x9f\x37\x2f\xa3\x46\x5f\x2f\x9b\xd4\x5e\xbe\x75\xa3\x36\x53\x18\x96\xa5\x13\xc8\x70\x45\x80\xb0\xc2\x5c\xab\x0e\x57\x40\x1b\x60\xab\x82\x8b\x96\x12\xd2\x2b\x7a\x83\x18\xaf\x49\xe8\x14\xa2\xa3\xee\x29\x15\x93\xab\x69\x7f\xc2\x15\xb5\x0a\x22\x0c\xde\x0d\x40\xb8\xbf\x3d\x58\x25\x02\x1a\x9d\x44\xc7\x13\x72\xa2\x0d\x56\xb4\x9a\x41\xb7\x67\xe8\x60\xef\x48\xa0\x2c\xe2\xe3\xfe\x1a\xaf\xd6\xb5\xd6\xec\x9a\x04\x10\x2c\xa5\x64\xc9\x24\x55\xdc\xfc\x70\xdb\x09\xef\x0e\x84\xff\x39\xca\xd3\xf8\x4f\x01\x83\x61\xc3\x31\x9e\xb3\xb5\xfc\x74\x7e\x68\x4e\x2e\x22\x8f\x39\xe8\xde\xc6\xed\xf2\x99\xb0\xc5\x05\xdd\xa3\x64\xfd\x1d\xd5\x2e\x2f\x1b\xe1\xc6\x5c\xe6\x0a\x0c\x0b\x04\x2a\x7e\x60\x3f\x6a\x0b\xeb\xb8\xdf\x52\xc7\xcb\x11\x12\x59\xdb\x07\x9c\x06\x8d\xf6\x47\x4d\x38\x86\x35\x5e\xd8\x42\x0d\xc8\x10\x16\x24\xf5\x43\x24\xbc\xdb\xf7\xbf\xc0\x12\x21\xc1\x02\xe7\x3a\xd7\xf2\xdc\x38\x53\x54\x54\x60\x49\x92\xb1\x72\x80\x2b\xd4\x39\xce\x73\x02\x36\xd5\xf7\x3a\xa2\x5d\xbe\xc5\xbb\xc6\x75\x6f\x67\x18\x6e\x48\xc6\x0b\x92\xf1\x9a\xc1\xc1\xfe\xbd\x73\x9f\x5f\x44\xef\xaa\xaf\x7c\xae\x23\x15\x7d\xa8\xe1\xde\xa0\x25\x26\x99\x36\x54\x0b\x30\x35\x29\xc3\xf0\xef\x39\xf7\x22\x7d\xd9\x59\xe5\xa2\xfe\xd7\x70\x3a\x7f\xdb\x4b\x6f\xb1\xe9\xb9\x0e\x94\xf6\x5d\x53\x0e\x69\x72\x05\x25\xe1\x42\xf0\x90\x30\x9d\xbc\x89\xe8\x03\x2d\xb9\x75\x22\x85\x9b\x6a\xef\x46\x8e\x77\x46\x37\x9b\xe5\xe7\xa7\x7b\x66\xb6\x55\x57\xdf\x70\x7d\x0f\x85\xff\x5d\x72\x13\x2a\xd8\x69\xe9\xb8\x0f\x3f\x22\xaa\x31\x2a\xe5\x51\xef\xaa\x03\x3d\x3a\x3f\xdd\x1a\xe1\xe8\xa4\xc3\xca\x41\xc7\xbb\x90\xa0\xd7\xde\xeb\xef\x00\x00\x00\xff\xff\x96\xaa\xe3\x77\x3c\x08\x00\x00" func stakingcollectionTransfer_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5820,11 +5800,11 @@ func stakingcollectionTransfer_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/transfer_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x5d, 0xe5, 0x5c, 0x17, 0xee, 0x42, 0xc6, 0x72, 0x3f, 0x5d, 0x21, 0xbf, 0xd2, 0x37, 0x7a, 0x97, 0x58, 0x8a, 0x4, 0x83, 0x39, 0x9c, 0x7b, 0x7e, 0x8e, 0xfa, 0xed, 0xbe, 0x18, 0x27, 0xe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0x67, 0x83, 0xba, 0x26, 0xad, 0xc, 0x4e, 0xfe, 0xb7, 0x94, 0x11, 0x42, 0x42, 0xdc, 0x83, 0x93, 0x25, 0x10, 0x37, 0x21, 0xa1, 0x8f, 0xec, 0x4e, 0xf6, 0xfb, 0xed, 0x96, 0x5e, 0x71, 0x29}} return a, nil } -var _stakingcollectionUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\x4d\xaf\xd3\x30\x10\xbc\xe7\x57\x8c\x72\x78\x24\x97\xf4\x5e\x01\x4f\xa5\x08\x09\xa9\x12\xa8\x95\xb8\x1b\x77\x93\x5a\x75\xbd\x61\xbd\x56\x41\xa8\xff\x1d\x25\x4e\xda\x43\x73\xe0\xf2\x7c\xc8\x87\xf7\x63\x66\x77\xc6\x5d\x7a\x16\xc5\x17\xcf\xd7\x83\x9a\xb3\x0b\xdd\x96\xbd\x27\xab\x8e\x03\x5a\xe1\x0b\xca\xc5\x58\x59\x14\xab\xd5\x0a\x7b\xfa\x95\x28\x6a\x84\x32\x52\x88\x6a\xce\x84\xcd\x6e\x07\xe5\x33\x85\x88\x96\x05\x7a\x22\xc4\x9e\xac\x6b\x1d\x1d\x11\xf8\x48\x60\xc1\x91\x3c\x75\x46\x59\xe0\x42\x4e\xc9\x08\xb0\x77\x88\xa2\x50\x31\x21\x9a\xf1\xa7\x1a\x0a\xbf\x7e\x5e\xe3\xa0\xe2\x42\x57\xe3\x6f\x01\x00\xe3\xc3\x93\xce\xe5\x0f\x82\x7b\x6a\xd7\x30\x49\x4f\xd5\x22\xff\xe6\xf1\xf9\xed\x1a\x48\x6a\xbc\x2c\xe7\x3d\xdd\x14\x23\x66\x2f\xd4\x1b\xa1\xca\x58\xcb\x29\xe8\x04\xf5\x89\x45\xf8\xfa\xc3\xf8\x44\x35\x5e\x36\x39\x36\x73\x1d\x4e\x24\xdf\x36\x4b\x5c\xf1\x01\x53\xab\x26\x2a\x8b\xe9\xa8\xf9\x39\x36\x7b\xff\x16\x33\x7c\xac\x06\x69\xd7\xcb\xb2\x3f\xa7\x1f\x32\xa3\xef\x46\x4f\xf5\x7d\x94\xe1\xbc\xbe\xa2\x37\xc1\xd9\xaa\xdc\x72\xf2\x83\xba\x8a\x4c\x1b\x06\x42\x2d\x09\x05\x4b\x83\x39\x0c\x9e\xed\x35\x29\xdf\x8b\xbb\x18\xf9\x83\x14\x49\xde\xc5\x79\x0d\x65\x46\xba\xe5\x75\xd3\x6f\xb2\x49\xe9\x7f\x36\xd9\x4c\x3e\xdc\x78\x7f\x37\x4d\x7e\xcf\x1d\x6f\xc5\xbf\x00\x00\x00\xff\xff\x0c\xba\x48\x82\xf6\x02\x00\x00" +var _stakingcollectionUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xc1\x6e\xc2\x30\x0c\x86\xef\x7d\x8a\x5f\x1c\xa6\x72\x29\x3b\x57\xdb\x50\x55\xd8\x84\x56\xc1\x44\x79\x81\xac\xb8\x25\x22\xc4\x5d\xe2\x0a\xa4\x89\x77\x9f\x4a\x80\x1d\xe0\x80\x0f\xad\x1c\xd9\xbf\x3f\xfb\xd7\xbb\x96\x9d\xe0\xdd\xf0\xbe\x14\xb5\xd5\xb6\xc9\xd9\x18\xaa\x44\xb3\x45\xed\x78\x87\xe7\x43\xb9\xca\x3e\x67\xf3\x8f\x7c\x51\x14\xd3\x7c\x35\x5b\xcc\xb3\xc9\x64\x39\x2d\xcb\x28\x1a\x8d\x46\x58\xd2\x4f\x47\x5e\x3c\x84\xd1\x59\x2f\x6a\x4b\xc8\x8a\x02\xc2\x5b\xb2\x1e\x35\x3b\xc8\x86\xe0\x5b\xaa\x74\xad\x69\x0d\xcb\x6b\x02\x3b\xac\xc9\x50\xa3\x84\x1d\xb4\x0d\x25\x01\x00\xd5\x95\x20\x8a\xc4\x29\xeb\xd5\x29\x89\xfb\xc6\xd9\x24\x45\x29\x4e\xdb\x66\x88\xdf\x08\x00\x4e\x1f\x43\x72\x69\xff\xe7\x5f\x52\x9d\xe2\xe9\xee\x6a\xc9\xcd\x4b\x74\xd2\x69\x1d\xb5\xca\x51\xac\xaa\x8a\x3b\x2b\x29\xb2\x4e\x36\x59\x48\x2e\x03\xfb\xf0\x64\xea\xe4\xde\x40\xbc\xe2\xdc\x9b\x7c\xb3\x73\xbc\x7f\x79\x14\xe0\x2d\xee\xcf\x9d\xde\xb7\xe2\xb6\xbc\x14\x76\xaa\xa1\x2f\x25\x9b\xe1\x15\xab\x8f\xf1\x18\xad\xb2\xba\x8a\x07\x39\x77\xa6\x3f\xb7\x20\xa0\xc0\x51\xdd\xbb\x74\xa3\x35\x08\x0a\xc7\x70\x03\x3a\x50\xd5\x09\x3d\xb2\x6d\x72\x36\x3c\x33\xe6\xea\x4e\xf8\x5f\x14\x8f\xd1\x5f\x00\x00\x00\xff\xff\x92\xff\xa2\x70\x62\x02\x00\x00" func stakingcollectionUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -5840,11 +5820,11 @@ func stakingcollectionUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7c, 0xca, 0x8a, 0xc8, 0xf3, 0x52, 0x88, 0x5d, 0x94, 0xa8, 0xb5, 0xc9, 0x3b, 0x48, 0x3e, 0x46, 0x50, 0xcb, 0xf4, 0x7d, 0x65, 0x39, 0xd5, 0xb2, 0x99, 0xbf, 0xc6, 0xa4, 0xd7, 0xaa, 0x4e, 0xa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0xba, 0xb4, 0x65, 0xa5, 0xa4, 0x6, 0xf6, 0x67, 0x0, 0x75, 0x3a, 0x4f, 0x78, 0x89, 0xab, 0x9a, 0x3c, 0x83, 0xba, 0x1c, 0xf5, 0xe8, 0xae, 0xe7, 0x92, 0xc8, 0xa, 0xea, 0x9e, 0xd7, 0xc1}} return a, nil } -var _stakingcollectionUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x4e\xe3\x40\x0c\xbd\xe7\x2b\x9e\x72\xe8\x26\xd2\x2a\xbd\x57\xbb\x54\xa5\x08\x89\x0b\x20\x2a\x71\x37\x89\x93\x8c\x48\x67\x22\x8f\xa3\x80\x50\xff\x1d\x25\xd3\xb4\x82\xe6\xc0\x05\x1f\x12\xcb\xf6\xf8\x3d\xdb\xcf\xec\x5b\x27\x8a\xdb\xc6\xf5\x3b\xa5\x57\x63\xab\xad\x6b\x1a\xce\xd5\x38\x8b\x52\xdc\x1e\xf1\x6c\x2e\x8e\xa2\xe5\x72\x89\x6d\x4d\xb6\x62\x0f\xad\x19\x96\xb5\x77\x32\x94\x81\x8a\x42\xd8\x7b\x94\x4e\xc6\x94\x6f\x39\x37\xa5\xe1\x02\xd6\x15\x1c\x45\x2a\x64\x3d\x8d\x8d\x92\x21\x72\x77\xb3\xc2\x4e\xc5\xd8\xea\x2f\x2c\xf7\x9b\xf0\x7c\x8a\xa5\xf8\x88\x00\x60\xfc\x34\xac\xf0\xdf\xd9\x3c\x71\xb9\x02\x75\x5a\x27\xb3\x64\xb3\xb3\xfb\xd0\x5b\x96\x14\x8b\xf9\xba\x8b\x48\x34\x62\xb6\xc2\x2d\x09\x27\x94\xe7\xae\xb3\x7a\x84\xba\x76\x22\xae\x7f\xa6\xa6\xe3\x14\x8b\x4d\xc8\x4d\x5c\x07\xf3\xdc\x94\xd9\x1c\x57\xfc\xc7\xb1\x55\xe6\xd5\x09\x55\x9c\xbd\x8c\xcd\xfe\xfd\xc6\x0c\x57\xc9\x70\xc7\xd5\xfc\x8d\x2f\xcb\x77\x81\xd1\x23\x69\x9d\x9e\x46\x19\x6c\xbd\x46\x4b\xd6\xe4\x49\xbc\x75\x5d\x33\x9c\x52\x11\x68\x83\x20\x5c\xb2\xb0\xcd\x19\xea\x40\xb8\xd4\x92\xb1\xa3\x12\x5a\x31\x7b\x92\x77\x74\x9e\xe5\x8f\x9f\xd6\x10\x07\xa4\x43\x58\x37\xbf\x71\xde\x29\xff\x64\x93\x59\xd7\x16\xa4\x7c\x7f\x92\xde\x51\x3a\x27\x55\x85\xff\x57\x55\x9d\xfd\x09\xf6\x10\x7d\x06\x00\x00\xff\xff\xf5\xc0\xe1\x03\x08\x03\x00\x00" +var _stakingcollectionUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x51\x5d\x8b\xe2\x40\x10\x7c\x9f\x5f\x51\xf8\x70\x44\x38\xe2\x3d\x87\xbb\x93\x10\xdd\x45\x56\x74\x31\xfe\x81\xd9\xa4\x93\x0c\x1b\xa7\xc3\x4c\x87\x08\x8b\xff\x7d\x49\xa2\x2e\xbb\xfa\x60\x3f\xe4\xa3\x67\xba\xaa\xba\xca\x1c\x1a\x76\x82\xa7\x9a\xbb\x54\xf4\xbb\xb1\x65\xc2\x75\x4d\x99\x18\xb6\x28\x1c\x1f\xf0\xe7\x98\xee\xe3\x97\xd5\xe6\x39\xd9\xae\xd7\xcb\x64\xbf\xda\x6e\xe2\xc5\x62\xb7\x4c\x53\xa5\x66\xb3\x19\x92\x4a\xdb\x92\x3c\xa4\x22\x58\x92\x8e\x5d\x8f\x02\x9d\xe7\x8e\xbc\x47\xc1\x6e\x38\xf2\x0d\x65\xa6\x30\x94\xc3\x72\x4e\x4a\x89\xd3\xd6\xeb\x81\x27\xe8\x3b\xab\x45\x84\x54\x9c\xb1\xe5\x6f\x58\xea\xe2\x71\xfc\xd2\x9b\xe2\x43\x01\xc0\xf0\xa8\x49\xe0\x7f\x8a\xdd\x51\x11\xe1\xd7\xdd\x3d\xc2\x9b\x8e\x1a\x70\x1a\x47\x8d\x76\x14\xe8\x2c\xe3\xd6\x4a\x84\xb8\x95\x2a\x1e\x7f\x2e\x84\x7d\x79\xaa\x8b\xf0\x1e\x21\xfe\xe1\x3c\x1b\xbe\xb1\x73\xdc\xfd\x7d\x54\xc0\xff\xa0\xf7\x36\xba\xef\xfb\xed\xf5\x54\xd8\xe9\x92\x5e\xb5\x54\xd3\xab\xac\xbe\xe6\x73\x34\xda\x9a\x2c\x98\x24\xdc\xd6\xbd\xb7\x82\x51\x0a\x1c\x15\x10\xc6\x0d\xd6\x64\x44\x38\x8d\x1e\xd0\x91\xb2\x56\xe8\x91\x6d\xc3\xb6\xc9\xb5\xd0\xe6\x9a\xf1\x39\xa3\x6b\x7c\xe3\xfb\x7b\x7c\x5f\xdf\x17\xda\x93\xfa\x0c\x00\x00\xff\xff\xa5\x85\x44\xd5\x74\x02\x00\x00" func stakingcollectionUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -5860,11 +5840,11 @@ func stakingcollectionUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcf, 0x19, 0xee, 0xbd, 0xf6, 0xbe, 0xd2, 0x9d, 0x85, 0x71, 0xd0, 0xad, 0xf4, 0xa7, 0xf2, 0x23, 0xe5, 0xd4, 0x8f, 0xd5, 0xa8, 0x89, 0x1f, 0x90, 0x22, 0x4a, 0x2d, 0xe3, 0xb8, 0xeb, 0x86, 0xf1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdd, 0xff, 0x7b, 0x7f, 0xd9, 0x90, 0x89, 0x51, 0x97, 0x22, 0x0, 0x42, 0x8d, 0x15, 0xe0, 0x7, 0xb8, 0x63, 0x93, 0x9e, 0x61, 0xf, 0x72, 0x10, 0xf7, 0xf8, 0x90, 0x99, 0xf9, 0x47, 0x7a, 0x14}} return a, nil } -var _stakingcollectionWithdraw_from_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xc1\x8e\xd4\x30\x0c\x86\xef\x7d\x0a\xab\x87\xa5\x95\x50\xe7\x82\x38\x54\xc0\x0a\x16\x8d\xc4\x01\x81\x76\x80\xbb\x49\xdd\x69\x34\x69\x5c\x1c\x87\xee\x0a\xed\xbb\xa3\x34\xd3\x5d\x89\xe9\x81\xcb\xe6\xd0\x54\x89\x63\xff\xbf\xfd\xd9\x71\x62\x51\xd8\x3b\x9e\x0f\x8a\x27\xeb\x8f\x37\xec\x1c\x19\xb5\xec\xa1\x17\x1e\xa1\xdc\xbc\x2b\x8b\x62\xb7\xdb\xc1\x2d\xfd\x8a\x14\x14\x94\x61\xb6\x3a\x74\x82\x33\x28\x9f\xc8\x87\xfc\x58\x07\x82\x11\xcd\x60\x3d\x01\x1a\xc3\xd1\xeb\xf2\xee\xdb\x40\x6b\x1c\x0a\x01\x46\xe5\x11\xd5\x1a\x74\xee\x1e\x3a\x9a\x38\x58\xa5\x2e\xa5\x4d\x19\xa2\x77\x6c\x4e\xd4\xad\x29\xe0\x37\x46\xa7\x45\xa1\x82\x3e\xe0\xa2\xa7\xf2\xdc\xd1\xa7\x8f\x2d\x1c\x54\xac\x3f\xbe\x04\x1c\x53\x64\x0b\xdf\xf7\xf6\xee\xf5\xab\x1a\xfe\x14\x00\x00\xcb\xc7\x91\x42\xf8\xd7\xd0\x2d\xf5\x6d\xd2\x31\x54\x9b\x7e\x9b\xa7\xdf\x2f\xb3\x27\xa9\xe1\x6a\x3b\xee\xe2\xa4\x58\x6a\x4e\x42\x13\x0a\x55\x67\x07\xe7\x52\x1f\x58\x84\xe7\x1f\xe8\x22\xd5\x70\xf5\x3e\xdf\xad\x5a\xd3\x0a\xe4\xfa\x66\x4b\x2b\xbc\x5d\x9b\xd1\x04\x65\xc1\x23\x35\x3f\x97\x64\x6f\x9e\xc3\xc3\xbb\x2a\x4d\xb3\xdd\xc6\xe4\x32\xfc\x90\x15\x7d\x45\x1d\xea\x47\x2b\x69\x5d\x5f\xc3\x84\xde\x9a\xaa\xbc\xe1\xe8\x3a\xf0\xac\x90\x65\x03\x82\x50\x4f\x42\xde\x24\x32\x00\xe1\x12\x47\xeb\x17\x1a\x26\xb1\x23\xca\x3d\xc4\x40\xf2\x22\xac\x6d\x28\x73\xa5\x87\xdc\x6e\xba\x23\x13\x95\xfe\xa7\x93\xcd\x0a\xee\x5e\x78\xfc\x9c\x59\x3d\x4f\xe2\x11\xaa\xbc\x3f\x41\x95\xf7\xb5\xe2\x43\xf1\x37\x00\x00\xff\xff\x3e\x13\xf0\x11\x46\x03\x00\x00" +var _stakingcollectionWithdraw_from_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x8e\xd3\x40\x0c\xbd\xe7\x2b\xac\x3d\xa0\xac\x84\x52\x0e\x88\x43\x04\xac\xa2\xb4\x45\x15\xa5\x45\x4d\xf9\x00\x33\x71\x9a\x51\x27\xe3\x30\xf1\x90\x22\xd4\x7f\x47\xc9\x34\x45\xda\xf6\x50\x1f\x62\x65\x64\x3f\x3f\xbf\x67\xdd\xb4\xec\x04\x96\x86\xfb\x42\xf0\xa8\xed\x21\x67\x63\x48\x89\x66\x0b\x95\xe3\x06\xde\x9d\x8a\x7d\xf6\x75\xb5\xf9\x92\x6f\xd7\xeb\x45\xbe\x5f\x6d\x37\xd9\x7c\xbe\x5b\x14\x45\x14\xcd\x66\x33\xd8\xd1\x2f\x4f\x9d\x80\x30\xf4\x5a\xea\xd2\x61\x0f\xc2\x47\xb2\x5d\xe8\x97\x9a\xa0\x41\x55\x6b\x4b\x80\x4a\xb1\xb7\x32\xf6\xed\x6b\x9a\xea\xd0\x11\xa0\x17\x6e\x50\xb4\x42\x63\xfe\x40\x49\x2d\x77\x5a\xa8\x1c\x60\x07\x04\x6f\x0d\xab\x23\x95\x13\x04\xfc\x46\x6f\x24\x8a\xc4\xa1\xed\x70\xa4\x1b\x5b\x2e\x69\x35\x4f\xa1\x10\xa7\xed\xe1\x2d\x60\x33\x54\xa6\xf0\x63\xa9\x4f\x1f\xde\x3f\xc3\xdf\x08\x00\x60\xfc\x18\x12\xe8\x5e\xef\xbb\xa3\x2a\x85\x37\x77\xa5\x48\x6e\x5e\xa2\x11\xa7\x75\xd4\xa2\xa3\xf8\xc2\x2a\x85\xcc\x4b\x9d\x85\x9f\x69\xe0\x10\x1d\x99\x2a\xb9\x37\x10\x3e\x4d\x1b\x25\x3f\xd9\x39\xee\x3f\x3e\x4a\xe0\x73\x3c\xc8\x9b\xde\xb7\xee\xb6\xbc\x10\x76\x78\xa0\xef\x28\xf5\xf3\x95\xd6\x10\x2f\x2f\xd0\xa2\xd5\x2a\x7e\xca\xd9\x9b\x12\x2c\x0b\x04\x2a\xe0\xa8\x1a\xf4\xbf\xc1\x7a\x0a\x08\xe7\xa0\x01\x9d\x48\x79\xa1\x47\xb6\x4d\xa6\x0b\x59\x3a\x6e\xbe\x85\xa3\xb8\xa8\x75\x75\x2f\xe4\xff\xee\x85\x3c\x4d\x3c\x47\xff\x02\x00\x00\xff\xff\xdb\xab\x20\x8d\xb2\x02\x00\x00" func stakingcollectionWithdraw_from_machine_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -5880,11 +5860,11 @@ func stakingcollectionWithdraw_from_machine_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_from_machine_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x79, 0x73, 0xe2, 0xa4, 0xc3, 0x56, 0x8, 0x7c, 0xae, 0x27, 0x26, 0x4d, 0x17, 0x2d, 0xf2, 0xd5, 0xe4, 0x6e, 0x23, 0xa6, 0x6c, 0x17, 0xd, 0xf2, 0xe, 0x35, 0xdb, 0x65, 0x31, 0x32, 0xcb, 0x3c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc7, 0x7c, 0xe3, 0xa9, 0xe3, 0x68, 0x1a, 0x64, 0x88, 0xe, 0xc6, 0xc4, 0xa4, 0x9b, 0x35, 0x9f, 0xa1, 0x43, 0xf2, 0x57, 0x79, 0xca, 0x6d, 0xa4, 0x6e, 0x57, 0xfe, 0xbe, 0x2f, 0x2e, 0x1f, 0xef}} return a, nil } -var _stakingcollectionWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x8f\xd3\x3c\x10\xbe\xe7\x57\x3c\xea\x61\xdf\x56\xaa\x5a\xe9\x05\x71\xa8\x80\x6a\x59\xb4\xd2\x9e\x40\xed\x2e\xf7\xc1\x99\xb4\x56\x1d\x3b\x8c\x27\x64\x2b\xb4\xff\x1d\x39\x1f\xcd\x8a\xe6\xc0\x05\x1f\xea\xc6\x9e\x3c\x1f\x93\x67\x6c\x59\x05\x51\xdc\xbb\xd0\xec\x95\x4e\xd6\x1f\xee\x82\x73\x6c\xd4\x06\x8f\x42\x42\x89\xd9\xe4\xdd\x2c\xcb\xd6\xeb\x35\x76\xfc\xa3\xe6\xa8\xd0\x80\xc6\xea\x31\x17\x6a\x20\xdc\x90\xe4\x9c\x43\xc3\x89\x7d\x44\x11\x04\x7a\x64\xc4\x8a\x8d\x2d\x2c\xe7\xf0\x21\x67\x04\x41\xce\x8e\x0f\xa4\x41\x60\x7d\x57\xd2\xd1\xc0\x5c\x78\x5a\x96\xc7\x23\x0f\x60\x24\x0c\xaa\x35\x94\xa4\xd6\x90\x73\x67\xe4\x5c\x85\x68\xb5\xe5\x6b\x41\x6a\xef\x82\x39\x71\x0e\x32\x26\xd4\x5e\xf1\x93\x6a\xa7\x28\xac\x44\x5d\xb6\x78\xb7\x3e\x4f\x95\x1e\xe4\xcf\xe8\x8b\x5f\xe1\x8f\x88\xd6\xf7\x98\x53\x88\x59\xa6\x42\x3e\x52\xab\x73\x9e\x3c\x3d\x7c\xde\x60\xaf\x62\xfd\x61\x39\x7a\x4b\x87\x4f\x0f\x5e\xdf\xfc\xbf\x5d\x82\xca\xf4\xfe\x06\x4f\xf7\xf6\xf9\xdd\xdb\x05\x7e\x65\x00\xd0\xfe\x38\xd6\xc1\xff\xd8\xe6\x1d\x17\x9b\xe4\xf7\x38\x9f\xfc\x0a\xab\xf1\xef\x97\xc6\xb3\x2c\x70\x33\x5d\x77\x75\x92\xb5\x9c\x95\x70\x45\xc2\xf3\xde\x57\x4f\xf5\x29\x88\x84\xe6\x1b\xb9\x9a\x17\xb8\xb9\xed\xee\x06\xad\x69\x45\x76\xc5\x6a\x4a\x2b\x3e\x0c\x2d\x5a\x45\x0d\x42\x07\x5e\x7d\x6f\xc1\xde\xff\x0b\x0f\x1f\xe7\x29\xa0\x9b\xe9\xf0\x5e\x97\xef\x3b\x45\x5f\x49\x8f\x8b\x8b\x95\xb4\xb6\x5b\x54\xe4\xad\x99\xcf\xee\x42\xed\x52\x3c\x15\x9d\x6c\x10\x84\x0b\x16\xf6\x26\x25\x10\x84\xeb\x21\xe9\xa3\x5b\x89\x2d\x49\xce\xa8\x23\xcb\x7f\x71\x68\xc3\xac\x63\x7a\xe9\xda\xcd\xcf\x6c\x6a\xe5\xbf\xe9\xe4\x6a\x18\xa7\x5d\x3f\x4d\x8f\x6d\x3e\x2f\x31\xeb\xf6\x3f\x62\xf6\xea\x61\x8c\x5a\xb7\x0f\x3a\x5e\xb2\xdf\x01\x00\x00\xff\xff\xea\x2d\x23\xfe\xf2\x03\x00\x00" +var _stakingcollectionWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x8f\x1c\x8a\x03\xc6\x2e\x6d\xe9\x41\xb4\x35\xc2\x4e\x8a\x69\x48\x8a\xe5\xfc\x80\xad\x34\xb2\x16\xaf\x77\xd4\xd1\xa8\x72\x28\xf9\xef\x65\x25\xcb\x0e\xb5\x0f\xde\x83\x96\x5d\x46\xdf\xbc\xd9\xf7\xec\xae\x62\x51\xdc\x3b\x6e\x53\x35\x5b\xeb\x37\x73\x76\x8e\x32\xb5\xec\x51\x08\xef\xf0\x7e\x9f\xae\x93\x1f\xcb\xc7\xef\xf3\xa7\x87\x87\xbb\xf9\x7a\xf9\xf4\x98\x2c\x16\xab\xbb\x34\x8d\xa2\xe9\x74\x8a\x15\xfd\x6e\xa8\x56\x28\xa3\xb5\x5a\xe6\x62\x5a\x08\xb5\x46\x72\xca\xa1\xbc\x25\x5f\xa3\x60\x81\x96\x84\xba\xa2\xcc\x16\x96\x72\x78\xce\x09\x2c\xc8\xc9\xd1\xc6\x28\x0b\xac\xef\x4b\x7a\x15\xc8\x8e\x32\xba\x2e\xeb\x92\x06\x98\x11\x82\x69\x94\x77\x46\x6d\x66\x9c\x7b\x41\x4e\x15\xd7\x56\xbb\x7e\x1d\xa4\xf1\x8e\xb3\x2d\xe5\x30\x59\xc6\x8d\x57\xfc\x31\x8d\x53\x14\x56\x6a\x1d\x77\xbc\xc4\xe7\xa1\xd2\xc3\xf8\x17\x1c\x8a\xdf\xf0\x4f\x44\xeb\x0f\xcc\x4b\xc4\x28\x52\x31\xbe\x36\x9d\xce\x51\x98\x69\xb9\x88\x91\xaa\x58\xbf\x19\x9f\x66\x0b\x97\xcf\x4b\xaf\x1f\x3f\xcc\xc6\x30\xbb\xf0\x7f\x8c\xe7\x7b\xbb\xff\xfc\xe9\x16\x7f\x23\x00\xe8\x3e\x8e\x74\x98\xff\xe4\xc2\x8a\x8a\x18\xef\x2e\x1a\x34\x39\xbb\x89\x3a\x4e\x25\x54\x19\xa1\xd1\x41\x6b\x8c\xa4\xd1\x32\xe9\x0f\x43\xc3\xb0\x6a\x72\xc5\xe4\x52\x43\x7c\x1d\xe6\x9c\xfc\x62\x11\x6e\xbf\x5c\x2b\xe0\xdb\x28\x84\x26\xbe\x1c\xa8\xf3\xf2\x54\x59\xcc\x86\x7e\x1a\x2d\x6f\x8f\xb2\xc2\x9a\xcd\x50\x19\x6f\xb3\xd1\xcd\x9c\x1b\x17\xf2\xa2\xe8\xa5\x40\xa8\x08\x3e\x9f\xb1\x6e\x7a\xc2\x6b\xff\x06\xb4\xa7\xac\x51\xba\x66\xda\xc9\x90\xdb\xd5\x21\xb6\xeb\x2e\x08\x47\x3f\xfb\xfd\x3f\x3f\xdf\x1c\x4e\x9e\xf6\xfb\xa0\xe3\x35\xfa\x17\x00\x00\xff\xff\x64\xbf\x03\x75\x5e\x03\x00\x00" func stakingcollectionWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5900,11 +5880,11 @@ func stakingcollectionWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfb, 0x9a, 0xe1, 0x39, 0x28, 0x58, 0x61, 0xdc, 0x20, 0xc7, 0x14, 0x5c, 0xba, 0xb3, 0x84, 0xc9, 0x6a, 0x57, 0xb9, 0x13, 0x4f, 0x98, 0xa7, 0x23, 0xf, 0xc1, 0x35, 0x93, 0x60, 0xd1, 0x23, 0x6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe6, 0x49, 0x8d, 0xd0, 0x5b, 0x42, 0x21, 0x6d, 0xfa, 0xef, 0x43, 0x36, 0x96, 0xc0, 0x98, 0x8f, 0x63, 0x76, 0xd0, 0x1a, 0xda, 0xbb, 0x68, 0x23, 0x3d, 0x88, 0x97, 0xea, 0xba, 0x59, 0x73, 0xd7}} return a, nil } -var _stakingcollectionWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\xcd\x6e\xdb\x3c\x10\xbc\xeb\x29\x06\x3e\xe4\xb3\x01\xc3\x06\xbe\x16\x3d\x18\x6d\x8d\x34\x45\x80\x9c\x5a\xc4\x71\xef\x5b\x6a\x65\x13\xa6\x49\x75\xb9\xac\x63\x14\x79\xf7\x82\xfa\xb1\x82\x5a\x87\x5e\xca\x83\x28\x91\x8b\x99\x9d\xd1\xac\x3d\xd6\x41\x14\xf7\x2e\x9c\x36\x4a\x07\xeb\x77\x77\xc1\x39\x36\x6a\x83\x47\x25\xe1\x88\xc9\xe8\xdd\xa4\x28\x96\xcb\x25\x1e\xf9\x47\xe2\xa8\xd0\x80\x93\xd5\x7d\x29\x74\x42\xf2\x51\xe9\xc0\x25\x34\x1c\xd8\x47\x54\x41\xa0\x7b\x46\xac\xd9\xd8\xca\x72\x09\x1f\x4a\x46\x10\x94\xec\x78\x47\x1a\x04\xd6\xb7\x25\x2d\x0d\xcc\x85\xa7\x61\x79\xda\x73\x0f\x46\xc2\xa0\xa4\xe1\x48\x6a\x0d\x39\x77\x46\xc9\x75\x88\x56\x1b\xbe\x06\x24\x79\x17\x4c\xe6\x27\x63\x42\xf2\x8a\x9f\x94\x9c\xa2\xb2\x12\x75\xde\xe0\xdd\xfa\x32\x57\x7a\x90\x3f\xa3\x2b\x7e\x85\x3f\x20\x5a\xdf\x61\x8e\x22\xda\x0a\x56\x61\x63\xae\x10\x2e\x0a\x15\xf2\x91\x9a\xb6\xa7\x59\xe2\xc3\xe7\x15\x36\x2a\xd6\xef\xe6\x83\xd4\x7c\xb8\x7d\xf0\xfa\xe6\xff\xf5\x1c\x74\xcc\x70\x2b\x6c\xef\xed\xf3\xbb\xb7\x33\xfc\x2a\x00\xa0\x79\x38\xd6\xde\x8e\xc1\xf5\x47\xae\x56\x59\xfe\x7e\x3a\xfa\x53\x16\xc3\xeb\x97\x93\x67\x99\xe1\x66\xbc\xee\xea\xa4\x68\x38\x6b\xe1\x9a\x84\xa7\x9d\xcc\x8e\xea\x53\x10\x09\xa7\x6f\xe4\x12\xcf\x70\x73\xdb\xde\xf5\xbd\xe6\x15\xd9\x55\x8b\xb1\x5e\xf1\xa1\x77\x6c\x11\x35\x08\xed\x78\xf1\xbd\x01\x7b\xff\x2f\x34\x7c\x9c\xe6\xbc\xae\xc6\xb3\x7c\x5d\xbe\x69\x3b\xfa\x4a\xba\x9f\x5d\xa4\xe4\xb5\x5e\xa3\x26\x6f\xcd\x74\x72\x17\x92\xcb\x69\x55\xb4\x6d\x83\x20\x5c\xb1\xb0\x37\x39\x90\x20\x5c\xcf\x4c\x97\xe4\x5a\xec\x91\xe4\x8c\x14\x59\xfe\x8b\xbd\x0d\x93\x96\xe9\xa5\xb5\x9b\x9f\xd9\x24\xe5\xbf\x71\x72\xd1\x4f\xd7\xb6\x1b\xae\xa7\x26\xae\x97\x98\xb5\xfb\x1f\x31\x7b\xf5\x31\x44\xad\xdd\xfb\x3e\x5e\x8a\xdf\x01\x00\x00\xff\xff\xf5\xac\x11\xd5\x01\x04\x00\x00" +var _stakingcollectionWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x8f\xda\x30\x10\x85\xef\xf9\x15\x4f\x7b\xa8\x58\x09\x41\xd5\x56\x3d\xa0\xb6\x28\x82\xdd\x0a\x75\xb5\x5b\x11\xf8\x01\xd3\x64\x42\x2c\x8c\x27\x75\xc6\x85\x55\xb5\xff\xbd\x72\x42\x60\x55\x38\xac\x0f\xb6\x6c\x8d\xbe\x79\xe3\xf7\xcc\xae\x16\xaf\xb8\xb7\xb2\xcf\x94\xb6\xc6\x6d\x66\x62\x2d\xe7\x6a\xc4\xa1\xf4\xb2\xc3\xfb\x43\xb6\x4a\x7f\x2c\x1e\xbf\xcf\x9e\x1e\x1e\xee\x66\xab\xc5\xd3\x63\x3a\x9f\x2f\xef\xb2\x2c\x49\xc6\xe3\x31\x96\xfc\x3b\x70\xa3\x50\xc1\xde\x68\x55\x78\xda\x23\xb8\x46\x69\xcb\x05\x54\xb6\xec\x1a\x94\xe2\xa1\x15\xa3\xa9\x39\x37\xa5\xe1\x02\x4e\x0a\x86\x78\x14\x6c\x79\x43\x2a\x1e\xc6\x75\x25\x9d\x0a\xe4\x27\x19\x6d\x97\x55\xc5\x3d\x8c\x3c\x83\x82\xca\x8e\xd4\xe4\x64\xed\x33\x0a\xae\xa5\x31\xda\xf6\x6b\x21\xc1\x59\xc9\x63\x7f\xca\x73\x09\x4e\xf1\x87\x82\x55\x94\xc6\x37\x3a\x6c\x79\xa9\x2b\x62\xa5\x03\xb9\x67\x1c\x8b\x5f\xf1\xcf\x44\xe3\x8e\xcc\xab\x44\x53\xc2\x28\x4c\x13\x2b\x3c\x27\x89\x7a\x72\x0d\xb5\xb2\x07\x71\xc4\xc5\x7c\x82\x4c\xbd\x71\x9b\xe1\x79\xd4\xf8\xb8\x5e\x38\xfd\xf8\x61\x3a\x04\xed\x22\x6e\x82\xf5\xbd\x39\x7c\xfe\x74\x8b\xbf\x09\x00\xb4\x9b\x65\xed\xbf\xe3\x6c\xca\x92\xcb\x09\xde\x5d\xf5\x6b\x74\xf1\x92\xb4\x9c\xda\x73\x4d\x9e\x07\x47\xe9\x13\xa4\x41\xab\xb4\xbb\xf4\x0d\xe3\x6a\xd8\x96\xa3\x6b\x0d\xf1\xb5\x1f\x7b\xf4\x4b\xbc\x97\xfd\x97\xb7\x0a\xf8\x36\x88\x19\x9a\x5c\xcf\xd7\x65\x79\xa6\xe2\x69\xc3\x3f\x49\xab\xdb\x93\xac\xb8\xa6\x53\xd4\xe4\x4c\x3e\xb8\x99\x49\xb0\x31\x3e\x8a\x4e\x0a\x3c\x97\xd1\xf6\x0b\xd6\x4d\x47\x78\xe9\xfe\x80\x0f\x9c\x07\xe5\xb7\x4c\x3b\xea\x63\xbc\x3e\xa6\x78\xd5\xe6\xe2\xe4\x67\x77\xfe\xe7\xe7\xab\xcb\xd9\xd3\xee\xec\x75\xbc\x24\xff\x02\x00\x00\xff\xff\x02\xba\xdf\x67\x6d\x03\x00\x00" func stakingcollectionWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5920,11 +5900,11 @@ func stakingcollectionWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf9, 0x49, 0x4d, 0x12, 0xd3, 0x8d, 0x96, 0x6e, 0x9, 0xec, 0x17, 0xc4, 0xc6, 0x99, 0x84, 0x28, 0xbd, 0x52, 0x73, 0x96, 0x3, 0x75, 0x59, 0x22, 0x85, 0x43, 0x73, 0xfa, 0x70, 0xe1, 0x91, 0xe0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0x94, 0x7f, 0x6f, 0xf0, 0xe4, 0x28, 0x27, 0x2d, 0x99, 0x6, 0xd7, 0xff, 0xf1, 0xff, 0xa5, 0x7, 0x3a, 0x22, 0x3c, 0xba, 0x2f, 0xff, 0x40, 0x14, 0xdd, 0xe2, 0x43, 0x68, 0x43, 0xb0, 0x64}} return a, nil } -var _stakingproxyAdd_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x43\x0e\x92\x80\xe4\x5c\x42\xad\x58\x7b\xa8\x14\x5a\x41\xda\xfb\x98\x9d\xe8\xd2\xb8\xb3\x4c\x26\x58\x29\xfe\xf7\xb2\x46\x4d\x42\xba\x87\x90\x7d\x3b\x33\xfb\xed\x7b\xf6\xe0\x59\x14\x36\x8a\xdf\xd6\xed\xd6\xc2\x3f\x27\x28\x85\x0f\x10\xf7\xa5\x38\x8a\x54\xd0\xd5\x58\xa8\x65\x97\x58\x93\xc3\x46\xc5\xba\xdd\x14\x84\x2b\xca\xe1\x73\xe5\xf4\x61\x0a\x8e\xf4\xc8\x12\xda\x16\xc6\x08\xd5\x75\x57\xd7\x1d\xbd\xd1\xa9\x93\xeb\xf6\x96\x9e\x96\xc2\x6f\x14\x01\x00\x78\x21\x8f\x42\x09\x16\x05\x37\x4e\x73\xc0\x46\xf7\xc9\x33\x8b\xf0\xf1\x0b\xab\x86\x52\x98\x2c\xda\xb3\xd0\x03\xd7\x55\x91\x82\x0f\xd0\xaf\x5c\x19\x12\x98\xc1\x75\x40\x56\x2b\x0b\xee\x28\xdb\x5e\x46\x3c\x4e\xfa\x2f\xcc\xde\xd9\x50\x10\x48\xd6\x5d\xf3\x53\x12\xbc\xc8\x61\x54\xf9\xe1\x49\x50\x59\x96\xe8\x71\x6b\x2b\xab\xa7\x4d\x3b\x7c\x8d\xba\x4f\xef\x2c\x61\xcd\xe7\xe0\xd1\xd9\x22\x89\x97\xdc\x54\x06\x1c\x2b\xb4\x04\x20\x54\x92\x90\x2b\x08\x94\x6f\x4e\xb4\xec\xb0\xbf\xdc\x1f\xa7\xd1\xe0\x5d\x8e\x0d\xad\x5c\xc9\x30\x1b\x23\x05\x3d\xb9\x14\xbc\xe4\x60\xcd\x2d\x99\xf0\xfd\x37\x98\x91\x34\xca\x68\xb0\x1d\x46\xd5\xfd\xf7\x08\x7b\xae\x67\x68\xcc\x10\xca\x95\x9c\xdf\xf9\x5b\x87\xce\xd1\x39\xfa\x0b\x00\x00\xff\xff\x8d\x03\xa9\x86\x80\x02\x00\x00" +var _stakingproxyAdd_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x41\xa4\xc7\x12\x6a\x25\x68\x69\x45\xd0\x60\x5a\x68\x8f\x6b\x76\xa2\x4b\xe3\xce\x32\x19\x51\x29\xfe\xf7\xb2\x46\x4d\x42\xba\x87\x90\x7d\x79\x9b\xfd\xde\x3c\xb3\x73\xc4\x02\xa9\xa8\x1f\x63\x37\x09\xd3\xf1\x04\x39\xd3\x0e\x1e\x8f\xe9\x47\x3c\x9f\x2d\xde\x92\xd5\xf2\xeb\x3b\x9e\x4e\x57\xaf\x69\x1a\x04\xc2\xca\x96\x2a\x13\x43\x36\x34\x3a\x82\x54\xd8\xd8\xcd\x00\x98\x0a\x8c\xe0\x73\x66\xe5\x69\x00\x16\xe5\x40\xec\x7f\x18\x6b\xcd\x58\x96\xb5\xaf\xfe\x34\xc7\x53\x2d\x97\xd5\xfd\x0d\xad\x0f\xbf\x41\x00\x00\xe0\x18\x9d\x62\x0c\x55\x96\xd1\xde\x4a\x04\xf1\x5e\xb6\x71\xb5\xf1\x26\xb8\xae\x02\x05\x9c\xe7\x7f\xa7\x42\x23\xc3\x08\xae\x27\x86\x6b\x62\xa6\xc3\xf3\x43\x33\xe4\x70\x41\x1a\xbd\x80\x9c\xd4\x87\x5e\x42\x9f\x3d\x82\x8e\x73\xe9\x90\x95\x10\x4f\x94\x53\x6b\x53\x18\x39\xa5\x42\xac\x36\x98\x28\xd9\xf6\xef\x0c\x7e\x8d\xc7\xe0\x94\x35\x59\xd8\x9b\xd0\xbe\xd0\x60\x49\xa0\x22\x00\xc6\x1c\x19\x6d\x86\x20\x74\x8b\x5c\x31\xc3\xf6\x72\x7f\xaf\x1f\xb4\xf2\x58\xd2\x38\xb3\x39\xc1\xa8\x8b\xe4\xf5\xf0\x62\x98\x46\x60\xf4\xad\x02\xff\xfc\xb7\x81\x8e\xd4\x29\xa3\xb5\x6d\x77\x52\xbf\x37\x08\x1b\xd3\x1e\x2a\xad\xdb\x50\x36\xa7\xe8\xce\x5f\x4d\xe8\x1c\x9c\x83\xbf\x00\x00\x00\xff\xff\x31\xc4\x60\xc0\x70\x02\x00\x00" func stakingproxyAdd_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5940,11 +5920,11 @@ func stakingproxyAdd_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/add_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x4c, 0x70, 0x39, 0x70, 0x71, 0x9e, 0x6c, 0x1, 0xdf, 0x9c, 0x65, 0xbf, 0x4, 0xb9, 0xfd, 0xe4, 0x59, 0x8e, 0x5a, 0xcf, 0xd2, 0x23, 0xd, 0x25, 0x7, 0xa2, 0xd, 0xd3, 0xe, 0xb1, 0x72}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb5, 0xf2, 0xa0, 0xe3, 0xb7, 0x7c, 0x79, 0xbd, 0xee, 0x11, 0x1e, 0x31, 0xf2, 0x7a, 0xdc, 0xa2, 0xf, 0xae, 0xba, 0x2a, 0x46, 0x9a, 0xf3, 0x65, 0xd9, 0xb4, 0x2d, 0xd1, 0x43, 0x7c, 0x8, 0xf6}} return a, nil } -var _stakingproxyGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x4e\xf3\x30\x10\x85\xf7\x3e\xc5\xfb\xb3\xf8\x95\x48\x28\x07\xa8\x80\xaa\x2a\x0b\xd8\x40\x45\x4f\xe0\x3a\x93\x60\xe1\x7a\xac\xf1\x44\x50\x55\xbd\x3b\x4a\xad\x14\x50\x17\xcc\xc6\xf2\xcc\xbc\x37\x4f\x9f\xdf\x27\x16\xc5\x56\xed\xbb\x8f\xc3\x46\xf8\xf3\x80\x5e\x78\x8f\xea\x67\xab\x32\xc6\x3a\x47\x39\xd7\x36\x84\x06\xfd\x18\xb1\xb7\x3e\xd6\xd6\x39\x1e\xa3\x2e\xb0\xea\x3a\xa1\x9c\x6f\x10\xb9\xa3\xa7\x87\x05\xb6\x2a\x3e\x0e\xcd\xe2\x97\x73\xfb\x3c\x4d\x63\xcf\x38\x1a\x03\x00\x81\x14\x69\x9a\xbc\x52\x8f\x3b\x0c\xa4\xab\xe2\x38\x3b\x37\xe7\xb5\xa9\x5a\x67\x93\xdd\xf9\xe0\xd5\x53\x6e\x77\x2c\xc2\x1f\xb7\xff\xaf\xdc\xa7\x06\xc9\xf9\xff\xc8\xa1\x23\x39\xfe\xbd\xb2\x19\x77\xc1\xbb\xd3\x7d\x7d\x39\x36\xd5\x95\xee\x25\x91\x58\x65\x59\xcf\x41\x0e\x45\xb8\xb1\xfa\x76\x51\x7e\x07\x5e\x2e\x91\x6c\xf4\xae\xae\xd6\x3c\x86\x0e\x91\x15\x25\x36\xd2\x59\x07\xa1\x9e\x84\xa2\x23\x28\x23\x97\x73\x05\x47\xd5\x14\x3e\x42\x3a\x4a\xbc\x20\x6a\x07\xd2\x19\x61\x3d\x93\x2e\x6f\xf3\xcf\x9c\xcc\x57\x00\x00\x00\xff\xff\x07\xe6\x21\xd3\xcd\x01\x00\x00" +var _stakingproxyGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\xaf\x1e\x4a\x02\x45\x7a\x96\x5a\x09\x5a\x5a\x29\x68\x30\x3d\xb4\xc7\x4d\x32\x49\x97\xc6\x9d\x65\x9c\x50\x45\xfc\xef\x25\xa6\x1a\xaa\x87\xce\x25\x64\xe7\xcd\xfb\xf6\xcd\xda\xb5\x67\x51\xa4\x6a\xbe\xac\xab\x12\xe1\xed\x0e\xa5\xf0\x1a\xf7\xdb\xf4\x2d\x7e\x9d\x2f\x9e\x93\xd5\xf2\xfd\x23\x9e\xcd\x56\x4f\x69\x1a\x04\xbe\xc9\x50\x36\x0e\x6b\x63\x5d\x68\xf2\x9c\x1b\xa7\x23\xc4\x45\x21\xb4\xd9\xdc\xc1\x71\x41\xf3\xd9\x08\xa9\x8a\x75\x55\x34\xfa\x63\x3c\x5c\xb4\x5d\x57\x32\xf6\x41\x00\x00\x35\x29\x7c\xdb\x99\x1a\x6f\x32\x5b\x5b\xdd\x61\x8c\x8a\x34\xee\x8c\x4f\x80\xe8\xa8\x6e\x6b\x58\x91\xf6\xe2\x87\xdb\x2b\xfb\xf6\x80\xe4\xf8\xff\xc2\x75\x41\xb2\xff\x5f\x92\x34\x59\x6d\xf3\xc3\x63\x78\xc6\xb4\x75\x35\xb7\xf4\x24\x46\x59\x7a\x7e\x37\x98\x18\xfd\x3c\x4f\x46\x17\xc9\x56\x54\x62\x7c\x19\x72\x98\xb1\x08\x7f\x87\x7d\xae\xc9\x04\xde\x38\x9b\x87\x83\x29\x37\x75\x01\xc7\x8a\x4e\x04\x7f\x84\x40\xa8\x24\x21\x97\x13\x94\xb1\xe9\xee\xd6\xf9\x0e\x7e\x99\x42\xda\x88\x3b\x63\xdb\x55\x9d\x16\x1e\x9e\xde\xa5\xfb\x46\x37\xc1\x21\xf8\x09\x00\x00\xff\xff\xb3\xad\x9a\xc7\xfa\x01\x00\x00" func stakingproxyGet_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5960,11 +5940,11 @@ func stakingproxyGet_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/get_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0x3e, 0xd4, 0xe5, 0xc4, 0x95, 0x56, 0x6b, 0xfd, 0xc9, 0xe5, 0x64, 0xc, 0x1b, 0xe0, 0xbd, 0xff, 0x2b, 0x95, 0x9a, 0xaf, 0x4e, 0xdd, 0xf1, 0x3c, 0xf7, 0x3e, 0xc0, 0xfd, 0x96, 0x31, 0x6c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0x8b, 0x46, 0x15, 0x59, 0x7a, 0x1d, 0x80, 0xde, 0x23, 0xc5, 0x1f, 0x2d, 0x9f, 0xde, 0xec, 0x2a, 0xfe, 0x91, 0xca, 0xb9, 0xea, 0xf1, 0x9c, 0xe6, 0x56, 0x27, 0x11, 0x3d, 0x3b, 0xe3, 0xff}} return a, nil } -var _stakingproxyRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x93\x41\x8f\xd3\x30\x10\x85\xef\xf9\x15\xa3\x1c\x4a\x22\x55\x3e\x21\x0e\x11\x65\xb5\xec\x0a\x81\x84\x96\x8a\x02\x77\xd7\x9e\xa4\x56\x53\x4f\xe4\x4c\x44\x2b\xb4\xff\x1d\x39\x76\x52\xb7\x05\x84\xb4\xbe\x64\xd7\xe3\x79\xf3\xbd\x67\xd7\x1c\x3a\x72\x0c\x9f\x49\xed\x51\x7f\xa3\x3d\xda\x1e\x6a\x47\x07\xc8\xd3\xad\x3c\x8b\xe7\x36\x2c\xf7\xc6\x36\x6b\x47\xc7\x53\x3c\x97\x6e\xe5\x59\xc6\x4e\xda\x5e\x2a\x36\x64\x0b\xa9\xb5\xc3\xbe\xaf\xe0\x3e\xfc\xb1\x04\xa3\x2b\xd8\xb0\x33\xb6\x59\x82\x3c\xd0\x60\xb9\x82\xef\x1f\xcc\xf1\xcd\xeb\x12\x7e\x65\x19\x00\x40\x8b\x0c\x3b\x6a\x35\xba\xaf\x58\x57\x20\x07\xde\x15\x29\x8b\x18\x3f\x5f\x3a\x74\xd2\x0f\xe9\x4b\x58\xdc\x96\x3f\x8e\x02\x41\xb0\x73\xd8\x49\x87\x85\x54\x2a\x0c\x1c\x25\xdf\x93\x73\xf4\xf3\x87\x6c\x07\x2c\x61\x71\x1f\x6a\x1e\x02\xe2\xea\xb1\xad\xc5\x0c\x02\x2b\x88\xfd\xa2\x67\x72\xb2\x41\xb1\x1d\x15\xde\xbe\x04\xf0\x5d\xe1\x33\xac\xe0\x6f\xf5\x4d\x18\xb5\x96\xbc\x2b\x67\x30\xbf\xee\xee\xa0\x93\xd6\xa8\x22\x7f\xa0\xa1\xd5\x60\x89\x21\xf0\x80\xc3\x1a\x1d\x5a\x85\xc0\x04\x89\x56\x1e\x14\x9e\x43\x28\x78\x44\x35\x30\x26\x7e\x7d\xee\x96\x34\x06\x70\x8a\xa6\x1b\xe4\x98\xcd\x74\x9b\xa5\x50\xb2\x93\x5b\xd3\x1a\x36\xd8\x5f\x50\x4d\x91\x2c\xd2\x37\x21\x9e\x48\xa3\xdf\x40\x37\xfe\x3f\x39\xbf\xe8\xf4\xeb\xa6\x69\x22\x79\x98\xe6\x9d\xd6\xc3\xb6\x35\xca\xc7\x71\xd1\xfd\xdf\xd9\x78\x7f\x40\x51\x16\xba\x51\x0d\x66\x3b\xa7\xbc\xcc\x6e\xe2\xf8\x64\x6b\x82\xd5\x75\x32\xa2\x41\x7e\x8a\xd5\x62\x3c\xf6\x58\x81\xd1\xff\x04\xb1\xaf\xd8\xc7\x09\xc6\x2b\xd6\xe4\x82\xfc\xe3\x2a\x17\x8a\xac\x92\x5c\x18\x5d\x26\x00\x97\xef\x4f\x28\x87\x92\xf1\x9c\x65\x31\xc1\x55\x33\xe6\xf9\x27\x15\xbe\x7f\x70\x93\xdc\x03\xac\xae\x47\x84\x90\xa2\x7c\xd2\x7c\xed\x5d\x6a\x9d\xde\xd5\xec\x7f\xe2\x10\x46\x2f\xa1\xf3\xa5\xea\x7a\xe8\xf4\x06\x9f\xb3\xdf\x01\x00\x00\xff\xff\x1f\x55\xea\x18\x79\x04\x00\x00" +var _stakingproxyRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x41\x8f\xda\x3c\x10\xbd\xe7\x57\xcc\xc7\x61\xbf\x44\x42\x51\x0f\x55\x0f\xd1\xb2\x2b\x04\xb4\x5d\xb1\x02\x44\xa8\xd4\x1e\x8d\x3d\x01\x8b\xe0\x89\x9c\x89\xca\x6a\xc5\x7f\xaf\x1c\x27\x21\xb0\xdd\xb6\xbe\x38\xce\xcc\xbc\x79\xef\x8d\xad\x8f\x05\x59\x86\x67\x92\x07\x54\x1b\x3a\xa0\x29\x21\xb3\x74\x84\x0f\xa7\xe7\xe5\x64\x3e\x9b\x6e\x96\xf3\xd9\x62\x3c\x9d\xae\x67\x69\x1a\x34\xd9\x29\x8b\x83\x36\xbb\x95\xa5\xd3\x4b\x9b\x9d\x6e\xc6\xf3\xa7\xc5\x97\xd5\x7a\xf9\xfd\x47\x9b\x1e\xb0\x15\xa6\x14\x92\x35\x99\x50\x28\x65\xb1\x2c\x13\x18\xfb\x8f\x21\x68\x95\x40\xca\x56\x9b\xdd\x10\xc4\x91\x2a\xc3\x09\x7c\xfb\xac\x4f\x9f\x3e\x46\xf0\x1a\x04\x00\x00\x39\x32\xec\x29\x57\x68\xd7\x98\x25\x70\xd7\xe7\x19\xd7\xdb\xd7\x3a\xea\xb3\x0b\x8b\x85\xb0\x18\x0a\x29\x3d\xda\xb8\xe2\xfd\xd8\x1f\x1c\x24\x34\xab\xc4\x3c\x8b\x3b\x58\x18\x41\x53\x10\x6f\xc9\x5a\xfa\x79\xff\x6e\x9b\x87\xd0\xa9\x4d\xe0\xbd\x78\xca\x64\xc5\x0e\x57\x82\xf7\x51\xd7\xcd\xad\xc7\x47\x28\x84\xd1\x32\x1c\x4c\xa8\xca\x15\x18\x62\xf0\xcd\xc0\x62\x86\x16\x8d\x44\x60\x82\x1e\xd6\xc0\x23\x9c\xbd\x34\x3c\xa1\xac\x18\x7b\x22\x9c\x35\x86\x14\x2e\x0b\xb4\x82\xa9\x51\xb2\x43\x6e\x04\xb7\x86\x47\xf1\x0e\x79\x22\x0a\xb1\xd5\xb9\xe6\x97\x2b\x5a\xf7\x77\xfd\x51\xc6\x0b\x52\xe8\x7e\xa0\xad\xcf\x9e\xc7\xeb\xdf\x53\x56\xd5\x36\xd7\xf2\xfc\x70\x85\x1d\xbe\xa9\x6b\x99\x5e\xc8\xf8\xc2\xda\xae\xff\x1a\xf3\xc3\x08\xfe\xd5\x39\xa7\x1e\xa8\x01\x85\xa2\xc6\x02\xd9\x81\x0f\xa2\xe0\x8d\x59\x4f\x26\x23\x18\xdd\xfa\xe6\x1c\x5a\x34\xd1\xb0\x4e\x9b\x26\xa0\xd5\x1f\x47\x68\xfe\x67\x67\x36\x68\x87\x98\x91\xf5\xf0\xd3\xd1\x20\x96\x64\xa4\xe0\x50\xab\xa8\x47\xe0\xfa\xca\xc5\xd2\xa2\x60\xbc\x98\x19\xb6\xe4\x92\x8e\xe6\xe5\x4d\xf8\xfd\x37\x6a\x7a\x83\x80\xd1\x6d\x0b\x6f\x52\x03\xdf\x2b\xbe\xd5\x2e\x94\xea\x4f\xaa\xd3\xdf\xf2\x88\xb5\x1a\x42\xe1\x42\xc9\x6d\xd3\xf6\x86\x9e\x83\x5f\x01\x00\x00\xff\xff\xa1\xc8\xc2\x7d\x47\x04\x00\x00" func stakingproxyRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5980,11 +5960,11 @@ func stakingproxyRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x55, 0xf4, 0xb6, 0xef, 0xa5, 0x91, 0xdf, 0x85, 0xff, 0x8f, 0x28, 0xa1, 0x53, 0x69, 0x5a, 0x7e, 0x8e, 0x55, 0xcd, 0xa, 0xd5, 0xcc, 0x2c, 0x22, 0x93, 0xb6, 0xd1, 0xf4, 0x3, 0x6f, 0x61}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6a, 0xa8, 0x7a, 0xb4, 0x24, 0xcc, 0x6b, 0x8d, 0x67, 0xfe, 0xdd, 0x4c, 0xad, 0x2d, 0x6b, 0x86, 0x24, 0x5c, 0xfd, 0x26, 0x3e, 0x97, 0xdd, 0xeb, 0xd3, 0xd7, 0x4b, 0x36, 0xc8, 0xb5, 0xe2, 0x5c}} return a, nil } -var _stakingproxyRemove_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\x4d\x6a\xc3\x30\x10\x85\xf7\x3a\xc5\x23\x8b\x60\x6f\x7c\x00\xd3\x16\xfa\xb3\x68\x36\xad\xc1\xd0\xfd\xc4\x9e\x38\xa2\xb2\x46\x4c\xc6\x6d\x43\xc9\xdd\x8b\xe2\x90\x1a\xa2\x8d\xe0\x49\xdf\x9b\x6f\xfc\x98\x44\x0d\xad\xd1\xa7\x8f\x43\xa3\xf2\x73\xc4\x4e\x65\xc4\x6a\x19\xad\x9c\x33\xa5\x78\xa0\xce\xbc\xc4\x22\x4a\xcf\x9b\x97\x1a\xad\xa9\x8f\x43\x89\x5f\xe7\x00\x20\x29\x27\x52\x2e\xa8\xeb\x64\x8a\x56\x83\x26\xdb\x17\x4f\xa2\x2a\xdf\x1f\x14\x26\x2e\xb1\x7e\x9c\xdf\x32\x83\xcb\x09\x6c\x48\x79\xca\xab\x84\x9e\x15\xf7\xb8\x14\x54\x07\x13\xa5\x81\xab\xed\xb9\xe2\x6e\xbd\x54\xaa\xde\xa4\xe7\x1c\xb0\x36\xff\xf0\x43\x91\xe5\x6b\xdc\xfc\x7c\x4f\xac\x64\xa2\xcf\x94\x68\xeb\x83\xb7\x63\x3b\x97\x37\x64\xfb\xd2\x5d\x65\x16\x22\x95\xf2\x28\x5f\x9c\xe9\x4d\xdc\xc9\x75\xeb\xf9\x2e\xcf\xc8\xc9\x9d\xdc\x5f\x00\x00\x00\xff\xff\x28\xae\xe7\x3e\x43\x01\x00\x00" +var _stakingproxyRemove_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\x51\x4b\xc3\x40\x0c\xc7\xdf\xef\x53\xe4\x49\xda\x97\xe2\x73\x51\xe1\xb0\xa2\x45\xd8\x8e\x9d\x0f\xfa\x98\xb5\x59\x77\xd8\x5e\x8e\x98\xe9\x86\xec\xbb\xcb\xb9\x31\x0b\xe6\x25\x24\xfc\x7f\xe4\x97\x30\x25\x16\x05\xaf\xf8\x1e\xe2\xe0\x84\xf7\x07\xd8\x08\x4f\x70\xbd\xf7\x2f\xf6\xb9\x5d\x3c\xba\xd5\xf2\xf5\xcd\x36\xcd\xea\xc1\x7b\x63\x54\x30\x7e\x60\xa7\x81\x63\x11\xb9\xa7\xb6\xa9\xc1\xab\x84\x38\x94\xf0\x6d\x0c\x00\x40\x12\x4a\x28\x54\x60\xd7\xf1\x2e\x6a\x0d\x76\xa7\x5b\x7b\x1a\x72\x08\xce\x35\x92\x42\xca\x07\x9f\x78\xec\x49\xe0\x16\xce\x44\xb5\x66\x11\xfe\xba\xb9\x9a\x5b\x55\x0b\xee\x29\x2f\x48\xdc\x1f\x74\x57\x64\xd9\x1a\xfe\x25\x97\x89\x04\x95\xe5\x1e\x13\xae\xc3\x18\xf4\xe0\x95\x05\x07\x72\xa8\xdb\xd2\x5c\x24\x66\x02\x95\xd0\xc4\x9f\x94\xe9\x36\x6e\xf8\xf2\xde\xa9\x97\xbf\xc8\xd1\x1c\xcd\x4f\x00\x00\x00\xff\xff\x64\x64\x88\xd5\x33\x01\x00\x00" func stakingproxyRemove_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -6000,11 +5980,11 @@ func stakingproxyRemove_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/remove_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0xf7, 0x1c, 0x46, 0x86, 0x72, 0x41, 0x59, 0x9b, 0xed, 0x64, 0x8f, 0xb4, 0x13, 0xa6, 0x40, 0x7a, 0xf2, 0x9a, 0x14, 0x5d, 0xf4, 0x21, 0xb0, 0x2, 0xbb, 0x79, 0xc5, 0x68, 0xb4, 0xb7, 0xcc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0x54, 0xc1, 0x59, 0xe, 0x14, 0xb4, 0xd3, 0xf1, 0xd2, 0xef, 0x53, 0xff, 0x63, 0xb9, 0x6d, 0x1c, 0x93, 0xfc, 0x57, 0x6, 0xae, 0xa4, 0x12, 0x64, 0x2f, 0xc5, 0x89, 0x83, 0xfe, 0x93, 0x46}} return a, nil } -var _stakingproxyRemove_staking_proxyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\x4d\x6a\xc3\x30\x10\x85\xf7\x3a\xc5\x23\x8b\x60\x6f\x7c\x00\xd3\x16\xfa\xb3\x68\x37\xad\xc1\xd0\xfd\xc4\x9e\xda\xa2\xb6\x46\x4c\xc6\x6d\x43\xc9\xdd\x8b\xe2\x90\x0a\xa2\x8d\xe0\x49\xef\x9b\x6f\xfc\x1c\x45\x0d\xad\xd1\xa7\x0f\x43\xa3\xf2\x73\xc0\x87\xca\x8c\x4d\x1e\x6d\x9c\x33\xa5\xb0\xa7\xce\xbc\x84\x22\x48\xcf\x2f\x4f\x35\x5a\x53\x1f\x86\x12\xbf\xce\x01\x40\x54\x8e\xa4\x5c\x50\xd7\xc9\x12\xac\x06\x2d\x36\x16\x0f\xa2\x2a\xdf\xef\x34\x2d\x5c\x62\x7b\xbf\xbe\xa5\x0e\xce\x67\x62\x43\x4c\x53\x9e\x65\xea\x59\x71\x8b\x33\xa0\xda\x9b\x28\x0d\x5c\xed\x4e\x88\x9b\x6d\xae\x54\xbd\x4a\xcf\x29\x60\x6d\xfe\xcb\x77\x45\x92\xaf\x11\xe9\xea\xef\x5b\x64\x25\x13\x7d\xa4\x48\x3b\x3f\x79\x3b\xb4\x2b\xbe\x21\x1b\x6d\x2c\xdd\x45\x28\x93\xa9\x94\x67\xf9\xe2\x1c\x76\xd9\x7e\xbd\xcb\x53\xed\xe8\x8e\xee\x2f\x00\x00\xff\xff\x69\xc3\x7d\xed\x4b\x01\x00\x00" +var _stakingproxyRemove_staking_proxyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xc1\x4a\xc3\x40\x10\x86\xef\xfb\x14\x73\x92\xe4\x12\x3c\x07\x15\x16\x23\x5a\x84\x76\xe9\x7a\xd0\xe3\x34\x19\x93\xc5\x64\x67\x19\xa7\xda\x22\x7d\x77\x59\x5b\x6a\xa0\x7b\x59\x66\xf8\xbf\x99\x6f\xc2\x94\x58\x14\xbc\xe2\x47\x88\xbd\x13\xde\xed\xe1\x5d\x78\x82\xeb\x9d\x7f\xb1\xcf\x8b\xe5\xa3\x5b\xaf\x5e\xdf\x6c\xd3\xac\x1f\xbc\x37\x46\x05\xe3\x27\xb6\x1a\x38\x16\x91\x3b\x5a\x34\x35\x78\x95\x10\xfb\x12\x7e\x8c\x01\x00\x48\x42\x09\x85\x0a\x6c\x5b\xde\x46\xad\xc1\x6e\x75\xb0\xc7\x22\x87\xe0\xf4\x46\x52\x48\x79\xe1\x13\x8f\x1d\x09\xdc\xc2\x89\xa8\x36\x2c\xc2\xdf\x37\x57\x73\xab\x6a\xc9\x1d\xe5\x06\x89\xfb\x87\xee\x8a\x2c\x5b\x43\xc2\x8b\xec\x2a\x91\xa0\xb2\xdc\x63\xc2\x4d\x18\x83\xee\xbd\xb2\x60\x4f\x0e\x75\xd0\xa1\x34\x67\x91\x99\x44\x25\x34\xf1\x17\xcd\x87\x9d\xcf\x3c\xfe\xe5\x1f\x76\x30\x07\xf3\x1b\x00\x00\xff\xff\x4f\x9f\x84\x5d\x3b\x01\x00\x00" func stakingproxyRemove_staking_proxyCdcBytes() ([]byte, error) { return bindataRead( @@ -6020,11 +6000,11 @@ func stakingproxyRemove_staking_proxyCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/remove_staking_proxy.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc8, 0xc0, 0x93, 0x87, 0x23, 0x74, 0x64, 0xa0, 0x10, 0x3f, 0xa9, 0x3b, 0xef, 0xb1, 0xde, 0xd5, 0xdb, 0x46, 0xc0, 0x26, 0x79, 0x83, 0x2d, 0x9b, 0x6, 0xd3, 0x1b, 0x19, 0x8, 0xcb, 0x3d, 0xa5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcd, 0xb7, 0xb8, 0xff, 0xfc, 0x1e, 0x9f, 0xd3, 0x1a, 0x76, 0xac, 0x78, 0xe0, 0x9c, 0xf6, 0x9e, 0xd9, 0xed, 0x85, 0xd4, 0x2b, 0xa4, 0x7e, 0xed, 0xc5, 0xbf, 0x38, 0x7c, 0x76, 0xe6, 0x74, 0x14}} return a, nil } -var _stakingproxyRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\x4d\x4b\xf3\x40\x10\xbe\xef\xaf\x98\x37\x87\xb2\x81\x97\x9c\xc4\x43\xb1\x16\xad\x88\x5e\xb4\x50\xea\x7d\x9a\x4c\x9b\xc5\x64\x67\x9d\x4c\xb0\x45\xfa\xdf\x25\xdd\xd8\xae\x38\x97\x81\x67\x76\x9e\x8f\x59\xd7\x06\x16\x85\x95\xe2\xbb\xf3\xbb\xa5\xf0\xfe\x00\x5b\xe1\x16\xb2\x14\xca\x8c\x51\x41\xdf\x61\xa9\x8e\xbd\xf5\x5c\xd1\xf3\xc3\x14\x56\x2a\xce\xef\xfe\x03\xb6\xdc\x7b\x9d\xc2\xfa\xd1\xed\xaf\xaf\x72\xf8\x32\x06\x00\x20\x08\x05\x14\xb2\x58\x96\x71\x8e\xbd\xd6\xf6\x9e\x45\xf8\xf3\x0d\x9b\x9e\x72\x98\xdc\xc5\xd9\xb0\x03\x63\x35\xa4\x10\x06\xd5\x27\x6e\x2a\x12\x98\xc1\x48\x50\x74\xca\x82\x3b\x2a\x36\x27\x8a\x9b\x49\x6a\xb1\x78\xe1\x8a\x06\x80\x64\x79\x59\xbe\xb5\x43\x98\x29\xfc\x79\xf9\x1a\x48\x50\x59\x16\x18\x70\xe3\x1a\xa7\x87\x55\x24\x5f\xa2\xd6\xf9\xd9\xcb\x50\xf3\x39\x04\xf4\xae\xb4\xd9\x82\xfb\xa6\x02\xcf\x0a\xd1\x01\x08\x6d\x49\xc8\x97\x04\xca\xd0\x45\x8d\xe8\x1d\xea\x93\x7e\x96\x9b\x5f\xb9\xba\xf4\xce\xb3\x34\xe6\x18\x2a\x35\x7a\xbe\x73\xec\xf9\xbf\x0b\x57\xca\x53\x08\x7d\xf4\xd4\xe9\xda\x8f\xa8\xfd\xf9\x8f\xd8\x63\x9a\xa3\x39\x9a\xef\x00\x00\x00\xff\xff\xda\xf0\xd0\xe7\xed\x01\x00\x00" +var _stakingproxyRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6b\xf2\x40\x10\xc7\xef\xfb\x29\xe6\xf1\xf0\x90\x40\x91\x1e\x4a\x0f\x52\x2b\x41\xfb\x22\x05\x0d\xa6\x42\x7b\x1c\x93\x51\x97\xc6\x9d\xed\x64\x42\x95\xe2\x77\x2f\xe9\xa6\x9a\xd2\xb9\x0c\x3b\x3b\x2f\xbf\xff\xdf\xee\x3c\x8b\x42\xa6\xf8\x66\xdd\x26\x15\xde\x1f\x60\x2d\xbc\x83\xcb\x7d\xf6\x9c\x3c\x4d\x67\x0f\xe9\x62\xfe\xf2\x9a\x4c\x26\x8b\xbb\x2c\x33\x46\x05\x5d\x85\xb9\x5a\x76\x91\xe3\x82\xa6\x93\x01\x64\x2a\xd6\x6d\x2e\x00\x77\x5c\x3b\x1d\xc0\xf2\xde\xee\xaf\xaf\x62\xf8\x34\x06\x00\xc0\x0b\x79\x14\x8a\x30\xcf\xc3\x7f\x52\xeb\x36\x09\x8f\xa6\x09\xda\x28\x49\xc1\x37\x00\x8f\x5c\x16\x24\x30\x84\x76\xa2\xbf\x62\x11\xfe\xb8\xf9\xdf\xa5\xec\xcf\xb8\xa0\xa6\x40\x92\x9e\x87\x6e\xa3\x06\x7e\x00\x7f\x3a\xe7\x9e\x04\x95\x65\x8c\x1e\x57\xb6\xb4\x7a\xc8\x94\x05\x37\x94\xa2\x6e\xe3\x13\x43\x13\xa3\x11\x78\x74\x36\x8f\x7a\x63\xae\xcb\x02\x1c\x2b\x04\x02\x10\x5a\x93\x90\xcb\x09\x94\xa1\x0a\x37\x02\x33\x6c\xbf\xef\xf7\x62\xf3\x4b\x4f\xd5\xf5\x75\xd8\x95\xd7\x8a\xea\x82\x9e\x0c\x0d\x39\xfe\x77\xde\xd5\xdd\xd3\x17\x7a\xaf\xa9\xd2\xa5\x6b\xab\xd1\x8f\xf1\x21\x07\x35\x47\x73\x34\x5f\x01\x00\x00\xff\xff\x09\x50\xee\xd5\xdd\x01\x00\x00" func stakingproxyRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -6040,11 +6020,11 @@ func stakingproxyRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x27, 0xc, 0x98, 0xb7, 0xdd, 0xba, 0xf0, 0x75, 0xec, 0x3a, 0xf0, 0x5f, 0xf6, 0x67, 0x82, 0x46, 0xbc, 0x45, 0xee, 0xe4, 0x17, 0x24, 0x7e, 0x73, 0x20, 0xb3, 0x84, 0x9f, 0x3, 0x4c, 0x6e, 0xc2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0x4, 0xb5, 0x6d, 0xd4, 0x43, 0x6a, 0x62, 0x66, 0x8f, 0xf8, 0x22, 0x3c, 0x0, 0xa1, 0xef, 0x32, 0x6c, 0x7a, 0x1, 0xa5, 0x6b, 0x83, 0x30, 0xa, 0x8d, 0x29, 0x5a, 0xdd, 0xda, 0x77, 0x79}} return a, nil } -var _stakingproxySetup_node_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\xc1\x6a\xc3\x30\x0c\x86\xef\x7e\x0a\xd1\x43\x71\x20\xcd\x03\x94\x6c\x30\x76\xd9\x69\x0b\x04\x76\x57\x5d\xad\x31\x4b\x6d\x23\x2b\x65\x65\xf4\xdd\x87\xd9\xf0\xec\x8e\xc1\xe6\x43\x0e\x8a\xf4\x7f\x9f\x64\x8f\xc1\xb3\xc0\x28\xf8\x6a\xdd\x61\x60\xff\x76\x86\x17\xf6\x47\x58\x95\xa5\x95\x52\xc2\xe8\x22\x1a\xb1\xde\xe9\x06\xde\x95\x02\x00\x08\x4c\x01\x99\xb4\xf3\x7b\x7a\x0a\xc4\x28\x9e\xb7\x80\x8b\x4c\x7a\xc4\x13\x3d\xe3\xbc\x50\x0b\xf7\x18\x70\x67\x67\x2b\x96\x62\x03\xeb\x3b\x63\xfc\xe2\x24\x85\xc0\xd7\x9b\x49\x20\x24\xd0\x83\x9f\xf7\xc4\xd0\x6f\x2a\xa3\xce\x30\xa1\xd0\xf0\xdd\xa1\x1b\x95\x87\x4b\x78\x17\xc5\x33\x1e\xa8\x8b\x78\x22\xdd\x6f\x8a\xd0\x16\xc4\x6f\xeb\xd8\xc7\x62\x32\x4b\x9e\xc7\xcf\x88\x01\x65\x2a\x28\x49\xd1\xd5\xfd\x70\x53\xb3\x4d\xb1\x67\x16\xb1\x31\x2e\xd4\xaf\x7f\x70\x53\x81\xb8\x58\xe9\x56\x67\x56\x7a\xff\x13\xcd\xa3\xbf\xdd\xa5\x72\x0b\xcb\x6e\xb6\x71\xaa\x81\x57\xcb\xb5\xd5\x4f\x94\x3f\x9d\x6e\x48\xc1\xe6\x4a\x28\x7d\x2f\xea\xa2\x3e\x02\x00\x00\xff\xff\x35\x26\xe1\xc1\x6b\x02\x00\x00" +var _stakingproxySetup_node_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xe6\x24\x29\xb4\xc5\x73\x09\x42\xb0\xa2\x22\xb4\xa1\xf1\xa0\xc7\xe9\x76\x4c\x97\x6e\x77\x96\xe9\x44\x5a\x4a\xfe\xbb\xac\x4a\x4c\x10\x51\xdf\x69\x59\xde\xfb\xde\x1b\xb7\x8f\x2c\x0a\x95\xe2\xce\x85\xba\x14\x3e\x9e\xe0\x45\x78\x0f\x97\xc7\xea\xb1\x78\xb8\x5f\xdc\x96\xab\xe5\xd3\x73\x31\x9f\xaf\x6e\xaa\xca\x18\x15\x0c\x07\xb4\xea\x38\x64\x23\x38\x1b\x03\x00\x10\x85\x22\x0a\x65\x81\x37\xb4\x8c\x24\xa8\x2c\x33\x28\x1a\xdd\x16\xd6\x72\x13\x34\x39\xe1\x53\x9e\x14\x62\xea\xb9\x63\xbf\x21\x81\x7c\x32\x68\x9f\x5a\x21\x54\x2a\xbf\x1c\xd9\xc8\x74\xe1\x7e\xc3\xf4\x80\xaf\x94\xe5\x93\x1e\x6c\x0c\xca\xb3\x21\x6e\xd1\x4b\x5c\x63\xc4\xb5\xf3\x4e\x4f\x95\xb2\x60\x4d\x25\xea\xf6\x27\xba\x77\x61\x97\x5f\x7c\x63\xa5\x0f\x92\xde\xbc\xf3\xef\x96\xb2\x59\x7b\x67\xdb\xab\xac\x6b\x4a\xfa\xc3\xcc\x8f\x60\x5a\x39\x1e\x44\x15\xa5\x26\xfd\xef\xa5\x1d\x62\xf4\xfe\x6a\x4d\x6b\xde\x02\x00\x00\xff\xff\xf8\x08\x93\x28\xff\x01\x00\x00" func stakingproxySetup_node_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -6060,11 +6040,11 @@ func stakingproxySetup_node_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/setup_node_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2f, 0x9a, 0xe3, 0x34, 0x75, 0x3a, 0xde, 0xe7, 0x18, 0x77, 0x38, 0x64, 0x59, 0x95, 0xee, 0xf8, 0x2d, 0xa4, 0x2a, 0x35, 0x96, 0xbf, 0x85, 0x5c, 0x95, 0x1a, 0x63, 0x1b, 0xba, 0xae, 0x8d, 0xd9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb3, 0x0, 0x84, 0x96, 0x15, 0xf1, 0x23, 0x27, 0xca, 0xa4, 0x4, 0xe3, 0xc0, 0x8c, 0xc9, 0x59, 0x5e, 0x1e, 0x11, 0x6b, 0xd7, 0xe2, 0x9f, 0x69, 0x3c, 0xf0, 0x3a, 0xc6, 0xb8, 0x32, 0x46, 0x24}} return a, nil } -var _stakingproxyStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\xcf\x4e\x32\x41\x0c\xbf\xcf\x53\xf4\xdb\x03\x99\x4d\xbe\xec\xc9\x78\x20\x22\x51\x8c\xd1\x0b\x92\xa0\xde\xcb\x6e\x81\x09\xcb\x74\xd2\xed\x06\x88\xe1\xdd\xcd\x30\x08\x63\xec\xa5\x99\x76\xfa\xfb\xd3\xba\x6d\x60\x51\x98\x2b\x6e\x9c\x5f\xcd\x84\xf7\x07\x58\x0a\x6f\xa1\xc8\x4b\x85\x31\x2a\xe8\x3b\xac\xd5\xb1\xb7\x9e\x1b\x7a\x7d\x1a\xc2\x5c\xc5\xf9\xd5\x7f\xc0\x2d\xf7\x5e\x87\xf0\xf1\xec\xf6\xb7\x37\x25\x7c\x19\x03\x00\x10\x84\x02\x0a\x59\xac\xeb\xd4\xc7\x5e\xd7\xf6\x91\x45\x78\xf7\x89\x6d\x4f\x25\x0c\x1e\x52\x2f\xce\xc0\x39\x5a\x52\x08\x91\xf5\x85\xdb\x86\x04\x46\x70\x06\xa8\x3a\x65\xc1\x15\x55\x8b\x13\xc4\xdd\x20\x97\x58\x4d\xb9\xa1\x58\x20\x99\x5d\x87\xef\x6d\x34\x33\x84\x3f\x3f\xdf\x02\x09\x2a\xcb\x04\x03\x2e\x5c\xeb\xf4\x30\x4f\xe0\x33\xd4\x75\x79\xd1\x12\x63\x3c\x86\x80\xde\xd5\xb6\x98\x70\xdf\x36\xe0\x59\x21\x29\x00\xa1\x25\x09\xf9\x9a\x40\x19\xba\xc4\x91\xb4\xc3\xfa\xc4\x5f\x94\xe6\x97\xaf\x2e\xdf\xf3\x28\xb7\x79\x36\x95\x0b\xbd\xec\x39\xe5\xf2\xdf\x15\x2b\xc7\xa9\xe2\x83\xa6\xb4\x7b\xe7\x0d\xf9\xce\xfe\x5c\x23\xe5\xe4\xe5\x68\x8e\xe6\x3b\x00\x00\xff\xff\x4a\x7f\x70\x48\xeb\x01\x00\x00" +var _stakingproxyStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6b\xc2\x40\x10\x86\xef\xfb\x2b\xa6\x1e\x4a\x02\x45\x7a\x28\x3d\x48\xad\x04\xed\x87\x14\x34\x18\x0b\xed\x71\x4c\x46\x5d\x8c\x3b\xcb\x64\x44\xa5\xf8\xdf\x4b\xba\xa9\xa6\x74\x2e\xc3\xec\xce\xc7\xf3\xbe\x76\xeb\x59\x14\x32\xc5\x8d\x75\xab\x54\xf8\x70\x84\xa5\xf0\x16\x6e\x0f\xd9\x3c\x79\x1b\x4f\x5e\xd2\xd9\xf4\xe3\x33\x19\x8d\x66\x4f\x59\x66\x8c\x0a\xba\x0a\x73\xb5\xec\x22\xc7\x05\x8d\x47\x3d\xc8\x54\xac\x5b\xdd\x00\x6e\x79\xe7\xb4\x07\xef\xcf\xf6\x70\x7f\x17\xc3\x97\x31\x00\x00\x5e\xc8\xa3\x50\x84\x79\x1e\xfe\x93\x9d\xae\x93\x50\xd4\x4d\xd0\x44\x49\x0a\xbe\x06\x78\xe5\xb2\x20\x81\x3e\x34\x13\xdd\x05\x8b\xf0\xfe\xe1\xba\x4d\xd9\x9d\x70\x41\xf5\x03\x49\x7a\x19\x7a\x8c\x6a\xf8\x1e\xfc\xeb\x9c\x7a\x12\x54\x96\x21\x7a\x5c\xd8\xd2\xea\x31\x53\x16\x5c\x51\x8a\xba\x8e\xcf\x0c\x75\x0c\x06\xe0\xd1\xd9\x3c\xea\x0c\x79\x57\x16\xe0\x58\x21\x10\x80\xd0\x92\x84\x5c\x4e\xa0\x0c\x55\xb8\x11\x98\x61\xfd\x73\xbf\x13\x9b\x3f\x7a\xaa\xb6\xaf\xfd\xb6\xbc\x46\x54\x1b\xf4\x6c\x68\xc8\xf1\xd5\x65\x57\x7b\x4f\xb7\x2e\x68\x42\xfb\x39\x6f\xc8\x55\xd1\xaf\xed\x21\x07\x2d\x27\x73\x32\xdf\x01\x00\x00\xff\xff\x05\x52\x1c\xe7\xdb\x01\x00\x00" func stakingproxyStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -6080,11 +6060,11 @@ func stakingproxyStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0xfa, 0xc3, 0x3c, 0x9f, 0xf3, 0x8a, 0x9a, 0xdc, 0x74, 0xf7, 0x2b, 0x88, 0xd7, 0x95, 0xad, 0x57, 0x4c, 0x88, 0xe3, 0xa3, 0x8b, 0x57, 0x16, 0x99, 0xaa, 0xf0, 0x72, 0xcb, 0x5b, 0x7a, 0x23}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0xf5, 0xa3, 0x7d, 0x2b, 0xd5, 0x34, 0x68, 0x9, 0xf5, 0x8c, 0xe, 0x3c, 0x2a, 0x21, 0xf4, 0x5c, 0x52, 0x32, 0x7, 0x34, 0x9e, 0xa7, 0x2d, 0x55, 0x9, 0x63, 0x5d, 0x22, 0xc2, 0x25, 0xd0}} return a, nil } -var _stakingproxyStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\xcd\x4e\x02\x41\x0c\xbe\xcf\x53\xd4\x3d\x90\xd9\xc4\xec\xc9\x78\x20\x22\x51\x8c\xd1\x8b\x92\x20\xde\xcb\x6e\x81\x09\xcb\x74\xd2\xed\x46\x88\xe1\xdd\xcd\x30\x08\x63\xec\xe5\xcb\xb6\xdb\xef\xa7\xe3\xb6\x81\x45\x61\xa6\xb8\x71\x7e\x35\x15\xde\xed\x61\x29\xbc\x85\x22\x6f\x15\xc6\xa8\xa0\xef\xb0\x56\xc7\xde\x7a\x6e\xe8\xf5\x69\x08\x33\x15\xe7\x57\xd7\x80\x5b\xee\xbd\x0e\x61\xfe\xec\x76\xb7\x37\x25\x7c\x1b\x03\x00\x10\x84\x02\x0a\x59\xac\xeb\x34\xc7\x5e\xd7\xf6\x91\x45\xf8\xeb\x13\xdb\x9e\x4a\x18\x3c\xa4\x59\xdc\x81\x53\xb5\xa4\x10\xa2\xea\x0b\xb7\x0d\x09\x8c\xe0\x44\x50\x75\xca\x82\x2b\xaa\x16\x47\x8a\xbb\x41\x6e\xb1\x7a\xe3\x86\x62\x83\x64\x7a\x59\xbe\xb7\x31\xcc\x10\xfe\xfd\xf9\x1e\x48\x50\x59\x26\x18\x70\xe1\x5a\xa7\xfb\x59\x22\x9f\xa2\xae\xcb\xb3\x97\x58\xe3\x31\x04\xf4\xae\xb6\xc5\x84\xfb\xb6\x01\xcf\x0a\xc9\x01\x08\x2d\x49\xc8\xd7\x04\xca\xd0\x25\x8d\xe4\x1d\xd6\x47\xfd\xa2\x34\x7f\x72\x75\xf9\x9d\x47\x79\xcc\x53\xa8\xdc\xe8\xf9\xce\x09\xcb\xab\x0b\x57\xce\x53\xc5\x0f\x9a\xfb\x23\x34\x1f\xbc\x21\xdf\xd9\xdf\x27\x49\x98\x02\x1d\xcc\xc1\xfc\x04\x00\x00\xff\xff\x6e\x84\xf8\xb2\xf0\x01\x00\x00" +var _stakingproxyStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6b\xf2\x40\x10\xc7\xef\xfb\x29\xe6\xf1\xf0\x90\x40\x91\x1e\x4a\x0f\x52\x2b\x41\xfb\x22\x05\x0d\x46\xa1\x3d\x8e\xc9\xa8\x8b\x71\x67\x99\x8c\x54\x29\x7e\xf7\x12\x37\xd5\x94\xce\x65\x98\xdd\x79\xf9\xfd\xff\x76\xe7\x59\x14\x32\xc5\xad\x75\xeb\x54\xf8\x70\x84\x95\xf0\x0e\x6e\x0f\xd9\x3c\x79\x1b\x4f\x5e\xd2\xd9\xf4\xfd\x23\x19\x8d\x66\x4f\x59\x66\x8c\x0a\xba\x0a\x73\xb5\xec\x22\xc7\x05\x8d\x47\x3d\xc8\x54\xac\x5b\xdf\x00\xee\x78\xef\xb4\x07\x8b\x67\x7b\xb8\xbf\x8b\xe1\xcb\x18\x00\x00\x2f\xe4\x51\x28\xc2\x3c\x0f\xff\xc9\x5e\x37\x49\x28\xea\x26\x68\xa2\x24\x05\x5f\x03\xbc\x72\x59\x90\x40\x1f\x9a\x89\xee\x92\x45\xf8\xf3\xe1\x7f\x9b\xb2\x3b\xe1\x82\xea\x07\x92\xf4\x3a\xf4\x18\xd5\xf0\x3d\xf8\xd3\x39\xf5\x24\xa8\x2c\x43\xf4\xb8\xb4\xa5\xd5\x63\xa6\x2c\xb8\xa6\x14\x75\x13\x5f\x18\xea\x18\x0c\xc0\xa3\xb3\x79\xd4\x19\xf2\xbe\x2c\xc0\xb1\x42\x20\x00\xa1\x15\x09\xb9\x9c\x40\x19\xaa\x70\x23\x30\xc3\xe6\x7c\xbf\x13\x9b\x5f\x7a\xaa\xb6\xaf\xfd\xb6\xbc\x46\x54\x1b\xf4\x62\x68\xc8\xf1\xbf\xeb\xae\xf6\x9e\x6e\x5d\xd0\xc2\x9d\x53\x31\xe7\x2d\xb9\x2a\xfa\xf1\x3e\xe4\x20\xe8\x64\x4e\xe6\x3b\x00\x00\xff\xff\x77\xae\x51\x52\xe0\x01\x00\x00" func stakingproxyStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -6100,11 +6080,11 @@ func stakingproxyStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x53, 0x74, 0x5, 0xf2, 0x15, 0x8f, 0x8f, 0x44, 0xd1, 0xb7, 0x61, 0x2e, 0x6d, 0xbc, 0x17, 0x94, 0x6b, 0xb1, 0x72, 0x8e, 0xed, 0xab, 0x61, 0x43, 0x74, 0x96, 0x45, 0x94, 0xd4, 0xa8, 0xce}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0x15, 0xbf, 0xec, 0x2c, 0xa1, 0xf, 0x8f, 0x26, 0xb9, 0x7f, 0x27, 0xf9, 0xf2, 0x13, 0xbe, 0xa, 0x44, 0x5f, 0x7f, 0x6b, 0x19, 0x18, 0xb2, 0xf7, 0x7, 0x6e, 0x41, 0x39, 0xf2, 0x8e, 0xf9}} return a, nil } -var _stakingproxyUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\xc1\x6e\xfa\x30\x0c\xc6\xef\x79\x0a\xff\x7b\x40\xe9\xa5\x0f\x80\xfe\x0c\x31\x76\xd8\x2e\x1b\x12\xd2\xee\xa6\x35\x6d\xb4\x10\x47\xae\xab\x0d\x4d\xbc\xfb\x14\x52\x41\xa6\xf9\x12\xc5\x89\xbf\xef\xf7\xd9\x9d\x22\x8b\xc2\x5e\xf1\xc3\x85\x7e\x27\xfc\x75\x86\xa3\xf0\x09\xaa\xb2\x55\x19\xa3\x82\x61\xc4\x56\x1d\x07\x1b\xb8\xa3\x97\xa7\x25\xec\x55\x5c\xe8\x6b\xf8\x36\x06\x00\x20\x0a\x45\x14\xb2\xd8\xb6\x3c\x05\x5d\x02\x4e\x3a\xd8\x47\x16\xe1\xcf\x77\xf4\x13\xd5\xb0\xd8\xe4\xb7\x34\x03\x73\x79\x52\x88\xc9\xe5\x99\x7d\x47\x02\x2b\x98\x05\x9a\x51\x59\xb0\xa7\xe6\x70\x95\xf8\xbf\x28\x91\x9a\x57\xee\x28\x35\x48\x76\xf7\xe1\x07\x9b\xe0\x97\xf0\xe7\xe7\x5b\x24\x41\x65\xd9\x62\xc4\x83\xf3\x4e\xcf\xfb\x2c\xbe\x43\x1d\xea\x1b\x4b\xaa\xf5\x1a\x22\x06\xd7\xda\x6a\xcb\x93\xef\x20\xb0\x42\x26\x00\xa1\x23\x09\x85\x96\x40\x19\xc6\xec\x91\xd9\x61\xb8\xfa\x57\xb5\xf9\x95\x6b\x2c\xf7\xba\x2a\x63\xce\xa1\x4a\xd0\xdb\x5e\xf3\x59\xff\xbb\x6b\x95\x3a\xcd\x14\xd2\x95\x36\xde\xdb\x4c\x7e\x31\x17\xf3\x13\x00\x00\xff\xff\xdd\x2c\x7a\xf3\xc9\x01\x00\x00" +var _stakingproxyUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x41\x6b\xfb\x30\x0c\xc5\xef\xfe\x14\xfa\xf7\xf0\x27\xb9\x94\x9d\xcb\xba\x12\xda\xb1\x95\x41\x1b\xea\x1d\xb6\xa3\x9b\xa8\x89\x99\x6b\x19\x45\x61\x2d\xa3\xdf\x7d\x78\x0e\x6d\xc6\x74\x31\x32\x92\xde\xef\x3d\x7b\x0c\xc4\x02\x5a\xcc\x87\xf5\x4d\xc9\x74\x3a\xc3\x81\xe9\x08\x77\x27\xfd\x5a\xbc\xac\x37\x4f\xe5\x6e\xfb\xf6\x5e\xac\x56\xbb\x47\xad\x95\x12\x36\xbe\x33\x95\x58\xf2\x99\xa7\x1a\xd7\xab\x19\x68\x61\xeb\x9b\x1c\xbe\x94\x02\x00\x08\x8c\xc1\x30\x66\xa6\xaa\xa8\xf7\x32\x83\xa2\x97\xb6\x48\x4d\x1c\x82\xa1\x1c\x0a\x84\x28\xf8\x4c\xae\x46\x86\x39\x0c\x1b\xd3\x3d\x31\xd3\xe7\xfd\xff\x31\xd5\x74\x43\x35\xc6\x0f\xe4\xf2\xb6\xf4\x90\x45\xd8\x19\xfc\x99\xdc\x06\x64\x23\xc4\x4b\x13\xcc\xde\x3a\x2b\x67\x2d\xc4\xa6\xc1\xd2\x48\x9b\x5f\x19\x62\x2d\x16\x10\x8c\xb7\x55\x36\x59\x52\xef\x6a\xf0\x24\x90\x08\x80\xf1\x80\x8c\xbe\x42\x10\x82\x2e\x69\x24\x66\x68\x7f\xf4\x27\xb9\xfa\xe5\xa7\x1b\xe7\x38\x1f\xdb\x1b\x4c\x8d\x41\xaf\x01\xa6\x37\xff\x77\xbb\x35\xbe\x33\xed\x7d\x6c\xb1\x70\x2e\x4b\xe4\x17\x75\x51\xdf\x01\x00\x00\xff\xff\x44\x15\xbb\x2b\xb9\x01\x00\x00" func stakingproxyUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -6120,11 +6100,11 @@ func stakingproxyUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0x90, 0x5b, 0x1f, 0x96, 0x97, 0xc4, 0x6a, 0x9, 0x69, 0x0, 0xc3, 0xb0, 0x20, 0x88, 0x83, 0xe, 0xb1, 0xf7, 0x4e, 0x33, 0xd9, 0x1b, 0x7, 0xc3, 0xad, 0xf5, 0xd0, 0x72, 0x2b, 0xc8, 0xf1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4e, 0x22, 0xbf, 0xdd, 0x5d, 0x32, 0xc7, 0xd6, 0xbb, 0x36, 0xf6, 0xe, 0xd0, 0x40, 0xd0, 0xa2, 0x2c, 0x84, 0x49, 0xdd, 0x16, 0xbf, 0x84, 0xa3, 0xa0, 0xb1, 0x4a, 0xc8, 0x33, 0x23, 0xef, 0xa9}} return a, nil } -var _stakingproxyWithdraw_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x41\x4f\xf3\x30\x0c\x86\xef\xf9\x15\xfe\x7a\x98\x5a\xe9\x53\x4f\x88\xc3\xc4\x98\x60\x08\xc1\x05\x26\x06\xdc\xbd\xc6\x5b\xa3\x75\x71\xe4\xba\xea\x26\xb4\xff\x8e\xba\x8c\x2d\x08\x5f\x2c\xd9\xf1\xeb\xf7\x71\xdc\x36\xb0\x28\x2c\x14\x37\xce\xaf\xe7\xc2\xbb\x3d\xac\x84\xb7\x90\xa5\xa5\xcc\x18\x15\xf4\x2d\x56\xea\xd8\xe7\x9e\x2d\x3d\x3f\x8c\x61\xa1\xe2\xfc\xfa\x3f\xe0\x96\x3b\xaf\x63\xf8\x78\x74\xbb\xeb\xab\x02\xbe\x8c\x01\x00\x08\x42\x01\x85\x72\xac\xaa\xd8\xc7\x4e\xeb\xfc\x9e\x45\xb8\xff\xc4\xa6\xa3\x02\x46\x77\xb1\x37\xcc\xc0\x29\x1a\x52\x08\xc3\xd6\x27\x6e\x2c\x09\x4c\xe0\x24\x50\xb6\xca\x82\x6b\x2a\x97\x47\x89\x9b\x51\x6a\xb1\x7c\x61\x4b\x43\x81\x64\x7e\x19\xbe\xcd\x07\x98\x31\xfc\x79\xf9\x1a\x48\x50\x59\x66\x18\x70\xe9\x1a\xa7\xfb\x45\x14\x9f\xa3\xd6\xc5\xd9\xcb\x10\xd3\x29\x04\xf4\xae\xca\xb3\x19\x77\x8d\x05\xcf\x0a\xd1\x01\x08\xad\x48\xc8\x57\x04\xca\xd0\xc6\x1d\xd1\x3b\xd4\xc7\xfd\x59\x61\x7e\x71\xb5\xe9\x9d\x27\x29\xe6\x09\x2a\x35\x7a\xbe\x73\xcc\xc5\xbf\x8b\x56\xaa\x53\xf6\x4e\x6b\x2b\xd8\xbf\x51\x8f\x62\xc9\xbe\xf3\x86\x7c\x9b\xff\xfc\x4a\xcc\x91\xe9\x60\x0e\xe6\x3b\x00\x00\xff\xff\x44\x7a\x9d\x16\xf3\x01\x00\x00" +var _stakingproxyWithdraw_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x5d\x6b\xea\x40\x10\x86\xef\xf3\x2b\xe6\x78\x71\x48\xe0\x20\xe7\xa2\xf4\x42\x6a\x25\x68\x3f\xa4\xa0\xc1\x58\x68\x2f\xc7\xec\x68\x16\xe3\xce\x32\x19\x89\x52\xfc\xef\x25\x5d\xab\x29\x9d\x9b\x61\x77\xbe\x9e\xf7\xb5\x3b\xcf\xa2\x90\x2b\x6e\xad\xdb\x64\xc2\x87\x23\xac\x85\x77\xf0\xff\x90\x2f\xd3\x97\xe9\xec\x29\x5b\xcc\xdf\xde\xd3\xc9\x64\xf1\x90\xe7\x51\xa4\x82\xae\xc6\x42\x2d\xbb\xd8\xb1\xa1\xe9\x64\x00\xb9\x8a\x75\x9b\x7f\x80\x3b\xde\x3b\x1d\xc0\xeb\xa3\x3d\xdc\xde\x24\xf0\x11\x45\x00\x00\x5e\xc8\xa3\x50\x8c\x45\x11\xea\xe9\x5e\xcb\x34\x3c\xda\x26\x38\x47\x45\x0a\xbe\x05\x78\xe6\xca\x90\xc0\x10\xce\x13\xfd\x15\x8b\x70\x73\xf7\xb7\x4b\xd9\x9f\xb1\xa1\xf6\x83\x24\xbb\x0e\xdd\xc7\x2d\xfc\x00\x7e\x75\xce\x3d\x09\x2a\xcb\x18\x3d\xae\x6c\x65\xf5\x98\x2b\x0b\x6e\x28\x43\x2d\x93\x0b\x43\x1b\xa3\x11\x78\x74\xb6\x88\x7b\x63\xde\x57\x06\x1c\x2b\x04\x02\x10\x5a\x93\x90\x2b\x08\x94\xa1\x0e\x37\x02\x33\x94\x5f\xf7\x7b\x49\xf4\x43\x4f\xdd\xf5\x75\xd8\x95\x77\x16\xd5\x05\xbd\x18\x1a\x72\xf2\xe7\xba\xab\xbb\xa7\xdf\x58\x2d\x8d\x60\xb3\xa0\x06\xc5\x90\x59\xf2\x96\x5c\x1d\x7f\xdb\x1f\x72\xd0\x74\x8a\x4e\xd1\x67\x00\x00\x00\xff\xff\x3f\x35\x0b\xc5\xe3\x01\x00\x00" func stakingproxyWithdraw_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -6140,11 +6120,11 @@ func stakingproxyWithdraw_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/withdraw_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0x67, 0xcd, 0x39, 0x60, 0x24, 0xa6, 0xba, 0xe0, 0x8a, 0xb5, 0x4e, 0x33, 0x37, 0x28, 0xc9, 0xc3, 0xda, 0x33, 0x76, 0x7b, 0xa, 0x4e, 0xd6, 0x9e, 0xc7, 0x9b, 0x7e, 0x8e, 0x7b, 0x77, 0x87}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe5, 0xb1, 0xc7, 0x2c, 0xab, 0x3c, 0x5b, 0xe5, 0xb1, 0xa4, 0x2e, 0xb, 0x7, 0xa6, 0x21, 0xff, 0x71, 0x28, 0x8f, 0x68, 0xb5, 0x96, 0x7, 0xf5, 0x2e, 0x1c, 0xf5, 0xc2, 0xcf, 0x22, 0xdb, 0xd3}} return a, nil } -var _stakingproxyWithdraw_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\x4d\x6b\xf2\x40\x10\xbe\xef\xaf\x98\x37\x07\x49\xe0\x25\xa7\xd2\x83\xd4\x4a\x6b\x29\xed\xa5\x15\xac\xbd\x8f\xc9\x68\x16\xe3\xce\x32\x99\xa0\x52\xfc\xef\x65\xdd\x54\xb7\x74\x2e\x03\xcf\xec\x3c\x1f\xb3\x76\xe7\x59\x14\x16\x8a\x5b\xeb\x36\x73\xe1\xc3\x11\xd6\xc2\x3b\xc8\x52\x28\x33\x46\x05\x5d\x87\x95\x5a\x76\xb9\xe3\x9a\x5e\x9f\xc6\xb0\x50\xb1\x6e\xf3\x1f\x70\xc7\xbd\xd3\x31\x2c\x9f\xed\xe1\xf6\xa6\x80\x2f\x63\x00\x00\xbc\x90\x47\xa1\x1c\xab\x2a\xce\xb1\xd7\x26\x7f\x64\x11\xde\x7f\x62\xdb\x53\x01\xa3\x87\x38\x0b\x3b\x30\x54\x4b\x0a\x3e\xa8\xbe\x70\x5b\x93\xc0\x04\x06\x82\xb2\x53\x16\xdc\x50\xb9\x3a\x53\xdc\x8d\x52\x8b\xe5\x1b\xd7\x14\x00\x92\xf9\x75\xf9\x3e\x0f\x61\xc6\xf0\xe7\xe5\xbb\x27\x41\x65\x99\xa1\xc7\x95\x6d\xad\x1e\x17\x91\x7c\x8e\xda\x14\x17\x2f\xa1\xa6\x53\xf0\xe8\x6c\x95\x67\x33\xee\xdb\x1a\x1c\x2b\x44\x07\x20\xb4\x26\x21\x57\x11\x28\x43\x17\x35\xa2\x77\x68\xce\xfa\x59\x61\x7e\xe5\xea\xd2\x3b\x4f\xd2\x98\x43\xa8\xd4\xe8\xe5\xce\xb1\x17\xff\xae\x5c\x29\x4f\xb9\xb7\xda\xd4\x82\xfb\xa5\x0b\x30\xd5\x1f\xbc\x25\xd7\xe5\x3f\xbf\x12\x7b\xcc\x74\x32\x27\xf3\x1d\x00\x00\xff\xff\x6b\x4e\x2d\x38\xf3\x01\x00\x00" +var _stakingproxyWithdraw_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6b\xf2\x40\x10\xc7\xef\xfb\x29\xe6\xf1\xf0\x90\x40\x91\x1e\x4a\x0f\x52\x2b\x41\xfb\x22\x05\x0d\x46\xa1\x3d\x8e\xc9\x68\x16\xe3\xce\x32\x19\x51\x29\x7e\xf7\x92\xae\xd5\x94\xce\x65\xd8\xd9\x79\xf9\xfd\xff\x76\xeb\x59\x14\x32\xc5\x8d\x75\xeb\x54\xf8\x70\x84\x95\xf0\x16\x6e\x0f\xd9\x3c\x79\x1b\x4f\x5e\xd2\xd9\xf4\xfd\x23\x19\x8d\x66\x4f\x59\x66\x8c\x0a\xba\x1a\x73\xb5\xec\x22\xc7\x05\x8d\x47\x3d\xc8\x54\xac\x5b\xdf\x00\x6e\x79\xe7\xb4\x07\x8b\x67\x7b\xb8\xbf\x8b\xe1\xd3\x18\x00\x00\x2f\xe4\x51\x28\xc2\x3c\x0f\xff\xc9\x4e\xcb\x24\x3c\x9a\x26\x38\x47\x45\x0a\xbe\x01\x78\xe5\xaa\x20\x81\x3e\x9c\x27\xba\x4b\x16\xe1\xfd\xc3\xff\x36\x65\x77\xc2\x05\x35\x05\x92\xf4\x3a\xf4\x18\x35\xf0\x3d\xf8\xd3\x39\xf5\x24\xa8\x2c\x43\xf4\xb8\xb4\x95\xd5\x63\xa6\x2c\xb8\xa6\x14\xb5\x8c\x2f\x0c\x4d\x0c\x06\xe0\xd1\xd9\x3c\xea\x0c\x79\x57\x15\xe0\x58\x21\x10\x80\xd0\x8a\x84\x5c\x4e\xa0\x0c\x75\xb8\x11\x98\xa1\xfc\xbe\xdf\x89\xcd\x2f\x3d\x75\xdb\xd7\x7e\x5b\xde\x59\x54\x1b\xf4\x62\x68\xc8\xf1\xbf\xeb\xae\xf6\x9e\xee\xde\x6a\x59\x08\xee\x17\xae\x29\x53\x31\xe7\x0d\xb9\x3a\xfa\xb1\x3f\xe4\xa0\xe9\x64\x4e\xe6\x2b\x00\x00\xff\xff\x10\x01\xbb\xeb\xe3\x01\x00\x00" func stakingproxyWithdraw_unstakedCdcBytes() ([]byte, error) { return bindataRead( @@ -6160,11 +6140,11 @@ func stakingproxyWithdraw_unstakedCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/withdraw_unstaked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb2, 0x72, 0x63, 0xb9, 0x44, 0x4, 0x84, 0x7a, 0xbd, 0x19, 0x88, 0x23, 0x78, 0x77, 0xb6, 0xf0, 0xfe, 0x8a, 0x5c, 0xf2, 0x6f, 0xa2, 0xf, 0xda, 0xdb, 0xb1, 0x89, 0x1c, 0x19, 0xb5, 0x56, 0x95}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xf, 0x29, 0xf5, 0x62, 0x4a, 0xb5, 0x57, 0xd8, 0x30, 0x56, 0xc8, 0xbd, 0xe9, 0x8c, 0x9d, 0x40, 0x3, 0xa3, 0x63, 0xca, 0xca, 0x56, 0x54, 0x8d, 0x6c, 0x8c, 0x8b, 0x40, 0x53, 0xa1, 0xe3}} return a, nil } -var _storagefeesAdminSet_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x2f\x3e\x04\x19\x8a\x74\x29\x3d\x98\xa6\x26\x29\xe8\xd4\xd0\x92\xfe\x3b\x4f\xd6\x23\x6b\x8b\xb4\x2b\x66\x47\x75\x4a\xd1\x77\x2f\xab\x3f\xae\x12\xd7\xa6\x7b\x90\x40\x7a\xef\xcd\x6f\x66\xd6\x36\xad\x17\x45\x51\xfb\xc3\x67\xf5\x42\x7b\x2e\x98\x03\x4a\xf1\x0d\x56\x2f\xbe\xae\x92\x24\xcf\xf1\xa5\xb2\x01\x2a\xe4\x02\x19\xb5\xde\xc1\x54\xe4\xf6\x1c\xa0\x15\xa3\xac\xfd\x01\x61\xb4\xa0\x8c\x49\x2d\x09\x35\xac\x2c\x21\x59\x98\xd2\x49\x73\xf7\x4b\x39\x7c\x62\x79\xe0\xc0\xf2\x93\x77\xc5\x87\x8f\xdf\x37\xf8\x5a\xd8\xa7\x37\xaf\xb7\xaf\xd0\x58\x67\x9b\xae\x99\x18\x46\x11\x45\xff\x51\xb3\xc6\xef\x04\x00\x86\x47\xcd\x0a\xda\x35\xd6\x3d\x70\xb9\xc1\xf5\x0b\xfc\xec\x36\xfe\xb2\x41\x85\xd4\x4b\x32\x38\x5a\xe1\x96\x84\x53\x32\x46\x37\xa0\x4e\xab\xf4\xce\x8b\xf8\xc3\x37\xaa\x3b\x5e\xe3\xfa\xd6\x18\xdf\x39\x9d\xcb\xc4\x93\xe7\x78\x1c\x34\x20\x08\x97\x2c\xec\x0c\x43\xfd\x30\x80\xa1\x3c\xfc\xe3\x0f\x36\x7a\x74\x04\xae\xcb\x6c\x06\xc3\x0d\x62\xb5\x6c\x9a\x40\x36\x66\xbd\xbd\x4c\xfb\x2e\x8d\x1b\xd9\x20\x9f\x5c\xf3\x3b\x2a\x07\xe1\xfa\x58\x2c\x9e\xed\x16\x2d\x39\x6b\xd2\xd5\x7b\xdf\xd5\x3b\x38\xaf\x33\xf3\x33\xe2\x67\x9b\x1a\x00\x57\x63\x50\x3f\x8e\x87\x9f\xd8\x74\xca\x8b\xe6\x6d\x89\x0b\xab\xc3\xd5\x0d\x9c\xad\x17\xfa\x93\xf6\xb3\xc0\x3a\xb5\x79\xcf\x7b\xfa\x57\xca\xa5\xcb\x71\xf5\xb7\xd1\x7e\x09\x75\xf6\xa6\xfc\x27\xd2\xfd\x39\x7f\x7a\x36\xf9\x04\xa5\x4f\xfa\x3f\x01\x00\x00\xff\xff\x05\xa9\x75\x7a\x4f\x03\x00\x00" +var _storagefeesAdminSet_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6f\xd3\x40\x10\xc5\xef\xfe\x14\xaf\x3d\x20\x57\x42\x31\x07\xc4\x21\xa2\x44\x86\xc6\x5c\xa8\x8a\xe2\x22\xce\xdb\xcd\x38\x5e\x64\xef\x5a\xb3\x63\x12\x84\xfc\xdd\xd1\xfa\x4f\x70\x09\x89\xba\x87\xe4\xe0\xf7\xde\xfc\xde\xce\x9a\xba\x71\x2c\xc8\x2a\xb7\xcf\xc5\xb1\xda\x51\x46\xe4\x51\xb0\xab\xf1\xe6\x90\x7d\x79\xf8\x9e\x3f\x3e\x6c\xd2\xcf\xeb\x6c\xbd\xce\xd3\xbb\xbb\xcd\x3a\xcf\xa3\x28\x49\xf0\x58\x1a\x0f\x61\x65\xbd\xd2\x62\x9c\x85\x2e\x95\xdd\x91\x87\x94\x84\xa2\x72\x7b\xf8\x21\x0f\x45\x08\x6c\x14\xab\x9a\x84\xd8\x47\x33\x53\x3c\x6a\x3e\xfe\x12\xf2\x5f\x89\x37\xe4\x89\x7f\xd2\x36\xcc\x5d\xe2\x5b\x66\x0e\xef\xde\xae\x5e\xa3\x36\xd6\xd4\x6d\x3d\x02\x0e\x22\x15\xfc\x47\xcd\x0d\x7e\x47\x00\xd0\xff\x54\x24\x50\xdb\xda\xd8\x0d\x15\x4b\xbc\xfa\xa7\xdb\x22\x0d\x9f\x8c\x17\x56\xe2\x38\xea\x1d\x0d\x53\xa3\x98\x62\xa5\xb5\x2c\x91\xb6\x52\xa6\x5a\xbb\xd6\xca\x94\x1b\x4e\x92\xe0\xc9\x31\xbb\x3d\x14\x98\x0a\x62\xb2\x9a\x20\xae\x6f\xdc\xcf\x83\x7b\xfa\x41\x5a\x8e\x0e\x4f\x55\xb1\x98\x48\x70\x8b\x10\xbf\x18\x32\xde\x5f\xc6\xfa\x10\x87\x0d\x2c\x91\x8c\x17\x34\xfd\x07\x65\x2f\xbc\x39\x0e\x09\x67\xb5\x42\xa3\xac\xd1\xf1\xf5\x27\xd7\x56\x5b\x58\x27\x13\xeb\x33\xd2\x67\x2b\xe9\xc1\xae\x87\xa0\x6e\xb8\x07\x3a\x90\x6e\x85\x66\xa5\x4d\x81\x0b\x3b\xc2\xd5\x2d\xac\xa9\x66\xfa\x93\xda\x0b\x4f\x32\xd6\xbc\xa7\x9d\xfa\x5f\xca\xa5\x57\x70\xf5\xb7\x68\x37\x87\x3a\xfb\x24\x5e\x88\x74\x7f\xce\x1f\x9f\x4d\x3e\x41\xe9\xa2\xee\x4f\x00\x00\x00\xff\xff\xec\x9d\x5e\x73\x3f\x03\x00\x00" func storagefeesAdminSet_parametersCdcBytes() ([]byte, error) { return bindataRead( @@ -6180,11 +6160,11 @@ func storagefeesAdminSet_parametersCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/admin/set_parameters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0xd9, 0x32, 0xf5, 0x38, 0x90, 0x33, 0x23, 0xa, 0xeb, 0x8b, 0x76, 0xae, 0x50, 0x25, 0x2e, 0x3c, 0x95, 0x89, 0x31, 0x1, 0xd0, 0xa6, 0x9b, 0x56, 0x9b, 0x20, 0xe1, 0x48, 0x5e, 0xa9, 0x5c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa7, 0xa3, 0x32, 0x6, 0x3f, 0x4f, 0xeb, 0xc7, 0xce, 0x3b, 0x61, 0xd9, 0x69, 0x36, 0x97, 0xdd, 0xaf, 0xd5, 0xa1, 0x25, 0x5d, 0xda, 0xa7, 0x27, 0x20, 0xcd, 0x26, 0x35, 0xa6, 0xb4, 0x82, 0xd1}} return a, nil } -var _storagefeesScriptsGet_account_available_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8d\x31\x0e\xc2\x30\x0c\x45\xf7\x9c\xe2\xab\x53\xbb\x30\x21\x86\x6e\x65\xe8\x05\x80\x03\x98\xd4\x45\x11\xae\x8d\x9c\x04\x90\x10\x77\x67\x61\xca\xf6\xf4\x86\xf7\xd2\xf6\x30\x2f\x98\xc5\x5e\xa7\x62\x4e\x37\x9e\x99\x33\x56\xb7\x0d\x5d\x63\xbb\x10\x28\x46\xce\xb9\x27\x91\x01\x6b\x55\x6c\x94\xb4\xa7\x18\xad\x6a\x99\x96\xc5\x39\xe7\x11\x7f\x18\x46\x5c\xe6\xf4\x3e\xec\xf1\x09\x00\xe0\x5c\xaa\x6b\xbb\xda\x2d\xbc\x52\x95\x72\xb6\x3b\xeb\xf4\xa4\x24\x74\x15\x3e\x92\x90\x46\x6e\xd2\x43\xf8\x86\xf0\x0b\x00\x00\xff\xff\xee\x68\x60\x24\xb2\x00\x00\x00" +var _storagefeesScriptsGet_account_available_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\xb1\x0e\x82\x30\x14\x46\xe1\xbd\x4f\xf1\x8f\xb2\x18\x07\xe3\xc0\x56\x43\xeb\x62\x42\x42\x31\xce\x17\xb8\x98\xc6\xd2\x92\xd2\x2a\x89\xf1\xdd\x5d\x9c\xd8\xce\x74\x3e\x3b\xcd\x21\x26\x68\x17\xde\x26\x85\x48\x0f\xd6\xcc\x0b\xc6\x18\x26\x1c\x56\x7d\xad\xef\xa6\xad\x1b\x79\x51\x5a\x29\x23\xab\xaa\x51\xc6\x08\x31\xe7\x0e\x63\xf6\x98\xc8\xfa\x1d\xf5\x7d\xc8\x3e\xc9\x61\x88\xbc\x2c\x25\xfe\x51\x94\xb8\x69\xbb\x9e\x8e\xf8\x08\x00\x88\x9c\x72\xf4\x5b\x69\x3f\xf0\x48\xd9\xa5\x36\x3c\xd9\xcb\x17\x59\x47\x9d\xe3\x33\x39\xf2\x3d\x6f\xd6\x85\xf8\x0a\xf1\x0b\x00\x00\xff\xff\x79\xc3\x9c\x46\xb1\x00\x00\x00" func storagefeesScriptsGet_account_available_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -6200,11 +6180,11 @@ func storagefeesScriptsGet_account_available_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/scripts/get_account_available_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x32, 0x50, 0xda, 0x76, 0x6e, 0x91, 0xb, 0x23, 0x25, 0x39, 0x44, 0xac, 0xdf, 0x2c, 0xbb, 0xea, 0x83, 0xa1, 0xba, 0xc6, 0x85, 0x46, 0x4d, 0xac, 0x95, 0xe4, 0x42, 0xdd, 0x66, 0xb6, 0x86, 0xba}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0xfd, 0x85, 0x8, 0x30, 0x9, 0x65, 0xb6, 0x3a, 0x50, 0x6, 0x71, 0x64, 0x59, 0xeb, 0x4d, 0xb0, 0x14, 0xfb, 0xae, 0xc5, 0xa0, 0x16, 0xaa, 0x51, 0xa, 0x9a, 0x9d, 0x98, 0x6e, 0xb0, 0x97}} return a, nil } -var _storagefeesScriptsGet_accounts_capacity_for_transaction_storage_checkCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\x21\x27\x1b\x4c\x4f\xa5\x07\xdd\x42\x40\x3f\xd0\xf4\x14\x72\x58\x94\x4d\x2a\x6a\x49\x66\x57\xa6\x0e\xa5\xff\x5e\x12\x0b\x63\x5c\x5d\x34\x3c\x86\xd9\x17\xe2\x90\xa5\xc0\xf5\xf9\xfb\xbd\x64\xa1\x1b\x3b\x66\xc5\x55\x72\xc4\x6e\x43\x77\xc6\x90\xf7\xac\xda\x50\xdf\xb7\xb8\x8e\x09\x91\x42\x6a\xc8\xfb\x3c\xa6\xb2\xbf\x5c\x84\x55\x59\x2d\x4e\x35\x9f\x3b\x0c\x74\x67\xb1\xa8\xa0\x43\xa4\xe9\x38\x3d\xd6\x2c\x3e\x5c\x98\xde\x5e\x5b\x8b\xd3\x9c\xce\xf8\x31\x00\x20\x5c\x46\x49\x5b\xa7\x97\x1b\x97\xfd\x7c\x49\x0f\x34\x90\x0f\xe5\xee\xb2\x1c\x85\x92\x92\x2f\x21\xa7\x5a\x3e\x7c\xb2\xff\x6a\x9e\x4b\x8f\xf7\xdf\x6e\x4b\x3a\x2c\xe5\x6a\xfb\xfc\x56\x78\x25\xbd\xc4\xd6\xfc\xfe\x05\x00\x00\xff\xff\x33\xc0\x69\x3d\x3d\x01\x00\x00" +var _storagefeesScriptsGet_accounts_capacity_for_transaction_storage_checkCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\x41\x6b\x02\x31\x10\x85\xef\xfb\x2b\xde\x51\x61\x29\x3d\x94\x1e\xf6\xb6\xe8\xa6\x97\x82\x60\xb6\xf4\x20\x1e\xa6\x71\xb4\xa1\xdd\x64\x99\x24\x34\x52\xfa\xdf\x8b\x1a\x44\xd6\x5c\xf2\xf8\x78\xcc\xfb\xec\x30\x7a\x89\x50\xdf\xfe\x47\x47\x2f\x74\x60\xc5\x1c\xb0\x17\x3f\xe0\x31\xab\xd7\xd5\xbb\xee\x57\xeb\xf6\xa5\x53\x5d\xa7\xdb\xe5\x72\xdd\x69\x5d\x55\x63\xfa\xc0\x3e\x39\x0c\x64\xdd\x8c\x8c\xf1\xc9\xc5\x76\xb7\x13\x0e\x81\x43\x83\x4d\xc9\xdb\x1a\x23\x1d\x59\x1a\x14\x50\x63\xa0\xdc\xe7\xd3\x44\x83\x37\x65\xf3\xf3\xd3\xbc\xc1\xe6\x92\xb6\xf8\xad\x00\x40\x38\x26\x71\x53\xa5\x87\x03\xc7\xf6\xb2\x14\x16\x34\x92\xb1\xf1\xa8\xbc\xf4\x42\x2e\x90\x89\xd6\xbb\x52\x5e\x7c\xb2\xf9\x9a\x9d\x2f\x9d\xde\xbd\xdd\x94\xd4\xb8\x96\x8b\xed\xf9\xbb\xc1\x37\xd2\xd7\x38\xaf\xfe\xfe\x03\x00\x00\xff\xff\xbd\x5a\xcf\x11\x3c\x01\x00\x00" func storagefeesScriptsGet_accounts_capacity_for_transaction_storage_checkCdcBytes() ([]byte, error) { return bindataRead( @@ -6220,11 +6200,11 @@ func storagefeesScriptsGet_accounts_capacity_for_transaction_storage_checkCdc() } info := bindataFileInfo{name: "storageFees/scripts/get_accounts_capacity_for_transaction_storage_check.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9b, 0xdf, 0x5, 0xd2, 0x29, 0xa8, 0x2a, 0x4b, 0xa1, 0xae, 0xb3, 0x56, 0xc, 0xa9, 0x35, 0x83, 0xaa, 0xa7, 0x33, 0x53, 0x3b, 0xa3, 0x19, 0x1b, 0x71, 0x36, 0xbc, 0x97, 0x1, 0x9, 0x48, 0xcc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0x34, 0x74, 0x75, 0xae, 0x8f, 0x8, 0xcb, 0xda, 0x26, 0x6c, 0x8f, 0x86, 0x16, 0xb6, 0x27, 0x87, 0xd8, 0x97, 0xb6, 0x67, 0x1d, 0x1d, 0x3, 0xc4, 0xdb, 0xf1, 0x9a, 0x5f, 0xa8, 0x96, 0x9f}} return a, nil } -var _storagefeesScriptsGet_storage_capacityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\xbd\xaa\xc2\x40\x10\xc5\xf1\x7e\x9e\xe2\x90\x2a\x69\x6e\x75\xb1\x48\x17\x84\xbc\x80\xf8\x00\xc3\x64\x22\x0b\xfb\x11\x66\x67\x51\x11\xdf\xdd\x42\xab\xed\x0e\xa7\xf8\xfd\x43\x3a\x8a\x39\xd6\x58\xee\x17\x2f\xc6\x37\x5d\x55\x2b\x76\x2b\x09\x43\xf7\x0e\x44\x2c\xa2\xb5\x8e\x1c\xe3\x84\xbd\x65\x24\x0e\x79\x64\x91\xd2\xb2\x2f\xdb\x66\x5a\xeb\x8c\xdf\x98\x66\x5c\xd7\xf0\x38\xfd\xe3\x45\x00\x60\xea\xcd\x72\x9f\xfa\x13\x8e\xd2\x22\xbb\x2e\x5f\xe6\xcc\x07\x4b\xf0\x67\xc7\x4e\xf4\x26\xfa\x04\x00\x00\xff\xff\x8c\x0d\x5c\xd9\xae\x00\x00\x00" +var _storagefeesScriptsGet_storage_capacityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\xb1\x0a\xc2\x30\x14\x46\xe1\x3d\x4f\xf1\x8f\x76\x11\x07\x71\xe8\x16\x6c\xe2\x22\x14\x1a\xc5\xf9\x9a\xa6\x12\x68\x93\x92\xdc\x60\x45\x7c\x77\x07\x9d\xba\x9d\xe9\x3b\x7e\x9a\x63\x62\xe8\x31\x3e\x0d\xc7\x44\x0f\xa7\x9d\xcb\x18\x52\x9c\xb0\x5b\xf4\xb9\xbd\x99\x4b\xdb\xc9\x93\xd2\x4a\x19\xd9\x34\x9d\x32\x46\x88\xb9\xdc\x31\x94\x80\x89\x7c\xd8\x90\xb5\xb1\x04\x96\x7d\x9f\x5c\xce\x35\xfe\x51\xd5\xb8\x6a\xbf\x1c\xf6\x78\x0b\x00\x48\x8e\x4b\x0a\xeb\xd3\xd6\xd2\x68\xcb\x48\xec\xe4\x8f\x39\xd2\x4c\xd6\xf3\x6b\xc5\x56\xe2\x23\xc4\x37\x00\x00\xff\xff\x28\x3f\x05\x18\xad\x00\x00\x00" func storagefeesScriptsGet_storage_capacityCdcBytes() ([]byte, error) { return bindataRead( @@ -6240,11 +6220,11 @@ func storagefeesScriptsGet_storage_capacityCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/scripts/get_storage_capacity.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x63, 0xd2, 0xf3, 0x9f, 0xea, 0xbb, 0x73, 0x3a, 0x51, 0xc8, 0xd, 0x5e, 0xc2, 0x63, 0x95, 0xa, 0x55, 0x31, 0x8e, 0x32, 0xbd, 0x2f, 0x88, 0xfe, 0xca, 0x12, 0x76, 0xa7, 0x3d, 0x7f, 0x40, 0xa7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1b, 0x18, 0xd9, 0xdf, 0xe2, 0x7a, 0x84, 0x72, 0x8c, 0xe3, 0xb1, 0x8d, 0xfc, 0x60, 0x9a, 0x3b, 0x64, 0xba, 0x43, 0xad, 0xab, 0x45, 0xaa, 0x55, 0xd9, 0x37, 0x6b, 0x76, 0x54, 0x24, 0x1f, 0x95}} return a, nil } -var _storagefeesScriptsGet_storage_fee_conversionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x2e\xc9\x2f\x4a\x4c\x4f\x75\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x50\x42\x13\x55\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x37\x53\xaf\x18\xc2\xf6\x4d\x4d\x4f\x74\xaa\x2c\x49\x2d\x0e\x48\x2d\x0a\x4a\x2d\x4e\x2d\x2a\x4b\x4d\x71\xf3\xf1\x0f\xe7\xaa\xe5\xe2\x02\x04\x00\x00\xff\xff\x0f\x9e\x44\xff\x8e\x00\x00\x00" +var _storagefeesScriptsGet_storage_fee_conversionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x2e\xc9\x2f\x4a\x4c\x4f\x75\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x0f\x0e\xf1\x0f\x72\x74\x77\x75\x73\x75\x0d\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x37\x52\xaf\x18\xc2\xf6\x4d\x4d\x4f\x74\xaa\x2c\x49\x2d\x0e\x48\x2d\x0a\x4a\x2d\x4e\x2d\x2a\x4b\x4d\x01\x59\xc3\x55\xcb\xc5\x05\x08\x00\x00\xff\xff\x26\x69\x66\x9f\x8d\x00\x00\x00" func storagefeesScriptsGet_storage_fee_conversionCdcBytes() ([]byte, error) { return bindataRead( @@ -6260,11 +6240,11 @@ func storagefeesScriptsGet_storage_fee_conversionCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/scripts/get_storage_fee_conversion.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0x5c, 0x5d, 0x1, 0xde, 0x2a, 0xe5, 0x96, 0x6b, 0x2b, 0x70, 0x3a, 0x9c, 0xae, 0x50, 0x36, 0x4a, 0xea, 0xf2, 0xef, 0x3d, 0xdd, 0xf7, 0xa2, 0x20, 0x5c, 0x52, 0xf6, 0xb7, 0x93, 0x56, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0x34, 0x70, 0x9c, 0x9c, 0xb7, 0x42, 0x13, 0x80, 0x4a, 0x0, 0x5e, 0x5b, 0x24, 0x1a, 0xee, 0x7d, 0x4e, 0x56, 0x8c, 0x3b, 0x21, 0xe6, 0x9f, 0xf8, 0xaf, 0xb2, 0xe6, 0x4d, 0xda, 0xfa, 0xd7}} return a, nil } -var _storagefeesScriptsGet_storage_fee_minCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcc\x31\x0a\x02\x41\x0c\x05\xd0\x3e\xa7\xf8\x6c\xb5\xdb\x58\x89\x85\x07\x98\x03\x28\x1e\x20\x2c\x59\x09\x4c\x12\xc9\xcc\xa8\x20\xde\xdd\xc6\x6a\xdb\x57\x3c\xb5\x47\x64\x47\xa9\xf1\xba\xf6\x48\xbe\x4b\x11\x69\xd8\x32\x0c\xd3\x4e\x27\x22\x5e\x57\x69\x6d\xe6\x5a\x17\x6c\xc3\x61\xac\x3e\x2f\x67\xdc\x8a\xbe\x4f\x47\x7c\x08\x00\x52\xfa\x48\xdf\x9f\x07\x53\x57\x1b\xf6\xa7\x8b\x34\xc9\x27\x77\x0d\xa7\x2f\xd1\x2f\x00\x00\xff\xff\x10\x6e\x9d\x6a\x88\x00\x00\x00" +var _storagefeesScriptsGet_storage_fee_minCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcc\xb1\x0a\xc2\x30\x10\x06\xe0\xfd\x9e\xe2\x1f\x75\x11\x07\x71\x70\x2b\x34\x71\x11\x0a\x89\xe2\x1c\xe1\x2a\x07\x5e\x52\xae\x89\x16\xc4\x77\x77\x71\x72\xfd\x86\x4f\x74\x2a\x56\xe1\x1f\xe5\x15\x6b\xb1\x74\x67\xcf\x3c\x63\xb4\xa2\xd8\x2e\xfe\x34\x5c\xe3\x79\x08\xdd\xd1\x79\xe7\x62\xd7\xf7\xc1\xc5\x48\x34\xb5\x1b\xc6\x96\xa1\x49\xf2\x6a\x7d\xc0\xc5\xcb\xb2\xdf\xe1\x4d\x00\x60\x5c\x9b\xe5\xff\x72\xa3\x92\x45\x9b\xfe\x28\xf0\xcc\xf6\x4c\x55\x4a\xa6\x0f\xd1\x37\x00\x00\xff\xff\x80\x78\xb4\x0e\x87\x00\x00\x00" func storagefeesScriptsGet_storage_fee_minCdcBytes() ([]byte, error) { return bindataRead( @@ -6280,7 +6260,7 @@ func storagefeesScriptsGet_storage_fee_minCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/scripts/get_storage_fee_min.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x65, 0x59, 0xec, 0xe1, 0xe, 0xc5, 0x8d, 0x9f, 0xd9, 0x60, 0xe4, 0x4e, 0xd0, 0x48, 0x59, 0xf0, 0xe1, 0x96, 0xc1, 0xc, 0xa, 0xd6, 0x95, 0x97, 0xa3, 0x50, 0x4c, 0xd1, 0x1d, 0x13, 0x3f, 0x1a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0x6d, 0xce, 0x10, 0xa9, 0x56, 0xe9, 0xc8, 0x0, 0xe6, 0x53, 0xcf, 0xc8, 0xb4, 0x52, 0x31, 0x44, 0xca, 0x1e, 0xe7, 0x1d, 0x2e, 0xe0, 0x25, 0xfd, 0xf5, 0x2c, 0x90, 0x3d, 0xbc, 0x7d, 0xeb}} return a, nil } @@ -6393,9 +6373,6 @@ var _bindata = map[string]func() (*asset, error){ "FlowServiceAccount/set_is_account_creation_restricted.cdc": flowserviceaccountSet_is_account_creation_restrictedCdc, "FlowServiceAccount/set_tx_fee_parameters.cdc": flowserviceaccountSet_tx_fee_parametersCdc, "FlowServiceAccount/set_tx_fee_surge_factor.cdc": flowserviceaccountSet_tx_fee_surge_factorCdc, - "accounts/add_key.cdc": accountsAdd_keyCdc, - "accounts/create_new_account.cdc": accountsCreate_new_accountCdc, - "accounts/revoke_key.cdc": accountsRevoke_keyCdc, "dkg/admin/force_stop_dkg.cdc": dkgAdminForce_stop_dkgCdc, "dkg/admin/publish_participant.cdc": dkgAdminPublish_participantCdc, "dkg/admin/set_safe_threshold.cdc": dkgAdminSet_safe_thresholdCdc, @@ -6545,6 +6522,7 @@ var _bindata = map[string]func() (*asset, error){ "idTableStaking/scripts/get_total_staked.cdc": idtablestakingScriptsGet_total_stakedCdc, "idTableStaking/scripts/get_total_staked_by_type.cdc": idtablestakingScriptsGet_total_staked_by_typeCdc, "idTableStaking/scripts/get_weekly_payout.cdc": idtablestakingScriptsGet_weekly_payoutCdc, + "inspect_field.cdc": inspect_fieldCdc, "lockedTokens/admin/admin_create_shared_accounts.cdc": lockedtokensAdminAdmin_create_shared_accountsCdc, "lockedTokens/admin/admin_deploy_contract.cdc": lockedtokensAdminAdmin_deploy_contractCdc, "lockedTokens/admin/admin_deposit_account_creator.cdc": lockedtokensAdminAdmin_deposit_account_creatorCdc, @@ -6557,6 +6535,7 @@ var _bindata = map[string]func() (*asset, error){ "lockedTokens/admin/custody_create_shared_accounts.cdc": lockedtokensAdminCustody_create_shared_accountsCdc, "lockedTokens/admin/custody_setup_account_creator.cdc": lockedtokensAdminCustody_setup_account_creatorCdc, "lockedTokens/admin/deposit_locked_tokens.cdc": lockedtokensAdminDeposit_locked_tokensCdc, + "lockedTokens/admin/get_unlocking_bad_accounts.cdc": lockedtokensAdminGet_unlocking_bad_accountsCdc, "lockedTokens/admin/unlock_tokens.cdc": lockedtokensAdminUnlock_tokensCdc, "lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc": lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc, "lockedTokens/delegator/delegate_new_tokens.cdc": lockedtokensDelegatorDelegate_new_tokensCdc, @@ -6680,13 +6659,11 @@ const AssetDebug = false // directory embedded in the file by go-bindata. // For example if you run go-bindata on data/... and data contains the // following hierarchy: -// -// data/ -// foo.txt -// img/ -// a.png -// b.png -// +// data/ +// foo.txt +// img/ +// a.png +// b.png // then AssetDir("data") would return []string{"foo.txt", "img"}, // AssetDir("data/img") would return []string{"a.png", "b.png"}, // AssetDir("foo.txt") and AssetDir("notexist") would return an error, and @@ -6741,11 +6718,6 @@ var _bintree = &bintree{nil, map[string]*bintree{ "set_tx_fee_parameters.cdc": {flowserviceaccountSet_tx_fee_parametersCdc, map[string]*bintree{}}, "set_tx_fee_surge_factor.cdc": {flowserviceaccountSet_tx_fee_surge_factorCdc, map[string]*bintree{}}, }}, - "accounts": {nil, map[string]*bintree{ - "add_key.cdc": {accountsAdd_keyCdc, map[string]*bintree{}}, - "create_new_account.cdc": {accountsCreate_new_accountCdc, map[string]*bintree{}}, - "revoke_key.cdc": {accountsRevoke_keyCdc, map[string]*bintree{}}, - }}, "dkg": {nil, map[string]*bintree{ "admin": {nil, map[string]*bintree{ "force_stop_dkg.cdc": {dkgAdminForce_stop_dkgCdc, map[string]*bintree{}}, @@ -6923,6 +6895,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "get_weekly_payout.cdc": {idtablestakingScriptsGet_weekly_payoutCdc, map[string]*bintree{}}, }}, }}, + "inspect_field.cdc": {inspect_fieldCdc, map[string]*bintree{}}, "lockedTokens": {nil, map[string]*bintree{ "admin": {nil, map[string]*bintree{ "admin_create_shared_accounts.cdc": {lockedtokensAdminAdmin_create_shared_accountsCdc, map[string]*bintree{}}, @@ -6937,6 +6910,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "custody_create_shared_accounts.cdc": {lockedtokensAdminCustody_create_shared_accountsCdc, map[string]*bintree{}}, "custody_setup_account_creator.cdc": {lockedtokensAdminCustody_setup_account_creatorCdc, map[string]*bintree{}}, "deposit_locked_tokens.cdc": {lockedtokensAdminDeposit_locked_tokensCdc, map[string]*bintree{}}, + "get_unlocking_bad_accounts.cdc": {lockedtokensAdminGet_unlocking_bad_accountsCdc, map[string]*bintree{}}, "unlock_tokens.cdc": {lockedtokensAdminUnlock_tokensCdc, map[string]*bintree{}}, "unlock_tokens_for_multiple_accounts.cdc": {lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc, map[string]*bintree{}}, }}, @@ -7105,7 +7079,7 @@ func RestoreAsset(dir, name string) error { if err != nil { return err } - err = os.WriteFile(_filePath(dir, name), data, info.Mode()) + err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode()) if err != nil { return err } From 836e7269b5b2b0b8a991e70164a5daba1e92df47 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Fri, 12 Apr 2024 12:12:44 -0400 Subject: [PATCH 105/160] happy path tests --- lib/go/test/flow_epoch_test.go | 318 ++++++++++++++++++++++++--------- 1 file changed, 229 insertions(+), 89 deletions(-) diff --git a/lib/go/test/flow_epoch_test.go b/lib/go/test/flow_epoch_test.go index d7e680481..cdc7d5bb7 100644 --- a/lib/go/test/flow_epoch_test.go +++ b/lib/go/test/flow_epoch_test.go @@ -3,16 +3,19 @@ package test import ( "encoding/hex" "fmt" + "math/rand" "testing" + "time" "github.com/onflow/cadence" jsoncdc "github.com/onflow/cadence/encoding/json" + "github.com/onflow/crypto" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "github.com/onflow/flow-core-contracts/lib/go/templates" "github.com/onflow/flow-go-sdk" - "github.com/onflow/flow-go-sdk/crypto" + sdkcrypto "github.com/onflow/flow-go-sdk/crypto" ) const ( @@ -59,6 +62,13 @@ func TestEpochDeployment(t *testing.T) { numCollectorClusters: numClusters, rewardPercentage: rewardIncreaseFactor}) + verifyEpochTimingConfig(t, b, env, + EpochTimingConfig{ + duration: numEpochViews, + refCounter: startEpochCounter, + refTimestamp: uint64(time.Now().Unix()) + numEpochViews, + }) + // Verify that the current epoch was initialized correctly verifyEpochMetadata(t, b, env, EpochMetadata{ @@ -84,7 +94,7 @@ func TestEpochClusters(t *testing.T) { // Deploys the staking contract, qc, dkg, and epoch lifecycle contract // staking contract is deployed with default values (1.25M rewards, 8% cut) - _, _ = initializeAllEpochContracts(t, b, idTableAccountKey, IDTableSigner, &env, + initializeAllEpochContracts(t, b, idTableAccountKey, IDTableSigner, &env, startEpochCounter, // start epoch counter numEpochViews, // num views per epoch numStakingViews, // num views for staking auction @@ -103,6 +113,7 @@ func TestEpochClusters(t *testing.T) { result := executeScriptAndCheck(t, b, templates.GenerateGetRandomizeScript(env), [][]byte{jsoncdc.MustEncode(idArray)}) assertEqual(t, 4, len(result.(cadence.Array).Values)) + // TODO: Make sure that the ids in the array all match the provided IDs and are in a different order }) // create new user accounts, mint tokens for them, and register them for staking @@ -125,6 +136,7 @@ func TestEpochClusters(t *testing.T) { result := executeScriptAndCheck(t, b, templates.GenerateGetCreateClustersScript(env), [][]byte{jsoncdc.MustEncode(idArray)}) assertEqual(t, 2, len(result.(cadence.Array).Values)) + // TODO: Make sure that the clusters are correct and are in a different order than the original array }) } @@ -155,7 +167,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, true, ) @@ -167,7 +179,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, false, ) @@ -179,7 +191,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, false, ) @@ -189,7 +201,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, true, ) @@ -199,7 +211,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, false, ) @@ -209,7 +221,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, true, ) @@ -219,7 +231,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, false, ) @@ -229,7 +241,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, true, ) @@ -239,7 +251,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, false, ) @@ -249,7 +261,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, false, ) @@ -259,7 +271,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, true, ) @@ -269,7 +281,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, false, ) @@ -286,6 +298,43 @@ func TestEpochPhaseMetadataChange(t *testing.T) { rewardPercentage: "0.04"}) }) + t.Run("should be able to update timing config when staking enabled (Staking phase)", func(t *testing.T) { + timingConfig := EpochTimingConfig{ + duration: rand.Uint64() % 100_000, + refCounter: 0, + refTimestamp: uint64(time.Now().Unix()), + } + + t.Run("invalid EpochTimingConfig", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateUpdateEpochTimingConfigScript(env), idTableAddress) + _ = tx.AddArgument(CadenceUInt64(timingConfig.duration)) + // Use a reference counter in the future, which validates the precondition + _ = tx.AddArgument(CadenceUInt64(timingConfig.refCounter + 100)) + _ = tx.AddArgument(CadenceUInt64(timingConfig.refTimestamp)) + signAndSubmit( + t, b, tx, + []flow.Address{idTableAddress}, + []sdkcrypto.Signer{IDTableSigner}, + true, + ) + }) + + t.Run("valid EpochTimingConfig", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateUpdateEpochTimingConfigScript(env), idTableAddress) + _ = tx.AddArgument(CadenceUInt64(timingConfig.duration)) + _ = tx.AddArgument(CadenceUInt64(timingConfig.refCounter)) + _ = tx.AddArgument(CadenceUInt64(timingConfig.refTimestamp)) + signAndSubmit( + t, b, tx, + []flow.Address{idTableAddress}, + []sdkcrypto.Signer{IDTableSigner}, + false, + ) + // timing config should be updated + verifyEpochTimingConfig(t, b, env, timingConfig) + }) + }) + // create new user accounts, mint tokens for them, and register them for staking addresses, _, signers := registerAndMintManyAccounts(t, b, env, accountKeys, numEpochAccounts) ids, _, _ := generateNodeIDs(numEpochAccounts) @@ -307,7 +356,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, false, ) @@ -322,7 +371,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, true, ) @@ -332,7 +381,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, true, ) @@ -342,7 +391,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, true, ) @@ -352,7 +401,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, true, ) @@ -362,7 +411,7 @@ func TestEpochPhaseMetadataChange(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, true, ) @@ -377,7 +426,92 @@ func TestEpochPhaseMetadataChange(t *testing.T) { numViewsInDKGPhase: 2, numCollectorClusters: 2, rewardPercentage: "0.04"}) + }) + + t.Run("should be able to update timing config when staking disabled (Setup/Commit phases)", func(t *testing.T) { + timingConfig := EpochTimingConfig{ + duration: rand.Uint64() % 100_000, + refCounter: 0, + refTimestamp: uint64(time.Now().Unix()), + } + + t.Run("invalid EpochTimingConfig", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateUpdateEpochTimingConfigScript(env), idTableAddress) + _ = tx.AddArgument(CadenceUInt64(timingConfig.duration)) + // Use a reference counter in the future, which validates the precondition + _ = tx.AddArgument(CadenceUInt64(timingConfig.refCounter + 100)) + _ = tx.AddArgument(CadenceUInt64(timingConfig.refTimestamp)) + signAndSubmit( + t, b, tx, + []flow.Address{idTableAddress}, + []sdkcrypto.Signer{IDTableSigner}, + true, + ) + }) + + t.Run("valid EpochTimingConfig", func(t *testing.T) { + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateUpdateEpochTimingConfigScript(env), idTableAddress) + _ = tx.AddArgument(CadenceUInt64(timingConfig.duration)) + _ = tx.AddArgument(CadenceUInt64(timingConfig.refCounter)) + _ = tx.AddArgument(CadenceUInt64(timingConfig.refTimestamp)) + signAndSubmit( + t, b, tx, + []flow.Address{idTableAddress}, + []sdkcrypto.Signer{IDTableSigner}, + false, + ) + // timing config should be updated + verifyEpochTimingConfig(t, b, env, timingConfig) + }) + }) +} + +func TestEpochTiming(t *testing.T) { + b, _, accountKeys, env := newTestSetup(t) + + // Create new keys for the epoch account + idTableAccountKey, IDTableSigner := accountKeys.NewWithSigner() + + // Deploys the staking contract, qc, dkg, and epoch lifecycle contract + // staking contract is deployed with default values (1.25M rewards, 8% cut) + initializeAllEpochContracts(t, b, idTableAccountKey, IDTableSigner, &env, + startEpochCounter, // start epoch counter + numEpochViews, // num views per epoch + numStakingViews, // num views for staking auction + numDKGViews, // num views for DKG phase + numClusters, // num collector clusters + randomSource, // random source + rewardIncreaseFactor) + + epochTimingConfigResult := executeScriptAndCheck(t, b, templates.GenerateGetEpochTimingConfigScript(env), nil) + + t.Run("should be able to observe end times for current epoch", func(t *testing.T) { + gotEndTimeCdc := executeScriptAndCheck(t, b, templates.GenerateGetTargetEndTimeForEpochScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt64(startEpochCounter))}) + gotEndTime := gotEndTimeCdc.ToGoValue().(uint64) + expectedEndTime := expectedTargetEndTime(epochTimingConfigResult, startEpochCounter) + assert.Equal(t, expectedEndTime, gotEndTime) + + // sanity check: should be within 10 minutes of the current time + gotEndTimeParsed := time.Unix(int64(gotEndTime), 0) + assert.InDelta(t, time.Now().Unix(), gotEndTimeParsed.Unix(), float64(10*time.Minute)) + gotEndTimeParsed.Sub(time.Now()) + }) + t.Run("should be able to observe end times for future epochs", func(t *testing.T) { + var lastEndTime uint64 + for _, epoch := range []uint64{1, 2, 3, 10, 100, 1000, 10_000} { + gotEndTimeCdc := executeScriptAndCheck(t, b, templates.GenerateGetTargetEndTimeForEpochScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt64(epoch))}) + gotEndTime := gotEndTimeCdc.ToGoValue().(uint64) + expectedEndTime := expectedTargetEndTime(epochTimingConfigResult, epoch) + assert.Equal(t, expectedEndTime, gotEndTime) + + // sanity check: target end time should be strictly increasing + if lastEndTime > 0 { + assert.Greater(t, gotEndTime, lastEndTime) + } + + lastEndTime = gotEndTime + } }) } @@ -429,12 +563,14 @@ func TestEpochAdvance(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, false, ) t.Run("Proposed metadata, QC, and DKG should have been created properly for epoch setup", func(t *testing.T) { + epochTimingConfigResult := executeScriptAndCheck(t, b, templates.GenerateGetEpochTimingConfigScript(env), nil) + // Advance to epoch Setup and make sure that the epoch cannot be ended advanceView(t, b, env, idTableAddress, IDTableSigner, 1, "EPOCHSETUP", false) @@ -467,6 +603,13 @@ func TestEpochAdvance(t *testing.T) { clusterQCs: nil, dkgKeys: nil}) + verifyEpochTimingConfig(t, b, env, + EpochTimingConfig{ + duration: numEpochViews, + refCounter: startEpochCounter, + refTimestamp: uint64(time.Now().Unix()) + numEpochViews, + }) + verifyEpochSetup(t, b, adapter, idTableAddress, EpochSetup{ counter: startEpochCounter + 1, @@ -477,7 +620,10 @@ func TestEpochAdvance(t *testing.T) { randomSource: "", dkgPhase1FinalView: startView + numEpochViews + numStakingViews + numDKGViews - 1, dkgPhase2FinalView: startView + numEpochViews + numStakingViews + 2*numDKGViews - 1, - dkgPhase3FinalView: startView + numEpochViews + numStakingViews + 3*numDKGViews - 1}) + dkgPhase3FinalView: startView + numEpochViews + numStakingViews + 3*numDKGViews - 1, + targetDuration: numEpochViews, + targetEndTime: expectedTargetEndTime(epochTimingConfigResult, startEpochCounter+1), + }) // QC Contract Checks result := executeScriptAndCheck(t, b, templates.GenerateGetClusterWeightScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt16(uint16(0)))}) @@ -498,7 +644,7 @@ func TestEpochAdvance(t *testing.T) { assert.Equal(t, cadence.NewBool(true), result) result = executeScriptAndCheck(t, b, templates.GenerateGetConsensusNodesScript(env), nil) - assert.Equal(t, cadence.NewArray(dkgIDs).WithType(cadence.NewVariableSizedArrayType(cadence.StringType)), result) + assert.Equal(t, cadence.NewArray(dkgIDs).WithType(cadence.NewVariableSizedArrayType(cadence.NewStringType())), result) result = executeScriptAndCheck(t, b, templates.GenerateGetDKGFinalSubmissionsScript(env), nil) assert.Equal(t, 0, len(result.(cadence.Array).Values)) @@ -569,7 +715,7 @@ func TestEpochQCDKGNodeRegistration(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, false, ) @@ -584,7 +730,7 @@ func TestEpochQCDKGNodeRegistration(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[1]}, - []crypto.Signer{signers[1]}, + []sdkcrypto.Signer{signers[1]}, true, ) @@ -594,7 +740,7 @@ func TestEpochQCDKGNodeRegistration(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[0]}, - []crypto.Signer{signers[0]}, + []sdkcrypto.Signer{signers[0]}, true, ) }) @@ -607,7 +753,7 @@ func TestEpochQCDKGNodeRegistration(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[0]}, - []crypto.Signer{signers[0]}, + []sdkcrypto.Signer{signers[0]}, false, ) @@ -617,7 +763,7 @@ func TestEpochQCDKGNodeRegistration(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[1]}, - []crypto.Signer{signers[1]}, + []sdkcrypto.Signer{signers[1]}, false, ) }) @@ -693,7 +839,7 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, false, ) @@ -705,7 +851,7 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[0]}, - []crypto.Signer{signers[0]}, + []sdkcrypto.Signer{signers[0]}, false, ) @@ -713,7 +859,7 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[5]}, - []crypto.Signer{signers[5]}, + []sdkcrypto.Signer{signers[5]}, false, ) @@ -722,7 +868,7 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[1]}, - []crypto.Signer{signers[1]}, + []sdkcrypto.Signer{signers[1]}, false, ) @@ -743,7 +889,7 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[1]}, - []crypto.Signer{signers[1]}, + []sdkcrypto.Signer{signers[1]}, false, ) @@ -758,7 +904,7 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[1]}, - []crypto.Signer{signers[1]}, + []sdkcrypto.Signer{signers[1]}, false, ) @@ -786,7 +932,7 @@ func TestEpochQCDKG(t *testing.T) { clusterQCs[0] = make([]string, 2) clusterQCs[1] = make([]string, 2) - collectorVoteHasher := signature.NewBLSHasher(collectorVoteTag) + collectorVoteHasher := crypto.NewExpandMsgXOFKMAC128(collectorVoteTag) t.Run("Can perform QC actions during Epoch Setup and advance to EpochCommit", func(t *testing.T) { @@ -805,7 +951,7 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[0]}, - []crypto.Signer{signers[0]}, + []sdkcrypto.Signer{signers[0]}, false, ) @@ -824,7 +970,7 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[5]}, - []crypto.Signer{signers[5]}, + []sdkcrypto.Signer{signers[5]}, false, ) @@ -872,7 +1018,7 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, false, ) @@ -893,7 +1039,7 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, false, ) @@ -902,19 +1048,30 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, false, ) // Advance to new epoch advanceView(t, b, env, idTableAddress, IDTableSigner, 1, "ENDEPOCH", false) + verifyEpochStart(t, b, adapter, idTableAddress, + EpochStart{ + counter: startEpochCounter + 1, + firstView: startView + numEpochViews, + stakingEndView: startView + numEpochViews + numStakingViews - 1, + finalView: startView + 2*numEpochViews - 1, + totalStaked: "6750000.0", + totalSupply: "7000000000.0", + rewards: "6571204.6775", + }) + tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateEpochPayRewardsScript(env), idTableAddress) signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, false, ) @@ -985,7 +1142,7 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, false, ) @@ -1000,7 +1157,7 @@ func TestEpochQCDKG(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, false, ) @@ -1069,7 +1226,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, false, ) @@ -1081,7 +1238,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[0]}, - []crypto.Signer{signers[0]}, + []sdkcrypto.Signer{signers[0]}, false, ) @@ -1089,7 +1246,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[5]}, - []crypto.Signer{signers[5]}, + []sdkcrypto.Signer{signers[5]}, false, ) @@ -1098,7 +1255,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[1]}, - []crypto.Signer{signers[1]}, + []sdkcrypto.Signer{signers[1]}, false, ) @@ -1106,7 +1263,7 @@ func TestEpochReset(t *testing.T) { clusterQCs[0] = make([]string, 1) clusterQCs[1] = make([]string, 1) - collectorVoteHasher := signature.NewBLSHasher(collectorVoteTag) + collectorVoteHasher := crypto.NewExpandMsgXOFKMAC128(collectorVoteTag) t.Run("Can perform QC actions during Epoch Setup but cannot advance to EpochCommit if DKG isn't complete", func(t *testing.T) { @@ -1124,7 +1281,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[0]}, - []crypto.Signer{signers[0]}, + []sdkcrypto.Signer{signers[0]}, false, ) @@ -1142,7 +1299,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{addresses[5]}, - []crypto.Signer{signers[5]}, + []sdkcrypto.Signer{signers[5]}, false, ) @@ -1184,7 +1341,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, true, ) }) @@ -1205,7 +1362,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, true, ) }) @@ -1226,7 +1383,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, true, ) }) @@ -1247,7 +1404,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, false, ) @@ -1284,7 +1441,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, false, ) @@ -1302,7 +1459,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, false, ) @@ -1331,7 +1488,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, false, ) @@ -1352,7 +1509,7 @@ func TestEpochReset(t *testing.T) { signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner}, false, ) @@ -1363,7 +1520,8 @@ func TestEpochReset(t *testing.T) { } func TestEpochRecover(t *testing.T) { - b, adapter, accountKeys, env := newTestSetup(t) + b, _, accountKeys, env := newTestSetup(t) + // Create new keys for the epoch account idTableAccountKey, IDTableSigner := accountKeys.NewWithSigner() @@ -1433,8 +1591,13 @@ func TestEpochRecover(t *testing.T) { false, ) + clusterQCs := make([][]string, numClusters) + clusterQCs[0] = make([]string, 1) + clusterQCs[1] = make([]string, 1) + + // collectorVoteHasher := crypto.NewExpandMsgXOFKMAC128(collectorVoteTag) + t.Run("Can recover the epoch and have everything return to normal", func(t *testing.T) { - epochTimingConfigResult := executeScriptAndCheck(t, b, templates.GenerateGetEpochTimingConfigScript(env), nil) var startView uint64 = 100 var stakingEndView uint64 = 120 @@ -1445,12 +1608,8 @@ func TestEpochRecover(t *testing.T) { tx.AddArgument(cadence.NewUInt64(startView)) tx.AddArgument(cadence.NewUInt64(stakingEndView)) tx.AddArgument(cadence.NewUInt64(endView)) - collectorClusters := make([]cadence.Value, 3) - collectorClusters[0] = cadence.NewArray([]cadence.Value{CadenceString("node_1"), CadenceString("node_2"), CadenceString("node_3")}) - collectorClusters[1] = cadence.NewArray([]cadence.Value{CadenceString("node_4"), CadenceString("node_5"), CadenceString("node_6")}) - collectorClusters[2] = cadence.NewArray([]cadence.Value{CadenceString("node_7"), CadenceString("node_8"), CadenceString("node_9")}) - tx.AddArgument(cadence.NewArray(collectorClusters)) // collectorClusters - tx.AddArgument(cadence.NewArray(make([]cadence.Value, 0))) // clusterQCVoteData + tx.AddArgument(cadence.NewArray([]cadence.Value{})) // collectorClusters + tx.AddArgument(cadence.NewArray([]cadence.Value{})) // clusterQCVoteData dkgPubKeys := []string{"pubkey_1"} dkgPubKeysCdc := make([]cadence.Value, len(dkgPubKeys)) @@ -1472,8 +1631,6 @@ func TestEpochRecover(t *testing.T) { false, ) - advanceView(t, b, env, idTableAddress, IDTableSigner, 1, "BLOCK", false) - verifyEpochMetadata(t, b, env, EpochMetadata{ counter: startEpochCounter + 1, @@ -1488,27 +1645,10 @@ func TestEpochRecover(t *testing.T) { clusterQCs: nil, dkgKeys: dkgPubKeys}) - result := executeScriptAndCheck(t, b, templates.GenerateGetDKGEnabledScript(env), nil) - assert.Equal(t, cadence.NewBool(false), result) - - result = executeScriptAndCheck(t, b, templates.GenerateGetQCEnabledScript(env), nil) - assert.Equal(t, cadence.NewBool(false), result) + // result := executeScriptAndCheck(t, b, templates.GenerateGetDKGEnabledScript(env), nil) + // assert.Equal(t, cadence.NewBool(false), result) - expectedRecoverEvent := EpochRecover{ - counter: startEpochCounter + 1, - nodeInfoLength: len(nodeIDs), - firstView: startView, - finalView: endView, - collectorClusters: collectorClusters, - randomSource: "stillSoRandom", - dkgPhase1FinalView: startView + numStakingViews + numDKGViews - 1, - dkgPhase2FinalView: startView + numStakingViews + (2 * numDKGViews) - 1, - dkgPhase3FinalView: startView + numStakingViews + (3 * numDKGViews) - 1, - targetDuration: numEpochViews, - targetEndTime: expectedTargetEndTime(epochTimingConfigResult, startEpochCounter+1), - clusterQCVoteDataLength: 0, - dkgPubKeys: dkgPubKeys, - } - verifyEpochRecover(t, adapter, idTableAddress, expectedRecoverEvent) + // result = executeScriptAndCheck(t, b, templates.GenerateGetQCEnabledScript(env), nil) + // assert.Equal(t, cadence.NewBool(false), result) }) } From cb277e54489abb6cf4cb8484dfa1113d55decb5b Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Fri, 26 Apr 2024 08:53:27 -0400 Subject: [PATCH 106/160] remove unused stakingEndView param --- contracts/epochs/FlowEpoch.cdc | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 2d6aa6cec..3992d7062 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -215,9 +215,6 @@ access(all) contract FlowEpoch { /// The last view (inclusive) of the RecoveryEpoch. access(all) let finalView: UInt64 - /// The last view (inclusive) of the staking phase. - access(all) let stakingEndView: UInt64 - /// The cluster assignment for the RecoveryEpoch. Each element in the list /// represents one cluster and contains all the node IDs assigned to that /// cluster, with their weights and votes @@ -230,7 +227,7 @@ access(all) contract FlowEpoch { /// The deadlines of each phase in the DKG protocol to be completed in the upcoming /// EpochSetup phase. Deadlines are specified in terms of a consensus view number. /// When a DKG participant observes a finalized and sealed block with view greater - /// than the given deadline, it can safely transition to the next phase. + /// than the given deadline, it can safely transition to the next phase. access(all) let dkgPhase1FinalView: UInt64 access(all) let dkgPhase2FinalView: UInt64 access(all) let dkgPhase3FinalView: UInt64 @@ -466,7 +463,6 @@ access(all) contract FlowEpoch { } /// Saves a modified EpochMetadata struct to the metadata in account storage - /// access(contract) fun saveEpochMetadata(_ newMetadata: EpochMetadata) { pre { self.currentEpochCounter == 0 || @@ -634,7 +630,6 @@ access(all) contract FlowEpoch { nodeIDs: nodeIDs, firstView: startView, finalView: endView, - stakingEndView: stakingEndView, collectorClusters: collectorClusters, randomSource: randomSource, dkgPhase1FinalView: startView + FlowEpoch.configurableMetadata.numViewsInStakingAuction + FlowEpoch.configurableMetadata.numViewsInDKGPhase - 1 as UInt64, From 500fb527264d2a47388239a4711479fb620c1354 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Fri, 26 Apr 2024 08:55:04 -0400 Subject: [PATCH 107/160] cant use timing config in epoch recover - target duration and end time must be provided in governance transaction --- contracts/epochs/FlowEpoch.cdc | 17 +- lib/go/templates/internal/assets/assets.go | 1870 ++++++++++---------- lib/go/test/flow_epoch_test.go | 63 +- transactions/epoch/admin/recover_epoch.cdc | 18 +- 4 files changed, 1007 insertions(+), 961 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 3992d7062..6b2d01e46 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -227,7 +227,7 @@ access(all) contract FlowEpoch { /// The deadlines of each phase in the DKG protocol to be completed in the upcoming /// EpochSetup phase. Deadlines are specified in terms of a consensus view number. /// When a DKG participant observes a finalized and sealed block with view greater - /// than the given deadline, it can safely transition to the next phase. + /// than the given deadline, it can safely transition to the next phase. access(all) let dkgPhase1FinalView: UInt64 access(all) let dkgPhase2FinalView: UInt64 access(all) let dkgPhase3FinalView: UInt64 @@ -249,7 +249,6 @@ access(all) contract FlowEpoch { nodeIDs: [String], firstView: UInt64, finalView: UInt64, - stakingEndView: UInt64, collectorClusters: [[String]], randomSource: String, dkgPhase1FinalView: UInt64, @@ -264,7 +263,6 @@ access(all) contract FlowEpoch { self.nodeIDs = nodeIDs self.firstView = firstView self.finalView = finalView - self.stakingEndView = stakingEndView self.collectorClusters = collectorClusters self.randomSource = randomSource self.dkgPhase1FinalView = dkgPhase1FinalView @@ -364,7 +362,7 @@ access(all) contract FlowEpoch { self.dkgKeys = keys } } - + /// Metadata that is managed and can be changed by the Admin/// access(all) struct Config { /// The number of views in an entire epoch @@ -571,6 +569,8 @@ access(all) contract FlowEpoch { startView: UInt64, stakingEndView: UInt64, endView: UInt64, + targetDuration: UInt64, + targetEndTime: UInt64, collectorClusters: [[String]], clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData], dkgPubKeys: [String], @@ -599,11 +599,6 @@ access(all) contract FlowEpoch { FlowEpoch.borrowDKGAdmin().forceEndDKG() } - // Compute the target end time for the next epoch - let timingConfig = FlowEpoch.getEpochTimingConfig() - let proposedTargetDuration = timingConfig.duration - let proposedTargetEndTime = timingConfig.getTargetEndTimeForEpoch(FlowEpoch.proposedEpochCounter()) - // Create new Epoch metadata for the next epoch // with the new values let newEpochMetadata = EpochMetadata( @@ -635,8 +630,8 @@ access(all) contract FlowEpoch { dkgPhase1FinalView: startView + FlowEpoch.configurableMetadata.numViewsInStakingAuction + FlowEpoch.configurableMetadata.numViewsInDKGPhase - 1 as UInt64, dkgPhase2FinalView: startView + FlowEpoch.configurableMetadata.numViewsInStakingAuction + (2 as UInt64 * FlowEpoch.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, dkgPhase3FinalView: startView + FlowEpoch.configurableMetadata.numViewsInStakingAuction + (3 as UInt64 * FlowEpoch.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, - targetDuration: proposedTargetDuration, - targetEndTime: proposedTargetEndTime, + targetDuration: targetDuration, + targetEndTime: targetEndTime, clusterQCVoteData: clusterQCVoteData, dkgPubKeys: dkgPubKeys, ) diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index f08a39508..e7f3911df 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -1,300 +1,301 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: -// FlowServiceAccount/add_account_creator.cdc (565B) -// FlowServiceAccount/deposit_fees.cdc (838B) -// FlowServiceAccount/remove_account_creator.cdc (567B) -// FlowServiceAccount/scripts/get_account_creators.cdc (133B) -// FlowServiceAccount/scripts/get_account_fee.cdc (128B) -// FlowServiceAccount/scripts/get_execution_effort_weights.cdc (147B) -// FlowServiceAccount/scripts/get_execution_memory_limit.cdc (135B) -// FlowServiceAccount/scripts/get_execution_memory_weights.cdc (147B) -// FlowServiceAccount/scripts/get_fees_balance.cdc (102B) -// FlowServiceAccount/scripts/get_is_account_creation_restricted.cdc (137B) -// FlowServiceAccount/scripts/get_is_account_creator.cdc (149B) -// FlowServiceAccount/scripts/get_tx_fee_parameters.cdc (121B) -// FlowServiceAccount/set_execution_effort_weights.cdc (1.636kB) -// FlowServiceAccount/set_execution_memory_limit.cdc (260B) -// FlowServiceAccount/set_execution_memory_weights.cdc (288B) -// FlowServiceAccount/set_is_account_creation_restricted.cdc (586B) -// FlowServiceAccount/set_tx_fee_parameters.cdc (606B) -// FlowServiceAccount/set_tx_fee_surge_factor.cdc (465B) -// dkg/admin/force_stop_dkg.cdc (334B) -// dkg/admin/publish_participant.cdc (224B) -// dkg/admin/set_safe_threshold.cdc (425B) -// dkg/admin/start_dkg.cdc (366B) -// dkg/admin/stop_dkg.cdc (329B) -// dkg/create_participant.cdc (427B) -// dkg/scripts/get_consensus_nodes.cdc (103B) -// dkg/scripts/get_dkg_canonical_final_submission.cdc (98B) -// dkg/scripts/get_dkg_completed.cdc (99B) -// dkg/scripts/get_dkg_enabled.cdc (88B) -// dkg/scripts/get_final_submissions.cdc (106B) -// dkg/scripts/get_latest_whiteboard_messages.cdc (330B) -// dkg/scripts/get_node_final_submission.cdc (128B) -// dkg/scripts/get_node_has_submitted.cdc (116B) -// dkg/scripts/get_node_is_claimed.cdc (218B) -// dkg/scripts/get_node_is_registered.cdc (123B) -// dkg/scripts/get_submissions_count.cdc (114B) -// dkg/scripts/get_thresholds.cdc (408B) -// dkg/scripts/get_whiteboard_messages.cdc (115B) -// dkg/send_final_submission.cdc (412B) -// dkg/send_whiteboard_message.cdc (395B) -// epoch/admin/advance_view.cdc (649B) -// epoch/admin/calculate_rewards.cdc (361B) -// epoch/admin/deploy_epoch.cdc (1.173kB) -// epoch/admin/deploy_qc_dkg.cdc (295B) -// epoch/admin/pay_rewards.cdc (479B) -// epoch/admin/recover_epoch.cdc (1.53kB) -// epoch/admin/reset_epoch.cdc (1.648kB) -// epoch/admin/set_automatic_rewards.cdc (356B) -// epoch/admin/set_bonus_tokens.cdc (597B) -// epoch/admin/update_clusters.cdc (338B) -// epoch/admin/update_dkg_phase_views.cdc (328B) -// epoch/admin/update_epoch_config.cdc (1.755kB) -// epoch/admin/update_epoch_timing_config.cdc (483B) -// epoch/admin/update_epoch_views.cdc (329B) -// epoch/admin/update_reward.cdc (342B) -// epoch/admin/update_staking_views.cdc (331B) -// epoch/node/register_dkg_participant.cdc (531B) -// epoch/node/register_node.cdc (2.901kB) -// epoch/node/register_qc_voter.cdc (522B) -// epoch/scripts/get_bonus_tokens.cdc (102B) -// epoch/scripts/get_config_metadata.cdc (115B) -// epoch/scripts/get_create_clusters.cdc (197B) -// epoch/scripts/get_current_view.cdc (138B) -// epoch/scripts/get_epoch_counter.cdc (105B) -// epoch/scripts/get_epoch_metadata.cdc (154B) -// epoch/scripts/get_epoch_phase.cdc (111B) -// epoch/scripts/get_epoch_timing_config.cdc (129B) -// epoch/scripts/get_proposed_counter.cdc (108B) -// epoch/scripts/get_randomize.cdc (121B) -// epoch/scripts/get_target_end_time_for_epoch.cdc (258B) -// flowToken/burn_tokens.cdc (1.085kB) -// flowToken/create_forwarder.cdc (1.815kB) -// flowToken/mint_tokens.cdc (1.026kB) -// flowToken/scripts/get_balance.cdc (453B) -// flowToken/scripts/get_supply.cdc (207B) -// flowToken/setup_account.cdc (1.147kB) -// flowToken/transfer_tokens.cdc (1.301kB) -// idTableStaking/admin/add_approved_and_limits.cdc (1.606kB) -// idTableStaking/admin/add_approved_nodes.cdc (1.034kB) -// idTableStaking/admin/capability_end_epoch.cdc (1.355kB) -// idTableStaking/admin/change_candidate_limits.cdc (706B) -// idTableStaking/admin/change_cut.cdc (644B) -// idTableStaking/admin/change_del_minimums.cdc (669B) -// idTableStaking/admin/change_minimums.cdc (797B) -// idTableStaking/admin/change_payout.cdc (604B) -// idTableStaking/admin/end_epoch.cdc (892B) -// idTableStaking/admin/end_epoch_change_payout.cdc (958B) -// idTableStaking/admin/end_staking.cdc (677B) -// idTableStaking/admin/move_tokens.cdc (577B) -// idTableStaking/admin/pay_rewards.cdc (665B) -// idTableStaking/admin/remove_approved_nodes.cdc (990B) -// idTableStaking/admin/remove_invalid_nodes.cdc (676B) -// idTableStaking/admin/remove_node.cdc (608B) -// idTableStaking/admin/scale_rewards_test.cdc (716B) -// idTableStaking/admin/set_approved_nodes.cdc (607B) -// idTableStaking/admin/set_claimed.cdc (612B) -// idTableStaking/admin/set_node_weight.cdc (629B) -// idTableStaking/admin/set_non_operational.cdc (764B) -// idTableStaking/admin/set_open_access_node_slots.cdc (916B) -// idTableStaking/admin/set_slot_limits.cdc (1.551kB) -// idTableStaking/admin/start_staking.cdc (576B) -// idTableStaking/admin/transfer_admin.cdc (730B) -// idTableStaking/admin/transfer_fees_admin.cdc (409B) -// idTableStaking/admin/transfer_minter_deploy.cdc (1.305kB) -// idTableStaking/admin/upgrade_set_claimed.cdc (668B) -// idTableStaking/admin/upgrade_staking.cdc (156B) -// idTableStaking/delegation/del_request_unstaking.cdc (569B) -// idTableStaking/delegation/del_stake_new_tokens.cdc (842B) -// idTableStaking/delegation/del_stake_rewarded.cdc (575B) -// idTableStaking/delegation/del_stake_unstaked.cdc (575B) -// idTableStaking/delegation/del_withdraw_reward_tokens.cdc (850B) -// idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc (850B) -// idTableStaking/delegation/delegator_add_capability.cdc (704B) -// idTableStaking/delegation/get_delegator_committed.cdc (315B) -// idTableStaking/delegation/get_delegator_info.cdc (293B) -// idTableStaking/delegation/get_delegator_info_from_address.cdc (511B) -// idTableStaking/delegation/get_delegator_request.cdc (324B) -// idTableStaking/delegation/get_delegator_rewarded.cdc (313B) -// idTableStaking/delegation/get_delegator_staked.cdc (309B) -// idTableStaking/delegation/get_delegator_unstaked.cdc (313B) -// idTableStaking/delegation/get_delegator_unstaking.cdc (315B) -// idTableStaking/delegation/get_delegator_unstaking_request.cdc (324B) -// idTableStaking/delegation/register_delegator.cdc (794B) -// idTableStaking/delegation/register_many_delegators.cdc (637B) -// idTableStaking/node/node_add_capability.cdc (711B) -// idTableStaking/node/register_many_nodes.cdc (1.082kB) -// idTableStaking/node/register_node.cdc (1.351kB) -// idTableStaking/node/request_unstake.cdc (551B) -// idTableStaking/node/stake_new_tokens.cdc (815B) -// idTableStaking/node/stake_rewarded_tokens.cdc (554B) -// idTableStaking/node/stake_unstaked_tokens.cdc (533B) -// idTableStaking/node/unstake_all.cdc (515B) -// idTableStaking/node/update_networking_address.cdc (556B) -// idTableStaking/node/withdraw_reward_tokens.cdc (828B) -// idTableStaking/node/withdraw_unstaked_tokens.cdc (828B) -// idTableStaking/scripts/get_approved_but_not_staked_nodes.cdc (664B) -// idTableStaking/scripts/get_approved_nodes.cdc (283B) -// idTableStaking/scripts/get_candidate_limits.cdc (265B) -// idTableStaking/scripts/get_candidate_nodes.cdc (228B) -// idTableStaking/scripts/get_current_table.cdc (190B) -// idTableStaking/scripts/get_cut_percentage.cdc (199B) -// idTableStaking/scripts/get_del_stake_requirements.cdc (218B) -// idTableStaking/scripts/get_delegators_below_min.cdc (1.88kB) -// idTableStaking/scripts/get_node_committed_tokens.cdc (257B) -// idTableStaking/scripts/get_node_info.cdc (234B) -// idTableStaking/scripts/get_node_info_from_address.cdc (477B) -// idTableStaking/scripts/get_node_initial_weight.cdc (245B) -// idTableStaking/scripts/get_node_networking_addr.cdc (253B) -// idTableStaking/scripts/get_node_networking_key.cdc (245B) -// idTableStaking/scripts/get_node_rewarded_tokens.cdc (258B) -// idTableStaking/scripts/get_node_role.cdc (225B) -// idTableStaking/scripts/get_node_staked_tokens.cdc (254B) -// idTableStaking/scripts/get_node_staking_key.cdc (239B) -// idTableStaking/scripts/get_node_total_commitment.cdc (273B) -// idTableStaking/scripts/get_node_total_commitment_without_delegators.cdc (276B) -// idTableStaking/scripts/get_node_type_ratio.cdc (235B) -// idTableStaking/scripts/get_node_unstaked_tokens.cdc (258B) -// idTableStaking/scripts/get_node_unstaking_request.cdc (269B) -// idTableStaking/scripts/get_node_unstaking_tokens.cdc (260B) -// idTableStaking/scripts/get_non_operational.cdc (205B) -// idTableStaking/scripts/get_proposed_table.cdc (192B) -// idTableStaking/scripts/get_role_counts.cdc (202B) -// idTableStaking/scripts/get_slot_limits.cdc (303B) -// idTableStaking/scripts/get_stake_requirements.cdc (241B) -// idTableStaking/scripts/get_table.cdc (184B) -// idTableStaking/scripts/get_total_staked.cdc (457B) -// idTableStaking/scripts/get_total_staked_by_type.cdc (250B) -// idTableStaking/scripts/get_weekly_payout.cdc (196B) -// inspect_field.cdc (122B) -// lockedTokens/admin/admin_create_shared_accounts.cdc (3.883kB) -// lockedTokens/admin/admin_deploy_contract.cdc (443B) -// lockedTokens/admin/admin_deposit_account_creator.cdc (856B) -// lockedTokens/admin/admin_remove_delegator.cdc (448B) -// lockedTokens/admin/check_main_registration.cdc (994B) -// lockedTokens/admin/check_shared_registration.cdc (630B) -// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.336kB) -// lockedTokens/admin/custody_create_only_lease_account.cdc (3.16kB) -// lockedTokens/admin/custody_create_only_shared_account.cdc (3.553kB) -// lockedTokens/admin/custody_create_shared_accounts.cdc (3.76kB) -// lockedTokens/admin/custody_setup_account_creator.cdc (643B) -// lockedTokens/admin/deposit_locked_tokens.cdc (1.663kB) -// lockedTokens/admin/get_unlocking_bad_accounts.cdc (472B) -// lockedTokens/admin/unlock_tokens.cdc (576B) -// lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc (2.78kB) -// lockedTokens/delegator/delegate_new_tokens.cdc (1.182kB) -// lockedTokens/delegator/delegate_rewarded_tokens.cdc (528B) -// lockedTokens/delegator/delegate_unstaked_tokens.cdc (520B) -// lockedTokens/delegator/get_delegator_id.cdc (434B) -// lockedTokens/delegator/get_delegator_info.cdc (1.464kB) -// lockedTokens/delegator/get_delegator_node_id.cdc (438B) -// lockedTokens/delegator/register_delegator.cdc (1.508kB) -// lockedTokens/delegator/request_unstaking.cdc (522B) -// lockedTokens/delegator/withdraw_rewarded_tokens.cdc (805B) -// lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc (528B) -// lockedTokens/delegator/withdraw_unstaked_tokens.cdc (528B) -// lockedTokens/staker/get_node_id.cdc (429B) -// lockedTokens/staker/get_staker_info.cdc (1.171kB) -// lockedTokens/staker/register_node.cdc (1.425kB) -// lockedTokens/staker/request_unstaking.cdc (522B) -// lockedTokens/staker/stake_new_tokens.cdc (1.234kB) -// lockedTokens/staker/stake_rewarded_tokens.cdc (525B) -// lockedTokens/staker/stake_unstaked_tokens.cdc (525B) -// lockedTokens/staker/unstake_all.cdc (488B) -// lockedTokens/staker/update_networking_address.cdc (482B) -// lockedTokens/staker/withdraw_rewarded_tokens.cdc (795B) -// lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc (528B) -// lockedTokens/staker/withdraw_unstaked_tokens.cdc (528B) -// lockedTokens/user/deposit_tokens.cdc (713B) -// lockedTokens/user/get_locked_account_address.cdc (443B) -// lockedTokens/user/get_locked_account_balance.cdc (442B) -// lockedTokens/user/get_multiple_unlock_limits.cdc (560B) -// lockedTokens/user/get_total_balance.cdc (2.858kB) -// lockedTokens/user/get_unlock_limit.cdc (433B) -// lockedTokens/user/withdraw_tokens.cdc (713B) -// nodeVersionBeacon/admin/change_version_freeze_period.cdc (787B) -// nodeVersionBeacon/admin/delete_version_boundary.cdc (812B) -// nodeVersionBeacon/admin/heartbeat.cdc (612B) -// nodeVersionBeacon/admin/set_version_boundary.cdc (1.4kB) -// nodeVersionBeacon/scripts/get_current_node_version.cdc (236B) -// nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc (263B) -// nodeVersionBeacon/scripts/get_next_version_boundary.cdc (267B) -// nodeVersionBeacon/scripts/get_next_version_update_sequence.cdc (206B) -// nodeVersionBeacon/scripts/get_version_boundaries.cdc (293B) -// nodeVersionBeacon/scripts/get_version_boundary_freeze_period.cdc (321B) -// quorumCertificate/admin/publish_voter.cdc (311B) -// quorumCertificate/admin/start_voting.cdc (1.495kB) -// quorumCertificate/admin/stop_voting.cdc (354B) -// quorumCertificate/create_voter.cdc (1.107kB) -// quorumCertificate/scripts/generate_quorum_certificate.cdc (321B) -// quorumCertificate/scripts/get_cluster.cdc (184B) -// quorumCertificate/scripts/get_cluster_complete.cdc (236B) -// quorumCertificate/scripts/get_cluster_node_weights.cdc (191B) -// quorumCertificate/scripts/get_cluster_vote_threshold.cdc (185B) -// quorumCertificate/scripts/get_cluster_votes.cdc (245B) -// quorumCertificate/scripts/get_cluster_weight.cdc (181B) -// quorumCertificate/scripts/get_clusters.cdc (265B) -// quorumCertificate/scripts/get_node_has_voted.cdc (480B) -// quorumCertificate/scripts/get_node_weight.cdc (315B) -// quorumCertificate/scripts/get_qc_enabled.cdc (101B) -// quorumCertificate/scripts/get_voter_is_registered.cdc (198B) -// quorumCertificate/scripts/get_voting_completed.cdc (187B) -// quorumCertificate/submit_vote.cdc (584B) +// FlowServiceAccount/add_account_creator.cdc (588B) +// FlowServiceAccount/deposit_fees.cdc (871B) +// FlowServiceAccount/remove_account_creator.cdc (590B) +// FlowServiceAccount/scripts/get_account_creators.cdc (141B) +// FlowServiceAccount/scripts/get_account_fee.cdc (136B) +// FlowServiceAccount/scripts/get_execution_effort_weights.cdc (155B) +// FlowServiceAccount/scripts/get_execution_memory_limit.cdc (143B) +// FlowServiceAccount/scripts/get_execution_memory_weights.cdc (155B) +// FlowServiceAccount/scripts/get_fees_balance.cdc (103B) +// FlowServiceAccount/scripts/get_is_account_creation_restricted.cdc (145B) +// FlowServiceAccount/scripts/get_is_account_creator.cdc (157B) +// FlowServiceAccount/scripts/get_tx_fee_parameters.cdc (122B) +// FlowServiceAccount/set_execution_effort_weights.cdc (1.663kB) +// FlowServiceAccount/set_execution_memory_limit.cdc (287B) +// FlowServiceAccount/set_execution_memory_weights.cdc (315B) +// FlowServiceAccount/set_is_account_creation_restricted.cdc (609B) +// FlowServiceAccount/set_tx_fee_parameters.cdc (622B) +// FlowServiceAccount/set_tx_fee_surge_factor.cdc (481B) +// accounts/add_key.cdc (713B) +// accounts/create_new_account.cdc (768B) +// accounts/revoke_key.cdc (263B) +// dkg/admin/force_stop_dkg.cdc (350B) +// dkg/admin/publish_participant.cdc (314B) +// dkg/admin/set_safe_threshold.cdc (441B) +// dkg/admin/start_dkg.cdc (382B) +// dkg/admin/stop_dkg.cdc (345B) +// dkg/create_participant.cdc (442B) +// dkg/scripts/get_consensus_nodes.cdc (108B) +// dkg/scripts/get_dkg_canonical_final_submission.cdc (103B) +// dkg/scripts/get_dkg_completed.cdc (104B) +// dkg/scripts/get_dkg_enabled.cdc (93B) +// dkg/scripts/get_final_submissions.cdc (111B) +// dkg/scripts/get_latest_whiteboard_messages.cdc (335B) +// dkg/scripts/get_node_final_submission.cdc (133B) +// dkg/scripts/get_node_has_submitted.cdc (121B) +// dkg/scripts/get_node_is_claimed.cdc (223B) +// dkg/scripts/get_node_is_registered.cdc (128B) +// dkg/scripts/get_submissions_count.cdc (111B) +// dkg/scripts/get_thresholds.cdc (445B) +// dkg/scripts/get_whiteboard_messages.cdc (120B) +// dkg/send_final_submission.cdc (429B) +// dkg/send_whiteboard_message.cdc (412B) +// epoch/admin/advance_view.cdc (667B) +// epoch/admin/calculate_rewards.cdc (379B) +// epoch/admin/deploy_epoch.cdc (1.192kB) +// epoch/admin/deploy_qc_dkg.cdc (310B) +// epoch/admin/pay_rewards.cdc (497B) +// epoch/admin/recover_epoch.cdc (1.735kB) +// epoch/admin/reset_epoch.cdc (1.668kB) +// epoch/admin/set_automatic_rewards.cdc (376B) +// epoch/admin/set_bonus_tokens.cdc (624B) +// epoch/admin/update_clusters.cdc (358B) +// epoch/admin/update_dkg_phase_views.cdc (348B) +// epoch/admin/update_epoch_config.cdc (1.775kB) +// epoch/admin/update_epoch_timing_config.cdc (503B) +// epoch/admin/update_epoch_views.cdc (349B) +// epoch/admin/update_reward.cdc (361B) +// epoch/admin/update_staking_views.cdc (351B) +// epoch/node/register_dkg_participant.cdc (550B) +// epoch/node/register_node.cdc (3.104kB) +// epoch/node/register_qc_voter.cdc (548B) +// epoch/scripts/get_bonus_tokens.cdc (108B) +// epoch/scripts/get_config_metadata.cdc (121B) +// epoch/scripts/get_create_clusters.cdc (205B) +// epoch/scripts/get_current_view.cdc (147B) +// epoch/scripts/get_epoch_counter.cdc (110B) +// epoch/scripts/get_epoch_metadata.cdc (159B) +// epoch/scripts/get_epoch_phase.cdc (116B) +// epoch/scripts/get_epoch_timing_config.cdc (134B) +// epoch/scripts/get_proposed_counter.cdc (113B) +// epoch/scripts/get_randomize.cdc (125B) +// epoch/scripts/get_target_end_time_for_epoch.cdc (263B) +// flowToken/burn_tokens.cdc (1.131kB) +// flowToken/create_forwarder.cdc (2.025kB) +// flowToken/mint_tokens.cdc (1.019kB) +// flowToken/scripts/get_balance.cdc (420B) +// flowToken/scripts/get_supply.cdc (208B) +// flowToken/setup_account.cdc (1.349kB) +// flowToken/transfer_tokens.cdc (1.327kB) +// idTableStaking/admin/add_approved_and_limits.cdc (1.635kB) +// idTableStaking/admin/add_approved_nodes.cdc (1.055kB) +// idTableStaking/admin/capability_end_epoch.cdc (1.374kB) +// idTableStaking/admin/change_candidate_limits.cdc (727B) +// idTableStaking/admin/change_cut.cdc (665B) +// idTableStaking/admin/change_del_minimums.cdc (690B) +// idTableStaking/admin/change_minimums.cdc (818B) +// idTableStaking/admin/change_payout.cdc (625B) +// idTableStaking/admin/end_epoch.cdc (913B) +// idTableStaking/admin/end_epoch_change_payout.cdc (979B) +// idTableStaking/admin/end_staking.cdc (698B) +// idTableStaking/admin/move_tokens.cdc (598B) +// idTableStaking/admin/pay_rewards.cdc (686B) +// idTableStaking/admin/remove_approved_nodes.cdc (1.011kB) +// idTableStaking/admin/remove_invalid_nodes.cdc (697B) +// idTableStaking/admin/remove_node.cdc (629B) +// idTableStaking/admin/scale_rewards_test.cdc (713B) +// idTableStaking/admin/set_approved_nodes.cdc (628B) +// idTableStaking/admin/set_claimed.cdc (633B) +// idTableStaking/admin/set_node_weight.cdc (650B) +// idTableStaking/admin/set_non_operational.cdc (785B) +// idTableStaking/admin/set_open_access_node_slots.cdc (936B) +// idTableStaking/admin/set_slot_limits.cdc (1.572kB) +// idTableStaking/admin/start_staking.cdc (597B) +// idTableStaking/admin/transfer_admin.cdc (658B) +// idTableStaking/admin/transfer_fees_admin.cdc (444B) +// idTableStaking/admin/transfer_minter_deploy.cdc (1.344kB) +// idTableStaking/admin/upgrade_set_claimed.cdc (691B) +// idTableStaking/admin/upgrade_staking.cdc (159B) +// idTableStaking/delegation/del_request_unstaking.cdc (670B) +// idTableStaking/delegation/del_stake_new_tokens.cdc (1.044kB) +// idTableStaking/delegation/del_stake_rewarded.cdc (676B) +// idTableStaking/delegation/del_stake_unstaked.cdc (676B) +// idTableStaking/delegation/del_withdraw_reward_tokens.cdc (952B) +// idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc (952B) +// idTableStaking/delegation/delegator_add_capability.cdc (892B) +// idTableStaking/delegation/get_delegator_committed.cdc (321B) +// idTableStaking/delegation/get_delegator_info.cdc (299B) +// idTableStaking/delegation/get_delegator_info_from_address.cdc (505B) +// idTableStaking/delegation/get_delegator_request.cdc (330B) +// idTableStaking/delegation/get_delegator_rewarded.cdc (319B) +// idTableStaking/delegation/get_delegator_staked.cdc (315B) +// idTableStaking/delegation/get_delegator_unstaked.cdc (319B) +// idTableStaking/delegation/get_delegator_unstaking.cdc (321B) +// idTableStaking/delegation/get_delegator_unstaking_request.cdc (330B) +// idTableStaking/delegation/register_delegator.cdc (981B) +// idTableStaking/delegation/register_many_delegators.cdc (684B) +// idTableStaking/node/node_add_capability.cdc (900B) +// idTableStaking/node/register_many_nodes.cdc (1.171kB) +// idTableStaking/node/register_node.cdc (1.651kB) +// idTableStaking/node/request_unstake.cdc (644B) +// idTableStaking/node/stake_new_tokens.cdc (1.008kB) +// idTableStaking/node/stake_rewarded_tokens.cdc (647B) +// idTableStaking/node/stake_unstaked_tokens.cdc (626B) +// idTableStaking/node/unstake_all.cdc (608B) +// idTableStaking/node/update_networking_address.cdc (650B) +// idTableStaking/node/withdraw_reward_tokens.cdc (922B) +// idTableStaking/node/withdraw_unstaked_tokens.cdc (922B) +// idTableStaking/scripts/get_approved_but_not_staked_nodes.cdc (670B) +// idTableStaking/scripts/get_approved_nodes.cdc (289B) +// idTableStaking/scripts/get_candidate_limits.cdc (271B) +// idTableStaking/scripts/get_candidate_nodes.cdc (234B) +// idTableStaking/scripts/get_current_table.cdc (196B) +// idTableStaking/scripts/get_cut_percentage.cdc (205B) +// idTableStaking/scripts/get_del_stake_requirements.cdc (224B) +// idTableStaking/scripts/get_delegators_below_min.cdc (1.966kB) +// idTableStaking/scripts/get_node_committed_tokens.cdc (263B) +// idTableStaking/scripts/get_node_info.cdc (240B) +// idTableStaking/scripts/get_node_info_from_address.cdc (471B) +// idTableStaking/scripts/get_node_initial_weight.cdc (251B) +// idTableStaking/scripts/get_node_networking_addr.cdc (259B) +// idTableStaking/scripts/get_node_networking_key.cdc (251B) +// idTableStaking/scripts/get_node_rewarded_tokens.cdc (264B) +// idTableStaking/scripts/get_node_role.cdc (231B) +// idTableStaking/scripts/get_node_staked_tokens.cdc (260B) +// idTableStaking/scripts/get_node_staking_key.cdc (245B) +// idTableStaking/scripts/get_node_total_commitment.cdc (279B) +// idTableStaking/scripts/get_node_total_commitment_without_delegators.cdc (282B) +// idTableStaking/scripts/get_node_type_ratio.cdc (241B) +// idTableStaking/scripts/get_node_unstaked_tokens.cdc (264B) +// idTableStaking/scripts/get_node_unstaking_request.cdc (275B) +// idTableStaking/scripts/get_node_unstaking_tokens.cdc (266B) +// idTableStaking/scripts/get_non_operational.cdc (211B) +// idTableStaking/scripts/get_proposed_table.cdc (198B) +// idTableStaking/scripts/get_role_counts.cdc (208B) +// idTableStaking/scripts/get_slot_limits.cdc (309B) +// idTableStaking/scripts/get_stake_requirements.cdc (247B) +// idTableStaking/scripts/get_table.cdc (190B) +// idTableStaking/scripts/get_total_staked.cdc (463B) +// idTableStaking/scripts/get_total_staked_by_type.cdc (256B) +// idTableStaking/scripts/get_weekly_payout.cdc (202B) +// lockedTokens/admin/admin_create_shared_accounts.cdc (3.671kB) +// lockedTokens/admin/admin_deploy_contract.cdc (463B) +// lockedTokens/admin/admin_deposit_account_creator.cdc (846B) +// lockedTokens/admin/admin_remove_delegator.cdc (463B) +// lockedTokens/admin/check_main_registration.cdc (949B) +// lockedTokens/admin/check_shared_registration.cdc (633B) +// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.435kB) +// lockedTokens/admin/custody_create_only_lease_account.cdc (3.335kB) +// lockedTokens/admin/custody_create_only_shared_account.cdc (3.57kB) +// lockedTokens/admin/custody_create_shared_accounts.cdc (3.706kB) +// lockedTokens/admin/custody_setup_account_creator.cdc (758B) +// lockedTokens/admin/deposit_locked_tokens.cdc (1.678kB) +// lockedTokens/admin/unlock_tokens.cdc (593B) +// lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc (2.878kB) +// lockedTokens/delegator/delegate_new_tokens.cdc (1.369kB) +// lockedTokens/delegator/delegate_rewarded_tokens.cdc (645B) +// lockedTokens/delegator/delegate_unstaked_tokens.cdc (637B) +// lockedTokens/delegator/get_delegator_id.cdc (392B) +// lockedTokens/delegator/get_delegator_info.cdc (1.458kB) +// lockedTokens/delegator/get_delegator_node_id.cdc (396B) +// lockedTokens/delegator/register_delegator.cdc (1.741kB) +// lockedTokens/delegator/request_unstaking.cdc (639B) +// lockedTokens/delegator/withdraw_rewarded_tokens.cdc (982B) +// lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc (645B) +// lockedTokens/delegator/withdraw_unstaked_tokens.cdc (645B) +// lockedTokens/staker/get_node_id.cdc (387B) +// lockedTokens/staker/get_staker_info.cdc (1.165kB) +// lockedTokens/staker/register_node.cdc (1.714kB) +// lockedTokens/staker/request_unstaking.cdc (692B) +// lockedTokens/staker/stake_new_tokens.cdc (1.413kB) +// lockedTokens/staker/stake_rewarded_tokens.cdc (695B) +// lockedTokens/staker/stake_unstaked_tokens.cdc (695B) +// lockedTokens/staker/unstake_all.cdc (618B) +// lockedTokens/staker/update_networking_address.cdc (659B) +// lockedTokens/staker/withdraw_rewarded_tokens.cdc (973B) +// lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc (658B) +// lockedTokens/staker/withdraw_unstaked_tokens.cdc (658B) +// lockedTokens/user/deposit_tokens.cdc (806B) +// lockedTokens/user/get_locked_account_address.cdc (401B) +// lockedTokens/user/get_locked_account_balance.cdc (400B) +// lockedTokens/user/get_multiple_unlock_limits.cdc (514B) +// lockedTokens/user/get_total_balance.cdc (2.811kB) +// lockedTokens/user/get_unlock_limit.cdc (391B) +// lockedTokens/user/withdraw_tokens.cdc (924B) +// nodeVersionBeacon/admin/change_version_freeze_period.cdc (803B) +// nodeVersionBeacon/admin/delete_version_boundary.cdc (828B) +// nodeVersionBeacon/admin/heartbeat.cdc (628B) +// nodeVersionBeacon/admin/set_version_boundary.cdc (1.421kB) +// nodeVersionBeacon/scripts/get_current_node_version.cdc (237B) +// nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc (264B) +// nodeVersionBeacon/scripts/get_next_version_boundary.cdc (268B) +// nodeVersionBeacon/scripts/get_next_version_update_sequence.cdc (207B) +// nodeVersionBeacon/scripts/get_version_boundaries.cdc (294B) +// nodeVersionBeacon/scripts/get_version_boundary_freeze_period.cdc (322B) +// quorumCertificate/admin/publish_voter.cdc (411B) +// quorumCertificate/admin/start_voting.cdc (1.522kB) +// quorumCertificate/admin/stop_voting.cdc (381B) +// quorumCertificate/create_voter.cdc (1.127kB) +// quorumCertificate/scripts/generate_quorum_certificate.cdc (333B) +// quorumCertificate/scripts/get_cluster.cdc (196B) +// quorumCertificate/scripts/get_cluster_complete.cdc (248B) +// quorumCertificate/scripts/get_cluster_node_weights.cdc (203B) +// quorumCertificate/scripts/get_cluster_vote_threshold.cdc (197B) +// quorumCertificate/scripts/get_cluster_votes.cdc (257B) +// quorumCertificate/scripts/get_cluster_weight.cdc (193B) +// quorumCertificate/scripts/get_clusters.cdc (277B) +// quorumCertificate/scripts/get_node_has_voted.cdc (492B) +// quorumCertificate/scripts/get_node_weight.cdc (327B) +// quorumCertificate/scripts/get_qc_enabled.cdc (113B) +// quorumCertificate/scripts/get_voter_is_registered.cdc (210B) +// quorumCertificate/scripts/get_voting_completed.cdc (199B) +// quorumCertificate/submit_vote.cdc (611B) // randomBeaconHistory/scripts/get_latest_source_of_randomness.cdc (200B) // randomBeaconHistory/scripts/get_source_of_randomness.cdc (305B) // randomBeaconHistory/scripts/get_source_of_randomness_page.cdc (326B) -// stakingCollection/close_stake.cdc (758B) -// stakingCollection/create_machine_account.cdc (1.152kB) -// stakingCollection/create_new_tokenholder_acct.cdc (2.95kB) -// stakingCollection/deploy_collection_contract.cdc (297B) -// stakingCollection/register_delegator.cdc (675B) -// stakingCollection/register_multiple_delegators.cdc (767B) -// stakingCollection/register_multiple_nodes.cdc (1.584kB) -// stakingCollection/register_node.cdc (1.426kB) -// stakingCollection/request_unstaking.cdc (684B) -// stakingCollection/restake_all_stakers.cdc (1.307kB) -// stakingCollection/scripts/does_account_have_staking_collection.cdc (252B) -// stakingCollection/scripts/get_all_delegator_info.cdc (354B) -// stakingCollection/scripts/get_all_node_info.cdc (334B) -// stakingCollection/scripts/get_delegator_ids.cdc (281B) -// stakingCollection/scripts/get_does_stake_exist.cdc (412B) -// stakingCollection/scripts/get_locked_tokens_used.cdc (284B) -// stakingCollection/scripts/get_machine_account_address.cdc (435B) -// stakingCollection/scripts/get_machine_accounts.cdc (313B) -// stakingCollection/scripts/get_node_ids.cdc (243B) -// stakingCollection/scripts/get_unlocked_tokens_used.cdc (289B) -// stakingCollection/setup_staking_collection.cdc (3.006kB) -// stakingCollection/stake_new_tokens.cdc (808B) -// stakingCollection/stake_rewarded_tokens.cdc (701B) -// stakingCollection/stake_unstaked_tokens.cdc (701B) -// stakingCollection/test/deposit_tokens.cdc (870B) +// stakingCollection/close_stake.cdc (906B) +// stakingCollection/create_machine_account.cdc (1.702kB) +// stakingCollection/create_new_tokenholder_acct.cdc (3.616kB) +// stakingCollection/deploy_collection_contract.cdc (312B) +// stakingCollection/register_delegator.cdc (823B) +// stakingCollection/register_multiple_delegators.cdc (875B) +// stakingCollection/register_multiple_nodes.cdc (1.692kB) +// stakingCollection/register_node.cdc (1.957kB) +// stakingCollection/request_unstaking.cdc (832B) +// stakingCollection/restake_all_stakers.cdc (1.413kB) +// stakingCollection/scripts/does_account_have_staking_collection.cdc (257B) +// stakingCollection/scripts/get_all_delegator_info.cdc (357B) +// stakingCollection/scripts/get_all_node_info.cdc (337B) +// stakingCollection/scripts/get_delegator_ids.cdc (286B) +// stakingCollection/scripts/get_does_stake_exist.cdc (415B) +// stakingCollection/scripts/get_locked_tokens_used.cdc (289B) +// stakingCollection/scripts/get_machine_account_address.cdc (440B) +// stakingCollection/scripts/get_machine_accounts.cdc (318B) +// stakingCollection/scripts/get_node_ids.cdc (248B) +// stakingCollection/scripts/get_unlocked_tokens_used.cdc (294B) +// stakingCollection/setup_staking_collection.cdc (3.494kB) +// stakingCollection/stake_new_tokens.cdc (956B) +// stakingCollection/stake_rewarded_tokens.cdc (849B) +// stakingCollection/stake_unstaked_tokens.cdc (849B) +// stakingCollection/test/deposit_tokens.cdc (878B) // stakingCollection/test/get_tokens.cdc (684B) -// stakingCollection/transfer_delegator.cdc (1.994kB) -// stakingCollection/transfer_node.cdc (2.108kB) -// stakingCollection/unstake_all.cdc (610B) -// stakingCollection/update_networking_address.cdc (628B) -// stakingCollection/withdraw_from_machine_account.cdc (690B) -// stakingCollection/withdraw_rewarded_tokens.cdc (862B) -// stakingCollection/withdraw_unstaked_tokens.cdc (877B) -// stakingProxy/add_node_info.cdc (624B) -// stakingProxy/get_node_info.cdc (506B) -// stakingProxy/register_node.cdc (1.095kB) -// stakingProxy/remove_node_info.cdc (307B) -// stakingProxy/remove_staking_proxy.cdc (315B) -// stakingProxy/request_unstaking.cdc (477B) -// stakingProxy/setup_node_account.cdc (511B) -// stakingProxy/stake_new_tokens.cdc (475B) -// stakingProxy/stake_unstaked_tokens.cdc (480B) -// stakingProxy/unstake_all.cdc (441B) -// stakingProxy/withdraw_rewards.cdc (483B) -// stakingProxy/withdraw_unstaked.cdc (483B) -// storageFees/admin/set_parameters.cdc (831B) -// storageFees/scripts/get_account_available_balance.cdc (177B) -// storageFees/scripts/get_accounts_capacity_for_transaction_storage_check.cdc (316B) -// storageFees/scripts/get_storage_capacity.cdc (173B) -// storageFees/scripts/get_storage_fee_conversion.cdc (141B) -// storageFees/scripts/get_storage_fee_min.cdc (135B) +// stakingCollection/transfer_delegator.cdc (2.094kB) +// stakingCollection/transfer_node.cdc (2.208kB) +// stakingCollection/unstake_all.cdc (758B) +// stakingCollection/update_networking_address.cdc (776B) +// stakingCollection/withdraw_from_machine_account.cdc (838B) +// stakingCollection/withdraw_rewarded_tokens.cdc (1.01kB) +// stakingCollection/withdraw_unstaked_tokens.cdc (1.025kB) +// stakingProxy/add_node_info.cdc (640B) +// stakingProxy/get_node_info.cdc (461B) +// stakingProxy/register_node.cdc (1.145kB) +// stakingProxy/remove_node_info.cdc (323B) +// stakingProxy/remove_staking_proxy.cdc (331B) +// stakingProxy/request_unstaking.cdc (493B) +// stakingProxy/setup_node_account.cdc (619B) +// stakingProxy/stake_new_tokens.cdc (491B) +// stakingProxy/stake_unstaked_tokens.cdc (496B) +// stakingProxy/unstake_all.cdc (457B) +// stakingProxy/withdraw_rewards.cdc (499B) +// stakingProxy/withdraw_unstaked.cdc (499B) +// storageFees/admin/set_parameters.cdc (847B) +// storageFees/scripts/get_account_available_balance.cdc (178B) +// storageFees/scripts/get_accounts_capacity_for_transaction_storage_check.cdc (317B) +// storageFees/scripts/get_storage_capacity.cdc (174B) +// storageFees/scripts/get_storage_fee_conversion.cdc (142B) +// storageFees/scripts/get_storage_fee_min.cdc (136B) package assets @@ -304,7 +305,6 @@ import ( "crypto/sha256" "fmt" "io" - "io/ioutil" "os" "path/filepath" "strings" @@ -364,7 +364,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _flowserviceaccountAdd_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xcb\x6a\xc3\x30\x10\x45\xd7\xd2\x57\x0c\x59\x14\x67\x63\x75\x1d\xda\x06\x37\x0f\x28\x14\x0a\x71\x1f\xeb\x89\x34\x4e\x04\x8e\x64\x46\x72\x13\x28\xf9\xf7\x62\xc5\x8b\xb8\x75\xe9\x7a\x46\xe7\x9e\xab\xb1\x87\xc6\x73\x84\x75\xed\x8f\x25\xf1\xa7\xd5\x54\x68\xed\x5b\x17\xa1\x62\x7f\x80\xdb\xd3\xfa\xf9\xe5\xa3\x5c\x6d\xde\x9f\x16\xab\x62\xb9\xdc\xac\xca\x52\x4a\xa5\xe0\x75\x6f\x03\x44\x46\x17\x50\x47\xeb\x1d\xa0\x31\x01\x10\x1c\x1d\x01\x7b\x82\x66\x62\x8c\x9e\xe5\xd5\x5e\xd6\x0f\x17\x4c\xdd\x68\x06\x85\x31\x4c\x21\x4c\xe1\x4b\x4a\x51\x53\x84\x30\xd0\x28\xcc\xc1\xba\x19\xdc\xfc\x16\xcc\xd3\xc8\x86\x78\xc9\x90\xa2\x61\x6a\x90\x29\x0b\x76\xe7\xa8\x23\xb7\x71\xdf\xef\x76\x74\x21\x94\x82\x47\xcf\xec\x8f\xc0\x54\x11\x93\xd3\x04\xd1\x8f\x75\x1f\xa0\x81\x29\xf8\x96\x35\xe5\x89\x21\x85\x08\x54\x57\xf9\x88\x27\xdc\xc3\x25\x3c\xdf\xa6\x9c\xbb\x7f\xb5\x1f\xb2\xee\x9b\x67\xa0\x42\xf4\x8c\x3b\x52\xd5\xd5\x83\x6e\x71\x2a\x85\x10\xf3\x39\x34\xe8\xac\xce\x26\x6f\x0e\xb7\x75\xb2\xde\x8e\x34\xc1\x51\xed\xc9\x54\x8a\xb3\x14\x74\x22\xdd\x46\x4a\x3f\xf1\x57\x81\x1c\x8d\x29\x06\x07\xfa\x71\xaf\x84\x3a\x7f\x07\x00\x00\xff\xff\x58\x7a\xb8\x95\x35\x02\x00\x00" +var _flowserviceaccountAdd_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\xcb\x6e\xab\x30\x10\x5d\xdb\x5f\x31\x62\x11\xc1\xc6\xde\xa3\x7b\x1b\xd1\x4a\xfd\x81\x3e\xf6\x13\x7b\x48\x2c\x81\x8d\xc6\xa6\x54\xaa\xf2\xef\x15\x86\x45\x68\xa8\xba\x3e\x73\x9e\xe3\xfa\x21\x70\x82\xe7\x2e\x4c\x2f\xc4\x1f\xce\x50\x63\x4c\x18\x7d\x82\x96\x43\x0f\xc5\x3d\x50\x48\xa9\x35\xbc\x5e\x5c\x84\xc4\xe8\x23\x9a\xe4\x82\x07\xb4\x36\x02\x82\xa7\x09\x70\x55\x30\x4c\x8c\x29\xb0\xbc\xb9\x2b\x57\xf0\x89\x69\x86\x6a\x68\xac\x65\x8a\xb1\x82\x2f\x29\x45\x47\x09\xe2\xc6\xad\xb1\xbd\xf3\x35\x1c\xee\x73\xa8\x0c\xb9\x98\x16\x0f\x29\x06\xa6\x01\x99\xca\xe8\xce\x9e\xb8\x06\x1c\xd3\xa5\x7c\x0c\xcc\x61\x7a\xc7\x6e\xa4\x0a\x0e\x2b\x75\x36\x13\x42\x6b\x58\x50\x60\x6a\x89\xc9\x1b\x82\x14\xf6\xa6\xd8\x38\x01\x53\x0c\x23\x1b\x52\x59\x43\x0a\x11\xa9\x6b\xd5\x4e\x6c\xf8\x0f\x4b\x16\x15\x53\x60\x3c\x93\x3a\x65\xbf\x7f\x7f\xb6\x79\x28\xe7\xf5\x6b\xd0\x2b\x51\xb7\x37\x84\xf9\xb0\x92\x42\x88\xe3\x11\x06\xf4\xce\x94\xc5\x9b\xc7\x53\x97\xd3\x9f\x76\x1a\xe1\x6e\xfc\xa2\x92\xe2\x2a\x05\x7d\x92\x19\x13\xe5\x45\x7e\x2b\xa2\xd0\xda\x66\xf3\xb7\x1f\x6f\xcc\x52\xd7\xef\x00\x00\x00\xff\xff\x30\x9d\x0e\x50\x4c\x02\x00\x00" func flowserviceaccountAdd_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -380,11 +380,11 @@ func flowserviceaccountAdd_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/add_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x79, 0x2d, 0xa8, 0x63, 0x2c, 0xf1, 0x7e, 0xed, 0xbd, 0x9, 0xca, 0xc8, 0xdc, 0x63, 0x53, 0x29, 0x1e, 0xb5, 0x81, 0x4a, 0x50, 0x61, 0x83, 0xb4, 0x23, 0x25, 0xc0, 0x4b, 0xbf, 0x98, 0xe2, 0x54}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb1, 0x11, 0x91, 0x94, 0xe5, 0x6c, 0x4, 0x20, 0xe4, 0x66, 0x6, 0x20, 0xd3, 0xd9, 0xf8, 0xab, 0x9b, 0xa9, 0xec, 0xe1, 0x9e, 0x25, 0x9b, 0x99, 0x68, 0xeb, 0xa9, 0x9f, 0xcf, 0x7a, 0xb4, 0xa2}} return a, nil } -var _flowserviceaccountDeposit_feesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x41\x6f\xd3\x40\x10\x85\xcf\xf1\xaf\x78\xf4\x00\xc9\xa1\x36\x07\xc4\x21\x0a\x94\x40\xec\x0a\x51\xb5\x52\x93\xd2\xf3\xc6\x1e\xdb\x2b\x9c\x5d\x6b\x77\x8c\x83\xaa\xfe\x77\xe4\x5d\xaf\xa9\x85\x10\x27\x4b\xe3\xf7\xde\x7c\x33\xb3\xf2\xd4\x6a\xc3\xc8\x3a\x55\xc9\x63\x43\x07\xfd\x83\x14\x4a\xa3\x4f\x78\x7b\xce\x1e\x6e\xaf\xbf\x7e\xbe\x49\x0f\x77\xdf\xd2\xdb\xed\x6e\x77\x9f\xee\xf7\x51\x30\x34\xba\x9f\x8b\x6f\xee\x1e\xff\x25\xcc\x88\xec\x4b\x5d\x96\xa6\xfb\x20\x8b\x92\x04\x3b\x6a\xb5\x95\x0c\x1e\x02\x2d\x58\x83\x6b\xfa\xe3\xfc\x2e\xba\x86\x07\x9d\x56\xcd\x2f\x94\xda\x80\xc9\xb2\x54\x55\x14\xb1\x11\xca\x8a\x9c\xa5\x56\x4b\x71\xd2\x9d\xe2\x35\x1e\x32\x79\x7e\xff\x6e\x85\xa7\x28\x02\x80\x24\xc1\xa1\x26\x1f\x02\x43\x56\x77\x26\x27\x70\x2d\x18\xb5\x6e\x0a\xeb\x7a\x85\xce\x43\x55\x18\xc2\x91\xa4\xaa\xe0\xd2\x4b\x32\x86\x0a\x17\xd5\x10\xc3\x92\x62\x97\xb5\xc6\xa7\xd9\xd6\x62\x8f\xe9\x84\xad\xa1\x56\x18\x5a\x5a\x59\x29\x32\x6b\x6c\x3b\xae\xb7\x79\x3e\xf0\x4d\x5c\x23\xdb\x35\x31\x04\x0c\x95\x64\x48\x0d\x60\x7e\x78\xef\x7c\x63\x61\x59\x1b\x2a\xf0\xd3\x85\x07\xdf\x00\xe2\x2a\xf7\x54\xe2\xc3\x28\x8e\x8f\xda\x18\xdd\x6f\x5e\x4f\xb7\xf1\x48\x1f\x97\xc3\xea\xd7\x48\x86\x28\x51\x51\x52\x86\xff\xee\xf7\x2a\x5a\x2c\x16\x57\x57\x68\x85\x92\xf9\xf2\xe2\x8b\xee\x9a\x02\x4a\x33\x7c\xdc\xdf\x68\xba\xf7\x64\xce\xfd\xea\x62\x35\x1b\xe7\x51\x72\x5d\x18\xd1\x87\x8d\xba\xab\xff\x7f\x20\x4b\x4d\x19\x4f\xab\xc5\xe6\x72\x1a\x2f\xee\xc7\xc4\xe9\xbe\xfe\xbb\x72\xde\x67\xdf\x9c\xce\x94\x77\x4c\x78\x7a\x89\x32\xbd\xaa\x9a\x10\x42\x54\xe0\x92\x6a\xfe\xc6\xe6\x38\xa1\x1c\x17\x3e\x63\xdc\xe0\xe6\x72\xce\x19\x18\x9e\x7f\x07\x00\x00\xff\xff\x46\x01\xf8\x5a\x46\x03\x00\x00" +var _flowserviceaccountDeposit_feesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x4f\x8f\x94\x40\x10\xc5\xcf\xcb\xa7\x78\x72\x58\xe1\xb0\x70\x31\x1e\x26\xa3\xeb\xbf\x8c\x77\xb3\xae\xe7\x1e\x28\xa0\x23\xd3\x45\xaa\x0b\x59\x33\xd9\xef\x6e\x68\x68\x5c\xe2\xc1\x13\xa1\xfa\xd5\xab\x5f\xfd\xb1\x97\x81\x45\x71\x1a\x5d\x6b\xcf\x3d\x3d\xf0\x4f\x72\x68\x84\x2f\x48\x77\xb1\x34\x89\xca\x9e\xa7\x9d\x2a\xfe\xef\x14\x27\x22\xff\x42\x30\xff\xa6\x49\x52\x96\xf8\x42\x03\x7b\xab\xd0\x39\xc5\x43\x19\xda\xd1\xdf\x94\x47\x33\xf6\x3a\xeb\xd8\xf5\xbf\xd1\xb0\x40\xc9\xab\x75\x6d\x92\xa8\x18\xe7\x4d\xa5\x96\x5d\x66\x2e\x3c\x3a\x3d\xe0\xfb\xc9\x3e\xbd\x7d\x93\xe3\x9a\x24\x00\x50\x96\x78\xe8\x68\x31\x81\x90\xe7\x51\x2a\x82\x76\x46\xd1\x71\x5f\xfb\x50\x2b\x56\x9e\xa3\x46\x08\x67\xb2\xae\x45\x70\x6f\x48\x84\xea\x60\xd5\x93\xc2\x93\xd3\xe0\x75\xc0\x87\xeb\x6e\x1a\x45\x08\x3f\x2f\x55\x07\xa1\xc1\x08\x65\xde\xb6\x8e\xe4\x00\x33\x6a\x97\x7d\x62\x11\x9e\x1e\x4d\x3f\x52\x8e\xdb\x8f\x55\x35\x03\x6f\xa0\x2b\xec\x57\x52\x18\x08\x35\x24\xe4\x66\xd2\x65\x1a\x8b\xd1\x6b\x0f\xaf\x2c\x54\xe3\x57\x18\x4a\xcc\x9b\xc9\x42\xe4\x1b\x35\x78\xb7\x8a\x8b\x59\x6a\x5a\x2a\xce\xa1\xee\x31\x30\xec\x91\x7f\x58\xed\x6a\x31\x53\x8e\xdb\x6d\x67\x4b\x1f\xef\xb3\x79\x53\x07\x94\xab\x49\xd9\xc4\xf7\xf0\x9c\x27\x37\x37\x37\xf7\xf7\x18\x8c\xb3\x55\x96\x7e\xe6\xb1\xaf\xe1\x58\xb1\xd4\xfa\x97\x9f\xa7\x05\x3f\x64\xbf\x4a\xf3\x5d\xcf\x11\x23\xee\x21\x1c\xc9\xff\xbb\xf6\xd4\x37\xc5\xb6\x10\x1c\xef\xb6\x19\x14\xd3\xea\xb8\x5d\xc5\xf2\xcd\x43\xee\xba\x23\x7a\xa2\x6a\x54\xc2\xf5\x25\xca\x76\x8b\x1d\x21\x9a\xb8\xc8\x65\xdd\xfe\x32\xf7\x38\x31\x5c\xd4\x8b\xc7\x3a\xc1\xe3\xdd\x9e\x33\x32\x3c\xff\x09\x00\x00\xff\xff\xbb\x16\x8b\x19\x67\x03\x00\x00" func flowserviceaccountDeposit_feesCdcBytes() ([]byte, error) { return bindataRead( @@ -400,11 +400,11 @@ func flowserviceaccountDeposit_feesCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/deposit_fees.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6d, 0x40, 0xd0, 0x49, 0x30, 0xb5, 0x4d, 0x6b, 0xdb, 0xc8, 0x82, 0xb0, 0x97, 0x31, 0x2a, 0xd, 0xcc, 0xff, 0x0, 0x91, 0xcb, 0xc, 0xa8, 0xe7, 0x67, 0xc4, 0x13, 0x3e, 0x0, 0xf, 0x0, 0xaf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7d, 0x52, 0x74, 0xf2, 0x10, 0x54, 0xe7, 0x92, 0xfb, 0xd8, 0xeb, 0x33, 0x4f, 0x97, 0x24, 0x5, 0xe9, 0x43, 0xe, 0x3e, 0x92, 0xa, 0xbe, 0x33, 0xf9, 0xca, 0x6b, 0xe9, 0xf5, 0xb4, 0x56, 0x9}} return a, nil } -var _flowserviceaccountRemove_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xcb\x6a\xeb\x30\x10\x86\xd7\xd2\x53\x0c\x59\x1c\x9c\x8d\x75\xd6\xa1\x6d\x70\x73\x81\x42\xa1\x10\xf7\xb2\x56\xe4\x71\x22\xb0\x35\x66\x24\x27\x81\x92\x77\x2f\x96\xbd\x88\x5b\x97\xae\x67\xf4\xcd\xf7\xeb\xb7\x75\x43\x1c\x60\x5b\xd1\x39\x47\x3e\x59\x83\x99\x31\xd4\xba\x00\x25\x53\x0d\xff\x2f\xdb\xe7\x97\x8f\x7c\xb3\x7b\x7f\x5a\x6d\xb2\xf5\x7a\xb7\xc9\x73\x29\x95\x82\xd7\xa3\xf5\x10\x58\x3b\xaf\x4d\xb0\xe4\x80\xb1\xa6\x13\x7a\xd0\x0e\xf4\x40\x30\x8c\x3a\x10\xcb\x9b\xb5\x64\x98\xad\xfa\xd1\x02\xb2\xa2\x60\xf4\x7e\x0e\x9f\x52\x8a\x0a\x03\xf8\x91\x45\x56\xd4\xd6\x2d\xe0\xdf\x4f\xbf\x34\x8e\xac\x0f\x1c\x6f\x48\xd1\x30\x36\x9a\x31\xf1\xf6\xe0\xb0\x23\xb7\xe1\x38\xec\x76\x74\x21\x94\x82\x47\x62\xa6\x33\x30\x96\xc8\xe8\x0c\x42\xa0\xa9\xe8\x23\x34\x30\x7a\x6a\xd9\x60\x1a\x19\x52\x08\x8f\x55\x99\x4e\x78\xc2\x3d\xf4\xc7\xd3\x7d\xbc\x73\xf7\xa7\xf6\x43\xd2\xfd\xf2\x02\x94\x0f\xc4\xfa\x80\xaa\xbc\x79\xd0\x2d\xce\xa5\x10\x62\xb9\x84\x46\x3b\x6b\x92\xd9\x9b\xd3\xfb\x2a\x5a\xef\x27\x92\xe8\x49\xed\xd9\x5c\x8a\xab\x14\x78\x41\xd3\x06\x8c\x3f\xf1\x5b\x80\xb4\x2f\x31\x1b\x75\xf4\xad\xb2\x48\xbb\x7e\x05\x00\x00\xff\xff\xb4\x28\x75\xda\x37\x02\x00\x00" +var _flowserviceaccountRemove_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\xbd\x6e\x83\x30\x10\x9e\xed\xa7\x38\x31\x44\xb0\xd8\x3b\x6a\x1b\xd1\x4a\x7d\x81\xfe\xec\x17\xe7\x48\x2c\x81\x0f\x9d\x4d\x52\xa9\xca\xbb\x57\x31\x0c\xa1\xa1\xea\xfc\xdd\x7d\xbf\xbe\x1f\x58\x12\xbc\x76\x7c\x7e\x23\x39\x79\x47\x8d\x73\x3c\x86\x04\xad\x70\x0f\xc5\x3d\x50\x68\x6d\x2d\xbc\x1f\x7d\x84\x24\x18\x22\xba\xe4\x39\x80\x50\xcf\x27\x8a\x80\x01\x70\x66\x70\x42\x98\x58\xf4\xcd\x59\x39\x63\x2f\x13\x54\x43\xb3\xdf\x0b\xc5\x58\xc1\xb7\xd6\xaa\xa3\x04\x71\x21\xd6\xec\x7b\x1f\x6a\xd8\xdc\xdb\x30\x19\xf2\x31\x49\xd6\xd0\x6a\x10\x1a\x50\xa8\x8c\xfe\x10\x48\x6a\xc0\x31\x1d\xcb\x67\x16\xe1\xf3\x27\x76\x23\x55\xb0\x99\x5f\xaf\x62\x4a\x59\x0b\x13\x0a\x42\x2d\x09\x05\x47\x90\x78\xad\x89\x85\x12\x08\x45\x1e\xc5\x91\xc9\x1c\x5a\xa9\x48\x5d\x6b\x56\x6c\xc3\x23\x4c\x5e\x4c\x4c\x2c\x78\x20\xb3\xcb\x7a\x0f\xff\xa6\x79\x2a\xaf\xe5\xd7\x60\xe7\x47\xdb\xde\x3c\x5c\x0f\x2b\xad\x94\xda\x6e\x61\xc0\xe0\x5d\x59\x7c\x04\xdc\x75\xd9\xfd\x6e\x25\x11\xae\xda\x2f\x2a\xad\x2e\x5a\xd1\x17\xb9\x31\x51\x6e\xe4\xaf\x20\x66\xda\xb6\x59\x4c\xf7\x6b\xc9\xcc\x76\xf9\x09\x00\x00\xff\xff\xec\x46\x77\xa5\x4e\x02\x00\x00" func flowserviceaccountRemove_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -420,11 +420,11 @@ func flowserviceaccountRemove_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/remove_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x45, 0x93, 0x3, 0xb, 0x31, 0xee, 0xf4, 0x0, 0x1, 0xd1, 0x23, 0xca, 0x29, 0xed, 0xf8, 0x8b, 0xd1, 0xa6, 0x66, 0x57, 0xe8, 0xf9, 0xf3, 0xf3, 0xfe, 0x91, 0xbc, 0xbb, 0x2f, 0x35, 0x84, 0x3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf0, 0x88, 0x85, 0x67, 0xec, 0xe6, 0x1a, 0x23, 0xf6, 0xee, 0x4f, 0xc, 0x7c, 0x58, 0x34, 0x3e, 0xf2, 0x45, 0x36, 0xc2, 0x8d, 0xbe, 0x5, 0xcc, 0xdf, 0x1a, 0xcc, 0x9c, 0x8c, 0xe9, 0x29, 0x21}} return a, nil } -var _flowserviceaccountScriptsGet_account_creatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x4e\x2d\x2a\xcb\x4c\x4e\x75\x4c\x4e\xce\x2f\xcd\x2b\x51\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x0f\x76\x0d\x0a\xf3\x74\x76\x75\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x88\x76\x4c\x49\x29\x4a\x2d\x2e\x8e\x55\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\xc3\x62\xa8\x5e\x7a\x6a\x09\x94\xe9\x5c\x94\x9a\x58\x92\x5f\x54\xac\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x3a\x18\x2d\x67\x85\x00\x00\x00" +var _flowserviceaccountScriptsGet_account_creatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x31\x0a\x02\x31\x10\x46\xe1\x3e\xa7\xf8\xd9\x2a\x69\x3c\x80\xdd\x22\x78\x01\x4b\xb1\x08\xb3\x13\x09\x24\x19\x99\x99\x68\x21\xde\xdd\xc6\xce\xed\x1e\x3c\xf8\x6a\x7f\x88\x3a\xce\x4d\x5e\x17\xd6\x67\x25\x5e\x89\x64\x0e\x47\x51\xe9\x58\xfe\xc7\x12\x42\x26\x62\xb3\x98\x5b\x4b\x28\x73\xa0\xe7\x3a\x62\x3a\xe2\xba\x6e\x9b\xb2\xd9\x0d\xef\x00\x00\xca\x3e\x75\xec\xe0\x87\x3b\xfb\x2f\x4f\xca\xd9\x45\x2d\xa6\xf0\xf9\x06\x00\x00\xff\xff\x70\x58\x63\xbb\x8d\x00\x00\x00" func flowserviceaccountScriptsGet_account_creatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -440,11 +440,11 @@ func flowserviceaccountScriptsGet_account_creatorsCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_account_creators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0x20, 0xf6, 0xc0, 0x61, 0x14, 0xc7, 0x64, 0xeb, 0x27, 0xe2, 0xc1, 0xc7, 0x29, 0x7a, 0x50, 0xa6, 0x42, 0xfb, 0x9b, 0xcd, 0x19, 0xad, 0x12, 0x40, 0x99, 0xd9, 0x5d, 0x94, 0xb9, 0xd9, 0xfa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb, 0x29, 0xe1, 0xc2, 0xd2, 0x0, 0xb4, 0xb8, 0x57, 0xa9, 0x8f, 0xc, 0x63, 0xa1, 0x40, 0x25, 0x23, 0xfd, 0x83, 0xcf, 0xb3, 0xef, 0xe1, 0x16, 0xe9, 0x84, 0xcf, 0xe7, 0x86, 0xa0, 0x5c, 0x7f}} return a, nil } -var _flowserviceaccountScriptsGet_account_feeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x4e\x2d\x2a\xcb\x4c\x4e\x75\x4c\x4e\xce\x2f\xcd\x2b\x51\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x0f\x76\x0d\x0a\xf3\x74\x76\x75\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\xc3\x62\xa2\x5e\x22\x84\x76\x2e\x4a\x4d\x2c\xc9\xcc\xcf\x73\x4b\x4d\xe5\xaa\x05\x04\x00\x00\xff\xff\xfe\x58\x76\xda\x80\x00\x00\x00" +var _flowserviceaccountScriptsGet_account_feeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x4e\x2d\x2a\xcb\x4c\x4e\x75\x4c\x4e\xce\x2f\xcd\x2b\x51\x48\x2b\xca\xcf\x55\x50\xc2\x94\x50\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\xc3\x62\xb2\x5e\x22\x84\x76\x2e\x4a\x4d\x2c\xc9\xcc\xcf\x73\x4b\x4d\xe5\xaa\x05\x04\x00\x00\xff\xff\xd5\x0c\xb4\x55\x88\x00\x00\x00" func flowserviceaccountScriptsGet_account_feeCdcBytes() ([]byte, error) { return bindataRead( @@ -460,11 +460,11 @@ func flowserviceaccountScriptsGet_account_feeCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_account_fee.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x8a, 0x3, 0xc, 0x87, 0xec, 0x16, 0x5, 0xf6, 0x12, 0xa7, 0x47, 0xd8, 0x4c, 0x66, 0x8f, 0x52, 0x8c, 0x70, 0x7a, 0x36, 0x1d, 0x38, 0x2e, 0x3b, 0x6, 0xf6, 0xa5, 0xea, 0x1a, 0x36, 0x6f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd7, 0xc5, 0xf3, 0x5c, 0xe4, 0x84, 0x40, 0x9d, 0xd7, 0xb, 0x6b, 0x49, 0x46, 0x8c, 0xa5, 0xdd, 0xa3, 0x90, 0x91, 0x78, 0x62, 0xa8, 0xe, 0xa4, 0x2, 0x22, 0xba, 0xd8, 0x8c, 0x90, 0xf2, 0x66}} return a, nil } -var _flowserviceaccountScriptsGet_execution_effort_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x31\xcb\xc2\x30\x10\x06\xe0\x3d\xbf\xe2\x1d\xdb\xe5\xe3\x1b\xc4\xa1\x5b\xb1\x29\x14\x04\xa1\x41\x3b\x6b\x48\x6a\xc0\xde\x95\xf3\xa2\x85\xd2\xff\xee\xe0\xea\xf4\x6c\x4f\x9a\x66\x16\x45\xfb\xe0\xb7\x0b\xf2\x4a\x3e\xd4\xde\x73\x26\x45\x14\x9e\xf0\xbf\xb4\xc7\xd3\xe0\x6c\x7f\xe9\x0e\xb6\x6e\x9a\xde\x3a\x67\xcc\x9c\x6f\x88\x99\x30\x5d\x13\x15\x65\x85\xf5\xdc\x91\xee\x77\x15\xbe\x6e\x58\x0d\x00\x48\xd0\x2c\xf4\xe3\xfe\x1b\x83\xda\x25\xf8\xac\x89\xc9\xc6\xc8\xa2\x43\x48\xe3\x5d\x9f\x45\x69\xb6\x4f\x00\x00\x00\xff\xff\xbe\x4c\xb9\xc0\x93\x00\x00\x00" +var _flowserviceaccountScriptsGet_execution_effort_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcd\xa1\x0e\xc2\x30\x10\x87\x71\xdf\xa7\xf8\x67\x6a\x33\x28\x82\x98\x43\x8c\x04\x4d\x08\x7a\xb9\x5c\x47\x93\xf6\x8e\x5c\xaf\x40\xb2\xec\xdd\x11\x48\x50\x9f\xf8\xc4\x2f\x95\x87\x9a\xe3\x94\xf5\x75\x61\x7b\x26\xe2\x23\x91\x36\x71\x44\xd3\x82\xee\x77\x74\x21\xcc\x44\x5c\x6b\x3f\xe7\x3c\x20\x36\x41\x99\x93\xf4\xc3\x88\xf5\x7a\x16\x3f\xec\x47\x7c\xbb\x61\x0d\x00\x60\xec\xcd\xe4\x8f\xb1\x5b\xd8\xa7\x37\x53\xf3\xa4\x32\xc5\xa8\xe6\x37\x4e\xcb\xdd\x6b\x3f\x84\xed\x13\x00\x00\xff\xff\xed\xee\xad\x32\x9b\x00\x00\x00" func flowserviceaccountScriptsGet_execution_effort_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -480,11 +480,11 @@ func flowserviceaccountScriptsGet_execution_effort_weightsCdc() (*asset, error) } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_execution_effort_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x66, 0x94, 0x3f, 0xa3, 0x3a, 0xae, 0xef, 0x8c, 0xc9, 0x65, 0x5a, 0x5a, 0x9, 0xae, 0xc, 0x7c, 0x54, 0x7d, 0xcb, 0x61, 0x3e, 0xd1, 0x8a, 0xc, 0x5c, 0x1d, 0x4a, 0x9b, 0x79, 0x42, 0x97, 0x99}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbc, 0x96, 0xc3, 0x69, 0xc1, 0xcc, 0x19, 0x11, 0xbd, 0xe0, 0x19, 0x1e, 0xb1, 0x38, 0xab, 0xae, 0x1, 0x48, 0x4, 0x1e, 0x57, 0xcf, 0x63, 0xee, 0x28, 0x4e, 0xf7, 0x13, 0x65, 0x30, 0xd6, 0x93}} return a, nil } -var _flowserviceaccountScriptsGet_execution_memory_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xb1\x0a\xc2\x30\x10\x06\xe0\x3d\x4f\xf1\x8f\xed\x22\x0e\xe2\xe0\x56\x6c\x0a\x85\x8a\xd0\xa0\xce\x1a\x52\x39\x30\x77\xe5\xb8\x68\x45\x7c\x77\x5f\xc0\x17\xf8\x28\xcf\xa2\x86\xee\x21\xaf\x90\xf4\x49\x31\x35\x31\x4a\x61\xc3\xa4\x92\xb1\x5e\xba\xe1\x78\x09\x7e\x3c\xf7\x7b\xdf\xb4\xed\xe8\x43\x70\x6e\x2e\x37\x4c\x85\x91\xaf\xc4\x55\xbd\xc3\xa9\x67\xdb\x6e\xf0\x71\x00\xa0\xc9\x8a\xf2\x1f\x71\x75\x4f\xe6\x97\x14\x8b\x91\xf0\x21\x65\xd1\xf7\x40\x99\xac\xaa\xdd\xf7\x17\x00\x00\xff\xff\x99\xae\x26\xc9\x87\x00\x00\x00" +var _flowserviceaccountScriptsGet_execution_memory_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x3d\xaa\x42\x31\x10\x06\xd0\x3e\xab\xf8\xb8\x55\xd2\xbc\xea\x61\x61\x67\xa1\x20\x68\x25\x2e\x20\x0c\x73\x65\x20\x99\x91\xb9\x13\x7f\x10\xf7\xee\x02\xb4\x3e\x70\xa4\x5f\xcd\x03\xbb\x66\xf7\x13\xfb\x4d\x88\x37\x44\x36\x34\x30\xbb\x75\x4c\xdf\x30\xa5\x54\x89\x78\x59\x72\x6d\xad\x60\x1e\x8a\x5e\x45\x73\x59\xe3\xbc\xd7\x58\xfd\xe3\x95\x00\xc0\x39\x86\xeb\x8f\xf9\xef\xc2\xb1\x7d\x30\x8d\x10\xd3\x23\x77\xf3\xe7\x41\xba\x44\x2e\xe9\xfd\x09\x00\x00\xff\xff\xc8\x94\x6c\xb5\x8f\x00\x00\x00" func flowserviceaccountScriptsGet_execution_memory_limitCdcBytes() ([]byte, error) { return bindataRead( @@ -500,11 +500,11 @@ func flowserviceaccountScriptsGet_execution_memory_limitCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_execution_memory_limit.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe3, 0x99, 0x2f, 0x9d, 0x84, 0xf5, 0xb, 0xdd, 0xdc, 0x9d, 0xe7, 0x38, 0xef, 0x7b, 0xd7, 0xb8, 0x51, 0xa0, 0xac, 0xbb, 0xd5, 0x8b, 0xbe, 0xda, 0x4b, 0x87, 0x55, 0xd7, 0x3b, 0xfb, 0x70, 0xba}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd5, 0x92, 0xbb, 0x36, 0x1b, 0xad, 0x73, 0x48, 0xdd, 0x41, 0x54, 0x99, 0x1e, 0xfa, 0x9b, 0x50, 0x6f, 0xbd, 0x17, 0xf5, 0xe3, 0xc6, 0xa1, 0x52, 0xaf, 0x15, 0xe0, 0x6c, 0x4d, 0x9c, 0x46, 0xd2}} return a, nil } -var _flowserviceaccountScriptsGet_execution_memory_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xb1\x0a\xc2\x30\x10\x06\xe0\x3d\x4f\xf1\x8f\xed\x22\x0e\xe2\xd0\xad\xd8\x14\x0a\x8a\xd0\xa0\x9d\x35\x5c\x6b\xc0\x24\xe5\xbc\x68\xa5\xf4\xdd\x1d\x5c\x3b\x7d\xdb\xe7\xfc\x18\x59\x50\x3f\xe3\xc7\x10\xbf\x9d\xa5\xd2\xda\x98\x82\xa0\xe7\xe8\xb1\x9d\xea\xe3\xb9\x33\xba\xbd\x36\x07\x5d\x56\x55\xab\x8d\x51\x6a\x4c\x77\xf4\x29\xc0\xdf\x5c\xc8\xf2\x02\xf3\xa5\x09\xb2\xdf\x15\xf8\xbb\x60\x56\x00\xc0\x24\x89\xc3\xca\xbd\x19\x48\xf4\x44\x36\x89\x8b\xe1\x44\x3e\xf2\xb7\x23\x37\x3c\xe4\x95\xe5\x6a\xf9\x05\x00\x00\xff\xff\xc2\x10\x3a\x4f\x93\x00\x00\x00" +var _flowserviceaccountScriptsGet_execution_memory_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x4e\x2d\x2a\xcb\x4c\x4e\x75\x4c\x4e\xce\x2f\xcd\x2b\x51\x48\x2b\xca\xcf\x55\x50\xc2\x94\x50\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\xa8\x0e\xf5\xcc\x2b\x31\x33\xb1\x52\x80\xd0\xb5\x0a\xd5\x5c\x0a\x0a\x0a\x0a\x45\xa9\x25\xa5\x45\x79\x58\xec\xd0\x4b\x4f\x2d\x71\xad\x48\x4d\x2e\x2d\xc9\xcc\xcf\xf3\x4d\xcd\xcd\x2f\xaa\x0c\x4f\xcd\x4c\xcf\x28\x29\xd6\xd0\xe4\xaa\x05\x04\x00\x00\xff\xff\x91\xb2\x2e\xbd\x9b\x00\x00\x00" func flowserviceaccountScriptsGet_execution_memory_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -520,11 +520,11 @@ func flowserviceaccountScriptsGet_execution_memory_weightsCdc() (*asset, error) } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_execution_memory_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x84, 0x23, 0x2, 0x24, 0x2f, 0x68, 0xd8, 0xad, 0x75, 0xd2, 0x79, 0xd7, 0xac, 0xef, 0xdd, 0xa, 0x12, 0x4c, 0x65, 0x7c, 0x94, 0x9, 0x72, 0x3b, 0x82, 0x5d, 0x61, 0xe8, 0xc3, 0x2a, 0x80, 0xc9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5, 0xcd, 0xd0, 0x38, 0x82, 0x36, 0xe4, 0x74, 0xde, 0x36, 0x36, 0x84, 0x3f, 0xa6, 0xf5, 0xb4, 0x59, 0x3a, 0x3b, 0x17, 0x7f, 0xa0, 0xbc, 0x82, 0xd6, 0xcc, 0x7c, 0xae, 0x39, 0x5c, 0x78, 0xe5}} return a, nil } -var _flowserviceaccountScriptsGet_fees_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x77\x73\x75\x0d\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x1b\xa2\x97\x9e\x5a\xe2\x96\x9a\xea\x94\x98\x93\x98\x97\x9c\xaa\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\xec\x72\xf2\xed\x66\x00\x00\x00" +var _flowserviceaccountScriptsGet_fees_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x50\x82\x71\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\xdd\x32\x2b\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\xe0\xa6\xe8\xa5\xa7\x96\xb8\xa5\xa6\x3a\x25\xe6\x24\xe6\x25\xa7\x6a\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x36\xc6\xa0\x51\x67\x00\x00\x00" func flowserviceaccountScriptsGet_fees_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -540,11 +540,11 @@ func flowserviceaccountScriptsGet_fees_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_fees_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6f, 0xc8, 0x3b, 0x91, 0xc2, 0xc8, 0x97, 0x4e, 0x7c, 0x5e, 0xf9, 0xf, 0x80, 0x8e, 0xba, 0x76, 0x7c, 0x47, 0x55, 0x7e, 0xf6, 0xb, 0xe, 0x41, 0x19, 0x77, 0xa4, 0x91, 0x6c, 0x74, 0x47, 0x2d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc6, 0xb4, 0xfa, 0x5d, 0x2c, 0x2f, 0x77, 0x80, 0x79, 0xa9, 0xb6, 0x97, 0xa3, 0x19, 0x3e, 0x2f, 0x94, 0xaa, 0x9, 0xa2, 0x75, 0x90, 0x67, 0x6b, 0x19, 0xc, 0xd, 0x59, 0xdc, 0x42, 0xc4, 0x4a}} return a, nil } -var _flowserviceaccountScriptsGet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x31\xcb\xc2\x30\x10\x06\xe0\x3d\xbf\xe2\x1d\xdb\xe5\xe3\x9b\xdd\x6a\x9b\x82\x20\x08\x09\xe8\x5c\xe3\x15\x0e\x9a\x5c\xb9\x5e\x54\x10\xff\xbb\x8b\xa3\xdb\x33\x3d\x9c\x57\x51\xc3\xb8\xc8\x23\x92\xde\x39\x51\x97\x92\xd4\x62\x98\x55\x32\xfe\x9f\xe3\xf1\x74\x89\x3e\x9c\x0f\xbd\xef\x86\x21\xf8\x18\x9d\x5b\xeb\x15\x73\x2d\xc8\x13\x97\xa6\xdd\x61\x2f\xb2\xe0\xe5\x00\x40\xc9\xaa\x96\x1f\xdf\x1f\x6f\x5f\xf5\x4a\x93\xb1\x94\x40\x9b\x29\x27\xa3\x5b\xd3\xba\xf7\x27\x00\x00\xff\xff\x30\xd3\xe8\xcf\x89\x00\x00\x00" +var _flowserviceaccountScriptsGet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\x31\x0a\x82\x31\x0c\x47\xf1\xbd\xa7\xf8\xf3\x4d\xed\xe2\x01\xdc\x54\xf0\x00\x7a\x82\x12\x53\x08\xb4\x89\xa4\xa9\x0e\xe2\xdd\x5d\xdc\x74\x7b\xf0\xe0\x27\xe3\x6e\x1e\x38\x77\x7b\x5e\xd9\x1f\x42\x7c\x20\xb2\xa5\x81\xe6\x36\xb0\xfd\x8e\x2d\xa5\x4a\xc4\x73\xe6\xda\x7b\x41\x5b\x8a\x51\x45\x73\xd9\xe3\x68\xd6\xf1\x4a\x00\xe0\x1c\xcb\xf5\x8f\xbb\x93\xf9\xad\x93\x73\x0d\x31\xbd\xf0\x0c\x17\x0a\xbe\xe5\x92\xde\x9f\x00\x00\x00\xff\xff\xdd\x1a\x44\xaa\x91\x00\x00\x00" func flowserviceaccountScriptsGet_is_account_creation_restrictedCdcBytes() ([]byte, error) { return bindataRead( @@ -560,11 +560,11 @@ func flowserviceaccountScriptsGet_is_account_creation_restrictedCdc() (*asset, e } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_is_account_creation_restricted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x33, 0x4f, 0x25, 0xf, 0x24, 0x69, 0x56, 0xe3, 0x8a, 0xce, 0x18, 0xe5, 0x4e, 0xce, 0x73, 0xf, 0x2b, 0x11, 0x4, 0xde, 0x2d, 0xb0, 0x7c, 0x76, 0x8, 0x3e, 0x82, 0x6e, 0xb9, 0xd2, 0xa4, 0x39}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x78, 0x7f, 0x4b, 0x85, 0x11, 0xb6, 0x26, 0xa3, 0x91, 0xc, 0xc6, 0x56, 0x2f, 0x17, 0x6d, 0x44, 0x49, 0x35, 0x2f, 0xa, 0x6d, 0x2b, 0xc1, 0x30, 0xf1, 0x1e, 0xd5, 0x30, 0xec, 0x9a, 0x80, 0x23}} return a, nil } -var _flowserviceaccountScriptsGet_is_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xb1\x0a\xc2\x30\x10\x06\xe0\x3d\x4f\xf1\x8f\x76\x11\xe7\x6e\xb1\x4d\x41\x10\x84\x06\x74\x8e\xe9\x15\x02\x4d\xae\x5c\x12\x15\xc4\x77\x77\x50\x37\xb7\x6f\xfa\x42\x5c\x59\x0a\x86\x85\xef\x96\xe4\x16\x3c\x69\xef\xb9\xa6\x82\x59\x38\x62\xf7\x18\x8e\xa7\x8b\x35\xe3\xf9\xd0\x19\xdd\xf7\xa3\xb1\x56\xa9\xb5\x5e\x31\xd7\x84\xe8\x42\xda\xb8\x69\x12\xca\xb9\x85\xfe\xa0\x69\xb1\x67\x5e\xf0\x54\x00\x20\x54\xaa\xa4\x3f\xff\x36\xe4\xaf\x3a\x21\x57\x58\x7e\x51\xa3\x5e\xef\x00\x00\x00\xff\xff\xda\x8e\xcf\xb1\x95\x00\x00\x00" +var _flowserviceaccountScriptsGet_is_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcd\x31\x0a\x02\x31\x10\x85\xe1\x3e\xa7\x78\x6c\xb5\x69\x3c\xc0\x76\xab\xe0\x05\x3c\xc1\x30\x3b\x0b\x81\x24\x23\x33\x13\x2d\xc4\xbb\x5b\xa8\x95\x76\x1f\x3c\x78\x7f\x69\x57\xb5\xc0\xb9\xea\xfd\x22\x76\x2b\x2c\x2b\xb3\x8e\x1e\xd8\x4d\x1b\xa6\xdf\x61\x4a\x89\x98\xc5\x7d\xa6\x5a\x33\xf6\xd1\xd1\xa8\xf4\x99\xb6\xcd\xc4\x7d\xc1\xfa\x46\x5e\x70\x54\xad\x78\x24\x00\x30\x89\x61\xfd\x4f\xe7\x50\xfc\xa3\x93\x09\x85\xda\xf7\x28\xa7\xe7\x2b\x00\x00\xff\xff\x9d\xb0\x81\x18\x9d\x00\x00\x00" func flowserviceaccountScriptsGet_is_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -580,11 +580,11 @@ func flowserviceaccountScriptsGet_is_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_is_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4a, 0x6b, 0xfc, 0xd, 0xf7, 0xbd, 0x4c, 0x2b, 0x19, 0xf2, 0x34, 0x8a, 0xf2, 0xe0, 0x7c, 0x7b, 0x14, 0xa0, 0x83, 0xce, 0x53, 0x48, 0x48, 0xac, 0xe8, 0x97, 0xbd, 0x1, 0x42, 0xbc, 0x92, 0x91}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x95, 0xb8, 0x4e, 0xec, 0x66, 0x4a, 0x50, 0xbb, 0x8b, 0xb0, 0xb8, 0x52, 0x16, 0x26, 0xc, 0x19, 0xb, 0x4, 0x17, 0x3b, 0x4d, 0xb7, 0xe0, 0xa8, 0xc, 0x8f, 0x1e, 0xb3, 0xd2, 0xeb, 0x1f}} return a, nil } -var _flowserviceaccountScriptsGet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x77\x73\x75\x0d\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x82\x6b\xd0\x73\x4b\x4d\x0d\x48\x2c\x4a\xcc\x4d\x2d\x49\x2d\x2a\x56\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\xa8\x49\x4f\x2d\x41\x51\xa6\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x72\x08\x76\xd1\x79\x00\x00\x00" +var _flowserviceaccountScriptsGet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x50\x82\x71\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\xe0\x3a\xf4\xdc\x52\x53\x03\x12\x8b\x12\x73\x53\x4b\x52\x8b\x8a\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\x6a\xd2\x53\x4b\x50\x94\x69\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x4a\xde\xf2\x2a\x7a\x00\x00\x00" func flowserviceaccountScriptsGet_tx_fee_parametersCdcBytes() ([]byte, error) { return bindataRead( @@ -600,11 +600,11 @@ func flowserviceaccountScriptsGet_tx_fee_parametersCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/scripts/get_tx_fee_parameters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0xaf, 0xc1, 0xff, 0x1a, 0x34, 0x69, 0x68, 0xb, 0xd, 0xc9, 0xba, 0xb4, 0xdb, 0x81, 0x8a, 0x41, 0x8, 0x38, 0xf6, 0x85, 0x75, 0xef, 0x4e, 0x8a, 0x6e, 0xb0, 0x6a, 0x22, 0xc1, 0x97, 0x1a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xee, 0x8f, 0xb0, 0x94, 0x23, 0x9d, 0x6b, 0x38, 0x2f, 0x83, 0x12, 0xee, 0x19, 0x73, 0x3f, 0x9d, 0x78, 0x57, 0x4c, 0xb8, 0x2b, 0x65, 0xe9, 0xa3, 0x4, 0x2b, 0x93, 0xdf, 0xda, 0xb5, 0x9c}} return a, nil } -var _flowserviceaccountSet_execution_effort_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x93\x5d\x6b\xe3\x3a\x10\x86\xef\xf3\x2b\x06\x9f\x9b\x14\xd2\x38\x4e\x62\x27\x36\x87\x03\xa5\xe7\x14\xca\xe9\xc2\xc2\x7e\x5d\x94\x2e\x1d\xcb\xe3\x58\x5b\x4b\xf2\x4a\x72\xd2\x10\xf2\xdf\x17\x59\x71\x9b\x7e\xb0\xec\x2e\x7b\xb1\x86\x48\x62\xde\x99\x47\x6f\x34\x52\x18\xc2\xfb\x8a\x1b\xb0\x1a\xa5\x41\x66\xb9\x92\x06\x0c\x59\x03\x92\x36\x40\xf7\xc4\x5a\x17\x03\x2a\x4b\xa5\x2d\x6c\x88\xaf\x2a\x6b\x06\x5d\x19\x81\xc0\x7b\x2e\x5a\xf1\x32\xaf\xe6\x82\x5b\x28\x95\x7e\x0a\xe6\x06\xb0\xde\xe0\xd6\x40\xea\xbe\x71\xcf\xf1\x58\x90\x28\xc8\x84\xbc\x30\xc0\x50\x42\x4e\x60\x88\x24\x54\xa4\x29\x73\x99\xee\x77\x0a\xd7\xe7\x58\x90\x64\x04\xe7\x4a\x34\xad\x45\x47\xfe\x9f\xcb\xe2\x66\x58\x59\xdb\x98\x2c\x0c\x57\xdc\x56\x6d\x3e\x66\x4a\x84\x4a\x96\xb5\xda\x84\xcc\x97\x84\x79\xad\xf2\x30\x99\x2c\x62\x2a\xe7\x4b\xb6\x60\x53\x9c\x24\x51\x31\x5d\xd0\x2c\xc9\x27\x69\x8c\xb4\x20\x16\xd3\x74\x32\x8f\x19\x2e\x42\xdd\x4a\xcb\x05\x85\x4c\x09\xa1\xa4\x9b\xfa\xfd\xee\xb8\x2c\xc6\x2b\xf5\xd7\xd5\x6c\x72\x72\x70\x75\xf1\xf1\xcd\xcf\x38\x72\xc3\xe9\x4a\x79\x47\x51\x51\xce\x67\x05\x2d\x63\x16\xe7\x8b\x38\x89\x96\x71\x14\xe1\xb2\xa4\x34\xa5\x34\x4d\x97\x98\x4f\x69\xce\x8a\x38\x0d\xcb\xb5\x08\x05\x59\xd2\x7e\xec\x2c\xa4\xce\x81\x37\x61\x2b\x02\x2e\x2d\x69\x89\x35\x34\x9a\x18\x37\xae\x27\xaa\xec\x94\x17\x4d\xea\x18\xae\x27\xd3\xcf\x51\x32\x82\x4d\xc5\x59\x05\x82\x50\xfa\x88\x53\xe8\x6b\x8b\x35\x58\x05\x11\xa8\xd6\xf6\x24\xab\x2c\xd6\xbe\x85\x2f\xa9\xb8\x46\x5e\x63\x5e\xbb\x34\xc0\xe3\xfe\x8f\x0f\x46\x5d\xc7\x0b\x2a\xb1\xad\x1f\x2e\x14\xa0\xef\xb1\xff\x1f\xcf\xce\xf1\x4a\xa9\x26\x83\xe8\x55\xed\x9d\x45\x4b\x82\xa4\xcd\x20\x82\x57\x33\x2e\x5a\xd9\xed\x7e\x29\xd7\x8a\x75\x51\xcf\x72\xc9\x4a\x03\x97\xd0\xa0\x46\x7f\x16\xa5\xd2\xa2\xb7\x71\x7b\x7b\xfb\xc5\x28\xe9\x96\xd7\x6e\x00\xd8\xf9\x09\x20\xb0\xdb\x86\x82\x0c\x82\x7f\x79\x87\x46\xbd\x0d\x46\x0f\xe2\x1a\xeb\xd6\xa9\xd7\x7d\xe4\xa8\xb2\x4b\xb8\xa3\x6d\x90\xc1\xee\x11\xf3\xe1\x52\xda\x64\x1e\x8c\x1e\x6b\x83\x68\x32\x89\x02\xd8\x8f\x9e\x14\xf6\xea\xf7\x4b\x93\x38\x9e\x25\x01\xec\x1f\x4b\x8f\x31\xbf\x64\x65\xfa\xe7\x58\x99\xfd\x3e\x2b\xfd\xf2\xc6\x2f\x7a\xec\x11\xe7\x2d\xda\xea\x98\xb2\x83\xa0\x50\x02\xb9\x74\xa2\xb1\x4a\xe3\x8a\x9c\xce\x0b\x92\x96\x97\x9c\xb4\x13\x1e\x9e\xc4\x7f\xdd\x8b\xf8\xe4\xaf\x78\x00\x7b\xbf\xe5\xcd\xe1\x76\x0d\x8e\x9e\xc6\x50\xd2\xe6\x90\x97\xc1\xce\xdb\xcf\xc0\xcf\xfb\x13\xd8\x0d\x9c\xcf\x46\x53\x83\x9a\x86\x86\xaf\x24\xe9\x0c\xce\x5a\x5b\x9d\x31\xa6\x5a\x69\xfb\x14\xf7\x79\x79\x5c\x2b\x2c\xfe\x7e\x8e\xfa\x67\x58\x6a\x25\x32\x08\x0f\xe6\xc3\xd7\xbd\x9e\x3c\x87\x19\x5c\xd3\x91\xc7\x11\x58\xf5\x83\x90\xfd\x60\xff\x2d\x00\x00\xff\xff\xad\xdd\x1d\x36\x64\x06\x00\x00" +var _flowserviceaccountSet_execution_effort_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x93\x5f\x6b\xe3\x38\x14\xc5\xdf\xf3\x29\x2e\x5e\x58\x12\x48\xe3\x38\x89\x9d\xd8\x2c\x0b\x4b\x77\x0b\x65\xbb\xb0\xd0\xfd\xf3\x50\x3a\xf4\x5a\xbe\x8e\x35\xb5\x24\x8f\x24\x27\x0d\x21\xdf\x7d\x90\x15\xb7\xe9\x9f\x19\x66\x86\x79\x18\x43\x2c\xa1\x73\xee\xd1\x2f\xbe\x52\x18\xc2\x3f\x15\x37\x60\x35\x4a\x83\xcc\x72\x25\x0d\x18\xb2\x06\x24\x6d\x81\x1e\x88\xb5\x6e\x0d\xa8\x2c\x95\xb6\xb0\x25\xbe\xae\xac\x19\x74\x65\x04\x02\x1f\xb8\x68\xc5\x6b\x5f\xcd\x05\xb7\x50\x2a\xfd\x3c\x98\x1b\xc0\x7a\x8b\x3b\x03\xa9\x7b\x26\x7d\x8e\x8f\x05\x89\x82\x4c\xc8\x0b\x03\x0c\x25\xe4\x04\x86\x48\x42\x45\x9a\x32\xe7\x74\xbf\x33\xb8\x39\xc7\x82\x24\x23\x38\x57\xa2\x69\x2d\xba\xe4\x3f\xb9\x2c\x6e\x87\x95\xb5\x8d\xc9\xc2\x70\xcd\x6d\xd5\xe6\x13\xa6\x44\xa8\x64\x59\xab\x6d\xc8\x7c\x49\x98\xd7\x2a\x0f\x93\xe9\x32\xa6\x72\xb1\x62\x4b\x36\xc3\x69\x12\x15\xb3\x25\xcd\x93\x7c\x9a\xc6\x48\x4b\x62\x31\xcd\xa6\x8b\x98\xe1\x32\xd4\xad\xb4\x5c\x50\xc8\x94\x10\x4a\xba\xa1\xdf\xef\x9e\xcb\x62\xb2\x56\x3f\x5d\xcd\xa7\xa3\x23\xd5\xc5\x7f\x7f\x7d\x0d\x91\x7b\x9d\xad\x95\x27\x8a\x8a\x72\x31\x2f\x68\x15\xb3\x38\x5f\xc6\x49\xb4\x8a\xa3\x08\x57\x25\xa5\x29\xa5\x69\xba\xc2\x7c\x46\x0b\x56\xc4\x69\x58\x6e\x44\x28\xc8\x92\xf6\xef\x0e\x21\x75\x04\x1e\xc2\x56\x04\x5c\x5a\xd2\x12\x6b\x68\x34\x31\x6e\x5c\x4f\x54\xd9\x29\xaf\x9a\xd4\x65\xb8\x9e\xcc\xde\x45\xc9\x18\xb6\x15\x67\x15\x08\x42\xe9\x57\x9c\x42\x1f\x5a\xac\xc1\x2a\x88\x40\xb5\xb6\x4f\xb2\xca\x62\xed\x5b\xf8\x3a\x15\x37\xc8\x6b\xcc\x6b\x67\x03\x3c\xed\xff\xe4\x08\xea\x3a\x5e\x50\x89\x6d\xfd\x78\xa0\x00\x7d\x8f\xfd\xff\x78\xf1\x1d\xaf\x94\x6a\x32\x88\xde\xd4\xae\x2d\x5a\x12\x24\x6d\x06\x11\xbc\xe9\xb8\x68\x65\xb7\xfb\xa5\xdc\x28\xd6\xad\xfa\x2c\x67\x56\x1a\xb8\x84\x06\x35\xfa\x6f\x51\x2a\x2d\x7a\x8c\xbb\xbb\xbb\xf7\x46\x49\x37\xbd\x71\x2f\x80\xbd\x1f\x00\x02\xbb\x6b\x28\xc8\x20\xf8\x9d\x77\xd1\xa8\x77\xc1\xf8\x51\xdc\x60\xdd\x3a\xf5\xa6\x5f\x39\xa9\xec\x0c\xf7\xb4\x0b\x32\xd8\x3f\xc5\xfc\x7b\x29\x6d\xb2\x08\xc6\x4f\xb5\x41\x34\x9d\x46\x01\x1c\xc6\xcf\x0a\x7b\xf5\xf3\xa5\x49\x1c\xcf\x93\x00\x0e\x4f\xa5\xa7\x31\xdf\x84\x32\xfb\x71\x50\xe6\xdf\x0f\xa5\x9f\xde\xfa\x49\x1f\x7b\x92\xf3\x37\xda\xea\x34\x65\x0f\x41\xa1\x04\x72\xe9\x44\x63\x95\xc6\x35\x39\x9d\x17\x24\x2d\x2f\x39\x69\x27\x3c\x5e\x89\x3f\xba\x1b\xf1\xbf\x3f\xe2\x01\x1c\xfc\x96\xb7\xc7\xd3\x35\x38\xb9\x1a\x43\x49\xdb\xa3\x2f\x83\xbd\xc7\xcf\xc0\x8f\x87\x11\xec\x07\x8e\xb3\xd1\xd4\xa0\xa6\xa1\xe1\x6b\x49\x3a\x03\x6c\x6d\x35\xbc\xf6\x14\x23\xf8\xf9\x37\xc6\x54\x2b\x6d\xef\x76\x8f\x77\x4e\x8e\xa4\x93\x5a\x61\xf1\xcb\xcb\xf4\x5f\x87\xa5\x56\x22\x83\xf0\xe8\x0a\xdf\xc6\x1f\x7d\x2a\xd4\xe0\x86\x4e\xf0\xc7\x60\xd5\x17\x86\x1d\x06\x87\x8f\x01\x00\x00\xff\xff\x38\x5a\x8f\x3f\x7f\x06\x00\x00" func flowserviceaccountSet_execution_effort_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -620,11 +620,11 @@ func flowserviceaccountSet_execution_effort_weightsCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_execution_effort_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x37, 0x75, 0xac, 0x6, 0xec, 0xf7, 0x3e, 0xda, 0xc2, 0x1c, 0xbc, 0xdb, 0xd2, 0xf9, 0x50, 0x92, 0x2c, 0xd2, 0x95, 0x48, 0xef, 0xad, 0xf0, 0x6a, 0xbc, 0x92, 0x53, 0xa0, 0xa, 0xcf, 0x9d, 0x6a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0xdb, 0xc1, 0xb9, 0x62, 0xa9, 0x42, 0x74, 0x68, 0xbe, 0xd1, 0xd7, 0xd6, 0x94, 0xc, 0x9d, 0x43, 0xe7, 0x67, 0xb0, 0xa7, 0x57, 0xa0, 0x72, 0xfa, 0xb0, 0x1f, 0x18, 0x12, 0xbd, 0x99, 0xf}} return a, nil } -var _flowserviceaccountSet_execution_memory_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\xc1\x8a\x83\x40\x10\x44\xef\x7e\x45\x1d\x15\x16\xe7\xb2\xec\x41\x96\x05\x8f\x0b\xc9\x2d\xf9\x80\x61\xd2\xd1\x01\x67\x46\xba\xdb\x98\x10\xfc\xf7\xa0\x12\x09\x39\xa5\x8f\xd5\xc5\xab\x67\x0c\x0e\xad\x17\x28\xdb\x28\xd6\xa9\x4f\x51\x20\xa4\x02\x8b\x48\x23\xe8\x4a\x6e\x98\x53\x04\x0a\x89\x6f\xe8\x7c\xf0\x5a\x66\x2f\xfd\x3c\xd2\xb8\x9b\xd3\x0a\xc7\xff\xa8\x3f\xdf\x05\xee\x19\x00\xf4\x4c\xbd\x65\xca\xc5\x37\x91\xb8\x42\x3d\x68\x5b\x3b\x97\x86\xa8\xcf\xca\x7c\xeb\xbb\xec\x92\x3d\xfd\xae\x80\xbf\xfc\xcc\x29\x54\x30\xa2\x89\x6d\x43\x66\xb3\xd8\x2f\x12\xcb\x5a\xf1\x0e\x10\x7b\xa1\xcd\xe5\x0b\x9a\x3e\x02\x4c\xd9\xf4\x08\x00\x00\xff\xff\x3e\xdc\x40\xf4\x04\x01\x00\x00" +var _flowserviceaccountSet_execution_memory_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\xb1\x6a\xc3\x30\x10\x86\x77\x3f\xc5\x3f\x15\x19\x8a\xb5\x94\x0e\xa6\x14\x3a\x16\xda\xa9\xed\x03\x1c\xea\xc5\x16\x58\x92\xd1\x9d\xe3\x84\xe0\x77\x0f\xb6\x13\x93\x25\x90\x1b\xff\xfb\xf8\xf8\xac\xc5\x6f\xeb\x05\x9a\x29\x0a\x39\xf5\x29\x0a\x84\x55\x40\x88\x3c\x82\x0f\xec\x86\x79\x45\xe0\x90\xf2\x11\x9d\x0f\x5e\xab\xe2\x86\x37\x91\xc7\xaf\x79\xad\xf1\xf7\x19\xf5\xf5\xa5\xc4\xa9\x00\x80\x3e\x73\x4f\x99\x8d\xf8\x26\x72\xae\x41\x83\xb6\xe6\x47\x53\xa6\x86\x4b\x3c\x7d\x38\x97\x86\xa8\x57\x7a\xbe\x95\xac\x64\x65\xaa\x2e\xd1\xff\xdb\xea\x7c\x37\xbb\x9c\x42\x0d\x7b\xf9\xd9\x2d\xec\x7b\xe9\x5a\x02\xca\x7b\x22\xa1\x3d\x6f\x99\xcf\xd0\xf4\x90\x68\x2a\xa6\x73\x00\x00\x00\xff\xff\xc0\x86\x20\x70\x1f\x01\x00\x00" func flowserviceaccountSet_execution_memory_limitCdcBytes() ([]byte, error) { return bindataRead( @@ -640,11 +640,11 @@ func flowserviceaccountSet_execution_memory_limitCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_execution_memory_limit.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0x26, 0x87, 0x5b, 0xdc, 0xb4, 0xba, 0xbb, 0x30, 0xf6, 0x69, 0x15, 0xcf, 0xe4, 0x23, 0xea, 0x24, 0x40, 0x9e, 0x5c, 0xe7, 0x38, 0xfe, 0x13, 0x11, 0x19, 0xb1, 0xde, 0xab, 0x20, 0xe4, 0xf1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0x55, 0xd0, 0x7e, 0x5b, 0xb1, 0x66, 0x8e, 0x6e, 0x52, 0xd0, 0x4d, 0x3f, 0xf0, 0x8a, 0xa, 0x11, 0xfc, 0x2b, 0xb7, 0x1, 0xe1, 0x84, 0xf5, 0x2b, 0x69, 0xf5, 0xa8, 0xc2, 0x36, 0xc0, 0xbb}} return a, nil } -var _flowserviceaccountSet_execution_memory_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\x31\x0b\xc2\x30\x10\x85\xf7\xfe\x8a\x37\xb6\x20\xcd\x22\x0e\x41\x84\x8e\x0e\x6e\x8a\x73\x88\x67\x1b\xb0\x49\xc9\x5d\xad\x52\xfa\xdf\xa5\x56\xa5\x74\xf2\x96\x83\xf7\x1e\x1f\x9f\x52\x38\x56\x8e\x21\xd1\x78\x36\x56\x5c\xf0\x0c\x26\x61\x78\xea\x40\x0f\xb2\xed\x98\xa1\xa6\x3a\xc4\x27\x3a\x72\x65\x25\x9c\x27\xb3\x7d\xea\xa9\x3b\x4f\xb9\x46\x7f\xda\x7b\xd9\xac\x35\xa6\x3f\x64\xe8\x13\x00\x68\x22\x35\x26\x52\xca\xae\xf4\x14\x35\x8a\x56\xaa\xc2\xda\xd0\x7a\xf9\x4e\xc6\x9b\xea\xfc\x16\xcc\x65\xbb\x44\xed\xd2\x6b\x0c\xb5\x86\x62\x09\xd1\x94\xa4\x7e\x76\x87\xb7\xdc\xc7\x21\x5b\xc2\xd8\xdc\x69\xe6\xb8\x82\x84\x3f\x21\x43\x32\xbc\x02\x00\x00\xff\xff\x96\xe9\x2c\xf0\x20\x01\x00\x00" +var _flowserviceaccountSet_execution_memory_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\x31\x6b\xc3\x30\x10\x46\x77\xff\x8a\x6f\x2a\x32\x14\x6b\x29\x1d\x44\x29\x74\xec\xd0\xa9\x2d\x99\x85\x72\xb1\x05\xb1\x64\x74\xe7\x38\xc1\xf8\xbf\x07\x47\x4e\x30\x81\x40\x6e\x39\xf8\x78\x3c\x9e\xd6\xf8\x6b\x3c\x43\x92\x0d\x6c\x9d\xf8\x18\x18\x4c\xc2\x08\x34\x80\x8e\xe4\xfa\x79\x43\x4b\x6d\x4c\x27\x0c\xe4\xeb\x46\xb8\x2a\x56\xbc\x0a\x34\x6c\xf2\x6e\x30\xfe\x7f\x07\x79\x7f\x33\xc8\x7f\x2a\x31\x16\x00\xd0\x25\xea\x6c\x22\xc5\xbe\x0e\x94\x0c\x6c\x2f\x8d\xfa\x95\x98\x6c\x4d\x25\x5e\xbe\x9c\x8b\x7d\x90\x2b\x3d\x5f\x26\x2b\xce\x4c\xb5\x8f\x76\xfb\x71\x6f\xff\x54\xbb\x14\x5b\x03\xbd\x50\xfa\x16\xfc\x73\xe9\x5d\xb2\xca\x47\x52\xb6\x07\x5a\xe5\xbf\x42\xe2\x93\xb2\xa9\x98\xce\x01\x00\x00\xff\xff\x43\xef\x3d\xe4\x3b\x01\x00\x00" func flowserviceaccountSet_execution_memory_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -660,11 +660,11 @@ func flowserviceaccountSet_execution_memory_weightsCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_execution_memory_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0x9e, 0xe1, 0x98, 0x6a, 0x53, 0x46, 0x75, 0xcd, 0x3e, 0x85, 0x4f, 0xc5, 0x75, 0x19, 0xd2, 0xa, 0x71, 0x20, 0xb2, 0xc3, 0xa8, 0x1c, 0x2a, 0xc6, 0x45, 0xd5, 0x39, 0x69, 0xee, 0xc9, 0x8c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x68, 0x24, 0x78, 0x78, 0x6b, 0x42, 0x18, 0x35, 0x8d, 0x1, 0x95, 0xfe, 0xec, 0x4b, 0x3b, 0x81, 0x3, 0xa1, 0x7, 0x1d, 0xeb, 0x87, 0x46, 0x33, 0xa2, 0x65, 0x58, 0xe5, 0x14, 0x5d, 0x3c}} return a, nil } -var _flowserviceaccountSet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x4d\x6b\xf3\x30\x10\x84\xcf\xd2\xaf\x58\x72\x78\x71\x2e\xf6\x7b\x36\x6d\x83\xf3\x05\x81\x42\x21\xee\xc7\x35\x8a\xb2\x4e\x04\x8e\xd6\xac\xd6\x49\xa0\xe4\xbf\x17\xab\xa1\x4d\xa8\x4b\xaf\x5a\xed\xec\x33\x33\x6e\xdf\x10\x0b\xcc\x6b\x3a\x96\xc8\x07\x67\xb1\xb0\x96\x5a\x2f\x50\x31\xed\xe1\xff\x69\xfe\xf8\xf4\x56\xce\x96\xaf\x8b\xc9\xac\x98\x4e\x97\xb3\xb2\xd4\x3a\xcb\xe0\x79\xe7\x02\x08\x1b\x1f\x8c\x15\x47\x1e\xec\xce\xf8\x2d\x06\x58\xb9\x00\xe6\x22\x61\x91\x4d\x1c\x32\x06\x61\x67\x05\x37\x2b\x38\x98\xba\x45\x7d\xb5\x9a\x7c\x4f\x73\x18\x13\xd5\x43\x78\xd7\x5a\xd5\x28\x10\x6e\x90\x8a\xcd\xde\xf9\x1c\xfe\xfd\x84\x4d\xe3\xc8\x05\x61\x23\xc4\x5a\xab\x86\xb1\x31\x8c\x49\x70\x5b\x8f\x9c\x43\xd1\xca\xee\xf2\xb7\x53\x57\x2a\xcb\x60\x4c\xcc\x74\x04\xc6\x0a\x19\xbd\x45\x10\xea\xcb\xe1\x46\xba\x73\x42\x2d\x5b\x4c\xa3\x86\x56\x2a\x60\x5d\xa5\x3d\x9c\x70\x0f\x9f\xc7\xd3\x75\xbc\x73\xf7\x27\xf6\x43\xd2\x45\x9e\x43\x16\x84\xd8\x6c\x31\xab\xae\x16\xba\x8f\x43\xad\x94\x1a\x8d\xa0\x31\xde\xd9\x64\xf0\xe2\xcd\xba\x8e\xd4\xeb\x1e\x27\xa6\x17\x7b\x30\xd4\xea\xac\x15\x9e\xd0\xb6\x82\x31\x89\xdf\x0c\xa4\x01\x65\x11\x2e\x2f\x13\xc6\xd8\xe4\xf2\xab\xaa\xab\xd6\xa2\xe6\xf9\x23\x00\x00\xff\xff\xd6\x4c\xa3\x70\x4a\x02\x00\x00" +var _flowserviceaccountSet_is_account_creation_restrictedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\x4d\x6b\xc2\x40\x10\x3d\xef\xfe\x8a\x21\x07\x49\x2e\xc9\x3d\xb4\x15\x2d\x14\x7a\xed\xd7\xd9\x71\x9d\xe8\x42\xdc\x09\xb3\x13\x2d\x14\xff\x7b\xc9\x1a\x5a\xc5\x94\x5e\xf7\xed\xfb\x9a\xe7\xf7\x1d\x8b\xc2\x53\xcb\xc7\x57\x92\x83\x77\xb4\x70\x8e\xfb\xa0\xd0\x08\xef\x21\xbb\x05\x32\x6b\xab\x0a\xde\x76\x3e\x82\x0a\x86\x88\x4e\x3d\x07\x70\x3b\x0c\x5b\x8a\xb0\xf2\x11\x70\x94\x70\x24\x98\x40\xa1\xa8\xe2\x9d\xd2\x66\x05\x07\x6c\x7b\xb2\x17\xd4\xfc\x17\xad\x61\xc9\xdc\x16\xf0\x65\xad\x69\x49\x21\x5e\x39\x2f\x36\x7b\x1f\x6a\x98\xdd\x66\x2a\x13\xe4\xa3\x0a\x2a\x8b\xb5\xa6\x13\xea\x50\x28\x8f\x7e\x1b\x48\x6a\xc0\x5e\x77\xf9\x92\x45\xf8\xf8\x31\xf8\x17\x30\x1b\xa9\x83\x99\x31\x55\x05\x67\x14\x84\x1a\x12\x0a\x8e\x40\x79\xea\x2c\x57\x4e\x43\x31\xee\xc5\x51\x99\x34\xac\x31\x91\xda\xa6\x9c\x88\x0d\xf7\x70\xce\x52\x46\x65\xc1\x2d\x95\xeb\xe4\x77\xf7\x6f\x9b\x87\x7c\x58\xa2\x86\x6a\x24\x56\xcd\x05\x61\xf8\x58\x58\x63\xcc\x7c\x0e\x1d\x06\xef\xf2\xec\x3d\xe0\xba\x4d\xe9\xd7\x13\x8d\x70\x32\x7e\x56\x58\x73\xb2\x86\x3e\xc9\xf5\x4a\xe9\x22\x7f\x15\x29\x23\xe9\x73\x1c\x5f\x1e\x85\xd2\xc0\x2f\x3f\x0b\x5e\x8c\x99\x34\x4f\xdf\x01\x00\x00\xff\xff\x81\x61\xec\x6a\x61\x02\x00\x00" func flowserviceaccountSet_is_account_creation_restrictedCdcBytes() ([]byte, error) { return bindataRead( @@ -680,11 +680,11 @@ func flowserviceaccountSet_is_account_creation_restrictedCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_is_account_creation_restricted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x99, 0xe6, 0x5c, 0x96, 0xf7, 0xd5, 0xbe, 0x67, 0xcc, 0x62, 0x34, 0x2b, 0x4d, 0xd5, 0x3f, 0xb6, 0x29, 0xe7, 0xa8, 0xe7, 0x8c, 0x2b, 0xa, 0xd0, 0x7e, 0x8c, 0x5, 0xc5, 0xe7, 0x9f, 0x69, 0x7f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x3d, 0xd6, 0x34, 0xd1, 0xea, 0xb6, 0x5e, 0x1f, 0xc8, 0xe2, 0xef, 0xf3, 0xff, 0xc2, 0x1d, 0xb0, 0x58, 0xd4, 0x2d, 0x2a, 0x99, 0x74, 0xde, 0x50, 0xe7, 0x21, 0x74, 0x5b, 0x8f, 0x11, 0x2}} return a, nil } -var _flowserviceaccountSet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\x41\x6b\xe3\x40\x0c\x85\xcf\x33\xbf\x42\xe4\xb0\x38\xb0\xd8\x7b\x58\xf6\x60\xb6\x0d\xa6\xb1\x4f\x85\x96\xa6\xa1\xe7\xc9\x54\x4e\x06\xec\x91\x91\x64\x12\x28\xf9\xef\x25\x4e\x9a\xa4\xe0\xf4\x38\x6f\xf4\x3e\x3d\xf4\x42\xdb\x11\x2b\x54\x0d\x6d\x2b\x44\x81\x9a\xa9\x85\x3f\xbb\xea\xf1\xe9\xad\x2a\xcb\x45\x31\x9f\xbf\x94\x8b\x85\xb5\x59\x06\xaf\x9b\x20\xa0\xec\xa2\x38\xaf\x81\x22\x08\xaa\x80\x6e\xf0\xe2\xee\x1c\xbb\x16\x15\x59\xec\xd5\x60\x22\x3d\xaf\xb1\x72\x5e\x89\x73\x58\x56\x61\xf7\xef\xef\x6f\x08\xd1\x37\xbd\x04\x8a\x65\x5d\x13\xeb\x03\x89\x5e\x3e\x71\x87\xbe\xd7\xd1\xcf\x29\x7c\x58\xd3\xa0\x42\x7d\xda\x5a\x78\x4f\x7d\xd4\xe2\xbd\x0d\x31\x87\x5f\x5f\x61\xd2\x41\x08\xa2\xec\x94\xd8\x5a\xd3\x31\x76\x8e\x31\x91\xb0\x8e\xc8\x39\x14\xbd\x6e\x4e\xde\x81\x69\x04\x9b\x3a\x1d\xa3\xc2\x1d\x1c\x4d\xe9\x8a\x98\x69\xfb\xff\xc6\x92\xfb\xe4\x70\xbe\x1c\x32\x51\x62\xb7\xc6\xec\x0c\x3b\x4c\x4d\xad\x31\x66\x36\x83\xce\xc5\xe0\x93\xc9\x32\xba\x55\x83\xa0\x04\x47\x28\x30\xd6\xc8\x18\xfd\xa0\xb9\x6b\x2e\x30\x0a\xf5\xec\x71\x32\xb5\x66\x6f\xcd\xf1\x3a\xf8\x73\xe8\x54\x50\x2b\xc4\xe7\x73\x25\xdf\x6b\xb8\x7a\xdc\xe8\x62\x44\xbc\x51\xcc\x88\x38\x04\xdd\x7f\x06\x00\x00\xff\xff\xff\xaa\x15\x0d\x5e\x02\x00\x00" +var _flowserviceaccountSet_tx_fee_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\xcf\x6a\xf3\x30\x10\xc4\xcf\xd2\x53\x2c\x3e\x04\x1b\x3e\xec\xcb\x47\x0f\xa6\x6d\x48\x4b\x7d\xee\xa1\xe9\x5d\x51\xd7\x89\xc0\xd6\x9a\xdd\x15\x09\x94\xbc\x7b\x89\xf3\xb7\xe0\xf4\xa8\xd9\xd5\x6f\x86\x9d\xd0\x0f\xc4\x0a\x4d\x47\xdb\x06\x51\xa0\x65\xea\x21\x3b\x3f\x33\x6b\xab\x0a\x3e\x36\x41\x40\xd9\x45\x71\x5e\x03\x45\x10\x54\x01\xdd\xe0\xf5\xdb\xe0\xd8\xf5\xa8\xc8\x62\x6f\x16\x73\x49\xbc\xc6\xc6\x79\x25\xae\x61\xd9\x84\xdd\xc3\xff\x7f\x10\xa2\xef\x92\x04\x8a\x6f\x6d\x4b\xac\xaf\x24\x7a\x1d\xe2\x0e\x7d\xd2\xc9\x61\x01\xdf\xd6\x74\xa8\xd0\x9e\x5c\x17\xde\x53\x8a\xba\xf8\xea\x43\xac\x61\x76\x0e\x53\x8e\x42\x10\x65\xa7\xc4\xd6\x9a\x81\x71\x70\x8c\xb9\x84\x75\x44\xae\xc1\x25\xdd\xe4\x2f\xc4\x4c\xdb\x4f\xd7\x25\x2c\x60\x76\x42\x8d\x16\x46\xb0\x6b\xcb\x29\x13\x78\x82\x23\xa3\x14\x25\x76\x6b\x2c\x57\x23\xe5\xf1\x8e\xf7\x73\x7e\x38\x67\x0d\xd5\x69\xbd\xba\x40\x0f\x5b\x85\x35\xc6\xcc\xe7\x30\xb8\x18\x7c\x9e\x2d\xa3\x5b\x75\x08\x4a\x70\x84\x02\x63\x8b\x8c\xd1\x8f\x9a\xbb\xe5\x02\xa3\x50\x62\x8f\x59\x61\xcd\xde\x9a\xe3\xd1\xf0\xef\xf0\xa5\xa0\x36\x88\xef\x97\xa6\x7e\xb7\x73\xf3\xb8\x53\xd1\x84\x78\xa7\xaf\x09\x71\x0c\xba\xff\x09\x00\x00\xff\xff\x3f\x59\x3d\x32\x6e\x02\x00\x00" func flowserviceaccountSet_tx_fee_parametersCdcBytes() ([]byte, error) { return bindataRead( @@ -700,11 +700,11 @@ func flowserviceaccountSet_tx_fee_parametersCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_tx_fee_parameters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc4, 0xd9, 0xa, 0xe8, 0x29, 0x62, 0x98, 0x4f, 0xb0, 0x5b, 0x5b, 0x90, 0x2e, 0x2c, 0xa0, 0x36, 0x6b, 0x6b, 0x7d, 0x8f, 0xfc, 0xdd, 0x15, 0xf5, 0xa9, 0x70, 0x54, 0xe7, 0x8, 0x37, 0x39, 0x9b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7, 0x44, 0xba, 0x8b, 0xc3, 0xc9, 0x40, 0xba, 0x19, 0x23, 0xf3, 0x15, 0x57, 0xbc, 0x3a, 0x15, 0xd5, 0x73, 0xa0, 0x4, 0xae, 0x10, 0xc7, 0x3c, 0x8d, 0x23, 0xf0, 0xe3, 0xef, 0x69, 0x6c, 0xa2}} return a, nil } -var _flowserviceaccountSet_tx_fee_surge_factorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xc1\x4a\xf3\x40\x14\x85\xd7\x33\x4f\x71\xe9\xe2\x27\xdd\x24\xff\x42\x5c\x04\xb5\x04\xda\x59\x09\x82\xb1\xb8\x9e\x8e\x27\xed\x40\x32\x13\xee\xdc\xd0\x82\xf4\xdd\xa5\x69\xb5\x11\xd4\xe5\x1c\xce\xf7\xcd\xe5\xf8\xae\x8f\x2c\x64\xda\xb8\x37\x40\xa2\x86\x63\x47\xff\x0f\xe6\xf1\xe9\xd5\xac\x56\x75\xb5\x5c\x3e\xaf\xea\x5a\xeb\xa2\xa0\x97\x9d\x4f\x24\x6c\x43\xb2\x4e\x7c\x0c\x94\x20\x89\x64\x87\x2b\xdd\x5b\xb6\x1d\x04\x9c\xf4\xa4\x98\xa5\x81\xb7\x30\xd6\x49\xe4\x92\xd6\xc6\x1f\x6e\x6f\xe6\xf4\xae\x55\x0b\xa1\xe6\xc2\x56\xce\xc5\x21\x48\xf5\xd6\xf9\x50\xd2\xbf\x4f\x65\x3e\x06\x3e\x09\x5b\x89\xac\xb5\xea\x19\xbd\x65\x64\xc9\x6f\x03\xb8\xa4\x6a\x90\xdd\x85\x1d\x9d\x2a\xa1\x6d\xf2\x9f\xac\x74\x4f\x67\x28\xdf\x44\xe6\xb8\xbf\xfb\xe5\x93\x87\xec\x34\x42\x49\x45\x92\xc8\x76\x8b\xe2\x4b\x76\x6a\xcd\xb5\x52\x6a\xb1\xa0\xde\x06\xef\xb2\xd9\x3a\xd8\x4d\x0b\x92\x48\x67\x29\x31\x1a\x30\x82\x1b\x33\x3b\xf5\x12\x23\xc5\x81\x1d\x66\x73\xad\x8e\x5a\xe1\x00\x37\x08\xfe\x3e\x3a\x4f\x10\x03\xd4\xd7\x05\xbf\xaf\x39\x79\x8c\xd6\xe3\x47\x00\x00\x00\xff\xff\x1e\x43\xfa\x9c\xd1\x01\x00\x00" +var _flowserviceaccountSet_tx_fee_surge_factorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xb1\x6a\xf3\x40\x10\x84\xeb\xbb\xa7\x58\x54\x18\xa9\x91\x9a\x9f\xbf\x10\x49\x8c\x53\xe8\x05\x12\xa7\x3f\x5f\x46\xf6\x81\x74\x27\x76\xf7\xb0\x21\xf8\xdd\x83\x65\x3b\x76\x20\x49\xb9\xc3\xcc\x37\xcb\x84\x71\x4a\xac\xd4\x0d\x69\xdf\x01\x42\x3d\xa7\x91\x8a\xeb\x59\x58\xdb\x34\xf4\xba\x0b\x42\xca\x2e\x8a\xf3\x1a\x52\x24\x81\x0a\xe9\x0e\xb7\xd8\xe4\xd8\x8d\x50\xb0\xd8\x3b\x63\x29\x99\xb7\xe8\x9c\xd7\xc4\x2d\xad\xbb\x70\xf8\xff\xaf\xa2\x0f\x6b\x06\x28\xf5\x97\xec\xca\xfb\x94\xa3\xae\xde\xc7\x10\x5b\x5a\x5c\x91\xf5\x2c\x04\x51\x76\x9a\xd8\x5a\x33\x31\x26\xc7\x28\x25\x6c\x23\xb8\x25\x97\x75\x57\x3e\x27\xe6\xb4\x7f\x73\x43\x46\x45\x8b\x0b\x6a\xae\x30\x82\xa1\xaf\x7f\x2a\xa1\x47\x3a\x33\x6a\xd1\xc4\x6e\x8b\x7a\x33\x53\x1e\x7e\xe9\x7e\x2a\x4f\xa3\xb4\xd4\x5c\xec\xcd\x17\xf4\xe4\xaa\xac\x31\x66\xb9\xa4\xc9\xc5\xe0\xcb\x62\x1d\xdd\x66\x00\x69\xa2\x33\x94\x18\x3d\x18\xd1\xcf\x9a\xbb\xe7\x12\x43\x52\x66\x8f\xa2\xb2\xe6\x68\x0d\x0e\xf0\x59\xf1\xf7\xf3\xb5\x40\x3b\xe0\xe5\x36\xec\xf7\x91\xef\x8e\x99\x7a\xfc\x0c\x00\x00\xff\xff\x3b\xbd\x5d\x8d\xe1\x01\x00\x00" func flowserviceaccountSet_tx_fee_surge_factorCdcBytes() ([]byte, error) { return bindataRead( @@ -720,11 +720,71 @@ func flowserviceaccountSet_tx_fee_surge_factorCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount/set_tx_fee_surge_factor.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1d, 0x84, 0xea, 0x4e, 0xdf, 0x39, 0x64, 0x58, 0x5c, 0x35, 0xeb, 0xc3, 0x27, 0xcb, 0x39, 0xc9, 0xa5, 0xf, 0x7b, 0xbe, 0x52, 0x59, 0x3c, 0xbc, 0x9a, 0xc2, 0x15, 0x2f, 0x72, 0xc3, 0x0, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x64, 0xef, 0xd8, 0xdc, 0x37, 0x2e, 0x4d, 0x8a, 0x1c, 0x33, 0x3d, 0x68, 0x59, 0xbd, 0xda, 0xe, 0x13, 0xad, 0x59, 0x87, 0xb7, 0x74, 0x45, 0xa3, 0xd1, 0xef, 0xa8, 0x33, 0x79, 0x24, 0x93, 0xb0}} return a, nil } -var _dkgAdminForce_stop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x41\x4f\x83\x40\x10\x85\xef\xfc\x8a\x97\x1e\x0c\x5c\x88\x67\xa2\x36\x44\x2a\x07\x2e\x46\x7e\xc1\xba\x0c\x74\x23\xcc\x90\x61\x48\x9b\x98\xfe\x77\x83\x6b\x35\x3d\xf8\x2e\x9b\x9d\xbc\xf7\xcd\x9b\x30\xcd\xa2\x86\x97\x51\x4e\x55\x53\xa3\x57\x99\x70\x7f\xae\x9a\xba\xac\xaa\xb7\x43\xdb\x26\x89\xa9\xe3\xc5\x79\x0b\xc2\xf8\x4c\x12\x00\x18\xc9\xd0\x7d\x0c\x65\x37\x05\x2e\x70\xf7\x13\xce\xbf\xff\xd1\x31\x2b\xcd\x4e\x29\x5d\xc2\xc0\xa4\x05\xca\xd5\x8e\xa5\xf7\xb2\xb2\x65\x57\xca\xa6\x85\xc6\x3e\xbf\xa2\xf0\x88\xe8\xcf\xdf\x45\x55\x4e\x0f\xb7\xe4\xa7\x74\x6b\x57\xe0\x66\xd8\x9a\xa8\x1b\xe8\xd5\xd9\x31\xfb\xa5\x6e\xda\xef\x31\x3b\x0e\x3e\xdd\x3d\xcb\x3a\x76\x60\x31\x44\x2c\xb6\x43\xe3\x42\xa5\x9e\x94\xd8\xd3\x2e\x8b\x9d\x2e\xf1\xa1\x33\xf9\xd5\xe8\xdf\xa6\x79\x2f\xea\xe9\xc0\x5d\xd5\xd4\xe9\x5f\xf4\xf2\x15\x00\x00\xff\xff\x6b\xe4\xb6\xb3\x4e\x01\x00\x00" +var _accountsAdd_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x51\x6b\xdb\x30\x14\x85\x9f\xa5\x5f\x71\x9a\x87\x60\x83\x09\xce\x3a\xc2\x10\xf5\x20\x0c\x46\x47\x19\x0c\xba\xee\x5d\xb1\x2e\xb6\x88\x23\x19\xf9\xba\xae\x19\xf9\xef\x43\xc9\xe6\x26\x38\xec\x49\xf2\xf5\xb9\xe7\xd3\x3d\x5c\x7b\x68\x7d\x60\x7c\x09\x63\xcb\x5e\x4a\x0e\xda\x75\xba\x64\xeb\x5d\xb2\xa7\x51\xe1\x99\x83\x75\x55\x86\xce\x56\x4e\x73\x1f\x68\xdb\x54\x3e\x58\xae\x0f\x0a\x2f\xdf\x1c\x7f\xca\x50\xeb\xae\x9e\x57\x07\xb2\x55\xcd\x0a\x2f\x5f\xed\xdb\xe6\x63\x8a\xdf\x52\x8a\x36\x50\xab\x03\x25\xd1\x8c\x82\x82\xee\xb9\x4e\xb6\xc6\x3c\xd1\x98\x62\xb9\x2d\x4b\xdf\x3b\x8e\x52\x11\xa5\xa7\x53\xcc\xc1\xf8\x5c\x60\x8d\xe5\xf2\xc6\x9b\xf0\x50\xe0\x5e\x61\xf1\xbd\xef\x18\x6d\xf0\xaf\xd6\x10\xf4\xbb\x10\x7a\x52\x06\x3d\xe0\x55\x37\x3d\x81\x6b\xcd\xb0\x1d\xd6\x19\x3e\x64\xf0\x01\xf7\x8b\x08\xbe\x1a\x6b\x62\x5e\x57\x1f\x0a\x6c\xe6\xb8\xa8\xf9\x2f\x69\x47\x3c\x10\x39\xac\xa1\x9d\xc1\xe6\x84\x3b\xe7\x15\x1d\xd7\x79\x9e\xaf\x72\x85\xc5\xcf\x9a\xb0\xa7\xf1\x6f\x94\x38\x44\xca\x8e\xa6\xee\xfc\xd4\x1d\xd5\xd1\xe0\x28\x85\x68\x88\xd1\xf6\xbb\xc6\x96\x4f\x34\xa2\xc0\x8f\x7f\xf7\x24\x12\xa6\x3f\x2a\xba\xae\x0c\x95\xde\xd0\x23\xbd\x25\x69\x76\x3b\x68\x85\xe7\x59\x2d\x09\x7a\xf8\x15\x87\x51\x37\xe2\x4f\xef\xa4\x10\xa9\x94\x67\x33\x0a\xab\x3d\x8d\xdd\x4a\x1b\x93\x5c\xb0\xa7\xeb\x6c\x73\x1e\x2f\x3f\x2f\x40\x57\xb2\xf4\xee\x7d\xb7\xce\x67\x2a\xc5\x51\x1e\xff\x04\x00\x00\xff\xff\xa2\xf6\xe5\xb7\xc9\x02\x00\x00" + +func accountsAdd_keyCdcBytes() ([]byte, error) { + return bindataRead( + _accountsAdd_keyCdc, + "accounts/add_key.cdc", + ) +} + +func accountsAdd_keyCdc() (*asset, error) { + bytes, err := accountsAdd_keyCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "accounts/add_key.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0x9d, 0x12, 0x10, 0xf2, 0xbf, 0x12, 0x9b, 0x86, 0x80, 0x3b, 0x15, 0x3e, 0x13, 0x74, 0x20, 0xc9, 0x11, 0x7e, 0x8a, 0x24, 0x9, 0xa1, 0xe2, 0xef, 0x6f, 0x91, 0x6a, 0x4e, 0x8d, 0x61, 0x1f}} + return a, nil +} + +var _accountsCreate_new_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\x61\x8b\x9b\x40\x10\xfd\xac\xbf\xe2\x5d\x3e\x04\x05\x09\xa6\x57\x42\x59\xce\xc2\xb5\x50\xae\x94\x42\x21\xbd\x7e\x9f\xe8\xa0\x4b\x92\x5d\x59\xc7\xf3\xa4\xe4\xbf\x97\xd5\x9c\x97\x60\xe8\xa7\x5d\xc7\x37\xf3\xde\xbe\x79\xfa\x58\x5b\x27\xf8\xea\xfa\x5a\x6c\x18\x8a\x23\xd3\x50\x2e\xda\x9a\x68\xcf\xbd\xc2\x56\x9c\x36\x65\x82\x46\x97\x86\xa4\x75\xfc\x78\x28\xad\xd3\x52\x1d\x15\x9e\xbf\x1b\xf9\x94\xa0\xa2\xa6\x9a\x57\x3b\xd6\x65\x25\x0a\xcf\xdf\xf4\xeb\xe6\x63\x8c\xbf\x61\x50\x3b\xae\xc9\x71\xe4\x67\xb1\x53\xa0\x56\xaa\xe8\x8b\x75\xce\x76\x7f\xe8\xd0\x72\x82\xad\x58\x47\x25\xc7\x58\x3e\xe6\xb9\x6d\x8d\x0c\x7d\xbe\x71\x38\x83\xb9\x0a\x7c\xce\xb0\xc6\x72\x79\x43\x20\x1e\x32\xdc\x2b\x2c\x7e\xb6\x8d\xa0\x76\xf6\x45\x17\x0c\x7a\x07\x82\x26\xa4\xa3\x0e\x2f\x5e\x02\xa4\x22\x81\x6e\xb0\x4e\xf0\x21\x81\x75\xb8\x5f\x78\xe2\xab\x37\x4e\x9c\xd7\xd5\x87\x0c\x9b\x39\x9d\xc7\xfc\x97\x69\xc7\xd2\x31\x1b\xac\x41\xa6\xc0\x66\xa0\x1b\xcd\xf3\x13\xd7\x69\x9a\xae\x52\x85\xc5\xef\x8a\xb1\xe7\xfe\xec\x2b\x8e\x9e\x65\xc7\x53\x77\x3a\x74\x7b\xb4\x1f\x70\x0a\xc3\x20\x38\xb0\xa0\x6e\x77\x07\x9d\xff\xe0\x1e\x19\x7e\xbd\xdd\x23\x4f\x31\xfd\x51\x7e\xec\xaa\xe0\xdc\x16\xfc\xc4\xaf\x51\x9c\xdc\x76\x5a\x61\x3b\xab\x45\x8e\xc6\xd5\xa9\x1b\xfe\xc7\x77\x61\x10\xc4\x6f\x4a\x68\x5c\x28\x32\x9c\x57\x1b\xd5\xd4\xfb\x14\x8c\x69\x18\x70\x67\xcc\x6a\xcf\x7d\xb3\xa2\xa2\x88\x2e\x44\x4e\xd7\x59\xe0\x9e\x2e\x3f\x2f\x14\x5d\xc1\xe2\xbb\xf7\x48\x8e\x67\x1c\x06\xa7\xf0\xf4\x2f\x00\x00\xff\xff\xc9\x2b\x3a\x56\x00\x03\x00\x00" + +func accountsCreate_new_accountCdcBytes() ([]byte, error) { + return bindataRead( + _accountsCreate_new_accountCdc, + "accounts/create_new_account.cdc", + ) +} + +func accountsCreate_new_accountCdc() (*asset, error) { + bytes, err := accountsCreate_new_accountCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "accounts/create_new_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc4, 0xa7, 0xef, 0xd8, 0x70, 0x83, 0x96, 0xe8, 0xc7, 0xa3, 0x61, 0x1f, 0x72, 0xa9, 0xf8, 0x9f, 0x67, 0x5b, 0xf6, 0xd5, 0xc9, 0x33, 0x6d, 0xd3, 0x89, 0xe5, 0x83, 0x9c, 0xba, 0x78, 0x44, 0x3c}} + return a, nil +} + +var _accountsRevoke_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4e\xc4\x30\x10\x45\x6b\xfb\x14\xa3\x2d\xc0\xdb\xec\x01\x56\xa2\xa0\x5c\x21\x51\x70\x03\xcb\x7c\x92\x91\x57\xe3\xc8\x9e\x84\x18\x94\xbb\xa3\xd8\x20\xa5\xa0\xb3\xe4\xf7\xde\x7c\xcd\x5e\x8a\x0f\xca\x49\x5c\x44\xbd\xc9\x3b\xd6\x2b\xdd\x44\xcf\xf4\x6d\xcd\x94\x31\xf9\x0c\x57\x78\x10\xe4\x2b\xf9\x59\x47\xf7\x86\x25\x45\xbc\xa0\x9e\xe9\xe1\x39\x84\x34\xff\xc2\x86\x3f\xe8\x0e\xa5\x88\x4a\x4f\xd4\x95\x4b\x44\x2d\x97\x01\x7a\x88\xff\xbd\xba\x64\x8e\x60\x6e\xe9\xff\x58\x6b\xcc\x46\xb8\x17\x74\x69\xf2\xc2\xc1\x9d\x5e\x53\xbb\xf6\xc9\x3a\x92\x8e\xa0\x81\x17\x08\xf1\x6e\x10\x56\x2e\x5a\x28\x49\xfb\xd9\x97\xa7\xcc\x5f\xc8\x8f\x85\x7c\x5f\x7d\x6a\x55\x6b\x36\xbb\xfd\x04\x00\x00\xff\xff\x57\x3a\xd3\x8c\x07\x01\x00\x00" + +func accountsRevoke_keyCdcBytes() ([]byte, error) { + return bindataRead( + _accountsRevoke_keyCdc, + "accounts/revoke_key.cdc", + ) +} + +func accountsRevoke_keyCdc() (*asset, error) { + bytes, err := accountsRevoke_keyCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "accounts/revoke_key.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0x7a, 0xb7, 0x28, 0x37, 0xfd, 0xce, 0x77, 0xa9, 0x10, 0xf6, 0xfc, 0xc, 0x62, 0x2c, 0x6c, 0x4d, 0x5b, 0x17, 0xf6, 0xfb, 0xf7, 0x29, 0x5f, 0x34, 0x5d, 0x50, 0xd3, 0x50, 0x8d, 0xd5, 0x15}} + return a, nil +} + +var _dkgAdminForce_stop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xbf\x6a\xc3\x30\x10\xc6\x77\x3f\xc5\x87\x87\xa0\x2c\x7a\x00\xd3\x36\xa4\x4d\x9b\x21\x4b\xa1\xd0\x5d\x95\xcf\x8e\xa8\xac\x33\xe7\x13\x29\x84\xbc\x7b\xb1\x95\x14\x32\xf4\xb6\x3b\xee\xf7\xfd\x09\xc3\xc8\xa2\x78\x8b\x7c\xda\x1d\xf6\xe8\x84\x07\xd4\xd7\xad\xae\x2a\x15\x97\x26\xe7\x35\x70\xc2\xb9\xaa\x00\x20\x92\xa2\xfd\xee\xb7\xed\x10\x52\x83\xd5\xf5\xd7\x2e\x7b\xf9\x18\x85\x46\x27\x64\xa6\xd0\x27\x92\x06\x2e\xeb\xd1\x3c\xb3\x08\x9f\x3e\x5d\xcc\xb4\xc6\x6a\xeb\x3d\xe7\xa4\x6b\x9c\x17\x62\x9e\x89\x62\x67\x6f\xc2\x78\x44\xa1\xed\xa4\x2c\xae\x27\xfb\xb5\xf0\x0f\xf7\x7e\x4f\x66\x0e\xdc\xe0\xee\xf8\x51\x88\x77\xa7\xc7\xf5\x9f\xfa\x3c\x9b\x0d\x46\x97\x82\x37\xf5\x0b\xe7\xd8\x22\xb1\xa2\xc8\x62\xee\x5e\x8c\x85\x3a\x12\x4a\x9e\xea\x02\x5f\x4a\x27\xfa\x21\x9f\x95\xfe\xcb\x6b\x3b\x16\x4f\xaf\xa9\xdd\x1d\xf6\xe6\x06\x5e\xaa\xdf\x00\x00\x00\xff\xff\x8e\x1e\xeb\xa5\x5e\x01\x00\x00" func dkgAdminForce_stop_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -740,11 +800,11 @@ func dkgAdminForce_stop_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/force_stop_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0x53, 0xf9, 0x8d, 0x95, 0x45, 0x15, 0x8e, 0x63, 0x8, 0xf2, 0x6b, 0x8e, 0xd9, 0x78, 0xd1, 0xb5, 0x25, 0x89, 0x30, 0xf7, 0x90, 0x6d, 0xe2, 0x60, 0xed, 0x4d, 0xb9, 0x5d, 0xdc, 0xd, 0x6c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd, 0x7, 0x7c, 0x9c, 0xa1, 0xca, 0xf3, 0xe6, 0x91, 0x69, 0x51, 0x5d, 0xe5, 0x2c, 0xbc, 0x86, 0x32, 0xf5, 0xb5, 0x87, 0xed, 0x11, 0x8e, 0x29, 0xe6, 0x7c, 0x43, 0xc6, 0x29, 0x64, 0x8b, 0x6d}} return a, nil } -var _dkgAdminPublish_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x41\x4b\xc3\x40\x10\x05\xe0\xfb\xfc\x8a\xe7\x45\x5a\x90\xc6\x73\x11\x21\x10\xed\xa1\x17\x31\xfe\x81\x35\xdd\x6e\x86\x6e\x66\x96\xd9\x09\x2a\xd2\xff\x2e\x1a\x05\x3b\xc7\x79\x1f\x8f\xc7\x53\x51\x73\x3c\x66\x7d\xeb\xf6\x3b\x1c\x4d\x27\xdc\xbe\x77\xfb\x5d\xdb\x75\xcf\x0f\x7d\x4f\xd4\x34\x78\x19\xb9\xc2\x2d\x48\x0d\x83\xb3\x0a\xb8\x42\x25\x7f\xe0\xa8\x06\x8f\xd5\x59\xd2\x15\xd1\x7f\xf1\x49\x04\x00\xc5\x62\x09\x16\x57\x95\x93\x44\xdb\xa2\x9d\x7d\x6c\x87\x41\x67\xf1\xf5\x9f\xf9\xbe\x25\xdf\x64\x96\xd3\xdd\xf5\xef\x98\x4d\x7b\x98\x58\xee\x57\x4d\x99\x5f\x33\x0f\xcd\xe1\x94\x7e\x3e\x37\xf0\x60\x29\xfa\x16\x17\xb0\x77\xb5\x90\xe2\x53\xf0\x71\xbd\x14\x9f\x89\xce\x5f\x01\x00\x00\xff\xff\xd0\x9c\x76\xb8\xe0\x00\x00\x00" +var _dkgAdminPublish_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x9e\x3d\x94\x04\x24\xb9\x17\x15\x4a\x45\x0f\x5e\x04\xfd\x03\xd3\xed\x36\x19\xdc\xec\x2e\x33\x13\x44\x4a\xff\xbb\x34\xa9\x12\xc1\xbd\xbd\xe5\x7d\xdf\x1b\x1e\x4a\x16\xc3\x53\xcc\x9f\x8f\x2f\xcf\x38\x4a\x1e\xb0\xba\xa6\x95\x73\x6d\x8b\xf7\x9e\x15\x26\x94\x94\xbc\x71\x4e\x60\x45\x4e\xf1\x0b\xc7\x2c\xb0\xa0\xc6\xa9\xbb\x71\x6e\xd9\x38\x39\x07\x00\x45\x42\x21\x09\x95\x72\x97\x82\x6c\x40\xa3\xf5\xd5\x8e\x0a\xed\x39\xb2\x71\xd0\x1a\xeb\xad\xf7\x79\x4c\x56\xe3\x34\x21\x97\x17\x83\x81\x0e\x03\xa7\x1d\x15\xdc\x63\xa6\x1b\xbf\xe0\x1a\xb5\x2c\xd4\x85\x86\x55\xc7\x70\xb7\xbe\xde\xdb\x6c\x2f\xd4\x43\xf5\x27\xbe\xcd\xd5\x57\xb2\xbe\xfe\x9d\xf8\xcf\x59\xc6\x7d\x64\xed\xab\x9f\xe9\x5b\x90\x6d\xd0\x4e\xdf\xbe\x3d\x7c\x74\x93\x6e\x76\x9c\xdd\xd9\x7d\x07\x00\x00\xff\xff\x7d\x13\x3d\x16\x3a\x01\x00\x00" func dkgAdminPublish_participantCdcBytes() ([]byte, error) { return bindataRead( @@ -760,11 +820,11 @@ func dkgAdminPublish_participantCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/publish_participant.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xec, 0x55, 0xff, 0x37, 0xec, 0x8, 0x49, 0xe7, 0xe0, 0xd, 0xea, 0xad, 0x75, 0x78, 0xe, 0x7e, 0x3e, 0xc5, 0xc4, 0x78, 0x6f, 0xda, 0x66, 0x26, 0x76, 0x96, 0xa0, 0x81, 0xc, 0xc3, 0xe3, 0x1c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x80, 0x1f, 0x80, 0x25, 0x1a, 0x97, 0xdc, 0x4d, 0x5, 0x1a, 0xfe, 0x33, 0x88, 0x86, 0x54, 0x16, 0xe2, 0xc9, 0x2b, 0x7e, 0xaa, 0x72, 0xdf, 0x55, 0x8f, 0x4a, 0x51, 0xd6, 0xe7, 0x59, 0x4e, 0xe}} return a, nil } -var _dkgAdminSet_safe_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xc1\x6a\xb4\x40\x10\x84\xef\x3e\x45\xb3\x87\x1f\xbd\xc8\x7f\x08\x39\x48\x12\x91\x98\xdd\xc3\x5e\x96\x98\x3c\xc0\x64\x2c\x75\x88\xce\x48\x4f\x8b\x42\xd8\x77\x0f\x66\x12\xc3\x42\xb6\x2f\xc3\x14\xc5\x57\x45\x99\x61\x74\x2c\xb4\xef\xdd\x5c\x1e\x0f\xd4\xb0\x1b\xe8\xff\x52\x1e\x0f\x45\x59\x3e\x3f\x55\x55\x14\x09\x2b\xeb\x95\x16\xe3\x6c\x6c\x31\xbf\x74\x0c\xdf\xb9\xbe\x3e\x81\x35\xac\xa8\x16\x19\xbd\xee\xcd\x72\x7b\x93\x27\xf4\x11\x45\x44\x44\x3d\x84\xea\xf7\xb6\xa8\x07\x63\x33\xfa\xf7\x4d\x4f\xbf\xfe\xc1\x31\x32\x46\xc5\x88\xbd\x69\x2d\x38\xa3\x62\x92\xae\xd0\xda\x4d\x56\x36\xca\x7a\x1e\x7d\x93\xfe\xa0\xe8\x9e\x82\x3f\x7d\x73\xcc\x6e\xbe\xbb\x24\x3f\xc4\x6b\xfd\x8c\x2e\xc4\x4a\x1c\xab\x16\x27\x25\x5d\xb2\x51\xd7\xcb\x73\x1a\x95\x35\x3a\xde\x3d\xba\xa9\xaf\xc9\x3a\xa1\x80\xa5\x75\x89\x10\xc8\x68\xc0\xb0\x1a\xbb\x24\x74\x3a\x87\x07\x0b\xf4\x24\xb8\xda\x34\xf5\x90\x4a\x35\xa8\x26\xad\xe1\xfd\x36\xda\xd5\x05\xff\xd6\x7f\x43\xcf\x9f\x01\x00\x00\xff\xff\x08\xd4\x0e\xba\xa9\x01\x00\x00" +var _dkgAdminSet_safe_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x31\x6b\xc3\x30\x10\x85\x77\xff\x8a\xc3\x43\x70\x16\x4f\xa5\x83\x69\x1b\xd2\x96\x74\xe8\x12\x70\xdb\x5d\x95\x9f\x6d\x51\x59\x32\xa7\x13\x0e\x94\xfc\xf7\xe2\xc8\x09\x04\x9a\xdb\xee\xd0\xfb\x9e\xde\x33\xc3\xe8\x59\x68\x67\xfd\xf4\xfa\xfe\x46\x2d\xfb\x81\xf2\x65\xcb\xb3\x4c\x58\xb9\xa0\xb4\x18\xef\x0a\x87\xe9\xa3\x67\x84\xde\xdb\x66\x0f\xd6\x70\xa2\x3a\x54\xf4\xb9\x33\x87\xfb\xbb\xcd\x9a\x7e\xb3\x8c\x88\xc8\x42\xa8\xf9\xe9\xb6\xcd\x60\x5c\x45\xab\x05\x56\x9e\xf6\xf4\x62\x64\x8c\x8a\x51\x04\xd3\x39\x70\x45\x2a\x4a\x5f\x3c\x7b\x66\x3f\x7d\x29\x1b\xb1\xa6\xd5\x56\x6b\x1f\x9d\xcc\x50\x5a\x26\xc0\xb6\xe5\x19\x4c\x8f\x94\xd4\x65\x10\xcf\xaa\x43\xf9\x7d\xd2\x3f\x5c\xfb\x3d\x15\x73\xa2\x8a\xae\x8e\x75\x52\xec\x95\xf4\xeb\x0b\x7d\x9e\xcd\x86\x46\xe5\x8c\x2e\xf2\x17\x1f\x6d\x43\xce\x0b\x25\x2c\xcd\xe5\x24\x63\x46\x0b\x86\xd3\xc8\x93\xf8\x98\x32\xe1\x00\x1d\x05\xb7\xfe\x5b\x06\x48\xad\x5a\xd4\x51\x6b\x84\x70\x29\xf2\x66\xab\xff\xdf\xcf\x96\xc7\xec\x2f\x00\x00\xff\xff\x3c\x47\xb5\xfd\xb9\x01\x00\x00" func dkgAdminSet_safe_thresholdCdcBytes() ([]byte, error) { return bindataRead( @@ -780,11 +840,11 @@ func dkgAdminSet_safe_thresholdCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/set_safe_threshold.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2a, 0xee, 0x21, 0xa5, 0x42, 0x7, 0x30, 0x80, 0x1b, 0x7f, 0x7f, 0x43, 0xfd, 0x0, 0x77, 0xfc, 0x63, 0xc5, 0x5d, 0x9c, 0x14, 0xe5, 0xe8, 0x5b, 0x96, 0x59, 0xd7, 0x95, 0xcc, 0x7a, 0x44, 0x85}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0x67, 0xe6, 0xde, 0x86, 0xdf, 0xcb, 0xd9, 0x80, 0x6d, 0xf1, 0xfc, 0x5, 0xef, 0x4e, 0x31, 0xed, 0x61, 0xe0, 0x8e, 0xfa, 0xbd, 0x3f, 0xae, 0x92, 0x1e, 0x10, 0x99, 0xb1, 0x3d, 0x43, 0xa6}} return a, nil } -var _dkgAdminStart_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x8f\x1e\x24\xb9\x04\xcf\x41\x2d\xc1\xd5\x20\xb9\x88\x39\x8a\x87\x75\x33\x49\x17\x93\x9d\x30\x99\xd0\x82\xf4\xbf\x4b\xdc\xda\xd2\x83\xef\xb2\x3b\xc3\xe3\x9b\x37\xe3\xc7\x89\x45\xf1\x3c\xf0\xde\xd4\x15\x3a\xe1\x11\xb7\x07\x53\x57\xa5\x31\x6f\x4f\x4d\x93\x24\x2a\x36\xcc\xd6\xa9\xe7\x90\x06\x6e\xe9\xc5\xcc\x05\xde\x1b\x15\x1f\xfa\x8f\x0c\xdf\x49\x02\x00\x03\x29\xda\xaf\xbe\x6c\x47\x1f\x0a\xdc\x9c\x78\xf9\x6f\x1d\x1d\x93\xd0\x64\x85\xd2\xd9\xf7\x81\xa4\x40\xb9\xe8\xae\x74\x8e\x97\xa0\x67\xca\xaa\x99\x86\x2e\xff\x43\xe1\x1e\xd1\x9f\x7f\xb2\x08\xef\xef\xae\xc9\x0f\xe9\x1a\xb8\xc0\x55\xb3\x51\x16\xdb\xd3\xab\xd5\x5d\x76\xa6\xae\xda\x6e\x31\xd9\xe0\x5d\xba\x79\xe4\x65\x68\x11\x58\x11\xb1\x58\x77\x8f\x03\x85\x3a\x12\x0a\x8e\x36\x59\xcc\x74\x8c\x0f\x1d\xc8\x2d\x4a\xff\x26\xcd\x67\xb5\xa2\xa6\xae\x2e\x47\x3a\x7d\x2e\x9c\xe3\x4f\x00\x00\x00\xff\xff\x07\x1f\xfa\x84\x6e\x01\x00\x00" +var _dkgAdminStart_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xb1\x6a\xc3\x30\x10\x86\x77\x3f\xc5\x8f\x87\x60\x2f\x7e\x00\xd3\x36\xa4\x35\x0d\x25\x4b\x21\xd0\xa5\x74\x50\xe5\xb3\x23\x6a\xeb\xcc\xe9\x44\x0a\x25\xef\x5e\x1c\x39\x2d\x19\x72\x93\x4e\xe8\xfb\x4e\xf7\xbb\x71\x62\x51\x3c\x0f\x7c\x6c\x76\x5b\x74\xc2\x23\xf2\xa5\xcb\xb3\x4c\xc5\xf8\x60\xac\x3a\xf6\x85\xe7\x96\x5e\x9a\x50\xe3\x7d\xaf\xe2\x7c\xff\x51\xe2\x27\xcb\x00\x60\x20\x45\xfb\xd5\x6f\xda\xd1\xf9\x1a\xab\x05\xaf\xce\x7d\x7a\x31\x09\x4d\x46\xa8\x08\xae\xf7\x24\x35\x4c\xd4\x43\xf1\xc8\x22\x7c\x7c\x33\x43\xa4\x12\xab\x8d\xb5\x1c\xbd\xce\x52\x2c\x15\x68\xe8\xaa\x8b\x18\xf7\x48\x74\x15\x94\xc5\xf4\x54\x7d\x9e\xf9\xbb\xeb\x79\x0f\xc5\xbc\x43\x8d\xab\xcb\x7d\x22\x5e\x8d\x1e\xca\x3f\xfb\x5c\xeb\x35\x26\xe3\x9d\x2d\xf2\x27\x8e\x43\x0b\xcf\x8a\xa4\xc5\x1c\x47\x1a\x2c\xd4\x91\x90\xb7\x94\x27\xf8\x94\x76\xa2\x6f\xb2\x51\xe9\xd6\x7f\xab\xa0\x46\xb4\xd9\x6d\xff\x83\x5b\x0e\x17\xcb\x29\xfb\x0d\x00\x00\xff\xff\x5b\x70\x21\x9a\x7e\x01\x00\x00" func dkgAdminStart_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -800,11 +860,11 @@ func dkgAdminStart_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/start_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0x9c, 0x4f, 0xf1, 0xca, 0x18, 0x35, 0xe8, 0xbf, 0xb3, 0x93, 0x79, 0x1b, 0x85, 0xe7, 0xc5, 0x4b, 0x22, 0x3, 0xa, 0x8a, 0x91, 0x42, 0xf4, 0x2e, 0x24, 0x32, 0x55, 0xba, 0xc8, 0x15, 0x5c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0xad, 0x9e, 0x9d, 0xaa, 0x32, 0xd9, 0x6a, 0x40, 0x16, 0x36, 0x35, 0x82, 0x11, 0xeb, 0x74, 0x9f, 0xfc, 0x95, 0xaa, 0xa7, 0x64, 0x9c, 0xf0, 0xc5, 0x3c, 0x4a, 0xd9, 0xb, 0x1e, 0x18, 0xb7}} return a, nil } -var _dkgAdminStop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x41\x4f\x83\x40\x10\x85\xef\xfc\x8a\x97\x1e\x0c\x5c\x88\x67\xa2\x36\x44\x94\x03\x17\x23\xbf\x60\x5d\x06\xba\x11\x66\xc8\x30\xa4\x4d\x4c\xff\xbb\xc1\xb5\x9a\x1e\xfa\x2e\x9b\x9d\xbc\xf7\xcd\x9b\x30\xcd\xa2\x86\xd7\x51\x8e\x55\x53\xa3\x57\x99\x70\x7f\xaa\x9a\xba\xac\xaa\xf7\x97\xb6\x4d\x12\x53\xc7\x8b\xf3\x16\x84\xf1\x95\x24\x00\x30\x92\xa1\xfb\x1c\xca\x6e\x0a\x5c\xe0\xee\x37\x9c\xff\xfc\xa3\x63\x56\x9a\x9d\x52\xba\x84\x81\x49\x0b\x94\xab\x1d\x4a\xef\x65\x65\xcb\x2e\x94\x4d\x0b\x8d\x7d\x7e\x41\xe1\x11\xd1\x9f\x7f\x88\xaa\x1c\x1f\xae\xc9\x4f\xe9\xd6\xae\xc0\xd5\xb0\x35\x51\x37\xd0\x9b\xb3\x43\xf6\x47\xdd\xb4\xdf\x63\x76\x1c\x7c\xba\x7b\x96\x75\xec\xc0\x62\x88\x58\x6c\x87\xc6\x85\x4a\x3d\x29\xb1\xa7\x5d\x16\x3b\x9d\xe3\x43\x27\xf2\xab\xd1\xcd\xa6\x39\x71\x57\x35\x75\xfa\x9f\x3a\x7f\x07\x00\x00\xff\xff\x74\x8c\xee\x80\x49\x01\x00\x00" +var _dkgAdminStop_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xcd\x6a\xeb\x30\x10\x85\xf7\x7e\x8a\x83\x17\x41\xde\xe8\x01\xcc\xbd\x0d\x69\x43\xb3\xc8\xa6\x50\xe8\x5e\x95\xc7\x8e\xa8\xac\x31\xe3\x11\x29\x84\xbc\x7b\xb1\x95\x14\xb2\xe8\xec\x66\x98\xef\xfc\x84\x71\x62\x51\xbc\x46\x3e\xef\x8f\x07\xf4\xc2\x23\xea\xdb\x56\x57\x95\x8a\x4b\xb3\xf3\x1a\x38\xe1\x52\x55\x00\x10\x49\xd1\x7d\x0d\xbb\x6e\x0c\xa9\xc5\xe6\xf6\x6b\xd7\xbd\x7c\x4c\x42\x93\x13\x32\x73\x18\x12\x49\x0b\x97\xf5\x64\x9e\x59\x84\xcf\x1f\x2e\x66\x6a\xb0\xd9\x79\xcf\x39\x69\x83\xcb\x4a\x2c\x33\x53\xec\xed\x5d\x18\xff\x51\x68\x3b\x2b\x8b\x1b\xc8\x7e\xae\xfc\xbf\x47\xbf\x27\xb3\x04\x6e\xf1\x70\x7c\x2f\xc4\x9b\xd3\x53\xf3\xab\xbe\xcc\x76\x8b\xc9\xa5\xe0\x4d\xfd\xc2\x39\x76\x48\xac\x28\xb2\x58\xba\x17\x63\xa1\x9e\x84\x92\xa7\xba\xc0\xd7\xd2\x89\xbe\xc9\x67\xa5\xbf\xf2\x5a\x4a\xdd\xfe\x78\x30\x77\xe6\x5a\xfd\x04\x00\x00\xff\xff\x87\x3a\x5a\x8e\x59\x01\x00\x00" func dkgAdminStop_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -820,11 +880,11 @@ func dkgAdminStop_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/admin/stop_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0xe4, 0x2, 0xa5, 0xa0, 0x9b, 0xd5, 0xc3, 0xdb, 0x5d, 0x5a, 0xfa, 0xe6, 0x41, 0x85, 0x32, 0x8e, 0xae, 0x4e, 0xd8, 0x6f, 0x1a, 0x37, 0x77, 0x7, 0xb2, 0xce, 0x6, 0x29, 0x48, 0x43, 0x84}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xda, 0x6d, 0xdc, 0x10, 0x3a, 0xa6, 0xb1, 0xad, 0x8f, 0x3, 0x9, 0x74, 0xf9, 0xc6, 0x3e, 0x5a, 0x8e, 0x69, 0xcf, 0x6e, 0x2a, 0xe, 0xed, 0x75, 0x9c, 0xf3, 0x4d, 0x37, 0x62, 0x8f, 0x9e, 0x5f}} return a, nil } -var _dkgCreate_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x50\x4d\x6e\xf2\x30\x10\xdd\xfb\x14\x23\x16\x9f\x1c\x09\xc2\xb7\x8e\x68\x51\x44\x5a\x54\xb1\x41\xcd\x09\x06\x7b\x30\x16\xc1\xb6\x26\x93\xd2\xaa\xe2\xee\x15\x75\xa8\x60\x36\xb6\xfc\xe6\xfd\xf8\xf9\x53\x8a\x2c\xf0\xda\xc5\x73\xb3\x59\xc3\x9e\xe3\x09\xfe\x7f\x36\x9b\x75\xdd\x34\xef\x2f\x6d\xab\x94\x30\x86\x1e\x8d\xf8\x18\x34\x5a\xcb\xd4\xf7\x15\xd4\xf9\x32\x85\x10\x2d\xbd\x35\x15\xb4\xc2\x3e\xb8\x02\xbe\x95\x02\x00\x48\x4c\x09\x99\x74\xef\x5d\x20\xae\xa0\x1e\xe4\x50\x1b\x13\x87\x20\xd7\x1d\x18\xa7\x23\x01\xb4\x27\x1f\xe0\x09\x1c\xc9\xb8\x71\xb3\x29\x4a\x47\xb2\xc2\x84\x3b\xdf\x79\xf9\x5a\xfc\x1b\x53\x96\xf5\x95\xf2\xac\xe7\x69\xd8\x75\xde\xcc\xed\xd1\xfd\xbe\x14\x7f\xba\xd7\x29\x77\x91\x39\x9e\x75\x01\xcb\x25\x24\x0c\xde\xe8\xc9\x2a\x0e\x9d\x85\x10\x05\x32\x38\x9a\x33\xed\x89\x29\x18\x9a\x14\xea\x21\x9b\x3d\xba\x2d\xb2\x78\xe3\x13\x06\x81\xc5\x2c\x13\x4a\xc3\x84\x42\x77\x90\xbe\xf5\x90\xcf\x3b\x99\xdc\x40\xd9\xe3\x07\xe9\xc5\xec\x51\x70\x0a\x12\xab\x5b\xf7\xe5\x1d\xd0\x4a\x64\x74\xb4\x45\x39\xe4\x4f\x5d\x94\xba\xfc\x04\x00\x00\xff\xff\xb5\xd4\x8a\x93\xab\x01\x00\x00" +var _dkgCreate_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\x4f\x8b\x32\x31\x0c\xc6\xef\xfd\x14\x61\x0e\xd2\x01\xad\xf7\xc1\xf7\x15\x59\xd9\x65\xd9\x8b\x20\xec\x3d\xb6\x71\x2c\xd6\xb6\xa4\x19\x3d\x2c\x7e\xf7\x45\x3b\x2e\x9a\x4b\xff\xa4\xcf\x2f\xe9\x13\x7f\xca\x89\x05\xde\x43\xba\xac\xbf\x3e\x60\xcf\xe9\x04\xcd\x78\x6a\x94\x12\xc6\x58\xd0\x8a\x4f\x51\xa3\x73\x4c\xa5\x74\xb0\xaa\x9b\x29\xc4\xe4\xe8\x73\xdd\xc1\x56\xd8\xc7\xbe\x85\x1f\xa5\x00\x00\x32\x53\x46\x26\x5d\x7c\x1f\x89\x3b\xc0\x41\x0e\x7a\x8b\x67\xfa\xc6\x30\x50\x0b\x93\x95\xb5\x69\x88\x72\x13\xc0\x18\x81\x04\xd0\x9d\x7c\x84\x7f\xd0\x93\x8c\x2f\x1e\x35\x5b\x63\x31\xe3\xce\x07\x2f\x9e\x8a\xd9\x25\xe6\x74\x59\x4c\xc6\x3e\xcd\xea\x26\xfc\xaf\xe7\x79\xd8\x05\x6f\xe7\xee\xd8\xdf\x6f\xda\x3f\xfa\x3d\x96\x4b\xc8\x18\xbd\xd5\xcd\x5b\x1a\x82\x83\x98\x04\x2a\x69\xac\xcc\xb4\x27\xa6\x68\xa9\x69\xd5\x4b\x63\xee\xd8\x6f\x90\xc5\x5b\x9f\x31\x0a\x2c\x66\x55\x60\x2c\x13\x0a\x3d\xa5\xf4\xc3\x91\xba\x3e\x61\xaa\x17\xa6\x48\x62\xec\xc9\x14\x3c\x93\x5e\xcc\x5e\xc1\x53\x90\xd4\x3d\x46\x61\x9e\x12\xdb\xaa\xda\xa0\x1c\xea\x9f\xae\x4a\x5d\x7f\x03\x00\x00\xff\xff\x98\xcb\x3b\x89\xba\x01\x00\x00" func dkgCreate_participantCdcBytes() ([]byte, error) { return bindataRead( @@ -840,11 +900,11 @@ func dkgCreate_participantCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/create_participant.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9a, 0xdf, 0xc8, 0x88, 0x15, 0x2e, 0xc9, 0xee, 0xa3, 0xd2, 0xcc, 0x4b, 0xb5, 0xf2, 0x5, 0x2d, 0x92, 0x4f, 0x6e, 0xbd, 0x4b, 0x7c, 0x84, 0x40, 0x4a, 0x9b, 0x5e, 0x9f, 0x15, 0x5, 0x74, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc8, 0xd2, 0xd0, 0x2c, 0xe0, 0x71, 0x8f, 0x21, 0x72, 0xbf, 0x1e, 0x92, 0xa8, 0x50, 0xdd, 0x8b, 0x75, 0xf3, 0x9, 0xba, 0x2d, 0x99, 0x6, 0xd7, 0x5c, 0x10, 0x6f, 0x42, 0xe8, 0xd7, 0x40, 0x67}} return a, nil } -var _dkgScriptsGet_consensus_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x88\x0e\x2e\x29\xca\xcc\x4b\x8f\x55\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x19\xa0\x97\x9e\x5a\xe2\x9c\x9f\x57\x9c\x9a\x57\x5c\x5a\xec\x97\x9f\x92\xea\xe9\x52\xac\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x91\x06\x0b\x94\x67\x00\x00\x00" +var _dkgScriptsGet_consensus_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\xa2\x83\x4b\x8a\x32\xf3\xd2\x63\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xa6\xe8\xa5\xa7\x96\x38\xe7\xe7\x15\xa7\xe6\x15\x97\x16\xfb\xe5\xa7\xa4\x7a\xba\x14\x6b\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x03\x4f\x6a\x43\x6c\x00\x00\x00" func dkgScriptsGet_consensus_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -860,11 +920,11 @@ func dkgScriptsGet_consensus_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_consensus_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x62, 0xae, 0xcb, 0x31, 0x2e, 0x3e, 0x43, 0xd9, 0xec, 0xfd, 0x3f, 0x4, 0x29, 0x3c, 0xfe, 0x36, 0x20, 0xe6, 0x83, 0x77, 0x9b, 0x70, 0x2e, 0xd, 0xb3, 0x56, 0xa7, 0xfc, 0x4a, 0x1e, 0x20, 0xa0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe7, 0x3d, 0x2d, 0xb4, 0x11, 0x55, 0x1c, 0x12, 0x8c, 0xef, 0x55, 0x49, 0x4, 0x87, 0x30, 0xe, 0x30, 0x30, 0x9, 0xbc, 0x2b, 0x37, 0x38, 0xda, 0x84, 0x9d, 0x4e, 0xf2, 0xc0, 0x6b, 0x83, 0xaa}} return a, nil } -var _dkgScriptsGet_dkg_canonical_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x88\x0e\x2e\x29\xca\xcc\x4b\xb7\x8f\xb5\x57\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x19\xa1\x97\x92\x9d\xee\x9c\x9f\x5b\x90\x93\x5a\x92\x9a\xa2\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x17\xf1\xc7\xb8\x62\x00\x00\x00" +var _dkgScriptsGet_dkg_canonical_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\xa2\x83\x4b\x8a\x32\xf3\xd2\xed\x63\xed\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xe6\xe8\xa5\x64\xa7\x3b\xe7\xe7\x16\xe4\xa4\x96\xa4\xa6\x68\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x4a\x98\xa7\xb9\x67\x00\x00\x00" func dkgScriptsGet_dkg_canonical_final_submissionCdcBytes() ([]byte, error) { return bindataRead( @@ -880,11 +940,11 @@ func dkgScriptsGet_dkg_canonical_final_submissionCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_dkg_canonical_final_submission.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc9, 0x35, 0x32, 0x9f, 0x12, 0x28, 0xdf, 0x16, 0x2d, 0x78, 0x9a, 0x80, 0x36, 0xb5, 0x94, 0x18, 0x7f, 0xf, 0x47, 0x10, 0x4, 0x13, 0xdb, 0xe8, 0x78, 0xfd, 0x78, 0x31, 0xa0, 0xb8, 0xf7, 0xf3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x57, 0xf2, 0x83, 0x6, 0xda, 0x92, 0xb2, 0x41, 0x12, 0x21, 0xe4, 0x90, 0x6e, 0x29, 0x13, 0xef, 0x81, 0x0, 0xf0, 0xe9, 0xfd, 0xb9, 0x93, 0x8f, 0x9d, 0xd0, 0x11, 0x19, 0xe6, 0x76, 0x9c}} return a, nil } -var _dkgScriptsGet_dkg_completedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x70\xca\xcf\xcf\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x69\xd6\x4b\xc9\x4e\x77\xce\xcf\x2d\xc8\x49\x2d\x49\x4d\xd1\xd0\x54\x50\xb4\x55\xc8\xcb\xcc\xe1\xaa\x05\x04\x00\x00\xff\xff\x31\xd8\x74\x9a\x63\x00\x00\x00" +var _dkgScriptsGet_dkg_completedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x9c\xf2\xf3\x73\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\x26\xe8\xa5\x64\xa7\x3b\xe7\xe7\x16\xe4\xa4\x96\xa4\xa6\x68\x68\x2a\x28\xda\x2a\xe4\x65\xe6\x70\xd5\x02\x02\x00\x00\xff\xff\x11\x95\xaf\x8f\x68\x00\x00\x00" func dkgScriptsGet_dkg_completedCdcBytes() ([]byte, error) { return bindataRead( @@ -900,11 +960,11 @@ func dkgScriptsGet_dkg_completedCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_dkg_completed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0xec, 0xda, 0x75, 0xa0, 0x1a, 0x21, 0x4d, 0xc6, 0xbf, 0xec, 0xd5, 0x92, 0xde, 0x61, 0xab, 0x5b, 0x90, 0xd1, 0x2f, 0x7c, 0x24, 0x2a, 0xd9, 0x62, 0x7f, 0xda, 0xe9, 0x2c, 0x58, 0x0, 0x2a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x3d, 0xd5, 0x9b, 0xea, 0x53, 0x7d, 0x55, 0xf4, 0xf3, 0x4b, 0x20, 0x1b, 0x34, 0x62, 0x55, 0xf8, 0x5, 0x8c, 0x9a, 0x74, 0x89, 0xae, 0x91, 0x6, 0x82, 0xe4, 0x48, 0xf6, 0x4e, 0x8d, 0xee}} return a, nil } -var _dkgScriptsGet_dkg_enabledCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x70\xca\xcf\xcf\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x69\xd6\x4b\xc9\x4e\x77\xcd\x4b\x4c\xca\x49\x4d\xe1\xaa\x05\x04\x00\x00\xff\xff\xd5\x88\xda\xa0\x58\x00\x00\x00" +var _dkgScriptsGet_dkg_enabledCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x9c\xf2\xf3\x73\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\x26\xe8\xa5\x64\xa7\xbb\xe6\x25\x26\xe5\xa4\xa6\x70\xd5\x02\x02\x00\x00\xff\xff\x55\x28\x2f\xf2\x5d\x00\x00\x00" func dkgScriptsGet_dkg_enabledCdcBytes() ([]byte, error) { return bindataRead( @@ -920,11 +980,11 @@ func dkgScriptsGet_dkg_enabledCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_dkg_enabled.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6a, 0x64, 0x67, 0xbd, 0xba, 0x33, 0xa0, 0x7b, 0x26, 0xfb, 0x77, 0xc2, 0x7e, 0xe3, 0xe3, 0xc1, 0xe7, 0xc8, 0x8c, 0xd0, 0xc, 0x46, 0xaa, 0xbd, 0xb6, 0x2, 0x13, 0x35, 0xab, 0x39, 0x70, 0xd7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x68, 0xfc, 0x94, 0x94, 0xc2, 0x47, 0xe4, 0x85, 0xd6, 0xa7, 0x3e, 0x3d, 0xda, 0x58, 0x72, 0xa9, 0x4e, 0xf0, 0xd3, 0x49, 0xc0, 0x9e, 0x16, 0x91, 0x58, 0x35, 0xa, 0xb6, 0x16, 0x38, 0x76, 0x3c}} return a, nil } -var _dkgScriptsGet_final_submissionsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x88\x8e\x0e\x2e\x29\xca\xcc\x4b\xb7\x8f\x8d\x55\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x99\xa1\x97\x9e\x5a\xe2\x96\x99\x97\x98\x13\x5c\x9a\x94\x9b\x59\x5c\x9c\x99\x9f\x57\xac\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x14\xc3\x7a\x4d\x6a\x00\x00\x00" +var _dkgScriptsGet_final_submissionsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\xa2\xa3\x83\x4b\x8a\x32\xf3\xd2\xed\x63\x63\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\x06\xe9\xa5\xa7\x96\xb8\x65\xe6\x25\xe6\x04\x97\x26\xe5\x66\x16\x17\x67\xe6\xe7\x15\x6b\x68\x72\xd5\x02\x02\x00\x00\xff\xff\xdf\x0a\xe3\xa8\x6f\x00\x00\x00" func dkgScriptsGet_final_submissionsCdcBytes() ([]byte, error) { return bindataRead( @@ -940,11 +1000,11 @@ func dkgScriptsGet_final_submissionsCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_final_submissions.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbe, 0x89, 0x9, 0x33, 0x3b, 0xc1, 0x3b, 0x39, 0x4f, 0xb2, 0x40, 0x27, 0xdb, 0x2c, 0x5c, 0xc7, 0xc3, 0x33, 0x89, 0x27, 0x45, 0x95, 0x12, 0xea, 0x92, 0xa7, 0x71, 0x9b, 0xed, 0x4f, 0xb3, 0x22}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xee, 0xfe, 0xb9, 0x5, 0x6d, 0x2e, 0x29, 0xa0, 0x6e, 0x49, 0x94, 0x63, 0x61, 0xb4, 0xe8, 0x3, 0x6a, 0x1a, 0xa2, 0xc1, 0xd8, 0x3b, 0x19, 0x42, 0x60, 0x55, 0xeb, 0x52, 0x69, 0x6f, 0x7, 0x63}} return a, nil } -var _dkgScriptsGet_latest_whiteboard_messagesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x4f\x4b\xc3\x40\x10\xc5\xef\xf9\x14\xef\x98\x20\x04\xbd\x16\x73\x50\xa2\xa5\x14\x2f\xf6\xe0\x21\xe4\xb0\x92\x69\x32\xb0\xff\xd8\x9d\xd8\x82\xf4\xbb\x4b\xd7\x64\x41\xe9\x65\x0e\x6f\xde\x9f\x1f\x1b\xef\x82\xe0\x55\xbb\x53\xbb\xdf\xe2\x18\x9c\xc1\xfd\xb9\xdd\x6f\x9f\xda\xf6\xfd\xe5\x70\x28\x0a\x3f\x7f\xe2\x38\x5b\x18\xc5\xb6\xbc\xfe\x77\x76\xa0\xf3\x06\x3b\x2b\xd5\x06\xdd\x92\xac\xdf\x28\x46\x35\x52\x8f\xef\x02\x00\x34\x09\xcc\xaf\x14\xd1\xac\xfd\xf5\x48\xf2\x31\xb1\xd0\xb3\x53\x61\x58\x22\xb1\xac\x52\xe4\x4b\x05\x68\x25\x14\x65\x7d\xdc\xaa\x6f\xd0\xf5\xd9\xce\x68\x90\x91\x92\x7a\x9a\x58\x13\x18\x8f\x79\xbd\xd6\x64\x47\x99\x16\xae\xc4\xf6\x67\xa4\x56\xde\x93\x1d\xca\xd5\xdf\x71\x5f\x65\xeb\x75\x80\x71\x87\x87\xa4\x5c\xd2\x0d\x24\x73\xb0\xff\x5a\x8a\xcb\x4f\x00\x00\x00\xff\xff\x17\x59\xd4\x87\x4a\x01\x00\x00" +var _dkgScriptsGet_latest_whiteboard_messagesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x4f\x4b\xc3\x40\x14\xc4\xef\xf9\x14\x43\x4f\x09\xc2\x82\xd7\x62\x2e\x22\x4a\x11\xcf\x1e\x42\x0e\x8f\xe6\x35\x79\xb0\x7f\xc2\xee\xab\x15\xa4\xdf\x5d\xba\x6e\x16\x14\x2f\x0b\x3b\x6f\x66\x7e\x23\x6e\x0d\x51\xf1\x6c\xc3\xe5\xe9\xf5\x05\xa7\x18\x1c\x76\xe5\xb7\x6b\x1a\x3a\x1e\x39\xa5\x96\xac\xed\x70\x3a\x7b\x38\x12\xdf\xde\x4c\x07\x3f\xf1\xe7\x1e\x07\xaf\xdd\x1e\x43\x09\x98\x37\x4e\x89\x66\x1e\xf1\xd5\x00\x80\x65\x85\xfb\x91\x12\xfa\x0d\x62\x66\xd6\xf7\x45\x94\x1f\x03\xc5\xa9\x44\x52\xdb\xe5\xc8\x07\x45\x58\x52\x4e\xba\x1d\xfe\xab\xef\x31\x8c\xd5\x2e\xe8\x51\x27\x65\xf5\xb2\x88\x65\x08\x1e\x2a\xdd\x58\xf6\xb3\x2e\x65\x57\xde\xf6\x0b\x62\x68\x5d\xd9\x4f\xed\xe6\x1f\x64\xec\xaa\xf5\x06\x10\xdc\xe1\x3e\x2b\xd7\xfc\x46\xd6\x73\xf4\x7f\x5a\x9a\xeb\x77\x00\x00\x00\xff\xff\xc3\xba\x75\xf6\x4f\x01\x00\x00" func dkgScriptsGet_latest_whiteboard_messagesCdcBytes() ([]byte, error) { return bindataRead( @@ -960,11 +1020,11 @@ func dkgScriptsGet_latest_whiteboard_messagesCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_latest_whiteboard_messages.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcd, 0xfd, 0xac, 0xf8, 0x77, 0x23, 0x77, 0x3c, 0xe7, 0xfc, 0x17, 0x46, 0xbb, 0x23, 0xc2, 0x7c, 0x50, 0x71, 0x82, 0xc6, 0x9a, 0xf6, 0x8f, 0xd4, 0x1b, 0xa4, 0xb0, 0x72, 0xd4, 0x4, 0x5b, 0x91}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x55, 0x96, 0xf2, 0x4, 0x13, 0x63, 0xa6, 0xbb, 0x97, 0x4b, 0xe2, 0x69, 0xfe, 0x46, 0xd0, 0xe0, 0xbd, 0x99, 0xf0, 0x9c, 0x62, 0xfc, 0x72, 0x85, 0x97, 0x67, 0xff, 0x8b, 0xf9, 0xc1, 0xfa}} return a, nil } -var _dkgScriptsGet_node_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xc8\xcb\x4f\x49\xf5\x74\xb1\x52\x08\x2e\x29\xca\xcc\x4b\xd7\xb4\x52\x88\x86\xb0\xec\x63\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xe6\xe9\xa5\xa7\x96\xf8\xe5\xa7\xa4\xba\x65\xe6\x25\xe6\x04\x97\x26\xe5\x66\x16\x17\x67\xe6\xc3\x8c\xd1\x54\xe4\xaa\x05\x04\x00\x00\xff\xff\xff\x70\xba\x8e\x80\x00\x00\x00" +var _dkgScriptsGet_node_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\xf2\xf2\x53\x52\x3d\x5d\xac\x14\x82\x4b\x8a\x32\xf3\xd2\x35\xad\x14\xa2\x21\x2c\xfb\x58\x85\x6a\x2e\x05\x05\x05\x85\xa2\xd4\x92\xd2\xa2\x3c\x98\xa1\x7a\xe9\xa9\x25\x7e\xf9\x29\xa9\x6e\x99\x79\x89\x39\xc1\xa5\x49\xb9\x99\xc5\xc5\x99\xf9\x30\x63\x34\x15\xb9\x6a\x01\x01\x00\x00\xff\xff\x26\x0a\xc4\x4b\x85\x00\x00\x00" func dkgScriptsGet_node_final_submissionCdcBytes() ([]byte, error) { return bindataRead( @@ -980,11 +1040,11 @@ func dkgScriptsGet_node_final_submissionCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_node_final_submission.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0xb1, 0x7c, 0xd0, 0x2e, 0x49, 0x35, 0xa7, 0xed, 0x4b, 0xdc, 0x7e, 0xcb, 0x6f, 0x6a, 0x43, 0xdc, 0x68, 0xba, 0x2c, 0xb8, 0xca, 0x43, 0xaf, 0xd9, 0x1a, 0xb9, 0x29, 0x1f, 0x89, 0x15, 0xd0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0x5c, 0x55, 0x20, 0xed, 0x65, 0x8c, 0x26, 0x11, 0xb8, 0x8f, 0xf3, 0x5d, 0x8f, 0x70, 0x73, 0x12, 0x8e, 0xb2, 0xf3, 0xf7, 0x40, 0x45, 0x6e, 0xf1, 0x7d, 0xb5, 0x91, 0x60, 0xae, 0x86, 0x8a}} return a, nil } -var _dkgScriptsGet_node_has_submittedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xc8\xcb\x4f\x49\xf5\x74\xb1\x52\x08\x2e\x29\xca\xcc\x4b\xd7\xb4\x52\x70\xca\xcf\xcf\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x19\xa5\x07\x52\xea\x91\x58\x1c\x5c\x9a\x94\x9b\x59\x52\x92\x9a\x02\xd5\xab\xc9\x55\x0b\x08\x00\x00\xff\xff\xaa\x5c\x49\x68\x74\x00\x00\x00" +var _dkgScriptsGet_node_has_submittedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\xf2\xf2\x53\x52\x3d\x5d\xac\x14\x82\x4b\x8a\x32\xf3\xd2\x35\xad\x14\x9c\xf2\xf3\x73\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xe6\xe9\x81\x94\x7a\x24\x16\x07\x97\x26\xe5\x66\x96\x94\xa4\xa6\x40\xf5\x6a\x72\xd5\x02\x02\x00\x00\xff\xff\x85\x3a\x25\x9d\x79\x00\x00\x00" func dkgScriptsGet_node_has_submittedCdcBytes() ([]byte, error) { return bindataRead( @@ -1000,11 +1060,11 @@ func dkgScriptsGet_node_has_submittedCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_node_has_submitted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdb, 0xc0, 0xa0, 0x6e, 0x6c, 0x52, 0x38, 0xeb, 0xc0, 0xf7, 0x84, 0x1f, 0x63, 0x61, 0x5f, 0x3, 0x16, 0xdd, 0x5e, 0x77, 0x5f, 0x9a, 0x30, 0x88, 0x8, 0x1a, 0xd2, 0x50, 0x23, 0xb4, 0xf, 0xbe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x53, 0xcd, 0x46, 0x4c, 0xce, 0x40, 0xef, 0x90, 0xf4, 0xd1, 0xe6, 0x7a, 0x2d, 0x67, 0xb9, 0x57, 0xc4, 0xcd, 0xf5, 0xd, 0x39, 0xb5, 0x3d, 0xda, 0x2f, 0xc0, 0x9, 0xda, 0x68, 0x71, 0x0, 0x95}} return a, nil } -var _dkgScriptsGet_node_is_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xcc\xbf\xea\xc2\x30\x14\xc5\xf1\x3d\x4f\x71\xba\xfd\xba\xfc\x70\x2e\x38\xa8\xd1\x52\xba\xd9\x27\x88\x36\x91\x0b\xc9\x4d\xb8\x4d\x50\x90\xbe\xbb\xf8\xa7\x93\x8b\x67\x3e\x9f\x2f\x85\x14\x25\xe3\xe0\xe3\x55\xf7\x2d\x9c\xc4\x80\xd5\x4d\xf7\xed\x46\xeb\xe3\x7e\x18\x94\x4a\xe5\x04\x57\x18\xc1\x10\xff\x71\x1c\x6d\xa7\x1b\x0c\x59\x88\x2f\x75\x83\x6d\x8c\x1e\x77\x05\x00\xe4\x96\xcc\x7f\x32\x92\xe9\x4c\xc9\x70\xee\xa6\x9d\x37\x14\xec\xf8\xb1\x35\xaa\x35\x98\x16\xf4\x9c\xd8\x5c\x84\x7f\xc2\xd5\x0b\xcd\xb0\x7e\xb2\xdf\x05\x67\xfc\x64\xdf\x0f\x35\x3f\x02\x00\x00\xff\xff\x2a\xaf\x9b\x4a\xda\x00\x00\x00" +var _dkgScriptsGet_node_is_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xcc\x31\xaa\xc2\x40\x10\xc6\xf1\x7e\x4f\xf1\x25\x55\xd2\xbc\x03\x04\x5e\xa3\x41\x09\x96\x9e\x60\x48\x66\x65\x60\x76\x36\xec\x6e\xb0\x90\xdc\x5d\xd4\xa4\xb2\x71\xba\x81\xef\xf7\x97\x30\xc7\x54\x70\xd2\x78\xef\x2f\x67\xf8\x14\x03\xea\xed\xab\x9d\xa3\x71\xe4\x9c\x1b\x52\x6d\xe1\x17\x43\x20\xb1\xc6\xe2\xc4\x43\xdf\xe1\x5a\x92\xd8\xad\xed\x70\x88\x51\xf1\x70\x00\x20\x7e\x6f\xfd\xcd\x94\x8a\x8c\x32\x93\x95\x21\x1f\x95\x24\xf0\xb4\xd9\x16\xd5\x3f\x4c\x76\xf4\xba\xc4\x65\x49\xf6\x13\xae\xde\x68\x05\x6b\xe6\xef\x82\x27\xcd\xfc\x59\xb8\xf5\x19\x00\x00\xff\xff\xad\xe0\xc3\x42\xdf\x00\x00\x00" func dkgScriptsGet_node_is_claimedCdcBytes() ([]byte, error) { return bindataRead( @@ -1020,11 +1080,11 @@ func dkgScriptsGet_node_is_claimedCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_node_is_claimed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa3, 0x1a, 0xe4, 0xdb, 0x6, 0xd1, 0x35, 0x6c, 0x35, 0x4b, 0xe3, 0xc7, 0x91, 0xfe, 0x2a, 0xa8, 0x37, 0x87, 0x70, 0xf3, 0x65, 0xe8, 0x6b, 0x9f, 0x81, 0x60, 0xed, 0xc4, 0x79, 0x2e, 0x36, 0x43}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0x3d, 0x29, 0x69, 0x3d, 0x84, 0x68, 0x8e, 0xa8, 0x92, 0xb8, 0x48, 0x92, 0xfe, 0x2a, 0x93, 0xa2, 0x96, 0x40, 0x52, 0xb, 0x8d, 0x15, 0x2d, 0x84, 0x22, 0x1c, 0x17, 0x15, 0x31, 0xba, 0xd1}} return a, nil } -var _dkgScriptsGet_node_is_registeredCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xb1\x0e\x82\x30\x10\x06\xe0\xbd\x4f\xf1\x8f\xb2\x18\x67\x36\x4d\x95\x10\x36\x78\x82\x2a\x07\xb9\x84\xde\x35\xc7\x35\x9a\x18\xdf\xdd\x45\x5f\xe0\xe3\x5c\xd4\x1c\xb7\x4d\x9f\x71\xe8\xb0\x98\x66\x9c\x5e\x71\xe8\xce\x31\x8e\xd7\x69\x0a\xa1\xd4\x3b\x96\x2a\xc8\x89\xe5\x20\x3a\x53\x1f\x5b\x4c\x6e\x2c\x6b\xd3\xe2\xa2\xba\xe1\x1d\x00\xc0\xc8\xab\xc9\x9f\x3a\x96\x64\xce\x0f\x2e\x49\xbc\xdf\x47\x5a\x79\x77\x32\x9a\x7f\x44\x13\x3e\xdf\x00\x00\x00\xff\xff\x0e\xf5\x2c\x2b\x7b\x00\x00\x00" +var _dkgScriptsGet_node_is_registeredCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\x31\x0e\xc2\x30\x0c\x05\xd0\x3d\xa7\xf8\xea\xd4\x2c\x1c\xa0\x23\xaa\x40\x15\x1b\x9c\x20\x4a\xdd\xca\x52\x62\x47\x8e\x2b\x06\xc4\xdd\x59\xca\xf8\x96\xc7\xb5\xa9\x39\x6e\x45\xdf\xf3\xe3\x8e\xcd\xb4\x62\x38\x35\x84\x90\x72\xa6\xde\xc7\x54\x4a\xc4\x76\x08\x6a\x62\x19\x45\x57\x5a\xe6\x09\x2f\x37\x96\x3d\x4e\xb8\xaa\x16\x7c\x02\x00\x18\xf9\x61\xf2\xff\x2e\x2d\x99\x73\xe6\x96\xc4\x97\xfe\xa4\x9d\xbb\x93\xd1\x7a\x16\x31\x7c\x7f\x01\x00\x00\xff\xff\xe5\x2c\x0e\x21\x80\x00\x00\x00" func dkgScriptsGet_node_is_registeredCdcBytes() ([]byte, error) { return bindataRead( @@ -1040,11 +1100,11 @@ func dkgScriptsGet_node_is_registeredCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_node_is_registered.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xad, 0xbc, 0xa5, 0x94, 0xca, 0x89, 0x42, 0xfc, 0xbd, 0x28, 0x1d, 0x72, 0xd4, 0x0, 0x1d, 0xf2, 0xeb, 0xd3, 0x6a, 0x1, 0x26, 0xf1, 0xb5, 0x35, 0x15, 0x12, 0x7a, 0xfa, 0xdf, 0x6, 0x62, 0x4a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0xa4, 0xcf, 0x88, 0xda, 0x35, 0xe9, 0xac, 0xe7, 0x73, 0x15, 0xf6, 0xf9, 0x64, 0xcd, 0x8e, 0x5c, 0x6f, 0xa0, 0x50, 0x9a, 0xbe, 0x2, 0x44, 0x72, 0x74, 0x82, 0xf9, 0x15, 0x37, 0x4b, 0x4d}} return a, nil } -var _dkgScriptsGet_submissions_countCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xc1\x0a\x82\x40\x10\x06\xe0\xfb\x3c\xc5\x7f\xd4\x4b\x74\x88\x0e\xde\xa2\x4d\x11\x6f\x2d\x3d\x80\x82\xc6\x80\x3b\x23\xeb\x0c\x05\xb2\xef\xde\xa9\x17\xf8\x38\x6d\x9a\x0d\xed\xaa\x9f\x30\x74\x58\xb2\x26\x9c\xbf\x61\xe8\x6e\x21\x3c\x1f\x31\x12\x6d\x3e\x61\x71\x41\x1a\x59\xaa\xba\x01\x8e\x5e\xac\xc1\xab\x17\xbb\x5e\x0a\x0e\x02\x80\x3c\x9b\x67\xf9\x33\xa7\xf7\x6c\x2d\xcb\xb8\x46\x9f\x12\xef\x3b\xab\xdc\xd5\xc5\xaa\x9a\x0a\xfd\x02\x00\x00\xff\xff\xe5\xd7\x26\xa5\x72\x00\x00\x00" +var _dkgScriptsGet_submissions_countCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xb1\x0a\x82\x70\x10\x06\xf0\xfd\x9e\xe2\xc3\x49\x97\xa6\x68\x70\x2d\x0c\x69\x8c\x1e\x40\x41\xe3\xc0\xff\x77\x72\xde\xd1\x20\xbe\x7b\x4b\x8d\xbf\xe5\xa7\x65\x35\x0f\x74\x8b\x7d\x6e\x8f\x3b\x66\xb7\x82\xea\xa7\x4a\x64\xcd\x11\x73\x12\x65\x50\xd6\x4d\x0b\xec\x3d\xa3\xc5\xab\x67\x5c\xce\x07\x76\x01\x00\x9f\x22\x9d\xff\xe3\xf4\x9e\xa2\x53\x0e\xcb\x33\xc7\xa2\xdb\xa6\xc6\xab\x25\xa3\x6e\xe4\x90\x6f\x00\x00\x00\xff\xff\x09\xb5\xb1\xae\x6f\x00\x00\x00" func dkgScriptsGet_submissions_countCdcBytes() ([]byte, error) { return bindataRead( @@ -1060,11 +1120,11 @@ func dkgScriptsGet_submissions_countCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_submissions_count.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc2, 0x62, 0x13, 0x4c, 0x53, 0x43, 0x18, 0xf7, 0xc7, 0xa8, 0x39, 0x4a, 0x6c, 0x6, 0x96, 0x10, 0xa8, 0x3c, 0x70, 0xe5, 0xaa, 0x27, 0x86, 0x32, 0x10, 0x17, 0x58, 0x9d, 0x83, 0x72, 0x85, 0x6e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0x77, 0xc4, 0x99, 0x13, 0xc6, 0xc8, 0x2b, 0x1e, 0xfe, 0xa5, 0x3a, 0x39, 0x80, 0x42, 0x1e, 0x35, 0x84, 0xa1, 0xa6, 0x33, 0x61, 0x61, 0x91, 0x52, 0xf2, 0x8d, 0xb2, 0x36, 0x4d, 0x5d, 0x9e}} return a, nil } -var _dkgScriptsGet_thresholdsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xc1\x4a\x03\x31\x18\x84\xef\x79\x8a\x39\x26\x97\x65\x0f\xa5\x87\x82\x14\x61\x6d\x91\x82\x88\xab\x0f\x10\xd7\x3f\x6d\x20\x9b\x94\xe4\x8f\x16\x64\xdf\x5d\xb2\xd5\xd6\x65\x11\xcc\xf1\x9f\xf9\x32\xc3\xd8\xfe\x18\x22\x63\xe3\xc2\x47\xb3\xdb\xc2\xc4\xd0\xa3\x3e\x35\xbb\xed\x6d\xd3\x3c\xdd\xb5\xad\x10\xc7\xfc\x8a\xc4\x31\x77\x8c\xe7\x43\xa4\x74\x08\xee\x2d\xe1\x53\x00\x40\xd1\x1c\x31\xbc\x66\xfb\x4e\x2b\xbc\xdc\x7b\x5e\x2e\x26\x52\xd2\xe6\x6f\xe1\x91\x62\x47\x9e\xf5\xbe\x58\x36\xf6\xb4\x5c\x88\xd1\x63\xbd\x65\xa9\xbe\x43\xca\x4b\xe4\x4c\x75\x4e\xc1\xcd\x4f\xdb\x6a\x4f\xfc\x30\xde\xda\xdc\x75\x94\xd2\xa5\x9f\x54\x53\xb2\x64\x4d\xb9\x56\x9b\x7f\x51\xd7\x86\x73\xfe\x02\x5e\x4d\x52\x61\xbd\x46\x5d\xd5\xe3\x4f\x83\x18\xce\xfb\x99\xec\xd1\x6b\xeb\xa5\x5a\xcd\x47\x8c\xc4\x39\xfa\x5f\x77\xa9\xc4\xf0\x15\x00\x00\xff\xff\x03\x93\xd8\xc7\x98\x01\x00\x00" +var _dkgScriptsGet_thresholdsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcf\x4a\x03\x31\x10\xc6\xef\x79\x8a\x8f\x9e\x92\xcb\xd2\x43\xe9\xa1\x20\xbd\x48\x45\x04\x11\xaa\x0f\x10\xe2\xa4\x0d\x64\x13\x49\x26\x2a\xc8\xbe\xbb\x6c\xac\xfb\x87\x15\x6c\x6e\x19\x7e\xbf\xf9\x66\xc6\xb5\x6f\x31\x31\x0e\x3e\x7e\xdc\x3e\xdc\xc1\xa6\xd8\x62\x75\xf9\xad\x84\xd0\xc6\x50\xce\x52\x7b\xaf\x90\x39\x15\xc3\x78\x3e\x27\xca\xe7\xe8\x5f\x33\xbe\x04\x00\x4c\x19\x4f\x8c\xa0\xd9\xbd\xd3\x0e\x2f\xf7\x81\xb7\x9b\x3f\x91\xac\xed\xff\xc0\x13\x25\x43\x81\xf5\xa9\x47\x0f\xee\x73\xbb\x11\x95\x75\xc1\xb1\x54\x97\xf0\xfe\x65\xf2\xb6\xf9\x49\xc5\xcd\xef\x2a\xcd\x89\xf8\xb1\xd6\x8e\xa5\x36\x1f\xe6\x96\x6a\x6e\xf6\x59\x73\xef\xa8\xed\x55\xd6\x38\xe1\xd2\x1f\xc4\x11\x92\x0a\xfb\x3d\xd6\xcd\xba\x76\xea\x44\x37\xbf\xaf\x2d\x01\xad\x76\x41\xaa\xdd\xf2\xc8\x89\xb8\xa4\x30\xa9\x4b\x25\xba\xef\x00\x00\x00\xff\xff\xb3\xea\x59\x20\xbd\x01\x00\x00" func dkgScriptsGet_thresholdsCdcBytes() ([]byte, error) { return bindataRead( @@ -1080,11 +1140,11 @@ func dkgScriptsGet_thresholdsCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_thresholds.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9f, 0x6, 0xd, 0xd4, 0x37, 0x50, 0xa5, 0x7, 0x78, 0xd8, 0x8d, 0x8f, 0x5d, 0x24, 0x7e, 0xb7, 0xab, 0x79, 0x29, 0x97, 0x3f, 0xf5, 0x8b, 0x75, 0x32, 0xf7, 0xa4, 0xaf, 0x24, 0x18, 0xd4, 0x8f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x22, 0xd8, 0x8, 0xe9, 0xf9, 0x79, 0xd1, 0x2c, 0xce, 0xe5, 0x62, 0x4d, 0x9f, 0xd2, 0x6, 0xdf, 0x1d, 0x2d, 0x17, 0xa7, 0x40, 0x6d, 0x40, 0x6, 0xa2, 0x7a, 0x0, 0xbd, 0x7c, 0xf2, 0x89}} return a, nil } -var _dkgScriptsGet_whiteboard_messagesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf1\x76\x77\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x88\x86\xaa\xd5\xf3\x4d\x2d\x2e\x4e\x4c\x4f\x8d\x55\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x83\x99\xa4\x97\x9e\x5a\x12\x9e\x91\x59\x92\xea\x94\x9f\x58\x94\x02\x55\x5a\xac\xa1\xa9\xc0\x55\x0b\x08\x00\x00\xff\xff\x3f\x6c\x37\x78\x73\x00\x00\x00" +var _dkgScriptsGet_whiteboard_messagesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xf1\x76\x57\x48\x2b\xca\xcf\x55\x50\x82\xf2\x94\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\xa2\xa1\x4a\xf4\x7c\x53\x8b\x8b\x13\xd3\x53\x63\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x60\xc6\xe9\xa5\xa7\x96\x84\x67\x64\x96\xa4\x3a\xe5\x27\x16\xa5\x40\x95\x16\x6b\x68\x2a\x70\xd5\x02\x02\x00\x00\xff\xff\x68\x14\x95\x1b\x78\x00\x00\x00" func dkgScriptsGet_whiteboard_messagesCdcBytes() ([]byte, error) { return bindataRead( @@ -1100,11 +1160,11 @@ func dkgScriptsGet_whiteboard_messagesCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/scripts/get_whiteboard_messages.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb3, 0xd, 0x56, 0xa1, 0x9c, 0xba, 0x39, 0x42, 0xbd, 0xc, 0x6f, 0xdb, 0x33, 0xd0, 0x81, 0xc7, 0xf4, 0xd5, 0x31, 0x3f, 0xca, 0xa0, 0x49, 0xb7, 0x7e, 0x22, 0xeb, 0xb7, 0xfe, 0x63, 0x68, 0xe0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0xd3, 0xb2, 0xb6, 0xfe, 0x25, 0x93, 0xf1, 0x4f, 0x70, 0x8a, 0x81, 0xe6, 0x35, 0x7e, 0xb7, 0x82, 0xca, 0x41, 0xba, 0xe7, 0xc5, 0x37, 0x28, 0x1d, 0xf3, 0xb4, 0xe, 0x87, 0x1b, 0xdb, 0xf9}} return a, nil } -var _dkgSend_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xb1\x6a\xf3\x40\x10\x84\x7b\x3d\xc5\xe2\xe2\x47\x6a\xc4\x5f\x8b\x24\x42\x44\xb1\x0b\x37\x26\x2a\x43\x8a\xf3\x79\x25\x2f\x91\x76\x8f\xbd\x15\x36\x04\xbf\x7b\x10\xb2\x8d\x02\xce\x94\x77\x37\xdf\xdc\x0c\x0d\x41\xd4\x60\xdd\xcb\xa9\xde\x6e\xa0\x55\x19\xe0\xff\xb9\xde\x6e\xaa\xba\x7e\x7f\x6b\x9a\x24\x31\x75\x1c\x9d\x37\x12\x4e\xe3\xb8\x1f\x28\x46\x12\x2e\xe0\xa3\x31\x25\xee\xca\xcf\x0c\xbe\x93\x04\x00\xa0\x47\x83\xc3\x57\xb7\x73\x6a\xe4\x29\x38\xb6\x02\xfe\x5d\xc9\xf9\xe2\x74\x7e\x1d\x14\x83\x53\x4c\x23\x75\x8c\x5a\x40\x35\xda\xb1\xf2\x5e\x46\xb6\x89\x08\x57\x45\xec\xdb\xfc\x37\x15\x9e\x61\x36\xe5\x7b\x51\x95\xd3\xd3\xa3\x90\x97\x74\xea\x52\xc0\x83\xab\xc6\x44\x5d\x87\x3b\x67\xc7\xec\x9e\x33\xa9\x2c\x21\x38\x26\x9f\xae\x5e\x1d\xb3\x18\xcc\xfc\xa9\x14\x84\x45\xbe\x62\x8b\x8a\xec\x71\x35\xfb\x2f\x73\x23\x3c\xa3\x1f\x0d\x6f\x73\xfc\xf1\xfb\x3c\x22\x1f\xd6\xc4\xae\x6f\xee\x6b\x2e\x86\xcd\x92\x1b\xf2\xf2\x13\x00\x00\xff\xff\x38\x14\x9d\x91\x9c\x01\x00\x00" +var _dkgSend_final_submissionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xbd\x6a\xc3\x40\x0c\xc7\x77\x3f\x85\xf0\x10\xec\xc5\x0f\x60\xda\x9a\x7e\x90\x0e\x5d\x02\x86\x2e\xa5\x83\x72\x91\x9d\xa3\xb6\x74\xe8\x64\x52\x28\x79\xf7\xe2\x9e\x1b\x5c\x08\xd5\x76\x1f\xfa\xfd\xf5\x93\x1f\x83\xa8\xc1\x76\x90\xd3\xd3\xcb\x33\x74\x2a\x23\xe4\xcb\x29\xcf\x32\x53\xe4\x88\xce\xbc\x70\x11\xa7\xfd\xe8\x63\xf4\xc2\x35\xbc\xb5\xa6\x9e\xfb\xe6\xbd\x84\xaf\x2c\x03\x00\x18\xc8\xe0\xf0\xd1\xef\x50\xcd\x3b\x1f\x90\xad\x86\xcd\x02\xaa\x56\xb7\xe9\x77\x50\x0a\xa8\x54\x44\xdf\x33\x69\x0d\x38\xd9\xb1\x78\x10\x55\x39\xbd\xe2\x30\x51\x09\x9b\x7b\xe7\x64\x62\x9b\x03\x60\xa9\x48\x43\x57\xfd\x0d\x81\x5b\x48\x8c\x2a\x9a\x28\xf6\x54\xed\x7f\x28\x37\xd7\xb2\xef\x8a\xd9\xaf\x86\x2b\x4f\x6d\xea\xde\xa1\x1d\xcb\x4b\xde\x5c\x4d\x03\x01\xd9\xbb\x22\x7f\x44\x66\x31\x48\xfc\xd9\x15\xc2\x6a\x0e\xa5\x8e\x94\xd8\x51\x9e\xfa\xcf\x49\x94\x3e\xc9\x4d\x46\xff\x4b\x54\x91\xf8\xb0\xf5\x8c\x43\x7b\xd9\xf1\x6a\xdd\xbf\xc0\xf3\x77\x00\x00\x00\xff\xff\x55\xc6\xf9\x32\xad\x01\x00\x00" func dkgSend_final_submissionCdcBytes() ([]byte, error) { return bindataRead( @@ -1120,11 +1180,11 @@ func dkgSend_final_submissionCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/send_final_submission.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0xa1, 0xeb, 0xb8, 0x94, 0x6e, 0xb, 0x8d, 0x4f, 0xbe, 0xf4, 0xe4, 0x73, 0x98, 0xc9, 0x5b, 0x27, 0x91, 0x33, 0xac, 0x1a, 0xe, 0x48, 0xe7, 0x33, 0x1, 0x1f, 0xb, 0xa6, 0xac, 0x6a, 0x93}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd1, 0xc, 0x5e, 0xac, 0xc6, 0x72, 0x16, 0x6c, 0xf2, 0x1f, 0x31, 0x41, 0x51, 0x0, 0xcd, 0x15, 0x99, 0x86, 0xb3, 0xd3, 0x8a, 0x56, 0xf2, 0xf1, 0xf8, 0xf1, 0x9f, 0xd4, 0x36, 0xa4, 0x8, 0xba}} return a, nil } -var _dkgSend_whiteboard_messageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x43\x0f\x92\x5c\x82\xe7\xa0\x96\x60\xb4\x87\x22\x14\xf3\x0b\xc6\x75\x92\x2e\xa6\x33\xcb\xec\x84\x16\xa4\xff\x5d\x96\x6d\xa4\x42\x9d\xe3\xee\xbc\xef\xcd\x7b\xfe\x10\x44\x0d\x5e\x27\x39\x76\xdb\x0d\x0c\x2a\x07\xb8\x3f\x75\xdb\x4d\xdb\x75\xef\x2f\x7d\x5f\x14\xa6\xc8\x11\x9d\x79\xe1\xd2\x09\x1b\xb1\x35\xd0\x9b\x7a\x1e\x2b\xf8\x2e\x0a\x00\x80\x89\x0c\x3e\xbf\xc6\x1d\xaa\x79\xe7\x03\xa6\x95\xbb\x0b\xb3\xbe\x7a\xcd\xdb\x41\x29\xa0\x52\x19\xfd\xc8\xa4\x0d\xb4\xb3\xed\x5b\xe7\x64\x66\x4b\x44\xb8\x4c\xa4\x69\xa8\xff\x52\xe1\x11\xb2\xa8\xfe\x10\x55\x39\x3e\xdc\x32\x79\x2a\x53\x8a\x06\x6e\x7c\xf5\x26\x8a\x23\xed\xd0\xf6\xd5\xaf\x4f\x9a\xf5\x1a\x02\xb2\x77\xe5\xea\x19\x99\xc5\x20\xf3\x53\x28\x08\x57\xfe\x4a\x03\x29\xb1\xa3\x55\xd6\x9f\x73\x22\x3a\x91\x9b\x8d\x96\x3a\xfe\xb9\xbe\x0e\x12\xed\x8d\x62\xc4\x91\x96\x2a\xab\x62\xe1\x9c\x7f\x02\x00\x00\xff\xff\x42\x47\xff\x78\x8b\x01\x00\x00" +var _dkgSend_whiteboard_messageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcf\x6a\xc3\x30\x0c\x87\xef\x79\x0a\x91\x43\x49\x2e\x7e\x80\xb0\xad\xec\x0f\xdb\x61\x0c\x0a\x85\xdd\x35\x4f\x71\xcd\x52\xc9\xc8\x0a\x1d\x8c\xbe\xfb\xf0\x9c\x8e\x0e\xca\x74\xb3\x2d\x7d\x3f\x7f\x8a\xfb\x24\x6a\xf0\x38\xc9\xe1\xe1\xf9\x09\x46\x95\x3d\xb4\xcb\xa9\x6d\x1a\x53\xe4\x8c\xde\xa2\x70\xe7\x85\x8d\xd8\x06\xd8\x9a\x46\x0e\x3d\x7c\x35\x0d\x00\xc0\x44\x06\xef\x1f\x61\x83\x6a\xd1\xc7\x84\xa5\x65\xb5\x20\xdc\xd9\x6d\xed\x4e\x4a\x09\x95\xba\x1c\x03\x93\x0e\x80\xb3\xed\xba\x3b\x51\x95\xc3\x2b\x4e\x33\xf5\xb0\xba\xf5\x5e\x66\xb6\x12\x00\x4b\x65\x9a\x46\xf7\x37\x04\xae\xa1\x32\x5c\x36\x51\x0c\xe4\xde\x7e\x28\x57\x97\xb2\x6f\xba\x62\x36\xc0\x85\xa7\x6d\x9d\xde\xa0\xed\xfa\xdf\xbc\x52\xeb\x35\x24\xe4\xe8\xbb\xf6\x1e\x99\xc5\xa0\xf2\x8b\x2b\xa4\xb3\x7f\x28\x8d\xa4\xc4\x9e\xda\x3a\x7f\xac\xa2\xf4\x49\x7e\x36\xfa\x5f\xc2\x25\xc9\xf6\x42\x39\x63\xa0\xd3\x82\x4f\x94\xe3\x77\x00\x00\x00\xff\xff\xc6\xb5\x3f\x3f\x9c\x01\x00\x00" func dkgSend_whiteboard_messageCdcBytes() ([]byte, error) { return bindataRead( @@ -1140,11 +1200,11 @@ func dkgSend_whiteboard_messageCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/send_whiteboard_message.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaf, 0xbf, 0x30, 0x7e, 0x1e, 0xed, 0x99, 0xc1, 0x3d, 0xa0, 0x20, 0x22, 0x66, 0xaf, 0x3b, 0x43, 0x3f, 0x26, 0xca, 0xd8, 0xff, 0x25, 0x83, 0xbc, 0x7e, 0x33, 0x4a, 0x7b, 0xb0, 0x5d, 0xaf, 0x21}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcb, 0xec, 0x78, 0xab, 0x6e, 0x8, 0xc7, 0xa7, 0x9c, 0x52, 0x92, 0x14, 0x8d, 0x49, 0x3e, 0xa1, 0x55, 0xf3, 0xe3, 0xaf, 0xa9, 0x17, 0x5e, 0xbf, 0x42, 0x66, 0xd4, 0x93, 0x31, 0x7b, 0xd0, 0x18}} return a, nil } -var _epochAdminAdvance_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x4d\x4f\x83\x40\x10\x86\xef\xfc\x8a\x09\x07\x43\x2f\xc4\x73\x63\x6d\x28\x60\x4a\xec\x57\x04\x0f\x1e\xa7\x74\x0b\x9b\xc2\xce\x66\x19\xac\x89\xe9\x7f\x37\x80\x50\x0e\xd6\xce\x61\x4f\xef\x3e\xef\x87\x2c\x35\x19\x86\x97\x82\xce\xa1\xa6\x34\x87\xa3\xa1\x12\x1e\xbf\xc2\xdd\xd6\x5f\x7a\x41\xf0\x16\xc6\xb1\x35\x12\x45\x41\x82\xfb\x42\xc4\x8c\x27\xa9\xb2\x5e\x1d\x05\xe1\x26\x89\x92\x8f\xc4\x5b\xac\xc2\xfe\x97\xc5\x06\x55\x85\x29\x4b\x52\x8e\xce\xb1\x12\x53\x88\xd9\x48\x95\x4d\xe0\xdb\x02\x00\xd0\x46\x68\x34\xc2\xa9\x64\xa6\x84\x99\x82\x57\x73\xee\xa5\x29\xd5\x8a\x7b\x49\x73\x85\x60\xc8\x05\x1a\xde\x0b\x64\x98\x41\x27\x77\xf7\x64\x0c\x9d\x9f\x1e\x86\xec\xee\xb2\x17\x3d\x3b\x4d\xb0\xe9\xb5\x96\x3b\xfc\x8f\x99\x0c\x66\x62\x87\x9c\x4f\x06\x87\xe6\xe6\x73\xd0\xa8\x64\xea\xd8\x3e\xd5\xc5\x01\x14\x31\x74\x16\x23\xf3\xb6\x6f\xd5\x21\x40\x23\xe7\xf6\xc4\x1a\x28\xf2\x08\x6d\x4d\x98\xcd\xc0\x6e\x07\x8c\xc3\xe4\x7d\x67\x8f\xaa\x34\x37\xd0\x5c\xa1\x0e\xbf\x43\x7a\x75\x37\xd3\x35\xd2\x05\x44\x51\x89\x3f\x98\xfe\x76\xbd\x8e\x92\xdb\xd0\x8a\xd1\x70\x5b\xda\xa7\xb2\x94\x7c\x8f\xb9\x09\x5a\xec\xbf\x29\x5b\xdc\x1d\xd0\x62\xb5\xf5\x5f\x6f\x53\xf0\xf0\x89\x2a\x15\x8b\x82\xd2\xd3\x98\x64\x75\xef\xe5\x27\x00\x00\xff\xff\x78\x90\x9a\x7d\x89\x02\x00\x00" +var _epochAdminAdvance_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x6f\x82\x40\x10\x85\xef\xfc\x8a\xc9\x1e\x0c\x5c\xf8\x01\xa6\xd6\x28\xda\x68\x5a\xab\x09\xb6\xf7\x71\x1d\x61\xe3\xb2\xbb\x59\x86\x7a\x68\xfc\xef\x0d\xa0\x48\x93\x5a\xe7\x40\x42\x76\xde\x37\xef\x3d\x55\x38\xeb\x19\x5e\xb4\x3d\xcd\x9d\x95\x39\x1c\xbc\x2d\x40\x74\xff\x22\xe8\x6d\x2c\x67\x5b\xdc\x69\x4a\x19\x8f\xca\x64\xbd\xd5\xdf\x0f\x22\x08\xd8\xa3\x29\x51\xb2\xb2\x26\x74\x39\x96\x34\x84\x94\xbd\x32\x59\x04\xdf\x01\x00\x80\xf3\xe4\xd0\x53\x58\xaa\xcc\x90\x1f\x02\x56\x9c\x87\x53\xeb\xbd\x3d\x7d\xa2\xae\x28\x82\xc1\x44\x4a\x5b\x19\xbe\x2a\xea\xd1\xc4\x90\x13\x7a\xde\x11\x32\x8c\xa0\x55\xc7\x25\x5b\x8f\x19\xc5\xbb\x46\xff\x34\xe8\xdc\xc7\x8b\xeb\xf2\x73\x58\xbb\x1d\xde\x82\xc6\x1d\x27\x6d\xd5\x1b\xe4\x3c\xea\x2e\xd5\x33\x1e\x83\x43\xa3\x64\x28\x12\x5b\xe9\x3d\x18\xcb\xd0\x9e\xe8\x99\x68\x4a\xb8\x18\x00\x87\x9c\x8b\x28\xe8\x28\xea\x00\x4d\x7a\x18\x8d\x40\xcc\x37\xeb\x64\x91\xce\xb7\x1f\x1b\xd1\x8b\x54\x4f\x47\x8b\xc9\xec\x2f\x25\x4e\xaa\xb6\xbd\x9b\xa5\x33\x90\x2e\xe9\x0f\x66\xb2\x5e\xad\x96\xdb\xfb\xd0\x92\xd1\x73\x13\x3a\xb1\x45\xa1\xf8\x11\xf3\x7d\xd6\x60\xff\x75\xd9\xe0\x1e\x80\xa6\x6f\xeb\xe4\xf5\x3e\x05\xf7\x5f\x68\x24\x4d\xb5\x95\xc7\x3e\x29\x68\xbf\xe7\x9f\x00\x00\x00\xff\xff\x77\x36\x16\x2b\x9b\x02\x00\x00" func epochAdminAdvance_viewCdcBytes() ([]byte, error) { return bindataRead( @@ -1160,11 +1220,11 @@ func epochAdminAdvance_viewCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/advance_view.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0x42, 0xe3, 0xf9, 0x28, 0x5, 0x40, 0x9e, 0xbc, 0x3e, 0x89, 0x42, 0xb7, 0x29, 0xc5, 0x14, 0xd7, 0x33, 0x6a, 0x71, 0xd7, 0xd5, 0x26, 0xb9, 0xc0, 0x75, 0xbe, 0x53, 0xda, 0x3d, 0x81, 0xdc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0xe1, 0x89, 0x75, 0x40, 0x79, 0x27, 0x42, 0xfc, 0x75, 0x5f, 0x1a, 0xb6, 0xef, 0xa4, 0xea, 0x47, 0xb1, 0x9b, 0x15, 0x59, 0x37, 0x8, 0x70, 0xe9, 0xb3, 0xc6, 0x77, 0xe7, 0xfc, 0xd8, 0x5c}} return a, nil } -var _epochAdminCalculate_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8f\x41\x4f\x83\x40\x10\x85\xef\xfc\x8a\x49\x0f\x86\x5e\x88\xe7\x46\x6d\xb0\x60\x4a\x62\xb4\x29\x5c\x3c\x0e\xcb\x08\xc4\xed\xce\x66\x18\x82\x89\xe9\x7f\x37\x48\x58\x3b\xe7\x6f\xde\xf7\x5e\x7f\xf1\x2c\x0a\x2f\x96\xa7\xdc\xb3\xe9\xe0\x53\xf8\x02\xf7\xdf\xf9\xe9\xfd\x70\x4c\xb3\xec\x9c\x97\x65\x74\x03\x15\x59\x85\xb5\xa5\x52\xf1\xab\x77\xed\x4a\x17\x59\xfe\x56\x15\xd5\x47\x95\x3e\xbf\xe6\xeb\x57\xa4\x82\x6e\x40\xa3\x3d\xbb\x78\x0b\x3f\x11\x00\x80\x17\xf2\x28\x14\x0f\x7d\xeb\x48\x76\x90\x8e\xda\xa5\xc6\xf0\xe8\x74\x45\xe6\xb3\xa4\xd0\x11\x8a\xd6\x84\x0a\x8f\xb0\xe0\x49\xcd\x22\x3c\x3d\xdc\x85\xba\xc9\x71\x85\x9e\xe2\xb9\xcb\xee\x7f\x49\x12\xfe\x4b\x65\xc1\x96\x4e\xa8\xdd\x36\x18\xe6\xdb\xef\xc1\xa3\xeb\x4d\xbc\x39\xf0\x68\x1b\x70\xac\xb0\x28\x6e\xe4\x7f\x13\x87\x25\x02\x3c\x6a\xb7\xd9\x46\x21\x25\x60\x89\x41\x6b\x46\x8b\x4a\xa9\x6b\x4a\xd2\x33\x4d\x28\xcd\x10\x2f\xc2\x6b\x74\xfd\x0d\x00\x00\xff\xff\x65\x70\xd8\x1b\x69\x01\x00\x00" +var _epochAdminCalculate_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\xcd\x4e\xec\x30\x0c\x85\xf7\x79\x0a\xab\x8b\x51\xba\xe9\x03\x8c\xee\x65\x34\xfc\x09\x76\x88\x22\xf6\x6e\x6a\xda\x88\x4c\x1c\xb9\x8e\xba\x40\xf3\xee\xa8\x53\x26\x14\xef\xa2\x9c\xcf\xe7\xb3\x3f\x25\x16\x85\xc7\xc0\xf3\x43\x62\x37\xc2\x87\xf0\x09\xaa\xf2\xae\xcc\x26\xf1\x7c\xff\x86\x5d\xa0\x56\xf1\xd3\xc7\x61\x13\xfd\xfb\x51\x19\xa3\x82\x71\x42\xa7\x9e\xa3\xad\xe1\xcb\x00\x00\x24\xa1\x84\x42\x76\xf2\x43\x24\xd9\x03\x66\x1d\xed\x2d\x8b\xf0\xfc\x8e\x21\x53\x0d\xbb\xa3\x73\x9c\xa3\x5e\x89\x65\x02\x29\x8c\x84\xa2\x1d\xa1\xc2\x7f\x58\xe9\x66\x52\x16\x1c\xa8\xe9\x2e\xfc\xbf\x5d\x11\x6e\x9e\xae\xe1\x1b\xbb\x08\xee\x7f\x6f\x6b\xca\x9e\x76\xa5\x5f\x50\xc7\xba\x34\x2d\x73\x38\x40\xc2\xe8\x9d\xad\xee\x38\x87\x1e\x22\x2b\xac\x15\x1b\x89\xcb\xdd\x3f\x02\x90\x50\xc7\xaa\x36\x65\x4b\x89\x35\x0e\x83\xcb\x01\x95\x8e\xb1\x6f\x49\x5f\x69\x46\xe9\x27\xbb\x16\x9e\xcd\xf9\x3b\x00\x00\xff\xff\x06\x87\xee\x45\x7b\x01\x00\x00" func epochAdminCalculate_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -1180,11 +1240,11 @@ func epochAdminCalculate_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/calculate_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf1, 0x90, 0x32, 0x9f, 0x87, 0xcc, 0xc2, 0x5c, 0x7d, 0xe9, 0xd1, 0x54, 0x3b, 0x45, 0xae, 0x38, 0xba, 0xcc, 0x78, 0x77, 0x70, 0x33, 0x8f, 0x7b, 0x2b, 0xbb, 0x1e, 0xb0, 0x79, 0x24, 0x81, 0xb8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6a, 0x28, 0xde, 0x44, 0x27, 0x64, 0x4f, 0xc3, 0x72, 0xfc, 0x29, 0x96, 0x71, 0x49, 0x1e, 0x7e, 0xf1, 0xf, 0x75, 0x6b, 0x4c, 0x31, 0x40, 0x4b, 0xf, 0x62, 0xa5, 0x65, 0x0, 0x94, 0xc0, 0x81}} return a, nil } -var _epochAdminDeploy_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xc1\x6b\xea\x40\x10\xc6\xef\xf9\x2b\xe6\xe8\x03\x91\xf7\xe0\x21\x0f\x6f\x21\xea\x43\x2c\x54\x1b\xda\x1e\xc4\xc3\x76\x33\x8d\xc1\x64\x36\xcc\xee\xa2\x52\xfc\xdf\xcb\x9a\x48\x4d\x8c\x89\x6d\x0e\x4b\x32\xdf\xf7\x6d\x86\x99\x5f\x92\xe5\x8a\x0d\x4c\x53\xb5\x0b\x52\xab\x0d\xf2\x32\x80\x77\x56\x19\xfc\xde\x2f\x03\x7f\x3c\x7e\x9a\x84\xa1\xe7\x19\x16\xa4\x85\x34\x89\xa2\x1e\x89\x0c\x47\x10\x1a\x4e\x28\xee\x83\x07\x17\x8f\x54\x11\x8e\x60\xf5\x3c\x23\xf3\x6f\xdd\xaf\x4a\x96\x19\xc9\x4c\x72\x25\x37\x81\xb2\x64\x90\x47\xe0\x8c\xc3\xbf\x55\x23\xd9\xec\x25\xc1\x9d\x9e\xd1\xc9\xdb\x65\x0a\x8d\xd8\x26\x14\xfb\xf6\xd4\x5c\x97\x7b\x3c\xff\xbf\xd8\x08\x8d\x37\x7d\x81\x4a\x53\x94\x46\x71\x39\x0d\x5d\x38\xff\x0c\xab\xce\xe9\xc3\xe3\xab\xb6\x79\x9e\x1e\x66\x24\x19\x85\xc6\x05\xb2\x44\x32\x22\x76\x77\x4f\x93\x7d\xfd\x6e\x16\x14\xa9\x2c\x54\x96\xe5\xd7\xf4\x6a\xc3\xbb\xfa\xf5\xaa\xb2\x97\x41\xf9\x56\x9f\xec\x59\xbf\x19\x58\x06\xb5\x48\xb4\x8d\x17\xf6\x6d\x8e\x07\x17\x29\x7a\x59\xff\x82\x0f\xcf\x03\xc8\x19\x73\xc1\xd8\xd3\x49\x4c\x6e\x45\xbe\x35\x1b\x5f\x4a\xb7\xb1\xd2\x01\x50\x68\x03\xa9\xc8\xb0\x90\x46\x0f\x44\x14\x95\x58\xb8\xb3\x11\x0a\x77\xde\x41\x44\x43\xb1\x03\x8f\x5a\xe1\x5e\x4e\x6e\x29\xb5\xe6\x9b\xd0\xb9\xae\x5d\x87\x1a\x38\x6a\xaa\x7e\x87\xaa\x36\xb5\x8d\xb5\xcb\xaf\x6e\xe2\xd6\x20\xf4\x0f\xb8\x6b\x89\xb5\xd3\x57\x04\xcf\x0c\x7a\x00\x47\xef\xf8\x19\x00\x00\xff\xff\x77\xe6\xf2\x61\x95\x04\x00\x00" +var _epochAdminDeploy_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xc1\x6b\xea\x40\x10\xc6\xef\xf9\x2b\x06\x0f\x0f\x05\x11\x1e\x3c\xe4\xe1\x4d\xd2\x5a\xc4\x42\x15\x69\x7b\x10\x0f\xdb\xcd\x34\x06\x93\xd9\x30\x3b\x8b\x95\xe2\xff\x5e\x62\x22\x35\x31\x26\xb6\x1e\x16\xf3\xcd\xf7\x6d\x26\x33\xbf\x28\x49\x0d\x0b\x4c\x62\xb3\xf3\x63\x67\x05\x79\xe1\xc3\x3b\x9b\x04\x3a\x25\xad\xe3\x79\xc2\x8a\xac\xd2\x12\x19\xea\x92\x4a\x70\x04\x4b\xe1\x88\xc2\x3e\x78\x70\xf6\xd3\x26\xc0\x11\xac\x9e\xa7\x24\xff\xd7\xfd\x72\xc9\x31\x23\xc9\x7d\x6a\xf4\xc6\x37\x8e\x04\x79\x04\x99\x71\xf8\xaf\x6c\x24\x97\xbc\x44\xb8\xb3\x53\x3a\x7a\xdb\x4c\x4b\x51\xdb\x88\xc2\xb1\x3b\x36\xd7\xe6\xbe\x9b\x3d\xcc\x37\xca\xe2\x55\x9f\x6f\xe2\x18\xb5\x18\x2e\xbe\xde\xe6\xce\xbf\xc3\xb2\x73\xf2\xf8\xf4\x6a\x5d\x9a\xc6\xfb\x29\x69\x46\x65\x71\x8e\xac\x91\x44\x85\xd9\xdd\x93\xe8\xa3\x7a\x37\x2b\x0a\x4c\xb2\x34\x8e\xf5\xf7\xf4\x2a\xc3\xbb\x78\xf5\xaa\xb4\x87\x41\xf1\xaf\x3a\xd9\x53\xfd\x6a\x60\xe1\x57\x22\xc1\x36\x9c\xbb\xb7\x19\xee\xb3\x48\xde\xcb\xba\x07\x9f\x9e\x07\x90\x32\xa6\x8a\xb1\x6b\xa3\x90\xb2\x15\x29\x27\x9b\xee\x38\x08\x7c\x43\xc2\x4a\x4b\x0f\xfe\x8c\xb5\xce\x16\x58\x04\x00\x72\xeb\x40\x17\x0e\x3b\x50\x41\x50\x50\x92\x9d\xb5\x8c\x64\xe7\x0d\x80\xd4\x88\x2d\xb4\x54\x84\x5b\xb1\xb9\x56\xa9\x34\x5f\x47\xd2\xa5\x76\x19\xaa\xc1\xaa\x4e\xfd\x09\x64\x4d\xd5\x26\xf4\xce\x9f\xda\x01\x5c\x83\xb2\xbf\xc0\xb0\x21\xd6\x0c\x63\x1e\x3c\x21\xe9\x01\x1c\xbc\xc3\x57\x00\x00\x00\xff\xff\x4b\x08\x37\x75\xa8\x04\x00\x00" func epochAdminDeploy_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1200,11 +1260,11 @@ func epochAdminDeploy_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/deploy_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3b, 0x7a, 0xe, 0xfd, 0xd8, 0x13, 0x8f, 0x9b, 0x36, 0x65, 0x11, 0x9d, 0x7, 0x4f, 0x62, 0xb9, 0x4e, 0x62, 0xe3, 0x15, 0xb8, 0x23, 0xf6, 0x95, 0xa4, 0xd3, 0xde, 0xd3, 0x54, 0x5c, 0xff, 0x57}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc0, 0xec, 0x40, 0x48, 0x4, 0x2f, 0x71, 0x7b, 0xd8, 0xb, 0xbb, 0x6b, 0xa7, 0x3c, 0x3f, 0x5f, 0x22, 0x3e, 0x7d, 0xb, 0x7f, 0x80, 0x8, 0x21, 0xc3, 0x66, 0x12, 0xb4, 0x70, 0xd2, 0x99, 0xc7}} return a, nil } -var _epochAdminDeploy_qc_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xce\x31\x4b\xc4\x40\x10\x05\xe0\x7e\x7e\xc5\x2b\x13\x08\x77\xad\xa4\x3b\xb4\xb1\xb1\x11\x2b\xb1\x18\x66\x97\x75\x39\x9d\x49\x76\x27\x88\x48\xfe\xbb\x90\x8d\x62\x2a\xcb\x61\xde\x7b\x7c\xe7\x33\xee\xe2\xf4\x66\x9f\x15\xfe\x61\x10\x53\x2f\x2c\x5e\xe1\x06\x56\xb0\x88\x2d\xea\xc8\x0a\xd3\x08\x2f\xac\x95\xc5\xb3\x29\x81\xfe\x5c\xdd\x2c\x0f\xfc\x1e\x47\x3c\x7a\xc9\x9a\x06\xcc\x72\x6b\x21\x8e\x78\x7e\xba\x57\xbf\x79\x19\x10\xae\xe9\x98\x08\xd7\x74\x88\xf4\xf8\x22\x02\xa6\x12\x27\x2e\xb1\xab\x39\x69\x2c\x23\x2e\x8b\xbf\x5e\x9a\x62\x4f\x00\xed\x77\xfa\xc5\x9e\x38\x84\x4e\xb7\xf5\xe6\x18\x20\xdb\x74\x53\xf4\xff\xb6\x76\xdc\x4f\x6d\xa7\xf5\x04\xac\x44\x2b\x81\xbe\x03\x00\x00\xff\xff\x63\x1d\x09\x1c\x27\x01\x00\x00" +var _epochAdminDeploy_qc_dkgCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\xce\xb1\x4a\x03\x41\x10\xc6\xf1\x7e\x9e\xe2\xab\xe4\x16\x8e\xa4\x95\xeb\x42\x6c\x6c\x6c\xc4\x4a\x2c\x86\xd9\x65\x5d\xa2\x33\x97\xdd\x09\x22\x92\x77\x17\xb2\xab\x98\xca\x72\xe0\xfb\x33\xbf\xed\x16\x77\x69\x7d\xb3\xcf\x06\xff\x30\x88\xa9\x57\x16\x6f\x70\x03\x2b\x58\xc4\x4e\xea\x28\x0a\xd3\x04\xaf\xac\x8d\xc5\x8b\x29\x81\xfe\x5c\xd3\x51\x1e\xf8\x3d\x2d\x78\xf4\x5a\x34\xcf\x38\xca\xde\x62\x5a\xf0\xfc\x74\xaf\x7e\xfb\x32\x23\x1e\xf2\xf5\x22\x1e\xf2\xd5\x24\xe0\x8b\x08\x58\x6b\x5a\xb9\xa6\xa9\x95\xac\xa9\x2e\xe0\x93\xbf\x4e\xbb\x18\xf7\x43\x16\x70\xb3\xeb\xa8\x11\x00\x7d\xba\xf9\xb5\x6f\x38\xc6\x49\x2f\xcf\x3a\x6b\x86\x5c\x3e\x75\x54\xf8\xb7\x1a\xd6\x9f\x6c\x48\x03\x01\x67\xa2\x33\x81\xbe\x03\x00\x00\xff\xff\x37\x0b\x9f\x58\x36\x01\x00\x00" func epochAdminDeploy_qc_dkgCdcBytes() ([]byte, error) { return bindataRead( @@ -1220,11 +1280,11 @@ func epochAdminDeploy_qc_dkgCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/deploy_qc_dkg.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0xe5, 0xe6, 0x5e, 0xb3, 0x8d, 0x7c, 0x34, 0x5, 0xbf, 0xe9, 0x71, 0x45, 0x48, 0x7, 0xa7, 0xaa, 0x67, 0xd5, 0x1e, 0x45, 0x4b, 0x78, 0xc9, 0x66, 0x5b, 0x35, 0x61, 0x8f, 0x22, 0xd8, 0x7d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf2, 0xf3, 0x8a, 0xbb, 0x2a, 0x94, 0xec, 0x2, 0x91, 0xbb, 0xb8, 0x47, 0x83, 0xda, 0xe4, 0x7, 0x32, 0x98, 0x19, 0x9, 0x22, 0xec, 0xd7, 0x7e, 0x5d, 0x67, 0xf5, 0x20, 0x9d, 0x75, 0xef, 0x5f}} return a, nil } -var _epochAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\xc1\x8a\xa3\x40\x10\x86\xef\x3e\x45\x91\xc3\x62\x60\x31\x7b\x0e\xbb\x1b\x9c\x68\x88\x30\xcc\x48\xf4\x32\xc7\x52\x2b\xe9\x66\x4c\x77\x53\x96\x71\x64\xc8\xbb\x0f\x6a\xe2\x64\xea\xd6\xf0\xfd\xf5\x55\xff\xfa\xec\x2c\x0b\xec\x6a\xdb\xc5\xce\x96\x0a\x8e\x6c\xcf\xf0\xe7\x23\x4e\x5f\xb7\xfb\x30\x8a\x0e\x71\x96\x79\x0f\x50\x12\xe5\x58\xd4\x94\x09\xbe\x6b\x73\xba\xd3\x49\x14\xbf\xe4\x49\xfe\x96\x87\x4f\xcf\xf1\x3d\xe5\xad\x56\x2b\x48\xb1\x6f\x40\x14\x01\x53\x87\x5c\x35\x70\xb4\x3c\xbe\x1d\xd3\x45\xdb\xb6\x01\x1a\xb4\x23\x9b\x1c\x7f\x90\x0a\x2f\x04\x58\x33\x61\xd5\x43\x41\x64\xc0\xa1\xae\x7e\x4f\x69\xec\xcf\x64\x04\x3a\x5d\xd7\x60\xac\x80\x42\xe7\xc8\x78\x9e\x30\x9a\x06\x4b\xd1\xd6\xc0\xa7\x07\x00\x83\xc8\x21\x93\xdf\xe8\x93\x21\x5e\x43\xd8\x8a\x0a\xcb\xd2\xb6\x46\x96\x37\x64\x98\x9a\x04\x14\x21\x4b\x41\x28\xf0\x0f\x26\x3c\x28\x2c\xb3\xed\xfe\xfe\x9a\x0b\x0a\xf6\x77\xe8\xbf\x3f\xfc\x7e\xfd\xdd\x5d\x30\xe7\x33\xb1\x8c\x27\x4a\x51\xd4\x72\x36\x0c\xb3\xd9\x80\x43\xa3\x4b\x7f\xb1\xb5\x6d\x5d\x8d\xa7\x4f\x8a\x07\xf9\x58\x6a\x33\xad\x00\x87\xa2\x16\x4b\x6f\xde\x32\x63\x81\xc3\xfe\x30\x55\xb5\xb3\x9c\xde\xea\x1c\x0f\xf1\x27\xe9\xd5\xbb\x7e\x05\x00\x00\xff\xff\x8c\x32\x25\xbc\xdf\x01\x00\x00" +var _epochAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\x4f\x6b\xc3\x30\x0c\xc5\xef\xfe\x14\x22\x87\x92\xc0\x48\xef\x65\x5b\xd9\xbf\xb2\xde\xca\x3a\x76\x57\x12\xb5\x36\x73\x2d\xa3\x28\x0d\x61\xf4\xbb\x8f\x24\x5d\x96\xea\x26\xfc\x9e\xde\xf3\xcf\x9d\x22\x8b\xc2\xc6\x73\xfb\x16\xb9\xb4\x70\x10\x3e\x41\x32\xed\x89\x99\x29\xb6\xaf\x9f\x58\x78\xda\x2b\x7e\xbb\x70\x9c\x49\x6f\x1f\x12\x63\x96\xcb\x25\xec\xb0\xab\x41\x2d\x81\x50\x8b\x52\xd5\x70\x60\x19\xf6\x28\x74\x76\xdc\xd4\x40\x7d\xc2\xa0\xdd\x1e\x6e\x94\x16\xcf\x04\xe8\x85\xb0\xea\xa0\x20\x0a\x10\xd1\x55\x77\xa3\x1b\xbb\x13\x05\x85\xd6\x79\x0f\x81\x15\x2c\xc6\x48\xc1\x18\x15\x0c\x35\x96\xea\x38\xc0\x8f\x01\x80\x3e\x28\xa2\x50\x5a\xbb\x63\x20\x59\x01\x36\x6a\xd3\x67\x16\xe1\xf6\x0b\x7d\x43\x19\x2c\x9e\xca\x92\x9b\xa0\xd9\xd5\xd1\x8f\x27\x05\x4b\x28\x5a\x10\x2a\x3c\xc0\xe8\xce\x6b\x65\xc1\x23\xe5\xc5\xe0\xbf\x5f\x4c\x88\xf2\xf7\x3f\xf1\x63\xda\x23\x59\xfd\xd3\xcc\xa7\x3b\xfb\xd1\xbd\x43\xb5\xd9\x94\xd4\xcf\x7a\x0d\x11\x83\x2b\xd3\xe4\x85\x1b\x5f\x0d\x3f\x1a\x23\x66\x25\x06\xd2\xd7\x02\x10\x51\x6d\x92\x99\xe9\xca\x24\xcb\x23\x76\x1f\x23\xc1\x0d\xcb\xee\x4a\x79\x28\x92\x8e\xa1\x17\x73\xf9\x0d\x00\x00\xff\xff\x18\x65\x13\x72\xf1\x01\x00\x00" func epochAdminPay_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -1240,11 +1300,11 @@ func epochAdminPay_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/pay_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0x12, 0x23, 0x8e, 0xdb, 0x2b, 0x5a, 0x58, 0x1c, 0xdd, 0x6c, 0x42, 0xc0, 0xb7, 0x92, 0xf5, 0x52, 0x42, 0x73, 0xe4, 0xab, 0x3e, 0x1a, 0xa, 0xae, 0x60, 0x27, 0x7b, 0x5b, 0x49, 0x6e, 0x2b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc5, 0x44, 0xb, 0xf, 0x17, 0x22, 0x70, 0x23, 0x47, 0x80, 0xe0, 0x8d, 0xa, 0x3c, 0x31, 0x58, 0xc8, 0xd8, 0xe5, 0x97, 0x7b, 0xb3, 0x3b, 0x2a, 0x68, 0x2, 0xa, 0xcf, 0xcb, 0xe8, 0x50, 0x83}} return a, nil } -var _epochAdminRecover_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x6f\xdb\x38\x10\xbd\xfb\x57\x0c\x72\x58\x38\xc0\xc6\xd9\xc3\x62\x0f\xc6\xb6\x81\x6b\x3b\xa8\xd1\xaf\xa4\x76\x03\x14\x41\x0e\x63\x6a\x6c\x11\xa1\x38\xc2\x70\x14\xc5\x28\xf2\xdf\x0b\x4a\xb2\x2d\xd9\x69\x5d\x9d\xc8\xe1\x7b\x8f\x4f\xc3\x37\x36\xcb\x59\x14\xae\x1d\x97\xd3\x9c\x4d\x0a\x2b\xe1\x0c\xfe\x79\x9e\xde\x7c\x19\xbf\x1f\x4d\x26\x5f\xa7\xf3\x79\xaf\x05\x9a\x4d\x16\xb8\x74\x34\x57\x7c\xb4\x7e\xbd\x45\xcf\x26\xd3\xcf\x8b\xd9\xe2\xfb\x62\xf4\xee\xe3\xf4\x15\xd6\xd8\x15\x41\x49\x6e\xc7\x5b\xc2\xed\x78\x8b\xba\xbc\x84\x45\x4a\x20\x64\xf8\x89\xa4\xf6\xa0\x82\x3e\xa0\x51\xcb\x1e\x8c\x10\x2a\x05\x40\x9f\x40\x50\x14\x0d\x80\xe0\xa9\x04\xaa\xa0\xd6\x83\xa6\xd4\xf2\x1f\x32\x14\x05\xc3\x5e\x05\x8d\x46\x79\x65\x28\x53\x6b\x52\x28\xad\x73\xb0\x62\x31\x54\x71\x3c\x69\xc9\xf2\x08\xf4\x6c\x15\xa6\xd7\x9f\x06\xc7\x46\x02\xc9\x93\x35\x04\xf4\x44\x5e\x6b\xfe\x92\x80\x32\xab\x4a\x09\x44\xf1\x68\x2b\x17\x36\x14\x02\x25\xb0\xdc\x00\x3a\x17\x0b\xca\x86\x1d\xe4\x28\x6a\x8d\xcd\xd1\x6b\xfd\x07\x84\x26\x6d\x57\x6b\xcd\x22\x4f\x50\x2b\x53\x56\xf6\xe4\x28\x1f\x34\x1e\x94\x56\xd3\xc6\x72\x09\xb5\xb3\x04\x15\x07\x75\xf3\x6c\xe8\x34\x2c\xa4\x5c\xb8\x04\xd8\xbb\x4d\x34\x5b\x44\x5f\x3b\x01\x2e\x34\x2f\x14\x78\x55\xed\x96\xcc\x1a\x54\x30\x87\x42\xad\xb3\xba\x19\x46\x45\xa8\x76\x4d\x7f\x69\x95\x5d\x34\x2d\xb9\xd0\xe7\x0b\x94\x75\xe8\xb5\x6e\xeb\x0b\xfa\x84\xb3\x39\x17\x62\x68\x08\x73\x15\xeb\xd7\x7f\xf7\xa0\xf5\x55\x8f\x76\x67\xa9\x1c\xc2\xb7\x99\xd7\xff\xfe\x3d\x3a\x8e\x49\x9a\xfa\xe4\xd7\x18\xfa\xdd\xa1\x61\xe7\xc8\x28\x4b\x13\xb2\x30\x84\xfb\xfb\xda\xc8\xc3\xc3\x01\x74\x1b\xc3\x3b\x56\x9a\xa0\xe2\x10\xee\x3b\xf1\x1c\x8c\x0f\x11\x07\x0a\xc9\xe3\xfa\xa6\x58\x7e\xa0\x4d\xbc\xa5\xb9\xa4\x8b\xf0\x9c\xd0\x6c\xd2\x3a\x3e\x87\x1f\xbd\x0a\x91\x0b\xe5\x28\xd4\x0f\x76\xed\x49\x86\x30\x2a\x34\x1d\x19\xc3\x85\xd7\x88\xd9\x0a\x38\xd2\xba\xf7\xa3\x24\xb3\x1e\xde\x40\x8d\x1f\x2c\x59\x84\xcb\xff\xff\xda\x45\x7d\x50\x01\xde\xf6\xe3\x48\x0d\xf7\x13\x30\xc0\x58\x9e\x2b\x0b\xae\xe9\x06\x35\x3d\xef\xf8\xbb\xba\x82\x1c\xbd\x35\xfd\xb3\x71\x95\x13\xcf\x0a\xb5\x74\xf3\xe2\x15\xbd\x9e\xd3\x50\x8b\x40\x8e\x9a\x9e\x9d\xf7\x76\x3a\x7b\x7b\x83\xf6\xb8\x1c\x84\xa1\xbd\xeb\xf6\xe8\xe8\x6b\x65\x64\xb7\x3c\x4d\xe9\xe4\xa6\xbb\x3f\x41\xde\x05\x8a\xfe\x08\xfe\x4a\xc4\x8e\x4a\xa7\x24\x8e\xa3\x77\x54\x3a\x21\xd1\xce\xde\x7e\x7d\x82\xb4\x8b\x63\xb3\xa8\xc3\xf0\xd2\x7b\xe9\xfd\x0c\x00\x00\xff\xff\x70\xfb\xb8\xdc\xfa\x05\x00\x00" +var _epochAdminRecover_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x41\x4f\xf3\x46\x10\xbd\xfb\x57\x8c\x72\x40\x89\x54\xcc\xa5\xea\x21\x6a\x8b\x68\x12\x24\x54\x55\xa2\x0a\xe5\x82\x38\x4c\xd6\x93\x78\xc5\x7a\xc7\x9a\x1d\x63\xa2\x8a\xff\xfe\x69\x6d\xe3\xd8\x09\x5f\xc0\xa7\x9d\xd9\xf7\xde\x3e\xaf\xdf\xd8\x16\x25\x8b\xc2\xad\xe3\x7a\x55\xb2\xc9\x61\x2b\x5c\xc0\xa4\xaf\x27\xc9\x00\x71\xb7\x7c\xc0\x8d\xa3\xb5\xe2\x8b\xf5\xbb\x01\x74\xbc\x31\xe2\x2c\x5c\x15\x94\xe4\xdf\xc5\x00\xde\xf7\x26\x49\x72\x75\x05\x0f\x39\x81\x90\xe1\x57\x92\xd6\x83\x0a\xfa\x80\x46\x2d\x7b\x30\x42\xa8\x14\x00\x7d\x06\x41\x51\x34\x00\x82\xa7\x1a\xa8\x81\x5a\x0f\x9a\xd3\xc0\x7f\x28\x50\x14\x0c\x7b\x15\x34\x1a\xe5\x95\xa1\xce\xad\xc9\xa1\xb6\xce\xc1\x96\xc5\x50\xc3\xf1\xa4\x35\xcb\x0b\xd0\x9b\x55\x58\xdd\xfe\x93\x9e\x1a\x09\x24\xaf\xd6\x10\xd0\x2b\x79\x6d\xf9\x1b\x02\x2a\xac\x2a\x65\x10\xc5\xa3\xad\x52\xd8\x50\x08\x94\xc1\x66\x0f\xe8\x5c\x6c\x28\x1b\x76\x50\xa2\xa8\x35\xb6\x44\xaf\xed\x1b\x10\x9a\x7c\xd8\x6d\x35\xab\x32\x43\x6d\x4c\x59\x39\x90\xa3\x7c\xd0\xb8\x51\x5b\xcd\x3b\xcb\x35\xb4\xce\x32\x54\x4c\xdb\xcb\xb3\x61\x74\x61\x21\xe7\xca\x65\xc0\xde\xed\xa3\xd9\x2a\xfa\xea\x05\xb8\xd2\xb2\x52\xe0\x6d\x53\x6d\x98\x35\xa8\x60\x09\x95\x5a\x67\x75\x3f\x8f\x8a\xd0\x54\xdd\xfd\xd2\xb6\xb8\xec\xae\xe4\x52\xdf\x2e\x51\x76\x21\x19\x9c\x36\x15\xf4\x19\x17\x6b\xae\xc4\xd0\x1c\xd6\x2a\xd6\xef\x7e\x49\x60\xf0\x34\x1f\xed\xd1\x52\x3d\x87\xff\xee\xbc\xfe\xf6\xeb\xc9\x76\xcc\xcc\xca\x67\x3f\xc7\xd0\xb9\x4d\x45\xd9\x91\x2e\x2b\xc1\x68\xe8\x1c\x66\xe5\xb3\x07\x5b\xd0\xe7\x10\xc3\xce\x91\x51\x96\x2e\x9c\x61\x0e\x4f\x4f\xed\xfb\x3c\x3f\x1f\x41\x3f\xe2\xfb\xc8\x4a\x4b\x54\x9c\xc3\xd3\x28\xd6\xe9\xe2\x18\x71\xa4\x90\xbd\xec\xee\xab\xcd\xdf\xb4\x8f\xa7\x74\x87\x8c\x11\x9e\x33\xba\x5b\x0e\xb6\x67\xf0\x7f\xd2\x20\x4a\xa1\x12\x85\xa6\xc1\xee\x3c\xc9\x1c\xb0\xd2\x7c\xfa\x17\x8b\x70\xfd\x88\xae\xa2\x19\x5c\xdc\x18\xc3\x95\xd7\x48\xf9\xd0\x73\xa4\xed\x17\xbd\xc9\x0a\xeb\xe1\x0f\x68\xe9\x69\x50\x16\xdc\x51\xba\x69\x04\x7e\xbf\xe8\x07\x29\x6d\x80\x7f\x4e\xe3\xd4\xce\x0f\xf3\x95\x62\x6c\xaf\x5b\xd6\x3d\x6a\x3e\x1b\xd9\xbe\xbe\x86\x12\xbd\x35\xd3\xc9\xa2\x49\xa1\x67\x85\x56\xba\xcb\x53\x43\x6f\x7f\x05\xdd\xd1\x50\xa2\xe6\x93\x59\xd2\xeb\x1c\x6c\xa6\xc3\x61\x3c\x8a\xda\xb0\x1a\x5f\xdd\xf1\x33\x08\x60\xbf\xfc\x92\x31\xca\xe4\xb8\x3e\xcf\xed\xb3\x4a\xdf\x41\x1f\x87\x77\x5c\x7f\x87\xdb\x87\x7a\x54\x9e\x67\x7e\x92\xf5\x93\xd6\x17\x0a\xa7\x23\x70\xd2\x3a\xaf\x30\x1c\x81\xc3\xfa\x3c\xa7\x1f\x8a\x6e\xd1\x66\xef\x3d\x79\x4f\x7e\x04\x00\x00\xff\xff\x06\x12\xe3\x26\xc7\x06\x00\x00" func epochAdminRecover_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1260,11 +1320,11 @@ func epochAdminRecover_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/recover_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf2, 0x75, 0xc7, 0x49, 0x25, 0x51, 0x5e, 0x42, 0x19, 0xce, 0x5e, 0x11, 0xe8, 0x8b, 0x3b, 0x57, 0x45, 0xc2, 0xf9, 0xd0, 0xed, 0x9, 0xb6, 0x2f, 0x6b, 0x9f, 0x57, 0xf2, 0x5, 0xb9, 0x32, 0xc2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1, 0x16, 0xa4, 0x42, 0xc, 0xa9, 0x3c, 0xe8, 0xff, 0x6e, 0xc1, 0xf1, 0xd4, 0x65, 0xdf, 0xed, 0x9c, 0x46, 0xa6, 0x11, 0x94, 0x1b, 0x67, 0x64, 0x15, 0xe5, 0xca, 0xee, 0x6c, 0xc7, 0x56, 0x86}} return a, nil } -var _epochAdminReset_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x5d\x6f\xdb\x46\x10\x7c\xe7\xaf\x58\xf8\xa1\x95\x60\x59\xaa\x81\xa2\x0f\x42\x5b\x43\x95\x54\x54\x68\xd1\xba\x91\x12\x20\x08\xf2\xb0\x24\x57\xe4\x41\xe4\x2d\x71\xbb\xb4\x2c\x04\xfe\xef\xc1\xdd\x59\x1f\x0c\x18\xdb\x7c\xe2\x1d\x67\xe6\xe6\x66\x96\xa6\x6e\xd8\x29\xfc\x59\xf1\x7e\xd9\x70\x56\xc2\xd6\x71\x0d\x3f\x3d\x2e\xef\xff\x9b\xff\x35\x5b\x2c\xde\x2d\xd7\xeb\xe4\x02\xb4\x5a\x6c\x30\xad\x68\xad\xb8\x33\xb6\x38\xa2\x57\x8b\xe5\xbf\x9b\xd5\xe6\xe3\x66\xf6\xc7\x3f\xcb\x23\x2b\x99\x4c\x60\x53\x12\x38\x12\xd2\x28\xae\x0e\xad\x60\xa6\x86\x2d\x90\xcd\x05\xb4\x24\xc8\x5a\xe7\xc8\x2a\x50\x80\x18\x1b\x36\xcf\x86\xa4\x46\xa7\x90\xb1\x55\x87\x99\x7a\x51\xb4\x39\xa4\x54\x18\x2b\x80\x60\x69\xff\xcc\xdc\x1b\x2d\x03\xb7\x30\x0f\x64\x3d\x63\x6b\x8a\xd6\xa1\x3f\x6d\x1c\x9c\x9c\xb1\x58\xed\xf1\x20\x50\xa2\x78\xc1\xe0\x82\x5b\xab\xe4\x8e\x6e\xc2\xd9\xf3\xb8\x77\x7d\x1b\xe9\x97\xee\x85\x6c\x4e\x0e\xea\x56\x14\x1a\xc7\x0f\x26\xa7\x20\xe3\xe5\x7a\x24\x60\x90\xd2\x96\x5d\xc4\x84\x40\x40\x71\x47\x02\x4d\x85\x19\x0d\x01\xfd\x55\x04\xb7\xa4\x07\xa8\x29\x2b\xd1\x1a\xa9\xc7\xc9\x64\xe2\xf5\x16\xad\xf3\x59\x5b\xd2\x3d\xbb\x1d\x48\xc3\x6e\x27\xa3\x20\x95\x32\xab\xa8\xc3\xa6\xa1\xdc\xfb\x50\xce\xb8\x02\x51\x54\x02\x23\x3e\xcc\x98\x50\x8c\x72\xd0\x7b\xb9\xe1\xe8\x18\xea\x45\x53\x46\xa0\x15\xca\x41\x19\xbc\x9b\x22\x3a\x8f\xe1\x1d\xa3\x7a\x43\x55\x61\x3e\xfa\xf2\x50\xee\x75\x03\xd7\x70\x3b\x1c\x81\x30\x68\x89\x0a\x46\x7f\x14\xaf\x27\x46\xd4\x8f\x48\xa8\xf8\xd8\xd8\x0b\x77\x1f\xc7\xd9\x33\xd2\xed\xac\xe4\xb6\xca\x81\x6d\x75\x80\x94\xe2\xfd\x4e\x43\xc3\xad\x36\xad\x02\x6f\xbb\xda\xd0\xaa\xa9\x8c\x1e\xa6\x5e\x11\xc2\xea\x39\x85\x10\xd6\x8d\x3e\xde\xa0\x2b\x24\x49\x2e\x0e\xea\xbb\xd8\x14\xde\xaf\xac\xfe\xf2\xf3\x28\x81\x8b\xc7\xa1\xcd\xb9\x5e\x73\xeb\x32\x9a\xc2\x5a\x7d\xcf\x5d\x84\x28\x3a\xfd\x60\x68\xdf\x2f\x20\xf1\x3f\x5c\xda\xfc\xfb\x18\xea\x7e\x1c\xc2\x97\x24\x7c\x6f\x1c\x35\xe8\x68\x20\xa6\xb0\xde\xe0\xac\xd5\x72\x96\x85\x72\x3d\xe6\x48\xaf\xe8\xf9\xd7\x9c\xe5\xb5\xb1\xf0\x1b\x44\xfc\x38\x65\xe7\x78\xff\xeb\x0f\xa7\xfa\xc7\x01\xf0\xfb\xc0\x77\x3e\x3d\x4f\xc5\x18\xfd\xf6\x5a\xd9\x61\x41\xf7\xa8\xe5\xb0\xe3\xee\xee\x0e\x1a\xb4\x26\x1b\x5c\xcd\x43\x3b\x96\x15\xa2\x34\x94\x84\x4e\x53\x42\x8d\x63\x24\x51\x02\x1a\xd4\xf2\x6a\x98\x9c\x54\xce\xe6\xc6\xe7\x01\xee\xef\xa0\x67\xb3\x9b\xd5\xb7\x4f\xb7\xa0\xcb\xd5\xcb\xbc\xcb\xde\x4e\xaf\xaf\x53\x3a\x5d\x76\xd7\xaf\x90\x4f\x25\xd3\x9b\xe0\x19\x57\x15\x65\xca\x6e\x5e\xb5\xa2\xe4\x64\x0a\x9f\x3e\xbf\xc6\x89\xd0\xff\xe7\x6f\x01\xe7\xbb\xe2\xbe\x4d\xff\xa6\x43\x00\xc7\xca\x9f\x92\xa7\xe4\x6b\x00\x00\x00\xff\xff\x5f\x6f\xdc\x53\x70\x06\x00\x00" +var _epochAdminReset_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xcb\x6e\xdb\x30\x10\xbc\xeb\x2b\x16\x3e\xa4\x36\xe2\xc8\x08\x50\xf4\x60\xb4\x0d\x52\x27\x05\x82\x5e\x52\x38\xcd\xa5\xe8\x61\x2d\xad\x25\xc2\x12\x57\xe0\xae\xe2\x1a\x45\xfe\xbd\x20\xe9\x87\x54\xa8\x49\x7c\x32\xa9\x99\xe1\x70\x66\x69\xea\x86\x9d\xc2\xd7\x8a\xb7\xb7\x0d\x67\x25\xac\x1d\xd7\x30\x3a\xae\x47\x49\x07\x71\x77\xf3\x80\xab\x8a\x96\x8a\x1b\x63\x8b\x0e\xb4\xff\x61\x94\x24\xb3\x19\x3c\x94\x04\x8e\x84\x34\xea\xaa\x43\x2b\x98\xa9\x61\x0b\x64\x73\x01\x2d\x09\xb2\xd6\x39\xb2\x0a\x14\x20\xc6\x86\xcd\x93\x17\xa9\xd1\x29\x64\x6c\xd5\x61\xa6\x5e\x14\x6d\x0e\x2b\x2a\x8c\x15\x40\xb0\xb4\xdd\x33\xb7\x46\xcb\xc0\x2d\xcc\x13\x59\xcf\x58\x9b\xa2\x75\xe8\x4f\x4b\x83\x93\x13\x16\xab\x2d\xee\x04\x4a\x14\x2f\x18\x5c\x70\x6b\x95\xdc\xc1\x4d\x38\x7b\x11\xf7\xce\x2f\x23\xbd\xeb\x5e\xc8\xe6\xe4\xa0\x6e\x45\xa1\x71\xfc\x64\x72\x0a\x32\x5e\x6e\x40\x02\xc6\x2b\x5a\xb3\x8b\x98\x10\x08\x28\x6e\x48\xa0\xa9\x30\xa3\x09\xa0\xbf\x8a\xe0\x9a\x74\x07\x35\x65\x25\x5a\x23\x75\x9a\xcc\x66\x5e\xef\xa6\x75\x3e\x69\x4b\xba\x65\xb7\x01\x69\xd8\x6d\x64\x1a\xa4\x56\xcc\x2a\xea\xb0\x69\x28\xf7\x3e\x94\x33\xae\x40\x14\x95\xc0\x88\x0f\x33\x26\x14\xa3\x1c\x0f\x5e\x6e\x32\x3d\x84\xda\x69\xca\x08\xb4\x42\x39\x28\x83\x77\x53\x44\xe7\x31\xbc\x43\x54\x6f\xa8\x2a\x4c\xc7\x50\x1e\xca\x83\x6e\xe0\x1c\x2e\x27\x53\x10\x06\x2d\x51\xc1\xe8\x3b\xf1\x7a\x62\x44\xfd\x88\x84\x8a\x0f\x8d\xbd\x70\xf7\x34\xce\x9e\x91\x7e\x67\x25\xb7\x55\x0e\x6c\xab\x1d\xac\x28\xde\xef\x38\x34\xdc\x6a\xd3\x2a\xf0\xba\xaf\x0d\xad\x9a\xca\xe8\x6e\xee\x15\x21\xac\xf6\x29\x84\xb0\x2e\xf4\xf7\x05\xba\x42\x92\xa4\x73\xd0\xd0\xc5\xe6\xf0\xe3\xce\xea\x87\xf7\xd3\x04\x3a\x3f\x87\x36\xe7\x7a\xc9\xad\xcb\x68\x0e\x4b\xf5\x3d\xf7\x11\xa2\xe8\xf4\xd1\xd0\x76\x58\x40\xe2\x63\xbb\xb5\xf9\xff\x31\xd4\xff\x38\x81\x3f\x49\xf8\xde\x38\x6a\xd0\xd1\x58\x4c\x61\xbd\x41\x6c\xb5\x1c\x7f\x61\xe7\x78\xfb\x88\x55\x4b\x13\x38\xbb\xce\x42\xd7\x9e\x72\x50\xab\x68\xff\x52\xaf\xf3\xda\x58\xf8\x04\x91\x9e\x8a\xb2\xc3\x82\xd2\x55\x10\xf8\x78\x76\x9c\x8a\x34\x00\x3f\x8f\xfd\x28\xcc\x4f\xc3\x92\xa2\xdf\x5e\x46\xd6\x3d\x6a\x39\xe9\x99\xbe\xba\x82\x06\xad\xc9\xc6\xa3\x45\x28\xcd\xb2\x42\x94\x3e\xbc\xe0\x70\x7c\x98\xaf\xfd\xd1\xd0\xa0\x96\xa3\x49\x72\xd4\x39\xd9\x4c\x4f\x93\x3d\x5c\xce\xc0\x66\x3f\xc4\x7f\x7f\xfd\xe6\xba\xab\x97\x79\xdd\x42\x8f\x7f\x5f\xa7\xf4\x4a\xee\xaf\x5f\x21\x1f\xdb\xa7\x37\xc1\x33\xae\x2a\xca\x94\xdd\xa2\x6a\x45\xc9\xc9\x1c\x7e\xfe\x7a\x8d\x13\xa1\xdf\x17\x6f\x01\xe7\x9b\xe2\xbe\x5d\x7d\xa3\x5d\x00\xc7\xd2\x9f\x93\xe7\xe4\x6f\x00\x00\x00\xff\xff\x31\xe8\x6d\xe4\x84\x06\x00\x00" func epochAdminReset_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1280,11 +1340,11 @@ func epochAdminReset_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/reset_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0x3, 0xd, 0x2d, 0x73, 0x2d, 0x6f, 0xa5, 0xfa, 0x8b, 0xb6, 0x7, 0xd9, 0x10, 0xd9, 0x12, 0xf5, 0x76, 0x4e, 0x50, 0x36, 0x2b, 0xb, 0x70, 0x17, 0xa7, 0x9c, 0xda, 0x7c, 0x8c, 0xbd, 0x7a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x65, 0xaa, 0xbb, 0x55, 0xc5, 0x22, 0xcf, 0x8f, 0x94, 0x74, 0x88, 0xe8, 0xa0, 0x90, 0x53, 0x15, 0x36, 0x1b, 0xe, 0x32, 0xd3, 0xb2, 0xb8, 0xe3, 0x72, 0xdd, 0x95, 0x41, 0x21, 0xce, 0x47, 0xe2}} return a, nil } -var _epochAdminSet_automatic_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\x25\x87\xe2\x5c\x4c\xcf\xa6\x6d\x50\x13\x97\xde\x1a\xe2\x2f\xd8\x48\x6a\x2c\x90\xb5\x62\xbd\xc2\x85\x92\x7f\x2f\x8a\xa8\x73\x69\xe7\x28\x66\x46\x6f\xd6\x4f\x89\x58\xe0\x2d\xd0\xd2\x27\x32\x23\x7c\x32\x4d\xf0\xf8\xd5\x1f\x3f\xf6\xef\xfa\x70\x38\xf5\xc3\xa0\x94\x30\xc6\x19\x8d\x78\x8a\x0d\x66\xa1\x09\xc5\x9b\x93\x5b\x90\xed\xdc\x47\x3c\x07\x67\x3b\x78\x25\x0a\x5b\xf8\x56\x00\x00\x89\x5d\x42\x76\xcd\xec\x2f\xd1\x71\x07\x3a\xcb\xa8\x8d\xa1\x1c\xe5\xd7\x52\x14\x9c\x80\x2b\xdf\x6a\x3b\xf9\x08\xcf\x50\xfd\xed\x99\x98\x69\x79\x7a\x58\xb1\xda\x9b\xe1\xa5\x29\x74\xdd\x9d\xb6\xc5\xf2\x3c\x08\x31\x5e\xdc\x11\x65\xdc\xae\xd5\x45\xbb\x1d\x24\x8c\xde\x34\x9b\x3d\xe5\x60\x21\x92\x40\xad\x86\x5b\xb0\x8e\x9d\x6b\x1c\x12\xca\xb8\xd9\xaa\xb5\xe1\x0e\xd6\xe6\x64\x51\x9c\xfe\x7b\xf9\x7f\x17\xa9\x2c\x57\x75\xfd\x09\x00\x00\xff\xff\xac\x8e\x3a\x7a\x64\x01\x00\x00" +var _epochAdminSet_automatic_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xb1\x4e\xc4\x30\x10\x44\xfb\x7c\xc5\x2a\xc5\x29\x69\xfc\x01\x11\x70\xca\xa1\xa3\x46\x20\xd1\xef\xd9\xcb\xc5\x92\xe3\xb5\x36\x6b\xa5\x40\xf7\xef\xc8\x31\xe4\x1a\x98\xce\x96\x67\xe6\x79\xfc\x9c\x58\x14\x5e\x02\xaf\xe7\xc4\x76\x82\x4f\xe1\x19\xda\xfd\xdc\x36\x8d\x0a\xc6\x05\xad\x7a\x8e\x1d\x66\xe5\x19\xd5\xdb\x37\x5a\x51\xdc\x72\x8e\x78\x09\xe4\x06\x38\x31\x87\x1e\xbe\x1a\x00\x80\x24\x94\x50\xa8\x5b\xfc\x35\x92\x0c\x80\x59\xa7\xee\xc4\x22\xbc\x7e\x60\xc8\xd4\xc3\x61\xb4\x96\x73\xd4\x5f\x47\x51\x20\x05\x2a\x95\xa3\x9b\x7d\x84\x47\xa8\x76\xb3\x28\x0b\x5e\xc9\x5c\xb6\x80\x87\xc3\x8e\x66\xb6\x87\x4f\x5d\x21\x1e\xee\x3f\x30\x58\xae\xdf\xab\xeb\x15\x75\xea\xf7\x8a\xa2\xe3\x11\x12\x46\x6f\xbb\xf6\x99\x73\x70\x10\x59\xa1\x46\xc3\x66\xac\x03\xfc\x94\x42\x42\x9d\xda\xbe\xd9\x13\xee\x80\x26\x27\x87\x4a\xe3\xdf\x83\xfc\x37\x54\x65\xb9\x35\xb7\xef\x00\x00\x00\xff\xff\x14\xdd\x64\x3c\x78\x01\x00\x00" func epochAdminSet_automatic_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -1300,11 +1360,11 @@ func epochAdminSet_automatic_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/set_automatic_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x79, 0x9, 0x8e, 0xe5, 0x32, 0xcb, 0x3e, 0x61, 0xd5, 0x8a, 0x3c, 0xd2, 0xdb, 0x86, 0x84, 0x19, 0x2c, 0xb6, 0x67, 0x7b, 0xac, 0x61, 0x5f, 0x6, 0x64, 0xc2, 0xd, 0x5a, 0x24, 0x94, 0x6b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xd6, 0xdc, 0xeb, 0xa4, 0xe1, 0xef, 0xb3, 0x7b, 0x5, 0x20, 0x54, 0xbe, 0xeb, 0xff, 0x1b, 0x2a, 0xcd, 0xde, 0xf5, 0x11, 0xeb, 0x9e, 0x29, 0xb, 0xa3, 0x57, 0x6f, 0x14, 0x6d, 0xa8, 0x16}} return a, nil } -var _epochAdminSet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xcf\x8a\xdb\x30\x10\x87\xef\x7e\x8a\xdf\x31\x81\x50\x5f\x4a\x0f\xa1\x14\x52\x68\x4e\x85\x1e\x9a\xd2\xf3\x58\x9e\xc4\xa6\x8a\xc6\x8c\x46\x76\xbd\x4b\xde\x7d\x91\x12\x2f\xd9\xec\x65\x75\xd0\x41\xf3\xcd\x37\x7f\x54\xd5\x75\x8d\xdf\x34\x72\x04\x05\xd0\x59\x52\x30\x98\x20\x9a\x28\x9d\x18\xd6\x91\x41\x79\x50\x8e\x9c\x23\x1d\xdf\xa0\x92\x28\x47\x34\x12\x52\x84\xc9\x3f\x0e\xf1\x4a\x77\x34\x32\x66\x2e\x9a\x86\xd1\x24\x0d\xdc\x16\xfc\xd0\xf5\x71\xa9\xd1\x47\xc4\xd4\x98\x92\x33\x6e\x71\x54\x39\x17\xb9\x89\x91\x47\x4c\xc3\xe0\xe7\xac\xdf\xff\xfc\xf5\xb7\xe4\x4e\x1d\x07\x1e\x59\x41\x08\x3c\xdd\x38\xe5\x89\xb4\xbd\x77\x3a\xf2\x2e\x79\xca\xce\x4c\xcf\xe0\x41\x5c\x57\x0c\x0d\x3b\x4a\x31\x8f\xc4\x33\x48\x19\x41\x0c\x67\xa6\xb0\x74\x4a\x18\x48\x2d\x57\x7d\xec\xa4\xe4\x97\xeb\xc7\xc8\xc1\x12\x79\x3f\x6f\x40\xde\xbf\x1d\x7f\xea\xf3\xcb\x32\x32\x28\xb4\x77\x0b\x7b\x8d\x3e\xb1\x4a\x55\x99\x52\x88\xe4\xac\x97\xb0\x2a\x92\x43\x76\xec\x0a\xba\xc5\x9f\x7d\xff\xff\xcb\xe7\x35\x9e\x2b\x00\x18\x94\x07\x52\x5e\xc5\xfe\x14\x58\xb7\xd8\x25\xeb\x76\xce\x65\x74\x41\xf2\xb9\x86\x3f\x79\xa1\xf6\xeb\x55\xf0\x6d\x95\x17\xbb\x45\x7d\xfb\xce\x7a\xef\x65\xfa\xfe\x50\x6d\xfd\x28\x88\x34\xf2\xbb\x9e\x36\x30\xf9\x90\xe8\x52\x5d\x5e\x02\x00\x00\xff\xff\x15\x31\xd0\x69\x55\x02\x00\x00" +var _epochAdminSet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x31\xcb\xdb\x30\x10\x86\x77\xff\x8a\x77\x2a\x0e\x84\x78\x29\x1d\x42\x29\xa4\xd0\x4c\x85\x0e\x49\xe9\x7c\x96\x2f\xb1\xa9\x22\x99\xd3\xc9\xae\x5b\xf2\xdf\x8b\x64\xbb\xa4\xf9\xf8\xe0\xf3\xe0\x41\xf7\xdc\xa3\xf7\x74\x45\x55\x55\x38\xd1\xc0\x01\xe4\x40\x37\x1f\x9d\x42\x3d\x82\x7a\xa1\x2b\x43\x5b\x52\x08\xf7\xc2\x81\x53\xa5\xe5\x05\xca\x8d\xfe\x82\xda\xbb\x18\xa0\xfe\x27\xbb\x30\xd3\x2d\x0d\x8c\x89\xb3\xa6\x66\xd4\x51\x1c\x37\x19\x3f\xb7\x5d\x58\xef\xe8\x02\x42\xac\x55\xc8\x28\x37\xb8\x88\xbf\x65\xb9\x7a\x25\x8b\x10\xfb\xde\x4e\x49\x7f\xfc\xfa\xed\x47\xee\x1d\x5b\x76\x3c\xb0\x80\xe0\x78\x5c\x38\xe1\x91\xa4\x79\x74\x1a\xb2\x26\x5a\x4a\xce\x44\x4f\xe0\xde\x9b\x36\x1b\x6a\x36\x14\x43\x1a\x89\x27\x90\x30\x9c\x57\xdc\x98\xdc\x9a\x94\xd0\x93\x68\xba\xf5\x39\x49\xee\xcf\xbf\x2f\x03\x3b\x8d\x64\xed\xb4\x05\x59\xfb\xff\xf8\x63\x97\x4e\xd6\x91\x41\xae\x79\x78\xb0\x7f\xd5\xdf\x2c\xbe\x28\x54\xc8\x05\x32\xda\x79\x57\x66\xc9\x39\x39\x0e\x19\xdd\xe3\xfb\xb1\xfb\xf5\xe1\xfd\x06\x7f\x0a\x00\xe8\x85\x7b\x12\x2e\x43\x77\x75\x2c\x7b\x50\xd4\xb6\x3c\xcd\x1b\xda\xe0\xdd\xc1\x98\xd4\xb5\xd2\xe9\x9b\xc9\xdd\xb2\xc5\x9d\xf5\xd4\x7c\x9c\x9d\x9f\xca\xf4\xd6\x7b\x54\x4b\xad\x3a\x5a\x3f\x7e\x7e\x0a\xb0\x79\x4d\x14\x68\xe0\x17\x71\xb7\x50\xff\x26\xe1\xbd\xb8\xff\x0d\x00\x00\xff\xff\x6b\x0e\xc9\x02\x70\x02\x00\x00" func epochAdminSet_bonus_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1320,11 +1380,11 @@ func epochAdminSet_bonus_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/set_bonus_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x20, 0x8f, 0x73, 0xe4, 0xb3, 0x15, 0xd3, 0xb1, 0x4a, 0x58, 0xdb, 0xc7, 0xc6, 0x1a, 0xca, 0x74, 0x57, 0xfc, 0xb2, 0x4c, 0x2d, 0x98, 0xfb, 0x8c, 0xc1, 0x95, 0xfe, 0xf4, 0xf6, 0xd8, 0x29, 0xc4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0x59, 0x6d, 0x99, 0x1b, 0x9b, 0xe3, 0x7f, 0xac, 0xcc, 0x5b, 0x8e, 0xfc, 0xda, 0x10, 0xa3, 0xe1, 0x8e, 0x81, 0xf0, 0xde, 0xd9, 0x1e, 0x8c, 0x3c, 0xa0, 0x15, 0x29, 0xfc, 0x2f, 0x7f, 0xc1}} return a, nil } -var _epochAdminUpdate_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xcf\x4a\xc4\x30\x10\xc6\xef\x7d\x8a\x61\x0f\xd2\x5e\x8a\x5e\x3c\x14\x75\x29\xdd\x8a\x5e\x74\xb1\xf8\x00\x31\x1d\xb7\x81\x34\x13\x26\x13\x2a\xc8\xbe\xbb\xa4\xc1\x2d\xec\x1c\xc3\xf7\xe7\xf7\xc5\xcc\x9e\x58\xe0\xd9\xd2\xd2\x7b\xd2\x13\x7c\x33\xcd\x70\xfb\xd3\x1f\xdf\xbb\x97\xf6\x70\xf8\xe8\x87\xa1\x28\x84\x95\x0b\x4a\x8b\x21\x57\x3a\x5c\xde\xe2\xdc\xd9\x18\x04\x39\x34\xf0\xf9\xea\xe4\xee\xbe\x82\xdf\x02\x00\xc0\x33\x7a\xc5\x58\x06\x73\x72\xc8\x0d\xb4\x51\xa6\x56\x6b\x8a\x4e\x92\x64\xd5\xa4\xb3\x28\x80\xa9\xb0\x1d\x67\xe3\xe0\x11\xb2\xa1\xfe\x22\x66\x5a\x1e\x6e\x2e\x40\xf5\x2a\x78\x2a\x13\x57\xb3\x71\xd6\x2a\x3d\x0f\x42\xac\x4e\x78\x54\x32\x55\x97\xe8\x74\xfb\x3d\x78\xe5\x8c\x2e\x77\x1d\x45\x3b\x82\x23\x81\x1c\x0d\xab\x31\xcf\x0c\xd9\x0e\x5e\xc9\xb4\xab\x36\xb8\x0d\xac\x8e\x7e\x54\x82\x69\x30\x59\x8b\x5a\x88\xff\x97\x5f\x7d\x44\xee\x3f\x17\xe7\xbf\x00\x00\x00\xff\xff\x03\xa4\x2c\x1e\x52\x01\x00\x00" +var _epochAdminUpdate_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xf4\x30\x10\x86\xef\xfd\x15\x43\x0f\x4b\x7b\x09\x7c\x97\xef\x50\xd4\x65\x5d\x14\xbc\x88\x20\x7a\x1f\xd3\x71\x1b\x48\x33\x61\x32\xa1\x07\xd9\xff\x2e\x69\xb4\x05\xe7\x96\x90\x67\xde\x27\xaf\x9b\x23\x8b\xc2\xa3\xe7\xe5\x21\xb2\x9d\xe0\x53\x78\x86\x76\x3b\xb7\x4d\xa3\x82\x21\xa1\x55\xc7\xa1\x0b\xb4\x3c\xe7\xf9\xec\x73\x52\x92\x34\xc0\xdb\x53\xd0\x7f\xff\x7b\xf8\x6a\x00\x00\xa2\x50\x44\xa1\x2e\xb9\x4b\x20\x19\x00\xb3\x4e\xdd\x3d\x8b\xf0\xf2\x8e\x3e\x53\x0f\x87\x93\xb5\x9c\x83\x16\x62\x45\xca\x78\x52\xa0\x12\x76\x1a\x67\x17\xe0\x16\x2a\x6f\x92\xb2\xe0\x85\xcc\xc7\xba\xe1\xe6\xb0\x49\x99\xf5\xe1\x5d\x57\x5c\x87\xdd\xdd\x60\xb9\x7e\xad\xd4\x0b\xea\xd4\x6f\x11\x65\x8e\x47\x88\x18\x9c\xed\xda\x33\x67\x3f\x42\x60\x85\xba\x1a\x56\xb0\x7e\xfd\x27\x14\x22\xea\xd4\xf6\xbb\xe4\x2e\x68\x72\x1c\x51\xa9\xf4\xc0\xde\x93\x55\x96\xdf\x42\xfe\xf4\x53\xf3\xaf\xcd\xf5\x3b\x00\x00\xff\xff\xa4\x93\x38\x91\x66\x01\x00\x00" func epochAdminUpdate_clustersCdcBytes() ([]byte, error) { return bindataRead( @@ -1340,11 +1400,11 @@ func epochAdminUpdate_clustersCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_clusters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0x82, 0xa2, 0x21, 0x78, 0x90, 0x2d, 0xd5, 0x9d, 0xdb, 0x39, 0x32, 0x8a, 0x6b, 0x70, 0xe, 0xed, 0xcc, 0x2a, 0xd2, 0xba, 0x87, 0xd4, 0xdb, 0x78, 0xa5, 0x5a, 0x3a, 0xb7, 0xf5, 0xe9, 0x5a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0x2d, 0x63, 0x8c, 0xa3, 0x90, 0x7, 0x27, 0x5f, 0x26, 0x35, 0x5c, 0xa4, 0x14, 0xfc, 0xe7, 0x15, 0xcf, 0x58, 0xf0, 0x63, 0xa9, 0x64, 0xac, 0x59, 0x2f, 0x89, 0xc9, 0x99, 0x40, 0x69, 0xf8}} return a, nil } -var _epochAdminUpdate_dkg_phase_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\x4d\x4b\xc4\x30\x10\x86\xef\xfd\x15\xc3\x1e\xa4\xbd\x14\x0f\xe2\xa1\xa8\x4b\xd9\xd6\x0f\x3c\x58\x2c\x7a\x1f\xd3\x71\x13\x68\x33\x21\x99\x52\x41\xf6\xbf\x4b\x36\xd8\xb2\x73\x1c\xde\x8f\xe7\x35\x93\x63\x2f\xf0\x38\xf2\xd2\x3a\x56\x1a\xbe\x3d\x4f\x70\xfd\xd3\x76\x6f\x87\xe7\xba\x69\xde\xdb\xbe\xcf\x32\xf1\x68\x03\x2a\x31\x6c\x73\x4b\x4b\xa7\x31\xd0\xa7\xa1\x25\x54\xf0\xf1\x62\xe5\xf6\xa6\x80\xdf\x0c\x00\xc0\x79\x72\xe8\x29\x0f\xe6\x68\xc9\x57\x50\xcf\xa2\x6b\xa5\x78\xb6\xf2\x2f\x89\x37\x92\x00\xc5\xba\x7a\x98\x8c\x85\x7b\x48\xfa\xf2\x8b\xbd\xe7\xe5\xee\x6a\xc5\x29\xcf\x82\x87\x3c\x52\x55\x1b\x65\x89\xf1\xdd\x0b\x7b\x3c\x52\x87\xa2\x8b\x35\x3a\xde\x7e\x0f\x0e\xad\x51\xf9\xee\xc0\xf3\x38\x80\x65\x81\x14\x0d\x67\x63\x1a\x19\x92\x1d\x1c\x8a\xde\x15\xd9\x9a\xb0\x81\x95\xb3\x1b\x50\xa8\x79\x7d\xda\x16\x5f\xee\x4f\xbd\xa7\xec\xf4\x17\x00\x00\xff\xff\xe0\xf6\x16\x5e\x48\x01\x00\x00" +var _epochAdminUpdate_dkg_phase_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\x4d\x4b\xc4\x30\x10\x86\xef\xfd\x15\x43\x0f\x4b\x7a\xc9\x49\x3c\x14\x75\x59\x3f\x11\x2f\x0b\xe2\xde\xc7\x74\xdc\x04\xda\x4c\x48\x26\xf4\x20\xfb\xdf\x25\x8d\xb6\x38\xb7\x84\xbc\xef\xf3\x64\xdc\x14\x38\x0a\x3c\x8f\x3c\x3f\x05\x36\x16\xbe\x22\x4f\xd0\xae\xe7\xb6\x69\x24\xa2\x4f\x68\xc4\xb1\x57\x9e\xe6\xa3\xc5\x44\x27\x47\x73\xea\xe1\xe3\xd5\xcb\xf5\x55\x07\xdf\x0d\x00\x40\x88\x14\x30\x92\x4a\xee\xec\x29\xf6\x80\x59\xac\xba\xe7\x18\x79\x3e\xe1\x98\xa9\x83\xdd\xc1\x18\xce\x5e\xfe\x12\x65\x46\x12\xa0\x82\x3a\x0c\x93\xf3\x70\x0b\x35\xae\x93\x70\xc4\x33\xe9\xcf\xa5\xe0\x66\xb7\x2a\xe9\xe5\xe1\x9d\x2a\xa6\xfd\x66\xae\xb1\x5c\xbf\xd7\xd4\x11\xc5\x76\x2b\xa2\xcc\x7e\x0f\x01\xbd\x33\xaa\x7d\xe0\x3c\x0e\xe0\x59\xa0\x56\xc3\x12\xac\x1f\xff\x85\x42\x40\xb1\x6d\xd7\xac\x0d\x9b\xa0\xce\x61\x40\xa1\xc7\xb7\x97\x6d\x11\xff\xd7\x52\xb9\x97\xe6\xf2\x13\x00\x00\xff\xff\x94\xd7\x29\x1e\x5c\x01\x00\x00" func epochAdminUpdate_dkg_phase_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1360,11 +1420,11 @@ func epochAdminUpdate_dkg_phase_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_dkg_phase_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xff, 0x12, 0x5a, 0x44, 0xb8, 0xd5, 0xb8, 0x5, 0x2a, 0xd0, 0x45, 0x97, 0xa7, 0x29, 0x2a, 0x1a, 0x76, 0xdd, 0x50, 0x3e, 0x12, 0x2a, 0xfc, 0xbe, 0x96, 0x57, 0xce, 0x5, 0x83, 0xbd, 0xfa, 0x43}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x82, 0xa0, 0x30, 0xce, 0xb4, 0x51, 0x7b, 0xb0, 0x89, 0x4c, 0xa1, 0x7c, 0x59, 0xaa, 0xcd, 0x18, 0xb8, 0x5d, 0x4a, 0xb, 0xca, 0x8f, 0x30, 0x58, 0xd0, 0xa4, 0x14, 0x7c, 0x48, 0x80, 0x98, 0x3}} return a, nil } -var _epochAdminUpdate_epoch_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x94\x41\x6f\xdb\x38\x10\x85\xef\xfe\x15\x6f\x73\x58\xd8\x80\x57\xd9\xc3\x62\x0f\x46\x9b\xc0\x88\xdd\x24\x48\x9b\x04\x75\x9a\x9e\xc7\xd2\x48\x22\x22\x91\x02\x39\x8a\x0a\x14\xf9\xef\x05\x49\xdb\x92\x8c\xa2\x41\x50\x54\x07\x1f\x68\xce\x7b\x6f\x3e\x92\xa3\xea\xc6\x58\xc1\x87\xca\x74\xeb\xc6\xa4\x25\x72\x6b\x6a\xfc\xfb\x6d\x7d\x7f\x77\x71\xb5\x5c\xad\x3e\xaf\x37\x9b\xc9\x44\x2c\x69\x47\xa9\x28\xa3\xa7\xd9\x53\x71\x5f\x92\xe3\x8f\xac\x17\xf8\x72\xad\xe5\xff\xff\xe6\x70\x42\x4f\x4a\x17\xa3\x35\xf6\x7a\x83\x95\x19\xbe\x4f\x00\xa0\xb1\xdc\x90\xe5\xa9\x53\x85\x66\xbb\xc0\xb2\x95\x72\x99\xa6\xa6\xd5\xb2\xdf\xe2\xbf\x8a\x25\x4a\x2c\xb3\x5a\x69\xbc\x47\xdc\x9f\x6c\x8d\xb5\xa6\x7b\xf7\xf7\x21\x72\x12\x36\x9c\x4d\x7d\xf2\x45\xdf\x49\x42\x7e\x79\x23\xc6\x52\xc1\xf7\x24\xe5\xec\x20\xed\xbf\xf3\x73\x34\xa4\x55\x3a\x3d\xb9\x30\x6d\x95\x41\x1b\x41\x94\x46\x28\x8c\x20\x5c\x2c\x47\x43\x52\x9e\xcc\x26\x07\x05\x95\xe3\xaf\xde\x49\xb9\x47\xaa\x54\x16\xb0\x5c\x18\x9d\xab\xa2\xb5\x14\x60\xf5\x5c\xe6\x18\x80\xeb\xe1\x0c\x3b\x0e\x70\x62\xa6\x5b\xee\x10\xcf\xe3\x51\x71\xe7\x50\xb7\x4e\xb0\x65\x14\x96\x49\xd8\x42\x4a\xd2\x90\x92\xe1\xda\x1a\x26\xdf\xf3\x07\xe9\x0c\xab\x9b\x4b\x04\x23\x3c\xfb\xda\x93\xbe\xef\x97\xbe\x81\xd3\xd3\x53\xac\x5a\x86\x98\x20\x93\x53\x2a\x5e\x74\x87\xfc\xf7\x5d\x47\x46\x1d\x47\xa9\xb6\xc9\x48\x38\x28\x44\x9b\x34\xc0\x82\x8a\xaa\xa9\xb1\x96\x53\x81\xb1\x19\xdb\x04\x0f\xa5\x72\x78\xf6\x60\x03\x4b\x28\x87\xcc\x68\x86\xd1\x60\x4a\xcb\x91\xc4\xc8\x2e\xda\x24\xb8\x32\x5d\xd0\xd5\x6d\xbd\x65\xeb\x03\x87\x68\x7b\xbb\x58\xaf\x1c\xb6\xec\x9b\x88\x55\x19\x32\x16\xb6\xb5\xd2\xec\xc2\xae\x10\x66\x24\xaf\x34\xba\x52\xa5\xa5\xd7\x0d\x9c\xae\x75\x38\xaa\xf9\x60\x61\x13\xc9\x2c\xdb\xf0\x66\xe6\x81\x50\xff\xef\xea\xe6\x32\xa2\xd2\xcc\x99\x3f\x82\x2d\x1f\xec\x5d\x9b\x96\xf1\x24\xbc\xfb\xa0\xfd\x86\x9c\x63\x97\x8c\xa2\xfc\x03\xa5\x53\xcb\xe4\x7c\x03\x47\x71\x16\x7b\xdc\x47\xeb\xd8\x72\x6e\x2c\xbf\x39\xec\x91\x71\xc6\x6f\x30\x1e\x3b\x04\x83\x9f\xe1\x78\x25\xd9\x28\xc1\xed\xdd\xc3\x7a\x81\xaf\x0c\x72\xae\xad\x19\x25\x5b\xee\xb9\xf9\xdb\xd8\x04\xcd\x8a\x75\x21\xe1\x98\x6b\x4f\xd6\xd5\x54\x55\xa3\xab\xbc\xbb\xc3\xbb\x7d\xb9\xb1\xa0\xaa\x42\x63\x84\xb5\x28\xaa\x76\x17\x6c\xf7\xa0\x07\xfc\x55\x7e\x78\xc4\x38\x1b\x8c\x9d\x82\x25\xce\x80\x4f\x2c\x94\x91\xd0\x74\x96\x1c\x1f\xc1\xd1\xa3\xef\xc7\x5c\x12\xd1\x85\x5d\xa1\x62\x7a\x18\x14\xbf\xae\xd8\x21\x8a\x35\xfd\xd4\x79\xa5\x6a\x4f\x3e\x96\x0d\x06\xd4\x60\x66\x80\x2b\xc7\xaf\x05\xfe\x63\xf6\x6f\xc7\xf3\x32\x89\xbf\x2f\x3f\x02\x00\x00\xff\xff\xb6\x8b\x7d\x6b\xdb\x06\x00\x00" +var _epochAdminUpdate_epoch_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x94\x4f\x4f\xdc\x3a\x14\xc5\xf7\xf3\x29\xce\x9b\x05\x9a\x91\xe6\x85\xcd\xd3\x5b\x8c\x5a\x10\x05\x4a\x11\x2d\x45\x82\xd2\xf5\x9d\xe4\x26\xb1\x48\xec\xc8\xbe\x21\x8b\x8a\xef\x5e\xd9\xce\xe4\xcf\xa8\x2a\x42\x55\xb3\x40\xc2\xe3\x73\xce\xbd\x3f\xdb\x57\xd5\x8d\xb1\x82\x8f\x95\xe9\x2e\x1b\x93\x96\xc8\xad\xa9\xb1\x1c\xfe\x5f\x2e\x16\x62\x49\x3b\x4a\x45\x19\xbd\xca\x9e\x8a\xbb\x92\x1c\x7f\x66\xbd\xc5\xb7\x6b\x2d\xff\xff\xb7\x81\x13\x7a\x52\xba\x98\xad\xb1\x17\x4f\x56\xd6\xf8\xb1\x00\x80\xc6\x72\x43\x96\x57\x4e\x15\x9a\xed\x16\xd4\x4a\xb9\xfa\x60\xac\x35\xdd\x23\x55\x2d\xaf\x71\x74\x96\xa6\xa6\xd5\xb2\x57\xf8\xaf\x62\x89\x8e\x67\x59\xad\x34\xde\x23\xca\x13\x27\xc6\x52\xc1\xc9\x2e\x18\xbc\x3b\x1a\xca\x4e\xc2\xc6\x93\x95\xef\x66\x3b\x76\x97\x90\x5f\xbe\x8f\xaa\x3b\x92\x72\x3d\x44\xf8\xef\xf4\x14\x0d\x69\x95\xae\x96\xe7\xa6\xad\x32\x68\x23\x88\xd6\x08\xc2\x08\xa7\x0f\x45\x43\x52\x2e\xd7\x8b\xc1\x41\xe5\xf8\x67\x4c\x52\xee\x91\x2a\x95\x05\x5a\xe7\x46\xe7\xaa\x68\x2d\x05\x86\x23\xae\x0d\x26\x3c\x47\x66\xd3\xce\x03\xb3\x58\xd3\x2d\x77\x88\x67\xf4\xa8\xb8\x73\xa8\x5b\x27\xd8\x31\x0a\xcb\x24\x6c\x21\x25\x69\x48\xc9\x70\x6d\x0d\x93\xef\x8f\x05\xa4\x33\x5c\xdc\x5c\x21\x04\xe1\xd9\x6b\x97\x63\xdf\x2f\x63\x03\xc7\xc7\xc7\xb8\x68\x19\x62\x82\x4d\x4e\xa9\x78\xd3\x1e\xfd\x9f\xa7\xce\x82\x3a\x8e\x56\x6d\x93\x91\x70\x70\x88\x31\x69\x80\x05\x15\x5d\x53\x63\x2d\xa7\x02\x63\x33\xb6\x09\x1e\x4a\xe5\xf0\xec\xc1\x06\x96\x50\x0e\x99\xd1\x0c\xa3\xc1\x94\x96\x33\x8b\x59\x5c\x8c\x49\xf0\xc9\x74\xc1\x57\xb7\xf5\x8e\xad\x2f\x38\x94\xb6\x8f\x8b\x7a\xe5\xb0\x63\xdf\x44\x54\x65\xc8\x58\xd8\xd6\x4a\xb3\x0b\xbb\x42\x31\x33\x7b\xa5\xd1\x95\x2a\x2d\xbd\x6f\xe0\x74\xad\xc3\x51\x6d\x26\x0b\xf7\x91\xcc\x59\x1b\x9e\xd2\x26\x10\x1a\x7f\xbd\xb8\xb9\x8a\xa8\x34\x73\xe6\x8f\x60\xc7\x43\xbc\x6b\xd3\x32\x9e\x84\x4f\x9f\xb4\xdf\x90\x73\xec\x92\x59\x29\xff\x42\xe9\xd4\x32\x39\xdf\xc0\x41\x39\xdb\x3d\xee\x83\x75\xec\x38\x37\x96\xdf\x5c\xec\x41\x70\xc6\x6f\x08\x9e\x27\x84\x80\x5f\xe1\x78\xa5\xb2\x59\x05\xb7\x5f\x1f\x2e\xb7\xf8\xce\x20\xe7\xda\x9a\x51\xb2\xe5\x91\x9b\xbf\x8d\x4d\xf0\xac\x58\x17\x12\x8e\xb9\xf6\x64\x5d\x4d\x55\x35\xbb\xca\xfd\x1d\xee\xf7\xe5\xc6\x82\xaa\x0a\x8d\x11\xd6\xa2\xa8\xea\x2f\x58\xff\xa0\x27\xfc\x55\x3e\x3c\x62\x9c\x4c\xc6\x4e\xc1\x12\x67\xc0\x17\x16\xca\x48\x68\xb5\x4e\x0e\x8f\xe0\xe0\xd1\x8f\xe3\x2e\x89\xe8\xc2\xae\xa0\x58\x0d\x83\xe2\xf7\x8a\x1e\x51\xd4\x8c\x53\xe7\x15\xd5\x9e\x7c\x94\x4d\x06\xd4\x64\x66\x80\x2b\xc7\xaf\x15\xfc\xd7\xe2\xdf\x8e\xe7\x65\x11\xff\xbe\xfc\x0c\x00\x00\xff\xff\x69\x95\xf0\xa2\xef\x06\x00\x00" func epochAdminUpdate_epoch_configCdcBytes() ([]byte, error) { return bindataRead( @@ -1380,11 +1440,11 @@ func epochAdminUpdate_epoch_configCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_epoch_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0xab, 0xdb, 0xbd, 0xb, 0x46, 0x8f, 0x2, 0x4c, 0xe4, 0x61, 0xc1, 0x47, 0xe7, 0x37, 0x1d, 0xa2, 0xcd, 0x8e, 0xe1, 0xd7, 0x53, 0x84, 0x58, 0x17, 0x53, 0x94, 0xc1, 0xd8, 0xb1, 0x40, 0x40}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0xcd, 0x55, 0xcb, 0x2d, 0xe5, 0x21, 0x62, 0x30, 0xa4, 0xa3, 0x99, 0x58, 0x9e, 0xa2, 0xb1, 0x47, 0x7d, 0x26, 0xa1, 0x75, 0xd8, 0x12, 0x3f, 0xf, 0xf5, 0xc5, 0x3e, 0xf1, 0x44, 0x72, 0x60}} return a, nil } -var _epochAdminUpdate_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\xc1\x6a\xc3\x30\x0c\x86\xef\x79\x0a\xd1\xc3\x48\x60\x84\x1d\xc6\x0e\x65\x5d\x09\x69\xc6\x76\x5a\x59\xba\x07\xf0\x1c\x27\x31\xc4\x96\x51\x14\x3a\x18\x7d\xf7\xe1\x98\x34\xc9\xaa\x83\x91\x65\xfd\xd2\xe7\x5f\x1b\x87\xc4\xf0\xda\xe1\xb9\x70\x28\x5b\xa8\x09\x0d\x3c\xfc\x14\xc7\x8f\xfc\x2d\x3b\x1c\x3e\x8b\xb2\x8c\x22\x26\x61\x7b\x21\x59\xa3\x8d\xab\x81\x84\x4f\xb6\xf0\xf5\x6e\xf9\xe9\xf1\x1e\x48\xd5\x39\x0e\x96\x15\xad\x6a\x27\x6d\x54\xcf\xc2\xb8\xa9\x9a\xc0\x6f\x04\x00\xe0\x48\x39\x41\x2a\xee\x75\x63\xbd\x26\x1b\xb8\xcd\xa4\xf4\x23\xa6\x16\x1f\x9d\x62\x50\x9e\x29\xab\x8c\xb6\xb0\x83\xd0\x9f\x7e\x23\x11\x9e\x9f\xef\xae\xcc\xe9\xd8\xf0\x12\x7b\xf4\xed\xfc\x95\x54\xf8\x72\xc9\x48\xa2\x51\x47\xc1\x6d\x72\x1d\xed\x63\xbf\x07\x27\xac\x96\xf1\x26\xc7\xa1\xab\xc0\x22\x43\x18\x0d\xa3\x30\x38\xd1\x07\x39\x38\xc1\xed\x26\x89\x56\x70\x12\x6d\xad\x1b\xd8\x2d\x56\x8e\xe7\x49\x1b\x6d\x9b\x7c\x7c\x5d\xd8\x35\x65\x6b\xc3\xe6\xfc\xbf\x69\xcb\xdb\x8c\x3e\x3b\x92\x0e\xae\x12\xac\x6e\x57\x06\xae\x20\xb9\x44\x97\xbf\x00\x00\x00\xff\xff\x8d\xbe\x84\x8a\xe3\x01\x00\x00" +var _epochAdminUpdate_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x50\x4d\x6b\xf3\x30\x0c\xbe\xe7\x57\x88\x1c\x4a\x02\x2f\x39\xbd\xec\x50\xd6\x95\xae\x6c\xb0\xdb\x60\xdd\xee\x9a\xe3\x24\x86\xd8\x32\x8a\x4c\x0f\xa3\xff\x7d\x38\x5e\xbe\x36\x1d\x82\xa4\xf8\xf9\xd0\x63\xac\x27\x16\x78\xee\xe9\xfa\xe4\x49\x75\xd0\x30\x59\xc8\xe7\x39\xcf\x32\x61\x74\x03\x2a\x31\xe4\x8a\x3a\x30\xc6\x66\x0f\xef\x2f\x4e\xee\xfe\xff\x03\xd6\xcd\x99\x82\x13\xcd\x9b\xdd\xc5\x58\x3d\x08\x5a\x3f\x6d\x4b\xf8\xca\x00\x00\x3c\x6b\x8f\xac\x8b\xc1\xb4\x2e\x62\x30\x48\x57\x3c\x12\x33\x5d\x3f\xb0\x0f\xba\x84\xdd\x49\xa9\xc8\x38\x21\x62\xf5\x5a\x40\x47\x3f\xa7\xda\x1a\x07\x07\x48\xf0\x6a\x10\x62\x6c\x75\xf5\x39\x12\xdc\xef\x66\xdf\xd5\xf8\xf0\xa1\x88\xe7\xec\x97\xf3\x2a\x8c\xeb\xb7\x84\x7a\x45\xe9\xca\x59\x22\xd6\xf1\x08\x1e\x9d\x51\x45\x7e\xa6\xd0\xd7\xe0\x48\x20\x51\xc3\x08\x4c\xe9\xfc\x88\x82\x47\xe9\xf2\x32\xdb\x98\x54\xe4\x1a\xd3\xc2\x61\x25\x39\x7e\x2f\xc6\x1a\xd7\x9e\xc7\xbf\xab\x14\xa7\x6e\x9b\xe3\xd2\xff\xce\x72\x3d\x2d\xd6\x97\x64\xaa\xe0\x6b\x14\xfd\x57\x32\xf9\x4a\x90\x5b\x76\xfb\x0e\x00\x00\xff\xff\xe3\x9c\x76\xf0\xf7\x01\x00\x00" func epochAdminUpdate_epoch_timing_configCdcBytes() ([]byte, error) { return bindataRead( @@ -1400,11 +1460,11 @@ func epochAdminUpdate_epoch_timing_configCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_epoch_timing_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0x1f, 0x6d, 0xa3, 0x37, 0xf6, 0x2c, 0x57, 0xc5, 0x90, 0xee, 0xac, 0xac, 0x3c, 0xb6, 0x96, 0x6a, 0xe5, 0x89, 0x8e, 0xd9, 0x24, 0x2e, 0x57, 0xa, 0x3a, 0x27, 0x79, 0x9a, 0x26, 0xa4, 0xb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd5, 0x60, 0x43, 0x69, 0x61, 0x53, 0x36, 0x3b, 0x34, 0x20, 0x40, 0x4b, 0xee, 0xa4, 0xd9, 0x27, 0x7a, 0x77, 0x2e, 0xc2, 0x5f, 0x9, 0x20, 0x44, 0x58, 0x2, 0x82, 0xd2, 0x40, 0xc3, 0xc9, 0xce}} return a, nil } -var _epochAdminUpdate_epoch_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\xcf\x4a\xf4\x30\x14\xc5\xf7\x79\x8a\xc3\x2c\x3e\xda\x4d\xf9\x16\xe2\xa2\xa8\x43\x98\xa9\xe8\xca\xc1\xa2\xfb\x98\xc6\x69\xa0\xcd\x0d\xe9\x0d\x15\x64\xde\x5d\x92\x60\x07\xbc\xab\x10\xce\x9f\xdf\xb1\xb3\xa7\xc0\x78\x9c\x68\xed\x3c\xe9\x11\x9f\x81\x66\xfc\xff\xea\x4e\x2f\x87\x27\x79\x3c\xbe\x76\x7d\x2f\x04\x07\xe5\x16\xa5\xd9\x92\xab\x9c\x59\x65\xcc\xcf\x77\x6b\xd6\xa5\xc5\xdb\xb3\xe3\xdb\x9b\x1a\xdf\x02\x00\x7c\x30\x5e\x05\x53\x2d\xf6\xec\x4c\x68\x21\x23\x8f\x52\x6b\x8a\x8e\x7f\x25\xe9\x26\xc3\x30\xa9\x50\x0e\xb3\x75\xb8\x47\xd1\x37\x1f\x14\x02\xad\x77\xff\x36\xa0\x26\x0b\x1e\xaa\xc4\xd5\x5e\x39\x1b\x95\xbe\x7b\xa6\xa0\xce\xe6\xa4\x78\xac\xb7\xe8\x74\xfb\x3d\xbc\x72\x56\x57\xbb\x03\xc5\x69\x80\x23\x46\x89\x46\x36\x96\x99\x4b\xb1\xc3\x2b\x1e\x77\xb5\xd8\x12\xae\x60\x4d\xf4\x83\x62\x93\x2b\xf3\xdc\xbf\xf3\x4b\xed\x45\x5c\x7e\x02\x00\x00\xff\xff\x31\x03\xa1\x69\x49\x01\x00\x00" +var _epochAdminUpdate_epoch_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xc4\x30\x10\x85\xef\xfd\x15\x8f\x1e\x96\xf6\xd2\x93\x78\x28\xea\x52\x45\xc1\x9b\x20\xee\x7d\x4c\xc7\x6d\xa0\xcd\x84\x74\x42\x0f\xb2\xff\x5d\x92\x68\x17\x9c\x53\x12\xf2\xde\xf7\xe6\xd9\xc5\x4b\x50\xbc\xcc\xb2\x3d\x7b\x31\x13\xbe\x82\x2c\xa8\xf7\x7b\x5d\x55\x1a\xc8\xad\x64\xd4\x8a\x6b\x1c\x6f\x43\xcc\xc7\x93\xe5\x6d\xed\xf1\xf1\xea\xf4\xf6\xa6\xc5\x77\x05\x00\x3e\xb0\xa7\xc0\xcd\x6a\xcf\x8e\x43\x0f\x8a\x3a\x35\x8f\x12\x82\x6c\x27\x9a\x23\xb7\x38\x0c\xc6\x48\x74\xfa\xa7\x48\x33\xb3\x82\x13\x6c\x18\x17\xeb\x70\x8f\x22\xef\x56\x95\x40\x67\xee\x3e\xb3\xc1\xdd\x61\x0f\xd5\xe5\x8f\x0f\x4d\xca\xda\x5f\xb3\x77\x94\x9e\xdf\x8b\xea\x8d\x74\x6a\x77\x44\x9a\xe3\x11\x9e\x9c\x35\x4d\xfd\x24\x71\x1e\xe1\x44\x51\xac\x91\x85\x65\xf5\x5f\x28\x3c\xe9\x54\xb7\xd5\xee\x70\x0d\xd8\x45\x3f\x92\x72\x46\xe6\x16\xfe\xb7\x52\xb0\x97\xea\xf2\x13\x00\x00\xff\xff\x08\x1f\x1c\x16\x5d\x01\x00\x00" func epochAdminUpdate_epoch_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1420,11 +1480,11 @@ func epochAdminUpdate_epoch_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_epoch_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4f, 0xb9, 0x7, 0xd8, 0xff, 0x10, 0xc6, 0x15, 0x25, 0x69, 0x5, 0x27, 0x32, 0x30, 0xf3, 0x4e, 0x2f, 0x72, 0x33, 0xda, 0xfa, 0x1f, 0x2a, 0xd7, 0x5a, 0x14, 0xb2, 0x90, 0xd4, 0x9f, 0x25, 0x7b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1d, 0xaf, 0x8a, 0x1f, 0xbf, 0xa6, 0x25, 0x31, 0x9e, 0xff, 0x30, 0x9, 0x34, 0xd3, 0x90, 0xa4, 0xfd, 0x12, 0x32, 0x1f, 0x2, 0x95, 0xf1, 0x49, 0xb6, 0x85, 0x28, 0xf9, 0x7f, 0x47, 0x75, 0x8d}} return a, nil } -var _epochAdminUpdate_rewardCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\x41\x6b\xbc\x40\x0c\xc5\xef\x7e\x8a\xb0\x87\x3f\x7a\x91\xff\xa1\xf4\x20\x6d\x17\xd9\x55\x5a\x28\xac\xac\x94\xd2\x63\x3a\xa6\x3a\xa0\x93\x21\x46\xdc\x52\xf6\xbb\x97\x51\x58\xe9\x3b\x86\xf7\x5e\x7e\x89\x1d\x3c\x8b\x42\xd9\xf3\x5c\x78\x36\x1d\x7c\x09\x0f\xf0\xff\x52\x54\xa7\xc3\x73\x7e\x3c\x9e\x8b\xba\x8e\x22\x15\x74\x23\x1a\xb5\xec\x62\x47\xf3\x99\x66\x94\x26\xaf\x3e\x32\x78\x2b\xed\xe5\xfe\x2e\x81\x9f\x08\x00\xc0\x0b\x79\x14\x8a\x47\xdb\x3a\x92\x0c\xf2\x49\xbb\xdc\x18\x9e\x9c\x06\xcb\xe2\x09\xea\x49\x81\xc2\xba\xbc\x19\xac\x83\x47\x58\x03\xe9\x27\x8b\xf0\xfc\xf0\xef\x86\x93\x2e\x86\xa7\x38\x50\x65\x1b\x65\x8a\x61\x5c\x2b\x0b\xb6\x54\xa1\x76\xc9\xad\x3a\x68\xbf\x07\x8f\xce\x9a\x78\x77\xe0\xa9\x6f\xc0\xb1\xc2\x5a\x0d\x4b\x70\x3d\x72\x5c\xe3\xe0\x51\xbb\x5d\xb2\xc1\x6d\x60\xe9\xe4\x1b\x54\x2a\x5f\x4f\xef\xf5\xe4\x7d\xff\xfd\xe2\x8c\x10\x8e\x54\x91\x18\x72\x8a\x2d\xfd\x79\xc7\x4a\x71\x8d\xae\xbf\x01\x00\x00\xff\xff\x9e\x26\x8d\xcb\x56\x01\x00\x00" +var _epochAdminUpdate_rewardCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\xc1\x4a\xc4\x30\x10\x86\xef\x7d\x8a\xa1\x87\xa5\xbd\xf4\x24\x1e\x8a\xba\x54\xb1\x20\x08\x16\x17\x15\x8f\x63\x3a\xb6\x81\x36\x13\xa6\x13\xaa\xc8\xbe\xbb\xb4\xd1\x2e\x3b\xb7\x84\x7c\xff\xff\x65\xec\xe8\x59\x14\xea\x81\xe7\x7b\xcf\xa6\x87\x4f\xe1\x11\xd2\xed\x9c\x26\x89\x0a\xba\x09\x8d\x5a\x76\x99\xa3\xf9\x99\x66\x94\xb6\x6a\xde\x4b\x78\xa9\xed\xd7\xe5\x45\x0e\x3f\x09\x00\x80\x17\xf2\x28\x94\x4d\xb6\x73\x24\x25\x60\xd0\x3e\xbb\x65\x11\x9e\x5f\x71\x08\x94\xc3\xae\x32\x86\x83\xd3\x7f\x62\x99\x81\x14\x68\x69\xaa\xda\xd1\x3a\xb8\x86\x88\x17\x93\xb2\x60\x47\xc5\xc7\x1a\x70\xb5\xdb\x8c\x8a\xf5\xe1\x4d\xb6\x88\x96\x27\xf1\x02\x97\xeb\x43\xa4\x1a\xd4\x3e\xdf\x2a\x96\xd9\xef\xc1\xa3\xb3\x26\x4b\xef\x38\x0c\x2d\x38\x56\x88\xd1\xb0\x82\xf1\xdf\x7f\xa5\xe0\x51\xfb\x34\x4f\xb6\x84\x93\x60\x11\x7c\x8b\x4a\xf5\xe3\xd3\xdb\x21\x78\x3f\x7c\x3f\x38\x23\x84\x13\x35\x24\x86\x9c\x62\x47\x67\x4b\x8a\x16\xc7\xe4\xf8\x1b\x00\x00\xff\xff\x36\x0b\xb8\x8f\x69\x01\x00\x00" func epochAdminUpdate_rewardCdcBytes() ([]byte, error) { return bindataRead( @@ -1440,11 +1500,11 @@ func epochAdminUpdate_rewardCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_reward.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0x9b, 0x4a, 0x66, 0xb5, 0x60, 0xad, 0x5b, 0x16, 0x20, 0x4a, 0x74, 0x57, 0x86, 0x99, 0x3e, 0xa4, 0x6c, 0x68, 0xd7, 0x49, 0x3f, 0xef, 0xe2, 0x6, 0x7, 0xcc, 0x78, 0xf3, 0xe6, 0xfa, 0xd9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0x15, 0x3f, 0xbe, 0xe9, 0xbe, 0xe7, 0xe5, 0x26, 0x20, 0xbc, 0x39, 0x7e, 0xe9, 0x8e, 0x3e, 0x10, 0xb7, 0x38, 0x63, 0x11, 0xfc, 0x1, 0xbc, 0xa9, 0xb7, 0x56, 0xc3, 0x3, 0x42, 0x57, 0x9b}} return a, nil } -var _epochAdminUpdate_staking_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xcf\x4a\xc4\x30\x10\xc6\xef\x79\x8a\x61\x0f\xd2\x5e\x8a\x07\xf1\x50\xd4\x25\xec\x56\xf4\xe4\x62\xd1\xfb\x98\xc6\x36\xd8\xce\x84\x74\x42\x05\xd9\x77\x97\x34\xd8\x05\xe7\x18\xbe\x3f\xbf\x2f\x6e\xf2\x1c\x04\x1e\x47\x5e\x1a\xcf\x66\x80\xcf\xc0\x13\x5c\x7f\x37\xa7\x97\xc3\x93\x3e\x1e\x5f\x9b\xb6\x55\x4a\x02\xd2\x8c\x46\x1c\x53\x41\x76\x69\x05\xbf\x1c\xf5\xef\xce\x2e\x73\x0d\x6f\xcf\x24\xb7\x37\x25\xfc\x28\x00\x00\x1f\xac\xc7\x60\x8b\xd9\xf5\x64\x43\x0d\x3a\xca\xa0\x8d\xe1\x48\xf2\x27\x49\x37\x5a\x01\x9b\x0a\x75\x37\x39\x82\x7b\xc8\xfa\xea\x83\x43\xe0\xe5\xee\x6a\x03\xaa\x56\xc1\x43\x91\xb8\xea\x0b\x67\x85\xe9\xb9\x15\x0e\xd8\xdb\x13\xca\x50\x6e\xd1\xe9\xf6\x7b\xf0\x48\xce\x14\xbb\x03\xc7\xb1\x03\x62\x81\x1c\x0d\xab\x31\xcf\x9c\xb3\x1d\x3c\xca\xb0\x2b\xd5\x96\x70\x01\xab\xa2\xef\x50\xac\x8e\xeb\xf6\x75\xf0\xff\x0f\xc8\xc5\x67\x75\xfe\x0d\x00\x00\xff\xff\x9e\x01\x4d\x3d\x4b\x01\x00\x00" +var _epochAdminUpdate_staking_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xc4\x30\x10\x85\xef\xfd\x15\x43\x0f\x4b\x7b\xc9\x49\x3c\x14\x75\xa9\xa2\xe0\x4d\x58\xdc\xfb\x98\x8e\x6d\xb0\x9d\x09\xe9\x84\x1e\x64\xff\xbb\x24\xd1\x2e\xf8\x6e\x09\x79\xef\x7d\x79\x6e\xf1\x12\x14\x5e\x66\xd9\x9e\xbd\xd8\x09\x3e\x83\x2c\x50\xef\xe7\xba\xaa\x34\x20\xaf\x68\xd5\x09\x37\x4c\xdb\x49\xf1\xcb\xf1\x78\x76\xb4\xad\x1d\xbc\xbf\xb2\xde\xde\xb4\xf0\x5d\x01\x00\xf8\x40\x1e\x03\x35\xab\x1b\x99\x42\x07\x18\x75\x6a\x1e\x25\x04\xd9\xce\x38\x47\x6a\xe1\xd0\x5b\x2b\x91\xf5\xcf\x91\x34\x93\x02\xa5\xb2\x7e\x58\x1c\xc3\x3d\x14\xbb\x59\x55\x02\x8e\x64\x3e\x72\xc0\xdd\x61\x87\x32\xf9\xe1\x43\x93\x58\xbb\x2b\xbb\xc1\x74\x7d\x2a\xae\x37\xd4\xa9\xdd\x2b\x92\x8e\x47\xf0\xc8\xce\x36\xf5\x93\xc4\x79\x00\x16\x85\x12\x0d\xd9\x58\xbe\xfe\x5b\x0a\x1e\x75\xaa\xdb\x6a\x4f\xb8\x02\x9a\xe8\x07\x54\xea\x63\x9e\x24\xef\xf0\x7f\x97\x52\x7c\xa9\x2e\x3f\x01\x00\x00\xff\xff\x86\xa7\x6b\x09\x5f\x01\x00\x00" func epochAdminUpdate_staking_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1460,11 +1520,11 @@ func epochAdminUpdate_staking_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_staking_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x48, 0x2e, 0xa2, 0x66, 0x2c, 0x29, 0xe2, 0xbf, 0xdd, 0x5e, 0x40, 0xcb, 0xb9, 0xb5, 0x61, 0x12, 0x2c, 0x66, 0x4a, 0x87, 0x97, 0xc8, 0xa6, 0x8f, 0x8c, 0x46, 0x9a, 0x63, 0x86, 0xf0, 0x79, 0x95}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0xc5, 0xe9, 0xd8, 0x71, 0xef, 0xa, 0x19, 0xd, 0xc0, 0x54, 0x1c, 0x22, 0x6f, 0x41, 0xf5, 0xc4, 0x93, 0x64, 0x53, 0x59, 0xf5, 0xac, 0xb0, 0x85, 0xa0, 0x42, 0x71, 0x7c, 0x86, 0x6d, 0xba}} return a, nil } -var _epochNodeRegister_dkg_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6f\xe2\x40\x0c\x85\xef\xf9\x15\x16\x87\x55\x90\x96\x68\xcf\x11\x5b\x94\x32\x29\x45\x54\x14\x91\x5c\x7a\x1c\x26\x26\x19\x11\xc6\x23\xc7\x94\x4a\x15\xff\xbd\x82\x34\x34\xa8\xf8\x34\x92\xbf\x79\x7e\xcf\xb6\x7b\x4f\x2c\xf0\x54\xd3\x31\xf5\x64\x2a\xd8\x32\xed\xe1\xdf\x47\xba\x7a\x9d\x3e\x27\x4a\xad\xd3\x2c\x0b\x7a\xd0\x5c\xe5\x7a\x53\x63\x26\x7a\x67\x5d\xd9\xd1\x73\x95\x2e\xf3\x79\xfe\x96\x27\x8f\x2f\xe9\x9d\x5f\x6a\x31\xeb\x50\xb5\x98\x75\x40\x20\xac\x5d\xa3\x8d\x58\x72\xe1\x10\x3e\x83\x00\x00\xc0\x33\x7a\xcd\x18\x36\xb6\x74\xc8\x31\x24\x07\xa9\x12\x63\xe8\xe0\xe4\xca\x9c\xab\x46\x01\x47\x05\xae\x71\x0b\xff\xa1\xa5\xa3\x0d\x31\xd3\x71\xfc\xe7\xb7\xd5\x68\x49\xc5\xe5\x8d\xfc\x10\x9e\xbd\xc4\x77\xf2\xf4\xa0\x4c\x88\x75\x89\x2b\x2d\xd5\xf0\x3a\xf3\x5c\x93\x09\x78\xed\xac\x09\x07\x53\x3a\xd4\x05\x38\x12\x68\xc7\x5e\xec\x00\xe3\x16\x19\x9d\xc1\x36\x71\xd3\xea\x80\xd7\x52\x0d\x86\xb7\xf6\x8b\x5d\xb9\xd2\x2c\xd6\x58\xaf\x9d\xc0\x78\xf4\x73\x87\xa8\x44\x51\x8b\x59\xaf\x1d\xba\xab\xb7\xb8\x0b\xde\xd3\xfb\x5e\x40\xa3\xdf\x31\x1c\x8f\x6e\x95\xff\x82\x50\xdc\x1d\x22\xea\x35\x6e\x42\x5e\xa4\x4e\xc1\xe9\x2b\x00\x00\xff\xff\x27\xf5\x15\x16\x13\x02\x00\x00" +var _epochNodeRegister_dkg_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x51\x6e\xc2\x30\x0c\x86\xdf\x7b\x0a\xab\x0f\x28\x95\x46\x0f\x50\xb1\xa1\x69\xdd\xd0\x84\x34\xa1\xb1\x0b\x98\xd4\xb4\x11\x25\x8e\x5c\x33\x1e\x26\xee\x3e\x41\xa1\x4b\xb7\xf9\x29\x91\x7f\xdb\x9f\x7f\xbb\x7d\x60\x51\x78\x69\xf9\xf8\x1c\xd8\x36\xb0\x15\xde\x43\x3a\xfc\xd3\x24\x52\xbc\x96\x1f\xb8\x69\x69\xad\xb8\x73\xbe\x8e\xa4\xe3\xc4\xa8\xa6\x5c\x2e\x22\x61\xb9\x5c\xa4\x49\xa2\x82\xbe\x43\xab\x8e\xbd\xc9\xe0\x2b\x49\x00\x00\x82\x50\x40\x21\xd3\xb9\xda\x93\x14\x80\x07\x6d\xcc\x5a\x59\xb0\xa6\x0c\x26\x8f\xd6\xf2\xc1\xeb\x20\x3f\x47\x4b\x0a\x9e\x2b\x7a\xa7\x2d\xdc\x43\x5f\x98\x77\x7d\x49\xbe\x61\x11\x3e\xce\x26\x7f\xf9\xf2\x37\xae\x2e\x6f\x92\x07\x73\x66\x2b\xfe\xd9\x2e\x12\x5d\x21\x56\xa8\x4d\x36\xcc\x3e\xc7\x7c\x0e\x01\xbd\xb3\x26\x7d\xe2\x43\x5b\x81\x67\x85\x7e\xec\x05\x0b\x84\xb6\x24\xe4\x2d\xf5\x0e\x5c\xc9\x20\xa0\x36\x69\x36\x5e\xa3\xda\xd5\x2b\x14\x75\xd6\x05\xf4\x0a\xb3\xe9\xcf\x49\xf2\x9a\xb4\x5c\x2e\xa2\xb4\xf1\x03\x5b\x71\x33\x20\xea\xf7\xcb\x88\x0e\x3f\xc9\xcc\xa6\xe3\x09\x77\xa0\x5c\xdc\x0e\x94\x47\x89\xd1\xb2\x97\x96\xa7\xe4\xf4\x1d\x00\x00\xff\xff\x4e\x62\x63\xb2\x26\x02\x00\x00" func epochNodeRegister_dkg_participantCdcBytes() ([]byte, error) { return bindataRead( @@ -1480,11 +1540,11 @@ func epochNodeRegister_dkg_participantCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/node/register_dkg_participant.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x7, 0xc8, 0x9e, 0x29, 0xfb, 0xa9, 0xfe, 0xec, 0xee, 0x49, 0x5a, 0x1c, 0x1a, 0x36, 0x13, 0x5e, 0x8, 0xf1, 0x41, 0xf3, 0x3a, 0xed, 0xf3, 0x7d, 0x78, 0x7, 0x7e, 0x64, 0x34, 0x92, 0x74}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0xdd, 0x3f, 0x15, 0x1e, 0xf, 0x7e, 0x70, 0x58, 0xec, 0x18, 0xf8, 0x58, 0xb3, 0x8e, 0x70, 0xd4, 0x98, 0xda, 0x47, 0xb5, 0xc2, 0x4b, 0x55, 0xa9, 0xa6, 0x77, 0x76, 0x6e, 0xfb, 0xdb, 0x66}} return a, nil } -var _epochNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x56\xdd\x6f\x22\x37\x10\x7f\xe7\xaf\x18\xdd\xc3\x69\x91\xc8\xd2\x56\x55\x55\xad\xe0\x4e\x14\x48\x8a\x88\xf2\x05\x77\x55\x55\xf5\xc1\xb1\x67\x59\x97\xc5\xde\xda\x43\x39\x14\xf1\xbf\x57\x5e\xb3\x5f\xd9\x4d\x9a\x56\x7d\xbb\x3c\x04\x7b\x3e\x7e\x8c\x67\x7e\x33\x83\xdc\x65\xda\x10\x4c\xcd\x31\x23\xdd\x3b\xdf\x2e\x53\x7d\x58\xcc\xd6\xec\x31\xc5\x15\xb1\xad\x54\x1b\x88\x8d\xde\xc1\x37\x5f\x16\xb3\xf9\xcd\x7a\xb1\xfe\x75\x3d\xf9\xe9\x7a\x3e\x99\xcd\x1e\xe6\xab\x55\xdd\x6b\xad\xb7\xa8\x0a\xe3\xcb\xeb\xdb\x5f\xd6\xb7\xcb\xf9\x4d\x87\xe1\x34\xdd\x5b\x42\x73\x3f\x2d\x8c\xef\xa7\x1d\x56\xb3\xe5\x55\xa1\x9f\x2d\xaf\x3a\x0c\xe6\x99\xe6\x49\x61\x32\xbf\xbb\x9d\xfe\x5c\x18\xf5\x86\x43\x58\x27\xd2\x02\x19\xa6\x2c\xe3\x24\xb5\x02\x6e\x90\x11\x5a\x60\xa0\xf0\x00\x4a\x0b\x04\x4b\x66\xcf\x09\xf4\xe3\x1f\xc8\xc9\x3b\xa1\x1a\x80\x8c\x81\x12\xf4\x26\xd2\x39\x70\x9d\xa6\xc8\x49\x9b\x5c\x36\x78\x06\xc5\x38\xd7\x7b\x45\xc0\x94\x00\x26\x84\x13\xdf\x4f\xcf\xa0\x40\x1a\x64\x0e\xbd\x68\x83\x2a\x8b\xca\xee\xed\x19\x54\xd2\x3f\xe3\xba\x9c\x34\x80\x7b\xb5\x17\x06\x3d\x00\x00\x29\x22\x58\x91\x91\x6a\x33\xc8\xef\x46\xa7\x18\xc1\xa7\x85\xa2\x1f\xbd\x40\x21\x1d\xb4\x71\x85\x9d\x08\x61\xd0\xda\xa6\x7d\xa5\x5e\xe2\xb1\xa9\xb2\x9e\x0f\x2d\x39\xdb\xb9\x38\x23\xf8\x74\x29\xbf\xfc\xf0\xbd\x97\x65\xfb\xc7\x54\xf2\x25\x1e\x6d\x04\xbf\x79\x86\x85\x4b\x3c\x5e\x4b\x4b\x73\x45\xe6\xf8\x7b\xaf\x0f\x4f\xbd\xdc\x34\x45\x82\xb8\xe0\xcf\x03\xc6\x11\xbc\x2f\xe9\x14\x7e\x66\xfb\x94\xbc\x5d\x66\x30\x63\x06\x03\xc6\x39\x45\x30\xd9\x53\x32\xf1\x19\x2a\x91\xf2\x20\x31\x8d\xc3\x3a\x1c\x8c\x5d\x26\x29\x7c\xd4\xc6\xe8\xc3\xe8\x39\xf6\x87\xc0\x31\x28\x82\xa1\x25\x6d\xd8\x06\x87\xa5\x6f\xae\xee\x97\xc0\xee\xef\xe3\x47\xc8\x98\x92\x3c\x78\x37\xd5\xfb\x54\x80\xd2\x04\x1e\x17\x0c\xc6\x68\x50\x71\x74\x95\x71\xec\x87\xdc\xff\x5d\xbf\x0a\x6d\x38\x84\x07\xdc\x48\xc7\x7d\xb8\xd1\x02\x4b\x85\x8c\xdb\x21\x36\x7b\x30\x74\xf6\xee\x8c\xa6\x08\xf8\x55\xa3\x95\x7f\xcc\x1d\xa3\xa4\x0f\xe3\x31\x28\x99\xd6\x93\x54\xa4\x5d\x95\x0e\x30\xba\xe8\x42\x64\x42\x38\xd0\x07\xe4\xda\x88\xa0\xe1\x5f\x90\x4d\x8a\x41\x4b\xee\x49\xe7\xfe\xb7\x75\x1d\xfc\x6b\x89\x5e\xf3\xca\xe9\xd7\xb8\xb6\xad\xeb\x4c\xad\xce\x6d\x3b\x72\x75\xb6\x53\xbd\xdb\x49\x22\x14\x11\x8c\x2e\x5a\xfc\x09\x0f\x92\x12\x61\xd8\x21\x28\x78\xee\x3f\x9b\xcc\xe8\x37\x93\x9b\x97\xd3\xb2\xbf\x30\x18\x5d\x54\x49\x1e\x00\xe9\x7f\x51\xb8\x0e\xc8\x54\xaa\xed\xe8\xfd\xd3\xab\x10\x77\x79\xeb\x9d\x3e\xb4\xcb\xf5\x06\x37\xf7\xc5\x1d\x79\x62\x66\x83\xf4\xf6\xd0\x9f\xa5\xa6\x38\x9d\xaa\x17\x15\xec\x7b\xa1\x41\xff\x3f\xf6\xbf\xb5\x7f\xf3\xc1\x5c\x35\x71\xbe\x56\xce\x23\x01\x32\x46\x49\xbd\x91\x8b\xe0\x17\x2a\xd6\x30\x7e\x29\x16\xa7\x0d\x72\xb3\x59\x54\xbc\x35\x94\xa2\x39\x10\x3a\xd6\x42\xb1\x6b\xb4\x69\xed\x08\xbf\x20\x80\x81\x45\xae\x95\x60\xe6\x58\x6e\x89\x58\x1b\x87\x24\x0d\xd8\x0c\xb9\x8c\x25\x3f\x6f\x0a\x5b\x1f\x33\x45\xd4\xa1\xeb\x4d\x37\x18\xbe\x05\x66\xfd\x76\xe8\x9a\x0f\x3b\xc6\x13\xa9\x70\xc2\x39\xc1\xb8\x3e\x72\x83\x8c\x1d\xd1\x44\x79\xe1\x9a\x29\x76\x71\x6c\xf1\x08\x52\xd5\x76\x00\x3c\xb5\x28\x55\x83\x0e\xb7\x78\xb4\x6e\xd4\x04\xa5\x47\xe4\x30\xc2\xf2\x3a\x80\x84\xd9\x64\x92\x6e\xb4\x91\x94\xec\xbc\xb6\x21\x1a\xc0\x01\xe5\x26\x21\xaf\xf2\xe7\x66\x60\xa7\xf6\xf3\xfe\xe4\x9f\x35\x55\xb3\x2f\xff\x41\x11\x6e\x90\xca\x1f\x28\xb9\x3a\xa8\x1a\xb8\xac\xe3\xb3\xde\xac\x3f\xe6\xdc\xf5\x67\xec\xaa\xe5\x4b\xd0\x30\x57\x74\x37\xfa\x09\x30\xb5\xd8\x59\xa9\xef\xbe\xe6\x4a\x89\xed\xe6\x8e\x19\x92\x5c\x66\x4c\x51\xab\x60\xb3\xe5\x55\x4d\xfd\xdf\x0a\xd6\xfc\x8a\xaa\x6e\xb3\xe5\x55\x58\x53\xbc\x50\x37\x7f\x3c\xf5\x4e\x7f\x07\x00\x00\xff\xff\x85\xfa\xf3\xa8\x55\x0b\x00\x00" +var _epochNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x56\x4b\x8f\xdb\x36\x10\xbe\xfb\x57\x0c\xf6\xb0\x90\x01\xad\x8c\x16\x45\x51\x08\x76\x02\xc3\xce\x2e\x0c\x07\xed\x66\x77\x93\x1c\x8a\x1e\x68\x72\x64\xb1\x96\x49\x95\x1c\xd5\x15\x16\xfe\xef\x05\xf5\x66\xe4\x6c\x12\xb4\xb7\xf8\x20\x8b\xf3\xf8\x66\x86\xf3\x92\x3c\xe6\xda\x10\xac\x4c\x99\x93\x9e\x34\xa7\xdb\x4c\x9f\x36\xeb\x27\xb6\xcb\xf0\x91\xd8\x41\xaa\x3d\x24\x46\x1f\xe1\x6a\xcc\xb8\x1a\xea\x3c\xe9\x03\xaa\x81\x68\x75\xf6\x24\x56\x59\x61\x09\xcd\xbb\xd5\x40\xaa\xa3\x79\x92\xeb\xed\xdd\x40\x66\xbd\xbd\xf3\xb8\x6f\x72\xcd\xd3\x01\xbf\x3a\xf7\x12\x85\xda\xcb\x5d\x86\x9e\x3f\x43\xda\xd5\x64\x32\x9b\xc1\x53\x2a\x2d\x90\x61\xca\x32\x4e\x52\x2b\xe0\x06\x19\xa1\x05\x06\x0a\x4f\xa0\xb4\x40\xb0\x64\x0a\x4e\xa0\x77\x7f\x22\xa7\x5a\x09\x55\x08\x32\x01\x4a\xb1\x16\x91\x4e\x81\xeb\x2c\x43\x4e\xda\x54\xb4\xf0\x13\x28\xc6\xb9\x2e\x14\x01\x53\x02\x98\x10\x8e\xfc\x6e\xd5\x80\x02\x69\x90\x15\xf4\x66\x0c\xaa\x2c\x2a\x5b\xd8\x06\x54\xd2\x97\x71\xdd\xbd\x79\xc0\x93\x41\x84\xc1\x04\x00\x40\x8a\x18\x1e\xc9\x48\xb5\x0f\xab\xb3\xd1\x19\xc6\xf0\x7e\xa3\xe8\x97\x9a\xa0\x90\x4e\xda\xb8\xf4\x2e\x85\x30\x68\xad\x2f\xdf\xb3\xb7\x58\xfa\x2c\x5b\x57\xc5\x88\xce\x8e\xce\xcf\x18\xde\xdf\xca\x7f\x7e\xfe\xa9\xa6\xe5\xc5\x2e\x93\x7c\x8b\xa5\x8d\xe1\xf7\xba\x00\xa3\x2d\x96\x6f\xa5\xa5\x37\x8a\x4c\xf9\xc7\x64\x0a\xcf\x93\x4a\x34\x43\x82\xa4\x2d\xa8\x07\x4c\x62\x60\x05\xa5\x81\x97\xd3\xe8\xa3\xa4\x54\x18\x76\x9a\xc2\x75\x57\x7c\xd1\x07\x56\x64\x54\x83\xe4\x06\x73\x66\x30\x60\x9c\x53\x03\xf0\x48\xda\xb0\x3d\x86\xb0\x62\x39\xdb\xc9\x4c\x92\x44\x1b\xc2\x52\x88\x2d\x96\x53\xb8\x5e\xd6\xf7\xdb\xf9\x51\x85\x88\x59\x12\x0d\x9d\x81\x85\xcb\x03\x45\xb6\x06\x8b\x76\xda\x18\x7d\x9a\x7f\x93\x87\xaf\x02\x57\xa5\x31\xcc\x1a\x90\x59\x67\xa0\x62\x4f\x3b\xeb\xee\xf7\xfa\x35\xe4\x4c\x49\x1e\x5c\xad\x74\x91\x09\x50\x9a\xa0\x36\x0a\x06\x13\x34\xa8\x38\xba\xe4\xdf\xbe\xfd\xed\x23\x54\xfa\x57\xd3\xde\xff\xd9\x0c\x1e\x70\x2f\x5d\xcb\xc1\xaf\x5a\x60\xc7\x90\xc9\xc5\x38\xae\xc7\x4d\x1f\x39\x3d\xf7\x8e\xa6\x75\xfc\x45\xa1\xe6\x9a\xef\x19\xa5\x53\x58\x2c\x40\xc9\x6c\x78\xa3\x6d\x86\x55\xa7\x00\xf3\x9b\x4b\x88\x4c\x08\x07\xfa\x80\x5c\x1b\x11\x78\xfa\x6d\x5d\x4b\x11\x8e\xe8\x75\x7d\xbb\xe7\x98\x77\xa1\xd4\x47\xa4\x97\xb4\xaa\x4a\xf7\x8e\x63\xe9\x61\x53\xf4\xef\x63\x39\x72\xf9\xb6\x2b\x7d\x3c\x4a\x22\x14\x31\xcc\x6f\x46\xc5\x16\x9d\x9a\x1a\x0a\xda\x96\xaa\xff\xfd\x0a\x99\xfa\x97\xeb\xa5\xd5\xb2\xbf\x31\x98\xdf\xf4\x97\x1d\x02\xe9\x6f\x48\xe0\x4b\x79\x5b\xb1\xbc\xed\x06\x3e\xe8\xa8\xce\xb6\xb4\xb6\xc0\xf9\xf5\xf3\x8b\xc6\xee\xab\xb9\x70\x7e\x15\x7c\xbd\x4b\xa3\x60\x3d\xeb\xd5\xa0\xb1\x69\xe0\xf9\x19\x02\xa3\x2f\x44\x5d\x3b\xe2\x5b\x38\xf7\xe1\xb7\xa1\x7f\x7e\x04\xfc\xcf\xad\xf3\xb5\x43\xa0\x5a\x20\xfd\x24\xa8\xf6\x5f\xe3\x19\xe4\x8c\xd2\xe1\x34\x68\x83\xd8\xa8\x44\xc3\xe2\x73\xbe\x38\x6e\x75\x7d\x9b\x75\xdc\xc6\x1c\x49\xe1\x4f\x95\x0b\xeb\xab\xdd\x89\xda\x8c\x76\x59\xbd\xc8\x80\x81\x45\xae\x95\x60\xa6\xec\xb6\x59\xa2\x8d\x43\x92\x06\x6c\x8e\x5c\x26\x92\x37\x1b\xcd\x0e\x67\x55\xeb\x75\xe4\x1a\xdb\x4d\x95\x1f\x80\xd9\x7a\x8b\x5d\x1a\x2e\x47\xc6\x53\xa9\x70\xc9\x39\xc1\x02\x9a\xc1\x1e\xe4\xac\x44\x13\x57\xc9\xf3\xaf\xd7\xf9\x70\xc0\x12\xa4\x1a\xec\x29\x78\x1e\xf5\xec\x00\x36\x3a\x60\x69\xdd\x8c\x0a\x3a\x8d\xd8\x61\x44\xdd\x31\x84\x94\xd9\x74\x99\xed\xb5\x91\x94\x1e\x6b\xae\x47\x0a\xe1\x84\x72\x9f\x52\xcd\xaa\xdf\x7d\xc7\xce\xe3\xd0\xfe\xe2\x1f\x34\xf5\x43\xb3\xfa\x16\x8a\xf6\x48\xdd\x87\x55\xc5\x1e\x94\x7f\x97\x43\x1f\x7a\x18\xcb\x27\xd3\xa2\x31\xd1\x8f\x8a\x0e\x3b\xaa\x18\x97\x07\xc4\x19\x30\xb3\x78\x31\x59\x3f\x7e\xaf\xc9\x12\x87\xfd\x3d\x33\x24\xb9\xcc\x99\xa2\x51\xce\xd6\xdb\xbb\x01\xfb\x3f\xe5\xcc\xb7\xd4\xa7\x6e\xbd\xbd\x8b\x06\x8c\x8b\x13\xe6\x3c\xa9\x9f\xe7\x7f\x03\x00\x00\xff\xff\x02\xb2\x4a\x46\x20\x0c\x00\x00" func epochNodeRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -1500,11 +1560,11 @@ func epochNodeRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/node/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x69, 0xe1, 0xcd, 0xd2, 0xf9, 0x1d, 0xb4, 0x43, 0x49, 0x62, 0x8b, 0x4e, 0x14, 0x50, 0x24, 0x67, 0xce, 0x3e, 0x97, 0x76, 0xb7, 0x2b, 0x86, 0xa4, 0x89, 0xec, 0xa9, 0xb4, 0x9b, 0xf6, 0x8a, 0xa5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x68, 0x71, 0x8d, 0x2a, 0x43, 0x15, 0x3f, 0xea, 0xe6, 0xaf, 0x8c, 0x46, 0xaa, 0x5, 0x11, 0x3d, 0x13, 0x3d, 0x30, 0xf1, 0x3b, 0x87, 0xc6, 0xa3, 0x39, 0x96, 0xcf, 0x3d, 0x75, 0x77, 0xbb, 0x90}} return a, nil } -var _epochNodeRegister_qc_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6b\x83\x40\x10\x85\xef\xfe\x8a\x21\x87\x62\xa0\x91\x9e\x25\x6d\xb0\x6a\x69\xa0\xa4\x49\x94\x42\x8f\x9b\xcd\x44\xa5\x66\x67\x3b\x8e\x4d\xa1\xe4\xbf\x97\x68\xb4\x91\x66\x4e\x0b\xf3\xcd\x9b\xf7\x66\x8b\xbd\x25\x16\x78\x2a\xe9\x10\x5b\xd2\x39\xec\x98\xf6\x70\xf7\x1d\x2f\x5f\xc3\xe7\x20\x8a\xd6\x71\x92\x38\x17\xd0\x3c\x4a\xd5\xa6\xc4\x44\xd4\x47\x61\xb2\x8e\x9e\x47\xf1\x22\x9d\xa7\xef\x69\xf0\xf8\x12\x5f\x99\x0a\xcb\xba\x12\xe4\x55\xd8\x0d\xac\xc2\x8e\x72\x84\x95\xa9\x94\x96\x82\x8c\x3b\x86\x1f\xc7\x01\x00\xb0\x8c\x56\x31\xba\x55\x91\x19\x64\x1f\x82\x5a\xf2\x40\x6b\xaa\x8d\xf4\xcc\xa9\x4a\x14\x30\xb4\xc5\x35\xee\xe0\x1e\x5a\xda\xdb\x10\x33\x1d\xa6\x37\xff\xfd\x7a\x0b\xda\x36\x6f\xe4\x07\xf7\x64\xc5\xbf\x12\xea\x02\x4a\x84\x58\x65\xb8\x54\x92\x8f\xfb\x9d\xa7\x9a\xcd\xc0\x2a\x53\x68\x77\x14\x52\x5d\x6e\xc1\x90\x40\xbb\xb6\xb1\x03\x8c\x3b\x64\x34\x1a\xdb\xc0\x55\xab\x03\x56\x49\x3e\x1a\x0f\xed\x7f\xea\x37\x12\x64\x98\x4e\xfe\x7e\xc1\xcb\x50\xfa\x9b\x35\x6d\xd7\xf4\xa6\xfc\x2e\xf1\x85\xd0\x39\x79\xa5\xbe\xd0\x9d\x4e\xce\x92\xb7\x20\xe4\x0f\xef\xef\x35\x8d\x41\xac\x46\xe3\xe8\x1c\x7f\x03\x00\x00\xff\xff\x74\xcf\x74\xd0\x0a\x02\x00\x00" +var _epochNodeRegister_qc_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\xcd\x4e\x84\x40\x0c\xc7\xef\xf3\x14\x0d\x87\xcd\x90\xb8\x3c\x00\x41\x37\x06\x35\xf1\x62\xd4\x35\xde\x67\x87\xf2\x11\xd9\xe9\x58\x8a\x7b\x30\xfb\xee\x86\x0f\x47\x50\x7b\x82\xe9\xbf\xed\xef\xdf\x36\x47\x4f\x2c\x70\xd7\xd2\xe9\xd6\x93\xad\xa1\x64\x3a\x42\x14\xfe\x23\xb5\x50\xdc\xdf\xbc\x98\x43\x8b\x7b\x31\x6f\x8d\xab\x16\xd2\x75\x62\x55\x93\xb7\x7d\x27\xc8\x4f\xf9\x42\x1e\xde\x22\xa5\x84\x8d\xeb\x8c\x95\x86\x9c\x8e\xe1\x53\x29\x00\x00\xcf\xe8\x0d\xa3\xee\x9a\xca\x21\xa7\x60\x7a\xa9\xf5\x5e\x88\x4d\x85\x31\x6c\xae\xad\xa5\xde\x49\x90\x0f\xd1\xa2\x80\xa3\x02\x9f\xb1\x84\x4b\x98\x0a\x93\x6e\x2a\x49\x0e\xc4\x4c\xa7\x6c\xf3\x97\x35\x79\xa0\x62\xfc\x46\xbe\xd2\x03\x61\xfa\x8f\xd3\x85\x68\x86\x78\x34\x52\xc7\x61\xf6\x10\xbb\x1d\x78\xe3\x1a\xab\xa3\x9c\xfa\xb6\x00\x47\x02\xd3\xd8\x11\x0b\x18\x4b\x64\x74\x16\xa7\x3d\xcc\x64\xe0\x8d\xd4\x51\xbc\xb6\xf1\x6e\x5f\x49\x90\x21\xdb\xfe\xdc\x25\xa9\x50\xc2\xda\xc6\xb4\x76\x01\x2a\xfd\x76\xbe\x68\xf4\x6b\x03\x9d\xf9\x40\x9d\x6d\xe7\xd6\x17\x20\x94\xae\xcf\x93\x8c\x89\x95\xbd\xb1\xd7\x59\x9d\xbf\x02\x00\x00\xff\xff\x2b\x73\x77\x18\x24\x02\x00\x00" func epochNodeRegister_qc_voterCdcBytes() ([]byte, error) { return bindataRead( @@ -1520,11 +1580,11 @@ func epochNodeRegister_qc_voterCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/node/register_qc_voter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfe, 0xd1, 0x80, 0x46, 0x4e, 0x2a, 0x21, 0x39, 0x43, 0x6e, 0x28, 0xcd, 0x8c, 0x59, 0x5e, 0xef, 0x96, 0x18, 0xea, 0xa7, 0x24, 0x97, 0x61, 0x3, 0xac, 0x3c, 0xbb, 0x81, 0x38, 0x1d, 0x8, 0xea}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe3, 0x85, 0x38, 0x83, 0x3f, 0x29, 0xc8, 0x67, 0xf8, 0x39, 0x18, 0x90, 0x30, 0x95, 0xd7, 0xfb, 0xcb, 0x28, 0xff, 0x42, 0xeb, 0x66, 0x30, 0x6, 0x8b, 0x32, 0xc, 0x6a, 0x41, 0x3f, 0x8d, 0xc0}} return a, nil } -var _epochScriptsGet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x18\xa1\x97\x9e\x5a\xe2\x94\x9f\x57\x5a\x1c\x92\x9f\x9d\x9a\x57\xac\xa1\xc9\x55\x0b\x08\x00\x00\xff\xff\x22\xca\x00\x28\x66\x00\x00\x00" +var _epochScriptsGet_bonus_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\xdd\x32\x2b\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\xe6\xe8\xa5\xa7\x96\x38\xe5\xe7\x95\x16\x87\xe4\x67\xa7\xe6\x15\x6b\x68\x72\xd5\x72\x01\x02\x00\x00\xff\xff\x76\x1b\x5a\x11\x6c\x00\x00\x00" func epochScriptsGet_bonus_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1540,11 +1600,11 @@ func epochScriptsGet_bonus_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_bonus_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2d, 0x14, 0x74, 0x6e, 0xc9, 0x89, 0xa4, 0x34, 0xe3, 0xa3, 0x76, 0x4, 0x44, 0x1d, 0xf1, 0x42, 0xfe, 0xa3, 0x87, 0x9c, 0xb, 0x97, 0x1e, 0x37, 0x84, 0xa1, 0x4d, 0xdf, 0x61, 0xe1, 0xf2, 0x1b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdf, 0xb7, 0x12, 0xf4, 0xd5, 0x3, 0x5c, 0xc, 0xe2, 0x8f, 0xba, 0x1, 0xf6, 0xeb, 0xf5, 0x5e, 0x78, 0xa2, 0xa7, 0x95, 0x60, 0x32, 0x30, 0x36, 0x18, 0xe8, 0xde, 0xb7, 0x4d, 0xbd, 0xd3, 0xa}} return a, nil } -var _epochScriptsGet_config_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x42\x28\xd7\x73\xce\xcf\x4b\xcb\x4c\x57\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x92\x4d\x4f\x2d\x81\x28\xf0\x4d\x2d\x49\x4c\x49\x2c\x49\xd4\xd0\xe4\xaa\x05\x04\x00\x00\xff\xff\x9e\xe7\x40\xf1\x73\x00\x00\x00" +var _epochScriptsGet_config_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x10\x7a\xf4\x9c\xf3\xf3\xd2\x32\xd3\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x90\x64\xd3\x53\x4b\x20\x0a\x7c\x53\x4b\x12\x53\x12\x4b\x12\x35\x34\xb9\x6a\xb9\x00\x01\x00\x00\xff\xff\x49\x98\x62\x2b\x79\x00\x00\x00" func epochScriptsGet_config_metadataCdcBytes() ([]byte, error) { return bindataRead( @@ -1560,11 +1620,11 @@ func epochScriptsGet_config_metadataCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_config_metadata.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xec, 0xb9, 0x3f, 0x2, 0xdb, 0xb7, 0x87, 0x6f, 0x92, 0x1e, 0x7e, 0x5d, 0xec, 0xa3, 0x9, 0x4a, 0xe, 0x1d, 0xa3, 0xaf, 0xd7, 0xc9, 0x3, 0xc9, 0xd3, 0x74, 0xe0, 0xee, 0xa0, 0xff, 0x9f, 0xd9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdc, 0x29, 0xb6, 0xd6, 0xa0, 0xb4, 0x99, 0xd, 0x4b, 0x96, 0x98, 0x11, 0xa1, 0x5d, 0x26, 0xa8, 0xa1, 0xfe, 0x9c, 0xbd, 0x5f, 0xbc, 0xac, 0xc5, 0x8, 0xcc, 0xe7, 0xf2, 0x6d, 0xd2, 0x51, 0xb7}} return a, nil } -var _epochScriptsGet_create_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x31\x0f\x82\x30\x14\x04\xe0\xbd\xbf\xe2\x46\x58\x88\x33\x9b\x29\x18\x9d\x14\x19\x09\x43\xc5\xa2\x24\xa5\x8f\xbc\xbe\x46\x8d\xf1\xbf\x9b\x18\x88\xba\xdd\xf0\x5d\xee\x86\x71\x22\x16\x6c\x1c\xdd\xca\x89\xba\x2b\x7a\xa6\x11\xab\x7b\x79\xd8\xeb\xed\xba\x28\x8e\x65\x5d\xab\x1f\xa4\x5d\x0c\x62\xb9\xd2\x0b\xac\xf4\xa2\xd4\x14\x4f\xe8\xa3\xc7\x68\x06\x9f\x18\x66\xf3\xc8\xd1\xd4\xc2\x83\xbf\xb4\x69\x8e\xe6\xaf\x9f\xcd\xa9\xc5\x53\x29\x00\x60\x2b\x91\xfd\xf7\x49\xd6\xb1\x35\x62\x35\x39\x67\x3b\x21\x9e\x7d\x48\x3c\x9d\xed\xae\x08\x39\x3e\x13\xa9\x52\xaf\x77\x00\x00\x00\xff\xff\xd4\x3f\xa4\x4f\xc5\x00\x00\x00" +var _epochScriptsGet_create_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xb1\xca\x83\x40\x10\x84\xfb\x7b\x8a\xc1\x4a\x1b\x1f\xc0\xd6\xff\x0f\xa4\x0c\x29\xc5\x62\xb9\xac\x89\xb0\xde\xca\xde\x4a\x08\x21\xef\x1e\x08\x62\x4c\x37\x33\x7c\xc3\xcc\x38\xcd\x6a\x8e\x83\xe8\xfd\x7f\xd6\x78\xc3\x60\x3a\xa1\xd8\x7c\x11\x76\x44\x2b\x4b\x76\xb6\x53\xbb\xa3\xb6\xac\x08\x81\x62\xe4\x9c\x4b\x12\xa9\x30\x2c\x09\x13\x8d\xa9\x24\x33\x7a\x34\xe8\xce\x6e\x63\xba\xf6\x55\x83\xee\xa7\x57\xaf\xaa\xc7\x33\x00\x80\xb1\x2f\x96\xbe\x8f\xea\x68\x4c\xce\xad\x8a\x70\x74\xb5\x15\xcf\x65\xd2\x0b\x1f\xff\x72\x83\xcf\x42\x15\x5e\xe1\x1d\x00\x00\xff\xff\xb5\xb7\x78\xee\xcd\x00\x00\x00" func epochScriptsGet_create_clustersCdcBytes() ([]byte, error) { return bindataRead( @@ -1580,11 +1640,11 @@ func epochScriptsGet_create_clustersCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_create_clusters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5f, 0xb5, 0xe4, 0x8c, 0xf5, 0x14, 0xb0, 0x64, 0xce, 0x90, 0x7, 0xc4, 0x7a, 0xdd, 0x38, 0xe8, 0x37, 0xea, 0x59, 0xe3, 0x75, 0x4d, 0x2e, 0xb0, 0x71, 0xc2, 0x5b, 0xf5, 0x92, 0xb5, 0x6d, 0xb1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x53, 0x30, 0xb5, 0x66, 0xa1, 0x17, 0x72, 0xdf, 0xf5, 0x1a, 0x82, 0x7a, 0xa9, 0x3d, 0x91, 0xef, 0xbf, 0x11, 0x15, 0x6e, 0xfd, 0x84, 0x7, 0x85, 0xde, 0xd8, 0x9, 0x31, 0x4d, 0x21, 0x64, 0x35}} return a, nil } -var _epochScriptsGet_current_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd2\xd7\x57\x08\x4a\x2d\x29\x2d\xca\x2b\x56\x28\xc9\x48\x55\x28\xcb\x4c\x2d\x57\xc8\x4f\x03\xb3\x93\x4b\x8b\x8a\x52\xf3\x4a\x14\x92\x72\xf2\x93\xb3\xb9\xb8\x0a\x4a\x93\x14\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\x3d\xf3\x4a\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x72\x52\x4b\x60\xea\x9d\x40\xca\x15\x6c\x15\xd2\x53\x4b\x9c\x91\x44\x34\x34\xc1\x0a\x8b\xc0\x96\xa1\xa8\xd5\x03\x59\xca\x55\x0b\x08\x00\x00\xff\xff\xc5\x9c\xf3\xf5\x8a\x00\x00\x00" +var _epochScriptsGet_current_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd2\xd7\x57\x08\x4a\x2d\x29\x2d\xca\x2b\x56\x28\xc9\x48\x55\x28\xcb\x4c\x2d\x57\xc8\x4f\x03\xb3\x93\x4b\x8b\x8a\x52\xf3\x4a\x14\x92\x72\xf2\x93\xb3\xb9\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\x3d\xf3\x4a\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x72\x52\x4b\x60\xfa\x9c\x40\xda\x14\x6c\x15\xd2\x53\x4b\x9c\x91\x44\x34\x34\xc1\x0a\x8b\xc0\x96\xa2\xa8\xd5\x03\x59\xce\x55\xcb\x05\x08\x00\x00\xff\xff\x31\x43\x70\x8e\x93\x00\x00\x00" func epochScriptsGet_current_viewCdcBytes() ([]byte, error) { return bindataRead( @@ -1600,11 +1660,11 @@ func epochScriptsGet_current_viewCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_current_view.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0xe7, 0xfb, 0x19, 0x77, 0x21, 0xb8, 0x52, 0x37, 0x51, 0xd3, 0x1, 0xe3, 0x74, 0xbc, 0x18, 0x86, 0x2d, 0x47, 0xe3, 0x12, 0xb4, 0x61, 0x2a, 0xbd, 0x26, 0xf9, 0xb3, 0x34, 0x69, 0xa8, 0xe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xca, 0x73, 0xd7, 0x7e, 0xbb, 0xc1, 0xf1, 0x48, 0x38, 0xc7, 0x46, 0x64, 0xbd, 0x3, 0x96, 0xc3, 0x96, 0xa1, 0x6c, 0x17, 0x53, 0x1e, 0x2e, 0x17, 0x5e, 0x74, 0x20, 0x69, 0x5, 0x49, 0x81, 0x46}} return a, nil } -var _epochScriptsGet_epoch_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\xf5\xcc\x2b\x31\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x18\xa1\x97\x5c\x5a\x54\x94\x9a\x57\x02\xe6\x38\xe7\x97\xe6\x95\xa4\x16\x71\xd5\x02\x02\x00\x00\xff\xff\x59\x76\xbe\x5f\x69\x00\x00\x00" +var _epochScriptsGet_epoch_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\x3d\xf3\x4a\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\xe6\xe8\x25\x97\x16\x15\xa5\xe6\x95\x80\x39\xce\xf9\xa5\x79\x25\xa9\x45\x5c\xb5\x80\x00\x00\x00\xff\xff\xc6\x93\x6d\x15\x6e\x00\x00\x00" func epochScriptsGet_epoch_counterCdcBytes() ([]byte, error) { return bindataRead( @@ -1620,11 +1680,11 @@ func epochScriptsGet_epoch_counterCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_epoch_counter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0x29, 0xfd, 0x4d, 0x49, 0x4c, 0x4e, 0x71, 0x61, 0x2b, 0xc3, 0xb5, 0x76, 0xb2, 0x70, 0x62, 0x3d, 0xda, 0xef, 0x24, 0x72, 0x5e, 0x7c, 0xfd, 0xab, 0x4d, 0x55, 0x13, 0x2e, 0xc, 0x79, 0x62}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x83, 0x42, 0x10, 0xa0, 0xad, 0xb7, 0x47, 0xa, 0x61, 0x20, 0xe3, 0xe2, 0xef, 0x4c, 0x70, 0xe6, 0x10, 0xef, 0x4d, 0x43, 0x5e, 0xcb, 0xa9, 0x60, 0x2d, 0x66, 0x4, 0xf2, 0xee, 0x88, 0xd2, 0x26}} return a, nil } -var _epochScriptsGet_epoch_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x05\xa9\x73\xce\x2f\xcd\x2b\x49\x2d\xb2\x52\x08\xf5\xcc\x2b\x31\x33\xd1\xb4\x42\x18\xa1\x07\x26\x7d\x53\x4b\x12\x53\x12\x4b\x12\x15\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x90\x14\xa5\xa7\x96\xa0\xa8\x43\x31\x56\x53\x91\xab\x16\x10\x00\x00\xff\xff\xea\x2c\x4c\x69\x9a\x00\x00\x00" +var _epochScriptsGet_epoch_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x52\x41\x92\xce\xf9\xa5\x79\x25\xa9\x45\x56\x0a\xa1\x9e\x79\x25\x66\x26\x9a\x56\x08\x73\xf4\xc0\xa4\x6f\x6a\x49\x62\x4a\x62\x49\xa2\x42\x35\x97\x82\x82\x82\x42\x51\x6a\x49\x69\x51\x1e\x92\xa2\xf4\xd4\x12\x14\x75\x28\xc6\x6a\x2a\x72\xd5\x02\x02\x00\x00\xff\xff\xc7\x41\x13\xa2\x9f\x00\x00\x00" func epochScriptsGet_epoch_metadataCdcBytes() ([]byte, error) { return bindataRead( @@ -1640,11 +1700,11 @@ func epochScriptsGet_epoch_metadataCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_epoch_metadata.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0xd2, 0xe0, 0xe9, 0xc1, 0x42, 0xed, 0x3a, 0x65, 0x49, 0xb3, 0xf3, 0xb4, 0x9d, 0xf0, 0x50, 0xe, 0xeb, 0x52, 0xd, 0x4c, 0x83, 0xb5, 0x75, 0x83, 0xd3, 0x28, 0xb6, 0x8b, 0x5b, 0x57, 0xd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xf7, 0x5b, 0xef, 0xc4, 0x5f, 0xa4, 0xcf, 0xc5, 0x9e, 0x16, 0x2e, 0xa9, 0x19, 0x76, 0x2b, 0x9f, 0x9, 0xdf, 0x16, 0x2c, 0xf3, 0x59, 0x48, 0x8c, 0x36, 0x26, 0xc, 0x9c, 0xd6, 0xb8, 0x12}} return a, nil } -var _epochScriptsGet_epoch_phaseCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\xf5\xcc\x2b\xb1\x50\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x98\xa0\x97\x5c\x5a\x54\x94\x9a\x57\x02\xe6\x04\x64\x24\x16\xa7\xea\x15\x25\x96\x87\x25\xe6\x94\xa6\x72\xd5\x02\x02\x00\x00\xff\xff\x8a\x47\xc8\x84\x6f\x00\x00\x00" +var _epochScriptsGet_epoch_phaseCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xcc\xb1\x0a\xc2\x40\x0c\x06\xe0\xfd\x9e\xe2\xa7\x53\xbb\x74\x16\x77\x05\x37\x17\xdd\xc3\x91\xd2\x42\x2e\x29\xb9\x84\x0e\xe2\xbb\x0b\x0e\x3a\x7e\xcb\xb7\xb5\xdd\x3c\x70\x15\x3b\x2e\xbb\xd5\x15\x8b\x5b\xc3\xf0\xf3\x50\x0a\xd5\xca\xbd\x8f\x24\x32\x61\x49\x45\xa3\x4d\xc7\xe9\x8c\xc7\x4d\xe3\x84\x57\x01\x00\xe7\x48\xd7\x7f\x33\xd7\x74\x67\x8d\x2f\xee\x2b\x75\x9e\x9d\x8e\x27\x49\x72\x79\x7f\x02\x00\x00\xff\xff\xd2\xb5\x20\xc1\x74\x00\x00\x00" func epochScriptsGet_epoch_phaseCdcBytes() ([]byte, error) { return bindataRead( @@ -1660,11 +1720,11 @@ func epochScriptsGet_epoch_phaseCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_epoch_phase.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0xa7, 0x17, 0x55, 0x9f, 0xf4, 0x58, 0xc4, 0xc6, 0x16, 0x8b, 0xe6, 0xd4, 0x55, 0x28, 0x7f, 0x32, 0x29, 0x66, 0x4e, 0x75, 0x64, 0xec, 0x24, 0x54, 0xf5, 0x6b, 0xf8, 0x1a, 0xfa, 0xbe, 0x74}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8e, 0xc2, 0x92, 0xc6, 0x5c, 0xd7, 0x19, 0x5d, 0xed, 0x1d, 0xe8, 0xfc, 0x5a, 0xfa, 0x53, 0x75, 0x8a, 0x15, 0x52, 0x13, 0xdf, 0x55, 0xae, 0x71, 0x7e, 0xcc, 0xc, 0x81, 0x95, 0xdc, 0xc7, 0xc5}} return a, nil } -var _epochScriptsGet_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x42\x28\xd7\x03\x93\x21\x99\xb9\x99\x79\xe9\xce\xf9\x79\x69\x99\xe9\x0a\xd5\x5c\x0a\x0a\x0a\x0a\x45\xa9\x25\xa5\x45\x79\x48\x0a\xd3\x53\x4b\x30\xd4\x6a\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x36\x40\x3a\x4b\x81\x00\x00\x00" +var _epochScriptsGet_epoch_timing_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x10\x7a\xf4\xc0\x64\x48\x66\x6e\x66\x5e\xba\x73\x7e\x5e\x5a\x66\xba\x42\x35\x97\x82\x82\x82\x42\x51\x6a\x49\x69\x51\x1e\x92\xc2\xf4\xd4\x12\x0c\xb5\x1a\x9a\x5c\xb5\x80\x00\x00\x00\xff\xff\xd4\x6d\x92\x2d\x86\x00\x00\x00" func epochScriptsGet_epoch_timing_configCdcBytes() ([]byte, error) { return bindataRead( @@ -1680,11 +1740,11 @@ func epochScriptsGet_epoch_timing_configCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_epoch_timing_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe5, 0xbe, 0x93, 0x2d, 0x1, 0xa9, 0x63, 0x45, 0x26, 0x2b, 0xa4, 0x83, 0x3f, 0xeb, 0x95, 0x61, 0x2f, 0x3d, 0x1a, 0xbe, 0x7e, 0x6a, 0x7d, 0xf7, 0x18, 0x6f, 0x75, 0xf3, 0x7, 0x42, 0x69, 0xdd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0x3f, 0xce, 0x1b, 0x5d, 0x2, 0xa1, 0xda, 0x74, 0x91, 0x1e, 0x7f, 0x30, 0x80, 0x4b, 0xa1, 0xc5, 0xbc, 0x78, 0x58, 0xe2, 0x85, 0xa3, 0x36, 0x62, 0x7a, 0x19, 0xcc, 0x30, 0xc4, 0x9e, 0x8c}} return a, nil } -var _epochScriptsGet_proposed_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\xf5\xcc\x2b\x31\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x18\xa1\x57\x50\x94\x5f\x90\x5f\x9c\x9a\x02\xe6\x39\xe7\x97\xe6\x95\xa4\x16\x69\x68\x72\xd5\x02\x02\x00\x00\xff\xff\x07\x41\x31\x75\x6c\x00\x00\x00" +var _epochScriptsGet_proposed_counterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x34\xad\x14\x42\x3d\xf3\x4a\xcc\x4c\x14\xaa\xb9\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\xe6\xe8\x15\x14\xe5\x17\xe4\x17\xa7\xa6\x80\x79\xce\xf9\xa5\x79\x25\xa9\x45\x1a\x9a\x5c\xb5\x80\x00\x00\x00\xff\xff\x47\x3a\xad\xbf\x71\x00\x00\x00" func epochScriptsGet_proposed_counterCdcBytes() ([]byte, error) { return bindataRead( @@ -1700,11 +1760,11 @@ func epochScriptsGet_proposed_counterCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_proposed_counter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa0, 0xaf, 0x64, 0x22, 0x79, 0x9f, 0xc5, 0xe9, 0xfa, 0xc, 0xf4, 0x32, 0x2c, 0xa2, 0x14, 0xcd, 0x55, 0xe1, 0xd4, 0x57, 0x3f, 0x7e, 0x2c, 0xc6, 0x89, 0x89, 0xe, 0x1c, 0xf6, 0x9e, 0xd6, 0x2d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0xc4, 0xf8, 0x7c, 0xf, 0x29, 0xc7, 0x76, 0xb4, 0x12, 0x90, 0xa3, 0x44, 0x2d, 0x55, 0x7e, 0x6f, 0x2e, 0x42, 0xac, 0x6e, 0x97, 0xb6, 0x9d, 0xf3, 0x7f, 0x88, 0xf4, 0x20, 0x92, 0xed, 0x42}} return a, nil } -var _epochScriptsGet_randomizeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x30\xa8\x70\x0d\xf0\x77\xf6\x70\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x2c\x2a\x4a\xac\xb4\x52\x88\x0e\x2e\x29\xca\xcc\x4b\x8f\xd5\x44\x30\x15\xaa\xb9\xb8\x14\x14\x14\x14\x8a\x52\x4b\x4a\x8b\xf2\x10\x86\xea\x15\x25\xe6\xa5\xe4\xe7\x66\x56\xa5\x42\x34\x6b\x72\x71\xd5\x02\x02\x00\x00\xff\xff\xa0\xd2\x7c\x11\x79\x00\x00\x00" +var _epochScriptsGet_randomizeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\x2d\xc8\x4f\xce\x50\x48\x2b\xca\xcf\x55\x50\x82\xf3\x95\xb8\xb8\x12\x93\x93\x53\x8b\x8b\x35\x12\x73\x72\x34\x15\xd2\x4a\xf3\x14\x72\x13\x33\xf3\x34\x12\x8b\x8a\x12\x2b\xad\x14\xa2\x83\x4b\x8a\x32\xf3\xd2\x63\x35\x11\x4c\x85\x6a\x2e\x05\x05\x05\x85\xa2\xd4\x92\xd2\xa2\x3c\x84\xc1\x7a\x45\x89\x79\x29\xf9\xb9\x99\x55\xa9\x10\xbd\x9a\x5c\xb5\x5c\x80\x00\x00\x00\xff\xff\x71\xcc\x71\x38\x7d\x00\x00\x00" func epochScriptsGet_randomizeCdcBytes() ([]byte, error) { return bindataRead( @@ -1720,11 +1780,11 @@ func epochScriptsGet_randomizeCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_randomize.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x15, 0x1a, 0x8d, 0x4d, 0xe8, 0x67, 0x7a, 0x7b, 0xc6, 0xeb, 0x95, 0xae, 0xc7, 0x7a, 0x1a, 0x50, 0xb8, 0x2b, 0xa3, 0xb1, 0x4c, 0xa0, 0x83, 0xea, 0xa9, 0x8e, 0xc1, 0x5b, 0x3d, 0x41, 0x8a, 0x79}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0x12, 0xd9, 0x65, 0x36, 0xf, 0xe4, 0x3b, 0x80, 0x3b, 0xdd, 0x29, 0x6b, 0xfd, 0x50, 0x6a, 0x2e, 0xa5, 0xa1, 0x70, 0x41, 0xc2, 0x79, 0xec, 0xfb, 0x14, 0x51, 0xc, 0xe8, 0xb8, 0xcb, 0xb4}} return a, nil } -var _epochScriptsGet_target_end_time_for_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8f\x4d\x0a\xc2\x30\x10\x85\xf7\x39\xc5\x5b\xb6\x1b\x71\x21\x2e\x04\x05\xe9\x0f\xba\x52\x6c\x3d\x40\xad\x69\x0d\x34\x93\x30\x24\x28\x48\xef\x2e\x4d\x5b\x6c\x16\xe1\xc1\x7c\xdf\x3c\x46\x69\x6b\xd8\x21\xef\xcc\x3b\xb3\xa6\x7e\xa1\x61\xa3\xb1\xfe\x64\xd7\x4b\x72\x3a\xa6\xe9\x2d\x2b\x0a\x21\xac\x7f\xa0\xf1\x04\x5d\x29\x8a\x5c\xc5\xad\x74\x81\xde\xe1\x7e\x26\xb7\xdd\xc4\x73\xc0\x57\x00\x80\x65\x39\xa5\xe1\x2d\x04\x1c\xf6\xff\xae\x55\xed\x99\x25\x8d\x93\xc4\x78\x72\x92\x83\xd4\x87\xbf\x93\x0e\xb5\xa1\x46\xb5\x58\x4a\xf3\xaa\x52\x69\x45\x6d\x12\x80\x28\x0e\x06\x4b\xe7\x99\x26\x69\x00\xcb\xb1\x99\x9e\xa5\xd2\x32\x37\x1c\xc4\xe5\x01\xb1\xe8\x7f\x01\x00\x00\xff\xff\x4c\x97\xdf\x07\x02\x01\x00\x00" +var _epochScriptsGet_target_end_time_for_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8f\x31\x8b\xc3\x30\x0c\x85\x77\xff\x8a\x47\xa6\x78\xb9\xe9\xb8\xe1\xa0\x5d\x42\x03\xdd\xd3\x1f\x60\x5c\x25\x35\xd8\x72\x50\x6c\x3a\x94\xfc\xf7\x12\x27\x69\xa3\x41\x3c\xa1\xf7\xe9\x21\x17\xc6\x28\x09\xad\x8f\xcf\xcb\x18\xed\x03\xbd\xc4\x80\xea\x33\x57\x4a\x19\x6b\x69\x9a\x6a\xe3\xbd\x46\x9f\x19\xc1\x38\xae\x93\x91\x81\x52\xb1\xfc\xe3\x76\xe5\xf4\xf7\xab\x77\x81\x97\x02\x80\x51\x68\x53\x4b\x1d\x00\x9c\x4f\xdf\xc0\x1f\x9b\x45\x88\xd7\x4d\x13\x33\x27\x92\x02\xcd\xa5\x7b\x4a\xb0\x91\x7b\x37\xe0\x08\xed\xa7\x3a\x17\x1c\x0f\x4d\x31\xd4\xba\x10\x42\x29\x0b\x6f\xd0\x62\xec\xd6\x64\xbe\x77\x2e\x50\x1b\xa5\x80\xc7\x07\xb4\x9a\xdf\x01\x00\x00\xff\xff\x48\xb4\xb0\xb3\x07\x01\x00\x00" func epochScriptsGet_target_end_time_for_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1740,11 +1800,11 @@ func epochScriptsGet_target_end_time_for_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/scripts/get_target_end_time_for_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0xdd, 0x7, 0xc, 0x15, 0x68, 0xe9, 0x1, 0x77, 0x80, 0xe2, 0x2f, 0x44, 0xa8, 0xc, 0xf6, 0x4f, 0x60, 0x38, 0xab, 0xbe, 0x6e, 0x2c, 0xc4, 0x97, 0x55, 0x49, 0xad, 0x21, 0x6d, 0xb4, 0xa0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x2c, 0x9a, 0x3f, 0xf9, 0x63, 0x6b, 0x6, 0x62, 0x77, 0x4b, 0xf8, 0x7c, 0xfa, 0xc0, 0x87, 0x40, 0xcb, 0x6c, 0x11, 0x6, 0x75, 0xc3, 0x10, 0x56, 0xdc, 0xf7, 0x79, 0x9, 0xa4, 0x6f, 0xd4}} return a, nil } -var _flowtokenBurn_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x31\x6f\xdb\x30\x10\x85\x77\xfd\x8a\xd7\x0c\x85\x3d\x44\xea\x50\x74\x30\xd2\xa6\x4e\x62\x17\x45\x03\x07\x68\x9c\x66\xa6\xa4\xb3\x45\x54\x22\x85\x23\x55\x39\x08\xf2\xdf\x0b\x92\x12\x23\x0d\xf6\x60\xd9\xe2\xdd\xbb\xef\xbd\x63\x96\x61\x5f\x49\x03\xcb\x42\x19\x51\x58\xa9\x15\xa4\x81\x80\xa5\xa6\xad\x85\x25\x1c\x34\xbb\xbf\x93\x73\x5b\x09\x9b\x64\x19\x0a\xdd\xd5\x25\x72\x42\x67\xa8\x44\xfe\x02\x5b\x11\x44\xd9\x48\x05\x51\x14\xba\x53\x16\x56\x23\xef\x58\xc1\xea\xbf\xa4\x8c\x6b\x3a\xb0\x6e\x5c\xa1\x64\x18\xab\x99\x4a\xfc\x11\x5d\xed\xf4\x12\xcf\x42\xbe\x41\xaa\x23\x44\xe3\x25\xfa\x71\x8a\x40\x2b\x58\x34\x64\x89\x9d\xae\x1b\x36\xa1\x4a\x12\xd9\xb4\x9a\x2d\xb6\x9d\x3a\xca\xbc\xa6\xbd\x1b\x19\xc6\x7d\x3a\x6d\x9f\x76\x3f\x7e\xde\xdc\x6f\xf6\x0f\xbf\x36\xbb\xf5\xdd\xdd\xef\xcd\xe3\x63\x6c\xa8\x75\x3f\x2f\xbe\x7f\x78\x9e\x15\x26\x93\x39\x8b\x80\xb5\xc2\xd3\x56\x9e\xbe\x7c\x5e\xe2\x35\x49\x00\x20\xcb\x82\x11\x30\x19\xdd\x71\x41\x3e\x26\x54\xba\x2e\x4d\x60\xf5\x11\x84\xb7\x82\x09\x39\x39\x93\xce\x2c\x95\x5e\xa1\x26\x8b\x7f\x4e\x62\x85\xef\x33\x13\x69\x48\x28\x16\xf9\x88\x57\xf8\x18\xc1\xd3\xb5\x7b\x23\x8d\x65\x61\x35\x87\xc2\x96\xa9\x15\x4c\x0b\x23\x8f\x8a\x78\x85\x75\x67\xab\x75\xd8\x4a\x64\x1e\xb8\x9f\xa5\xad\x4a\x16\xfd\x88\x38\xae\x68\xd8\xa5\x67\x82\x54\x7e\x5f\xe2\x48\xb1\xd5\x50\x7d\x48\xc3\xe9\xd5\x25\xc2\xa0\x34\xd7\xcc\xba\xbf\x9a\xc0\x79\xfa\x6f\x0b\xa7\xba\x42\x36\x88\x64\x87\xf1\xdc\x1f\x2f\x3f\x44\x55\xf7\x49\xfb\x01\x29\xa6\x1d\x9e\xcb\x19\xf7\x2d\x93\xbb\xa0\x02\x4c\x07\x62\x52\x2e\x73\x3d\xbd\x84\xfe\x3b\xee\xe3\x9c\x83\x50\xf6\xf5\xbc\x81\x59\xba\xe7\x8d\xf8\xb2\xe5\xcc\xc7\xf5\x35\x5a\xa1\x64\xb1\xb8\xb8\xf5\xb7\x58\x69\x8b\xa0\x7f\x9e\x7a\xe4\xbd\x08\x52\x6f\xc1\x32\x9d\xa8\xe8\x2c\xe1\x35\xea\xbb\x9b\xe0\x6f\x0f\xfb\xf4\xa3\x93\xb4\xf0\xb1\xec\xa8\xbf\xf1\xa7\x8b\x77\xa4\xf8\x23\xf4\xa5\xee\xe1\xd1\xcd\x60\xea\xea\xf2\x7d\xa7\x93\xac\x4b\x32\x96\xf5\xcb\xd0\x36\x60\xbd\x25\xf8\x1f\x00\x00\xff\xff\x96\xb2\x1c\x72\x3d\x04\x00\x00" +var _flowtokenBurn_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x3d\x73\x9c\x30\x10\xed\xf9\x15\x2f\x57\x78\xa0\x30\x34\x99\x14\x37\x97\x38\xb6\x67\x5c\xa6\x72\x9c\x5a\xc0\xde\xa1\x09\x48\xcc\x4a\x04\x7b\x3c\xfe\xef\x19\xad\x40\x86\xe2\xae\x38\x40\xda\x7d\x1f\xfb\xb6\xaa\xf0\xdc\x69\x07\xcf\xca\x38\xd5\x78\x6d\x0d\xb4\x83\x82\xa7\x61\xec\x95\x27\x9c\x2d\x87\xcf\xcd\xbd\xef\x94\xcf\xaa\x0a\x8d\x9d\xfa\x16\x35\x61\x72\xd4\xa2\x7e\x83\xef\x08\xaa\x1d\xb4\x81\x6a\x1a\x3b\x19\x0f\x6f\x51\x4f\x6c\xe0\xed\x5f\x32\x2e\x34\x9d\xd9\x0e\xa1\x50\x33\x9c\xb7\x4c\x2d\x5e\xd4\xd4\x07\xbc\x4c\xb4\x90\x34\x68\x73\x81\x1a\x04\x62\x5e\x59\x14\x46\xc5\x6a\x20\x4f\x1c\x70\x03\xd9\x46\x55\x96\xe9\x61\xb4\xec\xf1\x34\x99\x8b\xae\x7b\x7a\x0e\x94\x91\xee\xb0\x3b\x3b\xa4\xca\xde\xce\xbb\xaa\xf5\xfb\x90\x65\x1b\xe4\x3c\x0a\x39\xe2\xf7\x93\x7e\xfd\xf6\xb5\xc0\x7b\x96\x01\x40\x55\x45\xe9\x60\x72\x76\xe2\x86\x64\x30\xe8\x6c\xdf\xba\xa8\x4e\x4c\xc7\x53\xc5\x84\x9a\x82\xad\x60\x8f\x5a\x41\xe8\xc9\xe3\x5f\x80\x38\xe2\xe7\x4e\x62\x19\x67\x92\x8a\x64\xa8\x47\xdc\x24\x85\xe5\x7d\x38\xd1\xce\xb3\xf2\x96\x63\xe1\xc8\x34\x2a\xa6\xdc\xe9\x8b\x21\x3e\x42\x4d\xbe\xcb\x1f\x2c\xb3\x9d\x5f\x54\x3f\x51\x81\x9b\xfb\x18\x4b\xb2\xb0\xd8\xf8\xa3\x7d\xd7\xb2\x9a\x57\xc5\x6b\x46\x4b\x98\x22\x11\xda\x48\x60\xea\x42\xa9\xd5\x51\x7f\x2e\xe3\xed\xe9\x16\x91\xb7\x5c\x8a\xca\x5a\x98\x4f\xa2\x62\x6f\x6e\xa5\x2b\xb6\x86\xc4\xf1\x8f\x3c\x50\x1f\x51\x2d\x20\xd5\x79\xbd\x97\xeb\xe2\x4b\xa2\x0e\xbf\x72\x5e\x80\x52\x42\xf1\x59\xec\xcc\x3d\x32\x85\x35\x56\x60\x3a\x13\x93\x09\x39\xd9\xed\xaa\xca\x7f\xca\xf0\x9a\xcd\x58\xf6\xfd\x8a\xcb\x6b\xc9\x5c\x37\x24\x65\xc5\xce\xcf\xdd\x1d\x46\x65\x74\x93\x1f\x1e\x65\xe7\x8d\xf5\x88\xf8\xd7\xd5\xaf\xba\x0f\x11\xea\x23\x5a\xa7\x57\x6a\x26\x4f\x78\x4f\xf8\x61\x8b\x64\xf3\x58\xa2\x4a\x8e\xca\x46\xc6\xf3\x8b\xe6\x07\xb9\xcd\x3f\x25\xa5\x97\xd8\x57\x86\x87\x48\x77\x8b\xa9\xd3\xed\xe7\x02\x6c\x66\xde\x92\xf3\x6c\xdf\x96\xb6\x45\xd6\x47\x86\xff\x01\x00\x00\xff\xff\xc1\xb3\x5c\x5c\x6b\x04\x00\x00" func flowtokenBurn_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1760,11 +1820,11 @@ func flowtokenBurn_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/burn_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x5e, 0x83, 0x88, 0x8b, 0xe7, 0xad, 0xf0, 0x65, 0x31, 0xb6, 0xb7, 0x44, 0xba, 0x99, 0xb3, 0x4b, 0xf5, 0x4e, 0xdb, 0xcb, 0xb7, 0x0, 0xd8, 0xdb, 0xe4, 0x3d, 0xff, 0x1d, 0x3f, 0x61, 0xf5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0xab, 0x79, 0xb7, 0x68, 0xcb, 0x5f, 0xd1, 0x64, 0x9d, 0xc7, 0xd0, 0x52, 0xf7, 0xf0, 0x89, 0x6f, 0x7d, 0x6e, 0x44, 0xe6, 0xe9, 0x29, 0x7d, 0xed, 0xf4, 0x61, 0x3e, 0x14, 0xb1, 0x1d, 0xe0}} return a, nil } -var _flowtokenCreate_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x4d\x6f\xe3\x36\x10\xbd\xf3\x57\xcc\xa9\xf5\x06\x8e\xdc\xcf\x8b\x91\x16\x70\x37\xc9\x22\x68\x91\x05\x9c\xb4\x3d\x76\xc7\xe4\xc8\x64\x23\x93\x02\x39\xb2\x6a\x04\xf9\xef\x05\x49\x89\x96\x82\xd6\x3e\x59\xe2\x9b\x37\xef\xcd\x3c\x71\x75\x75\x25\xc4\xb3\x36\x01\xd8\xa3\x0d\x28\xd9\x38\x0b\x26\x00\x02\xd3\xa1\x6d\x90\x09\x6a\xe7\xe3\xe3\xe4\x9c\x35\x32\x48\xd7\x35\x0a\x76\x04\x5d\x20\x25\xd8\x41\x20\x86\xae\x05\xb4\x80\x52\xba\xce\x32\xb0\x8b\xc5\x3d\x7a\x05\x8a\x5a\x17\x0c\x93\x02\x76\x2f\x64\x43\x3c\x43\xeb\x58\x93\x07\x4f\x92\xcc\x91\x7c\x25\xc4\x43\x0d\x68\x4f\xce\x12\x04\xb2\x2a\x4c\xc1\xb1\x8f\xff\x3a\xc0\x7d\x66\x24\x0f\xdb\xa1\x6e\x29\x58\x53\x79\x82\xde\x34\x0d\xfc\xdd\x05\x2e\xcd\x59\xbb\x40\x13\xae\x08\xff\x03\xbb\x86\xb3\x13\x8d\x01\x76\x44\x56\x44\x07\x18\xd2\xb1\x27\x69\x5a\x43\x96\x01\xad\x02\x3a\x98\xf8\x07\xe8\x18\xdf\xa4\x22\x63\x95\x91\xc8\x14\x44\xaf\x8d\xd4\x49\xdd\xd8\x30\xba\xd4\x63\xc3\x6a\x18\x70\x8f\xa7\x25\x98\xe8\x0f\x5c\x5d\x5f\x4b\x8d\xc6\x42\x20\x7f\x34\x92\xa0\x47\xcb\x49\xda\xc1\x59\xc3\xce\x43\xaf\x5d\x5c\xc3\x40\x68\xec\x5e\x9c\xe5\x1b\x5e\x82\x61\x90\x68\xa1\x47\x96\x3a\xcb\x4a\x47\x81\x08\x7a\x4d\x9e\x26\x02\x40\xe2\x81\xa0\xf6\xee\x50\x09\xf1\xc4\xd4\x0e\xc8\xbc\xad\xbc\xaa\x00\xbd\x61\x9d\x0b\x8a\x0b\xbf\x16\xe2\xdb\x0a\x9e\x35\xc1\x7d\x67\xf7\x66\xd7\x10\x3c\x27\x84\x74\x96\x3d\xca\x38\x05\x26\x5f\xa3\x24\x08\x3a\xe5\x01\x1b\x4f\xa8\x4e\x31\x17\x8a\xda\xc6\x9d\x48\x41\x70\x07\x4a\xa2\xc4\x77\x99\x0d\xdb\xb6\x31\x12\x23\x1f\xcf\xf9\x06\x96\x49\x75\x25\xbe\xcf\x45\x93\x8d\x0c\xf1\x1a\xc0\x1a\x8f\x04\x38\x2c\x34\x86\x95\x53\x9e\x33\xb1\x27\x64\x52\x02\x00\xd2\x22\x03\x3b\x4f\x0a\x8c\x05\xc3\x21\x3d\xe1\x9e\xb2\x77\x84\xb6\xdb\x35\x26\x68\x52\x25\x4b\xe2\x87\x0a\x6e\x93\x90\x34\xcf\x2f\xc9\xfd\x7d\xd9\x49\x25\x95\xfc\x72\x16\x9f\x52\xaa\x4c\x5d\x93\x9f\xc8\x14\x3f\x56\x31\xb3\x80\x60\xa9\x87\x4d\x7e\xb9\x86\x8f\x49\x59\xa2\x1d\xfd\x58\xe7\x0f\xd8\x34\xa7\x65\x92\xcb\x9a\x2c\xf8\xce\xe6\xce\xd9\xc8\x5f\x65\x35\xb9\xf5\xe4\xa3\xcc\x45\x7b\x62\x36\x76\x0f\xb3\x0f\x22\xae\x7e\xd6\x28\x07\xf8\x5d\xd0\x2b\x71\xb5\x12\xc2\x1c\x5a\xe7\xb9\xec\x3b\xaf\x3b\x11\x7c\xf3\xcf\xfd\xef\x8f\x9f\x1e\x7e\xf9\xed\xee\xf9\xf3\xaf\x77\x8f\x9b\xdb\xdb\xed\xdd\xd3\x53\x29\x68\x5c\x3f\x03\xff\x17\xe8\xdd\xf8\x0a\xef\xe7\xed\x9f\x9b\xed\xed\xc3\xe3\xa7\x11\x2f\x26\xc6\x16\xe3\xf5\xb0\x86\x8d\x52\x9e\x42\xf8\x00\xaf\x22\xb9\x6d\x3d\xb5\xe8\x69\x81\x52\xf2\x1a\x36\x1d\xeb\x61\xbc\x11\x01\xc3\xaf\x21\x9e\x64\xe7\xa7\x38\xa2\x01\x55\x98\x3f\x14\x70\xfc\x55\x7b\xe2\x8f\xd8\xe2\xce\x34\x86\x4f\x37\x5f\xbd\xce\x86\x51\x8d\x63\x7d\xfb\x79\xb1\x4a\x89\x91\xab\x7a\x34\xbf\x2d\x84\xb3\xf6\xc7\x14\xcd\x9b\xeb\xf7\x03\xa8\xf2\x56\x1f\xa9\x2f\x97\xda\xa2\x48\x5d\x9f\x55\x9f\xf5\x45\xa7\x55\xc0\x23\x2d\x6e\xae\x13\xeb\x12\xd8\xad\x61\x35\x24\xf9\xac\xa4\x10\x4e\xa4\xc4\xcb\x27\xd6\xcf\xfc\x5d\x30\x51\x49\x4d\xf2\xe5\xd2\x00\xa6\x73\x2e\xf2\x3a\xdb\x18\xfb\x72\x69\x38\x23\xfc\x6d\xee\x2b\x96\x5d\xea\x36\x6b\xf5\xbf\xf4\xcb\x19\x8c\xd1\xef\x89\x2f\x4e\xa8\xe0\xb3\xb0\x37\xf1\x26\xfe\x0d\x00\x00\xff\xff\xd2\xae\xc8\xb7\x17\x07\x00\x00" +var _flowtokenCreate_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\x4d\x6f\xe3\x36\x10\xbd\xf3\x57\x4c\x73\xd8\xda\x81\x23\xa3\x5f\x17\x23\x5b\x60\x9b\x22\x40\x2f\x3d\xb4\xc1\x5e\xbb\x63\x72\x64\xb2\x2b\x91\x02\x39\xb2\x60\x2c\xf2\xdf\x0b\x7e\x88\x96\x0c\x24\xa7\xfa\x64\x72\x66\xde\xbc\xf7\x66\xa8\xfd\xfd\xbd\x10\x2f\xda\x04\x60\x8f\x36\xa0\x64\xe3\x2c\x98\x00\x08\x4c\xfd\xd0\x21\x13\xb4\xce\xc7\xe3\x22\xce\x1a\x19\xa4\x1b\x3b\x05\x47\x82\x31\x90\x12\xec\x20\x10\xc3\x38\x00\x5a\x40\x29\xdd\x68\x19\xd8\xc5\xe2\x09\xbd\x02\x45\x83\x0b\x86\x49\x01\xbb\xaf\x64\x43\x8c\xa1\x75\xac\xc9\x83\x27\x49\xe6\x4c\xbe\x11\xe2\x8f\x16\xd0\x5e\x9c\x25\x08\x64\x55\x58\x26\xc7\x3e\xfe\xfb\x00\xcf\x19\x91\x3c\xfc\x55\xea\x76\x82\x35\xd5\x13\x4c\xa6\xeb\xe0\xdf\x31\x70\x6d\xce\xda\x05\x5a\x60\xc5\xf4\xcf\x38\x76\x9c\x95\x68\x0c\x70\x24\xb2\x22\x2a\xc0\x90\xc2\x9e\xa4\x19\x0c\x59\x06\xb4\x0a\xa8\x37\xf1\x0f\xd0\x39\xde\xa4\x22\x63\x95\x91\xc8\x14\xc4\xa4\x8d\xd4\x89\xdd\xdc\x30\xaa\xd4\x73\xc3\xa6\x18\x3c\xe1\x65\x07\x26\xea\x03\xd7\xb6\x0f\x52\xa3\xb1\x10\xc8\x9f\x8d\x24\x98\xd0\x72\xa2\xd6\x3b\x6b\xd8\x79\x98\xb4\x8b\x63\x28\x80\xc6\x9e\xc4\x95\xbe\xe1\x1d\x18\x06\x89\x16\x26\x64\xa9\x33\xad\x14\x0a\x44\x30\x69\xf2\xb4\x20\x00\x12\x7b\x82\xd6\xbb\xbe\x11\xe2\x6f\xa6\xa1\x64\xe6\x69\xe5\x51\x05\x98\x0c\xeb\x5c\x50\x55\xf8\x83\x10\x3f\x34\xf0\xa2\x09\x9e\x47\x7b\x32\xc7\x8e\xe0\x25\x65\x48\x67\xd9\xa3\x8c\x2e\x30\xf9\x16\x25\x41\xd0\x69\x1f\xb0\xf3\x84\xea\x12\xf7\x42\xd1\xd0\xb9\x0b\x29\x08\xae\xa7\x44\x4a\xfc\x98\xd1\x70\x18\x3a\x23\x31\xe2\xf1\x1a\xaf\xa0\x2c\xaa\x1b\xf1\x53\x2e\x5a\x4c\xa4\xac\x57\x49\xd6\x78\x26\xc0\x32\xd0\xb8\xac\x9c\xf6\x39\x03\x7b\x42\x26\x25\x00\x20\x0d\x32\xb0\xf3\xa4\xc0\x58\x30\x1c\xd2\x09\x4f\x94\xb5\x23\x0c\xe3\xb1\x33\x41\x93\xaa\xbb\x24\x7e\x6e\xe0\xf7\x44\x24\xf9\xf9\x25\xa9\x7f\xae\x33\x69\xa4\x92\x5f\xae\xe4\xd3\x96\x2a\xd3\xb6\xe4\x17\x34\xc5\x2f\x4d\xdc\x59\x40\xb0\x34\xc1\xa7\x7c\x79\x80\xa7\xc4\x2c\xc1\xce\x7a\xac\xf3\x3d\x76\xdd\x65\x97\xe8\xb2\x26\x0b\x7e\xb4\xb9\x73\x16\xf2\x4f\x1d\x4d\x6e\xbd\x78\x94\xb9\xe8\x44\xcc\xc6\x9e\x60\xf5\x20\xe2\xe8\x57\x8d\xf2\x02\xdf\x2c\x7a\x23\xee\xf7\x42\x98\x7e\x70\x9e\xeb\xbc\xf3\xb8\x13\xc0\xdd\xea\xee\xae\x66\x76\x6e\x5a\x65\xcd\xe7\x9a\x71\x63\x5a\xc9\xbb\xb9\xbd\x13\x62\x21\x66\x33\x7f\x12\x0e\xf0\x49\x29\x4f\x21\x6c\xe1\x9b\x48\x0a\x07\x4f\x03\x7a\xda\xa0\x94\x7c\x00\x1c\x59\x6f\x7e\x73\xde\xbb\xe9\x33\x76\x23\xed\xe0\x09\x07\x3c\x9a\xce\xb0\xa1\xb0\x85\x0f\xc5\xef\x58\x0e\xe5\xd7\x11\x2f\x96\xe9\x63\xf4\xac\x64\xd5\xb6\xdb\x9a\x1c\x7f\x8d\x5c\x60\x36\x27\xe2\xc7\x0f\xdf\x56\x66\x34\xb3\xd5\xaf\xbf\x6e\xf6\x69\x8b\xe4\xbe\x9d\x7d\x98\x63\xdb\xef\xc4\x8a\xc2\x39\xed\xeb\xe3\xc3\xad\x3f\x4d\x1e\xf5\x9f\x34\xd5\x2f\xdd\xa6\xd2\x3d\x5c\x99\x5f\x39\x46\x2b\x9a\xb2\xcb\x4d\xc0\x33\x6d\x1e\x1f\x12\xfa\x0e\xd8\x1d\x60\x5f\x42\x57\x4a\x15\x78\x7b\xa5\x64\xda\xc4\x4a\xe2\x00\x1f\x33\xe2\xff\xa3\x7a\x61\x7c\x69\x23\x71\x68\xa4\x26\xf9\x75\x73\x1b\xac\x62\x56\xad\x47\x5b\x1e\xe6\x3b\x5d\x56\x30\xaf\xe2\xfa\x6f\x65\x79\x7d\x3d\x4f\x6f\xa8\x9c\x4d\x34\x21\x8c\xf4\xae\xde\xf7\x3c\x7d\x5b\x4a\x11\xf2\x1e\xf2\x4a\xc9\x92\xf0\x6e\x15\x41\x3e\xc0\x9b\x76\xd4\xcc\xcc\xe5\x55\xbc\x8a\xff\x02\x00\x00\xff\xff\x9f\xd7\x66\x7a\xe9\x07\x00\x00" func flowtokenCreate_forwarderCdcBytes() ([]byte, error) { return bindataRead( @@ -1780,11 +1840,11 @@ func flowtokenCreate_forwarderCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/create_forwarder.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x42, 0xa4, 0x5, 0xa, 0x19, 0x3f, 0x28, 0x81, 0x28, 0x7d, 0x64, 0x95, 0xda, 0x21, 0x88, 0x7f, 0x1d, 0x27, 0x7d, 0xc3, 0x47, 0x64, 0x7a, 0x7c, 0x3e, 0xd2, 0x6a, 0x1e, 0xd6, 0x4a, 0xb6, 0x3f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x52, 0xf4, 0x68, 0x6a, 0x7f, 0xc6, 0x10, 0x5d, 0xeb, 0x73, 0x26, 0xb1, 0xf5, 0xf9, 0xea, 0x93, 0x64, 0xae, 0xa6, 0x4, 0x9d, 0x63, 0xa4, 0xdc, 0xfa, 0x8f, 0xa1, 0x28, 0x46, 0xf4, 0x43, 0x5a}} return a, nil } -var _flowtokenMint_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\xcd\x6e\xda\x40\x10\xbe\xfb\x29\x46\x1c\x22\x23\x35\x76\x0f\x55\x0f\x88\x24\x72\x1b\xa8\xaa\xa6\x44\x0a\xd0\x9e\x97\xf5\x60\x46\x35\xbb\xd6\xec\x38\x10\xa1\xbc\x7b\xb5\x5e\x1b\x70\x1a\xba\x17\x4b\xeb\x6f\xbe\xbf\x59\xda\x56\x96\x05\xa6\xb5\x29\x68\x55\xe2\xc2\xfe\x41\x03\x6b\xb6\x5b\xf8\xb8\x9f\x2e\x67\xdf\xbe\x7f\x79\x98\x2c\x1e\x7f\x4c\x66\xd9\xfd\xfd\xd3\x64\x3e\x8f\xba\x81\xd2\xee\xfa\xe0\x87\xc7\xdf\x3d\x60\x94\xa6\x29\x2c\x36\xe4\x40\x58\x19\xa7\xb4\x90\x35\xb0\x25\x23\x0e\xc4\x4f\x3a\xa8\x1d\x99\x02\x64\x83\xa0\xb4\xb6\xb5\x11\x90\x8d\x12\x70\x62\x19\x5d\x73\xef\x65\x20\xe8\x64\xf9\x96\x0c\x30\x3a\x5b\xb3\xc6\x13\x3b\x05\xa4\x43\x7e\x26\x7d\x64\x8a\xa2\x33\xd5\x98\x51\x53\x45\x68\x64\x04\x59\x9e\x33\x3a\xf7\x01\xd4\xd6\xe3\x46\xb0\x9c\xd2\xfe\xf3\xa7\x21\x1c\xa2\x08\x00\xa0\x44\x09\xf6\x1a\xbd\x11\x5c\x1d\x93\x26\xcd\x0d\x39\x61\x25\x96\xfb\xe0\x27\xd4\x48\xcf\xc8\x23\xb8\x3a\xf4\xba\x4c\xba\x3f\xaf\x81\xbe\x62\xac\x14\x63\xec\xa8\x30\x1e\x9e\xd5\xb2\xc9\x82\xe5\xa3\x05\x7f\x1c\x96\xeb\xe4\xe4\x03\x6e\x20\x4c\x1c\x01\xfe\x24\x2b\xcb\x6c\x77\xe3\x4b\x1e\x6f\x63\xbf\x9c\x11\xa4\xbe\x51\x55\x60\xba\xee\x70\x0d\x6c\xd8\x23\xbb\xbb\x83\x4a\x19\xd2\xf1\x60\xde\x28\xf9\x62\x8d\x95\xa6\xdc\xc6\x08\x28\x3f\x34\x18\xbe\x67\xb2\x4b\x09\x37\x50\xa0\xb4\x81\x4e\xb5\xf7\x95\x92\x02\xe5\xab\xaa\xd4\x8a\x4a\x92\x97\x38\xad\xea\x55\x49\xfa\x64\xae\x23\x1b\xbe\x1f\xf6\x52\xc1\xb7\xf1\xa5\x40\x4b\xa3\x56\xa5\x4f\x01\x81\x03\xb8\xb3\xcb\xb8\x46\x46\xa3\x71\x10\x66\xdb\x2d\xe1\x1e\x75\x2d\x08\x87\x23\xa1\xdf\xb4\x7f\xbb\xc8\x30\xbe\x7e\xbb\x9d\x44\x33\x2a\xc1\x19\xee\x7e\x36\x90\x58\x95\xa5\xdd\x61\x9e\xb5\x4f\x2c\x3c\xb5\xe1\xbf\x64\xf9\x2f\x55\x97\xe2\x19\x03\x77\xe2\x3f\x4d\x2c\x17\xab\x37\xc3\xff\x69\x3d\xc9\xb1\xb2\x8e\xa4\x5d\xf7\xf8\xfa\x8c\xfc\x6c\x30\x47\x27\x6c\x5f\x5a\xad\x36\xef\xeb\xdf\x00\x00\x00\xff\xff\xac\x61\xd6\x4a\x02\x04\x00\x00" +var _flowtokenMint_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x31\x6f\xdb\x30\x10\x85\x77\xfd\x8a\x83\x86\x40\x06\x1a\x69\x29\x3a\x08\x4e\x02\x77\xc8\xd6\x0e\x6d\x92\x9d\xa2\xce\xf2\xa1\x14\x29\x1c\x4f\x71\x0a\x23\xff\xbd\x20\x29\xc9\x56\x5a\x57\x8b\x61\xf2\xdd\x77\xef\xdd\x91\xfa\xc1\xb1\xc0\xe3\x68\x3b\x6a\x0c\x3e\xb9\x5f\x68\x61\xcf\xae\x87\x7c\x75\x96\x67\xb3\xd2\xb8\xe3\x4a\x35\xff\xcf\xb3\xac\xaa\x2a\x78\x3a\x90\x07\x61\x65\xbd\xd2\x42\xce\x42\x4f\x56\x3c\x48\x90\x78\x18\x3d\xd9\x0e\xe4\x80\xa0\xb4\x76\xa3\x15\x90\x83\x12\xf0\xe2\x18\x7d\x3c\x0f\x3c\x48\x0d\x76\x6d\x4f\x16\x18\xbd\x1b\x59\xe3\x99\x4e\x49\xe9\x91\x5f\x49\x2f\xa4\x2c\xbb\xe8\x5a\x30\x6a\x1a\x08\xad\xd4\xb0\x6b\x5b\x46\xef\x3f\x81\xea\x83\xae\x86\xe7\x47\x7a\xfb\xf2\x79\x03\xa7\x2c\x03\x00\x30\x28\xc9\x5e\xec\x57\xc3\xcd\x12\xa9\x8c\x27\xe4\x85\x95\x38\x5e\x8b\x7f\xa0\x46\x7a\x45\xae\xe1\xe6\xb4\x9a\x54\x39\xdf\xbc\x27\xfc\xc0\x38\x28\xc6\xc2\x53\x67\x83\x5c\x8d\x72\x28\xbe\x3a\x66\x77\x7c\x51\x66\xc4\x0d\xdc\xec\x52\x82\xc5\x51\xf8\x3c\x9a\x7d\x79\xb6\x05\x77\x90\x00\x65\x98\x95\xea\x70\x11\x86\xaf\x6c\x22\x6f\x7b\xcd\xfa\x7d\x11\x96\x55\x43\x35\x15\x57\xfb\x59\x17\x65\x9b\x15\xec\xe1\x01\x06\x65\x49\x17\xf9\xcf\xd8\x31\xcc\xdb\x3a\x89\x33\x8f\x86\x40\x85\xa2\x7c\xf3\x2f\xb3\x73\x78\xb8\x83\x0e\x65\x0a\x76\xde\xc6\xba\x53\xa9\xd5\xa0\x1a\x32\x24\x84\x7e\xc9\x70\x6d\x9c\xf7\x45\x35\x8c\x8d\x21\x7d\x76\x3f\xdf\x5d\x0b\xf0\x6c\x55\x63\x82\x6b\x48\x70\xe0\xd9\x1e\xe3\x1e\x19\xad\xc6\x3c\xd5\x4e\xcb\xc2\x37\xd4\xa3\x20\x9c\x16\x60\x58\x78\x78\xc2\xc8\xb0\xbd\xfd\xb8\x95\x52\x33\x2a\xc1\xef\x78\xfc\x16\x25\x85\x32\xc6\x1d\xb1\xdd\x4d\x2f\x2d\xbd\xb8\xcd\xdf\xb0\xf6\x45\x8d\x46\x02\x31\xb1\xcb\xf0\x13\x23\xf9\x42\x7d\x28\xfe\xcf\x94\xcb\x16\x07\xe7\x49\xa6\xf5\x6e\x6f\x2f\xe0\x17\x85\x2d\x7a\x61\xf7\x7b\xea\x35\xe5\x7d\xff\x13\x00\x00\xff\xff\x4d\x4d\x2d\xec\xfb\x03\x00\x00" func flowtokenMint_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1800,11 +1860,11 @@ func flowtokenMint_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/mint_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xff, 0xc6, 0x66, 0x5d, 0xee, 0x48, 0xe, 0xb9, 0xea, 0x2f, 0xd, 0xc1, 0xe8, 0xcf, 0x70, 0x67, 0x81, 0x67, 0x29, 0x35, 0x1, 0x39, 0x44, 0x65, 0x4b, 0xc, 0x19, 0x1e, 0xcd, 0x6a, 0x57, 0x65}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x85, 0x9a, 0xca, 0x71, 0x4a, 0xfb, 0x5f, 0xd5, 0x56, 0xf3, 0x5f, 0xb8, 0xc1, 0xd8, 0xfe, 0x87, 0xff, 0x71, 0x1d, 0x2f, 0x26, 0x65, 0x2, 0x7, 0xfd, 0x3e, 0xa1, 0xab, 0x25, 0xc9, 0x2d}} return a, nil } -var _flowtokenScriptsGet_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\xcb\x6e\xf2\x30\x14\x84\xf7\x7e\x8a\x11\x8b\xff\x0f\x9b\xa4\x8b\xaa\x0b\xd4\x16\x71\x4b\x55\x15\x81\xc4\xa5\x5d\x3b\xc9\x31\x58\x35\x76\xe4\x4b\xa1\x42\xbc\x7b\x45\x6e\x2d\x5e\x59\xf2\x7c\xe3\x99\x73\x92\x04\x9b\xbd\x74\x70\xb9\x95\xa5\x87\x25\x5e\x38\xf8\x3d\x21\xe3\x8a\xeb\x9c\x20\x24\xa9\x02\x46\x80\x6b\xf0\x3c\x37\x41\xfb\xff\x0e\xa9\x32\xc7\x8d\xf9\x24\x8d\x71\xad\x63\x4c\x1e\x4a\x63\x3d\xd2\xa0\x77\x32\x53\x54\xbf\x0a\x6b\x0e\xb8\x3b\xa5\xdb\xc5\xcb\xeb\x78\x3e\xdb\x2c\xdf\x66\x8b\xd1\x74\xba\x9a\xad\xd7\x1d\xd0\x59\xb5\xe2\xf9\xf2\xe3\x46\xc8\xca\x90\x41\x04\x8d\x03\x97\x3a\x6a\x42\x0c\x30\x2a\x0a\x4b\xce\xf5\x07\xd8\xa6\xf2\xf4\x70\x8f\x33\x63\x00\xa0\xc8\xe3\x8b\x07\xe5\x57\x24\xf0\x84\x1d\xf9\x51\x8d\xb4\x68\xbf\x92\x5d\x4f\xbc\x23\x3f\xe1\x25\xcf\xa4\x92\xfe\x3b\x4a\xca\x90\x29\x99\x27\xa2\x8d\xd4\x94\xfb\x03\x64\xc6\x5a\x73\x7c\xfc\xd7\xa5\x8e\xdf\xaf\x5f\x9d\x6f\x6a\xc7\x0d\x77\x79\x8e\x7e\xd1\xe1\x10\x25\xd7\x32\x8f\x7a\x13\x13\x54\x01\x6d\x3c\x6a\xb7\x76\x86\xb0\x24\xc8\xd2\xf5\xe6\x4d\xb5\x84\xca\xbb\xd7\xaf\x7b\x59\xf2\xc1\xea\xae\x5a\xdc\x6c\x88\x5d\xd8\x4f\x00\x00\x00\xff\xff\x38\x9b\x14\x49\xc5\x01\x00\x00" +var _flowtokenScriptsGet_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\xcb\x4e\xf3\x30\x10\x85\xf7\x7e\x8a\xa3\x2c\xfe\x3f\xd9\x24\x1b\xc4\xa2\x02\xaa\x82\xd4\x07\x40\x85\xfd\xc4\x19\xb7\x23\x1c\x3b\xf2\x85\x22\x55\x7d\x77\x94\xe6\x82\xea\x95\xed\x39\x73\xfc\xf9\x4c\xd3\xe0\x70\x92\x88\xa8\x83\x0c\x09\x81\xa9\x8b\x48\x27\x46\x4b\x96\x9c\x66\x18\x61\xdb\xc1\x1b\x90\x03\x69\xed\xb3\x4b\xff\x23\xf6\xd6\x9f\x0f\xfe\x8b\x1d\x5e\x27\x9d\x52\xd2\x0f\x3e\x24\xec\xb3\x3b\x4a\x6b\x79\xaa\x9a\xe0\x7b\x14\x77\x77\xc5\xaa\x5c\x3d\x66\xd5\x72\x2e\x94\x22\xad\x39\xc6\x92\xac\xad\x60\xb2\x43\x4f\xe2\xca\xf9\xf9\x0d\x76\x5d\x17\x38\xc6\x6a\x83\x8f\xbd\xfc\x3c\x3e\xe0\xa2\x14\x00\x58\x4e\xf8\xa6\x6c\xd3\x3b\x1b\x3c\xe3\xc8\x69\x37\xb5\x2c\xad\xd5\x4d\x36\xae\x5a\xd3\x40\xad\x58\x49\xc2\xb1\x6e\x7d\x08\xfe\xfc\xf4\xef\x72\x47\x5a\xcf\x7f\xbb\xbe\x94\xcd\x90\x5b\x2b\xba\x31\x0b\xe3\x5c\xfa\x33\xdc\x6e\x31\x90\x13\x5d\x16\x6f\x3e\xdb\x0e\xce\x27\x4c\xb6\x4b\x44\x08\x6c\x38\xf0\xb8\x4b\xfe\x96\xf1\xe7\xc8\x5a\x54\x13\x7c\xe0\x94\x83\x5b\xf9\xeb\x79\x00\xea\xaa\x7e\x03\x00\x00\xff\xff\x0c\xc2\x32\xf4\xa4\x01\x00\x00" func flowtokenScriptsGet_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -1820,11 +1880,11 @@ func flowtokenScriptsGet_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/scripts/get_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xeb, 0x3, 0xd9, 0xd3, 0xc5, 0xf4, 0x33, 0xcb, 0xf, 0x2c, 0xdd, 0x7f, 0x8f, 0xa6, 0x25, 0xa7, 0x5e, 0xce, 0x4c, 0x9f, 0xad, 0x8c, 0x3b, 0xa5, 0x1f, 0xbf, 0x1a, 0x3c, 0xe2, 0xdb, 0xa8, 0xda}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9f, 0x43, 0x79, 0xfd, 0x4, 0xd6, 0xad, 0x3a, 0xc5, 0x7, 0x57, 0x5, 0x10, 0xbc, 0x51, 0x96, 0xe8, 0x27, 0x94, 0x74, 0x77, 0x6d, 0x23, 0xa3, 0x76, 0x56, 0xd2, 0xcf, 0x8f, 0x3b, 0xac, 0x5b}} return a, nil } -var _flowtokenScriptsGet_supplyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xce\x3f\x4b\xc4\x40\x10\x05\xf0\x7e\x3e\xc5\x2b\xb5\x71\x2d\xc4\x42\xb0\x10\x92\x34\x8a\x01\x13\xb1\x5e\x93\x5d\xb2\xb8\xff\x98\x9d\xc5\x1c\xc7\x7d\xf7\x83\xdc\x1d\x77\xed\xcc\x8f\xf7\x9e\x52\x18\x17\x57\x50\x26\x76\x59\xc0\x46\xcf\x05\xb2\x18\x48\x12\xed\x51\x6a\xce\x7e\x07\xeb\x8c\x9f\x49\x29\x24\xbb\x3d\x3b\x9f\xfe\xc7\xf4\x67\x22\x4a\xd0\x2c\x98\x52\x14\xd6\x93\x10\xb9\x90\x13\xcb\x0d\xb0\x9c\x02\x1e\xd7\xee\xa3\xff\x19\xfb\xf7\xf6\xf3\xad\x69\xbe\xda\x61\x20\xca\xf5\x17\xb6\x46\x04\xed\xe2\xdd\xfd\x0b\xbe\x3b\xb7\x3e\x3f\x61\x4f\x04\x00\xde\xc8\xa5\xfc\xf5\x9a\xf6\xb0\xad\x1a\xb6\xfb\xc9\xb1\x91\xca\xf1\x4c\xe9\x70\x0c\x00\x00\xff\xff\x89\xd7\x2e\x22\xcf\x00\x00\x00" +var _flowtokenScriptsGet_supplyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8e\x3d\x8a\xc3\x30\x14\x84\xfb\x77\x8a\xc1\x95\xdd\xac\x9a\x65\x8b\x85\xb4\xbe\x40\x9c\x03\x08\x59\xc2\x22\xfa\xe3\xbd\x67\x92\x10\x72\xf7\x80\xf3\x5b\xce\xcc\xc7\xcc\x18\x83\x69\x89\x02\x71\x1c\x9b\x82\xbd\x9d\x05\xba\x78\x68\x55\x9b\x20\x6b\x6b\xe9\x82\x10\x7d\x9a\xc9\x18\xd4\xb0\x85\x63\xaa\xa7\xa9\x1e\x7d\x81\x64\xcb\x0a\x57\x8b\xb2\x75\x4a\x14\x73\xab\xac\x5f\x40\xe0\x9a\xd1\xbd\x75\x47\x64\x9d\xf3\x22\xbd\x4d\x69\x40\x58\x0b\xb2\x8d\xa5\x1f\xfe\x71\x18\xe3\xf9\xef\x17\x57\x22\x00\x48\x5e\x5f\xeb\xbb\x4f\xdd\xcf\x76\x6b\xbf\xf9\x0f\x8e\xbd\xae\x5c\x9e\x28\xdd\xee\x01\x00\x00\xff\xff\x93\xe0\xcd\xc5\xd0\x00\x00\x00" func flowtokenScriptsGet_supplyCdcBytes() ([]byte, error) { return bindataRead( @@ -1840,11 +1900,11 @@ func flowtokenScriptsGet_supplyCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/scripts/get_supply.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x14, 0x97, 0xdd, 0xc6, 0x1f, 0xdd, 0xa3, 0xc6, 0x4b, 0xf9, 0xd5, 0xe8, 0x4b, 0x50, 0xb5, 0x98, 0x62, 0xbb, 0xdf, 0x23, 0xd, 0x65, 0x66, 0x9e, 0xf3, 0x3, 0x62, 0x4b, 0xee, 0xcb, 0x8f, 0x71}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4f, 0x7c, 0x11, 0x45, 0x40, 0xad, 0x8d, 0x3d, 0x20, 0x6, 0x5b, 0x4d, 0x33, 0xbd, 0x92, 0x38, 0xcd, 0x91, 0x1f, 0x33, 0x5d, 0xa2, 0x8c, 0xf9, 0x8e, 0xd7, 0xdf, 0x52, 0x6d, 0xc0, 0x4e, 0x90}} return a, nil } -var _flowtokenSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xdf\x6a\x1b\x3d\x10\xc5\xef\xf7\x29\xce\xd5\x87\x0d\xf9\xbc\xbd\x0e\x49\xc0\x69\x9c\x52\x5a\x52\x48\xdc\xde\x8f\xe5\xd9\x5d\x11\x59\x12\xd2\x28\x8e\x31\x7e\xf7\xa2\xfd\x63\x77\x9b\x1a\x0a\xa1\xba\x30\xd6\xcc\xd1\xd1\x99\x9f\xb6\x28\x4b\x2c\x1b\x1d\x21\x81\x6c\x24\x25\xda\x59\xe8\x08\x82\xf0\xc6\x1b\x12\x46\xe5\x42\xde\x9e\xfa\xf9\x8c\x38\xd0\x7a\x0d\xc2\x0f\x4a\x46\x10\x38\xba\x14\x14\xe7\xba\x34\xac\x03\x48\x29\x97\xac\x64\x6d\xcc\x35\x92\xdc\xd8\x41\x91\x45\x8a\x9c\x37\xa8\x8c\xdb\x2e\xdd\x33\xdb\xa2\xd0\x1b\xef\x82\xe0\x3e\xd9\x5a\xaf\x0c\xb7\x55\x54\xc1\x6d\xf0\xe1\xf5\xfe\xfb\xc3\xa7\xcf\xb7\x5f\x17\xcb\x6f\x5f\x16\x0f\xf3\xbb\xbb\xc7\xc5\xd3\xd3\xf1\xc0\x60\x31\x88\x47\xa2\xe2\xd7\xa9\xf6\x45\x01\x00\x3e\xb0\xa7\xc0\x93\xa8\x6b\xcb\xe1\x12\xf3\x24\xcd\xbc\x0b\x3b\x1d\x34\x79\xe9\x0a\x9d\x64\xb6\x72\x21\xb8\xed\xd5\x7f\xc7\xbb\x66\xed\xd0\x37\x93\x7c\xe5\x25\xca\x28\x2e\x50\xcd\xe5\x71\x9c\xb6\x3d\xc5\xf5\x35\xac\x36\xd8\x1f\x2d\xf3\x2a\x4b\x7c\x0c\x9c\xb9\x12\x2c\x6f\x4f\x0c\x7a\x92\x64\xd7\xf0\x49\xa0\x05\xda\xa2\xb7\x1e\x39\xf4\xa9\x22\xbd\xf0\xe4\xea\xff\x53\x28\xd5\xda\x2e\x36\x5e\x76\xad\xd5\x64\x7a\x01\x71\xe7\xf3\x15\x67\x73\xf9\xb4\x32\x5a\x41\x91\xa7\x95\x36\x5a\x76\xfd\xb3\xf6\x11\xdb\xc7\x74\xd6\xec\xc0\xaf\xde\x45\x8e\xbf\x1b\x65\xe9\x9a\xbd\x8b\x5a\x50\x25\xdb\xe1\x97\x26\xb8\x54\x37\x6d\xf3\x91\x15\xeb\x17\x0e\xd0\x56\x38\x54\xa4\xfe\x38\xa1\xd1\xf6\xf9\x0d\xf5\xfd\xe8\x13\x99\x0d\x4e\x87\x9b\xc9\xc8\xa2\x4d\xd2\xcd\x71\x9a\x7b\x10\x5f\xbc\x91\x0a\x85\x9a\xe5\x2c\xab\x91\xfe\x1f\x83\x5b\x91\x21\xab\x18\x95\x66\xb3\x1e\x51\xbb\xed\x3b\xef\x86\xd6\x1b\xfd\x15\xb3\x5e\xfb\x5e\x64\xc3\xbf\x43\xd1\xfd\x1e\x0a\xfc\x0c\x00\x00\xff\xff\xf5\xa4\x7a\x20\x7b\x04\x00\x00" +var _flowtokenSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x51\xcd\x8e\x1a\x3d\x10\xbc\xfb\x29\x4a\x1c\x56\x20\xed\xc7\xdc\xd1\xf2\x49\xc9\x2a\x79\x80\x64\x95\x7b\x63\x7a\x18\x2b\xc6\xb6\xec\x36\x04\xad\xf6\xdd\x23\xcf\x6f\x86\x85\x28\x87\x5c\xe2\xc3\x68\xdc\x5d\xae\xae\xae\x52\x55\x85\x97\xc6\x24\x48\x24\x97\x48\x8b\xf1\x0e\x26\x81\x20\x7c\x0c\x96\x84\x51\xfb\x58\xae\x53\xbf\xbc\x11\x0f\xda\xef\x41\xf8\x46\xd9\x0a\x22\x27\x9f\xa3\xe6\x52\x97\x86\x4d\x04\x69\xed\xb3\x93\x82\x4d\xa5\x46\x52\x1a\x17\x68\x72\xc8\x89\xcb\x05\xb5\xf5\xe7\x17\xff\x9d\x9d\x52\xe6\x18\x7c\x14\x7c\xce\xee\x60\x76\x96\xdb\x2a\xea\xe8\x8f\x58\xcc\x6a\x8b\x11\x39\xbc\x1d\x50\xc3\x7d\xa1\xd4\xaf\xbb\xbc\x2a\x05\x00\x21\x72\xa0\xc8\xcb\x64\x0e\x8e\xe3\x06\x94\xa5\x59\x7e\x15\x1f\xe9\xc0\x2b\x3c\x7c\xe8\xd4\xae\x06\x78\x39\xa6\x46\x87\x5e\xa7\x0e\xb7\xde\xf9\x18\xfd\xf9\xe9\x61\x9c\xb5\x6e\xb7\xff\x7f\x59\x24\x6c\x50\xf5\xb8\x6a\xdc\xab\x6d\xaf\xb0\xdd\xc2\x19\x8b\xd7\x91\xba\x9c\xaa\xc2\x73\xe4\x62\x30\xc1\xf1\x79\x32\xa3\xb7\x94\xdc\x1e\x21\x0b\x8c\xc0\x38\xf4\xd4\x33\x86\x2b\x75\x89\x4e\xbc\x7c\xfa\x6f\x12\xa7\x5b\xfa\x4f\xc7\x20\x97\x96\x72\xb9\x7a\x84\xf8\xfb\x3a\xd5\x5d\x7d\x21\xef\xac\xd1\xd0\x14\x68\x67\xac\x91\x4b\x9f\x73\x2f\xb5\x4d\xd7\x3b\x7b\x01\xff\x08\x3e\x71\xba\x26\x2a\xd0\x3d\x07\x9f\x8c\xa0\xce\xae\x4b\x46\x9a\xe8\xf3\xa1\x69\x9b\x5f\x58\xb3\x39\x71\x84\x71\xc2\xb1\x26\x3d\xdf\xd4\xb2\xe0\x54\x46\x3d\x53\xc0\x76\x58\x7c\x94\x63\x38\x8d\x2e\x98\x94\x32\xdf\x88\x68\xc6\xd7\xca\xba\xed\xc2\x0c\x77\x65\xc9\xad\xb9\xad\x35\xa9\x79\xcf\x3f\xe8\x7d\x7c\xd7\x21\xd9\xa0\xea\x2c\x9d\x86\x0f\x0e\xfc\x6e\xfe\xdf\x8e\x64\x47\x96\x9c\x66\xd4\x86\xed\x7e\x96\xc7\xc7\xbe\x73\x3f\x8e\xfe\xed\x3f\x14\xc8\xa4\xf8\x0f\x23\xe9\x4d\xb8\x12\x30\xfc\xbd\xa9\xee\xfb\xa6\xf0\x33\x00\x00\xff\xff\x74\xcd\x81\x62\x45\x05\x00\x00" func flowtokenSetup_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -1860,11 +1920,11 @@ func flowtokenSetup_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/setup_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd, 0x7f, 0xe2, 0x5c, 0x57, 0xa8, 0xac, 0xa8, 0xe3, 0xb8, 0xd6, 0x96, 0x91, 0x2e, 0x58, 0x58, 0x1, 0xf3, 0x34, 0xd2, 0x9e, 0xcf, 0x4a, 0xfd, 0xec, 0xea, 0x87, 0xa2, 0x4d, 0xa5, 0xfb, 0xc9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x26, 0x3b, 0x9, 0x19, 0x12, 0xf7, 0x3d, 0x9c, 0x52, 0x2d, 0x2c, 0x62, 0x9c, 0x34, 0xbd, 0x30, 0x11, 0xa0, 0xaa, 0xb7, 0x70, 0xa, 0xf6, 0xc6, 0xed, 0xe4, 0x7d, 0x3f, 0xe5, 0xca, 0x4a, 0xf0}} return a, nil } -var _flowtokenTransfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xc1\x6e\xdb\x3a\x10\x3c\x47\x5f\xb1\x2f\x87\x17\x19\x68\xa4\x1e\x8a\x1e\x8c\x34\xa9\x9b\xc4\x41\xd1\x22\x05\x1c\xa7\x3d\x53\xd2\x4a\x22\x2a\x93\xc2\x72\x15\xd9\x08\xfc\xef\x05\x49\x51\xb1\x1c\xa0\xa9\x2f\x86\xc8\xd9\xd9\xd9\x99\x65\x9a\xc2\xba\x96\x06\x98\x84\x32\x22\x67\xa9\x15\x48\x03\x02\x18\x37\x6d\x23\x18\xa1\xd4\x64\x3f\x0f\xee\xb9\x16\x1c\xa5\x29\xe4\xba\x6b\x0a\xc8\x10\x3a\x83\x05\x64\x3b\x10\x6a\xa7\x15\x02\x6b\x30\xa8\x0a\x60\xfd\x1b\x95\xb1\x9f\x42\x69\xae\x91\x40\xe4\xb9\xee\x94\x2b\xb6\x24\x50\x0b\x03\x19\xa2\x02\x83\x0c\x5d\x6b\xa1\x84\x39\xca\x27\x1c\x8a\x93\x28\x4d\x23\xa7\x11\xa1\x97\x5c\x17\x24\x7a\x10\x1b\x4b\x02\xc2\xb6\xa8\x31\x90\x42\x49\x7a\x03\x15\xf2\xe2\xa5\x49\x1f\x14\x5a\x5c\x2b\x48\x6c\x90\x91\x9c\x24\x7b\x72\x30\x54\x14\xc9\x4d\xab\x89\x61\xd9\xa9\x4a\x66\x0d\xae\x6d\x7f\xcf\xf9\x7e\xbb\x7c\xbc\xbf\xfb\xfa\xe5\xfb\xed\xfa\xc7\xb7\xdb\xfb\xc5\xcd\xcd\xea\xf6\xe1\x61\x2c\x68\x74\x3f\x01\x4f\x40\xd1\x41\x8f\xd8\x0b\x9f\xc3\xe3\x52\x6e\x3f\x7e\x78\x07\xac\xe7\xb0\x28\x0a\x42\x63\x66\xf0\x1c\x45\x00\x00\xc3\xb0\x3f\x45\xd7\x30\x10\x1a\xdd\x51\x8e\x83\x5b\xba\x29\x8c\x17\x3e\x38\x6b\x4f\x05\x21\x64\x28\x55\xe5\xc7\x29\x91\x08\x0b\x47\xd5\x20\xdb\x20\xd8\x71\xcd\xe1\xf3\x64\xb4\xc4\x9d\xfa\x9e\x2d\x61\x2b\x08\x63\x23\x2b\x85\x34\x87\x45\xc7\xf5\xe0\xe2\xa8\x6b\xd0\x76\x87\x0c\x02\x08\x4b\x24\x54\x39\x06\x27\x7d\xe5\x99\x01\xc3\x9a\xb0\x80\x27\x47\x1e\xea\xac\x10\x77\xb2\xc2\x12\x3e\x0d\xe0\x24\xd3\x44\xba\xbf\xf8\x7f\x34\xd0\x4b\xba\x8c\xad\x8f\x73\x48\x2d\x95\xa8\x30\x2d\xc3\xbd\xbb\x9e\x45\x27\x27\x27\x57\x57\xd0\x0a\x25\xf3\xf8\xf4\xda\x25\xac\x34\x83\xa7\x7b\x2d\x4d\xf7\x5e\x99\xab\xfe\xef\x74\x36\x19\xe7\x57\xd8\xa9\xc1\x51\x17\xe1\xdb\x03\x19\x6c\xca\x64\xb4\x16\x2e\xce\xc7\xf1\x92\xb0\xa5\x63\xd8\xfe\x7f\xe6\x6a\xf7\xbe\x39\x6e\x31\xef\x18\xff\xcd\x5a\xc2\x5c\xb6\x12\x15\x9f\x19\x58\xf9\xc7\x41\x13\x67\x87\x17\x43\xde\xdc\x83\x17\x10\xb3\x9e\x8d\x48\xfb\x4b\x2a\xe4\x6b\xd1\x8a\x4c\x36\x92\x77\x71\xda\x76\x59\x23\xf3\x17\x83\x03\xfd\x51\x55\x08\xea\x79\xba\x40\x01\xbd\xbf\x8c\xdf\x0e\xc5\x43\xff\x3e\x9d\x33\xf3\x28\xa0\x1b\x6c\xb5\x91\xec\xb0\xc1\x5a\x15\xd2\x92\xea\x15\x07\x1d\x3b\x74\xe0\x4e\x52\x78\xb2\x61\xc1\x2e\xce\xa7\x31\x86\x88\xf6\xd1\x9f\x00\x00\x00\xff\xff\xab\x4d\x31\xba\x15\x05\x00\x00" +var _flowtokenTransfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x41\x4f\xdc\x3c\x10\x3d\x93\x5f\xf1\xbe\x3d\x40\x22\x7d\x24\x97\x4f\xdf\x61\x45\xa1\xb4\x15\xbd\x23\x4a\xcf\x4e\x32\xd9\x58\xcd\xda\xd1\x78\xc2\x82\x10\xff\xbd\xb2\x1d\x87\x0d\x48\xa5\x7b\x59\x65\x3c\xf3\xde\x9b\xf7\xec\xaa\xc2\x5d\xaf\x1d\x84\x95\x71\xaa\x11\x6d\x0d\xb4\x83\x82\xd0\x7e\x1c\x94\x10\x3a\xcb\xfe\xf3\xe8\x5c\x7a\x25\x59\x55\xa1\xb1\xd3\xd0\xa2\x26\x4c\x8e\x5a\xd4\x4f\x50\xe6\xc9\x1a\x82\x58\x38\x32\x2d\xc4\xfe\x22\xe3\xfc\xa7\x32\x56\x7a\x62\xa8\xa6\xb1\x93\x09\xc3\x1e\x04\xbd\x72\xa8\x89\x0c\x1c\x09\xa6\xd1\xb7\x32\x35\xa4\x1f\x68\x1e\x2e\xb3\xaa\xca\x82\x46\xc2\x41\x4b\xdf\xb2\x3a\x40\xed\x3d\x08\x94\xa7\xe8\x29\x81\xa2\x63\xbb\xc7\x8e\xe4\xfa\x95\xe4\x90\x14\xfa\xbe\x51\xb1\xda\x93\x10\x07\x49\xbe\x72\xb4\x54\x96\xe9\xfd\x68\x59\x70\x33\x99\x9d\xae\x07\xba\xf3\xfc\x11\x73\xb3\xaa\x6d\x96\xce\xc1\x1e\x56\x5d\xe9\x7b\x93\x65\x47\xc8\x79\x94\xbb\xc5\x8f\x1b\xfd\xf8\xff\x7f\xff\x42\xec\x16\xd7\x6d\xcb\xe4\x5c\x81\xe7\x2c\x03\x80\x79\xc5\x7b\x35\x0d\x02\x26\x67\x27\x6e\x68\xf6\xc8\x0e\xad\x8b\x72\x67\x3f\x7d\x55\x31\xa1\x26\x6d\x76\x71\x89\x8e\x98\xa9\x0d\x50\x03\x89\xb7\x5f\x02\xd6\x16\x9f\x57\xe2\xcb\x50\x8d\x9c\x23\xd3\xa8\x98\x72\xa7\x77\x86\x78\x0b\x35\x49\x9f\x7f\xb1\xcc\xf6\x70\xaf\x86\x89\x0a\x9c\xce\x56\x2e\x32\x67\xa9\xdf\x49\xa0\xc0\xd4\x11\x93\x69\x28\xd9\x19\x81\xce\x1c\x9c\x58\xa6\x16\x0f\x81\x2b\xcd\x79\x5d\xa1\x72\x4b\x1d\x3e\xcd\xcd\xa5\x6f\x55\x3b\x2a\xeb\xc0\x7b\x11\x34\xac\x15\xff\x9c\x63\x2f\x70\xba\x38\x1c\xd7\xb8\xcc\xbd\xf1\x5b\x54\x33\x48\xd5\xa5\xf3\x70\x5c\x64\x27\x27\x27\x57\x57\x18\x95\xd1\x4d\xbe\xf9\x1a\xee\x82\xb1\x82\xc8\xf5\x5e\xbf\x3d\x44\xf9\x61\xfa\x9f\x4d\xb1\xda\x39\xc9\x48\x29\x84\xcc\x3f\xde\xda\xd1\xd0\x95\x4b\x1c\xb8\x38\x5f\x3c\x28\xd3\x7d\x5e\x2e\x48\xfc\x2f\xc2\xec\x4b\x24\xa7\x47\x6a\x26\xa1\xbf\xf3\x9f\xa9\xd1\xa3\x26\x23\x67\x0e\xb7\xf1\x19\xf1\xca\xfe\xf9\x6d\x71\x4c\xe0\xe8\xad\xe4\x62\x8b\xa5\xd3\xff\xca\x46\x8d\xaa\xd6\x83\x16\x4d\x2e\x85\x73\xfa\xbc\x4e\x26\x71\xbc\x5c\xe6\xd5\x38\xd5\x83\x6e\x5e\x13\x48\x67\x1f\x87\x10\xfb\xfe\xbc\x4d\x30\xef\x4d\x20\xdf\x68\xb4\x4e\x4b\xe8\x4d\x56\x9a\x94\x8e\x36\xef\x30\xf8\xad\x23\x47\x6e\x94\x6d\x04\x9b\x2f\xd4\xc5\xf9\x3a\xb6\x14\xc9\x4b\xf6\x3b\x00\x00\xff\xff\xf7\x2a\x53\x84\x2f\x05\x00\x00" func flowtokenTransfer_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1880,11 +1940,11 @@ func flowtokenTransfer_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/transfer_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x85, 0xa4, 0x80, 0x7b, 0x7, 0xe0, 0x6e, 0xa7, 0xff, 0xc4, 0x37, 0xf4, 0x66, 0x87, 0x8a, 0x20, 0x73, 0x73, 0xdb, 0x44, 0x60, 0xdd, 0xfe, 0x20, 0x1c, 0x22, 0x9c, 0x38, 0x17, 0x58, 0x62, 0xa3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0x6a, 0x53, 0x3a, 0xa2, 0xb8, 0xe7, 0x84, 0x84, 0xde, 0x4c, 0x92, 0xe8, 0xa8, 0x54, 0x49, 0xdf, 0xa7, 0x97, 0xe, 0x83, 0x7a, 0x21, 0xad, 0xba, 0x30, 0x65, 0xe5, 0x5b, 0xf4, 0x7d, 0x8b}} return a, nil } -var _idtablestakingAdminAdd_approved_and_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x4d\x6b\xdb\x40\x10\x3d\x4b\xbf\x62\x92\x43\x2b\xd3\x62\x37\x57\x53\x37\xb8\x55\x0a\x02\x13\x4a\xec\x4b\x09\x39\xac\x77\x47\xd6\xb6\xeb\x5d\xb1\x3b\x8e\x12\x82\xff\x7b\x99\x95\xe4\x8f\x44\xa1\x7b\x11\x48\x6f\xde\x3c\xbd\x79\xb3\x7a\x5b\x3b\x4f\xf0\xd3\xb8\xa6\xc8\x57\x62\x6d\x70\x49\xe2\xaf\xb6\x1b\x28\xbd\xdb\xc2\x97\xa7\x22\xbf\xb9\x5d\x15\xab\xdf\xab\xf9\xf7\xc5\xcd\x3c\xcf\xef\x6e\x96\xcb\x34\x9d\x4c\x26\xb0\xaa\x74\x00\xf2\xc2\x06\x21\x49\x3b\x0b\x42\xa9\x00\xd6\x29\x84\x22\x0f\x40\x0e\xa8\x42\x30\x3a\x10\xb8\x12\x44\x5d\x7b\xf7\x88\x2a\x02\x02\x68\x1b\x39\x18\x51\xe4\x40\xdc\x78\x0c\xf1\x55\x41\x20\x4c\x70\xa0\xad\xf4\x28\x02\x06\x08\xc6\x11\x18\xbd\xd5\x14\x22\x62\xfd\x1c\xeb\xec\x6e\xbb\x46\xcf\xdc\x2d\x65\x53\x39\x10\x1e\x59\x06\x2a\x06\xb6\x74\x25\x08\xfb\xcc\x28\xae\x61\x0d\x5a\x1d\x54\x08\xe3\x51\xa8\x67\xc0\x27\x56\xa9\xed\x99\x9e\xcf\x40\x95\x6e\x3b\x9e\xfe\x65\xa3\x8d\x01\xeb\x08\x3c\x3e\xa2\x27\xc8\xb4\xc2\x6d\xed\x08\x2d\x8d\xd2\xf4\x04\x99\x59\x6c\xe6\xdd\x5f\x17\x79\x98\xc2\xfd\x92\xbc\xb6\x9b\x87\x11\xbc\xa4\x29\x00\xc0\x64\x02\x0b\x27\x85\x81\x47\xe1\x35\xb7\x84\xd2\x79\x10\xe0\xb1\x44\x8f\x56\x62\x6f\x62\x91\x43\x9c\x0d\xcc\xd5\x56\x5b\x70\xeb\x3f\x28\x29\x52\x18\x24\x10\xfc\xf2\x0e\xcb\x29\x7c\x78\x3b\xc7\x71\x2c\x69\xfb\xd5\x1e\x6b\xe1\x31\x13\x52\xd2\x14\xe6\x3b\xaa\xe6\x52\xba\x9d\x25\x56\x04\xdd\x61\x83\x9d\xf7\xae\x19\x12\x22\x5e\xf7\xe7\x13\xd0\x94\xe3\x5e\x04\xcc\x80\xe9\xc7\x2d\xc7\xd7\x77\x15\x7d\xcb\x38\x60\xd3\x81\xe4\x8d\xbb\x67\x84\x2d\xc9\x79\xb1\xc1\x5f\x82\xaa\xd1\xa1\x21\x9f\xeb\x6b\xa8\x85\xd5\x32\xbb\xfc\xe1\x76\x46\xc5\x89\x74\xba\xcf\x54\x87\x2e\xce\x51\xdf\x65\xcb\xb1\x6f\xed\xc0\x27\x94\x3b\x42\x78\x49\x93\x84\x7d\x8c\x29\xe0\xc6\xc7\xa1\xc1\x6c\x48\xe0\x06\xa9\xc7\x2c\x74\xa0\x6c\x94\x26\x49\x32\x24\xc8\x38\xa1\x8e\xc9\xe7\x55\xb8\x1c\xa5\x5d\x37\x4e\xf5\x22\x86\xfa\xdd\x26\x77\xce\xe0\xf2\x00\xcb\x62\xe9\x64\xc2\x01\x8f\x99\xb6\xd8\xf4\xeb\x06\x4d\xa5\x65\x05\xca\x61\xb0\x1f\x69\x38\xd7\x9d\x8e\x28\xa3\x23\xb2\xea\xb0\x66\x11\x22\x85\x55\x5a\x09\xc2\x96\xb7\xdd\xb9\x08\x3b\xd9\x41\xde\xbf\xab\x96\x80\xe3\x8a\x42\x56\x20\x9d\xf7\x18\x6a\x67\x15\x7b\x1d\x8b\xdb\x35\x4c\x12\xc6\x58\x6c\x6e\x9d\xc2\x22\x67\x2d\xe7\x6b\x11\xdd\x4f\x74\x39\xe4\xfe\xfd\xa1\xee\x01\x2e\x66\x60\xb5\xe9\x72\x9a\x24\x89\x74\x96\xb4\xdd\x21\x57\xef\xd9\x98\x68\x2a\x77\x2e\x6c\xe9\x86\x2d\xbd\xed\xbe\x66\x07\xde\x68\x69\x72\x1c\xc5\x7d\x4f\x30\xf6\xce\xe0\x03\xcc\xe0\xdd\x6f\x17\xf0\x09\xae\x62\xf9\x7f\x94\xcf\x80\x7c\xd4\xb9\xef\xe6\x17\x90\x4e\x07\xd2\x06\xa3\xdf\xb0\x9d\xe5\x4b\xc6\x1d\xfd\x88\xf6\x9f\x8c\x3a\x0c\xef\xdd\x38\xbc\x0a\xe5\x80\xaa\x3e\x40\x4b\x76\x0a\x9b\xb3\x8b\x35\x49\xde\xd0\x9d\x44\xef\xe8\xc2\xf4\xc4\x91\x7e\x9b\xf6\xff\x02\x00\x00\xff\xff\x1a\xe3\xcc\x49\x46\x06\x00\x00" +var _idtablestakingAdminAdd_approved_and_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x4d\x6f\xe3\x36\x10\x3d\x4b\xbf\x62\xd6\x87\xad\x8c\x16\x32\xf6\x6a\xd4\x5d\xa4\x35\x0a\x08\x08\x16\xc5\x7a\xd1\x4b\x90\x03\x4d\x8e\x2c\xb6\x34\x47\x20\x47\x51\x82\xc0\xff\xbd\x18\x4a\xf2\x47\xa2\xa0\xbc\x18\x30\xdf\xbc\x79\x7c\xf3\x46\xf6\xd8\x52\x60\xf8\xd3\x51\x5f\x6d\x7f\xa8\xbd\xc3\x1d\xab\x7f\xad\x3f\x40\x1d\xe8\x08\x8b\xf7\x17\x8b\x3c\x5f\xad\x56\xf0\xa3\xb1\x11\x38\x28\x1f\x95\x66\x4b\x1e\x94\x31\x11\x3c\x19\x84\x6a\x1b\x81\x09\xb8\x41\x70\x36\x32\x50\x0d\xaa\x6d\x03\x3d\xa1\x49\x80\x08\xd6\x27\x0e\x41\x54\x5b\x60\x61\x2f\x21\xfd\x55\x31\x28\x17\x09\xac\xd7\x01\x55\xc4\x08\xd1\x11\x83\xb3\x47\xcb\x31\x21\xf6\x2f\xa9\xce\x77\xc7\x3d\x06\xe1\x1e\x28\xfb\x86\x40\x05\x14\x19\x68\x04\x38\xd0\xd5\xa0\xfc\x8b\xa0\xa4\x46\x34\x58\x73\x56\xa1\x5c\x40\x65\x5e\x00\x9f\x45\xa5\xf5\x37\x7a\x7e\x01\x6e\xec\xd0\xf1\xfa\x95\xbd\x75\x0e\x3c\x31\x04\x7c\xc2\xc0\x50\x58\x83\xc7\x96\x18\x3d\x2f\xf3\xfc\x0a\x59\x78\xec\xef\xc6\x57\x57\xdb\xb8\x86\x87\x1d\x07\xeb\x0f\x8f\x4b\x78\xcd\x73\x00\x80\xd5\x0a\xee\x49\x2b\x07\x4f\x2a\x58\x69\x09\x35\x05\x50\x10\xb0\xc6\x80\x5e\xe3\x64\x62\xb5\x85\x34\x00\xb8\x33\x47\xeb\x81\xf6\xff\xa0\xe6\x44\xe1\x90\x41\xc9\x9f\xdf\xb1\x5e\xc3\xe7\xf7\xc3\x2a\x53\xc9\xd0\xaf\x0d\xd8\xaa\x80\x85\xd2\x9a\xd7\xa0\x3a\x6e\x8a\xdf\x29\x04\xea\xff\x56\xae\xc3\x25\x7c\xbe\xd3\x9a\x3a\xcf\x22\x10\xc6\x23\x7e\x27\xcc\x9c\x2e\xf5\x56\x8e\x9c\x88\xae\x2e\x27\x4d\xb0\x01\xe9\x56\x46\xa6\xa0\x0e\x58\x0e\x5c\xbf\x7e\x28\xf4\xb7\x42\x52\xb7\x9e\x89\x63\x39\xfe\x26\xd8\x6e\xa0\xfb\x4b\x71\xb3\x3c\x37\x96\xf3\xf5\x2b\xb4\xca\x5b\x5d\x2c\xfe\xa0\xce\x99\x34\xa8\x51\xff\x8d\xfa\x38\x66\x3c\xe9\x5c\x0c\x1c\xa7\xc1\x25\x7c\x46\xdd\x31\xc2\x6b\x9e\x65\x62\x6f\x0a\x87\x34\xbe\xcc\x12\x36\x73\x02\x0f\xc8\x13\xe6\xde\x46\x2e\x96\x79\x96\x65\x73\x82\x1c\x29\x73\x59\x08\xd9\x90\xc5\x32\x1f\xbb\x49\xd8\xef\x53\xd6\x3f\x6c\xf2\x9d\x1c\xee\xce\xb0\x22\x95\xae\x56\x92\xfb\x14\x75\x8f\xfd\xb4\x85\xd0\x37\x56\x37\x60\x08\xa3\xff\x89\xe7\xe3\x3e\xea\x48\x32\x46\x22\x6f\xce\xdb\x97\x20\x5a\x79\x63\x8d\x62\x1c\x78\x87\x55\x4c\xb0\xab\xd5\x94\xb5\xfc\x32\x10\x48\x8a\x51\xe9\x06\x34\x85\x80\xb1\x25\x6f\xc4\xeb\x54\x3c\x6c\x67\x96\x09\xc6\x63\xff\x8d\x0c\x56\x5b\xd1\x72\xbb\x2d\xc9\xfd\xcc\xd6\x73\xee\x3f\x9c\xeb\x1e\xe1\xd3\x06\xbc\x75\x63\x5e\xb3\x2c\xd3\xe4\xd9\xfa\x0e\xa5\xfa\x24\xc6\x24\x53\xa5\x73\xe5\x6b\x9a\xb7\xf4\xdb\x78\x5b\x24\xd8\x76\x7d\xd1\x95\xac\xcd\x2e\x23\x79\x98\x88\xca\x40\x0e\x1f\x61\x03\x1f\xde\x7d\x82\x9f\xe1\x4b\x2a\xff\x9f\x17\x6c\x80\x43\xd2\x7b\x1a\xe7\x18\x91\xaf\x07\x33\x04\x64\xda\xb8\xce\xcb\x37\x88\x2e\xbe\xa4\x31\x5c\x8d\x3c\xce\xef\x61\x19\xdf\x84\x73\x46\xd5\x14\xa4\x9d\x38\x86\xfd\xcd\x77\x37\xcb\xde\xd1\x5d\x45\xf0\xe2\xc2\xfa\xca\x91\x69\xab\x4e\xff\x05\x00\x00\xff\xff\xa0\x1b\xa9\x9a\x63\x06\x00\x00" func idtablestakingAdminAdd_approved_and_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -1900,11 +1960,11 @@ func idtablestakingAdminAdd_approved_and_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/add_approved_and_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc8, 0xe6, 0xc4, 0xf4, 0x46, 0x26, 0x18, 0x6a, 0x26, 0xbd, 0xc5, 0x90, 0x12, 0x8e, 0x38, 0x0, 0x49, 0xa, 0x72, 0x2a, 0x83, 0x1e, 0xd0, 0x97, 0xae, 0x62, 0x87, 0x70, 0x94, 0xe8, 0x16, 0x1b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0x5c, 0xc3, 0x2d, 0xdd, 0xd4, 0x3f, 0x6, 0xb, 0x28, 0xd4, 0x83, 0xa8, 0x94, 0xed, 0x21, 0x85, 0x73, 0x1f, 0x61, 0xf0, 0x2f, 0xba, 0x6c, 0xed, 0xc4, 0x1f, 0xbe, 0x46, 0xf9, 0x40, 0x80}} return a, nil } -var _idtablestakingAdminAdd_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x93\x5f\x6b\xdb\x3c\x14\xc6\xaf\xed\x4f\xf1\xd0\x8b\xf7\x75\x60\xd8\xbb\x0e\xeb\x8a\x37\x77\x60\x28\x65\x34\xb9\x19\xa5\x17\x8a\x75\x1c\x6b\x73\x24\x23\x1d\xc7\x29\x25\xdf\x7d\x48\xb6\x43\xd2\x65\x4c\x37\x06\xe9\xfc\x79\xce\x73\x7e\x56\xbb\xce\x58\xc6\xb7\xd6\x0c\x65\xb1\x16\x9b\x96\x56\x2c\x7e\x29\xbd\x45\x6d\xcd\x0e\x1f\x0f\x65\x71\xff\xb8\x2e\xd7\x3f\xd6\xf9\x97\x87\xfb\xbc\x28\x9e\xee\x57\xab\x38\xce\x32\xac\x1b\xe5\xc0\x56\x68\x27\x2a\x56\x46\x43\x48\xe9\xa0\x8d\x24\x94\x85\x03\x1b\x70\x43\x68\x95\x63\x98\x1a\xa2\xeb\xac\xd9\x93\x0c\x01\x0e\x4a\xfb\x12\x3e\xa0\x2c\xc0\xbe\x6d\x0a\x7f\x53\xd6\x10\xfa\xd5\x27\xf8\x37\x9f\xa2\xe4\x29\x49\xb4\x96\x84\x7c\x05\x1d\x7c\x51\xa5\x2f\xf2\x3f\x80\x1b\xe5\x42\xd5\x33\x4d\x83\x6a\x5b\x68\xc3\xb0\xb4\x27\xcb\x48\x94\xa4\x5d\x67\x98\x34\x2f\xe2\xf8\x2c\x32\x51\xd2\x2d\xf1\xbc\x62\xab\xf4\xf6\x65\x81\xb7\x38\x06\x80\x2c\xc3\x83\xa9\x44\x8b\xbd\xb0\xca\xb7\x41\x6d\x2c\x04\x2c\xd5\x64\x49\x57\x34\xcf\x59\x16\x08\xee\x21\x97\x3b\xa5\x61\x36\x3f\xa9\xe2\x50\xa2\x25\x86\xf0\x97\x4f\x54\x2f\xf1\xdf\x9f\x4e\xa7\x21\x65\xec\xd7\x59\xea\x84\xa5\x44\x54\x15\x2f\x91\xf7\xdc\xe4\x55\x65\x7a\xcd\x5e\x11\xa6\x93\x65\xd8\x18\x6b\xcd\x70\x4d\x88\x78\xdf\xdf\x1f\x47\x6d\x9d\xce\x22\x70\x0b\x5f\x3e\x1d\x6b\x7c\xfa\xab\xa2\xcf\x89\x47\x60\x79\x85\x8d\x74\xfa\x86\xb0\x15\x1b\x2b\xb6\xf4\x5d\x70\xb3\x38\x35\xf4\xe7\xee\x0e\x9d\xd0\xaa\x4a\x6e\xbe\x9a\xbe\x95\x61\x0d\x93\xee\x0b\xd5\x6e\x02\x2e\xe8\xbb\x19\x6b\x1c\x47\x3b\xe8\x40\x55\xcf\x84\xb7\x38\x8a\xbc\x8f\x9e\x03\x0f\xd7\xed\x35\x51\x5b\xe2\x7c\xa2\xec\x41\x39\x4e\xfe\xad\xc6\xe3\x34\x93\x39\x92\x1a\xa0\x77\xe3\x44\x37\x8b\x38\x8e\xa2\x2c\xf3\x60\x07\x2a\x35\x0d\x33\xdf\x18\x1a\x55\x35\x90\x86\x9c\xfe\x9f\x2f\xc9\x8c\xa3\xc8\x43\xa2\x69\x78\x0c\x72\x3d\xa9\x4a\xba\x30\x44\x34\x4d\xf0\x7c\x7a\x7d\xc1\x2d\xd8\xf6\x14\x47\xd1\x71\xea\xe7\x88\xc7\x55\xce\xff\x4c\x90\x36\xed\xb7\xd7\x9e\x6b\x53\x8f\xbd\x82\x6f\x5a\x9e\x4b\x73\xd7\xb7\x9e\xba\x77\xf6\x4c\x4a\x66\xbf\x8f\xbf\x03\x00\x00\xff\xff\xb8\xd4\x12\x39\x0a\x04\x00\x00" +var _idtablestakingAdminAdd_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x93\x51\x6b\xdb\x30\x14\x85\x9f\xed\x5f\x71\xc8\x43\xe7\xc0\xb0\xdf\xc3\xba\x92\x2d\x0c\x02\x65\x8c\xa5\xec\xa5\xf4\x41\xb1\xae\x63\x6d\x8e\x64\xa4\xeb\xb8\xa5\xe4\xbf\x8f\x2b\xdb\x21\x69\x33\xa6\x17\x83\x75\xef\xb9\x47\x47\x9f\xcc\xbe\x75\x9e\xf1\xad\x71\xfd\x7a\xf5\xa0\xb6\x0d\x6d\x58\xfd\x31\x76\x87\xca\xbb\x3d\x66\xef\x37\x66\x69\x5a\x14\x78\xa8\x4d\x00\x7b\x65\x83\x2a\xd9\x38\x0b\xa5\x75\x80\x75\x9a\xb0\x5e\x05\xb0\x03\xd7\x84\xc6\x04\x86\xab\xa0\xda\xd6\xbb\x03\xe9\x58\x10\x60\xac\x48\x48\xc1\x7a\x05\x16\xed\x1c\xf2\x67\x5d\x41\xd9\x17\x69\x90\x3d\x69\x31\xfa\xd4\xa4\x1a\x4f\x4a\xbf\x80\x9e\x45\xd4\xd8\x8b\xfe\x8f\xe0\xda\x84\xa8\x7a\xe6\xa9\x37\x4d\x03\xeb\x18\x9e\x0e\xe4\x19\x99\xd1\xb4\x6f\x1d\x93\xe5\x79\x9a\x9e\x55\x66\x46\x87\x05\x1e\x37\xec\x8d\xdd\x3d\xcd\xf1\x9a\xa6\x00\x50\x14\xb8\x77\xa5\x6a\x70\x50\xde\xc8\x18\x54\xce\x43\xc1\x53\x45\x9e\x6c\x49\xd3\x39\xd7\x2b\xc4\x88\xb0\xd4\x7b\x63\xe1\xb6\xbf\xa9\xe4\x28\xd1\x10\x43\xc9\xcf\x9f\x54\x2d\x70\xf3\x3e\xce\x3c\xb6\x0c\xf3\x5a\x4f\xad\xf2\x94\xa9\xb2\xe4\x05\x54\xc7\x75\xf6\xc5\x79\xef\xfa\x5f\xaa\xe9\x68\x8e\x9b\x65\x59\xba\xce\xb2\x18\xc4\xb8\x8a\x02\xdb\x58\x73\xcd\x97\x7a\x6b\x47\x56\xa0\xa6\xca\x27\x4f\xb8\x85\x4c\xcb\x03\x3b\xaf\x76\x94\x0f\x5a\x9f\xfe\x69\xf4\x73\x26\x5c\x2c\xae\x00\x93\x8f\xdf\x58\xb6\x19\xe4\x7e\x28\xae\xe7\xa7\xc1\xb2\xee\xee\xd0\x2a\x6b\xca\x6c\xf6\xd5\x75\x8d\x8e\xb7\x33\xfa\xbf\x70\x1f\x46\x0a\xa3\xcf\xd9\xa0\x71\x1c\x52\xa2\x67\x2a\x3b\x26\xbc\xa6\x49\x22\xf1\x0a\x1e\xc2\xdc\xed\x35\x53\x3b\xe2\xe5\x08\xdf\xbd\x09\x9c\xfd\xdf\x8d\x50\x36\x01\x3b\x00\x1c\x5f\xc2\x18\xd0\x6c\x9e\xa6\x49\x52\x14\xc2\x7b\x84\xd5\x52\x3f\x61\x8f\xbe\x36\x65\x0d\xed\x28\xd8\x0f\x7c\x09\x6c\x9a\x24\xc2\x8e\xa5\xfe\x7b\xb4\x2b\x00\x1b\x1d\xe2\x21\x92\xf1\x04\x8f\xa7\xdd\x27\xdc\x82\x7d\x47\x69\x92\x1c\xc7\x79\x81\x78\xb8\xd2\xe9\x29\x45\x6b\xe3\x3d\x77\x56\x70\x77\xd5\x30\x2b\xe6\x66\xf5\xb9\xb5\x70\xfd\xf6\xf3\xf0\x26\x9e\xd1\xc9\x94\xf7\xf1\x6f\x00\x00\x00\xff\xff\xba\x60\xb0\x0b\x1f\x04\x00\x00" func idtablestakingAdminAdd_approved_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -1920,11 +1980,11 @@ func idtablestakingAdminAdd_approved_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/add_approved_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0x5a, 0x78, 0xd4, 0xfa, 0x43, 0xe2, 0xe0, 0xa8, 0x42, 0xec, 0xc0, 0x92, 0x56, 0x5c, 0xb, 0x55, 0x70, 0x39, 0xaf, 0xd9, 0x49, 0x71, 0xb2, 0x12, 0x22, 0x40, 0xeb, 0x88, 0x3a, 0x49, 0x8c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc4, 0x2e, 0x15, 0x46, 0x80, 0xde, 0x18, 0xca, 0x68, 0xd8, 0xcb, 0xd0, 0xd8, 0xb5, 0x9c, 0x1c, 0x8d, 0x79, 0x2a, 0xfc, 0xfd, 0x40, 0x7c, 0xeb, 0xd1, 0x65, 0x4f, 0xc8, 0x1, 0xa7, 0x95, 0x8}} return a, nil } -var _idtablestakingAdminCapability_end_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x53\xc1\x6a\xe3\x48\x10\xbd\xeb\x2b\x8a\x1c\x16\x05\x8c\xb4\xbb\x2c\x7b\x10\x99\x04\x27\x76\xc0\x10\x86\x10\x7b\x0e\x73\x0a\xa5\x56\xc9\xea\x89\xd4\x2d\xba\x4b\x91\x4d\xc8\xbf\x0f\xdd\x2d\x29\x56\x26\x99\xe9\x8b\xb1\xaa\xde\xab\x57\x55\xaf\x64\xd3\x6a\xc3\x70\x5b\xeb\x7e\xb3\xda\x61\x5e\xd3\x96\xf1\x49\xaa\x3d\x94\x46\x37\xf0\xf7\x61\xb3\x5a\x7f\xdd\x6d\x76\xdf\x77\xcb\xeb\xbb\xf5\x72\xb5\x7a\x58\x6f\xb7\x51\x94\xa6\xb0\xab\xa4\x05\x36\xa8\x2c\x0a\x96\x5a\x41\x67\xc9\x02\x82\x1d\xf0\x58\x34\x52\x81\xc0\x16\x73\x59\x4b\x3e\x3a\x0c\x6b\x68\xf1\x08\x86\x7a\x34\x85\x5d\x00\xa9\x02\xb8\xa2\x37\x4c\xe7\xa9\x16\x80\xaa\x98\x82\xd4\x6a\x51\x25\x51\x9a\x3a\x86\x0d\x83\xd0\x4d\x2e\x15\x59\x1f\x6c\xf1\xf8\x78\x4a\xf7\x38\x51\xa9\x02\x1a\xfd\x4c\x8f\xac\x9f\x48\xcd\x94\x5a\x47\xd4\x57\x52\x54\x0e\x61\x3f\x56\x10\xe2\x86\xca\xce\xa5\x28\x5d\x90\x85\x5e\x72\x05\x52\xd9\xae\x2c\xa5\x90\xa4\xd8\xc3\xc8\xd1\x8d\xe5\x2c\x0c\xf5\x72\xe2\x9e\x48\x41\xde\x89\x27\x62\x3b\x68\xc7\xda\x6a\xb0\xc4\x6e\x50\x8a\xfa\x90\xec\x9a\xd0\x1d\x43\xa9\x8d\xd7\xa2\xe8\xc0\xa1\xeb\x28\x3a\x91\x1d\xcb\xc2\x66\xf0\xb2\x65\x23\xd5\x3e\x83\x6b\xad\xeb\xd7\x85\x63\xb9\xf7\xf0\x0c\xbe\xdd\xca\xc3\xff\xff\x9d\xc3\x4b\x14\x01\x00\xa4\x29\xdc\x69\x81\x35\x3c\xa3\x91\x6e\xb3\xbe\x00\xba\x9e\xc8\x90\x12\xe4\xd6\xe1\xea\x6d\x56\xe0\x37\x0f\x4b\xbf\x32\x9d\xff\x20\xc1\x9e\xa2\x26\x0e\x7b\x7c\xa0\x32\x83\xbf\x7e\x75\x49\xe2\x21\xa1\x5e\x6b\xa8\x45\x43\x31\x0a\xc1\x19\x2c\x3b\xae\x96\x42\xe8\x4e\xb1\x53\x04\xc3\x9b\x18\x6f\x26\x63\xc0\x17\x70\x90\x44\xe8\xf6\x78\xf1\xf6\xf9\x32\x76\x0e\xcc\x3e\xb0\x66\x32\xfc\xfa\xda\x5b\xd6\x06\xf7\x74\x8f\x5c\x9d\x4f\x55\xdc\xbb\xba\x82\x16\x95\x14\xf1\xd9\x8d\xee\xea\x02\x94\x66\xd8\x13\x9f\x38\x32\x58\x1c\x83\x48\xb0\x81\xe8\xec\x3c\x9a\x68\xd2\x14\x72\x6d\x8c\xee\x3f\x9a\x1a\xbe\x1f\x96\x7b\x96\xea\x32\x19\x27\xe6\x1a\x9b\xb7\x9a\x04\xba\x8b\x4f\x27\x79\x19\xff\xb9\x89\x41\xd2\x4c\xd0\xec\xe8\xce\x02\xc7\x6b\x68\x84\x0e\x24\x3a\xa6\xd1\x15\xe3\x12\x86\xa3\xd9\x76\x4d\x83\xc6\xed\x60\x26\x3d\x11\x58\x8b\xae\x46\xa6\x87\x90\x77\xa2\x6b\x9e\xd8\xe2\x71\x4c\x29\xb5\x59\x3b\xd7\xde\xb8\x79\x92\xc9\xe0\x9f\xc5\xbb\x32\xd9\xbb\xff\x27\xb3\x9e\xb3\x5a\x62\x4f\xb5\x73\xf7\x11\xfc\x1d\x4f\x4e\xff\x1d\x6a\xd9\xb6\x46\x3f\x53\x71\x27\x2d\xbb\x83\xf9\x34\x97\x54\x31\xda\x28\x9c\x7c\xfc\x69\xaa\xbb\x6b\x2f\xc4\x3a\x0d\xf3\x16\xff\x1d\x67\xfd\x1a\xfd\x0c\x00\x00\xff\xff\xb9\xf6\xf9\xe9\x4b\x05\x00\x00" +var _idtablestakingAdminCapability_end_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x4d\x6b\xe4\x48\x0c\xbd\xfb\x57\x88\x3e\x04\x37\x34\x36\xbb\x2c\x7b\x30\xd9\x84\x6c\x67\x02\x81\x1c\x42\x3a\x33\xd7\x20\x97\xe5\x76\x4d\xec\x92\xa9\x92\xe3\x34\x21\xff\x7d\x28\x97\xed\xb4\xf3\x31\x53\x97\xa6\x91\xde\xd3\x93\xf4\x64\xdd\xb4\x6c\x05\xae\x6a\xee\xaf\x2f\xef\x31\xaf\x69\x27\xf8\xa8\xcd\x1e\x4a\xcb\x0d\xac\x3e\x06\x56\x51\x94\xa6\x70\x5f\x69\x07\x62\xd1\x38\x54\xa2\xd9\x40\xe7\xc8\x01\x82\x1b\xd1\x58\x34\xda\x80\xc2\x16\x73\x5d\x6b\x39\x78\x8c\x30\xb4\x78\x00\x4b\x3d\xda\xc2\x6d\x80\x4c\x01\x52\xd1\x1b\xa6\x1b\xa8\x36\x80\xa6\x98\x83\xd4\xb2\xaa\x92\x28\x4d\x3d\xc3\xb5\x80\xe2\x26\xd7\x86\xdc\x10\x6c\xf1\xf0\x70\x4c\xf7\x30\x53\x99\x02\x1a\x7e\xa2\x07\xe1\x47\x32\x0b\xa5\xce\x13\xf5\x95\x56\x95\x47\xb8\xcf\x15\x84\xb8\xa5\xb2\xf3\x29\x86\x0b\x72\xd0\x6b\xa9\x40\x1b\xd7\x95\xa5\x56\x9a\x8c\x0c\x30\xf2\x74\x53\x39\x07\x63\xbd\x9c\xa4\x27\x32\x90\x77\xea\x91\xc4\x8d\xda\xb1\x76\x0c\x8e\xc4\x0f\xca\x50\x1f\x92\x7d\x13\xdc\x09\x94\x6c\x07\x2d\x86\x9e\x25\x74\x1d\x45\x47\xb2\x63\x5d\xb8\x0c\x5e\x76\x62\xb5\xd9\x67\xf0\x3f\x73\xfd\xba\xf1\x2c\xb7\x03\x3c\x83\xef\x57\xfa\xf9\xdf\x7f\xd6\xf0\x12\x45\x00\x00\x69\x0a\x37\xac\xb0\x86\x27\xb4\xda\xaf\x6f\x28\x80\xbe\x27\xb2\x64\x14\xf9\x75\xf8\x7a\xd7\x97\x30\xac\x17\x2e\x86\x95\x71\xfe\x93\x94\x0c\x14\x35\x49\xd8\xe3\x1d\x95\x19\x9c\x7c\xb4\x42\x32\x40\x42\xbd\xd6\x52\x8b\x96\x62\x54\x4a\x32\xc0\x4e\xaa\x78\xcb\xed\xe1\x07\xd6\x1d\xad\xe1\xe4\x42\x29\xee\x8c\x78\x79\x30\xbe\x99\x7e\x3b\xbb\x04\xfe\x03\x8f\x4f\x9c\xb0\xc5\x3d\x25\x8a\xdb\xc3\xe9\x5b\xf8\x2c\xf6\xa6\xcc\x3e\x71\x6b\x32\xfe\x0e\x82\x76\x01\x7d\x8b\x52\xad\xe7\x6a\xfe\x9d\x9f\x43\x8b\x46\xab\x78\xb5\xe5\xae\x2e\xc0\xb0\xc0\x9e\xe4\xc8\xa6\xc1\xf5\x18\xc4\xc2\x28\x63\xb5\x8e\x66\x9a\x34\x85\x9c\xad\xe5\xfe\xb3\x51\xe2\xfb\x09\xfa\xe7\xa8\x2e\x93\x69\x8c\xbe\xc1\x65\xcb\x49\xa0\x3b\xfd\x72\xbc\x67\xf1\x9f\x9b\x18\x25\x2d\x04\x2d\x2e\x71\x15\x38\x5e\x43\x23\xf4\x4c\xaa\x13\x9a\xac\x32\x2d\x63\xbc\xa4\x5d\xd7\x34\x68\xfd\x2e\x16\xd2\x13\x85\xb5\xea\x6a\x14\xba\x0b\x79\x47\xba\x96\x89\x2d\x1e\xa6\x94\x92\xed\x37\x6f\xe5\xad\x9f\x27\xd9\x0c\xfe\xda\xbc\x2b\x93\xbd\xfb\x7f\x34\xeb\x25\xab\x23\x19\xa8\xee\xfd\xd1\x04\xd3\xc7\xb3\xfd\x7f\x87\xba\x68\x5b\xcb\x4f\x54\xdc\x68\x27\xfe\x8a\xbe\xcc\x25\x53\x4c\x36\x0a\xdf\x81\xf8\xcb\x54\x7f\xec\x83\x10\xe7\x35\x2c\x5b\xfc\x7b\x9a\xf5\x6b\xf4\x2b\x00\x00\xff\xff\xad\x41\xde\x8f\x5e\x05\x00\x00" func idtablestakingAdminCapability_end_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1940,11 +2000,11 @@ func idtablestakingAdminCapability_end_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/capability_end_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0x21, 0xea, 0x77, 0xb, 0xd2, 0x13, 0x35, 0x6d, 0xf1, 0xd1, 0xa0, 0x41, 0xa2, 0xf5, 0x3d, 0x9a, 0xdc, 0xb2, 0x18, 0x94, 0x70, 0x3c, 0xa8, 0xca, 0xff, 0xf0, 0xee, 0x2e, 0x7f, 0xc0, 0xfc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0xe8, 0x46, 0x80, 0xfa, 0x86, 0x18, 0x85, 0xdd, 0xa4, 0xf2, 0x3b, 0x47, 0x60, 0x5c, 0x35, 0x94, 0x4d, 0x3a, 0xa2, 0x2c, 0xc3, 0x36, 0x6b, 0x8c, 0x2a, 0xfb, 0xc5, 0x3d, 0x7b, 0x29, 0x9}} return a, nil } -var _idtablestakingAdminChange_candidate_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xd1\x8b\xd3\x40\x10\xc6\xdf\xf3\x57\x7c\xdc\x83\xf4\x40\x12\x1f\x44\xa4\xa8\x47\xbc\x54\x08\x94\x43\xae\xf1\xc1\xc7\xe9\x66\xd2\xac\x6e\x77\xc2\x66\x6a\x0b\x72\xff\xbb\xec\x26\x95\x3b\x5b\xe7\x21\x0b\x9b\xcc\xef\xfb\x66\xbe\xd8\xfd\x20\x41\xf1\xc5\xc9\xb1\xae\x1a\xda\x3a\xde\x28\xfd\xb4\x7e\x87\x2e\xc8\x1e\x6f\x4e\x75\xb5\x7a\x68\xea\xe6\x7b\x53\x7e\x5e\xaf\xca\xaa\x7a\x5c\x6d\x36\x59\x56\x14\x05\x9a\xde\x8e\xd0\x40\x7e\x24\xa3\x56\x3c\x4c\x4f\x7e\xc7\x23\xb4\x67\x38\xbb\xb7\x0a\xe9\xe0\xf9\x08\x2f\x6d\xba\x26\x85\x21\x8f\x2d\xc7\xa3\xb5\x2d\x29\x8f\x09\xd5\x49\x48\x5d\x9e\x4f\x0a\x1e\xc4\xf4\xd9\x33\xf0\x22\x88\xe3\x25\xbe\xd5\x5e\xdf\xbf\x8e\xc0\xfb\x73\xf7\x83\xb4\xbc\x8e\x4a\xd3\xdb\x77\x6f\x6f\xf1\x3b\xcb\x00\x20\x52\xd7\x62\xc8\xe1\x17\x05\x1b\xe7\x4a\x22\x84\xc0\x1d\x07\xf6\x86\xa1\x92\x34\xeb\x0a\x69\x6e\x94\xed\xde\x7a\xc8\xf6\x07\x1b\x4d\x0c\xc7\x0a\x8a\x97\x8f\xdc\x2d\xf1\xea\x72\x47\x79\x6a\x99\x04\x87\xc0\x03\x05\x5e\x90\x31\xba\x44\x79\xd0\xbe\x34\x46\x0e\x5e\xa3\x25\xcc\x55\x14\xd8\x4a\x08\x72\xbc\x66\x84\xfe\xd5\x8f\x35\xb2\xeb\xf2\xb3\x09\x7c\x44\xc4\xe7\x13\xe3\xc3\x7f\x1d\x7d\x5a\xc4\xf0\x96\x57\x52\xcd\xe7\x33\x7d\xb6\x51\x09\xb4\xe3\xaf\xa4\xfd\xed\x5f\xc1\x58\x77\x77\x18\xc8\x5b\xb3\xb8\xb9\x97\x83\x6b\xe1\x45\xcf\xbe\x5f\xb8\x1e\xe7\x5f\x25\xf9\xbb\x99\x18\x4f\xd3\x3a\xf8\xc4\xe6\xa0\xfc\x6c\xf6\x17\x93\xe4\x23\xeb\x65\x8a\x73\xd0\xf1\x99\x72\x9e\xa3\xbd\x9a\xf8\x59\xed\xe9\x4f\x00\x00\x00\xff\xff\x5b\x20\xd7\xc9\xc2\x02\x00\x00" +var _idtablestakingAdminChange_candidate_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdc\x30\x10\x85\xef\xfe\x15\x8f\x3d\x04\x2f\x14\xfb\x52\x4a\x59\xda\x86\x34\xa1\xb0\x10\x4a\x69\xd2\xde\xc7\xf2\x78\xad\x56\xd6\x18\x69\xdc\x0d\x94\xfc\xf7\x22\xd9\x2e\xd9\xee\x76\x0e\x36\x48\x9a\xf7\x3e\xcd\x93\x1d\x46\x09\x8a\x4f\x4e\x8e\xfb\xbb\x47\x6a\x1c\x3f\x28\xfd\xb4\xfe\x80\x2e\xc8\x80\xcd\xf9\xc6\xa6\x28\xea\xba\xc6\x63\x6f\x23\x34\x90\x8f\x64\xd4\x8a\x87\xe9\xc9\x1f\x38\x42\x7b\x86\xb3\x83\x55\x48\x07\xcf\x47\x78\x69\xf3\x32\x29\x0c\x79\x34\x9c\x7e\xad\x6d\x49\x39\x66\xa9\x4e\x42\xee\xf2\xfc\xa4\xe0\x51\x4c\x5f\xbc\x10\x2e\x83\x38\xde\xe1\xdb\xde\xeb\xdb\x57\x49\xf0\x76\xed\xfe\x2c\x2d\xdf\x27\xa7\x79\xf7\xcd\xeb\x2d\x7e\x17\x05\x00\x24\xd5\x7b\x31\xe4\xf0\x8b\x82\x4d\xf0\xd9\x84\x10\xb8\xe3\xc0\xde\x30\x54\xb2\xe7\xfe\x0e\xf9\x72\xb8\x69\x07\xeb\x21\xcd\x0f\x36\x9a\x35\x1c\x2b\x28\x2d\x7e\xe5\x6e\x87\xab\xf3\x41\x54\xb9\x65\x36\x1c\x03\x8f\x14\xb8\x24\x63\x74\x07\x9a\xb4\x2f\x3f\x4a\x08\x72\xfc\x4e\x6e\xe2\x2d\xae\x6e\x8c\x91\xc9\x6b\x22\xc4\x52\x75\x8d\x26\x9f\xb9\xc4\x45\xff\xe2\xa4\x8a\xec\xba\x6a\x65\xc2\x7b\x24\xb7\x2a\xaa\x04\x3a\x70\x35\x6b\xbd\xfb\x2f\xe8\x87\x32\x25\xba\xbb\x10\x75\xb5\xfc\xf3\xb1\x87\x59\xee\x0b\x69\xbf\xfd\x6b\x9c\xea\xfa\x1a\x23\x79\x6b\xca\xcd\xad\x4c\xae\x85\x17\x5d\xf9\x4f\xe8\xe3\xf2\x7e\x32\xe7\x66\xd6\x78\x9e\xa7\xc4\x4f\x6c\x26\xe5\x17\x33\x38\xb9\x51\x15\x59\xcf\xc3\x5d\xf2\x4f\xdf\x1c\xff\x92\xf8\xc5\x87\xb0\xba\x3d\xff\x09\x00\x00\xff\xff\xa3\x37\xb2\x3b\xd7\x02\x00\x00" func idtablestakingAdminChange_candidate_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -1960,11 +2020,11 @@ func idtablestakingAdminChange_candidate_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_candidate_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0xdb, 0xe5, 0xea, 0x4b, 0x2a, 0x6d, 0x5e, 0x1, 0x52, 0x63, 0xeb, 0x7e, 0x12, 0x89, 0x85, 0x22, 0x5d, 0xfd, 0x9c, 0xcf, 0xc8, 0x9a, 0x79, 0x46, 0xb0, 0x29, 0x10, 0x43, 0x55, 0x71, 0x62}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0x8b, 0x69, 0x1, 0xa6, 0x30, 0xfc, 0xb9, 0x20, 0x3, 0xb0, 0x87, 0xff, 0x80, 0xf, 0xa7, 0x89, 0xa7, 0x8, 0xf4, 0x47, 0xfe, 0xa0, 0xd6, 0x59, 0xa2, 0xaa, 0xa4, 0x16, 0x8e, 0xad, 0x7f}} return a, nil } -var _idtablestakingAdminChange_cutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x8f\x1c\x8a\x73\x91\x7a\x28\x3d\x98\xb6\x41\x8d\x1c\x30\x84\x12\x62\xf5\xd0\xe3\x78\x35\xfa\x53\xaf\x77\xcc\x68\x54\x19\x4a\xbe\x7b\x59\xc9\x2e\x71\xe3\xce\x65\x61\x99\x7d\xef\x37\xf3\xb6\xdb\x1f\x44\x0d\x0f\x5e\xc6\x75\x51\xd2\xd6\xf3\xc6\x68\xd7\x85\x06\xb5\xca\x1e\xef\x8f\xeb\x62\xf5\xad\x5c\x97\x3f\xca\xfc\xeb\xe3\x2a\x2f\x8a\xe7\xd5\x66\x93\x24\x59\x86\xb2\xed\x7a\x98\x52\xe8\xc9\x59\x27\x01\xae\xa5\xd0\x70\x0f\x6b\x19\xb5\x97\x11\x26\x3b\x0e\x50\x1e\x49\x2b\xb8\xc1\x60\x2d\x19\x82\x54\xb1\x89\x76\x3c\x5b\x54\xec\xb9\x21\x13\xed\x93\xe4\x95\xdc\x22\xf0\x78\x3f\xd8\x13\xab\xe3\x60\xd4\xf0\x12\xdf\x1f\xba\xe3\xc7\x0f\xb7\xf8\x9d\x24\x00\x90\x65\x78\x14\x47\x1e\xbf\x48\xbb\x48\x8e\x5a\x14\x04\xe5\x9a\x95\x83\x63\x98\x4c\x30\xeb\x02\xd3\x64\xc8\xab\x7d\x17\x20\xdb\x9f\xec\x6c\x92\xf0\x6c\xa0\x78\xf9\xcc\xf5\x12\xef\xde\x6e\x21\x9d\x9e\xcc\x7e\x07\xe5\x03\x29\x2f\xc8\x39\x5b\x22\x1f\xac\xcd\x9d\x93\x21\x58\x24\xc2\xa9\xb2\x0c\x5b\x51\x95\xf1\x1a\x08\xfd\xeb\x1f\xab\x67\x5f\xa7\x67\x08\x7c\x46\x94\x4f\x67\x8d\x4f\xff\x25\xfa\xb2\x88\xbb\x5b\x5e\xc9\x2d\x3d\x9d\x53\xdb\xc6\x44\xa9\xe1\x27\xb2\xf6\xf6\xaf\x61\xac\xbb\x3b\x1c\x28\x74\x6e\x71\x73\x2f\x83\xaf\x10\xc4\xce\xdc\x17\xd4\xfd\xe9\x33\x4c\x7c\x37\xb3\xc6\xcb\xbc\x0e\x3e\xb2\x1b\x8c\x5f\xcd\x7e\x31\x49\xda\xb3\x5d\xe4\xf7\x26\xd0\xb3\xda\xcb\x9f\x00\x00\x00\xff\xff\x8e\xa5\x1f\xd1\x84\x02\x00\x00" +var _idtablestakingAdminChange_cutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x0f\x1f\x82\x7c\x91\x2e\xa5\x07\xd3\x36\xa4\x09\x81\x40\x0f\xa1\x49\x7b\x1f\xaf\x46\xd2\xd6\xeb\x1d\x31\x3b\xaa\x02\x25\xff\xbd\xac\x64\x97\xb8\x76\xe6\x22\xd0\xce\xbe\xf7\xcd\xbc\xf5\xfb\x41\xd4\x70\x1f\x64\x7a\xb8\x7b\xa6\x6d\xe0\x27\xa3\x9d\x8f\x1d\x5a\x95\x3d\x56\xe7\x07\xab\xa2\xa8\x6b\x3c\xf7\x3e\xc1\x94\x62\x22\x67\x5e\x22\x5c\x4f\xb1\xe3\x04\xeb\x19\x6d\x90\x09\x26\x3b\x8e\x50\x9e\x48\x1b\xb8\xd1\x60\x3d\x19\xa2\x34\xb9\x89\x76\xbc\x18\x34\x1c\xb8\x23\x13\x4d\x45\xf1\x46\xae\x8c\x3c\xdd\x8e\xf6\xc8\xea\x38\x1a\x75\xbc\xc1\x8f\x7b\xff\xf2\xf1\xc3\x1a\x7f\x8a\x02\x00\xea\x1a\xdf\xc4\x51\xc0\x6f\x52\x9f\xf1\xd0\x8a\x82\xa0\xdc\xb2\x72\x74\x0c\x93\x19\xe6\xe1\x0e\x33\x3e\x6e\x9a\xbd\x8f\x90\xed\x2f\x76\x36\x4b\x04\x36\x50\xfe\xf9\x9d\xdb\x0d\xae\xce\x47\xad\xe6\x2b\x8b\xdf\xa0\x3c\x90\x72\x49\xce\xd9\x06\x34\x5a\x5f\x7e\x15\x55\x99\x7e\x52\x18\x79\x8d\xab\x1b\xe7\x64\x8c\x96\x01\x71\xa8\xba\xc6\x76\xee\xb9\xc4\x45\xff\xe3\xe4\x4a\x1c\xda\xea\xc8\x84\xcf\xc8\x6e\x55\x32\x51\xea\xb8\x5a\xb4\x3e\xbd\x0b\xfa\xa5\xcc\x2b\xdd\x5c\x08\xb3\x3a\x7c\xe7\xb6\xa7\x45\xee\x91\xac\x5f\xff\x33\xce\x75\x7d\x8d\x81\xa2\x77\xe5\xea\x56\xc6\xd0\x20\x8a\x1d\xf9\x4f\xe8\xd3\xe1\x85\xcc\x9c\xab\x45\xe3\x75\xd9\x12\xbf\xb0\x1b\x8d\xdf\xec\xe0\x64\xa2\x2a\xb1\x9d\xc4\x7a\x96\xf3\x51\xed\xf5\x6f\x00\x00\x00\xff\xff\xab\xef\x4a\xd9\x99\x02\x00\x00" func idtablestakingAdminChange_cutCdcBytes() ([]byte, error) { return bindataRead( @@ -1980,11 +2040,11 @@ func idtablestakingAdminChange_cutCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_cut.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0x16, 0x86, 0xfb, 0xee, 0x3b, 0xc9, 0x84, 0xcd, 0xcb, 0x97, 0x24, 0x33, 0xd9, 0xe3, 0x6b, 0x46, 0x7d, 0x40, 0x73, 0x24, 0x7a, 0x38, 0x38, 0xd5, 0x51, 0xa1, 0x58, 0x44, 0xaf, 0xb3, 0x7a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x44, 0x7a, 0x5d, 0xf4, 0xb4, 0x22, 0xad, 0xa1, 0x2e, 0x57, 0x29, 0x66, 0x47, 0x5f, 0xca, 0x24, 0x3b, 0xd2, 0x71, 0x49, 0xa8, 0xb4, 0x2c, 0x34, 0xd3, 0xf, 0x36, 0xa0, 0x2a, 0x5f, 0x58, 0x1a}} return a, nil } -var _idtablestakingAdminChange_del_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6f\xd3\x40\x10\x85\xef\xfe\x15\x4f\x3d\xa0\xf4\x62\x73\x40\x1c\x22\xa0\x32\x38\x95\x22\x15\x84\x12\x73\xe0\x38\x59\x8f\xe3\x25\xf6\x4e\x18\x8f\x71\x24\xd4\xff\x8e\xd6\x4e\x50\x5b\xc2\x5c\x2c\x79\x67\xdf\xfb\x66\xde\xfa\xee\x28\x6a\xb8\x6f\x65\x5c\x17\x25\xed\x5a\xde\x1a\x1d\x7c\xd8\xa3\x56\xe9\xf0\xfa\xb4\x2e\x56\x5f\xca\x75\xf9\xbd\xcc\x3f\x3e\xac\xf2\xa2\xd8\xac\xb6\xdb\x24\xc9\x32\x94\x8d\xef\x61\x4a\xa1\x27\x67\x5e\x02\x5c\x43\x61\xcf\x3d\xac\x61\xd4\xad\x8c\x30\x39\x70\x80\xf2\x48\x5a\xc1\x0d\x06\x6b\xc8\x10\xa4\x8a\x4d\x74\xe0\xd9\xa2\xe2\x96\xf7\x64\xa2\x7d\x92\x3c\x91\x5b\x04\x1e\x8b\xcb\xd1\x67\x1f\x7c\x37\x74\x4b\x7c\xbb\xf7\xa7\xb7\x6f\x6e\xf1\x3b\x49\x00\x20\xcb\xf0\x20\x8e\x5a\xfc\x22\xf5\x11\x1e\xb5\x28\x08\xca\x35\x2b\x07\xc7\x30\x99\x78\xd6\x05\xa6\xe1\x90\x57\x9d\x0f\x90\xdd\x0f\x76\x36\x49\xb4\x6c\xa0\xf8\x73\xc3\xf5\x12\xaf\xfe\x5d\x44\x3a\x5d\x99\xfd\x8e\xca\x47\x52\x5e\x90\x73\xb6\x44\x3e\x58\x93\x3b\x27\x43\xb0\x48\x84\x73\x65\x19\x76\xa2\x2a\xe3\x35\x10\x7a\xe9\x1f\xab\xe7\xb6\x4e\x2f\x10\x78\x8f\x28\x9f\xce\x1a\xef\xfe\x4b\xf4\x61\x11\xd7\xb7\xbc\x12\x5d\x7a\xfe\x4e\x6d\x5b\x13\xa5\x3d\x7f\x25\x6b\x6e\xff\x1a\xc6\xba\xbb\xc3\x91\x82\x77\x8b\x9b\x4f\x32\xb4\x15\x82\xd8\x85\xfb\x19\x75\x7f\x7e\x0f\x13\xdf\xcd\xac\xf1\x38\xaf\x83\x4f\xec\x06\xe3\x27\xb3\x3f\x9b\x24\xed\xd9\x5e\x46\x18\xd1\x78\xc3\x3f\x07\xaf\xdc\x71\xb0\x6b\x31\x5f\x3c\x1e\xff\x04\x00\x00\xff\xff\x40\xe4\x7d\xfd\x9d\x02\x00\x00" +var _idtablestakingAdminChange_del_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdc\x40\x0c\xc5\xef\xfe\x14\x8f\x3d\x04\xef\xc5\xbe\x94\x1e\x96\xb6\x21\xed\x12\x08\xb4\x50\x92\xb4\x77\xed\x58\x5e\x4f\x77\x3c\xda\xca\x9a\x3a\x50\xf2\xdd\xcb\xd8\xeb\x92\x3f\x1b\x5d\x06\x46\x9a\xf7\x7e\x92\xc6\xf7\x47\x51\xc3\x75\x90\xf1\x66\x7b\x4f\xbb\xc0\x77\x46\x07\x1f\xf7\x68\x55\x7a\xac\x5e\x27\x56\x45\x51\xd7\xb8\xef\xfc\x00\x53\x8a\x03\x39\xf3\x12\xe1\x3a\x8a\x7b\x1e\x60\x1d\xa3\x0d\x32\xc2\xe4\xc0\x11\xca\x23\x69\x03\x97\x0c\xd6\x91\x21\x4a\x93\x8b\xe8\xc0\xb3\x41\xc3\x81\xf7\x64\xa2\x43\x51\x3c\x91\x2b\x23\x8f\xdb\x25\xf5\xcd\x47\xdf\xa7\x7e\x83\x1f\xd7\xfe\xe1\xfd\xbb\x35\xfe\x16\x05\x00\xd4\x35\xbe\x8a\xa3\x80\x3f\xa4\x3e\x13\xa2\x15\x05\x41\xb9\x65\xe5\xe8\x18\x26\x13\xcf\xcd\x16\x53\x07\xb8\x6a\x7a\x1f\x21\xbb\x5f\xec\x6c\x92\x08\x6c\xa0\x7c\x79\xcb\xed\x06\x17\xaf\xbb\xad\xa6\x27\xb3\xdf\x51\xf9\x48\xca\x25\x39\x67\x1b\x50\xb2\xae\xfc\x2c\xaa\x32\xfe\xa4\x90\x78\x8d\x8b\x2b\xe7\x24\x45\xcb\x80\x38\x45\x5d\x63\x37\xd5\x9c\xe3\xa2\x97\x38\x39\x06\x0e\x6d\xb5\x30\xe1\x23\xb2\x5b\x35\x98\x28\xed\xb9\x9a\xb5\x3e\xbc\x09\xfa\xa9\xcc\x53\xdd\x9c\xd9\x67\x75\x3a\xa7\xb2\xbb\x59\xee\x3b\x59\xb7\xfe\x6f\x9c\xe3\xf2\x12\x47\x8a\xde\x95\xab\x2f\x92\x42\x83\x28\xb6\xf0\x3f\xa3\x1f\x4e\x9f\x64\xe2\x5c\xcd\x1a\x8f\xf3\x94\xf8\x81\x5d\x32\x7e\x32\x83\x67\x1d\x55\x03\xdb\xcb\xcd\x66\x34\xbe\xe5\xdf\xc9\x2b\xf7\x1c\xed\xdc\xf6\x17\x8f\xc7\x7f\x01\x00\x00\xff\xff\xa7\xa0\xc3\xae\xb2\x02\x00\x00" func idtablestakingAdminChange_del_minimumsCdcBytes() ([]byte, error) { return bindataRead( @@ -2000,11 +2060,11 @@ func idtablestakingAdminChange_del_minimumsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_del_minimums.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xc7, 0x8e, 0xf0, 0x6d, 0x55, 0xc2, 0xe2, 0xb7, 0x54, 0xf0, 0x39, 0x30, 0x8f, 0x8f, 0x12, 0xf2, 0x7e, 0xcf, 0xf7, 0x67, 0x4b, 0x8, 0x13, 0x23, 0x2, 0x72, 0x73, 0xcd, 0x73, 0xe9, 0x75}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xc8, 0x3f, 0x11, 0x11, 0x9f, 0xf0, 0xb8, 0x71, 0xbf, 0x48, 0xf0, 0x40, 0xd5, 0x29, 0xf3, 0x4e, 0xeb, 0xa2, 0x2c, 0xea, 0xa8, 0xad, 0x9e, 0x76, 0x65, 0x5f, 0xb6, 0xaf, 0x82, 0x71, 0x6}} return a, nil } -var _idtablestakingAdminChange_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x51\xdd\x6a\xdb\x30\x14\xbe\xf7\x53\x7c\xf4\x62\xb8\x0c\xec\x15\xc6\x18\x66\x5e\xf1\xe6\x14\x0c\xdd\x18\x89\x7b\x31\x4a\x2f\x14\xe5\x38\xd6\x66\x4b\x9e\x74\xdc\x04\x42\xde\x7d\xc8\x3f\x59\xba\xb6\xe7\xc6\x58\x3a\xfa\x7e\x55\xdb\x19\xcb\xb8\x69\xcc\xae\xc8\x4b\xb1\x6e\x68\xc5\xe2\xb7\xd2\x5b\x54\xd6\xb4\x78\xb7\x2f\xf2\xc5\xf7\xb2\x28\x7f\x96\xd9\x97\xdb\x45\x96\xe7\xcb\xc5\x6a\x15\x04\x71\x8c\xb2\x56\x0e\x6c\x85\x76\x42\xb2\x32\x1a\xb2\x16\x7a\x4b\x0e\x5c\x13\xdc\x04\xd2\x2a\xdd\xb7\x7d\xeb\x50\x19\x0b\x6d\x36\x04\xd3\x91\x15\x6c\xac\x0b\x82\xb3\xc7\xa1\xa6\xdd\x37\xa5\x95\xdf\x4d\x70\x7f\x77\xa3\xf6\x1f\xde\x3f\x5c\xe2\x10\x04\x00\x10\xc7\xb8\x35\x52\x34\x78\x14\x56\x79\x91\x03\x9e\x80\xa5\x8a\x2c\x69\x49\x60\x33\xf0\x16\x39\x06\x13\xc8\x36\xad\xd2\x30\xeb\x5f\x24\x79\x80\x68\x88\x21\xfc\xe1\x92\xaa\x04\x6f\x9e\x1b\x8e\x86\x27\x23\x5f\x67\xa9\x13\x96\x42\x21\x25\x27\xc8\x7a\xae\x33\x29\x4d\xaf\xd9\x2b\xc2\x34\x71\x8c\xb5\xb1\xd6\xec\x5e\x12\x22\xfe\xe7\xf7\xe3\xa8\xa9\xa2\x59\x04\x52\x78\xf8\x68\xc4\xf8\xf4\xaa\xa2\xcf\xa1\x6f\x22\x79\xa1\xa2\x68\xfa\x0e\x6b\x2b\x36\x56\x6c\xe9\x87\xe0\xfa\xf2\x44\xe8\xe7\xfa\x1a\x9d\xd0\x4a\x86\x17\x5f\x4d\xdf\x6c\xa0\x0d\xcf\xba\x9f\xa8\x9e\x2b\x1b\xf4\x5d\x8c\x18\xc7\x31\x0e\xda\x93\xec\x99\xce\xbc\xfb\x34\xdb\x53\x5f\x87\xbb\x42\xf3\xc7\x04\x63\x6d\x47\xa4\x38\x1c\x4f\xab\x8f\xc2\x42\x25\x18\x56\x90\xe2\xea\x74\xe1\x2b\xf4\x21\x29\x8d\xb3\xf6\xcf\x48\xfc\xcc\x24\xf7\xea\x01\xa9\xff\x7b\x72\xab\x90\x42\xe1\xed\x08\x1e\x5e\xfd\x33\x3e\x09\x7f\x16\x7a\xe4\x88\x27\x26\x1f\x1e\x2d\xe9\x4f\xaf\x2c\xb5\xa4\xd9\x85\x33\xd7\xec\xfd\xf8\x37\x00\x00\xff\xff\x7a\x62\x5e\x37\x1d\x03\x00\x00" +var _idtablestakingAdminChange_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x4c\x41\x22\x50\x4a\x11\x55\x43\xda\x10\x30\xb4\x50\xf2\xa7\x97\x90\xc3\x78\x3d\xb2\xb6\x95\x76\xd5\xdd\x51\x1c\x30\xfe\xee\x65\x57\x92\xab\xd4\xc9\x5c\x84\xb4\xb3\xef\xfd\x66\x9e\x74\xdb\x59\x27\xb8\x6e\xec\x6e\x75\x75\x47\xeb\x86\x6f\x85\x7e\x6b\xb3\x45\xe5\x6c\x8b\xc5\xe9\xc1\x22\x49\xf2\x1c\x77\xb5\xf6\x10\x47\xc6\x93\x12\x6d\x0d\x54\x4d\x66\xcb\x1e\x52\x33\xfc\x28\xd1\x6a\xd3\xb7\x7d\xeb\x51\x59\x07\x63\x37\x0c\xdb\xb1\x23\xb1\xce\x27\xc9\xec\x72\x6a\x78\xf7\x5d\x1b\x1d\x7a\x0b\x3c\xdc\x5f\xeb\xe7\x0f\xef\x1f\x97\xd8\x27\x09\x00\xe4\x39\xbe\x59\x45\x0d\x9e\xc8\xe9\x40\x12\xf5\x08\x8e\x2b\x76\x6c\x14\x43\x6c\xf4\x5d\x5d\x21\x92\xe2\x72\xd3\x6a\x03\xbb\xfe\xc5\x4a\xa2\x44\xc3\x02\x0a\x1f\x6f\xb8\x2a\x70\x76\x3a\x55\x16\xaf\x0c\x7e\x9d\xe3\x8e\x1c\xa7\xa4\x94\x14\xa0\x5e\xea\xf4\x8b\x75\xce\xee\x7e\x52\xd3\xf3\x12\x67\x97\x4a\xd9\xde\x48\x00\xc4\x58\x79\x8e\x75\xec\x79\x8d\x8b\xfe\xc7\x09\xe5\xb9\xa9\xb2\x89\x09\x25\x82\x5b\xe6\xc5\x3a\xda\x72\x36\x68\x7d\x7a\x13\xf4\x73\x1a\xe2\x29\x5e\xc9\x2d\x1b\x9f\xb1\xed\x76\x90\xfb\x41\x52\x2f\x8f\xc6\xa1\x2e\x2e\xd0\x91\xd1\x2a\x5d\x7c\xb5\x7d\xb3\x81\xb1\x32\xf1\xbf\xa0\x9f\x92\x8c\x9c\x8b\x41\xe3\x30\x6c\x89\x9f\x59\xf5\xc2\xb3\x1d\x84\x25\xb7\xc7\x18\xf7\xf7\x2b\x23\x1f\x0b\x0c\x69\x1e\x50\x62\x7f\x38\xb6\x3e\x91\x83\x2e\x10\x5b\x50\xe2\xfc\x78\x10\x92\x0d\xcb\xd2\x06\xb3\x9f\x62\x66\x12\x6a\x32\x79\xd0\x8f\x28\xc3\xdb\x8b\x53\x8d\x12\x1a\xef\x06\xf1\xf4\xfc\xdf\xe0\x23\xf8\xc9\xf2\x33\xcf\x32\x3a\x85\xe5\xf1\x0d\xff\xe9\xb5\xe3\x96\x8d\xf8\x74\xf2\x9a\x66\x3f\xfc\x0d\x00\x00\xff\xff\x0c\xd9\xc0\xe7\x32\x03\x00\x00" func idtablestakingAdminChange_minimumsCdcBytes() ([]byte, error) { return bindataRead( @@ -2020,11 +2080,11 @@ func idtablestakingAdminChange_minimumsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_minimums.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0x43, 0x5f, 0x10, 0x9, 0x12, 0xd6, 0x29, 0xcd, 0x0, 0xf9, 0x15, 0xc6, 0xbf, 0xf6, 0xbd, 0x21, 0x40, 0xc9, 0x80, 0x4, 0x22, 0x3a, 0x3c, 0x24, 0xd3, 0x7e, 0x36, 0xea, 0x6, 0x28, 0x33}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0xc4, 0xf5, 0xcf, 0xc4, 0x9, 0xda, 0xde, 0x4, 0x25, 0x88, 0xdb, 0xca, 0x1a, 0x54, 0x9, 0x1f, 0x68, 0x91, 0x8, 0x74, 0xa8, 0x6, 0x87, 0x54, 0x36, 0x2, 0x68, 0x3f, 0x5, 0x4f, 0x3d}} return a, nil } -var _idtablestakingAdminChange_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6f\xd4\x40\x0c\x85\xef\xf9\x15\x4f\x3d\xa0\xed\x25\xe1\x80\x38\x44\x40\x15\x48\x2a\x45\xaa\x50\xd5\x84\x03\x47\xef\xd4\xd9\x0c\x3b\x3b\x8e\x26\x0e\xd9\x0a\xf5\xbf\xa3\x49\x76\xa1\x85\xd6\x97\x91\xac\xf1\x7b\x9f\xfd\xec\x61\x90\xa0\xb8\x76\x32\xd7\x65\x4b\x5b\xc7\x8d\xd2\xde\xfa\x1d\xba\x20\x07\xbc\x3d\xd6\x65\xf5\xb5\xad\xdb\xef\x6d\xf1\xf9\xa6\x2a\xca\xf2\xae\x6a\x9a\x24\xc9\x32\xb4\xbd\x1d\xa1\x81\xfc\x48\x46\xad\x78\x98\x9e\xfc\x8e\x47\x68\xcf\xe8\x9c\xcc\x50\xd9\xb3\xc7\xcc\xbc\x77\x0f\x18\xe8\x41\x26\x4d\x92\x27\x13\x1b\xcf\xf3\xed\xd2\xce\xf1\xed\xda\x1e\xdf\xbf\xbb\xc4\xaf\x24\x01\x80\x2c\xc3\x8d\x18\x72\xf8\x49\xc1\x46\x2a\x74\x12\x40\x08\xdc\x71\x60\x6f\x18\x2a\x8b\x51\x5d\x62\xa1\x46\x71\x7f\xb0\x1e\xb2\xfd\xc1\x46\x17\x09\xc7\x0a\x8a\xcd\x3b\xee\x72\xbc\xf9\x7f\xc3\x74\x19\x59\xfd\x86\xc0\x03\x05\xde\x90\x31\x9a\xa3\x98\xb4\x2f\x8c\x91\xc9\x6b\x24\xc2\xa9\xb2\x0c\x5b\x09\x41\xe6\x97\x40\xe8\x5f\xff\x58\x23\xbb\x2e\x3d\x43\xe0\x23\xa2\x7c\xba\x6a\x7c\x78\x95\xe8\xd3\x26\x9e\x3e\x7f\x21\x93\xf4\xf4\x2e\xdf\x1a\x95\x40\x3b\xbe\x25\xed\x2f\xff\x18\xc6\xba\xba\xc2\x40\xde\x9a\xcd\xc5\x17\x99\xdc\x3d\xbc\xe8\x99\xfb\x19\xf5\x78\x0a\x7a\xe1\xbb\x58\x35\x1e\xd7\x73\xf0\x91\xcd\xa4\xfc\x64\xf7\x67\x9b\xa4\x23\x6b\x35\x88\xe9\xdb\x98\xf0\x1a\xe1\xdf\x30\xcf\x4a\x8f\xbf\x03\x00\x00\xff\xff\x2a\x3e\x38\xa0\x5c\x02\x00\x00" +var _idtablestakingAdminChange_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x8f\xd3\x40\x0c\x85\xef\xf9\x15\x4f\x39\xac\xd2\x4b\x72\x41\x1c\x22\x60\xb5\xb0\xac\xb4\x12\x87\x8a\x16\xee\xee\xd4\x69\x86\x4e\xc7\xd1\xc4\x21\xad\x50\xff\x3b\x9a\x49\x0b\x2d\x2d\xbe\x44\x9a\xd8\xef\x7d\xf6\xb3\xbb\x4e\x82\xe2\xc5\xc9\xf8\xfa\xbc\xa4\x95\xe3\x85\xd2\xd6\xfa\x0d\x9a\x20\x3b\xe4\xb7\x3f\xf2\x2c\xab\x2a\x2c\x5b\xdb\x43\x03\xf9\x9e\x8c\x5a\xf1\x30\x2d\xf9\x0d\xf7\xd0\x96\xd1\x38\x19\xa1\xb2\x65\x8f\x91\x79\xeb\x0e\xe8\xe8\x20\x83\x66\xd9\xc5\x44\xe1\x79\x9c\xa7\xe7\x1a\xdf\x5e\xec\xfe\xed\x9b\x19\x7e\x65\x19\x00\x54\x15\xbe\x88\x21\x87\x9f\x14\x6c\xb4\x46\x23\x01\x84\xc0\x0d\x07\xf6\x86\xa1\x92\x8c\x5e\x9f\x91\xd0\xf0\xb4\xde\x59\x0f\x59\xfd\x60\xa3\x49\xc2\xb1\x82\xe2\xe3\x57\x6e\x6a\x3c\xdc\xae\x51\xa6\x91\xc9\xaf\x0b\xdc\x51\xe0\x82\x8c\xd1\x1a\x34\x68\x5b\x7c\x94\x10\x64\xfc\x4e\x6e\xe0\x19\x1e\x9e\x8c\x91\xc1\x6b\x04\xc4\xa9\xaa\x0a\xab\xd4\x73\x8f\x8b\xfe\xc5\x89\xd5\xb3\x6b\xca\x33\x13\xde\x23\xba\x95\xbd\x4a\xa0\x0d\x97\x93\xd6\xbb\xff\x82\x7e\x28\x62\x1e\xf5\x9d\xa0\xca\xd3\x37\xb5\x2d\x26\xb9\x39\x69\x3b\xfb\x63\x1c\xeb\xf1\x11\x1d\x79\x6b\x8a\xfc\x93\x0c\x6e\x0d\x2f\x7a\xe6\xbf\xa2\xef\x4f\xe9\x27\xce\x7c\xd2\x38\x4e\x57\xe2\x3d\x9b\x41\xf9\xe2\x06\x57\x1b\x95\x3d\xeb\xe7\x4e\x4c\xbb\x8c\xc1\x4f\xc9\xfe\xcd\xf8\xac\x74\xfc\x1d\x00\x00\xff\xff\xbc\x8e\x06\xa6\x71\x02\x00\x00" func idtablestakingAdminChange_payoutCdcBytes() ([]byte, error) { return bindataRead( @@ -2040,11 +2100,11 @@ func idtablestakingAdminChange_payoutCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_payout.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2f, 0x71, 0xde, 0xb0, 0x70, 0x7b, 0x4e, 0xe0, 0xb6, 0xbf, 0x9, 0x1, 0xfd, 0xd4, 0x85, 0x6b, 0xc0, 0x17, 0x99, 0x82, 0x25, 0x8, 0x5a, 0x86, 0xf6, 0xee, 0xa6, 0xa2, 0xad, 0xd0, 0x2a, 0x66}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf1, 0x15, 0x65, 0x64, 0x1, 0xa4, 0xaa, 0xc1, 0x1e, 0x57, 0x8c, 0x4f, 0xa7, 0xc2, 0xec, 0xde, 0xbc, 0x6d, 0xad, 0x7a, 0xa, 0xf2, 0x6a, 0x7e, 0xb5, 0x8a, 0x77, 0x9a, 0x2e, 0x9e, 0x83, 0xe}} return a, nil } -var _idtablestakingAdminEnd_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x41\x6f\x9b\x40\x10\x85\xef\xfc\x8a\xa7\x1c\x2a\x22\x55\x50\xf5\x88\xda\x46\x24\x76\x25\x4b\x56\x55\xc5\x5c\x7a\x8a\x96\x65\x30\x5b\xe3\x1d\xb4\x3b\x98\x54\x91\xff\x7b\xb5\x18\x9c\xb8\x8d\xf7\x82\x04\xf3\xde\xfb\x76\x66\x30\xfb\x8e\x9d\xe0\x7b\xcb\xc3\x6a\x51\xa8\xb2\xa5\x8d\xa8\x9d\xb1\x5b\xd4\x8e\xf7\xf8\xf4\xbc\x5a\x2c\x7f\x14\xab\xe2\x57\x91\xdf\xaf\x97\xf9\x62\xf1\xb8\xdc\x6c\xa2\x28\x4d\x51\x34\xc6\x43\x9c\xb2\x5e\x69\x31\x6c\x41\x75\x4d\x5a\xcc\x81\xda\x3f\x20\x5b\x79\x48\x43\xa0\x8e\x75\x03\x65\x2b\x78\x51\x4e\x3c\x14\x2c\x0d\x60\x4b\x49\x94\xa6\xc1\x67\x25\xd0\xbc\x2f\x8d\xa5\x49\x61\xab\x27\x3f\x31\x04\xdd\x9e\x0f\xf4\x24\xbc\x23\x7b\x11\xe7\x83\x76\x68\x8c\x6e\x5e\xc3\xce\xb2\x7e\x2c\xf9\x38\x7d\x77\x54\xf7\xa1\xc4\x72\x45\x1e\x83\x91\x06\xc6\xfa\xbe\xae\x8d\x36\x64\x65\x94\x51\xb0\x9b\xe3\x3c\xa6\xbc\x92\x64\x20\xb2\x28\x7b\xbd\x23\xf1\x51\xf4\x06\x20\x36\x95\xcf\xf0\xb2\x11\x67\xec\x36\xc3\x3d\x73\x7b\xbc\xc5\x4b\x14\x01\x40\x9a\x62\xcd\x5a\xb5\x38\x28\x67\x42\x57\x51\xb3\x83\x0a\x28\xe4\xc8\x6a\x82\xf0\x88\xbc\x5a\x60\xec\x3a\xf2\x6a\x6f\x2c\xb8\xfc\x4d\x5a\x46\x8b\x96\x04\x2a\xbc\x7c\xa4\x3a\xc3\x87\xff\x27\x94\x8c\x92\x53\x5e\xe7\xa8\x53\x8e\x62\xa5\xb5\x64\xc8\x7b\x69\x72\xad\xb9\xb7\x12\x88\x30\x9d\x34\x45\xc9\xce\xf1\xf0\x1e\x88\xfa\x37\x3f\x1c\x4f\x6d\x9d\xcc\x10\xf8\x8a\x60\x9f\x9c\x3c\xbe\x5c\x25\xfa\x16\x87\xd5\xc9\xde\xd9\xa9\x64\x7a\x8e\x65\x1b\x61\xa7\xb6\xf4\x53\x49\x73\x7b\x0e\x0c\xe7\xee\x0e\x9d\xb2\x46\xc7\x37\x0f\xdc\xb7\x15\x2c\xcb\xcc\x7d\x41\x7d\x9e\x76\x70\xbb\x39\x79\x1c\x4f\xed\xa0\x67\xd2\xbd\xd0\x9b\xbb\x5f\xdc\x24\xf1\x24\x79\xd7\x39\x3e\x50\xb5\x36\x5e\xc2\x28\x5f\x19\xae\x68\xc8\x56\x33\xfe\x69\xbd\xe2\xdb\xe8\x4a\x69\xd8\xa1\x62\xdc\xa0\xd8\xd2\xb0\x0c\xbf\xc0\x43\x18\x06\xb9\x0c\x9f\x67\xd0\x63\xf4\x37\x00\x00\xff\xff\xa5\x82\x19\x7e\x7c\x03\x00\x00" +var _idtablestakingAdminEnd_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\xcf\x6b\xdb\x4e\x10\xc5\xef\xfa\x2b\x1e\x3e\x04\x19\xbe\x48\xf0\x3d\x8a\xb6\x21\x3f\x5a\x30\xe4\x50\x6a\xd3\x6b\x58\xad\x46\xd6\xd6\xf2\x8c\xd8\x1d\x59\x2d\xc1\xff\x7b\x59\x49\x76\xe2\x26\xde\x8b\x40\x3b\xef\xbd\x8f\x66\x46\x6e\xdf\x89\x57\x7c\x6b\x65\x58\x3d\x6e\x4c\xd9\xd2\x5a\xcd\xce\xf1\x16\xb5\x97\x3d\x16\xef\x2f\x16\x49\x92\xe7\xd8\x34\x2e\x40\xbd\xe1\x60\xac\x3a\x61\x50\x5d\x93\x55\x77\xa0\xf6\x0f\x88\xab\x00\x6d\x08\xd4\x89\x6d\x60\xb8\x42\x50\xe3\x35\xc0\x80\x69\x80\x30\x65\x49\x9e\x47\x9f\x95\xc2\xca\xbe\x74\x4c\xb3\x82\xab\xe7\x30\x13\x44\xdd\x5e\x0e\xf4\xac\xb2\x23\xbe\x88\x0b\x51\x3b\x34\xce\x36\xaf\x61\x67\x59\x3f\x96\xfc\x37\xdf\x7b\xaa\xfb\x58\xc2\x52\x51\xc0\xe0\xb4\x81\xe3\xd0\xd7\xb5\xb3\x8e\x58\x47\x19\x45\xbb\x53\x5c\xc0\x9c\x57\x92\x0e\x44\x8c\xb2\xb7\x3b\xd2\x90\x24\x6f\x00\x52\x57\x85\x02\x2f\x6b\xf5\x8e\xb7\x05\xee\x45\xda\xe3\x12\x2f\x49\x02\x00\x79\x8e\x27\xb1\xa6\xc5\xc1\x78\x17\x5b\x87\x5a\x3c\x4c\x44\x21\x4f\x6c\x09\x2a\x23\xf2\xea\x11\x63\x6b\x71\x57\xed\x1d\x43\xca\x5f\x64\x75\xb4\x68\x49\x61\xe2\xcb\x1f\x54\x17\xb8\x79\x3f\x86\x6c\x94\x4c\x79\x9d\xa7\xce\x78\x4a\x8d\xb5\x5a\xc0\xf4\xda\xa4\xf7\xe2\xbd\x0c\x3f\x4d\xdb\xd3\x12\x37\x77\xd6\x4a\xcf\x1a\x01\x31\x9f\x3c\x47\x39\xd6\x7c\xc4\x65\xfe\xc5\x89\x27\x50\x5b\x67\x27\x26\x7c\x46\x4c\xcb\x82\x8a\x37\x5b\xca\x26\xaf\x4f\x57\x41\xbf\xa4\x71\x9f\x8a\x0f\x16\x2d\x9b\x9f\x63\xd9\x7a\xb2\xfb\x6e\xb4\x59\x9e\x83\xe3\xb9\xbd\x45\x67\xd8\xd9\x74\xf1\x20\x7d\x5b\x81\x45\x4f\xfc\x17\xf4\xe7\x25\x88\x6e\x8b\xc9\xe3\x38\x75\x89\x7e\x93\xed\x95\xde\xf4\xe0\xe2\x8b\xb2\x40\x7a\xd7\x75\x5e\x0e\x54\x3d\xb9\xa0\x71\xc2\xaf\x0c\x57\x34\xc4\xd5\x09\x7f\xda\xba\x74\x99\x5c\x29\x8d\xab\xb5\x19\x17\x2b\x65\x1a\xbe\xc6\x3f\xe3\x21\x0e\x85\x7c\x81\xff\x4f\xa0\xc7\xe4\x6f\x00\x00\x00\xff\xff\x8d\x3c\x5c\x65\x91\x03\x00\x00" func idtablestakingAdminEnd_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -2060,11 +2120,11 @@ func idtablestakingAdminEnd_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/end_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0x2e, 0x77, 0x4b, 0xfa, 0x66, 0x71, 0xc4, 0x59, 0x37, 0xe1, 0xf2, 0x5a, 0xec, 0x49, 0x7c, 0x75, 0x9f, 0xe7, 0x85, 0x42, 0x78, 0x76, 0xa5, 0x68, 0x96, 0xcc, 0x5, 0x54, 0xc2, 0xd4, 0x72}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8a, 0x39, 0xa5, 0x67, 0xa9, 0xac, 0xdd, 0x37, 0xb9, 0xd1, 0xa, 0x19, 0x7d, 0x6a, 0xea, 0xd1, 0xc7, 0x67, 0x66, 0x30, 0x20, 0x98, 0x41, 0x85, 0x6a, 0x3c, 0x10, 0x5, 0x47, 0x5f, 0xc4, 0x20}} return a, nil } -var _idtablestakingAdminEnd_epoch_change_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\x4f\x6b\xdb\x4e\x10\xbd\xeb\x53\x3c\x72\xf8\xa1\x40\x90\x7e\x94\xd2\x83\x68\x1b\x94\xd8\x01\x43\x28\x21\x56\x0f\x3d\x85\xd5\x6a\x14\x6d\x23\xef\x88\xdd\x91\x95\x10\xf2\xdd\xcb\xea\x8f\xdb\x34\x71\xe7\x62\xb0\xe6\xfd\x99\x7d\xcf\xec\x3a\x76\x82\xab\x96\x87\xcd\xaa\x50\x65\x4b\x5b\x51\x0f\xc6\xde\xa3\x76\xbc\xc3\xff\x8f\x9b\xd5\xfa\x5b\xb1\x29\x7e\x14\xf9\xc5\xf5\x3a\x5f\xad\x6e\xd7\xdb\x6d\x14\xa5\x29\x8a\xc6\x78\x88\x53\xd6\x2b\x2d\x86\x2d\xa8\xae\x49\x8b\xd9\x53\xfb\x04\xb2\x95\x87\x34\x04\xea\x58\x37\x50\xb6\x82\x17\xe5\xc4\x43\xc1\xd2\x00\xb6\x94\x44\x69\x1a\x78\x36\x02\xcd\xbb\xd2\x58\x9a\x11\xb6\xba\xf3\xb3\x87\x80\xdb\xf1\x9e\xee\x84\x1f\xc8\xbe\x92\xf3\x01\x3b\x34\x46\x37\xbf\xc5\x0e\xb0\x7e\x5c\x39\x9b\xbf\x3b\xaa\xfb\xb0\x62\xb9\x22\x8f\xc1\x48\x03\x63\x7d\x5f\xd7\x46\x1b\xb2\x32\xc2\x28\xd0\x2d\x72\x1e\xb3\x5e\x49\x32\x10\x59\x94\xbd\x7e\x20\xf1\x51\xf4\x87\x81\xd8\x54\x3e\xc3\xf3\x56\x9c\xb1\xf7\x19\x2e\x98\xdb\x97\xb3\x70\xdc\x8d\x7a\xe2\x5e\x32\x7c\xbf\x32\x8f\x9f\x3e\x9e\xe2\x39\x8a\x00\x20\x4d\x71\xcd\x5a\xb5\xd8\x2b\x67\xc2\x43\xa3\x66\x07\x15\xdc\x91\x23\xab\x09\xc2\xe3\x15\x9b\x15\xc6\x20\x90\x57\x3b\x63\xc1\xe5\x4f\xd2\x32\x52\xb4\x24\x50\xe1\xcf\x5b\xaa\x33\xfc\xf7\x36\xb4\x64\x84\x4c\x7a\x9d\xa3\x4e\x39\x8a\x95\xd6\x92\x21\xef\xa5\xc9\xb5\xe6\xde\x4a\x70\x84\x79\xd2\x14\x25\x3b\xc7\xc3\x7b\x46\xd4\xdf\xfa\x61\x3c\xb5\x75\xb2\x98\xc0\x17\x04\xfa\x64\xe2\xf8\x7c\xd4\xd1\xd7\x38\xb4\x29\x7b\xa7\x66\xc9\xfc\x3b\xae\x6d\x85\x9d\xba\xa7\x1b\x25\xcd\xe9\x41\x30\xcc\xf9\x39\x3a\x65\x8d\x8e\x4f\x2e\xb9\x6f\x2b\x58\x96\xc5\xf7\x2b\xd7\x87\x02\x04\xb6\x93\x89\xe3\x65\x7a\x0e\x7a\x24\xdd\x0b\x2d\x69\xbc\x39\x25\xf1\x24\xeb\x50\xd6\x22\x44\x3f\x65\x18\x1f\xd2\x3c\xfd\x07\x2a\xef\x3a\xc7\x7b\xaa\xae\x8d\x97\x50\x8a\xa3\xbb\x64\xab\xe5\xda\xa9\xa0\xf1\xd1\xd5\xd0\xc2\xd1\x88\x0f\x1e\x46\x5f\x97\x21\x3b\x72\x19\x3e\x2c\x77\xbd\x44\xbf\x02\x00\x00\xff\xff\xd9\x78\x1a\x48\xbe\x03\x00\x00" +var _idtablestakingAdminEnd_epoch_change_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x0c\x41\x82\x52\x7a\x10\x6d\x43\xfe\x34\x60\xc8\x21\xd4\x6e\xaf\x61\xb5\x1a\x59\x5b\x4b\x3b\x62\x77\x64\x25\x04\x7f\xf7\xb2\xfa\xe3\x36\x75\xdc\xbd\x08\xb4\x33\xef\xfd\x66\xe7\x99\xa6\x65\x27\xb8\xaf\xb9\x5f\xdd\x6d\x54\x5e\xd3\x5a\xd4\xce\xd8\x2d\x4a\xc7\x0d\x16\xa7\x17\x8b\x28\x4a\x53\x6c\x2a\xe3\x21\x4e\x59\xaf\xb4\x18\xb6\xa0\xb2\x24\x2d\x66\x4f\xf5\x0b\xc8\x16\x1e\x52\x11\xa8\x65\x5d\x41\xd9\x02\x5e\x94\x13\x0f\x05\x4b\x3d\xd8\x52\x12\xa5\x69\xd0\x59\x09\x34\x37\xb9\xb1\x34\x75\xd8\xe2\xc9\x4f\x04\xa1\xaf\xe1\x3d\x3d\x09\xef\xc8\xbe\xb1\xf3\xa1\xb7\xaf\x8c\xae\xfe\x98\x1d\xdb\xba\xa1\xe4\x72\xba\x77\x54\x76\xa1\xc4\x72\x41\x1e\xbd\x91\x0a\xc6\xfa\xae\x2c\x8d\x36\x64\x65\x68\xa3\x20\x37\xdb\x79\x4c\x7e\x39\x49\x4f\x64\x91\x77\x7a\x47\xe2\xa3\xe8\x2f\x80\xd8\x14\x3e\xc3\xeb\x5a\x9c\xb1\xdb\x0c\x37\xcc\xf5\xe1\x32\x0c\xf7\xa8\x5e\xb8\x93\x0c\x3f\xee\xcd\xf3\xa7\x8f\x4b\xbc\x46\x11\x00\xa4\x29\x1e\x58\xab\x1a\x7b\xe5\x4c\x78\x4d\x94\xec\xa0\x02\x1d\x39\xb2\x9a\x20\x3c\x4c\xb1\xba\xc3\xf0\xda\xb8\x2e\x1a\x63\xc1\xf9\x2f\xd2\x32\x48\xd4\x24\x50\xe1\xe7\x77\x2a\x33\x5c\x9c\x6e\x26\x19\x5a\x46\xbf\xd6\x51\xab\x1c\xc5\x4a\x6b\xc9\xa0\x3a\xa9\xe2\x1b\x76\x8e\xfb\x9f\xaa\xee\x68\x89\x8b\x6b\xad\xb9\xb3\x12\x00\x31\x9d\x34\x45\x3e\xd4\xbc\xc7\xa5\xfe\xc5\x09\xc7\x53\x5d\x26\x33\x13\xbe\x20\xb8\x25\x5e\xd8\xa9\x2d\x25\xa3\xd6\xe7\xb3\xa0\x5f\xe3\x10\xb1\xec\x9d\xec\x25\xd3\x77\x28\x5b\x8f\x72\x8f\x4a\xaa\xe5\xd1\x38\x9c\xab\x2b\xb4\xca\x1a\x1d\x2f\x6e\xb9\xab\x0b\x58\x96\x99\xff\x0d\xfd\x31\x17\x41\x6d\x31\x6a\x1c\xc6\x57\xa2\x67\xd2\x9d\xd0\xbc\xa4\x93\x91\x12\x4f\xf2\x2d\x64\x78\x13\x12\x31\xae\x36\x3e\x2e\x79\xf9\x9f\xae\xeb\xb6\x75\xbc\xa7\xe2\xc1\x78\x09\x59\x39\x5b\x4b\xb6\x98\xa7\x1d\x73\x1b\x9f\x2d\x0d\xe1\x1c\x40\x7c\x60\x18\xb8\x6e\xc3\x0e\xc9\x65\xf8\x30\xcf\x75\x88\x7e\x07\x00\x00\xff\xff\x68\xee\x57\x96\xd3\x03\x00\x00" func idtablestakingAdminEnd_epoch_change_payoutCdcBytes() ([]byte, error) { return bindataRead( @@ -2080,11 +2140,11 @@ func idtablestakingAdminEnd_epoch_change_payoutCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/end_epoch_change_payout.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1a, 0x52, 0xcb, 0x9a, 0xf4, 0xb3, 0x83, 0x34, 0xe5, 0xe, 0xf1, 0xbb, 0x6d, 0x4c, 0xb8, 0x6e, 0x10, 0x16, 0x8c, 0x33, 0xcc, 0x52, 0xb7, 0x29, 0x5d, 0xbe, 0xa6, 0xbb, 0xe0, 0x87, 0xb7, 0x28}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x3f, 0xf, 0xc8, 0x75, 0x2e, 0x7b, 0xe1, 0x35, 0x4d, 0x36, 0x48, 0x6d, 0x3c, 0xa5, 0x9c, 0x43, 0x74, 0xdf, 0x63, 0xab, 0xba, 0xae, 0x2c, 0xf9, 0xf4, 0xf4, 0xa, 0xb6, 0xd9, 0xbb, 0xb3}} return a, nil } -var _idtablestakingAdminEnd_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x8b\x9c\x40\x10\x85\xef\xfe\x8a\xc7\x1e\x82\x03\x41\x73\x96\x24\x8b\x1b\x27\x20\x0c\x21\xac\x5e\x72\xec\x69\xcb\xb1\x13\xa7\x4b\xba\xcb\x75\x61\x99\xff\x1e\x5a\xc7\x21\xd9\x99\xa9\x8b\xa0\x55\xef\x7d\x55\x4f\x73\x1c\xd8\x09\xbe\xf7\x3c\x95\x45\xad\xf6\x3d\x55\xa2\xfe\x18\x7b\x40\xeb\xf8\x88\x4f\xaf\x65\xb1\xfd\x51\x97\xf5\xaf\x3a\x7f\xda\x6d\xf3\xa2\x78\xde\x56\x55\x14\xa5\x29\xea\xce\x78\x88\x53\xd6\x2b\x2d\x86\x2d\xc8\x36\x1e\xd2\x11\xfc\x59\x41\x8d\xf3\x87\x8f\x98\x3a\xa3\x3b\x38\x6a\xc7\xd0\x62\xb9\x21\x8f\x20\x31\x19\xe9\x60\xac\x1f\xdb\xd6\x68\x43\x56\xe6\x51\x8a\xa2\x7f\x64\x63\xd3\xf8\x0c\x6f\x95\x38\x63\x0f\x19\x9e\x98\xfb\xd3\x06\x6f\x51\x04\x00\x69\x8a\x1d\x6b\xd5\xe3\x45\x39\x13\xe0\xd1\xb2\x83\x0a\x56\xe4\xc8\x6a\x82\xf0\x8c\x54\x16\x98\x97\x43\xde\x1c\x8d\x05\xef\x7f\x93\x96\x59\xa2\x27\x81\x0a\x2f\x9f\xa9\xcd\xf0\xe1\xfa\x10\xc9\x3c\xb2\xf8\x0d\x8e\x06\xe5\x28\x56\x5a\x4b\x86\x7c\x94\x2e\xd7\x9a\x47\x2b\x81\x08\xe7\x4a\x53\xec\xd9\x39\x9e\x6e\x81\xa8\xf7\xfe\xa1\x3c\xf5\x6d\xb2\x42\xe0\x0b\x82\x7c\xb2\x68\x7c\xbe\x4b\xf4\x35\x0e\x09\x65\x37\xa2\x4b\xce\xcf\xb9\xad\x12\x76\xea\x40\x3f\x95\x74\x9b\x8b\x61\xa8\xc7\x47\x0c\xca\x1a\x1d\x3f\x7c\xe3\xb1\x6f\x60\x59\x56\xee\xff\xa8\x2f\x69\x06\xb5\x87\x45\xe3\xb4\x9c\x83\x5e\x49\x8f\x42\x6b\x1a\x57\xab\x24\x9e\x24\x1f\x06\xc7\x2f\xd4\xec\x8c\x97\x90\xe5\xe6\x5e\x2f\xd9\x66\xe5\x5e\xfe\x9b\x78\xf5\x3a\xfd\x0d\x00\x00\xff\xff\x5c\x5c\x6f\xbd\xa5\x02\x00\x00" +var _idtablestakingAdminEnd_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x0f\x1f\x82\x0c\x45\xba\x8b\xb6\xc1\x69\x28\x04\x72\x28\x75\xe8\x7d\xbc\x1a\x59\xdb\xae\x77\xc4\xee\x6c\x54\x08\xfe\xef\x65\x57\x56\x68\xeb\x64\x2e\x02\xcd\xcc\x7b\xdf\xe8\xc9\x9e\x26\x09\x8a\xaf\x4e\xe6\x87\xfb\x27\x3a\x38\xde\x2b\xfd\xb2\xfe\x88\x21\xc8\x09\x9b\xeb\xc6\xa6\xaa\xda\x16\x4f\xa3\x8d\xd0\x40\x3e\x92\x51\x2b\x1e\xec\xfb\x08\x1d\x19\xf1\xb2\x4f\xa9\x34\x3e\x60\x1e\xad\x19\x11\x78\x48\x79\xc4\x4b\xcf\x11\x59\x62\xb6\x3a\xc2\xfa\x98\x86\xc1\x1a\xcb\x5e\xcb\x2a\x57\xd5\x5f\xb2\xb5\xed\x63\x87\x97\xbd\x06\xeb\x8f\x1d\xee\x44\xdc\x79\x8b\x97\xaa\x02\x80\xb6\xc5\xa3\x18\x72\x78\xa6\x60\x33\x21\x06\x09\xa0\x6c\xc5\x81\xbd\x61\xa8\x14\xa4\x87\x7b\x94\x0b\xb0\xeb\x4f\xd6\x43\x0e\x3f\xd9\x68\x91\x70\xac\xa0\xfc\xf2\x3b\x0f\x1d\x6e\xae\xaf\x6d\xca\xca\xe2\x37\x05\x9e\x28\x70\x4d\xc6\x68\x07\x4a\x3a\xd6\x77\x12\x82\xcc\x3f\xc8\x25\xde\xe2\x66\x67\x8c\x24\xaf\x19\x10\x97\x6a\x5b\x1c\xca\xcc\x5b\x5c\xf4\x3f\x4e\xae\xc8\x6e\x68\x56\x26\x7c\x42\x76\x6b\xa2\x4a\xa0\x23\x37\x8b\xd6\xc7\x77\x41\x3f\xd7\x39\xb6\xee\x8d\x3c\x9b\xcb\xb3\x8c\xed\x17\xb9\x6f\xa4\xe3\xf6\xd5\x38\xd7\xed\x2d\x26\xf2\xd6\xd4\x9b\x2f\x92\x5c\x0f\x2f\xba\xf2\xff\x43\xff\x1a\x72\x56\xdb\x2c\x1a\xe7\xe5\x2b\xf1\x6f\x36\x49\x79\x0d\xe9\xea\xa4\x26\xb2\xee\xa6\x29\xc8\x33\xf7\x8f\x36\x6a\x8e\x78\xfb\xde\x2c\xfb\x7e\xe5\x5e\x7e\xa7\x7a\xf5\x3a\xff\x09\x00\x00\xff\xff\x12\x49\x6b\xee\xba\x02\x00\x00" func idtablestakingAdminEnd_stakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2100,11 +2160,11 @@ func idtablestakingAdminEnd_stakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/end_staking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0xd, 0xea, 0x6, 0x3d, 0x16, 0x7, 0x5e, 0x7e, 0xb8, 0x24, 0x9e, 0xe2, 0x6a, 0x6d, 0x4d, 0xf2, 0x73, 0x20, 0x5, 0x38, 0xd9, 0xac, 0xef, 0x64, 0x7d, 0xcf, 0x59, 0x67, 0x35, 0xaf, 0xd5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0xb3, 0xec, 0x2e, 0x69, 0xa9, 0x17, 0x98, 0x82, 0xc1, 0xe2, 0x4f, 0xf2, 0xd4, 0x82, 0xe9, 0x56, 0x9d, 0xb1, 0xdc, 0xbe, 0x9a, 0xd7, 0x2d, 0x12, 0x75, 0x92, 0x64, 0x6, 0x1d, 0x90, 0x10}} return a, nil } -var _idtablestakingAdminMove_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\xeb\x9b\x40\x10\xc5\xef\x7e\x8a\xc7\xff\x50\xcc\x45\x4b\x8f\xd2\x36\xd8\x68\x41\x08\xa5\x44\x2f\x3d\xae\x9b\x31\xda\xe8\x8e\xac\x63\x0c\x84\x7c\xf7\xb2\x9a\x94\xa4\xcd\x7f\x2e\x82\xcc\xbe\xf7\x9b\xf7\x9a\xae\x67\x2b\xf8\xde\xf2\x94\x25\x85\x2a\x5b\xca\x45\x1d\x1b\x73\x40\x65\xb9\xc3\xc7\x73\x96\xa4\x3f\x8a\xac\xf8\x55\xc4\xdf\xb6\x69\x9c\x24\xbb\x34\xcf\x3d\x2f\x0c\x51\xd4\xcd\x00\xb1\xca\x0c\x4a\x4b\xc3\x06\x1d\x9f\x68\x80\xf0\x91\xcc\x80\x92\x64\x22\x32\x28\x47\x7d\x24\x19\x3c\xef\x71\xf3\xe2\x79\x00\x10\x86\xd8\xb2\x56\x2d\x4e\xca\x36\xce\x1a\x15\x5b\x28\x58\xaa\xc8\x92\xd1\x04\x61\x48\x4d\xc8\x12\xcc\x68\x88\xf7\x5d\x63\xc0\xe5\x6f\xd2\x32\x4b\xb4\x24\x50\xee\xe7\x8e\xaa\x08\x1f\xfe\x3f\x23\x98\x9f\x2c\x7e\xbd\xa5\x5e\x59\xf2\x95\xd6\x12\x21\x1e\xa5\x8e\xb5\xe6\xd1\xc8\x0a\x97\x79\xe1\x06\x55\xb2\xb5\x3c\xbd\x02\x51\xff\xfa\xbb\x19\xa8\xad\x82\x3b\x04\xbe\xc0\xc9\x07\x8b\xc6\xe7\x77\x89\xbe\xfa\x2e\xdf\xe8\x45\xf0\xc1\xed\x3b\xaf\xe5\xc2\x56\x1d\xe8\xa7\x92\x7a\xf5\xd7\xd0\xcd\x7a\x8d\x5e\x99\x46\xfb\x6f\x1b\x1e\xdb\x3d\x0c\xcb\x9d\xfb\x89\x7a\xb8\xb5\x39\xf3\xbd\x2d\x1a\xd7\x25\x0e\x3a\x93\x1e\x85\x1e\x6e\x7f\xba\x24\x70\x7d\x16\x73\x9b\xbe\xa1\x29\xed\x59\xd7\x1b\x97\x16\xd9\x08\x9f\xee\x4a\xd7\x3f\x01\x00\x00\xff\xff\x77\xf2\xa1\x3f\x41\x02\x00\x00" +var _idtablestakingAdminMove_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\xab\x9b\x40\x14\x85\xf7\xfe\x8a\x83\x8b\x87\xd9\x28\x74\x29\x6d\x1f\xaf\x49\x0b\x81\x2e\x4a\x13\xba\xbf\x4e\xae\xd1\x46\xe7\xca\xcc\x35\x16\x42\xfe\x7b\x99\x31\x29\x49\x93\x37\x1b\x41\x8f\xe7\x7c\x73\x4e\xdb\x0f\xe2\x14\xdf\x3a\x99\xd6\xab\x2d\x55\x1d\x6f\x94\x0e\xad\xdd\xa3\x76\xd2\x23\x7d\xfc\x90\x26\x49\x51\x60\xdb\xb4\x1e\xea\xc8\x7a\x32\xda\x8a\x45\x2f\x47\xf6\x50\x39\xb0\xf5\xa8\x58\x27\x66\x8b\x6a\x34\x07\x56\x9f\x24\xb7\xca\x53\x92\x00\x40\x51\xe0\xbb\x18\xea\x70\x24\xd7\x06\x7f\xd4\xe2\x40\x70\x5c\xb3\x63\x6b\x18\x2a\xd0\x86\xb1\x5e\x21\xe6\xe3\x6d\xd7\xb7\x16\x52\xfd\x66\xa3\xd1\xa2\x63\x05\x85\x97\x3f\xb9\x2e\xf1\xf2\xc8\x9a\xc7\x5f\xe6\xbc\xc1\xf1\x40\x8e\x33\x32\x46\x4b\xd0\xa8\x4d\xf6\x45\x9c\x93\xe9\x17\x75\x23\x2f\xf0\xf2\x66\x8c\x8c\x56\x17\x38\x45\xfd\x85\xb1\x8a\x9a\x67\x5c\xf4\x3f\x4e\x38\x9e\xbb\x3a\xbf\x32\xe1\x13\x42\x5a\xee\x55\x1c\xed\x39\x9f\xbd\x3e\xbe\x0b\xfa\x39\x0b\xa5\x97\x4f\xd6\xc8\x2f\xcf\x28\xdb\xcc\x76\x3f\x48\x9b\xc5\xbf\xe0\x70\x5e\x5f\x31\x90\x6d\x4d\x96\x2e\x65\xec\x76\xb0\xa2\x57\xfe\x3b\x7a\x7f\x99\x38\x72\xa6\xb3\xc7\x79\x6e\x89\xff\xb0\x19\x95\x6f\x3a\xb8\xbb\x51\x1e\x66\xde\xc6\x91\x33\xcb\xd3\xd7\x41\x4c\xb3\x0c\xad\xb1\x2b\xf1\xe1\xea\x74\xfe\x1b\x00\x00\xff\xff\x57\x3b\x5b\xb4\x56\x02\x00\x00" func idtablestakingAdminMove_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2120,11 +2180,11 @@ func idtablestakingAdminMove_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/move_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0xad, 0xa9, 0xd9, 0x5a, 0x58, 0xda, 0xa3, 0xa5, 0xb6, 0xdc, 0xd5, 0x51, 0x86, 0xea, 0xf2, 0xf2, 0x5, 0x4d, 0x71, 0x5d, 0x15, 0x82, 0xd9, 0x75, 0x7e, 0x9b, 0xf3, 0x4a, 0xb1, 0xf6, 0x30}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0x12, 0x76, 0x16, 0xfb, 0xc4, 0x12, 0x4, 0xa9, 0x4, 0x1, 0x23, 0xe9, 0x22, 0x31, 0x3c, 0x95, 0x93, 0x2e, 0x67, 0x21, 0x9a, 0xcb, 0xeb, 0x32, 0x88, 0x84, 0x4b, 0x2c, 0x36, 0x3e, 0xea}} return a, nil } -var _idtablestakingAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x8f\x1c\x8a\x0d\x45\x6e\xaf\xa2\x69\x50\x23\x17\x0c\xa1\x14\x4b\x97\x1e\xc7\xab\x51\xa4\x66\xb5\x2b\x66\x47\x75\x4c\xc8\x7f\x2f\x2b\x59\x25\x6e\xdd\xb9\x08\xc4\xcc\x7b\xdf\xbc\xd9\xae\x1f\xbc\x28\xbe\x5a\x7f\xdc\x15\x15\x1d\x2c\x97\x4a\x4f\x9d\x7b\x44\x23\xbe\xc7\x87\xe7\x5d\xb1\xfd\x56\xed\xaa\x1f\x55\xfe\xe5\x61\x9b\x17\xc5\x7e\x5b\x96\x49\xb2\xd9\xa0\x6a\xbb\x00\x15\x72\x81\x8c\x76\xde\x61\xa0\x53\x80\xf0\x91\xa4\x0e\x50\x0f\xb2\x16\xda\x32\x82\xd2\x13\xd7\x70\xbe\xe6\x90\x24\x6f\x27\x5e\x92\x04\x00\x36\x1b\x3c\x78\x43\x16\xbf\x48\xba\x88\x80\xc6\x0b\x08\xc2\x0d\x0b\x3b\xc3\x51\x2d\x2a\xed\x0a\x4c\x88\xc8\xeb\xbe\x73\xf0\x87\x9f\x6c\x74\x92\xb0\xac\xa0\xf8\x73\xcf\x4d\x86\x77\xff\xae\x93\x4e\x23\xb3\xdf\x20\x3c\x90\xf0\x8a\x8c\xd1\x0c\xf9\xa8\x6d\x6e\x8c\x1f\x9d\xae\xf1\x32\x35\x9c\xa1\x0e\x5e\xc4\x1f\xaf\x81\xd0\xdf\xfe\xb1\x02\xdb\x26\x5d\x20\x70\x8b\x28\x9f\xce\x1a\x9f\xfe\x4b\xf4\x79\x15\x73\xce\xae\x1c\x20\x3d\x7f\xa7\xb6\x52\xbd\xd0\x23\x7f\x27\x6d\xd7\x7f\x0c\x63\xdd\xdd\x61\x20\xd7\x99\xd5\xcd\xbd\x1f\x6d\x4c\x59\x17\xee\x0b\xea\x70\xbe\xea\xc4\x77\x33\x6b\xbc\xce\x71\xf0\x33\x9b\x51\xf9\xcd\xee\x31\xcd\x30\xf6\x3d\xc9\x09\xb7\x97\x7b\xa5\x86\xac\x19\x2d\x29\xef\xe7\x4b\xaf\xd6\xd7\x03\x48\x07\x3a\x2d\x2d\x8d\x97\xed\xe0\x4d\x7b\x1f\x43\x66\xc9\xf0\xf1\xfd\xf2\x50\xca\xd9\x26\x5b\xfc\x16\xb2\xd7\xdf\x01\x00\x00\xff\xff\xdb\x4f\x91\x9f\x99\x02\x00\x00" +var _idtablestakingAdminPay_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x0f\x1f\x82\x04\x45\xa2\x57\xd1\x34\xa4\x49\x0b\x81\x1e\x4a\x1c\x7a\x1f\xaf\x46\x91\x9a\xd5\x8e\x98\x1d\xd5\x35\x21\xff\xbd\xac\x64\x95\xa4\x76\xf6\x22\x90\xde\xbe\xf7\xe9\xcd\xf4\xc3\x28\x6a\xf8\xe6\x65\x7f\x77\xfb\x40\x3b\xcf\x5b\xa3\xa7\x3e\x3c\xa2\x55\x19\xb0\x39\xfd\xb0\xc9\xb2\xaa\xc2\x43\xd7\x47\x98\x52\x88\xe4\xac\x97\x80\x91\x0e\x11\xca\x7b\xd2\x26\xc2\x04\xe4\x3d\xac\x63\x44\xa3\x27\x6e\x10\xa4\xe1\x98\x65\xaf\x6f\x3c\x67\x19\x00\x54\x15\xbe\x8b\x23\x8f\xdf\xa4\x7d\xca\x41\x2b\x0a\x82\x72\xcb\xca\xc1\x71\x72\x4b\x4e\x77\xb7\x98\x39\x70\xdd\x0c\x7d\x80\xec\x7e\xb1\xb3\xd9\xc2\xb3\x81\xd2\xcb\x7b\x6e\x6b\x5c\x9c\x32\x97\xf3\x95\x25\x6f\x54\x1e\x49\x39\x27\xe7\xac\x06\x4d\xd6\xe5\x5f\x44\x55\xf6\x3f\xc9\x4f\x5c\xe0\xe2\xda\x39\x99\x82\x15\x78\x9e\xf5\x47\xc6\xdd\xac\x39\xc7\x45\xff\xe3\xa4\x13\xd9\xb7\xe5\xca\x84\x4b\xa4\xb4\x32\x9a\x28\x3d\x72\xb9\x78\x7d\x7a\x17\xf4\x73\x9e\xca\xaf\xcf\x4c\xa5\x3c\x3e\x67\xd9\x76\xb1\xfb\x41\xd6\x15\xff\x82\xd3\xb9\xba\xc2\x48\xa1\x77\xf9\xe6\x46\x26\x9f\xca\xb7\x95\xff\x0d\x7d\x3c\x8e\x7a\xe6\xdc\x2c\x1e\x2f\x4b\x4b\xfc\x87\xdd\x64\xfc\xaa\x83\x54\x72\x9c\x86\x81\xf4\x80\xcb\xb7\xff\x57\x3a\xf2\x6e\xf2\x64\x7c\xbf\x2c\x40\x5e\x9c\x2f\xa2\x1c\xe9\xb0\x4a\x5a\xd1\xaf\xa3\xb8\xee\x26\x95\xcd\x5a\xe3\xe3\x87\x75\x7f\xb6\x4b\x4c\xbd\xe6\xad\x64\x2f\x7f\x03\x00\x00\xff\xff\xca\xd7\x91\xe9\xae\x02\x00\x00" func idtablestakingAdminPay_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -2140,11 +2200,11 @@ func idtablestakingAdminPay_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/pay_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x58, 0xb8, 0x76, 0x47, 0x5f, 0xe1, 0x22, 0x4e, 0x3c, 0x15, 0x6d, 0xa6, 0xea, 0x98, 0x7f, 0xf6, 0x3e, 0x5, 0x2f, 0x90, 0x61, 0xb2, 0x6c, 0xce, 0x7c, 0xb9, 0x8a, 0x26, 0x93, 0x47, 0xdb, 0x72}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x72, 0xa1, 0x77, 0xd1, 0xb0, 0xeb, 0xf3, 0x3e, 0x3d, 0x4e, 0x76, 0xb5, 0xee, 0x90, 0xec, 0xf4, 0xd4, 0xa5, 0x89, 0xb1, 0xe2, 0xc2, 0xf1, 0x5b, 0x49, 0x6b, 0x10, 0x62, 0xf2, 0x54, 0xaf, 0x4a}} return a, nil } -var _idtablestakingAdminRemove_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x4f\x8b\xdb\x30\x10\xc5\xcf\xf1\xa7\x78\xe4\x50\x1c\x68\xed\x9e\x43\xd3\xc5\xad\x53\x30\x84\xdd\x92\xf8\x52\x96\x3d\x28\xf6\x38\x56\xab\x48\x46\x9a\xfc\x63\xc9\x77\x2f\xb2\xec\x76\x77\x9b\xea\x62\x90\x46\x6f\x7e\x9a\xf7\x2c\xf7\x9d\xb1\x8c\x6f\xca\x9c\x8a\xbc\x14\x5b\x45\x1b\x16\xbf\xa4\xde\xa1\xb1\x66\x8f\x8f\xe7\x22\x5f\xde\x97\x45\xf9\xa3\xcc\xbe\xac\x96\x59\x9e\xaf\x97\x9b\x4d\x14\xa5\x29\xca\x56\x3a\xb0\x15\xda\x89\x8a\xa5\xd1\xb0\xb4\x37\x47\x72\xd0\xa6\x26\x14\xb9\x0b\x0a\xdc\x12\x94\x74\x0c\xd3\x40\x74\x9d\x35\x47\xaa\xfb\x12\x07\xa9\xbd\x8e\x2f\x28\x72\xb0\xef\x9d\xc0\xef\x14\x0d\x84\xbe\xf8\x0b\xe1\xcc\x21\x7f\xc0\xfd\x43\x09\x3a\x7b\x21\xa1\x2c\x89\xfa\x02\xa9\xfb\x73\x59\x93\x66\xc9\x97\xa0\xf0\x1e\xdc\x4a\xd7\xeb\xbe\x40\x3b\x49\xa5\x60\xe9\x48\x96\x11\x6b\xc3\xfe\xd2\xbe\x33\x4c\x9a\x67\x51\xf4\xa2\x32\x96\xb5\x9b\xe3\x71\xc3\x56\xea\xdd\xd3\x0c\xcf\x51\x04\x00\x69\x8a\x95\xa9\x84\xc2\x51\x58\xe9\xdb\xa0\x31\x16\x02\x96\x1a\xb2\xa4\x2b\x02\x9b\xf1\x21\xfd\x10\x91\xd5\x7b\xa9\x61\xb6\x3f\xa9\xe2\x5e\x42\x11\x43\xf8\xcd\x35\x35\x73\xbc\xfb\x77\xe0\x49\x7f\x25\xf4\xeb\x2c\x75\xc2\x52\x2c\xaa\x8a\xe7\xc8\x0e\xdc\x66\x55\x65\x0e\x9a\x3d\x11\x86\x95\xa6\xd8\x1a\x6b\xcd\xe9\x16\x88\x78\xdb\xdf\x2f\x47\xaa\x49\x46\x08\x2c\xe0\xe5\x93\xa0\xf1\xe9\xbf\x44\x9f\x63\xef\xe3\xfc\x46\x44\x92\xe1\xdb\x97\x6d\xd8\x58\xb1\xa3\xef\x82\xdb\xd9\x9f\x86\x7e\xdd\xdd\xa1\x13\x5a\x56\xf1\xf4\xab\x39\x28\xef\x3d\x8f\xdc\xaf\xa8\xdd\x90\xbb\x9e\x6f\x1a\x34\xae\x61\x1c\x74\xa6\xea\xc0\x84\xe7\x68\xe2\xc7\xe8\xd3\xe3\x53\xb1\xb8\xc5\xb4\x23\xce\x86\x98\xad\xa4\xe3\xf8\x2f\xcc\x2d\x10\x9f\xa4\x31\x96\x21\xa6\x7d\x68\x5d\x78\xcc\x74\x16\x45\x93\x34\x1d\x92\x0d\x12\x55\x1b\xd2\x1d\x4d\xbc\xff\x81\xa3\x34\xeb\x70\x2c\x35\x64\xed\x3c\xe4\x64\x20\x7c\x7c\x5d\xf1\x84\x05\xb4\x54\xd1\xe4\x1a\x64\x1d\x71\xf0\x6a\xfc\x2d\x7a\x80\xc1\x40\x4d\x27\x08\xa5\xcc\xe9\x83\xdf\xbd\x6d\x61\xe2\xde\x3c\x76\xe8\x3b\x0e\xef\xfa\x3b\x00\x00\xff\xff\x88\x87\x14\x09\xde\x03\x00\x00" +var _idtablestakingAdminRemove_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x4f\x6b\xdb\x40\x10\xc5\xcf\xd6\xa7\x78\xf8\x10\x64\x68\xa5\xbb\x69\x1a\xd2\x9a\x82\x21\x34\x25\x31\xbd\x84\x1c\xc6\xd2\xc8\xda\x76\xbd\x2b\x76\xc7\x76\x4c\xf0\x77\x2f\xa3\x95\xda\xfc\x71\xf7\x22\xd8\x99\x79\xf3\xdb\x99\x27\xb3\xed\x7c\x10\x7c\xb3\xfe\xb0\x5c\xac\x68\x6d\xf9\x5e\xe8\xb7\x71\x1b\x34\xc1\x6f\x31\x7d\x1f\x98\x66\x59\x59\x62\xd5\x9a\x08\x09\xe4\x22\x55\x62\xbc\x43\xe0\xad\xdf\x73\x84\xf3\x35\x63\xb9\x88\xa9\x5e\x5a\x86\x35\x51\xe0\x1b\x50\xd7\x05\xbf\xe7\xba\x4f\x89\x30\x4e\x75\x34\x61\xb9\x80\x68\x83\x02\x7a\xb3\x6c\x40\xee\xa8\x05\x29\x16\xb1\xb8\xc5\xf7\xdb\x15\xf8\x49\x85\xc8\x06\xa6\xfa\x08\xe3\xfa\xb8\xa9\xd9\x89\x91\x63\x52\xf8\x00\x69\x4d\xec\x75\x5f\xa0\x1d\x8c\xb5\x08\xbc\xe7\x20\xc8\x9d\x17\x2d\xda\x76\x5e\xd8\xc9\x2c\xcb\x5e\x64\xe6\xa6\x8e\x73\x3c\xdc\x4b\x30\x6e\xf3\x38\xc3\x73\x96\x01\x40\x59\xe2\xc6\x57\x64\xb1\xa7\x60\xb4\x0d\x1a\x1f\x40\x08\xdc\x70\x60\x57\x31\xc4\x8f\x0f\xe9\x27\x85\xeb\x7a\x6b\x1c\xfc\xfa\x17\x57\xd2\x4b\x58\x16\x90\x5e\xde\x71\x33\xc7\xc5\xfb\xa9\x16\x7d\x49\xea\xd7\x05\xee\x28\x70\x4e\x55\x25\x73\xd0\x4e\xda\xfc\x8b\x0f\xc1\x1f\x7e\x92\xdd\xf1\x0c\x17\xd7\x55\xe5\x77\x4e\x14\x10\xc3\x29\x4b\xac\xfb\x9c\x73\x5c\xf4\x16\x47\x4f\x64\xdb\x14\x23\x13\x2e\xa1\xdd\x8a\x28\x3e\xd0\x86\x8b\xa4\xf5\xe9\xbf\xa0\x9f\x73\x5d\xef\xfc\x8c\x6f\x8a\xe1\xdb\xa7\xdd\x27\xb9\x1f\x24\xed\xec\x6f\x63\x3d\x57\x57\xe8\xc8\x99\x2a\x9f\x7e\xf5\x3b\xab\x96\x90\x91\xff\x15\x7d\x1c\xcc\xd8\x73\x4e\x93\xc6\x29\x4d\x89\x9f\xb8\xda\x09\xe3\x39\x9b\xe8\x74\xd5\x54\x6a\x96\xcb\x73\x4c\x1b\x96\xeb\xc1\x7d\x37\x26\x4a\xfe\x0f\xe6\x1c\x88\x1a\x6c\x74\x6b\x72\x6f\xef\xe5\x61\x36\xd3\x59\x96\x4d\xca\x72\x30\x3c\x98\xaa\x36\x99\x3e\x9b\xa8\x2d\x12\xc7\xca\xdf\xa5\xb0\x71\x30\x75\x54\xc8\xc9\x40\xf8\xf0\x3a\xe3\x11\x97\x70\xc6\x66\x93\x53\x92\x8d\x2c\x69\x67\xe3\xdf\xd2\x03\x0c\x8b\x74\x7c\x00\x59\xeb\x0f\x1f\xf5\xf6\xfc\x2a\x8b\xf8\xe6\xb1\x43\xdf\x71\x78\xa7\x3f\x01\x00\x00\xff\xff\x5e\x32\x19\xb8\xf3\x03\x00\x00" func idtablestakingAdminRemove_approved_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2160,11 +2220,11 @@ func idtablestakingAdminRemove_approved_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/remove_approved_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x19, 0xc1, 0x2b, 0xce, 0x80, 0x31, 0x1b, 0xd, 0xa9, 0x5d, 0x5b, 0x5e, 0x54, 0x71, 0xac, 0x23, 0xd6, 0x3e, 0xd2, 0x88, 0xb2, 0x31, 0xc2, 0x94, 0x49, 0x37, 0x6a, 0xd2, 0x9c, 0xd5, 0xfb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x6e, 0x8d, 0x79, 0xfb, 0x33, 0x46, 0x8c, 0x90, 0xf0, 0x5b, 0xed, 0x99, 0x74, 0x18, 0xe0, 0x89, 0x87, 0xdb, 0x8d, 0x1e, 0x5, 0xba, 0x54, 0x1, 0x90, 0xdb, 0x87, 0xa8, 0x8f, 0x79, 0x8d}} return a, nil } -var _idtablestakingAdminRemove_invalid_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xc1\x6a\xdb\x40\x10\x86\xef\x7a\x8a\x9f\x1c\x8a\x0c\x45\xea\x59\xb4\x0d\x4a\xe5\x82\xc0\x84\x12\xe9\xd2\xe3\x7a\x35\xb2\xa6\x95\x77\xc4\xee\xc8\x0e\x04\xbf\x7b\x59\xd9\x0e\x49\x93\xcc\x45\x20\xcd\x7e\xff\x37\x3b\xe2\xfd\x24\x5e\xf1\x73\x94\x63\x5d\xb5\x66\x3b\x52\xa3\xe6\x2f\xbb\x1d\x7a\x2f\x7b\x7c\x79\xac\xab\xf5\x7d\x5b\xb7\xbf\xdb\xf2\x6e\xb3\x2e\xab\xea\x61\xdd\x34\x49\x92\xe7\x68\x07\x0e\x50\x6f\x5c\x30\x56\x59\x1c\xc8\x75\x01\x3a\x10\xc2\x85\x60\xe6\xe5\xc3\x67\x1c\x07\xb6\x03\x3c\xf5\x73\x6c\x71\xd2\x51\x40\x44\x1c\x59\x07\xb0\x0b\x73\xdf\xb3\x65\x72\xba\x1c\xa5\x24\x79\x81\x4d\xb9\x0b\x05\x9e\x1a\xf5\xec\x76\x05\xee\x44\xc6\xd3\x0a\x4f\x49\x02\x00\x79\x8e\x8d\x58\x33\xe2\x60\x3c\x47\x79\xf4\xe2\x61\x62\x14\x79\x72\x96\xa0\xb2\x28\xd5\x15\x96\xe1\x50\x76\x7b\x76\x90\xed\x1f\xb2\xba\x20\x46\x52\x98\xf8\xf2\x81\xfa\x02\x9f\xde\x5e\x44\xb6\x1c\x39\xe7\x4d\x9e\x26\xe3\x29\x35\xd6\x6a\x81\x72\xd6\xa1\xb4\x56\x66\xa7\xd1\x08\x97\xca\x73\x6c\xc5\x7b\x39\xbe\x27\x62\xfe\xcf\x8f\x15\x68\xec\xb3\xab\x04\xbe\x21\xe2\xb3\x33\xe3\xeb\x87\x46\xdf\xd3\xb8\xa1\xe2\x9d\xd5\x65\x97\xe7\xd2\xd6\xa8\x78\xb3\xa3\x5f\x46\x87\xd5\x73\x60\xac\xdb\x5b\x4c\xc6\xb1\x4d\x6f\x7e\xc8\x3c\x76\x70\xa2\x57\xef\x57\xd6\xcf\xdb\x8c\xb4\x9b\x33\xe3\x74\xbe\x0e\x7a\x24\x3b\x2b\xbd\x98\xfd\xd5\x24\x59\x20\x2d\xa7\xc9\xcb\x81\xba\x0d\x07\x8d\xab\x5c\x7d\xd0\xea\x69\x2f\x07\xaa\xdd\xc1\x8c\xdc\xdd\xc7\x3f\x24\xbd\x46\x9d\xfe\x05\x00\x00\xff\xff\x62\x01\x27\xe0\xa4\x02\x00\x00" +var _idtablestakingAdminRemove_invalid_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x0c\x45\xba\x8b\xb6\xc1\x69\x28\x18\x42\x29\x75\xe8\x7d\xbc\x1a\x59\xd3\xae\x77\xc4\xee\xc8\x2e\x04\x7f\xf7\xb2\x92\x1d\xf2\xcf\x73\x11\x68\x67\xde\xfb\xcd\xbe\x95\xfd\xa0\xd1\xf0\xdd\xeb\x71\x7d\xff\x48\x5b\xcf\x1b\xa3\xbf\x12\x76\xe8\xa2\xee\xb1\x78\x7f\xb0\x28\x8a\xba\xc6\x63\x2f\x09\x16\x29\x24\x72\x26\x1a\xc0\xa1\x4d\xb0\x9e\x91\xce\xf3\x34\x4e\x07\x9f\x70\xec\xc5\xf5\x88\xdc\x8d\xb9\x25\x68\xcb\x09\x59\xe2\x28\xd6\x43\x42\x1a\xbb\x4e\x9c\x70\xb0\x69\x94\x8b\xe2\x85\x6c\x29\x6d\x6a\xf0\xb4\xb1\x28\x61\xd7\xe0\x4e\xd5\x9f\x96\x78\x2a\x0a\x00\xa8\x6b\x3c\xa8\x23\x8f\x03\x45\xc9\x84\xe8\x34\x82\xb2\x15\x47\x0e\x8e\x61\x3a\x21\xad\xef\x31\x6d\x80\x55\xbb\x97\x00\xdd\xfe\x61\x67\x93\x84\x67\x03\xe5\x9f\xbf\xb8\x6b\x70\xf3\x7e\xdb\x6a\x1a\x99\xfd\x86\xc8\x03\x45\x2e\xc9\x39\x6b\x40\xa3\xf5\xe5\x9d\xc6\xa8\xc7\xdf\xe4\x47\x5e\xe2\x66\xe5\x9c\x8e\xc1\x32\x20\xce\x55\xd7\xd8\x4e\x3d\x1f\x71\xd1\x5b\x9c\x5c\x89\x7d\x57\x5d\x98\xf0\x05\xd9\xad\x4a\xa6\x91\x76\x5c\xcd\x5a\x9f\xaf\x82\x7e\x2d\x73\x6c\xcd\x07\x79\x56\xe7\xef\xd4\xb6\x99\xe5\x7e\x92\xf5\xcb\x67\xe3\x5c\xb7\xb7\x18\x28\x88\x2b\x17\xdf\x74\xf4\x2d\x82\xda\x85\xff\x15\xfd\x73\xc8\x59\x6d\x31\x6b\x9c\xe6\x5b\xe2\x7f\xec\x46\xe3\x17\x77\xf0\x6a\xa3\x2a\xb1\xad\x86\x21\xea\x81\xdb\x07\x49\x96\x13\x5e\x5e\x69\x8d\xbc\xd7\x03\xaf\xc3\x81\xbc\xb4\x3f\xf2\xc3\x29\x2f\x56\xa7\xff\x01\x00\x00\xff\xff\x90\x7f\xa1\x57\xb9\x02\x00\x00" func idtablestakingAdminRemove_invalid_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2180,11 +2240,11 @@ func idtablestakingAdminRemove_invalid_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/remove_invalid_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x72, 0xb, 0xf4, 0x44, 0xf3, 0x74, 0xb7, 0x89, 0x8c, 0xb6, 0x17, 0xd1, 0xde, 0x3, 0x5e, 0xf7, 0x9b, 0xf0, 0x2f, 0x57, 0xbe, 0x4b, 0x8f, 0xe9, 0x1f, 0xea, 0x14, 0x34, 0xe1, 0x24, 0x95, 0x2a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0x2e, 0x4, 0x44, 0x5, 0x11, 0x74, 0xed, 0x35, 0xd5, 0x12, 0x3e, 0x87, 0x55, 0x45, 0x89, 0x30, 0x16, 0xa9, 0x35, 0x7b, 0x87, 0x79, 0x7a, 0x5, 0x9f, 0x18, 0xac, 0xb6, 0x2a, 0x5e, 0xa3}} return a, nil } -var _idtablestakingAdminRemove_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\xab\x9b\x40\x10\xc7\xef\x7e\x8a\x3f\xef\x50\x7c\x17\xed\x59\xda\x3e\x6c\x4d\x41\x78\x84\xa2\x5e\x7a\xdc\xec\x8e\x71\x5b\xdd\x91\x75\x4c\x52\x4a\xbe\x7b\x59\x4d\x4a\xd2\xe6\xcd\x45\x90\x9d\xdf\xff\x37\x33\x76\x18\xd9\x0b\xbe\xf6\x7c\x2c\x8b\x46\xed\x7a\xaa\x45\xfd\xb4\x6e\x8f\xd6\xf3\x80\xf7\xa7\xb2\xd8\x6c\x9b\xb2\xf9\xde\xe4\x9f\x5f\x37\x79\x51\x54\x9b\xba\x8e\xa2\x34\x45\xd3\xd9\x09\xe2\x95\x9b\x94\x16\xcb\x0e\x9e\x06\x3e\xd0\x04\xe5\x40\x27\x3b\x49\x80\x38\x36\xb4\x92\xa4\x23\x58\x43\x4e\xac\xfc\x82\x84\xa0\x28\xba\xe9\x8e\xad\xc9\x50\x8b\xb7\x6e\xff\x8c\xdf\x51\x04\x00\x69\x8a\x57\xd6\xaa\xc7\x41\x79\x1b\x3a\xd0\xb2\x87\x82\xa7\x96\x3c\x39\x4d\x10\x5e\xb8\x65\x81\x45\x1d\xb9\x19\xac\x03\xef\x7e\x90\x96\x05\xd1\x93\x40\x85\x9f\x15\xb5\x19\xde\xfd\x3f\x66\xb2\xb4\xac\x79\xa3\xa7\x51\x79\x8a\x95\xd6\x92\x21\x9f\xa5\xcb\xb5\xe6\xd9\x49\x30\xc2\xa5\xd2\x14\x3b\xf6\x9e\x8f\x8f\x44\xd4\xbf\xf9\xa1\x26\xea\xdb\xe4\x2a\x81\x8f\x08\xf8\x64\x65\x7c\x78\xd3\xe8\x53\x1c\xb6\x96\x3d\x38\x4c\x72\xf9\x2e\xcf\x6a\x61\xaf\xf6\xf4\x4d\x49\xf7\xfc\x37\x30\xd4\xcb\x0b\x46\xe5\xac\x8e\x9f\xbe\xf0\xdc\x1b\x38\x96\xab\xf7\x9d\xf5\x74\xb9\xf6\xe2\xf7\xb4\x32\xce\xeb\x3a\xe8\x44\x7a\x16\xba\x99\xfd\x6e\x92\x64\xbd\x77\xee\x4c\x45\xed\xec\xcc\x96\x0d\x55\xa4\xd9\x9b\xd8\x9a\x2b\xe8\xfc\x27\x00\x00\xff\xff\x22\x63\x8e\xec\x60\x02\x00\x00" +var _idtablestakingAdminRemove_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\xcb\xda\x40\x10\x86\xef\xf9\x15\x2f\x39\x48\xbc\x24\xf7\xd0\x56\x6c\xa5\x20\x94\x52\x54\x7a\x1f\x77\x27\x66\xdb\x64\x27\x6c\x26\x6a\x29\xfe\xf7\xb2\x89\x16\xfd\xf4\x9b\x4b\x20\x99\x79\xe6\x99\xc9\xb8\xb6\x93\xa0\xf8\xda\xc8\x69\xbd\xda\xd1\xbe\xe1\xad\xd2\x6f\xe7\x0f\xa8\x82\xb4\x48\x9f\x3f\xa4\x49\x52\x14\xd8\xd5\xae\x87\x06\xf2\x3d\x19\x75\xe2\x11\xb8\x95\x23\xf7\x20\x0f\x3e\xbb\x5e\x23\xc2\x8b\xe5\x89\xa3\x35\xc3\x59\xf6\xea\xf4\x0f\x34\xd2\x92\xe4\xae\x3a\x73\xb6\xc4\x56\x83\xf3\x87\x39\xfe\x26\x09\x00\x14\x05\xbe\x89\xa1\x06\x47\x0a\x2e\x56\xa0\x92\x00\x42\xe0\x8a\x03\x7b\xc3\x50\x19\xb9\xeb\x15\x46\x3f\x2c\x6d\xeb\x3c\x64\xff\x8b\x8d\x8e\x88\x86\x15\x14\x5f\x6e\xb8\x2a\x31\x7b\x9e\x25\x1f\x4b\xa6\x7e\x5d\xe0\x8e\x02\x67\x64\x8c\x96\xa0\x41\xeb\xec\xb3\x84\x20\xa7\x9f\xd4\x0c\x3c\xc7\x6c\x69\x8c\x0c\x5e\xa3\x20\xae\x51\x14\xd8\x8f\x39\xaf\xbc\xe8\xad\x4e\x8c\x9e\x9b\x2a\xbf\x39\xe1\x23\x62\xb7\xbc\x57\x09\x74\xe0\x7c\x62\x7d\x78\x57\xf4\x53\x16\x97\x59\xbe\xf8\x5b\xf9\xf5\x39\xa6\x6d\x27\xdc\x0f\xd2\x7a\xfe\xbf\x71\x8c\xc5\x02\x1d\x79\x67\xb2\xf4\x8b\x0c\x8d\x85\x17\xbd\xf9\x3f\xd8\xf7\xd7\x13\x18\x3d\xd3\x89\x71\x99\xb6\xc4\x67\x36\x83\xf2\xdd\x0e\x1e\x26\xca\xa7\x33\x58\x7a\xbb\xe1\x6a\xf0\xf6\xbb\x58\xde\xb0\x91\x60\x33\x67\x6f\xa0\xcb\xbf\x00\x00\x00\xff\xff\x4d\x37\x98\xf0\x75\x02\x00\x00" func idtablestakingAdminRemove_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -2200,11 +2260,11 @@ func idtablestakingAdminRemove_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/remove_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf6, 0xe4, 0xe1, 0x3a, 0x2a, 0x6b, 0xb5, 0x2d, 0x92, 0xdd, 0xa3, 0x6c, 0x8a, 0xd4, 0x7f, 0x7d, 0x72, 0xfa, 0x69, 0xf2, 0xab, 0x98, 0x7c, 0x56, 0xcb, 0xc4, 0xb0, 0xb8, 0xc5, 0xc2, 0xbb, 0x0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xca, 0x33, 0x14, 0xe6, 0x42, 0xf6, 0x32, 0x5d, 0x3b, 0x1b, 0xdf, 0xdd, 0xb5, 0x64, 0x5f, 0x18, 0x98, 0xfb, 0x4e, 0xc9, 0x81, 0x63, 0x57, 0x72, 0xf2, 0x1e, 0xc1, 0x11, 0xaa, 0xbc, 0x19, 0x24}} return a, nil } -var _idtablestakingAdminScale_rewards_testCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x51\x4d\x6b\xc2\x40\x10\xbd\xef\xaf\x98\xe6\x14\x41\xc2\xda\xe2\x25\xe0\x21\x12\x85\x40\xe9\x41\xd3\x43\x29\x3d\x4c\x37\xd3\x34\xb8\xee\xca\xee\x48\x0a\xe2\x7f\x2f\x6b\x35\xf8\x51\x75\x0e\x0b\x03\xef\xbd\x79\xef\x6d\xb3\x5c\x59\xc7\x30\xd5\xb6\x2d\xf2\x12\x3f\x35\xcd\x19\x17\x8d\xa9\xe1\xcb\xd9\x25\xc8\x9f\x22\x9f\xbc\x94\x45\xf9\x56\x66\xe3\xe7\x49\x96\xe7\xb3\xc9\x7c\x2e\x04\x3b\x34\x1e\x15\x37\xd6\xc0\x46\x08\x00\x80\x95\xa3\x15\x3a\x8a\x51\x29\x4e\x21\x5b\xf3\x77\xa6\x94\x5d\x1b\xee\xc1\x66\x07\x08\xa3\x89\xc1\x51\x8b\xae\xf2\x63\x47\xb8\xa8\x6c\x6b\x60\xf4\xcf\xf9\x64\x76\x86\x8a\x8d\xad\xa8\xc8\x53\x88\xe4\x7e\x06\x51\x4f\x74\xc2\xe7\xa2\x49\x80\xef\x35\x60\x04\x03\x29\x65\x22\xaf\xa3\x3d\x71\x4e\x9a\x6a\x64\xeb\xfe\x58\x71\x75\xd8\xc3\xd1\x01\xa0\x87\xd7\xc2\xf0\xd3\x63\xff\xc0\x4e\x83\x6a\x22\x6f\x99\xf0\x0a\x35\x65\x5a\xef\x8d\xc4\x61\x6f\x4c\x3d\x45\xc5\xd6\xa5\x20\x93\x61\xaf\x23\xa3\xf7\xe4\x38\xee\xf6\xfb\xa9\x46\x30\x0c\x06\xfa\x27\x94\x25\x79\x8f\x35\xa5\x10\xb5\xce\x9a\x1a\x02\xe3\xa0\x03\x3b\x3f\x51\x87\x3f\xb2\x1e\x3e\xa6\x3a\x6d\x20\xf4\x76\x61\xe0\x1c\xf3\x7e\xd4\xcc\xc7\x83\xb8\x99\xe6\x52\x3f\x24\xb8\x17\xa0\x63\x5d\x4f\x11\xde\xad\xd8\xfe\x06\x00\x00\xff\xff\xb2\x19\x09\x1c\xcc\x02\x00\x00" +var _idtablestakingAdminScale_rewards_testCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x3f\x6b\xc3\x30\x10\xc5\x77\x7d\x8a\xab\x87\xe2\x40\x30\x76\x4b\x16\x83\x87\x94\x10\xc8\xd2\xa1\x7f\xa6\xd2\xe1\x2a\x5d\x8d\x89\x22\x85\xd3\x15\x0f\x21\xdf\xbd\x28\x89\x9d\xbf\x75\x35\x18\x0e\xbd\xf7\xd3\x7b\xe7\x66\xb5\xf6\x2c\x30\xb7\xbe\x5d\xcc\xde\xf0\xcb\xd2\xab\xe0\xb2\x71\x35\x7c\xb3\x5f\x41\x72\x7d\x91\x28\x25\x8c\x2e\xa0\x96\xc6\x3b\xd8\x28\x05\x00\xb0\x66\x5a\x23\x53\x8a\x5a\x4b\x09\xf7\x53\xad\xfd\x8f\x93\x11\x6c\x76\xb7\xf1\x58\x12\x60\x6a\x91\x4d\x78\x62\xc2\xa5\xf1\xad\x83\xea\xc6\xcb\xd9\xcb\x85\x2a\x75\xde\xd0\x62\x56\x42\x92\x1f\x4e\x91\x8c\x54\x0f\xbe\x84\x66\x81\xe4\xd9\x1b\x3a\x60\xd2\x22\xcf\xf3\x2c\x1f\x0d\xea\x67\x64\xa9\x46\xf1\xbc\x37\xa5\xa6\x9b\xe3\xb3\x05\x60\x80\xf7\x85\x93\xc7\x87\x71\xe7\x2e\xa1\xd8\x53\x07\xb0\x1a\x2d\x4d\xad\xed\x72\xc4\xb9\x71\xf5\x1c\xb5\x78\x2e\x21\xcf\x26\xc7\x4c\x18\x02\xb1\xa4\xfd\x7c\x13\xe8\x8e\xa5\xa0\xaa\x60\x12\x03\x8c\xcf\x2c\x2b\x0a\x01\x6b\x2a\x21\x69\xd9\xbb\x1a\xa2\xa3\xe3\xc0\x2e\x4f\xd2\xeb\x4f\xa2\xc7\x5f\x63\xce\x37\x10\xa0\xba\x0e\x70\xa9\xf9\x38\xd9\xcc\xe7\x9d\x1a\x6c\x73\xcd\x8f\x0d\xfe\x2b\xd0\xbb\xfe\x6e\x11\xbf\x5b\xb5\xfd\x0d\x00\x00\xff\xff\xbe\x67\xb1\xec\xc9\x02\x00\x00" func idtablestakingAdminScale_rewards_testCdcBytes() ([]byte, error) { return bindataRead( @@ -2220,11 +2280,11 @@ func idtablestakingAdminScale_rewards_testCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/scale_rewards_test.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0x39, 0xc5, 0x67, 0x9f, 0x4b, 0xfc, 0xd2, 0xa6, 0xc9, 0x65, 0xd0, 0xe9, 0xc, 0x91, 0xf2, 0x55, 0x35, 0x9e, 0xbe, 0x20, 0xc0, 0x8f, 0x35, 0xf0, 0xb0, 0x73, 0xf4, 0xc9, 0xe, 0x1a, 0x70}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0xfb, 0xe0, 0xff, 0xc8, 0xd5, 0x10, 0x1a, 0xf1, 0x22, 0x4, 0x38, 0x3f, 0xc9, 0xbd, 0xd9, 0x0, 0xa9, 0xb3, 0x36, 0xcf, 0x67, 0xb1, 0x7e, 0xbe, 0xe4, 0x70, 0x2b, 0x92, 0xff, 0x37, 0x16}} return a, nil } -var _idtablestakingAdminSet_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4f\x6b\xdc\x30\x10\xc5\xef\xfe\x14\x8f\x1c\x8a\x73\xb1\x7b\x36\x6d\x83\x53\x6f\xc1\xb0\x94\x12\xfb\xd2\xa3\x56\x1e\xaf\xd5\x6a\x35\x46\x1a\x27\x81\xb0\xdf\xbd\xc8\x7f\xca\x6e\xbb\x99\x8b\xc1\xd2\xbc\xf7\x7b\x7a\xe6\x34\xb2\x17\x7c\xb3\xfc\x52\x57\xad\x3a\x58\x6a\x44\xfd\x36\xee\x88\xde\xf3\x09\x1f\x5f\xeb\x6a\xf7\xbd\xad\xdb\x9f\x6d\xf9\xb8\xdf\x95\x55\xf5\xb4\x6b\x9a\x24\xc9\x73\xb4\x83\x09\x10\xaf\x5c\x50\x5a\x0c\x3b\x04\x92\x00\x19\x08\xd6\x04\x01\xf7\x50\xe3\xe8\xf9\x99\x3a\x38\xee\x28\xc0\xb8\xf9\xb4\xae\x20\xd1\x27\x49\x2e\x96\x53\xd3\x85\x02\x6f\x8d\x78\xe3\x8e\x05\x1e\x99\xed\xf9\x1e\x6f\x49\x02\x00\x79\x8e\x3d\x6b\x65\xf1\xac\xbc\x89\xab\xe8\xd9\x43\xc1\x53\x4f\x9e\x9c\x26\x08\x6f\xd2\x73\x04\x94\xdd\xc9\x38\xf0\xe1\x17\x69\x99\x25\x2c\x09\x54\xfc\xf9\x44\x7d\x81\x0f\xff\xc7\xcd\xe6\x95\xc5\x6f\xf4\x34\x2a\x4f\xa9\xd2\x5a\x0a\x94\x93\x0c\xa5\xd6\x3c\x39\x89\x44\x58\x27\xcf\x71\x60\xef\xf9\xe5\x16\x88\xfa\xd7\x3f\x4e\x20\xdb\x67\x1b\x04\x3e\x23\xca\x67\x8b\xc6\xa7\x77\x89\xbe\xa4\xb1\x87\xe2\x46\x41\xd9\xfa\x9d\xaf\x35\xc2\x5e\x1d\xe9\x87\x92\xe1\xfe\xaf\x61\x9c\x87\x07\x8c\xca\x19\x9d\xde\x7d\xe5\xc9\xc6\x2a\x64\xe3\xbe\xa2\x0e\x6b\xeb\x33\xdf\xdd\xa2\x71\x5e\x9e\x83\x5e\x49\x4f\x42\x17\xd9\xaf\x92\x64\x81\xa4\x5c\x9b\xde\x9b\x20\xb1\xca\x6d\xff\xfc\x27\x00\x00\xff\xff\xc5\xca\x43\xb8\x5f\x02\x00\x00" +var _idtablestakingAdminSet_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x8b\xdb\x30\x10\xc5\xef\xfe\x14\x0f\x1f\x16\xe7\x62\xdf\x4d\xdb\x25\xdb\xa5\xb0\xb0\x87\xd2\x84\xde\x27\xf2\x38\x56\xab\x68\x8c\x34\x4e\x0a\x21\xdf\xbd\xc8\x7f\x4a\xd2\x64\xe7\x62\xb0\xf4\xde\xfc\x34\x6f\xec\xa1\x97\xa0\xf8\xe6\xe4\xf4\xf6\xba\xa5\x9d\xe3\x8d\xd2\x6f\xeb\xf7\x68\x83\x1c\x90\xdf\x1f\xe4\x59\x56\x55\xd8\x76\x36\x42\x03\xf9\x48\x46\xad\x78\x44\xd6\x08\xed\x18\xce\x46\x85\xb4\xa0\xbe\x0f\x72\xe4\x06\x5e\x1a\x8e\xb0\x7e\x3c\x7d\x7b\x85\x26\xb3\x2c\xbb\x12\x17\xb6\x89\x35\xce\x1b\x0d\xd6\xef\x6b\xbc\x88\xb8\xcb\x0a\xe7\x2c\x03\x80\xaa\xc2\xbb\x18\x72\x38\x52\xb0\x49\x8a\x56\x02\x08\x81\x5b\x0e\xec\x0d\x43\x65\xb1\x1e\x39\xb1\x6e\x0e\xd6\x43\x76\xbf\xd8\xe8\x68\xe1\x58\x41\xe9\xe7\x0f\x6e\x6b\x3c\xdd\xbf\xa9\x1c\x25\x53\xbf\x3e\x70\x4f\x81\x0b\x32\x46\x6b\xd0\xa0\x5d\xf1\x22\x21\xc8\xe9\x27\xb9\x81\x57\x78\x5a\x1b\x23\x83\xd7\x04\x88\xb9\xaa\x0a\xbb\xf1\xce\x23\x2e\xfa\x1f\x27\x55\x64\xd7\x96\x0b\x13\x3e\x23\x75\x2b\xa3\x4a\xa0\x3d\x97\x93\xd7\xa7\x0f\x41\xbf\x14\x29\x9c\xfa\x41\x6a\xe5\xfc\x1d\xaf\x6d\x26\xbb\xef\xa4\xdd\xea\x5f\xe3\x54\xcf\xcf\xe8\xc9\x5b\x53\xe4\x5f\x65\x70\x29\x21\x5d\xf8\x6f\xe8\xe3\xbc\x0a\x23\x67\x3e\x79\x5c\xa6\x29\xf1\x1f\x36\x83\xf2\xd5\x0c\x6e\x5e\x54\x46\xd6\xf5\xbc\x00\xef\x36\x6a\x4a\x78\xd1\x5f\xfe\x06\x00\x00\xff\xff\xff\xfc\x9f\x93\x74\x02\x00\x00" func idtablestakingAdminSet_approved_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2240,11 +2300,11 @@ func idtablestakingAdminSet_approved_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_approved_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x65, 0x9e, 0x70, 0xe8, 0x77, 0x3e, 0xbb, 0xfe, 0x9f, 0x48, 0xbe, 0x7e, 0xf7, 0x80, 0x8a, 0x63, 0xad, 0x45, 0xdb, 0x75, 0x8b, 0xfd, 0x23, 0x66, 0x45, 0x89, 0x90, 0x81, 0xe1, 0xf0, 0xce, 0xe1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x44, 0xa0, 0xfc, 0x5d, 0x65, 0x80, 0xeb, 0x76, 0x1e, 0x7, 0x24, 0x56, 0x7b, 0x94, 0x24, 0x0, 0x60, 0xd1, 0x2c, 0xd8, 0x6d, 0xd5, 0x84, 0xca, 0x73, 0x54, 0x45, 0x90, 0x97, 0x72, 0x4f, 0x64}} return a, nil } -var _idtablestakingAdminSet_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xc1\x8a\xdb\x30\x10\x86\xef\x7e\x8a\x9f\x3d\x14\xe7\x62\xf7\x1c\xda\x2e\xee\x3a\x05\xc3\x52\xca\xda\x97\x1e\x27\xf2\x78\xad\x46\x96\x8c\x34\x6e\x52\x42\xde\xbd\xc8\x8e\x4b\xdb\x4d\xe6\x22\x10\x33\xdf\x7c\x33\xa3\x87\xd1\x79\xc1\x17\xe3\x8e\x55\xd9\xd0\xde\x70\x2d\x74\xd0\xf6\x15\x9d\x77\x03\xde\x9f\xaa\x72\xf7\xb5\xa9\x9a\xef\x4d\xf1\xf9\x79\x57\x94\xe5\xcb\xae\xae\x93\x24\xcf\xd1\xf4\x3a\x40\x3c\xd9\x40\x4a\xb4\xb3\x18\xe9\x57\x80\xe7\x23\xf9\x36\x40\x1c\xc8\x18\x48\xcf\x08\x42\x07\x6e\x61\x5d\xcb\x21\x49\xfe\xae\x38\x27\x09\x00\xe4\x39\x9e\x9d\x22\x83\x9f\xe4\x75\x54\x40\xe7\x3c\x08\x9e\x3b\xf6\x6c\x15\x47\x5a\x24\x55\x25\x66\x45\x14\xed\xa0\x2d\xdc\xfe\x07\x2b\x99\x11\x86\x05\x14\x3f\x5f\xb8\xdb\xe2\xdd\xdb\x71\xb2\xb9\x64\xe9\x37\x7a\x1e\xc9\x73\x4a\x4a\xc9\x16\xc5\x24\x7d\xa1\x94\x9b\xac\x6c\x56\xa3\xab\xd5\xde\x79\xef\x8e\xb7\x4c\xe8\x7f\x81\x18\x81\x4d\x97\xad\x16\xf8\x88\xc8\xcf\x16\xc6\x87\xbb\x4a\x9f\xd2\xb8\xe8\xed\x8d\x0b\x64\xd7\x77\x4e\xab\xc5\x79\x7a\xe5\x6f\x24\xfd\xe6\x4f\xc3\x18\x8f\x8f\x18\xc9\x6a\x95\x3e\x3c\xb9\xc9\xc4\x35\xcb\xea\xfd\x8f\x75\xb8\x9e\x75\xf6\x7b\x58\x18\x97\x65\x5a\x3e\xb1\x9a\x84\x71\xbe\x3d\x49\x16\x58\x9e\x0c\xe9\x81\xdb\x74\x73\x2f\x45\xc8\xcb\xea\x3b\xcd\xd7\x4d\xd7\x1e\x97\xdf\x01\x00\x00\xff\xff\x7b\xc7\x21\x68\x64\x02\x00\x00" +var _idtablestakingAdminSet_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6f\xe2\x30\x10\x85\xef\xf9\x15\x4f\x39\xa0\xe4\x92\xdc\xd1\xee\x22\x16\xb4\x12\xd2\x1e\x56\x0b\xea\x7d\x70\x26\xc4\xc5\xb1\x23\x7b\x52\x5a\x21\xfe\x7b\xe5\x84\x54\x6d\x81\xb9\x44\x8a\x67\xde\xfb\x66\x9e\x6e\x3b\xe7\x05\x7f\x8c\x3b\x6d\xd6\x3b\xda\x1b\xde\x0a\x1d\xb5\x3d\xa0\xf6\xae\x45\x7a\xfb\x90\x26\x49\x59\x62\xd7\xe8\x00\xf1\x64\x03\x29\xd1\xce\xa2\xa3\xb7\x00\xcf\x27\xf2\x55\x80\x38\x90\x31\x90\x86\x11\x84\x8e\x5c\xc1\xba\x8a\x43\x92\x7c\x9e\x38\x27\x09\x00\x94\x25\xfe\x3a\x45\x06\x2f\xe4\x75\xf4\x41\xed\x3c\x08\x9e\x6b\xf6\x6c\x15\x47\xb5\xa8\xb4\x59\x63\xe0\xc0\xb2\x6a\xb5\x85\xdb\x3f\xb3\x92\x41\xc2\xb0\x80\xe2\xcf\xff\x5c\xcf\x31\xbb\x65\x2e\x86\x91\xd1\xaf\xf3\xdc\x91\xe7\x8c\x94\x92\x39\xa8\x97\x26\xfb\xed\xbc\x77\xa7\x27\x32\x3d\xe7\x98\x2d\x95\x72\xbd\x95\x7c\x02\xbc\x42\xee\x87\xa6\x7b\x60\xf4\x9d\x27\x56\x60\x53\x17\x13\x14\x7e\x22\xda\x15\x41\x9c\xa7\x03\x17\xa3\xd6\x8f\x87\xa4\xbf\xb2\x78\xfd\xf9\x9d\x58\x8a\xeb\x77\x68\xdb\x8e\x72\xff\x48\x9a\xfc\xc3\x38\xd6\x62\x81\x8e\xac\x56\x59\xba\x72\xbd\x89\xd7\x97\x89\xff\x0b\x7d\xb8\x66\x3d\x70\xa6\xa3\xc6\x65\xdc\x9a\x5f\x59\xf5\xc2\x38\xdf\xdf\xa8\x08\x2c\x2b\x43\xba\xe5\x2a\xcb\x1f\xb5\x08\x79\x99\x78\xfb\x21\xf4\x6c\xf2\xb8\xbc\x07\x00\x00\xff\xff\x58\x92\xe9\x95\x79\x02\x00\x00" func idtablestakingAdminSet_claimedCdcBytes() ([]byte, error) { return bindataRead( @@ -2260,11 +2320,11 @@ func idtablestakingAdminSet_claimedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_claimed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xb4, 0xad, 0x42, 0x53, 0x64, 0xc1, 0x6f, 0x27, 0xf0, 0xd8, 0xf6, 0xf8, 0x47, 0x9f, 0x1e, 0x61, 0x7c, 0x35, 0xb0, 0xd3, 0x57, 0xe1, 0x19, 0x43, 0x5, 0x52, 0x66, 0x26, 0x65, 0xb6, 0x6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0xd5, 0xa0, 0x15, 0x9, 0x9e, 0xf5, 0xc0, 0xaf, 0xa2, 0x3e, 0xd3, 0x54, 0x30, 0xef, 0xcb, 0x9, 0xa1, 0x94, 0xb6, 0x48, 0x83, 0xf2, 0x39, 0xb2, 0xac, 0x3a, 0xf1, 0x6, 0x97, 0xdc, 0x21}} return a, nil } -var _idtablestakingAdminSet_node_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x8b\xd4\x40\x10\x85\xef\xf9\x15\x8f\x3d\x48\x16\x24\xf1\x20\x1e\x82\xba\x44\x33\x42\x60\x59\x64\x13\x11\x8f\x35\x9d\xca\xa4\x35\xd3\x15\xba\x2b\xce\x80\xec\x7f\x97\x4e\x66\x74\x57\x67\xeb\x52\x10\x52\xef\x7d\xaf\x9f\xdd\x4f\xe2\x15\x9f\x46\x39\xd4\x55\x4b\xdb\x91\x1b\xa5\x1f\xd6\xed\xd0\x7b\xd9\xe3\xd5\xb1\xae\x36\x77\x6d\xdd\x7e\x6b\xcb\x0f\xb7\x9b\xb2\xaa\xee\x37\x4d\x93\x24\x79\x8e\x76\xb0\x01\xea\xc9\x05\x32\x6a\xc5\x21\xb0\x06\xe8\xc0\xb0\xce\xaa\xa5\xf1\x2b\xdb\xdd\xa0\x90\x1e\xe4\xc0\x47\x1b\x34\xca\x3a\xe9\x38\x79\x74\x96\xda\xae\x40\xa3\xde\xba\xdd\x4b\x1c\x96\x93\x02\x5f\x6a\xa7\x6f\x5e\x5f\xe3\x57\x92\x00\x40\x9e\xe3\x56\x0c\x8d\xf8\x49\xde\x46\x46\xf4\xe2\x41\xf0\xdc\xb3\x67\x67\x18\x2a\x8b\x73\x5d\x61\xc9\x80\xb2\xdb\x5b\x07\xd9\x7e\x67\xa3\x8b\xc4\xc8\x0a\x8a\x1f\xef\xb9\x2f\xf0\xe2\xff\xbc\xd9\x72\xb2\xfa\x4d\x9e\x27\xf2\x9c\x92\x31\x5a\xa0\x9c\x75\x28\x8d\x91\xd9\x69\x24\xc2\x69\xf2\x1c\x5b\xf1\x5e\x0e\x97\x40\xe8\x5f\xff\x38\x81\xc7\x3e\x3b\x43\xe0\x1d\xa2\x7c\xb6\x6a\xbc\x7d\x96\xe8\x7d\x1a\x8b\x28\x2e\x34\x94\x9d\xf6\xf2\x5b\xa3\xe2\x69\xc7\x9f\x49\x87\xeb\x3f\x86\x71\x6e\x6e\x30\x91\xb3\x26\xbd\xfa\x28\xf3\xd8\xc1\x89\x9e\xb9\x9f\x50\x87\x53\xed\x0b\xdf\xd5\xaa\xf1\xb0\x3e\x07\x1f\xd9\xcc\xca\x8f\xb2\x3f\x49\x92\x05\xd6\x3b\xe9\x78\xed\x3b\x8d\x05\xd7\x55\x01\xdb\xfd\xed\x73\xdd\x67\xd1\x87\xdf\x01\x00\x00\xff\xff\xc7\x86\x8f\xec\x75\x02\x00\x00" +var _idtablestakingAdminSet_node_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x8b\xd4\x40\x10\x85\xef\xf9\x15\x8f\x1c\x96\x0c\x48\x72\x11\x0f\x41\x5d\x56\x07\x21\x20\x22\xce\xaa\xe7\x9a\x4e\x25\x69\xed\xe9\x0a\xdd\x15\x67\x41\xf6\xbf\x4b\x77\x66\x74\xd7\x9d\xad\x4b\x43\xd2\xf5\xde\xd7\xf5\xca\x1e\x66\x09\x8a\x0f\x4e\x8e\xdd\xf6\x96\xf6\x8e\x77\x4a\x3f\xad\x1f\x31\x04\x39\xa0\x7c\xfa\xa3\x2c\x8a\xa6\xc1\xed\x64\x23\x34\x90\x8f\x64\xd4\x8a\x47\x64\x8d\xd0\x89\x61\xbd\x55\x4b\xee\x3b\xdb\x71\x52\xc8\x00\xf2\xe0\x3b\x1b\x35\x89\x7a\xe9\xb9\x78\xd0\x56\xd9\xbe\xc5\x4e\x83\xf5\xe3\x0b\x1c\x73\x4b\x8b\xaf\x9d\xd7\x57\x2f\x37\xf8\x5d\x14\x00\xd0\x34\xf8\x28\x86\x1c\x7e\x51\xb0\x09\x04\x83\x04\x10\x02\x0f\x1c\xd8\x1b\x86\x4a\x76\xee\xb6\xc8\xa0\xb8\xe9\x0f\xd6\x43\xf6\x3f\xd8\x68\x96\x70\xac\xa0\xf4\xf1\x0b\x0f\x2d\xae\x9e\x3e\xaa\xce\x2d\xab\xdf\x1c\x78\xa6\xc0\x15\x19\xa3\x2d\x68\xd1\xa9\x7a\x27\x21\xc8\xf1\x1b\xb9\x85\x37\xb8\xba\x31\x46\x16\xaf\x09\x10\xa7\x6a\x1a\xec\xf3\x9d\x4b\x5c\xf4\x3f\x4e\xaa\xc8\x6e\xa8\xcf\x4c\x78\x83\xe4\x56\x47\x95\x40\x23\xd7\xab\xd6\xeb\x67\x41\xdf\x56\x29\x9d\xf6\x42\x6c\xf5\xe9\xcc\xd7\x76\xab\xdc\x67\xd2\x69\xf3\xd7\x38\xd5\xf5\x35\x66\xf2\xd6\x54\xe5\x7b\x59\x5c\x0f\x2f\x7a\xe6\x7f\x44\x1f\x4f\xbb\x90\x39\xcb\x55\xe3\x7e\x9d\x12\xdf\xb1\x59\x94\x1f\xcc\xe0\xd1\x8b\xea\xc8\xfa\x49\x7a\x5e\xd7\xa0\x4a\xb9\x77\xdb\x16\xb6\xff\x17\xf3\x7a\x9e\x45\xef\xff\x04\x00\x00\xff\xff\xf3\x29\x18\xae\x8a\x02\x00\x00" func idtablestakingAdminSet_node_weightCdcBytes() ([]byte, error) { return bindataRead( @@ -2280,11 +2340,11 @@ func idtablestakingAdminSet_node_weightCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_node_weight.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfe, 0xb, 0x49, 0x3b, 0xa5, 0x0, 0x6c, 0x1e, 0x8a, 0xe, 0x82, 0xb, 0xaf, 0xd9, 0x32, 0xa3, 0x33, 0xeb, 0x65, 0xb7, 0x87, 0x42, 0x1d, 0xe4, 0x89, 0xe6, 0x19, 0xa5, 0x25, 0xae, 0x5c, 0xcd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x83, 0x38, 0x72, 0x86, 0x8a, 0x4f, 0x3d, 0x9e, 0x30, 0x9c, 0x8f, 0x8a, 0x50, 0xc1, 0x8, 0x15, 0x7, 0x30, 0xda, 0xd0, 0x81, 0x97, 0xb8, 0x37, 0xfe, 0x1b, 0x35, 0xa, 0xf0, 0x51, 0x3b, 0x4}} return a, nil } -var _idtablestakingAdminSet_non_operationalCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x8f\xda\x3e\x10\xc5\xef\xf9\x14\x4f\x7b\xf8\x8b\xbd\x24\x1c\xfe\xea\x21\x2a\x5d\xd1\xc2\x4a\x48\x88\x56\x0b\x3d\x54\xab\x3d\x18\x7b\x42\xdc\x1a\x4f\x64\x0f\x0d\x12\xe2\xbb\x57\x4e\x08\xa5\xdd\xed\x5c\x90\xf0\xe4\xbd\xdf\xcc\x1b\xbb\x6f\x38\x08\x1e\x1d\xb7\x8b\xd9\x46\x6d\x1d\xad\x45\xfd\xb0\x7e\x87\x2a\xf0\x1e\xe3\xe3\x62\x36\x5f\x6d\x16\x9b\x6f\x9b\xe9\xc7\xe5\x7c\x3a\x9b\x3d\xcd\xd7\xeb\x2c\x2b\x0a\x6c\x6a\x1b\x21\x41\xf9\xa8\xb4\x58\xf6\x88\x24\x11\x52\x13\x9c\x8d\x02\xae\xe0\xd9\x50\x44\x5b\x33\x54\x20\x78\xf6\xe0\x86\x82\x4a\xcd\xca\x25\x09\xe5\x4d\x7a\x8e\x84\x40\xad\x0a\x26\xa2\xb5\xce\x61\x4b\x68\xad\xd4\x35\x39\x93\x65\x37\x0e\x23\x6b\x62\x89\xe7\xb5\x04\xeb\x77\x2f\xf7\x38\x65\x19\x00\x14\x05\x96\xac\x95\xc3\x4f\x15\x6c\x9a\x00\x15\x07\x28\x04\xaa\x28\x90\xd7\x04\xe1\x8e\x6b\x31\x43\x37\x21\xa6\x66\x6f\x3d\x78\xfb\x9d\xb4\x74\x12\x8e\x04\x2a\xfd\xf9\x44\x55\x89\xff\x5e\x6f\x23\xef\x3e\xe9\xfd\x9a\x40\x8d\x0a\x34\x52\x5a\x4b\x89\xe9\x41\xea\xa9\xd6\x7c\xf0\x92\x88\x70\xa9\xa2\xc0\x96\x43\xe0\xf6\x2d\x10\xf5\xb7\x7f\xaa\x48\xae\xca\x07\x08\x4c\x90\xe4\xf3\x5e\xe3\xfd\x3f\x89\x3e\x8c\x52\x4c\xe5\x1b\xf9\xe5\x97\xdf\xae\x6d\x2d\x1c\xd4\x8e\xbe\x28\xa9\xef\xaf\x86\xa9\x1e\x1e\xd0\x28\x6f\xf5\xe8\xee\x13\x1f\x9c\x81\x67\x19\xb8\xff\xa0\x8e\x97\xa3\xe8\xf8\xee\x7a\x8d\x73\xbf\x0e\x3a\x92\x3e\x08\xdd\xcc\x9e\xb6\x99\xb2\x5f\xda\x28\x25\x4e\x7d\x5e\x25\xbe\x3e\xda\xe3\xbb\xff\xcf\x98\xe0\x74\xbe\xf6\xa6\xa8\xac\x81\xf5\xb0\x26\xde\x68\xa4\x1a\x34\x9e\xad\x79\xc1\x04\xe3\x7c\x7c\x7d\xbe\x78\xbf\xda\x5b\x1e\x49\x56\xec\x3f\xff\xbe\xb3\x55\x3a\xc2\xa4\x32\x1a\xe4\x06\xfa\xf3\xaf\x00\x00\x00\xff\xff\x2e\x67\x28\x92\xfc\x02\x00\x00" +var _idtablestakingAdminSet_non_operationalCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x0f\x1f\x82\x7c\x91\x72\x28\x3d\x88\xba\x21\x6d\x08\x04\x42\x5a\xea\xb4\x97\x90\xc3\x78\x77\x64\x6d\xbb\xde\x31\xbb\xe3\x2a\x60\xfc\xdd\xcb\x4a\xb6\xeb\xd6\xc9\x5c\x04\x9a\xd9\xf7\x7e\xf3\xc7\xad\xd6\x12\x15\xb7\x5e\xfa\xbb\x9b\x47\x5a\x78\x9e\x2b\xfd\x72\x61\x89\x36\xca\x0a\x93\xf3\xc4\xa4\x28\xea\x1a\x8f\x9d\x4b\xd0\x48\x21\x91\x51\x27\x01\x89\x35\x41\x3b\x86\x77\x49\x21\x2d\x82\x58\x4e\xe8\x3b\x01\x45\x46\x90\x00\x59\x73\xa4\x5c\x4c\x3e\x4b\x50\xb0\x39\x9d\x18\x91\x7b\x8a\x36\xa1\x77\xde\x63\xc1\xe8\x9d\x76\x1d\x7b\x5b\x14\x27\x0e\xa5\xb3\xa9\xc1\xd3\x5c\xa3\x0b\xcb\xe7\x29\xb6\x45\x01\x00\x75\x8d\x7b\x31\xe4\xf1\x9b\xa2\xcb\x98\x68\x25\x82\x10\xb9\xe5\xc8\xc1\x30\x54\x06\xae\xbb\x1b\x0c\x6d\xe0\xda\xae\x5c\x80\x2c\x7e\xb2\xd1\x41\xc2\xb3\x82\xf2\xcf\x6f\xdc\x36\xb8\x38\x6f\xb9\x1a\x9e\x8c\x7e\xeb\xc8\x6b\x8a\x5c\x92\x31\xda\x80\x36\xda\x95\x9f\x24\x46\xe9\x7f\x90\xdf\xf0\x14\x17\xd7\xc6\xc8\x26\x68\x06\xc4\x3e\xea\x1a\x8b\xa1\xe6\x35\x2e\xfa\x1f\x27\x47\x62\xdf\x56\x07\x26\xcc\x90\xdd\xaa\xa4\x12\x69\xc9\xd5\xa8\xf5\xe1\x4d\xd0\x8f\x65\xde\x5d\xf3\xca\x52\xab\xfd\x77\x28\x9b\x8f\x72\x5f\x49\xbb\xe9\xd1\x38\xc7\xd5\x15\xd6\x14\x9c\x29\x27\x9f\x65\xe3\x2d\x82\xe8\x81\xff\x1f\xfa\xb4\xbf\x94\x81\x73\x32\x6a\xec\xc6\x29\xf1\x0b\x9b\x8d\xf2\xc9\x0c\xf2\x90\xf3\x49\xdc\xbb\xa4\x0d\xb6\xe3\x1a\x1b\x7c\xbf\x75\x2f\xef\xdf\xed\x30\xc3\x76\x77\xac\xcd\x1b\x74\x16\x2e\xc0\xd9\x74\xa2\x91\xe3\xa0\xf1\xe4\xec\x33\x66\xb8\xac\x2e\x8f\xe9\xbd\xf7\xd9\xfc\xaa\xc4\xfa\x20\xe1\xcb\xdf\xf3\x7b\xc8\xb7\x99\x55\xca\x83\xdc\x81\x7e\xf7\x27\x00\x00\xff\xff\x8f\xd3\xc9\x6a\x11\x03\x00\x00" func idtablestakingAdminSet_non_operationalCdcBytes() ([]byte, error) { return bindataRead( @@ -2300,11 +2360,11 @@ func idtablestakingAdminSet_non_operationalCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_non_operational.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x32, 0x99, 0x51, 0x92, 0xa9, 0x12, 0x60, 0xc4, 0xab, 0xdc, 0x1b, 0x6d, 0x9, 0x41, 0xee, 0xae, 0xda, 0xfa, 0xb1, 0x2f, 0xe9, 0x74, 0x21, 0x64, 0x50, 0x37, 0xde, 0xc7, 0x84, 0xda, 0x31, 0x2b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0x68, 0xc4, 0x60, 0xca, 0x3c, 0x78, 0xdf, 0x66, 0x1d, 0xb4, 0xe3, 0xec, 0x5f, 0xa3, 0xa7, 0x1f, 0xe1, 0x64, 0x1e, 0xd3, 0xcf, 0x20, 0xfe, 0xff, 0x7b, 0x98, 0xdb, 0xaa, 0x39, 0x72, 0xcc}} return a, nil } -var _idtablestakingAdminSet_open_access_node_slotsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xc1\x6a\xdb\x40\x10\xbd\xeb\x2b\x1e\x39\x14\x05\x82\xd4\x1e\x5a\x8a\x68\x1a\xd4\x2a\x05\x43\x48\x4b\xec\x1e\x7a\x5c\xaf\x46\xd6\x26\xf2\x8e\xd8\x1d\xd9\x31\xc6\xff\x5e\x76\x65\xb5\xa9\xe3\xce\x45\xb0\x9a\xf7\xe6\xcd\xbc\x67\xd6\x3d\x3b\xc1\xb7\x8e\xb7\xb3\x6a\xa1\x96\x1d\xcd\x45\x3d\x19\xbb\x42\xe3\x78\x8d\xb7\xcf\xb3\xea\xf6\x7e\x31\x5b\xfc\x5a\x94\x5f\xee\x6e\xcb\xaa\x7a\xb8\x9d\xcf\x93\x24\xcf\x73\x2c\x5a\xe3\x21\x4e\x59\xaf\xb4\x18\xb6\xf0\x24\x1e\xd2\x12\xb8\x27\x0b\xcb\x35\xc1\x77\x2c\x1e\x0d\x3b\x28\xad\xc9\xfb\xf8\xea\x23\xfc\xfb\x49\x93\x72\x14\xc1\x76\x58\x2f\xc9\x81\x9b\xe3\xbb\xb4\x4a\xe2\xcf\xc0\x1a\x91\xa4\x74\x0b\xea\x59\xb7\x57\x70\xb4\x52\xae\xee\x02\x35\x37\x68\x79\x8b\xb5\xb2\xbb\x71\x0c\x1e\xd9\x58\xaa\x61\x6c\x24\xee\x1d\x6d\x0c\x0f\x7e\x84\x66\xc7\x1d\x68\x17\xc9\x1d\x35\x8e\x7c\x4b\xf5\x0b\xf6\x24\x79\xb1\x5d\x1a\xc6\x97\x71\x89\x79\xd0\x55\xe0\xe7\xcc\xca\xbb\x0f\x97\xd8\x27\x09\x00\xe4\x39\xee\x58\xab\x0e\x1b\xe5\x4c\x38\xe4\xb8\x76\x60\x26\x47\x56\x13\x84\xa3\x8e\x59\x85\x78\x68\x94\xf5\xda\x58\xf0\xf2\x91\xb4\x44\x8a\x8e\x04\x2a\x3c\x3e\x50\x53\xe0\xcd\x6b\x53\xb2\x08\x19\xe7\xf5\x8e\x7a\xe5\x28\x55\x5a\x4b\x81\x72\x90\xb6\xd4\x9a\x07\x2b\x41\x11\x8e\x95\xe7\x58\xb2\x73\xbc\x3d\x27\x44\x9d\xce\x0f\xe5\xa9\x6b\xb2\x49\x04\xae\x83\x6f\x92\x8d\x1c\x9f\xfe\xab\xe8\x73\x1a\xd2\x52\x9c\x89\x51\x76\xfc\xc6\xb6\xb9\xb0\x53\x2b\xfa\xa1\xa4\xbd\xfc\x33\x30\xd4\xcd\x0d\x7a\x65\x8d\x4e\x2f\xbe\xf2\xd0\xd5\xb0\x2c\x93\xee\x7f\x54\xfb\x63\x36\xa3\xbe\x8b\x91\xe3\x30\x9e\x83\x9e\x49\x0f\x42\x93\x1b\xa1\x36\xca\xc5\xd0\x04\xbf\x2a\x13\x5d\x54\x6e\x57\x60\x1f\x9c\xfb\x38\x19\x78\xc0\x35\xf6\x87\xbf\xa8\xd7\x88\xcc\x58\x4f\x4e\xd2\x27\xda\x15\x78\x7f\x85\x93\x24\x5c\x26\xc9\xf9\xeb\x65\x9e\x24\xa4\xfc\x9e\x6b\x8a\x9d\xe9\xc4\xed\x8b\x33\x63\xa6\x75\x0e\xbf\x03\x00\x00\xff\xff\xc9\x09\xa3\xcf\x94\x03\x00\x00" +var _idtablestakingAdminSet_open_access_node_slotsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xd1\x6a\xdb\x40\x10\x7c\xd7\x57\x0c\x7e\x08\x32\x04\x89\x3e\xb4\x14\xd1\x34\xa4\x0d\x85\x40\x69\x4b\x9d\xf6\x7d\x7d\x5a\x59\x97\xc8\xb7\xe2\x6e\x65\xd7\x18\xff\x7b\xb9\x93\xd5\xa6\xb6\xbb\x2f\x82\xd3\xce\xec\xec\xce\xd8\x75\x2f\x5e\xf1\xa9\x93\xed\xc3\xfd\x23\x2d\x3b\x5e\x28\x3d\x5b\xb7\x42\xe3\x65\x8d\xd9\xf9\x8f\x59\x96\x95\x65\x89\xc7\xd6\x06\xa8\x27\x17\xc8\xa8\x15\x87\xc0\x1a\xa0\x2d\x43\x7a\x76\x70\x52\x33\x42\x27\x1a\xd0\x88\x07\x19\xc3\x21\xa4\xd7\x90\xe0\x5f\x4f\x9a\xc8\x73\x02\xbb\x61\xbd\x64\x0f\x69\x8e\xef\xda\x92\xa6\x9f\x91\x35\x21\x99\x4c\x0b\xee\xc5\xb4\xd7\xf0\xbc\x22\x5f\x77\x91\x5a\x1a\xb4\xb2\xc5\x9a\xdc\x6e\x1c\x83\x27\xb1\x8e\x6b\x58\x97\x88\x7b\xcf\x1b\x2b\x43\x18\xa1\xc5\x71\x07\xde\x25\x72\xcf\x8d\xe7\xd0\x72\xfd\x82\x3d\xcb\x5e\x6c\x97\xc7\xf1\x77\x69\x89\x45\xd4\x55\xe1\xc7\x83\xd3\x57\x6f\xe6\xd8\x67\x19\x00\x94\x25\x3e\x8b\xa1\x0e\x1b\xf2\x36\x5e\x6b\x5c\x3b\x32\xb3\x67\x67\x18\x2a\x49\xc7\xc3\x3d\xd2\x35\x71\x57\xaf\xad\x83\x2c\x9f\xd8\x68\xa2\xe8\x58\x41\xf1\xf1\x3b\x37\x15\xae\xce\x2f\x5f\x24\xc8\x38\xaf\xf7\xdc\x93\xe7\x9c\x8c\xd1\x0a\x34\x68\x9b\x7f\x10\xef\x65\xfb\x93\xba\x81\xe7\xb8\xba\x33\x46\x06\xa7\x51\x20\x8e\x55\x96\x58\xa6\x9e\x4b\xba\xe8\x54\x4e\xac\xc0\x5d\x53\x4c\x9a\x70\x13\x6d\xd4\x22\xa8\x78\x5a\x71\x31\x72\xbd\xfb\xaf\xd0\xf7\x79\x8c\x50\x75\x21\x5b\xc5\xf1\x9b\xda\x16\x23\xdd\x37\xd2\x76\xfe\x67\x70\xac\xdb\x5b\xf4\xe4\xac\xc9\x67\x1f\x65\xe8\x6a\x38\xd1\x49\xff\x3f\xea\xc3\x31\xb0\x49\xe7\x6c\xe4\x38\x8c\x57\xe2\x5f\x6c\x06\xe5\xc9\xa4\x58\x1b\xf2\x29\x4b\xd1\xc6\x7b\x9b\xcc\x25\xbf\xab\xb0\x8f\x86\xbe\x9d\x7c\x3d\xe0\x06\xfb\xc3\x5f\xd4\x39\xa2\xb0\x2e\xb0\xd7\xfc\x99\x77\x15\x5e\x5f\xe3\x24\x20\xf3\xec\xf2\x11\x8b\xc0\x1a\xb3\xff\x45\x6a\x4e\x8d\xf9\x44\x1d\xaa\x0b\x53\xa6\x6d\x0e\xbf\x03\x00\x00\xff\xff\x2c\x22\xfd\x94\xa8\x03\x00\x00" func idtablestakingAdminSet_open_access_node_slotsCdcBytes() ([]byte, error) { return bindataRead( @@ -2320,11 +2380,11 @@ func idtablestakingAdminSet_open_access_node_slotsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_open_access_node_slots.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8a, 0x92, 0x6b, 0x66, 0xe9, 0x67, 0xd6, 0x9f, 0x61, 0x14, 0xbe, 0xf1, 0x4, 0x20, 0x33, 0xcf, 0xff, 0xee, 0x16, 0x1e, 0x5, 0xdb, 0xed, 0x7c, 0xe0, 0x4e, 0x35, 0x18, 0x75, 0x70, 0x77, 0xa7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3e, 0x9e, 0xf6, 0xa, 0x8d, 0x4, 0x32, 0x57, 0x37, 0xcc, 0x87, 0x7f, 0x70, 0xba, 0x58, 0xeb, 0x64, 0xa4, 0x47, 0xbb, 0xd5, 0xf6, 0xdf, 0x5d, 0x55, 0x98, 0xcb, 0x43, 0x52, 0xa, 0x5a, 0x5}} return a, nil } -var _idtablestakingAdminSet_slot_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x4d\x6f\x23\x45\x10\xbd\xfb\x57\x3c\x72\x40\x5e\xed\xee\x18\x4b\x2c\x5a\x59\x98\x95\xc1\x41\xb2\x88\x10\x8a\xcd\x01\x21\x0e\xe5\x9e\x1a\x77\x93\x9e\xee\x51\x77\x8d\x1d\x2b\xca\x7f\x47\xdd\x33\xfe\x98\x60\xe8\x4b\x34\x71\xd5\x7b\xaf\xaa\x5e\x95\xa9\x1b\x1f\x04\x3f\x5b\x7f\x58\x2d\x37\xb4\xb5\xbc\x16\x7a\x32\x6e\x87\x2a\xf8\x1a\xdf\x3c\xaf\x96\xf7\xbf\x6e\x56\x9b\x3f\x36\x8b\x1f\x1f\xee\x17\xcb\xe5\xe3\xfd\x7a\x3d\x1a\x4d\x26\x13\x6c\xb4\x89\x90\x40\x2e\x92\x12\xe3\x1d\x22\x4b\x84\x68\x46\xb4\x5e\x60\x4d\x6d\x24\xa2\xf2\x01\x4c\x4a\xc3\xf9\x92\x21\xc7\x86\xd1\xa5\xa7\xa0\x87\x2e\xc6\x44\x10\x7e\x5f\x39\x99\x7e\x07\x0a\x81\x8e\x10\x4d\x02\xe5\x9d\x90\x71\x1d\x66\x86\x4b\x68\x39\xf9\x0d\xa2\x71\xf0\xa1\xe4\xd0\x8b\xfe\xf8\x6d\x81\x95\x24\xd8\x36\x72\x09\xf1\x68\x7c\xd3\x5a\x12\xce\xc9\x84\xd2\x64\xc5\x14\x7a\x26\x4d\x11\x4f\x7c\x8c\x88\xda\x54\xc2\x25\xde\x4f\x11\x7d\xf7\x9b\x68\x3e\x82\xac\xd9\xb9\x9c\x7c\x30\xa2\xb3\x20\x76\x6d\xcd\x81\x52\xf4\x59\x48\xec\x04\x4c\x3f\x7e\x3a\xb5\x88\x03\xe7\xf2\x9c\x17\xcd\x01\x35\x2b\x4d\xce\xc4\x1a\x07\x6d\x94\x06\x59\xeb\x0f\x5d\x93\x08\xb1\x61\x65\x2a\xc3\x65\xce\x75\x6d\xbd\xe5\x00\x5f\xe5\x4e\xbd\x6d\x64\xf0\x96\xd1\x70\x00\x37\x5e\xe9\x22\x67\xac\xaa\x4e\xf1\x85\x24\xd5\x45\xd8\x93\x6d\x39\x4d\xa7\xe7\x39\x03\x7c\x80\x11\x1c\x8c\xb5\xf0\x7b\x0e\xc1\x94\x5d\x7f\x0e\x9a\x84\xf7\x1c\x72\xfa\x96\x39\x4f\xf6\x54\xf8\x70\xe6\xc5\x68\x74\xf5\x35\xbe\xcc\x74\x86\x3f\xbb\x81\xfe\xf5\x0e\x2f\xa3\x11\x00\x4c\x26\x78\xf0\x8a\x2c\xf6\x14\x4c\x72\x5a\x2f\x27\x70\xc5\x81\x9d\xe2\x34\xa8\xd4\xd9\xd5\x12\xd9\x89\x58\x94\x75\x9a\xec\xf6\x6f\x56\x92\x21\x2c\x0b\x28\xfd\xf3\x91\xab\x19\xbe\xfe\xb7\x6b\x8b\x9c\xd2\xf1\x35\x81\x1b\x0a\x3c\x26\xa5\x64\x86\x45\x2b\x7a\xa1\x94\x6f\x9d\x24\x45\xe8\xdf\x64\x82\xad\x0f\xc1\x1f\x6e\x09\xa1\xb7\xfc\xe9\x45\xb6\x55\x71\x12\x81\x39\x12\x7c\xd1\x61\x7c\xff\x9f\x8a\x7e\x18\x27\x63\xcc\x6e\xec\x59\xd1\xff\xcd\x61\x6b\xf1\x81\x76\xfc\x1b\x89\x7e\x77\x26\x4c\xef\xcb\x17\x34\xe4\x8c\x1a\xdf\xfd\xe4\x5b\x9b\x1c\x27\x27\xdd\x03\xd5\xb1\x5f\xde\xac\xef\xae\xc3\x78\xed\xda\xc1\xcf\xac\x5a\xe1\x61\xed\x19\x14\xa6\xc2\x81\x51\xfa\x0c\xdb\xb9\xf0\x08\x7e\x26\x25\xf6\x08\xef\xae\x17\x3a\x7b\xee\x6c\xa0\x33\x94\xa9\xae\xf6\xb9\xb0\xec\x76\xa2\xf1\xd5\x1c\x9f\xae\xe8\xf2\x4c\xba\x22\xae\xaf\x06\x85\x5d\x5b\xb3\x13\xd4\x6d\xbc\xb0\xff\x1f\xeb\xdd\xa5\x37\x7d\x6d\xe9\xed\x29\x5c\x34\x2c\xcf\x0b\x3e\xc3\x4b\x32\xe2\xe7\x59\x7f\x60\x5e\x31\xc7\xcb\xeb\x20\xeb\x72\x0d\x7e\xe1\x63\x17\xf7\x19\x73\x4c\x2f\xd8\xc9\xa8\x67\xec\x74\x6d\xae\x8e\xd7\xb0\xc0\x1b\x0a\x0a\xe3\x22\x07\x19\x3f\x25\xf0\x01\xd7\x87\x4b\xf8\x70\xdc\x83\x28\xcc\xdf\x7c\xbf\xc7\xf4\x56\x03\x06\xc6\x2c\x22\xcb\xfa\x2c\x72\xb0\x98\x37\x24\x9e\x8c\xf2\xfa\x4f\x00\x00\x00\xff\xff\x2a\x66\x95\xb5\x0f\x06\x00\x00" +var _idtablestakingAdminSet_slot_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\xc1\x8e\xdb\x36\x10\xbd\xfb\x2b\x5e\x7d\x08\xbc\x48\x22\xd7\x40\x53\x04\x46\xdd\x20\xed\xa2\x80\xd1\x1c\x8a\x6e\xda\x4b\xd1\xc3\x98\x1a\x99\xec\x52\xa4\x40\x8e\xec\x18\x8b\xfd\xf7\x82\xa4\x2d\x59\x1b\xb7\xbc\x18\x32\x67\xde\xbc\x79\xf3\x86\xa6\xed\x7c\x10\xfc\x62\xfd\x71\x7b\xff\x99\x76\x96\x1f\x84\x1e\x8d\xdb\xa3\x09\xbe\xc5\xfc\xeb\x8b\xf9\x6c\xb6\x5c\x2e\xf1\x59\x9b\x08\x09\xe4\x22\x29\x31\xde\x21\xb2\x44\x88\x66\x44\xeb\x05\xd6\xb4\x46\x22\x1a\x1f\xc0\xa4\x34\x9c\xaf\x19\x72\xea\x18\x25\x3d\x05\x7d\x2a\x31\x26\x82\xf0\xc7\xd6\xc9\xea\x7b\x50\x08\x74\x82\x68\x12\x28\xef\x84\x8c\x2b\x98\x19\x2e\xa1\xe5\xe4\x17\x88\xc6\xc1\x87\x9a\x43\xa1\xfc\xed\xdb\xef\x2a\x6c\x25\xc1\xf6\x91\x6b\x88\x47\xe7\xbb\xde\x92\x70\x4e\x26\xd4\x26\x33\xa6\x70\xae\xa4\x29\xe2\x91\x4f\x11\x51\x9b\x46\xb8\xc6\xeb\x15\xa2\x2f\x77\xa2\xf9\x04\xb2\x66\xef\x72\xf2\xd1\x88\xce\x84\xd8\xf5\x2d\x07\x4a\xd1\x03\x91\x58\x08\xac\xde\xbe\xbb\x48\xc4\x81\x73\x7b\xce\x8b\xe6\x80\x96\x95\x26\x67\x62\x8b\xa3\x36\x4a\x83\xac\xf5\xc7\x22\x12\x21\x76\xac\x4c\x63\xb8\xce\xb9\xae\x6f\x77\x1c\xe0\x9b\xac\xd4\x4b\x21\x83\xb7\x8c\x8e\x03\xb8\xf3\x4a\x57\x39\x63\xdb\x14\xc6\x63\x91\xd4\x17\xe1\x40\xb6\xe7\x34\x9d\x73\x9d\x01\xe0\x0d\x8c\xe0\x68\xac\x85\x3f\x70\x08\xa6\x2e\xfa\x1c\x35\x09\x1f\x38\xe4\xf4\x1d\x73\x9e\xec\xa5\xf1\xe9\xcc\xab\xd9\xec\xea\x6b\x31\xce\x74\x8d\xbf\xca\x40\xff\xbe\xc3\xd3\x6c\x06\x00\xcb\x25\x3e\x79\x45\x16\x07\x0a\x26\xd9\xe9\x4c\x27\x70\xc3\x81\x9d\xe2\x34\xa8\xa4\xec\xf6\x1e\xd9\x6e\xf8\x58\xb7\x69\xb2\xbb\x7f\x58\x49\x86\xb0\x2c\xa0\xf4\xe7\xef\xdc\xac\xf1\xea\x6b\x6b\x56\x39\xa5\xd4\xeb\x02\x77\x14\x78\x41\x4a\xc9\x1a\xd4\x8b\x5e\xfc\xe4\x43\xf0\xc7\x3f\x93\x1e\x77\x78\xf5\x51\x29\xdf\x3b\x49\x04\x71\x3e\xcb\x25\x76\x39\xe6\x16\x2f\x7a\x49\x27\x9d\xc8\xb6\xa9\x2e\x9c\xb0\x41\xaa\x56\x45\xf1\x81\xf6\x5c\x15\xac\x1f\xfe\x93\xe8\x8f\x8b\xe4\x97\xf5\x8d\xe5\xab\xce\xbf\x39\xec\xa1\xc0\xfd\x46\xa2\xef\x86\xc2\xe9\x7c\xf8\x80\x8e\x9c\x51\x8b\xf9\xcf\xbe\xb7\xc9\x88\x72\xe1\x3f\x61\x1f\xcf\x1b\x9d\x79\xce\x0b\xc6\x73\x51\x89\xbf\xb0\xea\x85\xa7\x1a\x64\x50\x98\x06\x47\x46\xed\x33\x6c\x31\xe7\x09\xfc\x85\x94\xd8\x13\xbc\xbb\xde\xf3\x6c\xc5\xc1\x57\x03\x94\x69\xae\xd6\xbc\xb2\xec\xf6\xa2\xf1\xcd\x06\xef\xae\xca\xe5\x51\x95\x26\xae\x1f\x13\x0a\xfb\xbe\x65\x27\x68\xfb\x38\x56\xff\xbf\xaa\xf3\x51\x9b\x73\x6f\xe9\x1c\x28\x8c\x1c\xee\x87\xbd\x5f\xe3\x29\xf9\xf3\xfd\xfa\xfc\xee\x3c\x63\x83\xa7\xe7\x49\xd6\xf8\x48\xfc\xca\xa7\x12\xf7\x1e\x1b\xac\x46\xec\xe4\xdf\x01\x3b\x3d\x42\x57\x6f\xda\xb4\xc1\x1b\x0c\x2a\xe3\x22\x07\x59\x3c\x26\xf0\x49\xad\x37\x63\xf8\x74\xdc\x93\x28\x6c\x5e\x7c\xbf\xc6\xea\x96\x00\x13\x83\x56\x91\xe5\x61\x20\x39\xd9\xd7\x1b\x14\x2f\x46\x79\xfe\x37\x00\x00\xff\xff\xb3\xaf\x59\xc4\x24\x06\x00\x00" func idtablestakingAdminSet_slot_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -2340,11 +2400,11 @@ func idtablestakingAdminSet_slot_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/set_slot_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x21, 0x71, 0xda, 0x79, 0x1d, 0x92, 0xc5, 0x37, 0x9e, 0x88, 0x17, 0x33, 0x62, 0x8d, 0xf5, 0x30, 0x3e, 0xb6, 0x8f, 0x45, 0x7f, 0x24, 0x43, 0x79, 0x7b, 0xb4, 0x85, 0xa8, 0x41, 0xc8, 0xed, 0x7e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0xf1, 0xe8, 0x24, 0xbe, 0xac, 0x4a, 0x5d, 0x51, 0xdf, 0xdb, 0x3, 0x15, 0xe4, 0xb, 0xaa, 0x9e, 0x25, 0x75, 0x49, 0xeb, 0x51, 0x93, 0xbb, 0x48, 0x33, 0xbf, 0x80, 0x61, 0x29, 0xfd, 0x66}} return a, nil } -var _idtablestakingAdminStart_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xc1\xea\xda\x40\x10\x87\xef\x79\x8a\x1f\x1e\x4a\xbc\x24\x3d\x4b\x5b\x49\x1b\x0b\x01\x29\xc5\xe4\xd2\xe3\xb8\x99\x98\xd4\x75\x37\xec\x4e\xaa\x45\x7c\xf7\xb2\x89\x29\xda\xfa\x9f\xcb\xc2\x32\xf3\xcd\x37\x33\xdd\xa9\xb7\x4e\xf0\x55\xdb\x73\x91\x57\xb4\xd7\x5c\x0a\x1d\x3b\x73\x40\xe3\xec\x09\xef\x2f\x45\xbe\xf9\x56\x15\xd5\x8f\x2a\xfb\xbc\xdd\x64\x79\xbe\xdb\x94\x65\x14\xa5\x29\xaa\xb6\xf3\x10\x47\xc6\x93\x92\xce\x1a\xf4\xf4\xdb\xc3\xf1\x99\x5c\xed\x21\x16\xa4\x35\xa4\x65\x78\xa1\x23\xd7\x30\xb6\x66\x1f\x45\x8f\x15\xd7\x28\x02\x80\x34\xc5\xd6\x2a\xd2\xf8\x45\xae\x0b\x0a\x68\xac\x03\xc1\x71\xc3\x8e\x8d\xe2\x40\x0b\xa4\x22\xc7\xa8\x88\xac\x3e\x75\x06\x76\xff\x93\x95\x8c\x08\xcd\x02\x0a\x9f\x3b\x6e\x56\x78\xf7\xff\x38\xc9\x58\x32\xf5\xeb\x1d\xf7\xe4\x38\x26\xa5\x64\x85\x6c\x90\x36\x53\xca\x0e\x46\x96\xb8\x8e\x09\x77\xa9\xbd\x75\xce\x9e\x5f\x89\xd0\xbf\xfd\x43\x78\xd6\x4d\x32\x4b\xe0\x23\x02\x3e\x99\x18\x1f\xde\x34\xfa\x14\x87\x3d\xaf\x5e\x1c\x20\xb9\xbf\x63\x5a\x29\xd6\xd1\x81\xbf\x93\xb4\xcb\xbf\x0d\x43\xac\xd7\xe8\xc9\x74\x2a\x5e\x7c\xb1\x83\x0e\x5b\x96\xd9\xfb\xc9\xda\xdf\xaf\x3a\xfa\x2d\x26\xc6\x6d\x5a\x07\x5f\x58\x0d\xc2\x0f\xb3\x3f\x4d\x92\x78\x21\x27\xb3\xcc\x30\x5e\x2e\x9e\x01\xb7\x3f\x01\x00\x00\xff\xff\xeb\x9d\x33\x87\x40\x02\x00\x00" +var _idtablestakingAdminStart_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x31\x6f\xc2\x30\x10\x85\xf7\xfc\x8a\xa7\x0c\x28\x2c\xc9\x8e\xda\x22\x5a\x54\x09\xa9\x43\x55\x50\xf7\xc3\xb9\x90\x14\x63\x47\xf6\xa5\xb4\x42\xfc\xf7\xca\x0e\xa9\xa0\xd0\x5b\x2c\xd9\x77\xef\x7d\x7e\xd7\xec\x5a\xeb\x04\xcf\xda\xee\x17\xf3\x15\xad\x35\x2f\x85\xb6\x8d\xd9\xa0\x72\x76\x87\xf4\xfa\x21\x4d\x92\xa2\xc0\xaa\x6e\x3c\xc4\x91\xf1\xa4\xa4\xb1\x06\x2d\x7d\x7b\x38\xde\x93\x2b\x3d\xc4\x82\xb4\x86\xd4\x0c\x2f\xb4\xe5\x12\xc6\x96\xec\x93\xe4\x7c\xe2\x90\x24\x00\x50\x14\x78\xb1\x8a\x34\x3e\xc9\x35\xc1\x07\x95\x75\x20\x38\xae\xd8\xb1\x51\x1c\xd4\x82\xd2\x62\x8e\xc8\x81\x59\xb9\x6b\x0c\xec\xfa\x83\x95\x44\x09\xcd\x02\x0a\x97\x6f\x5c\x4d\x30\xba\x66\xce\xe3\x48\xef\xd7\x3a\x6e\xc9\x71\x46\x4a\xc9\x04\xd4\x49\x9d\x3d\x5a\xe7\xec\xfe\x9d\x74\xc7\x63\x8c\x66\x4a\xd9\xce\xc8\x18\x87\xd8\x7f\x62\x5c\xc7\x9e\x5b\x5c\xf4\x17\x27\x94\x67\x5d\xe5\x03\x13\xee\x11\xdc\x72\x2f\xd6\xd1\x86\xf3\x5e\xeb\xee\x5f\xd0\x87\x2c\x84\x3f\xb9\xb1\x95\xfc\x74\xc6\xb6\x65\x2f\xf7\x4a\x52\x8f\x7f\x8d\x43\x4d\xa7\x68\xc9\x34\x2a\x4b\x9f\x6c\xa7\x43\xf8\x32\xf0\x5f\xd0\xfb\xd3\xaa\x23\x67\xda\x6b\x1c\xfb\x94\xf8\x8b\x55\x27\x7c\x96\xc1\xc5\x8f\x72\x2f\xe4\x64\x80\xe9\xe2\x42\xb3\x41\xe0\xf8\x13\x00\x00\xff\xff\x18\xdb\x97\xa0\x55\x02\x00\x00" func idtablestakingAdminStart_stakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2360,11 +2420,11 @@ func idtablestakingAdminStart_stakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/start_staking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc0, 0x1d, 0x9b, 0xaf, 0xf6, 0x47, 0xd8, 0xb, 0x3a, 0x65, 0x23, 0x93, 0x9b, 0xb7, 0x9, 0x9f, 0xd1, 0x20, 0x8d, 0x22, 0xc0, 0xe4, 0xc8, 0x10, 0x6b, 0xf7, 0x84, 0x52, 0xb9, 0xf6, 0xe2, 0x24}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0xae, 0x60, 0x65, 0xba, 0x40, 0xc1, 0x30, 0x64, 0xff, 0xc4, 0x97, 0x57, 0xf8, 0x6d, 0x7d, 0x89, 0xc3, 0x8c, 0xef, 0x8b, 0xca, 0x84, 0xfb, 0x5c, 0xb5, 0x0, 0x2e, 0xf, 0xce, 0xda, 0x60}} return a, nil } -var _idtablestakingAdminTransfer_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x91\xcf\x4f\xea\x40\x10\xc7\xef\xfb\x57\xcc\xe9\xbd\x36\xe1\xb5\xef\x4c\xd0\x58\x2d\x26\x24\xc4\x18\xdb\x8b\xc7\xa1\x0c\x65\xc3\xb2\xb3\xd9\x0e\x45\x42\xf8\xdf\x4d\x4b\xad\x88\x78\xc0\xeb\xce\xce\xf7\xc7\x7c\xf4\xda\xb1\x17\x78\x34\xbc\x9d\xa4\x39\xce\x0c\x65\x82\x2b\x6d\x4b\x58\x78\x5e\xc3\xff\xb7\x49\x3a\x7e\xca\x27\xf9\x6b\x9e\xdc\x4f\xc7\x49\x9a\xbe\x8c\xb3\x4c\x29\xf1\x68\x2b\x2c\x44\xb3\x85\xbd\x02\x70\x9e\x1c\x7a\x0a\x78\x6b\xc9\x0f\x21\xd9\xc8\x32\x29\x0a\xde\x58\x19\x80\xa7\x82\x74\x7d\xf6\x1c\xc2\x5e\x29\x00\x80\x38\x86\xa9\xb6\x2b\x90\x25\x41\xd5\x59\xe3\x7c\xad\x2d\x14\xe8\x70\xa6\x8d\x96\x1d\x08\x03\x82\xf3\xba\x46\x21\x70\x06\x0b\x6a\x77\x5b\xb7\xc8\x68\xbb\x1a\xfd\xf9\xde\x20\x4a\x1a\x99\xdb\x20\xee\x16\xe3\x85\xe1\x6d\x37\x6b\x47\x03\x10\xf4\x25\xc9\xf0\x42\xfd\xe8\xf4\x63\x26\xec\xb1\xa4\x67\x94\x65\xd8\x1a\x1b\x12\x38\x57\x83\x9b\x2e\x4f\x49\xf2\xd0\x47\xff\x55\xb0\x50\xf5\x2e\x27\x47\x18\xfd\xeb\x4f\x19\x19\xc6\xf9\xe8\xee\x67\xe9\x06\xde\x75\xb5\x8e\x8e\x5c\x06\x9f\x8e\x4d\x93\x7c\xe7\x28\x08\xbb\xf1\x9c\x2a\xf1\xbc\x3b\x09\xd5\x33\xcc\xb0\xa6\x96\xe1\x57\x6a\xcd\xcb\x47\xe8\xbf\x15\xe0\x11\x3e\x54\x47\xe7\x76\xb9\xef\x54\x61\x4d\xc1\x05\x46\x7c\x2d\x9f\x83\x3a\x28\x50\xef\x01\x00\x00\xff\xff\xd8\xed\xd8\x42\xda\x02\x00\x00" +var _idtablestakingAdminTransfer_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\x41\x6b\xc2\x40\x10\x85\xef\xfb\x2b\x1e\x1e\x6c\x02\x36\xde\xc5\x96\x4a\x4b\x4b\x6f\x05\xfd\x03\x63\x1c\xe3\xd2\x75\x27\xec\x8e\x8a\x88\xff\xbd\x74\x8d\x31\x54\x4b\xe9\x75\xe7\xed\xbc\xef\xcd\xb3\xeb\x5a\x82\xe2\xd5\xc9\xee\xfd\x65\x46\x73\xc7\x53\xa5\x4f\xeb\x2b\x2c\x83\xac\xd1\xbb\x1e\xf4\x8c\xd1\x40\x3e\x52\xa9\x56\x3c\x0e\x06\xa8\x03\xd7\x14\x38\x93\x9d\xe7\x30\x02\x6d\x74\x95\x3d\x53\x4d\x73\xeb\xac\x5a\x8e\x39\xfa\x93\xb2\x94\x8d\xd7\x01\x02\x97\x6c\xb7\xad\x6c\xaa\x12\xa8\xe2\x8b\x22\xc7\xc1\x18\x00\x18\x0e\xf1\xc6\x0a\x42\x6c\x80\x68\xb1\xb6\x1e\xe5\x79\xef\x3e\xa9\x1c\x2b\x96\x4e\x76\x0d\xdc\x24\x69\x1e\x90\x48\x8a\xb2\xc3\x50\xc4\x93\x53\x61\x63\xdc\xf0\xb8\x7f\x1d\xac\x48\x9f\x1f\xb3\x1b\x93\xee\xf6\x86\xf8\x83\x74\x95\x9b\x96\xe1\x82\x85\xf1\x7d\x1b\xb2\x35\x75\x42\x8b\xf1\xd3\xef\x9e\xdf\xc7\x1e\xdd\x68\xe1\x2f\x67\xa9\xb2\x8b\x73\x51\xb1\xce\xf6\x35\x67\x79\x33\x5e\x70\xd4\x20\xfb\xee\xcd\xce\xa7\x9d\xd2\x96\xa1\x2b\xee\x82\xab\xa4\x97\x33\xfc\x5d\x04\x9d\x3a\x41\x13\x23\x7d\xbe\xca\x16\x69\xcb\xd9\xcf\x0e\x06\x50\xf9\x5f\x20\xe0\x68\x8e\x06\xe6\x2b\x00\x00\xff\xff\x7a\xe3\x3f\x16\x92\x02\x00\x00" func idtablestakingAdminTransfer_adminCdcBytes() ([]byte, error) { return bindataRead( @@ -2380,11 +2440,11 @@ func idtablestakingAdminTransfer_adminCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/transfer_admin.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe6, 0xd2, 0x4c, 0xe2, 0xed, 0x2d, 0xe4, 0x8c, 0x11, 0xed, 0x41, 0x67, 0xc9, 0xf2, 0x86, 0xbe, 0x14, 0x7c, 0x66, 0x91, 0x5e, 0x28, 0x28, 0x97, 0xc5, 0x23, 0x5b, 0xc6, 0xcb, 0x36, 0x2e, 0xdf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0x0, 0xac, 0x5d, 0xe7, 0x0, 0x5b, 0x3b, 0x2d, 0x66, 0xa7, 0xb7, 0x92, 0xd3, 0x4b, 0x2b, 0xe1, 0xd1, 0xb3, 0x8, 0xa, 0x34, 0x56, 0x6b, 0x24, 0x16, 0xd3, 0xe9, 0xa4, 0xf5, 0x60, 0x21}} return a, nil } -var _idtablestakingAdminTransfer_fees_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\xe9\xa9\x09\x24\x76\xcf\xc1\x94\x1a\x62\x9f\x02\x85\xfa\xd0\xf3\x56\x59\x27\x22\xb6\x24\xa4\x8d\xd3\x52\xf2\xef\xc5\x6a\x6c\x48\xa1\x3a\xae\x66\x86\xf7\x4c\xef\x5d\x10\xd4\x9d\xbb\xd4\xcc\x11\x6d\x70\x3d\x9e\x3e\xeb\xdd\xeb\x7b\x5d\x55\x4d\xb9\xdd\xbe\x55\x4d\xa3\x94\x04\xb2\x91\xb4\x18\x67\xf1\xad\x14\x00\xf8\xc0\x9e\x02\x2f\xdc\xc5\x72\xd8\xa0\x3c\xcb\xb1\xd4\xda\x9d\xad\xac\x10\x58\xb3\x19\xfe\x9c\x97\x53\x73\x7c\x79\x8e\x9d\xb1\x27\xc8\x91\x11\x85\x4e\xc6\x1e\x40\xfb\xde\x58\x68\xf2\xf4\x61\x3a\x23\x5f\x10\x07\x82\x0f\x66\x20\x61\xf8\x8e\x34\xcf\xfd\x8e\x05\x2d\x73\x2c\x53\xa7\x58\x23\x61\x64\x9d\xa3\x7d\xf1\x32\xe9\x64\xe9\xd7\x44\x09\x24\x2e\x3c\x2f\x46\xbb\x0d\xf2\x28\x2e\xd0\x81\xf3\xf6\x16\x4b\xa9\xe5\xc3\x1d\x5c\x43\x03\x27\xb8\x7b\x9c\xf1\x32\xc9\x3d\x46\xd0\xaf\x19\x6e\x8b\xf3\xc0\x14\xc9\x22\x0d\xbc\x28\xd6\x33\xe9\x0a\xe2\xfe\x25\x48\xf5\xab\x52\x57\x05\xf5\x13\x00\x00\xff\xff\x1e\x04\x07\xfe\x99\x01\x00\x00" +var _idtablestakingAdminTransfer_fees_adminCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x31\x6b\xc3\x30\x10\x46\x77\xfd\x8a\xaf\x19\x5a\x07\x92\x78\x0f\xa1\x34\x4b\xa6\x6c\x85\xee\x57\xe5\x9c\x88\xc8\x3a\x21\x9d\x1d\x4a\xc9\x7f\x2f\x56\x6d\x43\x0a\xf5\x66\xf1\xee\xe3\x3d\xd7\x46\x49\x8a\x83\x97\xdb\x81\x39\xa3\x49\xd2\x62\x31\xfd\x2e\x8c\xd1\x44\x21\x93\x55\x27\x01\xdf\xc6\x00\x40\x4c\x1c\x29\x71\x25\xb7\xc0\x69\x0b\xea\xf4\x52\x1d\x85\x4e\x1f\xe4\x3b\x5e\xe2\x79\x6f\xad\x74\x41\x57\x48\x6c\xd9\xf5\x33\xf3\x4e\x3d\xff\x61\x96\xd3\xe6\xf0\xd5\x35\x8e\x2e\x5c\xa1\x17\x46\x56\xba\xba\x70\x06\x9d\x5a\x17\x60\x29\xd2\xa7\xf3\x4e\xbf\xa0\x02\x42\x4c\xae\x27\x65\x44\x4f\x96\xe7\x7b\xcf\x8a\x86\x39\xef\xcb\xcd\x6e\x8d\x22\xb8\xc9\x2a\x89\xce\xbc\xf1\x42\xa7\xdd\xdb\x94\xb6\x29\x94\xcb\x9a\x48\x25\xbd\x56\x43\xf8\x16\xf5\x08\xd7\xcd\x88\x15\x6a\xf9\xf4\x20\x39\x74\x14\xc9\x47\xad\xe1\x65\x2a\x7e\xc9\xa0\xdf\x42\x8c\x8b\xf3\xc0\x84\xcc\x5e\x99\x7a\xae\x76\xeb\xd9\x7c\x05\x95\x7f\x4d\xca\xcc\xdd\x98\xbb\x81\xf9\x09\x00\x00\xff\xff\x99\xa2\xe7\xfc\xbc\x01\x00\x00" func idtablestakingAdminTransfer_fees_adminCdcBytes() ([]byte, error) { return bindataRead( @@ -2400,11 +2460,11 @@ func idtablestakingAdminTransfer_fees_adminCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/transfer_fees_admin.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0xfe, 0x7f, 0xe5, 0x76, 0xf2, 0x7c, 0x89, 0xf0, 0xca, 0xa8, 0xbe, 0x89, 0x31, 0x37, 0xfe, 0x76, 0x6e, 0xe, 0x60, 0x1a, 0x5a, 0x20, 0x2d, 0x47, 0x78, 0x63, 0x90, 0x53, 0xe7, 0x67, 0xa7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xc1, 0xdf, 0xbd, 0x8e, 0xdc, 0xe3, 0xd0, 0x75, 0x45, 0x73, 0x94, 0x3, 0xfc, 0x88, 0x86, 0xe4, 0xe3, 0x76, 0x0, 0x2f, 0x71, 0xde, 0x33, 0x80, 0x84, 0xa8, 0xfe, 0xdd, 0xbc, 0xa6, 0x4d}} return a, nil } -var _idtablestakingAdminTransfer_minter_deployCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4d\x4f\xe3\x3c\x10\xbe\xe7\x57\x3c\xe2\xf0\x2a\xd5\x5b\x52\x90\x00\xa1\x88\x2c\xea\x16\x90\x56\xb0\x45\xe2\x43\x7b\x40\x1c\xdc\x64\xda\x58\x24\x76\x65\x4f\x28\x51\xd5\xff\xbe\x72\x9c\xa4\x85\xed\x4a\x9b\x83\x5b\xcf\xc7\x33\x33\x8f\x67\x46\x96\x4b\x6d\x18\x13\x53\x2f\x59\x07\xed\xed\xa6\xd0\xab\x27\xfd\x46\x0a\x73\xa3\x4b\x1c\x7d\xdc\xdc\xdd\xff\x7a\xba\xbf\xbd\x9e\x8e\xaf\xae\x1e\xae\x1f\x1f\x83\x80\x8d\x50\x56\xa4\x2c\xb5\x0a\x97\xd5\xac\x90\xe9\x2d\xd5\x36\xc6\x8b\x47\x8a\x6e\xa9\xbe\x93\x96\xaf\x15\x9b\xfa\x75\x88\x54\x2b\x36\x22\xe5\xa9\x28\x29\xc6\x23\x1b\xa9\x16\x4e\x9a\xed\xdc\x0c\xad\x84\xc9\xc6\xa5\xae\x14\xc7\x78\xbe\x91\x1f\x67\x27\x9d\x74\x52\xed\x88\x52\xa1\x32\x99\x09\xa6\xa9\xce\xe8\x4e\x96\x92\x5d\xe0\xe7\x1f\x8a\xcf\x4e\x5e\x07\x58\x07\x01\xb0\x34\xb4\x14\x86\x42\x2b\x17\x8a\x4c\x8c\x71\xc5\xf9\x38\x4d\x1d\x76\x6b\x01\x14\xc4\x10\x69\xca\x48\x76\xd5\xe1\x52\xd4\xce\xc3\x7b\x0e\x1a\xcb\xe6\x98\x6b\x83\x37\xaa\x21\x15\xb6\x15\x63\xdd\xe8\xdc\xe7\xa0\xa2\x37\xaa\x6d\x24\xb2\x6c\x4b\x4a\xec\x9c\xa2\xfe\x3a\x44\x2e\x6c\x3e\x2e\x16\xda\x48\xce\x4b\xaf\xfd\x24\x1a\x62\x45\x72\x91\xb3\x57\xf9\xff\x3e\x8d\x8d\xcf\x7b\x34\x1a\xe1\xbb\x36\x46\xaf\x20\x60\x68\x4e\x86\x54\x4a\x60\x0d\xce\xa9\x79\x3c\xf8\xd7\x1b\x67\xa5\x54\x2e\x5f\x27\x17\xbe\x3c\x58\xd6\x46\x2c\xa8\x67\x60\xde\x3d\xb6\xb7\x4e\xda\xc2\xa3\x59\x13\xe1\xe2\xbf\xbe\x19\xa2\xc6\x40\x5a\x36\x82\xb5\xf9\x16\xba\xde\x88\x31\x6a\xf1\x46\x9f\x71\x06\x3d\x2d\x97\x97\x58\x0a\x25\xd3\xf0\x60\xa2\xab\x22\x83\xd2\x8c\xd9\xbf\x67\x6f\xc8\xea\xca\xa4\x74\x30\xd8\x16\x3f\x31\x24\x98\x20\xb6\xb9\xff\x94\x8a\xc9\x3c\xb4\xb6\x7f\xd6\xe6\xf5\xb8\x38\xfc\x52\x6e\x94\x36\x50\x53\x5a\x79\x8b\x50\x14\x85\x5e\x51\xdf\x85\xc7\x47\xdd\x17\x1d\xb5\x09\x34\xcf\x6c\xc5\x3b\x85\x17\x87\x5f\xf0\x87\x60\xbd\x8f\x11\xaf\xed\xfc\xad\x25\xc3\xe1\x9e\x26\x8e\x0a\x52\x0b\xce\x91\x24\x38\x1d\xf6\xfc\x01\x28\xc9\x5a\xb1\xa0\x18\x07\x93\xce\x0b\xce\x0d\x8d\x1f\x0a\x69\x19\xb3\x8a\x91\x8b\x77\xc7\x4a\x0b\xa3\xe7\x38\xed\x58\x73\x64\xec\x89\x78\x25\x53\x8e\xb1\x76\xa3\x73\x1e\xc3\x4f\xd0\x06\x09\xd6\x9b\xc6\xeb\x5d\x18\x18\x5d\x90\x57\x9d\x23\xc1\x71\xd0\x8f\x42\xd1\xc4\x96\x6a\x1f\x6e\x3f\x15\x7f\x89\xf9\xe2\x50\x5f\x91\x78\x90\xd6\xd6\xc9\x90\xf8\x9f\xff\x71\xbc\xdb\xf1\x0d\xe7\xdd\x0e\xf1\xf3\xa5\x9a\x4d\xb2\xbb\x57\xba\x7d\xe2\xce\xa8\xe2\xf9\xf9\xe7\x95\xb2\xb3\x4a\xf6\xae\x10\x97\x97\xeb\xda\x4d\x10\x6c\x02\x04\xbf\x03\x00\x00\xff\xff\x77\x67\xa8\xaf\x19\x05\x00\x00" +var _idtablestakingAdminTransfer_minter_deployCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x4f\xdb\x4e\x10\xbd\xfb\x53\x3c\xe5\x80\x1c\xfd\x82\x03\x12\x20\x64\xe1\x1f\x4a\xd3\x22\x55\x50\x0e\xa5\xf4\x82\x38\x6c\xec\x49\xbc\xc2\xde\xb5\x76\xc7\x49\xad\x28\xdf\xbd\x5a\xaf\xed\x04\x9a\x4a\xf5\x61\x93\x9d\x3f\x6f\x66\xde\xce\x8c\x2c\x2b\x6d\x18\x73\xd3\x54\xac\x83\xee\x76\x57\xe8\xcd\x0f\xfd\x46\x0a\x4b\xa3\x4b\x8c\x86\xfb\x28\x08\xd8\x08\x65\x45\xca\x52\xab\xb0\xaa\x17\x85\x4c\xef\xa9\xb1\x31\x5e\x3c\x44\x74\x4f\xcd\x83\xb4\xfc\x45\xb1\x69\x5e\x27\x48\xb5\x62\x23\x52\x7e\x14\x25\xc5\x78\x62\x23\xd5\xca\x49\xb3\x83\x9b\xa1\x8d\x30\xd9\xac\xd4\xb5\xe2\x18\xcf\x77\xf2\xd7\xd5\x45\x2f\x9d\xd7\x07\xa2\x54\xa8\x4c\x66\x82\xe9\x51\x67\xf4\x20\x4b\xc9\x2e\xf0\xf3\x57\xc5\x57\x17\xaf\x63\x6c\x83\x00\xa8\x0c\x55\xc2\x50\x68\xe5\x4a\x91\x89\x21\x6a\xce\xc3\x59\x96\xdd\x53\x33\xc1\x93\x58\xd3\x4f\x51\xd4\x34\xc1\x27\x6d\x8c\xde\xb4\x97\x31\x4e\x66\x69\xea\xa2\x77\x18\x40\x41\x0c\x91\xa6\x8c\x04\x9d\x2a\xac\x44\xe3\xf0\x3c\xee\xb8\xb5\x6a\x8f\xa5\x36\x78\xa3\x06\x52\x61\xcf\x07\xb6\xad\xce\x7d\x0e\x26\x7a\xa3\xc6\x46\x22\xcb\xf6\x94\xc5\xce\x29\x1a\xae\x13\xe4\xc2\xe6\xb3\x62\xa5\x8d\xe4\xbc\xf4\xda\x77\xa2\x09\x36\x24\x57\x39\x7b\x95\xff\xef\xd3\xd8\xf9\x9c\xa7\xd3\x69\x57\x15\x04\x0c\x2d\xc9\x90\x4a\x09\xac\xc1\x39\xb5\x6f\x0a\xff\xa8\xb3\xac\x94\xca\xe5\xeb\xe4\xc2\x97\x07\xcb\xda\x88\x15\x0d\xd5\x2f\xfb\x37\xf7\xd6\x49\x57\x78\xd4\xd9\x45\x8b\x36\xd2\xcd\xc9\xd0\x1b\x51\x6b\x28\x2d\x1b\xc1\xda\xfc\x1f\xba\xd6\x89\x31\xed\xec\xa7\xef\xf1\xc6\x03\x3d\xb7\xb7\xa8\x84\x92\x69\x38\x9a\xeb\xba\xc8\xa0\x34\x63\xf1\xef\x55\x18\xb2\xba\x36\x29\x8d\xc6\x7b\x12\xe6\x86\x04\x13\xc4\xbe\x86\x6f\x52\x31\x99\xef\x9d\xed\x9f\x35\x7a\x3d\x6e\x4e\x3f\x94\x1d\xa5\x2d\xd4\x23\x6d\xbc\x45\x28\x8a\x42\x6f\x68\xe8\xd5\xf3\xb3\xfe\x8b\xce\xba\x04\xda\xe7\xee\x49\xb2\x62\x4d\xe1\xcd\xe9\x87\x38\x13\xb0\x3e\xc6\x8c\xd7\xf6\x38\xd6\x92\xe1\xf0\x48\xcb\x47\x05\xa9\x15\xe7\x48\x12\x5c\x4e\x06\x1e\x01\x94\x64\xad\x58\x51\x8c\xd1\xbc\xf7\x82\x73\x43\xeb\x87\x42\x5a\xc6\xa2\x66\xe4\x62\xed\xd8\xe9\x60\xf4\x12\x97\x3d\x7b\x8e\x94\x23\x11\x3f\xcb\x94\x63\x6c\xdd\xa0\x5d\xc7\xf0\xf3\xb6\x43\x82\xed\xae\xf5\x5a\x0b\x03\xa3\x0b\xf2\xaa\x6b\x24\x38\x0f\x86\xd1\x28\xda\xd8\x52\x1d\xc3\x1d\xa6\xe4\x2f\x31\x5f\x1c\xea\x2b\x12\x0f\xd2\xd9\x3a\x19\x12\xff\xf3\x1f\xce\x0f\x27\xa0\xe5\xbe\xdf\x38\x7e\xde\x54\xbb\x77\x0e\xb7\x50\xbf\x7d\xdc\x19\xd5\xbc\xbc\x7e\xbf\x80\x0e\x16\xcf\xd1\x85\xe3\xf2\x72\xdd\xbb\x0b\x82\x5d\x80\xe0\x77\x00\x00\x00\xff\xff\x21\x67\x62\x69\x40\x05\x00\x00" func idtablestakingAdminTransfer_minter_deployCdcBytes() ([]byte, error) { return bindataRead( @@ -2420,11 +2480,11 @@ func idtablestakingAdminTransfer_minter_deployCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/transfer_minter_deploy.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4a, 0x80, 0x4d, 0xef, 0x2d, 0xfe, 0x8a, 0x7f, 0x18, 0x1d, 0xd7, 0xb5, 0xf2, 0x80, 0x2a, 0x6f, 0xfe, 0xcc, 0x13, 0xd0, 0xbd, 0xc8, 0xaa, 0x76, 0x68, 0xf3, 0xb3, 0xa1, 0x15, 0x9, 0xd7, 0x8e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbe, 0x1e, 0x95, 0xdc, 0x42, 0x25, 0x57, 0x4f, 0xdb, 0xbe, 0x75, 0x38, 0xea, 0x13, 0xcf, 0xba, 0x25, 0xcb, 0x98, 0x2a, 0x37, 0xfe, 0x7a, 0x6c, 0xec, 0xe4, 0xc3, 0x36, 0x5a, 0x3, 0x6b, 0x54}} return a, nil } -var _idtablestakingAdminUpgrade_set_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xdf\x6b\x9c\x40\x10\xc7\xdf\xfd\x2b\xbe\xdc\x43\xf1\xa0\x68\x1f\x8b\xb4\x0d\x36\x5e\x41\x08\xa5\x44\xfb\x50\x4a\x09\x73\xeb\x18\xb7\x59\x77\x65\x77\xec\x5d\x09\xf9\xdf\xcb\x6a\x2e\xfd\x91\xeb\x3c\x28\xe8\xce\x77\x3e\x1f\x66\xf5\x38\x39\x2f\xf8\x60\xdc\xa1\xae\x5a\xda\x1b\x6e\x84\xee\xb4\xbd\x45\xef\xdd\x88\x57\xc7\xba\xda\x7d\x6c\xeb\xf6\x4b\x5b\xbe\xbf\xda\x95\x55\x75\xbd\x6b\x9a\x24\xc9\x73\xb4\x83\x0e\x10\x4f\x36\x90\x12\xed\x2c\x26\xfa\x19\xe0\xf9\x40\xbe\x0b\x10\x07\x32\x06\x32\x30\x82\xd0\x1d\x77\xb0\xae\xe3\x90\x24\x7f\x74\xa4\xca\x75\x5c\xe0\xeb\xe7\xda\xca\xeb\x6f\x5b\xdc\x27\x09\x00\xe4\x39\xae\x9c\x22\x83\x1f\xe4\x75\x24\x42\xef\x3c\x08\x9e\x7b\xf6\x6c\x15\xc7\xf0\x18\x5c\x57\x58\x88\x51\x76\xa3\xb6\x70\xfb\xef\xac\x64\x89\x30\x2c\xa0\xf8\xf1\x9a\xfb\x02\x2f\x9e\xdb\x65\x4b\xcb\x3a\x6f\xf2\x3c\x91\xe7\x94\x94\x92\x02\xe5\x2c\x43\xa9\x94\x9b\xad\x3c\x11\xc5\x8a\x7f\x33\xe5\xac\x78\x52\x12\xb2\x79\xea\x48\xf8\xe6\x86\x8f\x13\x7b\x3d\xb2\x15\x32\xa9\xa5\x91\x0b\x6c\x9e\x8f\xdb\xbc\xc4\xea\x1a\x9f\xdb\xdf\xa1\x79\x8e\xbd\xf3\xde\x1d\xce\xe9\xd1\xbf\x56\xb1\x02\x9b\x3e\x3b\xa9\xe1\xed\x8a\xb5\x66\xbc\xf9\xaf\xe7\xbb\x34\x2e\xb3\x38\xb3\xe5\xec\xf1\xbd\x1c\x6b\xc4\x79\xba\xe5\x4f\x24\xc3\xf6\x69\x60\xac\x8b\x0b\x4c\x64\xb5\x4a\x37\x97\x6e\x36\x71\x95\x72\xe2\xfe\x8b\x3a\x3c\x5e\x9d\x85\x6f\xb3\x66\x3c\xac\xb6\x7c\x64\x35\x0b\xe3\xfe\xbc\x49\x16\x58\x2e\x0d\xe9\x91\xbb\xf4\xd4\xf7\xf0\x2b\x00\x00\xff\xff\x46\x0d\x04\xc2\x9c\x02\x00\x00" +var _idtablestakingAdminUpgrade_set_claimedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x4f\x8b\x9c\x40\x10\xc5\xef\x7e\x8a\x87\x87\x45\x61\xd1\x6b\x90\x24\xcb\x66\x96\xc0\x40\x0e\x21\xbb\x9b\x4b\xc8\xa1\xa6\x2d\xd7\xce\xb6\x5d\xd2\x5d\x66\x12\x96\xf9\xee\xa1\x75\x66\xf2\x67\x4c\x1d\x14\xd4\xf7\x7b\xef\x75\x69\x87\x51\x82\xe2\xbd\x93\xfd\xf6\xee\x81\x76\x8e\xef\x95\x9e\xad\x7f\x42\x17\x64\x40\x7e\xf9\x22\xcf\xb2\xba\xc6\x43\x6f\x23\x34\x90\x8f\x64\xd4\x8a\xc7\x48\x3f\x23\x02\xef\x29\xb4\x11\x2a\x20\xe7\xa0\x3d\x23\x2a\x3d\x73\x0b\x2f\x2d\xc7\x2c\xfb\x43\x51\x18\x69\xb9\xc1\x97\xc7\xad\xd7\x57\x5f\x4b\xbc\x64\x19\x00\xd4\x35\x3e\x88\x21\x87\xef\x14\x6c\xb2\x45\x27\x01\x84\xc0\x1d\x07\xf6\x86\x13\x3c\x81\xb7\x77\x98\x63\xe1\xb6\x1d\xac\x87\xec\xbe\xb1\xd1\x19\xe1\x58\x41\xe9\xe1\x27\xee\x1a\x5c\x5d\x56\xa8\x66\xc9\xe2\x37\x06\x1e\x29\x70\x41\xc6\x68\x03\x9a\xb4\x2f\x1e\xc7\x96\x94\x37\xe2\x35\x90\xd1\x6b\xbc\x93\x10\x64\xff\x99\xdc\xc4\x25\xae\x6e\x8d\x91\xc9\xeb\x39\x70\x9a\x24\xae\xcc\x51\x10\xab\x69\x06\x14\x9e\x06\x6e\x56\x8f\xf0\x1a\x4b\xf9\x74\x2d\x7f\x63\xea\x1a\xbb\xd9\x6b\xad\x2f\xfd\x5b\x33\x4d\x64\xd7\x55\xa7\xae\x78\xb3\x04\x89\x2a\x81\x9e\xb8\x5a\x58\xaf\xff\x7b\x00\x6f\x8b\xb4\xe3\x66\x65\xf9\xd5\xf1\x3e\x7f\x76\xbf\xe0\x3e\x92\xf6\xe5\xd9\x38\xcd\xcd\x0d\x46\xf2\xd6\x14\xf9\x46\x26\x97\x76\xac\xa7\xfc\x7f\xa5\x8f\xc7\x3f\x6a\xce\x99\x2f\x8c\xc3\xd2\x9a\x7f\xb0\x99\x94\xf1\xb2\xde\xa8\x8a\xac\x1b\x47\x76\xe0\xb6\x38\xe9\x0e\xbf\x02\x00\x00\xff\xff\xf6\x62\xb3\x93\xb3\x02\x00\x00" func idtablestakingAdminUpgrade_set_claimedCdcBytes() ([]byte, error) { return bindataRead( @@ -2440,11 +2500,11 @@ func idtablestakingAdminUpgrade_set_claimedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/upgrade_set_claimed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbd, 0x60, 0x96, 0xc9, 0xe2, 0xe7, 0xb2, 0xfc, 0xfa, 0x4c, 0xe, 0x98, 0xd8, 0x18, 0xe0, 0x48, 0x7e, 0x34, 0xa6, 0xf3, 0xa9, 0xb0, 0x10, 0xd5, 0xc5, 0xdf, 0xb5, 0x7c, 0xcb, 0xbb, 0xd4, 0x3f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb2, 0x18, 0xb2, 0xdd, 0x50, 0x4a, 0xbf, 0x69, 0x23, 0x23, 0x78, 0xc8, 0x53, 0xc8, 0xd4, 0x61, 0x14, 0x50, 0x2b, 0x78, 0xc8, 0x94, 0xba, 0xb8, 0xbf, 0x98, 0xfe, 0x51, 0x48, 0x61, 0x83, 0xa0}} return a, nil } -var _idtablestakingAdminUpgrade_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x3c\x8d\x31\x0b\xc2\x30\x10\x85\xf7\xfc\x8a\xa3\x53\x0a\xd2\x59\xb2\x15\x44\xe8\xac\x4e\x22\xe5\xbc\x1e\x1a\x4c\x2f\x21\xbd\xa0\x20\xfd\xef\x12\x05\xdf\xf0\x96\xf7\xf8\x3e\xa3\x19\x65\x41\x52\x1f\xc5\x52\x9c\xd8\xc1\xf9\x34\x88\x6e\x2f\x2d\xbc\x8d\x01\x00\x48\x99\x13\x66\xb6\x48\xa4\x0e\xfa\xa2\xf7\x9e\x28\x16\xd1\xff\xa3\xa6\xae\x1d\x45\xd1\x8c\xa4\x4b\x57\xd2\x84\xca\xe3\xc8\xaf\xc4\xd9\xcf\x2c\x8a\xc1\x0a\xce\xec\xa0\xd9\x87\xf8\x1c\x76\x47\xbc\x06\x3e\x28\x3e\xbc\xdc\x9a\x0d\xfc\xdc\xb5\xdb\x2f\x73\x35\xeb\x27\x00\x00\xff\xff\x83\x09\x8a\xc4\x9c\x00\x00\x00" +var _idtablestakingAdminUpgrade_stakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2c\x8d\xb1\x0a\xc2\x40\x10\x44\xfb\xfb\x8a\x21\x85\x5c\x40\x52\x4b\x3a\x51\x84\xd4\x9a\x4a\x2c\xd6\xcd\xa2\xc1\xb8\x17\x2e\x7b\x58\x48\xfe\x5d\x2e\x66\x8a\xa9\xde\x9b\x71\x16\x49\x27\x62\xeb\x83\x7a\x0e\x9d\xd4\xb8\xb6\x8d\xda\xee\x56\xe2\xeb\x1c\x00\x8c\x51\x46\x8a\xe2\x89\xd9\x6a\x50\xb2\xa7\x6f\xc7\x8e\x4c\x0e\x41\x2d\x12\x5b\x89\xcd\x9e\x39\x24\xb5\xec\x60\x4d\xc6\x2b\x5e\x91\xa9\x4a\x8b\xe2\x95\xde\x52\xa3\x38\x0d\xe1\xd3\x1c\x2f\x74\x1f\xe4\x6c\xf4\xea\xf5\x51\x6c\xf1\xbf\xcf\x5d\x2e\x2b\xb3\x9b\x7f\x01\x00\x00\xff\xff\xe2\xcb\x57\x03\x9f\x00\x00\x00" func idtablestakingAdminUpgrade_stakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2460,11 +2520,11 @@ func idtablestakingAdminUpgrade_stakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/upgrade_staking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0x44, 0x64, 0x8e, 0x9e, 0xfe, 0x87, 0x20, 0x69, 0xfd, 0xe9, 0x55, 0x7d, 0x7f, 0xf4, 0xf9, 0xcc, 0xf5, 0xbb, 0x3f, 0x22, 0xc, 0x1b, 0xd1, 0xa6, 0xb2, 0x45, 0xe9, 0x48, 0x41, 0x19, 0xc4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x81, 0x5e, 0x5c, 0xd3, 0xb2, 0xd5, 0xa5, 0x4c, 0x45, 0xf4, 0x38, 0x8c, 0x9, 0x99, 0x95, 0xbc, 0xbd, 0x11, 0x8d, 0x62, 0x50, 0xa2, 0x21, 0xf2, 0x46, 0xce, 0x6e, 0xbe, 0x67, 0x1f, 0x7, 0x96}} return a, nil } -var _idtablestakingDelegationDel_request_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x41\x6b\xe3\x40\x0c\x85\xef\xfe\x15\x22\x87\xc5\xb9\xd8\x7b\x58\xf6\x60\x76\x1b\xdc\x3a\x81\x40\x08\x25\x76\x0e\x3d\x2a\x63\x39\x71\x3b\x19\xb9\xb2\xdc\x04\x4a\xfe\x7b\x99\xba\x31\x2d\x35\x54\x17\x1d\x66\xa4\xf7\xbd\xa7\xfa\xd8\xb0\x28\x2c\x2c\x9f\x96\x59\x81\x3b\x4b\xb9\xe2\x53\xed\xf6\x50\x09\x1f\xe1\xf7\x79\x99\xcd\xd7\xc5\xb2\x78\x28\xd2\xdb\xd5\x3c\xcd\xb2\xcd\x3c\xcf\x83\x20\x50\x41\xd7\xa2\xd1\x9a\x5d\x88\x47\xee\x9c\x26\xb0\x5d\xd4\xe7\xbf\x7f\xa6\xf0\x1a\x04\x00\x00\x71\x0c\x2b\x36\x68\xe1\x05\xa5\xf6\x9b\xa1\x62\x01\x04\xa1\x8a\x84\x9c\x21\x50\x06\x3d\x10\x64\x64\x69\x8f\xca\x02\xbc\x7b\x24\xa3\xef\xd3\x96\x14\xca\xeb\xc3\x86\xaa\x04\x7e\x7d\x87\x8c\xd6\x5c\xd2\x30\xde\xcb\x36\x42\x0d\x0a\x85\x68\x8c\x26\x90\x76\x7a\x48\x8d\xf1\x80\x1e\x0c\x3e\x2a\x8e\x61\xc7\x22\x7c\x1a\xe3\x29\xc7\x78\x7c\xb5\x64\xab\xe8\x33\x14\xfc\x07\x2f\x13\xf5\xbb\xfe\xfd\x48\x78\x13\xfa\x54\x93\x91\xb8\xa3\xe1\x4f\xae\x2c\xb8\xa7\x7b\xd4\xc3\x74\x50\xf6\x35\x9b\x41\x83\xae\x36\xe1\xe4\x8e\x3b\x5b\x82\x63\xbd\x9a\xf8\x62\x61\x00\x9c\x4c\xfb\x44\x2e\x7d\xa3\x33\x99\x4e\xe9\x7a\x9e\x51\x43\x91\xd0\x73\x47\xad\x6e\x5d\xdb\x73\x0d\xc7\xed\xfb\xb0\xf1\xf2\x16\x00\x00\xff\xff\x59\x8c\xf0\xa8\x39\x02\x00\x00" +var _idtablestakingDelegationDel_request_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xb1\x4e\xc3\x40\x0c\x86\xf7\x3c\x85\x95\xa1\x4a\x96\x64\x41\x0c\x15\x50\x01\x55\x25\x24\x04\x88\x52\x76\xf7\xe2\xb4\x81\xeb\x39\x38\x0e\xad\x84\xfa\xee\xe8\x7a\x4d\x00\x35\x23\x5e\x6e\x38\xfb\xf7\xff\xd9\xae\x36\x35\x8b\xc2\xcc\xf2\xf6\x6e\xfa\x82\x4b\x4b\x73\xc5\xf7\xca\xad\xa0\x14\xde\x40\x7c\xfa\x11\x47\x51\xa4\x82\xae\x41\xa3\x15\xbb\x04\x37\xdc\x3a\x1d\xc3\x62\x56\xed\xce\xcf\x52\xf8\x8a\x22\x00\x80\x3c\x87\x7b\x36\x68\xe1\x13\xa5\xf2\xe5\x50\xb2\x00\x82\x50\x49\x42\xce\x10\x28\x83\xae\x09\xa6\x64\x69\x85\xca\x02\xbc\x7c\x23\xa3\x87\x6a\x4b\x0a\x45\xf7\xf1\x4c\xe5\x18\xb0\xd5\x75\x72\xea\x26\xeb\xcb\x1f\xb7\x8e\x24\x85\xd1\x40\xce\x03\x17\xd4\xe7\x05\x7b\xb5\x50\x8d\x42\x09\x1a\xa3\x47\xf1\x1b\x16\xe1\xed\x2b\xda\x96\x52\x18\x5d\x1b\xe3\xb9\x3c\x0f\x1c\x23\xcf\x61\x79\xc8\x19\xc2\x28\x86\x30\x7c\x34\x64\xcb\xec\x37\x0b\x5c\x82\xef\x9a\x35\xca\x82\x2b\xca\x82\xe6\xc5\xbf\x01\x5e\x25\x7e\x75\xe3\x81\x9d\xfe\x68\xcd\x43\xef\x27\xd4\x75\xda\x3b\xf5\x31\x99\x40\x8d\xae\x32\x49\x7c\xcb\xad\x2d\xc0\xb1\x76\xd0\x7f\x90\x7b\xa0\x38\x0d\x03\xdd\x87\x87\x76\x64\x5a\xa5\xee\x0a\x06\x07\x90\x09\x7d\xb4\xd4\xe8\xc2\x35\xc1\x57\x7f\x43\xe1\xed\x15\xf7\xdf\x01\x00\x00\xff\xff\x32\x83\xa3\x36\x9e\x02\x00\x00" func idtablestakingDelegationDel_request_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2480,11 +2540,11 @@ func idtablestakingDelegationDel_request_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0x1d, 0xf8, 0x36, 0x96, 0xba, 0x29, 0x5f, 0x9e, 0xc8, 0x53, 0x9a, 0x3f, 0x61, 0x22, 0xe7, 0x41, 0xc3, 0x9d, 0xe8, 0x55, 0xee, 0x64, 0xd8, 0x5e, 0x39, 0x16, 0x38, 0x80, 0xc8, 0xc, 0xa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x87, 0xb8, 0x8e, 0xfc, 0xc, 0xe8, 0x6c, 0xa0, 0x8b, 0xce, 0x40, 0x25, 0x93, 0xd5, 0xb2, 0xfd, 0x6a, 0xfb, 0x2, 0x9c, 0xa5, 0x42, 0x21, 0xf5, 0xc2, 0x16, 0x83, 0x68, 0x5d, 0xa5, 0x8d, 0xe8}} return a, nil } -var _idtablestakingDelegationDel_stake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x8f\x94\x40\x10\x85\xef\xfc\x8a\xca\x1e\xcc\xcc\x41\xf0\x60\x3c\x4c\x56\x37\x28\x4c\x32\x71\xc2\x9a\x05\x35\x1e\x6b\x9a\x62\xc0\xed\xe9\x22\x4d\x21\x93\x98\xfd\xef\xa6\x61\x9b\x65\xb3\x93\x68\xac\x4b\xa7\xd3\xef\x51\xdf\x2b\xaa\x39\xb5\x6c\x05\xb6\x9a\x87\x5d\x52\xe0\x41\x53\x2e\x78\xdf\x98\x23\x54\x96\x4f\xf0\xe6\xbc\x4b\xd2\xac\xd8\x15\x3f\x8a\xf8\xe3\x3e\x8d\x93\xe4\x2e\xcd\xf3\x60\xe1\x2a\xf8\x9e\x8c\x17\x6f\xf7\xb7\xdf\x8b\xdb\xcf\x69\xe6\x85\x41\x20\x16\x4d\x87\x4a\x1a\x36\x2b\x3c\x71\x6f\x64\x03\x5f\xb7\xcd\xf9\xdd\xdb\x35\xfc\x0e\x02\x00\x80\x28\x82\x3d\x2b\xd4\xf0\x0b\x6d\xe3\x10\xa0\x62\x0b\x08\x96\x2a\xb2\x64\x14\x81\x30\x48\x4d\x50\x92\xa6\x23\x0a\x5b\xe0\xc3\x4f\x52\x32\xba\x35\xc9\xd3\xc3\x1d\x55\x1b\x78\xf5\x32\x4d\x98\x71\x49\x89\x57\x05\xb3\xb1\xf2\x09\x9e\x8c\xe3\x35\xfc\x86\xbd\x96\x49\xd7\x5a\x6a\xd1\xd2\x0a\x95\x92\x0d\xc4\xbd\xd4\xb1\x52\x2e\x88\x0b\x00\x8f\x15\x45\x70\x60\x6b\x79\xf8\x67\x6e\x57\x1d\xe9\x2a\x5c\xc2\xc3\x7b\x70\x6d\xc2\xe9\x5b\xd7\x7f\x4d\xf2\x61\xe5\x26\xbf\xb9\xf0\xff\xc2\x59\x93\x0b\x5b\x3c\xd2\x17\x94\x7a\x3d\x77\x76\x75\x73\x03\x2d\x9a\x46\xad\xae\x3e\x71\xaf\x4b\x30\x2c\x3e\xc4\xb3\x08\x33\xe0\xd5\x3a\x78\x8e\xbe\x1c\xdf\x25\xf4\xc5\x2c\x3d\x69\xd4\x4d\x38\xd1\xec\x1d\x9f\xff\x8f\xcc\xed\x1b\x8c\x7e\x8f\xf6\x30\x1d\x74\x26\xd5\x0b\xf9\x0d\xbb\x38\x6b\x7f\xa1\x8c\x26\x90\xee\x11\xf1\xfa\xf5\x8b\x70\xe1\xd0\x48\x5d\x5a\x1c\xe6\x1d\x9e\xce\xf5\xdc\xf6\xe1\x4f\x00\x00\x00\xff\xff\x7d\x72\x30\x6f\x4a\x03\x00\x00" +var _idtablestakingDelegationDel_stake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\xcd\x6a\xdb\x40\x10\xbe\xef\x53\x0c\x3a\x04\xe9\x50\xe9\x52\x7a\x30\x69\x43\xdb\x60\x28\x84\xa4\x34\x69\x7c\x1e\xad\x46\xd2\xd6\xeb\x1d\xb1\x1a\x55\x86\xe2\x77\x2f\xfa\xb5\x8c\x4d\x31\x25\x7b\x11\xbb\xfb\xcd\x7c\x3f\xa3\x35\xbb\x8a\xbd\xc0\xda\x72\xfb\xed\xfe\x05\x53\x4b\xcf\x82\x5b\xe3\x0a\xc8\x3d\xef\x20\x38\xbf\x08\xd4\xa2\xe6\x85\xb7\xe4\x16\xd0\x7e\x7f\x44\x34\xae\x30\xa9\xa5\x13\xd4\xf2\x2c\x50\x4a\x89\x47\x57\xa3\x16\xc3\x2e\xc4\x1d\x37\x4e\x56\xf0\x73\x6d\xf6\x1f\xde\x47\xf0\x47\x29\x00\x80\x24\x81\x07\xd6\x68\xe1\x37\x7a\xd3\x49\x81\x9c\x3d\x20\x78\xca\xc9\x93\xd3\x04\xc2\x20\x25\x41\x46\x96\x0a\x14\xf6\xc0\xe9\x2f\xd2\xd2\x57\x5b\x92\xe3\xc5\x0f\xca\x57\x80\x8d\x94\xe1\xb9\xb3\xf8\x7e\x42\x3d\xb5\x8e\x7c\x04\x37\x17\x30\x8f\x9c\xd1\x8c\x53\x33\x41\x3e\x99\x5f\x10\x2c\x9d\xc6\x1b\x23\x65\xe6\xb1\x1d\xbb\x0e\x87\xaf\xd8\x58\x19\x9a\x54\x9e\x2a\xf4\x14\xa2\xd6\x32\x36\xf8\xc2\xde\x73\xfb\x8a\xb6\xa1\x08\x6e\x3e\x6b\xdd\x85\xd3\x85\x02\xe3\x4a\x12\x48\x7b\xcc\xd5\x59\x74\xab\x26\x9b\xc7\xcb\x40\xe0\x23\x74\xac\x71\x2d\xec\xb1\xa0\x78\xe8\x79\xfb\x66\x29\x7d\x0a\xbb\xd1\xaf\x2e\xfc\x64\xc7\x5e\xcf\x03\xf7\x77\x94\x32\x9a\x95\x76\xeb\xee\x0e\x2a\x74\x46\x87\xc1\x57\x6e\x6c\x06\x8e\x65\x32\x7d\x62\x79\x36\x14\x44\xea\xd4\xea\x72\x34\xff\xb4\x7a\xe5\xbc\x26\x3b\xc9\xd8\x24\x99\x09\xfa\xeb\xff\x93\xbf\x7e\x78\xda\x40\x5f\x3f\xe9\x3f\x0c\x1f\xda\x93\x6e\x84\xa6\xa7\x70\x71\x80\xd3\x86\x1e\x69\x10\x52\x8f\x12\x6f\xdf\x9d\x25\x10\xb7\xa3\xb1\xf9\xb1\x0d\xdf\x68\xa6\x3d\xfc\x0d\x00\x00\xff\xff\xc1\x80\x21\xc4\x14\x04\x00\x00" func idtablestakingDelegationDel_stake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2500,11 +2560,11 @@ func idtablestakingDelegationDel_stake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x53, 0x38, 0xd9, 0x47, 0x24, 0xbb, 0xe8, 0x6e, 0x60, 0xdf, 0x9c, 0x19, 0x3a, 0x3c, 0x47, 0x18, 0xa7, 0xb5, 0x74, 0x88, 0x1d, 0x6, 0xd7, 0xb5, 0x24, 0xc1, 0xa1, 0xd3, 0x49, 0x79, 0xbe, 0x8b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xef, 0x10, 0x2b, 0x72, 0x96, 0xd1, 0x8e, 0xa0, 0x84, 0xd7, 0xe0, 0x69, 0x57, 0x1c, 0x1b, 0x5e, 0xf2, 0x48, 0x5f, 0x81, 0x81, 0x5c, 0xbe, 0x2, 0x4b, 0x1e, 0x7b, 0x4b, 0xf7, 0xbd, 0x9a, 0x2a}} return a, nil } -var _idtablestakingDelegationDel_stake_rewardedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x41\x6b\xab\x50\x10\x85\xf7\xfe\x8a\x21\x8b\x87\xd9\xe8\x5b\x3c\xde\x42\xda\x06\x5b\x13\x08\x84\x50\xa2\x5d\x74\x39\xb9\x8e\x89\xcd\xcd\x1d\x99\x8c\x4d\xa0\xe4\xbf\x97\x5b\xab\xb4\x54\xe8\x6c\x06\xf1\xce\x9c\xef\x9c\xa9\x8f\x0d\x8b\xc2\xc2\xf2\x79\x99\x15\xb8\xb5\x94\x2b\x1e\x6a\xb7\x83\x4a\xf8\x08\x7f\x2f\xcb\x6c\xbe\x2e\x96\xc5\x73\x91\xde\xaf\xe6\x69\x96\x6d\xe6\x79\x1e\x04\x81\x0a\xba\x13\x1a\xad\xd9\x85\x78\xe4\xd6\x69\x02\x4f\x8b\xfa\xf2\xff\xdf\x14\xde\x82\x00\x00\x20\x8e\x61\xc5\x06\x2d\xbc\xa2\xd4\x7e\x33\x54\x2c\x80\x20\x54\x91\x90\x33\x04\xca\xa0\x7b\x82\x8c\x2c\xed\x50\x59\x80\xb7\x2f\x64\xf4\x63\xda\x92\x42\xd9\xff\xd8\x50\x95\xc0\x9f\x9f\x90\xd1\x9a\x4b\x1a\xc6\x3b\xd9\x46\xa8\x41\xa1\x10\x8d\xd1\x04\xd2\x56\xf7\xa9\x31\x1e\xd0\x83\xc1\x67\xc5\x31\x6c\x59\x84\xcf\x63\x3c\xe5\x18\x8f\xaf\x13\xd9\x2a\xfa\x0a\x05\xb7\xe0\x65\xa2\x6e\xd7\xcd\xaf\x84\x77\xa1\x4f\x35\x19\x89\x3b\x1a\xde\xe4\xca\x82\x3b\x7a\x44\xdd\x4f\x07\x65\x5f\xb3\x19\x34\xe8\x6a\x13\x4e\x1e\xb8\xb5\x25\x38\xd6\xde\xc4\x37\x0b\x03\xe0\x64\xda\x25\x72\xed\x1a\x5d\xc8\xb4\x4a\xfd\x79\x46\x0d\xf5\x1f\xb4\xa1\x33\x4a\x49\x65\xc1\x07\x72\xa7\xe1\xc4\x5d\x1f\xf6\x5e\xdf\x03\x00\x00\xff\xff\x4f\x03\x87\x63\x3f\x02\x00\x00" +var _idtablestakingDelegationDel_stake_rewardedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xc1\x4b\xfb\x50\x0c\xc7\xef\xfd\x2b\x42\x0f\xa3\xbd\xb4\x97\x1f\xbf\xc3\x50\x87\x3a\x06\x82\xa8\x6c\xd3\x7b\xf6\x9a\x6e\x75\xaf\x2f\x25\x4d\xed\x40\xf6\xbf\xcb\x5b\xd7\xaa\xac\x47\x73\x79\x3c\x92\x7c\x93\x4f\x92\xa2\xac\x58\x14\x16\x96\xdb\x87\xf9\x1a\x37\x96\x56\x8a\xfb\xc2\x6d\x21\x17\x2e\x21\xbc\x74\x84\x41\x10\xa8\xa0\xab\xd1\x68\xc1\x2e\xc2\x92\x1b\xa7\x53\x78\x5d\x14\x87\xff\xff\x62\xf8\x0c\x02\x00\x80\x34\x85\x47\x36\x68\xe1\x03\xa5\xf0\xe9\x90\xb3\x00\x82\x50\x4e\x42\xce\x10\x28\x83\xee\x08\xe6\x64\x69\x8b\xca\x02\xbc\x79\x27\xa3\xa7\x6c\x4b\x0a\x59\xef\x58\x52\x3e\x05\x6c\x74\x17\x5d\x76\x93\x0c\xe9\xcf\xad\x23\x89\x61\x32\x12\xf3\xc4\x19\x0d\x71\x5d\x7b\x95\x50\x85\x42\x11\x1a\xa3\x67\xf1\x3b\x16\xe1\xf6\x0d\x6d\x43\x31\x4c\x6e\x8d\xf1\x5c\x9e\x07\xce\x96\xa6\xb0\x39\xc5\x8c\x61\x64\x63\x18\xde\x6a\xb2\x79\xf2\x93\x05\xae\xc1\x57\x4d\x6a\x65\xc1\x2d\x25\x9d\xe6\xd5\x9f\x01\xde\x44\x7e\x75\xd3\x91\x9d\x7e\x6b\xad\xba\xda\x2f\xa8\xbb\x78\xe8\xd4\xdb\x6c\x06\x15\xba\xc2\x44\xe1\x3d\x37\x36\x03\xc7\xda\x43\xff\x42\x1e\x80\xc2\xb8\x1b\xe8\xb1\x7b\xe8\x40\xa6\x51\xea\xaf\x60\x74\x00\xfd\x87\x96\xd4\xa2\x64\x94\xad\x79\x4f\xae\x1e\x2e\xa9\x7b\x07\xdd\xe3\x57\x00\x00\x00\xff\xff\xb1\x5e\xd1\xad\xa4\x02\x00\x00" func idtablestakingDelegationDel_stake_rewardedCdcBytes() ([]byte, error) { return bindataRead( @@ -2520,11 +2580,11 @@ func idtablestakingDelegationDel_stake_rewardedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_stake_rewarded.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf, 0x9f, 0xc3, 0x4b, 0x19, 0xbb, 0xe2, 0x96, 0x5c, 0x6c, 0x69, 0x8b, 0x86, 0x7e, 0xeb, 0x78, 0x72, 0x47, 0xef, 0x12, 0x0, 0xd0, 0x9b, 0x25, 0x23, 0x9a, 0x67, 0x29, 0x3e, 0xa1, 0x89, 0x59}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0xab, 0x43, 0xc4, 0x6c, 0xd2, 0xcc, 0x46, 0xb9, 0xe9, 0xe8, 0x58, 0xd2, 0x56, 0x18, 0xf, 0xca, 0xf0, 0x2e, 0xf4, 0x55, 0xe9, 0x4f, 0x44, 0x76, 0xed, 0x31, 0x9c, 0x48, 0x31, 0xf0, 0xf7}} return a, nil } -var _idtablestakingDelegationDel_stake_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xc1\x6a\xb3\x50\x10\x85\xf7\x3e\xc5\x90\xc5\x8f\xd9\xe8\xbf\x28\x5d\x48\xdb\x60\x6b\x02\x81\x10\x4a\x34\x8b\x2e\x27\xd7\x31\xb1\x31\x77\x64\x1c\x9b\x40\xc9\xbb\x97\x5b\xab\xb4\x54\xe8\x6c\x06\xf1\xce\x9c\xef\x9c\x29\x4f\x35\x8b\xc2\xa2\xe2\xf3\x32\xc9\x70\x57\x51\xaa\x78\x2c\xed\x1e\x0a\xe1\x13\xfc\xbf\x2c\x93\xf9\x3a\x5b\x66\x2f\x59\xfc\xb8\x9a\xc7\x49\xb2\x99\xa7\xa9\xe7\x79\x2a\x68\x1b\x34\x5a\xb2\xf5\xf1\xc4\xad\xd5\x08\xb6\x8b\xf2\x72\x7b\x33\x85\x77\xcf\x03\x00\x08\x43\x58\xb1\xc1\x0a\xde\x50\x4a\xb7\x19\x0a\x16\x40\x10\x2a\x48\xc8\x1a\x02\x65\xd0\x03\x41\x42\x15\xed\x51\x59\x80\x77\xaf\x64\xf4\x73\xba\x22\x85\xbc\xff\xb1\xa1\x22\x82\x7f\xbf\x21\x83\x35\xe7\x34\x8c\x77\xb2\xb5\x50\x8d\x42\x3e\x1a\xa3\x11\xc4\xad\x1e\x62\x63\x1c\xa0\x03\x83\xaf\x0a\x43\xd8\xb1\x08\x9f\xc7\x78\xf2\x31\x1e\x57\x0d\x55\x45\xf0\x1d\x0a\xee\xc1\xc9\x04\xdd\xae\xbb\x3f\x09\x1f\x7c\x97\x6a\x34\x12\x77\x30\xbc\x49\x95\x05\xf7\xf4\x8c\x7a\x98\x0e\xca\xae\x66\x33\xa8\xd1\x96\xc6\x9f\x3c\x71\x5b\xe5\x60\x59\x7b\x13\x3f\x2c\x0c\x80\x93\x69\x97\xc8\xb5\x6b\x74\x21\xd3\x2a\xf5\xe7\x19\x35\xd4\x7f\xd0\xd6\x36\x8a\x47\xca\x33\x3e\x92\x6d\x86\x13\x77\x7d\xd8\x7b\xfd\x08\x00\x00\xff\xff\x60\x37\x37\x4d\x3f\x02\x00\x00" +var _idtablestakingDelegationDel_stake_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x31\x4f\xf3\x40\x0c\x86\xf7\xfc\x8a\x57\x19\xaa\x64\x49\x96\x4f\xdf\x50\x01\x15\x50\x55\x42\x42\x80\x68\xcb\xee\x5e\x9c\x36\xf4\x7a\x8e\x2e\x0e\xad\x84\xfa\xdf\x51\x9a\x26\x80\x9a\x11\x2f\xa7\x93\xed\xd7\x7e\x6c\x17\xbb\x52\xbc\x62\x66\x65\xff\x30\x5d\xd0\xca\xf2\x5c\x69\x5b\xb8\x35\x72\x2f\x3b\x84\x97\x8e\x30\x08\x02\xf5\xe4\x2a\x32\x5a\x88\x8b\x68\x27\xb5\xd3\x31\x96\xb3\xe2\xf0\xff\x5f\x8c\xcf\x20\x00\x80\x34\xc5\xa3\x18\xb2\xf8\x20\x5f\x34\xe9\xc8\xc5\x83\xe0\x39\x67\xcf\xce\x30\x54\xa0\x1b\xc6\x94\x2d\xaf\x49\xc5\x43\x56\xef\x6c\xf4\x94\x6d\x59\x91\x75\x8e\x57\xce\xc7\xa0\x5a\x37\xd1\x65\x37\x49\x9f\xfe\xbc\x77\xec\x63\x8c\x06\x62\x9e\x24\xe3\x3e\xae\x6d\xaf\xf4\x5c\x92\xe7\x88\x8c\xd1\xb3\xf8\x9d\x78\x2f\xfb\x37\xb2\x35\xc7\x18\xdd\x1a\xd3\x70\x35\x3c\x38\x5b\x9a\x62\x75\x8a\x19\xc2\xc8\x86\x30\x1a\xab\xd8\xe6\xc9\x4f\x16\x5c\xa3\xa9\x9a\x54\x2a\x9e\xd6\x9c\xb4\x9a\x57\x7f\x06\x78\x13\x35\xab\x1b\x0f\xec\xf4\x5b\x6b\xde\xd6\x7e\x21\xdd\xc4\x7d\xa7\x8d\x4d\x26\x28\xc9\x15\x26\x0a\xef\xa5\xb6\x19\x9c\x68\x07\xfd\x0b\xb9\x07\x0a\xe3\x76\xa0\xc7\xf6\xe1\x03\x9b\x5a\xb9\xbb\x82\xc1\x01\x74\x1f\x5e\xba\x4a\x69\xcb\xd9\x42\xb6\xec\xaa\xfe\x92\xda\xb7\xd7\x3d\x7e\x05\x00\x00\xff\xff\x9e\x6a\x61\x83\xa4\x02\x00\x00" func idtablestakingDelegationDel_stake_unstakedCdcBytes() ([]byte, error) { return bindataRead( @@ -2540,11 +2600,11 @@ func idtablestakingDelegationDel_stake_unstakedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_stake_unstaked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x74, 0xad, 0x88, 0x47, 0x36, 0x16, 0xef, 0x73, 0xad, 0x97, 0xe5, 0xea, 0x2d, 0xf8, 0xaa, 0x76, 0xc6, 0xa, 0x7b, 0xa9, 0x51, 0x85, 0x17, 0x72, 0x7, 0xfe, 0xb0, 0x79, 0xb4, 0xaa, 0xda, 0x62}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb2, 0xe0, 0x9e, 0xd0, 0xcb, 0x7b, 0x17, 0x55, 0xd4, 0x3c, 0x3a, 0xb7, 0x69, 0x8d, 0xf0, 0x10, 0x95, 0x57, 0x91, 0x73, 0xc7, 0xbe, 0xf3, 0x94, 0x97, 0x96, 0xe, 0x27, 0x37, 0x17, 0xff, 0x6a}} return a, nil } -var _idtablestakingDelegationDel_withdraw_reward_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x8f\xd3\x30\x10\x85\xef\xf9\x15\xa3\x3d\xa0\xf6\x40\xc2\x01\x71\xa8\x16\x56\x85\xb4\x52\x45\xd5\x45\x6d\x00\x71\x9c\xda\x93\xd6\xac\xeb\x89\x9c\x09\xa9\x84\xf6\xbf\x23\x27\x75\x36\xab\xad\x04\x62\x2e\x56\xe4\xf7\x32\xdf\x1b\x8f\x39\x55\xec\x05\x96\x96\xdb\x55\x5e\xe0\xde\xd2\x4e\xf0\xc1\xb8\x03\x94\x9e\x4f\xf0\xe6\xbc\xca\x17\x9b\x62\x55\xfc\x28\xe6\x1f\xd7\x8b\x79\x9e\x6f\x17\xbb\x5d\x32\x72\x15\xfc\x40\x2e\x8a\x97\xeb\xfb\xef\xc5\xfd\xe7\xc5\x26\x0a\x93\x44\x3c\xba\x1a\x95\x18\x76\x13\x3c\x71\xe3\x64\x06\x5f\x97\xe6\xfc\xee\xed\x14\x7e\x27\x09\x00\x40\x96\xc1\x9a\x15\x5a\xf8\x85\xde\x04\x04\x28\xd9\x03\x82\xa7\x92\x3c\x39\x45\x20\x0c\x72\x24\xd0\x64\xe9\x80\xc2\x1e\x78\xff\x93\x94\x74\x6e\x4b\xf2\x74\xb1\xa5\x72\x06\xaf\x5e\xa6\x49\x37\xac\x29\x8f\xaa\x64\x30\x96\x31\xc1\x93\xb1\xfb\x4c\xbf\x61\x63\xa5\xd7\x55\x9e\x2a\xf4\x34\x41\xa5\x64\x06\xf3\x46\x8e\x73\xa5\x42\x90\x10\x00\x2e\x95\x65\xb0\x67\xef\xb9\xfd\x67\xee\x50\x35\xd9\x32\x1d\xc3\xc3\x7b\x08\x6d\xd2\xfe\x5f\xb7\x7f\x4d\xf2\x61\x12\x26\x3f\xbb\xf2\x7e\xe9\xa0\xd9\x09\x7b\x3c\xd0\x17\x94\xe3\x74\xe8\x1c\xea\xee\x0e\x2a\x74\x46\x4d\x6e\x3e\x71\x63\x35\x38\x96\x18\xe2\x59\x84\xfa\xb2\x11\xa8\x4f\xc6\xdd\x4c\x93\xe7\xf8\xe3\x11\x5e\xc3\x1f\xcd\x33\xd2\x66\x75\x8f\x94\x0d\xde\xee\xfa\xff\xe8\xc2\xce\x41\xe7\x8f\x68\x8f\xfd\x41\x67\x52\x8d\x50\xdc\xb2\xab\xc0\xa9\xa6\x8a\x6b\x23\x17\xb0\xdb\xd7\x2f\x5e\x24\x6d\x8d\x1c\xb5\xc7\x76\x4b\x2d\x7a\x4d\xba\xb3\xd6\xc3\x2e\xf7\xe7\x74\x68\xfd\xf8\x27\x00\x00\xff\xff\x48\xa4\x68\x6b\x52\x03\x00\x00" +var _idtablestakingDelegationDel_withdraw_reward_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\x4d\x6b\xdc\x40\x0c\xbd\xcf\xaf\x10\x3e\x2c\xf6\xa1\xf6\xa5\xf4\xb0\xa4\x0d\x6d\xc3\x42\x21\x34\x25\x49\xd3\xb3\x76\x46\xde\x9d\x66\x76\x64\x64\xb9\x0e\x94\xfc\xf7\xe2\xcf\x78\xbb\x5b\x28\xa5\xba\x08\xa3\x27\xbd\xf7\x2c\x8d\x3f\x54\x2c\x0a\x9b\xc0\xed\xa7\xab\x7b\xdc\x06\xba\x53\x7c\xf4\x71\x07\xa5\xf0\x01\x92\xd3\x42\x62\x16\x3d\xf7\xfc\x48\x71\x01\xed\xbf\x13\x63\x8c\x0a\xc6\x1a\xad\x7a\x8e\x29\x1e\xb8\x89\xba\x86\xaf\x1b\xff\xf4\xe6\x75\x06\x3f\x8d\x01\x00\x28\x0a\xb8\x66\x8b\x01\x7e\xa0\xf8\x8e\x00\x4a\x16\x40\x10\x2a\x49\x28\x5a\x02\x65\xd0\x3d\x81\xa3\x40\x3b\x54\x16\xe0\xed\x77\xb2\xda\x77\x07\xd2\x97\xc2\x2d\x95\x6b\xc0\x46\xf7\xe9\xa9\xde\xfc\x6a\x42\xdd\xb4\x91\x24\x83\xd5\x19\xcc\x67\x76\x34\xe3\xcc\x4c\x50\x4e\x96\x7a\x82\xd5\xec\x30\x7f\xc0\x26\xe8\x80\xab\x84\x2a\x14\x4a\xd1\x5a\x1d\x45\x7c\x60\x11\x6e\x1f\x30\x34\x94\xc1\xea\xbd\xb5\x9d\xff\xce\x37\x8c\x51\x14\xb0\xed\x31\x7f\x6d\xb7\x8b\x9a\x42\x99\x2f\x3d\xc3\x5b\xe8\x58\xf3\x5a\x59\x70\x47\xf9\x30\xf3\xe2\xbf\xfd\x88\x77\x69\xb7\xd9\xf5\x99\xeb\x78\x99\x75\x37\x70\x7f\x41\xdd\x67\xb3\xd2\x2e\x2e\x2f\xa1\xc2\xe8\x6d\x9a\x7c\xe4\x26\x38\x88\xac\x93\xe9\x23\xcb\xf5\x78\x6f\xe8\x0e\x3e\x26\x99\x39\xb6\xbb\xdc\xc0\x1f\xec\xfe\xbe\x96\x49\x75\x31\xe2\x8a\x79\x46\x5f\xfe\x37\x95\x9b\xeb\x9b\x6f\xd0\xf7\x4f\x12\x9f\x87\x44\x4f\x64\x1b\xa5\xe9\xa8\xcf\x0a\xcf\x1d\x55\x5c\x7b\x1d\x85\x5d\xbc\x3a\xd9\x64\xde\x7a\xdd\x3b\xc1\xf6\x96\x5a\x14\x47\xae\x6f\xad\xe7\xa7\x33\xe4\x6c\xa6\x7e\xfe\x15\x00\x00\xff\xff\xd5\x98\xe2\x33\xb8\x03\x00\x00" func idtablestakingDelegationDel_withdraw_reward_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2560,11 +2620,11 @@ func idtablestakingDelegationDel_withdraw_reward_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_withdraw_reward_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x59, 0x52, 0x4d, 0x97, 0xb1, 0xb9, 0xbc, 0x88, 0xbd, 0xa4, 0x74, 0x59, 0xab, 0xf1, 0x25, 0x8a, 0x1c, 0x55, 0x41, 0x8e, 0x6b, 0x4d, 0x3c, 0xfe, 0x4c, 0xb6, 0xdb, 0x88, 0xd3, 0xa9, 0xbf, 0x50}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0x69, 0x4a, 0xc2, 0x9c, 0x8c, 0xbe, 0x30, 0xf1, 0x75, 0xca, 0x4, 0xe6, 0x89, 0xc4, 0x37, 0xa4, 0x54, 0x4, 0x46, 0x39, 0x59, 0x38, 0x65, 0xad, 0x42, 0x81, 0x10, 0x43, 0x24, 0x11, 0x43}} return a, nil } -var _idtablestakingDelegationDel_withdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x43\x0e\xc5\x3e\x54\xea\xa1\xf4\x60\xd2\x06\xb7\xb2\xc1\xd4\x38\x25\x56\x5a\x7a\x1c\xaf\x46\xd6\x36\xab\x1d\xb1\x1a\x55\x86\x92\xff\x5e\x56\xf2\x2a\x0a\x31\xb4\x64\x2e\x8b\xd8\xf7\x34\xdf\x9b\x1d\x5d\xd5\xec\x04\xd6\x86\xbb\x4d\x9a\xe1\xc1\xd0\x5e\xf0\x41\xdb\x23\x14\x8e\x2b\x78\x77\xda\xa4\xab\x5d\xb6\xc9\x7e\x66\xcb\xcf\xdb\xd5\x32\x4d\xef\x56\xfb\x7d\x34\x71\x65\xfc\x40\x36\x88\xd7\xdb\xdb\x1f\xd9\xed\xd7\xd5\x2e\x08\xa3\x48\x1c\xda\x06\x95\x68\xb6\x33\xac\xb8\xb5\xb2\x80\xfb\xb5\x3e\x7d\x78\x3f\x87\x3f\x51\x04\x00\x90\x24\xb0\x65\x85\x06\x7e\xa3\xd3\x1e\x01\x0a\x76\x80\xe0\xa8\x20\x47\x56\x11\x08\x83\x94\x04\x39\x19\x3a\xa2\xb0\x03\x3e\xfc\x22\x25\xbd\xdb\x90\x3c\x5d\xdc\x51\xb1\x80\x37\x2f\xd3\xc4\x3b\xce\x29\x0d\xaa\x68\x34\x16\x21\xc1\x93\xb1\xff\x8c\xbf\x63\x6b\x64\xd0\xd5\x8e\x6a\x74\x34\x43\xa5\x64\x01\xcb\x56\xca\xa5\x52\x3e\x88\x0f\x00\xe7\x4a\x12\x38\xb0\x73\xdc\xfd\x37\xb7\xaf\x86\x4c\x11\x4f\xe1\xe1\x23\xf8\x36\xf1\xf0\xaf\xeb\x7f\x26\xf9\x34\xf3\x93\x5f\x5c\x78\xbf\x78\xd4\xec\x85\x1d\x1e\xe9\x1b\x4a\x39\x1f\x3b\xfb\xba\xb9\x81\x1a\xad\x56\xb3\xab\x2f\xdc\x9a\x1c\x2c\x4b\x08\xf1\x2c\x42\x73\xde\x08\xcc\x2b\x6d\xaf\xe6\xd1\x73\xfc\xe9\x08\x2f\xe1\x4f\xe6\x19\x68\x93\x66\x40\x4a\x46\x6f\x7f\xfd\x3a\x3a\xbf\x73\xd0\xfb\x03\xda\xe3\x70\xd0\x89\x54\x2b\x14\xb6\xec\x22\x70\x9c\x53\xcd\x8d\x96\x33\xd8\xf5\xdb\x17\x2f\x12\x77\x5a\xca\xdc\x61\x77\x6f\xfd\x1c\x28\xef\xad\xcd\xb8\xcb\xc3\x39\x1f\x5b\x3f\xfe\x0d\x00\x00\xff\xff\x25\x29\x97\xc0\x52\x03\x00\x00" +var _idtablestakingDelegationDel_withdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\x4d\x8b\xdb\x40\x0c\xbd\xcf\xaf\x10\x3e\x04\xfb\x50\xfb\x52\x7a\x08\xdb\x2e\x6d\x97\x40\x61\xe9\x96\xee\x47\xcf\xca\x58\x8e\xa7\x19\x8f\xcc\x58\xae\x03\x25\xff\xbd\x8c\xbf\xe2\x34\x29\x94\x52\x5d\x06\xa3\x27\xbd\xf7\x24\xd9\x54\x35\x7b\x81\x8d\xe5\xee\xd3\xdd\x13\x6e\x2d\x3d\x0a\xee\x8d\xdb\x41\xe1\xb9\x82\xe8\x32\x11\xa9\x45\xcd\x13\xef\xc9\x2d\xa0\xfd\x77\xa4\x94\x12\x8f\xae\x41\x2d\x86\x5d\x8c\x15\xb7\x4e\xd6\xf0\xbc\x31\x87\x37\xaf\x13\xf8\xa9\x14\x00\x40\x96\xc1\x3d\x6b\xb4\xf0\x03\xbd\x09\x04\x50\xb0\x07\x04\x4f\x05\x79\x72\x9a\x40\x18\xa4\x24\xc8\xc9\xd2\x0e\x85\x3d\xf0\xf6\x3b\x69\xe9\xab\x2d\xc9\x29\xf1\x95\x8a\x35\x60\x2b\x65\x7c\xa9\x37\xbd\x9b\x50\x0f\x9d\x23\x9f\xc0\xea\x0a\xe6\x33\xe7\x34\xe3\xd4\x4c\x50\x4c\x96\x7a\x82\xd5\xec\x30\x7d\xc1\xd6\xca\x80\xab\x3d\xd5\xe8\x29\x46\xad\x65\x14\xf1\x81\xbd\xe7\xee\x05\x6d\x4b\x09\xac\xde\x6b\x1d\xfc\x07\xdf\x30\x46\x96\xc1\xb6\xc7\xfc\xb5\xdd\x10\x0d\xd9\x22\x5d\x7a\x86\xb7\x10\x58\xd3\x46\xd8\xe3\x8e\xd2\xa1\xe7\xcd\x7f\x1b\xc4\xbb\x38\x6c\x76\x7d\xe5\x3a\x4e\xbd\x1e\x07\xee\x2f\x28\x65\x32\x2b\x0d\x71\x7b\x0b\x35\x3a\xa3\xe3\xe8\x23\xb7\x36\x07\xc7\x32\x99\x3e\xb3\xdc\x8c\xf7\x86\x79\x65\x5c\x94\xa8\x73\xbb\xcb\x0d\xfc\xc1\xee\xef\x6b\x99\x54\x67\x23\x2e\x9b\x7b\xf4\xe9\x7f\x53\xb9\xb9\x7f\xf8\x06\x7d\xfd\x24\xf1\x38\x3c\x74\x20\xdd\x0a\x4d\x47\x7d\x55\x78\x9a\x53\xcd\x8d\x91\x51\xd8\xcd\xab\x8b\x4d\xa6\x9d\x91\x32\xf7\xd8\x3d\xbb\x30\x0f\xca\xfb\xd2\x66\xfe\x75\x86\x37\x99\xa9\x8f\xbf\x02\x00\x00\xff\xff\xb8\x15\x1d\x98\xb8\x03\x00\x00" func idtablestakingDelegationDel_withdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2580,11 +2640,11 @@ func idtablestakingDelegationDel_withdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0xb6, 0xed, 0x54, 0x52, 0x1d, 0x47, 0x45, 0x7d, 0xec, 0xd7, 0x70, 0x4a, 0x4e, 0xf5, 0x39, 0x8e, 0xda, 0x57, 0xea, 0x35, 0x5c, 0x33, 0xcd, 0xae, 0x27, 0x42, 0x6f, 0x3, 0xcd, 0x14, 0x31}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0x9, 0xa9, 0xbe, 0x99, 0x3e, 0x9a, 0x30, 0x27, 0x80, 0xe7, 0x17, 0x89, 0x21, 0xf2, 0xd3, 0x7d, 0x98, 0x8f, 0xf6, 0x2c, 0xc2, 0xb1, 0x96, 0x6, 0x8a, 0x98, 0x7e, 0xc2, 0xed, 0x7c, 0x58}} return a, nil } -var _idtablestakingDelegationDelegator_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\x4d\x8b\xa3\x40\x10\x86\xef\xfe\x8a\x3a\x05\x85\x45\xf7\x1c\x92\x80\xbb\x1a\x08\x1b\x92\xb0\x0a\xc3\x1c\xcb\xb6\xa3\x3d\x76\xba\xa5\x2d\x31\x43\xe2\x7f\x1f\x4c\x26\x3d\x91\x19\xe6\xa3\x8f\xcd\x53\xf5\xbc\xf5\x8a\x43\xad\x0d\xc1\x52\xea\x6e\x15\xa5\x98\x49\x9e\x10\x56\x42\x15\xb0\x37\xfa\x00\xbf\x8f\xab\x28\xde\xa4\xab\xf4\x31\x0d\xff\xac\xe3\x30\x8a\xfe\xc7\x49\xe2\xdc\x4d\xa5\xba\xe2\xea\x06\x2f\xd7\xdb\x87\x74\xfb\x2f\xde\xdc\x40\x27\x08\x20\x2d\x45\x03\x64\x50\x35\xc8\x48\x68\x05\x98\xe7\x0d\x20\xd4\x6d\x26\x05\x83\x9c\x4b\x5e\x20\x69\x03\x0c\x6b\xcc\x84\x14\xf4\x0c\xa4\x01\x15\x20\x63\xba\x55\x04\x9d\xa0\x72\xd8\x84\x0a\xf8\x51\x34\x34\xc4\xdb\xe8\x9c\x47\x76\x54\x67\x4f\x9c\x91\xe3\xdc\x6b\x4e\x8e\x03\x00\x50\x1b\x5e\xa3\xe1\x2e\x32\x46\x53\x08\x5b\x2a\xc3\xeb\x5a\xef\x46\x0c\x4f\xec\x07\x1b\xf9\x99\x36\x46\x77\xb3\xc9\xfb\x42\xfc\x91\x71\xe1\x0e\x27\x4f\x3f\x28\xce\xb7\x4c\x42\xda\x60\xc1\x77\x48\xa5\x07\xf3\x39\x28\x21\xe1\x7c\xb6\xca\xe1\x5d\x9c\x05\xa7\xbf\xf6\xf4\xd9\xe4\xf4\x95\x7b\x77\x29\xae\x5f\xb8\xc1\xb5\xc2\x60\x2f\x75\xf7\x4a\x5a\xc8\xf3\x59\xc9\x59\xe5\x7a\xd6\x77\x1a\x99\x0d\xa7\xd6\x28\xfb\xd5\xbf\x55\x71\xc9\x24\x85\xaa\x7e\x12\x65\xb4\xfb\xb3\x5c\xbf\x46\x24\xa1\x29\x38\x7d\xbb\x46\x3b\x7b\xbd\xaa\x77\xfa\x97\x00\x00\x00\xff\xff\x74\x62\xf7\x3a\xc0\x02\x00\x00" +var _idtablestakingDelegationDelegator_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\xcb\xae\x9b\x30\x10\x86\xf7\x7e\x8a\x51\x16\x11\x48\x11\xec\xa3\x5c\xd4\x26\xaa\xd4\x4d\x1b\x29\x51\xf7\x83\x19\xc0\x8d\x63\x23\x7b\x10\xad\x12\xde\xbd\x82\x34\x04\x4e\x72\x6e\xde\x81\x67\xe6\xff\xfc\x8d\x3a\x95\xd6\x31\x7c\xd3\xb6\xfe\xbe\x3d\x60\xa2\x69\xcf\x78\x54\x26\x87\xcc\xd9\x13\x4c\x1e\x2f\x26\x62\xd0\x73\xb0\x47\x32\x83\xd2\xee\x7b\x22\x44\x1c\xc3\xa1\x50\x1e\xd8\xa1\xf1\x28\x59\x59\x03\x98\xa6\x1e\x10\xca\x2a\xd1\x4a\x42\x4a\x9a\x72\x64\xeb\x40\x62\x89\x89\xd2\x8a\xff\x02\x5b\x40\x03\x28\xa5\xad\x0c\x43\xad\xb8\x68\x27\xa1\x01\xfa\xa3\x3c\xb7\x54\x3f\x6c\x4a\xdb\xbe\xd5\x26\xbf\x49\xb2\x10\xc3\x98\xb3\x10\x00\x00\xa5\xa3\x12\x1d\x05\x28\x25\xcf\x01\x2b\x2e\x82\xaf\xd6\x39\x5b\xff\x42\x5d\xd1\x0c\x36\xb7\x54\x45\x3e\x84\xe9\x97\x6b\x66\x78\x6b\x6f\x8f\xca\x5a\x14\x8e\x3c\x5b\x87\x39\x45\x49\xd7\xbf\xe8\x66\x3d\x7a\x89\x7a\xac\x9f\xb5\x21\x17\xc2\xf4\x49\xcd\x08\x7f\x15\xb4\xe2\xe6\x4f\xe4\xdf\x67\xed\xaf\xd9\x3b\xe4\x22\x84\xe5\x12\x8c\xd2\x70\xb9\xf4\x88\xed\xe9\x18\xe5\xe0\x39\x51\x4e\xbc\x98\x9e\xdf\x8b\xdf\x75\x8b\x68\x56\x41\x7c\x5d\x49\x9c\x69\x5b\xff\xaf\xec\x8b\xc2\x75\x24\x0b\x92\xc7\x20\x84\xf5\x1a\x32\xd4\x9e\xfa\xf0\xf3\x08\xc3\x11\x57\xce\xf4\xbf\x9a\xbb\x47\x4d\x7c\x5f\xf7\x06\x4b\x58\x3e\x61\xbe\x49\x56\xde\x57\xf4\x19\xfa\x11\xc4\x07\x55\xf6\x3d\xa1\x78\xdd\x62\x67\xc5\x17\xe3\x80\xe1\x3b\x66\xe3\x35\xf0\x1c\xde\x32\xf9\x22\xb3\x11\xcd\xbf\x00\x00\x00\xff\xff\xe8\x8a\xcb\x49\x7c\x03\x00\x00" func idtablestakingDelegationDelegator_add_capabilityCdcBytes() ([]byte, error) { return bindataRead( @@ -2600,11 +2660,11 @@ func idtablestakingDelegationDelegator_add_capabilityCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/delegator_add_capability.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8c, 0xbe, 0xa, 0x4e, 0xbc, 0x74, 0xc8, 0x4f, 0xad, 0xc7, 0xaa, 0x94, 0x93, 0x8, 0xc7, 0x22, 0x42, 0xa1, 0x73, 0xae, 0xad, 0xe8, 0xe8, 0xff, 0xbb, 0x58, 0xf6, 0x30, 0xb, 0xef, 0x9, 0xa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xc2, 0x21, 0x2e, 0xa2, 0xb9, 0x97, 0xd6, 0xee, 0x84, 0x4, 0xc0, 0x18, 0x6c, 0x12, 0xc9, 0x80, 0x6f, 0xd0, 0x3a, 0xc6, 0xcc, 0xa3, 0x72, 0x33, 0xa7, 0xe4, 0xde, 0xb6, 0x7e, 0xfd, 0x12}} return a, nil } -var _idtablestakingDelegationGet_delegator_committedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xde\xd1\x82\xb4\xa2\xe2\xa1\xe0\xa1\xba\x29\x2c\x88\x07\x93\x1e\x3c\x6e\x92\x49\xba\x34\x3b\x13\x36\x13\x2c\x88\xff\x5d\x62\x68\x15\xe9\x69\x98\xc7\xe3\x7b\x7c\x21\xf6\x92\x14\xdb\x4e\x3e\x9c\x2d\x7c\xd9\x51\xae\xfe\x10\xb8\x45\x93\x24\xe2\xe6\xe8\x6c\xf6\x5a\xb8\xe2\xbd\xd8\x3c\xbd\x64\x1b\x6b\xdf\xb2\x3c\x37\x66\xb5\x42\xb1\x0f\x03\x86\x2a\x85\x5e\x91\x48\xc7\xc4\x03\x74\x4f\x28\x7d\xe7\xb9\x22\x48\x83\x4a\x62\x0c\xaa\x54\x43\xe5\x40\x3c\x4c\x99\x47\x4d\x1d\xb5\x5e\x25\x19\xd3\x8f\x25\x9a\x91\x11\x7d\xe0\x2b\x96\x9a\x9c\x5d\x23\xd7\x14\xb8\xbd\xfe\xed\x4d\xe1\xce\xb1\xde\xdd\x2e\xd6\xd8\x6d\xc3\xf1\xe1\x1e\x9f\x06\x00\x3a\xd2\xa9\xe6\xb8\x11\x3c\x5e\x90\x58\xda\x33\x83\x1b\x39\x2f\xcc\xf7\xdf\xc2\x9f\x67\xf1\x03\x9f\xa5\x4e\xfc\xe5\xac\xf0\x7c\x52\x32\x5f\xdf\x01\x00\x00\xff\xff\xd0\x83\xf2\x49\x3b\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_committedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\x03\x31\x10\x85\xef\xf9\x15\x8f\x9e\xba\x20\x2d\xa8\x78\x28\x78\x72\x29\xec\xb9\xed\x0f\x98\x66\x27\xdb\xd0\x64\xa6\x24\x53\x14\xc4\xff\x2e\xeb\xd2\x55\xd4\x53\xc8\x9b\xc7\xf7\xf8\x62\xbe\x68\x31\x6c\x93\xbe\x76\xed\x9e\x8e\x89\x77\x46\xe7\x28\x03\x42\xd1\x8c\xc5\xdf\xc3\xc2\xb9\xf5\x1a\xfb\x53\xac\xa8\xbe\xc4\x8b\xa1\xb0\x5d\x8b\x54\xd8\x89\x71\xa4\x44\xe2\x19\x1a\xe0\x35\xe7\x68\xc6\x3d\x4c\xcf\x2c\x75\xcc\x08\x3d\x27\x1e\xc8\xb4\x38\x47\xde\x73\xad\x4b\x4a\xa9\x41\xb8\x0a\x32\x45\x59\x8a\xf6\xdc\xb5\x1b\xec\xac\x44\x19\xee\xbe\xfb\x63\x78\xe8\xc4\x1e\xee\x9b\x0d\x0e\xdb\xf8\xf6\xf4\x88\x77\x07\x00\x89\x6d\xac\x75\x12\x14\xcf\xff\xa8\xac\xda\x99\x21\x41\xe7\x85\xe9\xfd\xb5\xf0\xe3\xd3\x7c\xc1\x27\xb9\x1b\x7f\x35\xa9\xbc\xdc\xd4\xdc\xc7\x67\x00\x00\x00\xff\xff\xf7\xec\x35\xd4\x41\x01\x00\x00" func idtablestakingDelegationGet_delegator_committedCdcBytes() ([]byte, error) { return bindataRead( @@ -2620,11 +2680,11 @@ func idtablestakingDelegationGet_delegator_committedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_committed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0xb5, 0xf, 0xba, 0xf, 0x7b, 0x39, 0xf1, 0x31, 0xef, 0x95, 0x64, 0x1f, 0x4, 0xc8, 0xd9, 0xc1, 0xc4, 0x5b, 0x9a, 0xb2, 0x85, 0x44, 0xde, 0x8d, 0x99, 0x72, 0x68, 0x5, 0xc4, 0x36, 0x2b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0x47, 0x67, 0x61, 0x72, 0x82, 0xe7, 0x5, 0x71, 0x85, 0xa0, 0x71, 0x55, 0x61, 0x1, 0x5c, 0x1e, 0x63, 0xf7, 0x20, 0xd0, 0xe0, 0x44, 0x4f, 0x2d, 0xf0, 0xd3, 0x90, 0x56, 0x35, 0xa3, 0x92}} return a, nil } -var _idtablestakingDelegationGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8e\x41\x4b\xc4\x30\x10\x46\xef\xf9\x15\xdf\xd1\x05\x71\x45\x6f\x7b\x5b\x49\x85\x80\x78\x30\xf1\xe0\x71\x76\x9b\xb6\x83\xe9\xa4\x24\x53\x56\x10\xff\xbb\x14\xa5\x8a\x08\x7b\x1a\xe6\xe3\xc1\x7b\x3c\x4e\xb9\x28\xee\x53\x3e\x39\x1b\xe8\x90\xa2\x57\x7a\x65\xe9\xd1\x95\x3c\xe2\xfa\xcd\xd9\xe6\x31\xb8\xf0\x12\xf6\x77\x0f\xcd\xde\xda\xa7\xc6\x7b\x63\xb6\x5b\x84\x81\x2b\xea\xb1\xf0\xa4\x28\x51\xe7\x22\x15\x94\x12\x74\x88\x60\xe9\x32\xa8\xd6\x7c\x64\xd2\xd8\xe2\xc4\x3a\x80\xd0\xc6\x14\x7b\xd2\x5c\x8c\x99\xe6\x03\xba\x59\x30\x12\xcb\x85\xe4\x36\x3a\xbb\x83\xd7\xc2\xd2\x5f\xfe\x70\xcb\xf8\xec\x44\x6f\x6f\x36\xbb\x7f\x1a\xaf\xec\x0a\x2e\xc2\x77\x03\xe0\xbb\xe5\x2c\xbd\x4a\xbf\xee\x1f\xe9\xaf\x67\x63\x3e\x3e\x03\x00\x00\xff\xff\x51\x05\x16\x8f\x25\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8e\xc1\x4a\x87\x40\x10\x87\xef\xfb\x14\x3f\x3c\x29\x44\x42\xdd\x3c\x4b\xe0\x59\x7b\x80\x69\x1d\x75\x68\x9d\x95\xdd\x11\x0f\xd1\xbb\x87\x14\x16\x15\xfc\x4f\xc3\xcc\x7c\xf0\x7d\xb2\x6e\x31\x19\x9e\x42\x3c\xba\x76\xa0\x97\xc0\xbd\xd1\xab\xe8\x8c\x29\xc5\x15\xc5\xdf\x47\xe1\x5c\x5d\x63\x58\x24\x23\xfb\x24\x9b\x21\xb1\xed\x49\x33\x28\x04\xd8\xc2\x10\x9d\x22\x28\xe7\xe8\x85\x8c\x47\x1c\x62\x0b\x08\x23\x07\x9e\xc9\x62\x72\x8e\xbc\xe7\x9c\x4b\x0a\xa1\xc2\xb4\x2b\x56\x12\x2d\x35\x8e\xdc\xb5\x0d\x7a\x4b\xa2\xf3\xdd\x37\x7f\x1e\x9f\x3b\xb5\xc7\x87\xaa\xf9\xa7\xf4\xbe\xbd\xc0\x53\xfc\xe6\x00\x7c\x35\xdd\xa4\x2f\xe9\xe7\xfc\x25\xfd\xb1\x54\xee\xfd\x23\x00\x00\xff\xff\x23\x78\xfb\x5e\x2b\x01\x00\x00" func idtablestakingDelegationGet_delegator_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -2640,11 +2700,11 @@ func idtablestakingDelegationGet_delegator_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x21, 0xa8, 0x94, 0x85, 0xd9, 0xe1, 0x14, 0x1f, 0x3d, 0x6a, 0x33, 0xd5, 0xbe, 0xc1, 0x84, 0x39, 0xc8, 0x4a, 0x14, 0x55, 0x44, 0xdc, 0xa6, 0x75, 0xae, 0x4f, 0xff, 0xc4, 0xc4, 0xeb, 0xd6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0xec, 0xa2, 0x5c, 0x37, 0x3d, 0x48, 0x22, 0x10, 0x24, 0xc6, 0xbc, 0x82, 0x80, 0x47, 0xaf, 0xd2, 0xac, 0xbf, 0xb3, 0xc5, 0x14, 0x25, 0x8f, 0x5b, 0x8f, 0x80, 0x5e, 0x86, 0x97, 0x9e, 0x72}} return a, nil } -var _idtablestakingDelegationGet_delegator_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x4f\x4b\xc3\x40\x10\xc5\xef\xfb\x29\x1e\x3d\x48\x02\xd2\x78\x2e\x6a\x89\x4d\x85\x80\x14\xb1\xb9\x78\xdc\x64\x27\xe9\xea\x76\x27\x6c\x26\x54\x29\xfd\xee\xd2\xc6\xfe\x11\x0a\xee\x69\x78\xfb\x78\xbf\x99\x67\xd7\x2d\x07\xc1\xb3\xe3\x4d\x9e\x15\xba\x74\xb4\x14\xfd\x69\x7d\x83\x3a\xf0\x1a\x77\x5f\x79\x36\x5f\x14\x79\xf1\x5e\xa4\x4f\x2f\xf3\x34\xcb\xde\xe6\xcb\xa5\x52\x49\x82\x62\x65\x3b\x74\x55\xb0\xad\xa0\x21\xe9\xa0\x9d\x83\xac\x08\xd6\xd7\x0c\x5d\x72\x2f\xd0\x30\xe4\xa8\xd1\xc2\x01\xda\x1b\x04\x92\x3e\xf8\x0e\x56\x94\x6a\xfb\x12\x75\xef\xb1\xd6\xd6\x47\xda\x98\x40\x5d\x37\x41\x3a\x0c\xf1\xe4\xca\x4a\xe3\xec\x18\x96\xef\x11\x5b\xa5\x00\xc0\x91\x5c\x50\x1e\xf6\xbb\xa4\x55\xc5\xbd\x97\x63\x6a\x7c\xf0\xed\xdf\xb8\x21\x99\xe9\x56\x97\xd6\x59\xf9\xbe\xbf\xd9\x5e\x81\x2c\xd8\xd0\x09\xf4\xda\x97\xce\x56\xbb\xc7\x28\x69\x0f\x53\x52\x3b\xde\xfc\x3a\x4f\xa6\x8b\xfc\x92\x43\xe0\x4d\x74\x56\xa6\x53\xb4\xda\xdb\x2a\x1a\xcd\xb8\x77\x06\x9e\x05\x83\x09\x81\x6a\x0a\xe4\x2b\x82\xf0\xc5\x05\x5c\x7e\x50\x25\xa3\x78\xb8\x6e\x68\xec\xdf\x32\x22\xcf\x86\xf2\x6c\x72\xce\x19\x0f\xca\xed\x59\xf9\xfb\x6d\x4d\xac\x76\xea\x27\x00\x00\xff\xff\x48\xe7\x60\xcd\xff\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\xc1\x6a\xf3\x30\x10\x84\xef\x7a\x8a\xc1\x87\x1f\x1b\x7e\xec\x7b\x68\x1b\x42\x43\x21\x97\x52\x68\x5e\x60\x2d\xad\x13\xb5\x8a\xd6\x48\x6b\x72\x08\x79\xf7\x92\xb8\x89\x53\x1a\xa8\x4e\xcb\xee\x30\xdf\x68\xfc\xae\x97\xa4\x78\x09\xb2\x5f\x2d\xd7\xd4\x06\x7e\x57\xfa\xf4\x71\x83\x2e\xc9\x0e\xc5\xef\x43\x61\x4c\xd3\x60\xbd\xf5\x19\xd9\x26\xdf\x2b\x36\xac\x19\x14\x02\x74\xcb\xf0\xb1\x13\x50\x2b\x83\x82\xe0\x38\xf0\x86\x54\x12\x28\x3a\x24\xd6\x21\xc5\x0c\xaf\xc6\x90\xb5\x9c\x73\x49\x21\x54\xe8\x86\x88\x1d\xf9\x58\x92\x73\x89\x73\x9e\x61\x31\x0e\xd5\xec\x4e\xb0\x7a\x79\x31\x5d\x9d\x50\x07\x63\x00\x20\xb0\xde\xd0\x1e\x4f\x99\x16\xd6\xca\x10\xf5\xe2\x5a\x9d\x75\xa7\x57\x5b\xea\xa9\xf5\xc1\xab\xe7\x5c\xb7\x92\x92\xec\x1f\xfe\x1d\xee\xa0\x5e\xc5\xf1\x15\xf7\x36\xb4\xc1\xdb\xe3\x53\xd9\xf4\xe7\xa9\xe9\x82\xec\xbf\x95\x57\xd1\x44\x99\xcf\xd1\x53\xf4\xb6\x2c\x9e\x65\x08\x0e\x51\x14\x23\x0b\x89\x3b\x4e\x1c\x2d\x43\xe5\x26\xb5\xb4\x1f\x6c\xb5\xa8\xc6\x1f\x8d\x6d\xfd\x59\x40\x19\xc5\xf1\x6a\x39\x9b\x7c\xea\x71\xf3\x7f\xda\xfc\x3c\x7b\x57\x99\xa3\xf9\x0a\x00\x00\xff\xff\xb9\xc7\x94\xa1\xf9\x01\x00\x00" func idtablestakingDelegationGet_delegator_info_from_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -2660,11 +2720,11 @@ func idtablestakingDelegationGet_delegator_info_from_addressCdc() (*asset, error } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_info_from_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa, 0x76, 0xb3, 0x28, 0xb8, 0xcd, 0xae, 0x9, 0x22, 0x66, 0x1, 0x9, 0x23, 0x30, 0xd7, 0x40, 0x20, 0x33, 0x70, 0x33, 0xec, 0x8, 0x11, 0x57, 0x5f, 0xab, 0x83, 0x13, 0x9, 0xa3, 0xb2, 0xa9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x6d, 0xf0, 0x20, 0xdc, 0x44, 0xad, 0x75, 0x83, 0x22, 0xdd, 0xd0, 0xfe, 0x92, 0x57, 0x2d, 0xf0, 0xc2, 0x14, 0x1b, 0x47, 0x3a, 0xe7, 0x2c, 0xc6, 0xc0, 0xeb, 0x5b, 0xa3, 0xba, 0x2e, 0xa9}} return a, nil } -var _idtablestakingDelegationGet_delegator_requestCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xde\xd1\x82\xb4\xa2\xe2\xa1\xe0\xa1\xb2\x2d\x2c\x88\x87\x66\x73\xf0\xb8\x69\x26\xe9\xd2\x64\x26\xee\x4e\xb0\x20\xfe\x77\x69\x6b\xab\x88\xa7\x61\x1e\x8f\xef\xf1\xc5\x7e\x90\xa4\x58\x75\xf2\xee\xac\x0f\x55\x47\x85\x86\x5d\xe4\x16\x4d\x92\x1e\x37\x7b\x67\x97\x2f\xde\xf9\x57\xbf\x78\x7a\x5e\x2e\xac\x5d\x2f\x8b\xc2\x98\xd9\x0c\x7e\x1b\x33\xf2\x26\xc5\x41\x91\x48\xc7\xc4\x19\xba\x25\x24\x7a\x1b\x29\x2b\xd5\x18\x39\x7f\xb3\xaa\xd0\x05\xde\x10\xa4\x41\x40\x4d\x1d\xb5\x41\x25\x19\x33\x8c\x15\x9a\x91\xd1\x87\xc8\x57\x2c\x35\x39\x3b\x47\xa1\x29\x72\x7b\xfd\xd3\x3b\x84\xa5\x63\xbd\xbb\x9d\xcc\x51\xae\xe2\xfe\xe1\x1e\x1f\x06\x00\x3a\xd2\x43\xcd\x71\x23\x78\xfc\x47\x62\x6a\x2f\x0c\x6e\xe4\xb2\x70\xba\x7f\x16\x7e\x3d\x93\x23\xfc\x24\x75\xe6\x4f\x55\x76\xc4\x79\x7d\xb6\xf3\x52\x1e\xf5\xc8\x7c\x7e\x05\x00\x00\xff\xff\xa8\x39\xca\x4b\x44\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_requestCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4a\xc3\x40\x10\x86\xef\xfb\x14\x3f\x3d\x35\x20\x2d\xa8\x78\x28\x78\x0b\x85\x5c\x6d\xf2\x00\xd3\x64\x36\x5d\xba\x99\xa9\xbb\xb3\x28\x88\xef\x2e\x6d\x6d\x15\xed\x69\x98\x99\x9f\xef\xe7\x0b\xd3\x41\x93\x61\x1d\xf5\xad\xa9\x5b\xda\x46\xde\x18\xed\x83\x8c\xf0\x49\x27\xcc\xfe\x3f\x66\xce\x2d\x97\x68\x77\x21\x23\xf7\x29\x1c\x0c\x89\xad\x24\xc9\xb0\x1d\x23\xf1\x6b\xe1\x6c\x3c\xa0\x48\xfe\x26\x6d\x29\x92\xf4\x0c\xf5\x20\x0c\x1c\x79\x24\xd3\xe4\x1c\xf5\x3d\xe7\x3c\xa7\x18\x2b\xf8\x22\x98\x28\xc8\x5c\x74\xe0\xa6\x5e\x61\x63\x29\xc8\x78\xf7\x93\x3f\x1e\xbb\x46\xec\xe1\xbe\x5a\xa1\x5b\x87\xf7\xa7\x47\x7c\x38\x00\x88\x6c\xc7\x58\x23\x5e\xf1\x7c\x43\x65\x51\x5f\x19\xe2\xf5\xda\x70\x9e\x7f\x1a\x7e\x2d\xd5\x09\x7e\x96\xbb\xf0\x17\xa6\x7b\x96\xfc\x72\xb1\x6c\xb5\x3b\x69\xb2\xfb\xfc\x0a\x00\x00\xff\xff\xac\xc1\x7c\x54\x4a\x01\x00\x00" func idtablestakingDelegationGet_delegator_requestCdcBytes() ([]byte, error) { return bindataRead( @@ -2680,11 +2740,11 @@ func idtablestakingDelegationGet_delegator_requestCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_request.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0x6, 0x0, 0x57, 0x46, 0x94, 0xda, 0x7f, 0x98, 0xf0, 0x3a, 0xb8, 0xa9, 0xe7, 0xe4, 0x9a, 0xea, 0xbe, 0xf6, 0xe9, 0xbe, 0x9e, 0x8a, 0x20, 0xad, 0x44, 0x2, 0x5d, 0x20, 0xa9, 0x12, 0xb8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb3, 0xbb, 0x41, 0xe6, 0xc4, 0x7c, 0xfd, 0xd9, 0xbd, 0x61, 0xf5, 0x8b, 0xe7, 0x6b, 0x66, 0x9e, 0xb3, 0x1c, 0x8b, 0xe3, 0x1f, 0xcf, 0x60, 0x5b, 0x7d, 0x90, 0x27, 0x78, 0xc9, 0x89, 0x7c, 0x74}} return a, nil } -var _idtablestakingDelegationGet_delegator_rewardedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xde\xd1\x82\xb4\xa2\xe2\xa1\xe0\xa1\xb2\x29\x2c\x88\x87\x66\x7b\xf0\xb8\x69\x66\xd3\xa5\x9b\xd9\xb0\x99\xd0\x82\xf8\xdf\x25\x46\xa3\x88\xa7\x61\x1e\x8f\xef\xf1\x85\xb6\x4b\x59\xb0\x8d\xe9\x6c\xb4\x75\x55\xa4\x52\xdc\x29\x70\x03\x9f\x53\x8b\x9b\x8b\xd1\xc5\x8b\x35\xf6\xd5\x6e\x9e\x9e\x8b\x8d\xd6\xbb\xa2\x2c\x95\x5a\xad\x60\x8f\xa1\x47\x7f\xc8\xa1\x13\x64\x92\x21\x73\x0f\x39\x12\x2a\x17\x1d\x1f\x08\xc9\x23\xd3\xd9\xe5\x9a\x6a\x48\x3a\x11\xf7\x63\xe4\x50\x53\xa4\xc6\x49\xca\x4a\x75\x43\x05\x3f\x30\x5a\x17\xf8\x8a\x53\x4d\x46\xaf\x51\x4a\x0e\xdc\x5c\xff\xf4\xc6\x70\x6f\x58\xee\x6e\x17\x6b\xec\xb7\xe1\xf2\x70\x8f\x37\x05\x00\x91\x64\xac\x19\xf6\x09\x8f\xff\x38\x2c\xf5\xcc\x60\x9f\xe6\x85\xe9\xfe\x59\xf8\xf5\x2c\x3e\xe1\x93\xd3\x37\x7f\x39\x29\xec\xbe\x8c\xd4\xfb\x47\x00\x00\x00\xff\xff\x68\x0c\xb5\xcb\x39\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_rewardedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x1e\x3d\x35\x20\x2d\xa8\x78\x28\x78\x0b\x85\x5c\x6d\xfb\x03\xa6\xc9\x6c\xba\x74\x33\x53\x66\xa7\x54\x10\xff\xbb\xc4\x68\x15\xed\x69\xd9\x37\x8f\xef\xf1\xa5\xe1\xa4\xe6\x58\x67\xbd\x34\xf5\x96\xf6\x99\x37\x4e\xc7\x24\x3d\xa2\xe9\x80\xd9\xff\xc3\x2c\x84\xe5\x12\xdb\x43\x2a\x28\xad\xa5\x93\xc3\xd8\xcf\x26\x05\x7e\x60\xec\x29\x93\xb4\x0c\x8d\x30\xbe\x90\x75\xdc\xc1\xf5\xc8\x52\xc6\x88\xd0\x71\xe6\x9e\x5c\x2d\x04\x6a\x5b\x2e\x65\x4e\x39\x57\x88\x67\xc1\x40\x49\xe6\xa2\x1d\x37\xf5\x0a\x1b\xb7\x24\xfd\xdd\x4f\x7f\x0c\x77\x8d\xf8\xc3\x7d\xb5\xc2\x6e\x9d\x5e\x9f\x1e\xf1\x16\x00\x20\xb3\x8f\xb5\x46\xa2\xe2\xf9\x86\xc9\xa2\xbe\x32\x24\xea\x75\x61\x7a\xff\x2c\xfc\xfa\x54\x9f\xf0\xc9\xed\x9b\xbf\x98\x54\x5e\xbe\xcc\xc2\xfb\x47\x00\x00\x00\xff\xff\x43\x2a\x44\xd3\x3f\x01\x00\x00" func idtablestakingDelegationGet_delegator_rewardedCdcBytes() ([]byte, error) { return bindataRead( @@ -2700,11 +2760,11 @@ func idtablestakingDelegationGet_delegator_rewardedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_rewarded.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0xe2, 0x1d, 0xb1, 0x8f, 0x92, 0x3c, 0xb3, 0x88, 0xe3, 0xf7, 0x4a, 0xc, 0xdd, 0x45, 0xa6, 0x56, 0x82, 0x78, 0xe4, 0x42, 0xbb, 0xa3, 0xf8, 0x81, 0xc0, 0x20, 0x10, 0x3b, 0x3f, 0x1d, 0x5e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x49, 0x68, 0x38, 0xca, 0x24, 0xda, 0x96, 0x6b, 0xc3, 0x6d, 0x21, 0xa3, 0xf8, 0x87, 0x48, 0x9, 0x2b, 0x15, 0x80, 0xf6, 0x53, 0x30, 0xce, 0x89, 0x5d, 0x88, 0xbe, 0xba, 0xd, 0xab, 0x52, 0x88}} return a, nil } -var _idtablestakingDelegationGet_delegator_stakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\x03\x31\x10\x85\xef\xf9\x15\xef\x68\x41\x5a\x51\xf1\x50\xf0\x50\x49\x0b\x01\xf1\xe0\xa6\x07\x8f\xd9\xee\x64\x1b\x36\x3b\x59\x92\x59\x2c\x88\xff\x5d\xb6\x8b\x55\xc4\xd3\x30\x8f\xc7\xf7\xf8\x42\x3f\xa4\x2c\xd8\xc5\xf4\x6e\xb4\x75\x75\xa4\x4a\x5c\x17\xb8\x85\xcf\xa9\xc7\xcd\xc9\xe8\xed\x8b\x35\xf6\xcd\x6e\x9e\x9e\xb7\x1b\xad\x5f\xb7\x55\xa5\xd4\x6a\x05\x7b\x0c\x05\xe5\x90\xc3\x20\xc8\x24\x63\xe6\x02\x39\x12\x6a\x17\x1d\x1f\x08\xc9\xa3\x88\xeb\xa8\x81\xa4\x8e\xb8\x4c\x81\x43\x43\x91\x5a\x27\x29\x2b\x35\x8c\x35\xfc\xc8\xe8\x5d\xe0\x2b\x4e\x0d\x19\xbd\x46\x25\x39\x70\x7b\xfd\xd3\x9b\xc2\xbd\x61\xb9\xbb\x5d\xac\xb1\xdf\x85\xd3\xc3\x3d\x3e\x14\x00\x44\x92\xa9\x66\xd8\x27\x3c\xfe\x63\xb0\xd4\x17\x06\xfb\x74\x59\x98\xef\x9f\x85\x5f\xcf\xe2\x0c\x9f\x8d\xbe\xf9\xcb\x59\xa1\x3a\xfb\xa8\xcf\xaf\x00\x00\x00\xff\xff\xb5\xc8\x55\xe1\x35\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_stakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\x21\xa7\x18\x4a\x02\x6d\xe9\x21\xd0\x9b\x09\xf8\xec\xe4\x03\x36\xf2\xca\x11\x96\x77\x83\xb4\xa1\x85\xd2\x7f\x2f\x8e\xa9\x5b\xda\x9c\x84\x66\x87\x37\xbc\x38\x5e\x34\x1b\xf6\x49\xdf\x9a\xfa\x40\xa7\xc4\xad\xd1\x10\xa5\x47\xc8\x3a\x62\xf5\xff\xb0\x72\x6e\xbb\xc5\xe1\x1c\x0b\x8a\xcf\xf1\x62\xc8\x6c\xd7\x2c\x05\x76\x66\x9c\x28\x91\x78\x86\x06\x14\xa3\x81\x3b\x98\x0e\x2c\x65\x0a\x08\x1d\x27\xee\xc9\x34\x3b\x47\xde\x73\x29\x6b\x4a\xa9\x42\xb8\x0a\x46\x8a\xb2\x16\xed\xb8\xa9\x77\x68\x2d\x47\xe9\x1f\x7e\xfa\x53\x78\x6c\xc4\x9e\x1e\xab\x1d\x8e\xfb\xf8\xfe\xf2\x8c\x0f\x07\x00\x89\x6d\xaa\x35\x12\x14\xaf\x77\x3c\x36\xf5\xc2\x90\xa0\xcb\xc2\xfc\xfe\x59\xf8\xf5\xa9\x6e\xf0\xd9\xec\x9b\xbf\x99\x55\xda\x9b\x97\xfb\xfc\x0a\x00\x00\xff\xff\xb6\x0e\x61\x8e\x3b\x01\x00\x00" func idtablestakingDelegationGet_delegator_stakedCdcBytes() ([]byte, error) { return bindataRead( @@ -2720,11 +2780,11 @@ func idtablestakingDelegationGet_delegator_stakedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_staked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfb, 0x1a, 0x98, 0xb2, 0xb2, 0x34, 0xae, 0x31, 0x6d, 0x97, 0xe8, 0xb4, 0x15, 0x21, 0x0, 0xd9, 0xcc, 0x76, 0xb5, 0x42, 0x72, 0xc5, 0x28, 0x29, 0x17, 0x94, 0x27, 0x49, 0x89, 0x4a, 0x83, 0xbb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0xa3, 0x50, 0xb5, 0xe3, 0xfd, 0x6a, 0x86, 0xd8, 0xd, 0x25, 0x9d, 0x1, 0xff, 0xb6, 0x29, 0x19, 0xea, 0xb3, 0x5e, 0x31, 0x71, 0x98, 0xc9, 0x61, 0x24, 0x8c, 0xc6, 0x53, 0x15, 0xa5, 0xee}} return a, nil } -var _idtablestakingDelegationGet_delegator_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4a\xf4\x40\x10\x84\xef\xf3\x14\x75\xfc\x17\x7e\x76\x45\xc5\xc3\x82\x87\x95\xc9\xc2\x80\x78\x30\xc9\xc1\xe3\x24\xe9\x64\x87\x4c\xba\xc3\xa4\x83\x0b\xe2\xbb\x4b\x0c\xae\x22\x9e\x9a\x2e\x8a\xaf\xf8\xc2\x30\x4a\x52\x1c\xa3\xbc\x3a\x5b\xf8\x2a\x52\xae\xbe\x0f\xdc\xa1\x4d\x32\xe0\xea\xec\x6c\xf6\x54\xb8\xe2\xa5\x38\x3c\x3c\x66\x07\x6b\x9f\xb3\x3c\x37\x66\xb7\x43\x71\x0a\x13\xa6\x3a\x85\x51\x91\x48\xe7\xc4\x13\xf4\x44\xa8\x7c\xf4\x5c\x13\xa4\xc5\xcc\x51\xea\x9e\x1a\xa8\xf4\xc4\xd3\x12\x79\x34\x14\xa9\xf3\x2a\xc9\x98\x71\xae\xd0\xce\x8c\xc1\x07\xfe\xc7\xd2\x90\xb3\x7b\xe4\x9a\x02\x77\xff\xbf\x7b\x4b\x58\x3a\xd6\x9b\xeb\xcd\x1e\xe5\x31\x9c\xef\x6e\xf1\x66\x00\x20\x92\x2e\x35\xc7\xad\xe0\xfe\x0f\x87\xad\xbd\x30\xb8\x95\xcb\xc2\x7a\x7f\x2d\xfc\x78\x36\x9f\xf0\xd5\xe9\x8b\xbf\x5d\x15\x4a\x9e\xd4\xf7\xd4\x98\xf7\x8f\x00\x00\x00\xff\xff\x38\x38\xde\x6a\x39\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x1e\x3d\x35\x20\x2d\xa8\x78\x28\x78\x0b\x85\x9c\xdb\xfc\x80\xe9\x66\x36\x5d\xb2\x99\x29\xbb\x13\x14\xc4\xff\x2e\x31\x18\x45\x3d\x2d\xfb\xe6\xf1\x3d\xbe\x38\xde\x34\x1b\x8e\x49\x5f\x9a\xfa\x4c\x97\xc4\x27\xa3\x21\x4a\x8f\x90\x75\xc4\xe6\xef\x61\xe3\xdc\x7e\x8f\xf3\x35\x16\x14\x9f\xe3\xcd\x90\xd9\xa6\x2c\x05\x76\x65\x5c\x28\x91\x78\x86\x06\x4c\x92\xd4\x0f\xdc\xc1\x74\x60\x29\x73\x44\xe8\x38\x71\x4f\xa6\xd9\x39\xf2\x9e\x4b\xd9\x52\x4a\x15\xc2\x24\x18\x29\xca\x56\xb4\xe3\xa6\x3e\xe0\x64\x39\x4a\x7f\xf7\xdd\x9f\xc3\xb6\x11\x7b\xb8\xaf\x0e\x68\x8f\xf1\xf5\xe9\x11\x6f\x0e\x00\x12\xdb\x5c\x6b\x24\x28\x9e\xff\x31\xd9\xd5\x2b\x43\x82\xae\x0b\xcb\xfb\x6b\xe1\xc7\xa7\xfa\x84\x2f\x6e\x5f\xfc\xdd\xa2\xd2\x4a\x31\x1a\xb8\x73\xef\x1f\x01\x00\x00\xff\xff\x17\x71\xde\xe9\x3f\x01\x00\x00" func idtablestakingDelegationGet_delegator_unstakedCdcBytes() ([]byte, error) { return bindataRead( @@ -2740,11 +2800,11 @@ func idtablestakingDelegationGet_delegator_unstakedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_unstaked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd2, 0xbf, 0x6e, 0x9a, 0xf7, 0x0, 0xbe, 0xa, 0x1e, 0x24, 0x27, 0xfd, 0x32, 0x5a, 0xe9, 0x93, 0xd, 0x78, 0x58, 0x6b, 0x3b, 0x89, 0x34, 0x82, 0x8, 0x4a, 0x9e, 0x8a, 0x86, 0xe9, 0x4b, 0xd2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0xc8, 0x77, 0xab, 0xbb, 0xa7, 0xd3, 0xbf, 0xfd, 0x5a, 0xfa, 0x9a, 0xce, 0x3f, 0xb2, 0x23, 0x98, 0x64, 0x8b, 0x20, 0x2a, 0x9f, 0x26, 0xb6, 0x78, 0xe5, 0xc, 0x1a, 0x6f, 0xa7, 0xf9, 0xcf}} return a, nil } -var _idtablestakingDelegationGet_delegator_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4a\x33\x31\x14\x85\xf7\x79\x8a\xb3\xfc\x0b\x3f\xad\xa8\xb8\x28\xb8\xa8\x64\x0a\x01\x71\xe1\x64\x16\x2e\x33\x6d\x32\x0d\xcd\xdc\x3b\x24\x77\xb0\x20\xbe\xbb\x8c\x63\xab\x88\xab\xcb\x3d\x1c\xbe\xc3\x17\xfb\x81\xb3\x60\x9b\xf8\xd5\x68\xeb\xda\xe4\x6b\x71\xc7\x48\x1d\x42\xe6\x1e\x57\x27\xa3\xab\x27\x6b\xec\x8b\xdd\x3c\x3c\x56\x1b\xad\x9f\xab\xba\x56\x6a\xb5\x82\x3d\xc4\x82\xb2\xcb\x71\x10\x64\x2f\x63\xa6\x02\x39\x78\xb4\x2e\x39\xda\x79\x70\xc0\x48\xe5\x0b\x26\x7c\xf4\x54\xa6\xcc\x61\xef\x93\xef\x9c\x70\x56\x6a\x18\x5b\x84\x91\xd0\xbb\x48\xff\x88\xf7\xde\xe8\x35\x6a\xc9\x91\xba\xff\xdf\xbd\x29\x6c\x0c\xc9\xcd\xf5\x62\x8d\x66\x1b\x4f\x77\xb7\x78\x53\x00\x90\xbc\x4c\x35\x43\x81\x71\xff\x87\xc4\x52\x5f\x18\x14\xf8\xb2\x30\xdf\x5f\x0b\x3f\x9e\xc5\x27\x7c\x96\x3a\xf3\x97\xb3\x42\x73\x56\x52\xef\x1f\x01\x00\x00\xff\xff\x59\x64\x08\x22\x3b\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\x03\x31\x10\x85\xef\xf9\x15\x8f\x9e\xba\x20\x2d\xa8\x78\x28\x78\x5b\x0a\x39\xb7\xfb\x03\xa6\xe9\x64\x1b\x9a\x9d\x29\xc9\x2c\x0a\xe2\x7f\x97\x75\x6d\x15\xf5\x14\xf2\xe6\xf1\x3d\xbe\x34\x5c\xb4\x18\xb6\x59\x5f\x7c\xbb\xa7\x43\xe6\x9d\xd1\x39\x49\x8f\x58\x74\xc0\xe2\xef\x61\xe1\xdc\x7a\x8d\xfd\x29\x55\xd4\x50\xd2\xc5\x50\xd8\xc6\x22\x15\x76\x62\x1c\x28\x93\x04\x86\x46\x8c\x52\xbf\x50\xa6\x67\x96\x3a\x65\x84\x23\x67\xee\xc9\xb4\x38\x47\x21\x70\xad\x4b\xca\xb9\x41\x1c\x05\x03\x25\x59\x8a\x1e\xd9\xb7\x1b\xec\xac\x24\xe9\xef\xbe\xfb\x53\xd8\x79\xb1\x87\xfb\x66\x83\x6e\x9b\x5e\x9f\x1e\xf1\xe6\x00\x20\xb3\x4d\x35\x2f\x51\xf1\xfc\x8f\xca\xaa\xbd\x31\x24\xea\x6d\x61\x7e\x7f\x2d\xfc\xf8\x34\x9f\xf0\x59\xee\xca\x5f\xcd\x2a\xdd\x55\xcd\xbd\x7f\x04\x00\x00\xff\xff\x4e\x43\x93\xce\x41\x01\x00\x00" func idtablestakingDelegationGet_delegator_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -2760,11 +2820,11 @@ func idtablestakingDelegationGet_delegator_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0xcc, 0xb4, 0xc7, 0x5b, 0x20, 0xa9, 0x46, 0xd8, 0x41, 0x41, 0x21, 0x21, 0x9e, 0x97, 0x29, 0x8a, 0x19, 0x72, 0x4e, 0x64, 0x3, 0x3a, 0xd5, 0x46, 0x41, 0xa6, 0x9f, 0xdf, 0x8d, 0xbb, 0xf6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7e, 0x24, 0x1a, 0xd4, 0x50, 0x1c, 0x82, 0xa3, 0x78, 0x5f, 0xcf, 0x98, 0x34, 0xf2, 0x69, 0x64, 0x7d, 0x4e, 0xb2, 0xf8, 0x97, 0x2b, 0x6d, 0xd5, 0x4d, 0x7f, 0x79, 0x31, 0xfb, 0xa5, 0x97, 0xda}} return a, nil } -var _idtablestakingDelegationGet_delegator_unstaking_requestCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4a\xf3\x40\x14\x85\xf7\xf3\x14\x67\xf9\x17\x7e\x5a\x51\x71\x51\x70\x51\x99\x14\x06\xc4\x45\x33\x59\xb8\x9c\x34\x37\xe9\xd0\xe4\x4e\x9c\xb9\x83\x05\xf1\xdd\x25\x8d\x56\x11\x57\x97\x7b\x38\x7c\x87\xcf\x0f\x63\x88\x82\x6d\x1f\x5e\x8d\xb6\xae\xee\xa9\x14\x77\xf4\xdc\xa1\x8d\x61\xc0\xd5\xc9\xe8\xe2\xc9\x1a\xfb\x6c\x37\x0f\x8f\xc5\x46\xeb\x5d\x51\x96\x4a\xad\x56\xb0\x07\x9f\x90\xf6\xd1\x8f\x82\x48\x92\x23\x27\xc8\x81\x50\xbb\xde\xf1\x9e\x10\x5a\x64\x4e\x9f\x30\x09\x47\xe2\x34\x65\x0e\x0d\xf5\xd4\x39\x09\x51\xa9\x31\xd7\x68\x33\x63\x70\x9e\xff\x71\x68\xc8\xe8\x35\x4a\x89\x9e\xbb\xff\xdf\xbd\x29\xac\x0c\xcb\xcd\xf5\x62\x8d\x6a\xeb\x4f\x77\xb7\x78\x53\x00\xd0\x93\x4c\x35\xc3\x6d\xc0\xfd\x1f\x12\x4b\x7d\x61\x70\x1b\x2e\x0b\xf3\xfd\xb5\xf0\xe3\x59\x9c\xe1\xb3\xd4\x17\x7f\x39\x2b\xec\xe8\x25\x53\x12\x6a\x6c\xa8\xce\x76\xa4\xde\x3f\x02\x00\x00\xff\xff\xd5\x52\xe0\xa9\x44\x01\x00\x00" +var _idtablestakingDelegationGet_delegator_unstaking_requestCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x1e\x3d\x35\x20\x2d\xa8\x78\x28\x78\x0b\x85\x5c\x6d\xf2\x03\xa6\xc9\x6c\xba\x74\x33\x53\x77\x27\x28\x88\xff\x5d\xd2\x68\x14\xf5\xb4\xec\x9b\xc7\xf7\xf8\xc2\x70\xd1\x64\xd8\x47\x7d\xa9\xca\x9a\x8e\x91\x0f\x46\xe7\x20\x3d\x7c\xd2\x01\xab\xbf\x87\x95\x73\xdb\x2d\xea\x53\xc8\xc8\x6d\x0a\x17\x43\x62\x1b\x93\x64\xd8\x89\x71\xa4\x48\xd2\x32\xd4\x63\x94\xfc\x89\x32\x3d\xb3\xe4\x29\x23\x74\x1c\xb9\x27\xd3\xe4\x1c\xb5\x2d\xe7\xbc\xa6\x18\x0b\xf8\x51\x30\x50\x90\xb5\x68\xc7\x55\xb9\xc3\xc1\x52\x90\xfe\xe6\xbb\x3f\x85\x4d\x25\x76\x77\x5b\xec\xd0\xec\xc3\xeb\xc3\x3d\xde\x1c\x00\x44\xb6\xa9\x56\x89\x57\x3c\xfe\xa3\xb2\x29\x17\x86\x78\x5d\x16\xe6\xf7\xd7\xc2\x8f\x4f\x71\x85\xcf\x72\x5f\xfc\xcd\xac\xf2\xc4\xcf\x23\x67\xe3\xae\xd6\xe6\x6a\xc9\xee\xfd\x23\x00\x00\xff\xff\x1d\xef\xbb\x1e\x4a\x01\x00\x00" func idtablestakingDelegationGet_delegator_unstaking_requestCdcBytes() ([]byte, error) { return bindataRead( @@ -2780,11 +2840,11 @@ func idtablestakingDelegationGet_delegator_unstaking_requestCdc() (*asset, error } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_unstaking_request.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0x11, 0x6f, 0xac, 0xf2, 0xc9, 0x38, 0x6a, 0x2f, 0x9d, 0x96, 0xd5, 0xe2, 0xfd, 0x20, 0x61, 0x12, 0xcd, 0xc8, 0xa8, 0x97, 0x82, 0x66, 0xa4, 0xec, 0xda, 0xde, 0xae, 0xdb, 0xc0, 0x2b, 0xf1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb7, 0xe, 0x2e, 0xcf, 0x7d, 0x6e, 0x43, 0x3d, 0x3f, 0x1c, 0x19, 0x96, 0x15, 0x58, 0x75, 0x47, 0x8, 0x3c, 0xc1, 0xd, 0x7, 0x76, 0x5f, 0x45, 0x84, 0xc5, 0x71, 0xa6, 0x4e, 0xc1, 0x3, 0x6a}} return a, nil } -var _idtablestakingDelegationRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\x41\x6f\x9b\x4c\x10\x86\xef\xfc\x8a\x51\x0e\x11\x96\x62\xf3\x1d\x3e\xf5\x80\x68\x22\xd7\xd8\x92\xd5\xc8\x89\x02\x6d\xd5\xe3\x7a\x19\xf0\xd6\xb0\x83\x86\xa1\x44\x8a\xfc\xdf\xab\xc5\xf5\x96\x54\xbe\x74\x2f\x8b\xc4\x33\xb3\xcf\x3b\x63\x9a\x96\x58\x60\x53\xd3\xb0\x4d\x73\xb5\xaf\x31\x13\x75\x34\xb6\x82\x92\xa9\x81\xff\x5e\xb7\xe9\x7a\x97\x6f\xf3\xef\xf9\xf2\xd3\xe3\x7a\x99\xa6\x2f\xeb\x2c\x0b\x26\x55\x39\x1d\xd1\x5e\xe0\xcd\xe3\xd3\xb7\xfc\xe9\xf3\x7a\x77\x01\x03\x61\x65\x3b\xa5\xc5\x90\x0d\x2d\x15\xb8\x4d\x63\xc8\x84\x8d\xad\xee\x40\x35\xd4\x5b\x89\xe1\xcb\xc6\xbc\x7e\xf8\x7f\x06\x6f\x41\x00\x00\xd0\x32\xb6\x8a\x31\x54\x5a\x4b\x0c\xcb\x5e\x0e\x4b\xad\x1d\xe9\x09\x77\x6a\x14\x28\x2f\xef\xbf\x60\x09\x1f\xc1\x15\x2c\xf6\xc4\x4c\x43\x72\xeb\xdd\x16\x5f\x55\x5f\xcb\x7d\xe8\x14\x63\x88\x3a\x21\x56\x15\x46\xbe\x76\xfc\x3d\xf3\x7d\xdd\x79\x78\x80\x56\x59\xa3\xc3\x9b\x15\xf5\x75\x01\x96\x04\xce\x7d\x81\xb1\x44\x46\xab\x11\x84\xc0\xc5\x85\xb1\xfe\x66\xf6\xc7\x2c\x8a\x60\xc5\xa8\x04\x41\x81\xc5\x01\x0a\xac\xb1\x52\x42\x0c\xb4\xff\x81\x5a\xa0\x24\x06\x39\x20\xb8\x79\xbc\xcb\x63\x71\x48\x3d\x9c\xcc\xaf\x6c\x65\xc1\x58\x99\x4e\x90\x77\x13\xd4\x0f\xf6\x7c\xdf\x81\xb8\x5c\xdd\x8a\x9a\xc6\x88\x60\x11\x43\x32\x9f\x8e\x6a\x31\x18\x39\x14\xac\x86\xf0\xb2\x81\xf3\x3d\x7b\x1f\x22\x13\x62\x1c\x45\xff\x4e\xe0\xa9\x71\xe2\x9d\xfa\x89\x61\x32\x9f\xca\x3b\x85\xf8\x9a\xbe\x27\xb2\xf3\x1a\x9e\x95\x1c\x26\xaf\x8e\xfd\x6a\x63\x8f\xc9\xed\xdb\x95\xea\x1d\x15\xe8\x3b\x3c\xf7\xfb\xda\xe8\xd3\x7d\x18\xb5\xe3\xd7\xb8\xd1\xdf\xe4\x54\x44\x71\x85\xf2\x0f\x32\xce\xe3\x14\x04\xa7\x5f\x01\x00\x00\xff\xff\x04\xd2\xf0\x2f\x1a\x03\x00\x00" +var _idtablestakingDelegationRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xcd\x8e\x9b\x30\x10\xbe\xf3\x14\xa3\x1c\x22\x90\x12\xb8\x54\x3d\x20\xba\xab\x8a\x28\xd2\x4a\xd5\x76\xd5\x6c\xbb\xe7\xc1\x0c\xe0\x2e\xd8\xc8\x1e\x4a\xa5\x55\xde\xbd\x32\x24\x5e\x68\x73\xa8\x2f\x16\xf8\x9b\xef\x67\x66\x64\xd7\x6b\xc3\x70\x6c\xf5\xf8\x70\x78\xc6\xa2\xa5\x13\xe3\xab\x54\x35\x54\x46\x77\xb0\xf9\xf7\x61\x13\x2c\x6a\x9e\xf5\x2b\xa9\x05\x74\xfa\x7e\x47\x0c\xaa\x96\x45\x4b\x2b\xd4\xf2\xdf\x26\x08\xd8\xa0\xb2\x28\x58\x6a\x15\x2a\x5d\xd2\xc3\x21\x85\x13\x1b\xa9\xea\x1d\x60\xa7\x07\xc5\x29\x7c\x3f\xca\xdf\x1f\x3f\x44\xf0\x16\x04\x00\x00\xbd\xa1\x1e\x0d\x85\x28\x04\xa7\x80\x03\x37\xe1\x89\xb5\xc1\x9a\x76\x90\x63\x8f\x85\x6c\x25\x4b\xb2\x11\x6c\x3f\x0b\xe1\x28\x7c\xa9\x3b\x2d\x31\x54\x57\xaf\xdf\xa8\x82\x4f\xe0\x98\x62\x3b\x73\xc4\x85\x36\x46\x8f\xd9\xc4\xbb\x72\x1b\xbf\x48\x6e\x4a\x83\x63\x04\x5b\x1f\x36\xfe\x81\x43\xcb\x77\xa1\x4b\x97\x42\x72\x21\x49\xbc\xc0\xf4\x1c\x79\x71\x77\xee\xef\xa1\x47\x25\x45\xb8\xc9\xf5\xd0\x96\xa0\x34\xc3\x2c\x0a\x86\x2a\x32\xa4\x04\x01\x6b\x38\x7e\xf9\xfa\x02\x53\xfd\x26\x7a\xb7\x9f\x24\x90\x1b\x42\x26\x40\x50\x34\x42\x49\x2d\xd5\xc8\xda\x80\x2e\x7e\x92\x60\xa8\xb4\x01\x6e\x08\x5c\x37\x57\xa1\x15\x8d\x07\x0f\xce\xf6\x37\x86\x1e\x1b\xaa\xa5\x65\x32\x8f\x0b\xa8\x1f\xcb\x7c\xef\x80\x5d\x2e\x9b\xeb\xae\x93\xcc\x54\xa6\x90\xed\x97\xfd\x8c\xc7\x4b\x9b\xc2\xeb\xfc\xe6\x3b\x5a\x87\x70\x23\xa3\xc9\xe8\xdf\x09\x3c\x6a\x35\x16\x8b\xbf\x28\xcc\xf6\xcb\x10\xce\x4a\x7a\x2b\x86\x47\x5c\xf6\xe2\x09\xb9\x89\xd6\x1b\xe0\x45\x73\xec\xaf\x1b\x20\x16\xcb\xe3\x75\xa5\xb5\x03\x65\xdb\xb7\x1b\x32\x8f\xba\x24\x2f\xf5\x34\x14\xad\x14\xe7\xbb\xf0\xbf\xfd\xac\x62\xae\xb4\x7b\xc7\x65\x9b\x70\x69\x72\x07\xc8\x29\x24\xd3\x93\x98\xf6\xeb\xc2\xee\xc9\x67\xc6\x73\x70\xfe\x13\x00\x00\xff\xff\xbb\xd1\x84\x7f\xd5\x03\x00\x00" func idtablestakingDelegationRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -2800,11 +2860,11 @@ func idtablestakingDelegationRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0xc8, 0x69, 0xd6, 0x84, 0xe1, 0x91, 0x3f, 0xe8, 0xab, 0x9d, 0xe1, 0x8, 0x8e, 0x59, 0x6f, 0x6d, 0xa8, 0x9e, 0xcc, 0x90, 0x1e, 0x8b, 0xbc, 0x2e, 0x7e, 0xa, 0x57, 0xdc, 0xa1, 0x41, 0xdc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xd1, 0x2c, 0x94, 0x87, 0xed, 0x6e, 0x56, 0x43, 0x77, 0xd5, 0x5, 0x39, 0x7, 0xf8, 0x30, 0x30, 0x29, 0x8b, 0x42, 0x51, 0x3f, 0x5e, 0x80, 0xb7, 0xdd, 0x39, 0x36, 0xbd, 0xbc, 0x2, 0x1b}} return a, nil } -var _idtablestakingDelegationRegister_many_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\xef\x9a\x40\x10\xc5\xef\xfb\x29\xe6\x88\xa9\xa2\xbd\x12\x3d\x50\xc1\x84\xd4\x68\x53\x48\x9b\xc6\x78\x18\x71\x84\xad\xb0\x4b\x96\x51\xdb\x18\xbf\x7b\xb3\x28\x54\xc8\x7f\x4f\x64\xe6\xbd\xe1\xbd\x9f\x2c\x2b\x6d\x18\x56\x85\xbe\x45\x41\x82\x87\x82\x62\xc6\xb3\x54\x19\x9c\x8c\x2e\x61\xf6\x27\x0a\xc2\x4d\x12\x25\xbf\x12\xff\xcb\x3a\xf4\x83\xe0\x7b\x18\xc7\xe2\xcd\x95\xe8\x33\xa9\x56\xbc\x5a\x6f\x7f\x26\xdb\xaf\xe1\xa6\x15\x0a\x36\xa8\x6a\x4c\x59\x6a\xe5\x28\x7d\xa4\x28\xa8\x3d\xd8\xc5\x6c\xa4\xca\xf6\x63\xa8\x90\xf3\xe7\x40\x1b\xcc\xe8\x1b\x72\xbe\x1f\xc1\x5d\x08\x00\x80\xca\x50\x85\x86\x1c\x4c\x53\xf6\xc0\xbf\x70\xee\xa7\xa9\xbe\x28\xee\x14\xf6\x5d\xd1\x80\x84\x05\xcc\xfe\x8f\x4e\xda\x34\x97\x41\xaa\xe7\x1f\xe0\xde\xed\xec\x9b\x4e\x61\x69\x08\x99\x00\x41\xd1\x0d\x8e\x54\x50\x86\xac\x0d\xe8\xc3\x6f\x4a\xb9\x39\xc0\x39\x81\x4d\xdc\x73\x16\xc4\xd6\x11\x74\x86\xf9\xe4\x03\x76\xae\xa1\x4c\xd6\x4c\x66\xf3\x26\x7d\xd5\xf7\xe0\x85\x61\x27\xf7\x63\x60\x4b\xaf\x5e\xea\xb2\x94\xcc\x74\xf4\x60\x3e\xe9\xa0\xba\x69\x93\x31\x2c\x2b\xfe\xfb\x03\x2f\x05\x3b\xa3\x91\x18\xf6\xb0\xe0\xa8\xc9\x3a\x2c\xd1\x53\x5a\x84\x6e\x8d\x57\x72\xe6\x93\xf7\xfc\x36\x81\xd7\x30\x1a\x9c\xb6\x44\x25\x7c\x82\xcf\xfd\xe9\xc9\x2e\x16\x6d\x05\xb7\x20\x95\x71\x3e\xa0\xdb\xda\x67\xbd\xe9\x43\xf4\xbf\x1e\x42\x3c\xfe\x05\x00\x00\xff\xff\xc5\x9d\x30\xdd\x7d\x02\x00\x00" +var _idtablestakingDelegationRegister_many_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6f\xe2\x30\x10\x85\xef\xfe\x15\x23\x0e\xab\x44\x0b\x81\xbd\x46\x61\xd5\x0a\x5a\x89\x4b\x55\x09\xc4\x05\x71\x18\xc2\x90\xb8\x24\x76\xe4\x4c\x82\x10\xe2\xbf\x57\x36\x10\x92\xb4\x3e\x58\x30\xf3\x5e\x66\xde\x67\x99\x17\xda\x30\xbc\x67\xfa\xb4\x98\xaf\x70\x97\xd1\x92\xf1\x28\x55\x02\x07\xa3\x73\x18\xfc\x6c\x0c\x44\xcb\xb3\xd2\x47\x52\x2d\xa9\xfb\x3f\x10\x82\x0d\xaa\x12\x63\x96\x5a\x79\x4a\xef\x69\x31\x2f\x43\xd8\x2c\xd9\x48\x95\x6c\x87\x50\x20\xa7\xb7\x82\x36\x98\xd0\x27\x72\xba\xf5\xe1\x22\x04\x00\x40\x61\xa8\x40\x43\x1e\xc6\x31\x87\x80\x15\xa7\xde\x12\x6b\x5a\x63\x56\x91\x0f\x7f\x5e\xe3\x58\x57\x8a\x1b\xb9\x3d\x35\x1a\x90\x30\x85\xc9\xb3\x74\xd0\xc6\x8d\x01\xa9\x6e\xe3\xe0\xd2\xf4\xec\x19\x8f\x61\x66\x08\x99\x00\x41\xd1\x09\xf6\x94\x51\x82\xac\x0d\xe8\xdd\x17\xc5\xec\x3e\xc0\x29\x81\x5d\xbf\xe3\xcc\x88\xad\x63\xde\x18\xa2\xd1\x2f\xfc\x02\x43\x89\x2c\x99\xcc\x47\x4b\x7a\x67\x11\xc2\x9d\xc9\x46\x6e\x87\xc0\x96\x59\x39\xd3\x79\x2e\x99\x69\x1f\x42\x34\x6a\x50\x06\xb1\xdb\xf1\x2d\x2f\xf8\xbc\xc6\x2a\x63\xaf\xb6\xf7\xea\x5c\x50\x08\xf6\x8e\x5e\x9e\x5a\x27\xf8\xef\xf9\xbe\x2f\xfa\x51\x2d\x68\x72\x71\xfa\x39\x3b\x4a\x8b\x3c\x28\x6f\x8f\x12\x94\x58\x93\x17\x8d\xda\x51\xed\xb2\xa1\xc3\xd9\x1b\x61\xe1\x4b\xf8\x0b\xff\xba\xd5\x83\x6d\x4c\x1f\x69\x83\x8c\x54\xc2\x69\xef\x21\x1e\xf6\x49\xa7\x7a\x15\xdd\x5f\x57\x21\xae\xdf\x01\x00\x00\xff\xff\xdc\x28\xf5\x58\xac\x02\x00\x00" func idtablestakingDelegationRegister_many_delegatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -2820,11 +2880,11 @@ func idtablestakingDelegationRegister_many_delegatorsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/delegation/register_many_delegators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdc, 0x5c, 0xbd, 0x63, 0x87, 0xcb, 0xb9, 0xa3, 0x2b, 0x17, 0x3c, 0x50, 0x61, 0x63, 0xda, 0x6, 0x77, 0x4b, 0x25, 0xfc, 0x31, 0x5a, 0xda, 0x73, 0x52, 0x75, 0xc2, 0x55, 0xab, 0x3e, 0x1, 0xf8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0x77, 0xf9, 0xad, 0xba, 0xdd, 0x3, 0x54, 0xa7, 0xa1, 0x6b, 0x8e, 0x5d, 0x19, 0x2b, 0x23, 0xea, 0x5, 0x9b, 0xd8, 0x21, 0x1d, 0x7b, 0x64, 0x8e, 0x76, 0x91, 0x58, 0xd4, 0xd2, 0xe2, 0x2f}} return a, nil } -var _idtablestakingNodeNode_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x73\x92\x08\x45\x7b\x16\x15\xd2\x26\x82\x54\x54\x9a\x85\xd2\xe3\x64\xb3\x26\xdb\xc4\x9d\xb0\x99\xa0\x45\xf3\xdf\x4b\x22\x46\xa5\xa5\x64\x8f\xcb\x9b\xf7\xbe\xf7\xf4\xbe\x20\xcb\xb0\xc8\xe9\xb0\xf4\x05\x46\xb9\x0a\x19\x33\x6d\x12\xd8\x59\xda\xc3\xf3\x71\xe9\x07\x6b\xb1\x14\x9f\xc2\x7b\x59\x05\x9e\xef\xbf\x07\x61\xe8\xdc\x5d\x09\xca\x94\xb9\x8a\x17\xab\xcd\x87\xd8\xbc\x05\xeb\xab\xd0\x19\x8f\x41\xa4\xba\x04\xb6\x68\x4a\x94\xac\xc9\x00\xc6\x71\x09\x08\x45\x15\xe5\x5a\x82\xa1\x58\x81\xc4\x02\x23\x9d\x6b\xfe\x06\x26\x40\x03\x28\x25\x55\x86\xe1\xa0\x39\x6d\x4c\xd0\x80\x3a\xea\x92\x1b\xb2\x35\xc5\x2d\xa5\xb2\x40\xd1\x97\x92\xec\x38\xf7\xf6\x27\xc7\x01\x00\x28\xac\x2a\xd0\x2a\x17\xa5\xe4\x09\x78\x15\xa7\xde\xc5\x73\x78\x55\x34\x4f\xef\x9a\x28\x1e\x45\x64\x2d\x1d\xa6\x83\xdf\x43\x8c\x6e\x71\x73\xb7\xe9\x39\xf9\x63\xad\x3b\x51\xc8\x64\x31\x51\x5b\xe4\x74\x08\xb3\x19\x18\x9d\xc3\xf9\xdc\x05\x36\xaf\x4d\x4c\x14\xbf\x76\xad\xa7\x83\xd3\xbf\xa6\xdb\x76\xab\x7a\xee\xf6\x50\xb5\xc9\x23\x99\x2a\x99\xb9\xc3\x2e\xf7\xf4\x40\x60\x15\x57\xd6\x74\x5f\xf5\x6d\x90\x96\x2d\xd7\x26\xeb\x8d\xf4\x60\xdc\x93\xef\xe9\xe1\x88\xd1\x26\x8a\xfb\xef\xda\x1d\x5f\xea\xd5\x4e\xfd\x13\x00\x00\xff\xff\x7d\x56\xcd\xe6\xc7\x02\x00\x00" +var _idtablestakingNodeNode_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6b\xc2\x40\x10\xc5\xef\xf9\x14\x83\x07\x49\x40\xe2\x5d\xfc\x43\x6b\x29\xf4\xd2\x0a\x4a\xef\x93\xcd\x68\xb6\xae\xbb\x61\x77\x82\x2d\xea\x77\x2f\xd9\x60\xdc\xa0\xb6\xce\x2d\xc9\xcc\x7b\xbf\x79\x13\xb9\x2b\x8d\x65\x78\x55\x66\xff\xf6\xb2\xc2\x4c\xd1\x92\x71\x2b\xf5\x06\xd6\xd6\xec\xa0\x77\xfd\xa1\x17\x05\x33\x2b\xb3\x25\x1d\xb4\xfa\xe7\x5e\x14\x0d\x87\xb0\x2a\xa4\x03\xb6\xa8\x1d\x0a\x96\x46\x03\xe6\xb9\x03\x84\xb2\xca\x94\x14\xa0\x4d\x4e\x20\xb0\xc4\x4c\x2a\xc9\x3f\xc0\x06\x50\x03\x0a\x61\x2a\xcd\xb0\x97\x5c\xd4\x22\xa8\x81\xbe\xa5\xe3\x1a\xe8\xdd\xe4\x9e\x81\x2c\x98\xec\x8b\x04\x47\x51\x28\x7f\x88\x22\x00\x80\xd2\x52\x89\x96\x62\x14\x82\x47\x80\x15\x17\xf1\xb3\xb1\xd6\xec\x3f\x51\x55\x34\x80\xf9\xd9\x52\x92\x4b\xa0\xff\xd4\x18\x26\xe7\xf1\xba\xe4\xba\xe6\xe0\xd4\xb1\xb1\xb8\xa1\x34\xf3\xf3\x63\xaf\x75\x9d\x47\x5a\x73\x7d\x94\x64\x91\x8d\x4d\xa0\x7f\xa7\xa3\x21\x9f\xc6\x75\x56\xa3\x1b\x79\x07\x4d\xcb\xc6\x77\x81\x5c\x24\x30\x99\x80\x96\x0a\x8e\xc7\x16\xaf\x2e\xcf\x27\x82\x55\xd2\x0d\xf1\xb8\x7f\xf8\x53\x77\xe1\x93\x3f\x4d\xef\x2d\x11\x76\x79\xf3\x59\x2a\x0a\x12\xdb\x38\x81\xd9\x0c\xd6\xa8\x1c\xb5\x10\x87\x0e\x8e\x25\xae\xac\x6e\x5f\x9d\x2e\x59\x2a\x62\x7f\xea\x46\x7b\x8e\x25\x4c\x6e\xc0\x9f\x93\x96\xce\x55\xf4\xf0\x1a\x1d\x84\x47\x13\x6d\x87\x92\x0b\xe4\x35\x90\xff\x49\x5d\xd1\xb5\xe8\xec\x31\xe8\xde\x83\xff\xb9\xe9\x25\xd5\x00\xa0\xc9\xea\xf4\x1b\x00\x00\xff\xff\x76\x70\x54\x96\x84\x03\x00\x00" func idtablestakingNodeNode_add_capabilityCdcBytes() ([]byte, error) { return bindataRead( @@ -2840,11 +2900,11 @@ func idtablestakingNodeNode_add_capabilityCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/node_add_capability.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa, 0x7e, 0x60, 0x84, 0x8b, 0x25, 0xdc, 0xfc, 0xcf, 0xe8, 0x1e, 0x2d, 0x1e, 0x7f, 0xe3, 0x55, 0x16, 0x50, 0x49, 0xaf, 0xf7, 0x75, 0x19, 0xf6, 0x3d, 0x83, 0xec, 0x7a, 0x90, 0xdc, 0xf2, 0x46}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xc4, 0x53, 0x4f, 0xc8, 0xa0, 0x67, 0x6e, 0x7a, 0xe2, 0x1e, 0x5c, 0xee, 0xad, 0xeb, 0x9e, 0x2e, 0x9f, 0x6f, 0x6c, 0xed, 0xcd, 0xad, 0xf3, 0xaa, 0x72, 0xd, 0x11, 0x47, 0xd4, 0x2a, 0xd0}} return a, nil } -var _idtablestakingNodeRegister_many_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\x4d\x6b\xdb\x40\x10\xbd\xeb\x57\x0c\x39\x14\x99\xc6\x76\x0a\xa5\x94\xc5\x69\x50\x63\x1b\x8c\x83\x53\x6c\xb5\xa5\x18\x1f\xd6\xda\x91\xb5\x8d\xb4\x63\x56\xe3\x28\xa1\xe4\xbf\x97\x95\xfc\x29\x09\x32\x07\x1d\xde\xbc\x79\x33\x7a\xfb\x74\xb6\x25\xcb\x30\x4e\xa9\x98\x0c\x43\xb9\x4e\x71\xc1\xf2\x49\x9b\x0d\xc4\x96\x32\xb8\x79\x99\x0c\x47\xb3\x70\x12\xfe\x09\x83\xef\x0f\xa3\x60\x38\x9c\x8f\x16\x0b\xef\x6c\x2a\xa4\x27\x34\x07\xf2\xf8\xe1\xf1\x77\xf8\x38\x1d\xcd\x0e\x44\x8f\xad\x34\xb9\x8c\x58\x93\xf1\x3d\x00\x00\xad\x72\x01\xcb\x05\x5b\x6d\x36\xab\xeb\x12\xb2\x94\xa2\x03\x7f\x4e\x0c\x7f\xdd\x63\x06\xb9\x20\xeb\x0e\x09\x94\xb2\x98\xe7\xd8\x18\x3b\x51\xa6\xf8\xda\xe8\xe6\xd5\x6f\xb4\xb5\x64\x46\x3b\xc3\xe5\xc6\xb1\x7e\xf9\xf2\x79\x0f\x6f\x25\x27\x15\x97\xac\xdc\xe0\x0f\xc9\xc9\xca\xeb\xc0\x3f\xaf\xea\x5a\xdc\x4a\x8b\xbe\x8c\x22\x16\x10\xec\x38\x09\xa2\xc8\xe9\x1c\x19\xae\x9e\xa5\x05\x0d\xb7\x70\x73\x82\x62\xb2\xa5\x34\x68\x53\xad\x38\xe7\xbb\x4a\x91\x21\x3e\x38\x39\xc7\x18\x6e\xc1\x2d\xe9\xad\xc9\x5a\x2a\x06\x1f\x8e\x2e\xf7\x7e\xc9\x5d\xca\xdf\x7c\x67\xb6\x80\x7e\x5e\xdd\xd9\x3f\xce\x96\xed\xce\x85\xb6\xab\xbb\x3b\xd8\x4a\xa3\x23\xff\xea\x9e\x76\xa9\x02\x43\x0c\x95\x36\x58\x8c\xd1\xa2\x89\x10\x98\xc0\x3d\x1e\x94\x1a\x57\x9d\xe6\x85\xec\x36\xe4\xf7\x94\x65\x9a\x19\x15\x0c\xba\x17\x47\xf7\x0a\xcd\x89\xb2\xb2\xf0\x2b\x77\xc5\xc1\xe5\xa5\x5e\xb5\xa8\x19\x52\x65\xd0\xd0\x3a\xa1\x66\xfa\x7a\x52\xa9\x19\x29\x9c\x63\x44\x56\xf9\x8d\x7f\xd2\x4a\xb8\x24\x2d\xf5\xfe\xed\xce\xcb\xc5\x49\x54\xa1\x6a\xed\x37\xa2\x25\xda\xd2\xf6\xce\xe8\x14\x5f\x45\x2d\x81\xad\x13\xa7\x18\x8a\xf3\x48\xb6\x72\x6b\x16\x0b\x18\x74\x6b\xd0\xc5\x48\xcd\xd6\x7e\x1f\x5c\x72\x11\x38\xc1\xd2\x5f\xa0\xf5\x5f\x8c\xf8\x82\x54\x06\x2b\x97\xcf\xe8\x0f\xba\xa7\x37\xb8\x06\x26\x51\x86\xb3\xa6\xe9\xa2\xac\xe1\x23\x7c\x3a\xa2\x6f\x5e\xf5\xf5\xde\xfe\x07\x00\x00\xff\xff\x0b\x85\x8a\x83\x3a\x04\x00\x00" +var _idtablestakingNodeRegister_many_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\x4f\x6b\xdb\x4e\x10\xbd\xeb\x53\x0c\x3e\x04\x89\x5f\x2c\xff\x0a\xa5\x94\xc5\x69\x08\x29\x86\x90\xd2\x96\x24\x6d\x0e\xc6\x87\xb5\x76\x64\x6d\x23\xed\x98\xd5\x28\x6a\x28\xf9\xee\x65\x57\x8a\xf5\x17\x3a\x07\x81\xde\xbc\x99\xb7\x33\xf3\x74\x71\x24\xcb\xb0\xc9\xa9\xbe\xf9\xfc\x20\xf7\x39\xde\xb3\x7c\xd2\xe6\x00\xa9\xa5\x02\x16\xd3\xc4\x22\xe8\xd5\x3c\xd0\x13\x9a\x1e\xd5\xff\x77\x8c\xca\x1c\xf4\x3e\xc7\x01\xab\x8f\x2d\x82\x80\xad\x34\xa5\x4c\x58\x93\x09\x03\x00\x00\xad\x4a\x01\xdb\x7b\xb6\xda\x1c\x76\xe7\x1e\xb2\x94\xa3\x03\x7f\xdc\x18\xfe\xd8\x62\x06\xb9\x26\xeb\x1e\x74\xa5\x94\xc5\xb2\xc4\x49\x59\x47\xb9\xc5\x97\x49\xb6\x6c\xc6\x99\x4b\xc9\x82\x2a\xc3\x5e\x71\xa3\x7f\x7f\x78\xdf\xc2\x47\xc9\x59\xc3\x25\x2b\x0f\xf8\x5d\x72\xb6\x0b\x22\xf8\x13\x34\x59\x8b\x47\x69\x31\x94\x49\xc2\x02\x64\xc5\x59\xd8\x12\x23\x38\xbb\x4a\x12\xd7\xf2\x44\x76\xf1\x2c\x2d\x68\xb8\x80\xff\x3b\x28\x25\xeb\x55\x40\x9b\x46\xad\xcf\x77\x91\x23\x43\xfa\xb6\xe7\x3b\x4c\xe1\x02\x9c\x5e\x5c\x36\x4a\xf1\x9e\xac\xa5\x7a\xed\xd5\x07\x9b\x8e\x1f\x35\x67\xca\xca\x3a\x82\xb3\xd3\xa1\xe2\x9f\xb2\xca\xf9\x53\xe8\x2e\x23\x60\xd5\x36\x59\x9d\x04\x7c\x3a\x1a\x3c\xc0\xc5\xe5\x25\x1c\xa5\xd1\x49\xb8\xb8\xa6\x2a\x57\x60\x88\xa1\x11\x06\x8b\x29\x5a\x34\x09\x02\x13\x6c\xbe\x7c\x7b\x04\xdf\x63\x11\x4d\xc7\x60\xa7\x50\x5e\x53\x51\x68\x66\x54\xb0\x5e\x0e\x26\x8b\xeb\xf6\xc1\x61\x73\x0d\xf1\x76\x95\xad\xde\xcd\x74\x33\xa4\xbc\x41\xd1\xba\x46\x53\xd7\xc6\x52\xa9\xaf\xa4\xf0\x0e\x13\xb2\x2a\x9c\xcc\xa4\x95\x70\xce\xdb\xea\xf6\xd6\xfd\x70\xf6\x13\x8d\x09\x67\xf3\x13\x2b\x8a\x39\x77\xfe\xa3\xf4\x16\x5f\xc4\xc8\xb1\xb3\x15\x9d\x6d\x45\xdf\xc2\xb3\xdc\xd1\x8a\x05\xac\x97\x23\x68\x50\x32\x5a\xeb\x6a\x05\xce\xc0\x08\x9c\xa1\xdf\x2f\xd0\xfe\x17\x26\x3c\x20\x0d\xdc\x57\xca\x67\x0c\xd7\xcb\xee\x16\xe7\xc0\x24\xbc\x93\x47\xbd\x9d\xef\x35\xfc\x07\xef\x4e\xe8\x6b\xd0\x7c\x83\xd7\xbf\x01\x00\x00\xff\xff\x0d\x4e\x7d\xd1\x93\x04\x00\x00" func idtablestakingNodeRegister_many_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -2860,11 +2920,11 @@ func idtablestakingNodeRegister_many_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/register_many_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xce, 0x4a, 0xf8, 0x11, 0x23, 0xc3, 0xa6, 0x1c, 0x71, 0xfd, 0x59, 0xc, 0xa6, 0x8c, 0x13, 0x6a, 0x2b, 0x1, 0x7a, 0x59, 0xed, 0x14, 0x8d, 0xef, 0x41, 0x24, 0x32, 0xd1, 0xd1, 0x65, 0x26}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x24, 0xe6, 0xd8, 0x4d, 0x7f, 0xa7, 0x90, 0xd1, 0xbd, 0x2e, 0x9d, 0x30, 0xb6, 0xc9, 0x30, 0x9a, 0xbd, 0x9b, 0x1, 0xae, 0xca, 0x83, 0xf9, 0xb4, 0x8b, 0xd9, 0x22, 0xa, 0x7c, 0x65, 0xe9}} return a, nil } -var _idtablestakingNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x52\x41\x6f\xda\x4c\x10\xbd\xfb\x57\x8c\x72\x88\x8c\x44\xe0\x3b\x7c\xaa\x2a\x8b\x24\xa2\x01\x24\x94\x88\x44\xe0\xb4\xea\x71\xd9\x1d\xc3\x16\xb3\x63\xed\x8e\xeb\x20\xc4\x7f\xaf\xd6\x16\xd8\x0e\x34\x4a\x7d\x30\x78\xe6\xbd\x37\xbb\xef\x8d\xde\x66\x64\x19\x26\x29\x15\xd3\x51\x2c\x96\x29\x2e\x58\x6c\xb4\x59\x41\x62\x69\x0b\xff\xbd\x4d\x47\xe3\x59\x3c\x8d\x7f\xc6\xc3\x6f\x4f\xe3\xe1\x68\x34\x1f\x2f\x16\x41\x83\x15\xd3\x06\xcd\x11\x3c\x79\x7a\xfe\x11\x3f\x3f\x8e\x67\x47\x60\xd0\xef\x43\xbc\xd6\x0e\xd8\x0a\xe3\x84\x64\x4d\x06\xa4\x45\xc1\xe8\x40\x80\xc1\x02\x0c\x29\x04\xc7\x36\x97\x0c\xb4\xfc\x85\x92\x3d\x49\x18\x05\x79\xa6\x4a\x1c\xaf\x11\x32\x4b\x19\x39\x54\x30\x55\x68\x58\xf3\x0e\xca\xc3\x06\x41\x43\x38\x0c\x00\x00\xb4\x8a\x60\xc1\x56\x9b\x55\xb7\xfc\xb6\x94\x62\x04\xaf\x53\xc3\x5f\xab\x82\x41\x2e\xc8\xfa\x3b\x0e\x95\xb2\xe8\x5c\x1b\x5f\xb7\x1f\x71\xd7\x6e\xb9\xca\x9a\xb3\xba\xd8\x52\x6e\x38\x82\xd7\x89\x7e\xfb\xf2\x7f\xd0\x81\x7d\x50\xd6\x53\x64\x48\x8e\x1e\xcd\x31\x89\xe0\xfa\x64\x59\xef\xbb\xc8\x53\xae\x70\x99\xc5\x4c\x58\x0c\x85\x94\x1c\xc1\x30\xe7\xf5\x50\x4a\x2f\x79\x52\x2a\xa7\x63\x9a\xf4\x9a\x72\x70\x0b\x9e\xd1\x5b\x92\xb5\x54\x0c\xde\x6b\xdf\x85\x3e\x95\x08\xfa\x8e\xc9\x8a\x15\xf6\x4f\xdc\xb2\xdd\x39\x09\xfb\xe7\xfe\x1e\x32\x61\xb4\x0c\xaf\x1e\x28\x4f\x15\x18\x62\xa8\x74\xc1\x62\x82\x16\x8d\x44\x60\x02\x9f\x30\x94\xfc\xab\x4e\x7d\x34\x7f\x51\x9f\xa3\xdf\x1d\xb4\x30\xb8\xb9\xb0\x50\x3d\xa1\xd4\x8c\x14\xce\x51\x92\x55\x61\x6b\xba\xcf\x4c\xab\x6e\xab\x56\xe5\xe6\xdf\xed\xfa\x85\xf8\xce\x4a\x7f\x63\x94\xc9\xb5\x3e\xdb\xc8\x66\xc0\xf5\xff\x36\x86\xbd\x83\xee\x81\xb6\x5b\xcd\x8c\x2a\x82\xc1\xcd\x59\x32\xbd\x42\xf3\x5a\x59\x51\x84\xc7\xd5\xa8\x7e\x6b\xcf\x1b\xe6\xe9\xe4\x3c\xc6\x77\xd6\xcd\x4e\xde\x1e\x43\xfd\x10\xb4\xa8\x02\x7f\x11\xbc\xee\xc0\xed\x2d\x18\x9d\x36\x17\xa9\x5c\x59\x3f\xd1\x89\xdf\x18\x0e\x6e\xea\xe4\xba\xc0\xf4\x0f\xda\x17\x24\x53\x6d\x36\x83\xeb\xfd\x87\x12\x2f\xf9\x32\xd5\xf2\x70\xd7\xde\x01\xff\x7c\x82\xe6\x07\x77\xcf\x88\x2c\xec\x0a\xf9\xf3\x47\x6f\x09\xd4\xa9\x1c\x00\x53\x87\xb0\x6f\xb5\x15\x3a\xb6\xb4\x6b\x2c\x78\x8d\x0f\xaa\xf7\xe1\x4f\x00\x00\x00\xff\xff\xdb\x54\x5a\x43\x47\x05\x00\x00" +var _idtablestakingNodeRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\x5f\x6b\xdb\x3e\x14\x7d\xf7\xa7\xb8\xe4\xa1\xd8\x90\x3a\x2f\x3f\x7e\x8c\x90\xb6\x94\x8c\x42\xd9\x58\x4b\xff\xac\xcf\xb2\x74\x1d\x6b\x55\x74\x8d\x74\x3d\xaf\x94\x7e\xf7\x21\x3b\x89\x2d\x9c\x75\x6b\x1e\x1c\xeb\xfe\x3b\x47\xe7\x1e\xeb\x6d\x4d\x8e\xe1\xca\x50\x7b\xfd\xf9\x41\x14\x06\xef\x59\x3c\x6b\xbb\x81\xd2\xd1\x16\x66\xd3\xc4\x2c\x19\xf5\x3c\xd0\x33\xda\x51\x69\x77\x1e\x2a\x1a\xbb\xd1\x85\xc1\xa8\x6a\x1c\x9b\x25\xc9\x62\x01\x0f\x95\xf6\xc0\x4e\x58\x2f\x24\x6b\xb2\x20\x1d\x0a\x46\x0f\x02\x2c\xb6\x60\x49\x21\x78\x76\x8d\x64\xa0\xe2\x07\x4a\x0e\x4d\xc2\x2a\x68\x6a\xd5\xd5\x71\x85\x50\x3b\xaa\xc9\xa3\x82\x6b\x85\x96\x35\xbf\x40\x47\x3a\x49\x46\x83\xd3\x04\x00\x40\xab\x25\xdc\xb3\xd3\x76\x33\xef\xce\x8e\x0c\x2e\xe1\xf1\xda\xf2\xa7\x3e\x60\x91\x5b\x72\xe1\xae\x97\x4a\x39\xf4\x3e\xae\x1f\xd2\x5f\xf0\x25\x4e\xf9\x5e\xa2\x49\x5c\x6c\xa9\xb1\xbc\x84\xc7\x2b\xfd\xeb\xff\xff\x92\x0c\x5e\x93\x2e\x6e\x90\xa1\xdc\xcb\x76\x87\xe5\x12\x44\xc3\x55\x1a\x69\x94\x3f\x69\xae\x94\x13\x6d\x06\x27\x07\x89\xf3\xef\xa2\x31\xdc\x0f\xa9\x1d\xd6\xc2\x61\x2a\xa4\xe4\xdd\x80\x7b\x26\x27\x36\x38\x87\xb5\xa8\x45\xa1\x8d\x66\x8d\x3e\x83\x93\x4b\x29\x03\x91\x03\x7e\xc7\x19\x4d\x99\x8f\x49\xc0\x19\x84\x51\xb9\xef\x87\xe4\x05\x39\x47\xed\xea\x43\xcc\xce\xd3\xb0\xed\x25\x2c\x76\x43\x16\x07\x80\x2e\x9d\x1d\xd0\xc3\xef\xe2\x02\x6a\x61\xb5\x4c\x67\x6b\x6a\x8c\x02\x4b\x0c\x3d\x28\x38\x2c\xd1\xa1\x95\x08\x4c\x70\xf5\xf5\xe6\x09\xba\xfe\x59\x36\xf0\x0f\x1a\x06\x8b\x04\x7b\xa2\x83\xd5\xe9\x11\x33\xe7\x42\xa9\x6f\xa4\xf0\x0e\x25\x39\x95\x46\xe8\xc1\x0e\x5a\xcd\xa3\x58\x6f\x89\xf0\x8c\xe3\x47\x9c\x31\x09\xfd\xa9\xa3\x33\x45\x74\x8c\x2b\xc7\xde\x19\xde\xe3\x1a\x0e\x0a\xfa\x35\x6d\xb7\x9a\x19\xd5\x12\x56\xa7\x93\xf5\xe5\xed\x6e\x2b\xe9\xde\x75\xfd\xff\xa0\xf9\x48\x3c\x5d\xbe\xb3\xeb\xa9\x8c\x41\xc3\x9b\x1a\x9d\x60\x72\xbb\xa5\x1f\xa9\xe8\x37\xb1\xb7\xc0\xbb\x45\x3b\xa3\xde\x0a\xae\x32\x38\x3b\x03\xab\xcd\xd8\x9b\xdd\xb7\x33\xe6\xe7\xc5\x4f\x4c\x57\xa7\xc3\xbe\xe7\xc0\xf4\x01\x8c\x78\x74\x6c\x9d\xb5\xa8\xf7\xd6\x97\xa3\xcf\xe6\x80\xad\xbd\x6f\x70\x75\xf2\xfa\x2e\xd8\x6d\x53\x18\x2d\xdf\xce\x63\x8f\x85\xdf\xbf\x72\x8c\x1a\xb3\x23\x5a\x44\xe4\xea\x80\xe7\xab\x29\x5c\x74\xaf\xf9\x24\x2d\xf8\x2f\xaa\xf5\x17\x39\x42\x68\xff\xf6\x06\x68\x3c\xc2\x6b\x94\x56\xe8\xd9\xd1\xcb\x08\x7d\xa8\x4f\xfa\xe7\xdb\xef\x00\x00\x00\xff\xff\xd7\xf7\xa2\x42\x73\x06\x00\x00" func idtablestakingNodeRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -2880,11 +2940,11 @@ func idtablestakingNodeRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x76, 0x8, 0xa4, 0x1a, 0xd1, 0xae, 0xff, 0xc6, 0x3f, 0xf9, 0x3f, 0xb2, 0x21, 0xbe, 0x35, 0xc8, 0x47, 0x64, 0xa8, 0x8a, 0xa, 0x3c, 0x56, 0x1, 0x44, 0xa5, 0xa3, 0xce, 0x1c, 0xcd, 0x59, 0x84}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0xcb, 0x2d, 0xbc, 0x35, 0x44, 0x32, 0x3e, 0x73, 0x50, 0x5f, 0xa1, 0x63, 0x18, 0x71, 0x7f, 0x5f, 0x26, 0xb5, 0x59, 0x98, 0x82, 0x74, 0xab, 0xa6, 0x15, 0x3c, 0x8f, 0xfa, 0x4d, 0x85, 0x69}} return a, nil } -var _idtablestakingNodeRequest_unstakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x2f\x49\x0f\xa5\x87\xd0\x56\xd2\x46\x41\x10\x29\x26\x1e\x7a\x1c\xd7\x89\xa6\xc6\x9d\x74\x32\xa9\x81\xe2\x7f\x2f\x6b\x6a\x28\x58\xa4\xef\x32\x7b\xd8\x7d\xf3\xed\x7b\xc5\xbe\x62\x51\x98\x94\x7c\x98\x26\x19\xae\x4a\x4a\x15\x77\x85\xdd\x40\x2e\xbc\x87\xdb\x76\x9a\x8c\xe7\xd9\x34\x7b\xcb\xe2\xe7\xd9\x38\x4e\x92\xc5\x38\x4d\x3d\xcf\x53\x41\x5b\xa3\xd1\x82\xad\x8f\x7b\x6e\xac\x46\xb0\x9c\x14\xed\xfd\xdd\x10\xbe\x3c\x0f\x00\x20\x0c\x61\xc6\x06\x4b\xf8\x44\x29\x9c\x33\xe4\x2c\x80\x20\x94\x93\x90\x35\x04\xca\xa0\x5b\x02\xcb\x6b\x02\x5e\xbd\x93\xd1\xd3\xc3\x92\x14\x6a\xc5\x1d\xc9\x82\xf2\x08\x6e\x2e\xe1\x82\x39\xaf\x4f\x67\x92\x6e\x57\x25\x54\xa1\x90\x8f\xc6\x68\x04\x71\xa3\xdb\xd8\x18\x47\xe5\x68\xe0\x47\x61\x08\x2b\x16\xe1\xc3\x7f\x20\x9c\x6a\x2a\xf3\xa0\x27\x81\x47\x70\xf6\x41\xe7\xf1\x70\x1d\xeb\xc9\x77\xf9\x45\x7f\x04\xfb\xeb\x52\xaa\x2c\xb8\xa1\x57\xd4\xed\xb0\x5f\xea\x34\x1a\x41\x85\xb6\x30\xfe\xe0\x85\x9b\x72\x0d\x96\xf5\x8c\x7e\x0d\x7c\x30\xec\xd2\x38\x76\x83\x5a\x32\x8d\xd2\xb9\x8f\xcb\x1f\x05\x42\x1f\x0d\xd5\xba\xb4\x75\xc7\xd6\x57\xd9\xcd\xde\xee\xf8\x1d\x00\x00\xff\xff\xc8\xee\x14\x2d\x27\x02\x00\x00" +var _idtablestakingNodeRequest_unstakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xbf\x4e\xc3\x40\x0c\xc6\xf7\x3c\x85\x95\xa1\x4a\x96\x64\x41\x0c\x15\x50\xf1\x47\x95\x90\x10\x20\x4a\xd9\xdd\x8b\xd3\x1e\xbd\x9c\x83\xe3\xd0\x4a\xa8\xef\x8e\xae\x49\xab\x56\x05\x89\x01\x2f\x37\x9c\xfd\xf9\xfb\xd9\xb6\x55\xcd\xa2\x30\x76\xbc\xba\xbf\x7b\xc5\x99\xa3\x89\xe2\xd2\xfa\x39\x94\xc2\x15\xc4\xa7\x1f\x71\x14\x45\x2a\xe8\x1b\x34\x6a\xd9\x27\x58\x71\xeb\x75\x08\xd3\xb1\x5d\x9f\x9f\xa5\xf0\x15\x45\x00\x00\x79\x0e\x0f\x6c\xd0\xc1\x27\x8a\x0d\xe5\x50\xb2\x00\x82\x50\x49\x42\xde\x10\x28\x83\x2e\x08\x3c\x17\x04\x3c\x7b\x27\xa3\xdb\x42\x47\x0a\x8d\xe2\x92\xe4\x85\xca\x21\x60\xab\x8b\xe4\xd4\x45\xf6\xc8\x05\x3d\xd5\x24\xa8\x2c\x29\x0c\x7e\xc9\x98\x6c\x85\x3a\x47\xb5\x50\x8d\x42\x09\x1a\xa3\xbd\xee\x0d\x8b\xf0\xea\x0d\x5d\x4b\x29\x0c\xae\x8d\x09\x28\x01\x01\xfa\xc8\x73\x98\x6d\x73\xfe\xe2\x3c\x44\x43\xae\xcc\xf6\xf6\xe1\x12\x42\xb7\xac\x51\x16\x9c\x53\xd6\x69\x5d\xfc\x07\xd3\x55\x12\x16\x34\xfc\x61\x73\x07\x49\x93\xae\xef\x33\xea\x22\xdd\x5b\x0c\x31\x1a\x41\x8d\xde\x9a\x24\xbe\xe5\xd6\x15\xe0\x59\x77\xa0\x47\x98\x4d\x7f\x0c\x58\x54\xd6\xc7\x9d\xc6\xa6\x1b\x27\xad\xc9\xb4\x4a\x07\xc3\x3a\x66\xcf\x84\x3e\x5a\x6a\x74\xea\x7b\x91\xfd\xa5\x74\xef\x4e\x6c\x13\x7d\x07\x00\x00\xff\xff\x7d\xcc\x86\xf9\x84\x02\x00\x00" func idtablestakingNodeRequest_unstakeCdcBytes() ([]byte, error) { return bindataRead( @@ -2900,11 +2960,11 @@ func idtablestakingNodeRequest_unstakeCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/request_unstake.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x79, 0xf1, 0x50, 0x3e, 0x13, 0xea, 0xe6, 0xa4, 0xfb, 0x7d, 0x7c, 0x79, 0x1, 0x20, 0xab, 0xc3, 0xca, 0xd6, 0x2, 0x24, 0x4, 0x1b, 0xe0, 0x6, 0x3c, 0xb2, 0x81, 0x63, 0x50, 0xb4, 0x75}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8, 0x6c, 0x5c, 0x95, 0xf8, 0x1, 0x61, 0xb4, 0x8e, 0xcb, 0x97, 0xb8, 0x11, 0xcb, 0x4e, 0xd9, 0xd7, 0x1c, 0xc2, 0xbe, 0x23, 0xfa, 0x38, 0x54, 0xcf, 0xc5, 0x78, 0xac, 0x14, 0x7c, 0x28, 0xe6}} return a, nil } -var _idtablestakingNodeStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x8f\x94\x40\x10\x85\xef\xfc\x8a\xca\x1e\x0c\x1c\x04\x0f\xc6\x03\x59\xdd\xa0\x30\xc9\xc4\x09\x6b\x16\xd4\x78\xac\x69\x8a\x05\x87\xe9\x22\x4d\x21\x93\x98\xf9\xef\xa6\x41\x10\x33\x93\x89\xb1\x2e\xdd\x84\xf7\xba\xbf\x7a\x5d\xf5\xb1\x65\x23\xb0\x69\x78\xd8\xc6\x39\xee\x1b\xca\x04\x0f\xb5\x7e\x86\xd2\xf0\x11\x5e\x9d\xb6\x71\x92\xe6\xdb\xfc\x5b\x1e\xbd\xdf\x25\x51\x1c\x3f\x25\x59\xe6\xac\x5c\x39\x1f\x48\xcf\xe2\xcd\xee\xf1\x6b\xfe\xf8\x31\x49\x67\xa1\xe3\x88\x41\xdd\xa1\x92\x9a\xb5\x8b\x47\xee\xb5\x84\xf0\x79\x53\x9f\xde\xbc\xf6\xe0\xa7\xe3\x00\x00\x04\x01\xec\x58\x61\x03\x3f\xd0\xd4\x16\x01\x4a\x36\x80\x60\xa8\x24\x43\x5a\x11\x08\x83\x54\x04\x9a\x0b\x02\xde\x7f\x27\x25\xa3\xb1\x21\x81\x4e\xf0\x40\xe6\x89\xca\x10\x5e\x5c\x76\xe1\xa7\x5c\x8c\x7b\x32\xce\x62\x29\x67\xec\x3f\xae\xf1\xd3\xff\x82\x7d\x23\x93\xae\x35\xd4\xa2\x21\x17\x95\x92\x10\xa2\x5e\xaa\x48\x29\x4b\x6f\xa9\xe1\x77\x05\x01\xec\xd9\x18\x1e\xfe\x05\xd6\x56\x47\x4d\xe9\x2f\xc4\xf0\x16\xec\xf1\xfe\x74\xc6\xfd\x6d\xfc\x77\xae\xcd\x38\xbc\xf2\x52\x2b\x51\x26\x6c\xf0\x99\x3e\xa1\x54\xde\x72\xa9\xad\x87\x07\x68\x51\xd7\xca\xbd\xfb\xc0\x7d\x53\x80\x66\x99\xd1\x6f\x81\xdf\x79\xce\xdf\xec\xeb\xe8\xae\xe1\xaf\x72\x9c\x81\x83\x6e\x82\x0a\x16\xef\xf8\xfb\xff\xf8\xec\x80\xc1\xe8\x9f\xd1\xce\xd3\x42\x27\x52\xbd\xd0\x3c\x52\x97\x61\x4f\xbb\x94\x26\x84\xce\xbd\x7f\x79\xd1\x90\x3f\xd4\x52\x15\x06\x87\x65\x50\xa7\xd5\x5b\xae\x3a\xff\x0a\x00\x00\xff\xff\x86\xf3\x84\x50\x2f\x03\x00\x00" +var _idtablestakingNodeStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\xcf\x6e\xdb\x30\x0c\xc6\xef\x7a\x0a\xc2\x87\xc2\x3e\xcc\xbe\x0c\x3b\x04\xdd\x8a\xfd\x41\x80\x01\x45\x3b\x2c\x5d\x7b\x66\x64\x3a\xd1\xa2\x88\x06\x4d\x2f\x05\x86\xbe\xfb\x60\xcb\xf1\x14\x64\x1b\x8a\xa1\xba\xd8\x96\x3e\x7e\xe4\x8f\x94\xdd\xbe\x65\x51\x58\x7a\x3e\x7c\xfe\x74\x87\x6b\x4f\x2b\xc5\x9d\x0b\x1b\x68\x84\xf7\x90\x9d\x1f\x64\x26\x89\xb9\xe3\x1d\x85\x44\x3a\x7e\xff\x56\xf4\x61\xe3\xd6\x9e\x4e\x54\xe9\x5e\x66\x8c\x0a\x86\x0e\xad\x3a\x0e\x39\xee\xb9\x0f\xba\x80\x6f\x4b\xf7\xf8\xe6\x75\x01\x3f\x8d\x01\x00\xa8\x2a\xb8\x66\x8b\x1e\x7e\xa0\xb8\xa1\x12\x68\x58\x00\x41\xa8\x21\xa1\x60\x09\x94\x41\xb7\x04\x81\x6b\x02\x5e\x7f\x27\xab\x63\xa0\x27\x85\x4e\x71\x47\xf2\x95\x9a\x05\x60\xaf\xdb\xfc\x1c\xa8\xbc\xe1\x9a\x6e\x5b\x12\x54\x96\x02\x2e\xfe\xa2\x58\x8d\x46\x66\x36\x6e\x8e\xb8\x89\x77\xca\x56\x3e\x38\xdd\xd6\x82\x87\xc9\x32\x6e\xde\x63\xef\x35\x9a\xb4\x42\x2d\x0a\xe5\x68\xad\x4e\x06\x1f\x58\x84\x0f\xf7\xe8\x7b\x2a\xe0\xe2\xbd\xb5\x43\x3f\x86\x3e\xc0\xb4\xaa\x0a\xd6\xa3\xe6\x39\xf8\xc3\xea\xc8\x37\xe5\xdc\x03\x78\x0b\x43\xb6\xb2\x53\x16\xdc\x50\x19\xbd\x2e\x5f\xa2\x31\xef\xf2\x61\xbe\x8b\x3f\xdc\xa4\x44\xb4\x8a\x79\xbf\xa0\x6e\x8b\xb9\xc4\x61\x5d\x5d\x41\x8b\xc1\xd9\x3c\xfb\xc8\xbd\xaf\x21\xb0\x1e\x41\x4f\x30\xbb\xe9\x72\x62\xbd\x77\x21\x2b\xcc\x29\x67\x3a\x92\x7f\xa2\x3e\x73\x4e\x47\xa6\x6a\x32\xa9\xe6\x04\xe3\xf1\xff\x21\x2c\xaf\x6f\x1f\x60\x8c\xcf\xa2\xc1\x53\xa4\xa0\x47\xb2\xbd\x52\x32\xec\xd3\xd9\xc5\xb7\x1b\x8a\x05\x74\xf9\xe5\xab\x33\xe6\xf2\x30\xa1\xcc\x7f\x52\x7c\x16\xc7\x44\x4f\xe6\x57\x00\x00\x00\xff\xff\x2e\x56\x90\x70\xf0\x03\x00\x00" func idtablestakingNodeStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2920,11 +2980,11 @@ func idtablestakingNodeStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4, 0xa, 0x1e, 0xd2, 0xf6, 0xd, 0x9, 0x22, 0xa5, 0x89, 0x6e, 0xb0, 0x95, 0x31, 0xff, 0x54, 0xab, 0x41, 0xeb, 0xd7, 0x74, 0x1b, 0x6e, 0x60, 0xf7, 0x1c, 0x81, 0x20, 0xf5, 0x4b, 0xdb, 0x57}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0xd, 0x0, 0x9f, 0x56, 0x91, 0x6d, 0x32, 0x3d, 0xa3, 0x10, 0xcb, 0x41, 0x84, 0x26, 0x62, 0x39, 0xa9, 0xe, 0x6f, 0x2, 0xd0, 0xa3, 0xa5, 0xf5, 0x1a, 0x67, 0xe7, 0x57, 0x0, 0xb3, 0xca}} return a, nil } -var _idtablestakingNodeStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x2f\xa6\x87\xd2\x43\x68\x2b\x69\xa3\x20\x88\x14\x93\x1e\x7a\x1c\x37\x13\x4d\x8d\x3b\x61\x32\xa9\x42\xf1\xbf\x97\x75\x6b\x28\x58\xa4\xef\x32\x73\xd8\x7d\xf3\xcd\x9b\x6a\xd7\xb0\x28\x4c\x6b\xde\xcf\xd2\x1c\x57\x35\x65\x8a\xdb\xca\xae\xa1\x14\xde\xc1\xed\x61\x96\x4e\x16\xf9\x2c\x7f\xcf\x93\xe7\xf9\x24\x49\xd3\xe5\x24\xcb\x82\x20\x50\x41\xdb\xa2\xd1\x8a\x6d\x88\x3b\xee\xac\xc6\xf0\x36\xad\x0e\xf7\x77\x43\xf8\x0a\x02\x00\x80\x28\x82\x39\x1b\xac\xe1\x13\xa5\x72\xce\x50\xb2\x00\x82\x50\x49\x42\xd6\x10\x28\x83\x6e\x08\x2c\x17\x04\xbc\xfa\x20\xa3\xa7\x8f\x35\x29\xb4\x8a\x5b\x92\x25\x95\x31\xdc\x5c\xc2\x8d\x16\x5c\x9c\x7a\x12\x3f\xab\x11\x6a\x50\x28\x44\x63\x34\x86\xa4\xd3\x4d\x62\x8c\xa3\x72\x34\xf0\xa3\x28\x82\x15\x8b\xf0\xfe\x3f\x10\x4e\x2d\xd5\xe5\xa8\x27\x81\x47\x70\xf6\x23\xef\xf1\x70\x1d\xeb\x29\x74\xf9\xc5\x7f\x04\xfb\xeb\x51\xa6\x2c\xb8\xa6\x57\xd4\xcd\xb0\x1f\xea\x34\x1e\x43\x83\xb6\x32\xe1\xe0\x85\xbb\xba\x00\xcb\x7a\x46\xbf\x06\x3e\x18\xfa\x34\x8e\xbe\xd0\x81\x4c\xa7\x74\xbe\xc7\xe5\x46\xbe\x5b\xd2\x1e\xa5\xa0\x22\xe7\x2d\xd9\xb6\xbf\xa6\xaf\xbd\xe3\xf1\x3b\x00\x00\xff\xff\xde\xe4\xde\xe8\x2a\x02\x00\x00" +var _idtablestakingNodeStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x4f\x6b\xea\x50\x10\xc5\xf7\xf9\x14\x87\x2c\x24\xd9\x24\x9b\xc7\x5b\xc8\x7b\x95\xfe\x41\x28\x94\xb6\xa8\xed\x7e\xbc\x99\x68\x6a\x72\x27\x4c\x26\x55\x28\x7e\xf7\x12\xa3\xa2\xd8\x42\x17\x9d\x4d\x02\x77\xe6\xcc\xf9\xcd\x4c\x51\xd5\xa2\x86\x71\x29\xeb\xfb\xbb\x19\xcd\x4b\x9e\x1a\xad\x0a\xbf\x40\xae\x52\x21\xbc\x7c\x08\x83\x20\x30\x25\xdf\x90\xb3\x42\x7c\x44\x95\xb4\xde\x86\x78\x19\x17\x9b\xbf\x7f\x62\x7c\x04\x01\x00\xa4\x29\x1e\xc4\x51\x89\x77\xd2\xa2\x2b\x47\x2e\x0a\x82\x72\xce\xca\xde\x31\x4c\x60\x4b\x86\x97\x8c\x21\xf3\x37\x76\xb6\x2b\x2c\xd9\xd0\x18\xad\x58\x27\x9c\x0f\x41\xad\x2d\xa3\x4b\x17\xc9\xa3\x64\xfc\x54\xb3\x92\x89\xc6\x18\x7c\x93\x31\xdd\x09\xf5\x8e\x6a\xe5\x9a\x94\x23\x72\xce\xf6\xba\x37\xa2\x2a\xeb\x57\x2a\x5b\x8e\x31\xb8\x76\xae\x43\xe9\x10\xb0\x8f\x34\xc5\x7c\x97\xf3\x13\xe7\x5d\x34\x5c\xe6\xc9\xd1\x3e\xfe\xa3\xeb\x96\x34\x26\x4a\x0b\x4e\x7a\xad\x7f\xbf\xc1\x74\x15\x75\x0b\x1a\x7e\xb1\xb9\x93\xa4\x69\xdf\xf7\x99\x6c\x19\x1f\x2d\x76\x31\x1a\xa1\x26\x5f\xb8\x28\xbc\x95\xb6\xcc\xe0\xc5\x0e\xa0\x67\x98\xcd\xfe\x18\x28\xab\x0a\x1f\xf6\x1a\xdb\x7e\x9c\xbc\x61\xd7\x1a\x9f\x0c\xeb\x9c\xbd\xff\x9b\xf0\x9a\x34\xe3\x6c\x26\x2b\xf6\xcd\xf1\x58\xfa\xef\x41\x6f\x1b\x7c\x06\x00\x00\xff\xff\x84\x76\x84\xb1\x87\x02\x00\x00" func idtablestakingNodeStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2940,11 +3000,11 @@ func idtablestakingNodeStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x4c, 0x75, 0x1a, 0x17, 0x3f, 0xb6, 0xdd, 0xcf, 0xf0, 0x65, 0x80, 0xf, 0x7d, 0x6d, 0x4b, 0x9a, 0x77, 0x8f, 0xa4, 0x2f, 0xf6, 0x70, 0x6b, 0x67, 0x6f, 0x86, 0x72, 0x23, 0x15, 0xe9, 0xa8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0x6d, 0xdc, 0x1e, 0x2c, 0x5b, 0xbb, 0xc7, 0xea, 0xf2, 0x93, 0xd9, 0x2f, 0x30, 0x7b, 0xb0, 0xc7, 0x6f, 0xd5, 0xba, 0x2a, 0x93, 0x4b, 0xa6, 0x82, 0x5d, 0x62, 0xe5, 0xe9, 0xc, 0x13, 0xed}} return a, nil } -var _idtablestakingNodeStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x0f\x0f\x25\x5e\x4c\x0f\xa5\x87\xd0\x56\xd2\x46\x41\x10\x0f\x1a\x0f\x3d\xae\x9b\x89\xa6\xc6\x9d\x30\x99\x54\xa1\xf8\xdf\x4b\xdc\x9a\x8b\x20\x7d\x97\x37\x10\xf2\xed\xb7\xb3\xe5\xa1\x66\x51\x4c\x2b\x3e\xce\xd2\xcc\x6c\x2a\x5a\xa9\xd9\x97\x6e\x8b\x42\xf8\x80\xc7\xd3\x2c\x9d\x2c\xb2\x59\xf6\x99\x25\xef\xf3\x49\x92\xa6\xcb\xc9\x6a\x15\x04\x81\x8a\x71\x8d\xb1\x5a\xb2\x0b\xcd\x81\x5b\xa7\x31\xd6\xd3\xf2\xf4\xfc\x34\xc4\x4f\x10\x00\x40\x14\x61\xce\xd6\x54\xf8\x36\x52\x76\x64\x14\x2c\x30\x10\x2a\x48\xc8\x59\x82\x32\x74\x47\x70\x9c\x13\x78\xf3\x45\x56\x2f\x3f\x56\xa4\x68\xd4\xec\x49\x96\x54\xc4\x78\xb8\x95\x1b\x2d\x38\xbf\xcc\x24\xfe\xac\x5a\xa8\x36\x42\xa1\xb1\x56\x63\x24\xad\xee\x12\x6b\x3b\xab\xce\x06\x7f\x89\x22\x6c\x58\x84\x8f\xff\x91\xe8\xd2\x50\x55\x8c\x7a\x13\xbc\xa2\xc3\x8f\x3c\xe3\xe5\xbe\xd6\x5b\xd8\xed\x2f\x46\xd4\x28\x8b\xd9\x52\x54\x54\x7c\xf4\x9f\x86\x3d\xbf\xcb\x78\x8c\xda\xb8\xd2\x86\x83\x0f\x6e\xab\x1c\x8e\xf5\x6a\x79\xcf\x71\x30\xf4\x17\x3f\xfb\xa2\x13\xd9\x56\xe9\xba\xfa\x5b\x79\x3f\xad\xdd\xa5\xf2\x8c\xf7\xe4\x9a\xfe\xe1\x7c\xf7\xc4\xf3\x6f\x00\x00\x00\xff\xff\x41\xb5\x61\xec\x15\x02\x00\x00" +var _idtablestakingNodeStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xcd\x8a\xdb\x50\x0c\x85\xf7\x7e\x8a\x83\x17\xc1\xde\xd8\x9b\xd2\x45\x68\x1b\xfa\x43\xa0\x50\x5a\x68\x92\xd9\x2b\xd7\x72\xe2\xc9\xf5\x95\x91\xe5\x49\x60\xc8\xbb\x0f\xfe\x49\x98\x10\x06\x66\x31\xda\xc8\x20\xe9\xf8\x7c\xd2\xad\xea\x46\xd4\xb0\xf4\x72\xfc\xfd\x6b\x4d\x5b\xcf\x2b\xa3\x43\x15\x76\x28\x55\x6a\xc4\xf7\x85\x38\x8a\x22\x53\x0a\x2d\x39\xab\x24\x24\x54\x4b\x17\x6c\x8e\xcd\xb2\x3a\x7d\xfe\x94\xe2\x39\x8a\x00\x20\xcf\xf1\x47\x1c\x79\x3c\x91\x56\xfd\x38\x4a\x51\x10\x94\x4b\x56\x0e\x8e\x61\x02\xdb\x33\x82\x14\x0c\xd9\x3e\xb2\xb3\x61\xd0\xb3\xa1\x35\x3a\xb0\xfe\xe7\x72\x0e\xea\x6c\x9f\xdc\xbb\xc8\xfe\x4a\xc1\xff\x1a\x56\x32\xd1\x14\xb3\x37\x3a\x56\x83\xd0\xe8\xa8\x51\x6e\x48\x39\x21\xe7\x6c\xd2\xfd\x21\xaa\x72\x7c\x20\xdf\x71\x8a\xd9\x77\xe7\x7a\x94\x1e\x01\x53\xe4\x39\xb6\x43\xcf\x7b\x9c\xf7\xd1\xb2\x2f\xb3\xab\x7d\x7c\x45\xff\xb7\xac\x35\x51\xda\x71\x36\x6a\x7d\xf9\x08\xa6\x6f\x49\x7f\xa0\x39\xf2\x49\x3b\x2f\xbd\x1c\xc7\x52\x7a\x75\xd3\xc7\x62\x81\x86\x42\xe5\x92\xf8\xa7\x74\xbe\x40\x10\xbb\x30\xdd\x10\xb5\xd3\xdd\xa9\xa8\xab\x10\x8f\x1a\xe7\x71\x73\x7c\x62\xd7\x19\xbf\xda\xcb\x2d\xe6\xf8\xb5\x09\x43\x2a\xd6\x72\xe0\xd0\x5e\xdf\xc5\x98\x2f\x7a\xe7\xe8\x25\x00\x00\xff\xff\xbf\x2c\x3f\x68\x72\x02\x00\x00" func idtablestakingNodeStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -2960,11 +3020,11 @@ func idtablestakingNodeStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfc, 0x6b, 0x10, 0x5f, 0x81, 0x24, 0xe5, 0x30, 0x13, 0x2, 0x34, 0x58, 0x85, 0xd0, 0x3d, 0x73, 0xf9, 0xe6, 0xd2, 0x19, 0x17, 0xce, 0x6e, 0xd7, 0x65, 0x4e, 0xc5, 0x26, 0x66, 0x3c, 0x3f, 0xdf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0xb1, 0xec, 0x45, 0x6a, 0xd6, 0xd6, 0x63, 0x55, 0x11, 0x3, 0xac, 0x13, 0xe4, 0x53, 0xd3, 0xb6, 0x8b, 0x82, 0xb3, 0x97, 0x39, 0x1d, 0x61, 0x2d, 0xb5, 0x64, 0x2d, 0xc3, 0x2f, 0xa9, 0x72}} return a, nil } -var _idtablestakingNodeUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x41\x6b\xea\x50\x10\x85\xf7\xf9\x15\x07\x17\x8f\xb8\x89\x6f\x2d\xef\x3d\xc9\x6b\x2c\x08\x22\xc5\x64\xd3\xe5\x78\x9d\x68\xea\xf5\x4e\x18\x27\x55\x10\xff\x7b\x49\x52\xa5\x60\x91\xce\xe6\xce\x62\xe6\x9c\xef\x9e\xa9\xf6\xb5\xa8\xe1\xd9\xcb\x71\x96\x15\xb4\xf2\x9c\x1b\xed\xaa\xb0\x41\xa9\xb2\xc7\xef\xd3\x2c\x9b\x2e\x8a\x59\xf1\x5a\xa4\xff\xe7\xd3\x34\xcb\x96\xd3\x3c\x8f\xa2\xc8\x94\xc2\x81\x9c\x55\x12\x70\x8e\x22\x00\x18\x8d\x30\x17\x47\x1e\xef\xa4\x55\xab\x84\x52\x14\x04\xe5\x92\x95\x83\x63\x98\xc0\xb6\x8c\x20\x6b\x86\xac\xde\xd8\x59\xb7\xe8\xd9\x70\x30\xda\xb1\x2e\xb9\x1c\xe3\xd7\x3d\x4c\xb2\x90\x75\xd7\xb3\xf6\x5e\xb5\x72\x4d\xca\x31\x39\x67\x63\xa4\x8d\x6d\x53\xe7\xa4\x09\x36\xc4\xb9\x1b\xf8\x04\x5a\x89\xaa\x1c\x7f\x02\xd1\xd6\x81\x7d\x99\xdc\x48\xf0\x17\xad\x7c\xd2\x6b\xfc\x79\x8c\xf5\x2f\x6e\xf3\x1a\x7f\x13\xe4\x97\xa1\xdc\x44\x69\xc3\x2f\x64\xdb\xe1\xcd\xb4\xad\xc9\x04\x35\x85\xca\xc5\x83\x27\x69\xfc\x1a\x41\xec\x8a\xfe\x08\x7c\x30\xec\xd3\xb8\xf4\x0f\x9f\xd8\x35\xc6\xd7\x7b\xdc\xff\x28\x69\x42\xd7\xa7\xde\xc7\xb7\xd5\xcb\x47\x00\x00\x00\xff\xff\x71\x58\x69\x70\x03\x02\x00\x00" +var _idtablestakingNodeUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x51\xcd\x4a\xf3\x50\x10\xdd\xe7\x29\x0e\x59\x94\x64\x93\xee\xcb\xf7\x59\xaa\x22\x08\xa2\x62\xc5\xfd\xf4\x66\xd2\xc6\xde\xde\x09\x93\x89\x15\x4a\xdf\x5d\xf2\xd3\xd2\x52\x05\x17\xce\xea\xc2\x3d\x73\x7e\xe6\x94\x9b\x4a\xd4\x70\xe7\x65\x7b\x7f\xfb\x4a\x0b\xcf\x73\xa3\x75\x19\x96\x28\x54\x36\x88\x2f\x3f\xe2\x28\x8a\x4c\x29\xd4\xe4\xac\x94\x80\x5d\x14\x01\xc0\x78\x8c\x07\x71\xe4\xf1\x41\x5a\xb6\x70\x14\xa2\x20\x28\x17\xac\x1c\x1c\xc3\x04\xb6\x62\x04\xc9\x19\xb2\x78\x67\x67\xdd\xa2\x67\x43\x6d\xb4\x66\x7d\xe1\x62\x02\x6a\x6c\x95\x5c\xaa\x66\x8f\x92\xf3\x53\xc5\x4a\x26\x9a\x62\xf4\x03\x62\xde\x11\xf5\x8e\x2a\xe5\x8a\x94\x13\x72\xce\x06\xde\x6b\x51\x95\xed\x1b\xf9\x86\x53\x8c\x66\xce\x49\x13\x2c\xc5\xae\xc3\x0f\x29\x16\x1d\xe6\x37\xce\xdb\xa9\xd9\x17\xd9\xd1\x3e\xfe\xa3\x55\xcb\x6a\x13\xa5\x25\x67\x3d\xd7\xbf\xbf\xc8\x74\x95\xb4\x85\x4c\xbe\x69\xea\x04\x34\xef\x75\x9f\xc9\x56\xe9\xd1\x62\x3b\xd3\x29\x2a\x0a\xa5\x4b\xe2\x1b\x69\x7c\x8e\x20\x76\x08\x7a\x16\xb3\x1e\xca\xa7\x7c\x53\x86\xb8\xe7\xd8\xf7\xe7\xe4\x4f\x76\x8d\xf1\xc9\xb1\xce\xb3\x67\x4d\xe8\xde\x33\xef\x93\xc3\xe2\x3e\xfa\x0a\x00\x00\xff\xff\xa1\x88\x84\x20\x60\x02\x00\x00" func idtablestakingNodeUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -2980,11 +3040,11 @@ func idtablestakingNodeUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4e, 0x95, 0x37, 0xa2, 0xd8, 0xd1, 0x91, 0x70, 0xdb, 0x79, 0x3a, 0x20, 0x5d, 0x7, 0x45, 0xe7, 0xfb, 0x54, 0xb7, 0xc3, 0x41, 0x2f, 0x7e, 0xe9, 0xaa, 0x3a, 0x69, 0x13, 0xb6, 0xd6, 0x76, 0x27}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0x1c, 0xa5, 0xdd, 0xf7, 0xea, 0x9b, 0x33, 0xd5, 0xdd, 0xc3, 0x4a, 0x31, 0x12, 0x57, 0x68, 0x42, 0x35, 0x8c, 0x64, 0xa7, 0x47, 0x11, 0x93, 0x34, 0xbe, 0x86, 0xb7, 0x1b, 0x2, 0x80, 0x5}} return a, nil } -var _idtablestakingNodeUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x0f\x0f\x25\x5e\x92\x9e\x43\x5b\x49\x1b\x0b\x82\x48\x31\xb9\xf4\xb8\x6e\x26\x9a\x1a\x77\xc2\x64\xd2\x08\xc5\xff\x5e\x62\x54\x04\x8b\x74\x4e\x7b\xd8\xfd\xe6\xdb\xf7\xca\x5d\xcd\xa2\x78\xaf\xb8\x9b\x25\x99\x59\x55\x94\xaa\xd9\x96\x6e\x8d\x42\x78\x87\xc7\xfd\x2c\x99\x2e\xb2\x59\xf6\x99\xc5\xaf\xf3\x69\x9c\x24\xcb\x69\x9a\x7a\x9e\x8a\x71\x8d\xb1\x5a\xb2\xf3\x1d\x75\x71\x9e\x0b\x35\x4d\x84\x54\xa5\x74\xeb\x31\x7e\x3c\x0f\x00\xc2\x10\x73\xb6\xa6\xc2\xb7\x91\xb2\x87\xa3\x60\x81\x81\x50\x41\x42\xce\x12\x94\xa1\x1b\x82\xe3\x9c\xc0\xab\x2f\xb2\x7a\x7c\x58\x91\xa2\x51\xb3\x25\x59\x52\x11\xe1\xe1\xd6\x2f\x58\x70\x7e\x3c\x93\x0c\xbb\x6a\xa1\xda\x08\xf9\xc6\x5a\x8d\x10\xb7\xba\x89\xad\xe5\xd6\x69\x6f\x83\xd3\x84\x21\x56\x2c\xc2\xdd\x7f\x24\xfa\x69\xa8\x2a\x82\x8b\x09\x9e\xd1\xe3\x83\x81\xf1\x74\x5f\xeb\xc5\xef\x23\x8c\xfe\xc8\xf6\xea\x52\xaa\x2c\x66\x4d\x1f\x46\x37\xe3\xcb\xd2\x7e\x26\x13\xd4\xc6\x95\xd6\x1f\xbd\x71\x5b\xe5\x70\xac\x67\xf5\x7b\xe2\xa3\x81\x72\x18\x32\xa1\x3d\xd9\x56\xe9\x5c\xc7\xed\x87\x82\xb6\xce\x8d\xd2\x82\xb4\x63\xe9\xd5\x4e\x4d\x5e\x95\x3a\xf6\x4e\xc4\xc3\x6f\x00\x00\x00\xff\xff\xe2\xcc\x6e\xd8\x2c\x02\x00\x00" +var _idtablestakingNodeUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\xc1\x4a\xf3\x50\x10\x85\xf7\x79\x8a\x43\x16\x25\xd9\x24\xfb\xf2\xff\x96\xaa\x08\x82\x54\x31\xe2\x7e\x7a\x33\x69\x63\xd3\x3b\x61\x32\x31\x82\xf4\xdd\x25\x4d\x5a\x5a\xaa\xe0\xc2\xd9\xde\xb9\xdf\x9c\x33\x73\xca\x6d\x2d\x6a\xb8\xab\xa4\xbb\xbf\x7d\xa1\x65\xc5\x99\xd1\xa6\xf4\x2b\x14\x2a\x5b\x84\x97\x0f\x61\x10\x98\x92\x6f\xc8\x59\x29\x3e\xf2\xdc\xcd\xf3\x5c\xb9\x69\xa6\xc8\x4c\x4b\xbf\x8a\xf1\x19\x04\x00\x90\xa6\x78\x10\x47\x15\xde\x49\xcb\x9e\x80\x42\x14\x04\xe5\x82\x95\xbd\x63\x98\xc0\xd6\x0c\x2f\x39\x43\x96\x6f\xec\x6c\xff\xb1\x62\x43\x63\xb4\x61\x7d\xe6\x62\x0a\x6a\x6d\x1d\x5d\x0a\x49\x16\x92\xf3\x63\xcd\x4a\x26\x1a\x63\xf2\x43\x47\xb6\x07\x0d\x8a\x6a\xe5\x9a\x94\x23\x72\xce\x46\xee\xb5\xa8\x4a\xf7\x4a\x55\xcb\x31\x26\x73\xe7\xa4\xf5\xd6\x5b\xc0\x58\x69\x8a\xe5\xbe\xe7\x37\xca\xfb\x6a\xb8\x2a\x92\xa3\x7c\xfc\x47\x3f\x2d\x69\x4c\x94\x56\x9c\x0c\xac\x7f\x7f\xe1\xe9\x2a\xea\x6f\x34\xfd\xe6\x78\x27\x4d\xd9\x30\xf7\x89\x6c\x1d\x1f\x25\xf6\x35\x9b\xa1\x26\x5f\xba\x28\xbc\x91\xb6\xca\xe1\xc5\x0e\x46\xcf\x6c\x36\x63\x1e\x28\xdf\x96\x3e\x1c\x18\xbb\x61\x9d\xfc\xc1\xae\x35\x3e\x59\xd6\xb9\xf7\xa4\xad\x73\x32\x5e\xb0\x75\xa2\x3d\x64\x4c\xca\x49\x68\x0e\xbc\x5d\xf0\x15\x00\x00\xff\xff\x85\x75\xea\x7b\x8a\x02\x00\x00" func idtablestakingNodeUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -3000,11 +3060,11 @@ func idtablestakingNodeUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0xff, 0xd7, 0xe9, 0x86, 0x61, 0x79, 0xad, 0x99, 0xa6, 0xaa, 0x48, 0x6, 0xe9, 0x53, 0x70, 0xa0, 0xae, 0x82, 0xf6, 0x21, 0xec, 0x11, 0x8, 0x6, 0x4d, 0x42, 0xd1, 0xc6, 0xe5, 0x8, 0x9d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xd2, 0x71, 0xf6, 0xe3, 0x80, 0x71, 0xc6, 0xeb, 0x99, 0xb9, 0x5f, 0x5b, 0x7b, 0x58, 0x5a, 0x60, 0xeb, 0x99, 0x8d, 0x8e, 0x29, 0xae, 0x92, 0xd0, 0x8c, 0x1, 0xe5, 0x56, 0xf7, 0x10, 0xee}} return a, nil } -var _idtablestakingNodeWithdraw_reward_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x8f\x93\x50\x10\xc7\xef\x7c\x8a\xc9\x1e\x4c\x7b\x10\x3c\x18\x0f\xcd\xea\xa6\x5a\x9a\x34\x36\x5d\x53\x50\xe3\x71\xfa\x18\x96\x67\xe9\x1b\x32\x0c\xd2\xc4\xec\x77\x37\x0f\x16\x64\x63\xd3\x98\x9d\xcb\x40\xf8\xff\x67\x7e\xcc\x8c\x3d\x55\x2c\x0a\xeb\x92\xdb\xcd\x2a\xc5\x43\x49\x89\xe2\xd1\xba\x07\xc8\x85\x4f\xf0\xe6\xbc\x59\xc5\xbb\x74\x93\xfe\x48\x97\x1f\xb7\xf1\x72\xb5\xda\xc7\x49\x12\x4c\x5c\x29\x1f\xc9\x0d\xe2\xf5\xf6\xfe\x7b\x7a\xff\x39\xde\x0d\xc2\x20\x50\x41\x57\xa3\x51\xcb\x6e\x86\x27\x6e\x9c\x2e\xe0\xeb\xda\x9e\xdf\xbd\x9d\xc3\xef\x20\x00\x00\x88\x22\xd8\xb2\xc1\x12\x7e\xa1\x58\x8f\x00\x39\x0b\x20\x08\xe5\x24\xe4\x0c\x81\x32\x68\x41\xe0\x38\x23\xe0\xc3\x4f\x32\xda\x19\x4b\x52\xa8\x15\x8f\x24\x7b\xca\x17\xf0\xea\xdf\xbf\x08\x77\x9c\x75\xcf\x24\xc1\x68\xc9\x07\xec\xbf\xae\xee\x35\xfc\x86\x4d\xa9\xbd\xae\x12\xaa\x50\x68\x86\xc6\xe8\x02\x96\x8d\x16\x4b\x63\x3c\xbd\xa7\x86\xa7\x88\x22\x38\xb0\x08\xb7\xff\x03\xeb\xa3\xa6\x32\x0f\x47\x62\x78\x0f\xbe\x7c\xd8\xd7\xb8\xbd\x8e\xff\x61\xe6\x67\xbc\xb8\xb0\xa9\x89\x28\x51\x16\x7c\xa0\x2f\xa8\xc5\x7c\x6c\xea\xe3\xee\x0e\x2a\x74\xd6\xcc\x6e\x3e\x71\x53\x66\xe0\x58\x07\xf4\x6b\xe0\x37\xf3\xe0\x39\xfb\x74\x74\x97\xf0\x27\x73\x1c\x80\xa3\xba\x87\x8a\x46\x6f\xf7\xf9\x65\x7c\xfe\xc0\xa0\xf3\x0f\x68\x8f\x7d\xa2\x33\x99\x46\x69\x38\xa9\x8b\xc0\x61\x46\x15\xd7\x56\x9f\xc0\x6e\x5f\x3f\x5f\x47\xd8\x5a\x2d\x32\xc1\x76\x4f\x2d\x4a\x46\x59\xe7\xab\xc7\xab\xed\xf3\x7c\xec\xfb\xf8\x27\x00\x00\xff\xff\x60\x5a\x76\x7d\x3c\x03\x00\x00" +var _idtablestakingNodeWithdraw_reward_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x4f\x6b\xdb\x40\x10\xc5\xef\xfb\x29\x06\x1d\x8c\x74\xa8\x74\x29\x3d\x98\xb4\xa1\x7f\x30\x14\x42\x53\xe2\x34\x3d\x8f\x57\xa3\x78\xeb\xf5\x8e\x18\x8d\xaa\x40\xc9\x77\x2f\x5a\xfd\x41\xae\x6b\x28\x25\x73\x11\x62\xdf\xbc\x79\x3f\xcd\xca\x1d\x6b\x16\x85\x8d\xe7\xee\xf3\xa7\x7b\xdc\x79\xda\x2a\x1e\x5c\x78\x84\x4a\xf8\x08\xc9\xf9\x41\x62\x16\x3d\xf7\x7c\xa0\xb0\x90\xc6\xf7\xc4\x18\xa3\x82\xa1\x41\xab\x8e\x43\x8a\x47\x6e\x83\xae\xe1\xdb\xc6\x3d\xbd\x79\x9d\xc1\x2f\x63\x00\x00\x8a\x02\x6e\xd8\xa2\x87\x9f\x28\xae\x1f\x00\x15\x0b\x20\x08\x55\x24\x14\x2c\x81\x32\xe8\x9e\x20\x70\x49\xc0\xbb\x1f\x64\x35\x36\x7a\x52\x68\x14\x0f\x24\x77\x54\xad\x01\x5b\xdd\xa7\xe7\x39\xf3\x2f\x5c\xd2\x6d\x4d\x82\xca\x92\xc1\xea\x82\x62\x1b\x8d\xcc\x6c\x5c\x4d\x14\xd1\x7b\x35\x43\xe5\x0f\xd8\x7a\x1d\x74\xb5\x50\x8d\x42\x29\x5a\xab\xe3\xfc\x0f\x2c\xc2\xdd\x03\xfa\x96\x32\x58\xbd\xb7\xb6\x47\xee\x51\x61\xac\xa2\x80\x5d\xd4\xfc\x0b\x61\x5f\x0d\xf9\x2a\x9f\x31\xe1\x2d\xf4\xd3\xf2\x46\x59\xf0\x91\xf2\xc1\xeb\xea\x25\xd8\xdf\xa5\xfd\xfe\xd6\x7f\xb9\x03\x0b\xd1\x76\x98\xfb\x15\x75\x9f\xcd\x11\xfb\xba\xbe\x86\x1a\x83\xb3\x69\xf2\x91\x5b\x5f\x42\x60\x9d\x40\x4f\x30\x9b\xf1\x5a\x61\x79\x74\x21\xc9\xcc\x29\xe7\xf2\xab\x5f\x40\xfd\x73\x15\x53\xec\x62\xd4\x15\xb3\x47\x3c\xfe\xbf\x94\x9b\x9b\xdb\xef\x10\xfb\x93\xc1\xe0\x79\x08\x4a\x4f\x64\x5b\xa5\xc5\x3e\xcf\x62\xe7\x25\xd5\xdc\x38\x1d\x63\x5d\xbd\x3a\x5d\x60\xde\x39\xdd\x97\x82\xdd\x1d\x75\x28\x25\x95\xb1\xaf\x99\x7f\x8e\xe1\x99\x4d\x53\x9f\xcd\xef\x00\x00\x00\xff\xff\x59\x46\xe5\x62\x9a\x03\x00\x00" func idtablestakingNodeWithdraw_reward_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3020,11 +3080,11 @@ func idtablestakingNodeWithdraw_reward_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/withdraw_reward_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5f, 0x9c, 0xf5, 0xbe, 0x1e, 0xf3, 0xb8, 0x1e, 0x25, 0x2c, 0x3b, 0x3, 0xf1, 0xc8, 0xaf, 0xae, 0x4b, 0xb5, 0xb5, 0x88, 0x5e, 0x4f, 0x61, 0x4, 0x43, 0x82, 0xe4, 0xaf, 0x60, 0x6b, 0xf1, 0x19}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x52, 0xeb, 0x3d, 0x25, 0xa1, 0xa5, 0x3e, 0xc5, 0x3, 0xd5, 0xde, 0x8f, 0xc3, 0xa1, 0x8, 0xb9, 0x75, 0x58, 0x54, 0x20, 0xdd, 0xea, 0x4d, 0x82, 0x1d, 0xd1, 0x39, 0x18, 0xbd, 0x95, 0x4c, 0xe7}} return a, nil } -var _idtablestakingNodeWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xcf\x8e\x94\x40\x10\xc6\xef\x3c\x45\x65\x0f\x06\x0e\x82\x07\xe3\x81\xac\x6e\x50\x98\x64\xe2\x64\xd6\x2c\xac\xc6\x63\x4d\x53\x2c\xed\x30\x5d\xa4\x29\x64\x12\xb3\xef\x6e\x1a\x16\x64\xe3\x64\x63\xac\x4b\xf3\xe7\xfb\xaa\x7e\x5d\x55\xfa\xd4\xb2\x15\xd8\x34\x3c\x6c\xd3\x02\x0f\x0d\xe5\x82\x47\x6d\x1e\xa0\xb2\x7c\x82\x37\xe7\x6d\x9a\xed\x8b\x6d\xf1\xbd\x48\x3e\xee\xb2\x24\x4d\xef\xb2\x3c\xf7\x56\xae\x82\x8f\x64\x66\xf1\x66\x77\xfb\xad\xb8\xfd\x9c\xed\x67\xa1\xe7\x89\x45\xd3\xa1\x12\xcd\xc6\xc7\x13\xf7\x46\x62\xb8\xdf\xe8\xf3\xbb\xb7\x01\xfc\xf2\x3c\x00\x80\x28\x82\x1d\x2b\x6c\xe0\x27\x5a\xed\x10\xa0\x62\x0b\x08\x96\x2a\xb2\x64\x14\x81\x30\x48\x4d\x60\xb8\x24\xe0\xc3\x0f\x52\x32\x1a\x1b\x12\xe8\x04\x8f\x64\xef\xa8\x8a\xe1\xd5\xdf\xb7\x08\xf7\x5c\x8e\xcf\x64\xbd\xc5\x52\xcd\xd8\x7f\x5c\xe3\x6b\xf8\x15\xfb\x46\x26\x5d\x6b\xa9\x45\x4b\x3e\x2a\x25\x31\x24\xbd\xd4\x89\x52\x8e\xde\x51\xc3\x53\x44\x11\x1c\xd8\x5a\x1e\xfe\x05\xd6\x45\x47\x4d\x15\x2e\xc4\xf0\x1e\x5c\xfa\x70\xca\x71\xfd\x32\xfe\x07\xdf\xf5\x38\xbe\x30\xa9\x95\x28\x17\xb6\xf8\x40\x5f\x50\xea\x60\x29\xea\xe2\xe6\x06\x5a\x34\x5a\xf9\x57\x9f\xb8\x6f\x4a\x30\x2c\x33\xfa\x4b\xe0\x57\x81\xf7\x9c\x7d\xdd\xba\x4b\xf8\xab\x3e\xce\xc0\x51\x37\x41\x45\x8b\x77\xfc\xfd\x7f\x7c\x6e\xc1\x60\xf4\xcf\x68\x8f\xd3\x41\x67\x52\xbd\xd0\xbc\x52\x17\x81\xc3\x92\x5a\xee\xb4\x3c\x81\x5d\xbf\x7e\x3e\x8e\x70\xd0\x52\x97\x16\x87\x7b\x33\x7e\x2b\x47\x5f\xb7\x6c\xed\x74\x06\x4b\xdd\xc7\xdf\x01\x00\x00\xff\xff\x0d\xd7\x89\xd6\x3c\x03\x00\x00" +var _idtablestakingNodeWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x4f\x6b\xdb\x40\x10\xc5\xef\xfb\x29\x06\x1d\x8c\x74\xa8\x74\x29\x3d\x98\xb4\xa1\x7f\x30\x14\x42\x53\xea\x24\x3d\x8f\x57\xa3\x78\xeb\xf5\x8e\x18\x8d\xaa\x40\xc9\x77\x2f\x5a\xfd\x41\xae\x6b\x28\x25\x73\x31\xd6\xbe\x79\xf3\x7e\x9a\x95\x3b\xd6\x2c\x0a\x1b\xcf\xdd\xe7\x4f\x77\xb8\xf3\xb4\x55\x3c\xb8\xf0\x08\x95\xf0\x11\x92\xf3\x83\xc4\x2c\x7a\xee\xf8\x40\x61\x21\x8d\xff\x13\x63\x8c\x0a\x86\x06\xad\x3a\x0e\x29\x1e\xb9\x0d\xba\x86\xfb\x8d\x7b\x7a\xf3\x3a\x83\x5f\xc6\x00\x00\x14\x05\xdc\xb0\x45\x0f\x3f\x51\x5c\x3f\x00\x2a\x16\x40\x10\xaa\x48\x28\x58\x02\x65\xd0\x3d\x41\xe0\x92\x80\x77\x3f\xc8\x6a\x6c\xf4\xa4\xd0\x28\x1e\x48\xbe\x51\xb5\x06\x6c\x75\x9f\x9e\xe7\xcc\xbf\x70\x49\xb7\x35\x09\x2a\x4b\x06\xab\x0b\x8a\x6d\x34\x32\xb3\x71\x35\x51\x44\xef\xd5\x0c\x95\x3f\x60\xeb\x75\xd0\xd5\x42\x35\x0a\xa5\x68\xad\x8e\xf3\x3f\xb0\x08\x77\x0f\xe8\x5b\xca\x60\xf5\xde\xda\x1e\xb9\x47\x85\xb1\x8a\x02\x76\x51\xf3\x2f\x84\x7d\x35\xe4\xab\x7c\xc6\x84\xb7\xd0\x4f\xcb\x1b\x65\xc1\x47\xca\x07\xaf\xab\x97\x60\x7f\x97\xf6\xfb\x5b\xff\xe5\x0e\x2c\x44\xdb\x61\xee\x57\xd4\x7d\x36\x47\xec\xeb\xfa\x1a\x6a\x0c\xce\xa6\xc9\x47\x6e\x7d\x09\x81\x75\x02\x3d\xc1\x6c\xc6\x6b\x85\xe5\xd1\x85\x24\x33\xa7\x9c\xcb\xb7\x7e\x01\xf5\xcf\x55\x4c\xb1\x8b\x51\x57\xcc\x1e\xf1\xf8\xff\x52\x6e\x6e\x6e\xbf\x43\xec\x4f\x06\x83\xe7\x21\x28\x3d\x91\x6d\x95\x16\xfb\x3c\x8b\x9d\x97\x54\x73\xe3\x74\x8c\x75\xf5\xea\x74\x81\x79\xe7\x74\x5f\x0a\x76\xf7\x21\x3e\x2b\x63\x5f\x33\x7f\x1c\xc3\x6f\x36\x4d\x7d\x36\xbf\x03\x00\x00\xff\xff\x34\xcb\x1a\xc9\x9a\x03\x00\x00" func idtablestakingNodeWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3040,11 +3100,11 @@ func idtablestakingNodeWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/node/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0x80, 0xfb, 0x68, 0x62, 0x31, 0x5b, 0x95, 0x88, 0x56, 0xa3, 0xd1, 0xe9, 0x54, 0xb3, 0xe9, 0x58, 0xcc, 0x3f, 0xf4, 0x64, 0x15, 0x1c, 0x8, 0xbb, 0x85, 0xd9, 0x8d, 0x1e, 0x30, 0x5e, 0x2b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x77, 0xc9, 0x29, 0x2b, 0x34, 0x2, 0xd7, 0x10, 0x4e, 0x68, 0xa9, 0x5e, 0x1e, 0x2d, 0xc5, 0xd9, 0xdb, 0xca, 0xd0, 0x10, 0xb4, 0x22, 0xef, 0xd4, 0xa5, 0x9c, 0xe5, 0xcd, 0xe, 0xb5, 0x16, 0xa8}} return a, nil } -var _idtablestakingScriptsGet_approved_but_not_staked_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\xc1\xca\x9b\x40\x14\x85\xf7\x3e\xc5\xe9\x4e\x37\xf9\xbb\x0e\xb8\x48\x30\x05\x21\xcd\xa2\xba\x29\xc1\xc5\x18\xaf\x71\x88\xce\x4c\x67\xee\xa4\x29\xc1\x77\x2f\x6a\xaa\x86\x96\xce\x42\xf0\xfa\x1d\xbf\xe3\x45\xd9\x19\x6d\x19\x5f\x5a\xfd\x33\x4d\x72\x51\xb6\x94\xb1\xb8\x49\x75\x45\x6d\x75\x87\xcf\x8f\x34\x39\x9c\xf2\x34\xff\x9e\xef\xf6\xc7\xc3\x2e\x49\xbe\x1d\xb2\x2c\x08\x3e\x3e\x90\x37\xd2\xc1\x5d\xac\x34\x0c\x4b\xec\xad\x72\xe0\x86\xd0\x4a\xc7\xd0\x35\x94\xae\x68\x98\x08\x86\xb0\x04\xad\xc6\xa7\xc2\x18\xab\xef\x54\x4d\x58\xe9\x19\x95\x86\xd2\x8c\x8b\xb7\x96\x14\xb7\xbf\xd0\x88\x3b\x81\xf5\x8d\x94\x83\x63\x71\xa3\x0a\xa2\xd4\xc3\xac\x21\x74\x52\xc9\xce\x77\xb0\xf4\xc3\x4b\x4b\x1d\x29\xde\x04\xc6\x97\xa8\xbd\x42\x27\xa4\x0a\xa3\x2d\xce\x19\x5b\xa9\xae\x05\x9e\x01\x00\xb4\xc4\xb3\x37\x4d\x1c\xe2\x7f\x7c\xee\xe6\x4a\xbc\x7b\x31\x47\xe9\x38\x8c\xe6\xe8\xd4\xe1\x7f\xc1\x6c\x24\x4e\xba\xa2\x34\x71\x61\x14\xfc\x1d\xfd\x2a\xcc\x16\xcf\xa9\xd6\x16\x7b\xad\xdb\x1e\x31\x9e\xfd\x48\xd6\xda\xce\x24\xa4\x5a\x09\xa7\xfe\xc3\x59\xbf\xe9\xfc\xe7\xa6\x40\x0c\xb6\x9e\x46\xaa\x5f\xb4\xf4\x60\x2b\x5e\x75\x56\xdb\x88\x71\x2e\x66\xe1\xb2\x90\x41\xb9\x5e\xcf\x22\x95\xf5\xbb\x77\xa1\x0a\x7c\x9a\xd4\x2b\x7a\x38\x6b\xf3\x46\x18\x43\xaa\x0a\x97\x54\x34\xb3\x7d\xb0\x5c\xa7\x9f\xe7\x2d\x1a\xf4\xbf\x03\x00\x00\xff\xff\xa2\xd8\x97\xd5\x98\x02\x00\x00" +var _idtablestakingScriptsGet_approved_but_not_staked_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x31\x8f\x9b\x40\x10\x85\x7b\x7e\xc5\x8b\x2b\x68\xec\xde\x12\x45\x22\x2b\x92\xa5\x24\x8d\xdd\x59\x14\x6b\x18\xcc\xca\xcb\x0e\x99\x1d\x9c\x9c\x2c\xfe\xfb\x09\xf0\x01\x96\x4f\xb7\x05\x12\xbb\xdf\xe3\x7b\x8c\xd6\xd6\x0d\x8b\xe2\xa7\xe3\x7f\xfb\xdd\xd1\x9c\x1d\x1d\xd4\x5c\xad\xbf\xa0\x14\xae\xb1\x7a\x3d\x58\x45\xd1\x66\x83\x63\x65\x03\x42\x2e\xb6\x51\x08\x69\x2b\x3e\x40\x2b\x82\xb3\x41\xc1\x25\x3c\x17\xd4\xef\x18\x85\x11\x02\xfb\xe1\xd4\x34\x8d\xf0\x8d\x8a\x11\x3b\xb7\x8a\x82\xe1\x59\x91\xb7\x22\xe4\xd5\xbd\xa1\x32\x37\x82\xf2\x95\x7c\x40\x50\x73\xa5\x02\xe6\xcc\xfd\x5e\x45\xa8\xad\xb7\x75\x5b\x43\xe8\x6f\x6b\x85\x6a\xf2\xba\x8e\x4c\x9e\x53\x08\xb1\x71\x2e\x41\xd9\x7a\xd4\xc6\xfa\x38\xd9\xe2\x74\x50\xb1\xfe\x92\xe1\x1e\x01\x80\x23\x9d\xfc\xfb\x5d\x40\xfa\xc9\x4f\xaf\x2f\xa4\xdf\x1f\xcc\x2f\x1b\x34\x4e\xa6\xe8\xd8\xe5\xab\xe0\x61\x20\xfe\x70\x41\xfb\x5d\x88\x93\xe8\x35\xfa\xdb\x34\x5b\xdc\xc7\x5a\x5b\xfc\x60\x76\x1d\x52\xdc\xbb\x81\x2c\x59\x26\x12\xd6\x2f\x84\x63\xff\x7e\x2d\xbf\x74\xfa\x78\xc9\x90\x42\xa5\xa5\x81\xea\x66\x2d\xfd\x57\x31\x8f\x3a\x8b\x69\xa4\x38\x65\x93\x70\x1e\x48\xaf\x5c\x8e\x67\x96\xda\xf2\xd9\x3b\x53\x19\xbe\x8d\xea\x05\xdd\xaf\xa5\x79\x6d\x9a\x86\x7c\x11\xcf\xa9\x64\x62\xbb\x68\x7e\x8e\x97\xe8\x29\x1a\x75\xef\x01\x00\x00\xff\xff\x1f\x13\x7f\x5b\x9e\x02\x00\x00" func idtablestakingScriptsGet_approved_but_not_staked_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -3060,11 +3120,11 @@ func idtablestakingScriptsGet_approved_but_not_staked_nodesCdc() (*asset, error) } info := bindataFileInfo{name: "idTableStaking/scripts/get_approved_but_not_staked_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc7, 0xd1, 0x94, 0x0, 0xe, 0x54, 0x44, 0x5c, 0x91, 0xdc, 0xe, 0x56, 0xa7, 0x76, 0x7d, 0x4, 0x90, 0x93, 0xa2, 0x39, 0xc3, 0x18, 0x9f, 0x62, 0x8e, 0x5f, 0xa4, 0xb, 0x33, 0x42, 0xc4, 0xc4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x14, 0xa8, 0xd9, 0xd7, 0xa2, 0x3c, 0xd5, 0x82, 0xed, 0xbe, 0x41, 0xd5, 0xa4, 0x94, 0x1e, 0x60, 0x33, 0x2f, 0x2e, 0x61, 0x5a, 0x62, 0x82, 0xc9, 0x65, 0x58, 0xaf, 0xf, 0x89, 0x70, 0xdd, 0xec}} return a, nil } -var _idtablestakingScriptsGet_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x4f\x4b\xc3\x40\x10\xc5\xef\xfb\x29\x1e\x3d\x25\x97\xd6\xb3\x20\x25\x9a\x08\x81\xe2\xc1\xec\x45\xc4\xc3\x36\xd9\xa6\x43\x37\xbb\xcb\xec\xac\x7f\x10\xbf\xbb\xa4\x11\x51\xe8\x9c\xe7\xf7\xde\xef\xd1\x14\x03\x0b\xee\x5d\x78\x6b\x6b\x6d\xf6\xce\x76\x62\x4e\xe4\x47\x1c\x38\x4c\xb8\x7a\x6f\xeb\xe6\x41\xb7\xfa\x49\x57\xb7\xbb\xa6\xaa\xeb\xc7\xa6\xeb\x94\xda\x6c\xa0\x8f\x94\x90\x7a\xa6\x28\x60\x2b\x99\x7d\x82\x1c\x2d\xfa\xcc\x6c\xbd\xc0\xc4\xc8\xe1\xd5\x0e\x70\x94\x44\xa9\x98\xf7\x38\x64\x8f\xc9\x90\x2f\xca\x6b\x3c\x77\xc2\xe4\xc7\x17\x7c\x2a\x00\x70\xf6\x97\xd8\x51\x12\xdc\x5c\x50\x5a\x8f\x56\xaa\x9f\xd4\xf9\xa9\x28\xcf\xe8\x7c\xdb\x2d\xa2\xf1\xd4\x17\xab\xbb\x90\xdd\x00\x1f\x66\x29\x33\xfc\xb7\x58\x36\x25\x09\x6c\x46\xbb\x2a\xd5\x19\x5f\xdc\xff\x96\xaf\x4f\xf6\x23\xa9\xaf\xef\x00\x00\x00\xff\xff\x84\xeb\x78\x1d\x1b\x01\x00\x00" +var _idtablestakingScriptsGet_approved_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\x03\x41\x0c\x85\xef\xf3\x2b\x1e\x7b\xda\xbd\xb4\x77\x41\x8a\x28\x82\xe0\xad\xbd\x89\x87\x38\x9b\x6e\x43\x67\x67\x86\x24\xa3\x88\xf8\xdf\x65\x5b\x11\xc5\xe6\x9a\x7c\x79\xdf\x93\xb9\x16\x75\xdc\xa7\xf2\xf6\x70\xb7\xa3\x97\xc4\x5b\xa7\xa3\xe4\x09\x7b\x2d\x33\xba\xff\x8b\x2e\x84\xf5\x1a\xbb\x83\x18\x2c\xaa\x54\x87\xb2\x37\xcd\x06\x3f\x30\x62\x53\xe5\xec\xa0\x5a\xb5\xbc\xf2\x88\x24\xe6\x21\x50\x8c\x6c\xd6\x53\x4a\x03\xf6\x2d\x63\x26\xc9\xfd\x70\x85\xa7\xad\xab\xe4\xe9\x19\x1f\x01\x00\x12\xff\x90\x8f\x62\x8e\xeb\x0b\x62\xab\x89\xfd\xe6\xfb\xfb\x72\xd4\x0f\x27\x74\x99\xcd\x06\x95\xb2\xc4\xbe\xbb\x2d\x2d\x8d\xc8\x65\x91\xa3\xf1\xaf\xcd\xb9\x99\x79\x51\x9a\xb8\x1b\xc2\x09\x3f\x77\xf8\x1d\xbe\x3a\xf2\xbb\x85\xcf\xaf\x00\x00\x00\xff\xff\x00\x5c\x95\xe3\x21\x01\x00\x00" func idtablestakingScriptsGet_approved_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -3080,11 +3140,11 @@ func idtablestakingScriptsGet_approved_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_approved_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0x8, 0x8e, 0xe3, 0x26, 0xd9, 0x3d, 0x53, 0xe3, 0x54, 0x6, 0xee, 0x19, 0xa8, 0x6, 0xfc, 0xdd, 0xee, 0x6, 0x9f, 0x37, 0x52, 0x4d, 0xe2, 0xf4, 0xd, 0x3d, 0xcc, 0x97, 0x6, 0xd3, 0x22}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0xac, 0xf9, 0x96, 0xc5, 0x4, 0x35, 0x8f, 0xd3, 0xaf, 0xca, 0x92, 0x87, 0x91, 0x68, 0xe0, 0xfd, 0xe2, 0xfc, 0x80, 0x6b, 0x22, 0xa5, 0x41, 0x2, 0x1c, 0xa8, 0xb1, 0x19, 0x20, 0xe7, 0x1a}} return a, nil } -var _idtablestakingScriptsGet_candidate_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x8f\x9e\x92\x8b\xf5\x20\x22\xbd\x94\xda\x44\x08\x94\x1e\xcc\x7a\xf0\xb8\xcd\x4e\x9a\xc1\xcd\x4c\xd8\x4c\x50\x28\xfd\xef\xd2\x56\xc1\x83\x73\x19\x78\xf0\xde\xf7\xf1\x30\x6a\x32\xbc\x44\xfd\xac\x4b\xe7\x0f\x91\x1a\xf3\x1f\x2c\x47\x74\x49\x07\xdc\x7f\xd5\x65\xb5\x77\xb5\x7b\x77\x9b\xe7\x5d\xb5\x29\xcb\xd7\xaa\x69\xb2\x6c\xb9\x84\xeb\x79\xc2\xd4\x26\x1e\x0d\x89\x6c\x4e\x32\xc1\x7a\x42\xe4\x81\x6d\x42\xa7\x09\xad\x97\xc0\xc1\x1b\x41\x34\xd0\x2d\x23\xdf\xf6\x48\x1a\x29\x1b\xe7\x03\xba\x59\x30\x78\x96\xbc\x58\xe1\xf4\x56\x8b\x3d\xad\x70\x79\x8f\x0f\x67\x9c\x32\x00\x3f\xd3\xff\x08\xde\x1d\xc9\xb6\xbf\x80\xbd\x06\xda\x5d\xc1\x79\x71\xad\x5d\x6e\xbd\xc6\xe8\x85\xdb\x7c\xb1\xd5\x39\x06\x88\x1a\xa2\xfa\xf0\xc7\xeb\x26\xbb\x28\xb2\xf3\x77\x00\x00\x00\xff\xff\x2c\xee\x71\x69\x09\x01\x00\x00" +var _idtablestakingScriptsGet_candidate_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xc1\x4a\x03\x41\x0c\x06\xe0\xfb\x3c\xc5\xcf\x9e\x76\x2f\xf6\x22\x22\xbd\xf4\x50\x11\x0a\xe2\xc5\xfa\x00\x71\x26\xdb\x0d\xce\x24\xcb\x4c\x16\x0f\xa5\xef\x2e\x6d\x15\x04\x9b\x4b\x20\xe1\xe7\xff\xa4\xcc\x56\x1d\xcf\xd9\xbe\x76\x4f\x7b\xfa\xc8\xfc\xe6\xf4\x29\x7a\xc0\x58\xad\xa0\xfb\xff\xe8\x42\x58\xad\xb0\x9f\xa4\xa1\xc5\x2a\xb3\xa3\xb2\x2f\x55\x1b\x7c\x62\x64\x29\xe2\x0d\xa3\x55\x44\xd2\x24\x89\x9c\xa1\x96\xf8\x7a\x63\x8a\x13\xaa\x65\x0e\x14\x23\xb7\xd6\x53\xce\x03\xc6\x45\x51\x48\xb4\x1f\xd6\x38\xbe\xef\xd4\x1f\xd7\x38\xaf\x87\xfb\x13\x8e\x01\xc0\x4f\xc5\x0d\xe6\xdd\x81\x7d\xfb\x5b\xf4\x6a\x89\x5f\x2e\x80\x7e\xb8\xc4\xce\xb3\xd9\x60\x26\x95\xd8\x77\x5b\x5b\x72\x82\x9a\x23\x1b\xa5\x3f\xbe\x2b\xba\x1b\xc2\xe9\x3b\x00\x00\xff\xff\xa1\x29\xc8\x31\x0f\x01\x00\x00" func idtablestakingScriptsGet_candidate_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -3100,11 +3160,11 @@ func idtablestakingScriptsGet_candidate_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_candidate_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc5, 0x8e, 0x7c, 0xef, 0x38, 0x37, 0x1b, 0xdd, 0x51, 0x69, 0xdd, 0xbd, 0xa6, 0xd2, 0x82, 0x8c, 0x73, 0x2f, 0x74, 0xc9, 0x67, 0x7e, 0x6, 0x19, 0xaf, 0xcf, 0x3d, 0xec, 0xf7, 0x50, 0x49, 0x82}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x60, 0xa1, 0xa5, 0x45, 0xe1, 0x6a, 0x41, 0x4d, 0x33, 0x8d, 0xe9, 0x2a, 0x3f, 0x31, 0x86, 0xb6, 0x91, 0x74, 0xd1, 0xd9, 0x51, 0xe2, 0x22, 0x15, 0xb2, 0xcf, 0x5d, 0x6a, 0x5c, 0x5c, 0xd3, 0xa5}} return a, nil } -var _idtablestakingScriptsGet_candidate_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\x31\x4f\x84\x40\x10\xc5\xf1\x7e\x3f\xc5\x2b\xef\x1a\xcf\xd2\xd0\xdd\x09\x26\x24\x97\x2b\x64\x2d\x2c\xf7\x60\x80\x89\x30\xb3\xd9\x1d\xa2\x09\xe1\xbb\x1b\x8c\x76\xf6\xef\xe5\xf7\xe7\x39\x6a\x32\xbc\x4c\xfa\x59\x97\x3e\xdc\x27\x6a\x2c\x7c\xb0\x0c\xe8\x93\xce\x78\xfc\xaa\xcb\xea\xe6\x6b\xff\xee\xcf\x97\x6b\x75\x2e\xcb\xd7\xaa\x69\x9c\x3b\x9d\xe0\x47\xce\xc8\x6d\xe2\x68\x48\x64\x4b\x92\x0c\x1b\x09\x13\x67\x83\xf6\x68\x83\x74\xdc\x05\x23\x88\x76\x94\xf7\x4b\xaf\xe9\x67\xb2\xc4\x56\xe7\xdd\xa0\xa8\xed\xe8\xe2\x72\x47\xbf\x08\xe6\xc0\x72\x38\x16\x58\xdf\x6a\xb1\xa7\x02\x6b\x63\x89\x65\x28\x70\x51\x9d\xb6\x0d\xab\x03\xf0\x6b\xfd\x53\xfc\x30\x90\x3d\xff\xa1\x37\xed\xe8\xca\xd9\x0e\x47\xb7\x7d\x07\x00\x00\xff\xff\x5d\x0f\xc6\x78\xe4\x00\x00\x00" +var _idtablestakingScriptsGet_candidate_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4e\xc4\x30\x10\x04\xd0\xde\x5f\x31\xba\x2a\x69\xb8\x16\xa5\x04\x84\x74\x12\xa2\xb9\xe3\x03\x8c\xb3\x49\x56\xd8\xbb\x96\x77\x23\x8a\x28\xff\x8e\x82\xa0\x82\x7a\x66\xf4\x86\x4b\xd5\xe6\x78\xce\xfa\x79\x79\xba\xc5\xf7\x4c\x57\x8f\x1f\x2c\x33\xa6\xa6\x05\xa7\xbf\xc1\x29\x84\xf3\x19\xb7\x85\x0d\x96\x1a\x57\x47\x23\x5f\x9b\x18\x7c\x21\x64\x36\x87\x4e\x48\x51\x46\x1e\xa3\x13\x44\x47\xb2\x63\x32\x69\xfb\xae\xac\x35\x69\x39\x04\xaa\x9a\x96\x10\x53\x22\xb3\x2e\xe6\xdc\x63\x5a\x05\x25\xb2\x74\xfd\x80\xed\xed\x22\x7e\x3f\x60\xbb\x7a\x63\x99\x07\x3c\xa8\xe6\x7d\xc7\x16\x00\xfc\x98\xff\xfc\xbe\x9b\xc9\x1f\x7f\xf1\x57\x1d\xe9\x85\xcd\xbb\x3e\xec\x5f\x01\x00\x00\xff\xff\x7b\x95\x26\x62\xea\x00\x00\x00" func idtablestakingScriptsGet_candidate_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -3120,11 +3180,11 @@ func idtablestakingScriptsGet_candidate_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_candidate_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x69, 0xd6, 0x82, 0x37, 0x73, 0x6d, 0xfe, 0xcb, 0x3d, 0x37, 0x2e, 0xd4, 0x43, 0x65, 0x62, 0xfd, 0x2c, 0x85, 0xea, 0x4e, 0x93, 0x70, 0xa4, 0x6a, 0x4c, 0xd2, 0xd9, 0xf2, 0xea, 0xa3, 0xb2, 0xff}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x84, 0x34, 0x2c, 0xe4, 0x3e, 0x22, 0x7b, 0x2, 0x58, 0xff, 0x6d, 0xe6, 0x39, 0x29, 0x45, 0xd4, 0x5e, 0x50, 0x9d, 0xec, 0xf7, 0x45, 0xd8, 0xa8, 0x2f, 0x14, 0x2e, 0x64, 0x10, 0x35, 0x81, 0xf1}} return a, nil } -var _idtablestakingScriptsGet_current_tableCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4a\xc4\x40\x10\x87\xf1\x7e\x9f\xe2\x5f\xde\x35\x9e\xb5\xdd\xc9\x46\x58\x90\x2b\xdc\x6d\x44\x2c\x72\xc9\x64\x33\x98\xcc\x86\xd9\x59\x54\xc4\x77\x97\x80\xe5\x75\x5f\xf5\xe3\xe3\x75\x2b\x6a\x78\x5a\xca\x67\xf0\xa9\xbf\x2e\x14\xad\xff\x60\xc9\x98\xb4\xac\xb8\xff\x0a\xbe\xbb\xa4\x90\x5e\xd3\xf9\xf1\xb9\x3b\x7b\xff\xd2\xc5\xe8\xdc\xe9\x84\x34\x73\x45\x1d\x94\x37\x83\x92\x35\x95\x0a\x9b\x09\x43\x53\x25\x31\xf0\x48\x62\x6c\xdf\xb0\x5d\xc5\x42\x92\x6d\x76\x6e\x6b\x57\x4c\x4d\xb0\xf6\x2c\x87\xe3\x03\xde\xa2\x29\x4b\x7e\xc7\x8f\x03\xf0\x2f\xdd\xf8\xb9\xcb\x64\x7b\xd2\x78\x29\x23\x05\x5f\x0f\x47\xf7\xfb\x17\x00\x00\xff\xff\x4a\xf4\xfe\xa9\xbe\x00\x00\x00" +var _idtablestakingScriptsGet_current_tableCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xaa\x83\x40\x10\x45\xfb\xfd\x8a\x8b\x95\x36\xcf\xfe\xd5\xf2\xc0\xe6\x35\xda\x85\x14\x9b\x75\x5c\x87\xac\xb3\x32\x3b\x12\x42\xc8\xbf\x07\x21\x5d\xd2\x5d\xb8\x9c\xc3\xe1\x75\xcb\x6a\xf8\x4b\xf9\xd6\x77\xa3\xbf\x24\x1a\xcc\x5f\x59\x22\x66\xcd\x2b\xaa\xcf\xa3\x72\xae\x6d\x31\x2e\x5c\x50\x82\xf2\x66\x50\xb2\x5d\xa5\xc0\x16\x42\xd8\x55\x49\x0c\x3c\x91\x18\xdb\x1d\x76\xa0\x48\x24\xd1\x16\xe7\x7c\x08\x54\x4a\xed\x53\x6a\x30\xef\x82\xd5\xb3\xd4\xcd\x2f\x4e\x83\x29\x4b\x3c\xe3\xe1\x00\xbc\x8d\x5f\xaa\x7e\x22\xd9\x31\x69\xfa\xcf\x13\xf5\x5d\xa9\x1b\xf7\x7c\x05\x00\x00\xff\xff\x1e\x08\x43\x94\xc4\x00\x00\x00" func idtablestakingScriptsGet_current_tableCdcBytes() ([]byte, error) { return bindataRead( @@ -3140,11 +3200,11 @@ func idtablestakingScriptsGet_current_tableCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_current_table.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x58, 0x1e, 0x72, 0x94, 0xe0, 0x76, 0x87, 0xd9, 0x75, 0x4c, 0x72, 0xa3, 0xa1, 0x74, 0x9e, 0xa3, 0x3e, 0x29, 0x8a, 0xe4, 0xeb, 0x5e, 0x72, 0x24, 0x51, 0x5b, 0x77, 0xb4, 0xfb, 0xda, 0xf0, 0x72}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x2a, 0x6b, 0x96, 0x8d, 0x9a, 0x6c, 0xa5, 0xb8, 0x89, 0xda, 0x4d, 0x43, 0x19, 0x77, 0x6c, 0xda, 0x84, 0x85, 0xfc, 0xfa, 0xdc, 0x7f, 0x3a, 0xa7, 0x27, 0x23, 0x9a, 0x14, 0x5, 0xb7, 0x1e}} return a, nil } -var _idtablestakingScriptsGet_cut_percentageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4e\x85\x30\x14\x87\xf1\xbd\x4f\xf1\x1f\xef\x5d\xbc\x0e\xc6\xc1\x0d\x2d\x24\x24\xc6\x18\xa8\x83\xe3\x01\x0e\xd0\x00\xa7\xa4\x3d\x0d\x24\xc6\x77\x37\x26\x8e\xae\xdf\xf0\xe5\xe7\xb7\x3d\x44\x45\xb5\x86\xa3\xb6\x8e\xba\x95\x5b\xa5\xc5\xcb\x84\x31\x86\x0d\xf7\x67\x6d\xcb\x37\x57\xbb\x4f\x57\x3c\xbf\x96\x85\xb5\x4d\xd9\xb6\xc6\xdc\x6e\x70\xb3\x4f\x48\x7d\xf4\xbb\x22\xb2\xe6\x28\x09\x3a\x33\x3a\x5a\x49\x7a\x46\x18\x91\x94\x16\x1e\xa0\x61\x61\x49\xbf\x81\x20\x61\x60\x63\xf6\xdc\x61\xcc\x82\x8d\xbc\x5c\xae\x4f\xf8\xa8\xfc\xf9\xf8\x80\x2f\x03\xe0\x6f\xf6\x0f\xe9\x6e\x62\x6d\xf8\xa0\x38\xbc\x64\x7d\xe7\xd8\xb3\x28\x4d\x7c\xb9\x9a\xef\x9f\x00\x00\x00\xff\xff\x28\x6a\xf6\x9f\xc7\x00\x00\x00" +var _idtablestakingScriptsGet_cut_percentageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x8b\x83\x40\x10\x46\xfb\xfd\x15\x1f\x56\xda\x9c\xcd\x71\xc5\xb5\x77\x08\xe9\x42\x62\x7e\xc0\xb8\x8e\xba\xb8\xce\xca\xce\x88\x81\x90\xff\x1e\x02\xe9\x92\xf6\x3d\x78\xbc\xb0\xac\x29\x1b\x9a\x98\xf6\xc3\x7f\x4b\x5d\xe4\xb3\xd1\x1c\x64\xc4\x90\xd3\x82\xe2\x5d\x14\xce\xd5\x35\xda\x29\x28\xd4\xe7\xb0\x1a\x32\xdb\x96\x45\x61\x13\xa3\xa3\x48\xe2\x19\x69\x80\x1a\xcd\xdc\xc3\xd2\xcc\xa2\x4f\x40\x90\xd4\xb3\x73\xe4\x3d\xab\x96\x14\x63\x85\x61\x13\x2c\x14\xa4\xac\x7e\x71\x69\xc2\xf5\xe7\x1b\x37\x07\xe0\x15\xfd\x30\xf6\x35\xb2\x9d\x78\xa7\xdc\xff\x6d\x76\xe4\xec\x59\x8c\x46\x2e\x2b\x77\x7f\x04\x00\x00\xff\xff\x65\xa1\x14\x25\xcd\x00\x00\x00" func idtablestakingScriptsGet_cut_percentageCdcBytes() ([]byte, error) { return bindataRead( @@ -3160,11 +3220,11 @@ func idtablestakingScriptsGet_cut_percentageCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_cut_percentage.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa3, 0x9, 0x30, 0xa9, 0xd4, 0x7, 0x19, 0x3d, 0x43, 0x39, 0x32, 0xda, 0x6f, 0xaa, 0xf3, 0xcb, 0xa5, 0x4d, 0x97, 0x58, 0x23, 0x1b, 0xec, 0x30, 0x61, 0x49, 0x8e, 0x9, 0x33, 0x2a, 0x4d, 0x92}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0xe2, 0xb8, 0x9, 0x30, 0x55, 0xde, 0x80, 0x22, 0x1d, 0xce, 0xcd, 0x75, 0x1c, 0x49, 0x6c, 0xc0, 0xf4, 0x71, 0xba, 0x1a, 0x1f, 0x4, 0x99, 0x53, 0xe6, 0x65, 0xc4, 0xff, 0x2b, 0xe7, 0x62}} return a, nil } -var _idtablestakingScriptsGet_del_stake_requirementsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4a\xc6\x30\x14\xc5\xf1\x3d\x4f\x71\xc6\xef\x5b\xac\x83\x38\xb8\x55\xd2\x42\x41\x1d\xda\x38\x38\xa6\x7a\xdb\x5e\xda\x24\xf5\xe6\x06\x0b\xe2\xbb\x8b\xa8\xb8\x38\x1f\xf8\xff\x0e\x87\x3d\x89\xa2\xdd\xd2\x5b\x67\x9d\x1f\x37\x1a\xd4\xaf\x1c\x67\x4c\x92\x02\x2e\x8f\xce\x36\x0f\xae\x73\x4f\xae\xbe\xbd\x6b\x6a\x6b\xfb\x66\x18\x8c\xa9\x2a\xb8\x85\x33\xf2\xb3\xf0\xae\x10\xd2\x22\x31\x43\x17\x42\xe0\xc8\xa1\x04\x64\xf5\x2b\x41\xe8\xb5\xb0\x50\xa0\xa8\x98\x92\xe0\x85\x36\x9a\xbd\x26\xc9\xc6\xec\x65\xc4\x54\x22\x82\xe7\x78\x3a\xdf\xe0\xb1\xe5\xe3\xfa\x0a\xef\x06\xc0\x4f\xf2\x9f\x63\x17\x33\xa9\xfd\xad\xdc\x7f\x63\x5f\x13\xf5\x7f\xd4\xe9\x6c\x3e\x3e\x03\x00\x00\xff\xff\xc8\x81\xc5\x13\xda\x00\x00\x00" +var _idtablestakingScriptsGet_del_stake_requirementsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xbd\x8a\xc2\x40\x14\x46\xfb\x79\x8a\x8f\x54\x49\xb3\x69\x96\x2d\xb6\x0e\x01\x0b\x1b\x8d\x0f\x30\xc6\x9b\xe4\x92\xf9\x89\x77\xee\xa0\x20\xbe\xbb\x88\x8a\x85\xd6\x07\xce\x39\xec\x97\x28\x8a\xd6\xc5\xd3\xaa\xe9\xec\xde\xd1\x56\xed\xcc\x61\xc4\x20\xd1\xa3\xf8\x04\x85\x31\x75\x8d\x6e\xe2\x84\xd4\x0b\x2f\x0a\x21\xcd\x12\x12\x74\x22\x78\x0e\xec\xb3\x47\x52\x3b\x13\x84\x8e\x99\x85\x3c\x05\xc5\x10\x05\x07\x72\x34\x5a\x8d\x92\x8c\xb1\x7d\x4f\x29\x95\xd6\xb9\x0a\x43\x0e\xf0\x96\x43\x59\xfd\x63\xd7\xf2\xf9\xef\x17\x17\x03\xe0\xa9\xfe\xb2\xf7\x33\x92\x36\x2f\xdb\xfa\x11\xbd\x23\xda\xbc\x93\x65\x65\xae\xb7\x00\x00\x00\xff\xff\x64\x7c\x1f\x80\xe0\x00\x00\x00" func idtablestakingScriptsGet_del_stake_requirementsCdcBytes() ([]byte, error) { return bindataRead( @@ -3180,11 +3240,11 @@ func idtablestakingScriptsGet_del_stake_requirementsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_del_stake_requirements.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa3, 0xcb, 0xbc, 0x3f, 0x87, 0x66, 0x14, 0x66, 0x46, 0x5b, 0xef, 0xa7, 0x88, 0xb8, 0xb6, 0xbf, 0x9a, 0xbe, 0xfd, 0xbd, 0x7d, 0x8f, 0x1c, 0x9, 0xdd, 0x15, 0xb5, 0xca, 0xc4, 0x1, 0x76, 0xab}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1a, 0x91, 0xe2, 0x54, 0xf9, 0x96, 0x3e, 0xcc, 0xa2, 0xe6, 0x3c, 0x46, 0x6b, 0xe2, 0xf0, 0x7e, 0xa2, 0x0, 0xec, 0xf0, 0xd0, 0xa4, 0x98, 0xa9, 0x64, 0x92, 0xc, 0xd0, 0xe4, 0x47, 0x5f, 0x75}} return a, nil } -var _idtablestakingScriptsGet_delegators_below_minCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x55\x5f\x6b\xdb\x3e\x14\x7d\xf7\xa7\x38\x4f\xfd\x39\xf4\x87\xeb\xc1\xba\x07\xb3\x0c\x5a\xdc\x82\xa1\xeb\x60\xf1\x18\xa3\x94\x22\xd7\x72\x22\x62\x4b\x41\x92\x9b\xb2\x92\xef\x3e\xe4\x3f\xb1\x15\x2b\xe9\xe6\x97\x52\xdd\x73\xcf\x39\xf7\x5e\x5d\x85\x55\x1b\x21\x35\x6e\x4b\xb1\x4d\xe2\x94\x64\x25\x5d\x68\xb2\x66\x7c\x89\x42\x8a\x0a\xe1\x6b\x12\xdf\xdc\xa7\x49\xfa\x2b\xbd\xba\xbe\xbb\xb9\x8a\xe3\xef\x37\x8b\x85\xe7\x5d\x5c\x20\x5d\x31\x05\xf5\x2c\xd9\x46\xa3\x60\x3c\x57\x20\x65\x09\x51\x80\x80\x8b\x9c\xfe\xa7\x90\xd3\x92\x2e\x89\x16\x52\x61\xbb\x12\x20\x92\x42\x69\xb2\xa6\x39\x48\x26\x5e\x28\x7e\x53\x29\x0c\x53\x56\x6b\x64\xb4\x14\x5b\xe8\x15\x45\xc5\x38\xab\xea\xca\x30\x5d\x86\xb8\xbd\xfb\xf6\x13\x84\xe7\x90\x54\xd7\x92\x2b\x30\x5e\x08\x59\x11\xcd\x04\x37\x34\xb5\x36\x49\x95\xe7\x6d\xea\x0c\x4a\xcb\xfa\x59\x23\xee\x75\xaf\x0d\xe9\x57\xc6\x13\x5e\x08\xbc\x79\x1e\x00\x18\xdc\x0b\x91\xd0\x42\x93\x72\xd1\xd8\x89\xf0\xe3\x96\xbd\x7e\xfa\x38\x8d\xf7\x04\xc6\xd0\x01\xd6\x02\xf3\xba\xda\x8b\xaa\x08\x09\xd7\xc7\xc3\x3d\x67\x0b\xb3\x70\xfb\x86\x19\xc3\x03\xee\x61\x3a\x9d\x20\x1e\x43\x1f\x5b\x1a\xc6\x99\xf6\xa7\x56\x66\x78\x6b\xc2\xe6\x53\xb4\x2c\x82\x51\xe9\x98\x23\x0c\x42\x47\x78\x5a\xb9\x0b\x6a\x89\x61\x6e\x17\x7a\x02\xda\xb3\x1b\x4e\x1b\xe6\x6c\x01\xe6\x78\x78\x6c\x70\xbb\xa1\x61\x45\xcd\x41\xf2\x3c\x1d\x8a\xf1\x9f\xda\xfb\xd5\xcf\xe8\x9d\xc2\x27\x47\xe7\x6d\xfa\x11\xa1\xde\xcc\xbf\x68\x39\xbb\x78\x32\x7c\xda\xc3\xe4\x66\xfb\x13\xdd\x63\x7d\x3e\x11\x3c\xc7\x87\xf7\xf4\xcc\x34\xfc\xa7\x66\xf9\x22\xc7\x63\x61\x5f\xc7\x89\x27\xe7\x50\x03\xb2\xd9\x50\x9e\xfb\x86\x73\xd6\xe9\xef\xda\x3d\x36\xea\x15\x61\xdc\x37\x0f\x49\x12\x47\x58\x68\xc9\xf8\x72\x16\x1d\x5d\x6d\x93\x5e\x52\xdd\xbc\x3c\xcd\xd1\xdc\xe5\xf2\xbe\x8b\xee\x79\xdb\xbf\x33\x6f\x9f\x9f\x5b\xb7\xb9\x83\x0f\xfe\xd5\x80\xcc\x46\xb3\xc3\xdc\x6d\xec\x70\x19\x07\x9e\xa0\xa4\x7c\xa9\x57\x9d\x72\x21\xc6\xbb\x1f\x83\xf1\xb1\x91\xa1\x99\x9d\xc3\xe3\x05\xda\xf3\xb2\xab\xfc\x7f\x2c\x11\x8d\xff\xe9\x5c\x98\x6f\x5c\x55\x70\xb0\x5d\x9d\x72\xa0\xc5\x9a\x72\xd5\x1e\x8e\x52\x59\x01\x17\x02\x9f\x71\x19\x06\x21\xce\xce\xdc\xe1\x2f\xe6\x55\x19\xd5\xe8\x72\x61\x97\xd5\xd1\xcc\xfe\x2e\x65\xd8\x94\x93\xf8\x83\xed\x76\xd7\xda\x27\xef\xc6\xeb\xd2\xfe\x30\x59\x84\xde\xce\xfb\x13\x00\x00\xff\xff\xfd\x6d\x7d\x7d\x58\x07\x00\x00" +var _idtablestakingScriptsGet_delegators_below_minCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x55\x4d\x8b\xdb\x30\x10\xbd\xfb\x57\x3c\xf6\xb0\xb5\xd9\xe2\x4d\xa1\xdb\x83\x69\x7a\x28\x61\x21\xd0\x8f\x43\x52\x7a\x58\x96\x45\x89\xe5\x44\x44\x96\x82\x24\x6f\x4a\x97\xfc\xf7\x22\x7f\xc4\x52\xac\x7c\x54\x97\x10\xcd\x9b\x37\x6f\x66\x34\x63\x56\x6e\xa5\x32\x78\xe4\x72\x37\x9d\xcc\xc9\x82\xd3\x99\x21\x1b\x26\x56\x28\x94\x2c\x71\x33\x34\xdc\x44\xd1\xfd\x3d\xe6\x6b\xa6\xa1\x97\x8a\x6d\x0d\x0a\x26\x72\x0d\xc2\x39\x64\x01\x02\x21\x73\xfa\x4e\x23\xa7\x9c\xae\x88\x91\x4a\x63\xb7\x96\x20\x8a\x42\x1b\xb2\xa1\x39\xc8\x42\xbe\x52\xfc\xa5\x4a\x5a\xa6\x45\x65\xb0\xa0\x5c\xee\x60\xd6\x14\x25\x13\xac\xac\x4a\xcb\xf4\x30\xc2\xe3\xb7\x9f\xbf\x41\x44\x0e\x45\x4d\xa5\x84\x06\x13\x85\x54\x25\x31\x4c\x0a\x4b\x53\x19\xeb\x54\x46\x11\x59\x2e\xa9\xd6\x31\xe1\x3c\x81\x36\xaa\x5a\x1a\x4c\xba\xf8\x5f\x2d\xf9\x77\x26\xa6\xa2\x90\x78\x8b\x22\x00\x70\xf1\xaf\x44\xc1\x48\x43\xf8\xac\x96\x97\xe1\xd7\x23\xfb\xf3\xe9\xe3\x69\x5c\x47\x68\x85\x1e\xf9\x04\x9d\x44\x55\x1e\xc4\xe8\x0c\x53\x61\x2e\xc3\xba\x18\x0d\x3c\x88\x3f\x14\xd8\x26\xd6\xe3\x9f\x86\x2d\x4b\x27\x2e\xf4\xb9\xa1\x63\x82\x99\x78\x28\x2d\xc1\x5b\x6d\xb6\x47\x53\x5e\xa4\x4e\x69\x30\xc6\x28\x1d\x05\xcc\xc3\x8a\x84\xa0\x5e\x30\x8c\xfd\x84\xcf\x40\x3b\x76\xcb\xe9\xc3\x82\x25\xc0\x18\x4f\xcf\x35\x6e\x3f\x2c\x5c\x51\x09\x90\x3c\x9f\xf7\x49\xc5\x2f\xcd\xbb\xec\x7a\x78\xa1\x00\x83\xab\xbb\xc6\xfd\x42\xc0\x4e\xdc\xff\xc4\x0c\x56\xf5\xac\xf9\x3a\x2d\x83\xc9\x88\x07\xf1\x4f\xd5\xff\x8c\xf1\x0e\x1f\xae\x8d\x6b\xbb\x15\xbf\xd4\xc3\x9c\x05\x56\x8f\xff\x5c\x07\xda\x82\x4d\x4f\xc9\x76\x4b\x45\x1e\x5b\xce\xa4\xd5\xb1\xf7\xf7\x82\x55\x51\x12\x26\x62\xbb\xa0\xa6\x93\x0c\x33\xa3\x98\x58\x25\xd9\xc9\x55\x61\x69\x38\x35\xf5\x46\xab\xaf\xc6\x21\xb5\x3f\x5a\xeb\x81\xb7\xf9\x4d\xa2\x83\x7f\xee\xbd\xfa\x16\xde\xe7\xa1\x7b\xe4\xc2\xe9\x29\xc6\x61\x61\xc7\x43\xdb\xf3\xa4\x9c\x8a\x95\x59\xb7\x91\x0b\xe9\xee\x88\x09\x98\x70\x85\xf4\x45\x6d\x15\x9e\x4e\xd0\xef\x9b\x9f\xe5\x7b\x37\x44\xe6\xfe\x69\x55\xd8\xe3\x66\x95\x1e\x4d\x5f\x1b\x39\x35\x72\x43\x85\x6e\x2e\x1d\x57\x56\x20\x84\xc0\x67\x3c\x8c\xd2\x11\x6e\x6f\xc3\xe6\x2f\x76\xfb\x38\x39\x86\x54\xf8\x69\xb5\x34\xc9\x75\x2e\xfd\xe4\x9c\xc5\x1f\x4d\x7d\x38\xd7\xce\x79\xef\x8e\x4f\xf3\xc1\xf3\x08\xa3\x7d\xf4\x2f\x00\x00\xff\xff\xb6\xa7\x8d\x2b\xae\x07\x00\x00" func idtablestakingScriptsGet_delegators_below_minCdcBytes() ([]byte, error) { return bindataRead( @@ -3200,11 +3260,11 @@ func idtablestakingScriptsGet_delegators_below_minCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_delegators_below_min.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc1, 0x3e, 0x51, 0x9d, 0xc6, 0x98, 0x72, 0xb, 0x31, 0x4f, 0x85, 0x6c, 0xe1, 0x1, 0x92, 0xec, 0x81, 0x38, 0x9b, 0x8a, 0x2f, 0xe3, 0xaf, 0xbc, 0x6a, 0xf9, 0x17, 0xd9, 0xca, 0x39, 0xc7, 0xb7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x25, 0x96, 0x53, 0x67, 0x6, 0x66, 0xfa, 0x53, 0xbc, 0xa1, 0x1d, 0x59, 0xf, 0x29, 0xe, 0x3a, 0x37, 0x82, 0x68, 0x33, 0x3e, 0xb1, 0x9e, 0xd9, 0xc5, 0x5d, 0xf5, 0x2b, 0xab, 0x83, 0x17, 0x5}} return a, nil } -var _idtablestakingScriptsGet_node_committed_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\xc3\x30\x10\x46\x77\xfd\x8a\x6f\x6c\x96\xa4\x43\xe9\x10\xe8\x90\x56\x0e\x08\x4a\x86\x5a\x1d\x3a\xca\xf1\x39\x11\xb6\xee\x8c\x74\xa6\x81\xd2\xff\x5e\x12\x17\x4f\x99\x0e\xbe\xe3\x3d\x5e\x4c\xa3\x64\xc5\x7e\x90\x6f\x67\x7d\x68\x06\xaa\x35\xf4\x91\x4f\xe8\xb2\x24\x3c\x5e\x9c\xad\x0e\xde\xf9\x2f\xbf\x7b\x7d\xaf\x76\xd6\x7e\x54\x75\x6d\xcc\x66\x03\x7f\x8e\x05\xe5\x98\xe3\xa8\xc8\xa4\x53\xe6\x02\x3d\x13\x9a\x30\x04\x3e\x12\xa4\x43\xd1\xd0\x53\x0b\x95\x9e\xb8\x5c\x87\x00\x96\x96\x8c\x19\xa7\x06\xdd\xc4\x48\x21\xf2\xc3\x75\x72\x76\x8b\x5a\x73\xe4\xd3\x6a\x8b\xcf\x7d\xbc\x3c\x3f\xe1\xc7\x00\xc0\x40\x7a\x83\x1c\x77\x82\x97\x3b\xa1\xeb\xc3\xff\x77\x11\xcd\x77\x75\xc3\xe7\xb2\xc5\xb0\x9e\x5b\xde\x24\xa5\xa8\x4a\xad\xf9\xfd\x0b\x00\x00\xff\xff\xd7\xe0\x3c\x12\x01\x01\x00\x00" +var _idtablestakingScriptsGet_node_committed_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6a\x03\x41\x0c\x45\xfb\x39\xc5\xc7\x95\xb7\xb1\x9b\x90\xc2\x90\x2a\xc6\xb0\x4d\x1a\x3b\x07\x90\x67\x35\xb6\xd8\x19\xc9\xcc\xc8\x24\x10\x72\xf7\xe0\xdd\xb0\x4d\x52\x09\xf4\xf8\x8f\x27\xe5\x66\xd5\x71\xc8\xf6\xd1\xef\x4f\x74\xce\x7c\x74\x1a\x45\x2f\x48\xd5\x0a\x56\x7f\xc1\x2a\x84\xed\x16\xa7\xab\x34\xb4\x58\xe5\xe6\xa8\xec\xf7\xaa\x0d\x7e\x65\x9c\x29\x93\x46\x86\x25\x34\xa7\x91\x07\xb8\x8d\xac\xed\xf1\x20\xa8\x0d\x1c\x02\xc5\xc8\xad\xad\x29\xe7\x0e\xe9\xae\x28\x24\xba\x7e\xa0\x7e\xbf\xc3\xd1\xab\xe8\xa5\xdb\xe1\xfd\x20\x9f\xcf\x4f\xf8\x0a\x00\x90\xd9\xa7\x71\xaf\xc9\xf0\xf2\x4f\xee\xe6\xed\x97\x2e\xa2\xf9\x76\xd3\x7c\x2e\x5c\x0c\x9b\xb9\xe9\xd5\x4a\x11\x77\x1e\xc2\xf7\x4f\x00\x00\x00\xff\xff\x76\x78\x67\x79\x07\x01\x00\x00" func idtablestakingScriptsGet_node_committed_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3220,11 +3280,11 @@ func idtablestakingScriptsGet_node_committed_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_committed_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x11, 0x65, 0x3, 0x17, 0x42, 0x11, 0x30, 0xfa, 0xb9, 0xb6, 0xd9, 0x8a, 0x5c, 0x41, 0xaa, 0xe7, 0xc4, 0xbb, 0x42, 0xf5, 0xe9, 0x39, 0x84, 0x75, 0x26, 0xa5, 0x46, 0x5e, 0xdc, 0xef, 0xfe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0xb9, 0x2, 0x2f, 0xff, 0xa2, 0x25, 0x20, 0x27, 0xda, 0xa3, 0xde, 0xa5, 0x91, 0xdb, 0x43, 0xb6, 0x80, 0x4c, 0x45, 0x3d, 0x15, 0x8c, 0xd4, 0x75, 0x99, 0x3, 0xed, 0x25, 0x51, 0x1b, 0x2c}} return a, nil } -var _idtablestakingScriptsGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xce\x31\x4b\xc5\x30\x14\xc5\xf1\x3d\x9f\xe2\x8c\x76\xb1\xce\xdd\x2a\xa9\x10\x90\x0e\x26\x8b\x63\x6a\xd3\xf6\x62\x7a\x53\x92\x1b\x14\xc4\xef\x2e\xc5\xc7\x9b\x1e\x6f\x3a\xcb\x9f\x1f\x87\xf6\x23\x65\xc1\x4b\x4c\x5f\x46\x3b\x3f\xc5\x60\xc5\x7f\x12\xaf\x58\x72\xda\xf1\xf4\x6d\xf4\x30\x3a\xe3\xde\x5d\xff\xfc\x3a\xf4\x5a\xbf\x0d\xd6\x2a\xd5\xb6\x70\x1b\x15\x94\x8f\x4c\x87\x60\x0d\x52\xe0\x63\x84\x6c\x01\xc4\x4b\x82\x9f\x52\x15\x78\x70\x9a\x03\x3c\xcf\xc8\x41\x6a\xe6\x02\x12\xa5\x8e\x3a\x61\xa9\x8c\xdd\x13\x3f\x9c\x85\xd1\x1d\xac\x64\xe2\xb5\xe9\x6e\x7c\x79\x1c\xcf\xe6\x64\x7f\x14\x80\x8b\x75\x2f\xbc\xaa\xff\xdb\xa8\x5f\xf5\x17\x00\x00\xff\xff\x58\x6d\x78\x81\xea\x00\x00\x00" +var _idtablestakingScriptsGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xce\xb1\x0e\x82\x40\x0c\xc6\xf1\xbd\x4f\xf1\x85\x09\x16\xd9\x99\x89\x09\x8b\x0b\xbc\x40\x81\x03\x1a\x8f\x1e\xb9\x2b\x71\x30\xbe\xbb\x21\x1a\x17\x8d\x53\x87\xfe\xf3\xcb\x27\xeb\x16\xa2\xe1\xec\xc3\xad\xa9\x3b\xee\xbd\x6b\x8d\xaf\xa2\x33\xa6\x18\x56\x64\xdf\x8f\x8c\xa8\x2c\xd1\x2d\x92\x90\x86\x28\x9b\x61\x76\x96\xc0\xde\xc3\x16\x07\xd1\x29\x80\xfb\xb0\x1b\x18\x1a\x46\x07\xd6\x11\xd1\xd9\x1e\x35\x41\x8c\x88\x87\xc1\xa5\x94\xb3\xf7\x05\xa6\x5d\xb1\xb2\x68\x7e\x94\x4d\x5d\xa1\xb5\x28\x3a\x17\xd5\x8f\x45\xa7\xcb\xd1\x1c\xfc\x9d\x00\xbc\xcd\x7f\xe1\x47\x7d\xdd\x82\x1e\xf4\x0c\x00\x00\xff\xff\x18\xd8\x93\xc8\xf0\x00\x00\x00" func idtablestakingScriptsGet_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -3240,11 +3300,11 @@ func idtablestakingScriptsGet_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x5c, 0x8d, 0xac, 0x80, 0x53, 0x4, 0xd4, 0x7f, 0x6, 0x1f, 0xa9, 0x73, 0x36, 0xfa, 0x49, 0x9b, 0x3, 0x97, 0x47, 0x1b, 0xb3, 0x5b, 0x19, 0x13, 0x20, 0x54, 0xd8, 0x98, 0xec, 0x23, 0x73}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xba, 0x21, 0xcd, 0xb7, 0xd2, 0xc, 0x46, 0xd2, 0xc3, 0x2b, 0x49, 0xac, 0x98, 0xc7, 0x5a, 0x8, 0x8e, 0xaa, 0xfe, 0xdd, 0x85, 0xe6, 0x93, 0x64, 0x53, 0x63, 0xc5, 0x65, 0xe3, 0xef, 0xa3, 0x39}} return a, nil } -var _idtablestakingScriptsGet_node_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\x31\x6b\xf3\x30\x10\x86\x77\xfd\x8a\x97\x0c\x1f\xf6\x92\x7c\x73\x68\x1b\xdc\x38\x05\x43\x09\xa1\xf1\xd2\x51\xb6\xcf\x89\x5a\x45\x67\xa4\x13\x69\x09\xf9\xef\xc5\x11\xa5\x19\xda\x52\x4d\x42\x7a\xef\xb9\xbb\xc7\x1c\x06\xf6\x82\x07\xcb\xc7\xaa\xac\x75\x63\x69\x2b\xfa\xd5\xb8\x1d\x7a\xcf\x07\xfc\x7f\xab\xca\xd5\xba\xae\xea\xe7\xba\xb8\x7f\x5c\x15\x65\xf9\xb4\xda\x6e\x95\x9a\xcd\x50\xef\x4d\x40\x68\xbd\x19\x04\x3b\x92\x00\x6d\x2d\x64\x4f\x30\xae\x67\xe8\x86\xa3\x40\xc3\x71\x47\xd0\xae\x83\x27\x89\xde\x05\x18\x51\x6a\x88\x0d\xfa\xe8\x70\xd0\xc6\x65\xba\xeb\x3c\x85\x30\x47\x91\x2e\xf9\xfc\x9b\x69\xa6\x6b\xee\xa8\x1a\xc1\x27\xa5\x00\xc0\x92\x5c\xd8\xe3\x3f\x79\xdc\x8e\x23\x14\x6d\xcb\xd1\xc9\x27\x31\xbf\x04\xc7\x33\xdd\x91\x2c\xf5\xa0\x1b\x63\x8d\xbc\xdf\xfc\x3b\xfd\xd0\x20\xc1\x36\xb1\xb1\xa6\x3d\xdf\x65\x7f\x48\x6d\xb4\xec\xaf\xfa\x34\xec\x3d\x1f\xb3\xaf\x97\xc5\x02\x83\x76\xa6\xcd\x26\x4b\x8e\xb6\x83\x63\x41\x0a\xc1\x53\x4f\x9e\x5c\x4b\x10\x4e\x9a\x42\xda\x85\x9b\x17\x6a\x65\x92\xa7\x45\x93\xb7\xdf\x94\x64\x63\x71\x55\xce\xaf\x7c\x4c\x4d\x97\xab\xb3\xfa\x08\x00\x00\xff\xff\xc3\x58\x0f\x27\xdd\x01\x00\x00" +var _idtablestakingScriptsGet_node_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcd\x6a\xeb\x30\x10\x85\xf7\x7a\x8a\x83\x17\x17\x7b\xe3\xec\xc3\x6d\x43\x68\x28\x64\x53\x02\xcd\x0b\x8c\xe5\x71\x32\xad\xa2\x31\xd2\x98\x2c\x42\xde\xbd\x38\xa2\xb4\xd0\x1f\xaa\x95\x60\x46\xe7\x3b\xfa\xe4\x34\x6a\x32\x3c\x06\x3d\x6f\x37\x7b\xea\x02\x3f\x1b\xbd\x4a\x3c\x60\x48\x7a\x42\xf5\x75\x50\x39\xb7\x58\x60\x7f\x94\x8c\xec\x93\x8c\x86\x03\x5b\x06\x85\x00\x3b\x32\x24\x0e\x0a\xea\x74\x32\x10\xa2\xf6\x0c\x8a\x3d\x12\xdb\x94\x62\x86\x98\x73\xe4\x3d\xe7\x5c\x53\x08\x0d\x86\x29\xe2\x44\x12\x6b\xea\xfb\xc4\x39\x2f\xb1\x2e\x97\x66\xf9\x4d\xa7\xf6\x49\x7b\xde\xce\x80\x8b\x73\x00\x10\xd8\x6e\x8c\x79\xce\x09\x77\x73\x95\xb5\xf7\x3a\x45\x7b\x4f\x6c\x6e\x8b\xf3\x69\x3d\x8d\xd4\x49\x10\x13\xce\x6d\xa7\x29\xe9\xf9\xff\xbf\xcb\x0f\x98\x12\xb9\x9b\xba\x20\xfe\x7a\x5f\xff\x61\x6b\x47\x76\xfc\xa0\xad\x56\x18\x29\x8a\xaf\xab\x07\x9d\x42\x8f\xa8\x86\xc2\x44\xe2\x81\x13\x47\xcf\x30\x2d\x8a\x72\xe9\xaf\xdd\x0b\x7b\xab\x9a\xf2\xb9\xe2\xec\x37\x0d\xf5\xfc\x78\xbb\x59\x7e\x72\xd0\x4a\xdf\xb8\xab\x7b\x0b\x00\x00\xff\xff\x31\x19\xe4\x4c\xd7\x01\x00\x00" func idtablestakingScriptsGet_node_info_from_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -3260,11 +3320,11 @@ func idtablestakingScriptsGet_node_info_from_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_info_from_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0x2b, 0xf2, 0x88, 0x52, 0x81, 0x46, 0x3d, 0x1, 0x1f, 0x5a, 0x48, 0x68, 0x9, 0xa3, 0x66, 0x4c, 0x24, 0xf3, 0x75, 0xdb, 0x88, 0x8a, 0x63, 0x6f, 0x11, 0x90, 0x24, 0xf0, 0x7a, 0xd8, 0xd0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0xd7, 0x3, 0x14, 0x4b, 0x6c, 0x3a, 0x16, 0x47, 0x8e, 0xdb, 0x75, 0x1b, 0x8, 0xe, 0x87, 0x83, 0x39, 0x57, 0x8d, 0x2b, 0x31, 0x72, 0x62, 0x9d, 0x31, 0xbc, 0x7e, 0xc6, 0xbe, 0x92, 0xeb}} return a, nil } -var _idtablestakingScriptsGet_node_initial_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\x41\x4b\xc4\x30\x10\x05\xe0\x7b\x7e\xc5\x3b\xba\x97\x5d\x0f\xe2\x61\xc1\xc3\x4a\x2a\x04\xa4\x07\x13\x11\x8f\xa9\x26\xed\x60\x3a\x29\xe9\x94\x0a\xe2\x7f\x17\xdb\xd2\xd3\x9e\x06\xe6\xf1\x1e\x1f\xf5\x43\x2e\x82\xa7\x94\x67\xa3\x9d\x6f\x52\xb0\xe2\xbf\x88\x5b\xc4\x92\x7b\xdc\x7e\x1b\x5d\xd5\xce\xb8\x77\x77\x79\x7c\xae\x2e\x5a\xbf\x54\xd6\x2a\x75\x3a\xc1\x75\x34\x62\xfc\x28\x34\x08\x4a\x90\xa9\xf0\x08\xe9\x02\x88\x49\xc8\x27\xcc\x81\xda\x4e\x90\x23\x3c\x38\x7f\x06\xa5\x86\xa9\x41\x9c\x18\xbd\x27\xbe\xf9\x7f\x19\x7d\x86\x95\x42\xdc\x1e\xce\x78\x35\x2c\xf7\x77\xf8\x51\x00\x90\x82\x2c\x25\xc3\x31\xe3\xe1\x0a\xef\x58\x6f\xe9\x3e\xb4\xde\xc3\x52\x5f\x3d\xfb\xc2\x71\x33\xbd\x2d\x24\xf5\xfb\x17\x00\x00\xff\xff\x4a\xf0\xca\x23\xf5\x00\x00\x00" +var _idtablestakingScriptsGet_node_initial_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\x8a\x84\x30\x14\x45\xfb\x7c\xc5\xc5\x4a\x1b\x6d\x96\x2d\x84\xed\x64\x21\xcd\x36\xba\x6c\x9d\x75\x12\x7d\x4c\x7c\x91\xe4\x89\xc5\x30\xff\x3e\x8c\x8a\xcd\x4c\x75\x8b\xc3\x3d\x1c\x9a\xe6\x10\x05\xdf\x3e\xac\xba\xe9\xcc\xbf\xb7\xad\x98\x2b\xf1\x00\x17\xc3\x84\xec\x15\x64\x4a\x55\x15\xba\x91\x12\x52\x1f\x69\x16\x44\x2b\x4b\xe4\x04\x19\x2d\x88\x49\xc8\x78\xac\x96\x86\x51\x10\x1c\x0c\x38\x5c\xac\x52\xa6\xef\x6d\x4a\xb9\xf1\xbe\x80\x5b\x18\x93\x21\xce\x9f\x48\x37\x35\x5a\x89\xc4\x43\x51\xe3\x57\xb3\x7c\x7e\xe0\xa6\x00\xc0\x5b\xd9\xce\x9a\x5d\xc0\xd7\x9b\xc8\xf2\xe7\xa0\xa7\x68\xdf\x62\xbb\xef\x5d\xa7\xa1\x3c\xda\xfe\xb6\x34\x75\x7f\x04\x00\x00\xff\xff\x7c\x2d\x7f\xbb\xfb\x00\x00\x00" func idtablestakingScriptsGet_node_initial_weightCdcBytes() ([]byte, error) { return bindataRead( @@ -3280,11 +3340,11 @@ func idtablestakingScriptsGet_node_initial_weightCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_initial_weight.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf, 0xc0, 0x17, 0x67, 0x2c, 0xf0, 0xf8, 0xba, 0x42, 0x20, 0x9f, 0x54, 0x8b, 0x43, 0x3, 0x86, 0x8c, 0x2b, 0xbf, 0x6b, 0x3f, 0xa2, 0x5f, 0x47, 0xbc, 0x87, 0xa7, 0x24, 0x30, 0xc2, 0x95, 0xf5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1e, 0x31, 0x8c, 0x67, 0xbd, 0xca, 0x66, 0x6e, 0xa, 0xa, 0x1, 0x6b, 0x1f, 0xf3, 0x67, 0xaf, 0xa1, 0x6d, 0x22, 0xeb, 0xb9, 0xd0, 0xa7, 0x45, 0xd8, 0x2b, 0x75, 0xb2, 0x1d, 0xfe, 0xb1, 0x92}} return a, nil } -var _idtablestakingScriptsGet_node_networking_addrCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x41\x4b\xc4\x30\x10\x46\xef\xf9\x15\xdf\xd1\xbd\xec\x7a\x16\x3c\x54\x52\x21\x20\x7b\x30\xb9\x78\x4c\x6d\xd2\x06\xdb\x49\x99\x4c\xa9\x20\xfe\x77\xb1\xad\xf5\xb2\xa7\x19\x66\x78\x8f\x97\xc6\x29\xb3\xe0\x79\xc8\x8b\xd1\xce\x37\x43\xb0\xe2\x3f\x12\x75\x88\x9c\x47\xdc\x7f\x1a\x5d\x5f\x9d\x71\x6f\xae\x7a\x7a\xa9\x2b\xad\x5f\x6b\x6b\x95\xba\x5c\xe0\xfa\x54\x50\xde\x39\x4d\x02\x0e\x32\x33\x15\x48\x1f\x40\x41\x96\xcc\xab\xa2\x6a\x5b\x0e\xa5\x20\x47\x78\x50\x6e\x83\x52\xd3\xdc\x20\xce\x84\xd1\x27\xba\xfb\x3d\x19\xfd\x00\x2b\x9c\xa8\x3b\xfd\x2d\xf8\x52\x00\x30\x04\x59\x21\x43\x31\xe3\xf1\x46\xe2\xf9\xba\x7f\x0f\xd1\x36\x4f\x2b\xbe\x35\x1d\x86\xf3\x7f\xd7\x9e\xa5\xbe\x7f\x02\x00\x00\xff\xff\xe4\xf6\x2e\xea\xfd\x00\x00\x00" +var _idtablestakingScriptsGet_node_networking_addrCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\x6a\x84\x40\x10\x86\xfb\x7d\x8a\x1f\x2b\x6d\xb4\x0f\xa4\x08\x48\xc0\x26\x8d\xbe\xc0\x46\x67\x75\xc9\x3a\x2b\xb3\x23\x16\x21\xef\x1e\x4e\x3d\xaf\xb8\xab\x66\xe0\xe3\xff\xf8\xfc\xbc\x44\x51\x7c\x86\xb8\x35\x75\x67\xbf\x03\xb5\x6a\x7f\x3c\x8f\x70\x12\x67\x64\xcf\x20\x33\xa6\xaa\xd0\x4d\x3e\x21\xf5\xe2\x17\x85\x90\xae\xc2\x09\x3a\x11\x98\x74\x8b\xb2\x0b\x3e\x86\x41\x28\x25\x44\x07\x0b\x8e\x03\x19\x63\xfb\x9e\x52\xca\x6d\x08\x05\xdc\xca\x98\xad\xe7\xfc\x86\x9a\xfa\x0d\xad\x8a\xe7\xb1\xb8\x3f\xf8\x35\x00\x10\x48\xf7\x71\xc3\x2e\xe2\xfd\x45\x68\xf9\x75\xd2\x4b\x74\xdc\x62\x9f\x1f\x6d\x97\xa1\x7c\xf4\x9d\x79\xe6\xef\x3f\x00\x00\xff\xff\x9b\x3e\x96\x87\x03\x01\x00\x00" func idtablestakingScriptsGet_node_networking_addrCdcBytes() ([]byte, error) { return bindataRead( @@ -3300,11 +3360,11 @@ func idtablestakingScriptsGet_node_networking_addrCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_networking_addr.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x77, 0x9c, 0xbc, 0xa2, 0xdd, 0xeb, 0xde, 0xcd, 0xad, 0x72, 0x18, 0xa9, 0x16, 0x54, 0x32, 0xe6, 0x4, 0xd9, 0x5a, 0x2f, 0xed, 0x4e, 0x90, 0x88, 0x2, 0x16, 0x9, 0x5c, 0xe3, 0x45, 0x8c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa8, 0x91, 0xae, 0x4, 0xd4, 0x58, 0xda, 0xbc, 0x54, 0xfe, 0xdd, 0xf4, 0x99, 0x87, 0x9a, 0xe2, 0x69, 0xe0, 0xca, 0xcf, 0xf, 0xc2, 0x5d, 0x7e, 0xa9, 0x2b, 0xd8, 0x99, 0xca, 0xcd, 0x39, 0xf6}} return a, nil } -var _idtablestakingScriptsGet_node_networking_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\x4f\x85\x30\x10\x87\xf7\xfe\x15\xbf\xd1\xb7\xbc\xe7\x6c\xe2\x80\x29\x26\x8d\x86\xc1\x76\x71\x2c\x7a\x85\x06\xb8\x92\x72\x04\x89\xf1\x7f\x37\x82\xe2\xf2\xa6\xbb\xdc\xe5\xfb\xf2\xc5\x61\x4c\x59\xf0\xd8\xa7\xc5\x68\xe7\xeb\x9e\xac\xf8\x2e\x72\x83\x90\xd3\x80\xdb\x0f\xa3\xcb\xca\x19\xf7\xea\x8a\x87\xe7\xb2\xd0\xfa\xa5\xb4\x56\xa9\xcb\x05\xae\x8d\x13\xa6\xb7\x1c\x47\x41\x26\x99\x33\x4f\x90\x96\xc0\x24\x4b\xca\x9b\xa2\xa3\x15\x29\xc0\x83\xd3\x3b\x29\x35\xce\x35\xc2\xcc\x18\x7c\xe4\x9b\x9f\x93\xd1\x77\xb0\x92\x23\x37\xa7\xbf\x05\x9f\x0a\x00\x7a\x92\x0d\x32\x1c\x12\xee\xaf\xe4\x9d\xab\xdf\xef\x21\xda\xe7\x69\xc3\xf7\x9e\xc3\x70\xfe\x6f\x7a\xa2\x55\x7d\x7d\x07\x00\x00\xff\xff\xd1\xf6\x05\xda\xf5\x00\x00\x00" +var _idtablestakingScriptsGet_node_networking_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xaa\x83\x40\x10\x45\xfb\xfd\x8a\x8b\x95\x36\xda\x3f\x78\x9d\x3c\x90\x07\x69\xf4\x07\x36\x66\x56\x17\xd7\x59\xd9\x1d\x11\x09\xf9\xf7\x10\x4d\x4c\x91\x54\x33\x70\xb8\x87\x63\xc7\xc9\x07\xc1\x9f\xf3\x4b\x55\x36\xfa\xec\xa8\x16\x3d\x58\xee\x60\x82\x1f\x91\x7c\x82\x44\xa9\xa2\x40\xd3\xdb\x88\xd8\x06\x3b\x09\x02\xc9\x1c\x38\x42\x7a\x02\x93\x2c\x3e\x6c\x82\x81\x56\x78\x03\x0d\xf6\x17\x52\x4a\xb7\x2d\xc5\x98\x6a\xe7\x32\x98\x99\x31\x6a\xcb\xe9\x03\x55\xe5\x0f\x6a\x09\x96\xbb\xec\xf5\xe0\xaa\x00\xc0\x91\x6c\xe3\x8a\x8d\xc7\xef\x97\xc8\xfc\xf4\xa4\x87\x68\xbf\xd9\x36\xdf\xbb\x0e\x43\xfe\x6e\xfb\xa7\x55\xdd\xee\x01\x00\x00\xff\xff\x95\x72\xe4\x3d\xfb\x00\x00\x00" func idtablestakingScriptsGet_node_networking_keyCdcBytes() ([]byte, error) { return bindataRead( @@ -3320,11 +3380,11 @@ func idtablestakingScriptsGet_node_networking_keyCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_networking_key.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xba, 0x39, 0x41, 0x31, 0x6, 0x4d, 0x30, 0xeb, 0xd3, 0x9d, 0xc8, 0x3f, 0xee, 0x5a, 0x9, 0x3, 0x4c, 0x73, 0xa0, 0xfe, 0x29, 0x92, 0x56, 0xea, 0xc3, 0x25, 0x7c, 0x59, 0x6f, 0xb3, 0xa9, 0xac}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2a, 0x80, 0xca, 0xa7, 0xf8, 0xbc, 0x50, 0xe7, 0x5b, 0x44, 0x46, 0xe3, 0x38, 0x25, 0x5d, 0x5f, 0xfe, 0x21, 0x3, 0xbd, 0xd6, 0x4a, 0x73, 0x41, 0x70, 0x5d, 0x8f, 0xbc, 0x57, 0x97, 0xf6, 0x77}} return a, nil } -var _idtablestakingScriptsGet_node_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\x31\x6b\xc3\x30\x10\x05\xe0\x5d\xbf\xe2\x8d\xcd\x92\x74\x28\x1d\x02\x1d\x52\xe4\x80\xa0\x64\x88\xd5\xa1\xa3\x1c\x9f\x13\x11\xf9\x64\x4e\x67\x12\x28\xfd\xef\x25\x71\xf0\x94\xe9\xe0\x1d\xef\xf1\xc5\x7e\xc8\xa2\xd8\xa6\x7c\x71\xd6\x87\x26\x51\xad\xe1\x1c\xf9\x88\x4e\x72\x8f\xd7\xab\xb3\xd5\xce\x3b\xff\xe3\x37\x9f\x5f\xd5\xc6\xda\x7d\x55\xd7\xc6\xac\x56\xf0\xa7\x58\x50\x0e\x12\x07\x85\x90\x8e\xc2\x05\x7a\x22\x34\x21\x05\x3e\x10\x72\x07\xa1\x4b\x90\x96\x5a\x68\x3e\x13\x97\x5b\x14\xc0\xb9\x25\x63\x86\xb1\x41\x37\x32\xfa\x10\xf9\xe5\x16\x39\xbb\x46\xad\x12\xf9\xb8\x58\xe3\x7b\x1b\xaf\xef\x6f\xf8\x35\x00\x90\x48\xef\x25\xc7\x5d\xc6\xc7\x13\xea\x72\xf7\xf8\xce\x43\xd3\x5d\xdc\xeb\x93\x6d\x5e\x58\x4e\x96\xfd\x83\x66\xfe\xfe\x03\x00\x00\xff\xff\x1e\xee\x86\x4b\x02\x01\x00\x00" +var _idtablestakingScriptsGet_node_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x3d\x6a\xc3\x40\x10\x46\xfb\x3d\xc5\x87\x2b\xab\xb1\x9b\x90\xc2\x90\xce\x18\xd4\xa4\x88\x9d\x03\x8c\x57\xb3\xf6\xa2\xd5\xac\x98\x1d\xa1\x40\xc8\xdd\x83\x7e\x50\x93\x54\x03\xf3\xf8\x1e\x2f\x76\x7d\x56\xc3\x25\xe5\xb1\x3e\xdf\xe8\x9e\xf8\x6a\xd4\x46\x79\x20\x68\xee\xb0\xfb\x0b\x76\xce\x1d\x8f\xb8\x3d\x63\x41\xf1\x1a\x7b\x83\xb2\x0d\x2a\x05\xf6\x64\xdc\x29\x91\x78\x46\x0e\x50\x1e\x49\x1b\x6e\x60\xb9\x65\x29\xd3\x8b\x20\xb9\x61\xe7\xc8\x7b\x2e\x65\x4f\x29\x55\x08\x83\xa0\xa3\x28\xfb\x09\xd5\xe7\x13\xae\xa6\x51\x1e\xd5\x09\x9f\x97\xf8\xf5\xfa\x82\x6f\x07\x00\x89\x6d\x1e\xd7\x12\x32\xde\xfe\x09\x3e\xbc\xaf\x74\x13\x2d\xb7\x9a\xe7\x4b\xe3\x66\x38\x2c\x4d\x1f\x6b\xa2\xfb\xf9\x0d\x00\x00\xff\xff\xf4\x1f\x63\x6a\x08\x01\x00\x00" func idtablestakingScriptsGet_node_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3340,11 +3400,11 @@ func idtablestakingScriptsGet_node_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x91, 0x31, 0x52, 0xe3, 0xb5, 0xc6, 0x8e, 0x86, 0x7b, 0xee, 0xce, 0x3f, 0x8f, 0x80, 0x32, 0xbe, 0x41, 0xf5, 0x1, 0x7, 0xf8, 0x80, 0x7c, 0xca, 0x2, 0x28, 0x8, 0x5c, 0x7c, 0x30, 0xd5, 0x56}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x9a, 0xcb, 0xd1, 0x44, 0xce, 0xa6, 0xa9, 0xb, 0xf5, 0x69, 0x8, 0x75, 0x31, 0x3d, 0xa4, 0xfe, 0x77, 0x25, 0x7, 0x2e, 0x9a, 0x2a, 0xe8, 0xf2, 0x14, 0x6d, 0x39, 0x96, 0x0, 0x13, 0x24}} return a, nil } -var _idtablestakingScriptsGet_node_roleCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\x85\x30\x14\x46\xf7\xfc\x8a\x6f\xac\x8b\x76\x2c\x42\x07\x4b\x2c\x04\x8a\x43\x93\x0e\x1d\x63\x9b\x68\x68\xbc\x91\x78\xa5\x85\xf2\xfe\xfb\x43\x7d\x38\xbd\xe9\xc2\xfd\x38\x87\x13\xa6\x39\x65\xc6\x6b\x4c\xbf\x4a\x1a\xdb\x47\xa7\xd9\xfe\x04\x1a\xe0\x73\x9a\xf0\xf8\xa7\x64\xdb\x19\x65\x3e\x4d\xf3\xf2\xd6\x36\x52\xbe\xb7\x5a\x0b\x51\x55\x30\x63\x58\xb0\x7c\xe5\x30\x33\xb2\xe3\x35\xd3\x02\x1e\x1d\x72\x8a\x0e\xc9\xc3\x82\xd2\xb7\x13\x62\x5e\x7b\xf8\x95\x30\xd9\x40\x0f\xdb\x4b\xc9\x1a\x9a\x73\xa0\xa1\xa8\xf1\xa1\x88\x9f\xf0\x2f\x00\x20\x3a\xde\x19\x45\x3e\xe1\xf9\x4e\x53\xd9\xdd\xd6\xd3\x73\xdc\x62\xc7\x8f\x88\xd3\x50\x6e\x21\xe2\x72\x0d\x00\x00\xff\xff\xf4\x8e\xc6\x37\xe1\x00\x00\x00" +var _idtablestakingScriptsGet_node_roleCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xca\x83\x30\x14\x85\xf7\x3c\xc5\xc1\x49\x17\x5d\x7f\x84\x7f\x93\x42\x96\x2e\xda\x07\x48\x6d\xa2\xa1\xf1\x46\x6e\xae\x74\x28\x7d\xf7\xa2\x16\x97\x76\x3a\xc3\xc7\xf9\xf8\xfc\x34\x47\x16\x9c\x42\x7c\xe8\xa6\x33\xd7\x60\x5b\x31\x77\x4f\x03\x1c\xc7\x09\xd9\x37\xc8\x94\xaa\x2a\x74\xa3\x4f\x48\x3d\xfb\x59\xc0\x56\x16\xa6\x04\x19\x2d\x38\x06\x8b\xe8\x60\x40\xf1\x66\x95\x32\x7d\x6f\x53\xca\x4d\x08\x05\xdc\x42\x98\x8c\xa7\x7c\x45\xba\xa9\xd1\x0a\x7b\x1a\x8a\x1a\x17\x4d\xf2\x87\xa7\x02\x80\x60\x65\xfb\x6a\x72\x11\xff\x3f\xca\xca\xf3\x87\x1e\x9e\x7d\x8b\xed\xbe\xc7\x1c\x86\x72\x0d\x52\xaf\x77\x00\x00\x00\xff\xff\xf6\xa1\xe0\xc7\xe7\x00\x00\x00" func idtablestakingScriptsGet_node_roleCdcBytes() ([]byte, error) { return bindataRead( @@ -3360,11 +3420,11 @@ func idtablestakingScriptsGet_node_roleCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_role.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0x9e, 0xda, 0x8e, 0x65, 0x95, 0xfa, 0x4e, 0xa1, 0xbc, 0xcc, 0x44, 0xe8, 0xa4, 0x4b, 0xbb, 0xe5, 0x51, 0x79, 0xb1, 0x87, 0x98, 0xe, 0xfe, 0x5e, 0x5d, 0x35, 0x73, 0x4, 0xec, 0xc8, 0x57}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x0, 0xb7, 0xb0, 0x5f, 0x96, 0x55, 0x19, 0x86, 0x7a, 0x0, 0xf0, 0xfe, 0xd6, 0x6f, 0xce, 0xc4, 0x56, 0x65, 0x59, 0x5c, 0x66, 0x15, 0x56, 0x22, 0xc8, 0xe, 0x22, 0x44, 0x49, 0xf0, 0xc0, 0x78}} return a, nil } -var _idtablestakingScriptsGet_node_staked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\x31\x6b\xc3\x30\x10\x05\xe0\x5d\xbf\xe2\x8d\xcd\x92\x74\x28\x1d\x02\x1d\x52\xe4\x80\xa0\x64\xa8\xd4\xa1\xa3\x9c\x9c\x12\x61\xf9\x64\xa4\x33\x0d\x94\xfe\xf7\x62\xbb\x78\xea\x74\xf0\x8e\xf7\xf8\x62\x3f\xe4\x22\x38\xa6\xfc\x65\xb4\xf3\x6d\x22\x2b\xbe\x8b\x7c\x45\x28\xb9\xc7\xe3\xdd\xe8\xe6\xe4\x8c\xfb\x74\x87\xd7\xb7\xe6\xa0\xf5\x7b\x63\xad\x52\xbb\x1d\xdc\x2d\x56\xd4\x73\x89\x83\xa0\x90\x8c\x85\x2b\xe4\x46\x68\x7d\xf2\x7c\x26\xe4\x80\x2a\xbe\xa3\x0b\x24\x77\xc4\x75\x0a\x3c\x38\x5f\x48\xa9\x61\x6c\x11\x46\x46\xef\x23\x3f\x4c\x91\xd1\x7b\x58\x29\x91\xaf\x9b\x3d\x3e\x8e\xf1\xfe\xfc\x84\x6f\x05\x00\x89\x64\x2e\x19\x0e\x19\x2f\xff\x40\xb7\xa7\xbf\xef\x3a\xb4\xdc\xcd\x5c\x5f\x64\xeb\xc2\x76\xb1\xd8\x19\xa6\x7e\x7e\x03\x00\x00\xff\xff\x46\xae\x83\xcb\xfe\x00\x00\x00" +var _idtablestakingScriptsGet_node_staked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\x6a\x84\x40\x10\x86\xfb\x7d\x8a\x9f\xab\xce\xe6\xae\x09\x29\x0e\xd2\x89\x60\x93\x46\xf3\x00\xe3\x3a\xab\x8b\xeb\xac\xec\x8e\x24\x10\xf2\xee\x41\x0d\x36\xb9\x6a\x60\x3e\xfe\x8f\xcf\xcf\x4b\x4c\x8a\x2a\xc4\xcf\xba\x6c\xa9\x0b\xdc\x28\x4d\x5e\x06\xb8\x14\x67\x5c\xfe\x83\x8b\x31\xf7\x3b\xda\xd1\x67\x64\x9b\xfc\xa2\x48\xac\x6b\x92\x0c\x1d\x19\x1d\x05\x12\xcb\x88\x0e\x59\x69\xe2\x1e\x1a\x27\x96\xbc\x3d\x08\x12\x7b\x36\x86\xac\xe5\x9c\xaf\x14\x42\x01\xb7\x0a\x66\xf2\x72\xdd\x50\x5d\x3e\xd0\x68\xf2\x32\x14\x0f\x7c\x54\xfe\xeb\xf5\x05\xdf\x06\x00\x02\xeb\x3e\xae\xc5\x45\xbc\x3d\xc9\xbd\xbd\xff\xd1\x53\x74\xdc\x62\x9f\x1f\x85\xa7\xe1\x76\x34\x35\x7b\xa0\xf9\xf9\x0d\x00\x00\xff\xff\x88\xf6\xd5\xbd\x04\x01\x00\x00" func idtablestakingScriptsGet_node_staked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3380,11 +3440,11 @@ func idtablestakingScriptsGet_node_staked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_staked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc9, 0xa5, 0xe0, 0x6e, 0x32, 0xb4, 0x2d, 0xce, 0xcf, 0xef, 0x6c, 0xad, 0xa0, 0xc, 0x96, 0x72, 0x4d, 0x32, 0x5b, 0xfa, 0x45, 0xea, 0x74, 0x20, 0x42, 0x4b, 0x9e, 0x2c, 0x86, 0xa0, 0x44, 0x9e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0x54, 0xed, 0x63, 0x3d, 0x4f, 0x58, 0xcc, 0xc0, 0xc2, 0x61, 0x56, 0xca, 0x69, 0xb6, 0x69, 0xbc, 0xb0, 0x62, 0x73, 0x82, 0x4c, 0x79, 0xe7, 0x37, 0xfd, 0x98, 0x8e, 0x96, 0x78, 0x0, 0xd9}} return a, nil } -var _idtablestakingScriptsGet_node_staking_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\xaf\x82\x30\x14\x46\xf7\xfe\x8a\x6f\x7c\x2c\xf0\xe6\x97\xbc\x01\x53\x4c\x1a\x0c\x83\xed\xe2\x58\xb4\x85\x46\x68\x49\x5b\xa2\xc4\xf8\xdf\x8d\x80\x4c\x4e\xf7\xe6\xde\x9c\x93\x63\xfa\xc1\xf9\x88\x7d\xe7\x6e\x8c\x0a\x59\x77\x8a\x47\x79\x35\xb6\x81\xf6\xae\xc7\xef\x9d\xd1\xa2\x12\x4c\x9c\x44\xbe\x3b\x14\x39\xa5\xc7\x82\x73\x42\xb2\x0c\xa2\x35\x01\xe1\xec\xcd\x10\xe1\x55\x1c\xbd\x0d\x88\xad\x42\x58\xf9\x52\x4d\x70\x1a\x12\xd6\x5d\x14\x21\xc3\x58\x43\x8f\x16\xbd\x34\xf6\xe7\x7d\x62\xf4\x0f\x3c\x7a\x63\x9b\xe4\xb3\xe0\x41\x00\xa0\x53\x71\x86\x98\xd5\x0e\xff\x5f\xda\xd2\x6a\xfd\x6e\xa2\x65\x26\x33\xbe\xc4\x6c\x86\x74\x0d\x2a\xd5\x44\x9e\xaf\x00\x00\x00\xff\xff\x09\x99\x69\xfa\xef\x00\x00\x00" +var _idtablestakingScriptsGet_node_staking_keyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xaa\x83\x40\x10\x45\xfb\xfd\x8a\x8b\x95\x36\xda\x3f\x78\x9d\x04\x44\x48\xa3\x3f\xb0\x31\xb3\xba\x64\x9d\x95\xdd\x91\x20\x21\xff\x1e\xa2\xc6\x26\xa9\x66\xe0\x70\x2e\xc7\x8e\x93\x0f\x82\x93\xf3\xf7\xaa\x6c\xf5\xc5\x51\x23\xfa\x66\xb9\x87\x09\x7e\x44\xf2\x0d\x12\xa5\x8a\x02\xed\x60\x23\x62\x17\xec\x24\x08\x24\x73\xe0\x08\x19\x08\x71\xb7\x6b\x5a\xe0\x0d\x34\xd8\x5f\x49\x29\xdd\x75\x14\x63\xaa\x9d\xcb\x60\x66\xc6\xa8\x2d\xa7\x6f\x54\x95\x7f\x68\x24\x58\xee\xb3\xcf\x83\x87\x02\x00\x47\xb2\xca\x15\x1b\x8f\xff\x1f\x85\xf9\x79\xa7\xc7\xd0\x76\xb3\x55\xdf\xa2\x8e\x85\x7c\x0f\xab\x69\x51\xcf\x57\x00\x00\x00\xff\xff\xe3\x1d\xee\xbd\xf5\x00\x00\x00" func idtablestakingScriptsGet_node_staking_keyCdcBytes() ([]byte, error) { return bindataRead( @@ -3400,11 +3460,11 @@ func idtablestakingScriptsGet_node_staking_keyCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_staking_key.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xab, 0x13, 0x1f, 0xf1, 0xf9, 0x2c, 0xc6, 0x26, 0x45, 0x9a, 0xa, 0xf0, 0x4f, 0x7, 0xa2, 0x39, 0x1a, 0xd, 0x99, 0xd6, 0x51, 0x83, 0x95, 0xa, 0x58, 0xb5, 0x72, 0xf8, 0xa1, 0xe7, 0xf0, 0x62}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0x60, 0xc8, 0xcc, 0xd8, 0xd1, 0x4, 0x35, 0xdc, 0x43, 0xab, 0xa6, 0x61, 0x23, 0x93, 0x51, 0xd2, 0x5a, 0x24, 0xe6, 0xe2, 0x95, 0xc3, 0xe5, 0xbf, 0x68, 0x26, 0x94, 0xfb, 0x6a, 0xe9, 0x73}} return a, nil } -var _idtablestakingScriptsGet_node_total_commitmentCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\xc3\x30\x10\x46\x77\xfd\x8a\x6f\x8c\x97\xa4\x43\xe9\x10\xe8\x90\x56\x0e\x08\x4a\x86\x5a\xa5\x74\x94\xe3\xb3\x2d\x2c\xe9\x8c\x74\xa6\x81\xd2\xff\x5e\x92\x94\x4c\x99\x0e\xbe\xe3\x3d\x9e\x8f\x33\x67\xc1\x3e\xf0\xb7\xd1\xd6\xb5\x81\x1a\x71\x93\x4f\x03\xfa\xcc\x11\x0f\x27\xa3\xeb\x83\x35\xf6\xcb\xee\x5e\xde\xea\x9d\xd6\xef\x75\xd3\x28\xb5\xd9\xc0\x8e\xbe\xa0\x1c\xb3\x9f\x05\x99\x64\xc9\xa9\x40\x46\x42\xeb\x82\x4b\x47\x02\xf7\x28\xe2\x26\xea\x20\x3c\x51\x2a\xe7\xc1\x21\x71\x47\x4a\xcd\x4b\x8b\x7e\x49\x88\xce\xa7\xd5\x79\x32\x7a\x8b\x46\xb2\x4f\x43\xb5\xc5\xc7\xde\x9f\x9e\x1e\xf1\xa3\x00\x20\x90\x5c\x20\x93\x7a\xc6\xf3\x9d\xd0\xf5\xe1\xff\x7b\x13\x5d\x6f\x75\xc1\xaf\x65\x37\xc3\x5a\x58\x5c\x78\xe5\x18\xbd\x08\x75\x9f\x5e\x46\x4d\x81\x06\x27\x9c\xcb\xaa\x52\xbf\xea\x2f\x00\x00\xff\xff\x38\xb0\x49\xad\x11\x01\x00\x00" +var _idtablestakingScriptsGet_node_total_commitmentCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\xc3\x40\x0c\x46\xf7\xfb\x15\x1f\x99\xec\x25\x59\x4a\x87\x40\xa7\x9a\x80\x97\x2e\x49\xe9\xac\xd8\x3a\x5b\xf8\x4e\x0a\x77\x0a\x2d\x94\xfe\xf7\x92\xa4\x64\x69\x26\x81\x1e\xdf\xe3\x49\x3e\x59\x71\xec\x92\x7d\xf6\xdd\x81\x8e\x89\xf7\x4e\x8b\xe8\x84\x58\x2c\x63\xf5\x1f\xac\x42\xd8\x6c\x70\x98\xa5\xa2\x0e\x45\x4e\x8e\xc2\x7e\x2e\x5a\xe1\x33\xe3\x48\x89\x74\x60\x58\x44\x75\x5a\x78\x84\xdb\xc2\x5a\x2f\x0f\x82\xda\xc8\x21\xd0\x30\x70\xad\x0d\xa5\xd4\x22\x9e\x15\x99\x44\x9b\x0b\xea\xbb\x2d\xf6\x5e\x44\xa7\x76\x8b\xf7\x9d\x7c\x3d\x3f\xe1\x3b\x00\x40\x62\xbf\x8e\x7b\x8d\x86\x97\x07\xb9\xeb\xb7\x3f\x7a\x17\xdd\x6e\x7b\x9d\xdf\x0a\xef\x86\xb5\x9b\x53\x7a\xb5\x9c\xc5\x9d\xc7\x0f\xf1\xb9\xe3\xc4\x13\xb9\x95\xda\xb4\xe1\x27\xfc\x06\x00\x00\xff\xff\xde\x81\x86\x0c\x17\x01\x00\x00" func idtablestakingScriptsGet_node_total_commitmentCdcBytes() ([]byte, error) { return bindataRead( @@ -3420,11 +3480,11 @@ func idtablestakingScriptsGet_node_total_commitmentCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_total_commitment.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9a, 0xb3, 0x90, 0x58, 0xe3, 0xb3, 0x74, 0x22, 0x31, 0x4f, 0xd0, 0x3b, 0xa0, 0x9e, 0x61, 0x27, 0x36, 0xe5, 0x70, 0xb2, 0xef, 0x1d, 0x2e, 0x4a, 0xe1, 0x1a, 0xef, 0x56, 0x9e, 0x47, 0x48, 0xd8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0x4e, 0xa8, 0x2, 0x91, 0x80, 0xc1, 0xa6, 0xf6, 0x9b, 0x8c, 0x17, 0xce, 0x51, 0x4d, 0x8c, 0x4, 0x66, 0x16, 0xe7, 0x9e, 0x9c, 0x54, 0xd7, 0x3c, 0x96, 0x45, 0x48, 0x4b, 0x9a, 0x26, 0x27}} return a, nil } -var _idtablestakingScriptsGet_node_total_commitment_without_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\xc3\x30\x10\x46\x77\xfd\x8a\x6f\x8c\x97\xa4\x43\xe9\x10\xe8\x90\x56\x0e\x08\x4a\x86\x5a\xa5\x74\x94\xe3\xb3\x2d\x2c\xe9\x8c\x74\xa6\x81\xd2\xff\x5e\x92\x94\x4c\x99\x0e\xbe\xe3\x3d\x9e\x8f\x33\x67\xc1\x3e\xf0\xb7\xd1\xd6\xb5\x81\x1a\x71\x93\x4f\x03\xfa\xcc\x11\x0f\x27\xa3\xeb\x83\x35\xf6\xcb\xee\x5e\xde\xea\x9d\xd6\xef\x75\xd3\x28\xb5\xd9\xc0\x8e\xbe\xa0\x1c\xb3\x9f\x05\x99\x64\xc9\xa9\x40\x46\x42\xeb\x82\x4b\x47\x02\xf7\x28\xe2\x26\xea\x20\x3c\x51\x2a\xe7\xc1\x21\x71\x47\x4a\xcd\x4b\x8b\x7e\x49\x88\xce\xa7\xd5\x79\x32\x7a\x8b\x46\xb2\x4f\x43\xb5\xc5\xc7\xde\x9f\x9e\x1e\xf1\xa3\x00\x20\x90\x5c\x20\x93\x7a\xc6\xf3\x9d\xd0\xf5\xe1\xff\x7b\x13\x5d\x6f\x75\xc1\xaf\x65\x37\xc3\x5a\x58\x5c\x78\xe5\x18\xbd\x08\x75\x9f\x5e\x46\x5e\x44\x53\xa0\xc1\x09\xe7\xb2\xaa\xd4\xaf\xfa\x0b\x00\x00\xff\xff\x10\x9e\xf2\x15\x14\x01\x00\x00" +var _idtablestakingScriptsGet_node_total_commitment_without_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\xc3\x40\x0c\x46\xf7\xfb\x15\x1f\x99\xec\x25\x59\x4a\x87\x40\xa7\x9a\x80\x97\x2e\x49\xe9\xac\xd8\xb2\x2d\x7c\x27\x85\x3b\x99\x16\x4a\xff\x7b\x49\x52\xbc\x34\x93\x40\x8f\xef\xf1\x24\x5d\x2c\x3b\x0e\xd1\x3e\xdb\xe6\x44\xe7\xc8\x47\xa7\x59\x74\xc4\x90\x2d\x61\xf3\x1f\x6c\x42\xd8\xed\x70\x9a\xa4\xa0\x74\x59\x2e\x8e\xcc\xbe\x64\x2d\xf0\x89\x71\xa6\x48\xda\x31\x6c\x40\x71\x9a\xb9\x87\xdb\xcc\x5a\xae\x0f\x82\x5a\xcf\x21\x50\xd7\x71\x29\x15\xc5\x58\x63\x58\x14\x89\x44\xab\x2b\x6a\x9b\x3d\x8e\x9e\x45\xc7\x7a\x8f\xf7\x83\x7c\x3d\x3f\xe1\x3b\x00\x40\x64\xbf\x8d\x5b\x1d\x0c\x2f\x0f\x72\xb7\x6f\x7f\x74\x15\xdd\x6f\x7d\x9b\xdf\x0b\x57\xc3\xd6\xcd\x29\xbe\x5a\x4a\xe2\xce\xfd\x87\xf8\x64\x8b\x37\x1c\x79\x24\xb7\x5c\xaa\x3a\xfc\x84\xdf\x00\x00\x00\xff\xff\x30\xea\x1b\x75\x1a\x01\x00\x00" func idtablestakingScriptsGet_node_total_commitment_without_delegatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -3440,11 +3500,11 @@ func idtablestakingScriptsGet_node_total_commitment_without_delegatorsCdc() (*as } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_total_commitment_without_delegators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xad, 0x78, 0x6, 0x75, 0x27, 0xd2, 0xa2, 0x58, 0x76, 0xf1, 0x1d, 0xf8, 0x39, 0xfc, 0xef, 0xfc, 0xfe, 0xe9, 0x4b, 0xa5, 0x25, 0x13, 0xb7, 0x3, 0x8d, 0x8e, 0xcd, 0xdb, 0xc1, 0x61, 0x21, 0xf4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x84, 0x32, 0xaf, 0x9f, 0xd3, 0x1e, 0x55, 0x10, 0x72, 0x2d, 0x94, 0x44, 0xae, 0x6b, 0xa4, 0xc5, 0xe4, 0x2, 0xc6, 0x10, 0x0, 0xae, 0xb5, 0x69, 0x35, 0xb, 0xf6, 0x87, 0x8d, 0x53, 0x4, 0xa7}} return a, nil } -var _idtablestakingScriptsGet_node_type_ratioCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x9e\xb7\xf6\x62\x3d\x88\x48\xc1\x43\x25\x29\x04\xc4\x43\xb2\x3d\x88\x78\x98\x34\x93\x76\xc9\x66\x27\xcc\x4e\x68\x41\xfc\xef\xd2\xea\xb1\xd7\xc7\xfb\x3e\xbe\x30\x4e\xa2\x86\x6d\x94\x53\x55\x78\x6a\x23\x37\x46\x43\x48\x07\xf4\x2a\x23\x1e\xce\x55\x51\xbe\xfb\xca\x7f\xf8\xcd\xeb\x5b\xb9\x29\x8a\xba\x6c\x1a\xe7\x56\x2b\xf8\x63\xc8\xc8\x7b\x0d\x93\x41\xd9\x66\x4d\x19\x76\x64\xb4\x14\x29\xed\x19\xd2\x23\x1b\x0d\xdc\xc1\x64\xe0\x94\x2f\x03\x21\x49\xc7\xce\x4d\x73\x8b\x7e\x4e\x18\x29\xa4\x85\x4a\xe4\x35\x76\x55\xb2\xe7\xe5\x1a\xbb\x6d\x38\x3f\x3d\xe2\xdb\x01\x40\x64\x83\x92\x05\xc9\x78\xb9\xd1\x78\x7f\x60\xab\xf9\x44\xda\xd5\xd7\xd3\x62\xe9\xae\xd8\x5f\xce\x3f\xf9\x79\xf1\x7f\xdd\xb9\x9f\xdf\x00\x00\x00\xff\xff\xd9\xe6\xb6\x53\xeb\x00\x00\x00" +var _idtablestakingScriptsGet_node_type_ratioCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\x03\x51\x10\x84\xfb\xf7\x2b\xc6\x54\x77\x8d\x69\x44\x24\x60\x27\x81\xb4\x31\xa9\xc4\x62\xf3\x6e\x2f\x79\xdc\xbb\xdd\xb0\xbb\xe1\x04\xf1\xbf\xcb\x9d\x76\xda\xce\xcc\x37\x7c\x65\xbc\xaa\x05\xb6\x55\xa7\xdd\xcb\x81\x4e\x95\x5f\x83\x86\x22\x67\xf4\xa6\x23\x56\x7f\x8b\x55\x4a\xeb\x35\x0e\x97\xe2\xf0\x6c\xe5\x1a\x30\x8e\x9b\x89\x23\x2e\x8c\x13\x55\x92\xcc\xd0\x1e\x1e\x34\x70\x87\xd0\x81\xc5\xe7\x80\x20\xda\x71\x4a\x94\x33\xbb\x37\x54\x6b\x8b\xfe\x26\x18\xa9\x48\x63\x5a\x79\x83\xe3\x4e\xe2\xa9\xdd\xe0\xb8\x2d\x1f\x8f\x0f\xf8\x4c\x00\x50\x39\x60\x14\x45\x1d\xcf\xff\x98\xde\x9f\x39\xf6\x3c\x91\x75\xfb\x65\xd4\xb4\x69\xc1\x7e\xb4\x7e\xc9\xb7\xf9\xff\xfd\x2e\x7d\x7d\x07\x00\x00\xff\xff\x6f\x62\x2e\xa0\xf1\x00\x00\x00" func idtablestakingScriptsGet_node_type_ratioCdcBytes() ([]byte, error) { return bindataRead( @@ -3460,11 +3520,11 @@ func idtablestakingScriptsGet_node_type_ratioCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_type_ratio.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x27, 0xe6, 0x4, 0x86, 0x23, 0x25, 0x65, 0xf9, 0xf4, 0xdb, 0x7e, 0xdf, 0xf4, 0xcc, 0x96, 0xf1, 0xd7, 0xda, 0xd8, 0x20, 0xa, 0xc1, 0xb, 0x17, 0x4c, 0xf8, 0xb8, 0x4c, 0xfa, 0x5a, 0xf2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa9, 0x6, 0x3f, 0x1a, 0x72, 0xbf, 0x77, 0x88, 0xc2, 0xac, 0xd6, 0x2a, 0xea, 0x37, 0xc, 0x1, 0xe8, 0x1b, 0x86, 0x79, 0x76, 0xdc, 0x56, 0x9b, 0x51, 0x27, 0x7d, 0xd1, 0x92, 0x12, 0xe8, 0x89}} return a, nil } -var _idtablestakingScriptsGet_node_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x6a\x03\x31\x10\x04\xd0\x5e\x5f\x31\x65\xdc\xd8\x29\x42\x0a\x43\x0a\x07\x9d\x41\x10\x5c\x44\x72\x91\x52\x67\xaf\x6c\x71\xba\xd5\x21\xad\x88\x21\xe4\xdf\x83\x7d\xc6\x55\xaa\x85\x59\x66\x78\x71\x9c\x72\x11\x6c\x53\xfe\x36\xda\xf9\x3e\x91\x15\x3f\x44\x3e\x21\x94\x3c\xe2\xf9\x62\x74\xb7\x73\xc6\x7d\xb9\xcd\xfb\x47\xb7\xd1\xfa\xb3\xb3\x56\xa9\xd5\x0a\xee\x1c\x2b\xea\xa1\xc4\x49\x50\x48\x5a\xe1\x0a\x39\x13\x7a\x9f\x3c\x1f\x08\x39\xa0\x71\x15\x3f\xd0\x11\x92\x07\xe2\x7a\x8d\x3c\x38\x1f\x49\xa9\xa9\xf5\x08\x8d\x31\xfa\xc8\x4f\xd7\xc8\xe8\x35\xac\x94\xc8\xa7\xc5\x1a\xfb\x6d\xbc\xbc\xbe\xe0\x47\x01\x40\x22\xb9\x95\x0c\x87\x8c\xb7\x7f\xa8\xcb\xdd\xfd\xfb\x18\x9a\xef\xe2\x56\x9f\x6d\x8f\x85\xe5\x6c\xd9\xdf\x69\xea\xf7\x2f\x00\x00\xff\xff\xed\xa2\xe5\x11\x02\x01\x00\x00" +var _idtablestakingScriptsGet_node_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x3d\x6a\xc3\x40\x10\x46\xfb\x3d\xc5\x87\x2b\xab\xb1\x9b\x90\xc2\x90\xce\x18\xd4\xa4\xb1\x74\x80\xd1\x6a\x56\x5a\xb4\x9a\x15\xbb\x23\x12\x08\xb9\x7b\xd0\x0f\x6a\xe2\x6a\x60\x1e\xdf\xe3\xf9\x71\x8a\x49\xf1\x08\xf1\xab\xbc\x57\xd4\x04\x7e\x2a\x0d\x5e\x3a\xb8\x14\x47\x9c\xfe\x83\x93\x31\xd7\x2b\xaa\xde\x67\x64\x9b\xfc\xa4\x48\xac\x73\x92\x0c\xed\x19\x0d\x05\x12\xcb\x88\x0e\xb3\x64\xa5\x81\x5b\x68\x1c\x58\xf2\xf2\x22\x48\x6c\xd9\x18\xb2\x96\x73\x3e\x53\x08\x05\xdc\x2c\x18\xc9\xcb\x79\x41\xe5\xfd\x86\xa7\x26\x2f\x5d\x71\x43\xfd\xf0\xdf\xef\x6f\xf8\x31\x00\x10\x58\xd7\x71\x29\x2e\xe2\xe3\x45\xf0\xe5\x73\xa7\x87\x68\xbb\xc5\x3a\xdf\x1a\x0f\xc3\x65\x6b\xaa\xf7\x44\xf3\xfb\x17\x00\x00\xff\xff\xa2\xd9\x0b\x78\x08\x01\x00\x00" func idtablestakingScriptsGet_node_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3480,11 +3540,11 @@ func idtablestakingScriptsGet_node_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xca, 0xa8, 0x4b, 0x66, 0x19, 0x7f, 0x23, 0x8c, 0x14, 0x37, 0x8f, 0xc6, 0xfb, 0x78, 0x7a, 0x4d, 0x97, 0xc, 0x94, 0xe7, 0x9b, 0x1e, 0xa, 0xa8, 0x8b, 0xcf, 0xbb, 0x18, 0x65, 0xc7, 0x5d, 0x9a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x15, 0xa2, 0xab, 0xa0, 0xe4, 0x1e, 0x5c, 0xf, 0xd8, 0x2c, 0x53, 0xe8, 0xa3, 0x53, 0x38, 0xd8, 0xa7, 0x8e, 0x66, 0x3a, 0x95, 0x72, 0xf5, 0x76, 0xe2, 0x78, 0xad, 0xc0, 0xa8, 0x45, 0xe2, 0xc4}} return a, nil } -var _idtablestakingScriptsGet_node_unstaking_requestCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\x02\x41\x10\x46\xfb\xfd\x15\x5f\x19\x1b\x4d\x11\x52\x08\x29\x0c\x7b\xc2\x42\xb0\xf0\xd6\x22\xe5\x1a\xe7\x74\xf1\x76\xe6\xb2\x3b\x4b\x84\x90\xff\x1e\x72\x9a\xab\xac\x06\xe6\xe3\x3d\x5e\x4c\x83\x64\xc5\xba\x97\x2f\x67\x7d\xd8\xf7\xd4\x6a\x38\x47\x3e\xa2\xcb\x92\xf0\x78\x71\xb6\xd9\x78\xe7\xdf\xfd\xea\xf5\xad\x59\x59\xbb\x6d\xda\xd6\x98\xc5\x02\xfe\x14\x0b\xca\x47\x8e\x83\x22\x93\xd6\xcc\x05\x7a\x22\x64\xfa\xac\x54\x94\x0e\xa8\x5c\x6e\xae\x90\xa4\xb2\xa2\x93\x8c\x00\x96\x03\x19\x33\xd4\x3d\xba\xca\x48\x21\xf2\xc3\xdf\xcb\xd9\x25\x5a\xcd\x91\x8f\xb3\x25\x76\xeb\x78\x79\x7e\xc2\xb7\x01\x80\x9e\x74\x84\x1c\x77\x82\x97\x3b\xad\xf3\xcd\x6d\x9d\x44\xd7\x3b\x1b\xf1\x6b\xdc\x64\x98\xab\x9c\x89\xcb\xf6\x3f\xd3\xcb\x6e\xec\x24\xf3\xf3\x1b\x00\x00\xff\xff\x79\x9d\x09\x48\x0d\x01\x00\x00" +var _idtablestakingScriptsGet_node_unstaking_requestCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\x4e\x02\x41\x10\x86\xfb\x7d\x8a\x3f\x54\x5c\x03\x8d\xb1\x20\xb1\x23\x24\xd7\x58\xc8\xf1\x00\xeb\x31\x0b\x1b\x76\x67\x70\x66\x36\x9a\x18\xdf\xdd\x78\xe0\x35\x5a\xfd\xc5\x97\xff\xcb\x97\xeb\x55\xd4\xb1\x2b\xf2\xde\x6f\x87\xf8\x5a\x68\xef\xf1\x92\xf9\x84\xa4\x52\xb1\xf8\x0b\x16\x21\xac\xd7\x18\xce\xd9\x60\xa3\xe6\xab\x43\xc9\x9b\xb2\xc1\xcf\x04\xa5\xb7\x46\xe6\x74\x44\x63\xbb\x9b\x62\x95\xc6\x8e\x24\x8a\x08\x96\x23\x85\x10\xc7\x91\xcc\x96\xb1\x94\x0e\xa9\x31\x6a\xcc\xbc\xfc\x41\xfd\x76\x83\xbd\x6b\xe6\x53\xb7\xc1\x61\x97\x3f\x1e\x1f\xf0\x19\x00\xa0\x90\x4f\xe7\x9e\x93\xe0\xe9\x9f\xe2\xd5\xf3\x9d\xce\xa2\xdb\x76\xd3\xfd\x16\x39\x1b\x56\x2e\x17\x62\x7b\xf9\xcd\x1d\xe4\x30\xf5\x52\xf8\xfa\x0e\x00\x00\xff\xff\x8e\x70\xaf\x46\x13\x01\x00\x00" func idtablestakingScriptsGet_node_unstaking_requestCdcBytes() ([]byte, error) { return bindataRead( @@ -3500,11 +3560,11 @@ func idtablestakingScriptsGet_node_unstaking_requestCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_unstaking_request.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x0, 0x9a, 0x2b, 0x37, 0x6, 0x8a, 0x4, 0xbb, 0xdd, 0x5f, 0xc4, 0xae, 0x23, 0x26, 0x8d, 0x28, 0xee, 0xe8, 0x4, 0xc1, 0xde, 0x14, 0x1f, 0x48, 0x86, 0x41, 0xef, 0xb4, 0xc3, 0x29, 0x4a, 0xcb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4a, 0x48, 0x65, 0x66, 0x2f, 0x86, 0x85, 0xb3, 0x19, 0xdb, 0x18, 0xda, 0x34, 0x83, 0xe5, 0x55, 0xa, 0xd6, 0x75, 0xc8, 0x5f, 0xba, 0xf2, 0xe, 0x69, 0xf6, 0x73, 0x47, 0xe0, 0x35, 0x6c, 0x84}} return a, nil } -var _idtablestakingScriptsGet_node_unstaking_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xbd\x6a\xc3\x30\x14\x46\x77\x3d\xc5\x37\x36\x4b\xd2\xa1\x74\x08\x74\x48\x91\x03\x82\x92\xa1\x52\x86\x8e\x72\x2a\x25\x22\xf2\x95\x91\xae\xa8\xa1\xf4\xdd\x8b\x7f\xea\xa9\xd3\x85\xef\x72\x0e\x27\x74\x7d\xca\x8c\x63\x4c\x5f\x4a\x1a\xdb\x46\xa7\xd9\xde\x03\x5d\xe1\x73\xea\xf0\x38\x28\xd9\x9c\x8c\x32\x1f\xe6\xf0\xfa\xd6\x1c\xa4\x7c\x6f\xb4\x16\x62\xb7\x83\xb9\x85\x82\x72\xc9\xa1\x67\x64\xc7\x35\x53\x01\xdf\x1c\x5a\x1b\x2d\x5d\x1c\x92\x47\xa5\xb2\xc8\x38\xdd\x1d\x95\x71\xb3\xa0\xf4\xe9\x84\xe8\x6b\x0b\x5f\x09\x9d\x0d\xf4\x30\x4e\x4a\xee\xa1\x39\x07\xba\x6e\xf6\x38\x1f\xc3\xf0\xfc\x84\x6f\x01\x00\xd1\xf1\x04\x29\xf2\x09\x2f\xff\xb4\x6e\x4f\xcb\x77\x15\xcd\x77\x33\xe1\x73\xdc\x6a\xd8\xce\x2d\xe7\xbf\x36\xf1\xf3\x1b\x00\x00\xff\xff\xc7\x92\x11\x03\x04\x01\x00\x00" +var _idtablestakingScriptsGet_node_unstaking_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x3d\x6a\xc3\x40\x10\x46\xfb\x3d\xc5\x87\x2b\xab\xb1\x9b\x90\xc2\x90\xce\x18\xd4\xa4\x91\x74\x80\xd1\x66\x56\x5a\xb4\x9a\x15\xbb\x23\x12\x08\xb9\x7b\xd0\x4f\xd4\xc4\xd5\xc0\x3c\xbe\xc7\xf3\xe3\x14\x93\xe2\x11\xe2\x67\x79\xaf\xa9\x0d\x5c\x29\x0d\x5e\x3a\xb8\x14\x47\x9c\xfe\x83\x93\x31\xd7\x2b\xea\xde\x67\x64\x9b\xfc\xa4\x48\xac\x73\x92\x0c\xed\x19\x2d\x05\x12\xcb\x88\x0e\xb3\xe4\x5d\xa5\x71\x60\xc9\xcb\x8f\x20\xf1\x83\x8d\x21\x6b\x39\xe7\x33\x85\x50\xc0\xcd\x82\x91\xbc\x9c\x17\x54\xde\x6f\xa8\x34\x79\xe9\x8a\x1b\x9a\x87\xff\x7a\x7d\xc1\xb7\x01\x80\xc0\xba\x8e\x4b\x71\x11\x6f\x4f\x8a\x2f\xef\x3b\x3d\x44\xdb\x2d\xd6\xf9\x16\x79\x18\x2e\x5b\x53\xf3\xd7\x68\x7e\x7e\x03\x00\x00\xff\xff\xfc\x55\x50\x18\x0a\x01\x00\x00" func idtablestakingScriptsGet_node_unstaking_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3520,11 +3580,11 @@ func idtablestakingScriptsGet_node_unstaking_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_unstaking_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbd, 0xf6, 0x22, 0xda, 0x4e, 0x2a, 0x9, 0x28, 0x40, 0x45, 0xb2, 0x8, 0x55, 0xc6, 0x13, 0x27, 0xf4, 0xcb, 0x53, 0x99, 0x5b, 0x2d, 0xab, 0x76, 0x7, 0x33, 0xe7, 0xa, 0x2, 0xb2, 0xd9, 0x6b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0xa2, 0x4e, 0x56, 0xb7, 0x3, 0xd3, 0x8, 0x1c, 0xf9, 0x4b, 0xa2, 0x84, 0xcc, 0xc7, 0xdd, 0x56, 0xbc, 0xd7, 0xae, 0x99, 0x6d, 0x53, 0x4e, 0xa9, 0xd4, 0x97, 0x14, 0x3f, 0xe3, 0xa, 0xfa}} return a, nil } -var _idtablestakingScriptsGet_non_operationalCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4a\xc5\x30\x14\x06\xe0\x3d\x4f\xf1\x8f\xf7\x0e\xde\x3a\xbb\x55\x52\xa1\x50\x2a\x98\x2c\x22\x0e\xa9\xa6\xed\xa1\xe9\x39\x21\x39\x45\x45\x7c\x77\x11\x04\x17\x5f\xe0\xe3\xa3\x3d\x4b\x51\xdc\x25\x79\xeb\xad\x0f\x53\x8a\x4e\xc3\x46\xbc\x60\x2e\xb2\xe3\xfa\xbd\xb7\xdd\xe8\x7b\xff\xe8\xdb\xdb\xa1\x6b\xad\x7d\xe8\x9c\x33\xa6\x69\xe0\x57\xaa\xa8\x2f\x85\xb2\xa2\x44\x3d\x0a\x57\xe8\x1a\x91\xa8\x2a\x64\x06\x0b\x5f\x49\x8e\x25\x28\x09\x87\x04\x96\xd7\x58\x8d\xc9\xc7\x84\xf9\x60\xec\x81\xf8\x74\xbe\xc1\x93\xd3\x42\xbc\x3c\xe3\xd3\x00\xf8\x95\xfe\xf9\x5c\x96\xa8\xa3\xf0\xfd\x9f\x38\xfe\x80\x03\x55\x3d\x9d\x2f\x5b\xfc\xa8\xe6\xeb\x3b\x00\x00\xff\xff\x40\xc7\xef\x0e\xcd\x00\x00\x00" +var _idtablestakingScriptsGet_non_operationalCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x6b\x83\x50\x10\xc7\xf1\xfd\xfd\x15\x3f\x9c\x74\xa8\xee\x9d\x4b\xa1\x50\xec\xa0\x5b\xe9\xf0\x6a\x4e\x3d\x7c\xde\xc9\xbb\x93\x10\x42\xfe\xf7\x10\x08\x64\x48\xe6\x2f\x7c\xf8\xf2\xba\x69\x76\x7c\x26\x3d\x7e\x7d\xf4\xf1\x3f\x51\xe7\x71\x61\x99\x30\x66\x5d\x51\x3c\x87\x22\x84\xa6\x41\x3f\xb3\xc1\x86\xcc\x9b\x23\x93\xef\x59\x0c\x3e\x13\x12\x9b\x43\x47\x88\xca\x9b\x6e\x94\xa3\xb3\x4a\x4c\x10\x3d\x90\x85\x10\x87\x81\xcc\xca\x98\x52\x85\x71\x17\xac\x91\xa5\xac\xde\xf1\xdb\x79\x66\x99\xfe\x70\x0e\x00\xee\xe2\x8b\xab\x7a\x22\x6f\x55\x7e\x1e\x72\x7b\x83\xbf\xd9\xbc\xac\xea\x85\x4e\x16\x2e\xd7\x00\x00\x00\xff\xff\x38\xdb\x00\xb4\xd3\x00\x00\x00" func idtablestakingScriptsGet_non_operationalCdcBytes() ([]byte, error) { return bindataRead( @@ -3540,11 +3600,11 @@ func idtablestakingScriptsGet_non_operationalCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_non_operational.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xeb, 0xa0, 0x38, 0xa8, 0x89, 0xab, 0xee, 0xef, 0xcf, 0x75, 0x60, 0xc1, 0x29, 0x70, 0xdb, 0xd0, 0x51, 0xc9, 0xee, 0x42, 0x0, 0x31, 0x2a, 0x42, 0x2c, 0x26, 0x32, 0xea, 0x1d, 0xbe, 0xd2, 0x80}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x40, 0x89, 0x18, 0xff, 0x98, 0x6e, 0xd7, 0x28, 0x71, 0xee, 0x6f, 0xa0, 0x59, 0x7e, 0xc5, 0x96, 0xcb, 0xef, 0xb4, 0x9f, 0x6b, 0xe6, 0x75, 0x21, 0xb, 0x6a, 0x90, 0xb5, 0xde, 0xa5, 0xfd, 0x61}} return a, nil } -var _idtablestakingScriptsGet_proposed_tableCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4a\x04\x31\x10\x06\xe0\x3e\x4f\xf1\x97\x77\x8d\x67\x6d\x77\x92\x15\x02\x72\x88\x49\x23\x62\xb1\x77\x3b\x9b\x1d\xdc\x9d\x84\xc9\x04\x15\xf1\xdd\x45\xb0\xbc\x17\xf8\xf8\x78\xab\x45\x0d\x0f\x6b\xf9\x08\x3e\x8d\xe7\x95\xa2\x8d\xef\x2c\x19\xb3\x96\x0d\xb7\x9f\xc1\x0f\xa7\x14\xd2\x4b\x3a\xde\x3f\x0e\x47\xef\x9f\x87\x18\x9d\x3b\x1c\x90\x16\x6e\x68\x17\xe5\x6a\x50\xb2\xae\xd2\x60\x0b\xe1\xd2\x55\x49\x0c\x3c\x91\x18\xdb\x17\xec\x4f\xc5\x4a\x92\x6d\x71\xae\xf6\x33\xe6\x2e\xd8\x46\x96\xdd\xfe\x0e\xaf\xd1\x94\x25\xbf\xe1\xdb\x01\xf8\x97\xae\x7c\x6e\x32\xd9\x93\x96\x5a\x1a\x4d\xa7\x32\x51\xf0\x6d\xb7\x77\x3f\xbf\x01\x00\x00\xff\xff\xd3\xe0\x18\x61\xc0\x00\x00\x00" +var _idtablestakingScriptsGet_proposed_tableCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x8b\xc2\x40\x10\x46\xfb\xfd\x15\x1f\xa9\x92\xe6\xd2\x5f\x1d\x0e\xd2\x1c\x42\xd2\x89\xc5\xba\x99\x6c\x06\x37\xb3\x61\x76\x82\x88\xf8\xdf\x45\xb0\xd3\xfa\xf1\x1e\x8f\xd7\x2d\xab\xe1\x2f\xe5\x6b\xdf\x8d\xfe\x9c\x68\x30\x7f\x61\x89\x98\x35\xaf\xa8\x3e\x41\xe5\x5c\xdb\x62\x5c\xb8\xa0\x04\xe5\xcd\xa0\x64\xbb\x4a\x81\x2d\x84\xb0\xab\x92\x18\x78\x22\x31\xb6\x1b\xec\xa5\x22\x91\x44\x5b\x9c\xf3\x21\x50\x29\xb5\x4f\xa9\xc1\xbc\x0b\x56\xcf\x52\x37\xbf\x38\x0e\xa6\x2c\xf1\x84\xbb\x03\xf0\x2e\x7e\xb9\xfa\x89\x64\x07\xcd\x5b\x2e\x34\xfd\xe7\x89\xfa\xae\xd4\x8d\x7b\x3c\x03\x00\x00\xff\xff\x09\xfb\xc4\x0b\xc6\x00\x00\x00" func idtablestakingScriptsGet_proposed_tableCdcBytes() ([]byte, error) { return bindataRead( @@ -3560,11 +3620,11 @@ func idtablestakingScriptsGet_proposed_tableCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_proposed_table.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0xca, 0x75, 0x49, 0x77, 0x1d, 0x0, 0x4c, 0x7b, 0x1a, 0xc3, 0x14, 0x3f, 0xd9, 0x9e, 0x45, 0xf1, 0x9a, 0xeb, 0x3e, 0x4e, 0x8a, 0x4, 0x5e, 0x94, 0x18, 0xcf, 0x6b, 0x8b, 0x24, 0xd6, 0x5e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb2, 0x53, 0xc3, 0x59, 0x7d, 0xbb, 0x1e, 0xfe, 0x8e, 0x70, 0x72, 0xc5, 0x58, 0x91, 0x67, 0xc1, 0xd3, 0x89, 0x22, 0x23, 0x5, 0xf9, 0x9c, 0xf4, 0x18, 0xbd, 0x64, 0x88, 0xef, 0x61, 0xa4, 0xcb}} return a, nil } -var _idtablestakingScriptsGet_role_countsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4a\x03\x41\x10\x87\xf1\x7e\x9f\xe2\x5f\x26\x8d\xd1\x46\x24\x5d\xcc\x9e\xb0\x20\x29\x72\x6b\x61\x79\x31\x73\xb9\xc5\xdd\x99\x63\x76\x16\x85\xe3\xde\x5d\x04\x4b\xab\xaf\xfb\xf8\xa5\x32\x8b\x1a\x5e\xb2\x7c\x05\x1f\x87\x4b\xa6\xde\x86\xcf\xc4\x37\x8c\x2a\x05\xf7\xdf\xc1\x77\xa7\x18\xe2\x7b\x3c\x3c\xbf\x76\x07\xef\xcf\x5d\xdf\x3b\xb7\xdb\x21\x4e\xa9\xa2\x7e\x68\x9a\x0d\x4a\xd6\x94\x2b\x6c\x22\xd4\x2c\x86\x9c\x4a\xb2\x8a\x51\x14\x2c\x57\x82\x4a\xa6\xea\xdc\xdc\x2e\x18\x1b\xa3\x0c\x89\x37\xdb\x3d\x96\xb7\xc0\xf6\xb4\xc7\x6f\x1e\x1e\x57\x2c\x0e\xc0\xdf\xed\x1f\xd3\xdd\x8d\xec\xd8\x54\x89\xed\x2c\x99\x4e\x72\xa5\xa3\x34\xb6\xba\xd9\xba\xf5\x27\x00\x00\xff\xff\xfe\x16\x53\xb9\xca\x00\x00\x00" +var _idtablestakingScriptsGet_role_countsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\xc4\x40\x10\x46\xfb\xfd\x15\x1f\x57\x25\x8d\x87\x8d\xc8\xb5\x27\xc2\x35\x16\x1a\x7f\xc0\x9a\x4c\x92\xc5\xd9\x99\x30\x33\x8b\x45\xc8\x7f\x17\xc1\x4e\xab\x57\x3c\x78\xbc\x52\x37\xb5\xc0\x33\xeb\xd7\xed\x69\xc8\x1f\x4c\x6f\x91\x3f\x8b\x2c\x98\x4d\x2b\x4e\x7f\xc5\x29\xa5\xf3\x19\xc3\x5a\x1c\x3e\x5a\xd9\x02\x46\xd1\x4c\x1c\xb1\x12\x9c\x35\xc0\xa5\x96\x70\xcc\x6a\x10\x9d\x08\xa6\x4c\x9e\x52\x1e\x47\x72\xef\x32\x73\x8f\xb9\x09\x6a\x2e\xd2\xf5\x17\xec\xef\x37\x89\xc7\x0b\x7e\x70\xff\x70\x60\x4f\x00\x7e\xab\xff\x9c\xdd\x2d\x14\xd7\x66\x46\x12\xaf\xca\xf4\xa2\x13\x5d\xb5\x49\x78\xd7\xa7\xe3\x3b\x00\x00\xff\xff\xe7\x1d\xde\xdf\xd0\x00\x00\x00" func idtablestakingScriptsGet_role_countsCdcBytes() ([]byte, error) { return bindataRead( @@ -3580,11 +3640,11 @@ func idtablestakingScriptsGet_role_countsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_role_counts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0x61, 0xf8, 0x74, 0xa8, 0xe7, 0x8c, 0x76, 0xe5, 0xed, 0x59, 0x4a, 0x68, 0x4a, 0x9f, 0xf9, 0xd9, 0xb6, 0x3f, 0xab, 0xc3, 0x63, 0xa1, 0x67, 0x38, 0x3d, 0x17, 0xee, 0x63, 0x82, 0x62, 0x40}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x52, 0xf9, 0xab, 0x6c, 0xc9, 0xbd, 0x96, 0x38, 0x13, 0xbc, 0x3b, 0x1, 0xb0, 0x5c, 0x4, 0xc8, 0xe4, 0x78, 0xca, 0x66, 0x28, 0x95, 0xe4, 0xb4, 0x54, 0x91, 0xa5, 0xa0, 0x3f, 0x44, 0xe9}} return a, nil } -var _idtablestakingScriptsGet_slot_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcf\x41\x4b\xf3\x40\x10\xc6\xf1\xfb\x7e\x8a\x87\x9e\x92\xcb\xdb\xd7\x8b\x88\x20\xa5\x9a\x08\x81\xe2\xa1\x89\x07\x11\x0f\x69\x32\xdb\x0e\x6e\x76\x96\xdd\x09\x0a\xe2\x77\x97\x6c\x11\x3d\xb8\x97\x85\x61\xf8\xf3\x1b\x9e\x82\x44\xc5\xbd\x93\xb7\xa6\xea\xfa\x83\xa3\x56\xfb\x57\xf6\x47\xd8\x28\x13\xfe\xbf\x37\x55\xfd\xd0\x35\xdd\x53\xb7\xbd\xdd\xd5\xdb\xaa\xda\xd7\x6d\x6b\xcc\x7a\x8d\xee\xc4\x09\x69\x88\x1c\x14\x91\x74\x8e\x3e\x41\x4f\x84\xe4\x44\xe1\x78\x62\x4d\xb0\x12\xe1\x65\x24\x44\x71\x94\x8c\x09\xf3\x01\x76\xf6\x98\x7a\xf6\xc5\x32\xbb\xc6\x63\xe3\xf5\xaa\x3c\xff\x17\x97\xf8\x30\x00\xe0\x48\x73\x67\xb7\x64\x70\xf3\x07\xef\xdf\x91\x74\x2f\x8e\xda\xef\xad\x54\x94\xcf\x4b\xf1\x25\x07\x96\xb7\xd9\x20\xf4\x9e\x87\x62\x75\x27\xb3\x1b\xe1\x45\x61\xd9\x8f\xbf\x84\x19\x98\xd1\x81\x06\xb6\x4c\x63\x96\xae\x4a\x93\x2b\xe7\xb3\x7e\x24\xe6\xf3\x2b\x00\x00\xff\xff\xd0\xf8\x5e\x99\x2f\x01\x00\x00" +var _idtablestakingScriptsGet_slot_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcf\x31\x4b\x34\x31\x10\xc6\xf1\x3e\x9f\xe2\x61\xab\xdd\xe6\x3d\xde\x46\x44\x90\x2b\x14\xe1\xc0\xca\x3b\x2b\xb1\x88\xd9\xc9\xdd\xe0\x6c\x66\xc9\xcc\x62\x21\x7e\x77\xd9\x1c\xa2\xa0\x69\x52\x3c\xe1\xcf\x2f\x3c\xcd\x5a\x1d\x77\xa2\x6f\xbb\xdb\x43\x7c\x11\xda\x7b\x7c\xe5\x72\x44\xae\x3a\xa1\xfb\x3d\x74\x21\x6c\x36\x38\x9c\xd8\x60\xa9\xf2\xec\xa8\xe4\x4b\x2d\x06\x3f\x11\x4c\xd4\x21\x3c\xb1\x1b\xb2\x56\x14\x1d\x09\x55\x85\x2c\x84\x98\x12\x99\xf5\x51\x64\x40\x5e\x0a\xa6\xc8\xa5\x5f\xb7\x2b\x3c\xee\x8a\x5f\x0e\xe7\xfb\xff\x05\xde\x03\x00\x08\x79\xeb\xdd\xaf\x39\x5c\xff\x81\xfc\x77\x24\x7f\x50\xa1\xfd\xd7\x2b\xeb\x87\xa7\xb5\xf8\xdc\x02\xeb\xd9\x6e\x31\xc7\xc2\xa9\xef\x6e\x74\x91\x11\x45\x1d\x99\xcb\xf8\x43\xda\xa0\x0d\x3f\x53\xe2\xcc\x34\x36\x71\x37\x84\x56\x39\x7f\xef\x5b\x12\x3e\x3e\x03\x00\x00\xff\xff\x3b\xd0\x7e\xcc\x35\x01\x00\x00" func idtablestakingScriptsGet_slot_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -3600,11 +3660,11 @@ func idtablestakingScriptsGet_slot_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_slot_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfa, 0x17, 0x95, 0x42, 0xcd, 0xcf, 0x54, 0x6, 0x58, 0xcd, 0x76, 0x5d, 0x53, 0x5e, 0x4d, 0xde, 0x46, 0xe7, 0x2e, 0xe6, 0x51, 0xbc, 0xe7, 0x66, 0x76, 0x1, 0xb2, 0xbf, 0x7d, 0xda, 0x1f, 0x21}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x48, 0xb5, 0xbb, 0x6d, 0xa6, 0x2a, 0xf, 0xfa, 0xb4, 0xc1, 0x4, 0x2, 0x12, 0x6f, 0x89, 0xa8, 0x7, 0x2f, 0x19, 0x27, 0x70, 0xe6, 0x9a, 0xc2, 0xc7, 0xa2, 0x4c, 0xd7, 0x65, 0xa4, 0x4e, 0xd0}} return a, nil } -var _idtablestakingScriptsGet_stake_requirementsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\x33\x41\x14\x45\xfb\xf9\x15\xf7\xeb\x92\xe6\x8b\x85\x88\x04\x2c\x22\xbb\x81\x05\xb5\xc8\x4e\x0a\x11\x8b\xd9\xe4\x6d\xf2\xd8\x99\x37\x9b\x99\x37\x18\x10\xff\xbb\x8c\xb6\xb6\x07\xee\xb9\x87\xc3\x1c\x93\x62\xeb\xe3\x47\xd7\x58\x37\x78\xea\xd5\x4d\x2c\x27\x8c\x29\x06\xdc\x5c\xbb\xa6\x7d\xb1\x9d\x7d\xb5\x9b\xc7\xa7\x76\xd3\x34\xbb\xb6\xef\x8d\x59\xad\x60\xcf\x9c\x91\x0f\x89\x67\x45\x22\x2d\x49\x32\xf4\x4c\x18\x9c\x77\x72\x20\xc4\x11\x59\xdd\x44\x47\x68\x9c\x48\x72\x05\x0e\x12\x8f\x64\xcc\x5c\x06\x8c\x45\x10\x1c\xcb\x22\x45\x4f\x6b\xec\x3b\xd1\xfb\xe5\x1a\xfb\x2d\x5f\xef\x6e\xf1\x69\x00\xc0\x53\x75\x5f\xf0\xf0\x47\xe0\xff\x13\xe9\x33\x0b\x87\x12\x2a\xa1\x1d\x5d\x0a\x27\x0a\x24\x9a\x17\x4b\xf3\xb3\xff\xed\xaa\x8a\xb7\xfa\xf2\xfe\xcf\x7c\x7d\x07\x00\x00\xff\xff\x94\x17\x67\xd0\xf1\x00\x00\x00" +var _idtablestakingScriptsGet_stake_requirementsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\x03\x41\x10\x46\xfb\xfd\x15\x9f\xa9\xee\x1a\xd3\x88\x48\xc0\x4e\x02\x29\x6c\x34\xa9\xc4\x62\xb2\x99\x4b\x86\xdb\x9d\x4d\x76\x66\x51\x10\xff\xbb\xac\x96\xa6\x7d\xc3\x7c\xef\x49\x3e\x97\xea\x58\xa7\xf2\xb1\x79\xda\xd2\x3e\xf1\xab\xd3\x2c\x7a\xc4\x54\x4b\xc6\xe2\xff\x61\x11\xc2\x72\x89\xed\x49\x0c\x16\xab\x9c\x1d\x95\xbd\x55\x35\xf8\x89\xb1\xa7\x44\x1a\x19\x65\x82\x39\xcd\x7c\x80\x97\x99\xd5\x3a\x20\x68\x39\x70\x08\x14\x23\x9b\x0d\x94\xd2\x88\xa9\x29\x32\x89\x0e\xb5\x24\x5e\x61\xb7\x51\x7f\x18\x57\xd8\xad\xe5\xf3\xfe\x0e\x5f\x01\x00\x12\x77\xc7\x05\x8f\x57\x32\x6f\x8f\xec\xcf\xa2\x92\x5b\xee\x84\x5f\xf8\xd2\xa4\x72\x66\x75\x1b\xc6\xf0\xfb\xff\xd7\xd7\x27\xde\xba\xe5\xfd\x26\x7c\xff\x04\x00\x00\xff\xff\x6c\xf5\xe4\x97\xf7\x00\x00\x00" func idtablestakingScriptsGet_stake_requirementsCdcBytes() ([]byte, error) { return bindataRead( @@ -3620,11 +3680,11 @@ func idtablestakingScriptsGet_stake_requirementsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_stake_requirements.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa2, 0x42, 0x8e, 0x32, 0x9e, 0x5d, 0x9, 0x77, 0x67, 0x63, 0xb3, 0x34, 0x22, 0x62, 0x79, 0x87, 0xaf, 0x67, 0x2c, 0x9b, 0xed, 0x6c, 0x82, 0xf7, 0x38, 0xaa, 0x16, 0x74, 0xcd, 0x2a, 0xf8, 0x5d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe7, 0x86, 0xdf, 0xf1, 0xc8, 0xc4, 0x94, 0xcc, 0x38, 0x85, 0xa2, 0x94, 0x17, 0x58, 0xe4, 0xe, 0xc7, 0x91, 0x1f, 0xd6, 0x72, 0xd0, 0x98, 0x61, 0x35, 0x17, 0x5, 0x79, 0x52, 0xf2, 0xcc, 0xf3}} return a, nil } -var _idtablestakingScriptsGet_tableCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xbf\x4a\x04\x31\x10\x07\xe0\x3e\x4f\xf1\x2b\xef\x1a\xcf\xda\xee\x24\x2b\x04\x64\x0b\x93\x46\xc4\x62\xff\xcc\x66\x07\x77\x27\xcb\x64\x82\x8a\xf8\xee\x22\x58\xfa\x02\x1f\x1f\xef\x47\x51\xc3\xc3\x56\xde\x83\x4f\xc3\xb8\x51\xb4\xe1\x8d\x25\x63\xd1\xb2\xe3\xf6\x23\xf8\xae\x4f\x21\x3d\xa7\xeb\xfd\x63\x77\xf5\xfe\xa9\x8b\xd1\xb9\xcb\x05\x69\xe5\x8a\x3a\x29\x1f\x06\x25\x6b\x2a\x15\xb6\x12\xa6\xa6\x4a\x62\xe0\x99\xc4\xd8\x3e\x61\xbf\x2a\x36\x92\x6c\xab\x73\x47\x1b\xb1\x34\xc1\x3e\xb0\x9c\xce\x77\x78\x89\xa6\x2c\xf9\x15\x5f\x0e\xc0\x9f\xf4\xcf\xe7\x26\x93\xf5\x65\xa6\xe0\xeb\xe9\xec\xbe\x7f\x02\x00\x00\xff\xff\x94\x0c\xfa\xd5\xb8\x00\x00\x00" +var _idtablestakingScriptsGet_tableCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xca\xc2\x40\x10\x06\xfb\x7b\x8a\x8f\x54\x49\xf3\xa7\xff\xeb\x20\xa4\xb1\x49\x3a\xb1\x38\x2f\x9b\xcb\xe2\x65\x2f\xec\x6d\x10\x11\xdf\x5d\x04\x3b\xad\x87\x19\x86\xd7\x2d\xab\xe1\x90\xf2\xad\xef\x46\x7f\x49\x34\x98\xbf\xb2\x44\xcc\x9a\x57\x54\xdf\xa0\x72\xae\x6d\x31\x2e\x5c\x50\x82\xf2\x66\x50\xb2\x5d\xa5\xc0\x16\x42\xd8\x55\x49\x0c\x3c\x91\x18\xdb\x1d\xf6\x56\x91\x48\xa2\x2d\xce\xf9\x10\xa8\x94\xda\xa7\xd4\x60\xde\x05\xab\x67\xa9\x9b\x7f\x9c\x06\x53\x96\x78\xc6\xc3\x01\xf8\x14\x7f\x5c\xfd\x45\xb2\x63\x9e\xa8\xef\x4a\xdd\xb8\xe7\x2b\x00\x00\xff\xff\x9f\x7f\xe9\x36\xbe\x00\x00\x00" func idtablestakingScriptsGet_tableCdcBytes() ([]byte, error) { return bindataRead( @@ -3640,11 +3700,11 @@ func idtablestakingScriptsGet_tableCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_table.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0xf8, 0x5a, 0xde, 0x69, 0xf4, 0xb2, 0x52, 0xda, 0x8c, 0xf5, 0xfd, 0xb, 0x8, 0x27, 0x24, 0xc0, 0x38, 0xc, 0x44, 0x35, 0xdf, 0xfc, 0x26, 0xe7, 0xe6, 0x2d, 0xd, 0x2d, 0x51, 0x84, 0x99}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x37, 0xc8, 0x81, 0x80, 0x7d, 0x40, 0xfd, 0xf, 0xc7, 0x71, 0xe, 0x59, 0x88, 0xdd, 0x66, 0x97, 0x72, 0x23, 0xc6, 0xf1, 0x52, 0xa2, 0x60, 0x27, 0xb8, 0x71, 0x9d, 0x2, 0xcf, 0x39, 0x24, 0x16}} return a, nil } -var _idtablestakingScriptsGet_total_stakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x6b\xfa\x30\x1c\xc5\xef\xfd\x2b\x9e\x37\xe5\x07\xea\xe1\xb7\x31\x06\x3d\x28\x55\x28\x0c\x0f\x6b\x3c\x8c\xb1\x43\xac\xdf\xba\xd0\x34\x91\xe4\x9b\x4d\x19\xfe\xef\xc3\xc4\x39\x0b\xeb\xa1\x21\xf0\xde\xe7\x7d\xa2\xba\xbd\x75\x8c\xa5\xb6\x9f\x65\x21\xe4\x46\x53\xc5\xb2\x55\x66\x87\xc6\xd9\x0e\xd3\x43\x59\x2c\x56\xa2\x14\x2f\x62\x36\x7f\x5a\xcc\x8a\xe2\x79\x51\x55\x59\xb6\x0f\x1b\x34\xc1\xa0\x93\xca\x0c\x47\x8f\x58\x2f\xd5\xe1\xfe\x3f\xbe\x32\x00\xd0\xc4\xf0\x2c\x5b\xda\x0a\xdb\x92\xf1\xc8\xff\xe0\x8f\x77\xc4\xc2\xb2\xd4\x29\x53\xc5\xfc\xfc\xb8\xb2\x5b\x12\xc7\x3d\x0d\x47\x59\x64\x4d\x26\xa8\xa5\xae\x83\x96\x4c\xe0\x77\x02\x9f\x3b\x30\xa1\xdb\x90\x83\x6d\xc0\x69\x22\xed\xc5\xca\x87\x74\x29\x95\x98\x57\xb9\x1c\xd3\xf1\x34\x26\x1a\xeb\x60\x2e\x43\x50\xa6\x27\x3b\x6e\xe9\xe8\x2f\x0f\xb9\x08\x14\x16\xc6\x32\x6a\x1b\x0c\x43\xd6\x35\x79\x1f\xeb\xfe\x1a\x52\xcd\x2f\x6f\x90\x63\x5d\x1a\x7e\x18\xde\x8d\x6e\x30\xe7\xef\x46\x0a\x79\xef\xf6\xaf\xa7\xf0\xfa\xc3\x7a\x1b\x5c\xfb\xa7\x2c\xfd\xe3\xe1\x88\x83\x33\xb7\x84\xec\xf4\x1d\x00\x00\xff\xff\x92\x54\xac\x93\xc9\x01\x00\x00" +var _idtablestakingScriptsGet_total_stakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x4f\xc3\x30\x14\x84\x77\xff\x8a\x6b\xa7\x44\x48\x6d\x07\x40\x08\x29\x0b\xaa\x2a\x75\x61\x69\x3a\x21\x06\x37\x7d\x29\x56\x1c\xbf\xca\x7e\x01\x2a\xd4\xff\x8e\x6a\x97\x90\x08\x3c\xd8\xb2\x7c\xf7\xdd\xf9\x99\xf6\xc8\x5e\xb0\xb2\xfc\xb1\x5e\x96\x7a\x67\x69\x23\xba\x31\xee\x80\xda\x73\x8b\xe9\xdf\x87\xa9\x52\xba\xaa\x28\x84\x4c\x5b\x9b\xa3\xee\x1c\x5a\x6d\x5c\x96\x3f\x62\xbb\x32\x9f\xf7\xb7\xf8\x52\x00\x60\x49\x10\x44\x37\xb4\x2f\xb9\x21\x17\x50\xfc\x93\x32\x3b\x90\x94\x2c\xda\x26\xcd\x26\xea\x9f\x4e\xcf\xbc\xa7\xf2\x74\xa4\x2c\x57\x91\x35\x9f\xa3\xd2\xb6\xea\xac\x16\x82\xbc\x11\xe4\xe2\x81\xeb\xda\x1d\x79\x70\x0d\x49\x11\x29\x2f\x5a\xde\xb5\x4f\xaa\xc4\xec\xcb\x15\x58\xcc\x16\x51\x51\xb3\x87\xbb\x06\xc1\xb8\x51\xd9\x59\x43\xa7\x70\xfd\xc8\xb5\xc0\x92\xe1\x58\x50\x71\xe7\x04\x69\x02\xd1\x1e\x7a\x91\xa9\x7f\x79\x93\x02\xdb\xb5\x93\x87\xec\x2e\x1f\x60\x2e\x6b\x50\x0a\xc5\xe8\x76\x33\xaa\xf0\xf2\xc3\x7a\x9d\xf4\xfe\xb3\x4a\x7b\x3c\x3c\x49\xe7\xdd\x90\xa0\xce\xdf\x01\x00\x00\xff\xff\x4d\x18\xa4\x68\xcf\x01\x00\x00" func idtablestakingScriptsGet_total_stakedCdcBytes() ([]byte, error) { return bindataRead( @@ -3660,11 +3720,11 @@ func idtablestakingScriptsGet_total_stakedCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_total_staked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0xe, 0x2f, 0xe3, 0x9c, 0xa, 0x4d, 0xce, 0x85, 0x12, 0x72, 0x14, 0x74, 0x65, 0x62, 0x3b, 0x74, 0x22, 0x25, 0xaf, 0x1a, 0x94, 0x4d, 0x5d, 0x4c, 0x74, 0xb6, 0x76, 0xd3, 0x6d, 0x7e, 0xf6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xee, 0x84, 0x69, 0x78, 0x9e, 0xaf, 0x71, 0x2a, 0xc4, 0x96, 0xa3, 0xa6, 0x92, 0x57, 0x3c, 0x53, 0xe3, 0x4, 0xe7, 0x79, 0x41, 0x9e, 0x30, 0xd3, 0xee, 0x4c, 0xf1, 0x6c, 0xee, 0x29, 0x62, 0x56}} return a, nil } -var _idtablestakingScriptsGet_total_staked_by_typeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xc1\x4a\xc3\x40\x14\x45\xf7\xf3\x15\xd7\x5d\xbb\xb1\x2e\x44\xa4\xe0\xa2\x25\x29\x04\xa4\x0b\x33\x5d\x88\xb8\x98\x34\x2f\xed\x90\xc9\x7b\xc3\xcc\x0b\xb6\x88\xff\x2e\x89\xba\x73\x7b\xb9\x9c\x73\xfc\x10\x25\x29\x76\x41\x3e\xaa\xc2\xba\x26\x50\xad\xae\xf7\x7c\x42\x97\x64\xc0\xdd\xa5\x2a\xca\xbd\xad\xec\xab\xdd\x6c\x9f\xcb\x4d\x51\xbc\x94\x75\x6d\xcc\x6a\x05\x7b\xf6\x19\xf9\x98\x7c\x54\x24\xd2\x31\x71\x86\x9e\x09\x8d\x0b\x8e\x8f\x04\xe9\x90\xd5\xf5\xd4\x42\xa5\x27\xce\xd3\xe0\xc0\xd2\x92\x31\x71\x6c\xd0\x8d\x8c\xc1\x79\x5e\x24\x09\xb4\xc6\xa1\x62\x7d\x5c\xae\x71\xd8\xf9\xcb\xc3\x3d\x3e\x0d\x00\x04\xd2\x3f\xc8\xd3\x3f\x8d\xb7\x27\x52\x2b\xea\x82\x9d\x0d\xf5\xfc\xdc\x5e\xf7\xd2\x92\xbd\x46\x5a\x2c\xcd\x4c\xf9\xa9\xfb\x05\xbd\x4d\xba\xf7\x1b\xf3\xf5\x1d\x00\x00\xff\xff\xa3\x91\xa6\x55\xfa\x00\x00\x00" +var _idtablestakingScriptsGet_total_staked_by_typeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\x03\x41\x10\x46\xfb\xfd\x15\x9f\xa9\xee\x1a\xd3\x88\x48\xc0\x46\x24\x90\xc6\x26\x9b\x4a\x2c\x26\x7b\x73\xc9\x72\x73\x33\xc7\xee\x04\x0d\xe2\x7f\x97\x9c\x5a\x99\x76\xe6\xe3\xbd\x97\xc7\xc9\x8a\x63\x2d\xf6\xbe\x79\x8e\xb4\x17\xde\x3a\x0d\x59\x0f\xe8\x8b\x8d\x58\xfc\x7f\x2c\x42\x58\x2e\x11\x8f\xb9\xa2\xa6\x92\x27\x47\x61\x3f\x15\xad\xf0\x23\x63\x4f\x42\x9a\x18\xd6\xa3\x3a\x0d\xdc\xc1\x6d\x60\xad\x97\x03\x41\xad\xe3\x10\x28\x25\xae\xb5\x21\x91\x16\xfd\x49\x31\x52\xd6\xa6\x98\xf0\x0a\xbb\x8d\xfa\x43\xbb\xc2\x6e\x9d\x3f\xee\xef\xf0\x19\x00\x40\xd8\xff\x60\x8f\x57\x4a\x6f\x0f\xec\xd1\x9c\x24\xce\xa6\xed\xbc\x7c\x3a\xbf\x58\xc7\xf1\x3c\x71\xd3\x86\x99\xf2\x53\xf9\x0b\x7a\xbd\xe8\xde\x6e\xc2\xd7\x77\x00\x00\x00\xff\xff\x86\x18\xde\x12\x00\x01\x00\x00" func idtablestakingScriptsGet_total_staked_by_typeCdcBytes() ([]byte, error) { return bindataRead( @@ -3680,11 +3740,11 @@ func idtablestakingScriptsGet_total_staked_by_typeCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_total_staked_by_type.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0x23, 0xae, 0xad, 0x6a, 0x8a, 0xa, 0x6e, 0x26, 0x92, 0x41, 0x25, 0x43, 0x64, 0x93, 0x17, 0xde, 0xa4, 0x31, 0x94, 0x9d, 0xb7, 0xb2, 0x15, 0xcb, 0xe1, 0xf8, 0x7b, 0x9a, 0x28, 0xf6, 0xa4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xa5, 0x8b, 0x42, 0xe8, 0x8b, 0x45, 0x62, 0x3c, 0x6, 0x1b, 0x16, 0xa7, 0xc3, 0xfc, 0xf9, 0x75, 0xc8, 0x3b, 0xbe, 0x43, 0x97, 0xee, 0x83, 0xd6, 0x7f, 0xa5, 0x89, 0x4d, 0x3c, 0xdb, 0xe6}} return a, nil } -var _idtablestakingScriptsGet_weekly_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4b\xc4\x30\x14\xc7\xf1\x3d\x7f\xc5\x6f\xbc\x5b\x3c\x07\x71\x70\x3b\x49\x0e\x0a\x22\x62\xe3\xe0\xf8\xda\x7b\x6d\x43\xdb\xbc\x90\xbc\x60\x45\xfc\xdf\xa5\xe0\x78\xeb\x77\xf8\xf0\x0d\x6b\x92\xac\xb8\x2c\xf2\xd5\x58\x4f\xdd\xc2\xad\xd2\x1c\xe2\x88\x21\xcb\x8a\xfb\xad\xb1\xee\xd5\x37\xfe\xd3\x9f\x9f\x5f\xdc\xd9\xda\x77\xd7\xb6\xc6\x9c\x4e\xf0\x53\x28\x28\x7d\x0e\x49\x91\x59\x6b\x8e\x05\x3a\x31\x3a\x5a\x28\xf6\x0c\x19\x50\x94\x66\xbe\x42\x65\xe6\x58\xf6\x40\x88\x72\x65\x63\x52\xed\x30\xd4\x88\x95\x42\x3c\x1c\x9f\xf0\x71\x09\xdb\xe3\x03\x7e\x0c\x80\x7f\xec\xc6\xd2\xdd\xc8\xea\x92\xf4\x93\xdf\xc1\x37\xfa\x96\xaa\x87\xa3\xf9\xfd\x0b\x00\x00\xff\xff\xaa\x9e\x1d\x2b\xc4\x00\x00\x00" +var _idtablestakingScriptsGet_weekly_payoutCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x8a\x83\x40\x10\xc6\xf1\x7e\x9f\xe2\xc3\x4a\x9b\xb3\x39\xae\xb8\xfa\x4e\x48\x17\x88\x79\x80\x71\x1d\x75\x71\xdd\x91\x9d\x91\x24\x84\xbc\x7b\x10\xd2\x25\xed\xf7\xc1\x8f\x7f\x58\x56\xc9\x86\x26\xca\xe5\xf0\xd7\x52\x17\xf9\x64\x34\x87\x34\x62\xc8\xb2\xa0\x78\x3f\x0a\xe7\xea\x1a\xed\x14\x14\xea\x73\x58\x0d\x99\x6d\xcb\x49\x61\x13\xa3\xa3\x48\xc9\x33\x64\x80\x1a\xcd\xdc\xc3\x64\xe6\xa4\xfb\x40\x48\xd2\xb3\x73\xe4\x3d\xab\x96\x14\x63\x85\x61\x4b\x58\x28\xa4\xb2\xfa\xc5\xb9\x09\xd7\x9f\x6f\xdc\x1d\x80\x17\xfa\x21\xec\x6b\x64\xfb\x5f\xc5\x4f\xed\x0e\x1f\xe9\x26\x9b\x95\x95\x7b\x3c\x03\x00\x00\xff\xff\x18\x12\xd8\x60\xca\x00\x00\x00" func idtablestakingScriptsGet_weekly_payoutCdcBytes() ([]byte, error) { return bindataRead( @@ -3700,31 +3760,11 @@ func idtablestakingScriptsGet_weekly_payoutCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_weekly_payout.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9b, 0xeb, 0x9b, 0x20, 0x40, 0xd3, 0x5b, 0x8, 0x6d, 0xe7, 0x22, 0xb, 0xdd, 0x87, 0xa4, 0x41, 0xf2, 0xb5, 0xc2, 0x43, 0x2d, 0x8f, 0x9a, 0x65, 0xf4, 0x31, 0xfa, 0xd2, 0x6f, 0xda, 0x4f, 0x9d}} - return a, nil -} - -var _inspect_fieldCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xc1\x09\x42\x31\x0c\x06\xe0\x7b\xa7\xf8\x8f\x7a\x91\x22\x5a\x1f\xde\xbc\x74\x01\x71\x80\xbe\x9a\x42\xc0\x26\x8f\x98\xea\x03\x71\x77\x17\x70\x81\x8f\xfb\xa2\xe6\xc8\x0f\x7d\x5f\xc9\x5e\x5c\xe9\x52\xab\x0e\x71\x34\xd3\x8e\xb8\xb6\xe9\x9e\x28\x1e\xa7\x34\xc7\xb2\x8f\xf5\x14\xc2\x32\x66\xb4\x21\xe8\x85\x65\xb3\x3d\xe3\x96\x79\x4d\x07\x7c\x02\x00\x18\xf9\x30\xf9\xe3\xed\xdc\x8a\x3c\x4b\x75\x56\xc9\x44\xe1\xfb\x0b\x00\x00\xff\xff\x7c\xe1\x51\x3b\x7a\x00\x00\x00" - -func inspect_fieldCdcBytes() ([]byte, error) { - return bindataRead( - _inspect_fieldCdc, - "inspect_field.cdc", - ) -} - -func inspect_fieldCdc() (*asset, error) { - bytes, err := inspect_fieldCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "inspect_field.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x74, 0xeb, 0x82, 0x68, 0x87, 0xc8, 0xaf, 0x97, 0x60, 0xf6, 0x63, 0x18, 0x23, 0x85, 0x7b, 0xb6, 0xf6, 0xbb, 0x8c, 0x4d, 0x40, 0x9c, 0x25, 0xc, 0xc5, 0x56, 0xa, 0xdf, 0x63, 0xa8, 0x28, 0xea}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0x33, 0xf7, 0xf1, 0xb5, 0x1, 0x7e, 0x39, 0x3f, 0xe8, 0x81, 0x91, 0x4, 0x3e, 0x4c, 0x38, 0xba, 0x10, 0x42, 0xdd, 0xcc, 0x18, 0xf7, 0xcf, 0xa, 0xd1, 0x9e, 0x85, 0x1d, 0xc7, 0xe2, 0x81}} return a, nil } -var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x57\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\xf6\x50\xc8\x80\x63\x79\x8f\x15\x92\x2e\x5c\xc7\x69\x17\x71\x37\x41\x92\x6d\xce\x8c\x34\xb6\x08\xcb\xa4\x4a\x52\x76\x8d\x20\xff\xbd\xa0\xa8\x17\x25\xca\x8f\xa2\xc5\xfa\x64\x49\xdf\xbc\xbe\x79\x70\x48\xb7\x19\x17\x0a\xe6\xe2\x90\x29\xee\x95\x4f\x77\x29\xdf\xbf\xf0\x0d\x32\x58\x09\xbe\x85\xe9\xdf\x77\xcb\x87\xd7\x97\x87\xfb\xc5\xb7\xd9\xed\xed\xd3\xe2\xf9\xb9\x06\xe6\x6c\x4d\xdf\x52\xb4\xc1\xdf\xbf\xfd\xf6\xf5\xd7\xe5\xc2\x25\xb0\xe4\xd1\x06\xe3\x02\x2e\x2b\xfc\xf2\x61\x7e\xbf\xb8\xb5\xd0\x5e\x10\x04\xf0\x22\x08\x93\x24\x52\x94\x33\x50\x09\x51\xa0\x12\x84\x2d\xa1\x0c\x54\x61\x8e\xc4\x5b\xca\x60\xcf\xf3\x34\x06\x49\xd7\xac\x10\x52\x1c\x22\x81\x44\x21\x10\x90\x09\x11\x18\x03\x89\x22\x9e\x33\x05\x84\xc5\x40\x18\xe4\x2c\x2d\x9c\x28\xe0\xc4\x7c\x5a\x71\x01\x04\x72\x89\xc2\xf3\x54\x63\xd6\xf7\x00\x00\x32\x22\x14\x25\xe9\x4c\x9b\x7b\xcc\xdf\x52\x1a\xdd\xe3\x21\x2c\x29\x9b\xdc\xe3\x61\x49\xa5\x5a\x30\x25\x0e\x63\x08\x02\x78\x45\xba\x4e\x54\x08\x9f\xa7\xd3\xb6\xf8\x77\x89\xe2\x02\xe9\x9f\x4b\xe9\x55\x9e\x5e\x2a\xfa\x79\x3a\x9d\x7a\x23\x80\x77\xcf\xd8\x17\x98\x11\x81\x7e\x41\x57\x08\xb3\x5c\x25\x33\xc3\xc8\xa8\x82\xe8\x5f\x10\xc0\xdc\x10\xa7\x69\x66\xb8\xaf\x78\x93\x86\xb8\x38\xd6\x1f\xa8\x80\x0d\x1e\x64\x2d\x95\xa2\x2a\x69\x2e\x75\xc2\x4d\xdb\x82\x9f\x91\x03\x8a\xd0\xa4\x6a\x64\x49\x69\xb2\xcf\x91\xa9\x85\x2c\x33\x13\xed\xc5\x84\xc4\xb1\x9f\x35\xc4\x38\x13\x35\xa9\x01\x63\x48\x88\x4c\x66\xe9\x9a\x0b\xaa\x92\xed\x10\xde\x02\x8d\x61\x5f\xb2\xea\x06\x9b\xaf\xa3\xcb\x9d\xb4\x72\x7a\xda\x47\x1b\x7e\xdc\x45\x1b\x5b\x79\x58\xbb\xd8\x22\xde\xe9\x60\xaf\xe2\x8e\x78\xd7\xc7\x0e\xb8\xd6\x07\xf6\xfc\x6a\x0a\x90\x40\x26\xe8\x4e\xff\x4b\x29\xdb\xe8\x96\xd6\x25\x29\x15\xd7\xdd\xbc\x23\x79\xaa\xac\x4a\x2a\xde\xcc\x49\x46\xde\x68\x4a\xd5\x01\x6e\xec\x2c\xd4\x58\xfd\x9b\x68\x8d\xd7\x3f\xd5\x03\x6e\xf2\xa7\x16\xfe\xc5\xb7\x40\x85\x37\xa5\x0b\xc1\xaa\x82\x16\xc8\x71\x0f\xa8\x88\x58\xa3\x0a\x21\xd0\xfe\x91\x75\x57\xc0\xc2\x8f\xac\xa7\x2f\x5f\x20\x23\x8c\x46\xfe\xa7\x79\x31\xc3\x18\x57\x26\x60\xed\x1d\x98\x91\x5a\xe8\x80\xa8\x0e\xee\x93\x4d\x58\x3d\xea\xcc\x48\x2b\x07\xe3\x96\x30\xb2\x46\x51\xf4\x6d\xc9\x1a\x55\xa0\xe7\xa6\xa6\xd1\x1a\x8a\x16\x91\x69\x33\x9c\xff\x28\x55\x5c\x5f\x59\x23\x7b\x62\x0c\x2e\x7b\x40\xbf\x48\x42\xd8\xcd\xc5\x50\x63\x48\xb2\x43\xff\xfa\xaa\x6f\x70\x0c\x8a\x87\xb6\xc9\xbe\xb1\x67\xc3\xf4\x23\x51\x49\x8b\x0e\x1d\x81\x6a\xa1\x2e\xab\x88\x13\x26\x1d\x15\x72\x42\xe2\xd1\xd4\x8f\x76\x72\xb8\x68\xce\x0f\xb4\x56\x31\x3a\x56\x39\x76\xfe\xdd\x65\x53\xf3\xf4\x3b\x4f\xe3\xc1\x14\xbf\x34\x08\x3b\x74\x93\xb3\x59\x1c\x0b\x94\x32\xec\xe4\x95\x98\xd7\x76\xc0\xed\xa4\x84\x03\x29\x6a\xc2\x73\x0f\xaa\xa2\x60\x2c\xad\xd7\x57\xad\x20\xba\x06\x3b\xcc\xb6\x82\x69\x51\x3a\x3e\x65\xd4\x51\x19\x2d\x4d\xef\x8e\xe4\x95\x92\x5f\xd9\x8a\x7f\x74\x4a\xe6\x38\xda\xcc\xc5\x7e\xb1\x38\x0b\xc5\x1d\x8e\x2b\x9a\x3a\xd7\xc5\xb1\xf5\xa3\x3a\xc2\x9c\x99\xff\x53\x3f\xc0\xf9\x73\xb5\xbd\x36\xea\x43\xa5\xdd\x2c\xce\x0e\x31\xac\xf1\x34\x45\xb3\x85\xde\x18\x61\x9b\xad\x37\x2e\x04\xdf\xbb\xea\xa4\x23\xee\x60\x4c\x6f\xc0\xc3\x51\x77\xe4\xff\x7d\xf4\xc6\x45\x10\xb8\x42\x81\x2c\x42\x1d\xbd\xa1\x21\xaa\xb5\xb7\x09\x70\x05\xaf\x7b\xbb\xda\xd0\x2c\x83\x56\x21\x5d\x32\x17\xaa\x45\xbc\x2b\xda\x6e\xc1\xe1\x81\x32\x33\xeb\xac\xab\xba\x5d\x9d\x10\x04\xf0\xb0\x43\x21\x68\x6c\x16\xdc\x18\x57\xc5\xd1\xda\x5c\x75\x04\x46\x48\x77\x28\x06\x8e\xac\x9c\xe9\x1a\xf2\x03\xb3\x0c\x35\xa7\xfc\x53\x29\xe6\x3c\x98\xf5\x1a\x5d\xe9\x35\x77\x98\x2d\x11\x1b\x59\xbd\x2b\x0f\x6c\x09\x44\x36\xd7\x12\xb7\x79\xd3\x93\x33\x76\x78\x42\xc9\x73\x11\xe1\xbb\x75\xf7\x9a\x54\x6e\x74\xc7\xce\xa0\xbf\x67\xcc\x99\x33\x0f\x24\x2b\xf0\x2c\x57\xc0\xb8\xd8\x92\xb4\x09\x9c\x32\x7d\x19\xd3\xb7\x10\xcd\x49\xce\xe8\x5f\x39\x42\xd6\xd6\xf1\xdf\xc6\x6a\x88\xbc\x3b\x2f\xe2\x53\x7b\x9b\xe9\xae\x0f\xef\xc3\xfb\x27\x00\x00\xff\xff\xee\x39\xfd\xd7\x2b\x0f\x00\x00" +var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xde\x63\x8d\x24\x0b\xd7\xe8\xa2\xc5\xa6\xe8\xa2\x4d\x77\xcf\x13\x69\x6c\x11\xa6\x48\x95\xa4\x6c\x18\x8b\xbc\x7b\x41\x51\x7f\x94\x25\x3b\x6e\x57\x87\xc0\xa2\xe6\xf7\x9b\x99\x8f\x13\x96\x17\x52\x19\xd8\xa8\x53\x61\x64\x50\xbf\x7d\xe2\xf2\xf8\x22\xf7\x24\x60\xab\x64\x0e\xb3\xf6\x7d\xd6\x4a\x94\x62\xc7\x5e\x39\x79\x52\xfd\xb3\x56\xf2\x59\x26\x7b\x4a\xab\x33\x5d\x0b\xf6\x8f\x66\x41\x10\xc7\x31\xbc\x28\x14\x1a\x13\xc3\xa4\x00\x93\xa1\x01\x93\x11\xe4\xc8\x04\x98\xca\x03\xa6\x39\x13\x70\x94\x25\x4f\x41\xb3\x9d\xa8\x94\x8c\x84\x44\x11\x1a\x02\x04\x9d\xa1\xa2\x14\x30\x49\x64\x29\x0c\xa0\x48\x01\x05\x94\x82\x57\xbe\x2a\x71\x74\x9f\xb6\x52\x01\x42\xa9\x49\x05\x81\xe9\xdc\x86\x01\x00\x40\x81\xca\x30\xe4\x6b\xeb\xee\x4b\xf9\xca\x59\xf2\x99\x4e\xab\x1a\x9e\xe8\x33\x9d\x9e\x99\x36\xbf\x08\xa3\x4e\x0b\x88\x63\xf8\x46\x6c\x97\x99\x15\x7c\x58\x2e\xfb\xea\x7f\x6b\x52\x37\x68\xff\x54\x6b\x6f\x4b\x7e\xab\xea\x87\xe5\x72\x19\xcc\x01\xbe\x07\xce\xbf\xa2\x02\x15\x85\x15\x5c\x2b\xc0\xd2\x64\xe1\xcf\x52\x29\x79\xfc\x8a\xbc\xa4\x39\xdc\xad\x1d\x40\xf3\x46\xc3\x3e\x71\x0c\x1b\x87\xa3\x45\x5d\xd0\xb1\x81\x51\x3b\x1c\xd3\xd4\x7e\x60\x0a\xf6\x74\xd2\xad\x16\x27\x53\xa3\x5e\xdb\x84\x47\xa8\x7f\x85\x05\x9e\x48\xad\x5c\xd5\xe6\x9e\x86\xc5\xfd\x9a\x7c\xab\xe0\x99\x8f\xac\xf7\x08\xd3\x34\x2c\x3a\x7c\x46\xeb\x15\xb5\x02\x0b\xc8\x50\x67\x6b\xbe\x93\x8a\x99\x2c\x9f\x92\xf7\x84\x16\x70\xac\xc1\x1d\x17\x76\x5f\xe7\xb7\x07\xe9\x95\xf6\x7a\x8c\xbe\xf8\xe5\x10\x7d\xd9\x26\xc2\x36\xc4\x1e\xe8\xa3\x01\x9e\x35\xde\x85\xe8\xce\x65\x27\x42\x3b\x17\x3c\x8b\xab\x6b\x3c\x84\x42\xb1\x83\xfd\xc5\x99\xd8\xdb\xc9\xb6\xad\xa8\x8d\xb4\x43\x7d\xc0\x92\x1b\xaf\x8b\xaa\x93\x0d\x16\xf8\xca\x38\x33\x27\x78\x1c\x54\x21\x69\x3e\x31\xd2\x91\xb5\x82\x3b\x8a\x98\xd6\x25\xb5\x66\xec\xf3\x50\x0d\x88\xc7\x5b\xd1\x37\x66\xb2\x54\xe1\x71\x0e\x77\x2d\xed\x45\x5f\xad\xbf\x27\x4f\x37\x8c\x6b\xbb\xf1\xb6\x11\xab\xa4\xfc\xf4\x5a\x7e\x72\x3c\x54\xb3\x59\x8e\x02\x77\xa4\xaa\xe9\xaa\x73\x64\x06\x2c\xd9\xd9\xa4\x3d\x26\xf3\xd2\xe6\x1d\x71\xfe\x5e\x9b\x78\xb8\xf7\x18\x36\x72\x0e\x9f\xcf\x04\xc3\x0a\xb2\xd5\x10\xb9\xa9\x36\x6e\x30\xd3\x78\xa0\xf0\xe1\xfe\xdc\xf1\x02\x8c\x5c\xf9\xae\xcf\x9d\xfe\xe5\xac\x7c\x41\x93\xf5\x60\xb1\x99\x98\x9e\xd4\x74\x1d\x3d\xc0\x2f\x14\xf5\x4a\x1d\xaf\x44\xf9\x14\x7a\x7e\xec\xf3\xff\xf2\xfa\x55\xf2\x74\xb2\x34\x2f\x9d\x84\xef\xd7\x61\xbc\x4e\x53\x45\x5a\xaf\x06\xf5\x40\x77\xbc\xf0\x34\xfa\x20\xae\x26\x20\x6d\x15\x26\xe8\xc0\x2b\xb4\x3f\x1c\xf7\xbd\x64\x86\x8e\x07\xa5\xef\x25\xd5\xc3\x66\xcc\xb7\x05\x89\x89\xad\xdc\x60\x01\x8f\x5e\x24\x17\xca\x7b\x37\xe5\x6c\x50\xba\xdb\x62\x1a\x83\xc3\x0b\xa2\x22\x41\x9d\x85\x75\xbc\x0b\x40\x33\xda\xf2\xb5\xf2\x6f\x62\x2b\x1d\xd9\x4d\x35\x46\x75\x93\x6c\x24\xe7\xe4\x36\x9d\x47\x77\xe3\x35\xd9\xfa\xed\xfe\x5a\xdd\xdb\x63\xb9\x0f\xcc\x8c\xf4\xaf\xdd\xb3\xa6\xa7\x73\xa0\x3f\x86\x8e\x8f\x90\x7d\x3e\x7e\x84\x02\x05\x4b\xc2\xd9\xa6\xda\xc2\x84\x34\xe0\x42\x04\x45\x5b\x52\x24\x12\xb2\xbc\xed\x36\xb5\xa4\xb5\x3e\xeb\x01\x31\x06\x82\x6d\xed\x66\x0d\xf0\x1c\x7a\x03\x70\xcb\x58\x34\x4b\xdf\x50\xb5\x5f\xe7\xe9\x79\x5a\xbb\xd5\xe9\xfd\xd3\x14\xc7\xf0\xc7\x81\x94\x62\xa9\xdb\x9f\x52\xda\x5a\x8e\xed\x2d\xd1\x8a\x12\x62\x07\x52\x13\x5c\xeb\xf5\x5c\x29\x9a\xae\x8b\xdd\x1d\xdc\x5d\x2f\x7f\xd6\x66\x46\x6f\x18\xbb\xb5\x35\x7e\xdc\x06\x9d\xa3\xda\xeb\xe6\xac\xbe\x79\x34\xa0\xee\x96\xe2\x7e\x7f\xf6\x18\x5e\x77\x69\xdf\x70\xb1\x3e\xdc\x7d\xf7\x09\xb8\x09\xf7\xed\x29\xbc\x85\x4e\xdf\x81\x51\x83\xd0\x08\x7d\x0e\x13\xf0\x0b\x6c\xe7\x77\x12\xd6\x89\xda\x16\xa5\x01\x21\x55\x8e\xbc\xc3\x97\x09\xfb\x1f\x87\x5d\xb5\x2d\xf4\xa5\x60\xff\x94\x04\x45\x7f\x7e\xda\x91\x6f\xac\xff\x38\x30\x27\xf7\x8e\xff\x8a\xdc\x30\xce\x69\xcc\x1c\xc6\x9f\x2e\x20\x67\xff\xbe\x05\x6f\xc1\xbf\x01\x00\x00\xff\xff\xaf\xee\x68\xd2\x57\x0e\x00\x00" func lockedtokensAdminAdmin_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3740,11 +3780,11 @@ func lockedtokensAdminAdmin_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x60, 0x18, 0xb5, 0x3a, 0x77, 0x18, 0x85, 0x6e, 0x97, 0xa3, 0x8f, 0xcd, 0xf8, 0x4e, 0x1a, 0x1, 0xe, 0x28, 0x32, 0x4, 0x29, 0x8e, 0x94, 0x96, 0x66, 0xa6, 0x68, 0xd, 0xb0, 0xd8, 0x9c, 0x99}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8, 0x7d, 0x60, 0xa4, 0xb3, 0xc9, 0x1d, 0x40, 0x3b, 0xe2, 0xeb, 0x74, 0xb5, 0x11, 0x4b, 0x52, 0xa3, 0x6d, 0xd6, 0xa3, 0x70, 0x4d, 0xea, 0x5, 0xab, 0xb5, 0x40, 0x3f, 0x87, 0x25, 0xb2, 0xb8}} return a, nil } -var _lockedtokensAdminAdmin_deploy_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x4f\xc1\x4a\xc5\x30\x10\xbc\xf7\x2b\xf6\xd8\x42\xe9\x07\x14\x3c\x14\x11\x84\x27\x5e\xf4\x26\x1e\x62\xb2\x36\xa1\x6d\x36\x6c\xb6\x68\x90\xf7\xef\xd2\x86\xf6\x45\xcc\x61\x92\xcd\xce\xce\xce\xb8\x25\x10\x0b\xdc\x73\x0a\x42\x55\x25\xac\x7c\x54\x5a\x1c\xf9\x5a\x93\x17\x56\x5a\x9e\xd5\x82\x3d\xbc\x08\x3b\x3f\xb6\xa0\xc9\x14\x55\x58\x3f\x66\xa7\x2f\x98\x62\x0f\x6f\x59\xa4\xbb\x60\x7a\x72\x51\x1e\xbc\x70\x7a\x6f\xe0\xa7\x02\x00\xd8\x21\x30\x06\xc5\x58\x2b\xb3\x38\xdf\xc3\xb0\x8a\x1d\xb4\xa6\xd5\xcb\x41\xdb\xce\x8c\x02\x33\xe9\x09\xcd\x2b\x4d\xe8\x23\xdc\x95\xcc\x3a\xa8\x84\xdc\xc3\xae\xd1\xdc\x86\x8a\x81\xee\x70\x1e\x3b\x65\x4c\xed\x77\xff\x65\x9a\x23\xc5\x86\x9d\xc1\xed\x7a\xc4\xef\xba\x69\x0f\xd5\x53\xf6\x93\x18\x26\x4c\xe0\x7c\x11\xb5\xf0\xfa\x6f\xf5\x84\x29\x6f\x3d\xe9\xfd\x26\xd0\x9d\x65\x0b\x56\x45\x3b\xcc\x23\xb1\x13\xbb\xe4\xee\x9f\xaf\x16\xbe\xd0\x8d\x56\x72\x2b\xbf\x6f\x41\xaf\x55\xc6\x6b\xf5\x1b\x00\x00\xff\xff\xdf\x5c\xcb\x79\xbb\x01\x00\x00" +var _lockedtokensAdminAdmin_deploy_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xc1\x4a\xc4\x30\x10\x86\xef\x7d\x8a\x39\x49\x0b\xa5\x0f\x50\xf0\xb0\x8a\x20\xac\x78\x59\xf1\x22\x1e\xc6\x64\x6c\x43\xdb\x4c\x98\x4c\x59\x83\xec\xbb\x4b\x37\x76\xb7\x62\x0f\x7f\x33\x99\x7f\xfe\xc9\xe7\xa6\xc0\xa2\x70\x2f\x29\x28\x17\x85\x0a\xfa\x88\x46\x1d\xfb\xd2\xb0\x57\x41\xa3\xcf\x38\x51\x0b\x07\x15\xe7\xbb\x1a\x0c\xdb\x4d\x15\xe6\x8f\xd1\x99\x3d\xa5\xd8\xc2\x5b\x0e\x69\xf6\x94\x9e\x5c\xd4\x07\xaf\x92\xde\x2b\xf8\x2e\x00\x00\xce\x12\x84\x02\x0a\x95\x68\x27\xe7\x5b\xc0\x59\xfb\xf2\xa0\x2c\xd8\x51\x0d\x77\x2c\xc2\xc7\x57\x1c\x67\xaa\xe0\x66\x67\x0c\xcf\x5e\xd7\xf1\xe5\x1b\x49\x61\x64\x33\x90\x7d\xe1\x81\x7c\x84\x5b\xf8\x75\x95\x01\x13\x49\x0b\xe7\xdc\xea\x3a\xb0\x31\x37\x2b\x4d\x6c\xd0\xda\xd2\x9f\x99\xb6\x84\x2b\xd9\xa2\x8d\xa5\xe5\xf7\x48\x5f\x65\x55\xaf\xa9\x97\xd8\x4f\x16\x18\x28\x81\xf3\x1b\xfc\xcd\x3b\xff\xad\x1e\x28\xe5\xad\x17\x7b\xbb\x04\x34\x97\xb2\x86\x1e\x63\xbf\x1b\x3b\x16\xa7\xfd\x94\xbb\x7f\xae\x6a\x38\x92\xeb\x7a\xcd\xad\x7c\xbe\x82\x9e\x8a\xac\xa7\xe2\x27\x00\x00\xff\xff\x8f\x01\xaf\x74\xcf\x01\x00\x00" func lockedtokensAdminAdmin_deploy_contractCdcBytes() ([]byte, error) { return bindataRead( @@ -3760,11 +3800,11 @@ func lockedtokensAdminAdmin_deploy_contractCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_deploy_contract.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x9a, 0x97, 0x6b, 0xe8, 0x7e, 0x5e, 0x52, 0xde, 0xaf, 0x33, 0x49, 0x33, 0x5e, 0x3e, 0xa7, 0x54, 0x57, 0x9d, 0xa1, 0x71, 0x7e, 0xbe, 0x2e, 0x5e, 0x2b, 0xc2, 0x3a, 0x9d, 0xd4, 0xd2, 0x7a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x61, 0x8, 0x4c, 0x45, 0x80, 0x10, 0x34, 0x60, 0xc1, 0xb0, 0xed, 0xeb, 0xc8, 0x43, 0x86, 0xb6, 0xd9, 0xa4, 0x12, 0x84, 0xc4, 0x57, 0x3, 0xce, 0xb7, 0x53, 0x94, 0x20, 0x92, 0x33, 0x8}} return a, nil } -var _lockedtokensAdminAdmin_deposit_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xdb\x30\x0c\xbd\xfb\x2b\x88\x1e\x36\xe7\x92\xec\x1c\xac\x2b\x0c\x27\xa7\x16\x6b\xd0\xe6\x07\x18\x89\x8d\x85\x2a\xa2\x40\xd1\xe9\x8a\x22\xff\x3e\xc8\x36\x52\xbb\xcb\xb6\xf2\x64\x13\xef\x3d\xf2\x3d\xd1\x1d\x22\x8b\xc2\x1d\x9b\x67\xb2\x5b\x7e\xa6\x90\xe0\x49\xf8\x00\xdf\x7e\xdd\xdd\xd7\xb7\xeb\xd5\xf6\xfe\x76\xfd\xb3\x5a\xad\x1e\xd6\x8f\x8f\x45\xb1\x58\x2c\x40\x33\x0a\xd0\x1e\x5c\x80\xe4\xf6\x21\x81\x36\x2e\x81\x0a\x86\x84\x46\x1d\x07\x50\x06\x4b\x91\x93\x53\x40\x30\x18\x71\xe7\xbc\xd3\xd7\x8e\xee\x82\x72\xee\xb6\x49\xd9\xbe\x42\x14\x3e\x3a\x4b\xf2\x35\x01\x1a\xc3\x6d\x50\xd0\x06\x15\xd0\x7b\x7e\xc9\xd2\x74\xc8\x72\x68\x6d\xc7\x1e\x30\x29\xf7\xb4\x21\x10\x32\x2c\xb6\x28\x46\xd3\xcb\x41\x7a\x33\x28\x57\xd6\x0a\xa5\xb4\x84\xe1\x63\x06\x6f\x45\x01\x00\x10\x85\x22\x0a\x95\x9d\x95\x25\x54\xad\x36\x55\x2f\x7f\x86\xe4\xf2\xa4\x23\x0f\x0f\x64\xc8\x1d\x49\xe0\x1a\xf6\xa4\x03\xfe\x2f\x23\x67\x67\x8d\x5c\xf3\x3d\x69\x7d\xd6\xf9\xfe\x65\x9c\xf9\xbc\xff\x19\xe4\x6a\x21\x54\x96\xb7\xff\x22\x36\xed\xce\x3b\x73\xfa\x51\x4e\x06\xe5\xfa\x24\x75\x83\xda\x4c\xb8\x1f\x56\xde\xb1\x08\xbf\x94\xd3\xee\xcd\x0d\x44\x0c\xce\x94\x57\x35\xb7\xde\x42\x60\x85\x1e\x38\xca\x29\xbf\x4c\x1f\x94\xd0\x13\x09\x05\x43\x57\xb3\x69\xa8\xdd\x21\x55\x39\xfc\x9a\xbd\xa7\xfe\x74\xae\xfb\xcb\xfa\x67\x58\xdb\x0b\xc4\x0f\x19\x5c\xf0\xff\xce\xda\x88\x3b\xa2\xd2\xc4\xfc\x68\xb7\x3f\x1f\x7b\x8e\xd6\xbe\x6f\x53\x1a\x8c\xcb\x8b\xdb\xf7\x39\x9d\x8a\x53\xf1\x3b\x00\x00\xff\xff\x5b\xc8\xe1\xb2\x58\x03\x00\x00" +var _lockedtokensAdminAdmin_deposit_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x41\x6f\xdb\x30\x0c\x85\xef\xfa\x15\x5c\x0e\x9d\x0d\x0c\xce\x3d\x58\x57\x64\xb9\xee\x10\x6c\xc5\xee\x8c\xc4\xc6\x42\x15\x51\xa0\xe8\x16\xc1\xd0\xff\x3e\xc8\xf2\x32\x3b\xcb\x50\x9d\x2c\x42\xef\xf1\x7d\x34\xfd\x29\xb1\x28\x7c\x63\xfb\x4c\xee\x91\x9f\x29\x66\x78\x12\x3e\xc1\x6a\x5e\x5a\x19\xb3\x5e\xaf\x41\xcb\x05\xd0\x9d\x7c\x84\xec\x8f\x31\x83\xf6\x3e\x83\x0a\xc6\x8c\x56\x3d\x47\x50\x06\x47\x89\xb3\x57\x40\xb0\x98\xf0\xe0\x83\xd7\xf3\x28\xf7\x51\xb9\x54\x87\xac\xec\xce\x90\x84\x5f\xbc\x23\xf9\x98\x01\xad\xe5\x21\x2a\x68\x8f\x0a\x18\x02\xbf\x16\x6b\x3a\x15\x3b\x74\x6e\x54\x4f\x6f\x72\xa9\x69\x4f\x20\x64\x59\x9c\x31\xb3\xee\xcd\x64\xbd\x9f\x9c\xb7\xce\x09\xe5\xbc\x81\xe9\xa3\x85\x5f\xc6\x00\x00\x24\xa1\x84\x42\xcd\x88\xb2\x01\x1c\xb4\x6f\xbe\xb2\x08\xbf\xfe\xc4\x30\xd0\x27\xd8\xfd\x49\xee\x29\xb7\x70\xb7\xad\xbd\x2f\xfa\x72\x02\xe9\x0c\xf0\x3b\x59\xf2\x2f\x24\x70\x0f\x47\xd2\xe9\xfd\x7f\xf2\xb4\x17\x8f\x72\x3a\x3b\xeb\xd5\x1d\xc6\x14\x9f\xef\xe6\xd3\xef\xea\x65\x32\xdd\x09\xa1\xb2\x7c\x69\x16\x2e\xe5\xbc\xab\xd9\x0f\x87\xe0\xed\x1e\xb5\x5f\x68\x97\x79\x1e\x1e\x20\x61\xf4\xb6\x59\xed\x78\x08\x0e\x22\x2b\xd4\x54\x33\xdc\x32\xfd\xca\x2b\xf4\x44\x42\xd1\xd2\xaa\x5d\xce\x66\x5c\x96\x6d\x19\xf0\x8e\x43\xa0\xba\x1e\xf7\x75\x7b\x96\xcc\x59\x59\xf0\x48\x9d\xcf\x79\xa0\x2b\xf4\xc7\x1b\x2e\x57\xe8\x37\xb0\x6f\xa9\x7e\xd4\x2e\x0b\xfa\xf6\xc3\xdf\xcc\xff\xfe\xcb\x0e\x9d\xbb\x2c\xc2\xb9\xb1\x98\x36\x37\xa9\xea\xfc\xde\xcc\x9b\xf9\x1d\x00\x00\xff\xff\x84\x09\x5b\x53\x4e\x03\x00\x00" func lockedtokensAdminAdmin_deposit_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3780,11 +3820,11 @@ func lockedtokensAdminAdmin_deposit_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_deposit_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0x1e, 0x26, 0xb4, 0x11, 0xed, 0x11, 0x3, 0x57, 0x39, 0x8f, 0x13, 0xbb, 0x53, 0xfa, 0xf, 0x22, 0x4b, 0x55, 0x77, 0xa1, 0xd8, 0xbe, 0x7a, 0x22, 0x23, 0x55, 0xdd, 0xe4, 0xbd, 0xaf, 0x33}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0x82, 0x4, 0xe6, 0x5b, 0xce, 0x35, 0x7d, 0x2e, 0xd, 0x46, 0xda, 0x8a, 0x52, 0x1a, 0xd5, 0x89, 0x30, 0xea, 0xb4, 0xdf, 0xc2, 0xb0, 0xbe, 0xb3, 0xdb, 0xf6, 0x5e, 0x8d, 0x29, 0x66, 0xd7}} return a, nil } -var _lockedtokensAdminAdmin_remove_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8f\xc1\x4f\xfa\x50\x0c\xc7\xef\xfb\x2b\xfa\xe3\xf0\xcb\x76\x90\x78\x26\x28\x99\x6c\x26\x04\x04\xc3\xde\xc5\x63\x79\x2b\x63\xe1\xed\x75\xe9\x8a\x68\x0c\xff\xbb\x99\x73\x32\x4f\xf6\xd6\xf4\xf3\x69\xbf\x2d\xab\x9a\x45\xe1\xd1\xf1\x79\x91\x18\xdc\x39\xca\x14\x8f\xa5\x2f\x60\x2f\x5c\xc1\xed\xdb\x22\x49\xd7\x66\x61\x5e\x4c\xfc\xb0\x4a\xe3\x24\xd9\xa6\x59\x16\x7c\x5b\x2b\xb6\x47\xca\x0d\x1f\xc9\x37\x3d\xbf\xda\xcc\x97\x69\x62\x36\xcb\x74\xdd\xd3\x81\x0a\xfa\x06\xad\x96\xec\xe1\x23\x08\x00\x00\x6a\xa1\x1a\x85\xc2\xa6\x2c\x3c\xc9\x04\xe2\x93\x1e\x62\x6b\xf9\xe4\x35\xea\x99\xb6\x1c\x29\x54\xe8\xb1\x20\xd9\xd2\x1e\xee\xa0\x13\xc6\x3b\x16\xe1\xf3\xf4\xff\x30\xc2\x78\xd0\x3c\x75\xce\x7d\xd8\xc6\x9a\xc0\x1f\x58\xa6\x2c\x58\xd0\x33\xea\x21\xfa\x39\xdd\xd6\x6c\x06\x35\xfa\xd2\x86\xa3\x39\x9f\x5c\x0e\x9e\x15\xba\xd3\x80\x20\xb4\x27\x21\x6f\x09\x94\x41\x0f\x04\xee\x6b\x31\x68\xbb\xb9\x4f\x3d\x8a\x7e\x3f\x93\x93\xa3\x02\x95\x05\xa6\x37\x83\xcf\xc6\x42\x15\xbf\x52\xd2\x4f\xc3\xe8\xdf\xd5\xcb\xa9\x51\xe1\xf7\xab\xdb\x8d\x2e\xc1\x25\xf8\x0c\x00\x00\xff\xff\x33\x91\x55\x64\xc0\x01\x00\x00" +var _lockedtokensAdminAdmin_remove_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x9e\x39\x94\xe4\x60\x7e\x40\xa9\x16\xb5\x08\x82\x82\xd8\xe2\x7d\xba\x99\xa6\xa1\x9b\x9d\x30\x99\x58\x44\xfa\xdf\x25\x4d\x6b\x23\x1e\x9c\xdb\xee\x9b\xef\xcd\x7b\x55\xdd\x88\x1a\x1e\x83\xec\x9f\x16\x2b\x5a\x07\x5e\x1a\xed\xaa\x58\x62\xa3\x52\x23\xf9\x2b\x24\xee\xc4\x3c\x8b\xdf\x71\xb1\x92\x1d\xc7\xf6\xb4\x3d\xfe\x4a\x9c\x33\xa5\xd8\x92\xb7\x4a\x22\xbe\x9c\x03\x80\x46\xb9\x21\xe5\xb4\xad\xca\xc8\x3a\x05\x75\xb6\x4d\xef\x45\x55\xf6\xef\x14\x3a\xce\x30\xb9\xf3\x5e\xba\x68\xd9\x19\xe9\x27\xb0\xa1\xa6\x48\x25\xeb\x1b\x6f\x70\x83\x81\xcf\x5b\x13\xa5\x92\xf3\xf5\xd1\x61\x36\x19\x07\xc8\x47\x8f\x97\x81\xbd\x4d\xfb\x9c\x53\xfc\xb3\xb6\x1c\x5c\x5f\xc9\xb6\xd9\x4f\x84\x7e\xe6\x73\x34\x14\x2b\x9f\x26\x0f\xd2\x85\x02\x51\x0c\xc3\x69\x10\x94\x37\xac\x1c\x3d\xc3\x04\xb6\x65\x84\xa3\x31\xac\x77\x3e\xa7\x4f\xb2\xdf\xa5\x0a\x0e\x5c\x92\x89\x62\x76\x3d\x6a\x98\x2b\xd7\xf2\xc1\x8b\xb3\x9a\x66\x57\x17\xae\xe0\xd6\x54\x3e\x2f\xec\x20\x1d\xdc\xc1\x7d\x07\x00\x00\xff\xff\x04\xab\xd5\xde\xcf\x01\x00\x00" func lockedtokensAdminAdmin_remove_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3800,11 +3840,11 @@ func lockedtokensAdminAdmin_remove_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_remove_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7b, 0x45, 0x4f, 0xc6, 0x2d, 0xa8, 0x8, 0x67, 0x3d, 0x3b, 0x76, 0x24, 0x7e, 0x97, 0xc8, 0x6, 0x34, 0xe8, 0xea, 0xfa, 0x7b, 0x91, 0x9c, 0x76, 0x38, 0x88, 0x31, 0x29, 0xb2, 0x25, 0x1, 0xf6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdf, 0xa8, 0x3f, 0x3a, 0x74, 0xce, 0x68, 0x6e, 0x7, 0xc0, 0x36, 0x29, 0x95, 0x78, 0x26, 0xc2, 0x17, 0xe2, 0xa9, 0x89, 0x16, 0xce, 0x87, 0x20, 0xb3, 0xe6, 0x1f, 0x1d, 0x99, 0x77, 0x55, 0x20}} return a, nil } -var _lockedtokensAdminCheck_main_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x13\x1f\x8a\x0c\x45\xf4\x2c\xea\x04\x55\x76\xda\x10\x13\x87\xd8\xa5\xe7\xf1\x6a\x24\x2f\x59\xed\x8a\xdd\x11\x69\x09\xfe\xee\x45\xab\x3f\x68\x1b\xe3\x43\xf7\x22\xb4\xfa\xcd\xbc\x37\x4f\x23\xeb\xc6\x58\x86\xfb\x56\x57\xf2\xa8\xe8\x60\x5e\x49\x43\x69\x4d\x0d\x5f\x7e\xdf\xff\x7c\xfa\xfe\xf0\x6d\xbb\x39\xec\x1e\x37\x4f\xd9\x7a\xfd\xb2\xd9\xef\xa3\xb1\x40\x99\xb7\x10\xde\xee\x7e\x05\xe0\x48\x6e\x8d\x78\xa5\xc2\xb3\x6e\x84\xb7\xbb\xfc\x71\xb3\x0e\x71\xb6\xa8\x1d\x0a\x96\x46\xc7\x35\x4a\x9d\x09\x61\x5a\xcd\x29\x64\x45\x61\xc9\xb9\x25\xbc\x47\x11\x00\x40\x63\xa9\x41\x4b\xb1\x93\x95\x26\x9b\x42\xd6\xf2\x69\x80\x27\xa6\x3b\x8a\x18\xb0\xa8\xa5\x7e\xa1\x12\x56\xd0\xe3\xc9\xd1\x58\x6b\xde\xbe\x7e\x9a\xdb\x4a\xfc\x23\xeb\xd8\xdc\x28\x45\xde\xc4\x6d\xdc\x99\x4d\x03\xff\xc9\xec\xe5\x1f\x7c\xcf\xc6\x62\x45\xcf\xc8\xa7\xe5\x64\xa1\x3b\x77\x77\xd0\xa0\x96\x22\x5e\xe4\xa6\x55\x05\x68\xc3\xd0\x9b\x00\x04\x4b\x25\x59\xd2\x82\x80\x0d\xf0\x89\x40\x79\x01\x60\x1f\xad\x77\x0f\x62\xd2\x58\x2c\xc3\xe9\x7a\x78\x98\xfd\x41\x97\xa6\x9f\xb4\x22\x1e\xee\xe6\x41\x86\xae\x92\x8a\x38\xc7\x06\x8f\x52\x49\xfe\x73\x29\x8e\x1f\x46\x15\x64\xdf\x2f\x8c\x3f\x13\x3c\xdf\xc6\xd7\x81\xe7\xf6\xa8\xa4\xf8\x98\xca\xf0\x1f\xe2\xff\xcd\xaa\xf1\x7d\xe1\x83\xde\xd5\x88\x60\x75\x31\xb2\x2e\x8b\xa0\xd1\xb0\x71\xf1\xac\x17\x3a\x47\x96\xe3\xc0\xed\xb8\x5c\xc9\x2c\x70\xec\x4b\xd3\x50\x68\x09\x37\x2b\xd0\x52\x7d\x0e\xea\x6b\x72\x0e\x2b\x4a\x61\x71\x38\x11\xb8\x86\x84\x2c\x25\x15\x80\x83\x5b\xe9\x7c\x00\x38\x2e\xc5\x70\x7f\x03\x39\xea\xee\x83\x23\x5d\x04\x0b\xe3\x16\x53\xff\x3e\xd7\x73\x74\x8e\xfe\x06\x00\x00\xff\xff\xfe\xf4\xaf\xdc\xe2\x03\x00\x00" +var _lockedtokensAdminCheck_main_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\xc1\x6a\xdc\x30\x14\xbc\xfb\x2b\x26\x3e\x04\x1b\x8a\x3f\xc0\x74\x13\xb6\x0b\xa5\x85\x1e\x42\x1b\x7a\x7f\x2b\x3d\x7b\x45\x64\xc9\x48\xcf\xe4\x50\xf2\xef\xc5\xb2\xbd\x58\x6d\xd8\x4b\x74\x59\xf4\x76\x66\xde\xcc\x58\x66\x18\x7d\x10\x7c\x9d\x5c\x6f\xce\x96\x9f\xfd\x0b\x3b\x74\xc1\x0f\x28\xb3\x59\x59\x6c\x48\xeb\x5f\x33\xd4\x76\x2f\x8b\x0d\xf2\xc3\xab\x17\xd6\x69\x18\x57\xd4\x7e\x54\x16\x85\x04\x72\x91\x94\x18\xef\xaa\x81\x8c\x3b\x2a\xe5\x27\x27\x2d\x8e\x5a\x07\x8e\xb1\xc6\x9f\xa2\x00\x80\x31\xf0\x48\x81\xab\x68\x7a\xc7\xa1\x05\x4d\x72\xa9\xbe\xf8\x10\xfc\xeb\x6f\xb2\x13\xd7\xb8\x5f\xb9\x57\xca\x7c\x2c\x0b\x48\x0f\xc6\xfd\xe4\x0e\x07\x2c\xec\x26\x8a\x0f\xd4\x73\x73\x4e\xfc\xcf\xf7\x7b\x53\x4d\xfa\x39\xce\x9c\x93\xb7\x96\x93\xb7\x87\x6a\x76\xdf\x66\x81\x9a\xdd\xe5\x1f\xf8\xaf\x45\xff\x89\xe4\x52\x5f\xad\xcc\xe7\xf1\x11\x23\x39\xa3\xaa\xf2\xe4\x27\xab\xe1\xbc\x60\x31\x01\x42\xe0\x8e\x03\x3b\xc5\x10\x0f\xb9\x30\x6c\x5a\x00\x49\x25\xa7\x14\x50\xd7\x1d\x65\x9d\xa7\x5c\xc0\x6b\x07\xdf\x5d\xe7\x97\xc4\x3d\xcb\x3a\xdb\xf7\x9b\xbb\x6a\x14\x8d\x74\x36\xd6\x88\xe1\x78\xa3\x94\x6f\xde\x6a\x0e\x0f\xd5\x3b\x2d\xec\xf6\x3e\x4d\x67\x6b\xd4\x47\xb2\x8f\x49\x01\xff\x29\xdf\x8c\x8c\xc3\xbb\x15\x34\x3d\x4b\x26\xb4\x3e\xac\x6a\xa7\x45\x31\x72\x90\x2a\x73\xbb\x3d\x9a\x66\x57\x20\x2d\xd4\x36\x5f\x54\xe3\xee\x00\x67\xec\xa7\x8c\x3f\x70\x8c\xd4\x73\x8b\xf2\xf9\xc2\x88\x23\x2b\xd3\x19\xd6\xa0\xd5\xad\x89\xa9\x00\xda\x3e\xf2\x3a\xbf\xc3\x89\xdc\xfc\x47\x64\xa7\xb3\x07\x10\xcb\xab\xfe\xd2\xeb\x5b\xf1\x56\xfc\x0d\x00\x00\xff\xff\x9d\x91\x65\xc1\xb5\x03\x00\x00" func lockedtokensAdminCheck_main_registrationCdcBytes() ([]byte, error) { return bindataRead( @@ -3820,11 +3860,11 @@ func lockedtokensAdminCheck_main_registrationCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/check_main_registration.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9a, 0x91, 0x4b, 0x4f, 0x2, 0xae, 0x1, 0x4d, 0x39, 0xc9, 0xba, 0xca, 0xda, 0xcc, 0xd6, 0x3c, 0x56, 0xc8, 0xa1, 0x8a, 0x46, 0x1f, 0xa7, 0x9, 0x71, 0xf4, 0xbb, 0xf7, 0xa1, 0xd8, 0xa6, 0x15}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0x92, 0xbe, 0x27, 0xf, 0xc8, 0x19, 0xb2, 0x24, 0xd8, 0xfb, 0x9, 0x26, 0x43, 0xec, 0x91, 0x14, 0xe, 0xaf, 0x4a, 0x9, 0xd, 0x12, 0xde, 0xa, 0x73, 0x8d, 0x3, 0x5d, 0x53, 0xd0, 0xc6}} return a, nil } -var _lockedtokensAdminCheck_shared_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x51\xcb\x9b\x30\x14\x86\xef\xfd\x15\xef\xe7\xc5\x50\x18\xb2\x6b\xd9\xb7\xe2\xac\x1d\xa3\xd2\x8e\xb6\x63\xd7\x69\x3c\x6a\x68\x4c\x24\x89\x74\x30\xfa\xdf\x87\x5a\x5d\xb3\xdc\x88\xfa\x9c\x9c\xe7\x7d\x45\xd7\x6b\xe3\xb0\x1b\x54\x23\xae\x92\x2e\xfa\x46\x0a\xb5\xd1\x1d\x3e\xfd\xde\xfd\x3c\x7c\xfb\xfe\xb5\x2c\x2e\xc7\x7d\x71\xc8\xb6\xdb\x53\x71\x3e\x07\xcb\x80\xd4\x77\x1f\x2e\x8f\xbf\x3c\x70\x21\x4b\xcd\x6f\x54\x4d\xac\x5d\xe0\xf2\x98\xef\x8b\xad\x8f\x3b\xc3\x94\x65\xdc\x09\xad\x22\x39\xcd\x64\x9c\xeb\x41\xb9\x14\x59\x55\x19\xb2\x36\xc6\x9f\x20\x00\x80\xde\x50\xcf\x0c\x45\x56\x34\x8a\x4c\x8a\x6c\x70\xed\x13\x5e\x99\xf1\x48\x72\x60\x55\x27\xd4\x89\x6a\xbc\x63\xc6\x93\xab\x36\x46\xdf\x3f\x7f\x78\x15\x4b\xa6\x47\x36\xb2\xb9\x96\x92\x26\x8d\x2f\xd1\xa8\x9b\x7a\x09\x92\x97\x97\xff\xf0\xb3\xd3\x86\x35\xf4\x83\xb9\x36\x5e\x15\xc6\xb3\xd9\xa0\x67\x4a\xf0\x28\xcc\xf5\x20\x2b\x28\xed\x30\x4b\x80\xc1\x50\x4d\x86\x14\x27\x38\x0d\xd7\x12\xe6\xec\x70\x53\xb9\x93\x3d\xf8\xba\x23\x8c\xff\xa5\x63\xd6\x92\x71\x88\xbc\x5d\x4b\xdc\xa4\x21\xf7\xac\x24\x62\x73\x7d\x29\xbc\x5a\x63\xbc\xbd\x43\x09\xf9\xd1\x9b\xef\xc8\x5a\xd6\x50\x8a\xf0\xd2\x12\x6c\x4f\x5c\xd4\x82\x2a\xb0\x79\x08\xc2\x4e\xfa\x6c\xd1\x7c\x7e\x7f\x43\xce\xd4\xf8\xc3\x92\xaa\xbc\x08\x36\x5c\xef\x9f\x5b\x79\x04\x8f\xe0\x6f\x00\x00\x00\xff\xff\xbc\x66\x6c\x69\x76\x02\x00\x00" +var _lockedtokensAdminCheck_shared_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x50\x4d\x6b\xe3\x30\x14\xbc\xeb\x57\x4c\x74\x08\x36\x2c\xfe\x01\x66\xb3\x21\x1b\xe8\xa9\x87\xd2\x86\xde\x5f\xe4\x67\x5b\x44\x96\x8c\x24\x93\x43\xc9\x7f\x2f\x96\x3f\x1a\x57\x17\xa1\xd1\xcc\x7b\x33\xa3\xbb\xde\xf9\x88\x97\xc1\x36\xfa\x6a\xf8\xe2\x6e\x6c\x51\x7b\xd7\x41\x6e\x30\x29\x16\xa6\x71\xf7\x0d\x6b\x79\x4b\xb1\x50\x5e\x9d\xba\x71\x95\xc0\x30\xb3\x9e\x21\x29\x44\xf4\x64\x03\xa9\xa8\x9d\xcd\x4c\xfa\x3a\x29\xe5\x06\x1b\x4b\x9c\xaa\xca\x73\x08\x39\xbe\x84\x00\x80\xde\x73\x4f\x9e\xb3\xa0\x1b\xcb\xbe\x04\x0d\xb1\xcd\xfe\x3b\xef\xdd\xfd\x93\xcc\xc0\x39\xf6\xb3\x76\x95\x8c\xc7\x70\x04\x55\x9d\xb6\xef\x5c\xe3\x80\x49\x5d\x84\xe8\x3c\x35\x5c\x5c\x93\xfe\xef\xfe\xd9\x56\x91\xae\xd3\xa8\x39\x3b\x63\x38\xb9\xfb\x97\x8d\xfe\xcb\x4d\xa4\xe2\xe9\xf1\x8b\xfe\x31\xcd\x7f\xa3\xd8\xe6\xab\x95\xf1\x1c\x8f\xe8\xc9\x6a\x95\xc9\xb3\x1b\x4c\x05\xeb\x22\x26\x13\x20\x78\xae\xd9\xb3\x55\x8c\xe8\x10\x5b\xc6\x54\x09\x62\xaa\x39\xa5\x80\x5a\x77\xc8\xfc\x27\x25\x85\xc0\x3e\x22\xdb\xec\x5a\x62\x17\x0d\xc7\xb9\x9a\x8c\xa6\x56\x4b\x6c\xda\xce\xb1\x3b\xc0\x6a\xf3\x67\xa3\xef\x38\x04\x6a\xb8\x84\xbc\xb4\x8c\xd0\xb3\xd2\xb5\xe6\x0a\x34\x89\xa0\x43\xb2\x4f\x8b\xcd\x19\xdf\xe1\x4c\x76\xfc\x08\x6c\xab\x4d\x84\x20\xd7\xf9\x53\x2b\x0f\xf1\x10\xdf\x01\x00\x00\xff\xff\xc7\x12\xd7\xca\x79\x02\x00\x00" func lockedtokensAdminCheck_shared_registrationCdcBytes() ([]byte, error) { return bindataRead( @@ -3840,11 +3880,11 @@ func lockedtokensAdminCheck_shared_registrationCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/check_shared_registration.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xda, 0xb6, 0x7e, 0x98, 0xe7, 0x40, 0x4d, 0xb7, 0x6c, 0xd, 0x16, 0xb, 0xee, 0x68, 0x21, 0xce, 0x15, 0xb6, 0x5f, 0x9, 0xfb, 0x96, 0x47, 0x61, 0x89, 0x5e, 0xc2, 0x29, 0x54, 0xaa, 0x34, 0xb8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5f, 0xce, 0x2e, 0x8a, 0xa6, 0x4e, 0x37, 0xb0, 0x50, 0xb0, 0xe3, 0x24, 0x8c, 0xa4, 0xea, 0x43, 0x5f, 0xc7, 0xa6, 0xa1, 0x26, 0x54, 0x66, 0x7c, 0x8d, 0xd8, 0xa7, 0xe6, 0xb, 0xb6, 0x72, 0x84}} return a, nil } -var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\xf6\x50\xc8\x80\x22\xa5\x57\x21\xc9\xc2\x75\x9c\x76\x11\x77\x13\x24\xd9\xee\x99\x96\xc6\x16\x61\x99\x54\x49\xca\xae\x10\xe4\xbf\x17\x24\xf5\xa2\x2c\xe5\x81\x06\xa8\x0e\x01\x62\x7e\xf3\xf8\xbe\x99\x21\x87\xee\x0b\x2e\x14\x2c\x44\x55\x28\xee\xd5\xff\xdd\xe4\xfc\xf8\xc4\x77\xc8\x60\x23\xf8\x1e\xce\xff\xb9\x59\xdd\xfd\x7c\xba\xbb\x5d\x7e\x9f\x5f\x5f\x3f\x2c\x1f\x1f\x5b\x60\xc9\xb6\x74\x9d\xa3\x0b\xfe\xf1\xfd\xf7\x6f\xbf\xad\x96\x63\x06\x2b\x9e\xec\x30\x35\x70\xd9\xe0\x57\x77\x8b\xdb\xe5\xb5\x83\xf6\xa2\x28\x82\x27\x41\x98\x24\x89\xa2\x9c\x81\xca\x88\x02\x02\x49\x29\x15\x4f\x2b\x28\x04\x3f\xd0\x14\x05\x1c\x79\x99\xa7\x20\xe9\x96\x19\x13\xc5\x21\x11\x48\x14\x02\x01\x99\x11\x81\x29\x90\x24\xe1\x25\x53\x40\x58\x0a\x84\x41\xc9\x72\x93\x82\x81\x37\x67\x1b\x2e\x80\x40\x29\x51\x78\x9e\xea\xa2\xfa\x1e\x00\xc0\xa6\xcc\xf3\x79\xba\xa7\xec\xbe\x5c\xe7\x34\xb9\xc5\x2a\xae\xe5\x0a\x6f\xb1\x5a\x51\xa9\x96\x4c\x89\x2a\x80\x28\x82\x9f\x48\xb7\x99\x8a\xe1\xd7\xf3\xf3\xf3\xd6\xf8\x87\x44\xf1\x51\xdb\x19\xc0\xb3\x67\x3c\x14\x02\x0b\x22\xd0\xaf\xa9\xdf\xd7\xcc\x63\x98\x97\x2a\x9b\x5b\x02\xb3\x06\xac\xbf\x1c\x55\xcd\xbd\x3e\x85\xcb\x3e\xd6\x2f\x48\xa5\xcd\x07\xfe\x66\x8e\xbd\x96\xe2\x63\xd6\xad\xb9\x13\x3a\xdc\x61\x25\x43\x92\xa6\x7e\xd1\x09\x70\x2a\x68\xd8\x9e\x06\x90\x11\x99\xcd\xf3\x2d\x17\x54\x65\xfb\x51\xb0\x83\x08\xe0\x58\xeb\x36\x82\xb4\x47\x1d\x35\xfd\xb5\xff\xf4\x38\x4e\xa6\xe9\x94\xee\x8d\x2c\x5d\xec\x2b\x49\xba\xc0\x3a\x47\x00\xb7\x82\x07\x52\xe6\x6a\x41\x0a\xb2\xa6\x39\x55\x15\x5c\xba\xc2\x3a\x94\xc2\x9c\xb2\xdd\xc5\x2f\xed\xd4\x86\x7f\x69\xe3\x2b\x3f\x2a\x04\x3d\x10\x85\xd1\xa6\x39\x31\x07\x01\x28\x22\xb6\xa8\x62\x88\xa4\xe2\x82\x6c\x87\x00\x57\xb0\xaf\x5f\xa1\x20\x8c\x26\xfe\x97\x85\x19\x36\xc6\x15\xe8\x80\xe6\x96\x00\x3b\xf9\xc6\x0c\x92\x36\xdd\x2f\x33\x97\x4d\xde\x8d\xfd\x9f\x84\x91\x2d\x0a\xb8\x38\x73\x2e\x83\xd0\xce\xed\xea\x04\xe8\x1b\x25\xe2\xa1\x20\x93\x1d\x27\xc9\x01\xfd\x8b\xb3\xd3\x88\x01\x28\x1e\xbb\x31\x4f\xa3\x3d\x5a\x41\xee\x89\xca\x06\x14\x54\x0f\xf5\xb1\xba\xbc\x11\xf2\xca\x77\x8c\xf4\xf7\x86\xc5\xbd\x2d\xab\x4e\x32\x38\xb1\x6d\x6a\xfb\x7e\xa2\xad\x8b\xd9\x6b\xd5\x36\xfc\x61\x5f\x57\x6f\xba\xd4\x06\xf7\x07\xcf\xd3\xc9\x1a\x3f\x75\x08\xdf\x96\x69\x9e\xa6\x02\xa5\x8c\x07\xa5\x24\xf6\xe7\xc0\xd1\x3e\x9e\xa8\x44\x2f\x8d\xfe\x64\x9b\x76\x70\x44\xba\x38\xeb\xa5\x18\x80\x73\x76\xd2\x21\xbd\x5c\x7b\x8a\x75\xaa\x4f\x44\x1d\x29\x7c\xcf\xd3\xf3\x48\x6d\x6a\xcb\x6f\x6c\xc3\x5f\xae\xfc\xd7\x01\xf6\xf2\x30\x89\x8c\x97\x7b\x3c\xeb\xb1\x42\x99\x0b\xf3\xff\x6a\x67\x7b\x5b\x7f\x6e\x33\xbf\xf3\xee\xb2\xdd\x3c\x78\xc5\xf4\xfa\xe0\xb4\xf9\xf8\x35\x56\x6b\xb3\xd0\xcd\xcc\x05\x5c\x0e\xdd\xb8\xa2\xad\xb9\x10\xfc\x38\x2a\x9b\xeb\xe8\xca\xd7\xfb\xd0\x28\x57\x17\xf8\x21\xb6\x36\x3c\x08\xdc\xa0\x40\x96\xa0\xe6\x38\xe6\xd4\xa1\x3a\x72\xae\x87\xb1\xd9\x01\x9c\x16\x79\x6b\x76\x9b\x85\x6b\x08\xef\x8f\x8b\x3b\xe8\xa6\x2d\xe2\xd1\xfe\xec\x25\x19\x45\x70\x77\x40\x21\x68\x8a\xa0\x32\x84\x14\x37\xe6\x11\xea\x76\x57\x81\x09\xd2\x43\xaf\x1e\x6e\x86\x25\xd3\x9d\xe0\x47\xf6\x55\xef\x9e\xc0\x87\xda\x6c\x62\x6d\x88\xa2\x66\xc5\x64\x78\x6c\x63\xd8\x05\x75\x4f\xc4\x4e\x36\xbf\xa5\x96\x81\x04\x22\xbb\xad\x73\x3c\x15\x3b\x58\x73\x56\x3d\xa0\xe4\xa5\x48\xf0\xd9\x59\xac\xc3\x26\xa5\x97\xc1\x70\x4d\xe6\xee\x4e\xd2\x7f\x79\x12\x1c\xc1\x8b\x72\x0d\x8c\x8b\x3d\xc9\x3b\xe2\x94\xe9\x5d\x5b\xef\xa8\x5a\x93\x92\xd1\xbf\x4b\x84\xa2\xef\xe3\x73\xb9\x5a\x21\x6f\xde\xc7\x78\x62\xc1\xe9\xd1\xd3\x7f\x5f\xbc\x17\xef\xdf\x00\x00\x00\xff\xff\x31\xd2\x5f\xbb\x08\x0d\x00\x00" +var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xe9\xd5\x70\xb2\x48\x8d\x2e\x5a\x6c\x8a\x06\x6d\xba\x7b\x9e\x88\x63\x8b\x08\x4d\xaa\xfc\xb1\x61\x04\x79\xf7\x82\x12\x25\x8b\xb2\x94\xb8\x45\x7b\x59\x1d\x82\x98\x9c\x9f\x6f\xbe\x99\xe1\x0c\xdf\x55\x4a\x5b\x58\xeb\x63\x65\x55\x12\x7e\x7d\x16\xea\xf0\xa4\x5e\x48\xc2\x46\xab\x1d\xcc\xba\xdf\xb3\x4e\xc2\xc9\x2d\x7f\x16\x14\x49\xf5\xcf\x3a\xc9\x07\x55\xbc\x10\xab\xcf\x4c\x10\xec\x1f\xcd\x92\x24\xcf\x73\x78\xd2\x28\x0d\x16\x96\x2b\x09\xb6\x44\x0b\x08\x85\x33\x56\xb1\x23\x54\x5a\xed\x39\x23\x0d\x07\xe5\x04\x03\xc3\xb7\xb2\x56\xb1\x0a\x0a\x4d\x68\x09\x10\x4c\x89\x9a\x18\x60\x51\x28\x27\x2d\xa0\x64\x80\x12\x9c\x14\xb5\xa7\x5a\xbc\xbd\xdb\x28\x0d\x08\xce\x90\x4e\x12\x7b\xf2\x9a\x26\x00\x00\x1b\x27\xc4\x3d\xdb\x71\xf9\xe8\x9e\x05\x2f\xbe\xd0\x71\x19\xa8\xc9\xbe\xd0\xf1\x81\x1b\xfb\x93\xb4\xfa\xb8\x80\x3c\x87\x6f\xc4\xb7\xa5\x5d\xc2\x0f\x37\x37\x37\x9d\xf2\x9f\x86\xf4\x3f\xd5\x9d\x03\xbc\x26\xb5\x85\x4a\x53\x85\x9a\xd2\x10\xfa\x63\x88\x7c\x09\xe8\x6c\x99\xfe\xa8\xb4\x56\x87\xaf\x28\x1c\xcd\xe1\xea\xbe\x89\x67\xde\xea\xfa\x4f\x90\x0d\x54\x84\x5b\xb8\x85\xf0\x5f\x5a\xe1\xd1\x5b\x1a\x98\x9e\x47\xba\x9e\x95\xcb\x35\x3b\xd5\xc8\x65\xf6\x42\x47\x93\x21\x63\x69\x75\xe2\xe1\x9c\xd7\xac\xbb\x5d\x40\x89\xa6\xbc\x17\x5b\xa5\xb9\x2d\x77\xa3\xc2\x91\xc4\x02\x0e\x81\xbe\x11\xc9\xe6\xaa\x07\xae\x17\xd3\x24\xb4\x28\x6b\x1f\x20\x8b\x65\xdf\x01\x16\x0b\x9e\xe1\xf2\x7c\xef\xd1\x09\xbb\xc6\x0a\x9f\xb9\xe0\xf6\x08\xb7\x03\x2a\x8b\xf6\x8a\x93\xc9\x8c\x55\x1a\xb7\xd4\x19\xf0\x5f\xc6\x8d\x71\xb4\xaa\xcb\x23\x6a\xbf\xec\x1b\xb7\x25\xd3\x78\x98\xc3\x55\xd7\xbd\xd9\x57\xef\xef\x2e\xcd\x83\xa9\x7c\xd3\xde\xd4\x17\x03\x70\xe2\xd4\xa5\xbf\xa2\xc4\x2d\x69\x58\x5d\x47\xed\x9c\x35\xfd\xf7\x70\x26\x98\xd6\x81\x2d\x87\xf1\x4d\x96\x4c\xc0\x93\x19\xdc\x53\xba\xba\x3e\xf7\xbc\x00\xab\x96\xb1\xef\x73\xaf\x7f\x34\x56\x1e\xd1\x96\x83\x50\x6c\x4f\xea\x7f\xa7\xfb\x03\x94\x77\x69\x64\xd2\x7f\x97\xc7\x15\xa9\x8e\x05\xf9\xb3\x12\x6c\x32\x51\x4f\x27\x89\xb4\xe1\xf8\x9e\x31\x4d\xc6\x2c\x07\x44\x60\x73\xbc\x88\x88\x5b\x4e\xd0\x38\xd1\x6b\x51\x4e\x23\xdc\xab\xeb\x1e\xd4\x45\x74\x75\x96\xe5\x1e\xe4\x31\x1a\xa6\x29\x58\x63\x05\xb7\x11\xa0\xb1\xec\x86\x84\x5e\x4d\xf9\xbc\x4b\x2f\x40\x33\x1f\x8d\x3f\x72\x57\x3f\x29\xa6\x4c\x63\x80\x0b\x40\x3b\x5a\xd5\xc1\xc6\x2f\x72\xa3\x9a\x17\x64\xaa\xa6\xeb\xc7\xef\xbb\xad\x68\xd1\x27\x63\xed\x4b\x58\x69\xb8\x1d\x0e\xa2\xf1\xb8\x9e\xeb\x61\xb9\x1a\xc3\x1e\x1b\xbc\x4b\xfd\x52\xf2\x5e\x1a\x82\xe0\x68\xc6\xfd\xf7\xe9\x13\x54\x28\x79\x91\xce\xd6\xf5\x86\x22\x95\x85\xc6\x7d\x88\xa0\xdb\x3d\x8a\xc6\xd2\xac\x1f\xe7\x88\x27\xdf\x7f\xed\xf0\x8d\x3c\x45\xc9\xfd\xa0\x77\x23\xc5\x76\x13\x1a\xaa\xf6\x0b\x76\x54\xf1\x54\x65\xcb\xd1\x8a\x1b\xeb\xc4\x3c\x87\xdf\xf6\xa4\x35\x67\x04\xb6\x24\x60\xb4\xf1\x73\xa0\xb7\x55\x6a\x2a\x88\xef\x49\x67\x13\xf3\x20\x2a\x5b\x27\xdb\xee\xc9\x9b\xc9\x7c\x1a\x5b\xbf\x07\x3b\xb1\xf3\xb0\x15\x4a\x3a\x74\x8e\x9a\x9d\x72\x87\xfa\xc5\xb4\x67\xac\x89\xc7\x00\x9a\x8e\x9e\x6c\x6a\x00\x9a\xd3\xab\x77\x51\x8f\xb5\xef\xca\x6b\xdc\x53\x2d\xde\xb7\xc1\xbb\xf2\xc1\x2c\xbb\x80\xa4\x96\xa2\x28\x79\xe3\x01\xc4\x09\xf6\x2f\xd0\x24\xaf\x13\xd9\xad\x9c\x05\xa9\xf4\x0e\xc5\x89\x60\x2e\xfd\x1a\xee\xd7\x57\xcf\xbd\x93\xfc\x2f\x47\x50\xa1\x2d\xb3\xf3\x57\xab\x35\xff\xdf\xb1\x39\xb9\xd1\xfc\x5b\xea\x86\x38\xa7\x49\x6b\x48\xfe\xfc\x0e\x75\xfe\xef\x5b\xf2\x96\xfc\x1d\x00\x00\xff\xff\x44\x3c\xd7\x13\x6b\x0d\x00\x00" func lockedtokensAdminCustody_create_account_with_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3860,11 +3900,11 @@ func lockedtokensAdminCustody_create_account_with_lease_accountCdc() (*asset, er } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_account_with_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9a, 0xd8, 0x1f, 0x8, 0xcf, 0x85, 0xf3, 0x68, 0x9d, 0xa4, 0x3e, 0xb2, 0x52, 0x18, 0x97, 0xe4, 0xdf, 0xb4, 0x42, 0x80, 0x49, 0xa2, 0x2f, 0x96, 0x50, 0x77, 0x51, 0x4f, 0x6, 0xb9, 0xb5, 0xed}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0xea, 0x4d, 0xc, 0xc6, 0x6b, 0x93, 0xc7, 0x45, 0xb4, 0x90, 0x7c, 0xb1, 0xdc, 0xc1, 0xd5, 0x1a, 0xd8, 0x8d, 0x8c, 0xb3, 0x98, 0x32, 0x8f, 0x37, 0x9a, 0x21, 0x37, 0x53, 0x2a, 0x88, 0x7d}} return a, nil } -var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\x51\x6f\xe3\x36\x0c\x7e\xf7\xaf\x20\xee\x61\x70\x00\x37\xee\x5e\x8d\xb6\x87\x2c\x4d\xb7\x43\xb3\x6b\xd1\x76\xbb\x67\xc5\x66\x62\x21\x8a\xe4\x49\x72\x32\xa3\xc8\x7f\x1f\x24\x39\x8e\xe4\x38\xd7\x1e\x56\xe0\xf2\x50\xa0\xd6\x47\xf2\xe3\x47\x52\x22\xdd\x54\x42\x6a\x98\xca\xa6\xd2\x22\x6a\xff\xbb\x63\x62\xf7\x22\xd6\xc8\x61\x29\xc5\x06\x2e\xff\xbd\x9b\x3f\x7c\x7b\x79\xb8\x9f\x7d\x9d\xdc\xde\x3e\xcd\x9e\x9f\x3b\x60\xcd\x57\x74\xc1\x30\x04\xff\xf5\xf5\xf7\x2f\xbf\xcd\x67\x43\x06\x73\x91\xaf\xb1\xb0\x70\x75\xc0\xcf\x1f\xa6\xf7\xb3\xdb\x00\x1d\xa5\x69\x0a\x2f\x92\x70\x45\x72\x4d\x05\x07\x5d\x12\x0d\x04\xf2\x5a\x69\x51\x34\x50\x49\xb1\xa5\x05\x4a\xd8\x89\x9a\x15\xa0\xe8\x8a\x5b\x13\x2d\x20\x97\x48\x34\x02\x01\x55\x12\x89\x05\x90\x3c\x17\x35\xd7\xb0\x14\x12\x08\xd4\xca\x18\x95\x02\x08\x93\x48\x8a\xc6\x5a\x95\x44\x81\x2e\x91\x4a\xa8\x39\xb3\x04\x3b\x2b\xe7\xad\x30\x30\xc7\xa9\xc4\x53\x90\xb5\x17\x96\x85\xf1\x03\xda\x23\x4e\x98\x12\x51\xe4\x7d\x89\x23\x00\x80\x65\xcd\xd8\xa4\xd8\x50\xfe\x58\x2f\x18\xcd\xef\xb1\xc9\xda\x1a\x8c\xef\xb1\x99\x53\xa5\x67\x5c\xcb\x26\x81\x34\x85\x6f\x48\x57\xa5\xce\xe0\xd7\xcb\xcb\xcb\x68\x04\xf0\x1a\x59\x17\x95\xc4\x8a\x48\x8c\x5b\x4d\x1e\x5b\x49\x32\x98\xd4\xba\x9c\x38\x6a\x89\x4d\xb8\xfd\x27\x38\x19\x1d\xdc\x98\x1f\x43\xdd\xca\xd5\x9e\xc2\xb5\x8f\x8d\x2b\xd2\x18\xc7\xbd\x48\xa3\xa3\x83\xc0\x78\xbc\xc6\x46\x8d\x49\x51\xc4\xd5\x31\xb9\xd3\x84\xc7\xdd\x69\x62\x14\x2c\x27\x6c\x25\x24\xd5\xe5\x66\x10\x1c\x20\x12\xd8\xb5\x9a\x0c\x20\xdd\xd1\x28\xcc\x6e\x4b\x6a\xa6\xa7\xa4\x22\x0b\xca\xa8\x6e\xe0\x3a\xa4\xdc\x61\xcd\x6f\xcc\x28\x5f\x5f\xfd\xd2\x0d\xc1\xf8\x6f\x63\x7c\x13\xa7\x95\xa4\x5b\xa2\x31\x5d\x1e\x4e\xec\x41\x02\x9a\xc8\x15\xea\x0c\x52\xa5\x85\x24\xab\x3e\x60\x14\x78\xff\xfc\x19\x2a\xc2\x69\x1e\x7f\x9a\xda\xde\xe5\x42\x83\x09\x68\x87\x0e\xdc\x20\x59\x33\xc8\x3b\xba\x9f\x7a\xd9\xb0\xe3\x14\xfd\x49\x38\x59\xa1\x84\xab\x8b\x60\xb6\xc6\xae\x71\xe7\x27\xc0\xd8\x2a\x91\xf5\x05\x39\x5b\x4b\x45\xb6\x18\x5f\x5d\x9c\x46\x4c\x40\x8b\x2c\x8c\x79\x1a\xed\xd9\x09\xf2\x48\x74\xd9\x4b\x41\x7b\xa8\x1f\xab\xcb\x1b\x21\x6f\xe2\xc0\xc8\xfc\xde\xb0\x78\x74\x65\x35\x24\x93\x13\xdb\x43\x6d\xdf\x9f\x68\xe7\x62\xf4\xbd\x6a\xdb\xfc\x61\xd3\x56\xef\x7c\xa9\x2d\xee\x0f\xc1\x8a\xb3\x35\x7e\x39\x22\x62\x57\xa6\x49\x51\x48\x54\x2a\xeb\x95\x92\xb8\xcf\x49\xa0\x7d\x76\xa6\x12\x1e\x0d\xef\x0a\x71\xed\x10\x88\x74\x75\xe1\x51\x4c\x20\x38\x3b\xe9\x10\x8f\xab\xa7\xd8\x51\xf5\x33\x51\x07\x0a\xef\x79\x7a\x1d\xa8\x4d\x6b\xf9\x85\x2f\xc5\xfe\x26\xfe\x3e\xc0\x5d\x1d\x96\xc8\x70\xb9\x87\x59\x0f\x15\xca\x5e\x45\x3f\xab\x9d\xdd\x3d\xf8\xb1\xcd\xfc\xce\xbb\xcb\x75\x73\xef\x7d\x30\x6f\x62\xd0\xe6\xa6\xb7\x07\xee\xb1\x56\x9c\xa9\xe9\x66\x21\xe1\xba\xef\x27\x54\x6d\x21\xa4\x14\xbb\x41\xdd\x42\x47\x37\xb1\xd9\x2f\x06\x93\x0d\x81\x3f\x94\xae\x0b\x0f\x12\x97\x28\x91\xe7\x68\x92\x1c\x72\x1a\xcc\xf1\xc0\xb9\x99\xc6\xc3\xf3\x1a\xf4\xc8\x5b\xc3\x7b\xd8\x3e\xfa\x70\x7f\x5e\xc2\x49\xb7\x7d\x91\x0d\x36\xa8\x47\x32\x4d\xe1\x61\x8b\x52\xd2\x02\xed\x12\x53\xe0\xd2\xbe\x42\xc7\x5d\x50\x62\x8e\x74\xeb\xd5\x23\x64\x58\x73\xd3\x0a\x71\xea\x9e\xf5\xe3\x1b\xf8\xd4\x9a\x85\xda\xfa\x71\xdb\x95\x8d\xe3\xae\x8b\xe1\x16\xbe\x0d\x91\x6b\x75\xf8\x56\xb8\x0c\x14\x10\xd5\x89\x70\x86\x8a\x9b\xac\x09\x6f\x9e\x50\x89\x5a\xe6\xf8\x1a\x2c\xaa\xe3\x03\xa5\x7d\x6f\xba\xce\x72\x0f\x47\xe9\xff\xbc\x09\x81\xe0\x55\xbd\x00\x2e\xe4\x86\xb0\x63\xe2\x94\x9b\xdd\xd5\xac\x76\x46\x93\x9a\xd3\x7f\x6a\x84\xca\xf7\xf1\xb1\xb9\x3a\x21\xef\xde\x97\xf1\x99\x0d\xc7\x4b\xcf\xfc\xdd\x47\xfb\xe8\xbf\x00\x00\x00\xff\xff\xbd\xb5\xf1\x52\x58\x0c\x00\x00" +var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xe9\xd5\x70\xb2\x48\x8d\x2e\x5a\x6c\x8a\x06\x6d\xb0\x7b\x9e\x88\x63\x8b\x08\x4d\xaa\x24\x65\x43\x58\xe4\xdd\x0b\x52\x94\x2c\xca\xd2\xae\x5b\xb4\x97\xea\x10\xc4\xe4\xfc\x7c\xf3\xcd\x70\x66\xf8\xa1\x52\xda\xc2\x56\x37\x95\x55\x49\xf8\xf5\x51\xa8\xd3\x8b\x7a\x23\x09\x3b\xad\x0e\xb0\xe8\x7f\x2f\x7a\x89\x5a\xee\xf9\xab\xa0\x48\x6a\x78\xd6\x4b\x3e\xa9\xe2\x8d\x98\x3f\x33\x41\x70\x78\xb4\x48\x92\x3c\xcf\xe1\x45\xa3\x34\x58\x58\xae\x24\xd8\x12\x2d\x20\x14\xb5\xb1\x8a\x35\x50\x69\x75\xe4\x8c\x34\x9c\x54\x2d\x18\x18\xbe\x97\x5e\xc5\x2a\x28\x34\xa1\x25\x40\x30\x25\x6a\x62\x80\x45\xa1\x6a\x69\x61\xa7\x34\x20\xd4\xc6\x29\x95\x0a\x50\x68\x42\xd6\x78\xad\x12\x0d\xd8\x92\xb8\x86\x5a\x0a\x8f\xa3\xd7\x6a\xad\x31\x27\xd6\x62\x2a\xe9\x52\xc8\xeb\x2b\x8f\xc2\xd9\x01\x3b\x00\x8e\xc2\xa8\x24\x19\x9c\xa4\x09\x00\xc0\xae\x16\xe2\x91\x1d\xb8\x7c\xae\x5f\x05\x2f\x3e\x51\xb3\x0e\x7c\x67\x9f\xa8\x79\xe2\xc6\xfe\x24\xad\x6e\x56\x90\xe7\xf0\x85\xf8\xbe\xb4\x6b\xf8\xe1\xee\xee\x2e\x59\x02\x7c\x4d\xbc\x89\x4a\x53\x85\x9a\xd2\xc0\xc9\x73\xa0\x64\x0d\x58\xdb\x32\xfd\x51\x69\xad\x4e\x9f\x51\xd4\xb4\x84\x9b\xc7\x16\xe9\xca\xc7\x1f\x7e\x04\xc1\x3f\xac\xd2\xb8\xa7\x15\x6c\xb1\xc2\x57\x2e\xb8\xe5\x64\xce\x2a\xcb\xce\x9d\xfb\x04\xd9\x40\x6b\xb8\x85\x7b\x08\xff\xa5\x15\x36\xce\xf9\x08\xcd\xf2\xac\x1c\x29\x66\x6f\xd4\x98\x0c\x19\x4b\xab\x33\x01\x97\xa4\x64\xfd\xed\xca\xb1\x5c\x3e\x8a\xbd\xd2\xdc\x96\x87\x49\xe1\x48\x62\x05\xa7\xc0\xdb\x84\x64\x7b\xb5\x8c\x23\x3b\x62\x2d\x6c\xcf\x42\x03\xf7\x23\xc8\xc5\x80\xa0\xcc\xb4\xb4\xf5\x06\xdc\x97\x71\x63\x6a\xda\x78\x5a\xa3\xc2\xcf\xbe\x70\x5b\x32\x8d\xa7\x25\xdc\xf4\xef\x26\xfb\xec\xfc\x3d\xa4\x79\x30\x95\xef\xba\x1b\x7f\x31\x02\x27\xce\xef\xe3\x57\x94\xb8\x27\x0d\x9b\xdb\xe8\x21\x65\x6d\xad\x3e\x5d\x08\xa6\x3e\xb0\xf5\x38\xbe\xd9\xd4\x04\x3c\x99\xc1\x23\xa5\x9b\xdb\x4b\xcf\x2b\xb0\x6a\x1d\xfb\xbe\xf4\x1a\xea\xea\x19\x6d\x39\x0a\xc5\x0e\xa4\xfe\x73\xba\xbf\x83\xf2\x21\x8d\x4c\xba\xef\xfa\xb8\x22\xd5\xa9\x20\x7f\x56\x82\xcd\x26\xea\xe5\x2c\x11\x83\x68\x09\x7f\x64\x4c\x93\x31\xeb\x11\x2b\xd8\x1e\xaf\x22\x8d\x21\xa3\xeb\x19\x7e\x93\x09\xa0\x83\x6e\x10\x67\x3d\xb2\xbe\xb9\x1d\x04\x33\x76\x3c\xaa\x83\x41\x50\x53\x44\xcd\x93\xb4\xc5\x0a\xee\x23\x40\x53\xf9\x0f\x29\xbf\x99\xf3\xf9\x90\x5e\x81\x66\x39\x19\x7f\xe4\xce\xb7\x1d\x53\xa6\x31\xc0\x15\xa0\x9d\xac\xfb\x60\xe3\x17\xb9\x53\x6d\x8f\x99\xab\x7a\xdf\x86\xfe\xb7\x35\x2f\x86\x64\x6c\x5d\x91\x2b\x0d\xf7\xe3\x91\x30\x1d\xd7\xab\x9f\x57\x9b\x29\xec\xb1\xc1\x87\xd4\x2d\x0c\xdf\x4a\x43\x10\x9c\xcc\xb8\xfb\x3e\x7c\x80\x0a\x25\x2f\xd2\xc5\xd6\x6f\x0f\x52\x59\x68\xdd\xc3\xd4\xf4\x57\x7a\x31\x8c\x73\xc2\x93\x7b\x94\xdd\x18\x8c\x3c\x45\xc9\xfd\x3b\x0f\xba\x5b\x31\xc6\xaa\xc3\x82\x9d\xef\x04\xbe\xca\xd6\x93\x15\x37\xf5\x12\xf3\x1c\x7e\x3b\x92\xd6\x9c\x91\x5f\x5f\x18\xed\xdc\xa4\x18\x6c\x7c\x9a\x0a\xe2\x47\xd2\xd9\xcc\xc4\x88\xca\xb6\x96\xdd\xeb\xc9\xdb\xe9\x7d\x1e\x6c\xbf\x07\x3b\xb1\xf3\xb0\xb1\x49\x3a\xf5\x8e\xda\x7d\xef\x80\xfa\xcd\x74\x67\xac\x8d\xc7\x00\x9a\x9e\x9e\x6c\x6e\x44\x9a\x73\xfb\xbb\xea\x8d\x75\x7d\xe5\x6b\xfc\xa6\x3a\xbc\xef\xa3\xbe\xf2\x9d\x69\x77\x05\x49\x1d\x45\x13\x8d\x7f\x1c\x40\x9c\x60\xd7\x81\x66\x79\x9d\xc9\x6e\x55\x5b\x90\x4a\x1f\x50\x9c\x09\xe6\xd2\xad\xc8\x6e\x83\x74\xdc\xd7\x92\xff\x59\x13\x54\x68\xcb\xec\xb2\x6b\x75\xe6\xff\x3d\x36\x67\x77\x9e\x7f\x4a\xdd\x18\xe7\x3c\x69\x2d\xc9\x1f\xbf\x41\x9d\xfb\xfb\x9e\xbc\x27\x7f\x05\x00\x00\xff\xff\xe2\x38\x62\x8b\x07\x0d\x00\x00" func lockedtokensAdminCustody_create_only_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3880,11 +3920,11 @@ func lockedtokensAdminCustody_create_only_lease_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x43, 0x2b, 0xad, 0x8, 0xe2, 0x40, 0x95, 0x23, 0x8c, 0xd8, 0xfe, 0x6a, 0x87, 0xc4, 0x1, 0xf1, 0xb9, 0xc5, 0xf, 0xec, 0x25, 0x7c, 0xc4, 0xbf, 0x2d, 0xfa, 0xb7, 0x44, 0x7d, 0x16, 0x7d, 0xb9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x16, 0xfa, 0xe7, 0x1, 0x8d, 0x5d, 0xca, 0x94, 0x12, 0x96, 0x29, 0x39, 0xb8, 0xa6, 0x56, 0x88, 0xde, 0xb0, 0xdf, 0x9b, 0xfe, 0xdd, 0xd, 0x16, 0xaa, 0xa7, 0xb5, 0x85, 0xb3, 0xbc, 0x7c, 0xe3}} return a, nil } -var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\xf6\x50\xc8\x80\x63\xb9\xc7\x0a\xc9\x2e\x5c\xc7\x69\x17\x71\x37\x41\x92\xed\x9e\x69\x69\x6c\x11\x96\x49\x95\xa4\xec\x0a\x41\xfe\x7b\x41\x52\x92\x45\x99\xda\xd8\x45\x81\xae\x4e\x89\xf8\xe6\xeb\x3d\xce\x68\x4c\x77\x05\x17\x0a\xe6\xa2\x2a\x14\x0f\xea\xff\xee\x72\x7e\x78\xe1\x5b\x64\xb0\x16\x7c\x07\xd3\xbf\xef\x96\x0f\xdf\x5e\x1e\xee\x17\x5f\x66\xb7\xb7\x4f\x8b\xe7\xe7\x16\x58\xb2\x0d\x5d\xe5\xe8\x82\xbf\x7e\xf9\xed\xf3\xaf\xcb\x85\xcf\x60\xc9\x93\x2d\xa6\x06\x2e\x1b\xfc\xf2\x61\x7e\xbf\xb8\x75\xd0\x41\x14\x45\xf0\x22\x08\x93\x24\x51\x94\x33\x50\x19\x51\x40\x20\x29\xa5\xe2\x69\x05\x85\xe0\x7b\x9a\xa2\x80\x03\x2f\xf3\x14\x24\xdd\x30\x63\xa2\x38\x24\x02\x89\x42\x20\x20\x33\x22\x30\x05\x92\x24\xbc\x64\x0a\xd6\x5c\x00\x81\x52\x6a\xa3\x8c\x03\xc9\x05\x92\xb4\x32\x56\x19\x91\xa0\x32\xa4\x02\x4a\x96\x9b\x04\x5b\x2b\xeb\x2d\xd5\x30\x9b\x53\x86\xa7\x20\x63\xcf\x4d\x16\xda\x0f\xa8\x4e\xe2\x24\x97\x3c\x08\x3a\x6f\xc2\x00\x00\xa0\x20\x42\x51\x92\xcf\xd2\x1d\x65\x8f\xe5\x2a\xa7\xc9\x3d\x56\x71\x2d\xc3\xe4\x1e\xab\x25\x95\x6a\xc1\x94\xa8\xc6\x10\x45\xf0\x0d\xe9\x26\x53\x31\xfc\x3c\x9d\x76\xcd\xbf\x4a\x14\x17\x58\xff\x32\x9d\x06\x23\x80\xd7\xc0\xfa\x10\x58\x10\x81\x61\xcd\xe9\x63\x4d\x69\x0c\xb3\x52\x65\x33\x5b\xda\xd8\x10\x56\xff\xe3\x9c\x8c\x1a\x37\xfa\xc9\x51\xd5\x74\xd7\xa7\x70\xd3\xc5\x86\x05\xa9\xb4\xe3\x5e\xa4\xd1\xd1\x81\x63\x3c\xd9\x62\x25\x27\x24\x4d\xc3\xe2\x58\x9b\x97\xb0\x49\x0b\x18\x6b\x11\xb2\x59\xbe\xe1\x82\xaa\x6c\x37\x84\x77\x40\x63\x38\xd4\xc4\xf8\xc1\xf6\x74\x74\x79\x92\x8e\x2c\xef\xe7\xe8\xc2\xbf\x9f\xa2\x8b\x6d\x32\x74\x84\xd8\x93\x32\x57\x73\x52\x90\x15\xcd\xa9\xaa\xe0\xc6\x4d\xbc\xc5\xea\x67\x92\x53\xb6\xbd\xfe\xa9\xed\xf7\xc9\x9f\xda\xf8\x63\x18\x15\x82\xee\x89\xc2\x68\xdd\x9c\x98\x83\x31\x28\x22\x36\xa8\x62\x88\xa4\xe2\x82\x6c\xfa\x80\x91\xe3\xfd\xd3\x27\x28\x08\xa3\x49\xf8\x61\x6e\xda\x94\x71\x05\x3a\xa0\x99\x2f\x60\x67\x86\x31\x83\xa4\x4d\xf7\x43\xaf\x9a\xfc\x38\x30\xfe\x20\x8c\x6c\x50\xc0\xf5\x95\x33\x46\x26\xb6\x47\x97\x27\xc0\xd0\x30\x11\xf7\x09\x19\xbc\x76\x92\xec\x31\xbc\xbe\x3a\x8d\x38\x06\xc5\x63\x37\xe6\x69\xb4\x67\x4b\xc8\x23\x51\x59\xaf\x04\xd5\x41\x5d\xa6\xcb\x3b\x21\x3f\x86\x8e\x91\x7e\xde\xb1\x78\xb4\xb2\xea\x24\xc7\x27\xb6\x8d\xb6\xe7\x17\xea\xb8\x38\x53\x7b\xc3\x06\xec\x6a\x2d\x87\x85\x37\xb8\xdf\x79\x9e\x0e\x2a\xfe\x72\x44\xb8\x44\x58\x05\x67\x69\x2a\x50\xca\xb8\xa7\x32\xb1\xaf\xdd\xf2\xbb\x12\xc5\x03\x82\x05\xc7\x42\xdb\x3f\x3b\xd3\xd1\x5e\x1f\xc7\xeb\xf5\x55\xa7\x88\x7e\xc0\x1e\xcf\x9d\x62\x3a\x04\x8f\xdf\x0b\xea\xb9\x27\x1d\x4f\xaf\x1e\x29\x6b\xcb\xcf\x6c\xcd\xdf\x7a\x17\xe8\xfb\x68\x3b\x76\x4e\xaf\x8e\xf7\xda\xf8\xcb\xf1\x55\xd3\x6a\x6d\xa6\xef\xff\xd5\x1f\x76\xf4\xff\x28\xdd\xd1\xfb\x50\xea\xe5\xc2\x69\x1b\xdd\x2b\x9e\x29\x59\x33\x35\xd7\xdd\xc1\x05\xdc\xf4\xfd\xb8\x14\xae\xb8\x10\xfc\xe0\x25\xd1\x75\xe4\xa1\x51\x6f\x6e\x5e\x2a\x5c\xcb\x7f\x4f\x86\x4d\x0e\x04\xae\x51\x20\x4b\x50\x53\xe0\x8b\xe0\x4c\x0d\xcf\xb9\x6e\xf7\x66\x0b\x71\x82\x3a\x77\xeb\x92\x51\xd1\x6c\x7f\x7d\xd3\x6e\x57\x0e\xcf\x18\x73\xcf\x62\xef\x85\xf7\x35\x47\x14\xc1\xc3\x1e\x85\xa0\x29\x9a\xcd\x32\xc5\xb5\xf9\x5e\x1e\x17\x74\x81\x09\xd2\x7d\x47\x5b\xb7\x84\x92\xe9\x6b\x15\x46\x76\x09\x39\x7e\xad\x9f\x6a\x33\x37\x56\xbd\x3b\x33\x3c\xb4\x7e\xed\xe6\xbd\x23\x62\x2b\x9b\x77\xa9\x4d\x5f\x02\x91\x2d\x1b\x03\xe1\x6d\x9b\xce\x58\xf5\x84\x92\x97\x22\xc1\x57\xe7\x17\xc3\xa4\x49\xa3\x3f\x89\x06\xf3\x3d\x63\xf4\x9c\xd7\x93\x6e\xe1\x45\xb9\x02\xc6\xc5\x8e\xe4\xc7\xc2\x29\xd3\x3f\x22\xf4\x8e\xac\x39\x29\x19\xfd\xab\x44\x28\xba\x3e\xfe\xdb\x5a\x2d\x91\x77\xe7\x55\x3c\xb0\x7f\x05\x6e\x87\xbd\x05\x6f\xc1\x3f\x01\x00\x00\xff\xff\xcd\x41\x82\xba\xe1\x0d\x00\x00" +var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\x7c\x08\x64\xc0\x91\xd2\x63\x0d\x27\x8b\xd4\xe8\xa2\xc5\xa6\x68\xd0\xa6\xbb\xe7\x89\x38\xb6\x88\xd0\xa4\x4a\x52\x36\x84\x20\xff\xbd\xa0\x44\x3d\x28\x4b\x79\x14\xed\x65\x75\x08\x22\x6a\x1e\xdf\x7c\x33\x9c\x19\xf3\x43\xa1\xb4\x85\xad\xae\x0a\xab\x22\xff\xf6\x59\xa8\xd3\x83\x7a\x22\x09\x3b\xad\x0e\xb0\xe8\xde\x17\x9d\x44\x29\xf7\xfc\x51\x50\x20\x35\x3c\xeb\x24\xef\x54\xf6\x44\xac\x3e\x33\x5e\x70\x78\xb4\x88\xa2\x34\x4d\xe1\x41\xa3\x34\x98\x59\xae\x24\xd8\x1c\x2d\x20\x64\xa5\xb1\x8a\x55\x50\x68\x75\xe4\x8c\x34\x9c\x54\x29\x18\x18\xbe\x97\xb5\x8a\x55\x90\x69\x42\x4b\x80\x60\x72\xd4\xc4\x00\xb3\x4c\x95\xd2\xc2\x4e\x69\x40\x28\x8d\x53\xca\x15\xa0\xd0\x84\xac\xaa\xb5\x72\x34\x60\x73\xe2\x1a\x4a\x29\x6a\x1c\x9d\x56\x63\x8d\x39\xb1\x06\x53\x4e\xe7\x42\xb5\xbe\xaa\x51\x38\x3b\x60\x07\xc0\x51\x18\x15\x45\x83\x93\x38\x02\x00\x28\x50\x5b\x8e\xe2\x96\x1d\xb8\xbc\x2f\x1f\x05\xcf\xbe\x50\xb5\xf6\x94\x27\x5f\xa8\xba\xe3\xc6\xfe\x2c\xad\xae\x56\x90\xa6\xf0\x8d\xf8\x3e\xb7\x6b\xf8\xe1\xea\x6a\xa8\xfe\x97\x21\xfd\x01\xed\x1f\xaf\xae\xa2\x25\xc0\x73\xd4\xd8\xd0\x54\xa0\xa6\xd8\x73\x7a\xef\x29\x5d\x03\x96\x36\x8f\x7f\x52\x5a\xab\xd3\x57\x14\x25\x2d\xe1\xe2\xb6\x89\x74\x55\xf3\xe7\x5f\xbc\xe0\x9f\x56\x69\xdc\xd3\x0a\xb6\x58\xe0\x23\x17\xdc\x72\x32\xbd\xca\xb2\x75\xe7\x1e\x41\xd6\xa7\xc5\x7f\x85\x6b\xf0\xff\xc5\x05\x56\xce\xf9\x08\xcd\xb2\x57\x0e\x14\x93\x27\xaa\x4c\x82\x8c\xc5\x45\x1f\xff\x24\xa9\x49\x27\xb0\x72\x89\xca\x6f\xc5\x5e\x69\x6e\xf3\xc3\x9c\x7c\x20\xb4\x82\x93\x27\x6f\x5a\xb8\xf9\xba\xfc\x38\xc8\x20\x75\x6f\x63\x0c\xc5\x5f\x87\x18\xca\xb6\x08\x83\x24\x1c\xb1\x14\xb6\x4b\x58\x05\xd7\x23\xe0\xd9\x20\x97\x89\x69\x32\xdc\x19\x70\x4f\xc2\x8d\x29\x69\x53\x57\x40\x70\xc7\x93\x6f\xdc\xe6\x4c\xe3\x69\x09\x17\x5d\x8b\x48\xbe\x3a\x7f\x37\x71\xea\x4d\xa5\xbb\xf6\x4b\xfd\x61\x04\x4e\xf4\xad\xe0\x37\x94\xb8\x27\x0d\x9b\xcb\xa0\x67\x24\xcd\xb5\xbc\x3b\x13\x8c\xeb\xc0\xd6\xe3\xf8\x66\xab\xc8\xe3\x49\x0c\x1e\x29\xde\x5c\x9e\x7b\x5e\x81\x55\xeb\xd0\xf7\xb9\x57\x7f\x05\xee\xd1\xe6\xa3\x50\xec\x40\xea\x7f\xa7\xfb\x0d\x94\x37\x71\x60\xd2\x3d\xef\x8f\x2b\x50\x9d\x0a\xf2\x17\x25\xd8\x6c\xa2\x1e\x7a\x89\x10\x44\x43\xf8\x2d\x63\x9a\x8c\x59\x8f\x58\xc1\xe6\x78\x15\x68\x0c\x19\x5d\xcf\xf0\x1b\x4d\x00\x1d\x34\xae\x30\xeb\x81\xf5\xcd\xe5\x20\x98\xb1\xe3\x51\x1d\x0c\x82\x9a\x22\x6a\x9e\xa4\x2d\x16\x70\x1d\x00\x9a\xca\xbf\x4f\xf9\xc5\x9c\xcf\x9b\xf8\x1d\x68\x96\x93\xf1\x07\xee\xea\xd6\x63\xf2\x38\x04\xb8\x02\xb4\x93\x75\xef\x6d\xfc\x2a\x77\xaa\xe9\x31\x73\x55\x5f\x37\xca\xef\xb6\xe6\xc5\x90\x8c\xad\x2b\x72\xa5\xe1\x7a\x3c\xbd\xa6\xe3\x7a\xac\x47\xeb\x66\x0a\x7b\x68\xf0\x26\x76\xbb\xd1\x6b\x69\xf0\x82\x93\x19\x77\xcf\xa7\x4f\x50\xa0\xe4\x59\xbc\xd8\xd6\x8b\x92\x54\x16\x1a\xf7\x30\xb5\xe8\x28\xbd\x18\xc6\x39\xe1\xc9\x5d\xca\x76\x62\x07\x9e\x82\xe4\x7e\xe4\x42\xb7\xdb\xd4\x58\x75\x58\xb0\xf3\x9d\xa0\xae\xb2\xf5\x64\xc5\x4d\xdd\xc4\x34\x85\xdf\x8f\xa4\x35\x67\x54\x6f\x6a\x8c\x76\x6e\x52\x0c\x96\x5b\x4d\x19\xf1\x23\xe9\x64\x66\x62\x04\x65\x5b\xca\xf6\xf6\xa4\xcd\x04\xef\x07\xdb\x1f\xde\x4e\xe8\xdc\x2f\xa7\x92\x4e\x9d\xa3\x66\xb5\x3d\xa0\x7e\x32\xed\x19\x6b\xe2\x31\x80\xa6\xa3\x27\x99\x1b\x91\xa6\x6f\x7f\xef\xba\x63\x6d\x5f\x79\x0e\xef\x54\x8b\xf7\x65\xd4\x57\xde\x98\x76\xef\x20\xa9\xa5\x68\xa2\xf1\x8f\x03\x08\x13\xec\x3a\xd0\x2c\xaf\x33\xd9\x2d\x4a\x0b\x52\xe9\x03\x8a\x9e\x60\x2e\xdd\xaf\x01\xb7\xec\x3a\xee\x4b\xc9\xff\x2e\x09\x0a\xb4\x79\x72\xde\xb5\x5a\xf3\xff\x1d\x9b\xb3\x3b\xcf\xbf\xa5\x6e\x8c\x73\x9e\xb4\x86\xe4\xcf\xaf\x50\xe7\xfe\xbe\x44\x2f\xd1\x3f\x01\x00\x00\xff\xff\x54\x81\x36\x64\xf2\x0d\x00\x00" func lockedtokensAdminCustody_create_only_shared_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3900,11 +3940,11 @@ func lockedtokensAdminCustody_create_only_shared_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_shared_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x55, 0xbf, 0xb7, 0x6c, 0xdf, 0x9b, 0xe, 0x1e, 0xf4, 0x72, 0xb3, 0xa8, 0x9b, 0xad, 0x62, 0x78, 0x7b, 0xc3, 0xc1, 0xb1, 0x5d, 0x45, 0x73, 0xad, 0x27, 0xbc, 0x2b, 0xc0, 0x9f, 0x7c, 0xd7, 0xab}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0xe5, 0xf1, 0xe3, 0x9c, 0x8f, 0xa1, 0xf1, 0xe8, 0x70, 0x0, 0xa1, 0xcd, 0x92, 0x19, 0x17, 0x49, 0xf2, 0x4e, 0x68, 0xef, 0x32, 0x85, 0xb6, 0xac, 0x41, 0x2a, 0x9b, 0xfe, 0xa8, 0x96, 0x31}} return a, nil } -var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\xf6\x50\x28\x80\x63\x79\x8f\x15\x92\x2e\x5c\xc7\x69\x17\x71\x37\x41\x92\xed\x9e\x69\x69\x6c\x11\x96\x49\x95\xa4\xec\x0a\x41\xfe\x7b\x41\x51\x5f\x94\xa8\x38\x0e\x0a\xb4\xba\xd9\x7c\xc3\x99\x79\x6f\x66\x48\xd2\x7d\xc6\x85\x82\x85\x28\x32\xc5\xbd\xea\xd7\x6d\xca\x8f\xcf\x7c\x87\x0c\x36\x82\xef\x61\xf6\xf7\xed\xea\xfe\xc7\xf3\xfd\xdd\xf2\xdb\xfc\xe6\xe6\x71\xf9\xf4\xd4\x00\x73\xb6\xa5\xeb\x14\x6d\xf0\xf7\x6f\xbf\x7d\xfd\x75\xb5\x74\x19\xac\x78\xb4\xc3\xb8\x84\xcb\x1a\xbf\xba\x5f\xdc\x2d\x6f\x2c\xb4\x17\x04\x01\x3c\x0b\xc2\x24\x89\x14\xe5\x0c\x54\x42\x14\x10\x88\x72\xa9\x78\x5c\x40\x26\xf8\x81\xc6\x28\xe0\xc8\xf3\x34\x06\x49\xb7\xac\x34\x51\x1c\x22\x81\x44\x21\x10\x90\x09\x11\x18\x03\x89\x22\x9e\x33\x05\x84\xc5\x40\x18\xe4\x2c\x2d\x43\x28\xe1\xf5\xda\x86\x0b\x20\x90\x4b\x14\x9e\xa7\x5a\xaf\xbe\x07\x00\x90\x11\xa1\x28\x49\xe7\xf1\x9e\xb2\x87\x7c\x9d\xd2\xe8\x0e\x8b\xb0\x62\x6c\x7a\x87\xc5\x8a\x4a\xb5\x64\x4a\x14\x13\x08\x02\xf8\x81\x74\x9b\xa8\x10\x3e\xcf\x66\x5d\xf3\xef\x12\xc5\x19\xd6\x3f\x57\xd6\x9b\x3c\x3d\xd7\xf4\xf3\x6c\x36\xf3\x2e\xe0\xc5\x33\xee\x05\x66\x44\xa0\x5f\x31\xf7\x50\x11\x17\xc2\x3c\x57\xc9\xdc\xe4\xdf\x80\xf5\x97\xa2\xaa\xa8\xab\x56\xe1\xba\x8b\xf5\x33\x52\x68\xf3\xde\x7e\x17\x96\xbd\x66\xf2\x3c\xeb\xc6\xdc\x72\x3d\xdd\x61\x21\xa7\x24\x8e\xfd\xac\xcd\xdf\xa9\xc7\xb4\x01\x4c\x20\x21\x32\x99\xa7\x5b\x2e\xa8\x4a\xf6\x63\x78\x0b\x34\x81\x63\x45\x9e\x1b\x6c\x56\x2f\xce\x0f\xd2\x92\xee\x74\x8c\x36\xfc\xed\x10\x6d\x6c\x1d\x61\x13\x62\x47\x02\x67\x80\x83\xc2\x7a\x23\xba\x21\x76\x24\xb4\x21\x70\x10\x97\x2e\x8f\x03\xc9\x53\xb5\x20\x19\x59\xd3\x94\xaa\x02\xae\x6d\x42\x1b\xac\xfe\xa6\x29\x65\xbb\xab\x9f\x9a\x89\x34\xfd\x53\x1b\xff\xe2\x5b\x20\xfd\x05\x99\xa0\x07\xa2\x30\xd8\xd4\xd0\x12\x39\x19\x00\x15\x11\x5b\x54\x21\x04\x52\x71\x41\xb6\x7d\x03\x0b\x7f\x61\xfd\xfa\xf2\x05\x32\xc2\x68\xe4\x7f\x5a\x94\x63\x87\x71\x05\x3a\xbc\x72\x5e\x82\x99\x81\xe5\x1e\x10\x35\xc9\x7d\xea\xe5\x9e\xb6\x03\xf0\x0f\xc2\xc8\x16\x05\x5c\x5d\x5a\x63\x71\x6a\x26\xd8\x6a\x00\xf4\x4b\xde\xc2\x3e\x7d\xa3\xcd\x23\xc9\x01\xfd\xab\xcb\xa1\xc7\x09\x28\x1e\xda\x3e\x87\xde\x9e\x0c\x3b\x0f\x44\x25\xbd\x14\x54\x07\x75\x9e\x8a\x27\x5c\x3a\x54\x3d\x61\xf1\x60\x34\xd7\x41\x8e\x0b\xfd\xfe\x44\x3f\xa2\x7d\xc9\x06\xec\x2b\x2d\xc7\x85\x2f\x71\xbf\xf3\x34\x1e\x55\xfc\xb9\x45\xd8\x44\x18\x05\xe7\x71\x2c\x50\xca\xb0\xa7\x32\x31\x7f\xdb\xe9\x77\x25\x0a\x47\x04\xf3\xda\x44\x9d\x53\xa3\x2c\x1f\x6b\xd7\xab\xcb\x4e\x12\x7d\x87\x3d\x9e\x3b\xc9\x74\x08\x9e\x9c\x72\xea\xa8\x93\xce\x4e\x2f\x0e\x29\x2b\xcb\xaf\x6c\xc3\x5f\x7b\x05\xf4\x36\xda\x0c\xa9\x61\xe9\x38\xcb\xc6\x9d\x8e\x2b\x9b\x46\xeb\xf2\x0c\xf9\xaf\xfa\xc3\x1c\x60\xff\x97\xee\xe8\x1d\xf7\xfa\x9a\x66\xb5\x8d\x7b\x48\x56\x44\x2d\x74\x73\x70\x01\xd7\xfd\x6d\x6c\x06\xd7\x5c\x08\x7e\x74\x72\x68\x6f\xe4\x60\x51\x5f\x44\x9d\x4c\xd8\x96\x1f\xe7\xc2\x04\x07\x02\x37\x28\x90\x45\xa8\x19\x70\x79\xb0\x88\x70\xac\xeb\x6e\xaf\xaf\x52\x96\x53\xab\xb4\xce\x99\x14\xf5\x7d\xb8\x6f\xda\x6d\xca\xf1\x11\x53\x96\x59\xe8\xac\x77\x57\x6f\x04\x01\xdc\x1f\x50\x08\x1a\x23\xa8\x04\x21\xc6\x4d\x79\x5c\xb6\xef\x0d\x81\x11\xd2\x43\x47\x5b\x3b\x85\x9c\xe9\xaa\xf2\x03\x73\x57\x69\x4f\xee\xc7\xca\xcc\xf6\x55\x3d\x05\x18\x1e\x9b\x7d\xcd\x43\x62\x4f\xc4\x4e\xd6\xff\xc5\x26\x7c\x09\x44\xb6\xaf\x03\xb7\x7b\xd3\xa5\x73\x56\x3c\xa2\xe4\xb9\x88\xf0\xc5\x7a\x00\x4d\xeb\x30\xfa\x83\x68\x34\xde\x77\x4c\x9e\xf7\xb5\xa4\x9d\x78\x96\xaf\x81\x71\xb1\x27\x69\x9b\x38\x65\xfa\x4d\xa4\x1f\x03\x9a\x93\x9c\xd1\xbf\x72\x84\xac\xbb\xc7\xbf\x9b\xab\x21\xf2\xf6\x7d\x19\x9f\xba\x8b\x99\x0e\x7b\xf5\x5e\xbd\x7f\x02\x00\x00\xff\xff\xa7\x8e\x77\xbc\xb0\x0e\x00\x00" +var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xde\x63\x0d\x27\x8b\xd4\xe8\xa2\xc5\xa6\x68\xd0\xa6\xbb\xe7\x89\x34\xb6\x88\xc8\xa4\xca\x1f\x1b\x46\x90\x77\x2f\x28\x51\xb2\x28\x51\x89\x53\xb4\x97\xf2\x10\x44\xe4\xfc\x7c\xf3\xcd\x70\x38\x66\xfb\x4a\x48\x0d\x1b\x79\xaa\xb4\x88\xdc\xd7\x97\x52\x1c\x1f\xc5\x33\x71\xd8\x4a\xb1\x87\x59\xf7\x3d\xeb\x24\x0c\xdf\xb1\xa7\x92\x3c\xa9\xfe\x5e\x27\x79\x2f\xb2\x67\xca\xeb\x3d\xe5\x04\xfb\x5b\xb3\x28\x4a\xd3\x14\x1e\x25\x72\x85\x99\x66\x82\x83\x2e\x50\x03\x42\x66\x94\x16\xf9\x09\x2a\x29\x0e\x2c\x27\x09\x47\x61\xca\x1c\x14\xdb\xf1\x5a\x45\x0b\xc8\x24\xa1\x26\x40\x50\x05\x4a\xca\x01\xb3\x4c\x18\xae\x01\x79\x0e\xc8\xc1\xf0\xb2\xf6\x54\x8b\xb7\x67\x5b\x21\x01\xc1\x28\x92\x51\xa4\xcf\x5e\xe3\x08\x00\xa0\x42\xa9\x19\x96\x77\xf9\x9e\xf1\x07\xf3\x54\xb2\xec\x2b\x9d\x56\x8e\x9d\xe4\x2b\x9d\xee\x99\xd2\x3f\x71\x2d\x4f\x0b\x48\x53\xf8\x4e\x6c\x57\xe8\x15\x7c\x5a\x2e\xfb\xea\x7f\x2a\x92\x1f\xd0\xfe\xc1\x69\x6f\x4d\xf9\x51\xd5\x4f\xcb\xe5\x32\x9a\xc3\x4b\xd4\xb8\x97\x54\xa1\xa4\xd8\x31\xf7\xe0\x88\x5b\x01\x1a\x5d\xc4\x3f\x0a\x29\xc5\xf1\x1b\x96\x86\xe6\x70\x75\xd7\xd0\xd1\xe9\xda\x55\x92\x76\x4c\xba\x53\xb8\x01\xf7\x5f\x5c\xe1\xc9\x5a\x1a\x98\x9e\x7b\xba\x96\xd4\xcb\x35\x3b\x55\xcf\x65\xf2\x4c\x27\x95\x60\x9e\xc7\xd5\x99\x86\x60\x5a\x92\x4e\x60\x01\x05\xaa\xe2\xae\xdc\x09\xc9\x74\xb1\x9f\x92\xf7\x84\x16\x70\x74\x1c\x86\x85\x9b\xd3\xf9\xc7\x41\x7a\x19\x7c\x1f\xa3\x2f\xfe\x36\x44\x5f\xb6\x45\xd8\x41\xec\xd1\x1f\x04\x38\xaa\xaf\x37\xd0\x8d\x65\x27\xa0\x8d\x05\x47\xb8\x6c\x69\x1c\xd0\x94\x7a\x83\x15\x3e\xb1\x92\xe9\x13\xdc\x0c\x08\xcd\xda\x23\x46\x2a\x51\x5a\x48\xdc\x51\x67\xc0\xae\x84\x29\x65\x68\x5d\x57\xb2\xd7\x68\x92\xef\x4c\x17\xb9\xc4\xe3\x1c\xae\xba\x3e\x95\x7c\xb3\xfe\x6e\xe3\xd4\x99\x4a\xb7\xed\x49\x7d\x30\x00\x57\x9e\xfb\xd1\xaf\xc8\x71\x47\x12\xd6\xd7\x5e\xe3\x4a\x9a\x4e\x73\x3f\x12\x8c\xeb\xc0\x56\xc3\xf8\x26\xab\xdb\xe1\x49\x14\x1e\x28\x5e\x5f\x8f\x3d\x2f\x40\x8b\x95\xef\x7b\xec\xf5\x8f\xc6\xca\x03\xea\x62\x10\x8a\xee\x49\xfd\xe7\x74\xbf\x83\xf2\x36\xf6\x4c\xda\x75\x79\x5c\x9e\x6a\x28\xc8\x9f\x45\x99\x4f\x26\xea\xf1\x2c\xe1\x83\x68\x08\xbf\xcb\x73\x49\x4a\xad\x06\xac\x60\xb3\xbd\xf0\x34\xfa\x8c\xae\x26\xf8\x8d\x02\x40\xfb\xb7\xd1\xcb\xba\x67\x7d\x7d\xdd\x0b\x66\xe8\x78\x50\x07\xbd\xa0\x42\x44\x4d\x93\xb4\xc1\x0a\x6e\x3c\x40\xa1\xfc\xbb\x94\x5f\x4d\xf9\xbc\x8d\x2f\x40\x33\x0f\xc6\xef\xb9\xab\x9b\x8e\x2a\x62\x1f\xe0\x02\x50\x07\xeb\xde\xd9\xf8\x85\x6f\x45\xd3\x63\xa6\xaa\xbe\x6e\xe0\xff\xdb\x9a\x2f\xfb\x64\x6c\x6c\x91\x0b\x09\x37\xc3\x57\x35\x1c\xd7\x53\xfd\xf2\xaf\x43\xd8\x7d\x83\xb7\xb1\x1d\xd0\xde\x4a\x83\x13\x0c\x66\xdc\xae\xcf\x9f\xa1\x42\xce\xb2\x78\xb6\xa9\xa7\x35\x2e\x34\x34\xee\xbb\x01\x2c\x73\xe0\x25\x6d\x49\x12\xcf\x68\xd6\x0f\x35\xe0\xcc\xde\xcb\x76\x98\xf0\x9c\x79\xf9\xfd\xc8\x9d\x6e\x07\xc3\xa1\x6a\xbf\x66\xa7\x9b\x41\x5d\x68\xab\x60\xd1\x85\x2e\x63\x9a\xc2\x6f\x07\x92\x92\xe5\x04\xba\x20\xc8\x69\x6b\x1f\x8b\xde\x90\x2d\x29\x23\x76\x20\x99\x4c\x3c\x1a\x5e\xe5\x1a\xde\x5e\xa0\xb4\x79\xbe\xcf\x6f\xdb\xef\xce\x8e\xef\xdc\x0d\xc9\x9c\x8e\x9d\xa3\x66\xc4\xde\xa3\x7c\x56\xed\x5e\xde\xc4\xa3\x00\x55\x47\x4f\x32\xf5\x4a\xaa\x73\x07\xbc\xe8\x9a\xb5\xad\xe5\xc5\xbf\x56\x2d\xde\xd7\x41\x6b\x79\xe7\xc1\xbb\x80\xa4\x96\xa2\x40\xef\x1f\x06\xe0\x27\xd8\x36\xa1\x49\x5e\x27\xb2\x5b\x19\x0d\x5c\xc8\x3d\x96\x67\x82\x19\xb7\xbf\x4a\xec\x38\x6e\xb9\x37\x9c\xfd\x65\x08\x2a\xd4\x45\x32\x6e\x5c\xad\xf9\x7f\x8f\xcd\xc9\xb1\xe7\x9f\x52\x37\xc4\x39\x4d\x5a\x43\xf2\x97\x37\xa8\xb3\x7f\x5f\xa3\xd7\xe8\xef\x00\x00\x00\xff\xff\x49\x24\x03\x98\x7a\x0e\x00\x00" func lockedtokensAdminCustody_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3920,11 +3960,11 @@ func lockedtokensAdminCustody_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x74, 0x50, 0x5a, 0xa9, 0xa6, 0xb0, 0xd4, 0xdd, 0x14, 0x0, 0xfe, 0x63, 0xd4, 0xc3, 0x61, 0x85, 0xb3, 0xc0, 0x6f, 0xc0, 0x4a, 0xba, 0x4c, 0x57, 0xb3, 0x72, 0x4d, 0xc2, 0x2a, 0xc0, 0x5d, 0x57}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8d, 0x9c, 0xa9, 0xa6, 0xfd, 0xba, 0xcb, 0xf6, 0x70, 0x43, 0xa6, 0x9a, 0x65, 0x1e, 0x20, 0xa, 0xe3, 0x83, 0x0, 0x12, 0xfd, 0xaa, 0xf5, 0x47, 0x97, 0x51, 0xdd, 0xcd, 0x30, 0xd9, 0x8d, 0x16}} return a, nil } -var _lockedtokensAdminCustody_setup_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\xdd\x6a\xc2\x40\x10\x85\xef\xf7\x29\xe6\xaa\x28\xf8\xd3\x6b\x91\x42\xd0\x5c\x29\x35\x34\xbe\xc0\x74\x33\x35\x4b\x92\xdd\x30\x3b\x49\x5b\x24\xef\x5e\x62\x30\x65\xa5\xc5\x76\xee\xf6\xcc\xcf\x39\xfb\x99\xaa\x76\x2c\xb0\x77\xba\xa0\xec\xe8\x0a\xb2\x1e\xde\xd8\x55\xf0\xf8\xb1\x3f\x6c\x76\xf1\xf6\x78\xd8\xc5\xcf\xd1\x76\xfb\x12\xa7\xa9\x52\xc2\x68\x3d\x6a\x31\xce\xc2\x59\x29\x00\x80\x9a\xa9\x46\xa6\x89\x6e\xbc\xb8\xec\x33\x61\xd7\x9a\x8c\x78\x05\x51\x23\x79\xa4\xb5\x6b\xac\x4c\xaf\xc3\x7d\x95\x24\x80\x83\xbe\x61\x42\x71\x0c\xeb\x79\x90\x60\xa1\x7b\x9d\x06\x29\x0a\x46\x27\xd3\xef\x43\x37\x8e\x0b\x8f\x2d\x4d\xc6\x6e\x5f\xeb\x79\x68\x34\x83\xa0\x2d\x6e\x15\xfa\xfe\xe4\x98\x8a\x63\x3c\x51\x82\x92\xcf\xc6\xed\x69\x70\x67\x7c\x2c\x97\x30\x44\x07\x4b\xef\xc0\xa4\xc9\xb4\xc4\x20\x39\x0a\x54\xc8\x85\xbf\x6a\x19\xc8\xc0\x1a\x3d\x34\xb6\xbc\xd8\xfe\xfa\xaf\xd2\xd8\x62\xfd\x70\x37\xe8\xf9\xee\x44\xd2\xbc\x96\x46\x77\x4f\x21\xa4\x3f\xae\x85\x00\x2e\xf8\x90\x4f\x24\xff\x43\x78\x43\xb0\x53\x9d\xfa\x0a\x00\x00\xff\xff\x03\x0d\xf1\xc2\x83\x02\x00\x00" +var _lockedtokensAdminCustody_setup_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x51\xcb\x6a\xeb\x30\x10\xdd\xeb\x2b\x86\x2c\x82\x03\x79\xec\x43\xee\x85\x90\x6d\x17\x86\x94\xee\x27\xf2\xb4\x16\x96\x25\x31\x1a\xb9\x94\x92\x7f\x2f\xae\x89\x6b\xa5\xe9\x03\x3a\x0b\x2f\x8e\x47\xe7\x35\xa6\x0d\x9e\x05\xee\xbc\x6e\xa8\xba\xf7\x0d\xb9\x08\x8f\xec\x5b\x98\x4d\xa1\x99\x52\xc2\xe8\x22\x6a\x31\xde\xc1\xab\x52\x00\x00\x81\x29\x20\x53\xa1\x53\x14\x5f\xbd\x94\xec\x3b\x53\x11\x6f\x01\x93\xd4\xc5\x11\x3b\x7a\x40\x9b\x68\x09\x07\x0c\x78\x32\xd6\x88\xa1\xb8\x80\xf9\x5e\x6b\x9f\x9c\x2c\x2e\x3c\xfd\x58\x12\xc0\x01\x3f\x30\xa1\x78\x86\xdd\x2a\xb3\xb5\xd6\x3d\x4e\x03\xb4\xcf\x56\x8b\xc5\x07\xd1\x95\x99\x75\x14\xcf\xf8\x44\xeb\x88\x1d\x15\xe3\x56\x3f\xbb\x55\x2e\xb8\xcc\xfe\x8a\xdf\xe6\xf2\xb7\x84\x8f\x03\x79\x89\x52\x8f\x8f\x27\x5e\x36\x1b\x18\x4c\x83\xa3\x67\x60\xd2\x64\x3a\x62\x90\x1a\x05\x5a\xe4\x26\x5e\xb0\x0a\x64\xa8\x1e\x23\x24\x67\xdf\x95\xb2\x6a\xec\x0d\xf1\x03\x06\xf8\xf7\x29\xaf\x9e\x74\x3d\x86\x37\x31\x26\xda\xcd\x7f\xcc\xf3\x3f\x6f\xe8\xaf\xf9\xbf\xf5\x16\xd2\xc9\x9a\x58\xe7\x8a\x5f\xe4\xcc\x4f\x83\xf2\x8b\xd3\x94\x3d\xbd\xbe\x72\xd6\x7f\xcf\xea\xac\xde\x02\x00\x00\xff\xff\xb3\xbb\x63\xe2\xf6\x02\x00\x00" func lockedtokensAdminCustody_setup_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3940,11 +3980,11 @@ func lockedtokensAdminCustody_setup_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_setup_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x96, 0xaa, 0x40, 0xfa, 0xc7, 0xc8, 0x86, 0x4b, 0xda, 0x8f, 0x8a, 0x8f, 0x20, 0x36, 0xd0, 0xb0, 0x25, 0xd0, 0xe0, 0xed, 0x70, 0x60, 0xf2, 0x2c, 0x9a, 0x8d, 0x46, 0x4c, 0xce, 0xd8, 0x9, 0x5f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcb, 0x18, 0xe4, 0x77, 0xf3, 0x8, 0x1c, 0x54, 0xd1, 0x5, 0x32, 0x49, 0x92, 0x5f, 0x1e, 0x68, 0xe1, 0x59, 0x8d, 0x29, 0x7e, 0x52, 0xc6, 0x8e, 0x2e, 0x6b, 0xc4, 0xe4, 0xe8, 0x87, 0x58, 0x72}} return a, nil } -var _lockedtokensAdminDeposit_locked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x51\x4f\xdb\x30\x10\x7e\x26\xbf\xe2\xe8\x03\xa4\x12\xa4\x7b\x98\xf6\x10\x15\x58\xd7\x16\x34\x51\xc1\x54\x60\x3c\xbb\xc9\xa5\xf1\x70\xed\xc8\xbe\x50\x10\xe2\xbf\x4f\xb1\xe3\x2c\xa6\x08\x96\x97\x28\xf6\xdd\x77\xdf\x7d\xf7\x5d\xf8\xa6\x52\x9a\xe0\xbc\x96\x6b\xbe\x12\x78\xab\x1e\x50\x42\xa1\xd5\x06\xbe\x3c\x9d\xdf\x5d\x5d\xfc\xfc\xb1\x98\xdf\x5e\x5f\xce\xaf\x26\xb3\xd9\x72\x7e\x73\x13\xf9\x04\xa1\xb6\x61\xf0\xe2\xfa\x3e\x08\xf4\x91\x0b\x95\x3d\x60\x6e\x63\x8d\x0f\x5e\x5c\x4f\x2f\xe7\xb3\x30\x9c\x34\x93\x86\x65\xc4\x95\x8c\x49\xa5\x30\xc9\x73\x8d\xc6\x1c\x01\xdb\xa8\x5a\x52\x0a\x77\xe7\xfc\xe9\xdb\xd7\x21\xbc\x44\x11\x00\xc0\x68\x04\xb7\x25\xc2\x6f\x56\x0b\x02\x8d\x46\xd5\x3a\x43\xa0\x92\x11\x94\x4a\xe4\x06\xa8\x44\x20\x57\xd6\x9e\x32\x8d\xb0\x42\x2e\xd7\x60\x4b\x15\xa8\x35\xe6\x16\x4a\x20\x81\x41\x49\x16\x2b\x85\xef\x81\x1a\x89\x3d\x75\x35\x2b\x8d\x15\xd3\x18\xb3\x7c\xc3\x65\x0a\x93\x9a\xca\x49\x96\x35\xf4\x3a\x5a\x2d\xb5\x0b\x24\x60\xa0\xb1\x40\x8d\xb2\xe1\xa5\x2c\x1f\x9b\x78\x68\xc0\x90\xd2\x98\xc3\xa3\x85\xf6\x69\x0d\x0d\x7b\xb2\xc4\x02\x4e\x5c\x6c\xb2\x52\x5a\xab\xed\xf8\xa0\x13\xdc\xf1\x39\x8d\x1b\x29\x53\x18\x35\x48\x6c\x8d\xa3\xc2\xdf\xdb\xeb\x61\xb4\xb7\xb7\x77\x76\x06\x15\x93\x3c\x8b\x07\x53\x55\x8b\x1c\xa4\x22\x70\x70\xbb\xc4\xd4\x56\xa2\x3e\x34\x4e\xce\xfd\xc1\x30\x0a\x58\x59\x2a\x3d\x56\xdd\x65\xf3\x74\x14\xfb\x93\x4e\xec\x6b\xd2\x04\x4f\x95\x10\x68\xe7\x7a\x1a\x07\x89\xcd\xe3\xba\x08\x32\x7b\x1f\x6f\xf2\x6f\x5c\xaf\xbf\x18\x95\x01\xd0\x30\xf8\xfa\xa0\xed\x77\x26\x22\x6c\x35\x67\x14\xd7\x1c\x64\x5d\xc1\xbe\x0e\xcc\x18\xd4\x14\x76\xe0\x75\x49\xd6\x48\xad\x11\x62\xe6\x7c\x9b\x02\xa9\x21\xec\x9f\x80\xe4\xe2\x28\x48\xda\xa0\x31\x6c\x8d\x29\x0c\x1a\xff\x9a\x0a\x33\x5e\x70\xcc\x81\x39\x00\xe0\xc6\x52\x66\x9e\x5a\x7b\xbe\x0f\x53\x26\x9b\x0b\x83\x32\x0f\x68\x9b\x41\xf4\x4f\x89\xbe\x09\xef\x39\x95\xb9\x66\x5b\xbf\x06\x76\xfb\x3e\xb5\xa1\x41\x51\x24\xdd\x3a\xc0\xf8\xb8\x33\x65\xb2\x6d\x01\x63\xbf\x93\xee\xed\xf4\x7f\x75\xb5\xf1\x09\xb3\x9a\xf0\x9d\x7d\x68\x2a\x6b\xcc\x78\xc5\x51\xd2\xa1\x81\xaa\x5e\x09\x9e\x75\x7d\xab\xd5\x1f\xcc\xc2\x6d\xe8\xa2\xe1\x04\x7a\x12\x93\x1a\xfe\xcf\xb2\xf5\x6b\x2d\x31\x43\xfe\x88\xfa\x2d\xbc\x3d\x74\xce\xee\xc2\x43\x77\xaf\x91\xa6\xac\x62\x2b\x2e\x38\x3d\x8f\x0f\x26\xf2\x79\xd9\xfe\x6c\x5e\xc2\xff\x84\x2f\xf1\xfa\x8e\xcd\x47\xae\xd7\x91\x1b\x5b\xb7\xcb\x3b\xac\x76\xdd\xdc\x6e\x57\xfc\xf9\x46\x3b\xa8\x8f\x65\x68\x6d\x63\x27\x3b\x08\x45\x9c\x61\xa5\x0c\x77\x53\xf2\x73\x96\xde\x39\x5c\xee\x40\xe9\xb7\xdc\x7b\x6a\x26\xb9\x03\x6b\x7f\x52\xe3\xe3\xd0\x53\xde\x2f\xaf\xd1\xdf\x00\x00\x00\xff\xff\xf3\x18\x9a\xb9\x7f\x06\x00\x00" +var _lockedtokensAdminDeposit_locked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x4f\xdc\x3e\x10\x3d\x93\x4f\x31\xe4\x00\x89\x04\xd9\xcb\x4f\xbf\x43\xc4\x9f\x52\x2a\x7a\xe9\xa1\xa2\x94\x9e\x1d\x67\xb2\x71\xf1\xda\x91\x3d\x61\x91\x10\xdf\xbd\x8a\x1d\xbb\xf1\xee\x0a\x9a\x4b\xe4\xf1\xcc\xbc\x37\x33\x6f\x2c\x36\x83\x36\x04\x77\xa3\x5a\x8b\x46\xe2\x83\x7e\x42\x05\x9d\xd1\x1b\xc8\x13\x5b\x9e\x05\x4f\xa9\xb7\x89\x57\x38\xe7\x59\x70\xf9\xa6\xf9\x13\xb6\xce\x68\x67\xaf\xa5\x29\xcf\x32\x32\x4c\x59\xc6\x49\x68\x55\x90\xae\xe1\xa6\x6d\x0d\x5a\x7b\x06\x6c\xa3\x47\x45\x35\xfc\xbc\x13\x2f\xff\xff\x57\xc2\x6b\x96\x01\x00\xac\x56\xf0\xd0\x23\x3c\xb2\x51\x12\x18\xb4\x7a\x34\x1c\x81\x7a\x46\xd0\x6b\xd9\x5a\xa0\x1e\x81\x3c\xa0\xb3\x32\x83\xd0\xa0\x50\x6b\x70\x50\x1d\x1a\x83\xad\x4b\x25\x91\xc0\xa2\x22\x97\xab\x86\x4f\xaf\x49\x99\x95\x33\xbf\x79\xd4\xc1\xe0\xc0\x0c\x16\xac\xdd\x08\x55\x03\x1b\xa9\x2f\x3e\x6b\x63\xf4\xf6\x91\xc9\x11\x4b\x38\xb9\xe1\x7c\xe2\x1b\x79\xce\x5c\xbf\x22\x01\x03\x83\x1d\x1a\x54\x13\x51\xed\x08\xba\x3c\xa7\x16\x2c\x69\x83\x2d\x3c\x4f\x50\x31\x6c\xe2\xe5\x2c\xf7\xd8\xc1\xa5\xf7\xad\x26\x4f\xb6\xc6\xaa\x71\xa8\x17\x8e\x41\xca\xf7\x97\xa0\xbe\x35\x6c\x5b\xc2\x49\x9c\x84\x2f\xe2\xaa\x98\x5a\x5f\xc3\x6a\x4e\xb2\xea\xc2\xbd\xbb\x2e\xb3\xa3\xa3\xa3\xeb\x6b\x18\x98\x12\xbc\xc8\x6f\xf5\x28\x5b\x50\x9a\xc0\x63\xed\xb3\xd7\x5b\x85\xe6\xd4\xfa\x21\x1c\xe7\x65\x96\x50\x77\x7c\x0f\x50\x8f\x4e\xd3\x17\xea\x38\x59\xca\xa1\x72\xbf\x9b\x29\xe8\x56\x4b\x89\x4e\x15\x57\x45\x12\x38\x7d\xbe\x9a\x24\x72\x71\xd8\x89\xff\xe1\xd1\xbf\x33\xea\x93\x44\x65\x72\x7a\xa7\xfc\x03\xe3\x93\x0e\xcd\xcb\xcc\x17\x09\x3c\x02\x2e\xfb\xc1\xac\x45\x43\x69\x05\xa1\x3f\xd5\x1a\x69\x56\x4d\xc1\xbc\xea\x6b\x20\x5d\xc2\xf1\x25\x28\x21\xcf\x92\xa0\x0d\x5a\xcb\xd6\x58\x43\x3e\xa9\xdf\x0e\xc8\x45\x27\xb0\x05\xe6\x13\x80\xb0\x8e\x32\x0b\xd4\x66\xfb\x31\xdc\x32\x35\x5d\x58\x54\x6d\x42\xdb\xe6\xd9\xdf\x4e\x2c\x15\x1b\x64\x14\x96\xc8\x6d\xed\x87\x9a\xb5\x28\xbb\x2a\x2e\x13\x5c\x9c\x47\x05\x57\xdb\x39\x61\x11\x36\xda\xff\x7d\xff\xe7\xfd\xc2\x17\xe4\x23\xe1\x81\xe5\x99\x90\x0d\x72\x31\x08\x54\x74\x6a\x61\x18\x1b\x29\x78\xac\x5b\x37\xbf\x91\xa7\xab\x13\xbd\xe1\x12\x16\x2d\x26\x5d\xfe\xcb\x66\x2e\xb1\xee\x91\xa3\x78\x46\xb3\x9b\xde\x19\xbd\xc2\xa3\x7b\xaa\x6e\xce\x06\xd6\x08\x29\x48\xa0\x8d\x52\xdf\x79\x5f\x42\xf6\xb7\x03\x0a\x5f\xf9\x32\x57\x7e\x62\x71\x9d\xf7\x08\xf9\xf1\x7d\xb4\xbe\x3e\xe8\xfd\x5a\x67\x6d\xb8\xf1\xe5\x69\xa7\xbe\xe0\xa0\xad\xf0\xa3\x08\xc3\x54\x41\x1e\x42\xed\xa5\x32\xbb\x2c\x17\x2d\xab\x5a\x9f\x6c\x7e\x91\x2e\xce\x53\xe1\x04\x51\xbc\x65\x7f\x02\x00\x00\xff\xff\x94\x91\x54\x35\x8e\x06\x00\x00" func lockedtokensAdminDeposit_locked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3960,31 +4000,11 @@ func lockedtokensAdminDeposit_locked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/deposit_locked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x97, 0xf7, 0x8d, 0x2a, 0x18, 0x7c, 0x14, 0x6a, 0x90, 0x21, 0x34, 0x33, 0x63, 0xb4, 0xa0, 0x31, 0x6b, 0xb8, 0x85, 0xb5, 0xbf, 0xe8, 0xdd, 0x6, 0xa8, 0xbc, 0x74, 0x3, 0x46, 0x89, 0x24}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0x20, 0xf3, 0x69, 0x56, 0x19, 0x68, 0x47, 0x94, 0x66, 0xf4, 0x82, 0x18, 0xa4, 0xba, 0x93, 0xed, 0x42, 0x70, 0xeb, 0xaf, 0xac, 0x53, 0x45, 0x32, 0x2e, 0xd2, 0x81, 0xf9, 0x8, 0xa6, 0x11}} return a, nil } -var _lockedtokensAdminGet_unlocking_bad_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x6e\x83\x30\x10\x44\xef\x7c\xc5\x34\x87\x0a\x2e\xc9\xa5\xea\x01\x95\x46\x34\x55\x3f\xa0\x52\x4f\x55\x0f\xc6\x36\x68\x05\xd9\x45\xc6\x56\x8b\x10\xff\x5e\x25\x10\x1a\x35\xf8\x64\xcb\x33\xf3\x66\x37\x8a\xda\x50\xa0\x0c\x8c\xa3\x22\x8e\xbd\xd4\x96\x73\x73\x24\x4e\x91\x1b\xe3\x6c\xd7\x25\x29\x86\xf9\x9a\xe2\xe3\x8d\x7e\x1e\x1f\x46\x0c\x51\x04\x00\x8d\xf5\xd0\xd2\xf6\x52\xbe\x92\xf6\x24\xac\x5c\xbf\x26\xcf\x30\x8c\x7f\x0e\xa5\xb5\x04\xf6\xc8\x50\x59\x9f\x4f\x8f\x2b\x72\x72\x16\x2e\x6a\xb3\x24\xbf\xdb\xd2\x3a\xcb\xda\x22\xbb\x64\x6c\x2b\xeb\x0f\xaa\x55\x05\x35\xe4\xfb\xa7\xfb\x1b\xf4\x73\xbc\x6b\x43\xd1\x90\xde\x05\x6e\x44\xd7\xc4\xd5\x8b\x32\x33\xb4\x4b\xb6\x85\x38\x27\xdf\xf1\xc4\x3c\x9d\xfd\x1e\xad\x62\xd2\xf1\xe6\x20\xa1\x31\x60\xf1\xa7\x9a\x28\x94\xb9\x40\xbb\xab\x4e\x9b\x64\x9a\xab\x14\x07\x35\xb1\x41\xbc\x56\x7a\x5b\xdb\xbe\xc3\xb0\x80\xfe\xef\xed\x73\xb6\x7f\x21\x5b\xb3\x2f\xdf\x77\xe7\x84\x79\x9d\xce\xfa\xe0\xf8\x26\x2b\x1a\x7f\x03\x00\x00\xff\xff\xc1\x6f\xdb\x13\xd8\x01\x00\x00" - -func lockedtokensAdminGet_unlocking_bad_accountsCdcBytes() ([]byte, error) { - return bindataRead( - _lockedtokensAdminGet_unlocking_bad_accountsCdc, - "lockedTokens/admin/get_unlocking_bad_accounts.cdc", - ) -} - -func lockedtokensAdminGet_unlocking_bad_accountsCdc() (*asset, error) { - bytes, err := lockedtokensAdminGet_unlocking_bad_accountsCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "lockedTokens/admin/get_unlocking_bad_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x78, 0xe6, 0x4d, 0xc9, 0xc6, 0x4c, 0x38, 0x6b, 0xac, 0x70, 0xbe, 0xab, 0x73, 0x1f, 0xac, 0x4a, 0x17, 0x50, 0xba, 0x88, 0xc7, 0xa8, 0xd1, 0x5e, 0x27, 0xaf, 0x36, 0xf3, 0x78, 0x8b, 0x30, 0x8b}} - return a, nil -} - -var _lockedtokensAdminUnlock_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x91\xcd\x6e\xea\x30\x10\x85\xf7\x79\x8a\xb9\x2c\xee\x4d\xa4\xab\xa8\x8b\xaa\x8b\xa8\x2d\x8a\x80\x6e\xa0\xa5\xe2\xe7\x01\xa6\xce\x04\x2c\x12\x4f\x34\x9e\xa8\x48\x15\xef\x5e\x25\x46\x34\xb0\xed\x6c\xc6\x96\x8f\xed\xef\x9c\xb1\x75\xc3\xa2\xb0\x60\x73\xa0\x62\xc3\x07\x72\x1e\x4a\xe1\x1a\xee\x8e\x8b\xe5\x64\x3e\x9b\x6e\x96\xf3\xd9\x5b\x3e\x9d\xae\x66\xeb\x75\x14\xa9\xa0\xf3\x68\xd4\xb2\x8b\x15\x65\x47\x9a\x1b\xc3\xad\xd3\x0c\xf2\xa2\x10\xf2\xfe\x3f\x14\x54\x29\x66\xb0\x7d\xb1\xc7\x87\xfb\x04\xbe\xa2\x08\x00\xa0\x11\x6a\x50\x28\xc6\xa2\xb6\x2e\x83\xbc\xd5\xfd\xf9\xea\x45\xd2\x55\x45\x0a\xbd\x64\x45\x25\x3c\x85\x65\xfa\xc1\x22\xfc\xf9\xf8\x77\x48\x99\xf6\x2d\xef\xce\x27\x5c\x55\xd4\x33\x3d\xc7\x1d\x7b\x76\x65\x27\x1d\x6c\x6e\xe4\x6b\x65\xc1\x1d\xbd\xa3\xee\x93\x0b\x41\x57\xe3\x31\x34\xe8\xac\x89\x47\x13\x6e\xab\x02\x1c\x2b\x04\x08\x40\x10\x2a\x49\xc8\x19\x02\x65\xd0\x3d\x05\x48\x30\x97\x67\x47\xc9\xb5\x1f\xed\xbe\x7e\x45\x87\x3b\x92\x81\xad\x15\x95\xe9\x4f\x80\x31\x86\xfc\x32\xb8\xca\x35\xf9\x73\x76\x1f\xff\x86\xb0\xf5\x24\xff\x7c\x00\x81\x3a\x90\x0c\x29\x6f\x08\x53\xeb\x8c\x10\x7a\xda\xba\x8a\xcd\x61\x61\x6b\xab\xf1\x79\xac\x7d\x0b\x2c\xa7\xe8\x14\x7d\x07\x00\x00\xff\xff\xd0\xd3\x4e\x0e\x40\x02\x00\x00" +var _lockedtokensAdminUnlock_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x91\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x63\x0e\x75\x03\x92\x93\x78\x08\x6a\xa9\x05\x4f\x15\xa4\x5a\xef\xe3\x66\xd2\x2e\xdd\xec\x84\xd9\x09\x0a\xd2\xff\x2e\xc9\x96\x9a\xf6\xea\x5c\x26\x59\x66\xde\x7e\xef\xad\x6b\x3b\x16\x85\x15\xdb\x3d\xd5\xef\xbc\xa7\x10\xa1\x11\x6e\x21\x9f\x1e\xe5\x59\xa6\x82\x21\xa2\x55\xc7\xc1\x28\xca\x96\x74\x61\x2d\xf7\x41\x2b\x58\xd4\xb5\x50\x8c\x37\x50\x93\x57\xac\x60\xf3\xec\xbe\xef\x6e\x0b\xf8\xc9\x32\x00\x80\x4e\xa8\x43\x21\x83\x75\xeb\x42\x05\xd8\xeb\xce\x3c\xb1\x08\x7f\x7d\xa0\xef\xa9\x80\xd9\x51\xe9\xb4\x31\x94\x27\x85\x71\x63\x4d\x0d\x3c\xa4\xcf\x32\x2a\x0b\x6e\xa9\xfc\x1c\xd7\xef\x67\x53\xc6\x72\x6c\x8b\x61\x6e\xc9\xde\xd3\x88\xfa\x68\x06\x33\xd5\x99\xbf\x72\xf2\x73\x31\xfe\x96\xf4\x5f\x51\x77\xc5\x89\x64\xa8\xf9\x1c\x3a\x0c\xce\x9a\x7c\xc9\xbd\xaf\x21\xb0\x42\x82\x00\x04\xa1\x86\x84\x82\x25\x50\x06\xdd\x51\x82\x05\x7b\x92\xcd\x8b\x73\x5f\x3a\x5c\xfd\x82\x01\xb7\x24\x13\x7b\x6b\x6a\xca\xbf\x5c\x0d\xa6\x58\x2b\x38\x8b\xbb\xb8\x3a\xba\x37\xff\x21\xec\x23\xc9\x75\x4c\x20\xd0\x26\x92\x29\xe5\x05\x61\xe9\x82\x15\xc2\x48\x9b\xe0\xd9\xee\x57\xae\x75\x6a\x8e\xaf\x3d\xb6\xc4\x72\xc8\x0e\xd9\x6f\x00\x00\x00\xff\xff\xfd\x94\x1c\x78\x51\x02\x00\x00" func lockedtokensAdminUnlock_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4000,11 +4020,11 @@ func lockedtokensAdminUnlock_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/unlock_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0x58, 0xa9, 0x1, 0xbc, 0x31, 0xd2, 0x33, 0xd, 0x5b, 0xb, 0x97, 0x13, 0xe6, 0x85, 0x86, 0x57, 0xa2, 0x99, 0xa6, 0x1f, 0x8c, 0x9f, 0x8b, 0xb5, 0xab, 0xd9, 0x40, 0x1, 0x5d, 0x97, 0x33}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x69, 0x90, 0x59, 0xfe, 0x29, 0x32, 0xe, 0xe7, 0xbe, 0x46, 0xb8, 0xce, 0x1a, 0x34, 0xdd, 0x1f, 0x52, 0x19, 0x81, 0x95, 0x62, 0x32, 0xfe, 0xdc, 0xb7, 0xcf, 0xca, 0xde, 0x73, 0x50, 0xb4, 0x10}} return a, nil } -var _lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x4d\x6f\xe3\x46\x0c\xbd\xfb\x57\xb0\x7b\xd8\xda\x40\x10\xf7\x50\xf4\x10\x24\xbb\x70\x93\xb4\x0d\x36\xed\x2e\x92\xec\xa9\xe8\x81\xd6\x50\xd2\xc0\xd2\x8c\x31\x43\xc5\x09\x02\xff\xf7\x82\x33\x92\x3d\xfa\x88\xb1\xba\x24\x96\xc8\xc7\xaf\x47\x3e\x5d\x6f\xad\x63\xb8\xb7\xd9\x86\xd4\x93\xdd\x90\xf1\x90\x3b\x5b\xc3\x2f\x2f\xf7\x5f\xaf\xbf\xdc\xde\x3c\x7d\xfd\x72\xfb\xcf\xea\xe6\xe6\xe1\xf6\xf1\x71\x36\x5b\x2e\xe1\xa9\xd4\x1e\xd8\xa1\xf1\x98\xb1\xb6\x06\x1a\x4f\x1e\xb8\x24\xa8\x02\x08\x70\x44\x41\x55\x6b\x23\x0e\x6c\xc1\x13\x07\x8b\xc6\x88\x0d\x54\xba\xd6\x0c\xb9\x75\x50\x37\x15\xeb\x6d\x45\x80\x59\x66\x1b\xc3\x5e\x1c\xb4\x01\x04\xaf\x4d\x51\x51\x1a\x28\x06\x3f\x98\x02\x2a\xe5\xc8\x4b\xf0\xc6\x93\x02\xf4\xb0\xa1\xd7\x00\xe0\x4b\xdb\x54\x0a\xd6\x94\x04\x15\x8b\xa1\xe3\x6c\x96\xc0\xcf\xa3\xdd\x9d\xc9\xed\x05\xbc\xad\xa2\xcd\x05\x7c\xff\x43\xbf\xfc\xf6\xeb\x7e\x01\x6f\xb3\x19\x00\xc0\xd6\xd1\x16\x1d\xcd\x43\x79\x17\xb0\x6a\xb8\x5c\x45\xdc\x83\x89\x3c\xcb\x25\x7c\xef\xe2\xae\x46\x09\x73\x89\x0c\x25\x2a\xf0\xb6\x26\xf0\x32\x01\x9b\x03\x39\x67\x5d\x8a\x80\x8e\xc0\xb3\x75\xa4\xa4\x27\x2c\x8d\x57\x3a\x24\x8b\xee\x15\xbc\x95\xf2\x5e\x21\x43\x23\xa5\x6a\xe3\xb7\x94\x31\x29\xa8\x90\xa9\x87\x73\x97\x87\x46\xa4\x43\x33\x44\xca\xcb\x68\x5c\x63\x8e\x53\x60\x5d\x93\x3f\x4b\x5d\xb9\x24\x13\x9c\x93\xc0\xda\x83\xb1\x0c\xf6\x99\xdc\xce\x69\x66\x32\x07\x8f\x67\x74\xb0\x46\xd5\x56\xec\x27\x1a\x09\x57\x91\x19\xe7\x95\x45\x75\x39\xfa\xfc\x69\x2e\xec\xbb\x80\xa5\xd4\x8d\x05\x2d\xe3\x54\xb4\x29\x7e\x3f\xc2\x2e\x0e\xf1\xe4\xf9\xfc\x19\xde\xf6\x32\xfe\x11\xd8\x71\x1c\x15\x71\x0c\xfb\x40\xf9\x21\x83\xb5\x75\xce\xee\x2e\x3f\xa6\xe4\x3f\x0f\x7f\x56\xf2\xfd\xda\x56\x15\x85\xa2\xbb\xa4\x7a\x86\xc9\x8f\x81\xf9\x63\x4c\xfd\x1b\x72\x39\xca\x74\x8b\x46\x67\xf3\x0f\xd7\x81\xa0\xd2\xc5\x98\x04\x20\x38\xca\xc9\x91\xc9\x48\xa6\x22\x1d\x0f\x49\x42\x76\x80\xfd\xb0\x38\xd6\x23\xbb\xd3\xf1\xba\xad\x5a\x28\x72\xa4\xf0\xb9\xec\x42\x4a\xc8\x76\x9e\xab\xaa\x12\xaa\x09\xbe\xce\xa5\x2d\x3e\xb0\x6c\x4d\x19\x36\x9e\x60\x47\xa0\xac\xf9\x99\x01\x76\x68\x18\xd8\x0e\xfd\x1d\x3d\x93\x8b\xcb\x4c\x86\xb5\xeb\xb3\x4a\xe7\x20\x8b\x8d\xba\xf2\x43\x47\xb6\x50\xb4\x57\x40\x9b\xdc\xba\x1a\x83\x87\x14\x72\x58\xf6\x76\x41\x7a\xae\x31\xcb\xf6\xb6\xb4\x04\x90\x02\xe3\x20\x0b\xe2\xf6\xdd\x7c\xd0\x8e\x7e\xe7\xe5\x39\x2f\x88\xaf\x71\x8b\x6b\x5d\x69\x7e\x9d\x1a\xfb\x5f\xb6\x52\xe4\xde\x26\xc6\x9c\x04\xde\x7f\x9a\x9f\x36\xf8\xd6\xac\x2b\x9d\x8d\xa7\x1f\x72\x88\xe3\x9e\x2f\x86\xa3\xe9\x48\xda\xab\xb3\x9b\xec\xd5\x64\xf9\x52\xcf\xfd\x84\xf9\x7c\x31\x86\xee\x75\x31\x72\x36\xfa\x3c\x50\x66\x9d\xea\x56\xa2\x45\xed\x5a\x8a\xdd\x3e\x4d\x65\x25\x25\x0c\xc3\xc8\x33\xf9\xb2\x8d\x1f\xa4\xe1\x6f\x34\x58\x90\x8b\x03\x7c\x2f\xa3\x93\x8d\x4a\x68\xf5\x67\x5f\x59\xb0\x0e\x97\x36\x28\xd8\xf0\xe4\xa1\x2b\x9a\x9a\x0c\x27\xa7\xec\x5d\x64\xb9\x63\x11\x72\x15\x11\xaf\x92\xdd\xfa\x77\x40\xb5\xff\x7e\x3a\x99\xe2\x9d\xc9\x1c\xa1\xa7\xb1\x02\xae\x5f\xe3\xa2\x87\x10\xef\x42\x0c\x9a\x76\xae\x5b\xbc\xa8\x2f\xf7\x82\x34\x57\x54\x31\x5e\xf4\x52\x9e\x60\x41\x92\xd4\xb5\x35\xac\x4d\x73\x38\x36\x86\x5e\x18\x34\x93\x8b\x6b\xd9\x9e\x88\xca\xda\xed\x29\x94\xee\x6c\x70\x22\xcb\xbe\xc9\x32\x22\x25\x7a\x6b\x14\x28\x4b\x51\x2d\x44\x70\x4e\x41\xb1\x15\x11\xab\xd1\x6d\xa2\x96\xaf\xf1\x7d\xf3\xac\x4d\x7e\xd2\x60\x3f\x7a\xbb\xef\x73\x72\x3f\x3a\x8a\xad\x3e\xd2\x0b\x65\x4d\x28\xbf\xc6\x0d\x79\x39\x65\x25\x39\x82\xf9\xa1\x08\x47\x98\x95\xc1\xb6\x4b\x01\x70\x6d\x9f\x69\x31\x44\xd4\x0c\x35\xa1\xf1\x41\xe0\xb9\xd4\xa6\x80\x9d\x50\x6f\xe7\xac\xfc\xab\xb9\x4c\xd8\x20\x5f\xe5\x0e\x26\x5d\x1c\xe2\x49\x2b\x35\x1f\x55\x7b\x4d\xe0\xf1\x79\xd0\xd1\x44\x78\x47\x14\x3d\x4d\xe0\xd9\x44\x6f\xa2\x46\x4a\x94\x29\x95\x4e\x62\x9d\x01\xdb\x1f\x16\xec\x56\xfb\xb5\xd9\x5c\x7e\x9c\x80\x5d\x6e\xc3\xf1\x9c\x04\x39\x03\x46\x57\x10\xff\x50\xac\xfd\x6c\x3f\xfb\x3f\x00\x00\xff\xff\xf5\xc0\xcc\x21\xdc\x0a\x00\x00" +var _lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x6f\xe3\x36\x10\xbd\xfb\x57\x4c\x73\x48\x65\x20\xb0\x2f\x45\x0f\x46\xb2\x0b\x37\x40\xdb\x00\x29\xb0\xd8\xee\x9e\x8a\x1e\xc6\xe4\xd8\x22\x22\x91\x06\x39\xb2\x13\x04\xfe\xef\xc5\x90\x92\x4d\x7d\xc4\x5d\x5d\x12\xcb\x33\x6f\xbe\xde\xcc\xb3\xa9\xf7\xce\x33\x3c\x3b\xf5\x42\xfa\x9b\x7b\x21\x1b\x60\xeb\x5d\x0d\x37\xf9\xab\x9b\xd9\x6c\xb9\x84\x6f\xa5\x09\xc0\x1e\x6d\x40\xc5\xc6\x59\x68\x02\x05\xe0\x92\xa0\x8a\xb6\xc0\xc9\x1f\x75\x6d\xac\x38\xb0\x83\x40\x1c\x2d\x1a\x2b\x36\x50\x99\xda\x30\x6c\x9d\x87\xba\xa9\xd8\xec\x2b\x02\x54\xca\x35\x96\x83\x38\x18\x0b\x08\xc1\xd8\x5d\x45\x79\xa0\x14\xfc\x6c\x0a\xa8\xb5\xa7\x20\xc1\x9b\x40\x1a\x30\xc0\x0b\xbd\x45\x80\x50\xba\xa6\xd2\xb0\xa1\x2c\xa8\x58\x0c\x1d\x67\xb3\x0c\xbe\x48\x76\x4f\x76\xeb\x56\xf0\xbe\x4e\x36\x2b\xf8\xfe\xbb\x79\xfd\xf5\x97\xd3\x1c\xde\x67\x33\x00\x80\xbd\xa7\x3d\x7a\x2a\x62\x79\x2b\xc0\x86\xcb\xe2\x6f\x76\x1e\x77\x74\x07\x8f\xb8\xc7\x8d\xa9\x0c\x1b\x0a\x73\xb8\x5d\xa7\x80\x67\x5f\x79\x96\x4b\xf8\xde\x25\xb4\x1e\x55\xc2\x25\x32\x94\xa8\x21\xb8\x9a\x20\xc8\x50\xdc\x16\xc8\x7b\xe7\x73\x04\xf4\x04\x81\x9d\x27\x2d\xcd\x62\x99\x88\x36\xb1\x0a\xf4\x6f\x10\x9c\xd4\xfd\x06\x0a\xad\xf4\xc0\xd8\xb0\x27\xc5\xa4\xa1\x42\xa6\x1e\xce\xd3\x36\x76\x28\x9f\xa6\x25\xd2\x41\x66\xe6\x1b\x7b\x19\x0f\x9b\x9a\xc2\x5d\xee\xca\x25\xd9\xe8\x9c\x05\x36\x01\xac\x63\x70\x07\xf2\x47\x6f\x98\xc9\x9e\x3d\x0e\xe8\x61\x83\xba\xad\x38\x4c\x74\x18\x1e\x12\x65\x16\x21\x75\x73\x51\x39\xd4\xf7\x23\xb3\x4f\x85\x10\x73\x05\xcb\xd6\x6c\x99\xc6\x66\xec\xee\xb7\x0b\xfc\xfc\x1c\x57\x9e\xcf\x9f\xe1\xfd\x24\xfc\x18\x81\x5d\xc6\x52\x11\xa7\xf0\x5f\x69\x3b\xca\x64\xe3\xbc\x77\xc7\xfb\xdb\x7c\x19\x16\xf1\xcf\x5a\xec\x1e\x5d\x55\x51\x6c\x42\x97\x5c\xcf\x30\xfb\x30\x30\x6f\x79\xf3\x05\xb9\x1c\x65\xbc\x47\x6b\x54\x71\xf3\x18\x99\x2c\x5d\x4d\x49\x00\x82\xa7\x2d\x79\xb2\x8a\x64\x4a\x32\x81\x98\x2c\xa8\x33\xec\xcd\xfc\x52\x97\x2c\x59\xb7\x00\x6d\xf5\x42\x99\x0b\xd7\x17\xb2\x34\x39\x41\xdb\xf9\xae\xab\x4a\xa8\x27\xf8\x66\x2b\xed\x09\x91\x75\x1b\x52\xd8\x04\x82\x23\x81\x76\xf6\x67\x06\x38\xa2\x65\x60\x37\xf4\xf7\x74\x20\x9f\xb6\x9e\x2c\x1b\xdf\x67\x99\xd9\x82\x5c\x00\x34\x55\x18\x3a\xb2\x83\x5d\x7b\x2e\x8c\xdd\x3a\x5f\x63\xf4\x90\x42\xce\x57\xa1\x5d\x98\x9e\x6b\xca\xb2\x3d\x42\x2d\x11\xa4\xc0\x34\xd0\x1d\x71\xfb\xae\x18\xb4\xa3\xdf\x79\x79\x16\x2a\x5b\xe3\x2b\xc3\xff\xd3\x55\x9a\xfc\xa7\x62\x62\xda\x59\xfc\x2f\xcd\xa6\x32\x2a\xce\x78\xd8\xe6\x8e\x78\xbd\x9c\xbb\x29\x3d\x4c\x96\xb2\xd8\x11\x3f\x4f\x98\x17\xf3\x31\x74\xaf\x23\x89\x7f\xc9\xe7\x2b\x29\xe7\x75\x47\xf3\x16\xb5\x6b\x0f\x76\x3b\x32\x95\x95\x94\x30\x0c\x23\xcf\xe4\xcb\x36\x7e\xd4\x83\xbf\xd0\xe2\x8e\x7c\x1a\xc6\x47\x19\xb5\xbd\x2e\x26\x1b\x95\x51\xe4\x8f\xbe\x9c\x60\x1d\xaf\x68\x14\xac\xe1\x39\x43\xbf\x6b\x6a\xb2\x9c\x9d\xa9\x0f\x91\xe5\x46\x25\xc8\x75\x42\x7c\xc8\xf6\xe4\x9f\x01\x6d\xfe\xfd\xe9\x6a\x8a\x4f\x56\x79\xc2\x40\x63\xd9\xdb\xbc\xa5\xa5\x8d\x21\x3e\x84\x18\x34\x6d\x61\x5a\xbc\xa4\x1d\xcf\x82\x54\x68\xaa\x18\x57\xbd\x94\x27\x58\x90\x25\xf5\xe8\x2c\x1b\xdb\x9c\x0f\x87\xa5\x57\x06\xc3\xe4\xd3\x8a\xb5\xeb\x5e\x39\xb7\xbf\x86\xd2\x9d\x00\xce\xb4\x38\x34\x4a\x11\x69\x11\x59\xab\x41\x3b\x4a\x4a\x20\x62\x72\x0d\x8a\x9d\x08\x54\x8d\xfe\x25\x09\xf8\x06\x3f\x36\x57\x6d\xf2\x93\x06\xa7\xd1\xdb\x53\x9f\x93\xa7\xd1\x81\x6b\xb5\x8f\x5e\x49\x35\xb1\xfc\x1a\x5f\x28\xc8\x59\x2a\xc9\x13\x14\xe7\x22\x3c\xa1\x2a\xa3\x6d\x97\x02\xe0\xc6\x1d\x68\x3e\x44\x34\x0c\x35\xa1\x0d\x51\xbc\xb9\x34\x76\x07\x47\xa1\xde\xd1\x3b\xf9\xd7\x70\x99\xb1\x41\xbe\x95\x9b\x96\x75\x71\x88\x27\xad\x34\x7c\x51\xe4\x0d\x41\xc0\xc3\xa0\xa3\x99\xa8\x8e\x28\x7a\x9d\xc0\xb3\x89\xde\xf4\x75\x4f\xa2\x4d\x29\x70\x16\xf3\x0e\xd8\xfd\xaf\x18\xf7\x54\x76\xc2\xe4\x11\xf7\x67\xcd\xed\xdd\xde\x2e\x11\x13\x42\x43\xf7\xb7\x13\xa9\xfc\xe0\xcf\x80\x09\xec\xbd\xdc\xe5\x50\x16\xd3\xf9\xdc\x01\xf2\x0a\x96\xd1\x48\x5d\x01\x3f\xcd\x4e\xb3\xff\x02\x00\x00\xff\xff\x96\x5e\x9c\xb2\x3e\x0b\x00\x00" func lockedtokensAdminUnlock_tokens_for_multiple_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -4020,11 +4040,11 @@ func lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0xa2, 0x43, 0xbc, 0x49, 0x46, 0x92, 0xec, 0x61, 0x1a, 0x24, 0xbd, 0x80, 0x79, 0x40, 0x9e, 0x6d, 0x9f, 0x5e, 0x56, 0xff, 0x85, 0xca, 0x7b, 0x49, 0x86, 0xc4, 0x1b, 0x47, 0x3c, 0xa8, 0xd2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x2d, 0x48, 0xce, 0xc5, 0xd4, 0xe6, 0xfb, 0x53, 0xc1, 0x93, 0x3b, 0xed, 0x3b, 0x3c, 0xa3, 0x70, 0x2d, 0xac, 0x89, 0xe5, 0x3d, 0x8a, 0xd2, 0xa8, 0xe6, 0x77, 0xa5, 0xd9, 0xfb, 0xfc, 0xef}} return a, nil } -var _lockedtokensDelegatorDelegate_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\x4d\x6f\xda\x40\x10\xbd\xfb\x57\x4c\x39\x54\xe6\x10\xa7\x87\xaa\x07\x04\x8d\x48\x80\xb6\x0a\x82\x28\x24\xed\x79\xb1\xc7\x1f\x62\xf1\x58\xbb\xe3\x42\x85\xf8\xef\xd5\x7a\xd7\xc4\xeb\x24\x52\xa5\xfa\xb2\x82\x79\xf3\xde\x9b\x99\x57\xec\x2b\x52\x0c\x0b\x49\x87\x27\xda\x61\x09\xa9\xa2\x3d\x7c\x3a\x2e\x96\xeb\x5f\x4f\xeb\xfb\xf9\x6a\x3a\x9b\x3d\xce\x37\x9b\xa0\x05\xd6\x65\x56\x6c\x25\xfa\xe0\xe7\xd5\xb7\x1f\xb7\xcb\xf9\x5b\x0d\x4b\x8a\x77\x98\x34\x70\xdd\xe2\x97\xeb\xbb\xfb\xf9\xcc\x43\x07\xac\x44\xa9\x45\xcc\x05\x95\xa1\xd8\x53\x5d\xf2\x08\x9e\x17\xc5\xf1\xcb\xe7\x21\x9c\x82\x00\x00\x40\x22\x43\x4e\x32\x41\xf5\x88\xe9\x08\x3e\x76\xa9\xa3\xe6\xf9\xde\x54\x5f\xd0\xbf\x45\x2d\xd9\x82\x2f\x13\x46\x3f\xcd\x9f\x16\x53\x29\xac\x84\xc2\x50\xc4\xb1\x55\x9c\xd6\x9c\x4f\xed\x0f\x23\x0b\xee\xd3\x28\xd3\xe8\x22\x0d\x13\x70\x0d\xd1\x96\x94\xa2\xc3\xf8\x5d\x2b\x5f\x43\x33\xf2\x08\xde\xab\x6f\x98\x94\xc8\xf0\x41\x70\x3e\xbc\xa8\x99\xef\xe6\x06\x2a\x51\x16\x71\x38\xb8\xa3\x5a\x26\x50\x12\x83\x15\x03\x85\x29\x2a\x2c\x63\x04\x26\xe8\x70\x0d\x86\x81\x6f\xb8\x9d\xfe\x0d\xbf\xbd\x6d\xb4\x36\xaf\xb5\xf5\x73\x9d\xb6\xf5\xa6\xfc\xcf\xd6\x4c\x1b\x70\x13\x8d\x46\xfc\xc5\xeb\xc0\x72\x9c\xad\x45\x3c\x62\x5c\x33\x76\x36\x6c\xae\xa5\x59\xec\x50\x3d\x28\x3a\xfe\x81\x49\x6f\xe7\xce\xf9\x0c\x25\x66\x82\x49\x85\x9d\x61\x4d\xaf\x6c\x16\x7c\x2b\xa4\x30\x8b\x79\xd5\x9d\x21\xdb\x13\xb8\xe3\x3a\x60\x97\xa5\x48\xc1\xe6\x0e\xc6\x93\x1e\xdd\x29\xf0\x16\xd0\xf1\x19\x25\xd6\x10\xae\xd0\xee\x4b\x5f\xc2\x6b\xdf\x8e\xc0\x19\x50\x6a\x34\x3a\xa1\x03\xc1\x95\x2f\x34\x34\xd2\xde\xe9\xa2\x6d\x5b\xe9\x7b\xf0\xe7\x4b\xb0\x22\x5d\xb0\x3b\xe3\xf8\xca\x27\x39\x14\x9c\x27\x4a\x1c\x7a\xde\x5e\xc9\x0f\xff\x67\xce\xde\x98\x27\x8f\xca\x05\x66\x45\x0c\x58\x52\x9d\xe5\x36\x25\xda\x44\xb8\x91\xf9\x30\xe8\x30\xb8\xa8\x9c\x83\xbf\x01\x00\x00\xff\xff\x25\x14\xe5\x23\x9e\x04\x00\x00" +var _lockedtokensDelegatorDelegate_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x6b\xdb\x40\x10\xbd\xeb\x57\x4c\x75\x08\x12\x34\xca\xa5\xf4\x60\xec\x86\xa6\x25\xf4\x50\xd2\xd0\x8f\xf4\xbc\x96\x46\x96\xf0\x5a\x23\x76\x47\xb5\x8b\xf1\x7f\x2f\xfb\x21\x79\x57\x26\x34\x50\xaa\xcb\xa2\x9d\x99\x37\xef\xcd\x9b\x6d\x77\x3d\x29\x86\x7b\x49\xfb\xef\xb4\xc5\x0e\x6a\x45\x3b\x48\xa7\xff\x34\x19\x33\x86\x6e\xd3\xae\x25\x46\x59\xe1\xdd\x94\xf9\x99\xca\x2d\x56\xf6\x4e\xfb\xc4\xf0\x2a\x4d\x12\x56\xa2\xd3\xa2\xe4\x96\xba\x4c\xec\x68\xe8\x78\x01\x3f\xee\xdb\xc3\xdb\x37\x39\x1c\x93\x04\x00\x40\x22\x43\x43\xb2\x42\xf5\x15\xeb\x05\x88\x81\x9b\x2c\x44\x29\xec\xf1\xa5\x47\x25\x0c\x8c\x7e\x1d\x13\x2c\x7e\xb6\xdc\x54\x4a\xec\x73\xb8\xba\x2c\xfb\x64\x81\xcf\x8d\x7e\x89\x41\xf2\xb9\xcf\xb3\x48\xd3\x54\x8a\x27\x53\xe1\x00\x7a\x85\xbd\x50\x98\x89\xb2\x74\x4a\x2c\xc6\x1d\x29\x45\xfb\x27\x21\x07\xcc\xe1\xea\xbd\x8b\x19\x75\xe0\x3f\x8d\xb2\x2e\x26\x85\xb0\x02\x5f\x5f\x68\x26\x25\x36\x58\xac\x2d\xc2\xf2\x7f\x28\x7f\x97\x19\x5b\x16\xf0\x5c\xfc\x9b\xa3\xf0\x28\xb8\xc9\x27\xc2\xe6\xbb\xbd\x85\x5e\x74\x6d\x99\xa5\x1f\x68\x90\x15\x74\xc4\xe0\x78\x82\xc2\x1a\x15\x76\x25\x02\x13\x04\x58\x69\x9e\xc4\x9a\xc7\x61\xff\x45\xf2\x4b\x4d\x18\xb5\xdc\x78\x90\x9b\x7a\x8c\xdb\xf0\x8b\xf9\x9b\x32\x60\xbb\xdc\x96\xe1\x59\x50\xea\x30\x4e\x4e\x07\x1e\xb0\x1c\x18\x03\x27\xcd\x06\x69\x16\x5b\x54\x8f\x8a\x0e\xbf\x61\x35\xf3\xd6\xcb\xfa\x88\x12\x37\x82\x49\x65\xc1\x44\x4c\xad\xb4\x2e\xdc\x09\x29\xcc\xf4\x2e\xaa\x37\xc8\xce\x27\xbf\x44\x3e\x31\x44\x69\x6b\x70\xcf\x08\x96\xab\x19\xdc\x31\x89\x06\x10\xf0\x2c\x2a\x47\x08\x1f\xd0\xcd\x4b\x4f\x6f\xd1\x9d\x41\x83\x13\xa0\xd4\x68\xfa\x64\x3e\x09\xae\xe3\x46\xb9\x69\x1d\xf9\x5b\xac\xc7\xc8\x9c\x43\xac\xaf\xc2\x9e\x74\xcb\xde\xc6\xe5\x75\x0c\xb2\xf7\xc6\xcf\xb8\x5d\xb4\xcf\xff\x45\xe7\x4c\xe6\x31\x82\xf2\x0b\xf3\x40\x0c\xd8\xd1\xb0\x69\xdc\x96\x68\xb3\xe7\xb6\xcd\xab\x34\x40\xf0\xab\x72\x4a\xfe\x04\x00\x00\xff\xff\x27\x2b\xab\x74\x59\x05\x00\x00" func lockedtokensDelegatorDelegate_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4040,11 +4060,11 @@ func lockedtokensDelegatorDelegate_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0xc7, 0x4, 0xa0, 0xdf, 0xa1, 0xa9, 0xb0, 0xb0, 0x70, 0x98, 0x6, 0x1e, 0xd0, 0x93, 0xe4, 0x97, 0x13, 0x73, 0x7d, 0x6b, 0xde, 0x32, 0x8a, 0x55, 0x33, 0x8f, 0x4, 0xca, 0xfb, 0xd8, 0x5a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3e, 0xfd, 0xc4, 0x42, 0x2b, 0x91, 0x5b, 0x9a, 0x45, 0x5d, 0x9a, 0x60, 0xe7, 0xda, 0xab, 0x8, 0x8a, 0x76, 0xda, 0xf2, 0xe4, 0xb7, 0x0, 0x52, 0xc0, 0xe5, 0x43, 0xbf, 0xb5, 0xb5, 0x26, 0xd5}} return a, nil } -var _lockedtokensDelegatorDelegate_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x2f\xa1\x87\xd2\x83\xd4\x8a\x34\x96\x82\xa2\xa2\xf6\x07\x4c\x77\x27\x66\x31\xee\x84\xc9\x58\x53\x8a\xff\xbd\xe8\x9a\x54\x2b\xcd\x65\x32\xec\xe3\x7d\xfb\xde\xba\x6d\xc9\xa2\x30\x61\xb3\x21\xbb\xe2\x0d\xf9\x0a\x32\xe1\x2d\xdc\xd7\x93\xd9\xcb\x78\x94\xae\x66\xe3\xd1\x74\x98\xa6\x8b\xd1\x72\x19\x45\x2a\xe8\x2b\x34\xea\xd8\xc7\xb8\xe5\x9d\xd7\x1e\xbc\xbf\xba\xfa\xf1\xa1\x0b\xdf\x11\x00\x40\x41\x0a\x9e\x2d\xa5\x54\xd0\x1a\x95\x65\x2e\x5c\x7f\xf5\xae\x08\x49\x58\xa6\x37\xb2\xe8\x64\x51\x0a\x95\x28\x14\xa3\x31\x81\x30\xdc\x69\x3e\x0c\x4b\x83\x69\x50\x39\x17\x96\x64\x41\x19\xf4\xe1\xac\x4f\x3e\x58\x84\xf7\x4f\x77\x57\xc8\xd3\x78\x3b\xa9\x9f\xe3\x63\xc2\x3f\x57\xba\x38\x5f\x2a\x0b\xae\x69\x8e\x9a\x77\xa1\xa5\x1d\xbf\xc1\x00\x4a\xf4\xce\xc4\x9d\x0b\x39\xb8\x0a\x3c\x2b\x54\xf8\x49\x16\x50\xa1\x2a\xc9\xb8\xcc\x91\x85\x12\x35\xef\x74\x5b\x8b\xf6\xa7\xa2\x22\x4b\x6e\x5b\x82\xfe\x6f\x9e\x73\x8a\x56\x10\x07\x9b\x43\xa8\x88\x6a\x32\x3b\xa5\x8b\x32\xfe\xb1\x4c\x6c\x58\x69\x41\x7b\x14\xdb\xc4\x6d\x1f\x2f\xcc\xc6\xfb\x10\xfd\x04\x00\x00\xff\xff\xf2\xb4\xba\xeb\x10\x02\x00\x00" +var _lockedtokensDelegatorDelegate_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xcb\x6a\xeb\x30\x10\xdd\xfb\x2b\x06\x2f\x82\x0d\x17\xaf\x2e\x5d\x84\xa6\xa1\xa5\x84\x2e\x4a\x1b\xd2\xd7\x7a\x62\x8d\x63\x11\x47\x12\xa3\x71\x93\x52\xf2\xef\x25\x96\xed\xd8\x0d\xf5\x46\xd6\xe8\xe8\xbc\x90\xde\x39\xcb\x02\x8f\x36\xdf\x92\x7a\xb5\x5b\x32\x1e\x0a\xb6\x3b\x88\x87\xa3\x38\x6a\x71\x8b\xda\x6c\xf4\xba\xa2\x66\xdc\x02\x47\xb3\x38\x8a\x84\xd1\x78\xcc\x45\x5b\x93\xe0\xce\xd6\x46\xa6\xf0\xb6\xd0\x87\xab\xff\x29\x7c\x47\x00\x00\x15\x09\x18\xab\xe8\x9e\x2a\xda\xa0\x58\x5e\xb2\x3d\x7c\x4d\x47\x2e\xb2\xb0\x79\xba\x80\x45\x0d\x85\x63\x72\xc8\x94\x60\x9e\x07\x05\xac\xa5\x4c\xee\x2c\xb3\xdd\xbf\x63\x55\x53\x0a\x93\xdb\x70\xd6\xa9\x76\xca\xa5\xad\x14\xf1\x8a\x0a\x98\x41\x7b\x3d\xf3\x62\x19\x37\x94\xad\x1b\x82\xeb\x86\x6c\xe4\xa6\x59\x9e\x1d\x31\x9e\x72\xf9\x7f\xe3\x26\xb2\x0f\x2d\xa5\x62\xdc\xa7\x30\xb9\xbc\xf6\xd0\x08\xde\x24\xa7\xba\x7e\x85\x1c\x9c\xbf\x04\x0b\x4b\x94\x32\xed\xfd\x9e\xbe\xf9\x1c\x1c\x1a\x9d\x27\xf1\x00\x0d\xda\x83\xb1\x02\x1e\x3f\x49\x01\x0a\x78\x47\xb9\x2e\x34\x29\x70\x28\x65\x7c\xa6\xe8\x7f\x3c\x55\x45\x76\x59\x3b\xcc\xce\x8d\xb4\xf9\x7b\x40\x12\x68\x8e\xa1\x73\x3a\x50\x5e\x0b\x0d\xea\xfc\x83\x32\x53\x61\x4b\x2b\xda\x23\xab\x2e\x6d\xff\x1a\xc2\xda\x71\x1f\xa3\x9f\x00\x00\x00\xff\xff\xea\xe0\x30\x4d\x85\x02\x00\x00" func lockedtokensDelegatorDelegate_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4060,11 +4080,11 @@ func lockedtokensDelegatorDelegate_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9c, 0xb5, 0x9a, 0xc5, 0xf6, 0xa3, 0xb3, 0x51, 0x42, 0xb8, 0x88, 0xa8, 0x28, 0x71, 0x66, 0x3d, 0x34, 0x4, 0x99, 0xf3, 0x94, 0x13, 0xef, 0x85, 0x3f, 0x7f, 0xa0, 0xa3, 0x40, 0x76, 0x94, 0xb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd4, 0x98, 0x5, 0x2f, 0xf1, 0x93, 0xc8, 0x5b, 0xf1, 0x7e, 0x2d, 0x4e, 0xc0, 0x43, 0xef, 0xdb, 0xcc, 0x0, 0xc1, 0xf8, 0xcc, 0xd9, 0x4, 0x9a, 0xc0, 0x5c, 0x31, 0xaf, 0xb7, 0x3b, 0x43, 0x40}} return a, nil } -var _lockedtokensDelegatorDelegate_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6a\xc2\x40\x10\xc6\xef\x79\x8a\xc1\x43\x49\x2e\xa1\x87\xd2\x83\xd4\x8a\x34\x96\x82\xa2\xe2\x9f\x07\x98\x6e\x26\x66\x31\xee\x2c\xbb\x63\x9b\x52\x7c\xf7\x62\x56\xd3\x58\xe9\x5e\x86\x61\xbf\xfd\x7e\xf3\xcd\xea\xbd\x65\x27\x30\x65\xb5\xa3\x7c\xcd\x3b\x32\x1e\x0a\xc7\x7b\xb8\xaf\xa7\xf3\x97\xc9\x38\x5b\xcf\x27\xe3\xd9\x28\xcb\x96\xe3\xd5\x2a\x8a\xc4\xa1\xf1\xa8\x44\xb3\x89\x71\xcf\x07\x23\x7d\xd8\xbc\xea\xfa\xf1\x21\x81\xef\x08\x00\xa0\x22\x01\xc3\x39\x65\x54\xd1\x16\x85\xdd\xc2\x71\xfd\xd5\xbf\x22\xa4\xa1\x99\xdd\xc8\xa2\xc6\xc2\x3a\xb2\xe8\x28\x46\xa5\x02\x61\x74\x90\x72\x14\x9a\x0b\xe6\x82\x2a\xb9\xca\xc9\x2d\xa9\x80\x01\x9c\xf5\xe9\x3b\x3b\xc7\x9f\x4f\x77\x57\xc8\xa6\xbc\x35\xea\xe7\xf8\x94\xf0\xcf\x48\x9d\xfb\x95\xb0\xc3\x2d\x2d\x50\xca\x04\x5a\xda\xe9\x0c\x87\x60\xd1\x68\x15\xf7\x3a\x72\xd0\x1e\x0c\x0b\x78\xfc\xa0\x1c\x50\xc0\x5b\x52\xba\xd0\x94\x83\x45\x29\x7b\x49\xd4\x7a\x78\xaa\x8a\xf4\x76\x3b\x30\xf8\xcd\x71\x9e\xbe\x15\xc4\x49\xf3\xfa\x18\x4c\xa8\x26\x75\x10\xea\x2c\xe1\x1f\xcb\x34\x0f\x2d\x6d\x8c\x17\x6c\x63\xb6\x9f\x16\xea\xc5\xfb\x18\xfd\x04\x00\x00\xff\xff\xfe\xc1\x9a\x73\x08\x02\x00\x00" +var _lockedtokensDelegatorDelegate_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4f\x4b\xeb\x40\x10\xbf\xe7\x53\x0c\x39\x94\x04\x1e\x39\x3d\xde\xa1\xbc\x5a\x14\x29\x1e\x44\x8b\x5a\x3d\x4f\x77\x27\xcd\xd2\x74\x67\xd9\x9d\xd8\x8a\xf4\xbb\x4b\xb3\x69\x4c\x2c\xe6\xb2\xec\xec\x6f\x7e\xff\x88\xd9\x39\xf6\x02\xf7\xac\xb6\xa4\x5f\x78\x4b\x36\x40\xe9\x79\x07\xe9\x70\x94\x26\x1d\x6e\xd1\xd8\x8d\x59\xd7\xd4\x8e\x3b\xe0\x68\x96\x26\x89\x78\xb4\x01\x95\x18\xb6\x19\xee\xb8\xb1\x32\x85\xd5\xc2\x1c\xfe\xfd\xcd\xe1\x33\x01\x00\xa8\x49\xc0\xb2\xa6\x5b\xaa\x69\x83\xc2\x7e\xe9\xf9\xf0\x31\x1d\xb9\x28\xe2\xe5\xe1\x02\x96\xb4\x14\xce\x93\x43\x4f\x19\x2a\x15\x15\xb0\x91\x2a\xbb\x61\xef\x79\xff\x8a\x75\x43\x39\x4c\xae\xe3\xdb\x59\xf5\xac\x5c\x71\xad\xc9\x3f\x51\x09\x33\xe8\xd6\x8b\x20\xec\x71\x43\xc5\xba\x25\xf8\xdf\x92\x8d\xdc\xb4\xc7\xa3\x23\x8f\xa7\x5c\xe1\xcf\xb8\x89\xe2\xcd\x48\xa5\x3d\xee\x73\x98\x5c\xae\xdd\xb5\x82\x57\xd9\xa9\xae\x1f\x21\x07\xef\xcf\xd1\xc2\x12\xa5\xca\x7b\xbf\xa7\x6f\x3e\x07\x87\xd6\xa8\x2c\x1d\xa0\xc1\x04\xb0\x2c\x10\xf0\x9d\x34\xa0\x40\x70\xa4\x4c\x69\x48\x83\x43\xa9\xd2\x3c\xe9\x39\x02\xd5\x65\x71\x59\x37\xcc\xbe\x9b\xe8\x72\xf7\x80\x2c\x3a\x38\x46\x12\x3a\x90\x6a\x84\x06\x35\xfe\x42\x59\xe8\x78\xa5\x95\x0d\x82\x7d\xca\xfe\x2f\x88\xe7\x99\xfb\x98\x7c\x05\x00\x00\xff\xff\xbf\x32\xa6\x32\x7d\x02\x00\x00" func lockedtokensDelegatorDelegate_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4080,11 +4100,11 @@ func lockedtokensDelegatorDelegate_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/delegate_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x89, 0xfe, 0xf6, 0x67, 0xf, 0x7b, 0x3, 0xf4, 0x14, 0x99, 0xaa, 0x92, 0xe3, 0xd4, 0x35, 0x90, 0x51, 0x4f, 0x83, 0x36, 0xd6, 0xf9, 0xed, 0x2a, 0x9f, 0x37, 0x1, 0x43, 0x9f, 0xd5, 0x50, 0x8f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0x83, 0x51, 0xb4, 0x43, 0xb4, 0x5a, 0x2, 0xbf, 0x7, 0xab, 0xdf, 0x75, 0x84, 0x56, 0xd, 0x4a, 0xbe, 0x18, 0xa4, 0x1, 0x5e, 0xcc, 0xc5, 0xf0, 0x4, 0xe, 0x42, 0xc8, 0x24, 0xa0, 0x99}} return a, nil } -var _lockedtokensDelegatorGet_delegator_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x4f\x4f\xc2\x40\x10\xc5\xef\xfb\x29\x9e\x1c\x4c\x7b\x21\x46\x6f\x44\x25\x84\x92\x48\x20\x42\x00\x3f\xc0\x76\x3b\xc5\x0d\xcb\x4e\xb3\x9d\x8d\x1a\xc2\x77\x37\x6d\x15\xf1\x4f\x9c\xcb\x26\xb3\x6f\x7e\xef\xe5\xd9\x7d\xc5\x41\x30\x67\xb3\xa3\x62\xc3\x3b\xf2\x35\xca\xc0\x7b\x5c\xbd\xce\x17\xe3\xd9\x24\xdb\x2c\x66\x93\xc7\x51\x96\xad\x26\xeb\xb5\x52\x55\xcc\x51\x46\x8f\xbd\xb6\x3e\xd1\xc6\x70\xf4\x32\xc0\xa8\x28\x02\xd5\x75\x3a\xc0\xd3\xd4\xcb\xcd\x35\x0e\x4a\x01\x80\x23\x81\x6b\xc9\xa3\x4e\x3a\xf5\x25\xaf\xa8\xc4\x1d\xb6\x24\x1f\xbb\x4f\x4c\xda\x9e\x34\xd3\xdf\x92\x8c\x75\xa5\x73\xeb\xac\xbc\xdd\x5e\x9e\x87\xeb\xb7\xcf\x03\xbb\x82\xc2\xe1\xdb\xc7\xfc\xa7\xd1\xf1\x3e\x39\x21\x9b\xf9\x5f\xbd\x8c\xb9\xb3\x66\xa9\xe5\xf9\x74\x74\x96\x28\xe7\x10\xf8\x25\xf9\xda\x0c\x87\xa8\xb4\xb7\x26\xe9\x8d\x39\xba\x02\x9e\x05\x9d\x08\x1a\x81\x4a\x0a\xe4\x0d\x41\x18\x55\x0b\xc6\x2f\xc3\x5e\xda\x95\x14\x48\x62\xf0\x7f\xf6\xd4\x14\x91\x91\xa3\xad\x16\x0e\xd3\x2c\x49\x2f\xd4\x51\xbd\x07\x00\x00\xff\xff\xe7\xd6\x88\xde\xb2\x01\x00\x00" +var _lockedtokensDelegatorGet_delegator_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcd\x4e\xc3\x30\x10\x84\xef\x7e\x8a\x21\x07\x94\x5c\x72\x80\x5b\x05\x54\x15\x3d\x10\xa9\x87\x0a\xc1\x03\x38\xce\x26\x58\x75\xbc\xd1\x7a\x2d\x0e\x88\x77\x47\x4d\xa0\x94\x9f\xbd\x58\x1a\xcd\x7c\xe3\xf1\xe3\xc4\xa2\xd8\xb1\x3b\x50\xf7\xc4\x07\x8a\x09\xbd\xf0\x88\xe2\x5c\x2a\x8c\xb1\xce\x51\x4a\xa5\x0d\xa1\x42\x9f\x23\x46\xeb\x63\x69\x9d\xe3\x1c\x75\x85\x4d\xd7\x09\xa5\x54\xad\xf0\xdc\x44\xbd\xbe\xc2\x9b\x31\x00\x10\x48\x11\x66\xd0\x66\xb1\x36\xb1\xe7\x47\xea\x71\x8b\x81\xf4\x53\xfb\xc2\x54\x73\xe4\x78\xb5\xb3\x93\x6d\x7d\xf0\xea\x29\xd5\x2d\x8b\xf0\xeb\xcd\xe5\xf9\x8f\xea\xf9\x79\xe0\xd0\x91\xdc\x95\xa7\xe0\xf1\x7e\xd8\x76\xbf\xcb\xf7\xb9\x0d\xde\xed\xad\xbe\x9c\x42\xdf\xbd\xeb\x35\x26\x1b\xbd\x2b\x8b\x7b\xce\xa1\x43\x64\xc5\xd2\x0e\x0b\xa1\x9e\x84\xa2\x23\x28\x63\x9a\x31\xf8\x83\x2f\xaa\x65\xb8\x90\x66\x89\xff\x6e\xaf\x07\xd2\x2d\x05\x1a\xac\xb2\x34\xdb\xb2\xba\x30\xef\xe6\x23\x00\x00\xff\xff\x3e\xb8\x32\x69\x88\x01\x00\x00" func lockedtokensDelegatorGet_delegator_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4100,11 +4120,11 @@ func lockedtokensDelegatorGet_delegator_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0x54, 0x61, 0x8e, 0x91, 0xdf, 0x10, 0x8d, 0xe7, 0x4, 0xc6, 0x8d, 0xb5, 0x85, 0x3d, 0x1c, 0x19, 0x8f, 0x22, 0xbb, 0xa7, 0xdb, 0xf0, 0x3d, 0x23, 0x29, 0xe6, 0x34, 0x4, 0x4d, 0x68, 0xdb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x12, 0xcf, 0xbd, 0xf4, 0xb4, 0xe2, 0x96, 0x6a, 0xb, 0x7b, 0x4f, 0xdf, 0xfe, 0x86, 0x5a, 0xbc, 0xa7, 0xae, 0x48, 0x8a, 0x9f, 0x27, 0xf1, 0x4c, 0xdb, 0x2a, 0x8c, 0xf4, 0x72, 0xc0, 0x88}} return a, nil } -var _lockedtokensDelegatorGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4d\x8f\x9b\x30\x10\xbd\xf3\x2b\x66\x2f\x51\x90\x56\xa4\xe7\xa8\x54\xa2\x81\xaa\x68\xa3\xec\x2a\xe1\x52\xad\xf6\x60\xb0\x21\x6e\x1c\x0f\x32\x46\xe9\x0a\xe5\xbf\x57\x7c\x06\x27\xa4\x8a\xca\x05\x65\xfc\xde\xf8\xcd\xbc\x17\xf8\x31\x47\xa5\xe1\x87\xc0\x53\xe8\x47\x24\x16\x6c\xa7\xc9\x81\xcb\x0c\x52\x85\x47\xf8\xf2\x27\xf4\x83\x4d\x14\x46\xbf\x22\xef\xfb\x3a\xf0\x7c\x7f\x1b\xec\x76\x56\xc7\x5a\x63\x72\x60\x34\xc2\x03\x93\x45\x8f\x5f\xbf\xae\x5e\x02\x3f\x7a\x7d\x09\x36\x3d\xda\x5a\x2c\x60\xcb\x74\xa9\x64\x01\x44\x02\x51\x8a\x7c\x02\xa6\xe0\x33\xc1\x32\xa2\x51\x85\x32\x45\xc0\xf8\x37\x4b\x74\x01\x7a\x4f\x34\xe8\x3d\x03\x92\x24\x58\x4a\x0d\x09\x4a\xad\x50\x14\x75\x1b\x2e\x81\xeb\x02\x24\xaa\x23\x11\x03\x82\x48\x0a\xc5\x9e\x28\x46\xfb\x92\x65\xe5\x65\x0c\x69\x29\xe1\x48\xb8\x9c\x77\xd5\x25\x78\x94\x2a\x56\x14\xf6\x12\xde\x6f\x47\x76\x0c\x41\x1f\x50\x59\x16\x00\x80\x60\x1a\xe8\xf8\xc4\xab\x07\x78\xa8\x83\x0b\xef\x1f\x97\x26\x79\x19\x7b\x9d\x62\x17\x32\xa6\xbb\x1f\xbd\x3a\x7b\xe2\xba\x15\xc9\xc1\x1d\x11\x1b\x44\xfd\x38\x19\xd3\x2b\x92\x93\x98\x0b\xae\x3f\xbf\xce\xaa\x09\x31\x1b\xa4\x6c\x10\xf4\x56\xc6\x82\x27\xe7\x6f\xf3\xa1\x45\xfd\x2c\xf2\xa6\xbc\x48\x05\x9e\x3a\xda\xc0\x18\x80\x9d\x30\x9e\x9a\xda\xb6\x2c\x05\xd7\x90\xea\xc4\xa8\x14\x9e\xe6\x36\x54\x03\xb9\xa6\xf0\xda\x5f\x77\x22\x64\xe6\xbe\x4c\x69\x12\x29\x0b\xfd\xa5\x71\x9f\xd3\x16\x9f\x0d\xe0\xc5\x9b\x6b\x34\xa7\xa3\x19\x6e\xe1\xbd\x95\x0e\xc9\x73\x26\xe9\xbc\x96\xd9\xe2\xce\x17\x2b\x44\x93\xf1\x6e\xfd\x35\xe5\x61\x4b\xc6\xff\x0e\xa7\x79\xfd\x44\x41\x99\xaa\x8c\x83\xf5\x75\xff\x6b\x8b\xfe\x8d\x6e\x6d\x7d\x23\x7a\x7f\xc7\xae\x1b\xfd\xad\x6d\x53\x63\xdd\xb3\xaf\x5d\xfa\x14\xa9\x5e\x72\xc6\xf4\xe0\xe2\xa6\x41\xce\x6d\x83\x3e\xf2\xe7\x91\x1e\x0d\x7f\x68\xc0\xd3\xfe\xfa\x27\x17\x24\x17\x30\x9b\x19\x0d\xbb\x6a\x65\xac\xec\xbf\x33\x37\xce\x5d\xfb\x7e\x7a\xbe\x01\x4c\xe7\x2d\xf4\x9f\x0c\xa4\x7d\x27\xa3\xf7\x43\xd7\x06\x6f\x14\x3f\xd5\x7c\x33\x27\xb8\xd6\xd9\xfa\x1b\x00\x00\xff\xff\xea\xbb\x2d\x02\xb8\x05\x00\x00" +var _lockedtokensDelegatorGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4d\x8b\xdb\x30\x14\xbc\xfb\x57\xbc\xe4\x10\x6c\x58\x9c\x7b\xa8\x0b\x81\x50\x1a\x28\xcb\xb2\xdd\xdb\xb2\x87\x67\xeb\x39\x51\xa3\xe8\x19\x49\x26\x94\x90\xff\x5e\xfc\x11\xc5\x5a\x3b\x25\xad\x2f\x26\x4f\x33\xa3\x91\x66\x62\x79\xac\xd8\x38\xf8\xa6\xf8\xb4\xdd\xbc\x61\xae\xe8\xa7\xc3\x83\xd4\x3b\x28\x0d\x1f\x61\x3e\x5e\x98\x47\x3d\xe7\x07\x17\x07\x12\x6f\x7c\x20\x6d\x7b\xf4\x70\x34\x8f\xa2\xe5\x12\x5e\xc9\xd5\x46\x5b\x40\x0d\x68\x0c\xfe\x06\x2e\x61\x43\x8a\x76\xe8\xd8\x6c\x75\xc9\xc0\xf9\x2f\x2a\x9c\x05\xb7\x47\x07\x6e\x4f\x80\x45\xc1\xb5\x76\x50\xb0\x76\x86\x95\x6d\x64\xa4\x06\xe9\x2c\x68\x36\x47\x54\x1e\x81\x5a\x80\xdd\xa3\x21\x71\x1d\x45\x11\x16\x05\x59\x1b\xa3\x52\x09\x94\xb5\x86\x23\x4a\x1d\xf7\xab\x2b\x58\x0b\x61\xc8\xda\x64\x05\xef\xe3\x93\xa5\x81\xb1\x0f\x38\x47\x11\x00\x80\x22\x07\x62\xb8\xb2\x6e\x0e\xf2\x90\x42\x06\xef\x1f\x37\x91\xaa\xce\xd7\xbd\xf3\x0c\x76\xe4\xfa\x1f\x57\x77\xc9\x0d\xc9\x95\x93\xac\x51\x79\xb9\x57\x2a\x21\x1b\x08\xb4\xc8\xe6\x49\x0b\xac\x30\x97\x4a\x3a\x49\x36\xcd\xd9\x18\x3e\x7d\x59\x9c\x27\xac\x3d\xb3\x20\xaf\xf7\x52\xe7\x4a\x16\x97\xaf\xb1\x17\x6a\x9e\x65\xd5\x8e\x97\xa5\xe2\x53\x4f\xf3\x0c\x0f\xec\x6d\xca\x32\xbc\x98\xce\xe1\xa4\xf1\xb3\xe7\x36\x0c\xd9\x84\x9e\x4d\x34\x2e\xbc\xbc\xd0\x99\x66\x41\xdb\xcd\x2a\xd8\x2e\xed\x86\x4f\x01\xf0\x16\xd4\x67\xb4\x14\x83\x23\x8c\xe1\xd7\x5c\x53\xac\x2a\xd2\x22\x6e\x6c\x76\xb8\xcb\x38\x97\xae\xe7\x7d\x16\x0d\xf5\x1f\xf3\x19\xfe\x4f\xd2\xf6\xf5\x9d\x95\x20\xf3\x29\x8f\x00\x36\xda\xb3\xcb\xf0\x05\xdd\xfe\x4e\x36\x6a\xda\xe5\x5f\x0f\x11\x66\xd5\xdd\x30\x64\x93\x52\xe9\x8e\x9c\x8f\xec\xb9\x45\xc6\x49\x40\x1f\x84\xf1\x88\x46\xcb\xf7\x02\xb2\xbc\x6e\x3f\xcb\x40\x4b\x05\x8b\x45\x20\xd8\x4f\xcf\xc1\x8d\xfd\x77\xc1\x86\x25\xeb\xde\xb3\xa7\x11\x60\xba\x5c\xdb\xcd\x2c\x40\x26\x77\x0a\x79\xbf\x61\x5d\xcb\x06\x5d\x33\xed\x57\x73\x82\x1b\x5d\xa2\x3f\x01\x00\x00\xff\xff\xc7\x86\x6b\x79\xb2\x05\x00\x00" func lockedtokensDelegatorGet_delegator_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -4120,11 +4140,11 @@ func lockedtokensDelegatorGet_delegator_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x16, 0x55, 0xa6, 0x48, 0x7d, 0xe9, 0x3d, 0xc, 0xa1, 0x5e, 0xbd, 0x50, 0x98, 0x4f, 0x5f, 0x92, 0x42, 0xcd, 0x4d, 0x9a, 0x25, 0xd1, 0x1, 0xbf, 0xe3, 0xc, 0x5f, 0x64, 0xb1, 0x0, 0x82, 0xb4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa9, 0x5c, 0xc3, 0x5a, 0x3c, 0x1a, 0xd2, 0x9d, 0x8d, 0xd9, 0xb6, 0x51, 0x45, 0x55, 0x69, 0xac, 0x7b, 0x6b, 0x27, 0x53, 0x9f, 0xd8, 0xc7, 0xf1, 0x19, 0xf9, 0xa9, 0x40, 0x26, 0x69, 0xf2, 0x3f}} return a, nil } -var _lockedtokensDelegatorGet_delegator_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x4f\x6b\xc2\x40\x10\xc5\xef\xfb\x29\xa6\x1e\x4a\x72\x91\x9e\xa5\xad\x88\x11\x2a\x8a\x8a\xf1\x0b\x6c\x76\x27\xe9\xe2\x66\x27\x4c\x66\x69\x8b\xf8\xdd\x4b\x92\xd6\xda\x3f\x74\x2e\x0b\xb3\x6f\x7e\xef\xf1\x5c\xdd\x10\x0b\xac\xc9\x1c\xd1\x1e\xe8\x88\xa1\x85\x92\xa9\x86\xbb\xd7\xf5\x76\xbe\x5a\x64\x87\xed\x6a\xb1\x99\x65\xd9\x7e\x91\xe7\x4a\x35\xb1\x80\x32\x06\xa8\xb5\x0b\x89\x36\x86\x62\x90\x09\xcc\xac\x65\x6c\xdb\x74\x02\xb9\xb0\x0b\x15\x9c\x94\x02\x00\xf0\x28\xe0\x7b\xf2\x6c\x90\x2e\x43\x49\x7b\x2c\xe1\x01\x2a\x94\x8f\xdd\x27\x26\xed\x4f\xba\x19\x57\x28\x73\xdd\xe8\xc2\x79\x27\x6f\xf7\xb7\xd7\xe1\xc6\xfd\xf3\x44\xde\x22\x9f\xbe\x7d\xac\x7f\x1a\x9d\x1f\x93\x0b\xb2\x9b\xff\xd5\xbb\x58\x78\x67\x76\x5a\x9e\x2f\x47\x57\x89\x0a\x62\xa6\x97\xe4\x6b\x33\x9d\x42\xa3\x83\x33\xc9\x68\x4e\xd1\x5b\x08\x24\x30\x88\x40\x03\x63\x89\x8c\xc1\x20\x08\x41\xd3\x83\xe1\x97\xe1\x28\x1d\x4a\x62\x94\xc8\xe1\xcf\x9e\xba\x22\x32\xf4\x58\x69\x21\xde\x90\xc5\x65\x96\xa4\x37\xea\xac\xde\x03\x00\x00\xff\xff\xa8\xa0\x14\xf5\xb6\x01\x00\x00" +var _lockedtokensDelegatorGet_delegator_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcf\x4e\xf3\x30\x10\xc4\xef\x7e\x8a\xf9\x72\xf8\x94\x5c\xf2\x00\x15\x50\x55\xf4\x40\xa5\x0a\x55\xc0\x0b\x38\xf6\x26\x58\x75\xbc\xd1\x7a\x2d\x0e\x88\x77\x47\x4d\xa0\x94\x3f\x7b\xb1\x34\x9a\xf9\x8d\x27\x8c\x13\x8b\x62\xcf\xee\x48\xfe\x89\x8f\x94\x32\x7a\xe1\x11\xd5\xa5\x54\x19\x63\x9d\xa3\x9c\x6b\x1b\x63\x83\xbe\x24\x8c\x36\xa4\xda\x3a\xc7\x25\xe9\x0a\x1b\xef\x85\x72\x6e\x56\x78\x54\x09\x69\xc0\xab\x31\x00\x10\x49\x11\x67\xd0\x66\xb1\xee\x52\xcf\x0f\xd4\xe3\x1a\x03\xe9\x87\xf6\x89\x69\xe6\xc8\xe9\x5a\x67\x27\xdb\x85\x18\x34\x50\x6e\x3b\x16\xe1\x97\xab\xff\x97\x3f\x6a\xe7\xe7\x8e\xa3\x27\xb9\xa9\xcf\xc1\xd3\x7d\xb3\xed\x7f\x96\x1f\x4a\x17\x83\x3b\x58\x7d\x3e\x87\xbe\x7a\xd7\x6b\x4c\x36\x05\x57\x57\xb7\x5c\xa2\x47\x62\xc5\xd2\x0e\x0b\xa1\x9e\x84\x92\x23\x28\x63\x9a\x31\xf8\x85\xaf\x9a\x65\xb8\x90\x16\x49\x7f\x6e\x6f\x07\xd2\x2d\x45\x1a\xac\xb2\xdc\xb3\xa7\xdd\xb6\x6e\xfe\x99\x37\xf3\x1e\x00\x00\xff\xff\x2b\x7f\x31\x90\x8c\x01\x00\x00" func lockedtokensDelegatorGet_delegator_node_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4140,11 +4160,11 @@ func lockedtokensDelegatorGet_delegator_node_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_node_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe4, 0xa6, 0x64, 0xd9, 0x19, 0xbf, 0x3b, 0xbb, 0x52, 0xfd, 0xfa, 0x51, 0x34, 0x21, 0xa9, 0xb0, 0xa, 0x66, 0x33, 0xcf, 0xce, 0x7c, 0x53, 0xe7, 0xe0, 0xc4, 0xe5, 0x27, 0x67, 0x1c, 0xae, 0x8f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xee, 0x61, 0xcb, 0xb1, 0x59, 0xce, 0x22, 0xfb, 0x43, 0x23, 0xf2, 0x1, 0xc5, 0x22, 0xa9, 0x53, 0xc9, 0x52, 0xbb, 0x83, 0x3c, 0x7d, 0xdb, 0xcd, 0xfa, 0x13, 0x12, 0xf1, 0x57, 0xe7, 0x31, 0xdc}} return a, nil } -var _lockedtokensDelegatorRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x53\xc1\x6e\x9b\x40\x10\xbd\xf3\x15\x53\x1f\x2a\x90\x1a\xd2\x43\xd5\x83\x95\x34\x72\x82\xa3\x5a\x71\x9d\x28\xa6\xad\x7a\xdc\xb0\x03\xac\x0c\xbb\x74\x77\x88\x5d\x45\xfe\xf7\x6a\x59\x70\x80\xd8\xfd\x81\xee\xc5\x32\xf3\xe6\xcd\x9b\x37\x33\xa2\xac\x94\x26\xb8\x2d\xd4\x36\x56\x1b\x94\x90\x6a\x55\xc2\xc7\xdd\xed\xf2\xfe\x67\x7c\x7f\x37\x5f\xcd\xa2\xe8\x71\xbe\x5e\x7b\x2d\x70\xa9\x92\x0d\xf2\x06\x6a\x3a\xec\xf2\xfe\xe6\x6e\x1e\x1d\x43\x5b\xda\x45\x14\xb3\xa7\x02\xd7\xc4\x36\x42\x66\x5d\xce\x22\x9a\xaf\xe2\x45\xfc\x2b\x9e\x5d\x2f\xe7\x5d\x96\x47\x9a\x49\xc3\x12\x12\x4a\xfa\x82\x4f\x61\x4d\x5a\xc8\xec\x03\xb0\x52\xd5\x92\xa6\xf0\xfd\x56\xec\x3e\x7f\x0a\xe0\xc5\xf3\x00\x00\x0a\x24\xc8\x55\xc1\x51\x3f\x62\x3a\x85\xf7\x7d\x71\x61\xf3\xf3\xb5\x89\xbe\xa2\x9f\x59\x5d\x90\x03\x1f\x5a\x0e\x7f\xd8\x8f\x0e\x53\x69\xac\x98\x46\x9f\x25\x89\xab\x38\xab\x29\x9f\xb9\x3f\xb6\x2c\xb4\xcf\x60\x91\x86\x87\xd2\x70\x09\x6d\x42\xf8\xa4\xb4\x56\xdb\x8b\x93\x52\xbe\xf8\xd6\x80\x29\x9c\x8a\xaf\x49\x69\x96\xe1\x03\xa3\x3c\x80\x43\x39\xfb\xae\xae\xa0\x62\x52\x24\xfe\xa4\x07\x07\x61\x40\x2a\x02\xc3\x9e\x91\x03\x23\x30\x15\x26\x22\x15\xc8\xa1\x62\x94\x4f\x02\x6f\x28\xb9\xeb\xff\x88\xe2\x91\x1f\x9d\xd0\x73\xe3\x14\x9d\xa7\x5d\xbc\x09\x07\x27\xb4\xdd\xa8\xba\xe0\x8d\x24\xc7\x0b\x36\x0d\xa8\x59\xad\xa6\x38\x68\x4c\x51\xa3\x4c\x70\xe2\x38\xf6\x4e\x22\xee\x30\xa9\x09\x7b\x1e\xdb\x79\x15\x8d\x4d\xd7\xac\x60\x32\x41\xb8\x1c\xf9\x1e\x66\x48\xce\xc8\x76\x44\x2d\xd0\xef\xb5\x2d\xd2\x76\x7b\xe0\xe2\x72\x44\xf7\xe2\x0d\x9a\x18\x71\x27\x1a\x19\xe1\x4a\x71\x8c\xb0\xc0\x8c\x91\xd2\xbe\x54\x1c\x17\xd1\x14\x04\x0f\x86\xb9\x56\xab\x21\xb6\x41\xfd\xa0\xd5\xee\xcf\x5b\xa5\xce\x8d\x57\xa6\x51\x7e\x2f\x37\xe4\x0e\x84\x2b\x74\x7e\x1b\xbf\x5b\xff\xb6\x91\xb3\x23\x77\x65\xad\x38\xb0\x7f\x13\x52\x94\x75\x69\x43\xf8\x88\xbf\x6b\xa1\xb1\x44\x49\x7e\xd0\xab\xba\x07\x2c\x0c\x5a\x7b\x7c\xff\xc0\x3b\xf0\x27\xb0\x8e\x0d\xb6\x26\x7c\xea\x22\xff\xb6\x8e\x63\xa5\x8c\xa0\x76\x83\x2e\xce\x86\x24\x5b\x41\x39\xd7\x6c\xfb\xb6\xad\x61\xf9\xb1\x45\xff\xe3\x78\x5e\x06\x32\xda\x1b\x5b\x29\x02\x94\xaa\xce\x72\x77\x58\x06\x48\x39\x89\xef\x26\xaf\x77\xb9\x6f\xaf\x6b\xef\xfd\x0d\x00\x00\xff\xff\xa4\x8b\xdc\xe3\xe4\x05\x00\x00" +var _lockedtokensDelegatorRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x54\x41\x6f\xdb\x3c\x0c\xbd\xfb\x57\xf0\xf3\xa1\xb0\x81\xd6\xbd\x7c\xd8\x21\x68\x56\xac\x0b\x8a\x15\xd8\xb2\xa2\xe9\xba\xb3\x62\xd1\xb6\x10\x59\xf2\x24\xba\xc9\x10\xe4\xbf\x0f\xb2\x14\xc7\x4e\x96\x6d\x97\x9d\xe6\x4b\x51\x91\x7c\x7c\xef\x91\x8c\xa8\x1b\x6d\x08\xee\xa5\x5e\x3f\xeb\x15\x2a\x28\x8c\xae\x21\xee\xff\x8f\xa3\x90\xf1\x51\xe7\x2b\xe4\xdd\x9b\x0d\x49\xc3\xa7\x3e\xcf\x55\x3e\xcc\x9e\xd9\x52\xe2\x82\xd8\x4a\xa8\x72\x00\x39\x0e\x1c\x6a\x5a\x55\x8a\xa5\xc4\x11\x83\xe1\x5b\x1c\x45\x64\x98\xb2\x2c\x27\xa1\x55\x22\xf8\x04\x16\x64\x84\x2a\x2f\x81\xd5\xba\x55\x34\x81\x2f\xf7\x62\xf3\xe6\xff\x14\xb6\x51\x04\x00\x20\x91\xa0\xd2\x92\xa3\x79\xc2\x62\x02\xac\xa5\x2a\x19\xf2\xcd\xba\x3f\x9f\x1b\x34\xcc\x41\xda\xcb\x31\x89\xec\xab\xa0\x8a\x1b\xb6\x4e\xe1\xe2\xb4\xec\x43\x07\x7c\x68\xf4\xca\x5a\x49\x87\x3e\x67\x91\x7a\x57\xb3\x17\x57\xe1\x01\x1a\x83\x0d\x33\x98\xb0\x3c\xf7\x4a\x3a\x8c\x3b\x6d\x8c\x5e\xbf\x30\xd9\x62\x0a\x17\xef\x7c\xcc\xa9\x83\xf0\x59\x94\x45\xd6\x2b\x84\x29\x84\xfa\xcc\x92\x36\xac\xc4\x6c\xd9\x21\xdc\xfc\x0d\xe5\x6f\x13\x37\xa3\x09\x9c\x8b\x2f\x3c\x85\x47\x46\x55\xda\x13\x76\xdf\xed\x2d\x34\x4c\x89\x3c\x89\x07\xd9\x20\x2c\x28\x4d\x60\xd9\x2b\x72\x60\x04\xb6\xc1\x5c\x14\x02\x39\x34\x8c\xaa\x38\x8d\xc6\xa2\xf7\x6e\xff\x46\xf3\x9f\x4e\x61\x2f\xe6\x3a\x80\x5c\x17\xfb\x78\x17\x3e\x27\xe0\xbd\x6e\x25\xef\x78\xfb\xa6\xe0\xca\x80\xba\x0d\xee\x18\x82\xc1\x02\x0d\xaa\x1c\x63\x8f\xb1\xf3\x3a\x70\x83\x79\x4b\x38\x18\xa5\x5b\x21\xd9\x59\x79\xc7\x24\x53\x39\xc2\xf4\x68\xbc\x59\x89\xe4\xcd\x0e\x9b\x10\x12\x93\x81\x37\xa2\x08\xb7\x00\x37\xd3\x23\xb8\x6d\x34\x12\x71\x84\x9d\x1b\x64\x84\x73\xcd\x71\x86\x12\x4b\x46\xda\x24\x4a\x73\x7c\x98\x4d\x40\xf0\x74\x5c\xeb\xb8\x5a\x62\x2b\x34\x8f\x46\x6f\xbe\x9f\x32\xf5\x6e\x1c\x90\x8e\xea\x07\xb5\x19\xf7\x49\x38\x47\xef\xb7\x4d\xf6\xc7\x1c\x84\x5c\xfd\xe4\xd7\xc4\x59\xd1\xa3\x7f\x12\x4a\xd4\x6d\xed\x42\xf8\x84\xdf\x5a\x61\xb0\x46\x45\x49\x3a\xe8\xba\x03\x94\x16\x9d\x3d\x49\xd2\xe3\x8e\xfc\x49\x9d\x63\xa3\xd5\xca\x96\xfb\xc8\xaf\xad\xe3\xd8\x68\x2b\x28\x6c\xd0\xcd\xd5\x18\x64\x1d\x76\xee\x54\xd6\xb8\xfd\xb1\x45\xff\xe2\x78\xb6\x23\x1a\xe1\xc6\xe6\x9a\x00\x95\x6e\xcb\xca\x1f\x96\x05\xd2\x9e\xe2\x7f\xf1\xe1\x2e\x77\xe1\xba\x76\xd1\x8f\x00\x00\x00\xff\xff\xff\xca\xcc\xa6\xcd\x06\x00\x00" func lockedtokensDelegatorRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -4160,11 +4180,11 @@ func lockedtokensDelegatorRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x91, 0x9, 0xb6, 0x65, 0x81, 0x2d, 0x4b, 0x98, 0x9a, 0x49, 0x39, 0xf6, 0x73, 0xe4, 0x73, 0x75, 0xe4, 0x4e, 0x78, 0xa9, 0xe, 0x69, 0x8d, 0x9d, 0x36, 0x7d, 0xc4, 0x4, 0xad, 0xdb, 0xb5, 0xe5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0xbb, 0xe3, 0x9f, 0x58, 0x2d, 0xa7, 0x68, 0x5e, 0x3e, 0x8b, 0x4a, 0xbe, 0x59, 0xab, 0xc6, 0xae, 0x8e, 0xfe, 0x37, 0xc, 0xdc, 0x3a, 0xc5, 0xb2, 0x4d, 0x34, 0x53, 0x6e, 0xef, 0x38, 0x69}} return a, nil } -var _lockedtokensDelegatorRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xdf\x6a\xf2\x40\x10\xc5\xef\xf3\x14\x83\x17\x1f\xf1\x26\x7c\x17\xa5\x17\x52\x2b\xd2\x58\x0a\x8a\x8a\x7f\x1e\x60\xba\x99\x98\xc5\xb8\x93\xce\x4e\xda\x94\xe2\xbb\x17\x5d\x4d\xb5\xd2\xdc\x4c\x86\x3d\x9c\xdf\x9e\xb3\x76\x57\xb1\x28\x4c\xd8\x6c\x29\x5b\xf1\x96\x9c\x87\x5c\x78\x07\xff\x9b\xc9\xec\x69\x3c\x4a\x57\xb3\xf1\x68\x3a\x4c\xd3\xc5\x68\xb9\x8c\x22\x15\x74\x1e\x8d\x5a\x76\x31\xee\xb8\x76\xda\x83\xf5\xb3\x6d\xee\xef\xba\xf0\x15\x01\x00\x94\xa4\xe0\x38\xa3\x94\x4a\xda\xa0\xb2\xcc\x85\x9b\xcf\xde\x15\x21\x09\xcb\xf4\x46\x16\x1d\x2d\x2a\xa1\x0a\x85\x62\x34\x26\x10\x86\xb5\x16\xc3\xb0\x9c\x31\x67\x54\xc1\x65\x46\xb2\xa0\x1c\xfa\x70\xd2\x27\xaf\x2c\xc2\x1f\x0f\xff\xae\x90\xc7\xf1\x72\x54\x3f\xc6\x87\x84\xbf\xae\x74\x71\xbe\x54\x16\xdc\xd0\x1c\xb5\xe8\x42\x4b\x3b\x7c\x83\x01\x54\xe8\xac\x89\x3b\x17\x72\xb0\x1e\x1c\x2b\x78\x7c\xa7\x0c\x50\xc1\x57\x64\x6c\x6e\x29\x83\x0a\xb5\xe8\x74\x5b\x8b\xf6\xc7\x53\x99\x27\xb7\x2d\x41\xff\x27\xcf\x29\x45\x2b\x88\x83\xcd\x3e\x54\x44\x0d\x99\x5a\xe9\xa2\x8c\x3f\x2c\x13\xa1\xb7\x9a\xbc\xae\x9d\x57\xdc\x5a\xb7\x69\x9f\x2d\xcc\xb3\xeb\x3e\xfa\x0e\x00\x00\xff\xff\xb1\xf9\x7f\xb3\x0a\x02\x00\x00" +var _lockedtokensDelegatorRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xc1\x4e\xab\x50\x10\xdd\xf3\x15\x13\x16\x0d\x24\x2f\xac\x5e\xde\xa2\x79\xb5\xd1\x98\xc6\x85\xd1\x46\xad\xae\xa7\x30\xc0\x4d\xe9\x1d\x9c\x3b\xd8\x1a\xd3\x7f\x37\xe5\x52\x0a\x36\xb2\x19\x98\x39\x73\xce\x99\x13\xcc\xb6\x66\x51\xb8\xe7\x74\x43\xd9\x0b\x6f\xc8\x3a\xc8\x85\xb7\x10\x0e\x5b\x61\xd0\xe1\x16\x8d\x2d\xcc\xba\xa2\xb6\xdd\x01\x47\xbd\x30\x08\x54\xd0\x3a\x4c\xd5\xb0\x8d\x70\xcb\x8d\xd5\x29\xac\x16\x66\xff\xef\x6f\x0c\x5f\x01\x00\x40\x45\x0a\x96\x33\xba\xa5\x8a\x0a\x54\x96\xa5\xf0\xfe\x73\x3a\x72\x91\xf8\x8f\x87\x0b\x58\xd0\x52\xd4\x42\x35\x0a\x45\x98\xa6\x5e\x01\x1b\x2d\xa3\x1b\x16\xe1\xdd\x2b\x56\x0d\xc5\x30\xb9\xf6\xb3\x93\xea\x49\xb9\xe4\x2a\x23\x79\xa2\x1c\x66\xd0\xad\x27\x4e\x59\xb0\xa0\x64\xdd\x12\xfc\x6f\xc9\x46\x6e\xda\xf2\x58\x93\xe0\xf1\x2e\xf7\x67\x9c\x44\xf2\x66\xb4\xcc\x04\x77\x31\x4c\x2e\xd7\xee\x5a\xc1\xab\xe8\x18\xd7\x8f\x23\x07\xf3\x67\x6f\x61\x89\x5a\xc6\xbd\xdf\xe3\x33\x9f\x43\x8d\xd6\xa4\x51\x38\x40\x83\x71\x60\x59\xc1\xe1\x07\x65\x80\x0a\xae\xa6\xd4\xe4\x86\x32\xa8\x51\xcb\xf0\x4c\xd1\xbf\x38\xaa\xf2\xe4\x32\x76\x98\x9d\x13\xe9\xee\xef\x01\x91\xa7\x39\xf8\xcc\x69\x4f\x69\xa3\x34\x88\xf3\x17\xca\x44\xe8\xbd\x21\xa7\x2b\xeb\x14\x37\xc6\x16\xfd\x7f\xe0\xeb\x89\xf5\x10\x7c\x07\x00\x00\xff\xff\x6f\x65\xa9\x7e\x7f\x02\x00\x00" func lockedtokensDelegatorRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -4180,11 +4200,11 @@ func lockedtokensDelegatorRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x54, 0x4a, 0xf3, 0x42, 0x72, 0x6b, 0xbf, 0x51, 0x4d, 0x3a, 0xe6, 0x9b, 0xce, 0x42, 0xbc, 0x7, 0x8b, 0xa6, 0x15, 0x6a, 0xda, 0xb7, 0x66, 0x6b, 0xa8, 0xbd, 0x2e, 0xf1, 0x0, 0x96, 0x7, 0x4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0x38, 0x26, 0x65, 0xbe, 0x12, 0x28, 0x9a, 0x64, 0x62, 0xf9, 0x85, 0x12, 0x94, 0xe3, 0xcb, 0x8c, 0xba, 0x20, 0x9b, 0x44, 0xed, 0x73, 0x7c, 0x4b, 0xa0, 0x91, 0x6c, 0x85, 0x78, 0x4d, 0x5b}} return a, nil } -var _lockedtokensDelegatorWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x8f\xa2\x40\x10\x85\xef\xfc\x8a\x8a\x87\x0d\x1c\x16\xf7\xb0\xd9\x83\xd1\x35\x46\x34\x93\x68\x46\xa3\xce\xcc\xb9\x07\x0a\x21\xb6\x14\x69\x0a\x61\x32\xf1\xbf\x4f\xa0\x69\x06\x89\x5e\xa6\x2f\x1d\xa8\xd7\xf5\xbe\x7a\xdd\xf1\x39\x25\xc5\xb0\x26\xff\x84\xc1\x81\x4e\x98\x64\x10\x2a\x3a\xc3\x9f\x72\xbd\x99\xaf\x16\xde\x61\xb3\x5a\x3c\xcf\x3c\x6f\xb7\xd8\xef\xad\x46\xbd\x94\x54\xd4\x5a\x23\x5d\xae\x37\x6f\x37\x42\x8b\x95\x48\x32\xe1\x73\x4c\x89\x2d\xce\x94\x27\x3c\x82\x97\x65\x5c\xfe\xfb\xeb\xc0\xa7\x65\x01\x00\x48\x64\x88\x48\x06\xa8\x76\x18\x8e\xe0\x57\x97\xc1\xad\xb7\xa7\xba\xda\x8a\x2f\x22\x97\xac\xb5\x2d\x81\xfb\x5a\xfd\xd4\x0d\x53\x85\xa9\x50\x68\x0b\xdf\xd7\x86\xb3\x9c\xa3\x99\xfe\xa8\x5c\xa1\x59\x19\xca\xd0\x6d\x9d\x61\x02\xcd\x01\xf7\x9d\x94\xa2\x62\xfc\x90\xe4\xbf\x5d\xcd\x3b\x82\x47\xf5\x3d\x93\x12\x47\xdc\x0a\x8e\x1c\x68\xed\xaa\x35\x9d\x42\x2a\x92\xd8\xb7\x07\x73\xca\x65\x00\x09\x31\x68\x37\x50\x18\xa2\xc2\xc4\x47\x60\x82\x4e\xb3\x81\x63\xdd\x12\x9b\xf1\xef\x00\xf7\xe2\x30\x9c\xc3\x4c\x03\x0d\x43\x53\xaf\xcb\xce\x8f\xd0\xbe\x2f\xfd\x22\x64\x8e\x03\xdd\xe5\xaa\x21\xb1\x44\x3f\x67\xec\x84\x5c\x5d\x58\x80\x12\x8f\x82\x49\x6d\x15\x95\x1f\x30\xe9\x25\xdf\xe0\x7b\x46\x65\x77\x26\xbe\x3d\xea\x16\x31\x47\x81\x12\xc5\x0e\x0b\xa1\x02\x93\x7d\xfb\xb2\xf4\xee\xdc\xcf\xcb\x0d\x30\xa5\x2c\xe6\x26\x94\xf1\xef\x1e\x85\xe9\xdd\xef\x66\x06\xbc\x5a\x5f\x01\x00\x00\xff\xff\x29\x29\x64\xb8\x25\x03\x00\x00" +var _lockedtokensDelegatorWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xcf\x6e\xa3\x30\x10\xc6\xef\x3c\xc5\x88\x43\x04\xd2\xae\x73\x59\xed\x21\x4a\x36\xda\x3f\x8a\xf6\x50\xa9\x51\xda\xa6\x67\x07\x86\x80\xe2\x78\xd0\x60\x42\xaa\x2a\xef\x5e\x81\x0d\x01\xda\x5c\x2a\x95\x8b\xc5\xcc\xf8\xf3\xef\x9b\x99\xec\x98\x13\x1b\xb8\xa3\xe8\x80\xf1\x23\x1d\x50\x17\x90\x30\x1d\xc1\xef\x87\x7c\xcf\xd5\xad\x14\x55\x4d\xc8\x15\x75\xff\xd7\x8a\x52\xef\xb3\x9d\xc2\x41\x55\x3f\xe6\x7b\x9e\x61\xa9\x0b\x19\x99\x8c\x74\x20\x8f\x54\x6a\x33\x83\xa7\x55\x76\xfe\xf9\x23\x84\x57\xcf\x03\x00\x50\x68\x20\x25\x15\x23\x6f\x30\x99\x81\x2c\x4d\x1a\xf4\x89\x44\x73\xdc\xe7\xc8\xb2\x96\x29\xbe\x0d\x1f\x16\xcf\x99\x49\x63\x96\x55\x08\x93\xf7\xd7\xfe\x37\xc2\xdd\x3b\x27\x59\x2a\xd3\x3c\x33\xe9\xfc\x88\x6d\x1d\xb4\x2c\x39\x63\x2e\x19\x03\x19\x45\x96\xb5\xa1\xf9\x43\xcc\x54\x6d\xa5\x2a\x31\x84\xc9\x6f\x9b\xab\xf9\xc1\x7d\x05\xaa\x44\x74\x1e\x60\x01\xee\xbe\x28\x0c\xb1\xdc\xa3\xd8\x35\x0a\xf3\xaf\xf0\xf6\x2b\xa8\x3b\x3f\x83\x5b\xf9\x07\x8b\xb0\x96\x26\x0d\x3b\xe0\xfa\x5b\x2e\x21\x97\x3a\x8b\x02\xff\x2f\x95\x2a\x06\x4d\x06\x2c\x27\x30\x26\xc8\xa8\x23\x04\x43\xd0\xd3\xf2\x43\x6f\xe8\xb9\xed\xe7\x6d\xcb\xe3\x3e\xb7\xb8\x53\x57\x37\x4d\xda\x7c\x93\xfe\x1c\xe2\x75\x57\x4f\xf5\x90\x7c\xab\x72\xb1\xb0\x78\xc6\xa8\x34\xd8\x1b\x57\xbd\x09\x31\x2a\xdc\x4b\x43\xbc\x66\x3a\xbf\xc0\x62\x34\x43\x87\xff\xaf\xad\x0a\x7a\xce\x87\x57\x45\xe5\x66\xb4\xc1\x4a\x72\xdc\x8e\xa0\xdb\x76\x7b\x86\x1f\xf7\x4d\xc4\x98\x53\x91\x19\xd7\x94\xf9\xf7\x11\x45\xab\x3d\x56\x6b\x0d\x5e\xbc\xb7\x00\x00\x00\xff\xff\x0e\x35\x51\xeb\xd6\x03\x00\x00" func lockedtokensDelegatorWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4200,11 +4220,11 @@ func lockedtokensDelegatorWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe6, 0x5, 0x83, 0x8, 0x2a, 0x18, 0xaf, 0xe7, 0xdc, 0x32, 0xf3, 0xaa, 0x20, 0x75, 0x3b, 0x26, 0xe1, 0xbb, 0xd2, 0x3a, 0xfa, 0x32, 0x6, 0xb0, 0x49, 0x94, 0x57, 0x54, 0x30, 0x79, 0x4d, 0x56}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x94, 0x24, 0x6d, 0x9c, 0xe, 0x60, 0xf7, 0xf3, 0x2c, 0x32, 0x60, 0x16, 0x15, 0x5d, 0x1b, 0x7f, 0x82, 0x13, 0x92, 0x79, 0x2a, 0x26, 0x1f, 0xbd, 0xc6, 0x8e, 0x23, 0xe0, 0x48, 0x1c, 0x44, 0xdd}} return a, nil } -var _lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x2f\xa1\x87\xd2\x83\xd4\x8a\x34\x96\x82\xa2\xa2\xf6\x07\x4c\x77\x27\x66\x31\xee\x84\xc9\xd8\xa4\x14\xff\x7b\xd1\x98\x34\x56\x9a\xcb\x64\xd8\xc7\xfb\xf6\xbd\x75\xfb\x9c\x45\x61\xc6\x66\x47\x76\xc3\x3b\xf2\x05\x24\xc2\x7b\xb8\xaf\x66\x8b\x97\xe9\x24\xde\x2c\xa6\x93\xf9\x38\x8e\x57\x93\xf5\x3a\x08\x54\xd0\x17\x68\xd4\xb1\x0f\x71\xcf\x07\xaf\x03\x78\x7f\x75\xd5\xe3\x43\x1f\xbe\x03\x00\x80\x8c\x14\x3c\x5b\x8a\x29\xa3\x2d\x2a\xcb\x52\xb8\xfa\x1a\x5c\x11\xa2\x7a\x99\xdf\xc8\x82\xb3\x45\x2e\x94\xa3\x50\x88\xc6\xd4\x84\xf1\x41\xd3\x71\xbd\x34\x98\x06\x95\x72\x66\x49\x56\x94\xc0\x10\x2e\xfa\xe8\x83\x45\xb8\x7c\xba\xbb\x42\x9e\xc7\xdb\x59\xfd\x1c\x9e\x12\xfe\xb9\x52\xe7\x7c\xad\x2c\xb8\xa5\x25\x6a\xda\x87\x96\x76\xfa\x46\x23\xc8\xd1\x3b\x13\xf6\x3a\x72\x70\x05\x78\x56\x28\xf0\x93\x2c\xa0\x42\x91\x93\x71\x89\x23\x0b\x39\x6a\xda\xeb\xb7\x16\xed\x4f\x41\x59\x12\xdd\xb6\x04\xc3\xdf\x3c\x97\x14\xad\x20\xac\x6d\x8e\x75\x45\x54\x91\x39\x28\x75\xca\xf8\xc7\x32\x2a\x9d\xa6\x56\xb0\x5c\x51\x89\x62\x9b\xb8\xed\xe3\xd5\xb3\xf1\x3e\x06\x3f\x01\x00\x00\xff\xff\x93\x68\x03\x07\x10\x02\x00\x00" +var _lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4f\x6b\xa3\x50\x10\xbf\xfb\x29\x06\x0f\x41\x61\xf1\xb4\xec\x21\x6c\x36\x6c\x29\xa1\x87\xd2\x86\xf4\xdf\x79\xa2\x63\x7c\xc4\xbc\x91\x79\x63\x4d\x29\xf9\xee\x25\x3e\x35\xda\x50\x2f\x4f\xe7\xfd\xe6\xf7\x0f\xcd\xa1\x62\x51\xb8\xe7\x74\x4f\xd9\x33\xef\xc9\x3a\xc8\x85\x0f\x10\x8e\x47\x61\xd0\xe1\x56\xb5\xdd\x99\x6d\x49\xed\xb8\x03\x4e\x66\x61\x10\xa8\xa0\x75\x98\xaa\x61\x1b\xe1\x81\x6b\xab\x73\x78\x59\x99\xe3\x9f\xdf\x31\x7c\x06\x00\x00\x25\x29\x58\xce\xe8\x96\x4a\xda\xa1\xb2\xac\x85\x8f\x1f\xf3\x89\x8b\xc4\x7f\x3c\x5c\xc1\x82\x96\xa2\x12\xaa\x50\x28\xc2\x34\xf5\x0a\x58\x6b\x11\xdd\xb0\x08\x37\xaf\x58\xd6\x14\xc3\xec\xbf\xbf\xeb\x55\x7b\xe5\x82\xcb\x8c\x64\x43\x39\x2c\xa0\x5b\x4f\x9c\xb2\xe0\x8e\x92\x6d\x4b\xf0\xb7\x25\x9b\xb8\x69\x8f\xc7\x8a\x04\xcf\xb9\xdc\xaf\x69\x13\xc9\x9b\xd1\x22\x13\x6c\x62\x98\x5d\xaf\xdd\xb5\x82\xff\xa2\x73\x5d\xdf\x42\x8e\xee\x9f\xbc\x85\x35\x6a\x11\x0f\x7e\xcf\xcf\x72\x09\x15\x5a\x93\x46\xe1\x08\x0d\xc6\x81\x65\x05\x87\xef\x94\x01\x2a\xb8\x8a\x52\x93\x1b\xca\xa0\x42\x2d\xc2\x0b\xc5\xf0\xe2\xa8\xcc\x93\xeb\xda\x61\x71\x69\xa4\xcb\x3f\x00\x22\x4f\x73\xf2\x9d\xd3\x91\xd2\x5a\x69\x54\xe7\x0f\x94\x49\xd3\xd5\xb1\xa1\x06\x25\xeb\xd3\x0e\x7f\x83\x3f\x7b\xee\x53\xf0\x15\x00\x00\xff\xff\x8b\x3c\x89\xa1\x85\x02\x00\x00" func lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdcBytes() ([]byte, error) { return bindataRead( @@ -4220,11 +4240,11 @@ func lockedtokensDelegatorWithdraw_rewarded_tokens_lockedCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6d, 0x82, 0x3d, 0xe0, 0xb7, 0x1e, 0xf7, 0xed, 0x59, 0xb8, 0x4, 0xce, 0x38, 0xb6, 0x6e, 0x9a, 0x69, 0x60, 0x72, 0x8, 0x27, 0xcf, 0xa5, 0x8, 0x5f, 0x3e, 0xb7, 0x74, 0xcb, 0xaa, 0x37, 0xfe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0xbe, 0x82, 0xa7, 0xde, 0x1f, 0xfd, 0xc2, 0x7d, 0x57, 0x2, 0xd5, 0x9d, 0xb0, 0x5e, 0xde, 0xad, 0x51, 0xee, 0xe9, 0x0, 0x5b, 0x77, 0xbf, 0xff, 0xbc, 0x87, 0xf0, 0x16, 0x44, 0x76, 0x94}} return a, nil } -var _lockedtokensDelegatorWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xdf\x6a\xf2\x40\x10\xc5\xef\xf3\x14\x83\x17\x1f\xf1\x26\x7c\x17\xa5\x17\x52\x2b\xd2\x58\x0a\x8a\x8a\x7f\x1e\x60\xba\x99\x98\xc5\xb8\x13\x66\xc7\x9a\x52\x7c\xf7\xa2\xd1\x6d\xac\x34\x37\x93\x61\x0f\xe7\xb7\xe7\xac\xdd\x55\x2c\x0a\x13\x36\x5b\xca\x56\xbc\x25\xe7\x21\x17\xde\xc1\xff\x7a\x32\x7b\x19\x8f\xd2\xd5\x6c\x3c\x9a\x0e\xd3\x74\x31\x5a\x2e\xa3\x48\x05\x9d\x47\xa3\x96\x5d\x8c\x3b\xde\x3b\xed\xc1\xfa\xd5\xd6\x8f\x0f\x5d\xf8\x8a\x00\x00\x4a\x52\x70\x9c\x51\x4a\x25\x6d\x50\x59\xe6\xc2\xf5\x67\xef\x86\x90\x34\xcb\xf4\x4e\x16\x9d\x2d\x2a\xa1\x0a\x85\x62\x34\xa6\x21\x0c\xf7\x5a\x0c\x9b\xe5\x8a\xb9\xa2\x0a\x2e\x33\x92\x05\xe5\xd0\x87\x8b\x3e\x79\x67\x11\x3e\x3c\xfd\xbb\x41\x9e\xc7\xdb\x59\xfd\x1c\x9f\x12\xfe\xba\x52\xeb\x7c\xa9\x2c\xb8\xa1\x39\x6a\xd1\x85\x40\x3b\x7d\x83\x01\x54\xe8\xac\x89\x3b\x2d\x39\x58\x0f\x8e\x15\x3c\x7e\x50\x06\xa8\xe0\x2b\x32\x36\xb7\x94\x41\x85\x5a\x74\xba\xc1\x22\xfc\x78\x2a\xf3\xe4\xbe\x25\xe8\xff\xe4\xb9\xa4\x08\x82\xb8\xb1\x39\x36\x15\x51\x4d\x66\xaf\xd4\x2a\xe3\x0f\xcb\xe4\x60\xb5\xc8\x04\x0f\x6b\xe7\x15\x43\xdc\xf0\x78\xcd\xbc\x7a\x1f\xa3\xef\x00\x00\x00\xff\xff\xbc\x5c\xb3\x29\x10\x02\x00\x00" +var _lockedtokensDelegatorWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4d\x4f\xb3\x40\x10\xbe\xf3\x2b\x26\x1c\x1a\x48\xde\x70\x7a\xe3\xa1\xb1\x36\x1a\xd3\x78\x30\xda\xa8\xd5\xf3\x74\x19\xca\xa6\x74\x67\xb3\x3b\xd8\x1a\xd3\xff\x6e\xca\x52\x0a\x12\xb9\x2c\xcc\x3e\xf3\x7c\x05\xbd\xb3\xec\x04\x1e\x59\x6d\x29\x7f\xe3\x2d\x19\x0f\x85\xe3\x1d\xc4\xfd\x51\x1c\xb5\xb8\x45\x6d\x36\x7a\x5d\x51\x33\x6e\x81\x83\x59\x1c\x45\xe2\xd0\x78\x54\xa2\xd9\x24\xb8\xe3\xda\xc8\x14\x56\x0b\x7d\xb8\xfa\x9f\xc2\x77\x04\x00\x50\x91\x80\xe1\x9c\xee\xa9\xa2\x0d\x0a\xbb\xa5\xe3\xc3\xd7\x74\xe0\x22\x0b\x1f\x4f\x23\x58\xd4\x50\x58\x47\x16\x1d\x25\xa8\x54\x50\xc0\x5a\xca\xe4\x8e\x9d\xe3\xfd\x3b\x56\x35\xa5\x30\xb9\x0d\x77\x67\xd5\xb3\x72\xc9\x55\x4e\xee\x85\x0a\x98\x41\xbb\x9e\x79\x61\x87\x1b\xca\xd6\x0d\xc1\x75\x43\x36\x70\xd3\x1c\xcf\x96\x1c\x9e\x72\xf9\x7f\xc3\x26\xb2\x0f\x2d\x65\xee\x70\x9f\xc2\x64\xbc\xf6\xd0\x08\xde\x24\xa7\xba\x7e\x85\xec\xdd\xbf\x06\x0b\x4b\x94\x32\xed\xfc\x9e\x9e\xf9\x1c\x2c\x1a\xad\x92\xb8\x87\x06\xed\xc1\xb0\x80\xc7\x4f\xca\x01\x05\xbc\x25\xa5\x0b\x4d\x39\x58\x94\x32\xbe\x50\x74\x2f\x9e\xaa\x22\x1b\xd7\x0e\xb3\x4b\x23\x6d\xfe\x0e\x90\x04\x9a\x63\xe8\x9c\x0e\xa4\x6a\xa1\x5e\x9d\x7f\x50\x66\xfb\xb6\x8e\x95\xf1\x82\x5d\xda\xee\x6f\x08\xe7\x99\xfb\x18\xfd\x04\x00\x00\xff\xff\xa4\x08\x39\x8f\x85\x02\x00\x00" func lockedtokensDelegatorWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4240,11 +4260,11 @@ func lockedtokensDelegatorWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x76, 0x6b, 0xcd, 0x92, 0x2d, 0xc7, 0x26, 0xf1, 0x84, 0xdd, 0xbf, 0xe1, 0x63, 0x85, 0x81, 0xc6, 0xbc, 0xb9, 0x4b, 0x27, 0xa4, 0x96, 0xfc, 0xab, 0x2c, 0x32, 0x7a, 0x19, 0xc1, 0xcc, 0xec, 0x30}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x97, 0xad, 0xe8, 0x0, 0x2f, 0x41, 0x5f, 0x1e, 0x2a, 0x37, 0x13, 0xff, 0x4f, 0xde, 0x3f, 0xe4, 0xaf, 0x70, 0x62, 0x1d, 0x9d, 0xbb, 0x53, 0x40, 0x87, 0x7e, 0xed, 0xc8, 0x1b, 0x46, 0xaf, 0xab}} return a, nil } -var _lockedtokensStakerGet_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x5f\x6b\xc2\x30\x14\xc5\xdf\xf3\x29\xce\x7c\x18\xed\x8b\xec\x59\xb6\x89\x58\x61\xa2\xa8\x58\xbf\x40\x9a\xdc\x76\xc1\x34\xb7\xa4\x09\xdb\x10\xbf\xfb\x68\xbb\x39\xf7\x87\xdd\x97\xc0\xcd\xb9\xbf\x73\x38\xa6\x6e\xd8\x07\xac\x59\x1d\x49\x1f\xf8\x48\xae\x45\xe9\xb9\xc6\xdd\xeb\x7a\x3b\x5f\x2d\xb2\xc3\x76\xb5\xd8\xcc\xb2\x6c\xbf\xc8\x73\x21\x9a\x58\xa0\x8c\x0e\xb5\x34\x2e\x91\x4a\x71\x74\x61\x82\x99\xd6\x9e\xda\x36\x9d\x20\x0f\xde\xb8\x0a\x27\x21\x00\xc0\x52\x80\xed\xc9\xb3\x41\xba\x74\x25\xef\xa9\xc4\x03\x2a\x0a\x1f\xbb\x4f\x4c\xda\x9f\x74\x33\xae\x28\xcc\x65\x23\x0b\x63\x4d\x78\xbb\xbf\xbd\x0e\x37\xee\x9f\x27\xb6\x9a\xfc\xe9\xdb\xc7\xfa\xa7\xd1\xf9\x31\xb9\x20\xbb\xf9\x5f\xbd\x8b\x85\x35\x6a\x27\xc3\xf3\xe5\xe8\x2a\x51\xc1\xde\xf3\x4b\xf2\xb5\x99\x4e\xd1\x48\x67\x54\x32\x9a\x73\xb4\x1a\x8e\x03\x06\x11\x24\x3c\x95\xe4\xc9\x29\x42\x60\x34\x3d\x18\xbf\x0c\x47\xe9\x50\x92\xa7\x10\xbd\xfb\xb3\xa7\xae\x88\x0d\x6b\x5a\x66\x49\x7a\x23\xce\xe2\x3d\x00\x00\xff\xff\x59\x32\x6f\x4f\xad\x01\x00\x00" +var _lockedtokensStakerGet_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcd\x4e\xc3\x30\x10\x84\xef\x7e\x8a\x21\x07\x94\x5c\xf2\x00\x15\x50\x55\x70\xa0\x52\x85\x2a\xe0\x05\x1c\x7b\x13\xac\x3a\xde\x68\xbd\x16\x07\xc4\xbb\xa3\x26\x50\xca\xcf\x5e\x2c\x8d\x66\xbe\xf1\x84\x71\x62\x51\xec\xd8\x1d\xc8\x3f\xf3\x81\x52\x46\x2f\x3c\xa2\x3a\x97\x2a\x63\xac\x73\x94\x73\x6d\x63\x6c\xd0\x97\x84\xd1\x86\x54\x5b\xe7\xb8\x24\x5d\x61\xe3\xbd\x50\xce\xcd\x0a\x4f\x2a\x21\x0d\x78\x33\x06\x00\x22\x29\xe2\x0c\xda\x2c\xd6\x6d\xea\xf9\x91\x7a\x5c\x63\x20\xfd\xd4\xbe\x30\xcd\x1c\x39\x5e\xeb\xec\x64\xbb\x10\x83\x06\xca\x6d\xc7\x22\xfc\x7a\x75\x79\xfe\xa3\x76\x7e\xee\x39\x7a\x92\x9b\xfa\x14\x3c\xde\x0f\xdb\xee\x77\xf9\xbe\x74\x31\xb8\xbd\xd5\x97\x53\xe8\xbb\x77\xbd\xc6\x64\x53\x70\x75\x75\xcb\x25\x7a\x24\x56\x2c\xed\xb0\x10\xea\x49\x28\x39\x82\x32\xa6\x19\x83\x3f\xf8\xaa\x59\x86\x0b\x69\x91\xf4\xef\xf6\x76\x20\x7d\x60\x4f\xdb\xbb\xba\xb9\x30\xef\xe6\x23\x00\x00\xff\xff\x0f\x71\x7a\xf7\x83\x01\x00\x00" func lockedtokensStakerGet_node_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4260,11 +4280,11 @@ func lockedtokensStakerGet_node_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/get_node_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x36, 0xf1, 0x48, 0xbc, 0x29, 0x8, 0xe1, 0x54, 0xd9, 0xcd, 0x2f, 0x3f, 0x8c, 0x57, 0xfa, 0xce, 0x1c, 0x97, 0xce, 0xe6, 0xf4, 0xb4, 0xc7, 0xd7, 0xb0, 0x8b, 0x59, 0xcf, 0x1c, 0x80, 0x8c, 0x24}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0x84, 0xe, 0x5d, 0x19, 0x55, 0x83, 0xac, 0xfc, 0xd7, 0x38, 0x2e, 0x90, 0xd2, 0x96, 0x6, 0xf1, 0x2f, 0x3e, 0x2d, 0x2c, 0x94, 0x18, 0xed, 0x24, 0xeb, 0x46, 0x62, 0x19, 0xf7, 0xa4, 0x79}} return a, nil } -var _lockedtokensStakerGet_staker_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x94\xc1\x6f\xda\x30\x14\xc6\xef\xf9\x2b\xde\x69\x4a\x2e\xe9\xce\x68\x99\x94\xe1\x4c\x8b\x8a\x68\x05\xb9\x4c\x55\x0f\x4e\xfc\x02\x1e\xc6\x8e\x9c\x17\x75\x15\xe2\x7f\x9f\x1c\x92\x34\xa1\x74\xa0\xfa\x82\x30\xef\xf7\xf9\xf3\xf7\x59\xc8\x7d\x65\x2c\xc1\x4f\x65\x5e\x52\x96\xf1\x5c\xe1\x9a\xf8\x4e\xea\x0d\x94\xd6\xec\xe1\xeb\xdf\x94\x25\xcb\x2c\xcd\x7e\x67\xf1\x8f\x45\x12\x33\xb6\x4a\xd6\x6b\xaf\xa3\x16\xa6\xd8\xa1\xc8\xcc\x0e\x75\xdd\xcf\x2f\x1e\xe6\xf7\x09\xcb\x1e\xee\x93\x65\x3f\xed\xdd\xdd\xc1\x0a\xa9\xb1\xba\x06\xae\x81\x5b\xcb\x5f\xc1\x94\xb0\x34\x02\x53\x5d\x1a\x30\xf9\x1f\x2c\xa8\x06\xda\x72\x02\xda\x22\xf0\xa2\x30\x8d\x26\x28\x8c\x26\x6b\x54\xed\x14\xa4\x06\x49\x35\x68\x63\xf7\x5c\x0d\x13\x5c\x0b\xa8\xb7\xdc\xa2\xe8\xb7\x3c\xaf\x6a\x72\x28\x1b\x0d\x7b\x2e\xb5\xdf\xed\xce\x20\x16\xc2\x62\x5d\x07\x33\x78\x7a\x7f\xdb\xb0\xf7\xf2\x0c\x07\xcf\x03\x00\x50\x48\xa0\xbb\xcd\xd8\x39\xbe\xc6\x45\xf0\xf4\xfc\x86\x56\x4d\x1e\x77\x16\x23\xd8\x20\x75\x5f\x7a\x3b\xc1\xf4\x10\xa7\x86\x76\xce\x2b\x88\x46\x64\x3b\xe2\x56\xb8\x41\x9a\xf3\x8a\xe7\x52\x49\x7a\xfd\xf6\xe5\xf0\x81\x91\x93\xcc\x63\x93\x2b\x59\x1c\xbf\xfb\x03\xef\xd6\x0d\xc8\x23\xa7\xed\xc0\x74\x0e\x65\x79\x66\x72\x85\x25\x44\x53\xd3\x61\x6e\xac\x35\x2f\x7e\x00\x87\x01\x77\x90\x74\xdd\x46\x1f\x9d\xec\x52\xf3\xdb\x84\xd9\x6c\xaa\x1f\x4a\x11\x0c\x42\x93\x0e\x42\x5e\x55\xa8\x85\xef\x94\x4f\x23\xc7\xb7\x20\x55\xfb\x1a\xbb\xec\x1c\x72\x73\x9e\xe3\x77\x1c\xb6\x1f\xbf\x8c\x12\x68\x0f\x93\x1f\x16\xe7\xfa\xe7\x11\xff\x7f\xfa\x6a\xc6\xef\xfc\x9f\xa2\xbe\x74\xad\x4b\x89\x8f\x9a\x4a\xd9\x25\xce\x25\xbb\x41\x6a\xb3\x67\x13\xf4\x93\x85\xa5\x2c\x98\x48\x5c\xa9\xea\x54\xd7\xa8\x34\xdb\xfe\x27\x4c\x31\xef\xe8\xfd\x0b\x00\x00\xff\xff\xec\x44\xa8\x4d\x93\x04\x00\x00" +var _lockedtokensStakerGet_staker_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xc1\x8a\xdb\x30\x10\xbd\xeb\x2b\x86\x1c\x8a\x7d\xf1\xde\x43\x5d\x08\x98\xd2\x40\x29\xcb\x76\x6f\xcb\x1e\xc6\xd2\x38\x51\xa3\x68\x8c\x34\x66\x29\x21\xff\x5e\xe4\x38\x8e\xdd\x64\x9b\xb6\xba\x84\x48\xef\x3d\xbd\x79\x4f\xd8\xee\x5b\x0e\x02\x9f\x1d\xbf\xad\xab\x67\xac\x1d\x7d\x17\xdc\x59\xbf\x81\x26\xf0\x1e\x16\xd7\x07\x0b\x35\x70\xbe\xb2\xde\x91\x79\xe6\x1d\xf9\x38\xa0\xa7\x5b\x0b\xa5\x1e\x1e\xe0\x89\xa4\x0b\x3e\x02\x7a\xc0\x10\xf0\x27\x70\x03\xdf\xd8\xd0\xda\x37\x0c\x5c\xff\x20\x2d\x11\x64\x8b\x02\xb2\x25\x40\xad\xb9\xf3\x02\x9a\xbd\x04\x76\x31\x29\x58\x0f\x56\x22\x78\x0e\x7b\x74\x23\x02\xbd\x81\xb8\xc5\x40\xe6\xbc\xa5\x14\x6a\x4d\x31\x66\xe8\x5c\x0e\x4d\xe7\x61\x8f\xd6\x67\xc3\xe9\x12\x56\xc6\x04\x8a\x31\x5f\xc2\xcb\xf5\x50\xc5\xd9\xd3\x2b\x1c\x94\x02\x00\x70\x24\xe0\x87\xcd\x55\x72\x7e\x8f\x57\xc2\xcb\xeb\x85\xda\x76\xf5\x6a\xb0\x5a\xc2\x86\x64\xf8\x73\xb6\x93\x5f\x90\xdc\x8a\x65\x8f\x2e\x29\x25\x55\x0a\x4f\xd4\x40\x39\x51\xe8\xa1\x69\x15\x1a\x5b\xac\xad\xb3\x62\x29\x16\x35\x87\xc0\x6f\x1f\x3f\x1c\xde\xb1\x75\x12\x7b\xec\x6a\x67\xf5\xf1\x53\x36\xaa\xa4\xf5\x17\x94\x47\x94\xed\xc8\x19\xfc\xda\x66\xcc\x65\x6a\xf5\xf6\x08\x87\x91\x9d\x38\x36\x15\x5e\xbe\x77\x71\x8a\x30\xeb\xe3\xae\x96\x73\xf9\xc2\x9a\x7c\x14\x9a\x15\x52\x60\xdb\x92\x37\x59\x52\x3e\x41\x8e\xd7\xa9\x9e\x5e\xe4\x10\x64\xa2\xfe\x63\xb8\xd3\x17\x5d\xf4\x3f\x5f\xd8\x19\x0a\xbf\xe5\x39\x83\x5d\xdd\x79\x37\x50\x77\xdb\xe5\x1f\x87\xb8\xc4\x3b\x69\x65\x5d\x41\x79\x53\xad\xd8\x90\xf4\x41\x57\x59\x3e\xa1\xfe\x67\x3b\xeb\x2a\x9f\x49\xdc\xe9\xe5\xd4\xcd\xa4\xa1\xd0\x7f\x15\xe6\x34\x75\x54\xbf\x02\x00\x00\xff\xff\x2f\x27\xba\xbf\x8d\x04\x00\x00" func lockedtokensStakerGet_staker_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -4280,11 +4300,11 @@ func lockedtokensStakerGet_staker_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/get_staker_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0xbf, 0x4c, 0xa8, 0x6, 0x7d, 0xbb, 0x2b, 0x3, 0xaf, 0x56, 0xe3, 0x7e, 0xbb, 0xbc, 0x9c, 0x5a, 0x1a, 0xff, 0xe0, 0x27, 0xb6, 0x9a, 0xbe, 0xcc, 0x6d, 0x18, 0x3c, 0x9f, 0x81, 0xe8, 0x89}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x12, 0x2d, 0x71, 0xfd, 0xfb, 0x2c, 0xe0, 0x95, 0x39, 0x71, 0xb4, 0xb2, 0xbe, 0x29, 0xf5, 0x53, 0xef, 0xa9, 0xc4, 0x22, 0x24, 0xed, 0x2b, 0x64, 0x26, 0xca, 0xb9, 0xaa, 0x28, 0xf8, 0xf4, 0xf9}} return a, nil } -var _lockedtokensStakerRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\xcd\x8e\xda\x4c\x10\xbc\xfb\x29\xfa\xe3\xf0\xc9\x48\xbb\xde\x1c\xa2\x28\xb2\x20\x2b\xb2\x40\x82\x40\x80\x30\x9b\x9f\xe3\xac\xdd\x06\x0b\x33\x8d\xc6\xed\xc0\x0a\xf1\xee\xd1\x78\x6c\xec\x01\x36\xca\x25\x3e\xf8\xa7\xbb\xdc\x55\x53\x53\x93\x6c\x77\xa4\x18\x86\x29\xed\x97\xb4\x41\x09\xb1\xa2\x2d\xbc\x3b\x0c\x27\xb3\xef\xcb\xd9\x78\x30\xed\xf5\xfb\x8b\x41\x10\x38\x25\x70\x42\xe1\x06\xa3\x02\x9a\x55\xd8\xc9\xec\x69\x3c\xe8\xdf\x42\x07\x2c\x36\x89\x5c\xcd\x15\x1d\x5e\x2b\x74\xb0\xec\x8d\x47\xd3\x2f\xf3\xc5\xec\xc7\xcf\x0a\xee\xb0\x12\x32\x13\x21\x27\x24\xdd\x24\xf2\x21\x60\x95\xc8\xd5\x1d\x28\x4a\xd1\x87\xe7\x91\xe4\x8f\x77\x20\x91\xf7\xa4\xf4\xc0\x5e\x14\x29\xcc\xb2\x1a\x57\xb7\xc6\xf8\x5a\x97\x33\xc3\x6f\xd5\xc4\x96\x72\xc9\x3e\x3c\x0f\x93\xc3\x87\xf7\x6d\x38\x3a\x0e\x00\x40\x8a\x0c\x6b\x4a\x23\x54\x0b\x8c\x7d\xf8\xbf\xb9\x50\xaf\x78\x7c\x2d\xba\x35\xfa\x97\xc8\x53\x36\xe0\xb3\x7d\xde\x37\x5d\x34\x98\x9d\xc2\x9d\x50\xe8\x8a\x30\x34\x8c\xbd\x9c\xd7\x3d\xf3\xa1\x69\xa1\xbc\x32\x4c\x63\xef\x4c\x0d\x5d\x28\x7f\xf0\x5e\x48\x29\xda\x77\xde\x94\xf2\xc9\xd5\x96\xfa\xf0\x56\x3f\x60\x52\x62\x85\x73\xc1\xeb\xf6\x99\x4d\x5f\x8f\x8f\xb0\x13\x32\x09\xdd\xd6\x13\xe5\x69\x04\x92\x18\x0c\x19\x28\x8c\x81\x09\x1a\x53\x5a\x6d\xc7\x96\x5a\xad\xfb\x86\xd2\x0b\x1f\x2a\x81\x0f\x99\x51\xf2\x10\x57\xfd\xa2\xfd\xd7\xa2\xf4\x6f\xc0\x45\x3c\x0b\x72\xad\x12\x15\xca\x10\x5b\x66\xc6\xc9\x48\xc4\x03\x86\x39\x63\xc3\x5b\xbd\x4f\x92\x22\x1c\xc9\x98\xa0\x6b\xe5\xd1\x9b\x96\x75\xb7\x00\xf4\x7d\x48\xa2\x2a\x70\xfa\x7e\x33\x6f\x57\xa5\xab\xe8\x59\x9f\x76\x02\xeb\xf7\x86\xa5\x5a\x61\x5a\x6c\xe0\x67\x91\x0a\x19\x22\x74\x2f\x12\xe1\xad\x90\xcd\x16\x97\xe1\x29\x81\x6e\x63\x4a\x12\x97\xb9\x86\x4e\xf7\x62\xdc\xd1\xb1\x6c\xbe\x98\x1d\x2a\x14\x8c\xda\x0a\xed\x0d\x2a\xb7\x72\xcb\x3f\xfb\x56\x1f\x19\xf3\x6c\xd0\x9e\x00\xd3\x0c\x35\xbb\xeb\x96\xfc\xf7\x36\x7d\x5b\x0b\xb2\x62\xe3\xbd\x54\x9d\x3f\x2b\x8b\x70\x47\x59\xc2\x65\x84\x3a\xf7\xf6\x90\x7d\xc2\xeb\x48\x89\xbd\x6b\x6b\xbb\xa2\x6f\xff\xfb\xd5\x1f\x2d\x86\x32\xc3\x53\x62\x40\x49\xf9\x6a\x6d\x82\x9b\xe9\x53\xa5\x03\x80\xff\xb5\xea\xdc\x9f\xce\x6f\x65\x8c\x4f\xce\xef\x00\x00\x00\xff\xff\x93\x3a\x5c\xc0\x91\x05\x00\x00" +var _lockedtokensStakerRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x51\x4f\xdb\x30\x10\x7e\xcf\xaf\xb8\xe5\x01\x25\x52\x09\x2f\xd3\x34\x45\x74\x08\x36\xa1\xa1\x4d\x0c\x8d\xc1\x9e\xdd\xe4\x92\x5a\x75\xed\xc8\xb9\xac\x45\x55\xff\xfb\xe4\xd8\x49\xec\x16\x36\x5e\xe8\x03\x49\xee\x3e\x7f\x77\xdf\xf9\x3b\xf8\xba\x51\x9a\xe0\x5a\xa8\xcd\x2f\xb5\x42\x09\x95\x56\x6b\x88\xc7\xef\x38\x1a\x10\x9d\xac\xf9\x42\x60\x80\xf2\x63\x23\xf2\xbb\x2a\x56\x58\xf6\xb1\xd6\x01\xfd\xd0\x88\xbb\x27\xb6\xe2\xb2\xbe\xd3\x6a\xfb\xe4\x70\x7e\x28\x8e\x22\xd2\x4c\xb6\xac\x20\xae\x64\xc2\xcb\x1c\xee\x49\x73\x59\xcf\x40\x2b\x81\x39\x3c\xdc\x48\xfa\x38\x03\x89\xb4\x51\xda\x1c\xbb\x2c\x4b\x8d\x6d\x3b\xe1\xa6\xd4\x37\x7c\x9a\xc2\xad\xad\x12\xc4\xd8\x5a\x75\x92\x72\x78\xb8\xe6\xdb\x0f\xef\x53\xd8\x45\x11\x00\x80\x40\x82\xa5\x12\x25\xea\x9f\x58\xe5\xc0\x3a\x5a\x26\xbe\x98\xac\x7f\xfc\x68\x50\x33\xd3\x65\x3b\x0b\xe7\x94\xfd\xe6\xb4\x2c\x35\xdb\xa4\x70\x72\x7c\xec\x6b\x4f\x3c\x15\xfa\xc3\x3a\x41\x53\x9d\x17\x99\xc6\xcb\xc9\x1e\xcd\x09\x4b\xd0\x68\x6c\x98\xc6\x84\x15\x85\x55\xd2\x73\x5c\x29\xad\xd5\xe6\x91\x89\x0e\x53\x38\xb9\xb4\x39\xa3\x0e\xdc\xaf\x45\x51\x65\xa3\x42\x98\x83\x3b\x9f\xb5\xa4\x34\xab\x31\x5b\xf4\x0c\xe7\x6f\xa1\xfc\x53\x62\x6e\x3d\x87\x97\xf2\xf7\xb6\x85\x3b\x46\xcb\x74\x6c\xd8\xfc\x2e\x2e\xa0\x61\x92\x17\x49\xfc\x59\x75\xa2\x04\xa9\x08\x6c\x9f\xa0\xb1\x02\x52\xe0\xb1\xc4\x69\x14\xaa\x1d\xc6\xfc\x1f\xb1\xaf\x1d\xff\xa0\xe2\xcc\x91\x9c\x55\x43\xbe\x4f\xbf\xba\x73\x73\x0c\xa8\xdf\xae\xbe\x43\x23\x05\x35\xca\x02\x63\xcb\xb1\xb7\x3a\x70\x8b\x45\x47\xe8\xdd\xa1\xf1\x8e\x54\x25\xde\xc8\x4a\xc1\x3c\xd8\xab\xec\xd6\xc5\x13\xaf\x8d\x1e\xfb\x25\x07\x5e\xce\xbc\xa8\x5d\x2a\xf3\xd7\x8f\x3e\xb3\x5d\x47\xa1\xe7\xf1\xfd\x7a\x05\x9f\x3e\xce\xdf\xc1\xe9\x7d\x04\x78\x77\x66\xd4\x89\xde\x21\x57\x4c\x30\x59\x20\xcc\x0f\x5c\x9b\xd5\x48\xd6\x43\xce\xe0\x0e\x98\x78\x2c\xbc\x72\x2b\x0e\xe7\xf3\x03\xba\x5d\x14\x5c\xd1\x01\x77\xa1\x91\x11\x9a\x31\x9a\xb9\xa2\x4e\x86\x49\xe7\xe3\xcc\xa7\xff\x1e\xf6\xe9\x95\xdd\x03\x8a\x16\x4d\xf5\x24\x71\xf5\x4f\xc3\xf2\xa9\x69\x28\xf0\x65\xb6\x18\x32\xff\xee\xac\xc4\x46\xb5\x9c\x9c\xfd\xce\x4f\x43\x92\x8d\x33\x6c\x12\xf6\x76\x54\x3e\x7d\x7b\xf5\xbb\xa0\x82\xf3\xff\xad\x22\x40\xa9\xba\x7a\x69\x4d\xdf\x9a\xb5\x35\x4e\xc0\x77\xf1\xb4\x33\xfb\xf1\xcd\xad\xc0\x3e\xfa\x1b\x00\x00\xff\xff\x8e\x3f\xa9\xa3\xb2\x06\x00\x00" func lockedtokensStakerRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -4300,11 +4320,11 @@ func lockedtokensStakerRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x35, 0x10, 0x94, 0x2e, 0xaa, 0x18, 0xe0, 0x8d, 0x21, 0x58, 0x32, 0x92, 0xf5, 0xdf, 0x2f, 0xa3, 0x89, 0xdd, 0x37, 0x8e, 0x2a, 0xd2, 0x49, 0x8f, 0x30, 0x28, 0x1c, 0xcf, 0x93, 0x26, 0xe1, 0x4d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdb, 0x99, 0x9d, 0x62, 0xc7, 0xa4, 0x1f, 0xa9, 0x34, 0x1a, 0x76, 0xe, 0xd5, 0x14, 0x51, 0x9d, 0x15, 0xbc, 0xd1, 0x4, 0x50, 0x20, 0xe8, 0x57, 0xf2, 0xc4, 0xd8, 0xe, 0x23, 0x49, 0x96, 0xfe}} return a, nil } -var _lockedtokensStakerRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4d\x6b\xf2\x40\x10\xc7\xef\xfb\x29\x06\x0f\x0f\xf1\x12\x9e\x43\xe9\x41\x6a\x25\xa8\x7d\x41\x51\x71\x15\xda\xe3\x76\x9d\x68\x48\xdc\x49\x67\x27\x34\xa5\xf8\xdd\x4b\xdc\xf8\x42\xc1\xbd\x0c\xcb\xfc\xe7\x3f\xf3\x9b\xc9\xf6\x25\xb1\xc0\x94\x6c\x8e\x9b\x15\xe5\xe8\x3c\xa4\x4c\x7b\xf8\x5f\x4f\xe7\xc3\xc9\x78\xb4\x9a\x4f\xc6\xb3\x64\x34\x5a\x8e\xb5\x56\xad\x5a\x8b\xc9\x33\xb7\x5d\x30\xd5\xdf\x27\xb5\x5e\x25\x93\xd7\xd9\xf3\x62\x39\x7f\x7b\x3f\xc9\x95\xb0\x71\xde\x58\xc9\xc8\x45\x66\x4f\x95\x93\x1e\xac\x9f\xb2\xfa\xfe\xae\x0b\x3f\x4a\x01\x00\x14\x28\xb0\xa3\x62\x83\xbc\xc4\xb4\x07\xff\xae\x27\x89\x8f\xe1\xe5\x98\x0d\xea\x92\xb1\x34\x8c\x91\xb1\x36\xb8\x25\x95\xec\x92\xf0\x69\x2c\xa1\x7d\x1e\x8b\x34\x3e\xdb\x42\x1f\xda\x82\xf8\x83\x98\xe9\xeb\xe1\x66\x9b\xc7\xa8\xe1\xe9\xc1\xad\xbc\x16\x62\xb3\xc5\x85\x91\x5d\xf7\xdc\xad\x79\x83\x01\x94\xc6\x65\x36\xea\x0c\xa9\x2a\x36\xe0\x48\x20\x34\x03\xc6\x14\x19\x9d\x45\x10\x82\x2b\xaf\x4e\x70\x38\x04\x34\xac\xd1\x56\x82\x57\x10\xcd\x6a\xbc\x98\x1c\x39\x6c\xba\xff\x07\xab\x85\xd1\x47\x49\xd4\x55\x17\xfa\x4b\x51\xcc\xf8\x59\xa1\x97\xb5\xf3\xe1\x68\xe7\x3b\x84\x78\x1a\xe1\xa0\x7e\x03\x00\x00\xff\xff\x5f\x78\x28\xec\x0a\x02\x00\x00" +var _lockedtokensStakerRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x43\x0e\x25\x01\xc9\x49\x3c\x14\x6b\x51\xa1\x78\x10\x2c\xd6\xea\x79\x9a\x4c\x9a\x90\x74\x27\xce\xce\xd2\x8a\xf4\xbf\x4b\xb2\x31\x4d\x15\x8f\xee\x65\x61\xf6\xcd\x9b\x8f\xb7\x53\xee\x1a\x16\x85\x47\x4e\x2b\xca\x5e\xb8\x22\x63\x21\x17\xde\x41\x38\x2e\x85\x41\xaf\x5b\x29\x56\xa5\xd9\x2e\x85\x0f\x1f\xbd\x6e\x5c\x1a\x74\x0b\x67\xb6\xe5\xa6\xa6\xae\xbd\x17\x9e\xd5\xc2\x20\x50\x41\x63\x31\xd5\x92\x4d\x84\x3b\x76\x46\xa7\xb0\x5e\x94\x87\xab\xcb\x18\x3e\x83\x00\x00\xa0\x26\x85\x82\xeb\x8c\xe4\x99\xf2\x29\xa0\xd3\x22\x1a\x73\x25\xdd\xf5\xd4\x90\x60\x6b\x63\x2f\xce\x07\x27\x6f\xa5\x16\x99\xe0\x3e\x86\xc9\xef\xb6\x87\xce\xd8\x0f\x6a\x84\x1a\x14\x8a\x30\x4d\x3d\x48\x37\xea\x8e\x45\x78\xff\x8a\xb5\xa3\x18\x26\xb7\xfe\xad\x85\x83\xfe\x58\xaa\xf3\x64\x00\x84\x19\xf4\xfd\x89\x55\x16\xdc\x52\xb2\xe9\x1c\xae\xff\x03\xfc\x26\x6a\x63\x9d\xc2\x5f\xef\x2b\x8f\xb0\x44\x2d\xe2\x01\xb8\x3d\xf3\x39\x34\x68\xca\x34\x0a\xef\xd9\xd5\x19\x18\x56\xf0\x9c\x20\x94\x93\x90\x49\x09\x94\x61\xe4\x15\x7a\x87\xa3\x0f\x8b\x0e\x94\x3a\xa5\x51\x0e\xed\x3f\x59\xc5\x8a\xc4\x6f\xc6\xec\x47\x32\x7d\x0e\xab\x4e\x12\xc5\xc1\x29\xc0\x53\x53\x22\xf4\xee\xc8\xea\xda\x58\xbf\x51\xc3\x52\xf8\xfb\x1b\xe1\x18\x7c\x05\x00\x00\xff\xff\x8c\x90\x77\x98\xb4\x02\x00\x00" func lockedtokensStakerRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -4320,11 +4340,11 @@ func lockedtokensStakerRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x58, 0x89, 0x50, 0xca, 0x45, 0x71, 0x4e, 0x85, 0xb7, 0xbe, 0xb5, 0xb7, 0x66, 0xdb, 0x88, 0x48, 0xdf, 0xfa, 0x85, 0x70, 0x19, 0xa4, 0x67, 0x61, 0xc2, 0x33, 0xc, 0xc5, 0x1, 0xea, 0xd4, 0xb9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x43, 0x96, 0xc0, 0xc3, 0xf5, 0xcd, 0xe1, 0xb9, 0xfa, 0x2f, 0x25, 0x5a, 0x6c, 0x3b, 0x3d, 0xc4, 0x1a, 0xa9, 0x3, 0x7c, 0x91, 0xfe, 0x22, 0x28, 0x3c, 0xb9, 0x98, 0x62, 0xb4, 0xd0, 0xb2, 0xbf}} return a, nil } -var _lockedtokensStakerStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\x4d\x6f\xda\x40\x10\xbd\xfb\x57\x4c\x39\x54\xe6\x10\xa7\x87\xaa\x87\x08\x1a\x91\x00\x69\x04\x32\x08\x93\x7e\x1c\x17\x7b\xfc\x21\x96\x5d\x6b\x3d\x2e\x54\x88\xff\x5e\xed\xae\x6d\x6c\x27\x91\xaa\xfa\x62\xf0\xbc\x79\xef\xcd\xcc\xcb\x0e\xb9\x54\x04\x73\x2e\x8f\x5b\xb9\x47\x01\xb1\x92\x07\xf8\x74\x9a\x2f\x57\x3f\xb6\xab\xc5\xcc\x9f\x4c\xa7\x9b\x59\x10\x38\x35\xb0\x14\x49\xb6\xe3\xd8\x05\xbf\xf8\x4f\xcf\x0f\xcb\x59\xa7\xa1\xee\x58\xca\x70\x8f\x91\xc1\x17\x75\xc3\x72\xf5\xb8\x98\x4d\xdf\xe2\x0f\x88\xed\x33\x91\xac\x95\x3c\xfd\xa9\xd1\xc1\x76\xb2\x78\xf6\x9f\xd6\x9b\xd5\xcf\x5f\x0d\x3b\x29\x26\x0a\x16\x52\x26\x85\xcb\x0e\xb2\x14\x74\x07\x2f\xf3\xec\xf4\xe5\xf3\x10\xce\x8e\x03\x00\xc0\x91\x20\x95\x3c\x42\xb5\xc1\xf8\x0e\x3e\xb6\x9d\x78\xe6\xf5\xcd\x54\xaf\xe8\xdf\xac\xe4\x64\xc1\xcd\x46\xbc\xef\xfa\xa3\xc5\xe4\x0a\x73\xa6\xd0\x65\x61\x68\x15\x27\x25\xa5\x13\xfb\x47\xcb\x42\xf5\x14\xc8\x63\xaf\x91\x86\x31\x54\x0d\xde\x4e\x2a\x25\x8f\xa3\x77\xad\x7c\x75\xf5\xcc\x77\xf0\x5e\x3d\x20\xa9\x58\x82\x6b\x46\xe9\xb0\x51\xd3\xcf\xfd\x3d\xe4\x4c\x64\xa1\x3b\x78\x94\x25\x8f\x40\x48\x02\x2b\x06\x0a\x63\x54\x28\x42\x04\x92\xd0\xe2\x1a\x0c\x9d\xae\xe1\x7a\xfa\x37\xfc\xf6\xb6\x51\xdb\xbc\x2d\xac\x9f\xdb\xb8\xae\x9b\xf2\x3f\x5b\xd3\x6d\x40\x26\x4a\x46\xfc\xea\x75\x60\x39\x2e\xd6\x22\x9e\x30\x2c\x09\x5b\x1b\xd6\xd7\x2a\x88\xed\x51\xd9\xa8\x8c\x7b\x3b\xaf\x9c\x07\x06\xe2\xb6\x26\xd5\x8d\xdc\x6c\xf7\x81\x71\xa6\xb7\xf2\xaa\x35\x41\xb2\xfb\xaf\x2e\x5b\x01\xdb\x2c\x59\x0c\x36\x74\x30\x1a\xf7\xe8\xce\x4e\x67\xfa\x96\x49\xcf\xfc\xf6\xd1\x6e\xaa\x68\x62\x6b\xdf\x2d\xf6\x0b\x20\x2f\x50\x8b\xb8\x15\x08\x6e\xba\x2a\x43\xad\xdb\x39\x9a\xb7\xab\x2b\x7d\x03\xdd\xe1\x22\xcc\x65\x91\x51\x75\xc0\xd1\x4d\x97\xe4\x98\x51\x1a\x29\x76\xec\x79\x7b\x25\x3f\xfc\xef\x21\xdb\x6d\xfd\x81\xcf\x9d\x6a\x15\x1a\x5f\x12\xa0\x90\x65\x92\xda\xa4\x14\x3a\xc6\x46\xe4\xc3\xe0\x4a\x77\xa9\xe2\x72\x71\xfe\x06\x00\x00\xff\xff\x31\x42\x9b\x1e\xd2\x04\x00\x00" +var _lockedtokensStakerStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x8b\xdb\x30\x10\xbd\xfb\x57\x4c\x7d\x58\x6c\xe8\x7a\x2f\xa5\x87\x90\x74\xe9\x16\x96\x1e\xca\x76\x69\xda\xed\x59\xb1\xc7\x1f\x44\x91\x8c\x34\x6e\x52\x42\xfe\x7b\xd1\x87\x1d\xc9\x61\x69\x28\xd4\x17\x25\x9a\x37\x6f\xe6\xcd\x1b\x75\xbb\x5e\x2a\x82\x47\x2e\xf7\xdf\xe5\x16\x05\xd4\x4a\xee\x20\x9d\xfe\xa7\xc9\x88\x18\x44\xd3\x6d\x38\x46\xa8\xf0\x6e\x42\x7e\x91\xe5\x16\x2b\x7b\xa7\x3d\x30\xbc\x9a\x70\x6b\x62\xdb\x4e\x34\xcf\x4a\x1e\x7e\x7b\x5c\x78\x95\x26\x09\x29\x26\x34\x2b\xa9\x93\x22\x63\x3b\x39\x08\x5a\xc0\x8f\xc7\xee\xf0\xfe\x5d\x0e\xc7\x24\x01\x00\xe0\x48\xd0\x4a\x5e\xa1\xfa\x86\xf5\x02\xd8\x40\x6d\x16\x56\x2b\xec\xf1\xb5\x47\xc5\x0c\x8d\x7e\x1b\x0b\x29\x7e\x76\xd4\x56\x8a\xed\x73\xb8\xb9\x4c\xfb\x6c\x89\xcf\x85\x7e\xb1\x81\xd3\xb9\xce\xab\x4c\xd3\xf4\x8a\x17\x93\xe1\x08\x7a\x85\x3d\x53\x98\xb1\xb2\x74\x4a\x2c\xc7\x83\x54\x4a\xee\x5f\x18\x1f\x30\x87\x9b\x8f\x2e\x66\xd4\x81\xff\x34\xf2\xba\x98\x14\xc2\x0a\x7c\x7e\xa1\x49\x2a\xd6\x60\xb1\xb1\x0c\xcb\xff\xa1\xfc\x43\x66\x6c\x59\xc0\x6b\xf1\xb5\x6b\xe1\x99\x51\x9b\x4f\x0d\x9b\xef\xfe\x1e\x7a\x26\xba\x32\x4b\x3f\xc9\x81\x57\x20\x24\x81\xeb\x13\x14\xd6\xa8\x50\x94\x08\x24\x21\xe0\x4a\xf3\x24\xd6\x3c\x0e\xfb\x2f\x92\xaf\x35\x61\xd4\x72\xe7\x49\xee\xea\x31\x6e\xc3\x57\xf7\x6f\xd2\x80\xec\x23\xb0\x1d\x9e\x05\xa5\x8e\xe3\xe4\x74\xe0\x01\xcb\x81\x30\x70\xd2\x6c\x90\x26\xb6\x45\xe5\x56\x7e\x35\xf3\xd6\xcb\x5a\x5b\x48\x16\x8c\xc3\x24\x72\x6b\xc1\x03\xe3\xcc\x8c\xee\x22\xb5\x41\x72\x26\xf9\x0d\xf2\xc0\x90\xa5\xab\xc1\xbd\x21\x58\xae\x66\x74\xc7\x24\x52\x1f\x34\x59\xd8\xdf\x4f\xe8\x26\xa5\xa7\x57\xe8\xce\x80\xfd\x04\xc8\x35\x9a\x22\x99\x07\xc1\x6d\x5c\x25\x37\x75\x23\x67\x8b\xcd\x18\x99\x37\x10\x8b\xab\xb0\x97\xba\x23\x6f\xe0\xf2\x36\x26\xd9\x7b\xcb\x67\xbd\x5d\x94\xcf\xff\x59\x64\x98\x36\x17\x7c\x8c\xa2\x7e\x69\x9e\x24\x01\x0a\x39\x34\xad\xdb\x14\x6d\x76\xdd\x16\x79\x93\x9e\xe9\x4e\x7e\x5d\x4e\xc9\x9f\x00\x00\x00\xff\xff\x73\x2a\x82\xe7\x85\x05\x00\x00" func lockedtokensStakerStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4340,11 +4360,11 @@ func lockedtokensStakerStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf9, 0x76, 0x5e, 0x6f, 0x41, 0xe5, 0xe9, 0x35, 0x96, 0x1e, 0x65, 0x98, 0x9a, 0x42, 0xc8, 0xf6, 0xca, 0x37, 0x27, 0x38, 0x8d, 0x70, 0xfb, 0x14, 0xf8, 0xe, 0x2b, 0x5c, 0xca, 0xd4, 0x80, 0x73}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0x94, 0xa9, 0xe1, 0x94, 0x21, 0x96, 0x84, 0xaa, 0x9a, 0xa0, 0xb6, 0xdb, 0x1c, 0x29, 0x14, 0x18, 0x54, 0xdd, 0x63, 0xda, 0x32, 0x1c, 0xa8, 0xae, 0xbc, 0x10, 0x74, 0xb7, 0x33, 0xdf, 0x90}} return a, nil } -var _lockedtokensStakerStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6b\xc2\x50\x0c\xc7\xef\xfd\x2b\x82\x87\x51\x2f\x65\x87\xb1\x83\xcc\x49\x51\xf7\x03\x45\xa5\xcf\xc1\x76\x7c\x7b\x4d\xb5\xb4\xbe\x94\x34\xc5\x8e\xe1\xff\x3e\xda\xd7\xaa\x0c\xcc\x25\x2d\xf9\xe6\x9b\x7c\xf2\xd2\x43\x41\x2c\xb0\x24\x93\x61\xbc\xa5\x0c\x6d\x09\x09\xd3\x01\xee\xeb\xe5\x7a\xba\x98\xcf\xb6\xeb\xc5\x7c\x15\xce\x66\xd1\x5c\x29\xaf\x53\x2b\xd1\x59\x6a\x77\x1b\xa6\xfa\xa7\x57\xab\x6d\xb8\x78\x5f\xbd\x6e\xa2\xf5\xe7\x57\x2f\xf7\x84\xb5\x2d\xb5\x91\x94\xac\xaf\x0f\x54\x59\x19\xc1\xc7\x4b\x5a\x3f\x3e\x0c\xe1\xd7\xf3\x00\x00\x72\x14\xd8\x53\x1e\x23\x47\x98\x8c\xe0\xee\x7a\x93\xa0\x4d\x6f\x6d\xd5\xa9\x0b\xc6\x42\x33\xfa\xda\x18\xe7\x16\x56\xb2\x0f\xdd\x4f\x63\x09\x5d\x94\x98\x27\xc1\xd9\x16\xc6\xd0\x35\x04\xdf\xc4\x4c\xc7\xa7\x9b\x63\x9e\xfd\x86\x67\x04\xb7\xea\x4a\x88\xf5\x0e\x37\x5a\xf6\xc3\xf3\xb4\x26\x26\x13\x28\xb4\x4d\x8d\x3f\x98\x52\x95\xc7\x60\x49\xc0\x0d\x03\xc6\x04\x19\xad\x41\x10\x82\x2b\xaf\x81\x73\x38\x39\x34\xac\xd1\x54\x82\x57\x10\xcd\x69\x4a\xd1\x19\xb2\xbb\xf4\xf8\x1f\x56\x07\xa3\x5a\x89\x3f\xf4\x2e\xf4\x97\xa6\xa0\xfd\x8e\xf0\xa8\x39\xee\x79\xce\x4f\xe1\x72\xbf\xc5\xc9\xfb\x0b\x00\x00\xff\xff\x4c\x01\x8a\x3b\x0d\x02\x00\x00" +var _lockedtokensStakerStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x6b\x83\x40\x10\xc5\xef\x7e\x8a\xc1\x43\x50\x28\x9e\x4a\x0f\xa1\x69\x68\x0b\xa1\x87\x42\x43\xd2\x3f\xe7\x89\x8e\x71\xd1\xec\xc8\x38\x92\x94\x92\xef\x5e\xdc\x35\xc6\xb4\xf4\xd8\xbd\xac\xcc\xbe\x79\xf3\xf3\xed\x9a\x5d\xcd\xa2\xf0\xcc\x69\x49\xd9\x2b\x97\x64\x1b\xc8\x85\x77\x10\x8e\x4b\x61\xd0\xeb\xd6\x8a\xa5\xb1\xdb\xa5\xf0\xe1\xb3\xd7\x8d\x4b\x83\x6e\xd1\xda\xad\xd9\x54\xe4\xda\x7b\xe1\x45\x2d\x0c\x02\x15\xb4\x0d\xa6\x6a\xd8\x46\xb8\xe3\xd6\xea\x14\xde\x16\xe6\x70\x73\x1d\xc3\x57\x10\x00\x00\x54\xa4\x50\x70\x95\x91\xac\x28\x9f\x02\xb6\x5a\x44\x63\xae\xc4\x6d\x2f\x35\x09\x76\x36\xcd\xd5\xe5\xe0\xe4\xc3\x68\x91\x09\xee\x63\x98\xfc\x6e\x7b\x72\xc6\x7e\x50\x2d\x54\xa3\x50\x84\x69\xea\x41\xdc\xa8\x07\x16\xe1\xfd\x3b\x56\x2d\xc5\x30\xb9\xf7\x67\x1d\x1c\xf4\xab\xa1\x2a\x4f\x06\x40\x98\x41\xdf\x9f\x34\xca\x82\x5b\x4a\x36\xce\xe1\xf6\x3f\xc0\xef\xa2\x2e\xd6\x29\xfc\x75\xbe\xf6\x08\x4b\xd4\x22\x1e\x80\xbb\x35\x9f\x43\x8d\xd6\xa4\x51\xf8\xc8\x6d\x95\x81\x65\x05\xcf\x09\x42\x39\x09\xd9\x94\x40\x19\x46\x5e\xa1\x77\x38\xfa\xb0\xe8\x40\x69\xab\x34\xca\xa1\xbb\xa7\x46\xb1\x24\xf1\x2f\x63\xf6\x23\x99\x3e\x87\xb5\x93\x44\x71\x70\x0e\xf0\xdc\x94\xb8\xef\x15\xed\x51\xb2\xd3\xff\x0c\xef\xc2\xef\x27\x8a\x63\xf0\x1d\x00\x00\xff\xff\xd0\xbf\x36\xd9\xb7\x02\x00\x00" func lockedtokensStakerStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4360,11 +4380,11 @@ func lockedtokensStakerStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2d, 0x5f, 0x47, 0xa5, 0x4b, 0xa0, 0x20, 0x8f, 0xd4, 0xc8, 0xff, 0x36, 0x18, 0xd, 0x76, 0xea, 0x11, 0x69, 0x2a, 0x66, 0x7f, 0xb9, 0xbb, 0xec, 0x61, 0xba, 0x59, 0xc0, 0x50, 0x23, 0xa6, 0x12}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0xa0, 0x71, 0x36, 0x7, 0x30, 0xc6, 0x7b, 0x66, 0x12, 0xac, 0xed, 0xc2, 0xbc, 0x68, 0x9a, 0xe6, 0xbd, 0xa3, 0x1, 0xa2, 0x22, 0x15, 0xe4, 0xda, 0xdd, 0xae, 0xe4, 0x5c, 0xa2, 0x96, 0x31}} return a, nil } -var _lockedtokensStakerStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6a\xc2\x40\x10\xc6\xef\xfb\x14\x83\x87\x12\x2f\xa1\x87\xd2\x83\xd4\x4a\x50\xfb\x07\x45\xc5\x55\x68\x8f\xdb\x75\xa2\x21\x71\x27\x4c\x26\x34\xa5\xf8\xee\x25\xd9\xa8\xa1\xe0\x5c\x26\x61\xbe\xf9\x66\x7e\xb3\xc9\x31\x27\x16\x98\x93\x4d\x71\xb7\xa1\x14\x5d\x01\x31\xd3\x11\xee\xab\xf9\x72\x3c\x9b\x4e\x36\xcb\xd9\x74\x11\x4d\x26\xeb\xa9\xd6\xaa\x55\x6b\x31\x69\xe2\xf6\x2b\xa6\xea\xe7\xac\xd6\x9b\x68\xf6\xbe\x78\x5d\xad\x97\x1f\x9f\x67\xb9\x12\x36\xae\x30\x56\x12\x72\x81\x39\x52\xe9\x64\x00\xdb\x97\xa4\x7a\x7c\xe8\xc3\xaf\x52\x00\x00\x19\x0a\x1c\x28\xdb\x21\xaf\x31\x1e\xc0\x5d\x77\x93\xb0\x49\x6f\x4d\xd5\xab\x73\xc6\xdc\x30\x06\xc6\x5a\xef\x16\x95\x72\x88\xfc\x4f\x6d\x09\x6d\x14\x98\xc5\xe1\xc5\x16\x86\xd0\x36\x84\x5f\xc4\x4c\xdf\x4f\x37\xc7\x3c\x07\x35\xcf\x00\x6e\xd5\xb5\x10\x9b\x3d\xae\x8c\x1c\xfa\x97\x69\x75\x8c\x46\x90\x1b\x97\xd8\xa0\x37\xa6\x32\xdb\x81\x23\x01\x3f\x0c\x18\x63\x64\x74\x16\x41\x08\x3a\x5e\x3d\xef\x70\xf2\x68\x58\xa1\x2d\x05\x3b\x10\xf5\x69\x0a\x31\x29\xb2\xbf\xf4\xf0\x1f\x56\x0b\xa3\x1b\x49\xd0\x57\x57\xfa\x6b\x53\xd8\x7c\x6f\x5d\x93\x5a\x9e\xcb\x53\xf8\x7c\xde\xe2\xa4\xfe\x02\x00\x00\xff\xff\x63\x35\x3a\x15\x0d\x02\x00\x00" +var _lockedtokensStakerStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6b\xe3\x40\x0c\x85\xef\xfe\x15\xc2\x87\x60\xc3\xe2\xd3\xb2\x87\xb0\xd9\xb0\x2d\x84\x1e\x0a\x0d\x4d\xd3\x9e\x15\x5b\x8e\x07\x3b\x23\x23\xcb\x24\xa5\xe4\xbf\x17\xcf\x4c\x1d\xa7\xa5\xc7\xce\x45\x41\xf3\xf4\xf4\xe5\x79\xcc\xa1\x65\x51\xb8\xe7\xbc\xa6\xe2\x89\x6b\xb2\x1d\x94\xc2\x07\x88\xa7\xad\x38\x0a\xba\x8d\x62\x6d\xec\x7e\x2d\x7c\x7a\x0d\xba\x69\x6b\xd4\xad\x7a\xbb\x37\xbb\x86\xdc\x78\x10\x5e\xf5\xe2\x28\x52\x41\xdb\x61\xae\x86\x6d\x82\x07\xee\xad\xce\x61\xbb\x32\xa7\x3f\xbf\x53\x78\x8b\x22\x00\x80\x86\x14\x2a\x6e\x0a\x92\x47\x2a\xe7\x80\xbd\x56\xc9\x94\x2b\x73\xe5\xa1\x25\xc1\xc1\xa6\xfb\x75\xbd\x38\x7b\x31\x5a\x15\x82\xc7\x14\x66\x5f\xc7\xee\x9c\xb1\x5f\xd4\x0a\xb5\x28\x94\x60\x9e\x7b\x10\xb7\xea\x86\x45\xf8\xf8\x8c\x4d\x4f\x29\xcc\xfe\xfb\xbb\x01\x0e\xc2\xe9\xa8\x29\xb3\x11\x10\x16\x10\xe6\xb3\x4e\x59\x70\x4f\xd9\xce\x39\xfc\xfd\x09\xf0\x7f\xc9\x10\xeb\x1c\xbe\xbb\xdf\x78\x84\x35\x6a\x95\x8e\xc0\xc3\x59\x2e\xa1\x45\x6b\xf2\x24\xbe\xe5\xbe\x29\xc0\xb2\x82\xe7\x04\xa1\x92\x84\x6c\x4e\xa0\x0c\x13\xaf\xd8\x3b\x9c\x7d\x58\x74\xa2\xbc\x57\x9a\xe4\x30\x7c\xa7\x4e\xb1\x26\xf1\x2f\x63\xf1\x29\x99\x90\xc3\xc6\x49\x92\x34\xba\x04\x78\x19\xca\xdc\xef\xad\x75\x25\xfc\x9f\xf1\x5d\xf8\xfa\x41\x71\x8e\xde\x03\x00\x00\xff\xff\xff\x8b\x86\xf7\xb7\x02\x00\x00" func lockedtokensStakerStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4380,11 +4400,11 @@ func lockedtokensStakerStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0x1d, 0x1, 0x11, 0xf9, 0x79, 0xef, 0xb3, 0xce, 0x49, 0x93, 0x62, 0xfc, 0x29, 0x5c, 0xc2, 0x92, 0xc4, 0xa4, 0xc9, 0x40, 0x13, 0x75, 0x6, 0x2a, 0xf, 0x2c, 0x4e, 0x71, 0xae, 0x7e, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x12, 0xf1, 0x86, 0x58, 0x5d, 0x91, 0x7f, 0x1a, 0x15, 0x92, 0xc5, 0xf3, 0xa7, 0xa6, 0xd3, 0x7a, 0x72, 0xd0, 0x90, 0x7c, 0xc2, 0x70, 0x26, 0x1f, 0xbc, 0xcf, 0x67, 0xa, 0x38, 0x17, 0x82, 0xc7}} return a, nil } -var _lockedtokensStakerUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x41\x6b\xfa\x40\x10\xc5\xef\xfb\x29\x06\x0f\x7f\xd6\x4b\xf8\x9f\xa5\x56\x82\x4a\x5b\x14\x15\xd7\x43\x7b\xdc\xae\x13\x0d\x59\x77\xc2\x64\x42\x2d\xc5\xef\x5e\x92\x8d\x1a\x0a\xce\x65\x18\xe6\xcd\x7b\xfc\x26\x3f\x95\xc4\x02\x4b\x72\x05\xee\x77\x54\x60\xa8\x20\x63\x3a\xc1\xff\xf3\x72\x3d\x5d\xcc\x67\xbb\xf5\x62\xbe\x4a\x67\xb3\xed\xdc\x18\xd5\xa9\x8d\xd8\x22\x0f\x87\x0d\xd3\xf9\xfb\xaa\x36\xbb\x74\xf1\xb6\x7a\xd9\x6c\xd7\xef\x1f\x57\xb9\x12\xb6\xa1\xb2\x4e\x72\x0a\x7a\x08\x3f\x4a\x01\x00\x78\x14\x38\x92\xdf\x23\x6f\x31\x1b\xc1\xbf\x7e\x76\xd2\xb6\xd7\x76\x1b\xd5\x25\x63\x69\x19\xb5\x75\x8e\xea\x20\x23\x48\x6b\x39\xa6\x71\x68\x2c\xa1\xab\x0a\x7d\x96\xdc\x6c\x61\x0c\xdd\x41\xf2\x49\xcc\xf4\xf5\xf4\x30\xe6\x59\x37\x04\x23\x78\xb4\x37\x42\x6c\x0f\xb8\xb1\x72\x1c\xde\xd2\x9a\x9a\x4c\xa0\xb4\x21\x77\x7a\x30\xa5\xda\xef\x21\x90\x40\x0c\x03\xc6\x0c\x19\x83\x43\x10\x82\x9e\xd7\x20\x3a\x5c\x22\x1a\x9e\xd1\xd5\x82\x3d\x88\xe6\x35\x95\xd8\x02\x39\xfe\x76\xfc\x07\xab\x83\x31\xad\x44\x0f\xd5\x9d\xfe\x7e\x94\xd4\xa1\x9d\x52\xef\xf5\x35\xee\xa2\x7e\x03\x00\x00\xff\xff\x74\xb5\x4c\x21\xe8\x01\x00\x00" +var _lockedtokensStakerUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x51\x4d\x4b\xf3\x40\x10\xbe\xef\xaf\x18\x72\x28\x1b\x78\xc9\x0f\x28\x6f\x2d\x55\x10\x0f\x82\xc5\x8a\x9e\xa7\x9b\x49\x13\xb2\xdd\x09\x93\x59\x5a\x91\xfe\x77\xc9\x87\x6d\xaa\x78\x74\x2e\x21\x33\xcf\x17\xcf\x56\xfb\x86\x45\xe1\x91\x5d\x4d\xf9\x0b\xd7\x14\x5a\x28\x84\xf7\x90\x4c\x57\x89\x19\x71\xf7\x31\xec\xaa\xad\xa7\x7e\x3d\x02\xaf\x76\x89\x31\x2a\x18\x5a\x74\x5a\x71\xb0\x29\x7c\x18\x03\x00\xe0\x49\xa1\x64\x9f\x93\x3c\x53\x31\x07\x8c\x5a\xda\xa9\x43\xd6\x7f\x9e\x1a\x12\xec\x88\xed\xbf\x6b\xab\xec\xad\xd2\x32\x17\x3c\xa4\x30\xfb\x49\x7b\xe8\x85\x07\xa3\x46\xa8\x41\x21\x8b\xce\x71\x0c\x3a\x5a\xdd\xb2\x08\x1f\x5e\xd1\x47\x4a\x61\xb6\x1a\x6e\x5d\x38\x18\xa7\x25\x5f\x64\xe7\x80\xb0\x80\x91\x9f\xb5\xca\x82\x3b\xca\xb6\xbd\xc2\xff\xbf\x08\x7e\x63\xbb\x22\xe7\xf0\xdb\x7d\x33\x44\x58\xa3\x96\xe9\x39\x70\x37\xcb\x25\x34\x18\x2a\x67\x93\x3b\x8e\x3e\x87\xc0\x0a\x43\x4e\x10\x2a\x48\x28\x38\x02\x65\x98\x68\x25\x83\xc2\x69\x28\x8b\x8e\xe4\xa2\xd2\xa4\x87\xee\x9d\x5a\xc5\x9a\x64\x2d\x7c\x7c\x87\xc5\xb7\x66\xc6\x1e\x36\x3d\xc4\xa6\xe6\x52\xe0\x85\x94\xc5\xd0\xff\xad\xbc\xb7\x5f\x76\x27\xf3\x19\x00\x00\xff\xff\x30\xca\xb7\x9c\x6a\x02\x00\x00" func lockedtokensStakerUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -4400,11 +4420,11 @@ func lockedtokensStakerUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0xd3, 0x2e, 0xa, 0x8e, 0xd8, 0xe4, 0x82, 0xc3, 0xb4, 0xc9, 0x21, 0x28, 0x8, 0x53, 0xa5, 0x6d, 0xb0, 0xa8, 0x9, 0x45, 0xd8, 0x11, 0xf1, 0x8a, 0x70, 0x2d, 0x4f, 0x79, 0x43, 0x3f, 0x86}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdc, 0xc1, 0xaf, 0x7a, 0x10, 0xfb, 0xfd, 0x3b, 0x33, 0xc6, 0xc6, 0xce, 0xa3, 0x80, 0xcf, 0x7f, 0x17, 0xf2, 0x6f, 0xae, 0x9a, 0xba, 0x53, 0xa9, 0x11, 0x16, 0x37, 0xb0, 0x94, 0xa3, 0x4c, 0x20}} return a, nil } -var _lockedtokensStakerUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4d\x8b\xf2\x40\x0c\x80\xef\xf3\x2b\x82\x87\x97\x7a\x29\xef\xb9\xac\x2b\x45\x85\x05\x45\xc5\xfa\x07\x66\x67\xd2\x0f\x5a\x27\x25\x93\xd2\x2e\x8b\xff\x7d\xe9\xc7\x6a\x59\x30\x97\x61\x48\xf2\x64\x9e\x49\x71\xab\x89\x05\x0e\x64\x4a\xb4\x57\x2a\xd1\x79\x48\x99\x6e\xf0\xbf\x3b\x9c\x36\xfb\xdd\xf6\x7a\xda\xef\x8e\xf1\x76\x7b\xd9\x25\x89\x52\xc2\xda\x79\x6d\xa4\x20\x17\x38\x6c\x63\x6b\x19\xbd\x8f\x20\x11\x2e\x5c\xb6\x84\x6f\xa5\x00\x00\x2a\x14\xc8\xa9\xb2\xc8\x17\x4c\x23\xf8\x37\xc7\x87\xc3\xf1\x31\x64\xc7\xea\x9a\xb1\xd6\x8c\x81\x36\x86\x1a\x27\x11\xc4\x8d\xe4\xf1\x78\xe9\x91\x30\x85\xc7\x2a\x0d\x1f\x58\x58\xc1\xd4\x10\x7e\x12\x33\xb5\x6f\x2f\xc7\xbc\x07\xbd\x52\x04\xaf\xf2\x89\x10\xeb\x0c\xcf\x5a\xf2\xe5\x63\x5a\x1f\xeb\x35\xd4\xda\x15\x26\x58\x6c\xa8\xa9\x2c\x38\x12\x18\x87\x01\x63\x8a\x8c\xce\x20\x08\xc1\x8c\xb5\x18\x09\xf7\x51\x0d\x3b\x34\x8d\xe0\x4c\xa2\xff\x1a\x2f\xba\x44\x3e\x33\x75\x5f\xb0\xfa\xa3\x35\xc9\x24\x43\x49\xb0\x54\x4f\xfb\x67\x53\xd8\xd4\x56\x0b\x1e\x51\x5a\xe2\xb2\x70\xd9\xb4\x87\xd9\x4a\x7e\x5f\x71\x57\x3f\x01\x00\x00\xff\xff\x7e\x1e\x81\xca\xe2\x01\x00\x00" +var _lockedtokensStakerUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xcd\x6a\xeb\x30\x10\x85\xf7\x7e\x8a\xc1\x8b\x60\xc3\xc5\x0f\x10\x6e\x6e\xc8\x2d\x94\x2e\x4a\x1b\x9a\xd2\xae\x15\x69\x6c\x0b\x3b\x1a\x33\x1a\xe1\x94\x92\x77\x2f\xb6\xd5\xc4\x69\xe9\xb2\xda\x18\xe6\xe7\x9c\x8f\xe3\xb1\x87\x8e\x58\xe0\x9e\x74\x83\xe6\x99\x1a\x74\x1e\x4a\xa6\x03\xa4\xf3\x52\x9a\xc4\xb9\xdb\xe0\x2a\xbb\x6f\x71\x2c\xc7\xc1\xab\x5a\x9a\x24\xc2\xca\x79\xa5\xc5\x92\xcb\x1c\xf6\x1b\x63\x18\xbd\x5f\xc2\x4e\xd8\xba\x2a\x87\xf7\x24\x01\x00\x68\x51\xa0\xa6\xd6\x20\x3f\x61\xb9\x04\x15\xa4\xce\xe6\x9e\xc5\xf8\x79\xec\x90\xd5\x20\xe5\xff\x5c\x9b\x17\xaf\x56\x6a\xc3\xaa\xcf\x61\xf1\x7d\xed\x6e\x14\x9e\x8c\x3a\xc6\x4e\x31\x66\x4a\x6b\x0a\x4e\xa2\xd5\x7f\x62\xa6\xfe\x45\xb5\x01\x73\x58\x6c\xa6\xde\x00\x07\xf1\x79\x6c\xcb\xe2\x0c\x08\x2b\x88\xfb\x85\x17\x62\x55\x61\xb1\x1f\x15\xfe\xfe\x06\xf8\xbf\x6c\x88\x76\x09\x3f\xf5\x77\x13\xc2\x56\x49\x9d\x9f\x81\x87\xb7\x5e\x43\xa7\x9c\xd5\x59\x7a\x43\xa1\x35\xe0\x48\x60\xe2\x04\xc6\x12\x19\x9d\x46\x10\x82\x99\x56\x3a\x29\x9c\xa6\xb0\xf0\x88\x3a\x08\xce\x72\x18\xfe\x93\x17\xd5\x20\x6f\x99\x8e\x6f\xb0\xfa\x92\x4c\xcc\x61\x37\x8e\x64\x79\x72\x09\xf0\xb2\x54\x84\xce\x28\xc1\x07\x94\x9e\xb8\xb1\xae\x8a\x47\x31\xbb\x8f\x4f\x8a\x53\xf2\x11\x00\x00\xff\xff\x4a\x3a\x43\x6d\x93\x02\x00\x00" func lockedtokensStakerUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -4420,11 +4440,11 @@ func lockedtokensStakerUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xda, 0xe7, 0xc1, 0x75, 0xd6, 0x8e, 0x1a, 0x5c, 0xb2, 0x5f, 0xcd, 0xb3, 0x4f, 0xa6, 0x85, 0x5a, 0xd4, 0x54, 0x29, 0x2c, 0x6f, 0x5d, 0x2a, 0xcd, 0x98, 0x25, 0x64, 0x6c, 0xa3, 0xb7, 0x33, 0x8c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7d, 0xe2, 0x2b, 0x45, 0xf7, 0x48, 0x74, 0x1b, 0x7a, 0xf8, 0xba, 0x91, 0x56, 0x13, 0x38, 0x14, 0xae, 0x4d, 0x1c, 0xdf, 0x80, 0xc7, 0x48, 0xcc, 0x45, 0x7d, 0xf9, 0x69, 0x6b, 0xb, 0x49, 0x9f}} return a, nil } -var _lockedtokensStakerWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x4f\x8f\xa2\x40\x10\xc5\xef\x7c\x8a\x8a\x87\x0d\x1c\x16\xf7\xb0\xd9\x83\xd1\x35\xc6\x3f\x99\x44\x33\x1a\x71\x66\xce\x3d\x50\x0c\x44\xa4\x48\x51\x08\x93\x89\xdf\x7d\x02\x0d\x88\x44\x2f\xd3\x97\x0e\xd4\xeb\x7a\xbf\x7a\xdd\xe1\x29\x21\x16\xd8\x90\x7b\x44\xef\x40\x47\x8c\x53\xf0\x99\x4e\xf0\xa7\xd8\x6c\xe7\xeb\xe5\xe2\xb0\x5d\x2f\x9f\x67\x8b\xc5\x7e\xe9\x38\x46\xad\x5e\x45\x94\x57\xda\x46\xba\xda\x6c\xdf\x6e\x84\x86\xb0\x8a\x53\xe5\x4a\x48\xb1\xa9\x4e\x94\xc5\x32\x82\x97\x55\x58\xfc\xfb\x6b\xc1\x97\x61\x00\x00\x44\x28\x10\x50\xe4\x21\xef\xd1\x1f\xc1\xaf\x2e\x83\x5d\x6d\x4f\x55\xb5\x15\x9f\x55\x16\x89\xd6\xb6\x04\xf6\x6b\xf9\x53\x37\x4c\x18\x13\xc5\x68\x2a\xd7\xd5\x86\xb3\x4c\x82\x99\xfe\x28\x5d\xa1\x5e\x29\x46\xbe\xdd\x3a\xc3\x04\xea\x03\xf6\x3b\x31\x53\x3e\x7e\x48\xf2\xdf\x2c\xe7\x1d\xc1\xa3\xba\x23\xc4\xea\x03\x77\x4a\x02\xab\x75\x2b\xd7\x74\x0a\x89\x8a\x43\xd7\x1c\xcc\x29\x8b\x3c\x88\x49\x40\x9b\x01\xa3\x8f\x8c\xb1\x8b\x20\x04\x9d\x5e\x03\xcb\xb8\x05\x6e\xa6\xbf\xc3\xdb\x4b\xa3\xc1\x1c\xa6\x9a\x67\xe8\x37\xf5\xaa\xfc\x33\xb4\xeb\x9d\x9f\x55\x94\xe1\x40\x77\xb9\x68\x48\x2c\xd0\xcd\x04\x3b\x19\x97\xf7\x95\x8a\x3a\x22\xef\x98\x8a\x4f\x98\xf4\x52\xaf\xd9\x9d\x4a\x62\x76\x67\xbd\x1e\xb2\xf3\x50\x02\x8f\x55\xbe\xc7\x5c\xb1\xd7\x24\xde\xbe\x27\xbd\x5b\xf7\x63\xb2\x3d\x4c\x28\x0d\xa5\xce\x62\xfc\xbb\xe7\xdf\xf4\xee\x77\x6b\xe6\xba\x18\xdf\x01\x00\x00\xff\xff\x5e\xcd\xa6\x9b\x1b\x03\x00\x00" +var _lockedtokensStakerWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xc1\x8e\xda\x30\x10\x86\xef\x79\x8a\x51\x0e\x28\x91\x5a\x73\xa9\x7a\x40\x50\xd4\x56\x42\x3d\x54\x2a\x82\x96\x9e\x4d\x32\x21\x11\xc6\x13\x4d\x1c\xc2\x6a\xc5\xbb\xaf\x62\x3b\x21\x64\x97\xcb\x4a\x9b\x8b\x95\x99\xf1\x3f\xdf\x3f\xe3\xe2\x54\x12\x1b\xf8\x4d\xc9\x11\xd3\xbf\x74\x44\x5d\x41\xc6\x74\x82\x70\x18\x0a\x03\x5f\xb7\x52\xd4\xd8\x90\x2f\xea\xff\x6f\x15\xb5\x3e\x14\x7b\x85\x77\x55\xc3\x58\x18\x04\x86\xa5\xae\x64\x62\x0a\xd2\x91\x3c\x51\xad\xcd\x0c\xfe\xad\x8a\xcb\xd7\x2f\x31\x3c\x07\x01\x00\x80\x42\x03\x39\xa9\x14\x79\x83\xd9\x0c\x64\x6d\xf2\x68\x48\x24\xec\xf1\xa7\x44\x96\xad\x4c\xf5\xe9\xbe\xb1\xf8\x5f\x98\x3c\x65\xd9\xc4\x30\x79\x7d\xed\x97\x15\xee\xfb\x9c\x65\xad\x8c\x6d\x33\xe9\xfd\x88\x5d\x1b\x74\x2c\x25\x63\x29\x19\x23\x99\x24\x8e\xd5\xd2\xfc\x20\x66\x6a\x76\x52\xd5\x18\xc3\xe4\xbb\xcb\xb5\xfc\xe0\xbf\x0a\x55\x26\x7a\x0f\xb0\x00\x7f\x5f\x54\x86\x58\x1e\x50\xec\xad\xc2\xfc\x23\xbc\x7d\x8b\xda\xc9\xcf\xe0\x51\x7e\xeb\x10\xd6\xd2\xe4\x71\x0f\xdc\x7e\xcb\x25\x94\x52\x17\x49\x14\xfe\xa4\x5a\xa5\xa0\xc9\x80\xe3\x04\xc6\x0c\x19\x75\x82\x60\x08\x06\x5a\x61\x1c\xdc\x7b\xee\xe6\xf9\xd8\xf2\x78\xce\x1d\xee\xd4\xd7\x4d\xb3\x2e\x6f\xd3\xef\x43\xbc\xbd\xd5\x73\xbb\xa4\xd0\xa9\x5c\x1d\x2c\x5e\x30\xa9\x0d\x0e\xd6\xd5\xbe\x84\xca\xc8\x23\xf2\x9a\xe9\xf2\x04\x8b\xd1\x02\x3d\xfb\xd6\x96\x44\x43\xcf\xb7\x4b\xa2\xf1\xab\xd9\x60\x23\x39\xed\x26\xdf\x3f\x72\x77\xc6\x6f\x8f\x4b\xa4\x58\x52\x55\x18\x3f\x8b\xf9\xe7\x51\xff\x4e\x7b\xac\xd6\xf9\xba\x06\x2f\x01\x00\x00\xff\xff\x84\xb1\x80\xaf\xcd\x03\x00\x00" func lockedtokensStakerWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4440,11 +4460,11 @@ func lockedtokensStakerWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8d, 0x8a, 0xc1, 0xc0, 0x10, 0xe2, 0xf1, 0x46, 0xbe, 0x81, 0x21, 0x16, 0x25, 0x90, 0x8, 0x82, 0x70, 0x2d, 0xac, 0x24, 0xc8, 0x11, 0xcc, 0x3e, 0xa1, 0x71, 0xa3, 0x3f, 0xf8, 0x5e, 0x35, 0xa0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0xee, 0xf6, 0x2e, 0xef, 0x76, 0x89, 0x30, 0x4a, 0x84, 0xd5, 0xa7, 0x97, 0xb6, 0xc8, 0x9c, 0xfc, 0xc3, 0xc6, 0xd8, 0x30, 0x74, 0x8, 0xb5, 0x6e, 0x92, 0x38, 0x2d, 0xb6, 0x35, 0xeb, 0x38}} return a, nil } -var _lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6b\xc2\x50\x0c\xc7\xef\xfd\x2b\x82\x87\x51\x2f\x65\x87\xb1\x83\xcc\x49\x51\xf7\x03\x45\xa5\x75\xb0\x1d\xdf\x5e\x53\x5b\x5a\x5f\x4a\x9a\xd2\x8e\xe1\xff\x3e\xea\x6b\xb5\x0c\xcc\x25\x3c\xf2\xcd\x37\xf9\xe4\xa5\xc7\x82\x58\x60\x4d\x3a\xc3\x68\x4f\x19\x9a\x12\x62\xa6\x23\xdc\x37\xeb\xed\x7c\xb5\x5c\xec\xb7\xab\xe5\xc6\x5f\x2c\x82\x65\x18\x3a\x9d\x3a\x14\x95\xa5\xe6\xb0\x63\x6a\x7e\x7a\x75\xb8\xf7\x57\xef\x9b\xd7\x5d\xb0\xfd\xfc\xea\xe5\x8e\xb0\x32\xa5\xd2\x92\x92\x71\xd5\x91\x2a\x23\x13\xf8\x78\x49\x9b\xc7\x87\x31\xfc\x3a\x0e\x00\x40\x8e\x02\x09\xe5\x11\x72\x80\xf1\x04\xee\x86\x9b\x78\xe7\xf4\x76\xae\x5a\x75\xc1\x58\x28\x46\x57\x69\x6d\xdd\xfc\x4a\x12\xdf\x3e\x5a\x4b\xe8\xa2\xc4\x3c\xf6\x2e\xb6\x30\x85\xae\xc1\xfb\x26\x66\xaa\x9f\x6e\x8e\x79\x76\x5b\x9e\x09\xdc\xaa\x87\x42\xac\x0e\xb8\x53\x92\x8c\x2f\xd3\xda\x98\xcd\xa0\x50\x26\xd5\xee\x68\x4e\x55\x1e\x81\x21\x01\x3b\x0c\x18\x63\x64\x34\x1a\x41\x08\x06\x5e\x23\xeb\x70\xb2\x68\xd8\xa0\xae\x04\x07\x10\xed\x69\x4a\x51\x19\xb2\xbd\xf4\xf4\x1f\x56\x07\x13\x9e\x25\xee\xd8\xb9\xd2\x5f\x9b\xbc\x3a\x95\x24\x62\x55\x07\x58\x2b\x8e\x7a\xa4\xcb\x6f\xd8\xdc\x2f\x72\x72\xfe\x02\x00\x00\xff\xff\xd5\xd5\xf1\x96\x10\x02\x00\x00" +var _lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x6b\x83\x40\x10\xc5\xef\xfb\x29\x06\x0f\x41\xa1\x78\x2a\x3d\x84\xa6\xa1\x2d\x84\x1e\x0a\x0d\x49\xff\x9c\x27\xeb\x18\x25\x66\x47\xc6\x11\x53\x4a\xbe\x7b\xd1\x35\xc6\xb4\xf4\xd8\xbd\x2c\xcc\xce\xbc\xf7\x9b\xa7\xf9\xbe\x64\x51\x78\x66\xbb\xa3\xe4\x95\x77\xe4\x2a\x48\x85\xf7\x10\x8c\x4b\x81\xe9\xfb\x16\xb5\xdb\xe6\x9b\x82\xba\x72\xdf\x78\x51\x0b\x8c\x51\x41\x57\xa1\xd5\x9c\x5d\x88\x7b\xae\x9d\x4e\xe1\x6d\x91\x1f\x6e\xae\x23\xf8\x32\x06\x00\xa0\x20\x85\x8c\x8b\x84\x64\x45\xe9\x14\xb0\xd6\x2c\x1c\xfb\xc5\xdd\xf5\x52\x92\x60\x2b\x53\x5d\x5d\x1a\xc7\x1f\xb9\x66\x89\x60\x13\xc1\xe4\xf7\xd8\x53\x27\xec\x8d\x4a\xa1\x12\x85\x42\xb4\xd6\x83\x74\x56\x0f\x2c\xc2\xcd\x3b\x16\x35\x45\x30\xb9\xf7\x6f\x2d\x1c\xf4\xa7\xa2\x22\x8d\x07\x40\x98\x41\x3f\x1f\x57\xca\x82\x5b\x8a\x37\x9d\xc2\xed\x7f\x80\xdf\x85\x6d\xac\x53\xf8\xeb\x7d\xed\x11\x96\xa8\x59\x34\x00\xb7\x67\x3e\x87\x12\x5d\x6e\xc3\xe0\x91\xeb\x22\x01\xc7\x0a\x9e\x13\x84\x52\x12\x72\x96\x40\x19\x46\x5a\x81\x57\x38\xfa\xb0\xe8\x40\xb6\x56\x1a\xe5\xd0\x7e\xa7\x4a\x71\x47\xb2\x14\x3e\x7c\xc2\xec\x47\x32\x7d\x0e\xeb\xae\x25\x8c\xcc\x39\xc0\xf3\x50\xdc\xf4\x3b\xaf\xa8\x41\x49\x4e\x2b\x0d\xbf\x86\xbf\x4f\x20\x47\xf3\x1d\x00\x00\xff\xff\x3e\x0d\x58\x54\x92\x02\x00\x00" func lockedtokensStakerWithdraw_rewarded_tokens_lockedCdcBytes() ([]byte, error) { return bindataRead( @@ -4460,11 +4480,11 @@ func lockedtokensStakerWithdraw_rewarded_tokens_lockedCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0xae, 0xac, 0xc7, 0x74, 0x93, 0x11, 0x75, 0xd9, 0x15, 0x9f, 0x5d, 0x7e, 0x5d, 0xa1, 0xd1, 0x7b, 0x82, 0x30, 0xf4, 0xb2, 0xda, 0xf6, 0xce, 0x9f, 0x28, 0xd0, 0xa9, 0xa0, 0xd5, 0x91, 0x1b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x13, 0xa5, 0xaf, 0x96, 0x28, 0x9e, 0xf5, 0x9, 0x1d, 0x5, 0x22, 0x6d, 0x55, 0xb5, 0x0, 0x1e, 0x47, 0xd, 0x10, 0x2b, 0x1b, 0xe6, 0x12, 0x5c, 0x4b, 0xc4, 0x95, 0x48, 0xf8, 0x64, 0x8c, 0x43}} return a, nil } -var _lockedtokensStakerWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x4f\x6b\xf2\x40\x10\xc6\xef\xf9\x14\x83\x87\x97\x78\x09\xef\xa1\xf4\x20\xb5\x12\xd4\xfe\x41\x51\x31\x0a\xed\x71\xbb\x99\x98\x25\x71\x27\x4c\x26\x98\x52\xfc\xee\x25\xd9\xa8\xa1\xe0\x5c\x86\x64\x9e\x79\x66\x7e\xb3\xe6\x58\x10\x0b\x2c\x49\x67\x18\xef\x28\x43\x5b\x42\xc2\x74\x84\xff\xf5\x72\x3d\x5d\xcc\x67\xbb\xf5\x62\xbe\x0a\x67\xb3\xed\x3c\x8a\xbc\x4e\x1d\x89\xca\x8c\x3d\x6c\x98\xea\xef\x8b\x3a\xda\x85\x8b\xf7\xd5\xeb\x66\xbb\xfe\xf8\xbc\xc8\x3d\x61\x65\x4b\xa5\xc5\x90\xf5\xd5\x91\x2a\x2b\x23\xd8\xbf\x98\xfa\xf1\x61\x08\x3f\x9e\x07\x00\x90\xa3\x40\x4a\x79\x8c\xbc\xc5\x64\x04\xff\xfa\x9b\x04\x6d\x7a\x6b\xab\x4e\x5d\x30\x16\x8a\xd1\x57\x5a\x3b\xb7\xb0\x92\x34\x74\x1f\x8d\x25\x74\x51\x62\x9e\x04\x57\x5b\x18\x43\xd7\x10\x7c\x11\x33\x9d\x9e\xee\x8e\x79\xf6\x1b\x9e\x11\xdc\xab\x47\x42\xac\x0e\xb8\x51\x92\x0e\xaf\xd3\x9a\x98\x4c\xa0\x50\xd6\x68\x7f\x30\xa5\x2a\x8f\xc1\x92\x80\x1b\x06\x8c\x09\x32\x5a\x8d\x20\x04\x3d\xaf\x81\x73\x38\x3b\x34\xac\x51\x57\x82\x3d\x88\xe6\x34\xa5\xa8\x0c\xd9\x5d\x7a\xfc\x07\xab\x83\x89\x5a\x89\x3f\xf4\x6e\xf4\xb7\xa6\xe0\x64\x24\x8d\x59\x9d\xf6\xb6\xfd\xdb\x21\x5d\x5f\xc3\xe5\xcb\x22\x67\xef\x37\x00\x00\xff\xff\xfa\xe1\x41\xb8\x10\x02\x00\x00" +var _lockedtokensStakerWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6b\xe3\x40\x0c\x85\xef\xf3\x2b\x84\x0f\xc1\x86\xc5\xa7\x65\x0f\x61\xb3\x61\x5b\x08\x3d\x14\x1a\x9a\xa6\x3d\x2b\x63\x39\x36\x71\x46\x46\x96\x49\x4a\xc9\x7f\x2f\x9e\x99\x26\x4e\x4b\x8f\x9d\xcb\x80\x46\x7a\xef\xd3\xb3\xeb\x7d\xcb\xa2\x70\xcf\x76\x47\xc5\x13\xef\xc8\x75\x50\x0a\xef\x21\x19\x97\x12\x13\xfb\x16\xbd\xdb\xd6\x9b\x86\x7c\x39\x36\x5e\xd5\x12\x63\x54\xd0\x75\x68\xb5\x66\x97\xe2\x9e\x7b\xa7\x53\x58\x2f\xea\xe3\x9f\xdf\x19\xbc\x19\x03\x00\xd0\x90\x42\xc5\x4d\x41\xf2\x48\xe5\x14\xb0\xd7\x2a\x1d\xfb\xe5\xfe\x7a\x68\x49\x70\x90\xe9\x7e\x5d\x1b\xe7\x2f\xb5\x56\x85\xe0\x21\x83\xc9\xd7\xb1\x3b\x2f\x1c\x8c\x5a\xa1\x16\x85\x52\xb4\x36\x80\x78\xab\x1b\x16\xe1\xc3\x33\x36\x3d\x65\x30\xf9\x1f\xde\x06\x38\x88\xa7\xa3\xa6\xcc\xcf\x80\x30\x83\x38\x9f\x77\xca\x82\x5b\xca\x37\x5e\xe1\xef\x4f\x80\xff\x4b\x87\x58\xa7\xf0\xdd\xfb\x2a\x20\x2c\x51\xab\xec\x0c\x3c\x9c\xf9\x1c\x5a\x74\xb5\x4d\x93\x5b\xee\x9b\x02\x1c\x2b\x04\x4e\x10\x2a\x49\xc8\x59\x02\x65\x18\x69\x25\x41\xe1\x14\xc2\xa2\x23\xd9\x5e\x69\x94\xc3\xf0\x9d\x3a\xc5\x1d\xc9\x52\xf8\xf8\x0a\xb3\x4f\xc9\xc4\x1c\x56\xbe\x25\xcd\xcc\x25\xc0\xcb\x50\x7e\x88\x3b\xaf\x9d\xaf\xc6\x95\xce\xbf\x46\xb8\x3f\x40\x4e\xe6\x3d\x00\x00\xff\xff\x11\x39\xe8\x7a\x92\x02\x00\x00" func lockedtokensStakerWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4480,11 +4500,11 @@ func lockedtokensStakerWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0xec, 0x5f, 0x9a, 0x23, 0xd5, 0x31, 0x36, 0x95, 0x2c, 0xc0, 0x94, 0x2c, 0x22, 0xb0, 0x1e, 0xdd, 0x3, 0x79, 0xff, 0x8e, 0x9c, 0xf3, 0x37, 0xf, 0xb3, 0xc2, 0x8d, 0xb4, 0x76, 0xaa, 0x4f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0x46, 0x2b, 0xa7, 0xad, 0xfb, 0xcd, 0x79, 0xce, 0xdd, 0xec, 0x78, 0xff, 0x7c, 0x42, 0x3d, 0x6e, 0x19, 0xe, 0x4c, 0x1f, 0x75, 0xdb, 0xd5, 0x69, 0xe9, 0x9c, 0xc8, 0x54, 0xbd, 0x4f, 0xcb}} return a, nil } -var _lockedtokensUserDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6f\xb2\x40\x10\xc6\xef\x7c\x8a\x89\x87\x37\x70\x78\xb1\x87\xa6\x07\x62\x6b\xac\x62\xdb\x48\xb4\xf1\x4f\x7b\x5e\x97\x41\x88\xb8\x43\x96\xa1\x98\x34\x7e\xf7\x66\x41\x88\x98\x9a\x74\x2f\x9b\xec\xf3\xcc\x3c\xbf\xd9\x4c\x72\xc8\x48\x33\x4c\x0b\xb5\x4b\xb6\x29\xae\x69\x8f\x0a\x22\x4d\x07\xb8\x3b\x4e\x37\xf3\x97\xb7\xe7\xc0\x5f\x2f\x66\xfe\x7c\x34\x99\x2c\xfd\xd5\xca\x6a\x0a\x52\x2a\xbb\xe6\x60\xf1\xf9\x9b\x31\x20\xb9\xc7\xb0\xb2\xe6\x8d\x37\x58\x8c\x67\xfe\xa4\xe3\xb6\x58\x0b\x95\x0b\xc9\x09\x29\x5b\x1c\xa8\x50\xec\xc1\x66\x9a\x1c\x1f\xee\x1d\xf8\xb6\x2c\x00\x80\x14\x19\x62\x4a\x43\xd4\x4b\x8c\x3c\xf8\x77\xd9\xda\xad\xae\xd7\x4a\x6d\xcd\x5f\xa2\x48\xb9\xf6\xb6\xbc\xee\x87\x79\xac\x1b\x66\x1a\x33\xa1\xd1\x16\x52\xb2\x07\xa3\x82\xe3\x91\x94\x26\xda\x44\xc2\xf9\xe4\x98\x46\x6e\x1b\x0b\x8f\x60\xdc\xee\x96\xb4\xa6\x72\x70\x93\xe1\xc9\x36\xb3\x7a\x70\x4b\x5f\x31\x69\xb1\xc3\x77\xc1\xb1\xd3\x46\x99\x33\x1c\x42\x26\x54\x22\xed\xde\x98\x8a\x34\x04\x45\x0c\x75\x18\x08\xd0\x18\xa1\x46\x25\x11\x98\xe0\xa2\x5b\xcf\xb1\xba\xbc\xcd\xe4\xd7\xb8\x57\xdf\xd0\x50\xf6\xf3\x1a\xa7\x1f\x35\x7a\x25\xff\x99\xcc\x94\x01\x57\xeb\x50\x25\x1b\xd0\x5e\x5d\x7d\xaa\xc9\xf0\x88\xb2\x60\xbc\xf9\xaf\x6e\x88\x19\xe5\x09\x9f\x81\x06\xff\x3b\x63\xb8\x65\xc2\x71\xa8\x45\xd9\xae\x46\x7d\x3b\x4d\xc6\xc9\xfa\x09\x00\x00\xff\xff\xd8\x78\x8a\x49\xc9\x02\x00\x00" +var _lockedtokensUserDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x92\xbf\x6e\xdc\x30\x0c\xc6\x77\x3f\x05\xe1\xe1\x60\x0f\x55\x96\xa2\xc3\x21\x6d\xd0\x16\x08\x3a\x74\x28\xda\x34\x9d\x19\x99\x8e\x85\x93\x45\x43\xa2\xce\x57\x14\xf7\xee\x85\xe4\x3f\x38\x0f\x1e\xa2\x45\x30\xf9\x91\xfc\x7d\xb4\x4c\x3f\xb0\x17\x78\x8c\xee\xd5\xbc\x58\x7a\xe2\x13\x39\x68\x3d\xf7\x50\x6e\x62\x65\xb1\x28\x2d\x8f\x1b\xd5\xf2\xbd\x2a\xbe\xb3\x3e\x51\x93\x63\x61\x16\xdd\x86\xca\xa2\x10\x8f\x2e\xa0\x16\xc3\xae\xc2\x9e\xa3\x93\x23\xfc\x7e\x34\x97\x0f\xef\x6b\xf8\x57\x14\x00\x00\x96\x04\x3a\xb6\x0d\xf9\x9f\xd4\x1e\xe1\x70\xdb\x41\xe5\xeb\x5b\xce\xae\xe2\x33\x46\x2b\x59\x8b\x51\xba\x6a\x03\xaf\xfe\x18\xe9\x1a\x8f\x63\x0d\x87\x95\x57\x3d\xa7\x8a\x69\xda\xe0\x69\x40\x4f\x15\x6a\x2d\x73\x83\x2f\xec\x3d\x8f\xcf\x68\x23\xd5\x70\xf8\xac\x75\xc2\x4c\x78\x30\x9f\x40\xb6\x55\x2b\x22\x7c\x84\x54\xac\x82\xb0\xc7\x57\x52\x2f\xb9\xfc\x7e\x97\xfb\x53\x95\x36\x73\x84\xbd\xfc\xaf\xa9\xcf\x0f\x94\xae\x5e\x47\xa6\xf3\xf0\x00\x03\x3a\xa3\xab\xf2\xa9\x23\x18\xbc\xe9\xd1\xff\x85\x18\xc8\x27\x80\x04\x09\x0d\x53\x00\xc7\x02\x1d\x9e\x09\xd0\x01\x86\xc0\xda\xa0\x50\x03\x36\xcf\x5b\xa4\x65\x5d\x6c\xfd\x2c\x5b\xdc\xb1\xf3\xa6\xd5\x2e\x16\xef\xe6\x26\x77\xed\x92\xcf\xe9\x3d\x5b\x5f\x39\xda\x26\xe3\x4f\x43\x21\x95\x81\xe4\x27\x97\xf1\xc0\x53\x5b\x4e\xd5\xd7\x09\x9f\x2e\xa4\xa3\xd0\xee\xcf\x51\x0d\x0d\x1c\x8c\xcc\x40\xf7\xef\x36\x5e\xd5\x38\x5b\x58\xdf\xe2\x74\xd7\xcb\x8c\x6b\xf1\x3f\x00\x00\xff\xff\x06\xda\x11\x7f\x26\x03\x00\x00" func lockedtokensUserDeposit_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4500,11 +4520,11 @@ func lockedtokensUserDeposit_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/deposit_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa5, 0xa, 0xdf, 0x26, 0x3f, 0xf, 0x6e, 0xbc, 0x78, 0x6f, 0xab, 0xd2, 0xb9, 0x60, 0xc2, 0xab, 0x81, 0x1, 0xf1, 0xa2, 0xae, 0x5a, 0x57, 0x2a, 0xc8, 0xa, 0x5b, 0x36, 0x40, 0x8c, 0xc1, 0x1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf4, 0xa5, 0xe5, 0x96, 0x71, 0x49, 0x43, 0x2c, 0x42, 0xb0, 0x75, 0x57, 0xe2, 0x55, 0x9a, 0x95, 0xfe, 0xf3, 0xec, 0xdf, 0x91, 0x6e, 0x41, 0x44, 0xc, 0x5b, 0x1, 0x46, 0x8e, 0x83, 0xab, 0xd7}} return a, nil } -var _lockedtokensUserGet_locked_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x1e\x3d\x48\x72\x29\x9e\x45\x2d\x21\x09\x28\x0d\xb6\xb4\xfd\x03\x9b\xcd\xa4\x2e\xdd\xec\x84\xcd\x2e\x2a\xa5\xff\x5d\x92\xd4\xd8\xaa\x38\x97\x5d\x66\xde\x7b\x33\x7c\xba\x69\xd9\x79\x14\xac\x0e\x54\xed\xf8\x40\xb6\x43\xed\xb8\xc1\xed\x7b\xb1\x4a\x97\x79\xb6\x5b\x2d\xf3\x97\x24\xcb\x36\xf9\x76\x2b\x44\x1b\x4a\xd4\xc1\xa2\x91\xda\x46\x52\x29\x0e\xd6\xdf\x21\xa9\x2a\x47\x5d\x17\x4f\x3f\x1c\x85\x00\x00\x43\x1e\x66\x88\x4e\x46\xed\xb3\xad\x79\x43\x35\x1e\xb0\x27\x7f\xee\x7d\xe5\xc4\x83\xa5\xaf\xf9\x9e\x7c\x2a\x5b\x59\x6a\xa3\xfd\xc7\xfd\xcd\xe5\x75\xf3\xe1\x79\x62\x53\x91\x3b\x5e\x0d\x8a\x9f\x8b\x4e\x8f\xd1\x14\xd9\xd7\xff\xea\x75\x28\x8d\x56\x6b\xe9\x5f\x27\xd3\xc5\x45\x25\x3b\xc7\x6f\xd1\x77\x67\xb1\x40\x2b\xad\x56\xd1\x2c\xe5\x60\x2a\x58\xf6\x18\x45\x90\x70\x54\x93\x23\xab\x08\x9e\xd1\x0e\xc1\xf8\xb5\x70\x16\x8f\x90\x1c\xf9\xe0\xec\x9f\x9c\x7a\x10\x57\xbe\x33\xdf\x28\x16\x27\xf1\x19\x00\x00\xff\xff\x93\x76\x77\x6b\xbb\x01\x00\x00" +var _lockedtokensUserGet_locked_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x4e\xc3\x30\x0c\x86\xef\x79\x8a\x5f\x3d\xa0\xf6\xd2\x07\x40\xc0\x34\x71\x01\x69\x87\x09\xf1\x02\x69\xe2\x8c\x68\x69\x5c\x39\x8e\x38\x20\xde\x1d\xad\x1d\x65\x03\x7c\x49\x64\xf9\xfb\xfe\x38\x71\x9c\x58\x14\x3b\x76\x47\xf2\xaf\x7c\xa4\x5c\x10\x84\x47\x34\x97\xad\xc6\x18\xeb\x1c\x95\xd2\xda\x94\x3a\x84\x9a\x31\xda\x98\x5b\xeb\x1c\xd7\xac\xb7\xd8\x7a\x2f\x54\x4a\xb7\xde\xf0\x61\x0c\x00\x24\x52\xa4\xd9\xb4\x5d\x66\x9f\x73\xe0\x17\x0a\xb8\xc7\x81\xf4\xdc\xfb\xf6\x74\x33\x72\xaa\xde\xd9\xc9\x0e\x31\x45\x8d\x54\xfa\x81\x45\xf8\xfd\xee\xe6\xf2\x49\xfd\x7c\x3c\x71\xf2\x24\x0f\xed\x0a\x9e\xea\x6a\x6c\xf7\x3b\x7c\x5f\x87\x14\xdd\xde\xea\xdb\x0a\xfd\xe4\x6e\x36\x98\x6c\x8e\xae\x6d\x1e\xb9\x26\x8f\xcc\x8a\x25\x1d\x16\x42\x81\x84\xb2\x23\x28\x63\x9a\x35\xf8\xa3\x6f\xba\x65\x71\x21\xad\x92\xff\xdd\xbd\x3f\x90\x5e\x71\xe7\x3f\x6b\x3b\xf3\x69\xbe\x02\x00\x00\xff\xff\x5f\x74\xcf\x97\x91\x01\x00\x00" func lockedtokensUserGet_locked_account_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -4520,11 +4540,11 @@ func lockedtokensUserGet_locked_account_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_locked_account_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4c, 0xbe, 0xe8, 0x78, 0x27, 0x47, 0x3b, 0xa0, 0xc8, 0x22, 0x70, 0xb2, 0xac, 0xa6, 0x18, 0x30, 0x3b, 0x65, 0xd7, 0x4, 0x7e, 0x42, 0xc6, 0x5a, 0xcc, 0x96, 0xd, 0x11, 0x92, 0xf3, 0x5, 0x84}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x1c, 0x7f, 0x55, 0xaa, 0x4, 0xd5, 0x1d, 0x5b, 0xbd, 0xdf, 0x3f, 0x2f, 0xe4, 0x4f, 0x2f, 0x22, 0x93, 0x27, 0x85, 0x4b, 0x23, 0x56, 0xaf, 0x5e, 0xc5, 0xd, 0x28, 0x5f, 0xee, 0x60, 0x44}} return a, nil } -var _lockedtokensUserGet_locked_account_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x51\x4f\xc2\x30\x14\x85\xdf\xfb\x2b\x4e\x78\x30\xdb\x0b\xf1\xc1\xf8\x40\x54\x82\x6c\x46\xc3\x22\x04\xf0\x07\x74\xdd\x1d\x36\x74\xbd\x4b\xd7\x46\x0c\xe1\xbf\x9b\x6d\x8a\xa0\xc6\xfb\xd2\xe4\xf6\x9c\xef\x9e\x1c\x5d\xd5\xec\x3c\x32\x56\x5b\x2a\xd6\xbc\x25\xdb\xa0\x74\x5c\xe1\x72\x97\xcd\xa7\xb3\x34\x59\xcf\x67\xe9\xf3\x24\x49\x96\xe9\x6a\x25\x44\x1d\x72\x94\xc1\xa2\x92\xda\x46\x52\x29\x0e\xd6\x8f\x30\x29\x0a\x47\x4d\x13\x8f\xf0\xf2\xa0\x77\xd7\x57\xd8\x0b\x01\x00\x86\x3c\x4c\x47\x9e\xf4\xd2\x27\x5b\xf2\x92\x4a\xdc\x62\x43\xfe\x73\xf7\x85\x89\x3b\x4b\x3b\xc3\x0d\xf9\xa9\xac\x65\xae\x8d\xf6\xef\x37\x17\xa7\xe1\x86\xdd\xf3\xc8\xa6\x20\xb7\x3f\xfb\xc8\x7e\x1e\x3a\xdc\x45\x47\x64\x3b\xff\xab\x17\x21\x37\x5a\x2d\xa4\x7f\x3d\x9a\x4e\x12\xe5\xec\x1c\xbf\x45\xdf\x9b\xf1\x18\xb5\xb4\x5a\x45\x83\x29\x07\x53\xc0\xb2\x47\x2f\x82\x84\xa3\x92\x1c\x59\x45\xf0\x8c\xba\x03\xe3\xd7\xc1\x41\xdc\x97\xe4\xc8\x07\x67\xff\xec\xa9\x2d\xe2\xcc\x77\x2f\x8d\xb4\x8a\xa2\x58\x1c\xc4\x47\x00\x00\x00\xff\xff\xb4\x2e\x8d\x4e\xba\x01\x00\x00" +var _lockedtokensUserGet_locked_account_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4a\xc3\x40\x10\x86\xef\xfb\x14\x3f\x39\x48\x72\xc9\x49\x3c\x14\xb5\x54\x41\x14\x7a\x28\xa2\x0f\x30\xd9\x4c\xea\xd2\xcd\x4e\x98\x9d\xa0\x20\xbe\xbb\x34\xd1\xda\xaa\x73\x59\x18\xe6\xfb\xfe\xfd\x43\x3f\x88\x1a\xd6\xe2\x77\xdc\x3e\xc9\x8e\x53\x46\xa7\xd2\xa3\x38\x5e\x15\xce\x91\xf7\x9c\x73\x49\x31\x56\xe8\xc6\x84\x9e\x42\x2a\xc9\x7b\x19\x93\x2d\xb0\x6a\x5b\xe5\x9c\xab\x05\x9e\xef\xc2\xdb\xc5\x39\xde\x9d\x03\x80\xc8\x86\x38\x89\x56\xf3\xe9\x43\xea\xe4\x91\x3b\x5c\x61\xcb\xf6\xb5\xfb\xd6\x54\x13\xb2\x9f\xda\xd3\x40\x4d\x88\xc1\x02\xe7\xba\x11\x55\x79\xbd\x3c\x3b\xfe\x51\x3d\x3d\xf7\x12\x5b\xd6\xeb\xf2\x00\xee\xe7\xe4\x6c\xfd\x3b\x7c\x33\x36\x31\xf8\x0d\xd9\xcb\x01\xfa\xc9\x5d\x2e\x31\x50\x0a\xbe\x2c\x6e\x65\x8c\x2d\x92\x18\xe6\x74\x10\x94\x3b\x56\x4e\x9e\x61\x82\x61\xd2\xe0\x8f\xbe\xa8\xe6\xe2\xca\x36\x6a\xfa\xb7\x7b\xbd\x65\x3b\xe1\x6e\x28\x52\xf2\x5c\x56\xee\xc3\x7d\x06\x00\x00\xff\xff\xf4\x54\xe0\xd6\x90\x01\x00\x00" func lockedtokensUserGet_locked_account_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -4540,11 +4560,11 @@ func lockedtokensUserGet_locked_account_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_locked_account_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x43, 0x1e, 0xb4, 0x8c, 0xa1, 0x3b, 0x72, 0xd3, 0xaf, 0x2c, 0xe7, 0x97, 0x87, 0xfb, 0xd4, 0x36, 0xf8, 0x3a, 0xc3, 0x46, 0x33, 0xe0, 0x9, 0x45, 0x45, 0x17, 0xf, 0x6e, 0x59, 0x7b, 0x77, 0xd1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x2d, 0x23, 0x62, 0x8e, 0xdd, 0x89, 0x34, 0xc5, 0x3e, 0x78, 0xc5, 0xcd, 0x35, 0x2e, 0xcf, 0xa3, 0x3a, 0xed, 0x97, 0x92, 0x6e, 0x8, 0x74, 0x90, 0x9d, 0x36, 0x9d, 0x94, 0xe3, 0xc0, 0x6d}} return a, nil } -var _lockedtokensUserGet_multiple_unlock_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcf\x4f\xfa\x40\x10\xc5\xef\xfb\x57\xbc\x70\xf8\xa6\xbd\x90\xef\xc1\x78\x20\x22\x21\x80\xd1\xd0\x08\xe1\xc7\x89\x70\xd8\xb6\x53\xdc\xb0\xdd\xd9\x6c\xb7\x8a\x21\xfc\xef\xa6\x2d\xa8\x45\xe3\x5c\xda\xcc\x67\xe6\xcd\xdb\xa7\x72\xcb\xce\x23\xe2\x64\x4f\xe9\x8a\xf7\x64\x0a\x64\x8e\x73\xfc\x3f\x44\xb3\xd1\x74\x32\x5e\xcd\xa6\x93\xe7\xe1\x78\xbc\x98\x2c\x97\x42\xd8\x32\x46\x56\x1a\xe4\x52\x99\x40\x26\x09\x97\xc6\x17\x3d\x6c\x86\x69\xea\xa8\x28\xb6\x61\x0f\x9b\xf5\x83\x3a\xdc\xde\x6c\x71\x14\x02\x00\x5e\xa5\x83\x56\xb9\xaa\xe7\x2e\xac\x8f\xcd\xb6\xc1\x19\x3b\x9c\x85\xa0\xcc\xe5\xb7\xc0\xb1\xa6\x55\x69\xf2\xd0\xb5\xbf\x61\x03\x9f\x4c\xc6\x0b\xca\xd0\xc7\x8e\xfc\xb9\x77\x31\x13\x7e\xae\x55\xd5\xdd\x91\x1f\x49\x2b\x63\xa5\x95\x7f\xbf\xfb\xf7\xfd\x99\xdd\xfa\xf3\xc8\x3a\x25\x77\x6c\x81\xe8\xfa\xd8\xe9\x3e\x68\xc9\x56\xf5\xf7\xc6\xbc\x8c\xb5\x4a\xe6\xd2\xbf\xb4\x16\xaf\xdc\xc5\xec\x1c\xbf\x05\xed\xee\x60\x00\x2b\x8d\x4a\x82\xce\x88\x4b\x9d\xc2\xb0\x47\x33\x08\x09\x47\x19\x39\x32\x09\xc1\x33\x6c\x7d\x04\x3f\x8e\x77\x42\xf1\x15\x5e\x9d\x7c\x57\x5a\x4b\x26\x0d\x7e\x8b\xb1\xca\x68\x6d\x2a\x12\x55\xb3\x41\xd8\xd8\x39\x35\x1a\x8e\x7c\xe9\xcc\x59\x46\x9c\xc4\x47\x00\x00\x00\xff\xff\xf0\x63\x18\x09\x30\x02\x00\x00" +var _lockedtokensUserGet_multiple_unlock_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x6b\xfb\x30\x10\xc5\x77\x7d\x8a\x87\x87\x3f\xf6\xe2\xe9\x4f\x87\xd0\x34\x84\x42\x69\x21\x43\x28\xcd\x14\x32\x28\xf2\x39\x15\x91\x75\xe6\x24\xb7\x85\x90\xef\x5e\x2c\xc7\x6d\xdc\xf6\x16\x89\x7b\x77\x4f\x3f\x3d\xdb\xb4\x2c\x11\x2b\x36\x47\xaa\x5e\xf8\x48\x3e\xa0\x16\x6e\x90\x5d\xb7\x32\xa5\xb4\x31\x14\x42\xae\x9d\x2b\x50\x77\x1e\x8d\xb6\x3e\xd7\xc6\x70\xe7\x63\x98\x61\xbb\xac\x2a\xa1\x10\x76\xc5\x0c\xdb\xcd\x83\xfd\xb8\xf9\xbf\xc3\x49\x29\x00\x78\xd3\x02\x67\x1b\x9b\xe6\x46\x6d\x8e\xed\x6e\x90\x6b\x16\x5c\x8c\x60\xfd\x78\x0d\x38\x25\xb5\x2f\x47\x11\x2e\xe1\x2c\x07\xf1\xc9\xd7\xfc\x4c\x35\xe6\x38\x50\xbc\xf4\x46\x98\xe2\x6b\xad\xaf\xd2\xe8\x56\xef\xad\xb3\xd1\x52\x28\xf7\x2c\xc2\xef\xb7\xff\xae\xff\x56\xa6\xe3\x91\x5d\x45\x72\x97\x4f\x96\xfb\x9a\x8c\xae\x7e\x42\xac\xbb\xbd\xb3\x66\xad\xe3\xeb\x64\x71\xca\xb0\x58\xa0\xd5\xde\x9a\x3c\xbb\xe7\xce\x55\xf0\x1c\x31\x90\x40\x43\xa8\x26\x21\x6f\x08\x91\xd1\x26\x3b\xfc\x7a\x26\x2b\xd4\x77\x18\x29\xc9\x52\xb7\x2d\xf9\x2a\xff\x2b\x96\xf2\x40\x71\xe3\x7b\x65\xd5\xcf\xe6\xc5\x80\x73\x1e\x3c\x84\x62\x27\xfe\x62\xa3\xce\xea\x33\x00\x00\xff\xff\x76\x76\x5f\x52\x02\x02\x00\x00" func lockedtokensUserGet_multiple_unlock_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -4560,11 +4580,11 @@ func lockedtokensUserGet_multiple_unlock_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_multiple_unlock_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x44, 0x53, 0x90, 0x61, 0xff, 0x97, 0xc8, 0x5, 0x7e, 0xc0, 0x6d, 0x11, 0x4b, 0x9, 0x5d, 0x3a, 0xdf, 0x48, 0x9a, 0xa6, 0x8e, 0x90, 0xe2, 0x7c, 0x70, 0x72, 0x99, 0xf5, 0xfa, 0xb2, 0x54, 0x24}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0xe, 0xa9, 0x44, 0x29, 0x58, 0xa8, 0xea, 0x68, 0x48, 0xe8, 0xbc, 0x31, 0xbe, 0x7d, 0xc4, 0x5e, 0x8c, 0xb8, 0xaa, 0x3e, 0x37, 0xdb, 0xc9, 0xe, 0x63, 0xbd, 0xc1, 0xcf, 0x8b, 0x36, 0x1a}} return a, nil } -var _lockedtokensUserGet_total_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x55\x51\x6f\xa3\x38\x10\x7e\xe7\x57\xcc\xd3\x1e\xe8\x22\xd2\x87\xd3\x3d\x44\x9b\x95\xd2\x92\xee\xa1\x8d\x92\x55\x4b\xef\x74\x8f\x06\x4c\x82\xea\xd8\xc8\x36\x6d\x4f\x51\xfe\xfb\xc9\x18\x3b\x98\x40\x9a\x6d\x79\x68\x52\xfc\xcd\xcc\x37\xdf\x37\x9e\x94\xfb\x8a\x71\x09\xf7\x35\xdd\x96\x29\xc1\x09\x7b\xc6\x14\x0a\xce\xf6\x70\xf3\x76\xff\xb4\xfe\x1e\xdf\xae\x96\xc9\xe6\xc7\x72\xbd\x88\xa2\x87\xe5\xe3\xa3\x67\x02\x08\x7b\x75\xc1\xab\xcd\x3f\x63\xc0\x38\x4a\x50\x4a\xf0\xa3\x44\xcf\x25\xdd\x9a\x88\x38\x5a\xae\x93\x38\xf9\x37\x59\xdc\xae\x96\xbd\xa8\x15\xcb\x9e\x71\xde\x14\x10\x06\xbf\xda\xdc\xfd\x58\x46\x4e\x0d\x6f\x3a\x85\x64\x57\x0a\x10\x19\x2f\x2b\x09\x5b\x2c\x05\xc8\x1d\x86\x64\x93\x2c\x56\x40\xeb\x7d\x8a\x39\xb0\x02\x14\x3b\x40\x14\x50\x96\xb1\x9a\x4a\x60\xaf\x54\x4c\x00\x65\x9c\x09\x01\x35\x25\x4d\xb9\x09\x98\x4f\x44\x73\x10\x9a\x6d\xd8\x14\x59\xe4\xb9\x80\xba\x52\xb9\x05\x6e\xf3\x8a\x59\x73\x24\x35\xc9\x92\x02\x65\x7c\x8f\x88\xa9\x71\xe9\xcc\x24\xbf\x88\xc9\x31\xc1\x5b\x24\xcf\x60\x62\x87\x38\xce\x87\xcb\xb8\x67\xc3\x65\x7a\x98\x4e\x19\xcf\xab\xea\x14\x8a\x9a\xc2\x1e\x95\xd4\x47\x79\xce\xb1\x10\x33\xd5\xbd\xfa\x12\xcc\xe0\xe9\xbe\x7c\xfb\xf3\x0f\x38\x78\x1e\x00\xc0\x0b\xe2\x20\xea\x3d\xcc\xe1\x26\xbc\xd1\xaf\x08\x96\x36\xf3\x5c\xf9\xb1\xd0\xff\x98\x64\x81\x86\x95\x45\x83\x7c\x41\x35\x91\x0f\xb8\x80\xb9\x09\x0a\xb7\x58\xde\xa1\x0a\xa5\x25\x29\xe5\x7f\xfe\xb4\xaa\x53\x52\x66\xd3\xc2\x8c\xdb\x2d\x22\x88\x66\x38\x68\xb2\xa8\x27\x4c\x19\xe7\xec\xf5\xeb\x17\x3b\x91\xe1\xdf\x2a\xeb\xc1\x19\xe9\xb0\x8d\x3b\x7e\xf3\x03\x68\x62\x0f\x36\x83\xee\x40\xfd\xfd\xdd\x12\x0a\x53\x8d\x6f\x40\x47\xcd\x79\x3a\x85\xef\x58\x6a\x21\xa1\x3d\xd7\xb3\xa9\x26\xce\x0c\x91\x69\xe4\x37\x01\x94\xe5\xd8\x58\x00\x15\x63\x44\x58\x89\xd4\x91\xba\x0e\x98\xdf\xa1\xea\xd4\xfd\xa9\x2b\x47\x86\xaf\x5f\x0e\xe7\xd7\x28\x5c\xdb\x1c\x3f\x1b\x91\x8e\xdf\x7c\x1b\xaf\x9e\x2b\x42\x7e\x22\xb9\xb3\x31\xae\x35\x27\x86\xda\x1f\x87\x71\x2b\xba\x1f\x74\x64\x34\x41\x31\x2d\x18\xcc\xc7\xaa\xab\x53\xbf\x81\x45\x33\xb7\x46\x58\xe6\xc1\xa0\x27\x26\x69\x28\x99\x44\x44\xef\x84\x98\x3e\xe0\x8c\xf1\xdc\x0f\x3e\xe5\x50\x3b\xfb\x8c\x8f\xd8\x64\xcf\x3f\xe7\x52\x64\xd2\x0c\x1b\xd5\x1d\xf2\x36\xcc\x46\x8c\xb8\x63\x89\x69\x73\xba\x3c\xc7\xbc\xb1\x98\x71\x83\xa2\x2e\xc4\xe5\x68\x2c\xeb\x16\x0e\xf5\xcb\x89\x03\x3c\x95\xe9\xa3\xcb\xbc\xd3\xcc\x90\xd1\x0e\xc3\x31\xb7\x87\xfc\xde\x61\x70\xad\x05\xad\x28\x64\xd6\x1c\x6b\xa9\x06\xb6\x5b\x49\x15\xba\xce\xda\xee\x0f\x52\xd8\x7c\xfc\xc5\x48\x8e\xf9\xc1\x39\x58\xf5\x93\xf7\xad\xbe\x8c\x7e\xf7\x52\x9e\x91\xd7\xf6\x0f\xf5\x34\x34\x06\xfa\x87\x6c\x48\xaf\xee\xba\xeb\xdb\x32\x54\x54\xc9\xe3\xd0\x6f\xf7\xab\xdf\xf2\xed\x55\x33\x77\x91\x15\x80\x08\x69\x5e\x9d\x2f\xc7\xd3\x4d\x75\xc9\xd9\x84\x9d\xcd\x14\x47\x43\x6d\xb7\xc4\x9a\x3d\x13\x39\x9d\x7f\x62\x41\xc5\x51\xe0\xa4\xf9\xc5\xd5\xd4\x19\xd7\xf7\x45\x19\xd9\x47\xd7\x2a\xd3\xb9\x7b\x17\xe4\x39\xdd\xf2\x73\x8d\xae\x95\xd8\xe6\x18\xd1\xfa\xc3\x4b\xc7\x55\x7e\x32\xb2\x4e\xfa\x9e\x7c\x68\x93\x74\x9e\xa3\xe7\x7e\x6b\x0d\xe3\x58\xd6\x9c\xaa\x9c\xde\xd1\xfb\x3f\x00\x00\xff\xff\x69\xed\x3d\xf3\x2a\x0b\x00\x00" +var _lockedtokensUserGet_total_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x4d\x6f\xdb\x38\x10\xbd\xeb\x57\x0c\x72\xd8\x95\xb0\x86\x9c\xc3\xa2\x07\xa3\x0e\x90\x42\x48\x6b\x20\x68\x82\xd4\x6d\xcf\x94\x48\xd9\x44\x68\x52\x20\xa9\xa4\x45\xe0\xff\x5e\x88\x14\x69\x52\x96\x9c\xaf\xea\xe0\x0f\xf2\xcd\xbc\xc7\x79\xc3\x11\xdd\x35\x42\x6a\xb8\x6a\xf9\x86\x96\x8c\xac\xc5\x3d\xe1\x50\x4b\xb1\x83\xb3\x68\xed\x2c\x71\x48\x26\x1e\x23\x94\xfb\x1f\x21\x56\xc5\x1a\x95\x8c\x7c\xd3\xe8\x9e\xf2\x4d\x00\x8d\x37\x7c\xcc\xb5\xa8\xee\x09\x36\x79\x54\x8f\x0e\x97\xce\x92\x64\x3e\x87\xf5\x96\x2a\x50\x95\xa4\x8d\x86\x0d\xd1\x0a\xf4\x96\xc0\xfa\x66\x7d\x79\x0d\xbc\xdd\x95\x44\x82\xa8\xe1\xea\xfa\xe6\x27\x20\x0e\xa8\xaa\x44\xcb\x35\x88\x47\xae\x66\x80\x2a\x29\x94\x82\x96\x33\x93\x75\x06\xee\x1b\x71\x0c\xca\x8a\xc9\x0d\xc9\x25\xc6\x0a\xda\xa6\xcb\xad\x48\x9f\x57\x2d\xcc\x96\xb6\xf2\x28\x07\x2e\xe4\x0e\x31\xc7\x71\x6a\xcf\x25\x3f\x89\xc1\x84\x91\x0d\xd2\x47\x30\xb5\x45\x92\xe0\x71\x9a\x78\x6f\x9c\x66\x80\x09\x68\x92\x04\x55\x15\x51\x2a\x45\x8c\x65\x50\xb7\x1c\x76\x88\xf2\x14\x61\x2c\x89\x52\x8b\xae\x0a\xdd\x8f\x6c\x01\xdf\xaf\xe8\xaf\x0f\xff\xc3\x53\x92\x00\x00\x3c\x20\x09\xaa\xdd\xc1\x12\xce\xf3\x73\xbb\xc4\x88\xf6\x0c\xcb\xce\x97\x4b\xfb\xc7\x25\xcb\x2c\x8c\xd6\x06\xf9\x80\x5a\xa6\xef\x48\x0d\x4b\x17\x94\x57\xa8\x41\x25\x65\x54\x53\xa2\xf2\x52\x48\x29\x1e\x3f\xfe\xe3\xdb\x2a\xff\xd1\x45\x5c\xa4\xf3\xa6\x2d\x19\xad\xe6\xb5\xdb\xf8\x84\x18\xe2\x15\xc9\xe0\xc9\xe4\xef\x1e\xab\xac\xfb\xfc\xcf\x13\xe5\xa5\xc5\x19\xd0\xde\x6a\x99\xcf\xe1\x33\xd1\xb6\x50\xd0\xef\xdb\xae\xeb\x3a\xca\x35\x89\x13\xf8\xaf\x02\x2e\x30\x71\x25\x86\x46\x08\xa6\xfc\xd1\x45\xa3\xa9\xe0\x88\x7d\x15\xd8\x74\x35\x91\xd1\xe9\xbc\xb6\xf1\x63\x3e\x1d\xdf\x89\xfc\x90\xe9\xd6\x1c\x79\x7f\x91\xfa\x2c\xdd\xf3\x82\x90\x5b\xa4\xb7\x3e\x26\x36\x80\x0f\x74\x8e\xeb\x3f\xd4\xd4\xc5\xac\x78\x2d\x60\x39\x45\xde\xed\xa6\x06\x56\x2c\x62\x8a\x9c\xe2\x6c\xd4\x20\x97\x34\xd7\x42\x23\x66\xef\xf9\x8a\xdf\x91\x4a\x48\x9c\x66\xef\xb2\xab\x6f\x74\x21\x9f\xf1\xac\x70\xb8\xbf\x61\x99\x4f\x36\xee\x5a\xd8\xbf\x7d\x98\x8f\x98\xb0\x0a\xc7\xf2\x46\x55\xc7\x46\xf9\x88\x69\xb7\x8a\x10\x12\x4b\x74\xfe\x85\xbc\xb9\x5d\x9c\x45\xc0\x03\xcd\x10\x4d\x71\x70\x96\x31\xd7\x23\x85\x53\xd6\x8f\x99\xbf\x25\x10\xfb\x0c\xb6\xa0\xe0\x4d\xfa\x7d\xe4\xaf\x7d\x85\xf4\xf3\xa8\x23\x7c\x8d\xcf\xe1\xfb\x27\x37\x5f\x5f\x04\xc3\x44\x0e\x7c\x8d\x60\x47\x84\xcf\x5e\x47\x36\x2e\xf1\xe4\x09\x0e\x9e\xdb\xf7\xd5\x58\x71\xc2\xa9\x37\xf4\x60\x8c\x33\xdf\x10\x1d\x91\xf5\xe3\x35\xed\xe5\x0e\xd8\xdc\x2d\x14\x35\x20\xc6\xcc\xd2\xf1\x8c\x3c\xdc\xd1\x58\x9c\x4f\x18\x8c\xa4\x55\x01\xcb\x49\x61\x66\xc2\x14\x69\x38\xea\xdf\x31\x9a\x56\x45\x16\xa5\x79\xe5\x50\x0a\x7a\xf3\xf9\xa2\x4c\x4c\xa2\x97\x56\x26\xb8\x68\x27\xca\x73\xb8\xd2\xc7\x35\x7a\x69\x89\x7d\x8e\x89\x5a\xbf\x79\xc2\xc4\x95\x9f\x4d\xcc\x8e\xa1\x27\x6f\x1a\x1b\xc1\xb3\x4f\xe2\x5f\xbd\x61\x92\xe8\x56\xf2\x2e\x67\xb2\x4f\xfe\x04\x00\x00\xff\xff\xff\xc7\x1b\xb5\xfb\x0a\x00\x00" func lockedtokensUserGet_total_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -4580,11 +4600,11 @@ func lockedtokensUserGet_total_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_total_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1b, 0xa, 0x98, 0x52, 0xac, 0x67, 0xd6, 0x22, 0x47, 0xdd, 0xb3, 0x76, 0x45, 0x60, 0x8, 0x86, 0xbd, 0x8b, 0x86, 0x74, 0x3b, 0xb, 0x80, 0x9e, 0x19, 0x46, 0xa1, 0xda, 0xfe, 0x3f, 0x6a, 0xa6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x55, 0x8, 0x27, 0xe, 0x25, 0x30, 0xdf, 0xb4, 0x9b, 0xdf, 0x6d, 0x5, 0xd5, 0xf1, 0xd8, 0x3a, 0xef, 0xc2, 0x45, 0x3a, 0xa1, 0xd2, 0x90, 0x9, 0xf6, 0x54, 0x3c, 0xdb, 0x11, 0x6e, 0xa9, 0x9e}} return a, nil } -var _lockedtokensUserGet_unlock_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcb\x6a\xf3\x30\x10\x85\xf7\x7a\x8a\x43\x16\x3f\xf6\x26\xfc\x8b\xd2\x45\x68\x1b\x82\xed\xd2\x12\xd3\x84\x5c\x1e\x40\x96\xc7\xa9\x88\xac\x31\xb2\x44\x53\x42\xde\xbd\xd8\x6e\xd3\xf4\x42\x67\x33\x30\x73\xe6\x9b\xc3\xd1\x75\xc3\xce\x23\x67\xb5\xa7\x72\xc3\x7b\xb2\x2d\x2a\xc7\x35\xfe\x1f\xf2\x45\x32\xcf\xd2\xcd\x62\x9e\x3d\xcd\xd2\x74\x95\xad\xd7\x42\x34\xa1\x40\x15\x2c\x6a\xa9\x6d\x24\x95\xe2\x60\xfd\x04\xb3\xb2\x74\xd4\xb6\xf1\x04\xdb\x7b\x7d\xb8\xbe\xc2\x51\x08\x00\x30\xe4\x61\x7a\xf2\x6c\x90\x3e\xda\x8a\x57\x54\xe1\x16\x3b\xf2\xef\xb3\x0f\x4c\xdc\x9f\x74\x35\xde\x91\x4f\x64\x23\x0b\x6d\xb4\x7f\xbd\xf9\x77\x69\x6e\xdc\xb7\x07\x36\x25\xb9\xe3\x97\x45\xfe\xfd\xd1\xe9\x2e\x3a\x23\xbb\xfa\x5b\xbd\x0c\x85\xd1\x6a\x29\xfd\xf3\xf9\xe8\xc2\x51\xc1\xce\xf1\x4b\xf4\x39\x99\x4e\xd1\x48\xab\x55\x34\x4a\x38\x98\x12\x96\x3d\x06\x11\x24\x1c\x55\xe4\xc8\x2a\x82\x67\x34\x3d\x18\x3f\x1e\x8e\xe2\x21\x24\x47\x3e\x38\xfb\x6b\x4e\x5d\x10\x5b\xdb\x6d\x72\x5d\x6b\x1f\xc5\xe2\x24\xde\x02\x00\x00\xff\xff\xd0\xf0\x69\xcd\xb1\x01\x00\x00" +var _lockedtokensUserGet_unlock_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x1e\x39\x48\x72\xc9\x49\x3c\x14\xb5\x14\x41\x14\x72\x28\x62\x7f\xc0\x66\x33\xa9\x4b\x37\x3b\x61\x76\x16\x05\xf1\xbf\x4b\x12\xad\x55\x3b\x97\x85\xd9\xf7\xbe\x37\xcf\x0f\x23\x8b\xa2\x61\x77\xa0\xee\x99\x0f\x14\x13\x7a\xe1\x01\xc5\xe9\xaa\x30\xc6\x3a\x47\x29\x95\x36\x84\x0a\x7d\x8e\x18\xac\x8f\xa5\x75\x8e\x73\xd4\x15\x36\x5d\x27\x94\x52\xb5\xc2\xee\xde\xbf\x5d\x5d\xe2\xdd\x18\x00\x08\xa4\x08\x33\x68\xb3\x48\x1f\x63\xcf\x4f\xd4\xe3\x06\x7b\xd2\xaf\xdd\x37\xa6\x9a\x2d\xd3\xd4\xce\x8e\xb6\xf5\xc1\xab\xa7\x54\xb7\x2c\xc2\xaf\xd7\x17\xa7\x17\xd5\xf3\xf3\xc0\xa1\x23\xb9\x2d\x8f\xc6\x69\x7e\xc9\x9a\xbf\xe1\xdb\xdc\x06\xef\xb6\x56\x5f\x8e\xa6\x9f\xdc\xf5\x1a\xa3\x8d\xde\x95\xc5\x1d\xe7\xd0\x21\xb2\x62\x49\x87\x85\x50\x4f\x42\xd1\x11\x94\x31\xce\x18\xfc\xc3\x17\xd5\x52\x5c\x48\xb3\xc4\xb3\xdd\xeb\x3d\xe9\x2e\x4e\x3f\x8d\x1f\xbc\x96\x95\xf9\x30\x9f\x01\x00\x00\xff\xff\x4e\xa6\xd0\xc0\x87\x01\x00\x00" func lockedtokensUserGet_unlock_limitCdcBytes() ([]byte, error) { return bindataRead( @@ -4600,11 +4620,11 @@ func lockedtokensUserGet_unlock_limitCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_unlock_limit.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0xb1, 0x1b, 0x25, 0xfc, 0xa2, 0xd7, 0x60, 0x50, 0x3e, 0x8f, 0x7, 0xc4, 0x89, 0xbf, 0xd, 0xaf, 0x1c, 0x92, 0x84, 0x7c, 0xdb, 0x16, 0xed, 0xc2, 0x7e, 0x4e, 0xf5, 0xa7, 0x92, 0x81, 0x2c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6f, 0xf9, 0x2, 0x6b, 0x3a, 0x2a, 0x9b, 0x2f, 0xb6, 0xec, 0x74, 0x3b, 0x63, 0xa6, 0x99, 0x2e, 0x44, 0xaa, 0xa7, 0xfd, 0xf7, 0x7f, 0x81, 0xb1, 0x1c, 0x70, 0xf, 0xe3, 0xf1, 0x6f, 0xe4, 0xd4}} return a, nil } -var _lockedtokensUserWithdraw_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6f\xb2\x40\x10\xc6\xef\x7c\x8a\x89\x87\x37\x70\x78\xb1\x87\xa6\x07\x62\x6b\xac\x62\xdb\x48\xb4\xf1\x4f\x7b\x5e\x97\x41\x88\xb8\x43\x96\xa1\x98\x34\x7e\xf7\x66\x41\x88\x98\x9a\x74\x2f\x9b\xec\xf3\xcc\x3c\xbf\x9d\x4c\x72\xc8\x48\x33\x4c\x0b\xb5\x4b\xb6\x29\xae\x69\x8f\x0a\x22\x4d\x07\xb8\x3b\x4e\x37\xf3\x97\xb7\xe7\xc0\x5f\x2f\x66\xfe\x7c\x34\x99\x2c\xfd\xd5\xca\x6a\x0a\x52\x2a\xbb\xe6\x60\xf1\xf9\x9b\x31\x20\xb9\xc7\xb0\xb2\xe6\x8d\x37\x58\x8c\x67\xfe\xa4\xe3\xb6\x58\x0b\x95\x0b\xc9\x09\x29\x5b\x1c\xa8\x50\xec\xc1\x66\x9a\x1c\x1f\xee\x1d\xf8\xb6\x2c\x00\x80\x14\x19\x62\x4a\x43\xd4\x4b\x8c\x3c\xf8\x77\xd9\xda\xad\xae\xd7\x4a\x6d\xcd\x5f\xa2\x48\xb9\xf6\xb6\xbc\xee\x87\x79\xac\x1b\x66\x1a\x33\xa1\xd1\x16\x52\xb2\x07\xa3\x82\xe3\x91\x94\x26\xda\x44\xc2\xf9\xe4\x98\x46\x6e\x1b\x0b\x8f\x60\xdc\xee\x96\xb4\xa6\x72\x70\x93\xe1\xc9\x36\x7f\xf5\xe0\x96\xbe\x62\xd2\x62\x87\xef\x82\x63\xa7\x8d\x32\x67\x38\x84\x4c\xa8\x44\xda\xbd\x31\x15\x69\x08\x8a\x18\xea\x30\x10\xa0\x31\x42\x8d\x4a\x22\x30\xc1\x45\xb7\x9e\x63\x75\x79\x9b\x9f\x5f\xe3\x5e\x8d\xa1\xa1\xec\xe7\x35\x4e\x3f\x6a\xf4\x4a\xfe\x33\x99\x29\x03\xae\xd6\xa1\x4a\x36\xa0\xbd\xba\xfa\x54\x93\xe1\x11\x65\xc1\x78\x3d\xd7\x86\xd3\x0d\x31\xa3\x3c\xe1\x33\xcf\xe0\x7f\x77\xea\x6e\x99\x70\x1c\x6a\x51\xb6\xab\x51\xdf\x4e\x93\x71\xb2\x7e\x02\x00\x00\xff\xff\x0b\xcc\x3c\x2f\xc9\x02\x00\x00" +var _lockedtokensUserWithdraw_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x93\x41\x6f\xd4\x30\x10\x85\xef\xf9\x15\xa3\x1c\xaa\x44\x02\xf7\x82\x38\xac\x0a\x15\x20\x55\x1c\x90\x40\x50\xca\x79\xea\x4c\x1a\xab\x8e\x27\xb2\xc7\x4d\x11\xea\x7f\x47\x76\xe2\xb0\x01\x2d\xe2\x82\x2f\xd6\xda\xf3\xde\xbc\xcf\xb3\x31\xe3\xc4\x5e\xe0\x2a\xba\x3b\x73\x6b\xe9\x9a\xef\xc9\x41\xef\x79\x84\x7a\x77\x56\x57\xa5\xd2\xf2\xbc\xab\x2a\xbf\xb7\x8a\x0f\xac\xef\xa9\xcb\x67\x61\x2d\x3a\x3e\xaa\xab\x4a\x3c\xba\x80\x5a\x0c\xbb\x06\x47\x8e\x4e\x0e\xf0\xf5\xca\x3c\xbe\x7c\xd1\xc2\x8f\xaa\x02\x00\xb0\x24\x30\xb0\xed\xc8\x7f\xa6\xfe\x00\x18\x65\x68\x8e\x5d\x54\xde\x3e\x4e\xe4\x31\xd9\x84\x67\x7b\x04\xf5\xcd\xc8\xd0\x79\x9c\x5b\x38\xfb\x53\xf6\x3e\x1b\x6f\x7d\x1e\x30\x5a\xf9\xd5\xe6\xa4\xd1\x86\xaa\x6e\x92\x62\x09\x3a\x79\x9a\xd0\x53\x83\x5a\xcb\x6a\xf0\x96\xbd\xe7\xf9\x06\x6d\xa4\x16\xce\xde\x68\x9d\x08\x13\x19\xac\x2b\x90\xed\xd5\x46\x07\xaf\x20\x89\x55\x10\xf6\x78\x47\xea\x36\xcb\x2f\xfe\x07\xf2\xeb\x26\xcd\xe3\x00\xa7\xee\xbf\x2c\x11\x3e\xa1\x0c\xed\x96\x36\xad\xcb\x4b\x98\xd0\x19\xdd\xd4\xd7\x03\xc1\xe4\xcd\x88\xfe\x3b\xc4\x40\x3e\x65\x4f\x7c\xd0\x31\x05\x70\x2c\x30\xe0\x03\x01\x3a\xc0\x10\x58\x1b\x14\xea\xc0\xe6\x7e\xa5\xb4\x6e\xab\xfd\x53\x94\x01\xfc\xed\x25\xfe\x75\x2a\x05\xf1\x7c\x35\x39\xef\xcb\x7d\xbe\x3e\x85\xf5\x8e\xa3\xed\x72\xfc\xa5\x29\x24\x19\x48\xfe\xa3\xe7\x78\xe0\xa9\xaf\x17\xf5\xd3\x12\x9f\x1e\x49\x47\xa1\xdf\xe7\x5a\x60\x54\x47\x13\x07\x23\x6b\x9e\x8b\xe7\xfb\xa9\xab\x79\x45\xd8\xbe\x80\x65\x6f\x4b\x8f\xa7\xea\x67\x00\x00\x00\xff\xff\x10\x94\xa0\x76\x9c\x03\x00\x00" func lockedtokensUserWithdraw_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -4620,11 +4640,11 @@ func lockedtokensUserWithdraw_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/withdraw_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x9e, 0xfa, 0x63, 0x21, 0x9d, 0x83, 0x7b, 0xab, 0x3e, 0x34, 0x39, 0x94, 0xe9, 0x36, 0xc, 0xbd, 0x5b, 0x16, 0x4, 0xae, 0xf1, 0x49, 0x8f, 0x56, 0xa7, 0xec, 0x6b, 0xcf, 0x6c, 0xb8, 0x32}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9b, 0xeb, 0x8e, 0xc2, 0xbe, 0x58, 0xf9, 0x1, 0x8a, 0x51, 0x9, 0xe7, 0x16, 0x2a, 0x38, 0xa2, 0xab, 0x0, 0xe5, 0x81, 0xa7, 0x55, 0x73, 0xaf, 0xb7, 0x5c, 0x78, 0x54, 0x71, 0x19, 0x9a, 0xd5}} return a, nil } -var _nodeversionbeaconAdminChange_version_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\xc1\x6e\xdb\x4c\x0c\x84\xef\x7a\x8a\x81\x0f\xff\x6f\x5f\xac\x1e\x8a\x1e\x84\xba\x81\x1c\xbb\x40\x2e\x76\x60\x37\xb9\x6f\x77\x29\x6b\x01\x89\x14\x28\xaa\x4e\x5b\xe4\xdd\x0b\x49\x6e\x1b\x44\x75\x8e\x5a\x92\xdf\xcc\x90\x8a\x75\x23\x6a\xd8\x49\xa0\x47\xd2\x36\x0a\xaf\xc9\x79\x61\x14\x2a\x35\xde\x3d\xed\xf6\x9b\xed\xe3\xf6\x70\xbc\xdb\xef\xd6\xdb\xfc\x76\xbf\xcb\x37\x9b\xc3\xf6\x78\x4c\x92\x34\x4d\xf1\x45\x1d\xb7\xce\x5b\x14\x86\x95\xce\xe0\xaa\x4a\xce\xed\x4b\x5c\x1e\xea\xc8\x30\x81\x2f\x1d\x9f\x68\x18\xb3\x92\x10\xa8\x88\x4c\x01\xdf\xc6\xb6\x87\x26\x38\xa3\x75\x57\x14\xa4\x49\x62\x7f\xb9\x73\xa6\xf3\x67\x25\xfa\x41\xf7\xa4\x51\x42\x86\x87\x3b\xb6\x0f\xef\x17\xf8\x99\x24\x40\x45\xff\x30\x3f\x68\x1e\xa8\xc8\xf0\xdf\xa4\xb6\x1c\x8a\xfd\x68\xa3\xd4\x38\xa5\xb9\xf3\xde\x32\xe4\x9d\x95\xb9\xf7\xd2\xb1\xf5\x68\x00\x48\x53\xac\x45\x55\xce\x70\x50\x2a\x48\x89\x3d\xf5\x51\x7a\xff\x93\x88\xb1\x6e\x2a\xaa\x89\x2d\xf2\x09\x4a\xad\x74\xea\x69\xe0\xb4\x54\x15\xcb\xab\x26\xb1\x42\xef\x60\xf9\x75\x90\xfa\x78\xcd\xf1\xa7\x01\x05\xcc\xfb\xc3\x64\xd3\xcc\x63\xd7\xd1\x44\xdd\x89\xee\x9d\x95\x8b\xcb\xc0\xcd\x0d\x1a\xc7\xd1\xcf\x67\xb7\xd2\x55\x81\xff\x37\x8c\x52\xd7\x18\x38\x5c\xcc\xcf\x7a\xc4\x73\xbf\x2a\x7a\x22\xdf\x19\x5d\xf6\xf2\x76\x9e\x65\x4b\xf6\xbb\x20\x1d\x07\xa7\xdf\x5f\xde\x6f\x7a\xcf\x57\x0f\x7f\x44\x1b\x69\x6d\x14\x9c\x1a\x3d\xbd\xad\xb1\xc0\x6a\xf5\x9a\x8b\x0c\xb3\xf1\x1b\xcd\xf8\x70\x76\x2d\x58\x0c\xdd\xf0\xef\x85\xd9\x20\xfc\x9c\xfc\x0a\x00\x00\xff\xff\x20\x17\x63\x91\x13\x03\x00\x00" +var _nodeversionbeaconAdminChange_version_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x4f\x6f\xd4\x40\x0c\xc5\xef\xf9\x14\x4f\x39\x94\xec\x25\xb9\x20\x0e\x11\x4b\xd5\x45\x42\xe2\x82\xaa\x42\x7b\x1f\x66\x9c\xcd\x48\x89\x1d\x79\x3c\x2c\x7f\xd4\xef\x8e\x92\x2c\x50\x35\x6c\x8f\xb1\xc7\xef\xf7\x9e\x9d\x38\x4e\xa2\x86\x4f\x12\xe8\x81\x34\x45\xe1\x03\x39\x2f\x8c\x4e\x65\x44\xb9\xa9\x97\x45\xd1\x34\x0d\xbe\xa8\xe3\xe4\xbc\x45\x61\x58\xef\x0c\x6e\x18\xe4\x94\x9e\xea\xdc\x84\x31\x32\x4c\xe0\x7b\xc7\x47\x5a\xc6\xac\x27\x04\xea\x22\x53\xc0\xb7\xf5\xd9\xfd\x14\x9c\xd1\x21\x77\x1d\x69\x51\xd8\x3f\xdd\x8a\xe9\xf4\x41\x89\x7e\xd2\x2d\x69\x94\xd0\xe2\xfe\x23\xdb\x9b\xd7\x3b\xfc\x2a\x0a\x60\xa0\xff\xb8\x5e\x98\x77\xd4\xb5\xb8\xda\xf4\xea\xa5\x39\x8f\x4e\x4a\x93\x53\xaa\x9c\xf7\xd6\xc2\x65\xeb\xab\x83\xa8\xca\xe9\xc1\x0d\x99\x76\xb8\xba\xf1\x5e\x32\xdb\x4c\x02\x80\xa6\xc1\xda\x87\x83\x52\x47\x4a\xec\x69\x4e\x36\xc7\xd9\x24\x8e\xe3\x34\xd0\x48\x6c\x91\x8f\x50\x4a\x92\xd5\xd3\xa2\x93\x68\xe8\xea\x8b\x9e\xb1\xc7\x6c\xa8\x4e\x26\xea\x8e\x54\x7f\x5d\x90\x6f\x2f\x05\x79\xb7\x48\x02\xd5\x7c\xa8\x76\xbb\x8a\xf5\xd5\xe7\x55\xec\xd6\x59\xbf\x3b\x0f\x5c\x5f\x63\x72\x1c\x7d\x55\xbe\x97\x3c\x04\x7e\x65\x58\x51\x97\x34\x70\x77\x0e\x51\xce\x12\x8f\xf3\x06\xe9\x3b\xf9\x6c\x74\xde\xcf\xcb\xb9\xea\x44\xf6\xa7\x21\x99\x83\xd3\x1f\x4f\xcf\xba\x3d\xf3\xb3\xc2\x5f\xe8\x24\xc9\x56\xe0\xd6\xe8\xf1\x65\xc6\x0e\xfb\xfd\x73\x5d\xb4\x28\xd7\x6f\x4c\x6b\xe1\xe4\x12\x58\x0c\x79\xf9\x25\x43\xb9\x80\x1f\x8b\xdf\x01\x00\x00\xff\xff\x1f\xd2\xbe\x76\x23\x03\x00\x00" func nodeversionbeaconAdminChange_version_freeze_periodCdcBytes() ([]byte, error) { return bindataRead( @@ -4640,11 +4660,11 @@ func nodeversionbeaconAdminChange_version_freeze_periodCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/change_version_freeze_period.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x85, 0x64, 0xe7, 0xfd, 0x12, 0xa9, 0xc4, 0xb2, 0xa7, 0x40, 0x45, 0xbd, 0xde, 0xe5, 0xb6, 0xcf, 0x5f, 0xae, 0x29, 0x72, 0xaa, 0x59, 0x3a, 0x38, 0xc, 0xe5, 0xbc, 0xbf, 0xc4, 0x20, 0x97, 0xd9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4c, 0x60, 0x96, 0xf7, 0x76, 0x86, 0xbe, 0x53, 0x4e, 0x92, 0x54, 0x6, 0xb1, 0x20, 0x8d, 0x20, 0xf8, 0x11, 0x29, 0xfe, 0x14, 0x3e, 0xf6, 0x77, 0xe1, 0x2, 0x7a, 0xf3, 0x56, 0x5f, 0x27, 0xd3}} return a, nil } -var _nodeversionbeaconAdminDelete_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xd3\x40\x10\xbd\xfb\x2b\x9e\x7a\x80\xf4\x12\x73\x40\x1c\x2c\xa0\x72\xea\x48\xf4\x92\xa0\x24\xf4\x3e\x59\x8f\xe3\x15\xf6\x8e\xb5\x1e\xd3\x22\xd4\x7f\x47\xbb\x76\xda\xa0\x34\xa8\xd7\x7d\xf3\xde\xbe\x79\xf3\x6c\xdb\x89\x57\xac\xa4\xe4\x7b\xf6\xbd\x15\xb7\x60\x32\xe2\x50\x79\x69\xf1\xe1\x71\xb5\x2e\x96\xf7\xcb\xcd\xf6\x6e\xbd\x5a\x2c\xf3\xdb\xf5\x2a\x2f\x8a\xcd\x72\xbb\x4d\x92\x34\x4d\xb1\xf3\xe4\x7a\x32\x6a\xc5\x41\x6b\x52\x50\xd3\xc8\x43\x7f\x2a\x97\x97\xad\x75\x50\x41\xc9\x0d\x2b\x43\x6b\x8e\xd4\x5f\x23\x8c\xbd\x0c\xae\x24\xff\x1b\x2d\x75\x9d\x75\x07\x84\xe9\x9a\x8f\xf8\x8e\xf6\x0d\x83\x34\xbe\xf5\x1d\x1b\x5b\x59\x2e\xa3\xc2\xbe\x11\xf3\x13\x35\xdb\x43\xad\xe8\xc8\x53\xcb\xca\x3e\x49\xf4\xc5\xd4\x2c\xce\x7c\x8b\x23\x8b\xe9\xa3\x9d\x14\xd1\x49\x86\x1f\x77\x4e\x3f\x7d\xbc\xc6\x9f\x24\x01\x1a\x7e\x25\x85\x68\x7e\xc3\x55\x86\x77\x67\xd8\x3c\x82\x81\xda\x79\xee\xc8\xf3\x8c\x8c\xd1\x0c\xf9\xa0\x75\x6e\x8c\x0c\x4e\x83\x34\x00\xa4\x29\x16\xe2\xbd\x3c\x80\xe0\xb9\x62\xcf\xce\x70\xc8\x24\x2c\x75\x96\x95\xe7\x5e\x06\x6f\x38\x52\x7b\x6e\xaa\xf9\x45\x5f\xf8\x82\xf0\xe9\x7c\x1f\xd5\x3f\x5f\x32\xf9\x35\x4a\x01\xb3\x70\xd4\xec\x7c\xcd\x71\x6a\xab\xe2\xe9\xc0\xdf\x49\xeb\xeb\x89\x70\x73\x83\x8e\x9c\x35\xb3\xab\x5b\x19\x9a\xd2\xbd\x57\x8c\x5f\x5d\x88\x0a\x9b\xc9\xfb\x55\x50\x78\x0a\xe1\xf0\x23\x9b\x41\xf9\x25\x89\xe2\xb9\x07\xcf\x1d\x88\x5d\x3b\x7d\xd0\x57\xaf\xfe\xef\xc5\x8f\xc5\x79\x43\x4c\xf3\xb1\x7b\x47\x6c\x22\x9e\x96\x23\xc3\x7f\x9a\x32\xed\xf2\xf4\x37\x00\x00\xff\xff\xfb\x0f\x35\x18\x2c\x03\x00\x00" +var _nodeversionbeaconAdminDelete_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xd4\x30\x10\xbd\xe7\x2b\x9e\xf6\x50\xb2\x97\xe4\x82\x38\x44\x40\xd5\xa5\x07\xb8\x20\x54\x96\xde\x67\x9d\xc9\xc6\xc2\xf1\x58\xce\x84\x82\x50\xff\x1d\xd9\xc9\xb6\x8b\xd2\x45\x5c\xfd\x66\xde\xbc\xf7\xfc\xec\x10\x24\x2a\x3e\x4b\xcb\xf7\x1c\x47\x2b\x7e\xc7\x64\xc4\xa3\x8b\x32\x60\xb3\x7a\xdf\x14\x45\x5d\xd7\xd8\x47\xf2\x23\x19\xb5\xe2\xa1\x3d\x29\xc8\x39\x79\x18\xcf\x79\x6e\xda\xc1\x7a\xa8\xa0\x65\xc7\xca\xd0\x9e\xf3\xea\x8f\x19\xc6\x41\x26\xdf\x52\xfc\x85\x81\x42\xb0\xfe\x88\x34\xdd\xf3\x09\xdf\xd3\xc1\x31\x48\xf3\xdb\x18\xd8\xd8\xce\x72\x9b\x19\x0e\x4e\xcc\x77\xf4\x6c\x8f\xbd\x22\x50\xa4\x81\x95\x63\x51\xe8\xb3\xa8\x32\xcf\x7c\xcc\x23\xbb\xe5\xd0\x5e\x6e\xb3\x92\x06\xdf\x3e\x79\x7d\xf3\x7a\x8b\xdf\x45\x01\x38\x7e\xc1\x7e\x16\x7f\xc7\x5d\x83\xab\x15\x56\x65\x30\xad\x86\xc8\x81\x22\x97\x64\x8c\x36\xa0\x49\xfb\x72\x27\x31\xca\xc3\x3d\xb9\x89\xb7\xb8\xba\x31\x46\x26\xaf\xe9\x12\x00\xd4\x35\x66\x1c\x84\xc8\x1d\x47\xf6\x86\x53\x44\xc9\xe3\x2a\xba\xc8\xa3\x4c\xd1\x70\x5e\x1d\xd9\x75\xd5\x45\x99\x78\x87\xa4\xa1\x1a\x55\x22\x1d\xb9\x3a\xe4\x2b\x6f\x2f\x69\x7f\x9f\x29\x81\x32\x7d\x72\xb3\x76\x3f\x4f\x7d\x9d\xc9\xbe\x90\xf6\xdb\x65\xe1\xfa\x1a\x81\xbc\x35\xe5\xe6\x83\x4c\xae\xf5\xaf\x14\xf3\xa9\x0b\x09\xe2\x6e\xf1\xb0\x49\x0c\x8f\x29\x33\xfe\xc9\x66\x52\x7e\x4e\xe4\xf6\xa9\x1e\x4f\xd5\xc8\xdd\x3b\x7f\xd0\x17\xcb\xf0\x77\x11\x4e\x7d\xfa\x8f\xb8\xaa\xb9\x92\x27\x6c\x59\x3c\xef\x4c\x83\x7f\x14\x68\xf1\xf2\xf8\x27\x00\x00\xff\xff\xb2\x03\xaa\xae\x3c\x03\x00\x00" func nodeversionbeaconAdminDelete_version_boundaryCdcBytes() ([]byte, error) { return bindataRead( @@ -4660,11 +4680,11 @@ func nodeversionbeaconAdminDelete_version_boundaryCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/delete_version_boundary.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xc4, 0xca, 0x36, 0x2a, 0xbe, 0xa6, 0xf1, 0x75, 0x8f, 0xd5, 0x82, 0x0, 0x82, 0xf0, 0x4c, 0x1b, 0xa5, 0xf5, 0xc6, 0x85, 0x25, 0xc3, 0x9c, 0xbe, 0xbe, 0xda, 0x83, 0xf4, 0x4d, 0xfe, 0x32}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xce, 0xdd, 0x99, 0x3c, 0x5e, 0x76, 0xfe, 0x27, 0x22, 0xe4, 0x7b, 0x78, 0x77, 0x89, 0xb6, 0x82, 0x89, 0x60, 0x66, 0xee, 0x3b, 0x76, 0xe7, 0xef, 0x52, 0xe7, 0xe7, 0x7a, 0x6b, 0x65, 0x71}} return a, nil } -var _nodeversionbeaconAdminHeartbeatCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x6f\x82\x40\x10\x85\xef\xfc\x8a\x17\x0f\x2d\x5e\xa0\x67\xd3\xd6\xa0\x92\xb4\x17\x6c\x20\xf1\xbe\x2e\x83\xbb\x09\xec\x90\x65\xa8\x26\x8d\xff\xbd\x11\xac\x35\xb1\xb1\x7b\xda\xd9\x9d\x79\xef\x9b\x67\x9b\x96\xbd\x20\xe3\x92\x36\xe4\x3b\xcb\x6e\x41\x4a\xb3\x43\xe5\xb9\xc1\xd3\x21\x5b\xaf\xd2\x4d\x9a\x17\xef\xeb\x6c\x91\x26\xcb\x75\x96\xac\x56\x79\x5a\x14\x41\x10\xc7\x58\xaa\xba\xee\x20\x86\xd0\x90\x18\x2e\x21\x46\x09\xa8\xb1\x32\xbe\x8a\xda\xd6\x84\xbd\x15\x33\x94\xd6\x69\x6e\xac\xdb\xe1\x73\x74\xea\x02\xf1\xca\x75\x4a\x8b\x65\x17\x4e\xf1\x15\x04\x00\x50\xd3\x1f\x3c\x6f\xa4\xbc\x6c\x49\x49\x4e\xd5\x0c\x0f\x37\xff\xd1\xa5\x61\x14\x69\x3d\xb5\xca\x53\xa8\xb4\x96\x19\x92\x5e\x4c\xa2\x35\xf7\x4e\x4e\x36\x38\x9f\x38\xc6\x82\xbd\xe7\x3d\x14\x3c\x55\xe4\xc9\x69\x82\xf0\x40\x7b\x65\x91\x94\x8d\x75\xf0\xd4\x71\xef\x35\x5d\xc6\x3b\xaa\xab\xe8\x2e\x29\x5e\x70\x02\x88\xb6\x83\xcb\xf3\x3d\xec\xd7\x8b\x2c\x10\x9e\xc2\x9f\xdd\x86\xf0\xdb\x5d\x08\x7b\xb5\xa3\x0f\x25\x66\x7a\x35\x38\x9f\xa3\x55\xce\xea\x70\xb2\xe4\xbe\x2e\xdd\xa3\x60\xb4\xbe\xa7\x85\xfc\xbc\xd8\x64\x94\x3a\x02\x18\x2e\x74\x20\xdd\x0b\x5d\x05\xf6\xff\xc6\x91\xf9\x29\xc2\xb3\x5a\x70\xfc\x0e\x00\x00\xff\xff\x54\xf5\x87\x79\x64\x02\x00\x00" +var _nodeversionbeaconAdminHeartbeatCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x41\x6f\xe2\x40\x0c\x85\xef\xf9\x15\x4f\x39\xb0\xe1\x92\xdc\xd1\xee\x22\xe0\xd2\x53\x55\x51\x89\xbb\x99\x38\x64\xa4\x64\x1c\x79\x9c\x52\xa9\xe2\xbf\x57\x64\x28\x45\xa2\xa2\x73\x1a\x7b\xec\xef\x3d\x7b\x7c\x3f\x88\x1a\x9e\xa5\xe6\x1d\x6b\xf4\x12\xd6\x4c\x4e\x02\x1a\x95\x1e\xf9\x5d\x3e\xcf\xb2\xaa\xc2\x86\xba\x2e\xc2\x5a\x46\xcf\xd6\x4a\x0d\x6b\xc9\xc0\xbd\xb7\x94\x35\xda\x77\x8c\xa3\xb7\x76\x0a\x7d\x70\xd2\xfb\x70\xc0\x5b\x42\xc5\xcc\x94\x42\x24\x67\x5e\x42\x31\xc7\x47\x96\x01\x40\xc7\x3f\x18\x79\x62\x52\xdb\x33\xd9\x96\x9b\x05\x66\x77\xef\xe5\xb5\x20\x41\x06\xe5\x81\x94\x0b\x72\xce\x16\xa0\xd1\xda\x62\x2d\xaa\x72\xdc\x51\x37\xf2\x1c\xb3\x95\x73\x32\x06\x3b\xab\xe2\x72\xaa\x0a\xa9\x06\x04\xe5\x86\x95\x83\x63\x98\x4c\xe6\x6f\x14\x57\x75\xef\x03\x94\xa3\x8c\xea\xf8\xda\x1e\xb9\x6b\xca\x87\xc6\xf1\x0f\x67\x3f\x65\x34\x51\x3a\x70\xb9\x9f\xd4\xfe\x3e\x9a\xe6\xff\x15\x0f\x14\xe7\xcf\x58\xdc\xef\xe6\xbb\xfa\x35\x81\x5f\xc8\xda\xf9\x4d\xe3\x72\x89\x81\x82\x77\x45\xbe\x91\xb1\xab\xc3\x1f\x43\x92\x7e\xc4\xc2\xf6\x32\x60\x9e\x50\x27\x00\xd3\x85\xdf\xd9\x8d\xc6\x37\x8b\xfb\x7d\xf2\xb2\xfd\x0a\x8a\x0b\x2d\x3b\x7d\x06\x00\x00\xff\xff\x23\xcb\x77\xbd\x74\x02\x00\x00" func nodeversionbeaconAdminHeartbeatCdcBytes() ([]byte, error) { return bindataRead( @@ -4680,11 +4700,11 @@ func nodeversionbeaconAdminHeartbeatCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/heartbeat.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0x8d, 0x70, 0x49, 0x14, 0x1, 0xa9, 0x56, 0x3d, 0xde, 0xa3, 0xc4, 0xf6, 0xfa, 0x14, 0x16, 0x9a, 0xdc, 0xc3, 0x9d, 0x56, 0xff, 0xb5, 0x96, 0x96, 0xf9, 0xba, 0x4c, 0x8b, 0x8c, 0xb4, 0xb0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9f, 0x2e, 0x33, 0xc2, 0x68, 0xee, 0x46, 0xb8, 0xb7, 0xd6, 0xdc, 0x46, 0x84, 0x75, 0x4a, 0xb1, 0xc1, 0x19, 0x4b, 0xaf, 0x3d, 0xb9, 0x5, 0x88, 0x7d, 0xd2, 0x59, 0x36, 0x2b, 0x5e, 0x7, 0x29}} return a, nil } -var _nodeversionbeaconAdminSet_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\xc1\x6e\xdb\x30\x0c\x86\xef\x7e\x0a\x22\x87\xcd\x01\x02\x7b\x87\x61\x18\x8c\x75\x85\xd3\x06\x58\x0f\x4b\x8b\xa4\xeb\x9d\x91\xe9\x44\x9b\x2d\x79\x12\x9d\x74\x18\xfa\xee\x83\x64\x3b\x71\xec\x04\xd8\xa9\x28\x49\x91\x3f\x3f\xfe\xb1\x2c\x2b\x6d\x18\x96\x3a\xa3\x17\x32\x56\x6a\x35\x27\x14\x5a\x41\x6e\x74\x09\x1f\x5e\x97\x8f\xf7\x8b\x97\xc5\x6a\xfd\xf0\xb8\x9c\x2f\xd2\xbb\xc7\x65\x7a\x7f\xbf\x5a\xac\xd7\x41\x10\xc7\x31\x3c\x1b\x54\x16\x05\x4b\xad\x80\x77\xc8\x80\x45\xa1\x0f\xb6\xdf\x2e\xcd\x4a\xa9\x80\x35\x60\x96\x01\x82\xa2\x03\xec\x9b\x8c\x0b\xf2\x8e\x7c\xa3\x63\x08\x37\x05\x41\x46\xb9\x54\x52\x6d\x01\x8f\x89\x8d\xae\x55\x86\xe6\x0f\x20\xbb\x47\xc0\x68\xb6\xc4\xf3\x42\x8b\x5f\xdf\x48\x6e\x77\x1c\x04\x7c\x12\x13\x06\xe0\x26\x7d\xc7\x9f\xda\x24\xf0\xe3\x41\xf1\xe7\x59\x1b\x92\x6a\x18\x7a\x42\x16\xbb\x41\xc8\xd0\x8a\x0a\x42\x4b\x09\xac\xd9\x48\xb5\xbd\x75\x99\xcd\x69\x5c\x53\xff\xe9\x63\x30\x85\xbf\x41\x00\x50\xd0\x05\x88\x7e\xf7\x15\xe5\x09\xbc\x1b\xe5\x22\x9f\x6c\x5f\x2a\x3a\x74\xc9\x76\xcf\x64\xdc\x2d\x1a\x94\xb8\xb1\x95\xa1\x0a\x0d\x85\x28\x04\x27\x90\xd6\xbc\x4b\x85\xd0\xb5\x62\x27\x0b\x00\x20\x8e\xe1\xce\x10\x32\x79\x6a\x7d\xfa\xfe\xc0\x2e\x58\xa1\xb5\x94\x41\x85\x06\x4b\x62\x32\xd6\x3f\x3c\x97\x05\x37\x17\xf4\xac\xa9\xdc\x93\x09\x7d\x39\x40\xd9\xc0\xee\xb0\xcf\xa0\x6c\x50\x77\xd0\x67\x50\x35\xa0\x3b\xe4\x33\xa7\xfe\x88\xf9\x8c\xba\x6f\x39\x0d\xfc\x1f\x4b\x45\x1e\x8d\x01\x5d\x54\x34\xa8\x09\xcf\x0e\xd6\xfb\x67\xd6\x51\x48\x7a\x3b\xb6\xf3\xe2\x18\xe6\xda\x18\x7d\x00\x04\x43\x39\x19\x52\x82\x5a\xaf\x8e\x8d\x6d\xc8\xea\xda\x08\x3a\x49\xbd\xea\x02\xb8\x01\x77\xa6\x68\xe3\xbb\x7f\xb9\x66\x89\xaf\x2d\xcf\xd0\x1d\xe8\x92\x0d\x7c\xd5\x9a\xb5\xc1\x2d\x3d\x21\xef\xa6\xed\x83\xdb\x5b\xa8\x50\x49\x11\x4e\xee\x74\x5d\x64\xea\x3d\x43\x33\xea\x5a\x0f\x58\xb5\xe2\x27\xae\xc5\x9b\x5b\x9f\x5e\x49\xd4\x4c\x27\xf3\xa4\x59\x36\x72\x4e\xcb\xe2\xec\x37\xfb\x1f\xfb\x47\x96\x78\x78\xa0\xfd\xd0\xf5\x57\xae\x7d\x14\x58\x69\xcb\x8d\xb8\xf1\x52\xdb\x71\x7f\xca\x73\x12\x2c\xf7\x94\xf6\xbf\x15\x67\x5e\x98\x46\xad\x88\xc8\xb2\x91\x82\x17\xbf\x6b\x2c\x9e\x75\x78\x45\x49\x57\xdd\x52\x4f\x60\xb2\xec\xa1\x39\xa0\x05\xa5\xd9\x7d\xec\x28\x1b\x80\x7a\x76\x9c\x26\x7e\x91\xb7\xe0\x5f\x00\x00\x00\xff\xff\x6f\x29\x85\xa7\x78\x05\x00\x00" +var _nodeversionbeaconAdminSet_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x6b\xdb\x4e\x10\xbd\xeb\x53\x3c\x7c\xc8\x4f\x06\x23\x5d\x7e\x94\x22\x9a\x06\x27\x14\xda\x43\x43\x48\xdc\xdc\xc7\xab\x91\xad\x56\xda\x55\x77\x47\x76\x4b\xc9\x77\x2f\x2b\xad\x6d\x59\xb2\xa1\x27\xe3\xf9\xfb\xe6\xbd\xa7\x2d\xeb\xc6\x58\xc1\xa3\xc9\xf9\x95\xad\x2b\x8d\xbe\x67\x52\x46\xa3\xb0\xa6\xc6\x6c\x12\x9f\x45\x51\x9a\xa6\x58\x59\xd2\x8e\x94\x94\x46\x43\xb6\x24\xa0\xaa\x32\x7b\x37\x9c\xb3\xcc\xeb\x52\x43\x0c\x28\xcf\x41\xd0\xbc\xc7\xae\xcf\xf8\xa0\x6c\xb9\x1b\x74\x0c\xd1\xba\x62\xe4\x5c\x94\xba\xd4\x1b\xd0\x31\xb1\x36\xad\xce\xc9\xfe\x06\x89\x6f\x82\x90\xdd\xb0\xdc\x57\x46\xfd\xf8\xcc\xe5\x66\x2b\x51\x24\x27\x30\x71\x04\xbf\xe9\x2b\x7d\x37\x36\xc3\xb7\x2f\x5a\xde\x2f\x42\xa8\xd4\xe3\xd0\x13\x89\xda\x8e\x42\x96\x9f\xb9\x62\x72\x9c\xe1\x45\x6c\xa9\x37\x77\x3e\xb3\x3e\xad\xeb\xeb\xdf\xfd\x1f\xcd\xf1\x27\x8a\x80\x8a\x2f\xb0\xd7\xdd\xfe\xcc\x45\x86\x9b\x49\x2e\xe9\x92\xa1\x53\xf3\xfe\x90\x0c\x77\x66\xd3\x69\xc9\xa8\xc4\xaf\x6d\x2c\x37\x64\x39\x26\xa5\x24\x03\xb5\xb2\x8d\xef\x8d\xb5\x66\xff\x4a\x55\xcb\x73\xdc\x2c\x95\x32\xad\x16\x8f\x12\x00\xd2\x14\x0f\x96\x49\xb8\x23\x71\x28\x46\x27\xb4\x0f\x36\xe4\x1c\xe7\x68\xc8\x52\xcd\xc2\xd6\x75\x8d\xe7\x28\x71\x7b\x01\xde\x0b\xd7\x3b\xb6\x71\x57\x0e\xd4\x3d\xf7\x07\x15\x16\xa8\x7b\xe6\x0f\x1a\x2c\xd0\xf4\xbc\x1f\x14\x58\xf8\x63\x8e\xac\x9f\x89\xd0\x8d\x9c\x47\xdd\x8f\xe3\xaa\x48\xa6\x7c\x5d\x44\x34\xaa\x89\xcf\xf4\x1b\xfc\x59\x1c\x58\xc8\x06\x37\x86\x7d\x69\x8a\x9e\x51\x10\x2c\x17\x6c\x59\x2b\x0e\xd6\x9d\xfa\xdc\xb2\x33\xad\x55\x7c\x82\x7a\xd5\x14\xb8\x85\x57\x2d\x71\x62\x2c\x6d\x38\x59\x77\x5b\x3e\x5c\x73\xca\xc7\xc0\x6b\xec\x85\xba\xe4\x8e\xae\xea\xa5\x1f\xf6\x44\xb2\x9d\x87\x86\xbb\x3b\x34\xa4\x4b\x15\xcf\x1e\x4c\x5b\xe5\xfa\x3f\x41\xbf\xea\xda\x0c\x3c\x87\x23\x66\x7e\xc4\x9b\xa7\x81\x7f\xb1\x6a\x85\x4f\x26\x5a\xe6\xf9\xc4\x41\x81\x93\xb3\x4f\xf9\x1f\x78\x48\x1c\xcb\x58\xa8\xdd\xf8\x63\xb8\xa2\xfa\x11\x60\x63\x9c\x04\x74\xd3\xab\x36\xd3\x05\x5c\x14\xac\xa4\xdc\xf1\x72\xf8\x86\x9c\x99\x62\x9e\x04\x14\x81\x47\x20\x71\x62\x4b\x25\x9f\x7e\xb6\x54\xad\x4c\x7c\x05\xd3\xa1\x6d\x8e\x0c\xb3\xc7\x01\x3f\x7b\x72\xd0\x46\xfc\x43\xc8\xf9\x88\xad\x95\x27\x6b\xd6\x5d\xf3\x16\xfd\x0d\x00\x00\xff\xff\x4f\xa8\x29\x9e\x8d\x05\x00\x00" func nodeversionbeaconAdminSet_version_boundaryCdcBytes() ([]byte, error) { return bindataRead( @@ -4700,11 +4720,11 @@ func nodeversionbeaconAdminSet_version_boundaryCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/admin/set_version_boundary.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0x49, 0x35, 0xe6, 0xaf, 0x28, 0x5e, 0xc9, 0x5b, 0x35, 0xf1, 0x3, 0x12, 0x28, 0xdd, 0x59, 0xcb, 0x3b, 0xdf, 0x46, 0xd5, 0xa8, 0x3, 0x78, 0x65, 0xe5, 0xcf, 0xd4, 0x1e, 0xb, 0xa1, 0x5d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0x5f, 0x19, 0x8f, 0xfe, 0x87, 0x52, 0x72, 0x46, 0xb0, 0x81, 0xa2, 0xc2, 0xf7, 0x57, 0xb4, 0x96, 0xcb, 0xa2, 0xcc, 0xe3, 0xf0, 0x47, 0x81, 0x59, 0x45, 0x5f, 0xf7, 0xcb, 0x2a, 0x8e, 0xb5}} return a, nil } -var _nodeversionbeaconScriptsGet_current_node_versionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4f\xc3\x30\x14\x84\x77\xff\x8a\xdb\x68\x97\x86\x99\xad\x6d\x2c\xc4\xe2\x48\x35\xca\xee\xc4\x2f\x60\x09\x3f\x47\x2f\xcf\x11\x08\xf1\xdf\x19\x42\x26\xba\xde\x7d\xba\xfb\x52\x9e\x8b\x28\x5c\x89\xd4\x93\x2c\xa9\xf0\x85\xc2\x58\x18\x93\x94\x8c\xc7\x4f\xd7\xb5\xb6\xb7\x37\xff\xd2\xb9\x8b\x3d\x5f\x3b\x77\x6e\xdb\x9b\xf5\xde\x98\xa6\x69\xf0\x4c\xba\x40\xdf\x09\x63\x15\x21\x56\xac\xdb\x06\x22\x4d\x89\x29\x22\xf1\x56\x17\x56\x09\xa3\x3e\x2c\x3b\xf1\x1a\x86\x0f\x32\x73\x1d\x30\x55\x46\x0e\x89\x0f\xc7\xa7\xff\x1a\x27\x4f\x79\x25\xc1\xb7\x01\x00\x21\xad\xc2\x77\xa8\x37\xd2\xeb\x66\xb0\xe7\xa5\x72\x0c\xf2\x75\x38\x9e\xfe\x0e\xcd\x8f\xf9\x0d\x00\x00\xff\xff\xd3\x89\x47\xe6\xec\x00\x00\x00" +var _nodeversionbeaconScriptsGet_current_node_versionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\xae\xc2\x30\x10\x04\x7b\x7f\xc5\x2a\xcd\x4b\x9a\xa4\x7f\x25\x14\x74\x34\x20\x7a\x63\x5f\xc0\x52\x7c\x87\xce\xe7\x48\x08\xf1\xef\x14\x21\x55\x68\x67\x47\xda\x49\xf9\x21\x6a\x38\x4a\xa4\x0b\x69\x49\xc2\x3b\xf2\x41\x18\xa3\x4a\x46\xb3\xe1\x8d\x73\xc3\x30\xe0\x40\x56\x60\x77\x42\xa8\xaa\xc4\x86\x79\x91\x10\x69\x4c\x4c\x11\x89\x97\x59\xd8\xd4\x07\xfb\x2b\xab\x71\xf6\xd7\x89\x9c\x0f\x81\x4a\x69\xfd\x34\x75\x18\x2b\x23\xfb\xc4\x6d\xf7\xbf\xed\xe8\x4f\x94\x67\x52\xbc\x1c\x00\x28\x59\x55\xfe\x61\xdd\xc8\xf6\x4b\xc9\xca\xa5\x72\xf4\xfa\x6c\xbb\xfe\x7b\xec\xde\xee\x13\x00\x00\xff\xff\x85\x05\xca\x6f\xed\x00\x00\x00" func nodeversionbeaconScriptsGet_current_node_versionCdcBytes() ([]byte, error) { return bindataRead( @@ -4720,11 +4740,11 @@ func nodeversionbeaconScriptsGet_current_node_versionCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_current_node_version.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfb, 0x9f, 0x48, 0x25, 0x5e, 0xe5, 0xf5, 0xf3, 0x98, 0x16, 0x65, 0xb7, 0xcc, 0x3c, 0x13, 0x9e, 0xa0, 0x46, 0x5d, 0x48, 0x2a, 0xe8, 0x1, 0xa3, 0x34, 0x78, 0xa7, 0x4e, 0x4e, 0xf4, 0x54, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0xcf, 0xc4, 0xaa, 0x86, 0xfc, 0xd, 0x40, 0xfc, 0xe6, 0xbb, 0xcc, 0x27, 0xcc, 0xf8, 0x3f, 0x97, 0x44, 0xb5, 0x3, 0x35, 0xb9, 0xe4, 0xe4, 0xa6, 0x73, 0x22, 0xa5, 0xc3, 0x50, 0x54, 0x87}} return a, nil } -var _nodeversionbeaconScriptsGet_current_node_version_as_stringCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\x31\x4f\xc3\x30\x10\x85\x77\xff\x8a\x37\x26\x4b\xc2\x8c\xc4\xd0\x36\x11\x62\x71\xa4\x1a\x75\x77\xea\x4b\xb1\xd4\x9c\xa3\xcb\x19\x81\x10\xff\x1d\x29\x31\x2c\xac\xdf\xdd\xfb\xde\x8b\xf3\x92\x44\x61\x53\xa0\x0b\xc9\x1a\x13\x1f\xc9\x5f\x13\x63\x92\x34\xe3\xe1\xc3\x0e\x5d\x7f\xe9\xcf\xee\x65\xb0\xc7\xfe\x70\x1a\xec\xa1\xeb\xce\xbd\x73\xc6\xb4\x6d\x8b\x67\xd2\x15\xfa\x46\xb8\x66\x11\x62\xc5\xfb\xee\x40\xa0\x29\x32\x05\x44\xde\xce\x05\xbf\xfa\xf1\x4e\x5b\xd0\xaf\xf0\x70\x2a\x91\x6f\x8d\x59\xf2\x88\x29\x33\x66\x1f\xb9\xaa\x1f\x0b\xc7\x97\x01\x80\x3b\x29\xc6\x94\x39\x78\xf9\xc4\xd3\xff\xa1\xcd\x8d\xf4\xb4\xb7\xff\xf2\xf2\x5d\xd5\x9b\x40\x48\xb3\xf0\x9f\xa3\x29\x5b\x1a\x4d\x7b\x4f\x55\x9b\x6f\xf3\x13\x00\x00\xff\xff\x57\x8d\x58\xd7\x07\x01\x00\x00" +var _nodeversionbeaconScriptsGet_current_node_version_as_stringCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\xb1\x4e\x04\x31\x0c\x44\xfb\x7c\xc5\xe8\xaa\xa4\xc9\xf6\x48\x34\x50\xd0\xd1\x80\xe8\x7d\x89\xf7\x88\x94\x75\x90\xe3\x20\x21\xc4\xbf\x23\xed\x06\x9a\x6d\xdf\x8c\xc7\xaf\x6c\x1f\x4d\x0d\xcf\x2d\xf3\x1b\x6b\x2f\x4d\x1e\x98\x52\x13\xac\xda\x36\x5c\x4e\xfc\xe2\xdc\xb2\x2c\x78\x62\xeb\xb0\x77\x46\x1a\xaa\x2c\x86\xcf\xa3\x84\xcc\x6b\x11\xce\x28\xb2\xc7\x13\xbf\xd2\xb5\xf2\x7e\x48\x1d\x84\x17\xd3\x22\xb7\xe8\x28\x25\xee\xdd\x53\xad\x01\xeb\x10\x6c\x54\xc4\x87\xbb\x99\xe3\xdb\x01\x40\x65\xc3\xb5\x0d\xc9\xa4\x5f\xb8\x3f\x9b\xc6\x1b\xdb\xe3\x61\xf1\xc7\x67\xdb\x87\x7d\x40\xd9\x86\xca\xff\x46\x9c\x4e\xd1\xda\xf1\xc7\x07\xf7\xe3\x7e\x03\x00\x00\xff\xff\xb6\xe8\xbb\xb2\x08\x01\x00\x00" func nodeversionbeaconScriptsGet_current_node_version_as_stringCdcBytes() ([]byte, error) { return bindataRead( @@ -4740,11 +4760,11 @@ func nodeversionbeaconScriptsGet_current_node_version_as_stringCdc() (*asset, er } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_current_node_version_as_string.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x23, 0x94, 0x82, 0x7f, 0x6f, 0x76, 0x57, 0x6f, 0x57, 0xa5, 0xb0, 0xd3, 0xa9, 0x73, 0x3b, 0xd9, 0x46, 0x6, 0x45, 0x4b, 0x52, 0x3, 0xc1, 0xa9, 0xb5, 0x2e, 0x95, 0x86, 0xce, 0x4b, 0x4e, 0x3a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x95, 0x4a, 0x28, 0x9c, 0x3d, 0x34, 0xab, 0xe4, 0x22, 0xbd, 0x8d, 0x1f, 0x3b, 0x1f, 0xeb, 0x42, 0xe7, 0xa4, 0x2, 0xb1, 0xec, 0x6d, 0x34, 0x10, 0xc1, 0xd8, 0x6c, 0xc2, 0xec, 0xcd, 0x9f, 0x68}} return a, nil } -var _nodeversionbeaconScriptsGet_next_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\x3d\x6b\xc3\x30\x10\xc6\xf1\x5d\x9f\xe2\x19\x93\xa5\xee\xdc\xa5\x24\xb5\x86\x2e\x32\xd8\x90\xdd\x89\x4e\xe9\x41\x75\x67\xce\x92\x71\x29\xfd\xee\xa5\x6f\x4b\x9d\xf1\xe0\xff\x3b\x1e\xce\x93\x5a\x41\xd0\x48\x27\xb2\x99\x55\x8e\x34\x5e\x54\x90\x4c\x33\xee\xd7\xd0\xb5\xfe\xe4\xfb\xe1\xb9\x0b\x47\x7f\x78\xea\xc2\xa1\x6d\x7b\x3f\x0c\xce\x35\x4d\x83\x9e\x8a\x31\x2d\x34\xa3\xbc\x10\x84\xd6\x82\xe5\xe7\x0b\xce\x5a\x25\x8e\xf6\x06\x35\x08\xbf\x7e\xe7\x9c\xbe\x3a\x23\xf0\x0c\x51\xd4\xe9\xa2\x99\xe5\xba\x35\x91\x12\x0b\x45\x37\xd5\x33\x52\x15\xe4\x91\x65\xb7\x7f\xd8\xce\xbc\xfb\xbb\x7e\xe5\x23\xde\x1d\x00\x18\x95\x6a\x72\xa3\xbf\x52\x09\xb4\x96\x7f\x6c\xb7\x77\x1f\xee\x33\x00\x00\xff\xff\x95\x44\xbb\xfa\x0b\x01\x00\x00" +var _nodeversionbeaconScriptsGet_next_version_boundaryCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xbf\x6a\xc4\x30\x0c\xc7\xf1\xdd\x4f\xf1\x23\x53\xb2\x34\x7b\x97\x42\x1f\x20\x43\x87\xee\xae\x2d\xa7\x82\x58\x0a\xb2\x1d\x52\xca\xbd\xfb\x71\xff\x96\xcb\x8d\x12\x9f\xaf\x10\xe7\x55\xad\x62\xd2\x48\xdf\x64\x85\x55\x3e\xc9\x07\x15\x24\xd3\x8c\xee\xb0\xef\x9c\x1b\xc7\x11\x5f\x54\x8d\x69\xa3\x82\xfa\x4b\x10\xda\x2b\xb6\x1b\xc3\x8f\x36\x89\xde\xfe\xa0\x06\xe1\xe5\xca\x39\x5d\x9c\x11\xb8\x40\x14\x6d\x0d\x9a\x59\xe6\x63\x13\x29\xb1\x50\x74\x3e\x04\x2a\xa5\xf7\xcb\x32\x20\x35\x41\xf6\x2c\xfd\xf0\x7e\xfc\xf3\xed\x31\xdd\x2f\x7c\xe0\xdf\x01\x80\x51\x6d\x26\x2f\xfc\x4c\x75\xa2\xbd\x3e\x65\xfd\xe0\x4e\xee\x1c\x00\x00\xff\xff\x75\x24\x24\x44\x0c\x01\x00\x00" func nodeversionbeaconScriptsGet_next_version_boundaryCdcBytes() ([]byte, error) { return bindataRead( @@ -4760,11 +4780,11 @@ func nodeversionbeaconScriptsGet_next_version_boundaryCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_next_version_boundary.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x96, 0x49, 0x75, 0xa7, 0x75, 0xc1, 0xdc, 0x59, 0xdf, 0x44, 0xe1, 0xec, 0x7c, 0x20, 0x61, 0xa6, 0xb0, 0x5a, 0x2f, 0x8c, 0x59, 0x64, 0xf9, 0xe2, 0xac, 0xed, 0x22, 0x7d, 0xa9, 0x7d, 0xb9, 0xe6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x75, 0xb3, 0x64, 0xda, 0xd6, 0x80, 0x83, 0xd1, 0x25, 0x20, 0x2d, 0x41, 0xf5, 0x29, 0xd2, 0xd2, 0x6a, 0x68, 0x45, 0x17, 0x46, 0x2a, 0x5a, 0x4b, 0x8, 0xc5, 0x33, 0xd4, 0xfa, 0xbd, 0xc1, 0x4d}} return a, nil } -var _nodeversionbeaconScriptsGet_next_version_update_sequenceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\x31\x4f\x86\x30\x18\x06\xf7\xfe\x8a\x67\xfc\xbe\x45\x1c\x8c\x83\x1b\x48\x63\x58\x4a\x42\x23\x7b\x81\x07\x25\xb1\x6f\xb1\xbc\x35\x24\xc6\xff\x6e\x62\x5c\x8c\xeb\xdd\x70\xb7\xc5\x3d\x65\x85\x4b\x0b\x47\xe6\x63\x4b\xd2\x30\xcc\x49\xb0\xe6\x14\x71\x7b\xba\xbe\xb5\xa3\x1d\x7c\xd7\xbb\xc6\xd6\x8f\xbd\xab\xdb\x76\xb0\xde\x1b\x53\x55\x15\x9e\xa8\x07\xf4\x95\x10\x9e\x8a\x83\xef\x85\x32\x13\x52\xe2\xc4\x8c\x35\xe5\x1f\xa9\x61\x7a\x23\xca\xbe\x04\xe5\x02\x7e\x50\xd4\xec\x65\xc2\x5a\x04\x31\x6c\x72\xb9\x3e\xe0\xb9\x13\xbd\xbf\xc3\xa7\x01\x80\x4c\x2d\x59\xfe\x4f\xdd\xbc\x50\x1d\x4f\xfd\x03\xfd\x6f\xf5\x72\x35\x5f\xdf\x01\x00\x00\xff\xff\x79\x0b\x75\xa7\xce\x00\x00\x00" +var _nodeversionbeaconScriptsGet_next_version_update_sequenceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xce\x31\x8b\xc2\x40\x14\xc4\xf1\x7e\x3f\xc5\x90\x2a\x69\x2e\xcd\x71\xc5\x95\x36\x62\x93\x46\xb4\xdf\x6c\x26\x1a\xc8\xbe\x8d\x6f\xdf\x4a\x40\xfc\xee\x82\xd8\x48\xda\xdf\x14\xf3\x9f\xe2\x92\xd4\xd0\xa5\x81\x67\x6a\x9e\x92\xec\xe8\x43\x12\x8c\x9a\x22\xaa\x8d\x57\xce\xb5\x6d\x8b\x3d\x2d\xc3\xae\x84\x70\x35\x64\xde\x0a\x25\x10\x52\x62\x4f\xc5\x98\xf4\x3d\x9a\xef\x67\xa2\x2c\x83\x37\x0e\xe0\x9d\x62\xce\x87\xc0\x9c\x6b\x3f\xcf\x0d\xc6\x22\x88\x7e\x92\xba\xf9\xc7\xe9\x20\xf6\xf7\x8b\x87\x03\x00\xa5\x15\x95\x6d\xd5\xcf\x85\xd6\x71\xb5\x2f\x3c\x7e\xde\xeb\xc6\x3d\x5f\x01\x00\x00\xff\xff\x15\x0c\xe6\x10\xcf\x00\x00\x00" func nodeversionbeaconScriptsGet_next_version_update_sequenceCdcBytes() ([]byte, error) { return bindataRead( @@ -4780,11 +4800,11 @@ func nodeversionbeaconScriptsGet_next_version_update_sequenceCdc() (*asset, erro } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_next_version_update_sequence.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xba, 0x6, 0xe1, 0xfb, 0x2, 0x94, 0x1d, 0x0, 0x37, 0xef, 0xb8, 0xb1, 0xbf, 0x79, 0x81, 0xd4, 0x32, 0x4f, 0x2d, 0xfb, 0x3a, 0x10, 0x53, 0xa9, 0x9c, 0x65, 0x73, 0x1e, 0x22, 0xc1, 0x59, 0xec}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0x59, 0xeb, 0x83, 0xb9, 0x7c, 0xaf, 0x1c, 0x21, 0xdf, 0x42, 0x68, 0xcd, 0x9, 0x94, 0x45, 0xa5, 0xd4, 0xc4, 0x6d, 0xa6, 0x19, 0x7f, 0xac, 0x69, 0x9a, 0x84, 0xe7, 0xe6, 0x74, 0x11, 0x3}} return a, nil } -var _nodeversionbeaconScriptsGet_version_boundariesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xbd\x4e\xc4\x30\x10\x84\x7b\x3f\xc5\x94\x9c\x84\x2e\xd4\xd7\xdd\x11\x17\xd7\x38\x28\x91\xdc\x1b\xb2\x31\x2e\xb2\xb6\x36\x76\x04\x42\xbc\x3b\x72\x08\x12\x7f\xcd\x6a\x77\x67\x46\xf3\x85\x39\x45\xc9\x30\x71\x24\x4b\xb2\x84\xc8\x17\x72\x4f\x91\x31\x49\x9c\x71\xf7\x62\xba\x56\x5b\xdd\x0f\xd7\xce\x5c\xf4\xf9\xbe\x33\xe7\xb6\xed\xf5\x30\x28\xd5\x34\x0d\x7a\xca\x45\x78\x41\x7e\x26\xac\x7b\x3c\x16\x1e\x9d\x04\x5a\x90\x9c\x27\x4c\x51\x36\xd9\x87\x95\xf8\xf3\xe5\x78\x44\x22\x79\x70\x9e\x8e\x2a\x95\x47\x4c\x85\x31\xbb\xc0\x37\x55\x3e\xe1\xca\xf9\xf6\xcb\xb0\x5d\x87\xd3\x5f\xc0\xa3\xfd\xd1\xf7\x5a\xcd\x78\x53\x00\x20\x1b\xd5\x3f\x11\x4f\xd9\xfe\xa6\xac\xb9\xbd\xb7\xce\x6f\xc5\xfb\x72\x50\xef\x1f\x01\x00\x00\xff\xff\xb5\x4e\xf5\xec\x25\x01\x00\x00" +var _nodeversionbeaconScriptsGet_version_boundariesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x3f\xcb\x83\x30\x10\xc6\xf7\x7c\x8a\x07\x27\x85\x17\xdd\x1d\xdf\xad\x4b\x29\x1d\xdc\x0f\x3d\xd3\x80\x5e\xe4\x12\x85\x52\xfa\xdd\x4b\xac\x85\xb6\x76\x09\xb9\xe7\x0f\xcf\xcf\x8d\x93\xd7\x88\xa3\xef\xb8\x61\x0d\xce\xcb\x3f\x53\xeb\x05\xbd\xfa\x11\xd9\x4e\xcf\x8c\xa9\xaa\x0a\x67\x8e\xb3\x4a\x40\xbc\x30\x96\xcd\xf7\xb3\x74\xa4\x8e\x03\x26\xb2\x8c\xde\xeb\x6a\x5b\xb7\xb0\x3c\x25\x92\x0e\x13\xeb\x89\x2c\x97\x86\xda\x96\x43\xc8\x69\x18\x0a\xf4\xb3\x60\x24\x27\x79\x8a\xd5\x38\x48\xfc\x7b\x05\xd7\xab\xa8\xf7\x84\x65\xf3\xb1\x7b\x4d\x61\xdc\x0c\x00\xe8\x4a\xf7\xa3\x62\x39\x36\xdf\xb4\xa9\xb7\xed\xa6\xf7\x6d\x78\xfb\x14\xe6\xfe\x08\x00\x00\xff\xff\xca\xa3\xbd\xbb\x26\x01\x00\x00" func nodeversionbeaconScriptsGet_version_boundariesCdcBytes() ([]byte, error) { return bindataRead( @@ -4800,11 +4820,11 @@ func nodeversionbeaconScriptsGet_version_boundariesCdc() (*asset, error) { } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_version_boundaries.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xab, 0x9c, 0x4b, 0xef, 0x3a, 0x1f, 0xed, 0x48, 0x7e, 0x0, 0xca, 0xa9, 0x4e, 0x7c, 0x4a, 0x4a, 0xc1, 0xaa, 0xb6, 0x1a, 0xfa, 0xc6, 0x2b, 0x52, 0x44, 0x25, 0x72, 0xb8, 0x99, 0xe7, 0x77, 0x6a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0xa1, 0x9, 0x94, 0xd7, 0xa0, 0x68, 0x9d, 0xa1, 0x3f, 0x5d, 0xe9, 0xd1, 0x3a, 0x52, 0x92, 0x56, 0xf0, 0xc1, 0x29, 0x9b, 0x93, 0xef, 0x15, 0x57, 0x95, 0x86, 0x70, 0xb4, 0xa4, 0x2b, 0xe2}} return a, nil } -var _nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xd0\xbd\x4e\xeb\x40\x10\x05\xe0\xde\x4f\x71\xca\xa4\xb9\xb9\x05\xa2\xa0\x4b\xb0\x91\xd2\xd8\xc8\x16\xee\xd7\xde\xb1\x77\x04\x3b\x6b\xed\xce\x12\x7e\xc4\xbb\x23\x39\xa6\x42\xf4\x33\xdf\xcc\x39\xec\x97\x10\x15\x75\xb0\xd4\x53\x4c\x1c\xe4\x44\x66\x0c\x82\x29\x06\x8f\xff\x6f\x75\x53\x56\x7d\xd5\x76\xe7\xa6\x3e\x55\xc7\xfb\xa6\x3e\x96\x65\x5b\x75\x5d\x51\x1c\x0e\x07\xb4\xa4\x39\x4a\x82\x3a\xc2\xeb\xb6\x1e\xb2\x58\x13\xdf\x1f\x22\xd1\x07\x3d\x52\xe4\x60\x71\x71\x3c\x3a\x58\x9a\x58\xe8\x3a\xed\x59\xd8\x67\x0f\xc9\x7e\xa0\x88\x30\x61\x78\x09\xe3\x73\x5a\x59\x75\x46\xe1\x73\x52\x2c\x26\x25\x0c\xa4\x17\x22\x41\x5e\xac\x51\x96\x19\xe6\xe7\x18\x8c\x58\xb0\xa6\x8d\xb6\x57\x04\x8e\x78\x76\xba\x52\xc3\xf6\x4e\xb1\xe4\x01\x53\x16\x78\xc3\xb2\xdb\xdf\xe1\xe9\x2c\x7a\x7b\x83\xcf\x02\x00\xe2\x9a\xe3\x77\x0b\xff\x66\xd2\xfe\xef\x5c\xbb\x7d\xf1\xf5\x1d\x00\x00\xff\xff\x9d\x4e\x18\x47\x41\x01\x00\x00" +var _nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xd0\xb1\x4e\xc4\x30\x0c\x06\xe0\x3d\x4f\xf1\xeb\xa6\x76\xa1\x0b\x62\x60\x64\x40\x62\x41\x08\x89\xdb\xdd\xc4\x6d\x2c\x1a\xa7\x4a\x1c\x4e\x80\x78\x77\xa4\x5e\x99\x2a\x56\xdb\xfa\xec\xdf\x92\xd6\x5c\x0c\xcf\x39\xf0\x99\x4b\x95\xac\x0f\x4c\x3e\x2b\xa6\x92\x13\x4e\x87\xfa\xc9\xb9\x61\x18\xf0\xca\xd6\x8a\x56\x58\x64\x7c\xec\xfd\xdc\x34\x50\xf9\x7c\x2c\xcc\x5f\xfc\xc2\x45\x72\xc0\x25\x8a\x8f\x08\x3c\x89\xf2\x75\x3a\x89\x4a\x6a\x09\xda\xd2\xc8\x05\x79\xc2\xb8\x64\xff\x5e\x37\xd6\x22\x19\x52\xab\x86\x95\x6a\xc5\xc8\x76\x61\x56\xb4\x35\x90\x89\xce\xa0\xbf\x65\x20\x0d\x10\xab\x3b\x1d\xae\x08\x22\xcb\x1c\x6d\xa3\xc6\xfd\x1c\x47\xde\x73\xad\x1d\x2d\x4b\x8f\xa9\x29\x12\x89\x76\xfd\x3d\xde\x9e\xd4\xee\x6e\xf1\xed\x00\xa0\x6c\x79\x8e\x6f\xb8\x99\xd9\xce\xff\xe7\xeb\x7a\xf7\xf3\x1b\x00\x00\xff\xff\x2f\xba\x20\x02\x42\x01\x00\x00" func nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdcBytes() ([]byte, error) { return bindataRead( @@ -4820,11 +4840,11 @@ func nodeversionbeaconScriptsGet_version_boundary_freeze_periodCdc() (*asset, er } info := bindataFileInfo{name: "nodeVersionBeacon/scripts/get_version_boundary_freeze_period.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x36, 0x8d, 0x65, 0x52, 0xa7, 0x75, 0xb3, 0x7c, 0x0, 0x6a, 0xd1, 0x48, 0x8c, 0x30, 0xbd, 0x1, 0xde, 0xef, 0x97, 0xb5, 0xbf, 0xfd, 0x57, 0x70, 0x84, 0x7c, 0x73, 0x22, 0xa4, 0xec, 0x7, 0x44}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0x6, 0x8b, 0x76, 0x1c, 0x24, 0xee, 0x96, 0x38, 0x5f, 0x6a, 0xf, 0x88, 0xd6, 0x73, 0xa4, 0x44, 0x22, 0xa4, 0x98, 0xb7, 0x60, 0x1, 0x71, 0x29, 0xb4, 0xf9, 0xdd, 0x3c, 0xd0, 0xa2, 0x32}} return a, nil } -var _quorumcertificateAdminPublish_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4e\xc3\x30\x10\x44\xef\xfe\x8a\x39\xa1\x56\x42\x0d\xe7\x0a\x21\x45\x2e\x9c\x09\xe5\x07\x96\xb0\x89\x2d\x1c\x6f\xb4\xde\xb4\x48\x55\xff\x1d\x39\xbd\x80\xc4\x5e\x77\x66\xde\x4c\x9c\x66\x51\xc3\x4b\x92\xb3\x4f\x4b\x31\xd6\xce\x63\x50\x99\xf0\xf0\xdd\xf9\xf6\x70\x78\x7b\x3e\x1e\x9d\x6b\x1a\xbc\x73\x31\x98\x52\x2e\xd4\x5b\x94\x8c\x41\x14\x16\x18\x9d\x07\x7d\x4e\x31\xc3\x04\xf3\xf2\x91\x62\x09\x20\x28\x0f\xac\x9c\x7b\xae\x5e\x0b\x64\xa0\x94\xe4\x5c\x40\x7d\x2f\x4b\xb6\x52\xe5\xca\x63\xac\xcc\x35\xab\xf3\x38\x89\xc5\x3c\x3a\xf7\x1b\x73\x71\x0e\x00\x66\xe5\x99\x94\x37\x25\x8e\x99\x75\x8f\x76\xb1\xd0\xde\xa2\xb6\xb8\xac\x92\x7a\xb7\xf7\x2e\xc5\xfc\xf5\x78\xf7\x67\xd5\xae\xad\x25\x9f\x36\xcd\xda\xb1\x6f\x4e\x62\xac\x5e\x99\x4c\xf4\x1e\x46\x3a\xb2\xed\xf1\x8f\xe5\x68\xa2\x34\xf2\x2b\x59\xd8\xae\x9c\xab\xbb\xfe\x04\x00\x00\xff\xff\x97\xf7\x08\x84\x37\x01\x00\x00" +var _quorumcertificateAdminPublish_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x6a\xf3\x30\x10\x84\xef\x7a\x8a\x21\x87\xe0\xc0\x8f\x7d\x0f\x7f\x0b\x41\xd0\x73\x43\xfb\x02\x1b\x75\x63\x0b\x14\xad\x58\xad\x93\x43\xc8\xbb\x17\xdb\x6d\x49\x20\x3a\x0e\xfa\xbe\x19\x29\x9e\x8a\xa8\xe1\x2d\xc9\xc5\xa7\xb1\x1a\xeb\xde\xe3\xa8\x72\xc2\xea\x21\x5b\x39\xd7\x75\xf8\xe4\x6a\x30\xa5\x5c\x29\x58\x94\x8c\xa3\x28\x6c\x60\xec\x3d\xe8\xeb\x14\x33\x4c\x50\xc6\x43\x8a\x75\x00\x41\xf9\xc8\xca\x39\xf0\xc4\xda\x40\x06\x4a\x49\x2e\x15\x14\x82\x8c\xd9\xea\x74\x5d\xb9\x8f\x53\xc7\xec\xda\x7b\x9c\xc5\x62\xee\x9d\xbb\xaf\xb9\x3a\x07\x00\x45\xb9\x90\x72\x53\x63\x9f\x59\xb7\xa0\xd1\x86\xc6\x53\xa1\x43\x4c\xd1\x22\xd7\x0d\xd6\xbb\x45\xbd\xc1\x75\x46\xa6\x93\xd8\x96\x75\x9e\x0a\x5e\xb0\xd0\x6d\xb8\xe3\xda\x6a\xa2\xd4\x73\x1b\x6b\x1d\xf9\xff\xfa\xe1\xe9\xed\x6e\x62\x5f\x9b\x27\xe1\xc7\x82\xbd\x93\x0d\x9b\xbf\xba\x67\xfe\x9f\x3f\x69\x7e\x67\xfc\x03\xd9\x16\xdd\x1c\x87\xee\x2c\xc6\xea\x95\xc9\x44\x17\xcf\xcd\xdd\xdc\x77\x00\x00\x00\xff\xff\xbf\xcc\x5d\xab\x9b\x01\x00\x00" func quorumcertificateAdminPublish_voterCdcBytes() ([]byte, error) { return bindataRead( @@ -4840,11 +4860,11 @@ func quorumcertificateAdminPublish_voterCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/admin/publish_voter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x62, 0x25, 0xcd, 0x7f, 0xbf, 0x92, 0xcd, 0x55, 0x37, 0x4c, 0xbc, 0x66, 0x88, 0x88, 0x9, 0x48, 0xe5, 0x38, 0x46, 0x33, 0xac, 0x31, 0x40, 0x2c, 0x65, 0x1f, 0x77, 0x1, 0x34, 0x4, 0x5b, 0x37}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2f, 0xd7, 0x84, 0xd7, 0x6, 0xe, 0x60, 0xa8, 0x8, 0xe9, 0x87, 0x59, 0x2c, 0x71, 0xbf, 0x8c, 0x9e, 0xd2, 0xe2, 0xa3, 0x9c, 0x39, 0xfc, 0xfe, 0x41, 0xe8, 0x1f, 0xc2, 0x19, 0x5b, 0x40, 0xe6}} return a, nil } -var _quorumcertificateAdminStart_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\xcd\x6e\xdb\x3c\x10\xbc\xeb\x29\x06\x39\x7c\x9f\x8d\x06\x76\x02\x14\x39\x08\x75\x03\xd7\x6e\x01\x5f\x8a\x3a\xee\xcf\x41\xd0\x81\xa1\x68\x89\x85\x4c\xaa\xe4\x2a\x4e\x60\xf8\xdd\x0b\x92\x92\x23\xc6\xae\x00\x03\xb2\x38\xb3\x3b\xbb\x3b\x5c\xb9\x6b\xb4\x21\x7c\xa9\xf5\x7e\x51\xb7\x96\x84\x59\x2f\xb0\x35\x7a\x87\x9b\xe7\xf5\x62\xbe\x5c\x3e\x7c\xde\x6c\x92\x64\x3a\xc5\x77\x61\x09\x64\x98\xb2\x8c\x93\xd4\x0a\x5b\x6d\x40\x95\xc0\x7a\x01\x56\xec\xa4\x02\x69\x58\x62\x86\xfa\xaf\x4f\x9a\xa4\x2a\xd1\x08\x23\x75\xe1\x42\xec\x25\x55\x60\x60\xc6\xb0\x17\xe8\x2d\xb8\xae\x6b\xc1\x49\x1b\x28\x5d\x08\xf0\x20\xc0\xfa\x74\x73\x53\xb6\x3b\xa1\xc8\xa6\xee\x9f\xfb\x49\x55\x48\x2e\x6c\x8a\xb9\x1a\x84\x08\x9c\xfe\xd0\xe1\xba\x4f\x5f\x75\x21\x56\x4b\x07\xef\xb1\x9e\x64\xfd\x5b\x5d\x7b\x91\x3e\xed\x6a\x69\x21\x15\x04\xe3\x55\xcf\x75\x61\xdc\xd9\x2f\x21\xcb\x8a\x2e\xc7\xf0\xdc\x7d\x00\x9c\xf1\x93\x41\xa3\x46\x27\xe1\xd9\x8f\x95\xa2\xdb\xbb\xfc\xfa\x4c\x63\x96\x6d\xc8\x48\x55\xe6\xf9\x75\x9c\x38\xf3\x9c\xbb\xf7\x79\x3e\xc6\x21\x49\x00\xa0\x31\xa2\x61\x46\x8c\xac\x2c\x95\x30\x29\xe6\x2d\x55\x73\xce\x75\xab\xe8\x84\x71\xcf\x74\x8a\x4f\xda\x18\xbd\x07\x83\x11\x5b\x61\x84\xe2\xc2\x0d\x29\x1a\x9a\x7e\xfc\x2d\x38\x9d\x48\xb5\xa0\x70\xf0\x20\xb6\x98\x21\xe4\x98\x3c\xfa\x38\x1f\xfe\x8b\x6c\x32\x99\x3b\xdc\xc7\x91\x73\x4b\x8a\x0b\x47\x1b\xd2\x86\x95\xe2\x1b\xa3\x6a\x7c\x4a\xe0\x9e\xfb\x7b\x34\x4c\x49\x3e\xba\x5a\xe8\xb6\x2e\xa0\x34\x21\xa4\x88\x85\xfe\xe1\x41\xcb\xd5\x38\x89\x04\xf6\x46\x49\x91\xc5\x69\xbb\xb7\x1c\x33\x64\xf9\x89\x32\xec\xc8\x8a\x84\x61\x24\x40\x95\xd1\x6d\x59\x45\x53\x03\x53\x05\xb8\x56\x96\x4c\xcb\x09\x0c\x5d\xb8\xb7\x3d\x72\xc6\x97\xaa\x10\xcf\x6e\xec\xdd\x70\x87\x8d\xef\x65\x0e\x06\xb9\x94\xde\x0a\xcc\xbc\xa4\x38\x84\x51\xa7\x08\x93\x3d\x62\x86\xc3\x31\x22\x3f\x31\x03\x89\x19\x6e\xe2\x98\xd3\x29\x36\x82\x82\x64\x17\xfb\x7f\x0b\x59\x78\xd1\xc1\x86\x6f\xc1\x0b\x56\xf3\xb6\x0e\xd5\xba\x7e\x12\xab\x3b\xa4\x2f\x21\x32\xec\x90\xba\xed\x2e\xe4\x6a\xe9\x0a\x8c\xad\x9a\xf9\xc2\x73\x1c\x22\xc6\xb0\x62\x8b\xd9\xb0\xf2\x8e\xf0\x4f\x78\x80\x75\x1c\x9b\xc9\x3c\x39\x83\x5e\xec\x63\x16\x14\xe6\x51\xb6\x73\xae\x6b\xa3\xc4\x3b\xdc\x46\x27\xc7\x18\xd8\xfb\x69\xc2\x9a\x46\xa8\x62\x74\xd1\x54\x23\x5f\x48\x1a\x26\xff\xe6\x96\x5e\x54\x38\x7e\x35\xfd\x31\xba\x95\x1b\xbf\x24\xd7\x0b\xfc\x0c\x0b\xd2\xaf\x45\x37\x22\xdb\x36\x4d\x2d\x45\xf1\xba\x09\x7b\x56\x7f\x25\x27\x7e\xc1\x06\xde\xe8\xf5\x1a\xf4\x6f\x21\xe3\x31\x39\xfe\x0d\x00\x00\xff\xff\x34\x89\x6e\x08\xd7\x05\x00\x00" +var _quorumcertificateAdminStart_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\xc1\x6e\xdb\x38\x10\xbd\xeb\x2b\x1e\x7c\xc8\xca\xd8\xc0\xde\x00\x8b\x1c\x84\xf5\x06\xae\x8d\x02\xbe\x14\x4d\xdd\xa6\x07\x41\x07\x86\xa2\x25\x16\x32\xa9\x92\xa3\xb8\x81\xe1\x7f\x2f\x48\x4a\x8e\x18\xbb\x02\x0c\xc8\xe2\x7b\x33\x6f\x66\xde\x50\xee\x5b\x6d\x08\x1f\x1b\x7d\x58\x35\x9d\x25\x61\x1e\x57\xd8\x19\xbd\xc7\x24\xfa\x36\x49\x92\xf9\x1c\x5f\x85\x25\x90\x61\xca\x32\x4e\x52\x2b\xec\xb4\x01\xd5\x02\x8f\x2b\xb0\x72\x2f\x15\x48\xc3\x12\x33\x34\x7c\x7d\xd1\x24\x55\x85\x56\x18\xa9\x4b\x17\xe2\x20\xa9\x06\x03\x33\x86\xbd\x42\xef\xc0\x75\xd3\x08\x4e\xda\x40\xe9\x52\x80\x87\x84\xd6\xa7\x5b\x9a\xaa\xdb\x0b\x45\x36\x73\xff\xdc\x4f\xaa\x52\x72\x61\x33\x2c\xd5\x28\x44\xe0\x0c\x87\x0e\xd7\x7f\xfa\xa4\x4b\xb1\x59\x3b\xf8\x80\xf5\x24\xeb\xdf\x9a\xc6\x8b\xf4\x69\x37\x6b\x0b\xa9\x20\x18\xaf\x07\xae\x0b\xe3\xce\xbe\x0b\x59\xd5\x74\x3d\x86\xe7\x1e\x02\xe0\x82\x9f\x8c\x1a\x95\x9e\x85\xe7\xdf\x36\x8a\xee\xee\x8b\xdb\x0b\x8d\x79\xbe\x25\x23\x55\x55\x14\xb7\x71\xe2\xdc\x73\xee\xff\x2d\x8a\x29\x8e\x49\x02\x00\xad\x11\x2d\x33\x22\xb5\xb2\x52\xc2\x64\x60\x1d\xd5\xe9\x07\x6d\x8c\x3e\x3c\xb1\xa6\x13\x53\xdc\x2c\x39\xd7\x9d\xa2\x33\xc5\x3d\xf3\x39\x02\x08\x0c\x46\xec\x84\x11\x8a\x0b\x37\xb3\x68\x86\xfa\xf9\x87\xe0\x74\x26\x35\x82\xc2\xc1\x17\xb1\xc3\x02\x21\xe5\xcc\x92\x36\xac\x12\xb3\x67\x1f\xef\xbf\x9b\xc8\x2d\xb3\xa5\xc3\xff\x9f\x3a\x23\x65\xb8\x72\xb4\x0d\xec\xcf\x8c\xea\xe9\x39\x91\x7b\x1e\x1e\xd0\x32\x25\x79\x3a\x59\xe9\xae\x29\xa1\x34\x21\xa4\x88\x05\xff\xe4\x41\xd3\x64\x9a\x44\x42\x07\xff\x64\xc8\xe3\xb4\xfd\x5b\x81\x05\xf2\xe2\x4c\x19\x77\x66\x43\xc2\x30\x12\xa0\xda\xe8\xae\xaa\xa3\x61\x82\xa9\x12\x5c\x2b\x4b\xa6\xe3\x04\x86\x3e\xdc\xfb\x5e\xb9\x7d\x90\xaa\x14\xbf\x9c\x1b\xfa\x99\x8f\x07\x30\xc8\x1c\xcd\x77\x2d\xbd\x43\x98\x79\xcd\x70\x0c\x0e\xc8\x10\x06\x7e\xc2\x02\xc7\x53\x44\x7e\x61\x06\x12\x0b\xfc\x13\xc7\x9c\xcf\xb1\x15\x14\x24\xbb\xd8\x7f\x59\xc8\xd2\x8b\x0e\xee\x7c\x0f\x5e\xb1\x86\x77\x4d\xa8\xd6\xf5\x93\x58\xd3\x23\x7d\x09\x91\x8f\xc7\xd4\x5d\xbf\xa7\x9b\xb5\x2b\x30\x76\x70\xee\x0b\x2f\x70\x8c\x18\xe3\x8a\x2d\x16\xe3\xca\x7b\xc2\x1f\xe1\x01\xd6\x73\x6c\x2e\x8b\xe4\x02\x7a\xb5\x8f\x79\x50\x58\x44\xd9\x2e\xb9\xae\x8d\x12\x7f\xe3\x2e\x3a\x39\xc5\xc0\xc1\x4f\x33\xd6\xb6\x42\x95\xe9\x55\x53\xa5\xbe\x90\x2c\x4c\xfe\xdd\xf2\x5e\x55\x38\x7d\x33\xfd\x29\xda\xce\xad\xbf\x3b\x1f\x57\x78\x0a\xf7\xa6\xbf\x2d\xdd\x88\x6c\xd7\xb6\x8d\x14\xe5\xdb\x05\x39\xb0\x86\xd5\x9c\xf9\x7b\x37\xf0\xd2\xb7\x35\x18\xde\x42\xc6\x53\x72\xfa\x1d\x00\x00\xff\xff\xd2\x6f\xc8\x6d\xf2\x05\x00\x00" func quorumcertificateAdminStart_votingCdcBytes() ([]byte, error) { return bindataRead( @@ -4860,11 +4880,11 @@ func quorumcertificateAdminStart_votingCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/admin/start_voting.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf5, 0x37, 0xb6, 0x46, 0xc9, 0xb7, 0x82, 0xbe, 0x4d, 0x32, 0x73, 0x50, 0x5, 0xcc, 0x34, 0x71, 0xdc, 0xa8, 0x85, 0xc1, 0x15, 0x8e, 0x4d, 0x2e, 0x95, 0x28, 0x22, 0x7c, 0x35, 0x6e, 0x5f, 0x44}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2a, 0x25, 0xc2, 0xfc, 0x62, 0x2e, 0xbc, 0xbe, 0xa8, 0x6, 0x15, 0x20, 0x12, 0xd0, 0x13, 0xe, 0x7, 0x1e, 0x52, 0x3, 0x82, 0xe1, 0xca, 0x1d, 0xcb, 0xfc, 0xda, 0x7b, 0x42, 0x3f, 0xa0, 0xfd}} return a, nil } -var _quorumcertificateAdminStop_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4e\xf3\x30\x10\x84\xef\x7e\x8a\x51\x0f\xbf\xd2\x4b\xfa\x9f\x2b\xa0\x8a\x52\x38\x93\x06\x71\x37\xce\x26\xb1\x94\x78\xcd\x66\x43\x91\xaa\xbe\x3b\x72\x22\x2a\x90\x98\xa3\x3d\xb3\x33\x9f\x1f\x23\x8b\xe2\x69\xe0\x73\x39\xcc\x93\x92\x54\x25\x5a\xe1\x11\xff\x3f\xab\xb2\x38\x1e\x4f\x8f\x75\x6d\xcc\x6e\x87\x17\x9a\x14\x2a\x36\x4c\xd6\xa9\xe7\x80\x96\x05\xda\x13\xaa\x12\x8e\x83\x8a\x75\x0a\x65\x4c\xca\x71\x79\xff\x60\xf5\xa1\x43\x24\xf1\xdc\x18\xf3\x33\x7a\x31\x06\x00\xa2\x50\xb4\x42\xd9\xe4\xbb\x40\xb2\x47\x31\x6b\x5f\x38\xc7\x73\xd0\x2d\x2e\x8b\x25\x69\x20\x85\x6d\x46\x1f\x4e\xd4\xe2\x1e\xab\x3b\x7f\x63\x11\x3e\xdf\xfd\xfb\x35\x3d\x2f\x92\xef\x21\x4b\x04\x7b\xfc\xf1\x55\x2b\x8b\xed\xe8\xd9\x6a\xbf\xbd\x15\x24\x1d\x0e\x88\x36\x78\x97\x6d\x4a\x9e\x87\x06\x81\x15\x6b\x05\x84\x5a\x12\x0a\x8e\x12\xde\xbb\x5b\xb7\x6c\xb6\xe6\x96\xff\x1e\x97\x27\xf6\xd7\x05\x3b\x5b\xaf\x5f\xcd\xf5\x2b\x00\x00\xff\xff\x4d\x7d\x7c\x39\x62\x01\x00\x00" +var _quorumcertificateAdminStop_votingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x4f\xc3\x30\x14\x84\x77\xff\x8a\x53\x86\x2a\x59\xd2\xbd\x02\xaa\x12\x89\x99\x02\xea\x6e\x9c\x97\xc4\x52\xe2\x67\x9e\x5f\xe8\x50\xf5\xbf\x23\x27\xa2\xa2\x12\x37\x9e\xfd\xf9\xee\xec\xa7\xc8\xa2\x78\x19\xf9\xdc\x8c\x73\x52\x92\x63\x83\x4e\x78\x42\x71\xe7\x15\xc6\x6c\xb7\xf8\xa0\xa4\x50\xb1\x21\x59\xa7\x9e\x03\x3a\x16\xe8\x40\x38\x36\x70\x1c\x54\xac\x53\x28\x23\x29\xc7\xc5\xff\x66\xf5\xa1\x47\x24\xf1\xdc\x1a\xf3\x17\xbd\x18\x03\x00\x51\x28\x5a\xa1\x32\xf9\x3e\x90\xec\x60\x67\x1d\xca\x67\x16\xe1\xf3\xc9\x8e\x33\x55\xd8\x1c\x9c\xe3\x39\x68\x85\xcb\x42\x64\x8d\xa4\xb0\xed\xe4\xc3\x1b\x75\x78\xc4\x0a\xd7\x49\x59\x6c\x4f\xf5\xe7\x82\x3f\x6c\xee\x16\xd4\x87\x7c\xff\xa9\xcc\xe3\x76\xf8\xe7\xe8\x7d\xa5\x5f\xad\x0e\xd5\x2d\x28\x6b\xbf\x47\xb4\xc1\xbb\xb2\x68\x78\x1e\x5b\x04\x56\xac\x11\x10\xea\x48\x28\x38\xca\xab\xbf\xdc\xda\xa9\xa8\xcc\x8d\xff\x2d\x99\xbb\xc5\xd3\xf2\x1b\xe5\xfa\xfa\xd5\x5c\x7f\x02\x00\x00\xff\xff\x0d\x6e\x1d\x9b\x7d\x01\x00\x00" func quorumcertificateAdminStop_votingCdcBytes() ([]byte, error) { return bindataRead( @@ -4880,11 +4900,11 @@ func quorumcertificateAdminStop_votingCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/admin/stop_voting.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa5, 0xa0, 0xd9, 0x1d, 0x55, 0xa2, 0xfc, 0xf1, 0x23, 0x3d, 0xa6, 0xbd, 0xe5, 0xdd, 0xa2, 0x17, 0xc9, 0xeb, 0x3f, 0x53, 0xe2, 0x30, 0x9c, 0x47, 0x65, 0x66, 0xad, 0xd9, 0x55, 0xca, 0x9b, 0x79}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x77, 0xe8, 0x1e, 0x53, 0x15, 0x63, 0xab, 0xf7, 0x58, 0xcf, 0x72, 0xc3, 0x9c, 0x7f, 0xb1, 0x1c, 0x0, 0x14, 0xa6, 0x2f, 0x3e, 0xad, 0x97, 0xe2, 0x6d, 0xfa, 0xe9, 0x25, 0xc2, 0xec, 0xfb}} return a, nil } -var _quorumcertificateCreate_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x54\x4d\x6f\xdb\x30\x0c\xbd\xe7\x57\x70\x3d\x0c\x0e\xd0\x26\x3b\x07\xed\x8a\xc0\xdd\x86\x61\x87\x35\x4d\xb1\x9d\x15\x99\xb6\xb5\x2a\xa2\x47\xd1\xc9\x82\xa1\xff\x7d\xa0\xe4\x3a\x31\x26\x20\x88\x3e\xc8\x47\xbe\xc7\x07\xbb\x7d\x47\x2c\xf0\xd9\xd3\xb1\xf4\x7d\x14\xe4\x4d\x09\x35\xd3\x1e\x3e\xfc\xd9\x94\xeb\x87\x87\xa7\x4f\xdb\xed\x6c\xb6\x5c\xc2\x33\x46\x81\x67\x36\x21\x1a\x2b\x8e\x02\xd4\xc4\x60\x20\x50\x85\x20\x04\x8c\xbf\x7b\x8d\x30\xb0\x29\xe1\x07\x09\x32\x7c\xdf\xfd\x42\x2b\x19\x4d\x5a\x04\x4b\x41\xd8\x58\x51\xb4\x9f\xce\x7b\xd8\x21\xf4\x5d\x65\x04\x2b\x45\xe8\x23\xa6\x30\xec\xc8\xb6\x63\x30\x1c\x5b\x0c\x20\xad\x11\x70\x11\x2c\xed\x3b\x8f\x82\x55\xea\xa8\x45\x38\xa4\x4a\x94\x2b\x51\xf0\x27\x08\x88\x55\x54\xbc\x1d\x82\x65\x4c\xe8\x14\x2c\x82\x09\x95\x42\x1c\x8c\x77\x55\x6a\x1e\x0f\xc8\x27\xa8\x7b\xe9\x79\xa8\xaa\xa8\xc7\x16\x39\x37\x92\xa8\xb9\x08\x66\xc8\x89\x62\x5e\xb0\x4a\xd7\x49\x91\x47\xc3\x66\x8f\x82\x1c\x57\x7a\xd4\x9f\xa9\xf6\x2e\xac\xab\x8a\x31\xc6\x55\x02\x31\xf9\x00\x54\xa7\xe3\xa6\xcc\x31\x97\x92\xe9\x7d\x56\x4c\xa5\x52\x18\x2d\xf1\xf5\x21\x03\xb8\xea\x2d\x37\x4b\xad\x4a\x24\x60\x6b\xa9\x0f\x49\x15\xea\x90\x8d\xb8\xd0\x68\xae\x76\xe9\x42\xf3\x0d\x4f\xab\xa4\xd0\x70\x86\x17\x3c\x25\xd6\x79\x12\xde\xa3\x15\xe2\x81\x8c\x9c\xc7\x5a\x4c\x29\x0c\x9b\xeb\xb1\xa5\xad\xb0\x0b\xcd\xf5\xa4\x4c\xbe\x9b\xc3\xdf\xd9\x0c\x00\xa0\x63\xec\x0c\x63\x11\x5d\x13\x90\x57\xb0\xee\xa5\x5d\xe7\x6e\xc7\x18\x5d\xcb\x25\x7c\xc1\x81\x4c\xd2\x84\xb1\x46\x46\x9d\xd5\xe8\x99\xfc\x30\x70\x1d\x33\x3d\xca\xf0\x72\x07\x0d\xca\x00\x3e\x69\x7d\xfe\x7f\xf0\x13\xd6\x70\x97\xb7\x8b\x06\xa5\x34\x9d\xd9\x39\xef\xe4\x74\xfb\x7e\xe2\xff\xc5\x5a\x43\x3e\x16\xcb\xae\xdf\x79\x67\x97\xc9\x63\xa5\x5a\x89\x78\xfe\x6e\xc4\xd5\xb5\xd8\x11\x33\x1d\x8b\x39\xdc\xdf\x43\x67\x82\xb3\xc5\x55\x49\xbd\x57\x97\x08\xe4\x47\x30\x17\xc4\x84\xce\xb4\xae\xe6\x13\x2d\x52\x05\x54\xb7\x5d\x7a\x5a\x5d\x1b\xcd\x01\xc1\x89\x26\x47\x21\x36\x0d\x4e\xc8\xe5\xf8\xdb\x9b\x91\xe5\x22\xfb\x3e\x79\xaa\x78\x1b\x5c\xfe\x9f\x0e\xee\xbc\xbf\x68\x25\x8f\x6d\xa1\x45\x8b\xdb\x9b\x04\x7e\x0d\x42\xab\xe9\x47\x62\x91\xd0\xb7\xb9\x9d\x47\x23\x6d\x16\xfc\x75\xf6\xfa\x2f\x00\x00\xff\xff\xd3\x11\xd1\x52\x53\x04\x00\x00" +var _quorumcertificateCreate_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x54\xc1\x6e\xdb\x30\x0c\xbd\xe7\x2b\x88\x1c\x0a\x07\x68\x9d\x7b\xd0\xae\x28\x32\x6c\x18\x76\x58\xbb\x16\xdd\x99\x91\x99\x58\xab\x22\x7a\x14\x9d\x20\x18\xfa\xef\x03\x25\xd7\x89\x31\x03\x41\x24\x9a\x7c\xe4\x7b\x7c\x89\xdf\x77\x2c\x0a\x5f\x02\x1f\xd7\xa1\x4f\x4a\xf2\xb4\x86\xad\xf0\x1e\xe6\x93\xd8\x7c\x36\x5b\x2e\xe1\x85\x92\xc2\x8b\x60\x4c\xe8\xd4\x73\x84\x2d\x0b\x20\x44\x6e\x08\x94\x41\xe8\x4f\x6f\x19\x08\x4f\x6b\x78\x65\x25\x81\x1f\x9b\xdf\xe4\xb4\x20\x6a\x4b\xe0\x38\xaa\xa0\x53\x43\xfb\xe5\x43\x80\x0d\x41\xdf\x35\xa8\xd4\x18\x42\x9f\x28\xa7\x51\xc7\xae\x1d\x93\xe1\xd8\x52\x04\x6d\x51\xc1\x27\x70\xbc\xef\x02\x29\x35\x79\xa2\x96\xe0\x90\x3b\x71\xe9\xc4\x31\x9c\x20\x12\x35\xc9\xf0\x36\x04\x4e\x28\xa3\x73\x74\x04\x18\x1b\x83\x38\x60\xf0\x4d\x1e\x9e\x0e\x24\x27\xd8\xf6\xda\xcb\xd0\xd5\x50\x8f\x2d\x49\x19\x24\x53\xf3\x09\x70\xa8\x49\x8a\x6f\xd4\xe4\x70\x56\xe4\x11\x05\xf7\xa4\x24\x69\x65\x57\xfb\x60\xb3\xf7\xf1\xa1\x69\x84\x52\x5a\x65\x10\x2c\x17\xe0\x6d\xbe\x3e\xad\x4b\xce\xa5\x64\x16\x2f\x8a\x99\x54\x06\x63\x2d\xbe\x7d\x2e\x00\xbe\xf9\xa8\x2d\x52\x9b\x12\x19\xd8\x39\xee\x63\x56\x85\x3b\x12\x54\x1f\x77\x56\x6b\x53\xfa\xb8\xfb\x4e\xa7\x55\x56\x68\xb8\xc3\x1b\x9d\x32\xeb\xb2\x89\x10\xc8\x29\xcb\x40\x46\xcf\x6b\xad\xa6\x14\x86\xc3\xf5\x38\xd2\xb3\x8a\x8f\xbb\xeb\x49\x9b\x12\x5b\xc0\xdf\xd9\x0c\x00\xa0\x13\xea\x50\xa8\x4a\x7e\x17\x49\x56\x80\xbd\xb6\xd5\x33\x1e\xe8\x15\x43\x4f\x0b\xb8\x7a\x28\xa3\x8f\x05\xf6\x2c\x97\xf0\x95\x06\x66\x59\x20\xa1\x2d\x09\xd9\xe2\x46\x03\x95\x17\x03\xf1\xb1\x32\x90\x0e\x6f\xee\x60\x47\x3a\x80\x4f\x78\x2c\xfe\x4f\xfe\x49\x5b\xb8\x2b\xc7\xda\x61\x87\x1b\x1f\xbc\x7a\x4a\xf5\x86\x45\xf8\x78\x7b\x35\xf9\x09\xd4\x0f\x96\xf8\xa9\x5a\x76\xfd\x26\x78\xb7\xcc\xb6\x5b\x9b\xbb\x58\xce\xe0\xf6\xdc\xdf\x43\x87\xd1\xbb\x6a\xbe\xe6\x3e\x98\x5b\x14\x0a\x24\xe0\x05\x27\xe5\x33\xa3\xf9\x62\x22\x43\x86\x25\x73\xdd\xa5\xb7\xcd\xbd\x09\x0f\x04\x5e\xad\x38\x29\x0b\xee\x68\xc2\xab\xe4\xdf\xde\x8c\x04\xeb\xe2\xff\xec\xad\xea\x63\x81\xe5\x7b\xba\xc0\xf3\xf9\x62\x94\xb2\xbe\x7a\xe8\x54\x5b\xf3\xea\xf6\x26\x37\xb9\x06\xe5\xd5\xf4\x8f\xa3\xce\x5d\x9e\x4b\xf2\x23\x6a\x5b\x64\x79\x9f\xbd\xff\x0b\x00\x00\xff\xff\x8f\x15\x72\x2c\x67\x04\x00\x00" func quorumcertificateCreate_voterCdcBytes() ([]byte, error) { return bindataRead( @@ -4900,11 +4920,11 @@ func quorumcertificateCreate_voterCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/create_voter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc1, 0xaa, 0x8c, 0x53, 0x14, 0x61, 0xae, 0x77, 0x43, 0x9f, 0x9b, 0xf7, 0x46, 0x21, 0xfd, 0x67, 0xd2, 0x64, 0xf8, 0xc6, 0x4a, 0x8a, 0x4e, 0x63, 0x7f, 0xd7, 0xfe, 0x20, 0xb2, 0x2b, 0x8e, 0x28}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xad, 0x49, 0x65, 0x97, 0x80, 0x97, 0x22, 0x49, 0xa2, 0xf8, 0x29, 0x1b, 0x8, 0xa4, 0xf, 0x7f, 0xbe, 0xec, 0x14, 0x9f, 0x6a, 0x19, 0xfc, 0x68, 0x8a, 0xca, 0xa2, 0xab, 0x45, 0x42, 0x14, 0xcd}} return a, nil } -var _quorumcertificateScriptsGenerate_quorum_certificateCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\x31\x4b\x03\x41\x10\x46\xfb\xfd\x15\x1f\x69\xbc\x6b\x12\x6d\x2c\x02\x12\x64\xa3\x92\xf2\x0c\x56\x62\xb1\x5e\xe6\xe2\xc2\xed\xec\x39\x3b\x83\x01\xf1\xbf\x8b\xc9\xc5\x68\xb6\x5b\x78\x6f\xde\x4c\x4c\x43\x16\xc5\x7d\x9f\x3f\x7c\x6f\x45\x49\x1a\x8f\x4e\x72\xc2\xe5\xae\xf1\xb7\xcb\xe5\xe3\xdd\x7a\xed\xdc\x6c\x86\x07\xd2\x02\x7d\x23\x14\x0d\x6a\x05\xb9\x43\x40\x7b\x70\x2e\x0a\x1a\x8f\x2d\x31\x49\xd0\x98\xd9\xb9\xc1\x5e\xd1\x19\x23\x85\xc8\xd5\x48\xad\x78\x43\xbb\x39\x9e\x56\xac\x57\xd7\xf5\xfc\x7f\x74\x7a\xca\x7f\x3a\x07\x00\x3d\xe9\x71\x7e\xc1\xcd\x19\xbd\x25\x1d\x3f\xa5\xaa\x0f\xbc\x90\x9a\xf0\xaf\xf2\xfc\xb7\xfa\x32\x1d\x97\xa3\xc6\xb2\x58\xf2\x24\x1a\xbb\xd8\x06\xa5\xaa\xde\xdb\x3f\x6f\xb1\xc0\x10\x38\xb6\xd5\xc4\x67\xeb\x37\xe0\xac\xc7\xa3\x08\xef\x7b\x11\xed\xc9\x9c\xd4\xce\x7d\x7d\x07\x00\x00\xff\xff\xc6\x91\xba\xec\x41\x01\x00\x00" +var _quorumcertificateScriptsGenerate_quorum_certificateCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\x41\x4b\x03\x31\x10\x85\xef\xf9\x15\x8f\xbd\x98\x5c\x5a\xbc\x78\x28\x48\x0f\x01\xa5\xc7\x3d\x78\x12\x0f\x21\x9d\xad\x81\x64\x52\x33\x13\x14\xc4\xff\x2e\xb6\x5b\xeb\x3a\xb7\x19\xbe\x8f\xf7\x26\x95\x63\x6d\x8a\x87\x5c\xdf\x7d\xee\xa2\xd4\x46\x8f\xa9\xd5\x82\x61\x71\x1b\x8c\x59\xaf\xf1\x48\x2a\xd0\x57\x82\x68\xd0\x2e\xa8\x13\x02\xe2\x99\xb9\x11\x8c\x1e\x07\x62\x6a\x41\x53\x65\x63\x42\x8c\x24\x62\x43\xce\x0e\x53\x67\x94\x90\xd8\xce\xf4\x8e\xf7\xf4\xb1\xc1\xd3\x8e\xf5\xf6\xce\x6d\x96\x05\x56\xd7\x2a\x9f\xc6\x00\x40\x26\xbd\xe4\x08\xee\xff\xd1\x07\xd2\x79\x11\xeb\xce\x7c\x23\xed\x8d\x7f\x95\xe7\xbf\xa9\x2f\xab\xb9\x24\x8d\xbd\xb6\x5e\x3c\x35\x4d\x53\x8a\x41\xc9\xba\x93\xfd\x33\xdb\x2d\x8e\x81\x53\xb4\x83\xaf\x3d\xef\xc1\x55\x2f\xcf\x11\xde\x4e\x22\xe2\xd5\x1c\x9c\x31\x5f\xdf\x01\x00\x00\xff\xff\x81\x01\xe7\xc1\x4d\x01\x00\x00" func quorumcertificateScriptsGenerate_quorum_certificateCdcBytes() ([]byte, error) { return bindataRead( @@ -4920,11 +4940,11 @@ func quorumcertificateScriptsGenerate_quorum_certificateCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/generate_quorum_certificate.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe6, 0x66, 0xdb, 0xc8, 0xb6, 0x96, 0xb4, 0x7e, 0x86, 0xc, 0x90, 0x5a, 0xca, 0xd2, 0x3a, 0x4d, 0x1e, 0xfc, 0x36, 0x84, 0x76, 0x62, 0xb4, 0x4c, 0x96, 0xe0, 0x89, 0xbe, 0x4d, 0xb8, 0x59, 0x8b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0x7e, 0xec, 0xe8, 0x58, 0x2b, 0x59, 0xe0, 0xfa, 0xc3, 0x3, 0xd8, 0xb2, 0xbd, 0xf7, 0xe1, 0xda, 0xa1, 0x9b, 0x9c, 0x12, 0x5, 0x3d, 0xdd, 0x99, 0x39, 0x29, 0x37, 0x8c, 0xee, 0x72, 0x48}} return a, nil } -var _quorumcertificateScriptsGet_clusterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x30\xa8\x08\x74\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x28\xf4\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\xb4\x42\x35\x43\x0f\xca\x52\xa8\xe6\xe2\x52\x50\x50\x50\xc8\x49\x2d\x51\x80\xea\x2b\x56\xb0\x45\x53\x9b\x9e\x5a\x02\xe5\x14\x6b\x68\x42\xd4\x17\xa5\x96\x94\x16\xe5\xc1\xb5\x44\x23\xdb\x19\xcb\xc5\x55\x0b\x08\x00\x00\xff\xff\x6c\xe0\xad\x73\xb8\x00\x00\x00" +var _quorumcertificateScriptsGet_clusterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x50\x42\x11\x53\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x28\xf0\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\xb4\x42\x35\x4f\x0f\xca\x52\xa8\xe6\xe2\x52\x50\x50\x50\xc8\x49\x2d\x51\x80\xea\x2b\x56\xb0\x45\x53\x9b\x9e\x5a\x02\xe5\x14\x6b\x68\x42\xd4\x17\xa5\x96\x94\x16\xe5\xc1\xb5\x44\x23\xdb\x19\xcb\xc5\x55\x0b\x08\x00\x00\xff\xff\xf7\xb0\x6f\x1a\xc4\x00\x00\x00" func quorumcertificateScriptsGet_clusterCdcBytes() ([]byte, error) { return bindataRead( @@ -4940,11 +4960,11 @@ func quorumcertificateScriptsGet_clusterCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x18, 0x9a, 0x6f, 0x7, 0xc4, 0x89, 0xbf, 0x2, 0xac, 0xdd, 0x29, 0x29, 0x26, 0x43, 0x97, 0x38, 0xdb, 0x4a, 0x10, 0x1b, 0x7a, 0x37, 0x77, 0xb6, 0x72, 0xac, 0x95, 0x27, 0x7d, 0x7a, 0xf7, 0xe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0x25, 0x34, 0x4, 0xee, 0x6c, 0x4f, 0xfe, 0x9f, 0x3c, 0x45, 0xb8, 0x36, 0x94, 0x90, 0xe, 0xd1, 0xe0, 0x85, 0x2c, 0x17, 0x23, 0xb8, 0x1d, 0xda, 0x3a, 0xc0, 0x29, 0xde, 0x80, 0x86, 0x3d}} return a, nil } -var _quorumcertificateScriptsGet_cluster_completeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xb1\x4e\xc3\x40\x10\x44\xfb\xfd\x8a\xa1\xc2\x6e\x12\x68\x28\x22\xa5\x80\x0b\xa0\x94\x26\xa2\x42\x14\x07\xac\xc3\x49\x77\xbb\xd6\xed\x9e\x88\x84\xf8\x77\x0a\x1b\x04\xe5\x48\xef\xcd\x4c\x2a\x93\x56\xc7\x5d\xd6\x8f\x90\x9b\x39\xd7\x21\x60\xac\x5a\x70\x71\x1a\xc2\xf5\x6e\xf7\x70\x7b\x38\x10\xad\xd7\xb8\x67\x37\xf8\x3b\xc3\x3c\x7a\x33\xe8\x88\x88\xd7\xd9\x39\x37\x0c\x01\x47\x16\xae\xd1\x93\x0a\xd1\xd4\x5e\x30\x36\x41\x89\x49\xba\x85\xda\xcb\x1b\x9f\x36\x78\xdc\x8b\x5f\x5e\xf5\x1b\xdc\xa8\x66\x7c\x12\x01\x40\x66\xff\x29\x33\x6c\xff\xff\x59\x1d\xd9\x97\x60\x5d\x3f\xf3\x95\xbd\x55\xf9\x55\x9e\xfe\x4e\x3c\xaf\x92\x05\x2d\x53\x66\xe7\xae\xc7\xd9\x16\x92\x32\xd1\xd7\x77\x00\x00\x00\xff\xff\xa8\x61\x29\x9e\xec\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_completeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\x3f\x4b\x43\x41\x10\xc4\xfb\xfd\x14\x63\x1a\xdf\x35\x09\x36\x16\x81\x34\x1e\x28\x29\x53\x58\x89\xc5\xf1\xdc\x17\x0f\xf6\x76\xc3\xed\x1e\x0a\xe2\x77\xb7\x48\x14\x53\xce\xf0\x9b\x3f\xb5\x9d\xac\x07\x1e\xc5\x3e\xb2\x0c\x0f\xee\x87\x8c\xa5\x5b\xc3\xea\xca\x5b\x11\x6d\x36\x78\xe2\x70\xc4\x3b\xc3\xa3\xc4\x70\xd8\x82\x82\xf9\xcc\xdc\x3a\x0e\x19\x47\x56\xee\x25\xaa\x29\x51\x99\x67\x76\x9f\x8a\x48\xc2\x32\x14\xad\x54\x9d\x2e\xf4\x5e\xdf\xf8\x73\x8b\xe7\xbd\xc6\xdd\x7d\xda\xe2\xc1\x4c\xf0\x45\x04\x00\xc2\xf1\x5b\xea\xd8\x5d\x7f\x5b\x1f\x39\x2e\xc2\xa7\x74\xe6\x3b\xc7\xe8\xfa\x17\x79\xf9\x3f\xf1\xba\xae\x9e\xad\x9d\x84\x83\xa7\x84\x9b\x1d\xb4\x0a\xd1\xf7\x4f\x00\x00\x00\xff\xff\xf4\x49\xb4\xa1\xf8\x00\x00\x00" func quorumcertificateScriptsGet_cluster_completeCdcBytes() ([]byte, error) { return bindataRead( @@ -4960,11 +4980,11 @@ func quorumcertificateScriptsGet_cluster_completeCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_complete.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0xac, 0xe1, 0x2a, 0x34, 0xa3, 0x58, 0x0, 0xf9, 0xf8, 0xe3, 0xd6, 0xf7, 0x15, 0xf8, 0x4b, 0xa9, 0xd5, 0xf2, 0xf2, 0x57, 0x95, 0x98, 0xf1, 0xfa, 0x53, 0x4c, 0x36, 0x38, 0xa9, 0xa5, 0xa4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x3, 0xb, 0xcc, 0xb6, 0x3, 0x6, 0x7, 0xb7, 0xb7, 0x52, 0x1, 0xe3, 0xa5, 0x66, 0x48, 0x6e, 0xc6, 0xb9, 0x38, 0xdc, 0x35, 0x47, 0x51, 0x62, 0x9c, 0x7b, 0x6b, 0xc4, 0x86, 0xff, 0x13}} return a, nil } -var _quorumcertificateScriptsGet_cluster_node_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8d\x41\xcb\x82\x40\x14\x45\xf7\xf3\x2b\xee\x52\x37\xf2\x7d\x10\x2e\x84\x16\xa1\x05\x2e\x4d\xa2\x45\xb4\xa8\x7c\xda\x80\xbe\x91\x99\x37\x24\x88\xff\xbd\xc5\x48\xd4\xf2\x5e\xce\xe1\xe8\x61\x34\x56\x70\xe8\xcd\x2b\xef\xbd\x13\xb2\x55\x8e\xd6\x9a\x01\x7f\x53\x95\xef\x8a\xe2\xb8\xaf\x6b\xa5\x46\x7f\x47\xeb\x19\xc3\x4d\x73\xf4\x08\x60\xc9\x0d\x4d\x19\x4e\x25\xcb\x7f\x1a\x67\x98\x6b\xb1\x9a\xbb\xf0\xa4\x9b\x05\xb3\x52\x00\xd0\x93\x60\x55\x1c\xb6\xbf\xa9\xa4\x23\x59\x87\x8b\xe2\xc0\x5b\x12\x6f\xf9\xa3\x5c\xbe\x73\xd7\x84\x4d\x43\x67\xd2\xdd\x53\x9c\x52\xcb\x3b\x00\x00\xff\xff\x3e\x1f\x66\x7e\xbf\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_node_weightsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8d\xb1\xaa\x83\x40\x10\x45\xfb\xfd\x8a\x8b\x95\x36\xc2\x83\x87\x85\x90\x4a\x08\x58\x86\x10\x52\x84\x14\xa2\xa3\x59\x58\x67\xc3\xcc\x48\x02\xe2\xbf\xa7\x50\x42\x2c\xef\xe5\x1c\x8e\x1f\x9f\x51\x0c\xc7\x10\x5f\x55\x98\xd4\x48\x4e\x15\x7a\x89\x23\x92\xdd\x97\x38\xd7\xb4\x2d\xa9\xa6\x4d\x08\x19\xfa\x89\x31\x36\x9e\xd3\x76\x05\x6a\xee\xe8\x5d\xe2\x52\xb3\xfd\x15\x59\x89\xf9\x6c\xe2\x79\x58\x9f\xe2\x7f\xc1\xec\x1c\x00\x04\x32\x6c\x8a\xe2\xb0\xcf\xe6\x03\xd9\x36\x34\xcd\x56\x5e\xc8\x26\xe1\xaf\x72\xfb\xcd\xdd\x73\x8e\x1d\x5d\xc9\x0f\x0f\x53\xe7\x96\x4f\x00\x00\x00\xff\xff\x3d\x36\xdc\x4a\xcb\x00\x00\x00" func quorumcertificateScriptsGet_cluster_node_weightsCdcBytes() ([]byte, error) { return bindataRead( @@ -4980,11 +5000,11 @@ func quorumcertificateScriptsGet_cluster_node_weightsCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_node_weights.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x27, 0x8d, 0x33, 0xdc, 0x7a, 0x3e, 0xbe, 0xf7, 0xb5, 0x79, 0xf1, 0x0, 0xc4, 0xb2, 0xbb, 0x1e, 0x27, 0x9d, 0xff, 0xb8, 0xfc, 0x54, 0x0, 0x52, 0xc0, 0xe8, 0x57, 0x77, 0x5b, 0xc8, 0x16, 0xc3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x29, 0x1d, 0x52, 0x4, 0x6b, 0x83, 0x52, 0x76, 0x40, 0x43, 0xaf, 0xa, 0xe2, 0xe4, 0xd8, 0xcb, 0x79, 0x13, 0xea, 0xc6, 0xca, 0x2a, 0x11, 0x64, 0x1c, 0x9e, 0x29, 0xfc, 0x74, 0x8, 0xeb, 0x69}} return a, nil } -var _quorumcertificateScriptsGet_cluster_vote_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x30\xa8\x08\x74\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x28\xf4\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\x84\x30\xcc\x4c\x14\xaa\xb9\xb8\x14\x14\x14\x14\x72\x52\x4b\x14\xa0\x0a\x8b\x15\x6c\x51\x2d\xd0\x4b\x4f\x2d\x81\x72\x8a\x35\x34\x21\xea\x8b\x52\x4b\x4a\x8b\xf2\xe0\x5a\xa2\x91\x2d\x89\xd5\x2b\xcb\x2f\x49\x0d\xc9\x28\x4a\x2d\xce\xc8\xcf\x49\x01\x69\xa9\x05\x04\x00\x00\xff\xff\x7f\xd1\x70\x38\xb9\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_vote_thresholdCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x50\x42\x11\x53\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x28\xf0\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\x84\x30\xcc\x4c\x14\xaa\xb9\xb8\x14\x14\x14\x14\x72\x52\x4b\x14\xa0\x0a\x8b\x15\x6c\x51\x2d\xd3\x4b\x4f\x2d\x81\x72\x8a\x35\x34\x21\xea\x8b\x52\x4b\x4a\x8b\xf2\xe0\x5a\xa2\x91\x2d\x89\xd5\x2b\xcb\x2f\x49\x0d\xc9\x28\x4a\x2d\xce\xc8\xcf\x49\x01\x69\xa9\x05\x04\x00\x00\xff\xff\xe3\x59\xc4\x5f\xc5\x00\x00\x00" func quorumcertificateScriptsGet_cluster_vote_thresholdCdcBytes() ([]byte, error) { return bindataRead( @@ -5000,11 +5020,11 @@ func quorumcertificateScriptsGet_cluster_vote_thresholdCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_vote_threshold.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0xc1, 0x7c, 0x17, 0x83, 0x18, 0x3b, 0xc, 0xe4, 0xc3, 0xdd, 0xae, 0xd5, 0x42, 0xcc, 0x41, 0x67, 0x72, 0xac, 0x6e, 0x80, 0x88, 0xb4, 0x22, 0xf, 0x39, 0x74, 0xda, 0x7e, 0xe1, 0xd6, 0x11}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x90, 0x39, 0xfc, 0xde, 0xe2, 0xb0, 0x6e, 0xbb, 0x43, 0x4, 0x67, 0x78, 0x3e, 0x0, 0x52, 0x62, 0x27, 0xd5, 0x72, 0x9a, 0xcb, 0xd8, 0x3c, 0x8e, 0x11, 0xc6, 0xdb, 0x82, 0x38, 0x3f, 0xb5, 0xd1}} return a, nil } -var _quorumcertificateScriptsGet_cluster_votesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\x31\x4f\x84\x40\x10\x46\xfb\xf9\x15\x5f\x79\xd7\x70\xda\x58\x5c\x62\x61\x38\x4d\x28\x81\x68\x43\x28\x56\x98\xd5\x4d\x60\x97\xcc\xce\x2a\xc6\xf8\xdf\x0d\x82\x46\xca\x99\xcc\xbc\xf7\xdc\x38\x05\x51\x3c\x0c\xe1\x3d\x1f\x52\x54\x96\x32\x87\x95\x30\xe2\x6a\x2e\xf3\xbb\xcb\xa5\xba\xaf\x6b\xa2\xd3\x09\x15\x6b\x12\x1f\x61\x3c\x8c\x88\xf9\x40\xb0\x78\x0a\xca\x11\x36\x08\xf4\x95\x11\x27\xee\x9c\x75\xdc\xa3\x5b\x51\x44\x53\x7a\x86\x4d\x1e\xa3\x71\xfe\xb0\x6d\x0b\xdf\xf3\x7c\xc6\x63\xe1\xf5\xfa\xe6\x78\x46\xb3\x93\x67\x0b\xb3\xc5\x27\x11\x00\x0c\xac\xbf\xb0\x88\xdb\x7d\x66\xf6\xc2\xba\x0d\xf1\x70\x5c\xef\xe5\x27\xf2\xef\xa5\xf9\xaf\x6c\xb3\xb7\x25\x97\xe8\xeb\x3b\x00\x00\xff\xff\x98\x1f\xda\xd8\xf5\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_votesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xbd\x4a\xc5\x40\x10\x85\xfb\x79\x8a\xc3\xad\x92\x26\x17\x1b\x8b\x0b\x56\x01\x21\xa5\x82\x36\x21\xc5\xb2\x99\xd5\x85\xcd\x6e\x98\x99\xf8\x83\xf8\xee\x12\x13\xe5\xa6\x9c\x9f\x73\xbe\x2f\x4e\x73\x11\xc3\x7d\x2a\xef\x6d\x5a\xd4\x58\x1e\x5a\x04\x29\x13\x4e\x87\xdd\x89\xe8\x7c\xc6\x23\xdb\x22\x59\xe1\x32\x9c\x88\xfb\x44\x09\x78\x2e\xc6\x8a\x50\x04\xf6\xca\xd0\x99\x7d\x0c\x91\x47\xf8\x2d\x4a\xe4\xbc\x67\xd5\xca\xa5\x54\x23\x2c\x19\x93\x8b\xb9\xda\xaf\x5d\x1e\xf9\xe3\x82\xa7\x2e\xdb\xcd\x6d\x7d\x41\x7f\x80\x36\x6b\xf7\x80\x2f\x22\x00\x48\x6c\x7f\xa5\x8a\xbb\xa3\x72\xf3\xc2\xb6\x0f\x5a\xd5\xdb\xbf\xfc\xca\xfe\x47\xfa\x6b\xe4\xd0\xbc\xad\xda\x44\xdf\x3f\x01\x00\x00\xff\xff\xc7\xaa\x11\x90\x01\x01\x00\x00" func quorumcertificateScriptsGet_cluster_votesCdcBytes() ([]byte, error) { return bindataRead( @@ -5020,11 +5040,11 @@ func quorumcertificateScriptsGet_cluster_votesCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_votes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe3, 0x7b, 0x4e, 0x81, 0xc6, 0xce, 0x66, 0x20, 0x4d, 0xa4, 0x47, 0x99, 0x55, 0xd7, 0xa9, 0x6f, 0x27, 0x7c, 0x1e, 0x2b, 0xb4, 0xac, 0x53, 0x2b, 0x7e, 0xfa, 0xf7, 0x8b, 0x0, 0xc2, 0x22, 0x32}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0x5d, 0xff, 0x6e, 0xd7, 0xf9, 0x68, 0xe, 0xcb, 0x93, 0xff, 0xd6, 0xd2, 0xad, 0xc1, 0xc5, 0xa6, 0x42, 0x74, 0x84, 0x25, 0xb9, 0x41, 0x5, 0x9b, 0x72, 0x51, 0x1e, 0x7d, 0xec, 0x22, 0xbd}} return a, nil } -var _quorumcertificateScriptsGet_cluster_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x30\xa8\x08\x74\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\x48\x86\x28\xf4\xcc\x4b\x49\xad\xb0\x52\x08\xf5\xcc\x2b\x31\x34\xd3\x84\x30\xcc\x4c\x14\xaa\xb9\xb8\x14\x14\x14\x14\x72\x52\x4b\x14\xa0\x0a\x8b\x15\x6c\x51\x2d\xd0\x4b\x4f\x2d\x81\x72\x8a\x35\x34\x21\xea\x8b\x52\x4b\x4a\x8b\xf2\xe0\x5a\xa2\x91\x2d\x89\xd5\x2b\xc9\x2f\x49\xcc\x09\x4f\xcd\x4c\xcf\x28\xe1\xe2\xaa\x05\x04\x00\x00\xff\xff\xe3\x8b\x1a\x8c\xb5\x00\x00\x00" +var _quorumcertificateScriptsGet_cluster_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8d\x31\x0b\xc2\x30\x14\x84\xf7\xf7\x2b\x8e\x4e\xed\x52\x10\xa4\x83\xe0\x54\x10\x3a\x3a\x88\x83\x38\x84\xfa\x5a\x03\x2f\x89\x24\x2f\x28\x88\xff\xdd\x21\x45\xec\x76\x77\x7c\xc7\x67\xdd\x23\x44\xc5\x41\xc2\xb3\x97\x9c\x94\xe3\xb1\xc7\x14\x83\x43\xb5\xda\x2a\x22\x33\x8e\x9c\x52\x6d\x44\x1a\x4c\xd9\xc3\x19\xeb\xeb\xb1\x00\x83\xbf\xf1\x6b\x87\xd3\xe0\x75\xd3\x35\x25\x74\x5b\xbc\x89\x00\x40\x58\xb1\x80\x09\xfb\xb5\xac\x9d\x59\x97\x92\xea\xa6\xf0\x91\x35\x47\xff\xbb\x5c\xfe\x25\xd7\x56\x83\x1a\x39\xb3\x9d\xef\x4a\xf4\xf9\x06\x00\x00\xff\xff\xf1\x3a\x40\x1a\xc1\x00\x00\x00" func quorumcertificateScriptsGet_cluster_weightCdcBytes() ([]byte, error) { return bindataRead( @@ -5040,11 +5060,11 @@ func quorumcertificateScriptsGet_cluster_weightCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_cluster_weight.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x77, 0xf7, 0x57, 0xa2, 0x71, 0x66, 0x1c, 0x23, 0x5b, 0xb0, 0xd8, 0xa4, 0x24, 0xf0, 0x4b, 0xc1, 0x4, 0x3a, 0x17, 0xe8, 0x8f, 0xf3, 0xe4, 0xaf, 0xf, 0x90, 0xe5, 0x76, 0x2e, 0x7f, 0xf1, 0x70}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7c, 0x30, 0x57, 0xa9, 0x38, 0x97, 0xfa, 0xe9, 0x63, 0xc9, 0x3a, 0x59, 0xce, 0x31, 0x44, 0x6f, 0x2a, 0xc0, 0xf6, 0xab, 0x44, 0xe5, 0x12, 0x7c, 0x6a, 0xcb, 0x8b, 0xe8, 0x57, 0x7e, 0xce, 0x2d}} return a, nil } -var _quorumcertificateScriptsGet_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\x3f\x6b\xc3\x40\x0c\xc5\x77\x7d\x8a\x37\x26\x4b\xd2\x2e\x1d\x02\x1d\xca\xa5\x85\x8c\xa9\xe9\x14\x32\xa8\x17\xb9\x39\xb8\x3f\x46\xd1\x61\x97\xd2\xef\x5e\x8a\x6d\x88\x37\x81\xf4\xf4\xfb\xbd\x90\xba\xa2\x86\xb7\x58\x7a\x17\xeb\xcd\x44\x8f\x0e\xad\x96\x84\x87\xe1\xe8\x5e\xf6\xfb\xf7\xd7\xa6\x21\xda\x6e\xd1\x78\x0d\x9d\xc1\x0a\x54\xac\x6a\x06\x67\xb0\x2a\x7f\xa3\xb4\x70\x25\x46\xf1\x56\x14\xd3\x97\x1b\xfa\x60\x57\x70\x8c\xff\x6b\xbb\x4a\x50\x24\x31\xbe\xb0\x31\x51\x57\x3f\xd1\xd6\x8c\xc4\x21\xaf\xfc\x98\x38\xe4\x8b\x0c\x3b\x7c\x1c\xb2\x3d\x3e\xad\x77\x38\x2d\x9c\x36\xd3\x74\xc6\x0f\x11\x00\x44\x31\xf8\x99\xf5\xbc\x2c\xb0\xf9\x12\x9b\x3d\x56\xeb\xf1\x7e\x92\x9e\x23\xa7\x7b\xea\x99\xe8\xf7\x2f\x00\x00\xff\xff\x60\x84\x69\xbf\x09\x01\x00\x00" +var _quorumcertificateScriptsGet_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\x31\x6b\xc3\x40\x0c\x85\x77\xfd\x8a\x47\x26\x7b\x49\xe8\xd2\x21\xd0\xc9\x50\xc8\x58\x4a\xa7\x90\x41\x5c\xe4\xfa\x40\x77\x67\x74\x32\x6e\x29\xfd\xef\xa5\xd8\x86\x78\x13\x92\x3e\xde\xf7\x62\x1a\x8b\x39\x5e\xb5\xcc\x9d\x4e\xd5\xc5\xde\x3a\xf4\x56\x12\x0e\xbb\xdd\x81\xe8\x74\xc2\x7b\xb0\x38\x3a\xbc\xc0\xc4\x27\xcb\xe0\x0c\x36\xe3\x6f\x94\x1e\x5d\x51\x95\xe0\xc5\xb0\x52\x15\x73\xf4\x01\xac\xfa\x7f\xf6\x41\xa2\x21\x89\xf3\x9d\x9d\x89\x38\x04\xa9\xb5\x61\xd5\x16\xfd\x94\x91\x38\xe6\x26\x2c\xe4\x25\xdf\xe5\xeb\x8c\x8f\x4b\xf6\xa7\xe7\xf6\x8c\xeb\xce\xe5\xb8\x4e\x37\xfc\x10\x01\x80\x8a\x23\x6c\x99\x2f\xfb\x32\xc7\x4f\xf1\xcd\xa7\x69\x97\xff\x55\x7e\x43\xae\x8f\xa9\x37\xa2\xdf\xbf\x00\x00\x00\xff\xff\xa6\xc7\x74\x36\x15\x01\x00\x00" func quorumcertificateScriptsGet_clustersCdcBytes() ([]byte, error) { return bindataRead( @@ -5060,11 +5080,11 @@ func quorumcertificateScriptsGet_clustersCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_clusters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x28, 0xea, 0xb9, 0x6, 0x48, 0xf1, 0x64, 0x54, 0x82, 0x9f, 0xea, 0xc1, 0x19, 0xa6, 0xb8, 0x26, 0xca, 0xe0, 0xa7, 0xa8, 0x17, 0x29, 0x8a, 0x2e, 0x2c, 0xc1, 0x93, 0x31, 0x77, 0xeb, 0x2c, 0x18}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb0, 0xfa, 0xb0, 0xff, 0x20, 0xaf, 0xe0, 0x18, 0x68, 0x21, 0x71, 0xea, 0x8d, 0x67, 0x52, 0xa1, 0x54, 0x7b, 0xe3, 0x84, 0xef, 0xbd, 0x91, 0xcf, 0x60, 0x8, 0x86, 0xd8, 0xe, 0xed, 0xb7, 0xea}} return a, nil } -var _quorumcertificateScriptsGet_node_has_votedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x91\x41\x6f\xd3\x40\x10\x85\xef\xfb\x2b\xde\xa9\x6a\xa4\x2a\xe1\xdc\x1b\x24\x45\xf4\x82\x68\x5c\xb8\x4f\xec\x71\x76\xd5\xf5\x8c\xb5\x33\x8e\x41\x88\xff\x8e\xd6\x4e\x24\xe8\xd9\x9e\xf7\xbe\xf7\x6d\x1a\x46\x2d\x8e\xcf\x59\xe7\x7d\x9e\xcc\xb9\xbc\xec\xd1\x17\x1d\xf0\xe1\xe7\xcb\xfe\xe3\xe1\x70\x7c\x6a\x9a\x10\x76\x3b\x1c\xd9\xa7\x22\x06\xc2\x49\x35\x33\x09\x92\x74\xa9\x25\x4f\x72\x46\xea\x41\x10\xed\x18\x91\x0c\x36\x9d\x86\xe4\xce\x1d\x08\x17\x75\x46\xaf\x05\x1e\x93\x81\x47\x6d\x63\x08\xe3\x74\x42\x3f\x09\x06\x4a\x72\x5f\xcf\x9e\x0f\x8f\x68\xbc\x24\x39\x6f\x1e\xf1\x49\x35\xe3\x77\x08\x00\xb0\xdb\xe1\xb9\xc7\xcc\xa0\xc2\x48\x02\x8f\x0c\x73\x7a\xab\xa5\x34\xb5\x9e\x54\x30\x46\x32\xc6\xfd\x45\x17\x14\x51\xaf\x3f\x8e\x45\xcf\x85\xcd\x36\x0f\xcb\x4d\xc5\xb0\x5b\xe2\xb2\x2f\x93\xf9\xca\xb3\x64\x9b\xa7\x9c\x61\xae\xa5\x62\x4b\xb7\xac\xf9\x42\xf6\x43\xeb\x8e\xc2\x55\x93\xe1\xb5\x4c\xbc\x45\x93\xa4\x65\xcc\x7c\xcb\x53\xc9\xbf\x30\x93\x38\x5c\xf1\x26\x3a\x63\x8e\xec\x91\x4b\x05\x8f\x74\x59\xeb\xbb\xab\x06\xc6\xfe\xfb\xf1\xf8\xf4\xf5\x75\x6d\x7f\x80\x0e\xc9\x57\x3d\x2d\x19\x6f\x97\xd4\xb2\xd8\xfe\xff\x5d\xb6\x49\xbe\x5d\x57\xe1\xee\xee\xdd\xb7\x7f\x71\xaf\x4a\x37\x21\xfc\xf9\x1b\x00\x00\xff\xff\x27\xdb\x8d\xf4\xe0\x01\x00\x00" +var _quorumcertificateScriptsGet_node_has_votedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x91\x41\x8f\xd3\x30\x10\x85\xef\xfe\x15\x4f\x7b\x58\x35\xd2\xaa\xb9\xef\x91\x02\x62\x2f\x08\xba\x0b\xf7\xd9\x64\x52\x5b\x75\x66\x22\xcf\xa4\x11\x42\xfc\x77\xe4\xa4\x95\x28\x57\xdb\xf3\xe6\x7b\x9f\xd3\x38\x69\x71\x7c\xce\xba\x1c\xf2\x6c\xce\xe5\xfb\x01\x43\xd1\x11\x0f\x77\x67\x0f\x21\xb4\x2d\x8e\xec\x73\x11\x03\xe1\x5d\x35\x33\x09\x92\xf4\xa9\x23\x4f\x72\x42\x1a\x40\x10\xed\x19\x91\x0c\x36\xbf\x8f\xc9\x9d\x7b\x10\x2e\xea\x8c\x41\x0b\x3c\x26\x03\x4f\xda\xc5\x10\xa8\xeb\xd8\x6c\x47\x39\x37\x18\x66\xc1\x48\x49\x76\x75\xfc\xe5\xe3\x33\x5e\xbd\x24\x39\x35\xcf\xf8\xa0\x9a\xf1\x3b\x04\x00\x68\x5b\xbc\x0c\x58\x18\x54\x18\x49\xe0\x91\x61\x4e\xe7\xba\x9c\xe6\xce\x93\x0a\xa6\x48\xc6\xd8\x5d\x74\x45\x12\xf5\xfa\x70\x2a\x7a\x2a\x6c\xd6\x3c\xad\x33\x15\xc7\x6e\x89\x6b\xd7\x4c\xe6\x1b\xd7\x9a\x6d\x9e\x72\x86\xb9\x96\x8a\x2f\xfd\xda\xea\x0b\xd9\x4f\xad\x7d\x0a\x57\x65\x86\xb7\x32\xf3\x1e\xaf\x49\x3a\xc6\xc2\xb7\x3c\x95\xfc\x0b\x0b\x89\xc3\x15\x67\xd1\x05\x4b\x64\x8f\x5c\x2a\x78\xa4\xcb\xb6\xbe\xbf\xea\x60\x1c\x7e\x1c\x8f\x9f\xbe\xbe\x6d\xdb\x9f\xa0\x63\xf2\x4d\x53\x47\xc6\xfb\x35\xb5\xac\xd6\xef\xff\x68\x9f\xe4\xdb\xb5\x15\x1e\x1f\xff\xbb\xfb\x17\xf7\xaa\xb4\x09\xe1\xcf\xdf\x00\x00\x00\xff\xff\xa0\xa8\x11\xb6\xec\x01\x00\x00" func quorumcertificateScriptsGet_node_has_votedCdcBytes() ([]byte, error) { return bindataRead( @@ -5080,11 +5100,11 @@ func quorumcertificateScriptsGet_node_has_votedCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_node_has_voted.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0xf9, 0xf9, 0x94, 0x9c, 0xff, 0xe1, 0x6a, 0x1, 0x85, 0x98, 0x1f, 0xfc, 0x7c, 0xef, 0xe4, 0x42, 0x47, 0x88, 0x91, 0x70, 0x78, 0x6c, 0xbc, 0xc1, 0xb0, 0xa8, 0x7c, 0xff, 0x13, 0x4b, 0x27}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0xf8, 0x21, 0xe, 0xb3, 0x57, 0x9d, 0x37, 0xd, 0xfa, 0xd5, 0x9e, 0x93, 0xb5, 0xaf, 0xf1, 0x62, 0xd9, 0x2b, 0x82, 0xe9, 0x2c, 0x36, 0x3c, 0x6d, 0xc5, 0x18, 0x2b, 0xdd, 0x26, 0x8e, 0xf1}} return a, nil } -var _quorumcertificateScriptsGet_node_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8f\x31\x6b\x84\x40\x10\x85\xfb\xfd\x15\xef\xba\x3b\x08\xc7\x05\xc2\x15\x07\x57\x04\x4d\xc0\xd2\x48\x48\x21\x16\x26\x8e\x66\x61\x9d\x95\xdd\x59\x22\x88\xff\x3d\xe8\x4a\x48\x48\x75\xd3\x0d\xf3\xbd\xf7\x31\xba\x1f\xac\x13\x3c\x1b\xfb\x95\x98\xe0\x85\x5c\x9e\xa0\x75\xb6\xc7\x69\xcc\x93\xc7\x34\x7d\x79\x2a\x0a\xa5\x86\xf0\x8e\x36\x30\xfa\x5a\xf3\xfe\x23\x82\x19\x37\x34\x5e\xf0\x9a\xb1\xdc\x9f\xef\xc0\xb6\xa1\x2c\xbd\xa0\x10\xa7\xb9\x3b\xc4\xc3\xf9\x01\x93\x52\x00\x60\x48\xb0\x05\x3d\xae\x7f\x85\xc7\x8e\x64\x5b\xfc\xfe\x10\x79\xdd\xfe\xe0\xe5\x6f\x61\x75\x5c\x44\x6f\xa4\xbb\x4f\xf1\x65\x94\x56\xd8\x5d\xc1\xda\x60\x5a\xa3\xcb\x38\x92\xe0\xf8\x86\x8a\xdd\x1a\x9d\x41\xc6\xd3\xff\x9e\x13\x6a\xbf\x3d\x14\x39\xa5\xe6\xef\x00\x00\x00\xff\xff\xec\x0b\xfb\xe3\x3b\x01\x00\x00" +var _quorumcertificateScriptsGet_node_weightCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8f\x31\x4b\xc4\x40\x10\x85\xfb\xfd\x15\xef\xae\x4a\x40\x0e\x05\xb9\xe2\xe0\xaa\x88\x90\x52\x44\x2c\x42\x8a\x25\x99\xc4\x85\xcd\xac\xec\x4c\x50\x08\xf9\xef\x92\x6c\x10\x83\xd5\x6d\xb7\x33\xdf\x7b\x1f\xe3\x86\xcf\x10\x15\xcf\x3e\x7c\x15\x7e\x14\xa5\xf8\x52\xa0\x8b\x61\xc0\x71\x37\x3b\x1a\x63\x9b\x86\x44\x32\xeb\x7d\x8e\x6e\x64\x0c\xd6\x71\xd6\x24\xa0\xe4\x96\xbe\x2f\x78\x2b\x59\x1f\xce\x77\xe0\xd0\x52\xf9\x74\xc1\xab\x46\xc7\x7d\x9e\x16\xe7\x47\x4c\xc6\x00\x80\x27\xc5\x16\x14\x5c\xf7\xf2\x53\x4f\xba\x7d\x24\xcb\x13\xef\xba\x5f\xbc\xfa\x2b\xac\x4f\x8b\xe8\x9d\x5c\xff\xa1\x52\x25\x69\x8d\xc3\x15\xec\x3c\xa6\x35\xba\xbc\x48\x3a\x46\xbe\xa1\xe2\xb0\x46\x67\x90\x17\xfa\xdf\x73\x0f\x2b\xdb\x41\x89\x33\x66\xfe\x09\x00\x00\xff\xff\x50\x00\x3d\xc8\x47\x01\x00\x00" func quorumcertificateScriptsGet_node_weightCdcBytes() ([]byte, error) { return bindataRead( @@ -5100,11 +5120,11 @@ func quorumcertificateScriptsGet_node_weightCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_node_weight.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0x9c, 0x30, 0x47, 0x7d, 0x62, 0xd0, 0xa6, 0x81, 0xca, 0xe6, 0xf1, 0x83, 0x8e, 0x2f, 0x26, 0x25, 0x47, 0x8b, 0x62, 0x97, 0xde, 0xac, 0x2d, 0xf, 0xb1, 0xe1, 0x32, 0x9d, 0xfb, 0x27, 0xda}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x93, 0x25, 0xfa, 0x54, 0x63, 0x59, 0xc9, 0xed, 0x7c, 0xb4, 0x5, 0x3, 0xd4, 0xe1, 0x46, 0x77, 0x8e, 0x2d, 0xec, 0x84, 0x5b, 0x67, 0x8, 0x2a, 0xe3, 0xdc, 0xaa, 0x1c, 0xfb, 0x6, 0xd4}} return a, nil } -var _quorumcertificateScriptsGet_qc_enabledCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x77\xce\x29\x2d\x2e\x49\x2d\x0a\x74\x56\x48\x2b\xca\xcf\x55\x30\xa8\x08\x74\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x70\xca\xcf\xcf\x51\xa8\xe6\xe2\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x35\x42\x2f\x33\x2f\xa0\x28\x3f\xbd\x28\xb5\xb8\x98\x8b\xab\x16\x10\x00\x00\xff\xff\x91\xb7\x70\x7a\x65\x00\x00\x00" +var _quorumcertificateScriptsGet_qc_enabledCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xcc\x31\x0a\x42\x31\x0c\x06\xe0\x3d\xa7\xf8\x79\xd3\xeb\xe2\x01\x1c\x2d\x38\xeb\x11\x4a\x49\xa5\x90\x26\x92\xb4\x38\x88\x77\x77\xee\xfa\x0d\x5f\x1f\x6f\xf3\x89\xbb\xd8\x27\xcb\x8a\xc9\xfe\xcc\x68\x6e\x03\xc7\x66\x07\x51\xa9\x95\x23\xce\x22\x92\xd0\x96\x62\x94\xae\x67\xba\xe2\x66\x26\xf8\x12\x01\x80\xf3\x5c\xae\x7b\x77\xe9\xfa\x70\x7b\x39\x47\x10\xfd\xfe\x01\x00\x00\xff\xff\x53\x18\x41\x96\x71\x00\x00\x00" func quorumcertificateScriptsGet_qc_enabledCdcBytes() ([]byte, error) { return bindataRead( @@ -5120,11 +5140,11 @@ func quorumcertificateScriptsGet_qc_enabledCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_qc_enabled.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0xd8, 0xc8, 0x9f, 0xb4, 0x4d, 0x43, 0xa4, 0x5b, 0x58, 0xc3, 0xef, 0xe6, 0xab, 0x17, 0xb8, 0xa8, 0xae, 0x35, 0x7c, 0xc4, 0xff, 0xb2, 0xd5, 0xe2, 0x17, 0x9e, 0xab, 0x50, 0xe8, 0x4e, 0xab}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe4, 0x1, 0xc8, 0x57, 0x3, 0x99, 0xe8, 0x3a, 0xeb, 0xa5, 0xac, 0x3b, 0x72, 0x25, 0x55, 0x34, 0xf7, 0x31, 0x44, 0x4b, 0xc6, 0x3, 0x7, 0x69, 0x63, 0x0, 0xea, 0xb, 0x6f, 0x71, 0x5, 0xba}} return a, nil } -var _quorumcertificateScriptsGet_voter_is_registeredCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x41\x6a\x84\x40\x10\x85\xe1\x7d\x9d\xe2\x2d\xe3\x26\x66\xed\x2e\xd1\x04\x5c\xaa\x27\x68\x63\xb7\x14\xb4\x55\x52\xdd\x6d\x02\xc3\xdc\x7d\x70\x18\x06\x66\xff\xf3\xbd\xc7\xdb\xae\x96\xf1\x13\xf5\xaf\x8d\x25\x65\x6f\x43\x8b\x60\xba\xe1\xe3\x7f\x68\x3f\xbb\x6e\xfc\x9e\x26\xa2\xba\xc6\xe8\x73\x31\x49\x70\x98\x55\xa3\x77\x02\x96\x85\x7f\x5d\x66\x59\xc1\x01\x0e\xa2\x8b\x07\x27\x98\x5f\xf9\x94\xfc\x82\xa0\x86\x43\xcf\x84\x68\x2f\x33\x42\x11\x6c\x8e\xe5\xed\x6c\xfb\xae\xc1\x94\x8d\x65\xad\x1a\x7c\xa9\x46\x5c\x88\x00\xc0\xee\x53\xaf\xa7\xde\x0f\xcd\xde\xfa\x34\x3e\xf1\x87\x51\x11\x5d\x6f\x01\x00\x00\xff\xff\x25\xd3\x9a\xb5\xc6\x00\x00\x00" +var _quorumcertificateScriptsGet_voter_is_registeredCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xc1\x8a\x83\x40\x10\x44\xef\xfd\x15\x85\x27\xbd\xac\x77\x8f\xeb\xb2\xe0\x71\xdd\x2f\x98\x68\x8f\x34\x8c\xdd\xa1\x67\x34\x87\x90\x7f\x0f\x86\x10\xf0\x5a\xd4\xab\x57\xb2\x5e\xcd\x0b\x7e\x93\xdd\xfa\xb4\xe5\xc2\xfe\xd7\x23\xba\xad\xa8\x4e\x59\x45\xd4\xb6\x18\xb9\x6c\xae\x19\x01\x17\xb3\xc4\x41\x21\x3a\xcb\x14\x8a\xe8\x02\x89\x08\x50\x9b\x19\x92\xe1\xbc\xc8\x41\xf2\x8c\x68\x8e\xdd\x8e\x0a\x51\x98\x26\xce\xb9\x0e\x29\x35\x88\x9b\x62\x0d\xa2\xf5\xc1\x0c\x3f\x1d\xfe\x8b\x8b\x2e\x4d\x87\x6f\xb3\x84\x3b\x11\x00\xf8\x4b\x79\x3e\xf8\xb5\x5b\x61\x1f\xf2\xf8\x91\xbc\x37\x1a\xa2\xc7\x33\x00\x00\xff\xff\xc7\x79\x0f\x5e\xd2\x00\x00\x00" func quorumcertificateScriptsGet_voter_is_registeredCdcBytes() ([]byte, error) { return bindataRead( @@ -5140,11 +5160,11 @@ func quorumcertificateScriptsGet_voter_is_registeredCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_voter_is_registered.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0xb, 0x7e, 0xe9, 0xf, 0xb8, 0xd4, 0x4, 0xbe, 0x72, 0xc1, 0x51, 0x89, 0xc8, 0x3f, 0xee, 0xde, 0x87, 0xd6, 0xa6, 0x14, 0x73, 0xeb, 0xa4, 0x18, 0x82, 0x7e, 0xeb, 0x4a, 0x9d, 0xf8, 0x9b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xc6, 0x3d, 0x20, 0x48, 0xaf, 0x41, 0xc4, 0xfd, 0x17, 0xf1, 0x48, 0xb8, 0x5b, 0xd0, 0x4c, 0xa5, 0xf1, 0x23, 0x4e, 0x87, 0xf, 0xa5, 0xb1, 0x4d, 0x99, 0x1e, 0x1e, 0xfa, 0x87, 0x7f, 0x65}} return a, nil } -var _quorumcertificateScriptsGet_voting_completedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x31\x4e\xc5\x30\x0c\x06\xe0\xdd\xa7\xf8\xc7\xf7\x16\xca\xcc\x06\x29\xec\x6d\x4f\x90\x36\x0e\xb5\x94\xc4\x51\xe2\x14\x24\xc4\xdd\x11\x6c\x9c\xe0\xfb\x24\x57\x6d\x86\xb7\xa4\x1f\x2e\x8d\x6e\xdc\x16\x87\xd8\x34\xe3\xf1\x73\x71\xcf\xf3\xbc\xbe\x6e\x1b\xd1\x34\x61\x65\x1b\xad\x74\x78\xec\xaa\x89\x7d\x81\x94\x20\x87\x37\x29\xef\x90\x08\x8f\xa2\x81\x71\xfa\x8e\x3e\xf6\x2c\x66\x1c\xe0\x71\xa9\x31\xa2\x36\xd8\x29\x1d\x5c\xf5\x38\x89\xea\xd8\x11\x47\x41\xf6\x52\x6e\xf7\x27\xbc\xa8\x26\x7c\x11\x01\x40\xfb\x73\xfe\x8f\x1e\x2e\xfd\x65\x9c\xe6\x9a\xd8\x38\xdc\xee\x44\xdf\x3f\x01\x00\x00\xff\xff\x19\xef\x8b\xe7\xbb\x00\x00\x00" +var _quorumcertificateScriptsGet_voting_completedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\xa1\x6e\xc5\x30\x0c\x46\x61\xee\xa7\xf8\x55\xd4\x92\x95\x0f\xae\xd2\xf8\xf6\x06\x6e\xe2\xac\x96\x92\xb8\x4a\x9c\x0e\x4c\x7b\xf7\xab\x7b\x59\xe9\x21\xdf\xd1\x72\x5a\x73\x7c\x66\xfb\xdd\xf2\xe8\x2e\xed\x6b\x43\x6a\x56\x30\xdd\xda\x44\xb4\xae\xf8\x16\x1f\xad\x76\x30\x76\xb3\x2c\x5c\xa1\x35\x6a\x60\xd7\xfa\x03\x4d\x60\x54\x8b\x82\x83\x3b\xfa\xd8\x8b\xba\x4b\x04\xe3\x32\x17\x24\x6b\xf0\x43\x3b\xe4\xb4\x70\x10\x71\x08\xd2\xfb\xcc\x39\x2f\x48\xa3\xa2\xb0\xd6\x79\x79\xc7\x87\x59\xc6\x1f\x11\x00\xb4\x97\x77\xbf\x7b\xbb\xec\xc9\x6d\x56\xce\x2c\x2e\x71\x5e\x88\xfe\x1f\x01\x00\x00\xff\xff\xb1\xa0\xbe\x79\xc7\x00\x00\x00" func quorumcertificateScriptsGet_voting_completedCdcBytes() ([]byte, error) { return bindataRead( @@ -5160,11 +5180,11 @@ func quorumcertificateScriptsGet_voting_completedCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/scripts/get_voting_completed.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd7, 0x4, 0x25, 0x98, 0x8d, 0xb7, 0x66, 0x53, 0x62, 0x94, 0xae, 0x9d, 0x79, 0xd5, 0xb7, 0x36, 0x53, 0xb9, 0xae, 0xd1, 0xa, 0x1c, 0x9c, 0x85, 0x25, 0x5d, 0xd6, 0xc8, 0xf, 0xf7, 0x1b, 0xdc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0x87, 0x1d, 0x98, 0xc3, 0xe7, 0x56, 0x6d, 0x1d, 0xe6, 0x4a, 0xf0, 0xa5, 0xde, 0x33, 0xfa, 0x4b, 0xb0, 0x81, 0x1f, 0xaf, 0x72, 0xa7, 0xdf, 0x2f, 0xc2, 0xe0, 0xbd, 0x62, 0x6d, 0xfe, 0xa9}} return a, nil } -var _quorumcertificateSubmit_voteCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\x51\xcf\x93\x40\x10\x7c\xbf\x5f\x31\xf9\x1e\x94\x26\x5a\x7c\x26\xea\x17\x42\xf5\xcd\xa4\x2d\xc6\xf7\x2b\x2c\x70\x29\xdc\xe1\xde\x9e\xad\x31\xfd\xef\xe6\x38\xdb\xb4\x8d\x9b\x90\xb0\xbb\x33\xb3\xc3\x60\xa6\xd9\xb1\xe0\xeb\xe8\x4e\xd5\x18\xbc\x10\xef\x2a\x74\xec\x26\x7c\x38\xef\xaa\x72\xb3\xd9\x7f\xa9\x6b\xa5\xf2\x1c\x25\xac\x6b\x09\xbf\x9c\x10\x23\x78\xf2\x90\xc1\x78\x08\x6b\xeb\x75\x23\xc6\x59\x88\x83\x0f\x87\xc9\x08\x34\x76\xd5\x02\x55\x79\x1e\xc9\x5b\xcd\x7a\x22\x21\xf6\x45\x6c\xe3\x13\xb7\xb5\xe9\xad\x96\xc0\x54\xe0\xfb\x40\xf0\xa6\xb7\xd4\x62\x22\xef\x75\x4f\x08\xde\xd8\x1e\x32\xd0\x72\xf9\xad\x87\x17\x7d\x8c\xa3\x23\xfd\xbe\x2a\x7c\x4b\xd8\xc4\x1f\xe8\xfc\x9e\x6c\xe3\x5a\x6a\xe1\x85\x23\xd4\x75\x8b\x00\xeb\xd3\x55\x56\xa9\x3b\xcb\xd9\x93\x8b\x7a\x61\xbd\x7b\x94\x4e\xc3\x15\xfe\x28\x05\x00\x33\xd3\xac\x99\xb2\xc5\x2d\x17\x28\x83\x0c\x65\xd3\xb8\x60\x25\x62\xf0\xaf\x46\x92\x14\xd6\x9e\x3a\x7c\x4a\xdf\xc6\xeb\x83\x63\x76\xa7\x8f\x6f\x1e\x02\x5f\xff\x88\xb8\xcf\x59\xcc\xbd\xc0\x7f\x56\xb5\x38\xd6\x3d\x6d\xb5\x0c\xab\xdb\x81\x58\xaf\xaf\x98\xb5\x35\x4d\xf6\x52\xb9\x30\xb6\xb0\x4e\x90\x4e\x80\xa9\x23\x26\xdb\x50\xfc\x2d\x3f\x9b\xe4\xe5\x65\xa5\x6e\xfc\xab\xb9\x75\x7c\x79\x0e\xe2\xa1\x7d\xca\xe3\xae\x49\x6e\x2e\xea\xf2\x37\x00\x00\xff\xff\x81\x4d\x6f\x1c\x48\x02\x00\x00" +var _quorumcertificateSubmit_voteCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\xc1\xaa\xdb\x30\x10\xbc\xeb\x2b\x06\x1f\x5e\x6d\x68\xed\xbb\x69\xfb\x78\x35\xf4\x56\x78\x69\x4a\xee\x8a\xbd\xb6\x45\x6c\xc9\x5d\xad\x9a\x96\x92\x7f\x2f\xb2\x9a\x10\x87\x27\x30\x78\x57\x33\xb3\xa3\x59\x33\x2f\x8e\x05\x5f\x27\x77\x6e\xa6\xe0\x85\x78\xd7\xa0\x67\x37\x23\xdb\xf4\x32\xa5\xaa\x0a\x2f\xb0\xae\x23\xfc\x72\x42\x8c\xe0\xc9\x43\x46\xe3\x21\xac\xad\xd7\xad\x18\x67\x21\x0e\x3e\x1c\x67\x23\xd0\xd8\x35\x2b\x54\x55\x55\x24\xbf\x6a\xd6\x33\x09\xb1\xaf\x63\x19\xbf\x78\xbb\x37\x83\xd5\x12\x98\x6a\xfc\x18\x09\xde\x0c\x96\x3a\xcc\xe4\xbd\x1e\x08\xc1\x1b\x3b\x40\x46\x5a\x27\xbf\xf3\xf0\xa2\x4f\xb1\x75\xa2\x3f\x57\x85\x6f\x09\x9b\xf8\x23\xfd\xfe\x40\xb6\x75\x1d\x75\xf0\xc2\x11\xea\xfa\x55\x80\xf5\xf9\x2a\xab\xd4\x9d\xe5\xfc\xc1\xc5\x7e\x65\xbd\xdf\x4a\xa7\x66\x81\xbf\x4a\x01\xc0\xc2\xb4\x68\xa6\x7c\x75\xcb\x35\x74\x90\x31\xff\xe2\x98\xdd\xf9\xa0\xa7\x40\x05\x9e\x5e\xda\xd6\x05\x2b\x91\x82\xff\x67\x22\x49\xd9\x7d\xa7\x1e\x9f\xd2\x53\xb9\xf4\xe2\x58\x0f\x54\x1e\x57\xfa\xc7\xa7\x4d\xee\xe5\x21\xe2\x3f\xe7\x71\x25\x35\xde\xb8\xda\x27\xf6\xab\x96\xb1\xb8\x0d\x8a\xe7\xf9\x19\x8b\xb6\xa6\xcd\xb3\xc6\x85\xa9\x83\x75\x82\x34\x02\x4c\x3d\x31\xd9\x96\xe2\xb6\x7e\xb6\xc9\x53\x56\xa8\x1b\xff\x6a\xb2\x8c\x3f\x8f\xf9\x6c\xca\x87\x98\xee\x8a\xe4\xe6\xa2\x2e\xff\x02\x00\x00\xff\xff\xf6\x6f\xe5\x6d\x63\x02\x00\x00" func quorumcertificateSubmit_voteCdcBytes() ([]byte, error) { return bindataRead( @@ -5180,7 +5200,7 @@ func quorumcertificateSubmit_voteCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/submit_vote.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x97, 0xf6, 0x2f, 0x9, 0xa3, 0xbc, 0x7e, 0x74, 0xb2, 0xa3, 0xe, 0xf0, 0x38, 0x14, 0x3e, 0x45, 0xca, 0xa1, 0xa1, 0x7f, 0xa4, 0x86, 0x99, 0x91, 0x81, 0xb3, 0x63, 0x6d, 0x75, 0x3b, 0xe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xff, 0x17, 0x2e, 0x7e, 0x4e, 0xc0, 0xf1, 0x63, 0x79, 0x30, 0x6a, 0xd7, 0xc7, 0xad, 0xdf, 0x22, 0xad, 0x5f, 0xfd, 0xd, 0x41, 0xc7, 0x37, 0xea, 0xef, 0x44, 0x8b, 0x91, 0x62, 0xe4, 0x9e}} return a, nil } @@ -5244,7 +5264,7 @@ func randombeaconhistoryScriptsGet_source_of_randomness_pageCdc() (*asset, error return a, nil } -var _stakingcollectionClose_stakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\xd4\x40\x0c\xbd\xe7\x2b\xac\x1e\xd0\x56\xaa\xb6\x08\x6e\x11\xb0\x8a\xb2\x05\x45\x54\x2d\x6a\x96\x0f\x70\x26\x4e\x32\x30\x19\x47\x33\x4e\x5b\x84\xfa\xef\x68\x66\x48\x40\xdd\x3d\xac\x0f\x89\xfc\x64\xbf\xf7\x6c\x8f\x1e\x27\x76\x02\x9f\x0d\x3f\xd5\x82\x3f\xb5\xed\x4b\x36\x86\x94\x68\xb6\xd0\x39\x1e\xe1\xed\x73\x7d\x28\xbe\x56\x77\x5f\xca\xfb\xdb\xdb\x9b\xf2\x50\xdd\xdf\x15\xfb\xfd\xc3\x4d\x5d\x67\xd9\xf5\x35\x94\x86\x3d\x79\xe0\x59\x00\xc1\x27\x0a\xe0\xe6\x07\x29\x01\x6d\x41\x06\x5a\x51\xb5\x32\x87\xc6\xc3\xa0\x3d\xb4\x4c\x1e\x2c\x0b\x38\x1a\xf9\x91\x62\xb9\x23\xc5\xae\x4d\xe2\x21\xd7\x2d\x59\xd1\xf2\x0b\x04\x1b\x43\x57\xa1\xb7\x99\x05\xb4\xa4\xee\x91\x30\xc8\xa0\xc4\x62\x54\x8a\x67\x2b\x09\x50\xc9\x9b\x16\x50\x68\x83\x0a\x3d\x92\x0b\x25\xe4\x23\x8a\x3d\x6a\x9b\x65\xe2\xd0\x7a\x8c\xc6\x36\x96\x5b\xaa\xf6\x39\xd4\xe2\xb4\xed\xaf\xa0\x25\x43\x3d\x0a\xbb\x00\x7e\xaf\xac\xbc\x7f\xb7\xbb\x84\xdf\x19\x00\x40\xfc\x18\x92\x65\xc0\x7f\x9b\x7b\xa0\x2e\x87\x37\x27\x97\xba\x3d\x42\xb2\xc8\x33\x39\x9a\xd0\xd1\xe6\xef\x00\x39\x14\xb3\x0c\x45\x4a\x16\xc1\x10\x9e\x4c\xb7\x3d\x25\x08\x1f\x97\xe1\xb7\x0d\x3b\xc7\x4f\x1f\xce\x35\xf0\x69\x13\x76\x9d\x9f\x7e\x04\xc7\xe5\xb5\xb0\xc3\x9e\xbe\xa1\x0c\x97\xab\xad\x10\xbb\x1d\x4c\x68\xb5\xda\x5c\x94\x3c\x9b\x36\xde\x35\x59\x01\x47\x1d\x08\xc3\x11\xd7\x45\x62\x78\x49\x3b\xa0\x67\x52\xb3\xd0\x39\xd3\x6e\xe3\x6d\x03\x1f\xad\x37\x4b\xff\x57\x37\xfb\x2f\x59\xb4\x5e\xb2\x3f\x01\x00\x00\xff\xff\x6e\x12\x74\xdf\xf6\x02\x00\x00" +var _stakingcollectionClose_stakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x8e\xd3\x30\x10\xbd\xe7\x2b\x46\x3d\x2c\xa9\xb4\xca\x4a\x70\xab\x80\x0a\x8a\x90\xf6\x04\xa2\xc0\x7d\xea\x4c\x13\x83\xe3\x89\xc6\xe3\x2d\x2b\xb4\xff\x8e\x6c\x37\x29\xa2\x39\x70\x59\x1f\x92\x78\xfc\x26\xef\xcd\xf3\xb3\xc3\xc8\xa2\xf0\xd1\xf1\x69\xaf\xf8\xd3\xfa\x6e\xc7\xce\x91\x51\xcb\x1e\x8e\xc2\x03\xac\x16\xcf\x56\x55\x75\x77\x07\x3b\xc7\x81\x02\x70\x54\x40\x08\x05\x03\x7c\xf8\x41\x46\xc1\x7a\xd0\x9e\xe6\xaa\x99\x5b\x53\xe3\xd7\xde\x06\x68\x99\x02\x78\x56\x10\x1a\xf8\x81\x32\x5c\xc8\xb0\xb4\x85\x39\xed\x6d\x4b\x5e\xad\x3e\x82\xe2\xc1\xd1\x6d\xea\x3d\x44\x05\xab\xa5\x7b\x20\x4c\x34\xa8\x19\x8c\xc6\x70\xf4\x5a\x0a\xa6\x68\xb3\x0a\x06\x7d\x62\xa1\x07\x92\x04\xa1\x90\xab\xd8\xa1\xf5\x55\xa5\x82\x3e\x60\x16\x56\x7b\x6e\xe9\xfe\xc3\x06\xf6\x2a\xd6\x77\xb7\xd0\x92\xa3\x0e\x95\x25\x15\xbf\xdd\x7b\x7d\xf5\x72\xbb\x86\xdf\x15\x00\x40\x7e\x38\xd2\x69\xc0\x8b\x35\x5f\xe8\xb8\x01\x8c\xda\xd7\x8b\xce\x35\x97\xcf\x4f\x27\x4f\xb2\x86\x9b\x65\xdc\x55\xa5\xca\x9c\xa3\xd0\x88\x42\xf5\x79\xd8\x33\xd5\x7b\x16\xe1\xd3\x77\x74\x91\xd6\x70\xf3\xae\x9c\x4d\x5a\xd3\x0a\xe4\x8e\xcd\x92\x56\x78\x33\xf9\xd6\x04\x65\xc1\x8e\x9a\x43\xfe\xd9\xeb\xe7\x98\xe1\x6d\x9d\xae\x76\xb3\x1c\xb8\x6b\xf8\xbe\x28\xfa\x8c\xda\xaf\xe7\x51\xd2\xda\x6e\x61\x44\x6f\x4d\xbd\xda\x71\x74\x6d\x8e\x51\x91\x0d\x08\x42\x47\x12\xf2\x86\x40\x19\x10\xae\x83\x7d\xce\xe6\x28\x76\x40\x79\x84\x18\x48\x5e\x84\xc9\x86\x55\x61\x7a\x2a\x76\xd3\x2f\x32\x51\xe9\x7f\x9c\x6c\x72\xe4\x12\x1b\xcd\x51\x2a\xef\x7f\xa2\xf4\xd7\x66\xe2\x7a\xaa\xfe\x04\x00\x00\xff\xff\x81\xd2\xc8\xc9\x8a\x03\x00\x00" func stakingcollectionClose_stakeCdcBytes() ([]byte, error) { return bindataRead( @@ -5260,11 +5280,11 @@ func stakingcollectionClose_stakeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/close_stake.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x59, 0x8d, 0x88, 0x8f, 0x9d, 0x2f, 0x9b, 0x93, 0x92, 0x8c, 0x12, 0x2b, 0xb, 0x67, 0x85, 0x23, 0x87, 0x27, 0x5b, 0x5f, 0x46, 0x81, 0x35, 0x3e, 0x3d, 0x28, 0xbf, 0xd8, 0x89, 0xc8, 0x19}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x31, 0xd6, 0xfa, 0x69, 0x5f, 0x9d, 0x28, 0xd3, 0x8b, 0x18, 0x15, 0x2c, 0xdc, 0xf3, 0x4d, 0x92, 0xf3, 0x99, 0x54, 0x52, 0x91, 0x27, 0xbf, 0x10, 0xdd, 0x65, 0x16, 0xce, 0xac, 0x21, 0xd9, 0x7b}} return a, nil } -var _stakingcollectionCreate_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x6f\x9b\x40\x10\xbd\xf3\x2b\x5e\x73\xa8\x1c\xc9\x22\x39\xa3\xba\x91\x85\x9d\xca\xb2\xeb\x54\x21\xb7\xaa\x87\x0d\x0c\xb0\xf2\x7a\x17\xed\x8e\xeb\xd0\xc6\xff\xbd\x5a\xc0\xc4\x9f\x52\xf7\x00\xcc\x2e\x33\xef\xcd\x9b\xb7\x72\x5d\x19\xcb\x88\x6d\x5d\xb1\x09\xba\xe8\x51\x99\x6d\xc2\x62\x25\x75\x11\x1b\xa5\x28\x65\x69\x34\x72\x6b\xd6\xb8\x7f\x4b\x5e\xc6\xf3\xd9\xf2\x5b\xfc\xb4\x58\x4c\xe3\x97\xd9\xd3\x72\x3c\x99\x3c\x4f\x93\x24\x08\xee\xee\xee\x10\x5b\x12\x4c\x0e\x02\x6b\x91\x96\x52\x13\x44\x9a\x9a\x8d\x66\xe4\xc6\x42\x40\x9b\x8c\xc0\xa5\x60\x48\x07\xa1\x2c\x89\xac\x86\xd4\xe0\x92\xe0\x5a\x48\xa4\x3d\x66\x53\x52\xe8\x0c\x22\xcb\x1c\xaa\xcd\xab\x92\x29\x56\x54\x3b\xb0\x69\x52\x34\x6d\xf7\x00\x41\xc0\x56\x68\x27\x9a\xc4\x81\xc7\x99\x4d\x22\x24\x6c\xa5\x2e\x86\x5d\xee\x9c\x6a\x17\xe1\x67\xdb\x6d\x38\xa7\x7a\x21\x1d\x4f\x35\xdb\xfa\xd7\x2d\xfe\x06\x00\xd0\x3c\x14\xf1\x9e\xcd\x87\x00\xcf\x94\x47\xf8\x7c\x51\x9b\xf0\x6c\x27\x68\xea\x54\x96\x2a\x61\x69\xd0\x51\x8c\x30\xde\x70\x39\x6e\x83\x3d\xa0\x5f\x8e\x54\x1e\x5e\x02\xc4\x68\xdf\x5e\xf8\x6a\xac\x35\xdb\x2f\xff\x4b\xe0\xeb\xc0\xcf\x2b\xba\x3c\xcb\xf3\xdf\x13\x36\x56\x14\xf4\x43\x70\x79\xdb\xd3\xf2\xeb\xe1\x01\x95\xd0\x32\x1d\xdc\xc4\x66\xa3\x32\x68\xc3\x68\xa9\xc0\x52\xee\xe7\x70\x56\xeb\xe6\x36\xe8\x4b\xc8\xbc\x11\xb3\x33\x43\xd7\x3a\x46\xd7\x3b\x0e\xd3\xc6\x41\xdf\x8f\x12\x1e\x8d\x9d\xbe\x49\xc7\x52\x17\x4b\x93\x51\x3f\xdd\xf6\x3d\x44\x25\x6a\xb2\xd1\x5e\xaa\x43\x65\x3b\x0e\x1f\xe3\xc7\x68\x04\x2d\x15\xde\xdf\x0f\x36\x3f\x85\x8a\x74\xc1\xa5\x3f\xbc\x3f\xc9\x6e\xe6\xd8\x29\x20\xb4\x6f\xbf\xb2\xe6\xb7\xcc\x08\x7f\xc8\x9a\xd6\x8d\xde\xdb\xde\x8e\x27\x9e\xbf\x39\x96\x72\x77\x14\xf9\x9c\x15\x35\xe6\x3f\x60\x77\x8e\x7d\x2c\x5d\xe8\xf1\x42\x91\x65\x83\x3e\x29\xf2\x65\xc2\x3e\x1c\xa2\x14\xae\x1c\xab\xc2\x58\xc9\xe5\xba\x3d\x3d\xda\x1a\x62\x4b\xb2\x28\xb9\x3d\x6a\xbf\xaf\x31\xdd\x81\x94\xa3\x13\x5a\x67\x86\x68\x67\x76\xe5\xd2\x37\xf7\xd4\x64\x74\xa0\x46\x5b\x7f\x17\xec\x82\x7f\x01\x00\x00\xff\xff\x33\xed\x36\xa1\x80\x04\x00\x00" +var _stakingcollectionCreate_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x4d\x4f\xdb\x40\x10\x3d\xe3\x5f\xf1\x94\x03\xb5\xa5\xc8\xa4\xb7\xca\x6a\x8a\x68\x5a\x04\x42\x6d\x51\xa3\xf6\x3e\x78\x27\xf6\x0a\x67\xd7\x9a\x5d\x13\xac\x8a\xff\x5e\xf9\x2b\x24\xc4\x50\x38\xd4\x07\x67\xed\xec\xcc\x7b\xfb\xe6\xcd\x58\xaf\x4b\x2b\x1e\x0b\xa9\x4b\x6f\x83\xfe\xe9\xbc\xb0\x9b\xa5\xa7\x5b\x6d\xb2\x85\x2d\x0a\x4e\xbd\xb6\x06\x2b\xb1\x6b\x4c\x46\xff\x9b\x04\xc1\xc9\xc9\x09\x16\xc2\xe4\xd9\x81\xb0\xa6\x34\xd7\x86\x41\x69\x6a\x2b\xe3\xb1\xb2\x02\x82\xb1\x8a\xe1\x73\xf2\xd0\x0e\x54\x08\x93\xaa\xa1\x0d\x7c\xce\x70\x5d\x4e\xa4\xdb\xa4\x6d\x4a\x32\x0a\xa4\x94\x43\x59\xdd\x14\x3a\xc5\x2d\xd7\x0e\xde\xb6\x21\x86\x37\x03\x40\x10\x78\x21\xe3\xa8\x0d\x0c\x1b\x9c\xcb\x2f\x09\x96\x5e\xb4\xc9\xa6\x08\xb0\x73\xf5\xd4\xce\xba\xc0\x2b\xae\x5f\xbb\x6f\xa9\x33\x43\xbe\x12\x3e\x2b\x32\x2b\xda\xe7\xeb\x04\xbf\x2e\x8d\xff\xf0\xaf\xc0\x0b\x72\xf9\xd3\x98\x08\x7f\xda\xa0\xf6\x56\xb0\x1f\xce\xff\xa8\xe9\x4f\x5e\x25\xa0\xca\xe7\xe1\xa8\xe4\xf1\xe3\xf2\xc7\xc6\xb0\x44\x38\x1e\xdf\x77\xf0\x26\x68\x31\x4b\xe1\x92\x84\xc3\x5e\xc0\x1e\xea\xb3\x15\xb1\x9b\xdf\x54\x54\x1c\xe1\xb8\x3f\xc2\xc0\xb5\xb9\x1c\x17\xab\x78\x8c\x2b\xe6\x43\x2d\x62\xe7\xad\x50\xc6\xf1\x4d\x9b\xec\xe3\xff\x38\xc3\xa7\xb0\x71\x63\x32\xee\xd4\xc3\xed\xcb\x8e\xd1\x35\xf9\x3c\xda\xab\xd5\xe9\x29\x4a\x32\x3a\x0d\x27\x0b\x5b\x15\x0a\xc6\x7a\x74\xb4\x41\x10\x5e\xb1\xb0\x49\xb9\x31\x1c\xe1\xb0\x23\x7a\xeb\x96\xa2\xd7\x24\x35\x2a\xc7\xf2\xce\x0d\x32\x4c\xa2\x60\x0b\xa5\x57\x6d\x8d\xf7\x9d\x81\xf9\xf3\x6a\xc6\x69\xdb\x4a\xdf\xf6\x02\xce\xad\x7c\xbd\xd7\xce\x6b\x93\x7d\xb7\x8a\xb7\x36\xef\x7e\xa7\x28\xa9\x66\x49\x06\xfc\xdd\xaa\x6d\x4d\xa6\xb3\xc6\x88\x98\xe3\xd0\xcc\xa1\x50\x57\xf8\xe4\x35\xd6\xdf\x97\xf1\x39\x29\x33\xf6\xa0\x06\xb5\x8b\x06\x0d\xe1\xdd\x30\x69\xc4\x13\xda\x80\x4d\xb5\xc6\x5d\x83\x8d\x52\xec\x9d\x56\xac\x76\xd5\x1b\xd8\xe7\x7d\x1f\x61\x8e\xbd\x96\x7a\x89\xf9\xde\xc6\xb7\x90\x6e\xc0\xde\xc6\x77\x37\xef\x01\xf7\x6e\x7c\x5d\x71\x8d\x39\xae\x87\x75\x18\x1c\x1d\x1d\xb5\xcd\x38\xbc\x19\x39\x41\xac\x38\xb5\x8a\x2f\xf8\x3e\x8c\xa6\x43\x80\x1b\x99\x45\x7d\x71\x83\x6e\x47\xf4\xc2\x4c\x8a\x9b\x29\x1a\x93\x52\xe1\x0e\xf0\x76\x39\xdd\x0a\xdd\x27\x1e\x1e\xa7\xd8\xb0\xce\x72\x9f\xe0\xfd\x6c\x36\x8b\x67\x8f\x10\x0f\xe0\xc2\xf1\x13\xc3\x1d\x08\xdb\x79\xfa\x99\xaf\x43\x3b\xd0\xad\xe2\x1d\x21\x1f\x82\xee\xfe\x10\xfc\x0d\x00\x00\xff\xff\xae\x12\x08\x8b\xa6\x06\x00\x00" func stakingcollectionCreate_machine_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -5280,11 +5300,11 @@ func stakingcollectionCreate_machine_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/create_machine_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0xa9, 0xbc, 0xef, 0x3, 0x1e, 0x98, 0xd6, 0x4d, 0xb8, 0xc3, 0xa3, 0x9c, 0x38, 0x31, 0xcb, 0x72, 0x80, 0xa, 0x1, 0xee, 0xd9, 0x6, 0xe8, 0xc7, 0xe8, 0x77, 0x86, 0xd5, 0xd5, 0xae, 0x7f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0xdf, 0x3d, 0x5, 0xff, 0xf4, 0xd, 0xa2, 0x7, 0x81, 0x97, 0xc9, 0x37, 0xf5, 0x18, 0x28, 0x47, 0x12, 0xbc, 0x5b, 0x84, 0x1f, 0x3e, 0xac, 0x1c, 0x12, 0x62, 0x6e, 0xaf, 0x13, 0x2f, 0x4e}} return a, nil } -var _stakingcollectionCreate_new_tokenholder_acctCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\xdf\x6f\xe2\x46\x10\x7e\xe7\xaf\x98\xbe\x54\x20\x11\xe8\x33\x4a\x4e\x42\x84\xbb\x46\xd0\x23\x2a\xb4\x7d\xa8\xfa\xb0\xb1\x07\x7b\xcb\xb2\x6b\xed\x0e\xe4\x50\x94\xff\xbd\xda\x1f\xb6\x77\xc1\xe8\x88\x54\xe9\x78\x49\x6c\xcf\x7c\xf3\x7d\xdf\xcc\x8e\xcd\xf7\x95\xd2\x04\x33\x7d\xaa\x48\xf5\xc2\xd5\x67\xa1\x5e\x37\x6a\x87\x12\xb6\x5a\xed\xe1\x97\x6f\x9f\x97\xab\xbf\x36\xab\xc5\xfc\xeb\xf4\xf1\xf1\xf7\xf9\x7a\x5d\x07\x2e\x55\xb6\xc3\xdc\x85\x9a\x3a\x76\xb9\x9a\x2d\xe6\x8f\x5d\xd1\x16\x76\x4d\x6c\xc7\x65\x31\x53\x42\x60\x46\x5c\x35\x25\xd6\x9b\xe9\xe2\xe9\xeb\x97\xd9\x6a\xb9\x9c\xcf\x36\x4f\xab\x26\xb9\x37\x1e\xc3\xa6\xe4\x06\x48\x33\x69\x98\x4f\x62\x42\xa8\x57\x03\x54\x22\x64\x4a\x92\xb6\x70\x1a\xd4\xd6\xdd\x11\x8e\x15\xb0\x2c\x53\x07\x49\x36\x9f\x14\x64\x1a\x19\x21\x30\x90\xf8\x9a\xf0\x1e\xb9\x3f\xbf\x2a\x91\x5b\x84\x97\x7f\x31\x23\x60\x32\x07\x43\x4a\x23\x70\x02\x2e\x43\x56\x04\xc8\x84\x51\xc0\xf2\x9c\xcb\x02\x18\x18\x2f\x0a\xb2\x56\x55\x00\x22\xe5\x18\xc5\xd9\x36\x7d\x81\x58\x59\xdc\x3d\x97\x39\x50\xc9\x08\xc8\x2a\xcc\x15\x1a\x90\xca\x96\x3c\x32\xc1\x73\x4b\xd8\xa6\xe3\x37\x6e\xc8\x16\x88\xa9\x46\x6c\x36\x2a\xcd\x60\x54\x3f\x1d\xc2\x49\x1d\x40\x22\xe6\x96\x0a\x72\x2a\x51\x43\x8e\x02\x03\x72\x0c\xa8\xd1\xa8\x83\xce\xd0\x22\x2a\x7b\x79\x54\x3b\xb4\x4e\xc3\x0e\x4f\xa1\xbd\x31\x76\xaf\x17\x75\xa4\x5f\x1d\x5e\x04\xcf\x16\x78\x32\x13\xf8\xdb\x8f\xd3\x68\x81\xa7\x25\x37\x34\x97\xa4\x4f\xff\x0c\xe0\xad\x07\x00\x50\x69\xac\x98\xc6\xbe\xe1\x85\x44\x3d\x81\xe9\x81\xca\xa9\x47\xb4\x21\x2e\xc6\xfe\xc6\x63\x98\xf9\x9e\x9d\x39\xe8\xba\xc3\xf2\x1c\x7c\x49\xc7\xae\xc9\x12\x48\x36\x36\x00\xc2\x43\x0c\xdf\xaf\xd8\xc9\x56\xf4\x95\x07\x4d\xce\x56\x69\x0b\x62\x1b\xd2\xaa\x08\x6c\xeb\x5f\x8b\x39\xb2\xf5\x46\x2c\xcf\x5b\xc9\x13\x9b\x3e\x6a\x2e\x87\x50\x32\x53\x4e\x45\xa1\x34\xa7\x72\xef\x9f\x26\xb7\x86\xf0\x8a\xbc\x28\xc9\x3f\xf2\xff\xb7\x7c\xde\x13\x13\xbe\x20\xb5\xad\xfa\x8d\x49\x56\xa0\x86\x19\xab\xd8\x0b\x17\x9c\x4e\x75\x5f\x2e\xc6\x3e\x76\x84\xa2\xdc\x28\xf5\x21\x58\x91\x28\x1d\x15\x48\x6d\xcc\xfd\xcf\xc9\x59\x89\x2e\x02\xdc\xa7\x7e\x92\xfd\x9d\xe8\x67\xcd\x8f\x8c\xf0\x99\x51\x39\x48\x54\xfe\x61\x7c\x9f\xf7\x41\x60\xd6\xb2\x3c\x3f\xbc\xd1\xcc\x5e\x8a\x0c\xb3\x7c\x7f\x97\x32\xf1\x00\x51\x66\xca\xda\x5b\x37\xcd\x73\x8d\xc6\xd4\x03\x62\x7b\x6c\xaf\x87\x49\x68\x6c\xe5\xe4\x8a\xb1\x4d\x42\xaa\x71\xcd\x8e\xd7\x4f\x5d\xc7\xaa\x70\x83\xde\x48\x0f\xd3\x9e\x5d\x56\x89\x66\xd3\xb0\x23\xa6\xd2\xee\xef\x22\x5f\xce\xa5\x4c\xae\x6e\xc2\x35\x29\xcd\x0a\xd7\xa8\x61\x97\x9c\xa8\xa6\xe0\x72\x77\x36\x26\x11\xd0\x5b\xc7\x44\x84\xcc\x27\xb9\x55\xef\xdf\x9f\x9f\x28\xfa\xd9\x79\x90\x92\x72\x4a\x98\x2e\x90\x6e\x52\x13\x8b\xe9\xd8\x35\x95\x1f\xd0\xd6\x66\x8e\xc6\x2d\x08\xdb\x1b\xe7\x24\x94\x61\xff\xca\x1c\x0e\x32\x1c\xba\x23\x3b\x88\xf4\xc8\xf9\x07\xa1\xc9\x0f\xb7\xfb\xf5\xa9\x3f\x0e\x1c\xc6\xdb\xfa\x35\x1c\x9a\xf7\x11\x99\x83\x9f\x12\x36\x0d\x54\x17\x95\xe6\x75\x3f\xfa\xd3\xca\xe8\x62\xe0\x1e\xb4\x04\xc6\xc6\x57\x3a\x0b\x88\x8a\x76\x58\xeb\x4f\x6f\xf8\x00\x80\xe8\x0b\xc0\x3a\x59\x1d\x28\xbc\x6b\x03\x74\x03\xc0\xb7\x89\x97\xa3\xac\xc4\x6c\xd7\x1f\x5c\xdf\xcf\xee\x0c\xdc\xdf\x75\x7e\x6d\x84\x45\x70\x71\xbf\x5f\x77\xd2\xe9\x98\xb4\x7e\x0d\xe3\xb5\x32\x49\x98\x0c\x86\xee\x04\x75\xd7\xb9\xb8\x13\xf7\xa6\xdd\xf4\x80\xc2\xe0\x8f\x91\x22\xb9\xf8\x3f\x14\x74\x1d\xa2\x66\x59\xd9\xf9\xaa\x17\xdb\xe5\x47\xd2\xf5\x65\x72\x23\xa3\xb7\x1b\xe3\xfc\xda\x38\x5f\x35\x1f\x4a\xbe\xbe\x73\x3e\xee\x5e\xb4\x82\xbc\x85\xef\xff\x05\x00\x00\xff\xff\xcf\xca\x4a\x4a\x86\x0b\x00\x00" +var _stakingcollectionCreate_new_tokenholder_acctCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x56\x49\x6f\xe3\x36\x14\xbe\xfb\x57\xbc\xc9\x21\x90\x00\x8f\x8c\x5e\x8d\x24\x40\x6a\x74\x43\xa6\x68\x80\xa4\xd3\xc3\x20\x07\x46\x7c\x96\x58\xd3\xa4\x40\x52\x76\x85\x22\xff\xbd\xe0\x22\x89\x94\xe5\xc6\x5d\x50\xa0\xbe\x58\x24\xdf\xf2\xbd\xef\x2d\x24\xdb\x37\x52\x19\xd8\xa8\xae\x31\x72\x11\x56\xdf\x72\x79\x7c\x96\x3b\x14\xb0\x55\x72\x0f\x57\xc3\xfa\x6a\x90\x68\x45\xc5\x5e\x39\x26\x52\xf1\xde\x20\xf9\x49\x96\x3b\xa4\x6e\x4f\x07\xc1\x78\xeb\x2a\xf6\xf9\x64\xc8\x8e\x89\x6a\x23\x39\xc7\xd2\x30\x19\xfb\x3f\x39\xbb\x5a\x2c\x56\x2b\x78\xae\x99\x06\xa3\x88\xd0\xc4\x6b\x10\xce\xe5\x51\x83\xa9\x11\x4a\x29\x8c\xb2\xf2\x0a\xe4\xd6\xed\x70\xe7\x19\x48\x59\xca\x56\x18\xab\x6f\x24\x94\x0a\x89\x41\x20\x20\xf0\x98\xc0\x2d\xdc\xdf\xf7\x92\x53\x6b\xe1\xf5\x57\x2c\x0d\x10\x41\x41\x1b\xa9\x10\x98\x01\x26\x82\x56\x64\x90\x70\x2d\x81\x50\xca\x44\x05\x04\xb4\x47\x0d\xe5\x18\x52\x30\x64\xa4\x43\x14\x6b\x5b\xf5\x07\xc4\xc6\xda\xdd\x33\x41\xc1\xd4\xc4\x80\xb1\x11\x52\x89\x1a\x84\xb4\x2e\x0f\x84\x33\x6a\x01\x5b\x75\xfc\x8d\x69\x63\x1d\xc4\x50\x23\x34\xcf\x32\xd5\x20\xa6\x3f\x5d\x42\x27\x5b\x10\x88\xd4\x42\x41\x66\x6a\x54\x40\x91\x63\xb0\x1c\x1b\x54\xa8\x65\xab\x4a\xb4\x16\xa5\x5d\x1e\xe4\x0e\x2d\xd3\xb0\xc3\x2e\x64\x35\xb6\xbd\x58\x44\x19\xc9\x9a\xf6\x95\xb3\xf2\x01\x3b\xbd\x86\x2f\xbe\xd0\x8a\x07\xec\x3e\x31\x6d\xbe\x11\x46\x75\x2f\x39\xfc\xbe\x00\x00\x68\x14\x36\x44\x61\xa6\x59\x25\x50\xad\x81\xb4\xa6\xce\xbe\x96\x4a\xc9\xe3\x67\xc2\x5b\x5c\xc2\x93\x91\x8a\x54\xb8\x84\x0d\x69\xc8\x2b\xe3\xcc\x30\xd4\x39\x5c\xdf\x7b\xbf\xd6\x90\xb3\x64\x7f\xab\x15\x6c\x7c\x66\x27\x3c\xbb\x1c\x12\x4a\xc1\x03\x73\x31\x14\x83\x1a\x47\x63\x85\x83\x45\xb8\x85\xf0\x95\x35\xa4\xb3\xa0\x3c\xb8\x7c\x90\xdf\x4a\x65\x2d\xd8\x9c\x8d\x81\x86\x80\xfa\xdf\x68\xaf\x70\xce\x08\xa5\x23\x2b\x6b\xab\x5e\x0c\xcb\x25\xd4\x44\xd7\xf7\xbc\x92\x8a\x99\x7a\xef\x4f\x93\xad\x25\x1c\x91\x55\xb5\xf1\x47\xfe\x7b\xc4\xf3\x96\x30\xf0\x1d\x9a\x31\x9b\x3f\x12\x41\x2a\x54\x23\x79\x5d\x9f\xba\x69\x67\xa4\x74\x98\x48\x79\xd4\xdd\x8c\xdd\x75\x1b\x58\x29\xca\x28\x2d\x85\xf6\xc9\x2a\x2a\x34\xa3\xac\xce\xb6\x52\x3d\x12\x53\xaf\xd3\x56\x8b\x16\xc1\x53\xc8\xb5\x95\xcd\xbf\x7c\xf5\xf2\xe1\x02\x48\x70\xfb\x2e\xd6\x11\x62\x07\x44\x7f\x88\xb8\xb8\x71\xe5\x96\x0c\xb1\xe2\x17\x66\x6a\xaa\xc8\x31\x87\xeb\x77\xd0\xde\x25\xb4\xff\xac\x7d\xd5\xed\x03\xe3\x91\xd3\xe9\xc0\x89\xfa\x6c\x86\xf5\xd0\x80\x37\x1f\x53\xb6\xbc\x85\x48\x35\x4b\xea\xcd\x27\xf3\x9e\x52\x85\x5a\xf7\x25\x6b\xab\xce\xae\x97\x89\x68\xcc\xd7\xfa\x0c\x7b\x83\x42\x9e\x04\xf9\x44\x0e\xe7\x47\xc5\xcc\x7c\x73\x7d\x37\xc4\x1e\x9a\x6f\x64\x66\x8c\x3e\x6a\x97\xbe\x86\x34\x39\x60\x1a\xe3\xcd\xc7\x88\xa0\x69\x4c\xeb\xb3\x73\x3c\xaa\xaa\xb9\xb0\x26\xc4\x6f\x48\x03\xb7\x31\x9e\xb9\x02\x4f\x7c\x17\x4c\xeb\x16\x6f\xae\xcf\xf9\xbf\xcb\x2e\x40\x96\xcf\x51\x91\xb8\x76\xec\xe9\x3a\x3b\xcd\xe5\x00\x3c\xe5\x84\x98\xd9\x86\x0b\xc6\x7f\x10\x5b\xf9\xe8\x12\x32\x25\x66\x66\x9c\xc6\x40\xdc\xf8\xb3\x79\x76\xbe\xa1\x0e\x17\x90\xa0\xd0\x8a\x30\x52\x0e\xa4\xe5\x93\x81\xe2\x4f\x42\xc5\xbc\xcb\x6f\xa0\xf4\x4f\xda\x73\x39\x93\xee\x9f\x1a\x54\xc4\xde\x3f\x7a\xda\xbc\x7f\x3f\x1b\x16\xfb\x76\x78\x1b\xfd\x0b\xc0\x73\xb8\x1e\xde\x56\xc5\x67\x4b\xd4\x5d\xb6\x0a\xda\xab\xc1\x93\x3b\x18\x51\xcc\xa4\xc4\x8f\x92\xf0\x44\x82\xe8\xfd\x64\x33\xd1\xb4\x26\x3c\x56\x7a\x5c\x83\x05\xb6\x4d\x72\x51\x94\x35\x96\xbb\x2c\x3f\x7f\x7d\x9d\xef\x47\xdf\x93\xf3\xcf\xb8\x30\xaf\x4e\xf6\x4f\x2d\xd8\x5f\x5f\x39\x2e\xec\xf5\x48\xf8\x72\x56\x3a\x2a\xfa\x75\x12\xcc\x89\x74\x7e\x6a\xc0\x4e\x8a\x79\xc4\x27\x3b\x73\x83\xc3\xf7\x48\xff\xf5\x06\xc8\x35\xfe\x6f\xb9\x13\x8c\xff\xf7\x94\x25\xf3\xe5\xd1\x0f\x35\x20\x93\xfb\xd2\xbd\xe5\x1d\x0b\x74\xe6\x41\x9d\x8e\x16\x3d\x05\x71\xd1\x08\xef\xa7\xf6\x85\x81\xdd\xa5\xe4\xff\x03\x3a\xa2\xab\xe7\x2f\x8d\xfa\xb9\x30\x4f\x07\xfe\x85\xc0\x66\x27\xbf\x4f\xcf\xdb\x1f\x01\x00\x00\xff\xff\x67\x6a\x0f\xb0\x20\x0e\x00\x00" func stakingcollectionCreate_new_tokenholder_acctCdcBytes() ([]byte, error) { return bindataRead( @@ -5300,11 +5320,11 @@ func stakingcollectionCreate_new_tokenholder_acctCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/create_new_tokenholder_acct.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4a, 0x6f, 0x86, 0x43, 0x9d, 0xd1, 0x12, 0x9a, 0x67, 0xc7, 0xb5, 0xa4, 0x61, 0xe7, 0xd2, 0x2d, 0xd0, 0xeb, 0x97, 0x91, 0x68, 0xc2, 0xff, 0x73, 0x7e, 0x83, 0xb3, 0x4b, 0x5c, 0x10, 0x33, 0x7f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xef, 0xf3, 0xe8, 0xc5, 0x56, 0xc1, 0x18, 0x8f, 0xbe, 0xfd, 0x7b, 0xd1, 0x27, 0x19, 0xc8, 0x43, 0xae, 0x40, 0x33, 0x7e, 0x5e, 0xc0, 0x12, 0x42, 0x93, 0xe2, 0x91, 0xa7, 0xa, 0xc7, 0x40, 0x5f}} return a, nil } -var _stakingcollectionDeploy_collection_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8d\xb1\x6a\xc4\x40\x0c\x44\xfb\xfd\x8a\x29\x6d\x08\x76\x7f\xdd\x41\x8a\x54\x69\x42\x3e\x40\x68\xc5\x9d\xb1\x2d\x99\x5d\x1d\x24\x84\xfb\xf7\xb0\x0a\x6b\xb2\x85\x16\x8d\x66\xe6\xcd\x33\x5e\xe5\xd8\xec\xbb\x82\xc0\xa6\x5e\x88\x1d\x6e\x20\x05\x31\xdb\x43\x3d\xcd\x33\x3e\xab\xe4\xa6\xe6\xf0\xc2\xef\x82\xea\xb4\x2e\x7a\x03\xdb\xb6\x09\xfb\x62\xda\x0c\x71\xa1\x5d\x7a\x18\x54\x43\xdb\x8c\xd7\xa8\x58\x45\xeb\x09\x4a\xc9\x0b\x69\xa5\x88\x0f\x5d\x7d\xa7\x5d\x2e\xf8\xf0\xb2\xe8\xed\x05\x6c\xf9\xdc\x46\xfc\x24\x00\x88\x71\x14\x39\xa8\xc8\x40\x79\x5f\xf4\x82\xeb\xc3\xef\xd7\x3f\x68\xb7\xb5\x17\xd7\xa9\x57\xd7\x89\x72\x1e\x34\x00\xff\x71\x1d\xd3\xe6\x94\xa5\x7d\x6f\xf2\x35\x8c\x63\xf4\x3c\xd3\x33\xfd\x06\x00\x00\xff\xff\xa7\x5f\x56\xfd\x29\x01\x00\x00" +var _stakingcollectionDeploy_collection_contractCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8e\xb1\x6a\xc4\x30\x10\x44\x7b\x7d\xc5\x54\x41\x86\x60\xf7\xd7\x1d\x49\x91\x2a\x4d\xc8\x07\x2c\xda\xe5\xce\xd8\x5e\x19\x69\x0f\x12\xc2\xfd\x7b\xd0\x26\x32\xa7\x62\x85\x46\x33\xf3\x76\x9a\xf0\x2a\xfb\x9a\xbf\x2b\x08\x29\xab\x15\x4a\x06\xcb\x20\x05\xa5\x94\x6f\x6a\x61\x9a\xf0\x59\x85\x9b\xca\xee\x85\x5d\x05\xd5\x68\x99\xf5\x82\x94\xd7\x55\x92\xcd\x59\x9b\xc1\x7f\x68\x93\x1e\x06\x55\xd7\xd6\x9c\x16\xaf\x58\x44\xeb\x01\x0a\xc1\x0a\x69\x25\x8f\xc7\xae\xbe\xd3\x26\x27\x7c\x58\x99\xf5\xf2\x8c\x94\xf9\x78\x0d\xf8\x09\x00\xe0\x63\x2f\xb2\x53\x91\x48\xbc\xcd\x7a\x02\xdd\xec\x1a\xcf\xcc\x2f\xff\x2d\x03\x9e\xce\x7f\x3b\xf4\x54\x3b\x6e\x1e\x3b\xa9\x8e\xc4\x1c\xd5\x79\x8f\xf4\x4e\x6d\x73\x64\x69\xd7\x9b\x7c\xc5\x61\xf0\x9e\x7b\xb8\x87\xdf\x00\x00\x00\xff\xff\x97\xdc\x67\x42\x38\x01\x00\x00" func stakingcollectionDeploy_collection_contractCdcBytes() ([]byte, error) { return bindataRead( @@ -5320,11 +5340,11 @@ func stakingcollectionDeploy_collection_contractCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/deploy_collection_contract.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbd, 0x3e, 0xf2, 0xcf, 0xfd, 0x65, 0x3, 0xfc, 0xc1, 0x73, 0xff, 0x84, 0x1f, 0xad, 0xc6, 0xe3, 0x57, 0x8d, 0x57, 0x22, 0x89, 0xc2, 0x14, 0x62, 0x4d, 0x1f, 0x9d, 0xae, 0xb6, 0x6b, 0xe4, 0x55}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0x65, 0xef, 0x78, 0xd5, 0x3e, 0x89, 0x71, 0xda, 0x8b, 0xc, 0x78, 0x34, 0x3c, 0x6e, 0xb9, 0x9, 0xa0, 0x2b, 0x75, 0x35, 0xbf, 0x9f, 0x65, 0xdd, 0xa, 0x3e, 0x8b, 0x30, 0xd, 0x4b, 0x10}} return a, nil } -var _stakingcollectionRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\x82\x40\x10\xbd\xf3\x15\x13\x0f\x0d\x26\x0d\xf6\xd0\xf4\x40\xda\x1a\x02\xda\x98\x1a\x6d\xc4\x7e\xc0\x76\x19\x70\x23\xec\x90\x61\x88\x26\x8d\xff\xde\xc0\x62\x3d\xe8\xc1\x3d\x40\x60\x67\xde\x7b\xf3\xde\x98\xaa\x26\x16\x98\x97\x74\x48\x45\xed\x8d\x2d\x62\x2a\x4b\xd4\x62\xc8\x42\xce\x54\xc1\xd3\x31\xdd\x46\x9f\x8b\xd5\x47\xbc\x5e\x2e\x67\xf1\x76\xb1\x5e\x45\x49\xb2\x99\xa5\xa9\xe7\x4d\x26\x13\xd8\x60\x61\x1a\x41\x6e\x40\x41\x86\x25\x16\x4a\x88\xc1\x58\x90\x1d\x42\xe3\x30\x41\x5f\x40\x19\x1b\x6a\x59\x63\xdf\x9c\x13\xbb\xba\x1a\xb5\xc9\x0d\x66\x60\x29\xc3\x45\x02\xca\x66\xfd\x85\xaa\xa8\xb5\x02\x94\x83\xd0\x1e\x6d\x03\x42\xa0\xa9\xaa\x8c\x78\x9e\xb0\xb2\x8d\xea\x51\x7d\x93\x85\x90\x0a\x1b\x5b\x3c\x0e\x3d\x21\x7c\xcf\xcd\xf1\xe5\x79\x0c\xbf\x1e\x00\x40\xff\x28\x51\xce\x9a\x2e\x73\x6e\x30\x0f\xe1\xe1\xa6\x05\xc1\xd5\x1f\xaf\xc7\xa9\x19\x6b\xc5\xe8\x2b\xad\x1d\x57\xd4\xca\x2e\x72\x1f\x67\xc2\xee\x34\x58\xe6\xc1\x2d\x42\x78\x83\xa1\x37\xf8\x21\x66\x3a\xbc\xde\x2b\xe0\xdd\xef\x62\x09\x6f\x47\x76\x5d\x9e\x0a\xb1\x2a\xf0\x4b\xc9\x6e\xfc\x2f\xab\x3b\xd3\x29\xd4\xca\x1a\xed\x8f\x62\x6a\xcb\xce\x78\x01\x27\x05\x18\x3b\xbb\xe1\x0a\x6b\xe4\x10\x4e\xce\x03\x3c\xa2\x6e\x05\xef\x99\x36\xe0\x61\x49\x92\xf3\x82\xf8\x2e\xe7\x10\x4c\x76\x09\xcc\xbd\xc7\x0e\x6c\xa0\x3a\x79\x7f\x01\x00\x00\xff\xff\xdd\x5f\xdf\x77\xa3\x02\x00\x00" +var _stakingcollectionRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x31\x8f\xd4\x40\x0c\x85\xfb\xfc\x8a\xa7\x2d\x8e\x44\x42\xd9\x06\x51\x44\xc0\x09\xee\x74\x12\x15\xe8\x56\xd0\x9b\x89\x93\x1d\xdd\x64\x1c\x79\x1c\xed\x21\x74\xff\x1d\x25\x93\x65\x8b\x4d\x41\x73\x53\x24\x51\x6c\x3f\x3f\x7b\x3e\x3f\x8c\xa2\x86\x87\x20\xa7\x83\xd1\x93\x8f\xfd\x9d\x84\xc0\xce\xbc\x44\x74\x2a\x03\x76\x9b\xb1\x5d\x51\xec\xf7\x7b\x3c\x72\xef\x93\xb1\x26\x10\x5a\x0e\xdc\x93\x89\xc2\x47\xd8\x91\x91\x72\x11\xdc\x45\x51\x39\xc9\xa4\x8e\x97\xe2\x4e\x34\xe7\x8d\xec\x7c\xe7\xb9\x45\x94\x96\xbf\xde\x83\x62\xbb\x04\x68\x90\x29\x1a\xa4\x83\xc9\x13\xc7\x04\x13\x38\x19\x06\x6f\x45\x61\x4a\x31\xd1\xa2\x5a\xfa\xb6\xc1\xc1\xd4\xc7\xfe\xed\x5a\xd3\xe0\xc7\x83\x7f\x7e\xff\xae\xc2\x9f\x02\x00\x96\x47\x60\x3b\x7b\xba\x0c\xf2\xc8\x5d\x03\x9a\xec\x58\x6e\xce\x59\x5f\x3e\xbf\x9d\x22\x6b\x85\x9b\xed\xbc\xab\x3f\xc5\xd2\x73\x54\x1e\x49\xb9\x24\xe7\xb2\xaf\xa5\xd5\x17\x51\x95\xd3\x4f\x0a\x13\x57\xb8\xf9\x9c\x63\x67\xaf\xf3\x49\x1c\xba\x7a\xcb\x2b\x3e\x62\x95\xaa\x93\x89\x52\xcf\xf5\xaf\x45\xec\xc3\x6b\xcc\xf0\xa9\x9c\x11\x68\xb6\xf1\xb8\x4e\x3f\x64\x47\xdf\xc9\x8e\xd5\xbf\x51\xe6\x73\x7b\x8b\x91\xa2\x77\xe5\xee\x4e\xa6\x30\xdf\xb3\x21\xdb\x06\x41\xb9\x63\xe5\xe8\x78\xbe\x5e\xc2\x35\x86\x2b\x4e\xa3\xfa\x81\xf4\x37\xa6\xc4\xfa\x26\x9d\xd7\xb0\xcb\x9d\x5e\xf2\xba\xf9\x99\xdd\x64\xfc\x3f\x9b\xac\x75\x65\xf7\xfe\xcc\x6d\x99\xf1\x6b\xe0\xdb\x0b\x47\xf9\x5d\x65\xb1\xb5\xd5\x4b\xf1\x37\x00\x00\xff\xff\x50\xb7\x12\x6d\x37\x03\x00\x00" func stakingcollectionRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -5340,11 +5360,11 @@ func stakingcollectionRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x61, 0x18, 0x59, 0x73, 0x8c, 0xe4, 0x18, 0x5c, 0xc3, 0x6a, 0x63, 0xba, 0xf1, 0x3a, 0x2f, 0x4c, 0x28, 0x93, 0x6e, 0x5a, 0x61, 0x2f, 0xfc, 0x43, 0xe1, 0x29, 0x1a, 0xec, 0xc8, 0xdf, 0x45, 0x55}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x24, 0xb5, 0x3c, 0x3f, 0x4c, 0x1c, 0x87, 0xd4, 0xd0, 0xf5, 0x99, 0x13, 0x52, 0x85, 0x4e, 0xe2, 0x34, 0xbe, 0xc5, 0x5b, 0xb0, 0xd5, 0x7, 0xb7, 0x78, 0x4c, 0x27, 0xcd, 0x8a, 0xf5, 0x38, 0xf6}} return a, nil } -var _stakingcollectionRegister_multiple_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x6b\xdb\x4e\x10\xc5\xef\xfa\x14\x8f\x1c\xfe\xc8\xfc\x8b\x9d\x42\xe9\x41\x34\x0d\xc6\x4e\x8a\x69\x48\x8a\x95\x9e\x82\x0f\x5b\x69\x24\x0f\x59\xed\x88\xdd\x51\x63\x28\xfe\xee\x65\x25\xcb\x49\xb1\x29\xdd\x83\x40\xc3\xec\x6f\xde\xbe\x37\xdc\xb4\xe2\x15\xb7\x56\x5e\x72\x35\xcf\xec\xea\x85\x58\x4b\x85\xb2\x38\x54\x5e\x1a\x5c\xee\xf2\xc7\xf9\xd7\xd5\xfd\x97\xc5\xc3\xdd\xdd\xcd\xe2\x71\xf5\x70\x3f\x5f\x2e\xd7\x37\x79\x9e\x24\xb3\xd9\x0c\x6b\xaa\x39\x28\xf9\x80\xa6\xb3\xca\xad\x25\x94\x64\xa9\x36\x2a\x3e\x80\x1d\x74\x4b\x08\x03\x1b\xc5\x2b\xdc\x53\x90\xce\x17\xd4\x43\x2a\xf1\x43\x5f\x4b\x05\x57\x4c\x25\x9c\x94\xb4\x5a\x06\x18\x57\xc2\x34\xd2\x39\x85\x54\x50\x79\x26\x17\xa0\x82\x42\x9a\x86\x35\x49\xd4\x1b\x17\x4c\x8f\x4c\xb9\x0c\x19\x9e\x72\xf5\xec\xea\xcd\xbb\xc3\xb5\x58\xfa\x7e\xcb\xbb\x8f\x1f\x36\x13\xfc\x4a\x00\xa0\xff\x58\xd2\x51\xd6\xeb\x93\xd7\x54\x65\xf8\xef\xac\x1b\xd3\x93\x4a\xd2\x73\x5a\x4f\xad\xf1\x94\x9a\xa2\x88\xe3\x32\xcc\x3b\xdd\xce\x87\x9f\x71\x60\x3c\x81\x6c\x35\x3d\x37\x10\x57\x38\xdc\x9d\xfe\x10\xef\xe5\xe5\xd3\xbf\x0a\xf8\x9c\xc6\x84\xb2\xf3\xe9\x9d\xb6\xe7\x2a\xde\xd4\xf4\xcd\xe8\x76\x72\x94\x15\xcf\xf5\x35\x5a\xe3\xb8\x48\x2f\x16\xd2\xd9\xe8\xbd\x62\x90\x02\x4f\xd1\x74\x9c\xb0\x2e\x06\xc2\x7e\xf0\x80\x76\x54\x74\x4a\x6f\x5e\xfb\xd3\x78\x30\xae\x70\x79\xac\xc4\x88\xb9\x8c\x0b\xc1\x65\x78\xd3\xf9\x57\x6f\xa6\xfe\xb0\x5d\xcb\x71\xa5\xd2\x61\x31\x32\x70\x39\x26\x9c\x8d\x49\x3f\xf1\x66\xd2\xe7\xfb\x07\x3c\xca\x60\xfc\x8f\xf7\xc7\xea\xfe\xa0\x7d\x9f\xfc\x0e\x00\x00\xff\xff\x07\x6b\xf3\x42\xff\x02\x00\x00" +var _stakingcollectionRegister_multiple_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x6b\xdc\x30\x10\xc5\xef\xfe\x14\x8f\x3d\x04\x2f\x2d\xde\x16\x4a\x0f\xa6\x69\x68\x13\x02\x3d\xb5\x64\x69\x2f\x61\x0f\xaa\x3c\xf6\x0e\x91\x25\x33\x1a\x77\x03\x65\xbf\x7b\x91\xff\xec\xa6\xac\xe9\xad\x3a\x18\x33\x1a\x3d\xbd\x37\xfa\x71\xdb\x05\x51\xdc\xbb\x70\xd8\xaa\x79\x62\xdf\xdc\x06\xe7\xc8\x2a\x07\x8f\x5a\x42\x8b\xd5\xe2\xde\x2a\xcb\x36\x9b\x0d\x1e\xa8\xe1\xa8\x24\x11\x6d\xef\x94\x3b\x47\xa8\xc8\x51\x63\x34\x48\x04\x7b\xe8\x9e\x10\xc7\xc3\xb0\x67\x65\xa1\x18\x7a\xb1\x34\x88\xd4\x41\xc6\xbe\x8e\x2c\xd7\x4c\x15\x7c\xa8\xe8\xcb\x5d\x84\xf1\x15\x4c\x1b\x7a\xaf\x08\x35\x34\x3c\x91\x8f\xd0\x00\x1b\xda\x96\x35\xcb\x54\x8c\x8f\x66\x90\xcc\xb9\x8a\x25\x1e\xb7\x2a\xec\x9b\xdd\xeb\xe9\x58\x2a\x7d\xbf\xe7\xe7\xf7\xef\x76\x6b\xfc\xce\x00\x60\xf8\x38\xd2\xd9\xd6\x39\xd3\x03\xd5\x25\x4c\xaf\xfb\x7c\x31\x72\x71\xfe\xfd\x7a\xf0\x24\x6b\x5c\x2d\xf7\x5d\x54\xb2\xe1\xce\x4e\xa8\x33\x42\xb9\xb1\x36\x59\x9b\xae\xfa\x1c\x44\xc2\xe1\x87\x71\x3d\xad\x71\xf5\x69\xdc\x9b\xbd\xa6\x15\xc9\xd5\xc5\x92\x57\x5c\x63\x92\x2a\xa2\x06\x31\x0d\x15\x3f\x07\xb1\x0f\xff\x23\xc3\xc7\x3c\xd1\x50\x2e\x93\x72\xd9\xbe\x1d\x1d\x7d\x33\xba\x5f\x9f\xa2\xa4\x75\x73\x83\xce\x78\xb6\xf9\xea\x36\xf4\x2e\x3d\xb5\x62\xb4\x0d\xa1\xf4\xc6\xb8\x64\x6d\x54\x38\x8e\x63\xa4\x67\xb2\xbd\xd2\x8b\x09\xfd\x32\x02\xc6\x35\xde\x9c\x2a\x89\x28\xae\x12\x7f\x5c\xc5\x17\x9d\xff\x9c\x67\x21\x13\xcc\x77\x33\xc1\xf9\xc8\x61\x09\xae\x66\xa0\xca\x19\xac\x47\xde\xad\x07\x9c\xfe\x12\x4f\x36\x18\xaf\xf0\xf6\x54\x3d\x4e\xde\x8f\xd9\x9f\x00\x00\x00\xff\xff\x02\xdc\x8f\x76\x6b\x03\x00\x00" func stakingcollectionRegister_multiple_delegatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -5360,11 +5380,11 @@ func stakingcollectionRegister_multiple_delegatorsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_multiple_delegators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8f, 0x31, 0xb5, 0x31, 0x72, 0x2e, 0x40, 0x1a, 0xe0, 0xb2, 0x95, 0xdc, 0x95, 0xd2, 0xb2, 0xa6, 0xa4, 0x49, 0x7a, 0x4d, 0x6a, 0xfb, 0x84, 0x73, 0x52, 0x39, 0x78, 0xa8, 0xe1, 0x99, 0x65, 0x2e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x55, 0xaf, 0x3d, 0x1, 0xae, 0xfd, 0xe5, 0x9b, 0xc1, 0x4a, 0xad, 0x60, 0x30, 0x97, 0x5b, 0xd3, 0xfd, 0xb2, 0x73, 0x19, 0xdf, 0x4b, 0x61, 0x5e, 0xa7, 0x53, 0x2c, 0x3a, 0xd1, 0xce, 0xe5, 0xb4}} return a, nil } -var _stakingcollectionRegister_multiple_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\x5d\x4f\xdb\x30\x14\x86\xef\xf3\x2b\xce\xb8\x98\x5a\xad\x0a\x4c\x9a\xa6\x29\x5a\x87\xaa\x02\x13\x2a\x82\x89\xb2\xab\xaa\x17\x26\x3e\x49\x8e\x70\xec\xe8\xd8\xa5\x64\xc0\x7f\x9f\x9c\xa4\x1f\x21\xe9\x58\x2e\xaa\xfa\x7c\xbc\x7e\x73\xfc\x38\x94\x17\x86\x1d\x4c\xb9\x2c\x9c\x09\x9a\xd5\x85\x32\xeb\xb9\x13\x0f\xa4\xd3\xa9\x51\x0a\x63\x47\x46\x43\xc2\x26\x87\x93\xa7\xf9\xdd\x64\x76\x79\xfd\x73\x7a\x73\x75\x75\x3e\xbd\xbb\xbc\xb9\x9e\x9c\x9d\xdd\x9e\xcf\xe7\x41\x70\x7c\x7c\x0c\xb7\x98\x92\x75\xc8\x16\xf2\x95\x72\x54\x28\x04\x6d\x24\x5a\x20\x0d\x2e\x43\xb0\xb5\x2c\xc4\x3b\x5d\x46\x6b\x56\x1c\x63\xd5\x9f\x18\xae\xeb\x0a\x8c\x29\x21\x94\x55\x3b\x90\x4e\x0c\xe7\xc2\xd7\x07\x81\x63\xa1\xad\xa8\x9a\x07\x24\x6d\x04\x8b\xb9\x63\xd2\xe9\x72\x14\xc0\xde\xc3\x46\xa1\x4f\xfe\xbe\xd4\xee\xdb\x9b\x9c\x46\xb7\x36\xec\x9d\x4c\xa4\x64\xb4\x16\x0f\xca\xec\x4a\x67\x58\x1e\xac\x6a\xde\xeb\x5f\x25\x22\x37\x2b\xed\x2a\x47\x17\xf4\xf4\xf5\xcb\x9b\x74\xb1\xba\x57\x14\x37\x02\x8b\xfa\x40\xc2\x19\x96\x57\x64\xdd\xb9\x76\x5c\x2e\x4f\x97\x43\x78\xae\x7a\xaa\x1f\x85\x6e\xb3\xed\xee\x94\x6e\x31\x89\xe0\x63\xef\x01\x86\x9d\x48\x50\xe9\x14\x8c\x85\x60\x1c\x88\x38\xf6\x06\x23\x98\xac\x5c\x36\xa9\x17\x9b\x0d\xab\x57\x44\x95\x84\x7d\x1b\xc2\x18\x9a\xde\xf0\xde\x30\x9b\xf5\xf7\xff\x35\xf0\x63\xe0\xa1\x8a\xfa\x81\xeb\x96\xcf\x9d\x61\x91\xe2\x2f\xe1\xb2\x61\x6b\x76\xa7\xa7\x50\x08\x4d\xf1\xe0\x68\x6a\x56\xca\x33\xe3\xa0\xb6\x02\x8c\x09\x38\x03\x1d\xad\xa3\x61\xb0\x95\x78\x14\x0c\x04\x63\x38\xd9\x85\x3c\x87\x24\x3d\xb5\x24\xed\xde\x10\xfc\x43\x49\x35\xfb\x5c\xc4\x19\x69\x6c\x26\x05\xe3\xc3\x03\x0a\xb9\xb9\x15\xd7\x46\xe2\xa0\xa5\x55\xe9\xc9\x08\x48\x8e\x3a\x71\x0f\x70\x54\x63\xbc\xa0\x65\x37\xdf\x81\x38\xea\xe3\xfa\x9d\xd6\x19\x96\xd1\x1b\xc6\x7b\x3b\x76\x80\x47\xfb\xb0\xf7\xd6\xd6\xa4\x47\x1b\xe2\x7b\x6b\x0a\x51\x22\x47\x1b\x70\x86\xd0\x2a\x78\xee\xce\x28\xd9\xbb\x20\x0b\x5a\xc2\x78\x0c\x9a\x14\xbc\xbc\xb4\xe3\x1f\x42\x85\x3a\x75\x99\xcf\x9f\xf4\xe8\xd4\x5b\xd7\xa8\x08\xed\x39\x29\xd8\x3c\x92\x44\xf8\x83\x6c\xe0\x01\x4b\xbb\xfd\x06\x35\x07\xbc\xf1\x78\x34\xec\xa8\xbd\x76\x22\xbe\xf7\x01\x4b\x0f\x4e\xdb\xd7\x01\x2f\x6d\x88\x42\xbf\x7f\x28\xa4\x1c\x6c\x9b\x23\x2f\x17\x6e\x97\x23\xc8\x84\xcd\x26\x2a\x35\x4c\x2e\xcb\xeb\x6c\x2b\x34\x82\x35\x52\x9a\xb9\x3a\x55\xff\x7f\xcf\x79\x7b\xe5\xaf\x02\xc1\x27\xf8\x1c\xb4\xf3\xaf\xc1\x6b\xf0\x37\x00\x00\xff\xff\x09\x34\xd7\xde\x30\x06\x00\x00" +var _stakingcollectionRegister_multiple_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x4d\x6f\xd3\x40\x10\xbd\xfb\x57\x0c\x39\x54\xb6\x88\xdc\x22\x21\x84\x2c\x42\x55\x2a\x2a\xa1\x22\x40\xad\xe0\x12\xe5\xb0\xb5\xc7\xf6\xa8\xeb\x5d\x6b\x76\xdd\x60\xda\xfe\x77\xb4\x5e\xe7\xc3\xb1\x43\x4f\xf8\x10\xd9\x33\x6f\xde\xbe\x9d\x99\x17\xaa\x6a\xcd\x16\x2e\xb9\xad\xad\x0e\xfa\xaf\x2b\xa9\xd7\xb7\x56\xdc\x93\x2a\x2e\xb5\x94\x98\x5a\xd2\x0a\x72\xd6\x15\xcc\x26\x73\xb3\x20\x38\x3d\x3d\x85\x1b\x2c\xc8\x58\x64\x03\x55\x23\x2d\xd5\x12\x41\xe9\x0c\x0d\x90\x02\x5b\x22\x18\x5f\x07\xe9\x8e\x94\xd1\xe8\x86\x53\xec\xea\x73\xcd\x1e\x57\x63\x4a\x39\x61\xd6\x95\x03\xa9\x5c\x73\x25\x1c\x3e\x08\x2c\x0b\x65\x44\x57\x1c\x52\x66\x12\x58\xde\x5a\x26\x55\xac\xe6\x01\xec\x3d\xac\x25\xba\xe4\xcf\x2f\xca\xbe\x3f\xc8\x29\xb4\x6b\xcd\x4e\xc9\x45\x96\x31\x1a\x83\x47\x69\x76\xd0\x6b\x6c\x8f\xa2\xfa\x7b\xfd\x0b\x22\x2a\xdd\x28\xdb\x29\xba\xa2\xdf\xef\xde\x1e\xa4\xeb\xe6\x4e\x52\xda\x13\x2c\xfd\x34\xe2\x6b\x6c\xbf\x92\xb1\x9f\x95\xe5\x76\x75\xbe\x8a\xe0\xb1\xab\xe9\x7e\x24\xda\xcd\xb1\xbb\x31\xdc\x60\x9e\x80\x68\x6c\x19\x4e\x4e\x29\xde\xbd\x7e\x5f\x2b\xe4\x08\x4e\xa6\x71\xa3\x48\xd0\x9d\x59\x33\xd6\x82\x31\x14\x69\xea\x2e\xd3\x1f\xf5\x49\x33\xeb\xf5\x2f\x21\x1b\x8c\xe0\xe4\xc2\xe7\x36\x5a\xbb\xee\xa0\xcc\xe3\x29\xad\xb0\x80\x9e\x2a\x36\x56\xb3\x28\x30\xbe\xeb\xc8\x3e\xfc\x8f\x3b\x7c\x0c\xdd\x02\x27\xd3\xcb\x3d\x86\xdf\x7a\x45\x3f\x84\x2d\xa3\xc1\xa8\xce\xcf\xa1\x16\x8a\xd2\x70\x76\xa9\x1b\xe9\x56\xd4\x82\x97\x0d\x8c\x39\x58\x0d\x63\x7b\x44\xc1\x96\xe2\x41\x30\x10\x2c\xe0\x6c\x17\x72\x6b\x4f\x99\x33\x09\x65\x66\xaf\x71\xee\xa1\xbc\x1b\x75\x25\xd2\x92\x14\xf6\xdd\x85\xc5\xf1\xa6\xc6\xdc\x9b\xf0\x9b\xce\x30\x1c\x70\x75\x7c\x59\x02\x94\xcd\x47\x71\xe7\x97\xc4\xbb\x66\x49\xab\x71\x7e\xe4\x99\x64\xca\x46\x2f\x94\x5e\x63\x9b\x1c\x58\x6a\xb2\x62\xe7\xa7\x64\xdf\x5b\x93\x58\x6f\xac\x64\x63\xb0\x49\x4c\x2d\x5a\xe4\x64\xb3\x6c\x11\x0c\x00\x8f\xe3\x1e\xe5\x7b\x7e\x5c\xd2\x0a\x16\x0b\x50\x24\xe1\xe9\x69\x18\x7f\x15\x4b\x54\x85\x2d\x5d\xfe\x6c\x82\xc7\x1f\xed\x57\x45\x28\xb7\x27\x35\xeb\x07\xca\x10\xfe\x20\x6b\xb8\xc7\xd6\x6c\xff\xf2\xfa\x01\x6f\x34\xce\xa2\x11\xdb\xf3\x28\xe2\x6a\xef\xb1\x75\x8b\x33\xd4\x75\x44\xcb\x70\x89\x62\x77\x7e\x2c\xb2\x2c\xdc\x16\x27\x8e\x2e\xde\x7e\xce\xa1\x14\xa6\xbc\x90\x85\x66\xb2\x65\xe5\xb3\x83\xd0\x1c\xd6\x48\x45\x69\x7d\xca\xbf\xbf\xa4\x7c\xf8\xe5\xac\x40\xf0\x1a\xde\x04\xc3\xfc\x73\xf0\x1c\xfc\x0d\x00\x00\xff\xff\x27\x86\x76\xa0\x9c\x06\x00\x00" func stakingcollectionRegister_multiple_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -5380,11 +5400,11 @@ func stakingcollectionRegister_multiple_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_multiple_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc1, 0x8b, 0xd4, 0xe0, 0x9f, 0x32, 0x52, 0xb9, 0xc9, 0x8, 0x23, 0x5, 0x79, 0x81, 0x7e, 0x42, 0xcd, 0x96, 0x39, 0x91, 0x58, 0x2c, 0xf3, 0x42, 0x51, 0x86, 0x4b, 0xb9, 0x33, 0xf4, 0xff, 0x3a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3d, 0x96, 0x94, 0x8c, 0x6e, 0x12, 0x77, 0x29, 0x32, 0xd4, 0x1c, 0x47, 0x25, 0xdd, 0xdc, 0x25, 0xd1, 0x4c, 0x61, 0x97, 0x3e, 0xc1, 0x8e, 0xe8, 0xe7, 0x4b, 0x73, 0xea, 0xe7, 0xa, 0xfc, 0xd2}} return a, nil } -var _stakingcollectionRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x4f\xdb\x4e\x10\xbd\xfb\x53\xcc\x8f\xc3\x4f\x89\x84\x0c\x87\xaa\xaa\xac\xa6\x28\x0a\x50\xa1\x20\xa8\x08\x9c\xaa\x1e\x16\xef\xd8\x5e\x65\xbd\x63\x8d\x27\x0d\x2e\xe4\xbb\x57\xeb\xcd\x3f\x13\xa7\x6d\x0e\xce\xce\xce\xcc\x9b\x37\x7e\x4f\x36\x65\x45\x2c\x30\xe1\xa6\x12\x8a\xd6\xd1\xb5\xa5\xe5\x4c\xd4\xdc\xb8\x7c\x42\xd6\x62\x2a\x86\x1c\x64\x4c\x25\x9c\xbf\xcc\x1e\xc7\xd3\x9b\xbb\xaf\x93\xfb\xdb\xdb\xab\xc9\xe3\xcd\xfd\xdd\xf8\xf2\xf2\xe1\x6a\x36\x8b\xa2\xb3\xb3\x33\x78\xc0\xdc\xd4\x82\x5c\x83\x02\x8d\x16\x73\x25\xc4\x60\x1c\x48\x81\x50\x07\x4c\x48\x77\xa0\x8c\x35\x2d\x38\xc5\xb6\x39\x23\x0e\x75\x15\xa6\x26\x33\xa8\xc1\x91\x46\x30\x2e\x23\x2e\x55\x5b\xaf\x9c\x6e\x4b\x54\x49\x0b\x27\x40\x19\x08\xcd\xd1\xd5\x20\x04\x29\x95\xa5\x91\x28\x12\x56\xae\x56\x2d\xfe\xc0\xe8\x04\x66\xc2\xc6\xe5\xa7\x11\xec\xfd\x98\x2c\x26\xf0\x74\xe3\xe4\x53\x37\xe1\x50\x96\xc4\x9e\xe6\x58\x6b\xc6\xba\xee\xef\xdf\x95\x4d\xb1\xe9\x2f\x59\x6f\x7b\x34\x1f\x56\x48\xe0\xe9\xda\xbc\x7c\xfc\xd0\xcd\x55\x8b\x67\x6b\xd2\x29\x36\x75\x02\xdf\x83\x38\xf1\x14\x9b\x5b\x53\xcb\x95\x13\x6e\x7e\x5c\x0c\xe1\xb5\xed\x68\x1f\x16\x65\x33\x6e\x27\xd8\x03\x66\x09\xfc\xdf\xab\x65\x7c\x70\x13\xb5\x38\x15\x63\xa5\x18\x07\x2a\x4d\x03\xb7\xf1\x42\x8a\x71\x08\x36\x03\xdb\xd5\xd0\x66\x71\xdf\x40\x18\xc1\xba\x37\x7e\x26\x66\x5a\x7e\xfe\x57\x02\x5f\x06\xde\x5f\x49\xbf\xf7\x0e\xcb\x67\x42\xac\x72\xfc\xa6\xa4\x18\x76\xde\xdc\xc5\x05\x54\xca\x99\x74\x70\x32\xa1\x85\xf5\x0e\x12\x08\x54\x80\xd1\xbb\x05\x0e\xb0\x4e\x86\xd1\x16\xc2\x64\xed\xcb\x2c\x55\x5a\x18\x87\xeb\xd5\x61\x74\x7c\xe3\x98\xd7\x8e\xbf\x23\x8d\x83\x0e\x15\xef\x3d\xa3\xfb\x7c\xe7\x9f\x7f\xb5\xdd\xc1\xd5\x1f\x1d\xd8\x09\x8f\x1b\x71\x77\xee\x37\x63\xf8\x7f\x67\x46\xd5\x20\x27\x1b\x61\x87\xb0\x4d\xbe\x76\xd7\xcd\xf6\x6c\x0b\xa3\x11\x38\x63\xe1\xed\x6d\xef\xf2\xbf\xd8\xa2\xcb\xa5\xf0\xc9\xf3\x77\xdd\x61\x50\x10\x4e\x39\xaf\x5a\xc5\xf4\xd3\x68\x84\x5f\xc8\x04\x73\x8f\xb9\xf9\x3e\xac\xd5\xd9\x30\x3a\xe9\x3a\x60\xd5\x89\x7c\xcf\x1c\x1b\xff\x09\xda\x23\xd2\x33\xbc\x2b\x79\xec\x07\xc6\x4a\xeb\xc1\xb6\x2b\xf1\x38\xf1\x36\x3c\x85\x42\xd5\xc5\xd8\xe6\xc4\x46\x8a\x32\x64\x3b\x57\xa7\xb0\x44\x93\x17\x12\x52\xe1\x7c\x8c\x6a\x38\xad\xa2\x55\xf4\x3b\x00\x00\xff\xff\x67\xfb\x69\x9e\x92\x05\x00\x00" +var _stakingcollectionRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x51\x6b\xe3\x48\x0c\x7e\xae\x7f\x85\xc8\x43\xcf\x86\xe0\xe6\xe0\x38\x0e\x73\xd9\xd2\x2d\x94\x2e\x85\xdd\xd2\xd0\x7d\x57\x3d\xb2\x3d\xd4\x1e\x19\xcd\xb8\x69\x58\xfa\xdf\x17\x7b\xec\x24\xde\x38\xe9\xf6\x61\xf3\xe0\xcc\x8c\x3e\x49\x9f\x46\xfa\x46\x57\x35\x8b\x83\x6b\xd9\xd4\x8e\x83\x7e\x77\x53\xf2\x7a\xe5\xf0\x59\x9b\xfc\x9a\xcb\x92\x52\xa7\xd9\x40\x26\x5c\xc1\x6c\xd2\x36\x0b\x82\x8b\x8b\x0b\x78\xa0\x5c\x5b\x47\x62\x01\x41\x51\x49\x39\x3a\x16\xd0\x06\x5c\x41\x60\xbd\x13\xa4\xbb\x88\x42\x96\x1b\x49\xa9\x73\xce\x58\x3c\xae\xa6\x54\x67\x9a\x14\x18\x56\x04\xda\x64\x2c\x15\x76\x78\x34\xaa\x83\x60\xc5\x8d\x71\xc0\x19\x38\x7e\x26\x63\xc1\x31\xa4\x5c\x55\xda\x05\x81\x13\x34\x16\xbb\xf8\xa1\x56\x09\xac\x9c\x68\x93\xcf\x03\xd8\xfb\x09\x97\x94\xc0\xe3\x17\xe3\xfe\x1b\x1b\x0c\xb9\x35\x4b\x4b\xf3\x4a\x29\x21\x6b\xa7\xfd\x77\xb0\x3b\xda\x4c\x43\xfa\x6a\x8f\xda\x7d\x09\x09\x3c\xde\xe8\xd7\x7f\xff\x19\xdb\x2a\x4c\x0b\x6d\xe8\x2a\x4d\x5b\xcc\x7e\x08\x38\x8d\x5b\xe9\xdc\xa0\x6b\x84\xae\xca\x9c\x45\xbb\xa2\x1a\xaa\x7c\xc7\xf1\x16\x6d\xf1\xab\x4f\x04\x3f\x82\xce\xab\x24\x37\x94\xb3\xeb\xf8\x03\x65\x09\x60\xe3\x8a\x70\x72\x20\xe2\xdd\xf2\xdb\xda\x90\x44\x70\x3e\x8d\x3b\x38\xf1\x39\x6b\xa1\x1a\x85\x42\xf4\x14\xfb\x54\x9f\x59\x84\xd7\xdf\xb1\x6c\x28\x82\xf3\x9e\x7e\xcb\x73\x7b\xeb\x54\x66\xf1\x14\x57\x58\x42\x1f\x2a\xb6\x8e\x05\x73\x8a\x9f\xba\x60\xff\xff\x89\x1a\x3e\x85\xad\x56\x92\x69\x1d\x1d\xc2\x57\x9e\xd1\x3d\xba\x22\x1a\xf5\xe9\xf2\x12\x6a\x34\x3a\x0d\x67\xd7\xdc\x94\xad\x20\x1c\x78\xda\x80\x20\x94\x91\x90\x49\xa9\x9d\x7e\x84\x43\xbd\xf6\xba\xab\x45\x57\x28\x1b\x68\x2c\xc9\x5f\x76\xb8\x86\x59\x14\x6c\x53\xe9\xac\xeb\xf1\x78\x2a\x60\x79\xfc\x36\x63\xe9\x85\xfe\x95\x15\x85\x23\xca\xad\xe4\xb4\x9a\x92\x5b\xfb\x7d\x57\x6d\x07\x47\x27\x85\x37\xda\x1e\xd7\xdf\x6e\x3d\xad\x41\xff\x3f\xb6\xd5\xb8\x21\x49\x86\xdb\xda\x9a\xf6\x87\x6d\xab\x0d\x9d\xb7\xda\x81\x25\x1c\xea\x2f\x14\xf4\xf3\x9a\xfc\x8e\x5a\xc7\xdd\x3f\x36\x01\x39\x39\xc0\x36\xab\xf7\x06\x1c\xdc\xfd\x0b\xdd\xf6\x5c\x70\x0d\x64\x9a\x0a\x5e\xda\xdc\x50\x0b\xbf\x68\x45\x6a\xbf\xe9\x03\xfb\xa2\x97\x3e\x2c\x61\xf4\x0a\x9c\x62\x3e\x02\x7e\x84\x74\x9b\xec\x63\x7c\xf7\xe3\x1e\x70\xaf\x9b\xa7\x52\xa7\x77\xb4\x81\x25\xdc\x0f\xeb\x30\x38\x3b\x3b\xeb\x5a\x38\x9c\x4c\x54\x10\x2b\x4a\x59\xd1\x2d\xbd\x86\xd1\x7c\x70\xb0\x13\xcf\x67\xdf\xdc\xc0\x23\xa2\x13\xcf\x68\xfc\x4c\x1b\x1b\xa3\x52\xe1\x5e\xe2\xed\x72\xbe\xbd\xe8\x3e\xf0\xb0\x9d\xc3\x9a\x74\x5e\xb8\x04\xfe\x5e\x2c\x16\xf1\x62\x97\xe2\x2d\xf0\xdf\xb7\xe0\x67\x00\x00\x00\xff\xff\x4b\x15\xb8\xc7\xa5\x07\x00\x00" func stakingcollectionRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5400,11 +5420,11 @@ func stakingcollectionRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xae, 0x5, 0x7e, 0x2a, 0xe2, 0xbe, 0x17, 0x25, 0x72, 0xa9, 0x5, 0x40, 0x5, 0xe3, 0xe4, 0xf8, 0x12, 0xf2, 0xe1, 0xd6, 0x2f, 0x88, 0x6e, 0xb6, 0xcd, 0xf8, 0x53, 0xe7, 0x20, 0x35, 0xfc, 0x3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xcb, 0x54, 0x53, 0x1a, 0x9d, 0x3e, 0x32, 0x51, 0xe3, 0x52, 0x76, 0xf2, 0xee, 0xcd, 0xe3, 0xb, 0xab, 0xed, 0x51, 0x3d, 0xed, 0xa4, 0x99, 0x55, 0xe7, 0xfb, 0xec, 0x6c, 0x87, 0xf2, 0xbf}} return a, nil } -var _stakingcollectionRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\x51\x6b\xf2\x50\x0c\x7d\xef\xaf\x08\x3e\x7c\x54\x90\xfa\xb1\x8d\x3d\x94\x6d\x52\xaa\x8e\x32\xd1\x61\xf5\x07\xdc\xd5\xb4\x5e\x76\xbd\xe9\xd2\x14\x85\xe1\x7f\x1f\xf5\x5a\x1d\xd3\x07\xef\x43\x43\x42\x72\xce\x49\x4f\xf4\xa6\x24\x16\x18\x1b\xda\xa6\xa2\x3e\xb5\x2d\x62\x32\x06\x33\xd1\x64\x21\x67\xda\xc0\xff\x5d\xba\x88\xde\x92\xe9\x6b\x3c\x9b\x4c\x46\xf1\x22\x99\x4d\xa3\xe1\x70\x3e\x4a\x53\xcf\xeb\xf7\xfb\x30\xc7\xaf\x1a\x2b\xa9\xa0\xb6\x95\x43\x80\x9c\x18\x64\x8d\x50\x95\x98\xe9\x5c\xe3\x0a\x2c\xad\x10\x88\x61\x85\x06\x0b\x25\xc4\xa0\xad\x6b\x39\x8e\x64\x27\x56\xcf\x13\x56\xb6\x52\x87\xc4\x6f\x06\x93\x61\x08\xa9\xb0\xb6\x45\xef\x0c\xd0\x14\x97\x89\x95\xfb\xbb\x41\x0f\xd4\x86\x6a\x2b\x21\x2c\xc7\x7a\xf7\xf8\xd0\x85\x6f\x0f\x00\xe0\xf0\x31\x28\x2d\xc9\x79\xb3\x39\xe6\x21\xfc\xbb\xba\x74\x70\x51\xf1\x0e\x38\x25\x63\xa9\x18\x7d\x95\x65\x8e\x2b\xaa\x65\x1d\xb9\xa4\x25\x6c\x5e\x85\x26\x0f\xae\x11\xc2\x33\x1c\x67\x83\x0f\x62\xa6\xed\xd3\xad\x02\x5e\xfc\xc6\x88\xf0\xba\x49\x97\xed\xa9\x10\xab\x02\xdf\x95\xac\xbb\x27\x59\xcd\x1b\x0c\xa0\x54\x56\x67\x7e\x27\xa6\xda\x34\xa6\x08\x38\x29\xc0\x98\x83\x10\x5c\x60\x75\x1c\xc2\xde\xfd\x03\xdc\x61\x56\x0b\xde\xb2\x6d\xc0\xee\x2c\x96\xed\x51\x9c\x9c\x74\xf1\x8f\x93\xbf\x92\xb3\x9b\x2e\xb6\x0a\xf6\xde\x4f\x00\x00\x00\xff\xff\x78\x58\xc1\x42\xac\x02\x00\x00" +var _stakingcollectionRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x8f\xd3\x30\x10\x85\xef\xf9\x15\x4f\x39\x2c\x89\xb4\x4a\x25\x40\x1c\x22\xa0\x82\x45\x2b\xf5\x04\x6a\x55\xee\xc6\x9d\xa4\x16\x8e\x1d\xc6\x63\xb5\x08\xf5\xbf\xa3\xc4\x4d\x83\x68\x0e\x5c\xf0\x21\x8e\xed\xf1\xbc\x37\xe3\xcf\x74\xbd\x67\xc1\xb3\xf5\xa7\x9d\xa8\xef\xc6\xb5\x4f\xde\x5a\xd2\x62\xbc\x43\xc3\xbe\x43\xbe\x78\x96\x67\xd9\x6a\xb5\xc2\x96\x7e\x44\x0a\x12\x10\x5d\x48\x21\x68\x3c\x43\x8e\x84\xd0\x93\x36\x8d\xa1\x03\x9c\x3f\x10\x3c\xe3\x40\x96\x5a\x25\x9e\x61\x5c\x0a\xb9\x5e\xd1\xb7\xb4\x59\x26\xac\x5c\x50\xe3\xa2\x18\x2e\x6e\x3e\xd5\xd8\x09\x1b\xd7\x3e\xce\x09\x86\xcd\xfd\xc6\xc9\xab\x97\xeb\x47\xa8\xce\x47\x27\x35\xf6\xcf\xe6\xfc\xe6\x75\x89\x5f\x19\x00\x8c\x1f\x4b\x32\x89\xcc\xd6\xb7\xd4\xd4\x50\x51\x8e\xc5\x62\x65\xd5\xfc\xfb\xf9\xe4\x88\x4b\x3c\x2c\xc7\xdd\xed\x64\xa3\x66\xcf\xd4\x2b\xa6\x42\x69\x9d\x7c\x8d\x52\x1f\x3d\xb3\x3f\x7d\x55\x36\x52\x89\x87\x0f\xe9\x6c\xf2\x3a\x8c\x40\xb6\xa9\x96\xbc\xe2\x1d\xae\xa9\xaa\x20\x9e\x55\x4b\xd5\xb7\x31\xd9\xdb\xff\x51\xc3\xfb\x62\x78\xf4\x7a\x19\x88\xfb\xf0\x5d\x72\xf4\x45\xc9\xb1\xbc\x95\x32\x8c\xf5\x1a\xbd\x72\x46\x17\xf9\x93\x8f\x76\x60\x40\x90\x6c\x43\x81\xa9\x21\x26\xa7\x09\xe2\xa1\x70\x0f\xde\x95\x8f\x9e\x4d\xa7\xf8\x27\x62\x20\x7e\x11\xa6\x36\xe4\x49\xe9\x92\xda\x4d\x67\xd2\x51\xe8\x5f\x3a\x59\x71\xa2\x75\x3f\xb1\x7a\x03\x2c\xcd\x7f\x01\xf6\xc7\x62\x86\x2c\xcd\x93\x83\x4b\xf6\x3b\x00\x00\xff\xff\x6a\x87\x6b\x8d\x40\x03\x00\x00" func stakingcollectionRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -5420,11 +5440,11 @@ func stakingcollectionRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xef, 0xea, 0x1c, 0x7d, 0xa0, 0xfd, 0x94, 0xf6, 0x62, 0xff, 0xe2, 0x56, 0x30, 0xb4, 0x51, 0x60, 0x6f, 0x63, 0xec, 0x73, 0xb9, 0x24, 0x10, 0xba, 0xd2, 0x4e, 0xda, 0x1f, 0x16, 0xf4, 0xe2, 0xd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0x9, 0xd0, 0xec, 0x1c, 0x52, 0x7a, 0x4e, 0xdd, 0x2e, 0x32, 0x4e, 0x54, 0x32, 0x24, 0xf7, 0x13, 0x28, 0xda, 0x6, 0x1f, 0x13, 0x61, 0x82, 0x5c, 0x5, 0x93, 0xc9, 0xcd, 0x4c, 0xce, 0x85}} return a, nil } -var _stakingcollectionRestake_all_stakersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x52\x4d\x8f\x9b\x30\x10\xbd\xfb\x57\x8c\xf6\x50\x11\x69\x45\x7a\x8e\x9a\xae\x28\xa4\x15\x6a\xc4\x56\x81\x4b\x8f\x5e\x18\xb2\x28\xc6\x13\x19\xa3\xac\xb4\xca\x7f\xaf\x8c\xf9\x0c\xa4\xad\xd4\xfa\x60\x25\x66\xe6\xcd\x9b\xf7\x5e\x51\x9e\x49\x69\xf8\x2a\xe8\x12\x6b\x7e\x2a\xe4\xd1\x27\x21\x30\xd5\x05\x49\xc8\x15\x95\xf0\xf1\x2d\x4e\xbc\xef\x61\xf4\xcd\x7f\xde\xef\x77\x7e\x12\x3e\x47\x5e\x10\x1c\x76\x71\xcc\x46\xcd\x61\x90\xf0\x17\x81\x2d\x46\xd7\x19\x06\xbb\x28\x09\x93\x9f\x89\xf7\x65\xbf\xeb\xba\xd8\x7a\xbd\x06\x9f\xca\xb2\xd0\x15\x28\xbc\x70\x95\x61\x06\x9a\x4e\x28\x2b\xd0\x04\x95\xe6\x27\x84\x9c\x14\x70\x21\x40\x52\x86\x15\x70\x99\x41\x86\x02\x8f\x5c\x93\xaa\xa0\x90\xc0\x21\xed\x89\x32\xa6\x15\x97\x15\xb7\xac\xdf\x19\x00\x40\x73\x09\xd4\x0d\xdc\x64\xad\x03\xe6\x1b\xf8\xb0\xb8\xb1\x3b\x7b\x61\x0d\xce\x59\xe1\x99\x2b\x74\x78\x9a\x52\x2d\xf5\x06\xbc\x5a\xbf\x7a\xf6\xcf\xaa\x1d\x68\x4e\x85\x22\x77\x97\x06\xc2\x16\xda\x5e\xf7\x85\x94\xa2\xcb\xa7\xbf\x25\xf0\xd9\x31\x5a\x6e\x96\x1d\x9a\x97\xc7\x9a\x14\x3f\xe2\x0f\xae\x5f\x57\x3d\x2d\x73\x9e\x9e\xe0\xcc\x65\x91\x3a\x0f\x3e\xd5\x22\x03\x49\x1a\x2c\x15\x50\x98\x1b\xdd\x67\x58\x0f\x16\xe1\x6a\x35\xc0\x37\x4c\x6b\x8d\xa3\x6d\x8d\xba\xc6\x9e\x30\xa8\x60\x7b\x7f\x77\xf7\x88\x3a\xb2\x65\xce\x8a\xf5\xdd\xc6\x60\xdb\x6d\xec\xec\x70\xde\x27\xa4\xfb\x09\x32\x27\xd8\x2e\x04\xcd\x8d\xda\xaf\x8e\x05\xd8\xb4\x40\xd3\xdd\xef\x53\x6b\xb2\x76\x68\x33\x98\x34\x11\xbc\x41\x7a\x1c\x72\xd7\x3c\x16\xe2\x11\x78\x69\x53\xd0\x51\x73\x6d\x78\x3b\x9c\x61\xf8\x95\x4d\xc4\x1a\x25\xf8\x0f\x7a\x05\xc3\xcc\x99\x68\x3d\x8a\xd1\x6d\x04\x39\x97\x6e\x60\x7e\x57\xbf\x60\x5c\xd2\xaf\xde\x37\xba\xfd\xaf\x68\x49\x8d\x85\xba\x5b\xed\xff\x83\x11\xff\xc4\x66\x70\x6b\xa2\xc6\x6f\x2c\xb3\xf7\x95\xfd\x0a\x00\x00\xff\xff\xca\x5e\x38\x8c\x1b\x05\x00\x00" +var _stakingcollectionRestake_all_stakersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x6f\xdb\x30\x0c\xbd\xeb\x57\x10\x39\x14\x36\x50\x38\xf7\x60\x59\xb1\x25\x18\xd0\x4b\x36\xb4\xc5\xee\xac\x4d\xa7\x46\x64\x31\x90\x68\x64\x40\x91\xff\x3e\xc8\x72\xfc\x11\x2b\xdb\x61\xab\x0f\x86\x20\x92\x8f\x8f\x8f\x4f\x55\x7d\x64\x2b\xf0\x4d\xf3\xe9\x59\xf0\x50\x99\xfd\x86\xb5\xa6\x5c\x2a\x36\x50\x5a\xae\x61\x11\x8d\x2d\xd4\xa8\xf2\x71\xfb\x82\xaf\x9a\xba\xa4\x51\xd9\x34\xb0\x50\x6a\xb9\x5c\xc2\x86\xeb\xba\x12\x07\x96\x4e\x68\x0b\x2a\x40\xf8\x40\xc6\x81\x30\x38\xc1\x03\x41\xc9\x16\x50\x6b\x30\x5c\x90\x03\x34\x05\x14\xa4\x69\x8f\xc2\xd6\x41\x65\x00\x21\xef\x79\x28\x25\x16\x8d\xc3\x40\xf8\x5d\x01\x00\xb4\x3f\x4d\xd2\xc2\x4d\x58\x3f\x51\xb9\x02\x6c\xe4\x2d\x89\x0e\x95\x0d\xc7\xef\x27\x43\x36\x85\xbb\x78\xde\xec\x46\xb5\x3d\x8f\x96\x8e\x68\x29\xc1\x3c\xe7\xc6\x48\xd7\xea\x2b\x5b\xcb\xa7\x9f\xa8\x1b\x4a\xe1\xee\x4b\x88\xa5\x1d\x57\xff\x39\xd2\x65\x16\xe3\x0a\x6b\xe8\xa0\x32\x27\x6c\x71\x4f\xd9\x6b\x0b\xf6\xe9\x23\x66\xf8\x9c\xf8\xc5\xad\xe2\x5e\x98\xa7\x3f\x07\x46\x3f\x50\xde\xd2\x7e\x14\xff\x3d\x3c\xc0\x11\x4d\x95\x27\x8b\x0d\x37\xba\x00\xc3\x02\x81\x36\x58\x2a\xfd\x9a\xe7\x6e\x0a\x08\xe7\x20\x23\xfd\xa2\xbc\x11\x1a\x29\xe4\x97\xe9\xdd\xf0\xb8\x75\xb0\xbe\xad\x57\xb6\x27\xd9\x85\xb4\x24\x55\x7d\xb5\xf7\x53\xa8\xf6\xee\xb9\xe0\xbc\x4f\x48\xf7\x1d\x4c\xc9\xb0\x8e\xb8\x3a\xdb\x75\xd1\x24\x00\xac\x3a\xa0\xe9\xec\xb7\xa9\xb5\xd6\x7e\xea\x2c\xff\xd2\x3a\xfe\x0a\xe9\x7e\xb0\x79\x7b\x59\xe9\x7b\xc0\x3a\x18\xe9\x42\x2d\x0b\x6f\xe5\x82\x33\x34\x3f\xab\x89\x58\xa3\x07\xf3\x17\xbd\xb6\x43\xcf\x99\x68\x3d\x8a\xd7\x6d\x04\x39\x97\x6e\x60\x7e\x53\xbf\xed\x38\xa5\x1f\xbd\x2f\xcc\xfa\xd3\x2e\xa6\x46\x24\xef\x5a\xfb\xff\xb0\x88\x7f\x62\x33\x6c\x6b\xa2\xc6\x1f\x56\x16\xfe\x67\xf5\x3b\x00\x00\xff\xff\xcb\xbd\x75\xfc\x85\x05\x00\x00" func stakingcollectionRestake_all_stakersCdcBytes() ([]byte, error) { return bindataRead( @@ -5440,11 +5460,11 @@ func stakingcollectionRestake_all_stakersCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/restake_all_stakers.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x12, 0xa0, 0xbf, 0x41, 0x72, 0x3e, 0x5b, 0xdf, 0x47, 0x61, 0x1f, 0x7f, 0x61, 0xf5, 0xb0, 0x7a, 0x10, 0xae, 0x7b, 0xf9, 0x7b, 0x91, 0xe2, 0x95, 0xa1, 0x16, 0x8b, 0x2a, 0x8c, 0x50, 0x47, 0x9f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf7, 0xee, 0xd6, 0x42, 0xaf, 0x95, 0x76, 0xc4, 0xef, 0x82, 0xa3, 0xbb, 0xb6, 0xa5, 0x72, 0xc9, 0xc0, 0x45, 0x5, 0xef, 0xd3, 0x94, 0x90, 0x5c, 0x7f, 0x90, 0x8b, 0x25, 0xf2, 0x33, 0xa3, 0x62}} return a, nil } -var _stakingcollectionScriptsDoes_account_have_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4e\xc3\x30\x10\xc6\xf1\xdd\x4f\xf1\x8d\x74\x21\xcc\xdd\x4c\x52\xa0\xa2\x6a\x25\xdc\x17\x30\xc9\x05\x4e\xd8\x77\x91\x7d\xa6\x48\x88\x77\x67\x68\xa5\x0e\xb0\xfd\x87\xd3\xfd\x3e\xce\x8b\x16\xc3\x43\xd2\x53\xb0\xf8\xc1\xf2\xd6\x6b\x4a\x34\x1a\xab\x60\x2e\x9a\x71\xf7\x15\x8e\xfe\x79\xbb\x7f\xec\x0f\xbb\xdd\xa6\x3f\x6e\x0f\x7b\x3f\x0c\x2f\x9b\x10\x9c\xeb\xba\x0e\x03\x19\x95\xcc\x42\x15\x3c\x23\x0a\xe2\x38\x6a\x13\x03\x57\x54\x32\xb4\x05\x27\xb6\x77\x44\x5c\x00\x5c\x05\xe7\x96\xf6\x8a\xb9\x09\x72\x64\xb9\x89\xd3\x54\xa8\xd6\x35\xfc\x39\x56\x6b\xdc\xab\x26\x7c\x3b\x00\x28\x64\xad\xc8\xff\x53\x6f\x27\xa5\xea\xcf\xf0\x53\xfc\xa4\x3f\x07\xd7\xdf\x97\x58\xb9\x9f\xdf\x00\x00\x00\xff\xff\x5d\x7d\x18\xf4\xfc\x00\x00\x00" +var _stakingcollectionScriptsDoes_account_have_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4e\xc4\x40\x0c\x45\xfb\x39\xc5\xd7\x56\x9b\x86\xf4\xdb\x2d\x20\x44\xcf\x09\xac\x89\x03\x16\x33\x76\x34\xf6\x90\x02\x71\x77\x8a\x44\x4a\xb1\xe9\x9e\xf4\xbf\x9e\x9e\xd4\xc5\x5a\xe0\xad\xd8\xfa\x11\xf4\x2d\xfa\xf9\x62\xa5\x70\x0e\x31\xc5\xdc\xac\xe2\x72\xba\x5d\x52\x1a\xc7\x11\xaf\x1c\xdc\xaa\x28\x3b\x64\x06\x29\x28\x67\xeb\x1a\x10\x87\x73\xa0\x2f\x58\x25\xbe\x40\xd8\x0d\x38\x14\x29\x51\xce\xec\x7e\xa5\x52\x06\xcc\x5d\x51\x49\xf4\x4a\xd3\xd4\xd8\xfd\x86\xfb\x06\xc3\x0d\xcf\x66\x05\xbf\x09\x00\x1a\x47\x6f\x7a\xde\xfb\x34\x19\xfb\x7d\x0b\x78\xa7\x1f\x7e\x38\x1c\xee\x1d\x86\xf4\xf7\x1f\x00\x00\xff\xff\x4a\x63\x63\xb2\x01\x01\x00\x00" func stakingcollectionScriptsDoes_account_have_staking_collectionCdcBytes() ([]byte, error) { return bindataRead( @@ -5460,11 +5480,11 @@ func stakingcollectionScriptsDoes_account_have_staking_collectionCdc() (*asset, } info := bindataFileInfo{name: "stakingCollection/scripts/does_account_have_staking_collection.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8c, 0xd, 0x47, 0xa3, 0x4f, 0xfc, 0x6f, 0x44, 0x5d, 0xbf, 0xd, 0xa3, 0x2c, 0x2b, 0x6d, 0xe1, 0x19, 0x8f, 0x95, 0x3f, 0x2f, 0xff, 0x8f, 0xf5, 0xdd, 0x30, 0x90, 0x79, 0x1a, 0x60, 0x2, 0x4e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0x34, 0x8c, 0xdd, 0x28, 0xf3, 0x71, 0x7c, 0x27, 0x34, 0x43, 0xc2, 0x6c, 0xde, 0x42, 0x3e, 0x68, 0x2d, 0xc2, 0x74, 0x34, 0x8e, 0x51, 0xaf, 0x77, 0xcc, 0xac, 0x1b, 0x8d, 0x90, 0x91, 0x7f}} return a, nil } -var _stakingcollectionScriptsGet_all_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xde\xd1\x5e\x5a\xcf\xbd\xc5\x24\x96\xc5\x90\x82\xd9\x8b\x88\x87\x69\x33\x89\xc1\xcd\x6e\x99\x9d\xa0\x22\xfe\x77\x41\x13\xab\xe8\xed\x31\xcc\x37\xdf\x63\x86\xf1\x14\x45\x71\xed\xe3\x73\xa3\xf4\x34\x84\x3e\x8f\xde\xf3\x51\x87\x18\xd0\x49\x1c\x71\xf9\xd2\xb8\xec\xc6\xd6\xbb\x7c\x5f\x55\x65\xee\xec\xbe\xce\x8a\xe2\xb6\x6c\x1a\xf3\x03\xb6\x85\xa3\x83\xe7\xf9\xc6\x42\xda\xa2\xac\x9d\x75\x77\x2e\xbb\xaa\xca\x85\x32\x9b\xcd\x06\x3b\xd6\x04\x0a\x20\x11\x7a\x45\xec\x40\xde\x43\x1f\x19\x2d\x7b\xee\x49\xa3\x60\x64\xa5\x96\x94\xd0\x45\x39\x8f\x13\x92\x46\xe1\x16\x43\xf8\xdc\x4f\xb3\xf1\xf8\x5d\xdb\x98\xd3\x74\x40\x37\x05\x8c\x34\x84\x0b\x6a\x5b\xe1\x94\xb6\xc8\xbe\xc2\x6a\x8b\xfb\xbf\x8d\xd7\xc5\x22\xb0\xa1\x8b\x0f\x78\x33\x00\x20\xac\x93\x84\xff\xbf\xb3\xee\x59\x33\xef\x7f\x71\x67\xd9\x1c\x56\xe6\xfd\x23\x00\x00\xff\xff\xfd\xb5\xa8\x45\x62\x01\x00\x00" +var _stakingcollectionScriptsGet_all_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x4b\x03\x51\x10\x84\xfb\xf7\x2b\x86\xab\x72\x4d\xae\x4f\x17\x0c\x4a\x6a\xed\xc4\x62\xbd\xb7\xef\x7c\xb8\xf7\x56\x76\x37\x88\x88\xff\x5d\xd0\xd3\x24\x24\xdd\xb0\x33\xc3\x37\x6c\x9d\xdf\xd4\x02\xb7\xa2\xef\xf7\x41\xaf\xb5\x4d\x37\x2a\xc2\x63\x54\x6d\x28\xa6\x33\xba\xab\x5e\x97\x4e\x9a\xfb\xdd\x03\x3d\x0b\x2f\xa1\x93\xda\xb9\xd1\xa5\x34\x0c\x03\xee\x38\x1c\xd4\x40\x66\xf4\x01\x2d\x20\x11\xc4\x0b\x23\xb3\xf0\x44\xa1\x86\x99\x83\x32\x05\xa1\xa8\x1d\xcf\x0e\x0f\x35\xce\xa8\xed\x27\xef\x0b\x6f\xfc\x5f\x95\x12\x8d\x23\xbb\xaf\x48\xa4\x47\x39\x34\xcc\x54\xdb\x8a\x72\x36\x76\xdf\x60\xfb\x2b\xfa\x0d\x1e\x2f\xe7\xad\x77\x7f\xa0\x7d\x2b\xfa\x84\xcf\x04\x00\xc6\x71\xb0\x76\xfd\x41\xeb\x89\x63\x2b\x72\xd6\x3b\xc2\x16\xd1\xa7\xaf\xef\x00\x00\x00\xff\xff\x8b\x34\x8c\xda\x65\x01\x00\x00" func stakingcollectionScriptsGet_all_delegator_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5480,11 +5500,11 @@ func stakingcollectionScriptsGet_all_delegator_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_all_delegator_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc2, 0xa7, 0xb0, 0x99, 0xa1, 0x70, 0xd1, 0x2b, 0x96, 0x92, 0x77, 0x7d, 0x16, 0xae, 0x8d, 0xe8, 0x88, 0xc7, 0xef, 0xbc, 0xe4, 0x59, 0x1f, 0x33, 0xb, 0x97, 0x3e, 0xbe, 0xe3, 0x8c, 0x2a, 0xd7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x61, 0xbc, 0xe9, 0xa, 0xd, 0xd8, 0x3e, 0x8b, 0x75, 0x60, 0x29, 0xdf, 0x8, 0xba, 0x2, 0xf2, 0xbb, 0xe3, 0x73, 0x8b, 0xed, 0x4a, 0xcc, 0x91, 0x4b, 0xa5, 0x5f, 0x2c, 0xe8, 0x7e, 0xf4, 0x11}} return a, nil } -var _stakingcollectionScriptsGet_all_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xde\xd1\x5e\x1a\xcf\xbd\xc5\x24\x96\xc5\x90\x82\xd9\x8b\x88\x87\x69\x77\x52\x17\x37\x3b\x65\x77\x83\x8a\xf8\xdf\x85\x9a\xa8\x60\x6f\x8f\x61\xbe\x79\x1f\xe3\xc6\x93\xc4\x8c\x5b\x2f\xaf\x7d\xa6\x17\x17\x8e\x95\x78\xcf\x87\xec\x24\x60\x88\x32\xe2\xfa\xad\x37\xe5\x9d\xee\xb6\xd5\xae\x6d\x9b\xca\xe8\x5d\x57\xd6\xf5\x7d\xd3\xf7\xea\x0f\xac\x6b\x43\x7b\xcf\xf3\x8d\x85\xd4\x75\xd3\x19\x6d\x1e\x4c\x79\xd3\x36\x0b\xa5\x8a\xa2\xc0\x96\x73\x02\x05\x50\x8c\xf4\x0e\x19\x40\xde\x23\x3f\x33\x82\x58\xc6\xc8\x99\x2c\x65\xc2\x20\xf1\x3c\x49\x48\x59\x22\x5b\xb8\x70\xde\x4a\x73\xcf\xe1\x47\x56\xa9\xd3\xb4\xc7\x30\x05\x8c\xe4\xc2\x15\x59\x1b\x39\xa5\x0d\xca\xef\xb0\xda\xe0\xf1\xbf\xe7\xba\x13\xcb\x3a\x0c\xf2\x84\x0f\x05\x00\x91\xf3\x14\xc3\xe5\x77\xac\x8f\x9c\x4b\xef\x17\xe4\xb7\x62\x0e\x2b\xf5\xf9\x15\x00\x00\xff\xff\xa5\xe7\xa3\xf6\x4e\x01\x00\x00" +var _stakingcollectionScriptsGet_all_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x4b\x43\x41\x10\x84\xfb\xfb\x15\xc3\xab\xf2\x9a\xbc\x3e\x5d\x50\x94\x34\x36\xda\x89\xc5\xfa\x6e\x2f\x1e\xee\xed\xca\xde\x06\x11\xf1\xbf\x0b\xf1\xa9\x11\xd3\x0d\x3b\xf3\x31\xc3\xd6\xf6\x62\x1e\xb8\x12\x7b\xbd\x0d\x7a\xae\xba\xbf\x30\x11\x9e\xa3\x9a\xa2\xb8\x35\x0c\x67\xbd\x21\x9d\x90\xbb\xcb\x3b\x7a\x14\x5e\x42\x27\xd8\x5f\x63\x48\x69\x9a\x26\x5c\x73\x74\x90\x82\xdc\xe9\x0d\x56\x40\x22\x88\x27\x86\x5a\x66\x34\x0e\xca\x14\x84\x62\x7e\xbc\x74\xf4\x30\xe7\x8c\xaa\xc7\x54\x5f\x5a\xe6\x9f\x2d\x29\xd1\x3c\x73\xef\x2b\x12\x19\x51\x0e\x8a\x46\x55\x57\x94\xb3\x73\xef\x1b\x6c\xbf\xc4\xb8\xc1\xfd\xff\x51\xeb\x1b\xcb\xbc\xd3\x62\x0f\x78\x4f\x00\xe0\x1c\x07\xd7\xf3\x1f\x59\xef\x39\xb6\x22\xdf\xc8\x6f\xc5\x22\xc6\xf4\xf1\x19\x00\x00\xff\xff\xcd\xc4\xa0\x99\x51\x01\x00\x00" func stakingcollectionScriptsGet_all_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5500,11 +5520,11 @@ func stakingcollectionScriptsGet_all_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_all_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0xb7, 0x63, 0x1e, 0xee, 0xc1, 0x60, 0xe2, 0xae, 0x71, 0xa0, 0x49, 0xa, 0xe8, 0xa0, 0x84, 0xcc, 0x39, 0x7b, 0xad, 0x66, 0xc7, 0x33, 0xc6, 0x2a, 0x80, 0x53, 0x15, 0xb9, 0xa6, 0xfd, 0xf9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x11, 0x1b, 0xdc, 0xc0, 0x18, 0xba, 0x5a, 0xa1, 0x59, 0xc9, 0x67, 0x12, 0x85, 0xb0, 0xda, 0x24, 0xdd, 0x74, 0x94, 0xbd, 0xbb, 0xbe, 0x46, 0xdd, 0x56, 0x2c, 0x3f, 0x4d, 0x4e, 0x6a, 0xe8, 0x7b}} return a, nil } -var _stakingcollectionScriptsGet_delegator_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcf\x4f\x4b\xc3\x40\x10\x05\xf0\xfb\x7e\x8a\x77\xb4\x97\xc6\x73\x6f\x21\x5b\x25\x58\x5a\x68\x7a\x13\x0f\x63\x77\x12\x17\x37\x3b\x65\x76\x82\x8a\xf8\xdd\x85\xd6\x3f\x3d\xe4\xf6\x60\x18\x7e\xef\xc5\xf1\x24\x6a\xb8\x4b\xf2\xd6\x19\xbd\xc6\x3c\x34\x92\x12\x1f\x2d\x4a\x46\xaf\x32\xe2\xf6\xbd\x3b\xd4\x0f\xed\xf6\xbe\xd9\x6d\x36\xeb\xe6\xd0\xee\xb6\xb5\xf7\xfb\x75\xd7\x39\x57\x55\x15\xf6\x6c\x93\xe6\x02\xca\x20\x55\xfa\x80\xf4\xa0\x94\x60\x2f\x8c\xc0\x89\x07\x32\x51\xb4\xbe\xa0\x98\x28\x07\xc4\x7c\xbe\x95\x0b\x87\xe3\x9f\xe7\xdc\x69\x7a\x46\x3f\x65\x8c\x14\xf3\x0d\x85\xa0\x5c\xca\x0a\xf5\x25\x2c\x56\x78\x9c\xed\xb9\xf4\xbf\x4c\xeb\xcb\x13\x3e\x1d\x00\xe8\xb9\xd6\xfc\xb0\xe5\xc0\x76\xfd\xf3\x4f\xfd\x84\x85\xfb\xfa\x0e\x00\x00\xff\xff\x4a\xb0\xd1\x0a\x19\x01\x00\x00" +var _stakingcollectionScriptsGet_delegator_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xbd\x6a\xc4\x40\x0c\x84\xfb\x7d\x8a\xe1\xaa\x73\x73\xee\xaf\x0b\x31\x01\xb7\x49\x19\x52\x88\x5d\xd9\x59\x22\xaf\x82\x24\x13\x42\xc8\xbb\x07\xec\xfc\x15\xee\x06\x06\xcd\xf7\xa9\x2e\xaf\x6a\x81\x3b\xd1\xb7\x87\xa0\x97\xda\xe6\x5b\x15\xe1\x1c\x55\x1b\x26\xd3\x05\xa7\xc3\xee\x94\x52\xdf\xf7\xb8\xe7\x58\xad\x39\xa8\x81\xcc\xe8\x1d\x3a\x81\x44\x10\xcf\x8c\xc2\xc2\x33\x85\x1a\xc6\xc1\xe1\xa1\xc6\x05\xb5\x6d\x9d\xef\x7b\xc8\xbf\x83\x29\x51\xce\xec\x7e\x26\x91\x0e\xd3\xda\xb0\x50\x6d\x67\x2a\xc5\xd8\xfd\x8a\x9b\x3d\x74\x57\x3c\x1e\x0a\x5d\x86\x1f\xdc\x38\xf8\x13\x3e\x12\x00\xd8\xa6\x77\xfc\xdd\x65\xe6\xf8\x7f\xf3\x87\xfa\x0e\x5d\xfa\xfc\x0a\x00\x00\xff\xff\x7b\xbc\xfe\x64\x1e\x01\x00\x00" func stakingcollectionScriptsGet_delegator_idsCdcBytes() ([]byte, error) { return bindataRead( @@ -5520,11 +5540,11 @@ func stakingcollectionScriptsGet_delegator_idsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_delegator_ids.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0xf8, 0x98, 0x3a, 0xf0, 0xad, 0x8c, 0x59, 0x26, 0xd8, 0x74, 0x8f, 0xf7, 0x27, 0xc2, 0xc4, 0x84, 0x5d, 0x3c, 0x37, 0x82, 0xa6, 0x34, 0x6b, 0x2d, 0xe, 0xfd, 0xd1, 0x10, 0x7a, 0x29, 0xe0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0x35, 0xab, 0x54, 0x9e, 0x17, 0xc5, 0x8d, 0xcb, 0x10, 0x21, 0xe1, 0x7c, 0x59, 0xcb, 0xec, 0x18, 0xbf, 0x66, 0xb7, 0x4f, 0x38, 0xc, 0x32, 0x7f, 0x8b, 0x9e, 0x82, 0x19, 0x52, 0xc, 0xbe}} return a, nil } -var _stakingcollectionScriptsGet_does_stake_existCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x6b\xb4\x30\x10\x86\xef\xf9\x15\x73\xfc\x16\x96\xcf\xd2\xde\xbc\x14\x57\x6d\x09\x15\x17\x6a\x7a\xe8\x31\x6b\x26\x36\x34\x66\x24\x89\x74\xa1\xf4\xbf\x17\x57\x17\x17\xe9\x29\xc9\x4b\xde\xe7\x19\xc6\xf4\x03\xf9\x08\x4f\x96\xbe\x9a\x28\x3f\x8d\xeb\x72\xb2\x16\xdb\x68\xc8\x81\xf6\xd4\xc3\xdd\xb9\x11\xd9\x0b\xaf\x9f\xf3\x63\x55\x95\xb9\xe0\xc7\x3a\x2b\x8a\xd7\xb2\x69\xd8\x4d\x99\x17\x42\x9e\x2c\x2e\x8c\x6b\x93\x17\x65\x2d\xb8\x78\x17\xd9\xa1\x2a\xaf\x2d\x96\x24\x09\x08\xb4\x36\x80\xd1\x10\x3f\x10\xc2\x80\xad\xd1\x06\x15\x38\x52\x08\xe4\x41\xa1\xc5\x4e\x46\xf2\x80\x67\x13\x62\x00\xe3\xe6\x9f\x0b\xbf\x5d\x87\xbc\xe0\x34\xf9\x0d\x49\x2a\xe5\x31\x04\xc6\x86\xf1\x04\x7a\x74\xd0\x4b\xe3\xfe\x2d\x69\x0a\xd9\x7c\xd9\x5f\x8c\xbc\x48\xa1\x89\xde\xb8\x6e\xbf\x9a\xa7\xf0\x8d\xbb\xf8\x70\xff\xb8\x4b\xe1\x40\x64\xe1\x9b\x01\x00\x78\x8c\xa3\x77\x7f\xaf\xec\xbf\x22\x0c\x53\x8a\xe5\x34\xf7\xea\x93\x5b\xdf\x7c\x6e\x7c\x37\x8f\x1d\xfb\xf9\x0d\x00\x00\xff\xff\xc9\x3b\x81\x54\x9c\x01\x00\x00" +var _stakingcollectionScriptsGet_does_stake_existCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x6a\xf3\x30\x10\x84\xef\x7a\x8a\xc1\xa7\x18\xc2\x6f\xf8\x7b\xf3\xa5\xb4\x4d\x0b\x3e\x27\x7d\x00\x55\x5a\xb9\x4b\xd7\xda\x20\x29\xb4\x50\xfa\xee\xc5\xb1\xc1\xae\xc9\x49\xd2\xce\xce\x7c\x83\x78\x38\x6b\x2a\x78\x11\xfd\x3c\x16\xfb\xc1\xb1\x7f\x52\x11\x72\x85\x35\x22\x24\x1d\x50\xdd\xd4\x2a\xb3\x72\x76\x87\x93\x7d\x13\x9a\x97\x56\xb6\xbf\x42\x65\x4c\xd3\x34\x38\x91\x48\x06\x07\x94\x77\x42\x3e\x93\xe3\xc0\xe4\x11\xd5\x13\x34\xc1\x93\x50\x6f\x8b\x26\xd0\x17\xe7\x92\xc1\x71\xda\x9c\xd3\xdd\xd2\xef\x1a\x17\x34\x6d\x92\xac\xf7\x89\x72\x36\xc6\x3a\x47\x39\xef\xac\x48\x8d\x70\x89\x18\x2c\xc7\xdd\xac\xb6\x78\x98\x2e\xfb\x2b\xb9\x3b\xb4\x38\x96\xc4\xb1\xdf\x2f\x0d\xc6\xe1\x6b\x17\xcb\xdd\xff\xfb\xba\xc5\xa3\xaa\xe0\xdb\x00\x40\xa2\x72\x49\xf1\xf6\xaf\xfd\xf3\x4a\x79\x9c\xd2\xf3\xd8\x7f\xe1\xd9\x2d\x6f\x3a\x37\xbc\xd5\xa3\x36\x3f\xbf\x01\x00\x00\xff\xff\xa0\xc3\x2f\x2d\x9f\x01\x00\x00" func stakingcollectionScriptsGet_does_stake_existCdcBytes() ([]byte, error) { return bindataRead( @@ -5540,11 +5560,11 @@ func stakingcollectionScriptsGet_does_stake_existCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_does_stake_exist.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x72, 0xa5, 0xa3, 0x68, 0xc7, 0x63, 0xaf, 0xd8, 0x21, 0x69, 0x50, 0x68, 0xf5, 0x65, 0xcc, 0xff, 0xec, 0x23, 0x17, 0x1a, 0xb3, 0x78, 0x4d, 0x90, 0xd1, 0xbc, 0xd, 0xab, 0xc, 0xb3, 0xd8, 0x47}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4, 0xb, 0x6f, 0x8c, 0x94, 0xdc, 0x94, 0x55, 0x5, 0x3d, 0xa0, 0x77, 0x92, 0x7, 0xba, 0x57, 0xbd, 0x9e, 0x52, 0x3f, 0x15, 0x13, 0x69, 0x71, 0x5, 0x3, 0xa5, 0x1c, 0x2a, 0xe6, 0xa2, 0xa4}} return a, nil } -var _stakingcollectionScriptsGet_locked_tokens_usedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xb1\x4e\xeb\x40\x10\x45\xfb\xfd\x8a\x5b\x26\xcd\xf3\x2b\x10\x85\x3b\xcb\x89\x51\x84\x95\x48\xd8\xf9\x80\xc5\x3b\x71\x56\x5e\xcf\x44\x3b\xbb\x4a\x10\xe2\xdf\x11\x0e\x88\x86\x7a\x34\xe7\x9c\xeb\xe7\x8b\xc4\x84\x26\xc8\xb5\x4b\x76\xf2\x3c\xd6\x12\x02\x0d\xc9\x0b\xe3\x14\x65\xc6\xff\x5b\xd7\x57\xcf\xbb\xfd\x53\x7d\x68\xdb\x6d\xdd\xef\x0e\xfb\x6a\xb3\x79\xd9\x76\x9d\x31\x45\x51\xa0\xa7\x10\x14\x67\xb9\x62\xb6\xfc\x86\x20\xc3\x44\x0e\x49\x26\x62\x45\x3a\x13\xec\x30\x48\xe6\x04\xaf\xc8\xea\x79\x5c\xbe\x1a\x89\x5f\xc7\x48\xd0\xbb\x16\xc3\xaf\x97\xc5\x91\xc2\xb2\x83\xa3\x40\xa3\x4d\x12\xd5\x98\x4b\x7e\xc5\x29\x33\x66\xeb\x79\xf5\x0d\x2d\x51\x39\x17\x49\x75\x5d\xe2\xd8\xf8\xdb\xe3\x03\xde\x0d\x00\x44\x4a\x39\xf2\xdf\xbb\xfe\x8d\x94\xda\x25\xb3\x5f\x2a\x8f\x4a\x6e\x65\xef\x9c\xf2\x27\x77\x6d\x3e\x3e\x03\x00\x00\xff\xff\x41\x5a\xaa\x77\x1c\x01\x00\x00" +var _stakingcollectionScriptsGet_locked_tokens_usedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xb1\x4e\xec\x40\x0c\x45\xfb\xf9\x8a\xab\xad\x92\xe6\xa5\x79\xa2\x48\x87\x90\x52\xd1\xb1\xfb\x01\xd6\x8c\x37\x3b\x8a\x63\xa3\xb1\xa3\x05\x21\xfe\x1d\x91\x05\xd1\x6c\x7d\xe4\xe3\x73\xeb\xfa\x6a\x2d\x30\x89\x5d\x5f\x82\x96\xaa\xf3\x93\x89\x70\x8e\x6a\x8a\x73\xb3\x15\x87\xbb\xec\x90\xd2\x30\x0c\x38\xb2\x88\xe3\x62\x57\xac\xa4\xef\x10\xcb\x0b\x17\x84\x2d\xac\x8e\xb8\x30\x28\x67\xdb\x34\x50\x1d\x9b\x57\x9d\xf7\xab\xc9\xda\x37\x6c\x0c\xbf\x79\x91\xff\x9e\xaa\x15\x76\x90\x16\x14\x16\x9e\x29\xac\x79\x4a\x94\x33\xbb\x77\x24\xd2\xe3\xbc\x29\x56\xaa\xda\xfd\xc8\x47\x3c\x96\xd2\xd8\xbd\x1f\x71\x9a\xea\xdb\xc3\x7f\x7c\x24\x00\x68\x1c\x5b\xd3\xfb\xe3\xfe\xcd\x1c\xcf\x7b\xee\x71\xaf\x3d\x39\x97\x8e\x6e\x9e\xf1\x37\xbb\x4f\x9f\x5f\x01\x00\x00\xff\xff\x7c\x03\x2f\x67\x21\x01\x00\x00" func stakingcollectionScriptsGet_locked_tokens_usedCdcBytes() ([]byte, error) { return bindataRead( @@ -5560,11 +5580,11 @@ func stakingcollectionScriptsGet_locked_tokens_usedCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_locked_tokens_used.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x95, 0x64, 0xd6, 0xd9, 0x3e, 0x7a, 0xd9, 0x9b, 0xd, 0x68, 0xa4, 0x4d, 0xfc, 0x18, 0x9c, 0xb1, 0xfd, 0xa0, 0x6b, 0xb8, 0x7c, 0x92, 0x5c, 0xba, 0x8d, 0x99, 0x2, 0x61, 0xfd, 0x1d, 0x80, 0x25}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0xc, 0xfb, 0x97, 0x66, 0x4b, 0x65, 0x92, 0x16, 0xae, 0xa2, 0x40, 0x46, 0xe3, 0xed, 0x54, 0x24, 0x26, 0x91, 0x9f, 0x43, 0x2, 0x56, 0xb6, 0x5e, 0x20, 0x64, 0xb9, 0x16, 0xd4, 0x6a, 0xd9}} return a, nil } -var _stakingcollectionScriptsGet_machine_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcd\x4b\xc3\x30\x18\xc6\xef\xf9\x2b\x9e\x9b\x1b\x88\xf5\x5c\x18\x52\xda\x39\x8a\x73\x03\xbb\x9b\x78\x88\xe9\x9b\x2e\x98\xbe\x29\x49\x8a\x82\xec\x7f\x97\xf5\x63\xf8\x95\x63\xde\xe7\xe3\xf7\x98\xb6\x73\x3e\xe2\xde\xba\xf7\x2a\xca\x37\xc3\x4d\xee\xac\x25\x15\x8d\x63\x68\xef\x5a\xdc\x7e\x54\x87\xec\xa1\xdc\x6d\xf2\xfd\x76\xbb\xce\x0f\xe5\x7e\x97\x15\xc5\xd3\xba\xaa\x84\x48\x92\x04\x1b\x8a\x01\xf1\x48\x68\xa5\x3a\x1a\x26\x48\xa5\x5c\xcf\x11\xb2\xae\x3d\x85\x00\xed\x3c\x24\x42\x47\xca\x68\xa3\xc0\xae\xa6\xc1\x68\x18\x92\x67\xf5\x55\x40\x18\xfb\xa1\x2e\x00\x42\x74\xfd\x2b\x74\xcf\x68\xa5\xe1\xc5\x24\x4d\x91\x8d\xc9\xd7\x43\x56\x59\xa4\xa8\xa2\x37\xdc\x2c\x2f\x97\x3b\x7c\x0a\x00\xb0\x14\x67\xac\x6c\x34\x07\xac\xfe\x1f\x7b\xd3\x50\x7c\xfc\x29\x5d\x4c\x0b\xd2\x19\x72\x29\x86\x54\xa3\x87\xe0\xe9\xb3\x64\xed\xb0\xfa\x5d\xf3\x3c\xa2\xbd\x4c\x20\xe7\xe7\x29\xf6\x9e\xbf\xdb\xce\x9d\x13\xf1\x62\x39\xe8\x4e\x20\x1b\xe8\xaf\x89\x8d\x1d\xef\xe2\x24\xbe\x02\x00\x00\xff\xff\xa7\x4d\x0f\xa6\xb3\x01\x00\x00" +var _stakingcollectionScriptsGet_machine_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xbb\x6a\xeb\x40\x10\x86\xfb\x7d\x8a\x1f\x37\x47\x82\x43\xd4\x0b\x4c\x30\x09\x09\x2e\x52\xb9\x0c\x29\x96\xd5\xac\x3c\x64\x35\x6b\x76\x46\xa4\x08\x7e\xf7\x60\x5d\x4c\x2e\xde\x72\xff\xdb\x37\x3c\x9c\x72\x31\x3c\xa5\xfc\x71\x30\xff\xce\xd2\x3f\xe4\x94\x28\x18\x67\x41\x2c\x79\xc0\xe6\xa6\xb6\x71\xae\x69\x1a\x3c\x93\x29\xec\x48\x18\x7c\x38\xb2\x10\x7c\x08\x79\x14\x83\xef\xba\x42\xaa\x88\xb9\xc0\x43\x4f\x14\x38\x72\x80\xe4\x8e\xa6\x20\x0b\xbc\xac\xee\x7f\x0a\x9d\x07\x10\xae\x0b\xce\xf9\x10\x48\xb5\xf2\x29\xd5\x88\xa3\x60\xf0\x2c\xd5\x12\x69\xb1\x9b\x17\xfe\x4f\x9d\xfb\xc7\x16\x07\x2b\x2c\x7d\x7d\x55\xee\xf1\xe9\x00\x20\x91\xad\x78\xbb\x39\xac\xd8\xde\xbe\xf8\xae\x27\x7b\xf9\x69\xad\x96\x4b\xda\x15\xb6\x76\x53\x2b\xc7\xa9\x78\xf9\xdc\x4b\xcc\xd8\xfe\x9e\x79\x9d\xd1\xde\x16\x90\xcb\x2b\x64\x63\x91\xef\xb1\xcb\xe6\x42\x5c\xd5\x93\xef\x0c\x4a\x4a\x7f\x43\xc2\x69\xd6\xdd\xd9\x7d\x05\x00\x00\xff\xff\x9e\xf8\xd0\x7c\xb8\x01\x00\x00" func stakingcollectionScriptsGet_machine_account_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -5580,11 +5600,11 @@ func stakingcollectionScriptsGet_machine_account_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_machine_account_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf2, 0xe2, 0x5a, 0xfd, 0xd5, 0xcf, 0xe0, 0x54, 0xb4, 0x24, 0xa7, 0x6a, 0x67, 0x96, 0x5d, 0xe, 0xd0, 0x8c, 0xac, 0x28, 0x8b, 0x31, 0x26, 0x52, 0x22, 0xab, 0xc1, 0xed, 0xc8, 0xbb, 0x23, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0x37, 0x6c, 0xc0, 0xd6, 0xcf, 0x69, 0x48, 0xd, 0x1b, 0x78, 0xb0, 0x47, 0x86, 0x8c, 0x66, 0xc0, 0x20, 0x9d, 0x87, 0xc5, 0xac, 0x73, 0xe, 0xc2, 0xd4, 0xa, 0x90, 0x65, 0xf0, 0x84, 0xd5}} return a, nil } -var _stakingcollectionScriptsGet_machine_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xc1\x4a\xc3\x40\x10\x86\xef\xfb\x14\xff\xcd\xf6\x62\x3c\xe7\x16\xd2\x5a\x82\xb5\x05\xb7\x2f\xb0\x6e\x26\xe9\xe2\x66\xa6\xec\x4e\x50\x28\x7d\x77\x21\x89\x82\x60\xef\xdf\x37\xff\x37\x61\xb8\x48\x52\x3c\x47\xf9\xb4\xea\x3e\x02\xf7\xb5\xc4\x48\x5e\x83\x30\xba\x24\x03\x9e\xbe\xec\xa9\x7a\x69\x0e\xbb\xfa\xb8\xdf\x6f\xeb\x53\x73\x3c\x54\x9b\xcd\xdb\xd6\x5a\x63\x8a\xa2\xc0\x8e\x34\xc3\xc5\x08\x3d\x13\x06\xe7\xcf\x81\x09\xce\x7b\x19\x59\xe1\xda\x36\x51\xce\x94\xd1\x49\x02\x4b\x4b\x79\x92\x02\x4f\xf8\x82\x3d\x64\xe4\x79\x1c\xfe\x77\xdd\x98\xcb\xf8\x8e\x6e\x64\x0c\x2e\xf0\x6a\x41\x4b\x54\xf3\xc9\x75\x89\xab\xd5\x14\xb8\x2f\xff\xaf\x7f\x7c\x9d\x5b\xaa\x59\x6c\xb8\x93\x1b\xae\x06\x00\x12\xe9\x98\xf8\x8e\xd6\x93\xfe\x35\xf3\x6a\xf9\xa2\xfc\xe9\x5d\x9b\x9b\xf9\x0e\x00\x00\xff\xff\xc1\x21\xcf\x72\x39\x01\x00\x00" +var _stakingcollectionScriptsGet_machine_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xb1\x6a\xc3\x40\x10\x44\xfb\xfb\x8a\xc1\x4d\xa4\x26\xea\xd5\x99\x40\x42\x8a\x54\xfe\x82\xe5\xb4\x27\x1f\xb9\xdb\x0d\xb7\x2b\x52\x18\xff\x7b\xc0\xa7\x04\x02\x76\x3d\xf3\x1e\x33\xb9\x7e\x69\x73\xbc\x16\xfd\x3e\x39\x7d\x66\x59\x5f\xb4\x14\x8e\x9e\x55\x90\x9a\x56\x1c\xee\x66\x87\x10\xa6\x69\xc2\x1b\xbb\x81\x4a\x81\x9f\x19\x95\xe2\x39\x0b\x83\x62\xd4\x4d\x1c\xb4\x2c\x8d\xcd\xd8\x90\xb4\x41\x74\x61\xbb\x41\x59\x6e\xf5\xbd\xf6\x64\xb0\x6e\x47\xfc\xd3\x87\x40\x31\xb2\xd9\x40\xa5\x8c\x48\x9b\xa0\x52\x96\x61\x47\x66\x1c\xbb\x7a\x9c\x71\x39\x79\xcb\xb2\xce\xf7\x2f\x3c\x7f\xf4\x4d\xc7\x0e\xbe\x4b\xd2\x2b\x2e\x01\x00\x1a\xfb\xd6\xe4\x01\xb6\xb2\xff\x27\x6d\xd8\xdf\xcc\xbf\xbb\xc7\x70\x0d\x3f\x01\x00\x00\xff\xff\x0c\xe4\x1e\xac\x3e\x01\x00\x00" func stakingcollectionScriptsGet_machine_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -5600,11 +5620,11 @@ func stakingcollectionScriptsGet_machine_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_machine_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa4, 0x7e, 0x24, 0x2d, 0xfc, 0x9e, 0xeb, 0x56, 0x2a, 0x77, 0x86, 0x83, 0xb6, 0xdd, 0x2a, 0x61, 0xfc, 0xa2, 0xb2, 0x49, 0x23, 0x61, 0x2f, 0xed, 0xb3, 0x78, 0xf4, 0xa1, 0x25, 0x5d, 0x4e, 0x40}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4d, 0xfe, 0x63, 0x34, 0x4a, 0x68, 0xf3, 0x2f, 0xff, 0x43, 0xd0, 0xd2, 0xc7, 0x57, 0x2b, 0x2b, 0x9c, 0x1a, 0xd4, 0x96, 0xa0, 0x2e, 0xd8, 0x3a, 0x13, 0x78, 0x34, 0xf8, 0x39, 0x65, 0x45, 0x91}} return a, nil } -var _stakingcollectionScriptsGet_node_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4e\xc3\x30\x10\xc6\xf1\xdd\x4f\xf1\x8d\x74\x21\xcc\xdd\xa2\xa4\x20\x8b\x2a\x95\xea\x6e\x88\xc1\xd4\x97\x60\xe1\xdc\x55\xe7\x8b\x00\x21\xde\x1d\xa9\x45\xb0\x74\xfb\xeb\x86\xfb\x7d\x79\x3e\x89\x1a\xee\x8b\xbc\x07\x8b\x6f\x99\xa7\x4e\x4a\xa1\xa3\x65\x61\x8c\x2a\x33\xee\x3e\xc2\xa1\x7d\xf4\xc3\x43\xb7\xdb\x6e\x37\xdd\xc1\xef\x86\xb6\xef\xf7\x9b\x10\x9c\x6b\x9a\x06\x7b\xb2\x45\xb9\x22\x32\xa2\x6a\xfc\x84\x8c\x88\xa5\xc0\x5e\x09\x2c\x89\xe0\xfb\x8a\x6a\xa2\x94\x90\xf9\x7c\xae\x17\x09\xc7\x3f\xca\xb9\xd3\xf2\x82\x71\x61\xcc\x31\xf3\x4d\x4c\x49\xa9\xd6\x35\xda\x4b\xac\xd6\x78\x0a\xa6\x99\xa7\x67\x7c\x39\x00\xd0\xb3\x7a\x7d\xf7\xed\x44\x36\x48\x22\xdf\xd7\xff\x4f\xbf\xb1\x72\xdf\x3f\x01\x00\x00\xff\xff\xbd\x92\x43\x50\xf3\x00\x00\x00" +var _stakingcollectionScriptsGet_node_idsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x4b\xc4\x40\x10\x85\xfb\xfd\x15\x8f\xab\x2e\x8d\xe9\xaf\x13\x0f\x21\x8d\x85\x29\xc5\x62\xd8\x9d\xc4\xc5\xcd\x8c\xcc\x4c\x10\x11\xff\xbb\x90\x88\xd7\xa4\xfb\x78\x0f\xbe\xf7\xea\xf2\xa1\x16\x78\x6c\xfa\x39\x06\xbd\x57\x99\x1f\xb4\x35\xce\x51\x55\x30\x99\x2e\x38\x1d\x76\xa7\x94\xfa\xbe\xc7\x33\xc7\x6a\xe2\x20\x01\x99\xd1\x17\x74\x02\xb5\x86\x78\x63\x88\x16\xc6\x70\x75\x78\xa8\x71\x41\x95\x2d\xf6\x5d\x85\xfc\xef\x4a\x89\x72\x66\xf7\x33\xb5\xd6\x61\x5a\x05\x0b\x55\x39\x53\x29\xc6\xee\x17\xdc\xef\xd0\x5d\xf0\x32\x86\x55\x99\x5f\xf1\x9d\x00\xc0\xb6\xf5\xe3\xf3\x77\x33\xc7\x93\x16\x1e\xae\x7e\x33\xfd\x41\x97\x7e\x7e\x03\x00\x00\xff\xff\x44\x15\x32\xea\xf8\x00\x00\x00" func stakingcollectionScriptsGet_node_idsCdcBytes() ([]byte, error) { return bindataRead( @@ -5620,11 +5640,11 @@ func stakingcollectionScriptsGet_node_idsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_node_ids.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x45, 0x32, 0xd2, 0x69, 0x44, 0xf5, 0xdc, 0xe6, 0x20, 0x93, 0x64, 0x24, 0xd0, 0x77, 0xfa, 0x5b, 0x23, 0x71, 0x4c, 0x54, 0xc7, 0x7e, 0x17, 0xf8, 0x10, 0x5a, 0x81, 0xa7, 0xe0, 0x50, 0x54, 0x12}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0xee, 0x46, 0xe2, 0xae, 0x7, 0xfa, 0x85, 0xe4, 0x58, 0x3f, 0xf4, 0xc3, 0x68, 0x7, 0xe9, 0x24, 0x83, 0xe2, 0x7, 0x84, 0x8a, 0x19, 0x96, 0xe7, 0x17, 0x22, 0xf9, 0x37, 0x5e, 0x4c, 0xf9}} return a, nil } -var _stakingcollectionScriptsGet_unlocked_tokens_usedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4e\xc2\x40\x10\x86\xef\xfb\x14\xff\x11\x2e\xd6\x83\xf1\xd0\x5b\x53\xa8\x21\x12\x48\x6c\xfb\x00\x6b\x77\x28\x9b\x6e\x67\xc8\xce\x6e\xc0\x18\xdf\xdd\x08\x18\x2f\x9e\x27\xf3\x7d\xdf\xef\xe7\x93\xc4\x84\x26\xc8\xb9\x4d\x76\xf2\x3c\xd6\x12\x02\x0d\xc9\x0b\xe3\x10\x65\xc6\xe3\xa5\xed\xaa\xd7\xcd\xee\xa5\xde\x6f\xb7\xeb\xba\xdb\xec\x77\xd5\x6a\xf5\xb6\x6e\x5b\x63\x8a\xa2\x40\x47\x21\x28\x8e\x72\xc6\x6c\xf9\x03\x99\x83\x0c\x13\x39\x24\x99\x88\x15\xe9\x48\xb0\xc3\x20\x99\x13\xbc\x22\xab\xe7\xf1\xfa\xd7\x48\xfc\x39\x46\x82\xde\xc4\x18\xfe\xcc\x2c\x8e\x14\x96\x1d\x1c\x05\x1a\x6d\x92\xa8\xc6\x9c\xf2\x3b\x0e\x99\x31\x5b\xcf\x8b\x3b\xb4\x44\xe5\x5c\x24\xd5\x65\x89\xbe\xf1\x97\xe7\x27\x7c\x1a\x00\x88\x94\x72\xe4\xff\x97\x3d\x8c\x94\xfa\x7b\x68\x77\xed\xec\x95\xdc\xc2\xde\x48\xe5\x6f\xf0\xd2\x7c\x99\xef\x00\x00\x00\xff\xff\xd2\x00\x11\x86\x21\x01\x00\x00" +var _stakingcollectionScriptsGet_unlocked_tokens_usedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x31\x6e\xc3\x30\x0c\x45\x77\x9d\xe2\x23\x93\xbd\xd4\x4b\xd1\xc1\x5b\x51\xc0\x17\x68\x7c\x00\x41\x62\x1c\xc1\x34\x59\x88\x14\xd2\xa2\xe8\xdd\x8b\x26\x29\xb2\x78\x7e\xe0\xe3\xfb\x65\xfb\xd0\xea\x98\x58\x2f\xef\x1e\xd7\x22\xcb\x9b\x32\x53\xf2\xa2\x82\x53\xd5\x0d\x87\x5d\x76\x08\x61\x18\x06\x1c\x89\xd9\x70\xd6\x0b\xb6\x28\x5f\x68\xc2\x9a\x56\xca\x70\x5d\x49\x0c\x7e\x26\xc4\x94\xb4\x89\xa3\x18\x9a\x15\x59\xae\x77\x93\xd6\x3f\x58\x09\x76\x33\x23\x3d\xde\x8a\x66\x32\x44\xc9\xc8\xc4\xb4\x44\xd7\x6a\x21\xc4\x94\xc8\xac\x8b\xcc\x3d\x4e\x4d\xb0\xc5\x22\xdd\x5d\x3e\xe2\x35\xe7\x4a\x66\xfd\x88\x79\x2a\x9f\x2f\xcf\xf8\x0e\x00\x50\xc9\x5b\x95\xfd\x79\x4f\x0b\xf9\x7c\x0f\x3e\x5e\x7b\x67\xa3\xdc\xc5\x9b\x69\xfc\x0f\xef\xc3\x4f\xf8\x0d\x00\x00\xff\xff\x31\xdc\x37\x2c\x26\x01\x00\x00" func stakingcollectionScriptsGet_unlocked_tokens_usedCdcBytes() ([]byte, error) { return bindataRead( @@ -5640,11 +5660,11 @@ func stakingcollectionScriptsGet_unlocked_tokens_usedCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/scripts/get_unlocked_tokens_used.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb7, 0x3a, 0xad, 0x80, 0x59, 0x47, 0x6f, 0xc6, 0x0, 0x50, 0xc4, 0xed, 0x7, 0xec, 0xe7, 0xdd, 0xdc, 0x0, 0x1b, 0x20, 0x27, 0x43, 0x2f, 0xda, 0x7c, 0x27, 0xb6, 0x99, 0x7a, 0x72, 0x66, 0x46}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x6b, 0x4a, 0x39, 0xdc, 0x90, 0x32, 0xaf, 0x58, 0x89, 0x48, 0x1d, 0x77, 0x1, 0x5, 0x8f, 0xe8, 0xf2, 0xc2, 0x68, 0xf, 0x44, 0xda, 0x36, 0x67, 0x13, 0x46, 0xf, 0x2a, 0x1c, 0x6d, 0xb2}} return a, nil } -var _stakingcollectionSetup_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\x4b\x6f\xea\x46\x14\xde\xf3\x2b\xce\xbd\x8b\x5b\x23\xf1\xe8\x1a\x91\xdc\x12\x20\xa9\x15\x04\x51\x70\x5b\x75\x39\xd8\xc7\xf6\x94\xc9\x8c\x35\x33\x86\x46\x11\xff\xbd\x1a\xdb\xe3\x07\xe0\x84\x44\x51\xca\x22\x44\xf6\x79\x7c\xdf\x77\x5e\xd0\xa7\x44\x48\x0d\xb7\x29\x8f\xe8\x86\xa1\x27\xb6\xc8\x21\x94\xe2\x09\x7e\xfd\xf7\xf6\x8f\xe5\x9d\x7b\xb3\x98\x7b\xab\xfb\xf9\x72\x32\x9b\x3d\xce\xd7\xeb\x8e\x75\x60\x62\xdf\x34\x5e\xac\xfe\x6a\x33\x74\x67\x1e\xd9\x30\x5c\x6b\xb2\xa5\x3c\xb2\x1e\xee\x6c\xbe\xf4\x5c\xef\x6f\x6f\x72\xb3\x98\x1f\x79\x2d\x84\xbf\xc5\x20\x4b\xa0\xac\xfd\x62\x35\xbd\x9f\xcf\xda\x72\x14\xc1\xa7\x82\x31\xf4\x35\x15\x25\xb0\xb5\x37\xb9\x77\x97\x77\xd3\xd5\x62\x31\x9f\x7a\xee\xaa\x74\xee\x0c\x87\x43\xf0\x62\xaa\x40\x4b\xc2\x15\xc9\xbd\x14\x6a\x05\x69\x02\x84\x03\xf1\x7d\x91\x72\x0d\x5a\x40\xaa\x10\x08\xa8\x82\x80\x5f\x26\xc9\x62\xb8\x1a\xf6\x94\x31\xd8\x0b\xb9\x05\x89\x11\x91\x01\x43\xa5\x40\x84\xb0\x8f\x51\xc7\x28\x41\xc7\xf8\x0c\x31\xd9\x99\x28\x12\xa3\x94\x11\x69\xc3\xf7\x80\x80\xde\x8b\xbe\xcd\xc6\x32\xea\xa0\x73\xee\x0a\x75\x9a\xf4\xb2\x34\x42\x96\x00\xc4\xe6\x1f\xf4\xb5\x02\xa5\x85\xc4\x00\x28\x37\x09\x20\xe5\x85\x6f\x11\xaa\xd3\xa9\x13\x7b\xe9\x00\x00\x24\x12\x13\x22\xd1\x51\x34\xe2\x28\x47\x30\x49\x75\x3c\xc9\xcd\xbb\xf0\xd2\xc9\x6c\xcc\xc7\xd0\x0a\x4d\x54\x89\x40\x15\xff\x45\x03\x61\x12\x49\xf0\x7c\x5e\x06\xeb\x46\x43\xc8\x23\x0f\x36\x42\x4a\xb1\x1f\xff\x38\x5b\x9b\xc1\xc9\x93\x6b\xc7\x94\x6b\x74\xbe\x94\xa7\xe6\x6b\x2d\x24\x89\xf0\x81\xe8\xb8\x0b\x57\x57\xc0\x29\xab\xa3\x2f\x18\x4c\x25\x12\x8d\x90\x48\xba\x33\xdf\x3e\x49\xc8\x86\x32\xaa\x29\x2a\x08\x45\x56\x95\x5c\x67\x88\x05\x0b\x50\x02\xe1\x41\xa5\xe2\x8e\xa4\x4c\x37\x42\x32\xb4\xe5\xf9\x3d\xb7\xbf\xb2\x6c\x19\xe5\xdb\xf1\x8f\x7a\xd7\x0e\xb2\xaf\xdc\xee\xda\x19\x16\x18\x86\xa1\x9d\x9b\xfc\x4d\x0f\x34\x91\x11\xea\x11\xb4\xf9\xd6\x99\x7e\x3b\x41\x53\x86\x3b\x86\x52\xce\xe7\xe0\x4f\x43\xe3\x1c\x82\xec\x45\x05\x60\xa8\xf2\x4c\x47\x06\x47\x49\x5b\x24\x26\xc0\x71\x0f\x76\xc0\x6b\x43\x68\x14\x4d\x52\x0d\x54\x9b\x2e\x2d\x52\x34\x82\xd0\xb0\xa1\xe9\xc0\x8f\xd1\xdf\x3a\xdd\xa2\x5f\xeb\x9f\x82\xa0\x22\x3b\x74\xc6\xfd\xf3\x9d\xe2\x67\x78\x4e\x9e\x3b\xb6\xaa\x19\xa7\x51\xa5\x5b\x2f\x6f\x80\x3c\xf7\xa8\x81\xa4\x6b\xde\x7d\xa8\x23\x1b\xc8\x0f\x80\x4c\xe1\xff\x43\x87\x53\xf6\x59\x2c\xda\x86\x8b\x40\x92\x6e\x18\xf5\xc1\xf4\x9d\x59\x95\x66\xa8\x5e\xd9\x10\x35\xe6\x55\xa7\x5e\x80\xec\xe5\x42\xbb\x87\x0c\xcd\xe1\xda\x39\xd1\xfb\x5d\x01\x8c\x02\xbd\x93\x10\x76\x56\xde\xaf\x66\x23\x54\x25\xed\xa1\xb1\x71\xf3\x9d\x99\x9d\x88\x10\x25\x72\x1f\x2f\x10\xd4\xac\x81\xea\xf1\x23\x86\xd5\x2a\xf8\xba\x1d\xdc\xa0\xf7\xf3\x27\x24\x84\x53\xdf\xf9\x3e\x15\x29\x0b\x80\x0b\x6d\xa9\x9d\xf2\xa8\xb8\x7e\xef\xb6\x9d\x1f\xb3\x5e\x44\x90\xab\x80\xb2\xb8\x7e\xf6\xea\x95\x67\xb4\x5a\x33\x6f\x28\x76\xfe\x48\x35\x7f\xa4\x0c\x96\x22\xc8\xfe\x37\xdb\xbb\x92\xa5\xd5\xa8\x71\x90\xbe\xd9\x83\x54\x57\xc5\xd4\x29\x63\x31\xee\x97\x03\x20\x48\x30\xfe\xed\x73\x93\x37\xd7\x75\xa3\x31\x06\x24\x08\x8c\xd3\x2a\xd3\xcf\x19\xf7\x0d\x9c\x1e\x3c\x11\x3f\xa6\x1c\x8b\x5f\x01\x2e\x0f\x45\xbe\x38\x5a\x9a\xb4\x59\x97\x00\x19\x46\x44\x8b\x2f\xac\xca\xcc\xa6\x7c\x45\x9b\xd2\xe6\xb2\xba\x54\x2c\x2e\x2c\xce\x87\x31\xbc\x51\x9e\xd2\xa7\xac\x51\x09\xad\x5e\x8f\xfc\xef\xa1\xf3\x5f\x00\x00\x00\xff\xff\x6b\x24\xa3\x92\xbe\x0b\x00\x00" +var _stakingcollectionSetup_staking_collectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xdf\x4f\xfb\x36\x10\x7f\xcf\x5f\x71\xf4\x81\x25\x52\x9b\xbe\x57\x85\xef\xb6\x7e\x35\x0d\x69\x1a\x68\x20\xf6\x7c\x4d\x2e\x8d\x57\x63\x47\xb6\xd3\x08\x21\xfe\xf7\xc9\xce\x4f\x37\x29\x74\x30\x0d\x69\x7e\x20\xd4\xbe\x5f\x9f\xfb\xf8\xce\xc7\x9e\x0a\xa9\x0c\xfc\x52\x8a\x1d\xdb\x72\x7a\x90\x7b\x12\x90\x29\xf9\x04\x33\x6f\x6f\x16\xb4\x92\x5c\x56\x9e\x54\xfb\xdb\x93\xb8\xf9\xfe\x80\x5b\x4e\xf7\x06\xf7\x4c\xec\x06\xa2\xfe\x41\xa7\xf3\x9b\x4c\xf6\x94\x3a\x3b\xba\x91\x1e\x6e\x79\xb6\x1b\xdd\x8d\xe4\x9c\x12\xc3\xe4\x30\x92\xd1\xd9\x2c\x08\x96\xcb\x25\x3c\xe4\x4c\x83\x51\x28\x34\xd6\x2a\x9a\x8c\x86\xb2\x00\x14\x80\x49\x22\x4b\x61\xc0\x48\x28\x35\x01\x82\x6e\xa2\x4e\x3a\x2b\xce\xc6\x8d\x81\x8a\x71\x0e\x95\x54\x7b\x50\xb4\x43\x95\x72\xd2\x1a\x64\x06\x55\x4e\x26\x27\x05\x26\xa7\x67\xc8\xf1\x60\xad\x28\xda\x95\x1c\x55\x6b\x7e\x0e\x08\xa6\x92\x8b\xd6\x1b\x77\xf0\xc0\xd4\x90\x35\x99\xb2\x98\x3b\x37\x52\x75\x01\xc8\xed\x5f\x94\x18\x0d\xda\x48\x45\x29\x30\x61\x1d\x40\x29\x1a\xdd\xc6\x54\x10\x0c\x81\xbd\x04\x00\x00\x85\xa2\x02\x15\x85\x9a\xed\x04\xa9\x15\x60\x69\xf2\xf0\x67\xa9\x94\xac\x1e\x91\x97\x34\x87\x7b\x23\x15\xee\x68\x0e\x1b\x2c\x70\xcb\x38\x33\x8c\x74\x04\x97\x3f\xd5\x46\x23\x78\x09\x9c\x25\xbb\x2c\xf8\xcc\xfa\x56\x04\x4c\x8b\x1f\x0c\x20\x57\x84\xe9\xf3\x74\xb2\x5a\x35\x96\x41\xed\x3f\xd6\xb5\xb3\x78\xeb\x22\x58\x5f\x4e\x52\x15\x8f\x76\xae\x43\xcb\xec\x6a\x9a\xf5\xb1\x78\x03\xe9\x0e\x4d\x1e\xc1\xd5\x15\x08\xc6\x87\x28\x1a\x24\x1b\x45\x68\x08\x0a\xc5\x0e\xf6\x9b\x0c\xe0\x43\x26\x1d\x87\x35\x2b\x90\x4b\x9e\x92\x02\x14\x69\x9f\xf3\x03\x96\xdc\x78\x26\x39\xb5\x64\xfe\x5a\xcb\x5f\xb5\xa8\x87\xa6\xbb\x14\x30\xad\x4b\x5a\x3b\x3e\xbc\x02\x8b\xff\x64\x26\x4f\x15\x56\x73\xaf\x18\x62\xf7\xb9\x2d\x48\xa1\x85\x68\x19\x1a\x1f\xd7\x8e\xaf\xc3\x53\x27\xc3\xc4\x5c\x8c\x82\xcf\xba\x8a\xfe\x64\xe4\x11\x5c\x76\xdd\x20\x7e\xb4\x89\xba\x0e\x97\x8d\xf6\xb2\xf3\xe2\x0e\xa2\x8b\x53\xbc\x20\x08\xaa\xa0\x6d\x1c\x83\x22\xb7\x34\x14\xa5\x01\x66\x6c\x21\x34\x66\x3d\x23\x2c\xf3\x88\x88\x93\x9c\x92\x7d\x18\x35\x25\x31\x5c\x47\xd7\x52\xe3\x81\xc2\x91\x90\x5d\xeb\xc5\x89\xcb\x97\xb8\x68\x47\xfb\xd3\x56\xec\x6a\x6f\x90\x83\xbf\xea\x93\x3e\x3f\xa9\x61\x7a\x02\x57\x1e\xb0\x49\x8d\x68\xda\x90\x91\x1f\x29\x9f\x91\xa9\xc8\xdb\x79\x05\xe2\x9a\xfe\x17\x79\x15\x8c\x7f\x7d\x3a\x47\xb5\x70\x57\x6e\x39\xd3\x39\x60\xdf\x9e\x9e\xed\xfb\x64\x7b\x53\x9d\xa1\x74\xa2\xf1\xc6\xa3\xd2\xd6\xc7\x41\x6d\xb0\x38\xab\xca\xcf\xef\xd0\x23\x6c\x9f\x4c\x4f\xe4\x27\x63\x2a\xd4\xa2\xce\xce\xd8\xf5\x14\xdc\x31\x8f\x68\xce\xe6\xd0\xf1\x90\x4c\xc4\x38\x41\xdd\x72\x09\xf5\xf3\xe6\xde\xfe\x8c\x14\x89\x84\x5a\xd2\xde\x78\x25\x2d\x4f\xfd\xf6\x1f\x94\xf5\x04\xfd\xf7\xcf\xa6\x07\xf3\xdb\x37\x28\x50\xb0\x24\x9c\x6d\x64\xc9\x53\x10\xd2\xb4\x10\xc7\x78\x7a\xcc\xb3\xe8\xd4\xe4\x60\x9b\xbb\x4c\xeb\x6c\x90\x6a\xc6\x9b\x76\xac\xe9\xe6\xa4\xbe\xc9\xbf\x93\xb9\xb7\xe7\x0b\x7f\xd2\x8c\x7f\x97\xa9\xfb\xdf\xbe\x93\x7d\x7a\x4e\x0a\x79\xb3\xc4\x45\x3b\x4b\x1c\xd7\x97\x43\xb3\x5e\x1c\x87\xc1\x25\xa6\xeb\x1f\xff\xdd\x20\xfc\x77\xdb\xbb\x30\x31\xa6\xa9\x55\xba\x75\xf9\x0c\xd7\x0b\x1b\xd6\x1c\x9e\x30\xc9\x99\xa0\x66\xa0\xbb\x11\x99\x74\xed\xee\xd4\xe5\xf5\x79\x4a\x89\xd3\x0e\x8d\xfc\x02\x96\xbe\xb7\xae\xdf\xc8\x51\x27\x73\x1e\x4f\x3d\x9a\x7f\x48\xd6\x87\x63\x79\x87\xae\x4e\xa7\xe3\xac\x0b\x71\xc8\x4f\xfd\xf7\x35\xf8\x3b\x00\x00\xff\xff\x2f\x57\xf5\xcc\xa6\x0d\x00\x00" func stakingcollectionSetup_staking_collectionCdcBytes() ([]byte, error) { return bindataRead( @@ -5660,11 +5680,11 @@ func stakingcollectionSetup_staking_collectionCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/setup_staking_collection.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0x41, 0x87, 0x59, 0x87, 0x7c, 0xcb, 0xe9, 0xdd, 0x3a, 0x84, 0x4, 0xfe, 0x2e, 0xda, 0x72, 0xc3, 0xab, 0x10, 0xa9, 0x54, 0x90, 0x37, 0x82, 0x32, 0xfa, 0xb3, 0x41, 0xf, 0x73, 0x5a, 0xe8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc6, 0x8f, 0xd5, 0x44, 0x8b, 0x79, 0x97, 0x70, 0x5e, 0x2a, 0xd, 0xcd, 0x70, 0xb3, 0x50, 0xdb, 0x48, 0xaa, 0x31, 0xa6, 0xeb, 0xb3, 0x2, 0xb6, 0xeb, 0xdf, 0xee, 0xac, 0xe2, 0x1e, 0xd1, 0x58}} return a, nil } -var _stakingcollectionStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xc1\x6a\x1b\x31\x10\x86\xef\xfb\x14\x3f\x39\x14\x07\x8c\x5d\xda\xd2\x83\x69\x6b\xcc\x3a\x29\xa6\xc1\x29\x59\xe7\x01\x94\xdd\x91\x2d\xac\xd5\x2c\xd2\x6c\xd7\xa5\xe4\xdd\xcb\x4a\x59\x3b\xc4\x3e\x44\x07\x09\x0d\xa3\xef\xff\x35\x33\xa6\x6e\xd8\x0b\x6e\x2d\x77\x85\xa8\xbd\x71\xdb\x9c\xad\xa5\x52\x0c\x3b\x68\xcf\x35\x3e\x1e\x8a\xcd\xe2\xd7\x6a\xfd\x33\xbf\xbf\xbb\xbb\xc9\x37\xab\xfb\xf5\x62\xb9\x7c\xb8\x29\x8a\x2c\x9b\x4e\xa7\xc8\xb9\xae\x8d\x04\x38\xea\x20\xbc\x27\x17\x20\x8c\x20\x6a\x4f\xd0\xec\x21\x3b\x42\x68\xa8\x34\xda\x50\x05\xc7\x15\x81\x3d\x2a\xb2\xb4\x55\xc2\x1e\xc6\xa5\x94\xa4\x8e\xf2\x28\x1f\xe9\x9b\x1d\x0d\xd4\xe8\xa6\x4f\xb5\x5c\xee\xa9\xc2\x1f\xd5\x5a\x81\xf2\x84\x36\x50\x05\x6d\x7c\x90\x31\x8c\x86\x11\xd0\xc1\x04\x09\x91\xa0\xd9\x5a\xee\xa8\xc2\xd3\xdf\xf8\xfa\x2d\xad\x75\xaf\x79\x59\x26\x5e\xb9\xa0\xa2\x83\x51\xef\x76\xb5\x9c\xa1\x10\x6f\xdc\x76\x7c\x72\xdd\x07\x1f\x57\x4e\x3e\x7f\x9a\x8f\xa1\x6a\x6e\x9d\xcc\xf0\x78\x6b\x0e\x5f\xbf\x5c\xe3\x5f\x06\x00\x71\xb3\x24\xc3\xcf\x4e\x75\x7d\x20\x3d\xc3\x87\x8b\x25\x9f\x9c\x45\xb2\xc8\x69\x3c\x35\xca\xd3\x48\x95\x65\xd2\x5a\xb4\xb2\x5b\xa4\xcb\x20\xd8\xaf\x40\x56\x4f\x2e\x09\xe2\x3b\x5e\xde\x4e\x9e\xd8\x7b\xee\xbe\xbd\xd7\xc0\x8f\x51\x5f\xaa\xd9\xe5\x11\x39\x4f\x2f\x84\xbd\xda\xd2\x6f\x25\xbb\xeb\xa3\xad\x7e\xcd\xe7\x68\x94\x33\xe5\xe8\x2a\xe7\xd6\xf6\x93\x20\x48\x56\xe0\x49\xf7\x33\x73\xc6\xba\x4a\x84\xe7\x54\x03\x3a\x50\xd9\x0a\xbd\xe7\xb7\x31\x48\x6b\xea\x36\xb1\xd9\xc7\x3e\xa6\xf3\x4d\x1f\x5f\x5d\x4e\xbd\x4c\xe7\xa0\xff\x9c\xfd\x0f\x00\x00\xff\xff\xec\x54\xa2\x45\x28\x03\x00\x00" +var _stakingcollectionStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x6f\xdb\x30\x0c\x85\xef\xfe\x15\x0f\x39\x74\x09\x10\x24\xc0\x36\xec\x10\x6c\x0b\xb6\x0c\x05\x7a\xd9\x86\xa5\xdd\x5d\xb5\xe9\x44\x88\x2c\x1a\x14\x3d\xa7\x18\xfa\xdf\x07\x49\x75\x52\x34\x3e\xec\x52\x1d\x2c\x9b\xa2\x1f\x1f\xa9\xcf\x36\x2d\x8b\xe2\xda\x71\xbf\x55\x73\xb0\x7e\xb7\x61\xe7\xa8\x54\xcb\x1e\xb5\x70\x83\xc9\xe8\xd9\xa4\x28\x96\xcb\x25\x36\xdc\x34\x56\x03\x3c\xf5\x50\x3e\x90\x0f\x50\x46\x50\x73\x20\xd4\x2c\xd0\x3d\x21\xb4\x54\xda\xda\x52\x05\xcf\x15\x81\x05\x15\x39\xda\x19\x65\x81\xf5\x39\x25\xcb\xa3\x3c\xe9\x27\xf5\xdb\x3d\x0d\xaa\xc9\x4a\x4c\x75\x5c\x1e\xa8\xc2\x1f\xd3\x39\x85\x11\x42\x17\xa8\x42\x6d\x25\xe8\x1c\xb6\x86\x55\xd0\xd1\x06\x0d\x49\xa1\x66\xe7\xb8\xa7\x0a\xf7\x0f\xe9\xef\x97\x6a\x9d\x7f\xae\x57\x14\x2a\xc6\x07\x93\x1c\x4c\xa3\xdb\x9b\x6f\x2b\x6c\x55\xac\xdf\xcd\xcf\xae\x63\xf0\xee\xc6\xeb\xbb\xb7\xeb\x39\x4c\xc3\x9d\xd7\x15\xee\xae\xed\xf1\xc3\xfb\x19\xfe\x16\x00\x90\x1e\x8e\x74\xe8\xec\x3c\xb8\x5f\x54\xaf\x60\x3a\xdd\x4f\x47\xe7\xba\x38\xbf\xfe\xe8\x3d\xc9\x0c\x57\xe3\x79\x17\x91\x22\xd5\x6c\x85\x5a\x23\x34\x35\x65\x99\x7d\xa5\x52\x5f\x59\x84\xfb\xdf\xc6\x75\x34\xc3\xd5\x97\x7c\x36\x78\x8d\x2b\x90\xab\x17\x63\x5e\xf1\x09\x4f\x52\x8b\xa0\x2c\x66\x47\x8b\xfb\x24\xf6\xf1\x35\x7a\xf8\x3c\x8d\x37\xb3\x1a\xc7\xf1\x32\x7d\x9b\x1d\xfd\x34\xba\x9f\x9d\x5a\x89\x6b\xbd\x46\x6b\xbc\x2d\xa7\x93\x0d\x77\x2e\x82\xa7\xc8\xb6\x61\x20\x54\x93\x90\x2f\x23\x0d\x30\xb8\xc4\xfe\x09\xca\x56\x6c\x63\xe4\x21\x02\x26\x6f\xc2\x30\x86\x49\xae\xf4\x98\xc7\x4d\x47\x2a\x3b\xa5\xff\x99\x64\x0a\xd2\x77\xea\x6f\x13\x83\x27\xbc\xf2\xfe\x02\xaf\x67\x1f\x67\xc4\xf2\x3e\xd4\x7f\x2c\xfe\x05\x00\x00\xff\xff\x19\x9a\x91\xbf\xbc\x03\x00\x00" func stakingcollectionStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5680,11 +5700,11 @@ func stakingcollectionStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd, 0x83, 0x37, 0x9f, 0xaa, 0xc4, 0x87, 0xda, 0x7e, 0xaf, 0x41, 0x49, 0xd3, 0xe, 0xac, 0xd, 0xa9, 0xb8, 0x16, 0xce, 0xbc, 0x57, 0xa0, 0x71, 0x8c, 0xf3, 0x87, 0x9c, 0x2e, 0xdc, 0x1e, 0x31}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1f, 0x9a, 0xc7, 0x41, 0xbc, 0xe4, 0x74, 0x85, 0x15, 0x98, 0x99, 0xf, 0x7e, 0xfb, 0xc8, 0x6a, 0x9e, 0x96, 0x5b, 0xb6, 0x66, 0x12, 0x17, 0x77, 0x7b, 0xc3, 0x9e, 0x10, 0x6e, 0xc6, 0xe5, 0x3e}} return a, nil } -var _stakingcollectionStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xdd\xca\xda\x40\x10\xbd\xcf\x53\x1c\xbc\x28\x11\x44\x4b\x5b\x7a\x11\xda\x4a\x88\x5a\x42\x45\x8b\xd1\x07\xd8\x26\x93\xb8\x98\xec\x84\xcd\x04\x85\xe2\xbb\x7f\x24\xeb\xcf\xc7\xa7\x17\xee\xc5\x2e\x33\xec\x9c\x73\x66\xce\xe8\xaa\x66\x2b\x58\x94\x7c\x4c\x44\x1d\xb4\x29\x22\x2e\x4b\x4a\x45\xb3\x41\x6e\xb9\xc2\xe7\x53\xb2\x0d\xff\xc4\xab\xdf\xd1\x7a\xb9\x9c\x47\xdb\x78\xbd\x0a\x67\xb3\xcd\x3c\x49\x3c\x6f\x32\x99\x20\xe2\xaa\xd2\xd2\xc0\xd2\x51\xd9\x8c\x32\x08\x1f\xc8\x34\x10\x46\x23\xea\x40\xc8\xd9\x42\xf6\x84\xa6\xa6\x54\xe7\x9a\x32\x18\xce\x08\x6c\x91\x51\x49\x85\x12\xb6\xd0\xc6\x7d\x71\x12\x90\xde\x34\x78\x9e\x58\x65\x1a\xd5\x07\x7e\x57\x18\xcf\x02\x24\x62\xb5\x29\x46\x77\x80\x2e\xb9\x8b\x8d\x7c\xfd\x32\x1d\x41\x55\xdc\x1a\x09\xb0\x5b\xe8\xd3\xf7\x6f\x43\xfc\xf7\x00\xa0\xbf\x4a\x92\x2b\xc9\xbd\xcf\x0d\xe5\x01\x3e\x3d\x1d\xc1\xf8\x21\xe3\xf5\x38\xb5\xa5\x5a\x59\xf2\x55\x9a\x3a\xae\xb0\x95\x7d\xe8\x82\x2b\x61\x77\x1a\x2a\xf3\xf1\x33\x42\xfc\xc4\xa5\x76\xfc\x8f\xad\xe5\xe3\x8f\x57\x05\xfc\xf2\x3b\x5b\x82\xe7\x96\x3d\x7e\x4f\x84\xad\x2a\xe8\xaf\x92\xfd\xf0\x26\xab\x3b\xd3\x29\x6a\x65\x74\xea\x0f\x22\x6e\xcb\xce\x14\x81\x93\x02\x4b\x79\x67\xdf\x03\xd6\xc0\x21\x9c\xdd\x0c\xe8\x44\x69\x2b\xf4\x4a\xb7\x7d\x92\x36\x97\x0d\xd9\xf6\x0b\x72\x33\xd3\xbd\x1f\xcc\x7c\x17\xdc\x0d\x75\xef\x55\xc4\xd9\x7b\x0b\x00\x00\xff\xff\xa8\x2e\xa8\x04\xbd\x02\x00\x00" +var _stakingcollectionStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x41\x8f\xd3\x30\x10\x85\xef\xf9\x15\x4f\x3d\x2c\xa9\xb4\x6a\x25\x40\x1c\x2a\xa0\x82\xa2\x95\xf6\x04\xda\xb2\xdc\x07\x67\xd2\x5a\x75\x3c\xd1\x78\xa2\x2e\x42\xfb\xdf\x51\xe2\xb6\x41\x34\x07\x2e\xeb\x43\x1c\x8f\xc7\xf3\xde\x8c\x3e\xdf\xb4\xa2\x86\xbb\x20\xc7\xad\xd1\xc1\xc7\xdd\x46\x42\x60\x67\x5e\x22\x6a\x95\x06\xb3\xc9\xbb\x59\x51\x2c\x97\x4b\x6c\xa4\x69\xbc\x25\x28\x1f\x49\x2b\xae\x60\x72\xe0\x98\x60\x82\x64\x74\x60\xd4\xa2\xb0\x3d\x23\xb5\xec\x7c\xed\xb9\x42\x94\x8a\x21\x8a\x8a\x03\xef\xc8\x44\xe1\x63\x4e\xc9\x1a\x70\x17\x91\xa2\x30\xa5\x98\x68\x38\x94\xfd\xc3\xfb\x2f\x2b\x6c\x4d\x7d\xdc\xdd\x8e\x05\xfa\xe0\xe3\x7d\xb4\x37\xaf\xd7\xb7\xa0\x46\xba\x68\x2b\x3c\xde\xf9\xa7\x77\x6f\xe7\xf8\x5d\x00\xc0\xf0\x09\x6c\x67\x91\xb1\x91\x07\xae\x57\xa0\xce\xf6\xe5\x64\x9f\x8b\xf1\xf7\xeb\x31\xb2\xce\x71\x33\x9d\x77\x15\x29\x06\xcd\x56\xb9\x25\xe5\x92\x9c\xcb\xbe\x06\xa9\xcf\xa2\x2a\xc7\x1f\x14\x3a\x9e\xe3\xe6\x53\xbe\x3b\x7b\xed\x57\xe2\x50\x2f\xa6\xbc\xe2\x03\x4e\xa5\x16\xc9\x44\x69\xc7\x8b\x9f\x43\xb1\xf7\x2f\xd1\xc3\xc7\xb2\x47\x60\x35\x8d\xc7\x75\xfa\x36\x3b\xfa\x46\xb6\x9f\x5f\x5a\xe9\xd7\x7a\x8d\x96\xa2\x77\xe5\x6c\x23\x5d\xe8\x19\x30\x64\xdb\x20\x28\xd7\xac\x1c\x1d\xf7\xd4\x10\xae\x31\x3c\xf1\xd1\xaa\x6f\x48\x7f\xa1\x4b\xac\xaf\xd2\x79\x0c\xb3\xac\xf4\x9c\xc7\xcd\x4f\xec\x3a\xe3\xff\x99\xe4\x10\xe4\x87\x13\xb8\xdf\x07\x6e\x2f\x8c\xe5\xfd\x1f\xc6\xfe\x3a\x8c\x9c\xe5\xfd\x6c\xe2\xb9\xf8\x13\x00\x00\xff\xff\x2f\x51\xad\x1c\x51\x03\x00\x00" func stakingcollectionStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5700,11 +5720,11 @@ func stakingcollectionStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0x8e, 0x32, 0xe0, 0x5e, 0x34, 0x11, 0x60, 0x2d, 0xf1, 0x4f, 0xad, 0x4e, 0x59, 0x3e, 0x2e, 0x5d, 0x31, 0xfd, 0x3d, 0x36, 0x15, 0xf8, 0x38, 0x97, 0x41, 0x38, 0xf, 0xdd, 0x44, 0xc6, 0x7a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x29, 0xa7, 0x4a, 0x17, 0x9b, 0x2d, 0xe2, 0x9b, 0xf8, 0xdb, 0xe2, 0xb2, 0x5b, 0x3b, 0xa5, 0x1c, 0xe, 0xec, 0x5d, 0xb3, 0x86, 0xb, 0xeb, 0xd5, 0x62, 0xbe, 0xc9, 0x84, 0x5, 0xe, 0x1d, 0x75}} return a, nil } -var _stakingcollectionStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xdd\xca\xda\x40\x10\xbd\xcf\x53\x1c\xbc\x28\x11\x44\x4b\x5b\x7a\x11\xda\x4a\x88\x5a\x42\x45\x8b\xd1\x07\xd8\x26\x93\xb8\x98\xec\x84\xcd\x04\x85\xe2\xbb\x7f\x24\xeb\xcf\xc7\xa7\x17\xee\xc5\x2e\x73\xd8\x3d\xe7\xec\x9c\xd1\x55\xcd\x56\xb0\x28\xf9\x98\x88\x3a\x68\x53\x44\x5c\x96\x94\x8a\x66\x83\xdc\x72\x85\xcf\xa7\x64\x1b\xfe\x89\x57\xbf\xa3\xf5\x72\x39\x8f\xb6\xf1\x7a\x15\xce\x66\x9b\x79\x92\x78\xde\x64\x32\x41\xc4\x55\xa5\xa5\x41\x6b\x1a\x51\x07\xca\x20\x7c\x20\xd3\x40\x18\x3d\x80\x9c\x2d\x64\x4f\x68\x6a\x4a\x75\xae\x29\x83\xe1\x8c\xc0\x16\x19\x95\x54\x28\x61\x0b\x6d\xdc\x15\x67\x01\xe9\xcd\x83\xe7\x89\x55\xa6\x51\x7d\xe1\x77\x0f\xe3\x59\x80\x44\xac\x36\xc5\xe8\x4e\xd0\x81\xbb\xd8\xc8\xd7\x2f\xd3\x11\x54\xc5\xad\x91\x00\xbb\x85\x3e\x7d\xff\x36\xc4\x7f\x0f\x00\xfa\xad\x24\xb9\x8a\xdc\xff\xb9\xa1\x3c\xc0\xa7\xa7\x2d\x18\x3f\x20\x5e\xcf\x53\x5b\xaa\x95\x25\x5f\xa5\xa9\xd3\x0a\x5b\xd9\x87\xae\xb8\x0a\x76\xab\xa1\x32\x1f\x3f\x13\xc4\x4f\x5c\xde\x8e\xff\xb1\xb5\x7c\xfc\xf1\xaa\x81\x5f\x7e\x17\x4b\xf0\x3c\xb2\xc7\xeb\x89\xb0\x55\x05\xfd\x55\xb2\x1f\xde\x6c\x75\x6b\x3a\x45\xad\x8c\x4e\xfd\x41\xc4\x6d\xd9\x85\x22\x70\x56\x60\x29\xef\xe2\x7b\xe0\x1a\x38\x86\xb3\xeb\x01\x9d\x28\x6d\x85\x5e\xf9\x6d\x0f\xd2\xee\x32\x21\xdb\x7e\x40\x6e\x61\xba\xf3\x43\x98\xef\x8a\x7b\xa0\xee\xbc\x9a\x38\x7b\x6f\x01\x00\x00\xff\xff\x3a\x54\x8d\x83\xbd\x02\x00\x00" +var _stakingcollectionStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x8f\xd3\x30\x10\xc5\xef\xf9\x14\x4f\x3d\x2c\xa9\xb4\x6a\x25\x40\x1c\x2a\xa0\x82\xa2\x95\xf6\x04\xa2\x94\xfb\xe0\x4e\x5a\xab\x8e\x27\x1a\x4f\xd4\x45\x68\xbf\x3b\x8a\xdd\x3f\x88\xe6\xc0\x05\x1f\xe2\x78\x3c\x9e\xf7\x66\xf4\xf3\x6d\x27\x6a\x78\x08\x72\x5c\x1b\x1d\x7c\xdc\xad\x24\x04\x76\xe6\x25\xa2\x51\x69\x31\x19\xbd\x9b\x54\xd5\x7c\x3e\xc7\x4a\xda\xd6\x5b\x42\x1f\x93\xd1\x81\xb7\x30\x39\x70\x4c\x30\x41\x0e\xa0\x11\x85\xed\x19\xa9\x63\xe7\x1b\xcf\x5b\x44\xd9\x32\x44\xb1\xe5\xc0\x3b\x32\x51\xf8\x58\x52\x8a\x06\xdc\x45\xa4\xaa\x4c\x29\x26\xca\x87\x7a\x78\xf8\xf8\x69\x81\xb5\xa9\x8f\xbb\xfb\x6b\x81\x21\xb8\x79\x8c\xf6\xea\xe5\xf2\x1e\xd4\x4a\x1f\x6d\x81\xcd\x83\x7f\x7a\xf3\x7a\x8a\x5f\x15\x00\xe4\x4f\x60\x3b\x8b\x5c\x1b\xf9\xca\xcd\x02\xd4\xdb\xbe\x1e\xed\x73\x76\xfd\xfd\x7c\x8c\xac\x53\xdc\x8d\xe7\xdd\x44\xaa\xac\xd9\x29\x77\xa4\x5c\x93\x73\xc5\x57\x96\xfa\x28\xaa\x72\xfc\x4e\xa1\xe7\x29\xee\x3e\x94\xbb\xb3\xd7\x61\x25\x0e\xcd\x6c\xcc\x2b\xde\xe1\x54\x6a\x96\x4c\x94\x76\x3c\xfb\x91\x8b\xbd\xfd\x1f\x3d\xbc\xaf\x07\x04\x16\xe3\x78\xdc\xa6\xaf\x8b\xa3\x2f\x64\xfb\xe9\xa5\x95\x61\x2d\x97\xe8\x28\x7a\x57\x4f\x56\xd2\x87\x81\x01\x43\xb1\x0d\x82\x72\xc3\xca\xd1\xf1\x40\x0d\xe1\x16\xc3\x13\x1f\x9d\xfa\x96\xf4\x27\xfa\xc4\xfa\x22\x9d\xc7\x30\x29\x4a\xcf\x65\xdc\xfc\xc4\xae\x37\xfe\x97\x49\xe6\x20\x6f\x4e\xe0\x7e\xcb\xdc\x5e\x18\x2b\xfb\x5f\x8c\xfd\x71\xb8\x72\x56\xf6\xb3\x89\xe7\xea\x77\x00\x00\x00\xff\xff\xb4\xae\x2d\x5d\x51\x03\x00\x00" func stakingcollectionStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5720,11 +5740,11 @@ func stakingcollectionStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa1, 0xa8, 0x7b, 0xe7, 0xd6, 0xdb, 0x84, 0x37, 0x16, 0xe4, 0x35, 0x22, 0x17, 0xe6, 0x1a, 0xc, 0x64, 0xda, 0x5a, 0x5a, 0xd1, 0x7a, 0x73, 0x9c, 0x6e, 0x62, 0xd, 0x8d, 0xab, 0x32, 0x7d, 0x4d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa2, 0xd9, 0xa3, 0x30, 0xe2, 0xac, 0xb5, 0xaf, 0xf, 0x7f, 0x25, 0x9f, 0x13, 0x26, 0xc8, 0x5b, 0x90, 0x55, 0x41, 0x24, 0x7e, 0x86, 0x5e, 0xbc, 0xc2, 0x80, 0x56, 0x9e, 0x7d, 0xb6, 0xb8, 0x5f}} return a, nil } -var _stakingcollectionTestDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x6e\x9b\x40\x10\xbd\xf3\x15\xa3\x1c\x2a\x7c\x08\xf4\x50\xf5\x60\xb9\x8d\x28\xc6\x91\x65\x64\xaa\x80\xdb\xf3\x06\x06\xbc\xf2\x7a\x07\xed\x0e\x4a\xaa\x2a\xff\x5e\xc1\xc6\xc8\xd4\x54\x2a\x17\xb4\x3b\xef\xcd\xbe\x79\xf3\xe4\xb9\x25\xc3\xb0\x51\xf4\x92\xb3\x38\x49\xdd\xc4\xa4\x14\x96\x2c\x49\x43\x6d\xe8\x0c\x1f\x5f\xf3\x22\xda\x6d\xf7\x8f\x71\x96\xa6\x49\x5c\x6c\xb3\x7d\xb4\x5e\x3f\x25\x79\xee\x5d\x91\x0b\x3a\xe1\x48\xd8\xa4\xd9\xcf\x22\xdb\x25\x37\xc0\x4e\x37\xf2\x59\xe1\x14\x7c\xd8\x3f\x6e\xbf\xa5\xc9\x1c\x21\xa5\xf2\x84\xd5\x00\xb7\x17\x7c\x9a\xc5\xbb\x64\x3d\x41\x7b\x61\x08\x07\x8b\x15\x90\x56\xbf\xa0\x26\x03\x8c\x96\xa1\xed\x4c\x4b\x16\x2d\x30\xb9\x0b\x3e\x22\x54\xd8\x92\x95\x0c\xec\x34\x74\xda\x8d\x2a\xf5\x50\xb5\xce\x03\x28\x47\x13\x3c\x8f\x8d\xd0\x56\x0c\x07\x5f\x9c\xa9\xd3\xbc\x84\xc3\x46\xbe\x7e\xfe\xb4\x80\xdf\x9e\x07\x00\xd0\x1a\x6c\x85\x41\xdf\xca\x46\xa3\x59\x42\xd4\xf1\x31\x2a\xcb\x1e\x3b\x62\xfa\x4f\x21\x5f\xb5\x7e\xc2\x1a\xbe\x80\xe3\x04\xcf\x64\x0c\xbd\xac\x3e\xcc\x6e\x22\xb8\xb9\xf9\xea\xf7\x76\x2c\xe7\x17\x77\x0b\xcf\x99\x8c\x68\xf0\xbb\xe0\xe3\x62\x54\xd3\x7f\x0f\x0f\xd0\x0a\x2d\x4b\xff\x2e\xa6\x4e\x55\xa0\x89\xc1\x49\x01\x01\x06\x6b\x34\xa8\x4b\x1c\x1c\x9c\xb5\xe7\x6e\x31\x9d\xae\xbe\x64\xe1\x9f\xc3\x0d\xd5\xe0\x87\xe8\x14\x5f\x86\x08\xad\x93\x17\x8e\xec\xa1\xfc\xdf\x4a\x27\x3a\xfb\xf0\xc1\xc0\xff\x5b\x1b\xbb\x1c\xad\xee\xa7\x3b\x08\x1a\x64\x17\xb1\x71\xbd\xee\x3f\x7d\x7f\x3c\x4c\xc9\xef\x79\x7a\x6f\xe0\xe6\x59\xdd\xbb\xa7\x5c\x83\x37\xef\xed\x4f\x00\x00\x00\xff\xff\x64\xcc\x24\x0c\x66\x03\x00\x00" +var _stakingcollectionTestDeposit_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\x41\xcf\xda\x30\x0c\xbd\xe7\x57\x58\x3d\xa0\xf6\x40\x7b\x99\x76\x40\x6c\x68\x43\xe2\x84\xb4\x69\x0c\x76\x0e\xad\x5b\x22\x42\x5c\x25\x8e\xd8\x34\xf1\xdf\xa7\x26\xa5\x6b\x47\xa5\x7d\xb9\x44\xb6\x9f\xed\xf7\x6c\xab\x5b\x4b\x96\x61\xa7\xe9\x7e\x60\x79\x55\xa6\xd9\x92\xd6\x58\xb2\x22\x03\xb5\xa5\x1b\x24\xb3\xb1\x44\x8c\x32\xbf\xd3\x15\xc7\xe8\x60\xff\x45\x78\xd3\xa8\xb3\xc6\x09\x6a\xec\x1b\x90\x7b\x2a\xaf\x58\x05\x9f\xeb\x81\x63\x57\x22\x44\x51\xc0\xd1\x61\x05\x64\xf4\x2f\xa8\xc9\x02\xa3\x63\x68\xbd\x6d\xc9\xa1\x03\xa6\xe8\xe0\x0b\x42\x85\x2d\x39\xc5\xc0\xb1\xad\x37\x51\x93\x32\x21\xea\xa2\x20\x28\x07\x45\x42\xb0\x95\xc6\xc9\x60\xa4\xf2\x46\xde\xf0\x0a\x8e\x3b\xf5\xf3\xfd\xbb\x0c\x7e\x0b\x01\x00\xd0\x5a\x6c\xa5\xc5\xd4\xa9\xc6\xa0\x5d\x81\xf4\x7c\x49\x3f\x93\xb5\x74\x3f\x49\xed\x31\x83\xc5\xa7\xb2\xec\x52\x87\x94\xee\x69\xe4\x51\xa7\x6f\x58\xc3\x07\x88\x25\x72\xc7\x64\x65\x83\xf9\x39\x14\x59\x2f\x66\xa7\x9d\xbf\x78\x3e\xa6\xdd\x7c\x56\xf3\x8b\x7b\x85\x1f\x62\x97\xaf\x92\x2f\xd9\xc0\xaa\x7b\x9b\x0d\xb4\xd2\xa8\x32\x4d\xb6\xe4\x75\x05\x86\x18\x22\x15\x90\x60\xb1\x46\x8b\xa6\xc4\x30\xd8\xd9\xa9\x25\xd9\x54\x65\xfd\x5c\xff\x7f\x45\x06\x54\x7e\x92\x5e\xf3\x53\x4c\xd1\xe3\x8a\xa1\x4a\x08\xbf\x99\xf1\x84\xef\x6e\xff\xe5\x07\x84\xfc\x7f\x39\x72\x3c\xb0\xf5\x72\xba\x93\xbc\x41\x8e\x87\x36\x6c\x3f\xfe\xd3\xfe\x83\x31\x4d\xee\xcf\xad\x2f\x10\xf5\xac\x97\xb1\x55\x2c\xf0\x10\x8f\x3f\x01\x00\x00\xff\xff\x52\x6b\x3e\x3e\x6e\x03\x00\x00" func stakingcollectionTestDeposit_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5740,11 +5760,11 @@ func stakingcollectionTestDeposit_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/test/deposit_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0x8c, 0x1d, 0x33, 0xa6, 0xb6, 0xdb, 0x7f, 0x3f, 0xbd, 0x4f, 0x19, 0x21, 0x6a, 0xf7, 0xf3, 0x4e, 0x1e, 0x9d, 0x59, 0x35, 0xed, 0x39, 0xe4, 0x11, 0xb8, 0xb3, 0x35, 0x84, 0xa1, 0xbc, 0x80}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x1a, 0x62, 0x8a, 0x48, 0xfd, 0x30, 0xb2, 0xc1, 0x16, 0x95, 0xa1, 0xe8, 0x77, 0x7, 0x2a, 0x1f, 0x1c, 0xc0, 0x97, 0x59, 0x38, 0x3f, 0xdd, 0xbc, 0x1d, 0xd1, 0x3b, 0xec, 0x3e, 0x6e, 0x53}} return a, nil } -var _stakingcollectionTestGet_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\xcf\x9a\x40\x10\x86\xef\xfb\x2b\x26\x1e\x1a\x3c\x54\x7b\x68\x7a\x30\xb6\x86\x22\x1a\x23\x91\x46\x30\x3d\xaf\x30\xe0\x46\xdc\x21\xbb\x43\xd4\x34\xfe\xf7\x06\xf0\xe3\x93\xc8\x5e\x08\xb3\xcf\xbc\xd9\x79\x46\x5d\x4a\x32\x0c\xab\x82\xae\x11\xcb\xb3\xd2\xb9\x47\x45\x81\x09\x2b\xd2\x90\x19\xba\xc0\xb7\x5b\x14\xbb\xdb\xcd\x6e\xed\x85\x41\xe0\x7b\xf1\x26\xdc\xb9\xcb\xe5\xde\x8f\x22\xf1\xd2\x1c\xd3\x19\xbb\x86\x55\x10\xfe\x8d\xc3\xad\xff\x06\x56\x3a\x57\xc7\x02\xfb\xf0\x61\xb7\xde\xfc\x0e\xfc\xa1\x86\x80\x92\x33\xa6\x0d\x6e\x3f\xf8\x20\xf4\xb6\xfe\xb2\x47\x8b\xe9\x14\x0e\x16\x53\x20\x5d\xdc\x21\x23\x03\x8c\x96\xa1\xac\x4c\x49\x16\x2d\x30\xb5\x05\x3e\x21\xe4\xc8\xc0\xcf\xc0\x4a\xb7\x73\x2a\xdd\x5c\xd9\x56\x00\x24\x9d\x01\x21\xd8\x48\x6d\x65\xf3\xe3\xc8\x0b\x55\x9a\x67\x70\x58\xa9\xdb\x8f\xef\x63\xf8\x27\x04\x00\x40\x69\xb0\x94\x06\x1d\xab\x72\x8d\x66\x06\x6e\xc5\x27\x37\x49\x6a\xb6\x63\xea\x53\x20\xbf\x44\xef\x31\x83\x9f\xd0\xf6\x4c\x8e\x64\x0c\x5d\xe7\x5f\x06\xd7\x30\x79\xab\xfc\x72\x6a\x17\xb3\xe1\xad\xbd\xe3\x11\x93\x91\x39\xfe\x91\x7c\x1a\x77\xaf\xa9\xcf\x62\x01\xa5\xd4\x2a\x71\x46\x1e\x55\x45\x0a\x9a\x18\xda\xa7\x80\x04\x83\x19\x1a\xd4\x09\x36\xfa\x06\xf5\x8c\xfa\x71\xbd\x49\x9f\x8e\xe7\x5f\xfb\x33\x4f\x72\xe4\x76\x9f\x9d\xce\xf6\x3b\xfe\x14\x95\xa2\x65\x43\xf7\x67\x44\x53\x7e\x88\x87\x80\xff\x01\x00\x00\xff\xff\x07\xe3\x81\x01\xac\x02\x00\x00" +var _stakingcollectionTestGet_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x51\xb1\x8e\xe2\x30\x10\xed\xfd\x15\xa3\x14\x28\x29\x2e\x34\xa7\x2b\x10\x77\xe8\x16\x89\x6a\x8b\xd5\xb2\x6c\x6f\x92\x49\xb0\x30\x9e\x68\x3c\x11\x8b\x56\xfc\xfb\x2a\x76\x14\x12\x11\x37\x96\x9f\xdf\xbc\x99\xf7\xc6\x5c\x1a\x62\x81\x9d\xa5\xeb\x5e\xf4\xd9\xb8\x7a\x4b\xd6\x62\x21\x86\x1c\x54\x4c\x17\x48\x66\xff\x12\x35\xaa\xfc\xa0\x33\x8e\xd9\xe1\xfd\x60\xb4\xae\x36\x47\x8b\x13\xd6\x18\x1b\x98\xaf\x54\x9c\xb1\x0c\x98\xef\x89\x63\x28\x51\x6a\xb9\x84\x83\xc7\x12\xc8\xd9\x1b\x54\xc4\x20\xe8\x05\x9a\x96\x1b\xf2\xe8\x41\x28\x02\x72\x42\xa8\x51\x40\x7a\xa9\xd6\x45\x43\xc6\x85\x2f\x1f\xdd\x40\x31\xd8\x51\x4a\x58\x3b\xaf\xc3\x23\xd5\x17\x6a\x9d\xac\xe0\xb0\x33\x5f\x7f\x7e\x67\xf0\xad\x14\x00\x40\xc3\xd8\x68\xc6\xd4\x9b\xda\x21\xaf\x40\xb7\x72\x4a\x5f\x88\x99\xae\x9f\xda\xb6\x98\xc1\xe2\x7f\x51\x74\xa5\x43\x49\x77\x2c\xca\xa8\xd3\x3b\x56\xf0\x17\xa2\x44\xee\x85\x58\xd7\x98\x1f\x83\xc8\x7a\x31\x1b\x75\xfe\x84\xfc\x4b\xbb\x70\x56\xf3\x5b\x7b\xa6\xef\x63\x97\x37\x2d\xa7\x6c\x98\xaa\x3b\x9b\x0d\x34\xda\x99\x22\x4d\xb6\xd4\xda\x12\x1c\x09\xc4\x51\x40\x03\x63\x85\x8c\xae\xc0\x90\xea\x6c\x6a\xc9\x54\x6e\xe2\xb8\x8f\x7e\xfd\x6b\xea\x3d\xaf\x51\xe2\x36\x87\x94\xe3\x9d\x3d\x02\x2b\xd1\x0b\xd3\xad\x97\x08\xf0\x5d\xdd\x15\xfc\x04\x00\x00\xff\xff\xc6\xbe\x85\xb6\xac\x02\x00\x00" func stakingcollectionTestGet_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5760,11 +5780,11 @@ func stakingcollectionTestGet_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/test/get_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x75, 0x91, 0x4b, 0xc9, 0x1e, 0x4e, 0x2, 0xc2, 0x10, 0x3, 0xbf, 0x59, 0xe5, 0xec, 0xaa, 0x4b, 0x76, 0xbb, 0x48, 0xec, 0x66, 0x5, 0x6e, 0xb4, 0x41, 0x38, 0xc4, 0x16, 0x8b, 0x3, 0xc4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x72, 0xf3, 0xa0, 0xb7, 0xa9, 0x28, 0x84, 0x63, 0xc9, 0x3a, 0x84, 0x43, 0x16, 0xd4, 0xe, 0x5a, 0x3e, 0xb0, 0x91, 0xa4, 0x25, 0x42, 0x1a, 0xf0, 0x7e, 0xf, 0x1d, 0x75, 0x1b, 0x64, 0xa1, 0xc4}} return a, nil } -var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5d\x4f\xdb\x40\x10\x7c\xcf\xaf\x58\x78\xa8\x1c\x09\x4c\xd5\xbe\x45\x7c\x28\x4d\x28\x8d\x8a\x00\x11\xfa\x03\x36\xbe\xb5\x7d\xad\x73\x6b\x9d\xd7\x01\x8a\xf8\xef\xd5\x9d\x3f\x88\xb1\xdb\x06\x89\xbc\x44\x67\xef\xcd\xcd\xce\xcc\xfa\xf4\x3a\x67\x2b\xf0\x35\xe3\xfb\xa5\xe0\x2f\x6d\x92\x19\x67\x19\x45\xa2\xd9\x40\x6c\x79\x0d\x1f\x1f\x96\x77\xd3\xef\x8b\xab\x8b\xd9\xf5\xe5\xe5\xf9\xec\x6e\x71\x7d\x35\x9d\xcf\x6f\xcf\x97\xcb\xd1\xe8\xe8\x08\xee\x2c\x9a\x22\x26\x5b\x00\xc2\x15\x2b\x9a\x53\x46\x09\x0a\x5b\xe0\xd5\x4f\x8a\xa4\x02\x41\x03\x58\x4a\xca\x56\xff\xf6\xa5\x51\xc4\x5c\x1a\x71\x00\x68\x14\xa0\x52\x05\x48\x4a\xaf\x10\x84\x01\x0d\x4b\x4a\xd6\xef\x28\x8d\x14\x50\xb3\x84\x17\x9a\x0e\x44\x2b\x32\xa2\x63\x4d\x0a\x56\x8f\x1e\x49\x18\xa6\x4a\x59\x2a\x8a\x70\x34\x12\x47\x12\x7d\x75\x60\x58\xd1\x62\x3e\x81\xa5\x58\x6d\x92\x03\x50\xcd\x71\xee\xe1\x8f\x85\x91\xcf\x9f\x0e\x40\x78\xd2\x6c\x1f\xc3\xd3\x08\x00\x20\xa3\xaa\x97\x9e\x4c\xb7\x14\x4f\xe0\xc3\xa0\x82\x61\xef\x49\x0b\x25\xdc\x7b\x37\xc3\x7c\x77\xa0\xa7\x1d\xeb\x6e\xca\x55\xa6\xa3\xe7\x91\x3f\x38\xb7\x94\xa3\xa5\xa0\x56\x73\x02\xd3\x52\xd2\x69\xb5\x68\xfa\x74\x3f\xe7\x6b\x4a\x8d\xe8\x4e\x4b\xa9\x6d\x1e\x70\xa9\xf6\x59\x18\xd6\x65\x21\x90\xe2\x86\x00\x61\x83\x99\x56\x03\x6e\x81\x36\xc0\x56\x91\x77\xd7\x52\x44\x7a\x43\x7d\xd0\xb0\xa5\xa2\x63\x08\xf6\x86\x7b\x55\x4c\x45\x4d\xfe\x1b\x6e\xa8\x57\x10\x60\xe5\xe0\x04\x84\xc7\xdb\xed\x79\x29\xd0\xe8\x28\xd8\x9f\x53\x21\xda\xa0\x67\xd6\xb4\xbb\xdd\xc6\x40\x03\x05\x09\x94\x79\xb8\x3f\x6e\xf1\x6a\x75\x6b\xe5\x2e\x48\x00\xc1\x52\x4c\x96\x4c\xe4\x93\xe8\xfa\xdb\xce\xff\x70\x2c\xdc\xaf\xa0\x2c\x0e\xff\x16\x33\x38\x69\x38\x86\x2b\xb6\x96\xef\x8f\x77\x4d\xcb\x69\xe0\x30\x27\xc3\x73\xde\x2f\x5f\x0a\x5b\x4c\xe8\x06\x25\x1d\x77\x54\x3b\x3b\x6b\x84\x9b\x71\x99\x29\x30\x2c\x50\x51\x71\x0d\xbb\x56\x7b\x58\xfb\xe3\x9e\x3a\x4e\x8e\x2a\x97\xb5\x7d\xc0\x71\xa5\xd1\x4e\x81\x13\x0e\xa1\x85\xac\x66\xa9\xc1\x39\x81\x84\xa4\x5e\x04\xc2\xdd\xa3\xbf\x54\x44\x11\x22\xcc\x71\xa5\x33\x2d\x8f\x8d\x39\xb9\x67\x03\x6b\x92\x94\x55\x01\xb8\x41\x9d\xe1\x2a\x23\x60\xe3\xdf\xd7\x41\x1d\xb2\x2e\xec\x7a\x37\x3c\xd7\x70\xf2\x42\x32\x4c\x48\x66\x2d\x83\x9d\x2d\x7c\xe3\xc0\x9f\x06\x6f\xaa\xf7\x56\xd7\xa9\x0a\xde\xc3\xf3\xad\xb9\xa0\x07\x8a\x4a\xa1\xee\xf7\xe5\x96\xd6\x3c\x34\xf9\xd5\x7d\xf1\xdf\x81\x09\x3b\x01\x30\x1d\x84\xe3\xc3\x7f\x8f\x51\x68\xfd\xd9\xed\x86\xf6\x4a\xa8\xfe\x5f\x5d\x09\x5b\x8b\x6e\x9c\xe6\x94\x73\xa1\x65\xf8\xde\x7a\x8f\xd0\x84\xa8\x54\x0b\x7a\xed\xbf\xb2\xc1\xf1\x61\xb7\xd9\xbd\x46\xe9\xe7\x3f\x01\x00\x00\xff\xff\xe4\x62\x1c\xe8\xca\x07\x00\x00" +var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\xcd\x6e\xd3\x40\x10\xbe\xe7\x29\xa6\x39\x14\x5b\x6a\x5d\x09\x6e\x51\x4b\xd5\x36\x02\x7a\xa1\x55\x0b\xdc\x27\xde\x71\xbc\x60\xef\x58\xbb\xe3\x94\x82\xfa\xee\xc8\x6b\xaf\x1b\xc7\x86\x46\x08\x7c\x49\x6c\x8f\xbf\xfd\x7e\x66\x76\x75\x59\xb1\x15\x78\x57\xf0\xc3\xbd\xe0\x37\x6d\xd6\x57\x5c\x14\x94\x8a\x66\x03\x99\xe5\x12\xe6\x93\xef\xe6\xb3\xd9\xc9\x09\x7c\xb2\x68\x5c\x46\xd6\x01\xc2\x47\x56\xb4\xa4\x82\xd6\x28\x6c\x81\x57\x5f\x29\x95\x16\x01\x0d\x60\x2d\x39\x5b\xfd\xc3\x97\xa6\x29\x73\x6d\xa4\x01\x40\xa3\x00\x95\x72\x20\x39\xed\x20\x08\x03\x1a\x96\x9c\xac\xff\xa2\x36\xe2\xa0\xa3\x01\xcf\x3c\x1a\x10\xad\xc8\x88\xce\x34\x29\x58\x3d\x7a\x24\x61\xb8\x50\xca\x92\x73\xc9\x6c\x26\x0d\x49\xf4\xd5\x91\x61\x45\xd7\xcb\x05\xdc\x8b\xd5\x66\x7d\x04\x2a\x2c\xd7\x3c\xfc\x7c\x6d\xe4\xcd\xeb\x23\x10\x5e\x84\xcf\x63\xf8\x39\x03\x00\x28\xa8\xd5\x32\xf2\xe1\x8e\xb2\x85\x57\x17\x4d\xda\x94\x3c\xff\xbd\x79\x30\x64\x63\x38\x9c\xae\x1b\x3d\xe9\x97\x15\x1e\xbd\xbb\xc2\x6a\xb1\x3f\x90\x47\xaa\x2c\x55\x68\x29\xea\xac\xec\x38\x5f\xb2\xb5\xfc\xf0\x05\x8b\x9a\x62\x38\xbc\x68\xdf\x05\xcd\xcd\xd5\x64\x9c\x53\x08\xa0\xf1\x55\xba\xc8\x27\x12\xeb\x32\x17\x86\xb2\x76\x02\x39\x6e\x08\x10\x36\x58\x68\x35\x91\x1c\x68\x03\x6c\x15\xf9\xa4\x2d\xa5\xa4\x37\x34\x06\x4d\x7a\x2a\x3a\x83\xe8\x60\x5a\xb3\x62\x72\x1d\xf9\x0f\xb8\xa1\x51\x41\x84\x6d\x9a\x0b\x10\x8e\xb7\xe5\x79\x67\xd0\xe8\x34\x9a\x2f\xc9\x89\x36\xe8\x99\x05\xb9\xdb\x32\x26\x04\x38\x12\xa8\xab\x64\x1e\xf7\x78\x4f\xb3\x6d\xe7\xde\x93\x00\x82\xa5\x8c\x2c\x99\xd4\x77\x65\xa3\x6f\x7b\x16\xa6\x63\x6f\x2e\x47\x45\x96\xfc\xae\xe5\xe0\x2c\x70\x4c\x9c\xb0\xc5\x35\x25\x2b\x1f\xe5\xe9\xff\x68\xc5\xb7\x51\xc3\x63\x31\xbd\x49\x8c\xcb\xef\x5b\x46\xb7\x28\x79\x3c\x70\xfa\xfc\x3c\x98\x7d\xc5\x75\xa1\xc0\xb0\x40\x4b\x7b\xd7\x26\x1c\x1b\xd3\xb4\x4b\xe3\x5e\x65\x75\x89\xf6\x11\x6a\x47\xf6\x95\x0b\x36\xcc\xe3\x91\xf3\x4d\xf1\x6d\xbd\x2a\x74\xda\xb5\x06\x70\xd6\xfa\xbf\x57\x33\x0b\x27\xd0\x43\xb6\x73\x18\x70\xce\x60\x4d\xd2\xdd\x44\xc2\xc3\xa5\x2f\x83\xa0\x14\x2b\x5c\xe9\x42\xcb\x63\x08\xbe\xf2\x6c\xa0\x24\xc9\x59\x39\xc0\x0d\xea\x02\x57\x05\x01\xb7\xd2\xba\x21\x98\x6a\x8b\x64\xd8\x17\xd3\x7b\x02\x9c\x3d\x93\x4c\xfa\xe5\x35\xb9\x41\x0a\xa1\x53\xf6\x4f\x7f\xcf\xc2\xd6\xec\xbf\x89\x1d\xcb\x17\x63\x0f\xde\x0c\x22\xdf\x1a\x39\xfa\x4e\x69\x2d\x34\xdc\xba\xee\xa8\xe4\xa9\x4d\xa5\x3d\x96\x5e\x9c\xc5\x64\x90\xbf\x19\x20\x9c\x1e\xff\x79\x42\x13\xeb\xd7\xee\x3f\xe8\x4f\x9e\xf6\x77\xe7\xe4\xd9\xba\x19\x76\xd3\x92\x2a\x76\x5a\xa6\x8f\xc7\x7f\xd1\x33\x09\x2a\xd5\x83\xde\xf8\x0d\x3c\x3a\x3d\x1e\x8a\x3d\x08\x4e\x3f\xfd\x0a\x00\x00\xff\xff\x54\xf8\x55\x3e\x2e\x08\x00\x00" func stakingcollectionTransfer_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -5780,11 +5800,11 @@ func stakingcollectionTransfer_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/transfer_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xff, 0x7, 0xf, 0xbf, 0x6b, 0x6b, 0x4f, 0xdf, 0xea, 0x50, 0x55, 0xed, 0xb8, 0x6b, 0x3a, 0x3b, 0xeb, 0xff, 0x95, 0xda, 0x97, 0x68, 0x16, 0xce, 0x1e, 0xbb, 0x3e, 0x85, 0x63, 0xa5, 0x36, 0x63}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x83, 0xec, 0x8c, 0x84, 0x70, 0xc9, 0x5e, 0xfc, 0xb9, 0xf3, 0x21, 0x99, 0x5d, 0x9a, 0x65, 0x6a, 0xfc, 0xcb, 0xc8, 0x4f, 0x4d, 0x79, 0x9d, 0x9, 0x43, 0xed, 0x77, 0xec, 0xd9, 0x16, 0x2c, 0x33}} return a, nil } -var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5d\x4f\xdb\x4a\x10\x7d\xcf\xaf\x18\x78\xb8\x72\x24\x30\xf7\x39\x22\xa0\xdc\x84\x4b\xa3\x52\x40\x84\xb7\xaa\x0f\x13\xef\x38\xde\xd6\xd9\xb1\x76\xc7\xa1\x14\xf1\xdf\xab\xf5\xda\xf9\xc0\x6e\x13\x24\xf2\x12\xd9\x9e\x3d\x73\xe6\x9c\xb3\xbb\x7a\x59\xb0\x15\xf8\x3f\xe7\xa7\x99\xe0\x0f\x6d\x16\x63\xce\x73\x4a\x44\xb3\x81\xd4\xf2\x12\xfe\xfd\x39\x7b\x1c\x7d\x9e\xde\x5e\x8f\xef\x6e\x6e\xae\xc6\x8f\xd3\xbb\xdb\xd1\x64\xf2\x70\x35\x9b\xf5\x7a\x67\x67\xf0\x68\xd1\xb8\x94\xac\x03\x84\x5b\x56\xe4\x51\xc8\x02\xcf\xbf\x53\x22\x01\x01\x0d\x60\x29\x19\x5b\xfd\xab\xaa\x4b\x12\xe6\xd2\x88\x5f\x8d\x46\x01\x2a\xe5\x40\x32\xda\x5e\x2e\x0c\x68\x58\x32\xb2\x55\x79\x69\xc4\x41\xcd\x0f\x36\x04\x3d\x82\x56\x64\x44\xa7\x9a\x14\xcc\x9f\x2b\x18\x61\x18\x29\x65\xc9\xb9\xb8\xd7\x13\x4f\x0f\xab\xea\xc8\xb0\xa2\xe9\x64\x00\x33\xb1\xda\x2c\x4e\x40\x78\xd0\x54\xf6\xe1\xa5\x07\x00\x90\x53\xe0\xdc\xd2\xe2\x81\xd2\x01\xfc\xd3\x29\x53\xdc\x7a\xb3\x86\x12\x6e\x7d\x1b\x63\x71\x38\xd0\xcb\x81\x75\xf7\xe5\x3c\xd7\xc9\x6b\xaf\x6a\x5c\x58\x2a\xd0\x52\x54\x0b\x37\x80\x51\x29\xd9\x28\x3c\x34\x73\xfa\x9f\x37\x2f\xa3\x46\x5f\x2f\x9b\xd4\x5e\xbe\x75\xa3\x36\x53\x18\x96\xa5\x13\xc8\x70\x45\x80\xb0\xc2\x5c\xab\x0e\x57\x40\x1b\x60\xab\x82\x8b\x96\x12\xd2\x2b\x7a\x83\x18\xaf\x49\xe8\x14\xa2\xa3\xee\x29\x15\x93\xab\x69\x7f\xc2\x15\xb5\x0a\x22\x0c\xde\x0d\x40\xb8\xbf\x3d\x58\x25\x02\x1a\x9d\x44\xc7\x13\x72\xa2\x0d\x56\xb4\x9a\x41\xb7\x67\xe8\x60\xef\x48\xa0\x2c\xe2\xe3\xfe\x1a\xaf\xd6\xb5\xd6\xec\x9a\x04\x10\x2c\xa5\x64\xc9\x24\x55\xdc\xfc\x70\xdb\x09\xef\x0e\x84\xff\x39\xca\xd3\xf8\x4f\x01\x83\x61\xc3\x31\x9e\xb3\xb5\xfc\x74\x7e\x68\x4e\x2e\x22\x8f\x39\xe8\xde\xc6\xed\xf2\x99\xb0\xc5\x05\xdd\xa3\x64\xfd\x1d\xd5\x2e\x2f\x1b\xe1\xc6\x5c\xe6\x0a\x0c\x0b\x04\x2a\x7e\x60\x3f\x6a\x0b\xeb\xb8\xdf\x52\xc7\xcb\x11\x12\x59\xdb\x07\x9c\x06\x8d\xf6\x47\x4d\x38\x86\x35\x5e\xd8\x42\x0d\xc8\x10\x16\x24\xf5\x43\x24\xbc\xdb\xf7\xbf\xc0\x12\x21\xc1\x02\xe7\x3a\xd7\xf2\xdc\x38\x53\x54\x54\x60\x49\x92\xb1\x72\x80\x2b\xd4\x39\xce\x73\x02\x36\xd5\xf7\x3a\xa2\x5d\xbe\xc5\xbb\xc6\x75\x6f\x67\x18\x6e\x48\xc6\x0b\x92\xf1\x9a\xc1\xc1\xfe\xbd\x73\x9f\x5f\x44\xef\xaa\xaf\x7c\xae\x23\x15\x7d\xa8\xe1\xde\xa0\x25\x26\x99\x36\x54\x0b\x30\x35\x29\xc3\xf0\xef\x39\xf7\x22\x7d\xd9\x59\xe5\xa2\xfe\xd7\x70\x3a\x7f\xdb\x4b\x6f\xb1\xe9\xb9\x0e\x94\xf6\x5d\x53\x0e\x69\x72\x05\x25\xe1\x42\xf0\x90\x30\x9d\xbc\x89\xe8\x03\x2d\xb9\x75\x22\x85\x9b\x6a\xef\x46\x8e\x77\x46\x37\x9b\xe5\xe7\xa7\x7b\x66\xb6\x55\x57\xdf\x70\x7d\x0f\x85\xff\x5d\x72\x13\x2a\xd8\x69\xe9\xb8\x0f\x3f\x22\xaa\x31\x2a\xe5\x51\xef\xaa\x03\x3d\x3a\x3f\xdd\x1a\xe1\xe8\xa4\xc3\xca\x41\xc7\xbb\x90\xa0\xd7\xde\xeb\xef\x00\x00\x00\xff\xff\x96\xaa\xe3\x77\x3c\x08\x00\x00" +var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x4f\x53\xdb\x3a\x10\xbf\xe7\x53\x2c\x39\xf0\xec\x19\x30\xf7\x0c\x79\x0c\x90\x79\xef\x71\x78\x85\x81\x4e\x2f\x9d\x1e\x36\xd6\x3a\x56\xeb\x68\x3d\xd2\x3a\x0c\xed\xf0\xdd\x3b\xb2\xec\x24\x8e\xd5\x86\x43\xf1\x05\x62\xad\x76\x7f\xff\x2c\xe9\x75\xcd\x56\xe0\x9f\x8a\x9f\x9f\x04\xbf\x69\xb3\xba\xe5\xaa\xa2\x5c\x34\x1b\x28\x2c\xaf\x61\x1a\x5d\x9b\x4e\x26\x17\x17\xf0\xd1\xa2\x71\x05\x59\x07\x08\x1f\x58\x91\x2f\x23\x0b\xbc\xfc\x4a\xb9\x84\xed\x68\x00\x1b\x29\xd9\xea\xef\x6d\x5d\x9e\x33\x37\x46\xfc\x6e\x34\x0a\x50\x29\x07\x52\xd2\xfe\x76\x61\x40\xc3\x52\x92\x6d\xcb\x1b\x23\x0e\x3a\x00\xb0\x43\xe0\x3b\x68\x45\x46\x74\xa1\x49\xc1\xf2\xa5\x6d\x23\x0c\xd7\x4a\x59\x72\x2e\x9b\x4c\xc4\xc3\xc3\xb6\x3a\x31\xac\xe8\x6e\x31\x83\x27\xb1\xda\xac\xce\x40\x78\xd6\x57\xa6\xf0\x63\x02\x00\x50\x51\xc0\x3c\x22\xfb\x48\xc5\xac\x65\x91\x44\xb5\xc8\x76\xff\xde\x3f\x1b\xb2\x29\x9c\xc6\xeb\x46\x6f\xb6\x63\x85\x47\x6b\xb7\x58\xcf\xde\xde\xa8\xed\x54\x5b\xaa\xd1\x52\xd2\xa9\xd6\x61\xbe\x61\x6b\xf9\xf9\x13\x56\x0d\xa5\x70\x7a\x1d\xd6\x7a\xce\xfe\xf1\x46\x96\xd4\x6b\xed\x25\x94\xce\xd7\x43\x67\x3a\x63\x85\x61\xdd\x38\x81\x12\x37\x04\x08\x1b\xac\xb4\x8a\x38\x04\xda\x00\x5b\x15\x1c\xb5\x94\x93\xde\xd0\x41\xc7\x6c\x0b\x42\x17\x90\x9c\xc4\xd9\x2a\x26\xd7\xc1\xfe\x0f\x37\x34\x2a\x48\x30\xf8\x38\x03\xe1\x74\x9f\x58\xab\x09\x1a\x9d\x27\xd3\x05\x39\xd1\x06\x5b\x58\x3d\xd1\x7d\x0e\x11\xf4\x8e\x04\x9a\x3a\x9b\xa6\xdb\x7e\xaf\x93\x7d\xcd\xfe\x25\x01\x04\x4b\x05\x59\x32\x79\x1b\x3d\x4f\x6e\x3f\xed\x71\xc3\xfd\xe3\xa8\x2a\xb2\x5f\x85\x0d\xe6\x3d\xc6\xcc\x09\x5b\x5c\x51\xb6\x6c\x4d\xbc\x7c\x8f\x10\xfe\x9d\x78\x1c\xb3\xf8\x19\x30\x2e\x7f\x0a\x88\x1e\x50\xca\x74\xa0\xf4\xd5\x55\x2f\xf6\x2d\x37\x95\x02\xc3\x02\x01\xf6\xa1\x4c\x38\x16\xc6\x67\xc5\xab\x57\x5b\xbd\x46\xfb\x02\x8d\x23\xfb\x97\xeb\x65\x98\xa6\x23\xe5\x7d\xf1\x43\xb3\xac\x74\xde\x45\x03\xb8\x08\xfa\x1f\x8f\xb1\x70\x06\xdb\x7e\xe1\xf3\xeb\x9b\xcc\x61\x45\xd2\xfd\x48\x84\x87\x73\x6f\x7a\x36\x39\xd6\xb8\xd4\x95\x96\x97\xde\xf5\xba\x85\x02\x6b\x92\x92\x95\x03\xdc\xa0\xae\x70\x59\x11\x70\xe0\xd5\xc5\x3f\x96\x89\x6c\x18\x8a\xf8\x51\x00\xf3\x1d\xc8\x6c\x3b\x5e\x93\x1b\x58\xd0\xc7\xe4\xed\xd6\xbf\xb1\x30\x28\xfd\x4e\x9e\xf7\xda\xc4\xfd\xf6\xfe\xac\x31\x2f\xb5\xa1\x8e\xff\x9d\x29\x18\xe6\xbf\xff\x84\xb2\x15\xc9\xff\x83\x5d\x2e\x49\x3f\x87\x4b\xe0\xcb\x51\x0a\xab\xdd\xcc\x6d\x9e\xb4\x9f\x5a\x70\x08\x93\xab\x29\x0f\xf7\x8e\x6f\x09\x77\x8b\x83\x84\x3e\xd2\x9a\x47\x87\x5d\xb8\x10\x8f\x9e\x11\xd9\x80\xba\xd9\x6d\xbf\x3c\x3f\xc2\xd9\xb6\x53\xfd\xc0\xed\x75\x17\xfe\x0e\xc1\x2d\xa8\x66\xa7\x25\x72\xed\xfe\x89\xa4\x66\xa8\x94\xef\x7a\xdf\xde\x15\xc9\xe5\xf9\x1e\x85\x93\xb3\x88\x95\xb3\xc8\xbb\x90\xb2\xd7\xc9\xeb\xcf\x00\x00\x00\xff\xff\x2d\x4d\x77\x9d\xa0\x08\x00\x00" func stakingcollectionTransfer_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5800,11 +5820,11 @@ func stakingcollectionTransfer_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/transfer_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0x67, 0x83, 0xba, 0x26, 0xad, 0xc, 0x4e, 0xfe, 0xb7, 0x94, 0x11, 0x42, 0x42, 0xdc, 0x83, 0x93, 0x25, 0x10, 0x37, 0x21, 0xa1, 0x8f, 0xec, 0x4e, 0xf6, 0xfb, 0xed, 0x96, 0x5e, 0x71, 0x29}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x5d, 0xe5, 0x5c, 0x17, 0xee, 0x42, 0xc6, 0x72, 0x3f, 0x5d, 0x21, 0xbf, 0xd2, 0x37, 0x7a, 0x97, 0x58, 0x8a, 0x4, 0x83, 0x39, 0x9c, 0x7b, 0x7e, 0x8e, 0xfa, 0xed, 0xbe, 0x18, 0x27, 0xe}} return a, nil } -var _stakingcollectionUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xc1\x6e\xc2\x30\x0c\x86\xef\x7d\x8a\x5f\x1c\xa6\x72\x29\x3b\x57\xdb\x50\x55\xd8\x84\x56\xc1\x44\x79\x81\xac\xb8\x25\x22\xc4\x5d\xe2\x0a\xa4\x89\x77\x9f\x4a\x80\x1d\xe0\x80\x0f\xad\x1c\xd9\xbf\x3f\xfb\xd7\xbb\x96\x9d\xe0\xdd\xf0\xbe\x14\xb5\xd5\xb6\xc9\xd9\x18\xaa\x44\xb3\x45\xed\x78\x87\xe7\x43\xb9\xca\x3e\x67\xf3\x8f\x7c\x51\x14\xd3\x7c\x35\x5b\xcc\xb3\xc9\x64\x39\x2d\xcb\x28\x1a\x8d\x46\x58\xd2\x4f\x47\x5e\x3c\x84\xd1\x59\x2f\x6a\x4b\xc8\x8a\x02\xc2\x5b\xb2\x1e\x35\x3b\xc8\x86\xe0\x5b\xaa\x74\xad\x69\x0d\xcb\x6b\x02\x3b\xac\xc9\x50\xa3\x84\x1d\xb4\x0d\x25\x01\x00\xd5\x95\x20\x8a\xc4\x29\xeb\xd5\x29\x89\xfb\xc6\xd9\x24\x45\x29\x4e\xdb\x66\x88\xdf\x08\x00\x4e\x1f\x43\x72\x69\xff\xe7\x5f\x52\x9d\xe2\xe9\xee\x6a\xc9\xcd\x4b\x74\xd2\x69\x1d\xb5\xca\x51\xac\xaa\x8a\x3b\x2b\x29\xb2\x4e\x36\x59\x48\x2e\x03\xfb\xf0\x64\xea\xe4\xde\x40\xbc\xe2\xdc\x9b\x7c\xb3\x73\xbc\x7f\x79\x14\xe0\x2d\xee\xcf\x9d\xde\xb7\xe2\xb6\xbc\x14\x76\xaa\xa1\x2f\x25\x9b\xe1\x15\xab\x8f\xf1\x18\xad\xb2\xba\x8a\x07\x39\x77\xa6\x3f\xb7\x20\xa0\xc0\x51\xdd\xbb\x74\xa3\x35\x08\x0a\xc7\x70\x03\x3a\x50\xd5\x09\x3d\xb2\x6d\x72\x36\x3c\x33\xe6\xea\x4e\xf8\x5f\x14\x8f\xd1\x5f\x00\x00\x00\xff\xff\x92\xff\xa2\x70\x62\x02\x00\x00" +var _stakingcollectionUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\x4d\xaf\xd3\x30\x10\xbc\xe7\x57\x8c\x72\x78\x24\x97\xf4\x5e\x01\x4f\xa5\x08\x09\xa9\x12\xa8\x95\xb8\x1b\x77\x93\x5a\x75\xbd\x61\xbd\x56\x41\xa8\xff\x1d\x25\x4e\xda\x43\x73\xe0\xf2\x7c\xc8\x87\xf7\x63\x66\x77\xc6\x5d\x7a\x16\xc5\x17\xcf\xd7\x83\x9a\xb3\x0b\xdd\x96\xbd\x27\xab\x8e\x03\x5a\xe1\x0b\xca\xc5\x58\x59\x14\xab\xd5\x0a\x7b\xfa\x95\x28\x6a\x84\x32\x52\x88\x6a\xce\x84\xcd\x6e\x07\xe5\x33\x85\x88\x96\x05\x7a\x22\xc4\x9e\xac\x6b\x1d\x1d\x11\xf8\x48\x60\xc1\x91\x3c\x75\x46\x59\xe0\x42\x4e\xc9\x08\xb0\x77\x88\xa2\x50\x31\x21\x9a\xf1\xa7\x1a\x0a\xbf\x7e\x5e\xe3\xa0\xe2\x42\x57\xe3\x6f\x01\x00\xe3\xc3\x93\xce\xe5\x0f\x82\x7b\x6a\xd7\x30\x49\x4f\xd5\x22\xff\xe6\xf1\xf9\xed\x1a\x48\x6a\xbc\x2c\xe7\x3d\xdd\x14\x23\x66\x2f\xd4\x1b\xa1\xca\x58\xcb\x29\xe8\x04\xf5\x89\x45\xf8\xfa\xc3\xf8\x44\x35\x5e\x36\x39\x36\x73\x1d\x4e\x24\xdf\x36\x4b\x5c\xf1\x01\x53\xab\x26\x2a\x8b\xe9\xa8\xf9\x39\x36\x7b\xff\x16\x33\x7c\xac\x06\x69\xd7\xcb\xb2\x3f\xa7\x1f\x32\xa3\xef\x46\x4f\xf5\x7d\x94\xe1\xbc\xbe\xa2\x37\xc1\xd9\xaa\xdc\x72\xf2\x83\xba\x8a\x4c\x1b\x06\x42\x2d\x09\x05\x4b\x83\x39\x0c\x9e\xed\x35\x29\xdf\x8b\xbb\x18\xf9\x83\x14\x49\xde\xc5\x79\x0d\x65\x46\xba\xe5\x75\xd3\x6f\xb2\x49\xe9\x7f\x36\xd9\x4c\x3e\xdc\x78\x7f\x37\x4d\x7e\xcf\x1d\x6f\xc5\xbf\x00\x00\x00\xff\xff\x0c\xba\x48\x82\xf6\x02\x00\x00" func stakingcollectionUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -5820,11 +5840,11 @@ func stakingcollectionUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0xba, 0xb4, 0x65, 0xa5, 0xa4, 0x6, 0xf6, 0x67, 0x0, 0x75, 0x3a, 0x4f, 0x78, 0x89, 0xab, 0x9a, 0x3c, 0x83, 0xba, 0x1c, 0xf5, 0xe8, 0xae, 0xe7, 0x92, 0xc8, 0xa, 0xea, 0x9e, 0xd7, 0xc1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7c, 0xca, 0x8a, 0xc8, 0xf3, 0x52, 0x88, 0x5d, 0x94, 0xa8, 0xb5, 0xc9, 0x3b, 0x48, 0x3e, 0x46, 0x50, 0xcb, 0xf4, 0x7d, 0x65, 0x39, 0xd5, 0xb2, 0x99, 0xbf, 0xc6, 0xa4, 0xd7, 0xaa, 0x4e, 0xa}} return a, nil } -var _stakingcollectionUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x51\x5d\x8b\xe2\x40\x10\x7c\x9f\x5f\x51\xf8\x70\x44\x38\xe2\x3d\x87\xbb\x93\x10\xdd\x45\x56\x74\x31\xfe\x81\xd9\xa4\x93\x0c\x1b\xa7\xc3\x4c\x87\x08\x8b\xff\x7d\x49\xa2\x2e\xbb\xfa\x60\x3f\xe4\xa3\x67\xba\xaa\xba\xca\x1c\x1a\x76\x82\xa7\x9a\xbb\x54\xf4\xbb\xb1\x65\xc2\x75\x4d\x99\x18\xb6\x28\x1c\x1f\xf0\xe7\x98\xee\xe3\x97\xd5\xe6\x39\xd9\xae\xd7\xcb\x64\xbf\xda\x6e\xe2\xc5\x62\xb7\x4c\x53\xa5\x66\xb3\x19\x92\x4a\xdb\x92\x3c\xa4\x22\x58\x92\x8e\x5d\x8f\x02\x9d\xe7\x8e\xbc\x47\xc1\x6e\x38\xf2\x0d\x65\xa6\x30\x94\xc3\x72\x4e\x4a\x89\xd3\xd6\xeb\x81\x27\xe8\x3b\xab\x45\x84\x54\x9c\xb1\xe5\x6f\x58\xea\xe2\x71\xfc\xd2\x9b\xe2\x43\x01\xc0\xf0\xa8\x49\xe0\x7f\x8a\xdd\x51\x11\xe1\xd7\xdd\x3d\xc2\x9b\x8e\x1a\x70\x1a\x47\x8d\x76\x14\xe8\x2c\xe3\xd6\x4a\x84\xb8\x95\x2a\x1e\x7f\x2e\x84\x7d\x79\xaa\x8b\xf0\x1e\x21\xfe\xe1\x3c\x1b\xbe\xb1\x73\xdc\xfd\x7d\x54\xc0\xff\xa0\xf7\x36\xba\xef\xfb\xed\xf5\x54\xd8\xe9\x92\x5e\xb5\x54\xd3\xab\xac\xbe\xe6\x73\x34\xda\x9a\x2c\x98\x24\xdc\xd6\xbd\xb7\x82\x51\x0a\x1c\x15\x10\xc6\x0d\xd6\x64\x44\x38\x8d\x1e\xd0\x91\xb2\x56\xe8\x91\x6d\xc3\xb6\xc9\xb5\xd0\xe6\x9a\xf1\x39\xa3\x6b\x7c\xe3\xfb\x7b\x7c\x5f\xdf\x17\xda\x93\xfa\x0c\x00\x00\xff\xff\xa5\x85\x44\xd5\x74\x02\x00\x00" +var _stakingcollectionUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x4e\xe3\x40\x0c\xbd\xe7\x2b\x9e\x72\xe8\x26\xd2\x2a\xbd\x57\xbb\x54\xa5\x08\x89\x0b\x20\x2a\x71\x37\x89\x93\x8c\x48\x67\x22\x8f\xa3\x80\x50\xff\x1d\x25\xd3\xb4\x82\xe6\xc0\x05\x1f\x12\xcb\xf6\xf8\x3d\xdb\xcf\xec\x5b\x27\x8a\xdb\xc6\xf5\x3b\xa5\x57\x63\xab\xad\x6b\x1a\xce\xd5\x38\x8b\x52\xdc\x1e\xf1\x6c\x2e\x8e\xa2\xe5\x72\x89\x6d\x4d\xb6\x62\x0f\xad\x19\x96\xb5\x77\x32\x94\x81\x8a\x42\xd8\x7b\x94\x4e\xc6\x94\x6f\x39\x37\xa5\xe1\x02\xd6\x15\x1c\x45\x2a\x64\x3d\x8d\x8d\x92\x21\x72\x77\xb3\xc2\x4e\xc5\xd8\xea\x2f\x2c\xf7\x9b\xf0\x7c\x8a\xa5\xf8\x88\x00\x60\xfc\x34\xac\xf0\xdf\xd9\x3c\x71\xb9\x02\x75\x5a\x27\xb3\x64\xb3\xb3\xfb\xd0\x5b\x96\x14\x8b\xf9\xba\x8b\x48\x34\x62\xb6\xc2\x2d\x09\x27\x94\xe7\xae\xb3\x7a\x84\xba\x76\x22\xae\x7f\xa6\xa6\xe3\x14\x8b\x4d\xc8\x4d\x5c\x07\xf3\xdc\x94\xd9\x1c\x57\xfc\xc7\xb1\x55\xe6\xd5\x09\x55\x9c\xbd\x8c\xcd\xfe\xfd\xc6\x0c\x57\xc9\x70\xc7\xd5\xfc\x8d\x2f\xcb\x77\x81\xd1\x23\x69\x9d\x9e\x46\x19\x6c\xbd\x46\x4b\xd6\xe4\x49\xbc\x75\x5d\x33\x9c\x52\x11\x68\x83\x20\x5c\xb2\xb0\xcd\x19\xea\x40\xb8\xd4\x92\xb1\xa3\x12\x5a\x31\x7b\x92\x77\x74\x9e\xe5\x8f\x9f\xd6\x10\x07\xa4\x43\x58\x37\xbf\x71\xde\x29\xff\x64\x93\x59\xd7\x16\xa4\x7c\x7f\x92\xde\x51\x3a\x27\x55\x85\xff\x57\x55\x9d\xfd\x09\xf6\x10\x7d\x06\x00\x00\xff\xff\xf5\xc0\xe1\x03\x08\x03\x00\x00" func stakingcollectionUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -5840,11 +5860,11 @@ func stakingcollectionUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdd, 0xff, 0x7b, 0x7f, 0xd9, 0x90, 0x89, 0x51, 0x97, 0x22, 0x0, 0x42, 0x8d, 0x15, 0xe0, 0x7, 0xb8, 0x63, 0x93, 0x9e, 0x61, 0xf, 0x72, 0x10, 0xf7, 0xf8, 0x90, 0x99, 0xf9, 0x47, 0x7a, 0x14}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcf, 0x19, 0xee, 0xbd, 0xf6, 0xbe, 0xd2, 0x9d, 0x85, 0x71, 0xd0, 0xad, 0xf4, 0xa7, 0xf2, 0x23, 0xe5, 0xd4, 0x8f, 0xd5, 0xa8, 0x89, 0x1f, 0x90, 0x22, 0x4a, 0x2d, 0xe3, 0xb8, 0xeb, 0x86, 0xf1}} return a, nil } -var _stakingcollectionWithdraw_from_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\xc1\x8e\xd3\x40\x0c\xbd\xe7\x2b\xac\x3d\xa0\xac\x84\x52\x0e\x88\x43\x04\xac\xa2\xb4\x45\x15\xa5\x45\x4d\xf9\x00\x33\x71\x9a\x51\x27\xe3\x30\xf1\x90\x22\xd4\x7f\x47\xc9\x34\x45\xda\xf6\x50\x1f\x62\x65\x64\x3f\x3f\xbf\x67\xdd\xb4\xec\x04\x96\x86\xfb\x42\xf0\xa8\xed\x21\x67\x63\x48\x89\x66\x0b\x95\xe3\x06\xde\x9d\x8a\x7d\xf6\x75\xb5\xf9\x92\x6f\xd7\xeb\x45\xbe\x5f\x6d\x37\xd9\x7c\xbe\x5b\x14\x45\x14\xcd\x66\x33\xd8\xd1\x2f\x4f\x9d\x80\x30\xf4\x5a\xea\xd2\x61\x0f\xc2\x47\xb2\x5d\xe8\x97\x9a\xa0\x41\x55\x6b\x4b\x80\x4a\xb1\xb7\x32\xf6\xed\x6b\x9a\xea\xd0\x11\xa0\x17\x6e\x50\xb4\x42\x63\xfe\x40\x49\x2d\x77\x5a\xa8\x1c\x60\x07\x04\x6f\x0d\xab\x23\x95\x13\x04\xfc\x46\x6f\x24\x8a\xc4\xa1\xed\x70\xa4\x1b\x5b\x2e\x69\x35\x4f\xa1\x10\xa7\xed\xe1\x2d\x60\x33\x54\xa6\xf0\x63\xa9\x4f\x1f\xde\x3f\xc3\xdf\x08\x00\x60\xfc\x18\x12\xe8\x5e\xef\xbb\xa3\x2a\x85\x37\x77\xa5\x48\x6e\x5e\xa2\x11\xa7\x75\xd4\xa2\xa3\xf8\xc2\x2a\x85\xcc\x4b\x9d\x85\x9f\x69\xe0\x10\x1d\x99\x2a\xb9\x37\x10\x3e\x4d\x1b\x25\x3f\xd9\x39\xee\x3f\x3e\x4a\xe0\x73\x3c\xc8\x9b\xde\xb7\xee\xb6\xbc\x10\x76\x78\xa0\xef\x28\xf5\xf3\x95\xd6\x10\x2f\x2f\xd0\xa2\xd5\x2a\x7e\xca\xd9\x9b\x12\x2c\x0b\x04\x2a\xe0\xa8\x1a\xf4\xbf\xc1\x7a\x0a\x08\xe7\xa0\x01\x9d\x48\x79\xa1\x47\xb6\x4d\xa6\x0b\x59\x3a\x6e\xbe\x85\xa3\xb8\xa8\x75\x75\x2f\xe4\xff\xee\x85\x3c\x4d\x3c\x47\xff\x02\x00\x00\xff\xff\xdb\xab\x20\x8d\xb2\x02\x00\x00" +var _stakingcollectionWithdraw_from_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\xc1\x8e\xd4\x30\x0c\x86\xef\x7d\x0a\xab\x87\xa5\x95\x50\xe7\x82\x38\x54\xc0\x0a\x16\x8d\xc4\x01\x81\x76\x80\xbb\x49\xdd\x69\x34\x69\x5c\x1c\x87\xee\x0a\xed\xbb\xa3\x34\xd3\x5d\x89\xe9\x81\xcb\xe6\xd0\x54\x89\x63\xff\xbf\xfd\xd9\x71\x62\x51\xd8\x3b\x9e\x0f\x8a\x27\xeb\x8f\x37\xec\x1c\x19\xb5\xec\xa1\x17\x1e\xa1\xdc\xbc\x2b\x8b\x62\xb7\xdb\xc1\x2d\xfd\x8a\x14\x14\x94\x61\xb6\x3a\x74\x82\x33\x28\x9f\xc8\x87\xfc\x58\x07\x82\x11\xcd\x60\x3d\x01\x1a\xc3\xd1\xeb\xf2\xee\xdb\x40\x6b\x1c\x0a\x01\x46\xe5\x11\xd5\x1a\x74\xee\x1e\x3a\x9a\x38\x58\xa5\x2e\xa5\x4d\x19\xa2\x77\x6c\x4e\xd4\xad\x29\xe0\x37\x46\xa7\x45\xa1\x82\x3e\xe0\xa2\xa7\xf2\xdc\xd1\xa7\x8f\x2d\x1c\x54\xac\x3f\xbe\x04\x1c\x53\x64\x0b\xdf\xf7\xf6\xee\xf5\xab\x1a\xfe\x14\x00\x00\xcb\xc7\x91\x42\xf8\xd7\xd0\x2d\xf5\x6d\xd2\x31\x54\x9b\x7e\x9b\xa7\xdf\x2f\xb3\x27\xa9\xe1\x6a\x3b\xee\xe2\xa4\x58\x6a\x4e\x42\x13\x0a\x55\x67\x07\xe7\x52\x1f\x58\x84\xe7\x1f\xe8\x22\xd5\x70\xf5\x3e\xdf\xad\x5a\xd3\x0a\xe4\xfa\x66\x4b\x2b\xbc\x5d\x9b\xd1\x04\x65\xc1\x23\x35\x3f\x97\x64\x6f\x9e\xc3\xc3\xbb\x2a\x4d\xb3\xdd\xc6\xe4\x32\xfc\x90\x15\x7d\x45\x1d\xea\x47\x2b\x69\x5d\x5f\xc3\x84\xde\x9a\xaa\xbc\xe1\xe8\x3a\xf0\xac\x90\x65\x03\x82\x50\x4f\x42\xde\x24\x32\x00\xe1\x12\x47\xeb\x17\x1a\x26\xb1\x23\xca\x3d\xc4\x40\xf2\x22\xac\x6d\x28\x73\xa5\x87\xdc\x6e\xba\x23\x13\x95\xfe\xa7\x93\xcd\x0a\xee\x5e\x78\xfc\x9c\x59\x3d\x4f\xe2\x11\xaa\xbc\x3f\x41\x95\xf7\xb5\xe2\x43\xf1\x37\x00\x00\xff\xff\x3e\x13\xf0\x11\x46\x03\x00\x00" func stakingcollectionWithdraw_from_machine_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -5860,11 +5880,11 @@ func stakingcollectionWithdraw_from_machine_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_from_machine_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc7, 0x7c, 0xe3, 0xa9, 0xe3, 0x68, 0x1a, 0x64, 0x88, 0xe, 0xc6, 0xc4, 0xa4, 0x9b, 0x35, 0x9f, 0xa1, 0x43, 0xf2, 0x57, 0x79, 0xca, 0x6d, 0xa4, 0x6e, 0x57, 0xfe, 0xbe, 0x2f, 0x2e, 0x1f, 0xef}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x79, 0x73, 0xe2, 0xa4, 0xc3, 0x56, 0x8, 0x7c, 0xae, 0x27, 0x26, 0x4d, 0x17, 0x2d, 0xf2, 0xd5, 0xe4, 0x6e, 0x23, 0xa6, 0x6c, 0x17, 0xd, 0xf2, 0xe, 0x35, 0xdb, 0x65, 0x31, 0x32, 0xcb, 0x3c}} return a, nil } -var _stakingcollectionWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x6b\xdb\x40\x10\x85\xef\xfa\x15\x8f\x1c\x8a\x03\xc6\x2e\x6d\xe9\x41\xb4\x35\xc2\x4e\x8a\x69\x48\x8a\xe5\xfc\x80\xad\x34\xb2\x16\xaf\x77\xd4\xd1\xa8\x72\x28\xf9\xef\x65\x25\xcb\x0e\xb5\x0f\xde\x83\x96\x5d\x46\xdf\xbc\xd9\xf7\xec\xae\x62\x51\xdc\x3b\x6e\x53\x35\x5b\xeb\x37\x73\x76\x8e\x32\xb5\xec\x51\x08\xef\xf0\x7e\x9f\xae\x93\x1f\xcb\xc7\xef\xf3\xa7\x87\x87\xbb\xf9\x7a\xf9\xf4\x98\x2c\x16\xab\xbb\x34\x8d\xa2\xe9\x74\x8a\x15\xfd\x6e\xa8\x56\x28\xa3\xb5\x5a\xe6\x62\x5a\x08\xb5\x46\x72\xca\xa1\xbc\x25\x5f\xa3\x60\x81\x96\x84\xba\xa2\xcc\x16\x96\x72\x78\xce\x09\x2c\xc8\xc9\xd1\xc6\x28\x0b\xac\xef\x4b\x7a\x15\xc8\x8e\x32\xba\x2e\xeb\x92\x06\x98\x11\x82\x69\x94\x77\x46\x6d\x66\x9c\x7b\x41\x4e\x15\xd7\x56\xbb\x7e\x1d\xa4\xf1\x8e\xb3\x2d\xe5\x30\x59\xc6\x8d\x57\xfc\x31\x8d\x53\x14\x56\x6a\x1d\x77\xbc\xc4\xe7\xa1\xd2\xc3\xf8\x17\x1c\x8a\xdf\xf0\x4f\x44\xeb\x0f\xcc\x4b\xc4\x28\x52\x31\xbe\x36\x9d\xce\x51\x98\x69\xb9\x88\x91\xaa\x58\xbf\x19\x9f\x66\x0b\x97\xcf\x4b\xaf\x1f\x3f\xcc\xc6\x30\xbb\xf0\x7f\x8c\xe7\x7b\xbb\xff\xfc\xe9\x16\x7f\x23\x00\xe8\x3e\x8e\x74\x98\xff\xe4\xc2\x8a\x8a\x18\xef\x2e\x1a\x34\x39\xbb\x89\x3a\x4e\x25\x54\x19\xa1\xd1\x41\x6b\x8c\xa4\xd1\x32\xe9\x0f\x43\xc3\xb0\x6a\x72\xc5\xe4\x52\x43\x7c\x1d\xe6\x9c\xfc\x62\x11\x6e\xbf\x5c\x2b\xe0\xdb\x28\x84\x26\xbe\x1c\xa8\xf3\xf2\x54\x59\xcc\x86\x7e\x1a\x2d\x6f\x8f\xb2\xc2\x9a\xcd\x50\x19\x6f\xb3\xd1\xcd\x9c\x1b\x17\xf2\xa2\xe8\xa5\x40\xa8\x08\x3e\x9f\xb1\x6e\x7a\xc2\x6b\xff\x06\xb4\xa7\xac\x51\xba\x66\xda\xc9\x90\xdb\xd5\x21\xb6\xeb\x2e\x08\x47\x3f\xfb\xfd\x3f\x3f\xdf\x1c\x4e\x9e\xf6\xfb\xa0\xe3\x35\xfa\x17\x00\x00\xff\xff\x64\xbf\x03\x75\x5e\x03\x00\x00" +var _stakingcollectionWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x8f\xd3\x3c\x10\xbe\xe7\x57\x3c\xea\x61\xdf\x56\xaa\x5a\xe9\x05\x71\xa8\x80\x6a\x59\xb4\xd2\x9e\x40\xed\x2e\xf7\xc1\x99\xb4\x56\x1d\x3b\x8c\x27\x64\x2b\xb4\xff\x1d\x39\x1f\xcd\x8a\xe6\xc0\x05\x1f\xea\xc6\x9e\x3c\x1f\x93\x67\x6c\x59\x05\x51\xdc\xbb\xd0\xec\x95\x4e\xd6\x1f\xee\x82\x73\x6c\xd4\x06\x8f\x42\x42\x89\xd9\xe4\xdd\x2c\xcb\xd6\xeb\x35\x76\xfc\xa3\xe6\xa8\xd0\x80\xc6\xea\x31\x17\x6a\x20\xdc\x90\xe4\x9c\x43\xc3\x89\x7d\x44\x11\x04\x7a\x64\xc4\x8a\x8d\x2d\x2c\xe7\xf0\x21\x67\x04\x41\xce\x8e\x0f\xa4\x41\x60\x7d\x57\xd2\xd1\xc0\x5c\x78\x5a\x96\xc7\x23\x0f\x60\x24\x0c\xaa\x35\x94\xa4\xd6\x90\x73\x67\xe4\x5c\x85\x68\xb5\xe5\x6b\x41\x6a\xef\x82\x39\x71\x0e\x32\x26\xd4\x5e\xf1\x93\x6a\xa7\x28\xac\x44\x5d\xb6\x78\xb7\x3e\x4f\x95\x1e\xe4\xcf\xe8\x8b\x5f\xe1\x8f\x88\xd6\xf7\x98\x53\x88\x59\xa6\x42\x3e\x52\xab\x73\x9e\x3c\x3d\x7c\xde\x60\xaf\x62\xfd\x61\x39\x7a\x4b\x87\x4f\x0f\x5e\xdf\xfc\xbf\x5d\x82\xca\xf4\xfe\x06\x4f\xf7\xf6\xf9\xdd\xdb\x05\x7e\x65\x00\xd0\xfe\x38\xd6\xc1\xff\xd8\xe6\x1d\x17\x9b\xe4\xf7\x38\x9f\xfc\x0a\xab\xf1\xef\x97\xc6\xb3\x2c\x70\x33\x5d\x77\x75\x92\xb5\x9c\x95\x70\x45\xc2\xf3\xde\x57\x4f\xf5\x29\x88\x84\xe6\x1b\xb9\x9a\x17\xb8\xb9\xed\xee\x06\xad\x69\x45\x76\xc5\x6a\x4a\x2b\x3e\x0c\x2d\x5a\x45\x0d\x42\x07\x5e\x7d\x6f\xc1\xde\xff\x0b\x0f\x1f\xe7\x29\xa0\x9b\xe9\xf0\x5e\x97\xef\x3b\x45\x5f\x49\x8f\x8b\x8b\x95\xb4\xb6\x5b\x54\xe4\xad\x99\xcf\xee\x42\xed\x52\x3c\x15\x9d\x6c\x10\x84\x0b\x16\xf6\x26\x25\x10\x84\xeb\x21\xe9\xa3\x5b\x89\x2d\x49\xce\xa8\x23\xcb\x7f\x71\x68\xc3\xac\x63\x7a\xe9\xda\xcd\xcf\x6c\x6a\xe5\xbf\xe9\xe4\x6a\x18\xa7\x5d\x3f\x4d\x8f\x6d\x3e\x2f\x31\xeb\xf6\x3f\x62\xf6\xea\x61\x8c\x5a\xb7\x0f\x3a\x5e\xb2\xdf\x01\x00\x00\xff\xff\xea\x2d\x23\xfe\xf2\x03\x00\x00" func stakingcollectionWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5880,11 +5900,11 @@ func stakingcollectionWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe6, 0x49, 0x8d, 0xd0, 0x5b, 0x42, 0x21, 0x6d, 0xfa, 0xef, 0x43, 0x36, 0x96, 0xc0, 0x98, 0x8f, 0x63, 0x76, 0xd0, 0x1a, 0xda, 0xbb, 0x68, 0x23, 0x3d, 0x88, 0x97, 0xea, 0xba, 0x59, 0x73, 0xd7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfb, 0x9a, 0xe1, 0x39, 0x28, 0x58, 0x61, 0xdc, 0x20, 0xc7, 0x14, 0x5c, 0xba, 0xb3, 0x84, 0xc9, 0x6a, 0x57, 0xb9, 0x13, 0x4f, 0x98, 0xa7, 0x23, 0xf, 0xc1, 0x35, 0x93, 0x60, 0xd1, 0x23, 0x6}} return a, nil } -var _stakingcollectionWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x8f\xda\x30\x10\x85\xef\xf9\x15\x4f\x7b\xa8\x58\x09\x41\xd5\x56\x3d\xa0\xb6\x28\x82\xdd\x0a\x75\xb5\x5b\x11\xf8\x01\xd3\x64\x42\x2c\x8c\x27\x75\xc6\x85\x55\xb5\xff\xbd\x72\x42\x60\x55\x38\xac\x0f\xb6\x6c\x8d\xbe\x79\xe3\xf7\xcc\xae\x16\xaf\xb8\xb7\xb2\xcf\x94\xb6\xc6\x6d\x66\x62\x2d\xe7\x6a\xc4\xa1\xf4\xb2\xc3\xfb\x43\xb6\x4a\x7f\x2c\x1e\xbf\xcf\x9e\x1e\x1e\xee\x66\xab\xc5\xd3\x63\x3a\x9f\x2f\xef\xb2\x2c\x49\xc6\xe3\x31\x96\xfc\x3b\x70\xa3\x50\xc1\xde\x68\x55\x78\xda\x23\xb8\x46\x69\xcb\x05\x54\xb6\xec\x1a\x94\xe2\xa1\x15\xa3\xa9\x39\x37\xa5\xe1\x02\x4e\x0a\x86\x78\x14\x6c\x79\x43\x2a\x1e\xc6\x75\x25\x9d\x0a\xe4\x27\x19\x6d\x97\x55\xc5\x3d\x8c\x3c\x83\x82\xca\x8e\xd4\xe4\x64\xed\x33\x0a\xae\xa5\x31\xda\xf6\x6b\x21\xc1\x59\xc9\x63\x7f\xca\x73\x09\x4e\xf1\x87\x82\x55\x94\xc6\x37\x3a\x6c\x79\xa9\x2b\x62\xa5\x03\xb9\x67\x1c\x8b\x5f\xf1\xcf\x44\xe3\x8e\xcc\xab\x44\x53\xc2\x28\x4c\x13\x2b\x3c\x27\x89\x7a\x72\x0d\xb5\xb2\x07\x71\xc4\xc5\x7c\x82\x4c\xbd\x71\x9b\xe1\x79\xd4\xf8\xb8\x5e\x38\xfd\xf8\x61\x3a\x04\xed\x22\x6e\x82\xf5\xbd\x39\x7c\xfe\x74\x8b\xbf\x09\x00\xb4\x9b\x65\xed\xbf\xe3\x6c\xca\x92\xcb\x09\xde\x5d\xf5\x6b\x74\xf1\x92\xb4\x9c\xda\x73\x4d\x9e\x07\x47\xe9\x13\xa4\x41\xab\xb4\xbb\xf4\x0d\xe3\x6a\xd8\x96\xa3\x6b\x0d\xf1\xb5\x1f\x7b\xf4\x4b\xbc\x97\xfd\x97\xb7\x0a\xf8\x36\x88\x19\x9a\x5c\xcf\xd7\x65\x79\xa6\xe2\x69\xc3\x3f\x49\xab\xdb\x93\xac\xb8\xa6\x53\xd4\xe4\x4c\x3e\xb8\x99\x49\xb0\x31\x3e\x8a\x4e\x0a\x3c\x97\xd1\xf6\x0b\xd6\x4d\x47\x78\xe9\xfe\x80\x0f\x9c\x07\xe5\xb7\x4c\x3b\xea\x63\xbc\x3e\xa6\x78\xd5\xe6\xe2\xe4\x67\x77\xfe\xe7\xe7\xab\xcb\xd9\xd3\xee\xec\x75\xbc\x24\xff\x02\x00\x00\xff\xff\x02\xba\xdf\x67\x6d\x03\x00\x00" +var _stakingcollectionWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\xcd\x6e\xdb\x3c\x10\xbc\xeb\x29\x06\x3e\xe4\xb3\x01\xc3\x06\xbe\x16\x3d\x18\x6d\x8d\x34\x45\x80\x9c\x5a\xc4\x71\xef\x5b\x6a\x65\x13\xa6\x49\x75\xb9\xac\x63\x14\x79\xf7\x82\xfa\xb1\x82\x5a\x87\x5e\xca\x83\x28\x91\x8b\x99\x9d\xd1\xac\x3d\xd6\x41\x14\xf7\x2e\x9c\x36\x4a\x07\xeb\x77\x77\xc1\x39\x36\x6a\x83\x47\x25\xe1\x88\xc9\xe8\xdd\xa4\x28\x96\xcb\x25\x1e\xf9\x47\xe2\xa8\xd0\x80\x93\xd5\x7d\x29\x74\x42\xf2\x51\xe9\xc0\x25\x34\x1c\xd8\x47\x54\x41\xa0\x7b\x46\xac\xd9\xd8\xca\x72\x09\x1f\x4a\x46\x10\x94\xec\x78\x47\x1a\x04\xd6\xb7\x25\x2d\x0d\xcc\x85\xa7\x61\x79\xda\x73\x0f\x46\xc2\xa0\xa4\xe1\x48\x6a\x0d\x39\x77\x46\xc9\x75\x88\x56\x1b\xbe\x06\x24\x79\x17\x4c\xe6\x27\x63\x42\xf2\x8a\x9f\x94\x9c\xa2\xb2\x12\x75\xde\xe0\xdd\xfa\x32\x57\x7a\x90\x3f\xa3\x2b\x7e\x85\x3f\x20\x5a\xdf\x61\x8e\x22\xda\x0a\x56\x61\x63\xae\x10\x2e\x0a\x15\xf2\x91\x9a\xb6\xa7\x59\xe2\xc3\xe7\x15\x36\x2a\xd6\xef\xe6\x83\xd4\x7c\xb8\x7d\xf0\xfa\xe6\xff\xf5\x1c\x74\xcc\x70\x2b\x6c\xef\xed\xf3\xbb\xb7\x33\xfc\x2a\x00\xa0\x79\x38\xd6\xde\x8e\xc1\xf5\x47\xae\x56\x59\xfe\x7e\x3a\xfa\x53\x16\xc3\xeb\x97\x93\x67\x99\xe1\x66\xbc\xee\xea\xa4\x68\x38\x6b\xe1\x9a\x84\xa7\x9d\xcc\x8e\xea\x53\x10\x09\xa7\x6f\xe4\x12\xcf\x70\x73\xdb\xde\xf5\xbd\xe6\x15\xd9\x55\x8b\xb1\x5e\xf1\xa1\x77\x6c\x11\x35\x08\xed\x78\xf1\xbd\x01\x7b\xff\x2f\x34\x7c\x9c\xe6\xbc\xae\xc6\xb3\x7c\x5d\xbe\x69\x3b\xfa\x4a\xba\x9f\x5d\xa4\xe4\xb5\x5e\xa3\x26\x6f\xcd\x74\x72\x17\x92\xcb\x69\x55\xb4\x6d\x83\x20\x5c\xb1\xb0\x37\x39\x90\x20\x5c\xcf\x4c\x97\xe4\x5a\xec\x91\xe4\x8c\x14\x59\xfe\x8b\xbd\x0d\x93\x96\xe9\xa5\xb5\x9b\x9f\xd9\x24\xe5\xbf\x71\x72\xd1\x4f\xd7\xb6\x1b\xae\xa7\x26\xae\x97\x98\xb5\xfb\x1f\x31\x7b\xf5\x31\x44\xad\xdd\xfb\x3e\x5e\x8a\xdf\x01\x00\x00\xff\xff\xf5\xac\x11\xd5\x01\x04\x00\x00" func stakingcollectionWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5900,11 +5920,11 @@ func stakingcollectionWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1c, 0x94, 0x7f, 0x6f, 0xf0, 0xe4, 0x28, 0x27, 0x2d, 0x99, 0x6, 0xd7, 0xff, 0xf1, 0xff, 0xa5, 0x7, 0x3a, 0x22, 0x3c, 0xba, 0x2f, 0xff, 0x40, 0x14, 0xdd, 0xe2, 0x43, 0x68, 0x43, 0xb0, 0x64}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf9, 0x49, 0x4d, 0x12, 0xd3, 0x8d, 0x96, 0x6e, 0x9, 0xec, 0x17, 0xc4, 0xc6, 0x99, 0x84, 0x28, 0xbd, 0x52, 0x73, 0x96, 0x3, 0x75, 0x59, 0x22, 0x85, 0x43, 0x73, 0xfa, 0x70, 0xe1, 0x91, 0xe0}} return a, nil } -var _stakingproxyAdd_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x83\x87\x12\x41\xa4\xc7\x12\x6a\x25\x68\x69\x45\xd0\x60\x5a\x68\x8f\x6b\x76\xa2\x4b\xe3\xce\x32\x19\x51\x29\xfe\xf7\xb2\x46\x4d\x42\xba\x87\x90\x7d\x79\x9b\xfd\xde\x3c\xb3\x73\xc4\x02\xa9\xa8\x1f\x63\x37\x09\xd3\xf1\x04\x39\xd3\x0e\x1e\x8f\xe9\x47\x3c\x9f\x2d\xde\x92\xd5\xf2\xeb\x3b\x9e\x4e\x57\xaf\x69\x1a\x04\xc2\xca\x96\x2a\x13\x43\x36\x34\x3a\x82\x54\xd8\xd8\xcd\x00\x98\x0a\x8c\xe0\x73\x66\xe5\x69\x00\x16\xe5\x40\xec\x7f\x18\x6b\xcd\x58\x96\xb5\xaf\xfe\x34\xc7\x53\x2d\x97\xd5\xfd\x0d\xad\x0f\xbf\x41\x00\x00\xe0\x18\x9d\x62\x0c\x55\x96\xd1\xde\x4a\x04\xf1\x5e\xb6\x71\xb5\xf1\x26\xb8\xae\x02\x05\x9c\xe7\x7f\xa7\x42\x23\xc3\x08\xae\x27\x86\x6b\x62\xa6\xc3\xf3\x43\x33\xe4\x70\x41\x1a\xbd\x80\x9c\xd4\x87\x5e\x42\x9f\x3d\x82\x8e\x73\xe9\x90\x95\x10\x4f\x94\x53\x6b\x53\x18\x39\xa5\x42\xac\x36\x98\x28\xd9\xf6\xef\x0c\x7e\x8d\xc7\xe0\x94\x35\x59\xd8\x9b\xd0\xbe\xd0\x60\x49\xa0\x22\x00\xc6\x1c\x19\x6d\x86\x20\x74\x8b\x5c\x31\xc3\xf6\x72\x7f\xaf\x1f\xb4\xf2\x58\xd2\x38\xb3\x39\xc1\xa8\x8b\xe4\xf5\xf0\x62\x98\x46\x60\xf4\xad\x02\xff\xfc\xb7\x81\x8e\xd4\x29\xa3\xb5\x6d\x77\x52\xbf\x37\x08\x1b\xd3\x1e\x2a\xad\xdb\x50\x36\xa7\xe8\xce\x5f\x4d\xe8\x1c\x9c\x83\xbf\x00\x00\x00\xff\xff\x31\xc4\x60\xc0\x70\x02\x00\x00" +var _stakingproxyAdd_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\x43\x0e\x92\x80\xe4\x5c\x42\xad\x58\x7b\xa8\x14\x5a\x41\xda\xfb\x98\x9d\xe8\xd2\xb8\xb3\x4c\x26\x58\x29\xfe\xf7\xb2\x46\x4d\x42\xba\x87\x90\x7d\x3b\x33\xfb\xed\x7b\xf6\xe0\x59\x14\x36\x8a\xdf\xd6\xed\xd6\xc2\x3f\x27\x28\x85\x0f\x10\xf7\xa5\x38\x8a\x54\xd0\xd5\x58\xa8\x65\x97\x58\x93\xc3\x46\xc5\xba\xdd\x14\x84\x2b\xca\xe1\x73\xe5\xf4\x61\x0a\x8e\xf4\xc8\x12\xda\x16\xc6\x08\xd5\x75\x57\xd7\x1d\xbd\xd1\xa9\x93\xeb\xf6\x96\x9e\x96\xc2\x6f\x14\x01\x00\x78\x21\x8f\x42\x09\x16\x05\x37\x4e\x73\xc0\x46\xf7\xc9\x33\x8b\xf0\xf1\x0b\xab\x86\x52\x98\x2c\xda\xb3\xd0\x03\xd7\x55\x91\x82\x0f\xd0\xaf\x5c\x19\x12\x98\xc1\x75\x40\x56\x2b\x0b\xee\x28\xdb\x5e\x46\x3c\x4e\xfa\x2f\xcc\xde\xd9\x50\x10\x48\xd6\x5d\xf3\x53\x12\xbc\xc8\x61\x54\xf9\xe1\x49\x50\x59\x96\xe8\x71\x6b\x2b\xab\xa7\x4d\x3b\x7c\x8d\xba\x4f\xef\x2c\x61\xcd\xe7\xe0\xd1\xd9\x22\x89\x97\xdc\x54\x06\x1c\x2b\xb4\x04\x20\x54\x92\x90\x2b\x08\x94\x6f\x4e\xb4\xec\xb0\xbf\xdc\x1f\xa7\xd1\xe0\x5d\x8e\x0d\xad\x5c\xc9\x30\x1b\x23\x05\x3d\xb9\x14\xbc\xe4\x60\xcd\x2d\x99\xf0\xfd\x37\x98\x91\x34\xca\x68\xb0\x1d\x46\xd5\xfd\xf7\x08\x7b\xae\x67\x68\xcc\x10\xca\x95\x9c\xdf\xf9\x5b\x87\xce\xd1\x39\xfa\x0b\x00\x00\xff\xff\x8d\x03\xa9\x86\x80\x02\x00\x00" func stakingproxyAdd_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5920,11 +5940,11 @@ func stakingproxyAdd_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/add_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb5, 0xf2, 0xa0, 0xe3, 0xb7, 0x7c, 0x79, 0xbd, 0xee, 0x11, 0x1e, 0x31, 0xf2, 0x7a, 0xdc, 0xa2, 0xf, 0xae, 0xba, 0x2a, 0x46, 0x9a, 0xf3, 0x65, 0xd9, 0xb4, 0x2d, 0xd1, 0x43, 0x7c, 0x8, 0xf6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x4c, 0x70, 0x39, 0x70, 0x71, 0x9e, 0x6c, 0x1, 0xdf, 0x9c, 0x65, 0xbf, 0x4, 0xb9, 0xfd, 0xe4, 0x59, 0x8e, 0x5a, 0xcf, 0xd2, 0x23, 0xd, 0x25, 0x7, 0xa2, 0xd, 0xd3, 0xe, 0xb1, 0x72}} return a, nil } -var _stakingproxyGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\x41\x6b\xc2\x40\x10\x85\xef\xf9\x15\xaf\x1e\x4a\x02\x45\x7a\x96\x5a\x09\x5a\x5a\x29\x68\x30\x3d\xb4\xc7\x4d\x32\x49\x97\xc6\x9d\x65\x9c\x50\x45\xfc\xef\x25\xa6\x1a\xaa\x87\xce\x25\x64\xe7\xcd\xfb\xf6\xcd\xda\xb5\x67\x51\xa4\x6a\xbe\xac\xab\x12\xe1\xed\x0e\xa5\xf0\x1a\xf7\xdb\xf4\x2d\x7e\x9d\x2f\x9e\x93\xd5\xf2\xfd\x23\x9e\xcd\x56\x4f\x69\x1a\x04\xbe\xc9\x50\x36\x0e\x6b\x63\x5d\x68\xf2\x9c\x1b\xa7\x23\xc4\x45\x21\xb4\xd9\xdc\xc1\x71\x41\xf3\xd9\x08\xa9\x8a\x75\x55\x34\xfa\x63\x3c\x5c\xb4\x5d\x57\x32\xf6\x41\x00\x00\x35\x29\x7c\xdb\x99\x1a\x6f\x32\x5b\x5b\xdd\x61\x8c\x8a\x34\xee\x8c\x4f\x80\xe8\xa8\x6e\x6b\x58\x91\xf6\xe2\x87\xdb\x2b\xfb\xf6\x80\xe4\xf8\xff\xc2\x75\x41\xb2\xff\x5f\x92\x34\x59\x6d\xf3\xc3\x63\x78\xc6\xb4\x75\x35\xb7\xf4\x24\x46\x59\x7a\x7e\x37\x98\x18\xfd\x3c\x4f\x46\x17\xc9\x56\x54\x62\x7c\x19\x72\x98\xb1\x08\x7f\x87\x7d\xae\xc9\x04\xde\x38\x9b\x87\x83\x29\x37\x75\x01\xc7\x8a\x4e\x04\x7f\x84\x40\xa8\x24\x21\x97\x13\x94\xb1\xe9\xee\xd6\xf9\x0e\x7e\x99\x42\xda\x88\x3b\x63\xdb\x55\x9d\x16\x1e\x9e\xde\xa5\xfb\x46\x37\xc1\x21\xf8\x09\x00\x00\xff\xff\xb3\xad\x9a\xc7\xfa\x01\x00\x00" +var _stakingproxyGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x4e\xf3\x30\x10\x85\xf7\x3e\xc5\xfb\xb3\xf8\x95\x48\x28\x07\xa8\x80\xaa\x2a\x0b\xd8\x40\x45\x4f\xe0\x3a\x93\x60\xe1\x7a\xac\xf1\x44\x50\x55\xbd\x3b\x4a\xad\x14\x50\x17\xcc\xc6\xf2\xcc\xbc\x37\x4f\x9f\xdf\x27\x16\xc5\x56\xed\xbb\x8f\xc3\x46\xf8\xf3\x80\x5e\x78\x8f\xea\x67\xab\x32\xc6\x3a\x47\x39\xd7\x36\x84\x06\xfd\x18\xb1\xb7\x3e\xd6\xd6\x39\x1e\xa3\x2e\xb0\xea\x3a\xa1\x9c\x6f\x10\xb9\xa3\xa7\x87\x05\xb6\x2a\x3e\x0e\xcd\xe2\x97\x73\xfb\x3c\x4d\x63\xcf\x38\x1a\x03\x00\x81\x14\x69\x9a\xbc\x52\x8f\x3b\x0c\xa4\xab\xe2\x38\x3b\x37\xe7\xb5\xa9\x5a\x67\x93\xdd\xf9\xe0\xd5\x53\x6e\x77\x2c\xc2\x1f\xb7\xff\xaf\xdc\xa7\x06\xc9\xf9\xff\xc8\xa1\x23\x39\xfe\xbd\xb2\x19\x77\xc1\xbb\xd3\x7d\x7d\x39\x36\xd5\x95\xee\x25\x91\x58\x65\x59\xcf\x41\x0e\x45\xb8\xb1\xfa\x76\x51\x7e\x07\x5e\x2e\x91\x6c\xf4\xae\xae\xd6\x3c\x86\x0e\x91\x15\x25\x36\xd2\x59\x07\xa1\x9e\x84\xa2\x23\x28\x23\x97\x73\x05\x47\xd5\x14\x3e\x42\x3a\x4a\xbc\x20\x6a\x07\xd2\x19\x61\x3d\x93\x2e\x6f\xf3\xcf\x9c\xcc\x57\x00\x00\x00\xff\xff\x07\xe6\x21\xd3\xcd\x01\x00\x00" func stakingproxyGet_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5940,11 +5960,11 @@ func stakingproxyGet_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/get_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0x8b, 0x46, 0x15, 0x59, 0x7a, 0x1d, 0x80, 0xde, 0x23, 0xc5, 0x1f, 0x2d, 0x9f, 0xde, 0xec, 0x2a, 0xfe, 0x91, 0xca, 0xb9, 0xea, 0xf1, 0x9c, 0xe6, 0x56, 0x27, 0x11, 0x3d, 0x3b, 0xe3, 0xff}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0x3e, 0xd4, 0xe5, 0xc4, 0x95, 0x56, 0x6b, 0xfd, 0xc9, 0xe5, 0x64, 0xc, 0x1b, 0xe0, 0xbd, 0xff, 0x2b, 0x95, 0x9a, 0xaf, 0x4e, 0xdd, 0xf1, 0x3c, 0xf7, 0x3e, 0xc0, 0xfd, 0x96, 0x31, 0x6c}} return a, nil } -var _stakingproxyRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x41\x8f\xda\x3c\x10\xbd\xe7\x57\xcc\xc7\x61\xbf\x44\x42\x51\x0f\x55\x0f\xd1\xb2\x2b\x04\xb4\x5d\xb1\x02\x44\xa8\xd4\x1e\x8d\x3d\x01\x8b\xe0\x89\x9c\x89\xca\x6a\xc5\x7f\xaf\x1c\x27\x21\xb0\xdd\xb6\xbe\x38\xce\xcc\xbc\x79\xef\x8d\xad\x8f\x05\x59\x86\x67\x92\x07\x54\x1b\x3a\xa0\x29\x21\xb3\x74\x84\x0f\xa7\xe7\xe5\x64\x3e\x9b\x6e\x96\xf3\xd9\x62\x3c\x9d\xae\x67\x69\x1a\x34\xd9\x29\x8b\x83\x36\xbb\x95\xa5\xd3\x4b\x9b\x9d\x6e\xc6\xf3\xa7\xc5\x97\xd5\x7a\xf9\xfd\x47\x9b\x1e\xb0\x15\xa6\x14\x92\x35\x99\x50\x28\x65\xb1\x2c\x13\x18\xfb\x8f\x21\x68\x95\x40\xca\x56\x9b\xdd\x10\xc4\x91\x2a\xc3\x09\x7c\xfb\xac\x4f\x9f\x3e\x46\xf0\x1a\x04\x00\x00\x39\x32\xec\x29\x57\x68\xd7\x98\x25\x70\xd7\xe7\x19\xd7\xdb\xd7\x3a\xea\xb3\x0b\x8b\x85\xb0\x18\x0a\x29\x3d\xda\xb8\xe2\xfd\xd8\x1f\x1c\x24\x34\xab\xc4\x3c\x8b\x3b\x58\x18\x41\x53\x10\x6f\xc9\x5a\xfa\x79\xff\x6e\x9b\x87\xd0\xa9\x4d\xe0\xbd\x78\xca\x64\xc5\x0e\x57\x82\xf7\x51\xd7\xcd\xad\xc7\x47\x28\x84\xd1\x32\x1c\x4c\xa8\xca\x15\x18\x62\xf0\xcd\xc0\x62\x86\x16\x8d\x44\x60\x82\x1e\xd6\xc0\x23\x9c\xbd\x34\x3c\xa1\xac\x18\x7b\x22\x9c\x35\x86\x14\x2e\x0b\xb4\x82\xa9\x51\xb2\x43\x6e\x04\xb7\x86\x47\xf1\x0e\x79\x22\x0a\xb1\xd5\xb9\xe6\x97\x2b\x5a\xf7\x77\xfd\x51\xc6\x0b\x52\xe8\x7e\xa0\xad\xcf\x9e\xc7\xeb\xdf\x53\x56\xd5\x36\xd7\xf2\xfc\x70\x85\x1d\xbe\xa9\x6b\x99\x5e\xc8\xf8\xc2\xda\xae\xff\x1a\xf3\xc3\x08\xfe\xd5\x39\xa7\x1e\xa8\x01\x85\xa2\xc6\x02\xd9\x81\x0f\xa2\xe0\x8d\x59\x4f\x26\x23\x18\xdd\xfa\xe6\x1c\x5a\x34\xd1\xb0\x4e\x9b\x26\xa0\xd5\x1f\x47\x68\xfe\x67\x67\x36\x68\x87\x98\x91\xf5\xf0\xd3\xd1\x20\x96\x64\xa4\xe0\x50\xab\xa8\x47\xe0\xfa\xca\xc5\xd2\xa2\x60\xbc\x98\x19\xb6\xe4\x92\x8e\xe6\xe5\x4d\xf8\xfd\x37\x6a\x7a\x83\x80\xd1\x6d\x0b\x6f\x52\x03\xdf\x2b\xbe\xd5\x2e\x94\xea\x4f\xaa\xd3\xdf\xf2\x88\xb5\x1a\x42\xe1\x42\xc9\x6d\xd3\xf6\x86\x9e\x83\x5f\x01\x00\x00\xff\xff\xa1\xc8\xc2\x7d\x47\x04\x00\x00" +var _stakingproxyRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x93\x41\x8f\xd3\x30\x10\x85\xef\xf9\x15\xa3\x1c\x4a\x22\x55\x3e\x21\x0e\x11\x65\xb5\xec\x0a\x81\x84\x96\x8a\x02\x77\xd7\x9e\xa4\x56\x53\x4f\xe4\x4c\x44\x2b\xb4\xff\x1d\x39\x76\x52\xb7\x05\x84\xb4\xbe\x64\xd7\xe3\x79\xf3\xbd\x67\xd7\x1c\x3a\x72\x0c\x9f\x49\xed\x51\x7f\xa3\x3d\xda\x1e\x6a\x47\x07\xc8\xd3\xad\x3c\x8b\xe7\x36\x2c\xf7\xc6\x36\x6b\x47\xc7\x53\x3c\x97\x6e\xe5\x59\xc6\x4e\xda\x5e\x2a\x36\x64\x0b\xa9\xb5\xc3\xbe\xaf\xe0\x3e\xfc\xb1\x04\xa3\x2b\xd8\xb0\x33\xb6\x59\x82\x3c\xd0\x60\xb9\x82\xef\x1f\xcc\xf1\xcd\xeb\x12\x7e\x65\x19\x00\x40\x8b\x0c\x3b\x6a\x35\xba\xaf\x58\x57\x20\x07\xde\x15\x29\x8b\x18\x3f\x5f\x3a\x74\xd2\x0f\xe9\x4b\x58\xdc\x96\x3f\x8e\x02\x41\xb0\x73\xd8\x49\x87\x85\x54\x2a\x0c\x1c\x25\xdf\x93\x73\xf4\xf3\x87\x6c\x07\x2c\x61\x71\x1f\x6a\x1e\x02\xe2\xea\xb1\xad\xc5\x0c\x02\x2b\x88\xfd\xa2\x67\x72\xb2\x41\xb1\x1d\x15\xde\xbe\x04\xf0\x5d\xe1\x33\xac\xe0\x6f\xf5\x4d\x18\xb5\x96\xbc\x2b\x67\x30\xbf\xee\xee\xa0\x93\xd6\xa8\x22\x7f\xa0\xa1\xd5\x60\x89\x21\xf0\x80\xc3\x1a\x1d\x5a\x85\xc0\x04\x89\x56\x1e\x14\x9e\x43\x28\x78\x44\x35\x30\x26\x7e\x7d\xee\x96\x34\x06\x70\x8a\xa6\x1b\xe4\x98\xcd\x74\x9b\xa5\x50\xb2\x93\x5b\xd3\x1a\x36\xd8\x5f\x50\x4d\x91\x2c\xd2\x37\x21\x9e\x48\xa3\xdf\x40\x37\xfe\x3f\x39\xbf\xe8\xf4\xeb\xa6\x69\x22\x79\x98\xe6\x9d\xd6\xc3\xb6\x35\xca\xc7\x71\xd1\xfd\xdf\xd9\x78\x7f\x40\x51\x16\xba\x51\x0d\x66\x3b\xa7\xbc\xcc\x6e\xe2\xf8\x64\x6b\x82\xd5\x75\x32\xa2\x41\x7e\x8a\xd5\x62\x3c\xf6\x58\x81\xd1\xff\x04\xb1\xaf\xd8\xc7\x09\xc6\x2b\xd6\xe4\x82\xfc\xe3\x2a\x17\x8a\xac\x92\x5c\x18\x5d\x26\x00\x97\xef\x4f\x28\x87\x92\xf1\x9c\x65\x31\xc1\x55\x33\xe6\xf9\x27\x15\xbe\x7f\x70\x93\xdc\x03\xac\xae\x47\x84\x90\xa2\x7c\xd2\x7c\xed\x5d\x6a\x9d\xde\xd5\xec\x7f\xe2\x10\x46\x2f\xa1\xf3\xa5\xea\x7a\xe8\xf4\x06\x9f\xb3\xdf\x01\x00\x00\xff\xff\x1f\x55\xea\x18\x79\x04\x00\x00" func stakingproxyRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5960,11 +5980,11 @@ func stakingproxyRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6a, 0xa8, 0x7a, 0xb4, 0x24, 0xcc, 0x6b, 0x8d, 0x67, 0xfe, 0xdd, 0x4c, 0xad, 0x2d, 0x6b, 0x86, 0x24, 0x5c, 0xfd, 0x26, 0x3e, 0x97, 0xdd, 0xeb, 0xd3, 0xd7, 0x4b, 0x36, 0xc8, 0xb5, 0xe2, 0x5c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6, 0x55, 0xf4, 0xb6, 0xef, 0xa5, 0x91, 0xdf, 0x85, 0xff, 0x8f, 0x28, 0xa1, 0x53, 0x69, 0x5a, 0x7e, 0x8e, 0x55, 0xcd, 0xa, 0xd5, 0xcc, 0x2c, 0x22, 0x93, 0xb6, 0xd1, 0xf4, 0x3, 0x6f, 0x61}} return a, nil } -var _stakingproxyRemove_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\x51\x4b\xc3\x40\x0c\xc7\xdf\xef\x53\xe4\x49\xda\x97\xe2\x73\x51\xe1\xb0\xa2\x45\xd8\x8e\x9d\x0f\xfa\x98\xb5\x59\x77\xd8\x5e\x8e\x98\xe9\x86\xec\xbb\xcb\xb9\x31\x0b\xe6\x25\x24\xfc\x7f\xe4\x97\x30\x25\x16\x05\xaf\xf8\x1e\xe2\xe0\x84\xf7\x07\xd8\x08\x4f\x70\xbd\xf7\x2f\xf6\xb9\x5d\x3c\xba\xd5\xf2\xf5\xcd\x36\xcd\xea\xc1\x7b\x63\x54\x30\x7e\x60\xa7\x81\x63\x11\xb9\xa7\xb6\xa9\xc1\xab\x84\x38\x94\xf0\x6d\x0c\x00\x40\x12\x4a\x28\x54\x60\xd7\xf1\x2e\x6a\x0d\x76\xa7\x5b\x7b\x1a\x72\x08\xce\x35\x92\x42\xca\x07\x9f\x78\xec\x49\xe0\x16\xce\x44\xb5\x66\x11\xfe\xba\xb9\x9a\x5b\x55\x0b\xee\x29\x2f\x48\xdc\x1f\x74\x57\x64\xd9\x1a\xfe\x25\x97\x89\x04\x95\xe5\x1e\x13\xae\xc3\x18\xf4\xe0\x95\x05\x07\x72\xa8\xdb\xd2\x5c\x24\x66\x02\x95\xd0\xc4\x9f\x94\xe9\x36\x6e\xf8\xf2\xde\xa9\x97\xbf\xc8\xd1\x1c\xcd\x4f\x00\x00\x00\xff\xff\x64\x64\x88\xd5\x33\x01\x00\x00" +var _stakingproxyRemove_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\x4d\x6a\xc3\x30\x10\x85\xf7\x3a\xc5\x23\x8b\x60\x6f\x7c\x00\xd3\x16\xfa\xb3\x68\x36\xad\xc1\xd0\xfd\xc4\x9e\x38\xa2\xb2\x46\x4c\xc6\x6d\x43\xc9\xdd\x8b\xe2\x90\x1a\xa2\x8d\xe0\x49\xdf\x9b\x6f\xfc\x98\x44\x0d\xad\xd1\xa7\x8f\x43\xa3\xf2\x73\xc4\x4e\x65\xc4\x6a\x19\xad\x9c\x33\xa5\x78\xa0\xce\xbc\xc4\x22\x4a\xcf\x9b\x97\x1a\xad\xa9\x8f\x43\x89\x5f\xe7\x00\x20\x29\x27\x52\x2e\xa8\xeb\x64\x8a\x56\x83\x26\xdb\x17\x4f\xa2\x2a\xdf\x1f\x14\x26\x2e\xb1\x7e\x9c\xdf\x32\x83\xcb\x09\x6c\x48\x79\xca\xab\x84\x9e\x15\xf7\xb8\x14\x54\x07\x13\xa5\x81\xab\xed\xb9\xe2\x6e\xbd\x54\xaa\xde\xa4\xe7\x1c\xb0\x36\xff\xf0\x43\x91\xe5\x6b\xdc\xfc\x7c\x4f\xac\x64\xa2\xcf\x94\x68\xeb\x83\xb7\x63\x3b\x97\x37\x64\xfb\xd2\x5d\x65\x16\x22\x95\xf2\x28\x5f\x9c\xe9\x4d\xdc\xc9\x75\xeb\xf9\x2e\xcf\xc8\xc9\x9d\xdc\x5f\x00\x00\x00\xff\xff\x28\xae\xe7\x3e\x43\x01\x00\x00" func stakingproxyRemove_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5980,11 +6000,11 @@ func stakingproxyRemove_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/remove_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0x54, 0xc1, 0x59, 0xe, 0x14, 0xb4, 0xd3, 0xf1, 0xd2, 0xef, 0x53, 0xff, 0x63, 0xb9, 0x6d, 0x1c, 0x93, 0xfc, 0x57, 0x6, 0xae, 0xa4, 0x12, 0x64, 0x2f, 0xc5, 0x89, 0x83, 0xfe, 0x93, 0x46}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0xf7, 0x1c, 0x46, 0x86, 0x72, 0x41, 0x59, 0x9b, 0xed, 0x64, 0x8f, 0xb4, 0x13, 0xa6, 0x40, 0x7a, 0xf2, 0x9a, 0x14, 0x5d, 0xf4, 0x21, 0xb0, 0x2, 0xbb, 0x79, 0xc5, 0x68, 0xb4, 0xb7, 0xcc}} return a, nil } -var _stakingproxyRemove_staking_proxyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xc1\x4a\xc3\x40\x10\x86\xef\xfb\x14\x73\x92\xe4\x12\x3c\x07\x15\x16\x23\x5a\x84\x76\xe9\x7a\xd0\xe3\x34\x19\x93\xc5\x64\x67\x19\xa7\xda\x22\x7d\x77\x59\x5b\x6a\xa0\x7b\x59\x66\xf8\xbf\x99\x6f\xc2\x94\x58\x14\xbc\xe2\x47\x88\xbd\x13\xde\xed\xe1\x5d\x78\x82\xeb\x9d\x7f\xb1\xcf\x8b\xe5\xa3\x5b\xaf\x5e\xdf\x6c\xd3\xac\x1f\xbc\x37\x46\x05\xe3\x27\xb6\x1a\x38\x16\x91\x3b\x5a\x34\x35\x78\x95\x10\xfb\x12\x7e\x8c\x01\x00\x48\x42\x09\x85\x0a\x6c\x5b\xde\x46\xad\xc1\x6e\x75\xb0\xc7\x22\x87\xe0\xf4\x46\x52\x48\x79\xe1\x13\x8f\x1d\x09\xdc\xc2\x89\xa8\x36\x2c\xc2\xdf\x37\x57\x73\xab\x6a\xc9\x1d\xe5\x06\x89\xfb\x87\xee\x8a\x2c\x5b\x43\xc2\x8b\xec\x2a\x91\xa0\xb2\xdc\x63\xc2\x4d\x18\x83\xee\xbd\xb2\x60\x4f\x0e\x75\xd0\xa1\x34\x67\x91\x99\x44\x25\x34\xf1\x17\xcd\x87\x9d\xcf\x3c\xfe\xe5\x1f\x76\x30\x07\xf3\x1b\x00\x00\xff\xff\x4f\x9f\x84\x5d\x3b\x01\x00\x00" +var _stakingproxyRemove_staking_proxyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\x4d\x6a\xc3\x30\x10\x85\xf7\x3a\xc5\x23\x8b\x60\x6f\x7c\x00\xd3\x16\xfa\xb3\x68\x37\xad\xc1\xd0\xfd\xc4\x9e\xda\xa2\xb6\x46\x4c\xc6\x6d\x43\xc9\xdd\x8b\xe2\x90\x0a\xa2\x8d\xe0\x49\xef\x9b\x6f\xfc\x1c\x45\x0d\xad\xd1\xa7\x0f\x43\xa3\xf2\x73\xc0\x87\xca\x8c\x4d\x1e\x6d\x9c\x33\xa5\xb0\xa7\xce\xbc\x84\x22\x48\xcf\x2f\x4f\x35\x5a\x53\x1f\x86\x12\xbf\xce\x01\x40\x54\x8e\xa4\x5c\x50\xd7\xc9\x12\xac\x06\x2d\x36\x16\x0f\xa2\x2a\xdf\xef\x34\x2d\x5c\x62\x7b\xbf\xbe\xa5\x0e\xce\x67\x62\x43\x4c\x53\x9e\x65\xea\x59\x71\x8b\x33\xa0\xda\x9b\x28\x0d\x5c\xed\x4e\x88\x9b\x6d\xae\x54\xbd\x4a\xcf\x29\x60\x6d\xfe\xcb\x77\x45\x92\xaf\x11\xe9\xea\xef\x5b\x64\x25\x13\x7d\xa4\x48\x3b\x3f\x79\x3b\xb4\x2b\xbe\x21\x1b\x6d\x2c\xdd\x45\x28\x93\xa9\x94\x67\xf9\xe2\x1c\x76\xd9\x7e\xbd\xcb\x53\xed\xe8\x8e\xee\x2f\x00\x00\xff\xff\x69\xc3\x7d\xed\x4b\x01\x00\x00" func stakingproxyRemove_staking_proxyCdcBytes() ([]byte, error) { return bindataRead( @@ -6000,11 +6020,11 @@ func stakingproxyRemove_staking_proxyCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/remove_staking_proxy.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcd, 0xb7, 0xb8, 0xff, 0xfc, 0x1e, 0x9f, 0xd3, 0x1a, 0x76, 0xac, 0x78, 0xe0, 0x9c, 0xf6, 0x9e, 0xd9, 0xed, 0x85, 0xd4, 0x2b, 0xa4, 0x7e, 0xed, 0xc5, 0xbf, 0x38, 0x7c, 0x76, 0xe6, 0x74, 0x14}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc8, 0xc0, 0x93, 0x87, 0x23, 0x74, 0x64, 0xa0, 0x10, 0x3f, 0xa9, 0x3b, 0xef, 0xb1, 0xde, 0xd5, 0xdb, 0x46, 0xc0, 0x26, 0x79, 0x83, 0x2d, 0x9b, 0x6, 0xd3, 0x1b, 0x19, 0x8, 0xcb, 0x3d, 0xa5}} return a, nil } -var _stakingproxyRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6b\xf2\x40\x10\xc7\xef\xfb\x29\xe6\xf1\xf0\x90\x40\x91\x1e\x4a\x0f\x52\x2b\x41\xfb\x22\x05\x0d\xa6\x42\x7b\x1c\x93\x51\x97\xc6\x9d\xed\x64\x42\x95\xe2\x77\x2f\xe9\xa6\x9a\xd2\xb9\x0c\x3b\x3b\x2f\xbf\xff\xdf\xee\x3c\x8b\x42\xa6\xf8\x66\xdd\x26\x15\xde\x1f\x60\x2d\xbc\x83\xcb\x7d\xf6\x9c\x3c\x4d\x67\x0f\xe9\x62\xfe\xf2\x9a\x4c\x26\x8b\xbb\x2c\x33\x46\x05\x5d\x85\xb9\x5a\x76\x91\xe3\x82\xa6\x93\x01\x64\x2a\xd6\x6d\x2e\x00\x77\x5c\x3b\x1d\xc0\xf2\xde\xee\xaf\xaf\x62\xf8\x34\x06\x00\xc0\x0b\x79\x14\x8a\x30\xcf\xc3\x7f\x52\xeb\x36\x09\x8f\xa6\x09\xda\x28\x49\xc1\x37\x00\x8f\x5c\x16\x24\x30\x84\x76\xa2\xbf\x62\x11\xfe\xb8\xf9\xdf\xa5\xec\xcf\xb8\xa0\xa6\x40\x92\x9e\x87\x6e\xa3\x06\x7e\x00\x7f\x3a\xe7\x9e\x04\x95\x65\x8c\x1e\x57\xb6\xb4\x7a\xc8\x94\x05\x37\x94\xa2\x6e\xe3\x13\x43\x13\xa3\x11\x78\x74\x36\x8f\x7a\x63\xae\xcb\x02\x1c\x2b\x04\x02\x10\x5a\x93\x90\xcb\x09\x94\xa1\x0a\x37\x02\x33\x6c\xbf\xef\xf7\x62\xf3\x4b\x4f\xd5\xf5\x75\xd8\x95\xd7\x8a\xea\x82\x9e\x0c\x0d\x39\xfe\x77\xde\xd5\xdd\xd3\x17\x7a\xaf\xa9\xd2\xa5\x6b\xab\xd1\x8f\xf1\x21\x07\x35\x47\x73\x34\x5f\x01\x00\x00\xff\xff\x09\x50\xee\xd5\xdd\x01\x00\x00" +var _stakingproxyRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\x4d\x4b\xf3\x40\x10\xbe\xef\xaf\x98\x37\x87\xb2\x81\x97\x9c\xc4\x43\xb1\x16\xad\x88\x5e\xb4\x50\xea\x7d\x9a\x4c\x9b\xc5\x64\x67\x9d\x4c\xb0\x45\xfa\xdf\x25\xdd\xd8\xae\x38\x97\x81\x67\x76\x9e\x8f\x59\xd7\x06\x16\x85\x95\xe2\xbb\xf3\xbb\xa5\xf0\xfe\x00\x5b\xe1\x16\xb2\x14\xca\x8c\x51\x41\xdf\x61\xa9\x8e\xbd\xf5\x5c\xd1\xf3\xc3\x14\x56\x2a\xce\xef\xfe\x03\xb6\xdc\x7b\x9d\xc2\xfa\xd1\xed\xaf\xaf\x72\xf8\x32\x06\x00\x20\x08\x05\x14\xb2\x58\x96\x71\x8e\xbd\xd6\xf6\x9e\x45\xf8\xf3\x0d\x9b\x9e\x72\x98\xdc\xc5\xd9\xb0\x03\x63\x35\xa4\x10\x06\xd5\x27\x6e\x2a\x12\x98\xc1\x48\x50\x74\xca\x82\x3b\x2a\x36\x27\x8a\x9b\x49\x6a\xb1\x78\xe1\x8a\x06\x80\x64\x79\x59\xbe\xb5\x43\x98\x29\xfc\x79\xf9\x1a\x48\x50\x59\x16\x18\x70\xe3\x1a\xa7\x87\x55\x24\x5f\xa2\xd6\xf9\xd9\xcb\x50\xf3\x39\x04\xf4\xae\xb4\xd9\x82\xfb\xa6\x02\xcf\x0a\xd1\x01\x08\x6d\x49\xc8\x97\x04\xca\xd0\x45\x8d\xe8\x1d\xea\x93\x7e\x96\x9b\x5f\xb9\xba\xf4\xce\xb3\x34\xe6\x18\x2a\x35\x7a\xbe\x73\xec\xf9\xbf\x0b\x57\xca\x53\x08\x7d\xf4\xd4\xe9\xda\x8f\xa8\xfd\xf9\x8f\xd8\x63\x9a\xa3\x39\x9a\xef\x00\x00\x00\xff\xff\xda\xf0\xd0\xe7\xed\x01\x00\x00" func stakingproxyRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -6020,11 +6040,11 @@ func stakingproxyRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0x4, 0xb5, 0x6d, 0xd4, 0x43, 0x6a, 0x62, 0x66, 0x8f, 0xf8, 0x22, 0x3c, 0x0, 0xa1, 0xef, 0x32, 0x6c, 0x7a, 0x1, 0xa5, 0x6b, 0x83, 0x30, 0xa, 0x8d, 0x29, 0x5a, 0xdd, 0xda, 0x77, 0x79}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x27, 0xc, 0x98, 0xb7, 0xdd, 0xba, 0xf0, 0x75, 0xec, 0x3a, 0xf0, 0x5f, 0xf6, 0x67, 0x82, 0x46, 0xbc, 0x45, 0xee, 0xe4, 0x17, 0x24, 0x7e, 0x73, 0x20, 0xb3, 0x84, 0x9f, 0x3, 0x4c, 0x6e, 0xc2}} return a, nil } -var _stakingproxySetup_node_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\xe6\x24\x29\xb4\xc5\x73\x09\x42\xb0\xa2\x22\xb4\xa1\xf1\xa0\xc7\xe9\x76\x4c\x97\x6e\x77\x96\xe9\x44\x5a\x4a\xfe\xbb\xac\x4a\x4c\x10\x51\xdf\x69\x59\xde\xfb\xde\x1b\xb7\x8f\x2c\x0a\x95\xe2\xce\x85\xba\x14\x3e\x9e\xe0\x45\x78\x0f\x97\xc7\xea\xb1\x78\xb8\x5f\xdc\x96\xab\xe5\xd3\x73\x31\x9f\xaf\x6e\xaa\xca\x18\x15\x0c\x07\xb4\xea\x38\x64\x23\x38\x1b\x03\x00\x10\x85\x22\x0a\x65\x81\x37\xb4\x8c\x24\xa8\x2c\x33\x28\x1a\xdd\x16\xd6\x72\x13\x34\x39\xe1\x53\x9e\x14\x62\xea\xb9\x63\xbf\x21\x81\x7c\x32\x68\x9f\x5a\x21\x54\x2a\xbf\x1c\xd9\xc8\x74\xe1\x7e\xc3\xf4\x80\xaf\x94\xe5\x93\x1e\x6c\x0c\xca\xb3\x21\x6e\xd1\x4b\x5c\x63\xc4\xb5\xf3\x4e\x4f\x95\xb2\x60\x4d\x25\xea\xf6\x27\xba\x77\x61\x97\x5f\x7c\x63\xa5\x0f\x92\xde\xbc\xf3\xef\x96\xb2\x59\x7b\x67\xdb\xab\xac\x6b\x4a\xfa\xc3\xcc\x8f\x60\x5a\x39\x1e\x44\x15\xa5\x26\xfd\xef\xa5\x1d\x62\xf4\xfe\x6a\x4d\x6b\xde\x02\x00\x00\xff\xff\xf8\x08\x93\x28\xff\x01\x00\x00" +var _stakingproxySetup_node_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\xc1\x6a\xc3\x30\x0c\x86\xef\x7e\x0a\xd1\x43\x71\x20\xcd\x03\x94\x6c\x30\x76\xd9\x69\x0b\x04\x76\x57\x5d\xad\x31\x4b\x6d\x23\x2b\x65\x65\xf4\xdd\x87\xd9\xf0\xec\x8e\xc1\xe6\x43\x0e\x8a\xf4\x7f\x9f\x64\x8f\xc1\xb3\xc0\x28\xf8\x6a\xdd\x61\x60\xff\x76\x86\x17\xf6\x47\x58\x95\xa5\x95\x52\xc2\xe8\x22\x1a\xb1\xde\xe9\x06\xde\x95\x02\x00\x08\x4c\x01\x99\xb4\xf3\x7b\x7a\x0a\xc4\x28\x9e\xb7\x80\x8b\x4c\x7a\xc4\x13\x3d\xe3\xbc\x50\x0b\xf7\x18\x70\x67\x67\x2b\x96\x62\x03\xeb\x3b\x63\xfc\xe2\x24\x85\xc0\xd7\x9b\x49\x20\x24\xd0\x83\x9f\xf7\xc4\xd0\x6f\x2a\xa3\xce\x30\xa1\xd0\xf0\xdd\xa1\x1b\x95\x87\x4b\x78\x17\xc5\x33\x1e\xa8\x8b\x78\x22\xdd\x6f\x8a\xd0\x16\xc4\x6f\xeb\xd8\xc7\x62\x32\x4b\x9e\xc7\xcf\x88\x01\x65\x2a\x28\x49\xd1\xd5\xfd\x70\x53\xb3\x4d\xb1\x67\x16\xb1\x31\x2e\xd4\xaf\x7f\x70\x53\x81\xb8\x58\xe9\x56\x67\x56\x7a\xff\x13\xcd\xa3\xbf\xdd\xa5\x72\x0b\xcb\x6e\xb6\x71\xaa\x81\x57\xcb\xb5\xd5\x4f\x94\x3f\x9d\x6e\x48\xc1\xe6\x4a\x28\x7d\x2f\xea\xa2\x3e\x02\x00\x00\xff\xff\x35\x26\xe1\xc1\x6b\x02\x00\x00" func stakingproxySetup_node_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -6040,11 +6060,11 @@ func stakingproxySetup_node_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/setup_node_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb3, 0x0, 0x84, 0x96, 0x15, 0xf1, 0x23, 0x27, 0xca, 0xa4, 0x4, 0xe3, 0xc0, 0x8c, 0xc9, 0x59, 0x5e, 0x1e, 0x11, 0x6b, 0xd7, 0xe2, 0x9f, 0x69, 0x3c, 0xf0, 0x3a, 0xc6, 0xb8, 0x32, 0x46, 0x24}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2f, 0x9a, 0xe3, 0x34, 0x75, 0x3a, 0xde, 0xe7, 0x18, 0x77, 0x38, 0x64, 0x59, 0x95, 0xee, 0xf8, 0x2d, 0xa4, 0x2a, 0x35, 0x96, 0xbf, 0x85, 0x5c, 0x95, 0x1a, 0x63, 0x1b, 0xba, 0xae, 0x8d, 0xd9}} return a, nil } -var _stakingproxyStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6b\xc2\x40\x10\x86\xef\xfb\x2b\xa6\x1e\x4a\x02\x45\x7a\x28\x3d\x48\xad\x04\xed\x87\x14\x34\x18\x0b\xed\x71\x4c\x46\x5d\x8c\x3b\xcb\x64\x44\xa5\xf8\xdf\x4b\xba\xa9\xa6\x74\x2e\xc3\xec\xce\xc7\xf3\xbe\x76\xeb\x59\x14\x32\xc5\x8d\x75\xab\x54\xf8\x70\x84\xa5\xf0\x16\x6e\x0f\xd9\x3c\x79\x1b\x4f\x5e\xd2\xd9\xf4\xe3\x33\x19\x8d\x66\x4f\x59\x66\x8c\x0a\xba\x0a\x73\xb5\xec\x22\xc7\x05\x8d\x47\x3d\xc8\x54\xac\x5b\xdd\x00\x6e\x79\xe7\xb4\x07\xef\xcf\xf6\x70\x7f\x17\xc3\x97\x31\x00\x00\x5e\xc8\xa3\x50\x84\x79\x1e\xfe\x93\x9d\xae\x93\x50\xd4\x4d\xd0\x44\x49\x0a\xbe\x06\x78\xe5\xb2\x20\x81\x3e\x34\x13\xdd\x05\x8b\xf0\xfe\xe1\xba\x4d\xd9\x9d\x70\x41\xf5\x03\x49\x7a\x19\x7a\x8c\x6a\xf8\x1e\xfc\xeb\x9c\x7a\x12\x54\x96\x21\x7a\x5c\xd8\xd2\xea\x31\x53\x16\x5c\x51\x8a\xba\x8e\xcf\x0c\x75\x0c\x06\xe0\xd1\xd9\x3c\xea\x0c\x79\x57\x16\xe0\x58\x21\x10\x80\xd0\x92\x84\x5c\x4e\xa0\x0c\x55\xb8\x11\x98\x61\xfd\x73\xbf\x13\x9b\x3f\x7a\xaa\xb6\xaf\xfd\xb6\xbc\x46\x54\x1b\xf4\x6c\x68\xc8\xf1\xd5\x65\x57\x7b\x4f\xb7\x2e\x68\x42\xfb\x39\x6f\xc8\x55\xd1\xaf\xed\x21\x07\x2d\x27\x73\x32\xdf\x01\x00\x00\xff\xff\x05\x52\x1c\xe7\xdb\x01\x00\x00" +var _stakingproxyStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\xcf\x4e\x32\x41\x0c\xbf\xcf\x53\xf4\xdb\x03\x99\x4d\xbe\xec\xc9\x78\x20\x22\x51\x8c\xd1\x0b\x92\xa0\xde\xcb\x6e\x81\x09\xcb\x74\xd2\xed\x06\x88\xe1\xdd\xcd\x30\x08\x63\xec\xa5\x99\x76\xfa\xfb\xd3\xba\x6d\x60\x51\x98\x2b\x6e\x9c\x5f\xcd\x84\xf7\x07\x58\x0a\x6f\xa1\xc8\x4b\x85\x31\x2a\xe8\x3b\xac\xd5\xb1\xb7\x9e\x1b\x7a\x7d\x1a\xc2\x5c\xc5\xf9\xd5\x7f\xc0\x2d\xf7\x5e\x87\xf0\xf1\xec\xf6\xb7\x37\x25\x7c\x19\x03\x00\x10\x84\x02\x0a\x59\xac\xeb\xd4\xc7\x5e\xd7\xf6\x91\x45\x78\xf7\x89\x6d\x4f\x25\x0c\x1e\x52\x2f\xce\xc0\x39\x5a\x52\x08\x91\xf5\x85\xdb\x86\x04\x46\x70\x06\xa8\x3a\x65\xc1\x15\x55\x8b\x13\xc4\xdd\x20\x97\x58\x4d\xb9\xa1\x58\x20\x99\x5d\x87\xef\x6d\x34\x33\x84\x3f\x3f\xdf\x02\x09\x2a\xcb\x04\x03\x2e\x5c\xeb\xf4\x30\x4f\xe0\x33\xd4\x75\x79\xd1\x12\x63\x3c\x86\x80\xde\xd5\xb6\x98\x70\xdf\x36\xe0\x59\x21\x29\x00\xa1\x25\x09\xf9\x9a\x40\x19\xba\xc4\x91\xb4\xc3\xfa\xc4\x5f\x94\xe6\x97\xaf\x2e\xdf\xf3\x28\xb7\x79\x36\x95\x0b\xbd\xec\x39\xe5\xf2\xdf\x15\x2b\xc7\xa9\xe2\x83\xa6\xb4\x7b\xe7\x0d\xf9\xce\xfe\x5c\x23\xe5\xe4\xe5\x68\x8e\xe6\x3b\x00\x00\xff\xff\x4a\x7f\x70\x48\xeb\x01\x00\x00" func stakingproxyStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -6060,11 +6080,11 @@ func stakingproxyStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd8, 0xf5, 0xa3, 0x7d, 0x2b, 0xd5, 0x34, 0x68, 0x9, 0xf5, 0x8c, 0xe, 0x3c, 0x2a, 0x21, 0xf4, 0x5c, 0x52, 0x32, 0x7, 0x34, 0x9e, 0xa7, 0x2d, 0x55, 0x9, 0x63, 0x5d, 0x22, 0xc2, 0x25, 0xd0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0xfa, 0xc3, 0x3c, 0x9f, 0xf3, 0x8a, 0x9a, 0xdc, 0x74, 0xf7, 0x2b, 0x88, 0xd7, 0x95, 0xad, 0x57, 0x4c, 0x88, 0xe3, 0xa3, 0x8b, 0x57, 0x16, 0x99, 0xaa, 0xf0, 0x72, 0xcb, 0x5b, 0x7a, 0x23}} return a, nil } -var _stakingproxyStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6b\xf2\x40\x10\xc7\xef\xfb\x29\xe6\xf1\xf0\x90\x40\x91\x1e\x4a\x0f\x52\x2b\x41\xfb\x22\x05\x0d\x46\xa1\x3d\x8e\xc9\xa8\x8b\x71\x67\x99\x8c\x54\x29\x7e\xf7\x12\x37\xd5\x94\xce\x65\x98\xdd\x79\xf9\xfd\xff\x76\xe7\x59\x14\x32\xc5\xad\x75\xeb\x54\xf8\x70\x84\x95\xf0\x0e\x6e\x0f\xd9\x3c\x79\x1b\x4f\x5e\xd2\xd9\xf4\xfd\x23\x19\x8d\x66\x4f\x59\x66\x8c\x0a\xba\x0a\x73\xb5\xec\x22\xc7\x05\x8d\x47\x3d\xc8\x54\xac\x5b\xdf\x00\xee\x78\xef\xb4\x07\x8b\x67\x7b\xb8\xbf\x8b\xe1\xcb\x18\x00\x00\x2f\xe4\x51\x28\xc2\x3c\x0f\xff\xc9\x5e\x37\x49\x28\xea\x26\x68\xa2\x24\x05\x5f\x03\xbc\x72\x59\x90\x40\x1f\x9a\x89\xee\x92\x45\xf8\xf3\xe1\x7f\x9b\xb2\x3b\xe1\x82\xea\x07\x92\xf4\x3a\xf4\x18\xd5\xf0\x3d\xf8\xd3\x39\xf5\x24\xa8\x2c\x43\xf4\xb8\xb4\xa5\xd5\x63\xa6\x2c\xb8\xa6\x14\x75\x13\x5f\x18\xea\x18\x0c\xc0\xa3\xb3\x79\xd4\x19\xf2\xbe\x2c\xc0\xb1\x42\x20\x00\xa1\x15\x09\xb9\x9c\x40\x19\xaa\x70\x23\x30\xc3\xe6\x7c\xbf\x13\x9b\x5f\x7a\xaa\xb6\xaf\xfd\xb6\xbc\x46\x54\x1b\xf4\x62\x68\xc8\xf1\xbf\xeb\xae\xf6\x9e\x6e\x5d\xd0\xc2\x9d\x53\x31\xe7\x2d\xb9\x2a\xfa\xf1\x3e\xe4\x20\xe8\x64\x4e\xe6\x3b\x00\x00\xff\xff\x77\xae\x51\x52\xe0\x01\x00\x00" +var _stakingproxyStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\xcd\x4e\x02\x41\x0c\xbe\xcf\x53\xd4\x3d\x90\xd9\xc4\xec\xc9\x78\x20\x22\x51\x8c\xd1\x8b\x92\x20\xde\xcb\x6e\x81\x09\xcb\x74\xd2\xed\x46\x88\xe1\xdd\xcd\x30\x08\x63\xec\xe5\xcb\xb6\xdb\xef\xa7\xe3\xb6\x81\x45\x61\xa6\xb8\x71\x7e\x35\x15\xde\xed\x61\x29\xbc\x85\x22\x6f\x15\xc6\xa8\xa0\xef\xb0\x56\xc7\xde\x7a\x6e\xe8\xf5\x69\x08\x33\x15\xe7\x57\xd7\x80\x5b\xee\xbd\x0e\x61\xfe\xec\x76\xb7\x37\x25\x7c\x1b\x03\x00\x10\x84\x02\x0a\x59\xac\xeb\x34\xc7\x5e\xd7\xf6\x91\x45\xf8\xeb\x13\xdb\x9e\x4a\x18\x3c\xa4\x59\xdc\x81\x53\xb5\xa4\x10\xa2\xea\x0b\xb7\x0d\x09\x8c\xe0\x44\x50\x75\xca\x82\x2b\xaa\x16\x47\x8a\xbb\x41\x6e\xb1\x7a\xe3\x86\x62\x83\x64\x7a\x59\xbe\xb7\x31\xcc\x10\xfe\xfd\xf9\x1e\x48\x50\x59\x26\x18\x70\xe1\x5a\xa7\xfb\x59\x22\x9f\xa2\xae\xcb\xb3\x97\x58\xe3\x31\x04\xf4\xae\xb6\xc5\x84\xfb\xb6\x01\xcf\x0a\xc9\x01\x08\x2d\x49\xc8\xd7\x04\xca\xd0\x25\x8d\xe4\x1d\xd6\x47\xfd\xa2\x34\x7f\x72\x75\xf9\x9d\x47\x79\xcc\x53\xa8\xdc\xe8\xf9\xce\x09\xcb\xab\x0b\x57\xce\x53\xc5\x0f\x9a\xfb\x23\x34\x1f\xbc\x21\xdf\xd9\xdf\x27\x49\x98\x02\x1d\xcc\xc1\xfc\x04\x00\x00\xff\xff\x6e\x84\xf8\xb2\xf0\x01\x00\x00" func stakingproxyStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -6080,11 +6100,11 @@ func stakingproxyStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0x15, 0xbf, 0xec, 0x2c, 0xa1, 0xf, 0x8f, 0x26, 0xb9, 0x7f, 0x27, 0xf9, 0xf2, 0x13, 0xbe, 0xa, 0x44, 0x5f, 0x7f, 0x6b, 0x19, 0x18, 0xb2, 0xf7, 0x7, 0x6e, 0x41, 0x39, 0xf2, 0x8e, 0xf9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0x53, 0x74, 0x5, 0xf2, 0x15, 0x8f, 0x8f, 0x44, 0xd1, 0xb7, 0x61, 0x2e, 0x6d, 0xbc, 0x17, 0x94, 0x6b, 0xb1, 0x72, 0x8e, 0xed, 0xab, 0x61, 0x43, 0x74, 0x96, 0x45, 0x94, 0xd4, 0xa8, 0xce}} return a, nil } -var _stakingproxyUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x41\x6b\xfb\x30\x0c\xc5\xef\xfe\x14\xfa\xf7\xf0\x27\xb9\x94\x9d\xcb\xba\x12\xda\xb1\x95\x41\x1b\xea\x1d\xb6\xa3\x9b\xa8\x89\x99\x6b\x19\x45\x61\x2d\xa3\xdf\x7d\x78\x0e\x6d\xc6\x74\x31\x32\x92\xde\xef\x3d\x7b\x0c\xc4\x02\x5a\xcc\x87\xf5\x4d\xc9\x74\x3a\xc3\x81\xe9\x08\x77\x27\xfd\x5a\xbc\xac\x37\x4f\xe5\x6e\xfb\xf6\x5e\xac\x56\xbb\x47\xad\x95\x12\x36\xbe\x33\x95\x58\xf2\x99\xa7\x1a\xd7\xab\x19\x68\x61\xeb\x9b\x1c\xbe\x94\x02\x00\x08\x8c\xc1\x30\x66\xa6\xaa\xa8\xf7\x32\x83\xa2\x97\xb6\x48\x4d\x1c\x82\xa1\x1c\x0a\x84\x28\xf8\x4c\xae\x46\x86\x39\x0c\x1b\xd3\x3d\x31\xd3\xe7\xfd\xff\x31\xd5\x74\x43\x35\xc6\x0f\xe4\xf2\xb6\xf4\x90\x45\xd8\x19\xfc\x99\xdc\x06\x64\x23\xc4\x4b\x13\xcc\xde\x3a\x2b\x67\x2d\xc4\xa6\xc1\xd2\x48\x9b\x5f\x19\x62\x2d\x16\x10\x8c\xb7\x55\x36\x59\x52\xef\x6a\xf0\x24\x90\x08\x80\xf1\x80\x8c\xbe\x42\x10\x82\x2e\x69\x24\x66\x68\x7f\xf4\x27\xb9\xfa\xe5\xa7\x1b\xe7\x38\x1f\xdb\x1b\x4c\x8d\x41\xaf\x01\xa6\x37\xff\x77\xbb\x35\xbe\x33\xed\x7d\x6c\xb1\x70\x2e\x4b\xe4\x17\x75\x51\xdf\x01\x00\x00\xff\xff\x44\x15\xbb\x2b\xb9\x01\x00\x00" +var _stakingproxyUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\xc1\x6e\xfa\x30\x0c\xc6\xef\x79\x0a\xff\x7b\x40\xe9\xa5\x0f\x80\xfe\x0c\x31\x76\xd8\x2e\x1b\x12\xd2\xee\xa6\x35\x6d\xb4\x10\x47\xae\xab\x0d\x4d\xbc\xfb\x14\x52\x41\xa6\xf9\x12\xc5\x89\xbf\xef\xf7\xd9\x9d\x22\x8b\xc2\x5e\xf1\xc3\x85\x7e\x27\xfc\x75\x86\xa3\xf0\x09\xaa\xb2\x55\x19\xa3\x82\x61\xc4\x56\x1d\x07\x1b\xb8\xa3\x97\xa7\x25\xec\x55\x5c\xe8\x6b\xf8\x36\x06\x00\x20\x0a\x45\x14\xb2\xd8\xb6\x3c\x05\x5d\x02\x4e\x3a\xd8\x47\x16\xe1\xcf\x77\xf4\x13\xd5\xb0\xd8\xe4\xb7\x34\x03\x73\x79\x52\x88\xc9\xe5\x99\x7d\x47\x02\x2b\x98\x05\x9a\x51\x59\xb0\xa7\xe6\x70\x95\xf8\xbf\x28\x91\x9a\x57\xee\x28\x35\x48\x76\xf7\xe1\x07\x9b\xe0\x97\xf0\xe7\xe7\x5b\x24\x41\x65\xd9\x62\xc4\x83\xf3\x4e\xcf\xfb\x2c\xbe\x43\x1d\xea\x1b\x4b\xaa\xf5\x1a\x22\x06\xd7\xda\x6a\xcb\x93\xef\x20\xb0\x42\x26\x00\xa1\x23\x09\x85\x96\x40\x19\xc6\xec\x91\xd9\x61\xb8\xfa\x57\xb5\xf9\x95\x6b\x2c\xf7\xba\x2a\x63\xce\xa1\x4a\xd0\xdb\x5e\xf3\x59\xff\xbb\x6b\x95\x3a\xcd\x14\xd2\x95\x36\xde\xdb\x4c\x7e\x31\x17\xf3\x13\x00\x00\xff\xff\xdd\x2c\x7a\xf3\xc9\x01\x00\x00" func stakingproxyUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -6100,11 +6120,11 @@ func stakingproxyUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4e, 0x22, 0xbf, 0xdd, 0x5d, 0x32, 0xc7, 0xd6, 0xbb, 0x36, 0xf6, 0xe, 0xd0, 0x40, 0xd0, 0xa2, 0x2c, 0x84, 0x49, 0xdd, 0x16, 0xbf, 0x84, 0xa3, 0xa0, 0xb1, 0x4a, 0xc8, 0x33, 0x23, 0xef, 0xa9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0x90, 0x5b, 0x1f, 0x96, 0x97, 0xc4, 0x6a, 0x9, 0x69, 0x0, 0xc3, 0xb0, 0x20, 0x88, 0x83, 0xe, 0xb1, 0xf7, 0x4e, 0x33, 0xd9, 0x1b, 0x7, 0xc3, 0xad, 0xf5, 0xd0, 0x72, 0x2b, 0xc8, 0xf1}} return a, nil } -var _stakingproxyWithdraw_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x5d\x6b\xea\x40\x10\x86\xef\xf3\x2b\xe6\x78\x71\x48\xe0\x20\xe7\xa2\xf4\x42\x6a\x25\x68\x3f\xa4\xa0\xc1\x58\x68\x2f\xc7\xec\x68\x16\xe3\xce\x32\x19\x89\x52\xfc\xef\x25\x5d\xab\x29\x9d\x9b\x61\x77\xbe\x9e\xf7\xb5\x3b\xcf\xa2\x90\x2b\x6e\xad\xdb\x64\xc2\x87\x23\xac\x85\x77\xf0\xff\x90\x2f\xd3\x97\xe9\xec\x29\x5b\xcc\xdf\xde\xd3\xc9\x64\xf1\x90\xe7\x51\xa4\x82\xae\xc6\x42\x2d\xbb\xd8\xb1\xa1\xe9\x64\x00\xb9\x8a\x75\x9b\x7f\x80\x3b\xde\x3b\x1d\xc0\xeb\xa3\x3d\xdc\xde\x24\xf0\x11\x45\x00\x00\x5e\xc8\xa3\x50\x8c\x45\x11\xea\xe9\x5e\xcb\x34\x3c\xda\x26\x38\x47\x45\x0a\xbe\x05\x78\xe6\xca\x90\xc0\x10\xce\x13\xfd\x15\x8b\x70\x73\xf7\xb7\x4b\xd9\x9f\xb1\xa1\xf6\x83\x24\xbb\x0e\xdd\xc7\x2d\xfc\x00\x7e\x75\xce\x3d\x09\x2a\xcb\x18\x3d\xae\x6c\x65\xf5\x98\x2b\x0b\x6e\x28\x43\x2d\x93\x0b\x43\x1b\xa3\x11\x78\x74\xb6\x88\x7b\x63\xde\x57\x06\x1c\x2b\x04\x02\x10\x5a\x93\x90\x2b\x08\x94\xa1\x0e\x37\x02\x33\x94\x5f\xf7\x7b\x49\xf4\x43\x4f\xdd\xf5\x75\xd8\x95\x77\x16\xd5\x05\xbd\x18\x1a\x72\xf2\xe7\xba\xab\xbb\xa7\xdf\x58\x2d\x8d\x60\xb3\xa0\x06\xc5\x90\x59\xf2\x96\x5c\x1d\x7f\xdb\x1f\x72\xd0\x74\x8a\x4e\xd1\x67\x00\x00\x00\xff\xff\x3f\x35\x0b\xc5\xe3\x01\x00\x00" +var _stakingproxyWithdraw_rewardsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x41\x4f\xf3\x30\x0c\x86\xef\xf9\x15\xfe\x7a\x98\x5a\xe9\x53\x4f\x88\xc3\xc4\x98\x60\x08\xc1\x05\x26\x06\xdc\xbd\xc6\x5b\xa3\x75\x71\xe4\xba\xea\x26\xb4\xff\x8e\xba\x8c\x2d\x08\x5f\x2c\xd9\xf1\xeb\xf7\x71\xdc\x36\xb0\x28\x2c\x14\x37\xce\xaf\xe7\xc2\xbb\x3d\xac\x84\xb7\x90\xa5\xa5\xcc\x18\x15\xf4\x2d\x56\xea\xd8\xe7\x9e\x2d\x3d\x3f\x8c\x61\xa1\xe2\xfc\xfa\x3f\xe0\x96\x3b\xaf\x63\xf8\x78\x74\xbb\xeb\xab\x02\xbe\x8c\x01\x00\x08\x42\x01\x85\x72\xac\xaa\xd8\xc7\x4e\xeb\xfc\x9e\x45\xb8\xff\xc4\xa6\xa3\x02\x46\x77\xb1\x37\xcc\xc0\x29\x1a\x52\x08\xc3\xd6\x27\x6e\x2c\x09\x4c\xe0\x24\x50\xb6\xca\x82\x6b\x2a\x97\x47\x89\x9b\x51\x6a\xb1\x7c\x61\x4b\x43\x81\x64\x7e\x19\xbe\xcd\x07\x98\x31\xfc\x79\xf9\x1a\x48\x50\x59\x66\x18\x70\xe9\x1a\xa7\xfb\x45\x14\x9f\xa3\xd6\xc5\xd9\xcb\x10\xd3\x29\x04\xf4\xae\xca\xb3\x19\x77\x8d\x05\xcf\x0a\xd1\x01\x08\xad\x48\xc8\x57\x04\xca\xd0\xc6\x1d\xd1\x3b\xd4\xc7\xfd\x59\x61\x7e\x71\xb5\xe9\x9d\x27\x29\xe6\x09\x2a\x35\x7a\xbe\x73\xcc\xc5\xbf\x8b\x56\xaa\x53\xf6\x4e\x6b\x2b\xd8\xbf\x51\x8f\x62\xc9\xbe\xf3\x86\x7c\x9b\xff\xfc\x4a\xcc\x91\xe9\x60\x0e\xe6\x3b\x00\x00\xff\xff\x44\x7a\x9d\x16\xf3\x01\x00\x00" func stakingproxyWithdraw_rewardsCdcBytes() ([]byte, error) { return bindataRead( @@ -6120,11 +6140,11 @@ func stakingproxyWithdraw_rewardsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/withdraw_rewards.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe5, 0xb1, 0xc7, 0x2c, 0xab, 0x3c, 0x5b, 0xe5, 0xb1, 0xa4, 0x2e, 0xb, 0x7, 0xa6, 0x21, 0xff, 0x71, 0x28, 0x8f, 0x68, 0xb5, 0x96, 0x7, 0xf5, 0x2e, 0x1c, 0xf5, 0xc2, 0xcf, 0x22, 0xdb, 0xd3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xac, 0x67, 0xcd, 0x39, 0x60, 0x24, 0xa6, 0xba, 0xe0, 0x8a, 0xb5, 0x4e, 0x33, 0x37, 0x28, 0xc9, 0xc3, 0xda, 0x33, 0x76, 0x7b, 0xa, 0x4e, 0xd6, 0x9e, 0xc7, 0x9b, 0x7e, 0x8e, 0x7b, 0x77, 0x87}} return a, nil } -var _stakingproxyWithdraw_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\x4d\x6b\xf2\x40\x10\xc7\xef\xfb\x29\xe6\xf1\xf0\x90\x40\x91\x1e\x4a\x0f\x52\x2b\x41\xfb\x22\x05\x0d\x46\xa1\x3d\x8e\xc9\x68\x16\xe3\xce\x32\x19\x51\x29\x7e\xf7\x92\xae\xd5\x94\xce\x65\xd8\xd9\x79\xf9\xfd\xff\x76\xeb\x59\x14\x32\xc5\x8d\x75\xeb\x54\xf8\x70\x84\x95\xf0\x16\x6e\x0f\xd9\x3c\x79\x1b\x4f\x5e\xd2\xd9\xf4\xfd\x23\x19\x8d\x66\x4f\x59\x66\x8c\x0a\xba\x1a\x73\xb5\xec\x22\xc7\x05\x8d\x47\x3d\xc8\x54\xac\x5b\xdf\x00\x6e\x79\xe7\xb4\x07\x8b\x67\x7b\xb8\xbf\x8b\xe1\xd3\x18\x00\x00\x2f\xe4\x51\x28\xc2\x3c\x0f\xff\xc9\x4e\xcb\x24\x3c\x9a\x26\x38\x47\x45\x0a\xbe\x01\x78\xe5\xaa\x20\x81\x3e\x9c\x27\xba\x4b\x16\xe1\xfd\xc3\xff\x36\x65\x77\xc2\x05\x35\x05\x92\xf4\x3a\xf4\x18\x35\xf0\x3d\xf8\xd3\x39\xf5\x24\xa8\x2c\x43\xf4\xb8\xb4\x95\xd5\x63\xa6\x2c\xb8\xa6\x14\xb5\x8c\x2f\x0c\x4d\x0c\x06\xe0\xd1\xd9\x3c\xea\x0c\x79\x57\x15\xe0\x58\x21\x10\x80\xd0\x8a\x84\x5c\x4e\xa0\x0c\x75\xb8\x11\x98\xa1\xfc\xbe\xdf\x89\xcd\x2f\x3d\x75\xdb\xd7\x7e\x5b\xde\x59\x54\x1b\xf4\x62\x68\xc8\xf1\xbf\xeb\xae\xf6\x9e\xee\xde\x6a\x59\x08\xee\x17\xae\x29\x53\x31\xe7\x0d\xb9\x3a\xfa\xb1\x3f\xe4\xa0\xe9\x64\x4e\xe6\x2b\x00\x00\xff\xff\x10\x01\xbb\xeb\xe3\x01\x00\x00" +var _stakingproxyWithdraw_unstakedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x51\x4d\x6b\xf2\x40\x10\xbe\xef\xaf\x98\x37\x07\x49\xe0\x25\xa7\xd2\x83\xd4\x4a\x6b\x29\xed\xa5\x15\xac\xbd\x8f\xc9\x68\x16\xe3\xce\x32\x99\xa0\x52\xfc\xef\x65\xdd\x54\xb7\x74\x2e\x03\xcf\xec\x3c\x1f\xb3\x76\xe7\x59\x14\x16\x8a\x5b\xeb\x36\x73\xe1\xc3\x11\xd6\xc2\x3b\xc8\x52\x28\x33\x46\x05\x5d\x87\x95\x5a\x76\xb9\xe3\x9a\x5e\x9f\xc6\xb0\x50\xb1\x6e\xf3\x1f\x70\xc7\xbd\xd3\x31\x2c\x9f\xed\xe1\xf6\xa6\x80\x2f\x63\x00\x00\xbc\x90\x47\xa1\x1c\xab\x2a\xce\xb1\xd7\x26\x7f\x64\x11\xde\x7f\x62\xdb\x53\x01\xa3\x87\x38\x0b\x3b\x30\x54\x4b\x0a\x3e\xa8\xbe\x70\x5b\x93\xc0\x04\x06\x82\xb2\x53\x16\xdc\x50\xb9\x3a\x53\xdc\x8d\x52\x8b\xe5\x1b\xd7\x14\x00\x92\xf9\x75\xf9\x3e\x0f\x61\xc6\xf0\xe7\xe5\xbb\x27\x41\x65\x99\xa1\xc7\x95\x6d\xad\x1e\x17\x91\x7c\x8e\xda\x14\x17\x2f\xa1\xa6\x53\xf0\xe8\x6c\x95\x67\x33\xee\xdb\x1a\x1c\x2b\x44\x07\x20\xb4\x26\x21\x57\x11\x28\x43\x17\x35\xa2\x77\x68\xce\xfa\x59\x61\x7e\xe5\xea\xd2\x3b\x4f\xd2\x98\x43\xa8\xd4\xe8\xe5\xce\xb1\x17\xff\xae\x5c\x29\x4f\xb9\xb7\xda\xd4\x82\xfb\xa5\x0b\x30\xd5\x1f\xbc\x25\xd7\xe5\x3f\xbf\x12\x7b\xcc\x74\x32\x27\xf3\x1d\x00\x00\xff\xff\x6b\x4e\x2d\x38\xf3\x01\x00\x00" func stakingproxyWithdraw_unstakedCdcBytes() ([]byte, error) { return bindataRead( @@ -6140,11 +6160,11 @@ func stakingproxyWithdraw_unstakedCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/withdraw_unstaked.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe2, 0xf, 0x29, 0xf5, 0x62, 0x4a, 0xb5, 0x57, 0xd8, 0x30, 0x56, 0xc8, 0xbd, 0xe9, 0x8c, 0x9d, 0x40, 0x3, 0xa3, 0x63, 0xca, 0xca, 0x56, 0x54, 0x8d, 0x6c, 0x8c, 0x8b, 0x40, 0x53, 0xa1, 0xe3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb2, 0x72, 0x63, 0xb9, 0x44, 0x4, 0x84, 0x7a, 0xbd, 0x19, 0x88, 0x23, 0x78, 0x77, 0xb6, 0xf0, 0xfe, 0x8a, 0x5c, 0xf2, 0x6f, 0xa2, 0xf, 0xda, 0xdb, 0xb1, 0x89, 0x1c, 0x19, 0xb5, 0x56, 0x95}} return a, nil } -var _storagefeesAdminSet_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6f\xd3\x40\x10\xc5\xef\xfe\x14\xaf\x3d\x20\x57\x42\x31\x07\xc4\x21\xa2\x44\x86\xc6\x5c\xa8\x8a\xe2\x22\xce\xdb\xcd\x38\x5e\x64\xef\x5a\xb3\x63\x12\x84\xfc\xdd\xd1\xfa\x4f\x70\x09\x89\xba\x87\xe4\xe0\xf7\xde\xfc\xde\xce\x9a\xba\x71\x2c\xc8\x2a\xb7\xcf\xc5\xb1\xda\x51\x46\xe4\x51\xb0\xab\xf1\xe6\x90\x7d\x79\xf8\x9e\x3f\x3e\x6c\xd2\xcf\xeb\x6c\xbd\xce\xd3\xbb\xbb\xcd\x3a\xcf\xa3\x28\x49\xf0\x58\x1a\x0f\x61\x65\xbd\xd2\x62\x9c\x85\x2e\x95\xdd\x91\x87\x94\x84\xa2\x72\x7b\xf8\x21\x0f\x45\x08\x6c\x14\xab\x9a\x84\xd8\x47\x33\x53\x3c\x6a\x3e\xfe\x12\xf2\x5f\x89\x37\xe4\x89\x7f\xd2\x36\xcc\x5d\xe2\x5b\x66\x0e\xef\xde\xae\x5e\xa3\x36\xd6\xd4\x6d\x3d\x02\x0e\x22\x15\xfc\x47\xcd\x0d\x7e\x47\x00\xd0\xff\x54\x24\x50\xdb\xda\xd8\x0d\x15\x4b\xbc\xfa\xa7\xdb\x22\x0d\x9f\x8c\x17\x56\xe2\x38\xea\x1d\x0d\x53\xa3\x98\x62\xa5\xb5\x2c\x91\xb6\x52\xa6\x5a\xbb\xd6\xca\x94\x1b\x4e\x92\xe0\xc9\x31\xbb\x3d\x14\x98\x0a\x62\xb2\x9a\x20\xae\x6f\xdc\xcf\x83\x7b\xfa\x41\x5a\x8e\x0e\x4f\x55\xb1\x98\x48\x70\x8b\x10\xbf\x18\x32\xde\x5f\xc6\xfa\x10\x87\x0d\x2c\x91\x8c\x17\x34\xfd\x07\x65\x2f\xbc\x39\x0e\x09\x67\xb5\x42\xa3\xac\xd1\xf1\xf5\x27\xd7\x56\x5b\x58\x27\x13\xeb\x33\xd2\x67\x2b\xe9\xc1\xae\x87\xa0\x6e\xb8\x07\x3a\x90\x6e\x85\x66\xa5\x4d\x81\x0b\x3b\xc2\xd5\x2d\xac\xa9\x66\xfa\x93\xda\x0b\x4f\x32\xd6\xbc\xa7\x9d\xfa\x5f\xca\xa5\x57\x70\xf5\xb7\x68\x37\x87\x3a\xfb\x24\x5e\x88\x74\x7f\xce\x1f\x9f\x4d\x3e\x41\xe9\xa2\xee\x4f\x00\x00\x00\xff\xff\xec\x9d\x5e\x73\x3f\x03\x00\x00" +var _storagefeesAdminSet_parametersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6b\xdb\x40\x10\xc5\xef\xfa\x14\x2f\x3e\x04\x19\x8a\x74\x29\x3d\x98\xa6\x26\x29\xe8\xd4\xd0\x92\xfe\x3b\x4f\xd6\x23\x6b\x8b\xb4\x2b\x66\x47\x75\x4a\xd1\x77\x2f\xab\x3f\xae\x12\xd7\xa6\x7b\x90\x40\x7a\xef\xcd\x6f\x66\xd6\x36\xad\x17\x45\x51\xfb\xc3\x67\xf5\x42\x7b\x2e\x98\x03\x4a\xf1\x0d\x56\x2f\xbe\xae\x92\x24\xcf\xf1\xa5\xb2\x01\x2a\xe4\x02\x19\xb5\xde\xc1\x54\xe4\xf6\x1c\xa0\x15\xa3\xac\xfd\x01\x61\xb4\xa0\x8c\x49\x2d\x09\x35\xac\x2c\x21\x59\x98\xd2\x49\x73\xf7\x4b\x39\x7c\x62\x79\xe0\xc0\xf2\x93\x77\xc5\x87\x8f\xdf\x37\xf8\x5a\xd8\xa7\x37\xaf\xb7\xaf\xd0\x58\x67\x9b\xae\x99\x18\x46\x11\x45\xff\x51\xb3\xc6\xef\x04\x00\x86\x47\xcd\x0a\xda\x35\xd6\x3d\x70\xb9\xc1\xf5\x0b\xfc\xec\x36\xfe\xb2\x41\x85\xd4\x4b\x32\x38\x5a\xe1\x96\x84\x53\x32\x46\x37\xa0\x4e\xab\xf4\xce\x8b\xf8\xc3\x37\xaa\x3b\x5e\xe3\xfa\xd6\x18\xdf\x39\x9d\xcb\xc4\x93\xe7\x78\x1c\x34\x20\x08\x97\x2c\xec\x0c\x43\xfd\x30\x80\xa1\x3c\xfc\xe3\x0f\x36\x7a\x74\x04\xae\xcb\x6c\x06\xc3\x0d\x62\xb5\x6c\x9a\x40\x36\x66\xbd\xbd\x4c\xfb\x2e\x8d\x1b\xd9\x20\x9f\x5c\xf3\x3b\x2a\x07\xe1\xfa\x58\x2c\x9e\xed\x16\x2d\x39\x6b\xd2\xd5\x7b\xdf\xd5\x3b\x38\xaf\x33\xf3\x33\xe2\x67\x9b\x1a\x00\x57\x63\x50\x3f\x8e\x87\x9f\xd8\x74\xca\x8b\xe6\x6d\x89\x0b\xab\xc3\xd5\x0d\x9c\xad\x17\xfa\x93\xf6\xb3\xc0\x3a\xb5\x79\xcf\x7b\xfa\x57\xca\xa5\xcb\x71\xf5\xb7\xd1\x7e\x09\x75\xf6\xa6\xfc\x27\xd2\xfd\x39\x7f\x7a\x36\xf9\x04\xa5\x4f\xfa\x3f\x01\x00\x00\xff\xff\x05\xa9\x75\x7a\x4f\x03\x00\x00" func storagefeesAdminSet_parametersCdcBytes() ([]byte, error) { return bindataRead( @@ -6160,11 +6180,11 @@ func storagefeesAdminSet_parametersCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/admin/set_parameters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa7, 0xa3, 0x32, 0x6, 0x3f, 0x4f, 0xeb, 0xc7, 0xce, 0x3b, 0x61, 0xd9, 0x69, 0x36, 0x97, 0xdd, 0xaf, 0xd5, 0xa1, 0x25, 0x5d, 0xda, 0xa7, 0x27, 0x20, 0xcd, 0x26, 0x35, 0xa6, 0xb4, 0x82, 0xd1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6e, 0xd9, 0x32, 0xf5, 0x38, 0x90, 0x33, 0x23, 0xa, 0xeb, 0x8b, 0x76, 0xae, 0x50, 0x25, 0x2e, 0x3c, 0x95, 0x89, 0x31, 0x1, 0xd0, 0xa6, 0x9b, 0x56, 0x9b, 0x20, 0xe1, 0x48, 0x5e, 0xa9, 0x5c}} return a, nil } -var _storagefeesScriptsGet_account_available_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\xb1\x0e\x82\x30\x14\x46\xe1\xbd\x4f\xf1\x8f\xb2\x18\x07\xe3\xc0\x56\x43\xeb\x62\x42\x42\x31\xce\x17\xb8\x98\xc6\xd2\x92\xd2\x2a\x89\xf1\xdd\x5d\x9c\xd8\xce\x74\x3e\x3b\xcd\x21\x26\x68\x17\xde\x26\x85\x48\x0f\xd6\xcc\x0b\xc6\x18\x26\x1c\x56\x7d\xad\xef\xa6\xad\x1b\x79\x51\x5a\x29\x23\xab\xaa\x51\xc6\x08\x31\xe7\x0e\x63\xf6\x98\xc8\xfa\x1d\xf5\x7d\xc8\x3e\xc9\x61\x88\xbc\x2c\x25\xfe\x51\x94\xb8\x69\xbb\x9e\x8e\xf8\x08\x00\x88\x9c\x72\xf4\x5b\x69\x3f\xf0\x48\xd9\xa5\x36\x3c\xd9\xcb\x17\x59\x47\x9d\xe3\x33\x39\xf2\x3d\x6f\xd6\x85\xf8\x0a\xf1\x0b\x00\x00\xff\xff\x79\xc3\x9c\x46\xb1\x00\x00\x00" +var _storagefeesScriptsGet_account_available_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8d\x31\x0e\xc2\x30\x0c\x45\xf7\x9c\xe2\xab\x53\xbb\x30\x21\x86\x6e\x65\xe8\x05\x80\x03\x98\xd4\x45\x11\xae\x8d\x9c\x04\x90\x10\x77\x67\x61\xca\xf6\xf4\x86\xf7\xd2\xf6\x30\x2f\x98\xc5\x5e\xa7\x62\x4e\x37\x9e\x99\x33\x56\xb7\x0d\x5d\x63\xbb\x10\x28\x46\xce\xb9\x27\x91\x01\x6b\x55\x6c\x94\xb4\xa7\x18\xad\x6a\x99\x96\xc5\x39\xe7\x11\x7f\x18\x46\x5c\xe6\xf4\x3e\xec\xf1\x09\x00\xe0\x5c\xaa\x6b\xbb\xda\x2d\xbc\x52\x95\x72\xb6\x3b\xeb\xf4\xa4\x24\x74\x15\x3e\x92\x90\x46\x6e\xd2\x43\xf8\x86\xf0\x0b\x00\x00\xff\xff\xee\x68\x60\x24\xb2\x00\x00\x00" func storagefeesScriptsGet_account_available_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -6180,11 +6200,11 @@ func storagefeesScriptsGet_account_available_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/scripts/get_account_available_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0xfd, 0x85, 0x8, 0x30, 0x9, 0x65, 0xb6, 0x3a, 0x50, 0x6, 0x71, 0x64, 0x59, 0xeb, 0x4d, 0xb0, 0x14, 0xfb, 0xae, 0xc5, 0xa0, 0x16, 0xaa, 0x51, 0xa, 0x9a, 0x9d, 0x98, 0x6e, 0xb0, 0x97}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x32, 0x50, 0xda, 0x76, 0x6e, 0x91, 0xb, 0x23, 0x25, 0x39, 0x44, 0xac, 0xdf, 0x2c, 0xbb, 0xea, 0x83, 0xa1, 0xba, 0xc6, 0x85, 0x46, 0x4d, 0xac, 0x95, 0xe4, 0x42, 0xdd, 0x66, 0xb6, 0x86, 0xba}} return a, nil } -var _storagefeesScriptsGet_accounts_capacity_for_transaction_storage_checkCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\x41\x6b\x02\x31\x10\x85\xef\xfb\x2b\xde\x51\x61\x29\x3d\x94\x1e\xf6\xb6\xe8\xa6\x97\x82\x60\xb6\xf4\x20\x1e\xa6\x71\xb4\xa1\xdd\x64\x99\x24\x34\x52\xfa\xdf\x8b\x1a\x44\xd6\x5c\xf2\xf8\x78\xcc\xfb\xec\x30\x7a\x89\x50\xdf\xfe\x47\x47\x2f\x74\x60\xc5\x1c\xb0\x17\x3f\xe0\x31\xab\xd7\xd5\xbb\xee\x57\xeb\xf6\xa5\x53\x5d\xa7\xdb\xe5\x72\xdd\x69\x5d\x55\x63\xfa\xc0\x3e\x39\x0c\x64\xdd\x8c\x8c\xf1\xc9\xc5\x76\xb7\x13\x0e\x81\x43\x83\x4d\xc9\xdb\x1a\x23\x1d\x59\x1a\x14\x50\x63\xa0\xdc\xe7\xd3\x44\x83\x37\x65\xf3\xf3\xd3\xbc\xc1\xe6\x92\xb6\xf8\xad\x00\x40\x38\x26\x71\x53\xa5\x87\x03\xc7\xf6\xb2\x14\x16\x34\x92\xb1\xf1\xa8\xbc\xf4\x42\x2e\x90\x89\xd6\xbb\x52\x5e\x7c\xb2\xf9\x9a\x9d\x2f\x9d\xde\xbd\xdd\x94\xd4\xb8\x96\x8b\xed\xf9\xbb\xc1\x37\xd2\xd7\x38\xaf\xfe\xfe\x03\x00\x00\xff\xff\xbd\x5a\xcf\x11\x3c\x01\x00\x00" +var _storagefeesScriptsGet_accounts_capacity_for_transaction_storage_checkCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\xc1\x6a\xc3\x30\x10\x44\xef\xfa\x8a\x21\x27\x1b\x4c\x4f\xa5\x07\xdd\x42\x40\x3f\xd0\xf4\x14\x72\x58\x94\x4d\x2a\x6a\x49\x66\x57\xa6\x0e\xa5\xff\x5e\x12\x0b\x63\x5c\x5d\x34\x3c\x86\xd9\x17\xe2\x90\xa5\xc0\xf5\xf9\xfb\xbd\x64\xa1\x1b\x3b\x66\xc5\x55\x72\xc4\x6e\x43\x77\xc6\x90\xf7\xac\xda\x50\xdf\xb7\xb8\x8e\x09\x91\x42\x6a\xc8\xfb\x3c\xa6\xb2\xbf\x5c\x84\x55\x59\x2d\x4e\x35\x9f\x3b\x0c\x74\x67\xb1\xa8\xa0\x43\xa4\xe9\x38\x3d\xd6\x2c\x3e\x5c\x98\xde\x5e\x5b\x8b\xd3\x9c\xce\xf8\x31\x00\x20\x5c\x46\x49\x5b\xa7\x97\x1b\x97\xfd\x7c\x49\x0f\x34\x90\x0f\xe5\xee\xb2\x1c\x85\x92\x92\x2f\x21\xa7\x5a\x3e\x7c\xb2\xff\x6a\x9e\x4b\x8f\xf7\xdf\x6e\x4b\x3a\x2c\xe5\x6a\xfb\xfc\x56\x78\x25\xbd\xc4\xd6\xfc\xfe\x05\x00\x00\xff\xff\x33\xc0\x69\x3d\x3d\x01\x00\x00" func storagefeesScriptsGet_accounts_capacity_for_transaction_storage_checkCdcBytes() ([]byte, error) { return bindataRead( @@ -6200,11 +6220,11 @@ func storagefeesScriptsGet_accounts_capacity_for_transaction_storage_checkCdc() } info := bindataFileInfo{name: "storageFees/scripts/get_accounts_capacity_for_transaction_storage_check.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0x34, 0x74, 0x75, 0xae, 0x8f, 0x8, 0xcb, 0xda, 0x26, 0x6c, 0x8f, 0x86, 0x16, 0xb6, 0x27, 0x87, 0xd8, 0x97, 0xb6, 0x67, 0x1d, 0x1d, 0x3, 0xc4, 0xdb, 0xf1, 0x9a, 0x5f, 0xa8, 0x96, 0x9f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9b, 0xdf, 0x5, 0xd2, 0x29, 0xa8, 0x2a, 0x4b, 0xa1, 0xae, 0xb3, 0x56, 0xc, 0xa9, 0x35, 0x83, 0xaa, 0xa7, 0x33, 0x53, 0x3b, 0xa3, 0x19, 0x1b, 0x71, 0x36, 0xbc, 0x97, 0x1, 0x9, 0x48, 0xcc}} return a, nil } -var _storagefeesScriptsGet_storage_capacityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\xb1\x0a\xc2\x30\x14\x46\xe1\x3d\x4f\xf1\x8f\x76\x11\x07\x71\xe8\x16\x6c\xe2\x22\x14\x1a\xc5\xf9\x9a\xa6\x12\x68\x93\x92\xdc\x60\x45\x7c\x77\x07\x9d\xba\x9d\xe9\x3b\x7e\x9a\x63\x62\xe8\x31\x3e\x0d\xc7\x44\x0f\xa7\x9d\xcb\x18\x52\x9c\xb0\x5b\xf4\xb9\xbd\x99\x4b\xdb\xc9\x93\xd2\x4a\x19\xd9\x34\x9d\x32\x46\x88\xb9\xdc\x31\x94\x80\x89\x7c\xd8\x90\xb5\xb1\x04\x96\x7d\x9f\x5c\xce\x35\xfe\x51\xd5\xb8\x6a\xbf\x1c\xf6\x78\x0b\x00\x48\x8e\x4b\x0a\xeb\xd3\xd6\xd2\x68\xcb\x48\xec\xe4\x8f\x39\xd2\x4c\xd6\xf3\x6b\xc5\x56\xe2\x23\xc4\x37\x00\x00\xff\xff\x28\x3f\x05\x18\xad\x00\x00\x00" +var _storagefeesScriptsGet_storage_capacityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\xbd\xaa\xc2\x40\x10\xc5\xf1\x7e\x9e\xe2\x90\x2a\x69\x6e\x75\xb1\x48\x17\x84\xbc\x80\xf8\x00\xc3\x64\x22\x0b\xfb\x11\x66\x67\x51\x11\xdf\xdd\x42\xab\xed\x0e\xa7\xf8\xfd\x43\x3a\x8a\x39\xd6\x58\xee\x17\x2f\xc6\x37\x5d\x55\x2b\x76\x2b\x09\x43\xf7\x0e\x44\x2c\xa2\xb5\x8e\x1c\xe3\x84\xbd\x65\x24\x0e\x79\x64\x91\xd2\xb2\x2f\xdb\x66\x5a\xeb\x8c\xdf\x98\x66\x5c\xd7\xf0\x38\xfd\xe3\x45\x00\x60\xea\xcd\x72\x9f\xfa\x13\x8e\xd2\x22\xbb\x2e\x5f\xe6\xcc\x07\x4b\xf0\x67\xc7\x4e\xf4\x26\xfa\x04\x00\x00\xff\xff\x8c\x0d\x5c\xd9\xae\x00\x00\x00" func storagefeesScriptsGet_storage_capacityCdcBytes() ([]byte, error) { return bindataRead( @@ -6220,11 +6240,11 @@ func storagefeesScriptsGet_storage_capacityCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/scripts/get_storage_capacity.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1b, 0x18, 0xd9, 0xdf, 0xe2, 0x7a, 0x84, 0x72, 0x8c, 0xe3, 0xb1, 0x8d, 0xfc, 0x60, 0x9a, 0x3b, 0x64, 0xba, 0x43, 0xad, 0xab, 0x45, 0xaa, 0x55, 0xd9, 0x37, 0x6b, 0x76, 0x54, 0x24, 0x1f, 0x95}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x63, 0xd2, 0xf3, 0x9f, 0xea, 0xbb, 0x73, 0x3a, 0x51, 0xc8, 0xd, 0x5e, 0xc2, 0x63, 0x95, 0xa, 0x55, 0x31, 0x8e, 0x32, 0xbd, 0x2f, 0x88, 0xfe, 0xca, 0x12, 0x76, 0xa7, 0x3d, 0x7f, 0x40, 0xa7}} return a, nil } -var _storagefeesScriptsGet_storage_fee_conversionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x2e\xc9\x2f\x4a\x4c\x4f\x75\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x30\xa8\x70\xf3\xf1\x0f\x0f\x0e\xf1\x0f\x72\x74\x77\x75\x73\x75\x0d\x76\x74\x71\x09\x72\x0d\x0e\xe6\xe2\x2a\x28\x4d\x52\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x37\x52\xaf\x18\xc2\xf6\x4d\x4d\x4f\x74\xaa\x2c\x49\x2d\x0e\x48\x2d\x0a\x4a\x2d\x4e\x2d\x2a\x4b\x4d\x01\x59\xc3\x55\xcb\xc5\x05\x08\x00\x00\xff\xff\x26\x69\x66\x9f\x8d\x00\x00\x00" +var _storagefeesScriptsGet_storage_fee_conversionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcc\x2d\xc8\x2f\x2a\x51\x70\xcb\xc9\x2f\x0f\x2e\xc9\x2f\x4a\x4c\x4f\x75\x4b\x4d\x2d\x56\x48\x2b\xca\xcf\x55\x50\x42\x13\x55\xe2\xe2\x4a\x4c\x4e\x4e\x2d\x2e\xd6\x48\xcc\xc9\xd1\x54\x48\x2b\xcd\x53\xc8\x4d\xcc\xcc\xd3\xd0\xb4\x52\x08\x75\xcb\xac\x30\x33\x51\xa8\xe6\x52\x50\x50\x50\x28\x4a\x2d\x29\x2d\xca\x43\x37\x53\xaf\x18\xc2\xf6\x4d\x4d\x4f\x74\xaa\x2c\x49\x2d\x0e\x48\x2d\x0a\x4a\x2d\x4e\x2d\x2a\x4b\x4d\x71\xf3\xf1\x0f\xe7\xaa\xe5\xe2\x02\x04\x00\x00\xff\xff\x0f\x9e\x44\xff\x8e\x00\x00\x00" func storagefeesScriptsGet_storage_fee_conversionCdcBytes() ([]byte, error) { return bindataRead( @@ -6240,11 +6260,11 @@ func storagefeesScriptsGet_storage_fee_conversionCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/scripts/get_storage_fee_conversion.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0x34, 0x70, 0x9c, 0x9c, 0xb7, 0x42, 0x13, 0x80, 0x4a, 0x0, 0x5e, 0x5b, 0x24, 0x1a, 0xee, 0x7d, 0x4e, 0x56, 0x8c, 0x3b, 0x21, 0xe6, 0x9f, 0xf8, 0xaf, 0xb2, 0xe6, 0x4d, 0xda, 0xfa, 0xd7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0x5c, 0x5d, 0x1, 0xde, 0x2a, 0xe5, 0x96, 0x6b, 0x2b, 0x70, 0x3a, 0x9c, 0xae, 0x50, 0x36, 0x4a, 0xea, 0xf2, 0xef, 0x3d, 0xdd, 0xf7, 0xa2, 0x20, 0x5c, 0x52, 0xf6, 0xb7, 0x93, 0x56, 0xb2}} return a, nil } -var _storagefeesScriptsGet_storage_fee_minCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcc\xb1\x0a\xc2\x30\x10\x06\xe0\xfd\x9e\xe2\x1f\x75\x11\x07\x71\x70\x2b\x34\x71\x11\x0a\x89\xe2\x1c\xe1\x2a\x07\x5e\x52\xae\x89\x16\xc4\x77\x77\x71\x72\xfd\x86\x4f\x74\x2a\x56\xe1\x1f\xe5\x15\x6b\xb1\x74\x67\xcf\x3c\x63\xb4\xa2\xd8\x2e\xfe\x34\x5c\xe3\x79\x08\xdd\xd1\x79\xe7\x62\xd7\xf7\xc1\xc5\x48\x34\xb5\x1b\xc6\x96\xa1\x49\xf2\x6a\x7d\xc0\xc5\xcb\xb2\xdf\xe1\x4d\x00\x60\x5c\x9b\xe5\xff\x72\xa3\x92\x45\x9b\xfe\x28\xf0\xcc\xf6\x4c\x55\x4a\xa6\x0f\xd1\x37\x00\x00\xff\xff\x80\x78\xb4\x0e\x87\x00\x00\x00" +var _storagefeesScriptsGet_storage_fee_minCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcc\x31\x0a\x02\x41\x0c\x05\xd0\x3e\xa7\xf8\x6c\xb5\xdb\x58\x89\x85\x07\x98\x03\x28\x1e\x20\x2c\x59\x09\x4c\x12\xc9\xcc\xa8\x20\xde\xdd\xc6\x6a\xdb\x57\x3c\xb5\x47\x64\x47\xa9\xf1\xba\xf6\x48\xbe\x4b\x11\x69\xd8\x32\x0c\xd3\x4e\x27\x22\x5e\x57\x69\x6d\xe6\x5a\x17\x6c\xc3\x61\xac\x3e\x2f\x67\xdc\x8a\xbe\x4f\x47\x7c\x08\x00\x52\xfa\x48\xdf\x9f\x07\x53\x57\x1b\xf6\xa7\x8b\x34\xc9\x27\x77\x0d\xa7\x2f\xd1\x2f\x00\x00\xff\xff\x10\x6e\x9d\x6a\x88\x00\x00\x00" func storagefeesScriptsGet_storage_fee_minCdcBytes() ([]byte, error) { return bindataRead( @@ -6260,7 +6280,7 @@ func storagefeesScriptsGet_storage_fee_minCdc() (*asset, error) { } info := bindataFileInfo{name: "storageFees/scripts/get_storage_fee_min.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0x6d, 0xce, 0x10, 0xa9, 0x56, 0xe9, 0xc8, 0x0, 0xe6, 0x53, 0xcf, 0xc8, 0xb4, 0x52, 0x31, 0x44, 0xca, 0x1e, 0xe7, 0x1d, 0x2e, 0xe0, 0x25, 0xfd, 0xf5, 0x2c, 0x90, 0x3d, 0xbc, 0x7d, 0xeb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x65, 0x59, 0xec, 0xe1, 0xe, 0xc5, 0x8d, 0x9f, 0xd9, 0x60, 0xe4, 0x4e, 0xd0, 0x48, 0x59, 0xf0, 0xe1, 0x96, 0xc1, 0xc, 0xa, 0xd6, 0x95, 0x97, 0xa3, 0x50, 0x4c, 0xd1, 0x1d, 0x13, 0x3f, 0x1a}} return a, nil } @@ -6373,6 +6393,9 @@ var _bindata = map[string]func() (*asset, error){ "FlowServiceAccount/set_is_account_creation_restricted.cdc": flowserviceaccountSet_is_account_creation_restrictedCdc, "FlowServiceAccount/set_tx_fee_parameters.cdc": flowserviceaccountSet_tx_fee_parametersCdc, "FlowServiceAccount/set_tx_fee_surge_factor.cdc": flowserviceaccountSet_tx_fee_surge_factorCdc, + "accounts/add_key.cdc": accountsAdd_keyCdc, + "accounts/create_new_account.cdc": accountsCreate_new_accountCdc, + "accounts/revoke_key.cdc": accountsRevoke_keyCdc, "dkg/admin/force_stop_dkg.cdc": dkgAdminForce_stop_dkgCdc, "dkg/admin/publish_participant.cdc": dkgAdminPublish_participantCdc, "dkg/admin/set_safe_threshold.cdc": dkgAdminSet_safe_thresholdCdc, @@ -6522,7 +6545,6 @@ var _bindata = map[string]func() (*asset, error){ "idTableStaking/scripts/get_total_staked.cdc": idtablestakingScriptsGet_total_stakedCdc, "idTableStaking/scripts/get_total_staked_by_type.cdc": idtablestakingScriptsGet_total_staked_by_typeCdc, "idTableStaking/scripts/get_weekly_payout.cdc": idtablestakingScriptsGet_weekly_payoutCdc, - "inspect_field.cdc": inspect_fieldCdc, "lockedTokens/admin/admin_create_shared_accounts.cdc": lockedtokensAdminAdmin_create_shared_accountsCdc, "lockedTokens/admin/admin_deploy_contract.cdc": lockedtokensAdminAdmin_deploy_contractCdc, "lockedTokens/admin/admin_deposit_account_creator.cdc": lockedtokensAdminAdmin_deposit_account_creatorCdc, @@ -6535,7 +6557,6 @@ var _bindata = map[string]func() (*asset, error){ "lockedTokens/admin/custody_create_shared_accounts.cdc": lockedtokensAdminCustody_create_shared_accountsCdc, "lockedTokens/admin/custody_setup_account_creator.cdc": lockedtokensAdminCustody_setup_account_creatorCdc, "lockedTokens/admin/deposit_locked_tokens.cdc": lockedtokensAdminDeposit_locked_tokensCdc, - "lockedTokens/admin/get_unlocking_bad_accounts.cdc": lockedtokensAdminGet_unlocking_bad_accountsCdc, "lockedTokens/admin/unlock_tokens.cdc": lockedtokensAdminUnlock_tokensCdc, "lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc": lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc, "lockedTokens/delegator/delegate_new_tokens.cdc": lockedtokensDelegatorDelegate_new_tokensCdc, @@ -6659,11 +6680,13 @@ const AssetDebug = false // directory embedded in the file by go-bindata. // For example if you run go-bindata on data/... and data contains the // following hierarchy: -// data/ -// foo.txt -// img/ -// a.png -// b.png +// +// data/ +// foo.txt +// img/ +// a.png +// b.png +// // then AssetDir("data") would return []string{"foo.txt", "img"}, // AssetDir("data/img") would return []string{"a.png", "b.png"}, // AssetDir("foo.txt") and AssetDir("notexist") would return an error, and @@ -6718,6 +6741,11 @@ var _bintree = &bintree{nil, map[string]*bintree{ "set_tx_fee_parameters.cdc": {flowserviceaccountSet_tx_fee_parametersCdc, map[string]*bintree{}}, "set_tx_fee_surge_factor.cdc": {flowserviceaccountSet_tx_fee_surge_factorCdc, map[string]*bintree{}}, }}, + "accounts": {nil, map[string]*bintree{ + "add_key.cdc": {accountsAdd_keyCdc, map[string]*bintree{}}, + "create_new_account.cdc": {accountsCreate_new_accountCdc, map[string]*bintree{}}, + "revoke_key.cdc": {accountsRevoke_keyCdc, map[string]*bintree{}}, + }}, "dkg": {nil, map[string]*bintree{ "admin": {nil, map[string]*bintree{ "force_stop_dkg.cdc": {dkgAdminForce_stop_dkgCdc, map[string]*bintree{}}, @@ -6895,7 +6923,6 @@ var _bintree = &bintree{nil, map[string]*bintree{ "get_weekly_payout.cdc": {idtablestakingScriptsGet_weekly_payoutCdc, map[string]*bintree{}}, }}, }}, - "inspect_field.cdc": {inspect_fieldCdc, map[string]*bintree{}}, "lockedTokens": {nil, map[string]*bintree{ "admin": {nil, map[string]*bintree{ "admin_create_shared_accounts.cdc": {lockedtokensAdminAdmin_create_shared_accountsCdc, map[string]*bintree{}}, @@ -6910,7 +6937,6 @@ var _bintree = &bintree{nil, map[string]*bintree{ "custody_create_shared_accounts.cdc": {lockedtokensAdminCustody_create_shared_accountsCdc, map[string]*bintree{}}, "custody_setup_account_creator.cdc": {lockedtokensAdminCustody_setup_account_creatorCdc, map[string]*bintree{}}, "deposit_locked_tokens.cdc": {lockedtokensAdminDeposit_locked_tokensCdc, map[string]*bintree{}}, - "get_unlocking_bad_accounts.cdc": {lockedtokensAdminGet_unlocking_bad_accountsCdc, map[string]*bintree{}}, "unlock_tokens.cdc": {lockedtokensAdminUnlock_tokensCdc, map[string]*bintree{}}, "unlock_tokens_for_multiple_accounts.cdc": {lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc, map[string]*bintree{}}, }}, @@ -7079,7 +7105,7 @@ func RestoreAsset(dir, name string) error { if err != nil { return err } - err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode()) + err = os.WriteFile(_filePath(dir, name), data, info.Mode()) if err != nil { return err } diff --git a/lib/go/test/flow_epoch_test.go b/lib/go/test/flow_epoch_test.go index cdc7d5bb7..6998ee97c 100644 --- a/lib/go/test/flow_epoch_test.go +++ b/lib/go/test/flow_epoch_test.go @@ -94,7 +94,7 @@ func TestEpochClusters(t *testing.T) { // Deploys the staking contract, qc, dkg, and epoch lifecycle contract // staking contract is deployed with default values (1.25M rewards, 8% cut) - initializeAllEpochContracts(t, b, idTableAccountKey, IDTableSigner, &env, + _, _ = initializeAllEpochContracts(t, b, idTableAccountKey, IDTableSigner, &env, startEpochCounter, // start epoch counter numEpochViews, // num views per epoch numStakingViews, // num views for staking auction @@ -113,7 +113,6 @@ func TestEpochClusters(t *testing.T) { result := executeScriptAndCheck(t, b, templates.GenerateGetRandomizeScript(env), [][]byte{jsoncdc.MustEncode(idArray)}) assertEqual(t, 4, len(result.(cadence.Array).Values)) - // TODO: Make sure that the ids in the array all match the provided IDs and are in a different order }) // create new user accounts, mint tokens for them, and register them for staking @@ -136,7 +135,6 @@ func TestEpochClusters(t *testing.T) { result := executeScriptAndCheck(t, b, templates.GenerateGetCreateClustersScript(env), [][]byte{jsoncdc.MustEncode(idArray)}) assertEqual(t, 2, len(result.(cadence.Array).Values)) - // TODO: Make sure that the clusters are correct and are in a different order than the original array }) } @@ -644,7 +642,7 @@ func TestEpochAdvance(t *testing.T) { assert.Equal(t, cadence.NewBool(true), result) result = executeScriptAndCheck(t, b, templates.GenerateGetConsensusNodesScript(env), nil) - assert.Equal(t, cadence.NewArray(dkgIDs).WithType(cadence.NewVariableSizedArrayType(cadence.NewStringType())), result) + assert.Equal(t, cadence.NewArray(dkgIDs).WithType(cadence.NewVariableSizedArrayType(cadence.StringType)), result) result = executeScriptAndCheck(t, b, templates.GenerateGetDKGFinalSubmissionsScript(env), nil) assert.Equal(t, 0, len(result.(cadence.Array).Values)) @@ -1520,8 +1518,7 @@ func TestEpochReset(t *testing.T) { } func TestEpochRecover(t *testing.T) { - b, _, accountKeys, env := newTestSetup(t) - + b, adapter, accountKeys, env := newTestSetup(t) // Create new keys for the epoch account idTableAccountKey, IDTableSigner := accountKeys.NewWithSigner() @@ -1591,25 +1588,30 @@ func TestEpochRecover(t *testing.T) { false, ) - clusterQCs := make([][]string, numClusters) - clusterQCs[0] = make([]string, 1) - clusterQCs[1] = make([]string, 1) - - // collectorVoteHasher := crypto.NewExpandMsgXOFKMAC128(collectorVoteTag) - t.Run("Can recover the epoch and have everything return to normal", func(t *testing.T) { + epochTimingConfigResult := executeScriptAndCheck(t, b, templates.GenerateGetEpochTimingConfigScript(env), nil) - var startView uint64 = 100 - var stakingEndView uint64 = 120 - var endView uint64 = 160 + var ( + startView uint64 = 100 + stakingEndView uint64 = 120 + endView uint64 = 160 + targetDuration uint64 = numEpochViews + targetEndTime uint64 = expectedTargetEndTime(epochTimingConfigResult, startEpochCounter+1) + ) tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateRecoverEpochScript(env), idTableAddress) tx.AddArgument(CadenceString("stillSoRandom")) tx.AddArgument(cadence.NewUInt64(startView)) tx.AddArgument(cadence.NewUInt64(stakingEndView)) tx.AddArgument(cadence.NewUInt64(endView)) - tx.AddArgument(cadence.NewArray([]cadence.Value{})) // collectorClusters - tx.AddArgument(cadence.NewArray([]cadence.Value{})) // clusterQCVoteData + tx.AddArgument(cadence.NewUInt64(targetDuration)) + tx.AddArgument(cadence.NewUInt64(targetEndTime)) + collectorClusters := make([]cadence.Value, 3) + collectorClusters[0] = cadence.NewArray([]cadence.Value{CadenceString("node_1"), CadenceString("node_2"), CadenceString("node_3")}) + collectorClusters[1] = cadence.NewArray([]cadence.Value{CadenceString("node_4"), CadenceString("node_5"), CadenceString("node_6")}) + collectorClusters[2] = cadence.NewArray([]cadence.Value{CadenceString("node_7"), CadenceString("node_8"), CadenceString("node_9")}) + tx.AddArgument(cadence.NewArray(collectorClusters)) // collectorClusters + tx.AddArgument(cadence.NewArray(make([]cadence.Value, 0))) // clusterQCVoteData dkgPubKeys := []string{"pubkey_1"} dkgPubKeysCdc := make([]cadence.Value, len(dkgPubKeys)) @@ -1631,6 +1633,8 @@ func TestEpochRecover(t *testing.T) { false, ) + advanceView(t, b, env, idTableAddress, IDTableSigner, 1, "BLOCK", false) + verifyEpochMetadata(t, b, env, EpochMetadata{ counter: startEpochCounter + 1, @@ -1645,10 +1649,27 @@ func TestEpochRecover(t *testing.T) { clusterQCs: nil, dkgKeys: dkgPubKeys}) - // result := executeScriptAndCheck(t, b, templates.GenerateGetDKGEnabledScript(env), nil) - // assert.Equal(t, cadence.NewBool(false), result) + result := executeScriptAndCheck(t, b, templates.GenerateGetDKGEnabledScript(env), nil) + assert.Equal(t, cadence.NewBool(false), result) - // result = executeScriptAndCheck(t, b, templates.GenerateGetQCEnabledScript(env), nil) - // assert.Equal(t, cadence.NewBool(false), result) + result = executeScriptAndCheck(t, b, templates.GenerateGetQCEnabledScript(env), nil) + assert.Equal(t, cadence.NewBool(false), result) + + expectedRecoverEvent := EpochRecover{ + counter: startEpochCounter + 1, + nodeInfoLength: len(nodeIDs), + firstView: startView, + finalView: endView, + collectorClusters: collectorClusters, + randomSource: "stillSoRandom", + dkgPhase1FinalView: startView + numStakingViews + numDKGViews - 1, + dkgPhase2FinalView: startView + numStakingViews + (2 * numDKGViews) - 1, + dkgPhase3FinalView: startView + numStakingViews + (3 * numDKGViews) - 1, + targetDuration: targetDuration, + targetEndTime: targetEndTime, + clusterQCVoteDataLength: 0, + dkgPubKeys: dkgPubKeys, + } + verifyEpochRecover(t, adapter, idTableAddress, expectedRecoverEvent) }) } diff --git a/transactions/epoch/admin/recover_epoch.cdc b/transactions/epoch/admin/recover_epoch.cdc index 9d9579051..039788e14 100644 --- a/transactions/epoch/admin/recover_epoch.cdc +++ b/transactions/epoch/admin/recover_epoch.cdc @@ -12,6 +12,8 @@ transaction(randomSource: String, startView: UInt64, stakingEndView: UInt64, endView: UInt64, + targetDuration: UInt64, + targetEndTime: UInt64, collectorClusters: [[String]], clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData], dkgPubKeys: [String], @@ -22,12 +24,14 @@ transaction(randomSource: String, ?? panic("Could not borrow epoch admin from storage path") epochAdmin.recoverEpoch(randomSource: randomSource, - startView: startView, - stakingEndView: stakingEndView, - endView: endView, - collectorClusters: collectorClusters, - clusterQCVoteData: clusterQCVoteData, - dkgPubKeys: dkgPubKeys, - nodeIDs: nodeIDs) + startView: startView, + stakingEndView: stakingEndView, + endView: endView, + targetDuration: targetDuration, + targetEndTime: targetEndTime, + collectorClusters: collectorClusters, + clusterQCVoteData: clusterQCVoteData, + dkgPubKeys: dkgPubKeys, + nodeIDs: nodeIDs) } } From 4fbd4aa3bebf13b5955de3faddea2a7d62323ef0 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Fri, 26 Apr 2024 11:10:37 -0400 Subject: [PATCH 108/160] add epoch counter comment --- contracts/epochs/FlowEpoch.cdc | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 6b2d01e46..d89571815 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -590,18 +590,19 @@ access(all) contract FlowEpoch { } if FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION { - // Since we are resetting the epoch, we do not need to - // start epoch setup also. We only need to end the staking auction + /// Since we are resetting the epoch, we do not need to + /// start epoch setup also. We only need to end the staking auction FlowEpoch.borrowStakingAdmin().endStakingAuction() } else { - // force reset the QC and DKG + /// force reset the QC and DKG FlowEpoch.borrowClusterQCAdmin().forceStopVoting() FlowEpoch.borrowDKGAdmin().forceEndDKG() } - // Create new Epoch metadata for the next epoch - // with the new values + /// Create new Epoch metadata for the next epoch + /// with the new values let newEpochMetadata = EpochMetadata( + // counter: FlowEpoch.proposedEpochCounter(), seed: randomSource, startView: startView, From ad2df49a94a57bd10e5ecc661b02fcead9a32455 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Fri, 26 Apr 2024 11:19:19 -0400 Subject: [PATCH 109/160] move save epoch metadata to ending of recover func add comment --- contracts/epochs/FlowEpoch.cdc | 35 ++++++++++++++++++---------------- 1 file changed, 19 insertions(+), 16 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index d89571815..8f38403be 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -599,22 +599,6 @@ access(all) contract FlowEpoch { FlowEpoch.borrowDKGAdmin().forceEndDKG() } - /// Create new Epoch metadata for the next epoch - /// with the new values - let newEpochMetadata = EpochMetadata( - // - counter: FlowEpoch.proposedEpochCounter(), - seed: randomSource, - startView: startView, - endView: endView, - stakingEndView: stakingEndView, - // This will be overwritten in `calculateAndSetRewards` below - totalRewards: UFix64(0.0), - collectorClusters: [], - clusterQCs: [], - dkgKeys: dkgPubKeys) - - FlowEpoch.saveEpochMetadata(newEpochMetadata) // Calculate rewards for the current epoch // and set the payout for the next epoch FlowEpoch.calculateAndSetRewards() @@ -640,6 +624,25 @@ access(all) contract FlowEpoch { /// save the recovery epoch metadata this will be emitted in the EpochRecover service event /// during the next heart beat interval. FlowEpoch.account.storage.save(recoverEpochMetadata, to: /storage/recoverEpochMetadataStoragePath) + + /// Create new metadata for the recovery epoch with the new values + let newEpochMetadata = EpochMetadata( + /// When the network enters EFM the epoch counter will not be incremented + /// so it's safe to use current_epoch_counter + 1 + counter: FlowEpoch.proposedEpochCounter(), + seed: randomSource, + startView: startView, + endView: endView, + stakingEndView: stakingEndView, + // This will be overwritten in `calculateAndSetRewards` below + totalRewards: UFix64(0.0), + collectorClusters: [], + clusterQCs: [], + dkgKeys: dkgPubKeys) + + /// Save the new epoch meta data, it will be referenced as + /// the epoch progresses through each phase. + FlowEpoch.saveEpochMetadata(newEpochMetadata) } /// Ends the currently active epoch and starts a new one with the provided configuration. From 505a371d98843eddd45b869a360eee880f239905 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Fri, 26 Apr 2024 11:37:45 -0400 Subject: [PATCH 110/160] Update FlowEpoch.cdc --- contracts/epochs/FlowEpoch.cdc | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 8f38403be..e84b045d3 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -599,14 +599,16 @@ access(all) contract FlowEpoch { FlowEpoch.borrowDKGAdmin().forceEndDKG() } - // Calculate rewards for the current epoch - // and set the payout for the next epoch + /// Calculate rewards for the current epoch + /// and set the payout for the next epoch FlowEpoch.calculateAndSetRewards() - // Start a new Epoch, which increments the current epoch counter + /// Start a new Epoch, which increments the current epoch counter FlowEpoch.startNewEpoch() - // Emit the service event, which notifies the protocol state about the RecoveryEpoch + + /// Create the recovery epoch metadata, this struct is used to hold + /// EpochRecover service event data. let recoverEpochMetadata = FlowEpoch.RecoverEpochMetadata( - counter: FlowEpoch.currentEpochCounter, + counter: FlowEpoch.proposedEpochCounter(), nodeIDs: nodeIDs, firstView: startView, finalView: endView, @@ -621,11 +623,11 @@ access(all) contract FlowEpoch { dkgPubKeys: dkgPubKeys, ) - /// save the recovery epoch metadata this will be emitted in the EpochRecover service event + /// Save the recovery epoch metadata to storage, this will be emitted in the EpochRecover service event /// during the next heart beat interval. FlowEpoch.account.storage.save(recoverEpochMetadata, to: /storage/recoverEpochMetadataStoragePath) - /// Create new metadata for the recovery epoch with the new values + /// Create new EpochMetadata for the recovery epoch with the new values let newEpochMetadata = EpochMetadata( /// When the network enters EFM the epoch counter will not be incremented /// so it's safe to use current_epoch_counter + 1 From f2818d838e90581f9e70582d4d6f5fe1c76b8933 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Thu, 25 Apr 2024 15:25:51 -0400 Subject: [PATCH 111/160] Update contracts/epochs/FlowEpoch.cdc Co-authored-by: Alexander Hentschel --- contracts/epochs/FlowEpoch.cdc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index e84b045d3..ef8adaaab 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -200,7 +200,7 @@ access(all) contract FlowEpoch { /// Contains metadata about the recovery epoch, this data /// is stored at the storage path /storage/recoverEpochMetadata. /// This struct is a 1:1 copy of the event EpochRecover event and is - /// is used to populate all the fields of the event when the heartbeat + /// used to populate all the fields of the event when the heartbeat /// detects a new RecoverEpochMetadata stored. access(all) struct RecoverEpochMetadata { /// The counter for the RecoveryEpoch. From 5e2f861bb65f1b305458cbcfa5810de01b5f66a2 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Fri, 26 Apr 2024 09:16:50 -0400 Subject: [PATCH 112/160] Update contracts/epochs/FlowEpoch.cdc Co-authored-by: Alexander Hentschel --- contracts/epochs/FlowEpoch.cdc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index ef8adaaab..f1e76ab50 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -636,7 +636,7 @@ access(all) contract FlowEpoch { startView: startView, endView: endView, stakingEndView: stakingEndView, - // This will be overwritten in `calculateAndSetRewards` below + // The following fields will be overwritten in `calculateAndSetRewards` below totalRewards: UFix64(0.0), collectorClusters: [], clusterQCs: [], From dfd8e2fa97eac8c518550c0236f72d65dbbf4340 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Fri, 26 Apr 2024 11:56:35 -0400 Subject: [PATCH 113/160] update assets --- contracts/epochs/FlowEpoch.cdc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index f1e76ab50..dca3bfeca 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -599,12 +599,6 @@ access(all) contract FlowEpoch { FlowEpoch.borrowDKGAdmin().forceEndDKG() } - /// Calculate rewards for the current epoch - /// and set the payout for the next epoch - FlowEpoch.calculateAndSetRewards() - /// Start a new Epoch, which increments the current epoch counter - FlowEpoch.startNewEpoch() - /// Create the recovery epoch metadata, this struct is used to hold /// EpochRecover service event data. let recoverEpochMetadata = FlowEpoch.RecoverEpochMetadata( @@ -645,6 +639,12 @@ access(all) contract FlowEpoch { /// Save the new epoch meta data, it will be referenced as /// the epoch progresses through each phase. FlowEpoch.saveEpochMetadata(newEpochMetadata) + + /// Calculate rewards for the current epoch + /// and set the payout for the next epoch + FlowEpoch.calculateAndSetRewards() + /// Start a new Epoch, which increments the current epoch counter + FlowEpoch.startNewEpoch() } /// Ends the currently active epoch and starts a new one with the provided configuration. From 5d5fb6e9aa9543066d962a59cc5c6c6eecc2b1f9 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Mon, 13 May 2024 10:15:26 -0400 Subject: [PATCH 114/160] Apply suggestions from code review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Jordan Schalm Co-authored-by: Bastian Müller --- contracts/epochs/FlowClusterQC.cdc | 5 ++++- contracts/epochs/FlowEpoch.cdc | 35 ++++++++++++++++++------------ 2 files changed, 25 insertions(+), 15 deletions(-) diff --git a/contracts/epochs/FlowClusterQC.cdc b/contracts/epochs/FlowClusterQC.cdc index e5995dba1..1783d9dea 100644 --- a/contracts/epochs/FlowClusterQC.cdc +++ b/contracts/epochs/FlowClusterQC.cdc @@ -261,13 +261,16 @@ access(all) contract FlowClusterQC { /// Represents the quorum certificate vote data for a signer /// of the certificate. access(all) struct ClusterQCVoteData { - /// The vote signatures from all the nodes in the cluster + /// The hex-encoded vote signatures from all the nodes in the cluster access(all) let voteSignatures: [String] /// The node IDs that correspond to each vote access(all) let voterIDs: [String] init(signatures: [String], message: String, voterIDs: [String]) { + pre { + signatures.length == voterIDs.length: "must have exactly one vote signature per signer ID" + } self.voteSignatures = signatures self.voterIDs = voterIDs } diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index dca3bfeca..da55709d5 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -167,9 +167,8 @@ access(all) contract FlowEpoch { finalView: UInt64, /// The cluster assignment for the RecoveryEpoch. Each element in the list - /// represents one cluster and contains all the node IDs assigned to that - /// cluster, with their weights and votes - collectorClusters: [[String]], + /// represents one cluster and contains all the node IDs assigned to that cluster. + clusterAssignments: [[String]], /// The source of randomness to seed the leader selection algorithm with /// for the upcoming epoch. @@ -192,8 +191,12 @@ access(all) contract FlowEpoch { /// using the same procedure as during a spork. clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData], - /// The DKG public keys passed in the recoverEpoch transaction. These are re-used from the - /// last successful DKG. + /// The DKG public keys passed in the recoverEpoch transaction. + /// Currently, these are re-used from the last successful DKG. Note that this implies that + /// RecoveryEpoch MUST have a consensus committee that is identical to the last successful + /// DKG committee. + /// Group public key is the first element, followed by the individual keys + dkgPubKeys: [String], ) @@ -257,7 +260,8 @@ access(all) contract FlowEpoch { targetDuration: UInt64, targetEndTime: UInt64, clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData], - dkgPubKeys: [String]) { + dkgPubKeys: [String] + ) { self.counter = counter self.nodeIDs = nodeIDs @@ -362,7 +366,6 @@ access(all) contract FlowEpoch { self.dkgKeys = keys } } - /// Metadata that is managed and can be changed by the Admin/// access(all) struct Config { /// The number of views in an entire epoch @@ -601,6 +604,10 @@ access(all) contract FlowEpoch { /// Create the recovery epoch metadata, this struct is used to hold /// EpochRecover service event data. + + let numViewsInStakingAuction = FlowEpoch.configurableMetadata.numViewsInStakingAuction + let numViewsInDKGPhase = FlowEpoch.configurableMetadata.numViewsInDKGPhase + let recoverEpochMetadata = FlowEpoch.RecoverEpochMetadata( counter: FlowEpoch.proposedEpochCounter(), nodeIDs: nodeIDs, @@ -608,9 +615,9 @@ access(all) contract FlowEpoch { finalView: endView, collectorClusters: collectorClusters, randomSource: randomSource, - dkgPhase1FinalView: startView + FlowEpoch.configurableMetadata.numViewsInStakingAuction + FlowEpoch.configurableMetadata.numViewsInDKGPhase - 1 as UInt64, - dkgPhase2FinalView: startView + FlowEpoch.configurableMetadata.numViewsInStakingAuction + (2 as UInt64 * FlowEpoch.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, - dkgPhase3FinalView: startView + FlowEpoch.configurableMetadata.numViewsInStakingAuction + (3 as UInt64 * FlowEpoch.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, + dkgPhase1FinalView: startView + numViewsInStakingAuction + numViewsInDKGPhase - 1, + dkgPhase2FinalView: startView + numViewsInStakingAuction + (2 * numViewsInDKGPhase) - 1, + dkgPhase3FinalView: startView + numViewsInStakingAuction + (3 * numViewsInDKGPhase) - 1, targetDuration: targetDuration, targetEndTime: targetEndTime, clusterQCVoteData: clusterQCVoteData, @@ -631,10 +638,11 @@ access(all) contract FlowEpoch { endView: endView, stakingEndView: stakingEndView, // The following fields will be overwritten in `calculateAndSetRewards` below - totalRewards: UFix64(0.0), + totalRewards: 0.0, collectorClusters: [], clusterQCs: [], - dkgKeys: dkgPubKeys) + dkgKeys: dkgPubKeys + ) /// Save the new epoch meta data, it will be referenced as /// the epoch progresses through each phase. @@ -712,8 +720,7 @@ access(all) contract FlowEpoch { access(all) fun advanceBlock() { /// check if we have recover epoch metadata stored, this indicates the network is in EFM and the heartbeat /// will emit the EpochRecover event containing information for the recovery epoch. - let recoverEpochMetadata = FlowEpoch.account.storage.load(from: /storage/recoverEpochMetadataStoragePath) - if recoverEpochMetadata != nil { + if let recoverEpochMetadata = FlowEpoch.account.storage.load(from: /storage/recoverEpochMetadataStoragePath) { // Construct the identity table for the recovery epoch let nodes: [FlowIDTableStaking.NodeInfo] = [] for nodeID in recoverEpochMetadata!.nodeIDs { From 5b92b6e39ba36dfd67aab4130fdf4af005b737b5 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Tue, 14 May 2024 23:23:49 -0400 Subject: [PATCH 115/160] reuse old var names --- contracts/epochs/FlowEpoch.cdc | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index da55709d5..d667863dc 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -117,9 +117,9 @@ access(all) contract FlowEpoch { /// EpochSetup phase. Deadlines are specified in terms of a consensus view number. /// When a DKG participant observes a finalized and sealed block with view greater /// than the given deadline, it can safely transition to the next phase. - dkgPhase1FinalView: UInt64, - dkgPhase2FinalView: UInt64, - dkgPhase3FinalView: UInt64, + DKGPhase1FinalView: UInt64, + DKGPhase2FinalView: UInt64, + DKGPhase3FinalView: UInt64, /// The target duration for the upcoming epoch, in seconds targetDuration: UInt64, @@ -178,9 +178,9 @@ access(all) contract FlowEpoch { /// EpochSetup phase. Deadlines are specified in terms of a consensus view number. /// When a DKG participant observes a finalized and sealed block with view greater /// than the given deadline, it can safely transition to the next phase. - dkgPhase1FinalView: UInt64, - dkgPhase2FinalView: UInt64, - dkgPhase3FinalView: UInt64, + DKGPhase1FinalView: UInt64, + DKGPhase2FinalView: UInt64, + DKGPhase3FinalView: UInt64, /// The target duration for the upcoming epoch, in seconds targetDuration: UInt64, @@ -733,9 +733,9 @@ access(all) contract FlowEpoch { finalView: recoverEpochMetadata!.finalView, collectorClusters: recoverEpochMetadata!.collectorClusters, randomSource: recoverEpochMetadata!.randomSource, - dkgPhase1FinalView: recoverEpochMetadata!.dkgPhase1FinalView, - dkgPhase2FinalView: recoverEpochMetadata!.dkgPhase2FinalView, - dkgPhase3FinalView: recoverEpochMetadata!.dkgPhase3FinalView, + DKGPhase1FinalView: recoverEpochMetadata!.dkgPhase1FinalView, + DKGPhase2FinalView: recoverEpochMetadata!.dkgPhase2FinalView, + DKGPhase3FinalView: recoverEpochMetadata!.dkgPhase3FinalView, targetDuration: recoverEpochMetadata!.targetDuration, targetEndTime: recoverEpochMetadata!.targetEndTime, clusterQCVoteData: recoverEpochMetadata!.clusterQCVoteData, @@ -988,9 +988,9 @@ access(all) contract FlowEpoch { finalView: proposedEpochMetadata.endView, collectorClusters: collectorClusters, randomSource: randomSource, - dkgPhase1FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + self.configurableMetadata.numViewsInDKGPhase - 1 as UInt64, - dkgPhase2FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + (2 as UInt64 * self.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, - dkgPhase3FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + (3 as UInt64 * self.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, + DKGPhase1FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + self.configurableMetadata.numViewsInDKGPhase - 1 as UInt64, + DKGPhase2FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + (2 as UInt64 * self.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, + DKGPhase3FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + (3 as UInt64 * self.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, targetDuration: proposedTargetDuration, targetEndTime: proposedTargetEndTime) } From 6a2bdb53b43500e7f3ae427262a2c214344d3c8e Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Wed, 15 May 2024 11:43:47 -0400 Subject: [PATCH 116/160] remove RecoverEpochMetadata --- contracts/epochs/FlowEpoch.cdc | 151 ++++----------------- lib/go/templates/internal/assets/assets.go | 6 +- transactions/epoch/admin/recover_epoch.cdc | 4 +- 3 files changed, 29 insertions(+), 132 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index d667863dc..722506135 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -200,85 +200,6 @@ access(all) contract FlowEpoch { dkgPubKeys: [String], ) - /// Contains metadata about the recovery epoch, this data - /// is stored at the storage path /storage/recoverEpochMetadata. - /// This struct is a 1:1 copy of the event EpochRecover event and is - /// used to populate all the fields of the event when the heartbeat - /// detects a new RecoverEpochMetadata stored. - access(all) struct RecoverEpochMetadata { - /// The counter for the RecoveryEpoch. - access(all) let counter: UInt64 - - /// List of ids for all identitities in the identity table for the upcoming epoch. - access(all) let nodeIDs: [String] - - /// The first view (inclusive) of the RecoveryEpoch. - access(all) let firstView: UInt64 - - /// The last view (inclusive) of the RecoveryEpoch. - access(all) let finalView: UInt64 - - /// The cluster assignment for the RecoveryEpoch. Each element in the list - /// represents one cluster and contains all the node IDs assigned to that - /// cluster, with their weights and votes - access(all) let collectorClusters: [[String]] - - /// The source of randomness to seed the leader selection algorithm with - /// for the upcoming epoch. - access(all) let randomSource: String - - /// The deadlines of each phase in the DKG protocol to be completed in the upcoming - /// EpochSetup phase. Deadlines are specified in terms of a consensus view number. - /// When a DKG participant observes a finalized and sealed block with view greater - /// than the given deadline, it can safely transition to the next phase. - access(all) let dkgPhase1FinalView: UInt64 - access(all) let dkgPhase2FinalView: UInt64 - access(all) let dkgPhase3FinalView: UInt64 - - /// The target duration for the upcoming epoch, in seconds - access(all) let targetDuration: UInt64 - /// The target end time for the upcoming epoch, specified in second-precision Unix time - access(all) let targetEndTime: UInt64 - - /// The cluster QCs passed in the recoverEpoch transaction. These are generated out-of-band - /// using the same procedure as during a spork. - access(all) let clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData] - - /// The DKG public keys passed in the recoverEpoch transaction. These are re-used from the - /// last successful DKG. - access(all) let dkgPubKeys: [String] - - init(counter: UInt64, - nodeIDs: [String], - firstView: UInt64, - finalView: UInt64, - collectorClusters: [[String]], - randomSource: String, - dkgPhase1FinalView: UInt64, - dkgPhase2FinalView: UInt64, - dkgPhase3FinalView: UInt64, - targetDuration: UInt64, - targetEndTime: UInt64, - clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData], - dkgPubKeys: [String] - ) { - - self.counter = counter - self.nodeIDs = nodeIDs - self.firstView = firstView - self.finalView = finalView - self.collectorClusters = collectorClusters - self.randomSource = randomSource - self.dkgPhase1FinalView = dkgPhase1FinalView - self.dkgPhase2FinalView = dkgPhase2FinalView - self.dkgPhase3FinalView = dkgPhase3FinalView - self.targetDuration = targetDuration - self.targetEndTime = targetEndTime - self.clusterQCVoteData = clusterQCVoteData - self.dkgPubKeys = dkgPubKeys - } - } - /// Contains specific metadata about a particular epoch /// All historical epoch metadata is stored permanently access(all) struct EpochMetadata { @@ -574,7 +495,7 @@ access(all) contract FlowEpoch { endView: UInt64, targetDuration: UInt64, targetEndTime: UInt64, - collectorClusters: [[String]], + clusterAssignments: [[String]], clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData], dkgPubKeys: [String], nodeIDs: [String]) @@ -601,33 +522,10 @@ access(all) contract FlowEpoch { FlowEpoch.borrowClusterQCAdmin().forceStopVoting() FlowEpoch.borrowDKGAdmin().forceEndDKG() } - - /// Create the recovery epoch metadata, this struct is used to hold - /// EpochRecover service event data. let numViewsInStakingAuction = FlowEpoch.configurableMetadata.numViewsInStakingAuction let numViewsInDKGPhase = FlowEpoch.configurableMetadata.numViewsInDKGPhase - let recoverEpochMetadata = FlowEpoch.RecoverEpochMetadata( - counter: FlowEpoch.proposedEpochCounter(), - nodeIDs: nodeIDs, - firstView: startView, - finalView: endView, - collectorClusters: collectorClusters, - randomSource: randomSource, - dkgPhase1FinalView: startView + numViewsInStakingAuction + numViewsInDKGPhase - 1, - dkgPhase2FinalView: startView + numViewsInStakingAuction + (2 * numViewsInDKGPhase) - 1, - dkgPhase3FinalView: startView + numViewsInStakingAuction + (3 * numViewsInDKGPhase) - 1, - targetDuration: targetDuration, - targetEndTime: targetEndTime, - clusterQCVoteData: clusterQCVoteData, - dkgPubKeys: dkgPubKeys, - ) - - /// Save the recovery epoch metadata to storage, this will be emitted in the EpochRecover service event - /// during the next heart beat interval. - FlowEpoch.account.storage.save(recoverEpochMetadata, to: /storage/recoverEpochMetadataStoragePath) - /// Create new EpochMetadata for the recovery epoch with the new values let newEpochMetadata = EpochMetadata( /// When the network enters EFM the epoch counter will not be incremented @@ -651,6 +549,29 @@ access(all) contract FlowEpoch { /// Calculate rewards for the current epoch /// and set the payout for the next epoch FlowEpoch.calculateAndSetRewards() + + /// Construct the identity table for the recovery epoch + let nodes: [FlowIDTableStaking.NodeInfo] = [] + for nodeID in nodeIDs { + nodes.append(FlowIDTableStaking.NodeInfo(nodeID: nodeID)) + } + /// emit EpochRecover event + emit EpochRecover( + counter: FlowEpoch.proposedEpochCounter(), + nodeInfo: nodes, + firstView: startView, + finalView: endView, + clusterAssignments: clusterAssignments, + randomSource: randomSource, + DKGPhase1FinalView: startView + numViewsInStakingAuction + numViewsInDKGPhase - 1, + DKGPhase2FinalView: startView + numViewsInStakingAuction + (2 * numViewsInDKGPhase) - 1, + DKGPhase3FinalView: startView + numViewsInStakingAuction + (3 * numViewsInDKGPhase) - 1, + targetDuration: targetDuration, + targetEndTime: targetEndTime, + clusterQCVoteData: clusterQCVoteData, + dkgPubKeys: dkgPubKeys, + ) + /// Start a new Epoch, which increments the current epoch counter FlowEpoch.startNewEpoch() } @@ -718,30 +639,6 @@ access(all) contract FlowEpoch { /// Function that is called every block to advance the epoch /// and change phase if the required conditions have been met access(all) fun advanceBlock() { - /// check if we have recover epoch metadata stored, this indicates the network is in EFM and the heartbeat - /// will emit the EpochRecover event containing information for the recovery epoch. - if let recoverEpochMetadata = FlowEpoch.account.storage.load(from: /storage/recoverEpochMetadataStoragePath) { - // Construct the identity table for the recovery epoch - let nodes: [FlowIDTableStaking.NodeInfo] = [] - for nodeID in recoverEpochMetadata!.nodeIDs { - nodes.append(FlowIDTableStaking.NodeInfo(nodeID: nodeID)) - } - emit EpochRecover( - counter: recoverEpochMetadata!.counter, - nodeInfo: nodes, - firstView: recoverEpochMetadata!.firstView, - finalView: recoverEpochMetadata!.finalView, - collectorClusters: recoverEpochMetadata!.collectorClusters, - randomSource: recoverEpochMetadata!.randomSource, - DKGPhase1FinalView: recoverEpochMetadata!.dkgPhase1FinalView, - DKGPhase2FinalView: recoverEpochMetadata!.dkgPhase2FinalView, - DKGPhase3FinalView: recoverEpochMetadata!.dkgPhase3FinalView, - targetDuration: recoverEpochMetadata!.targetDuration, - targetEndTime: recoverEpochMetadata!.targetEndTime, - clusterQCVoteData: recoverEpochMetadata!.clusterQCVoteData, - dkgPubKeys: recoverEpochMetadata!.dkgPubKeys, - ) - } switch FlowEpoch.currentEpochPhase { case EpochPhase.STAKINGAUCTION: let currentBlock = getCurrentBlock() diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index e7f3911df..7e0dbb4fc 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -47,7 +47,7 @@ // epoch/admin/deploy_epoch.cdc (1.192kB) // epoch/admin/deploy_qc_dkg.cdc (310B) // epoch/admin/pay_rewards.cdc (497B) -// epoch/admin/recover_epoch.cdc (1.735kB) +// epoch/admin/recover_epoch.cdc (1.74kB) // epoch/admin/reset_epoch.cdc (1.668kB) // epoch/admin/set_automatic_rewards.cdc (376B) // epoch/admin/set_bonus_tokens.cdc (624B) @@ -1304,7 +1304,7 @@ func epochAdminPay_rewardsCdc() (*asset, error) { return a, nil } -var _epochAdminRecover_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x41\x4f\xf3\x46\x10\xbd\xfb\x57\x8c\x72\x40\x89\x54\xcc\xa5\xea\x21\x6a\x8b\x68\x12\x24\x54\x55\xa2\x0a\xe5\x82\x38\x4c\xd6\x93\x78\xc5\x7a\xc7\x9a\x1d\x63\xa2\x8a\xff\xfe\x69\x6d\xe3\xd8\x09\x5f\xc0\xa7\x9d\xd9\xf7\xde\x3e\xaf\xdf\xd8\x16\x25\x8b\xc2\xad\xe3\x7a\x55\xb2\xc9\x61\x2b\x5c\xc0\xa4\xaf\x27\xc9\x00\x71\xb7\x7c\xc0\x8d\xa3\xb5\xe2\x8b\xf5\xbb\x01\x74\xbc\x31\xe2\x2c\x5c\x15\x94\xe4\xdf\xc5\x00\xde\xf7\x26\x49\x72\x75\x05\x0f\x39\x81\x90\xe1\x57\x92\xd6\x83\x0a\xfa\x80\x46\x2d\x7b\x30\x42\xa8\x14\x00\x7d\x06\x41\x51\x34\x00\x82\xa7\x1a\xa8\x81\x5a\x0f\x9a\xd3\xc0\x7f\x28\x50\x14\x0c\x7b\x15\x34\x1a\xe5\x95\xa1\xce\xad\xc9\xa1\xb6\xce\xc1\x96\xc5\x50\xc3\xf1\xa4\x35\xcb\x0b\xd0\x9b\x55\x58\xdd\xfe\x93\x9e\x1a\x09\x24\xaf\xd6\x10\xd0\x2b\x79\x6d\xf9\x1b\x02\x2a\xac\x2a\x65\x10\xc5\xa3\xad\x52\xd8\x50\x08\x94\xc1\x66\x0f\xe8\x5c\x6c\x28\x1b\x76\x50\xa2\xa8\x35\xb6\x44\xaf\xed\x1b\x10\x9a\x7c\xd8\x6d\x35\xab\x32\x43\x6d\x4c\x59\x39\x90\xa3\x7c\xd0\xb8\x51\x5b\xcd\x3b\xcb\x35\xb4\xce\x32\x54\x4c\xdb\xcb\xb3\x61\x74\x61\x21\xe7\xca\x65\xc0\xde\xed\xa3\xd9\x2a\xfa\xea\x05\xb8\xd2\xb2\x52\xe0\x6d\x53\x6d\x98\x35\xa8\x60\x09\x95\x5a\x67\x75\x3f\x8f\x8a\xd0\x54\xdd\xfd\xd2\xb6\xb8\xec\xae\xe4\x52\xdf\x2e\x51\x76\x21\x19\x9c\x36\x15\xf4\x19\x17\x6b\xae\xc4\xd0\x1c\xd6\x2a\xd6\xef\x7e\x49\x60\xf0\x34\x1f\xed\xd1\x52\x3d\x87\xff\xee\xbc\xfe\xf6\xeb\xc9\x76\xcc\xcc\xca\x67\x3f\xc7\xd0\xb9\x4d\x45\xd9\x91\x2e\x2b\xc1\x68\xe8\x1c\x66\xe5\xb3\x07\x5b\xd0\xe7\x10\xc3\xce\x91\x51\x96\x2e\x9c\x61\x0e\x4f\x4f\xed\xfb\x3c\x3f\x1f\x41\x3f\xe2\xfb\xc8\x4a\x4b\x54\x9c\xc3\xd3\x28\xd6\xe9\xe2\x18\x71\xa4\x90\xbd\xec\xee\xab\xcd\xdf\xb4\x8f\xa7\x74\x87\x8c\x11\x9e\x33\xba\x5b\x0e\xb6\x67\xf0\x7f\xd2\x20\x4a\xa1\x12\x85\xa6\xc1\xee\x3c\xc9\x1c\xb0\xd2\x7c\xfa\x17\x8b\x70\xfd\x88\xae\xa2\x19\x5c\xdc\x18\xc3\x95\xd7\x48\xf9\xd0\x73\xa4\xed\x17\xbd\xc9\x0a\xeb\xe1\x0f\x68\xe9\x69\x50\x16\xdc\x51\xba\x69\x04\x7e\xbf\xe8\x07\x29\x6d\x80\x7f\x4e\xe3\xd4\xce\x0f\xf3\x95\x62\x6c\xaf\x5b\xd6\x3d\x6a\x3e\x1b\xd9\xbe\xbe\x86\x12\xbd\x35\xd3\xc9\xa2\x49\xa1\x67\x85\x56\xba\xcb\x53\x43\x6f\x7f\x05\xdd\xd1\x50\xa2\xe6\x93\x59\xd2\xeb\x1c\x6c\xa6\xc3\x61\x3c\x8a\xda\xb0\x1a\x5f\xdd\xf1\x33\x08\x60\xbf\xfc\x92\x31\xca\xe4\xb8\x3e\xcf\xed\xb3\x4a\xdf\x41\x1f\x87\x77\x5c\x7f\x87\xdb\x87\x7a\x54\x9e\x67\x7e\x92\xf5\x93\xd6\x17\x0a\xa7\x23\x70\xd2\x3a\xaf\x30\x1c\x81\xc3\xfa\x3c\xa7\x1f\x8a\x6e\xd1\x66\xef\x3d\x79\x4f\x7e\x04\x00\x00\xff\xff\x06\x12\xe3\x26\xc7\x06\x00\x00" +var _epochAdminRecover_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x41\x6b\xdb\x4c\x10\xbd\xeb\x57\x0c\x3e\x04\x1b\xbe\x28\x97\x8f\x1e\x4c\xdb\x90\xda\x0e\x84\x52\x48\x70\x9a\x4b\xc8\x61\xbc\x1a\x5b\x4b\xa4\x1d\x31\x3b\x8a\x62\x4a\xfe\x7b\x59\xad\x2b\x4b\x76\xea\x46\xa7\x9d\xd9\xf7\xde\x3e\xad\xde\xc8\x96\x15\x8b\xc2\x75\xc1\xcd\xa2\x62\x93\xc3\x5a\xb8\x84\x51\x57\x8f\x92\x1e\xe2\x66\x7e\x8f\xab\x82\x96\x8a\xcf\xd6\x6d\x7a\xd0\xe1\xc6\x80\x33\x2b\x6a\xaf\x24\x77\xb3\x1e\xbc\xeb\x8d\x92\xe4\xe2\x02\xee\x73\x02\x21\xc3\x2f\x24\xd1\x83\x0a\x3a\x8f\x46\x2d\x3b\x30\x42\xa8\xe4\x01\x5d\x06\x5e\x51\xd4\x03\x82\xa3\x06\xa8\x85\x5a\x07\x9a\x53\xcf\xbf\x2f\x51\x14\x0c\x3b\x15\x34\x1a\xe4\x95\xa1\xc9\xad\xc9\xa1\xb1\x45\x01\x6b\x16\x43\x2d\xc7\x91\x36\x2c\xcf\x40\xaf\x56\x61\x71\xfd\x23\x3d\x36\xe2\x49\x5e\xac\x21\xa0\x17\x72\x1a\xf9\x2b\x02\x2a\xad\x2a\x65\x10\xc4\x83\xad\x4a\xd8\x90\xf7\x94\xc1\x6a\x0b\x58\x14\xa1\xa1\x6c\xb8\x80\x0a\x45\xad\xb1\x15\x3a\x8d\x6f\x40\x68\xf2\x7e\x37\x6a\xd6\x55\x86\xda\x9a\xb2\xb2\x27\x07\x79\xaf\x61\xa3\xb1\x9a\xef\x2c\x37\x10\x9d\x65\xa8\x98\xc6\xcb\xb3\x7e\x70\x61\x3e\xe7\xba\xc8\x80\x5d\xb1\x0d\x66\xeb\xe0\xab\x13\xe0\x5a\xab\x5a\x81\xd7\x6d\xb5\x62\x56\xaf\x82\x15\xd4\x6a\x0b\xab\xdb\x69\x50\x84\xb6\xda\xdd\x2f\xad\xcb\xf3\xdd\x95\x9c\xeb\xeb\x39\xca\xc6\x27\xbd\xd3\xc6\x82\x2e\xe3\x72\xc9\xb5\x18\x9a\xc2\x52\xc5\xba\xcd\x7f\x09\xf4\x9e\xf6\xa3\x3d\x58\x6a\xa6\xf0\xf3\xc6\xe9\xa7\xff\x8f\xb6\x43\x66\x16\x2e\xfb\x3b\x86\x4e\x6d\x2a\xca\x86\x74\x5e\x0b\x06\x43\xa7\x30\x0b\x97\xdd\xdb\x92\xde\x87\x98\x98\xc9\x2b\xef\xed\xc6\x95\xe4\xd4\x4f\xe1\xf1\x31\xbe\xd0\xd3\xd3\xbb\xd8\xbb\xd9\x03\x2b\xcd\x51\x71\x0a\x8f\x83\x5c\xa7\xb3\x43\xc4\x81\x42\xf6\xbc\xb9\xad\x57\xdf\x69\x1b\x4e\xd9\x1d\x32\x44\x38\xce\xe8\x66\xde\xdb\x9e\xc0\xaf\xa4\x45\x54\x42\x15\x0a\x8d\x83\x51\x92\x29\x60\xad\xf9\xf8\x1b\x8b\x70\xf3\x80\x45\x4d\x13\x38\xbb\x32\x86\x6b\xa7\x81\xf2\x47\xaf\x20\x8d\x9f\xf4\x2a\x2b\xad\x83\x2f\x10\xe9\xa9\x57\x16\xdc\x50\xba\x6a\x05\x3e\x9f\x75\x93\x94\xb6\xc0\xaf\xe3\x30\xb6\xd3\xfd\x80\xa5\x18\xda\xcb\xc8\xba\x45\xcd\x27\x03\xdb\x97\x97\x50\xa1\xb3\x66\x3c\x9a\xb5\x31\x74\xac\x10\xa5\x77\x81\x6a\xe9\xf1\x5f\xb0\x3b\x1a\x2a\xd4\x7c\x34\x49\x3a\x9d\xbd\xcd\xb4\x3f\x8d\x07\x59\xeb\x57\xc3\xab\x3b\x7c\x7a\x09\xec\x96\xff\x64\x0c\x42\x39\xac\x4f\x73\xbb\xb0\xd2\x47\xd0\x87\xe9\x1d\xd6\x1f\xe1\x76\xa9\x1e\x94\xa7\x99\xef\x85\xfd\xb8\x07\xf0\x21\x95\xfe\x18\x1c\xb5\x4e\x2b\xf4\xc7\x60\xbf\x3e\xcd\xe9\x06\x63\xb7\x88\xf9\x7b\x4b\xde\x92\xdf\x01\x00\x00\xff\xff\x37\x70\x83\xc0\xcc\x06\x00\x00" func epochAdminRecover_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1320,7 +1320,7 @@ func epochAdminRecover_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/recover_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1, 0x16, 0xa4, 0x42, 0xc, 0xa9, 0x3c, 0xe8, 0xff, 0x6e, 0xc1, 0xf1, 0xd4, 0x65, 0xdf, 0xed, 0x9c, 0x46, 0xa6, 0x11, 0x94, 0x1b, 0x67, 0x64, 0x15, 0xe5, 0xca, 0xee, 0x6c, 0xc7, 0x56, 0x86}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0x7, 0x67, 0xa6, 0x48, 0x11, 0x9d, 0x7b, 0x30, 0x4d, 0xeb, 0x1e, 0x38, 0xe9, 0xca, 0x67, 0xbc, 0xa0, 0xb2, 0x4c, 0x36, 0xab, 0x53, 0x9, 0x39, 0xf7, 0xf8, 0xd5, 0xb3, 0x1b, 0xf3, 0xa7}} return a, nil } diff --git a/transactions/epoch/admin/recover_epoch.cdc b/transactions/epoch/admin/recover_epoch.cdc index 039788e14..8f2dcdf06 100644 --- a/transactions/epoch/admin/recover_epoch.cdc +++ b/transactions/epoch/admin/recover_epoch.cdc @@ -14,7 +14,7 @@ transaction(randomSource: String, endView: UInt64, targetDuration: UInt64, targetEndTime: UInt64, - collectorClusters: [[String]], + clusterAssignments: [[String]], clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData], dkgPubKeys: [String], nodeIDs: [String]) { @@ -29,7 +29,7 @@ transaction(randomSource: String, endView: endView, targetDuration: targetDuration, targetEndTime: targetEndTime, - collectorClusters: collectorClusters, + clusterAssignments: clusterAssignments , clusterQCVoteData: clusterQCVoteData, dkgPubKeys: dkgPubKeys, nodeIDs: nodeIDs) From caa00409371b28a706ac1d57b47757f9af09f9a8 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Wed, 15 May 2024 12:24:10 -0400 Subject: [PATCH 117/160] use named parameters --- contracts/epochs/FlowEpoch.cdc | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 722506135..6c477d42d 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -434,9 +434,9 @@ access(all) contract FlowEpoch { access(all) fun updateAuctionViews(_ newAuctionViews: UInt64) { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only update fields during the staking auction" - FlowEpoch.isValidPhaseConfiguration(newAuctionViews, - FlowEpoch.configurableMetadata.numViewsInDKGPhase, - FlowEpoch.configurableMetadata.numViewsInEpoch): "Epoch Views must be greater than the sum of new staking and DKG Phase views" + FlowEpoch.isValidPhaseConfiguration(auctionLen: newAuctionViews, + dkgPhaseLen: FlowEpoch.configurableMetadata.numViewsInDKGPhase, + epochLen: FlowEpoch.configurableMetadata.numViewsInEpoch): "Epoch Views must be greater than the sum of new staking and DKG Phase views" } FlowEpoch.configurableMetadata.setNumViewsInStakingAuction(newAuctionViews) @@ -445,9 +445,9 @@ access(all) contract FlowEpoch { access(all) fun updateDKGPhaseViews(_ newPhaseViews: UInt64) { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only update fields during the staking auction" - FlowEpoch.isValidPhaseConfiguration(FlowEpoch.configurableMetadata.numViewsInStakingAuction, - newPhaseViews, - FlowEpoch.configurableMetadata.numViewsInEpoch): "Epoch Views must be greater than the sum of staking and new DKG Phase views" + FlowEpoch.isValidPhaseConfiguration(auctionLen: FlowEpoch.configurableMetadata.numViewsInStakingAuction, + dkgPhaseLen: newPhaseViews, + epochLen: FlowEpoch.configurableMetadata.numViewsInEpoch): "Epoch Views must be greater than the sum of staking and new DKG Phase views" } FlowEpoch.configurableMetadata.setNumViewsInDKGPhase(newPhaseViews) @@ -501,10 +501,10 @@ access(all) contract FlowEpoch { nodeIDs: [String]) { pre { - FlowEpoch.isValidPhaseConfiguration(stakingEndView-startView+1, FlowEpoch.configurableMetadata.numViewsInDKGPhase, endView-startView+1): + FlowEpoch.isValidPhaseConfiguration(auctionLen: stakingEndView-startView+1, dkgPhaseLen: FlowEpoch.configurableMetadata.numViewsInDKGPhase, epochLen: endView-startView+1): "Invalid startView, stakingEndView, and endView configuration" } - + /// sanity check all nodes should have a weight > 0 for nodeID in nodeIDs { assert( @@ -594,7 +594,7 @@ access(all) contract FlowEpoch { pre { currentEpochCounter == FlowEpoch.currentEpochCounter: "Cannot submit a current Epoch counter that does not match the current counter stored in the smart contract" - FlowEpoch.isValidPhaseConfiguration(stakingEndView-startView+1, FlowEpoch.configurableMetadata.numViewsInDKGPhase, endView-startView+1): + FlowEpoch.isValidPhaseConfiguration(auctionLen: stakingEndView-startView+1, dkgPhaseLen: FlowEpoch.configurableMetadata.numViewsInDKGPhase, epochLen: endView-startView+1): "Invalid startView, stakingEndView, and endView configuration" } @@ -973,7 +973,7 @@ access(all) contract FlowEpoch { /// Makes sure the set of phase lengths (in views) are valid. /// Sub-phases cannot be greater than the full epoch length. - access(all) view fun isValidPhaseConfiguration(_ auctionLen: UInt64, _ dkgPhaseLen: UInt64, _ epochLen: UInt64): Bool { + access(all) view fun isValidPhaseConfiguration(auctionLen: UInt64, dkgPhaseLen: UInt64, epochLen: UInt64): Bool { return (auctionLen + (3*dkgPhaseLen)) < epochLen } From a66786266f0a95ecf4bad55b6695d9ca5d6fc479 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Wed, 15 May 2024 12:24:41 -0400 Subject: [PATCH 118/160] use separate var for long lines, remove casts --- contracts/epochs/FlowEpoch.cdc | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 6c477d42d..a9f21c60c 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -423,9 +423,9 @@ access(all) contract FlowEpoch { access(all) fun updateEpochViews(_ newEpochViews: UInt64) { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only update fields during the staking auction" - FlowEpoch.isValidPhaseConfiguration(FlowEpoch.configurableMetadata.numViewsInStakingAuction, - FlowEpoch.configurableMetadata.numViewsInDKGPhase, - newEpochViews): "New Epoch Views must be greater than the sum of staking and DKG Phase views" + FlowEpoch.isValidPhaseConfiguration(auctionLen: FlowEpoch.configurableMetadata.numViewsInStakingAuction, + dkgPhaseLen: FlowEpoch.configurableMetadata.numViewsInDKGPhase, + epochLen: newEpochViews): "New Epoch Views must be greater than the sum of staking and DKG Phase views" } FlowEpoch.configurableMetadata.setNumViewsInEpoch(newEpochViews) @@ -555,6 +555,11 @@ access(all) contract FlowEpoch { for nodeID in nodeIDs { nodes.append(FlowIDTableStaking.NodeInfo(nodeID: nodeID)) } + + let dkgPhase1FinalView = startView + numViewsInStakingAuction + numViewsInDKGPhase - 1 + let dkgPhase2FinalView = startView + numViewsInStakingAuction + (2 * numViewsInDKGPhase) - 1 + let dkgPhase3FinalView = startView + numViewsInStakingAuction + (3 * numViewsInDKGPhase) - 1 + /// emit EpochRecover event emit EpochRecover( counter: FlowEpoch.proposedEpochCounter(), @@ -563,9 +568,9 @@ access(all) contract FlowEpoch { finalView: endView, clusterAssignments: clusterAssignments, randomSource: randomSource, - DKGPhase1FinalView: startView + numViewsInStakingAuction + numViewsInDKGPhase - 1, - DKGPhase2FinalView: startView + numViewsInStakingAuction + (2 * numViewsInDKGPhase) - 1, - DKGPhase3FinalView: startView + numViewsInStakingAuction + (3 * numViewsInDKGPhase) - 1, + DKGPhase1FinalView: dkgPhase1FinalView, + DKGPhase2FinalView: dkgPhase2FinalView, + DKGPhase3FinalView: dkgPhase3FinalView, targetDuration: targetDuration, targetEndTime: targetEndTime, clusterQCVoteData: clusterQCVoteData, @@ -879,15 +884,18 @@ access(all) contract FlowEpoch { self.currentEpochPhase = EpochPhase.EPOCHSETUP + let dkgPhase1FinalView = proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + self.configurableMetadata.numViewsInDKGPhase - 1 + let dkgPhase2FinalView = proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + (2 * self.configurableMetadata.numViewsInDKGPhase) - 1 + let dkgPhase3FinalView = proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + (3 * self.configurableMetadata.numViewsInDKGPhase) - 1 emit EpochSetup(counter: proposedEpochMetadata.counter, nodeInfo: nodeInfoArray, firstView: proposedEpochMetadata.startView, finalView: proposedEpochMetadata.endView, collectorClusters: collectorClusters, randomSource: randomSource, - DKGPhase1FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + self.configurableMetadata.numViewsInDKGPhase - 1 as UInt64, - DKGPhase2FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + (2 as UInt64 * self.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, - DKGPhase3FinalView: proposedEpochMetadata.startView + self.configurableMetadata.numViewsInStakingAuction + (3 as UInt64 * self.configurableMetadata.numViewsInDKGPhase) - 1 as UInt64, + DKGPhase1FinalView: dkgPhase1FinalView, + DKGPhase2FinalView: dkgPhase2FinalView, + DKGPhase3FinalView: dkgPhase3FinalView, targetDuration: proposedTargetDuration, targetEndTime: proposedTargetEndTime) } @@ -1086,7 +1094,7 @@ access(all) contract FlowEpoch { /// The proposed Epoch counter is always the current counter plus 1 access(all) view fun proposedEpochCounter(): UInt64 { - return self.currentEpochCounter + 1 as UInt64 + return self.currentEpochCounter + 1 } access(all) fun automaticRewardsEnabled(): Bool { From 97baba8902e12b5953a968313390dfccfd3178b4 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Wed, 15 May 2024 12:30:06 -0400 Subject: [PATCH 119/160] generate assets --- contracts/epochs/FlowEpoch.cdc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index a9f21c60c..3095a3951 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -1124,7 +1124,7 @@ access(all) contract FlowEpoch { clusterQCs: [FlowClusterQC.ClusterQC], dkgPubKeys: [String]) { pre { - FlowEpoch.isValidPhaseConfiguration(numViewsInStakingAuction, numViewsInDKGPhase, numViewsInEpoch): + FlowEpoch.isValidPhaseConfiguration(auctionLen: numViewsInStakingAuction, dkgPhaseLen: numViewsInDKGPhase, epochLen: numViewsInEpoch): "Invalid startView and endView configuration" } From 926626a7c698c5afed4155999d8e23f01b304a47 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Wed, 15 May 2024 12:50:45 -0400 Subject: [PATCH 120/160] use common.AddressLocation --- lib/go/test/epoch_test_helpers.go | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/go/test/epoch_test_helpers.go b/lib/go/test/epoch_test_helpers.go index 3d377a758..64050e6a3 100644 --- a/lib/go/test/epoch_test_helpers.go +++ b/lib/go/test/epoch_test_helpers.go @@ -7,6 +7,7 @@ import ( "github.com/onflow/cadence" jsoncdc "github.com/onflow/cadence/encoding/json" + "github.com/onflow/cadence/runtime/common" "github.com/onflow/cadence/runtime/interpreter" "github.com/onflow/flow-core-contracts/lib/go/contracts" "github.com/onflow/flow-core-contracts/lib/go/templates" @@ -796,15 +797,17 @@ func verifyEpochRecover( epochAddress flow.Address, expectedRecover EpochRecover) { var emittedEvent EpochRecoverEvent - evtTypeStr := fmt.Sprintf("A.%s.FlowEpoch.EpochRecover", epochAddress.String()) + addrLocation := common.NewAddressLocation(nil, common.Address(epochAddress), "FlowEpoch") + evtTypeID := string(addrLocation.TypeID(nil, "FlowEpoch.EpochRecover")) var i uint64 i = 0 for i < 1000 { - results, _ := adapter.GetEventsForHeightRange(context.Background(), evtTypeStr, i, i) + results, _ := adapter.GetEventsForHeightRange(context.Background(), evtTypeID, i, i) for _, result := range results { for _, event := range result.Events { - if event.Type == evtTypeStr { + + if event.Type == evtTypeID { emittedEvent = EpochRecoverEvent(event) } } From 8ae7e38729f6c8911fe0304506b052c6fdf2f3c4 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Mon, 27 May 2024 22:42:30 -0400 Subject: [PATCH 121/160] add separate funcs recover new epoch and recover current epoch --- contracts/epochs/FlowEpoch.cdc | 181 ++++++++++++++++----- lib/go/templates/internal/assets/assets.go | 6 +- lib/go/test/flow_epoch_test.go | 52 ++++-- transactions/epoch/admin/recover_epoch.cdc | 36 ++-- 4 files changed, 207 insertions(+), 68 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 3095a3951..169dfed7e 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -484,22 +484,58 @@ access(all) contract FlowEpoch { FlowEpoch.account.storage.save(enabled, to: /storage/flowAutomaticRewardsEnabled) } - /// Ends the currently active epoch and starts a new one with the provided configuration. - /// This function saves the recovery epoch metadata in storage containing the full specification for the new epoch. - /// This meta data will be emitted in the EpochRecover service event in the next heart beat interval. - /// This function is used within sporks to recover the network from Epoch Fallback Mode (EFM). - access(all) fun recoverEpoch( - randomSource: String, + access(all) fun emitEpochRecoverEvent(epochCounter: UInt64, startView: UInt64, stakingEndView: UInt64, endView: UInt64, + numViewsInStakingAuction: UInt64, + numViewsInDKGPhase: UInt64, + nodeIDs: [String], + clusterAssignments: [[String]], + randomSource: String, targetDuration: UInt64, targetEndTime: UInt64, - clusterAssignments: [[String]], clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData], dkgPubKeys: [String], - nodeIDs: [String]) - { + ) { + + /// Construct the identity table for the recovery epoch + let nodes: [FlowIDTableStaking.NodeInfo] = [] + for nodeID in nodeIDs { + nodes.append(FlowIDTableStaking.NodeInfo(nodeID: nodeID)) + } + + let dkgPhase1FinalView = startView + numViewsInStakingAuction + numViewsInDKGPhase - 1 + let dkgPhase2FinalView = startView + numViewsInStakingAuction + (2 * numViewsInDKGPhase) - 1 + let dkgPhase3FinalView = startView + numViewsInStakingAuction + (3 * numViewsInDKGPhase) - 1 + + /// emit EpochRecover event + emit EpochRecover( + counter: epochCounter, + nodeInfo: nodes, + firstView: startView, + finalView: endView, + clusterAssignments: clusterAssignments, + randomSource: randomSource, + DKGPhase1FinalView: dkgPhase1FinalView, + DKGPhase2FinalView: dkgPhase2FinalView, + DKGPhase3FinalView: dkgPhase3FinalView, + targetDuration: targetDuration, + targetEndTime: targetEndTime, + clusterQCVoteData: clusterQCVoteData, + dkgPubKeys: dkgPubKeys, + ) + } + + /// Performs sanity checks for the provided epoch configuration. It will ensure the following; + /// - There is a valid phase configuration. + /// - All nodes in the node ids list have a weight > 0. + /// If the configuration is a valid configuration the the staking auction, + /// qc voting and dkg will be ended depending on the current epoch phase. + access(all) fun recoverEpochPreChecks(startView: UInt64, + stakingEndView: UInt64, + endView: UInt64, + nodeIDs: [String]) { pre { FlowEpoch.isValidPhaseConfiguration(auctionLen: stakingEndView-startView+1, dkgPhaseLen: FlowEpoch.configurableMetadata.numViewsInDKGPhase, epochLen: endView-startView+1): "Invalid startView, stakingEndView, and endView configuration" @@ -522,15 +558,93 @@ access(all) contract FlowEpoch { FlowEpoch.borrowClusterQCAdmin().forceStopVoting() FlowEpoch.borrowDKGAdmin().forceEndDKG() } + } + + /// Ends the currently active epoch and starts a new one with the provided configuration. + /// This meta data will be emitted in the EpochRecover service event. + /// This function is used within sporks to recover the network from Epoch Fallback Mode (EFM). + access(all) fun recoverNewEpoch(randomSource: String, + startView: UInt64, + stakingEndView: UInt64, + endView: UInt64, + targetDuration: UInt64, + targetEndTime: UInt64, + clusterAssignments: [[String]], + clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData], + dkgPubKeys: [String], + nodeIDs: [String]) { + self.recoverEpochPreChecks(startView: startView, stakingEndView: stakingEndView, endView: endView, nodeIDs: nodeIDs) + let numViewsInStakingAuction = FlowEpoch.configurableMetadata.numViewsInStakingAuction let numViewsInDKGPhase = FlowEpoch.configurableMetadata.numViewsInDKGPhase - + /// Create new EpochMetadata for the recovery epoch with the new values let newEpochMetadata = EpochMetadata( - /// When the network enters EFM the epoch counter will not be incremented - /// so it's safe to use current_epoch_counter + 1 - counter: FlowEpoch.proposedEpochCounter(), + /// Increment the epoch counter when recovering with a new epoch + counter: FlowEpoch.proposedEpochCounter(), + seed: randomSource, + startView: startView, + endView: endView, + stakingEndView: stakingEndView, + // The following fields will be overwritten in `calculateAndSetRewards` below + totalRewards: 0.0, + collectorClusters: [], + clusterQCs: [], + dkgKeys: dkgPubKeys) + + /// Save the new epoch meta data, it will be referenced as + /// the epoch progresses through each phase. + FlowEpoch.saveEpochMetadata(newEpochMetadata) + + /// Calculate rewards for the current epoch + /// and set the payout for the next epoch + FlowEpoch.calculateAndSetRewards() + + /// emit the epoch recover event + self.emitEpochRecoverEvent(epochCounter: FlowEpoch.proposedEpochCounter(), + startView: startView, + stakingEndView: stakingEndView, + endView: endView, + numViewsInStakingAuction: numViewsInStakingAuction, + numViewsInDKGPhase: numViewsInDKGPhase, + nodeIDs: nodeIDs, + clusterAssignments: clusterAssignments, + randomSource: randomSource, + targetDuration: targetDuration, + targetEndTime: targetEndTime, + clusterQCVoteData: clusterQCVoteData, + dkgPubKeys: dkgPubKeys, + ) + + /// Start a new Epoch, which increments the current epoch counter + FlowEpoch.startNewEpoch() + } + + /// Ends the currently active epoch and restarts it with the provided configuration. + /// This function is intended to update the current epoch configuration when a recovery + /// transaction needs to be submitted more than once. This meta data will be emitted in the + /// EpochRecover service event. This function is used within sporks to recover the network from Epoch Fallback Mode (EFM). + access(all) fun recoverCurrentEpoch( + randomSource: String, + startView: UInt64, + stakingEndView: UInt64, + endView: UInt64, + targetDuration: UInt64, + targetEndTime: UInt64, + clusterAssignments: [[String]], + clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData], + dkgPubKeys: [String], + nodeIDs: [String]) { + self.recoverEpochPreChecks(startView: startView, stakingEndView: stakingEndView, endView: endView, nodeIDs: nodeIDs) + + let numViewsInStakingAuction = FlowEpoch.configurableMetadata.numViewsInStakingAuction + let numViewsInDKGPhase = FlowEpoch.configurableMetadata.numViewsInDKGPhase + + /// Create new EpochMetadata for the recovery epoch with the new values. This epoch metadata will overwrite + /// the epoch metadata of the current epoch. + let epochMetadata: FlowEpoch.EpochMetadata = EpochMetadata( + counter: FlowEpoch.currentEpochCounter, seed: randomSource, startView: startView, endView: endView, @@ -539,46 +653,27 @@ access(all) contract FlowEpoch { totalRewards: 0.0, collectorClusters: [], clusterQCs: [], - dkgKeys: dkgPubKeys - ) + dkgKeys: dkgPubKeys ) - /// Save the new epoch meta data, it will be referenced as + /// Save the new epoch meta data, it will be referenced as /// the epoch progresses through each phase. - FlowEpoch.saveEpochMetadata(newEpochMetadata) - - /// Calculate rewards for the current epoch - /// and set the payout for the next epoch - FlowEpoch.calculateAndSetRewards() - - /// Construct the identity table for the recovery epoch - let nodes: [FlowIDTableStaking.NodeInfo] = [] - for nodeID in nodeIDs { - nodes.append(FlowIDTableStaking.NodeInfo(nodeID: nodeID)) - } - - let dkgPhase1FinalView = startView + numViewsInStakingAuction + numViewsInDKGPhase - 1 - let dkgPhase2FinalView = startView + numViewsInStakingAuction + (2 * numViewsInDKGPhase) - 1 - let dkgPhase3FinalView = startView + numViewsInStakingAuction + (3 * numViewsInDKGPhase) - 1 + FlowEpoch.saveEpochMetadata(epochMetadata) - /// emit EpochRecover event - emit EpochRecover( - counter: FlowEpoch.proposedEpochCounter(), - nodeInfo: nodes, - firstView: startView, - finalView: endView, + /// emit the epoch recover event + self.emitEpochRecoverEvent(epochCounter: FlowEpoch.currentEpochCounter, + startView: startView, + stakingEndView: stakingEndView, + endView: endView, + numViewsInStakingAuction: numViewsInStakingAuction, + numViewsInDKGPhase: numViewsInDKGPhase, + nodeIDs: nodeIDs, clusterAssignments: clusterAssignments, randomSource: randomSource, - DKGPhase1FinalView: dkgPhase1FinalView, - DKGPhase2FinalView: dkgPhase2FinalView, - DKGPhase3FinalView: dkgPhase3FinalView, targetDuration: targetDuration, targetEndTime: targetEndTime, clusterQCVoteData: clusterQCVoteData, dkgPubKeys: dkgPubKeys, ) - - /// Start a new Epoch, which increments the current epoch counter - FlowEpoch.startNewEpoch() } /// Ends the currently active epoch and starts a new one with the provided configuration. diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 7e0dbb4fc..4eb7667fd 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -47,7 +47,7 @@ // epoch/admin/deploy_epoch.cdc (1.192kB) // epoch/admin/deploy_qc_dkg.cdc (310B) // epoch/admin/pay_rewards.cdc (497B) -// epoch/admin/recover_epoch.cdc (1.74kB) +// epoch/admin/recover_epoch.cdc (2.267kB) // epoch/admin/reset_epoch.cdc (1.668kB) // epoch/admin/set_automatic_rewards.cdc (376B) // epoch/admin/set_bonus_tokens.cdc (624B) @@ -1304,7 +1304,7 @@ func epochAdminPay_rewardsCdc() (*asset, error) { return a, nil } -var _epochAdminRecover_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x41\x6b\xdb\x4c\x10\xbd\xeb\x57\x0c\x3e\x04\x1b\xbe\x28\x97\x8f\x1e\x4c\xdb\x90\xda\x0e\x84\x52\x48\x70\x9a\x4b\xc8\x61\xbc\x1a\x5b\x4b\xa4\x1d\x31\x3b\x8a\x62\x4a\xfe\x7b\x59\xad\x2b\x4b\x76\xea\x46\xa7\x9d\xd9\xf7\xde\x3e\xad\xde\xc8\x96\x15\x8b\xc2\x75\xc1\xcd\xa2\x62\x93\xc3\x5a\xb8\x84\x51\x57\x8f\x92\x1e\xe2\x66\x7e\x8f\xab\x82\x96\x8a\xcf\xd6\x6d\x7a\xd0\xe1\xc6\x80\x33\x2b\x6a\xaf\x24\x77\xb3\x1e\xbc\xeb\x8d\x92\xe4\xe2\x02\xee\x73\x02\x21\xc3\x2f\x24\xd1\x83\x0a\x3a\x8f\x46\x2d\x3b\x30\x42\xa8\xe4\x01\x5d\x06\x5e\x51\xd4\x03\x82\xa3\x06\xa8\x85\x5a\x07\x9a\x53\xcf\xbf\x2f\x51\x14\x0c\x3b\x15\x34\x1a\xe4\x95\xa1\xc9\xad\xc9\xa1\xb1\x45\x01\x6b\x16\x43\x2d\xc7\x91\x36\x2c\xcf\x40\xaf\x56\x61\x71\xfd\x23\x3d\x36\xe2\x49\x5e\xac\x21\xa0\x17\x72\x1a\xf9\x2b\x02\x2a\xad\x2a\x65\x10\xc4\x83\xad\x4a\xd8\x90\xf7\x94\xc1\x6a\x0b\x58\x14\xa1\xa1\x6c\xb8\x80\x0a\x45\xad\xb1\x15\x3a\x8d\x6f\x40\x68\xf2\x7e\x37\x6a\xd6\x55\x86\xda\x9a\xb2\xb2\x27\x07\x79\xaf\x61\xa3\xb1\x9a\xef\x2c\x37\x10\x9d\x65\xa8\x98\xc6\xcb\xb3\x7e\x70\x61\x3e\xe7\xba\xc8\x80\x5d\xb1\x0d\x66\xeb\xe0\xab\x13\xe0\x5a\xab\x5a\x81\xd7\x6d\xb5\x62\x56\xaf\x82\x15\xd4\x6a\x0b\xab\xdb\x69\x50\x84\xb6\xda\xdd\x2f\xad\xcb\xf3\xdd\x95\x9c\xeb\xeb\x39\xca\xc6\x27\xbd\xd3\xc6\x82\x2e\xe3\x72\xc9\xb5\x18\x9a\xc2\x52\xc5\xba\xcd\x7f\x09\xf4\x9e\xf6\xa3\x3d\x58\x6a\xa6\xf0\xf3\xc6\xe9\xa7\xff\x8f\xb6\x43\x66\x16\x2e\xfb\x3b\x86\x4e\x6d\x2a\xca\x86\x74\x5e\x0b\x06\x43\xa7\x30\x0b\x97\xdd\xdb\x92\xde\x87\x98\x98\xc9\x2b\xef\xed\xc6\x95\xe4\xd4\x4f\xe1\xf1\x31\xbe\xd0\xd3\xd3\xbb\xd8\xbb\xd9\x03\x2b\xcd\x51\x71\x0a\x8f\x83\x5c\xa7\xb3\x43\xc4\x81\x42\xf6\xbc\xb9\xad\x57\xdf\x69\x1b\x4e\xd9\x1d\x32\x44\x38\xce\xe8\x66\xde\xdb\x9e\xc0\xaf\xa4\x45\x54\x42\x15\x0a\x8d\x83\x51\x92\x29\x60\xad\xf9\xf8\x1b\x8b\x70\xf3\x80\x45\x4d\x13\x38\xbb\x32\x86\x6b\xa7\x81\xf2\x47\xaf\x20\x8d\x9f\xf4\x2a\x2b\xad\x83\x2f\x10\xe9\xa9\x57\x16\xdc\x50\xba\x6a\x05\x3e\x9f\x75\x93\x94\xb6\xc0\xaf\xe3\x30\xb6\xd3\xfd\x80\xa5\x18\xda\xcb\xc8\xba\x45\xcd\x27\x03\xdb\x97\x97\x50\xa1\xb3\x66\x3c\x9a\xb5\x31\x74\xac\x10\xa5\x77\x81\x6a\xe9\xf1\x5f\xb0\x3b\x1a\x2a\xd4\x7c\x34\x49\x3a\x9d\xbd\xcd\xb4\x3f\x8d\x07\x59\xeb\x57\xc3\xab\x3b\x7c\x7a\x09\xec\x96\xff\x64\x0c\x42\x39\xac\x4f\x73\xbb\xb0\xd2\x47\xd0\x87\xe9\x1d\xd6\x1f\xe1\x76\xa9\x1e\x94\xa7\x99\xef\x85\xfd\xb8\x07\xf0\x21\x95\xfe\x18\x1c\xb5\x4e\x2b\xf4\xc7\x60\xbf\x3e\xcd\xe9\x06\x63\xb7\x88\xf9\x7b\x4b\xde\x92\xdf\x01\x00\x00\xff\xff\x37\x70\x83\xc0\xcc\x06\x00\x00" +var _epochAdminRecover_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x54\xc1\x4e\xe3\x48\x10\xbd\xfb\x2b\x4a\x39\xa0\x44\x5a\xcc\x65\xb5\x07\x6b\x77\x11\x24\x41\x42\xa3\x19\x81\xc2\x70\x41\x1c\x2a\xed\x4a\xdc\xc2\xee\xb6\xaa\xcb\x98\x68\xc4\xbf\x8f\xda\x6d\x1c\x3b\x31\x99\xfb\x68\x38\xa0\xae\xee\xf7\x5e\xbf\x6a\xbf\x8a\x2e\x4a\xcb\x02\x37\xb9\xad\x97\xa5\x55\x19\x6c\xd8\x16\x30\xe9\xea\x49\xd4\x43\xdc\x2e\x1e\x70\x9d\xd3\x4a\xf0\x45\x9b\x6d\x0f\x3a\x3c\x18\x70\xe6\x79\xe5\x84\xf8\x7e\xde\x83\x77\x7b\x93\x28\xba\xb8\x80\x87\x8c\x80\x49\xd9\x57\xe2\xe0\x41\x18\x8d\x43\x25\xda\x1a\x50\x4c\x28\xe4\x00\x4d\x0a\x4e\x90\xc5\x01\x82\xa1\x1a\xa8\x81\x6a\x03\x92\x51\xcf\xbf\x2b\x90\x05\x94\x35\xc2\xa8\xc4\xcb\x8b\x85\x3a\xd3\x2a\x83\x5a\xe7\x39\x6c\x2c\x2b\x6a\x38\x86\xa4\xb6\xfc\x02\xf4\xa6\x05\x96\x37\x5f\xe3\x63\x23\x8e\xf8\x55\x2b\x02\x7a\x25\x23\x81\xbf\x26\xa0\x42\x8b\x50\x0a\x5e\xdc\xdb\x2a\xd9\x2a\x72\x8e\x52\x58\xef\x00\xf3\xdc\x6f\x88\x55\x36\x87\x12\x59\xb4\xd2\x25\x1a\x09\x1d\x10\xaa\xac\xbf\x1b\x34\xab\x32\x45\x69\x4c\x69\xde\x93\xbd\xbc\x13\x7f\x50\x6b\xc9\x5a\xcb\x35\x04\x67\x29\x0a\xc6\xe1\xf1\xb4\x1b\x3c\x98\xcb\x6c\x95\xa7\x60\x4d\xbe\xf3\x66\x2b\xef\xab\x13\xb0\x95\x94\x95\x80\xdd\x34\xd5\xda\x5a\x71\xc2\x58\x42\x25\x3a\xd7\xb2\x4b\xbc\x22\x34\x55\xfb\xbe\xb4\x29\xce\xdb\x27\x39\x97\xb7\x73\xe4\xad\x8b\x7a\xb7\x4d\x19\x4d\x6a\x8b\x95\xad\x58\x51\x02\x2b\x61\x6d\xb6\x7f\x45\xd0\xfb\x6b\x3e\xda\xa3\xa6\x3a\x81\xef\xb7\x46\xfe\xf9\xfb\xe8\xd8\x67\x66\x69\xd2\xcf\x31\x74\xea\x50\x90\xb7\x24\x8b\x8a\xd1\x1b\x3a\x85\x59\x9a\xf4\x41\x17\x34\x0e\x51\x21\x93\x57\xce\xe9\xad\x29\xc8\x88\x4b\xe0\xe9\x29\x34\xf4\xfc\x3c\x8a\xbd\x9f\x3f\x5a\xa1\x05\x0a\x26\xf0\x34\xc8\x75\x3c\x3f\x44\x1c\x28\xa4\x2f\xdb\xbb\x6a\xfd\x85\x76\xfe\x96\xf6\x92\x21\xc2\xd8\x94\x6e\x17\x9f\x1e\x6b\xa3\xe5\x1b\x85\xcc\x27\x70\x6d\x6d\x3e\x83\x1f\x51\x03\x29\x99\x4a\x64\x9a\xfa\x46\x88\x13\xc0\x4a\xb2\xe9\xb5\x65\xb6\xf5\x23\xe6\x15\xcd\xe0\xec\x4a\x29\x5b\x19\xf1\x94\x0f\xc1\x9c\x24\x7c\xf2\xab\xb4\xd0\x06\xfe\x83\x40\x8f\x9d\x58\xc6\x2d\xc5\xeb\x46\xe0\xdf\xb3\x6e\xd2\xe2\x06\xf8\xff\xd4\x8f\x75\xb2\x1f\xc0\x18\xfd\xf6\x2a\xb0\xee\x50\xb2\xd9\xc0\xf7\xe5\x25\x94\x68\xb4\x9a\x4e\xe6\x4d\x4c\x8d\x15\x08\xd2\x6d\xe0\x1a\x7a\xf8\xad\x68\xaf\x86\x12\x25\x9b\xcc\xa2\x4e\x47\x6f\x06\xed\xf7\x9a\x68\xc2\xd2\x35\x11\xb7\xc1\xfd\x00\x1e\x84\xb5\x5f\x0d\x1f\x77\x24\xba\xdd\xf2\x53\xe4\x20\xc5\xc3\x7a\x9c\xd3\xa5\x9a\x4e\xa1\x0e\xe3\x3d\xac\x4f\x71\xba\xb8\x0f\xca\x71\xc6\x58\xfa\x8f\xf7\x00\x4e\xb2\xfb\xf3\x70\xb4\x35\xce\xec\xcf\xc1\x7e\x3d\x8e\xed\x26\xa2\x5d\xec\x83\xf5\x0e\x94\x3b\xfa\x65\x0e\xe6\x15\x33\x19\xf9\x93\x85\xdf\x3a\x0b\x51\xf8\xff\x1e\xfd\x0c\x00\x00\xff\xff\xe7\xcf\xb9\x02\xdb\x08\x00\x00" func epochAdminRecover_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1320,7 +1320,7 @@ func epochAdminRecover_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/recover_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0x7, 0x67, 0xa6, 0x48, 0x11, 0x9d, 0x7b, 0x30, 0x4d, 0xeb, 0x1e, 0x38, 0xe9, 0xca, 0x67, 0xbc, 0xa0, 0xb2, 0x4c, 0x36, 0xab, 0x53, 0x9, 0x39, 0xf7, 0xf8, 0xd5, 0xb3, 0x1b, 0xf3, 0xa7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8c, 0xd2, 0xcb, 0x28, 0x65, 0xaa, 0x68, 0x81, 0xe, 0x85, 0xc0, 0xe, 0x3b, 0x82, 0x30, 0x48, 0xe7, 0xa5, 0x63, 0x96, 0x67, 0x53, 0x3e, 0x57, 0xff, 0x20, 0x94, 0xaf, 0xa0, 0xd1, 0x77, 0x13}} return a, nil } diff --git a/lib/go/test/flow_epoch_test.go b/lib/go/test/flow_epoch_test.go index 6998ee97c..4da367d4d 100644 --- a/lib/go/test/flow_epoch_test.go +++ b/lib/go/test/flow_epoch_test.go @@ -1588,6 +1588,7 @@ func TestEpochRecover(t *testing.T) { false, ) + // Perform epoch recovery with a new epoch and epoch recover overwriting the current epoch. t.Run("Can recover the epoch and have everything return to normal", func(t *testing.T) { epochTimingConfigResult := executeScriptAndCheck(t, b, templates.GenerateGetEpochTimingConfigScript(env), nil) @@ -1599,32 +1600,40 @@ func TestEpochRecover(t *testing.T) { targetEndTime uint64 = expectedTargetEndTime(epochTimingConfigResult, startEpochCounter+1) ) - tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateRecoverEpochScript(env), idTableAddress) - tx.AddArgument(CadenceString("stillSoRandom")) - tx.AddArgument(cadence.NewUInt64(startView)) - tx.AddArgument(cadence.NewUInt64(stakingEndView)) - tx.AddArgument(cadence.NewUInt64(endView)) - tx.AddArgument(cadence.NewUInt64(targetDuration)) - tx.AddArgument(cadence.NewUInt64(targetEndTime)) collectorClusters := make([]cadence.Value, 3) collectorClusters[0] = cadence.NewArray([]cadence.Value{CadenceString("node_1"), CadenceString("node_2"), CadenceString("node_3")}) collectorClusters[1] = cadence.NewArray([]cadence.Value{CadenceString("node_4"), CadenceString("node_5"), CadenceString("node_6")}) collectorClusters[2] = cadence.NewArray([]cadence.Value{CadenceString("node_7"), CadenceString("node_8"), CadenceString("node_9")}) - tx.AddArgument(cadence.NewArray(collectorClusters)) // collectorClusters - tx.AddArgument(cadence.NewArray(make([]cadence.Value, 0))) // clusterQCVoteData dkgPubKeys := []string{"pubkey_1"} dkgPubKeysCdc := make([]cadence.Value, len(dkgPubKeys)) for i, key := range dkgPubKeys { dkgPubKeysCdc[i], _ = cadence.NewString(key) } - tx.AddArgument(cadence.NewArray(dkgPubKeysCdc)) nodeIDs := make([]cadence.Value, len(ids)) for i, id := range ids { nodeIDs[i], _ = cadence.NewString(id) } - tx.AddArgument(cadence.NewArray(nodeIDs)) + + args := []cadence.Value{ + CadenceString("stillSoRandom"), + cadence.NewUInt64(startView), + cadence.NewUInt64(stakingEndView), + cadence.NewUInt64(endView), + cadence.NewUInt64(targetDuration), + cadence.NewUInt64(targetEndTime), + cadence.NewArray(collectorClusters), // collectorClusters + cadence.NewArray(make([]cadence.Value, 0)), // clusterQCVoteData + cadence.NewArray(dkgPubKeysCdc), + cadence.NewArray(nodeIDs), + cadence.NewBool(true), // recover EFM with a new epoch + } + + tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateRecoverEpochScript(env), idTableAddress) + for _, arg := range args { + tx.AddArgument(arg) + } signAndSubmit( t, b, tx, @@ -1671,5 +1680,26 @@ func TestEpochRecover(t *testing.T) { dkgPubKeys: dkgPubKeys, } verifyEpochRecover(t, adapter, idTableAddress, expectedRecoverEvent) + + // If epoch recover was rejected by the protocol state we can update the configuration + // for the epoch without creating a new one. + tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateRecoverEpochScript(env), idTableAddress) + // change random source + args[0] = CadenceString("somuchmorerandom") + // avoid initializing a new epoch + args[10] = cadence.NewBool(false) + for _, arg := range args { + tx.AddArgument(arg) + } + + signAndSubmit( + t, b, tx, + []flow.Address{idTableAddress}, + []sdkcrypto.Signer{IDTableSigner}, + false, + ) + + expectedRecoverEvent.randomSource = "somuchmorerandom" + verifyEpochRecover(t, adapter, idTableAddress, expectedRecoverEvent) }) } diff --git a/transactions/epoch/admin/recover_epoch.cdc b/transactions/epoch/admin/recover_epoch.cdc index 8f2dcdf06..c1f7560e4 100644 --- a/transactions/epoch/admin/recover_epoch.cdc +++ b/transactions/epoch/admin/recover_epoch.cdc @@ -17,21 +17,35 @@ transaction(randomSource: String, clusterAssignments: [[String]], clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData], dkgPubKeys: [String], - nodeIDs: [String]) { + nodeIDs: [String], + initNewEpoch: Bool) { prepare(signer: auth(BorrowValue) &Account) { let epochAdmin = signer.storage.borrow<&FlowEpoch.Admin>(from: FlowEpoch.adminStoragePath) ?? panic("Could not borrow epoch admin from storage path") - epochAdmin.recoverEpoch(randomSource: randomSource, - startView: startView, - stakingEndView: stakingEndView, - endView: endView, - targetDuration: targetDuration, - targetEndTime: targetEndTime, - clusterAssignments: clusterAssignments , - clusterQCVoteData: clusterQCVoteData, - dkgPubKeys: dkgPubKeys, - nodeIDs: nodeIDs) + if initNewEpoch { + epochAdmin.recoverNewEpoch(randomSource: randomSource, + startView: startView, + stakingEndView: stakingEndView, + endView: endView, + targetDuration: targetDuration, + targetEndTime: targetEndTime, + clusterAssignments: clusterAssignments , + clusterQCVoteData: clusterQCVoteData, + dkgPubKeys: dkgPubKeys, + nodeIDs: nodeIDs) + } else { + epochAdmin.recoverCurrentEpoch(randomSource: randomSource, + startView: startView, + stakingEndView: stakingEndView, + endView: endView, + targetDuration: targetDuration, + targetEndTime: targetEndTime, + clusterAssignments: clusterAssignments , + clusterQCVoteData: clusterQCVoteData, + dkgPubKeys: dkgPubKeys, + nodeIDs: nodeIDs) + } } } From 3ce24c2f0d7c6cbfd2370a1f04722ed2d7dadbc0 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Thu, 20 Jun 2024 12:46:14 -0400 Subject: [PATCH 122/160] - dont generate a new random source when overwriting the epoch metadata - generate random source in contract - update qcVoterData to match protocol struct - fix tests --- contracts/epochs/FlowClusterQC.cdc | 11 ++--- contracts/epochs/FlowEpoch.cdc | 51 ++++++++++++--------- lib/go/templates/internal/assets/assets.go | 6 +-- lib/go/test/epoch_test_helpers.go | 10 +++++ lib/go/test/flow_epoch_test.go | 52 ++++++++++++++-------- transactions/epoch/admin/recover_epoch.cdc | 9 ++-- 6 files changed, 82 insertions(+), 57 deletions(-) diff --git a/contracts/epochs/FlowClusterQC.cdc b/contracts/epochs/FlowClusterQC.cdc index 1783d9dea..2fad21696 100644 --- a/contracts/epochs/FlowClusterQC.cdc +++ b/contracts/epochs/FlowClusterQC.cdc @@ -261,17 +261,14 @@ access(all) contract FlowClusterQC { /// Represents the quorum certificate vote data for a signer /// of the certificate. access(all) struct ClusterQCVoteData { - /// The hex-encoded vote signatures from all the nodes in the cluster - access(all) let voteSignatures: [String] + /// The aggregated signature, hex-encoded, encompasses all individual vote signatures contributed by nodes across the cluster + access(all) let voteSignatures: String /// The node IDs that correspond to each vote access(all) let voterIDs: [String] - init(signatures: [String], message: String, voterIDs: [String]) { - pre { - signatures.length == voterIDs.length: "must have exactly one vote signature per signer ID" - } - self.voteSignatures = signatures + init(voteSignatures: String, voterIDs: [String]) { + self.voteSignatures = voteSignatures self.voterIDs = voterIDs } } diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 169dfed7e..10531db3c 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -403,6 +403,20 @@ access(all) contract FlowEpoch { } } + access(contract) fun generateRandomSource(): String { + /// random source must be a hex string of 32 characters (i.e 16 bytes or 128 bits) + /// `revertibleRandom` returns a UInt64 (8 bytes) + let randomLow = revertibleRandom().toBigEndianBytes() + let randomHigh = revertibleRandom().toBigEndianBytes() + var randomSource = String.encodeHex(randomHigh).concat(String.encodeHex(randomLow)) + assert ( + randomSource.length == 32, + message: "Random source must be a hex string of 32 characters" + ) + + return randomSource + } + /// The counter, or ID, of the current epoch access(all) var currentEpochCounter: UInt64 @@ -561,10 +575,10 @@ access(all) contract FlowEpoch { } /// Ends the currently active epoch and starts a new one with the provided configuration. - /// This meta data will be emitted in the EpochRecover service event. + /// This meta data will be emitted in the EpochRecover service event. This function differs + /// from recoverCurrentEpoch because it increments the epoch counter and will calculate rewards. /// This function is used within sporks to recover the network from Epoch Fallback Mode (EFM). - access(all) fun recoverNewEpoch(randomSource: String, - startView: UInt64, + access(all) fun recoverNewEpoch(startView: UInt64, stakingEndView: UInt64, endView: UInt64, targetDuration: UInt64, @@ -575,6 +589,7 @@ access(all) contract FlowEpoch { nodeIDs: [String]) { self.recoverEpochPreChecks(startView: startView, stakingEndView: stakingEndView, endView: endView, nodeIDs: nodeIDs) + let randomSource = FlowEpoch.generateRandomSource() let numViewsInStakingAuction = FlowEpoch.configurableMetadata.numViewsInStakingAuction let numViewsInDKGPhase = FlowEpoch.configurableMetadata.numViewsInDKGPhase @@ -623,11 +638,12 @@ access(all) contract FlowEpoch { /// Ends the currently active epoch and restarts it with the provided configuration. /// This function is intended to update the current epoch configuration when a recovery - /// transaction needs to be submitted more than once. This meta data will be emitted in the - /// EpochRecover service event. This function is used within sporks to recover the network from Epoch Fallback Mode (EFM). - access(all) fun recoverCurrentEpoch( - randomSource: String, - startView: UInt64, + /// transaction needs to be submitted more than once. This function differs + /// from recoverNewEpoch because it does not increment the epoch counter. It also + /// does not calculate and set rewards avoiding double paying rewards for the same epoch. + /// This meta data will be emitted in the EpochRecover service event. This function is used + /// within sporks to recover the network from Epoch Fallback Mode (EFM). + access(all) fun recoverCurrentEpoch(startView: UInt64, stakingEndView: UInt64, endView: UInt64, targetDuration: UInt64, @@ -637,23 +653,22 @@ access(all) contract FlowEpoch { dkgPubKeys: [String], nodeIDs: [String]) { self.recoverEpochPreChecks(startView: startView, stakingEndView: stakingEndView, endView: endView, nodeIDs: nodeIDs) - let numViewsInStakingAuction = FlowEpoch.configurableMetadata.numViewsInStakingAuction let numViewsInDKGPhase = FlowEpoch.configurableMetadata.numViewsInDKGPhase + let currentEpochMetadata = FlowEpoch.getEpochMetadata(FlowEpoch.currentEpochCounter) /// Create new EpochMetadata for the recovery epoch with the new values. This epoch metadata will overwrite /// the epoch metadata of the current epoch. let epochMetadata: FlowEpoch.EpochMetadata = EpochMetadata( counter: FlowEpoch.currentEpochCounter, - seed: randomSource, + seed: currentEpochMetadata!.seed, startView: startView, endView: endView, stakingEndView: stakingEndView, - // The following fields will be overwritten in `calculateAndSetRewards` below totalRewards: 0.0, collectorClusters: [], clusterQCs: [], - dkgKeys: dkgPubKeys ) + dkgKeys: dkgPubKeys) /// Save the new epoch meta data, it will be referenced as /// the epoch progresses through each phase. @@ -668,7 +683,7 @@ access(all) contract FlowEpoch { numViewsInDKGPhase: numViewsInDKGPhase, nodeIDs: nodeIDs, clusterAssignments: clusterAssignments, - randomSource: randomSource, + randomSource: currentEpochMetadata!.seed, targetDuration: targetDuration, targetEndTime: targetEndTime, clusterQCVoteData: clusterQCVoteData, @@ -778,15 +793,7 @@ access(all) contract FlowEpoch { let proposedNodeIDs = FlowEpoch.endStakingAuction() /// random source must be a hex string of 32 characters (i.e 16 bytes or 128 bits) - /// `revertibleRandom` returns a UInt64 (8 bytes) - let randomLow = revertibleRandom().toBigEndianBytes() - let randomHigh = revertibleRandom().toBigEndianBytes() - var randomSource = String.encodeHex(randomHigh).concat(String.encodeHex(randomLow)) - assert ( - randomSource.length == 32, - message: "Random source must be a hex string of 32 characters" - ) - + let randomSource = FlowEpoch.generateRandomSource() FlowEpoch.startEpochSetup(proposedNodeIDs: proposedNodeIDs, randomSource: randomSource) } diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 4eb7667fd..e23092ca1 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -47,7 +47,7 @@ // epoch/admin/deploy_epoch.cdc (1.192kB) // epoch/admin/deploy_qc_dkg.cdc (310B) // epoch/admin/pay_rewards.cdc (497B) -// epoch/admin/recover_epoch.cdc (2.267kB) +// epoch/admin/recover_epoch.cdc (2.137kB) // epoch/admin/reset_epoch.cdc (1.668kB) // epoch/admin/set_automatic_rewards.cdc (376B) // epoch/admin/set_bonus_tokens.cdc (624B) @@ -1304,7 +1304,7 @@ func epochAdminPay_rewardsCdc() (*asset, error) { return a, nil } -var _epochAdminRecover_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x54\xc1\x4e\xe3\x48\x10\xbd\xfb\x2b\x4a\x39\xa0\x44\x5a\xcc\x65\xb5\x07\x6b\x77\x11\x24\x41\x42\xa3\x19\x81\xc2\x70\x41\x1c\x2a\xed\x4a\xdc\xc2\xee\xb6\xaa\xcb\x98\x68\xc4\xbf\x8f\xda\x6d\x1c\x3b\x31\x99\xfb\x68\x38\xa0\xae\xee\xf7\x5e\xbf\x6a\xbf\x8a\x2e\x4a\xcb\x02\x37\xb9\xad\x97\xa5\x55\x19\x6c\xd8\x16\x30\xe9\xea\x49\xd4\x43\xdc\x2e\x1e\x70\x9d\xd3\x4a\xf0\x45\x9b\x6d\x0f\x3a\x3c\x18\x70\xe6\x79\xe5\x84\xf8\x7e\xde\x83\x77\x7b\x93\x28\xba\xb8\x80\x87\x8c\x80\x49\xd9\x57\xe2\xe0\x41\x18\x8d\x43\x25\xda\x1a\x50\x4c\x28\xe4\x00\x4d\x0a\x4e\x90\xc5\x01\x82\xa1\x1a\xa8\x81\x6a\x03\x92\x51\xcf\xbf\x2b\x90\x05\x94\x35\xc2\xa8\xc4\xcb\x8b\x85\x3a\xd3\x2a\x83\x5a\xe7\x39\x6c\x2c\x2b\x6a\x38\x86\xa4\xb6\xfc\x02\xf4\xa6\x05\x96\x37\x5f\xe3\x63\x23\x8e\xf8\x55\x2b\x02\x7a\x25\x23\x81\xbf\x26\xa0\x42\x8b\x50\x0a\x5e\xdc\xdb\x2a\xd9\x2a\x72\x8e\x52\x58\xef\x00\xf3\xdc\x6f\x88\x55\x36\x87\x12\x59\xb4\xd2\x25\x1a\x09\x1d\x10\xaa\xac\xbf\x1b\x34\xab\x32\x45\x69\x4c\x69\xde\x93\xbd\xbc\x13\x7f\x50\x6b\xc9\x5a\xcb\x35\x04\x67\x29\x0a\xc6\xe1\xf1\xb4\x1b\x3c\x98\xcb\x6c\x95\xa7\x60\x4d\xbe\xf3\x66\x2b\xef\xab\x13\xb0\x95\x94\x95\x80\xdd\x34\xd5\xda\x5a\x71\xc2\x58\x42\x25\x3a\xd7\xb2\x4b\xbc\x22\x34\x55\xfb\xbe\xb4\x29\xce\xdb\x27\x39\x97\xb7\x73\xe4\xad\x8b\x7a\xb7\x4d\x19\x4d\x6a\x8b\x95\xad\x58\x51\x02\x2b\x61\x6d\xb6\x7f\x45\xd0\xfb\x6b\x3e\xda\xa3\xa6\x3a\x81\xef\xb7\x46\xfe\xf9\xfb\xe8\xd8\x67\x66\x69\xd2\xcf\x31\x74\xea\x50\x90\xb7\x24\x8b\x8a\xd1\x1b\x3a\x85\x59\x9a\xf4\x41\x17\x34\x0e\x51\x21\x93\x57\xce\xe9\xad\x29\xc8\x88\x4b\xe0\xe9\x29\x34\xf4\xfc\x3c\x8a\xbd\x9f\x3f\x5a\xa1\x05\x0a\x26\xf0\x34\xc8\x75\x3c\x3f\x44\x1c\x28\xa4\x2f\xdb\xbb\x6a\xfd\x85\x76\xfe\x96\xf6\x92\x21\xc2\xd8\x94\x6e\x17\x9f\x1e\x6b\xa3\xe5\x1b\x85\xcc\x27\x70\x6d\x6d\x3e\x83\x1f\x51\x03\x29\x99\x4a\x64\x9a\xfa\x46\x88\x13\xc0\x4a\xb2\xe9\xb5\x65\xb6\xf5\x23\xe6\x15\xcd\xe0\xec\x4a\x29\x5b\x19\xf1\x94\x0f\xc1\x9c\x24\x7c\xf2\xab\xb4\xd0\x06\xfe\x83\x40\x8f\x9d\x58\xc6\x2d\xc5\xeb\x46\xe0\xdf\xb3\x6e\xd2\xe2\x06\xf8\xff\xd4\x8f\x75\xb2\x1f\xc0\x18\xfd\xf6\x2a\xb0\xee\x50\xb2\xd9\xc0\xf7\xe5\x25\x94\x68\xb4\x9a\x4e\xe6\x4d\x4c\x8d\x15\x08\xd2\x6d\xe0\x1a\x7a\xf8\xad\x68\xaf\x86\x12\x25\x9b\xcc\xa2\x4e\x47\x6f\x06\xed\xf7\x9a\x68\xc2\xd2\x35\x11\xb7\xc1\xfd\x00\x1e\x84\xb5\x5f\x0d\x1f\x77\x24\xba\xdd\xf2\x53\xe4\x20\xc5\xc3\x7a\x9c\xd3\xa5\x9a\x4e\xa1\x0e\xe3\x3d\xac\x4f\x71\xba\xb8\x0f\xca\x71\xc6\x58\xfa\x8f\xf7\x00\x4e\xb2\xfb\xf3\x70\xb4\x35\xce\xec\xcf\xc1\x7e\x3d\x8e\xed\x26\xa2\x5d\xec\x83\xf5\x0e\x94\x3b\xfa\x65\x0e\xe6\x15\x33\x19\xf9\x93\x85\xdf\x3a\x0b\x51\xf8\xff\x1e\xfd\x0c\x00\x00\xff\xff\xe7\xcf\xb9\x02\xdb\x08\x00\x00" +var _epochAdminRecover_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x54\x41\x4f\xe3\x3c\x10\xbd\xe7\x57\x8c\x7a\x40\xad\xf4\x11\x2e\x9f\xf6\x50\xed\x2e\x82\xb6\x48\x68\xb5\x2b\x10\x2c\x17\xc4\x61\xea\x4c\x1b\x0b\xc7\x8e\xc6\x13\x42\xb5\xe2\xbf\xaf\x1c\x87\x34\x81\xd0\x3d\xaf\xb4\x3d\x54\x9e\xf1\x7b\xcf\xcf\xf6\x73\x74\x51\x3a\x16\xb8\x30\xae\x5e\x95\x4e\xe5\xb0\x61\x57\xc0\xa4\xab\x27\x49\x0f\x71\xb9\xbc\xc5\xb5\xa1\x1b\xc1\x47\x6d\xb7\x3d\xe8\x70\x62\xc0\x59\x98\xca\x0b\xf1\xf5\xa2\x07\xef\x7a\x93\x24\x39\x39\x81\xdb\x9c\x80\x49\xb9\x27\xe2\xe8\x41\x18\xad\x47\x25\xda\x59\x50\x4c\x28\xe4\x01\x6d\x06\x5e\x90\xc5\x03\x82\xa5\x1a\xa8\x81\x6a\x0b\x92\x53\xcf\xbf\x2f\x90\x05\x94\xb3\xc2\xa8\x24\xc8\x8b\x83\x3a\xd7\x2a\x87\x5a\x1b\x03\x1b\xc7\x8a\x1a\x8e\x25\xa9\x1d\x3f\x02\x3d\x6b\x81\xd5\xc5\xf7\xf4\xbd\x11\x4f\xfc\xa4\x15\x01\x3d\x91\x95\xc8\x5f\x13\x50\xa1\x45\x28\x83\x20\x1e\x6c\x95\xec\x14\x79\x4f\x19\xac\x77\x80\xc6\x84\x86\x38\xe5\x0c\x94\xc8\xa2\x95\x2e\xd1\x4a\xdc\x01\xa1\xca\xfb\xdd\xa8\x59\x95\x19\x4a\x63\x4a\xf3\x9e\x1c\xe4\xbd\x84\x89\x5a\x4b\xde\x5a\xae\x21\x3a\xcb\x50\x30\x8d\x87\xa7\xfd\xe0\xc0\x7c\xee\x2a\x93\x81\xb3\x66\x17\xcc\x56\xc1\x57\x27\xe0\x2a\x29\x2b\x01\xb7\x69\xaa\xb5\x73\xe2\x85\xb1\x84\x4a\xb4\xd1\xb2\x9b\x07\x45\x68\xaa\xf6\x7c\x69\x53\x1c\xb7\x47\x72\x2c\xcf\xc7\xc8\x5b\x9f\xf4\x56\x9b\x36\x57\x72\xa7\xa9\x9e\xc3\xcf\x4b\x2b\x9f\xfe\xff\x2f\x81\xde\xcf\xc7\x44\xac\x6c\xf6\x31\x86\x0e\x4d\x0a\xf2\x96\x64\x59\x31\x86\xe5\x0e\x61\x56\x36\xbb\xd5\x05\x8d\x43\x54\x4c\xdc\x99\xf7\x7a\x6b\x0b\xb2\xe2\xe7\x70\x7f\x7f\x23\xac\xed\xf6\xe1\x61\x14\x7b\xbd\xb8\x73\x42\x4b\x14\x9c\xc3\xfd\x20\xb5\xe9\xe2\x2d\xe2\x8d\x42\xf6\xb8\xbd\xaa\xd6\xdf\x68\x17\x56\x69\x17\x19\x22\xac\xcb\xe8\x72\xf9\xe1\xb4\xb6\x5a\x7e\x50\x4c\xf4\x1c\xce\x9d\x33\x33\xf8\x95\x34\x90\x92\xa9\x44\xa6\x69\xd8\x08\xf1\x1c\xb0\x92\x7c\x7a\xee\x98\x5d\x7d\x87\xa6\xa2\x19\x1c\x9d\x29\xe5\x2a\x2b\x81\xf2\x2a\x68\x48\xe2\x85\x9e\x65\x85\xb6\xf0\x05\x22\x3d\xf5\xe2\x18\xb7\x94\xae\x1b\x81\xcf\x47\xdd\x3b\x4a\x1b\xe0\xd7\x69\x78\xb4\xf3\xfd\xf3\x4a\x31\xb4\x6f\x22\xeb\x0a\x25\x9f\x0d\x7c\x9f\x9e\x42\x89\x56\xab\xe9\x64\xd1\x84\xd0\x3a\x81\x28\xdd\xc6\xa9\xa1\xc7\x2f\x41\xbb\x34\x94\x28\xf9\x64\x96\x74\x3a\x7a\x33\xd8\x7e\x6f\x13\x4d\x58\xba\x4d\xa4\x6d\x2c\x5f\x81\xfd\x28\x76\xc3\xe1\xb1\x7e\x94\xca\x61\x3d\xce\xe9\x52\x4a\x87\x50\x6f\xe3\x3a\xac\x0f\x71\xba\xf8\x0e\xca\x71\xc6\x58\x9a\xdf\xf7\x00\x0e\xb2\xfb\xf9\x7e\xd7\x1a\x67\xf6\x73\xbd\x1f\x8f\x63\xbb\x84\xb7\x83\x7d\x50\x5e\x80\x8c\xa7\x3f\xde\xeb\xa2\x62\x26\x2b\xff\xee\xf6\xaf\xba\xdb\x24\xfe\xbf\x24\xbf\x03\x00\x00\xff\xff\xcb\xe4\x26\x10\x59\x08\x00\x00" func epochAdminRecover_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1320,7 +1320,7 @@ func epochAdminRecover_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/recover_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8c, 0xd2, 0xcb, 0x28, 0x65, 0xaa, 0x68, 0x81, 0xe, 0x85, 0xc0, 0xe, 0x3b, 0x82, 0x30, 0x48, 0xe7, 0xa5, 0x63, 0x96, 0x67, 0x53, 0x3e, 0x57, 0xff, 0x20, 0x94, 0xaf, 0xa0, 0xd1, 0x77, 0x13}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0x19, 0xa7, 0x7c, 0x7f, 0x6d, 0x3b, 0x55, 0x3b, 0xa6, 0x8a, 0x65, 0xc9, 0xef, 0x1a, 0xe7, 0x48, 0xe2, 0xec, 0x1, 0xcf, 0x41, 0xb2, 0x9f, 0x95, 0x8c, 0x5d, 0x37, 0x50, 0x5d, 0xcc, 0xc8}} return a, nil } diff --git a/lib/go/test/epoch_test_helpers.go b/lib/go/test/epoch_test_helpers.go index 64050e6a3..2bfd9373a 100644 --- a/lib/go/test/epoch_test_helpers.go +++ b/lib/go/test/epoch_test_helpers.go @@ -575,6 +575,7 @@ func verifyEpochMetadata( metadataFields := cadence.FieldsMappedByName(result.(cadence.Struct)) counter := metadataFields["counter"] + assertEqual(t, cadence.NewUInt64(expectedMetadata.counter), counter) if len(expectedMetadata.seed) != 0 { @@ -674,6 +675,15 @@ func verifyConfigMetadata( assertEqual(t, cadence.NewUInt8(expectedMetadata.currentEpochPhase), result) } +func getEpochMetadata( + t *testing.T, + b emulator.Emulator, + env templates.Environment, + counter cadence.Value) []cadence.Value { + result := executeScriptAndCheck(t, b, templates.GenerateGetEpochMetadataScript(env), [][]byte{jsoncdc.MustEncode(counter)}) + return result.(cadence.Struct).Fields +} + // Verifies that the epoch start event values are equal to the provided expected values func verifyEpochStart( t *testing.T, diff --git a/lib/go/test/flow_epoch_test.go b/lib/go/test/flow_epoch_test.go index 4da367d4d..779a203d3 100644 --- a/lib/go/test/flow_epoch_test.go +++ b/lib/go/test/flow_epoch_test.go @@ -4,6 +4,7 @@ import ( "encoding/hex" "fmt" "math/rand" + "strings" "testing" "time" @@ -1617,7 +1618,6 @@ func TestEpochRecover(t *testing.T) { } args := []cadence.Value{ - CadenceString("stillSoRandom"), cadence.NewUInt64(startView), cadence.NewUInt64(stakingEndView), cadence.NewUInt64(endView), @@ -1644,19 +1644,23 @@ func TestEpochRecover(t *testing.T) { advanceView(t, b, env, idTableAddress, IDTableSigner, 1, "BLOCK", false) - verifyEpochMetadata(t, b, env, - EpochMetadata{ - counter: startEpochCounter + 1, - seed: "stillSoRandom", - startView: startView, - endView: endView, - stakingEndView: stakingEndView, - totalRewards: "0.0", - rewardsBreakdownArray: 0, - rewardsPaid: false, - collectorClusters: nil, - clusterQCs: nil, - dkgKeys: dkgPubKeys}) + // seed is not manually set when recovering the epoch, it is randomly generated + metadataFields := getEpochMetadata(t, b, env, cadence.NewUInt64(startEpochCounter+1)) + seed := strings.ReplaceAll(metadataFields[1].String(), `"`, "") + expectedMetadata := EpochMetadata{ + counter: startEpochCounter + 1, + seed: seed, + startView: startView, + endView: endView, + stakingEndView: stakingEndView, + totalRewards: "0.0", + rewardsBreakdownArray: 0, + rewardsPaid: false, + collectorClusters: nil, + clusterQCs: nil, + dkgKeys: dkgPubKeys, + } + verifyEpochMetadata(t, b, env, expectedMetadata) result := executeScriptAndCheck(t, b, templates.GenerateGetDKGEnabledScript(env), nil) assert.Equal(t, cadence.NewBool(false), result) @@ -1670,7 +1674,7 @@ func TestEpochRecover(t *testing.T) { firstView: startView, finalView: endView, collectorClusters: collectorClusters, - randomSource: "stillSoRandom", + randomSource: seed, dkgPhase1FinalView: startView + numStakingViews + numDKGViews - 1, dkgPhase2FinalView: startView + numStakingViews + (2 * numDKGViews) - 1, dkgPhase3FinalView: startView + numStakingViews + (3 * numDKGViews) - 1, @@ -1684,10 +1688,16 @@ func TestEpochRecover(t *testing.T) { // If epoch recover was rejected by the protocol state we can update the configuration // for the epoch without creating a new one. tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateRecoverEpochScript(env), idTableAddress) - // change random source - args[0] = CadenceString("somuchmorerandom") + + // change startView and endView + newStartView := startView + 1 + args[0] = CadenceUInt64(newStartView) + + newEndView := endView + 1 + args[2] = CadenceUInt64(newEndView) + // avoid initializing a new epoch - args[10] = cadence.NewBool(false) + args[9] = cadence.NewBool(false) for _, arg := range args { tx.AddArgument(arg) } @@ -1699,7 +1709,11 @@ func TestEpochRecover(t *testing.T) { false, ) - expectedRecoverEvent.randomSource = "somuchmorerandom" + expectedRecoverEvent.firstView = newStartView + expectedRecoverEvent.finalView = newEndView + expectedRecoverEvent.dkgPhase1FinalView = newStartView + numStakingViews + numDKGViews - 1 + expectedRecoverEvent.dkgPhase2FinalView = newStartView + numStakingViews + (2 * numDKGViews) - 1 + expectedRecoverEvent.dkgPhase3FinalView = newStartView + numStakingViews + (3 * numDKGViews) - 1 verifyEpochRecover(t, adapter, idTableAddress, expectedRecoverEvent) }) } diff --git a/transactions/epoch/admin/recover_epoch.cdc b/transactions/epoch/admin/recover_epoch.cdc index c1f7560e4..24ea2c902 100644 --- a/transactions/epoch/admin/recover_epoch.cdc +++ b/transactions/epoch/admin/recover_epoch.cdc @@ -8,8 +8,7 @@ import FlowClusterQC from "FlowClusterQC" // state with the new Epoch data. // This transaction should only be used with the output of the bootstrap utility: // util epoch efm-recover-tx-args -transaction(randomSource: String, - startView: UInt64, +transaction(startView: UInt64, stakingEndView: UInt64, endView: UInt64, targetDuration: UInt64, @@ -25,8 +24,7 @@ transaction(randomSource: String, ?? panic("Could not borrow epoch admin from storage path") if initNewEpoch { - epochAdmin.recoverNewEpoch(randomSource: randomSource, - startView: startView, + epochAdmin.recoverNewEpoch(startView: startView, stakingEndView: stakingEndView, endView: endView, targetDuration: targetDuration, @@ -36,8 +34,7 @@ transaction(randomSource: String, dkgPubKeys: dkgPubKeys, nodeIDs: nodeIDs) } else { - epochAdmin.recoverCurrentEpoch(randomSource: randomSource, - startView: startView, + epochAdmin.recoverCurrentEpoch(startView: startView, stakingEndView: stakingEndView, endView: endView, targetDuration: targetDuration, From 548f22f402155c87a00351cdb11933f9af3eeb2a Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Mon, 15 Apr 2024 12:03:38 -0500 Subject: [PATCH 123/160] fix typos in transactions --- lib/go/contracts/go.sum | 2 - lib/go/templates/go.sum | 2 - lib/go/templates/internal/assets/assets.go | 54 +++++++++---------- lib/go/templates/manifest.mainnet.json | 8 +-- lib/go/templates/manifest.testnet.json | 8 +-- transactions/flowToken/burn_tokens.cdc | 4 +- transactions/flowToken/create_forwarder.cdc | 6 +-- transactions/flowToken/mint_tokens.cdc | 4 +- .../flowToken/scripts/get_balance.cdc | 4 +- transactions/flowToken/scripts/get_supply.cdc | 2 +- transactions/flowToken/setup_account.cdc | 4 +- transactions/flowToken/transfer_tokens.cdc | 4 +- .../stakingCollection/transfer_delegator.cdc | 2 +- .../stakingCollection/transfer_node.cdc | 2 +- 14 files changed, 51 insertions(+), 55 deletions(-) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 33ee21e7b..5617d867b 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1623,8 +1623,6 @@ github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876 github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240402163945-74687e7a5b9d h1:CeM0F/t8f6UYKIP/PzHApt0BfX5FLCbFiSW3tkXHLyA= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240402163945-74687e7a5b9d/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240409211504-f122847cbd9b h1:B6IRYFFZz7Z1K9f7w+JDA1MPSWzUvKPBYsuryocf+HU= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240409211504-f122847cbd9b/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8 h1:BqgQgXktxVFv8erjCaSHpL0CP+pa5M8g655GyF/t4JM= diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index 561c88f5c..5478c5ca8 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -1619,8 +1619,6 @@ github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240402160548-a9c331660956 github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240402160548-a9c331660956/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= -github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240402163945-74687e7a5b9d h1:9BUEgH1oFUMeOab++UNgok9Jk+rejQIrIHYKNe/TD20= -github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240402163945-74687e7a5b9d/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240409211504-f122847cbd9b h1:KTnwl1Ttla6Yg39sWeJoyCAzl9GgUHYjvh2d8qBcdUE= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240409211504-f122847cbd9b/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index e23092ca1..d0357b598 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -72,13 +72,13 @@ // epoch/scripts/get_proposed_counter.cdc (113B) // epoch/scripts/get_randomize.cdc (125B) // epoch/scripts/get_target_end_time_for_epoch.cdc (263B) -// flowToken/burn_tokens.cdc (1.131kB) -// flowToken/create_forwarder.cdc (2.025kB) -// flowToken/mint_tokens.cdc (1.019kB) -// flowToken/scripts/get_balance.cdc (420B) -// flowToken/scripts/get_supply.cdc (208B) -// flowToken/setup_account.cdc (1.349kB) -// flowToken/transfer_tokens.cdc (1.327kB) +// flowToken/burn_tokens.cdc (1.097kB) +// flowToken/create_forwarder.cdc (1.97kB) +// flowToken/mint_tokens.cdc (985B) +// flowToken/scripts/get_balance.cdc (386B) +// flowToken/scripts/get_supply.cdc (193B) +// flowToken/setup_account.cdc (1.315kB) +// flowToken/transfer_tokens.cdc (1.293kB) // idTableStaking/admin/add_approved_and_limits.cdc (1.635kB) // idTableStaking/admin/add_approved_nodes.cdc (1.055kB) // idTableStaking/admin/capability_end_epoch.cdc (1.374kB) @@ -271,8 +271,8 @@ // stakingCollection/stake_unstaked_tokens.cdc (849B) // stakingCollection/test/deposit_tokens.cdc (878B) // stakingCollection/test/get_tokens.cdc (684B) -// stakingCollection/transfer_delegator.cdc (2.094kB) -// stakingCollection/transfer_node.cdc (2.208kB) +// stakingCollection/transfer_delegator.cdc (2.093kB) +// stakingCollection/transfer_node.cdc (2.207kB) // stakingCollection/unstake_all.cdc (758B) // stakingCollection/update_networking_address.cdc (776B) // stakingCollection/withdraw_from_machine_account.cdc (838B) @@ -1804,7 +1804,7 @@ func epochScriptsGet_target_end_time_for_epochCdc() (*asset, error) { return a, nil } -var _flowtokenBurn_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x3d\x73\x9c\x30\x10\xed\xf9\x15\x2f\x57\x78\xa0\x30\x34\x99\x14\x37\x97\x38\xb6\x67\x5c\xa6\x72\x9c\x5a\xc0\xde\xa1\x09\x48\xcc\x4a\x04\x7b\x3c\xfe\xef\x19\xad\x40\x86\xe2\xae\x38\x40\xda\x7d\x1f\xfb\xb6\xaa\xf0\xdc\x69\x07\xcf\xca\x38\xd5\x78\x6d\x0d\xb4\x83\x82\xa7\x61\xec\x95\x27\x9c\x2d\x87\xcf\xcd\xbd\xef\x94\xcf\xaa\x0a\x8d\x9d\xfa\x16\x35\x61\x72\xd4\xa2\x7e\x83\xef\x08\xaa\x1d\xb4\x81\x6a\x1a\x3b\x19\x0f\x6f\x51\x4f\x6c\xe0\xed\x5f\x32\x2e\x34\x9d\xd9\x0e\xa1\x50\x33\x9c\xb7\x4c\x2d\x5e\xd4\xd4\x07\xbc\x4c\xb4\x90\x34\x68\x73\x81\x1a\x04\x62\x5e\x59\x14\x46\xc5\x6a\x20\x4f\x1c\x70\x03\xd9\x46\x55\x96\xe9\x61\xb4\xec\xf1\x34\x99\x8b\xae\x7b\x7a\x0e\x94\x91\xee\xb0\x3b\x3b\xa4\xca\xde\xce\xbb\xaa\xf5\xfb\x90\x65\x1b\xe4\x3c\x0a\x39\xe2\xf7\x93\x7e\xfd\xf6\xb5\xc0\x7b\x96\x01\x40\x55\x45\xe9\x60\x72\x76\xe2\x86\x64\x30\xe8\x6c\xdf\xba\xa8\x4e\x4c\xc7\x53\xc5\x84\x9a\x82\xad\x60\x8f\x5a\x41\xe8\xc9\xe3\x5f\x80\x38\xe2\xe7\x4e\x62\x19\x67\x92\x8a\x64\xa8\x47\xdc\x24\x85\xe5\x7d\x38\xd1\xce\xb3\xf2\x96\x63\xe1\xc8\x34\x2a\xa6\xdc\xe9\x8b\x21\x3e\x42\x4d\xbe\xcb\x1f\x2c\xb3\x9d\x5f\x54\x3f\x51\x81\x9b\xfb\x18\x4b\xb2\xb0\xd8\xf8\xa3\x7d\xd7\xb2\x9a\x57\xc5\x6b\x46\x4b\x98\x22\x11\xda\x48\x60\xea\x42\xa9\xd5\x51\x7f\x2e\xe3\xed\xe9\x16\x91\xb7\x5c\x8a\xca\x5a\x98\x4f\xa2\x62\x6f\x6e\xa5\x2b\xb6\x86\xc4\xf1\x8f\x3c\x50\x1f\x51\x2d\x20\xd5\x79\xbd\x97\xeb\xe2\x4b\xa2\x0e\xbf\x72\x5e\x80\x52\x42\xf1\x59\xec\xcc\x3d\x32\x85\x35\x56\x60\x3a\x13\x93\x09\x39\xd9\xed\xaa\xca\x7f\xca\xf0\x9a\xcd\x58\xf6\xfd\x8a\xcb\x6b\xc9\x5c\x37\x24\x65\xc5\xce\xcf\xdd\x1d\x46\x65\x74\x93\x1f\x1e\x65\xe7\x8d\xf5\x88\xf8\xd7\xd5\xaf\xba\x0f\x11\xea\x23\x5a\xa7\x57\x6a\x26\x4f\x78\x4f\xf8\x61\x8b\x64\xf3\x58\xa2\x4a\x8e\xca\x46\xc6\xf3\x8b\xe6\x07\xb9\xcd\x3f\x25\xa5\x97\xd8\x57\x86\x87\x48\x77\x8b\xa9\xd3\xed\xe7\x02\x6c\x66\xde\x92\xf3\x6c\xdf\x96\xb6\x45\xd6\x47\x86\xff\x01\x00\x00\xff\xff\xc1\xb3\x5c\x5c\x6b\x04\x00\x00" +var _flowtokenBurn_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x3d\x6f\xdb\x30\x10\xdd\xf5\x2b\x5e\x3d\x04\xd6\x10\x69\x29\x3a\x18\x69\xd3\x24\x40\xc6\x4e\x69\x3a\x53\xd2\xd9\x22\x2a\x91\xc2\xf1\x54\x25\x08\xf2\xdf\x0b\x1e\x25\x59\x1e\xec\xc1\xb4\x79\x77\xef\x83\xef\xca\x12\x2f\xad\x0d\x10\x36\x2e\x98\x5a\xac\x77\xb0\x01\x06\x42\xfd\xd0\x19\x21\x1c\x3d\xc7\xbf\x9b\xba\xb4\x46\xb2\xb2\x44\xed\xc7\xae\x41\x45\x18\x03\x35\xa8\xde\x21\x2d\xc1\x34\xbd\x75\x30\x75\xed\x47\x27\x10\x8f\x6a\x64\x07\xf1\x7f\xc9\x85\x38\x74\x64\xdf\xc7\x46\xcb\x08\xe2\x99\x1a\xbc\x9a\xb1\x8b\x78\x99\x6a\x21\x1d\xb0\xee\x04\xd3\x2b\xc4\xb4\xb0\x18\x0c\x86\x4d\x4f\x42\x1c\x71\x23\xd9\x46\x55\x96\xd9\x7e\xf0\x2c\xd8\x3d\x8f\xee\x64\xab\x8e\x5e\x22\xe7\xee\x7c\xdd\xf9\x69\xbe\xca\x36\x73\xfb\x44\x73\xc0\xef\x67\xfb\xf6\xed\x6b\x8e\x8f\x2c\x03\x80\xb2\x4c\xc2\xc0\x14\xfc\xc8\x35\xa9\x6d\xb4\xbe\x6b\x42\xe2\x56\x4b\xe9\xd6\x30\xa1\xa2\x28\x3a\x8a\xa7\x46\x11\x3a\x12\xfc\x8b\x10\x07\xfc\xbc\xd0\x54\x24\xc7\x6b\x93\x3e\xd9\x01\x37\xab\xc2\xe2\x21\xde\xd8\x20\x6c\xc4\x73\x6a\x1c\x98\x06\xc3\xb4\x0f\xf6\xe4\x88\x0f\x30\xa3\xb4\xfb\x47\xcf\xec\xa7\x57\xd3\x8d\x94\xe3\xe6\x21\x3d\xfa\x6a\x61\xb6\xf1\xc7\x4a\xdb\xb0\x99\x16\xc5\x4b\x02\x73\x54\x2a\x11\xd6\x69\x1c\xe6\x44\xeb\x68\xa0\xee\x58\xa4\xea\xdd\x2d\x12\x6f\x31\x37\x15\x95\x32\xdf\xa9\x8a\x4b\x73\x0b\x5d\xbe\x35\xa4\x8e\x7f\xec\x23\xf5\x01\xe5\x0c\x52\x1e\x97\xba\x96\xf3\x2f\x2b\x75\xfc\x14\xd3\x0c\xb4\x26\x94\xce\xfc\xc2\xdc\x13\x53\x5c\x52\x03\xa6\x23\x31\xb9\x98\x93\xdf\x2e\xa2\x7e\xaf\x19\x5e\xb3\x99\xda\xbe\x5f\x71\x79\x2d\x99\xeb\x86\xb4\x2d\xbf\xf0\x73\x7f\x8f\xc1\x38\x5b\xef\x77\x4f\xba\xd1\xce\x0b\x12\xfe\x75\xf5\x8b\xee\x5d\x82\xfa\x4c\xd6\xe9\x8d\xea\x51\x08\x1f\x2b\x7e\xdc\x22\xdd\x3c\xd6\xa8\x56\x47\x45\xad\xcf\xf3\x8b\xa6\x47\xad\xee\xcf\x92\xd6\x1f\x69\xae\x88\x87\x4a\x0f\xb3\xa9\xbb\xdb\xf3\x02\x6c\xde\xbc\xa1\x20\xec\xdf\xe7\xb1\x59\xd6\x67\x86\xff\x01\x00\x00\xff\xff\xde\x62\x75\xd0\x49\x04\x00\x00" func flowtokenBurn_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1820,11 +1820,11 @@ func flowtokenBurn_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/burn_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0xab, 0x79, 0xb7, 0x68, 0xcb, 0x5f, 0xd1, 0x64, 0x9d, 0xc7, 0xd0, 0x52, 0xf7, 0xf0, 0x89, 0x6f, 0x7d, 0x6e, 0x44, 0xe6, 0xe9, 0x29, 0x7d, 0xed, 0xf4, 0x61, 0x3e, 0x14, 0xb1, 0x1d, 0xe0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf3, 0x6, 0x6d, 0x6c, 0xe, 0xf1, 0xf1, 0xb5, 0x9f, 0xc4, 0x8e, 0x3, 0xb6, 0x63, 0x4e, 0x91, 0x7a, 0x99, 0x8c, 0x65, 0x9c, 0x5, 0xb9, 0xb0, 0xc7, 0x5b, 0x56, 0x88, 0xc4, 0xf4, 0x75, 0xa5}} return a, nil } -var _flowtokenCreate_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\x4d\x6f\xe3\x36\x10\xbd\xf3\x57\x4c\x73\xd8\xda\x81\x23\xa3\x5f\x17\x23\x5b\x60\x9b\x22\x40\x2f\x3d\xb4\xc1\x5e\xbb\x63\x72\x64\xb2\x2b\x91\x02\x39\xb2\x60\x2c\xf2\xdf\x0b\x7e\x88\x96\x0c\x24\xa7\xfa\x64\x72\x66\xde\xbc\xf7\x66\xa8\xfd\xfd\xbd\x10\x2f\xda\x04\x60\x8f\x36\xa0\x64\xe3\x2c\x98\x00\x08\x4c\xfd\xd0\x21\x13\xb4\xce\xc7\xe3\x22\xce\x1a\x19\xa4\x1b\x3b\x05\x47\x82\x31\x90\x12\xec\x20\x10\xc3\x38\x00\x5a\x40\x29\xdd\x68\x19\xd8\xc5\xe2\x09\xbd\x02\x45\x83\x0b\x86\x49\x01\xbb\xaf\x64\x43\x8c\xa1\x75\xac\xc9\x83\x27\x49\xe6\x4c\xbe\x11\xe2\x8f\x16\xd0\x5e\x9c\x25\x08\x64\x55\x58\x26\xc7\x3e\xfe\xfb\x00\xcf\x19\x91\x3c\xfc\x55\xea\x76\x82\x35\xd5\x13\x4c\xa6\xeb\xe0\xdf\x31\x70\x6d\xce\xda\x05\x5a\x60\xc5\xf4\xcf\x38\x76\x9c\x95\x68\x0c\x70\x24\xb2\x22\x2a\xc0\x90\xc2\x9e\xa4\x19\x0c\x59\x06\xb4\x0a\xa8\x37\xf1\x0f\xd0\x39\xde\xa4\x22\x63\x95\x91\xc8\x14\xc4\xa4\x8d\xd4\x89\xdd\xdc\x30\xaa\xd4\x73\xc3\xa6\x18\x3c\xe1\x65\x07\x26\xea\x03\xd7\xb6\x0f\x52\xa3\xb1\x10\xc8\x9f\x8d\x24\x98\xd0\x72\xa2\xd6\x3b\x6b\xd8\x79\x98\xb4\x8b\x63\x28\x80\xc6\x9e\xc4\x95\xbe\xe1\x1d\x18\x06\x89\x16\x26\x64\xa9\x33\xad\x14\x0a\x44\x30\x69\xf2\xb4\x20\x00\x12\x7b\x82\xd6\xbb\xbe\x11\xe2\x6f\xa6\xa1\x64\xe6\x69\xe5\x51\x05\x98\x0c\xeb\x5c\x50\x55\xf8\x83\x10\x3f\x34\xf0\xa2\x09\x9e\x47\x7b\x32\xc7\x8e\xe0\x25\x65\x48\x67\xd9\xa3\x8c\x2e\x30\xf9\x16\x25\x41\xd0\x69\x1f\xb0\xf3\x84\xea\x12\xf7\x42\xd1\xd0\xb9\x0b\x29\x08\xae\xa7\x44\x4a\xfc\x98\xd1\x70\x18\x3a\x23\x31\xe2\xf1\x1a\xaf\xa0\x2c\xaa\x1b\xf1\x53\x2e\x5a\x4c\xa4\xac\x57\x49\xd6\x78\x26\xc0\x32\xd0\xb8\xac\x9c\xf6\x39\x03\x7b\x42\x26\x25\x00\x20\x0d\x32\xb0\xf3\xa4\xc0\x58\x30\x1c\xd2\x09\x4f\x94\xb5\x23\x0c\xe3\xb1\x33\x41\x93\xaa\xbb\x24\x7e\x6e\xe0\xf7\x44\x24\xf9\xf9\x25\xa9\x7f\xae\x33\x69\xa4\x92\x5f\xae\xe4\xd3\x96\x2a\xd3\xb6\xe4\x17\x34\xc5\x2f\x4d\xdc\x59\x40\xb0\x34\xc1\xa7\x7c\x79\x80\xa7\xc4\x2c\xc1\xce\x7a\xac\xf3\x3d\x76\xdd\x65\x97\xe8\xb2\x26\x0b\x7e\xb4\xb9\x73\x16\xf2\x4f\x1d\x4d\x6e\xbd\x78\x94\xb9\xe8\x44\xcc\xc6\x9e\x60\xf5\x20\xe2\xe8\x57\x8d\xf2\x02\xdf\x2c\x7a\x23\xee\xf7\x42\x98\x7e\x70\x9e\xeb\xbc\xf3\xb8\x13\xc0\xdd\xea\xee\xae\x66\x76\x6e\x5a\x65\xcd\xe7\x9a\x71\x63\x5a\xc9\xbb\xb9\xbd\x13\x62\x21\x66\x33\x7f\x12\x0e\xf0\x49\x29\x4f\x21\x6c\xe1\x9b\x48\x0a\x07\x4f\x03\x7a\xda\xa0\x94\x7c\x00\x1c\x59\x6f\x7e\x73\xde\xbb\xe9\x33\x76\x23\xed\xe0\x09\x07\x3c\x9a\xce\xb0\xa1\xb0\x85\x0f\xc5\xef\x58\x0e\xe5\xd7\x11\x2f\x96\xe9\x63\xf4\xac\x64\xd5\xb6\xdb\x9a\x1c\x7f\x8d\x5c\x60\x36\x27\xe2\xc7\x0f\xdf\x56\x66\x34\xb3\xd5\xaf\xbf\x6e\xf6\x69\x8b\xe4\xbe\x9d\x7d\x98\x63\xdb\xef\xc4\x8a\xc2\x39\xed\xeb\xe3\xc3\xad\x3f\x4d\x1e\xf5\x9f\x34\xd5\x2f\xdd\xa6\xd2\x3d\x5c\x99\x5f\x39\x46\x2b\x9a\xb2\xcb\x4d\xc0\x33\x6d\x1e\x1f\x12\xfa\x0e\xd8\x1d\x60\x5f\x42\x57\x4a\x15\x78\x7b\xa5\x64\xda\xc4\x4a\xe2\x00\x1f\x33\xe2\xff\xa3\x7a\x61\x7c\x69\x23\x71\x68\xa4\x26\xf9\x75\x73\x1b\xac\x62\x56\xad\x47\x5b\x1e\xe6\x3b\x5d\x56\x30\xaf\xe2\xfa\x6f\x65\x79\x7d\x3d\x4f\x6f\xa8\x9c\x4d\x34\x21\x8c\xf4\xae\xde\xf7\x3c\x7d\x5b\x4a\x11\xf2\x1e\xf2\x4a\xc9\x92\xf0\x6e\x15\x41\x3e\xc0\x9b\x76\xd4\xcc\xcc\xe5\x55\xbc\x8a\xff\x02\x00\x00\xff\xff\x9f\xd7\x66\x7a\xe9\x07\x00\x00" +var _flowtokenCreate_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\x4d\x6f\xe3\x36\x10\xbd\xf3\x57\xbc\xe6\xb0\xb5\x03\x47\x46\xbf\x2e\x46\xb6\xc0\x36\x45\x80\x5e\x7a\x68\x83\xbd\x76\xc7\xd4\xc8\x64\x57\x26\x05\x72\x64\xc1\x08\xf2\xdf\x0b\x92\xb2\x2c\xa5\x48\x4e\xeb\x93\xc8\x99\x79\xf3\xde\xcc\xa3\xb7\xb7\xb7\x4a\x3d\x19\x1b\x21\x81\x5c\x24\x2d\xd6\x3b\xd8\x08\x82\xf0\xb1\x6b\x49\x18\x8d\x0f\xe9\x38\x8b\x8b\x21\x81\xf6\x7d\x5b\x63\xcf\xe8\x23\xd7\x4a\x3c\x22\x0b\xfa\x0e\xe4\x40\x5a\xfb\xde\x09\xc4\xa7\xe2\x81\x42\x8d\x9a\x3b\x1f\xad\x70\x0d\xf1\x5f\xd9\xc5\x14\x23\xe7\xc5\x70\x40\x60\xcd\xf6\xc4\xa1\x52\xea\x8f\x06\xe4\xce\xde\x31\x22\xbb\x3a\xce\x93\x53\x9f\xf0\x7d\xc4\x63\x41\xe4\x80\xbf\xc6\xba\x8d\x12\xc3\xd3\x09\x83\x6d\x5b\xfc\xdb\x47\x99\x9a\x8b\xf1\x91\x67\x58\x29\xfd\x33\xf5\xad\x14\x25\x86\x22\xf6\xcc\x4e\x25\x05\x14\x73\x38\xb0\xb6\x9d\x65\x27\x20\x57\x83\x8f\x36\x7d\x80\x4f\xe9\x26\x17\x59\x57\x5b\x4d\xc2\x51\x0d\xc6\x6a\x93\xd9\x5d\x1a\x26\x95\xe6\xd2\xb0\x1a\x07\x3c\xd0\x79\x03\x9b\xf4\xc1\x37\xcd\x9d\x36\x64\x1d\x22\x87\x93\xd5\x8c\x81\x9c\x64\x6a\x47\xef\xac\xf8\x80\xc1\xf8\xb4\x86\x11\xd0\xba\x83\xba\xd2\xb7\xb2\x81\x15\x68\x72\x18\x48\xb4\x29\xb4\x72\x28\x32\x63\x30\x1c\x78\x46\x00\x9a\x8e\x8c\x26\xf8\x63\xa5\xd4\xdf\xc2\xdd\x98\x59\xb6\x55\x56\x15\x31\x58\x31\xa5\x60\x52\x11\x76\x4a\xfd\x50\xe1\xc9\x30\x1e\x7b\x77\xb0\xfb\x96\xf1\x94\x33\xb4\x77\x12\x48\xa7\x29\x08\x87\x86\x34\x23\x9a\xec\x07\x6a\x03\x53\x7d\x4e\xbe\xa8\xb9\x6b\xfd\x99\x6b\x44\x7f\xe4\x4c\x4a\xfd\x58\xd0\xa8\xeb\x5a\xab\x29\xe1\xc9\x12\x6f\x44\x99\x55\x57\xea\xa7\x52\x34\xdb\xc8\x68\xaf\x31\xd9\xd0\x89\x41\xe3\x42\x93\x59\x25\xfb\xb9\x00\x07\x26\xe1\x5a\x01\xc8\x8b\x8c\xe2\x03\xd7\xb0\x0e\x56\x62\x3e\xd1\x81\x8b\x76\x42\xd7\xef\x5b\x1b\x0d\xd7\x93\x97\xd4\xcf\x15\x7e\xcf\x44\xf2\x3c\xbf\x64\xf5\x8f\xd3\x4e\x2a\x5d\xeb\x2f\x57\xf2\xd9\xa5\xb5\x6d\x1a\x0e\x33\x9a\xea\x97\x2a\x79\x16\x04\xc7\x03\x3e\x95\xcb\x1d\x1e\x32\xb3\x0c\x7b\xd1\xe3\x7c\x38\x52\xdb\x9e\x37\x99\xae\x18\x76\x08\xbd\x2b\x9d\x8b\x90\x7f\xa6\xd5\x94\xd6\xb3\x47\x59\x8a\x0e\x2c\x62\xdd\x01\x8b\x07\x91\x56\xbf\x68\x54\x0c\xfc\xca\xe8\x95\xba\xdd\x2a\x65\x8f\x9d\x0f\x82\x9b\xcb\xc2\xb3\xe2\x9b\xeb\x75\xeb\x87\x57\x57\xaf\x66\x72\xa3\xd4\x8c\xd5\xea\xf2\xb6\x77\xf8\x54\xd7\x81\x63\x5c\xe3\x59\x65\xaa\x5d\xe0\x8e\x02\xaf\x48\x6b\xd9\x81\x7a\x31\xab\xdf\x7c\x08\x7e\xf8\x4c\x6d\xcf\x1b\x3c\x50\x47\x7b\xdb\x5a\xb1\x1c\xd7\xf8\x30\x0e\x2e\x95\x63\xfc\xb5\x2c\x33\x57\x7c\x4c\xe2\xc7\xac\xa9\xed\x7a\x4a\x4e\xbf\x4a\xcf\x30\xab\x03\xcb\xfd\x87\xe7\x85\xd0\xea\x32\xb3\x97\x5f\x57\xdb\x6c\x07\xbd\x6d\x2e\x92\x2f\xb1\xf5\x77\x6a\x41\xe1\x94\x8d\x77\x7f\x87\xff\xb9\x23\xef\xec\x4f\x1e\xa6\xbf\xac\xd5\x44\x77\x77\x65\x7e\xe5\x98\x46\x51\x8d\xa6\xac\x22\x9d\x78\x75\x7f\x97\xd1\x37\x10\xbf\xc3\x76\x0c\x5d\x29\x4d\xc0\xeb\x2b\x25\xdb\x64\x56\x9a\x3a\x7c\x2c\x88\xdf\x46\xf5\x6c\xf0\x63\x1b\x4d\x5d\xa5\x0d\xeb\xaf\xab\xd7\xc1\x49\xcc\xa2\x75\xef\xc6\x17\xf6\x4e\x97\x05\xcc\x8b\xba\x7e\x2d\x46\x3e\x3d\x83\x87\x37\x54\x5e\x86\x68\x63\xec\xf9\x5d\xbd\xef\xcd\xf4\x6d\x29\xa3\x90\xf7\x90\x17\x4a\xe6\x84\x37\x8b\x08\xc9\x0e\x6f\x8e\x63\xca\x2c\x5c\x5e\xd4\x8b\xfa\x2f\x00\x00\xff\xff\xc9\xf6\xa1\xae\xb2\x07\x00\x00" func flowtokenCreate_forwarderCdcBytes() ([]byte, error) { return bindataRead( @@ -1840,11 +1840,11 @@ func flowtokenCreate_forwarderCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/create_forwarder.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x52, 0xf4, 0x68, 0x6a, 0x7f, 0xc6, 0x10, 0x5d, 0xeb, 0x73, 0x26, 0xb1, 0xf5, 0xf9, 0xea, 0x93, 0x64, 0xae, 0xa6, 0x4, 0x9d, 0x63, 0xa4, 0xdc, 0xfa, 0x8f, 0xa1, 0x28, 0x46, 0xf4, 0x43, 0x5a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x67, 0x7d, 0x4c, 0x99, 0x45, 0x71, 0x4b, 0xe1, 0xb8, 0x16, 0xb3, 0x3, 0x87, 0x19, 0x76, 0x31, 0x44, 0x73, 0x67, 0x49, 0x28, 0x11, 0xa3, 0x4b, 0xc2, 0x54, 0xed, 0x96, 0x8a, 0xed, 0x41, 0x47}} return a, nil } -var _flowtokenMint_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x31\x6f\xdb\x30\x10\x85\x77\xfd\x8a\x83\x86\x40\x06\x1a\x69\x29\x3a\x08\x4e\x02\x77\xc8\xd6\x0e\x6d\x92\x9d\xa2\xce\xf2\xa1\x14\x29\x1c\x4f\x71\x0a\x23\xff\xbd\x20\x29\xc9\x56\x5a\x57\x8b\x61\xf2\xdd\x77\xef\xdd\x91\xfa\xc1\xb1\xc0\xe3\x68\x3b\x6a\x0c\x3e\xb9\x5f\x68\x61\xcf\xae\x87\x7c\x75\x96\x67\xb3\xd2\xb8\xe3\x4a\x35\xff\xcf\xb3\xac\xaa\x2a\x78\x3a\x90\x07\x61\x65\xbd\xd2\x42\xce\x42\x4f\x56\x3c\x48\x90\x78\x18\x3d\xd9\x0e\xe4\x80\xa0\xb4\x76\xa3\x15\x90\x83\x12\xf0\xe2\x18\x7d\x3c\x0f\x3c\x48\x0d\x76\x6d\x4f\x16\x18\xbd\x1b\x59\xe3\x99\x4e\x49\xe9\x91\x5f\x49\x2f\xa4\x2c\xbb\xe8\x5a\x30\x6a\x1a\x08\xad\xd4\xb0\x6b\x5b\x46\xef\x3f\x81\xea\x83\xae\x86\xe7\x47\x7a\xfb\xf2\x79\x03\xa7\x2c\x03\x00\x30\x28\xc9\x5e\xec\x57\xc3\xcd\x12\xa9\x8c\x27\xe4\x85\x95\x38\x5e\x8b\x7f\xa0\x46\x7a\x45\xae\xe1\xe6\xb4\x9a\x54\x39\xdf\xbc\x27\xfc\xc0\x38\x28\xc6\xc2\x53\x67\x83\x5c\x8d\x72\x28\xbe\x3a\x66\x77\x7c\x51\x66\xc4\x0d\xdc\xec\x52\x82\xc5\x51\xf8\x3c\x9a\x7d\x79\xb6\x05\x77\x90\x00\x65\x98\x95\xea\x70\x11\x86\xaf\x6c\x22\x6f\x7b\xcd\xfa\x7d\x11\x96\x55\x43\x35\x15\x57\xfb\x59\x17\x65\x9b\x15\xec\xe1\x01\x06\x65\x49\x17\xf9\xcf\xd8\x31\xcc\xdb\x3a\x89\x33\x8f\x86\x40\x85\xa2\x7c\xf3\x2f\xb3\x73\x78\xb8\x83\x0e\x65\x0a\x76\xde\xc6\xba\x53\xa9\xd5\xa0\x1a\x32\x24\x84\x7e\xc9\x70\x6d\x9c\xf7\x45\x35\x8c\x8d\x21\x7d\x76\x3f\xdf\x5d\x0b\xf0\x6c\x55\x63\x82\x6b\x48\x70\xe0\xd9\x1e\xe3\x1e\x19\xad\xc6\x3c\xd5\x4e\xcb\xc2\x37\xd4\xa3\x20\x9c\x16\x60\x58\x78\x78\xc2\xc8\xb0\xbd\xfd\xb8\x95\x52\x33\x2a\xc1\xef\x78\xfc\x16\x25\x85\x32\xc6\x1d\xb1\xdd\x4d\x2f\x2d\xbd\xb8\xcd\xdf\xb0\xf6\x45\x8d\x46\x02\x31\xb1\xcb\xf0\x13\x23\xf9\x42\x7d\x28\xfe\xcf\x94\xcb\x16\x07\xe7\x49\xa6\xf5\x6e\x6f\x2f\xe0\x17\x85\x2d\x7a\x61\xf7\x7b\xea\x35\xe5\x7d\xff\x13\x00\x00\xff\xff\x4d\x4d\x2d\xec\xfb\x03\x00\x00" +var _flowtokenMint_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x4f\x6f\xdb\x30\x0c\xc5\xef\xfe\x14\x44\x0e\x85\x03\xac\xf6\x65\xd8\xc1\x48\x5b\x64\x87\xde\xb6\xc3\xd6\xf6\x4e\xcb\x8c\x43\x4c\x96\x0c\x8a\x6e\x3a\x04\xfd\xee\x83\xe4\x3f\x49\xba\x65\xbe\x18\x90\x1e\x7f\x7c\x8f\x14\x77\xbd\x17\x85\xd5\xe3\xe0\x5a\xae\x2d\x3d\xf9\x5f\xe4\x56\xd9\x72\x6c\xfd\x61\x3a\xca\xca\xb2\x84\xa7\x3d\x07\x50\x41\x17\xd0\x28\x7b\x07\x1d\x3b\x0d\xa0\x51\x12\x60\x08\xec\x5a\xd0\x3d\x01\x1a\xe3\x07\xa7\xa0\x7b\x54\x08\xea\x85\x42\x3a\x8f\x3c\x48\x40\xd8\x36\x1d\x3b\x10\x0a\x7e\x10\x43\x27\x3a\x8f\xca\x40\xf2\xca\x66\x21\x65\xd9\x59\xd7\x5c\xc8\x70\xcf\xe4\xb4\x82\x6d\xd3\x08\x85\xf0\x09\xb0\x8b\xba\x0a\x9e\x1f\xf9\xed\xcb\xe7\x35\x1c\xb3\x0c\x00\xc0\x92\x8e\xf6\x52\xbf\x0a\x6e\x96\x48\x45\x3a\xe1\xa0\x82\xea\xe5\x52\xfc\x83\x0c\xf1\x2b\x49\x05\x37\xc7\x8b\xd1\x14\xf3\xcd\xfb\x88\xef\x85\x7a\x14\xca\x03\xb7\x2e\xca\x71\xd0\x7d\xfe\xd5\x8b\xf8\xc3\x0b\xda\x81\xd6\x70\xb3\x1d\x13\x2c\x8e\xe2\x17\xc8\xee\x8a\x93\x2d\xb8\x83\x11\x50\xc4\x59\x61\x4b\x8b\x30\x7e\x45\x9d\x78\x9b\x6b\xd6\xef\xf3\x9d\xf8\xae\x82\x72\x2a\x2e\x77\xb3\x2e\xc9\xd6\x17\xb0\x87\x07\xe8\xd1\xb1\xc9\x57\x3f\x53\xc7\x38\x6f\xe7\x35\xcd\x3c\x19\x02\x8c\x45\xab\xf5\xbf\xcc\xce\xe1\xe1\x0e\x5a\xd2\x29\xd8\x69\x1b\x97\x9d\x0a\x83\x3d\xd6\x6c\x59\x99\xc2\x92\xe1\xda\x38\xef\xf3\xb2\x1f\x6a\xcb\xe6\xe4\x7e\xbe\xbb\x16\xe0\xd9\x61\x6d\xa3\x6b\x18\xe1\x20\xb3\x3d\xa1\x1d\x09\x39\x43\xab\xb1\x76\x5a\x16\xbd\x91\x19\x94\xe0\xb8\x00\xe3\xc2\xe3\x13\x26\x81\xcd\xed\xc7\xad\x14\x46\x08\x95\xbe\xd3\xe1\x5b\x92\xe4\x68\xad\x3f\x50\xb3\x9d\x5e\xda\xf8\xe2\xd6\x7f\xc3\x9a\x17\x1c\xac\x46\xe2\xc8\x2e\xe2\x2f\x45\x0a\x39\x7e\x28\xfe\xcf\x94\x8b\x86\x7a\x1f\x58\xa7\xf5\x6e\x6e\xcf\xe0\x67\x85\x0d\x05\x15\xff\x7b\xea\x35\xe5\x7d\xff\x13\x00\x00\xff\xff\x16\x70\x6d\xf2\xd9\x03\x00\x00" func flowtokenMint_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1860,11 +1860,11 @@ func flowtokenMint_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/mint_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x85, 0x9a, 0xca, 0x71, 0x4a, 0xfb, 0x5f, 0xd5, 0x56, 0xf3, 0x5f, 0xb8, 0xc1, 0xd8, 0xfe, 0x87, 0xff, 0x71, 0x1d, 0x2f, 0x26, 0x65, 0x2, 0x7, 0xfd, 0x3e, 0xa1, 0xab, 0x25, 0xc9, 0x2d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xae, 0x30, 0x7d, 0x2c, 0x8d, 0x1f, 0x73, 0x3, 0x9d, 0x1e, 0xd3, 0x49, 0xfc, 0x7c, 0x58, 0x2c, 0xa9, 0xaa, 0xf8, 0x47, 0x77, 0x34, 0x19, 0x92, 0x27, 0x2f, 0xc0, 0xf1, 0x59, 0x66, 0xa2, 0x5c}} return a, nil } -var _flowtokenScriptsGet_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\xcb\x4e\xf3\x30\x10\x85\xf7\x7e\x8a\xa3\x2c\xfe\x3f\xd9\x24\x1b\xc4\xa2\x02\xaa\x82\xd4\x07\x40\x85\xfd\xc4\x19\xb7\x23\x1c\x3b\xf2\x85\x22\x55\x7d\x77\x94\xe6\x82\xea\x95\xed\x39\x73\xfc\xf9\x4c\xd3\xe0\x70\x92\x88\xa8\x83\x0c\x09\x81\xa9\x8b\x48\x27\x46\x4b\x96\x9c\x66\x18\x61\xdb\xc1\x1b\x90\x03\x69\xed\xb3\x4b\xff\x23\xf6\xd6\x9f\x0f\xfe\x8b\x1d\x5e\x27\x9d\x52\xd2\x0f\x3e\x24\xec\xb3\x3b\x4a\x6b\x79\xaa\x9a\xe0\x7b\x14\x77\x77\xc5\xaa\x5c\x3d\x66\xd5\x72\x2e\x94\x22\xad\x39\xc6\x92\xac\xad\x60\xb2\x43\x4f\xe2\xca\xf9\xf9\x0d\x76\x5d\x17\x38\xc6\x6a\x83\x8f\xbd\xfc\x3c\x3e\xe0\xa2\x14\x00\x58\x4e\xf8\xa6\x6c\xd3\x3b\x1b\x3c\xe3\xc8\x69\x37\xb5\x2c\xad\xd5\x4d\x36\xae\x5a\xd3\x40\xad\x58\x49\xc2\xb1\x6e\x7d\x08\xfe\xfc\xf4\xef\x72\x47\x5a\xcf\x7f\xbb\xbe\x94\xcd\x90\x5b\x2b\xba\x31\x0b\xe3\x5c\xfa\x33\xdc\x6e\x31\x90\x13\x5d\x16\x6f\x3e\xdb\x0e\xce\x27\x4c\xb6\x4b\x44\x08\x6c\x38\xf0\xb8\x4b\xfe\x96\xf1\xe7\xc8\x5a\x54\x13\x7c\xe0\x94\x83\x5b\xf9\xeb\x79\x00\xea\xaa\x7e\x03\x00\x00\xff\xff\x0c\xc2\x32\xf4\xa4\x01\x00\x00" +var _flowtokenScriptsGet_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\xcb\x4a\xc3\x40\x14\x86\xf7\xf3\x14\x3f\x59\x68\xb2\x49\x36\xe2\xa2\xa8\xa5\x0a\x79\x00\xa9\xee\x4f\x26\x67\xda\x83\xd3\x99\x30\x17\x2b\x94\xbe\xbb\xe4\x66\x71\x56\xc3\xf9\x2f\x7c\xfc\x4d\x83\xfd\x51\x22\xa2\x0e\x32\x24\x04\xa6\x3e\x22\x1d\x19\x1d\x59\x72\x9a\x61\x84\x6d\x0f\x6f\x40\x0e\xa4\xb5\xcf\x2e\xdd\x47\xb4\xd6\x9f\xf7\xfe\x8b\x1d\x5e\x67\x9f\x52\x72\x1a\x7c\x48\x28\xda\xec\x0e\xd2\x59\x9e\xe4\xe2\x76\x5e\x13\x85\x52\xa4\x35\xc7\x58\x92\xb5\x15\x4c\x76\x38\x91\xb8\x72\x29\xdf\x60\xd7\xf7\x81\x63\xac\x36\xf8\x68\xe5\xe7\xf1\x01\x17\xa5\x00\xc0\x72\xc2\x37\x65\x9b\xde\xd9\xe0\x19\x07\x4e\xbb\x39\xb2\x46\xab\xc9\x36\xbe\x5a\xd3\x40\x9d\x58\x49\xc2\xb1\xee\x7c\x08\xfe\xfc\x74\x77\xf9\x87\x56\x2f\xe4\xd7\x97\xb2\x19\x72\x67\x45\x37\x66\x65\x5c\xa4\x5b\xe1\x76\x8b\x81\x9c\xe8\xb2\x78\xf3\xd9\xf6\x70\x3e\x61\xae\x5d\x07\x40\x60\xc3\x81\xc7\x5f\xf2\xd3\x82\x9f\x23\x6b\x51\xcd\xf0\x81\x53\x0e\xee\x8f\xbf\x5e\xe6\x55\x57\xf5\x1b\x00\x00\xff\xff\x48\x8f\x86\x9f\x82\x01\x00\x00" func flowtokenScriptsGet_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -1880,11 +1880,11 @@ func flowtokenScriptsGet_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/scripts/get_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9f, 0x43, 0x79, 0xfd, 0x4, 0xd6, 0xad, 0x3a, 0xc5, 0x7, 0x57, 0x5, 0x10, 0xbc, 0x51, 0x96, 0xe8, 0x27, 0x94, 0x74, 0x77, 0x6d, 0x23, 0xa3, 0x76, 0x56, 0xd2, 0xcf, 0x8f, 0x3b, 0xac, 0x5b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9a, 0xbc, 0xea, 0xcb, 0x58, 0x77, 0x12, 0x12, 0x12, 0xc6, 0x42, 0x20, 0xd5, 0x46, 0x4e, 0x16, 0x44, 0x5e, 0x74, 0x36, 0x66, 0x52, 0xe, 0xa1, 0x2f, 0x3f, 0x8b, 0x5, 0x37, 0xec, 0xe8, 0x64}} return a, nil } -var _flowtokenScriptsGet_supplyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8e\x3d\x8a\xc3\x30\x14\x84\xfb\x77\x8a\xc1\x95\xdd\xac\x9a\x65\x8b\x85\xb4\xbe\x40\x9c\x03\x08\x59\xc2\x22\xfa\xe3\xbd\x67\x92\x10\x72\xf7\x80\xf3\x5b\xce\xcc\xc7\xcc\x18\x83\x69\x89\x02\x71\x1c\x9b\x82\xbd\x9d\x05\xba\x78\x68\x55\x9b\x20\x6b\x6b\xe9\x82\x10\x7d\x9a\xc9\x18\xd4\xb0\x85\x63\xaa\xa7\xa9\x1e\x7d\x81\x64\xcb\x0a\x57\x8b\xb2\x75\x4a\x14\x73\xab\xac\x5f\x40\xe0\x9a\xd1\xbd\x75\x47\x64\x9d\xf3\x22\xbd\x4d\x69\x40\x58\x0b\xb2\x8d\xa5\x1f\xfe\x71\x18\xe3\xf9\xef\x17\x57\x22\x00\x48\x5e\x5f\xeb\xbb\x4f\xdd\xcf\x76\x6b\xbf\xf9\x0f\x8e\xbd\xae\x5c\x9e\x28\xdd\xee\x01\x00\x00\xff\xff\x93\xe0\xcd\xc5\xd0\x00\x00\x00" +var _flowtokenScriptsGet_supplyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xce\x3d\xca\xc3\x30\x0c\xc6\xf1\x5d\xa7\x78\xc8\x94\x2c\xaf\x97\x97\x0e\x85\xae\xb9\x40\xd3\x03\x18\xc7\x21\xa6\x8a\x6d\x24\x85\xb6\x94\xde\xbd\x90\x7e\xad\xd2\x0f\xfe\x8f\x73\x18\xe6\xa4\xd0\x20\xa9\x1a\x24\xfa\x51\x61\x73\x84\x15\xf3\x0c\x5d\x6b\xe5\x1b\xa6\x14\x79\x24\xe7\x50\xa6\xed\xd9\x73\xb9\x0c\xe5\x1c\x33\x74\xf1\x62\x08\x25\x9b\xf8\x60\x44\x69\xa9\x45\x0c\xcd\x57\x34\x44\x3e\x84\xa8\xda\x7a\xe6\x0e\xd3\x9a\xb1\xf8\x94\xdb\x6e\x8f\x53\x9f\xae\xbb\x7f\xdc\x89\x00\x80\xa3\x7d\x72\x87\x5f\xe0\x6f\xdb\x71\xdc\xee\x2f\x27\xd1\x56\xc9\x6f\x4a\x8f\x67\x00\x00\x00\xff\xff\x9c\x6f\xa6\xf1\xc1\x00\x00\x00" func flowtokenScriptsGet_supplyCdcBytes() ([]byte, error) { return bindataRead( @@ -1900,11 +1900,11 @@ func flowtokenScriptsGet_supplyCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/scripts/get_supply.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4f, 0x7c, 0x11, 0x45, 0x40, 0xad, 0x8d, 0x3d, 0x20, 0x6, 0x5b, 0x4d, 0x33, 0xbd, 0x92, 0x38, 0xcd, 0x91, 0x1f, 0x33, 0x5d, 0xa2, 0x8c, 0xf9, 0x8e, 0xd7, 0xdf, 0x52, 0x6d, 0xc0, 0x4e, 0x90}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe0, 0xb8, 0x7e, 0x53, 0x6a, 0xa6, 0x88, 0x9e, 0xf8, 0x4c, 0x7f, 0xdb, 0xe9, 0xcb, 0xbe, 0x56, 0xf9, 0xb7, 0xde, 0x1b, 0x55, 0x9b, 0x64, 0x76, 0xa2, 0x6a, 0x75, 0x28, 0x57, 0x23, 0xdd, 0xdf}} return a, nil } -var _flowtokenSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x51\xcd\x8e\x1a\x3d\x10\xbc\xfb\x29\x4a\x1c\x56\x20\xed\xc7\xdc\xd1\xf2\x49\xc9\x2a\x79\x80\x64\x95\x7b\x63\x7a\x18\x2b\xc6\xb6\xec\x36\x04\xad\xf6\xdd\x23\xcf\x6f\x86\x85\x28\x87\x5c\xe2\xc3\x68\xdc\x5d\xae\xae\xae\x52\x55\x85\x97\xc6\x24\x48\x24\x97\x48\x8b\xf1\x0e\x26\x81\x20\x7c\x0c\x96\x84\x51\xfb\x58\xae\x53\xbf\xbc\x11\x0f\xda\xef\x41\xf8\x46\xd9\x0a\x22\x27\x9f\xa3\xe6\x52\x97\x86\x4d\x04\x69\xed\xb3\x93\x82\x4d\xa5\x46\x52\x1a\x17\x68\x72\xc8\x89\xcb\x05\xb5\xf5\xe7\x17\xff\x9d\x9d\x52\xe6\x18\x7c\x14\x7c\xce\xee\x60\x76\x96\xdb\x2a\xea\xe8\x8f\x58\xcc\x6a\x8b\x11\x39\xbc\x1d\x50\xc3\x7d\xa1\xd4\xaf\xbb\xbc\x2a\x05\x00\x21\x72\xa0\xc8\xcb\x64\x0e\x8e\xe3\x06\x94\xa5\x59\x7e\x15\x1f\xe9\xc0\x2b\x3c\x7c\xe8\xd4\xae\x06\x78\x39\xa6\x46\x87\x5e\xa7\x0e\xb7\xde\xf9\x18\xfd\xf9\xe9\x61\x9c\xb5\x6e\xb7\xff\x7f\x59\x24\x6c\x50\xf5\xb8\x6a\xdc\xab\x6d\xaf\xb0\xdd\xc2\x19\x8b\xd7\x91\xba\x9c\xaa\xc2\x73\xe4\x62\x30\xc1\xf1\x79\x32\xa3\xb7\x94\xdc\x1e\x21\x0b\x8c\xc0\x38\xf4\xd4\x33\x86\x2b\x75\x89\x4e\xbc\x7c\xfa\x6f\x12\xa7\x5b\xfa\x4f\xc7\x20\x97\x96\x72\xb9\x7a\x84\xf8\xfb\x3a\xd5\x5d\x7d\x21\xef\xac\xd1\xd0\x14\x68\x67\xac\x91\x4b\x9f\x73\x2f\xb5\x4d\xd7\x3b\x7b\x01\xff\x08\x3e\x71\xba\x26\x2a\xd0\x3d\x07\x9f\x8c\xa0\xce\xae\x4b\x46\x9a\xe8\xf3\xa1\x69\x9b\x5f\x58\xb3\x39\x71\x84\x71\xc2\xb1\x26\x3d\xdf\xd4\xb2\xe0\x54\x46\x3d\x53\xc0\x76\x58\x7c\x94\x63\x38\x8d\x2e\x98\x94\x32\xdf\x88\x68\xc6\xd7\xca\xba\xed\xc2\x0c\x77\x65\xc9\xad\xb9\xad\x35\xa9\x79\xcf\x3f\xe8\x7d\x7c\xd7\x21\xd9\xa0\xea\x2c\x9d\x86\x0f\x0e\xfc\x6e\xfe\xdf\x8e\x64\x47\x96\x9c\x66\xd4\x86\xed\x7e\x96\xc7\xc7\xbe\x73\x3f\x8e\xfe\xed\x3f\x14\xc8\xa4\xf8\x0f\x23\xe9\x4d\xb8\x12\x30\xfc\xbd\xa9\xee\xfb\xa6\xf0\x33\x00\x00\xff\xff\x74\xcd\x81\x62\x45\x05\x00\x00" +var _flowtokenSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x51\xcd\x8e\x1a\x3d\x10\xbc\xcf\x53\x94\x38\xac\x40\xda\x8f\xb9\xa3\xe5\x93\x92\x55\xf2\x00\xc9\x2a\xf7\xc6\xf4\x30\xad\x18\xdb\xb2\xdb\x10\xb4\xda\x77\x8f\x3c\x3f\x4c\x60\x21\xca\x21\x97\xf8\x30\x1a\x77\x97\xab\xab\xab\xaa\xba\xc6\x4b\x2b\x09\x1a\xc9\x25\x32\x2a\xde\x41\x12\x08\xca\xfb\x60\x49\x19\x8d\x8f\xe5\x3a\xf5\xcb\x1b\xf5\xa0\xed\x16\x84\x6f\x94\xad\x22\x72\xf2\x39\x1a\x2e\x75\x6d\x59\x22\xc8\x18\x9f\x9d\x16\x6c\x2a\x35\xd2\xd2\x38\xc1\x90\x43\x4e\x5c\x2e\x68\xac\x3f\xbe\xf8\xef\xec\xaa\x4a\xf6\xc1\x47\xc5\xec\x73\x76\x3b\xd9\x58\xee\xca\xb3\xa9\x3c\x22\x67\x55\xf5\xab\xd2\xd7\xaa\x02\x80\x10\x39\x50\xe4\x79\x92\x9d\xe3\xb8\x02\x65\x6d\xe7\x5f\xd5\x47\xda\xf1\x02\x0f\x1f\x7a\x2d\x8b\x11\x5e\x8e\x34\xe8\xd1\xcb\xd4\xe3\x96\x1b\x1f\xa3\x3f\x3e\x3d\x9c\x67\x2d\xbb\xdd\xfe\x9f\x37\xd1\xef\x57\xa8\x07\x5c\x7d\x56\xdd\xb5\x17\x58\xaf\xe1\xc4\xe2\xf5\x4c\x5d\x4e\x5d\xe3\x39\x72\xb1\x8f\xe0\xf8\x38\xad\x3a\x18\x46\x6e\x8b\x90\x15\xa2\x10\x87\x81\xfa\x82\xe1\x4a\x5d\xa2\x03\xcf\x9f\xfe\x9b\xc4\x99\x8e\xfe\xd3\x3e\xe8\xa9\xa3\x9c\x2f\x1e\xa1\xfe\xbe\xce\xea\xae\xbe\x90\x37\x56\x0c\x0c\x05\xda\x88\x15\x3d\x0d\x29\x0e\x52\xbb\xec\xbc\xb3\x27\xf0\x8f\xe0\x13\xa7\x6b\xa2\x02\xdd\x72\xf0\x49\x14\x4d\x76\x7d\x32\xda\x46\x9f\x77\x6d\xd7\xfc\xc2\x86\xe5\xc0\x11\xe2\x94\x63\x43\xe6\x72\x53\xcb\x8a\x43\x19\xf5\x4c\x01\xeb\x71\xf1\xb3\x1c\xe1\x74\x76\x41\x52\xca\x7c\x23\xa2\x0b\xbe\x4e\xd6\x6d\x17\x2e\x70\x57\x96\xdc\x9a\xdb\x59\x93\xda\xf7\xfc\xa3\xde\xc7\x77\x1d\xd2\x15\xea\xde\xd2\x69\xf8\xe8\xc0\xef\xe6\xff\xed\x48\x36\x64\xc9\x19\x46\x23\x6c\xb7\x17\x79\x7c\x1c\x3a\xf7\xe3\x18\xde\xfe\x43\x81\x4c\x8a\xff\x30\x92\xc1\x84\x2b\x01\xe3\xdf\x5b\xd5\x7f\xdf\x2a\xfc\x0c\x00\x00\xff\xff\xa8\x53\xf8\x02\x23\x05\x00\x00" func flowtokenSetup_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -1920,11 +1920,11 @@ func flowtokenSetup_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/setup_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x26, 0x3b, 0x9, 0x19, 0x12, 0xf7, 0x3d, 0x9c, 0x52, 0x2d, 0x2c, 0x62, 0x9c, 0x34, 0xbd, 0x30, 0x11, 0xa0, 0xaa, 0xb7, 0x70, 0xa, 0xf6, 0xc6, 0xed, 0xe4, 0x7d, 0x3f, 0xe5, 0xca, 0x4a, 0xf0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfe, 0xd7, 0xd6, 0x81, 0xa, 0x4, 0xaf, 0x8b, 0x60, 0x89, 0x3f, 0x64, 0x9c, 0x88, 0x2d, 0x7c, 0xb5, 0x22, 0xe3, 0x65, 0x6e, 0x54, 0xf7, 0x63, 0x4f, 0x8e, 0x4e, 0x18, 0xf2, 0x79, 0x6e, 0x3f}} return a, nil } -var _flowtokenTransfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x41\x4f\xdc\x3c\x10\x3d\x93\x5f\xf1\xbe\x3d\x40\x22\x7d\x24\x97\x4f\xdf\x61\x45\xa1\xb4\x15\xbd\x23\x4a\xcf\x4e\x32\xd9\x58\xcd\xda\xd1\x78\xc2\x82\x10\xff\xbd\xb2\x1d\x87\x0d\x48\xa5\x7b\x59\x65\x3c\xf3\xde\x9b\xf7\xec\xaa\xc2\x5d\xaf\x1d\x84\x95\x71\xaa\x11\x6d\x0d\xb4\x83\x82\xd0\x7e\x1c\x94\x10\x3a\xcb\xfe\xf3\xe8\x5c\x7a\x25\x59\x55\xa1\xb1\xd3\xd0\xa2\x26\x4c\x8e\x5a\xd4\x4f\x50\xe6\xc9\x1a\x82\x58\x38\x32\x2d\xc4\xfe\x22\xe3\xfc\xa7\x32\x56\x7a\x62\xa8\xa6\xb1\x93\x09\xc3\x1e\x04\xbd\x72\xa8\x89\x0c\x1c\x09\xa6\xd1\xb7\x32\x35\xa4\x1f\x68\x1e\x2e\xb3\xaa\xca\x82\x46\xc2\x41\x4b\xdf\xb2\x3a\x40\xed\x3d\x08\x94\xa7\xe8\x29\x81\xa2\x63\xbb\xc7\x8e\xe4\xfa\x95\xe4\x90\x14\xfa\xbe\x51\xb1\xda\x93\x10\x07\x49\xbe\x72\xb4\x54\x96\xe9\xfd\x68\x59\x70\x33\x99\x9d\xae\x07\xba\xf3\xfc\x11\x73\xb3\xaa\x6d\x96\xce\xc1\x1e\x56\x5d\xe9\x7b\x93\x65\x47\xc8\x79\x94\xbb\xc5\x8f\x1b\xfd\xf8\xff\x7f\xff\x42\xec\x16\xd7\x6d\xcb\xe4\x5c\x81\xe7\x2c\x03\x80\x79\xc5\x7b\x35\x0d\x02\x26\x67\x27\x6e\x68\xf6\xc8\x0e\xad\x8b\x72\x67\x3f\x7d\x55\x31\xa1\x26\x6d\x76\x71\x89\x8e\x98\xa9\x0d\x50\x03\x89\xb7\x5f\x02\xd6\x16\x9f\x57\xe2\xcb\x50\x8d\x9c\x23\xd3\xa8\x98\x72\xa7\x77\x86\x78\x0b\x35\x49\x9f\x7f\xb1\xcc\xf6\x70\xaf\x86\x89\x0a\x9c\xce\x56\x2e\x32\x67\xa9\xdf\x49\xa0\xc0\xd4\x11\x93\x69\x28\xd9\x19\x81\xce\x1c\x9c\x58\xa6\x16\x0f\x81\x2b\xcd\x79\x5d\xa1\x72\x4b\x1d\x3e\xcd\xcd\xa5\x6f\x55\x3b\x2a\xeb\xc0\x7b\x11\x34\xac\x15\xff\x9c\x63\x2f\x70\xba\x38\x1c\xd7\xb8\xcc\xbd\xf1\x5b\x54\x33\x48\xd5\xa5\xf3\x70\x5c\x64\x27\x27\x27\x57\x57\x18\x95\xd1\x4d\xbe\xf9\x1a\xee\x82\xb1\x82\xc8\xf5\x5e\xbf\x3d\x44\xf9\x61\xfa\x9f\x4d\xb1\xda\x39\xc9\x48\x29\x84\xcc\x3f\xde\xda\xd1\xd0\x95\x4b\x1c\xb8\x38\x5f\x3c\x28\xd3\x7d\x5e\x2e\x48\xfc\x2f\xc2\xec\x4b\x24\xa7\x47\x6a\x26\xa1\xbf\xf3\x9f\xa9\xd1\xa3\x26\x23\x67\x0e\xb7\xf1\x19\xf1\xca\xfe\xf9\x6d\x71\x4c\xe0\xe8\xad\xe4\x62\x8b\xa5\xd3\xff\xca\x46\x8d\xaa\xd6\x83\x16\x4d\x2e\x85\x73\xfa\xbc\x4e\x26\x71\xbc\x5c\xe6\xd5\x38\xd5\x83\x6e\x5e\x13\x48\x67\x1f\x87\x10\xfb\xfe\xbc\x4d\x30\xef\x4d\x20\xdf\x68\xb4\x4e\x4b\xe8\x4d\x56\x9a\x94\x8e\x36\xef\x30\xf8\xad\x23\x47\x6e\x94\x6d\x04\x9b\x2f\xd4\xc5\xf9\x3a\xb6\x14\xc9\x4b\xf6\x3b\x00\x00\xff\xff\xf7\x2a\x53\x84\x2f\x05\x00\x00" +var _flowtokenTransfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xc1\x4e\xdc\x30\x10\x3d\x93\xaf\x78\xdd\x03\x24\x52\x49\x2e\x55\x0f\x2b\x0a\xa5\xad\xe8\x1d\x51\x7a\x76\x92\xc9\xc6\x6a\xd6\x8e\xc6\x13\x16\x84\xf8\xf7\xca\x76\xbc\xbb\x01\xa9\x74\x2f\xab\x8c\x67\xde\x7b\xf3\x9e\x5d\x55\xb8\xeb\xb5\x83\xb0\x32\x4e\x35\xa2\xad\x81\x76\x50\x10\xda\x8e\x83\x12\x42\x67\xd9\x7f\x1e\x9d\x4b\xaf\x24\xab\x2a\x34\x76\x1a\x5a\xd4\x84\xc9\x51\x8b\xfa\x09\xca\x3c\x59\x43\x10\x0b\x47\xa6\x85\xd8\x3f\x64\x9c\xff\x54\xc6\x4a\x4f\x0c\xd5\x34\x76\x32\x61\xd8\x83\xa0\x57\x0e\x35\x91\x81\x23\xc1\x34\xfa\x56\xa6\x86\xf4\x03\xcd\xc3\x65\x56\x55\x59\xd0\x48\xd8\x69\xe9\x5b\x56\x3b\xa8\xad\x07\x81\xf2\x14\x3d\x25\x50\x74\x6c\xb7\xd8\x90\x5c\x1f\x48\x76\x49\xa1\xef\x1b\x15\xab\x2d\x09\x71\x90\xe4\x2b\x47\x4b\x65\x99\xde\x8e\x96\x05\xab\x9b\xc9\x6c\x74\x3d\xd0\x9d\x17\xb0\x3a\x94\x07\xbb\x9b\x4b\xd9\xd1\x5c\x1e\xc5\xac\xf1\xeb\x46\x3f\x7e\xfe\xf4\x11\x62\xd7\xb8\x6e\x5b\x26\xe7\x0a\x3c\x67\x19\x00\xcc\x0b\xdc\xab\x69\x10\x30\x39\x3b\x71\x43\xb3\x03\x76\x68\x5d\x14\x33\xbb\xe5\xab\x8a\x09\x35\x69\xb3\x89\x12\x3b\x62\xa6\x36\x40\x0d\x24\xde\x5c\x09\x58\x6b\x7c\x5d\xa8\x2d\x43\x35\x72\x8e\x4c\xa3\x62\xca\x9d\xde\x18\xe2\x35\xd4\x24\x7d\xfe\xcd\x32\xdb\xdd\xbd\x1a\x26\x2a\x70\x3a\x1b\xb5\x97\x39\x4b\xfd\x49\x02\x05\xa6\x8e\x98\x4c\x43\xc9\xac\x08\x74\xe6\xe0\xc4\x32\xb5\x78\x08\x5c\x69\xce\xeb\x0a\x95\x5b\xea\xf0\x65\x6e\x2e\x7d\xab\xda\x50\x59\x07\xde\x8b\xa0\x61\xa9\xf8\xf7\x1c\x6a\x81\xd3\xbd\xc3\x71\x8d\xcb\xdc\x07\xba\x46\x35\x83\x54\x5d\x3a\x0f\xc7\x45\x76\x72\x72\x72\x75\x85\x51\x19\xdd\xe4\xab\xef\x21\x69\x63\x05\x91\xeb\xad\x7e\xbb\x8b\xf2\xc3\xf4\x87\x55\xb1\xd8\x39\xc9\x48\x29\x84\xbb\xf4\xfe\xd6\x8e\x86\xae\xdc\xc7\x81\x8b\xf3\xbd\x07\x65\xba\xad\xfb\x0b\x12\xff\x8b\x30\xfb\x12\xc9\xe9\x91\x9a\x49\xe8\xff\xfc\x67\x6a\xf4\xa8\xc9\xc8\x99\xc3\x6d\x7c\x24\xbc\xb0\x7f\x7e\x39\x1c\x13\x38\x7a\x09\xb9\xd8\x62\xdf\xe9\x7f\x65\xa3\x46\x55\xeb\x41\x8b\x26\x97\xc2\x39\x7d\x5e\x26\x93\x38\x5e\x2e\xf3\x6a\x9c\xea\x41\x37\x87\x04\xd2\xd9\xfb\x21\xc4\xbe\x7f\x6f\x13\xcc\x7b\x15\xc8\x0f\x1a\xad\xd3\x12\x7a\x93\x95\x26\xa5\xa3\xcd\x1b\x0c\x7e\xed\xc8\x91\x1b\x65\x1b\xc1\xe6\x0b\x75\x71\xbe\x8c\x2d\x45\xf2\x92\xfd\x0d\x00\x00\xff\xff\xb0\xa7\x2d\x21\x0d\x05\x00\x00" func flowtokenTransfer_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1940,7 +1940,7 @@ func flowtokenTransfer_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/transfer_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0x6a, 0x53, 0x3a, 0xa2, 0xb8, 0xe7, 0x84, 0x84, 0xde, 0x4c, 0x92, 0xe8, 0xa8, 0x54, 0x49, 0xdf, 0xa7, 0x97, 0xe, 0x83, 0x7a, 0x21, 0xad, 0xba, 0x30, 0x65, 0xe5, 0x5b, 0xf4, 0x7d, 0x8b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc2, 0xb0, 0x74, 0x99, 0x3, 0x6f, 0x41, 0x71, 0xe2, 0xbc, 0xf1, 0x71, 0xed, 0xb9, 0x22, 0xbe, 0x64, 0x11, 0x50, 0x15, 0x33, 0xe3, 0x9e, 0x56, 0x59, 0x71, 0x7, 0x95, 0x22, 0x4f, 0x7e, 0xb9}} return a, nil } @@ -5784,7 +5784,7 @@ func stakingcollectionTestGet_tokensCdc() (*asset, error) { return a, nil } -var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\xcd\x6e\xd3\x40\x10\xbe\xe7\x29\xa6\x39\x14\x5b\x6a\x5d\x09\x6e\x51\x4b\xd5\x36\x02\x7a\xa1\x55\x0b\xdc\x27\xde\x71\xbc\x60\xef\x58\xbb\xe3\x94\x82\xfa\xee\xc8\x6b\xaf\x1b\xc7\x86\x46\x08\x7c\x49\x6c\x8f\xbf\xfd\x7e\x66\x76\x75\x59\xb1\x15\x78\x57\xf0\xc3\xbd\xe0\x37\x6d\xd6\x57\x5c\x14\x94\x8a\x66\x03\x99\xe5\x12\xe6\x93\xef\xe6\xb3\xd9\xc9\x09\x7c\xb2\x68\x5c\x46\xd6\x01\xc2\x47\x56\xb4\xa4\x82\xd6\x28\x6c\x81\x57\x5f\x29\x95\x16\x01\x0d\x60\x2d\x39\x5b\xfd\xc3\x97\xa6\x29\x73\x6d\xa4\x01\x40\xa3\x00\x95\x72\x20\x39\xed\x20\x08\x03\x1a\x96\x9c\xac\xff\xa2\x36\xe2\xa0\xa3\x01\xcf\x3c\x1a\x10\xad\xc8\x88\xce\x34\x29\x58\x3d\x7a\x24\x61\xb8\x50\xca\x92\x73\xc9\x6c\x26\x0d\x49\xf4\xd5\x91\x61\x45\xd7\xcb\x05\xdc\x8b\xd5\x66\x7d\x04\x2a\x2c\xd7\x3c\xfc\x7c\x6d\xe4\xcd\xeb\x23\x10\x5e\x84\xcf\x63\xf8\x39\x03\x00\x28\xa8\xd5\x32\xf2\xe1\x8e\xb2\x85\x57\x17\x4d\xda\x94\x3c\xff\xbd\x79\x30\x64\x63\x38\x9c\xae\x1b\x3d\xe9\x97\x15\x1e\xbd\xbb\xc2\x6a\xb1\x3f\x90\x47\xaa\x2c\x55\x68\x29\xea\xac\xec\x38\x5f\xb2\xb5\xfc\xf0\x05\x8b\x9a\x62\x38\xbc\x68\xdf\x05\xcd\xcd\xd5\x64\x9c\x53\x08\xa0\xf1\x55\xba\xc8\x27\x12\xeb\x32\x17\x86\xb2\x76\x02\x39\x6e\x08\x10\x36\x58\x68\x35\x91\x1c\x68\x03\x6c\x15\xf9\xa4\x2d\xa5\xa4\x37\x34\x06\x4d\x7a\x2a\x3a\x83\xe8\x60\x5a\xb3\x62\x72\x1d\xf9\x0f\xb8\xa1\x51\x41\x84\x6d\x9a\x0b\x10\x8e\xb7\xe5\x79\x67\xd0\xe8\x34\x9a\x2f\xc9\x89\x36\xe8\x99\x05\xb9\xdb\x32\x26\x04\x38\x12\xa8\xab\x64\x1e\xf7\x78\x4f\xb3\x6d\xe7\xde\x93\x00\x82\xa5\x8c\x2c\x99\xd4\x77\x65\xa3\x6f\x7b\x16\xa6\x63\x6f\x2e\x47\x45\x96\xfc\xae\xe5\xe0\x2c\x70\x4c\x9c\xb0\xc5\x35\x25\x2b\x1f\xe5\xe9\xff\x68\xc5\xb7\x51\xc3\x63\x31\xbd\x49\x8c\xcb\xef\x5b\x46\xb7\x28\x79\x3c\x70\xfa\xfc\x3c\x98\x7d\xc5\x75\xa1\xc0\xb0\x40\x4b\x7b\xd7\x26\x1c\x1b\xd3\xb4\x4b\xe3\x5e\x65\x75\x89\xf6\x11\x6a\x47\xf6\x95\x0b\x36\xcc\xe3\x91\xf3\x4d\xf1\x6d\xbd\x2a\x74\xda\xb5\x06\x70\xd6\xfa\xbf\x57\x33\x0b\x27\xd0\x43\xb6\x73\x18\x70\xce\x60\x4d\xd2\xdd\x44\xc2\xc3\xa5\x2f\x83\xa0\x14\x2b\x5c\xe9\x42\xcb\x63\x08\xbe\xf2\x6c\xa0\x24\xc9\x59\x39\xc0\x0d\xea\x02\x57\x05\x01\xb7\xd2\xba\x21\x98\x6a\x8b\x64\xd8\x17\xd3\x7b\x02\x9c\x3d\x93\x4c\xfa\xe5\x35\xb9\x41\x0a\xa1\x53\xf6\x4f\x7f\xcf\xc2\xd6\xec\xbf\x89\x1d\xcb\x17\x63\x0f\xde\x0c\x22\xdf\x1a\x39\xfa\x4e\x69\x2d\x34\xdc\xba\xee\xa8\xe4\xa9\x4d\xa5\x3d\x96\x5e\x9c\xc5\x64\x90\xbf\x19\x20\x9c\x1e\xff\x79\x42\x13\xeb\xd7\xee\x3f\xe8\x4f\x9e\xf6\x77\xe7\xe4\xd9\xba\x19\x76\xd3\x92\x2a\x76\x5a\xa6\x8f\xc7\x7f\xd1\x33\x09\x2a\xd5\x83\xde\xf8\x0d\x3c\x3a\x3d\x1e\x8a\x3d\x08\x4e\x3f\xfd\x0a\x00\x00\xff\xff\x54\xf8\x55\x3e\x2e\x08\x00\x00" +var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x5f\x6f\xd3\x30\x10\x7f\xef\xa7\xb8\xf5\x61\x24\xd2\x96\x49\xf0\x56\x6d\x4c\xdb\x2a\x60\x2f\x6c\xda\x80\xf7\x6b\x7c\x69\x0c\x89\x2f\xb2\x2f\x1d\x03\xed\xbb\xa3\xfc\x71\xd6\x34\x86\x55\x08\xf2\xd2\x26\x3e\xff\xfc\xfb\x73\xb6\x75\x59\xb1\x15\x78\x57\xf0\xc3\xbd\xe0\x37\x6d\xd6\x57\x5c\x14\x94\x8a\x66\x03\x99\xe5\x12\xe6\xc1\xb1\xf9\x6c\x76\x72\x02\x9f\x2c\x1a\x97\x91\x75\x80\xf0\x91\x15\x2d\xa9\xa0\x35\x0a\x5b\xe0\xd5\x57\x4a\xa5\x43\x40\x03\x58\x4b\xce\x56\xff\x68\x4b\xd3\x94\x6b\x23\xcd\x7c\x34\x0a\x50\x29\x07\x92\xd3\x0e\x80\x30\xa0\x61\xc9\xc9\xfa\x09\x0e\x7a\x16\xf0\x4c\xa3\x01\xd1\x8a\x8c\xe8\x4c\x93\x82\xd5\x63\x8b\x24\x0c\x17\x4a\x59\x72\x2e\x99\xcd\xa4\xe1\x88\x6d\x75\x64\x58\xd1\xf5\x72\x01\xf7\x62\xb5\x59\x1f\x81\xf2\xcb\x35\x1f\x3f\x5f\x1b\x79\xf3\xfa\x08\x84\x17\x7e\x7a\x0c\x3f\x67\x00\x00\x05\x75\x52\x26\x36\xdc\x51\xb6\x68\xc5\x45\x41\x97\x92\xe7\xbf\x37\x0f\x86\x6c\x0c\x87\xe1\xba\xc9\x97\x61\x59\xe1\xc9\xd8\x15\x56\x8b\xfd\x81\x5a\xa4\xca\x52\x85\x96\xa2\xde\xca\x9e\xf3\x25\x5b\xcb\x0f\x5f\xb0\xa8\x29\x86\xc3\x8b\x6e\xcc\x6b\x6e\x9e\x26\xe2\x9c\x7c\x00\x8d\xaf\xd2\x27\x1e\x48\xac\x8f\x5c\x18\xca\xda\x09\xe4\xb8\x21\x40\xd8\x60\xa1\x55\x20\x39\xd0\x06\xd8\x2a\x6a\x93\xb6\x94\x92\xde\xd0\x14\x34\x19\xa8\xe8\x0c\xa2\x83\xb0\x66\xc5\xe4\x7a\xf2\x1f\x70\x43\x93\x82\x08\xbb\x34\x17\x20\x1c\x6f\xcb\x6b\x9d\x41\xa3\xd3\x68\xbe\x24\x27\xda\x60\xcb\xcc\xcb\xdd\x96\x11\x10\xe0\x48\xa0\xae\x92\x79\x3c\xe0\x3d\xcd\xb6\x9d\x7b\x4f\x02\x08\x96\x32\xb2\x64\xd2\xb6\x2b\x1b\x7d\xdb\x5b\x21\x1c\x7b\xf3\x38\x2a\xb2\xe4\x77\x2d\x07\x67\x9e\x63\xe2\x84\x2d\xae\x29\x59\xb5\x51\x9e\xfe\x8f\x56\x7c\x1b\x35\x3c\x16\xe1\x33\x62\x5a\x7e\xdf\x31\xba\x45\xc9\xe3\x91\xd3\xe7\xe7\xde\xec\x2b\xae\x0b\x05\x86\x05\x3a\xda\xbb\x36\xe1\xd4\x98\xa6\x5d\x1a\xf7\x2a\xab\x4b\xb4\x8f\x50\x3b\xb2\xaf\x86\xb3\x64\x1e\x4f\x9c\x6f\x8a\x6f\xeb\x55\xa1\xd3\xbe\x35\x80\xb3\xce\xff\xbd\x9a\x59\x38\x81\x01\xb2\xdb\x87\x1e\xe7\x0c\xd6\x24\xfd\x4b\x24\x3c\x5e\xfa\xd2\x0b\x4a\xb1\xc2\x95\x2e\xb4\x3c\xfa\xe0\xab\x96\x0d\x94\x24\x39\x2b\x07\xb8\x41\x5d\xe0\xaa\x20\xe0\x4e\x5a\xbf\x09\x42\x6d\x91\x8c\xfb\x22\x7c\x26\xc0\xd9\x33\xc9\x64\x58\x5e\x93\x1b\xa5\xe0\x3b\x65\xff\xf4\xf7\x2c\xec\xcc\xfe\x9b\xd8\xb1\x7c\x31\x76\xef\xcd\x28\xf2\xad\x2d\x47\xdf\x29\xad\x85\xc6\x47\xd7\x1d\x95\x1c\x3a\x54\xba\x5b\xe9\xc5\xbd\x98\x8c\xf2\x37\x23\x84\xd3\xe3\x3f\xef\xd0\xc4\xb6\x6b\x0f\x13\x86\x9b\xa7\xfb\xdd\xb9\x79\xb6\x5e\xc6\xdd\xb4\xa4\x8a\x9d\x96\xf0\xf5\xf8\x2f\x7a\x26\x41\xa5\x06\xd0\x9b\xf6\x00\x8f\x4e\x8f\xc7\x62\x0f\xbc\xd3\x4f\xbf\x02\x00\x00\xff\xff\x99\x35\x2e\x9f\x2d\x08\x00\x00" func stakingcollectionTransfer_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -5800,11 +5800,11 @@ func stakingcollectionTransfer_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/transfer_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x83, 0xec, 0x8c, 0x84, 0x70, 0xc9, 0x5e, 0xfc, 0xb9, 0xf3, 0x21, 0x99, 0x5d, 0x9a, 0x65, 0x6a, 0xfc, 0xcb, 0xc8, 0x4f, 0x4d, 0x79, 0x9d, 0x9, 0x43, 0xed, 0x77, 0xec, 0xd9, 0x16, 0x2c, 0x33}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x61, 0xe2, 0x8a, 0xda, 0x69, 0xb9, 0x20, 0x50, 0x6, 0x1e, 0x93, 0x59, 0x1f, 0x80, 0x46, 0xb8, 0x26, 0x15, 0x8a, 0x24, 0xdb, 0xab, 0xd0, 0xb4, 0x34, 0x54, 0x8d, 0xc4, 0x27, 0xc1, 0x69, 0xa2}} return a, nil } -var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x4f\x53\xdb\x3a\x10\xbf\xe7\x53\x2c\x39\xf0\xec\x19\x30\xf7\x0c\x79\x0c\x90\x79\xef\x71\x78\x85\x81\x4e\x2f\x9d\x1e\x36\xd6\x3a\x56\xeb\x68\x3d\xd2\x3a\x0c\xed\xf0\xdd\x3b\xb2\xec\x24\x8e\xd5\x86\x43\xf1\x05\x62\xad\x76\x7f\xff\x2c\xe9\x75\xcd\x56\xe0\x9f\x8a\x9f\x9f\x04\xbf\x69\xb3\xba\xe5\xaa\xa2\x5c\x34\x1b\x28\x2c\xaf\x61\x1a\x5d\x9b\x4e\x26\x17\x17\xf0\xd1\xa2\x71\x05\x59\x07\x08\x1f\x58\x91\x2f\x23\x0b\xbc\xfc\x4a\xb9\x84\xed\x68\x00\x1b\x29\xd9\xea\xef\x6d\x5d\x9e\x33\x37\x46\xfc\x6e\x34\x0a\x50\x29\x07\x52\xd2\xfe\x76\x61\x40\xc3\x52\x92\x6d\xcb\x1b\x23\x0e\x3a\x00\xb0\x43\xe0\x3b\x68\x45\x46\x74\xa1\x49\xc1\xf2\xa5\x6d\x23\x0c\xd7\x4a\x59\x72\x2e\x9b\x4c\xc4\xc3\xc3\xb6\x3a\x31\xac\xe8\x6e\x31\x83\x27\xb1\xda\xac\xce\x40\x78\xd6\x57\xa6\xf0\x63\x02\x00\x50\x51\xc0\x3c\x22\xfb\x48\xc5\xac\x65\x91\x44\xb5\xc8\x76\xff\xde\x3f\x1b\xb2\x29\x9c\xc6\xeb\x46\x6f\xb6\x63\x85\x47\x6b\xb7\x58\xcf\xde\xde\xa8\xed\x54\x5b\xaa\xd1\x52\xd2\xa9\xd6\x61\xbe\x61\x6b\xf9\xf9\x13\x56\x0d\xa5\x70\x7a\x1d\xd6\x7a\xce\xfe\xf1\x46\x96\xd4\x6b\xed\x25\x94\xce\xd7\x43\x67\x3a\x63\x85\x61\xdd\x38\x81\x12\x37\x04\x08\x1b\xac\xb4\x8a\x38\x04\xda\x00\x5b\x15\x1c\xb5\x94\x93\xde\xd0\x41\xc7\x6c\x0b\x42\x17\x90\x9c\xc4\xd9\x2a\x26\xd7\xc1\xfe\x0f\x37\x34\x2a\x48\x30\xf8\x38\x03\xe1\x74\x9f\x58\xab\x09\x1a\x9d\x27\xd3\x05\x39\xd1\x06\x5b\x58\x3d\xd1\x7d\x0e\x11\xf4\x8e\x04\x9a\x3a\x9b\xa6\xdb\x7e\xaf\x93\x7d\xcd\xfe\x25\x01\x04\x4b\x05\x59\x32\x79\x1b\x3d\x4f\x6e\x3f\xed\x71\xc3\xfd\xe3\xa8\x2a\xb2\x5f\x85\x0d\xe6\x3d\xc6\xcc\x09\x5b\x5c\x51\xb6\x6c\x4d\xbc\x7c\x8f\x10\xfe\x9d\x78\x1c\xb3\xf8\x19\x30\x2e\x7f\x0a\x88\x1e\x50\xca\x74\xa0\xf4\xd5\x55\x2f\xf6\x2d\x37\x95\x02\xc3\x02\x01\xf6\xa1\x4c\x38\x16\xc6\x67\xc5\xab\x57\x5b\xbd\x46\xfb\x02\x8d\x23\xfb\x97\xeb\x65\x98\xa6\x23\xe5\x7d\xf1\x43\xb3\xac\x74\xde\x45\x03\xb8\x08\xfa\x1f\x8f\xb1\x70\x06\xdb\x7e\xe1\xf3\xeb\x9b\xcc\x61\x45\xd2\xfd\x48\x84\x87\x73\x6f\x7a\x36\x39\xd6\xb8\xd4\x95\x96\x97\xde\xf5\xba\x85\x02\x6b\x92\x92\x95\x03\xdc\xa0\xae\x70\x59\x11\x70\xe0\xd5\xc5\x3f\x96\x89\x6c\x18\x8a\xf8\x51\x00\xf3\x1d\xc8\x6c\x3b\x5e\x93\x1b\x58\xd0\xc7\xe4\xed\xd6\xbf\xb1\x30\x28\xfd\x4e\x9e\xf7\xda\xc4\xfd\xf6\xfe\xac\x31\x2f\xb5\xa1\x8e\xff\x9d\x29\x18\xe6\xbf\xff\x84\xb2\x15\xc9\xff\x83\x5d\x2e\x49\x3f\x87\x4b\xe0\xcb\x51\x0a\xab\xdd\xcc\x6d\x9e\xb4\x9f\x5a\x70\x08\x93\xab\x29\x0f\xf7\x8e\x6f\x09\x77\x8b\x83\x84\x3e\xd2\x9a\x47\x87\x5d\xb8\x10\x8f\x9e\x11\xd9\x80\xba\xd9\x6d\xbf\x3c\x3f\xc2\xd9\xb6\x53\xfd\xc0\xed\x75\x17\xfe\x0e\xc1\x2d\xa8\x66\xa7\x25\x72\xed\xfe\x89\xa4\x66\xa8\x94\xef\x7a\xdf\xde\x15\xc9\xe5\xf9\x1e\x85\x93\xb3\x88\x95\xb3\xc8\xbb\x90\xb2\xd7\xc9\xeb\xcf\x00\x00\x00\xff\xff\x2d\x4d\x77\x9d\xa0\x08\x00\x00" +var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\xcd\x6e\xdb\x38\x10\xbe\xfb\x29\x26\x3e\x64\x25\x20\x51\xee\x46\xbc\x41\x12\x63\x77\x73\xd8\x26\x48\x8a\x5e\x8a\x1e\xc6\xe2\xc8\x62\x2b\x73\x04\x72\xe4\x20\x2d\xf2\xee\x05\x45\x49\xfe\x11\x5b\xe7\xd0\xe8\x92\x58\x1c\xce\x7c\x7f\x22\xf5\xba\x66\x2b\xf0\x4f\xc5\xcf\x4f\x82\xdf\xb4\x59\xdd\x72\x55\x51\x2e\x9a\x0d\x14\x96\xd7\x30\x8d\xae\x4d\x27\x93\x8b\x0b\xf8\x68\xd1\xb8\x82\xac\x03\x84\x0f\xac\xc8\x97\x91\x05\x5e\x7e\xa5\x5c\xc2\x76\x34\x80\x8d\x94\x6c\xf5\xf7\xb6\x2e\xcf\xb9\x31\xe2\x37\xa3\x51\x80\x4a\x39\x90\x92\x76\x77\x0b\x03\x1a\x96\x92\x6c\x5f\xed\xa0\x9b\x0f\x5b\x00\xbe\x83\x56\x64\x44\x17\x9a\x14\x2c\x5f\xda\x36\xc2\x70\xad\x94\x25\xe7\xb2\xc9\x44\x3c\x3a\x6c\xab\x13\xc3\x8a\xee\x16\x33\x78\x12\xab\xcd\xea\x0c\x84\x67\x7d\x65\x0a\x3f\x26\x00\x00\x15\x05\xc8\x23\xae\x8f\x54\xcc\x5a\x12\x49\x54\x8a\x6c\xfb\xef\xfd\xb3\x21\x9b\xc2\x69\xbc\x6e\xf4\x66\x18\x2b\x3c\x5a\xbb\xc5\x7a\xf6\xf6\x46\x6d\xa7\xda\x52\x8d\x96\x92\x4e\xb5\x0e\xf3\x0d\x5b\xcb\xcf\x9f\xb0\x6a\x28\x85\xd3\xeb\xb0\xd6\x73\xf6\x8f\xf7\xb1\xa4\x5e\x6b\x2f\xa1\x74\xb6\x1e\x3a\xd3\xf9\x2a\x0c\xeb\xc6\x09\x94\xb8\x21\x40\xd8\x60\xa5\x55\xc4\x21\xd0\x06\xd8\xaa\xe0\xa8\xa5\x9c\xf4\x86\x0e\x3a\x66\x03\x08\x5d\x40\x72\x12\x67\xab\x98\x5c\x07\xfb\x3f\xdc\xd0\xa8\x20\xc1\xe0\xe3\x0c\x84\xd3\x5d\x62\xad\x26\x68\x74\x9e\x4c\x17\xe4\x44\x1b\x6c\x61\xf5\x44\x77\x39\x44\xd0\x3b\x12\x68\xea\x6c\x9a\x0e\xfd\x5e\x27\xbb\x9a\xfd\x4b\x02\x08\x96\x0a\xb2\x64\xf2\x36\x7a\x9e\xdc\x6e\xd8\xe3\x86\xfb\xc7\x51\x55\x64\xbf\x0a\x1b\xcc\x7b\x8c\x99\x13\xb6\xb8\xa2\x6c\xd9\x9a\x78\xf9\x1e\x21\xfc\x3b\xf1\x38\x66\xf1\x23\x60\x5c\xfe\x14\x10\x3d\xa0\x94\xe9\x9e\xd2\x57\x57\xbd\xd8\xb7\xdc\x54\x0a\x0c\x0b\x04\xd8\x87\x32\xe1\x58\x18\x9f\x15\xaf\x5e\x6d\xf5\x1a\xed\x0b\x34\x8e\xec\x5f\xc3\x69\x31\x4d\x47\xca\xfb\xe2\x87\x66\x59\xe9\xbc\x8b\x06\x70\x11\xf4\x3f\x1e\x63\xe1\x0c\x86\x7e\xe1\xf3\xeb\x9b\xcc\x61\x45\xd2\xfd\x48\x84\xf7\xe7\xde\xf4\x6c\x72\xac\x71\xa9\x2b\x2d\x2f\xbd\xeb\x75\x0b\x05\xd6\x24\x25\x2b\x07\xb8\x41\x5d\xe1\xb2\x22\xe0\xc0\xab\x8b\x7f\x2c\x13\xd9\x7e\x28\xe2\x47\x01\xcc\xb7\x20\xb3\x61\xbc\x26\xb7\x67\x41\x1f\x93\xb7\x5b\xff\xc6\xc2\xa0\xf4\x3b\x79\xde\x6b\x13\xf7\xdb\xfb\xb3\xc6\xbc\xd4\x86\x3a\xfe\x77\xa6\x60\x98\xff\xfe\x13\xca\x56\x24\xff\xef\xed\x72\x49\xfa\x39\x5c\x02\x5f\x8e\x52\x58\x6d\x67\x0e\x79\xd2\x7e\x6a\xc1\x21\x4c\xae\xa6\x3c\xdc\x3b\xbe\x25\xdc\x2d\x0e\x12\xfa\x48\x6b\x1e\x1d\x76\xe1\x3e\x3c\x7a\x46\x64\x7b\xd4\xcd\x76\xfb\xe5\xf9\x11\xce\xb6\x9d\xea\x07\x0e\xd7\x5d\xf8\xbb\x0f\x6e\x41\x35\x3b\x2d\x91\x6b\xf7\x4f\x24\x35\x43\xa5\x7c\xd7\xfb\xf6\xae\x48\x2e\xcf\x77\x28\x9c\x9c\x45\xac\x9c\x45\xde\x85\x94\xbd\x4e\x5e\x7f\x06\x00\x00\xff\xff\x1a\xf2\x57\x38\x9f\x08\x00\x00" func stakingcollectionTransfer_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5820,7 +5820,7 @@ func stakingcollectionTransfer_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/transfer_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x93, 0x5d, 0xe5, 0x5c, 0x17, 0xee, 0x42, 0xc6, 0x72, 0x3f, 0x5d, 0x21, 0xbf, 0xd2, 0x37, 0x7a, 0x97, 0x58, 0x8a, 0x4, 0x83, 0x39, 0x9c, 0x7b, 0x7e, 0x8e, 0xfa, 0xed, 0xbe, 0x18, 0x27, 0xe}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x26, 0x9a, 0x52, 0x5d, 0x70, 0xc3, 0xb7, 0xd6, 0x87, 0xa1, 0x10, 0xeb, 0x40, 0xdc, 0xef, 0xf6, 0xcf, 0x1c, 0xf7, 0x4d, 0xc3, 0xb6, 0xb7, 0xf7, 0x2e, 0x78, 0x83, 0x9a, 0x1e, 0xe3, 0xd, 0xa2}} return a, nil } diff --git a/lib/go/templates/manifest.mainnet.json b/lib/go/templates/manifest.mainnet.json index fe02e82eb..60fc50ced 100755 --- a/lib/go/templates/manifest.mainnet.json +++ b/lib/go/templates/manifest.mainnet.json @@ -996,7 +996,7 @@ { "id": "SCO.13", "name": "Transfer Node", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeStaker object from an authorizers accoount\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the receiver's account\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeStaker object from an authorizers account\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the receiver's account\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", "arguments": [ { "type": "String", @@ -1022,12 +1022,12 @@ } ], "network": "mainnet", - "hash": "38bfd23b200ecef4d13fa3c2ea998b51e6a24f3a8ceb260d2affab7c918a97d0" + "hash": "3578c7f3b015df3a807dce45a0df262e79d95683cef20bd6247a8f1184c56279" }, { "id": "SCO.14", "name": "Transfer Delegator", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeDelegator object from an authorizers accoount\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow a referamce to a StakingCollection in the receiver's account\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeDelegator object from an authorizers account\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow a referamce to a StakingCollection in the receiver's account\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", "arguments": [ { "type": "String", @@ -1064,7 +1064,7 @@ } ], "network": "mainnet", - "hash": "11e2107d2ccd96cb6b3fa3a704491dcd9e1736215137304e0494243c21befc76" + "hash": "8c7b8460f11ae786c207493eac35deaccb456a31f9df34ddecccad12685c61fc" }, { "id": "SCO.15", diff --git a/lib/go/templates/manifest.testnet.json b/lib/go/templates/manifest.testnet.json index 06cf3490b..ac9a6dc88 100755 --- a/lib/go/templates/manifest.testnet.json +++ b/lib/go/templates/manifest.testnet.json @@ -996,7 +996,7 @@ { "id": "SCO.13", "name": "Transfer Node", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeStaker object from an authorizers accoount\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the receiver's account\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeStaker object from an authorizers account\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the receiver's account\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", "arguments": [ { "type": "String", @@ -1022,12 +1022,12 @@ } ], "network": "testnet", - "hash": "311f4071dda8b17ac6cbc6f0a27e98bd426026825d3c68308903fead884e616e" + "hash": "a39eedbe19f252c24ba2cc74aa70c0afd68b8d89528cad05a0a535e2f9c6ee87" }, { "id": "SCO.14", "name": "Transfer Delegator", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeDelegator object from an authorizers accoount\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow a referamce to a StakingCollection in the receiver's account\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeDelegator object from an authorizers account\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the primary user's account\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow a referamce to a StakingCollection in the receiver's account\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", "arguments": [ { "type": "String", @@ -1064,7 +1064,7 @@ } ], "network": "testnet", - "hash": "f9fa239cb78b3e07b8f8d56e173e2673b4b53aeb07d507a769c8d96eaf400b8d" + "hash": "135df83060f854d487030594e954e9642e4cf6accb5b5abbdf88a9e075468913" }, { "id": "SCO.15", diff --git a/transactions/flowToken/burn_tokens.cdc b/transactions/flowToken/burn_tokens.cdc index 4707c3043..dc5ae2790 100644 --- a/transactions/flowToken/burn_tokens.cdc +++ b/transactions/flowToken/burn_tokens.cdc @@ -4,8 +4,8 @@ // // The burning amount would be a parameter to the transaction -import FungibleToken from "FungibleToken" -import FlowToken from "FlowToken" +import "FungibleToken" +import "FlowToken" transaction(amount: UFix64) { diff --git a/transactions/flowToken/create_forwarder.cdc b/transactions/flowToken/create_forwarder.cdc index 798cf1695..4bb0a5c6f 100644 --- a/transactions/flowToken/create_forwarder.cdc +++ b/transactions/flowToken/create_forwarder.cdc @@ -23,9 +23,9 @@ Steps to set up accounts with token forwarder: getting the Receiver from the account that is the recipient. */ -import FungibleToken from "FungibleToken" -import FlowToken from "FlowToken" -import TokenForwarding from "TokenForwarding" +import "FungibleToken" +import "FlowToken" +import "TokenForwarding" transaction(receiver: Address) { diff --git a/transactions/flowToken/mint_tokens.cdc b/transactions/flowToken/mint_tokens.cdc index 8a35bc804..602398d8b 100644 --- a/transactions/flowToken/mint_tokens.cdc +++ b/transactions/flowToken/mint_tokens.cdc @@ -1,5 +1,5 @@ -import FungibleToken from "FungibleToken" -import FlowToken from "FlowToken" +import "FungibleToken" +import "FlowToken" /// This transaction mints tokens using the account that stores the Flow Token Admin resource /// This is the service account diff --git a/transactions/flowToken/scripts/get_balance.cdc b/transactions/flowToken/scripts/get_balance.cdc index 9483f4b2a..d36cb99a9 100644 --- a/transactions/flowToken/scripts/get_balance.cdc +++ b/transactions/flowToken/scripts/get_balance.cdc @@ -1,7 +1,7 @@ // This script reads the balance field of an account's FlowToken Balance -import FungibleToken from "FungibleToken" -import FlowToken from "FlowToken" +import "FungibleToken" +import "FlowToken" access(all) fun main(account: Address): UFix64 { diff --git a/transactions/flowToken/scripts/get_supply.cdc b/transactions/flowToken/scripts/get_supply.cdc index 3f94b91ac..b782fd2d2 100644 --- a/transactions/flowToken/scripts/get_supply.cdc +++ b/transactions/flowToken/scripts/get_supply.cdc @@ -1,7 +1,7 @@ // This script reads the total supply field // of the FlowToken smart contract -import FlowToken from "FlowToken" +import "FlowToken" access(all) fun main(): UFix64 { diff --git a/transactions/flowToken/setup_account.cdc b/transactions/flowToken/setup_account.cdc index fb792aded..c575fa3c0 100644 --- a/transactions/flowToken/setup_account.cdc +++ b/transactions/flowToken/setup_account.cdc @@ -3,8 +3,8 @@ // to add a Vault resource to their account // so that they can use the flowToken -import FungibleToken from "FungibleToken" -import FlowToken from "FlowToken" +import "FungibleToken" +import "FlowToken" transaction { diff --git a/transactions/flowToken/transfer_tokens.cdc b/transactions/flowToken/transfer_tokens.cdc index a75181e46..34f682b57 100644 --- a/transactions/flowToken/transfer_tokens.cdc +++ b/transactions/flowToken/transfer_tokens.cdc @@ -5,8 +5,8 @@ // The withdraw amount and the account from getAccount // would be the parameters to the transaction -import FungibleToken from "FungibleToken" -import FlowToken from "FlowToken" +import "FungibleToken" +import "FlowToken" transaction(amount: UFix64, to: Address) { diff --git a/transactions/stakingCollection/transfer_delegator.cdc b/transactions/stakingCollection/transfer_delegator.cdc index a9c1b19a2..f83d3a2ff 100644 --- a/transactions/stakingCollection/transfer_delegator.cdc +++ b/transactions/stakingCollection/transfer_delegator.cdc @@ -1,6 +1,6 @@ import FlowStakingCollection from "FlowStakingCollection" -// Transfers a NodeDelegator object from an authorizers accoount +// Transfers a NodeDelegator object from an authorizers account // and adds the NodeDelegator to another accounts Staking Collection // identified by the to Address. diff --git a/transactions/stakingCollection/transfer_node.cdc b/transactions/stakingCollection/transfer_node.cdc index c7e392e89..bc7b4c7a4 100644 --- a/transactions/stakingCollection/transfer_node.cdc +++ b/transactions/stakingCollection/transfer_node.cdc @@ -1,6 +1,6 @@ import FlowStakingCollection from "FlowStakingCollection" -// Transfers a NodeStaker object from an authorizers accoount +// Transfers a NodeStaker object from an authorizers account // and adds the NodeStaker to another accounts Staking Collection // identified by the to Address. From 66a7ba90316899f95d18e4ae210e58d03e8e9cf9 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Mon, 15 Apr 2024 17:09:38 -0500 Subject: [PATCH 124/160] update nft dependencies --- lib/go/contracts/go.mod | 2 +- lib/go/contracts/go.sum | 4 ++-- lib/go/templates/go.mod | 2 +- lib/go/templates/go.sum | 4 ++-- lib/go/templates/manifest.mainnet.json | 8 ++++---- lib/go/templates/manifest.testnet.json | 8 ++++---- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 6d8a2d97e..0ef4e5c17 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -6,7 +6,7 @@ require ( github.com/kevinburke/go-bindata v3.24.0+incompatible github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9 github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240402160548-a9c331660956 - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240409211504-f122847cbd9b + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240415194841-39036acfcfb5 github.com/stretchr/testify v1.8.4 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 5617d867b..6e0c05062 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1623,8 +1623,8 @@ github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876 github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240409211504-f122847cbd9b h1:B6IRYFFZz7Z1K9f7w+JDA1MPSWzUvKPBYsuryocf+HU= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240409211504-f122847cbd9b/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240415194841-39036acfcfb5 h1:SM+m82Ezc/SvR+l17DRjfdaA8KSOIp9iUxD/sdMky5k= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240415194841-39036acfcfb5/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8 h1:BqgQgXktxVFv8erjCaSHpL0CP+pa5M8g655GyF/t4JM= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= diff --git a/lib/go/templates/go.mod b/lib/go/templates/go.mod index 8ccf6b1ba..b122f1885 100644 --- a/lib/go/templates/go.mod +++ b/lib/go/templates/go.mod @@ -7,7 +7,7 @@ require ( github.com/onflow/cadence v1.0.0-M3 github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240402160548-a9c331660956 github.com/onflow/flow-go-sdk v1.0.0-M1 - github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240409211504-f122847cbd9b + github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240415194841-39036acfcfb5 github.com/psiemens/sconfig v0.1.0 github.com/spf13/cobra v1.5.0 ) diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index 5478c5ca8..6eb3571b4 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -1619,8 +1619,8 @@ github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240402160548-a9c331660956 github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240402160548-a9c331660956/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= -github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240409211504-f122847cbd9b h1:KTnwl1Ttla6Yg39sWeJoyCAzl9GgUHYjvh2d8qBcdUE= -github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240409211504-f122847cbd9b/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= +github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240415194841-39036acfcfb5 h1:yi3+QdygbkHFU+2vJMWyriO+BDYum2BqJtrVqfsnuQM= +github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240415194841-39036acfcfb5/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= diff --git a/lib/go/templates/manifest.mainnet.json b/lib/go/templates/manifest.mainnet.json index 60fc50ced..cfa472cea 100755 --- a/lib/go/templates/manifest.mainnet.json +++ b/lib/go/templates/manifest.mainnet.json @@ -298,7 +298,7 @@ { "id": "NFT.02", "name": "Transfer NFT with Paths", - "source": "import NonFungibleToken from 0x1d7e57aa55817448\n\n/// Can pass in any storage path and receiver path instead of just the default.\n/// This lets you choose the token you want to send as well the capability you want to send it to.\n///\n/// Any token path can be passed as an argument here, so wallets should\n/// should check argument values to make sure the intended token path is passed in\n///\ntransaction(to: Address, id: UInt64, senderPathIdentifier: String, receiverPathIdentifier: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n let storagePath = StoragePath(identifier: senderPathIdentifier)\n ?? panic(\"Could not construct a storage path from the provided path identifier string\")\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n let publicPath = PublicPath(identifier: receiverPathIdentifier)\n ?? panic(\"Could not construct a public path from the provided path identifier string\")\n\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n let receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", + "source": "import NonFungibleToken from 0x1d7e57aa55817448\n\n/// Can pass in any storage path and receiver path instead of just the default.\n/// This lets you choose the token you want to send as well the capability you want to send it to.\n///\n/// Any token path can be passed as an argument here, so wallets should\n/// should check argument values to make sure the intended token path is passed in\n///\ntransaction(to: Address, id: UInt64, senderPathIdentifier: String, receiverPathIdentifier: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n let storagePath = StoragePath(identifier: senderPathIdentifier)\n ?? panic(\"Could not construct a storage path from the provided path identifier string\")\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n let publicPath = PublicPath(identifier: receiverPathIdentifier)\n ?? panic(\"Could not construct a public path from the provided path identifier string\")\n\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{NonFungibleToken.Receiver}\u003e(publicPath)\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", "arguments": [ { "type": "Address", @@ -346,12 +346,12 @@ } ], "network": "mainnet", - "hash": "4c509996ec971e19f26d497a7daa7563bdb10d2a401b5cf214eff95beec565fc" + "hash": "2cb2cd6408a35f08b4f9b13e6e6b44d5325eb78a7a1eebb0e790ee285bdd1365" }, { "id": "NFT.03", "name": "Transfer NFT with Address", - "source": "import NonFungibleToken from 0x1d7e57aa55817448\nimport MetadataViews from 0x1d7e57aa55817448\n\n/// Can pass in any contract address and name\n/// This lets you choose the token you want to send because\n/// the transaction gets the metadata from the provided contract.\n///\ntransaction(to: Address, id: UInt64, contractAddress: Address, contractName: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n // NFTCollectionData struct to get paths from\n let collectionData: MetadataViews.NFTCollectionData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{NonFungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n self.collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: self.collectionData.storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(self.collectionData.publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n let receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", + "source": "import NonFungibleToken from 0x1d7e57aa55817448\nimport MetadataViews from 0x1d7e57aa55817448\n\n/// Can pass in any contract address and name\n/// This lets you choose the token you want to send because\n/// the transaction gets the metadata from the provided contract.\n///\ntransaction(to: Address, id: UInt64, contractAddress: Address, contractName: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n // NFTCollectionData struct to get paths from\n let collectionData: MetadataViews.NFTCollectionData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{NonFungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n self.collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: self.collectionData.storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{NonFungibleToken.Receiver}\u003e(self.collectionData.publicPath)\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", "arguments": [ { "type": "Address", @@ -399,7 +399,7 @@ } ], "network": "mainnet", - "hash": "e380305e11ce6959662fa12715c4689d2c588403e138876225a243b8034c0afc" + "hash": "91fd4533a93f55a756484958e5409b9666c85e4191e9ba6f5fb3587a973d4eb5" }, { "id": "TH.01", diff --git a/lib/go/templates/manifest.testnet.json b/lib/go/templates/manifest.testnet.json index ac9a6dc88..40b0cd11d 100755 --- a/lib/go/templates/manifest.testnet.json +++ b/lib/go/templates/manifest.testnet.json @@ -298,7 +298,7 @@ { "id": "NFT.02", "name": "Transfer NFT with Paths", - "source": "import NonFungibleToken from 0x631e88ae7f1d7c20\n\n/// Can pass in any storage path and receiver path instead of just the default.\n/// This lets you choose the token you want to send as well the capability you want to send it to.\n///\n/// Any token path can be passed as an argument here, so wallets should\n/// should check argument values to make sure the intended token path is passed in\n///\ntransaction(to: Address, id: UInt64, senderPathIdentifier: String, receiverPathIdentifier: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n let storagePath = StoragePath(identifier: senderPathIdentifier)\n ?? panic(\"Could not construct a storage path from the provided path identifier string\")\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n let publicPath = PublicPath(identifier: receiverPathIdentifier)\n ?? panic(\"Could not construct a public path from the provided path identifier string\")\n\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n let receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", + "source": "import NonFungibleToken from 0x631e88ae7f1d7c20\n\n/// Can pass in any storage path and receiver path instead of just the default.\n/// This lets you choose the token you want to send as well the capability you want to send it to.\n///\n/// Any token path can be passed as an argument here, so wallets should\n/// should check argument values to make sure the intended token path is passed in\n///\ntransaction(to: Address, id: UInt64, senderPathIdentifier: String, receiverPathIdentifier: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n let storagePath = StoragePath(identifier: senderPathIdentifier)\n ?? panic(\"Could not construct a storage path from the provided path identifier string\")\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n let publicPath = PublicPath(identifier: receiverPathIdentifier)\n ?? panic(\"Could not construct a public path from the provided path identifier string\")\n\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{NonFungibleToken.Receiver}\u003e(publicPath)\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", "arguments": [ { "type": "Address", @@ -346,12 +346,12 @@ } ], "network": "testnet", - "hash": "267278a2c41182ced41877d4ecdec086e07ee152d17e8f5b8ba910b9c91aabde" + "hash": "db0518029ca76e6f2d8ec1517768b1d395523e87d11a4297197f98b53dc9cc2d" }, { "id": "NFT.03", "name": "Transfer NFT with Address", - "source": "import NonFungibleToken from 0x631e88ae7f1d7c20\nimport MetadataViews from 0x631e88ae7f1d7c20\n\n/// Can pass in any contract address and name\n/// This lets you choose the token you want to send because\n/// the transaction gets the metadata from the provided contract.\n///\ntransaction(to: Address, id: UInt64, contractAddress: Address, contractName: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n // NFTCollectionData struct to get paths from\n let collectionData: MetadataViews.NFTCollectionData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{NonFungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n self.collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: self.collectionData.storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverCap = recipient.capabilities.get\u003c\u0026{NonFungibleToken.Receiver}\u003e(self.collectionData.publicPath)\n ?? panic(\"Could not get the recipient's Receiver Capability\")\n\n let receiverRef = receiverCap.borrow()\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", + "source": "import NonFungibleToken from 0x631e88ae7f1d7c20\nimport MetadataViews from 0x631e88ae7f1d7c20\n\n/// Can pass in any contract address and name\n/// This lets you choose the token you want to send because\n/// the transaction gets the metadata from the provided contract.\n///\ntransaction(to: Address, id: UInt64, contractAddress: Address, contractName: String) {\n\n // The NFT resource to be transferred\n let tempNFT: @{NonFungibleToken.NFT}\n\n // NFTCollectionData struct to get paths from\n let collectionData: MetadataViews.NFTCollectionData\n\n prepare(signer: auth(BorrowValue) \u0026Account) {\n\n // Borrow a reference to the nft contract deployed to the passed account\n let resolverRef = getAccount(contractAddress)\n .contracts.borrow\u003c\u0026{NonFungibleToken}\u003e(name: contractName)\n ?? panic(\"Could not borrow a reference to the non-fungible token contract\")\n\n // Use that reference to retrieve the NFTCollectionData view \n self.collectionData = resolverRef.resolveContractView(resourceType: nil, viewType: Type\u003cMetadataViews.NFTCollectionData\u003e()) as! MetadataViews.NFTCollectionData?\n ?? panic(\"Could not resolve the NFTCollectionData view for the given non-fungible token contract\")\n\n\n // borrow a reference to the signer's NFT collection\n let withdrawRef = signer.storage.borrow\u003cauth(NonFungibleToken.Withdraw) \u0026{NonFungibleToken.Collection}\u003e(\n from: self.collectionData.storagePath\n ) ?? panic(\"Account does not store a collection object at the specified path\")\n\n self.tempNFT \u003c- withdrawRef.withdraw(withdrawID: id)\n }\n\n execute {\n // get the recipients public account object\n let recipient = getAccount(to)\n\n // borrow a public reference to the receivers collection\n let receiverRef = recipient.capabilities.borrow\u003c\u0026{NonFungibleToken.Receiver}\u003e(self.collectionData.publicPath)\n ?? panic(\"Could not borrow reference to the recipient's receiver\")\n\n // Deposit the NFT to the receiver\n receiverRef.deposit(token: \u003c-self.tempNFT)\n }\n}", "arguments": [ { "type": "Address", @@ -399,7 +399,7 @@ } ], "network": "testnet", - "hash": "318487e2471852d2cde2c4170a4b67f04cc0e00cc93ab08c9ae9cbf36be9a28b" + "hash": "e4b837ce4d30be9bc74768085a0b43ba4d5edb3bed9c23c18b6a4de1024d459b" }, { "id": "TH.01", From ac40215adc6b535b18d3ae9228ac42712bbd36d4 Mon Sep 17 00:00:00 2001 From: Joshua Hannan Date: Wed, 24 Apr 2024 11:43:42 -0500 Subject: [PATCH 125/160] Add entitlement for locked account creator (#423) * update deps, add entitlement for locked account creator * make ci --- README.md | 54 +++++++++++-------- lib/go/contracts/go.mod | 4 +- lib/go/contracts/go.sum | 8 +-- lib/go/templates/go.mod | 4 +- lib/go/templates/go.sum | 8 +-- lib/go/templates/internal/assets/assets.go | 42 +++++++-------- transactions/flowToken/transfer_tokens.cdc | 2 +- .../admin/admin_create_shared_accounts.cdc | 2 +- .../admin/admin_deposit_account_creator.cdc | 2 +- ...tody_create_account_with_lease_account.cdc | 2 +- .../custody_create_only_lease_account.cdc | 2 +- .../custody_create_only_shared_account.cdc | 2 +- .../admin/custody_create_shared_accounts.cdc | 2 +- 13 files changed, 71 insertions(+), 63 deletions(-) diff --git a/README.md b/README.md index e80bd9bd7..0530633d2 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,9 @@ so they can build a basic understanding of the programming language. | Network | Contract Address | | ---------------------------- | -------------------- | -| Emulator | `0x0ae53cb6e3f42a79` | -| Testnet/Previewnet/Crescendo | `0x7e60df042a9c0868` | +| Emulator | `0x0ae53cb6e3f42a79` | +| Previewnet | `0x4445e7ad11568276` | +| Testnet/Crescendo | `0x7e60df042a9c0868` | | Sandboxnet | `0x0661ab7d6696a460` | | Mainnet | `0x1654653399040a61` | @@ -46,8 +47,9 @@ You can find transactions for using the Flow Token in the `transactions/flowToke | Network | Contract Address | | ---------------------------- | -------------------- | -| Emulator | `0xe5a8b7f23e8b548f` | -| Testnet/Previewnet/Crescendo | `0x912d5440f7e3769e` | +| Emulator | `0xe5a8b7f23e8b548f` | +| Previewnet | `0xab086ce9cc29fc80` | +| Testnet/Crescendo | `0x912d5440f7e3769e` | | Sandboxnet | `0xe92c2039bbe9da96` | | Mainnet | `0xf919ee77447b7497` | @@ -59,8 +61,9 @@ This contract defines fees that are spent for executing transactions and creatin | Network | Contract Address | | ---------------------------- | -------------------- | -| Emulator/Canary | `0xf8d6e0586b0a20c7` | -| Testnet/Previewnet/Crescendo | `0x8c5303eaa26202d6` | +| Emulator | `0xf8d6e0586b0a20c7` | +| Previewnet | `0xb6763b4399a888c8` | +| Testnet/Crescendo | `0x8c5303eaa26202d6` | | Sandboxnet | `0xf4527793ee68aede` | | Mainnet | `0xe467b9dd11fa00df` | @@ -75,8 +78,9 @@ You can see [more docs about storage capacity and fees here.](https://docs.onflo | Network | Contract Address | | ---------------------------- | -------------------- | -| Emulator/Canary | `0xf8d6e0586b0a20c7` | -| Testnet/Previewnet/Crescendo | `0x8c5303eaa26202d6` | +| Emulator | `0xf8d6e0586b0a20c7` | +| Previewnet | `0xb6763b4399a888c8` | +| Testnet/Crescendo | `0x8c5303eaa26202d6` | | Sandboxnet | `0xf4527793ee68aede` | | Mainnet | `0xe467b9dd11fa00df` | @@ -92,8 +96,9 @@ You can find transactions for interacting with the service account contract in t | Network | Contract Address | | ---------------------------- | -------------------- | -| Emulator/Canary | `0xf8d6e0586b0a20c7` | -| Testnet/Previewnet/Crescendo | `0x8c5303eaa26202d6` | +| Emulator | `0xf8d6e0586b0a20c7` | +| Previewnet | `0xb6763b4399a888c8` | +| Testnet/Crescendo | `0x8c5303eaa26202d6` | | Sandboxnet | `0xf4527793ee68aede` | | Mainnet | `0xe467b9dd11fa00df` | @@ -109,12 +114,13 @@ You can find transactions for interacting with the random beacon `contracts/NodeVersionBeacon.cdc` -| Network | Contract Address | -| ---------------------------- | -------------------- | -| Emulator/Canary | `0xf8d6e0586b0a20c7` | -| Testnet/Previewnet/Crescendo | `0x8c5303eaa26202d6` | -| Sandboxnet | `0xf4527793ee68aede` | -| Mainnet | `0xe467b9dd11fa00df` | +| Network | Contract Address | +| ----------------- | -------------------- | +| Emulator | `0xf8d6e0586b0a20c7` | +| Previewnet | `0xb6763b4399a888c8` | +| Testnet/Crescendo | `0x8c5303eaa26202d6` | +| Sandboxnet | `0xf4527793ee68aede` | +| Mainnet | `0xe467b9dd11fa00df` | The `NodeVersionBeacon` contract holds the past and future protocol versions that should be used @@ -128,12 +134,13 @@ history contract in the `transactions/nodeVersionBeacon` directory. `contracts/FlowIDTableStaking.cdc` `contracts/epochs/FlowEpoch.cdc` -| Network | Contract Address | -| ---------------------------- | -------------------- | -| Emulator/Canary | `0xf8d6e0586b0a20c7` | -| Testnet/Previewnet/Crescendo | `0x9eca2b38b18b5dfe` | -| Sandboxnet | `0xf4527793ee68aede` | -| Mainnet | `0x8624b52f9ddcd04a` | +| Network | Contract Address | +| ------------------- | -------------------- | +| Emulator | `0xf8d6e0586b0a20c7` | +| Previewnet | `0xb6763b4399a888c8` | +| Testnet/Crescendo | `0x9eca2b38b18b5dfe` | +| Sandboxnet | `0xf4527793ee68aede` | +| Mainnet | `0x8624b52f9ddcd04a` | These contract manages the list of identities that correspond to node operators in the Flow network as well as the process for adding and removing nodes from the network via Epochs. @@ -161,7 +168,8 @@ These scripts are documented in the [staking scripts section of the docs](https: | Network | Contract Address | | --------------- | -------------------- | -| Emulator/Canary | `0xf8d6e0586b0a20c7` | +| Emulator | `0xf8d6e0586b0a20c7` | +| Previewnet | `0xb6763b4399a888c8` | | Testnet | `0x95e019a17d0e23d7` | | Sandboxnet | `0xf4527793ee68aede` | | Mainnet | `0x8d0e87b65159ae63` | diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 0ef4e5c17..94f5cf378 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -5,8 +5,8 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.24.0+incompatible github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9 - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240402160548-a9c331660956 - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240415194841-39036acfcfb5 + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240424142855-b518689a350b + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240424144730-4a6f42d2a372 github.com/stretchr/testify v1.8.4 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 6e0c05062..02a23f7d2 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1617,14 +1617,14 @@ github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9 h1:rTemckPWir+N/m1GyhT8jdiETj0RiWc8FiwItE2Nxyg= github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9/go.mod h1:PZrrCsllIt/Bu4HlJtisXfvDrOt1aLKU5R70vsZHKRc= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240402160548-a9c331660956 h1:WbG97gmdbgfYZT8YCyye0fAwz4k5vditXcPGoy63m9M= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240402160548-a9c331660956/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240424142855-b518689a350b h1:HutxHvyc06UbJncEUieAwt7Nf1lG5uiIGVok6w031LM= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240424142855-b518689a350b/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876 h1:fZj39XxayIL7uvKvonNI3MtQM3wsFJ8oRl/XW/0rn7A= github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240415194841-39036acfcfb5 h1:SM+m82Ezc/SvR+l17DRjfdaA8KSOIp9iUxD/sdMky5k= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240415194841-39036acfcfb5/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240424144730-4a6f42d2a372 h1:jVrUFQ5Fn3gBKZ3Q6OVhceF2vKiHg1la6g3DuRKvdoo= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240424144730-4a6f42d2a372/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8 h1:BqgQgXktxVFv8erjCaSHpL0CP+pa5M8g655GyF/t4JM= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= diff --git a/lib/go/templates/go.mod b/lib/go/templates/go.mod index b122f1885..6793ecc90 100644 --- a/lib/go/templates/go.mod +++ b/lib/go/templates/go.mod @@ -5,9 +5,9 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.24.0+incompatible github.com/onflow/cadence v1.0.0-M3 - github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240402160548-a9c331660956 + github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240424142855-b518689a350b github.com/onflow/flow-go-sdk v1.0.0-M1 - github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240415194841-39036acfcfb5 + github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240424144730-4a6f42d2a372 github.com/psiemens/sconfig v0.1.0 github.com/spf13/cobra v1.5.0 ) diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index 6eb3571b4..ab07cb1a2 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -1615,12 +1615,12 @@ github.com/onflow/cadence v1.0.0-M3 h1:bSydJise9pU4aALloUKv/EWmDLITRlbBpuG8OPByd github.com/onflow/cadence v1.0.0-M3/go.mod h1:odXGZZ/wGNA5mwT8bC9v8u8EXACHllB2ABSZK65TGL8= github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= -github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240402160548-a9c331660956 h1:Ef9UKtwNcHVG2R8YskYiwRoaTZFhAVmQ0ZN3c0eDUGU= -github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240402160548-a9c331660956/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= +github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240424142855-b518689a350b h1:Z/Fn+7ysdfuv8yKzhPlZ+HrADm3zaUi+zb6BP4JWLfU= +github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240424142855-b518689a350b/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= -github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240415194841-39036acfcfb5 h1:yi3+QdygbkHFU+2vJMWyriO+BDYum2BqJtrVqfsnuQM= -github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240415194841-39036acfcfb5/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= +github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240424144730-4a6f42d2a372 h1:zjEANfSuCctAQ79IotaP6+v0jZiJsDAlikcZC++BTpc= +github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240424144730-4a6f42d2a372/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index d0357b598..ccf2c5de9 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -78,7 +78,7 @@ // flowToken/scripts/get_balance.cdc (386B) // flowToken/scripts/get_supply.cdc (193B) // flowToken/setup_account.cdc (1.315kB) -// flowToken/transfer_tokens.cdc (1.293kB) +// flowToken/transfer_tokens.cdc (1.295kB) // idTableStaking/admin/add_approved_and_limits.cdc (1.635kB) // idTableStaking/admin/add_approved_nodes.cdc (1.055kB) // idTableStaking/admin/capability_end_epoch.cdc (1.374kB) @@ -170,16 +170,16 @@ // idTableStaking/scripts/get_total_staked.cdc (463B) // idTableStaking/scripts/get_total_staked_by_type.cdc (256B) // idTableStaking/scripts/get_weekly_payout.cdc (202B) -// lockedTokens/admin/admin_create_shared_accounts.cdc (3.671kB) +// lockedTokens/admin/admin_create_shared_accounts.cdc (3.705kB) // lockedTokens/admin/admin_deploy_contract.cdc (463B) -// lockedTokens/admin/admin_deposit_account_creator.cdc (846B) +// lockedTokens/admin/admin_deposit_account_creator.cdc (880B) // lockedTokens/admin/admin_remove_delegator.cdc (463B) // lockedTokens/admin/check_main_registration.cdc (949B) // lockedTokens/admin/check_shared_registration.cdc (633B) -// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.435kB) -// lockedTokens/admin/custody_create_only_lease_account.cdc (3.335kB) -// lockedTokens/admin/custody_create_only_shared_account.cdc (3.57kB) -// lockedTokens/admin/custody_create_shared_accounts.cdc (3.706kB) +// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.469kB) +// lockedTokens/admin/custody_create_only_lease_account.cdc (3.369kB) +// lockedTokens/admin/custody_create_only_shared_account.cdc (3.604kB) +// lockedTokens/admin/custody_create_shared_accounts.cdc (3.74kB) // lockedTokens/admin/custody_setup_account_creator.cdc (758B) // lockedTokens/admin/deposit_locked_tokens.cdc (1.678kB) // lockedTokens/admin/unlock_tokens.cdc (593B) @@ -1924,7 +1924,7 @@ func flowtokenSetup_accountCdc() (*asset, error) { return a, nil } -var _flowtokenTransfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xc1\x4e\xdc\x30\x10\x3d\x93\xaf\x78\xdd\x03\x24\x52\x49\x2e\x55\x0f\x2b\x0a\xa5\xad\xe8\x1d\x51\x7a\x76\x92\xc9\xc6\x6a\xd6\x8e\xc6\x13\x16\x84\xf8\xf7\xca\x76\xbc\xbb\x01\xa9\x74\x2f\xab\x8c\x67\xde\x7b\xf3\x9e\x5d\x55\xb8\xeb\xb5\x83\xb0\x32\x4e\x35\xa2\xad\x81\x76\x50\x10\xda\x8e\x83\x12\x42\x67\xd9\x7f\x1e\x9d\x4b\xaf\x24\xab\x2a\x34\x76\x1a\x5a\xd4\x84\xc9\x51\x8b\xfa\x09\xca\x3c\x59\x43\x10\x0b\x47\xa6\x85\xd8\x3f\x64\x9c\xff\x54\xc6\x4a\x4f\x0c\xd5\x34\x76\x32\x61\xd8\x83\xa0\x57\x0e\x35\x91\x81\x23\xc1\x34\xfa\x56\xa6\x86\xf4\x03\xcd\xc3\x65\x56\x55\x59\xd0\x48\xd8\x69\xe9\x5b\x56\x3b\xa8\xad\x07\x81\xf2\x14\x3d\x25\x50\x74\x6c\xb7\xd8\x90\x5c\x1f\x48\x76\x49\xa1\xef\x1b\x15\xab\x2d\x09\x71\x90\xe4\x2b\x47\x4b\x65\x99\xde\x8e\x96\x05\xab\x9b\xc9\x6c\x74\x3d\xd0\x9d\x17\xb0\x3a\x94\x07\xbb\x9b\x4b\xd9\xd1\x5c\x1e\xc5\xac\xf1\xeb\x46\x3f\x7e\xfe\xf4\x11\x62\xd7\xb8\x6e\x5b\x26\xe7\x0a\x3c\x67\x19\x00\xcc\x0b\xdc\xab\x69\x10\x30\x39\x3b\x71\x43\xb3\x03\x76\x68\x5d\x14\x33\xbb\xe5\xab\x8a\x09\x35\x69\xb3\x89\x12\x3b\x62\xa6\x36\x40\x0d\x24\xde\x5c\x09\x58\x6b\x7c\x5d\xa8\x2d\x43\x35\x72\x8e\x4c\xa3\x62\xca\x9d\xde\x18\xe2\x35\xd4\x24\x7d\xfe\xcd\x32\xdb\xdd\xbd\x1a\x26\x2a\x70\x3a\x1b\xb5\x97\x39\x4b\xfd\x49\x02\x05\xa6\x8e\x98\x4c\x43\xc9\xac\x08\x74\xe6\xe0\xc4\x32\xb5\x78\x08\x5c\x69\xce\xeb\x0a\x95\x5b\xea\xf0\x65\x6e\x2e\x7d\xab\xda\x50\x59\x07\xde\x8b\xa0\x61\xa9\xf8\xf7\x1c\x6a\x81\xd3\xbd\xc3\x71\x8d\xcb\xdc\x07\xba\x46\x35\x83\x54\x5d\x3a\x0f\xc7\x45\x76\x72\x72\x72\x75\x85\x51\x19\xdd\xe4\xab\xef\x21\x69\x63\x05\x91\xeb\xad\x7e\xbb\x8b\xf2\xc3\xf4\x87\x55\xb1\xd8\x39\xc9\x48\x29\x84\xbb\xf4\xfe\xd6\x8e\x86\xae\xdc\xc7\x81\x8b\xf3\xbd\x07\x65\xba\xad\xfb\x0b\x12\xff\x8b\x30\xfb\x12\xc9\xe9\x91\x9a\x49\xe8\xff\xfc\x67\x6a\xf4\xa8\xc9\xc8\x99\xc3\x6d\x7c\x24\xbc\xb0\x7f\x7e\x39\x1c\x13\x38\x7a\x09\xb9\xd8\x62\xdf\xe9\x7f\x65\xa3\x46\x55\xeb\x41\x8b\x26\x97\xc2\x39\x7d\x5e\x26\x93\x38\x5e\x2e\xf3\x6a\x9c\xea\x41\x37\x87\x04\xd2\xd9\xfb\x21\xc4\xbe\x7f\x6f\x13\xcc\x7b\x15\xc8\x0f\x1a\xad\xd3\x12\x7a\x93\x95\x26\xa5\xa3\xcd\x1b\x0c\x7e\xed\xc8\x91\x1b\x65\x1b\xc1\xe6\x0b\x75\x71\xbe\x8c\x2d\x45\xf2\x92\xfd\x0d\x00\x00\xff\xff\xb0\xa7\x2d\x21\x0d\x05\x00\x00" +var _flowtokenTransfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x4f\xdb\x40\x10\x3d\xe3\x5f\xf1\x9a\x03\xd8\x52\xb1\x2f\x55\x0f\x11\x85\xd2\x56\xf4\x8e\x28\x3d\xaf\xed\x71\xbc\xaa\xb3\x6b\xcd\x8e\x09\x08\xf1\xdf\xab\x5d\xef\x9a\x24\x48\xa5\xb9\x44\x9e\x8f\x37\x6f\xde\x9b\xad\x2a\xdc\xf5\xda\x41\x58\x19\xa7\x1a\xd1\xd6\x40\x3b\x28\x08\x6d\xc7\x41\x09\xa1\xb3\xec\x3f\xf7\xf2\xd2\x2b\xc9\xaa\x0a\x8d\x9d\x86\x16\x35\x61\x72\xd4\xa2\x7e\x82\x32\x4f\xd6\x10\xc4\xc2\x91\x69\x21\xf6\x0f\x19\xe7\x3f\x95\xb1\xd2\x13\x43\x35\x8d\x9d\x4c\x68\xf6\x20\xe8\x95\x43\x4d\x64\xe0\x48\x30\x8d\xbe\x94\xa9\x21\xfd\x40\xb1\xb9\xcc\xaa\x2a\x0b\x1c\x09\x3b\x2d\x7d\xcb\x6a\x07\xb5\xf5\x20\x50\x7e\x44\x4f\x09\x14\x1d\xdb\x2d\x36\x24\xd7\xaf\x43\x76\x89\xa1\xaf\x1b\x15\xab\x2d\x09\x71\xa0\xe4\x23\x7b\x4b\x65\x99\xde\x8e\x96\x05\xab\x9b\xc9\x6c\x74\x3d\xd0\x9d\x27\xb0\x7a\x0d\x0f\x76\x17\x43\xd9\x5e\x5f\x3e\x93\x59\xe3\xd7\x8d\x7e\xfc\xfc\xe9\x23\xc4\xae\x71\xdd\xb6\x4c\xce\x15\x78\xce\x32\x00\x88\x0b\xdc\xab\x69\x10\x30\x39\x3b\x71\x43\x51\x01\x3b\xb4\x6e\x26\x13\xd5\xf2\x51\xc5\x84\x9a\xb4\xd9\xcc\x14\x3b\x62\xa6\x36\x40\x0d\x24\x5e\x5c\x09\x58\x6b\x7c\x7d\x3e\xa0\x5b\x86\xf0\xcb\x3c\x75\x64\x1a\x15\x53\xee\xf4\xc6\x10\xaf\xa1\x26\xe9\xf3\x6f\x96\xd9\xee\xee\xd5\x30\x51\x81\xd3\x28\xd5\x42\x34\x92\xfd\x49\x02\x05\xa6\x8e\x98\x4c\x43\x49\xae\x19\xe8\xcc\xc1\x89\x65\x6a\xf1\xe0\x87\x2d\x7d\x9e\x59\x88\xdc\x52\x87\x2f\xb1\xb8\xf4\xa5\x6a\x43\x65\x1d\xe6\x5e\x04\x0e\x87\x94\x7f\x47\x5b\x0b\x9c\x2e\x1a\xcf\x7b\x5c\xe6\xde\xd2\x35\xaa\x08\x52\x75\x29\x1f\xd2\x45\x76\x72\x72\x72\x75\x85\x51\x19\xdd\xe4\xab\xef\xc1\x6b\x63\x05\xf3\xac\xb7\xfc\xed\x6e\xa6\x1f\xba\x3f\xac\x8a\x83\x9d\x13\x8d\xe4\x43\xb8\xa6\xf7\xb7\x76\x34\x74\xe5\x62\x08\x2e\xce\x17\x0d\xca\x74\xaf\xcb\x89\xcc\xff\x45\xe8\x8d\x1e\xd1\x23\x35\x93\xd0\xff\xe9\xcf\xd4\xe8\x51\x93\x91\x33\x87\xdb\xf9\x99\xf0\x81\xfc\xf1\xed\xf0\xec\xc0\xde\x5b\xc8\xc5\x16\x4b\xa5\xff\x95\x8d\x1a\x55\xad\x07\x2d\x9a\x5c\x32\xe7\xf4\xe8\x98\xd2\x8c\x97\xcb\xbc\x1a\xa7\x7a\xd0\xcd\xab\x03\x29\xf7\xbe\x09\x73\xdd\xbf\xb7\x09\xe2\x1d\x19\xf2\x83\x46\xeb\xb4\x84\xda\x24\xa5\x49\xee\x68\xf3\x06\x83\x8f\x15\xd9\x53\xa3\x6c\x67\xb0\x78\x50\x17\xe7\x87\xb6\x25\x4b\x5e\xb2\xbf\x01\x00\x00\xff\xff\x81\x5c\x06\xdb\x0f\x05\x00\x00" func flowtokenTransfer_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1940,7 +1940,7 @@ func flowtokenTransfer_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/transfer_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc2, 0xb0, 0x74, 0x99, 0x3, 0x6f, 0x41, 0x71, 0xe2, 0xbc, 0xf1, 0x71, 0xed, 0xb9, 0x22, 0xbe, 0x64, 0x11, 0x50, 0x15, 0x33, 0xe3, 0x9e, 0x56, 0x59, 0x71, 0x7, 0x95, 0x22, 0x4f, 0x7e, 0xb9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdf, 0x32, 0x26, 0xc1, 0x7, 0x88, 0xcd, 0xa2, 0x71, 0x8, 0xa5, 0xd0, 0x57, 0xcd, 0x4e, 0xd3, 0x50, 0xfe, 0xe6, 0xcb, 0x5e, 0xf3, 0xfa, 0x8f, 0x38, 0x45, 0x75, 0xa7, 0x5e, 0x5f, 0x9f, 0xf}} return a, nil } @@ -3764,7 +3764,7 @@ func idtablestakingScriptsGet_weekly_payoutCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xde\x63\x8d\x24\x0b\xd7\xe8\xa2\xc5\xa6\xe8\xa2\x4d\x77\xcf\x13\x69\x6c\x11\xa6\x48\x95\xa4\x6c\x18\x8b\xbc\x7b\x41\x51\x7f\x94\x25\x3b\x6e\x57\x87\xc0\xa2\xe6\xf7\x9b\x99\x8f\x13\x96\x17\x52\x19\xd8\xa8\x53\x61\x64\x50\xbf\x7d\xe2\xf2\xf8\x22\xf7\x24\x60\xab\x64\x0e\xb3\xf6\x7d\xd6\x4a\x94\x62\xc7\x5e\x39\x79\x52\xfd\xb3\x56\xf2\x59\x26\x7b\x4a\xab\x33\x5d\x0b\xf6\x8f\x66\x41\x10\xc7\x31\xbc\x28\x14\x1a\x13\xc3\xa4\x00\x93\xa1\x01\x93\x11\xe4\xc8\x04\x98\xca\x03\xa6\x39\x13\x70\x94\x25\x4f\x41\xb3\x9d\xa8\x94\x8c\x84\x44\x11\x1a\x02\x04\x9d\xa1\xa2\x14\x30\x49\x64\x29\x0c\xa0\x48\x01\x05\x94\x82\x57\xbe\x2a\x71\x74\x9f\xb6\x52\x01\x42\xa9\x49\x05\x81\xe9\xdc\x86\x01\x00\x40\x81\xca\x30\xe4\x6b\xeb\xee\x4b\xf9\xca\x59\xf2\x99\x4e\xab\x1a\x9e\xe8\x33\x9d\x9e\x99\x36\xbf\x08\xa3\x4e\x0b\x88\x63\xf8\x46\x6c\x97\x99\x15\x7c\x58\x2e\xfb\xea\x7f\x6b\x52\x37\x68\xff\x54\x6b\x6f\x4b\x7e\xab\xea\x87\xe5\x72\x19\xcc\x01\xbe\x07\xce\xbf\xa2\x02\x15\x85\x15\x5c\x2b\xc0\xd2\x64\xe1\xcf\x52\x29\x79\xfc\x8a\xbc\xa4\x39\xdc\xad\x1d\x40\xf3\x46\xc3\x3e\x71\x0c\x1b\x87\xa3\x45\x5d\xd0\xb1\x81\x51\x3b\x1c\xd3\xd4\x7e\x60\x0a\xf6\x74\xd2\xad\x16\x27\x53\xa3\x5e\xdb\x84\x47\xa8\x7f\x85\x05\x9e\x48\xad\x5c\xd5\xe6\x9e\x86\xc5\xfd\x9a\x7c\xab\xe0\x99\x8f\xac\xf7\x08\xd3\x34\x2c\x3a\x7c\x46\xeb\x15\xb5\x02\x0b\xc8\x50\x67\x6b\xbe\x93\x8a\x99\x2c\x9f\x92\xf7\x84\x16\x70\xac\xc1\x1d\x17\x76\x5f\xe7\xb7\x07\xe9\x95\xf6\x7a\x8c\xbe\xf8\xe5\x10\x7d\xd9\x26\xc2\x36\xc4\x1e\xe8\xa3\x01\x9e\x35\xde\x85\xe8\xce\x65\x27\x42\x3b\x17\x3c\x8b\xab\x6b\x3c\x84\x42\xb1\x83\xfd\xc5\x99\xd8\xdb\xc9\xb6\xad\xa8\x8d\xb4\x43\x7d\xc0\x92\x1b\xaf\x8b\xaa\x93\x0d\x16\xf8\xca\x38\x33\x27\x78\x1c\x54\x21\x69\x3e\x31\xd2\x91\xb5\x82\x3b\x8a\x98\xd6\x25\xb5\x66\xec\xf3\x50\x0d\x88\xc7\x5b\xd1\x37\x66\xb2\x54\xe1\x71\x0e\x77\x2d\xed\x45\x5f\xad\xbf\x27\x4f\x37\x8c\x6b\xbb\xf1\xb6\x11\xab\xa4\xfc\xf4\x5a\x7e\x72\x3c\x54\xb3\x59\x8e\x02\x77\xa4\xaa\xe9\xaa\x73\x64\x06\x2c\xd9\xd9\xa4\x3d\x26\xf3\xd2\xe6\x1d\x71\xfe\x5e\x9b\x78\xb8\xf7\x18\x36\x72\x0e\x9f\xcf\x04\xc3\x0a\xb2\xd5\x10\xb9\xa9\x36\x6e\x30\xd3\x78\xa0\xf0\xe1\xfe\xdc\xf1\x02\x8c\x5c\xf9\xae\xcf\x9d\xfe\xe5\xac\x7c\x41\x93\xf5\x60\xb1\x99\x98\x9e\xd4\x74\x1d\x3d\xc0\x2f\x14\xf5\x4a\x1d\xaf\x44\xf9\x14\x7a\x7e\xec\xf3\xff\xf2\xfa\x55\xf2\x74\xb2\x34\x2f\x9d\x84\xef\xd7\x61\xbc\x4e\x53\x45\x5a\xaf\x06\xf5\x40\x77\xbc\xf0\x34\xfa\x20\xae\x26\x20\x6d\x15\x26\xe8\xc0\x2b\xb4\x3f\x1c\xf7\xbd\x64\x86\x8e\x07\xa5\xef\x25\xd5\xc3\x66\xcc\xb7\x05\x89\x89\xad\xdc\x60\x01\x8f\x5e\x24\x17\xca\x7b\x37\xe5\x6c\x50\xba\xdb\x62\x1a\x83\xc3\x0b\xa2\x22\x41\x9d\x85\x75\xbc\x0b\x40\x33\xda\xf2\xb5\xf2\x6f\x62\x2b\x1d\xd9\x4d\x35\x46\x75\x93\x6c\x24\xe7\xe4\x36\x9d\x47\x77\xe3\x35\xd9\xfa\xed\xfe\x5a\xdd\xdb\x63\xb9\x0f\xcc\x8c\xf4\xaf\xdd\xb3\xa6\xa7\x73\xa0\x3f\x86\x8e\x8f\x90\x7d\x3e\x7e\x84\x02\x05\x4b\xc2\xd9\xa6\xda\xc2\x84\x34\xe0\x42\x04\x45\x5b\x52\x24\x12\xb2\xbc\xed\x36\xb5\xa4\xb5\x3e\xeb\x01\x31\x06\x82\x6d\xed\x66\x0d\xf0\x1c\x7a\x03\x70\xcb\x58\x34\x4b\xdf\x50\xb5\x5f\xe7\xe9\x79\x5a\xbb\xd5\xe9\xfd\xd3\x14\xc7\xf0\xc7\x81\x94\x62\xa9\xdb\x9f\x52\xda\x5a\x8e\xed\x2d\xd1\x8a\x12\x62\x07\x52\x13\x5c\xeb\xf5\x5c\x29\x9a\xae\x8b\xdd\x1d\xdc\x5d\x2f\x7f\xd6\x66\x46\x6f\x18\xbb\xb5\x35\x7e\xdc\x06\x9d\xa3\xda\xeb\xe6\xac\xbe\x79\x34\xa0\xee\x96\xe2\x7e\x7f\xf6\x18\x5e\x77\x69\xdf\x70\xb1\x3e\xdc\x7d\xf7\x09\xb8\x09\xf7\xed\x29\xbc\x85\x4e\xdf\x81\x51\x83\xd0\x08\x7d\x0e\x13\xf0\x0b\x6c\xe7\x77\x12\xd6\x89\xda\x16\xa5\x01\x21\x55\x8e\xbc\xc3\x97\x09\xfb\x1f\x87\x5d\xb5\x2d\xf4\xa5\x60\xff\x94\x04\x45\x7f\x7e\xda\x91\x6f\xac\xff\x38\x30\x27\xf7\x8e\xff\x8a\xdc\x30\xce\x69\xcc\x1c\xc6\x9f\x2e\x20\x67\xff\xbe\x05\x6f\xc1\xbf\x01\x00\x00\xff\xff\xaf\xee\x68\xd2\x57\x0e\x00\x00" +var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\x4d\x6f\xe3\x36\x13\xbe\xeb\x57\x0c\x7c\x08\x64\xc0\x91\xbc\xc7\xd7\x48\xb2\xf0\x6b\x74\xd1\x62\x53\x74\xd1\xa6\xbb\xe7\x89\x34\xb6\x08\xd3\xa4\x4a\x52\x36\x8c\x45\xfe\x7b\x41\x91\xfa\xa0\x2c\x39\xeb\xb6\x3a\x04\x16\x35\x33\xcf\xcc\x33\x1f\x9c\xb0\x43\x29\x95\x81\x8d\x3a\x97\x46\x46\xfe\xed\x13\x97\xa7\x17\xb9\x27\x01\x5b\x25\x0f\x30\x6b\xdf\x67\xad\x44\x25\x76\xec\x95\x53\x20\xd5\x3f\x6b\x25\x9f\x65\xb6\xa7\xbc\x3e\xd3\x5e\xb0\x7f\x34\x8b\xa2\x34\x4d\xe1\x45\xa1\xd0\x98\x19\x26\x05\x98\x02\x0d\x98\x82\xe0\x80\x4c\x80\xa9\x11\x30\x3f\x30\x01\x27\x59\xf1\x1c\x34\xdb\x89\x5a\xc9\x48\xc8\x14\xa1\x21\x40\xd0\x05\x2a\xca\x01\xb3\x4c\x56\xc2\x00\x8a\x1c\x50\x40\x25\x78\x8d\x55\x8b\xa3\xfb\xb4\x95\x0a\x10\x2a\x4d\x2a\x8a\x4c\x07\x1b\x47\x00\x00\x25\x2a\xc3\x90\xaf\x2d\xdc\x97\xea\x95\xb3\xec\x33\x9d\x57\x9e\x9e\xe4\x33\x9d\x9f\x99\x36\x3f\x09\xa3\xce\x0b\x48\x53\xf8\x46\x6c\x57\x98\x15\x7c\x58\x2e\xfb\xea\x7f\x6a\x52\x37\x68\xff\xcf\x6b\x6f\x2b\x7e\xab\xea\x87\xe5\x72\x19\xcd\x01\xbe\x47\x0e\x5f\x51\x89\x8a\xe2\x9a\xae\x15\x60\x65\x8a\xf8\xff\x52\x29\x79\xfa\x8a\xbc\xa2\x39\xdc\xad\x1d\x41\xf3\x46\xc3\x3e\x69\x0a\x1b\xc7\xa3\x65\x5d\xd0\xa9\xa1\x51\x3b\x1e\xf3\xdc\x7e\x60\x0a\xf6\x74\xd6\xad\x16\x27\xe3\x59\xf7\x36\xe1\x11\xfc\xaf\xb8\xc4\x33\xa9\x95\xcb\xda\x3c\xd0\xb0\xbc\xbf\x27\xdf\x2a\x04\xe6\x13\x8b\x9e\x60\x9e\xc7\x65\xc7\xcf\x68\xbe\x92\x56\x60\x01\x05\xea\x62\xcd\x77\x52\x31\x53\x1c\xa6\xe4\x03\xa1\x05\x9c\x3c\xb9\xe3\xc2\xee\xeb\xfc\x76\x27\x83\xd4\xbe\xef\x63\x28\x7e\xdd\xc5\x50\xb6\xf1\xb0\x75\xb1\x47\xfa\xa8\x83\x17\x85\x77\xc5\xbb\x4b\xd9\x09\xd7\x2e\x05\x2f\xfc\xea\x0a\x0f\xa1\x54\xec\x68\x7f\x71\x26\xf6\xb6\xb3\x6d\x29\x6a\x23\x6d\x53\x1f\xb1\xe2\x26\xa8\xa2\xfa\x64\x83\x25\xbe\x32\xce\xcc\x19\x1e\x07\x59\xc8\x9a\x4f\x8c\x74\x62\xad\xe0\x8e\x12\xa6\x75\x45\xad\x19\xfb\x3c\xd4\x0d\x12\xcc\xad\xe4\x1b\x33\x45\xae\xf0\x34\x87\xbb\x76\xec\x25\x5f\x2d\xde\x53\xa0\x1b\xa7\xde\x6e\xba\x6d\xc4\x6a\xa9\x30\xbc\x76\x3e\xb9\x39\xe4\xa7\xd9\x01\x05\xee\x48\xd5\xdd\xe5\x63\x64\x06\xec\xb0\xb3\x41\x07\x93\x2c\x08\x9b\x77\x83\xf3\x57\x6f\xe2\xe1\x3e\x98\xb0\x89\x03\x7c\xbe\x10\x8c\x6b\xca\x56\x43\xe6\xa6\xca\xb8\xe1\x4c\xe3\x91\xe2\x87\xfb\x4b\xe0\x05\x18\xb9\x0a\xa1\x2f\x41\xff\x70\x56\xbe\xa0\x29\x7a\xb4\xd8\x48\x4c\x4f\x6a\x3a\x8f\x01\xe1\x57\x92\xfa\x4e\x1e\xdf\xf1\xf2\x29\x0e\x70\xec\xf3\xef\xe2\xfa\x59\xf2\x7c\x32\x35\x2f\x9d\x44\x88\xeb\x38\x5e\xe7\xb9\x22\xad\x57\x83\x7c\xa0\x3b\x5e\x04\x1a\x7d\x12\x57\x13\x94\xb6\x0a\x13\xe3\x20\x48\x74\xd8\x1c\xf7\xbd\x60\x86\xc0\x83\xd4\xf7\x82\xea\x71\x33\x86\x6d\x49\x62\x62\x2b\x37\x58\xc2\x63\xe0\xc9\x95\xf4\xde\x4d\x81\x0d\x52\x77\x9b\x4f\x63\x74\x04\x4e\xd4\x43\x50\x17\xb1\xf7\x77\x01\x68\x46\x4b\xde\x2b\xff\x22\xb6\xd2\x0d\xbb\xa9\xc2\xa8\x6f\x92\x8d\xe4\x9c\xdc\xa6\xf3\xe8\x6e\xbc\x26\xda\xb0\xdc\x5f\xeb\x7b\xdb\x95\x76\x00\xea\xe1\xea\xc9\x29\xd5\xb0\xbe\x5f\x46\x80\x46\x2a\xdc\x6e\x62\xd3\xfd\x3b\xd0\x1f\xe3\x2f\xe4\xd0\x3e\x1f\x3f\x42\x89\x82\x65\xf1\x6c\x53\xef\x69\x42\x1a\x70\x41\x80\xa2\x2d\x29\x12\x19\xd9\xc9\xee\x76\xb9\xac\xb5\x3e\xeb\x51\x35\x46\x93\x2d\xfe\x66\x51\x08\x00\x83\x16\xb9\xa5\x71\x9a\xb5\x70\xa8\xda\xaf\x84\xe9\x8e\x5b\xbb\xe5\xea\xc7\xfb\x2d\x4d\xe1\xb7\x23\x29\xc5\x72\xb7\x61\xe5\xb4\xb5\x53\xb8\xb7\x66\x2b\xca\x88\x1d\x49\x4d\x4c\xe3\xa0\x2a\x2b\xd1\xd4\x65\xea\x6e\xe9\xee\x02\xfa\xdd\x9b\x19\xbd\x83\xec\x5e\xd7\xe0\xb8\x1d\xfb\x80\x6a\xaf\x9b\x33\x7f\x37\x69\x40\xdd\xad\xcd\xfd\x0a\xee\xdd\x01\xba\x0b\xfb\x86\xab\xf7\xe1\xee\x7b\x38\xa2\x1b\x77\xdf\x9e\xe2\x5b\x06\xee\x0f\x70\xd4\x30\x34\x32\x60\x87\x01\x84\x09\xb6\x1d\x3e\x49\xeb\x44\x6e\xcb\xca\x80\x90\xea\x80\xbc\xe3\x97\x09\xfb\x3f\x89\x5d\xc6\x2d\xf5\x95\x60\x7f\x55\x04\x65\xbf\x7f\xda\xa1\xd0\x58\xff\xef\xc8\x9c\xdc\x4c\xfe\x29\x73\x43\x3f\xa7\x39\x73\x1c\x7f\xba\xc2\x9c\xfd\xfb\x16\xbd\x45\x7f\x07\x00\x00\xff\xff\x96\x35\x8f\xdd\x79\x0e\x00\x00" func lockedtokensAdminAdmin_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3780,7 +3780,7 @@ func lockedtokensAdminAdmin_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8, 0x7d, 0x60, 0xa4, 0xb3, 0xc9, 0x1d, 0x40, 0x3b, 0xe2, 0xeb, 0x74, 0xb5, 0x11, 0x4b, 0x52, 0xa3, 0x6d, 0xd6, 0xa3, 0x70, 0x4d, 0xea, 0x5, 0xab, 0xb5, 0x40, 0x3f, 0x87, 0x25, 0xb2, 0xb8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0x86, 0x33, 0x35, 0x7b, 0x92, 0x73, 0x42, 0xd3, 0xdf, 0x1c, 0xbb, 0x34, 0x34, 0x69, 0xac, 0x97, 0xc9, 0x94, 0x24, 0x1d, 0xc1, 0x14, 0x7a, 0x60, 0xf8, 0x6e, 0x57, 0x8c, 0xc2, 0x38, 0x91}} return a, nil } @@ -3804,7 +3804,7 @@ func lockedtokensAdminAdmin_deploy_contractCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminAdmin_deposit_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x41\x6f\xdb\x30\x0c\x85\xef\xfa\x15\x5c\x0e\x9d\x0d\x0c\xce\x3d\x58\x57\x64\xb9\xee\x10\x6c\xc5\xee\x8c\xc4\xc6\x42\x15\x51\xa0\xe8\x16\xc1\xd0\xff\x3e\xc8\xf2\x32\x3b\xcb\x50\x9d\x2c\x42\xef\xf1\x7d\x34\xfd\x29\xb1\x28\x7c\x63\xfb\x4c\xee\x91\x9f\x29\x66\x78\x12\x3e\xc1\x6a\x5e\x5a\x19\xb3\x5e\xaf\x41\xcb\x05\xd0\x9d\x7c\x84\xec\x8f\x31\x83\xf6\x3e\x83\x0a\xc6\x8c\x56\x3d\x47\x50\x06\x47\x89\xb3\x57\x40\xb0\x98\xf0\xe0\x83\xd7\xf3\x28\xf7\x51\xb9\x54\x87\xac\xec\xce\x90\x84\x5f\xbc\x23\xf9\x98\x01\xad\xe5\x21\x2a\x68\x8f\x0a\x18\x02\xbf\x16\x6b\x3a\x15\x3b\x74\x6e\x54\x4f\x6f\x72\xa9\x69\x4f\x20\x64\x59\x9c\x31\xb3\xee\xcd\x64\xbd\x9f\x9c\xb7\xce\x09\xe5\xbc\x81\xe9\xa3\x85\x5f\xc6\x00\x00\x24\xa1\x84\x42\xcd\x88\xb2\x01\x1c\xb4\x6f\xbe\xb2\x08\xbf\xfe\xc4\x30\xd0\x27\xd8\xfd\x49\xee\x29\xb7\x70\xb7\xad\xbd\x2f\xfa\x72\x02\xe9\x0c\xf0\x3b\x59\xf2\x2f\x24\x70\x0f\x47\xd2\xe9\xfd\x7f\xf2\xb4\x17\x8f\x72\x3a\x3b\xeb\xd5\x1d\xc6\x14\x9f\xef\xe6\xd3\xef\xea\x65\x32\xdd\x09\xa1\xb2\x7c\x69\x16\x2e\xe5\xbc\xab\xd9\x0f\x87\xe0\xed\x1e\xb5\x5f\x68\x97\x79\x1e\x1e\x20\x61\xf4\xb6\x59\xed\x78\x08\x0e\x22\x2b\xd4\x54\x33\xdc\x32\xfd\xca\x2b\xf4\x44\x42\xd1\xd2\xaa\x5d\xce\x66\x5c\x96\x6d\x19\xf0\x8e\x43\xa0\xba\x1e\xf7\x75\x7b\x96\xcc\x59\x59\xf0\x48\x9d\xcf\x79\xa0\x2b\xf4\xc7\x1b\x2e\x57\xe8\x37\xb0\x6f\xa9\x7e\xd4\x2e\x0b\xfa\xf6\xc3\xdf\xcc\xff\xfe\xcb\x0e\x9d\xbb\x2c\xc2\xb9\xb1\x98\x36\x37\xa9\xea\xfc\xde\xcc\x9b\xf9\x1d\x00\x00\xff\xff\x84\x09\x5b\x53\x4e\x03\x00\x00" +var _lockedtokensAdminAdmin_deposit_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\xc1\x6e\xdb\x30\x0c\xbd\xfb\x2b\xb8\x1c\x3a\x1b\x18\x9c\x7b\xd0\xae\xc8\x72\xdd\x21\xd8\x8a\xdd\x19\x89\x8d\x85\x2a\xa2\x40\xd1\x2d\x82\x21\xff\x3e\xc8\xf2\x32\x6b\xcb\x50\x9e\x24\x42\xef\xf1\xbd\x27\xba\x53\x64\x51\xf8\xca\xe6\x85\xec\x13\xbf\x50\x48\xf0\x2c\x7c\x82\xd5\xb2\xb5\x6a\x9a\xf5\x7a\x0d\x9a\x2f\x80\xf6\xe4\x02\x24\x77\x0c\x09\x74\x70\x09\x54\x30\x24\x34\xea\x38\x80\x32\x58\x8a\x9c\x9c\x02\x82\xc1\x88\x07\xe7\x9d\x9e\x27\xb8\x0b\xca\xb9\x3b\x26\x65\x7b\x86\x28\xfc\xea\x2c\xc9\xc7\x04\x68\x0c\x8f\x41\x41\x07\x54\x40\xef\xf9\x2d\x53\xd3\x29\xd3\xa1\xb5\x13\x7a\x7e\x93\x72\x4f\x07\x02\x21\xc3\x62\x9b\x66\x31\xbd\x9d\xa9\xf7\x33\xf3\xd6\x5a\xa1\x94\x36\x30\x1f\x3a\xf8\xd9\x34\x00\x00\x51\x28\xa2\x50\x3b\x59\xd9\x00\x8e\x3a\xb4\x5f\x58\x84\xdf\x7e\xa0\x1f\xe9\x13\xec\x7e\x2b\x77\x94\x3a\xb8\xdb\x96\xd9\x57\x7c\x2e\x4f\xba\x30\xf8\x8d\x0c\xb9\x57\x12\x78\x80\x23\xe9\xfc\xfe\x3f\x7a\xba\x2b\x47\xae\xde\x2c\x66\xf5\x87\x49\xc5\xfd\xdd\x32\xfd\xbe\x5c\x66\xd2\x9d\x10\x2a\xcb\xe7\xb6\x62\xc9\xf5\x2e\x66\x3f\x1e\xbc\x33\x7b\xd4\xa1\xc2\xd6\x7a\x1e\x1f\x21\x62\x70\xa6\x5d\xed\x78\xf4\x16\x02\x2b\x14\x55\x0b\xbb\x39\xfd\xe2\x57\xe8\x99\x84\x82\xa1\x55\x57\x67\x33\x2d\xcb\x36\x07\xbc\x63\xef\xa9\xac\xc7\x43\xd9\x9e\xda\x73\x52\x16\x3c\x52\xef\x52\x1a\xe9\x7e\xfa\x8c\xca\x4a\x6d\xa2\x83\x3a\x9c\xa7\x1b\x73\xfe\x0a\xe7\x46\x30\xb7\x50\xdf\x8b\x8e\x2a\x9f\xee\xc3\x1f\x57\xff\xfe\x76\x8f\xd6\x5e\x57\xe5\xdc\x1a\x8c\x9b\x9b\xbe\x4b\xc2\x97\xe6\xd2\xfc\x0a\x00\x00\xff\xff\x6b\x32\x35\xf8\x70\x03\x00\x00" func lockedtokensAdminAdmin_deposit_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3820,7 +3820,7 @@ func lockedtokensAdminAdmin_deposit_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_deposit_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0x82, 0x4, 0xe6, 0x5b, 0xce, 0x35, 0x7d, 0x2e, 0xd, 0x46, 0xda, 0x8a, 0x52, 0x1a, 0xd5, 0x89, 0x30, 0xea, 0xb4, 0xdf, 0xc2, 0xb0, 0xbe, 0xb3, 0xdb, 0xf6, 0x5e, 0x8d, 0x29, 0x66, 0xd7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5d, 0x6b, 0x77, 0xa2, 0x1a, 0x8b, 0x31, 0xab, 0x7f, 0x3d, 0x5e, 0x83, 0x6e, 0x89, 0xce, 0xb8, 0x80, 0xe9, 0x4f, 0x19, 0xee, 0x31, 0x7c, 0x30, 0xc7, 0xbe, 0x57, 0x89, 0x24, 0xe4, 0xdf, 0x3a}} return a, nil } @@ -3884,7 +3884,7 @@ func lockedtokensAdminCheck_shared_registrationCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xe9\xd5\x70\xb2\x48\x8d\x2e\x5a\x6c\x8a\x06\x6d\xba\x7b\x9e\x88\x63\x8b\x08\x4d\xaa\xfc\xb1\x61\x04\x79\xf7\x82\x12\x25\x8b\xb2\x94\xb8\x45\x7b\x59\x1d\x82\x98\x9c\x9f\x6f\xbe\x99\xe1\x0c\xdf\x55\x4a\x5b\x58\xeb\x63\x65\x55\x12\x7e\x7d\x16\xea\xf0\xa4\x5e\x48\xc2\x46\xab\x1d\xcc\xba\xdf\xb3\x4e\xc2\xc9\x2d\x7f\x16\x14\x49\xf5\xcf\x3a\xc9\x07\x55\xbc\x10\xab\xcf\x4c\x10\xec\x1f\xcd\x92\x24\xcf\x73\x78\xd2\x28\x0d\x16\x96\x2b\x09\xb6\x44\x0b\x08\x85\x33\x56\xb1\x23\x54\x5a\xed\x39\x23\x0d\x07\xe5\x04\x03\xc3\xb7\xb2\x56\xb1\x0a\x0a\x4d\x68\x09\x10\x4c\x89\x9a\x18\x60\x51\x28\x27\x2d\xa0\x64\x80\x12\x9c\x14\xb5\xa7\x5a\xbc\xbd\xdb\x28\x0d\x08\xce\x90\x4e\x12\x7b\xf2\x9a\x26\x00\x00\x1b\x27\xc4\x3d\xdb\x71\xf9\xe8\x9e\x05\x2f\xbe\xd0\x71\x19\xa8\xc9\xbe\xd0\xf1\x81\x1b\xfb\x93\xb4\xfa\xb8\x80\x3c\x87\x6f\xc4\xb7\xa5\x5d\xc2\x0f\x37\x37\x37\x9d\xf2\x9f\x86\xf4\x3f\xd5\x9d\x03\xbc\x26\xb5\x85\x4a\x53\x85\x9a\xd2\x10\xfa\x63\x88\x7c\x09\xe8\x6c\x99\xfe\xa8\xb4\x56\x87\xaf\x28\x1c\xcd\xe1\xea\xbe\x89\x67\xde\xea\xfa\x4f\x90\x0d\x54\x84\x5b\xb8\x85\xf0\x5f\x5a\xe1\xd1\x5b\x1a\x98\x9e\x47\xba\x9e\x95\xcb\x35\x3b\xd5\xc8\x65\xf6\x42\x47\x93\x21\x63\x69\x75\xe2\xe1\x9c\xd7\xac\xbb\x5d\x40\x89\xa6\xbc\x17\x5b\xa5\xb9\x2d\x77\xa3\xc2\x91\xc4\x02\x0e\x81\xbe\x11\xc9\xe6\xaa\x07\xae\x17\xd3\x24\xb4\x28\x6b\x1f\x20\x8b\x65\xdf\x01\x16\x0b\x9e\xe1\xf2\x7c\xef\xd1\x09\xbb\xc6\x0a\x9f\xb9\xe0\xf6\x08\xb7\x03\x2a\x8b\xf6\x8a\x93\xc9\x8c\x55\x1a\xb7\xd4\x19\xf0\x5f\xc6\x8d\x71\xb4\xaa\xcb\x23\x6a\xbf\xec\x1b\xb7\x25\xd3\x78\x98\xc3\x55\xd7\xbd\xd9\x57\xef\xef\x2e\xcd\x83\xa9\x7c\xd3\xde\xd4\x17\x03\x70\xe2\xd4\xa5\xbf\xa2\xc4\x2d\x69\x58\x5d\x47\xed\x9c\x35\xfd\xf7\x70\x26\x98\xd6\x81\x2d\x87\xf1\x4d\x96\x4c\xc0\x93\x19\xdc\x53\xba\xba\x3e\xf7\xbc\x00\xab\x96\xb1\xef\x73\xaf\x7f\x34\x56\x1e\xd1\x96\x83\x50\x6c\x4f\xea\x7f\xa7\xfb\x03\x94\x77\x69\x64\xd2\x7f\x97\xc7\x15\xa9\x8e\x05\xf9\xb3\x12\x6c\x32\x51\x4f\x27\x89\xb4\xe1\xf8\x9e\x31\x4d\xc6\x2c\x07\x44\x60\x73\xbc\x88\x88\x5b\x4e\xd0\x38\xd1\x6b\x51\x4e\x23\xdc\xab\xeb\x1e\xd4\x45\x74\x75\x96\xe5\x1e\xe4\x31\x1a\xa6\x29\x58\x63\x05\xb7\x11\xa0\xb1\xec\x86\x84\x5e\x4d\xf9\xbc\x4b\x2f\x40\x33\x1f\x8d\x3f\x72\x57\x3f\x29\xa6\x4c\x63\x80\x0b\x40\x3b\x5a\xd5\xc1\xc6\x2f\x72\xa3\x9a\x17\x64\xaa\xa6\xeb\xc7\xef\xbb\xad\x68\xd1\x27\x63\xed\x4b\x58\x69\xb8\x1d\x0e\xa2\xf1\xb8\x9e\xeb\x61\xb9\x1a\xc3\x1e\x1b\xbc\x4b\xfd\x52\xf2\x5e\x1a\x82\xe0\x68\xc6\xfd\xf7\xe9\x13\x54\x28\x79\x91\xce\xd6\xf5\x86\x22\x95\x85\xc6\x7d\x88\xa0\xdb\x3d\x8a\xc6\xd2\xac\x1f\xe7\x88\x27\xdf\x7f\xed\xf0\x8d\x3c\x45\xc9\xfd\xa0\x77\x23\xc5\x76\x13\x1a\xaa\xf6\x0b\x76\x54\xf1\x54\x65\xcb\xd1\x8a\x1b\xeb\xc4\x3c\x87\xdf\xf6\xa4\x35\x67\x04\xb6\x24\x60\xb4\xf1\x73\xa0\xb7\x55\x6a\x2a\x88\xef\x49\x67\x13\xf3\x20\x2a\x5b\x27\xdb\xee\xc9\x9b\xc9\x7c\x1a\x5b\xbf\x07\x3b\xb1\xf3\xb0\x15\x4a\x3a\x74\x8e\x9a\x9d\x72\x87\xfa\xc5\xb4\x67\xac\x89\xc7\x00\x9a\x8e\x9e\x6c\x6a\x00\x9a\xd3\xab\x77\x51\x8f\xb5\xef\xca\x6b\xdc\x53\x2d\xde\xb7\xc1\xbb\xf2\xc1\x2c\xbb\x80\xa4\x96\xa2\x28\x79\xe3\x01\xc4\x09\xf6\x2f\xd0\x24\xaf\x13\xd9\xad\x9c\x05\xa9\xf4\x0e\xc5\x89\x60\x2e\xfd\x1a\xee\xd7\x57\xcf\xbd\x93\xfc\x2f\x47\x50\xa1\x2d\xb3\xf3\x57\xab\x35\xff\xdf\xb1\x39\xb9\xd1\xfc\x5b\xea\x86\x38\xa7\x49\x6b\x48\xfe\xfc\x0e\x75\xfe\xef\x5b\xf2\x96\xfc\x1d\x00\x00\xff\xff\x44\x3c\xd7\x13\x6b\x0d\x00\x00" +var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xe9\xd5\x48\xb2\x48\x8d\x2e\x5a\x6c\x8a\x06\x6d\xba\x7b\x9e\x88\x63\x8b\x08\x4d\xaa\xfc\xb1\x61\x04\x79\xf7\x82\x12\x25\x8b\xb2\x14\xbb\x45\x7b\x59\x1d\x82\x98\x9c\x9f\x6f\xbe\x99\xe1\x0c\xdf\x56\x4a\x5b\x58\xe9\x43\x65\x55\x12\x7e\x7d\x16\x6a\xff\xac\x5e\x49\xc2\x5a\xab\x2d\xcc\xba\xdf\xb3\x4e\xc2\xc9\x0d\x7f\x11\x14\x49\xf5\xcf\x3a\xc9\x47\x55\xbc\x12\xab\xcf\x4c\x10\xec\x1f\xcd\x92\x24\xcf\x73\x78\xd6\x28\x0d\x16\x96\x2b\x09\xb6\x44\x0b\x08\x85\x33\x56\xb1\x03\x54\x5a\xed\x38\x23\x0d\x7b\xe5\x04\x03\xc3\x37\xb2\x56\xb1\x0a\x0a\x4d\x68\x09\x10\x4c\x89\x9a\x18\x60\x51\x28\x27\x2d\xa0\x64\x80\x12\x9c\x14\xb5\xa7\x5a\xbc\xbd\x5b\x2b\x0d\x08\xce\x90\x4e\x12\x7b\xf4\x9a\x26\x00\x00\x6b\x27\xc4\x03\xdb\x72\xf9\xe4\x5e\x04\x2f\xbe\xd0\x61\x19\xa8\xc9\xbe\xd0\xe1\x91\x1b\xfb\x93\xb4\xfa\xb0\x80\x3c\x87\x6f\xc4\x37\xa5\x5d\xc2\x0f\x37\x37\x37\x9d\xf2\x9f\x86\xf4\x3f\xd5\x9d\x03\xbc\x25\xb5\x85\x4a\x53\x85\x9a\xd2\x10\xfa\x53\x88\x7c\x09\xe8\x6c\x99\xfe\xa8\xb4\x56\xfb\xaf\x28\x1c\xcd\xe1\xea\xa1\x89\x67\xde\xea\xfa\x4f\x90\x0d\x54\x84\x5b\xb8\x83\xf0\x5f\x5a\xe1\xc1\x5b\x1a\x98\x9e\x47\xba\x9e\x95\xcb\x35\x3b\xd5\xc8\x65\xf6\x4a\x07\x93\x21\x63\x69\x75\xe4\xe1\x94\xd7\xac\xbb\x5d\x40\x89\xa6\x7c\x10\x1b\xa5\xb9\x2d\xb7\xa3\xc2\x91\xc4\x02\xf6\x81\xbe\x11\xc9\xe6\xaa\x07\xae\x17\xd3\x24\xb4\x28\x6b\x67\x90\xc5\xb2\x1f\x00\x8b\x05\x4f\x70\x79\xbe\x77\xe8\x84\x5d\x61\x85\x2f\x5c\x70\x7b\x80\xbb\x01\x95\x45\x7b\xc5\xc9\x64\xc6\x2a\x8d\x1b\xea\x0c\xf8\x2f\xe3\xc6\x38\xba\xad\xcb\x23\x6a\xbf\xec\x1b\xb7\x25\xd3\xb8\x9f\xc3\x55\xd7\xbd\xd9\x57\xef\xef\x3e\xcd\x83\xa9\x7c\xdd\xde\xd4\x17\x03\x70\xe2\xd8\xa5\xbf\xa2\xc4\x0d\x69\xb8\xbd\x8e\xda\x39\x6b\xfa\xef\xf1\x44\x30\xad\x03\x5b\x0e\xe3\x9b\x2c\x99\x80\x27\x33\xb8\xa3\xf4\xf6\xfa\xd4\xf3\x02\xac\x5a\xc6\xbe\x4f\xbd\xfe\xd1\x58\x79\x42\x5b\x0e\x42\xb1\x3d\xa9\xff\x9d\xee\x33\x28\xef\xd3\xc8\xa4\xff\x2e\x8f\x2b\x52\x1d\x0b\xf2\x67\x25\xd8\x64\xa2\x9e\x8f\x12\x69\xc3\xf1\x03\x63\x9a\x8c\x59\x0e\x88\xc0\xe6\x78\x11\x11\xb7\x9c\xa0\x71\xa2\xd7\xa2\x9c\x46\xb8\x6f\xaf\x7b\x50\x17\xd1\xd5\x49\x96\x7b\x90\xc7\x68\x98\xa6\x60\x85\x15\xdc\x45\x80\xc6\xb2\x1b\x12\x7a\x35\xe5\xf3\x3e\xbd\x00\xcd\x7c\x34\xfe\xc8\x5d\xfd\xa4\x98\x32\x8d\x01\x2e\x00\xed\x68\x55\x07\x1b\xbf\xc8\xb5\x6a\x5e\x90\xa9\x9a\xae\x1f\xbf\xef\xb6\xa2\x45\x9f\x8c\x95\x2f\x61\xa5\xe1\x6e\x38\x88\xc6\xe3\x7a\xa9\x87\x65\x13\x58\x84\x26\x36\x37\x1e\x5d\x2c\x73\x9f\xfa\xb5\xe5\xa3\x44\x05\xc1\xd1\x9a\xf0\xdf\xa7\x4f\x50\xa1\xe4\x45\x3a\x5b\xd5\x3b\x8c\x54\x16\x1a\x80\x21\xc6\x6e\x3b\x29\x1a\x4b\xb3\x3e\x13\x23\x9e\x7c\x87\xb6\xe3\x39\xf2\x14\xa5\xff\x4c\x77\x47\x8a\xed\xae\x34\x54\xed\x97\xf4\xa8\xe2\xb1\x0e\x97\xa3\x35\x39\xd6\xab\x79\x0e\xbf\xed\x48\x6b\xce\x08\x6c\x49\xc0\x68\xed\x27\x45\x6f\xef\xd4\x54\x10\xdf\x91\xce\x26\x26\x46\x54\xd8\x4e\xb6\xfd\x95\x37\xb3\xfb\x38\xd8\x7e\x0f\x76\x62\xe7\x61\x6f\x94\xb4\xef\x1c\x35\x5b\xe7\x16\xf5\xab\x69\xcf\x58\x13\x8f\x01\x34\x1d\x3d\xd9\xd4\x88\x34\xc7\x77\xf1\xa2\x2e\x6c\x5f\x9e\xb7\xb8\xeb\x5a\xbc\xef\x83\x97\xe7\xcc\xb4\xbb\x80\xa4\x96\xa2\x28\x79\xe3\x01\xc4\x09\xf6\x6f\xd4\x24\xaf\x13\xd9\xad\x9c\x05\xa9\xf4\x16\xc5\x91\x60\x2e\xfd\xa2\xee\x17\x5c\xcf\xbd\x93\xfc\x2f\x47\x50\xa1\x2d\xb3\xd3\x77\xad\x35\xff\xdf\xb1\x39\xb9\xf3\xfc\x5b\xea\x86\x38\xa7\x49\x6b\x48\xfe\xfc\x01\x75\xfe\xef\x7b\xf2\x9e\xfc\x1d\x00\x00\xff\xff\x91\x8b\x56\x14\x8d\x0d\x00\x00" func lockedtokensAdminCustody_create_account_with_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3900,11 +3900,11 @@ func lockedtokensAdminCustody_create_account_with_lease_accountCdc() (*asset, er } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_account_with_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0xea, 0x4d, 0xc, 0xc6, 0x6b, 0x93, 0xc7, 0x45, 0xb4, 0x90, 0x7c, 0xb1, 0xdc, 0xc1, 0xd5, 0x1a, 0xd8, 0x8d, 0x8c, 0xb3, 0x98, 0x32, 0x8f, 0x37, 0x9a, 0x21, 0x37, 0x53, 0x2a, 0x88, 0x7d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7f, 0xe1, 0xce, 0xfc, 0xe4, 0xe3, 0xe8, 0xa3, 0x5b, 0xf1, 0x94, 0x64, 0x8e, 0x5c, 0xa4, 0xe4, 0x44, 0xb8, 0x7b, 0x69, 0x5e, 0x6a, 0xe5, 0xdc, 0x2e, 0x55, 0x6, 0x9b, 0x4b, 0x5a, 0x2b, 0x86}} return a, nil } -var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xe9\xd5\x70\xb2\x48\x8d\x2e\x5a\x6c\x8a\x06\x6d\xb0\x7b\x9e\x88\x63\x8b\x08\x4d\xaa\x24\x65\x43\x58\xe4\xdd\x0b\x52\x94\x2c\xca\xd2\xae\x5b\xb4\x97\xea\x10\xc4\xe4\xfc\x7c\xf3\xcd\x70\x66\xf8\xa1\x52\xda\xc2\x56\x37\x95\x55\x49\xf8\xf5\x51\xa8\xd3\x8b\x7a\x23\x09\x3b\xad\x0e\xb0\xe8\x7f\x2f\x7a\x89\x5a\xee\xf9\xab\xa0\x48\x6a\x78\xd6\x4b\x3e\xa9\xe2\x8d\x98\x3f\x33\x41\x70\x78\xb4\x48\x92\x3c\xcf\xe1\x45\xa3\x34\x58\x58\xae\x24\xd8\x12\x2d\x20\x14\xb5\xb1\x8a\x35\x50\x69\x75\xe4\x8c\x34\x9c\x54\x2d\x18\x18\xbe\x97\x5e\xc5\x2a\x28\x34\xa1\x25\x40\x30\x25\x6a\x62\x80\x45\xa1\x6a\x69\x61\xa7\x34\x20\xd4\xc6\x29\x95\x0a\x50\x68\x42\xd6\x78\xad\x12\x0d\xd8\x92\xb8\x86\x5a\x0a\x8f\xa3\xd7\x6a\xad\x31\x27\xd6\x62\x2a\xe9\x52\xc8\xeb\x2b\x8f\xc2\xd9\x01\x3b\x00\x8e\xc2\xa8\x24\x19\x9c\xa4\x09\x00\xc0\xae\x16\xe2\x91\x1d\xb8\x7c\xae\x5f\x05\x2f\x3e\x51\xb3\x0e\x7c\x67\x9f\xa8\x79\xe2\xc6\xfe\x24\xad\x6e\x56\x90\xe7\xf0\x85\xf8\xbe\xb4\x6b\xf8\xe1\xee\xee\x2e\x59\x02\x7c\x4d\xbc\x89\x4a\x53\x85\x9a\xd2\xc0\xc9\x73\xa0\x64\x0d\x58\xdb\x32\xfd\x51\x69\xad\x4e\x9f\x51\xd4\xb4\x84\x9b\xc7\x16\xe9\xca\xc7\x1f\x7e\x04\xc1\x3f\xac\xd2\xb8\xa7\x15\x6c\xb1\xc2\x57\x2e\xb8\xe5\x64\xce\x2a\xcb\xce\x9d\xfb\x04\xd9\x40\x6b\xb8\x85\x7b\x08\xff\xa5\x15\x36\xce\xf9\x08\xcd\xf2\xac\x1c\x29\x66\x6f\xd4\x98\x0c\x19\x4b\xab\x33\x01\x97\xa4\x64\xfd\xed\xca\xb1\x5c\x3e\x8a\xbd\xd2\xdc\x96\x87\x49\xe1\x48\x62\x05\xa7\xc0\xdb\x84\x64\x7b\xb5\x8c\x23\x3b\x62\x2d\x6c\xcf\x42\x03\xf7\x23\xc8\xc5\x80\xa0\xcc\xb4\xb4\xf5\x06\xdc\x97\x71\x63\x6a\xda\x78\x5a\xa3\xc2\xcf\xbe\x70\x5b\x32\x8d\xa7\x25\xdc\xf4\xef\x26\xfb\xec\xfc\x3d\xa4\x79\x30\x95\xef\xba\x1b\x7f\x31\x02\x27\xce\xef\xe3\x57\x94\xb8\x27\x0d\x9b\xdb\xe8\x21\x65\x6d\xad\x3e\x5d\x08\xa6\x3e\xb0\xf5\x38\xbe\xd9\xd4\x04\x3c\x99\xc1\x23\xa5\x9b\xdb\x4b\xcf\x2b\xb0\x6a\x1d\xfb\xbe\xf4\x1a\xea\xea\x19\x6d\x39\x0a\xc5\x0e\xa4\xfe\x73\xba\xbf\x83\xf2\x21\x8d\x4c\xba\xef\xfa\xb8\x22\xd5\xa9\x20\x7f\x56\x82\xcd\x26\xea\xe5\x2c\x11\x83\x68\x09\x7f\x64\x4c\x93\x31\xeb\x11\x2b\xd8\x1e\xaf\x22\x8d\x21\xa3\xeb\x19\x7e\x93\x09\xa0\x83\x6e\x10\x67\x3d\xb2\xbe\xb9\x1d\x04\x33\x76\x3c\xaa\x83\x41\x50\x53\x44\xcd\x93\xb4\xc5\x0a\xee\x23\x40\x53\xf9\x0f\x29\xbf\x99\xf3\xf9\x90\x5e\x81\x66\x39\x19\x7f\xe4\xce\xb7\x1d\x53\xa6\x31\xc0\x15\xa0\x9d\xac\xfb\x60\xe3\x17\xb9\x53\x6d\x8f\x99\xab\x7a\xdf\x86\xfe\xb7\x35\x2f\x86\x64\x6c\x5d\x91\x2b\x0d\xf7\xe3\x91\x30\x1d\xd7\xab\x9f\x57\x9b\x29\xec\xb1\xc1\x87\xd4\x2d\x0c\xdf\x4a\x43\x10\x9c\xcc\xb8\xfb\x3e\x7c\x80\x0a\x25\x2f\xd2\xc5\xd6\x6f\x0f\x52\x59\x68\xdd\xc3\xd4\xf4\x57\x7a\x31\x8c\x73\xc2\x93\x7b\x94\xdd\x18\x8c\x3c\x45\xc9\xfd\x3b\x0f\xba\x5b\x31\xc6\xaa\xc3\x82\x9d\xef\x04\xbe\xca\xd6\x93\x15\x37\xf5\x12\xf3\x1c\x7e\x3b\x92\xd6\x9c\x91\x5f\x5f\x18\xed\xdc\xa4\x18\x6c\x7c\x9a\x0a\xe2\x47\xd2\xd9\xcc\xc4\x88\xca\xb6\x96\xdd\xeb\xc9\xdb\xe9\x7d\x1e\x6c\xbf\x07\x3b\xb1\xf3\xb0\xb1\x49\x3a\xf5\x8e\xda\x7d\xef\x80\xfa\xcd\x74\x67\xac\x8d\xc7\x00\x9a\x9e\x9e\x6c\x6e\x44\x9a\x73\xfb\xbb\xea\x8d\x75\x7d\xe5\x6b\xfc\xa6\x3a\xbc\xef\xa3\xbe\xf2\x9d\x69\x77\x05\x49\x1d\x45\x13\x8d\x7f\x1c\x40\x9c\x60\xd7\x81\x66\x79\x9d\xc9\x6e\x55\x5b\x90\x4a\x1f\x50\x9c\x09\xe6\xd2\xad\xc8\x6e\x83\x74\xdc\xd7\x92\xff\x59\x13\x54\x68\xcb\xec\xb2\x6b\x75\xe6\xff\x3d\x36\x67\x77\x9e\x7f\x4a\xdd\x18\xe7\x3c\x69\x2d\xc9\x1f\xbf\x41\x9d\xfb\xfb\x9e\xbc\x27\x7f\x05\x00\x00\xff\xff\xe2\x38\x62\x8b\x07\x0d\x00\x00" +var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\x7c\x08\x64\xc0\x91\xd2\xab\x91\x64\x91\x1a\x5d\xb4\xd8\x14\x0d\xda\x60\xf7\x3c\x11\xc7\x16\x11\x9a\x54\x49\xca\x86\xb0\xc8\x7f\x2f\x48\x51\x0f\xca\xd2\x6e\x5a\xb4\x97\xea\x10\xc4\xe4\x3c\xbe\xf9\x38\x2f\x7e\xac\x94\xb6\xb0\xd3\x4d\x65\x55\x12\x7e\x7d\x14\xea\xfc\xac\x5e\x49\xc2\x5e\xab\x23\xac\xfa\xdf\xab\x5e\xa2\x96\x07\xfe\x22\x28\x92\x1a\x9f\xf5\x92\x8f\xaa\x78\x25\xe6\xcf\x4c\x10\x1c\x1f\xad\x92\x24\xcf\x73\x78\xd6\x28\x0d\x16\x96\x2b\x09\xb6\x44\x0b\x08\x45\x6d\xac\x62\x0d\x54\x5a\x9d\x38\x23\x0d\x67\x55\x0b\x06\x86\x1f\xa4\x57\xb1\x0a\x0a\x4d\x68\x09\x10\x4c\x89\x9a\x18\x60\x51\xa8\x5a\x5a\xd8\x2b\x0d\x08\xb5\x71\x4a\xa5\x02\x14\x9a\x90\x35\x5e\xab\x44\x03\xb6\x24\xae\xa1\x96\xc2\xe3\xe8\xb5\x5a\x6b\xcc\x89\xb5\x98\x4a\xba\x14\xf2\xfa\xca\xa3\x70\x76\xc0\x8e\x80\xa3\x30\x2a\x49\x46\x27\x69\x02\x00\xb0\xaf\x85\x78\x60\x47\x2e\x9f\xea\x17\xc1\x8b\x4f\xd4\x6c\x03\xdf\xd9\x27\x6a\x1e\xb9\xb1\x3f\x49\xab\x9b\x0d\xe4\x39\x7c\x21\x7e\x28\xed\x16\x7e\xb8\xb9\xb9\x49\xd6\x00\x5f\x13\x6f\xa2\xd2\x54\xa1\xa6\x34\x70\xf2\x14\x28\xd9\x02\xd6\xb6\x4c\x7f\x54\x5a\xab\xf3\x67\x14\x35\xad\xe1\xea\xa1\x45\xba\xf1\xf1\x87\x1f\x41\xf0\x0f\xab\x34\x1e\x68\x03\x3b\xac\xf0\x85\x0b\x6e\x39\x99\x41\x65\xdd\xb9\x73\x9f\x20\x1b\x68\x0d\xb7\x70\x07\xe1\xbf\xb4\xc2\xc6\x39\x9f\xa0\x59\x0f\xca\x91\x62\xf6\x4a\x8d\xc9\x90\xb1\xb4\x1a\x08\xb8\x24\x25\xeb\x6f\x37\x8e\xe5\xf2\x41\x1c\x94\xe6\xb6\x3c\xce\x0a\x47\x12\x1b\x38\x07\xde\x66\x24\xdb\xab\x75\x1c\xd9\x09\x6b\x61\x7b\x16\x1a\xb8\x9b\x40\x2e\x46\x04\x65\xa6\xa5\xad\x37\xe0\xbe\x8c\x1b\x53\xd3\xad\xa7\x35\x4a\xfc\xec\x0b\xb7\x25\xd3\x78\x5e\xc3\x55\x5f\x37\xd9\x67\xe7\xef\x3e\xcd\x83\xa9\x7c\xdf\xdd\xf8\x8b\x09\x38\x31\xd4\xc7\xaf\x28\xf1\x40\x1a\x6e\xaf\xa3\x42\xca\xda\x5c\x7d\xbc\x10\x4c\x7d\x60\xdb\x69\x7c\x8b\x4f\x13\xf0\x64\x06\x4f\x94\xde\x5e\x5f\x7a\xde\x80\x55\xdb\xd8\xf7\xa5\xd7\x90\x57\x4f\x68\xcb\x49\x28\x76\x24\xf5\x9f\xd3\xfd\x1d\x94\xf7\x69\x64\xd2\x7d\xef\x8f\x2b\x52\x9d\x0b\xf2\x67\x25\xd8\xe2\x43\x3d\x0f\x12\x31\x88\x96\xf0\x07\xc6\x34\x19\xb3\x9d\xb0\x82\xed\xf1\x26\xd2\x18\x33\xba\x5d\xe0\x37\x99\x01\x3a\xea\x06\xf1\xab\x47\xd6\x6f\xaf\x47\xc1\x4c\x1d\x4f\xf2\x60\x14\xd4\x1c\x51\xcb\x24\xed\xb0\x82\xbb\x08\xd0\xdc\xfb\x87\x27\xbf\x5a\xf2\x79\x9f\xbe\x03\xcd\x7a\x36\xfe\xc8\x9d\x6f\x3b\xa6\x4c\x63\x80\x1b\x40\x3b\x9b\xf7\xc1\xc6\x2f\x72\xaf\xda\x1e\xb3\x94\xf5\xbe\x0d\xfd\x6f\x73\x5e\x8c\xc9\xd8\xb9\x24\x57\x1a\xee\xa6\x23\x61\x3e\xae\x17\x3f\xaf\xda\xc0\x22\x34\xb1\xb9\xf9\xe8\x62\x99\xfb\xd4\xad\x14\xdf\x7a\xa8\x20\x38\x9b\x13\xee\xfb\xf0\x01\x2a\x94\xbc\x48\x57\x3b\xbf\x5f\x48\x65\xa1\x05\x08\x73\xfb\x81\xd2\xab\x31\x13\x33\x9e\x5c\xd9\x76\x83\x32\xf2\x14\x3d\xff\xdf\x29\xf9\x6e\x09\x99\xaa\x8e\x53\x7a\xb9\x57\xf8\x3c\xdc\xce\xe6\xe4\x5c\xad\xe6\x39\xfc\x76\x22\xad\x39\x23\xbf\xe0\x30\xda\xbb\x59\x32\xda\x09\x35\x15\xc4\x4f\xa4\xb3\x85\x99\x12\x25\x76\x2d\xbb\xfa\xca\xdb\xf9\x3e\x8c\xbe\xdf\x83\x9d\xd8\x79\xd8\xe9\x24\x9d\x7b\x47\xed\x46\x78\x44\xfd\x6a\xba\x33\xd6\xc6\x63\x00\x4d\x4f\x4f\xb6\x34\x44\xcd\xd0\x20\xdf\x55\x85\x5d\xe7\xf9\x1a\x57\x5d\x87\xf7\x6d\xd2\x79\xbe\x33\x0f\xdf\x41\x52\x47\xd1\xcc\x68\x98\x06\x10\x3f\xb0\xeb\x51\x8b\xbc\x2e\xbc\x6e\x55\x5b\x90\x4a\x1f\x51\x0c\x04\x73\xe9\x96\x68\xb7\x63\x3a\xee\x6b\xc9\xff\xac\x09\x2a\xb4\x65\x76\xd9\xd7\x3a\xf3\xff\x1e\x9b\x8b\x5b\xd1\x3f\xa5\x6e\x8a\x73\x99\xb4\x96\xe4\x8f\xdf\xa0\xce\xfd\x7d\x4b\xde\x92\xbf\x02\x00\x00\xff\xff\x19\xb7\x3d\x63\x29\x0d\x00\x00" func lockedtokensAdminCustody_create_only_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3920,11 +3920,11 @@ func lockedtokensAdminCustody_create_only_lease_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x16, 0xfa, 0xe7, 0x1, 0x8d, 0x5d, 0xca, 0x94, 0x12, 0x96, 0x29, 0x39, 0xb8, 0xa6, 0x56, 0x88, 0xde, 0xb0, 0xdf, 0x9b, 0xfe, 0xdd, 0xd, 0x16, 0xaa, 0xa7, 0xb5, 0x85, 0xb3, 0xbc, 0x7c, 0xe3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x27, 0x31, 0x85, 0xcc, 0x7a, 0xe5, 0x6e, 0xf7, 0x4, 0xb5, 0x1d, 0x36, 0x54, 0xb4, 0xbb, 0x57, 0xfc, 0xa9, 0xae, 0x3f, 0xa7, 0x9a, 0x2f, 0xee, 0xf7, 0x8f, 0x43, 0xe1, 0x54, 0xb0, 0xb8, 0x86}} return a, nil } -var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\x7c\x08\x64\xc0\x91\xd2\x63\x0d\x27\x8b\xd4\xe8\xa2\xc5\xa6\x68\xd0\xa6\xbb\xe7\x89\x38\xb6\x88\xd0\xa4\x4a\x52\x36\x84\x20\xff\xbd\xa0\x44\x3d\x28\x4b\x79\x14\xed\x65\x75\x08\x22\x6a\x1e\xdf\x7c\x33\x9c\x19\xf3\x43\xa1\xb4\x85\xad\xae\x0a\xab\x22\xff\xf6\x59\xa8\xd3\x83\x7a\x22\x09\x3b\xad\x0e\xb0\xe8\xde\x17\x9d\x44\x29\xf7\xfc\x51\x50\x20\x35\x3c\xeb\x24\xef\x54\xf6\x44\xac\x3e\x33\x5e\x70\x78\xb4\x88\xa2\x34\x4d\xe1\x41\xa3\x34\x98\x59\xae\x24\xd8\x1c\x2d\x20\x64\xa5\xb1\x8a\x55\x50\x68\x75\xe4\x8c\x34\x9c\x54\x29\x18\x18\xbe\x97\xb5\x8a\x55\x90\x69\x42\x4b\x80\x60\x72\xd4\xc4\x00\xb3\x4c\x95\xd2\xc2\x4e\x69\x40\x28\x8d\x53\xca\x15\xa0\xd0\x84\xac\xaa\xb5\x72\x34\x60\x73\xe2\x1a\x4a\x29\x6a\x1c\x9d\x56\x63\x8d\x39\xb1\x06\x53\x4e\xe7\x42\xb5\xbe\xaa\x51\x38\x3b\x60\x07\xc0\x51\x18\x15\x45\x83\x93\x38\x02\x00\x28\x50\x5b\x8e\xe2\x96\x1d\xb8\xbc\x2f\x1f\x05\xcf\xbe\x50\xb5\xf6\x94\x27\x5f\xa8\xba\xe3\xc6\xfe\x2c\xad\xae\x56\x90\xa6\xf0\x8d\xf8\x3e\xb7\x6b\xf8\xe1\xea\x6a\xa8\xfe\x97\x21\xfd\x01\xed\x1f\xaf\xae\xa2\x25\xc0\x73\xd4\xd8\xd0\x54\xa0\xa6\xd8\x73\x7a\xef\x29\x5d\x03\x96\x36\x8f\x7f\x52\x5a\xab\xd3\x57\x14\x25\x2d\xe1\xe2\xb6\x89\x74\x55\xf3\xe7\x5f\xbc\xe0\x9f\x56\x69\xdc\xd3\x0a\xb6\x58\xe0\x23\x17\xdc\x72\x32\xbd\xca\xb2\x75\xe7\x1e\x41\xd6\xa7\xc5\x7f\x85\x6b\xf0\xff\xc5\x05\x56\xce\xf9\x08\xcd\xb2\x57\x0e\x14\x93\x27\xaa\x4c\x82\x8c\xc5\x45\x1f\xff\x24\xa9\x49\x27\xb0\x72\x89\xca\x6f\xc5\x5e\x69\x6e\xf3\xc3\x9c\x7c\x20\xb4\x82\x93\x27\x6f\x5a\xb8\xf9\xba\xfc\x38\xc8\x20\x75\x6f\x63\x0c\xc5\x5f\x87\x18\xca\xb6\x08\x83\x24\x1c\xb1\x14\xb6\x4b\x58\x05\xd7\x23\xe0\xd9\x20\x97\x89\x69\x32\xdc\x19\x70\x4f\xc2\x8d\x29\x69\x53\x57\x40\x70\xc7\x93\x6f\xdc\xe6\x4c\xe3\x69\x09\x17\x5d\x8b\x48\xbe\x3a\x7f\x37\x71\xea\x4d\xa5\xbb\xf6\x4b\xfd\x61\x04\x4e\xf4\xad\xe0\x37\x94\xb8\x27\x0d\x9b\xcb\xa0\x67\x24\xcd\xb5\xbc\x3b\x13\x8c\xeb\xc0\xd6\xe3\xf8\x66\xab\xc8\xe3\x49\x0c\x1e\x29\xde\x5c\x9e\x7b\x5e\x81\x55\xeb\xd0\xf7\xb9\x57\x7f\x05\xee\xd1\xe6\xa3\x50\xec\x40\xea\x7f\xa7\xfb\x0d\x94\x37\x71\x60\xd2\x3d\xef\x8f\x2b\x50\x9d\x0a\xf2\x17\x25\xd8\x6c\xa2\x1e\x7a\x89\x10\x44\x43\xf8\x2d\x63\x9a\x8c\x59\x8f\x58\xc1\xe6\x78\x15\x68\x0c\x19\x5d\xcf\xf0\x1b\x4d\x00\x1d\x34\xae\x30\xeb\x81\xf5\xcd\xe5\x20\x98\xb1\xe3\x51\x1d\x0c\x82\x9a\x22\x6a\x9e\xa4\x2d\x16\x70\x1d\x00\x9a\xca\xbf\x4f\xf9\xc5\x9c\xcf\x9b\xf8\x1d\x68\x96\x93\xf1\x07\xee\xea\xd6\x63\xf2\x38\x04\xb8\x02\xb4\x93\x75\xef\x6d\xfc\x2a\x77\xaa\xe9\x31\x73\x55\x5f\x37\xca\xef\xb6\xe6\xc5\x90\x8c\xad\x2b\x72\xa5\xe1\x7a\x3c\xbd\xa6\xe3\x7a\xac\x47\xeb\x66\x0a\x7b\x68\xf0\x26\x76\xbb\xd1\x6b\x69\xf0\x82\x93\x19\x77\xcf\xa7\x4f\x50\xa0\xe4\x59\xbc\xd8\xd6\x8b\x92\x54\x16\x1a\xf7\x30\xb5\xe8\x28\xbd\x18\xc6\x39\xe1\xc9\x5d\xca\x76\x62\x07\x9e\x82\xe4\x7e\xe4\x42\xb7\xdb\xd4\x58\x75\x58\xb0\xf3\x9d\xa0\xae\xb2\xf5\x64\xc5\x4d\xdd\xc4\x34\x85\xdf\x8f\xa4\x35\x67\x54\x6f\x6a\x8c\x76\x6e\x52\x0c\x96\x5b\x4d\x19\xf1\x23\xe9\x64\x66\x62\x04\x65\x5b\xca\xf6\xf6\xa4\xcd\x04\xef\x07\xdb\x1f\xde\x4e\xe8\xdc\x2f\xa7\x92\x4e\x9d\xa3\x66\xb5\x3d\xa0\x7e\x32\xed\x19\x6b\xe2\x31\x80\xa6\xa3\x27\x99\x1b\x91\xa6\x6f\x7f\xef\xba\x63\x6d\x5f\x79\x0e\xef\x54\x8b\xf7\x65\xd4\x57\xde\x98\x76\xef\x20\xa9\xa5\x68\xa2\xf1\x8f\x03\x08\x13\xec\x3a\xd0\x2c\xaf\x33\xd9\x2d\x4a\x0b\x52\xe9\x03\x8a\x9e\x60\x2e\xdd\xaf\x01\xb7\xec\x3a\xee\x4b\xc9\xff\x2e\x09\x0a\xb4\x79\x72\xde\xb5\x5a\xf3\xff\x1d\x9b\xb3\x3b\xcf\xbf\xa5\x6e\x8c\x73\x9e\xb4\x86\xe4\xcf\xaf\x50\xe7\xfe\xbe\x44\x2f\xd1\x3f\x01\x00\x00\xff\xff\x54\x81\x36\x64\xf2\x0d\x00\x00" +var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xe9\xb1\x46\x92\x45\x6a\x74\xd1\x62\x53\x34\x68\xd3\xdd\xf3\x44\x1c\x5b\x44\x68\x52\x25\x29\x1b\x42\x90\x77\x2f\x28\x51\x3f\x94\xa5\xc4\x29\xda\xcb\xea\x10\x44\xd4\xfc\x7c\xf3\xcd\x70\x66\xcc\xf7\x85\xd2\x16\x36\xba\x2a\xac\x8a\xfc\xdb\x67\xa1\x8e\x8f\xea\x99\x24\x6c\xb5\xda\xc3\xa2\x7b\x5f\x74\x12\xa5\xdc\xf1\x27\x41\x81\xd4\xf0\xac\x93\xbc\x57\xd9\x33\xb1\xfa\xcc\x78\xc1\xe1\xd1\x22\x8a\xd2\x34\x85\x47\x8d\xd2\x60\x66\xb9\x92\x60\x73\xb4\x80\x90\x95\xc6\x2a\x56\x41\xa1\xd5\x81\x33\xd2\x70\x54\xa5\x60\x60\xf8\x4e\xd6\x2a\x56\x41\xa6\x09\x2d\x01\x82\xc9\x51\x13\x03\xcc\x32\x55\x4a\x0b\x5b\xa5\x01\xa1\x34\x4e\x29\x57\x80\x42\x13\xb2\xaa\xd6\xca\xd1\x80\xcd\x89\x6b\x28\xa5\xa8\x71\x74\x5a\x8d\x35\xe6\xc4\x1a\x4c\x39\x9d\x0a\xd5\xfa\xaa\x46\xe1\xec\x80\x1d\x00\x47\x61\x54\x14\x0d\x4e\xe2\x08\x00\xa0\x40\x6d\x39\x8a\x3b\xb6\xe7\xf2\xa1\x7c\x12\x3c\xfb\x42\xd5\xda\x53\x9e\x7c\xa1\xea\x9e\x1b\xfb\xb3\xb4\xba\x5a\x41\x9a\xc2\x37\xe2\xbb\xdc\xae\xe1\x87\xab\xab\xa1\xfa\x5f\x86\xf4\x07\xb4\x7f\xbc\xba\x8a\x96\x00\x2f\x51\x63\x43\x53\x81\x9a\x62\xcf\xe9\x83\xa7\x74\x0d\x58\xda\x3c\xfe\x49\x69\xad\x8e\x5f\x51\x94\xb4\x84\x8b\xbb\x26\xd2\x55\xcd\x9f\x7f\xf1\x82\x7f\x5a\xa5\x71\x47\x2b\xd8\x60\x81\x4f\x5c\x70\xcb\xc9\xf4\x2a\xcb\xd6\x9d\x7b\x04\x59\x9f\x16\xff\x15\x6e\xc0\xff\x17\x17\x58\x39\xe7\x23\x34\xcb\x5e\x39\x50\x4c\x9e\xa9\x32\x09\x32\x16\x17\x7d\xfc\x93\xa4\x26\x9d\xc0\xca\x25\x2a\xbf\x13\x3b\xa5\xb9\xcd\xf7\x73\xf2\x81\xd0\x0a\x8e\x9e\xbc\x69\xe1\xe6\xeb\xf2\xe3\x20\x83\xd4\xbd\x8f\x31\x14\x7f\x1b\x62\x28\xdb\x22\x0c\x92\x70\xc0\x52\xd8\x2e\x61\x15\xdc\x8c\x80\x67\x83\x5c\x26\xa6\xc9\x70\x67\xc0\x3d\x09\x37\xa6\xa4\xeb\xba\x02\x82\x3b\x9e\x7c\xe3\x36\x67\x1a\x8f\x4b\xb8\xe8\x5a\x44\xf2\xd5\xf9\xbb\x8d\x53\x6f\x2a\xdd\xb6\x5f\xea\x0f\x23\x70\xa2\x6f\x05\xbf\xa1\xc4\x1d\x69\xb8\xbe\x0c\x7a\x46\xd2\x5c\xcb\xfb\x13\xc1\xb8\x0e\x6c\x3d\x8e\x6f\xb6\x8a\x3c\x9e\xc4\xe0\x81\xe2\xeb\xcb\x53\xcf\x2b\xb0\x6a\x1d\xfa\x3e\xf5\xea\xaf\xc0\x03\xda\x7c\x14\x8a\x1d\x48\xfd\xef\x74\xbf\x83\xf2\x36\x0e\x4c\xba\xe7\xfc\xb8\x02\xd5\xa9\x20\x7f\x51\x82\xcd\x26\xea\xb1\x97\x08\x41\x34\x84\xdf\x31\xa6\xc9\x98\xf5\x88\x15\x6c\x8e\x57\x81\xc6\x90\xd1\xf5\x0c\xbf\xd1\x04\xd0\x41\xe3\x0a\xb3\x1e\x58\xbf\xbe\x1c\x04\x33\x76\x3c\xaa\x83\x41\x50\x53\x44\xcd\x93\xb4\xc1\x02\x6e\x02\x40\x53\xf9\xf7\x29\xbf\x98\xf3\x79\x1b\x9f\x81\x66\x39\x19\x7f\xe0\xae\x6e\x3d\x26\x8f\x43\x80\x2b\x40\x3b\x59\xf7\xde\xc6\xaf\x72\xab\x9a\x1e\x33\x57\xf5\x75\xa3\xfc\x6e\x6b\x5e\x0c\xc9\xd8\xb8\x22\x57\x1a\x6e\xc6\xd3\x6b\x3a\xae\xa7\x7a\xb4\x36\x81\x05\x68\x42\x73\xd3\xd1\x85\x32\xb7\xb1\xdb\x9e\xde\x4a\x94\x17\x9c\xac\x09\xf7\x7c\xfa\x04\x05\x4a\x9e\xc5\x8b\x4d\xbd\x4a\x49\x65\xa1\x01\x08\x53\xab\x90\xd2\x8b\x21\x13\x13\x9e\xdc\xb5\x6d\x67\x7a\xe0\x29\x48\xff\x47\xae\x7c\xbb\x6f\x8d\x55\x87\x25\x3d\xdf\x2b\xea\x3a\x5c\x4f\xd6\xe4\xd4\x5d\x4d\x53\xf8\xfd\x40\x5a\x73\x46\xf5\x2e\xc7\x68\xeb\x66\xc9\x60\xfd\xd5\x94\x11\x3f\x90\x4e\x66\x66\x4a\x50\xd8\xa5\x6c\xef\x57\xda\xcc\xf8\x7e\xf4\xfd\xe1\xed\x84\xce\xfd\xfa\x2a\xe9\xd8\x39\x6a\x96\xdf\x3d\xea\x67\xd3\x9e\xb1\x26\x1e\x03\x68\x3a\x7a\x92\xb9\x21\x6a\xfa\x06\x79\xd6\x2d\x6c\x3b\xcf\x4b\x78\xeb\x5a\xbc\xaf\xa3\xce\xf3\xce\x3c\x3c\x83\xa4\x96\xa2\x89\xd1\x30\x0e\x20\x4c\xb0\xeb\x51\xb3\xbc\xce\x64\xb7\x28\x2d\x48\xa5\xf7\x28\x7a\x82\xb9\x74\xbf\x17\xdc\x3a\xec\xb8\x2f\x25\xff\xbb\x24\x28\xd0\xe6\xc9\x69\x5f\x6b\xcd\xff\x77\x6c\xce\x6e\x45\xff\x96\xba\x31\xce\x79\xd2\x1a\x92\x3f\xbf\x41\x9d\xfb\xfb\x1a\xbd\x46\xff\x04\x00\x00\xff\xff\x86\xe7\x67\xe3\x14\x0e\x00\x00" func lockedtokensAdminCustody_create_only_shared_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3940,11 +3940,11 @@ func lockedtokensAdminCustody_create_only_shared_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_shared_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x73, 0xe5, 0xf1, 0xe3, 0x9c, 0x8f, 0xa1, 0xf1, 0xe8, 0x70, 0x0, 0xa1, 0xcd, 0x92, 0x19, 0x17, 0x49, 0xf2, 0x4e, 0x68, 0xef, 0x32, 0x85, 0xb6, 0xac, 0x41, 0x2a, 0x9b, 0xfe, 0xa8, 0x96, 0x31}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x64, 0x20, 0x65, 0xd0, 0x84, 0xcb, 0x4f, 0xd4, 0xfb, 0x70, 0x39, 0x32, 0xb4, 0xa6, 0x37, 0x5f, 0x1, 0x45, 0x3e, 0xe6, 0xf3, 0x56, 0x6b, 0xe1, 0xfe, 0x1f, 0x9a, 0xa3, 0x91, 0x6f, 0x2e, 0x50}} return a, nil } -var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xde\x63\x0d\x27\x8b\xd4\xe8\xa2\xc5\xa6\x68\xd0\xa6\xbb\xe7\x89\x34\xb6\x88\xc8\xa4\xca\x1f\x1b\x46\x90\x77\x2f\x28\x51\xb2\x28\x51\x89\x53\xb4\x97\xf2\x10\x44\xe4\xfc\x7c\xf3\xcd\x70\x38\x66\xfb\x4a\x48\x0d\x1b\x79\xaa\xb4\x88\xdc\xd7\x97\x52\x1c\x1f\xc5\x33\x71\xd8\x4a\xb1\x87\x59\xf7\x3d\xeb\x24\x0c\xdf\xb1\xa7\x92\x3c\xa9\xfe\x5e\x27\x79\x2f\xb2\x67\xca\xeb\x3d\xe5\x04\xfb\x5b\xb3\x28\x4a\xd3\x14\x1e\x25\x72\x85\x99\x66\x82\x83\x2e\x50\x03\x42\x66\x94\x16\xf9\x09\x2a\x29\x0e\x2c\x27\x09\x47\x61\xca\x1c\x14\xdb\xf1\x5a\x45\x0b\xc8\x24\xa1\x26\x40\x50\x05\x4a\xca\x01\xb3\x4c\x18\xae\x01\x79\x0e\xc8\xc1\xf0\xb2\xf6\x54\x8b\xb7\x67\x5b\x21\x01\xc1\x28\x92\x51\xa4\xcf\x5e\xe3\x08\x00\xa0\x42\xa9\x19\x96\x77\xf9\x9e\xf1\x07\xf3\x54\xb2\xec\x2b\x9d\x56\x8e\x9d\xe4\x2b\x9d\xee\x99\xd2\x3f\x71\x2d\x4f\x0b\x48\x53\xf8\x4e\x6c\x57\xe8\x15\x7c\x5a\x2e\xfb\xea\x7f\x2a\x92\x1f\xd0\xfe\xc1\x69\x6f\x4d\xf9\x51\xd5\x4f\xcb\xe5\x32\x9a\xc3\x4b\xd4\xb8\x97\x54\xa1\xa4\xd8\x31\xf7\xe0\x88\x5b\x01\x1a\x5d\xc4\x3f\x0a\x29\xc5\xf1\x1b\x96\x86\xe6\x70\x75\xd7\xd0\xd1\xe9\xda\x55\x92\x76\x4c\xba\x53\xb8\x01\xf7\x5f\x5c\xe1\xc9\x5a\x1a\x98\x9e\x7b\xba\x96\xd4\xcb\x35\x3b\x55\xcf\x65\xf2\x4c\x27\x95\x60\x9e\xc7\xd5\x99\x86\x60\x5a\x92\x4e\x60\x01\x05\xaa\xe2\xae\xdc\x09\xc9\x74\xb1\x9f\x92\xf7\x84\x16\x70\x74\x1c\x86\x85\x9b\xd3\xf9\xc7\x41\x7a\x19\x7c\x1f\xa3\x2f\xfe\x36\x44\x5f\xb6\x45\xd8\x41\xec\xd1\x1f\x04\x38\xaa\xaf\x37\xd0\x8d\x65\x27\xa0\x8d\x05\x47\xb8\x6c\x69\x1c\xd0\x94\x7a\x83\x15\x3e\xb1\x92\xe9\x13\xdc\x0c\x08\xcd\xda\x23\x46\x2a\x51\x5a\x48\xdc\x51\x67\xc0\xae\x84\x29\x65\x68\x5d\x57\xb2\xd7\x68\x92\xef\x4c\x17\xb9\xc4\xe3\x1c\xae\xba\x3e\x95\x7c\xb3\xfe\x6e\xe3\xd4\x99\x4a\xb7\xed\x49\x7d\x30\x00\x57\x9e\xfb\xd1\xaf\xc8\x71\x47\x12\xd6\xd7\x5e\xe3\x4a\x9a\x4e\x73\x3f\x12\x8c\xeb\xc0\x56\xc3\xf8\x26\xab\xdb\xe1\x49\x14\x1e\x28\x5e\x5f\x8f\x3d\x2f\x40\x8b\x95\xef\x7b\xec\xf5\x8f\xc6\xca\x03\xea\x62\x10\x8a\xee\x49\xfd\xe7\x74\xbf\x83\xf2\x36\xf6\x4c\xda\x75\x79\x5c\x9e\x6a\x28\xc8\x9f\x45\x99\x4f\x26\xea\xf1\x2c\xe1\x83\x68\x08\xbf\xcb\x73\x49\x4a\xad\x06\xac\x60\xb3\xbd\xf0\x34\xfa\x8c\xae\x26\xf8\x8d\x02\x40\xfb\xb7\xd1\xcb\xba\x67\x7d\x7d\xdd\x0b\x66\xe8\x78\x50\x07\xbd\xa0\x42\x44\x4d\x93\xb4\xc1\x0a\x6e\x3c\x40\xa1\xfc\xbb\x94\x5f\x4d\xf9\xbc\x8d\x2f\x40\x33\x0f\xc6\xef\xb9\xab\x9b\x8e\x2a\x62\x1f\xe0\x02\x50\x07\xeb\xde\xd9\xf8\x85\x6f\x45\xd3\x63\xa6\xaa\xbe\x6e\xe0\xff\xdb\x9a\x2f\xfb\x64\x6c\x6c\x91\x0b\x09\x37\xc3\x57\x35\x1c\xd7\x53\xfd\xf2\xaf\x43\xd8\x7d\x83\xb7\xb1\x1d\xd0\xde\x4a\x83\x13\x0c\x66\xdc\xae\xcf\x9f\xa1\x42\xce\xb2\x78\xb6\xa9\xa7\x35\x2e\x34\x34\xee\xbb\x01\x2c\x73\xe0\x25\x6d\x49\x12\xcf\x68\xd6\x0f\x35\xe0\xcc\xde\xcb\x76\x98\xf0\x9c\x79\xf9\xfd\xc8\x9d\x6e\x07\xc3\xa1\x6a\xbf\x66\xa7\x9b\x41\x5d\x68\xab\x60\xd1\x85\x2e\x63\x9a\xc2\x6f\x07\x92\x92\xe5\x04\xba\x20\xc8\x69\x6b\x1f\x8b\xde\x90\x2d\x29\x23\x76\x20\x99\x4c\x3c\x1a\x5e\xe5\x1a\xde\x5e\xa0\xb4\x79\xbe\xcf\x6f\xdb\xef\xce\x8e\xef\xdc\x0d\xc9\x9c\x8e\x9d\xa3\x66\xc4\xde\xa3\x7c\x56\xed\x5e\xde\xc4\xa3\x00\x55\x47\x4f\x32\xf5\x4a\xaa\x73\x07\xbc\xe8\x9a\xb5\xad\xe5\xc5\xbf\x56\x2d\xde\xd7\x41\x6b\x79\xe7\xc1\xbb\x80\xa4\x96\xa2\x40\xef\x1f\x06\xe0\x27\xd8\x36\xa1\x49\x5e\x27\xb2\x5b\x19\x0d\x5c\xc8\x3d\x96\x67\x82\x19\xb7\xbf\x4a\xec\x38\x6e\xb9\x37\x9c\xfd\x65\x08\x2a\xd4\x45\x32\x6e\x5c\xad\xf9\x7f\x8f\xcd\xc9\xb1\xe7\x9f\x52\x37\xc4\x39\x4d\x5a\x43\xf2\x97\x37\xa8\xb3\x7f\x5f\xa3\xd7\xe8\xef\x00\x00\x00\xff\xff\x49\x24\x03\x98\x7a\x0e\x00\x00" +var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\x7c\x08\x64\xc0\x91\xbc\xc7\x1a\x49\x16\xa9\xd1\x45\x8b\x4d\xd1\xa0\x4d\x77\xcf\x13\x69\x6c\x11\x91\x49\x95\x1f\x36\x8c\x20\xff\xbd\xa0\x44\xc9\xa2\x44\x25\x76\xd1\x5e\xaa\xc3\x62\x4d\xbe\x99\x79\xf3\x38\x1c\x4e\xd8\xae\x12\x52\xc3\x5a\x1e\x2b\x2d\x22\xf7\xeb\x4b\x29\x0e\x4f\xe2\x85\x38\x6c\xa4\xd8\xc1\xac\xfb\x3d\xeb\x10\x86\x6f\xd9\x73\x49\x1e\xaa\xbf\xd6\x21\x1f\x44\xf6\x42\x79\xbd\xa6\x1c\xb0\xbf\x34\x8b\xa2\x34\x4d\xe1\x49\x22\x57\x98\x69\x26\x38\xe8\x02\x35\x20\x64\x46\x69\x91\x1f\xa1\x92\x62\xcf\x72\x92\x70\x10\xa6\xcc\x41\xb1\x2d\xaf\x4d\xb4\x80\x4c\x12\x6a\x02\x04\x55\xa0\xa4\x1c\x30\xcb\x84\xe1\x1a\x90\xe7\x80\x1c\x0c\x2f\xeb\x48\x35\xbc\xdd\xdb\x08\x09\x08\x46\x91\x8c\x22\x7d\x8a\x1a\x47\x00\x00\x15\x4a\xcd\xb0\xbc\xcf\x77\x8c\x3f\x9a\xe7\x92\x65\x5f\xe9\xb8\x72\xea\x24\x5f\xe9\xf8\xc0\x94\xfe\x89\x6b\x79\x5c\x40\x9a\xc2\x77\x62\xdb\x42\xaf\xe0\xd3\x72\xd9\x37\xff\x53\x91\xbc\xc0\xfa\x07\x67\xbd\x31\xe5\xa5\xa6\x9f\x96\xcb\x65\x34\x87\xd7\xa8\x09\x2f\xa9\x42\x49\xb1\x53\xee\xd1\x09\xb7\x02\x34\xba\x88\x7f\x14\x52\x8a\xc3\x37\x2c\x0d\xcd\xe1\xea\xbe\x91\xa3\xb3\xb5\x5f\x49\xda\x29\xe9\x76\xe1\x16\xdc\xff\xe2\x0a\x8f\xd6\xd3\xc0\xf5\xdc\xb3\xb5\xa2\x9e\x6f\xd9\x99\x7a\x21\x93\x17\x3a\xaa\x04\xf3\x3c\xae\x4e\x32\x04\x8f\x25\xe9\x00\x0b\x28\x50\x15\xf7\xe5\x56\x48\xa6\x8b\xdd\x14\xde\x03\x2d\xe0\xe0\x34\x0c\x83\x9b\xdd\xf9\xe5\x24\xbd\x13\xfc\x98\xa3\x0f\x7f\x9f\xa2\x8f\x6d\x19\x76\x14\x7b\xf2\x07\x09\x8e\xea\xeb\x1d\x76\x63\xec\x04\xb5\x31\x70\xc4\xcb\x96\xc6\x1e\x4d\xa9\xd7\x58\xe1\x33\x2b\x99\x3e\xc2\xed\x40\xd0\xac\xdd\x62\xa4\x12\xa5\x85\xc4\x2d\x75\x0e\xec\x97\x30\xa5\x0c\xdd\xd4\x95\xec\x35\x9a\xe4\x3b\xd3\x45\x2e\xf1\x30\x87\xab\xae\x4f\x25\xdf\x6c\xbc\xbb\x38\x75\xae\xd2\x4d\xbb\x53\x6f\x0c\xc8\x95\xa7\x7e\xf4\x2b\x72\xdc\x92\x84\x9b\x6b\xaf\x71\x25\x4d\xa7\x79\x18\x01\xe3\x3a\xb1\xd5\x30\xbf\xc9\xea\x76\x7c\x12\x85\x7b\x8a\x6f\xae\xc7\x91\x17\xa0\xc5\xca\x8f\x3d\x8e\xfa\x47\xe3\xe5\x11\x75\x31\x48\x45\xf7\x50\xff\xb9\xdc\x1f\xb0\xbc\x8b\x3d\x97\xf6\x3b\x3f\x2f\xcf\x34\x94\xe4\xcf\xa2\xcc\x27\x0f\xea\xe9\x84\xf0\x49\x34\x82\xdf\xe7\xb9\x24\xa5\x56\x03\x55\xb0\x59\x5e\x78\x16\x7d\x45\x57\x13\xfa\x46\x01\xa2\xfd\xdb\xe8\x9d\xba\xe7\xfd\xe6\xba\x97\xcc\x30\xf0\xa0\x0e\x7a\x49\x85\x84\x9a\x16\x69\x8d\x15\xdc\x7a\x84\x42\xe7\xef\x8e\xfc\x6a\x2a\xe6\x5d\x7c\x06\x9b\x79\x30\x7f\x2f\x5c\xdd\x74\x54\x11\xfb\x04\x17\x80\x3a\x58\xf7\xce\xc7\x2f\x7c\x23\x9a\x1e\x33\x55\xf5\x75\x03\xff\xdf\xd6\x7c\xd9\x17\x63\x6d\x8b\x5c\x48\xb8\x1d\xbe\xaa\xe1\xbc\x9e\xeb\x97\xbf\x49\xcc\x63\xe3\xbb\x0b\x67\xe7\x63\xee\x62\x3b\xc2\xbd\x77\x50\x0e\x18\xac\x09\xfb\x7d\xfe\x0c\x15\x72\x96\xc5\xb3\x75\x3d\xcf\x71\xa1\xa1\x21\xd8\x8d\x68\x99\x4b\x4f\xd2\x86\x24\xf1\x8c\x66\x7d\x31\x02\xc1\xec\xcd\x6d\xc7\x0d\x2f\x98\x57\x01\x97\xdc\xfa\x76\x74\x1c\x9a\xf6\xab\x7a\xba\x5d\xd4\xa5\xb8\x0a\x96\x65\xe8\xba\xa6\x29\xfc\xb6\x27\x29\x59\x4e\xa0\x0b\x82\x9c\x36\xf6\x39\xe9\x8d\xe1\x92\x32\x62\x7b\x92\xc9\xc4\xb3\xe2\xd5\xb6\xe1\xed\x15\x4b\x9b\x07\xfe\xf4\xfa\xfd\xee\xfc\xf8\xc1\xdd\x18\xcd\xe9\xd0\x05\x6a\x86\xf0\x1d\xca\x17\xd5\xae\xe5\x4d\x3e\x0a\x50\x75\xf2\x24\x53\xef\xa8\x3a\xf5\xc8\xb3\x2e\x62\xdb\x7c\x5e\xfd\x8b\xd7\xf2\x7d\x1b\x34\x9f\x0f\x9e\xc4\x33\x44\x6a\x25\x0a\xbc\x0e\xc3\x04\xfc\x03\xb6\x6d\x6a\x52\xd7\x89\xd3\xad\x8c\x06\x2e\xe4\x0e\xcb\x93\xc0\x8c\xdb\xbf\x5b\xec\xc0\x6e\xb5\x37\x9c\xfd\x65\x08\x2a\xd4\x45\x32\x6e\x6d\xad\xfb\x7f\x4f\xcd\xc9\xc1\xe8\x9f\x4a\x37\xe4\x39\x2d\x5a\x23\xf2\x97\x77\xa4\xb3\xff\xbe\x45\x6f\xd1\xdf\x01\x00\x00\xff\xff\xd2\x06\xbd\xd2\x9c\x0e\x00\x00" func lockedtokensAdminCustody_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3960,7 +3960,7 @@ func lockedtokensAdminCustody_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8d, 0x9c, 0xa9, 0xa6, 0xfd, 0xba, 0xcb, 0xf6, 0x70, 0x43, 0xa6, 0x9a, 0x65, 0x1e, 0x20, 0xa, 0xe3, 0x83, 0x0, 0x12, 0xfd, 0xaa, 0xf5, 0x47, 0x97, 0x51, 0xdd, 0xcd, 0x30, 0xd9, 0x8d, 0x16}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0x92, 0x5c, 0xeb, 0xa5, 0xcc, 0x4c, 0x29, 0x85, 0x25, 0x69, 0x9d, 0x68, 0x42, 0x65, 0x66, 0x4c, 0xe9, 0x3c, 0xc2, 0xe1, 0xfb, 0x9, 0x67, 0xc3, 0xc8, 0x9e, 0x35, 0x51, 0x8a, 0x8a, 0xb3}} return a, nil } diff --git a/transactions/flowToken/transfer_tokens.cdc b/transactions/flowToken/transfer_tokens.cdc index 34f682b57..23c3d2034 100644 --- a/transactions/flowToken/transfer_tokens.cdc +++ b/transactions/flowToken/transfer_tokens.cdc @@ -11,7 +11,7 @@ import "FlowToken" transaction(amount: UFix64, to: Address) { // The Vault resource that holds the tokens that are being transferred - let sentVault: @FungibleToken.Vault + let sentVault: @{FungibleToken.Vault} prepare(signer: auth(BorrowValue) &Account) { diff --git a/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc b/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc index c8a803433..c970577b5 100644 --- a/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc +++ b/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc @@ -53,7 +53,7 @@ transaction( userAccount.capabilities.publish(infoCap, at: LockedTokens.LockedAccountInfoPublicPath) let tokenAdminCollection = admin.storage - .borrow<&LockedTokens.TokenAdminCollection>( + .borrow( from: LockedTokens.LockedTokenAdminCollectionStoragePath ) ?? panic("Could not borrow reference to admin collection") diff --git a/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc b/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc index 5b8340a2d..b7389ffe7 100644 --- a/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc +++ b/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc @@ -14,7 +14,7 @@ transaction(custodyProviderAddress: Address) { ) ?? panic("Could not borrow capability receiver reference") - let tokenAdminCollection = admin.capabilities.storage.issue<&LockedTokens.TokenAdminCollection>( + let tokenAdminCollection = admin.capabilities.storage.issue( LockedTokens.LockedTokenAdminCollectionStoragePath )! diff --git a/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc b/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc index 68bb2278b..287d46d4f 100644 --- a/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc @@ -49,7 +49,7 @@ transaction( ) let lockedAccountCreator = custodyProvider.storage - .borrow<&LockedTokens.LockedAccountCreator>(from: LockedTokens.LockedAccountCreatorStoragePath) + .borrow(from: LockedTokens.LockedAccountCreatorStoragePath) ?? panic("Could not borrow locked account creator") lockedAccountCreator.addAccount( diff --git a/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc b/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc index 811ecface..3957e6b81 100644 --- a/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc @@ -50,7 +50,7 @@ transaction( ) let lockedAccountCreator = custodyProvider.storage - .borrow<&LockedTokens.LockedAccountCreator>(from: LockedTokens.LockedAccountCreatorStoragePath) + .borrow(from: LockedTokens.LockedAccountCreatorStoragePath) ?? panic("Could not borrow locked account creator") lockedAccountCreator.addAccount( diff --git a/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc b/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc index fa75523aa..73bb9af32 100644 --- a/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc @@ -52,7 +52,7 @@ transaction( ) let lockedAccountCreator = custodyProvider.storage - .borrow<&LockedTokens.LockedAccountCreator>(from: LockedTokens.LockedAccountCreatorStoragePath) + .borrow(from: LockedTokens.LockedAccountCreatorStoragePath) ?? panic("Could not borrow locked account creator") lockedAccountCreator.addAccount( diff --git a/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc b/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc index 071c1c72c..978ee1a43 100644 --- a/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc +++ b/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc @@ -54,7 +54,7 @@ transaction( ) let lockedAccountCreator = custodyProvider.storage - .borrow<&LockedTokens.LockedAccountCreator>(from: LockedTokens.LockedAccountCreatorStoragePath) + .borrow(from: LockedTokens.LockedAccountCreatorStoragePath) ?? panic("Could not borrow account creator reference") lockedAccountCreator.addAccount( From 677b20d3c6b3627fe62fb55bdcdb9fd71f9f6263 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Wed, 24 Apr 2024 16:24:31 -0500 Subject: [PATCH 126/160] update ft dependencies --- lib/go/contracts/go.mod | 2 +- lib/go/contracts/go.sum | 2 + lib/go/templates/go.mod | 2 +- lib/go/templates/go.sum | 2 + lib/go/templates/internal/assets/assets.go | 52 ++----------------- transactions/flowToken/create_forwarder.cdc | 9 ++-- .../delegation/delegator_add_capability.cdc | 25 --------- .../node/node_add_capability.cdc | 26 ---------- 8 files changed, 13 insertions(+), 107 deletions(-) delete mode 100644 transactions/idTableStaking/delegation/delegator_add_capability.cdc delete mode 100644 transactions/idTableStaking/node/node_add_capability.cdc diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 94f5cf378..01fac8644 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -5,7 +5,7 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.24.0+incompatible github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9 - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240424142855-b518689a350b + github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240424211859-3ff4c0fe2a1e github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240424144730-4a6f42d2a372 github.com/stretchr/testify v1.8.4 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 02a23f7d2..17d75a87d 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1619,6 +1619,8 @@ github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337- github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9/go.mod h1:PZrrCsllIt/Bu4HlJtisXfvDrOt1aLKU5R70vsZHKRc= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240424142855-b518689a350b h1:HutxHvyc06UbJncEUieAwt7Nf1lG5uiIGVok6w031LM= github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240424142855-b518689a350b/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240424211859-3ff4c0fe2a1e h1:2LO6Rtmz2PVfH+ZXnMwvTwVeIz3PCy0fs3lQraqog14= +github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240424211859-3ff4c0fe2a1e/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876 h1:fZj39XxayIL7uvKvonNI3MtQM3wsFJ8oRl/XW/0rn7A= github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= diff --git a/lib/go/templates/go.mod b/lib/go/templates/go.mod index 6793ecc90..b0822826f 100644 --- a/lib/go/templates/go.mod +++ b/lib/go/templates/go.mod @@ -5,7 +5,7 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.24.0+incompatible github.com/onflow/cadence v1.0.0-M3 - github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240424142855-b518689a350b + github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240424211859-3ff4c0fe2a1e github.com/onflow/flow-go-sdk v1.0.0-M1 github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240424144730-4a6f42d2a372 github.com/psiemens/sconfig v0.1.0 diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index ab07cb1a2..3c3fd7e68 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -1617,6 +1617,8 @@ github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240424142855-b518689a350b h1:Z/Fn+7ysdfuv8yKzhPlZ+HrADm3zaUi+zb6BP4JWLfU= github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240424142855-b518689a350b/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= +github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240424211859-3ff4c0fe2a1e h1:jl7SYAui/gYRmBofrY//Ln8ixRJwvLzvwLstNfRKmWY= +github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240424211859-3ff4c0fe2a1e/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240424144730-4a6f42d2a372 h1:zjEANfSuCctAQ79IotaP6+v0jZiJsDAlikcZC++BTpc= diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index ccf2c5de9..0c735c133 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -73,7 +73,7 @@ // epoch/scripts/get_randomize.cdc (125B) // epoch/scripts/get_target_end_time_for_epoch.cdc (263B) // flowToken/burn_tokens.cdc (1.097kB) -// flowToken/create_forwarder.cdc (1.97kB) +// flowToken/create_forwarder.cdc (1.944kB) // flowToken/mint_tokens.cdc (985B) // flowToken/scripts/get_balance.cdc (386B) // flowToken/scripts/get_supply.cdc (193B) @@ -114,7 +114,6 @@ // idTableStaking/delegation/del_stake_unstaked.cdc (676B) // idTableStaking/delegation/del_withdraw_reward_tokens.cdc (952B) // idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc (952B) -// idTableStaking/delegation/delegator_add_capability.cdc (892B) // idTableStaking/delegation/get_delegator_committed.cdc (321B) // idTableStaking/delegation/get_delegator_info.cdc (299B) // idTableStaking/delegation/get_delegator_info_from_address.cdc (505B) @@ -126,7 +125,6 @@ // idTableStaking/delegation/get_delegator_unstaking_request.cdc (330B) // idTableStaking/delegation/register_delegator.cdc (981B) // idTableStaking/delegation/register_many_delegators.cdc (684B) -// idTableStaking/node/node_add_capability.cdc (900B) // idTableStaking/node/register_many_nodes.cdc (1.171kB) // idTableStaking/node/register_node.cdc (1.651kB) // idTableStaking/node/request_unstake.cdc (644B) @@ -1824,7 +1822,7 @@ func flowtokenBurn_tokensCdc() (*asset, error) { return a, nil } -var _flowtokenCreate_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\x4d\x6f\xe3\x36\x10\xbd\xf3\x57\xbc\xe6\xb0\xb5\x03\x47\x46\xbf\x2e\x46\xb6\xc0\x36\x45\x80\x5e\x7a\x68\x83\xbd\x76\xc7\xd4\xc8\x64\x57\x26\x05\x72\x64\xc1\x08\xf2\xdf\x0b\x92\xb2\x2c\xa5\x48\x4e\xeb\x93\xc8\x99\x79\xf3\xde\xcc\xa3\xb7\xb7\xb7\x4a\x3d\x19\x1b\x21\x81\x5c\x24\x2d\xd6\x3b\xd8\x08\x82\xf0\xb1\x6b\x49\x18\x8d\x0f\xe9\x38\x8b\x8b\x21\x81\xf6\x7d\x5b\x63\xcf\xe8\x23\xd7\x4a\x3c\x22\x0b\xfa\x0e\xe4\x40\x5a\xfb\xde\x09\xc4\xa7\xe2\x81\x42\x8d\x9a\x3b\x1f\xad\x70\x0d\xf1\x5f\xd9\xc5\x14\x23\xe7\xc5\x70\x40\x60\xcd\xf6\xc4\xa1\x52\xea\x8f\x06\xe4\xce\xde\x31\x22\xbb\x3a\xce\x93\x53\x9f\xf0\x7d\xc4\x63\x41\xe4\x80\xbf\xc6\xba\x8d\x12\xc3\xd3\x09\x83\x6d\x5b\xfc\xdb\x47\x99\x9a\x8b\xf1\x91\x67\x58\x29\xfd\x33\xf5\xad\x14\x25\x86\x22\xf6\xcc\x4e\x25\x05\x14\x73\x38\xb0\xb6\x9d\x65\x27\x20\x57\x83\x8f\x36\x7d\x80\x4f\xe9\x26\x17\x59\x57\x5b\x4d\xc2\x51\x0d\xc6\x6a\x93\xd9\x5d\x1a\x26\x95\xe6\xd2\xb0\x1a\x07\x3c\xd0\x79\x03\x9b\xf4\xc1\x37\xcd\x9d\x36\x64\x1d\x22\x87\x93\xd5\x8c\x81\x9c\x64\x6a\x47\xef\xac\xf8\x80\xc1\xf8\xb4\x86\x11\xd0\xba\x83\xba\xd2\xb7\xb2\x81\x15\x68\x72\x18\x48\xb4\x29\xb4\x72\x28\x32\x63\x30\x1c\x78\x46\x00\x9a\x8e\x8c\x26\xf8\x63\xa5\xd4\xdf\xc2\xdd\x98\x59\xb6\x55\x56\x15\x31\x58\x31\xa5\x60\x52\x11\x76\x4a\xfd\x50\xe1\xc9\x30\x1e\x7b\x77\xb0\xfb\x96\xf1\x94\x33\xb4\x77\x12\x48\xa7\x29\x08\x87\x86\x34\x23\x9a\xec\x07\x6a\x03\x53\x7d\x4e\xbe\xa8\xb9\x6b\xfd\x99\x6b\x44\x7f\xe4\x4c\x4a\xfd\x58\xd0\xa8\xeb\x5a\xab\x29\xe1\xc9\x12\x6f\x44\x99\x55\x57\xea\xa7\x52\x34\xdb\xc8\x68\xaf\x31\xd9\xd0\x89\x41\xe3\x42\x93\x59\x25\xfb\xb9\x00\x07\x26\xe1\x5a\x01\xc8\x8b\x8c\xe2\x03\xd7\xb0\x0e\x56\x62\x3e\xd1\x81\x8b\x76\x42\xd7\xef\x5b\x1b\x0d\xd7\x93\x97\xd4\xcf\x15\x7e\xcf\x44\xf2\x3c\xbf\x64\xf5\x8f\xd3\x4e\x2a\x5d\xeb\x2f\x57\xf2\xd9\xa5\xb5\x6d\x1a\x0e\x33\x9a\xea\x97\x2a\x79\x16\x04\xc7\x03\x3e\x95\xcb\x1d\x1e\x32\xb3\x0c\x7b\xd1\xe3\x7c\x38\x52\xdb\x9e\x37\x99\xae\x18\x76\x08\xbd\x2b\x9d\x8b\x90\x7f\xa6\xd5\x94\xd6\xb3\x47\x59\x8a\x0e\x2c\x62\xdd\x01\x8b\x07\x91\x56\xbf\x68\x54\x0c\xfc\xca\xe8\x95\xba\xdd\x2a\x65\x8f\x9d\x0f\x82\x9b\xcb\xc2\xb3\xe2\x9b\xeb\x75\xeb\x87\x57\x57\xaf\x66\x72\xa3\xd4\x8c\xd5\xea\xf2\xb6\x77\xf8\x54\xd7\x81\x63\x5c\xe3\x59\x65\xaa\x5d\xe0\x8e\x02\xaf\x48\x6b\xd9\x81\x7a\x31\xab\xdf\x7c\x08\x7e\xf8\x4c\x6d\xcf\x1b\x3c\x50\x47\x7b\xdb\x5a\xb1\x1c\xd7\xf8\x30\x0e\x2e\x95\x63\xfc\xb5\x2c\x33\x57\x7c\x4c\xe2\xc7\xac\xa9\xed\x7a\x4a\x4e\xbf\x4a\xcf\x30\xab\x03\xcb\xfd\x87\xe7\x85\xd0\xea\x32\xb3\x97\x5f\x57\xdb\x6c\x07\xbd\x6d\x2e\x92\x2f\xb1\xf5\x77\x6a\x41\xe1\x94\x8d\x77\x7f\x87\xff\xb9\x23\xef\xec\x4f\x1e\xa6\xbf\xac\xd5\x44\x77\x77\x65\x7e\xe5\x98\x46\x51\x8d\xa6\xac\x22\x9d\x78\x75\x7f\x97\xd1\x37\x10\xbf\xc3\x76\x0c\x5d\x29\x4d\xc0\xeb\x2b\x25\xdb\x64\x56\x9a\x3a\x7c\x2c\x88\xdf\x46\xf5\x6c\xf0\x63\x1b\x4d\x5d\xa5\x0d\xeb\xaf\xab\xd7\xc1\x49\xcc\xa2\x75\xef\xc6\x17\xf6\x4e\x97\x05\xcc\x8b\xba\x7e\x2d\x46\x3e\x3d\x83\x87\x37\x54\x5e\x86\x68\x63\xec\xf9\x5d\xbd\xef\xcd\xf4\x6d\x29\xa3\x90\xf7\x90\x17\x4a\xe6\x84\x37\x8b\x08\xc9\x0e\x6f\x8e\x63\xca\x2c\x5c\x5e\xd4\x8b\xfa\x2f\x00\x00\xff\xff\xc9\xf6\xa1\xae\xb2\x07\x00\x00" +var _flowtokenCreate_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\xcd\x6e\x23\x37\x13\xbc\xf3\x29\x0a\x3e\xec\x27\x1b\xf2\x08\x5f\x7e\x2e\x82\x37\xc0\xc6\x81\x81\x5c\x72\xd8\x18\x7b\xcd\xb6\xc8\x1e\x91\xd9\x11\x39\x20\x7b\x34\x10\x16\x7e\xf7\x80\xe4\x68\x34\x72\x60\x9f\xa2\x93\x87\xec\xae\xae\xaa\x2e\x7a\x73\x77\xa7\xd4\xb3\x75\x09\x12\xc9\x27\xd2\xe2\x82\x87\x4b\x20\x08\x1f\xfa\x8e\x84\xd1\x86\x98\x3f\x17\xf7\x62\x49\xa0\xc3\xd0\x19\xec\x18\x43\x62\xa3\x24\x20\xb1\x60\xe8\x41\x1e\xa4\x75\x18\xbc\x40\x42\x6e\x1e\x29\x1a\x18\xee\x43\x72\xc2\x06\x12\xbe\xb1\x4f\xf9\x8e\x7c\x10\xcb\x11\x91\x35\xbb\x23\xc7\x46\xa9\xdf\x5b\x90\x3f\x05\xcf\x48\xec\x4d\x5a\x16\xe7\x39\xf1\x7f\x09\x4f\x15\x91\x23\x3e\x4f\x7d\x6b\x25\x96\xe7\x2f\x8c\xae\xeb\xf0\xf7\x90\x64\x1e\x2e\x36\x24\x5e\x60\xe5\xf2\x2f\x34\x74\x52\x95\x58\x4a\xd8\x31\x7b\x95\x15\x50\x2a\xd7\x91\xb5\xeb\x1d\x7b\x01\x79\x03\x3e\xb8\xfc\x07\xf8\x98\x4f\x4a\x93\xf3\xc6\x69\x12\x4e\x6a\xb4\x4e\xdb\xc2\xee\x3c\x30\xab\xb4\xe7\x81\xcd\x64\xf0\x48\xa7\x35\x5c\xd6\x87\xd0\xb6\xf7\xda\x92\xf3\x48\x1c\x8f\x4e\x33\x46\xf2\x52\xa8\x1d\x82\x77\x12\x22\x46\x1b\xf2\x1a\x26\x40\xe7\xf7\xea\x42\xdf\xc9\x1a\x4e\xa0\xc9\x63\x24\xd1\xb6\xd2\x2a\x57\x89\x19\xa3\xe5\xc8\x0b\x02\xd0\x74\x60\xb4\x31\x1c\x1a\xa5\xfe\x14\xee\xa7\xca\xba\xad\xba\xaa\x84\xd1\x89\xad\x0d\xb3\x8a\xb8\x55\xea\xff\x0d\x9e\x2d\xe3\x69\xf0\x7b\xb7\xeb\x18\xcf\xa5\x42\x07\x2f\x91\x74\x76\x41\x38\xb6\xa4\x19\xc9\x96\x3c\x50\x17\x99\xcc\x29\xe7\xc2\x70\xdf\x85\x13\x1b\xa4\x70\xe0\x42\x4a\xfd\x50\xd1\xa8\xef\x3b\xa7\x29\xe3\xc9\x35\xde\x84\xb2\xe8\x6e\xd4\x8f\xb5\x69\xb1\x91\x29\x5e\x53\xb1\xa5\x23\x83\xa6\x85\xe6\xb0\x4a\xc9\x73\x05\x8e\x4c\xc2\x46\x01\x28\x8b\x4c\x12\x22\x1b\x38\x0f\x27\xa9\x7c\xd1\x9e\xab\x76\x42\x3f\xec\x3a\x97\x2c\x9b\x39\x4b\xea\xa7\x06\xbf\x15\x22\xc5\xcf\xaf\x45\xfd\xd3\xbc\x93\x46\x1b\xfd\xf5\x42\xbe\xa4\xd4\xb8\xb6\xe5\xb8\xa0\xa9\x7e\x6e\x72\x66\x41\xf0\x3c\xe2\x53\x3d\xdc\xe2\xb1\x30\x2b\xb0\x67\x3d\x3e\xc4\x03\x75\xdd\x69\x5d\xe8\x8a\x65\x8f\x38\xf8\x3a\xb9\x0a\xf9\x6b\x5e\x4d\x1d\xbd\x78\x94\xb5\x69\xcf\x22\xce\xef\x71\xf5\x20\xf2\xea\xaf\x06\xd5\x00\xbf\x0a\x7a\xa3\xee\x36\x4a\xb9\x43\x1f\xa2\xe0\xe6\xbc\xf0\xa2\xf8\xe6\x72\xdc\x85\xf1\xd5\xd1\x2b\x4f\x6e\x94\x5a\xb0\x5a\x9d\xdf\xf6\x16\x9f\x8c\x89\x9c\xd2\x2d\xbe\xab\x42\xb5\x8f\xdc\x53\xe4\x15\x69\x2d\x5b\xd0\x20\x76\xf5\x6b\x88\x31\x8c\x5f\xa8\x1b\x78\x8d\x47\xea\x69\xe7\x3a\x27\x8e\xd3\x2d\x3e\x4c\xc6\xe5\x76\x4c\xbf\x8e\x65\x91\x8a\x8f\x59\xfc\x54\x35\x8f\xbd\x9d\x8b\xf3\xaf\xd1\x0b\xcc\x66\xcf\xf2\xf0\xe1\xfb\x95\xd0\xe6\xec\xd9\xcb\x2f\xab\x4d\x89\x83\xde\xb4\x67\xc9\x9f\x67\xcc\x2b\x06\xc7\x92\xbb\x87\x7b\xfc\x2b\x1c\x65\x65\x7f\xf0\x38\xff\xc7\x5a\xcd\x6c\xb7\x17\xe2\x17\x8a\xd9\x89\x66\xca\x64\x93\xe8\xc8\xab\x87\xfb\x82\xbe\x86\x84\x2d\x36\xd3\xd5\x85\xd1\x0c\xfc\x8a\x92\xa6\x1e\x1f\x2b\xdc\x7f\xa3\x78\x61\xba\x6b\x33\x7c\xa3\x2d\xeb\x6f\xab\xe5\xc5\xac\xe0\x6a\xe4\xe0\xa7\x57\xf5\x9e\x9f\xe7\xf6\x97\x6b\x19\x73\xd8\x1f\xdf\xd0\x73\xf6\xca\xa5\x34\xf0\xbb\xca\xde\xb3\xee\x6d\xf2\x13\xf5\xf7\x90\xaf\xe4\x2f\x09\xaf\xaf\x8d\x91\x2d\xde\x34\x60\xae\xac\x5c\x5e\xd4\x8b\xfa\x27\x00\x00\xff\xff\x5c\xa7\x72\x22\x98\x07\x00\x00" func flowtokenCreate_forwarderCdcBytes() ([]byte, error) { return bindataRead( @@ -1840,7 +1838,7 @@ func flowtokenCreate_forwarderCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/create_forwarder.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x67, 0x7d, 0x4c, 0x99, 0x45, 0x71, 0x4b, 0xe1, 0xb8, 0x16, 0xb3, 0x3, 0x87, 0x19, 0x76, 0x31, 0x44, 0x73, 0x67, 0x49, 0x28, 0x11, 0xa3, 0x4b, 0xc2, 0x54, 0xed, 0x96, 0x8a, 0xed, 0x41, 0x47}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x49, 0xf4, 0x1, 0xf7, 0x6c, 0xc1, 0xed, 0xef, 0xac, 0x27, 0x13, 0x63, 0xf2, 0x10, 0x14, 0x8d, 0xc, 0x52, 0xf7, 0xb6, 0xd, 0x42, 0xcd, 0xec, 0x23, 0xa6, 0xc6, 0x82, 0xec, 0xcf, 0x34, 0xd1}} return a, nil } @@ -2644,26 +2642,6 @@ func idtablestakingDelegationDel_withdraw_unstaked_tokensCdc() (*asset, error) { return a, nil } -var _idtablestakingDelegationDelegator_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\xcb\xae\x9b\x30\x10\x86\xf7\x7e\x8a\x51\x16\x11\x48\x11\xec\xa3\x5c\xd4\x26\xaa\xd4\x4d\x1b\x29\x51\xf7\x83\x19\xc0\x8d\x63\x23\x7b\x10\xad\x12\xde\xbd\x82\x34\x04\x4e\x72\x6e\xde\x81\x67\xe6\xff\xfc\x8d\x3a\x95\xd6\x31\x7c\xd3\xb6\xfe\xbe\x3d\x60\xa2\x69\xcf\x78\x54\x26\x87\xcc\xd9\x13\x4c\x1e\x2f\x26\x62\xd0\x73\xb0\x47\x32\x83\xd2\xee\x7b\x22\x44\x1c\xc3\xa1\x50\x1e\xd8\xa1\xf1\x28\x59\x59\x03\x98\xa6\x1e\x10\xca\x2a\xd1\x4a\x42\x4a\x9a\x72\x64\xeb\x40\x62\x89\x89\xd2\x8a\xff\x02\x5b\x40\x03\x28\xa5\xad\x0c\x43\xad\xb8\x68\x27\xa1\x01\xfa\xa3\x3c\xb7\x54\x3f\x6c\x4a\xdb\xbe\xd5\x26\xbf\x49\xb2\x10\xc3\x98\xb3\x10\x00\x00\xa5\xa3\x12\x1d\x05\x28\x25\xcf\x01\x2b\x2e\x82\xaf\xd6\x39\x5b\xff\x42\x5d\xd1\x0c\x36\xb7\x54\x45\x3e\x84\xe9\x97\x6b\x66\x78\x6b\x6f\x8f\xca\x5a\x14\x8e\x3c\x5b\x87\x39\x45\x49\xd7\xbf\xe8\x66\x3d\x7a\x89\x7a\xac\x9f\xb5\x21\x17\xc2\xf4\x49\xcd\x08\x7f\x15\xb4\xe2\xe6\x4f\xe4\xdf\x67\xed\xaf\xd9\x3b\xe4\x22\x84\xe5\x12\x8c\xd2\x70\xb9\xf4\x88\xed\xe9\x18\xe5\xe0\x39\x51\x4e\xbc\x98\x9e\xdf\x8b\xdf\x75\x8b\x68\x56\x41\x7c\x5d\x49\x9c\x69\x5b\xff\xaf\xec\x8b\xc2\x75\x24\x0b\x92\xc7\x20\x84\xf5\x1a\x32\xd4\x9e\xfa\xf0\xf3\x08\xc3\x11\x57\xce\xf4\xbf\x9a\xbb\x47\x4d\x7c\x5f\xf7\x06\x4b\x58\x3e\x61\xbe\x49\x56\xde\x57\xf4\x19\xfa\x11\xc4\x07\x55\xf6\x3d\xa1\x78\xdd\x62\x67\xc5\x17\xe3\x80\xe1\x3b\x66\xe3\x35\xf0\x1c\xde\x32\xf9\x22\xb3\x11\xcd\xbf\x00\x00\x00\xff\xff\xe8\x8a\xcb\x49\x7c\x03\x00\x00" - -func idtablestakingDelegationDelegator_add_capabilityCdcBytes() ([]byte, error) { - return bindataRead( - _idtablestakingDelegationDelegator_add_capabilityCdc, - "idTableStaking/delegation/delegator_add_capability.cdc", - ) -} - -func idtablestakingDelegationDelegator_add_capabilityCdc() (*asset, error) { - bytes, err := idtablestakingDelegationDelegator_add_capabilityCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "idTableStaking/delegation/delegator_add_capability.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xc2, 0x21, 0x2e, 0xa2, 0xb9, 0x97, 0xd6, 0xee, 0x84, 0x4, 0xc0, 0x18, 0x6c, 0x12, 0xc9, 0x80, 0x6f, 0xd0, 0x3a, 0xc6, 0xcc, 0xa3, 0x72, 0x33, 0xa7, 0xe4, 0xde, 0xb6, 0x7e, 0xfd, 0x12}} - return a, nil -} - var _idtablestakingDelegationGet_delegator_committedCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\x03\x31\x10\x85\xef\xf9\x15\x8f\x9e\xba\x20\x2d\xa8\x78\x28\x78\x72\x29\xec\xb9\xed\x0f\x98\x66\x27\xdb\xd0\x64\xa6\x24\x53\x14\xc4\xff\x2e\xeb\xd2\x55\xd4\x53\xc8\x9b\xc7\xf7\xf8\x62\xbe\x68\x31\x6c\x93\xbe\x76\xed\x9e\x8e\x89\x77\x46\xe7\x28\x03\x42\xd1\x8c\xc5\xdf\xc3\xc2\xb9\xf5\x1a\xfb\x53\xac\xa8\xbe\xc4\x8b\xa1\xb0\x5d\x8b\x54\xd8\x89\x71\xa4\x44\xe2\x19\x1a\xe0\x35\xe7\x68\xc6\x3d\x4c\xcf\x2c\x75\xcc\x08\x3d\x27\x1e\xc8\xb4\x38\x47\xde\x73\xad\x4b\x4a\xa9\x41\xb8\x0a\x32\x45\x59\x8a\xf6\xdc\xb5\x1b\xec\xac\x44\x19\xee\xbe\xfb\x63\x78\xe8\xc4\x1e\xee\x9b\x0d\x0e\xdb\xf8\xf6\xf4\x88\x77\x07\x00\x89\x6d\xac\x75\x12\x14\xcf\xff\xa8\xac\xda\x99\x21\x41\xe7\x85\xe9\xfd\xb5\xf0\xe3\xd3\x7c\xc1\x27\xb9\x1b\x7f\x35\xa9\xbc\xdc\xd4\xdc\xc7\x67\x00\x00\x00\xff\xff\xf7\xec\x35\xd4\x41\x01\x00\x00" func idtablestakingDelegationGet_delegator_committedCdcBytes() ([]byte, error) { @@ -2884,26 +2862,6 @@ func idtablestakingDelegationRegister_many_delegatorsCdc() (*asset, error) { return a, nil } -var _idtablestakingNodeNode_add_capabilityCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6b\xc2\x40\x10\xc5\xef\xf9\x14\x83\x07\x49\x40\xe2\x5d\xfc\x43\x6b\x29\xf4\xd2\x0a\x4a\xef\x93\xcd\x68\xb6\xae\xbb\x61\x77\x82\x2d\xea\x77\x2f\xd9\x60\xdc\xa0\xb6\xce\x2d\xc9\xcc\x7b\xbf\x79\x13\xb9\x2b\x8d\x65\x78\x55\x66\xff\xf6\xb2\xc2\x4c\xd1\x92\x71\x2b\xf5\x06\xd6\xd6\xec\xa0\x77\xfd\xa1\x17\x05\x33\x2b\xb3\x25\x1d\xb4\xfa\xe7\x5e\x14\x0d\x87\xb0\x2a\xa4\x03\xb6\xa8\x1d\x0a\x96\x46\x03\xe6\xb9\x03\x84\xb2\xca\x94\x14\xa0\x4d\x4e\x20\xb0\xc4\x4c\x2a\xc9\x3f\xc0\x06\x50\x03\x0a\x61\x2a\xcd\xb0\x97\x5c\xd4\x22\xa8\x81\xbe\xa5\xe3\x1a\xe8\xdd\xe4\x9e\x81\x2c\x98\xec\x8b\x04\x47\x51\x28\x7f\x88\x22\x00\x80\xd2\x52\x89\x96\x62\x14\x82\x47\x80\x15\x17\xf1\xb3\xb1\xd6\xec\x3f\x51\x55\x34\x80\xf9\xd9\x52\x92\x4b\xa0\xff\xd4\x18\x26\xe7\xf1\xba\xe4\xba\xe6\xe0\xd4\xb1\xb1\xb8\xa1\x34\xf3\xf3\x63\xaf\x75\x9d\x47\x5a\x73\x7d\x94\x64\x91\x8d\x4d\xa0\x7f\xa7\xa3\x21\x9f\xc6\x75\x56\xa3\x1b\x79\x07\x4d\xcb\xc6\x77\x81\x5c\x24\x30\x99\x80\x96\x0a\x8e\xc7\x16\xaf\x2e\xcf\x27\x82\x55\xd2\x0d\xf1\xb8\x7f\xf8\x53\x77\xe1\x93\x3f\x4d\xef\x2d\x11\x76\x79\xf3\x59\x2a\x0a\x12\xdb\x38\x81\xd9\x0c\xd6\xa8\x1c\xb5\x10\x87\x0e\x8e\x25\xae\xac\x6e\x5f\x9d\x2e\x59\x2a\x62\x7f\xea\x46\x7b\x8e\x25\x4c\x6e\xc0\x9f\x93\x96\xce\x55\xf4\xf0\x1a\x1d\x84\x47\x13\x6d\x87\x92\x0b\xe4\x35\x90\xff\x49\x5d\xd1\xb5\xe8\xec\x31\xe8\xde\x83\xff\xb9\xe9\x25\xd5\x00\xa0\xc9\xea\xf4\x1b\x00\x00\xff\xff\x76\x70\x54\x96\x84\x03\x00\x00" - -func idtablestakingNodeNode_add_capabilityCdcBytes() ([]byte, error) { - return bindataRead( - _idtablestakingNodeNode_add_capabilityCdc, - "idTableStaking/node/node_add_capability.cdc", - ) -} - -func idtablestakingNodeNode_add_capabilityCdc() (*asset, error) { - bytes, err := idtablestakingNodeNode_add_capabilityCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "idTableStaking/node/node_add_capability.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xc4, 0x53, 0x4f, 0xc8, 0xa0, 0x67, 0x6e, 0x7a, 0xe2, 0x1e, 0x5c, 0xee, 0xad, 0xeb, 0x9e, 0x2e, 0x9f, 0x6f, 0x6c, 0xed, 0xcd, 0xad, 0xf3, 0xaa, 0x72, 0xd, 0x11, 0x47, 0xd4, 0x2a, 0xd0}} - return a, nil -} - var _idtablestakingNodeRegister_many_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\x4f\x6b\xdb\x4e\x10\xbd\xeb\x53\x0c\x3e\x04\x89\x5f\x2c\xff\x0a\xa5\x94\xc5\x69\x08\x29\x86\x90\xd2\x96\x24\x6d\x0e\xc6\x87\xb5\x76\x64\x6d\x23\xed\x98\xd5\x28\x6a\x28\xf9\xee\x65\x57\x8a\xf5\x17\x3a\x07\x81\xde\xbc\x99\xb7\x33\xf3\x74\x71\x24\xcb\xb0\xc9\xa9\xbe\xf9\xfc\x20\xf7\x39\xde\xb3\x7c\xd2\xe6\x00\xa9\xa5\x02\x16\xd3\xc4\x22\xe8\xd5\x3c\xd0\x13\x9a\x1e\xd5\xff\x77\x8c\xca\x1c\xf4\x3e\xc7\x01\xab\x8f\x2d\x82\x80\xad\x34\xa5\x4c\x58\x93\x09\x03\x00\x00\xad\x4a\x01\xdb\x7b\xb6\xda\x1c\x76\xe7\x1e\xb2\x94\xa3\x03\x7f\xdc\x18\xfe\xd8\x62\x06\xb9\x26\xeb\x1e\x74\xa5\x94\xc5\xb2\xc4\x49\x59\x47\xb9\xc5\x97\x49\xb6\x6c\xc6\x99\x4b\xc9\x82\x2a\xc3\x5e\x71\xa3\x7f\x7f\x78\xdf\xc2\x47\xc9\x59\xc3\x25\x2b\x0f\xf8\x5d\x72\xb6\x0b\x22\xf8\x13\x34\x59\x8b\x47\x69\x31\x94\x49\xc2\x02\x64\xc5\x59\xd8\x12\x23\x38\xbb\x4a\x12\xd7\xf2\x44\x76\xf1\x2c\x2d\x68\xb8\x80\xff\x3b\x28\x25\xeb\x55\x40\x9b\x46\xad\xcf\x77\x91\x23\x43\xfa\xb6\xe7\x3b\x4c\xe1\x02\x9c\x5e\x5c\x36\x4a\xf1\x9e\xac\xa5\x7a\xed\xd5\x07\x9b\x8e\x1f\x35\x67\xca\xca\x3a\x82\xb3\xd3\xa1\xe2\x9f\xb2\xca\xf9\x53\xe8\x2e\x23\x60\xd5\x36\x59\x9d\x04\x7c\x3a\x1a\x3c\xc0\xc5\xe5\x25\x1c\xa5\xd1\x49\xb8\xb8\xa6\x2a\x57\x60\x88\xa1\x11\x06\x8b\x29\x5a\x34\x09\x02\x13\x6c\xbe\x7c\x7b\x04\xdf\x63\x11\x4d\xc7\x60\xa7\x50\x5e\x53\x51\x68\x66\x54\xb0\x5e\x0e\x26\x8b\xeb\xf6\xc1\x61\x73\x0d\xf1\x76\x95\xad\xde\xcd\x74\x33\xa4\xbc\x41\xd1\xba\x46\x53\xd7\xc6\x52\xa9\xaf\xa4\xf0\x0e\x13\xb2\x2a\x9c\xcc\xa4\x95\x70\xce\xdb\xea\xf6\xd6\xfd\x70\xf6\x13\x8d\x09\x67\xf3\x13\x2b\x8a\x39\x77\xfe\xa3\xf4\x16\x5f\xc4\xc8\xb1\xb3\x15\x9d\x6d\x45\xdf\xc2\xb3\xdc\xd1\x8a\x05\xac\x97\x23\x68\x50\x32\x5a\xeb\x6a\x05\xce\xc0\x08\x9c\xa1\xdf\x2f\xd0\xfe\x17\x26\x3c\x20\x0d\xdc\x57\xca\x67\x0c\xd7\xcb\xee\x16\xe7\xc0\x24\xbc\x93\x47\xbd\x9d\xef\x35\xfc\x07\xef\x4e\xe8\x6b\xd0\x7c\x83\xd7\xbf\x01\x00\x00\xff\xff\x0d\x4e\x7d\xd1\x93\x04\x00\x00" func idtablestakingNodeRegister_many_nodesCdcBytes() ([]byte, error) { @@ -6489,7 +6447,6 @@ var _bindata = map[string]func() (*asset, error){ "idTableStaking/delegation/del_stake_unstaked.cdc": idtablestakingDelegationDel_stake_unstakedCdc, "idTableStaking/delegation/del_withdraw_reward_tokens.cdc": idtablestakingDelegationDel_withdraw_reward_tokensCdc, "idTableStaking/delegation/del_withdraw_unstaked_tokens.cdc": idtablestakingDelegationDel_withdraw_unstaked_tokensCdc, - "idTableStaking/delegation/delegator_add_capability.cdc": idtablestakingDelegationDelegator_add_capabilityCdc, "idTableStaking/delegation/get_delegator_committed.cdc": idtablestakingDelegationGet_delegator_committedCdc, "idTableStaking/delegation/get_delegator_info.cdc": idtablestakingDelegationGet_delegator_infoCdc, "idTableStaking/delegation/get_delegator_info_from_address.cdc": idtablestakingDelegationGet_delegator_info_from_addressCdc, @@ -6501,7 +6458,6 @@ var _bindata = map[string]func() (*asset, error){ "idTableStaking/delegation/get_delegator_unstaking_request.cdc": idtablestakingDelegationGet_delegator_unstaking_requestCdc, "idTableStaking/delegation/register_delegator.cdc": idtablestakingDelegationRegister_delegatorCdc, "idTableStaking/delegation/register_many_delegators.cdc": idtablestakingDelegationRegister_many_delegatorsCdc, - "idTableStaking/node/node_add_capability.cdc": idtablestakingNodeNode_add_capabilityCdc, "idTableStaking/node/register_many_nodes.cdc": idtablestakingNodeRegister_many_nodesCdc, "idTableStaking/node/register_node.cdc": idtablestakingNodeRegister_nodeCdc, "idTableStaking/node/request_unstake.cdc": idtablestakingNodeRequest_unstakeCdc, @@ -6861,7 +6817,6 @@ var _bintree = &bintree{nil, map[string]*bintree{ "del_stake_unstaked.cdc": {idtablestakingDelegationDel_stake_unstakedCdc, map[string]*bintree{}}, "del_withdraw_reward_tokens.cdc": {idtablestakingDelegationDel_withdraw_reward_tokensCdc, map[string]*bintree{}}, "del_withdraw_unstaked_tokens.cdc": {idtablestakingDelegationDel_withdraw_unstaked_tokensCdc, map[string]*bintree{}}, - "delegator_add_capability.cdc": {idtablestakingDelegationDelegator_add_capabilityCdc, map[string]*bintree{}}, "get_delegator_committed.cdc": {idtablestakingDelegationGet_delegator_committedCdc, map[string]*bintree{}}, "get_delegator_info.cdc": {idtablestakingDelegationGet_delegator_infoCdc, map[string]*bintree{}}, "get_delegator_info_from_address.cdc": {idtablestakingDelegationGet_delegator_info_from_addressCdc, map[string]*bintree{}}, @@ -6875,7 +6830,6 @@ var _bintree = &bintree{nil, map[string]*bintree{ "register_many_delegators.cdc": {idtablestakingDelegationRegister_many_delegatorsCdc, map[string]*bintree{}}, }}, "node": {nil, map[string]*bintree{ - "node_add_capability.cdc": {idtablestakingNodeNode_add_capabilityCdc, map[string]*bintree{}}, "register_many_nodes.cdc": {idtablestakingNodeRegister_many_nodesCdc, map[string]*bintree{}}, "register_node.cdc": {idtablestakingNodeRegister_nodeCdc, map[string]*bintree{}}, "request_unstake.cdc": {idtablestakingNodeRequest_unstakeCdc, map[string]*bintree{}}, diff --git a/transactions/flowToken/create_forwarder.cdc b/transactions/flowToken/create_forwarder.cdc index 4bb0a5c6f..c08b89cae 100644 --- a/transactions/flowToken/create_forwarder.cdc +++ b/transactions/flowToken/create_forwarder.cdc @@ -31,15 +31,14 @@ transaction(receiver: Address) { prepare(acct: auth(BorrowValue, Capabilities) &Account) { let recipient = getAccount(receiver) - .capabilities.get<&{FungibleToken.Receiver}>(/public/flowTokenReceiver)! + .capabilities.get<&{FungibleToken.Receiver}>(/public/flowTokenReceiver) let vault <- TokenForwarding.createNewForwarder(recipient: recipient) acct.storage.save(<-vault, to: /storage/flowTokenForwarder) - if let cap = acct.capabilities.get<&{FungibleToken.Receiver}>(/public/flowTokenReceiver) { - if cap.check() { - acct.capabilities.unpublish(/public/flowTokenReceiver) - } + let cap = acct.capabilities.get<&{FungibleToken.Receiver}>(/public/flowTokenReceiver) { + if cap.check() { + acct.capabilities.unpublish(/public/flowTokenReceiver) } let forwarderCap = acct.capabilities.storage.issue<&{FungibleToken.Receiver}>(/storage/flowTokenForwarder) diff --git a/transactions/idTableStaking/delegation/delegator_add_capability.cdc b/transactions/idTableStaking/delegation/delegator_add_capability.cdc deleted file mode 100644 index 4fe698825..000000000 --- a/transactions/idTableStaking/delegation/delegator_add_capability.cdc +++ /dev/null @@ -1,25 +0,0 @@ -import FlowIDTableStaking from "FlowIDTableStaking" -import FlowToken from "FlowToken" - -// This transaction adds a public delegator capability to an account with -// an existing NodeDelegator object - -transaction { - - prepare(acct: auth(BorrowValue, Capabilities) &Account) { - - if acct.storage.borrow(from: FlowIDTableStaking.DelegatorStoragePath) == nil || - acct.capabilities.get<&{FlowIDTableStaking.NodeDelegatorPublic}>(/public/flowStakingDelegator)?.check() ?? false - { - return - } - - let delegatorCap = acct.capabilities.storage.issue<&{FlowIDTableStaking.NodeDelegatorPublic}>( - FlowIDTableStaking.DelegatorStoragePath - ) - acct.capabilities.publish( - delegatorCap, - at: /public/flowStakingDelegator - ) - } -} \ No newline at end of file diff --git a/transactions/idTableStaking/node/node_add_capability.cdc b/transactions/idTableStaking/node/node_add_capability.cdc deleted file mode 100644 index 8f5c67819..000000000 --- a/transactions/idTableStaking/node/node_add_capability.cdc +++ /dev/null @@ -1,26 +0,0 @@ -import FlowIDTableStaking from "FlowIDTableStaking" -import FlowToken from "FlowToken" - -// This transaction adds a public node capability to an account with -// an existing NodeStaker object - -transaction { - - prepare(acct: auth(BorrowValue, Capabilities) &Account) { - - if acct.storage.borrow(from: FlowIDTableStaking.NodeStakerStoragePath) == nil || - acct.capabilities.get<&{FlowIDTableStaking.NodeStakerPublic}>(FlowIDTableStaking.NodeStakerPublicPath)?.check() ?? false - { - return - } - - let nodeStakerCap = acct.capabilities.storage.issue<&{FlowIDTableStaking.NodeStakerPublic}>( - FlowIDTableStaking.NodeStakerStoragePath - ) - - acct.capabilities.publish( - nodeStakerCap, - at: FlowIDTableStaking.NodeStakerPublicPath - ) - } -} \ No newline at end of file From d289b8429783a3581aef7d426f96a85478cc6549 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Mon, 29 Apr 2024 14:22:23 -0500 Subject: [PATCH 127/160] update nft imports and remove unnecessary Burner import from FlowToken --- contracts/FlowToken.cdc | 1 - lib/go/contracts/go.mod | 2 +- lib/go/contracts/go.sum | 2 ++ lib/go/templates/go.mod | 2 +- lib/go/templates/go.sum | 2 ++ 5 files changed, 6 insertions(+), 3 deletions(-) diff --git a/contracts/FlowToken.cdc b/contracts/FlowToken.cdc index e6051d062..d1a1f640e 100644 --- a/contracts/FlowToken.cdc +++ b/contracts/FlowToken.cdc @@ -1,7 +1,6 @@ import FungibleToken from "FungibleToken" import MetadataViews from "MetadataViews" import FungibleTokenMetadataViews from "FungibleTokenMetadataViews" -import Burner from "Burner" access(all) contract FlowToken: FungibleToken { diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 01fac8644..8cfcc8d98 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -6,7 +6,7 @@ require ( github.com/kevinburke/go-bindata v3.24.0+incompatible github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9 github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240424211859-3ff4c0fe2a1e - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240424144730-4a6f42d2a372 + github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240429184308-40c3de711140 github.com/stretchr/testify v1.8.4 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 17d75a87d..d1b48fe2e 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1627,6 +1627,8 @@ github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSE github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240424144730-4a6f42d2a372 h1:jVrUFQ5Fn3gBKZ3Q6OVhceF2vKiHg1la6g3DuRKvdoo= github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240424144730-4a6f42d2a372/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240429184308-40c3de711140 h1:oTj4RGgfuJSSBE1aDVrlh6avxKBMraucpNtRg0K+yhg= +github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240429184308-40c3de711140/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8 h1:BqgQgXktxVFv8erjCaSHpL0CP+pa5M8g655GyF/t4JM= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= diff --git a/lib/go/templates/go.mod b/lib/go/templates/go.mod index b0822826f..49864328a 100644 --- a/lib/go/templates/go.mod +++ b/lib/go/templates/go.mod @@ -7,7 +7,7 @@ require ( github.com/onflow/cadence v1.0.0-M3 github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240424211859-3ff4c0fe2a1e github.com/onflow/flow-go-sdk v1.0.0-M1 - github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240424144730-4a6f42d2a372 + github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240429184308-40c3de711140 github.com/psiemens/sconfig v0.1.0 github.com/spf13/cobra v1.5.0 ) diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index 3c3fd7e68..6f93689f6 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -1623,6 +1623,8 @@ github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSE github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240424144730-4a6f42d2a372 h1:zjEANfSuCctAQ79IotaP6+v0jZiJsDAlikcZC++BTpc= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240424144730-4a6f42d2a372/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= +github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240429184308-40c3de711140 h1:7NwSIG4SEdm+96gr+Aaqx291jZ/Bqkxk/ghVnens9CU= +github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240429184308-40c3de711140/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= From fed5e86a5c67f8fe7b89e0cb728dc8ee7c127124 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 7 May 2024 11:16:50 -0500 Subject: [PATCH 128/160] update dependencies --- lib/go/contracts/go.mod | 4 ++-- lib/go/contracts/go.sum | 12 ++++-------- lib/go/templates/go.mod | 4 ++-- lib/go/templates/go.sum | 12 ++++-------- lib/go/test/flow_epoch_test.go | 4 ++-- lib/go/test/staking_test_helpers.go | 10 +++++----- 6 files changed, 19 insertions(+), 27 deletions(-) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index 8cfcc8d98..ee7e49010 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -5,8 +5,8 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.24.0+incompatible github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9 - github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240424211859-3ff4c0fe2a1e - github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240429184308-40c3de711140 + github.com/onflow/flow-ft/lib/go/contracts v1.0.0 + github.com/onflow/flow-nft/lib/go/contracts v1.2.0 github.com/stretchr/testify v1.8.4 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index d1b48fe2e..44492fede 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1617,18 +1617,14 @@ github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9 h1:rTemckPWir+N/m1GyhT8jdiETj0RiWc8FiwItE2Nxyg= github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9/go.mod h1:PZrrCsllIt/Bu4HlJtisXfvDrOt1aLKU5R70vsZHKRc= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240424142855-b518689a350b h1:HutxHvyc06UbJncEUieAwt7Nf1lG5uiIGVok6w031LM= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240424142855-b518689a350b/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240424211859-3ff4c0fe2a1e h1:2LO6Rtmz2PVfH+ZXnMwvTwVeIz3PCy0fs3lQraqog14= -github.com/onflow/flow-ft/lib/go/contracts v0.7.1-0.20240424211859-3ff4c0fe2a1e/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= +github.com/onflow/flow-ft/lib/go/contracts v1.0.0 h1:mToacZ5NWqtlWwk/7RgIl/jeKB/Sy/tIXdw90yKHcV0= +github.com/onflow/flow-ft/lib/go/contracts v1.0.0/go.mod h1:PwsL8fC81cjnUnTfmyL/HOIyHnyaw/JA474Wfj2tl6A= github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876 h1:fZj39XxayIL7uvKvonNI3MtQM3wsFJ8oRl/XW/0rn7A= github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240424144730-4a6f42d2a372 h1:jVrUFQ5Fn3gBKZ3Q6OVhceF2vKiHg1la6g3DuRKvdoo= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240424144730-4a6f42d2a372/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240429184308-40c3de711140 h1:oTj4RGgfuJSSBE1aDVrlh6avxKBMraucpNtRg0K+yhg= -github.com/onflow/flow-nft/lib/go/contracts v1.1.1-0.20240429184308-40c3de711140/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= +github.com/onflow/flow-nft/lib/go/contracts v1.2.0 h1:TFH7GCJKcGi0+x14SCvF7Gbnxp68gJOGNV8PSIAM2J0= +github.com/onflow/flow-nft/lib/go/contracts v1.2.0/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8 h1:BqgQgXktxVFv8erjCaSHpL0CP+pa5M8g655GyF/t4JM= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= diff --git a/lib/go/templates/go.mod b/lib/go/templates/go.mod index 49864328a..5a11266bd 100644 --- a/lib/go/templates/go.mod +++ b/lib/go/templates/go.mod @@ -5,9 +5,9 @@ go 1.18 require ( github.com/kevinburke/go-bindata v3.24.0+incompatible github.com/onflow/cadence v1.0.0-M3 - github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240424211859-3ff4c0fe2a1e + github.com/onflow/flow-ft/lib/go/templates v1.0.0 github.com/onflow/flow-go-sdk v1.0.0-M1 - github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240429184308-40c3de711140 + github.com/onflow/flow-nft/lib/go/templates v1.2.0 github.com/psiemens/sconfig v0.1.0 github.com/spf13/cobra v1.5.0 ) diff --git a/lib/go/templates/go.sum b/lib/go/templates/go.sum index 6f93689f6..d3059cac7 100644 --- a/lib/go/templates/go.sum +++ b/lib/go/templates/go.sum @@ -1615,16 +1615,12 @@ github.com/onflow/cadence v1.0.0-M3 h1:bSydJise9pU4aALloUKv/EWmDLITRlbBpuG8OPByd github.com/onflow/cadence v1.0.0-M3/go.mod h1:odXGZZ/wGNA5mwT8bC9v8u8EXACHllB2ABSZK65TGL8= github.com/onflow/crypto v0.25.0 h1:BeWbLsh3ZD13Ej+Uky6kg1PL1ZIVBDVX+2MVBNwqddg= github.com/onflow/crypto v0.25.0/go.mod h1:C8FbaX0x8y+FxWjbkHy0Q4EASCDR9bSPWZqlpCLYyVI= -github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240424142855-b518689a350b h1:Z/Fn+7ysdfuv8yKzhPlZ+HrADm3zaUi+zb6BP4JWLfU= -github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240424142855-b518689a350b/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= -github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240424211859-3ff4c0fe2a1e h1:jl7SYAui/gYRmBofrY//Ln8ixRJwvLzvwLstNfRKmWY= -github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240424211859-3ff4c0fe2a1e/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= +github.com/onflow/flow-ft/lib/go/templates v1.0.0 h1:6cMS/lUJJ17HjKBfMO/eh0GGvnpElPgBXx7h5aoWJhs= +github.com/onflow/flow-ft/lib/go/templates v1.0.0/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= -github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240424144730-4a6f42d2a372 h1:zjEANfSuCctAQ79IotaP6+v0jZiJsDAlikcZC++BTpc= -github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240424144730-4a6f42d2a372/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= -github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240429184308-40c3de711140 h1:7NwSIG4SEdm+96gr+Aaqx291jZ/Bqkxk/ghVnens9CU= -github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240429184308-40c3de711140/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= +github.com/onflow/flow-nft/lib/go/templates v1.2.0 h1:JSQyh9rg0RC+D1930BiRXN8lrtMs+ubVMK6aQPon6Yc= +github.com/onflow/flow-nft/lib/go/templates v1.2.0/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2/go.mod h1:NA2pX2nw8zuaxfKphhKsk00kWLwfd+tv8mS23YXO4Sk= github.com/onflow/sdks v0.5.1-0.20230912225508-b35402f12bba/go.mod h1:F0dj0EyHC55kknLkeD10js4mo14yTdMotnWMslPirrU= diff --git a/lib/go/test/flow_epoch_test.go b/lib/go/test/flow_epoch_test.go index 779a203d3..ccc6e126f 100644 --- a/lib/go/test/flow_epoch_test.go +++ b/lib/go/test/flow_epoch_test.go @@ -486,7 +486,7 @@ func TestEpochTiming(t *testing.T) { t.Run("should be able to observe end times for current epoch", func(t *testing.T) { gotEndTimeCdc := executeScriptAndCheck(t, b, templates.GenerateGetTargetEndTimeForEpochScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt64(startEpochCounter))}) - gotEndTime := gotEndTimeCdc.ToGoValue().(uint64) + gotEndTime := uint64(gotEndTimeCdc.(cadence.UInt64)) expectedEndTime := expectedTargetEndTime(epochTimingConfigResult, startEpochCounter) assert.Equal(t, expectedEndTime, gotEndTime) @@ -500,7 +500,7 @@ func TestEpochTiming(t *testing.T) { var lastEndTime uint64 for _, epoch := range []uint64{1, 2, 3, 10, 100, 1000, 10_000} { gotEndTimeCdc := executeScriptAndCheck(t, b, templates.GenerateGetTargetEndTimeForEpochScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt64(epoch))}) - gotEndTime := gotEndTimeCdc.ToGoValue().(uint64) + gotEndTime := uint64(gotEndTimeCdc.(cadence.UInt64)) expectedEndTime := expectedTargetEndTime(epochTimingConfigResult, epoch) assert.Equal(t, expectedEndTime, gotEndTime) diff --git a/lib/go/test/staking_test_helpers.go b/lib/go/test/staking_test_helpers.go index 2769b5626..632dbad18 100644 --- a/lib/go/test/staking_test_helpers.go +++ b/lib/go/test/staking_test_helpers.go @@ -39,19 +39,19 @@ type EpochTotalRewardsPaid struct { type EpochTotalRewardsPaidEvent flow.Event func (evt EpochTotalRewardsPaidEvent) Total() cadence.UFix64 { - return evt.Value.Fields[0].(cadence.UFix64) + return cadence.SearchFieldByName(evt.Value, "total").(cadence.UFix64) } func (evt EpochTotalRewardsPaidEvent) FromFees() cadence.UFix64 { - return evt.Value.Fields[1].(cadence.UFix64) + return cadence.SearchFieldByName(evt.Value, "fromFees").(cadence.UFix64) } func (evt EpochTotalRewardsPaidEvent) Minted() cadence.UFix64 { - return evt.Value.Fields[2].(cadence.UFix64) + return cadence.SearchFieldByName(evt.Value, "minted").(cadence.UFix64) } func (evt EpochTotalRewardsPaidEvent) FeesBurned() cadence.UFix64 { - return evt.Value.Fields[3].(cadence.UFix64) + return cadence.SearchFieldByName(evt.Value, "feesBurned").(cadence.UFix64) } func stubInterpreter() *interpreter.Interpreter { @@ -150,7 +150,7 @@ func deployStakingContract( for _, result := range results { for _, event := range result.Events { if event.Type == flow.EventAccountCreated { - idTableAddress = flow.Address(event.Value.Fields[0].(cadence.Address)) + idTableAddress = flow.Address(cadence.SearchFieldByName(event.Value, "address").(cadence.Address)) } } } From 46a4cac213e7370276cf913fc74777e153c9afb0 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Thu, 9 May 2024 10:46:51 -0500 Subject: [PATCH 129/160] address PR comments and add entitlements to LockedTokens.TokenManager --- contracts/FlowContractAudits.cdc | 231 ------------------ contracts/FlowServiceAccount.cdc | 16 +- contracts/FlowToken.cdc | 18 +- lib/go/contracts/contracts.go | 1 + lib/go/templates/internal/assets/assets.go | 42 ++-- .../admin/admin_create_shared_accounts.cdc | 12 +- .../admin/admin_remove_delegator.cdc | 2 +- ...tody_create_account_with_lease_account.cdc | 8 +- .../custody_create_only_lease_account.cdc | 8 +- .../custody_create_only_shared_account.cdc | 8 +- .../admin/custody_create_shared_accounts.cdc | 8 +- .../create_new_tokenholder_acct.cdc | 4 +- 12 files changed, 74 insertions(+), 284 deletions(-) delete mode 100644 contracts/FlowContractAudits.cdc diff --git a/contracts/FlowContractAudits.cdc b/contracts/FlowContractAudits.cdc deleted file mode 100644 index eab49da7f..000000000 --- a/contracts/FlowContractAudits.cdc +++ /dev/null @@ -1,231 +0,0 @@ -/// This contract was used to manage audits and approvals -/// for deployment to Flow mainnet before permissionless deployment -/// was enabled in June 2022. It is no longer used, but is still -/// deployed to the Service Account, so it is documented here -/// for reference - -access(all) contract FlowContractAudits { - - // Event that is emitted when a new Auditor resource is created - access(all) event AuditorCreated() - - // Event that is emitted when a new contract audit voucher is created - access(all) event VoucherCreated(address: Address?, recurrent: Bool, expiryBlockHeight: UInt64?, codeHash: String) - - // Event that is emitted when a contract audit voucher is used - access(all) event VoucherUsed(address: Address, key: String, recurrent: Bool, expiryBlockHeight: UInt64?) - - // Event that is emitted when a contract audit voucher is removed - access(all) event VoucherRemoved(key: String, recurrent: Bool, expiryBlockHeight: UInt64?) - - // Dictionary of all vouchers - access(contract) var vouchers: {String: AuditVoucher} - - // The storage path for the admin resource - access(all) let AdminStoragePath: StoragePath - - // The storage Path for auditors' AuditorProxy - access(all) let AuditorProxyStoragePath: StoragePath - - // The public path for auditors' AuditorProxy capability - access(all) let AuditorProxyPublicPath: PublicPath - - // Single audit voucher that is used for contract deployment - access(all) struct AuditVoucher { - - // Address of the account the voucher is intended for - // If nil, the contract can be deployed to any account - access(all) let address: Address? - - // If false, the voucher will be removed after first use - access(all) let recurrent: Bool - - // If non-nil, the voucher won't be valid after the expiry block height - access(all) let expiryBlockHeight: UInt64? - - // Hash of contract code - access(all) let codeHash: String - - init(address: Address?, recurrent: Bool, expiryBlockHeight: UInt64?, codeHash: String) { - self.address = address - self.recurrent = recurrent - self.expiryBlockHeight = expiryBlockHeight - self.codeHash = codeHash - } - } - - // Returns all current vouchers - access(all) fun getAllVouchers(): {String: AuditVoucher} { - return self.vouchers - } - - // Get the associated dictionary key for given address and codeHash - access(all) fun generateVoucherKey(address: Address?, codeHash: String): String { - if address != nil { - return address!.toString().concat("-").concat(codeHash) - } - return "any-".concat(codeHash) - } - - access(all) fun hashContractCode(_ code: String): String { - return String.encodeHex(HashAlgorithm.SHA3_256.hash(code.utf8)) - } - - // Auditors can create new vouchers and remove them - access(all) resource Auditor { - - // Create new voucher with contract code - access(all) fun addVoucher(address: Address?, recurrent: Bool, expiryOffset: UInt64?, code: String) { - let codeHash = FlowContractAudits.hashContractCode(code) - self.addVoucherHashed(address: address, recurrent: recurrent, expiryOffset: expiryOffset, codeHash: codeHash) - } - - // Create new voucher with hashed contract code - access(all) fun addVoucherHashed(address: Address?, recurrent: Bool, expiryOffset: UInt64?, codeHash: String) { - - // calculate expiry block height based on expiryOffset - var expiryBlockHeight: UInt64? = nil - if expiryOffset != nil { - expiryBlockHeight = getCurrentBlock().height + expiryOffset! - } - - let key = FlowContractAudits.generateVoucherKey(address: address, codeHash: codeHash) - - // if a voucher with the same key exists, remove it first - FlowContractAudits.deleteVoucher(key) - - let voucher = AuditVoucher(address: address, recurrent: recurrent, expiryBlockHeight: expiryBlockHeight, codeHash: codeHash) - - FlowContractAudits.vouchers.insert(key: key, voucher) - - emit VoucherCreated(address: address, recurrent: recurrent, expiryBlockHeight: expiryBlockHeight, codeHash: codeHash) - } - - // Remove a voucher with given key - access(all) fun deleteVoucher(key: String) { - FlowContractAudits.deleteVoucher(key) - } - } - - // Used by admin to set the Auditor capability - access(all) resource interface AuditorProxyPublic { - access(all) fun setAuditorCapability(_ cap: Capability<&Auditor>) - } - - // The auditor account will have audit access through AuditorProxy - // This enables the admin account to revoke access - // See https://docs.onflow.org/cadence/design-patterns/#capability-revocation - access(all) resource AuditorProxy: AuditorProxyPublic { - access(self) var auditorCapability: Capability<&Auditor>? - - access(all) fun setAuditorCapability(_ cap: Capability<&Auditor>) { - self.auditorCapability = cap - } - - access(all) fun addVoucher(address: Address?, recurrent: Bool, expiryOffset: UInt64?, code: String) { - self.auditorCapability!.borrow()!.addVoucher(address: address, recurrent: recurrent, expiryOffset: expiryOffset, code: code) - } - - access(all) fun addVoucherHashed(address: Address?, recurrent: Bool, expiryOffset: UInt64?, codeHash: String) { - self.auditorCapability!.borrow()!.addVoucherHashed(address: address, recurrent: recurrent, expiryOffset: expiryOffset, codeHash: codeHash) - } - - access(all) fun deleteVoucher(key: String) { - self.auditorCapability!.borrow()!.deleteVoucher(key: key) - } - - init() { - self.auditorCapability = nil - } - - } - - // Can be called by anyone but needs a capability to function - access(all) fun createAuditorProxy(): @AuditorProxy { - return <- create AuditorProxy() - } - - access(all) resource Administrator { - - // Creates new Auditor - access(all) fun createNewAuditor(): @Auditor { - emit AuditorCreated() - return <-create Auditor() - } - - // Checks all vouchers and removes expired ones - access(all) fun cleanupExpiredVouchers() { - for key in FlowContractAudits.vouchers.keys { - let v = FlowContractAudits.vouchers[key]! - if v.expiryBlockHeight != nil { - if getCurrentBlock().height > v.expiryBlockHeight! { - FlowContractAudits.deleteVoucher(key) - } - } - } - } - - // For testing - access(all) fun useVoucherForDeploy(address: Address, code: String): Bool { - return FlowContractAudits.useVoucherForDeploy(address: address, code: code) - } - } - - // This function will be called by the FVM on contract deploy/update - access(contract) fun useVoucherForDeploy(address: Address, code: String): Bool { - let codeHash = FlowContractAudits.hashContractCode(code) - var key = FlowContractAudits.generateVoucherKey(address: address, codeHash: codeHash) - - // first check for voucher based on target account - // if not found check for any account - if !FlowContractAudits.vouchers.containsKey(key) { - key = FlowContractAudits.generateVoucherKey(address: nil, codeHash: codeHash) - if !FlowContractAudits.vouchers.containsKey(key) { - return false - } - } - - let v = FlowContractAudits.vouchers[key]! - - // ensure contract code matches the voucher - if v.codeHash != codeHash { - return false - } - - // if expiryBlockHeight is set, check the current block height - // and remove/expire the voucher if not within the acceptable range - if v.expiryBlockHeight != nil { - if getCurrentBlock().height > v.expiryBlockHeight! { - FlowContractAudits.deleteVoucher(key) - return false - } - } - - // remove the voucher if not recurrent - if !v.recurrent { - FlowContractAudits.deleteVoucher(key) - } - - emit VoucherUsed(address: address, key: key, recurrent: v.recurrent, expiryBlockHeight: v.expiryBlockHeight) - return true - } - - // Helper function to remove a voucher with given key - access(contract) fun deleteVoucher(_ key: String) { - let v = FlowContractAudits.vouchers.remove(key: key) - if v != nil { - emit VoucherRemoved(key: key, recurrent: v!.recurrent, expiryBlockHeight: v!.expiryBlockHeight) - } - } - - init() { - self.vouchers = {} - - self.AdminStoragePath = /storage/flowContractAuditVouchersAdmin - self.AuditorProxyStoragePath = /storage/flowContractAuditVouchersAuditorProxy - self.AuditorProxyPublicPath = /public/flowContractAuditVouchersAuditorProxy - - let admin <- create Administrator() - self.account.save(<-admin, to: self.AdminStoragePath) - } -} \ No newline at end of file diff --git a/contracts/FlowServiceAccount.cdc b/contracts/FlowServiceAccount.cdc index 23e8530ae..c2506047b 100644 --- a/contracts/FlowServiceAccount.cdc +++ b/contracts/FlowServiceAccount.cdc @@ -43,7 +43,7 @@ access(all) contract FlowServiceAccount { /// Get the default token balance on an account /// /// Returns 0 if the account has no default balance - access(all) fun defaultTokenBalance(_ acct: &Account): UFix64 { + access(all) view fun defaultTokenBalance(_ acct: &Account): UFix64 { var balance = 0.0 if let balanceRef = acct.capabilities.borrow<&{FungibleToken.Balance}>(/public/flowTokenBalance) { balance = balanceRef.balance @@ -53,7 +53,7 @@ access(all) contract FlowServiceAccount { } /// Return a reference to the default token vault on an account - access(all) fun defaultTokenVault(_ acct: auth(BorrowValue) &Account): auth(FungibleToken.Withdraw) &FlowToken.Vault { + access(all) view fun defaultTokenVault(_ acct: auth(BorrowValue) &Account): auth(FungibleToken.Withdraw) &FlowToken.Vault { return acct.storage.borrow(from: /storage/flowTokenVault) ?? panic("Unable to borrow reference to the default token vault") } @@ -107,7 +107,7 @@ access(all) contract FlowServiceAccount { } /// Returns true if the given address is permitted to create accounts, false otherwise - access(all) fun isAccountCreator(_ address: Address): Bool { + access(all) view fun isAccountCreator(_ address: Address): Bool { // If account creation is not restricted, then anyone can create an account if !self.isAccountCreationRestricted() { return true @@ -116,30 +116,30 @@ access(all) contract FlowServiceAccount { } /// Is true if new acconts can only be created by approved accounts `self.accountCreators` - access(all) fun isAccountCreationRestricted(): Bool { + access(all) view fun isAccountCreationRestricted(): Bool { return self.account.storage.copy(from: /storage/isAccountCreationRestricted) ?? false } // Authorization resource to change the fields of the contract /// Returns all addresses permitted to create accounts - access(all) fun getAccountCreators(): [Address] { + access(all) view fun getAccountCreators(): [Address] { return self.accountCreators.keys } // Gets Execution Effort Weights from the service account's storage - access(all) fun getExecutionEffortWeights(): {UInt64: UInt64} { + access(all) view fun getExecutionEffortWeights(): {UInt64: UInt64} { return self.account.storage.copy<{UInt64: UInt64}>(from: /storage/executionEffortWeights) ?? panic("execution effort weights not set yet") } // Gets Execution Memory Weights from the service account's storage - access(all) fun getExecutionMemoryWeights(): {UInt64: UInt64} { + access(all) view fun getExecutionMemoryWeights(): {UInt64: UInt64} { return self.account.storage.copy<{UInt64: UInt64}>(from: /storage/executionMemoryWeights) ?? panic("execution memory weights not set yet") } // Gets Execution Memory Limit from the service account's storage - access(all) fun getExecutionMemoryLimit(): UInt64 { + access(all) view fun getExecutionMemoryLimit(): UInt64 { return self.account.storage.copy(from: /storage/executionMemoryLimit) ?? panic("execution memory limit not set yet") } diff --git a/contracts/FlowToken.cdc b/contracts/FlowToken.cdc index d1a1f640e..b444a0dc6 100644 --- a/contracts/FlowToken.cdc +++ b/contracts/FlowToken.cdc @@ -77,6 +77,14 @@ access(all) contract FlowToken: FungibleToken { // access(FungibleToken.Withdraw) fun withdraw(amount: UFix64): @{FungibleToken.Vault} { self.balance = self.balance - amount + + // If the owner is the staking account, do not emit the contract defined events + // this is to help with the performance of the epoch transition operations + // Either way, event listeners should be paying attention to the + // FungibleToken.Withdrawn events anyway because those contain + // much more comprehensive metadata + // Additionally, these events will eventually be removed from this contract completely + // in favor of the FungibleToken events if let address = self.owner?.address { if address != 0xf8d6e0586b0a20c7 && address != 0xf4527793ee68aede && @@ -101,6 +109,14 @@ access(all) contract FlowToken: FungibleToken { access(all) fun deposit(from: @{FungibleToken.Vault}) { let vault <- from as! @FlowToken.Vault self.balance = self.balance + vault.balance + + // If the owner is the staking account, do not emit the contract defined events + // this is to help with the performance of the epoch transition operations + // Either way, event listeners should be paying attention to the + // FungibleToken.Deposited events anyway because those contain + // much more comprehensive metadata + // Additionally, these events will eventually be removed from this contract completely + // in favor of the FungibleToken events if let address = self.owner?.address { if address != 0xf8d6e0586b0a20c7 && address != 0xf4527793ee68aede && @@ -249,7 +265,7 @@ access(all) contract FlowToken: FungibleToken { } /// Gets the Flow Logo XML URI from storage - access(all) fun getLogoURI(): String { + access(all) view fun getLogoURI(): String { return FlowToken.account.storage.copy(from: /storage/flowTokenLogoURI) ?? "" } diff --git a/lib/go/contracts/contracts.go b/lib/go/contracts/contracts.go index eca5d7d72..995b235a8 100644 --- a/lib/go/contracts/contracts.go +++ b/lib/go/contracts/contracts.go @@ -285,6 +285,7 @@ func TESTFlowStakingCollection( code := assets.MustAssetString(flowStakingCollectionFilename) code = strings.ReplaceAll(code, placeholderFungibleTokenAddress, withHexPrefix(fungibleTokenAddress)) + code = strings.ReplaceAll(code, placeholderBurnerAddress, withHexPrefix(storageFeesAddress)) code = strings.ReplaceAll(code, placeholderFlowTokenAddress, withHexPrefix(flowTokenAddress)) code = strings.ReplaceAll(code, placeholderIDTableAddress, withHexPrefix(idTableAddress)) code = strings.ReplaceAll(code, placeholderStakingProxyAddress, withHexPrefix(stakingProxyAddress)) diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 0c735c133..055d4cb29 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -168,16 +168,16 @@ // idTableStaking/scripts/get_total_staked.cdc (463B) // idTableStaking/scripts/get_total_staked_by_type.cdc (256B) // idTableStaking/scripts/get_weekly_payout.cdc (202B) -// lockedTokens/admin/admin_create_shared_accounts.cdc (3.705kB) +// lockedTokens/admin/admin_create_shared_accounts.cdc (4.017kB) // lockedTokens/admin/admin_deploy_contract.cdc (463B) // lockedTokens/admin/admin_deposit_account_creator.cdc (880B) -// lockedTokens/admin/admin_remove_delegator.cdc (463B) +// lockedTokens/admin/admin_remove_delegator.cdc (492B) // lockedTokens/admin/check_main_registration.cdc (949B) // lockedTokens/admin/check_shared_registration.cdc (633B) -// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.469kB) -// lockedTokens/admin/custody_create_only_lease_account.cdc (3.369kB) -// lockedTokens/admin/custody_create_only_shared_account.cdc (3.604kB) -// lockedTokens/admin/custody_create_shared_accounts.cdc (3.74kB) +// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.553kB) +// lockedTokens/admin/custody_create_only_lease_account.cdc (3.453kB) +// lockedTokens/admin/custody_create_only_shared_account.cdc (3.688kB) +// lockedTokens/admin/custody_create_shared_accounts.cdc (3.824kB) // lockedTokens/admin/custody_setup_account_creator.cdc (758B) // lockedTokens/admin/deposit_locked_tokens.cdc (1.678kB) // lockedTokens/admin/unlock_tokens.cdc (593B) @@ -245,7 +245,7 @@ // randomBeaconHistory/scripts/get_source_of_randomness_page.cdc (326B) // stakingCollection/close_stake.cdc (906B) // stakingCollection/create_machine_account.cdc (1.702kB) -// stakingCollection/create_new_tokenholder_acct.cdc (3.616kB) +// stakingCollection/create_new_tokenholder_acct.cdc (3.667kB) // stakingCollection/deploy_collection_contract.cdc (312B) // stakingCollection/register_delegator.cdc (823B) // stakingCollection/register_multiple_delegators.cdc (875B) @@ -3722,7 +3722,7 @@ func idtablestakingScriptsGet_weekly_payoutCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\x4d\x6f\xe3\x36\x13\xbe\xeb\x57\x0c\x7c\x08\x64\xc0\x91\xbc\xc7\xd7\x48\xb2\xf0\x6b\x74\xd1\x62\x53\x74\xd1\xa6\xbb\xe7\x89\x34\xb6\x08\xd3\xa4\x4a\x52\x36\x8c\x45\xfe\x7b\x41\x91\xfa\xa0\x2c\x39\xeb\xb6\x3a\x04\x16\x35\x33\xcf\xcc\x33\x1f\x9c\xb0\x43\x29\x95\x81\x8d\x3a\x97\x46\x46\xfe\xed\x13\x97\xa7\x17\xb9\x27\x01\x5b\x25\x0f\x30\x6b\xdf\x67\xad\x44\x25\x76\xec\x95\x53\x20\xd5\x3f\x6b\x25\x9f\x65\xb6\xa7\xbc\x3e\xd3\x5e\xb0\x7f\x34\x8b\xa2\x34\x4d\xe1\x45\xa1\xd0\x98\x19\x26\x05\x98\x02\x0d\x98\x82\xe0\x80\x4c\x80\xa9\x11\x30\x3f\x30\x01\x27\x59\xf1\x1c\x34\xdb\x89\x5a\xc9\x48\xc8\x14\xa1\x21\x40\xd0\x05\x2a\xca\x01\xb3\x4c\x56\xc2\x00\x8a\x1c\x50\x40\x25\x78\x8d\x55\x8b\xa3\xfb\xb4\x95\x0a\x10\x2a\x4d\x2a\x8a\x4c\x07\x1b\x47\x00\x00\x25\x2a\xc3\x90\xaf\x2d\xdc\x97\xea\x95\xb3\xec\x33\x9d\x57\x9e\x9e\xe4\x33\x9d\x9f\x99\x36\x3f\x09\xa3\xce\x0b\x48\x53\xf8\x46\x6c\x57\x98\x15\x7c\x58\x2e\xfb\xea\x7f\x6a\x52\x37\x68\xff\xcf\x6b\x6f\x2b\x7e\xab\xea\x87\xe5\x72\x19\xcd\x01\xbe\x47\x0e\x5f\x51\x89\x8a\xe2\x9a\xae\x15\x60\x65\x8a\xf8\xff\x52\x29\x79\xfa\x8a\xbc\xa2\x39\xdc\xad\x1d\x41\xf3\x46\xc3\x3e\x69\x0a\x1b\xc7\xa3\x65\x5d\xd0\xa9\xa1\x51\x3b\x1e\xf3\xdc\x7e\x60\x0a\xf6\x74\xd6\xad\x16\x27\xe3\x59\xf7\x36\xe1\x11\xfc\xaf\xb8\xc4\x33\xa9\x95\xcb\xda\x3c\xd0\xb0\xbc\xbf\x27\xdf\x2a\x04\xe6\x13\x8b\x9e\x60\x9e\xc7\x65\xc7\xcf\x68\xbe\x92\x56\x60\x01\x05\xea\x62\xcd\x77\x52\x31\x53\x1c\xa6\xe4\x03\xa1\x05\x9c\x3c\xb9\xe3\xc2\xee\xeb\xfc\x76\x27\x83\xd4\xbe\xef\x63\x28\x7e\xdd\xc5\x50\xb6\xf1\xb0\x75\xb1\x47\xfa\xa8\x83\x17\x85\x77\xc5\xbb\x4b\xd9\x09\xd7\x2e\x05\x2f\xfc\xea\x0a\x0f\xa1\x54\xec\x68\x7f\x71\x26\xf6\xb6\xb3\x6d\x29\x6a\x23\x6d\x53\x1f\xb1\xe2\x26\xa8\xa2\xfa\x64\x83\x25\xbe\x32\xce\xcc\x19\x1e\x07\x59\xc8\x9a\x4f\x8c\x74\x62\xad\xe0\x8e\x12\xa6\x75\x45\xad\x19\xfb\x3c\xd4\x0d\x12\xcc\xad\xe4\x1b\x33\x45\xae\xf0\x34\x87\xbb\x76\xec\x25\x5f\x2d\xde\x53\xa0\x1b\xa7\xde\x6e\xba\x6d\xc4\x6a\xa9\x30\xbc\x76\x3e\xb9\x39\xe4\xa7\xd9\x01\x05\xee\x48\xd5\xdd\xe5\x63\x64\x06\xec\xb0\xb3\x41\x07\x93\x2c\x08\x9b\x77\x83\xf3\x57\x6f\xe2\xe1\x3e\x98\xb0\x89\x03\x7c\xbe\x10\x8c\x6b\xca\x56\x43\xe6\xa6\xca\xb8\xe1\x4c\xe3\x91\xe2\x87\xfb\x4b\xe0\x05\x18\xb9\x0a\xa1\x2f\x41\xff\x70\x56\xbe\xa0\x29\x7a\xb4\xd8\x48\x4c\x4f\x6a\x3a\x8f\x01\xe1\x57\x92\xfa\x4e\x1e\xdf\xf1\xf2\x29\x0e\x70\xec\xf3\xef\xe2\xfa\x59\xf2\x7c\x32\x35\x2f\x9d\x44\x88\xeb\x38\x5e\xe7\xb9\x22\xad\x57\x83\x7c\xa0\x3b\x5e\x04\x1a\x7d\x12\x57\x13\x94\xb6\x0a\x13\xe3\x20\x48\x74\xd8\x1c\xf7\xbd\x60\x86\xc0\x83\xd4\xf7\x82\xea\x71\x33\x86\x6d\x49\x62\x62\x2b\x37\x58\xc2\x63\xe0\xc9\x95\xf4\xde\x4d\x81\x0d\x52\x77\x9b\x4f\x63\x74\x04\x4e\xd4\x43\x50\x17\xb1\xf7\x77\x01\x68\x46\x4b\xde\x2b\xff\x22\xb6\xd2\x0d\xbb\xa9\xc2\xa8\x6f\x92\x8d\xe4\x9c\xdc\xa6\xf3\xe8\x6e\xbc\x26\xda\xb0\xdc\x5f\xeb\x7b\xdb\x95\x76\x00\xea\xe1\xea\xc9\x29\xd5\xb0\xbe\x5f\x46\x80\x46\x2a\xdc\x6e\x62\xd3\xfd\x3b\xd0\x1f\xe3\x2f\xe4\xd0\x3e\x1f\x3f\x42\x89\x82\x65\xf1\x6c\x53\xef\x69\x42\x1a\x70\x41\x80\xa2\x2d\x29\x12\x19\xd9\xc9\xee\x76\xb9\xac\xb5\x3e\xeb\x51\x35\x46\x93\x2d\xfe\x66\x51\x08\x00\x83\x16\xb9\xa5\x71\x9a\xb5\x70\xa8\xda\xaf\x84\xe9\x8e\x5b\xbb\xe5\xea\xc7\xfb\x2d\x4d\xe1\xb7\x23\x29\xc5\x72\xb7\x61\xe5\xb4\xb5\x53\xb8\xb7\x66\x2b\xca\x88\x1d\x49\x4d\x4c\xe3\xa0\x2a\x2b\xd1\xd4\x65\xea\x6e\xe9\xee\x02\xfa\xdd\x9b\x19\xbd\x83\xec\x5e\xd7\xe0\xb8\x1d\xfb\x80\x6a\xaf\x9b\x33\x7f\x37\x69\x40\xdd\xad\xcd\xfd\x0a\xee\xdd\x01\xba\x0b\xfb\x86\xab\xf7\xe1\xee\x7b\x38\xa2\x1b\x77\xdf\x9e\xe2\x5b\x06\xee\x0f\x70\xd4\x30\x34\x32\x60\x87\x01\x84\x09\xb6\x1d\x3e\x49\xeb\x44\x6e\xcb\xca\x80\x90\xea\x80\xbc\xe3\x97\x09\xfb\x3f\x89\x5d\xc6\x2d\xf5\x95\x60\x7f\x55\x04\x65\xbf\x7f\xda\xa1\xd0\x58\xff\xef\xc8\x9c\xdc\x4c\xfe\x29\x73\x43\x3f\xa7\x39\x73\x1c\x7f\xba\xc2\x9c\xfd\xfb\x16\xbd\x45\x7f\x07\x00\x00\xff\xff\x96\x35\x8f\xdd\x79\x0e\x00\x00" +var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x57\x5f\x6f\xdb\x46\x0c\x7f\xd7\xa7\x20\xfc\x60\xc8\x80\x2b\xb9\x8f\x33\x92\x14\x9e\xb1\x62\x43\x33\xac\xd8\x92\xf6\x99\x91\x68\xeb\x60\xf9\x4e\xbb\x3b\xd9\x30\x8a\x7c\xf7\xe1\xfe\x48\xd6\xc9\x92\x53\x6f\xc3\xa6\x87\x20\x3e\x91\x47\xf2\x47\xf2\x47\x8a\xed\x2b\x21\x35\xac\xe5\xa9\xd2\x22\xf2\xbf\x3e\x96\xe2\xf8\x24\x76\xc4\x61\x23\xc5\x1e\x26\xed\xef\x49\x2b\x51\xf3\x2d\x7b\x29\x29\x90\xea\x9e\xb5\x92\x8f\x22\xdb\x51\x6e\xcf\x94\x17\xec\x1e\x4d\xa2\x28\x4d\x53\x78\x92\xc8\x15\x66\x9a\x09\x0e\xba\x40\x0d\xba\x20\xd8\x23\xe3\xa0\xad\x05\xcc\xf7\x8c\xc3\x51\xd4\x65\x0e\x8a\x6d\xb9\x55\xd2\x02\x32\x49\xa8\x09\x10\x54\x81\x92\x72\xc0\x2c\x13\x35\xd7\x80\x3c\x07\xe4\x50\xf3\xd2\xda\xb2\xe2\xe8\x5e\x6d\x84\x04\x84\x5a\x91\x8c\x22\x7d\x36\x1b\x47\x00\x00\x15\x4a\xcd\xb0\x5c\x19\x73\x9f\xeb\x97\x92\x65\x9f\xe8\xb4\xf4\xf0\x24\x9f\xe8\xf4\xc8\x94\xfe\x89\x6b\x79\x9a\x43\x9a\xc2\x57\x62\xdb\x42\x2f\xe1\xfd\x62\xd1\x55\x7f\x56\x24\x6f\xd0\xfe\xc1\x6b\x6f\xea\xf2\x56\xd5\xf7\x8b\xc5\x22\x9a\x01\x7c\x8b\x9c\x7d\x49\x15\x4a\x8a\x2d\x5c\x4b\xc0\x5a\x17\xf1\x8f\x42\x4a\x71\xfc\x82\x65\x4d\x33\x98\xae\x1c\x40\xb3\x46\xc3\x3c\x69\x0a\x6b\x87\xa3\x41\x9d\xd3\xb1\x81\x51\x39\x1c\xf3\xdc\xbc\x60\x12\x76\x74\x52\xad\x56\x49\xda\xa3\xee\xef\x84\x7b\xf0\xff\xc5\x15\x9e\x48\x2e\x5d\xd6\x66\x81\x86\xc1\xfd\x2d\xf9\x56\x21\xb8\x3e\x31\xd6\x13\xcc\xf3\xb8\x3a\xe3\x33\x98\xaf\xa4\x15\x98\x43\x81\xaa\x58\x95\x5b\x21\x99\x2e\xf6\x63\xf2\x81\xd0\x1c\x8e\x1e\xdc\x61\x61\xf7\x76\x76\xbb\x93\x41\x6a\xdf\xf6\x31\x14\xbf\xee\x62\x28\xdb\x78\xd8\xba\xd8\x01\x7d\xd0\xc1\x8b\xc2\xbb\xe2\xdd\xa5\xec\x88\x6b\x97\x82\x17\x7e\x9d\x0b\x0f\xa1\x92\xec\x60\xfe\x2b\x19\xdf\x99\xce\x36\xa5\xa8\xb4\x30\x4d\x7d\xc0\xba\xd4\x41\x15\xd9\x93\x35\x56\xf8\xc2\x4a\xa6\x4f\x70\xdf\xcb\x42\xd6\xbc\x62\xa4\x12\x73\x0b\x6e\x29\x61\x4a\xd5\xd4\x5e\x63\x9e\x3b\xdb\x20\x01\x6f\x25\x5f\x99\x2e\x72\x89\xc7\x19\x4c\x5b\xda\x4b\xbe\x18\x7b\x0f\x81\x6e\x9c\xfa\x7b\xd3\x4d\x23\x66\xa5\xc2\xf0\x5a\x7e\x72\x3c\xe4\xd9\x6c\x8f\x1c\xb7\x24\x6d\x77\xf9\x18\x99\x06\x43\x76\x26\xe8\x80\xc9\x82\xb0\xcb\x33\x71\xfe\xea\xaf\xb8\x7b\x17\x30\x6c\xe2\x0c\x3e\x5e\x08\xc6\x16\xb2\x65\x1f\xb9\xb1\x32\x6e\x30\x53\x78\xa0\xf8\xee\xdd\xa5\xe1\x39\x68\xb1\x0c\x4d\x5f\x1a\xfd\xc3\xdd\xf2\x19\x75\xd1\x81\xc5\x44\xa2\x3b\x52\xcf\x8a\xc6\x53\x19\x60\x7e\x25\xaf\xd7\x52\x39\x0f\xfd\x7c\x56\xee\xbd\xea\x9f\xdb\x61\xe1\x7e\xcc\x60\xfa\x46\x6c\x0f\x71\xe0\x9a\x79\xfe\x19\x1a\x3f\x8b\x32\x1f\x4d\xe8\xd3\x59\x22\xb4\xeb\x32\xb3\xca\x73\x49\x4a\x2d\x7b\x59\x44\x77\x3c\x0f\x34\xba\xd0\x2f\xc7\x13\xd1\xea\x8c\xf0\x48\x50\x21\x61\x57\xbd\xeb\xc4\xd3\xb7\xdd\xab\x99\x4e\x5c\x1d\x78\x86\x6c\x1b\x9c\x18\xdf\x88\x35\x56\x70\x1f\x78\x72\xa5\x28\xa6\x63\xc6\x7a\xd9\xbb\xcd\xa7\x21\x38\x02\x27\x2c\x7b\xaa\x22\xf6\xfe\xce\x01\xf5\x60\xaf\x78\xe5\x5f\xf8\x46\x38\x96\x1c\xab\x0d\x3b\x82\xd6\xa2\x2c\xc9\xad\x48\xf7\x6e\x54\x36\xd1\x86\x4d\xf2\x62\x07\xbe\x6b\x88\xc0\xa8\x37\x67\x29\x57\xc8\x7e\x89\x3f\x0d\x18\x1a\x28\x72\xb3\xc2\x8d\x37\x7e\x4f\x7f\x08\xbf\x10\x43\xf3\x7c\xf8\x00\x15\x72\x96\xc5\x93\xb5\x5d\xf0\xb8\xd0\xe0\x82\x00\x49\x1b\x92\xc4\x33\x32\x23\xc1\x2d\x81\x59\x7b\xfb\xe4\x1a\xa9\xd8\x66\xfe\x6f\x79\xe5\x7f\xe1\x8f\xa1\xfa\x30\x8d\xdf\xac\x56\x81\x95\x00\x82\x5b\x48\xa3\x59\xa4\xfb\xaa\xdd\x16\x18\x67\x9b\x95\x5b\x47\xaf\xe5\x67\xa8\xe5\xd3\x14\x7e\x3b\x90\x94\x2c\x77\x9b\x69\x4e\x1b\x33\xbd\x3a\x9f\x27\x92\x32\x62\x07\x92\x23\x53\x2c\x48\x6b\xcd\x9b\xb6\x4c\xdd\x76\x73\x1e\xdc\xbf\xfb\x6b\x06\x67\xb7\xd9\x87\x1b\x3b\xee\xdb\x64\x8f\x72\xa7\x9a\x33\x3f\xd3\x15\xa0\x3a\x7f\x6e\x74\xab\xb2\x33\x3b\x95\x0f\xde\x71\xd8\xf7\xae\x2c\x77\xd3\x6f\x61\xfd\x35\xee\xbe\x3e\xc4\xb7\x94\xcc\x77\x60\xd4\x20\x34\x30\x62\xfa\x01\x84\x69\x36\x04\x37\x0a\xeb\x48\x6e\xab\x5a\x03\x17\x72\x8f\xe5\x19\x5f\xc6\xcd\xb7\x9c\xf9\x88\x31\xd0\xd7\x9c\xfd\x59\x13\x54\x5d\xfa\x68\x1b\xbd\xb9\xfd\xdf\x03\x73\x74\xa3\xfb\xbb\xc8\xf5\xfd\x1c\xc7\xcc\x61\xfc\xf1\x0a\x72\xe6\xef\x6b\xf4\x1a\xfd\x15\x00\x00\xff\xff\xbd\x3e\x38\x5a\xb1\x0f\x00\x00" func lockedtokensAdminAdmin_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3738,7 +3738,7 @@ func lockedtokensAdminAdmin_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6b, 0x86, 0x33, 0x35, 0x7b, 0x92, 0x73, 0x42, 0xd3, 0xdf, 0x1c, 0xbb, 0x34, 0x34, 0x69, 0xac, 0x97, 0xc9, 0x94, 0x24, 0x1d, 0xc1, 0x14, 0x7a, 0x60, 0xf8, 0x6e, 0x57, 0x8c, 0xc2, 0x38, 0x91}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1b, 0x1e, 0xc6, 0x5f, 0x3e, 0x8d, 0x4b, 0xbc, 0xf1, 0xcc, 0xc7, 0x4b, 0xf1, 0xbe, 0x11, 0x7e, 0x60, 0xb8, 0x1e, 0x28, 0x5b, 0x69, 0x3a, 0x69, 0x25, 0xaf, 0x6c, 0xa3, 0xd2, 0x1b, 0x70, 0xae}} return a, nil } @@ -3782,7 +3782,7 @@ func lockedtokensAdminAdmin_deposit_account_creatorCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminAdmin_remove_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x9e\x39\x94\xe4\x60\x7e\x40\xa9\x16\xb5\x08\x82\x82\xd8\xe2\x7d\xba\x99\xa6\xa1\x9b\x9d\x30\x99\x58\x44\xfa\xdf\x25\x4d\x6b\x23\x1e\x9c\xdb\xee\x9b\xef\xcd\x7b\x55\xdd\x88\x1a\x1e\x83\xec\x9f\x16\x2b\x5a\x07\x5e\x1a\xed\xaa\x58\x62\xa3\x52\x23\xf9\x2b\x24\xee\xc4\x3c\x8b\xdf\x71\xb1\x92\x1d\xc7\xf6\xb4\x3d\xfe\x4a\x9c\x33\xa5\xd8\x92\xb7\x4a\x22\xbe\x9c\x03\x80\x46\xb9\x21\xe5\xb4\xad\xca\xc8\x3a\x05\x75\xb6\x4d\xef\x45\x55\xf6\xef\x14\x3a\xce\x30\xb9\xf3\x5e\xba\x68\xd9\x19\xe9\x27\xb0\xa1\xa6\x48\x25\xeb\x1b\x6f\x70\x83\x81\xcf\x5b\x13\xa5\x92\xf3\xf5\xd1\x61\x36\x19\x07\xc8\x47\x8f\x97\x81\xbd\x4d\xfb\x9c\x53\xfc\xb3\xb6\x1c\x5c\x5f\xc9\xb6\xd9\x4f\x84\x7e\xe6\x73\x34\x14\x2b\x9f\x26\x0f\xd2\x85\x02\x51\x0c\xc3\x69\x10\x94\x37\xac\x1c\x3d\xc3\x04\xb6\x65\x84\xa3\x31\xac\x77\x3e\xa7\x4f\xb2\xdf\xa5\x0a\x0e\x5c\x92\x89\x62\x76\x3d\x6a\x98\x2b\xd7\xf2\xc1\x8b\xb3\x9a\x66\x57\x17\xae\xe0\xd6\x54\x3e\x2f\xec\x20\x1d\xdc\xc1\x7d\x07\x00\x00\xff\xff\x04\xab\xd5\xde\xcf\x01\x00\x00" +var _lockedtokensAdminAdmin_remove_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x9e\x39\x94\xe4\x60\x7e\x40\xa9\x16\xb5\x08\x82\x82\xd8\xea\x7d\x9a\x4c\xd3\xd0\xcd\x4e\x98\x4c\x2c\x22\xfd\xef\x92\xa6\xb1\x29\x1e\x9c\xd3\xee\xbe\x79\xdf\xbe\x57\x56\xb5\xa8\xe1\xd1\xcb\xfe\x69\xb1\xa2\xb5\xe7\xa5\xd1\xae\x0c\x05\x36\x2a\x15\xa2\xbf\x42\xe4\x4e\x9e\x67\xc9\x76\x9c\xaf\x64\xc7\xa1\x39\x6d\x8f\x9f\x22\xe7\x4c\x29\x34\x94\x59\x29\x01\xdf\xce\x01\x40\xad\x5c\x93\x72\xdc\x94\x45\x60\x9d\x82\x5a\xdb\xc6\xf7\xa2\x2a\xfb\x0f\xf2\x2d\x27\x98\xdc\x65\x99\xb4\xc1\x92\xc1\xd2\x8d\x67\x43\x45\x81\x0a\xd6\x37\xde\xe0\x06\xbd\x3f\x6d\x4c\x94\x0a\x4e\xd7\x47\xc2\xec\x48\x1b\x87\x48\xdf\x1b\xee\x4f\x09\x26\x17\xc2\xe8\xf2\xd2\x83\x6f\xe3\xae\xc4\x14\xff\xac\x2d\xfb\x2f\x5f\xc9\xb6\xc9\x6f\xbe\x6e\xe6\x73\xd4\x14\xca\x2c\x8e\x1e\xa4\xf5\x39\x82\x18\xfa\x5c\x20\x28\x6f\x58\x39\x64\x0c\x13\xd8\x96\xe1\x8f\x60\x58\x47\x1e\xaa\x45\xc9\x65\xe3\x9c\x3d\x17\x64\xa2\x98\x5d\x8f\xea\xa7\xca\x95\x7c\xf2\x62\x50\xe3\xe4\xea\xec\xcb\xb9\x31\x95\xaf\xb3\xb7\x97\x0e\xee\xe0\x7e\x02\x00\x00\xff\xff\xf9\x4a\x91\xbb\xec\x01\x00\x00" func lockedtokensAdminAdmin_remove_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3798,7 +3798,7 @@ func lockedtokensAdminAdmin_remove_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_remove_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdf, 0xa8, 0x3f, 0x3a, 0x74, 0xce, 0x68, 0x6e, 0x7, 0xc0, 0x36, 0x29, 0x95, 0x78, 0x26, 0xc2, 0x17, 0xe2, 0xa9, 0x89, 0x16, 0xce, 0x87, 0x20, 0xb3, 0xe6, 0x1f, 0x1d, 0x99, 0x77, 0x55, 0x20}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaf, 0x18, 0x92, 0xee, 0x3c, 0x21, 0xfb, 0x1f, 0xff, 0xe5, 0x88, 0xa4, 0xb, 0xa, 0x88, 0x26, 0xe3, 0xa1, 0xea, 0x13, 0xc4, 0xd7, 0x50, 0x25, 0x8f, 0xd8, 0x1a, 0x5f, 0x72, 0xd3, 0x4b, 0x81}} return a, nil } @@ -3842,7 +3842,7 @@ func lockedtokensAdminCheck_shared_registrationCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xe9\xd5\x48\xb2\x48\x8d\x2e\x5a\x6c\x8a\x06\x6d\xba\x7b\x9e\x88\x63\x8b\x08\x4d\xaa\xfc\xb1\x61\x04\x79\xf7\x82\x12\x25\x8b\xb2\x14\xbb\x45\x7b\x59\x1d\x82\x98\x9c\x9f\x6f\xbe\x99\xe1\x0c\xdf\x56\x4a\x5b\x58\xe9\x43\x65\x55\x12\x7e\x7d\x16\x6a\xff\xac\x5e\x49\xc2\x5a\xab\x2d\xcc\xba\xdf\xb3\x4e\xc2\xc9\x0d\x7f\x11\x14\x49\xf5\xcf\x3a\xc9\x47\x55\xbc\x12\xab\xcf\x4c\x10\xec\x1f\xcd\x92\x24\xcf\x73\x78\xd6\x28\x0d\x16\x96\x2b\x09\xb6\x44\x0b\x08\x85\x33\x56\xb1\x03\x54\x5a\xed\x38\x23\x0d\x7b\xe5\x04\x03\xc3\x37\xb2\x56\xb1\x0a\x0a\x4d\x68\x09\x10\x4c\x89\x9a\x18\x60\x51\x28\x27\x2d\xa0\x64\x80\x12\x9c\x14\xb5\xa7\x5a\xbc\xbd\x5b\x2b\x0d\x08\xce\x90\x4e\x12\x7b\xf4\x9a\x26\x00\x00\x6b\x27\xc4\x03\xdb\x72\xf9\xe4\x5e\x04\x2f\xbe\xd0\x61\x19\xa8\xc9\xbe\xd0\xe1\x91\x1b\xfb\x93\xb4\xfa\xb0\x80\x3c\x87\x6f\xc4\x37\xa5\x5d\xc2\x0f\x37\x37\x37\x9d\xf2\x9f\x86\xf4\x3f\xd5\x9d\x03\xbc\x25\xb5\x85\x4a\x53\x85\x9a\xd2\x10\xfa\x53\x88\x7c\x09\xe8\x6c\x99\xfe\xa8\xb4\x56\xfb\xaf\x28\x1c\xcd\xe1\xea\xa1\x89\x67\xde\xea\xfa\x4f\x90\x0d\x54\x84\x5b\xb8\x83\xf0\x5f\x5a\xe1\xc1\x5b\x1a\x98\x9e\x47\xba\x9e\x95\xcb\x35\x3b\xd5\xc8\x65\xf6\x4a\x07\x93\x21\x63\x69\x75\xe4\xe1\x94\xd7\xac\xbb\x5d\x40\x89\xa6\x7c\x10\x1b\xa5\xb9\x2d\xb7\xa3\xc2\x91\xc4\x02\xf6\x81\xbe\x11\xc9\xe6\xaa\x07\xae\x17\xd3\x24\xb4\x28\x6b\x67\x90\xc5\xb2\x1f\x00\x8b\x05\x4f\x70\x79\xbe\x77\xe8\x84\x5d\x61\x85\x2f\x5c\x70\x7b\x80\xbb\x01\x95\x45\x7b\xc5\xc9\x64\xc6\x2a\x8d\x1b\xea\x0c\xf8\x2f\xe3\xc6\x38\xba\xad\xcb\x23\x6a\xbf\xec\x1b\xb7\x25\xd3\xb8\x9f\xc3\x55\xd7\xbd\xd9\x57\xef\xef\x3e\xcd\x83\xa9\x7c\xdd\xde\xd4\x17\x03\x70\xe2\xd8\xa5\xbf\xa2\xc4\x0d\x69\xb8\xbd\x8e\xda\x39\x6b\xfa\xef\xf1\x44\x30\xad\x03\x5b\x0e\xe3\x9b\x2c\x99\x80\x27\x33\xb8\xa3\xf4\xf6\xfa\xd4\xf3\x02\xac\x5a\xc6\xbe\x4f\xbd\xfe\xd1\x58\x79\x42\x5b\x0e\x42\xb1\x3d\xa9\xff\x9d\xee\x33\x28\xef\xd3\xc8\xa4\xff\x2e\x8f\x2b\x52\x1d\x0b\xf2\x67\x25\xd8\x64\xa2\x9e\x8f\x12\x69\xc3\xf1\x03\x63\x9a\x8c\x59\x0e\x88\xc0\xe6\x78\x11\x11\xb7\x9c\xa0\x71\xa2\xd7\xa2\x9c\x46\xb8\x6f\xaf\x7b\x50\x17\xd1\xd5\x49\x96\x7b\x90\xc7\x68\x98\xa6\x60\x85\x15\xdc\x45\x80\xc6\xb2\x1b\x12\x7a\x35\xe5\xf3\x3e\xbd\x00\xcd\x7c\x34\xfe\xc8\x5d\xfd\xa4\x98\x32\x8d\x01\x2e\x00\xed\x68\x55\x07\x1b\xbf\xc8\xb5\x6a\x5e\x90\xa9\x9a\xae\x1f\xbf\xef\xb6\xa2\x45\x9f\x8c\x95\x2f\x61\xa5\xe1\x6e\x38\x88\xc6\xe3\x7a\xa9\x87\x65\x13\x58\x84\x26\x36\x37\x1e\x5d\x2c\x73\x9f\xfa\xb5\xe5\xa3\x44\x05\xc1\xd1\x9a\xf0\xdf\xa7\x4f\x50\xa1\xe4\x45\x3a\x5b\xd5\x3b\x8c\x54\x16\x1a\x80\x21\xc6\x6e\x3b\x29\x1a\x4b\xb3\x3e\x13\x23\x9e\x7c\x87\xb6\xe3\x39\xf2\x14\xa5\xff\x4c\x77\x47\x8a\xed\xae\x34\x54\xed\x97\xf4\xa8\xe2\xb1\x0e\x97\xa3\x35\x39\xd6\xab\x79\x0e\xbf\xed\x48\x6b\xce\x08\x6c\x49\xc0\x68\xed\x27\x45\x6f\xef\xd4\x54\x10\xdf\x91\xce\x26\x26\x46\x54\xd8\x4e\xb6\xfd\x95\x37\xb3\xfb\x38\xd8\x7e\x0f\x76\x62\xe7\x61\x6f\x94\xb4\xef\x1c\x35\x5b\xe7\x16\xf5\xab\x69\xcf\x58\x13\x8f\x01\x34\x1d\x3d\xd9\xd4\x88\x34\xc7\x77\xf1\xa2\x2e\x6c\x5f\x9e\xb7\xb8\xeb\x5a\xbc\xef\x83\x97\xe7\xcc\xb4\xbb\x80\xa4\x96\xa2\x28\x79\xe3\x01\xc4\x09\xf6\x6f\xd4\x24\xaf\x13\xd9\xad\x9c\x05\xa9\xf4\x16\xc5\x91\x60\x2e\xfd\xa2\xee\x17\x5c\xcf\xbd\x93\xfc\x2f\x47\x50\xa1\x2d\xb3\xd3\x77\xad\x35\xff\xdf\xb1\x39\xb9\xf3\xfc\x5b\xea\x86\x38\xa7\x49\x6b\x48\xfe\xfc\x01\x75\xfe\xef\x7b\xf2\x9e\xfc\x1d\x00\x00\xff\xff\x91\x8b\x56\x14\x8d\x0d\x00\x00" +var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xe9\xd5\x48\xb2\x48\x8d\x2e\x5a\x6c\x8a\x06\x6d\xb2\x7b\x9e\x48\x63\x8b\x08\x4d\xaa\xfc\xb1\x61\x04\x79\xf7\x82\x22\x25\x8b\xb2\x14\xa7\x45\x5b\xac\x0e\x41\xcc\xf9\xfb\xe6\xe3\xcc\x70\xd8\xb6\x96\xca\xc0\x4a\x1d\x6a\x23\x93\xf0\xeb\x33\x97\xfb\x47\xf9\x42\x02\xd6\x4a\x6e\x61\xd6\xfd\x9e\x75\x1a\x56\x6c\xd8\x33\xa7\x48\xab\x7f\xd6\x69\xde\xcb\xe2\x85\xca\xe6\x4c\x07\xc5\xfe\xd1\x2c\x49\xf2\x3c\x87\x47\x85\x42\x63\x61\x98\x14\x60\x2a\x34\x80\x50\x58\x6d\x64\x79\x80\x5a\xc9\x1d\x2b\x49\xc1\x5e\x5a\x5e\x82\x66\x1b\xd1\x98\x18\x09\x85\x22\x34\x04\x08\xba\x42\x45\x25\x60\x51\x48\x2b\x0c\xa0\x28\x01\x05\x58\xc1\x9b\x48\x8d\x7a\x2b\x5b\x4b\x05\x08\x56\x93\x4a\x12\x73\x8c\x9a\x26\x00\x00\x6b\xcb\xf9\x5d\xb9\x65\xe2\xc1\x3e\x73\x56\x7c\xa1\xc3\x32\x50\x93\x7d\xa1\xc3\x3d\xd3\xe6\x27\x61\xd4\x61\x01\x79\x0e\xdf\x88\x6d\x2a\xb3\x84\x1f\xae\xae\xae\x3a\xe3\x27\x4d\xea\xef\xda\xce\x01\x5e\x93\xc6\x43\xad\xa8\x46\x45\x69\x48\xfd\x21\x64\xbe\x04\xb4\xa6\x4a\x7f\x94\x4a\xc9\xfd\x57\xe4\x96\xe6\x70\x71\xe7\xf3\x99\xb7\xb6\xee\xe3\x64\x02\x15\x41\x0a\x37\x10\xfe\x4b\x6b\x3c\x38\x4f\x03\xd7\xf3\xc8\xd6\xb1\xf2\x71\xcb\xce\x34\x0a\x99\xbd\xd0\x41\x67\x58\x96\x69\x7d\xe4\xe1\x94\xd7\xac\x93\x2e\xa0\x42\x5d\xdd\xf1\x8d\x54\xcc\x54\xdb\x51\xe5\x48\x63\x01\xfb\x40\xdf\x88\xa6\x17\xf5\xc0\xf5\x72\x9a\x84\x16\xdd\xda\x19\x64\xb1\xee\x3b\xc0\x62\xc5\x13\x5c\x8e\xef\x1d\x5a\x6e\x56\x58\xe3\x33\xe3\xcc\x1c\xe0\x66\x40\x65\xd1\x8a\x18\xe9\x4c\x1b\xa9\x70\x43\x9d\x03\xf7\x65\x4c\x6b\x4b\xd7\x4d\x79\x44\xed\x97\x7d\x63\xa6\x2a\x15\xee\xe7\x70\xd1\x75\x6f\xf6\xd5\xc5\xbb\x4d\xf3\xe0\x2a\x5f\xb7\x92\x46\x30\x00\xc7\x8f\x5d\xfa\x2b\x0a\xdc\x90\x82\xeb\xcb\xa8\x9d\x33\xdf\x7f\xf7\x27\x8a\x69\x93\xd8\x72\x98\xdf\x64\xc9\x04\x3c\x99\xc6\x1d\xa5\xd7\x97\xa7\x91\x17\x60\xe4\x32\x8e\x7d\x1a\xf5\x0f\xef\xe5\x01\x4d\x35\x48\xc5\xf4\xb4\x9e\x34\xfd\xb7\x8c\x2f\x62\x9c\x4f\xda\xcb\xf5\xf0\xbc\x19\x4e\xfe\xc7\x1c\x2e\xce\xe4\x76\x9b\x46\x28\xdc\xf7\x71\x36\x22\xd3\x31\x6a\x7e\x96\xbc\x9c\xbc\xde\xc7\xa3\x46\xea\x6f\xe6\xae\x2c\x15\x69\xbd\x1c\x70\x87\xfe\x78\x11\xd1\xbd\x9c\x26\x7f\xa2\x49\xa3\x62\x88\xa0\x5f\x5f\xf6\xd0\x2e\x22\xd1\x49\x79\xf4\x50\x8f\x31\x31\xcd\xc2\x0a\x6b\xb8\x89\x00\x8d\xd5\x44\x28\x83\x8b\xa9\x98\xb7\xe9\x07\xd0\xcc\x47\xf3\x8f\xc2\x35\xb3\x48\x57\x69\x0c\x70\x01\x68\x46\xdb\x21\xf8\xf8\x45\xac\xa5\x1f\x3d\x53\xcd\xd0\x4c\xcd\xff\xb7\x0f\xbe\x8f\x7a\xe7\x7d\x9e\x56\xae\xc0\xa5\x82\x9b\xe1\xe3\x36\x9e\xf2\x73\xf3\x00\xfb\x9c\x23\x34\xb1\xbb\xf1\xec\x62\x9d\xdb\xd4\xad\x42\xef\xdd\x61\x50\x1c\x2d\x17\xf7\x7d\xfa\x04\x35\x0a\x56\xa4\xb3\x55\xb3\x17\x09\x69\xc0\x03\x0c\x39\x76\x1b\x4f\xe1\x3d\xcd\xfa\x4c\x8c\x44\x72\xfd\xdb\x3e\xf9\x51\xa4\xa8\x32\xce\xf4\x7e\x64\xd8\xee\x5f\x43\xd3\x7e\xb5\x8f\x1a\x1e\x4b\x74\x39\x5a\xae\x63\x6d\x9c\xe7\xf0\xdb\x8e\x94\x62\x25\x81\xa9\x08\x4a\x5a\xbb\xd7\xa7\xb7\xcb\x2a\x2a\x88\xed\x48\x65\x13\xaf\x50\x54\xf3\x56\xb4\xad\x97\xfb\x7d\xe0\xf8\x58\xfe\x1e\xfc\xc4\xc1\xc3\x2e\x2a\x68\xdf\x05\xf2\x9b\xec\x16\xd5\x8b\x6e\xcf\x4a\x9f\x8f\x06\xd4\x1d\x3d\xd9\xd4\xb3\xab\x43\x69\xfb\x91\x74\xbe\x41\xdb\xa1\xf4\x1a\x37\x64\x8b\xf7\x6d\x30\x94\xce\xbc\xa0\x1f\x20\xa9\xa5\x28\xba\xbc\xf1\x04\xe2\x0b\x76\xe3\x6b\x92\xd7\x89\xdb\xad\xad\x01\x21\xd5\x16\xf9\x91\x60\x26\xdc\xf2\xef\x96\x66\xc7\xbd\x15\xec\x4f\x4b\x50\xa3\xa9\xb2\xd3\x91\xd7\xba\xff\xf7\xd8\x9c\xdc\xa3\xfe\x29\x75\x43\x9c\xd3\xa4\x79\x92\x3f\xbf\x43\x9d\xfb\xfb\x96\xbc\x25\x7f\x05\x00\x00\xff\xff\xc8\x7f\x54\x0d\xe1\x0d\x00\x00" func lockedtokensAdminCustody_create_account_with_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3858,11 +3858,11 @@ func lockedtokensAdminCustody_create_account_with_lease_accountCdc() (*asset, er } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_account_with_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7f, 0xe1, 0xce, 0xfc, 0xe4, 0xe3, 0xe8, 0xa3, 0x5b, 0xf1, 0x94, 0x64, 0x8e, 0x5c, 0xa4, 0xe4, 0x44, 0xb8, 0x7b, 0x69, 0x5e, 0x6a, 0xe5, 0xdc, 0x2e, 0x55, 0x6, 0x9b, 0x4b, 0x5a, 0x2b, 0x86}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe0, 0x29, 0x65, 0xe2, 0xb2, 0xcb, 0x47, 0x41, 0x7f, 0xea, 0x93, 0x97, 0xe3, 0xaa, 0x0, 0xcb, 0x69, 0xe, 0xf7, 0x92, 0x80, 0xaf, 0x48, 0xfe, 0x3e, 0x87, 0xbb, 0xef, 0x82, 0x85, 0x5e, 0x21}} return a, nil } -var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x56\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\x7c\x08\x64\xc0\x91\xd2\xab\x91\x64\x91\x1a\x5d\xb4\xd8\x14\x0d\xda\x60\xf7\x3c\x11\xc7\x16\x11\x9a\x54\x49\xca\x86\xb0\xc8\x7f\x2f\x48\x51\x0f\xca\xd2\x6e\x5a\xb4\x97\xea\x10\xc4\xe4\x3c\xbe\xf9\x38\x2f\x7e\xac\x94\xb6\xb0\xd3\x4d\x65\x55\x12\x7e\x7d\x14\xea\xfc\xac\x5e\x49\xc2\x5e\xab\x23\xac\xfa\xdf\xab\x5e\xa2\x96\x07\xfe\x22\x28\x92\x1a\x9f\xf5\x92\x8f\xaa\x78\x25\xe6\xcf\x4c\x10\x1c\x1f\xad\x92\x24\xcf\x73\x78\xd6\x28\x0d\x16\x96\x2b\x09\xb6\x44\x0b\x08\x45\x6d\xac\x62\x0d\x54\x5a\x9d\x38\x23\x0d\x67\x55\x0b\x06\x86\x1f\xa4\x57\xb1\x0a\x0a\x4d\x68\x09\x10\x4c\x89\x9a\x18\x60\x51\xa8\x5a\x5a\xd8\x2b\x0d\x08\xb5\x71\x4a\xa5\x02\x14\x9a\x90\x35\x5e\xab\x44\x03\xb6\x24\xae\xa1\x96\xc2\xe3\xe8\xb5\x5a\x6b\xcc\x89\xb5\x98\x4a\xba\x14\xf2\xfa\xca\xa3\x70\x76\xc0\x8e\x80\xa3\x30\x2a\x49\x46\x27\x69\x02\x00\xb0\xaf\x85\x78\x60\x47\x2e\x9f\xea\x17\xc1\x8b\x4f\xd4\x6c\x03\xdf\xd9\x27\x6a\x1e\xb9\xb1\x3f\x49\xab\x9b\x0d\xe4\x39\x7c\x21\x7e\x28\xed\x16\x7e\xb8\xb9\xb9\x49\xd6\x00\x5f\x13\x6f\xa2\xd2\x54\xa1\xa6\x34\x70\xf2\x14\x28\xd9\x02\xd6\xb6\x4c\x7f\x54\x5a\xab\xf3\x67\x14\x35\xad\xe1\xea\xa1\x45\xba\xf1\xf1\x87\x1f\x41\xf0\x0f\xab\x34\x1e\x68\x03\x3b\xac\xf0\x85\x0b\x6e\x39\x99\x41\x65\xdd\xb9\x73\x9f\x20\x1b\x68\x0d\xb7\x70\x07\xe1\xbf\xb4\xc2\xc6\x39\x9f\xa0\x59\x0f\xca\x91\x62\xf6\x4a\x8d\xc9\x90\xb1\xb4\x1a\x08\xb8\x24\x25\xeb\x6f\x37\x8e\xe5\xf2\x41\x1c\x94\xe6\xb6\x3c\xce\x0a\x47\x12\x1b\x38\x07\xde\x66\x24\xdb\xab\x75\x1c\xd9\x09\x6b\x61\x7b\x16\x1a\xb8\x9b\x40\x2e\x46\x04\x65\xa6\xa5\xad\x37\xe0\xbe\x8c\x1b\x53\xd3\xad\xa7\x35\x4a\xfc\xec\x0b\xb7\x25\xd3\x78\x5e\xc3\x55\x5f\x37\xd9\x67\xe7\xef\x3e\xcd\x83\xa9\x7c\xdf\xdd\xf8\x8b\x09\x38\x31\xd4\xc7\xaf\x28\xf1\x40\x1a\x6e\xaf\xa3\x42\xca\xda\x5c\x7d\xbc\x10\x4c\x7d\x60\xdb\x69\x7c\x8b\x4f\x13\xf0\x64\x06\x4f\x94\xde\x5e\x5f\x7a\xde\x80\x55\xdb\xd8\xf7\xa5\xd7\x90\x57\x4f\x68\xcb\x49\x28\x76\x24\xf5\x9f\xd3\xfd\x1d\x94\xf7\x69\x64\xd2\x7d\xef\x8f\x2b\x52\x9d\x0b\xf2\x67\x25\xd8\xe2\x43\x3d\x0f\x12\x31\x88\x96\xf0\x07\xc6\x34\x19\xb3\x9d\xb0\x82\xed\xf1\x26\xd2\x18\x33\xba\x5d\xe0\x37\x99\x01\x3a\xea\x06\xf1\xab\x47\xd6\x6f\xaf\x47\xc1\x4c\x1d\x4f\xf2\x60\x14\xd4\x1c\x51\xcb\x24\xed\xb0\x82\xbb\x08\xd0\xdc\xfb\x87\x27\xbf\x5a\xf2\x79\x9f\xbe\x03\xcd\x7a\x36\xfe\xc8\x9d\x6f\x3b\xa6\x4c\x63\x80\x1b\x40\x3b\x9b\xf7\xc1\xc6\x2f\x72\xaf\xda\x1e\xb3\x94\xf5\xbe\x0d\xfd\x6f\x73\x5e\x8c\xc9\xd8\xb9\x24\x57\x1a\xee\xa6\x23\x61\x3e\xae\x17\x3f\xaf\xda\xc0\x22\x34\xb1\xb9\xf9\xe8\x62\x99\xfb\xd4\xad\x14\xdf\x7a\xa8\x20\x38\x9b\x13\xee\xfb\xf0\x01\x2a\x94\xbc\x48\x57\x3b\xbf\x5f\x48\x65\xa1\x05\x08\x73\xfb\x81\xd2\xab\x31\x13\x33\x9e\x5c\xd9\x76\x83\x32\xf2\x14\x3d\xff\xdf\x29\xf9\x6e\x09\x99\xaa\x8e\x53\x7a\xb9\x57\xf8\x3c\xdc\xce\xe6\xe4\x5c\xad\xe6\x39\xfc\x76\x22\xad\x39\x23\xbf\xe0\x30\xda\xbb\x59\x32\xda\x09\x35\x15\xc4\x4f\xa4\xb3\x85\x99\x12\x25\x76\x2d\xbb\xfa\xca\xdb\xf9\x3e\x8c\xbe\xdf\x83\x9d\xd8\x79\xd8\xe9\x24\x9d\x7b\x47\xed\x46\x78\x44\xfd\x6a\xba\x33\xd6\xc6\x63\x00\x4d\x4f\x4f\xb6\x34\x44\xcd\xd0\x20\xdf\x55\x85\x5d\xe7\xf9\x1a\x57\x5d\x87\xf7\x6d\xd2\x79\xbe\x33\x0f\xdf\x41\x52\x47\xd1\xcc\x68\x98\x06\x10\x3f\xb0\xeb\x51\x8b\xbc\x2e\xbc\x6e\x55\x5b\x90\x4a\x1f\x51\x0c\x04\x73\xe9\x96\x68\xb7\x63\x3a\xee\x6b\xc9\xff\xac\x09\x2a\xb4\x65\x76\xd9\xd7\x3a\xf3\xff\x1e\x9b\x8b\x5b\xd1\x3f\xa5\x6e\x8a\x73\x99\xb4\x96\xe4\x8f\xdf\xa0\xce\xfd\x7d\x4b\xde\x92\xbf\x02\x00\x00\xff\xff\x19\xb7\x3d\x63\x29\x0d\x00\x00" +var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xa0\x48\xe9\x55\x48\xb2\x48\x8d\x2e\x5a\x6c\x8a\x06\x6d\x76\xf7\x3c\x11\x69\x8b\x08\x4d\xaa\x24\x65\x43\x58\xe4\xdd\x0b\xfe\x48\x16\x65\x29\x49\x8b\xb6\x58\x1d\x0c\x93\x9c\xe1\x7c\xf3\x71\xfe\xd8\xbe\x91\xca\xc0\x46\x75\x8d\x91\x49\x58\x7d\xe4\xf2\xf8\x28\x9f\xa9\x80\xad\x92\x7b\x58\x0d\xeb\xd5\x20\xd1\x8a\x1d\x7b\xe2\x34\x92\x1a\xef\x0d\x92\xf7\xb2\x7a\xa6\xc4\xed\xe9\x20\x38\xde\x5a\x25\x49\x51\x14\xf0\xa8\x50\x68\xac\x0c\x93\x02\x4c\x8d\x06\x10\xaa\x56\x1b\x49\x3a\x68\x94\x3c\x30\x42\x15\x1c\x65\xcb\x09\x68\xb6\x13\x4e\xc5\x48\xa8\x14\x45\x43\x01\x41\xd7\xa8\x28\x01\xac\x2a\xd9\x0a\x03\x5b\xa9\x00\xa1\xd5\x56\xa9\x96\x80\x5c\x51\x24\x9d\xd3\xaa\x51\x83\xa9\x29\x53\xd0\x0a\xee\x70\x0c\x5a\xfe\x36\x62\xc5\x3c\xa6\x9a\x9e\x0b\x39\x7d\xe9\x50\xd8\x7b\xc0\x8c\x80\x23\xd7\x32\x49\x46\x3b\x69\x02\x00\xb0\x6d\x39\xbf\x23\x7b\x26\x1e\xda\x27\xce\xaa\x4f\xb4\x2b\x03\xdf\xf9\x27\xda\xdd\x33\x6d\x7e\x12\x46\x75\x19\x14\x05\x7c\xa5\x6c\x57\x9b\x12\x7e\xb8\xba\xba\x4a\xd6\x00\xdf\x12\x77\x45\xa3\x68\x83\x8a\xa6\x81\x93\x87\x40\x49\x09\xd8\x9a\x3a\xfd\x51\x2a\x25\x8f\x5f\x90\xb7\x74\x0d\x17\x77\x1e\x69\xe6\xfc\x0f\x8b\x20\xf8\x87\x91\x0a\x77\x34\x83\x0d\x36\xf8\xc4\x38\x33\x8c\xea\x93\xca\xba\x37\x67\x3f\x4e\x4d\xa0\x35\x9c\xc2\x0d\x84\x7f\x69\x83\x9d\x35\x3e\x41\xb3\x3e\x29\x47\x8a\xf9\x33\xed\x74\x8e\x84\xa4\xcd\x89\x80\x73\x52\xf2\xe1\x34\xb3\x2c\xd7\x77\x7c\x27\x15\x33\xf5\x7e\x56\x38\x92\xc8\xe0\x18\x78\x9b\x91\xf4\x47\xeb\xd8\xb3\x03\xb6\xdc\x0c\x2c\x74\x70\x33\x81\x5c\x8d\x08\xca\xb5\xa7\x6d\xb8\xc0\x7e\x39\xd3\xba\xa5\xd7\x8e\xd6\x28\xf0\xf3\xaf\xcc\xd4\x44\xe1\x71\x0d\x17\x43\xde\xe4\x5f\xac\xbd\xdb\xb4\x08\x57\x15\xdb\xfe\xc4\x1d\x4c\xc0\xf1\x53\x7e\xfc\x8a\x02\x77\x54\xc1\xf5\x65\x94\x48\xb9\x8f\xd5\xfb\x33\xc1\xd4\x39\x56\x4e\xfd\x5b\x7c\x9a\x80\x27\xd7\x78\xa0\xe9\xf5\xe5\xb9\xe5\x0c\x8c\x2c\x63\xdb\xe7\x56\x43\x5c\x3d\xa0\xa9\x27\xae\x98\x91\xd4\x67\x4d\xff\x5b\xc6\xb3\x18\xe7\x67\xed\xcf\xf5\x74\xdf\xe5\xb4\x5f\xac\xe1\xe2\x0d\xdf\x6e\xd3\x08\x85\xfd\xde\xcf\x46\xa4\x3a\x47\xcd\xcf\x92\x93\xc5\xe7\x7d\x3c\x49\xc4\x20\xfc\x33\xdd\x11\xa2\xa8\xd6\xe5\x84\x48\xf4\xdb\x59\xa4\x31\x7e\x87\x72\xf9\x55\x92\x19\xac\xa3\x32\x12\x87\x4b\x64\xe0\xfa\x72\xe4\xcf\xd4\xf6\x24\x80\x46\x7e\xcd\x71\xb5\xcc\xd3\x06\x1b\xb8\x89\x00\xcd\x45\x4d\x08\x94\x8b\x25\x9b\xb7\xe9\x3b\xd0\xac\x67\xfd\x8f\xcc\xb9\x7a\xa5\xeb\x34\x06\x98\x01\x9a\xd9\x84\x09\x77\xfc\x22\xb6\xd2\x17\xa7\xa5\x74\x71\xf5\xeb\xff\xcd\x94\xef\x23\x23\xf8\x98\xa7\x8d\x4d\x01\xa9\xe0\x66\xda\x66\xe6\x5d\x7e\x72\x3d\xd0\xfb\x1c\xa1\x89\xaf\x9b\xf7\x2e\x96\xb9\x4d\xed\x98\xf2\xda\x1b\x06\xc1\xd9\x70\xb1\xdf\x87\x0f\xd0\xa0\x60\x55\xba\xda\xb8\x99\x45\x48\x03\x1e\x20\xcc\xcd\x1c\x52\xad\xc6\x4c\xcc\x58\xb2\x49\xdd\x37\xdf\xc8\x52\x14\x19\x7f\xa7\x20\xf4\x83\xcd\x54\x75\x1c\xed\xcb\x95\xc4\x85\x68\x39\x1b\xae\x73\x69\x5c\x14\xf0\xdb\x81\x2a\xc5\x08\x75\x43\x13\xa1\x5b\xdb\x9f\x46\x73\xa6\xa2\x15\x65\x07\xaa\xf2\x85\x3e\x15\xc5\x7c\x2b\xfa\xd4\x2b\xfc\xcc\x70\x6a\xa7\xbf\x87\x7b\x62\xe3\x61\x4e\x14\xf4\x38\x18\xf2\x53\xe6\x1e\xd5\xb3\xee\xf7\x88\xf7\x47\x03\xea\x81\x9e\x7c\xa9\x31\xeb\x10\xda\xbe\x24\xbd\x9d\xa0\x7d\x51\xfa\x16\x27\x64\x8f\xf7\x65\x52\x94\xde\xe8\xb1\xef\x20\xa9\xa7\x68\xa6\x71\x4c\x1d\x88\x1f\xd8\x96\xaf\x45\x5e\x17\x5e\xb7\x69\x0d\x08\xa9\xf6\xc8\x4f\x04\x33\x61\x07\x73\x3b\xb7\x5a\xee\x5b\xc1\xfe\x6c\x29\x34\x68\xea\xfc\xbc\xe4\xf5\xd7\xff\x7b\x6c\x2e\x4e\x5a\xff\x94\xba\x29\xce\x65\xd2\x3c\xc9\x1f\x5f\xa1\xce\xfe\xbe\x24\x2f\xc9\x5f\x01\x00\x00\xff\xff\xa9\x36\x7e\xb4\x7d\x0d\x00\x00" func lockedtokensAdminCustody_create_only_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3878,11 +3878,11 @@ func lockedtokensAdminCustody_create_only_lease_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x27, 0x31, 0x85, 0xcc, 0x7a, 0xe5, 0x6e, 0xf7, 0x4, 0xb5, 0x1d, 0x36, 0x54, 0xb4, 0xbb, 0x57, 0xfc, 0xa9, 0xae, 0x3f, 0xa7, 0x9a, 0x2f, 0xee, 0xf7, 0x8f, 0x43, 0xe1, 0x54, 0xb0, 0xb8, 0x86}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0xf6, 0x5e, 0x49, 0x32, 0xc7, 0xdc, 0xd, 0x19, 0xe0, 0x73, 0x26, 0x5f, 0xd3, 0xcc, 0x16, 0x42, 0xea, 0x71, 0x24, 0x8e, 0xf7, 0xaf, 0x6f, 0xa7, 0x9f, 0x24, 0xf, 0xf8, 0x38, 0xdb, 0x12}} return a, nil } -var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xe9\xb1\x46\x92\x45\x6a\x74\xd1\x62\x53\x34\x68\xd3\xdd\xf3\x44\x1c\x5b\x44\x68\x52\x25\x29\x1b\x42\x90\x77\x2f\x28\x51\x3f\x94\xa5\xc4\x29\xda\xcb\xea\x10\x44\xd4\xfc\x7c\xf3\xcd\x70\x66\xcc\xf7\x85\xd2\x16\x36\xba\x2a\xac\x8a\xfc\xdb\x67\xa1\x8e\x8f\xea\x99\x24\x6c\xb5\xda\xc3\xa2\x7b\x5f\x74\x12\xa5\xdc\xf1\x27\x41\x81\xd4\xf0\xac\x93\xbc\x57\xd9\x33\xb1\xfa\xcc\x78\xc1\xe1\xd1\x22\x8a\xd2\x34\x85\x47\x8d\xd2\x60\x66\xb9\x92\x60\x73\xb4\x80\x90\x95\xc6\x2a\x56\x41\xa1\xd5\x81\x33\xd2\x70\x54\xa5\x60\x60\xf8\x4e\xd6\x2a\x56\x41\xa6\x09\x2d\x01\x82\xc9\x51\x13\x03\xcc\x32\x55\x4a\x0b\x5b\xa5\x01\xa1\x34\x4e\x29\x57\x80\x42\x13\xb2\xaa\xd6\xca\xd1\x80\xcd\x89\x6b\x28\xa5\xa8\x71\x74\x5a\x8d\x35\xe6\xc4\x1a\x4c\x39\x9d\x0a\xd5\xfa\xaa\x46\xe1\xec\x80\x1d\x00\x47\x61\x54\x14\x0d\x4e\xe2\x08\x00\xa0\x40\x6d\x39\x8a\x3b\xb6\xe7\xf2\xa1\x7c\x12\x3c\xfb\x42\xd5\xda\x53\x9e\x7c\xa1\xea\x9e\x1b\xfb\xb3\xb4\xba\x5a\x41\x9a\xc2\x37\xe2\xbb\xdc\xae\xe1\x87\xab\xab\xa1\xfa\x5f\x86\xf4\x07\xb4\x7f\xbc\xba\x8a\x96\x00\x2f\x51\x63\x43\x53\x81\x9a\x62\xcf\xe9\x83\xa7\x74\x0d\x58\xda\x3c\xfe\x49\x69\xad\x8e\x5f\x51\x94\xb4\x84\x8b\xbb\x26\xd2\x55\xcd\x9f\x7f\xf1\x82\x7f\x5a\xa5\x71\x47\x2b\xd8\x60\x81\x4f\x5c\x70\xcb\xc9\xf4\x2a\xcb\xd6\x9d\x7b\x04\x59\x9f\x16\xff\x15\x6e\xc0\xff\x17\x17\x58\x39\xe7\x23\x34\xcb\x5e\x39\x50\x4c\x9e\xa9\x32\x09\x32\x16\x17\x7d\xfc\x93\xa4\x26\x9d\xc0\xca\x25\x2a\xbf\x13\x3b\xa5\xb9\xcd\xf7\x73\xf2\x81\xd0\x0a\x8e\x9e\xbc\x69\xe1\xe6\xeb\xf2\xe3\x20\x83\xd4\xbd\x8f\x31\x14\x7f\x1b\x62\x28\xdb\x22\x0c\x92\x70\xc0\x52\xd8\x2e\x61\x15\xdc\x8c\x80\x67\x83\x5c\x26\xa6\xc9\x70\x67\xc0\x3d\x09\x37\xa6\xa4\xeb\xba\x02\x82\x3b\x9e\x7c\xe3\x36\x67\x1a\x8f\x4b\xb8\xe8\x5a\x44\xf2\xd5\xf9\xbb\x8d\x53\x6f\x2a\xdd\xb6\x5f\xea\x0f\x23\x70\xa2\x6f\x05\xbf\xa1\xc4\x1d\x69\xb8\xbe\x0c\x7a\x46\xd2\x5c\xcb\xfb\x13\xc1\xb8\x0e\x6c\x3d\x8e\x6f\xb6\x8a\x3c\x9e\xc4\xe0\x81\xe2\xeb\xcb\x53\xcf\x2b\xb0\x6a\x1d\xfa\x3e\xf5\xea\xaf\xc0\x03\xda\x7c\x14\x8a\x1d\x48\xfd\xef\x74\xbf\x83\xf2\x36\x0e\x4c\xba\xe7\xfc\xb8\x02\xd5\xa9\x20\x7f\x51\x82\xcd\x26\xea\xb1\x97\x08\x41\x34\x84\xdf\x31\xa6\xc9\x98\xf5\x88\x15\x6c\x8e\x57\x81\xc6\x90\xd1\xf5\x0c\xbf\xd1\x04\xd0\x41\xe3\x0a\xb3\x1e\x58\xbf\xbe\x1c\x04\x33\x76\x3c\xaa\x83\x41\x50\x53\x44\xcd\x93\xb4\xc1\x02\x6e\x02\x40\x53\xf9\xf7\x29\xbf\x98\xf3\x79\x1b\x9f\x81\x66\x39\x19\x7f\xe0\xae\x6e\x3d\x26\x8f\x43\x80\x2b\x40\x3b\x59\xf7\xde\xc6\xaf\x72\xab\x9a\x1e\x33\x57\xf5\x75\xa3\xfc\x6e\x6b\x5e\x0c\xc9\xd8\xb8\x22\x57\x1a\x6e\xc6\xd3\x6b\x3a\xae\xa7\x7a\xb4\x36\x81\x05\x68\x42\x73\xd3\xd1\x85\x32\xb7\xb1\xdb\x9e\xde\x4a\x94\x17\x9c\xac\x09\xf7\x7c\xfa\x04\x05\x4a\x9e\xc5\x8b\x4d\xbd\x4a\x49\x65\xa1\x01\x08\x53\xab\x90\xd2\x8b\x21\x13\x13\x9e\xdc\xb5\x6d\x67\x7a\xe0\x29\x48\xff\x47\xae\x7c\xbb\x6f\x8d\x55\x87\x25\x3d\xdf\x2b\xea\x3a\x5c\x4f\xd6\xe4\xd4\x5d\x4d\x53\xf8\xfd\x40\x5a\x73\x46\xf5\x2e\xc7\x68\xeb\x66\xc9\x60\xfd\xd5\x94\x11\x3f\x90\x4e\x66\x66\x4a\x50\xd8\xa5\x6c\xef\x57\xda\xcc\xf8\x7e\xf4\xfd\xe1\xed\x84\xce\xfd\xfa\x2a\xe9\xd8\x39\x6a\x96\xdf\x3d\xea\x67\xd3\x9e\xb1\x26\x1e\x03\x68\x3a\x7a\x92\xb9\x21\x6a\xfa\x06\x79\xd6\x2d\x6c\x3b\xcf\x4b\x78\xeb\x5a\xbc\xaf\xa3\xce\xf3\xce\x3c\x3c\x83\xa4\x96\xa2\x89\xd1\x30\x0e\x20\x4c\xb0\xeb\x51\xb3\xbc\xce\x64\xb7\x28\x2d\x48\xa5\xf7\x28\x7a\x82\xb9\x74\xbf\x17\xdc\x3a\xec\xb8\x2f\x25\xff\xbb\x24\x28\xd0\xe6\xc9\x69\x5f\x6b\xcd\xff\x77\x6c\xce\x6e\x45\xff\x96\xba\x31\xce\x79\xd2\x1a\x92\x3f\xbf\x41\x9d\xfb\xfb\x1a\xbd\x46\xff\x04\x00\x00\xff\xff\x86\xe7\x67\xe3\x14\x0e\x00\x00" +var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x5b\x6f\xab\x46\x10\x7e\xe7\x57\x8c\xfc\x10\x61\x89\x40\xfa\x58\x2b\xc9\x51\x6a\xf5\xa8\xd5\x49\xd5\xa8\x4d\xce\x79\x9e\xc0\xd8\xac\x82\x77\xe9\xee\x62\x0b\x45\xf9\xef\xd5\x5e\xc0\x2c\x86\x5c\xaa\xb6\x3a\x3c\x44\x61\x99\xcb\x37\xdf\x5c\x76\xcc\x76\xb5\x90\x1a\xd6\xb2\xad\xb5\x88\xfc\xdb\xe7\x4a\x1c\xee\xc5\x13\x71\xd8\x48\xb1\x83\x45\xff\xbe\xe8\x25\x1a\xbe\x65\x8f\x15\x05\x52\xc3\xb3\x5e\xf2\x56\xe4\x4f\x54\xd8\x33\xe5\x05\x87\x47\x8b\x28\xca\xb2\x0c\xee\x25\x72\x85\xb9\x66\x82\x83\x2e\x51\x03\x42\xde\x28\x2d\x8a\x16\x6a\x29\xf6\xac\x20\x09\x07\xd1\x54\x05\x28\xb6\xe5\x56\x45\x0b\xc8\x25\xa1\x26\x40\x50\x25\x4a\x2a\x00\xf3\x5c\x34\x5c\xc3\x46\x48\x40\x68\x94\x51\x2a\x05\x60\x25\x09\x8b\xd6\x6a\x95\xa8\x40\x97\xc4\x24\x34\xbc\xb2\x38\x7a\x2d\x67\xad\x30\x62\x0e\x53\x49\xa7\x42\x56\x5f\x58\x14\xc6\x0e\xe8\x01\x70\xac\x94\x88\xa2\xc1\x49\x1c\x01\x00\xd4\x28\x35\xc3\xea\xa6\xd8\x31\x7e\xd7\x3c\x56\x2c\xff\x42\xed\xca\x53\x9e\x7e\xa1\xf6\x96\x29\xfd\x33\xd7\xb2\x4d\x20\xcb\xe0\x1b\xb1\x6d\xa9\x57\xf0\xc3\xc5\xc5\x50\xfd\x41\x91\xfc\x80\xf6\x8f\x17\x17\xd1\x12\xe0\x39\x72\x36\x24\xd5\x28\x29\xf6\x9c\xde\x79\x4a\x57\x80\x8d\x2e\xe3\x9f\x84\x94\xe2\xf0\x15\xab\x86\x96\x70\x76\xe3\x22\x4d\x2c\x7f\xfe\xc5\x0b\xfe\xa9\x85\xc4\x2d\x25\xb0\xc6\x1a\x1f\x59\xc5\x34\x23\x75\x54\x59\x76\xee\xcc\x53\x91\xf6\x69\xf1\x5f\xe1\x0a\xfc\x7f\x71\x8d\xad\x71\x3e\x42\xb3\x3c\x2a\x07\x8a\xe9\x13\xb5\x2a\xc5\xa2\x88\xeb\x63\xfc\x93\xa4\xa6\xbd\x40\x62\x12\x55\xde\x54\x5b\x21\x99\x2e\x77\x73\xf2\x81\x50\x02\x07\x4f\xde\xb4\xb0\xfb\xba\xfc\x38\xc8\x20\x75\x6f\x63\x0c\xc5\x5f\x87\x18\xca\x76\x08\x83\x24\xec\xb1\xa9\x74\x9f\xb0\x16\xae\x46\xc0\xf3\x41\x2e\x53\xe5\x32\xdc\x1b\x30\x4f\xca\x94\x6a\xe8\xd2\x56\x40\xd0\xe3\xe9\x37\xa6\xcb\x42\xe2\x61\x09\x67\xfd\x88\x48\xbf\x1a\x7f\xd7\x71\xe6\x4d\x65\x9b\xee\x8b\xfd\x30\x02\x57\x1d\x47\xc1\x6f\xc8\x71\x4b\x12\x2e\xcf\x83\x99\x91\xba\xb6\xbc\x3d\x11\x8c\x6d\x60\xab\x71\x7c\xb3\x55\xe4\xf1\xa4\x0a\xf7\x14\x5f\x9e\x9f\x7a\x4e\x40\x8b\x55\xe8\xfb\xd4\xab\x6f\x81\x3b\xd4\xe5\x28\x14\x3d\x90\x7a\x50\xf4\xdf\x32\x9e\x84\x38\x1f\x94\xfb\xae\xc6\xe7\x76\x7c\xb9\x97\x25\x9c\xbd\x11\xdb\x75\x1c\xa0\x30\xcf\xfb\xd9\x08\x54\xa7\xa8\xf9\x45\x54\xc5\x6c\x7a\xef\x8f\x12\x21\x08\x97\xa6\x9b\xa2\x90\xa4\xd4\x6a\x44\x24\xba\xe3\x24\xd0\x18\xe6\x61\x35\x9f\x95\x68\x02\xeb\x60\xe2\x85\xe5\x12\x38\xb8\x3c\x1f\xc4\x33\xf6\x3d\x2a\xa0\x41\x5c\x53\x5c\xcd\xf3\xb4\xc6\x1a\xae\x02\x40\x53\x55\xe3\x0b\xe5\x6c\xce\xe7\x75\xfc\x0e\x34\xcb\xc9\xf8\x03\x77\x76\x66\xa9\x32\x0e\x01\x26\x80\x7a\xb2\x61\xbc\x8d\x5f\xf9\x46\xb8\xe1\x34\xd7\x2e\x76\xc2\xfe\xbf\x9d\xf2\x7d\x74\x44\x35\xe4\x69\x6d\x5a\x40\x48\xb8\x1a\xdf\x88\xd3\x21\x3f\xda\xeb\xda\xc5\x1c\xa0\x09\xcd\x4d\x47\x17\xca\x5c\xc7\x66\x23\x7b\x2d\x87\x5e\x70\xb2\x5c\xcc\xf3\xe9\x13\xd4\xc8\x59\x1e\x2f\xd6\x76\x3d\xe3\x42\x83\x03\x08\x53\xeb\x95\x90\x8b\x21\x13\x13\x9e\x4c\x53\x77\x7b\x42\xe0\x29\xa8\x8c\x8f\x0c\x84\x6e\x87\x1b\xab\x0e\xab\x7d\x7e\x92\xd8\x12\x5d\x4d\x96\xeb\x54\x1b\x67\x19\xfc\xbe\x27\x29\x59\x41\x76\x3f\x2c\x68\x63\xee\xa7\xc1\x4a\x2d\x29\x27\xb6\x27\x99\xce\xdc\x53\x41\xcd\x37\xbc\x6b\xbd\xcc\xed\x0d\xc7\xeb\xf4\x0f\x6f\x27\x74\xee\x57\x62\x4e\x87\xde\x91\x5b\xa8\x77\x28\x9f\x54\x77\x56\xb8\x78\x14\xa0\xea\xe9\x49\xe7\x2e\x66\xe5\x4b\xdb\x8d\xa4\xb7\x1b\xb4\x1b\x4a\xcf\x61\x43\x76\x78\x5f\x46\x43\xe9\x8d\x3b\xf6\x1d\x24\x75\x14\x4d\x5c\x1c\xe3\x00\xc2\x04\x9b\xf1\x35\xcb\xeb\x4c\x76\xeb\x46\x03\x17\x72\x87\xd5\x91\x60\xc6\xcd\x6f\x10\xb3\x62\x1b\xee\x1b\xce\xfe\x6a\x08\x6a\xd4\x65\x7a\x3a\xf2\x3a\xf3\xff\x1e\x9b\xb3\x9b\xd6\x3f\xa5\x6e\x8c\x73\x9e\x34\x47\xf2\xe7\x57\xa8\x33\x7f\x5f\xa2\x97\xe8\xef\x00\x00\x00\xff\xff\x2c\xdd\x12\x23\x68\x0e\x00\x00" func lockedtokensAdminCustody_create_only_shared_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3898,11 +3898,11 @@ func lockedtokensAdminCustody_create_only_shared_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_shared_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x64, 0x20, 0x65, 0xd0, 0x84, 0xcb, 0x4f, 0xd4, 0xfb, 0x70, 0x39, 0x32, 0xb4, 0xa6, 0x37, 0x5f, 0x1, 0x45, 0x3e, 0xe6, 0xf3, 0x56, 0x6b, 0xe1, 0xfe, 0x1f, 0x9a, 0xa3, 0x91, 0x6f, 0x2e, 0x50}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0xc7, 0x75, 0xb1, 0xca, 0x70, 0x17, 0x98, 0x65, 0x16, 0x10, 0x99, 0x86, 0xeb, 0x85, 0xaf, 0xbf, 0xb4, 0x7e, 0x9b, 0xab, 0x68, 0x96, 0xd4, 0xfc, 0x44, 0x50, 0x73, 0x16, 0xc4, 0x4a, 0x7d}} return a, nil } -var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\x7c\x08\x64\xc0\x91\xbc\xc7\x1a\x49\x16\xa9\xd1\x45\x8b\x4d\xd1\xa0\x4d\x77\xcf\x13\x69\x6c\x11\x91\x49\x95\x1f\x36\x8c\x20\xff\xbd\xa0\x44\xc9\xa2\x44\x25\x76\xd1\x5e\xaa\xc3\x62\x4d\xbe\x99\x79\xf3\x38\x1c\x4e\xd8\xae\x12\x52\xc3\x5a\x1e\x2b\x2d\x22\xf7\xeb\x4b\x29\x0e\x4f\xe2\x85\x38\x6c\xa4\xd8\xc1\xac\xfb\x3d\xeb\x10\x86\x6f\xd9\x73\x49\x1e\xaa\xbf\xd6\x21\x1f\x44\xf6\x42\x79\xbd\xa6\x1c\xb0\xbf\x34\x8b\xa2\x34\x4d\xe1\x49\x22\x57\x98\x69\x26\x38\xe8\x02\x35\x20\x64\x46\x69\x91\x1f\xa1\x92\x62\xcf\x72\x92\x70\x10\xa6\xcc\x41\xb1\x2d\xaf\x4d\xb4\x80\x4c\x12\x6a\x02\x04\x55\xa0\xa4\x1c\x30\xcb\x84\xe1\x1a\x90\xe7\x80\x1c\x0c\x2f\xeb\x48\x35\xbc\xdd\xdb\x08\x09\x08\x46\x91\x8c\x22\x7d\x8a\x1a\x47\x00\x00\x15\x4a\xcd\xb0\xbc\xcf\x77\x8c\x3f\x9a\xe7\x92\x65\x5f\xe9\xb8\x72\xea\x24\x5f\xe9\xf8\xc0\x94\xfe\x89\x6b\x79\x5c\x40\x9a\xc2\x77\x62\xdb\x42\xaf\xe0\xd3\x72\xd9\x37\xff\x53\x91\xbc\xc0\xfa\x07\x67\xbd\x31\xe5\xa5\xa6\x9f\x96\xcb\x65\x34\x87\xd7\xa8\x09\x2f\xa9\x42\x49\xb1\x53\xee\xd1\x09\xb7\x02\x34\xba\x88\x7f\x14\x52\x8a\xc3\x37\x2c\x0d\xcd\xe1\xea\xbe\x91\xa3\xb3\xb5\x5f\x49\xda\x29\xe9\x76\xe1\x16\xdc\xff\xe2\x0a\x8f\xd6\xd3\xc0\xf5\xdc\xb3\xb5\xa2\x9e\x6f\xd9\x99\x7a\x21\x93\x17\x3a\xaa\x04\xf3\x3c\xae\x4e\x32\x04\x8f\x25\xe9\x00\x0b\x28\x50\x15\xf7\xe5\x56\x48\xa6\x8b\xdd\x14\xde\x03\x2d\xe0\xe0\x34\x0c\x83\x9b\xdd\xf9\xe5\x24\xbd\x13\xfc\x98\xa3\x0f\x7f\x9f\xa2\x8f\x6d\x19\x76\x14\x7b\xf2\x07\x09\x8e\xea\xeb\x1d\x76\x63\xec\x04\xb5\x31\x70\xc4\xcb\x96\xc6\x1e\x4d\xa9\xd7\x58\xe1\x33\x2b\x99\x3e\xc2\xed\x40\xd0\xac\xdd\x62\xa4\x12\xa5\x85\xc4\x2d\x75\x0e\xec\x97\x30\xa5\x0c\xdd\xd4\x95\xec\x35\x9a\xe4\x3b\xd3\x45\x2e\xf1\x30\x87\xab\xae\x4f\x25\xdf\x6c\xbc\xbb\x38\x75\xae\xd2\x4d\xbb\x53\x6f\x0c\xc8\x95\xa7\x7e\xf4\x2b\x72\xdc\x92\x84\x9b\x6b\xaf\x71\x25\x4d\xa7\x79\x18\x01\xe3\x3a\xb1\xd5\x30\xbf\xc9\xea\x76\x7c\x12\x85\x7b\x8a\x6f\xae\xc7\x91\x17\xa0\xc5\xca\x8f\x3d\x8e\xfa\x47\xe3\xe5\x11\x75\x31\x48\x45\xf7\x50\xff\xb9\xdc\x1f\xb0\xbc\x8b\x3d\x97\xf6\x3b\x3f\x2f\xcf\x34\x94\xe4\xcf\xa2\xcc\x27\x0f\xea\xe9\x84\xf0\x49\x34\x82\xdf\xe7\xb9\x24\xa5\x56\x03\x55\xb0\x59\x5e\x78\x16\x7d\x45\x57\x13\xfa\x46\x01\xa2\xfd\xdb\xe8\x9d\xba\xe7\xfd\xe6\xba\x97\xcc\x30\xf0\xa0\x0e\x7a\x49\x85\x84\x9a\x16\x69\x8d\x15\xdc\x7a\x84\x42\xe7\xef\x8e\xfc\x6a\x2a\xe6\x5d\x7c\x06\x9b\x79\x30\x7f\x2f\x5c\xdd\x74\x54\x11\xfb\x04\x17\x80\x3a\x58\xf7\xce\xc7\x2f\x7c\x23\x9a\x1e\x33\x55\xf5\x75\x03\xff\xdf\xd6\x7c\xd9\x17\x63\x6d\x8b\x5c\x48\xb8\x1d\xbe\xaa\xe1\xbc\x9e\xeb\x97\xbf\x49\xcc\x63\xe3\xbb\x0b\x67\xe7\x63\xee\x62\x3b\xc2\xbd\x77\x50\x0e\x18\xac\x09\xfb\x7d\xfe\x0c\x15\x72\x96\xc5\xb3\x75\x3d\xcf\x71\xa1\xa1\x21\xd8\x8d\x68\x99\x4b\x4f\xd2\x86\x24\xf1\x8c\x66\x7d\x31\x02\xc1\xec\xcd\x6d\xc7\x0d\x2f\x98\x57\x01\x97\xdc\xfa\x76\x74\x1c\x9a\xf6\xab\x7a\xba\x5d\xd4\xa5\xb8\x0a\x96\x65\xe8\xba\xa6\x29\xfc\xb6\x27\x29\x59\x4e\xa0\x0b\x82\x9c\x36\xf6\x39\xe9\x8d\xe1\x92\x32\x62\x7b\x92\xc9\xc4\xb3\xe2\xd5\xb6\xe1\xed\x15\x4b\x9b\x07\xfe\xf4\xfa\xfd\xee\xfc\xf8\xc1\xdd\x18\xcd\xe9\xd0\x05\x6a\x86\xf0\x1d\xca\x17\xd5\xae\xe5\x4d\x3e\x0a\x50\x75\xf2\x24\x53\xef\xa8\x3a\xf5\xc8\xb3\x2e\x62\xdb\x7c\x5e\xfd\x8b\xd7\xf2\x7d\x1b\x34\x9f\x0f\x9e\xc4\x33\x44\x6a\x25\x0a\xbc\x0e\xc3\x04\xfc\x03\xb6\x6d\x6a\x52\xd7\x89\xd3\xad\x8c\x06\x2e\xe4\x0e\xcb\x93\xc0\x8c\xdb\xbf\x5b\xec\xc0\x6e\xb5\x37\x9c\xfd\x65\x08\x2a\xd4\x45\x32\x6e\x6d\xad\xfb\x7f\x4f\xcd\xc9\xc1\xe8\x9f\x4a\x37\xe4\x39\x2d\x5a\x23\xf2\x97\x77\xa4\xb3\xff\xbe\x45\x6f\xd1\xdf\x01\x00\x00\xff\xff\xd2\x06\xbd\xd2\x9c\x0e\x00\x00" +var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xde\x63\x8d\x24\x8b\xd4\xe8\xa2\xc5\xa6\x68\xd0\x26\xbb\xe7\x89\x34\xb6\x88\xc8\xa4\x4a\x52\x36\x8c\x20\xef\x5e\x50\xa4\x64\x51\xa2\x92\xb8\x68\x8b\xf2\x10\x44\xe4\x0c\xe7\x9b\x6f\x7e\x38\x66\xbb\x4a\x48\x0d\x6b\x79\xac\xb4\x88\xdc\xd7\x97\x52\x1c\x1e\xc4\x33\x71\xd8\x48\xb1\x83\x59\xf7\x3d\xeb\x24\x6a\xbe\x65\x4f\x25\x79\x52\xfd\xbd\x4e\xf2\x4e\x64\xcf\x94\x37\x7b\xca\x09\xf6\xb7\x66\x51\x94\xa6\x29\x3c\x48\xe4\x0a\x33\xcd\x04\x07\x5d\xa0\x06\x84\xac\x56\x5a\xe4\x47\xa8\xa4\xd8\xb3\x9c\x24\x1c\x44\x5d\xe6\xa0\xd8\x96\x37\x2a\x5a\x40\x26\x09\x35\x01\x82\x2a\x50\x52\x0e\x98\x65\xa2\xe6\x1a\x90\xe7\x80\x1c\x6a\x5e\x36\x96\x1a\xf1\xf6\x6c\x23\x24\x20\xd4\x8a\x64\x14\xe9\x93\xd5\x38\x02\x00\xa8\x50\x6a\x86\xe5\x6d\xbe\x63\xfc\xbe\x7e\x2a\x59\xf6\x95\x8e\x2b\xc7\x4e\xf2\x95\x8e\x77\x4c\xe9\x9f\xb8\x96\xc7\x05\xa4\x29\x7c\x27\xb6\x2d\xf4\x0a\x3e\x2d\x97\x7d\xf5\x47\x45\xf2\x0c\xed\x1f\x9c\xf6\xa6\x2e\xcf\x55\xfd\xb4\x5c\x2e\xa3\x39\xbc\x44\xd6\xbc\xa4\x0a\x25\xc5\x8e\xb9\x7b\x47\xdc\x0a\xb0\xd6\x45\xfc\xa3\x90\x52\x1c\xbe\x61\x59\xd3\x1c\x2e\x6e\x2d\x1d\x9d\xae\x59\x25\x69\xc7\xa4\x3b\x85\x6b\x70\xff\xc5\x15\x1e\xcd\x4d\x83\xab\xe7\x9e\xae\x21\xf5\xe3\x9a\x9d\xaa\x67\x32\x79\xa6\xa3\x4a\x30\xcf\xe3\xea\x44\x43\x30\x2c\x49\x27\xb0\x80\x02\x55\x71\x5b\x6e\x85\x64\xba\xd8\x4d\xc9\x7b\x42\x0b\x38\x38\x0e\xc3\xc2\xf6\x74\x7e\x3e\x48\x2f\x82\xef\x63\xf4\xc5\xdf\x86\xe8\xcb\xb6\x08\x3b\x88\x3d\xfa\x83\x00\x47\xf9\xf5\x06\xba\xb1\xec\x04\xb4\xb1\xe0\x08\x97\x49\x8d\x3d\xd6\xa5\x5e\x63\x85\x4f\xac\x64\xfa\x08\xd7\x03\x42\xb3\xf6\x88\x91\x4a\x94\x16\x12\xb7\xd4\x5d\x60\x56\xc2\x94\xaa\xe9\xaa\xc9\x64\xaf\xd1\x24\xdf\x99\x2e\x72\x89\x87\x39\x5c\x74\x7d\x2a\xf9\x66\xec\xdd\xc4\xa9\xbb\x2a\xdd\xb4\x27\xcd\xc1\x00\x5c\x79\xea\x47\xbf\x22\xc7\x2d\x49\xb8\xba\xf4\x1a\x57\x62\x3b\xcd\xdd\x48\x30\x6e\x1c\x5b\x0d\xfd\x9b\xcc\x6e\x87\x27\x51\xb8\xa7\xf8\xea\x72\x6c\x79\x01\x5a\xac\x7c\xdb\x63\xab\x7f\xd8\x5b\xee\x51\x17\x03\x57\x74\x4f\xea\x51\xd1\xbf\xcb\xf8\xc2\xc7\xf9\xa8\xec\xb9\x1a\xee\x37\x6d\xd8\x7e\xcc\xe1\xe2\x1d\xdf\x6e\x62\x0f\x85\x59\x1f\x67\xc3\x53\x0d\x51\xf3\xb3\x28\xf3\xc9\xf0\x3e\x9c\x24\x7c\x10\x36\x4c\xb7\x79\x2e\x49\xa9\xd5\x80\x48\xb4\xdb\x0b\x4f\xa3\x1f\x87\xd5\x74\x54\xa2\x00\xd6\x7e\x19\x7b\xe9\xe2\x19\xb8\xba\xec\xf9\x33\xb4\x3d\x48\xa0\x9e\x5f\x21\xae\xa6\x79\x5a\x63\x05\xd7\x1e\xa0\x50\xd6\xb8\x44\xb9\x98\xb2\x79\x13\x7f\x00\xcd\x3c\xe8\xbf\x67\xae\xe9\x56\xaa\x88\x7d\x80\x0b\x40\x1d\x2c\x18\x77\xc7\x2f\x7c\x23\x6c\x73\x9a\x2a\x97\xa6\xf3\xff\xb7\x95\xf2\xff\xa8\x88\xb2\xcf\xd3\xda\x94\x80\x90\x70\x3d\x7c\xa9\xc3\x2e\x3f\x35\xd3\x84\xf5\xd9\x43\xe3\x5f\x17\xf6\xce\x97\xb9\x89\xcd\x58\xf8\x56\x0c\x9d\x60\x30\x5d\xcc\xfa\xfc\x19\x2a\xe4\x2c\x8b\x67\xeb\x66\x46\xe4\x42\x83\x05\xd8\x8d\x7d\x99\x73\x4f\xd2\x86\x24\xf1\x8c\x66\x7d\x32\x02\xc6\x4c\x5d\xb7\x23\x8c\x67\xcc\x4b\x8e\x73\x7a\x42\x3b\x8e\x0e\x55\xfb\x09\x3f\xdd\x4c\x9a\x2c\x5d\x05\x33\x36\x54\xc9\x69\x0a\xbf\xed\x49\x4a\x96\x13\xe8\x82\x20\xa7\x8d\x79\xa2\x7a\xa3\xbd\xa4\x8c\xd8\x9e\x64\x32\xf1\x54\x79\x69\x5f\xf3\xb6\xfa\x52\x3b\x34\x9c\x5e\xd4\xdf\xdd\x3d\xbe\x71\x37\x9a\x73\x3a\x74\x86\xec\x60\xbf\x43\xf9\xac\xda\xbd\xdc\xfa\xa3\x00\x55\x47\x4f\x32\xf5\x36\x2b\x97\xdd\xb6\x2b\xbd\x5f\xa3\x6d\x5f\x7a\xf1\x6b\xb2\xc5\xfb\x3a\xe8\x4b\xef\x3c\xb3\x1f\x20\xa9\xa5\x28\xf0\x76\x0c\x1d\xf0\x03\x6c\x3a\xd8\x24\xaf\x13\xd1\xad\x6a\x0d\x5c\xc8\x1d\x96\x27\x82\x19\x37\xbf\x85\xcc\x8f\x00\xc3\x7d\xcd\xd9\x9f\x35\x41\x85\xba\x48\xc6\x5d\xaf\xbd\xfe\x9f\x63\x73\x72\xd8\xfa\xbb\xd4\x0d\x71\x4e\x93\x66\x49\xfe\xf2\x06\x75\xe6\xef\x6b\xf4\x1a\xfd\x15\x00\x00\xff\xff\x77\x82\xc0\xb8\xf0\x0e\x00\x00" func lockedtokensAdminCustody_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3918,7 +3918,7 @@ func lockedtokensAdminCustody_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0x92, 0x5c, 0xeb, 0xa5, 0xcc, 0x4c, 0x29, 0x85, 0x25, 0x69, 0x9d, 0x68, 0x42, 0x65, 0x66, 0x4c, 0xe9, 0x3c, 0xc2, 0xe1, 0xfb, 0x9, 0x67, 0xc3, 0xc8, 0x9e, 0x35, 0x51, 0x8a, 0x8a, 0xb3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0x27, 0xfc, 0x55, 0xc7, 0xb, 0xbc, 0x92, 0x51, 0x20, 0xe9, 0x68, 0x4b, 0x57, 0xdf, 0x6f, 0x96, 0xc8, 0xa, 0xfd, 0x61, 0x59, 0xdd, 0xd1, 0x1d, 0xe0, 0x77, 0xa, 0xbd, 0xb7, 0x39, 0xb4}} return a, nil } @@ -5262,7 +5262,7 @@ func stakingcollectionCreate_machine_accountCdc() (*asset, error) { return a, nil } -var _stakingcollectionCreate_new_tokenholder_acctCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x56\x49\x6f\xe3\x36\x14\xbe\xfb\x57\xbc\xc9\x21\x90\x00\x8f\x8c\x5e\x8d\x24\x40\x6a\x74\x43\xa6\x68\x80\xa4\xd3\xc3\x20\x07\x46\x7c\x96\x58\xd3\xa4\x40\x52\x76\x85\x22\xff\xbd\xe0\x22\x89\x94\xe5\xc6\x5d\x50\xa0\xbe\x58\x24\xdf\xf2\xbd\xef\x2d\x24\xdb\x37\x52\x19\xd8\xa8\xae\x31\x72\x11\x56\xdf\x72\x79\x7c\x96\x3b\x14\xb0\x55\x72\x0f\x57\xc3\xfa\x6a\x90\x68\x45\xc5\x5e\x39\x26\x52\xf1\xde\x20\xf9\x49\x96\x3b\xa4\x6e\x4f\x07\xc1\x78\xeb\x2a\xf6\xf9\x64\xc8\x8e\x89\x6a\x23\x39\xc7\xd2\x30\x19\xfb\x3f\x39\xbb\x5a\x2c\x56\x2b\x78\xae\x99\x06\xa3\x88\xd0\xc4\x6b\x10\xce\xe5\x51\x83\xa9\x11\x4a\x29\x8c\xb2\xf2\x0a\xe4\xd6\xed\x70\xe7\x19\x48\x59\xca\x56\x18\xab\x6f\x24\x94\x0a\x89\x41\x20\x20\xf0\x98\xc0\x2d\xdc\xdf\xf7\x92\x53\x6b\xe1\xf5\x57\x2c\x0d\x10\x41\x41\x1b\xa9\x10\x98\x01\x26\x82\x56\x64\x90\x70\x2d\x81\x50\xca\x44\x05\x04\xb4\x47\x0d\xe5\x18\x52\x30\x64\xa4\x43\x14\x6b\x5b\xf5\x07\xc4\xc6\xda\xdd\x33\x41\xc1\xd4\xc4\x80\xb1\x11\x52\x89\x1a\x84\xb4\x2e\x0f\x84\x33\x6a\x01\x5b\x75\xfc\x8d\x69\x63\x1d\xc4\x50\x23\x34\xcf\x32\xd5\x20\xa6\x3f\x5d\x42\x27\x5b\x10\x88\xd4\x42\x41\x66\x6a\x54\x40\x91\x63\xb0\x1c\x1b\x54\xa8\x65\xab\x4a\xb4\x16\xa5\x5d\x1e\xe4\x0e\x2d\xd3\xb0\xc3\x2e\x64\x35\xb6\xbd\x58\x44\x19\xc9\x9a\xf6\x95\xb3\xf2\x01\x3b\xbd\x86\x2f\xbe\xd0\x8a\x07\xec\x3e\x31\x6d\xbe\x11\x46\x75\x2f\x39\xfc\xbe\x00\x00\x68\x14\x36\x44\x61\xa6\x59\x25\x50\xad\x81\xb4\xa6\xce\xbe\x96\x4a\xc9\xe3\x67\xc2\x5b\x5c\xc2\x93\x91\x8a\x54\xb8\x84\x0d\x69\xc8\x2b\xe3\xcc\x30\xd4\x39\x5c\xdf\x7b\xbf\xd6\x90\xb3\x64\x7f\xab\x15\x6c\x7c\x66\x27\x3c\xbb\x1c\x12\x4a\xc1\x03\x73\x31\x14\x83\x1a\x47\x63\x85\x83\x45\xb8\x85\xf0\x95\x35\xa4\xb3\xa0\x3c\xb8\x7c\x90\xdf\x4a\x65\x2d\xd8\x9c\x8d\x81\x86\x80\xfa\xdf\x68\xaf\x70\xce\x08\xa5\x23\x2b\x6b\xab\x5e\x0c\xcb\x25\xd4\x44\xd7\xf7\xbc\x92\x8a\x99\x7a\xef\x4f\x93\xad\x25\x1c\x91\x55\xb5\xf1\x47\xfe\x7b\xc4\xf3\x96\x30\xf0\x1d\x9a\x31\x9b\x3f\x12\x41\x2a\x54\x23\x79\x5d\x9f\xba\x69\x67\xa4\x74\x98\x48\x79\xd4\xdd\x8c\xdd\x75\x1b\x58\x29\xca\x28\x2d\x85\xf6\xc9\x2a\x2a\x34\xa3\xac\xce\xb6\x52\x3d\x12\x53\xaf\xd3\x56\x8b\x16\xc1\x53\xc8\xb5\x95\xcd\xbf\x7c\xf5\xf2\xe1\x02\x48\x70\xfb\x2e\xd6\x11\x62\x07\x44\x7f\x88\xb8\xb8\x71\xe5\x96\x0c\xb1\xe2\x17\x66\x6a\xaa\xc8\x31\x87\xeb\x77\xd0\xde\x25\xb4\xff\xac\x7d\xd5\xed\x03\xe3\x91\xd3\xe9\xc0\x89\xfa\x6c\x86\xf5\xd0\x80\x37\x1f\x53\xb6\xbc\x85\x48\x35\x4b\xea\xcd\x27\xf3\x9e\x52\x85\x5a\xf7\x25\x6b\xab\xce\xae\x97\x89\x68\xcc\xd7\xfa\x0c\x7b\x83\x42\x9e\x04\xf9\x44\x0e\xe7\x47\xc5\xcc\x7c\x73\x7d\x37\xc4\x1e\x9a\x6f\x64\x66\x8c\x3e\x6a\x97\xbe\x86\x34\x39\x60\x1a\xe3\xcd\xc7\x88\xa0\x69\x4c\xeb\xb3\x73\x3c\xaa\xaa\xb9\xb0\x26\xc4\x6f\x48\x03\xb7\x31\x9e\xb9\x02\x4f\x7c\x17\x4c\xeb\x16\x6f\xae\xcf\xf9\xbf\xcb\x2e\x40\x96\xcf\x51\x91\xb8\x76\xec\xe9\x3a\x3b\xcd\xe5\x00\x3c\xe5\x84\x98\xd9\x86\x0b\xc6\x7f\x10\x5b\xf9\xe8\x12\x32\x25\x66\x66\x9c\xc6\x40\xdc\xf8\xb3\x79\x76\xbe\xa1\x0e\x17\x90\xa0\xd0\x8a\x30\x52\x0e\xa4\xe5\x93\x81\xe2\x4f\x42\xc5\xbc\xcb\x6f\xa0\xf4\x4f\xda\x73\x39\x93\xee\x9f\x1a\x54\xc4\xde\x3f\x7a\xda\xbc\x7f\x3f\x1b\x16\xfb\x76\x78\x1b\xfd\x0b\xc0\x73\xb8\x1e\xde\x56\xc5\x67\x4b\xd4\x5d\xb6\x0a\xda\xab\xc1\x93\x3b\x18\x51\xcc\xa4\xc4\x8f\x92\xf0\x44\x82\xe8\xfd\x64\x33\xd1\xb4\x26\x3c\x56\x7a\x5c\x83\x05\xb6\x4d\x72\x51\x94\x35\x96\xbb\x2c\x3f\x7f\x7d\x9d\xef\x47\xdf\x93\xf3\xcf\xb8\x30\xaf\x4e\xf6\x4f\x2d\xd8\x5f\x5f\x39\x2e\xec\xf5\x48\xf8\x72\x56\x3a\x2a\xfa\x75\x12\xcc\x89\x74\x7e\x6a\xc0\x4e\x8a\x79\xc4\x27\x3b\x73\x83\xc3\xf7\x48\xff\xf5\x06\xc8\x35\xfe\x6f\xb9\x13\x8c\xff\xf7\x94\x25\xf3\xe5\xd1\x0f\x35\x20\x93\xfb\xd2\xbd\xe5\x1d\x0b\x74\xe6\x41\x9d\x8e\x16\x3d\x05\x71\xd1\x08\xef\xa7\xf6\x85\x81\xdd\xa5\xe4\xff\x03\x3a\xa2\xab\xe7\x2f\x8d\xfa\xb9\x30\x4f\x07\xfe\x85\xc0\x66\x27\xbf\x4f\xcf\xdb\x1f\x01\x00\x00\xff\xff\x67\x6a\x0f\xb0\x20\x0e\x00\x00" +var _stakingcollectionCreate_new_tokenholder_acctCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x56\x49\x6f\xe3\x36\x14\xbe\xfb\x57\xbc\xc9\x21\x90\x00\x8f\x0c\xf4\x68\x24\x01\x52\xa3\x1b\x32\x45\x03\x24\x33\x3d\x0c\x72\x60\xc4\x67\x8b\x35\x4d\x0a\x24\x65\x57\x28\xf2\xdf\x0b\x2e\x92\x48\x49\x46\xdc\x05\x05\xea\x8b\x45\xf2\x2d\xdf\xfb\xde\x42\xb2\x43\x2d\x95\x81\x8d\x6a\x6b\x23\x17\x61\xf5\x3d\x97\xa7\x67\xb9\x47\x01\x5b\x25\x0f\x70\xd5\xaf\xaf\x7a\x89\x46\xec\xd8\x2b\xc7\x44\x2a\xde\xeb\x25\x3f\xc9\x72\x8f\xd4\xed\xe9\x20\x18\x6f\x5d\xc5\x3e\x9f\x0c\xd9\x33\xb1\xdb\x48\xce\xb1\x34\x4c\xc6\xfe\x27\x67\x57\x8b\xc5\x6a\x05\xcf\x15\xd3\x60\x14\x11\x9a\x78\x0d\xc2\xb9\x3c\x69\x30\x15\x42\x29\x85\x51\x56\x5e\x81\xdc\xba\x1d\xee\x3c\x03\x29\x4b\xd9\x08\x63\xf5\x8d\x84\x52\x21\x31\x08\x04\x04\x9e\x12\xb8\x85\xfb\xfb\x51\x72\x6a\x2d\xbc\xfe\x86\xa5\x01\x22\x28\x68\x23\x15\x02\x33\xc0\x44\xd0\x8a\x0c\x12\xae\x25\x10\x4a\x99\xd8\x01\x01\xed\x51\x43\x39\x84\x14\x0c\x19\xe9\x10\xc5\xda\x56\xfd\x01\xb1\xb6\x76\x0f\x4c\x50\x30\x15\x31\x60\x6c\x84\x54\xa2\x06\x21\xad\xcb\x23\xe1\x8c\x5a\xc0\x56\x1d\x7f\x67\xda\x58\x07\x31\xd4\x08\xcd\xb3\x4c\x35\x88\xe9\x4e\x97\xd0\xca\x06\x04\x22\xb5\x50\x90\x99\x0a\x15\x50\xe4\x18\x2c\xc7\x06\x15\x6a\xd9\xa8\x12\xad\x45\x69\x97\x47\xb9\x47\xcb\x34\xec\xb1\x0d\x59\x8d\x6d\x2f\x16\x51\x46\xb2\xba\x79\xe5\xac\x7c\xc0\x56\xaf\xe1\xab\x2f\xb4\xe2\x01\xdb\x4f\x4c\x9b\xef\x84\x51\xed\x4b\x0e\x7f\x2c\x00\x00\x6a\x85\x35\x51\x98\x69\xb6\x13\xa8\xd6\x40\x1a\x53\x65\xdf\x4a\xa5\xe4\xe9\x0b\xe1\x0d\x2e\xe1\xc9\x48\x45\x76\xb8\x84\x0d\xa9\xc9\x2b\xe3\xcc\x30\xd4\x39\x5c\xdf\x7b\xbf\xd6\x90\xb3\x64\x7f\xab\x15\x6c\x7c\x66\x47\x3c\xbb\x1c\x12\x4a\xc1\x03\x73\x31\x14\xbd\x1a\x47\x63\x85\x83\x45\xb8\x85\xf0\x95\xd5\xa4\xb5\xa0\x3c\xb8\xbc\x97\xdf\x4a\x65\x2d\xd8\x9c\x0d\x81\x86\x80\xba\xdf\x60\xaf\x70\xce\x08\xa5\x03\x2b\x6b\xab\x5e\xf4\xcb\x25\x54\x44\x57\xf7\x7c\x27\x15\x33\xd5\xc1\x9f\x26\x5b\x4b\x38\x21\xdb\x55\xc6\x1f\xf9\xef\x01\xcf\x5b\xc2\xc0\x0f\x68\x86\x6c\xfe\x4c\x04\xd9\xa1\x1a\xc8\x6b\xbb\xd4\x8d\x3b\x23\xa5\xc3\x44\xca\x83\xee\x66\xe8\xae\xdb\xc0\x4a\x51\x46\x69\x29\xb4\x4f\x56\xb1\x43\x33\xc8\xea\x6c\x2b\xd5\x23\x31\xd5\x3a\x6d\xb5\x68\x11\x3c\x85\x5c\x5b\xd9\xfc\xeb\x37\x2f\x1f\x2e\x80\x04\xb7\xef\x62\x1d\x20\xb6\x40\xf4\x87\x88\x8b\x1b\x57\x6e\xc9\x10\x2b\x7e\x65\xa6\xa2\x8a\x9c\x96\x29\xd8\xcf\xda\x9f\xeb\xf1\xbe\xb0\x34\xfa\x45\x0e\xd7\xef\x04\x78\x97\x64\xea\xb3\xf6\x85\x7a\x08\x49\x8a\x70\x8e\x67\x54\xd4\x9a\x33\x89\x0a\x3d\x7b\xf3\x31\xc5\xe6\x2d\x44\xaa\x59\x52\xa2\x3e\xff\xf7\x94\x2a\xd4\xba\xab\x72\x5b\xa8\x76\xbd\x4c\x44\x63\x8a\xd7\x67\x08\xef\x15\xf2\x24\xc8\x27\x72\x3c\x3f\x5d\x66\x46\xa2\x6b\xd5\x3e\xf6\xd0\xaf\x03\x33\x43\xf4\x51\x87\x75\x65\xa7\xc9\x11\xd3\x18\x6f\x3e\x46\x04\x8d\x63\x5a\x9f\x1d\xfd\x51\x21\xce\x85\x35\x22\x7e\x43\x6a\xb8\x8d\xf1\xcc\xf5\x44\xe2\xbb\x60\x5a\x37\x78\x73\x7d\xce\xff\x5d\x76\x01\xb2\x7c\x8e\x8a\xc4\xb5\x63\x4f\x57\xd9\x34\x97\x3d\xf0\x94\x13\x62\x66\x7b\x34\x18\xff\x49\x6c\xe5\xa3\x4b\xc8\x98\x98\x99\x09\x1c\x03\x71\x13\xd3\xe6\xd9\xf9\x86\x2a\xdc\x59\x82\x42\x23\xc2\x14\x3a\x92\x86\x8f\x66\x90\x3f\x09\x15\xf3\x2e\xbf\x81\xd2\xcb\x3b\xda\xfd\xfd\x52\xa3\x22\xf6\xca\x9a\x34\xef\xdf\xcf\x86\xc5\xbe\xed\x9f\x53\xff\x02\xf0\x1c\xae\xfb\xe7\x58\xf1\xc5\x12\x75\x97\xad\x82\xf6\xaa\xf7\xe4\x0e\x06\x14\x33\x29\xf1\xa3\x24\xbc\xaa\x20\x7a\x72\xd9\x4c\xd4\x8d\x09\xef\x9b\x0e\x57\x6f\x81\x6d\x93\x5c\x14\x65\x85\xe5\x3e\xcb\xcf\xdf\x78\xe7\xfb\xd1\xf7\xe4\xfc\xcb\x2f\xcc\xab\xc9\xfe\xd4\x82\xfd\x75\x95\xe3\xc2\x5e\x0f\x84\x2f\x67\xa5\xa3\xa2\x5f\x27\xc1\x4c\xa4\xf3\xa9\x01\x3b\x29\xe6\x11\x4f\x76\xe6\x06\x87\xef\x91\xee\xeb\x0d\x90\x6b\xfc\xdf\x72\x27\x18\xff\xef\x29\x4b\xe6\xcb\xa3\x1f\x6a\x40\x46\xf7\xa5\x7b\xfe\x3b\x16\xe8\xcc\x1b\x3c\x1d\x2d\x7a\x0c\xe2\xa2\x11\xde\x4d\xed\x0b\x03\xbb\x4b\xc9\xff\x07\x74\x44\x57\xcf\x5f\x1a\xf5\x73\x61\x4e\x07\xfe\x85\xc0\x66\x27\xbf\x4f\xcf\xdb\x9f\x01\x00\x00\xff\xff\x07\xc4\x1a\x2a\x53\x0e\x00\x00" func stakingcollectionCreate_new_tokenholder_acctCdcBytes() ([]byte, error) { return bindataRead( @@ -5278,7 +5278,7 @@ func stakingcollectionCreate_new_tokenholder_acctCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/create_new_tokenholder_acct.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xef, 0xf3, 0xe8, 0xc5, 0x56, 0xc1, 0x18, 0x8f, 0xbe, 0xfd, 0x7b, 0xd1, 0x27, 0x19, 0xc8, 0x43, 0xae, 0x40, 0x33, 0x7e, 0x5e, 0xc0, 0x12, 0x42, 0x93, 0xe2, 0x91, 0xa7, 0xa, 0xc7, 0x40, 0x5f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0xfc, 0xcb, 0x26, 0x2a, 0x37, 0x73, 0x88, 0xf, 0x8a, 0x6e, 0x4, 0xf8, 0x93, 0x55, 0xc4, 0xb6, 0x9a, 0x70, 0x9a, 0x41, 0x35, 0xaa, 0x67, 0xde, 0xa5, 0xf5, 0x21, 0xd2, 0x82, 0x4f, 0x42}} return a, nil } diff --git a/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc b/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc index c970577b5..d05853ebc 100644 --- a/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc +++ b/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc @@ -33,13 +33,13 @@ transaction( let lockedTokenManager <- LockedTokens.createLockedTokenManager(vault: vaultCapability) sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) - let tokenManagerCapability = sharedAccount - .capabilities.storage.issue( + let tokenManagerUseCapability = sharedAccount + .capabilities.storage.issue( LockedTokens.LockedTokenManagerStoragePath) let tokenHolder <- LockedTokens.createTokenHolder( lockedAddress: sharedAccount.address, - tokenManager: tokenManagerCapability + tokenManager: tokenManagerUseCapability ) userAccount.storage.save( @@ -58,10 +58,14 @@ transaction( ) ?? panic("Could not borrow reference to admin collection") + let tokenManagerUnlockCapability = sharedAccount + .capabilities.storage.issue( + LockedTokens.LockedTokenManagerStoragePath) + tokenAdminCollection.addAccount( sharedAccountAddress: sharedAccount.address, unlockedAccountAddress: userAccount.address, - tokenAdmin: tokenManagerCapability + tokenAdmin: tokenManagerUnlockCapability ) // Override the default FlowToken receiver diff --git a/transactions/lockedTokens/admin/admin_remove_delegator.cdc b/transactions/lockedTokens/admin/admin_remove_delegator.cdc index ecc812332..f168abbbb 100644 --- a/transactions/lockedTokens/admin/admin_remove_delegator.cdc +++ b/transactions/lockedTokens/admin/admin_remove_delegator.cdc @@ -5,7 +5,7 @@ transaction { prepare(signer: auth(BorrowValue) &Account) { - let managerRef = signer.storage.borrow<&LockedTokens.LockedTokenManager>(from: LockedTokens.LockedTokenManagerStoragePath) + let managerRef = signer.storage.borrow(from: LockedTokens.LockedTokenManagerStoragePath) ?? panic("Could not borrow a reference to the locked token manager") let delegator <- managerRef.removeDelegator()! diff --git a/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc b/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc index 287d46d4f..ac4b0972c 100644 --- a/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc @@ -28,12 +28,12 @@ transaction( sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) - let tokenManagerCapability = sharedAccount.capabilities.storage - .issue( + let tokenManagerUseCapability = sharedAccount.capabilities.storage + .issue( LockedTokens.LockedTokenManagerStoragePath ) - let tokenHolder <- LockedTokens.createTokenHolder(lockedAddress: sharedAccount.address, tokenManager: tokenManagerCapability) + let tokenHolder <- LockedTokens.createTokenHolder(lockedAddress: sharedAccount.address, tokenManager: tokenManagerUseCapability) userAccount.storage.save( <-tokenHolder, @@ -44,7 +44,7 @@ transaction( userAccount.capabilities.publish(tokenHolderCap, at: LockedTokens.LockedAccountInfoPublicPath) let tokenAdminCapability = sharedAccount.capabilities.storage - .issue( + .issue( LockedTokens.LockedTokenManagerStoragePath ) diff --git a/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc b/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc index 3957e6b81..1f22bfefb 100644 --- a/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc @@ -26,14 +26,14 @@ transaction( sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) - let tokenManagerCapability = sharedAccount.capabilities.storage - .issue( + let tokenManagerUseCapability = sharedAccount.capabilities.storage + .issue( LockedTokens.LockedTokenManagerStoragePath ) let tokenHolder <- LockedTokens.createTokenHolder( lockedAddress: sharedAccount.address, - tokenManager: tokenManagerCapability + tokenManager: tokenManagerUseCapability ) userAccount.storage.save( @@ -45,7 +45,7 @@ transaction( userAccount.capabilities.publish(tokenHolderCap, at: LockedTokens.LockedAccountInfoPublicPath) let tokenAdminCapability = sharedAccount.capabilities.storage - .issue( + .issue( LockedTokens.LockedTokenManagerStoragePath ) diff --git a/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc b/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc index 73bb9af32..2156e6e43 100644 --- a/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc @@ -28,14 +28,14 @@ transaction( sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) - let tokenManagerCapability = sharedAccount.capabilities.storage - .issue( + let tokenManagerUseCapability = sharedAccount.capabilities.storage + .issue( LockedTokens.LockedTokenManagerStoragePath ) let tokenHolder <- LockedTokens.createTokenHolder( lockedAddress: sharedAccount.address, - tokenManager: tokenManagerCapability + tokenManager: tokenManagerUseCapability ) userAccount.storage.save( @@ -47,7 +47,7 @@ transaction( userAccount.capabilities.publish(tokenHolderCap, at: LockedTokens.LockedAccountInfoPublicPath) let tokenAdminCapability = sharedAccount.capabilities.storage - .issue( + .issue( LockedTokens.LockedTokenManagerStoragePath ) diff --git a/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc b/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc index 978ee1a43..8b7bac73f 100644 --- a/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc +++ b/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc @@ -30,14 +30,14 @@ transaction( sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) - let tokenManagerCapability = sharedAccount.capabilities.storage - .issue( + let tokenManagerUseCapability = sharedAccount.capabilities.storage + .issue( LockedTokens.LockedTokenManagerStoragePath ) let tokenHolder <- LockedTokens.createTokenHolder( lockedAddress: sharedAccount.address, - tokenManager: tokenManagerCapability + tokenManager: tokenManagerUseCapability ) userAccount.storage.save( @@ -49,7 +49,7 @@ transaction( userAccount.capabilities.publish(tokenHolderCap, at: LockedTokens.LockedAccountInfoPublicPath) let tokenAdminCapability = sharedAccount.capabilities.storage - .issue( + .issue( LockedTokens.LockedTokenManagerStoragePath ) diff --git a/transactions/stakingCollection/create_new_tokenholder_acct.cdc b/transactions/stakingCollection/create_new_tokenholder_acct.cdc index 42e972bce..e31d81b57 100644 --- a/transactions/stakingCollection/create_new_tokenholder_acct.cdc +++ b/transactions/stakingCollection/create_new_tokenholder_acct.cdc @@ -22,8 +22,8 @@ transaction(publicKeys: [Crypto.KeyListEntry]) { } // Get the TokenManager Capability from the locked account. - let tokenManagerCapabilityController = signer.capabilities.storage.getControllers(forPath: LockedTokens.LockedTokenManagerStoragePath)[1]! - let tokenManagerCapability = tokenManagerCapabilityController.capability as! Capability + let tokenManagerCapabilityController = signer.capabilities.storage.getControllers(forPath: LockedTokens.LockedTokenManagerStoragePath)[2]! + let tokenManagerCapability = tokenManagerCapabilityController.capability as! Capability // Use the manager capability to create a new TokenHolder. let tokenHolder <- LockedTokens.createTokenHolder( From 81b3d68f42fa8c45fa16e73048905e0a39324522 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Thu, 9 May 2024 11:17:46 -0500 Subject: [PATCH 130/160] remove UseTokens entitlement --- lib/go/templates/internal/assets/assets.go | 42 +++++++++---------- .../admin/admin_create_shared_accounts.cdc | 6 +-- .../admin/admin_remove_delegator.cdc | 2 +- ...tody_create_account_with_lease_account.cdc | 6 +-- .../custody_create_only_lease_account.cdc | 6 +-- .../custody_create_only_shared_account.cdc | 6 +-- .../admin/custody_create_shared_accounts.cdc | 6 +-- .../create_new_tokenholder_acct.cdc | 2 +- 8 files changed, 38 insertions(+), 38 deletions(-) diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 055d4cb29..90fc5182d 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -168,16 +168,16 @@ // idTableStaking/scripts/get_total_staked.cdc (463B) // idTableStaking/scripts/get_total_staked_by_type.cdc (256B) // idTableStaking/scripts/get_weekly_payout.cdc (202B) -// lockedTokens/admin/admin_create_shared_accounts.cdc (4.017kB) +// lockedTokens/admin/admin_create_shared_accounts.cdc (3.987kB) // lockedTokens/admin/admin_deploy_contract.cdc (463B) // lockedTokens/admin/admin_deposit_account_creator.cdc (880B) -// lockedTokens/admin/admin_remove_delegator.cdc (492B) +// lockedTokens/admin/admin_remove_delegator.cdc (495B) // lockedTokens/admin/check_main_registration.cdc (949B) // lockedTokens/admin/check_shared_registration.cdc (633B) -// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.553kB) -// lockedTokens/admin/custody_create_only_lease_account.cdc (3.453kB) -// lockedTokens/admin/custody_create_only_shared_account.cdc (3.688kB) -// lockedTokens/admin/custody_create_shared_accounts.cdc (3.824kB) +// lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.523kB) +// lockedTokens/admin/custody_create_only_lease_account.cdc (3.423kB) +// lockedTokens/admin/custody_create_only_shared_account.cdc (3.658kB) +// lockedTokens/admin/custody_create_shared_accounts.cdc (3.794kB) // lockedTokens/admin/custody_setup_account_creator.cdc (758B) // lockedTokens/admin/deposit_locked_tokens.cdc (1.678kB) // lockedTokens/admin/unlock_tokens.cdc (593B) @@ -245,7 +245,7 @@ // randomBeaconHistory/scripts/get_source_of_randomness_page.cdc (326B) // stakingCollection/close_stake.cdc (906B) // stakingCollection/create_machine_account.cdc (1.702kB) -// stakingCollection/create_new_tokenholder_acct.cdc (3.667kB) +// stakingCollection/create_new_tokenholder_acct.cdc (3.643kB) // stakingCollection/deploy_collection_contract.cdc (312B) // stakingCollection/register_delegator.cdc (823B) // stakingCollection/register_multiple_delegators.cdc (875B) @@ -3722,7 +3722,7 @@ func idtablestakingScriptsGet_weekly_payoutCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x57\x5f\x6f\xdb\x46\x0c\x7f\xd7\xa7\x20\xfc\x60\xc8\x80\x2b\xb9\x8f\x33\x92\x14\x9e\xb1\x62\x43\x33\xac\xd8\x92\xf6\x99\x91\x68\xeb\x60\xf9\x4e\xbb\x3b\xd9\x30\x8a\x7c\xf7\xe1\xfe\x48\xd6\xc9\x92\x53\x6f\xc3\xa6\x87\x20\x3e\x91\x47\xf2\x47\xf2\x47\x8a\xed\x2b\x21\x35\xac\xe5\xa9\xd2\x22\xf2\xbf\x3e\x96\xe2\xf8\x24\x76\xc4\x61\x23\xc5\x1e\x26\xed\xef\x49\x2b\x51\xf3\x2d\x7b\x29\x29\x90\xea\x9e\xb5\x92\x8f\x22\xdb\x51\x6e\xcf\x94\x17\xec\x1e\x4d\xa2\x28\x4d\x53\x78\x92\xc8\x15\x66\x9a\x09\x0e\xba\x40\x0d\xba\x20\xd8\x23\xe3\xa0\xad\x05\xcc\xf7\x8c\xc3\x51\xd4\x65\x0e\x8a\x6d\xb9\x55\xd2\x02\x32\x49\xa8\x09\x10\x54\x81\x92\x72\xc0\x2c\x13\x35\xd7\x80\x3c\x07\xe4\x50\xf3\xd2\xda\xb2\xe2\xe8\x5e\x6d\x84\x04\x84\x5a\x91\x8c\x22\x7d\x36\x1b\x47\x00\x00\x15\x4a\xcd\xb0\x5c\x19\x73\x9f\xeb\x97\x92\x65\x9f\xe8\xb4\xf4\xf0\x24\x9f\xe8\xf4\xc8\x94\xfe\x89\x6b\x79\x9a\x43\x9a\xc2\x57\x62\xdb\x42\x2f\xe1\xfd\x62\xd1\x55\x7f\x56\x24\x6f\xd0\xfe\xc1\x6b\x6f\xea\xf2\x56\xd5\xf7\x8b\xc5\x22\x9a\x01\x7c\x8b\x9c\x7d\x49\x15\x4a\x8a\x2d\x5c\x4b\xc0\x5a\x17\xf1\x8f\x42\x4a\x71\xfc\x82\x65\x4d\x33\x98\xae\x1c\x40\xb3\x46\xc3\x3c\x69\x0a\x6b\x87\xa3\x41\x9d\xd3\xb1\x81\x51\x39\x1c\xf3\xdc\xbc\x60\x12\x76\x74\x52\xad\x56\x49\xda\xa3\xee\xef\x84\x7b\xf0\xff\xc5\x15\x9e\x48\x2e\x5d\xd6\x66\x81\x86\xc1\xfd\x2d\xf9\x56\x21\xb8\x3e\x31\xd6\x13\xcc\xf3\xb8\x3a\xe3\x33\x98\xaf\xa4\x15\x98\x43\x81\xaa\x58\x95\x5b\x21\x99\x2e\xf6\x63\xf2\x81\xd0\x1c\x8e\x1e\xdc\x61\x61\xf7\x76\x76\xbb\x93\x41\x6a\xdf\xf6\x31\x14\xbf\xee\x62\x28\xdb\x78\xd8\xba\xd8\x01\x7d\xd0\xc1\x8b\xc2\xbb\xe2\xdd\xa5\xec\x88\x6b\x97\x82\x17\x7e\x9d\x0b\x0f\xa1\x92\xec\x60\xfe\x2b\x19\xdf\x99\xce\x36\xa5\xa8\xb4\x30\x4d\x7d\xc0\xba\xd4\x41\x15\xd9\x93\x35\x56\xf8\xc2\x4a\xa6\x4f\x70\xdf\xcb\x42\xd6\xbc\x62\xa4\x12\x73\x0b\x6e\x29\x61\x4a\xd5\xd4\x5e\x63\x9e\x3b\xdb\x20\x01\x6f\x25\x5f\x99\x2e\x72\x89\xc7\x19\x4c\x5b\xda\x4b\xbe\x18\x7b\x0f\x81\x6e\x9c\xfa\x7b\xd3\x4d\x23\x66\xa5\xc2\xf0\x5a\x7e\x72\x3c\xe4\xd9\x6c\x8f\x1c\xb7\x24\x6d\x77\xf9\x18\x99\x06\x43\x76\x26\xe8\x80\xc9\x82\xb0\xcb\x33\x71\xfe\xea\xaf\xb8\x7b\x17\x30\x6c\xe2\x0c\x3e\x5e\x08\xc6\x16\xb2\x65\x1f\xb9\xb1\x32\x6e\x30\x53\x78\xa0\xf8\xee\xdd\xa5\xe1\x39\x68\xb1\x0c\x4d\x5f\x1a\xfd\xc3\xdd\xf2\x19\x75\xd1\x81\xc5\x44\xa2\x3b\x52\xcf\x8a\xc6\x53\x19\x60\x7e\x25\xaf\xd7\x52\x39\x0f\xfd\x7c\x56\xee\xbd\xea\x9f\xdb\x61\xe1\x7e\xcc\x60\xfa\x46\x6c\x0f\x71\xe0\x9a\x79\xfe\x19\x1a\x3f\x8b\x32\x1f\x4d\xe8\xd3\x59\x22\xb4\xeb\x32\xb3\xca\x73\x49\x4a\x2d\x7b\x59\x44\x77\x3c\x0f\x34\xba\xd0\x2f\xc7\x13\xd1\xea\x8c\xf0\x48\x50\x21\x61\x57\xbd\xeb\xc4\xd3\xb7\xdd\xab\x99\x4e\x5c\x1d\x78\x86\x6c\x1b\x9c\x18\xdf\x88\x35\x56\x70\x1f\x78\x72\xa5\x28\xa6\x63\xc6\x7a\xd9\xbb\xcd\xa7\x21\x38\x02\x27\x2c\x7b\xaa\x22\xf6\xfe\xce\x01\xf5\x60\xaf\x78\xe5\x5f\xf8\x46\x38\x96\x1c\xab\x0d\x3b\x82\xd6\xa2\x2c\xc9\xad\x48\xf7\x6e\x54\x36\xd1\x86\x4d\xf2\x62\x07\xbe\x6b\x88\xc0\xa8\x37\x67\x29\x57\xc8\x7e\x89\x3f\x0d\x18\x1a\x28\x72\xb3\xc2\x8d\x37\x7e\x4f\x7f\x08\xbf\x10\x43\xf3\x7c\xf8\x00\x15\x72\x96\xc5\x93\xb5\x5d\xf0\xb8\xd0\xe0\x82\x00\x49\x1b\x92\xc4\x33\x32\x23\xc1\x2d\x81\x59\x7b\xfb\xe4\x1a\xa9\xd8\x66\xfe\x6f\x79\xe5\x7f\xe1\x8f\xa1\xfa\x30\x8d\xdf\xac\x56\x81\x95\x00\x82\x5b\x48\xa3\x59\xa4\xfb\xaa\xdd\x16\x18\x67\x9b\x95\x5b\x47\xaf\xe5\x67\xa8\xe5\xd3\x14\x7e\x3b\x90\x94\x2c\x77\x9b\x69\x4e\x1b\x33\xbd\x3a\x9f\x27\x92\x32\x62\x07\x92\x23\x53\x2c\x48\x6b\xcd\x9b\xb6\x4c\xdd\x76\x73\x1e\xdc\xbf\xfb\x6b\x06\x67\xb7\xd9\x87\x1b\x3b\xee\xdb\x64\x8f\x72\xa7\x9a\x33\x3f\xd3\x15\xa0\x3a\x7f\x6e\x74\xab\xb2\x33\x3b\x95\x0f\xde\x71\xd8\xf7\xae\x2c\x77\xd3\x6f\x61\xfd\x35\xee\xbe\x3e\xc4\xb7\x94\xcc\x77\x60\xd4\x20\x34\x30\x62\xfa\x01\x84\x69\x36\x04\x37\x0a\xeb\x48\x6e\xab\x5a\x03\x17\x72\x8f\xe5\x19\x5f\xc6\xcd\xb7\x9c\xf9\x88\x31\xd0\xd7\x9c\xfd\x59\x13\x54\x5d\xfa\x68\x1b\xbd\xb9\xfd\xdf\x03\x73\x74\xa3\xfb\xbb\xc8\xf5\xfd\x1c\xc7\xcc\x61\xfc\xf1\x0a\x72\xe6\xef\x6b\xf4\x1a\xfd\x15\x00\x00\xff\xff\xbd\x3e\x38\x5a\xb1\x0f\x00\x00" +var _lockedtokensAdminAdmin_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x57\x5f\x6f\xe3\x36\x0c\x7f\xf7\xa7\x20\xf2\x10\x38\x40\x1a\xe7\x1e\x17\xb4\x3d\x64\xc1\x0e\x1b\xae\xc3\x0e\x5b\xef\xee\x99\xb5\x99\x58\x88\x22\x79\x92\x9c\x20\x28\xfa\xdd\x07\x59\xf2\x1f\x39\x76\xba\x6c\x7b\x9b\x1f\x8a\x46\x26\x45\xf2\x47\xf2\x47\x9a\x1d\x0a\xa9\x0c\x6c\xd4\xb9\x30\x32\xf2\xbf\x3e\x71\x79\x7a\x96\x7b\x12\xb0\x55\xf2\x00\x93\xe6\xf7\xa4\x91\x28\xc5\x8e\xbd\x70\x0a\xa4\xba\x67\x8d\xe4\x93\x4c\xf7\x94\x55\x67\xda\x0b\x76\x8f\x26\x51\x94\x24\x09\x3c\x2b\x14\x1a\x53\xc3\xa4\x00\x93\xa3\x01\x93\x13\x1c\x90\x09\x30\x95\x05\xcc\x0e\x4c\xc0\x49\x96\x3c\x03\xcd\x76\xa2\x52\x32\x12\x52\x45\x68\x08\x10\x74\x8e\x8a\x32\xc0\x34\x95\xa5\x30\x80\x22\x03\x14\x50\x0a\x5e\xd9\xaa\xc4\xd1\xbd\xda\x4a\x05\x08\xa5\x26\x15\x45\xa6\x35\x1b\x47\x00\x00\x05\x2a\xc3\x90\xaf\xad\xb9\x2f\xe5\x0b\x67\xe9\x67\x3a\xaf\x3c\x3c\x8b\xcf\x74\x7e\x62\xda\xfc\x24\x8c\x3a\xcf\x21\x49\xe0\x3b\xb1\x5d\x6e\x56\xf0\x61\xb9\xec\xaa\x7f\xd5\xa4\x6e\xd0\xfe\xc1\x6b\x6f\x4b\x7e\xab\xea\x87\xe5\x72\x19\xcd\x00\x5e\x23\x67\x5f\x51\x81\x8a\xe2\x0a\xae\x15\x60\x69\xf2\xf8\x47\xa9\x94\x3c\x7d\x43\x5e\xd2\x0c\xa6\x6b\x07\xd0\xac\xd6\xb0\x4f\x92\xc0\xc6\xe1\x68\x51\x17\x74\xaa\x61\xd4\x0e\xc7\x2c\xb3\x2f\x98\x82\x3d\x9d\x75\xa3\xc5\xc9\x78\xd4\xfd\x9d\xf0\x00\xfe\xbf\xb8\xc0\x33\xa9\x95\xcb\xda\x2c\xd0\xb0\xb8\xbf\x27\xdf\x28\x04\xd7\x2f\xac\xf5\x05\x66\x59\x5c\xb4\xf8\x0c\xe6\x6b\xd1\x08\xcc\x21\x47\x9d\xaf\xf9\x4e\x2a\x66\xf2\xc3\x98\x7c\x20\x34\x87\x93\x07\x77\x58\xd8\xbd\x9d\xdd\xee\x64\x90\xda\xf7\x7d\x0c\xc5\xaf\xbb\x18\xca\xd6\x1e\x36\x2e\x76\x40\x1f\x74\xf0\xa2\xf0\xae\x78\x77\x29\x3b\xe2\xda\xa5\xe0\x85\x5f\x6d\xe1\x21\x14\x8a\x1d\xed\x7f\x9c\x89\xbd\xed\x6c\x5b\x8a\xda\x48\xdb\xd4\x47\x2c\xb9\x09\xaa\xa8\x3a\xd9\x60\x81\x2f\x8c\x33\x73\x86\x87\x5e\x16\xd2\xfa\x15\x23\xbd\xb0\xb7\xe0\x8e\x16\x4c\xeb\x92\x9a\x6b\xec\x73\x5f\x35\x48\xc0\x5b\x8b\xef\xcc\xe4\x99\xc2\xd3\x0c\xa6\x0d\xed\x2d\xbe\x59\x7b\x8f\x81\x6e\x9c\xf8\x7b\x93\x6d\x2d\x56\x49\x85\xe1\x35\xfc\xe4\x78\xc8\xb3\xd9\x01\x05\xee\x48\x55\xdd\xe5\x63\x64\x06\x2c\xd9\xd9\xa0\x03\x26\x0b\xc2\xe6\x2d\x71\xfe\xea\xaf\xb8\xbf\x0b\x18\x76\xe1\x0c\x3e\x5d\x08\xc6\x15\x64\xab\x3e\x72\x63\x65\x5c\x63\xa6\xf1\x48\xf1\xfd\xdd\xa5\xe1\x39\x18\xb9\x0a\x4d\x5f\x1a\xfd\xc3\xdd\xf2\x05\x4d\xde\x81\xc5\x46\x62\x3a\x52\xe3\x79\x0c\x00\xbf\x92\xd4\x6b\x79\x9c\x87\x4e\x7e\xad\x26\x82\xfb\x31\x83\xe9\x3b\x01\x3c\xc6\x81\x0b\xf6\xf9\x77\x21\xff\x2c\x79\x36\x9a\xb5\xe7\x56\x22\xb4\xeb\xe0\x5f\x67\x99\x22\xad\x57\xbd\x54\xa1\x3b\x9e\x07\x1a\x5d\x7c\x57\x23\x68\x37\x0a\x23\x4c\x11\xd4\x40\xd8\x37\x77\x9d\x60\xfa\x86\x7b\x55\xd1\x09\xaa\x83\xcd\x90\x6d\x0b\x12\x13\x5b\xb9\xc1\x02\x1e\x02\x4f\xae\x64\x7e\x3a\x66\xac\x97\xba\xdb\x7c\x1a\x82\x23\x70\xa2\xe2\x47\x9d\xc7\xde\xdf\x39\xa0\x19\xec\x06\xaf\xfc\x8b\xd8\x4a\xc7\x83\x63\x85\x51\x0d\x99\x8d\xe4\x9c\xdc\x12\xf4\xe0\x86\x61\x1d\x6d\xd8\x09\x2f\xd5\x48\x77\x55\x1f\x18\xf5\xe6\x2a\x52\x95\xaa\x5f\xdf\xcf\x03\x86\x06\x2a\xdc\x2e\x69\xe3\xad\xdd\xd3\x1f\xc2\x2f\xc4\xd0\x3e\x1f\x3f\x42\x81\x82\xa5\xf1\x64\x53\xad\x70\x42\x1a\x70\x41\x80\xa2\x2d\x29\x12\x29\x59\xd2\x77\x6b\x5e\xda\xdc\x3e\xb9\x42\x1b\xae\x93\xff\x07\xe4\x31\x54\x1f\xb6\xeb\xeb\xe5\x29\xb0\x12\x40\x70\x0b\x63\xd4\xab\x72\x5f\xb5\xdb\x02\xe3\x54\xb3\x76\x0b\xe7\xb5\xfc\x0c\xb5\x7c\x92\xc0\x6f\x47\x52\x8a\x65\x6e\xf7\xcc\x68\x6b\xe7\x53\xe7\x03\x44\x51\x4a\xec\x48\x6a\x64\x4e\x05\x69\x2d\x45\xdd\x96\x89\xdb\x5f\xda\xd1\xfc\xbb\xbf\x66\x70\x3a\xdb\x8d\xb7\xb6\xe3\xbe\x3e\x0e\xa8\xf6\xba\x3e\xf3\x53\x5b\x03\xea\xf6\x83\xa2\x5b\x95\x9d\xe9\xa8\x5b\x96\xbd\x61\x29\xb9\x9f\xbe\x86\xf5\x57\xbb\xfb\xf6\x18\xdf\x52\x32\x7f\x03\xa3\x1a\xa1\x81\xf9\xd2\x0f\x20\x4c\xb3\x25\xb8\x51\x58\x47\x72\x5b\x94\x06\x84\x54\x07\xe4\x2d\xbe\x4c\xd8\xaf\x35\xfb\x99\x62\xa1\x2f\x05\xfb\xb3\x24\x28\xba\xf4\xd1\x34\x7a\x7d\xfb\x7f\x07\xe6\xe8\xce\xf6\x4f\x91\xeb\xfb\x39\x8e\x99\xc3\xf8\xd3\x15\xe4\xec\xdf\xb7\xe8\x2d\xfa\x2b\x00\x00\xff\xff\x46\x9f\x30\x14\x93\x0f\x00\x00" func lockedtokensAdminAdmin_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3738,7 +3738,7 @@ func lockedtokensAdminAdmin_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1b, 0x1e, 0xc6, 0x5f, 0x3e, 0x8d, 0x4b, 0xbc, 0xf1, 0xcc, 0xc7, 0x4b, 0xf1, 0xbe, 0x11, 0x7e, 0x60, 0xb8, 0x1e, 0x28, 0x5b, 0x69, 0x3a, 0x69, 0x25, 0xaf, 0x6c, 0xa3, 0xd2, 0x1b, 0x70, 0xae}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0xd, 0x7c, 0xa5, 0xc7, 0x2, 0x18, 0x7a, 0x3a, 0x4f, 0xec, 0xa0, 0x55, 0x8, 0x4, 0x10, 0x3d, 0x6c, 0xd, 0xd3, 0x38, 0xac, 0x53, 0x20, 0xdc, 0xa1, 0xfc, 0xf7, 0xc9, 0xe1, 0x3e, 0x9b}} return a, nil } @@ -3782,7 +3782,7 @@ func lockedtokensAdminAdmin_deposit_account_creatorCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminAdmin_remove_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x9e\x39\x94\xe4\x60\x7e\x40\xa9\x16\xb5\x08\x82\x82\xd8\xea\x7d\x9a\x4c\xd3\xd0\xcd\x4e\x98\x4c\x2c\x22\xfd\xef\x92\xa6\xb1\x29\x1e\x9c\xd3\xee\xbe\x79\xdf\xbe\x57\x56\xb5\xa8\xe1\xd1\xcb\xfe\x69\xb1\xa2\xb5\xe7\xa5\xd1\xae\x0c\x05\x36\x2a\x15\xa2\xbf\x42\xe4\x4e\x9e\x67\xc9\x76\x9c\xaf\x64\xc7\xa1\x39\x6d\x8f\x9f\x22\xe7\x4c\x29\x34\x94\x59\x29\x01\xdf\xce\x01\x40\xad\x5c\x93\x72\xdc\x94\x45\x60\x9d\x82\x5a\xdb\xc6\xf7\xa2\x2a\xfb\x0f\xf2\x2d\x27\x98\xdc\x65\x99\xb4\xc1\x92\xc1\xd2\x8d\x67\x43\x45\x81\x0a\xd6\x37\xde\xe0\x06\xbd\x3f\x6d\x4c\x94\x0a\x4e\xd7\x47\xc2\xec\x48\x1b\x87\x48\xdf\x1b\xee\x4f\x09\x26\x17\xc2\xe8\xf2\xd2\x83\x6f\xe3\xae\xc4\x14\xff\xac\x2d\xfb\x2f\x5f\xc9\xb6\xc9\x6f\xbe\x6e\xe6\x73\xd4\x14\xca\x2c\x8e\x1e\xa4\xf5\x39\x82\x18\xfa\x5c\x20\x28\x6f\x58\x39\x64\x0c\x13\xd8\x96\xe1\x8f\x60\x58\x47\x1e\xaa\x45\xc9\x65\xe3\x9c\x3d\x17\x64\xa2\x98\x5d\x8f\xea\xa7\xca\x95\x7c\xf2\x62\x50\xe3\xe4\xea\xec\xcb\xb9\x31\x95\xaf\xb3\xb7\x97\x0e\xee\xe0\x7e\x02\x00\x00\xff\xff\xf9\x4a\x91\xbb\xec\x01\x00\x00" +var _lockedtokensAdminAdmin_remove_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x4f\x83\x50\x10\x84\xef\xfc\x8a\x91\x43\x03\x07\xf9\x01\x4d\xb5\x51\x1b\x13\x13\x4d\x8c\xad\xde\xb7\x8f\x2d\x25\x3c\xde\x92\x65\xb1\x31\xa6\xff\xdd\x50\x5a\x4b\xe3\xc1\xbd\x2d\xb3\xf3\x31\xf3\xca\xba\x11\x35\x3c\x7a\xd9\x3d\x2d\x56\xb4\xf6\xbc\x34\xaa\xca\x50\x60\xa3\x52\x23\xfe\x2b\xc4\xd1\xd1\xf3\x2c\xae\xe2\x7c\x25\x15\x87\xf6\x78\x3d\xfe\x14\x47\x91\x29\x85\x96\x9c\x95\x12\xf0\x1d\x45\x00\xd0\x28\x37\xa4\x9c\xb4\x65\x11\x58\xa7\xa0\xce\xb6\xc9\xbd\xa8\xca\xee\x83\x7c\xc7\x29\x26\x77\xce\x49\x17\x2c\x3d\x59\xfa\xf1\x6c\xa8\x29\x50\xc1\xfa\xc6\x1b\xdc\x60\xf0\x67\xad\x89\x52\xc1\xd9\xfa\x40\x98\x1d\x68\xe3\x10\xd9\x7b\xf0\xe2\xaa\x61\x49\x31\xb9\xd0\x46\xcb\xcb\xc0\xbe\x4d\xfa\x1e\x53\xfc\x73\xb6\x1c\xfe\xfa\x4a\xb6\x4d\x7f\x23\xf6\x33\x9f\xa3\xa1\x50\xba\x24\x7e\x90\xce\xe7\x08\x62\x18\xa2\x81\xa0\xbc\x61\xe5\xe0\x18\x26\xb0\x2d\xc3\x1f\xc0\xb0\x9e\x7c\x6a\x17\xa7\x97\xa5\x73\xf6\x5c\x90\x89\x62\x76\x3d\x7a\x81\x4c\xb9\x96\x4f\x5e\x9c\xd4\x24\xbd\x3a\xfb\x72\x6e\x4d\xe5\xeb\xec\x1d\xa4\x7d\xb4\x8f\x7e\x02\x00\x00\xff\xff\xba\xa7\xc0\x06\xef\x01\x00\x00" func lockedtokensAdminAdmin_remove_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3798,7 +3798,7 @@ func lockedtokensAdminAdmin_remove_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_remove_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaf, 0x18, 0x92, 0xee, 0x3c, 0x21, 0xfb, 0x1f, 0xff, 0xe5, 0x88, 0xa4, 0xb, 0xa, 0x88, 0x26, 0xe3, 0xa1, 0xea, 0x13, 0xc4, 0xd7, 0x50, 0x25, 0x8f, 0xd8, 0x1a, 0x5f, 0x72, 0xd3, 0x4b, 0x81}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x82, 0xb7, 0xcd, 0x29, 0x37, 0xa8, 0x95, 0x14, 0x16, 0x52, 0x45, 0xa2, 0x6d, 0x5b, 0x5f, 0xa, 0xfb, 0x68, 0xc1, 0x28, 0xbf, 0x4, 0x47, 0x1f, 0x89, 0x74, 0x84, 0xd4, 0x6b, 0x1a, 0x4b, 0xa8}} return a, nil } @@ -3842,7 +3842,7 @@ func lockedtokensAdminCheck_shared_registrationCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xe9\xd5\x48\xb2\x48\x8d\x2e\x5a\x6c\x8a\x06\x6d\xb2\x7b\x9e\x48\x63\x8b\x08\x4d\xaa\xfc\xb1\x61\x04\x79\xf7\x82\x22\x25\x8b\xb2\x14\xa7\x45\x5b\xac\x0e\x41\xcc\xf9\xfb\xe6\xe3\xcc\x70\xd8\xb6\x96\xca\xc0\x4a\x1d\x6a\x23\x93\xf0\xeb\x33\x97\xfb\x47\xf9\x42\x02\xd6\x4a\x6e\x61\xd6\xfd\x9e\x75\x1a\x56\x6c\xd8\x33\xa7\x48\xab\x7f\xd6\x69\xde\xcb\xe2\x85\xca\xe6\x4c\x07\xc5\xfe\xd1\x2c\x49\xf2\x3c\x87\x47\x85\x42\x63\x61\x98\x14\x60\x2a\x34\x80\x50\x58\x6d\x64\x79\x80\x5a\xc9\x1d\x2b\x49\xc1\x5e\x5a\x5e\x82\x66\x1b\xd1\x98\x18\x09\x85\x22\x34\x04\x08\xba\x42\x45\x25\x60\x51\x48\x2b\x0c\xa0\x28\x01\x05\x58\xc1\x9b\x48\x8d\x7a\x2b\x5b\x4b\x05\x08\x56\x93\x4a\x12\x73\x8c\x9a\x26\x00\x00\x6b\xcb\xf9\x5d\xb9\x65\xe2\xc1\x3e\x73\x56\x7c\xa1\xc3\x32\x50\x93\x7d\xa1\xc3\x3d\xd3\xe6\x27\x61\xd4\x61\x01\x79\x0e\xdf\x88\x6d\x2a\xb3\x84\x1f\xae\xae\xae\x3a\xe3\x27\x4d\xea\xef\xda\xce\x01\x5e\x93\xc6\x43\xad\xa8\x46\x45\x69\x48\xfd\x21\x64\xbe\x04\xb4\xa6\x4a\x7f\x94\x4a\xc9\xfd\x57\xe4\x96\xe6\x70\x71\xe7\xf3\x99\xb7\xb6\xee\xe3\x64\x02\x15\x41\x0a\x37\x10\xfe\x4b\x6b\x3c\x38\x4f\x03\xd7\xf3\xc8\xd6\xb1\xf2\x71\xcb\xce\x34\x0a\x99\xbd\xd0\x41\x67\x58\x96\x69\x7d\xe4\xe1\x94\xd7\xac\x93\x2e\xa0\x42\x5d\xdd\xf1\x8d\x54\xcc\x54\xdb\x51\xe5\x48\x63\x01\xfb\x40\xdf\x88\xa6\x17\xf5\xc0\xf5\x72\x9a\x84\x16\xdd\xda\x19\x64\xb1\xee\x3b\xc0\x62\xc5\x13\x5c\x8e\xef\x1d\x5a\x6e\x56\x58\xe3\x33\xe3\xcc\x1c\xe0\x66\x40\x65\xd1\x8a\x18\xe9\x4c\x1b\xa9\x70\x43\x9d\x03\xf7\x65\x4c\x6b\x4b\xd7\x4d\x79\x44\xed\x97\x7d\x63\xa6\x2a\x15\xee\xe7\x70\xd1\x75\x6f\xf6\xd5\xc5\xbb\x4d\xf3\xe0\x2a\x5f\xb7\x92\x46\x30\x00\xc7\x8f\x5d\xfa\x2b\x0a\xdc\x90\x82\xeb\xcb\xa8\x9d\x33\xdf\x7f\xf7\x27\x8a\x69\x93\xd8\x72\x98\xdf\x64\xc9\x04\x3c\x99\xc6\x1d\xa5\xd7\x97\xa7\x91\x17\x60\xe4\x32\x8e\x7d\x1a\xf5\x0f\xef\xe5\x01\x4d\x35\x48\xc5\xf4\xb4\x9e\x34\xfd\xb7\x8c\x2f\x62\x9c\x4f\xda\xcb\xf5\xf0\xbc\x19\x4e\xfe\xc7\x1c\x2e\xce\xe4\x76\x9b\x46\x28\xdc\xf7\x71\x36\x22\xd3\x31\x6a\x7e\x96\xbc\x9c\xbc\xde\xc7\xa3\x46\xea\x6f\xe6\xae\x2c\x15\x69\xbd\x1c\x70\x87\xfe\x78\x11\xd1\xbd\x9c\x26\x7f\xa2\x49\xa3\x62\x88\xa0\x5f\x5f\xf6\xd0\x2e\x22\xd1\x49\x79\xf4\x50\x8f\x31\x31\xcd\xc2\x0a\x6b\xb8\x89\x00\x8d\xd5\x44\x28\x83\x8b\xa9\x98\xb7\xe9\x07\xd0\xcc\x47\xf3\x8f\xc2\x35\xb3\x48\x57\x69\x0c\x70\x01\x68\x46\xdb\x21\xf8\xf8\x45\xac\xa5\x1f\x3d\x53\xcd\xd0\x4c\xcd\xff\xb7\x0f\xbe\x8f\x7a\xe7\x7d\x9e\x56\xae\xc0\xa5\x82\x9b\xe1\xe3\x36\x9e\xf2\x73\xf3\x00\xfb\x9c\x23\x34\xb1\xbb\xf1\xec\x62\x9d\xdb\xd4\xad\x42\xef\xdd\x61\x50\x1c\x2d\x17\xf7\x7d\xfa\x04\x35\x0a\x56\xa4\xb3\x55\xb3\x17\x09\x69\xc0\x03\x0c\x39\x76\x1b\x4f\xe1\x3d\xcd\xfa\x4c\x8c\x44\x72\xfd\xdb\x3e\xf9\x51\xa4\xa8\x32\xce\xf4\x7e\x64\xd8\xee\x5f\x43\xd3\x7e\xb5\x8f\x1a\x1e\x4b\x74\x39\x5a\xae\x63\x6d\x9c\xe7\xf0\xdb\x8e\x94\x62\x25\x81\xa9\x08\x4a\x5a\xbb\xd7\xa7\xb7\xcb\x2a\x2a\x88\xed\x48\x65\x13\xaf\x50\x54\xf3\x56\xb4\xad\x97\xfb\x7d\xe0\xf8\x58\xfe\x1e\xfc\xc4\xc1\xc3\x2e\x2a\x68\xdf\x05\xf2\x9b\xec\x16\xd5\x8b\x6e\xcf\x4a\x9f\x8f\x06\xd4\x1d\x3d\xd9\xd4\xb3\xab\x43\x69\xfb\x91\x74\xbe\x41\xdb\xa1\xf4\x1a\x37\x64\x8b\xf7\x6d\x30\x94\xce\xbc\xa0\x1f\x20\xa9\xa5\x28\xba\xbc\xf1\x04\xe2\x0b\x76\xe3\x6b\x92\xd7\x89\xdb\xad\xad\x01\x21\xd5\x16\xf9\x91\x60\x26\xdc\xf2\xef\x96\x66\xc7\xbd\x15\xec\x4f\x4b\x50\xa3\xa9\xb2\xd3\x91\xd7\xba\xff\xf7\xd8\x9c\xdc\xa3\xfe\x29\x75\x43\x9c\xd3\xa4\x79\x92\x3f\xbf\x43\x9d\xfb\xfb\x96\xbc\x25\x7f\x05\x00\x00\xff\xff\xc8\x7f\x54\x0d\xe1\x0d\x00\x00" +var _lockedtokensAdminCustody_create_account_with_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x56\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\x7c\x08\x64\xc0\x91\xd2\xab\x91\x64\x91\x1a\x5d\xb4\xd8\x14\x0d\xda\xec\xee\x79\x22\x8e\x2d\x22\x34\xa9\xf2\x61\xc3\x08\xf2\xdf\x0b\x4a\x94\x2c\xca\x52\xec\x16\xed\xa9\x3a\x04\x31\x39\x8f\x6f\x3e\xce\x8b\x6f\x2b\xa5\x2d\xac\xf4\xa1\xb2\x2a\x09\xbf\x3e\x0b\xb5\x7f\x56\xaf\x24\x61\xad\xd5\x16\x66\xdd\xef\x59\x27\xe1\xe4\x86\xbf\x08\x8a\xa4\xfa\x67\x9d\xe4\xa3\x2a\x5e\x89\xd5\x67\x26\x08\xf6\x8f\x66\x49\x92\xe7\x39\x3c\x6b\x94\x06\x0b\xcb\x95\x04\x5b\xa2\x05\x84\xc2\x19\xab\xd8\x01\x2a\xad\x76\x9c\x91\x86\xbd\x72\x82\x81\xe1\x1b\x59\xab\x58\x05\x85\x26\xb4\x04\x08\xa6\x44\x4d\x0c\xb0\x28\x94\x93\x16\x50\x32\x40\x09\x4e\x8a\xda\x53\x2d\xde\xde\xad\x95\x06\x04\x67\x48\x27\x89\x3d\x7a\x4d\x13\x00\x80\xb5\x13\xe2\x81\x6d\xb9\x7c\x72\x2f\x82\x17\x5f\xe8\xb0\x0c\xd4\x64\x5f\xe8\xf0\xc8\x8d\xfd\x49\x5a\x7d\x58\x40\x9e\xc3\x77\xe2\x9b\xd2\x2e\xe1\x87\x9b\x9b\x9b\x4e\xf9\xab\x21\xfd\x77\x75\xe7\x00\x6f\x49\x6d\xa1\xd2\x54\xa1\xa6\x34\x84\xfe\x14\x22\x5f\x02\x3a\x5b\xa6\x3f\x2a\xad\xd5\xfe\x1b\x0a\x47\x73\xb8\x7a\x68\xe2\x99\xb7\xba\xfe\x13\x64\x03\x15\xe1\x16\xee\x20\xfc\x97\x56\x78\xf0\x96\x06\xa6\xe7\x91\xae\x67\xe5\x72\xcd\x4e\x35\x72\x99\xbd\xd2\xc1\x64\xc8\x58\x5a\x1d\x79\x38\xe5\x35\xeb\x6e\x17\x50\xa2\x29\x1f\xc4\x46\x69\x6e\xcb\xed\xa8\x70\x24\xb1\x80\x7d\xa0\x6f\x44\xb2\xb9\xea\x81\xeb\xc5\x34\x09\x2d\x7a\xb5\x33\xc8\x62\xd9\x0f\x80\xc5\x82\x27\xb8\x3c\xdf\x3b\x74\xc2\xae\xb0\xc2\x17\x2e\xb8\x3d\xc0\xdd\x80\xca\xa2\xbd\xe2\x64\x32\x63\x95\xc6\x0d\x75\x06\xfc\x97\x71\x63\x1c\xdd\xd6\xe9\x11\x95\x5f\xf6\x9d\xdb\x92\x69\xdc\xcf\xe1\xaa\xab\xde\xec\x9b\xf7\x77\x9f\xe6\xc1\x54\xbe\x6e\x6f\xea\x8b\x01\x38\x71\xac\xd2\x5f\x51\xe2\x86\x34\xdc\x5e\x47\xe5\x9c\x35\xf5\xf7\x78\x22\x98\xd6\x81\x2d\x87\xf1\x4d\xa6\x4c\xc0\x93\x19\xdc\x51\x7a\x7b\x7d\xea\x79\x01\x56\x2d\x63\xdf\xa7\x5e\xff\x68\xac\x3c\xa1\x2d\x07\xa1\xd8\x9e\xd4\x7f\x4b\xf7\x22\x06\xf9\xb5\xee\x40\xcd\x8f\x39\x5c\x9d\x09\xe0\x3e\x8d\xbc\xf9\xef\xf2\x90\x23\xd5\xb1\xf8\x7f\x56\x82\x4d\xbe\xe1\xf3\x51\x22\x6d\xe8\x7f\x60\x4c\x93\x31\xcb\x01\x47\xd8\x1c\x2f\x22\x4e\x97\x13\x0c\x4f\x94\x61\xf4\xdc\x11\xee\xdb\xeb\x1e\xd4\x45\x74\x75\x92\x00\x3d\xc8\x63\x34\x4c\x53\xb0\xc2\x0a\xee\x22\x40\x63\x0f\x1f\xde\xfa\x6a\xca\xe7\x7d\x7a\x01\x9a\xf9\x68\xfc\x91\xbb\xba\xdb\x98\x32\x8d\x01\x2e\x00\xed\x68\xc2\x07\x1b\xbf\xc8\xb5\x6a\x9a\xcb\x54\xba\xd7\x7d\xf1\xff\x98\xec\xa2\xcf\xd3\xca\x67\xb7\xd2\x70\x37\x1c\x5f\xe3\x21\xbf\xd4\x23\xb6\x89\x39\x42\x13\x9b\x1b\x8f\x2e\x96\xb9\x4f\xfd\xb2\xf3\xd1\x1b\x06\xc1\xd1\x74\xf1\xdf\xa7\x4f\x50\xa1\xe4\x45\x3a\x5b\xd5\x9b\x8f\x54\x16\x1a\x80\x21\xc6\x6e\xa7\x29\x1a\x4b\xb3\x3e\x13\x23\x9e\x7c\xf1\xb6\x43\x3d\xf2\x14\x65\xc6\x99\xc2\x8f\x14\xdb\x0d\x6b\xa8\xda\xcf\xf6\x51\xc5\x63\x8a\x2e\x47\xd3\x75\xac\x8c\xf3\x1c\x7e\xdb\x91\xd6\x9c\x11\xd8\x92\x80\xd1\xda\xcf\x97\xde\xb6\xaa\xa9\x20\xbe\x23\x9d\x4d\xcc\x99\x28\xe7\x9d\x6c\x4b\x2f\x6f\x26\xfe\x71\x1c\xfe\x1e\xec\xc4\xce\xc3\xb6\x29\x69\xdf\x39\x6a\x76\xd5\x2d\xea\x57\xd3\x9e\xb1\x26\x1e\x03\x68\x3a\x7a\xb2\xa9\xc1\x6a\x8e\x2d\xf3\xa2\x02\x6d\x9b\xd2\x5b\x5c\x90\x2d\xde\xf7\x41\x53\x3a\x33\x23\x2f\x20\xa9\xa5\x28\x7a\xbc\xf1\x00\xe2\x07\xf6\xed\x6b\x92\xd7\x89\xd7\xad\x9c\x05\xa9\xf4\x16\xc5\x91\x60\x2e\xfd\x7a\xef\xd7\x62\xcf\xbd\x93\xfc\x4f\x47\x50\xa1\x2d\xb3\xd3\x96\xd7\x9a\xff\xf7\xd8\x9c\xdc\x94\xfe\x29\x75\x43\x9c\xd3\xa4\x35\x24\x7f\xfe\x80\x3a\xff\xf7\x3d\x79\x4f\xfe\x0a\x00\x00\xff\xff\xf6\xdf\x80\x90\xc3\x0d\x00\x00" func lockedtokensAdminCustody_create_account_with_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3858,11 +3858,11 @@ func lockedtokensAdminCustody_create_account_with_lease_accountCdc() (*asset, er } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_account_with_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe0, 0x29, 0x65, 0xe2, 0xb2, 0xcb, 0x47, 0x41, 0x7f, 0xea, 0x93, 0x97, 0xe3, 0xaa, 0x0, 0xcb, 0x69, 0xe, 0xf7, 0x92, 0x80, 0xaf, 0x48, 0xfe, 0x3e, 0x87, 0xbb, 0xef, 0x82, 0x85, 0x5e, 0x21}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x99, 0x7, 0x87, 0xcb, 0x37, 0x3, 0x8d, 0x41, 0x36, 0x1e, 0x48, 0xf4, 0x8b, 0xb, 0x4e, 0xa8, 0xe5, 0x4f, 0xf2, 0x19, 0x6e, 0x97, 0x62, 0xa8, 0xe, 0x86, 0x76, 0xa8, 0xfc, 0x2d, 0x3d, 0x15}} return a, nil } -var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x56\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xa0\x48\xe9\x55\x48\xb2\x48\x8d\x2e\x5a\x6c\x8a\x06\x6d\x76\xf7\x3c\x11\x69\x8b\x08\x4d\xaa\x24\x65\x43\x58\xe4\xdd\x0b\xfe\x48\x16\x65\x29\x49\x8b\xb6\x58\x1d\x0c\x93\x9c\xe1\x7c\xf3\x71\xfe\xd8\xbe\x91\xca\xc0\x46\x75\x8d\x91\x49\x58\x7d\xe4\xf2\xf8\x28\x9f\xa9\x80\xad\x92\x7b\x58\x0d\xeb\xd5\x20\xd1\x8a\x1d\x7b\xe2\x34\x92\x1a\xef\x0d\x92\xf7\xb2\x7a\xa6\xc4\xed\xe9\x20\x38\xde\x5a\x25\x49\x51\x14\xf0\xa8\x50\x68\xac\x0c\x93\x02\x4c\x8d\x06\x10\xaa\x56\x1b\x49\x3a\x68\x94\x3c\x30\x42\x15\x1c\x65\xcb\x09\x68\xb6\x13\x4e\xc5\x48\xa8\x14\x45\x43\x01\x41\xd7\xa8\x28\x01\xac\x2a\xd9\x0a\x03\x5b\xa9\x00\xa1\xd5\x56\xa9\x96\x80\x5c\x51\x24\x9d\xd3\xaa\x51\x83\xa9\x29\x53\xd0\x0a\xee\x70\x0c\x5a\xfe\x36\x62\xc5\x3c\xa6\x9a\x9e\x0b\x39\x7d\xe9\x50\xd8\x7b\xc0\x8c\x80\x23\xd7\x32\x49\x46\x3b\x69\x02\x00\xb0\x6d\x39\xbf\x23\x7b\x26\x1e\xda\x27\xce\xaa\x4f\xb4\x2b\x03\xdf\xf9\x27\xda\xdd\x33\x6d\x7e\x12\x46\x75\x19\x14\x05\x7c\xa5\x6c\x57\x9b\x12\x7e\xb8\xba\xba\x4a\xd6\x00\xdf\x12\x77\x45\xa3\x68\x83\x8a\xa6\x81\x93\x87\x40\x49\x09\xd8\x9a\x3a\xfd\x51\x2a\x25\x8f\x5f\x90\xb7\x74\x0d\x17\x77\x1e\x69\xe6\xfc\x0f\x8b\x20\xf8\x87\x91\x0a\x77\x34\x83\x0d\x36\xf8\xc4\x38\x33\x8c\xea\x93\xca\xba\x37\x67\x3f\x4e\x4d\xa0\x35\x9c\xc2\x0d\x84\x7f\x69\x83\x9d\x35\x3e\x41\xb3\x3e\x29\x47\x8a\xf9\x33\xed\x74\x8e\x84\xa4\xcd\x89\x80\x73\x52\xf2\xe1\x34\xb3\x2c\xd7\x77\x7c\x27\x15\x33\xf5\x7e\x56\x38\x92\xc8\xe0\x18\x78\x9b\x91\xf4\x47\xeb\xd8\xb3\x03\xb6\xdc\x0c\x2c\x74\x70\x33\x81\x5c\x8d\x08\xca\xb5\xa7\x6d\xb8\xc0\x7e\x39\xd3\xba\xa5\xd7\x8e\xd6\x28\xf0\xf3\xaf\xcc\xd4\x44\xe1\x71\x0d\x17\x43\xde\xe4\x5f\xac\xbd\xdb\xb4\x08\x57\x15\xdb\xfe\xc4\x1d\x4c\xc0\xf1\x53\x7e\xfc\x8a\x02\x77\x54\xc1\xf5\x65\x94\x48\xb9\x8f\xd5\xfb\x33\xc1\xd4\x39\x56\x4e\xfd\x5b\x7c\x9a\x80\x27\xd7\x78\xa0\xe9\xf5\xe5\xb9\xe5\x0c\x8c\x2c\x63\xdb\xe7\x56\x43\x5c\x3d\xa0\xa9\x27\xae\x98\x91\xd4\x67\x4d\xff\x5b\xc6\xb3\x18\xe7\x67\xed\xcf\xf5\x74\xdf\xe5\xb4\x5f\xac\xe1\xe2\x0d\xdf\x6e\xd3\x08\x85\xfd\xde\xcf\x46\xa4\x3a\x47\xcd\xcf\x92\x93\xc5\xe7\x7d\x3c\x49\xc4\x20\xfc\x33\xdd\x11\xa2\xa8\xd6\xe5\x84\x48\xf4\xdb\x59\xa4\x31\x7e\x87\x72\xf9\x55\x92\x19\xac\xa3\x32\x12\x87\x4b\x64\xe0\xfa\x72\xe4\xcf\xd4\xf6\x24\x80\x46\x7e\xcd\x71\xb5\xcc\xd3\x06\x1b\xb8\x89\x00\xcd\x45\x4d\x08\x94\x8b\x25\x9b\xb7\xe9\x3b\xd0\xac\x67\xfd\x8f\xcc\xb9\x7a\xa5\xeb\x34\x06\x98\x01\x9a\xd9\x84\x09\x77\xfc\x22\xb6\xd2\x17\xa7\xa5\x74\x71\xf5\xeb\xff\xcd\x94\xef\x23\x23\xf8\x98\xa7\x8d\x4d\x01\xa9\xe0\x66\xda\x66\xe6\x5d\x7e\x72\x3d\xd0\xfb\x1c\xa1\x89\xaf\x9b\xf7\x2e\x96\xb9\x4d\xed\x98\xf2\xda\x1b\x06\xc1\xd9\x70\xb1\xdf\x87\x0f\xd0\xa0\x60\x55\xba\xda\xb8\x99\x45\x48\x03\x1e\x20\xcc\xcd\x1c\x52\xad\xc6\x4c\xcc\x58\xb2\x49\xdd\x37\xdf\xc8\x52\x14\x19\x7f\xa7\x20\xf4\x83\xcd\x54\x75\x1c\xed\xcb\x95\xc4\x85\x68\x39\x1b\xae\x73\x69\x5c\x14\xf0\xdb\x81\x2a\xc5\x08\x75\x43\x13\xa1\x5b\xdb\x9f\x46\x73\xa6\xa2\x15\x65\x07\xaa\xf2\x85\x3e\x15\xc5\x7c\x2b\xfa\xd4\x2b\xfc\xcc\x70\x6a\xa7\xbf\x87\x7b\x62\xe3\x61\x4e\x14\xf4\x38\x18\xf2\x53\xe6\x1e\xd5\xb3\xee\xf7\x88\xf7\x47\x03\xea\x81\x9e\x7c\xa9\x31\xeb\x10\xda\xbe\x24\xbd\x9d\xa0\x7d\x51\xfa\x16\x27\x64\x8f\xf7\x65\x52\x94\xde\xe8\xb1\xef\x20\xa9\xa7\x68\xa6\x71\x4c\x1d\x88\x1f\xd8\x96\xaf\x45\x5e\x17\x5e\xb7\x69\x0d\x08\xa9\xf6\xc8\x4f\x04\x33\x61\x07\x73\x3b\xb7\x5a\xee\x5b\xc1\xfe\x6c\x29\x34\x68\xea\xfc\xbc\xe4\xf5\xd7\xff\x7b\x6c\x2e\x4e\x5a\xff\x94\xba\x29\xce\x65\xd2\x3c\xc9\x1f\x5f\xa1\xce\xfe\xbe\x24\x2f\xc9\x5f\x01\x00\x00\xff\xff\xa9\x36\x7e\xb4\x7d\x0d\x00\x00" +var _lockedtokensAdminCustody_create_only_lease_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x56\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\x7c\x08\x64\x40\x91\xd2\xab\x91\x64\x91\x1a\x5d\xb4\xd8\x14\x0d\xda\x74\xf7\x3c\x11\x69\x8b\x08\x4d\xaa\x24\x65\x43\x58\xe4\xbf\x17\xa4\xa8\x07\x65\x6a\xe3\x16\xed\x69\x75\x30\x2c\x6a\x1e\xdf\x7c\x9c\x17\x3b\xd4\x52\x19\xd8\xaa\xb6\x36\x32\xf1\x6f\x1f\xb9\x3c\x3d\xcb\x57\x2a\x60\xa7\xe4\x01\x56\xc3\xfb\x6a\x90\x68\xc4\x9e\xbd\x70\x1a\x48\x4d\xcf\x06\xc9\x47\x59\xbe\x52\xe2\xce\xb4\x17\x9c\x1e\xad\x92\xa4\x28\x0a\x78\x56\x28\x34\x96\x86\x49\x01\xa6\x42\x03\x08\x65\xa3\x8d\x24\x2d\xd4\x4a\x1e\x19\xa1\x0a\x4e\xb2\xe1\x04\x34\xdb\x0b\xa7\x62\x24\x94\x8a\xa2\xa1\x80\xa0\x2b\x54\x94\x00\x96\xa5\x6c\x84\x81\x9d\x54\x80\xd0\x68\xab\x54\x49\x40\xae\x28\x92\xd6\x69\x55\xa8\xc1\x54\x94\x29\x68\x04\x77\x38\x06\xad\xce\x1a\xb1\x62\x1d\xa6\x8a\x9e\x0b\x39\x7d\xe9\x50\x58\x3b\x60\x26\xc0\x91\x6b\x99\x24\x93\x93\x34\x01\x00\xd8\x35\x9c\x3f\x90\x03\x13\x4f\xcd\x0b\x67\xe5\x27\xda\x6e\x3c\xdf\xf9\x27\xda\x3e\x32\x6d\x7e\x12\x46\xb5\x19\x14\x05\x7c\xa1\x6c\x5f\x99\x0d\xfc\x70\x73\x73\x93\xac\x01\xbe\x26\xce\x44\xad\x68\x8d\x8a\xa6\x9e\x93\x27\x4f\xc9\x06\xb0\x31\x55\xfa\xa3\x54\x4a\x9e\x3e\x23\x6f\xe8\x1a\xae\x1e\x3a\xa4\x99\x8b\xdf\xbf\x78\xc1\x3f\x8c\x54\xb8\xa7\x19\x6c\xb1\xc6\x17\xc6\x99\x61\x54\x8f\x2a\xeb\xde\x9d\x7d\x38\x35\x9e\x56\xff\x15\xee\xc0\xff\x4b\x6b\x6c\xad\xf3\x19\x9a\xf5\xa8\x1c\x28\xe6\xaf\xb4\xd5\x39\x12\x92\xd6\x23\x01\xe7\xa4\xe4\xc3\xd7\xcc\xb2\x5c\x3d\xf0\xbd\x54\xcc\x54\x87\xa8\x70\x20\x91\xc1\xc9\xf3\x16\x91\xec\x3e\xad\xc3\xc8\x8e\xd8\x70\x33\xb0\xd0\xc2\xdd\x0c\x72\x39\x21\x28\xd7\x1d\x6d\x83\x01\xfb\xe4\x4c\xeb\x86\xde\x3a\x5a\x83\xc4\xcf\xbf\x30\x53\x11\x85\xa7\x35\x5c\x0d\x75\x93\x7f\xb6\xfe\xee\xd3\xc2\x9b\x2a\x76\xfd\x17\xf7\x61\x06\x8e\x8f\xf5\xf1\x2b\x0a\xdc\x53\x05\xb7\xd7\x41\x21\xe5\x5d\xae\x3e\x9e\x09\xa6\x2e\xb0\xcd\x3c\xbe\xc5\xab\xf1\x78\x72\x8d\x47\x9a\xde\x5e\x9f\x7b\xce\xc0\xc8\x4d\xe8\xfb\xdc\xab\xcf\xab\x27\x34\xd5\x2c\x14\x33\x91\xfa\x7f\xe9\xce\x42\x90\x7f\xba\xc2\xed\x5e\xd6\x70\xf5\x4e\x00\xf7\x69\xe0\xcd\x3e\x97\x87\x1c\xa8\xc6\xe2\xff\x59\x72\xb2\x78\x87\xcf\xa3\x44\x08\xa2\xbb\x8b\x07\x42\x14\xd5\x7a\x33\x23\x0c\xbb\xe3\x2c\xd0\x98\x92\xbd\x59\xa0\x3e\x89\x00\x9d\x34\x8a\x30\x21\x02\xeb\xb7\xd7\x93\x60\xe6\x8e\x67\x29\x32\x09\x2a\x46\xd4\x32\x49\x5b\xac\xe1\x2e\x00\x14\x4b\x0d\x9f\x0d\x57\x4b\x3e\xef\xd3\x0b\xd0\xac\xa3\xf1\x07\xee\x5c\x47\xd2\x55\x1a\x02\xcc\x00\x4d\xb4\x24\xbc\x8d\x5f\xc4\x4e\x76\xed\x67\xa9\x20\x5c\x87\xfa\x1e\xcb\x81\x4f\x79\xda\xda\xfc\x97\x0a\xee\xe6\x83\x24\x1e\xf2\x8b\x9b\x72\x5d\xcc\x01\x9a\xd0\x5c\x3c\xba\x50\xe6\x3e\xb5\x8b\xc8\xb7\xee\xd0\x0b\x46\xd3\xc5\x3e\x1f\x3e\x40\x8d\x82\x95\xe9\x6a\xeb\xb6\x12\x21\x0d\x74\x00\x21\xb6\x55\x48\xb5\x9a\x32\x11\xf1\x64\x2b\xba\x1f\xaf\x81\xa7\x20\x33\xfe\x49\x37\xe8\x57\x97\xb9\xea\x34\xdb\x97\xdb\x88\x4b\xd1\x4d\x34\x5d\x63\x65\x5c\x14\xf0\xdb\x91\x2a\xc5\x08\x75\x6b\x11\xa1\x3b\x3b\x81\x26\x9b\xa4\xa2\x25\x65\x47\xaa\xf2\x85\x49\x14\xe4\x7c\x23\xfa\xd2\x2b\xba\xad\x60\x1c\x98\xbf\x7b\x3b\xa1\x73\xbf\x09\x0a\x7a\x1a\x1c\x75\x7b\xe4\x01\xd5\xab\xee\xcf\x48\x17\x8f\x06\xd4\x03\x3d\xf9\xd2\xe8\xd5\x63\xef\xbc\xa8\x40\xfb\xa6\xf4\x35\x2c\xc8\x1e\xef\xdb\xac\x29\xbd\x33\x45\x2f\x20\xa9\xa7\x28\x32\x35\xe6\x01\x84\x17\x6c\xdb\xd7\x22\xaf\x0b\xb7\x5b\x37\x06\x84\x54\x07\xe4\x23\xc1\x4c\xd8\xd5\xdb\x6e\xa6\x96\xfb\x46\xb0\xbf\x1a\x0a\x35\x9a\x2a\x3f\x6f\x79\xbd\xf9\xff\x8e\xcd\xc5\x5d\xea\xdf\x52\x37\xc7\xb9\x4c\x5a\x47\xf2\xc7\x6f\x50\x67\x7f\xdf\x92\xb7\xe4\xef\x00\x00\x00\xff\xff\xe2\xdb\xc3\xfe\x5f\x0d\x00\x00" func lockedtokensAdminCustody_create_only_lease_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3878,11 +3878,11 @@ func lockedtokensAdminCustody_create_only_lease_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_lease_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0xf6, 0x5e, 0x49, 0x32, 0xc7, 0xdc, 0xd, 0x19, 0xe0, 0x73, 0x26, 0x5f, 0xd3, 0xcc, 0x16, 0x42, 0xea, 0x71, 0x24, 0x8e, 0xf7, 0xaf, 0x6f, 0xa7, 0x9f, 0x24, 0xf, 0xf8, 0x38, 0xdb, 0x12}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x70, 0x57, 0xa6, 0x27, 0xa4, 0x94, 0xb4, 0xe4, 0xe5, 0xfa, 0x86, 0x9c, 0x8e, 0x63, 0x31, 0x9f, 0x77, 0xf9, 0x35, 0x41, 0x55, 0xb3, 0x84, 0xf9, 0xbd, 0x73, 0xa2, 0xd4, 0x3a, 0x46, 0x6e}} return a, nil } -var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x5b\x6f\xab\x46\x10\x7e\xe7\x57\x8c\xfc\x10\x61\x89\x40\xfa\x58\x2b\xc9\x51\x6a\xf5\xa8\xd5\x49\xd5\xa8\x4d\xce\x79\x9e\xc0\xd8\xac\x82\x77\xe9\xee\x62\x0b\x45\xf9\xef\xd5\x5e\xc0\x2c\x86\x5c\xaa\xb6\x3a\x3c\x44\x61\x99\xcb\x37\xdf\x5c\x76\xcc\x76\xb5\x90\x1a\xd6\xb2\xad\xb5\x88\xfc\xdb\xe7\x4a\x1c\xee\xc5\x13\x71\xd8\x48\xb1\x83\x45\xff\xbe\xe8\x25\x1a\xbe\x65\x8f\x15\x05\x52\xc3\xb3\x5e\xf2\x56\xe4\x4f\x54\xd8\x33\xe5\x05\x87\x47\x8b\x28\xca\xb2\x0c\xee\x25\x72\x85\xb9\x66\x82\x83\x2e\x51\x03\x42\xde\x28\x2d\x8a\x16\x6a\x29\xf6\xac\x20\x09\x07\xd1\x54\x05\x28\xb6\xe5\x56\x45\x0b\xc8\x25\xa1\x26\x40\x50\x25\x4a\x2a\x00\xf3\x5c\x34\x5c\xc3\x46\x48\x40\x68\x94\x51\x2a\x05\x60\x25\x09\x8b\xd6\x6a\x95\xa8\x40\x97\xc4\x24\x34\xbc\xb2\x38\x7a\x2d\x67\xad\x30\x62\x0e\x53\x49\xa7\x42\x56\x5f\x58\x14\xc6\x0e\xe8\x01\x70\xac\x94\x88\xa2\xc1\x49\x1c\x01\x00\xd4\x28\x35\xc3\xea\xa6\xd8\x31\x7e\xd7\x3c\x56\x2c\xff\x42\xed\xca\x53\x9e\x7e\xa1\xf6\x96\x29\xfd\x33\xd7\xb2\x4d\x20\xcb\xe0\x1b\xb1\x6d\xa9\x57\xf0\xc3\xc5\xc5\x50\xfd\x41\x91\xfc\x80\xf6\x8f\x17\x17\xd1\x12\xe0\x39\x72\x36\x24\xd5\x28\x29\xf6\x9c\xde\x79\x4a\x57\x80\x8d\x2e\xe3\x9f\x84\x94\xe2\xf0\x15\xab\x86\x96\x70\x76\xe3\x22\x4d\x2c\x7f\xfe\xc5\x0b\xfe\xa9\x85\xc4\x2d\x25\xb0\xc6\x1a\x1f\x59\xc5\x34\x23\x75\x54\x59\x76\xee\xcc\x53\x91\xf6\x69\xf1\x5f\xe1\x0a\xfc\x7f\x71\x8d\xad\x71\x3e\x42\xb3\x3c\x2a\x07\x8a\xe9\x13\xb5\x2a\xc5\xa2\x88\xeb\x63\xfc\x93\xa4\xa6\xbd\x40\x62\x12\x55\xde\x54\x5b\x21\x99\x2e\x77\x73\xf2\x81\x50\x02\x07\x4f\xde\xb4\xb0\xfb\xba\xfc\x38\xc8\x20\x75\x6f\x63\x0c\xc5\x5f\x87\x18\xca\x76\x08\x83\x24\xec\xb1\xa9\x74\x9f\xb0\x16\xae\x46\xc0\xf3\x41\x2e\x53\xe5\x32\xdc\x1b\x30\x4f\xca\x94\x6a\xe8\xd2\x56\x40\xd0\xe3\xe9\x37\xa6\xcb\x42\xe2\x61\x09\x67\xfd\x88\x48\xbf\x1a\x7f\xd7\x71\xe6\x4d\x65\x9b\xee\x8b\xfd\x30\x02\x57\x1d\x47\xc1\x6f\xc8\x71\x4b\x12\x2e\xcf\x83\x99\x91\xba\xb6\xbc\x3d\x11\x8c\x6d\x60\xab\x71\x7c\xb3\x55\xe4\xf1\xa4\x0a\xf7\x14\x5f\x9e\x9f\x7a\x4e\x40\x8b\x55\xe8\xfb\xd4\xab\x6f\x81\x3b\xd4\xe5\x28\x14\x3d\x90\x7a\x50\xf4\xdf\x32\x9e\x84\x38\x1f\x94\xfb\xae\xc6\xe7\x76\x7c\xb9\x97\x25\x9c\xbd\x11\xdb\x75\x1c\xa0\x30\xcf\xfb\xd9\x08\x54\xa7\xa8\xf9\x45\x54\xc5\x6c\x7a\xef\x8f\x12\x21\x08\x97\xa6\x9b\xa2\x90\xa4\xd4\x6a\x44\x24\xba\xe3\x24\xd0\x18\xe6\x61\x35\x9f\x95\x68\x02\xeb\x60\xe2\x85\xe5\x12\x38\xb8\x3c\x1f\xc4\x33\xf6\x3d\x2a\xa0\x41\x5c\x53\x5c\xcd\xf3\xb4\xc6\x1a\xae\x02\x40\x53\x55\xe3\x0b\xe5\x6c\xce\xe7\x75\xfc\x0e\x34\xcb\xc9\xf8\x03\x77\x76\x66\xa9\x32\x0e\x01\x26\x80\x7a\xb2\x61\xbc\x8d\x5f\xf9\x46\xb8\xe1\x34\xd7\x2e\x76\xc2\xfe\xbf\x9d\xf2\x7d\x74\x44\x35\xe4\x69\x6d\x5a\x40\x48\xb8\x1a\xdf\x88\xd3\x21\x3f\xda\xeb\xda\xc5\x1c\xa0\x09\xcd\x4d\x47\x17\xca\x5c\xc7\x66\x23\x7b\x2d\x87\x5e\x70\xb2\x5c\xcc\xf3\xe9\x13\xd4\xc8\x59\x1e\x2f\xd6\x76\x3d\xe3\x42\x83\x03\x08\x53\xeb\x95\x90\x8b\x21\x13\x13\x9e\x4c\x53\x77\x7b\x42\xe0\x29\xa8\x8c\x8f\x0c\x84\x6e\x87\x1b\xab\x0e\xab\x7d\x7e\x92\xd8\x12\x5d\x4d\x96\xeb\x54\x1b\x67\x19\xfc\xbe\x27\x29\x59\x41\x76\x3f\x2c\x68\x63\xee\xa7\xc1\x4a\x2d\x29\x27\xb6\x27\x99\xce\xdc\x53\x41\xcd\x37\xbc\x6b\xbd\xcc\xed\x0d\xc7\xeb\xf4\x0f\x6f\x27\x74\xee\x57\x62\x4e\x87\xde\x91\x5b\xa8\x77\x28\x9f\x54\x77\x56\xb8\x78\x14\xa0\xea\xe9\x49\xe7\x2e\x66\xe5\x4b\xdb\x8d\xa4\xb7\x1b\xb4\x1b\x4a\xcf\x61\x43\x76\x78\x5f\x46\x43\xe9\x8d\x3b\xf6\x1d\x24\x75\x14\x4d\x5c\x1c\xe3\x00\xc2\x04\x9b\xf1\x35\xcb\xeb\x4c\x76\xeb\x46\x03\x17\x72\x87\xd5\x91\x60\xc6\xcd\x6f\x10\xb3\x62\x1b\xee\x1b\xce\xfe\x6a\x08\x6a\xd4\x65\x7a\x3a\xf2\x3a\xf3\xff\x1e\x9b\xb3\x9b\xd6\x3f\xa5\x6e\x8c\x73\x9e\x34\x47\xf2\xe7\x57\xa8\x33\x7f\x5f\xa2\x97\xe8\xef\x00\x00\x00\xff\xff\x2c\xdd\x12\x23\x68\x0e\x00\x00" +var _lockedtokensAdminCustody_create_only_shared_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x57\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\x7c\x08\x64\x40\x91\xd2\x63\x8d\x24\x8b\xd4\xe8\xa2\xc5\xa6\x68\xd0\x66\x77\xcf\x13\x91\xb6\x88\xd0\xa4\x4a\x52\x36\x84\x20\xff\xbd\xe0\x43\xb2\x28\x4b\x89\x53\xb4\xa7\xea\x10\x44\xd4\x3c\xbe\xf9\xe6\xc1\x31\xdb\xd5\x52\x19\x58\xab\xb6\x36\x32\x09\x6f\x9f\xb9\x3c\x3c\xca\x67\x2a\x60\xa3\xe4\x0e\x16\xfd\xfb\xa2\x97\x68\xc4\x96\x3d\x71\x1a\x49\x0d\xcf\x7a\xc9\x7b\x59\x3e\x53\xe2\xce\x74\x10\x1c\x1e\x2d\x92\xa4\x28\x0a\x78\x54\x28\x34\x96\x86\x49\x01\xa6\x42\x03\x08\x65\xa3\x8d\x24\x2d\xd4\x4a\xee\x19\xa1\x0a\x0e\xb2\xe1\x04\x34\xdb\x0a\xa7\x62\x24\x94\x8a\xa2\xa1\x80\xa0\x2b\x54\x94\x00\x96\xa5\x6c\x84\x81\x8d\x54\x80\xd0\x68\xab\x54\x49\x40\xae\x28\x92\xd6\x69\x55\xa8\xc1\x54\x94\x29\x68\x04\x77\x38\x7a\x2d\x6f\x8d\x58\x31\x8f\xa9\xa2\xa7\x42\x4e\x5f\x3a\x14\xd6\x0e\x98\x01\x70\xe4\x5a\x26\xc9\xe0\x24\x4d\x00\x00\x6a\x54\x86\x21\xbf\x23\x3b\x26\x1e\x9a\x27\xce\xca\x2f\xb4\x5d\x05\xca\xf3\x2f\xb4\xbd\x67\xda\xfc\x2c\x8c\x6a\x33\x28\x0a\xf8\x4e\xd9\xb6\x32\x2b\xf8\xe1\xea\x6a\xa8\xfe\x55\x53\xf5\x01\xed\x1f\xaf\xae\x92\x25\xc0\x4b\xe2\x6d\x28\x5a\xa3\xa2\x69\xe0\xf4\x21\x50\xba\x02\x6c\x4c\x95\xfe\x24\x95\x92\x87\x6f\xc8\x1b\xba\x84\x8b\x3b\x1f\x69\xe6\xf8\x0b\x2f\x41\xf0\x4f\x23\x15\x6e\x69\x06\x6b\xac\xf1\x89\x71\x66\x18\xd5\x47\x95\x65\xe7\xce\x3e\x9c\x9a\x90\x96\xf0\x15\x6e\x20\xfc\x97\xd6\xd8\x5a\xe7\x23\x34\xcb\xa3\x72\xa4\x98\x3f\xd3\x56\xe7\x48\x48\x5a\x1f\xe3\x9f\x24\x35\xef\x05\x32\x9b\xa8\xea\x8e\x6f\xa5\x62\xa6\xda\xcd\xc9\x47\x42\x19\x1c\x02\x79\xd3\xc2\xfe\xeb\xf2\xe3\x20\xa3\xd4\xbd\x8f\x31\x16\x7f\x1b\x62\x2c\xdb\x21\x8c\x92\xb0\xc7\x86\x9b\x3e\x61\x2d\xdc\x8c\x80\x97\x83\x5c\xe6\xda\x67\xb8\x37\x60\x9f\x9c\x69\xdd\xd0\x6b\x57\x01\x51\x8f\xe7\xdf\x99\xa9\x88\xc2\xc3\x12\x2e\xfa\x11\x91\x7f\xb3\xfe\x6e\xd3\x22\x98\x2a\x36\xdd\x17\xf7\x61\x04\x8e\x1f\x47\xc1\x6f\x28\x70\x4b\x15\x5c\x5f\x46\x33\x23\xf7\x6d\x79\x7f\x22\x98\xba\xc0\x56\xe3\xf8\x66\xab\x28\xe0\xc9\x35\xee\x69\x7a\x7d\x79\xea\x39\x03\x23\x57\xb1\xef\x53\xaf\xa1\x05\x1e\xd0\x54\xa3\x50\xcc\x40\xea\xbf\xa5\x3b\x8b\x41\x7e\x75\x33\xca\xbf\x2c\xe1\xe2\x9d\x00\x6e\xd3\xc8\x9b\x7d\xce\x0f\x39\x52\x9d\x8a\xff\x17\xc9\xc9\x6c\x0e\x1f\x8f\x12\x31\x08\x9f\x8b\x3b\x42\x14\xd5\x7a\x35\x22\x0c\xfd\x71\x16\x69\x0c\xc9\x5e\xcd\x50\x9f\x4c\x00\x1d\xcc\xb4\xb8\x20\x22\xeb\xd7\x97\x83\x60\xc6\x8e\x47\x25\x32\x08\x6a\x8a\xa8\x79\x92\xd6\x58\xc3\x4d\x04\x68\xaa\x34\x42\x35\x5c\xcc\xf9\xbc\x4d\xcf\x40\xb3\x9c\x8c\x3f\x72\xe7\xa6\x92\xae\xd2\x18\x60\x06\x68\x26\x5b\x22\xd8\xf8\x55\x6c\xa4\x1f\x3f\x73\x0d\xe1\x66\xe8\xff\xb1\x1d\xf8\x90\xa7\xb5\xad\x7f\xa9\xe0\x66\x7c\xe7\x4d\x87\xfc\xe4\x2e\x64\x1f\x73\x84\x26\x36\x37\x1d\x5d\x2c\x73\x9b\xda\x9d\xeb\xad\x1c\x06\xc1\xc9\x72\xb1\xcf\xa7\x4f\x50\xa3\x60\x65\xba\x58\xbb\x05\x4c\x48\x03\x1e\x20\x4c\x2d\x50\x52\x2d\x86\x4c\x4c\x78\xb2\x1d\xdd\x6d\x02\x91\xa7\xa8\x32\x3e\x32\x0d\xba\x2d\x6d\xac\x3a\xac\xf6\xf9\x31\xe2\x4a\x74\x35\x59\xae\x53\x6d\x5c\x14\xf0\xfb\x9e\x2a\xc5\x08\x75\x1b\x20\xa1\x1b\x7b\x03\x0d\x96\x66\x45\x4b\xca\xf6\x54\xe5\x33\x37\x51\x54\xf3\x8d\xe8\x5a\xaf\xf0\x9b\xc1\xf1\xc2\xfc\x23\xd8\x89\x9d\x87\xa5\x57\xd0\x43\xef\xc8\xaf\xcc\x3b\x54\xcf\xba\x3b\x23\x3e\x1e\x0d\xa8\x7b\x7a\xf2\xb9\xab\x57\x1f\x67\xe7\x59\x0d\xda\x0d\xa5\x97\xb8\x21\x3b\xbc\xaf\xa3\xa1\xf4\xce\x2d\x7a\x06\x49\x1d\x45\x13\xb7\xc6\x38\x80\x38\xc1\x76\x7c\xcd\xf2\x3a\x93\xdd\xba\x31\x20\xa4\xda\x21\x3f\x12\xcc\x84\xfd\x95\x61\x97\x68\xcb\x7d\x23\xd8\x5f\x0d\x85\x1a\x4d\x95\x9f\x8e\xbc\xce\xfc\xbf\xc7\xe6\xec\x2e\xf5\x4f\xa9\x1b\xe3\x9c\x27\xcd\x93\xfc\xf9\x0d\xea\xec\xdf\xd7\xe4\x35\xf9\x3b\x00\x00\xff\xff\x5e\x53\xd5\xd4\x4a\x0e\x00\x00" func lockedtokensAdminCustody_create_only_shared_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -3898,11 +3898,11 @@ func lockedtokensAdminCustody_create_only_shared_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_only_shared_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0xc7, 0x75, 0xb1, 0xca, 0x70, 0x17, 0x98, 0x65, 0x16, 0x10, 0x99, 0x86, 0xeb, 0x85, 0xaf, 0xbf, 0xb4, 0x7e, 0x9b, 0xab, 0x68, 0x96, 0xd4, 0xfc, 0x44, 0x50, 0x73, 0x16, 0xc4, 0x4a, 0x7d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb5, 0xcb, 0x34, 0xec, 0x63, 0x57, 0xda, 0x6, 0x6f, 0xff, 0xcb, 0x7a, 0x67, 0x64, 0x86, 0xa4, 0x6, 0xb6, 0x9e, 0xe0, 0x59, 0xe9, 0x76, 0x17, 0x35, 0x46, 0x12, 0xe1, 0xb0, 0x66, 0x28, 0x86}} return a, nil } -var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\xcd\x6e\xe3\x36\x10\xbe\xeb\x29\x06\x3e\x04\x32\xe0\x48\xde\x63\x8d\x24\x8b\xd4\xe8\xa2\xc5\xa6\x68\xd0\x26\xbb\xe7\x89\x34\xb6\x88\xc8\xa4\x4a\x52\x36\x8c\x20\xef\x5e\x50\xa4\x64\x51\xa2\x92\xb8\x68\x8b\xf2\x10\x44\xe4\x0c\xe7\x9b\x6f\x7e\x38\x66\xbb\x4a\x48\x0d\x6b\x79\xac\xb4\x88\xdc\xd7\x97\x52\x1c\x1e\xc4\x33\x71\xd8\x48\xb1\x83\x59\xf7\x3d\xeb\x24\x6a\xbe\x65\x4f\x25\x79\x52\xfd\xbd\x4e\xf2\x4e\x64\xcf\x94\x37\x7b\xca\x09\xf6\xb7\x66\x51\x94\xa6\x29\x3c\x48\xe4\x0a\x33\xcd\x04\x07\x5d\xa0\x06\x84\xac\x56\x5a\xe4\x47\xa8\xa4\xd8\xb3\x9c\x24\x1c\x44\x5d\xe6\xa0\xd8\x96\x37\x2a\x5a\x40\x26\x09\x35\x01\x82\x2a\x50\x52\x0e\x98\x65\xa2\xe6\x1a\x90\xe7\x80\x1c\x6a\x5e\x36\x96\x1a\xf1\xf6\x6c\x23\x24\x20\xd4\x8a\x64\x14\xe9\x93\xd5\x38\x02\x00\xa8\x50\x6a\x86\xe5\x6d\xbe\x63\xfc\xbe\x7e\x2a\x59\xf6\x95\x8e\x2b\xc7\x4e\xf2\x95\x8e\x77\x4c\xe9\x9f\xb8\x96\xc7\x05\xa4\x29\x7c\x27\xb6\x2d\xf4\x0a\x3e\x2d\x97\x7d\xf5\x47\x45\xf2\x0c\xed\x1f\x9c\xf6\xa6\x2e\xcf\x55\xfd\xb4\x5c\x2e\xa3\x39\xbc\x44\xd6\xbc\xa4\x0a\x25\xc5\x8e\xb9\x7b\x47\xdc\x0a\xb0\xd6\x45\xfc\xa3\x90\x52\x1c\xbe\x61\x59\xd3\x1c\x2e\x6e\x2d\x1d\x9d\xae\x59\x25\x69\xc7\xa4\x3b\x85\x6b\x70\xff\xc5\x15\x1e\xcd\x4d\x83\xab\xe7\x9e\xae\x21\xf5\xe3\x9a\x9d\xaa\x67\x32\x79\xa6\xa3\x4a\x30\xcf\xe3\xea\x44\x43\x30\x2c\x49\x27\xb0\x80\x02\x55\x71\x5b\x6e\x85\x64\xba\xd8\x4d\xc9\x7b\x42\x0b\x38\x38\x0e\xc3\xc2\xf6\x74\x7e\x3e\x48\x2f\x82\xef\x63\xf4\xc5\xdf\x86\xe8\xcb\xb6\x08\x3b\x88\x3d\xfa\x83\x00\x47\xf9\xf5\x06\xba\xb1\xec\x04\xb4\xb1\xe0\x08\x97\x49\x8d\x3d\xd6\xa5\x5e\x63\x85\x4f\xac\x64\xfa\x08\xd7\x03\x42\xb3\xf6\x88\x91\x4a\x94\x16\x12\xb7\xd4\x5d\x60\x56\xc2\x94\xaa\xe9\xaa\xc9\x64\xaf\xd1\x24\xdf\x99\x2e\x72\x89\x87\x39\x5c\x74\x7d\x2a\xf9\x66\xec\xdd\xc4\xa9\xbb\x2a\xdd\xb4\x27\xcd\xc1\x00\x5c\x79\xea\x47\xbf\x22\xc7\x2d\x49\xb8\xba\xf4\x1a\x57\x62\x3b\xcd\xdd\x48\x30\x6e\x1c\x5b\x0d\xfd\x9b\xcc\x6e\x87\x27\x51\xb8\xa7\xf8\xea\x72\x6c\x79\x01\x5a\xac\x7c\xdb\x63\xab\x7f\xd8\x5b\xee\x51\x17\x03\x57\x74\x4f\xea\x51\xd1\xbf\xcb\xf8\xc2\xc7\xf9\xa8\xec\xb9\x1a\xee\x37\x6d\xd8\x7e\xcc\xe1\xe2\x1d\xdf\x6e\x62\x0f\x85\x59\x1f\x67\xc3\x53\x0d\x51\xf3\xb3\x28\xf3\xc9\xf0\x3e\x9c\x24\x7c\x10\x36\x4c\xb7\x79\x2e\x49\xa9\xd5\x80\x48\xb4\xdb\x0b\x4f\xa3\x1f\x87\xd5\x74\x54\xa2\x00\xd6\x7e\x19\x7b\xe9\xe2\x19\xb8\xba\xec\xf9\x33\xb4\x3d\x48\xa0\x9e\x5f\x21\xae\xa6\x79\x5a\x63\x05\xd7\x1e\xa0\x50\xd6\xb8\x44\xb9\x98\xb2\x79\x13\x7f\x00\xcd\x3c\xe8\xbf\x67\xae\xe9\x56\xaa\x88\x7d\x80\x0b\x40\x1d\x2c\x18\x77\xc7\x2f\x7c\x23\x6c\x73\x9a\x2a\x97\xa6\xf3\xff\xb7\x95\xf2\xff\xa8\x88\xb2\xcf\xd3\xda\x94\x80\x90\x70\x3d\x7c\xa9\xc3\x2e\x3f\x35\xd3\x84\xf5\xd9\x43\xe3\x5f\x17\xf6\xce\x97\xb9\x89\xcd\x58\xf8\x56\x0c\x9d\x60\x30\x5d\xcc\xfa\xfc\x19\x2a\xe4\x2c\x8b\x67\xeb\x66\x46\xe4\x42\x83\x05\xd8\x8d\x7d\x99\x73\x4f\xd2\x86\x24\xf1\x8c\x66\x7d\x32\x02\xc6\x4c\x5d\xb7\x23\x8c\x67\xcc\x4b\x8e\x73\x7a\x42\x3b\x8e\x0e\x55\xfb\x09\x3f\xdd\x4c\x9a\x2c\x5d\x05\x33\x36\x54\xc9\x69\x0a\xbf\xed\x49\x4a\x96\x13\xe8\x82\x20\xa7\x8d\x79\xa2\x7a\xa3\xbd\xa4\x8c\xd8\x9e\x64\x32\xf1\x54\x79\x69\x5f\xf3\xb6\xfa\x52\x3b\x34\x9c\x5e\xd4\xdf\xdd\x3d\xbe\x71\x37\x9a\x73\x3a\x74\x86\xec\x60\xbf\x43\xf9\xac\xda\xbd\xdc\xfa\xa3\x00\x55\x47\x4f\x32\xf5\x36\x2b\x97\xdd\xb6\x2b\xbd\x5f\xa3\x6d\x5f\x7a\xf1\x6b\xb2\xc5\xfb\x3a\xe8\x4b\xef\x3c\xb3\x1f\x20\xa9\xa5\x28\xf0\x76\x0c\x1d\xf0\x03\x6c\x3a\xd8\x24\xaf\x13\xd1\xad\x6a\x0d\x5c\xc8\x1d\x96\x27\x82\x19\x37\xbf\x85\xcc\x8f\x00\xc3\x7d\xcd\xd9\x9f\x35\x41\x85\xba\x48\xc6\x5d\xaf\xbd\xfe\x9f\x63\x73\x72\xd8\xfa\xbb\xd4\x0d\x71\x4e\x93\x66\x49\xfe\xf2\x06\x75\xe6\xef\x6b\xf4\x1a\xfd\x15\x00\x00\xff\xff\x77\x82\xc0\xb8\xf0\x0e\x00\x00" +var _lockedtokensAdminCustody_create_shared_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x57\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\x7c\x08\x64\xc0\x91\xbc\xc7\x1a\x49\x16\xa9\xd1\x45\x8b\x4d\xd1\xa0\xcd\xee\x9e\x27\xd2\xd8\x22\x22\x93\x2a\x3f\x6c\x18\x8b\xfc\xf7\x82\x12\x25\x8b\x12\x95\xd8\x45\x7b\x5a\x1d\x82\x48\x7c\x33\xf3\xe6\x71\x38\x1c\xb3\x5d\x25\xa4\x86\xb5\x3c\x56\x5a\x44\xee\xed\x53\x29\x0e\x4f\xe2\x85\x38\x6c\xa4\xd8\xc1\xac\x7b\x9f\x75\x08\xc3\xb7\xec\xb9\x24\x0f\xd5\xff\xd6\x21\x1f\x44\xf6\x42\x79\xfd\x4d\x39\x60\xff\xd3\x2c\x8a\xd2\x34\x85\x27\x89\x5c\x61\xa6\x99\xe0\xa0\x0b\xd4\x80\x90\x19\xa5\x45\x7e\x84\x4a\x8a\x3d\xcb\x49\xc2\x41\x98\x32\x07\xc5\xb6\xbc\x36\xd1\x02\x32\x49\xa8\x09\x10\x54\x81\x92\x72\xc0\x2c\x13\x86\x6b\x40\x9e\x03\x72\x30\xbc\xac\x23\xd5\xf0\x76\x6d\x23\x24\x20\x18\x45\x32\x8a\xf4\x29\x6a\x1c\x01\x00\x54\x28\x35\xc3\xf2\x3e\xdf\x31\xfe\x68\x9e\x4b\x96\x7d\xa6\xe3\xca\xa9\x93\x7c\xa6\xe3\x03\x53\xfa\x17\xae\xe5\x71\x01\x69\x0a\xdf\x88\x6d\x0b\xbd\x82\x0f\xcb\x65\xdf\xfc\x8b\x22\x79\x81\xf5\x4f\xce\x7a\x63\xca\x4b\x4d\x3f\x2c\x97\xcb\x68\x0e\xdf\xa3\x26\xbc\xa4\x0a\x25\xc5\x4e\xb9\x47\x27\xdc\x0a\xd0\xe8\x22\xfe\x59\x48\x29\x0e\x5f\xb1\x34\x34\x87\xab\xfb\x46\x8e\xce\xd6\x3e\x25\x69\xa7\xa4\x5b\x85\x5b\x70\xff\xc5\x15\x1e\xad\xa7\x81\xeb\xb9\x67\x6b\x45\x3d\xdf\xb2\x33\xf5\x42\x26\x2f\x74\x54\x09\xe6\x79\x5c\x9d\x64\x08\x6e\x4b\xd2\x01\x16\x50\xa0\x2a\xee\xcb\xad\x90\x4c\x17\xbb\x29\xbc\x07\x5a\xc0\xc1\x69\x18\x06\x37\xab\xf3\xcb\x49\x7a\x3b\xf8\x3e\x47\x1f\xfe\x36\x45\x1f\xdb\x32\xec\x28\xf6\xe4\x0f\x12\x1c\xd5\xd7\x1b\xec\xc6\xd8\x09\x6a\x63\xe0\x88\x97\x2d\x8d\x3d\x9a\x52\xaf\xb1\xc2\x67\x56\x32\x7d\x84\xdb\x81\xa0\x59\xbb\xc4\x48\x25\x4a\x0b\x89\x5b\xea\x1c\xd8\x27\x61\x4a\x19\xba\xa9\x2b\xd9\x6b\x34\xc9\x37\xa6\x8b\x5c\xe2\x61\x0e\x57\x5d\x9f\x4a\xbe\xda\x78\x77\x71\xea\x5c\xa5\x9b\x76\xa5\x5e\x18\x90\x2b\x4f\xfd\xe8\x77\xe4\xb8\x25\x09\x37\xd7\x5e\xe3\x4a\x9a\x4e\xf3\x30\x02\xc6\x75\x62\xab\x61\x7e\x93\xd5\xed\xf8\x24\x0a\xf7\x14\xdf\x5c\x8f\x23\x2f\x40\x8b\x95\x1f\x7b\x1c\xf5\xaf\xc6\xcb\x23\xea\x62\x90\x8a\xee\xa1\xfe\x5f\xb9\x17\x3e\xc9\x2f\x75\xaf\x6d\x5e\xe6\x70\xf5\x4e\x02\x77\xb1\x17\xcd\x3e\xe7\xa7\xec\x99\x86\xf2\xff\x55\x94\xf9\xe4\x1e\x3e\x9d\x10\x3e\x89\x66\x2f\xee\xf3\x5c\x92\x52\xab\x81\x60\xd8\x7c\x5e\x78\x16\x7d\xb1\x57\x13\xd2\x47\x01\xa2\xfd\x83\xea\x15\x84\xe7\xfd\xe6\xba\x97\xcc\x30\xf0\xa0\x44\x7a\x49\x85\x84\x9a\x16\x69\x8d\x15\xdc\x7a\x84\x42\xa5\xe1\xaa\xe1\x6a\x2a\xe6\x5d\x7c\x06\x9b\x79\x30\x7f\x2f\x5c\xdd\x8f\x54\x11\xfb\x04\x17\x80\x3a\x78\x24\x9c\x8f\xdf\xf8\x46\x34\xed\x67\xea\x40\xd4\xbd\xfd\x47\x3c\x0e\x65\x5f\xa7\xb5\xad\x7f\x21\xe1\x76\x78\x17\x87\x53\x7e\xae\xe7\x85\x26\x67\x8f\x8d\xef\x2e\x9c\x9d\x8f\xb9\x8b\xed\xe0\xf7\xd6\x1e\x3a\x60\xb0\x5c\xec\xf3\xf1\x23\x54\xc8\x59\x16\xcf\xd6\xf5\x14\xc8\x85\x86\x86\x60\x37\xd8\x65\x2e\x3d\x49\x1b\x92\xc4\x33\x9a\xf5\xc5\x08\x04\xb3\x87\xba\x1d\x52\xbc\x60\x5e\x71\x5c\xd2\x10\xda\x81\x73\x68\xda\x2f\xf8\xe9\x4e\x52\x57\xe9\x2a\x58\xb1\xa1\x93\x9c\xa6\xf0\xc7\x9e\xa4\x64\x39\x81\x2e\x08\x72\xda\xd8\x4b\xa8\x37\xbc\x4b\xca\x88\xed\x49\x26\x13\x97\x91\x57\xf6\x86\xb7\xa7\x2f\x6d\xc6\x82\xd3\x9d\xf9\xa7\xf3\xe3\x07\x77\xc3\x37\xa7\x43\x17\xa8\x19\xdd\x77\x28\x5f\x54\xfb\x2d\x6f\xf2\x51\x80\xaa\x93\x27\x99\xba\x7d\xd5\xa9\x7d\x9e\x75\x46\xdb\xbe\xf4\xdd\x3f\x93\x2d\xdf\xd7\x41\x5f\x7a\xe7\x22\x3d\x43\xa4\x56\xa2\xc0\xc5\x31\x4c\xc0\xdf\x60\xdb\xc1\x26\x75\x9d\xd8\xdd\xca\x68\xe0\x42\xee\xb0\x3c\x09\xcc\xb8\xfd\xb5\x63\xc7\x7c\xab\xbd\xe1\xec\x6f\x43\x50\xa1\x2e\x92\x71\xd7\x6b\xdd\xff\x77\x6a\x4e\x8e\x53\xff\x56\xba\x21\xcf\x69\xd1\x1a\x91\x3f\xbd\x21\x9d\xfd\xfb\x1a\xbd\x46\xff\x04\x00\x00\xff\xff\xc9\x01\x7a\xda\xd2\x0e\x00\x00" func lockedtokensAdminCustody_create_shared_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3918,7 +3918,7 @@ func lockedtokensAdminCustody_create_shared_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/custody_create_shared_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0x27, 0xfc, 0x55, 0xc7, 0xb, 0xbc, 0x92, 0x51, 0x20, 0xe9, 0x68, 0x4b, 0x57, 0xdf, 0x6f, 0x96, 0xc8, 0xa, 0xfd, 0x61, 0x59, 0xdd, 0xd1, 0x1d, 0xe0, 0x77, 0xa, 0xbd, 0xb7, 0x39, 0xb4}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf3, 0xe, 0xc3, 0x37, 0x56, 0x79, 0x7a, 0xd2, 0x50, 0xf8, 0x43, 0xbd, 0x89, 0x1c, 0xea, 0xf5, 0x20, 0xaf, 0x98, 0xab, 0x7f, 0xb6, 0xbc, 0x90, 0x75, 0x94, 0x37, 0x46, 0xaf, 0xd7, 0xa9, 0xb0}} return a, nil } @@ -5262,7 +5262,7 @@ func stakingcollectionCreate_machine_accountCdc() (*asset, error) { return a, nil } -var _stakingcollectionCreate_new_tokenholder_acctCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x56\x49\x6f\xe3\x36\x14\xbe\xfb\x57\xbc\xc9\x21\x90\x00\x8f\x0c\xf4\x68\x24\x01\x52\xa3\x1b\x32\x45\x03\x24\x33\x3d\x0c\x72\x60\xc4\x67\x8b\x35\x4d\x0a\x24\x65\x57\x28\xf2\xdf\x0b\x2e\x92\x48\x49\x46\xdc\x05\x05\xea\x8b\x45\xf2\x2d\xdf\xfb\xde\x42\xb2\x43\x2d\x95\x81\x8d\x6a\x6b\x23\x17\x61\xf5\x3d\x97\xa7\x67\xb9\x47\x01\x5b\x25\x0f\x70\xd5\xaf\xaf\x7a\x89\x46\xec\xd8\x2b\xc7\x44\x2a\xde\xeb\x25\x3f\xc9\x72\x8f\xd4\xed\xe9\x20\x18\x6f\x5d\xc5\x3e\x9f\x0c\xd9\x33\xb1\xdb\x48\xce\xb1\x34\x4c\xc6\xfe\x27\x67\x57\x8b\xc5\x6a\x05\xcf\x15\xd3\x60\x14\x11\x9a\x78\x0d\xc2\xb9\x3c\x69\x30\x15\x42\x29\x85\x51\x56\x5e\x81\xdc\xba\x1d\xee\x3c\x03\x29\x4b\xd9\x08\x63\xf5\x8d\x84\x52\x21\x31\x08\x04\x04\x9e\x12\xb8\x85\xfb\xfb\x51\x72\x6a\x2d\xbc\xfe\x86\xa5\x01\x22\x28\x68\x23\x15\x02\x33\xc0\x44\xd0\x8a\x0c\x12\xae\x25\x10\x4a\x99\xd8\x01\x01\xed\x51\x43\x39\x84\x14\x0c\x19\xe9\x10\xc5\xda\x56\xfd\x01\xb1\xb6\x76\x0f\x4c\x50\x30\x15\x31\x60\x6c\x84\x54\xa2\x06\x21\xad\xcb\x23\xe1\x8c\x5a\xc0\x56\x1d\x7f\x67\xda\x58\x07\x31\xd4\x08\xcd\xb3\x4c\x35\x88\xe9\x4e\x97\xd0\xca\x06\x04\x22\xb5\x50\x90\x99\x0a\x15\x50\xe4\x18\x2c\xc7\x06\x15\x6a\xd9\xa8\x12\xad\x45\x69\x97\x47\xb9\x47\xcb\x34\xec\xb1\x0d\x59\x8d\x6d\x2f\x16\x51\x46\xb2\xba\x79\xe5\xac\x7c\xc0\x56\xaf\xe1\xab\x2f\xb4\xe2\x01\xdb\x4f\x4c\x9b\xef\x84\x51\xed\x4b\x0e\x7f\x2c\x00\x00\x6a\x85\x35\x51\x98\x69\xb6\x13\xa8\xd6\x40\x1a\x53\x65\xdf\x4a\xa5\xe4\xe9\x0b\xe1\x0d\x2e\xe1\xc9\x48\x45\x76\xb8\x84\x0d\xa9\xc9\x2b\xe3\xcc\x30\xd4\x39\x5c\xdf\x7b\xbf\xd6\x90\xb3\x64\x7f\xab\x15\x6c\x7c\x66\x47\x3c\xbb\x1c\x12\x4a\xc1\x03\x73\x31\x14\xbd\x1a\x47\x63\x85\x83\x45\xb8\x85\xf0\x95\xd5\xa4\xb5\xa0\x3c\xb8\xbc\x97\xdf\x4a\x65\x2d\xd8\x9c\x0d\x81\x86\x80\xba\xdf\x60\xaf\x70\xce\x08\xa5\x03\x2b\x6b\xab\x5e\xf4\xcb\x25\x54\x44\x57\xf7\x7c\x27\x15\x33\xd5\xc1\x9f\x26\x5b\x4b\x38\x21\xdb\x55\xc6\x1f\xf9\xef\x01\xcf\x5b\xc2\xc0\x0f\x68\x86\x6c\xfe\x4c\x04\xd9\xa1\x1a\xc8\x6b\xbb\xd4\x8d\x3b\x23\xa5\xc3\x44\xca\x83\xee\x66\xe8\xae\xdb\xc0\x4a\x51\x46\x69\x29\xb4\x4f\x56\xb1\x43\x33\xc8\xea\x6c\x2b\xd5\x23\x31\xd5\x3a\x6d\xb5\x68\x11\x3c\x85\x5c\x5b\xd9\xfc\xeb\x37\x2f\x1f\x2e\x80\x04\xb7\xef\x62\x1d\x20\xb6\x40\xf4\x87\x88\x8b\x1b\x57\x6e\xc9\x10\x2b\x7e\x65\xa6\xa2\x8a\x9c\x96\x29\xd8\xcf\xda\x9f\xeb\xf1\xbe\xb0\x34\xfa\x45\x0e\xd7\xef\x04\x78\x97\x64\xea\xb3\xf6\x85\x7a\x08\x49\x8a\x70\x8e\x67\x54\xd4\x9a\x33\x89\x0a\x3d\x7b\xf3\x31\xc5\xe6\x2d\x44\xaa\x59\x52\xa2\x3e\xff\xf7\x94\x2a\xd4\xba\xab\x72\x5b\xa8\x76\xbd\x4c\x44\x63\x8a\xd7\x67\x08\xef\x15\xf2\x24\xc8\x27\x72\x3c\x3f\x5d\x66\x46\xa2\x6b\xd5\x3e\xf6\xd0\xaf\x03\x33\x43\xf4\x51\x87\x75\x65\xa7\xc9\x11\xd3\x18\x6f\x3e\x46\x04\x8d\x63\x5a\x9f\x1d\xfd\x51\x21\xce\x85\x35\x22\x7e\x43\x6a\xb8\x8d\xf1\xcc\xf5\x44\xe2\xbb\x60\x5a\x37\x78\x73\x7d\xce\xff\x5d\x76\x01\xb2\x7c\x8e\x8a\xc4\xb5\x63\x4f\x57\xd9\x34\x97\x3d\xf0\x94\x13\x62\x66\x7b\x34\x18\xff\x49\x6c\xe5\xa3\x4b\xc8\x98\x98\x99\x09\x1c\x03\x71\x13\xd3\xe6\xd9\xf9\x86\x2a\xdc\x59\x82\x42\x23\xc2\x14\x3a\x92\x86\x8f\x66\x90\x3f\x09\x15\xf3\x2e\xbf\x81\xd2\xcb\x3b\xda\xfd\xfd\x52\xa3\x22\xf6\xca\x9a\x34\xef\xdf\xcf\x86\xc5\xbe\xed\x9f\x53\xff\x02\xf0\x1c\xae\xfb\xe7\x58\xf1\xc5\x12\x75\x97\xad\x82\xf6\xaa\xf7\xe4\x0e\x06\x14\x33\x29\xf1\xa3\x24\xbc\xaa\x20\x7a\x72\xd9\x4c\xd4\x8d\x09\xef\x9b\x0e\x57\x6f\x81\x6d\x93\x5c\x14\x65\x85\xe5\x3e\xcb\xcf\xdf\x78\xe7\xfb\xd1\xf7\xe4\xfc\xcb\x2f\xcc\xab\xc9\xfe\xd4\x82\xfd\x75\x95\xe3\xc2\x5e\x0f\x84\x2f\x67\xa5\xa3\xa2\x5f\x27\xc1\x4c\xa4\xf3\xa9\x01\x3b\x29\xe6\x11\x4f\x76\xe6\x06\x87\xef\x91\xee\xeb\x0d\x90\x6b\xfc\xdf\x72\x27\x18\xff\xef\x29\x4b\xe6\xcb\xa3\x1f\x6a\x40\x46\xf7\xa5\x7b\xfe\x3b\x16\xe8\xcc\x1b\x3c\x1d\x2d\x7a\x0c\xe2\xa2\x11\xde\x4d\xed\x0b\x03\xbb\x4b\xc9\xff\x07\x74\x44\x57\xcf\x5f\x1a\xf5\x73\x61\x4e\x07\xfe\x85\xc0\x66\x27\xbf\x4f\xcf\xdb\x9f\x01\x00\x00\xff\xff\x07\xc4\x1a\x2a\x53\x0e\x00\x00" +var _stakingcollectionCreate_new_tokenholder_acctCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x56\x4b\x6f\xe3\x36\x10\xbe\xfb\x57\xcc\xe6\x10\x48\x80\x57\x06\x7a\x34\x92\x00\xa9\xd1\x17\xb2\x45\x03\x24\xbb\x3d\x2c\x72\x98\x88\x63\x8b\x35\x4d\x0a\x24\x65\xd7\x28\xf2\xdf\x0b\x3e\x2c\x91\xb6\x8c\xb8\x0f\x14\xa8\x2f\x16\xc9\x79\x7c\xf3\xcd\x83\xe4\x9b\x56\x69\x0b\x0b\xbd\x6f\xad\x9a\xc4\xd5\xf7\x42\xed\x9e\xd5\x9a\x24\x2c\xb5\xda\xc0\x55\xbf\xbe\xea\x25\x3a\xb9\xe2\xaf\x82\x32\xa9\x74\xaf\x97\xfc\xa4\xea\x35\x31\xbf\x67\xa2\x60\xba\x75\x95\xfa\x7c\xb2\xb8\xe6\x72\xb5\x50\x42\x50\x6d\xb9\x4a\xfd\x9f\x9c\x5d\x4d\x26\xb3\x19\x3c\x37\xdc\x80\xd5\x28\x0d\x06\x0d\x14\x42\xed\x0c\xd8\x86\xa0\x56\xd2\x6a\x27\xaf\x41\x2d\xfd\x8e\xf0\x9e\x01\xeb\x5a\x75\xd2\x3a\x7d\xab\xa0\xd6\x84\x96\x00\x41\xd2\x2e\x83\x5b\xf9\xbf\x1f\x95\x60\xce\xc2\xeb\x6f\x54\x5b\x40\xc9\xc0\x58\xa5\x09\xb8\x05\x2e\xa3\x56\x62\x10\x85\x51\x80\x8c\x71\xb9\x02\x04\x13\x50\x43\x3d\x84\x14\x0d\x59\xe5\x11\xa5\xda\x4e\xfd\x81\xa8\x75\x76\x37\x5c\x32\xb0\x0d\x5a\xb0\x2e\x42\xa6\xc8\x80\x54\xce\xe5\x16\x05\x67\x0e\xb0\x53\xa7\xdf\xb9\xb1\xce\x41\x0a\x35\x41\xf3\xac\x72\x0d\xb4\x87\xd3\x29\xec\x55\x07\x92\x88\x39\x28\xc4\x6d\x43\x1a\x18\x09\x8a\x96\x53\x83\x9a\x8c\xea\x74\x4d\xce\xa2\x72\xcb\xad\x5a\x93\x63\x1a\xd6\xb4\x8f\x59\x4d\x6d\x4f\x26\x49\x46\x8a\xb6\x7b\x15\xbc\x7e\xa0\xbd\x99\xc3\xd7\x50\x68\xd5\x03\xed\x3f\x71\x63\xbf\x93\x56\xef\x5f\x4a\xf8\x63\x02\x00\xd0\x6a\x6a\x51\x53\x61\xf8\x4a\x92\x9e\x03\x76\xb6\x29\xbe\x55\x5a\xab\xdd\x17\x14\x1d\x4d\xe1\xc9\x2a\x8d\x2b\x9a\xc2\x02\x5b\x7c\xe5\x82\x5b\x4e\xa6\x84\xeb\xfb\xe0\xd7\x19\xf2\x96\xdc\x6f\x36\x83\x45\xc8\xec\x11\xcf\x3e\x87\xc8\x18\x04\x60\x3e\x86\xaa\x57\x13\x64\x9d\x70\xb4\x08\xb7\x10\xbf\x8a\x16\xf7\x0e\x54\x00\x57\xf6\xf2\x4b\xa5\x9d\x05\x97\xb3\x21\xd0\x18\xd0\xe1\x37\xd8\xab\xbc\x33\x64\x6c\x60\x65\xee\xd4\xab\x7e\x39\x85\x06\x4d\x73\x2f\x56\x4a\x73\xdb\x6c\xc2\x69\xb6\x35\x85\x1d\xf1\x55\x63\xc3\x51\xf8\x1e\xf0\xbc\x65\x0c\xfc\x40\x76\xc8\xe6\xcf\x28\x71\x45\x7a\x20\x6f\x7f\x48\xdd\x71\x67\xe4\x74\xd8\x44\x79\xd0\x5d\x0c\xdd\x75\x1b\x59\xa9\xea\x24\x2d\x95\x09\xc9\xaa\x56\x64\x07\x59\x53\x2c\x95\x7e\x44\xdb\xcc\xf3\x56\x4b\x16\xd1\x53\xcc\xb5\x93\x2d\xbf\x7e\xf3\xf2\xe1\x02\x48\x70\xfb\x2e\xd6\x01\xe2\x1e\xd0\x7c\x48\xb8\xb8\xf1\xe5\x96\x0d\xb1\xea\x57\x6e\x1b\xa6\x71\x37\xcd\xc1\x7e\x96\x8e\xae\xb0\x28\xe1\xfa\x9d\x40\xee\xb2\x8c\x7c\x36\xa1\x20\x37\x31\x19\x09\x9e\xe3\x59\x94\xb4\xe0\x48\x42\x62\x6f\xde\x7c\xcc\xb1\x05\x0b\x89\x6a\x91\x95\x62\xc8\xf3\x3d\x63\x9a\x8c\x39\x54\xb3\x2b\x48\xb7\x9e\x66\xa2\x29\x95\xf3\x33\xc4\xf6\x0a\x65\x16\xe4\x13\x6e\xcf\x4f\x91\x91\xd1\xe7\x5b\xb2\x8f\x3d\xf6\xe5\xc0\xcc\x10\x7d\xd2\x49\x87\xf2\x32\xb8\xa5\x3c\xc6\x9b\x8f\x09\x41\xc7\x31\xcd\xcf\x8e\xf8\xa4\xe0\xc6\xc2\x3a\x22\x7e\x81\x2d\xdc\xa6\x78\xc6\x6a\x3f\xf3\x5d\x71\x63\x3a\xba\xb9\x3e\xe7\xff\xae\xb8\x00\x59\x39\x46\x45\xe6\xda\xb3\x67\x9a\xe2\x34\x97\x3d\xf0\x9c\x13\xb4\xa3\xbd\x18\x8d\xff\x24\x97\xea\xd1\x27\xe4\x98\x98\x91\x49\x9b\x02\xf1\x93\xd1\xe5\xd9\xfb\x86\x26\xde\x4d\x92\x41\x27\xe3\xb4\xd9\x62\x27\x8e\x66\x4d\x38\x89\x15\xf3\x2e\xbf\x91\xd2\xcb\x3b\xd7\xff\xfd\xd2\x92\x46\x77\x35\x9d\x34\xef\xdf\xcf\x86\xc3\xbe\xec\x9f\x4d\xff\x02\xf0\x12\xae\xfb\x67\x57\xf5\xc5\x11\x75\x57\xcc\xa2\xf6\xac\xf7\xe4\x0f\x06\x14\x23\x29\x09\xa3\x24\xbe\x9e\x20\x79\x5a\xb9\x4c\xb4\x9d\x8d\xef\x98\x03\xae\xde\x02\x5f\x66\xb9\xa8\xea\x86\xea\x75\x51\x9e\xbf\xd9\xce\xf7\x63\xe8\xc9\xf1\x17\x5e\x9c\x57\x27\xfb\xa7\x16\xdc\xef\x50\x39\x3e\xec\xf9\x40\xf8\x74\x54\x3a\x29\xfa\x79\x16\xcc\x89\x74\x79\x6a\xc0\x4d\x8a\x71\xc4\x27\x3b\x63\x83\x23\xf4\xc8\xe1\xeb\x0d\x48\x18\xfa\xdf\x72\x27\xb9\xf8\xef\x29\xcb\xe6\xcb\x63\x18\x6a\x80\x47\xf7\xa5\x7f\xe6\x7b\x16\xd8\xc8\x5b\x3b\x1f\x2d\xe6\x18\xc4\x45\x23\xfc\x30\xb5\x2f\x0c\xec\x2e\x27\xff\x1f\xd0\x91\x5c\x3d\x7f\x69\xd4\x8f\x85\x79\x3a\xf0\x2f\x04\x36\x3a\xf9\x43\x7a\xde\xfe\x0c\x00\x00\xff\xff\x03\x0e\x99\xe3\x3b\x0e\x00\x00" func stakingcollectionCreate_new_tokenholder_acctCdcBytes() ([]byte, error) { return bindataRead( @@ -5278,7 +5278,7 @@ func stakingcollectionCreate_new_tokenholder_acctCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/create_new_tokenholder_acct.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0xfc, 0xcb, 0x26, 0x2a, 0x37, 0x73, 0x88, 0xf, 0x8a, 0x6e, 0x4, 0xf8, 0x93, 0x55, 0xc4, 0xb6, 0x9a, 0x70, 0x9a, 0x41, 0x35, 0xaa, 0x67, 0xde, 0xa5, 0xf5, 0x21, 0xd2, 0x82, 0x4f, 0x42}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc7, 0xa3, 0xad, 0x9c, 0x1e, 0x2a, 0xd9, 0x8e, 0xe8, 0xd, 0x60, 0x33, 0xb5, 0x78, 0x8b, 0xb0, 0x85, 0x54, 0x2, 0x2c, 0xdc, 0xc4, 0xa8, 0xe4, 0xcd, 0x63, 0xe9, 0xaf, 0x85, 0x63, 0x2c, 0xa7}} return a, nil } diff --git a/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc b/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc index d05853ebc..e283dc75c 100644 --- a/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc +++ b/transactions/lockedTokens/admin/admin_create_shared_accounts.cdc @@ -33,13 +33,13 @@ transaction( let lockedTokenManager <- LockedTokens.createLockedTokenManager(vault: vaultCapability) sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) - let tokenManagerUseCapability = sharedAccount - .capabilities.storage.issue( + let tokenManagerCapability = sharedAccount + .capabilities.storage.issue( LockedTokens.LockedTokenManagerStoragePath) let tokenHolder <- LockedTokens.createTokenHolder( lockedAddress: sharedAccount.address, - tokenManager: tokenManagerUseCapability + tokenManager: tokenManagerCapability ) userAccount.storage.save( diff --git a/transactions/lockedTokens/admin/admin_remove_delegator.cdc b/transactions/lockedTokens/admin/admin_remove_delegator.cdc index f168abbbb..038062b7d 100644 --- a/transactions/lockedTokens/admin/admin_remove_delegator.cdc +++ b/transactions/lockedTokens/admin/admin_remove_delegator.cdc @@ -5,7 +5,7 @@ transaction { prepare(signer: auth(BorrowValue) &Account) { - let managerRef = signer.storage.borrow(from: LockedTokens.LockedTokenManagerStoragePath) + let managerRef = signer.storage.borrow(from: LockedTokens.LockedTokenManagerStoragePath) ?? panic("Could not borrow a reference to the locked token manager") let delegator <- managerRef.removeDelegator()! diff --git a/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc b/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc index ac4b0972c..e7b409920 100644 --- a/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_account_with_lease_account.cdc @@ -28,12 +28,12 @@ transaction( sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) - let tokenManagerUseCapability = sharedAccount.capabilities.storage - .issue( + let tokenManagerCapability = sharedAccount.capabilities.storage + .issue( LockedTokens.LockedTokenManagerStoragePath ) - let tokenHolder <- LockedTokens.createTokenHolder(lockedAddress: sharedAccount.address, tokenManager: tokenManagerUseCapability) + let tokenHolder <- LockedTokens.createTokenHolder(lockedAddress: sharedAccount.address, tokenManager: tokenManagerCapability) userAccount.storage.save( <-tokenHolder, diff --git a/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc b/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc index 1f22bfefb..b2cac52cf 100644 --- a/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_only_lease_account.cdc @@ -26,14 +26,14 @@ transaction( sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) - let tokenManagerUseCapability = sharedAccount.capabilities.storage - .issue( + let tokenManagerCapability = sharedAccount.capabilities.storage + .issue( LockedTokens.LockedTokenManagerStoragePath ) let tokenHolder <- LockedTokens.createTokenHolder( lockedAddress: sharedAccount.address, - tokenManager: tokenManagerUseCapability + tokenManager: tokenManagerCapability ) userAccount.storage.save( diff --git a/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc b/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc index 2156e6e43..5d9a69f31 100644 --- a/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc +++ b/transactions/lockedTokens/admin/custody_create_only_shared_account.cdc @@ -28,14 +28,14 @@ transaction( sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) - let tokenManagerUseCapability = sharedAccount.capabilities.storage - .issue( + let tokenManagerCapability = sharedAccount.capabilities.storage + .issue( LockedTokens.LockedTokenManagerStoragePath ) let tokenHolder <- LockedTokens.createTokenHolder( lockedAddress: sharedAccount.address, - tokenManager: tokenManagerUseCapability + tokenManager: tokenManagerCapability ) userAccount.storage.save( diff --git a/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc b/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc index 8b7bac73f..f82975231 100644 --- a/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc +++ b/transactions/lockedTokens/admin/custody_create_shared_accounts.cdc @@ -30,14 +30,14 @@ transaction( sharedAccount.storage.save(<-lockedTokenManager, to: LockedTokens.LockedTokenManagerStoragePath) - let tokenManagerUseCapability = sharedAccount.capabilities.storage - .issue( + let tokenManagerCapability = sharedAccount.capabilities.storage + .issue( LockedTokens.LockedTokenManagerStoragePath ) let tokenHolder <- LockedTokens.createTokenHolder( lockedAddress: sharedAccount.address, - tokenManager: tokenManagerUseCapability + tokenManager: tokenManagerCapability ) userAccount.storage.save( diff --git a/transactions/stakingCollection/create_new_tokenholder_acct.cdc b/transactions/stakingCollection/create_new_tokenholder_acct.cdc index e31d81b57..3f04d196a 100644 --- a/transactions/stakingCollection/create_new_tokenholder_acct.cdc +++ b/transactions/stakingCollection/create_new_tokenholder_acct.cdc @@ -23,7 +23,7 @@ transaction(publicKeys: [Crypto.KeyListEntry]) { // Get the TokenManager Capability from the locked account. let tokenManagerCapabilityController = signer.capabilities.storage.getControllers(forPath: LockedTokens.LockedTokenManagerStoragePath)[2]! - let tokenManagerCapability = tokenManagerCapabilityController.capability as! Capability + let tokenManagerCapability = tokenManagerCapabilityController.capability as! Capability // Use the manager capability to create a new TokenHolder. let tokenHolder <- LockedTokens.createTokenHolder( From 0f711eab8e739ece64b197bc3ddf25327c98f9e9 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Fri, 17 May 2024 12:41:16 -0500 Subject: [PATCH 131/160] use view more and update nft deps --- contracts/FlowFees.cdc | 4 ++-- lib/go/contracts/go.mod | 2 +- lib/go/contracts/go.sum | 2 ++ 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/contracts/FlowFees.cdc b/contracts/FlowFees.cdc index 0b4060f9e..31c03c514 100644 --- a/contracts/FlowFees.cdc +++ b/contracts/FlowFees.cdc @@ -162,7 +162,7 @@ access(all) contract FlowFees { emit FeesDeducted(amount: feeAmount, inclusionEffort: inclusionEffort, executionEffort: executionEffort) } - access(all) fun getFeeParameters(): FeeParameters { + access(all) view fun getFeeParameters(): FeeParameters { return self.account.storage.copy(from: /storage/FlowTxFeeParameters) ?? panic("Error getting tx fee parameters. They need to be initialized first!") } @@ -175,7 +175,7 @@ access(all) contract FlowFees { // compute the transaction fees with the current fee parameters and the given inclusionEffort and executionEffort - access(all) fun computeFees(inclusionEffort: UFix64, executionEffort: UFix64): UFix64 { + access(all) view fun computeFees(inclusionEffort: UFix64, executionEffort: UFix64): UFix64 { let params = self.getFeeParameters() let totalFees = params.surgeFactor * ( inclusionEffort * params.inclusionEffortCost + executionEffort * params.executionEffortCost ) diff --git a/lib/go/contracts/go.mod b/lib/go/contracts/go.mod index ee7e49010..8e83a6de7 100644 --- a/lib/go/contracts/go.mod +++ b/lib/go/contracts/go.mod @@ -6,7 +6,7 @@ require ( github.com/kevinburke/go-bindata v3.24.0+incompatible github.com/onflow/flow-core-contracts/lib/go/templates v0.15.2-0.20240215153337-0be5cb4b4bc9 github.com/onflow/flow-ft/lib/go/contracts v1.0.0 - github.com/onflow/flow-nft/lib/go/contracts v1.2.0 + github.com/onflow/flow-nft/lib/go/contracts v1.2.1 github.com/stretchr/testify v1.8.4 ) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 44492fede..2f6a9af9a 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1625,6 +1625,8 @@ github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSE github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= github.com/onflow/flow-nft/lib/go/contracts v1.2.0 h1:TFH7GCJKcGi0+x14SCvF7Gbnxp68gJOGNV8PSIAM2J0= github.com/onflow/flow-nft/lib/go/contracts v1.2.0/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= +github.com/onflow/flow-nft/lib/go/contracts v1.2.1 h1:woAAS5z651sDpi7ihAHll8NvRS9uFXIXkL6xR+bKFZY= +github.com/onflow/flow-nft/lib/go/contracts v1.2.1/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8 h1:BqgQgXktxVFv8erjCaSHpL0CP+pa5M8g655GyF/t4JM= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8/go.mod h1:p+2hRvtjLUR3MW1NsoJe5Gqgr2eeH49QB6+s6ze00w0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20231121210617-52ee94b830c2 h1:qZjl4wSTG/E9znEjkHF0nNaEdlBLJoOEAtr7xUsTNqc= From 99b721fe827c319a286714b13d861f25b9ca88d9 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Fri, 17 May 2024 12:43:06 -0500 Subject: [PATCH 132/160] make ci --- lib/go/contracts/go.sum | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/go/contracts/go.sum b/lib/go/contracts/go.sum index 2f6a9af9a..22231dafb 100644 --- a/lib/go/contracts/go.sum +++ b/lib/go/contracts/go.sum @@ -1623,8 +1623,6 @@ github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876 github.com/onflow/flow-ft/lib/go/templates v0.7.1-0.20240213220156-959b70719876/go.mod h1:uQ8XFqmMK2jxyBSVrmyuwdWjTEb+6zGjRYotfDJ5pAE= github.com/onflow/flow-go-sdk v1.0.0-M1 h1:mke/ebYwNRRWPZqcwCV56Alx0A8psew43ZbSEUQ4TL8= github.com/onflow/flow-go-sdk v1.0.0-M1/go.mod h1:TDW0MNuCs4SvqYRUzkbRnRmHQL1h4X8wURsCw9P9beo= -github.com/onflow/flow-nft/lib/go/contracts v1.2.0 h1:TFH7GCJKcGi0+x14SCvF7Gbnxp68gJOGNV8PSIAM2J0= -github.com/onflow/flow-nft/lib/go/contracts v1.2.0/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow-nft/lib/go/contracts v1.2.1 h1:woAAS5z651sDpi7ihAHll8NvRS9uFXIXkL6xR+bKFZY= github.com/onflow/flow-nft/lib/go/contracts v1.2.1/go.mod h1:2gpbza+uzs1k7x31hkpBPlggIRkI53Suo0n2AyA2HcE= github.com/onflow/flow-nft/lib/go/templates v0.0.0-20240213205729-48f42d9896f8 h1:BqgQgXktxVFv8erjCaSHpL0CP+pa5M8g655GyF/t4JM= From 63df092f4151140cfdceb723f5eef6e3837ef1cd Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Thu, 20 Jun 2024 16:01:19 -0400 Subject: [PATCH 133/160] merge master --- contracts/epochs/FlowEpoch.cdc | 13 +++++----- lib/go/templates/internal/assets/assets.go | 29 +++------------------- 2 files changed, 10 insertions(+), 32 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 10531db3c..433281e0a 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -170,14 +170,14 @@ access(all) contract FlowEpoch { /// represents one cluster and contains all the node IDs assigned to that cluster. clusterAssignments: [[String]], - /// The source of randomness to seed the leader selection algorithm with + /// The source of randomness to seed the leader selection algorithm with /// for the upcoming epoch. randomSource: String, /// The deadlines of each phase in the DKG protocol to be completed in the upcoming - /// EpochSetup phase. Deadlines are specified in terms of a consensus view number. - /// When a DKG participant observes a finalized and sealed block with view greater - /// than the given deadline, it can safely transition to the next phase. + /// EpochSetup phase. Deadlines are specified in terms of a consensus view number. + /// When a DKG participant observes a finalized and sealed block with view greater + /// than the given deadline, it can safely transition to the next phase. DKGPhase1FinalView: UInt64, DKGPhase2FinalView: UInt64, DKGPhase3FinalView: UInt64, @@ -287,6 +287,7 @@ access(all) contract FlowEpoch { self.dkgKeys = keys } } + /// Metadata that is managed and can be changed by the Admin/// access(all) struct Config { /// The number of views in an entire epoch @@ -1083,7 +1084,7 @@ access(all) contract FlowEpoch { /// Makes sure the set of phase lengths (in views) are valid. /// Sub-phases cannot be greater than the full epoch length. - access(all) view fun isValidPhaseConfiguration(auctionLen: UInt64, dkgPhaseLen: UInt64, epochLen: UInt64): Bool { + access(all) view fun isValidPhaseConfiguration(_ auctionLen: UInt64, _ dkgPhaseLen: UInt64, _ epochLen: UInt64): Bool { return (auctionLen + (3*dkgPhaseLen)) < epochLen } @@ -1196,7 +1197,7 @@ access(all) contract FlowEpoch { /// The proposed Epoch counter is always the current counter plus 1 access(all) view fun proposedEpochCounter(): UInt64 { - return self.currentEpochCounter + 1 + return self.currentEpochCounter + 1 as UInt64 } access(all) fun automaticRewardsEnabled(): Bool { diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 90fc5182d..7f817c0f4 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -47,8 +47,7 @@ // epoch/admin/deploy_epoch.cdc (1.192kB) // epoch/admin/deploy_qc_dkg.cdc (310B) // epoch/admin/pay_rewards.cdc (497B) -// epoch/admin/recover_epoch.cdc (2.137kB) -// epoch/admin/reset_epoch.cdc (1.668kB) +// epoch/admin/reset_epoch.cdc (1.666kB) // epoch/admin/set_automatic_rewards.cdc (376B) // epoch/admin/set_bonus_tokens.cdc (624B) // epoch/admin/update_clusters.cdc (358B) @@ -1302,27 +1301,7 @@ func epochAdminPay_rewardsCdc() (*asset, error) { return a, nil } -var _epochAdminRecover_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x54\x41\x4f\xe3\x3c\x10\xbd\xe7\x57\x8c\x7a\x40\xad\xf4\x11\x2e\x9f\xf6\x50\xed\x2e\x82\xb6\x48\x68\xb5\x2b\x10\x2c\x17\xc4\x61\xea\x4c\x1b\x0b\xc7\x8e\xc6\x13\x42\xb5\xe2\xbf\xaf\x1c\x87\x34\x81\xd0\x3d\xaf\xb4\x3d\x54\x9e\xf1\x7b\xcf\xcf\xf6\x73\x74\x51\x3a\x16\xb8\x30\xae\x5e\x95\x4e\xe5\xb0\x61\x57\xc0\xa4\xab\x27\x49\x0f\x71\xb9\xbc\xc5\xb5\xa1\x1b\xc1\x47\x6d\xb7\x3d\xe8\x70\x62\xc0\x59\x98\xca\x0b\xf1\xf5\xa2\x07\xef\x7a\x93\x24\x39\x39\x81\xdb\x9c\x80\x49\xb9\x27\xe2\xe8\x41\x18\xad\x47\x25\xda\x59\x50\x4c\x28\xe4\x01\x6d\x06\x5e\x90\xc5\x03\x82\xa5\x1a\xa8\x81\x6a\x0b\x92\x53\xcf\xbf\x2f\x90\x05\x94\xb3\xc2\xa8\x24\xc8\x8b\x83\x3a\xd7\x2a\x87\x5a\x1b\x03\x1b\xc7\x8a\x1a\x8e\x25\xa9\x1d\x3f\x02\x3d\x6b\x81\xd5\xc5\xf7\xf4\xbd\x11\x4f\xfc\xa4\x15\x01\x3d\x91\x95\xc8\x5f\x13\x50\xa1\x45\x28\x83\x20\x1e\x6c\x95\xec\x14\x79\x4f\x19\xac\x77\x80\xc6\x84\x86\x38\xe5\x0c\x94\xc8\xa2\x95\x2e\xd1\x4a\xdc\x01\xa1\xca\xfb\xdd\xa8\x59\x95\x19\x4a\x63\x4a\xf3\x9e\x1c\xe4\xbd\x84\x89\x5a\x4b\xde\x5a\xae\x21\x3a\xcb\x50\x30\x8d\x87\xa7\xfd\xe0\xc0\x7c\xee\x2a\x93\x81\xb3\x66\x17\xcc\x56\xc1\x57\x27\xe0\x2a\x29\x2b\x01\xb7\x69\xaa\xb5\x73\xe2\x85\xb1\x84\x4a\xb4\xd1\xb2\x9b\x07\x45\x68\xaa\xf6\x7c\x69\x53\x1c\xb7\x47\x72\x2c\xcf\xc7\xc8\x5b\x9f\xf4\x56\x9b\x36\x57\x72\xa7\xa9\x9e\xc3\xcf\x4b\x2b\x9f\xfe\xff\x2f\x81\xde\xcf\xc7\x44\xac\x6c\xf6\x31\x86\x0e\x4d\x0a\xf2\x96\x64\x59\x31\x86\xe5\x0e\x61\x56\x36\xbb\xd5\x05\x8d\x43\x54\x4c\xdc\x99\xf7\x7a\x6b\x0b\xb2\xe2\xe7\x70\x7f\x7f\x23\xac\xed\xf6\xe1\x61\x14\x7b\xbd\xb8\x73\x42\x4b\x14\x9c\xc3\xfd\x20\xb5\xe9\xe2\x2d\xe2\x8d\x42\xf6\xb8\xbd\xaa\xd6\xdf\x68\x17\x56\x69\x17\x19\x22\xac\xcb\xe8\x72\xf9\xe1\xb4\xb6\x5a\x7e\x50\x4c\xf4\x1c\xce\x9d\x33\x33\xf8\x95\x34\x90\x92\xa9\x44\xa6\x69\xd8\x08\xf1\x1c\xb0\x92\x7c\x7a\xee\x98\x5d\x7d\x87\xa6\xa2\x19\x1c\x9d\x29\xe5\x2a\x2b\x81\xf2\x2a\x68\x48\xe2\x85\x9e\x65\x85\xb6\xf0\x05\x22\x3d\xf5\xe2\x18\xb7\x94\xae\x1b\x81\xcf\x47\xdd\x3b\x4a\x1b\xe0\xd7\x69\x78\xb4\xf3\xfd\xf3\x4a\x31\xb4\x6f\x22\xeb\x0a\x25\x9f\x0d\x7c\x9f\x9e\x42\x89\x56\xab\xe9\x64\xd1\x84\xd0\x3a\x81\x28\xdd\xc6\xa9\xa1\xc7\x2f\x41\xbb\x34\x94\x28\xf9\x64\x96\x74\x3a\x7a\x33\xd8\x7e\x6f\x13\x4d\x58\xba\x4d\xa4\x6d\x2c\x5f\x81\xfd\x28\x76\xc3\xe1\xb1\x7e\x94\xca\x61\x3d\xce\xe9\x52\x4a\x87\x50\x6f\xe3\x3a\xac\x0f\x71\xba\xf8\x0e\xca\x71\xc6\x58\x9a\xdf\xf7\x00\x0e\xb2\xfb\xf9\x7e\xd7\x1a\x67\xf6\x73\xbd\x1f\x8f\x63\xbb\x84\xb7\x83\x7d\x50\x5e\x80\x8c\xa7\x3f\xde\xeb\xa2\x62\x26\x2b\xff\xee\xf6\xaf\xba\xdb\x24\xfe\xbf\x24\xbf\x03\x00\x00\xff\xff\xcb\xe4\x26\x10\x59\x08\x00\x00" - -func epochAdminRecover_epochCdcBytes() ([]byte, error) { - return bindataRead( - _epochAdminRecover_epochCdc, - "epoch/admin/recover_epoch.cdc", - ) -} - -func epochAdminRecover_epochCdc() (*asset, error) { - bytes, err := epochAdminRecover_epochCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "epoch/admin/recover_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0x19, 0xa7, 0x7c, 0x7f, 0x6d, 0x3b, 0x55, 0x3b, 0xa6, 0x8a, 0x65, 0xc9, 0xef, 0x1a, 0xe7, 0x48, 0xe2, 0xec, 0x1, 0xcf, 0x41, 0xb2, 0x9f, 0x95, 0x8c, 0x5d, 0x37, 0x50, 0x5d, 0xcc, 0xc8}} - return a, nil -} - -var _epochAdminReset_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xcb\x6e\xdb\x30\x10\xbc\xeb\x2b\x16\x3e\xa4\x36\xe2\xc8\x08\x50\xf4\x60\xb4\x0d\x52\x27\x05\x82\x5e\x52\x38\xcd\xa5\xe8\x61\x2d\xad\x25\xc2\x12\x57\xe0\xae\xe2\x1a\x45\xfe\xbd\x20\xe9\x87\x54\xa8\x49\x7c\x32\xa9\x99\xe1\x70\x66\x69\xea\x86\x9d\xc2\xd7\x8a\xb7\xb7\x0d\x67\x25\xac\x1d\xd7\x30\x3a\xae\x47\x49\x07\x71\x77\xf3\x80\xab\x8a\x96\x8a\x1b\x63\x8b\x0e\xb4\xff\x61\x94\x24\xb3\x19\x3c\x94\x04\x8e\x84\x34\xea\xaa\x43\x2b\x98\xa9\x61\x0b\x64\x73\x01\x2d\x09\xb2\xd6\x39\xb2\x0a\x14\x20\xc6\x86\xcd\x93\x17\xa9\xd1\x29\x64\x6c\xd5\x61\xa6\x5e\x14\x6d\x0e\x2b\x2a\x8c\x15\x40\xb0\xb4\xdd\x33\xb7\x46\xcb\xc0\x2d\xcc\x13\x59\xcf\x58\x9b\xa2\x75\xe8\x4f\x4b\x83\x93\x13\x16\xab\x2d\xee\x04\x4a\x14\x2f\x18\x5c\x70\x6b\x95\xdc\xc1\x4d\x38\x7b\x11\xf7\xce\x2f\x23\xbd\xeb\x5e\xc8\xe6\xe4\xa0\x6e\x45\xa1\x71\xfc\x64\x72\x0a\x32\x5e\x6e\x40\x02\xc6\x2b\x5a\xb3\x8b\x98\x10\x08\x28\x6e\x48\xa0\xa9\x30\xa3\x09\xa0\xbf\x8a\xe0\x9a\x74\x07\x35\x65\x25\x5a\x23\x75\x9a\xcc\x66\x5e\xef\xa6\x75\x3e\x69\x4b\xba\x65\xb7\x01\x69\xd8\x6d\x64\x1a\xa4\x56\xcc\x2a\xea\xb0\x69\x28\xf7\x3e\x94\x33\xae\x40\x14\x95\xc0\x88\x0f\x33\x26\x14\xa3\x1c\x0f\x5e\x6e\x32\x3d\x84\xda\x69\xca\x08\xb4\x42\x39\x28\x83\x77\x53\x44\xe7\x31\xbc\x43\x54\x6f\xa8\x2a\x4c\xc7\x50\x1e\xca\x83\x6e\xe0\x1c\x2e\x27\x53\x10\x06\x2d\x51\xc1\xe8\x3b\xf1\x7a\x62\x44\xfd\x88\x84\x8a\x0f\x8d\xbd\x70\xf7\x34\xce\x9e\x91\x7e\x67\x25\xb7\x55\x0e\x6c\xab\x1d\xac\x28\xde\xef\x38\x34\xdc\x6a\xd3\x2a\xf0\xba\xaf\x0d\xad\x9a\xca\xe8\x6e\xee\x15\x21\xac\xf6\x29\x84\xb0\x2e\xf4\xf7\x05\xba\x42\x92\xa4\x73\xd0\xd0\xc5\xe6\xf0\xe3\xce\xea\x87\xf7\xd3\x04\x3a\x3f\x87\x36\xe7\x7a\xc9\xad\xcb\x68\x0e\x4b\xf5\x3d\xf7\x11\xa2\xe8\xf4\xd1\xd0\x76\x58\x40\xe2\x63\xbb\xb5\xf9\xff\x31\xd4\xff\x38\x81\x3f\x49\xf8\xde\x38\x6a\xd0\xd1\x58\x4c\x61\xbd\x41\x6c\xb5\x1c\x7f\x61\xe7\x78\xfb\x88\x55\x4b\x13\x38\xbb\xce\x42\xd7\x9e\x72\x50\xab\x68\xff\x52\xaf\xf3\xda\x58\xf8\x04\x91\x9e\x8a\xb2\xc3\x82\xd2\x55\x10\xf8\x78\x76\x9c\x8a\x34\x00\x3f\x8f\xfd\x28\xcc\x4f\xc3\x92\xa2\xdf\x5e\x46\xd6\x3d\x6a\x39\xe9\x99\xbe\xba\x82\x06\xad\xc9\xc6\xa3\x45\x28\xcd\xb2\x42\x94\x3e\xbc\xe0\x70\x7c\x98\xaf\xfd\xd1\xd0\xa0\x96\xa3\x49\x72\xd4\x39\xd9\x4c\x4f\x93\x3d\x5c\xce\xc0\x66\x3f\xc4\x7f\x7f\xfd\xe6\xba\xab\x97\x79\xdd\x42\x8f\x7f\x5f\xa7\xf4\x4a\xee\xaf\x5f\x21\x1f\xdb\xa7\x37\xc1\x33\xae\x2a\xca\x94\xdd\xa2\x6a\x45\xc9\xc9\x1c\x7e\xfe\x7a\x8d\x13\xa1\xdf\x17\x6f\x01\xe7\x9b\xe2\xbe\x5d\x7d\xa3\x5d\x00\xc7\xd2\x9f\x93\xe7\xe4\x6f\x00\x00\x00\xff\xff\x31\xe8\x6d\xe4\x84\x06\x00\x00" +var _epochAdminReset_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x6f\xdb\x38\x10\xbd\xeb\x57\x0c\x7c\xc8\xda\x88\x23\x23\xc0\x62\x0f\xc6\xee\x06\x59\x27\x0b\x04\xbd\xa4\x70\x9a\x4b\xd1\xc3\x48\x1a\x4b\x84\x25\x8e\xc0\x19\xc5\x35\x8a\xfc\xf7\x82\xa4\x3f\xa4\x42\x4d\xe2\x93\x49\xbe\xf7\xf8\xf8\xde\xc8\x34\x2d\x3b\x85\xff\x6b\xde\xdd\xb7\x9c\x57\xb0\x71\xdc\xc0\xe4\xb4\x9e\x24\x3d\xc4\xc3\xdd\x13\x66\x35\xad\x15\xb7\xc6\x96\x3d\xe8\xf0\x60\x92\x24\x8b\x05\x3c\x55\x04\x8e\x84\x34\xea\xaa\x43\x2b\x98\xab\x61\x0b\x64\x0b\x01\xad\x08\xf2\xce\x39\xb2\x0a\x14\x20\xc6\x86\xcd\xb3\x17\x69\xd0\x29\xe4\x6c\xd5\x61\xae\x5e\x14\x6d\x01\x19\x95\xc6\x0a\x20\x58\xda\x1d\x98\x3b\xa3\x55\xe0\x96\xe6\x85\xac\x67\x6c\x4c\xd9\x39\xf4\xb7\xa5\xc1\xc9\x19\x8b\xf5\x0e\xf7\x02\x15\x8a\x17\x0c\x2e\xb8\xb3\x4a\xee\xe8\x26\xdc\xbd\x8a\x7b\x97\xd7\x91\xde\x77\x2f\x64\x0b\x72\xd0\x74\xa2\xd0\x3a\x7e\x31\x05\x05\x19\x2f\x37\x22\x01\xd3\x8c\x36\xec\x22\x26\x04\x02\x8a\x5b\x12\x68\x6b\xcc\x69\x06\xe8\x9f\x22\xb8\x21\xdd\x43\x43\x79\x85\xd6\x48\x93\x26\x8b\x85\xd7\xbb\xeb\x9c\x4f\xda\x92\xee\xd8\x6d\x41\x5a\x76\x5b\x99\x07\xa9\x8c\x59\x45\x1d\xb6\x2d\x15\xde\x87\x72\xce\x35\x88\xa2\x12\x18\xf1\x61\xc6\x84\x62\x94\xd3\xd1\xc7\xcd\xe6\xc7\x50\x7b\x4d\x19\x81\x4e\xa8\x00\x65\xf0\x6e\xca\xe8\x3c\x86\x77\x8c\xea\x03\x55\x85\xe9\x18\xcb\x43\x79\xd4\x0d\x5c\xc2\xf5\x6c\x0e\xc2\xa0\x15\x2a\x18\xfd\x43\xbc\x9e\x18\x51\x3f\x22\xa1\xe2\x63\x63\x6f\xbc\x3d\x8d\xb3\x67\x64\xd8\x59\xc5\x5d\x5d\x00\xdb\x7a\x0f\x19\xc5\xf7\x9d\x86\x86\x3b\x6d\x3b\x05\xde\x0c\xb5\xa1\x53\x53\x1b\xdd\x2f\xbd\x22\x84\xd5\x21\x85\x10\xd6\x95\x7e\xbf\x42\x57\x4a\x92\xf4\x2e\x1a\x7b\xd8\x12\xbe\x3c\x58\xfd\xeb\xcf\x79\x02\xbd\x9f\x43\x5b\x70\xb3\xe6\xce\xe5\xb4\x84\xb5\xfa\x9e\x87\x08\x51\x74\xfa\x6c\x68\x37\x2e\x20\xf1\x63\xbb\xb7\xc5\xef\x31\x34\x3c\x9c\xc1\x8f\x24\x9c\xb7\x8e\x5a\x74\x34\x15\x53\x5a\x6f\x10\x3b\xad\xa6\xff\xb1\x73\xbc\x7b\xc6\xba\xa3\x19\x5c\xdc\xe6\xa1\x6b\x4f\x39\xaa\xd5\x74\xf8\x52\x6f\x8b\xc6\x58\xf8\x07\x22\x3d\x15\x65\x87\x25\xa5\x59\x10\xf8\xfb\xe2\x34\x15\x69\x00\xfe\x3b\xf5\xa3\xb0\x3c\x0f\x4b\x8a\x7e\x7b\x1d\x59\x8f\xa8\xd5\x6c\x60\xfa\xe6\x06\x5a\xb4\x26\x9f\x4e\x56\xa1\x34\xcb\x0a\x51\x1a\x2a\x42\xa7\x19\xa1\xc6\xe9\x3a\x5c\x0c\x2d\x6a\x35\x99\x25\x27\x95\xb3\xc9\xf4\x3c\xd7\xe3\xd5\x8c\x6c\x0e\x23\xfc\xf5\x37\xec\xad\xbf\x7a\x9b\xd7\xaf\xf3\xf4\xf7\x7d\xca\xa0\xe2\xe1\xfa\x1d\xf2\xa9\x7b\xfa\x10\x3c\xe7\xba\xa6\x5c\xd9\xad\xea\x4e\x94\x9c\x2c\xe1\xeb\xb7\xf7\x38\x11\xfa\x79\xf5\x11\x70\xb1\x2d\x1f\xbb\xec\x13\xed\x03\x38\x56\xfe\x9a\xbc\x26\x3f\x03\x00\x00\xff\xff\x12\x4d\x3d\x2b\x82\x06\x00\x00" func epochAdminReset_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1338,7 +1317,7 @@ func epochAdminReset_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/reset_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x65, 0xaa, 0xbb, 0x55, 0xc5, 0x22, 0xcf, 0x8f, 0x94, 0x74, 0x88, 0xe8, 0xa0, 0x90, 0x53, 0x15, 0x36, 0x1b, 0xe, 0x32, 0xd3, 0xb2, 0xb8, 0xe3, 0x72, 0xdd, 0x95, 0x41, 0x21, 0xce, 0x47, 0xe2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe8, 0x2c, 0xf0, 0xa9, 0xd5, 0x3f, 0xb4, 0x42, 0x85, 0x42, 0x5a, 0xbb, 0xe2, 0x54, 0xb2, 0xdd, 0x90, 0x88, 0xc7, 0x55, 0xbe, 0x47, 0x6b, 0x78, 0xd0, 0xf3, 0x25, 0x54, 0xf6, 0xe9, 0x7a, 0x2b}} return a, nil } @@ -6380,7 +6359,6 @@ var _bindata = map[string]func() (*asset, error){ "epoch/admin/deploy_epoch.cdc": epochAdminDeploy_epochCdc, "epoch/admin/deploy_qc_dkg.cdc": epochAdminDeploy_qc_dkgCdc, "epoch/admin/pay_rewards.cdc": epochAdminPay_rewardsCdc, - "epoch/admin/recover_epoch.cdc": epochAdminRecover_epochCdc, "epoch/admin/reset_epoch.cdc": epochAdminReset_epochCdc, "epoch/admin/set_automatic_rewards.cdc": epochAdminSet_automatic_rewardsCdc, "epoch/admin/set_bonus_tokens.cdc": epochAdminSet_bonus_tokensCdc, @@ -6736,7 +6714,6 @@ var _bintree = &bintree{nil, map[string]*bintree{ "deploy_epoch.cdc": {epochAdminDeploy_epochCdc, map[string]*bintree{}}, "deploy_qc_dkg.cdc": {epochAdminDeploy_qc_dkgCdc, map[string]*bintree{}}, "pay_rewards.cdc": {epochAdminPay_rewardsCdc, map[string]*bintree{}}, - "recover_epoch.cdc": {epochAdminRecover_epochCdc, map[string]*bintree{}}, "reset_epoch.cdc": {epochAdminReset_epochCdc, map[string]*bintree{}}, "set_automatic_rewards.cdc": {epochAdminSet_automatic_rewardsCdc, map[string]*bintree{}}, "set_bonus_tokens.cdc": {epochAdminSet_bonus_tokensCdc, map[string]*bintree{}}, From b912daef2104791804fbbf70565654b82ebe5348 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Thu, 20 Jun 2024 16:03:56 -0400 Subject: [PATCH 134/160] update assets --- lib/go/contracts/internal/assets/assets.go | 12 ++++----- lib/go/templates/internal/assets/assets.go | 29 +++++++++++++++++++--- 2 files changed, 32 insertions(+), 9 deletions(-) diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 6f319ab2a..c4570d338 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -10,9 +10,9 @@ // NodeVersionBeacon.cdc (22.87kB) // RandomBeaconHistory.cdc (15.864kB) // StakingProxy.cdc (5.71kB) -// epochs/FlowClusterQC.cdc (18.379kB) +// epochs/FlowClusterQC.cdc (18.958kB) // epochs/FlowDKG.cdc (18.691kB) -// epochs/FlowEpoch.cdc (47.051kB) +// epochs/FlowEpoch.cdc (60.365kB) // testContracts/TestFlowIDTableStaking.cdc (9.241kB) package assets @@ -282,7 +282,7 @@ func stakingproxyCdc() (*asset, error) { return a, nil } -var _epochsFlowclusterqcCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x3c\x6b\x6f\x5b\x37\xb2\xdf\xfd\x2b\x26\x01\x2e\x22\x65\x15\x39\x69\x8b\x60\x61\xac\xb7\xd7\x95\xdb\xad\xd1\xe6\x69\x37\xfd\x10\x04\x31\x75\xce\x48\xe2\xe6\x1c\x52\x21\x79\xec\x68\x83\xfc\xf7\x8b\xe1\xeb\x90\xe7\x21\x2b\xb9\xbb\x6b\xa0\x85\x65\x91\x33\xc3\x79\xcf\x70\x98\xa3\xe3\x87\x70\xf4\xf0\xe8\x21\xc0\x33\x26\xd8\x1a\x35\x98\x0d\xc2\x56\xc9\x02\xb5\x06\xb9\x82\x42\x56\x15\x16\x86\x8b\x35\xdc\x48\x83\x1a\x56\x52\xd9\x35\x4a\x4a\x03\x1f\x1b\xa9\x9a\x1a\x0a\x54\x86\xaf\x78\xc1\x0c\xd2\x1e\xfa\xba\xd9\x16\xb2\xe6\x62\x4d\xa0\x71\x2b\x8b\x8d\xdd\xc8\xaa\x2a\x42\x94\x02\x84\x2c\x11\x8a\xaa\xd1\x06\x95\x06\xa6\x35\x5f\x0b\x2c\x23\x8a\x00\xc3\x01\x98\x3b\x3a\xff\xdc\xa0\x08\x30\xa4\xb2\x20\x34\x30\x85\xb0\xe2\x4a\x1b\x50\xb8\xe6\x04\x0e\xcb\x19\xc1\xd8\x41\xc1\x04\x28\xfc\xd8\xa0\x36\xc0\xe0\x8d\x34\xa8\x40\x2e\xff\x89\x85\x81\x95\x92\x35\x98\x0d\xd7\x50\x48\x61\x14\x2b\xcc\x9c\x30\x5c\x6d\x70\xf7\xa0\xaa\xa0\xd1\xe8\xbe\x0d\xcb\xa5\x02\xbc\x41\xb5\x03\xdd\x2c\x35\x81\x14\xc6\x9f\xed\x76\x83\x0a\x1d\x3e\x22\x85\x81\x36\xec\x03\x96\x1d\x3a\xfd\x09\xce\x8c\x3d\xdd\x12\xd7\x5c\x08\x3a\x9e\x5c\x01\xb2\x62\x03\x3f\x13\xac\x4b\x34\xcd\x16\xb6\x1b\xa6\xd1\x9e\x00\x58\x59\x73\x01\x5c\x70\xc3\x59\xc5\xff\x65\x45\x94\x90\x0c\xb7\xdc\x6c\x08\x2c\xad\x6d\xf1\x45\xae\x8e\x30\x13\x7e\x26\x8c\x39\x7d\xb0\x61\x9a\x68\xe7\x62\x5d\xa1\x15\xb7\x83\xcb\x0c\x70\x4d\xb2\x93\x24\xe1\x28\x9f\x1a\x98\x28\x5b\x26\x4b\x51\xd1\x2f\x55\x45\x7f\xe2\x0a\xae\x09\xc0\x35\xac\x1a\xe1\x84\x2d\x45\x81\x96\xbf\xf4\xdf\x0b\x51\x20\xf8\xb5\x2d\xad\x1b\x76\x83\xa0\xb0\x40\x7e\x83\x25\xa0\x90\xcd\x7a\x03\xbc\x44\x61\x78\xc1\x2a\xaf\x80\x46\x82\x6e\xd4\x96\x69\xed\x11\xdd\x22\x5f\x6f\x88\xa7\x0a\xf5\x46\x56\xe5\xcc\x0b\x11\x5e\x2d\x60\x8d\x02\x15\xb3\xf8\x2d\x4b\xe9\x20\x2b\x2e\xb8\xde\x60\x19\xc8\xf7\x1c\xbe\xe5\x55\x05\xe8\xff\x74\x23\x49\xe5\xe7\x5e\x5c\x4c\xec\x60\x2b\xb9\x30\x33\xfa\x55\x0a\xb4\x07\xfe\xd8\x90\x2e\xb4\xab\x81\x8b\x95\x54\xb5\xc3\x16\xd8\x1e\xcf\x46\xa0\x96\x3b\x68\x88\xbb\xf6\x9b\xeb\x35\x9a\x85\xff\xb6\x65\x13\xa1\x74\xf4\xa7\x32\x26\xf6\x43\x8d\xf5\x92\x94\x77\x45\x32\x42\xc5\xd1\x1a\xa8\x53\x40\x5d\x33\x65\xe2\x7a\x0d\xb7\x1b\x6e\xc5\x2b\x55\xc9\x05\x33\xde\xae\x09\x70\x62\xdb\x46\x31\xa1\x39\x61\x25\x9a\x96\x68\x6e\x11\x85\x03\xa8\x81\x0b\xf8\xa5\x92\xb7\xf3\xa3\x87\xc7\x47\x47\xbc\xde\x4a\x65\x60\xa1\x76\x5b\x23\x8f\x8e\x58\x41\x20\x26\xac\xaa\xa6\x2d\x8d\xb4\xda\x9f\xe7\xd5\x02\x3e\x1f\x1d\x01\x00\x1c\x1f\xc3\xe9\xbf\xf9\x27\xc0\x5d\xbc\x78\x7e\xf5\xfa\x6c\x71\x05\x6f\xce\x5e\x5f\x9c\xfd\xf4\xfb\xcf\x97\xff\x31\x8c\x1e\xf0\x31\x5c\x88\xd2\x7a\x39\x62\x30\x9a\x0d\x2a\xaf\x93\x64\xf4\x45\xa3\x14\x0a\x53\xed\x60\x89\xc4\x4f\x6f\x5b\x58\xce\xdb\xed\x2b\x58\xb1\x8a\x0c\x5b\x48\x67\x71\x72\x4b\xea\x29\x95\xd3\xbe\x25\x02\x5b\x56\xe8\x54\x7c\x59\x73\xe3\xc0\xdb\xfd\x29\xcf\x6f\x98\x02\x2e\x5e\x2a\xb9\x56\xa8\xf5\x09\xfc\x24\x65\xd5\x12\x79\xd5\x3a\x82\xbe\x93\x8d\x7a\xe9\xa8\x75\xd2\xce\x10\x14\x85\x6c\x84\x71\x48\xc2\xb6\x13\x78\xeb\x45\xfb\x6e\x88\x19\x9c\x54\xf2\xc6\xba\x56\x85\x5a\x36\xaa\xf0\xbe\xa4\x52\xc8\x4a\x62\x08\xf9\xec\x8a\xf1\x1a\x4b\x32\x02\xe6\x88\xba\x38\x8f\xb0\xbc\x2b\x46\x6f\xed\x66\x07\xc6\x72\x22\x68\x57\x5c\xf8\xdc\x6d\xf4\xbe\xc2\x48\x07\x36\xa2\x27\x27\x13\xd7\x92\xa1\x5a\x44\x96\xb9\xce\x9d\x23\x68\x56\x23\xe8\x2d\x16\x14\xb1\xe0\xe2\xdc\xba\x81\x37\x39\xf1\x21\x56\x19\x5e\xb7\xe0\xae\x05\xaf\xae\xa1\x46\x26\xb4\x73\x8a\xc6\x7a\x7d\xae\x49\x9a\xde\x05\x14\x6c\xcb\x96\xbc\xa2\x03\x04\x4e\xf7\x8e\x4a\x1a\x90\x82\x09\xb4\x0f\xec\xbd\x38\x9f\xc1\xb2\x31\xc0\x0d\xf1\x53\x3c\x30\x19\x2b\x23\x48\xa3\x1a\xec\x10\xd6\x87\x49\x02\xe9\x0a\x22\xd0\x37\xaa\x00\x16\xca\xc2\x6d\x38\x81\xcf\x97\x46\x71\xb1\x76\x0a\xf7\x65\xd8\x2c\x98\x09\x5a\x13\xc4\xcc\xad\x33\x19\x57\x3c\x82\xf0\x86\x55\x0d\x3a\x37\x17\x76\x73\x51\xe2\xa7\x94\xb0\xa0\x0b\x8e\x32\x02\xed\x75\x32\x21\xec\x8f\x0b\x61\x9e\x3c\xfd\xf2\xdf\x73\x3e\x8b\x17\xcf\x2f\xaf\xce\x9e\x5f\xfd\x17\x9c\xcf\x82\x09\x29\x6c\x20\xdc\x32\xb3\x71\xa6\xec\x42\x17\x69\x70\x6e\x7e\x7d\x9f\x51\xa1\x81\x33\x5a\x7d\x69\xa4\x62\x6b\x7c\xc9\xcc\xe6\x04\x92\x0f\x83\x3b\xac\x5d\x8c\xee\x88\xa4\xbd\xc6\xad\x42\x8d\xc2\x58\x01\x0e\xfb\x1e\x47\x2f\xac\xf9\x4d\x08\x32\x73\xe8\xe1\xd4\x46\x35\x85\x01\x2f\xd8\x10\x45\x52\xcf\x66\xd5\x22\x64\x99\x01\x34\xe5\x40\x5c\x64\x7f\x62\x4a\xb1\xdd\xdc\xc5\xd1\x46\xf0\x8f\x0d\x56\x3b\xef\x5d\x56\xdc\xf3\x27\xc0\x65\xe3\x34\xc6\x75\x5d\xce\x58\x3a\x82\xc2\xe5\x64\xfe\x69\x13\x12\x27\x20\x9b\xd8\x11\x1b\x2e\xce\x21\xa7\x70\x14\x32\xad\xf6\x20\x3a\x9a\xfd\xf4\x87\x2f\x7d\x86\x18\x69\x58\xe5\xfd\x9c\xcb\x84\x28\x43\xf0\xa9\x95\x4b\x8f\x0f\x44\x6c\x21\x39\xcc\x01\x5f\x8e\xee\x8d\x4b\xc0\xc8\xc6\x1d\x60\xef\x7c\x0f\x4d\x68\x33\x60\xbf\xe1\xce\xf9\x4e\xeb\x1e\x0f\x8b\x00\x29\x21\xad\xae\x5b\xf1\xcb\xc6\x00\xd5\x0f\xcc\x34\x8a\x32\x23\x05\x35\x6a\x6d\x4b\x9a\x4c\x0e\x36\x56\x6b\x23\x15\x96\x40\xfe\x3b\x57\x84\xb1\x93\xf8\x2c\xab\x3d\x8a\xd7\xdd\x28\x72\xaa\x4a\xbc\xbf\x73\xa1\x5b\x7b\xbf\x3e\x8b\xde\xb8\x4d\x85\xa9\x38\xd0\xe4\xd4\x89\x68\xab\xca\x5c\x43\xcd\xb6\xb3\x9c\x98\xb2\x0c\x29\x6e\x3c\x98\x35\x75\x7f\x30\x0b\x59\xb8\x65\xdc\xc0\x92\x15\x1f\x28\x20\x5a\x60\x16\x5f\xc5\xb5\x99\x67\x20\x2f\x56\x81\x48\x8a\x06\xb4\xc8\x95\x49\x94\xae\x47\x1c\xd7\x16\xc9\xb5\xc7\x72\x0d\x2b\x8e\x55\x19\x13\x14\x21\xc5\x23\x1b\x09\xc7\x01\x53\x9c\xfa\x26\xd8\x39\xdc\x6e\xc6\xe3\x73\x79\x2c\xad\x1a\x26\xa6\x41\x9f\xbb\x86\xa1\x58\xf1\x41\x3b\xd9\x39\xeb\x77\x2c\x21\xec\x1b\x79\x0b\x75\x63\xd3\xe3\x7a\xc9\xa9\xe0\xf4\x76\x13\x23\x24\x79\xb2\x18\xb0\x6c\x1d\x34\x46\x93\x83\x4d\x04\x3c\x73\x47\xba\x6a\x6d\x68\xaf\xf5\x52\x3d\x37\xc9\x7c\xc8\x6c\xbf\xe1\x4f\xe1\x73\xdc\x4c\x3f\x1a\xab\xd5\xdc\x39\xc3\xd3\x24\x56\x66\x5f\x27\x00\xe1\x34\x05\x7f\x94\xad\xa5\x83\x0c\xd8\x3e\x9c\xc2\xe3\x6c\x1d\x71\xc4\xb3\x8a\x8b\x14\xdc\xfc\x86\xc2\xb7\xee\x50\x48\x3f\x09\x58\x38\xcd\x3e\xfd\xc5\x83\xca\xb6\x7c\xe9\x9f\x61\x14\x42\x7f\x69\xae\x20\x70\x0a\x9f\x07\xe0\xed\x95\x58\xbe\xa7\xa3\x53\xaf\xd1\x34\x4a\xb8\x4a\x4a\x34\xa1\x16\x3b\xd8\xc3\xae\x1a\x01\x9a\xff\x0b\x27\xd3\x20\xf1\x0e\xbf\x94\x85\xef\xbf\x9b\x74\x05\x38\xaf\x50\xac\xcd\x66\x0a\x87\x90\x57\x73\xc1\xeb\xa6\x06\xdd\xd4\x44\xa3\x55\x7d\x2f\x39\x85\x1f\x1b\x4e\xce\x8f\x0b\x90\xaa\x44\x12\x7d\x5a\x78\x04\x26\x02\xcb\xa0\xdf\xb0\x8a\x97\x43\xfd\x1e\x67\x26\x54\xac\xba\xb3\xcf\x87\x6d\x85\xe3\xad\xe5\x00\x91\x72\x15\x2a\xf5\xc0\x8a\xa7\x3f\x74\x58\xc1\x57\x03\xc2\x3f\x85\xc7\x03\x1a\xe6\xb9\xf6\xb8\xa3\x47\xd9\x47\x0a\x6e\xab\x4a\x4a\xf5\x42\xe0\xd5\x86\xab\x12\x4e\xfb\xf0\x8f\x3d\x29\x93\xef\xa7\x94\xc7\x71\x61\x70\x8d\x0a\x4a\x7e\xc3\x35\x97\x62\x06\x5c\x14\x55\x43\xc2\xb6\xa0\xfa\x26\xa4\xac\xce\x79\x20\xdf\x4d\xe1\x61\x8e\xb3\x4f\x52\xc9\x6f\x5e\x63\xcd\xc8\x78\xd5\x10\x45\xff\xd3\x52\x74\xd4\x65\x4f\xb6\xf7\x6f\x11\xed\x93\xae\x9b\x70\x2c\x22\xc2\xe8\xff\x7f\x69\xd7\xe5\xfc\x02\xa4\xa2\x64\xff\xd6\x14\xe5\x3e\x6e\x7b\x89\xa8\x24\xc9\xda\xa3\xaa\xda\x30\xd3\xe8\x18\x05\xbd\x16\x3d\xd0\xf0\x6a\x11\x7a\x15\xdd\x48\x13\xeb\x2e\x96\xd8\xa1\x57\x6f\x52\xc7\x6e\xc7\x08\x3f\x15\x88\x65\xec\xbb\x64\x2a\x78\x3d\xeb\x26\x54\x62\x80\x90\xa4\x8d\xe4\xda\x32\x9a\x97\xa8\x6c\x83\xaf\xde\x56\xe8\x03\x8b\x0b\xe3\x68\x36\xb2\xf4\x4c\xd0\x79\x96\x10\x33\x01\x1f\xff\x5c\x2a\xa5\x28\x4a\x61\x30\xae\xee\x61\x5d\x6d\xe9\x1a\x57\xb2\x21\x2c\xd2\xed\xf0\xeb\x7d\x16\xe0\x8a\x53\xae\x3d\x62\x5f\x1c\xc2\x98\x19\x72\xbd\xf0\x94\x93\x0d\xba\x50\xf3\x63\x47\xfe\xab\x36\x87\x22\x67\x71\xb7\xf7\x9c\x7f\xc0\xdd\x50\x10\x08\xd6\xbc\x77\xf3\x5b\x8f\xea\xdd\x3d\xf8\xbb\xb7\x85\x8e\xaf\x18\x80\x9c\xa8\x9b\xdf\xde\x5b\xf2\x65\x4f\x80\xf1\x5b\x05\xaf\xc6\x34\xf5\x1f\xde\x1b\x3a\x5d\x7d\xe5\xdc\xdf\x62\x8f\xfb\x1b\xd0\xd5\xb6\xa2\xa5\x6c\xd7\x44\x9d\x99\xb9\x8d\x41\x53\xc6\x93\x1f\x12\x58\x70\xcb\x8e\x84\x84\x02\x92\x5f\x6c\xbb\xfd\x98\x56\x4c\x8e\x0a\x78\x21\xaa\x5d\xeb\xd5\x8d\xeb\x8b\xf2\x55\xd6\xb8\xd4\xad\x22\x8f\x1e\xc8\x4b\x92\x1c\x97\xd3\x3c\x2f\xc4\xe0\xb9\x52\x95\xea\x92\xe1\x49\x59\x28\xb4\x91\x05\x04\xde\x02\xd6\x5b\xb3\x83\x57\x8b\xde\x42\xdb\x78\x6a\x0f\x98\x1c\x0f\x4e\xdb\xdf\x43\xf2\xd4\xe6\x41\xb3\x24\xff\x3f\x81\xb7\xef\x66\x41\x27\x4e\x72\x82\x67\xae\x56\xbe\x38\xb7\xab\xa6\x83\x94\x9e\x95\xae\x0f\xdc\x42\x8c\xd0\xf4\xcc\x1a\xbb\x08\x8d\x28\xdb\xf7\x26\xae\xb5\xbd\xba\x0e\x30\x6b\xe5\x35\x33\xc5\x26\x7a\x00\xbd\xd7\xf4\xc3\x4f\x80\x1a\xcd\x2f\xcf\x70\xc6\xd3\x2e\xfa\x19\xfc\x63\xd0\x07\xdb\xe2\x49\x29\xb9\x25\x97\xea\x2a\x17\x93\x38\x8f\x01\xe1\xc7\x45\xad\xfc\x09\xce\x3c\xb8\x8a\x61\x6a\x3c\x80\xfe\xe6\xd3\x8e\x36\x8d\x6f\xa7\x9f\x44\x2f\xe6\xac\x2c\x2f\x83\x78\x26\x96\x84\x28\xad\x7b\xd3\xaf\x81\xf2\xc6\xa9\x83\x83\xe1\x6a\xf5\xf1\xfd\x5f\x06\xbf\xe9\xff\xf5\x4b\x5f\xaf\xbc\xbb\x49\xb0\x1f\x1a\x84\x7b\x6e\x2a\xc7\xd9\x73\x5a\xb1\xfa\xf4\xc2\x65\xba\xad\x9e\x7c\x8f\x23\x6d\x4b\xc2\x60\x93\x2d\xc4\x8a\x35\x9a\x7f\xa4\x7a\x37\xb1\x2c\x2a\x43\xd8\x98\xba\x02\xac\x1b\x3d\x3c\xd1\x03\x6a\xfb\xd6\xed\x7f\x37\x46\xfe\x25\x91\xdf\x16\xcd\xbe\x0c\xf3\x1d\x5b\x2c\xef\xa6\xdc\x66\xda\xfb\x89\x76\x3e\xc0\x51\x3e\x58\x59\x0d\x93\xec\x75\x7d\x2f\xe3\x4d\xec\xc9\xf8\x94\xa4\x90\x75\xcd\x5b\xc6\x27\xe5\xe8\x61\xcc\xff\x63\x4f\xd8\x9c\xb8\x63\x44\x49\xb8\xf4\x6e\x9f\x2c\xf6\x07\x61\x02\x77\xb7\x60\xb2\xe3\x7d\xc5\xa9\xbc\x60\x0e\x3e\xd0\xcc\xe3\x08\xe7\x1a\x94\xd4\x01\x07\x82\xd3\x6e\xb1\xe9\x6c\x27\x69\x61\x5f\xbf\xb1\xb7\x95\x2a\x6d\x64\x3a\xfd\x53\xb2\xb6\x37\x09\x9d\xb6\xa6\x6f\x00\xd9\x30\x6f\x40\xf3\x7a\x6b\xdd\xaa\x30\x8c\x0b\x0d\xda\xd2\xef\x3a\x53\x31\x90\x60\x99\x65\x29\x21\x23\xdc\xe0\x27\x40\x51\xc8\xb2\xfd\x1e\xb8\xb1\x67\xf3\x1d\x37\x7b\xa7\xbc\x5e\x2b\x5c\x5b\x03\xa6\x82\xad\xe1\xd5\x50\x39\xd6\xef\xfb\xfa\x8e\xaa\xed\x98\x0d\xb4\x53\x7b\xed\x37\x6d\xd8\x07\x77\x7d\xd5\xe9\xbb\x75\x5b\x1f\xce\x51\x06\x51\xf5\x21\xe7\x27\x6e\x11\x58\x8c\x93\xf6\x1e\xd4\x15\xd0\xd7\x1e\xef\x6f\xb8\xbb\x9e\x8e\xe2\x8c\x0e\x3e\xe6\xac\x7d\xbc\x1b\xfc\xf4\xa8\xcb\xce\x83\x7a\x39\x31\x5b\x18\x05\x3d\xd8\x7b\xf6\x37\x2e\xa1\xe9\x36\x09\xc9\xc1\xd4\x5d\x7c\x8c\x76\x5b\xfd\xfe\x8b\xf1\x3e\x32\xa1\x6c\x5b\xba\xd1\x23\xb6\x18\x46\x61\xdf\x8e\x34\x71\xad\x5b\xb1\xad\xa7\x5c\x7a\xb3\x41\x6a\x9c\x93\xfc\x73\xaf\x09\x6e\xd5\x50\xc4\x72\xd0\x7d\xcb\x82\x62\xfc\xd3\x1f\x4e\xe0\xbe\xbb\x64\xbb\x38\x87\xba\xd1\xc6\xf6\x1c\x7c\x5b\xc1\xaf\xf3\xba\x78\xff\xae\x96\x50\xdb\x0d\x3d\xed\x05\x45\xbb\xa0\x8e\x99\xc9\xe0\xd7\xbe\x1d\x7f\xea\xc9\xec\x2f\x48\x99\x01\xa7\x19\x6f\xfa\x8b\x6f\x43\x6f\xaa\x65\xd6\x90\x03\xed\xb5\x82\xd0\xb4\xd9\xcb\xfb\xbe\x66\x0f\xfa\xba\xf4\xe4\xf1\xf7\x03\xb1\x79\xef\x38\x79\xdf\x55\xf4\x41\x4c\x2d\x0b\xbb\x85\x55\xcf\x75\x26\x97\x3f\xa4\xa3\x23\x3d\x22\xd6\xde\xb9\xa6\x95\x85\x6d\x74\x8b\x32\xbf\xb0\x38\x76\x89\xe9\x40\x53\x6d\xfc\xae\xa8\x9d\x39\x80\x31\x8b\xfd\x58\x74\x40\x82\xc2\x42\xaa\xe1\x52\xf9\x8e\x3b\x9e\xab\x60\x8d\xc9\x9d\x83\x75\x71\x5f\x7d\xf3\x12\xae\x59\x2f\xd3\xe2\xc5\x49\xe6\xdd\x08\xce\xcc\xa7\x06\x84\xce\x94\x6c\x69\xf3\x55\x78\x9f\xe5\xda\x30\x1a\x22\x7c\xa1\x50\x48\xa5\x50\x6f\xa5\xeb\x44\xd8\x46\xc4\x5e\xaf\x9a\xd4\x5a\xbd\x43\xb5\xee\xa8\xd3\x09\xd7\x03\xbc\x98\x75\xf5\x76\x36\x00\xfb\x5b\xba\xe4\x39\xf3\x53\xcb\xd2\xc3\x8b\x9f\x8d\xda\x46\xb6\x8c\x28\xf3\x6e\x81\x7e\x3d\xc4\x4c\xb3\x92\xe6\x50\xa7\x90\xd3\x3f\x67\xdb\x2d\x8a\x72\x12\xf7\x4e\x0f\x44\x1c\xaa\xa0\xf7\x81\xe2\x3b\x91\xd2\xa9\x02\x3a\xff\x79\x3a\xee\x26\x48\x95\x3a\x63\x16\xbc\x5b\x96\x60\x32\x94\x16\xef\x8f\xd9\xca\x85\x59\xdc\xc5\xe9\xbe\x76\xa4\xc6\x8e\xb1\xb5\x00\x85\x36\x4c\x78\xc8\x52\x96\x71\x90\x63\xd5\x58\xaf\xb9\x95\x06\x85\xe1\xac\xf2\x53\x4e\x6e\xba\xe2\x96\x57\x55\x04\x68\xcb\xf9\x65\x30\x27\xdf\x27\xc9\x67\x75\xda\x49\x0a\x29\x56\x5c\xd5\x58\x02\x4b\x2e\xbe\xc3\x34\x5d\x1c\x00\xc1\x4f\x26\x8c\x30\x76\x79\x1f\x29\x77\x9c\x19\x49\xd0\x2e\xce\xd3\x04\x40\xc1\x64\x34\x5b\x1b\x4f\x09\xee\x4c\xd7\x3c\xa4\x0f\xb8\x0b\xc8\x5c\xa6\xf6\x95\xb8\x6c\x9a\x16\x73\xb9\x3e\xbe\xc1\xec\xa3\xbf\xe1\xb0\x3c\xe3\x5e\x36\x74\xe6\x95\x52\xfb\x79\x15\x8f\x65\x7a\x02\xf7\x17\x4c\xd8\xce\x5b\xe8\x3f\x0d\x8d\xfb\xc4\x54\xd8\xba\xb9\xb1\xf1\xa5\x6e\x72\xf2\x0d\xd9\x45\x7b\x58\xf2\x35\xf1\x43\xb6\x70\xe0\x5c\xfe\x54\xae\x14\x3d\xa7\x9a\xc6\xa8\x66\xb4\x14\xbd\xf4\x97\xd0\x24\x38\x37\xce\x60\xbb\x1b\xb0\x60\x82\xb4\xbb\x60\x55\x85\xa5\x53\x76\x49\x06\xb3\x45\xd5\x19\x78\x20\x28\xd9\x87\x97\x4c\xb1\x5a\x9f\xe4\xc1\xea\x04\x2e\x5d\x9e\x7f\x9d\x78\xc6\xeb\xb6\xee\xe9\x67\xf7\x19\xcc\xf0\x93\x05\xa2\x5f\xfb\x19\x7c\xba\x69\xd4\x89\x11\x90\x49\x97\xba\x24\x54\x3c\xdb\x9f\xf7\x0c\xab\x58\x2e\x89\x74\xea\x8e\xf2\x59\xb2\x87\x38\x58\x4a\x2a\xc6\x05\x6c\xfd\x8a\xfb\xfd\xce\x66\x4a\x5b\xc8\x8e\xff\x0e\x8f\x7d\x6e\x9c\x5c\xf3\xdb\x0c\x99\xe0\x2d\xd1\x35\x4a\x87\x81\xf9\x13\x0d\x80\x0a\x29\xc2\x01\x80\x3a\x46\x44\x12\xfb\x95\x69\x82\x52\x4e\x12\x8d\x9e\x46\xd0\x01\xa4\x1d\xc1\x73\xc6\xc1\xb4\x09\xe6\xb2\xd7\x42\x5c\x93\xc4\x0d\x99\x37\xcb\x8a\x17\xce\xdf\x64\xf3\xd8\x71\x3c\xe3\x43\xc7\x28\xc8\x8d\xb9\x5d\xce\x76\x5e\x86\xdf\x27\xbd\x33\xc5\x65\x27\x5d\x9b\x9b\x97\x48\x9a\xf5\x2b\x7e\x9a\x4c\x67\xbd\x7d\x51\x02\x67\xd5\x5a\x2a\x6e\x36\xb5\x53\xf0\xfc\x6f\xf3\x9f\x7e\xbf\x7c\xff\xd3\xef\x97\x4f\xbe\x7b\xff\xfd\x5f\x9f\x64\x40\xa6\xbd\xf3\x2e\x36\xe8\x06\x33\x34\x62\x3b\x9e\xd7\x8a\x5a\xba\x54\x2d\x56\xfe\xda\x87\x9e\xde\xd1\xb9\x7e\x63\xbf\x38\x6d\x4f\x37\xbf\x41\xc5\x57\x03\xe7\x4f\x32\x87\x5c\xe9\xee\x3c\x3d\x96\xe7\xcc\xb0\x93\x4c\xbd\xf6\x6e\x2a\x65\xcd\xb8\xb8\xc4\x2d\x73\x37\x64\x57\x6c\x7d\x02\xf7\x7f\xf9\xfd\xc5\x9f\x8f\x16\x21\x20\xbe\x27\xc5\x79\xf4\xe6\xf1\xe3\x47\x8b\xcb\xc7\x8f\x1f\x91\x77\x78\x74\xbf\x0f\x6a\xc3\xf4\x26\x61\xfc\xaf\xe9\xc7\xf9\x6f\xcf\xce\x16\x4f\xbe\xfb\xeb\xfb\xaf\xe1\xfd\x99\xd6\xa8\x4c\x9b\x1e\x73\x93\x6b\x14\x73\xdf\xf7\xf9\xe7\x79\xdd\x27\x31\xe6\xa0\xce\x16\x22\x63\xa1\x70\x21\x86\x32\x07\x92\x09\xef\x86\x8a\x3e\x71\xc1\x10\xfa\x8d\x04\x1b\x89\x96\x58\x49\xb1\xd6\x60\x64\x4f\x13\x3a\xf5\x69\xdf\x7e\xfd\xa7\xb7\x89\xf9\xbe\xeb\x1d\xe5\xc7\x1f\x61\xcb\x04\x2f\x26\xf7\xaf\x22\x52\x7f\x0a\x5b\x65\x94\x8d\x0a\x3d\x9a\x6c\x68\xf3\xfe\x74\x8c\xa0\x1e\x2d\x61\x7e\xf8\x6d\x4a\xf1\xbb\x7b\x23\xac\xf0\x44\x3c\x48\xdf\x1a\x64\xb5\x45\x40\x67\xc9\x8b\x75\xf9\x7c\xb4\x41\x9d\x7a\xaf\x3e\xd2\x4b\xec\x9a\x62\x32\x5c\xe5\x26\x93\xf2\x02\xc0\xdd\x31\xa4\x75\x7b\x66\x5b\xd3\xc1\xc5\xa1\xec\x4e\xec\xa9\xaf\x0a\x81\x14\x81\xb7\xfd\xe6\x6a\xaf\x71\x15\xd8\x90\x8f\xc6\x24\xdc\x38\xa0\xc1\x9a\x92\x43\x9a\x90\xcf\x4f\xd8\xfe\x1e\xde\x8e\x0c\xee\xd8\xa3\x0d\x4c\xef\x04\x0a\x0e\x6b\xf1\x26\x14\xb4\x7d\xde\x88\x74\x80\x47\x76\xe0\x9b\x3c\xa5\x2c\xdd\x45\x40\x9c\xe8\x0a\xea\xb7\x64\xc5\x87\x31\x8a\xee\xd4\x90\x70\x25\x40\xff\x9f\xee\x49\xc6\x86\x75\xba\x15\x40\x37\x23\xcb\xe6\xa4\x0d\xaa\x15\x2b\x7c\x1c\x70\x2f\x66\x42\xcb\xd8\x95\x17\x5c\xc6\xb1\x70\xaa\x57\x98\x6a\x47\xdf\x7d\x56\xae\x70\xdd\x54\x4c\x01\x6b\x8c\xac\x5d\xe5\xe4\xe7\x0a\xfd\xc0\x22\x2d\x72\xf3\x8a\xe9\xfc\x84\xcf\xf3\xb5\x1b\x80\x74\xa9\x53\x3b\x04\x7e\x4d\x67\xb4\xe3\x9a\xd7\xed\x8b\x0e\xb3\x51\xf6\x05\x0e\x4b\xc6\xc8\xc7\x2b\x18\x1e\x0f\x67\xe1\xbc\x68\x8f\xf3\x79\x34\x63\x73\x09\xb9\xcd\xc6\x0f\xa9\x09\x4e\xe0\x7f\xed\xda\xf1\x36\x97\x61\xca\xb8\xb4\x6c\x32\xf0\x76\x21\x19\x9e\xea\xef\x94\x5b\xbf\x71\xb8\xae\xa1\x45\x2b\xa9\x0a\xbc\xec\xae\xec\xd4\xb8\x76\xc8\xba\x65\xcb\x56\xc9\x1b\x5e\xfa\x01\x82\x30\x8b\x6f\x64\xa8\x45\x8c\xec\x16\x23\x2e\x19\xd2\xb3\x08\xd4\x4e\xa3\xfa\xab\x7a\x77\xf7\x8c\x6e\xde\x9b\xe4\x6d\x4b\x17\x31\xf0\x8c\x23\x93\x8d\xa5\xe9\x64\x40\x30\x59\x32\xee\xae\xe7\xb5\xbf\x9f\x1f\xac\x91\x3a\xb5\x79\xa7\x8a\xe4\xba\x9d\x71\x0d\x33\x9d\x2e\x57\xa9\x76\x9e\x30\xbe\xac\x30\x74\xa7\xa2\xce\x65\x60\x82\xfa\xcd\xfc\x23\x26\x0b\x48\xa1\x36\x8a\x17\x3e\x60\x12\x9d\x76\x8e\x56\x06\x1b\xca\x9e\x03\xfe\xbb\xd5\x6d\xf8\x36\xed\x6f\x8f\xbc\x08\x73\x78\xc1\x99\xa4\xf0\xda\xdf\x07\x9b\x31\x96\xf7\x52\xac\xf8\xda\x36\xa0\xdc\x43\x3e\x6f\x83\xfd\x26\xc2\x83\x38\x9a\xa1\x07\xab\x22\xfb\x4a\xe6\xc5\xd5\xcf\x27\x4e\x20\x41\x0e\xbe\xe2\xf3\xf6\x6e\xe4\xf6\x51\x85\x37\x58\xb5\x42\x48\x9e\x9b\x35\x5b\x29\x32\x78\xf9\x4b\x31\x3b\x64\xec\xcd\x1c\xdc\x78\xf7\x4b\x3b\x13\x3d\x4a\xcf\xe2\xec\x8f\xab\x8b\x17\xcf\x4f\x2c\x15\x2e\xa9\xe0\x1a\x50\x31\x8d\x3a\x99\x89\xe8\xbc\x11\x39\xde\x2a\xbc\xe1\xb2\xd1\x69\xf7\xe4\x9b\xcc\xfe\xf3\x1e\x7f\xde\x96\x74\xdd\x92\x7a\xdc\xf7\xb7\xde\x7e\x60\x94\x76\xe8\x2a\x65\x70\x96\xb6\x7d\xe9\xd2\xbe\xcf\x3a\x60\x70\xc6\x95\x8a\xae\xf9\x1d\x9b\x66\x14\x29\x78\xc1\xb7\xcc\x7a\x85\xcc\x36\x53\x94\xed\x4b\x84\x10\x1a\xd3\x11\xd3\x91\xf9\x2d\x38\x24\x92\x7a\xbd\x6f\xaf\xd5\x7b\x16\x91\xf3\x25\xfd\x94\x5f\x34\x0d\x50\x16\x9a\x1e\xf7\xa6\xc3\x83\x19\xe3\x19\x70\xdb\x2d\xc9\x92\xe6\xfe\x4f\x0f\x6e\x7f\xa4\xe3\x8e\xde\xc0\xc1\x89\x41\x87\xa7\x43\xd7\x4c\x7e\x52\xf3\xc9\xd3\xde\xa4\xe6\x68\xc3\xc7\xc8\xad\x4e\xa3\x42\x2f\x6f\x77\xcd\x9f\xd0\xdf\x8c\x1d\xa0\x82\xf4\xea\xbb\xe3\xef\xf3\x66\x4f\xcd\xfe\x49\x75\xd7\x2e\xbe\x80\x08\xca\xba\x61\xba\x9d\xe2\xf1\x97\xe4\xf3\xc3\xe2\xea\x37\xf4\x5b\xdc\x79\xc2\x60\x99\x1d\x18\x0e\x6d\x97\x70\x89\x18\x27\xd7\x96\xb8\x92\x0a\x81\x1b\xfb\x3a\x77\x69\xdb\x08\xdb\x6d\xbf\x65\x37\x8e\x2d\x73\x05\xf6\x9d\xde\x18\xb7\x7f\xa1\x4c\xc0\xbe\xf3\x96\xdb\xa4\x37\x6b\xdb\x41\xa8\xb8\x2c\x73\xd9\x6c\x64\x53\x95\x91\xf5\x0d\x25\x5e\xbe\xb3\xbc\x55\xd2\xc8\x42\x56\xb0\x61\x95\xd1\x6e\xb2\x0c\xb1\xd4\x7e\x2a\x5b\xa1\xc6\xe1\x2b\xf8\xc1\x7c\xe4\x70\x47\xd7\x3d\x1d\x74\xef\xf4\xdc\x50\x22\x83\xa5\x94\x15\x32\x01\x06\x9d\xe7\xe6\x69\x23\xda\x8e\x2f\x86\x07\xf7\x3d\xad\xbb\x49\xfa\x63\xbd\xdc\x24\x9b\x08\x57\x17\xfa\x75\x84\x33\x79\xdf\x69\x56\x4f\xdd\x83\xc3\xe4\x70\x3e\x04\xdf\x6d\xf6\xf7\xda\x2b\xe0\xaf\x39\x5d\x7c\x22\x13\xde\x4a\xfa\x77\x2c\x36\xd4\x5f\x77\x73\xb5\x2c\xfd\xf3\xbd\xac\x22\x35\x35\x0f\x84\x6c\xcd\xbf\xe7\x4c\xd0\x94\x94\xda\xc8\x9d\xee\xe0\x70\x70\xda\x2c\xf0\xc2\x40\x61\xb5\x28\x01\xc8\xd6\xcc\x0f\x18\xec\xe3\x6c\x68\x87\x7f\x23\x5b\x07\x9b\xcf\xfb\xf9\x1a\x1e\x47\xc7\xa9\x88\xe0\x36\x2c\x95\xab\xa6\xaa\x76\x3d\x1f\xd2\x0e\x9e\x8e\x5c\x95\xc4\x63\x65\x0d\xca\xf1\x43\x25\x16\xf8\x0d\xad\x16\x3f\xec\x78\x70\xa7\x25\x30\xe6\xf3\xff\xb3\x37\xd2\x2b\x7b\x2f\x12\x55\x19\x32\xb7\xc0\xb0\x59\x77\x63\x91\xf6\x1d\x9d\xc2\xed\x5c\xcb\xd6\xbe\xcd\xca\x96\xf3\xd5\xbe\xa8\xeb\xa5\x3d\x3e\x99\xd8\xb6\x1e\xfa\x43\x73\xe7\xef\xee\x25\x63\x0b\xf7\xfa\x23\x19\x83\x11\xcd\x03\x6e\xbd\x54\xa2\x65\x6e\xbc\xb1\xaa\xe2\x20\xce\xf8\x3f\x7a\x31\xfe\xca\x3d\xd3\xa8\xe4\x5f\x62\xa0\x08\x13\x13\xc7\xbe\x69\xa4\xe3\x21\x7a\x4c\xfd\xed\x73\x6c\xbe\x82\x5b\x74\xfc\x8e\xff\x12\x40\xf8\x27\x2d\xda\x6c\xd7\xfe\x83\x28\x1e\xdc\x1e\x95\x1f\x08\x83\x1d\xd3\xed\xe4\x93\x23\x69\x6b\xef\x95\x4d\x90\x5c\x36\xbc\x7d\x7a\x87\xb8\xf3\xd8\xd1\x95\x61\x67\x71\xcc\xa8\x3d\xa3\xec\xfd\x5f\x1a\xa8\x2c\x4b\xbb\x2f\x93\xe1\x14\x8e\xb5\xfb\x78\xbc\x8a\x15\xca\xab\x85\x5d\x97\x6f\xed\x3e\x51\x1e\xdb\xea\x3a\x07\xf9\xde\x7e\x48\x6c\x33\x99\x7c\x65\x92\xf9\xbf\x7d\x97\x7f\x95\x3a\xc8\xfc\x01\x59\xec\x2e\x2d\xa2\x0f\xf8\xfc\xa5\x43\x82\x7f\x6e\x3f\xf7\x24\xcf\x35\xbb\xc1\x49\xac\x2d\xed\x79\x27\xd3\x19\x18\x79\x32\xcc\xa9\xd0\x83\xf8\xf2\x7f\x01\x00\x00\xff\xff\x7b\x64\x0d\x69\xcb\x47\x00\x00" +var _epochsFlowclusterqcCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x3c\x6b\x6f\x5b\x37\xb2\xdf\xfd\x2b\x26\x01\x2e\x22\x65\x15\x39\xe9\x16\xc1\xc2\x58\x6f\xaf\x2b\xb7\x5b\xa3\xcd\xd3\x6e\xfa\x21\x08\x62\xea\x9c\x91\xc4\xcd\x39\xa4\x42\xf2\xd8\xd1\x06\xf9\xef\x17\xc3\xd7\x21\xcf\x43\x56\xb2\xbd\x6b\xa0\x45\x64\x91\x33\xc3\x79\xcf\x70\xe8\xa3\xe3\x87\x70\xf4\xf0\xe8\x21\xc0\x33\x26\xd8\x1a\x35\x98\x0d\xc2\x56\xc9\x02\xb5\x06\xb9\x82\x42\x56\x15\x16\x86\x8b\x35\xdc\x48\x83\x1a\x56\x52\xd9\x35\x4a\x4a\x03\x1f\x1b\xa9\x9a\x1a\x0a\x54\x86\xaf\x78\xc1\x0c\xd2\x1e\xfa\xba\xd9\x16\xb2\xe6\x62\x4d\xa0\x71\x2b\x8b\x8d\xdd\xc8\xaa\x2a\x42\x94\x02\x84\x2c\x11\x8a\xaa\xd1\x06\x95\x06\xa6\x35\x5f\x0b\x2c\x23\x8a\x00\xc3\x01\x98\x3b\x3a\xff\xd8\xa0\x08\x30\xa4\xb2\x20\x34\x30\x85\xb0\xe2\x4a\x1b\x50\xb8\xe6\x04\x0e\xcb\x19\xc1\xd8\x41\xc1\x04\x28\xfc\xd8\xa0\x36\xc0\xe0\x8d\x34\xa8\x40\x2e\xff\x85\x85\x81\x95\x92\x35\x98\x0d\xd7\x50\x48\x61\x14\x2b\xcc\x9c\x30\x5c\x6d\x70\xf7\xa0\xaa\xa0\xd1\xe8\xbe\x0d\xcb\xa5\x02\xbc\x41\xb5\x03\xdd\x2c\x35\x81\x14\xc6\x9f\xed\x76\x83\x0a\x1d\x3e\x22\x85\x81\x36\xec\x03\x96\x1d\x3a\xfd\x09\xce\x8c\x3d\xdd\x12\xd7\x5c\x08\x3a\x9e\x5c\x01\xb2\x62\x03\x3f\x11\xac\x4b\x34\xcd\x16\xb6\x1b\xa6\xd1\x9e\x00\x58\x59\x73\x01\x5c\x70\xc3\x59\xc5\xff\x6d\x45\x94\x90\x0c\xb7\xdc\x6c\x08\x2c\xad\x6d\xf1\x45\xae\x8e\x30\x13\x7e\x22\x8c\x39\x7d\xb0\x61\x9a\x68\xe7\x62\x5d\xa1\x15\xb7\x83\xcb\x0c\x70\x4d\xb2\x93\x24\xe1\x28\x9f\x1a\x98\x28\x5b\x26\x4b\x51\xd1\x3f\xaa\x8a\x7e\xc5\x15\x5c\x13\x80\x6b\x58\x35\xc2\x09\x5b\x8a\x02\x2d\x7f\xe9\xbf\x17\xa2\x40\xf0\x6b\x5b\x5a\x37\xec\x06\x41\x61\x81\xfc\x06\x4b\x40\x21\x9b\xf5\x06\x78\x89\xc2\xf0\x82\x55\x5e\x01\x8d\x04\xdd\xa8\x2d\xd3\xda\x23\xba\x45\xbe\xde\x10\x4f\x15\xea\x8d\xac\xca\x99\x17\x22\xbc\x5a\xc0\x1a\x05\x2a\x66\xf1\x5b\x96\xd2\x41\x56\x5c\x70\xbd\xc1\x32\x90\xef\x39\x7c\xcb\xab\x0a\xd0\xff\xea\x46\x92\xca\xcf\xbd\xb8\x98\xd8\xc1\x56\x72\x61\x66\xf4\x4f\x29\xd0\x1e\xf8\x63\x43\xba\xd0\xae\x06\x2e\x56\x52\xd5\x0e\x5b\x60\x7b\x3c\x1b\x81\x5a\xee\xa0\x21\xee\xda\x6f\xae\xd7\x68\x16\xfe\xdb\x96\x4d\x84\xd2\xd1\x9f\xca\x98\xd8\x0f\x35\xd6\x4b\x52\xde\x15\xc9\x08\x15\x47\x6b\xa0\x4e\x01\x75\xcd\x94\x89\xeb\x35\xdc\x6e\xb8\x15\xaf\x54\x25\x17\xcc\x78\xbb\x26\xc0\x89\x6d\x1b\xc5\x84\xe6\x84\x95\x68\x5a\xa2\xb9\x45\x14\x0e\xa0\x06\x2e\xe0\xe7\x4a\xde\xce\x8f\x1e\x1e\x1f\x1d\xf1\x7a\x2b\x95\x81\x85\xda\x6d\x8d\x3c\x3a\x62\x05\x81\x98\xb0\xaa\x9a\xb6\x34\xd2\x6a\x7f\x9e\x57\x0b\xf8\x7c\x74\x04\x00\x70\x7c\x0c\xa7\x7f\xf2\x4f\x80\xbb\x78\xf1\xfc\xea\xf5\xd9\xe2\x0a\xde\x9c\xbd\xbe\x38\xfb\xf1\xb7\x9f\x2e\xff\xdf\x30\x7a\xc0\xc7\x70\x21\x4a\xeb\xe5\x88\xc1\x68\x36\xa8\xbc\x4e\x92\xd1\x17\x8d\x52\x28\x4c\xb5\x83\x25\x12\x3f\xbd\x6d\x61\x39\x6f\xb7\xaf\x60\xc5\x2a\x32\x6c\x21\x9d\xc5\xc9\x2d\xa9\xa7\x54\x4e\xfb\x96\x08\x6c\x59\xa1\x53\xf1\x65\xcd\x8d\x03\x6f\xf7\xa7\x3c\xbf\x61\x0a\xb8\x78\xa9\xe4\x5a\xa1\xd6\x27\xf0\xa3\x94\x55\x4b\xe4\x55\xeb\x08\xfa\x4e\x36\xea\xa5\xa3\xd6\x49\x3b\x43\x50\x14\xb2\x11\xc6\x21\x09\xdb\x4e\xe0\xad\x17\xed\xbb\x21\x66\x70\x52\xc9\x1b\xeb\x5a\x15\x6a\xd9\xa8\xc2\xfb\x92\x4a\x21\x2b\x89\x21\xe4\xb3\x2b\xc6\x6b\x2c\xc9\x08\x98\x23\xea\xe2\x3c\xc2\xf2\xae\x18\xbd\xb5\x9b\x1d\x18\xcb\x89\xa0\x5d\x71\xe1\x73\xb7\xd1\xfb\x0a\x23\x1d\xd8\x88\x9e\x9c\x4c\x5c\x4b\x86\x6a\x11\x59\xe6\x3a\x77\x8e\xa0\x59\x8d\xa0\xb7\x58\x50\xc4\x82\x8b\x73\xeb\x06\xde\xe4\xc4\x87\x58\x65\x78\xdd\x82\xbb\x16\xbc\xba\x86\x1a\x99\xd0\xce\x29\x1a\xeb\xf5\xb9\x26\x69\x7a\x17\x50\xb0\x2d\x5b\xf2\x8a\x0e\x10\x38\xdd\x3b\x2a\x69\x40\x0a\x26\xd0\x3e\xb0\xf7\xe2\x7c\x06\xcb\xc6\x00\x37\xc4\x4f\xf1\xc0\x64\xac\x8c\x20\x8d\x6a\xb0\x43\x58\x1f\x26\x09\xa4\x2b\x88\x40\xdf\xa8\x02\x58\x28\x0b\xb7\xe1\x04\x3e\x5f\x1a\xc5\xc5\xda\x29\xdc\x97\x61\xb3\x60\x26\x68\x4d\x10\x33\xb7\xce\x64\x5c\xf1\x08\xc2\x1b\x56\x35\xe8\xdc\x5c\xd8\xcd\x45\x89\x9f\x52\xc2\x82\x2e\x38\xca\x08\xb4\xd7\xc9\x84\xb0\xdf\x2f\x84\x79\xf2\xf4\xcb\x7f\xcf\xf9\x2c\x5e\x3c\xbf\xbc\x3a\x7b\x7e\xf5\x5f\x70\x3e\x0b\x26\xa4\xb0\x81\x70\xcb\xcc\xc6\x99\xb2\x0b\x5d\xa4\xc1\xb9\xf9\xf5\x7d\x46\x85\x06\xce\x68\xf5\xa5\x91\x8a\xad\xf1\x25\x33\x9b\x13\x48\x3e\x0c\xee\xb0\x76\x31\xba\x23\x92\xf6\x1a\xb7\x0a\x35\x0a\x63\x05\x38\xec\x7b\x1c\xbd\xb0\xe6\x37\x21\xc8\xcc\xa1\x87\x53\x1b\xd5\x14\x06\xbc\x60\x43\x14\x49\x3d\x9b\x55\x8b\x90\x65\x06\xd0\x94\x03\x71\x91\xfd\x8a\x29\xc5\x76\x73\x17\x47\x1b\xc1\x3f\x36\x58\xed\xbc\x77\x59\x71\xcf\x9f\x00\x97\x8d\xd3\x18\xd7\x75\x39\x63\xe9\x08\x0a\x97\x93\xf9\x87\x4d\x48\x9c\x80\x6c\x62\x47\x6c\xb8\x38\x87\x9c\xc2\x51\xc8\xb4\xda\x83\xe8\x68\xf6\xd3\xef\xbf\xf4\x19\x62\xa4\x61\x95\xf7\x73\x2e\x13\xa2\x0c\xc1\xa7\x56\x2e\x3d\x3e\x10\xb1\x85\xe4\x30\x07\x7c\x39\xba\x37\x2e\x01\x23\x1b\x77\x80\xbd\xf3\x3d\x34\xa1\xcd\x80\xfd\x8a\x3b\xe7\x3b\xad\x7b\x3c\x2c\x02\xa4\x84\xb4\xba\x6e\xc5\x2f\x1b\x03\x54\x3f\x30\xd3\x28\xca\x8c\x14\xd4\xa8\xb5\x2d\x69\x32\x39\xd8\x58\xad\x8d\x54\x58\x02\xf9\xef\x5c\x11\xc6\x4e\xe2\xb3\xac\xf6\x28\x5e\x77\xa3\xc8\xa9\x2a\xf1\xfe\xce\x85\x6e\xed\xfd\xfa\x2c\x7a\xe3\x36\x15\xa6\xe2\x40\x93\x53\x27\xa2\xad\x2a\x73\x0d\x35\xdb\xce\x72\x62\xca\x32\xa4\xb8\xf1\x60\xd6\xd4\xfd\xc1\x2c\x64\xe1\x96\x71\x03\x4b\x56\x7c\xa0\x80\x68\x81\x59\x7c\x15\xd7\x66\x9e\x81\xbc\x58\x05\x22\x29\x1a\xd0\x22\x57\x26\x51\xba\x1e\x71\x5c\x5b\x24\xd7\x1e\xcb\x35\xac\x38\x56\x65\x4c\x50\x84\x14\x8f\x6c\x24\x1c\x07\x4c\x71\xea\x9b\x60\xe7\x70\xbb\x19\x8f\xcf\xe5\xb1\xb4\x6a\x98\x98\x06\x7d\xee\x1a\x86\x62\xc5\x07\xed\x64\xe7\xac\xdf\xb1\x84\xb0\x6f\xe4\x2d\xd4\x8d\x4d\x8f\xeb\x25\xa7\x82\xd3\xdb\x4d\x8c\x90\xe4\xc9\x62\xc0\xb2\x75\xd0\x18\x4d\x0e\x36\x11\xf0\xcc\x1d\xe9\xaa\xb5\xa1\xbd\xd6\x4b\xf5\xdc\x24\xf3\x21\xb3\xfd\x86\x3f\x85\xcf\x71\x33\xfd\x68\xac\x56\x73\xe7\x0c\x4f\x93\x58\x99\x7d\x9d\x00\x84\xd3\x14\xfc\x51\xb6\x96\x0e\x32\x60\xfb\x70\x0a\x8f\xb3\x75\xc4\x11\xcf\x2a\x2e\x52\x70\xf3\x1b\x0a\xdf\xba\x43\x21\xfd\x24\x60\xe1\x34\xfb\xf4\x17\x0f\x2a\xdb\xf2\xa5\x7f\x86\x51\x08\xfd\xa5\xb9\x82\xc0\x29\x7c\x1e\x80\xb7\x57\x62\xf9\x9e\x8e\x4e\xbd\x46\xd3\x28\xe1\x2a\x29\xd1\x84\x5a\xec\x60\x0f\xbb\x6a\x04\x68\xfe\x6f\x9c\x4c\x83\xc4\x3b\xfc\x52\x16\xbe\xff\x6e\xd2\x15\xe0\xbc\x42\xb1\x36\x9b\x29\x1c\x42\x5e\xcd\x05\xaf\x9b\x1a\x74\x53\x13\x8d\x56\xf5\xbd\xe4\x14\x7e\x6c\x38\x39\x3f\x2e\x40\xaa\x12\x49\xf4\x69\xe1\x11\x98\x08\x2c\x83\x7e\xc3\x2a\x5e\x0e\xf5\x7b\x9c\x99\x50\xb1\xea\xce\x3e\x1f\xb6\x15\x8e\xb7\x96\x03\x44\xca\x55\xa8\xd4\x03\x2b\x9e\x7e\xdf\x61\x05\x5f\x0d\x08\xff\x14\x1e\x0f\x68\x98\xe7\xda\xe3\x8e\x1e\x65\x1f\x29\xb8\xad\x2a\x29\xd5\x0b\x81\x57\x1b\xae\x4a\x38\xed\xc3\x3f\xf6\xa4\x4c\xfe\x3a\xa5\x3c\x8e\x0b\x83\x6b\x54\x50\xf2\x1b\xae\xb9\x14\x33\xe0\xa2\xa8\x1a\x12\xb6\x05\xd5\x37\x21\x65\x75\xce\x03\xf9\x6e\x0a\x0f\x73\x9c\x7d\x92\x4a\x7e\xf3\x1a\x6b\x46\xc6\xab\x86\x28\xfa\x9f\x96\xa2\xa3\x2e\x7b\xb2\xbd\x7f\x8f\x68\x9f\x74\xdd\x84\x63\x11\x11\x46\xff\xff\x4b\xbb\x2e\xe7\x17\x20\x15\x25\xfb\xb7\xa6\x28\xf7\x71\xdb\x4b\x44\x25\x49\xd6\x1e\x55\xd5\x86\x99\x46\xc7\x28\xe8\xb5\xe8\x81\x86\x57\x8b\xd0\xab\xe8\x46\x9a\x58\x77\xb1\xc4\x0e\xbd\x7a\x93\x3a\x76\x3b\x46\xf8\xa9\x40\x2c\x63\xdf\x25\x53\xc1\xeb\x59\x37\xa1\x12\x03\x84\x24\x6d\x24\xd7\x96\xd1\xbc\x44\x65\x1b\x7c\xf5\xb6\x42\x1f\x58\x5c\x18\x47\xb3\x91\xa5\x67\x82\xce\xb3\x84\x98\x09\xf8\xf8\xe7\x52\x29\x45\x51\x0a\x83\x71\x75\x0f\xeb\x6a\x4b\xd7\xb8\x92\x0d\x61\x91\x6e\x87\x5f\xef\xb3\x00\x57\x9c\x72\xed\x11\xfb\xe2\x10\xc6\xcc\x90\xeb\x85\xa7\x9c\x6c\xd0\x85\x9a\x1f\x3a\xf2\x5f\xb5\x39\x14\x39\x8b\xbb\xbd\xe7\xfc\x03\xee\x86\x82\x40\xb0\xe6\xbd\x9b\xdf\x7a\x54\xef\xee\xc1\x3f\xbc\x2d\x74\x7c\xc5\x00\xe4\x44\xdd\xfc\xf6\xde\x92\x2f\x7b\x02\x8c\xdf\x2a\x78\x35\xa6\xa9\xff\xf4\xde\xd0\xe9\xea\x2b\xe7\xfe\x16\x7b\xdc\xdf\x80\xae\xb6\x15\x2d\x65\xbb\x26\xea\xcc\xcc\x6d\x0c\x9a\x32\x9e\xfc\x90\xc0\x82\x5b\x76\x24\x24\x14\x90\xfc\x62\xdb\xed\x87\xb4\x62\x72\x54\xc0\x0b\x51\xed\x5a\xaf\x6e\x5c\x5f\x94\xaf\xb2\xc6\xa5\x6e\x15\x79\xf4\x40\x5e\x92\xe4\xb8\x9c\xe6\x79\x21\x06\xcf\x95\xaa\x54\x97\x0c\x4f\xca\x42\xa1\x8d\x2c\x20\xf0\x16\xb0\xde\x9a\x1d\xbc\x5a\xf4\x16\xda\xc6\x53\x7b\xc0\xe4\x78\x70\xda\xfe\x3b\x24\x4f\x6d\x1e\x34\x4b\xf2\xff\x13\x78\xfb\x6e\x16\x74\xe2\x24\x27\x78\xe6\x6a\xe5\x8b\x73\xbb\x6a\x3a\x48\xe9\x59\xe9\xfa\xc0\x2d\xc4\x08\x4d\xcf\xac\xb1\x8b\xd0\x88\xb2\x7d\x6f\xe2\x5a\xdb\xab\xeb\x00\xb3\x56\x5e\x33\x53\x6c\xa2\x07\xd0\x7b\x4d\x3f\xfc\x04\xa8\xd1\xfc\xf2\x0c\x67\x3c\xed\xa2\x9f\xc1\x5f\x06\x7d\xb0\x2d\x9e\x94\x92\x5b\x72\xa9\xae\x72\x31\x89\xf3\x18\x10\x7e\x5c\xd4\xca\x9f\xe0\xcc\x83\xab\x18\xa6\xc6\x03\xe8\x6f\x3e\xed\x68\xd3\xf8\x76\xfa\x49\xf4\x62\xce\xca\xf2\x32\x88\x67\x62\x49\x88\xd2\xba\x37\xfd\x1a\x28\x6f\x9c\x3a\x38\x18\xae\x56\x1f\xdf\xff\x65\xf0\x9b\xfe\x6f\xbf\xf4\xf5\xca\xbb\x9b\x04\xfb\xa1\x41\xb8\xe7\xa6\x72\x9c\x3d\xa7\x15\xab\x4f\x2f\x5c\xa6\xdb\xea\xc9\xf7\x38\xd2\xb6\x24\x0c\x36\xd9\x42\xac\x58\xa3\xf9\x67\xaa\x77\x13\xcb\xa2\x32\x84\x8d\xa9\x2b\xc0\xba\xd1\xc3\x13\x3d\xa0\xb6\x6f\xdd\xfe\x77\x63\xe4\x5f\x12\xf9\x6d\xd1\xec\xcb\x30\xdf\xb1\xc5\xf2\x6e\xca\x6d\xa6\xbd\x9f\x68\xe7\x03\x1c\xe5\x83\x95\xd5\x30\xc9\x5e\xd7\xf7\x32\xde\xc4\x9e\x8c\x4f\x49\x0a\x59\xd7\xbc\x65\x7c\x52\x8e\x1e\xc6\xfc\xdf\xf7\x84\xcd\x89\x3b\x46\x94\x84\x4b\xef\xf6\xc9\x62\x7f\x10\x26\x70\x77\x0b\x26\x3b\xde\x57\x9c\xca\x0b\xe6\xe0\x03\xcd\x3c\x8e\x70\xae\x41\x49\x1d\x70\x20\x38\xed\x16\x9b\xce\x76\x92\x16\xf6\xf5\x1b\x7b\x5b\xa9\xd2\x46\xa6\xd3\x3f\x25\x6b\x7b\x93\xd0\x69\x6b\xfa\x06\x90\x0d\xf3\x06\x34\xaf\xb7\xd6\xad\x0a\xc3\xb8\xd0\xa0\x2d\xfd\xae\x33\x15\x03\x09\x96\x59\x96\x12\x32\xc2\x0d\x7e\x02\x14\x85\x2c\xdb\xef\x81\x1b\x7b\x36\xdf\x71\xb3\x77\xca\xeb\xb5\xc2\xb5\x35\x60\x2a\xd8\x1a\x5e\x0d\x95\x63\xfd\xbe\xaf\xef\xa8\xda\x8e\xd9\x40\x3b\xb5\xd7\x7e\xd3\x86\x7d\x70\xd7\x57\x9d\xbe\x5b\xb7\xf5\xe1\x1c\x65\x10\x55\x1f\x72\x7e\xe2\x16\x81\xc5\x38\x69\xef\x41\x5d\x01\x7d\xed\xf1\xfe\x8a\xbb\xeb\xe9\x28\xce\xe8\xe0\x63\xce\xda\xc7\xbb\xc1\x4f\x8f\xba\xec\x3c\xa8\x97\x13\xb3\x85\x51\xd0\x83\xbd\x67\x7f\xe3\x12\x9a\x6e\x93\x90\x1c\x4c\xdd\xc5\xc7\x68\xb7\xd5\xef\xbf\x18\xef\x23\x13\xca\xb6\xa5\x1b\x3d\x62\x8b\x61\x14\xf6\xed\x48\x13\xd7\xba\x15\xdb\x7a\xca\xa5\x37\x1b\xa4\xc6\x39\xc9\x3f\xf6\x9a\xe0\x56\x0d\x45\x2c\x07\xdd\xb7\x2c\x28\xc6\x3f\xfd\xfe\x04\xee\xbb\x4b\xb6\x8b\x73\xa8\x1b\x6d\x6c\xcf\xc1\xb7\x15\xfc\x3a\xaf\x8b\xf7\xef\x6a\x09\xb5\xdd\xd0\xd3\x5e\x50\xb4\x0b\xea\x98\x99\x0c\x7e\xed\xdb\xf1\xa7\x9e\xcc\xfe\x82\x94\x19\x70\x9a\xf1\xa6\xbf\xf8\x36\xf4\xa6\x5a\x66\x0d\x39\xd0\x5e\x2b\x08\x4d\x9b\xbd\xbc\xef\x6b\xf6\xa0\xaf\x4b\x4f\x1e\xff\x7d\x20\x36\xef\x1d\x27\xef\xbb\x8a\x3e\x88\xa9\x65\x61\xb7\xb0\xea\xb9\xce\xe4\xf2\x87\x74\x74\xa4\x47\xc4\xda\x3b\xd7\xb4\xb2\xb0\x8d\x6e\x51\xe6\x17\x16\xc7\x2e\x31\x1d\x68\xaa\x8d\xdf\x15\xb5\x33\x07\x30\x66\xb1\x1f\x8b\x0e\x48\x50\x58\x48\x35\x5c\x2a\xdf\x71\xc7\x73\x15\xac\x31\xb9\x73\xb0\x2e\xee\xab\x6f\x5e\xc2\x35\xeb\x65\x5a\xbc\x38\xc9\xbc\x1b\xc1\x99\xf9\xd4\x80\xd0\x99\x92\x2d\x6d\xbe\x0a\xef\xb3\x5c\x1b\x46\x43\x84\x2f\x14\x0a\xa9\x14\xea\xad\x74\x9d\x08\xdb\x88\xd8\xeb\x55\x93\x5a\xab\x77\xa8\xd6\x1d\x75\x3a\xe1\x7a\x80\x17\xb3\xae\xde\xce\x06\x60\x7f\x4b\x97\x3c\x67\x7e\x6a\x59\x7a\x78\xf1\xb3\x51\xdb\xc8\x96\x11\x65\xde\x2d\xd0\x3f\x0f\x31\xd3\xac\xa4\x39\xd4\x29\xe4\xf4\xcf\xd9\x76\x8b\xa2\x9c\xc4\xbd\xd3\x03\x11\x87\x2a\xe8\x7d\xa0\xf8\x4e\xa4\x74\xaa\x80\xce\x7f\x9e\xfe\x27\x6e\xc2\xea\x76\xc9\x0c\x0b\x0e\x83\x32\x08\xd5\xe6\x59\x21\xf0\x26\xd5\xdb\x9d\x4e\x81\x4e\x75\x4e\x20\x3f\xf7\xf4\x3a\xc9\xa8\x22\xb3\x66\x69\xfa\x30\xb3\x69\x59\xbd\x65\x5a\xa3\x9d\x7f\x23\x0d\xe2\x37\xbc\x6c\x7c\x6b\x31\x35\x7e\x9b\x2f\xf1\x65\x63\xdc\x64\x85\x9f\x4b\x2c\x94\x74\x73\x6a\x77\x5e\xbe\x76\x5d\xc0\x9f\x6f\x8d\x01\xcb\x98\x35\x5a\x43\x1c\x26\xe3\x60\x53\xeb\xd9\x52\xfe\x8b\xaf\x35\x94\x8e\x0a\xd1\xf9\x3b\x93\x3a\xbc\x5b\xd9\x62\x32\xd7\x18\x47\x10\xd8\xca\x65\x6a\xb8\x8b\x03\xa2\xed\x54\x96\x9d\x84\x6c\x01\x0a\x6d\x98\xf0\x90\xa5\x2c\xe3\x2c\xd0\xaa\xb1\x81\x77\x2b\x0d\x0a\xc3\x59\xe5\x07\xe5\xdc\x80\xce\x2d\xaf\xaa\x56\x4f\x85\x1d\x02\xf3\x1e\xd9\xb7\xda\xf2\x71\xaf\x76\x18\x47\x8a\x15\x57\x35\x96\xc0\x92\xd9\x89\x30\x90\x19\x67\x88\xf0\x93\x09\x53\xb0\x5d\xb1\x46\xca\x1d\x67\x46\x72\xfc\x8b\xf3\x34\x87\x54\x30\x19\x4d\xf8\xc7\xb3\xca\x3b\x33\x7e\x0f\xe9\x03\xee\x02\x32\x97\xec\x7f\x25\x2e\x9b\xe9\xc7\x72\xa0\x8f\x6f\x30\x81\xed\x6f\x38\x2c\x55\xbd\x97\xcd\x2d\x7a\x7d\xd4\x7e\xe4\xc9\x63\x99\x9e\xc0\xfd\x05\x13\xb6\x79\x1b\x5a\x98\x43\x13\x63\xb1\x9a\xb2\xb6\x39\x36\x01\xd7\xcd\x6f\xbf\x21\x41\x6d\x0f\x4b\xe1\x2a\x7e\xc8\x16\x0e\x9c\xcb\x9f\xca\x75\x33\xce\xa9\x2c\x36\xaa\x19\xed\x66\x5c\xfa\x39\x06\x12\x9c\x9b\x88\xb1\x0d\x32\x58\x30\x41\xda\x5d\xb0\xaa\xc2\xd2\x29\xbb\x24\x83\xd9\xa2\xea\xcc\xcc\x10\x94\xec\xc3\x4b\xa6\x58\xad\x4f\x72\xaf\x70\x02\x97\xae\x54\xbc\x4e\x82\xeb\x75\x5b\x3a\xf7\x0b\xc4\x0c\x66\xf8\xc9\x72\x99\x5f\xfa\x45\x60\xba\x69\x34\x0e\x12\x90\x49\x97\xba\xc4\x05\x3e\xdb\x9f\x3a\x0f\xab\x58\x2e\x89\x74\x70\x93\x4a\x22\xb2\x87\x38\x9b\x4c\x2a\xc6\x05\x6c\xfd\x8a\xfb\xfd\xe6\x78\x4a\x5b\x28\xb0\xfe\x01\x8f\x7d\x79\x95\x4c\x8a\xd8\x22\x8b\xe0\x2d\xd1\xf5\xda\x87\x81\xf9\x13\x0d\x80\x0a\x59\xe6\x01\x80\x3a\x46\x44\x12\xfb\x85\x69\x82\x52\x4e\x12\x8d\x9e\x46\xd0\x01\xa4\x9d\xe2\x74\xc6\xc1\xb4\x09\xe6\xb2\xd7\x42\x5c\x9f\xcd\xbd\x53\x68\x96\x15\x2f\x9c\xbf\xc9\x46\xfa\xe3\x84\xcf\x87\x8e\x51\x90\x1b\x73\xbb\x9c\xed\xbc\x0c\xff\x9e\xf4\xce\x14\x97\x9d\x74\x6d\x6e\x5e\x22\x69\xd6\x2f\xf8\x69\x32\x9d\xf5\xf6\x45\x09\x9c\x55\x6b\xa9\xb8\xd9\xd4\x4e\xc1\xf3\xdf\xcd\x7f\xfc\xed\xf2\xfd\x8f\xbf\x5d\x3e\xf9\xee\xfd\x5f\xff\xf6\x24\x03\x32\xed\x9d\x77\xb1\x41\x37\xdb\xa3\x11\xdb\x09\xcf\x56\xd4\xd2\x65\xfb\xb1\x79\xa4\x7d\xe8\xe9\x1d\x9d\xeb\x37\xf6\x8b\xd3\xf6\x74\xf3\x1b\x54\x7c\x35\x70\xfe\x24\xf9\xcc\x95\xee\xce\xd3\x63\x49\x19\xd7\x49\xa6\x5e\x7b\x37\x95\xb2\x66\x5c\x5c\xe2\x96\xb9\x4b\xd6\x2b\xb6\x3e\x81\xfb\x3f\xff\xf6\xe2\x8f\x47\x8b\x10\x10\xdf\x93\xe2\x3c\x7a\xf3\xf8\xf1\xa3\xc5\xe5\xe3\xc7\x8f\xc8\x3b\x3c\xba\xdf\x07\xb5\x61\x7a\x93\x30\xfe\x97\xf4\xe3\xfc\xd7\x67\x67\x8b\x27\xdf\xfd\xed\xfd\xd7\xf0\xfe\x4c\x6b\x54\xa6\xad\xb0\xb8\xc9\x35\x8a\xb9\xef\xfb\xfc\xf3\xbc\xee\x93\x18\xcb\x18\x67\x0b\x91\xb1\x50\xb8\x10\x43\x99\x03\xc9\x84\x77\x43\x45\x9f\xb8\x60\x08\xfd\x5e\x94\x8d\x44\x4b\xac\xa4\x58\x6b\x30\xb2\xa7\x09\x9d\x16\x47\xdf\x7e\xfd\xa7\xb7\x89\xf9\xbe\xeb\x1d\xe5\x87\x1f\x60\xcb\x04\x2f\x26\xf7\xaf\x22\x52\x7f\x0a\x97\xcc\x37\x2a\xb4\xf9\xb2\xb9\xdf\xfb\xd3\x31\x82\x7a\xb4\x84\x11\xf4\xb7\x29\xc5\xef\xee\x8d\xb0\xc2\x13\xf1\x20\x7d\xae\x92\x25\xc4\x01\x9d\x25\x2f\xb6\x76\xe6\xa3\x77\x1c\xa9\xf7\xea\x23\xbd\xc4\xae\x29\x26\xf3\x79\x6e\xb8\x2d\xcf\x79\xdd\x35\x55\xda\xfa\xc9\x6c\x6b\x3a\xb8\x38\x74\x6e\x12\x7b\xea\xab\x42\x20\x45\xe0\x6d\xbf\x3f\xdf\xeb\x7d\x06\x36\xe4\xd3\x55\x09\x37\x0e\xe8\xd1\xa7\xe4\x90\x26\xe4\x23\x38\xb6\x45\x8c\xb7\x23\xb3\x5f\xf6\x68\x03\x03\x60\x81\x82\xc3\x6e\x09\x12\x0a\xda\xab\x82\x88\x74\x80\x47\xf6\xcd\x00\x79\x4a\x59\xba\xbb\xa4\x38\x14\x18\xd4\x6f\xc9\x8a\x0f\x63\x14\xdd\xa9\x21\xe1\x56\x89\xfe\x3f\xdd\x93\x8c\x0d\xeb\x74\x2b\x80\x6e\x46\x96\x8d\xda\x1b\x54\x2b\x56\xf8\x38\xe0\x1e\x5d\x85\x5b\x07\x57\x5e\x70\x19\x5f\x16\x50\xbd\xc2\x94\xe9\x56\xd0\x0a\xd7\x4d\xc5\x14\xb0\xc6\xc8\xda\x55\x4e\x7e\x34\xd5\xcf\xbc\xd2\x22\x37\xf2\x9a\x8e\xe0\xf8\x3c\x5f\xbb\x19\x5a\x97\x3a\xb5\xef\x08\xae\xe9\x8c\x76\xe2\xf7\xba\x7d\x14\x64\x36\xca\x3e\xe2\x62\xc9\x4b\x84\xf1\x0a\x86\xc7\xc3\x59\x38\x2f\xda\xe3\x7c\x1e\xcd\xd8\x5c\x42\x6e\xb3\xf1\x43\x6a\x82\x13\xf8\x5f\xbb\x76\xbc\x53\x6a\x98\x32\x2e\x2d\x9b\x0c\x3c\x7f\x49\xe6\xef\xfa\x3b\xe5\xd6\x6f\x1c\xae\x6b\x68\xd1\x4a\xaa\x02\x2f\xbb\x2b\x3b\x35\xae\x9d\xd3\x6f\xd9\xb2\x55\xf2\x86\x97\x7e\x06\x25\x3c\xe7\x30\x32\xd4\x22\x46\x76\x8b\x11\x97\x0c\xe9\x59\x04\x6a\x07\x9a\xfd\xb4\x87\x1b\x5f\x40\xf7\x64\x80\xe4\x6d\x4b\x17\x31\xf0\x12\x28\x93\x8d\xa5\xe9\x64\x40\x30\x59\x32\xee\x26\x3c\xb4\x1f\xf1\x18\xac\x91\x3a\xb5\x79\xa7\x8a\xe4\xba\x1d\x93\x0e\x63\xc1\x2e\x57\xa9\x76\x9e\x30\xbe\xac\x30\x34\x38\xa3\xce\x65\x60\x82\xfa\xcd\xfc\x3b\x38\x0b\x48\xa1\x36\x8a\x17\x3e\x60\x12\x9d\x76\x14\x5b\x06\x1b\xca\x5e\x94\xfe\xd9\xea\x36\x7c\x21\xfb\xf7\x47\x5e\x84\x39\xbc\xe0\x4c\x52\x78\xed\xbf\x07\xfb\x79\x96\xf7\x52\xac\xf8\xda\xf6\x5d\xdc\x5b\x50\x6f\x83\xfd\x26\xc2\x83\x38\xdd\xa3\x07\xab\x22\xfb\xd0\xea\xc5\xd5\x4f\x27\x4e\x20\x41\x0e\xbe\xe2\xf3\xf6\x6e\xe4\xf6\x51\x85\x37\x58\xb5\x42\x48\x5e\x2c\x36\x5b\x29\x32\x78\xf9\x63\x43\x3b\xa7\xee\xcd\x1c\xdc\x0b\x81\x97\x76\xac\x7e\x94\x9e\xc5\xd9\xef\x57\x17\x2f\x9e\x9f\x58\x2a\x5c\x52\xc1\x35\xa0\x62\x1a\x75\x32\x56\xd3\x79\x66\x74\xbc\x55\x78\xc3\x65\xa3\xd3\xee\xc9\x37\x99\xfd\xe7\x3d\xfe\xbc\x2d\xe9\xba\x25\xf5\xb8\xef\x6f\xbd\xfd\xc0\x34\xf6\xd0\x6d\xdc\xe0\x38\x76\xfb\x58\xaa\x7d\xe2\x77\xc0\xec\x95\x2b\x15\x5d\xab\x34\x36\xcd\x28\x52\xf0\x82\x6f\x99\xf5\x0a\x99\x6d\xa6\x28\xdb\xc7\x2c\x21\x34\xa6\x53\xca\x23\x23\x80\x70\x48\x24\xf5\x7a\xdf\x4e\x66\xf4\x2c\x22\xe7\x4b\xfa\x29\xbf\xab\x1c\xa0\x2c\x34\x3d\xee\x4d\x87\x67\x7b\xc6\x33\xe0\xb6\x5b\x92\x25\xcd\xfd\x9f\x1e\xdc\xfe\x54\xd0\x1d\xbd\x81\x83\x13\x83\x0e\x4f\x87\x6e\x2a\xfd\xb0\xef\x93\xa7\xbd\x61\xdf\xd1\x86\x8f\x91\x5b\x9d\x46\x85\x5e\xde\xee\x9a\x3f\xa1\xbf\x19\x3b\x40\x05\xe9\xd5\x77\xc7\x7f\xcd\x9b\x3d\x35\xfb\x17\xd5\x5d\xbb\xf8\x88\x26\x28\xeb\x86\xe9\x76\x10\xcc\xcf\x59\xcc\x0f\x8b\xab\xdf\xd0\x6f\x71\xe7\x09\xb3\x89\x76\xe6\x3c\xb4\x5d\xc2\x3d\x74\x1c\x7e\x5c\xe2\x4a\x2a\x04\x6e\xec\x03\xef\xa5\x6d\x23\x6c\xb7\xfd\x96\xdd\x38\xb6\xcc\x15\xd8\xa7\x9e\x63\xdc\xfe\x99\x32\x01\xfb\xa7\x02\xe4\x36\xe9\xcd\xda\x76\x10\x2a\x2e\xcb\x5c\x36\x1b\xd9\x54\x65\x64\x7d\x43\x89\x97\xef\x2c\x6f\x95\x34\xb2\x90\x15\x6c\x58\x65\xb4\x1b\x4e\x44\x2c\xb5\x1f\xec\x57\xa8\x71\x78\x8a\x63\x30\x1f\x39\xdc\xd1\x75\x4f\x07\xdd\xfb\x1e\x37\xd7\xca\x60\x29\x65\x85\x4c\x80\x41\xe7\xb9\x79\xda\x88\xb6\x13\xb0\xe1\x6f\x36\xf4\xb4\xee\x26\xe9\x8f\xf5\x72\x93\xec\x51\x81\xba\xd0\xaf\x23\x9c\xc9\xfb\x4e\xb3\x7a\xea\xde\xac\x26\x87\xf3\x21\xf8\x6e\xb3\xbf\xd7\x4e\x11\x7c\xcd\xe9\xe2\x2b\xab\xf0\xdc\xd6\x3f\x85\xb2\xa1\xfe\xba\x9b\xab\x65\xe9\x9f\xef\x65\x15\xa9\xa9\x79\x20\x64\x6b\xfe\x49\x70\x82\xa6\xa4\xd4\x46\xee\x74\x07\x87\x83\xd3\x66\x81\x17\x06\x0a\xab\x45\x09\x40\xb6\x66\x7e\x46\x65\x1f\x67\x43\x3b\xfc\x1b\xd9\x3a\xd8\x7c\xde\xcf\xd7\xf0\xbe\x3e\x0e\xd6\x04\xb7\x61\xa9\x5c\x35\x55\xb5\xeb\xf9\x90\x76\x76\x79\xe4\xaa\x24\x1e\x2b\x6b\x50\x8e\x1f\x2a\xb1\xc0\x6f\x68\xb5\xf8\x79\xd9\x83\x3b\x2d\x81\x31\x9f\xff\xc3\xde\x48\xaf\xec\xbd\x48\x54\x65\xc8\xdc\x02\xc3\x66\xdd\x8d\x45\xda\x77\x74\x0a\xb7\x73\x2d\x5b\xfb\xbc\x2f\x5b\xce\x57\xfb\xa2\xae\x97\xf6\xf8\x70\x6b\xdb\x7a\xe8\xcf\x5d\x9e\xbf\xbb\x97\x4c\xbe\xdc\xeb\x4f\xf5\x0c\x46\x34\x0f\xb8\xf5\x52\x89\x96\xb9\x09\xd9\xaa\x8a\x57\xca\xe3\x7f\x37\x65\xfc\x0f\x25\x64\x1a\x95\xfc\x31\x0f\x8a\x30\x31\x71\xec\x9b\x46\x3a\x61\xa4\xc7\xd4\xdf\xbe\xe8\xe7\x2b\xb8\x45\xc7\xef\xf8\xc7\x24\xc2\x5f\x45\x69\xb3\x5d\xfb\x37\x75\x3c\xb8\x3d\x2a\x3f\x10\x06\x3b\xa6\xdb\xc9\x27\x47\xd2\xd6\xde\x43\xad\x20\xb9\x6c\xfe\xff\xf4\x0e\x71\xe7\xb1\xa3\x2b\xc3\xce\xe2\x98\x51\x7b\x46\xd9\xfb\xbf\x34\x50\x59\x96\x76\x1f\xb7\xc3\x29\x1c\x6b\xf7\xf1\x78\x15\x2b\x94\x57\x0b\xbb\x2e\xdf\xda\x7d\xe5\x3e\xb6\xd5\x75\x0e\xf2\xbd\xfd\x90\xd8\x66\x32\xf9\xca\x24\xf3\x7f\xfb\x2e\xff\x2a\x75\x90\xf9\x1b\xc4\xd8\x5d\x5a\x44\x1f\xf0\xf9\x4b\x87\x04\xff\x17\x1b\xe6\x9e\xe4\xb9\x66\x37\x38\x89\xb5\xa5\x3d\xef\x64\x3a\x03\x23\x4f\x86\x39\x15\x7a\x10\x5f\xfe\x2f\x00\x00\xff\xff\x96\xab\xef\xfe\x0e\x4a\x00\x00" func epochsFlowclusterqcCdcBytes() ([]byte, error) { return bindataRead( @@ -298,7 +298,7 @@ func epochsFlowclusterqcCdc() (*asset, error) { } info := bindataFileInfo{name: "epochs/FlowClusterQC.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc0, 0x1a, 0xc0, 0x26, 0x3d, 0xce, 0x73, 0x95, 0xdf, 0xd6, 0xb5, 0x3f, 0x1e, 0xc3, 0x27, 0xe9, 0xd8, 0xcc, 0xb1, 0x10, 0x37, 0x11, 0xf8, 0xc1, 0x82, 0x9c, 0xb9, 0x3, 0xdb, 0xe, 0x29, 0x75}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3, 0xed, 0x4b, 0xbc, 0xac, 0xf5, 0xff, 0x86, 0xac, 0xe5, 0x52, 0xc4, 0x45, 0x2, 0xcd, 0xa8, 0x4c, 0xc2, 0x42, 0x10, 0xe3, 0xed, 0xc7, 0xe, 0xf, 0x12, 0xcd, 0xa0, 0xcb, 0xb2, 0x4f, 0xf7}} return a, nil } @@ -322,7 +322,7 @@ func epochsFlowdkgCdc() (*asset, error) { return a, nil } -var _epochsFlowepochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x7d\x5b\x73\x1b\x37\xd2\xe8\xbb\x7f\x05\xe2\x87\x84\xdc\x50\x94\x2f\xa7\xb6\xb6\x54\x96\x73\x64\x49\x76\x5c\x5e\x5f\x62\x29\xc9\xa9\x4a\xa5\x6c\x70\x06\x14\xb1\x1a\x0e\x18\x00\x23\x9a\xb1\xfd\xdf\x4f\xa1\x71\xbf\xcc\x90\x94\x9d\xdd\xfd\x3e\xbe\xd8\x22\x81\x46\x03\x68\x34\xba\x1b\x7d\xa1\xcb\x15\xe3\x12\x3d\xed\xda\x2b\x3a\x6b\xc8\x25\xbb\x26\x2d\x9a\x73\xb6\x44\x77\xa3\xef\xee\xde\xb1\x2d\x1b\xb6\x8e\x5a\xd9\xbf\xa3\x16\xcf\xcf\x2e\xf1\xac\x21\x17\x12\x5f\xd3\xf6\x2a\x68\x1a\xff\x10\xf5\x39\x6d\x3a\x21\x09\xff\xe9\x34\x68\xee\xbe\x8b\x5a\x9e\xbd\x78\x16\xb4\x39\x7b\xf1\x2c\xfa\xf5\x29\x21\x22\xf8\x59\xfd\x79\xf7\xce\x9d\xc3\x43\x74\xb9\x20\x48\xb2\xd5\x41\x43\x6e\x48\x83\xc4\x12\x73\x89\x2a\xd6\x4a\x8e\x2b\x89\x96\xb8\xc5\x57\x0a\x57\xb9\x20\xa8\xa1\x73\x52\x6d\xaa\x86\x20\x36\x47\x64\xc5\xaa\x85\x98\xa2\xe7\x2d\x80\x9f\x28\x50\xfa\x3b\x84\x39\x81\xf6\x62\x89\x9b\x86\x08\x89\xba\x96\x4a\xd5\x47\xd2\x25\x41\xeb\x05\x31\xbf\xd3\x9a\xb4\x92\xca\x0d\x92\x6a\xf2\x68\x04\x7d\x88\x6a\xa9\x80\xb5\x44\xae\x19\xbf\x46\x6c\x45\x38\x96\x8c\x8b\x31\xa2\x02\x09\x89\x25\xad\xa6\xe8\xb5\xfd\x16\x2d\xf1\x06\xb1\xb6\xd9\xa0\x86\xe0\x1b\x82\x18\x47\xff\x62\xb4\x85\x01\x0c\x08\x05\x0d\x4b\x8d\x1d\x9a\xb1\xae\xad\x31\xa7\x44\xa4\x40\x66\x04\x91\x7f\x91\x4a\x92\x1a\xd5\x1d\x57\x93\xc6\xad\xe9\x34\x67\x1c\xdd\x60\x4e\x59\x27\x14\xb0\x25\x15\x35\x59\x12\xdc\xb2\x8e\x8b\x09\x9a\x75\x52\x0d\xb7\x41\x9c\x2c\x31\x6d\x91\x19\x3d\x99\x5e\xd7\x4a\xda\xc0\x0f\x1a\x26\x69\x6b\x31\xbd\x73\x78\xa8\x00\x9e\xfb\x85\x13\xab\x86\x4a\x44\x5b\xc9\xd0\x43\xb4\x5a\x60\x41\xc4\x91\x6a\xf2\xe9\xf8\xd6\x1f\xe8\x8e\xce\xdf\xbc\x3e\xfd\x11\xbd\x42\xdb\x3f\x9f\x5c\xe3\xef\xef\xa3\xe9\x74\x0a\xfd\x0f\xd4\x07\x59\xd2\x85\xbf\x3e\x1d\xa0\x0b\x22\xbb\x15\x52\xff\x3b\x65\xcb\x25\x95\x6a\xf1\x0e\x3e\x7d\x72\xbd\xbe\x08\x69\x05\xe1\xfe\x18\xa1\x8b\xcb\x93\x17\xcf\x5f\x3d\x43\x6f\x7e\x3c\xb9\x38\x57\x5f\xbe\x62\x35\xf1\x74\x01\xcb\x06\x4b\x2c\x19\x12\xdd\x6c\x49\xa5\x22\x13\xc0\x93\x93\x3f\x3a\x22\xa4\x80\x1d\x54\x6b\xff\xea\xfc\xff\x5d\x9a\x0d\xd0\x9b\xac\xe0\xc9\x05\x15\x7a\xad\xa7\xe8\x44\xea\x3d\x6a\x6b\xa0\x58\xf7\xcb\x04\xbe\x86\x8d\x4a\x0f\x09\x27\x82\x35\x37\x44\xa8\x16\x0a\x1c\xeb\xa4\x90\xb8\xad\x15\x02\x19\x22\xb8\xad\x51\x4d\x24\xe1\x4b\xda\xea\x2e\x29\xa1\x58\x54\x5b\xf2\x41\xba\x53\x35\x85\x73\x5a\x1c\x9e\x2c\xa9\x14\x1e\x3b\xbd\x25\x82\xf0\x1b\x5a\x11\x44\x6e\x48\xab\xdb\x62\xda\xba\xe9\x0e\x8e\xa9\x07\x9c\xa0\xf5\x82\x56\x0b\x44\x5b\x2a\x29\x96\x06\x55\xc9\x71\x2b\xa8\xa4\xac\x55\x8b\x6d\xe6\xab\xb1\xd2\xe3\xbe\x81\x55\x34\x9b\xf7\x60\x8c\x2e\xce\x2f\x7f\x7e\xe3\x77\xee\xd7\x05\x69\x83\x45\x45\x33\x72\x45\x5b\x0d\x7a\x85\xb9\xa4\x15\x5d\xe1\x56\x0a\xe4\x0e\xb0\x45\x47\x9f\x0d\x22\xa7\xe8\x4c\x9f\x4d\x05\x44\x41\xf4\x9b\x23\x12\x18\x2b\x4e\x56\xaa\x57\x3e\x37\xe0\x5a\xba\x6d\xd7\x60\x3e\x41\x15\x6b\x1a\x52\xa9\x69\x01\xe7\x61\x35\x11\x96\x92\x6e\x98\x9a\xbb\x81\x41\x39\xaa\x34\xef\xfd\x4e\x20\xce\x98\x44\x7f\x74\x8c\x77\x4b\x54\x11\x2e\xe9\x9c\x56\x58\x12\xd8\xe1\x8a\xb5\x82\xb4\x42\xb3\x0b\x0d\x8f\x77\x7a\x4e\x35\x15\x92\xd3\x59\xa7\x8e\xca\x35\xd9\xa0\x2b\xd2\x2a\x42\x56\x4b\xba\xe2\x4c\xb2\x8a\x35\x68\x74\xf6\xe2\xd9\x18\xc8\x99\x48\xd4\xad\xa0\x1f\xc7\x6d\xcd\x96\x0a\xde\x8c\xe0\x8a\xb5\x53\xbb\x98\x30\x71\x98\x2b\x40\xd1\xe7\xa1\x62\xcb\x55\x43\xe4\x10\xd9\x3a\xba\x71\x7b\xa8\xcf\x70\x2f\xed\x00\x28\xb5\x6a\x73\x5c\x49\xa1\x8f\x87\xe6\xd8\x2b\xce\x2a\x22\x84\xa1\x19\x05\x6f\x0b\xd9\x18\x8c\xcc\x80\x11\xd1\x3c\x1c\xa3\xd3\xd7\x2f\x5f\x3e\xbf\xbc\x3c\x3f\xdb\x46\x38\x93\x90\xcd\xab\xeb\x61\xde\x35\xcd\xc6\xee\x7c\x0d\x83\x65\x43\x27\xe7\xea\x04\xcd\x31\x6d\x3a\x0e\xec\x83\xb4\x92\xf0\x78\x9c\x39\xe3\xe1\x04\x60\x1d\x58\x42\x50\x7a\xc6\x35\xec\xbf\x9a\x31\x96\xbb\x90\xb4\x1a\x57\x23\x69\x77\xcb\x2d\x68\xb7\x02\xda\x56\xcb\x5a\x77\x9c\xb8\xc3\x28\x10\x46\x15\xa7\x92\x56\xb8\x71\x78\x2b\x82\x5b\xd3\xa6\x41\x15\xee\x84\x86\x51\x2d\xd4\x45\x24\x19\x5a\xe0\x46\x4e\xef\xdc\xc1\x95\xda\x9f\x11\x6e\x9a\xb1\x27\x00\x75\x6f\xeb\x7d\xf8\x78\xe7\x8e\x62\xfc\x61\x2b\xd2\x76\x4b\xbd\x4b\xb0\x3b\x47\xe8\xe7\xe7\xad\xfc\x07\xfa\x78\xc7\xde\x12\x11\x48\xb5\x54\x86\x4d\x9f\xfc\x7c\x7a\xf9\xfc\xf5\xab\xfe\x76\x70\xb7\x00\x5f\xd8\xd2\x46\x93\x01\x34\xfa\xdc\x83\xa0\xba\x09\xde\xb2\x66\x17\xf4\x5e\xbd\x7e\x75\xde\xff\xeb\xa9\xe6\x00\x8c\x0f\x35\xb1\x67\xba\x1f\xed\x0f\xa4\xea\x80\x8d\xf4\x36\xf9\x85\x70\xcd\x28\x06\x5b\x9d\xc0\x17\xe1\xd4\x0f\x8d\xa8\x66\x98\xad\x54\x47\x39\x3e\xa8\x54\xc0\x91\x56\x7c\x65\x6d\x38\x83\xdf\x6b\x4f\xc0\xc2\x81\x93\x0c\x61\xd4\x92\xb5\x21\x47\x43\xa0\xf6\xc6\xc2\x5d\xa5\x99\x92\x3e\x9c\xd9\xf2\xc3\x98\xfa\xc6\x01\x64\x46\x77\xdc\x74\x2c\xae\x15\xeb\xe0\x3c\x59\x0e\x5c\x75\x9c\xab\x5e\x7a\x3c\x38\x26\x54\xe8\xa3\x0c\x77\x93\xed\x6f\xfa\xe9\x4d\xfd\xfb\xff\x99\xe4\x90\xe7\x94\x0b\x89\x6e\x28\x59\xa3\x11\x6d\x15\x4f\xa6\x37\x64\x6c\x59\x52\x34\xce\xd4\x75\x86\x4e\xbf\x50\xb2\x1e\x00\xdc\xe0\x5d\xe1\x7e\x27\xd2\xa5\xf2\x23\x99\x1f\x4e\xf4\xf7\xe7\x6d\xfd\xd5\x46\x0d\x67\xd3\xe2\x66\x08\x2e\x93\xb8\x41\x4f\xff\xf9\xfa\x57\x40\x87\xd4\x68\xb6\x41\xb8\x69\xcc\x75\xa4\xe5\x90\x86\x5c\x69\x19\xaa\xb8\x45\x7e\x30\xa9\x80\x5d\x00\x98\x23\xf4\xf3\x53\xfa\xa1\x67\x38\xd1\xad\x56\xcd\x46\x61\xae\x46\x82\xc1\x8b\x90\xa3\xae\xcf\xd5\x94\x6b\x73\x55\x70\xb2\xc6\xbc\x36\x4c\x14\xb8\xda\x4c\x31\x52\x5a\x3b\x40\x2b\x4e\x6e\x94\x24\x9e\x40\x02\x14\x15\x4b\xbb\x00\x1c\xfa\xd0\x04\x6d\x47\xa1\xda\x3f\x10\xeb\x24\xc2\x89\x18\x38\xbc\x32\x6f\x35\x2c\x3f\xa6\xfa\x65\x5c\x3c\xb8\x05\xe9\x2c\x3d\xb8\xeb\xfe\x0b\x13\xba\x3b\xb0\x46\x64\x7d\xee\x2e\x69\xbd\x84\x40\x19\xf4\x4f\x52\xf7\x49\x79\xdd\xaa\x62\x4b\x45\xb8\xc1\x5c\xfa\xce\xb6\x1a\x70\x87\xa3\x9d\x80\x44\x2f\x3b\x21\xd5\x82\xb2\x96\xa0\x2b\x4e\xb0\xbe\x56\x31\xb0\x98\x08\xd8\x20\x8f\x98\xee\xc8\x12\x9e\xef\x32\x4f\xb4\xa6\x72\xe1\x4e\x00\xa2\xed\x9c\xf1\x25\x8e\x0f\x6e\x48\x8e\x47\xd1\xb7\xaa\xcf\xf3\xb3\x89\x3b\xf3\xd7\x64\x33\xb1\x92\x47\xe9\x6f\x5c\xd7\x1c\x44\x22\xce\x1a\x32\x89\x40\x59\x10\x01\x06\x13\xb4\x26\xf4\x6a\x21\x27\x70\x2e\x97\x8c\x13\x8f\x13\x8c\xdc\xce\xd9\x11\xfa\x2d\xb7\x15\x4c\x5f\x99\x5f\x7f\xdf\x9b\x4b\x96\xa8\xe0\xab\xb0\xc9\x7e\xc0\x5b\x38\x96\xda\x7e\x2d\x5e\x23\x2c\x04\xbd\x6a\x97\x8a\x12\xfa\x48\xec\x1c\x2b\x2d\xba\x21\xd0\xc8\x5c\x5e\x0d\x15\x32\x82\xc9\xc9\x8a\x13\x41\x94\x00\xa6\x48\xd1\x81\xd7\x32\xba\x3e\x33\x8a\x24\x40\x34\x53\x64\xf1\xfc\x4c\x98\xc1\x8d\xfc\xb8\xc0\x31\x44\x03\x62\xa2\xc9\x49\x2b\x05\x7a\xf3\x34\x53\x05\x85\x21\xa0\x5b\x23\x57\x18\x9b\x8d\x30\xbb\xe8\x4c\x38\x53\xf3\xbf\xd2\xfe\x09\xd6\xf1\x0a\xac\x2d\x5a\xf8\x6f\x89\x10\x5a\x2b\x50\xb8\xa9\xe9\x12\x5c\x13\x8e\x04\x31\xda\x0b\xc2\xcd\x15\xe3\x54\x2e\x96\x80\x5d\x04\x70\xe8\xf0\xab\x8f\x1e\xe2\x02\x86\x3c\x42\x17\x52\x69\x59\x05\x9c\x6a\x82\xeb\x06\x54\x57\x36\x47\x44\x6d\x81\x16\x94\xcd\x06\x9c\xbd\x78\xe6\xd5\x18\xc9\x14\x0b\xb0\xc2\x6d\x6d\xdb\x58\x0c\x22\xd8\x81\xee\x6a\xd8\xda\x99\x1b\x49\xdb\x45\x48\x45\xe7\xd4\x40\x21\x7c\x09\x08\x60\xaf\x69\x69\x72\x6c\xbb\xe5\x8c\xf0\xf8\x40\x83\xee\x80\x35\x6a\x5e\x22\x47\x6c\xa6\xd8\xb0\x02\x1f\x70\x4c\xb5\x83\x82\x60\x25\x97\xcf\x1a\x56\x5d\xeb\x5d\x06\xd0\x86\x8d\x45\xa0\x2d\x4b\x43\x57\xf4\x86\xb4\x6e\x71\x26\x88\x4a\x54\xe1\x16\x09\x3c\x27\xcd\xa6\x47\x09\x09\x45\x2b\xf5\x39\x7b\xf1\x0c\x64\xed\xfb\x4f\xf3\x83\x92\xb6\x79\xb0\x43\x9b\x87\x85\x36\xf9\x65\x88\xf9\x15\x91\xa8\xee\x8c\x0e\x5a\x26\x93\x89\x5a\x75\x41\x2a\xd6\xd6\x9e\xb6\x75\xd7\x33\xd3\x33\xc7\x23\x19\x42\xdd\xa5\x60\x01\xec\x1b\x22\xda\x62\x3d\xd8\xc1\x8a\x93\x8a\x0a\x85\xd8\xcf\x2d\xfd\x00\xfd\x93\xf1\xcf\xdb\xfa\x92\x2e\x89\x1d\xbe\xf7\xea\x2d\x2a\xb7\xc3\x57\x2f\x98\x4b\xdd\xe5\xeb\x40\x7a\x53\x97\xbf\x80\x03\x40\x60\x8c\x04\x68\x8a\xb1\x04\x9a\x79\xcf\xc4\x1d\xdc\x05\x56\xc2\x30\x69\xfd\x89\x19\xba\x99\xcd\x7c\xbe\xe0\x6e\x26\x7f\x74\xb8\xb1\x04\x69\x3b\xd1\xfc\x8a\x76\x02\x57\x70\x46\x01\x91\x5d\xaf\xe7\x4b\x90\xeb\x44\xd7\x48\x7b\x45\xfc\x74\x8a\xf0\xd5\x15\x57\xd2\xa7\x31\x7c\xa8\x39\x26\x3c\xdd\x32\xe8\x08\x56\xc8\xac\x03\x86\x8b\x38\xa9\x08\xbd\x21\x5a\x4c\xc4\x81\x75\xc7\x32\xec\x08\xca\x4f\xa7\x08\x4c\x74\x5a\xf0\x2d\x18\x71\x40\x2a\x04\xf6\x66\xaf\x0c\x63\xa7\x21\x22\x98\xb5\x65\xe2\xbd\x5c\xfd\xa7\xd3\x12\x5f\xd7\x6b\xa1\x76\x64\xd5\xcd\x1a\x5a\x29\xe1\x41\x78\x6a\x33\x3c\x54\x5b\x54\x48\x5b\xb1\x5a\x31\x26\xa1\xe4\x77\x10\xef\x1a\xb6\x3e\xb8\x62\xf1\xa5\xc4\x37\x2b\xc9\x50\x43\x67\x1c\xf3\x0d\x98\x45\x5a\xb4\x20\x1f\x0e\x4c\xf7\x98\x21\x3e\xe3\x4c\xb1\x59\x37\xb6\xa2\x5e\xe9\xe4\x05\xb3\xfc\x13\x34\x67\x4d\xc3\xd6\x5a\x71\x00\x9b\x61\x5b\xd3\x1b\x5a\x2b\xa2\x51\x08\x3b\x90\xf5\xf5\xd5\x9b\x6e\xf6\x82\x6c\xd4\x32\xe8\x8b\xe3\xf7\xf4\x18\x9e\xda\xcb\xd6\x1c\xf2\x0a\x2d\x89\xc4\x35\x96\x18\xe1\x19\x08\xdc\xe1\x96\xc5\xe7\xe2\xa4\x69\xd0\x82\x0a\xc9\x38\x98\x3d\xb4\x30\xe7\xba\xc3\xa3\x00\xe3\xea\x34\x12\xbe\xc4\x2d\x69\x65\xb3\xc9\x0e\x8e\x90\xbc\xab\xcc\xc9\x79\x69\xbb\x7e\xcc\xb7\x46\x4b\xcc\x73\x1a\x1c\x9f\x58\xcd\x08\x81\x36\x44\xa6\x94\x5f\xb8\xc4\xd5\x65\xdd\x09\x43\x99\xd6\xda\x67\xac\x69\x7a\x2e\xc2\x49\xf5\xa5\x11\x14\x00\x7b\x21\x0f\xca\x78\xd6\x5e\x3d\x8c\xb0\x50\xda\x7a\x78\x29\x0c\x49\x77\xbb\x81\x24\xb1\x82\xbb\x15\x60\x66\x64\x18\x42\x56\xb5\x3b\xdf\x36\x40\x41\xa5\x53\x42\x83\x53\xe7\xb6\xef\xe5\x0d\xe6\x45\x5d\xae\x74\x7a\x55\x03\x84\x97\x6a\xe7\xd3\xc1\x24\xd3\x5c\x23\x38\x2b\x20\x56\x2a\x46\x45\xa5\x08\x54\xee\x5e\x2c\x34\xfc\x13\x0d\xbe\x2c\xf4\x1b\x1c\x9f\x70\x82\xaf\x6b\xb6\x6e\x7f\x4f\xb0\xe4\xb8\xba\x16\x88\xce\xdd\x8a\x2c\xf0\x0d\xd1\x77\x4b\xa0\x4a\x0f\xee\xab\xc7\x44\xbc\xc1\xb4\x3e\x42\x4f\x18\x6b\xf2\xc5\x60\xfc\x0a\xb7\xf4\x4f\xcd\xc6\xd9\xdc\xcb\xbb\x5e\x9a\x86\xb7\x2c\xc3\x2a\x63\x5e\xee\xde\x41\xb4\x6d\x02\x71\xd6\xb5\x35\xe2\x6c\xa6\xee\x7f\xc6\xe1\x94\x38\x89\x76\xe0\x04\xee\x2a\x62\xe7\xe8\xff\xa4\x39\xff\xa9\xe7\xfc\x01\x1f\xf6\x4f\xaf\xd6\x8c\xd6\xbb\x52\x3b\xdd\x04\xf9\xf0\x21\xfb\xc7\x42\xb0\x8a\x62\x10\x45\x8c\x66\x81\xce\x82\xb7\x82\x17\x64\x83\x9e\xb9\xb7\x82\xe4\x82\x86\xcb\x42\x93\xa2\x17\x88\xf5\x15\xe9\x44\x5e\xa9\x38\x78\xe1\x1e\x08\x2e\x00\x38\xa7\xf6\xfa\xc5\x4a\xab\xaa\xc9\x87\x23\xd4\x90\xf6\x4a\x2e\xd0\x01\xba\xdf\xbb\x00\xf5\xf5\x55\x72\x01\xb8\xa6\xb4\xa5\x72\x94\x09\x08\x28\xfc\x84\x2c\x2e\xfd\x29\x65\x57\xc9\xef\x24\x35\xae\xa5\xbd\x0b\xfc\x23\x69\xd4\x6f\xc2\x71\x9f\x7d\xd4\xb8\xb8\xe3\x6e\x22\x42\xd4\x27\x5b\xcb\x71\x78\x53\xe9\xf5\x6a\xe6\x53\x2b\xb1\x1d\xdb\x3b\x28\x6f\x02\x77\xcf\x31\x2c\x6f\xe1\x47\xbb\xb2\xaa\x85\xfd\x7f\xde\xcc\x2c\x30\x3a\xb6\x4b\x5d\x84\x14\xac\xb2\x06\x17\x7c\x91\x77\x08\x57\x1c\x1d\x47\x1b\x90\x37\x8e\xf8\x21\x3a\x46\xbf\xfd\xde\xd7\x06\x38\x15\x3a\x46\x73\xdc\x08\x52\x5a\xb0\x64\x13\x61\xe9\x92\xef\x0a\xdd\xdc\x16\xaa\xf6\xee\x8f\xbc\xa1\xd9\x37\x74\x6c\x77\xd0\x35\xf9\x7c\x27\x3b\x38\x15\x6c\xda\x18\xcd\x3b\x25\xef\xaf\x36\xa3\xf1\x51\x26\x9d\x84\x23\x70\x22\x3b\xde\xc2\x40\xbb\x82\x15\x44\x5e\x06\x2b\x3b\x7a\x87\x5a\xb2\x4e\xe8\x7c\x9c\x0c\x53\xda\x1e\xdf\x6b\x8f\x91\xdf\x86\xbb\x36\x7a\x67\xee\x12\x77\x63\xed\x78\xaf\x15\xd1\x4b\x09\x22\x01\xbd\x37\x92\x40\x36\x0e\xc5\xe0\xba\x1b\x18\xdd\x92\x5a\xf0\xd7\x1e\xe3\xba\xa3\x2f\x46\x7f\x54\x43\x9c\xa1\x88\x41\x44\x90\x7f\x54\xfb\xec\xca\xd9\x8b\x67\xc0\xf4\x5f\x90\xcd\xe8\x3a\xe3\x31\x03\x14\x7d\x1d\x93\x33\x8a\x1f\xa6\x1c\xcd\xda\x37\x1d\xf0\x1b\x32\xe6\x94\x0a\xb7\x60\x06\x5a\xe0\xf6\xca\x2b\x13\x27\xf5\x92\xb6\x87\x87\x87\x7d\x92\xfa\x29\x6b\xe7\xf4\x2a\x40\xca\xde\x99\xda\xc2\xa3\x64\x0d\x25\x50\xc2\xbb\x2a\x6e\x91\x92\xda\xf9\x36\xf9\xae\xed\x96\x8a\x1f\x89\xe7\x2d\x9c\xb4\x5c\x9c\x0c\x3b\x98\x15\x7b\x15\xf7\x19\xbd\xd3\xc3\xda\xbe\xc5\x65\x4b\xc6\x41\xc7\xba\x4f\x69\x9f\x06\x66\xb5\xab\x9c\x1c\xcf\xec\x22\x7a\x7a\xda\x73\x8a\x71\xe7\x3d\xe7\x1a\x77\xbe\xe5\xa4\x41\x78\xae\xaf\xaf\xb4\x69\x65\x87\xf9\x5a\x63\xd7\x9e\x33\xb5\xdd\xf6\x9c\xa3\xed\xb6\xdf\xec\xbc\x50\x6c\xc5\x60\x37\xd5\xad\x04\x7b\x9a\x4b\x1e\x0a\xd3\xfb\x7f\xdf\x36\xd1\xac\xa3\xe2\xff\xdd\x32\x05\xd3\x37\xe1\xac\xbb\xba\x08\x7c\xf7\xde\x89\x6b\xd5\x43\x3b\xac\x48\xa2\x84\x48\xed\xba\x10\xbe\xed\xad\xf0\x46\x29\x65\xb4\xad\x38\xc1\x82\x08\x44\x6e\x08\xdf\x14\x5e\x06\x2f\x95\x8e\x72\x83\x9b\x8e\x00\x53\xe9\x1a\x49\x57\x0d\xf5\x4c\x04\x1e\x18\x65\xf8\xf2\x28\x19\xba\x22\x32\x30\xb1\xc2\x50\xbd\x0b\xac\x00\xe8\x9e\xcf\x0d\x32\x6f\x08\xaf\x48\x2b\xf1\x15\xc9\x35\xc0\xc2\x42\x0f\x01\x18\xbd\x43\xab\x0c\x5a\x71\xbd\x87\xa0\xa0\xe3\x00\x4a\x69\xd9\x41\xbe\xee\x61\x6d\x93\xad\x9c\x61\x32\x70\x96\x26\x83\x04\x38\xd9\x69\xf5\x76\x64\x90\xc9\x37\x7b\xf1\x99\xbe\x9f\x76\x3c\xc8\xf9\x97\x7b\x1d\x88\xed\x02\xe4\x96\xdd\x1d\xfa\xb9\xff\xca\xd5\xf7\x63\x68\xb5\x37\x5e\x15\x74\xa9\x24\x29\xd7\xee\xdc\x71\x19\xf0\x1e\xb2\x2f\x5b\x38\xb3\xca\x83\xc5\x9a\xc2\xed\x0d\xf6\x28\x34\x52\x6a\xa8\xb9\x87\x52\xcb\xef\x78\x1a\x19\xd8\xab\x08\x99\x9a\xcc\xf5\xb3\x0d\xe2\x64\x4e\x38\x69\x2b\x6b\xe8\xb2\x2a\x0b\x36\x83\x0a\x89\x97\x2b\xeb\xdc\x64\xba\x39\xc0\xb8\x69\xd0\xbc\x93\xe0\x99\x15\xe3\x2a\xa6\xe8\xf9\x1c\xbd\x37\xf6\x7f\x6d\x0c\x07\xc0\xef\x61\x8e\x6d\xf6\xb2\x20\x17\xa4\x75\x70\xc1\xeb\x2d\x99\x3c\x15\xe6\x05\x67\xb6\x39\xb2\x0d\x5d\x87\xe4\xa5\x01\xa4\xbe\xf9\xa5\x45\x1f\x7d\xef\x1f\x4f\xfe\x86\x46\x39\x52\x07\x9c\xcc\xcd\x7f\xc7\x11\xec\x3e\xfb\xe4\x25\x6c\x61\xaf\x00\xe4\x46\xb3\x0f\x70\xfd\x2f\x34\xa9\xa9\xa4\x4e\xde\x6a\x7a\x9f\x0e\x8c\x99\x2e\xd9\xbf\x5e\xb8\x7e\x86\xbd\x90\xdd\x52\x97\x41\xef\xff\xfa\x53\xc0\xc1\xed\x49\xd9\x50\x78\xca\x96\xab\x4e\x3a\x6a\x12\x6b\x2a\xab\x05\xbb\x21\x5c\x23\x36\xc3\x02\x5e\x6f\x10\x9b\xcf\x05\x91\xda\x0e\xe4\xd1\x34\x4b\x73\xe8\xbb\x4d\x7b\x2f\x86\x2b\x22\x2f\x43\x92\x79\xca\xb8\x95\x1e\x73\xfa\x70\xa2\x87\xfd\x4f\xbf\xe6\x37\x4d\x08\x4f\x0b\xe9\xc3\xd4\x67\xfb\x45\x24\x58\xba\x42\x52\xe2\x98\x14\xb6\x75\x52\x5c\xe6\x94\xc7\x27\x78\x1d\x3b\xba\x2b\xb4\xf2\x63\xe8\x73\x75\x5a\xb0\x65\x14\xe6\x1e\x9f\xc1\x7e\x36\xf9\x23\x6b\x6a\x2d\x8e\xbc\x77\xee\x8e\x53\x7d\xb4\xde\xdb\x43\xe7\xcc\x6d\x8e\x8d\xcd\x1a\xe2\x1e\x18\xc2\xa3\x6a\xed\x80\xd6\xf0\xe8\x9b\x5b\x0d\xe8\xc8\x30\xe6\x1d\x74\x23\x23\xc3\xc4\x5e\xb9\x9e\xfb\x69\xcd\xa9\x65\xb2\x4f\x79\x2a\x3c\xae\xe0\xf0\x9d\x84\x93\x8a\x71\xe7\xbe\xe4\xde\x4b\x80\xac\xcd\xcb\x64\xe0\x47\xe5\xf9\x2e\x18\xfd\xf4\x58\x9a\x6b\x6b\x41\xd6\x0f\xf7\x16\x08\x52\x14\xc0\xc2\x7c\xdc\x39\x8e\x5f\x71\x18\x47\x2d\x6d\x10\x9d\xeb\x4b\xa6\xfd\x4e\xa2\x39\xeb\xda\xda\xdf\x54\x30\xd8\xcb\xfc\x5d\x47\x69\x78\x5a\x8f\x85\x6f\xd4\xad\x29\xf4\xa3\xe5\x15\x67\x6b\xc5\xe6\x6b\x0a\x17\x3e\xe6\x1b\x07\xad\x66\x44\x20\xb5\x7a\x60\xfa\xd6\x9e\x08\x0d\xc3\xb5\xc2\x0b\xa4\x4d\x38\xf3\x91\x8f\x24\x15\xa6\x45\xc6\x9d\xcd\x99\x8e\xec\x33\xa3\x77\x7a\x82\xf9\x29\x8e\x9a\xfd\x10\x9c\x0d\x3a\x07\xba\xb1\x6b\x76\xe6\xb0\x06\x1b\x5d\x33\x9f\x9a\x69\x4e\xcd\x34\xa7\x33\xc6\x39\x5b\x3f\xfa\xf6\xa3\x86\x9d\x80\xfe\xfc\x78\xa4\x56\xfd\x48\xf7\xb5\x50\x2f\x74\xdf\x37\x58\x2e\xd2\x73\x99\x8c\xff\x96\xcc\xd1\x71\x01\x9b\xdf\xc2\x79\xfd\x9e\x9e\x6d\xcf\x91\x02\x38\x53\x6d\xc2\x8a\x5a\x7e\xbe\x93\xff\xcf\xf4\x6c\x69\x93\x1e\xd4\x0b\xac\x5d\x31\x96\xac\xd6\xd4\x13\x1b\xc3\xcc\x51\x35\x8f\xd5\xfe\xf1\x2f\x23\x8d\xd2\x0d\xeb\x8f\x2d\x48\xed\xf8\x86\xa4\x3b\xd9\x92\xb5\x3f\xc1\xd1\x8f\xe1\x1a\xae\x38\x29\xda\x63\xb4\xcb\x5a\xc8\x75\xd1\xf1\x31\xba\x87\x3e\x7d\x8a\x1a\x8f\x82\x51\x9c\xf5\xf6\xf1\x71\x3f\x90\x03\x74\x1f\x7d\xfb\x6d\x04\xa3\x04\xe2\x91\x01\xb1\xe2\x6c\xc5\x04\xa9\x43\x18\xa3\xf1\xf8\x28\xdb\xbf\xbb\xa7\x9a\xb1\xc0\x5a\x6f\xd2\x07\x55\x38\xc9\x36\x94\x6b\xae\x1d\xf7\x08\xb2\xc0\x4d\x6b\xc6\x9d\x6b\x7c\xe6\x92\x79\xb7\xb0\xf1\xb7\x25\x7d\xdc\xc9\xc5\xe8\x65\x27\xb1\x24\x63\xf4\x17\x9d\x83\xf2\x21\x28\xac\x74\xe9\x2c\x60\x21\x08\x78\x3f\xa7\x3f\xa8\xcf\x32\xdd\xaa\xe3\xe3\xd2\x0e\x4e\x7a\x3a\x0b\x01\x8a\x94\xdd\x2e\x45\xb8\x1e\x69\xb8\xb5\x96\x54\x2c\xb1\xac\x16\xde\xc9\xd1\x80\x14\x77\x33\x98\x7d\xa7\x33\x44\x74\xdb\xfc\x23\xf4\xfb\x6f\xdd\x40\x94\x9c\x28\x52\x79\x7e\x36\x29\xba\xd1\x66\x8c\x16\xde\xd2\xf2\x93\x10\xcb\x73\x6e\x04\x03\x4a\x3b\xa0\xb9\xa8\x0b\xa7\xec\x98\xd7\xae\x21\xf8\x46\xdd\xf5\xff\xf7\x23\x28\xc2\x09\x82\x15\x03\xf1\x01\x6e\xdf\xf7\x10\xf6\x05\xfe\x79\xee\xa6\xca\x86\x53\x54\x86\x55\xeb\x80\x18\x8f\x50\xf0\xc7\x2e\xc3\xfd\x48\x30\x97\x33\x82\xe5\xce\x43\x2e\x6c\x8f\xfd\x87\xed\x39\x61\xef\x83\x2b\x76\xcb\xe0\x85\xf3\xd7\x33\xf6\x5b\x3b\x1b\xfd\x6e\x09\x7a\x5b\x8d\xa5\xba\xdd\xbd\x9e\xe0\x6e\xe7\x39\x25\x8d\x51\x6d\xc2\x21\xdd\x92\xc0\xae\xf4\x04\x80\x28\xb6\xaf\x61\xc3\xb4\x40\xdd\xd7\x5c\xdf\xff\xdd\x27\xcc\xe6\x4c\x5f\x7d\xfc\xf6\x64\xe4\xa4\x0e\xb9\xff\x6b\x1a\x87\xc5\xe8\xd3\xac\x7d\xc4\xcc\x6c\xf5\xc4\x6c\xcc\x69\xc1\xea\x9b\x1f\x65\x3f\x3a\x15\xbf\xe0\x86\xd6\x30\x54\x64\x12\x18\x05\x18\x16\xe4\xd4\x5e\x7b\x4a\x99\x17\xed\x0c\xcc\x9a\x50\xca\x60\xa2\x05\x1f\x1f\xa1\xbb\xaf\xc8\xda\xc8\x7d\xf0\x15\x5a\x1a\xd7\xb4\xd4\x65\x1c\x89\x6e\xa9\x28\xc2\xad\x4c\x5b\x83\x9b\x94\x5e\x70\x30\xc5\xde\x4d\xd8\xdb\x9d\x3d\xf0\x2f\xd8\xf9\x63\x54\x87\x9e\x58\x62\x02\x33\xcb\x18\x90\x58\xf8\xcd\xff\x36\x22\x4b\xa6\xf7\x97\x12\xcf\xce\x60\xa0\x91\xa2\xae\x7d\x28\xab\x25\xeb\x7f\x0b\x75\x25\x4f\x2c\xc9\x02\xee\x41\x68\x76\xb1\x02\x4a\xf3\x7f\xff\x6f\xa3\xb3\xaf\xca\xcc\xa2\x95\xfa\x4f\xd0\x5a\x48\x67\x8a\xee\xfe\x2a\x5a\x73\x8f\x5c\xd1\x8c\xf7\xa0\xb1\xcc\x1c\xa9\xe9\x4c\xff\xff\x28\xb7\x56\x7e\x09\xb9\x9d\x7a\x85\xc8\x0d\x31\x0d\x2d\x50\x77\xdf\x26\xd6\x64\xbb\xcc\x46\x11\xf1\x91\xb5\xe9\x02\x96\x07\x4f\x35\x0e\xa5\xfb\x3f\xca\xa6\x64\x75\x8b\x43\xd3\xec\x70\x6e\x01\x44\x13\xdf\x71\x0c\x25\xc2\x8f\xdc\xf4\x26\x48\xb2\xdd\x21\x6f\xdd\xad\xbe\x47\x3f\xb2\x7e\xb5\xfd\xdd\xef\xbf\x8d\x33\xdc\x86\xec\xf3\xd9\xc7\x73\xdf\x63\x2d\x9f\xfe\xf3\xf5\xaf\x17\xfd\xef\x7a\xea\x40\x6d\x7d\xea\xfa\x6f\x5b\x52\x64\x78\x9f\x7f\x7c\x7a\x74\x8c\xee\x4f\xef\x19\x39\x4c\xbf\xb3\xfa\x43\x25\xd7\x84\xb4\xe8\x4f\xc2\x19\x30\x2a\xd6\x92\x2f\xdc\xa1\xc1\xb7\xd2\x08\xb1\xe2\x46\x1d\x1e\xa2\xf3\x16\x4c\xb3\x8c\xa3\x9a\x0a\xf8\x2f\xee\x24\x5b\x62\x49\x2b\xf7\xb8\x5c\xe1\xa6\xea\x1a\x9b\x0a\xa1\xad\xd1\x0a\x6f\x96\xa4\x95\xe5\x57\x91\x50\x70\x33\x90\x8c\x53\x90\x1e\xab\x1e\xbd\x43\x44\xff\xaf\xec\x13\xb4\x85\x9f\xa8\x2e\x45\x16\xd2\x33\xdc\x5e\x8c\xc4\x20\x56\x60\x23\x5b\xa1\x27\xcf\xf6\xe7\xad\xb1\x92\x1b\x9a\x6c\x36\x08\x57\x92\xde\x58\x56\x0b\x61\x51\x12\x73\x29\x4c\xc8\x38\x6b\x89\xb7\x9b\xaf\x38\xbb\xa1\x35\xa9\xe3\x77\xc0\x69\xf6\x06\xe4\x62\xcd\x27\xc6\xb0\xc4\x89\x30\x56\x55\x17\xf3\x22\x26\x10\x07\xf3\x3e\xf0\x6e\x2c\x5c\x12\xdf\xa3\xfb\xef\x53\xf8\x90\xfe\xa1\xd5\x8f\xc2\x54\x68\x97\x7b\x73\x34\xc4\x8a\xf1\x6b\x81\x0e\x90\xa0\x6d\xe5\xac\xbe\x61\xdc\x18\x15\x1a\x19\x1d\x80\x69\x26\xa5\xa3\xd8\x68\xec\xb4\x3c\x63\x4c\x0a\xc9\xf1\x6a\x65\x3d\x75\xf5\x8a\xe8\x8c\x17\x0d\x64\x28\x22\x48\xb4\x78\x25\x16\x4c\x4e\xb4\x9f\xb5\xf9\x91\xfe\x49\x44\x90\x76\xc1\x2d\xa0\x09\xbc\xc8\xfc\x1f\x8c\x0e\x0c\xb2\xa9\x9a\xc2\x04\x61\x61\xde\x49\x4d\x34\x1d\x96\x6e\xa8\xfe\xe7\x28\xbf\xcc\xb1\x99\x6a\xc0\xd2\x12\x8b\x45\xe5\xd8\xc0\xb0\xc5\x16\x37\xdd\x5d\xfc\x70\x07\x3d\x79\x6f\xeb\x80\x7b\x0b\xff\xdb\x52\x38\x8b\x3f\x38\xbb\xb0\xf8\x1e\x83\xf0\xa0\xdc\x93\x5b\x69\x51\x60\xa9\x35\xc9\x68\xb0\xb3\x79\x9d\x47\xef\xe9\x40\x07\xee\xc5\x03\x2c\x82\x91\xb1\xcd\xb6\xf3\x0f\x2a\xf9\xcb\xd3\xed\x04\xf3\x78\x63\x0f\x1c\x19\x7c\x7f\x7f\x72\x0b\xbd\xcf\xd2\x40\x08\xa7\x60\xbf\x86\x95\x79\xde\xde\x28\x9c\x3c\xe5\x4d\x12\x2a\xd3\x47\xd9\xba\x2f\x47\xac\x69\xf0\x22\xa3\xf3\x5b\xdf\xd1\x05\x5a\x38\x3c\x44\x17\xc0\x74\xd6\x04\xa2\x44\xe0\x2c\xc6\xf1\x3f\x13\xf5\x5b\xcd\x60\xef\x5a\x08\xed\x65\x25\x30\x30\xd1\x30\x62\x08\xe1\x46\xb0\x29\xfa\x95\x68\xa1\xc0\x74\xd5\x2f\xed\x03\xbe\x83\xf9\xf6\x6a\x5b\xbb\x55\x9d\xea\x25\x6d\x47\xe3\x29\x69\xeb\x44\x57\x4d\x0c\xc8\x88\x34\xa2\x44\xfd\x3a\xd6\xb8\x32\x53\x75\xe1\x7e\x5a\xa7\xde\x8a\x85\x3b\x95\x16\x0f\x80\x75\x21\xd9\xea\x17\xa6\x96\x2d\xc1\xa2\x04\xe2\xec\xc5\xb3\xa8\xf3\x79\x5b\x9f\xbd\x78\x96\xbd\x4e\xdd\x49\x90\x3e\x05\x6d\x0d\x98\xed\x79\xf2\x22\x92\x65\x90\x4a\xfb\x3a\x4e\xde\x5a\x41\x2a\xf6\x03\x6a\x88\x74\xc6\xaf\x97\xfe\xd9\x21\x7e\x86\x2a\xd2\xb9\x0b\x9c\xe8\xb9\x06\xcb\xfa\xab\x0e\xa8\x08\xd9\x76\x4f\x3b\xcf\xb6\xfd\x39\x2a\xb6\x74\xdc\xd9\xfc\xa7\x17\x5e\xc4\xe7\x93\x13\x59\xec\x63\x2f\x6f\x9b\x83\x83\xdd\x10\xbe\xe6\x54\x4a\x02\xa9\xf4\xde\x5b\x81\x8e\x9c\xb4\xf5\x85\xf3\xd9\x7e\x8f\x66\xa4\x61\xeb\x22\xc4\x52\x40\xc7\xe8\xde\xf4\xde\xb8\x8c\x40\xe1\x6e\xc9\xbe\xea\xe9\x19\xdc\x2e\xfe\xff\xe5\xb6\x2e\xaa\xc3\xdf\x2f\xe3\x3e\x09\x3a\x7f\xa2\x4c\x89\x67\x9c\x93\xaf\x5d\x26\x27\x09\x0f\x67\x5e\x31\xdd\x74\xc0\xbb\xcd\x57\xb5\x09\x83\xe5\x7a\xc8\x3d\x60\x8e\xc5\x9d\x19\xe5\xb8\xe9\x0c\x41\xd8\x9f\x2d\x9f\x5d\xae\xe2\x10\x6d\x24\x0a\x09\x82\x4a\x61\x2d\xc1\x1a\x29\x98\xaf\xcc\xb2\x8c\xc6\xfd\x8f\x51\xf1\x33\x03\x15\xfa\xc6\x53\x1b\xec\xfc\x29\x9c\xac\x07\x61\x7a\x5a\x76\x74\xfd\x25\x33\xee\x17\x11\x8a\xfa\xd1\xc9\x08\x68\xee\x4d\xd4\xb3\x3c\xf3\x0a\x35\x07\xb6\xec\xa1\xf5\xbf\x5f\xb8\x67\x9e\x34\x2c\xf5\xa9\x15\x6a\x1d\xfe\x18\x70\xd7\x6e\x0c\x3a\x4b\x81\x64\x08\xd7\x37\xd8\x0a\xb7\xb9\x24\x09\xee\x24\x7a\x16\x26\x5f\x83\x75\xc3\xfa\xa3\xa3\x5c\x8b\xee\xb5\xce\x0f\x15\x04\x0b\x2e\x49\xd9\x75\x56\x09\x95\x66\xbc\x27\x6a\xfc\x51\x1e\xa1\x04\x5e\x52\x83\x17\x69\x41\x6e\x82\x1c\x5a\xbd\x0a\x70\xf1\x58\x81\x23\x8e\x86\x0d\xa8\xa0\x63\x74\x45\xe4\x69\xf0\x4d\xe1\xc6\x48\x3a\xa6\x6c\xd9\x63\x9d\x39\x7d\x0c\xca\x70\xe3\x6f\xfa\x18\xdc\x1b\xbc\x71\xc7\x12\x2e\x6b\x3a\x2f\xa8\xae\x4a\x3e\x30\x3a\xdd\x76\x4e\x09\x60\x70\x25\x3b\xdc\x34\x1b\xb4\x50\xfa\x48\x8b\x98\xa2\x00\xba\x5c\x92\x9a\x62\x49\x54\x03\xf7\x80\x6f\xd2\x9f\x42\xde\xbc\x3e\xe8\x33\xa2\x53\xc8\xbd\x5f\xe1\x8d\x39\xcd\x4f\x19\x7f\x63\x5e\xf7\xcd\x49\x7b\x1f\x8c\xbf\x8a\xe6\x55\x91\x22\xe0\x48\xa0\xc2\x3d\x6a\x76\xe6\x43\x16\x7c\xb4\x77\xc3\x00\x4a\xc5\x9e\x9f\xfb\x90\x09\xc9\x65\x0a\xda\xdf\xe3\xe3\x22\x29\xa4\x81\x6d\x5b\x30\xdc\x26\x31\xf5\x23\x96\x12\xbe\x4f\x91\x57\x26\x7a\xb3\xa2\x5e\x97\xb9\x01\xd9\xe8\xd4\xe6\x8d\x18\x8d\xd1\xb7\xdf\xa2\x91\xc9\x03\x3c\xad\xaf\xa3\x9f\xbe\x39\x46\x2d\xcd\x0c\x19\xd9\x74\x7a\xb9\xfb\x60\x2f\x60\xcb\x41\x82\x8a\x2f\x5b\x03\x9d\x02\xf0\x7f\xec\xc9\xdf\x8b\xd8\xc8\xce\x54\xb6\x1f\xd5\xd7\x64\x8e\xbb\x46\x96\x17\x51\x3b\x64\xf5\xd8\xcb\x13\x23\xd1\x29\x6e\x1a\x11\x78\x26\xbc\x77\xf6\x16\x31\xa0\x77\x24\x91\x3c\xf6\x32\xd2\xda\x4c\x92\xd9\x6c\x20\xea\x47\x5d\x39\x85\x03\xf6\x6f\x33\xb9\x12\x8d\x73\x34\xb3\x5b\xda\xb2\x1b\x9d\x31\x15\xdc\xa9\x20\x7d\xd7\x99\x88\x48\xaf\xc4\x47\x12\x89\xea\xd0\xc8\xf6\x36\x45\x94\xb5\xda\x62\xb4\x20\x1f\x90\x00\xa3\x85\x12\x4e\x1e\x3e\x50\xb7\xbe\x52\xef\x09\x17\x68\x44\xa7\x04\xdd\xff\x3b\x9a\x6d\x24\x11\x4a\x5c\xb9\xff\xe0\x1f\x68\x46\xa5\x88\x49\x09\x42\xff\x03\xd5\x01\x1d\x1b\x93\xcf\x54\x67\x13\xf9\x91\x7c\x18\x71\x25\x7d\x48\x3a\x6b\xc8\x5b\x68\xf9\x08\x5e\x15\x1e\xfc\xe3\xf1\x68\x3c\x95\xec\x09\x55\x3c\x93\xe2\xf6\x89\x1a\x69\x34\x8e\xe1\xf7\xba\x4c\x85\x83\x4e\x4d\xd0\xf9\xf1\x31\x7a\xf8\x20\x97\xa8\xbd\x73\xd4\xdb\xfd\x17\x22\xde\x9d\x7e\x29\xdc\xb1\x32\x9d\x05\x2f\xd9\xb3\xa3\x74\x13\x27\x89\x9d\x2c\xfc\xab\xd7\xf2\xba\xe3\xa1\xea\x3f\x24\xc3\x07\xea\xcd\xe0\x81\xca\x99\xf5\x57\x3e\x4f\xc1\x45\x96\x9c\xa5\x10\x49\x73\x8e\x82\xaf\x76\x7c\x69\x18\xb8\x6c\xbe\x64\x99\x4d\x6a\xa5\x6d\xeb\x6c\x93\xa1\x9f\x84\x8c\x4e\x67\x25\x73\x96\xee\x21\x5e\x66\xd8\xf8\x5f\xb1\xe4\xe6\xde\x4c\xd6\x3c\xcc\x7b\x1e\x4d\x75\x9f\xe5\x2e\xaa\x5c\xd1\x2a\xbd\x22\xa4\x16\x36\xf9\x9b\xd6\x55\x02\x5f\x51\xe7\x9e\xa7\xf4\xfc\x74\x8f\xb4\xc0\x21\x86\x55\x58\xb3\x0d\x8c\xeb\x94\xa1\x4b\x08\xa6\x8c\x2c\x36\xbd\xab\xde\x27\xd3\xf4\x3e\xea\x6c\x15\x82\x06\x5e\x12\x87\x24\xd6\xde\x01\x77\x12\x73\xf3\x68\x30\xbf\x74\x9a\xf8\x24\x14\xa3\x48\x14\xfa\xdc\x10\x70\xe8\x2d\x00\xc2\xd9\xaf\x86\xcd\x00\xc5\x04\x06\xfd\xcb\xea\x70\x0e\xd2\xf9\x68\x57\x3d\xe3\xf8\x5b\x32\x3e\x46\x8f\x7e\x3b\x1a\x36\x9c\x7a\xac\xf3\x49\xe9\x43\x1d\xc2\x81\x79\x42\x30\x80\x6a\x68\xb2\xf8\xcc\x6c\xd6\x00\x6b\x14\x4f\x9d\xa1\x07\x6d\x28\x3a\xee\x08\x90\xba\xe8\x96\x4b\xe3\xce\x1c\x4c\xc5\xd3\x4f\x4e\x39\x81\x18\x1a\x48\xa0\xb0\x26\x99\xf0\xd9\xe7\x22\x1e\xc8\x9d\x09\xa8\x69\x96\x83\x21\x46\x74\xea\x66\x3e\x1e\x02\x11\x25\x90\x48\x20\x84\x66\x36\x0f\x44\x6b\x01\x99\x01\x2b\x81\x1d\x6c\xf1\xad\xd4\xc3\x88\x2e\xa4\xcb\x00\xe5\xf3\x0f\x43\x68\xb0\xd7\x7e\xd3\xd4\xcd\x49\x5c\xb0\x01\x09\x2d\xfd\xfb\x31\xa2\x61\x66\x62\x38\x52\x26\xc9\xce\x02\xdf\x90\xf6\x3b\x69\xac\x24\xb4\x95\xa4\xee\xa1\xca\x0d\x91\x99\xf0\x67\x5a\xbc\xd1\xe7\xec\xb8\x50\x1b\xc6\x51\x00\x14\x91\xd1\x0d\x13\x81\x5f\x01\x9a\x13\xa2\x77\xd7\x00\x79\x4a\x88\x50\x5d\x9f\x12\xf2\x04\x37\xb8\xad\xc8\x28\x17\xed\xe6\x50\x9b\x46\xe2\x46\xfb\x37\x9c\xa8\x35\x72\xa8\xdc\x9b\xde\x4b\x1f\x43\xfc\x20\x5e\x73\x31\xed\xf3\x7b\x6a\x10\xb8\xab\x8a\xa3\x49\x47\x37\xd9\xed\x51\x61\x7f\xb8\xe8\x7b\x34\x8a\xb1\x3d\xf0\x53\xd9\xf6\x16\xf0\x4f\x86\xb5\x40\xa0\xb3\x7c\x29\x82\x9a\xb1\xb6\x13\x96\x08\x20\x46\x22\x8c\x38\x09\x77\x05\x5a\x5e\xea\x86\x89\x4a\xf9\xc4\xff\x54\x32\x93\x76\x33\xed\xeb\x9c\x8f\x95\x91\x78\x10\xe8\xce\x89\xfb\x3a\xdd\xbb\x10\x95\x47\x43\x8b\xb8\xe7\x8a\x0f\xfc\x78\x10\x0e\xba\xed\xc9\x25\x3a\xc2\xbb\x99\x9f\x43\xed\x69\x17\x7c\xfe\xb6\xed\x1d\x72\x30\xfe\x3a\xdb\x22\x97\x5c\x60\xed\xd3\x18\x44\x1a\xa0\x73\x58\x07\xdf\x13\x1b\x35\xa3\xa5\xad\x2c\x72\x02\x59\x86\x59\x7c\x82\x13\x05\x26\x10\x4f\x3d\x67\x09\xf6\xf7\xdd\xae\x94\x9e\x90\xa1\x8c\x18\x7e\xf8\x01\xad\x70\x4b\xab\x91\x7b\x90\xf6\x37\x5f\x61\xc3\xd0\x8c\x54\x1d\x58\x99\x15\xab\x14\x8e\x53\xba\xe5\xd8\x10\x79\x77\x9c\x88\xbd\x31\xde\xd9\xe5\x33\x34\xf1\x9e\x3b\x27\x85\x39\x20\x40\xbd\xc1\x1b\x2f\x75\xda\x1c\xbd\xa5\x44\xf9\xc6\xe2\x5f\x48\x42\x5f\x12\x8c\x76\x14\x01\x4d\x40\xd2\x2a\x6c\x70\x6b\x99\x00\x1d\xa0\xfb\x85\x88\xa7\x6f\x8a\xd0\xa3\x74\x46\x39\x13\x00\xa1\xcd\x49\x36\x85\x7b\x0a\x80\xbd\x8d\xe4\x82\x51\xfc\xfc\x56\x1e\x36\x6c\x33\xf1\x52\x58\x5f\xf3\x28\xe5\x53\x4e\x9e\xfd\x47\xc8\x6f\xc0\x68\x6e\x82\xb0\x9d\xa7\x4b\x79\x28\x17\xb7\x14\x4b\x3b\x47\x76\x1d\xf2\xd1\xcb\x70\x92\xf4\x52\x92\x77\xa4\x07\xf1\x12\xe1\x16\x20\x0e\x47\x57\x86\xd9\x98\xd8\x0d\xf1\xc5\x29\xcc\x2d\x62\xfd\xf9\x66\x5d\x75\x4d\xa4\x79\xa3\x8c\x74\x5a\xaf\x00\x18\x1f\x83\x82\xff\x40\x31\xad\x54\xac\x15\xc6\xcf\x57\xe8\xbc\xad\x83\xe7\x7f\xf3\xec\xb4\xd1\x29\xbd\x25\x6d\x9a\xec\xc1\x23\xb3\x6d\xd3\xf6\x0d\x67\x57\x9c\x08\x51\x0a\xbe\xec\xf1\x1a\x10\x25\x87\x81\xcf\xe9\x20\xc6\x38\x6e\x84\xcc\x7e\xf0\x81\x47\x01\x49\x9d\x09\x82\x5b\xad\x9f\x0c\x97\xec\x86\x98\x6b\xdf\xbe\xe4\x3a\x32\x1c\x64\xc4\x31\xec\x82\xee\xdf\x6f\xbd\x8c\xb6\xe1\x67\xed\x31\xea\x35\x1c\x1b\x27\xd8\x3f\x80\x0f\xcb\x1f\xc0\x30\xd6\xef\xbe\x22\x03\xfb\x26\x02\x5c\xf0\x9d\xd8\x5b\x51\x72\x00\xc9\x92\x26\x95\x6b\xc2\x6d\xaf\xa2\x7d\x29\x80\x8a\x8d\x91\x41\xb5\x84\x14\xc9\x69\x8f\x4b\x45\x4f\x75\x98\x52\xf7\x5e\xe7\x89\xa0\x96\x42\xd6\xaf\xe8\xa1\x11\x55\x70\x29\x2b\x1c\x97\xbe\xc9\x68\x5c\xe8\x1d\x16\x57\xe9\x13\xb9\x77\xe0\xf6\x39\x60\x77\x57\xec\xaa\x08\x79\x18\xe3\x94\xf9\x39\x4f\x56\x91\x58\xe7\x5c\xf5\x8f\x28\x9a\xd9\xdc\xf1\xab\x15\x67\x37\x49\x40\x63\xc8\xe3\x0a\x26\x79\xef\x1c\x18\xf0\x8d\x30\x57\xc7\x5e\x5e\x55\x61\x24\xbc\x67\xc6\xde\xf8\x6c\x8c\x8b\xe0\xd1\xe6\xea\xfd\x85\xbe\x60\x90\x96\xc7\xc1\x80\x67\xe2\x05\x4e\xac\x70\x35\xe5\xa4\x92\xee\x55\xf8\x7d\x86\xcc\xfb\x61\x26\x3f\x64\x0b\xb7\x8b\x91\x1a\xc1\xf5\xd7\xe9\xad\xe0\xd3\x72\xe8\x34\xc1\xbe\x12\x8a\xad\x1d\x04\xca\x97\xd9\x16\xbd\x4b\xae\x3f\x64\x46\x33\x65\x4f\x4e\x38\xc7\x9b\x2d\x95\x51\x74\xce\xd0\x7c\x78\x97\xa1\x98\xcd\xb5\x8d\x34\x4e\x5e\xac\x05\xdb\x9f\x4e\xa3\x71\x5d\x93\x6c\xe2\x7b\x8c\x12\x27\xe8\x55\xa3\x84\x9e\x71\x7a\x18\xd3\x66\x87\x61\x9e\x11\x89\xec\x5c\x75\xf6\xfb\x30\x45\x7e\xda\xd2\xfe\xe8\xe7\x1a\xd5\x2b\xcc\x3b\x49\x16\x78\x2f\xf7\x79\xf3\xa9\x61\x29\x38\x96\xa6\x0f\x5b\x1f\x33\x0d\xc5\x6e\x5d\x59\xa0\xb4\x33\x19\xe9\x82\x3b\x47\x88\xd6\x89\xa2\x1c\x6d\xfd\x14\xfc\x1e\xea\x91\xfd\x72\x9c\xf9\x72\xda\x5f\xa6\x9c\x35\x60\x2b\xb7\x35\xe3\xa6\x2e\x5c\x64\xca\xf1\xfa\x17\x88\x7e\x28\xf8\xa4\x24\x1b\x9e\x0e\x38\xa5\xf5\xa0\x31\x61\x0b\x06\x66\xd9\x87\x31\x88\x69\x61\x07\x0c\x0a\xb8\x1c\x1e\xa2\xd7\x3a\x57\x37\x49\xf6\x5f\x53\x61\x39\x4b\x77\x31\xbf\xb6\xbd\x7c\x2b\x70\x98\x2c\x04\xdd\x58\x9a\x4d\xd7\x2e\xb6\xeb\xea\xcb\xf7\xa7\x53\xa4\xe5\x34\xef\x43\x09\xca\x38\x25\x75\x8e\xce\xb0\xc4\xa7\x2e\x5b\x2d\xf2\x55\xfd\x8e\x7c\x25\x1c\x94\x60\x1a\x26\x01\x2a\x1e\x85\xb2\x38\x08\xa3\x2a\x81\x30\x98\x74\xbc\x5d\x89\x88\xd4\xe3\x78\x70\x7b\x69\x06\x2a\x56\x45\xe7\x73\x17\xbf\x55\x5d\x03\xc3\x4a\xe5\x41\x52\x09\xed\x83\x39\xa7\x70\x61\xd0\x16\x35\x51\xcd\x9b\xd0\xc2\x30\xec\xcc\x5a\xed\x20\xde\x96\x1d\x25\x87\x3e\xbb\xfa\xb5\x0e\xc2\xf0\x3e\xaf\x83\x7e\x18\xdf\x9b\x40\x84\xd1\xfd\x5b\x20\xea\xdc\x65\xb7\x0c\x61\x12\x53\x6f\x8f\x31\xbd\xd5\x3c\x23\x5f\xdc\xaf\x80\xc9\x2e\xd1\xb5\x43\x9f\x58\xda\xbb\x37\xbd\xb7\x3f\x88\xdb\x3b\xeb\x0e\x42\x0d\xc3\x44\xd2\x7c\xec\x3b\x7c\x7c\xca\xf6\xdf\x93\xc7\x2b\x9b\x73\x6e\xa0\x0e\x52\xe1\x78\xaa\x73\x26\xc3\x34\x80\x09\x87\x88\x62\x72\xc7\xc5\xe3\x79\x19\x55\x67\x42\xc7\x11\xbc\x69\x96\x91\x2d\xef\xea\xd3\x1d\x46\x3d\x7b\x73\xdb\xed\xa1\xc7\xf6\x9b\xea\xfa\x9c\x9c\x77\x51\x7f\x83\xc2\xb2\x25\x5d\x0f\xe4\xd6\xca\x1b\x7f\x0a\x03\x0e\x27\xe4\x41\x51\x31\xbe\x48\x0c\xe9\xef\x10\xe8\x87\xe5\x21\xb7\xf8\xdd\xa3\x58\xd9\x2b\xc3\x18\xf4\xc9\x47\x5f\x7c\x6a\xfa\xdd\x5a\xfa\xfb\x94\x8a\x99\x6d\x59\x80\x5b\x31\xa1\x1d\x3b\xb9\x7c\xaf\x07\xe8\x3e\xc2\xa2\x5c\x08\xa2\x80\xfe\x83\xbf\x1e\xfd\xd1\x03\x8f\x10\xfa\xdb\x5e\xb3\x19\xef\x3b\x9d\x87\xff\x86\xe9\x3c\xfc\xeb\xa7\x93\x56\x9e\x2b\xf3\xbc\x6d\xfd\x5d\xe5\xb8\x22\xdf\xeb\xb7\x2c\x64\x5a\xb9\x2b\xb7\x1c\x88\x54\x61\x11\xf6\x3a\x32\xb6\x26\xf5\xfa\x8d\xb3\x91\xae\xec\xe6\xa4\x50\x5d\x22\x4c\xec\xa0\x8f\x17\x3c\xb7\xe8\x1c\x7d\xb3\xcd\x3f\xf8\xd3\x27\xd4\xe3\x1e\x7c\x0c\xee\xc1\xc5\x24\xa4\x25\xc5\x02\x84\x5a\xaf\x19\xc4\xe3\x5e\xb9\x5a\x07\x22\xf1\xea\xf0\x16\x80\xbc\xfa\x9a\xd6\x89\xc3\xea\x6b\xb1\x72\xbc\x4b\x4c\x67\xae\x27\x53\x09\xf5\xdb\x90\x5c\x70\xd6\x5d\x79\x5b\x90\x43\x1e\x14\x61\x1d\x04\x66\x6a\xfd\x87\x55\xfd\x15\x9b\x17\x91\xc2\x6b\x2b\xc3\xd1\xd6\xc3\x88\x57\x0d\xb0\x0d\x80\xb8\xfa\x21\x53\x5b\x4d\x4e\x17\x20\x0a\xea\x0f\x15\xdc\x7a\x83\xc7\x37\xd6\x35\x35\xc4\x09\xda\xfe\x3d\x2b\xe8\x2b\x3c\x99\x01\xef\x26\x8a\xb1\x5f\x43\xab\x4e\x06\xbd\xfb\xc2\xef\x2f\xfc\x56\xa3\x9f\x4e\x5d\x91\x82\x24\x35\x60\xe6\x84\xe5\x1e\x19\xd8\x4a\x9d\x10\x4d\x8b\x3b\xa9\x14\xfb\xbf\x5c\x7a\xb3\x71\x0f\x7b\xcb\x8b\x6f\xf8\xa5\x18\x67\xb3\x55\x27\xd9\x54\x2e\x84\x22\x4d\xb7\x98\x71\x68\x26\x81\x1c\xcc\xae\xa6\x46\xf9\xfc\xc5\x86\xef\xae\x5d\xeb\x50\xf3\x38\x1e\x39\x2e\x83\xa3\x36\x1b\xaa\x38\xb5\x0e\x7a\x4c\x87\x11\x14\xbb\xe1\xd7\x64\xf3\x4d\xe9\x6d\xa4\x77\xe1\xf2\xe2\x21\x11\xdc\x7f\xa3\x90\xa7\xdd\x1b\x4b\x52\x9e\xe1\x86\x5f\xae\x7d\xee\x13\xda\x67\x3f\x61\xe4\x78\xb2\x34\x28\xbe\x4b\x9e\x80\x1d\x21\xca\x90\x6e\x1e\x9d\x73\x93\x98\xc9\x6c\x67\x03\xc5\xc2\x2b\xc1\x27\x36\x85\xc8\x02\x75\x31\x94\xac\xce\x47\xe8\xdb\x82\xa5\x2d\x4d\x98\xe7\x92\x15\x9e\xe2\x15\x9e\xd1\x86\xca\xde\xe4\x9c\x15\x5b\x6d\x1e\xf9\x66\xc5\x04\x17\x21\x0a\xb0\xf0\xaf\x57\xa6\x76\x59\xf2\x80\x5b\x66\x6f\x12\x55\x1e\x0d\x9d\xb3\x38\x4e\xf4\x7a\x37\x3e\xad\xb3\xde\x15\x75\xef\x98\x30\x5f\x36\xfb\x17\x09\x0a\xb9\xb9\x49\xeb\x64\xb8\xc9\xfc\x5d\x02\xde\xbe\xe5\x7b\x3c\xda\x3e\x17\x83\x59\x84\x57\x84\x53\x38\x13\xf3\x80\x60\x51\xda\x9d\x6e\x3c\x57\xdb\x89\x5e\x3c\xa9\xa4\x86\x34\x43\x2c\xfe\x4e\xfd\x8b\xe9\xc4\x0c\xfc\x1f\x25\x11\x25\xb7\x7d\x21\x75\x24\xeb\x75\x5b\xc2\xb0\x98\x7c\x15\x9a\x50\xb7\xd7\x7e\xc4\xe0\x2d\x9b\x86\x0c\xd4\xfd\xf4\x17\x13\x80\x1d\xf3\x3f\x4a\x01\xf5\xf5\x97\x33\x08\xb7\x56\xb7\xdd\x7c\x87\xc4\x1e\xbb\xff\x12\x5f\x13\x81\x44\x67\xbc\xeb\x05\x01\x67\x45\xad\x97\xe8\x10\x1a\x81\x46\xb4\xd5\x99\xe5\xc6\xa0\x96\x40\xde\x0c\x5f\xc0\xe3\xa2\x9b\x1d\x40\x7b\x11\x24\x9c\xcf\x52\xd7\xcd\xbb\xc6\x96\xde\xd5\x60\xa7\x91\x6e\x02\xc9\x75\xed\x1d\xd4\x9f\x2e\xe4\x9d\xf5\x26\xf9\x27\x09\xea\x0c\xbc\x83\x9b\x53\xb5\x4e\xbe\x86\xf1\x82\xef\xc6\x3a\x07\x53\xfe\xe0\x3a\xf2\x60\x41\x05\xfd\x5b\x00\x70\x3c\x46\x8f\x1c\xa4\x74\xf9\x74\xf4\x10\xe4\xe5\x81\x02\x98\x54\xc8\x62\x19\x53\x90\xe7\x3a\xa1\xab\x9a\x04\x65\x4a\xe3\xf2\xa4\x26\x5c\x5c\x57\x59\x01\x05\x23\x7d\x66\x91\xcc\x94\xdd\x16\x50\x6e\x3e\x7a\xe1\xc8\x82\x15\xb6\xbd\xaf\xb8\xec\x34\xbd\xc9\x70\x06\x93\x97\xeb\x44\x70\x16\x9c\x09\xb8\x1a\xfb\x8c\xe4\x3d\x4a\x7b\xa1\x20\x90\xf5\x0a\x84\xc8\xf1\x86\x08\x91\xcf\x5b\xd1\x91\x9d\x6d\x29\x41\xb8\x52\x95\xc4\xa2\x9b\xcf\x1b\x52\xeb\x80\x38\x5d\xf4\xc1\xee\x8f\x45\xb3\xa4\x45\x5a\x9d\x44\xaf\xbb\x4e\x27\x00\x0a\x5a\x8c\x44\x51\x65\xed\x5f\xba\x48\xc4\x0e\xf4\xce\xe7\xba\x28\xaa\x5e\x3d\x74\x8c\xee\x45\x70\xd5\x48\xbf\x12\x7a\xb5\x90\xc2\x27\xd3\x3e\x42\xbf\x7d\xd4\x7b\x65\x29\xf9\x73\x02\x7f\xbd\xa0\x0d\x89\x46\x40\x8f\xf6\xdc\x86\x64\x77\x8b\x88\x58\xd9\xff\xe3\xe7\x71\x49\x1d\xd4\x03\x1f\xc7\x7f\x7e\x1f\x94\x7d\xf5\xfb\x95\xf4\xb8\x77\xa7\xf0\x16\x1c\xee\xe7\xc7\x3c\x06\xf2\x6b\x3c\x04\x67\x33\xfc\x2d\x44\xec\xf7\xdf\x68\x0d\x49\xcb\xdd\x53\xa9\x7e\x29\xd3\xbd\x32\xe7\xde\x13\x9b\x42\x81\x79\xbb\xbc\x01\x07\x69\xcc\x67\x58\xa7\x5a\xf0\x29\xbb\xe8\x1c\xad\x89\x26\xfb\x2b\x06\x19\x4b\xcc\xcf\x50\x49\x97\xb5\xe4\x56\xab\x8c\x4c\xe8\x70\xd4\x7c\xdf\x53\x59\x7a\x49\x4e\xf7\x2c\xfc\xb1\xef\xd5\xf8\xd4\x59\x44\xbc\x95\x03\x6c\xde\x2e\xe0\x46\x90\x56\x06\x92\x54\x56\x2c\x39\xb0\x7b\x49\x9f\x7d\x2a\xb0\xa2\x79\xdf\x95\x41\x2c\xbf\xfe\x19\xb1\x13\xb2\xc7\xa2\xc8\x09\x46\xa6\x0a\x72\x38\xf0\x24\x24\xbe\xa3\x5d\x28\xf1\x9b\xf1\x6d\x4f\x5c\x7a\xd7\x45\x77\x46\x70\x95\x9d\xf8\xf4\x77\x10\x1c\x60\x0c\x44\xd8\x86\x0a\xaf\x08\x5f\x76\xd2\x3b\xd9\x70\x6e\xf8\x8f\xea\xdc\x09\x1b\xc9\x3c\xa7\x62\x41\x38\xda\x80\x1d\x4e\x9f\xe0\xbc\x0e\x77\x96\x61\xce\xb1\xe9\x77\xda\x52\x16\x5f\x4e\xde\x51\x2a\x62\xa8\x54\x09\x54\xe0\xc5\x11\x54\x98\x8e\x4c\x30\xf0\x3c\xef\x02\x20\xe2\xf2\xd4\x6d\x8d\xc4\x1a\xaf\x20\x15\xe1\x6c\xa3\xfe\x81\x5c\x58\x35\x6b\xbf\x8b\x68\xcf\xe6\xc5\xe2\x5d\xeb\x9e\xdc\x4c\xc2\x3d\x03\x4a\x11\xf2\x77\x02\xad\x17\x1b\x44\xd1\xe3\x8c\xe2\xe2\xef\xb2\x38\xa4\x37\xb4\xba\xf6\xab\x0c\xc4\xa2\x51\xbe\x07\xbe\x33\x99\x41\x50\x37\xb4\x1b\x5f\x0c\xa4\x7e\xf8\xe0\xf1\x68\xc9\xea\xae\x61\xfa\xbe\x78\xf8\x60\x44\x15\x55\x8c\x0b\x31\x23\x6a\x09\xd4\x5e\xd2\xdf\xbd\xf5\x38\x28\xe1\x1d\xa2\x95\xa1\x22\x09\x94\x52\x82\x3d\xf8\x8d\xc6\x75\x95\xed\x97\xee\xf7\x00\xef\x52\xcb\xf0\x67\x74\x0c\xa0\x13\x4f\x18\x74\x8c\x68\x54\x44\x3c\xa7\x6d\x00\x95\x12\xf6\x69\x22\x4b\x54\xda\x72\x1b\xe6\x7b\xf4\xd1\x30\x94\x1b\x97\x12\x9d\x5e\xd2\x6b\x3d\xba\xb4\x11\x62\xbc\x56\x62\x2d\x8b\xea\xa2\xc3\xeb\xac\xe6\x5e\x57\xae\xc4\xba\x25\x16\xca\x23\x2b\x74\xa1\x2e\x90\x63\x19\x30\x2c\x5c\x58\xe0\x46\xc9\xcb\x86\x97\x57\xee\xf7\xf1\x11\xfa\xbf\x31\xcf\xd1\x88\x7f\xcc\x44\x8a\x3d\xee\x49\x3f\xfc\x34\xba\x32\x8b\x61\xf7\xfb\x78\x47\xc5\xc6\x2f\x1f\x81\xaf\xba\x20\x06\x8a\x1b\xe3\x41\x04\x7e\x22\x44\x9b\x3d\xc2\x7e\x7f\xb4\xaa\xe5\xa5\xc1\xd4\x55\x26\xb2\x4c\xc4\xf1\xa2\xa9\xd5\x22\x25\xa4\x47\x07\x71\x6f\xe3\xac\xe4\x37\x28\x5b\x29\x97\x3e\xf0\x05\xd9\xf8\xd7\xdd\xa9\xff\x32\x33\xe2\x9d\x26\x8e\x7c\xdb\xe8\x12\xd2\x7c\x5b\xaa\x6b\xe5\xee\xe4\x69\x6e\x4c\xd5\x7f\x4b\x50\x6e\x40\x94\x67\x2f\x9e\x05\x83\xdd\x82\x28\x95\x3a\x1b\xa2\xfb\xdf\x41\x94\xa9\xc3\xdc\xfe\x44\x19\x6e\x9a\x27\xca\x74\x73\xb6\xd0\x66\x7d\x5d\x8a\x62\xf6\xe6\x93\x9c\x1e\x6d\x0f\x43\x89\xe9\xde\x14\x16\x09\xa5\x79\xcc\x0a\x65\xd7\x7c\xd0\x73\x63\xab\x9c\x59\x61\xc8\xa7\x37\x03\xdb\x41\xbf\xba\xae\x38\x18\xf4\x71\x86\xfa\xf1\x51\x5e\x7f\x3b\x74\x6d\x2e\xc9\x5b\x43\xe8\xea\xf6\x59\x95\x52\x9b\x05\xce\x56\x08\x2f\x23\x3e\x0d\x0f\x5c\x45\x56\x3a\xe3\x95\x49\xac\x2b\x16\x60\x51\x99\x11\x38\x30\x4a\xae\x79\x6f\xaa\xfb\x4d\xd0\x82\xad\xd5\xe5\x8a\xa8\x44\x6b\x2c\x10\xae\x6b\x52\x6b\x7f\x36\x5d\x34\xdc\x0b\x3f\xab\x2b\x8e\x6b\x62\xb0\x31\x29\xd1\x04\x84\xc2\x98\x14\xdb\xb3\xb0\xae\x9d\x20\x2b\xcc\x75\x7a\x2d\x5d\x2b\xeb\x03\x15\xe0\xc1\xa8\x8b\x94\x89\xdc\x32\x12\xd6\x8f\x8b\x5d\x77\x0a\x49\xf4\x7b\xd6\xbc\x68\x5a\xcb\x3a\xef\x98\xae\xfe\x9b\x74\xb7\x2e\xc3\x57\xad\xf3\x30\x42\x04\xa8\xab\x59\xe3\x8d\x28\xa6\x94\x5d\x35\x9d\x30\x57\x7a\x91\xb8\xca\x6f\x2f\x85\x52\x97\x11\x7d\x95\x73\x5d\x7a\xd7\x80\x10\xfd\x2c\x31\x5d\x5f\x08\x79\x9f\xf1\xa8\x7f\x79\xf7\xce\xde\x8d\x7e\xf8\x01\xcd\x71\x63\xd2\x86\x04\xeb\xfb\x8c\x24\x29\x0e\x7b\x02\x8b\x1b\x32\x97\xe6\x1c\xd7\x44\x48\xce\x36\x81\xf7\xc0\x93\xb0\x25\xe6\x71\x48\xfa\x9a\x70\x82\x70\xd3\xb0\x0a\x2b\x2d\x4b\x11\x3c\xaa\x49\x45\x94\x32\xd6\xd0\x3f\x5d\x40\x3b\x69\x25\xbd\xf1\x77\x0e\xf4\x05\x67\x05\x97\xf9\xdb\x3f\x72\xaa\x85\x05\x14\x09\x54\x59\xb4\x08\x4d\x0d\xb9\x10\x01\x96\x4b\x3b\x87\xc0\x04\x66\xd0\xe2\x6c\xad\xfa\xeb\x90\x49\xda\x4a\xd2\x42\x96\xf0\x20\xc2\xde\xde\x67\x10\xae\x4f\xdb\xb9\xf9\x5a\x1d\x2f\x07\x4e\x17\x7b\xd4\x31\x63\x2d\x93\x36\x2a\xdf\x67\xc0\x0e\x00\xba\x4e\xe7\x4a\xa7\x34\x9c\xc2\xbe\xf4\x47\x2b\x6d\x5d\x5d\xdd\xac\x94\x46\x11\x2c\x8b\xcd\xb3\x67\x0c\xa2\x3a\x8d\x23\xc2\xed\x66\xc9\x38\xe9\x3b\xe1\x51\x7c\xb7\x4d\x3d\xba\x0f\xc5\xe9\x1e\x19\xcd\xa9\x2b\xd6\xc3\x2e\xc5\xb0\x23\x6d\x67\xb6\xf1\xfb\x86\xf4\x68\x4b\xa5\x0b\x83\x8f\xc3\xce\x72\x1f\x9b\xbe\x1a\xe2\xc5\x26\x3d\xd5\xc4\x8b\x6d\xb3\xba\xe2\x71\xab\xfe\x0a\xe3\x41\xbb\x5d\x6a\x8d\x87\xed\xb7\xa5\x2c\xbf\x5d\x42\xf1\xbd\xd3\x89\x17\x93\x89\x0f\x5a\x65\x77\x2a\xbb\xd4\xe7\x91\x5b\x58\xf4\x49\xba\xaf\xa5\x82\x90\x59\x32\xed\x5d\x72\x67\xa7\x91\x8f\x25\xa9\x00\x1d\x1b\x49\x22\xaf\x50\xff\x25\x0e\xce\xfd\x74\xf8\x55\x9c\x95\x4b\xa4\xbb\x6b\x99\xaa\x7e\x90\x05\x3a\x2f\x7d\xbb\x17\xd8\xe1\x63\x31\xf4\x6b\xee\xec\x82\x91\x6a\xc2\x74\x8d\x0d\x93\x35\xd0\x31\xe8\x50\x6e\xb3\xf2\x9c\x76\xa3\x53\x5f\xdc\x37\x79\x68\x57\x84\x9b\xda\xdd\xb1\xb4\xac\x81\xe5\xa2\xce\x71\x2e\xfe\xc4\xaa\x80\x2f\x4a\x3d\x48\x2e\x61\x9d\xa0\xad\x21\x9b\xa5\x12\xd6\xa3\x2c\x75\xe4\xd4\x15\xa8\x1f\x7f\x9f\x9e\x20\x07\x6e\x4b\x81\x8e\xbe\x79\xef\x56\xf8\x27\x39\x5d\xc5\xd0\xdc\xc2\xb7\xfd\xdd\xb6\x87\x0c\x47\x5d\xd3\xca\x95\xe8\xb8\x80\xf2\x89\xd3\x2d\x5c\xbf\x52\xf9\xc9\x62\x5f\x97\xf2\x38\xee\x5f\xa8\x20\x59\xec\xee\x34\x8f\x88\xd6\x48\xf8\xd3\x11\xea\x29\x68\x89\x8e\xd1\xc7\x94\x7f\x95\x6b\xac\x84\xdd\xf4\xbe\xf5\x96\x99\xdd\x05\xde\xa3\x03\xe3\x62\x68\x14\xc5\x00\x64\xba\xde\xe3\x7d\xc0\xb9\xb5\x8c\x40\x96\xb6\x62\x5c\x32\xef\x63\xb4\xe2\xf4\x46\xfd\x2f\x78\x51\x2f\x3a\xd0\xb8\xe4\x6b\x50\xc7\xbb\x55\x52\x26\x9d\xc3\x23\xb6\x44\x2b\x2c\xa3\x10\xa3\xd7\x2d\x7a\x89\x69\xdb\x12\x6d\xae\xbd\x24\x42\xb6\x04\x6a\xa2\x90\xc4\x31\x41\x98\x8c\x00\x51\x7d\x0a\xc2\x6f\x68\x45\xec\x9b\xfe\x44\x49\x85\x0b\xfb\x26\xbd\x20\x9c\x84\x15\x60\xd0\x89\x16\x78\xe1\xc0\x41\x45\x05\x8d\xe4\x8c\x19\x9b\x28\x8e\xc7\xf3\x85\x5e\xdc\x84\x29\x11\xa8\xa1\xad\xc9\x9a\x80\xe4\x82\x09\x12\x76\xb0\x68\xe1\xa5\xc3\x29\xc2\x00\x82\x6e\x49\x2b\x3a\x9d\x98\x0e\xca\xd1\xea\x74\xe3\x5a\x31\x64\x5c\xc9\xd4\x75\x07\xb3\x35\x75\x62\x4c\x1a\x74\x01\xbe\xc2\x18\xec\xc0\x41\x20\xdc\x46\x48\xb2\x44\xd5\xa2\x6b\xaf\xc3\x81\x40\x20\xc6\x10\x15\xdf\x6c\xcc\x33\x71\x8d\x5a\x22\xd7\x50\xe6\x46\xad\xa4\xb5\x40\xe1\x06\xc0\xb1\x4e\x2a\xfd\x97\x9a\xaf\x5c\xd2\xf1\x25\x6e\xe9\xca\x88\xce\xd3\xe8\x18\x85\x59\xcc\xfa\xfd\x3c\xc2\xb5\x73\x84\x49\x85\xe8\xc8\x90\xcf\x54\xe1\x97\xd0\x5b\x6c\xbf\x23\x10\xb8\x97\x0c\x8c\xf9\x78\x54\x9e\x50\x81\x13\x0f\x3a\xae\xed\x79\x74\xfe\xa8\x02\xe3\x0b\x8a\x3c\x43\xb7\x1f\x20\xb5\x0d\x7f\x54\x5f\xb8\x03\x99\x5f\x52\xe1\xcb\x2f\x5c\xf0\x74\x88\xc7\xa3\x0c\xeb\xc2\x32\xf7\xf9\x7d\xed\xb9\xc2\xce\x67\xe6\xd6\x4b\x6c\x0d\x73\xb7\x5f\xe3\xc0\xf1\x27\xfa\xf3\x0b\xd7\xd5\x83\x7d\x3c\xca\x91\x2c\x2c\x69\xaf\x27\x55\x3c\x78\x39\xd7\x94\x92\xfc\xfb\xd3\x0e\xef\x94\x6c\x3b\x6a\x0d\x4f\x6c\xfb\xc4\x88\x6e\x95\xdb\xfc\x24\xf6\x2e\x6e\x92\x65\xe1\xde\x52\xe4\x24\xcf\xda\xbd\x47\xa8\x26\x3a\xe8\x2d\xcb\x52\x0e\xc9\xdc\x7b\x98\x24\xe8\xa6\x77\xbc\x2f\xcd\xae\x11\x7e\xfe\x1b\xaa\xa4\xf4\xf8\x95\xe7\xa4\x66\x8d\xe7\x9f\xef\xfc\xff\x00\x00\x00\xff\xff\x08\x40\x0d\x45\xcb\xb7\x00\x00" +var _epochsFlowepochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xeb\x73\x1b\x37\xf2\xe0\x77\xff\x15\x88\x3f\x24\xe4\x86\xa2\xfc\xb8\xfa\xd5\x96\xce\xf2\x9e\x42\xc9\x8e\xca\xb1\x2d\x5b\x4a\xf6\xaa\x52\xa9\x18\x9c\x01\x49\xac\x86\x03\x7a\x80\x11\xcd\x38\xfe\xdf\xaf\xd0\x78\x3f\x66\x48\x4a\x76\xb2\xbb\x17\x7e\xb1\x45\x02\x8d\x46\xa3\xd1\xe8\x17\x1a\x74\xb9\x62\x8d\x40\xcf\xda\x7a\x4e\xa7\x15\xb9\x62\xd7\xa4\x46\xb3\x86\x2d\xd1\xfd\xe0\xbb\xfb\xf7\x4c\xcb\x8a\xad\x83\x56\xe6\xef\xa0\xc5\xf9\xe9\x15\x9e\x56\xe4\x52\xe0\x6b\x5a\xcf\xbd\xa6\xe1\x0f\x41\x9f\x49\xd5\x72\x41\x9a\x37\x13\xaf\xb9\xfd\x2e\x68\x79\xfa\xe2\xb9\xd7\xe6\xf4\xc5\xf3\xe0\xd7\x67\x84\x70\xef\x67\xf9\xe7\xfd\x7b\xf7\x0e\x0f\xd1\xd5\x82\x20\xc1\x56\x07\x15\xb9\x21\x15\xe2\x4b\xdc\x08\x54\xb0\x5a\x34\xb8\x10\x68\x89\x6b\x3c\x97\xb8\x8a\x05\x41\x15\x9d\x91\x62\x53\x54\x04\xb1\x19\x22\x2b\x56\x2c\xf8\x18\x9d\xd7\x00\x7e\x24\x41\xa9\xef\x10\x6e\x08\xb4\xe7\x4b\x5c\x55\x84\x0b\xd4\xd6\x54\xc8\x3e\x82\x2e\x09\x5a\x2f\x88\xfe\x9d\x96\xa4\x16\x54\x6c\x90\x90\x93\x47\x03\xe8\x43\x64\x4b\x09\xac\x26\x62\xcd\x9a\x6b\xc4\x56\xa4\xc1\x82\x35\x7c\x88\x28\x47\x5c\x60\x41\x8b\x31\x7a\x6d\xbe\x45\x4b\xbc\x41\xac\xae\x36\xa8\x22\xf8\x86\x20\xd6\xa0\x7f\x31\x5a\xc3\x00\x1a\x84\x84\x86\x85\xc2\x0e\x4d\x59\x5b\x97\xb8\xa1\x84\xc7\x40\xa6\x04\x91\x7f\x91\x42\x90\x12\x95\x6d\x23\x27\x8d\x6b\xdd\x69\xc6\x1a\x74\x83\x1b\xca\x5a\x2e\x81\x2d\x29\x2f\xc9\x92\xe0\x9a\xb5\x0d\x1f\xa1\x69\x2b\xe4\x70\x1b\xd4\x90\x25\xa6\x35\xd2\xa3\x47\xd3\x6b\x6b\x41\x2b\xf8\x41\xc1\x24\x75\xc9\xc7\xf7\x0e\x0f\x25\xc0\x33\x47\x38\xbe\xaa\xa8\x40\xb4\x16\x0c\x3d\x46\xab\x05\xe6\x84\x1f\xc9\x26\xbf\x1f\xdf\xfa\x03\xdd\xd1\xd9\xc5\xeb\xc9\xf7\xe8\x15\xda\xfe\xf9\xdd\x36\xfe\xf6\x21\x1a\x8f\xc7\xd0\xff\x40\x7e\x90\x61\x5d\xf8\xeb\xf7\x03\x74\x49\x44\xbb\x42\xf2\x7f\x13\xb6\x5c\x52\x21\x89\x77\xf0\xfb\xef\xb6\xd7\x9d\x90\x96\x10\x1e\x0e\x11\xba\xbc\x3a\x79\x71\xfe\xea\x39\xba\xf8\xfe\xe4\xf2\x4c\x7e\xf9\x8a\x95\xc4\xf1\x05\x90\x0d\x48\x2c\x18\xe2\xed\x74\x49\x85\x64\x13\xc0\xb3\x21\xef\x5b\xc2\x05\x87\x15\x94\xb4\x7f\x75\xf6\x7f\xaf\xf4\x02\xa8\x45\x96\xf0\xc4\x82\x72\x45\xeb\x31\x3a\x11\x6a\x8d\xea\x12\x38\xd6\xfe\x32\x82\xaf\x61\xa1\xe2\x4d\xd2\x10\xce\xaa\x1b\xc2\x65\x0b\x09\x8e\xb5\x82\x0b\x5c\x97\x12\x81\x04\x11\x5c\x97\xa8\x24\x82\x34\x4b\x5a\xab\x2e\x31\xa3\x18\x54\x6b\xf2\x41\xd8\x5d\x35\x86\x7d\x9a\x1d\x9e\x2c\xa9\xe0\x0e\x3b\xb5\x24\x9c\x34\x37\xb4\x20\x88\xdc\x90\x5a\xb5\xc5\xb4\xb6\xd3\xed\x1d\x53\x0d\x38\x42\xeb\x05\x2d\x16\x88\xd6\x54\x50\x2c\x34\xaa\xa2\xc1\x35\xa7\x82\xb2\x5a\x12\x5b\xcf\x57\x61\xa5\xc6\xbd\x00\x2a\xea\xc5\x7b\x34\x44\x97\x67\x57\x3f\x5e\xb8\x95\xfb\xe7\x82\xd4\x1e\x51\xd1\x94\xcc\x69\xad\x40\xaf\x70\x23\x68\x41\x57\xb8\x16\x1c\xd9\x0d\x6c\xd0\x51\x7b\x83\x88\x31\x3a\x55\x7b\x53\x02\x91\x10\xdd\xe2\xf0\x08\xc6\xaa\x21\x2b\xd9\x2b\x9d\x1b\x48\x2d\xd5\xb6\xad\x70\x33\x42\x05\xab\x2a\x52\xc8\x69\x81\xe4\x61\x25\xe1\x86\x93\x6e\x98\x9c\xbb\x86\x41\x1b\x54\x28\xd9\xfb\x0d\x47\x0d\x63\x02\xbd\x6f\x59\xd3\x2e\x51\x41\x1a\x41\x67\xb4\xc0\x82\xc0\x0a\x17\xac\xe6\xa4\xe6\x4a\x5c\x28\x78\x4d\xab\xe6\x54\x52\x2e\x1a\x3a\x6d\xe5\x56\xb9\x26\x1b\x34\x27\xb5\x64\x64\x49\xd2\x55\xc3\x04\x2b\x58\x85\x06\xa7\x2f\x9e\x0f\x81\x9d\x89\x40\xed\x0a\xfa\x35\xb8\x2e\xd9\x52\xc2\x9b\x12\x5c\xb0\x7a\x6c\x88\x09\x13\x87\xb9\x02\x14\xb5\x1f\x0a\xb6\x5c\x55\x44\xf4\xb1\xad\xe5\x1b\xbb\x86\x6a\x0f\x77\xf2\x0e\x80\x92\x54\x9b\xe1\x42\x70\xb5\x3d\x94\xc4\x5e\x35\xac\x20\x9c\x6b\x9e\x91\xf0\xb6\xb0\x8d\xc6\x48\x0f\x18\x30\xcd\xe3\x21\x9a\xbc\x7e\xf9\xf2\xfc\xea\xea\xec\x74\x1b\xe3\x8c\x7c\x31\x2f\x8f\x87\x59\x5b\x55\x1b\xb3\xf2\x25\x0c\x96\x0c\x1d\xed\xab\x13\x34\xc3\xb4\x6a\x1b\x10\x1f\xa4\x16\xa4\x09\xc7\x99\xb1\xc6\x9f\x00\xd0\x81\x45\x0c\xa5\x66\x5c\xc2\xfa\xcb\x19\x63\xb1\x0b\x4b\xcb\x71\x15\x92\x66\xb5\x2c\x41\xdb\x15\xf0\xb6\x24\x6b\xd9\x36\xc4\x6e\x46\x8e\x30\x2a\x1a\x2a\x68\x81\x2b\x8b\xb7\x64\xb8\x35\xad\x2a\x54\xe0\x96\x2b\x18\xc5\x42\x1e\x44\x82\xa1\x05\xae\xc4\xf8\xde\x3d\x5c\xc8\xf5\x19\xe0\xaa\x1a\x3a\x06\x90\xe7\xb6\x5a\x87\x8f\xf7\xee\x49\xc1\xef\xb7\x22\x75\xbb\x54\xab\x04\xab\x73\x84\x7e\x3c\xaf\xc5\xdf\xd1\xc7\x7b\xe6\x94\x08\x40\x4a\x52\x69\x31\x7d\xf2\xe3\xe4\xea\xfc\xf5\xab\xee\x76\x70\xb6\x80\x5c\xd8\xd2\x46\xb1\x01\x34\xfa\xd4\x81\xa0\x3c\x09\xde\xb2\x6a\x17\xf4\x5e\xbd\x7e\x75\xd6\xfd\xeb\x44\x49\x00\xd6\xf4\x35\x31\x7b\xba\x1b\xed\x0f\xa4\x68\x41\x8c\x74\x36\xf9\x89\x34\x4a\x50\xf4\xb6\x3a\x81\x2f\xfc\xa9\x1f\x6a\x55\x4d\x0b\x5b\x21\xb7\x72\xb8\x51\x29\x87\x2d\x2d\xe5\xca\x5a\x4b\x06\xb7\xd6\x8e\x81\xb9\x05\x27\x18\xc2\xa8\x26\x6b\xcd\x8e\x9a\x41\xcd\x89\x85\xdb\x42\x09\x25\xb5\x39\x13\xf2\xc3\x98\xea\xc4\x01\x64\x06\xf7\xec\x74\x0c\xae\x05\x6b\x61\x3f\x19\x09\x5c\xb4\x4d\x23\x7b\xa9\xf1\x60\x9b\x50\xae\xb6\x32\x9c\x4d\xa6\xbf\xee\xa7\x16\xf5\x7f\xfe\xd7\x28\x85\x3c\xa3\x0d\x17\xe8\x86\x92\x35\x1a\xd0\x5a\xca\x64\x7a\x43\x86\x46\x24\x05\xe3\x8c\x6d\x67\xe8\xf4\x13\x25\xeb\x1e\xc0\x15\xde\x15\xee\x37\x3c\x26\x95\x1b\x49\xff\x70\xa2\xbe\x3f\xab\xcb\xcf\x36\xaa\x3f\x9b\x1a\x57\x7d\x70\x99\xc0\x15\x7a\xf6\xc3\xeb\x7f\x02\x3a\xa4\x44\xd3\x0d\xc2\x55\xa5\x8f\x23\xa5\x87\x54\x64\xae\x74\xa8\xec\x12\xb9\xc1\x84\x04\x76\x09\x60\x8e\xd0\x8f\xcf\xe8\x87\x8e\xe1\x78\xbb\x5a\x55\x1b\x89\xb9\x1c\x09\x06\xcf\x42\x0e\xba\x9e\xcb\x29\x97\xfa\xa8\x68\xc8\x1a\x37\xa5\x16\xa2\x20\xd5\xa6\x52\x90\xd2\xd2\x02\x5a\x35\xe4\x46\x6a\xe2\x11\x24\x40\x51\x8a\xb4\x4b\xc0\xa1\x0b\x4d\xb0\x76\x24\xaa\xdd\x03\xb1\x56\x20\x1c\xa9\x81\xfd\x94\x79\xab\x60\xb9\x31\xe5\x2f\xc3\xec\xc6\xcd\x68\x67\xf1\xc6\x5d\x77\x1f\x98\xd0\xdd\x82\xd5\x2a\xeb\xb9\x3d\xa4\x15\x09\x81\x33\xe8\x6f\xa4\xec\xd2\xf2\xda\x55\xc1\x96\x92\x71\xbd\xb9\x74\xed\x6d\x39\xe0\x0e\x5b\x3b\x02\x89\x5e\xb6\x5c\x48\x82\xb2\x9a\xa0\x79\x43\xb0\x3a\x56\x31\x88\x98\x00\x58\xaf\x8c\x18\xef\x28\x12\xce\x77\x99\x27\x5a\x53\xb1\xb0\x3b\x00\xd1\x7a\xc6\x9a\x25\x0e\x37\xae\xcf\x8e\x47\xc1\xb7\xb2\xcf\xf9\xe9\xc8\xee\xf9\x6b\xb2\x19\x19\xcd\x23\xf7\x37\x2e\xcb\x06\x54\xa2\x86\x55\x64\x14\x80\x32\x20\x3c\x0c\x46\x68\x4d\xe8\x7c\x21\x46\xb0\x2f\x97\xac\x21\x0e\x27\x18\xb9\x9e\xb1\x23\xf4\x73\xea\x2b\x18\xbf\xd2\xbf\xfe\xb2\xb7\x94\xcc\x71\xc1\x67\x11\x93\xdd\x80\xb7\x48\x2c\xb9\xfc\x4a\xbd\x46\x98\x73\x3a\xaf\x97\x92\x13\xba\x58\xec\x0c\x4b\x2b\xba\x22\xd0\x48\x1f\x5e\x15\xe5\x22\x80\xd9\x90\x55\x43\x38\x91\x0a\x98\x64\x45\x0b\x5e\xe9\xe8\x6a\xcf\x48\x96\x00\xd5\x4c\xb2\xc5\xf9\x29\xd7\x83\x6b\xfd\x71\x81\x43\x88\x1a\xc4\x48\xb1\x93\x32\x0a\xd4\xe2\x29\xa1\x0a\x06\x83\xc7\xb7\x5a\xaf\xd0\x3e\x1b\xae\x57\xd1\xba\x70\xc6\xfa\x7f\xb9\xf5\xe3\xac\x6d\x0a\xf0\xb6\x28\xe5\xbf\x26\x9c\x2b\xab\x40\xe2\x26\xa7\x4b\x70\x49\x1a\xc4\x89\xb6\x5e\x10\xae\xe6\xac\xa1\x62\xb1\x04\xec\x02\x80\x7d\x9b\x5f\x7e\xd4\x10\x97\x30\xe4\x11\xba\x14\xd2\xca\xca\xe0\x54\x12\x5c\x56\x60\xba\xb2\x19\x22\x72\x09\x94\xa2\xac\x17\xe0\xf4\xc5\x73\x67\xc6\x08\x26\x45\x80\x51\x6e\x4b\xd3\xc6\x60\x10\xc0\xf6\x6c\x57\x2d\xd6\x4e\xed\x48\xca\x2f\x42\x0a\x3a\xa3\x1a\x0a\x69\x96\x80\x00\x76\x96\x96\x62\xc7\xba\x5d\x4e\x49\x13\x6e\x68\xb0\x1d\xb0\x42\xcd\x69\xe4\x88\x4d\xa5\x18\x96\xe0\x3d\x89\x29\x57\x90\x13\x2c\xf5\xf2\x69\xc5\x8a\x6b\xb5\xca\x00\x5a\x8b\xb1\x00\xb4\x11\x69\x68\x4e\x6f\x48\x6d\x89\x33\x42\x54\xa0\x02\xd7\x88\xe3\x19\xa9\x36\x1d\x46\x88\xaf\x5a\xc9\xcf\xe9\x8b\xe7\xa0\x6b\x3f\x7c\x96\x6e\x94\xb8\xcd\xa3\x1d\xda\x3c\xce\xb4\x49\x0f\x43\xdc\xcc\x89\x40\x65\xab\x6d\xd0\x3c\x9b\x8c\x24\xd5\x39\x29\x58\x5d\x3a\xde\x56\x5d\x4f\x75\xcf\x14\x8f\x68\x08\x79\x96\x82\x07\xb0\x6b\x88\x60\x89\xd5\x60\x07\xab\x86\x14\x94\x4b\xc4\x7e\xac\xe9\x07\xe8\x1f\x8d\x7f\x56\x97\x57\x74\x49\xcc\xf0\x9d\x47\x6f\xd6\xb8\xed\x3f\x7a\xc1\x5d\x6a\x0f\x5f\x0b\xd2\xb9\xba\xdc\x01\xec\x01\x02\x67\x24\x40\x93\x82\xc5\xb3\xcc\x3b\x26\x6e\xe1\x2e\xb0\x54\x86\x49\xed\x76\x4c\xdf\xc9\xac\xe7\x73\x87\xb3\x99\xbc\x6f\x71\x65\x18\xd2\x74\xa2\xe9\x11\x6d\x15\x2e\x6f\x8f\x02\x22\xbb\x1e\xcf\x57\xa0\xd7\xf1\xb6\x12\xe6\x88\x78\x33\x41\x78\x3e\x6f\xa4\xf6\xa9\x1d\x1f\x72\x8e\x91\x4c\x37\x02\x3a\x80\xe5\x0b\x6b\x4f\xe0\xa2\x86\x14\x84\xde\x10\xa5\x26\x62\xcf\xbb\x63\x04\x76\x00\xe5\xcd\x04\x81\x8b\x4e\x29\xbe\x19\x27\x0e\x68\x85\x20\xde\xcc\x91\xa1\xfd\x34\x84\x7b\xb3\x36\x42\xbc\x53\xaa\xbf\x99\xe4\xe4\xba\xa2\x85\x5c\x91\x55\x3b\xad\x68\x21\x95\x07\xee\xb8\x4d\xcb\x50\xe5\x51\x21\x75\xc1\x4a\x29\x98\xb8\xd4\xdf\x41\xbd\xab\xd8\xfa\x60\xce\xc2\x43\xa9\xd9\xac\x04\x43\x15\x9d\x36\xb8\xd9\x80\x5b\xa4\x46\x0b\xf2\xe1\x40\x77\x0f\x05\xe2\xf3\x86\x49\x31\x6b\xc7\x96\xdc\x2b\xac\xbe\xa0\xc9\x3f\x42\x33\x56\x55\x6c\xad\x0c\x07\xf0\x19\xd6\x25\xbd\xa1\xa5\x64\x1a\x89\xb0\x05\x59\x5e\xcf\x2f\xda\xe9\x0b\xb2\x91\x64\x50\x07\xc7\x2f\xdd\x1a\xf0\x5b\x52\xb0\x1b\x38\xb4\xfa\x36\x22\x96\x0b\x2a\xdb\xa9\x4e\xb0\x29\xb1\x3a\xe3\xa8\xf1\xcd\x09\x73\x42\x5b\x17\x90\xf3\x89\x59\xa7\x90\xc5\x60\x4e\xc0\x09\x23\x8d\xde\x1a\x9d\x3d\x7b\x09\xa1\x04\xa2\x6d\x8e\xee\xa1\x5a\xae\x46\x91\x0d\x1a\x5a\x92\x8c\x21\x2b\x99\x50\x83\x08\x86\x96\x47\x87\xb4\x25\x2c\x0a\x7c\xa5\x94\xc3\x31\xba\x5a\xc8\x59\xc4\x14\xd0\x8b\xae\x28\x6e\x4f\xd1\xc0\x8b\x24\x18\x6a\x57\xa5\x46\x9c\x36\xa8\x62\x05\xae\x5c\x5b\x35\x27\xa3\x99\x80\x71\xaf\x31\xb3\x48\x68\xe7\x37\x16\xb8\x57\xf1\x37\xcb\x34\xd8\x2a\x5e\x74\xcb\xcd\xd9\x9f\xa6\xb1\x83\x0a\x0a\xee\xf6\xff\x3e\x2d\xbd\x83\xba\x77\x56\xd2\x3b\xe1\xde\x49\x47\x0f\xa1\xfe\x81\x2a\xba\xe9\x96\x08\xe7\x13\x8b\xa4\x94\x4e\x46\x3c\xfd\xa5\x6d\xff\xa5\x6d\xff\xa5\x6d\xdf\x5d\xdb\xee\x91\x0e\x6f\x26\x1c\xad\x30\x9c\x66\x9a\x13\xbb\x8e\x59\x88\x6d\x72\x02\x8c\x67\xb4\x2c\xf0\xc2\x1d\xb0\xd9\xc1\x14\xd7\x65\x30\x46\xcb\x4d\x28\x8a\xe3\x25\x71\x31\x12\xa9\x21\x99\xb8\xbd\x3a\x69\x33\x8a\xda\x4f\x4c\x90\x53\x2c\x70\xb7\xbe\x66\x5a\xe4\x24\x04\xf0\xb4\xa7\xb1\xed\x38\xbd\x00\xce\x44\xa9\x0e\xd5\xc6\xc4\x2c\xe5\xac\x1b\x72\x00\x7a\x86\x55\x01\x41\x74\xf3\x16\x8e\xe6\x59\x5b\xc9\x91\xc7\xe8\x15\x33\x8a\x29\x04\xa8\xe8\x72\x55\x51\x13\x6e\x0a\xc6\x08\xa4\x30\x7a\xf9\xe3\xe5\x15\x5a\xe0\x1b\x12\xec\xdf\x42\x1b\x31\xc4\xfa\xe1\x95\xb3\xb0\x70\x26\x41\x84\x44\x30\x84\x24\x85\x05\xf1\x45\xb4\xcb\x5e\xf5\x32\xf1\xb0\x4e\xcc\x49\xa1\xd9\xba\x40\x4b\x22\xb0\xd4\x72\x10\x9e\x82\x43\xd7\x37\x09\x42\xbb\xeb\xa4\xaa\xd0\x82\x72\xc1\x1a\x98\xbd\x52\x3d\x6c\x77\x48\x3a\x61\x8d\xb4\xf6\x48\xb3\xc4\x35\x2c\x5e\xa2\x39\x71\xd1\xb4\x85\x56\x9d\x5e\x9a\xae\x1f\x53\x16\x52\x44\x9e\x51\x4f\x7f\x0a\xdd\xd8\x3e\xd0\x8a\x88\x58\x8d\xca\x1c\x5b\xf2\x78\x52\xdc\xc3\xac\x95\x62\xb6\x88\x9a\x0b\xb7\x5e\xe3\xdc\x08\x12\x80\x39\x82\x7a\xb5\x13\x93\x0f\xd1\x8f\x30\x17\xb8\x09\x34\x93\x3e\xc5\x64\x37\x90\x24\x0c\xa0\x6c\x05\x98\x04\xb1\xfa\x90\x95\xed\xce\xb6\x0d\x90\x09\x19\xc8\x7d\x6b\xc3\x05\xdb\xd7\xf2\x06\x37\xd9\x58\x41\xce\x3a\x94\x0d\x10\x5e\xca\x95\x8f\x07\x13\x4c\xa9\x01\xde\x6e\x01\x9d\x48\x9e\xa4\x54\x70\x2f\xa4\xd3\x89\x85\x82\x7f\xa2\xc0\xe7\xd5\x55\x8d\xe3\x77\x0d\xc1\xd7\x25\x5b\xd7\xbf\x44\x58\x36\xb8\xb8\xe6\x88\xce\x2c\x45\x40\xbc\x80\xef\xc2\x0b\xd5\xf4\xae\xab\xc3\x84\x5f\x60\x5a\x1e\xa1\xef\x18\xab\x52\x62\xb0\x66\x8e\x6b\xfa\x9b\x3a\x2d\xd9\xcc\xf9\x53\x9d\x2a\x08\x36\x9d\x96\xf0\xa1\xaf\xc0\xe6\xd9\xa8\xd8\x17\x6a\x58\x2b\x4d\x35\x36\x95\x27\x1e\x6b\x60\x97\x58\x1d\xae\x67\x07\xee\xea\xc2\x4d\xd1\x7f\xa3\x3c\x0b\x13\xe7\x59\xf0\xec\x7c\x97\xda\x67\xc2\xb4\x9d\x94\xda\xc9\xd3\x90\x0e\xef\x1f\x56\x98\x73\x56\x50\x38\x5a\xad\x7d\x78\xea\xe5\xa2\xbc\x20\x1b\xf4\xdc\xe6\xa2\x44\x0e\x20\xb0\x4b\xb5\xa2\x6d\x8f\x10\xe5\x82\xb1\x4a\x9e\x90\x32\x3c\x73\x12\x78\x47\x00\xec\x53\x63\x0f\xc8\x53\xa7\x2e\xc9\x87\x23\x54\x91\x7a\x2e\x16\xe8\x00\x3d\xec\x24\x40\x79\x3d\x8f\x1c\x0c\xb6\x29\xad\xa9\x18\x24\xd6\x26\xf2\x3f\xbe\x88\x8b\x7f\x8a\xc5\x55\xf4\x3b\x89\x83\xb7\x71\xef\x8c\xfc\x88\x1a\x75\x87\x08\xed\x67\x9f\x30\x41\xd8\x71\x37\x17\x54\xd0\x27\xa1\xe5\xd0\x3f\xa9\x14\xbd\xaa\xd9\xd8\xd8\xf9\xc7\xe6\x0c\x4a\x9b\xc0\xd9\x73\x0c\xe4\xcd\xfc\x68\x28\x2b\x5b\x98\xff\xa7\xcd\x34\x81\xd1\xb1\x21\x75\x16\x92\x47\x65\x05\xce\xfb\x22\xed\xe0\x53\x1c\x1d\x07\x0b\x90\x36\x0e\xe4\x21\x3a\x46\x3f\xff\xd2\xd5\x06\x24\x15\x3a\x46\x33\x5c\x71\x92\x23\x58\xb4\x88\x40\xba\xe8\xbb\x4c\x37\xbb\x84\xb2\xbd\xfd\x23\x6d\xa8\xd7\x0d\x1d\x9b\x15\xb4\x4d\x3e\xdd\x4b\x36\x4e\x01\x8b\x36\x44\xb3\xb6\x46\x05\x5b\x6d\x06\xc3\xa3\x44\x3b\xf1\x47\x68\x88\x68\x9b\x1a\x06\xda\x15\x2c\x27\xe2\xca\xa3\xec\xe0\x57\x54\x93\x75\xc4\xe7\xc3\x68\x98\xdc\xf2\xb8\x5e\x7b\x8c\xfc\xd6\x5f\xb5\xc1\xaf\xfa\x2c\xb1\x27\xd6\x8e\xe7\x5a\x16\xbd\x98\x21\x22\xd0\x7b\x23\x09\x6c\x63\x51\xf4\x8e\xbb\x9e\xd1\x0d\xab\x79\x7f\xed\x31\xae\xdd\xfa\x7c\xf0\xbe\xe8\x93\x0c\x59\x0c\x02\x86\x7c\x5f\xec\xb3\x2a\xa7\x2f\x9e\x83\xd0\x7f\x41\x36\x83\xeb\x44\xc6\xf4\x70\xf4\x75\xc8\xce\x28\x4c\x7c\xb2\x3c\x6b\x6c\x15\xc8\x4b\xd7\x0e\x04\x69\xf9\x4f\x21\xe5\xad\x9e\x3b\x73\xe2\xa4\x5c\xd2\xfa\xf0\xf0\xb0\x4b\x53\x9f\xb0\x7a\x46\xe7\x1e\x52\xe6\xcc\x54\x3e\x0d\xa9\x6b\x48\x85\x12\xf2\xf6\x70\x8d\xa4\xd6\xde\x6c\xd3\xef\xea\x76\x29\xe5\x11\x3f\xaf\x61\xa7\xa5\xea\xa4\xdf\x41\x53\xec\x55\xd8\x67\xf0\xab\x1a\xd6\xf4\xcd\x92\x2d\x1a\x07\x1d\xab\x3e\xb9\x75\xea\x99\xd5\xae\x7a\x72\x38\xb3\xcb\x20\xb5\x69\xcf\x29\x86\x9d\xf7\x9c\x6b\xd8\xf9\x96\x93\x06\xe5\xb9\xbc\x9e\x2b\x6f\xd0\x0e\xf3\x35\xee\x9d\x3d\x67\x6a\xba\xed\x39\x47\xd3\x6d\xbf\xd9\x39\xa5\xd8\xa8\xc1\x76\xaa\x5b\x19\x76\x92\x6a\x1e\x12\xd3\x87\xff\xb3\x6d\xa2\x49\x47\x29\xff\xdb\x65\x0c\xa6\x6b\xc2\x49\x77\x79\x10\xb8\xee\x9d\x13\x57\xa6\x87\x4a\x88\x16\x44\x2a\x91\x2a\x35\xd6\xcf\x1d\x5b\xe1\x8d\x34\xca\x68\x5d\x34\x04\x73\xc2\x11\xb9\x21\xcd\x26\x93\x79\x06\x61\x98\x1b\x5c\xb5\x04\x84\x4a\x5b\x09\xba\xaa\xa8\x13\x22\x90\xc0\x26\xfc\xcc\x36\xc1\xd0\x9c\x08\xcf\xa9\x08\x43\x75\x12\x58\x02\x50\x3d\xcf\x35\x32\x17\xa4\x29\x48\x2d\xf0\x9c\xa4\x16\x60\x86\xd0\x7d\x00\x06\xbf\xa2\x55\x02\x2d\x4b\xef\x3e\x28\xe8\xd8\x83\x92\x23\x3b\xe8\xd7\x1d\xa2\x6d\xb4\x55\x32\x8c\x7a\xf6\xd2\xa8\x97\x01\x47\x3b\x51\x6f\x47\x01\x19\x7d\xb3\x97\x9c\xe9\xfa\x69\xc7\x8d\x9c\x7e\xb9\xd7\x86\xd8\xae\x40\x6e\x59\xdd\xbe\x9f\xbb\x8f\x5c\x75\x3e\xfa\x7e\x6a\x9d\xb5\x4b\x97\x52\x93\xb2\xed\xce\xac\x94\x81\xec\x74\x13\x96\xc1\x89\x1f\x1a\xc2\xba\x14\x4e\x6f\xf0\x47\xa1\x81\x34\x43\xf5\x39\x14\x67\x16\x0c\xdd\x00\x2a\xe4\xe8\x23\x53\x92\x99\x0a\x54\xa0\x86\xcc\x48\x43\xea\xc2\x38\xba\x8c\xc9\x82\xf5\xa0\x5c\xe0\xe5\xca\x24\xcf\xeb\x6e\x16\x30\xae\x2a\x34\x6b\x05\x64\xfe\x87\xb8\xf2\x31\x3a\x9f\xa1\x77\xda\xe3\xad\x92\x2d\x00\xf0\x3b\x98\x63\x9d\xf8\xd2\xc5\x82\xd4\x16\x2e\xdc\xaa\x88\x26\x4f\xb9\x8e\x59\x4c\x37\x47\xa6\xa1\xed\x10\xf9\xd6\x41\xeb\x9b\x5d\x19\xf4\xd1\xb7\x2e\x5c\xf0\x37\x34\x48\x91\x3a\x68\xc8\x4c\xff\x77\x18\xc0\xee\xf2\x4f\x5e\xc1\x12\x76\x2a\x40\x76\x34\x13\x72\xea\x8e\x49\xc4\xae\x92\x32\x8a\x4e\xa4\xc1\x01\xbd\x40\xda\x4d\x17\xad\x5f\x27\x5c\x37\xc3\x4e\xc8\x96\xd4\x79\xd0\xfb\xc7\x3b\x32\x38\xd8\x35\xc9\x3b\x0a\x27\x6c\xb9\x6a\x85\xe5\x26\xbe\xa6\xa2\x58\xa8\xac\x00\x89\xd8\x14\x73\xc8\x0e\x42\x6c\x36\xe3\x44\x28\x3f\x90\x43\x53\x93\xe6\xd0\x75\x1b\x77\x1e\x0c\x73\x22\xae\x7c\x96\x79\xc6\x1a\xa3\x3d\xa6\xfc\x61\x55\x0f\xf3\x9f\x6e\xcb\x6f\x1c\x31\x9e\x52\xd2\xfb\xb9\xcf\xf4\x0b\x58\x30\x77\x84\xc4\xcc\x31\xca\x2c\xeb\x28\x4b\xe6\x58\xc6\x47\x78\x1d\x5b\xbe\xcb\xb4\x72\x63\xa8\x7d\x35\xc9\xf8\x32\x32\x73\x0f\xf7\x60\xb7\x98\xfc\x9e\x55\xa5\x52\x47\xde\xd9\xeb\x34\x63\xb5\xb5\xde\x99\x4d\x67\xdd\x6d\x56\x8c\x4d\x2b\x62\x03\x0c\xfe\x56\x35\x7e\x40\xe3\x78\x74\xcd\x8d\x05\x74\xa4\x05\xf3\x0e\xb6\x91\xd6\x61\xc2\x5b\x5f\x4e\xfa\x29\xcb\xa9\x66\xa2\xcb\x78\xca\x04\x57\xb0\x1f\x27\x69\x48\xc1\x1a\x9b\x1e\x6f\xe3\x25\xc0\xd6\x3a\xf3\xcd\xcb\xd3\x77\x72\x17\x9c\x7e\x6a\x2c\x25\xb5\x95\x22\xeb\x86\x7b\x0b\x0c\xc9\x33\x60\x61\x3e\x76\x1f\x87\x51\x1c\xd6\xa0\x9a\x56\x88\xce\xd4\x21\x53\x7f\x23\xd0\x8c\xb5\x3a\x78\x68\x63\xde\x8e\x5c\x2e\xae\x23\x2d\x3c\x65\xc7\xc2\x37\xf2\xd4\xe4\x2a\x02\x36\x6f\xd8\x5a\x8a\xf9\x92\xc2\x81\x8f\x9b\x8d\x85\x56\x32\xc2\x91\xa4\x1e\xb8\xbe\x55\xec\xbd\x62\xb8\x94\x78\x81\xb6\x09\x7b\x3e\xb8\x83\x43\xb9\x6e\x91\x48\x67\xbd\xa7\x03\xff\xcc\xe0\x57\x35\xc1\x74\x17\x07\xcd\xfe\xe1\xed\x0d\x3a\x03\xbe\x31\x34\x3b\xb5\x58\x83\x8f\xae\x9a\x8d\xf5\x34\xc7\x7a\x9a\xe3\x29\x6b\x1a\xb6\x7e\xf2\xf5\x47\x05\x3b\x02\xfd\xe9\xe9\x40\x52\xfd\x48\xf5\x35\x50\x2f\x55\xdf\x0b\x2c\x16\xf1\xbe\x8c\xc6\x7f\x4b\x66\xe8\x38\x83\xcd\xcf\xfe\xbc\x7e\x89\xf7\xb6\x93\x48\x1e\x9c\xb1\x72\x61\x05\x2d\x3f\xdd\x4b\xff\xa7\x7b\xd6\xb4\x8a\x37\xea\x25\x56\xc9\x07\x4b\x56\x2a\xee\x09\x9d\x61\x7a\xab\xea\xc8\xa7\x0b\xfe\x25\xac\x91\xdf\xae\xa0\xad\xe3\x1b\x12\xaf\x60\x4d\xd6\x6e\xe7\x06\x3f\xfa\xb4\x5b\x35\x24\xeb\x87\x51\xa1\x62\x5f\xda\xa2\xe3\x63\xf4\x00\xfd\xfe\x7b\xd0\x78\xe0\x8d\x62\xbd\xb6\x4f\x8f\xbb\x81\x1c\xa0\x87\xe8\xeb\xaf\x03\x18\x39\x10\x4f\x34\x88\x55\xc3\x56\x8c\x93\xd2\x87\x31\x18\x0e\x8f\x92\x75\xbb\x3f\x51\x02\x05\x68\xbc\x89\x03\xa9\xb0\x83\x4d\x89\x80\x99\x20\xe6\x36\x8f\x02\xae\x5b\xb3\xc6\x5e\xb9\x4c\xae\xfa\xdc\xcf\x2c\xf8\x6d\x59\x1e\xb7\x62\x31\x78\xd9\x0a\x2c\xc8\x10\x7d\x21\xfe\xcf\x33\x7f\x86\xd2\xb9\x3d\x80\x39\x27\x70\xab\x2e\xfe\x41\x7e\x96\xf1\x52\x1d\x1f\xe7\x56\x70\xd4\xd1\x99\x73\x30\xa0\xcc\x72\x49\xc6\x75\x48\xc3\x69\xb5\xa4\x7c\x89\x45\xb1\x70\xa9\x78\x1a\x24\xbf\x9f\xc0\xec\xda\x95\x3e\xa2\xdb\xe6\x1f\xa0\x9f\x3f\x6d\xb3\x7b\xce\xa4\x8b\xbc\xf5\xd2\xa9\x06\x43\x13\xea\x89\x94\x5b\x95\x73\x65\xf2\xbc\x96\x3a\x0b\x1a\xa3\x05\xf9\x20\xf7\xbf\xec\xc0\x66\xe8\xf1\x23\x79\x1a\xca\x21\xa4\x0d\x36\xa0\x63\x82\x1e\xfe\x0f\x9a\x6e\x04\xe1\x92\x3b\x1f\x3e\xfa\x3b\x9a\x52\xc1\x87\x01\xe8\x77\x8d\x14\xfa\x82\x4e\x2b\x8d\xca\x3b\x2d\x8a\xa4\xc8\xd1\x5a\xd7\xe0\xef\x0a\x8a\xeb\x09\x6a\x25\x34\xff\x81\xad\x41\xe5\x08\x81\x3c\x51\x3d\x9f\x0e\x86\x63\xc1\xbe\xa3\xf3\xb3\xba\xa4\xb8\xfe\x4e\x02\x19\xe4\xa0\x7c\x4f\xe7\x8b\x5b\x83\x81\x80\xac\x47\x46\x74\xac\xa9\x38\x56\x39\xc4\xdf\x93\x0f\x03\x37\xcc\x70\x5c\xb0\xba\xc0\x62\xd0\xd1\xe6\x07\xb6\x1e\x3a\xd8\x59\x66\xf6\x07\x1b\xeb\x10\xe0\xf1\x31\x7a\xfc\x68\x74\x2f\xcf\xae\x6f\xf7\x5f\x3f\xc7\xad\xc3\x7b\xf1\x21\xe1\x8f\x1f\x9f\x16\x9e\xad\x32\x92\xab\x7e\x7e\x3a\xca\xde\x03\x4c\x4e\x72\x08\xd6\xa6\x22\x37\x34\x18\xec\x08\x1a\x94\xca\xe9\xb3\xd7\xc6\xad\x35\xad\xc3\xa9\x7d\xf0\xb5\x3f\xc5\xfd\xdf\x8d\x20\x25\x94\x57\x6d\xc5\xd3\x4f\x41\xbd\x7b\x07\x75\x2b\x80\x94\x56\x15\x4a\x86\x93\xbc\x85\x65\x6b\x4f\xea\xc9\xdd\x65\xff\xd8\x65\xb8\xef\x09\x6e\xc4\x94\x60\xb1\xf3\x90\x0b\xd3\x63\xff\x61\x3b\x44\xf9\x3b\x4f\x87\xdb\x32\x78\x46\xd0\x77\x8c\xfd\xd6\xcc\x46\x05\xc6\xc1\x31\x00\xb9\xd9\x9c\x39\x43\xd4\xaa\x7f\x33\x4a\x2a\x6d\x3b\xfb\x43\x5a\x92\xc0\xaa\x74\xdc\x60\x97\xb2\x4e\xc1\x86\x69\x81\x3f\x49\xa9\x17\xee\xef\x2e\x6b\x29\xd5\x2e\xe4\xc7\x2d\x4f\xc2\x4e\x72\x17\xba\xbf\xc6\xe1\xbd\x7e\x75\x6c\xa8\x4b\x2e\x7a\xb6\x6a\x62\x26\xf9\x2e\x13\x56\x48\xcf\x0c\x37\x3a\xe5\x3f\xe1\x8a\x96\x30\x54\xe0\x73\x1a\xe8\xce\x3f\x90\xfa\xc8\xc7\x36\x63\x14\x75\x3a\xef\xf2\x07\x60\x79\x3d\x87\xe1\xf6\x83\x6c\x9c\x77\x79\x98\xb0\x67\x01\x60\xb0\x26\xc3\x23\x74\xff\x15\x59\x6b\xdb\x03\xbe\xb2\x82\x2b\xbe\x16\x8b\x78\xbb\x94\x4c\x63\x89\x57\x97\x90\x66\xa7\xd6\x04\xc2\x01\xf7\xa3\xa3\xf6\x5e\xc7\x8a\xe6\x66\x92\x89\x35\x85\xa8\xe6\x0c\xf7\x3c\x0f\x6a\xea\x7a\x5c\xe8\x7f\xf3\xdf\xcc\x87\xd1\x54\xff\x0c\xfe\xda\x19\x20\x34\x92\x0c\xb8\x0f\xf3\xd5\x64\xfd\x87\x30\x60\x14\x09\x8c\xe8\xba\x07\x2f\x1a\xb2\x79\xcc\xe8\xfe\xfe\x6f\x66\xc5\x2f\x27\x12\x03\x12\xfe\xb9\xec\xe8\xb3\xa2\x64\xcd\x2f\xc5\x8e\x36\x5c\x1b\xcc\x7d\x0f\x36\x4c\x1c\xeb\x8a\x15\xd5\xff\x8f\x52\xbf\xfb\x5d\x38\x72\xe2\x4c\x7c\x3b\xc4\xd8\xf7\xa5\xde\x7f\x1b\xc5\x45\x0c\x99\xb5\x69\xed\x6a\x10\xc5\x04\xcc\x0f\x1e\xdb\xd0\x15\xc3\xe5\x93\x64\x4a\xc6\x5a\x3e\xd4\xcd\x0e\x67\x06\x40\x30\xf1\x1d\xc7\x90\x46\xe9\xc0\x4e\x6f\x84\x04\xdb\x1d\xf2\xd6\xd5\xea\x0a\x5f\x93\xf5\xab\xed\x11\xec\x7f\x37\xe1\x71\x1b\xb6\x4f\x67\x1f\xce\x7d\x0f\x5a\x3e\xfb\xe1\xf5\x3f\x2f\xbb\x23\xd4\x72\x43\x6d\x0d\xda\xfe\xbb\x91\x14\x29\x8f\x98\x17\x46\x7d\x72\x8c\x1e\x8e\x1f\x68\x6d\x4e\x65\x0c\xb8\x4d\x25\xd6\x84\xd4\xe8\x37\xd2\x30\x10\x54\xac\x26\x77\x5c\xa1\xde\xa8\x7f\x80\x58\x76\xa1\x0e\x0f\xd1\x59\x0d\x41\x06\xd6\xa0\x92\x72\xf8\x2f\x6e\x05\x5b\x62\x41\x0b\x9b\x26\x51\xe0\xaa\x68\x2b\x53\x34\xae\x2e\xd1\x0a\x6f\xe0\xa2\xdc\x56\xf5\x4f\x43\xd2\xe9\x6d\x6a\xac\x72\xf0\x2b\x22\xea\x7f\xf9\xec\xb6\x2d\xf2\x44\x76\xc9\x8a\x90\x8e\xe1\xf6\x12\x24\x1a\xb1\x8c\x18\xd9\x0a\xdd\x09\xc5\x4e\xb2\x90\x25\x15\xfe\xa5\xd9\xb3\x1b\x52\x8b\x41\xce\x7b\x1f\x9e\xa6\x5b\x72\x8f\x77\x49\x2e\xee\x4d\x4f\xde\x9a\x9b\xd1\xd1\x3a\xc9\xd3\x08\xdb\xc1\x1d\xdb\xe4\x32\x8e\xf9\x6c\xbb\x77\xe9\xb7\xcd\xdf\x82\xf4\x5b\x6c\xbb\xf5\x86\xba\x6f\xa6\x65\x90\xda\xf3\x02\x98\x0f\xa1\xfb\x16\x92\xf9\x24\x51\x4a\x9f\x65\x90\x0b\xa5\x99\x50\x43\x77\x15\x4e\x7d\x93\x2c\xce\x58\x42\xda\xd9\x07\x79\xf7\x5b\xee\x19\xa7\x79\xcc\x33\x7d\x67\xe2\xfc\x14\xd1\xda\x2c\x62\x06\x65\x80\x3e\xc6\xab\x15\xa9\xcb\x41\xcf\x10\x03\x05\xe2\x48\x83\x1a\xc6\x6e\xe0\x04\x6d\xa3\x63\xba\x0b\x97\x7e\x62\x38\xfa\xb6\x93\x5d\x83\x9f\x6c\x62\x8d\x7f\x5b\x20\x1e\xe2\xd1\x2d\x86\x18\x3c\x42\x7f\xcb\x8c\x33\xec\x1d\xe8\xf1\x6d\x06\x7a\xdc\x33\x50\xc2\x30\x52\xb6\x84\x37\xf2\x21\x41\x26\x14\x02\x71\x9b\x34\x6a\x60\xef\x47\xf8\x52\x29\xd5\xed\xdd\x2d\x76\x60\x83\xb4\x81\x77\xef\xdc\x4e\x37\xd7\xca\x5e\x85\xd5\x02\x2a\x6d\x93\x93\x13\xe9\x77\x69\xbf\x50\x66\xf8\x7f\xa5\x6d\x73\x77\x7c\x53\x36\xec\xee\xf7\x28\xd3\xef\xd1\x0e\xfd\x1e\x67\xfa\x3d\xee\xe9\x17\x4b\xb9\xf0\xef\xae\xf6\x56\xe2\x05\x7f\x76\x52\xda\x17\x7e\xc9\x57\x69\x2f\x5f\xe0\xb9\xff\x47\x22\x2f\xaf\x7d\x1c\xa2\x0b\xd2\xcc\x58\xb3\xe4\x88\xe3\x5a\xca\xb7\x62\x41\x8a\x6b\xee\x95\xf0\x63\x37\xb4\xb4\x41\xbf\x20\xbd\x0b\xca\xe9\x40\x3d\x3e\x52\xf3\x56\xbb\x75\xd5\x65\x51\x5a\xcf\xff\x77\x30\xcc\x01\xba\x02\xcf\x2f\xd4\x45\xbd\x91\x46\xb3\xf6\xa5\x87\x10\xa3\x3e\x27\xb6\x08\xa2\xa9\xc9\x0a\xd5\x25\x4a\x0e\xb5\x09\xcc\x55\x59\x55\xea\x01\x3d\x45\x0f\xa2\xf2\x70\xb3\x30\x97\xc3\x14\x0a\x31\x08\x84\x3f\x40\xf5\xdb\x54\xdd\x0c\xaf\x6d\xbf\x2f\xd0\x0d\x13\xc6\xce\x2d\xaf\xe7\xb6\x1e\x21\xa9\x25\x95\x4a\x22\x85\x31\xc4\x37\xea\x4c\xfd\x91\xe8\x62\x7b\xac\x9d\xf8\xf7\x92\x2f\x1a\x32\x81\xa5\x18\x7c\x71\xdd\x23\xd6\x12\xf6\xd5\xf9\x77\xf3\x82\x84\x78\x1e\xd8\x59\x7d\xfb\x70\x74\x57\x3f\x9c\xe7\xe4\x20\x29\xf8\x4c\xf8\x5b\x7e\xee\x9f\xd7\x8a\x0d\x9c\x74\x8c\x70\x54\xc5\x43\xcc\xad\xa7\x80\x5b\x7a\xad\x06\xa8\x49\xe2\xed\x26\xaf\x96\x27\x5f\xb0\xb6\x2a\x53\xc6\xbd\xd5\xf9\xaf\x62\x75\xf9\xb8\xf3\x1e\xea\xc0\x58\x55\x80\xae\xfe\x69\xb1\x19\xa1\x2c\x4c\x17\xdf\xc3\xfe\xbe\x0c\xf7\xa4\x44\x3e\xd4\x8a\x94\xf9\x95\x4c\x79\x7b\x78\x3a\x22\xaa\xaa\x57\xb1\x56\xf7\xf0\x29\x54\x06\xf2\x6b\x66\x5f\x42\xf6\xd4\x44\xc7\x70\x54\xcd\x57\x41\xa0\x54\x57\x45\xaf\x49\xb5\x41\x25\xbd\x21\xcd\xdc\xbf\xbc\x7f\x61\x2a\x72\x5c\xca\xb6\xa3\x58\x09\xd4\xe9\xa8\xac\x29\x16\x84\x8b\xc6\x16\xc9\x9e\x92\x05\xbe\xa1\xac\xb5\xd9\x91\x4a\x13\x43\xe8\xa4\xde\x18\x1e\x82\x60\xa4\x5f\x49\x14\x2a\xbb\x8c\x91\xaa\x17\x6e\x02\x88\x5e\xb9\xef\x78\x6c\x3f\x19\x09\x0b\x41\x96\x2b\xa1\x2b\x5a\x37\x6d\xad\xae\x19\x37\x6c\x8a\xa7\xd5\xc6\xcb\x57\x9c\x72\x06\xd5\xa9\x61\xa7\x28\x91\x3b\x63\x50\x95\x9a\xa0\x7f\xc9\x65\xc0\x53\xd6\xc0\xd0\xcb\x71\x42\x5e\x93\xfc\x16\x2e\x1f\xf4\x25\xb3\x19\x29\x04\xbd\x91\x64\x94\xbf\xad\x1b\x2a\xac\xb8\x14\x36\x82\x96\x5b\x89\x11\xc2\x15\x9d\x43\x35\x6e\x2a\xc2\xf2\x2b\x7a\xe0\x74\x25\x1c\x81\x4c\x85\xa6\xc2\x14\x63\xd0\xaf\x09\x10\x0e\xa0\xc6\xe1\x92\xd1\xd9\xad\x5d\x11\x99\xfd\x75\x78\xa8\xc9\x15\x17\x5a\xee\x91\x85\x2a\x69\xc5\x68\x92\xe5\x92\xd6\x83\xe1\x98\xd4\x65\xe4\x45\x8f\x58\x1d\x91\x8a\xe7\x64\xac\xae\x4f\x53\x40\x21\x32\x7d\x99\xe1\xcd\xc4\xb8\xfb\xb7\xa2\x61\x2d\x25\x83\x08\xc0\xba\x14\x6c\xf5\x13\x1c\x62\x11\x1a\x39\x10\xa7\x2f\x9e\x07\x9d\xcf\xea\xf2\xf4\xc5\xf3\x9e\xfc\xae\xe0\xb8\x3c\xab\x75\xca\xa5\x5b\x3e\x0c\x6c\xe4\xd5\xe3\x02\xf1\xcb\x75\x7d\x6b\x56\x7b\x35\xb1\xac\xee\xd1\xa3\x23\xc0\xbd\x90\x25\x11\x18\xe9\x94\x18\x7d\x1a\xeb\xa2\x63\x7e\xd2\x7a\xb6\x9c\x99\x2e\xf0\x35\x6b\x6b\xb5\xb4\x25\x9d\xcd\x48\xc3\xc3\x2a\x1d\x3a\xff\x17\xba\x4f\x3c\xae\x42\x53\xa2\x0a\xb9\x53\x7d\x85\x05\x14\x61\x2f\x33\xc0\xcf\x72\xd7\x75\xdf\x95\x23\xc7\xde\x80\x19\xa3\x74\x3a\x16\x19\x53\xd4\x4c\xa7\xdf\x43\xa9\x14\x28\x74\x94\xab\x61\x06\x48\x2a\xb4\x9e\xe1\xaa\x9a\xe2\xe2\x1a\xbd\x94\xa2\x79\x70\xf6\xec\xe5\x70\xab\xd2\xf1\x4a\x47\x18\xbf\xb8\xba\xf1\x79\xfd\x04\x3b\x39\x2f\xfe\x08\x9f\xc2\x56\x2d\x2a\xa4\xa2\x4a\x63\xde\xa2\xee\x75\x6a\x26\xb1\x36\x35\x72\x24\x37\x56\x9c\x43\x48\xff\x67\x98\x98\xc6\x51\x0e\x91\xdb\xfa\xf9\x5c\xad\xd4\x4f\xd0\x73\x13\xe7\x96\x31\xaf\x9e\x21\xbc\x7b\x3a\x7b\x6b\x88\xa9\x7e\x36\x81\x30\x16\xc8\x9c\x30\xbd\x34\xef\xd9\x09\x0b\xf5\x81\x57\x99\xa7\xb8\xea\x2d\xf4\xd2\x65\x15\x86\x59\xa6\x09\x16\xe7\x46\x68\x64\x64\x06\xdc\xc2\xd1\x58\xc8\xc3\x47\x55\xd8\x73\xaf\x00\x84\x1c\x6e\x9c\x06\x8e\x34\xf9\x5c\xd0\x68\x33\x43\xb5\x85\x6e\xcb\x3c\xcb\x8b\xf9\xad\x9e\xf5\x1e\x6c\xe1\xda\x58\x11\xb8\xf2\xed\x47\x13\x09\x30\x22\xdd\xa8\x1d\x82\xc0\xbb\x4d\xef\xac\x28\x3d\xa9\xcb\x4b\x7b\x81\xfb\x1d\x9a\x92\x8a\x85\x85\x06\xc2\xaa\x0e\x0f\xc6\x0f\x22\xe9\x90\xa9\xe8\xd0\x25\x40\x32\xbf\xd9\x1a\x0d\x4e\x46\x0c\x53\x7e\xbb\x84\xdc\x73\xcd\x3f\x2e\xdd\x16\x4e\xad\x91\x52\x8c\xd4\x34\xed\x35\x13\x28\x24\xea\x7f\x12\x98\x8e\x67\x56\x0d\x9b\x37\x84\x73\xd0\x4f\x1b\xd6\xce\x17\x5e\x09\xba\x71\x87\xfb\x3d\xcd\x82\x8e\x19\x38\x33\x8f\x49\x7c\x80\x6d\x79\x35\x00\x79\x97\x18\x8c\x06\xa3\x2f\x7d\xa6\xaf\xfd\x74\xc5\x5e\xb2\x2b\x1d\x0b\x24\xeb\x82\x73\x64\x69\x3a\xfd\x70\xaa\x9e\xc5\x0e\xc1\x80\xfd\xf6\x13\xda\x69\xcf\xa0\x3d\x77\x06\xda\xba\xcf\x50\x6f\x08\x61\xf7\x04\x83\x5c\x60\x61\x97\xbc\x97\xf8\xac\xf9\x73\x7c\x88\xff\xb9\xbe\xb9\x54\x5c\xc0\x43\x2d\xd8\x9d\x4f\xee\x91\xaf\x40\xcd\x0c\xdd\x4b\xb9\xea\x2f\xde\x7e\x97\x30\xad\x9a\xd7\xe9\x10\xdc\x45\x67\x6f\x88\xd6\xda\xa9\xb8\x85\xba\xee\xeb\xb7\xb4\x16\xca\x73\x16\x94\xcb\x4d\xe6\xe5\x3b\xea\xc2\xaa\xc3\x9b\x00\xbe\x5f\x12\xb8\x26\xa4\xe4\xfa\xbe\x8f\x2b\x43\xbc\x54\x37\x16\x20\xea\x5c\x90\xbd\xd5\x7f\x43\x3f\x5f\xf5\xb7\x17\x8c\x68\xf7\x71\x0e\xbe\x52\x5c\x71\x16\x82\xb6\x5d\x9d\x61\x60\x24\xa5\x91\xaf\xf8\x86\x51\xf0\x28\x96\xac\x9d\x56\x20\x3d\xd5\x33\x75\xa1\xf8\x85\x12\x8b\x51\xe9\xd2\x2f\x61\x20\x19\x9b\x24\x18\xe4\x8f\x30\x50\x7c\xc3\xeb\x2f\x23\xe5\x0b\x19\x29\xff\x16\x76\xc9\x7f\x8e\x59\xe1\x83\x4d\xc6\xf0\xfd\x4f\x9e\x49\xe0\x9b\x59\xd1\x3d\xc2\xde\x24\xb2\xe1\x97\xb0\x61\xf4\xee\x8e\xee\x7f\x81\x90\x70\x6e\xbe\x1e\xc5\xd3\x76\xe9\x7f\x7a\xc9\x90\x84\xf8\x68\xfa\xca\xd5\x1e\x76\x13\xca\x9b\x3b\x19\x8a\x65\xb4\x2e\xb0\x77\x72\x0b\xf3\x15\x54\x48\xbb\xad\x36\xb7\x5d\x3b\xdb\x57\xdf\xdb\x62\xb3\xa0\xdd\xec\x16\xb4\xc5\x76\x41\xff\x5d\xf6\x0b\xd9\x62\xbc\x7c\x49\xf3\x60\x37\xfe\xfb\xcb\x36\xf8\x62\xb6\xc1\x3e\xbb\xfa\x3f\xd7\x52\x30\xff\xfb\x13\x1c\xed\xde\xde\x1f\xe9\x6b\xc1\x10\x95\x38\xd3\x7a\xae\xaa\x66\xcf\x47\x10\x72\x7b\xe7\xd5\xa4\xcc\x24\x44\x7f\x8b\x1e\xbe\xdb\x62\x19\x80\x96\xa9\xd3\x40\xb5\x62\x79\x80\x38\xad\x0b\x7b\x57\xdf\xaf\x6f\x4f\xb9\x42\x46\xc5\x6c\xf5\xa4\x54\x44\x89\x86\xa5\x66\xa7\x8c\x09\x2e\x1a\xbc\x5a\x99\xfa\xaa\x8a\x22\x3a\x0a\xaa\x03\x5a\xbc\xc6\x2b\xbe\x60\x62\xa4\x2b\x78\xab\x1f\xe9\x6f\x84\x7b\x8f\xb1\x5a\x02\xea\x82\xd9\xab\xb8\x6a\x95\x09\x0f\x92\xb5\x9a\xc2\x08\x4a\x9f\x43\x75\x1b\xad\x7a\x63\x61\x87\xea\xd3\x80\x0d\x99\xc3\xa3\xb0\xe7\xfa\xe2\xbe\xd9\x7b\x5f\x5a\xa1\xbe\x6d\xd9\xd4\x5b\x54\x4d\xcd\xa9\xc1\x6e\xe3\xec\x92\xda\xd0\x71\x9d\xbf\x57\xd8\x77\x24\x19\x98\x8b\xdb\xea\x89\x6a\x6c\x15\xa4\xb3\xc0\xd7\x0b\x7c\x60\x6d\x41\xb8\xcf\x1d\xa8\x53\xa6\x9d\x2b\x83\x91\xd6\x0b\xb9\xfb\x3d\x95\xff\x7f\x32\x34\x3e\x7b\x9c\xf8\x12\xe4\xd2\xda\xbc\x11\xc0\x89\x08\x0b\xbb\x43\x10\xbd\x64\xb0\xbc\x35\xbc\x52\xc2\x72\x60\x60\xa2\x7e\x29\x78\x70\x19\x8c\xd1\x3f\x89\xca\x91\xd7\x5d\x55\x09\xa5\x9e\xa2\x90\x29\x07\x7c\xee\xb8\xf4\x7f\x46\x58\x3a\x0e\x30\xc4\x16\x93\x57\xf2\xa2\xdf\x19\xad\x7d\x1c\x9f\x37\x02\x64\x3e\xd6\x9a\xe9\x38\x29\xf3\x17\xbb\xb6\xc5\x6e\x6c\xbb\x9d\x74\x4e\xb4\x93\x1e\x89\x6e\xa1\x9d\x22\x13\xdb\xa1\x9f\x23\x96\x63\x3e\xb9\x4a\xdd\x83\x07\xe3\x07\x19\x87\x3c\xca\x1f\x3f\xc9\x57\x1d\x3d\xbd\x03\xc8\xfd\xbf\xf3\x6e\xde\x16\x53\xea\x4e\xd1\x97\x5b\x06\x5f\xfe\x90\xd8\xcb\x1f\xec\xb1\x46\x61\x11\x88\xf0\x7a\x3f\xe5\xea\x50\x94\x0b\x6c\x0b\x65\x59\x75\x10\xde\x5f\x50\xea\xa5\xed\x2f\x98\xae\xab\x15\xa0\xa8\x12\x54\xb5\x0e\x67\x8b\xde\x38\x91\xa7\xab\x3f\xcc\x40\x2c\x67\x4a\x14\xd8\x7a\x01\xb6\xac\x42\x54\xe6\xe4\x99\x51\x77\x2d\xda\x18\x50\x56\x65\xa9\xd4\x3b\x4b\x82\x21\x5c\xde\x60\xa3\xf6\xa6\x3a\x26\x94\x07\x53\xc8\xeb\x17\xa7\x4c\x59\xbd\xf7\x2d\x6d\x94\x52\x5f\xaa\xf7\xe4\xbd\xc7\x1f\x96\x24\x5f\x0a\x55\xaa\x9b\x7a\xbc\xef\xe4\xf8\x83\xc4\x43\x08\x45\xef\x7a\x8f\xcf\x8c\x42\x05\x4f\xee\x77\x1d\xa9\xf9\xd3\xdf\x73\xa1\x01\x26\xe8\x18\xcd\x89\x98\x78\xdf\x64\xce\x09\xf4\x85\x7c\x6f\x5f\x75\x89\xb5\x0b\xbc\xb1\x9b\x11\x8e\x68\x3a\xcb\xdc\xdf\x92\x5a\x81\xbe\xd8\xb4\x5d\x3e\x02\x18\x5c\x88\x16\x57\xd5\x06\x2d\xe0\x7e\x07\x04\x2b\x10\x5d\x2e\x49\x49\xb1\x20\xb2\x81\xad\xcb\x44\x74\x3c\x62\xee\x3f\xc0\x19\x41\x37\xd1\x8a\x77\x2b\xbc\xd1\x7b\xf8\x19\x6b\x2e\x74\xd1\x26\xbd\xbf\xde\x79\xe3\xaf\x82\x79\x15\x24\x0b\x38\x50\xa3\x70\xc7\x5d\xb3\xdc\x65\x1b\xf3\x51\x45\xab\x7a\x50\xca\xf6\xfc\xd4\x85\x8c\xcf\x2e\x63\x30\x0b\x9f\x1e\x67\x59\x21\x7e\xa7\x60\x0b\x86\xdb\xf4\xa4\x6e\xc4\x62\xc6\x3f\xbb\x78\x3d\xf9\xfe\xf2\xec\xea\xc7\x8b\x3c\xd3\x6b\x8a\x3a\x23\x47\x65\x9b\x4f\xcc\x53\x71\x83\x21\xfa\xfa\x6b\x04\xcc\x7a\xfa\xe2\xf9\xb8\xbc\x0e\x7e\xfa\xea\x18\xd5\x34\xb9\xcd\x97\x4c\xa7\x53\xa6\xf7\xf6\x02\x61\xac\x37\xc5\x72\x49\xc5\xdd\x68\x30\x79\xfd\xf2\xe5\xf9\xd5\x7f\xec\xce\xdf\x8b\xd9\xc8\xce\x5c\xb6\x1f\xd7\x97\x64\x86\xdb\x4a\xe4\x89\xa8\x4a\x27\xdd\xcb\x43\x88\xbc\x47\x13\x5c\x55\xdc\xab\x03\xf4\xce\x3a\x62\x78\x8f\xb5\x11\x15\x66\xb7\x59\x1e\xa0\x08\x78\xd9\xc0\xee\xed\xc2\xce\x13\x27\xb3\xc1\xfe\xb0\x7b\xc7\x44\xe1\x1c\xcc\xec\x96\x17\xba\x25\xff\x99\x34\x91\x57\x3a\x6d\xdf\x67\xbd\x9c\x1c\x49\x9c\xd4\x5f\xa8\xf6\x19\xba\x65\xd2\x5f\x9e\xdc\x4e\x18\xc0\xf2\x0e\xa2\x59\x1f\xc5\x64\x18\xf5\x24\x72\x74\x3a\x35\x77\x64\xcb\x6e\x36\xeb\x67\xc9\x8b\x5e\x96\x4c\xc5\xdd\x67\xe6\x48\xef\x28\x88\xb8\xd1\x47\x52\x73\xa2\xf7\xd5\x8e\x17\xd6\x7b\xc4\xf5\x5d\xc8\xac\xdf\x32\xdf\x46\x67\xcd\xe6\xe8\xc4\x17\x15\xea\x61\xd2\x34\x81\x31\x23\x0d\xb4\x20\xfc\x12\x24\xd7\x27\x4f\x44\x73\xfd\xd6\xb2\x4f\x6d\x35\xd5\x7d\xc8\xbd\x3d\xb9\xe6\x95\x97\x93\xa2\x95\x7d\xaf\x88\xa6\x2d\x27\x67\x9f\x81\x46\x71\xda\x1d\xef\x37\xfd\xf4\x32\xb0\x46\xdd\x54\x59\xc2\xeb\x12\x81\xa7\xa3\x93\xea\x5d\x5a\x41\x67\x6d\x80\xad\x6a\x44\x4f\x41\x8a\x3e\x9d\xaf\x73\xc0\x9d\x14\xc5\xb4\x3c\xbe\x23\x9d\x62\x3e\xc1\xae\xe1\xf5\xbb\xc0\x10\x4e\x0d\x68\x2f\x6b\x91\x5b\xbf\x4f\xbf\xf9\x9c\x7d\xd1\xa9\x9b\xac\x16\x67\xef\x7d\x43\x55\x5a\x4e\x57\x44\xcd\x39\xed\x82\xda\x11\x3b\x3a\x04\xac\x7d\xa9\x1e\xd8\x54\x9b\xda\x87\x03\xf3\x54\x11\x5e\x6c\x32\x8f\xd0\xd4\x3c\xa3\x64\xfc\xcd\x71\x95\xd8\x5e\xdf\x43\xe5\x52\x98\x2e\xdb\xe5\x52\xd7\x79\xf5\xa6\xe2\xf8\x27\xe5\x1c\x4f\x91\xf3\x74\x38\xa0\x49\xa2\xbe\x75\xd5\xce\xf5\x34\xb7\x08\xd4\x38\x79\x94\x2a\x44\x74\x6c\x67\x3e\xec\x03\x11\xbc\xa8\x15\x41\xf0\xdd\x53\x0e\x88\xd2\xa3\x13\xc7\x4f\x04\xdb\x5b\xe2\x5b\x19\x58\x01\x5f\x08\xfb\x24\xa6\x7e\x16\x85\xcd\xd4\x5b\x29\xce\x7e\x0c\xd6\xef\x1b\x1e\x3f\x94\x82\xdc\x25\x2d\xaf\x0c\x89\x7e\xc9\x5d\x5f\x88\x83\x2d\xa5\x5f\x1d\x5c\xe0\x1b\x52\x7f\x23\xb4\x9b\x81\xd6\x82\x94\x1d\x5c\xb9\x21\x22\x51\x4f\x74\x8b\x0b\xb5\xcf\x8e\x73\xf7\x18\x0d\x07\x5c\xc9\x41\x55\xc3\x41\xaa\xe7\xcc\x08\x51\xab\xab\x81\x3c\x23\x84\xcb\xae\xcf\x08\xf9\x0e\x57\xb8\x4e\x94\x9b\x1b\xdc\xa0\x59\xc5\xd6\xb0\xac\xaa\x4c\xce\x89\xa4\x91\x45\xe5\xc1\xf8\x41\x1c\x44\x70\x83\x38\xdd\x5f\xb7\x4f\xcf\xa9\x5e\xe0\xcf\xe0\xc7\x6b\x52\x2b\xd6\x51\x4d\x76\x73\xc6\xef\x0f\x17\x7d\x8b\x06\x21\xb6\x07\x6e\x2a\xdb\x7c\xe8\x3f\x30\xac\x14\x02\xf5\xec\xa9\x64\xa8\x29\xab\x5b\x6e\x98\x00\xd2\xfc\xfc\x12\xdc\xfe\xaa\x40\xcb\x2b\xd5\x30\x32\xca\xbe\x73\x3f\xe5\xdc\x8b\xed\x54\xdd\x86\x4c\xc7\x4a\x58\xdc\x7b\xf9\xa7\x21\xf6\xeb\x78\xed\x7c\x54\x9e\xf4\x11\x71\x4f\x8a\xf7\xfc\x78\xe0\x0f\xba\x2d\x54\x11\x6c\xe1\xdd\xdc\xb6\xbe\xfd\xb1\x0b\x3e\x7f\xdb\x16\xc9\xeb\x7d\x90\x26\x59\x22\xfb\xda\xd2\xda\xbd\xeb\x14\xd8\x50\xf6\x4a\x2b\x94\x30\x32\xe5\xc4\x95\xb6\x95\x94\x94\x46\x46\x60\x66\x43\x57\x3c\x23\x04\xc2\xa9\xa7\x22\xc1\xfc\xbe\xdb\x91\xd2\x51\x4b\x3d\x61\x86\x7f\xfc\x03\xad\x70\x4d\x8b\x81\x8d\xf5\x7a\xc9\xbb\xe9\x82\xa1\x29\x29\x5a\xac\x12\x87\x17\x98\x5b\x49\x69\xc9\xb1\x21\xe2\xfe\x30\x52\x7b\x43\xbc\x93\xc3\xa7\x6f\xe2\x1d\x67\x4e\x0c\xb3\x47\x81\xba\xc0\x1b\xa7\x75\x9a\x67\xfa\xe1\xf2\x37\xd4\x40\xb0\xcf\x18\x1b\x4f\x79\x58\x0a\xbe\x53\x31\xda\x51\x05\xd4\x95\xda\x57\x7e\x83\x5b\xeb\x04\xe8\x00\x3d\xcc\x94\x82\xff\x2a\x0b\x3d\x78\xdf\x31\x15\x02\xa0\xb4\x59\xcd\x26\x73\x4e\xe9\xdc\x31\x5f\x2f\x18\x84\x61\xab\xfc\xb0\x7e\x9b\x91\xd3\xc2\xba\x9a\x07\x6f\x60\xa6\xec\xd9\xbd\x85\xdc\x02\x0c\x66\xfa\x55\x1a\x9b\x44\x92\x1f\xca\xd6\xd9\x0e\xb5\x9d\x23\x43\x87\x74\xf4\x3c\x9c\xe8\xbd\x4d\xd1\xb4\xa4\x03\xf1\x1c\xe3\x66\x20\xf6\x3f\x37\xe1\x3f\x4f\xc9\x6e\x08\xb7\xf2\x48\x9f\x22\xa6\x2c\xdc\xb4\x2d\xae\x89\x49\x34\x0b\x6c\x5a\x1e\xa5\x3e\xe6\xe2\xee\xd9\x77\x36\x43\xab\x30\x7c\x66\x1e\x9d\xd5\xa5\x17\x36\xd7\x71\x9b\x0d\x04\x0b\xb8\x50\x65\x55\xc2\x90\x41\xe2\x1d\xa6\xf5\x85\xce\x9c\xcc\xe5\x71\x77\x44\xdb\x79\x2e\xd0\xfe\x29\x1e\x44\xbb\x97\xb5\x92\xd9\x0d\xde\x8b\xc4\x93\x38\x08\xef\x9d\x6a\xdd\x6c\xb8\x64\x37\x44\x1f\xfb\x26\x02\x6a\xd9\xb0\x57\x10\x87\xb0\x33\xb6\x7f\xb7\xff\x2f\x58\x86\x1f\xdd\xb5\x93\xf0\x01\x85\xee\x01\xdc\x3b\x45\x3d\x18\x86\xf6\xdd\x67\x14\x60\x5f\x05\x80\x33\x39\x07\x7b\x1b\x4a\x16\xa0\xab\x4f\xa5\xe2\xb9\x51\xbe\x59\xb0\x2e\x5b\x33\x5e\xbd\x0a\x54\x31\x92\xe3\x8e\x54\x04\x1e\xb8\x47\x6d\x8e\x41\xae\x7b\x67\xd2\x81\x57\xd2\x2a\xe9\x97\xcd\x6c\x50\x9a\xb1\xc0\xd7\xa4\x3c\xea\x30\x38\xae\x5c\x93\xf8\xce\x1f\xf4\x96\xbd\x94\x7e\x75\xd4\xa9\x72\xef\x20\xed\x53\xc0\xf6\xac\xd8\xd5\x10\x72\x30\x86\xb1\xf0\xb3\x49\xa2\x3c\xf2\xce\xa9\x2c\xc8\xaa\x0a\x9f\x79\xd1\x67\xfc\x6a\xd5\xb0\x9b\x28\xba\xed\xcb\xb8\x8c\x53\xdb\xe5\xdd\x79\x72\xc3\x7f\xbc\x6c\xaf\x6c\x24\xff\x69\x20\x27\x8c\x9d\xf3\x59\x3b\x17\x21\x13\x6c\x49\x83\xfa\x0b\xdc\xbd\x53\x68\x61\x40\xa0\x75\x81\x23\x2f\x5c\x49\x1b\x52\x08\x1b\x57\x7d\x97\x20\xf3\xae\x5f\xc8\xf7\xf9\xc2\xed\x5d\x9c\x6c\x1e\x66\x7c\x2a\xb8\x77\xca\xa0\xb0\xce\x79\x3d\x63\xcd\xd2\x3e\xf3\x67\x56\xc9\x2c\x8b\x5a\x25\xdb\x1f\x9e\x8a\xd5\x75\x7e\x4e\x9a\x06\x6f\x76\x2a\x3e\x98\x0e\xaf\x86\x3e\x05\x9d\x0e\x7c\xa4\xee\xe1\x5a\xc5\x16\x52\xb1\x7d\x33\x09\xc6\xb5\x4d\x92\x89\xef\x31\x8a\x49\xea\x75\xa3\xf8\x19\x65\x6a\x18\xdd\x66\x87\x61\x9e\x13\x81\xcc\x5c\x01\x98\x21\x5f\x48\x35\xdd\xd2\xfc\xe8\xe6\x0a\xb9\x15\x21\x4e\x7e\x27\xc1\xbc\xc4\xe0\xae\x2c\x38\x39\x2c\x85\x9c\xcd\x38\x34\xf4\x31\xb1\x50\xcc\xd2\xe5\x15\xca\xa4\x80\x13\x2d\x23\x43\x39\x58\x7a\x53\x19\xd2\x7c\x39\x4c\x72\x20\xcd\x2f\xe3\x86\x55\xe0\x2b\x97\x23\xbc\x65\x15\x19\xdb\xaa\xc3\xe3\x06\xaf\x7f\x82\x22\xba\x99\xac\x8e\x68\xc1\xe3\x01\xc7\xb4\xec\x75\x26\x6c\xc1\x40\x93\xbd\x1f\x83\x90\x17\x76\xc0\x20\x83\xcb\xe1\x21\x7a\xdd\xcc\x71\x6d\x16\x31\xe6\x75\x5a\x0b\x66\xdf\x6b\x0e\x7d\x94\x99\x97\x60\xd5\xd9\x08\x89\x86\x99\xda\xcd\x86\x67\x63\xda\x85\x7e\x5d\x75\xf8\xbe\x99\x20\xa5\xa7\xb9\xdc\x43\x30\xc6\x29\x29\x53\x74\xfa\x35\x3e\x79\xd8\x2a\x95\xaf\xe8\x4e\x80\xcb\xe1\x20\x15\x53\xff\x55\xc4\xec\x56\xc8\xab\x83\x30\xaa\x54\x08\xbd\x49\x87\xcb\x15\xa9\x48\x1d\xa1\xfb\xdb\x6b\x33\x50\x61\x23\xd8\x9f\xbb\xe4\x7b\x1e\x1e\xfa\x5a\x79\x78\x29\x6e\x4a\xd0\x8c\xc2\x81\x41\x6b\x54\x61\x3f\x75\xcd\xf7\x30\xf4\x27\x81\x16\x3b\xa8\xb7\xf9\x04\xc3\xbe\xcf\xae\xf9\xa0\xbd\x30\x5c\xae\x68\x6f\x26\xc3\xb7\x3a\xc7\x7f\xf0\xf0\x16\x88\xda\x34\xd3\x2d\x43\xa8\x15\xde\xe1\xa9\x82\x5b\xcd\x33\xc8\x61\xfd\x0c\x98\xec\xf2\x76\x43\xdf\x67\x87\x0b\x7f\xdb\x3e\xb7\x4f\x72\xed\x85\xba\xe5\xfe\xe0\xb6\x8f\x4d\x8a\xfd\xf9\x97\x28\x78\x65\x1e\xe1\x5d\x24\xcf\x3a\xf7\x6d\x4f\xb9\xcf\x84\xff\x2e\x72\x24\x21\x82\xa7\x1d\x86\xd9\xed\x79\x15\x5c\xf7\x42\xc7\x01\xbc\x71\xf2\x44\x6d\xda\xd5\xbd\xff\x1c\xf4\xec\x7c\xec\x77\x0f\x3b\xb6\xdb\x55\xd7\x95\x1c\xbc\x8b\xf9\xeb\x92\x0d\x42\x91\x9b\xad\xf4\x9c\x1d\x70\xec\xd7\x4c\xde\x7f\x43\xec\xd8\x29\x5b\x33\xba\xb3\x5e\xf4\x17\x42\x74\xf0\x08\xa1\xbf\xed\x85\xee\xb0\x13\xdf\xc7\x7f\x04\xbe\x8f\xef\x86\xaf\x67\xf4\x83\x01\x53\x38\x2f\x60\x0e\xdf\xde\x27\x2b\x51\x52\x9a\xda\xea\xa3\xdd\x1d\x3c\x47\xc1\x16\x12\xf5\xc1\xb0\x56\x7f\x1e\x46\xef\xa5\x06\x74\x67\xf1\xb9\x4f\xa1\x1a\xf3\xb9\x6d\xd1\xeb\xb8\xbf\x5f\xfc\x7a\xa7\xea\xd7\x31\x80\xc7\x39\x00\x7d\x65\xb0\xcd\x27\xbe\x48\x9b\x97\xb0\xdb\xfa\xdb\x8b\xb5\x59\x29\xdb\xed\xc7\x48\x7c\x00\x50\x1a\x26\xb4\xc3\xc0\x9d\x6a\x2e\xa7\x96\x81\x6b\xd7\x79\x0b\xbc\x3c\x29\xe5\x2d\x70\x3a\x6f\x43\x78\x5b\x09\xbe\x83\xf5\x9f\xc9\x13\xa3\x33\xf4\xd5\xb6\x7c\xde\xdf\x7f\x47\x1d\xe9\xbc\xc7\x90\xce\x9b\x7d\x03\x3e\x67\xc6\x80\x0a\xed\xec\x90\x70\xdc\x39\x11\xd6\x08\x19\x76\xf8\x1b\xde\xb7\xac\x69\x97\xa8\x20\x8d\xa0\x33\x5a\x40\xca\x8c\x3c\x88\xe1\x2a\xbe\x86\x1c\x9a\xe2\xbb\x5c\xce\x4c\xad\x72\x2a\x20\xd1\xd0\x5e\xf5\xb7\x76\xb7\x41\x1e\xcc\x6e\x75\x55\x4b\x2c\x08\x6d\x7c\x94\x10\x96\xb2\x84\x07\xe6\xb5\xee\x28\x75\x72\x0b\x23\xa4\x1a\x60\xeb\x01\x39\x36\x0d\x6d\xda\xe3\x1b\x98\xfc\xc4\xb5\xc9\xa4\xe1\x7a\xa1\x3e\x28\xe3\x5c\x33\x61\xdf\xb5\xed\xa0\xa0\xd6\x64\x28\x37\x03\xde\x8f\xcc\x70\x47\x43\x63\xbc\x7a\xbd\xbb\xde\x8c\xb9\x74\x4b\x8d\xde\x4c\x6c\x75\xf4\xe8\x85\xe6\x24\xe5\xcb\x86\x34\xd8\x4a\xee\x10\xc5\x8b\x3b\x19\x30\xfb\xc7\x49\x9d\x93\xba\x43\xa4\x5b\x86\x7c\x33\xe1\x83\xf7\x45\x70\xbd\x6a\x98\xcc\x56\xee\x64\xb5\x15\xd1\x35\xd9\xdc\x6a\xc6\xbe\x53\x46\x1f\xd1\x52\x31\xd5\x5b\x25\xdd\x7f\xa1\x9b\xbd\xad\xd7\xea\xce\x78\x78\xb1\x38\x7c\xbd\x43\x2e\xf6\x35\xd9\x48\xec\x0c\xf4\x90\x0f\x03\x28\x66\xc1\xaf\xc9\xe6\xab\x5c\x24\xa6\x93\x70\xa7\x2f\x9e\x3f\x6f\x58\xbb\x7a\x41\x36\xb2\x33\x3f\x0a\xe1\xfe\x81\x2a\xa5\x4a\xa6\xcc\xc5\x0f\xb4\x34\xbc\xbb\xad\xbb\xcf\x05\x3c\xf3\xf1\xaf\x80\x47\xa4\x41\xe1\x59\xf2\x1d\x78\x2d\xa0\x9c\x98\x79\x88\x4d\x87\xb8\x53\x07\x9c\x7e\xf7\xd5\x5c\xeb\xf2\x8f\x04\xf7\xd6\x35\xdc\x04\x90\x07\x43\xce\xc7\x7d\x84\xbe\xce\xf8\xf5\xe2\xe7\x64\xed\x53\xbe\x13\xbc\xc2\x53\x5a\x51\xd1\xf9\x46\x7a\xc1\x56\x9b\x27\xae\x59\xf6\x55\x26\x1f\x05\x20\xfc\x6b\xa8\xa0\x4d\x59\x1d\x85\x8b\xf3\xe2\x4d\xa0\xc2\xa1\x01\x09\x37\xd1\x3b\xfb\xf7\xc3\xdd\x3a\xed\xa4\xa8\x8d\x9a\xc2\x7c\xd9\xf4\x5f\xa4\x10\xe9\xa4\xdf\x92\x19\x3a\x8e\xe7\x6f\x1e\x83\xef\x24\xdf\xd3\xc1\xf6\xb9\x68\xcc\x02\xbc\x02\x9c\xee\xa7\x4f\x4f\x1b\x94\x76\xe7\x1b\x27\xd5\x76\xe2\x17\xc7\x2a\xb1\xdb\x4e\x33\x8b\x3b\x53\xbf\x30\x9f\xe8\x81\xff\x54\x16\x91\x7a\xdb\x1d\xb9\x23\xa2\xd7\x6d\x19\xc3\x60\xf2\x59\x78\x42\x9e\x5e\xfb\x31\x83\xf3\xa3\x6a\x36\x90\xe7\xd3\x17\x66\x00\x33\xe6\x9f\xca\x01\xe5\xf5\xdd\x05\x84\xa5\xd5\x6d\x17\xdf\x22\xb1\xc7\xea\xbf\xc4\xd7\x84\x23\xfb\x0e\x0e\x27\x90\x1a\xa9\xec\x12\xf5\x66\x3e\x47\x03\x5a\xab\xe7\x50\x87\x60\x96\x40\x75\x8b\xb1\x8b\x6e\xb6\xd3\x03\x68\xcf\x51\xa1\x52\xc9\x72\xef\xad\xce\xda\xaa\xd2\xea\x8e\x02\x3b\x0e\x6c\x13\x78\x7a\xde\x9c\x41\xdd\x75\x3f\x7e\x45\x7e\xe5\x0f\x5d\xb1\x05\xfd\x1a\xd6\xf9\x70\x5f\xbb\xf2\x1d\xfa\x99\x5e\xf5\x70\x60\x1a\xde\xf5\x0a\x8a\x80\x67\xe2\x6f\x1e\xc0\xe1\x10\x3d\xb1\x90\x62\xf2\xa9\x6b\x47\x50\x60\x47\xce\x12\xde\x12\x61\xb3\x28\x16\x83\xce\x4f\x41\x9f\x6b\x39\x64\xf3\x37\xac\xad\x4b\xd4\xb0\x29\xad\x11\xae\xe6\xac\xa1\x62\xb1\xb4\x10\x05\x43\x18\xca\x47\x81\x81\x11\x07\x75\x04\x43\xe4\x7d\x8b\x2b\xc4\xe9\x6f\x71\x3c\x25\xb9\x1a\xb1\x2d\x9a\x63\xcb\xcc\x74\x56\xb5\xf1\x28\x95\xde\x62\x51\xaf\x97\x1a\x70\x63\xb5\xac\x43\xf4\xf4\xb8\xdf\xa9\x93\x20\x74\x64\xeb\xcd\xc0\x45\xef\x8a\x70\x9e\xce\x5b\xf2\x91\x99\xed\xfd\x8c\xd6\x29\x4d\x25\xbe\x68\x67\xb3\x8a\x94\xea\x02\x9b\x2a\x0a\x69\xd6\x67\x50\xe7\x22\x56\xca\x8a\x34\x36\x09\x76\x65\xbb\x94\x81\x16\x22\x91\x35\x59\xbb\x49\x17\xa8\xd8\x9e\xdd\x79\x5e\x97\xe4\x83\x79\xfb\x15\x1d\x7b\xaf\xe8\x98\x58\xaa\x7a\xd2\x86\x9f\x52\xe0\x49\x48\x55\xfb\xf9\xa3\x5a\x2b\xc3\xc9\x9f\x22\xf8\xeb\x05\xad\x48\x30\x02\x7a\xb2\xe7\x32\x44\xab\x9b\x45\xc4\xe8\xfe\x1f\x3f\x0d\x73\xe6\xa0\x1a\xf8\x38\xfc\xf3\x5b\xcf\x67\xe7\xd6\x2b\xea\xf1\xe0\x5e\x60\x8d\xa8\xc8\xb3\xbf\x9e\x1f\x33\x75\xfc\x3f\x43\xd8\x39\x99\xe1\xcf\x3e\x62\xbf\xfc\x4c\x4b\x49\x68\x17\x98\xf5\xdf\x1c\x4a\x52\x89\x4f\x4c\xc5\x03\xe6\xa2\x00\x1a\x1c\xbc\xab\x03\xb5\x63\xf5\x8f\xaa\xf6\x16\x9d\xa1\x35\x51\x6c\x3f\x67\x50\x57\x44\xff\x5c\x61\x29\x48\x6a\x72\x2b\x2a\x23\x7d\xd5\x37\x68\xbe\xef\xae\xcc\xc5\xad\xe3\x35\xf3\x7f\xec\x8a\x51\x4f\xac\x47\xc4\x79\x39\xc0\xb1\x6a\xaf\xf7\x70\x28\x3d\x6c\x35\x29\xa3\x57\xc4\xd6\x70\xae\xf6\xef\x65\x94\x29\xd3\x8b\xe5\xe7\xdf\x23\x66\x42\xfe\x6b\x96\x89\x24\x18\x50\xb5\xe1\xfd\x81\x47\x3e\xf3\x1d\xed\xc2\x89\x5f\x0d\x6f\xbb\xe3\xe2\xb3\x2e\x38\x33\xbc\xa3\xec\xc4\xd5\xb1\x83\xab\x08\xda\x41\x84\xcd\xd5\xde\x15\x69\x96\xad\x70\x29\x3d\x4d\xa3\xe5\x8f\xec\xdc\x72\x73\xf3\x78\x46\xf9\x82\x34\x68\x03\x7e\x38\xb5\x83\xc1\x52\x09\x0e\xba\xa4\x54\x9c\x15\xd3\xbf\x2a\x4f\x59\x78\x38\xb9\xb4\xac\x40\xa0\x52\xa9\x50\x41\xce\x88\x3a\x7b\xc2\x07\x2e\x6d\x32\x80\xbd\x6e\x01\x9b\x8a\x54\xaa\xd6\x35\x38\x58\xd6\x78\x05\x35\x05\xa7\x1b\xf9\x0f\x54\xac\x2a\x59\xfd\x4d\xc0\x7b\xa6\x7a\x55\xd3\xd6\x36\xc0\xa7\x2b\xe7\x55\xa6\x6c\x36\x16\xdf\x70\xb4\x5e\x6c\x10\x0d\x9e\x45\x53\x1c\x17\x7e\x97\xdc\x7a\xba\xa0\xc5\xb5\xa3\x32\x30\x8b\x42\xf9\x01\x64\xea\x24\x0e\x41\xd5\xd0\x2c\x7c\x43\x6e\x48\x23\xe8\xb4\xd2\x37\xa0\x9f\xc8\xf3\xe1\xf1\xa3\xa7\x83\x25\x2b\xdb\x8a\xa9\xf3\xe2\xf1\xa3\x01\x95\x5c\x31\xcc\xdc\x50\x91\x24\x90\x6b\x49\x7f\x71\xde\x63\x4b\x23\x11\xa0\x95\xa0\x22\xc8\x72\x65\xd6\xe0\x67\x1a\x3e\x07\x6b\xbe\xb4\xbf\x7b\x78\xe7\x5a\xfa\x3f\xa3\x63\x00\x1d\xe5\xdd\xa0\x63\x44\x83\x08\x50\xca\xdb\x00\x2a\x66\xec\x49\xa4\x4b\x14\xca\x73\xeb\x17\x6e\x74\x77\x6f\x68\xa3\x13\x58\x54\x9d\x48\x67\xf5\x48\x48\x52\xbd\x6f\x4a\xa9\xd6\x32\xb4\xc2\x8d\xa0\x05\x5d\xd9\xeb\x6a\x4a\x7a\xe9\x7d\x23\x81\x6a\x66\xa1\x4d\xe0\x85\x8e\x59\x7f\xee\x79\x14\x61\x58\x38\xb0\x20\x69\xb3\xc9\x3b\x5e\x5e\xd9\xdf\x87\x47\xe8\xff\x84\x32\x47\x21\xfe\x31\x51\x29\xf6\x38\x27\xdd\xf0\xe3\xe0\xc8\x54\xef\xf6\x45\xb9\xb5\xfb\xe4\x62\x85\xce\x2f\xf7\x2c\x9f\xec\xa2\xdf\x47\x63\x8d\x57\x3a\x20\x52\xa2\xf5\x1a\x61\xb7\x3e\xca\xd4\x72\xda\x60\x9c\x98\x13\x78\x26\xc2\xdb\xa9\xb1\xd7\x22\x66\xa4\x27\x07\x61\x6f\x9d\x1a\xe5\x16\x28\xa1\x94\x2d\xf2\xf7\x82\x6c\x5c\x08\x71\xec\xbe\x4c\x9c\x78\x93\x28\x6d\x70\x1b\x5f\x4a\x73\xfc\xc2\x70\x5d\x2d\x76\x67\x4f\x7d\x62\xca\xfe\x5b\xae\x00\x7b\x4c\x79\xfa\xe2\xb9\x37\xd8\x2d\x98\x52\x9a\xb3\x3e\xba\xff\x1e\x4c\x19\xa7\xe7\xed\xcf\x94\xfe\xa2\x39\xa6\x8c\x17\x67\x0b\x6f\x96\xd7\xb9\x3b\xd3\xce\x7d\x92\xf2\xa3\xe9\xa1\x39\x31\x5e\x9b\x0c\x91\x50\x5c\x6d\x4c\x42\xe2\x61\x42\x99\xbb\x62\x5d\x11\x93\x5a\xac\x95\x21\x57\x84\x0c\x7c\x07\xdd\xe6\xba\x94\x60\xd0\xc7\x3a\xea\x87\x47\x48\x67\xb9\xe4\x13\xa9\x73\xfa\x56\x1f\xba\xaa\xbd\x8a\xea\xa9\x9b\xe1\x90\xbf\x62\x6a\xb5\x15\xb8\xee\x41\x7c\xec\x6f\xb8\x82\xac\x54\x85\x2a\x5d\x21\x57\xbf\x6c\x3a\x25\xb0\x61\xa4\x5e\xf3\x4e\x61\xfe\x6e\x84\x16\x6c\x2d\x0f\x57\x28\x13\x8e\x39\xc2\x65\x49\x4a\x95\x3d\x27\x77\x14\xae\x9d\xf2\xb3\x9a\x37\xb8\x24\x1a\x1b\x5d\xc1\x8c\xc3\xc5\x1b\xfd\x1a\xd4\x94\x20\xbe\x22\x05\x9d\x51\x52\x22\x4e\x56\xb8\x51\xe5\xb0\xe0\x9c\x27\x1f\x28\x87\x7c\x49\xf5\x70\x3b\x4f\x3d\x23\x9a\xca\x99\x44\xa1\x23\x94\x7c\xd9\x41\xf3\xac\x6b\x2d\xe9\x9c\xf5\xb0\x25\xad\x74\x90\xc9\x5b\xad\x2b\x3f\xaa\x75\xe6\xdf\x47\x01\xee\xaa\xd6\x78\xc3\xb3\xb5\x61\x57\x55\xcb\xf5\x91\x9e\x65\xae\x7c\xec\xc5\x98\xc1\x5d\xfc\x95\xaf\x48\x89\x30\xd7\xfd\x7c\xf4\x93\x3a\x72\x5d\x17\xd6\xbb\x9c\x47\xdd\xe4\x95\xed\xb3\x14\x3d\xc9\x8f\x31\x44\xff\xf8\x07\x9a\xe1\x4a\x17\x29\xf1\xe8\xfb\x9c\x44\x85\x08\x3b\xae\x31\x57\x64\x26\xf4\x3e\x2e\x09\x17\x0d\xdb\x78\xd9\x03\xdf\xf9\x2d\x71\x13\x5e\x80\x5f\x93\x86\x20\x5c\x55\xac\xc0\x42\x55\xc1\xc7\xa8\x24\x05\x91\xc6\x58\x45\x7f\xb3\xd7\xe7\x49\x2d\xe8\x8d\x3b\x73\xa0\x2f\x24\x2b\xd8\x12\xde\x2e\xc8\x29\x09\x0b\x28\x12\x78\x09\xc6\x20\x34\xd6\xec\x42\x38\x78\x2e\xcd\x1c\x3c\x17\x98\x46\xab\x61\x6b\xd9\x5f\x5d\xd0\xb4\x6f\xee\xf8\xf7\xf9\xcd\x79\x06\xc5\x01\x68\x3d\xd3\x5f\xcb\xed\x65\xc1\x71\xe6\x6e\xa8\xe9\xf7\x6e\xaa\xb6\xf4\x4a\x59\x7b\x00\x6d\x27\x28\x9b\xaf\x25\x85\x89\xf4\x07\x94\x36\x89\xb5\x76\x56\xd2\xa2\xf0\xc8\x62\xea\xe2\x69\x87\xa8\x2a\xb6\x88\x70\xbd\x59\xb2\x86\x74\xed\xf0\xe0\x36\xb9\x29\x10\xba\x0f\xc7\xa9\x1e\x09\xcf\xc9\x23\xd6\xc1\xce\xdd\x98\x47\xca\xcf\x6c\xaa\x05\x68\xd6\xa3\x35\x15\xf6\xd2\x7d\x78\xc9\x2d\x2d\x97\x1d\xe5\xb7\xf6\x37\x89\x2b\xfa\xf7\xb5\x75\x95\xfb\xb3\xad\x32\x0e\x45\xe5\x5c\xf3\xdb\xf5\xdd\x09\x37\x84\xf6\xdb\x6f\xab\x3d\x7e\xbb\xca\xe0\x7b\xd7\x05\xcf\x56\x05\xef\xf5\xca\xee\x5b\x3e\xbb\x33\x17\x38\x74\xaa\xf7\x57\xc7\x8e\x96\x3e\x53\x19\x3b\xad\x8a\xbd\x4b\x11\xec\xf8\x2a\x66\x4e\x71\x40\xc7\x5a\xd9\x18\x24\x0c\x78\x97\x8c\xeb\xcf\xf1\xf8\xc4\x4e\xe0\xf7\x7b\x97\xa2\x1f\x64\x66\x2b\xe4\xbe\xdd\x0b\x6c\xff\xce\xe9\xfb\x35\xcd\x87\xc1\x48\x36\x61\x70\xda\x99\x42\x80\x56\x86\xfb\xaa\x9d\x51\xf9\x54\xa6\x9d\xfc\xe2\xa1\xae\x2c\xbb\x82\xa7\xbe\x0a\xe6\x95\x02\x02\x85\x5a\x01\x4b\xb5\xa1\xe3\x54\x43\x0a\xad\x85\xd2\xa6\x01\xf6\xb2\x4b\x43\x66\x93\x9e\x8a\xd7\x49\xe3\x2b\xba\x24\x5c\xe0\xe5\xca\x48\xad\x41\x52\x0d\x72\x2c\x4c\x9b\xe1\xb7\xf1\x0e\xb2\xe0\xbc\x4a\x3a\x91\xc0\xe7\xf8\x86\x0c\xba\xe6\x3d\x42\x82\x6d\x55\xe3\x7a\x52\x67\x26\x7d\x0f\x61\x74\x77\xdb\x7e\x87\x39\xe8\x0a\x0a\xfa\xa5\xc2\xf1\x02\x8b\x05\x3a\xce\xa0\x7c\x62\xcd\x0f\xdb\x6f\x61\x4a\x13\x6f\xeb\x6b\x6b\x18\x87\xfd\x8d\xfd\xb3\xad\xbb\x35\x4e\x02\x5e\x8b\xde\x83\xfa\xa8\xd6\xf7\x28\xbc\x2f\xf3\x09\x1d\xa3\x8f\xb1\xfc\xca\x2e\x61\x00\x4e\xad\x5b\x17\x92\xf1\x8a\x65\xe1\x3d\x39\xd0\x59\x88\xda\x96\xf4\x40\xc6\xf4\x1e\xee\x03\xce\xd2\x32\x00\x99\x5b\x8a\x61\x2e\x02\x80\xd1\xaa\xa1\x37\xf2\x7f\x5e\xd0\x3d\x9b\x63\x63\xab\xc1\xa9\x17\xca\xa5\x22\x0a\x0f\x1c\x42\x75\x6b\x2c\x82\x3b\x4f\xaf\x6b\xf4\x12\xd3\xba\x26\xca\xa3\x7b\x45\xb8\xa8\x09\xbc\x7f\x42\xa2\xdc\x05\xae\x4b\x14\x04\x6f\x51\xe8\x37\x03\xf5\xc4\x47\x52\x71\x5c\x98\xb0\xf5\x82\x34\xc4\x7f\xed\x05\x9d\x28\x9d\x18\x36\x1c\x3c\x8d\xa0\x90\x9c\x32\xed\x36\xc5\xe1\x78\xee\x51\x17\x3b\x61\x4a\x38\xaa\x68\xad\xcb\x38\x20\xb1\x60\x9c\xf8\x1d\x0c\x5a\x78\x69\x71\x0a\x30\x50\xcf\x9e\xd5\xbc\x55\x95\xf2\xb0\xd0\x49\x9a\xac\x56\xb6\x23\x6b\xa4\xda\x5d\xb6\x30\x5b\xfd\x26\x8c\xae\x67\xce\x21\x9d\x18\x83\xab\xd8\xbb\x99\xb7\xe1\x82\x2c\x51\xb1\x68\xeb\x6b\x7f\x20\xd0\x99\x31\x5c\xd3\xaf\x36\x3a\x92\x5c\x9a\x37\x11\x15\x25\x8d\x93\x0a\x57\x00\x8e\xb5\x42\x9a\xc8\x54\x7f\x65\xab\x88\x2f\x71\x4d\x57\x5a\xbb\x1e\x07\xdb\xc8\x2f\xab\xd6\x9d\x0a\xe2\xd3\xce\x32\x26\xe5\xbc\x25\x7d\x69\x55\x99\x5f\xfc\x84\xb2\xfd\xb6\x80\x97\x81\xd2\x33\xe6\xd3\x41\x7e\x42\x19\x49\xdc\x9b\xdb\xb6\xe7\xd6\x79\x5f\x78\xfe\x19\x14\x24\x8f\x6e\xdf\x40\x72\x19\xde\x17\x77\x5c\x81\x24\x75\x29\xf3\xe5\x1d\x09\x1e\x0f\xf1\x74\x90\x60\x9d\x21\x73\x57\x6a\xd8\x9e\x14\xb6\x69\x35\xb7\x26\xb1\xf1\xdd\xdd\x9e\xc6\x5e\x6e\x50\xf0\xe7\x1d\xe9\xea\xc0\x3e\x1d\xa4\x48\x66\x48\xda\x99\x6c\x15\x0e\x9e\x2f\x7e\x25\x35\xff\xee\x4a\xc2\x3b\xd5\xcf\x0e\x5a\x43\x14\x6e\x9f\x4b\xab\x3b\xbd\x76\x87\x6e\xf7\x4a\x49\x52\x58\x7b\xcb\x6b\x25\x69\x21\xee\x3d\xee\x8e\xa2\x83\xce\xf7\x55\xf2\x77\x44\xf7\x1e\x26\xba\xae\xd5\x39\xde\x5d\xcb\x7d\xf8\x9f\x7f\x87\xe7\x4e\x3a\x52\xcf\x53\x56\x33\xfe\xf5\x4f\xf7\xfe\x5f\x00\x00\x00\xff\xff\x52\xab\x11\x5e\xcd\xeb\x00\x00" func epochsFlowepochCdcBytes() ([]byte, error) { return bindataRead( @@ -338,7 +338,7 @@ func epochsFlowepochCdc() (*asset, error) { } info := bindataFileInfo{name: "epochs/FlowEpoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x37, 0x4c, 0xa6, 0xba, 0x88, 0x20, 0x47, 0xb9, 0x78, 0xd4, 0x35, 0xf5, 0x1, 0x18, 0xcb, 0x7d, 0xf3, 0xc6, 0xa1, 0x48, 0x60, 0x24, 0xa8, 0x1d, 0xbe, 0x36, 0xd9, 0xff, 0xb8, 0x54, 0x26, 0x5d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0x53, 0xa9, 0xa8, 0xcb, 0x56, 0xac, 0x61, 0x17, 0x19, 0xad, 0x57, 0x20, 0xb7, 0x58, 0x4, 0xb5, 0x9e, 0x6b, 0x50, 0x2d, 0xe6, 0xff, 0x5a, 0x3b, 0x49, 0x5e, 0xb0, 0xc6, 0xc7, 0x31, 0x4e}} return a, nil } diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 7f817c0f4..90fc5182d 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -47,7 +47,8 @@ // epoch/admin/deploy_epoch.cdc (1.192kB) // epoch/admin/deploy_qc_dkg.cdc (310B) // epoch/admin/pay_rewards.cdc (497B) -// epoch/admin/reset_epoch.cdc (1.666kB) +// epoch/admin/recover_epoch.cdc (2.137kB) +// epoch/admin/reset_epoch.cdc (1.668kB) // epoch/admin/set_automatic_rewards.cdc (376B) // epoch/admin/set_bonus_tokens.cdc (624B) // epoch/admin/update_clusters.cdc (358B) @@ -1301,7 +1302,27 @@ func epochAdminPay_rewardsCdc() (*asset, error) { return a, nil } -var _epochAdminReset_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x6f\xdb\x38\x10\xbd\xeb\x57\x0c\x7c\xc8\xda\x88\x23\x23\xc0\x62\x0f\xc6\xee\x06\x59\x27\x0b\x04\xbd\xa4\x70\x9a\x4b\xd1\xc3\x48\x1a\x4b\x84\x25\x8e\xc0\x19\xc5\x35\x8a\xfc\xf7\x82\xa4\x3f\xa4\x42\x4d\xe2\x93\x49\xbe\xf7\xf8\xf8\xde\xc8\x34\x2d\x3b\x85\xff\x6b\xde\xdd\xb7\x9c\x57\xb0\x71\xdc\xc0\xe4\xb4\x9e\x24\x3d\xc4\xc3\xdd\x13\x66\x35\xad\x15\xb7\xc6\x96\x3d\xe8\xf0\x60\x92\x24\x8b\x05\x3c\x55\x04\x8e\x84\x34\xea\xaa\x43\x2b\x98\xab\x61\x0b\x64\x0b\x01\xad\x08\xf2\xce\x39\xb2\x0a\x14\x20\xc6\x86\xcd\xb3\x17\x69\xd0\x29\xe4\x6c\xd5\x61\xae\x5e\x14\x6d\x01\x19\x95\xc6\x0a\x20\x58\xda\x1d\x98\x3b\xa3\x55\xe0\x96\xe6\x85\xac\x67\x6c\x4c\xd9\x39\xf4\xb7\xa5\xc1\xc9\x19\x8b\xf5\x0e\xf7\x02\x15\x8a\x17\x0c\x2e\xb8\xb3\x4a\xee\xe8\x26\xdc\xbd\x8a\x7b\x97\xd7\x91\xde\x77\x2f\x64\x0b\x72\xd0\x74\xa2\xd0\x3a\x7e\x31\x05\x05\x19\x2f\x37\x22\x01\xd3\x8c\x36\xec\x22\x26\x04\x02\x8a\x5b\x12\x68\x6b\xcc\x69\x06\xe8\x9f\x22\xb8\x21\xdd\x43\x43\x79\x85\xd6\x48\x93\x26\x8b\x85\xd7\xbb\xeb\x9c\x4f\xda\x92\xee\xd8\x6d\x41\x5a\x76\x5b\x99\x07\xa9\x8c\x59\x45\x1d\xb6\x2d\x15\xde\x87\x72\xce\x35\x88\xa2\x12\x18\xf1\x61\xc6\x84\x62\x94\xd3\xd1\xc7\xcd\xe6\xc7\x50\x7b\x4d\x19\x81\x4e\xa8\x00\x65\xf0\x6e\xca\xe8\x3c\x86\x77\x8c\xea\x03\x55\x85\xe9\x18\xcb\x43\x79\xd4\x0d\x5c\xc2\xf5\x6c\x0e\xc2\xa0\x15\x2a\x18\xfd\x43\xbc\x9e\x18\x51\x3f\x22\xa1\xe2\x63\x63\x6f\xbc\x3d\x8d\xb3\x67\x64\xd8\x59\xc5\x5d\x5d\x00\xdb\x7a\x0f\x19\xc5\xf7\x9d\x86\x86\x3b\x6d\x3b\x05\xde\x0c\xb5\xa1\x53\x53\x1b\xdd\x2f\xbd\x22\x84\xd5\x21\x85\x10\xd6\x95\x7e\xbf\x42\x57\x4a\x92\xf4\x2e\x1a\x7b\xd8\x12\xbe\x3c\x58\xfd\xeb\xcf\x79\x02\xbd\x9f\x43\x5b\x70\xb3\xe6\xce\xe5\xb4\x84\xb5\xfa\x9e\x87\x08\x51\x74\xfa\x6c\x68\x37\x2e\x20\xf1\x63\xbb\xb7\xc5\xef\x31\x34\x3c\x9c\xc1\x8f\x24\x9c\xb7\x8e\x5a\x74\x34\x15\x53\x5a\x6f\x10\x3b\xad\xa6\xff\xb1\x73\xbc\x7b\xc6\xba\xa3\x19\x5c\xdc\xe6\xa1\x6b\x4f\x39\xaa\xd5\x74\xf8\x52\x6f\x8b\xc6\x58\xf8\x07\x22\x3d\x15\x65\x87\x25\xa5\x59\x10\xf8\xfb\xe2\x34\x15\x69\x00\xfe\x3b\xf5\xa3\xb0\x3c\x0f\x4b\x8a\x7e\x7b\x1d\x59\x8f\xa8\xd5\x6c\x60\xfa\xe6\x06\x5a\xb4\x26\x9f\x4e\x56\xa1\x34\xcb\x0a\x51\x1a\x2a\x42\xa7\x19\xa1\xc6\xe9\x3a\x5c\x0c\x2d\x6a\x35\x99\x25\x27\x95\xb3\xc9\xf4\x3c\xd7\xe3\xd5\x8c\x6c\x0e\x23\xfc\xf5\x37\xec\xad\xbf\x7a\x9b\xd7\xaf\xf3\xf4\xf7\x7d\xca\xa0\xe2\xe1\xfa\x1d\xf2\xa9\x7b\xfa\x10\x3c\xe7\xba\xa6\x5c\xd9\xad\xea\x4e\x94\x9c\x2c\xe1\xeb\xb7\xf7\x38\x11\xfa\x79\xf5\x11\x70\xb1\x2d\x1f\xbb\xec\x13\xed\x03\x38\x56\xfe\x9a\xbc\x26\x3f\x03\x00\x00\xff\xff\x12\x4d\x3d\x2b\x82\x06\x00\x00" +var _epochAdminRecover_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x54\x41\x4f\xe3\x3c\x10\xbd\xe7\x57\x8c\x7a\x40\xad\xf4\x11\x2e\x9f\xf6\x50\xed\x2e\x82\xb6\x48\x68\xb5\x2b\x10\x2c\x17\xc4\x61\xea\x4c\x1b\x0b\xc7\x8e\xc6\x13\x42\xb5\xe2\xbf\xaf\x1c\x87\x34\x81\xd0\x3d\xaf\xb4\x3d\x54\x9e\xf1\x7b\xcf\xcf\xf6\x73\x74\x51\x3a\x16\xb8\x30\xae\x5e\x95\x4e\xe5\xb0\x61\x57\xc0\xa4\xab\x27\x49\x0f\x71\xb9\xbc\xc5\xb5\xa1\x1b\xc1\x47\x6d\xb7\x3d\xe8\x70\x62\xc0\x59\x98\xca\x0b\xf1\xf5\xa2\x07\xef\x7a\x93\x24\x39\x39\x81\xdb\x9c\x80\x49\xb9\x27\xe2\xe8\x41\x18\xad\x47\x25\xda\x59\x50\x4c\x28\xe4\x01\x6d\x06\x5e\x90\xc5\x03\x82\xa5\x1a\xa8\x81\x6a\x0b\x92\x53\xcf\xbf\x2f\x90\x05\x94\xb3\xc2\xa8\x24\xc8\x8b\x83\x3a\xd7\x2a\x87\x5a\x1b\x03\x1b\xc7\x8a\x1a\x8e\x25\xa9\x1d\x3f\x02\x3d\x6b\x81\xd5\xc5\xf7\xf4\xbd\x11\x4f\xfc\xa4\x15\x01\x3d\x91\x95\xc8\x5f\x13\x50\xa1\x45\x28\x83\x20\x1e\x6c\x95\xec\x14\x79\x4f\x19\xac\x77\x80\xc6\x84\x86\x38\xe5\x0c\x94\xc8\xa2\x95\x2e\xd1\x4a\xdc\x01\xa1\xca\xfb\xdd\xa8\x59\x95\x19\x4a\x63\x4a\xf3\x9e\x1c\xe4\xbd\x84\x89\x5a\x4b\xde\x5a\xae\x21\x3a\xcb\x50\x30\x8d\x87\xa7\xfd\xe0\xc0\x7c\xee\x2a\x93\x81\xb3\x66\x17\xcc\x56\xc1\x57\x27\xe0\x2a\x29\x2b\x01\xb7\x69\xaa\xb5\x73\xe2\x85\xb1\x84\x4a\xb4\xd1\xb2\x9b\x07\x45\x68\xaa\xf6\x7c\x69\x53\x1c\xb7\x47\x72\x2c\xcf\xc7\xc8\x5b\x9f\xf4\x56\x9b\x36\x57\x72\xa7\xa9\x9e\xc3\xcf\x4b\x2b\x9f\xfe\xff\x2f\x81\xde\xcf\xc7\x44\xac\x6c\xf6\x31\x86\x0e\x4d\x0a\xf2\x96\x64\x59\x31\x86\xe5\x0e\x61\x56\x36\xbb\xd5\x05\x8d\x43\x54\x4c\xdc\x99\xf7\x7a\x6b\x0b\xb2\xe2\xe7\x70\x7f\x7f\x23\xac\xed\xf6\xe1\x61\x14\x7b\xbd\xb8\x73\x42\x4b\x14\x9c\xc3\xfd\x20\xb5\xe9\xe2\x2d\xe2\x8d\x42\xf6\xb8\xbd\xaa\xd6\xdf\x68\x17\x56\x69\x17\x19\x22\xac\xcb\xe8\x72\xf9\xe1\xb4\xb6\x5a\x7e\x50\x4c\xf4\x1c\xce\x9d\x33\x33\xf8\x95\x34\x90\x92\xa9\x44\xa6\x69\xd8\x08\xf1\x1c\xb0\x92\x7c\x7a\xee\x98\x5d\x7d\x87\xa6\xa2\x19\x1c\x9d\x29\xe5\x2a\x2b\x81\xf2\x2a\x68\x48\xe2\x85\x9e\x65\x85\xb6\xf0\x05\x22\x3d\xf5\xe2\x18\xb7\x94\xae\x1b\x81\xcf\x47\xdd\x3b\x4a\x1b\xe0\xd7\x69\x78\xb4\xf3\xfd\xf3\x4a\x31\xb4\x6f\x22\xeb\x0a\x25\x9f\x0d\x7c\x9f\x9e\x42\x89\x56\xab\xe9\x64\xd1\x84\xd0\x3a\x81\x28\xdd\xc6\xa9\xa1\xc7\x2f\x41\xbb\x34\x94\x28\xf9\x64\x96\x74\x3a\x7a\x33\xd8\x7e\x6f\x13\x4d\x58\xba\x4d\xa4\x6d\x2c\x5f\x81\xfd\x28\x76\xc3\xe1\xb1\x7e\x94\xca\x61\x3d\xce\xe9\x52\x4a\x87\x50\x6f\xe3\x3a\xac\x0f\x71\xba\xf8\x0e\xca\x71\xc6\x58\x9a\xdf\xf7\x00\x0e\xb2\xfb\xf9\x7e\xd7\x1a\x67\xf6\x73\xbd\x1f\x8f\x63\xbb\x84\xb7\x83\x7d\x50\x5e\x80\x8c\xa7\x3f\xde\xeb\xa2\x62\x26\x2b\xff\xee\xf6\xaf\xba\xdb\x24\xfe\xbf\x24\xbf\x03\x00\x00\xff\xff\xcb\xe4\x26\x10\x59\x08\x00\x00" + +func epochAdminRecover_epochCdcBytes() ([]byte, error) { + return bindataRead( + _epochAdminRecover_epochCdc, + "epoch/admin/recover_epoch.cdc", + ) +} + +func epochAdminRecover_epochCdc() (*asset, error) { + bytes, err := epochAdminRecover_epochCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "epoch/admin/recover_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0x19, 0xa7, 0x7c, 0x7f, 0x6d, 0x3b, 0x55, 0x3b, 0xa6, 0x8a, 0x65, 0xc9, 0xef, 0x1a, 0xe7, 0x48, 0xe2, 0xec, 0x1, 0xcf, 0x41, 0xb2, 0x9f, 0x95, 0x8c, 0x5d, 0x37, 0x50, 0x5d, 0xcc, 0xc8}} + return a, nil +} + +var _epochAdminReset_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xcb\x6e\xdb\x30\x10\xbc\xeb\x2b\x16\x3e\xa4\x36\xe2\xc8\x08\x50\xf4\x60\xb4\x0d\x52\x27\x05\x82\x5e\x52\x38\xcd\xa5\xe8\x61\x2d\xad\x25\xc2\x12\x57\xe0\xae\xe2\x1a\x45\xfe\xbd\x20\xe9\x87\x54\xa8\x49\x7c\x32\xa9\x99\xe1\x70\x66\x69\xea\x86\x9d\xc2\xd7\x8a\xb7\xb7\x0d\x67\x25\xac\x1d\xd7\x30\x3a\xae\x47\x49\x07\x71\x77\xf3\x80\xab\x8a\x96\x8a\x1b\x63\x8b\x0e\xb4\xff\x61\x94\x24\xb3\x19\x3c\x94\x04\x8e\x84\x34\xea\xaa\x43\x2b\x98\xa9\x61\x0b\x64\x73\x01\x2d\x09\xb2\xd6\x39\xb2\x0a\x14\x20\xc6\x86\xcd\x93\x17\xa9\xd1\x29\x64\x6c\xd5\x61\xa6\x5e\x14\x6d\x0e\x2b\x2a\x8c\x15\x40\xb0\xb4\xdd\x33\xb7\x46\xcb\xc0\x2d\xcc\x13\x59\xcf\x58\x9b\xa2\x75\xe8\x4f\x4b\x83\x93\x13\x16\xab\x2d\xee\x04\x4a\x14\x2f\x18\x5c\x70\x6b\x95\xdc\xc1\x4d\x38\x7b\x11\xf7\xce\x2f\x23\xbd\xeb\x5e\xc8\xe6\xe4\xa0\x6e\x45\xa1\x71\xfc\x64\x72\x0a\x32\x5e\x6e\x40\x02\xc6\x2b\x5a\xb3\x8b\x98\x10\x08\x28\x6e\x48\xa0\xa9\x30\xa3\x09\xa0\xbf\x8a\xe0\x9a\x74\x07\x35\x65\x25\x5a\x23\x75\x9a\xcc\x66\x5e\xef\xa6\x75\x3e\x69\x4b\xba\x65\xb7\x01\x69\xd8\x6d\x64\x1a\xa4\x56\xcc\x2a\xea\xb0\x69\x28\xf7\x3e\x94\x33\xae\x40\x14\x95\xc0\x88\x0f\x33\x26\x14\xa3\x1c\x0f\x5e\x6e\x32\x3d\x84\xda\x69\xca\x08\xb4\x42\x39\x28\x83\x77\x53\x44\xe7\x31\xbc\x43\x54\x6f\xa8\x2a\x4c\xc7\x50\x1e\xca\x83\x6e\xe0\x1c\x2e\x27\x53\x10\x06\x2d\x51\xc1\xe8\x3b\xf1\x7a\x62\x44\xfd\x88\x84\x8a\x0f\x8d\xbd\x70\xf7\x34\xce\x9e\x91\x7e\x67\x25\xb7\x55\x0e\x6c\xab\x1d\xac\x28\xde\xef\x38\x34\xdc\x6a\xd3\x2a\xf0\xba\xaf\x0d\xad\x9a\xca\xe8\x6e\xee\x15\x21\xac\xf6\x29\x84\xb0\x2e\xf4\xf7\x05\xba\x42\x92\xa4\x73\xd0\xd0\xc5\xe6\xf0\xe3\xce\xea\x87\xf7\xd3\x04\x3a\x3f\x87\x36\xe7\x7a\xc9\xad\xcb\x68\x0e\x4b\xf5\x3d\xf7\x11\xa2\xe8\xf4\xd1\xd0\x76\x58\x40\xe2\x63\xbb\xb5\xf9\xff\x31\xd4\xff\x38\x81\x3f\x49\xf8\xde\x38\x6a\xd0\xd1\x58\x4c\x61\xbd\x41\x6c\xb5\x1c\x7f\x61\xe7\x78\xfb\x88\x55\x4b\x13\x38\xbb\xce\x42\xd7\x9e\x72\x50\xab\x68\xff\x52\xaf\xf3\xda\x58\xf8\x04\x91\x9e\x8a\xb2\xc3\x82\xd2\x55\x10\xf8\x78\x76\x9c\x8a\x34\x00\x3f\x8f\xfd\x28\xcc\x4f\xc3\x92\xa2\xdf\x5e\x46\xd6\x3d\x6a\x39\xe9\x99\xbe\xba\x82\x06\xad\xc9\xc6\xa3\x45\x28\xcd\xb2\x42\x94\x3e\xbc\xe0\x70\x7c\x98\xaf\xfd\xd1\xd0\xa0\x96\xa3\x49\x72\xd4\x39\xd9\x4c\x4f\x93\x3d\x5c\xce\xc0\x66\x3f\xc4\x7f\x7f\xfd\xe6\xba\xab\x97\x79\xdd\x42\x8f\x7f\x5f\xa7\xf4\x4a\xee\xaf\x5f\x21\x1f\xdb\xa7\x37\xc1\x33\xae\x2a\xca\x94\xdd\xa2\x6a\x45\xc9\xc9\x1c\x7e\xfe\x7a\x8d\x13\xa1\xdf\x17\x6f\x01\xe7\x9b\xe2\xbe\x5d\x7d\xa3\x5d\x00\xc7\xd2\x9f\x93\xe7\xe4\x6f\x00\x00\x00\xff\xff\x31\xe8\x6d\xe4\x84\x06\x00\x00" func epochAdminReset_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1317,7 +1338,7 @@ func epochAdminReset_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/reset_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe8, 0x2c, 0xf0, 0xa9, 0xd5, 0x3f, 0xb4, 0x42, 0x85, 0x42, 0x5a, 0xbb, 0xe2, 0x54, 0xb2, 0xdd, 0x90, 0x88, 0xc7, 0x55, 0xbe, 0x47, 0x6b, 0x78, 0xd0, 0xf3, 0x25, 0x54, 0xf6, 0xe9, 0x7a, 0x2b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x65, 0xaa, 0xbb, 0x55, 0xc5, 0x22, 0xcf, 0x8f, 0x94, 0x74, 0x88, 0xe8, 0xa0, 0x90, 0x53, 0x15, 0x36, 0x1b, 0xe, 0x32, 0xd3, 0xb2, 0xb8, 0xe3, 0x72, 0xdd, 0x95, 0x41, 0x21, 0xce, 0x47, 0xe2}} return a, nil } @@ -6359,6 +6380,7 @@ var _bindata = map[string]func() (*asset, error){ "epoch/admin/deploy_epoch.cdc": epochAdminDeploy_epochCdc, "epoch/admin/deploy_qc_dkg.cdc": epochAdminDeploy_qc_dkgCdc, "epoch/admin/pay_rewards.cdc": epochAdminPay_rewardsCdc, + "epoch/admin/recover_epoch.cdc": epochAdminRecover_epochCdc, "epoch/admin/reset_epoch.cdc": epochAdminReset_epochCdc, "epoch/admin/set_automatic_rewards.cdc": epochAdminSet_automatic_rewardsCdc, "epoch/admin/set_bonus_tokens.cdc": epochAdminSet_bonus_tokensCdc, @@ -6714,6 +6736,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "deploy_epoch.cdc": {epochAdminDeploy_epochCdc, map[string]*bintree{}}, "deploy_qc_dkg.cdc": {epochAdminDeploy_qc_dkgCdc, map[string]*bintree{}}, "pay_rewards.cdc": {epochAdminPay_rewardsCdc, map[string]*bintree{}}, + "recover_epoch.cdc": {epochAdminRecover_epochCdc, map[string]*bintree{}}, "reset_epoch.cdc": {epochAdminReset_epochCdc, map[string]*bintree{}}, "set_automatic_rewards.cdc": {epochAdminSet_automatic_rewardsCdc, map[string]*bintree{}}, "set_bonus_tokens.cdc": {epochAdminSet_bonus_tokensCdc, map[string]*bintree{}}, From 20115f797a316c160491ab502cf60f058c019db5 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Thu, 20 Jun 2024 16:15:21 -0400 Subject: [PATCH 135/160] merge master --- contracts/epochs/FlowEpoch.cdc | 1 + lib/go/test/epoch_test_helpers.go | 4 +--- transactions/epoch/admin/reset_epoch.cdc | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 433281e0a..01c370b46 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -795,6 +795,7 @@ access(all) contract FlowEpoch { /// random source must be a hex string of 32 characters (i.e 16 bytes or 128 bits) let randomSource = FlowEpoch.generateRandomSource() + FlowEpoch.startEpochSetup(proposedNodeIDs: proposedNodeIDs, randomSource: randomSource) } diff --git a/lib/go/test/epoch_test_helpers.go b/lib/go/test/epoch_test_helpers.go index 2bfd9373a..e10146a64 100644 --- a/lib/go/test/epoch_test_helpers.go +++ b/lib/go/test/epoch_test_helpers.go @@ -571,9 +571,7 @@ func verifyEpochMetadata( env templates.Environment, expectedMetadata EpochMetadata) { - result := executeScriptAndCheck(t, b, templates.GenerateGetEpochMetadataScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt64(expectedMetadata.counter))}) - metadataFields := cadence.FieldsMappedByName(result.(cadence.Struct)) - + metadataFields := getEpochMetadata(t, b, env, cadence.UInt64(expectedMetadata.counter)) counter := metadataFields["counter"] assertEqual(t, cadence.NewUInt64(expectedMetadata.counter), counter) diff --git a/transactions/epoch/admin/reset_epoch.cdc b/transactions/epoch/admin/reset_epoch.cdc index e1eae6a13..2dfa217d4 100644 --- a/transactions/epoch/admin/reset_epoch.cdc +++ b/transactions/epoch/admin/reset_epoch.cdc @@ -21,7 +21,7 @@ transaction(currentEpochCounter: UInt64, prepare(signer: auth(BorrowValue) &Account) { let epochAdmin = signer.storage.borrow<&FlowEpoch.Admin>(from: FlowEpoch.adminStoragePath) - ?? panic("Could not borrow epoch admin from storage path") + ?? panic("Could not borrow heartbeat from storage path") epochAdmin.resetEpoch(currentEpochCounter: currentEpochCounter, randomSource: randomSource, From 4d826d5ef0da03fe0881a81bca783a92c4dea2f0 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Thu, 20 Jun 2024 16:58:56 -0400 Subject: [PATCH 136/160] update changes from master --- .github/workflows/ci.yml | 4 +- contracts/FlowStakingCollection.cdc | 8 +- lib/go/contracts/contracts.go | 33 +- lib/go/test/staking_test_helpers.go | 55 ++-- tests/random_beacon_history_test.cdc | 446 +++++++++++++++++++++++++-- 5 files changed, 481 insertions(+), 65 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c8f4a9d1a..dfc6bf82a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-go@v1 with: - go-version: '1.20' + go-version: '1.21.5' - name: Install Flow CLI run: sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/feature/stable-cadence/install.sh)" - name: Flow cli Version @@ -19,4 +19,4 @@ jobs: - name: Update PATH run: echo "/root/.local/bin" >> $GITHUB_PATH - name: Run tests - run: export GOPATH=$HOME/go && make ci + run: export GOPATH=$HOME/go && make ci \ No newline at end of file diff --git a/contracts/FlowStakingCollection.cdc b/contracts/FlowStakingCollection.cdc index 963dd2fbc..3687a70ba 100644 --- a/contracts/FlowStakingCollection.cdc +++ b/contracts/FlowStakingCollection.cdc @@ -1075,7 +1075,7 @@ access(all) contract FlowStakingCollection { // Getter functions for accounts StakingCollection information /// Function to get see if a node or delegator exists in an accounts staking collection - access(all) view fun doesStakeExist(address: Address, nodeID: String, delegatorID: UInt32?): Bool { + access(all) fun doesStakeExist(address: Address, nodeID: String, delegatorID: UInt32?): Bool { let account = getAccount(address) let stakingCollectionRef = account.capabilities.borrow<&StakingCollection>(self.StakingCollectionPublicPath) @@ -1085,7 +1085,7 @@ access(all) contract FlowStakingCollection { } /// Function to get the unlocked tokens used amount for an account - access(all) view fun getUnlockedTokensUsed(address: Address): UFix64 { + access(all) fun getUnlockedTokensUsed(address: Address): UFix64 { let account = getAccount(address) let stakingCollectionRef = account.capabilities.borrow<&StakingCollection>(self.StakingCollectionPublicPath) @@ -1095,7 +1095,7 @@ access(all) contract FlowStakingCollection { } /// Function to get the locked tokens used amount for an account - access(all) view fun getLockedTokensUsed(address: Address): UFix64 { + access(all) fun getLockedTokensUsed(address: Address): UFix64 { let account = getAccount(address) let stakingCollectionRef = account.capabilities.borrow<&StakingCollection>(self.StakingCollectionPublicPath) @@ -1155,7 +1155,7 @@ access(all) contract FlowStakingCollection { } /// Determines if an account is set up with a Staking Collection - access(all) view fun doesAccountHaveStakingCollection(address: Address): Bool { + access(all) fun doesAccountHaveStakingCollection(address: Address): Bool { let account = getAccount(address) return account.capabilities .get<&StakingCollection>(self.StakingCollectionPublicPath) diff --git a/lib/go/contracts/contracts.go b/lib/go/contracts/contracts.go index 995b235a8..59b22a199 100644 --- a/lib/go/contracts/contracts.go +++ b/lib/go/contracts/contracts.go @@ -26,19 +26,20 @@ import ( /// const ( - flowFeesFilename = "FlowFees.cdc" - storageFeesFilename = "FlowStorageFees.cdc" - flowServiceAccountFilename = "FlowServiceAccount.cdc" - flowTokenFilename = "FlowToken.cdc" - flowIdentityTableFilename = "FlowIDTableStaking.cdc" - flowQCFilename = "epochs/FlowClusterQC.cdc" - flowDKGFilename = "epochs/FlowDKG.cdc" - flowEpochFilename = "epochs/FlowEpoch.cdc" - flowLockedTokensFilename = "LockedTokens.cdc" - flowStakingProxyFilename = "StakingProxy.cdc" - flowStakingCollectionFilename = "FlowStakingCollection.cdc" - flowContractAuditsFilename = "FlowContractAudits.cdc" - flowNodeVersionBeaconFilename = "NodeVersionBeacon.cdc" + flowFeesFilename = "FlowFees.cdc" + storageFeesFilename = "FlowStorageFees.cdc" + flowServiceAccountFilename = "FlowServiceAccount.cdc" + flowTokenFilename = "FlowToken.cdc" + flowIdentityTableFilename = "FlowIDTableStaking.cdc" + flowQCFilename = "epochs/FlowClusterQC.cdc" + flowDKGFilename = "epochs/FlowDKG.cdc" + flowEpochFilename = "epochs/FlowEpoch.cdc" + flowLockedTokensFilename = "LockedTokens.cdc" + flowStakingProxyFilename = "StakingProxy.cdc" + flowStakingCollectionFilename = "FlowStakingCollection.cdc" + flowContractAuditsFilename = "FlowContractAudits.cdc" + flowNodeVersionBeaconFilename = "NodeVersionBeacon.cdc" + flowRandomBeaconHistoryFilename = "RandomBeaconHistory.cdc" // Test contracts // only used for testing @@ -250,6 +251,12 @@ func NodeVersionBeacon() []byte { return []byte(code) } +func RandomBeaconHistory() []byte { + code := assets.MustAssetString(flowRandomBeaconHistoryFilename) + + return []byte(code) +} + // FlowContractAudits returns the deprecated FlowContractAudits contract. // This contract is no longer used on any network func FlowContractAudits() []byte { diff --git a/lib/go/test/staking_test_helpers.go b/lib/go/test/staking_test_helpers.go index 632dbad18..9ea10b6a7 100644 --- a/lib/go/test/staking_test_helpers.go +++ b/lib/go/test/staking_test_helpers.go @@ -14,13 +14,12 @@ import ( "github.com/onflow/cadence" jsoncdc "github.com/onflow/cadence/encoding/json" "github.com/onflow/cadence/runtime/interpreter" + "github.com/onflow/crypto" "github.com/onflow/flow-emulator/emulator" "github.com/onflow/flow-go-sdk" - "github.com/onflow/flow-go-sdk/crypto" + sdkcrypto "github.com/onflow/flow-go-sdk/crypto" sdktemplates "github.com/onflow/flow-go-sdk/templates" - flow_crypto "github.com/onflow/flow-go/crypto" - "github.com/onflow/flow-core-contracts/lib/go/contracts" "github.com/onflow/flow-core-contracts/lib/go/templates" ) @@ -72,7 +71,7 @@ func deployStakingContract( t *testing.T, b emulator.Emulator, IDTableAccountKey *flow.AccountKey, - IDTableSigner crypto.Signer, + IDTableSigner sdkcrypto.Signer, env *templates.Environment, latest bool, candidateNodeLimits []uint64, @@ -136,7 +135,7 @@ func deployStakingContract( signAndSubmit( t, b, tx, []flow.Address{}, - []crypto.Signer{}, + []sdkcrypto.Signer{}, false, ) @@ -171,7 +170,7 @@ func deployStakingContract( signAndSubmit( t, b, tx, []flow.Address{feesAddr, idTableAddress}, - []crypto.Signer{IDTableSigner, IDTableSigner}, + []sdkcrypto.Signer{IDTableSigner, IDTableSigner}, false, ) @@ -286,13 +285,13 @@ func generateNodeIDs(numNodes int) ([]string, []cadence.Value, []cadence.Value) return ids, collectorIDs, consensusIDs } -// / Generates a key pair for staking, which uses the BLSBLS12381 signing algorithm +// / Generates a key pair for staking, which uses the BLS_BLS12381 signing algorithm // / Also generates a key pair for networking, which uses the ECDSA_P256 signing algorithm func generateKeysForNodeRegistration(t *testing.T) (crypto.PrivateKey, string, crypto.PrivateKey, string) { - stakingPrivateKey, publicKey := generateKeys(t, flow_crypto.BLSBLS12381) + stakingPrivateKey, publicKey := generateKeys(t, crypto.BLSBLS12381) stakingPublicKey := publicKey.String() stakingPublicKey = stakingPublicKey[2:] - networkingPrivateKey, publicKey := generateKeys(t, flow_crypto.ECDSAP256) + networkingPrivateKey, publicKey := generateKeys(t, crypto.ECDSAP256) networkingPublicKey := publicKey.String() networkingPublicKey = networkingPublicKey[2:] @@ -365,7 +364,7 @@ func registerNode(t *testing.T, b emulator.Emulator, env templates.Environment, authorizer flow.Address, - signer crypto.Signer, + signer sdkcrypto.Signer, nodeID, networkingAddress, networkingKey, stakingKey string, amount, tokensCommitted interpreter.UFix64Value, role uint8, @@ -390,7 +389,7 @@ func registerNode(t *testing.T, signAndSubmit( t, b, tx, []flow.Address{authorizer}, - []crypto.Signer{signer}, + []sdkcrypto.Signer{signer}, shouldFail, ) @@ -409,7 +408,7 @@ func registerDelegator(t *testing.T, b emulator.Emulator, env templates.Environment, authorizer flow.Address, - signer crypto.Signer, + signer sdkcrypto.Signer, nodeID string, shouldFail bool, ) { @@ -425,7 +424,7 @@ func registerDelegator(t *testing.T, signAndSubmit( t, b, tx, []flow.Address{authorizer}, - []crypto.Signer{signer}, + []sdkcrypto.Signer{signer}, shouldFail, ) } @@ -435,7 +434,7 @@ func endStakingMoveTokens(t *testing.T, b emulator.Emulator, env templates.Environment, authorizer flow.Address, - signer crypto.Signer, + signer sdkcrypto.Signer, nodeIDs []string, ) { // End staking auction and epoch @@ -448,7 +447,7 @@ func endStakingMoveTokens(t *testing.T, signAndSubmit( t, b, tx, []flow.Address{authorizer}, - []crypto.Signer{signer}, + []sdkcrypto.Signer{signer}, false, ) } @@ -461,7 +460,7 @@ func registerNodesForStaking( b emulator.Emulator, env templates.Environment, authorizers []flow.Address, - signers []crypto.Signer, + signers []sdkcrypto.Signer, stakingKeys []string, networkingkeys []string, ids []string) { @@ -505,7 +504,7 @@ func commitNewTokens(t *testing.T, b emulator.Emulator, env templates.Environment, authorizer flow.Address, - signer crypto.Signer, + signer sdkcrypto.Signer, amount, tokensCommitted interpreter.UFix64Value, shouldFail bool, ) ( @@ -525,7 +524,7 @@ func commitNewTokens(t *testing.T, signAndSubmit( t, b, tx, []flow.Address{authorizer}, - []crypto.Signer{signer}, + []sdkcrypto.Signer{signer}, shouldFail, ) @@ -543,7 +542,7 @@ func commitUnstaked(t *testing.T, b emulator.Emulator, env templates.Environment, authorizer flow.Address, - signer crypto.Signer, + signer sdkcrypto.Signer, amount, tokensCommitted, tokensUnstaked interpreter.UFix64Value, shouldFail bool, ) ( @@ -563,7 +562,7 @@ func commitUnstaked(t *testing.T, signAndSubmit( t, b, tx, []flow.Address{authorizer}, - []crypto.Signer{signer}, + []sdkcrypto.Signer{signer}, shouldFail, ) @@ -583,7 +582,7 @@ func commitRewarded(t *testing.T, b emulator.Emulator, env templates.Environment, authorizer flow.Address, - signer crypto.Signer, + signer sdkcrypto.Signer, amount, tokensCommitted, tokensRewarded interpreter.UFix64Value, shouldFail bool, ) ( @@ -602,7 +601,7 @@ func commitRewarded(t *testing.T, signAndSubmit( t, b, tx, []flow.Address{authorizer}, - []crypto.Signer{signer}, + []sdkcrypto.Signer{signer}, shouldFail, ) @@ -622,7 +621,7 @@ func requestUnstaking(t *testing.T, b emulator.Emulator, env templates.Environment, authorizer flow.Address, - signer crypto.Signer, + signer sdkcrypto.Signer, amount, tokensCommitted, tokensUnstaked, request interpreter.UFix64Value, shouldFail bool, ) ( @@ -641,7 +640,7 @@ func requestUnstaking(t *testing.T, signAndSubmit( t, b, tx, []flow.Address{authorizer}, - []crypto.Signer{signer}, + []sdkcrypto.Signer{signer}, shouldFail, ) @@ -879,7 +878,7 @@ func setNodeRoleOpenSlots( b emulator.Emulator, env templates.Environment, idTableAddress flow.Address, - idTableSigner crypto.Signer, + idTableSigner sdkcrypto.Signer, openSlots [5]uint16, ) { @@ -891,7 +890,7 @@ func setNodeRoleOpenSlots( signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{idTableSigner}, + []sdkcrypto.Signer{idTableSigner}, false, ) } @@ -902,7 +901,7 @@ func setNodeRoleSlotLimits( b emulator.Emulator, env templates.Environment, idTableAddress flow.Address, - idTableSigner crypto.Signer, + idTableSigner sdkcrypto.Signer, slotLimits [5]uint16, ) { // set the slot limits @@ -919,7 +918,7 @@ func setNodeRoleSlotLimits( signAndSubmit( t, b, tx, []flow.Address{idTableAddress}, - []crypto.Signer{idTableSigner}, + []sdkcrypto.Signer{idTableSigner}, false, ) } diff --git a/tests/random_beacon_history_test.cdc b/tests/random_beacon_history_test.cdc index ee42e7bfe..e746d5555 100644 --- a/tests/random_beacon_history_test.cdc +++ b/tests/random_beacon_history_test.cdc @@ -3,6 +3,7 @@ import BlockchainHelpers import "RandomBeaconHistory" access(all) let admin = Test.getAccount(0x0000000000000007) +access(all) let defaultBackfillerMax = UInt64(100) access(all) fun setup() { @@ -27,6 +28,7 @@ fun testGetLowestHeightWhenNotInitialized() { ) } + access(all) fun testGetRandomSourceHistoryPageWithoutLowestHeightSet() { let page: UInt64 = 1 @@ -42,9 +44,10 @@ fun testGetRandomSourceHistoryPageWithoutLowestHeightSet() { ) } + access(all) fun testGetSourceOfRandomnessWithoutLowestHeightSet() { - let atBlockHeight: UInt64 = 101 + let atBlockHeight: UInt64 = getCurrentBlockHeight() + 10 let scriptResult = executeScript( "../transactions/randomBeaconHistory/scripts/get_source_of_randomness.cdc", [atBlockHeight] @@ -56,31 +59,33 @@ fun testGetSourceOfRandomnessWithoutLowestHeightSet() { ) } +// At this point the history array is empty access(all) fun testRecordRandomSource() { - let randomSource: [UInt8] = [0, 1, 1, 2, 3, 5, 8] - let txResult = executeTransaction( + let randomSource: [UInt8] = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 5, 8] + // executeTransaction advances the block height then executes the transaction! + let txResult = executeTransaction( "transactions/record_random_source.cdc", [randomSource], admin ) Test.expect(txResult, Test.beSucceeded()) - - let page: UInt64 = 0 - let perPage: UInt64 = 10 + // get backfiller max entries let scriptResult = executeScript( - "../transactions/randomBeaconHistory/scripts/get_source_of_randomness_page.cdc", - [page, perPage] + "../transactions/randomBeaconHistory/scripts/get_backfiller_max_entries.cdc", + [admin.address] ) Test.expect(scriptResult, Test.beSucceeded()) - - let history = (scriptResult.returnValue as! RandomBeaconHistory.RandomSourceHistoryPage?)! - Test.assertEqual(randomSource, history.values[0]!.value) + let resultBackfillerMax = scriptResult.returnValue! as! UInt64 + Test.assertEqual(defaultBackfillerMax, resultBackfillerMax) } +// At this point the history array has 1 entry access(all) -fun testGetSourceOfRandomnessForMissingBlockHeight() { - let atBlockHeight: UInt64 = 101 +fun testGetSourceOfRandomnessForFutureBlockHeight() { + // random source entry of the current block height must be only available + // starting from the next block height + let atBlockHeight: UInt64 = getCurrentBlockHeight() let scriptResult = executeScript( "../transactions/randomBeaconHistory/scripts/get_source_of_randomness.cdc", [atBlockHeight] @@ -92,6 +97,7 @@ fun testGetSourceOfRandomnessForMissingBlockHeight() { ) } +// At this point the history array has 1 entry access(all) fun testGetSourceOfRandomnessPrecedingRecordedHistory() { let lowestHeight = (executeScript( @@ -111,10 +117,38 @@ fun testGetSourceOfRandomnessPrecedingRecordedHistory() { ) } +// At this point the history array has 1 entry access(all) -fun testGetSourceOfRandomnessFromPreviousBlockHeight() { - // Commit current block and advance to the next one - Test.commitBlock() +fun testGetRecordedSourceOfRandomnessPage() { + let page: UInt64 = 0 + let perPage: UInt64 = 10 + let scriptResult = executeScript( + "../transactions/randomBeaconHistory/scripts/get_source_of_randomness_page.cdc", + [page, perPage] + ) + Test.expect(scriptResult, Test.beSucceeded()) + + let history = (scriptResult.returnValue as! RandomBeaconHistory.RandomSourceHistoryPage?)! + Test.assertEqual(page, history.page) + Test.assertEqual(perPage, history.perPage) + Test.assertEqual(UInt64(1), history.totalLength) + Test.assertEqual(1, history.values.length) + let value: [UInt8] = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 5, 8] + Test.assertEqual(value, history.values[0]!.value) +} + +// At this point the history array has 1 entry +access(all) +fun testGetRecordedSourceOfRandomness() { + // record a new random source and advance to the next block, + // this way the previous block's entry becomes available + let value: [UInt8] = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 5, 8] + let txResult = executeTransaction( + "transactions/record_random_source.cdc", + [value], + admin + ) + Test.expect(txResult, Test.beSucceeded()) let atBlockHeight: UInt64 = getCurrentBlockHeight() - 1 let scriptResult = executeScript( @@ -124,11 +158,11 @@ fun testGetSourceOfRandomnessFromPreviousBlockHeight() { Test.expect(scriptResult, Test.beSucceeded()) let randomSource = scriptResult.returnValue! as! RandomBeaconHistory.RandomSource - let value: [UInt8] = [0, 1, 1, 2, 3, 5, 8] Test.assertEqual(atBlockHeight, randomSource.blockHeight) Test.assertEqual(value, randomSource.value) } +// At this point the history array has 2 entries access(all) fun testGetLatestSourceOfRandomness() { let scriptResult = executeScript( @@ -139,7 +173,7 @@ fun testGetLatestSourceOfRandomness() { let randomSource = scriptResult.returnValue! as! RandomBeaconHistory.RandomSource let atBlockHeight: UInt64 = getCurrentBlockHeight() - 1 - let value: [UInt8] = [0, 1, 1, 2, 3, 5, 8] + let value: [UInt8] = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 5, 8] Test.assertEqual(atBlockHeight, randomSource.blockHeight) Test.assertEqual(value, randomSource.value) } @@ -158,3 +192,379 @@ fun testGetRandomSourceHistoryPageExceedingLastPage() { let history = (scriptResult.returnValue as! RandomBeaconHistory.RandomSourceHistoryPage?)! Test.expect(history.values, Test.beEmpty()) } + + +// At this point the history array has 2 entries +access(all) +fun testGetMissingSourceFromGap() { + // advance blocks without recording a random source, hence creating a gap + // in the history array. + // So far only two entry were recorded + let gapLength = UInt64(90) + var i = UInt64(0) + while i < gapLength { + Test.commitBlock() + i = i + 1 + } + + // sources in the gap are non recorded and must be backfilled later + let gapStartHeight = RandomBeaconHistory.getLowestHeight() + 2 // skip the 2 recorded entries + + i = 0 + while i < gapLength-1 { + let atBlockHeight = gapStartHeight + i + let scriptResult = executeScript( + "../transactions/randomBeaconHistory/scripts/get_source_of_randomness.cdc", + [atBlockHeight] + ) + Test.expect(scriptResult, Test.beFailed()) + Test.assertError( + scriptResult, + errorMessage: "Source of randomness is currently not available but will be available soon" + ) + i = i + 1 + } +} + +// At this point the history array has 2 entries and then an empty gap +access(all) +fun testGetPageFromGap() { + // So far only two entry were recorded and then there is a gap + // the page function only returns the SoRs recorded so far which are limited to the 2 entries + let recordedSources = 2 + + let page: UInt64 = 0 + let perPage: UInt64 = 4 + let scriptResult = executeScript( + "../transactions/randomBeaconHistory/scripts/get_source_of_randomness_page.cdc", + [page, perPage] + ) + Test.expect(scriptResult, Test.beSucceeded()) + + let history = (scriptResult.returnValue as! RandomBeaconHistory.RandomSourceHistoryPage?)! + Test.assertEqual(page, history.page) + Test.assertEqual(perPage, history.perPage) + Test.assertEqual(UInt64(recordedSources), history.totalLength) + Test.assertEqual(recordedSources, history.values.length) + let value: [UInt8] = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 5, 8] + Test.assertEqual(value, history.values[0]!.value) +} + + +// at this point the history has 2 entries and then a gap +access(all) +fun testGetBackfilledSource() { + let gapLength = UInt64(90) // matching the length from the previous test + + // record a new random source, which would trigger fully backfilling the gap + // (when the gap size is less than 100, since the contracts backfills up to 100 entries at a time) + assert(gapLength <= defaultBackfillerMax) + var value: [UInt8] = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 5, 8] + let txResult = executeTransaction( + "transactions/record_random_source.cdc", + [value], + admin + ) + Test.expect(txResult, Test.beSucceeded()) + + // make sure latest source got recorded as expected + Test.commitBlock() + let atBlockHeight: UInt64 = getCurrentBlockHeight() - 1 + let scriptResult = executeScript( + "../transactions/randomBeaconHistory/scripts/get_source_of_randomness.cdc", + [atBlockHeight] + ) + Test.expect(scriptResult, Test.beSucceeded()) + + + let randomSource = scriptResult.returnValue! as! RandomBeaconHistory.RandomSource + Test.assertEqual(atBlockHeight, randomSource.blockHeight) + Test.assertEqual(value, randomSource.value) + + + // check the gap and make sure it got backfilled + let gapStartHeight = RandomBeaconHistory.getLowestHeight() + 2 // skip the 2 recorded entries + var i = UInt64(0) + while i < gapLength { + let atBlockHeight = gapStartHeight + i + let scriptResult = executeScript( + "../transactions/randomBeaconHistory/scripts/get_source_of_randomness.cdc", + [atBlockHeight] + ) + Test.expect(scriptResult, Test.beSucceeded()) + + let randomSource = scriptResult.returnValue! as! RandomBeaconHistory.RandomSource + Test.assertEqual(atBlockHeight, randomSource.blockHeight) + // compare against the expected backfilled value + value = HashAlgorithm.SHA3_256.hash(value) + Test.assertEqual(value, randomSource.value) + i = i + 1 + } + + // Confirm event values + let missingEvents = Test.eventsOfType(Type()) + Test.assertEqual(1, missingEvents.length) + let missingEvent = missingEvents[0] as! RandomBeaconHistory.RandomHistoryMissing + Test.assertEqual(atBlockHeight, missingEvent.blockHeight) + Test.assertEqual(gapStartHeight, missingEvent.gapStartHeight) + + let backfilledEvents = Test.eventsOfType(Type()) + Test.assertEqual(1, backfilledEvents.length) + let backfilledEvent = backfilledEvents[0] as! RandomBeaconHistory.RandomHistoryBackfilled + Test.assertEqual(atBlockHeight, backfilledEvent.blockHeight) + Test.assertEqual(gapStartHeight, backfilledEvent.gapStartHeight) + Test.assertEqual(gapLength, backfilledEvent.count) +} + +// At this point the history array has 2+90+1 = 93 entries and no gaps +access(all) +fun testGetPageAfterBackfilling() { + // So far only two entry were recorded and then there is a gap + // the page function only returns the SoRs recorded so far which are limited to the 2 entries + let recordedSources = UInt64(93) + + let page: UInt64 = 5 + let perPage: UInt64 = 10 + assert((page+1) * perPage < recordedSources) + let scriptResult = executeScript( + "../transactions/randomBeaconHistory/scripts/get_source_of_randomness_page.cdc", + [page, perPage] + ) + Test.expect(scriptResult, Test.beSucceeded()) + + let history = (scriptResult.returnValue as! RandomBeaconHistory.RandomSourceHistoryPage?)! + Test.assertEqual(page, history.page) + Test.assertEqual(perPage, history.perPage) + Test.assertEqual(recordedSources, history.totalLength) + Test.assertEqual(perPage, UInt64(history.values.length)) +} + +// reset the blockchain state back to the lowest height (1 SoR entry) +// +// The next section tests an edge case where a gap is not contiguous. This happens +// when an initial large gap doesn't get fully backfilled before another gap occurs. +access(all) +fun testNonContiguousGaps() { + Test.reset(to: RandomBeaconHistory.getLowestHeight()) + + // advance blocks without recording a random source, hence creating a gap + // in the history array. The gap is long enough so that it can't be backfilled + // in one transaction only (gap is larger than 100) + var gapLength = UInt64(120) + assert (gapLength > defaultBackfillerMax) + var i = UInt64(0) + while i < gapLength { + Test.commitBlock() + i = i + 1 + } + + // record a new random source, which would trigger partially backfilling the gap + // (when the gap size is more than 100, since the contracts backfills up to 100 entries at a time) + var value: [UInt8] = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 5, 8] + var txResult = executeTransaction( + "transactions/record_random_source.cdc", + [value], + admin + ) + Test.expect(txResult, Test.beSucceeded()) + var backfillingHeight = getCurrentBlockHeight() + + // the gap is partially backfilled + // for `gapStartHeight` skip the 1 recorded entry and backfilled entries + var gapStartHeight = RandomBeaconHistory.getLowestHeight() + defaultBackfillerMax + 1 + // the remaining gap after backfilling + gapLength = gapLength - defaultBackfillerMax + + // check that the gap isn't fully backfilled + // (check that the gap got backfilled was covered by an earlier test) + i = 0 + while i < gapLength { + let atBlockHeight = gapStartHeight + i + let scriptResult = executeScript( + "../transactions/randomBeaconHistory/scripts/get_source_of_randomness.cdc", + [atBlockHeight] + ) + Test.expect(scriptResult, Test.beFailed()) + Test.assertError( + scriptResult, + errorMessage: "Source of randomness is currently not available but will be available soon" + ) + i = i + 1 + } + + // check that getting pages also fails in this case + // because some entries are missing from the page + var page: UInt64 = 0 + var perPage: UInt64 = defaultBackfillerMax + 5 // 5 entries are empty on the SoR array + var scriptResult = executeScript( + "../transactions/randomBeaconHistory/scripts/get_source_of_randomness_page.cdc", + [page, perPage] + ) + Test.expect(scriptResult, Test.beFailed()) + Test.assertError( + scriptResult, + errorMessage: "Source of randomness is currently not available but will be available soon" + ) + + // Confirm event values + // There should be one event of each type + var missingEvents = Test.eventsOfType(Type()) + Test.assertEqual(1, missingEvents.length) + var missingEvent = missingEvents[0] as! RandomBeaconHistory.RandomHistoryMissing + Test.assertEqual(backfillingHeight, missingEvent.blockHeight) + Test.assertEqual(gapStartHeight - defaultBackfillerMax, missingEvent.gapStartHeight) + + var backfilledEvents = Test.eventsOfType(Type()) + Test.assertEqual(1, backfilledEvents.length) + var backfilledEvent = backfilledEvents[0] as! RandomBeaconHistory.RandomHistoryBackfilled + Test.assertEqual(backfillingHeight, backfilledEvent.blockHeight) + Test.assertEqual(gapStartHeight- defaultBackfillerMax, backfilledEvent.gapStartHeight) + Test.assertEqual(defaultBackfillerMax, backfilledEvent.count) + + // insert a new gap and make sure it can be all backfilled in the next transaction + var newGapLength = UInt64(20) + assert (gapLength + newGapLength < defaultBackfillerMax) + + i = UInt64(0) + while i < newGapLength { + Test.commitBlock() + i = i + 1 + } + + // at this point there is a gap of size `gapLength` followed by one entry, and then + // a new gap of size `newGapLength` + // one call to the heartbeat function should backfill both gaps + txResult = executeTransaction( + "transactions/record_random_source.cdc", + [value], + admin + ) + Test.expect(txResult, Test.beSucceeded()) + backfillingHeight = getCurrentBlockHeight() + + // check that both first and second gap are backfilled + i = 0 + while i < gapLength { + let atBlockHeight = gapStartHeight + i + let scriptResult = executeScript( + "../transactions/randomBeaconHistory/scripts/get_source_of_randomness.cdc", + [atBlockHeight] + ) + Test.expect(scriptResult, Test.beSucceeded()) + i = i + 1 + } + gapStartHeight = gapStartHeight + gapLength + 1 + i = 0 + while i < newGapLength { + let atBlockHeight = gapStartHeight + i + let scriptResult = executeScript( + "../transactions/randomBeaconHistory/scripts/get_source_of_randomness.cdc", + [atBlockHeight] + ) + Test.expect(scriptResult, Test.beSucceeded()) + i = i + 1 + } + + // check getting a page with the entire history succeeds, + // which means no entry got left empty. + let totalSources = gapStartHeight + newGapLength + 1 - RandomBeaconHistory.getLowestHeight() + + page = 0 + perPage = totalSources + scriptResult = executeScript( + "../transactions/randomBeaconHistory/scripts/get_source_of_randomness_page.cdc", + [page, perPage] + ) + Test.expect(scriptResult, Test.beSucceeded()) + + let history = (scriptResult.returnValue as! RandomBeaconHistory.RandomSourceHistoryPage?)! + Test.assertEqual(page, history.page) + Test.assertEqual(perPage, history.perPage) + Test.assertEqual(totalSources, history.totalLength) + Test.assertEqual(perPage, UInt64(history.values.length)) + + // Confirm event values + + // There should be two events of each type + // the first events were already checked above - focus only on the second event of each type + missingEvents = Test.eventsOfType(Type()) + Test.assertEqual(2, missingEvents.length) + missingEvent = missingEvents[1] as! RandomBeaconHistory.RandomHistoryMissing + Test.assertEqual(backfillingHeight, missingEvent.blockHeight) + Test.assertEqual(gapStartHeight, missingEvent.gapStartHeight) + + backfilledEvents = Test.eventsOfType(Type()) + Test.assertEqual(2, backfilledEvents.length) + backfilledEvent = backfilledEvents[1] as! RandomBeaconHistory.RandomHistoryBackfilled + Test.assertEqual(backfillingHeight, backfilledEvent.blockHeight) + Test.assertEqual(gapStartHeight - gapLength - 1, backfilledEvent.gapStartHeight) + Test.assertEqual(gapLength + newGapLength, backfilledEvent.count) +} + +// independent test from the rest (it resets the blockchain state) +access(all) +fun testRecordInvalidRandomSource() { + // reset the blockchain state back to the lowest height (1 SoR entry) + Test.reset(to: RandomBeaconHistory.getLowestHeight()) + + let invalidRandomSource: [UInt8] = [0, 1, 1, 2, 3, 5, 8] + assert (invalidRandomSource.length < (128/8)) + // short sources should be rejected + let txResult = executeTransaction( + "transactions/record_random_source.cdc", + [invalidRandomSource], + admin + ) + Test.expect(txResult, Test.beFailed()) + Test.assertError( + txResult, + errorMessage: "Random source must be at least 128 bits" + ) +} + +// independent test from the rest (it resets the blockchain state) +access(all) +fun testBackfillerMaxEntryPerCall() { + // reset the blockchain state back to the lowest height (1 SoR entry) + Test.reset(to: RandomBeaconHistory.getLowestHeight()) + // get backfiller max entries + var scriptResult = executeScript( + "../transactions/randomBeaconHistory/scripts/get_backfiller_max_entries.cdc", + [admin.address] + ) + Test.expect(scriptResult, Test.beSucceeded()) + var resultBackfillerMax = scriptResult.returnValue! as! UInt64 + Test.assertEqual(defaultBackfillerMax, resultBackfillerMax) + + let randomSource: [UInt8] = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 3, 5, 8] + // this creates a backfiller + var txResult = executeTransaction( + "transactions/record_random_source.cdc", + [randomSource], + admin + ) + Test.expect(txResult, Test.beSucceeded()) + // set backfiller max entries + let newBackfillerMax = UInt64(55) + txResult = executeTransaction( + "../transactions/randomBeaconHistory/transactions/set_backfiller_max_entries.cdc", + [newBackfillerMax], + admin + ) + Test.expect(txResult, Test.beSucceeded()) + // get backfiller max entries + scriptResult = executeScript( + "../transactions/randomBeaconHistory/scripts/get_backfiller_max_entries.cdc", + [admin.address] + ) + Test.expect(scriptResult, Test.beSucceeded()) + resultBackfillerMax = scriptResult.returnValue! as! UInt64 + Test.assertEqual(resultBackfillerMax!, newBackfillerMax) + // invalid backfiller max entries + txResult = executeTransaction( + "../transactions/randomBeaconHistory/transactions/set_backfiller_max_entries.cdc", + [0], + admin + ) + Test.expect(txResult, Test.beFailed()) +} \ No newline at end of file From 59905bbd3b2c8decc1ec63889b276a097fec747e Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Thu, 20 Jun 2024 17:00:11 -0400 Subject: [PATCH 137/160] update changes from master --- transactions/idTableStaking/admin/capability_end_epoch.cdc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/transactions/idTableStaking/admin/capability_end_epoch.cdc b/transactions/idTableStaking/admin/capability_end_epoch.cdc index f660ac330..aafdc2bd0 100644 --- a/transactions/idTableStaking/admin/capability_end_epoch.cdc +++ b/transactions/idTableStaking/admin/capability_end_epoch.cdc @@ -25,7 +25,7 @@ transaction(ids: {String: Bool}, newPayout: UFix64) { execute { let rewardsSummary = self.adminRef.calculateRewards() - self.adminRef.payRewards(rewardsSummary) + self.adminRef.payRewards(forEpochCounter: 1, rewardsSummary: rewardsSummary) self.adminRef.setEpochTokenPayout(newPayout) @@ -33,6 +33,6 @@ transaction(ids: {String: Bool}, newPayout: UFix64) { self.adminRef.endStakingAuction() - self.adminRef.moveTokens() + self.adminRef.moveTokens(newEpochCounter: 2) } -} +} \ No newline at end of file From f893516c24b771f3c741588a66b175ce0f2d69bd Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Thu, 20 Jun 2024 17:01:18 -0400 Subject: [PATCH 138/160] Update random_beacon_history_test.cdc --- tests/random_beacon_history_test.cdc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/random_beacon_history_test.cdc b/tests/random_beacon_history_test.cdc index e746d5555..705102a79 100644 --- a/tests/random_beacon_history_test.cdc +++ b/tests/random_beacon_history_test.cdc @@ -567,4 +567,4 @@ fun testBackfillerMaxEntryPerCall() { admin ) Test.expect(txResult, Test.beFailed()) -} \ No newline at end of file +} From 52f8c3691329b6656610f2170cbf0f4f3a900447 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Thu, 20 Jun 2024 17:02:03 -0400 Subject: [PATCH 139/160] fix whitespace --- .github/workflows/ci.yml | 3 ++- transactions/idTableStaking/admin/capability_end_epoch.cdc | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dfc6bf82a..168130a7f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,4 +19,5 @@ jobs: - name: Update PATH run: echo "/root/.local/bin" >> $GITHUB_PATH - name: Run tests - run: export GOPATH=$HOME/go && make ci \ No newline at end of file + run: export GOPATH=$HOME/go && make ci + \ No newline at end of file diff --git a/transactions/idTableStaking/admin/capability_end_epoch.cdc b/transactions/idTableStaking/admin/capability_end_epoch.cdc index aafdc2bd0..8996e50c7 100644 --- a/transactions/idTableStaking/admin/capability_end_epoch.cdc +++ b/transactions/idTableStaking/admin/capability_end_epoch.cdc @@ -35,4 +35,4 @@ transaction(ids: {String: Bool}, newPayout: UFix64) { self.adminRef.moveTokens(newEpochCounter: 2) } -} \ No newline at end of file +} From 3e09ba013197a836a48bce8b766a027c59c7b6f2 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Thu, 20 Jun 2024 17:02:54 -0400 Subject: [PATCH 140/160] Update ci.yml --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 168130a7f..dfc6bf82a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,5 +19,4 @@ jobs: - name: Update PATH run: echo "/root/.local/bin" >> $GITHUB_PATH - name: Run tests - run: export GOPATH=$HOME/go && make ci - \ No newline at end of file + run: export GOPATH=$HOME/go && make ci \ No newline at end of file From 3da8cf5b87f3ccad139077567ff8cab0ecca2e82 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Thu, 20 Jun 2024 17:11:32 -0400 Subject: [PATCH 141/160] update assets --- lib/go/contracts/internal/assets/assets.go | 6 +-- lib/go/templates/internal/assets/assets.go | 54 ++++++++++++++++++++-- 2 files changed, 54 insertions(+), 6 deletions(-) diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index c4570d338..a47afd50e 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -12,7 +12,7 @@ // StakingProxy.cdc (5.71kB) // epochs/FlowClusterQC.cdc (18.958kB) // epochs/FlowDKG.cdc (18.691kB) -// epochs/FlowEpoch.cdc (60.365kB) +// epochs/FlowEpoch.cdc (59.964kB) // testContracts/TestFlowIDTableStaking.cdc (9.241kB) package assets @@ -322,7 +322,7 @@ func epochsFlowdkgCdc() (*asset, error) { return a, nil } -var _epochsFlowepochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xeb\x73\x1b\x37\xf2\xe0\x77\xff\x15\x88\x3f\x24\xe4\x86\xa2\xfc\xb8\xfa\xd5\x96\xce\xf2\x9e\x42\xc9\x8e\xca\xb1\x2d\x5b\x4a\xf6\xaa\x52\xa9\x18\x9c\x01\x49\xac\x86\x03\x7a\x80\x11\xcd\x38\xfe\xdf\xaf\xd0\x78\x3f\x66\x48\x4a\x76\xb2\xbb\x17\x7e\xb1\x45\x02\x8d\x46\xa3\xd1\xe8\x17\x1a\x74\xb9\x62\x8d\x40\xcf\xda\x7a\x4e\xa7\x15\xb9\x62\xd7\xa4\x46\xb3\x86\x2d\xd1\xfd\xe0\xbb\xfb\xf7\x4c\xcb\x8a\xad\x83\x56\xe6\xef\xa0\xc5\xf9\xe9\x15\x9e\x56\xe4\x52\xe0\x6b\x5a\xcf\xbd\xa6\xe1\x0f\x41\x9f\x49\xd5\x72\x41\x9a\x37\x13\xaf\xb9\xfd\x2e\x68\x79\xfa\xe2\xb9\xd7\xe6\xf4\xc5\xf3\xe0\xd7\x67\x84\x70\xef\x67\xf9\xe7\xfd\x7b\xf7\x0e\x0f\xd1\xd5\x82\x20\xc1\x56\x07\x15\xb9\x21\x15\xe2\x4b\xdc\x08\x54\xb0\x5a\x34\xb8\x10\x68\x89\x6b\x3c\x97\xb8\x8a\x05\x41\x15\x9d\x91\x62\x53\x54\x04\xb1\x19\x22\x2b\x56\x2c\xf8\x18\x9d\xd7\x00\x7e\x24\x41\xa9\xef\x10\x6e\x08\xb4\xe7\x4b\x5c\x55\x84\x0b\xd4\xd6\x54\xc8\x3e\x82\x2e\x09\x5a\x2f\x88\xfe\x9d\x96\xa4\x16\x54\x6c\x90\x90\x93\x47\x03\xe8\x43\x64\x4b\x09\xac\x26\x62\xcd\x9a\x6b\xc4\x56\xa4\xc1\x82\x35\x7c\x88\x28\x47\x5c\x60\x41\x8b\x31\x7a\x6d\xbe\x45\x4b\xbc\x41\xac\xae\x36\xa8\x22\xf8\x86\x20\xd6\xa0\x7f\x31\x5a\xc3\x00\x1a\x84\x84\x86\x85\xc2\x0e\x4d\x59\x5b\x97\xb8\xa1\x84\xc7\x40\xa6\x04\x91\x7f\x91\x42\x90\x12\x95\x6d\x23\x27\x8d\x6b\xdd\x69\xc6\x1a\x74\x83\x1b\xca\x5a\x2e\x81\x2d\x29\x2f\xc9\x92\xe0\x9a\xb5\x0d\x1f\xa1\x69\x2b\xe4\x70\x1b\xd4\x90\x25\xa6\x35\xd2\xa3\x47\xd3\x6b\x6b\x41\x2b\xf8\x41\xc1\x24\x75\xc9\xc7\xf7\x0e\x0f\x25\xc0\x33\x47\x38\xbe\xaa\xa8\x40\xb4\x16\x0c\x3d\x46\xab\x05\xe6\x84\x1f\xc9\x26\xbf\x1f\xdf\xfa\x03\xdd\xd1\xd9\xc5\xeb\xc9\xf7\xe8\x15\xda\xfe\xf9\xdd\x36\xfe\xf6\x21\x1a\x8f\xc7\xd0\xff\x40\x7e\x90\x61\x5d\xf8\xeb\xf7\x03\x74\x49\x44\xbb\x42\xf2\x7f\x13\xb6\x5c\x52\x21\x89\x77\xf0\xfb\xef\xb6\xd7\x9d\x90\x96\x10\x1e\x0e\x11\xba\xbc\x3a\x79\x71\xfe\xea\x39\xba\xf8\xfe\xe4\xf2\x4c\x7e\xf9\x8a\x95\xc4\xf1\x05\x90\x0d\x48\x2c\x18\xe2\xed\x74\x49\x85\x64\x13\xc0\xb3\x21\xef\x5b\xc2\x05\x87\x15\x94\xb4\x7f\x75\xf6\x7f\xaf\xf4\x02\xa8\x45\x96\xf0\xc4\x82\x72\x45\xeb\x31\x3a\x11\x6a\x8d\xea\x12\x38\xd6\xfe\x32\x82\xaf\x61\xa1\xe2\x4d\xd2\x10\xce\xaa\x1b\xc2\x65\x0b\x09\x8e\xb5\x82\x0b\x5c\x97\x12\x81\x04\x11\x5c\x97\xa8\x24\x82\x34\x4b\x5a\xab\x2e\x31\xa3\x18\x54\x6b\xf2\x41\xd8\x5d\x35\x86\x7d\x9a\x1d\x9e\x2c\xa9\xe0\x0e\x3b\xb5\x24\x9c\x34\x37\xb4\x20\x88\xdc\x90\x5a\xb5\xc5\xb4\xb6\xd3\xed\x1d\x53\x0d\x38\x42\xeb\x05\x2d\x16\x88\xd6\x54\x50\x2c\x34\xaa\xa2\xc1\x35\xa7\x82\xb2\x5a\x12\x5b\xcf\x57\x61\xa5\xc6\xbd\x00\x2a\xea\xc5\x7b\x34\x44\x97\x67\x57\x3f\x5e\xb8\x95\xfb\xe7\x82\xd4\x1e\x51\xd1\x94\xcc\x69\xad\x40\xaf\x70\x23\x68\x41\x57\xb8\x16\x1c\xd9\x0d\x6c\xd0\x51\x7b\x83\x88\x31\x3a\x55\x7b\x53\x02\x91\x10\xdd\xe2\xf0\x08\xc6\xaa\x21\x2b\xd9\x2b\x9d\x1b\x48\x2d\xd5\xb6\xad\x70\x33\x42\x05\xab\x2a\x52\xc8\x69\x81\xe4\x61\x25\xe1\x86\x93\x6e\x98\x9c\xbb\x86\x41\x1b\x54\x28\xd9\xfb\x0d\x47\x0d\x63\x02\xbd\x6f\x59\xd3\x2e\x51\x41\x1a\x41\x67\xb4\xc0\x82\xc0\x0a\x17\xac\xe6\xa4\xe6\x4a\x5c\x28\x78\x4d\xab\xe6\x54\x52\x2e\x1a\x3a\x6d\xe5\x56\xb9\x26\x1b\x34\x27\xb5\x64\x64\x49\xd2\x55\xc3\x04\x2b\x58\x85\x06\xa7\x2f\x9e\x0f\x81\x9d\x89\x40\xed\x0a\xfa\x35\xb8\x2e\xd9\x52\xc2\x9b\x12\x5c\xb0\x7a\x6c\x88\x09\x13\x87\xb9\x02\x14\xb5\x1f\x0a\xb6\x5c\x55\x44\xf4\xb1\xad\xe5\x1b\xbb\x86\x6a\x0f\x77\xf2\x0e\x80\x92\x54\x9b\xe1\x42\x70\xb5\x3d\x94\xc4\x5e\x35\xac\x20\x9c\x6b\x9e\x91\xf0\xb6\xb0\x8d\xc6\x48\x0f\x18\x30\xcd\xe3\x21\x9a\xbc\x7e\xf9\xf2\xfc\xea\xea\xec\x74\x1b\xe3\x8c\x7c\x31\x2f\x8f\x87\x59\x5b\x55\x1b\xb3\xf2\x25\x0c\x96\x0c\x1d\xed\xab\x13\x34\xc3\xb4\x6a\x1b\x10\x1f\xa4\x16\xa4\x09\xc7\x99\xb1\xc6\x9f\x00\xd0\x81\x45\x0c\xa5\x66\x5c\xc2\xfa\xcb\x19\x63\xb1\x0b\x4b\xcb\x71\x15\x92\x66\xb5\x2c\x41\xdb\x15\xf0\xb6\x24\x6b\xd9\x36\xc4\x6e\x46\x8e\x30\x2a\x1a\x2a\x68\x81\x2b\x8b\xb7\x64\xb8\x35\xad\x2a\x54\xe0\x96\x2b\x18\xc5\x42\x1e\x44\x82\xa1\x05\xae\xc4\xf8\xde\x3d\x5c\xc8\xf5\x19\xe0\xaa\x1a\x3a\x06\x90\xe7\xb6\x5a\x87\x8f\xf7\xee\x49\xc1\xef\xb7\x22\x75\xbb\x54\xab\x04\xab\x73\x84\x7e\x3c\xaf\xc5\xdf\xd1\xc7\x7b\xe6\x94\x08\x40\x4a\x52\x69\x31\x7d\xf2\xe3\xe4\xea\xfc\xf5\xab\xee\x76\x70\xb6\x80\x5c\xd8\xd2\x46\xb1\x01\x34\xfa\xd4\x81\xa0\x3c\x09\xde\xb2\x6a\x17\xf4\x5e\xbd\x7e\x75\xd6\xfd\xeb\x44\x49\x00\xd6\xf4\x35\x31\x7b\xba\x1b\xed\x0f\xa4\x68\x41\x8c\x74\x36\xf9\x89\x34\x4a\x50\xf4\xb6\x3a\x81\x2f\xfc\xa9\x1f\x6a\x55\x4d\x0b\x5b\x21\xb7\x72\xb8\x51\x29\x87\x2d\x2d\xe5\xca\x5a\x4b\x06\xb7\xd6\x8e\x81\xb9\x05\x27\x18\xc2\xa8\x26\x6b\xcd\x8e\x9a\x41\xcd\x89\x85\xdb\x42\x09\x25\xb5\x39\x13\xf2\xc3\x98\xea\xc4\x01\x64\x06\xf7\xec\x74\x0c\xae\x05\x6b\x61\x3f\x19\x09\x5c\xb4\x4d\x23\x7b\xa9\xf1\x60\x9b\x50\xae\xb6\x32\x9c\x4d\xa6\xbf\xee\xa7\x16\xf5\x7f\xfe\xd7\x28\x85\x3c\xa3\x0d\x17\xe8\x86\x92\x35\x1a\xd0\x5a\xca\x64\x7a\x43\x86\x46\x24\x05\xe3\x8c\x6d\x67\xe8\xf4\x13\x25\xeb\x1e\xc0\x15\xde\x15\xee\x37\x3c\x26\x95\x1b\x49\xff\x70\xa2\xbe\x3f\xab\xcb\xcf\x36\xaa\x3f\x9b\x1a\x57\x7d\x70\x99\xc0\x15\x7a\xf6\xc3\xeb\x7f\x02\x3a\xa4\x44\xd3\x0d\xc2\x55\xa5\x8f\x23\xa5\x87\x54\x64\xae\x74\xa8\xec\x12\xb9\xc1\x84\x04\x76\x09\x60\x8e\xd0\x8f\xcf\xe8\x87\x8e\xe1\x78\xbb\x5a\x55\x1b\x89\xb9\x1c\x09\x06\xcf\x42\x0e\xba\x9e\xcb\x29\x97\xfa\xa8\x68\xc8\x1a\x37\xa5\x16\xa2\x20\xd5\xa6\x52\x90\xd2\xd2\x02\x5a\x35\xe4\x46\x6a\xe2\x11\x24\x40\x51\x8a\xb4\x4b\xc0\xa1\x0b\x4d\xb0\x76\x24\xaa\xdd\x03\xb1\x56\x20\x1c\xa9\x81\xfd\x94\x79\xab\x60\xb9\x31\xe5\x2f\xc3\xec\xc6\xcd\x68\x67\xf1\xc6\x5d\x77\x1f\x98\xd0\xdd\x82\xd5\x2a\xeb\xb9\x3d\xa4\x15\x09\x81\x33\xe8\x6f\xa4\xec\xd2\xf2\xda\x55\xc1\x96\x92\x71\xbd\xb9\x74\xed\x6d\x39\xe0\x0e\x5b\x3b\x02\x89\x5e\xb6\x5c\x48\x82\xb2\x9a\xa0\x79\x43\xb0\x3a\x56\x31\x88\x98\x00\x58\xaf\x8c\x18\xef\x28\x12\xce\x77\x99\x27\x5a\x53\xb1\xb0\x3b\x00\xd1\x7a\xc6\x9a\x25\x0e\x37\xae\xcf\x8e\x47\xc1\xb7\xb2\xcf\xf9\xe9\xc8\xee\xf9\x6b\xb2\x19\x19\xcd\x23\xf7\x37\x2e\xcb\x06\x54\xa2\x86\x55\x64\x14\x80\x32\x20\x3c\x0c\x46\x68\x4d\xe8\x7c\x21\x46\xb0\x2f\x97\xac\x21\x0e\x27\x18\xb9\x9e\xb1\x23\xf4\x73\xea\x2b\x18\xbf\xd2\xbf\xfe\xb2\xb7\x94\xcc\x71\xc1\x67\x11\x93\xdd\x80\xb7\x48\x2c\xb9\xfc\x4a\xbd\x46\x98\x73\x3a\xaf\x97\x92\x13\xba\x58\xec\x0c\x4b\x2b\xba\x22\xd0\x48\x1f\x5e\x15\xe5\x22\x80\xd9\x90\x55\x43\x38\x91\x0a\x98\x64\x45\x0b\x5e\xe9\xe8\x6a\xcf\x48\x96\x00\xd5\x4c\xb2\xc5\xf9\x29\xd7\x83\x6b\xfd\x71\x81\x43\x88\x1a\xc4\x48\xb1\x93\x32\x0a\xd4\xe2\x29\xa1\x0a\x06\x83\xc7\xb7\x5a\xaf\xd0\x3e\x1b\xae\x57\xd1\xba\x70\xc6\xfa\x7f\xb9\xf5\xe3\xac\x6d\x0a\xf0\xb6\x28\xe5\xbf\x26\x9c\x2b\xab\x40\xe2\x26\xa7\x4b\x70\x49\x1a\xc4\x89\xb6\x5e\x10\xae\xe6\xac\xa1\x62\xb1\x04\xec\x02\x80\x7d\x9b\x5f\x7e\xd4\x10\x97\x30\xe4\x11\xba\x14\xd2\xca\xca\xe0\x54\x12\x5c\x56\x60\xba\xb2\x19\x22\x72\x09\x94\xa2\xac\x17\xe0\xf4\xc5\x73\x67\xc6\x08\x26\x45\x80\x51\x6e\x4b\xd3\xc6\x60\x10\xc0\xf6\x6c\x57\x2d\xd6\x4e\xed\x48\xca\x2f\x42\x0a\x3a\xa3\x1a\x0a\x69\x96\x80\x00\x76\x96\x96\x62\xc7\xba\x5d\x4e\x49\x13\x6e\x68\xb0\x1d\xb0\x42\xcd\x69\xe4\x88\x4d\xa5\x18\x96\xe0\x3d\x89\x29\x57\x90\x13\x2c\xf5\xf2\x69\xc5\x8a\x6b\xb5\xca\x00\x5a\x8b\xb1\x00\xb4\x11\x69\x68\x4e\x6f\x48\x6d\x89\x33\x42\x54\xa0\x02\xd7\x88\xe3\x19\xa9\x36\x1d\x46\x88\xaf\x5a\xc9\xcf\xe9\x8b\xe7\xa0\x6b\x3f\x7c\x96\x6e\x94\xb8\xcd\xa3\x1d\xda\x3c\xce\xb4\x49\x0f\x43\xdc\xcc\x89\x40\x65\xab\x6d\xd0\x3c\x9b\x8c\x24\xd5\x39\x29\x58\x5d\x3a\xde\x56\x5d\x4f\x75\xcf\x14\x8f\x68\x08\x79\x96\x82\x07\xb0\x6b\x88\x60\x89\xd5\x60\x07\xab\x86\x14\x94\x4b\xc4\x7e\xac\xe9\x07\xe8\x1f\x8d\x7f\x56\x97\x57\x74\x49\xcc\xf0\x9d\x47\x6f\xd6\xb8\xed\x3f\x7a\xc1\x5d\x6a\x0f\x5f\x0b\xd2\xb9\xba\xdc\x01\xec\x01\x02\x67\x24\x40\x93\x82\xc5\xb3\xcc\x3b\x26\x6e\xe1\x2e\xb0\x54\x86\x49\xed\x76\x4c\xdf\xc9\xac\xe7\x73\x87\xb3\x99\xbc\x6f\x71\x65\x18\xd2\x74\xa2\xe9\x11\x6d\x15\x2e\x6f\x8f\x02\x22\xbb\x1e\xcf\x57\xa0\xd7\xf1\xb6\x12\xe6\x88\x78\x33\x41\x78\x3e\x6f\xa4\xf6\xa9\x1d\x1f\x72\x8e\x91\x4c\x37\x02\x3a\x80\xe5\x0b\x6b\x4f\xe0\xa2\x86\x14\x84\xde\x10\xa5\x26\x62\xcf\xbb\x63\x04\x76\x00\xe5\xcd\x04\x81\x8b\x4e\x29\xbe\x19\x27\x0e\x68\x85\x20\xde\xcc\x91\xa1\xfd\x34\x84\x7b\xb3\x36\x42\xbc\x53\xaa\xbf\x99\xe4\xe4\xba\xa2\x85\x5c\x91\x55\x3b\xad\x68\x21\x95\x07\xee\xb8\x4d\xcb\x50\xe5\x51\x21\x75\xc1\x4a\x29\x98\xb8\xd4\xdf\x41\xbd\xab\xd8\xfa\x60\xce\xc2\x43\xa9\xd9\xac\x04\x43\x15\x9d\x36\xb8\xd9\x80\x5b\xa4\x46\x0b\xf2\xe1\x40\x77\x0f\x05\xe2\xf3\x86\x49\x31\x6b\xc7\x96\xdc\x2b\xac\xbe\xa0\xc9\x3f\x42\x33\x56\x55\x6c\xad\x0c\x07\xf0\x19\xd6\x25\xbd\xa1\xa5\x64\x1a\x89\xb0\x05\x59\x5e\xcf\x2f\xda\xe9\x0b\xb2\x91\x64\x50\x07\xc7\x2f\xdd\x1a\xf0\x5b\x52\xb0\x1b\x38\xb4\xfa\x36\x22\x96\x0b\x2a\xdb\xa9\x4e\xb0\x29\xb1\x3a\xe3\xa8\xf1\xcd\x09\x73\x42\x5b\x17\x90\xf3\x89\x59\xa7\x90\xc5\x60\x4e\xc0\x09\x23\x8d\xde\x1a\x9d\x3d\x7b\x09\xa1\x04\xa2\x6d\x8e\xee\xa1\x5a\xae\x46\x91\x0d\x1a\x5a\x92\x8c\x21\x2b\x99\x50\x83\x08\x86\x96\x47\x87\xb4\x25\x2c\x0a\x7c\xa5\x94\xc3\x31\xba\x5a\xc8\x59\xc4\x14\xd0\x8b\xae\x28\x6e\x4f\xd1\xc0\x8b\x24\x18\x6a\x57\xa5\x46\x9c\x36\xa8\x62\x05\xae\x5c\x5b\x35\x27\xa3\x99\x80\x71\xaf\x31\xb3\x48\x68\xe7\x37\x16\xb8\x57\xf1\x37\xcb\x34\xd8\x2a\x5e\x74\xcb\xcd\xd9\x9f\xa6\xb1\x83\x0a\x0a\xee\xf6\xff\x3e\x2d\xbd\x83\xba\x77\x56\xd2\x3b\xe1\xde\x49\x47\x0f\xa1\xfe\x81\x2a\xba\xe9\x96\x08\xe7\x13\x8b\xa4\x94\x4e\x46\x3c\xfd\xa5\x6d\xff\xa5\x6d\xff\xa5\x6d\xdf\x5d\xdb\xee\x91\x0e\x6f\x26\x1c\xad\x30\x9c\x66\x9a\x13\xbb\x8e\x59\x88\x6d\x72\x02\x8c\x67\xb4\x2c\xf0\xc2\x1d\xb0\xd9\xc1\x14\xd7\x65\x30\x46\xcb\x4d\x28\x8a\xe3\x25\x71\x31\x12\xa9\x21\x99\xb8\xbd\x3a\x69\x33\x8a\xda\x4f\x4c\x90\x53\x2c\x70\xb7\xbe\x66\x5a\xe4\x24\x04\xf0\xb4\xa7\xb1\xed\x38\xbd\x00\xce\x44\xa9\x0e\xd5\xc6\xc4\x2c\xe5\xac\x1b\x72\x00\x7a\x86\x55\x01\x41\x74\xf3\x16\x8e\xe6\x59\x5b\xc9\x91\xc7\xe8\x15\x33\x8a\x29\x04\xa8\xe8\x72\x55\x51\x13\x6e\x0a\xc6\x08\xa4\x30\x7a\xf9\xe3\xe5\x15\x5a\xe0\x1b\x12\xec\xdf\x42\x1b\x31\xc4\xfa\xe1\x95\xb3\xb0\x70\x26\x41\x84\x44\x30\x84\x24\x85\x05\xf1\x45\xb4\xcb\x5e\xf5\x32\xf1\xb0\x4e\xcc\x49\xa1\xd9\xba\x40\x4b\x22\xb0\xd4\x72\x10\x9e\x82\x43\xd7\x37\x09\x42\xbb\xeb\xa4\xaa\xd0\x82\x72\xc1\x1a\x98\xbd\x52\x3d\x6c\x77\x48\x3a\x61\x8d\xb4\xf6\x48\xb3\xc4\x35\x2c\x5e\xa2\x39\x71\xd1\xb4\x85\x56\x9d\x5e\x9a\xae\x1f\x53\x16\x52\x44\x9e\x51\x4f\x7f\x0a\xdd\xd8\x3e\xd0\x8a\x88\x58\x8d\xca\x1c\x5b\xf2\x78\x52\xdc\xc3\xac\x95\x62\xb6\x88\x9a\x0b\xb7\x5e\xe3\xdc\x08\x12\x80\x39\x82\x7a\xb5\x13\x93\x0f\xd1\x8f\x30\x17\xb8\x09\x34\x93\x3e\xc5\x64\x37\x90\x24\x0c\xa0\x6c\x05\x98\x04\xb1\xfa\x90\x95\xed\xce\xb6\x0d\x90\x09\x19\xc8\x7d\x6b\xc3\x05\xdb\xd7\xf2\x06\x37\xd9\x58\x41\xce\x3a\x94\x0d\x10\x5e\xca\x95\x8f\x07\x13\x4c\xa9\x01\xde\x6e\x01\x9d\x48\x9e\xa4\x54\x70\x2f\xa4\xd3\x89\x85\x82\x7f\xa2\xc0\xe7\xd5\x55\x8d\xe3\x77\x0d\xc1\xd7\x25\x5b\xd7\xbf\x44\x58\x36\xb8\xb8\xe6\x88\xce\x2c\x45\x40\xbc\x80\xef\xc2\x0b\xd5\xf4\xae\xab\xc3\x84\x5f\x60\x5a\x1e\xa1\xef\x18\xab\x52\x62\xb0\x66\x8e\x6b\xfa\x9b\x3a\x2d\xd9\xcc\xf9\x53\x9d\x2a\x08\x36\x9d\x96\xf0\xa1\xaf\xc0\xe6\xd9\xa8\xd8\x17\x6a\x58\x2b\x4d\x35\x36\x95\x27\x1e\x6b\x60\x97\x58\x1d\xae\x67\x07\xee\xea\xc2\x4d\xd1\x7f\xa3\x3c\x0b\x13\xe7\x59\xf0\xec\x7c\x97\xda\x67\xc2\xb4\x9d\x94\xda\xc9\xd3\x90\x0e\xef\x1f\x56\x98\x73\x56\x50\x38\x5a\xad\x7d\x78\xea\xe5\xa2\xbc\x20\x1b\xf4\xdc\xe6\xa2\x44\x0e\x20\xb0\x4b\xb5\xa2\x6d\x8f\x10\xe5\x82\xb1\x4a\x9e\x90\x32\x3c\x73\x12\x78\x47\x00\xec\x53\x63\x0f\xc8\x53\xa7\x2e\xc9\x87\x23\x54\x91\x7a\x2e\x16\xe8\x00\x3d\xec\x24\x40\x79\x3d\x8f\x1c\x0c\xb6\x29\xad\xa9\x18\x24\xd6\x26\xf2\x3f\xbe\x88\x8b\x7f\x8a\xc5\x55\xf4\x3b\x89\x83\xb7\x71\xef\x8c\xfc\x88\x1a\x75\x87\x08\xed\x67\x9f\x30\x41\xd8\x71\x37\x17\x54\xd0\x27\xa1\xe5\xd0\x3f\xa9\x14\xbd\xaa\xd9\xd8\xd8\xf9\xc7\xe6\x0c\x4a\x9b\xc0\xd9\x73\x0c\xe4\xcd\xfc\x68\x28\x2b\x5b\x98\xff\xa7\xcd\x34\x81\xd1\xb1\x21\x75\x16\x92\x47\x65\x05\xce\xfb\x22\xed\xe0\x53\x1c\x1d\x07\x0b\x90\x36\x0e\xe4\x21\x3a\x46\x3f\xff\xd2\xd5\x06\x24\x15\x3a\x46\x33\x5c\x71\x92\x23\x58\xb4\x88\x40\xba\xe8\xbb\x4c\x37\xbb\x84\xb2\xbd\xfd\x23\x6d\xa8\xd7\x0d\x1d\x9b\x15\xb4\x4d\x3e\xdd\x4b\x36\x4e\x01\x8b\x36\x44\xb3\xb6\x46\x05\x5b\x6d\x06\xc3\xa3\x44\x3b\xf1\x47\x68\x88\x68\x9b\x1a\x06\xda\x15\x2c\x27\xe2\xca\xa3\xec\xe0\x57\x54\x93\x75\xc4\xe7\xc3\x68\x98\xdc\xf2\xb8\x5e\x7b\x8c\xfc\xd6\x5f\xb5\xc1\xaf\xfa\x2c\xb1\x27\xd6\x8e\xe7\x5a\x16\xbd\x98\x21\x22\xd0\x7b\x23\x09\x6c\x63\x51\xf4\x8e\xbb\x9e\xd1\x0d\xab\x79\x7f\xed\x31\xae\xdd\xfa\x7c\xf0\xbe\xe8\x93\x0c\x59\x0c\x02\x86\x7c\x5f\xec\xb3\x2a\xa7\x2f\x9e\x83\xd0\x7f\x41\x36\x83\xeb\x44\xc6\xf4\x70\xf4\x75\xc8\xce\x28\x4c\x7c\xb2\x3c\x6b\x6c\x15\xc8\x4b\xd7\x0e\x04\x69\xf9\x4f\x21\xe5\xad\x9e\x3b\x73\xe2\xa4\x5c\xd2\xfa\xf0\xf0\xb0\x4b\x53\x9f\xb0\x7a\x46\xe7\x1e\x52\xe6\xcc\x54\x3e\x0d\xa9\x6b\x48\x85\x12\xf2\xf6\x70\x8d\xa4\xd6\xde\x6c\xd3\xef\xea\x76\x29\xe5\x11\x3f\xaf\x61\xa7\xa5\xea\xa4\xdf\x41\x53\xec\x55\xd8\x67\xf0\xab\x1a\xd6\xf4\xcd\x92\x2d\x1a\x07\x1d\xab\x3e\xb9\x75\xea\x99\xd5\xae\x7a\x72\x38\xb3\xcb\x20\xb5\x69\xcf\x29\x86\x9d\xf7\x9c\x6b\xd8\xf9\x96\x93\x06\xe5\xb9\xbc\x9e\x2b\x6f\xd0\x0e\xf3\x35\xee\x9d\x3d\x67\x6a\xba\xed\x39\x47\xd3\x6d\xbf\xd9\x39\xa5\xd8\xa8\xc1\x76\xaa\x5b\x19\x76\x92\x6a\x1e\x12\xd3\x87\xff\xb3\x6d\xa2\x49\x47\x29\xff\xdb\x65\x0c\xa6\x6b\xc2\x49\x77\x79\x10\xb8\xee\x9d\x13\x57\xa6\x87\x4a\x88\x16\x44\x2a\x91\x2a\x35\xd6\xcf\x1d\x5b\xe1\x8d\x34\xca\x68\x5d\x34\x04\x73\xc2\x11\xb9\x21\xcd\x26\x93\x79\x06\x61\x98\x1b\x5c\xb5\x04\x84\x4a\x5b\x09\xba\xaa\xa8\x13\x22\x90\xc0\x26\xfc\xcc\x36\xc1\xd0\x9c\x08\xcf\xa9\x08\x43\x75\x12\x58\x02\x50\x3d\xcf\x35\x32\x17\xa4\x29\x48\x2d\xf0\x9c\xa4\x16\x60\x86\xd0\x7d\x00\x06\xbf\xa2\x55\x02\x2d\x4b\xef\x3e\x28\xe8\xd8\x83\x92\x23\x3b\xe8\xd7\x1d\xa2\x6d\xb4\x55\x32\x8c\x7a\xf6\xd2\xa8\x97\x01\x47\x3b\x51\x6f\x47\x01\x19\x7d\xb3\x97\x9c\xe9\xfa\x69\xc7\x8d\x9c\x7e\xb9\xd7\x86\xd8\xae\x40\x6e\x59\xdd\xbe\x9f\xbb\x8f\x5c\x75\x3e\xfa\x7e\x6a\x9d\xb5\x4b\x97\x52\x93\xb2\xed\xce\xac\x94\x81\xec\x74\x13\x96\xc1\x89\x1f\x1a\xc2\xba\x14\x4e\x6f\xf0\x47\xa1\x81\x34\x43\xf5\x39\x14\x67\x16\x0c\xdd\x00\x2a\xe4\xe8\x23\x53\x92\x99\x0a\x54\xa0\x86\xcc\x48\x43\xea\xc2\x38\xba\x8c\xc9\x82\xf5\xa0\x5c\xe0\xe5\xca\x24\xcf\xeb\x6e\x16\x30\xae\x2a\x34\x6b\x05\x64\xfe\x87\xb8\xf2\x31\x3a\x9f\xa1\x77\xda\xe3\xad\x92\x2d\x00\xf0\x3b\x98\x63\x9d\xf8\xd2\xc5\x82\xd4\x16\x2e\xdc\xaa\x88\x26\x4f\xb9\x8e\x59\x4c\x37\x47\xa6\xa1\xed\x10\xf9\xd6\x41\xeb\x9b\x5d\x19\xf4\xd1\xb7\x2e\x5c\xf0\x37\x34\x48\x91\x3a\x68\xc8\x4c\xff\x77\x18\xc0\xee\xf2\x4f\x5e\xc1\x12\x76\x2a\x40\x76\x34\x13\x72\xea\x8e\x49\xc4\xae\x92\x32\x8a\x4e\xa4\xc1\x01\xbd\x40\xda\x4d\x17\xad\x5f\x27\x5c\x37\xc3\x4e\xc8\x96\xd4\x79\xd0\xfb\xc7\x3b\x32\x38\xd8\x35\xc9\x3b\x0a\x27\x6c\xb9\x6a\x85\xe5\x26\xbe\xa6\xa2\x58\xa8\xac\x00\x89\xd8\x14\x73\xc8\x0e\x42\x6c\x36\xe3\x44\x28\x3f\x90\x43\x53\x93\xe6\xd0\x75\x1b\x77\x1e\x0c\x73\x22\xae\x7c\x96\x79\xc6\x1a\xa3\x3d\xa6\xfc\x61\x55\x0f\xf3\x9f\x6e\xcb\x6f\x1c\x31\x9e\x52\xd2\xfb\xb9\xcf\xf4\x0b\x58\x30\x77\x84\xc4\xcc\x31\xca\x2c\xeb\x28\x4b\xe6\x58\xc6\x47\x78\x1d\x5b\xbe\xcb\xb4\x72\x63\xa8\x7d\x35\xc9\xf8\x32\x32\x73\x0f\xf7\x60\xb7\x98\xfc\x9e\x55\xa5\x52\x47\xde\xd9\xeb\x34\x63\xb5\xb5\xde\x99\x4d\x67\xdd\x6d\x56\x8c\x4d\x2b\x62\x03\x0c\xfe\x56\x35\x7e\x40\xe3\x78\x74\xcd\x8d\x05\x74\xa4\x05\xf3\x0e\xb6\x91\xd6\x61\xc2\x5b\x5f\x4e\xfa\x29\xcb\xa9\x66\xa2\xcb\x78\xca\x04\x57\xb0\x1f\x27\x69\x48\xc1\x1a\x9b\x1e\x6f\xe3\x25\xc0\xd6\x3a\xf3\xcd\xcb\xd3\x77\x72\x17\x9c\x7e\x6a\x2c\x25\xb5\x95\x22\xeb\x86\x7b\x0b\x0c\xc9\x33\x60\x61\x3e\x76\x1f\x87\x51\x1c\xd6\xa0\x9a\x56\x88\xce\xd4\x21\x53\x7f\x23\xd0\x8c\xb5\x3a\x78\x68\x63\xde\x8e\x5c\x2e\xae\x23\x2d\x3c\x65\xc7\xc2\x37\xf2\xd4\xe4\x2a\x02\x36\x6f\xd8\x5a\x8a\xf9\x92\xc2\x81\x8f\x9b\x8d\x85\x56\x32\xc2\x91\xa4\x1e\xb8\xbe\x55\xec\xbd\x62\xb8\x94\x78\x81\xb6\x09\x7b\x3e\xb8\x83\x43\xb9\x6e\x91\x48\x67\xbd\xa7\x03\xff\xcc\xe0\x57\x35\xc1\x74\x17\x07\xcd\xfe\xe1\xed\x0d\x3a\x03\xbe\x31\x34\x3b\xb5\x58\x83\x8f\xae\x9a\x8d\xf5\x34\xc7\x7a\x9a\xe3\x29\x6b\x1a\xb6\x7e\xf2\xf5\x47\x05\x3b\x02\xfd\xe9\xe9\x40\x52\xfd\x48\xf5\x35\x50\x2f\x55\xdf\x0b\x2c\x16\xf1\xbe\x8c\xc6\x7f\x4b\x66\xe8\x38\x83\xcd\xcf\xfe\xbc\x7e\x89\xf7\xb6\x93\x48\x1e\x9c\xb1\x72\x61\x05\x2d\x3f\xdd\x4b\xff\xa7\x7b\xd6\xb4\x8a\x37\xea\x25\x56\xc9\x07\x4b\x56\x2a\xee\x09\x9d\x61\x7a\xab\xea\xc8\xa7\x0b\xfe\x25\xac\x91\xdf\xae\xa0\xad\xe3\x1b\x12\xaf\x60\x4d\xd6\x6e\xe7\x06\x3f\xfa\xb4\x5b\x35\x24\xeb\x87\x51\xa1\x62\x5f\xda\xa2\xe3\x63\xf4\x00\xfd\xfe\x7b\xd0\x78\xe0\x8d\x62\xbd\xb6\x4f\x8f\xbb\x81\x1c\xa0\x87\xe8\xeb\xaf\x03\x18\x39\x10\x4f\x34\x88\x55\xc3\x56\x8c\x93\xd2\x87\x31\x18\x0e\x8f\x92\x75\xbb\x3f\x51\x02\x05\x68\xbc\x89\x03\xa9\xb0\x83\x4d\x89\x80\x99\x20\xe6\x36\x8f\x02\xae\x5b\xb3\xc6\x5e\xb9\x4c\xae\xfa\xdc\xcf\x2c\xf8\x6d\x59\x1e\xb7\x62\x31\x78\xd9\x0a\x2c\xc8\x10\x7d\x21\xfe\xcf\x33\x7f\x86\xd2\xb9\x3d\x80\x39\x27\x70\xab\x2e\xfe\x41\x7e\x96\xf1\x52\x1d\x1f\xe7\x56\x70\xd4\xd1\x99\x73\x30\xa0\xcc\x72\x49\xc6\x75\x48\xc3\x69\xb5\xa4\x7c\x89\x45\xb1\x70\xa9\x78\x1a\x24\xbf\x9f\xc0\xec\xda\x95\x3e\xa2\xdb\xe6\x1f\xa0\x9f\x3f\x6d\xb3\x7b\xce\xa4\x8b\xbc\xf5\xd2\xa9\x06\x43\x13\xea\x89\x94\x5b\x95\x73\x65\xf2\xbc\x96\x3a\x0b\x1a\xa3\x05\xf9\x20\xf7\xbf\xec\xc0\x66\xe8\xf1\x23\x79\x1a\xca\x21\xa4\x0d\x36\xa0\x63\x82\x1e\xfe\x0f\x9a\x6e\x04\xe1\x92\x3b\x1f\x3e\xfa\x3b\x9a\x52\xc1\x87\x01\xe8\x77\x8d\x14\xfa\x82\x4e\x2b\x8d\xca\x3b\x2d\x8a\xa4\xc8\xd1\x5a\xd7\xe0\xef\x0a\x8a\xeb\x09\x6a\x25\x34\xff\x81\xad\x41\xe5\x08\x81\x3c\x51\x3d\x9f\x0e\x86\x63\xc1\xbe\xa3\xf3\xb3\xba\xa4\xb8\xfe\x4e\x02\x19\xe4\xa0\x7c\x4f\xe7\x8b\x5b\x83\x81\x80\xac\x47\x46\x74\xac\xa9\x38\x56\x39\xc4\xdf\x93\x0f\x03\x37\xcc\x70\x5c\xb0\xba\xc0\x62\xd0\xd1\xe6\x07\xb6\x1e\x3a\xd8\x59\x66\xf6\x07\x1b\xeb\x10\xe0\xf1\x31\x7a\xfc\x68\x74\x2f\xcf\xae\x6f\xf7\x5f\x3f\xc7\xad\xc3\x7b\xf1\x21\xe1\x8f\x1f\x9f\x16\x9e\xad\x32\x92\xab\x7e\x7e\x3a\xca\xde\x03\x4c\x4e\x72\x08\xd6\xa6\x22\x37\x34\x18\xec\x08\x1a\x94\xca\xe9\xb3\xd7\xc6\xad\x35\xad\xc3\xa9\x7d\xf0\xb5\x3f\xc5\xfd\xdf\x8d\x20\x25\x94\x57\x6d\xc5\xd3\x4f\x41\xbd\x7b\x07\x75\x2b\x80\x94\x56\x15\x4a\x86\x93\xbc\x85\x65\x6b\x4f\xea\xc9\xdd\x65\xff\xd8\x65\xb8\xef\x09\x6e\xc4\x94\x60\xb1\xf3\x90\x0b\xd3\x63\xff\x61\x3b\x44\xf9\x3b\x4f\x87\xdb\x32\x78\x46\xd0\x77\x8c\xfd\xd6\xcc\x46\x05\xc6\xc1\x31\x00\xb9\xd9\x9c\x39\x43\xd4\xaa\x7f\x33\x4a\x2a\x6d\x3b\xfb\x43\x5a\x92\xc0\xaa\x74\xdc\x60\x97\xb2\x4e\xc1\x86\x69\x81\x3f\x49\xa9\x17\xee\xef\x2e\x6b\x29\xd5\x2e\xe4\xc7\x2d\x4f\xc2\x4e\x72\x17\xba\xbf\xc6\xe1\xbd\x7e\x75\x6c\xa8\x4b\x2e\x7a\xb6\x6a\x62\x26\xf9\x2e\x13\x56\x48\xcf\x0c\x37\x3a\xe5\x3f\xe1\x8a\x96\x30\x54\xe0\x73\x1a\xe8\xce\x3f\x90\xfa\xc8\xc7\x36\x63\x14\x75\x3a\xef\xf2\x07\x60\x79\x3d\x87\xe1\xf6\x83\x6c\x9c\x77\x79\x98\xb0\x67\x01\x60\xb0\x26\xc3\x23\x74\xff\x15\x59\x6b\xdb\x03\xbe\xb2\x82\x2b\xbe\x16\x8b\x78\xbb\x94\x4c\x63\x89\x57\x97\x90\x66\xa7\xd6\x04\xc2\x01\xf7\xa3\xa3\xf6\x5e\xc7\x8a\xe6\x66\x92\x89\x35\x85\xa8\xe6\x0c\xf7\x3c\x0f\x6a\xea\x7a\x5c\xe8\x7f\xf3\xdf\xcc\x87\xd1\x54\xff\x0c\xfe\xda\x19\x20\x34\x92\x0c\xb8\x0f\xf3\xd5\x64\xfd\x87\x30\x60\x14\x09\x8c\xe8\xba\x07\x2f\x1a\xb2\x79\xcc\xe8\xfe\xfe\x6f\x66\xc5\x2f\x27\x12\x03\x12\xfe\xb9\xec\xe8\xb3\xa2\x64\xcd\x2f\xc5\x8e\x36\x5c\x1b\xcc\x7d\x0f\x36\x4c\x1c\xeb\x8a\x15\xd5\xff\x8f\x52\xbf\xfb\x5d\x38\x72\xe2\x4c\x7c\x3b\xc4\xd8\xf7\xa5\xde\x7f\x1b\xc5\x45\x0c\x99\xb5\x69\xed\x6a\x10\xc5\x04\xcc\x0f\x1e\xdb\xd0\x15\xc3\xe5\x93\x64\x4a\xc6\x5a\x3e\xd4\xcd\x0e\x67\x06\x40\x30\xf1\x1d\xc7\x90\x46\xe9\xc0\x4e\x6f\x84\x04\xdb\x1d\xf2\xd6\xd5\xea\x0a\x5f\x93\xf5\xab\xed\x11\xec\x7f\x37\xe1\x71\x1b\xb6\x4f\x67\x1f\xce\x7d\x0f\x5a\x3e\xfb\xe1\xf5\x3f\x2f\xbb\x23\xd4\x72\x43\x6d\x0d\xda\xfe\xbb\x91\x14\x29\x8f\x98\x17\x46\x7d\x72\x8c\x1e\x8e\x1f\x68\x6d\x4e\x65\x0c\xb8\x4d\x25\xd6\x84\xd4\xe8\x37\xd2\x30\x10\x54\xac\x26\x77\x5c\xa1\xde\xa8\x7f\x80\x58\x76\xa1\x0e\x0f\xd1\x59\x0d\x41\x06\xd6\xa0\x92\x72\xf8\x2f\x6e\x05\x5b\x62\x41\x0b\x9b\x26\x51\xe0\xaa\x68\x2b\x53\x34\xae\x2e\xd1\x0a\x6f\xe0\xa2\xdc\x56\xf5\x4f\x43\xd2\xe9\x6d\x6a\xac\x72\xf0\x2b\x22\xea\x7f\xf9\xec\xb6\x2d\xf2\x44\x76\xc9\x8a\x90\x8e\xe1\xf6\x12\x24\x1a\xb1\x8c\x18\xd9\x0a\xdd\x09\xc5\x4e\xb2\x90\x25\x15\xfe\xa5\xd9\xb3\x1b\x52\x8b\x41\xce\x7b\x1f\x9e\xa6\x5b\x72\x8f\x77\x49\x2e\xee\x4d\x4f\xde\x9a\x9b\xd1\xd1\x3a\xc9\xd3\x08\xdb\xc1\x1d\xdb\xe4\x32\x8e\xf9\x6c\xbb\x77\xe9\xb7\xcd\xdf\x82\xf4\x5b\x6c\xbb\xf5\x86\xba\x6f\xa6\x65\x90\xda\xf3\x02\x98\x0f\xa1\xfb\x16\x92\xf9\x24\x51\x4a\x9f\x65\x90\x0b\xa5\x99\x50\x43\x77\x15\x4e\x7d\x93\x2c\xce\x58\x42\xda\xd9\x07\x79\xf7\x5b\xee\x19\xa7\x79\xcc\x33\x7d\x67\xe2\xfc\x14\xd1\xda\x2c\x62\x06\x65\x80\x3e\xc6\xab\x15\xa9\xcb\x41\xcf\x10\x03\x05\xe2\x48\x83\x1a\xc6\x6e\xe0\x04\x6d\xa3\x63\xba\x0b\x97\x7e\x62\x38\xfa\xb6\x93\x5d\x83\x9f\x6c\x62\x8d\x7f\x5b\x20\x1e\xe2\xd1\x2d\x86\x18\x3c\x42\x7f\xcb\x8c\x33\xec\x1d\xe8\xf1\x6d\x06\x7a\xdc\x33\x50\xc2\x30\x52\xb6\x84\x37\xf2\x21\x41\x26\x14\x02\x71\x9b\x34\x6a\x60\xef\x47\xf8\x52\x29\xd5\xed\xdd\x2d\x76\x60\x83\xb4\x81\x77\xef\xdc\x4e\x37\xd7\xca\x5e\x85\xd5\x02\x2a\x6d\x93\x93\x13\xe9\x77\x69\xbf\x50\x66\xf8\x7f\xa5\x6d\x73\x77\x7c\x53\x36\xec\xee\xf7\x28\xd3\xef\xd1\x0e\xfd\x1e\x67\xfa\x3d\xee\xe9\x17\x4b\xb9\xf0\xef\xae\xf6\x56\xe2\x05\x7f\x76\x52\xda\x17\x7e\xc9\x57\x69\x2f\x5f\xe0\xb9\xff\x47\x22\x2f\xaf\x7d\x1c\xa2\x0b\xd2\xcc\x58\xb3\xe4\x88\xe3\x5a\xca\xb7\x62\x41\x8a\x6b\xee\x95\xf0\x63\x37\xb4\xb4\x41\xbf\x20\xbd\x0b\xca\xe9\x40\x3d\x3e\x52\xf3\x56\xbb\x75\xd5\x65\x51\x5a\xcf\xff\x77\x30\xcc\x01\xba\x02\xcf\x2f\xd4\x45\xbd\x91\x46\xb3\xf6\xa5\x87\x10\xa3\x3e\x27\xb6\x08\xa2\xa9\xc9\x0a\xd5\x25\x4a\x0e\xb5\x09\xcc\x55\x59\x55\xea\x01\x3d\x45\x0f\xa2\xf2\x70\xb3\x30\x97\xc3\x14\x0a\x31\x08\x84\x3f\x40\xf5\xdb\x54\xdd\x0c\xaf\x6d\xbf\x2f\xd0\x0d\x13\xc6\xce\x2d\xaf\xe7\xb6\x1e\x21\xa9\x25\x95\x4a\x22\x85\x31\xc4\x37\xea\x4c\xfd\x91\xe8\x62\x7b\xac\x9d\xf8\xf7\x92\x2f\x1a\x32\x81\xa5\x18\x7c\x71\xdd\x23\xd6\x12\xf6\xd5\xf9\x77\xf3\x82\x84\x78\x1e\xd8\x59\x7d\xfb\x70\x74\x57\x3f\x9c\xe7\xe4\x20\x29\xf8\x4c\xf8\x5b\x7e\xee\x9f\xd7\x8a\x0d\x9c\x74\x8c\x70\x54\xc5\x43\xcc\xad\xa7\x80\x5b\x7a\xad\x06\xa8\x49\xe2\xed\x26\xaf\x96\x27\x5f\xb0\xb6\x2a\x53\xc6\xbd\xd5\xf9\xaf\x62\x75\xf9\xb8\xf3\x1e\xea\xc0\x58\x55\x80\xae\xfe\x69\xb1\x19\xa1\x2c\x4c\x17\xdf\xc3\xfe\xbe\x0c\xf7\xa4\x44\x3e\xd4\x8a\x94\xf9\x95\x4c\x79\x7b\x78\x3a\x22\xaa\xaa\x57\xb1\x56\xf7\xf0\x29\x54\x06\xf2\x6b\x66\x5f\x42\xf6\xd4\x44\xc7\x70\x54\xcd\x57\x41\xa0\x54\x57\x45\xaf\x49\xb5\x41\x25\xbd\x21\xcd\xdc\xbf\xbc\x7f\x61\x2a\x72\x5c\xca\xb6\xa3\x58\x09\xd4\xe9\xa8\xac\x29\x16\x84\x8b\xc6\x16\xc9\x9e\x92\x05\xbe\xa1\xac\xb5\xd9\x91\x4a\x13\x43\xe8\xa4\xde\x18\x1e\x82\x60\xa4\x5f\x49\x14\x2a\xbb\x8c\x91\xaa\x17\x6e\x02\x88\x5e\xb9\xef\x78\x6c\x3f\x19\x09\x0b\x41\x96\x2b\xa1\x2b\x5a\x37\x6d\xad\xae\x19\x37\x6c\x8a\xa7\xd5\xc6\xcb\x57\x9c\x72\x06\xd5\xa9\x61\xa7\x28\x91\x3b\x63\x50\x95\x9a\xa0\x7f\xc9\x65\xc0\x53\xd6\xc0\xd0\xcb\x71\x42\x5e\x93\xfc\x16\x2e\x1f\xf4\x25\xb3\x19\x29\x04\xbd\x91\x64\x94\xbf\xad\x1b\x2a\xac\xb8\x14\x36\x82\x96\x5b\x89\x11\xc2\x15\x9d\x43\x35\x6e\x2a\xc2\xf2\x2b\x7a\xe0\x74\x25\x1c\x81\x4c\x85\xa6\xc2\x14\x63\xd0\xaf\x09\x10\x0e\xa0\xc6\xe1\x92\xd1\xd9\xad\x5d\x11\x99\xfd\x75\x78\xa8\xc9\x15\x17\x5a\xee\x91\x85\x2a\x69\xc5\x68\x92\xe5\x92\xd6\x83\xe1\x98\xd4\x65\xe4\x45\x8f\x58\x1d\x91\x8a\xe7\x64\xac\xae\x4f\x53\x40\x21\x32\x7d\x99\xe1\xcd\xc4\xb8\xfb\xb7\xa2\x61\x2d\x25\x83\x08\xc0\xba\x14\x6c\xf5\x13\x1c\x62\x11\x1a\x39\x10\xa7\x2f\x9e\x07\x9d\xcf\xea\xf2\xf4\xc5\xf3\x9e\xfc\xae\xe0\xb8\x3c\xab\x75\xca\xa5\x5b\x3e\x0c\x6c\xe4\xd5\xe3\x02\xf1\xcb\x75\x7d\x6b\x56\x7b\x35\xb1\xac\xee\xd1\xa3\x23\xc0\xbd\x90\x25\x11\x18\xe9\x94\x18\x7d\x1a\xeb\xa2\x63\x7e\xd2\x7a\xb6\x9c\x99\x2e\xf0\x35\x6b\x6b\xb5\xb4\x25\x9d\xcd\x48\xc3\xc3\x2a\x1d\x3a\xff\x17\xba\x4f\x3c\xae\x42\x53\xa2\x0a\xb9\x53\x7d\x85\x05\x14\x61\x2f\x33\xc0\xcf\x72\xd7\x75\xdf\x95\x23\xc7\xde\x80\x19\xa3\x74\x3a\x16\x19\x53\xd4\x4c\xa7\xdf\x43\xa9\x14\x28\x74\x94\xab\x61\x06\x48\x2a\xb4\x9e\xe1\xaa\x9a\xe2\xe2\x1a\xbd\x94\xa2\x79\x70\xf6\xec\xe5\x70\xab\xd2\xf1\x4a\x47\x18\xbf\xb8\xba\xf1\x79\xfd\x04\x3b\x39\x2f\xfe\x08\x9f\xc2\x56\x2d\x2a\xa4\xa2\x4a\x63\xde\xa2\xee\x75\x6a\x26\xb1\x36\x35\x72\x24\x37\x56\x9c\x43\x48\xff\x67\x98\x98\xc6\x51\x0e\x91\xdb\xfa\xf9\x5c\xad\xd4\x4f\xd0\x73\x13\xe7\x96\x31\xaf\x9e\x21\xbc\x7b\x3a\x7b\x6b\x88\xa9\x7e\x36\x81\x30\x16\xc8\x9c\x30\xbd\x34\xef\xd9\x09\x0b\xf5\x81\x57\x99\xa7\xb8\xea\x2d\xf4\xd2\x65\x15\x86\x59\xa6\x09\x16\xe7\x46\x68\x64\x64\x06\xdc\xc2\xd1\x58\xc8\xc3\x47\x55\xd8\x73\xaf\x00\x84\x1c\x6e\x9c\x06\x8e\x34\xf9\x5c\xd0\x68\x33\x43\xb5\x85\x6e\xcb\x3c\xcb\x8b\xf9\xad\x9e\xf5\x1e\x6c\xe1\xda\x58\x11\xb8\xf2\xed\x47\x13\x09\x30\x22\xdd\xa8\x1d\x82\xc0\xbb\x4d\xef\xac\x28\x3d\xa9\xcb\x4b\x7b\x81\xfb\x1d\x9a\x92\x8a\x85\x85\x06\xc2\xaa\x0e\x0f\xc6\x0f\x22\xe9\x90\xa9\xe8\xd0\x25\x40\x32\xbf\xd9\x1a\x0d\x4e\x46\x0c\x53\x7e\xbb\x84\xdc\x73\xcd\x3f\x2e\xdd\x16\x4e\xad\x91\x52\x8c\xd4\x34\xed\x35\x13\x28\x24\xea\x7f\x12\x98\x8e\x67\x56\x0d\x9b\x37\x84\x73\xd0\x4f\x1b\xd6\xce\x17\x5e\x09\xba\x71\x87\xfb\x3d\xcd\x82\x8e\x19\x38\x33\x8f\x49\x7c\x80\x6d\x79\x35\x00\x79\x97\x18\x8c\x06\xa3\x2f\x7d\xa6\xaf\xfd\x74\xc5\x5e\xb2\x2b\x1d\x0b\x24\xeb\x82\x73\x64\x69\x3a\xfd\x70\xaa\x9e\xc5\x0e\xc1\x80\xfd\xf6\x13\xda\x69\xcf\xa0\x3d\x77\x06\xda\xba\xcf\x50\x6f\x08\x61\xf7\x04\x83\x5c\x60\x61\x97\xbc\x97\xf8\xac\xf9\x73\x7c\x88\xff\xb9\xbe\xb9\x54\x5c\xc0\x43\x2d\xd8\x9d\x4f\xee\x91\xaf\x40\xcd\x0c\xdd\x4b\xb9\xea\x2f\xde\x7e\x97\x30\xad\x9a\xd7\xe9\x10\xdc\x45\x67\x6f\x88\xd6\xda\xa9\xb8\x85\xba\xee\xeb\xb7\xb4\x16\xca\x73\x16\x94\xcb\x4d\xe6\xe5\x3b\xea\xc2\xaa\xc3\x9b\x00\xbe\x5f\x12\xb8\x26\xa4\xe4\xfa\xbe\x8f\x2b\x43\xbc\x54\x37\x16\x20\xea\x5c\x90\xbd\xd5\x7f\x43\x3f\x5f\xf5\xb7\x17\x8c\x68\xf7\x71\x0e\xbe\x52\x5c\x71\x16\x82\xb6\x5d\x9d\x61\x60\x24\xa5\x91\xaf\xf8\x86\x51\xf0\x28\x96\xac\x9d\x56\x20\x3d\xd5\x33\x75\xa1\xf8\x85\x12\x8b\x51\xe9\xd2\x2f\x61\x20\x19\x9b\x24\x18\xe4\x8f\x30\x50\x7c\xc3\xeb\x2f\x23\xe5\x0b\x19\x29\xff\x16\x76\xc9\x7f\x8e\x59\xe1\x83\x4d\xc6\xf0\xfd\x4f\x9e\x49\xe0\x9b\x59\xd1\x3d\xc2\xde\x24\xb2\xe1\x97\xb0\x61\xf4\xee\x8e\xee\x7f\x81\x90\x70\x6e\xbe\x1e\xc5\xd3\x76\xe9\x7f\x7a\xc9\x90\x84\xf8\x68\xfa\xca\xd5\x1e\x76\x13\xca\x9b\x3b\x19\x8a\x65\xb4\x2e\xb0\x77\x72\x0b\xf3\x15\x54\x48\xbb\xad\x36\xb7\x5d\x3b\xdb\x57\xdf\xdb\x62\xb3\xa0\xdd\xec\x16\xb4\xc5\x76\x41\xff\x5d\xf6\x0b\xd9\x62\xbc\x7c\x49\xf3\x60\x37\xfe\xfb\xcb\x36\xf8\x62\xb6\xc1\x3e\xbb\xfa\x3f\xd7\x52\x30\xff\xfb\x13\x1c\xed\xde\xde\x1f\xe9\x6b\xc1\x10\x95\x38\xd3\x7a\xae\xaa\x66\xcf\x47\x10\x72\x7b\xe7\xd5\xa4\xcc\x24\x44\x7f\x8b\x1e\xbe\xdb\x62\x19\x80\x96\xa9\xd3\x40\xb5\x62\x79\x80\x38\xad\x0b\x7b\x57\xdf\xaf\x6f\x4f\xb9\x42\x46\xc5\x6c\xf5\xa4\x54\x44\x89\x86\xa5\x66\xa7\x8c\x09\x2e\x1a\xbc\x5a\x99\xfa\xaa\x8a\x22\x3a\x0a\xaa\x03\x5a\xbc\xc6\x2b\xbe\x60\x62\xa4\x2b\x78\xab\x1f\xe9\x6f\x84\x7b\x8f\xb1\x5a\x02\xea\x82\xd9\xab\xb8\x6a\x95\x09\x0f\x92\xb5\x9a\xc2\x08\x4a\x9f\x43\x75\x1b\xad\x7a\x63\x61\x87\xea\xd3\x80\x0d\x99\xc3\xa3\xb0\xe7\xfa\xe2\xbe\xd9\x7b\x5f\x5a\xa1\xbe\x6d\xd9\xd4\x5b\x54\x4d\xcd\xa9\xc1\x6e\xe3\xec\x92\xda\xd0\x71\x9d\xbf\x57\xd8\x77\x24\x19\x98\x8b\xdb\xea\x89\x6a\x6c\x15\xa4\xb3\xc0\xd7\x0b\x7c\x60\x6d\x41\xb8\xcf\x1d\xa8\x53\xa6\x9d\x2b\x83\x91\xd6\x0b\xb9\xfb\x3d\x95\xff\x7f\x32\x34\x3e\x7b\x9c\xf8\x12\xe4\xd2\xda\xbc\x11\xc0\x89\x08\x0b\xbb\x43\x10\xbd\x64\xb0\xbc\x35\xbc\x52\xc2\x72\x60\x60\xa2\x7e\x29\x78\x70\x19\x8c\xd1\x3f\x89\xca\x91\xd7\x5d\x55\x09\xa5\x9e\xa2\x90\x29\x07\x7c\xee\xb8\xf4\x7f\x46\x58\x3a\x0e\x30\xc4\x16\x93\x57\xf2\xa2\xdf\x19\xad\x7d\x1c\x9f\x37\x02\x64\x3e\xd6\x9a\xe9\x38\x29\xf3\x17\xbb\xb6\xc5\x6e\x6c\xbb\x9d\x74\x4e\xb4\x93\x1e\x89\x6e\xa1\x9d\x22\x13\xdb\xa1\x9f\x23\x96\x63\x3e\xb9\x4a\xdd\x83\x07\xe3\x07\x19\x87\x3c\xca\x1f\x3f\xc9\x57\x1d\x3d\xbd\x03\xc8\xfd\xbf\xf3\x6e\xde\x16\x53\xea\x4e\xd1\x97\x5b\x06\x5f\xfe\x90\xd8\xcb\x1f\xec\xb1\x46\x61\x11\x88\xf0\x7a\x3f\xe5\xea\x50\x94\x0b\x6c\x0b\x65\x59\x75\x10\xde\x5f\x50\xea\xa5\xed\x2f\x98\xae\xab\x15\xa0\xa8\x12\x54\xb5\x0e\x67\x8b\xde\x38\x91\xa7\xab\x3f\xcc\x40\x2c\x67\x4a\x14\xd8\x7a\x01\xb6\xac\x42\x54\xe6\xe4\x99\x51\x77\x2d\xda\x18\x50\x56\x65\xa9\xd4\x3b\x4b\x82\x21\x5c\xde\x60\xa3\xf6\xa6\x3a\x26\x94\x07\x53\xc8\xeb\x17\xa7\x4c\x59\xbd\xf7\x2d\x6d\x94\x52\x5f\xaa\xf7\xe4\xbd\xc7\x1f\x96\x24\x5f\x0a\x55\xaa\x9b\x7a\xbc\xef\xe4\xf8\x83\xc4\x43\x08\x45\xef\x7a\x8f\xcf\x8c\x42\x05\x4f\xee\x77\x1d\xa9\xf9\xd3\xdf\x73\xa1\x01\x26\xe8\x18\xcd\x89\x98\x78\xdf\x64\xce\x09\xf4\x85\x7c\x6f\x5f\x75\x89\xb5\x0b\xbc\xb1\x9b\x11\x8e\x68\x3a\xcb\xdc\xdf\x92\x5a\x81\xbe\xd8\xb4\x5d\x3e\x02\x18\x5c\x88\x16\x57\xd5\x06\x2d\xe0\x7e\x07\x04\x2b\x10\x5d\x2e\x49\x49\xb1\x20\xb2\x81\xad\xcb\x44\x74\x3c\x62\xee\x3f\xc0\x19\x41\x37\xd1\x8a\x77\x2b\xbc\xd1\x7b\xf8\x19\x6b\x2e\x74\xd1\x26\xbd\xbf\xde\x79\xe3\xaf\x82\x79\x15\x24\x0b\x38\x50\xa3\x70\xc7\x5d\xb3\xdc\x65\x1b\xf3\x51\x45\xab\x7a\x50\xca\xf6\xfc\xd4\x85\x8c\xcf\x2e\x63\x30\x0b\x9f\x1e\x67\x59\x21\x7e\xa7\x60\x0b\x86\xdb\xf4\xa4\x6e\xc4\x62\xc6\x3f\xbb\x78\x3d\xf9\xfe\xf2\xec\xea\xc7\x8b\x3c\xd3\x6b\x8a\x3a\x23\x47\x65\x9b\x4f\xcc\x53\x71\x83\x21\xfa\xfa\x6b\x04\xcc\x7a\xfa\xe2\xf9\xb8\xbc\x0e\x7e\xfa\xea\x18\xd5\x34\xb9\xcd\x97\x4c\xa7\x53\xa6\xf7\xf6\x02\x61\xac\x37\xc5\x72\x49\xc5\xdd\x68\x30\x79\xfd\xf2\xe5\xf9\xd5\x7f\xec\xce\xdf\x8b\xd9\xc8\xce\x5c\xb6\x1f\xd7\x97\x64\x86\xdb\x4a\xe4\x89\xa8\x4a\x27\xdd\xcb\x43\x88\xbc\x47\x13\x5c\x55\xdc\xab\x03\xf4\xce\x3a\x62\x78\x8f\xb5\x11\x15\x66\xb7\x59\x1e\xa0\x08\x78\xd9\xc0\xee\xed\xc2\xce\x13\x27\xb3\xc1\xfe\xb0\x7b\xc7\x44\xe1\x1c\xcc\xec\x96\x17\xba\x25\xff\x99\x34\x91\x57\x3a\x6d\xdf\x67\xbd\x9c\x1c\x49\x9c\xd4\x5f\xa8\xf6\x19\xba\x65\xd2\x5f\x9e\xdc\x4e\x18\xc0\xf2\x0e\xa2\x59\x1f\xc5\x64\x18\xf5\x24\x72\x74\x3a\x35\x77\x64\xcb\x6e\x36\xeb\x67\xc9\x8b\x5e\x96\x4c\xc5\xdd\x67\xe6\x48\xef\x28\x88\xb8\xd1\x47\x52\x73\xa2\xf7\xd5\x8e\x17\xd6\x7b\xc4\xf5\x5d\xc8\xac\xdf\x32\xdf\x46\x67\xcd\xe6\xe8\xc4\x17\x15\xea\x61\xd2\x34\x81\x31\x23\x0d\xb4\x20\xfc\x12\x24\xd7\x27\x4f\x44\x73\xfd\xd6\xb2\x4f\x6d\x35\xd5\x7d\xc8\xbd\x3d\xb9\xe6\x95\x97\x93\xa2\x95\x7d\xaf\x88\xa6\x2d\x27\x67\x9f\x81\x46\x71\xda\x1d\xef\x37\xfd\xf4\x32\xb0\x46\xdd\x54\x59\xc2\xeb\x12\x81\xa7\xa3\x93\xea\x5d\x5a\x41\x67\x6d\x80\xad\x6a\x44\x4f\x41\x8a\x3e\x9d\xaf\x73\xc0\x9d\x14\xc5\xb4\x3c\xbe\x23\x9d\x62\x3e\xc1\xae\xe1\xf5\xbb\xc0\x10\x4e\x0d\x68\x2f\x6b\x91\x5b\xbf\x4f\xbf\xf9\x9c\x7d\xd1\xa9\x9b\xac\x16\x67\xef\x7d\x43\x55\x5a\x4e\x57\x44\xcd\x39\xed\x82\xda\x11\x3b\x3a\x04\xac\x7d\xa9\x1e\xd8\x54\x9b\xda\x87\x03\xf3\x54\x11\x5e\x6c\x32\x8f\xd0\xd4\x3c\xa3\x64\xfc\xcd\x71\x95\xd8\x5e\xdf\x43\xe5\x52\x98\x2e\xdb\xe5\x52\xd7\x79\xf5\xa6\xe2\xf8\x27\xe5\x1c\x4f\x91\xf3\x74\x38\xa0\x49\xa2\xbe\x75\xd5\xce\xf5\x34\xb7\x08\xd4\x38\x79\x94\x2a\x44\x74\x6c\x67\x3e\xec\x03\x11\xbc\xa8\x15\x41\xf0\xdd\x53\x0e\x88\xd2\xa3\x13\xc7\x4f\x04\xdb\x5b\xe2\x5b\x19\x58\x01\x5f\x08\xfb\x24\xa6\x7e\x16\x85\xcd\xd4\x5b\x29\xce\x7e\x0c\xd6\xef\x1b\x1e\x3f\x94\x82\xdc\x25\x2d\xaf\x0c\x89\x7e\xc9\x5d\x5f\x88\x83\x2d\xa5\x5f\x1d\x5c\xe0\x1b\x52\x7f\x23\xb4\x9b\x81\xd6\x82\x94\x1d\x5c\xb9\x21\x22\x51\x4f\x74\x8b\x0b\xb5\xcf\x8e\x73\xf7\x18\x0d\x07\x5c\xc9\x41\x55\xc3\x41\xaa\xe7\xcc\x08\x51\xab\xab\x81\x3c\x23\x84\xcb\xae\xcf\x08\xf9\x0e\x57\xb8\x4e\x94\x9b\x1b\xdc\xa0\x59\xc5\xd6\xb0\xac\xaa\x4c\xce\x89\xa4\x91\x45\xe5\xc1\xf8\x41\x1c\x44\x70\x83\x38\xdd\x5f\xb7\x4f\xcf\xa9\x5e\xe0\xcf\xe0\xc7\x6b\x52\x2b\xd6\x51\x4d\x76\x73\xc6\xef\x0f\x17\x7d\x8b\x06\x21\xb6\x07\x6e\x2a\xdb\x7c\xe8\x3f\x30\xac\x14\x02\xf5\xec\xa9\x64\xa8\x29\xab\x5b\x6e\x98\x00\xd2\xfc\xfc\x12\xdc\xfe\xaa\x40\xcb\x2b\xd5\x30\x32\xca\xbe\x73\x3f\xe5\xdc\x8b\xed\x54\xdd\x86\x4c\xc7\x4a\x58\xdc\x7b\xf9\xa7\x21\xf6\xeb\x78\xed\x7c\x54\x9e\xf4\x11\x71\x4f\x8a\xf7\xfc\x78\xe0\x0f\xba\x2d\x54\x11\x6c\xe1\xdd\xdc\xb6\xbe\xfd\xb1\x0b\x3e\x7f\xdb\x16\xc9\xeb\x7d\x90\x26\x59\x22\xfb\xda\xd2\xda\xbd\xeb\x14\xd8\x50\xf6\x4a\x2b\x94\x30\x32\xe5\xc4\x95\xb6\x95\x94\x94\x46\x46\x60\x66\x43\x57\x3c\x23\x04\xc2\xa9\xa7\x22\xc1\xfc\xbe\xdb\x91\xd2\x51\x4b\x3d\x61\x86\x7f\xfc\x03\xad\x70\x4d\x8b\x81\x8d\xf5\x7a\xc9\xbb\xe9\x82\xa1\x29\x29\x5a\xac\x12\x87\x17\x98\x5b\x49\x69\xc9\xb1\x21\xe2\xfe\x30\x52\x7b\x43\xbc\x93\xc3\xa7\x6f\xe2\x1d\x67\x4e\x0c\xb3\x47\x81\xba\xc0\x1b\xa7\x75\x9a\x67\xfa\xe1\xf2\x37\xd4\x40\xb0\xcf\x18\x1b\x4f\x79\x58\x0a\xbe\x53\x31\xda\x51\x05\xd4\x95\xda\x57\x7e\x83\x5b\xeb\x04\xe8\x00\x3d\xcc\x94\x82\xff\x2a\x0b\x3d\x78\xdf\x31\x15\x02\xa0\xb4\x59\xcd\x26\x73\x4e\xe9\xdc\x31\x5f\x2f\x18\x84\x61\xab\xfc\xb0\x7e\x9b\x91\xd3\xc2\xba\x9a\x07\x6f\x60\xa6\xec\xd9\xbd\x85\xdc\x02\x0c\x66\xfa\x55\x1a\x9b\x44\x92\x1f\xca\xd6\xd9\x0e\xb5\x9d\x23\x43\x87\x74\xf4\x3c\x9c\xe8\xbd\x4d\xd1\xb4\xa4\x03\xf1\x1c\xe3\x66\x20\xf6\x3f\x37\xe1\x3f\x4f\xc9\x6e\x08\xb7\xf2\x48\x9f\x22\xa6\x2c\xdc\xb4\x2d\xae\x89\x49\x34\x0b\x6c\x5a\x1e\xa5\x3e\xe6\xe2\xee\xd9\x77\x36\x43\xab\x30\x7c\x66\x1e\x9d\xd5\xa5\x17\x36\xd7\x71\x9b\x0d\x04\x0b\xb8\x50\x65\x55\xc2\x90\x41\xe2\x1d\xa6\xf5\x85\xce\x9c\xcc\xe5\x71\x77\x44\xdb\x79\x2e\xd0\xfe\x29\x1e\x44\xbb\x97\xb5\x92\xd9\x0d\xde\x8b\xc4\x93\x38\x08\xef\x9d\x6a\xdd\x6c\xb8\x64\x37\x44\x1f\xfb\x26\x02\x6a\xd9\xb0\x57\x10\x87\xb0\x33\xb6\x7f\xb7\xff\x2f\x58\x86\x1f\xdd\xb5\x93\xf0\x01\x85\xee\x01\xdc\x3b\x45\x3d\x18\x86\xf6\xdd\x67\x14\x60\x5f\x05\x80\x33\x39\x07\x7b\x1b\x4a\x16\xa0\xab\x4f\xa5\xe2\xb9\x51\xbe\x59\xb0\x2e\x5b\x33\x5e\xbd\x0a\x54\x31\x92\xe3\x8e\x54\x04\x1e\xb8\x47\x6d\x8e\x41\xae\x7b\x67\xd2\x81\x57\xd2\x2a\xe9\x97\xcd\x6c\x50\x9a\xb1\xc0\xd7\xa4\x3c\xea\x30\x38\xae\x5c\x93\xf8\xce\x1f\xf4\x96\xbd\x94\x7e\x75\xd4\xa9\x72\xef\x20\xed\x53\xc0\xf6\xac\xd8\xd5\x10\x72\x30\x86\xb1\xf0\xb3\x49\xa2\x3c\xf2\xce\xa9\x2c\xc8\xaa\x0a\x9f\x79\xd1\x67\xfc\x6a\xd5\xb0\x9b\x28\xba\xed\xcb\xb8\x8c\x53\xdb\xe5\xdd\x79\x72\xc3\x7f\xbc\x6c\xaf\x6c\x24\xff\x69\x20\x27\x8c\x9d\xf3\x59\x3b\x17\x21\x13\x6c\x49\x83\xfa\x0b\xdc\xbd\x53\x68\x61\x40\xa0\x75\x81\x23\x2f\x5c\x49\x1b\x52\x08\x1b\x57\x7d\x97\x20\xf3\xae\x5f\xc8\xf7\xf9\xc2\xed\x5d\x9c\x6c\x1e\x66\x7c\x2a\xb8\x77\xca\xa0\xb0\xce\x79\x3d\x63\xcd\xd2\x3e\xf3\x67\x56\xc9\x2c\x8b\x5a\x25\xdb\x1f\x9e\x8a\xd5\x75\x7e\x4e\x9a\x06\x6f\x76\x2a\x3e\x98\x0e\xaf\x86\x3e\x05\x9d\x0e\x7c\xa4\xee\xe1\x5a\xc5\x16\x52\xb1\x7d\x33\x09\xc6\xb5\x4d\x92\x89\xef\x31\x8a\x49\xea\x75\xa3\xf8\x19\x65\x6a\x18\xdd\x66\x87\x61\x9e\x13\x81\xcc\x5c\x01\x98\x21\x5f\x48\x35\xdd\xd2\xfc\xe8\xe6\x0a\xb9\x15\x21\x4e\x7e\x27\xc1\xbc\xc4\xe0\xae\x2c\x38\x39\x2c\x85\x9c\xcd\x38\x34\xf4\x31\xb1\x50\xcc\xd2\xe5\x15\xca\xa4\x80\x13\x2d\x23\x43\x39\x58\x7a\x53\x19\xd2\x7c\x39\x4c\x72\x20\xcd\x2f\xe3\x86\x55\xe0\x2b\x97\x23\xbc\x65\x15\x19\xdb\xaa\xc3\xe3\x06\xaf\x7f\x82\x22\xba\x99\xac\x8e\x68\xc1\xe3\x01\xc7\xb4\xec\x75\x26\x6c\xc1\x40\x93\xbd\x1f\x83\x90\x17\x76\xc0\x20\x83\xcb\xe1\x21\x7a\xdd\xcc\x71\x6d\x16\x31\xe6\x75\x5a\x0b\x66\xdf\x6b\x0e\x7d\x94\x99\x97\x60\xd5\xd9\x08\x89\x86\x99\xda\xcd\x86\x67\x63\xda\x85\x7e\x5d\x75\xf8\xbe\x99\x20\xa5\xa7\xb9\xdc\x43\x30\xc6\x29\x29\x53\x74\xfa\x35\x3e\x79\xd8\x2a\x95\xaf\xe8\x4e\x80\xcb\xe1\x20\x15\x53\xff\x55\xc4\xec\x56\xc8\xab\x83\x30\xaa\x54\x08\xbd\x49\x87\xcb\x15\xa9\x48\x1d\xa1\xfb\xdb\x6b\x33\x50\x61\x23\xd8\x9f\xbb\xe4\x7b\x1e\x1e\xfa\x5a\x79\x78\x29\x6e\x4a\xd0\x8c\xc2\x81\x41\x6b\x54\x61\x3f\x75\xcd\xf7\x30\xf4\x27\x81\x16\x3b\xa8\xb7\xf9\x04\xc3\xbe\xcf\xae\xf9\xa0\xbd\x30\x5c\xae\x68\x6f\x26\xc3\xb7\x3a\xc7\x7f\xf0\xf0\x16\x88\xda\x34\xd3\x2d\x43\xa8\x15\xde\xe1\xa9\x82\x5b\xcd\x33\xc8\x61\xfd\x0c\x98\xec\xf2\x76\x43\xdf\x67\x87\x0b\x7f\xdb\x3e\xb7\x4f\x72\xed\x85\xba\xe5\xfe\xe0\xb6\x8f\x4d\x8a\xfd\xf9\x97\x28\x78\x65\x1e\xe1\x5d\x24\xcf\x3a\xf7\x6d\x4f\xb9\xcf\x84\xff\x2e\x72\x24\x21\x82\xa7\x1d\x86\xd9\xed\x79\x15\x5c\xf7\x42\xc7\x01\xbc\x71\xf2\x44\x6d\xda\xd5\xbd\xff\x1c\xf4\xec\x7c\xec\x77\x0f\x3b\xb6\xdb\x55\xd7\x95\x1c\xbc\x8b\xf9\xeb\x92\x0d\x42\x91\x9b\xad\xf4\x9c\x1d\x70\xec\xd7\x4c\xde\x7f\x43\xec\xd8\x29\x5b\x33\xba\xb3\x5e\xf4\x17\x42\x74\xf0\x08\xa1\xbf\xed\x85\xee\xb0\x13\xdf\xc7\x7f\x04\xbe\x8f\xef\x86\xaf\x67\xf4\x83\x01\x53\x38\x2f\x60\x0e\xdf\xde\x27\x2b\x51\x52\x9a\xda\xea\xa3\xdd\x1d\x3c\x47\xc1\x16\x12\xf5\xc1\xb0\x56\x7f\x1e\x46\xef\xa5\x06\x74\x67\xf1\xb9\x4f\xa1\x1a\xf3\xb9\x6d\xd1\xeb\xb8\xbf\x5f\xfc\x7a\xa7\xea\xd7\x31\x80\xc7\x39\x00\x7d\x65\xb0\xcd\x27\xbe\x48\x9b\x97\xb0\xdb\xfa\xdb\x8b\xb5\x59\x29\xdb\xed\xc7\x48\x7c\x00\x50\x1a\x26\xb4\xc3\xc0\x9d\x6a\x2e\xa7\x96\x81\x6b\xd7\x79\x0b\xbc\x3c\x29\xe5\x2d\x70\x3a\x6f\x43\x78\x5b\x09\xbe\x83\xf5\x9f\xc9\x13\xa3\x33\xf4\xd5\xb6\x7c\xde\xdf\x7f\x47\x1d\xe9\xbc\xc7\x90\xce\x9b\x7d\x03\x3e\x67\xc6\x80\x0a\xed\xec\x90\x70\xdc\x39\x11\xd6\x08\x19\x76\xf8\x1b\xde\xb7\xac\x69\x97\xa8\x20\x8d\xa0\x33\x5a\x40\xca\x8c\x3c\x88\xe1\x2a\xbe\x86\x1c\x9a\xe2\xbb\x5c\xce\x4c\xad\x72\x2a\x20\xd1\xd0\x5e\xf5\xb7\x76\xb7\x41\x1e\xcc\x6e\x75\x55\x4b\x2c\x08\x6d\x7c\x94\x10\x96\xb2\x84\x07\xe6\xb5\xee\x28\x75\x72\x0b\x23\xa4\x1a\x60\xeb\x01\x39\x36\x0d\x6d\xda\xe3\x1b\x98\xfc\xc4\xb5\xc9\xa4\xe1\x7a\xa1\x3e\x28\xe3\x5c\x33\x61\xdf\xb5\xed\xa0\xa0\xd6\x64\x28\x37\x03\xde\x8f\xcc\x70\x47\x43\x63\xbc\x7a\xbd\xbb\xde\x8c\xb9\x74\x4b\x8d\xde\x4c\x6c\x75\xf4\xe8\x85\xe6\x24\xe5\xcb\x86\x34\xd8\x4a\xee\x10\xc5\x8b\x3b\x19\x30\xfb\xc7\x49\x9d\x93\xba\x43\xa4\x5b\x86\x7c\x33\xe1\x83\xf7\x45\x70\xbd\x6a\x98\xcc\x56\xee\x64\xb5\x15\xd1\x35\xd9\xdc\x6a\xc6\xbe\x53\x46\x1f\xd1\x52\x31\xd5\x5b\x25\xdd\x7f\xa1\x9b\xbd\xad\xd7\xea\xce\x78\x78\xb1\x38\x7c\xbd\x43\x2e\xf6\x35\xd9\x48\xec\x0c\xf4\x90\x0f\x03\x28\x66\xc1\xaf\xc9\xe6\xab\x5c\x24\xa6\x93\x70\xa7\x2f\x9e\x3f\x6f\x58\xbb\x7a\x41\x36\xb2\x33\x3f\x0a\xe1\xfe\x81\x2a\xa5\x4a\xa6\xcc\xc5\x0f\xb4\x34\xbc\xbb\xad\xbb\xcf\x05\x3c\xf3\xf1\xaf\x80\x47\xa4\x41\xe1\x59\xf2\x1d\x78\x2d\xa0\x9c\x98\x79\x88\x4d\x87\xb8\x53\x07\x9c\x7e\xf7\xd5\x5c\xeb\xf2\x8f\x04\xf7\xd6\x35\xdc\x04\x90\x07\x43\xce\xc7\x7d\x84\xbe\xce\xf8\xf5\xe2\xe7\x64\xed\x53\xbe\x13\xbc\xc2\x53\x5a\x51\xd1\xf9\x46\x7a\xc1\x56\x9b\x27\xae\x59\xf6\x55\x26\x1f\x05\x20\xfc\x6b\xa8\xa0\x4d\x59\x1d\x85\x8b\xf3\xe2\x4d\xa0\xc2\xa1\x01\x09\x37\xd1\x3b\xfb\xf7\xc3\xdd\x3a\xed\xa4\xa8\x8d\x9a\xc2\x7c\xd9\xf4\x5f\xa4\x10\xe9\xa4\xdf\x92\x19\x3a\x8e\xe7\x6f\x1e\x83\xef\x24\xdf\xd3\xc1\xf6\xb9\x68\xcc\x02\xbc\x02\x9c\xee\xa7\x4f\x4f\x1b\x94\x76\xe7\x1b\x27\xd5\x76\xe2\x17\xc7\x2a\xb1\xdb\x4e\x33\x8b\x3b\x53\xbf\x30\x9f\xe8\x81\xff\x54\x16\x91\x7a\xdb\x1d\xb9\x23\xa2\xd7\x6d\x19\xc3\x60\xf2\x59\x78\x42\x9e\x5e\xfb\x31\x83\xf3\xa3\x6a\x36\x90\xe7\xd3\x17\x66\x00\x33\xe6\x9f\xca\x01\xe5\xf5\xdd\x05\x84\xa5\xd5\x6d\x17\xdf\x22\xb1\xc7\xea\xbf\xc4\xd7\x84\x23\xfb\x0e\x0e\x27\x90\x1a\xa9\xec\x12\xf5\x66\x3e\x47\x03\x5a\xab\xe7\x50\x87\x60\x96\x40\x75\x8b\xb1\x8b\x6e\xb6\xd3\x03\x68\xcf\x51\xa1\x52\xc9\x72\xef\xad\xce\xda\xaa\xd2\xea\x8e\x02\x3b\x0e\x6c\x13\x78\x7a\xde\x9c\x41\xdd\x75\x3f\x7e\x45\x7e\xe5\x0f\x5d\xb1\x05\xfd\x1a\xd6\xf9\x70\x5f\xbb\xf2\x1d\xfa\x99\x5e\xf5\x70\x60\x1a\xde\xf5\x0a\x8a\x80\x67\xe2\x6f\x1e\xc0\xe1\x10\x3d\xb1\x90\x62\xf2\xa9\x6b\x47\x50\x60\x47\xce\x12\xde\x12\x61\xb3\x28\x16\x83\xce\x4f\x41\x9f\x6b\x39\x64\xf3\x37\xac\xad\x4b\xd4\xb0\x29\xad\x11\xae\xe6\xac\xa1\x62\xb1\xb4\x10\x05\x43\x18\xca\x47\x81\x81\x11\x07\x75\x04\x43\xe4\x7d\x8b\x2b\xc4\xe9\x6f\x71\x3c\x25\xb9\x1a\xb1\x2d\x9a\x63\xcb\xcc\x74\x56\xb5\xf1\x28\x95\xde\x62\x51\xaf\x97\x1a\x70\x63\xb5\xac\x43\xf4\xf4\xb8\xdf\xa9\x93\x20\x74\x64\xeb\xcd\xc0\x45\xef\x8a\x70\x9e\xce\x5b\xf2\x91\x99\xed\xfd\x8c\xd6\x29\x4d\x25\xbe\x68\x67\xb3\x8a\x94\xea\x02\x9b\x2a\x0a\x69\xd6\x67\x50\xe7\x22\x56\xca\x8a\x34\x36\x09\x76\x65\xbb\x94\x81\x16\x22\x91\x35\x59\xbb\x49\x17\xa8\xd8\x9e\xdd\x79\x5e\x97\xe4\x83\x79\xfb\x15\x1d\x7b\xaf\xe8\x98\x58\xaa\x7a\xd2\x86\x9f\x52\xe0\x49\x48\x55\xfb\xf9\xa3\x5a\x2b\xc3\xc9\x9f\x22\xf8\xeb\x05\xad\x48\x30\x02\x7a\xb2\xe7\x32\x44\xab\x9b\x45\xc4\xe8\xfe\x1f\x3f\x0d\x73\xe6\xa0\x1a\xf8\x38\xfc\xf3\x5b\xcf\x67\xe7\xd6\x2b\xea\xf1\xe0\x5e\x60\x8d\xa8\xc8\xb3\xbf\x9e\x1f\x33\x75\xfc\x3f\x43\xd8\x39\x99\xe1\xcf\x3e\x62\xbf\xfc\x4c\x4b\x49\x68\x17\x98\xf5\xdf\x1c\x4a\x52\x89\x4f\x4c\xc5\x03\xe6\xa2\x00\x1a\x1c\xbc\xab\x03\xb5\x63\xf5\x8f\xaa\xf6\x16\x9d\xa1\x35\x51\x6c\x3f\x67\x50\x57\x44\xff\x5c\x61\x29\x48\x6a\x72\x2b\x2a\x23\x7d\xd5\x37\x68\xbe\xef\xae\xcc\xc5\xad\xe3\x35\xf3\x7f\xec\x8a\x51\x4f\xac\x47\xc4\x79\x39\xc0\xb1\x6a\xaf\xf7\x70\x28\x3d\x6c\x35\x29\xa3\x57\xc4\xd6\x70\xae\xf6\xef\x65\x94\x29\xd3\x8b\xe5\xe7\xdf\x23\x66\x42\xfe\x6b\x96\x89\x24\x18\x50\xb5\xe1\xfd\x81\x47\x3e\xf3\x1d\xed\xc2\x89\x5f\x0d\x6f\xbb\xe3\xe2\xb3\x2e\x38\x33\xbc\xa3\xec\xc4\xd5\xb1\x83\xab\x08\xda\x41\x84\xcd\xd5\xde\x15\x69\x96\xad\x70\x29\x3d\x4d\xa3\xe5\x8f\xec\xdc\x72\x73\xf3\x78\x46\xf9\x82\x34\x68\x03\x7e\x38\xb5\x83\xc1\x52\x09\x0e\xba\xa4\x54\x9c\x15\xd3\xbf\x2a\x4f\x59\x78\x38\xb9\xb4\xac\x40\xa0\x52\xa9\x50\x41\xce\x88\x3a\x7b\xc2\x07\x2e\x6d\x32\x80\xbd\x6e\x01\x9b\x8a\x54\xaa\xd6\x35\x38\x58\xd6\x78\x05\x35\x05\xa7\x1b\xf9\x0f\x54\xac\x2a\x59\xfd\x4d\xc0\x7b\xa6\x7a\x55\xd3\xd6\x36\xc0\xa7\x2b\xe7\x55\xa6\x6c\x36\x16\xdf\x70\xb4\x5e\x6c\x10\x0d\x9e\x45\x53\x1c\x17\x7e\x97\xdc\x7a\xba\xa0\xc5\xb5\xa3\x32\x30\x8b\x42\xf9\x01\x64\xea\x24\x0e\x41\xd5\xd0\x2c\x7c\x43\x6e\x48\x23\xe8\xb4\xd2\x37\xa0\x9f\xc8\xf3\xe1\xf1\xa3\xa7\x83\x25\x2b\xdb\x8a\xa9\xf3\xe2\xf1\xa3\x01\x95\x5c\x31\xcc\xdc\x50\x91\x24\x90\x6b\x49\x7f\x71\xde\x63\x4b\x23\x11\xa0\x95\xa0\x22\xc8\x72\x65\xd6\xe0\x67\x1a\x3e\x07\x6b\xbe\xb4\xbf\x7b\x78\xe7\x5a\xfa\x3f\xa3\x63\x00\x1d\xe5\xdd\xa0\x63\x44\x83\x08\x50\xca\xdb\x00\x2a\x66\xec\x49\xa4\x4b\x14\xca\x73\xeb\x17\x6e\x74\x77\x6f\x68\xa3\x13\x58\x54\x9d\x48\x67\xf5\x48\x48\x52\xbd\x6f\x4a\xa9\xd6\x32\xb4\xc2\x8d\xa0\x05\x5d\xd9\xeb\x6a\x4a\x7a\xe9\x7d\x23\x81\x6a\x66\xa1\x4d\xe0\x85\x8e\x59\x7f\xee\x79\x14\x61\x58\x38\xb0\x20\x69\xb3\xc9\x3b\x5e\x5e\xd9\xdf\x87\x47\xe8\xff\x84\x32\x47\x21\xfe\x31\x51\x29\xf6\x38\x27\xdd\xf0\xe3\xe0\xc8\x54\xef\xf6\x45\xb9\xb5\xfb\xe4\x62\x85\xce\x2f\xf7\x2c\x9f\xec\xa2\xdf\x47\x63\x8d\x57\x3a\x20\x52\xa2\xf5\x1a\x61\xb7\x3e\xca\xd4\x72\xda\x60\x9c\x98\x13\x78\x26\xc2\xdb\xa9\xb1\xd7\x22\x66\xa4\x27\x07\x61\x6f\x9d\x1a\xe5\x16\x28\xa1\x94\x2d\xf2\xf7\x82\x6c\x5c\x08\x71\xec\xbe\x4c\x9c\x78\x93\x28\x6d\x70\x1b\x5f\x4a\x73\xfc\xc2\x70\x5d\x2d\x76\x67\x4f\x7d\x62\xca\xfe\x5b\xae\x00\x7b\x4c\x79\xfa\xe2\xb9\x37\xd8\x2d\x98\x52\x9a\xb3\x3e\xba\xff\x1e\x4c\x19\xa7\xe7\xed\xcf\x94\xfe\xa2\x39\xa6\x8c\x17\x67\x0b\x6f\x96\xd7\xb9\x3b\xd3\xce\x7d\x92\xf2\xa3\xe9\xa1\x39\x31\x5e\x9b\x0c\x91\x50\x5c\x6d\x4c\x42\xe2\x61\x42\x99\xbb\x62\x5d\x11\x93\x5a\xac\x95\x21\x57\x84\x0c\x7c\x07\xdd\xe6\xba\x94\x60\xd0\xc7\x3a\xea\x87\x47\x48\x67\xb9\xe4\x13\xa9\x73\xfa\x56\x1f\xba\xaa\xbd\x8a\xea\xa9\x9b\xe1\x90\xbf\x62\x6a\xb5\x15\xb8\xee\x41\x7c\xec\x6f\xb8\x82\xac\x54\x85\x2a\x5d\x21\x57\xbf\x6c\x3a\x25\xb0\x61\xa4\x5e\xf3\x4e\x61\xfe\x6e\x84\x16\x6c\x2d\x0f\x57\x28\x13\x8e\x39\xc2\x65\x49\x4a\x95\x3d\x27\x77\x14\xae\x9d\xf2\xb3\x9a\x37\xb8\x24\x1a\x1b\x5d\xc1\x8c\xc3\xc5\x1b\xfd\x1a\xd4\x94\x20\xbe\x22\x05\x9d\x51\x52\x22\x4e\x56\xb8\x51\xe5\xb0\xe0\x9c\x27\x1f\x28\x87\x7c\x49\xf5\x70\x3b\x4f\x3d\x23\x9a\xca\x99\x44\xa1\x23\x94\x7c\xd9\x41\xf3\xac\x6b\x2d\xe9\x9c\xf5\xb0\x25\xad\x74\x90\xc9\x5b\xad\x2b\x3f\xaa\x75\xe6\xdf\x47\x01\xee\xaa\xd6\x78\xc3\xb3\xb5\x61\x57\x55\xcb\xf5\x91\x9e\x65\xae\x7c\xec\xc5\x98\xc1\x5d\xfc\x95\xaf\x48\x89\x30\xd7\xfd\x7c\xf4\x93\x3a\x72\x5d\x17\xd6\xbb\x9c\x47\xdd\xe4\x95\xed\xb3\x14\x3d\xc9\x8f\x31\x44\xff\xf8\x07\x9a\xe1\x4a\x17\x29\xf1\xe8\xfb\x9c\x44\x85\x08\x3b\xae\x31\x57\x64\x26\xf4\x3e\x2e\x09\x17\x0d\xdb\x78\xd9\x03\xdf\xf9\x2d\x71\x13\x5e\x80\x5f\x93\x86\x20\x5c\x55\xac\xc0\x42\x55\xc1\xc7\xa8\x24\x05\x91\xc6\x58\x45\x7f\xb3\xd7\xe7\x49\x2d\xe8\x8d\x3b\x73\xa0\x2f\x24\x2b\xd8\x12\xde\x2e\xc8\x29\x09\x0b\x28\x12\x78\x09\xc6\x20\x34\xd6\xec\x42\x38\x78\x2e\xcd\x1c\x3c\x17\x98\x46\xab\x61\x6b\xd9\x5f\x5d\xd0\xb4\x6f\xee\xf8\xf7\xf9\xcd\x79\x06\xc5\x01\x68\x3d\xd3\x5f\xcb\xed\x65\xc1\x71\xe6\x6e\xa8\xe9\xf7\x6e\xaa\xb6\xf4\x4a\x59\x7b\x00\x6d\x27\x28\x9b\xaf\x25\x85\x89\xf4\x07\x94\x36\x89\xb5\x76\x56\xd2\xa2\xf0\xc8\x62\xea\xe2\x69\x87\xa8\x2a\xb6\x88\x70\xbd\x59\xb2\x86\x74\xed\xf0\xe0\x36\xb9\x29\x10\xba\x0f\xc7\xa9\x1e\x09\xcf\xc9\x23\xd6\xc1\xce\xdd\x98\x47\xca\xcf\x6c\xaa\x05\x68\xd6\xa3\x35\x15\xf6\xd2\x7d\x78\xc9\x2d\x2d\x97\x1d\xe5\xb7\xf6\x37\x89\x2b\xfa\xf7\xb5\x75\x95\xfb\xb3\xad\x32\x0e\x45\xe5\x5c\xf3\xdb\xf5\xdd\x09\x37\x84\xf6\xdb\x6f\xab\x3d\x7e\xbb\xca\xe0\x7b\xd7\x05\xcf\x56\x05\xef\xf5\xca\xee\x5b\x3e\xbb\x33\x17\x38\x74\xaa\xf7\x57\xc7\x8e\x96\x3e\x53\x19\x3b\xad\x8a\xbd\x4b\x11\xec\xf8\x2a\x66\x4e\x71\x40\xc7\x5a\xd9\x18\x24\x0c\x78\x97\x8c\xeb\xcf\xf1\xf8\xc4\x4e\xe0\xf7\x7b\x97\xa2\x1f\x64\x66\x2b\xe4\xbe\xdd\x0b\x6c\xff\xce\xe9\xfb\x35\xcd\x87\xc1\x48\x36\x61\x70\xda\x99\x42\x80\x56\x86\xfb\xaa\x9d\x51\xf9\x54\xa6\x9d\xfc\xe2\xa1\xae\x2c\xbb\x82\xa7\xbe\x0a\xe6\x95\x02\x02\x85\x5a\x01\x4b\xb5\xa1\xe3\x54\x43\x0a\xad\x85\xd2\xa6\x01\xf6\xb2\x4b\x43\x66\x93\x9e\x8a\xd7\x49\xe3\x2b\xba\x24\x5c\xe0\xe5\xca\x48\xad\x41\x52\x0d\x72\x2c\x4c\x9b\xe1\xb7\xf1\x0e\xb2\xe0\xbc\x4a\x3a\x91\xc0\xe7\xf8\x86\x0c\xba\xe6\x3d\x42\x82\x6d\x55\xe3\x7a\x52\x67\x26\x7d\x0f\x61\x74\x77\xdb\x7e\x87\x39\xe8\x0a\x0a\xfa\xa5\xc2\xf1\x02\x8b\x05\x3a\xce\xa0\x7c\x62\xcd\x0f\xdb\x6f\x61\x4a\x13\x6f\xeb\x6b\x6b\x18\x87\xfd\x8d\xfd\xb3\xad\xbb\x35\x4e\x02\x5e\x8b\xde\x83\xfa\xa8\xd6\xf7\x28\xbc\x2f\xf3\x09\x1d\xa3\x8f\xb1\xfc\xca\x2e\x61\x00\x4e\xad\x5b\x17\x92\xf1\x8a\x65\xe1\x3d\x39\xd0\x59\x88\xda\x96\xf4\x40\xc6\xf4\x1e\xee\x03\xce\xd2\x32\x00\x99\x5b\x8a\x61\x2e\x02\x80\xd1\xaa\xa1\x37\xf2\x7f\x5e\xd0\x3d\x9b\x63\x63\xab\xc1\xa9\x17\xca\xa5\x22\x0a\x0f\x1c\x42\x75\x6b\x2c\x82\x3b\x4f\xaf\x6b\xf4\x12\xd3\xba\x26\xca\xa3\x7b\x45\xb8\xa8\x09\xbc\x7f\x42\xa2\xdc\x05\xae\x4b\x14\x04\x6f\x51\xe8\x37\x03\xf5\xc4\x47\x52\x71\x5c\x98\xb0\xf5\x82\x34\xc4\x7f\xed\x05\x9d\x28\x9d\x18\x36\x1c\x3c\x8d\xa0\x90\x9c\x32\xed\x36\xc5\xe1\x78\xee\x51\x17\x3b\x61\x4a\x38\xaa\x68\xad\xcb\x38\x20\xb1\x60\x9c\xf8\x1d\x0c\x5a\x78\x69\x71\x0a\x30\x50\xcf\x9e\xd5\xbc\x55\x95\xf2\xb0\xd0\x49\x9a\xac\x56\xb6\x23\x6b\xa4\xda\x5d\xb6\x30\x5b\xfd\x26\x8c\xae\x67\xce\x21\x9d\x18\x83\xab\xd8\xbb\x99\xb7\xe1\x82\x2c\x51\xb1\x68\xeb\x6b\x7f\x20\xd0\x99\x31\x5c\xd3\xaf\x36\x3a\x92\x5c\x9a\x37\x11\x15\x25\x8d\x93\x0a\x57\x00\x8e\xb5\x42\x9a\xc8\x54\x7f\x65\xab\x88\x2f\x71\x4d\x57\x5a\xbb\x1e\x07\xdb\xc8\x2f\xab\xd6\x9d\x0a\xe2\xd3\xce\x32\x26\xe5\xbc\x25\x7d\x69\x55\x99\x5f\xfc\x84\xb2\xfd\xb6\x80\x97\x81\xd2\x33\xe6\xd3\x41\x7e\x42\x19\x49\xdc\x9b\xdb\xb6\xe7\xd6\x79\x5f\x78\xfe\x19\x14\x24\x8f\x6e\xdf\x40\x72\x19\xde\x17\x77\x5c\x81\x24\x75\x29\xf3\xe5\x1d\x09\x1e\x0f\xf1\x74\x90\x60\x9d\x21\x73\x57\x6a\xd8\x9e\x14\xb6\x69\x35\xb7\x26\xb1\xf1\xdd\xdd\x9e\xc6\x5e\x6e\x50\xf0\xe7\x1d\xe9\xea\xc0\x3e\x1d\xa4\x48\x66\x48\xda\x99\x6c\x15\x0e\x9e\x2f\x7e\x25\x35\xff\xee\x4a\xc2\x3b\xd5\xcf\x0e\x5a\x43\x14\x6e\x9f\x4b\xab\x3b\xbd\x76\x87\x6e\xf7\x4a\x49\x52\x58\x7b\xcb\x6b\x25\x69\x21\xee\x3d\xee\x8e\xa2\x83\xce\xf7\x55\xf2\x77\x44\xf7\x1e\x26\xba\xae\xd5\x39\xde\x5d\xcb\x7d\xf8\x9f\x7f\x87\xe7\x4e\x3a\x52\xcf\x53\x56\x33\xfe\xf5\x4f\xf7\xfe\x5f\x00\x00\x00\xff\xff\x52\xab\x11\x5e\xcd\xeb\x00\x00" +var _epochsFlowepochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x6b\x73\x1b\x37\xd2\x28\xfc\xdd\xbf\x02\x71\xd5\x9b\x90\x1b\x8a\xb6\xe3\xb7\x9e\xda\xd2\xb1\xb2\xc7\x91\x64\x47\xe5\xd8\x96\x2d\x25\x7b\xaa\x52\xa9\x18\x9c\x01\x49\xac\x86\x03\x1a\xc0\x48\x61\x9c\xfc\xf7\x53\x68\xdc\x2f\x33\x24\x25\x3b\xd9\xec\x59\x7e\xb1\x45\x02\x8d\x46\xa3\xd1\xe8\x1b\x1a\x74\xb5\x66\x5c\xa2\x67\x5d\xbb\xa0\xb3\x86\x5c\xb2\x2b\xd2\xa2\x39\x67\x2b\x74\x3f\xfa\xee\xfe\x3d\xdb\xb2\x61\x37\x51\x2b\xfb\x77\xd4\xe2\xec\xe4\x12\xcf\x1a\x72\x21\xf1\x15\x6d\x17\x41\xd3\xf8\x87\xa8\xcf\x71\xd3\x09\x49\xf8\x9b\xe3\xa0\xb9\xfb\x2e\x6a\x79\xf2\xe2\x79\xd0\xe6\xe4\xc5\xf3\xe8\xd7\x67\x84\x88\xe0\x67\xf5\xe7\xfd\x7b\xf7\x1e\x3c\x40\x97\x4b\x82\x24\x5b\x1f\x34\xe4\x9a\x34\x48\xac\x30\x97\xa8\x62\xad\xe4\xb8\x92\x68\x85\x5b\xbc\x50\xb8\xca\x25\x41\x0d\x9d\x93\x6a\x53\x35\x04\xb1\x39\x22\x6b\x56\x2d\xc5\x14\x9d\xb5\x00\x7e\xa2\x40\xe9\xef\x10\xe6\x04\xda\x8b\x15\x6e\x1a\x22\x24\xea\x5a\x2a\x55\x1f\x49\x57\x04\xdd\x2c\x89\xf9\x9d\xd6\xa4\x95\x54\x6e\x90\x54\x93\x47\x23\xe8\x43\x54\x4b\x05\xac\x25\xf2\x86\xf1\x2b\xc4\xd6\x84\x63\xc9\xb8\x18\x23\x2a\x90\x90\x58\xd2\x6a\x8a\x5e\xdb\x6f\xd1\x0a\x6f\x10\x6b\x9b\x0d\x6a\x08\xbe\x26\x88\x71\xf4\x2f\x46\x5b\x18\xc0\x80\x50\xd0\xb0\xd4\xd8\xa1\x19\xeb\xda\x1a\x73\x4a\x44\x0a\x64\x46\x10\xf9\x17\xa9\x24\xa9\x51\xdd\x71\x35\x69\xdc\x9a\x4e\x73\xc6\xd1\x35\xe6\x94\x75\x42\x01\x5b\x51\x51\x93\x15\xc1\x2d\xeb\xb8\x98\xa0\x59\x27\xd5\x70\x1b\xc4\xc9\x0a\xd3\x16\x99\xd1\x93\xe9\x75\xad\xa4\x0d\xfc\xa0\x61\x92\xb6\x16\xd3\x7b\x0f\x1e\x28\x80\xa7\x9e\x70\x62\xdd\x50\x89\x68\x2b\x19\x7a\x8c\xd6\x4b\x2c\x88\x38\x54\x4d\x7e\x3b\xba\xf5\x07\xba\xa3\xd3\xf3\xd7\xc7\xdf\xa2\x57\x68\xfb\xe7\x37\xd7\xf8\xcb\x47\x68\x3a\x9d\x42\xff\x03\xf5\x41\x96\x75\xe1\xaf\xdf\x0e\xd0\x05\x91\xdd\x1a\xa9\xff\x1d\xb3\xd5\x8a\x4a\x45\xbc\x83\xdf\x7e\x73\xbd\xee\x84\xb4\x82\xf0\x68\x8c\xd0\xc5\xe5\xd3\x17\x67\xaf\x9e\xa3\xf3\x6f\x9f\x5e\x9c\xaa\x2f\x5f\xb1\x9a\x78\xbe\x00\xb2\x01\x89\x25\x43\xa2\x9b\xad\xa8\x54\x6c\x02\x78\x72\xf2\xbe\x23\x42\x0a\x58\x41\x45\xfb\x57\xa7\xff\xe7\xd2\x2c\x80\x5e\x64\x05\x4f\x2e\xa9\xd0\xb4\x9e\xa2\xa7\x52\xaf\x51\x5b\x03\xc7\xba\x5f\x26\xf0\x35\x2c\x54\xba\x49\x38\x11\xac\xb9\x26\x42\xb5\x50\xe0\x58\x27\x85\xc4\x6d\xad\x10\xc8\x10\xc1\x6d\x8d\x6a\x22\x09\x5f\xd1\x56\x77\x49\x19\xc5\xa2\xda\x92\x5f\xa4\xdb\x55\x53\xd8\xa7\xc5\xe1\xc9\x8a\x4a\xe1\xb1\xd3\x4b\x22\x08\xbf\xa6\x15\x41\xe4\x9a\xb4\xba\x2d\xa6\xad\x9b\xee\xe0\x98\x7a\xc0\x09\xba\x59\xd2\x6a\x89\x68\x4b\x25\xc5\xd2\xa0\x2a\x39\x6e\x05\x95\x94\xb5\x8a\xd8\x66\xbe\x1a\x2b\x3d\xee\x39\x50\xd1\x2c\xde\x57\x63\x74\x71\x7a\xf9\xfd\xb9\x5f\xb9\x7f\x2e\x49\x1b\x10\x15\xcd\xc8\x82\xb6\x1a\xf4\x1a\x73\x49\x2b\xba\xc6\xad\x14\xc8\x6d\x60\x8b\x8e\xde\x1b\x44\x4e\xd1\x89\xde\x9b\x0a\x88\x82\xe8\x17\x47\x24\x30\xd6\x9c\xac\x55\xaf\x7c\x6e\x20\xb5\x74\xdb\xae\xc1\x7c\x82\x2a\xd6\x34\xa4\x52\xd3\x02\xc9\xc3\x6a\x22\x2c\x27\x5d\x33\x35\x77\x03\x83\x72\x54\x69\xd9\xfb\x85\x40\x9c\x31\x89\xde\x77\x8c\x77\x2b\x54\x11\x2e\xe9\x9c\x56\x58\x12\x58\xe1\x8a\xb5\x82\xb4\x42\x8b\x0b\x0d\x8f\x77\x7a\x4e\x35\x15\x92\xd3\x59\xa7\xb6\xca\x15\xd9\xa0\x05\x69\x15\x23\x2b\x92\xae\x39\x93\xac\x62\x0d\x1a\x9d\xbc\x78\x3e\x06\x76\x26\x12\x75\x6b\xe8\xc7\x71\x5b\xb3\x95\x82\x37\x23\xb8\x62\xed\xd4\x12\x13\x26\x0e\x73\x05\x28\x7a\x3f\x54\x6c\xb5\x6e\x88\x1c\x62\x5b\xc7\x37\x6e\x0d\xf5\x1e\xee\xe5\x1d\x00\xa5\xa8\x36\xc7\x95\x14\x7a\x7b\x68\x89\xbd\xe6\xac\x22\x42\x18\x9e\x51\xf0\xb6\xb0\x8d\xc1\xc8\x0c\x18\x31\xcd\xe3\x31\x3a\x7e\xfd\xf2\xe5\xd9\xe5\xe5\xe9\xc9\x36\xc6\x99\x84\x62\x5e\x1d\x0f\xf3\xae\x69\x36\x76\xe5\x6b\x18\x2c\x1b\x3a\xd9\x57\x4f\xd1\x1c\xd3\xa6\xe3\x20\x3e\x48\x2b\x09\x8f\xc7\x99\x33\x1e\x4e\x00\xe8\xc0\x12\x86\xd2\x33\xae\x61\xfd\xd5\x8c\xb1\xdc\x85\xa5\xd5\xb8\x1a\x49\xbb\x5a\x8e\xa0\xdd\x1a\x78\x5b\x91\xb5\xee\x38\x71\x9b\x51\x20\x8c\x2a\x4e\x25\xad\x70\xe3\xf0\x56\x0c\x77\x43\x9b\x06\x55\xb8\x13\x1a\x46\xb5\x54\x07\x91\x64\x68\x89\x1b\x39\xbd\x77\x0f\x57\x6a\x7d\x46\xb8\x69\xc6\x9e\x01\xd4\xb9\xad\xd7\xe1\xc3\xbd\x7b\x4a\xf0\x87\xad\x48\xdb\xad\xf4\x2a\xc1\xea\x1c\xa2\xef\xcf\x5a\xf9\x77\xf4\xe1\x9e\x3d\x25\x22\x90\x8a\x54\x46\x4c\x3f\xfd\xfe\xf8\xf2\xec\xf5\xab\xfe\x76\x70\xb6\x80\x5c\xd8\xd2\x46\xb3\x01\x34\xfa\xbd\x07\x41\x75\x12\xbc\x65\xcd\x2e\xe8\xbd\x7a\xfd\xea\xb4\xff\xd7\x63\x2d\x01\x18\x1f\x6a\x62\xf7\x74\x3f\xda\xbf\x90\xaa\x03\x31\xd2\xdb\xe4\x07\xc2\xb5\xa0\x18\x6c\xf5\x14\xbe\x08\xa7\xfe\xc0\xa8\x6a\x46\xd8\x4a\xb5\x95\xe3\x8d\x4a\x05\x6c\x69\x25\x57\x6e\x8c\x64\xf0\x6b\xed\x19\x58\x38\x70\x92\x21\x8c\x5a\x72\x63\xd8\xd1\x30\xa8\x3d\xb1\x70\x57\x69\xa1\xa4\x37\x67\x46\x7e\x18\x53\x9f\x38\x80\xcc\xe8\x9e\x9b\x8e\xc5\xb5\x62\x1d\xec\x27\x2b\x81\xab\x8e\x73\xd5\x4b\x8f\x07\xdb\x84\x0a\xbd\x95\xe1\x6c\xb2\xfd\x4d\x3f\xbd\xa8\xff\xf3\xff\x4f\x72\xc8\x73\xca\x85\x44\xd7\x94\xdc\xa0\x11\x6d\x95\x4c\xa6\xd7\x64\x6c\x45\x52\x34\xce\xd4\x75\x86\x4e\x3f\x50\x72\x33\x00\xb8\xc1\xbb\xc2\xfd\x42\xa4\xa4\xf2\x23\x99\x1f\x9e\xea\xef\x4f\xdb\xfa\xa3\x8d\x1a\xce\xa6\xc5\xcd\x10\x5c\x26\x71\x83\x9e\x7d\xf7\xfa\x9f\x80\x0e\xa9\xd1\x6c\x83\x70\xd3\x98\xe3\x48\xeb\x21\x0d\x59\x68\x1d\xaa\xb8\x44\x7e\x30\xa9\x80\x5d\x00\x98\x43\xf4\xfd\x33\xfa\x4b\xcf\x70\xa2\x5b\xaf\x9b\x8d\xc2\x5c\x8d\x04\x83\x17\x21\x47\x5d\xcf\xd4\x94\x6b\x73\x54\x70\x72\x83\x79\x6d\x84\x28\x48\xb5\x99\x12\xa4\xb4\x76\x80\xd6\x9c\x5c\x2b\x4d\x3c\x81\x04\x28\x2a\x91\x76\x01\x38\xf4\xa1\x09\xd6\x8e\x42\xb5\x7f\x20\xd6\x49\x84\x13\x35\x70\x98\x32\x6f\x35\x2c\x3f\xa6\xfa\x65\x5c\xdc\xb8\x05\xed\x2c\xdd\xb8\x37\xfd\x07\x26\x74\x77\x60\x8d\xca\x7a\xe6\x0e\x69\x4d\x42\xe0\x0c\xfa\x2b\xa9\xfb\xb4\xbc\x6e\x5d\xb1\x95\x62\xdc\x60\x2e\x7d\x7b\x5b\x0d\xb8\xc3\xd6\x4e\x40\xa2\x97\x9d\x90\x8a\xa0\xac\x25\x68\xc1\x09\xd6\xc7\x2a\x06\x11\x13\x01\x1b\x94\x11\xd3\x1d\x45\xc2\xd9\x2e\xf3\x44\x37\x54\x2e\xdd\x0e\x40\xb4\x9d\x33\xbe\xc2\xf1\xc6\x0d\xd9\xf1\x30\xfa\x56\xf5\x39\x3b\x99\xb8\x3d\x7f\x45\x36\x13\xab\x79\x94\xfe\xc6\x75\xcd\x41\x25\xe2\xac\x21\x93\x08\x94\x05\x11\x60\x30\x41\x37\x84\x2e\x96\x72\x02\xfb\x72\xc5\x38\xf1\x38\xc1\xc8\xed\x9c\x1d\xa2\x1f\x73\x5f\xc1\xf4\x95\xf9\xf5\xa7\xbd\xa5\x64\x89\x0b\x3e\x8a\x98\xec\x07\xbc\x45\x62\xa9\xe5\xd7\xea\x35\xc2\x42\xd0\x45\xbb\x52\x9c\xd0\xc7\x62\xa7\x58\x59\xd1\x0d\x81\x46\xe6\xf0\x6a\xa8\x90\x11\x4c\x4e\xd6\x9c\x08\xa2\x14\x30\xc5\x8a\x0e\xbc\xd6\xd1\xf5\x9e\x51\x2c\x01\xaa\x99\x62\x8b\xb3\x13\x61\x06\x37\xfa\xe3\x12\xc7\x10\x0d\x88\x89\x66\x27\x6d\x14\xe8\xc5\xd3\x42\x15\x0c\x86\x80\x6f\x8d\x5e\x61\x7c\x36\xc2\xac\xa2\x73\xe1\x4c\xcd\xff\x4a\xeb\x27\x58\xc7\x2b\xf0\xb6\x68\xe5\xbf\x25\x42\x68\xab\x40\xe1\xa6\xa6\x4b\x70\x4d\x38\x12\xc4\x58\x2f\x08\x37\x0b\xc6\xa9\x5c\xae\x00\xbb\x08\xe0\xd0\xe6\x57\x1f\x3d\xc4\x05\x0c\x79\x88\x2e\xa4\xb2\xb2\x0a\x38\xd5\x04\xd7\x0d\x98\xae\x6c\x8e\x88\x5a\x02\xad\x28\x9b\x05\x38\x79\xf1\xdc\x9b\x31\x92\x29\x11\x60\x95\xdb\xda\xb6\xb1\x18\x44\xb0\x03\xdb\xd5\x88\xb5\x13\x37\x92\xf6\x8b\x90\x8a\xce\xa9\x81\x42\xf8\x0a\x10\xc0\xde\xd2\xd2\xec\xd8\x76\xab\x19\xe1\xf1\x86\x06\xdb\x01\x6b\xd4\xbc\x46\x8e\xd8\x4c\x89\x61\x05\x3e\x90\x98\x6a\x05\x05\xc1\x4a\x2f\x9f\x35\xac\xba\xd2\xab\x0c\xa0\x8d\x18\x8b\x40\x5b\x91\x86\x16\xf4\x9a\xb4\x8e\x38\x13\x44\x25\xaa\x70\x8b\x04\x9e\x93\x66\xd3\x63\x84\x84\xaa\x95\xfa\x9c\xbc\x78\x0e\xba\xf6\xa3\x67\xf9\x46\x49\xdb\x7c\xb5\x43\x9b\xc7\x85\x36\xf9\x61\x88\xf9\x82\x48\x54\x77\xc6\x06\x2d\xb3\xc9\x44\x51\x5d\x90\x8a\xb5\xb5\xe7\x6d\xdd\xf5\xc4\xf4\xcc\xf1\x48\x86\x50\x67\x29\x78\x00\xfb\x86\x88\x96\x58\x0f\x76\xb0\xe6\xa4\xa2\x42\x21\xf6\x7d\x4b\x7f\x81\xfe\xc9\xf8\xa7\x6d\x7d\x49\x57\xc4\x0e\xdf\x7b\xf4\x16\x8d\xdb\xe1\xa3\x17\xdc\xa5\xee\xf0\x75\x20\xbd\xab\xcb\x1f\xc0\x01\x20\x70\x46\x02\x34\x25\x58\x02\xcb\xbc\x67\xe2\x0e\xee\x12\x2b\x65\x98\xb4\x7e\xc7\x0c\x9d\xcc\x66\x3e\x77\x38\x9b\xc9\xfb\x0e\x37\x96\x21\x6d\x27\x9a\x1f\xd1\x4e\xe1\x0a\xf6\x28\x20\xb2\xeb\xf1\x7c\x09\x7a\x9d\xe8\x1a\x69\x8f\x88\x37\xc7\x08\x2f\x16\x5c\x69\x9f\xc6\xf1\xa1\xe6\x98\xc8\x74\x2b\xa0\x23\x58\xa1\xb0\x0e\x04\x2e\xe2\xa4\x22\xf4\x9a\x68\x35\x11\x07\xde\x1d\x2b\xb0\x23\x28\x6f\x8e\x11\xb8\xe8\xb4\xe2\x5b\x70\xe2\x80\x56\x08\xe2\xcd\x1e\x19\xc6\x4f\x43\x44\x30\x6b\x2b\xc4\x7b\xa5\xfa\x9b\xe3\x92\x5c\xd7\xb4\x50\x2b\xb2\xee\x66\x0d\xad\x94\xf2\x20\x3c\xb7\x19\x19\xaa\x3d\x2a\xa4\xad\x58\xad\x04\x93\x50\xfa\x3b\xa8\x77\x0d\xbb\x39\x58\xb0\xf8\x50\xe2\x9b\xb5\x64\xa8\xa1\x33\x8e\xf9\x06\xdc\x22\x2d\x5a\x92\x5f\x0e\x4c\xf7\x58\x20\x3e\xe7\x4c\x89\x59\x37\xb6\xe2\x5e\xe9\xf4\x05\x43\xfe\x09\x9a\xb3\xa6\x61\x37\xda\x70\x00\x9f\x61\x5b\xd3\x6b\x5a\x2b\xa6\x51\x08\x3b\x90\xf5\xd5\xe2\xbc\x9b\xbd\x20\x1b\x45\x06\x7d\x70\xfc\xd4\xaf\x01\xbf\x25\x15\xbb\x86\x43\x6b\x68\x23\x62\xb5\xa0\xaa\x9d\xee\x04\x9b\x12\xeb\x33\x8e\x5a\xdf\x9c\xb4\x27\xb4\x73\x01\x79\x9f\x98\x73\x0a\x39\x0c\x16\x04\x9c\x30\xca\xe8\x6d\xd1\xe9\xb3\x97\x10\x4a\x20\xc6\xe6\xe8\x1f\xaa\x13\x7a\x14\xd5\x80\xd3\x9a\x14\x0c\x59\xc5\x84\x06\x44\x34\xb4\x3a\x3a\x94\x2d\xe1\x50\x10\x6b\xad\x1c\x4e\xd1\xe5\x52\xcd\x22\xa5\x80\x59\x74\x4d\x71\x77\x8a\x46\x5e\x24\xc9\x50\xb7\xae\x0d\xe2\x94\xa3\x86\x55\xb8\xf1\x6d\xf5\x9c\xac\x66\x02\xc6\xbd\xc1\xcc\x21\x61\x9c\xdf\x58\xe2\x41\xc5\xdf\x2e\xd3\x68\xab\x78\x31\x2d\x37\xa7\x7f\x9a\xc6\x0e\x2a\x28\xb8\xdb\xff\xf3\xb4\xf4\x1e\xea\xde\x59\x49\xef\x85\x7b\x27\x1d\x3d\x86\xfa\x07\xaa\xe8\xb6\x5b\x26\x9c\x9f\x3a\x24\x95\x74\xb2\xe2\xe9\xbf\xda\xf6\x7f\xb5\xed\xff\x6a\xdb\x77\xd7\xb6\x07\xa4\xc3\x9b\x63\x81\xd6\x18\x4e\x33\xc3\x89\x7d\xc7\x2c\xc4\x36\x05\x01\xc6\xb3\x5a\x16\x78\xe1\x0e\xd8\xfc\x60\x86\xdb\x3a\x1a\xa3\x13\x36\x14\x25\xf0\x8a\xf8\x18\x89\xd2\x90\x6c\xdc\x5e\x9f\xb4\x05\x45\xed\x07\x26\xc9\x09\x96\xb8\x5f\x5f\xb3\x2d\x4a\x12\x02\x78\x3a\xd0\xd8\x76\x9c\x5e\x04\xe7\x58\xab\x0e\xcd\xc6\xc6\x2c\xd5\xac\x39\x39\x00\x3d\xc3\xa9\x80\x20\xba\x45\x07\x47\xf3\xbc\x6b\xd4\xc8\x53\xf4\x8a\x59\xc5\x14\x02\x54\x74\xb5\x6e\xa8\x0d\x37\x45\x63\x44\x52\x18\xbd\xfc\xfe\xe2\x12\x2d\xf1\x35\x89\xf6\x6f\x65\x8c\x18\xe2\xfc\xf0\xda\x59\x58\x79\x93\x20\x41\x22\x1a\x42\x91\xc2\x81\xf8\x24\xda\xe5\xa0\x7a\x99\x79\x58\x8f\xed\x49\x61\xd8\xba\x42\x2b\x22\xb1\xd2\x72\x10\x9e\x81\x43\x37\x34\x09\x62\xbb\xeb\x69\xd3\xa0\x25\x15\x92\x71\x98\xbd\x56\x3d\x5c\x77\x48\x3a\x61\x5c\x59\x7b\x84\xaf\x70\x0b\x8b\x97\x69\x4e\x42\xf2\xae\x32\xaa\xd3\x4b\xdb\xf5\x43\xce\x42\x9a\xc8\x73\x1a\xe8\x4f\xb1\x1b\x3b\x04\xda\x10\x99\xaa\x51\x85\x63\x4b\x1d\x4f\x9a\x7b\x98\xb3\x52\xec\x16\xd1\x73\x11\xce\x6b\x5c\x1a\x41\x01\xb0\x47\xd0\xa0\x76\x62\xf3\x21\x86\x11\x16\x12\xf3\x48\x33\x19\x52\x4c\x76\x03\x49\xe2\x00\xca\x56\x80\x59\x10\x6b\x08\x59\xd5\xee\x74\xdb\x00\x85\x90\x81\xda\xb7\x2e\x5c\xb0\x7d\x2d\xaf\x31\x2f\xc6\x0a\x4a\xd6\xa1\x6a\x80\xf0\x4a\xad\x7c\x3a\x98\x64\x5a\x0d\x08\x76\x0b\xe8\x44\xea\x24\xa5\x52\x04\x21\x9d\x5e\x2c\x34\xfc\xa7\x1a\x7c\x59\x5d\x35\x38\x7e\xc3\x09\xbe\xaa\xd9\x4d\xfb\x53\x82\x25\xc7\xd5\x95\x40\x74\xee\x28\x02\xe2\x05\x7c\x17\x41\xa8\x66\x70\x5d\x3d\x26\xe2\x1c\xd3\xfa\x10\x7d\xc3\x58\x93\x13\x83\xf1\x05\x6e\xe9\xaf\xfa\xb4\x64\x73\xef\x4f\xf5\xaa\x20\xd8\x74\x46\xc2\xc7\xbe\x02\x97\x67\xa3\x63\x5f\x88\xb3\x4e\x99\x6a\x6c\xa6\x4e\x3c\xc6\x61\x97\x38\x1d\x6e\x60\x07\xee\xea\xc2\xcd\xd1\x7f\xa3\x3d\x0b\xc7\xde\xb3\x10\xd8\xf9\x3e\xb5\xcf\x86\x69\x7b\x29\xb5\x93\xa7\x21\x1f\x3e\x3c\xac\xb0\x10\xac\xa2\x70\xb4\x3a\xfb\xf0\x24\xc8\x45\x79\x41\x36\xe8\xb9\xcb\x45\x49\x1c\x40\x60\x97\x1a\x45\xdb\x1d\x21\xda\x05\xe3\x94\x3c\xa9\x64\x78\xe1\x24\x08\x8e\x00\xd8\xa7\xd6\x1e\x50\xa7\x4e\x5b\x93\x5f\x0e\x51\x43\xda\x85\x5c\xa2\x03\xf4\xa8\x97\x00\xf5\xd5\x22\x71\x30\xb8\xa6\xb4\xa5\x72\x94\x59\x9b\x28\xfc\x84\x22\x2e\xfd\x29\x15\x57\xc9\xef\x24\x0d\xde\xa6\xbd\x0b\xf2\x23\x69\xd4\x1f\x22\x74\x9f\x7d\xc2\x04\x71\xc7\xdd\x5c\x50\x51\x9f\x8c\x96\xe3\xf0\xa4\xd2\xf4\x6a\xe6\x53\x6b\xe7\x1f\xd9\x33\x28\x6f\x02\x67\xcf\x11\x90\xb7\xf0\xa3\xa5\xac\x6a\x61\xff\x9f\x37\x33\x04\x46\x47\x96\xd4\x45\x48\x01\x95\x35\xb8\xe0\x8b\xbc\x43\x48\x71\x74\x14\x2d\x40\xde\x38\x92\x87\xe8\x08\xfd\xf8\x53\x5f\x1b\x90\x54\xe8\x08\xcd\x71\x23\x48\x89\x60\xc9\x22\x02\xe9\x92\xef\x0a\xdd\xdc\x12\xaa\xf6\xee\x8f\xbc\xa1\x59\x37\x74\x64\x57\xd0\x35\xf9\xfd\x5e\xb6\x71\x2a\x58\xb4\x31\x9a\x77\x2d\xaa\xd8\x7a\x33\x1a\x1f\x66\xda\x49\x38\x02\x27\xb2\xe3\x2d\x0c\xb4\x2b\x58\x41\xe4\x65\x40\xd9\xd1\xcf\xa8\x25\x37\x09\x9f\x8f\x93\x61\x4a\xcb\xe3\x7b\xed\x31\xf2\xdb\x70\xd5\x46\x3f\x9b\xb3\xc4\x9d\x58\x3b\x9e\x6b\x45\xf4\x52\x86\x48\x40\xef\x8d\x24\xb0\x8d\x43\x31\x38\xee\x06\x46\xb7\xac\x16\xfc\xb5\xc7\xb8\x6e\xeb\x8b\xd1\xfb\x6a\x48\x32\x14\x31\x88\x18\xf2\x7d\xb5\xcf\xaa\x9c\xbc\x78\x0e\x42\xff\x05\xd9\x8c\xae\x32\x19\x33\xc0\xd1\x57\x31\x3b\xa3\x38\xf1\xc9\xf1\xac\xb5\x55\x20\x2f\xdd\x38\x10\x94\xe5\x3f\x83\x94\xb7\x76\xe1\xcd\x89\xa7\xf5\x8a\xb6\x0f\x1e\x3c\xe8\xd3\xd4\x8f\x59\x3b\xa7\x8b\x00\x29\x7b\x66\x6a\x9f\x86\xd2\x35\x94\x42\x09\x79\x7b\xb8\x45\x4a\x6b\xe7\xdb\xf4\xbb\xb6\x5b\x29\x79\x24\xce\x5a\xd8\x69\xb9\x3a\x19\x76\x30\x14\x7b\x15\xf7\x19\xfd\xac\x87\xb5\x7d\x8b\x64\x4b\xc6\x41\x47\xba\x4f\x69\x9d\x06\x66\xb5\xab\x9e\x1c\xcf\xec\x22\x4a\x6d\xda\x73\x8a\x71\xe7\x3d\xe7\x1a\x77\xbe\xe5\xa4\x41\x79\xae\xaf\x16\xda\x1b\xb4\xc3\x7c\xad\x7b\x67\xcf\x99\xda\x6e\x7b\xce\xd1\x76\xdb\x6f\x76\x5e\x29\xb6\x6a\xb0\x9b\xea\x56\x86\x3d\xce\x35\x0f\x85\xe9\xa3\xff\xd9\x36\xd1\xac\xa3\x92\xff\xdd\x2a\x05\xd3\x37\xe1\xac\xbb\x3a\x08\x7c\xf7\xde\x89\x6b\xd3\x43\x27\x44\x4b\xa2\x94\x48\x9d\x1a\x1b\xe6\x8e\xad\xf1\x46\x19\x65\xb4\xad\x38\xc1\x82\x08\x44\xae\x09\xdf\x14\x32\xcf\x20\x0c\x73\x8d\x9b\x8e\x80\x50\xe9\x1a\x49\xd7\x0d\xf5\x42\x04\x12\xd8\x64\x98\xd9\x26\x19\x5a\x10\x19\x38\x15\x61\xa8\x5e\x02\x2b\x00\xba\xe7\x99\x41\xe6\x9c\xf0\x8a\xb4\x12\x2f\x48\x6e\x01\x16\x08\x3d\x04\x60\xf4\x33\x5a\x67\xd0\x8a\xf4\x1e\x82\x82\x8e\x02\x28\x25\xb2\x83\x7e\xdd\x23\xda\x26\x5b\x25\xc3\x64\x60\x2f\x4d\x06\x19\x70\xb2\x13\xf5\x76\x14\x90\xc9\x37\x7b\xc9\x99\xbe\x9f\x76\xdc\xc8\xf9\x97\x7b\x6d\x88\xed\x0a\xe4\x96\xd5\x1d\xfa\xb9\xff\xc8\xd5\xe7\x63\xe8\xa7\x36\x59\xbb\x74\xa5\x34\x29\xd7\xee\xd4\x49\x19\xc8\x4e\xb7\x61\x19\x9c\xf9\xa1\x21\xac\x4b\xe1\xf4\x06\x7f\x14\x1a\x29\x33\xd4\x9c\x43\x69\x66\xc1\xd8\x0f\xa0\x43\x8e\x21\x32\x35\x99\xeb\x40\x05\xe2\x64\x4e\x38\x69\x2b\xeb\xe8\xb2\x26\x0b\x36\x83\x0a\x89\x57\x6b\x9b\x3c\x6f\xba\x39\xc0\xb8\x69\xd0\xbc\x93\x90\xf9\x1f\xe3\x2a\xa6\xe8\x6c\x8e\xde\x19\x8f\xb7\x4e\xb6\x00\xc0\xef\x60\x8e\x6d\xe6\x4b\x97\x4b\xd2\x3a\xb8\x70\xab\x22\x99\x3c\x15\x26\x66\x31\xdb\x1c\xda\x86\xae\x43\xe2\x5b\x07\xad\x6f\x7e\x69\xd1\x47\x5f\xfa\x70\xc1\xdf\xd0\x28\x47\xea\x80\x93\xb9\xf9\xef\x38\x82\xdd\xe7\x9f\xbc\x84\x25\xec\x55\x80\xdc\x68\x36\xe4\xd4\x1f\x93\x48\x5d\x25\x75\x12\x9d\xc8\x83\x03\x66\x81\x8c\x9b\x2e\x59\xbf\x5e\xb8\x7e\x86\xbd\x90\x1d\xa9\xcb\xa0\xf7\x8f\x77\x14\x70\x70\x6b\x52\x76\x14\x1e\xb3\xd5\xba\x93\x8e\x9b\xc4\x0d\x95\xd5\x52\x67\x05\x28\xc4\x66\x58\x40\x76\x10\x62\xf3\xb9\x20\x52\xfb\x81\x3c\x9a\x86\x34\x0f\x7c\xb7\x69\xef\xc1\xb0\x20\xf2\x32\x64\x99\x67\x8c\x5b\xed\x31\xe7\x0f\xa7\x7a\xd8\xff\xf4\x5b\x7e\xd3\x84\xf1\xb4\x92\x3e\xcc\x7d\xb6\x5f\xc4\x82\xa5\x23\x24\x65\x8e\x49\x61\x59\x27\x45\x32\xa7\x32\x3e\xc1\xeb\xc8\xf1\x5d\xa1\x95\x1f\x43\xef\xab\xe3\x82\x2f\xa3\x30\xf7\x78\x0f\xf6\x8b\xc9\x6f\x59\x53\x6b\x75\xe4\x9d\xbb\x4e\x33\xd5\x5b\xeb\x9d\xdd\x74\xce\xdd\xe6\xc4\xd8\xac\x21\x2e\xc0\x10\x6e\x55\xeb\x07\xb4\x8e\x47\xdf\xdc\x5a\x40\x87\x46\x30\xef\x60\x1b\x19\x1d\x26\xbe\xf5\xe5\xa5\x9f\xb6\x9c\x5a\x26\xfb\x8c\xa7\x42\x70\x05\x87\x71\x12\x4e\x2a\xc6\x5d\x7a\xbc\x8b\x97\x00\x5b\x9b\xcc\xb7\x20\x4f\xdf\xcb\x5d\x70\xfa\xe9\xb1\xb4\xd4\xd6\x8a\xac\x1f\xee\x2d\x30\xa4\x28\x80\x85\xf9\xb8\x7d\x1c\x47\x71\x18\x47\x2d\x6d\x10\x9d\xeb\x43\xa6\xfd\x42\xa2\x39\xeb\x4c\xf0\xd0\xc5\xbc\x3d\xb9\x7c\x5c\x47\x59\x78\xda\x8e\x85\x6f\xd4\xa9\x29\x74\x04\x6c\xc1\xd9\x8d\x12\xf3\x35\x85\x03\x1f\xf3\x8d\x83\x56\x33\x22\x90\xa2\x1e\xb8\xbe\x75\xec\xbd\x61\xb8\x56\x78\x81\xb6\x09\x7b\x3e\xba\x83\x43\x85\x69\x91\x49\x67\xb3\xa7\x23\xff\xcc\xe8\x67\x3d\xc1\x7c\x17\x47\xcd\xfe\x11\xec\x0d\x3a\x07\xbe\xb1\x34\x3b\x71\x58\x83\x8f\xae\x99\x4f\xcd\x34\xa7\x66\x9a\xd3\x19\xe3\x9c\xdd\x3c\xf9\xfc\x83\x86\x9d\x80\xfe\xfd\xeb\x91\xa2\xfa\xa1\xee\x6b\xa1\x5e\xe8\xbe\xe7\x58\x2e\xd3\x7d\x99\x8c\xff\x96\xcc\xd1\x51\x01\x9b\x1f\xc3\x79\xfd\x94\xee\x6d\x2f\x91\x02\x38\x53\xed\xc2\x8a\x5a\xfe\x7e\x2f\xff\x9f\xe9\xd9\xd2\x26\xdd\xa8\x17\x58\x27\x1f\xac\x58\xad\xb9\x27\x76\x86\x99\xad\x6a\x22\x9f\x3e\xf8\x97\xb1\x46\x79\xbb\x82\xb6\x8e\xaf\x49\xba\x82\x2d\xb9\xf1\x3b\x37\xfa\x31\xa4\xdd\x9a\x93\xa2\x1f\x46\x87\x8a\x43\x69\x8b\x8e\x8e\xd0\x43\xf4\xdb\x6f\x51\xe3\x51\x30\x8a\xf3\xda\x7e\x7d\xd4\x0f\xe4\x00\x3d\x42\x9f\x7f\x1e\xc1\x28\x81\x78\x62\x40\xac\x39\x5b\x33\x41\xea\x10\xc6\x68\x3c\x3e\xcc\xd6\xed\xfe\xb1\x16\x28\x40\xe3\x4d\x1a\x48\x85\x1d\x6c\x4b\x04\xcc\x25\xb1\xb7\x79\x34\x70\xd3\x9a\x71\x77\xe5\x32\xbb\xea\x73\xbf\xb0\xe0\xb7\x65\x79\xdc\xc9\xe5\xe8\x65\x27\xb1\x24\x63\xf4\x89\xf8\xbf\xcc\xfc\x05\x4a\x97\xf6\x00\x16\x82\xc0\xad\xba\xf4\x07\xf5\x59\xa5\x4b\x75\x74\x54\x5a\xc1\x49\x4f\x67\x21\xc0\x80\xb2\xcb\xa5\x18\xd7\x23\x0d\xa7\xd5\x8a\x8a\x15\x96\xd5\xd2\xa7\xe2\x19\x90\xe2\x7e\x06\xb3\x6f\x57\x86\x88\x6e\x9b\x7f\x84\x7e\xf9\xb4\x2d\xee\x39\x9b\x2e\xf2\x36\x48\xa7\x1a\x8d\x6d\xa8\x27\x51\x6e\x75\xce\x95\xcd\xf3\x5a\x99\x2c\x68\x8c\x96\xe4\x17\xb5\xff\x55\x07\x36\x47\x8f\xbf\x52\xa7\xa1\x1a\x42\xd9\x60\x23\x3a\x25\xe8\xd1\xff\xa0\xd9\x46\x12\xa1\xb8\xf3\xd1\x57\x7f\x47\x33\x2a\xc5\x38\x02\xfd\x8e\x2b\xa1\x2f\xe9\xac\x31\xa8\xbc\x33\xa2\x48\x89\x1c\xa3\x75\x8d\xfe\xae\xa1\xf8\x9e\xa0\x56\x42\xf3\xef\xd8\x0d\xa8\x1c\x31\x90\x27\xba\xe7\xd7\xa3\xf1\x54\xb2\x6f\xe8\xe2\xb4\xad\x29\x6e\xbf\x51\x40\x46\x25\x28\xdf\xd2\xc5\xf2\xd6\x60\x20\x20\x1b\x90\x11\x1d\x19\x2a\x4e\x75\x0e\xf1\xb7\xe4\x97\x91\x1f\x66\x3c\xad\x58\x5b\x61\x39\xea\x69\xf3\x1d\xbb\x19\x7b\xd8\x45\x66\x0e\x07\x9b\x9a\x10\xe0\xd1\x11\x7a\xfc\xd5\xe4\x5e\x99\x5d\xdf\xee\xbf\x7e\x9e\x5b\xc7\xf7\xd2\x43\x22\x1c\x3f\x3d\x2d\x02\x5b\x65\xa2\x56\xfd\xec\x64\x52\xbc\x07\x98\x9d\xe4\x10\xac\xcd\x45\x6e\x6c\x30\xb8\x11\x0c\x28\x9d\xd3\xe7\xae\x8d\x3b\x6b\xda\x84\x53\x87\xe0\x1b\x7f\x8a\xff\xbf\x1f\x41\x49\xa8\xa0\xda\x4a\xa0\x9f\x82\x7a\xf7\x0e\xea\x56\x00\x29\x9d\x2a\x94\x0d\xa7\x78\x0b\xab\xd6\x81\xd4\x53\xbb\xcb\xfd\xb1\xcb\x70\xdf\x12\xcc\xe5\x8c\x60\xb9\xf3\x90\x4b\xdb\x63\xff\x61\x7b\x44\xf9\xbb\x40\x87\xdb\x32\x78\x41\xd0\xf7\x8c\xfd\xd6\xce\x46\x07\xc6\xc1\x31\x00\xb9\xd9\x82\x79\x43\xd4\xa9\x7f\x73\x4a\x1a\x63\x3b\x87\x43\x3a\x92\xc0\xaa\xf4\xdc\x60\x57\xb2\x4e\xc3\x86\x69\x81\x3f\x49\xab\x17\xfe\xef\x3e\x6b\x29\xd7\x2e\xd4\xc7\x2f\x4f\xc6\x4e\x6a\x17\xfa\xbf\xa6\xf1\xbd\x7e\x7d\x6c\xe8\x4b\x2e\x66\xb6\x7a\x62\x36\xf9\xae\x10\x56\xc8\xcf\x0c\x3f\x3a\x15\x3f\xe0\x86\xd6\x30\x54\xe4\x73\x1a\x99\xce\xdf\x91\xf6\x30\xc4\xb6\x60\x14\xf5\x3a\xef\xca\x07\x60\x7d\xb5\x80\xe1\xf6\x83\x6c\x9d\x77\x65\x98\xb0\x67\x01\x60\xb4\x26\xe3\x43\x74\xff\x15\xb9\x31\xb6\x07\x7c\xe5\x04\x57\x7a\x2d\x16\x89\x6e\xa5\x98\xc6\x11\xaf\xad\x21\xcd\x4e\xaf\x09\x84\x03\xee\x27\x47\xed\xbd\x9e\x15\x2d\xcd\xa4\x10\x6b\x8a\x51\x2d\x19\xee\x65\x1e\x34\xd4\x0d\xb8\x30\xfc\xe6\x3f\x99\x0f\x93\xa9\xfe\x19\xfc\xb5\x33\x40\x68\xa4\x18\x70\x1f\xe6\x6b\xc9\xcd\x1f\xc2\x80\x49\x24\x30\xa1\xeb\x1e\xbc\x68\xc9\x16\x30\xa3\xff\xfb\x3f\x99\x15\x3f\x9d\x48\x8c\x48\xf8\xe7\xb2\x63\xc8\x8a\x8a\x35\x3f\x15\x3b\xba\x70\x6d\x34\xf7\x3d\xd8\x30\x73\xac\x6b\x56\xd4\xff\x3f\xcc\xfd\xee\x77\xe1\xc8\x63\x6f\xe2\xbb\x21\xa6\xa1\x2f\xf5\xfe\xdb\x24\x2e\x62\xc9\x6c\x4c\x6b\x5f\x83\x28\x25\x60\x79\xf0\xd4\x86\x6e\x18\xae\x9f\x64\x53\xb2\xd6\xf2\x03\xd3\xec\xc1\xdc\x02\x88\x26\xbe\xe3\x18\xca\x28\x1d\xb9\xe9\x4d\x90\x64\xbb\x43\xde\xba\x5a\x7d\xe1\x6b\x72\xf3\x6a\x7b\x04\xfb\xdf\x4d\x78\xdc\x86\xed\xf3\xd9\xc7\x73\xdf\x83\x96\xcf\xbe\x7b\xfd\xcf\x8b\xfe\x08\xb5\xda\x50\x5b\x83\xb6\xff\x6e\x24\x45\xda\x23\x16\x84\x51\x9f\x1c\xa1\x47\xd3\x87\x46\x9b\xd3\x19\x03\x7e\x53\xc9\x1b\x42\x5a\xf4\x2b\xe1\x0c\x04\x15\x6b\xc9\x1d\x57\x68\x30\xea\x1f\x21\x56\x5c\xa8\x07\x0f\xd0\x69\x0b\x41\x06\xc6\x51\x4d\x05\xfc\x17\x77\x92\xad\xb0\xa4\x95\x4b\x93\xa8\x70\x53\x75\x8d\x2d\x1a\xd7\xd6\x68\x8d\x37\x70\x51\x6e\xab\xfa\x67\x20\x99\xf4\x36\x3d\x56\x3d\xfa\x19\x11\xfd\xbf\x72\x76\xdb\x16\x79\xa2\xba\x14\x45\x48\xcf\x70\x7b\x09\x12\x83\x58\x41\x8c\x6c\x85\xee\x85\x62\x2f\x59\xc8\x8a\xca\xf0\xd2\xec\xe9\x35\x69\xe5\xa8\xe4\xbd\x8f\x4f\xd3\x2d\xb9\xc7\xbb\x24\x17\x0f\xa6\x27\x6f\xcd\xcd\xe8\x69\x9d\xe5\x69\xc4\xed\xe0\x8e\x6d\x76\x19\xc7\x7e\xb6\xdd\xbb\x0c\xdb\x96\x6f\x41\x86\x2d\xb6\xdd\x7a\x43\xfd\x37\xd3\x0a\x48\xed\x79\x01\x2c\x84\xd0\x7f\x0b\xc9\x7e\xb2\x28\x65\xc8\x32\xc8\x87\xd2\x6c\xa8\xa1\xbf\x0a\xa7\xb9\x49\x96\x66\x2c\x21\xe3\xec\x83\xbc\xfb\x2d\xf7\x8c\xf3\x3c\xe6\xb9\xb9\x33\x71\x76\x82\x68\x6b\x17\xb1\x80\x32\x40\x9f\xe2\xf5\x9a\xb4\xf5\x68\x60\x88\x91\x06\x71\x68\x40\x8d\x53\x37\x70\x86\xb6\xd5\x31\xfd\x85\xcb\x30\x31\x1c\x7d\xd9\xcb\xae\xd1\x4f\x2e\xb1\x26\xbc\x2d\x90\x0e\xf1\xd5\x2d\x86\x18\x7d\x85\xfe\x56\x18\x67\x3c\x38\xd0\xe3\xdb\x0c\xf4\x78\x60\xa0\x8c\x61\x94\x6c\x89\x6f\xe4\x43\x82\x4c\x2c\x04\xd2\x36\x79\xd4\xc0\xdd\x8f\x08\xa5\x52\xae\xdb\xfb\x5b\xec\xc0\x06\x79\x83\xe0\xde\xb9\x9b\x6e\xa9\x95\xbb\x0a\x6b\x04\x54\xde\xa6\x24\x27\xf2\xef\xf2\x7e\xb1\xcc\x08\xff\xca\xdb\x96\xee\xf8\xe6\x6c\xd8\xdf\xef\xab\x42\xbf\xaf\x76\xe8\xf7\xb8\xd0\xef\xf1\x40\xbf\x54\xca\xc5\x7f\xf7\xb5\x77\x12\x2f\xfa\xb3\x97\xd2\xa1\xf0\xcb\xbe\xca\x7b\x85\x02\xcf\xff\x3f\x11\x79\x65\xed\xe3\x01\x3a\x27\x7c\xce\xf8\x4a\x20\x81\x5b\x25\xdf\xaa\x25\xa9\xae\x44\x50\xc2\x8f\x5d\xd3\xda\x05\xfd\xa2\xf4\x2e\x28\xa7\x03\xf5\xf8\x48\x2b\x3a\xe3\xd6\xd5\x97\x45\x69\xbb\xf8\x5f\xd1\x30\x07\xe8\x12\x3c\xbf\x50\x17\xf5\x5a\x19\xcd\xc6\x97\x1e\x43\x4c\xfa\x3c\x75\x45\x10\x6d\x4d\x56\xa8\x2e\x51\x0b\xa8\x4d\x60\xaf\xca\xea\x52\x0f\xe8\x6b\xf4\x30\x29\x0f\x37\x8f\x73\x39\x6c\xa1\x10\x8b\x40\xfc\x03\x54\xbf\xcd\xd5\xcd\xf8\xda\xf6\xfb\x0a\x5d\x33\x69\xed\xdc\xfa\x6a\xe1\xea\x11\x92\x56\x51\xa9\x26\x4a\x18\x43\x7c\xa3\x2d\xd4\x1f\x49\x2e\xb6\xa7\xda\x49\x78\x2f\xf9\x9c\x93\x63\x58\x8a\xd1\x27\xd7\x3d\x52\x2d\x61\x5f\x9d\x7f\x37\x2f\x48\x8c\xe7\x81\x9b\xd5\x97\x8f\x26\x77\xf5\xc3\x05\x4e\x0e\x92\x83\x2f\x84\xbf\xd5\xe7\xfe\x59\xab\xd9\xc0\x4b\xc7\x04\x47\x5d\x3c\xc4\xde\x7a\x8a\xb8\x65\xd0\x6a\x80\x9a\x24\xc1\x6e\x0a\x6a\x79\x8a\x25\xeb\x9a\x3a\x67\xdc\x5b\x9d\xff\x3a\x56\x57\x8e\x3b\xef\xa1\x0e\x4c\x75\x05\xe8\xe6\x9f\x0e\x9b\x09\x2a\xc2\xf4\xf1\x3d\x1c\xee\xcb\x78\x4f\x2a\xe4\x63\xad\x48\x9b\x5f\xd9\x94\xb7\x87\xa7\xa3\x3f\xe9\xfc\xd6\x56\x66\x81\x74\x90\x67\x42\xdb\x8a\xa0\x1b\x7b\xaf\x5f\x10\x19\x5f\xc6\x9e\xa8\xdf\x6a\x06\xa9\x43\x2d\x54\x16\x61\x45\x38\xc0\x3f\xe1\xfd\x6d\x84\x1b\xc1\xa6\xe8\x9f\x44\x1b\xb6\xa6\xaf\xce\x7b\x1c\xb8\xc9\x11\x2e\x9d\x9e\xa6\xce\x80\xb0\x6a\x49\xbd\xa2\xed\x68\x3c\x25\x6d\x9d\xb8\x64\x13\xba\x21\xd2\x88\xd2\x86\x35\xc5\x4e\x2a\x33\x59\x57\xdd\x4b\xfb\x8e\xb7\xa2\xe1\xd4\x6e\x8b\x08\xc0\xba\x90\x6c\xfd\x03\x48\xc4\x04\x8d\x12\x88\x93\x17\xcf\xa3\xce\xa7\x6d\x7d\xf2\xe2\xf9\x40\xb2\x50\x24\x7b\x4f\x5b\x93\xbf\x57\xd9\xc2\x0c\x08\x57\x92\x5e\x93\xa0\xb8\x13\xac\x85\x30\xc5\x92\x59\x1b\x14\x58\x72\x07\xd9\xc0\x81\x03\x97\x0c\x56\x44\x62\x64\xf2\x2b\x8c\x68\x37\x15\xac\xc2\x0c\xe8\x62\x6d\x2c\x53\x2d\x6a\xde\xb5\x5a\x83\xac\xe9\x7c\x4e\xb8\x88\x4b\x3e\x98\x64\x52\xe8\x7e\x1c\xf0\x31\x9a\x11\x5d\x15\x9c\x9a\xfb\x10\xa0\x55\x05\x61\xe6\x30\x65\xda\x14\x11\xd7\x5e\x01\x77\x9d\x62\x8a\xf2\xe9\x38\x64\x6c\x85\x2c\x93\xcb\x0d\x75\x37\xa0\x6a\x4e\xa9\x20\x16\x20\xa9\xd1\x7a\x86\x9b\x66\x86\xab\x2b\xf4\x52\xed\xf3\xd1\xe9\xb3\x97\xe3\xad\x27\xd8\x2b\x13\xae\xfa\xe4\x67\xd7\xc7\x35\x3a\x77\xb2\x84\xff\x08\x03\x75\xeb\x91\x1c\x53\x51\xe7\xc4\x6e\xd1\x1d\x7a\x8f\xb9\xf4\x68\x9e\x78\x92\x5b\x93\xc0\x23\x64\xfe\x33\xce\xec\xac\x24\x21\xc5\x6f\xfd\x72\xe2\x4f\x6e\x74\x0e\x5c\xeb\xb8\x65\x00\x65\x60\x88\xe0\xd2\xc7\xde\xea\x46\x7e\xd8\x1f\x43\x4c\x04\x64\x4e\x9c\xab\x58\x76\x13\xc4\x55\xdf\xc0\x45\x29\x72\x5c\xcd\x16\x7a\xe9\x53\xd4\xe2\x94\xc5\x0c\x8b\x33\x2b\x34\x0a\x32\x03\xae\x74\x18\x2c\xd4\xd9\xa3\xcb\xb5\xf9\x92\xf2\x31\x87\x5b\x0b\xd4\x93\xa6\x9c\x58\x98\x6c\x66\xb8\xba\xdf\x6f\xe6\x15\x79\xb1\xbc\xd5\x8b\xa6\xe8\x16\xae\x4d\xe8\xa1\x4b\xa2\x58\x63\xc4\xba\x95\xad\x48\x57\x74\xb8\xe1\x4a\xac\xc3\x23\x40\xef\x9c\x28\x7d\xda\xd6\x17\xee\x36\xf0\x3b\x34\x23\x0d\x8b\x6f\xad\xc7\x25\x02\x1e\x4e\x1f\x26\xd2\xa1\x50\x1e\xa0\x4f\x80\x14\x7e\x73\x17\xfe\xbd\x8c\x18\xe7\xfc\x76\x01\x89\xcc\x86\x7f\x7c\xee\x26\x9c\x5a\x50\x62\xcb\x4e\xd3\xdd\x59\x80\xaa\x94\xe1\x27\x83\xe9\x79\x66\xcd\xd9\x82\x13\x21\xa0\x60\x11\x67\xdd\x62\x19\xd4\x33\x9b\xf6\xf8\x72\xf3\x94\xda\x94\x81\x0b\xf3\x38\x4e\x0f\xb0\x2d\x25\xe8\x51\x90\x11\x6f\x35\x18\x73\x83\x30\x7f\x3a\xa6\xcf\x91\x5f\x5c\xe9\x54\x20\x39\x7f\x8e\x27\x0b\xef\x75\xea\xe8\xe2\x08\x3b\x78\x96\xf7\xdb\x4f\x68\xa7\x3d\x83\xf6\xdc\x19\x68\xeb\x3e\x43\x83\xfe\xe8\xdd\xa3\xd5\x25\x2f\xf5\x2e\x49\x14\xe9\x59\xf3\xe7\x38\xa4\xfe\xba\x8e\x9e\x5c\x5c\x80\x81\x82\xfd\xf9\xe4\x5f\x8c\x8a\xd4\xcc\xd8\x57\x51\x2a\x25\x12\xec\x77\x05\xd3\xa9\x79\xbd\xde\xa5\x5d\x74\x76\x4e\x8c\xd6\x4e\xe5\x2d\xd4\xf5\x50\xbf\xa5\xad\xd4\x6e\x98\xa8\xf6\x6a\x36\xaf\xd0\xeb\x13\x97\xb0\xdd\x44\xf0\xc3\xfa\xb2\xca\x88\x13\xe6\xf2\x88\xaf\x69\xbb\xd2\xe9\xef\x10\xc2\xac\xc8\xde\xea\xbf\xa5\x5f\xa8\xfa\xbb\xdb\x2a\xb4\xff\x38\x07\xc7\x9b\x32\x32\x63\xd0\xae\xab\x37\x0c\xac\xa4\xb4\xf2\x15\x5f\x33\x0a\xee\xa9\x9a\x75\xb3\x06\xa4\xa7\x7e\xf3\x2c\x16\xbf\x50\xaf\x2f\xa9\x83\xf9\x29\x0c\x24\x6b\x93\x44\x83\xfc\x11\x06\x4a\x68\x78\xfd\xd7\x48\xf9\x44\x46\xca\xbf\x85\x5d\xf2\xd7\x31\x2b\x42\xb0\xd9\x18\xa1\xc7\x2b\x30\x09\x42\x33\x2b\xb9\x94\x36\x98\x91\x34\xfe\x14\x36\x8c\xd9\xdd\xc9\x65\x22\x10\x12\x56\xdf\x26\x43\x8a\xa7\xeb\x32\xfc\x8e\x8f\x25\x09\x09\xd1\x0c\x95\xab\x3d\xec\x26\x54\x36\x77\x0a\x14\x2b\x68\x5d\x60\xef\x94\x16\xe6\x33\x28\xb7\x75\x5b\x6d\x6e\xbb\x76\xb6\xaf\xbe\xb7\xc5\x66\x41\xbb\xd9\x2d\x68\x8b\xed\x82\xfe\xb3\xec\x17\xb2\xc5\x78\xf9\x94\xe6\xc1\x6e\xfc\xf7\x5f\xdb\xe0\x93\xd9\x06\xfb\xec\xea\xbf\xae\xa5\x60\xff\xf7\x27\x38\xda\x83\xbd\x3f\x31\x77\x4c\x21\x2a\x71\x6a\xf4\x5c\x5d\x1a\x5d\x4c\xe0\xa9\x95\x77\x41\x81\xc3\x42\x76\xed\x97\xe8\xd1\xbb\x2d\x96\x01\x68\x99\x26\xa7\xd0\x28\x96\x07\x48\x40\x00\xc8\x84\x88\xc3\x62\xe9\x54\x68\x64\x74\x00\xd0\x4c\x4a\x97\x6e\xa7\x71\xdd\xd2\x19\x63\x52\x48\x8e\xd7\x6b\x5b\xac\x53\x53\xc4\x84\xd4\xcc\x2b\x0f\xa2\xc5\x6b\xb1\x64\x72\x62\xca\x41\xeb\x1f\xe9\xaf\x44\x04\x2f\x7b\x3a\x02\x9a\xea\xcb\xeb\xb4\x04\x92\x39\x15\x21\xef\x5f\x4d\x61\x02\x75\xb4\xa1\x54\x8a\x51\xbd\xb1\x74\x43\x0d\x69\xc0\x96\xcc\xf1\x51\x38\x70\x17\x6e\xdf\x54\xb0\x4f\xad\x50\xdf\xb6\x06\xe7\x2d\x4a\x70\x96\xd4\x60\xbf\x71\x76\x89\x93\xf7\xdc\x0d\x1f\x14\xf6\x3d\x11\x6b\x7b\x0b\x58\xbf\x77\x8c\x9d\x82\x74\x1a\xf9\x7a\x81\x0f\x9c\x2d\x08\x97\x83\x23\x75\xca\xb6\xf3\x35\x15\xf2\xe2\x13\x77\xbf\xf4\xf0\xff\x4e\xb8\xff\x63\x47\xa6\x3f\x52\x60\xfa\x2f\x14\x97\xfe\x6b\x84\xa5\xd3\x00\x43\x6a\x31\x05\xf5\x13\x86\x9d\xd1\xc6\xc7\xf1\x71\x23\x40\xf6\xe3\xac\x99\x9e\x93\xb2\x7c\x4b\x68\x5b\xec\xc6\xb5\xdb\x49\xe7\x44\x3b\xe9\x91\xe8\x16\xda\x29\xb2\xb1\x1d\xfa\x31\x62\x39\xf6\x53\x2a\xfb\x3c\x7a\x38\x7d\x58\x70\xc8\xa3\xf2\xf1\x93\x7d\xd5\xd3\x33\x38\x80\xfc\xff\x7b\x2f\x7a\x6d\x31\xa5\xee\x14\x7d\xb9\x65\xf0\xe5\x0f\x89\xbd\xfc\xc1\x1e\x6b\x14\x57\x14\x88\xef\x8a\x53\xa1\x0f\x45\xb5\xc0\xae\xea\x92\x53\x07\xa1\x98\xbf\x56\x2f\x5d\x7f\xc9\x4c\x91\xa6\x08\x45\x9d\xed\x68\x74\x38\x57\x41\xc5\x8b\x3c\x53\x4a\x60\x0e\x62\xb9\x70\xdf\xdd\x5d\x3e\x77\x77\xf4\x93\x9a\x19\xcf\xac\xba\xeb\xd0\xc6\x80\xb2\xae\x71\xa4\x1f\xed\x91\x0c\xe1\xfa\x1a\x5b\xb5\x37\xd7\x31\xa1\xd6\x94\x46\xde\x3c\x5f\x64\x6b\xb4\xbd\xef\x28\xd7\x4a\x7d\xad\x1f\x27\x0f\x5e\x12\x58\x91\x72\x5d\x4d\xa5\x6e\x9a\xf1\xbe\x51\xe3\x8f\x32\x0f\x21\x54\x50\x1b\x3c\x3e\x0b\x0a\x15\xbc\xdf\xde\x77\xa4\x96\x4f\xff\xc0\x85\x06\x98\xa0\x23\xb4\x20\xf2\x38\xf8\xa6\x70\x4e\xa0\x4f\xe4\x7b\xfb\xac\x4f\xac\x9d\xe3\x8d\xdb\x8c\x70\x44\xd3\x79\xe1\x32\x90\xd2\x0a\xcc\x2d\x99\xed\xf2\x11\xc0\xe0\x4a\x76\xb8\x69\x36\x68\x09\x97\x05\x20\x58\x81\xe8\x6a\x45\x6a\x8a\x25\x51\x0d\x5c\x91\x1f\x62\xe2\x11\x8b\xf0\x35\xc7\x04\xba\x8d\x56\xbc\x5b\xe3\x8d\xd9\xc3\xcf\x18\x3f\x37\x15\x80\xcc\xfe\x7a\x17\x8c\xbf\x8e\xe6\x55\x91\x22\xe0\x48\x8d\xc2\x3d\x17\x97\x4a\x37\x37\xec\x47\x57\x40\x1a\x40\xa9\xd8\xf3\xf7\x3e\x64\x42\x76\x99\x82\x59\xf8\xf5\x51\x91\x15\xd2\xa2\xf7\x5b\x30\xdc\xa6\x27\xf5\x23\x96\x32\xfe\xe9\xf9\xeb\xe3\x6f\x2f\x4e\x2f\xbf\x3f\x2f\x33\xbd\xa1\xa8\x37\x72\x74\xea\xf2\xb1\x7d\x77\x6c\x34\x46\x9f\x7f\x8e\x80\x59\x4f\x5e\x3c\x9f\xd6\x57\xd1\x4f\x9f\x1d\xa1\x96\x66\x57\xc3\xb2\xe9\xf4\xca\xf4\xc1\x5e\x20\x8c\xcd\xa6\x58\xad\xa8\xbc\x1b\x0d\x8e\x5f\xbf\x7c\x79\x76\xf9\x97\xdd\xf9\x7b\x31\x1b\xd9\x99\xcb\xf6\xe3\xfa\x9a\xcc\x71\xd7\xc8\x32\x11\x75\x1d\x9e\x7b\x65\x08\x89\xf7\xe8\x18\x37\x8d\x08\x8a\xca\xbc\x73\x8e\x18\x31\x60\x6d\x24\x55\xbe\x5d\x96\x07\x28\x02\x32\x79\x94\xbf\xbf\x22\x38\xdc\xf1\xcb\x37\xd8\x1f\x76\x89\x95\x68\x9c\xa3\x99\xdd\xf2\x76\xb0\xe2\x3f\x9b\x26\xf2\xca\xe4\x80\x87\xac\x57\x92\x23\x99\x93\xfa\x13\x15\xd2\x42\x1f\x23\xe9\x2f\x51\xcd\xe0\xbf\xb0\xbe\xa3\x64\xda\x87\x29\x1d\x26\x03\x99\x1c\xbd\x5e\xcd\x1d\xf9\xb2\x9f\xcf\x86\x79\xf2\x7c\x90\x27\x73\x79\xf7\x91\x59\x32\x38\x0b\x12\x76\x0c\x91\x34\xac\x18\x7c\xb5\xe3\xf5\xe7\x01\x79\x7d\x17\x32\x9b\x97\xb1\xb7\xd1\xd9\xf0\x39\x7a\x1a\xca\x0a\xfd\xcc\x65\x9e\xc1\x58\x10\x07\x46\x12\x7e\x0a\x92\x9b\xa3\x27\xa1\xb9\x79\xb9\x37\xa4\xb6\x9e\xea\x3e\xe4\xde\x9e\x5d\xf3\x2a\x48\x4a\x31\xda\x7e\x50\x92\xd1\x15\x27\x73\x8f\x0a\xa3\x34\xef\x4e\x0c\xdb\x7e\x66\x19\x18\x87\x50\x1a\x59\xc1\x5b\x05\x91\xab\xa3\x97\xea\x7d\x6a\x41\xef\x4d\xf3\xad\x7a\xc4\x40\x79\x83\x21\xa5\xaf\x77\xc0\x9d\x34\xc5\xbc\xd8\xba\x27\x9d\x66\x3e\xc9\xae\xe0\x2d\xb5\xc8\x12\xce\x2d\xe8\x20\x6d\x51\x38\xc7\xcf\xb0\xfd\x5c\x7c\x1f\xa8\x9f\xac\x0e\xe7\xe0\xb5\x3c\x5d\xa8\xcc\xd4\xd7\x2c\x79\xed\xa2\x4a\x04\x3b\x7a\x04\x9c\x81\xa9\x9f\x6b\xd4\x9b\x3a\x84\x03\xf3\xd4\x21\x5e\x6c\x53\x8f\xd0\xcc\x3e\xca\x63\x1d\xce\x69\xcd\xd1\x41\xe7\x43\xe3\x73\x98\x2e\xba\xd5\xca\x54\x0d\x0d\xa6\xe2\xf9\x27\xe7\x9c\x40\x93\x0b\x94\x38\xa0\x49\xa6\xbf\xf5\x55\x62\x0d\x54\xb7\x04\xd4\x34\x7b\xe2\x28\x46\x74\xea\x66\x3e\x1e\x02\x11\xbd\xcf\x94\x40\x08\xfd\x53\x1e\x88\x56\xa4\x33\xcf\x4f\x02\x3b\x58\xe2\x5b\x59\x58\x11\x5f\x48\xf7\xc0\xa2\x79\x64\x83\xcd\xf5\xcb\x1b\xde\x80\x8c\xd6\xef\x0b\x91\x3e\xbb\x61\x40\x42\x4b\x5f\xd4\xc2\xbc\x0b\xae\xc5\x8c\xde\x52\xe6\x0d\xbb\x25\xbe\x26\xed\x17\xd2\xf8\x19\x68\x2b\x49\xdd\xc3\x95\x1b\x22\x33\xfd\xc4\xb4\x38\xd7\xfb\xec\xa8\x74\x2b\xce\x72\xc0\xa5\x1a\x54\x37\x1c\xe5\x8a\xce\x9c\x10\xbd\xba\x06\xc8\x33\x42\x84\xea\xfa\x8c\x90\x6f\x70\x83\x5b\xd0\x6e\xc2\x4e\xd7\x98\xc3\xf3\xff\xb0\xac\xba\xe8\xca\x53\x45\x23\x87\xca\xc3\xe9\xc3\x34\x8a\xe0\x07\xf1\xca\xbf\x69\x9f\x9f\x53\x83\xc0\x9f\xc1\x8f\x57\xa4\xd5\xac\xa3\x9b\xec\xe6\x8d\xdf\x1f\x2e\xfa\x12\x8d\x62\x6c\x0f\xfc\x54\xb6\x39\xd1\xbf\x63\x58\x2b\x04\xfa\x11\x4d\xc5\x50\x33\xd6\x76\xc2\x32\x01\xe4\xf9\x85\x05\x9d\xc3\x55\x81\x96\x97\xba\x61\x62\x95\x7d\xe3\x7f\x2a\xf9\x17\xbb\x99\xae\xf4\x98\x8f\x95\xb1\x78\xf0\x8e\x0c\x27\xee\xeb\x74\xed\x42\x54\x9e\x0c\x11\x71\x4f\x8a\x0f\xfc\x78\x10\x0e\xba\x2d\x56\x11\x6d\xe1\xdd\xfc\xb6\xa1\x01\xb2\x0b\x3e\x7f\xdb\x16\xca\x1b\x7c\xde\x24\x5b\x22\xf7\x76\xcf\x8d\x7f\x25\x28\x32\xa2\x5c\xb9\x4e\x28\x88\x63\x8b\x53\x6b\x6d\x2b\x2b\x50\x8c\xac\xc0\x2c\xc6\xae\x44\x41\x08\xc4\x53\xcf\x45\x82\xfd\x7d\xb7\x23\xa5\xa7\x32\x77\xc6\x0c\xff\xf8\x07\x5a\xe3\x96\x56\x23\x17\xec\x0d\xb2\x77\xf3\x05\x43\x33\x52\x75\x58\x67\x0e\x2f\xb1\x70\x92\xd2\x91\x63\x43\xe4\xfd\x71\xa2\xf6\xc6\x78\x67\x87\xcf\xd0\xc4\x7b\xce\x9c\x14\xe6\x80\x02\x75\x8e\x37\x5e\xeb\xb4\x8f\xbe\xc3\x55\x62\xb8\x51\xef\x1e\xc5\xb5\xae\xf2\xb8\xb0\x78\xaf\x62\xb4\xa3\x0a\x68\xea\x7e\xaf\xc3\x06\xb7\xd6\x09\xd0\x01\x7a\x54\x28\x2c\xfe\x59\x11\x7a\xf4\x5a\x60\x2e\x04\x40\x69\x73\x9a\x4d\xe1\x9c\x32\xc9\x63\xa1\x5e\x30\x8a\xe3\x56\xe5\x61\xc3\x36\x13\xaf\x85\xf5\x35\x8f\x5e\x54\xcc\xd9\xb3\x7f\x0b\xf9\x05\x18\xcd\xcd\x1b\x27\x2e\x8b\xa4\x3c\x94\xab\xda\x1c\x6b\x3b\x87\x96\x0e\xf9\xe8\x65\x38\xc9\xeb\x8d\x92\x77\xa4\x07\xf1\x12\xe3\x16\x20\x0e\x3f\x5e\x10\x3e\x76\xc8\xae\x89\x70\xf2\xc8\x9c\x22\xb6\xc8\xd8\xac\xab\xae\x88\xcd\x34\x8b\x6c\x5a\x91\xe4\x3e\x96\x02\xef\xc5\x57\x1b\x63\xab\x30\x7e\xb4\x1c\x9d\xb6\x75\x10\x37\x37\x81\x9b\x0d\x44\x0b\x84\xd4\x45\x3a\xe2\x98\x41\xe6\x1e\xa6\xed\xb9\x49\x9d\x2c\x25\x72\xf7\x84\xdb\x45\x29\xd2\xfe\x7b\x3a\x88\xf1\x2f\x1b\x25\xb3\x1f\x7c\x10\x8a\x27\x69\x14\x3e\x38\xd5\xfa\xd9\x70\xc5\xae\x89\x39\xf6\x6d\x08\xd4\xb1\xe1\xa0\x20\x8e\x61\x17\x6c\xff\x7e\x07\x60\xb4\x0c\xdf\xfb\x7b\x27\x71\x39\xfe\xfe\x01\xfc\xab\x37\x03\x18\xc6\xf6\xdd\x47\x14\x60\x9f\x45\x80\x0b\x49\x07\x7b\x1b\x4a\x0e\xa0\xaf\x76\xa4\x03\xba\x49\xc2\x59\xb4\x2e\x5b\x53\x5e\x83\x7a\x46\x29\x92\xd3\x9e\x5c\x04\x11\xf9\x47\x5d\x92\x41\xa9\x7b\x6f\xd6\x41\x50\x20\x29\xeb\x57\x4c\x6d\xd0\x9a\xb1\xc4\x57\xa4\x3e\xec\x31\x38\x2e\x7d\x93\xf4\xd2\x1f\xf4\x56\xbd\xb4\x7e\x75\xd8\xab\x72\xef\x20\xed\x73\xc0\xee\xac\xd8\xd5\x10\xf2\x30\xc6\xa9\xf0\x73\x59\xa2\x22\xf1\xce\xe9\x34\xc8\xa6\x89\x1f\x0d\x31\x67\xfc\x7a\xcd\xd9\x75\x12\xde\x0e\x65\x5c\xc1\xab\xed\x13\xef\x02\xb9\x11\x3e\x85\xb5\x57\x3a\x52\xf8\xd0\x8c\x17\xc6\xde\xf9\x6c\x9c\x8b\x90\x0a\xb6\xa2\x51\x01\x06\xe1\x5f\xbd\x73\x30\x20\xd2\xba\xc4\x89\x17\xae\xa6\x9c\x54\xd2\x05\x56\xdf\x65\xc8\xbc\x1b\x16\xf2\x43\xbe\x70\x77\x19\xa7\x98\x88\x99\x9e\x0a\xfe\xd5\x2b\xfd\x0a\x7f\x3b\x67\x7c\xe5\x1e\x8d\xb3\xab\x64\x97\x45\xaf\x92\xeb\x0f\x0f\x8f\x9a\xaa\x31\x4f\x39\xc7\x9b\x9d\x4a\xd9\xe5\xc3\xeb\xa1\x4f\x40\xa7\x03\x1f\xa9\x7f\x06\x55\xb3\x85\x52\x6c\xdf\x1c\x47\xe3\xba\x26\xd9\xc4\xf7\x18\x25\x7e\xff\x5e\x8d\x12\xa6\x94\xe9\x61\x4c\x9b\x1d\x86\x79\x4e\x24\xb2\x73\x05\x60\x96\x7c\x31\xd5\x4c\x4b\xfb\xa3\x9f\x2b\x24\x57\xc4\x38\x85\x9d\x24\x0b\x32\x83\xfb\xd2\xe0\xd4\xb0\x14\x92\x36\xd3\xd8\xd0\x87\xcc\x42\xb1\x4b\x57\x56\x28\xb3\x72\x40\xb4\x4e\x0c\xe5\x68\xe9\x6d\x9d\x41\xfb\xe5\x38\x4b\x82\xb4\xbf\x4c\x39\x6b\xc0\x57\xae\x46\x78\xcb\x1a\x32\x75\x35\x6c\xa7\x1c\xdf\xfc\x00\x25\x59\x0b\x69\x1d\xc9\x82\xa7\x03\x4e\x69\xbd\xad\x40\xd0\x10\x06\x86\xec\xc3\x18\xc4\xbc\xb0\x03\x06\x05\x5c\x1e\x3c\x40\xaf\xf9\x02\xb7\x76\x11\x53\x5e\xa7\xad\x64\xee\xf5\xdf\xd8\x47\x59\x78\x57\x54\x9f\x8d\x90\x69\x58\xa8\x04\x6c\x79\x36\xa5\x5d\xec\xd7\xd5\x87\xef\x9b\x63\xa4\xf5\x34\x9f\x7c\x08\xc6\x38\x25\x75\x8e\xce\xb0\xc6\xa7\x0e\x5b\xad\xf2\x55\xfd\x19\x70\x25\x1c\x94\x62\x1a\xbe\xb1\x57\xdc\x0a\x65\x75\x10\x46\x55\x0a\x61\x30\xe9\x78\xb9\x12\x15\xa9\x27\x76\x7f\x7b\x6d\x06\x4a\x6c\x44\xfb\x73\x97\x84\xcf\x07\x0f\x42\xad\x3c\xbe\x15\x37\x23\x68\x4e\xe1\xc0\xa0\x2d\x6a\x70\x98\xbb\x16\x7a\x18\x86\xb3\x40\xab\x1d\xd4\xdb\x72\x86\xe1\xd0\x67\xd7\x84\xd0\x41\x18\x3e\x59\x74\x30\x95\xe1\x4b\x93\xe4\x3f\x7a\x74\x0b\x44\x5d\x9e\xe9\x96\x21\xf4\x0a\xef\x50\xf8\xfe\x56\xf3\x8c\x92\x58\x3f\x02\x26\xbb\xbc\x04\x30\xf4\xd9\xe1\xc6\xdf\xb6\xcf\xed\xb3\x5c\x07\xa1\x6e\xb9\x40\xb8\xed\xe3\xb2\x62\x7f\xfc\x29\x09\x5e\xd9\x27\x5d\x97\xd9\x23\xc1\x43\xdb\x53\xed\x33\x19\xbe\xb2\x9b\x48\x88\xe8\xa1\x80\x71\x71\x7b\x5e\x46\xf7\xbd\xd0\x51\x04\x6f\x9a\x3d\x78\x9a\x77\xf5\xaf\x09\x47\x3d\x7b\x9f\x8e\xdd\xc3\x8e\xed\x77\xd5\xf5\x65\x07\xef\x62\xfe\xfa\x64\x83\x58\xe4\x16\xeb\x06\x17\x07\x9c\x86\x15\x78\xf7\xdf\x10\x3b\x76\x2a\x56\x20\xee\xad\x3e\xfc\x89\x10\x1d\x7d\x85\xd0\xdf\xf6\x42\x77\xdc\x8b\xef\xe3\x3f\x02\xdf\xc7\x77\xc3\x37\x30\xfa\xc1\x80\xa9\xbc\x17\xb0\x84\xef\xe0\x03\x88\x28\x2b\x74\xec\xf4\xd1\xfe\x0e\x81\xa3\x60\x0b\x89\x86\x60\x38\xab\xbf\x0c\x63\xf0\x56\x03\xba\xb3\xf8\xdc\xa7\x52\x8d\xfd\xdc\xb6\x84\x72\xda\x3f\x2c\xa5\xbc\x53\x2d\xe5\x14\xc0\xe3\x12\x80\xa1\xa2\xca\xf6\x93\xde\xa4\x2d\x4b\xd8\x6d\xfd\xdd\xcd\xda\xa2\x94\xed\xf7\x63\x64\x3e\x00\xa8\x0d\x13\xdb\x61\xe0\x4e\xb5\xb7\x53\xeb\xc8\xb5\xeb\xbd\x05\x41\x9e\x94\xf6\x16\x78\x9d\x97\x13\xd1\x35\x52\xec\x60\xfd\x17\xf2\xc4\xe8\x1c\x7d\xb6\x2d\xa1\xf7\xb7\xdf\x50\x4f\x3e\xef\x11\xe4\xf3\x16\x5f\x14\x2f\x99\x31\xa0\x42\x7b\x3b\x24\x1e\x77\x41\xa4\x33\x42\xc6\x3d\xfe\x86\xf7\x1d\xe3\xdd\x0a\x55\x84\x4b\x3a\xa7\x15\xa4\xcc\xa8\x83\x18\xee\xe2\x1b\xc8\xb1\x29\xbe\xcb\xed\xcc\xdc\x2a\xa7\x12\x32\x0d\xdd\x5d\x7f\x67\x77\x5b\xe4\xc1\xec\xd6\x77\xb5\xe4\x92\x50\x1e\xa2\x84\xb0\x92\x25\x22\x32\xaf\x4d\x47\xa5\x93\x3b\x18\x31\xd5\x00\xdb\x00\xc8\x91\x6d\xe8\xf2\x1e\xdf\xc0\xe4\x8f\x7d\x9b\x42\x1e\x6e\x10\xea\x83\xa2\xc0\x2d\x93\xee\x95\xd4\x1e\x0a\x1a\x4d\x86\x0a\x3b\xe0\xfd\xc4\x0c\xf7\x34\xb4\xc6\x6b\xd0\xbb\xef\x05\x92\x0b\xbf\xd4\xe8\xcd\xb1\xab\xb5\x9d\xbc\xf7\x9b\xa5\x7c\xb9\x90\x06\x5b\xab\x1d\xa2\x79\x71\x27\x03\x66\xff\x38\xa9\x77\x52\xf7\x88\x74\xc7\x90\x6f\x8e\xc5\xe8\x7d\x15\xdd\xaf\x1a\x67\xb3\x55\x3b\x59\x6f\x45\x74\x45\x36\xb7\x9a\x71\xe8\x94\x31\x47\xb4\x52\x4c\xcd\x56\xc9\xf7\x5f\xec\x66\xef\xda\x1b\x7d\x69\x3c\xbe\x59\x1c\xbf\x05\xa1\x16\xfb\x8a\x6c\x14\x76\x16\x7a\xcc\x87\x11\x14\xbb\xe0\x57\x64\xf3\x59\x29\x12\xd3\x4b\xb8\x93\x17\xcf\x9f\x73\xd6\xad\x5f\x90\x8d\xea\x2c\x0e\x63\xb8\x7f\xa0\x4a\xa9\x93\x29\x4b\xf1\x03\x23\x0d\xef\x6e\xeb\xee\x73\x03\xcf\x7e\xc2\x3b\xe0\x09\x69\x50\x7c\x96\x7c\x03\x5e\x0b\xa8\x27\x66\x9f\xf5\x32\x21\xee\xdc\x01\x67\x5e\x11\xb5\xf7\xba\xc2\x23\xc1\xbf\x9c\x0c\x57\x01\xd4\xc1\x50\xf2\x71\x1f\xa2\xcf\x0b\x7e\xbd\xf4\x71\x52\xf7\x30\xec\x31\x5e\xe3\x19\x6d\xa8\xec\x7d\x71\xbb\x62\xeb\xcd\x13\xdf\xac\xf8\xc6\x4f\x88\x02\x10\xfe\xf5\x9a\xe8\x73\x39\x09\x17\x97\xc5\x9b\x44\x95\x47\x03\x12\x6e\x92\x57\xdb\xef\xc7\xbb\x75\xd6\x4b\x51\x17\x35\x85\xf9\xb2\xd9\xbf\x48\x25\xf3\x49\xeb\x97\xed\x93\xf9\xbb\xd7\xf4\xfb\xc8\xf7\xf5\x68\xfb\x5c\x0c\x66\x11\x5e\x11\x4e\xf7\xf3\x87\x8c\x2d\x4a\xbb\xf3\x8d\x97\x6a\x3b\xf1\x8b\x67\x95\xd4\x6d\x67\x98\xc5\x9f\xa9\x9f\x98\x4f\xcc\xc0\x7f\x2a\x8b\x28\xbd\xed\x8e\xdc\x91\xd0\xeb\xb6\x8c\x61\x31\xf9\x28\x3c\xa1\x4e\xaf\xfd\x98\xc1\xfb\x51\x0d\x1b\xa8\xf3\xe9\x13\x33\x80\x1d\xf3\x4f\xe5\x80\xfa\xea\xee\x02\xc2\xd1\xea\xb6\x8b\xef\x90\xd8\x63\xf5\x5f\xe2\x2b\x22\x90\x7b\x55\x45\x10\x48\x8d\xd4\x76\x89\x7e\x81\x5d\xa0\x11\x6d\xf5\xe3\x9a\x63\x30\x4b\xa0\xbc\xc5\xd4\x47\x37\xbb\xd9\x01\xb4\x17\xa8\xd2\xa9\x64\xa5\xd7\x3b\xe7\x5d\xd3\x18\x75\x47\x83\x9d\x46\xb6\x09\x3c\x64\x6e\xcf\xa0\xfe\xc2\x1f\x3f\xa3\xb0\xf4\x87\x29\xd9\x82\x7e\x8e\x0b\x7d\xf8\xaf\x7d\xfd\x0e\xf3\xe8\xab\x7e\x86\x2e\x0f\xef\x06\x15\x45\xc0\x33\xf1\xb7\x00\xe0\x78\x8c\x9e\x38\x48\x29\xf9\xf4\xbd\x23\xa8\xb0\xa3\x66\x09\x2f\x53\xb0\x79\x12\x8b\x41\x67\x27\xa0\xcf\x75\x02\xb2\xf9\x39\xeb\xda\x1a\x71\x36\xa3\x2d\xc2\xcd\x82\x71\x2a\x97\x2b\x07\x51\x32\x84\xa1\x7e\x14\x18\x18\x69\x50\x47\x32\x44\xde\x77\xb8\x41\x82\xfe\x9a\xc6\x53\xb2\xab\x11\xdb\xa2\x39\xae\xce\x4c\x6f\x59\x9b\x80\x52\xf9\x2d\x16\xfd\x16\xa6\x05\x67\xde\xeb\x1f\xa3\xaf\x8f\x86\x9d\x3a\x19\x42\x87\xae\xe0\x0c\xdc\xf4\x6e\x88\x10\xf9\xbc\x15\x1f\xd9\xd9\xde\x2f\x68\x9d\xca\x54\x12\xcb\x6e\x3e\x6f\x48\xad\x6f\xb0\xe9\xaa\x90\x76\x7d\x46\x6d\x29\x62\xa5\xad\x48\x6b\x93\x60\x5f\xb7\x4b\x1b\x68\x31\x12\x45\x93\xb5\x9f\x74\x91\x8a\x1d\xd8\x9d\x67\x6d\x4d\x7e\xb1\x2f\x89\xa2\xa3\xe0\x4d\x16\x1b\x4b\xd5\x0f\xa4\x88\x13\xf7\x3c\xfd\x21\xfa\xf1\x83\x5e\x2b\xcb\xc9\xbf\x27\xf0\x6f\x96\xb4\x21\xd1\x08\xe8\xc9\x9e\xcb\x90\xac\x6e\x11\x11\xab\xfb\x7f\xf8\x7d\x5c\x32\x07\xf5\xc0\x47\xf1\x9f\x5f\x06\x3e\x3b\xbf\x5e\x49\x8f\x87\xf7\x22\x6b\x44\x47\x9e\xc3\xf5\xfc\x50\x28\xe4\xff\x11\xc2\xce\xd9\x0c\x7f\x0c\x11\xfb\xe9\x47\x5a\x2b\x42\xfb\xc0\x6c\xf8\x82\x4d\x96\x4a\xfc\xd4\x96\x3c\x60\x3e\x0a\x60\xc0\x4d\x10\xe3\x08\x8a\xc7\x9a\x1f\x75\xf1\x2d\x3a\x47\x37\x44\xb3\xfd\x82\x41\x61\x11\xf3\x73\x83\x95\x20\x69\xc9\xad\xa8\x8c\xcc\x5d\xdf\xa8\xf9\xbe\xbb\xb2\x14\xb7\x4e\xd7\x2c\xfc\xb1\x2f\x46\x7d\xec\x3c\x22\xde\xcb\x01\x8e\x55\x77\xbd\x47\x40\xed\x61\xa7\x49\x59\xbd\x22\xb5\x86\x4b\xc5\x7f\x2f\x92\x4c\x99\x41\x2c\x3f\xfe\x1e\xb1\x13\x0a\xdf\x46\xcc\x24\xc1\x88\xea\x0d\x1f\x0e\x3c\x09\x99\xef\x70\x17\x4e\xfc\x6c\x7c\xdb\x1d\x97\x9e\x75\xd1\x99\x11\x1c\x65\x4f\x7d\x21\x3b\xb8\x8a\x60\x1c\x44\xd8\xde\xed\x5d\x13\xbe\xea\xa4\x4f\xe9\xe1\xdc\xc8\x1f\xd5\xb9\x13\xf6\xea\xf1\x9c\x8a\x25\xe1\x68\x03\x7e\x38\xbd\x83\xc1\x52\x89\x0e\xba\xac\x56\x9c\x13\xd3\x3f\x6b\x4f\x59\x7c\x38\xf9\xb4\xac\x48\xa0\x52\xa5\x50\x41\xce\x88\x3e\x7b\xe2\xe7\x12\x5d\x32\x80\xbb\x6e\x01\x9b\x8a\x34\xba\xd8\x35\x38\x58\x6e\xf0\x1a\x8a\x0a\xce\x36\xea\x1f\x28\x59\x55\xb3\xf6\x8b\x88\xf7\x6c\xf9\x2a\xde\xb5\x2e\xc0\x67\x4a\xe7\x35\xb6\x6e\x36\x96\x5f\x08\x74\xb3\xdc\x20\x1a\x3d\xb2\xa5\x39\x2e\xfe\x2e\xbb\xf5\x74\x4e\xab\x2b\x4f\x65\x60\x16\x8d\xf2\x43\xc8\xd4\xc9\x1c\x82\xba\xe1\xab\x6e\x85\x8e\x10\x27\xd7\x84\x4b\x3a\x6b\xcc\x05\xe8\x27\xfa\x74\x48\x15\x48\xdf\xcd\xf2\x8b\x07\xf2\xff\xd9\xa0\x38\x55\x7c\x53\xb8\xc2\xa2\x68\xa4\x16\x9b\xfe\xe4\xdd\xcb\x8e\x88\x32\xc2\x3b\x1b\x54\x92\xd5\xda\x2e\xd2\x8f\x34\x7e\x7d\xd4\x7e\xe9\x7e\x0f\x30\x2c\xb5\x0c\x7f\x46\x47\x00\x3a\x49\xcc\x41\x47\x88\x46\x21\xa2\x9c\xf9\x01\x54\xca\xf9\xc7\x89\xb2\x51\x69\xd7\x6e\x58\xda\xd1\x5f\xce\xa1\xdc\x64\xb8\xe8\x4a\x92\xde\x2c\x52\x90\x94\xfe\xcf\x6b\xa5\xf7\x32\xb4\xc6\x5c\xd2\x8a\xae\xdd\x7d\x36\x2d\xde\xcc\xc6\x52\x40\x0d\x37\x51\x1e\xb9\xa9\xd3\xbd\xb1\x08\x5c\x8e\x30\x2c\x9c\x68\x90\xd5\xc9\xcb\x9e\x99\x57\xee\xf7\xf1\x21\xfa\xdf\xb1\x50\xd2\x88\x7f\xc8\x74\x8e\x3d\x0e\x52\x3f\xfc\x34\x3a\x53\xf5\x33\x71\x49\xf2\xed\x3e\xc9\x5a\xb1\x77\xcc\xbf\x02\xa7\xba\x20\x06\x96\x1d\xe3\x41\x71\x81\x44\xcb\x36\x6b\x84\xfd\xfa\x68\x5b\xcc\xab\x8b\x69\xe6\x4e\xe4\xba\x88\xaf\xaf\xa6\x6e\x8d\x94\x91\x9e\x1c\xc4\xbd\x4d\xee\x94\x5f\xa0\x8c\x52\xae\x0c\xe0\x0b\xb2\xf1\x31\xc6\xa9\xff\x32\xf3\xf2\x1d\x27\x79\x85\xdb\xf8\x52\xd9\xeb\xe7\x96\xeb\x5a\xb9\x3b\x7b\x9a\x23\x55\xf5\xdf\x72\x47\x38\x60\xca\x93\x17\xcf\x83\xc1\x6e\xc1\x94\xca\xde\x0d\xd1\xfd\xf7\x60\xca\x34\x7f\x6f\x7f\xa6\x0c\x17\xcd\x33\x65\xba\x38\x5b\x78\xb3\xbe\x2a\x5d\xaa\xf6\xfe\x95\x9c\x1f\x6d\x0f\xc3\x89\xe9\xda\x14\x88\x84\xd2\x7a\x64\x0a\x92\x88\x33\xce\xfc\x1d\xec\x86\xd8\xdc\x63\xa3\x2d\xf9\x32\x65\xe0\x5c\xe8\xb7\xe7\x95\x04\x83\x3e\xce\x93\x3f\x3e\x44\x26\x0d\xa6\x9c\x69\x5d\x52\xc8\x86\xd0\xd5\xed\x75\xd8\x4f\x5f\x1d\x87\x04\x17\x5b\xcd\xad\xc2\xed\x00\xe2\xd3\x70\xc3\x55\x64\xad\x6b\x58\x99\x1a\xba\xe6\x21\xcd\x19\x81\x0d\xa3\x14\x9f\x77\x1a\xf3\x77\x13\xb4\x64\x37\xea\xfc\x85\x42\xe2\x58\x20\x5c\xd7\xa4\xd6\xe9\x75\x6a\x47\xe1\xd6\x6b\x47\xeb\x05\xc7\x35\x31\xd8\x98\x1a\x67\x02\x6e\xe6\x98\xf7\xa2\x66\x04\x89\x35\xa9\xe8\x9c\x92\x1a\x09\xb2\xc6\x5c\x17\xcc\x02\x45\x80\xfc\x42\x05\x24\x54\xea\x77\xc2\x45\xee\x3a\x31\x54\x2e\x64\x12\x1d\xa2\xec\xcb\x1e\x9a\x17\x7d\x6f\x59\xe7\xa2\x0b\x2e\x6b\x65\xa2\x50\xc1\x6a\x5d\x86\x61\xaf\xd3\xf0\xc2\x0a\x70\x57\x73\x83\x37\xa2\x58\x3d\x76\xdd\x74\xc2\x1c\xe9\x45\xe6\x2a\x07\x67\xac\x9d\xdc\xc7\x5f\xe5\x9a\x95\x08\x0b\xd3\x2f\x44\x3f\xab\x34\xd7\x77\xa3\xbd\xcf\xbb\xd4\x4f\x5e\xd5\xbe\x48\xd1\xa7\xe5\x31\xc6\xe8\x1f\xff\x40\x73\xdc\x98\x2a\x26\x01\x7d\x9f\x93\xa4\x54\x61\xcf\x3d\xe7\x86\xcc\xa5\xd9\xc7\x35\x11\x92\xb3\x4d\x90\x5e\xf0\x4d\xd8\x12\xf3\xf8\x86\xfc\x0d\xe1\x04\xe1\xa6\x61\x15\x96\xba\x4e\x3e\x46\x35\xa9\x88\xb2\xd6\x1a\xfa\xab\xbb\x5f\x4f\x5a\x49\xaf\xfd\x99\x03\x7d\x21\x9b\xc1\x15\xf9\xf6\x51\x50\x45\x58\x40\x91\xc0\x5b\x31\x16\xa1\xa9\x61\x17\x22\xc0\xb5\x69\xe7\x10\xf8\xc8\x0c\x5a\x9c\xdd\xa8\xfe\xfa\x06\xa7\x7b\x95\x27\xbc\xf0\x6f\xcf\x33\xa8\x1e\x40\xdb\xb9\xf9\x5a\x6d\x2f\x07\x4e\x30\x7f\x85\xcd\xbc\x88\xd3\x74\x75\x50\xec\x3a\x00\xe8\x3a\x41\x61\x7d\x23\x29\x6c\x2a\x40\x44\x69\x9b\x79\xeb\x66\xa5\x4c\x8e\x80\x2c\xb6\x72\x9e\xf1\x98\xea\x72\x8c\x08\xb7\x9b\x15\xe3\xa4\x6f\x87\x47\xd7\xcd\x6d\x09\xd1\x7d\x38\x4e\xf7\xc8\x78\x4e\x1d\xb1\x1e\x76\xe9\x4a\x3d\xd2\x8e\x68\x5b\x4e\xc0\xb0\x1e\x6d\xa9\x74\xb7\xf2\xe3\x5b\x70\x79\x41\xed\x24\x01\x76\xb8\x49\x5a\xf3\x7f\xa8\xad\xaf\xed\x5f\x6c\x55\xf0\x38\x6a\xef\x5b\xd8\x6e\xe8\xd2\xb8\x25\x74\xd8\x7e\x5b\x75\xf2\xdb\xd5\x0e\xdf\xbb\x72\x78\xb1\x6e\xf8\xa0\xdb\x76\xdf\x02\xdb\xbd\xc9\xc2\xb1\xd7\x7d\xb8\x7e\x76\xb2\xf4\x85\xda\xd9\x79\xdd\xec\x5d\xca\x64\xa7\x77\x35\x4b\x8a\x03\x3a\x32\xca\xc6\x28\x63\xc0\xbb\xa4\x64\x7f\x8c\xe7\x29\x76\x02\xbf\xdf\xcb\x15\xc3\x20\x0b\x5b\xa1\xf4\xed\x5e\x60\x87\x77\xce\xd0\xaf\x79\xc2\x0c\x46\xaa\x09\x83\xd3\xce\x96\x0a\x74\x32\x3c\x54\xed\xac\xca\xa7\x53\xf1\xd4\x17\x8f\x4c\xed\xd9\x35\x3c\x06\x56\xb1\xa0\x56\x10\x28\xd4\x1a\x58\xae\x0d\x1d\xe5\x1a\x52\x6c\x2d\xd4\x2e\x4f\x70\x90\x5d\x38\x99\x1f\x0f\xd4\xc4\xce\x1a\x5f\xd2\x15\x11\x12\xaf\xd6\x56\x6a\x8d\xb2\x7a\x91\x53\x69\xdb\x8c\xbf\x4c\x77\x90\x03\x17\x94\xda\x49\x04\xbe\xc0\xd7\x64\xd4\x37\xef\x09\x92\x6c\xab\x1a\x37\x90\x5b\x73\x3c\xf4\x54\x46\x7f\xb7\xed\x97\x9c\xa3\xae\xa0\xa0\x5f\x68\x1c\xcf\xb1\x5c\xa2\xa3\x02\xca\x4f\x9d\xf9\xe1\xfa\x2d\x6d\xf1\xe2\x6d\x7d\x5d\x95\xe3\xb8\xbf\xb5\x7f\xb6\x75\x77\xc6\x49\xc4\x6b\xc9\x8b\x51\x1f\xf4\xfa\x1e\xc6\x17\x6a\x7e\x47\x47\xe8\x43\x2a\xbf\x8a\x4b\x18\x81\xd3\xeb\xd6\x87\x64\xba\x62\x45\x78\x4f\x0e\x4c\x9a\xa2\xb1\x25\x03\x90\x29\xbd\xc7\xfb\x80\x73\xb4\x8c\x40\x96\x96\x62\x5c\x0a\x11\x60\xb4\xe6\xf4\x5a\xfd\x2f\x88\xca\x17\x93\x70\x5c\xb9\x38\xfd\x86\xb9\x52\x44\xe1\x09\x44\xa8\x7f\x8d\x65\x74\x29\xea\x75\x8b\x5e\x62\xda\xb6\x44\xbb\x7c\x2f\x89\x90\x2d\x81\x17\x52\x48\x92\xdc\x20\x4c\x0d\x83\xe8\xb5\x0a\xf3\xaa\xa0\x99\xf8\x44\x29\x8e\x4b\x1b\xd7\x5e\x12\x4e\xc2\xf7\x60\xd0\x53\xad\x13\xc3\x86\x83\xc7\x13\x34\x92\x33\x66\xdc\xa6\x38\x1e\xcf\x3f\xfb\xe2\x26\x4c\x89\x40\x0d\x6d\x4d\x9d\x07\x24\x97\x4c\x90\xb0\x83\x45\x0b\xaf\x1c\x4e\x11\x06\xfa\x61\xb4\x56\x74\xba\x94\x1e\x96\x26\x8b\x93\xb5\xda\x76\x64\x5c\xa9\xdd\x75\x07\xb3\x35\xaf\xc6\x98\x8a\xe7\x02\xf2\x8d\x31\x78\x93\x83\xab\x7b\x1b\x21\xc9\x0a\x55\xcb\xae\xbd\x0a\x07\x02\x9d\x19\xc3\x3d\xfe\x66\x63\x42\xcd\xb5\x7d\x35\x51\x53\xd2\x3a\xa9\x70\x03\xe0\x58\x27\x95\x89\x4c\xcd\x57\xae\xce\xf8\x0a\xb7\x74\x6d\xb4\xeb\x69\xb4\x8d\xc2\xba\x6b\xfd\xb9\x22\x21\xed\x1c\x63\x52\x21\x3a\x32\x94\x77\x55\xf8\x25\xcc\x38\xdb\x6f\x0b\x04\x29\x2a\x03\x63\x7e\x3d\x2a\x4f\xa8\x20\x89\x07\x93\xdf\xf6\xdc\x3a\xef\xab\xc0\x3f\x83\xa2\xec\xd2\xed\x1b\x48\x2d\xc3\xfb\xea\x8e\x2b\x90\xe5\x36\x15\xbe\xbc\x23\xc1\xd3\x21\xbe\x1e\x65\x58\x17\xc8\xdc\x97\x3b\xb6\x27\x85\x5d\xde\xcd\xad\x49\x6c\x7d\x77\xb7\xa7\x71\x90\x3c\x14\xfd\x79\x47\xba\x7a\xb0\x5f\x8f\x72\x24\x0b\x24\xed\xcd\xc6\x8a\x07\x2f\x57\xc7\x52\x9a\x7f\x7f\xad\xe1\x9d\x2a\x6c\x47\xad\x21\x4c\xb7\xcf\xad\xd6\x9d\xde\xc3\x43\xb7\x7b\xc7\x24\x2b\xbd\xbd\xe5\x3d\x93\xbc\x54\xf7\x1e\x97\x4b\xd1\x41\xef\x0b\x2c\xe5\x4b\xa4\x7b\x0f\x93\xdc\xe7\xea\x1d\xef\xae\xf5\x40\xc2\xcf\xbf\xc3\x83\x28\x3d\xb9\xe9\x39\xab\x59\xff\xfa\xef\xf7\xfe\x6f\x00\x00\x00\xff\xff\xc8\x64\x7c\x99\x3c\xea\x00\x00" func epochsFlowepochCdcBytes() ([]byte, error) { return bindataRead( @@ -338,7 +338,7 @@ func epochsFlowepochCdc() (*asset, error) { } info := bindataFileInfo{name: "epochs/FlowEpoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0x53, 0xa9, 0xa8, 0xcb, 0x56, 0xac, 0x61, 0x17, 0x19, 0xad, 0x57, 0x20, 0xb7, 0x58, 0x4, 0xb5, 0x9e, 0x6b, 0x50, 0x2d, 0xe6, 0xff, 0x5a, 0x3b, 0x49, 0x5e, 0xb0, 0xc6, 0xc7, 0x31, 0x4e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0x79, 0x6c, 0x43, 0x9a, 0x51, 0x86, 0x54, 0x7e, 0xf8, 0xc1, 0x9a, 0x46, 0x79, 0xb, 0x44, 0x31, 0xf1, 0xca, 0x7f, 0x80, 0x5b, 0xc9, 0x7c, 0x6e, 0x8f, 0xae, 0x86, 0x74, 0x5b, 0x86, 0xc1}} return a, nil } diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 90fc5182d..fa6c6b7fd 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -48,7 +48,7 @@ // epoch/admin/deploy_qc_dkg.cdc (310B) // epoch/admin/pay_rewards.cdc (497B) // epoch/admin/recover_epoch.cdc (2.137kB) -// epoch/admin/reset_epoch.cdc (1.668kB) +// epoch/admin/reset_epoch.cdc (1.666kB) // epoch/admin/set_automatic_rewards.cdc (376B) // epoch/admin/set_bonus_tokens.cdc (624B) // epoch/admin/update_clusters.cdc (358B) @@ -240,9 +240,11 @@ // quorumCertificate/scripts/get_voter_is_registered.cdc (210B) // quorumCertificate/scripts/get_voting_completed.cdc (199B) // quorumCertificate/submit_vote.cdc (611B) +// randomBeaconHistory/scripts/get_backfiller_max_entries.cdc (321B) // randomBeaconHistory/scripts/get_latest_source_of_randomness.cdc (200B) // randomBeaconHistory/scripts/get_source_of_randomness.cdc (305B) // randomBeaconHistory/scripts/get_source_of_randomness_page.cdc (326B) +// randomBeaconHistory/transactions/set_backfiller_max_entries.cdc (379B) // stakingCollection/close_stake.cdc (906B) // stakingCollection/create_machine_account.cdc (1.702kB) // stakingCollection/create_new_tokenholder_acct.cdc (3.643kB) @@ -1322,7 +1324,7 @@ func epochAdminRecover_epochCdc() (*asset, error) { return a, nil } -var _epochAdminReset_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xcb\x6e\xdb\x30\x10\xbc\xeb\x2b\x16\x3e\xa4\x36\xe2\xc8\x08\x50\xf4\x60\xb4\x0d\x52\x27\x05\x82\x5e\x52\x38\xcd\xa5\xe8\x61\x2d\xad\x25\xc2\x12\x57\xe0\xae\xe2\x1a\x45\xfe\xbd\x20\xe9\x87\x54\xa8\x49\x7c\x32\xa9\x99\xe1\x70\x66\x69\xea\x86\x9d\xc2\xd7\x8a\xb7\xb7\x0d\x67\x25\xac\x1d\xd7\x30\x3a\xae\x47\x49\x07\x71\x77\xf3\x80\xab\x8a\x96\x8a\x1b\x63\x8b\x0e\xb4\xff\x61\x94\x24\xb3\x19\x3c\x94\x04\x8e\x84\x34\xea\xaa\x43\x2b\x98\xa9\x61\x0b\x64\x73\x01\x2d\x09\xb2\xd6\x39\xb2\x0a\x14\x20\xc6\x86\xcd\x93\x17\xa9\xd1\x29\x64\x6c\xd5\x61\xa6\x5e\x14\x6d\x0e\x2b\x2a\x8c\x15\x40\xb0\xb4\xdd\x33\xb7\x46\xcb\xc0\x2d\xcc\x13\x59\xcf\x58\x9b\xa2\x75\xe8\x4f\x4b\x83\x93\x13\x16\xab\x2d\xee\x04\x4a\x14\x2f\x18\x5c\x70\x6b\x95\xdc\xc1\x4d\x38\x7b\x11\xf7\xce\x2f\x23\xbd\xeb\x5e\xc8\xe6\xe4\xa0\x6e\x45\xa1\x71\xfc\x64\x72\x0a\x32\x5e\x6e\x40\x02\xc6\x2b\x5a\xb3\x8b\x98\x10\x08\x28\x6e\x48\xa0\xa9\x30\xa3\x09\xa0\xbf\x8a\xe0\x9a\x74\x07\x35\x65\x25\x5a\x23\x75\x9a\xcc\x66\x5e\xef\xa6\x75\x3e\x69\x4b\xba\x65\xb7\x01\x69\xd8\x6d\x64\x1a\xa4\x56\xcc\x2a\xea\xb0\x69\x28\xf7\x3e\x94\x33\xae\x40\x14\x95\xc0\x88\x0f\x33\x26\x14\xa3\x1c\x0f\x5e\x6e\x32\x3d\x84\xda\x69\xca\x08\xb4\x42\x39\x28\x83\x77\x53\x44\xe7\x31\xbc\x43\x54\x6f\xa8\x2a\x4c\xc7\x50\x1e\xca\x83\x6e\xe0\x1c\x2e\x27\x53\x10\x06\x2d\x51\xc1\xe8\x3b\xf1\x7a\x62\x44\xfd\x88\x84\x8a\x0f\x8d\xbd\x70\xf7\x34\xce\x9e\x91\x7e\x67\x25\xb7\x55\x0e\x6c\xab\x1d\xac\x28\xde\xef\x38\x34\xdc\x6a\xd3\x2a\xf0\xba\xaf\x0d\xad\x9a\xca\xe8\x6e\xee\x15\x21\xac\xf6\x29\x84\xb0\x2e\xf4\xf7\x05\xba\x42\x92\xa4\x73\xd0\xd0\xc5\xe6\xf0\xe3\xce\xea\x87\xf7\xd3\x04\x3a\x3f\x87\x36\xe7\x7a\xc9\xad\xcb\x68\x0e\x4b\xf5\x3d\xf7\x11\xa2\xe8\xf4\xd1\xd0\x76\x58\x40\xe2\x63\xbb\xb5\xf9\xff\x31\xd4\xff\x38\x81\x3f\x49\xf8\xde\x38\x6a\xd0\xd1\x58\x4c\x61\xbd\x41\x6c\xb5\x1c\x7f\x61\xe7\x78\xfb\x88\x55\x4b\x13\x38\xbb\xce\x42\xd7\x9e\x72\x50\xab\x68\xff\x52\xaf\xf3\xda\x58\xf8\x04\x91\x9e\x8a\xb2\xc3\x82\xd2\x55\x10\xf8\x78\x76\x9c\x8a\x34\x00\x3f\x8f\xfd\x28\xcc\x4f\xc3\x92\xa2\xdf\x5e\x46\xd6\x3d\x6a\x39\xe9\x99\xbe\xba\x82\x06\xad\xc9\xc6\xa3\x45\x28\xcd\xb2\x42\x94\x3e\xbc\xe0\x70\x7c\x98\xaf\xfd\xd1\xd0\xa0\x96\xa3\x49\x72\xd4\x39\xd9\x4c\x4f\x93\x3d\x5c\xce\xc0\x66\x3f\xc4\x7f\x7f\xfd\xe6\xba\xab\x97\x79\xdd\x42\x8f\x7f\x5f\xa7\xf4\x4a\xee\xaf\x5f\x21\x1f\xdb\xa7\x37\xc1\x33\xae\x2a\xca\x94\xdd\xa2\x6a\x45\xc9\xc9\x1c\x7e\xfe\x7a\x8d\x13\xa1\xdf\x17\x6f\x01\xe7\x9b\xe2\xbe\x5d\x7d\xa3\x5d\x00\xc7\xd2\x9f\x93\xe7\xe4\x6f\x00\x00\x00\xff\xff\x31\xe8\x6d\xe4\x84\x06\x00\x00" +var _epochAdminReset_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x6f\xdb\x38\x10\xbd\xeb\x57\x0c\x7c\xc8\xda\x88\x23\x23\xc0\x62\x0f\xc6\xee\x06\x59\x27\x0b\x04\xbd\xa4\x70\x9a\x4b\xd1\xc3\x48\x1a\x4b\x84\x25\x8e\xc0\x19\xc5\x35\x8a\xfc\xf7\x82\xa4\x3f\xa4\x42\x4d\xe2\x93\x49\xbe\xf7\xf8\xf8\xde\xc8\x34\x2d\x3b\x85\xff\x6b\xde\xdd\xb7\x9c\x57\xb0\x71\xdc\xc0\xe4\xb4\x9e\x24\x3d\xc4\xc3\xdd\x13\x66\x35\xad\x15\xb7\xc6\x96\x3d\xe8\xf0\x60\x92\x24\x8b\x05\x3c\x55\x04\x8e\x84\x34\xea\xaa\x43\x2b\x98\xab\x61\x0b\x64\x0b\x01\xad\x08\xf2\xce\x39\xb2\x0a\x14\x20\xc6\x86\xcd\xb3\x17\x69\xd0\x29\xe4\x6c\xd5\x61\xae\x5e\x14\x6d\x01\x19\x95\xc6\x0a\x20\x58\xda\x1d\x98\x3b\xa3\x55\xe0\x96\xe6\x85\xac\x67\x6c\x4c\xd9\x39\xf4\xb7\xa5\xc1\xc9\x19\x8b\xf5\x0e\xf7\x02\x15\x8a\x17\x0c\x2e\xb8\xb3\x4a\xee\xe8\x26\xdc\xbd\x8a\x7b\x97\xd7\x91\xde\x77\x2f\x64\x0b\x72\xd0\x74\xa2\xd0\x3a\x7e\x31\x05\x05\x19\x2f\x37\x22\x01\xd3\x8c\x36\xec\x22\x26\x04\x02\x8a\x5b\x12\x68\x6b\xcc\x69\x06\xe8\x9f\x22\xb8\x21\xdd\x43\x43\x79\x85\xd6\x48\x93\x26\x8b\x85\xd7\xbb\xeb\x9c\x4f\xda\x92\xee\xd8\x6d\x41\x5a\x76\x5b\x99\x07\xa9\x8c\x59\x45\x1d\xb6\x2d\x15\xde\x87\x72\xce\x35\x88\xa2\x12\x18\xf1\x61\xc6\x84\x62\x94\xd3\xd1\xc7\xcd\xe6\xc7\x50\x7b\x4d\x19\x81\x4e\xa8\x00\x65\xf0\x6e\xca\xe8\x3c\x86\x77\x8c\xea\x03\x55\x85\xe9\x18\xcb\x43\x79\xd4\x0d\x5c\xc2\xf5\x6c\x0e\xc2\xa0\x15\x2a\x18\xfd\x43\xbc\x9e\x18\x51\x3f\x22\xa1\xe2\x63\x63\x6f\xbc\x3d\x8d\xb3\x67\x64\xd8\x59\xc5\x5d\x5d\x00\xdb\x7a\x0f\x19\xc5\xf7\x9d\x86\x86\x3b\x6d\x3b\x05\xde\x0c\xb5\xa1\x53\x53\x1b\xdd\x2f\xbd\x22\x84\xd5\x21\x85\x10\xd6\x95\x7e\xbf\x42\x57\x4a\x92\xf4\x2e\x1a\x7b\xd8\x12\xbe\x3c\x58\xfd\xeb\xcf\x79\x02\xbd\x9f\x43\x5b\x70\xb3\xe6\xce\xe5\xb4\x84\xb5\xfa\x9e\x87\x08\x51\x74\xfa\x6c\x68\x37\x2e\x20\xf1\x63\xbb\xb7\xc5\xef\x31\x34\x3c\x9c\xc1\x8f\x24\x9c\xb7\x8e\x5a\x74\x34\x15\x53\x5a\x6f\x10\x3b\xad\xa6\xff\xb1\x73\xbc\x7b\xc6\xba\xa3\x19\x5c\xdc\xe6\xa1\x6b\x4f\x39\xaa\xd5\x74\xf8\x52\x6f\x8b\xc6\x58\xf8\x07\x22\x3d\x15\x65\x87\x25\xa5\x59\x10\xf8\xfb\xe2\x34\x15\x69\x00\xfe\x3b\xf5\xa3\xb0\x3c\x0f\x4b\x8a\x7e\x7b\x1d\x59\x8f\xa8\xd5\x6c\x60\xfa\xe6\x06\x5a\xb4\x26\x9f\x4e\x56\xa1\x34\xcb\x0a\x51\x1a\x2a\x42\xa7\x19\xa1\xc6\xe9\x3a\x5c\x0c\x2d\x6a\x35\x99\x25\x27\x95\xb3\xc9\xf4\x3c\xd7\xe3\xd5\x8c\x6c\x0e\x23\xfc\xf5\x37\xec\xad\xbf\x7a\x9b\xd7\xaf\xf3\xf4\xf7\x7d\xca\xa0\xe2\xe1\xfa\x1d\xf2\xa9\x7b\xfa\x10\x3c\xe7\xba\xa6\x5c\xd9\xad\xea\x4e\x94\x9c\x2c\xe1\xeb\xb7\xf7\x38\x11\xfa\x79\xf5\x11\x70\xb1\x2d\x1f\xbb\xec\x13\xed\x03\x38\x56\xfe\x9a\xbc\x26\x3f\x03\x00\x00\xff\xff\x12\x4d\x3d\x2b\x82\x06\x00\x00" func epochAdminReset_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1338,7 +1340,7 @@ func epochAdminReset_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/reset_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x65, 0xaa, 0xbb, 0x55, 0xc5, 0x22, 0xcf, 0x8f, 0x94, 0x74, 0x88, 0xe8, 0xa0, 0x90, 0x53, 0x15, 0x36, 0x1b, 0xe, 0x32, 0xd3, 0xb2, 0xb8, 0xe3, 0x72, 0xdd, 0x95, 0x41, 0x21, 0xce, 0x47, 0xe2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe8, 0x2c, 0xf0, 0xa9, 0xd5, 0x3f, 0xb4, 0x42, 0x85, 0x42, 0x5a, 0xbb, 0xe2, 0x54, 0xb2, 0xdd, 0x90, 0x88, 0xc7, 0x55, 0xbe, 0x47, 0x6b, 0x78, 0xd0, 0xf3, 0x25, 0x54, 0xf6, 0xe9, 0x7a, 0x2b}} return a, nil } @@ -5162,6 +5164,26 @@ func quorumcertificateSubmit_voteCdc() (*asset, error) { return a, nil } +var _randombeaconhistoryScriptsGet_backfiller_max_entriesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x41\x4b\xc3\x40\x10\x46\xef\xf9\x15\x43\x0f\x65\xf7\x92\x5e\xc4\x43\xa8\x0d\x89\x08\x7a\x10\x44\xd0\xfb\x74\x33\x49\x17\x27\xb3\x32\x3b\x8b\x8a\xf8\xdf\xc5\x12\xac\x50\x6f\x03\xf3\x1e\xdf\x8b\xf3\x6b\x52\x83\xd5\x23\xca\x90\xe6\x9e\x30\x24\xb9\x8d\xd9\x92\x7e\xac\xaa\x0a\x43\xa0\x9c\x1d\x32\x7b\x18\x8b\xc0\x8c\x51\xdc\x1e\xc3\xcb\x18\x99\x49\xbb\x61\x50\xca\xb9\x81\xe5\xf0\x0d\x3c\xdd\x89\x5d\x5e\xb4\xf0\x59\x01\x00\x30\x19\x9c\x70\xb8\x82\x89\xac\x2b\x76\xe8\x42\x48\x45\x6c\x8b\xc5\x0e\xae\x4f\xaa\xe9\xed\x19\xb9\x90\x87\xf5\xf2\xda\x9d\xcf\xf8\xfa\x27\x0b\x27\xaa\xf7\x47\x63\xbb\xfe\x27\xba\xee\x7f\xb5\x9d\x1b\x35\xcd\x0d\x6c\x16\x6d\xa3\xe7\xf8\x89\xf6\xc7\x60\x25\x2b\x2a\x7f\x9a\xdb\x7a\x22\xbb\xc7\xf7\x1b\x31\x8d\x94\x1f\x48\xaf\x91\xd9\x79\x68\x5b\x90\xc8\xd5\xd7\x77\x00\x00\x00\xff\xff\xf1\x75\x4f\x97\x41\x01\x00\x00" + +func randombeaconhistoryScriptsGet_backfiller_max_entriesCdcBytes() ([]byte, error) { + return bindataRead( + _randombeaconhistoryScriptsGet_backfiller_max_entriesCdc, + "randomBeaconHistory/scripts/get_backfiller_max_entries.cdc", + ) +} + +func randombeaconhistoryScriptsGet_backfiller_max_entriesCdc() (*asset, error) { + bytes, err := randombeaconhistoryScriptsGet_backfiller_max_entriesCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "randomBeaconHistory/scripts/get_backfiller_max_entries.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb7, 0xc, 0x4a, 0x24, 0x16, 0x69, 0xb, 0xe5, 0x5b, 0x48, 0x19, 0x67, 0xd9, 0xd9, 0x37, 0x26, 0xe4, 0x9f, 0xfe, 0xb1, 0x10, 0x4e, 0x1c, 0xb4, 0xaa, 0x81, 0x6b, 0x3d, 0x7d, 0xc3, 0x94, 0x59}} + return a, nil +} + var _randombeaconhistoryScriptsGet_latest_source_of_randomnessCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8d\xb1\xae\x83\x30\x0c\x45\xf7\x7c\xc5\x15\x13\x19\x1e\xd2\x5b\x19\xe9\xc2\x56\xa9\xfd\x82\x28\x35\x10\x15\xec\xca\x71\x86\xaa\xea\xbf\x57\x84\x15\x8f\xf7\x9c\x23\xa7\xed\x25\x6a\x68\x6e\x81\x1f\xb2\x0d\x14\xa2\xf0\x98\xb2\x89\xbe\x1b\xe7\x42\x8c\x94\x73\x1b\xd6\xd5\x63\x2a\x8c\x2d\x24\x6e\x7d\x8f\x13\xbb\x3b\xb6\xbb\x14\x8d\x84\x8f\x03\x00\x25\x2b\xca\xa7\x76\xae\xde\x75\x3a\x18\xef\x5f\x6a\xb2\x5f\xb0\x61\x95\xf8\x1c\x29\xcd\x8b\xf5\x98\xc9\x2e\x45\x95\xf8\x98\x5b\xdf\x2d\x95\xe0\x0f\xff\xb5\xf1\xee\xeb\x7e\x01\x00\x00\xff\xff\xf0\x98\xc8\x29\xc8\x00\x00\x00" func randombeaconhistoryScriptsGet_latest_source_of_randomnessCdcBytes() ([]byte, error) { @@ -5222,6 +5244,26 @@ func randombeaconhistoryScriptsGet_source_of_randomness_pageCdc() (*asset, error return a, nil } +var _randombeaconhistoryTransactionsSet_backfiller_max_entriesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xd0\xc1\x4a\x03\x31\x10\x06\xe0\xfb\x3e\xc5\xb0\x87\x92\x5c\xb6\x17\xf1\xb0\xa8\xc5\x2d\x82\x1e\x04\x11\xf4\x3e\x4d\xa7\x1a\xcc\x66\x96\xc9\x04\x15\xe9\xbb\x4b\x5a\xcd\x0a\x76\xce\xf3\xcd\xfc\xfc\x7e\x9c\x58\x14\xda\x47\x8c\x5b\x1e\x07\x42\xc7\xf1\xd6\x27\x65\xf9\x6c\x9b\x46\x05\x63\x42\xa7\x9e\xa3\x19\xf1\xe3\x26\xaa\x78\x4a\x3d\x3c\xdd\x45\x3d\x3f\xb3\xf0\xd5\x00\x00\x4c\x42\x13\x0a\x19\x74\x4e\x7b\xc0\xac\xaf\x66\x60\x11\x7e\x7f\xc6\x90\xc9\xc2\xe2\xda\x39\xce\x51\x7f\xf7\xcb\x04\x52\xd8\xa0\x7b\xdb\xf9\x10\x48\xe0\x12\x0a\xee\xca\x5f\x7c\xa1\x6e\x73\xe0\x17\x8b\x13\xa9\xba\xa1\xaa\x2b\x53\xcf\x95\xd9\x09\x8f\x3d\x2c\x7f\x6e\x2c\xe5\xbf\x9d\x69\x85\x16\x56\x2b\x98\x30\x7a\x67\xda\x35\xe7\xb0\x85\xc8\x0a\xc7\xff\x7f\x03\x0a\x25\xce\xe2\xa8\xb5\x07\x5a\xfd\xbc\xd2\x25\xd2\xfb\xda\xd1\x03\xc9\x1a\x43\x28\xad\xf5\x30\x57\x67\x8f\x72\x0f\xcd\xbe\xf9\x0e\x00\x00\xff\xff\x2c\xdc\xe0\x9a\x7b\x01\x00\x00" + +func randombeaconhistoryTransactionsSet_backfiller_max_entriesCdcBytes() ([]byte, error) { + return bindataRead( + _randombeaconhistoryTransactionsSet_backfiller_max_entriesCdc, + "randomBeaconHistory/transactions/set_backfiller_max_entries.cdc", + ) +} + +func randombeaconhistoryTransactionsSet_backfiller_max_entriesCdc() (*asset, error) { + bytes, err := randombeaconhistoryTransactionsSet_backfiller_max_entriesCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "randomBeaconHistory/transactions/set_backfiller_max_entries.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6d, 0x39, 0x6d, 0x10, 0xb9, 0x62, 0xc2, 0xb3, 0xc3, 0xcd, 0xc, 0xe1, 0xff, 0xf9, 0x65, 0x33, 0xed, 0x40, 0xf6, 0x65, 0xf0, 0x29, 0xba, 0x14, 0x19, 0x39, 0x84, 0x83, 0xe8, 0xbd, 0x53, 0x5c}} + return a, nil +} + var _stakingcollectionClose_stakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x8e\xd3\x30\x10\xbd\xe7\x2b\x46\x3d\x2c\xa9\xb4\xca\x4a\x70\xab\x80\x0a\x8a\x90\xf6\x04\xa2\xc0\x7d\xea\x4c\x13\x83\xe3\x89\xc6\xe3\x2d\x2b\xb4\xff\x8e\x6c\x37\x29\xa2\x39\x70\x59\x1f\x92\x78\xfc\x26\xef\xcd\xf3\xb3\xc3\xc8\xa2\xf0\xd1\xf1\x69\xaf\xf8\xd3\xfa\x6e\xc7\xce\x91\x51\xcb\x1e\x8e\xc2\x03\xac\x16\xcf\x56\x55\x75\x77\x07\x3b\xc7\x81\x02\x70\x54\x40\x08\x05\x03\x7c\xf8\x41\x46\xc1\x7a\xd0\x9e\xe6\xaa\x99\x5b\x53\xe3\xd7\xde\x06\x68\x99\x02\x78\x56\x10\x1a\xf8\x81\x32\x5c\xc8\xb0\xb4\x85\x39\xed\x6d\x4b\x5e\xad\x3e\x82\xe2\xc1\xd1\x6d\xea\x3d\x44\x05\xab\xa5\x7b\x20\x4c\x34\xa8\x19\x8c\xc6\x70\xf4\x5a\x0a\xa6\x68\xb3\x0a\x06\x7d\x62\xa1\x07\x92\x04\xa1\x90\xab\xd8\xa1\xf5\x55\xa5\x82\x3e\x60\x16\x56\x7b\x6e\xe9\xfe\xc3\x06\xf6\x2a\xd6\x77\xb7\xd0\x92\xa3\x0e\x95\x25\x15\xbf\xdd\x7b\x7d\xf5\x72\xbb\x86\xdf\x15\x00\x40\x7e\x38\xd2\x69\xc0\x8b\x35\x5f\xe8\xb8\x01\x8c\xda\xd7\x8b\xce\x35\x97\xcf\x4f\x27\x4f\xb2\x86\x9b\x65\xdc\x55\xa5\xca\x9c\xa3\xd0\x88\x42\xf5\x79\xd8\x33\xd5\x7b\x16\xe1\xd3\x77\x74\x91\xd6\x70\xf3\xae\x9c\x4d\x5a\xd3\x0a\xe4\x8e\xcd\x92\x56\x78\x33\xf9\xd6\x04\x65\xc1\x8e\x9a\x43\xfe\xd9\xeb\xe7\x98\xe1\x6d\x9d\xae\x76\xb3\x1c\xb8\x6b\xf8\xbe\x28\xfa\x8c\xda\xaf\xe7\x51\xd2\xda\x6e\x61\x44\x6f\x4d\xbd\xda\x71\x74\x6d\x8e\x51\x91\x0d\x08\x42\x47\x12\xf2\x86\x40\x19\x10\xae\x83\x7d\xce\xe6\x28\x76\x40\x79\x84\x18\x48\x5e\x84\xc9\x86\x55\x61\x7a\x2a\x76\xd3\x2f\x32\x51\xe9\x7f\x9c\x6c\x72\xe4\x12\x1b\xcd\x51\x2a\xef\x7f\xa2\xf4\xd7\x66\xe2\x7a\xaa\xfe\x04\x00\x00\xff\xff\x81\xd2\xc8\xc9\x8a\x03\x00\x00" func stakingcollectionClose_stakeCdcBytes() ([]byte, error) { @@ -6573,9 +6615,11 @@ var _bindata = map[string]func() (*asset, error){ "quorumCertificate/scripts/get_voter_is_registered.cdc": quorumcertificateScriptsGet_voter_is_registeredCdc, "quorumCertificate/scripts/get_voting_completed.cdc": quorumcertificateScriptsGet_voting_completedCdc, "quorumCertificate/submit_vote.cdc": quorumcertificateSubmit_voteCdc, + "randomBeaconHistory/scripts/get_backfiller_max_entries.cdc": randombeaconhistoryScriptsGet_backfiller_max_entriesCdc, "randomBeaconHistory/scripts/get_latest_source_of_randomness.cdc": randombeaconhistoryScriptsGet_latest_source_of_randomnessCdc, "randomBeaconHistory/scripts/get_source_of_randomness.cdc": randombeaconhistoryScriptsGet_source_of_randomnessCdc, "randomBeaconHistory/scripts/get_source_of_randomness_page.cdc": randombeaconhistoryScriptsGet_source_of_randomness_pageCdc, + "randomBeaconHistory/transactions/set_backfiller_max_entries.cdc": randombeaconhistoryTransactionsSet_backfiller_max_entriesCdc, "stakingCollection/close_stake.cdc": stakingcollectionClose_stakeCdc, "stakingCollection/create_machine_account.cdc": stakingcollectionCreate_machine_accountCdc, "stakingCollection/create_new_tokenholder_acct.cdc": stakingcollectionCreate_new_tokenholder_acctCdc, @@ -6973,10 +7017,14 @@ var _bintree = &bintree{nil, map[string]*bintree{ }}, "randomBeaconHistory": {nil, map[string]*bintree{ "scripts": {nil, map[string]*bintree{ + "get_backfiller_max_entries.cdc": {randombeaconhistoryScriptsGet_backfiller_max_entriesCdc, map[string]*bintree{}}, "get_latest_source_of_randomness.cdc": {randombeaconhistoryScriptsGet_latest_source_of_randomnessCdc, map[string]*bintree{}}, "get_source_of_randomness.cdc": {randombeaconhistoryScriptsGet_source_of_randomnessCdc, map[string]*bintree{}}, "get_source_of_randomness_page.cdc": {randombeaconhistoryScriptsGet_source_of_randomness_pageCdc, map[string]*bintree{}}, }}, + "transactions": {nil, map[string]*bintree{ + "set_backfiller_max_entries.cdc": {randombeaconhistoryTransactionsSet_backfiller_max_entriesCdc, map[string]*bintree{}}, + }}, }}, "stakingCollection": {nil, map[string]*bintree{ "close_stake.cdc": {stakingcollectionClose_stakeCdc, map[string]*bintree{}}, From 967aae8f8ff40d58ddc34e5283552885f2af0767 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Thu, 20 Jun 2024 19:14:48 -0400 Subject: [PATCH 142/160] update test helpers --- contracts/epochs/FlowEpoch.cdc | 24 +++---- lib/go/contracts/internal/assets/assets.go | 6 +- lib/go/test/epoch_test_helpers.go | 77 +++++++++++----------- lib/go/test/flow_epoch_test.go | 2 +- 4 files changed, 53 insertions(+), 56 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 01c370b46..81f9ab3e1 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -438,9 +438,9 @@ access(all) contract FlowEpoch { access(all) fun updateEpochViews(_ newEpochViews: UInt64) { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only update fields during the staking auction" - FlowEpoch.isValidPhaseConfiguration(auctionLen: FlowEpoch.configurableMetadata.numViewsInStakingAuction, - dkgPhaseLen: FlowEpoch.configurableMetadata.numViewsInDKGPhase, - epochLen: newEpochViews): "New Epoch Views must be greater than the sum of staking and DKG Phase views" + FlowEpoch.isValidPhaseConfiguration(FlowEpoch.configurableMetadata.numViewsInStakingAuction, + FlowEpoch.configurableMetadata.numViewsInDKGPhase, + newEpochViews): "New Epoch Views must be greater than the sum of staking and DKG Phase views" } FlowEpoch.configurableMetadata.setNumViewsInEpoch(newEpochViews) @@ -449,9 +449,9 @@ access(all) contract FlowEpoch { access(all) fun updateAuctionViews(_ newAuctionViews: UInt64) { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only update fields during the staking auction" - FlowEpoch.isValidPhaseConfiguration(auctionLen: newAuctionViews, - dkgPhaseLen: FlowEpoch.configurableMetadata.numViewsInDKGPhase, - epochLen: FlowEpoch.configurableMetadata.numViewsInEpoch): "Epoch Views must be greater than the sum of new staking and DKG Phase views" + FlowEpoch.isValidPhaseConfiguration(newAuctionViews, + FlowEpoch.configurableMetadata.numViewsInDKGPhase, + FlowEpoch.configurableMetadata.numViewsInEpoch): "Epoch Views must be greater than the sum of new staking and DKG Phase views" } FlowEpoch.configurableMetadata.setNumViewsInStakingAuction(newAuctionViews) @@ -460,9 +460,9 @@ access(all) contract FlowEpoch { access(all) fun updateDKGPhaseViews(_ newPhaseViews: UInt64) { pre { FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION: "Can only update fields during the staking auction" - FlowEpoch.isValidPhaseConfiguration(auctionLen: FlowEpoch.configurableMetadata.numViewsInStakingAuction, - dkgPhaseLen: newPhaseViews, - epochLen: FlowEpoch.configurableMetadata.numViewsInEpoch): "Epoch Views must be greater than the sum of staking and new DKG Phase views" + FlowEpoch.isValidPhaseConfiguration(FlowEpoch.configurableMetadata.numViewsInStakingAuction, + newPhaseViews, + FlowEpoch.configurableMetadata.numViewsInEpoch): "Epoch Views must be greater than the sum of staking and new DKG Phase views" } FlowEpoch.configurableMetadata.setNumViewsInDKGPhase(newPhaseViews) @@ -552,7 +552,7 @@ access(all) contract FlowEpoch { endView: UInt64, nodeIDs: [String]) { pre { - FlowEpoch.isValidPhaseConfiguration(auctionLen: stakingEndView-startView+1, dkgPhaseLen: FlowEpoch.configurableMetadata.numViewsInDKGPhase, epochLen: endView-startView+1): + FlowEpoch.isValidPhaseConfiguration(stakingEndView-startView+1, FlowEpoch.configurableMetadata.numViewsInDKGPhase, endView-startView+1): "Invalid startView, stakingEndView, and endView configuration" } @@ -710,7 +710,7 @@ access(all) contract FlowEpoch { pre { currentEpochCounter == FlowEpoch.currentEpochCounter: "Cannot submit a current Epoch counter that does not match the current counter stored in the smart contract" - FlowEpoch.isValidPhaseConfiguration(auctionLen: stakingEndView-startView+1, dkgPhaseLen: FlowEpoch.configurableMetadata.numViewsInDKGPhase, epochLen: endView-startView+1): + FlowEpoch.isValidPhaseConfiguration(stakingEndView-startView+1, FlowEpoch.configurableMetadata.numViewsInDKGPhase, endView-startView+1): "Invalid startView, stakingEndView, and endView configuration" } @@ -1228,7 +1228,7 @@ access(all) contract FlowEpoch { clusterQCs: [FlowClusterQC.ClusterQC], dkgPubKeys: [String]) { pre { - FlowEpoch.isValidPhaseConfiguration(auctionLen: numViewsInStakingAuction, dkgPhaseLen: numViewsInDKGPhase, epochLen: numViewsInEpoch): + FlowEpoch.isValidPhaseConfiguration(numViewsInStakingAuction, numViewsInDKGPhase, numViewsInEpoch): "Invalid startView and endView configuration" } diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index a47afd50e..2b2dec8ac 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -12,7 +12,7 @@ // StakingProxy.cdc (5.71kB) // epochs/FlowClusterQC.cdc (18.958kB) // epochs/FlowDKG.cdc (18.691kB) -// epochs/FlowEpoch.cdc (59.964kB) +// epochs/FlowEpoch.cdc (59.754kB) // testContracts/TestFlowIDTableStaking.cdc (9.241kB) package assets @@ -322,7 +322,7 @@ func epochsFlowdkgCdc() (*asset, error) { return a, nil } -var _epochsFlowepochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x6b\x73\x1b\x37\xd2\x28\xfc\xdd\xbf\x02\x71\xd5\x9b\x90\x1b\x8a\xb6\xe3\xb7\x9e\xda\xd2\xb1\xb2\xc7\x91\x64\x47\xe5\xd8\x96\x2d\x25\x7b\xaa\x52\xa9\x18\x9c\x01\x49\xac\x86\x03\x1a\xc0\x48\x61\x9c\xfc\xf7\x53\x68\xdc\x2f\x33\x24\x25\x3b\xd9\xec\x59\x7e\xb1\x45\x02\x8d\x46\xa3\xd1\xe8\x1b\x1a\x74\xb5\x66\x5c\xa2\x67\x5d\xbb\xa0\xb3\x86\x5c\xb2\x2b\xd2\xa2\x39\x67\x2b\x74\x3f\xfa\xee\xfe\x3d\xdb\xb2\x61\x37\x51\x2b\xfb\x77\xd4\xe2\xec\xe4\x12\xcf\x1a\x72\x21\xf1\x15\x6d\x17\x41\xd3\xf8\x87\xa8\xcf\x71\xd3\x09\x49\xf8\x9b\xe3\xa0\xb9\xfb\x2e\x6a\x79\xf2\xe2\x79\xd0\xe6\xe4\xc5\xf3\xe8\xd7\x67\x84\x88\xe0\x67\xf5\xe7\xfd\x7b\xf7\x1e\x3c\x40\x97\x4b\x82\x24\x5b\x1f\x34\xe4\x9a\x34\x48\xac\x30\x97\xa8\x62\xad\xe4\xb8\x92\x68\x85\x5b\xbc\x50\xb8\xca\x25\x41\x0d\x9d\x93\x6a\x53\x35\x04\xb1\x39\x22\x6b\x56\x2d\xc5\x14\x9d\xb5\x00\x7e\xa2\x40\xe9\xef\x10\xe6\x04\xda\x8b\x15\x6e\x1a\x22\x24\xea\x5a\x2a\x55\x1f\x49\x57\x04\xdd\x2c\x89\xf9\x9d\xd6\xa4\x95\x54\x6e\x90\x54\x93\x47\x23\xe8\x43\x54\x4b\x05\xac\x25\xf2\x86\xf1\x2b\xc4\xd6\x84\x63\xc9\xb8\x18\x23\x2a\x90\x90\x58\xd2\x6a\x8a\x5e\xdb\x6f\xd1\x0a\x6f\x10\x6b\x9b\x0d\x6a\x08\xbe\x26\x88\x71\xf4\x2f\x46\x5b\x18\xc0\x80\x50\xd0\xb0\xd4\xd8\xa1\x19\xeb\xda\x1a\x73\x4a\x44\x0a\x64\x46\x10\xf9\x17\xa9\x24\xa9\x51\xdd\x71\x35\x69\xdc\x9a\x4e\x73\xc6\xd1\x35\xe6\x94\x75\x42\x01\x5b\x51\x51\x93\x15\xc1\x2d\xeb\xb8\x98\xa0\x59\x27\xd5\x70\x1b\xc4\xc9\x0a\xd3\x16\x99\xd1\x93\xe9\x75\xad\xa4\x0d\xfc\xa0\x61\x92\xb6\x16\xd3\x7b\x0f\x1e\x28\x80\xa7\x9e\x70\x62\xdd\x50\x89\x68\x2b\x19\x7a\x8c\xd6\x4b\x2c\x88\x38\x54\x4d\x7e\x3b\xba\xf5\x07\xba\xa3\xd3\xf3\xd7\xc7\xdf\xa2\x57\x68\xfb\xe7\x37\xd7\xf8\xcb\x47\x68\x3a\x9d\x42\xff\x03\xf5\x41\x96\x75\xe1\xaf\xdf\x0e\xd0\x05\x91\xdd\x1a\xa9\xff\x1d\xb3\xd5\x8a\x4a\x45\xbc\x83\xdf\x7e\x73\xbd\xee\x84\xb4\x82\xf0\x68\x8c\xd0\xc5\xe5\xd3\x17\x67\xaf\x9e\xa3\xf3\x6f\x9f\x5e\x9c\xaa\x2f\x5f\xb1\x9a\x78\xbe\x00\xb2\x01\x89\x25\x43\xa2\x9b\xad\xa8\x54\x6c\x02\x78\x72\xf2\xbe\x23\x42\x0a\x58\x41\x45\xfb\x57\xa7\xff\xe7\xd2\x2c\x80\x5e\x64\x05\x4f\x2e\xa9\xd0\xb4\x9e\xa2\xa7\x52\xaf\x51\x5b\x03\xc7\xba\x5f\x26\xf0\x35\x2c\x54\xba\x49\x38\x11\xac\xb9\x26\x42\xb5\x50\xe0\x58\x27\x85\xc4\x6d\xad\x10\xc8\x10\xc1\x6d\x8d\x6a\x22\x09\x5f\xd1\x56\x77\x49\x19\xc5\xa2\xda\x92\x5f\xa4\xdb\x55\x53\xd8\xa7\xc5\xe1\xc9\x8a\x4a\xe1\xb1\xd3\x4b\x22\x08\xbf\xa6\x15\x41\xe4\x9a\xb4\xba\x2d\xa6\xad\x9b\xee\xe0\x98\x7a\xc0\x09\xba\x59\xd2\x6a\x89\x68\x4b\x25\xc5\xd2\xa0\x2a\x39\x6e\x05\x95\x94\xb5\x8a\xd8\x66\xbe\x1a\x2b\x3d\xee\x39\x50\xd1\x2c\xde\x57\x63\x74\x71\x7a\xf9\xfd\xb9\x5f\xb9\x7f\x2e\x49\x1b\x10\x15\xcd\xc8\x82\xb6\x1a\xf4\x1a\x73\x49\x2b\xba\xc6\xad\x14\xc8\x6d\x60\x8b\x8e\xde\x1b\x44\x4e\xd1\x89\xde\x9b\x0a\x88\x82\xe8\x17\x47\x24\x30\xd6\x9c\xac\x55\xaf\x7c\x6e\x20\xb5\x74\xdb\xae\xc1\x7c\x82\x2a\xd6\x34\xa4\x52\xd3\x02\xc9\xc3\x6a\x22\x2c\x27\x5d\x33\x35\x77\x03\x83\x72\x54\x69\xd9\xfb\x85\x40\x9c\x31\x89\xde\x77\x8c\x77\x2b\x54\x11\x2e\xe9\x9c\x56\x58\x12\x58\xe1\x8a\xb5\x82\xb4\x42\x8b\x0b\x0d\x8f\x77\x7a\x4e\x35\x15\x92\xd3\x59\xa7\xb6\xca\x15\xd9\xa0\x05\x69\x15\x23\x2b\x92\xae\x39\x93\xac\x62\x0d\x1a\x9d\xbc\x78\x3e\x06\x76\x26\x12\x75\x6b\xe8\xc7\x71\x5b\xb3\x95\x82\x37\x23\xb8\x62\xed\xd4\x12\x13\x26\x0e\x73\x05\x28\x7a\x3f\x54\x6c\xb5\x6e\x88\x1c\x62\x5b\xc7\x37\x6e\x0d\xf5\x1e\xee\xe5\x1d\x00\xa5\xa8\x36\xc7\x95\x14\x7a\x7b\x68\x89\xbd\xe6\xac\x22\x42\x18\x9e\x51\xf0\xb6\xb0\x8d\xc1\xc8\x0c\x18\x31\xcd\xe3\x31\x3a\x7e\xfd\xf2\xe5\xd9\xe5\xe5\xe9\xc9\x36\xc6\x99\x84\x62\x5e\x1d\x0f\xf3\xae\x69\x36\x76\xe5\x6b\x18\x2c\x1b\x3a\xd9\x57\x4f\xd1\x1c\xd3\xa6\xe3\x20\x3e\x48\x2b\x09\x8f\xc7\x99\x33\x1e\x4e\x00\xe8\xc0\x12\x86\xd2\x33\xae\x61\xfd\xd5\x8c\xb1\xdc\x85\xa5\xd5\xb8\x1a\x49\xbb\x5a\x8e\xa0\xdd\x1a\x78\x5b\x91\xb5\xee\x38\x71\x9b\x51\x20\x8c\x2a\x4e\x25\xad\x70\xe3\xf0\x56\x0c\x77\x43\x9b\x06\x55\xb8\x13\x1a\x46\xb5\x54\x07\x91\x64\x68\x89\x1b\x39\xbd\x77\x0f\x57\x6a\x7d\x46\xb8\x69\xc6\x9e\x01\xd4\xb9\xad\xd7\xe1\xc3\xbd\x7b\x4a\xf0\x87\xad\x48\xdb\xad\xf4\x2a\xc1\xea\x1c\xa2\xef\xcf\x5a\xf9\x77\xf4\xe1\x9e\x3d\x25\x22\x90\x8a\x54\x46\x4c\x3f\xfd\xfe\xf8\xf2\xec\xf5\xab\xfe\x76\x70\xb6\x80\x5c\xd8\xd2\x46\xb3\x01\x34\xfa\xbd\x07\x41\x75\x12\xbc\x65\xcd\x2e\xe8\xbd\x7a\xfd\xea\xb4\xff\xd7\x63\x2d\x01\x18\x1f\x6a\x62\xf7\x74\x3f\xda\xbf\x90\xaa\x03\x31\xd2\xdb\xe4\x07\xc2\xb5\xa0\x18\x6c\xf5\x14\xbe\x08\xa7\xfe\xc0\xa8\x6a\x46\xd8\x4a\xb5\x95\xe3\x8d\x4a\x05\x6c\x69\x25\x57\x6e\x8c\x64\xf0\x6b\xed\x19\x58\x38\x70\x92\x21\x8c\x5a\x72\x63\xd8\xd1\x30\xa8\x3d\xb1\x70\x57\x69\xa1\xa4\x37\x67\x46\x7e\x18\x53\x9f\x38\x80\xcc\xe8\x9e\x9b\x8e\xc5\xb5\x62\x1d\xec\x27\x2b\x81\xab\x8e\x73\xd5\x4b\x8f\x07\xdb\x84\x0a\xbd\x95\xe1\x6c\xb2\xfd\x4d\x3f\xbd\xa8\xff\xf3\xff\x4f\x72\xc8\x73\xca\x85\x44\xd7\x94\xdc\xa0\x11\x6d\x95\x4c\xa6\xd7\x64\x6c\x45\x52\x34\xce\xd4\x75\x86\x4e\x3f\x50\x72\x33\x00\xb8\xc1\xbb\xc2\xfd\x42\xa4\xa4\xf2\x23\x99\x1f\x9e\xea\xef\x4f\xdb\xfa\xa3\x8d\x1a\xce\xa6\xc5\xcd\x10\x5c\x26\x71\x83\x9e\x7d\xf7\xfa\x9f\x80\x0e\xa9\xd1\x6c\x83\x70\xd3\x98\xe3\x48\xeb\x21\x0d\x59\x68\x1d\xaa\xb8\x44\x7e\x30\xa9\x80\x5d\x00\x98\x43\xf4\xfd\x33\xfa\x4b\xcf\x70\xa2\x5b\xaf\x9b\x8d\xc2\x5c\x8d\x04\x83\x17\x21\x47\x5d\xcf\xd4\x94\x6b\x73\x54\x70\x72\x83\x79\x6d\x84\x28\x48\xb5\x99\x12\xa4\xb4\x76\x80\xd6\x9c\x5c\x2b\x4d\x3c\x81\x04\x28\x2a\x91\x76\x01\x38\xf4\xa1\x09\xd6\x8e\x42\xb5\x7f\x20\xd6\x49\x84\x13\x35\x70\x98\x32\x6f\x35\x2c\x3f\xa6\xfa\x65\x5c\xdc\xb8\x05\xed\x2c\xdd\xb8\x37\xfd\x07\x26\x74\x77\x60\x8d\xca\x7a\xe6\x0e\x69\x4d\x42\xe0\x0c\xfa\x2b\xa9\xfb\xb4\xbc\x6e\x5d\xb1\x95\x62\xdc\x60\x2e\x7d\x7b\x5b\x0d\xb8\xc3\xd6\x4e\x40\xa2\x97\x9d\x90\x8a\xa0\xac\x25\x68\xc1\x09\xd6\xc7\x2a\x06\x11\x13\x01\x1b\x94\x11\xd3\x1d\x45\xc2\xd9\x2e\xf3\x44\x37\x54\x2e\xdd\x0e\x40\xb4\x9d\x33\xbe\xc2\xf1\xc6\x0d\xd9\xf1\x30\xfa\x56\xf5\x39\x3b\x99\xb8\x3d\x7f\x45\x36\x13\xab\x79\x94\xfe\xc6\x75\xcd\x41\x25\xe2\xac\x21\x93\x08\x94\x05\x11\x60\x30\x41\x37\x84\x2e\x96\x72\x02\xfb\x72\xc5\x38\xf1\x38\xc1\xc8\xed\x9c\x1d\xa2\x1f\x73\x5f\xc1\xf4\x95\xf9\xf5\xa7\xbd\xa5\x64\x89\x0b\x3e\x8a\x98\xec\x07\xbc\x45\x62\xa9\xe5\xd7\xea\x35\xc2\x42\xd0\x45\xbb\x52\x9c\xd0\xc7\x62\xa7\x58\x59\xd1\x0d\x81\x46\xe6\xf0\x6a\xa8\x90\x11\x4c\x4e\xd6\x9c\x08\xa2\x14\x30\xc5\x8a\x0e\xbc\xd6\xd1\xf5\x9e\x51\x2c\x01\xaa\x99\x62\x8b\xb3\x13\x61\x06\x37\xfa\xe3\x12\xc7\x10\x0d\x88\x89\x66\x27\x6d\x14\xe8\xc5\xd3\x42\x15\x0c\x86\x80\x6f\x8d\x5e\x61\x7c\x36\xc2\xac\xa2\x73\xe1\x4c\xcd\xff\x4a\xeb\x27\x58\xc7\x2b\xf0\xb6\x68\xe5\xbf\x25\x42\x68\xab\x40\xe1\xa6\xa6\x4b\x70\x4d\x38\x12\xc4\x58\x2f\x08\x37\x0b\xc6\xa9\x5c\xae\x00\xbb\x08\xe0\xd0\xe6\x57\x1f\x3d\xc4\x05\x0c\x79\x88\x2e\xa4\xb2\xb2\x0a\x38\xd5\x04\xd7\x0d\x98\xae\x6c\x8e\x88\x5a\x02\xad\x28\x9b\x05\x38\x79\xf1\xdc\x9b\x31\x92\x29\x11\x60\x95\xdb\xda\xb6\xb1\x18\x44\xb0\x03\xdb\xd5\x88\xb5\x13\x37\x92\xf6\x8b\x90\x8a\xce\xa9\x81\x42\xf8\x0a\x10\xc0\xde\xd2\xd2\xec\xd8\x76\xab\x19\xe1\xf1\x86\x06\xdb\x01\x6b\xd4\xbc\x46\x8e\xd8\x4c\x89\x61\x05\x3e\x90\x98\x6a\x05\x05\xc1\x4a\x2f\x9f\x35\xac\xba\xd2\xab\x0c\xa0\x8d\x18\x8b\x40\x5b\x91\x86\x16\xf4\x9a\xb4\x8e\x38\x13\x44\x25\xaa\x70\x8b\x04\x9e\x93\x66\xd3\x63\x84\x84\xaa\x95\xfa\x9c\xbc\x78\x0e\xba\xf6\xa3\x67\xf9\x46\x49\xdb\x7c\xb5\x43\x9b\xc7\x85\x36\xf9\x61\x88\xf9\x82\x48\x54\x77\xc6\x06\x2d\xb3\xc9\x44\x51\x5d\x90\x8a\xb5\xb5\xe7\x6d\xdd\xf5\xc4\xf4\xcc\xf1\x48\x86\x50\x67\x29\x78\x00\xfb\x86\x88\x96\x58\x0f\x76\xb0\xe6\xa4\xa2\x42\x21\xf6\x7d\x4b\x7f\x81\xfe\xc9\xf8\xa7\x6d\x7d\x49\x57\xc4\x0e\xdf\x7b\xf4\x16\x8d\xdb\xe1\xa3\x17\xdc\xa5\xee\xf0\x75\x20\xbd\xab\xcb\x1f\xc0\x01\x20\x70\x46\x02\x34\x25\x58\x02\xcb\xbc\x67\xe2\x0e\xee\x12\x2b\x65\x98\xb4\x7e\xc7\x0c\x9d\xcc\x66\x3e\x77\x38\x9b\xc9\xfb\x0e\x37\x96\x21\x6d\x27\x9a\x1f\xd1\x4e\xe1\x0a\xf6\x28\x20\xb2\xeb\xf1\x7c\x09\x7a\x9d\xe8\x1a\x69\x8f\x88\x37\xc7\x08\x2f\x16\x5c\x69\x9f\xc6\xf1\xa1\xe6\x98\xc8\x74\x2b\xa0\x23\x58\xa1\xb0\x0e\x04\x2e\xe2\xa4\x22\xf4\x9a\x68\x35\x11\x07\xde\x1d\x2b\xb0\x23\x28\x6f\x8e\x11\xb8\xe8\xb4\xe2\x5b\x70\xe2\x80\x56\x08\xe2\xcd\x1e\x19\xc6\x4f\x43\x44\x30\x6b\x2b\xc4\x7b\xa5\xfa\x9b\xe3\x92\x5c\xd7\xb4\x50\x2b\xb2\xee\x66\x0d\xad\x94\xf2\x20\x3c\xb7\x19\x19\xaa\x3d\x2a\xa4\xad\x58\xad\x04\x93\x50\xfa\x3b\xa8\x77\x0d\xbb\x39\x58\xb0\xf8\x50\xe2\x9b\xb5\x64\xa8\xa1\x33\x8e\xf9\x06\xdc\x22\x2d\x5a\x92\x5f\x0e\x4c\xf7\x58\x20\x3e\xe7\x4c\x89\x59\x37\xb6\xe2\x5e\xe9\xf4\x05\x43\xfe\x09\x9a\xb3\xa6\x61\x37\xda\x70\x00\x9f\x61\x5b\xd3\x6b\x5a\x2b\xa6\x51\x08\x3b\x90\xf5\xd5\xe2\xbc\x9b\xbd\x20\x1b\x45\x06\x7d\x70\xfc\xd4\xaf\x01\xbf\x25\x15\xbb\x86\x43\x6b\x68\x23\x62\xb5\xa0\xaa\x9d\xee\x04\x9b\x12\xeb\x33\x8e\x5a\xdf\x9c\xb4\x27\xb4\x73\x01\x79\x9f\x98\x73\x0a\x39\x0c\x16\x04\x9c\x30\xca\xe8\x6d\xd1\xe9\xb3\x97\x10\x4a\x20\xc6\xe6\xe8\x1f\xaa\x13\x7a\x14\xd5\x80\xd3\x9a\x14\x0c\x59\xc5\x84\x06\x44\x34\xb4\x3a\x3a\x94\x2d\xe1\x50\x10\x6b\xad\x1c\x4e\xd1\xe5\x52\xcd\x22\xa5\x80\x59\x74\x4d\x71\x77\x8a\x46\x5e\x24\xc9\x50\xb7\xae\x0d\xe2\x94\xa3\x86\x55\xb8\xf1\x6d\xf5\x9c\xac\x66\x02\xc6\xbd\xc1\xcc\x21\x61\x9c\xdf\x58\xe2\x41\xc5\xdf\x2e\xd3\x68\xab\x78\x31\x2d\x37\xa7\x7f\x9a\xc6\x0e\x2a\x28\xb8\xdb\xff\xf3\xb4\xf4\x1e\xea\xde\x59\x49\xef\x85\x7b\x27\x1d\x3d\x86\xfa\x07\xaa\xe8\xb6\x5b\x26\x9c\x9f\x3a\x24\x95\x74\xb2\xe2\xe9\xbf\xda\xf6\x7f\xb5\xed\xff\x6a\xdb\x77\xd7\xb6\x07\xa4\xc3\x9b\x63\x81\xd6\x18\x4e\x33\xc3\x89\x7d\xc7\x2c\xc4\x36\x05\x01\xc6\xb3\x5a\x16\x78\xe1\x0e\xd8\xfc\x60\x86\xdb\x3a\x1a\xa3\x13\x36\x14\x25\xf0\x8a\xf8\x18\x89\xd2\x90\x6c\xdc\x5e\x9f\xb4\x05\x45\xed\x07\x26\xc9\x09\x96\xb8\x5f\x5f\xb3\x2d\x4a\x12\x02\x78\x3a\xd0\xd8\x76\x9c\x5e\x04\xe7\x58\xab\x0e\xcd\xc6\xc6\x2c\xd5\xac\x39\x39\x00\x3d\xc3\xa9\x80\x20\xba\x45\x07\x47\xf3\xbc\x6b\xd4\xc8\x53\xf4\x8a\x59\xc5\x14\x02\x54\x74\xb5\x6e\xa8\x0d\x37\x45\x63\x44\x52\x18\xbd\xfc\xfe\xe2\x12\x2d\xf1\x35\x89\xf6\x6f\x65\x8c\x18\xe2\xfc\xf0\xda\x59\x58\x79\x93\x20\x41\x22\x1a\x42\x91\xc2\x81\xf8\x24\xda\xe5\xa0\x7a\x99\x79\x58\x8f\xed\x49\x61\xd8\xba\x42\x2b\x22\xb1\xd2\x72\x10\x9e\x81\x43\x37\x34\x09\x62\xbb\xeb\x69\xd3\xa0\x25\x15\x92\x71\x98\xbd\x56\x3d\x5c\x77\x48\x3a\x61\x5c\x59\x7b\x84\xaf\x70\x0b\x8b\x97\x69\x4e\x42\xf2\xae\x32\xaa\xd3\x4b\xdb\xf5\x43\xce\x42\x9a\xc8\x73\x1a\xe8\x4f\xb1\x1b\x3b\x04\xda\x10\x99\xaa\x51\x85\x63\x4b\x1d\x4f\x9a\x7b\x98\xb3\x52\xec\x16\xd1\x73\x11\xce\x6b\x5c\x1a\x41\x01\xb0\x47\xd0\xa0\x76\x62\xf3\x21\x86\x11\x16\x12\xf3\x48\x33\x19\x52\x4c\x76\x03\x49\xe2\x00\xca\x56\x80\x59\x10\x6b\x08\x59\xd5\xee\x74\xdb\x00\x85\x90\x81\xda\xb7\x2e\x5c\xb0\x7d\x2d\xaf\x31\x2f\xc6\x0a\x4a\xd6\xa1\x6a\x80\xf0\x4a\xad\x7c\x3a\x98\x64\x5a\x0d\x08\x76\x0b\xe8\x44\xea\x24\xa5\x52\x04\x21\x9d\x5e\x2c\x34\xfc\xa7\x1a\x7c\x59\x5d\x35\x38\x7e\xc3\x09\xbe\xaa\xd9\x4d\xfb\x53\x82\x25\xc7\xd5\x95\x40\x74\xee\x28\x02\xe2\x05\x7c\x17\x41\xa8\x66\x70\x5d\x3d\x26\xe2\x1c\xd3\xfa\x10\x7d\xc3\x58\x93\x13\x83\xf1\x05\x6e\xe9\xaf\xfa\xb4\x64\x73\xef\x4f\xf5\xaa\x20\xd8\x74\x46\xc2\xc7\xbe\x02\x97\x67\xa3\x63\x5f\x88\xb3\x4e\x99\x6a\x6c\xa6\x4e\x3c\xc6\x61\x97\x38\x1d\x6e\x60\x07\xee\xea\xc2\xcd\xd1\x7f\xa3\x3d\x0b\xc7\xde\xb3\x10\xd8\xf9\x3e\xb5\xcf\x86\x69\x7b\x29\xb5\x93\xa7\x21\x1f\x3e\x3c\xac\xb0\x10\xac\xa2\x70\xb4\x3a\xfb\xf0\x24\xc8\x45\x79\x41\x36\xe8\xb9\xcb\x45\x49\x1c\x40\x60\x97\x1a\x45\xdb\x1d\x21\xda\x05\xe3\x94\x3c\xa9\x64\x78\xe1\x24\x08\x8e\x00\xd8\xa7\xd6\x1e\x50\xa7\x4e\x5b\x93\x5f\x0e\x51\x43\xda\x85\x5c\xa2\x03\xf4\xa8\x97\x00\xf5\xd5\x22\x71\x30\xb8\xa6\xb4\xa5\x72\x94\x59\x9b\x28\xfc\x84\x22\x2e\xfd\x29\x15\x57\xc9\xef\x24\x0d\xde\xa6\xbd\x0b\xf2\x23\x69\xd4\x1f\x22\x74\x9f\x7d\xc2\x04\x71\xc7\xdd\x5c\x50\x51\x9f\x8c\x96\xe3\xf0\xa4\xd2\xf4\x6a\xe6\x53\x6b\xe7\x1f\xd9\x33\x28\x6f\x02\x67\xcf\x11\x90\xb7\xf0\xa3\xa5\xac\x6a\x61\xff\x9f\x37\x33\x04\x46\x47\x96\xd4\x45\x48\x01\x95\x35\xb8\xe0\x8b\xbc\x43\x48\x71\x74\x14\x2d\x40\xde\x38\x92\x87\xe8\x08\xfd\xf8\x53\x5f\x1b\x90\x54\xe8\x08\xcd\x71\x23\x48\x89\x60\xc9\x22\x02\xe9\x92\xef\x0a\xdd\xdc\x12\xaa\xf6\xee\x8f\xbc\xa1\x59\x37\x74\x64\x57\xd0\x35\xf9\xfd\x5e\xb6\x71\x2a\x58\xb4\x31\x9a\x77\x2d\xaa\xd8\x7a\x33\x1a\x1f\x66\xda\x49\x38\x02\x27\xb2\xe3\x2d\x0c\xb4\x2b\x58\x41\xe4\x65\x40\xd9\xd1\xcf\xa8\x25\x37\x09\x9f\x8f\x93\x61\x4a\xcb\xe3\x7b\xed\x31\xf2\xdb\x70\xd5\x46\x3f\x9b\xb3\xc4\x9d\x58\x3b\x9e\x6b\x45\xf4\x52\x86\x48\x40\xef\x8d\x24\xb0\x8d\x43\x31\x38\xee\x06\x46\xb7\xac\x16\xfc\xb5\xc7\xb8\x6e\xeb\x8b\xd1\xfb\x6a\x48\x32\x14\x31\x88\x18\xf2\x7d\xb5\xcf\xaa\x9c\xbc\x78\x0e\x42\xff\x05\xd9\x8c\xae\x32\x19\x33\xc0\xd1\x57\x31\x3b\xa3\x38\xf1\xc9\xf1\xac\xb5\x55\x20\x2f\xdd\x38\x10\x94\xe5\x3f\x83\x94\xb7\x76\xe1\xcd\x89\xa7\xf5\x8a\xb6\x0f\x1e\x3c\xe8\xd3\xd4\x8f\x59\x3b\xa7\x8b\x00\x29\x7b\x66\x6a\x9f\x86\xd2\x35\x94\x42\x09\x79\x7b\xb8\x45\x4a\x6b\xe7\xdb\xf4\xbb\xb6\x5b\x29\x79\x24\xce\x5a\xd8\x69\xb9\x3a\x19\x76\x30\x14\x7b\x15\xf7\x19\xfd\xac\x87\xb5\x7d\x8b\x64\x4b\xc6\x41\x47\xba\x4f\x69\x9d\x06\x66\xb5\xab\x9e\x1c\xcf\xec\x22\x4a\x6d\xda\x73\x8a\x71\xe7\x3d\xe7\x1a\x77\xbe\xe5\xa4\x41\x79\xae\xaf\x16\xda\x1b\xb4\xc3\x7c\xad\x7b\x67\xcf\x99\xda\x6e\x7b\xce\xd1\x76\xdb\x6f\x76\x5e\x29\xb6\x6a\xb0\x9b\xea\x56\x86\x3d\xce\x35\x0f\x85\xe9\xa3\xff\xd9\x36\xd1\xac\xa3\x92\xff\xdd\x2a\x05\xd3\x37\xe1\xac\xbb\x3a\x08\x7c\xf7\xde\x89\x6b\xd3\x43\x27\x44\x4b\xa2\x94\x48\x9d\x1a\x1b\xe6\x8e\xad\xf1\x46\x19\x65\xb4\xad\x38\xc1\x82\x08\x44\xae\x09\xdf\x14\x32\xcf\x20\x0c\x73\x8d\x9b\x8e\x80\x50\xe9\x1a\x49\xd7\x0d\xf5\x42\x04\x12\xd8\x64\x98\xd9\x26\x19\x5a\x10\x19\x38\x15\x61\xa8\x5e\x02\x2b\x00\xba\xe7\x99\x41\xe6\x9c\xf0\x8a\xb4\x12\x2f\x48\x6e\x01\x16\x08\x3d\x04\x60\xf4\x33\x5a\x67\xd0\x8a\xf4\x1e\x82\x82\x8e\x02\x28\x25\xb2\x83\x7e\xdd\x23\xda\x26\x5b\x25\xc3\x64\x60\x2f\x4d\x06\x19\x70\xb2\x13\xf5\x76\x14\x90\xc9\x37\x7b\xc9\x99\xbe\x9f\x76\xdc\xc8\xf9\x97\x7b\x6d\x88\xed\x0a\xe4\x96\xd5\x1d\xfa\xb9\xff\xc8\xd5\xe7\x63\xe8\xa7\x36\x59\xbb\x74\xa5\x34\x29\xd7\xee\xd4\x49\x19\xc8\x4e\xb7\x61\x19\x9c\xf9\xa1\x21\xac\x4b\xe1\xf4\x06\x7f\x14\x1a\x29\x33\xd4\x9c\x43\x69\x66\xc1\xd8\x0f\xa0\x43\x8e\x21\x32\x35\x99\xeb\x40\x05\xe2\x64\x4e\x38\x69\x2b\xeb\xe8\xb2\x26\x0b\x36\x83\x0a\x89\x57\x6b\x9b\x3c\x6f\xba\x39\xc0\xb8\x69\xd0\xbc\x93\x90\xf9\x1f\xe3\x2a\xa6\xe8\x6c\x8e\xde\x19\x8f\xb7\x4e\xb6\x00\xc0\xef\x60\x8e\x6d\xe6\x4b\x97\x4b\xd2\x3a\xb8\x70\xab\x22\x99\x3c\x15\x26\x66\x31\xdb\x1c\xda\x86\xae\x43\xe2\x5b\x07\xad\x6f\x7e\x69\xd1\x47\x5f\xfa\x70\xc1\xdf\xd0\x28\x47\xea\x80\x93\xb9\xf9\xef\x38\x82\xdd\xe7\x9f\xbc\x84\x25\xec\x55\x80\xdc\x68\x36\xe4\xd4\x1f\x93\x48\x5d\x25\x75\x12\x9d\xc8\x83\x03\x66\x81\x8c\x9b\x2e\x59\xbf\x5e\xb8\x7e\x86\xbd\x90\x1d\xa9\xcb\xa0\xf7\x8f\x77\x14\x70\x70\x6b\x52\x76\x14\x1e\xb3\xd5\xba\x93\x8e\x9b\xc4\x0d\x95\xd5\x52\x67\x05\x28\xc4\x66\x58\x40\x76\x10\x62\xf3\xb9\x20\x52\xfb\x81\x3c\x9a\x86\x34\x0f\x7c\xb7\x69\xef\xc1\xb0\x20\xf2\x32\x64\x99\x67\x8c\x5b\xed\x31\xe7\x0f\xa7\x7a\xd8\xff\xf4\x5b\x7e\xd3\x84\xf1\xb4\x92\x3e\xcc\x7d\xb6\x5f\xc4\x82\xa5\x23\x24\x65\x8e\x49\x61\x59\x27\x45\x32\xa7\x32\x3e\xc1\xeb\xc8\xf1\x5d\xa1\x95\x1f\x43\xef\xab\xe3\x82\x2f\xa3\x30\xf7\x78\x0f\xf6\x8b\xc9\x6f\x59\x53\x6b\x75\xe4\x9d\xbb\x4e\x33\xd5\x5b\xeb\x9d\xdd\x74\xce\xdd\xe6\xc4\xd8\xac\x21\x2e\xc0\x10\x6e\x55\xeb\x07\xb4\x8e\x47\xdf\xdc\x5a\x40\x87\x46\x30\xef\x60\x1b\x19\x1d\x26\xbe\xf5\xe5\xa5\x9f\xb6\x9c\x5a\x26\xfb\x8c\xa7\x42\x70\x05\x87\x71\x12\x4e\x2a\xc6\x5d\x7a\xbc\x8b\x97\x00\x5b\x9b\xcc\xb7\x20\x4f\xdf\xcb\x5d\x70\xfa\xe9\xb1\xb4\xd4\xd6\x8a\xac\x1f\xee\x2d\x30\xa4\x28\x80\x85\xf9\xb8\x7d\x1c\x47\x71\x18\x47\x2d\x6d\x10\x9d\xeb\x43\xa6\xfd\x42\xa2\x39\xeb\x4c\xf0\xd0\xc5\xbc\x3d\xb9\x7c\x5c\x47\x59\x78\xda\x8e\x85\x6f\xd4\xa9\x29\x74\x04\x6c\xc1\xd9\x8d\x12\xf3\x35\x85\x03\x1f\xf3\x8d\x83\x56\x33\x22\x90\xa2\x1e\xb8\xbe\x75\xec\xbd\x61\xb8\x56\x78\x81\xb6\x09\x7b\x3e\xba\x83\x43\x85\x69\x91\x49\x67\xb3\xa7\x23\xff\xcc\xe8\x67\x3d\xc1\x7c\x17\x47\xcd\xfe\x11\xec\x0d\x3a\x07\xbe\xb1\x34\x3b\x71\x58\x83\x8f\xae\x99\x4f\xcd\x34\xa7\x66\x9a\xd3\x19\xe3\x9c\xdd\x3c\xf9\xfc\x83\x86\x9d\x80\xfe\xfd\xeb\x91\xa2\xfa\xa1\xee\x6b\xa1\x5e\xe8\xbe\xe7\x58\x2e\xd3\x7d\x99\x8c\xff\x96\xcc\xd1\x51\x01\x9b\x1f\xc3\x79\xfd\x94\xee\x6d\x2f\x91\x02\x38\x53\xed\xc2\x8a\x5a\xfe\x7e\x2f\xff\x9f\xe9\xd9\xd2\x26\xdd\xa8\x17\x58\x27\x1f\xac\x58\xad\xb9\x27\x76\x86\x99\xad\x6a\x22\x9f\x3e\xf8\x97\xb1\x46\x79\xbb\x82\xb6\x8e\xaf\x49\xba\x82\x2d\xb9\xf1\x3b\x37\xfa\x31\xa4\xdd\x9a\x93\xa2\x1f\x46\x87\x8a\x43\x69\x8b\x8e\x8e\xd0\x43\xf4\xdb\x6f\x51\xe3\x51\x30\x8a\xf3\xda\x7e\x7d\xd4\x0f\xe4\x00\x3d\x42\x9f\x7f\x1e\xc1\x28\x81\x78\x62\x40\xac\x39\x5b\x33\x41\xea\x10\xc6\x68\x3c\x3e\xcc\xd6\xed\xfe\xb1\x16\x28\x40\xe3\x4d\x1a\x48\x85\x1d\x6c\x4b\x04\xcc\x25\xb1\xb7\x79\x34\x70\xd3\x9a\x71\x77\xe5\x32\xbb\xea\x73\xbf\xb0\xe0\xb7\x65\x79\xdc\xc9\xe5\xe8\x65\x27\xb1\x24\x63\xf4\x89\xf8\xbf\xcc\xfc\x05\x4a\x97\xf6\x00\x16\x82\xc0\xad\xba\xf4\x07\xf5\x59\xa5\x4b\x75\x74\x54\x5a\xc1\x49\x4f\x67\x21\xc0\x80\xb2\xcb\xa5\x18\xd7\x23\x0d\xa7\xd5\x8a\x8a\x15\x96\xd5\xd2\xa7\xe2\x19\x90\xe2\x7e\x06\xb3\x6f\x57\x86\x88\x6e\x9b\x7f\x84\x7e\xf9\xb4\x2d\xee\x39\x9b\x2e\xf2\x36\x48\xa7\x1a\x8d\x6d\xa8\x27\x51\x6e\x75\xce\x95\xcd\xf3\x5a\x99\x2c\x68\x8c\x96\xe4\x17\xb5\xff\x55\x07\x36\x47\x8f\xbf\x52\xa7\xa1\x1a\x42\xd9\x60\x23\x3a\x25\xe8\xd1\xff\xa0\xd9\x46\x12\xa1\xb8\xf3\xd1\x57\x7f\x47\x33\x2a\xc5\x38\x02\xfd\x8e\x2b\xa1\x2f\xe9\xac\x31\xa8\xbc\x33\xa2\x48\x89\x1c\xa3\x75\x8d\xfe\xae\xa1\xf8\x9e\xa0\x56\x42\xf3\xef\xd8\x0d\xa8\x1c\x31\x90\x27\xba\xe7\xd7\xa3\xf1\x54\xb2\x6f\xe8\xe2\xb4\xad\x29\x6e\xbf\x51\x40\x46\x25\x28\xdf\xd2\xc5\xf2\xd6\x60\x20\x20\x1b\x90\x11\x1d\x19\x2a\x4e\x75\x0e\xf1\xb7\xe4\x97\x91\x1f\x66\x3c\xad\x58\x5b\x61\x39\xea\x69\xf3\x1d\xbb\x19\x7b\xd8\x45\x66\x0e\x07\x9b\x9a\x10\xe0\xd1\x11\x7a\xfc\xd5\xe4\x5e\x99\x5d\xdf\xee\xbf\x7e\x9e\x5b\xc7\xf7\xd2\x43\x22\x1c\x3f\x3d\x2d\x02\x5b\x65\xa2\x56\xfd\xec\x64\x52\xbc\x07\x98\x9d\xe4\x10\xac\xcd\x45\x6e\x6c\x30\xb8\x11\x0c\x28\x9d\xd3\xe7\xae\x8d\x3b\x6b\xda\x84\x53\x87\xe0\x1b\x7f\x8a\xff\xbf\x1f\x41\x49\xa8\xa0\xda\x4a\xa0\x9f\x82\x7a\xf7\x0e\xea\x56\x00\x29\x9d\x2a\x94\x0d\xa7\x78\x0b\xab\xd6\x81\xd4\x53\xbb\xcb\xfd\xb1\xcb\x70\xdf\x12\xcc\xe5\x8c\x60\xb9\xf3\x90\x4b\xdb\x63\xff\x61\x7b\x44\xf9\xbb\x40\x87\xdb\x32\x78\x41\xd0\xf7\x8c\xfd\xd6\xce\x46\x07\xc6\xc1\x31\x00\xb9\xd9\x82\x79\x43\xd4\xa9\x7f\x73\x4a\x1a\x63\x3b\x87\x43\x3a\x92\xc0\xaa\xf4\xdc\x60\x57\xb2\x4e\xc3\x86\x69\x81\x3f\x49\xab\x17\xfe\xef\x3e\x6b\x29\xd7\x2e\xd4\xc7\x2f\x4f\xc6\x4e\x6a\x17\xfa\xbf\xa6\xf1\xbd\x7e\x7d\x6c\xe8\x4b\x2e\x66\xb6\x7a\x62\x36\xf9\xae\x10\x56\xc8\xcf\x0c\x3f\x3a\x15\x3f\xe0\x86\xd6\x30\x54\xe4\x73\x1a\x99\xce\xdf\x91\xf6\x30\xc4\xb6\x60\x14\xf5\x3a\xef\xca\x07\x60\x7d\xb5\x80\xe1\xf6\x83\x6c\x9d\x77\x65\x98\xb0\x67\x01\x60\xb4\x26\xe3\x43\x74\xff\x15\xb9\x31\xb6\x07\x7c\xe5\x04\x57\x7a\x2d\x16\x89\x6e\xa5\x98\xc6\x11\xaf\xad\x21\xcd\x4e\xaf\x09\x84\x03\xee\x27\x47\xed\xbd\x9e\x15\x2d\xcd\xa4\x10\x6b\x8a\x51\x2d\x19\xee\x65\x1e\x34\xd4\x0d\xb8\x30\xfc\xe6\x3f\x99\x0f\x93\xa9\xfe\x19\xfc\xb5\x33\x40\x68\xa4\x18\x70\x1f\xe6\x6b\xc9\xcd\x1f\xc2\x80\x49\x24\x30\xa1\xeb\x1e\xbc\x68\xc9\x16\x30\xa3\xff\xfb\x3f\x99\x15\x3f\x9d\x48\x8c\x48\xf8\xe7\xb2\x63\xc8\x8a\x8a\x35\x3f\x15\x3b\xba\x70\x6d\x34\xf7\x3d\xd8\x30\x73\xac\x6b\x56\xd4\xff\x3f\xcc\xfd\xee\x77\xe1\xc8\x63\x6f\xe2\xbb\x21\xa6\xa1\x2f\xf5\xfe\xdb\x24\x2e\x62\xc9\x6c\x4c\x6b\x5f\x83\x28\x25\x60\x79\xf0\xd4\x86\x6e\x18\xae\x9f\x64\x53\xb2\xd6\xf2\x03\xd3\xec\xc1\xdc\x02\x88\x26\xbe\xe3\x18\xca\x28\x1d\xb9\xe9\x4d\x90\x64\xbb\x43\xde\xba\x5a\x7d\xe1\x6b\x72\xf3\x6a\x7b\x04\xfb\xdf\x4d\x78\xdc\x86\xed\xf3\xd9\xc7\x73\xdf\x83\x96\xcf\xbe\x7b\xfd\xcf\x8b\xfe\x08\xb5\xda\x50\x5b\x83\xb6\xff\x6e\x24\x45\xda\x23\x16\x84\x51\x9f\x1c\xa1\x47\xd3\x87\x46\x9b\xd3\x19\x03\x7e\x53\xc9\x1b\x42\x5a\xf4\x2b\xe1\x0c\x04\x15\x6b\xc9\x1d\x57\x68\x30\xea\x1f\x21\x56\x5c\xa8\x07\x0f\xd0\x69\x0b\x41\x06\xc6\x51\x4d\x05\xfc\x17\x77\x92\xad\xb0\xa4\x95\x4b\x93\xa8\x70\x53\x75\x8d\x2d\x1a\xd7\xd6\x68\x8d\x37\x70\x51\x6e\xab\xfa\x67\x20\x99\xf4\x36\x3d\x56\x3d\xfa\x19\x11\xfd\xbf\x72\x76\xdb\x16\x79\xa2\xba\x14\x45\x48\xcf\x70\x7b\x09\x12\x83\x58\x41\x8c\x6c\x85\xee\x85\x62\x2f\x59\xc8\x8a\xca\xf0\xd2\xec\xe9\x35\x69\xe5\xa8\xe4\xbd\x8f\x4f\xd3\x2d\xb9\xc7\xbb\x24\x17\x0f\xa6\x27\x6f\xcd\xcd\xe8\x69\x9d\xe5\x69\xc4\xed\xe0\x8e\x6d\x76\x19\xc7\x7e\xb6\xdd\xbb\x0c\xdb\x96\x6f\x41\x86\x2d\xb6\xdd\x7a\x43\xfd\x37\xd3\x0a\x48\xed\x79\x01\x2c\x84\xd0\x7f\x0b\xc9\x7e\xb2\x28\x65\xc8\x32\xc8\x87\xd2\x6c\xa8\xa1\xbf\x0a\xa7\xb9\x49\x96\x66\x2c\x21\xe3\xec\x83\xbc\xfb\x2d\xf7\x8c\xf3\x3c\xe6\xb9\xb9\x33\x71\x76\x82\x68\x6b\x17\xb1\x80\x32\x40\x9f\xe2\xf5\x9a\xb4\xf5\x68\x60\x88\x91\x06\x71\x68\x40\x8d\x53\x37\x70\x86\xb6\xd5\x31\xfd\x85\xcb\x30\x31\x1c\x7d\xd9\xcb\xae\xd1\x4f\x2e\xb1\x26\xbc\x2d\x90\x0e\xf1\xd5\x2d\x86\x18\x7d\x85\xfe\x56\x18\x67\x3c\x38\xd0\xe3\xdb\x0c\xf4\x78\x60\xa0\x8c\x61\x94\x6c\x89\x6f\xe4\x43\x82\x4c\x2c\x04\xd2\x36\x79\xd4\xc0\xdd\x8f\x08\xa5\x52\xae\xdb\xfb\x5b\xec\xc0\x06\x79\x83\xe0\xde\xb9\x9b\x6e\xa9\x95\xbb\x0a\x6b\x04\x54\xde\xa6\x24\x27\xf2\xef\xf2\x7e\xb1\xcc\x08\xff\xca\xdb\x96\xee\xf8\xe6\x6c\xd8\xdf\xef\xab\x42\xbf\xaf\x76\xe8\xf7\xb8\xd0\xef\xf1\x40\xbf\x54\xca\xc5\x7f\xf7\xb5\x77\x12\x2f\xfa\xb3\x97\xd2\xa1\xf0\xcb\xbe\xca\x7b\x85\x02\xcf\xff\x3f\x11\x79\x65\xed\xe3\x01\x3a\x27\x7c\xce\xf8\x4a\x20\x81\x5b\x25\xdf\xaa\x25\xa9\xae\x44\x50\xc2\x8f\x5d\xd3\xda\x05\xfd\xa2\xf4\x2e\x28\xa7\x03\xf5\xf8\x48\x2b\x3a\xe3\xd6\xd5\x97\x45\x69\xbb\xf8\x5f\xd1\x30\x07\xe8\x12\x3c\xbf\x50\x17\xf5\x5a\x19\xcd\xc6\x97\x1e\x43\x4c\xfa\x3c\x75\x45\x10\x6d\x4d\x56\xa8\x2e\x51\x0b\xa8\x4d\x60\xaf\xca\xea\x52\x0f\xe8\x6b\xf4\x30\x29\x0f\x37\x8f\x73\x39\x6c\xa1\x10\x8b\x40\xfc\x03\x54\xbf\xcd\xd5\xcd\xf8\xda\xf6\xfb\x0a\x5d\x33\x69\xed\xdc\xfa\x6a\xe1\xea\x11\x92\x56\x51\xa9\x26\x4a\x18\x43\x7c\xa3\x2d\xd4\x1f\x49\x2e\xb6\xa7\xda\x49\x78\x2f\xf9\x9c\x93\x63\x58\x8a\xd1\x27\xd7\x3d\x52\x2d\x61\x5f\x9d\x7f\x37\x2f\x48\x8c\xe7\x81\x9b\xd5\x97\x8f\x26\x77\xf5\xc3\x05\x4e\x0e\x92\x83\x2f\x84\xbf\xd5\xe7\xfe\x59\xab\xd9\xc0\x4b\xc7\x04\x47\x5d\x3c\xc4\xde\x7a\x8a\xb8\x65\xd0\x6a\x80\x9a\x24\xc1\x6e\x0a\x6a\x79\x8a\x25\xeb\x9a\x3a\x67\xdc\x5b\x9d\xff\x3a\x56\x57\x8e\x3b\xef\xa1\x0e\x4c\x75\x05\xe8\xe6\x9f\x0e\x9b\x09\x2a\xc2\xf4\xf1\x3d\x1c\xee\xcb\x78\x4f\x2a\xe4\x63\xad\x48\x9b\x5f\xd9\x94\xb7\x87\xa7\xa3\x3f\xe9\xfc\xd6\x56\x66\x81\x74\x90\x67\x42\xdb\x8a\xa0\x1b\x7b\xaf\x5f\x10\x19\x5f\xc6\x9e\xa8\xdf\x6a\x06\xa9\x43\x2d\x54\x16\x61\x45\x38\xc0\x3f\xe1\xfd\x6d\x84\x1b\xc1\xa6\xe8\x9f\x44\x1b\xb6\xa6\xaf\xce\x7b\x1c\xb8\xc9\x11\x2e\x9d\x9e\xa6\xce\x80\xb0\x6a\x49\xbd\xa2\xed\x68\x3c\x25\x6d\x9d\xb8\x64\x13\xba\x21\xd2\x88\xd2\x86\x35\xc5\x4e\x2a\x33\x59\x57\xdd\x4b\xfb\x8e\xb7\xa2\xe1\xd4\x6e\x8b\x08\xc0\xba\x90\x6c\xfd\x03\x48\xc4\x04\x8d\x12\x88\x93\x17\xcf\xa3\xce\xa7\x6d\x7d\xf2\xe2\xf9\x40\xb2\x50\x24\x7b\x4f\x5b\x93\xbf\x57\xd9\xc2\x0c\x08\x57\x92\x5e\x93\xa0\xb8\x13\xac\x85\x30\xc5\x92\x59\x1b\x14\x58\x72\x07\xd9\xc0\x81\x03\x97\x0c\x56\x44\x62\x64\xf2\x2b\x8c\x68\x37\x15\xac\xc2\x0c\xe8\x62\x6d\x2c\x53\x2d\x6a\xde\xb5\x5a\x83\xac\xe9\x7c\x4e\xb8\x88\x4b\x3e\x98\x64\x52\xe8\x7e\x1c\xf0\x31\x9a\x11\x5d\x15\x9c\x9a\xfb\x10\xa0\x55\x05\x61\xe6\x30\x65\xda\x14\x11\xd7\x5e\x01\x77\x9d\x62\x8a\xf2\xe9\x38\x64\x6c\x85\x2c\x93\xcb\x0d\x75\x37\xa0\x6a\x4e\xa9\x20\x16\x20\xa9\xd1\x7a\x86\x9b\x66\x86\xab\x2b\xf4\x52\xed\xf3\xd1\xe9\xb3\x97\xe3\xad\x27\xd8\x2b\x13\xae\xfa\xe4\x67\xd7\xc7\x35\x3a\x77\xb2\x84\xff\x08\x03\x75\xeb\x91\x1c\x53\x51\xe7\xc4\x6e\xd1\x1d\x7a\x8f\xb9\xf4\x68\x9e\x78\x92\x5b\x93\xc0\x23\x64\xfe\x33\xce\xec\xac\x24\x21\xc5\x6f\xfd\x72\xe2\x4f\x6e\x74\x0e\x5c\xeb\xb8\x65\x00\x65\x60\x88\xe0\xd2\xc7\xde\xea\x46\x7e\xd8\x1f\x43\x4c\x04\x64\x4e\x9c\xab\x58\x76\x13\xc4\x55\xdf\xc0\x45\x29\x72\x5c\xcd\x16\x7a\xe9\x53\xd4\xe2\x94\xc5\x0c\x8b\x33\x2b\x34\x0a\x32\x03\xae\x74\x18\x2c\xd4\xd9\xa3\xcb\xb5\xf9\x92\xf2\x31\x87\x5b\x0b\xd4\x93\xa6\x9c\x58\x98\x6c\x66\xb8\xba\xdf\x6f\xe6\x15\x79\xb1\xbc\xd5\x8b\xa6\xe8\x16\xae\x4d\xe8\xa1\x4b\xa2\x58\x63\xc4\xba\x95\xad\x48\x57\x74\xb8\xe1\x4a\xac\xc3\x23\x40\xef\x9c\x28\x7d\xda\xd6\x17\xee\x36\xf0\x3b\x34\x23\x0d\x8b\x6f\xad\xc7\x25\x02\x1e\x4e\x1f\x26\xd2\xa1\x50\x1e\xa0\x4f\x80\x14\x7e\x73\x17\xfe\xbd\x8c\x18\xe7\xfc\x76\x01\x89\xcc\x86\x7f\x7c\xee\x26\x9c\x5a\x50\x62\xcb\x4e\xd3\xdd\x59\x80\xaa\x94\xe1\x27\x83\xe9\x79\x66\xcd\xd9\x82\x13\x21\xa0\x60\x11\x67\xdd\x62\x19\xd4\x33\x9b\xf6\xf8\x72\xf3\x94\xda\x94\x81\x0b\xf3\x38\x4e\x0f\xb0\x2d\x25\xe8\x51\x90\x11\x6f\x35\x18\x73\x83\x30\x7f\x3a\xa6\xcf\x91\x5f\x5c\xe9\x54\x20\x39\x7f\x8e\x27\x0b\xef\x75\xea\xe8\xe2\x08\x3b\x78\x96\xf7\xdb\x4f\x68\xa7\x3d\x83\xf6\xdc\x19\x68\xeb\x3e\x43\x83\xfe\xe8\xdd\xa3\xd5\x25\x2f\xf5\x2e\x49\x14\xe9\x59\xf3\xe7\x38\xa4\xfe\xba\x8e\x9e\x5c\x5c\x80\x81\x82\xfd\xf9\xe4\x5f\x8c\x8a\xd4\xcc\xd8\x57\x51\x2a\x25\x12\xec\x77\x05\xd3\xa9\x79\xbd\xde\xa5\x5d\x74\x76\x4e\x8c\xd6\x4e\xe5\x2d\xd4\xf5\x50\xbf\xa5\xad\xd4\x6e\x98\xa8\xf6\x6a\x36\xaf\xd0\xeb\x13\x97\xb0\xdd\x44\xf0\xc3\xfa\xb2\xca\x88\x13\xe6\xf2\x88\xaf\x69\xbb\xd2\xe9\xef\x10\xc2\xac\xc8\xde\xea\xbf\xa5\x5f\xa8\xfa\xbb\xdb\x2a\xb4\xff\x38\x07\xc7\x9b\x32\x32\x63\xd0\xae\xab\x37\x0c\xac\xa4\xb4\xf2\x15\x5f\x33\x0a\xee\xa9\x9a\x75\xb3\x06\xa4\xa7\x7e\xf3\x2c\x16\xbf\x50\xaf\x2f\xa9\x83\xf9\x29\x0c\x24\x6b\x93\x44\x83\xfc\x11\x06\x4a\x68\x78\xfd\xd7\x48\xf9\x44\x46\xca\xbf\x85\x5d\xf2\xd7\x31\x2b\x42\xb0\xd9\x18\xa1\xc7\x2b\x30\x09\x42\x33\x2b\xb9\x94\x36\x98\x91\x34\xfe\x14\x36\x8c\xd9\xdd\xc9\x65\x22\x10\x12\x56\xdf\x26\x43\x8a\xa7\xeb\x32\xfc\x8e\x8f\x25\x09\x09\xd1\x0c\x95\xab\x3d\xec\x26\x54\x36\x77\x0a\x14\x2b\x68\x5d\x60\xef\x94\x16\xe6\x33\x28\xb7\x75\x5b\x6d\x6e\xbb\x76\xb6\xaf\xbe\xb7\xc5\x66\x41\xbb\xd9\x2d\x68\x8b\xed\x82\xfe\xb3\xec\x17\xb2\xc5\x78\xf9\x94\xe6\xc1\x6e\xfc\xf7\x5f\xdb\xe0\x93\xd9\x06\xfb\xec\xea\xbf\xae\xa5\x60\xff\xf7\x27\x38\xda\x83\xbd\x3f\x31\x77\x4c\x21\x2a\x71\x6a\xf4\x5c\x5d\x1a\x5d\x4c\xe0\xa9\x95\x77\x41\x81\xc3\x42\x76\xed\x97\xe8\xd1\xbb\x2d\x96\x01\x68\x99\x26\xa7\xd0\x28\x96\x07\x48\x40\x00\xc8\x84\x88\xc3\x62\xe9\x54\x68\x64\x74\x00\xd0\x4c\x4a\x97\x6e\xa7\x71\xdd\xd2\x19\x63\x52\x48\x8e\xd7\x6b\x5b\xac\x53\x53\xc4\x84\xd4\xcc\x2b\x0f\xa2\xc5\x6b\xb1\x64\x72\x62\xca\x41\xeb\x1f\xe9\xaf\x44\x04\x2f\x7b\x3a\x02\x9a\xea\xcb\xeb\xb4\x04\x92\x39\x15\x21\xef\x5f\x4d\x61\x02\x75\xb4\xa1\x54\x8a\x51\xbd\xb1\x74\x43\x0d\x69\xc0\x96\xcc\xf1\x51\x38\x70\x17\x6e\xdf\x54\xb0\x4f\xad\x50\xdf\xb6\x06\xe7\x2d\x4a\x70\x96\xd4\x60\xbf\x71\x76\x89\x93\xf7\xdc\x0d\x1f\x14\xf6\x3d\x11\x6b\x7b\x0b\x58\xbf\x77\x8c\x9d\x82\x74\x1a\xf9\x7a\x81\x0f\x9c\x2d\x08\x97\x83\x23\x75\xca\xb6\xf3\x35\x15\xf2\xe2\x13\x77\xbf\xf4\xf0\xff\x4e\xb8\xff\x63\x47\xa6\x3f\x52\x60\xfa\x2f\x14\x97\xfe\x6b\x84\xa5\xd3\x00\x43\x6a\x31\x05\xf5\x13\x86\x9d\xd1\xc6\xc7\xf1\x71\x23\x40\xf6\xe3\xac\x99\x9e\x93\xb2\x7c\x4b\x68\x5b\xec\xc6\xb5\xdb\x49\xe7\x44\x3b\xe9\x91\xe8\x16\xda\x29\xb2\xb1\x1d\xfa\x31\x62\x39\xf6\x53\x2a\xfb\x3c\x7a\x38\x7d\x58\x70\xc8\xa3\xf2\xf1\x93\x7d\xd5\xd3\x33\x38\x80\xfc\xff\x7b\x2f\x7a\x6d\x31\xa5\xee\x14\x7d\xb9\x65\xf0\xe5\x0f\x89\xbd\xfc\xc1\x1e\x6b\x14\x57\x14\x88\xef\x8a\x53\xa1\x0f\x45\xb5\xc0\xae\xea\x92\x53\x07\xa1\x98\xbf\x56\x2f\x5d\x7f\xc9\x4c\x91\xa6\x08\x45\x9d\xed\x68\x74\x38\x57\x41\xc5\x8b\x3c\x53\x4a\x60\x0e\x62\xb9\x70\xdf\xdd\x5d\x3e\x77\x77\xf4\x93\x9a\x19\xcf\xac\xba\xeb\xd0\xc6\x80\xb2\xae\x71\xa4\x1f\xed\x91\x0c\xe1\xfa\x1a\x5b\xb5\x37\xd7\x31\xa1\xd6\x94\x46\xde\x3c\x5f\x64\x6b\xb4\xbd\xef\x28\xd7\x4a\x7d\xad\x1f\x27\x0f\x5e\x12\x58\x91\x72\x5d\x4d\xa5\x6e\x9a\xf1\xbe\x51\xe3\x8f\x32\x0f\x21\x54\x50\x1b\x3c\x3e\x0b\x0a\x15\xbc\xdf\xde\x77\xa4\x96\x4f\xff\xc0\x85\x06\x98\xa0\x23\xb4\x20\xf2\x38\xf8\xa6\x70\x4e\xa0\x4f\xe4\x7b\xfb\xac\x4f\xac\x9d\xe3\x8d\xdb\x8c\x70\x44\xd3\x79\xe1\x32\x90\xd2\x0a\xcc\x2d\x99\xed\xf2\x11\xc0\xe0\x4a\x76\xb8\x69\x36\x68\x09\x97\x05\x20\x58\x81\xe8\x6a\x45\x6a\x8a\x25\x51\x0d\x5c\x91\x1f\x62\xe2\x11\x8b\xf0\x35\xc7\x04\xba\x8d\x56\xbc\x5b\xe3\x8d\xd9\xc3\xcf\x18\x3f\x37\x15\x80\xcc\xfe\x7a\x17\x8c\xbf\x8e\xe6\x55\x91\x22\xe0\x48\x8d\xc2\x3d\x17\x97\x4a\x37\x37\xec\x47\x57\x40\x1a\x40\xa9\xd8\xf3\xf7\x3e\x64\x42\x76\x99\x82\x59\xf8\xf5\x51\x91\x15\xd2\xa2\xf7\x5b\x30\xdc\xa6\x27\xf5\x23\x96\x32\xfe\xe9\xf9\xeb\xe3\x6f\x2f\x4e\x2f\xbf\x3f\x2f\x33\xbd\xa1\xa8\x37\x72\x74\xea\xf2\xb1\x7d\x77\x6c\x34\x46\x9f\x7f\x8e\x80\x59\x4f\x5e\x3c\x9f\xd6\x57\xd1\x4f\x9f\x1d\xa1\x96\x66\x57\xc3\xb2\xe9\xf4\xca\xf4\xc1\x5e\x20\x8c\xcd\xa6\x58\xad\xa8\xbc\x1b\x0d\x8e\x5f\xbf\x7c\x79\x76\xf9\x97\xdd\xf9\x7b\x31\x1b\xd9\x99\xcb\xf6\xe3\xfa\x9a\xcc\x71\xd7\xc8\x32\x11\x75\x1d\x9e\x7b\x65\x08\x89\xf7\xe8\x18\x37\x8d\x08\x8a\xca\xbc\x73\x8e\x18\x31\x60\x6d\x24\x55\xbe\x5d\x96\x07\x28\x02\x32\x79\x94\xbf\xbf\x22\x38\xdc\xf1\xcb\x37\xd8\x1f\x76\x89\x95\x68\x9c\xa3\x99\xdd\xf2\x76\xb0\xe2\x3f\x9b\x26\xf2\xca\xe4\x80\x87\xac\x57\x92\x23\x99\x93\xfa\x13\x15\xd2\x42\x1f\x23\xe9\x2f\x51\xcd\xe0\xbf\xb0\xbe\xa3\x64\xda\x87\x29\x1d\x26\x03\x99\x1c\xbd\x5e\xcd\x1d\xf9\xb2\x9f\xcf\x86\x79\xf2\x7c\x90\x27\x73\x79\xf7\x91\x59\x32\x38\x0b\x12\x76\x0c\x91\x34\xac\x18\x7c\xb5\xe3\xf5\xe7\x01\x79\x7d\x17\x32\x9b\x97\xb1\xb7\xd1\xd9\xf0\x39\x7a\x1a\xca\x0a\xfd\xcc\x65\x9e\xc1\x58\x10\x07\x46\x12\x7e\x0a\x92\x9b\xa3\x27\xa1\xb9\x79\xb9\x37\xa4\xb6\x9e\xea\x3e\xe4\xde\x9e\x5d\xf3\x2a\x48\x4a\x31\xda\x7e\x50\x92\xd1\x15\x27\x73\x8f\x0a\xa3\x34\xef\x4e\x0c\xdb\x7e\x66\x19\x18\x87\x50\x1a\x59\xc1\x5b\x05\x91\xab\xa3\x97\xea\x7d\x6a\x41\xef\x4d\xf3\xad\x7a\xc4\x40\x79\x83\x21\xa5\xaf\x77\xc0\x9d\x34\xc5\xbc\xd8\xba\x27\x9d\x66\x3e\xc9\xae\xe0\x2d\xb5\xc8\x12\xce\x2d\xe8\x20\x6d\x51\x38\xc7\xcf\xb0\xfd\x5c\x7c\x1f\xa8\x9f\xac\x0e\xe7\xe0\xb5\x3c\x5d\xa8\xcc\xd4\xd7\x2c\x79\xed\xa2\x4a\x04\x3b\x7a\x04\x9c\x81\xa9\x9f\x6b\xd4\x9b\x3a\x84\x03\xf3\xd4\x21\x5e\x6c\x53\x8f\xd0\xcc\x3e\xca\x63\x1d\xce\x69\xcd\xd1\x41\xe7\x43\xe3\x73\x98\x2e\xba\xd5\xca\x54\x0d\x0d\xa6\xe2\xf9\x27\xe7\x9c\x40\x93\x0b\x94\x38\xa0\x49\xa6\xbf\xf5\x55\x62\x0d\x54\xb7\x04\xd4\x34\x7b\xe2\x28\x46\x74\xea\x66\x3e\x1e\x02\x11\xbd\xcf\x94\x40\x08\xfd\x53\x1e\x88\x56\xa4\x33\xcf\x4f\x02\x3b\x58\xe2\x5b\x59\x58\x11\x5f\x48\xf7\xc0\xa2\x79\x64\x83\xcd\xf5\xcb\x1b\xde\x80\x8c\xd6\xef\x0b\x91\x3e\xbb\x61\x40\x42\x4b\x5f\xd4\xc2\xbc\x0b\xae\xc5\x8c\xde\x52\xe6\x0d\xbb\x25\xbe\x26\xed\x17\xd2\xf8\x19\x68\x2b\x49\xdd\xc3\x95\x1b\x22\x33\xfd\xc4\xb4\x38\xd7\xfb\xec\xa8\x74\x2b\xce\x72\xc0\xa5\x1a\x54\x37\x1c\xe5\x8a\xce\x9c\x10\xbd\xba\x06\xc8\x33\x42\x84\xea\xfa\x8c\x90\x6f\x70\x83\x5b\xd0\x6e\xc2\x4e\xd7\x98\xc3\xf3\xff\xb0\xac\xba\xe8\xca\x53\x45\x23\x87\xca\xc3\xe9\xc3\x34\x8a\xe0\x07\xf1\xca\xbf\x69\x9f\x9f\x53\x83\xc0\x9f\xc1\x8f\x57\xa4\xd5\xac\xa3\x9b\xec\xe6\x8d\xdf\x1f\x2e\xfa\x12\x8d\x62\x6c\x0f\xfc\x54\xb6\x39\xd1\xbf\x63\x58\x2b\x04\xfa\x11\x4d\xc5\x50\x33\xd6\x76\xc2\x32\x01\xe4\xf9\x85\x05\x9d\xc3\x55\x81\x96\x97\xba\x61\x62\x95\x7d\xe3\x7f\x2a\xf9\x17\xbb\x99\xae\xf4\x98\x8f\x95\xb1\x78\xf0\x8e\x0c\x27\xee\xeb\x74\xed\x42\x54\x9e\x0c\x11\x71\x4f\x8a\x0f\xfc\x78\x10\x0e\xba\x2d\x56\x11\x6d\xe1\xdd\xfc\xb6\xa1\x01\xb2\x0b\x3e\x7f\xdb\x16\xca\x1b\x7c\xde\x24\x5b\x22\xf7\x76\xcf\x8d\x7f\x25\x28\x32\xa2\x5c\xb9\x4e\x28\x88\x63\x8b\x53\x6b\x6d\x2b\x2b\x50\x8c\xac\xc0\x2c\xc6\xae\x44\x41\x08\xc4\x53\xcf\x45\x82\xfd\x7d\xb7\x23\xa5\xa7\x32\x77\xc6\x0c\xff\xf8\x07\x5a\xe3\x96\x56\x23\x17\xec\x0d\xb2\x77\xf3\x05\x43\x33\x52\x75\x58\x67\x0e\x2f\xb1\x70\x92\xd2\x91\x63\x43\xe4\xfd\x71\xa2\xf6\xc6\x78\x67\x87\xcf\xd0\xc4\x7b\xce\x9c\x14\xe6\x80\x02\x75\x8e\x37\x5e\xeb\xb4\x8f\xbe\xc3\x55\x62\xb8\x51\xef\x1e\xc5\xb5\xae\xf2\xb8\xb0\x78\xaf\x62\xb4\xa3\x0a\x68\xea\x7e\xaf\xc3\x06\xb7\xd6\x09\xd0\x01\x7a\x54\x28\x2c\xfe\x59\x11\x7a\xf4\x5a\x60\x2e\x04\x40\x69\x73\x9a\x4d\xe1\x9c\x32\xc9\x63\xa1\x5e\x30\x8a\xe3\x56\xe5\x61\xc3\x36\x13\xaf\x85\xf5\x35\x8f\x5e\x54\xcc\xd9\xb3\x7f\x0b\xf9\x05\x18\xcd\xcd\x1b\x27\x2e\x8b\xa4\x3c\x94\xab\xda\x1c\x6b\x3b\x87\x96\x0e\xf9\xe8\x65\x38\xc9\xeb\x8d\x92\x77\xa4\x07\xf1\x12\xe3\x16\x20\x0e\x3f\x5e\x10\x3e\x76\xc8\xae\x89\x70\xf2\xc8\x9c\x22\xb6\xc8\xd8\xac\xab\xae\x88\xcd\x34\x8b\x6c\x5a\x91\xe4\x3e\x96\x02\xef\xc5\x57\x1b\x63\xab\x30\x7e\xb4\x1c\x9d\xb6\x75\x10\x37\x37\x81\x9b\x0d\x44\x0b\x84\xd4\x45\x3a\xe2\x98\x41\xe6\x1e\xa6\xed\xb9\x49\x9d\x2c\x25\x72\xf7\x84\xdb\x45\x29\xd2\xfe\x7b\x3a\x88\xf1\x2f\x1b\x25\xb3\x1f\x7c\x10\x8a\x27\x69\x14\x3e\x38\xd5\xfa\xd9\x70\xc5\xae\x89\x39\xf6\x6d\x08\xd4\xb1\xe1\xa0\x20\x8e\x61\x17\x6c\xff\x7e\x07\x60\xb4\x0c\xdf\xfb\x7b\x27\x71\x39\xfe\xfe\x01\xfc\xab\x37\x03\x18\xc6\xf6\xdd\x47\x14\x60\x9f\x45\x80\x0b\x49\x07\x7b\x1b\x4a\x0e\xa0\xaf\x76\xa4\x03\xba\x49\xc2\x59\xb4\x2e\x5b\x53\x5e\x83\x7a\x46\x29\x92\xd3\x9e\x5c\x04\x11\xf9\x47\x5d\x92\x41\xa9\x7b\x6f\xd6\x41\x50\x20\x29\xeb\x57\x4c\x6d\xd0\x9a\xb1\xc4\x57\xa4\x3e\xec\x31\x38\x2e\x7d\x93\xf4\xd2\x1f\xf4\x56\xbd\xb4\x7e\x75\xd8\xab\x72\xef\x20\xed\x73\xc0\xee\xac\xd8\xd5\x10\xf2\x30\xc6\xa9\xf0\x73\x59\xa2\x22\xf1\xce\xe9\x34\xc8\xa6\x89\x1f\x0d\x31\x67\xfc\x7a\xcd\xd9\x75\x12\xde\x0e\x65\x5c\xc1\xab\xed\x13\xef\x02\xb9\x11\x3e\x85\xb5\x57\x3a\x52\xf8\xd0\x8c\x17\xc6\xde\xf9\x6c\x9c\x8b\x90\x0a\xb6\xa2\x51\x01\x06\xe1\x5f\xbd\x73\x30\x20\xd2\xba\xc4\x89\x17\xae\xa6\x9c\x54\xd2\x05\x56\xdf\x65\xc8\xbc\x1b\x16\xf2\x43\xbe\x70\x77\x19\xa7\x98\x88\x99\x9e\x0a\xfe\xd5\x2b\xfd\x0a\x7f\x3b\x67\x7c\xe5\x1e\x8d\xb3\xab\x64\x97\x45\xaf\x92\xeb\x0f\x0f\x8f\x9a\xaa\x31\x4f\x39\xc7\x9b\x9d\x4a\xd9\xe5\xc3\xeb\xa1\x4f\x40\xa7\x03\x1f\xa9\x7f\x06\x55\xb3\x85\x52\x6c\xdf\x1c\x47\xe3\xba\x26\xd9\xc4\xf7\x18\x25\x7e\xff\x5e\x8d\x12\xa6\x94\xe9\x61\x4c\x9b\x1d\x86\x79\x4e\x24\xb2\x73\x05\x60\x96\x7c\x31\xd5\x4c\x4b\xfb\xa3\x9f\x2b\x24\x57\xc4\x38\x85\x9d\x24\x0b\x32\x83\xfb\xd2\xe0\xd4\xb0\x14\x92\x36\xd3\xd8\xd0\x87\xcc\x42\xb1\x4b\x57\x56\x28\xb3\x72\x40\xb4\x4e\x0c\xe5\x68\xe9\x6d\x9d\x41\xfb\xe5\x38\x4b\x82\xb4\xbf\x4c\x39\x6b\xc0\x57\xae\x46\x78\xcb\x1a\x32\x75\x35\x6c\xa7\x1c\xdf\xfc\x00\x25\x59\x0b\x69\x1d\xc9\x82\xa7\x03\x4e\x69\xbd\xad\x40\xd0\x10\x06\x86\xec\xc3\x18\xc4\xbc\xb0\x03\x06\x05\x5c\x1e\x3c\x40\xaf\xf9\x02\xb7\x76\x11\x53\x5e\xa7\xad\x64\xee\xf5\xdf\xd8\x47\x59\x78\x57\x54\x9f\x8d\x90\x69\x58\xa8\x04\x6c\x79\x36\xa5\x5d\xec\xd7\xd5\x87\xef\x9b\x63\xa4\xf5\x34\x9f\x7c\x08\xc6\x38\x25\x75\x8e\xce\xb0\xc6\xa7\x0e\x5b\xad\xf2\x55\xfd\x19\x70\x25\x1c\x94\x62\x1a\xbe\xb1\x57\xdc\x0a\x65\x75\x10\x46\x55\x0a\x61\x30\xe9\x78\xb9\x12\x15\xa9\x27\x76\x7f\x7b\x6d\x06\x4a\x6c\x44\xfb\x73\x97\x84\xcf\x07\x0f\x42\xad\x3c\xbe\x15\x37\x23\x68\x4e\xe1\xc0\xa0\x2d\x6a\x70\x98\xbb\x16\x7a\x18\x86\xb3\x40\xab\x1d\xd4\xdb\x72\x86\xe1\xd0\x67\xd7\x84\xd0\x41\x18\x3e\x59\x74\x30\x95\xe1\x4b\x93\xe4\x3f\x7a\x74\x0b\x44\x5d\x9e\xe9\x96\x21\xf4\x0a\xef\x50\xf8\xfe\x56\xf3\x8c\x92\x58\x3f\x02\x26\xbb\xbc\x04\x30\xf4\xd9\xe1\xc6\xdf\xb6\xcf\xed\xb3\x5c\x07\xa1\x6e\xb9\x40\xb8\xed\xe3\xb2\x62\x7f\xfc\x29\x09\x5e\xd9\x27\x5d\x97\xd9\x23\xc1\x43\xdb\x53\xed\x33\x19\xbe\xb2\x9b\x48\x88\xe8\xa1\x80\x71\x71\x7b\x5e\x46\xf7\xbd\xd0\x51\x04\x6f\x9a\x3d\x78\x9a\x77\xf5\xaf\x09\x47\x3d\x7b\x9f\x8e\xdd\xc3\x8e\xed\x77\xd5\xf5\x65\x07\xef\x62\xfe\xfa\x64\x83\x58\xe4\x16\xeb\x06\x17\x07\x9c\x86\x15\x78\xf7\xdf\x10\x3b\x76\x2a\x56\x20\xee\xad\x3e\xfc\x89\x10\x1d\x7d\x85\xd0\xdf\xf6\x42\x77\xdc\x8b\xef\xe3\x3f\x02\xdf\xc7\x77\xc3\x37\x30\xfa\xc1\x80\xa9\xbc\x17\xb0\x84\xef\xe0\x03\x88\x28\x2b\x74\xec\xf4\xd1\xfe\x0e\x81\xa3\x60\x0b\x89\x86\x60\x38\xab\xbf\x0c\x63\xf0\x56\x03\xba\xb3\xf8\xdc\xa7\x52\x8d\xfd\xdc\xb6\x84\x72\xda\x3f\x2c\xa5\xbc\x53\x2d\xe5\x14\xc0\xe3\x12\x80\xa1\xa2\xca\xf6\x93\xde\xa4\x2d\x4b\xd8\x6d\xfd\xdd\xcd\xda\xa2\x94\xed\xf7\x63\x64\x3e\x00\xa8\x0d\x13\xdb\x61\xe0\x4e\xb5\xb7\x53\xeb\xc8\xb5\xeb\xbd\x05\x41\x9e\x94\xf6\x16\x78\x9d\x97\x13\xd1\x35\x52\xec\x60\xfd\x17\xf2\xc4\xe8\x1c\x7d\xb6\x2d\xa1\xf7\xb7\xdf\x50\x4f\x3e\xef\x11\xe4\xf3\x16\x5f\x14\x2f\x99\x31\xa0\x42\x7b\x3b\x24\x1e\x77\x41\xa4\x33\x42\xc6\x3d\xfe\x86\xf7\x1d\xe3\xdd\x0a\x55\x84\x4b\x3a\xa7\x15\xa4\xcc\xa8\x83\x18\xee\xe2\x1b\xc8\xb1\x29\xbe\xcb\xed\xcc\xdc\x2a\xa7\x12\x32\x0d\xdd\x5d\x7f\x67\x77\x5b\xe4\xc1\xec\xd6\x77\xb5\xe4\x92\x50\x1e\xa2\x84\xb0\x92\x25\x22\x32\xaf\x4d\x47\xa5\x93\x3b\x18\x31\xd5\x00\xdb\x00\xc8\x91\x6d\xe8\xf2\x1e\xdf\xc0\xe4\x8f\x7d\x9b\x42\x1e\x6e\x10\xea\x83\xa2\xc0\x2d\x93\xee\x95\xd4\x1e\x0a\x1a\x4d\x86\x0a\x3b\xe0\xfd\xc4\x0c\xf7\x34\xb4\xc6\x6b\xd0\xbb\xef\x05\x92\x0b\xbf\xd4\xe8\xcd\xb1\xab\xb5\x9d\xbc\xf7\x9b\xa5\x7c\xb9\x90\x06\x5b\xab\x1d\xa2\x79\x71\x27\x03\x66\xff\x38\xa9\x77\x52\xf7\x88\x74\xc7\x90\x6f\x8e\xc5\xe8\x7d\x15\xdd\xaf\x1a\x67\xb3\x55\x3b\x59\x6f\x45\x74\x45\x36\xb7\x9a\x71\xe8\x94\x31\x47\xb4\x52\x4c\xcd\x56\xc9\xf7\x5f\xec\x66\xef\xda\x1b\x7d\x69\x3c\xbe\x59\x1c\xbf\x05\xa1\x16\xfb\x8a\x6c\x14\x76\x16\x7a\xcc\x87\x11\x14\xbb\xe0\x57\x64\xf3\x59\x29\x12\xd3\x4b\xb8\x93\x17\xcf\x9f\x73\xd6\xad\x5f\x90\x8d\xea\x2c\x0e\x63\xb8\x7f\xa0\x4a\xa9\x93\x29\x4b\xf1\x03\x23\x0d\xef\x6e\xeb\xee\x73\x03\xcf\x7e\xc2\x3b\xe0\x09\x69\x50\x7c\x96\x7c\x03\x5e\x0b\xa8\x27\x66\x9f\xf5\x32\x21\xee\xdc\x01\x67\x5e\x11\xb5\xf7\xba\xc2\x23\xc1\xbf\x9c\x0c\x57\x01\xd4\xc1\x50\xf2\x71\x1f\xa2\xcf\x0b\x7e\xbd\xf4\x71\x52\xf7\x30\xec\x31\x5e\xe3\x19\x6d\xa8\xec\x7d\x71\xbb\x62\xeb\xcd\x13\xdf\xac\xf8\xc6\x4f\x88\x02\x10\xfe\xf5\x9a\xe8\x73\x39\x09\x17\x97\xc5\x9b\x44\x95\x47\x03\x12\x6e\x92\x57\xdb\xef\xc7\xbb\x75\xd6\x4b\x51\x17\x35\x85\xf9\xb2\xd9\xbf\x48\x25\xf3\x49\xeb\x97\xed\x93\xf9\xbb\xd7\xf4\xfb\xc8\xf7\xf5\x68\xfb\x5c\x0c\x66\x11\x5e\x11\x4e\xf7\xf3\x87\x8c\x2d\x4a\xbb\xf3\x8d\x97\x6a\x3b\xf1\x8b\x67\x95\xd4\x6d\x67\x98\xc5\x9f\xa9\x9f\x98\x4f\xcc\xc0\x7f\x2a\x8b\x28\xbd\xed\x8e\xdc\x91\xd0\xeb\xb6\x8c\x61\x31\xf9\x28\x3c\xa1\x4e\xaf\xfd\x98\xc1\xfb\x51\x0d\x1b\xa8\xf3\xe9\x13\x33\x80\x1d\xf3\x4f\xe5\x80\xfa\xea\xee\x02\xc2\xd1\xea\xb6\x8b\xef\x90\xd8\x63\xf5\x5f\xe2\x2b\x22\x90\x7b\x55\x45\x10\x48\x8d\xd4\x76\x89\x7e\x81\x5d\xa0\x11\x6d\xf5\xe3\x9a\x63\x30\x4b\xa0\xbc\xc5\xd4\x47\x37\xbb\xd9\x01\xb4\x17\xa8\xd2\xa9\x64\xa5\xd7\x3b\xe7\x5d\xd3\x18\x75\x47\x83\x9d\x46\xb6\x09\x3c\x64\x6e\xcf\xa0\xfe\xc2\x1f\x3f\xa3\xb0\xf4\x87\x29\xd9\x82\x7e\x8e\x0b\x7d\xf8\xaf\x7d\xfd\x0e\xf3\xe8\xab\x7e\x86\x2e\x0f\xef\x06\x15\x45\xc0\x33\xf1\xb7\x00\xe0\x78\x8c\x9e\x38\x48\x29\xf9\xf4\xbd\x23\xa8\xb0\xa3\x66\x09\x2f\x53\xb0\x79\x12\x8b\x41\x67\x27\xa0\xcf\x75\x02\xb2\xf9\x39\xeb\xda\x1a\x71\x36\xa3\x2d\xc2\xcd\x82\x71\x2a\x97\x2b\x07\x51\x32\x84\xa1\x7e\x14\x18\x18\x69\x50\x47\x32\x44\xde\x77\xb8\x41\x82\xfe\x9a\xc6\x53\xb2\xab\x11\xdb\xa2\x39\xae\xce\x4c\x6f\x59\x9b\x80\x52\xf9\x2d\x16\xfd\x16\xa6\x05\x67\xde\xeb\x1f\xa3\xaf\x8f\x86\x9d\x3a\x19\x42\x87\xae\xe0\x0c\xdc\xf4\x6e\x88\x10\xf9\xbc\x15\x1f\xd9\xd9\xde\x2f\x68\x9d\xca\x54\x12\xcb\x6e\x3e\x6f\x48\xad\x6f\xb0\xe9\xaa\x90\x76\x7d\x46\x6d\x29\x62\xa5\xad\x48\x6b\x93\x60\x5f\xb7\x4b\x1b\x68\x31\x12\x45\x93\xb5\x9f\x74\x91\x8a\x1d\xd8\x9d\x67\x6d\x4d\x7e\xb1\x2f\x89\xa2\xa3\xe0\x4d\x16\x1b\x4b\xd5\x0f\xa4\x88\x13\xf7\x3c\xfd\x21\xfa\xf1\x83\x5e\x2b\xcb\xc9\xbf\x27\xf0\x6f\x96\xb4\x21\xd1\x08\xe8\xc9\x9e\xcb\x90\xac\x6e\x11\x11\xab\xfb\x7f\xf8\x7d\x5c\x32\x07\xf5\xc0\x47\xf1\x9f\x5f\x06\x3e\x3b\xbf\x5e\x49\x8f\x87\xf7\x22\x6b\x44\x47\x9e\xc3\xf5\xfc\x50\x28\xe4\xff\x11\xc2\xce\xd9\x0c\x7f\x0c\x11\xfb\xe9\x47\x5a\x2b\x42\xfb\xc0\x6c\xf8\x82\x4d\x96\x4a\xfc\xd4\x96\x3c\x60\x3e\x0a\x60\xc0\x4d\x10\xe3\x08\x8a\xc7\x9a\x1f\x75\xf1\x2d\x3a\x47\x37\x44\xb3\xfd\x82\x41\x61\x11\xf3\x73\x83\x95\x20\x69\xc9\xad\xa8\x8c\xcc\x5d\xdf\xa8\xf9\xbe\xbb\xb2\x14\xb7\x4e\xd7\x2c\xfc\xb1\x2f\x46\x7d\xec\x3c\x22\xde\xcb\x01\x8e\x55\x77\xbd\x47\x40\xed\x61\xa7\x49\x59\xbd\x22\xb5\x86\x4b\xc5\x7f\x2f\x92\x4c\x99\x41\x2c\x3f\xfe\x1e\xb1\x13\x0a\xdf\x46\xcc\x24\xc1\x88\xea\x0d\x1f\x0e\x3c\x09\x99\xef\x70\x17\x4e\xfc\x6c\x7c\xdb\x1d\x97\x9e\x75\xd1\x99\x11\x1c\x65\x4f\x7d\x21\x3b\xb8\x8a\x60\x1c\x44\xd8\xde\xed\x5d\x13\xbe\xea\xa4\x4f\xe9\xe1\xdc\xc8\x1f\xd5\xb9\x13\xf6\xea\xf1\x9c\x8a\x25\xe1\x68\x03\x7e\x38\xbd\x83\xc1\x52\x89\x0e\xba\xac\x56\x9c\x13\xd3\x3f\x6b\x4f\x59\x7c\x38\xf9\xb4\xac\x48\xa0\x52\xa5\x50\x41\xce\x88\x3e\x7b\xe2\xe7\x12\x5d\x32\x80\xbb\x6e\x01\x9b\x8a\x34\xba\xd8\x35\x38\x58\x6e\xf0\x1a\x8a\x0a\xce\x36\xea\x1f\x28\x59\x55\xb3\xf6\x8b\x88\xf7\x6c\xf9\x2a\xde\xb5\x2e\xc0\x67\x4a\xe7\x35\xb6\x6e\x36\x96\x5f\x08\x74\xb3\xdc\x20\x1a\x3d\xb2\xa5\x39\x2e\xfe\x2e\xbb\xf5\x74\x4e\xab\x2b\x4f\x65\x60\x16\x8d\xf2\x43\xc8\xd4\xc9\x1c\x82\xba\xe1\xab\x6e\x85\x8e\x10\x27\xd7\x84\x4b\x3a\x6b\xcc\x05\xe8\x27\xfa\x74\x48\x15\x48\xdf\xcd\xf2\x8b\x07\xf2\xff\xd9\xa0\x38\x55\x7c\x53\xb8\xc2\xa2\x68\xa4\x16\x9b\xfe\xe4\xdd\xcb\x8e\x88\x32\xc2\x3b\x1b\x54\x92\xd5\xda\x2e\xd2\x8f\x34\x7e\x7d\xd4\x7e\xe9\x7e\x0f\x30\x2c\xb5\x0c\x7f\x46\x47\x00\x3a\x49\xcc\x41\x47\x88\x46\x21\xa2\x9c\xf9\x01\x54\xca\xf9\xc7\x89\xb2\x51\x69\xd7\x6e\x58\xda\xd1\x5f\xce\xa1\xdc\x64\xb8\xe8\x4a\x92\xde\x2c\x52\x90\x94\xfe\xcf\x6b\xa5\xf7\x32\xb4\xc6\x5c\xd2\x8a\xae\xdd\x7d\x36\x2d\xde\xcc\xc6\x52\x40\x0d\x37\x51\x1e\xb9\xa9\xd3\xbd\xb1\x08\x5c\x8e\x30\x2c\x9c\x68\x90\xd5\xc9\xcb\x9e\x99\x57\xee\xf7\xf1\x21\xfa\xdf\xb1\x50\xd2\x88\x7f\xc8\x74\x8e\x3d\x0e\x52\x3f\xfc\x34\x3a\x53\xf5\x33\x71\x49\xf2\xed\x3e\xc9\x5a\xb1\x77\xcc\xbf\x02\xa7\xba\x20\x06\x96\x1d\xe3\x41\x71\x81\x44\xcb\x36\x6b\x84\xfd\xfa\x68\x5b\xcc\xab\x8b\x69\xe6\x4e\xe4\xba\x88\xaf\xaf\xa6\x6e\x8d\x94\x91\x9e\x1c\xc4\xbd\x4d\xee\x94\x5f\xa0\x8c\x52\xae\x0c\xe0\x0b\xb2\xf1\x31\xc6\xa9\xff\x32\xf3\xf2\x1d\x27\x79\x85\xdb\xf8\x52\xd9\xeb\xe7\x96\xeb\x5a\xb9\x3b\x7b\x9a\x23\x55\xf5\xdf\x72\x47\x38\x60\xca\x93\x17\xcf\x83\xc1\x6e\xc1\x94\xca\xde\x0d\xd1\xfd\xf7\x60\xca\x34\x7f\x6f\x7f\xa6\x0c\x17\xcd\x33\x65\xba\x38\x5b\x78\xb3\xbe\x2a\x5d\xaa\xf6\xfe\x95\x9c\x1f\x6d\x0f\xc3\x89\xe9\xda\x14\x88\x84\xd2\x7a\x64\x0a\x92\x88\x33\xce\xfc\x1d\xec\x86\xd8\xdc\x63\xa3\x2d\xf9\x32\x65\xe0\x5c\xe8\xb7\xe7\x95\x04\x83\x3e\xce\x93\x3f\x3e\x44\x26\x0d\xa6\x9c\x69\x5d\x52\xc8\x86\xd0\xd5\xed\x75\xd8\x4f\x5f\x1d\x87\x04\x17\x5b\xcd\xad\xc2\xed\x00\xe2\xd3\x70\xc3\x55\x64\xad\x6b\x58\x99\x1a\xba\xe6\x21\xcd\x19\x81\x0d\xa3\x14\x9f\x77\x1a\xf3\x77\x13\xb4\x64\x37\xea\xfc\x85\x42\xe2\x58\x20\x5c\xd7\xa4\xd6\xe9\x75\x6a\x47\xe1\xd6\x6b\x47\xeb\x05\xc7\x35\x31\xd8\x98\x1a\x67\x02\x6e\xe6\x98\xf7\xa2\x66\x04\x89\x35\xa9\xe8\x9c\x92\x1a\x09\xb2\xc6\x5c\x17\xcc\x02\x45\x80\xfc\x42\x05\x24\x54\xea\x77\xc2\x45\xee\x3a\x31\x54\x2e\x64\x12\x1d\xa2\xec\xcb\x1e\x9a\x17\x7d\x6f\x59\xe7\xa2\x0b\x2e\x6b\x65\xa2\x50\xc1\x6a\x5d\x86\x61\xaf\xd3\xf0\xc2\x0a\x70\x57\x73\x83\x37\xa2\x58\x3d\x76\xdd\x74\xc2\x1c\xe9\x45\xe6\x2a\x07\x67\xac\x9d\xdc\xc7\x5f\xe5\x9a\x95\x08\x0b\xd3\x2f\x44\x3f\xab\x34\xd7\x77\xa3\xbd\xcf\xbb\xd4\x4f\x5e\xd5\xbe\x48\xd1\xa7\xe5\x31\xc6\xe8\x1f\xff\x40\x73\xdc\x98\x2a\x26\x01\x7d\x9f\x93\xa4\x54\x61\xcf\x3d\xe7\x86\xcc\xa5\xd9\xc7\x35\x11\x92\xb3\x4d\x90\x5e\xf0\x4d\xd8\x12\xf3\xf8\x86\xfc\x0d\xe1\x04\xe1\xa6\x61\x15\x96\xba\x4e\x3e\x46\x35\xa9\x88\xb2\xd6\x1a\xfa\xab\xbb\x5f\x4f\x5a\x49\xaf\xfd\x99\x03\x7d\x21\x9b\xc1\x15\xf9\xf6\x51\x50\x45\x58\x40\x91\xc0\x5b\x31\x16\xa1\xa9\x61\x17\x22\xc0\xb5\x69\xe7\x10\xf8\xc8\x0c\x5a\x9c\xdd\xa8\xfe\xfa\x06\xa7\x7b\x95\x27\xbc\xf0\x6f\xcf\x33\xa8\x1e\x40\xdb\xb9\xf9\x5a\x6d\x2f\x07\x4e\x30\x7f\x85\xcd\xbc\x88\xd3\x74\x75\x50\xec\x3a\x00\xe8\x3a\x41\x61\x7d\x23\x29\x6c\x2a\x40\x44\x69\x9b\x79\xeb\x66\xa5\x4c\x8e\x80\x2c\xb6\x72\x9e\xf1\x98\xea\x72\x8c\x08\xb7\x9b\x15\xe3\xa4\x6f\x87\x47\xd7\xcd\x6d\x09\xd1\x7d\x38\x4e\xf7\xc8\x78\x4e\x1d\xb1\x1e\x76\xe9\x4a\x3d\xd2\x8e\x68\x5b\x4e\xc0\xb0\x1e\x6d\xa9\x74\xb7\xf2\xe3\x5b\x70\x79\x41\xed\x24\x01\x76\xb8\x49\x5a\xf3\x7f\xa8\xad\xaf\xed\x5f\x6c\x55\xf0\x38\x6a\xef\x5b\xd8\x6e\xe8\xd2\xb8\x25\x74\xd8\x7e\x5b\x75\xf2\xdb\xd5\x0e\xdf\xbb\x72\x78\xb1\x6e\xf8\xa0\xdb\x76\xdf\x02\xdb\xbd\xc9\xc2\xb1\xd7\x7d\xb8\x7e\x76\xb2\xf4\x85\xda\xd9\x79\xdd\xec\x5d\xca\x64\xa7\x77\x35\x4b\x8a\x03\x3a\x32\xca\xc6\x28\x63\xc0\xbb\xa4\x64\x7f\x8c\xe7\x29\x76\x02\xbf\xdf\xcb\x15\xc3\x20\x0b\x5b\xa1\xf4\xed\x5e\x60\x87\x77\xce\xd0\xaf\x79\xc2\x0c\x46\xaa\x09\x83\xd3\xce\x96\x0a\x74\x32\x3c\x54\xed\xac\xca\xa7\x53\xf1\xd4\x17\x8f\x4c\xed\xd9\x35\x3c\x06\x56\xb1\xa0\x56\x10\x28\xd4\x1a\x58\xae\x0d\x1d\xe5\x1a\x52\x6c\x2d\xd4\x2e\x4f\x70\x90\x5d\x38\x99\x1f\x0f\xd4\xc4\xce\x1a\x5f\xd2\x15\x11\x12\xaf\xd6\x56\x6a\x8d\xb2\x7a\x91\x53\x69\xdb\x8c\xbf\x4c\x77\x90\x03\x17\x94\xda\x49\x04\xbe\xc0\xd7\x64\xd4\x37\xef\x09\x92\x6c\xab\x1a\x37\x90\x5b\x73\x3c\xf4\x54\x46\x7f\xb7\xed\x97\x9c\xa3\xae\xa0\xa0\x5f\x68\x1c\xcf\xb1\x5c\xa2\xa3\x02\xca\x4f\x9d\xf9\xe1\xfa\x2d\x6d\xf1\xe2\x6d\x7d\x5d\x95\xe3\xb8\xbf\xb5\x7f\xb6\x75\x77\xc6\x49\xc4\x6b\xc9\x8b\x51\x1f\xf4\xfa\x1e\xc6\x17\x6a\x7e\x47\x47\xe8\x43\x2a\xbf\x8a\x4b\x18\x81\xd3\xeb\xd6\x87\x64\xba\x62\x45\x78\x4f\x0e\x4c\x9a\xa2\xb1\x25\x03\x90\x29\xbd\xc7\xfb\x80\x73\xb4\x8c\x40\x96\x96\x62\x5c\x0a\x11\x60\xb4\xe6\xf4\x5a\xfd\x2f\x88\xca\x17\x93\x70\x5c\xb9\x38\xfd\x86\xb9\x52\x44\xe1\x09\x44\xa8\x7f\x8d\x65\x74\x29\xea\x75\x8b\x5e\x62\xda\xb6\x44\xbb\x7c\x2f\x89\x90\x2d\x81\x17\x52\x48\x92\xdc\x20\x4c\x0d\x83\xe8\xb5\x0a\xf3\xaa\xa0\x99\xf8\x44\x29\x8e\x4b\x1b\xd7\x5e\x12\x4e\xc2\xf7\x60\xd0\x53\xad\x13\xc3\x86\x83\xc7\x13\x34\x92\x33\x66\xdc\xa6\x38\x1e\xcf\x3f\xfb\xe2\x26\x4c\x89\x40\x0d\x6d\x4d\x9d\x07\x24\x97\x4c\x90\xb0\x83\x45\x0b\xaf\x1c\x4e\x11\x06\xfa\x61\xb4\x56\x74\xba\x94\x1e\x96\x26\x8b\x93\xb5\xda\x76\x64\x5c\xa9\xdd\x75\x07\xb3\x35\xaf\xc6\x98\x8a\xe7\x02\xf2\x8d\x31\x78\x93\x83\xab\x7b\x1b\x21\xc9\x0a\x55\xcb\xae\xbd\x0a\x07\x02\x9d\x19\xc3\x3d\xfe\x66\x63\x42\xcd\xb5\x7d\x35\x51\x53\xd2\x3a\xa9\x70\x03\xe0\x58\x27\x95\x89\x4c\xcd\x57\xae\xce\xf8\x0a\xb7\x74\x6d\xb4\xeb\x69\xb4\x8d\xc2\xba\x6b\xfd\xb9\x22\x21\xed\x1c\x63\x52\x21\x3a\x32\x94\x77\x55\xf8\x25\xcc\x38\xdb\x6f\x0b\x04\x29\x2a\x03\x63\x7e\x3d\x2a\x4f\xa8\x20\x89\x07\x93\xdf\xf6\xdc\x3a\xef\xab\xc0\x3f\x83\xa2\xec\xd2\xed\x1b\x48\x2d\xc3\xfb\xea\x8e\x2b\x90\xe5\x36\x15\xbe\xbc\x23\xc1\xd3\x21\xbe\x1e\x65\x58\x17\xc8\xdc\x97\x3b\xb6\x27\x85\x5d\xde\xcd\xad\x49\x6c\x7d\x77\xb7\xa7\x71\x90\x3c\x14\xfd\x79\x47\xba\x7a\xb0\x5f\x8f\x72\x24\x0b\x24\xed\xcd\xc6\x8a\x07\x2f\x57\xc7\x52\x9a\x7f\x7f\xad\xe1\x9d\x2a\x6c\x47\xad\x21\x4c\xb7\xcf\xad\xd6\x9d\xde\xc3\x43\xb7\x7b\xc7\x24\x2b\xbd\xbd\xe5\x3d\x93\xbc\x54\xf7\x1e\x97\x4b\xd1\x41\xef\x0b\x2c\xe5\x4b\xa4\x7b\x0f\x93\xdc\xe7\xea\x1d\xef\xae\xf5\x40\xc2\xcf\xbf\xc3\x83\x28\x3d\xb9\xe9\x39\xab\x59\xff\xfa\xef\xf7\xfe\x6f\x00\x00\x00\xff\xff\xc8\x64\x7c\x99\x3c\xea\x00\x00" +var _epochsFlowepochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x7b\x73\x1b\x37\xf2\xe0\xff\xfe\x14\x88\xab\x2e\x21\x37\x14\x6d\xc7\x57\xbf\xda\xd2\x59\xd9\x53\x24\xd9\x51\x39\xb6\x65\x4b\xc9\x5e\x55\x2a\x15\x83\x33\x20\x89\xd5\x70\x40\x03\x18\x29\x8c\x93\xef\x7e\x85\xc6\xfb\x31\x43\x52\xb6\x93\xcd\xd6\xf2\x1f\x5b\x24\xd0\x68\x34\x1a\x8d\x7e\xa1\x41\x57\x6b\xc6\x25\x7a\xda\xb5\x0b\x3a\x6b\xc8\x15\xbb\x26\x2d\x9a\x73\xb6\x42\xf7\xa3\xef\xee\xdf\xb3\x2d\x1b\x76\x1b\xb5\xb2\x7f\x47\x2d\xce\x4f\xaf\xf0\xac\x21\x97\x12\x5f\xd3\x76\x11\x34\x8d\x7f\x88\xfa\x9c\x34\x9d\x90\x84\xbf\x3e\x09\x9a\xbb\xef\xa2\x96\xa7\xcf\x9f\x05\x6d\x4e\x9f\x3f\x8b\x7e\x7d\x4a\x88\x08\x7e\x56\x7f\xde\xbf\x77\xef\xc1\x03\x74\xb5\x24\x48\xb2\xf5\x41\x43\x6e\x48\x83\xc4\x0a\x73\x89\x2a\xd6\x4a\x8e\x2b\x89\x56\xb8\xc5\x0b\x85\xab\x5c\x12\xd4\xd0\x39\xa9\x36\x55\x43\x10\x9b\x23\xb2\x66\xd5\x52\x4c\xd1\x79\x0b\xe0\x27\x0a\x94\xfe\x0e\x61\x4e\xa0\xbd\x58\xe1\xa6\x21\x42\xa2\xae\xa5\x52\xf5\x91\x74\x45\xd0\xed\x92\x98\xdf\x69\x4d\x5a\x49\xe5\x06\x49\x35\x79\x34\x82\x3e\x44\xb5\x54\xc0\x5a\x22\x6f\x19\xbf\x46\x6c\x4d\x38\x96\x8c\x8b\x31\xa2\x02\x09\x89\x25\xad\xa6\xe8\x95\xfd\x16\xad\xf0\x06\xb1\xb6\xd9\xa0\x86\xe0\x1b\x82\x18\x47\xff\x62\xb4\x85\x01\x0c\x08\x05\x0d\x4b\x8d\x1d\x9a\xb1\xae\xad\x31\xa7\x44\xa4\x40\x66\x04\x91\x7f\x91\x4a\x92\x1a\xd5\x1d\x57\x93\xc6\xad\xe9\x34\x67\x1c\xdd\x60\x4e\x59\x27\x14\xb0\x15\x15\x35\x59\x11\xdc\xb2\x8e\x8b\x09\x9a\x75\x52\x0d\xb7\x41\x9c\xac\x30\x6d\x91\x19\x3d\x99\x5e\xd7\x4a\xda\xc0\x0f\x1a\x26\x69\x6b\x31\xbd\xf7\xe0\x81\x02\x78\xe6\x09\x27\xd6\x0d\x95\x88\xb6\x92\xa1\xc7\x68\xbd\xc4\x82\x88\x43\xd5\xe4\xb7\xa3\x3b\x7f\xa0\x3b\x3a\xbb\x78\x75\xf2\x2d\x7a\x89\xb6\x7f\x7e\x73\x8d\xbf\x7c\x84\xa6\xd3\x29\xf4\x3f\x50\x1f\x64\x59\x17\xfe\xfa\xed\x00\x5d\x12\xd9\xad\x91\xfa\xdf\x09\x5b\xad\xa8\x54\xc4\x3b\xf8\xed\x37\xd7\xeb\x83\x90\x56\x10\x1e\x8d\x11\xba\xbc\x3a\x7e\x7e\xfe\xf2\x19\xba\xf8\xf6\xf8\xf2\x4c\x7d\xf9\x92\xd5\xc4\xf3\x05\x90\x0d\x48\x2c\x19\x12\xdd\x6c\x45\xa5\x62\x13\xc0\x93\x93\x77\x1d\x11\x52\xc0\x0a\x2a\xda\xbf\x3c\xfb\x7f\x57\x66\x01\xf4\x22\x2b\x78\x72\x49\x85\xa6\xf5\x14\x1d\x4b\xbd\x46\x6d\x0d\x1c\xeb\x7e\x99\xc0\xd7\xb0\x50\xe9\x26\xe1\x44\xb0\xe6\x86\x08\xd5\x42\x81\x63\x9d\x14\x12\xb7\xb5\x42\x20\x43\x04\xb7\x35\xaa\x89\x24\x7c\x45\x5b\xdd\x25\x65\x14\x8b\x6a\x4b\x7e\x91\x6e\x57\x4d\x61\x9f\x16\x87\x27\x2b\x2a\x85\xc7\x4e\x2f\x89\x20\xfc\x86\x56\x04\x91\x1b\xd2\xea\xb6\x98\xb6\x6e\xba\x83\x63\xea\x01\x27\xe8\x76\x49\xab\x25\xa2\x2d\x95\x14\x4b\x83\xaa\xe4\xb8\x15\x54\x52\xd6\x2a\x62\x9b\xf9\x6a\xac\xf4\xb8\x17\x40\x45\xb3\x78\x5f\x8d\xd1\xe5\xd9\xd5\xf7\x17\x7e\xe5\xfe\xb9\x24\x6d\x40\x54\x34\x23\x0b\xda\x6a\xd0\x6b\xcc\x25\xad\xe8\x1a\xb7\x52\x20\xb7\x81\x2d\x3a\x7a\x6f\x10\x39\x45\xa7\x7a\x6f\x2a\x20\x0a\xa2\x5f\x1c\x91\xc0\x58\x73\xb2\x56\xbd\xf2\xb9\x81\xd4\xd2\x6d\xbb\x06\xf3\x09\xaa\x58\xd3\x90\x4a\x4d\x0b\x24\x0f\xab\x89\xb0\x9c\x74\xc3\xd4\xdc\x0d\x0c\xca\x51\xa5\x65\xef\x17\x02\x71\xc6\x24\x7a\xd7\x31\xde\xad\x50\x45\xb8\xa4\x73\x5a\x61\x49\x60\x85\x2b\xd6\x0a\xd2\x0a\x2d\x2e\x34\x3c\xde\xe9\x39\xd5\x54\x48\x4e\x67\x9d\xda\x2a\xd7\x64\x83\x16\xa4\x55\x8c\xac\x48\xba\xe6\x4c\xb2\x8a\x35\x68\x74\xfa\xfc\xd9\x18\xd8\x99\x48\xd4\xad\xa1\x1f\xc7\x6d\xcd\x56\x0a\xde\x8c\xe0\x8a\xb5\x53\x4b\x4c\x98\x38\xcc\x15\xa0\xe8\xfd\x50\xb1\xd5\xba\x21\x72\x88\x6d\x1d\xdf\xb8\x35\xd4\x7b\xb8\x97\x77\x00\x94\xa2\xda\x1c\x57\x52\xe8\xed\xa1\x25\xf6\x9a\xb3\x8a\x08\x61\x78\x46\xc1\xdb\xc2\x36\x06\x23\x33\x60\xc4\x34\x8f\xc7\xe8\xe4\xd5\x8b\x17\xe7\x57\x57\x67\xa7\xdb\x18\x67\x12\x8a\x79\x75\x3c\xcc\xbb\xa6\xd9\xd8\x95\xaf\x61\xb0\x6c\xe8\x64\x5f\x1d\xa3\x39\xa6\x4d\xc7\x41\x7c\x90\x56\x12\x1e\x8f\x33\x67\x3c\x9c\x00\xd0\x81\x25\x0c\xa5\x67\x5c\xc3\xfa\xab\x19\x63\xb9\x0b\x4b\xab\x71\x35\x92\x76\xb5\x1c\x41\xbb\x35\xf0\xb6\x22\x6b\xdd\x71\xe2\x36\xa3\x40\x18\x55\x9c\x4a\x5a\xe1\xc6\xe1\xad\x18\xee\x96\x36\x0d\xaa\x70\x27\x34\x8c\x6a\xa9\x0e\x22\xc9\xd0\x12\x37\x72\x7a\xef\x1e\xae\xd4\xfa\x8c\x70\xd3\x8c\x3d\x03\xa8\x73\x5b\xaf\xc3\xfb\x7b\xf7\x94\xe0\x0f\x5b\x91\xb6\x5b\xe9\x55\x82\xd5\x39\x44\xdf\x9f\xb7\xf2\xef\xe8\xfd\x3d\x7b\x4a\x44\x20\x15\xa9\x8c\x98\x3e\xfe\xfe\xe4\xea\xfc\xd5\xcb\xfe\x76\x70\xb6\x80\x5c\xd8\xd2\x46\xb3\x01\x34\xfa\xbd\x07\x41\x75\x12\xbc\x61\xcd\x2e\xe8\xbd\x7c\xf5\xf2\xac\xff\xd7\x13\x2d\x01\x18\x1f\x6a\x62\xf7\x74\x3f\xda\xbf\x90\xaa\x03\x31\xd2\xdb\xe4\x07\xc2\xb5\xa0\x18\x6c\x75\x0c\x5f\x84\x53\x7f\x60\x54\x35\x23\x6c\xa5\xda\xca\xf1\x46\xa5\x02\xb6\xb4\x92\x2b\xb7\x46\x32\xf8\xb5\xf6\x0c\x2c\x1c\x38\xc9\x10\x46\x2d\xb9\x35\xec\x68\x18\xd4\x9e\x58\xb8\xab\xb4\x50\xd2\x9b\x33\x23\x3f\x8c\xa9\x4f\x1c\x40\x66\x74\xcf\x4d\xc7\xe2\x5a\xb1\x0e\xf6\x93\x95\xc0\x55\xc7\xb9\xea\xa5\xc7\x83\x6d\x42\x85\xde\xca\x70\x36\xd9\xfe\xa6\x9f\x5e\xd4\xff\xf9\xdf\x93\x1c\xf2\x9c\x72\x21\xd1\x0d\x25\xb7\x68\x44\x5b\x25\x93\xe9\x0d\x19\x5b\x91\x14\x8d\x33\x75\x9d\xa1\xd3\x0f\x94\xdc\x0e\x00\x6e\xf0\xae\x70\xbf\x10\x29\xa9\xfc\x48\xe6\x87\x63\xfd\xfd\x59\x5b\x7f\xb4\x51\xc3\xd9\xb4\xb8\x19\x82\xcb\x24\x6e\xd0\xd3\xef\x5e\xfd\x13\xd0\x21\x35\x9a\x6d\x10\x6e\x1a\x73\x1c\x69\x3d\xa4\x21\x0b\xad\x43\x15\x97\xc8\x0f\x26\x15\xb0\x4b\x00\x73\x88\xbe\x7f\x4a\x7f\xe9\x19\x4e\x74\xeb\x75\xb3\x51\x98\xab\x91\x60\xf0\x22\xe4\xa8\xeb\xb9\x9a\x72\x6d\x8e\x0a\x4e\x6e\x31\xaf\x8d\x10\x05\xa9\x36\x53\x82\x94\xd6\x0e\xd0\x9a\x93\x1b\xa5\x89\x27\x90\x00\x45\x25\xd2\x2e\x01\x87\x3e\x34\xc1\xda\x51\xa8\xf6\x0f\xc4\x3a\x89\x70\xa2\x06\x0e\x53\xe6\x8d\x86\xe5\xc7\x54\xbf\x8c\x8b\x1b\xb7\xa0\x9d\xa5\x1b\xf7\xb6\xff\xc0\x84\xee\x0e\xac\x51\x59\xcf\xdd\x21\xad\x49\x08\x9c\x41\x7f\x25\x75\x9f\x96\xd7\xad\x2b\xb6\x52\x8c\x1b\xcc\xa5\x6f\x6f\xab\x01\x77\xd8\xda\x09\x48\xf4\xa2\x13\x52\x11\x94\xb5\x04\x2d\x38\xc1\xfa\x58\xc5\x20\x62\x22\x60\x83\x32\x62\xba\xa3\x48\x38\xdf\x65\x9e\xe8\x96\xca\xa5\xdb\x01\x88\xb6\x73\xc6\x57\x38\xde\xb8\x21\x3b\x1e\x46\xdf\xaa\x3e\xe7\xa7\x13\xb7\xe7\xaf\xc9\x66\x62\x35\x8f\xd2\xdf\xb8\xae\x39\xa8\x44\x9c\x35\x64\x12\x81\xb2\x20\x02\x0c\x26\xe8\x96\xd0\xc5\x52\x4e\x60\x5f\xae\x18\x27\x1e\x27\x18\xb9\x9d\xb3\x43\xf4\x63\xee\x2b\x98\xbe\x34\xbf\xfe\xb4\xb7\x94\x2c\x71\xc1\x47\x11\x93\xfd\x80\xb7\x48\x2c\xb5\xfc\x5a\xbd\x46\x58\x08\xba\x68\x57\x8a\x13\xfa\x58\xec\x0c\x2b\x2b\xba\x21\xd0\xc8\x1c\x5e\x0d\x15\x32\x82\xc9\xc9\x9a\x13\x41\x94\x02\xa6\x58\xd1\x81\xd7\x3a\xba\xde\x33\x8a\x25\x40\x35\x53\x6c\x71\x7e\x2a\xcc\xe0\x46\x7f\x5c\xe2\x18\xa2\x01\x31\xd1\xec\xa4\x8d\x02\xbd\x78\x5a\xa8\x82\xc1\x10\xf0\xad\xd1\x2b\x8c\xcf\x46\x98\x55\x74\x2e\x9c\xa9\xf9\x5f\x69\xfd\x04\xeb\x78\x05\xde\x16\xad\xfc\xb7\x44\x08\x6d\x15\x28\xdc\xd4\x74\x09\xae\x09\x47\x82\x18\xeb\x05\xe1\x66\xc1\x38\x95\xcb\x15\x60\x17\x01\x1c\xda\xfc\xea\xa3\x87\xb8\x84\x21\x0f\xd1\xa5\x54\x56\x56\x01\xa7\x9a\xe0\xba\x01\xd3\x95\xcd\x11\x51\x4b\xa0\x15\x65\xb3\x00\xa7\xcf\x9f\x79\x33\x46\x32\x25\x02\xac\x72\x5b\xdb\x36\x16\x83\x08\x76\x60\xbb\x1a\xb1\x76\xea\x46\xd2\x7e\x11\x52\xd1\x39\x35\x50\x08\x5f\x01\x02\xd8\x5b\x5a\x9a\x1d\xdb\x6e\x35\x23\x3c\xde\xd0\x60\x3b\x60\x8d\x9a\xd7\xc8\x11\x9b\x29\x31\xac\xc0\x07\x12\x53\xad\xa0\x20\x58\xe9\xe5\xb3\x86\x55\xd7\x7a\x95\x01\xb4\x11\x63\x11\x68\x2b\xd2\xd0\x82\xde\x90\xd6\x11\x67\x82\xa8\x44\x15\x6e\x91\xc0\x73\xd2\x6c\x7a\x8c\x90\x50\xb5\x52\x9f\xd3\xe7\xcf\x40\xd7\x7e\xf4\x34\xdf\x28\x69\x9b\xaf\x76\x68\xf3\xb8\xd0\x26\x3f\x0c\x31\x5f\x10\x89\xea\xce\xd8\xa0\x65\x36\x99\x28\xaa\x0b\x52\xb1\xb6\xf6\xbc\xad\xbb\x9e\x9a\x9e\x39\x1e\xc9\x10\xea\x2c\x05\x0f\x60\xdf\x10\xd1\x12\xeb\xc1\x0e\xd6\x9c\x54\x54\x28\xc4\xbe\x6f\xe9\x2f\xd0\x3f\x19\xff\xac\xad\xaf\xe8\x8a\xd8\xe1\x7b\x8f\xde\xa2\x71\x3b\x7c\xf4\x82\xbb\xd4\x1d\xbe\x0e\xa4\x77\x75\xf9\x03\x38\x00\x04\xce\x48\x80\xa6\x04\x4b\x60\x99\xf7\x4c\xdc\xc1\x5d\x62\xa5\x0c\x93\xd6\xef\x98\xa1\x93\xd9\xcc\xe7\x03\xce\x66\xf2\xae\xc3\x8d\x65\x48\xdb\x89\xe6\x47\xb4\x53\xb8\x82\x3d\x0a\x88\xec\x7a\x3c\x5f\x81\x5e\x27\xba\x46\xda\x23\xe2\xf5\x09\xc2\x8b\x05\x57\xda\xa7\x71\x7c\xa8\x39\x26\x32\xdd\x0a\xe8\x08\x56\x28\xac\x03\x81\x8b\x38\xa9\x08\xbd\x21\x5a\x4d\xc4\x81\x77\xc7\x0a\xec\x08\xca\xeb\x13\x04\x2e\x3a\xad\xf8\x16\x9c\x38\xa0\x15\x82\x78\xb3\x47\x86\xf1\xd3\x10\x11\xcc\xda\x0a\xf1\x5e\xa9\xfe\xfa\xa4\x24\xd7\x35\x2d\xd4\x8a\xac\xbb\x59\x43\x2b\xa5\x3c\x08\xcf\x6d\x46\x86\x6a\x8f\x0a\x69\x2b\x56\x2b\xc1\x24\x94\xfe\x0e\xea\x5d\xc3\x6e\x0f\x16\x2c\x3e\x94\xf8\x66\x2d\x19\x6a\xe8\x8c\x63\xbe\x01\xb7\x48\x8b\x96\xe4\x97\x03\xd3\x3d\x16\x88\xcf\x38\x53\x62\xd6\x8d\xad\xb8\x57\x3a\x7d\xc1\x90\x7f\x82\xe6\xac\x69\xd8\xad\x36\x1c\xc0\x67\xd8\xd6\xf4\x86\xd6\x8a\x69\x14\xc2\x0e\x64\x7d\xbd\xb8\xe8\x66\xcf\xc9\x46\x91\x41\x1f\x1c\x3f\xf5\x6b\xc0\x6f\x48\xc5\x6e\xe0\xd0\x1a\xda\x88\x58\x2d\xa8\x6a\xa7\x3b\xc1\xa6\xc4\xfa\x8c\xa3\xd6\x37\x27\xed\x09\xed\x5c\x40\xde\x27\xe6\x9c\x42\x0e\x83\x05\x01\x27\x8c\x32\x7a\x5b\x74\xf6\xf4\x05\x84\x12\x88\xb1\x39\xfa\x87\xea\x84\x1e\x45\x35\xe0\xb4\x26\x05\x43\x56\x31\xa1\x01\x11\x0d\xad\x8e\x0e\x65\x4b\x38\x14\xc4\x5a\x2b\x87\x53\x74\xb5\x54\xb3\x48\x29\x60\x16\x5d\x53\xdc\x9d\xa2\x91\x17\x49\x32\xd4\xad\x6b\x83\x38\xe5\xa8\x61\x15\x6e\x7c\x5b\x3d\x27\xab\x99\x80\x71\x6f\x30\x73\x48\x18\xe7\x37\x96\x78\x50\xf1\xb7\xcb\x34\xda\x2a\x5e\x4c\xcb\xcd\xd9\x9f\xa6\xb1\x83\x0a\x0a\xee\xf6\xff\x3c\x2d\xbd\x87\xba\x1f\xac\xa4\xf7\xc2\xfd\x20\x1d\x3d\x86\xfa\x07\xaa\xe8\xb6\x5b\x26\x9c\x8f\x1d\x92\x4a\x3a\x59\xf1\xf4\x5f\x6d\xfb\xbf\xda\xf6\x7f\xb5\xed\x0f\xd7\xb6\x07\xa4\xc3\xeb\x13\x81\xd6\x18\x4e\x33\xc3\x89\x7d\xc7\x2c\xc4\x36\x05\x01\xc6\xb3\x5a\x16\x78\xe1\x0e\xd8\xfc\x60\x86\xdb\x3a\x1a\xa3\x13\x36\x14\x25\xf0\x8a\xf8\x18\x89\xd2\x90\x6c\xdc\x5e\x9f\xb4\x05\x45\xed\x07\x26\xc9\x29\x96\xb8\x5f\x5f\xb3\x2d\x4a\x12\x02\x78\x3a\xd0\xd8\x76\x9c\x5e\x04\xe7\x44\xab\x0e\xcd\xc6\xc6\x2c\xd5\xac\x39\x39\x00\x3d\xc3\xa9\x80\x20\xba\x45\x07\x47\xf3\xbc\x6b\xd4\xc8\x53\xf4\x92\x59\xc5\x14\x02\x54\x74\xb5\x6e\xa8\x0d\x37\x45\x63\x44\x52\x18\xbd\xf8\xfe\xf2\x0a\x2d\xf1\x0d\x89\xf6\x6f\x65\x8c\x18\xe2\xfc\xf0\xda\x59\x58\x79\x93\x20\x41\x22\x1a\x42\x91\xc2\x81\xf8\x24\xda\xe5\xa0\x7a\x99\x79\x58\x4f\xec\x49\x61\xd8\xba\x42\x2b\x22\xb1\xd2\x72\x10\x9e\x81\x43\x37\x34\x09\x62\xbb\xeb\xb8\x69\xd0\x92\x0a\xc9\x38\xcc\x5e\xab\x1e\xae\x3b\x24\x9d\x30\xae\xac\x3d\xc2\x57\xb8\x85\xc5\xcb\x34\x27\x21\x79\x57\x19\xd5\xe9\x85\xed\xfa\x3e\x67\x21\x4d\xe4\x39\x0d\xf4\xa7\xd8\x8d\x1d\x02\x6d\x88\x4c\xd5\xa8\xc2\xb1\xa5\x8e\x27\xcd\x3d\xcc\x59\x29\x76\x8b\xe8\xb9\x08\xe7\x35\x2e\x8d\xa0\x00\xd8\x23\x68\x50\x3b\xb1\xf9\x10\xc3\x08\x0b\x89\x79\xa4\x99\x0c\x29\x26\xbb\x81\x24\x71\x00\x65\x2b\xc0\x2c\x88\x35\x84\xac\x6a\x77\xb6\x6d\x80\x42\xc8\x40\xed\x5b\x17\x2e\xd8\xbe\x96\x37\x98\x17\x63\x05\x25\xeb\x50\x35\x40\x78\xa5\x56\x3e\x1d\x4c\x32\xad\x06\x04\xbb\x05\x74\x22\x75\x92\x52\x29\x82\x90\x4e\x2f\x16\x1a\xfe\xb1\x06\x5f\x56\x57\x0d\x8e\xdf\x70\x82\xaf\x6b\x76\xdb\xfe\x94\x60\xc9\x71\x75\x2d\x10\x9d\x3b\x8a\x80\x78\x01\xdf\x45\x10\xaa\x19\x5c\x57\x8f\x89\xb8\xc0\xb4\x3e\x44\xdf\x30\xd6\xe4\xc4\x60\x7c\x81\x5b\xfa\xab\x3e\x2d\xd9\xdc\xfb\x53\xbd\x2a\x08\x36\x9d\x91\xf0\xb1\xaf\xc0\xe5\xd9\xe8\xd8\x17\xe2\xac\x53\xa6\x1a\x9b\xa9\x13\x8f\x71\xd8\x25\x4e\x87\x1b\xd8\x81\xbb\xba\x70\x73\xf4\x5f\x6b\xcf\xc2\x89\xf7\x2c\x04\x76\xbe\x4f\xed\xb3\x61\xda\x5e\x4a\xed\xe4\x69\xc8\x87\x0f\x0f\x2b\x2c\x04\xab\x28\x1c\xad\xce\x3e\x3c\x0d\x72\x51\x9e\x93\x0d\x7a\xe6\x72\x51\x12\x07\x10\xd8\xa5\x46\xd1\x76\x47\x88\x76\xc1\x38\x25\x4f\x2a\x19\x5e\x38\x09\x82\x23\x00\xf6\xa9\xb5\x07\xd4\xa9\xd3\xd6\xe4\x97\x43\xd4\x90\x76\x21\x97\xe8\x00\x3d\xea\x25\x40\x7d\xbd\x48\x1c\x0c\xae\x29\x6d\xa9\x1c\x65\xd6\x26\x0a\x3f\xa1\x88\x4b\x7f\x4a\xc5\x55\xf2\x3b\x49\x83\xb7\x69\xef\x82\xfc\x48\x1a\xf5\x87\x08\xdd\x67\x9f\x30\x41\xdc\x71\x37\x17\x54\xd4\x27\xa3\xe5\x38\x3c\xa9\x34\xbd\x9a\xf9\xd4\xda\xf9\x47\xf6\x0c\xca\x9b\xc0\xd9\x73\x04\xe4\x2d\xfc\x68\x29\xab\x5a\xd8\xff\xe7\xcd\x0c\x81\xd1\x91\x25\x75\x11\x52\x40\x65\x0d\x2e\xf8\x22\xef\x10\x52\x1c\x1d\x45\x0b\x90\x37\x8e\xe4\x21\x3a\x42\x3f\xfe\xd4\xd7\x06\x24\x15\x3a\x42\x73\xdc\x08\x52\x22\x58\xb2\x88\x40\xba\xe4\xbb\x42\x37\xb7\x84\xaa\xbd\xfb\x23\x6f\x68\xd6\x0d\x1d\xd9\x15\x74\x4d\x7e\xbf\x97\x6d\x9c\x0a\x16\x6d\x8c\xe6\x5d\x8b\x2a\xb6\xde\x8c\xc6\x87\x99\x76\x12\x8e\xc0\x89\xec\x78\x0b\x03\xed\x0a\x56\x10\x79\x15\x50\x76\xf4\x33\x6a\xc9\x6d\xc2\xe7\xe3\x64\x98\xd2\xf2\xf8\x5e\x7b\x8c\xfc\x26\x5c\xb5\xd1\xcf\xe6\x2c\x71\x27\xd6\x8e\xe7\x5a\x11\xbd\x94\x21\x12\xd0\x7b\x23\x09\x6c\xe3\x50\x0c\x8e\xbb\x81\xd1\x2d\xab\x05\x7f\xed\x31\xae\xdb\xfa\x62\xf4\xae\x1a\x92\x0c\x45\x0c\x22\x86\x7c\x57\xed\xb3\x2a\xa7\xcf\x9f\x81\xd0\x7f\x4e\x36\xa3\xeb\x4c\xc6\x0c\x70\xf4\x75\xcc\xce\x28\x4e\x7c\x72\x3c\x6b\x6d\x15\xc8\x4b\x37\x0e\x04\x65\xf9\xcf\x20\xe5\xad\x5d\x78\x73\xe2\xb8\x5e\xd1\xf6\xc1\x83\x07\x7d\x9a\xfa\x09\x6b\xe7\x74\x11\x20\x65\xcf\x4c\xed\xd3\x50\xba\x86\x52\x28\x21\x6f\x0f\xb7\x48\x69\xed\x7c\x9b\x7e\xd7\x76\x2b\x25\x8f\xc4\x79\x0b\x3b\x2d\x57\x27\xc3\x0e\x86\x62\x2f\xe3\x3e\xa3\x9f\xf5\xb0\xb6\x6f\x91\x6c\xc9\x38\xe8\x48\xf7\x29\xad\xd3\xc0\xac\x76\xd5\x93\xe3\x99\x5d\x46\xa9\x4d\x7b\x4e\x31\xee\xbc\xe7\x5c\xe3\xce\x77\x9c\x34\x28\xcf\xf5\xf5\x42\x7b\x83\x76\x98\xaf\x75\xef\xec\x39\x53\xdb\x6d\xcf\x39\xda\x6e\xfb\xcd\xce\x2b\xc5\x56\x0d\x76\x53\xdd\xca\xb0\x27\xb9\xe6\xa1\x30\x7d\xf4\x3f\xdb\x26\x9a\x75\x54\xf2\xbf\x5b\xa5\x60\xfa\x26\x9c\x75\x57\x07\x81\xef\xde\x3b\x71\x6d\x7a\xe8\x84\x68\x49\x94\x12\xa9\x53\x63\xc3\xdc\xb1\x35\xde\x28\xa3\x8c\xb6\x15\x27\x58\x10\x81\xc8\x0d\xe1\x9b\x42\xe6\x19\x84\x61\x6e\x70\xd3\x11\x10\x2a\x5d\x23\xe9\xba\xa1\x5e\x88\x40\x02\x9b\x0c\x33\xdb\x24\x43\x0b\x22\x03\xa7\x22\x0c\xd5\x4b\x60\x05\x40\xf7\x3c\x37\xc8\x5c\x10\x5e\x91\x56\xe2\x05\xc9\x2d\xc0\x02\xa1\x87\x00\x8c\x7e\x46\xeb\x0c\x5a\x91\xde\x43\x50\xd0\x51\x00\xa5\x44\x76\xd0\xaf\x7b\x44\xdb\x64\xab\x64\x98\x0c\xec\xa5\xc9\x20\x03\x4e\x76\xa2\xde\x8e\x02\x32\xf9\x66\x2f\x39\xd3\xf7\xd3\x8e\x1b\x39\xff\x72\xaf\x0d\xb1\x5d\x81\xdc\xb2\xba\x43\x3f\xf7\x1f\xb9\xfa\x7c\x0c\xfd\xd4\x26\x6b\x97\xae\x94\x26\xe5\xda\x9d\x39\x29\x03\xd9\xe9\x36\x2c\x83\x33\x3f\x34\x84\x75\x29\x9c\xde\xe0\x8f\x42\x23\x65\x86\x9a\x73\x28\xcd\x2c\x18\xfb\x01\x74\xc8\x31\x44\xa6\x26\x73\x1d\xa8\x40\x9c\xcc\x09\x27\x6d\x65\x1d\x5d\xd6\x64\xc1\x66\x50\x21\xf1\x6a\x6d\x93\xe7\x4d\x37\x07\x18\x37\x0d\x9a\x77\x12\x32\xff\x63\x5c\xc5\x14\x9d\xcf\xd1\x5b\xe3\xf1\xd6\xc9\x16\x00\xf8\x2d\xcc\xb1\xcd\x7c\xe9\x72\x49\x5a\x07\x17\x6e\x55\x24\x93\xa7\xc2\xc4\x2c\x66\x9b\x43\xdb\xd0\x75\x48\x7c\xeb\xa0\xf5\xcd\xaf\x2c\xfa\xe8\x4b\x1f\x2e\xf8\x1b\x1a\xe5\x48\x1d\x70\x32\x37\xff\x1d\x47\xb0\xfb\xfc\x93\x57\xb0\x84\xbd\x0a\x90\x1b\xcd\x86\x9c\xfa\x63\x12\xa9\xab\xa4\x4e\xa2\x13\x79\x70\xc0\x2c\x90\x71\xd3\x25\xeb\xd7\x0b\xd7\xcf\xb0\x17\xb2\x23\x75\x19\xf4\xfe\xf1\x8e\x02\x0e\x6e\x4d\xca\x8e\xc2\x13\xb6\x5a\x77\xd2\x71\x93\xb8\xa5\xb2\x5a\xea\xac\x00\x85\xd8\x0c\x0b\xc8\x0e\x42\x6c\x3e\x17\x44\x6a\x3f\x90\x47\xd3\x90\xe6\x81\xef\x36\xed\x3d\x18\x16\x44\x5e\x85\x2c\xf3\x94\x71\xab\x3d\xe6\xfc\xe1\x54\x0f\xfb\x9f\x7e\xcb\x6f\x9a\x30\x9e\x56\xd2\x87\xb9\xcf\xf6\x8b\x58\xb0\x74\x84\xa4\xcc\x31\x29\x2c\xeb\xa4\x48\xe6\x54\xc6\x27\x78\x1d\x39\xbe\x2b\xb4\xf2\x63\xe8\x7d\x75\x52\xf0\x65\x14\xe6\x1e\xef\xc1\x7e\x31\xf9\x2d\x6b\x6a\xad\x8e\xbc\x75\xd7\x69\xa6\x7a\x6b\xbd\xb5\x9b\xce\xb9\xdb\x9c\x18\x9b\x35\xc4\x05\x18\xc2\xad\x6a\xfd\x80\xd6\xf1\xe8\x9b\x5b\x0b\xe8\xd0\x08\xe6\x1d\x6c\x23\xa3\xc3\xc4\xb7\xbe\xbc\xf4\xd3\x96\x53\xcb\x64\x9f\xf1\x54\x08\xae\xe0\x30\x4e\xc2\x49\xc5\xb8\x4b\x8f\x77\xf1\x12\x60\x6b\x93\xf9\x16\xe4\xe9\x7b\xb9\x0b\x4e\x3f\x3d\x96\x96\xda\x5a\x91\xf5\xc3\xbd\x01\x86\x14\x05\xb0\x30\x1f\xb7\x8f\xe3\x28\x0e\xe3\xa8\xa5\x0d\xa2\x73\x7d\xc8\xb4\x5f\x48\x34\x67\x9d\x09\x1e\xba\x98\xb7\x27\x97\x8f\xeb\x28\x0b\x4f\xdb\xb1\xf0\x8d\x3a\x35\x85\x8e\x80\x2d\x38\xbb\x55\x62\xbe\xa6\x70\xe0\x63\xbe\x71\xd0\x6a\x46\x04\x52\xd4\x03\xd7\xb7\x8e\xbd\x37\x0c\xd7\x0a\x2f\xd0\x36\x61\xcf\x47\x77\x70\xa8\x30\x2d\x32\xe9\x6c\xf6\x74\xe4\x9f\x19\xfd\xac\x27\x98\xef\xe2\xa8\xd9\x3f\x82\xbd\x41\xe7\xc0\x37\x96\x66\xa7\x0e\x6b\xf0\xd1\x35\xf3\xa9\x99\xe6\xd4\x4c\x73\x3a\x63\x9c\xb3\xdb\x27\x9f\xbf\xd7\xb0\x13\xd0\xbf\x7f\x3d\x52\x54\x3f\xd4\x7d\x2d\xd4\x4b\xdd\xf7\x02\xcb\x65\xba\x2f\x93\xf1\xdf\x90\x39\x3a\x2a\x60\xf3\x63\x38\xaf\x9f\xd2\xbd\xed\x25\x52\x00\x67\xaa\x5d\x58\x51\xcb\xdf\xef\xe5\xff\x33\x3d\x5b\xda\xa4\x1b\xf5\x12\xeb\xe4\x83\x15\xab\x35\xf7\xc4\xce\x30\xb3\x55\x4d\xe4\xd3\x07\xff\x32\xd6\x28\x6f\x57\xd0\xd6\xf1\x0d\x49\x57\xb0\x25\xb7\x7e\xe7\x46\x3f\x86\xb4\x5b\x73\x52\xf4\xc3\xe8\x50\x71\x28\x6d\xd1\xd1\x11\x7a\x88\x7e\xfb\x2d\x6a\x3c\x0a\x46\x71\x5e\xdb\xaf\x8f\xfa\x81\x1c\xa0\x47\xe8\xf3\xcf\x23\x18\x25\x10\x4f\x0c\x88\x35\x67\x6b\x26\x48\x1d\xc2\x18\x8d\xc7\x87\xd9\xba\xdd\x3f\xd1\x02\x05\x68\xbc\x49\x03\xa9\xb0\x83\x6d\x89\x80\xb9\x24\xf6\x36\x8f\x06\x6e\x5a\x33\xee\xae\x5c\x66\x57\x7d\xee\x17\x16\xfc\xae\x2c\x8f\x3b\xb9\x1c\xbd\xe8\x24\x96\x64\x8c\x3e\x11\xff\x97\x99\xbf\x40\xe9\xd2\x1e\xc0\x42\x10\xb8\x55\x97\xfe\xa0\x3e\xab\x74\xa9\x8e\x8e\x4a\x2b\x38\xe9\xe9\x2c\x04\x18\x50\x76\xb9\x14\xe3\x7a\xa4\xe1\xb4\x5a\x51\xb1\xc2\xb2\x5a\xfa\x54\x3c\x03\x52\xdc\xcf\x60\xf6\xed\xca\x10\xd1\x6d\xf3\x8f\xd0\x2f\x9f\xb6\xc5\x3d\x67\xd3\x45\xde\x04\xe9\x54\xa3\xb1\x0d\xf5\x24\xca\xad\xce\xb9\xb2\x79\x5e\x2b\x93\x05\x8d\xd1\x92\xfc\xa2\xf6\xbf\xea\xc0\xe6\xe8\xf1\x57\xea\x34\x54\x43\x28\x1b\x6c\x44\xa7\x04\x3d\xfa\x1f\x34\xdb\x48\x22\x14\x77\x3e\xfa\xea\xef\x68\x46\xa5\x18\x47\xa0\xdf\x72\x25\xf4\x25\x9d\x35\x06\x95\xb7\x46\x14\x29\x91\x63\xb4\xae\xd1\xdf\x35\x14\xdf\x13\xd4\x4a\x68\xfe\x1d\xbb\x05\x95\x23\x06\xf2\x44\xf7\xfc\x7a\x34\x9e\x4a\xf6\x0d\x5d\x9c\xb5\x35\xc5\xed\x37\x0a\xc8\xa8\x04\xe5\x5b\xba\x58\xde\x19\x0c\x04\x64\x03\x32\xa2\x23\x43\xc5\xa9\xce\x21\xfe\x96\xfc\x32\xf2\xc3\x8c\xa7\x15\x6b\x2b\x2c\x47\x3d\x6d\xbe\x63\xb7\x63\x0f\xbb\xc8\xcc\xe1\x60\x53\x13\x02\x3c\x3a\x42\x8f\xbf\x9a\xdc\x2b\xb3\xeb\x9b\xfd\xd7\xcf\x73\xeb\xf8\x5e\x7a\x48\x84\xe3\xa7\xa7\x45\x60\xab\x4c\xd4\xaa\x9f\x9f\x4e\x8a\xf7\x00\xb3\x93\x1c\x82\xb5\xb9\xc8\x8d\x0d\x06\x37\x82\x01\xa5\x73\xfa\xdc\xb5\x71\x67\x4d\x9b\x70\xea\x10\x7c\xe3\x4f\xf1\xff\xf7\x23\x28\x09\x15\x54\x5b\x09\xf4\x53\x50\xef\xde\x42\xdd\x0a\x20\xa5\x53\x85\xb2\xe1\x14\x6f\x61\xd5\x3a\x90\x7a\x6a\x77\xb9\x3f\x76\x19\xee\x5b\x82\xb9\x9c\x11\x2c\x77\x1e\x72\x69\x7b\xec\x3f\x6c\x8f\x28\x7f\x1b\xe8\x70\x5b\x06\x2f\x08\xfa\x9e\xb1\xdf\xd8\xd9\xe8\xc0\x38\x38\x06\x20\x37\x5b\x30\x6f\x88\x3a\xf5\x6f\x4e\x49\x63\x6c\xe7\x70\x48\x47\x12\x58\x95\x9e\x1b\xec\x4a\xd6\x69\xd8\x30\x2d\xf0\x27\x69\xf5\xc2\xff\xdd\x67\x2d\xe5\xda\x85\xfa\xf8\xe5\xc9\xd8\x49\xed\x42\xff\xd7\x34\xbe\xd7\xaf\x8f\x0d\x7d\xc9\xc5\xcc\x56\x4f\xcc\x26\xdf\x15\xc2\x0a\xf9\x99\xe1\x47\xa7\xe2\x07\xdc\xd0\x1a\x86\x8a\x7c\x4e\xa3\x00\xc3\x82\x21\xd4\xeb\xb0\x2b\x1f\x7a\x3b\x03\xb3\x3e\xba\x32\x98\x88\xe0\xe3\x43\x74\xff\x25\xb9\x35\x86\x05\x7c\xe5\xa4\x52\x7a\xe7\x15\x89\x6e\xa5\x38\xc2\x51\xa6\xad\x21\x87\x4e\x13\x1c\x7c\xfd\xf7\x93\x73\xf4\xde\x1e\xf8\x17\x02\x49\x31\xaa\x25\xab\xbc\xcc\x60\x86\x8c\x01\x8b\x85\xdf\xfc\xa7\x31\x59\x32\xbd\x4f\xca\x3c\x3b\x83\x81\x46\x8a\xbb\xf6\xe1\xac\x96\xdc\xfe\x21\xdc\x95\xc4\xf0\x12\x02\xee\xc1\x68\x96\x58\x01\xa7\xf9\xbf\xff\xd3\xf8\xec\xa3\x0a\xb3\x88\x52\x7f\x06\xaf\x85\x7c\xa6\xf8\xee\x53\xf1\x9a\x8b\xa2\x46\x33\xde\x83\xc7\x32\x7f\xb7\xe6\x33\xfd\xff\xc3\xdc\x1d\xfe\x21\xec\x76\xe2\x2d\x6f\x37\xc4\x34\x74\x71\xde\x7f\x93\x84\x2b\x2c\x99\x8d\xc5\xeb\x4b\x03\xa5\x04\x2c\x0f\x9e\x9a\xb6\x0d\xc3\xf5\x93\x6c\x4a\xd6\x88\x7d\x60\x9a\x3d\x98\x5b\x00\xd1\xc4\x77\x1c\x43\xd9\x8a\x23\x37\xbd\x09\x92\x6c\x77\xc8\x5b\x57\xab\x2f\xaa\x4c\x6e\x5f\x6e\x0f\x2c\xff\xbb\x49\x86\xbb\xb0\x7d\x3e\xfb\x78\xee\x7b\xd0\xf2\xe9\x77\xaf\xfe\x79\xd9\x1f\x38\x56\x1b\x6a\x6b\x2c\xf5\xdf\x8d\xa4\xc8\xc8\x3e\x1f\xdd\x7c\x72\x84\x1e\x4d\x1f\x1a\x3d\x4c\x07\xf2\xfd\xa6\x92\xb7\x84\xb4\xe8\x57\xc2\x19\x08\x2a\xd6\x92\x0f\x5c\xa1\xc1\x60\x7c\x84\x58\x71\xa1\x1e\x3c\x40\x67\x2d\xf8\xfe\x19\x47\x35\x15\xf0\x5f\xdc\x49\xb6\xc2\x92\x56\x2e\x7b\xa1\xc2\x4d\xd5\x35\xb6\x96\x5b\x5b\xa3\x35\xde\xc0\xfd\xb5\xad\x8a\x9b\x81\x64\xb2\xce\xf4\x58\xf5\xe8\x67\x44\xf4\xff\xca\x49\x67\x5b\xe4\x89\xea\x52\x14\x21\x3d\xc3\xed\x25\x48\x0c\x62\x05\x31\xb2\x15\xba\x17\x8a\xbd\x64\x21\x2b\x2a\xc3\xbb\xac\x67\x37\xa4\x95\xa3\x92\x53\x3d\x3e\x43\xb7\xa4\x04\xef\x92\xf3\x3b\x98\x35\xbc\x35\x65\xa2\xa7\x75\x96\x3e\x11\xb7\x83\xab\xaf\xd9\x1d\x19\xfb\xd9\x76\x1d\x32\x6c\x5b\xbe\x9c\x18\xb6\xd8\x76\x19\x0d\xf5\x5f\x18\x2b\x20\xb5\xe7\xbd\xac\x10\x42\xff\xe5\x20\xfb\xc9\x82\x87\x21\xcb\x20\x1f\xe1\xb2\x11\x80\xfe\xe2\x98\xe6\x82\x57\x9a\x48\x84\x8c\x0f\x0e\xd2\xe1\xb7\x5c\xff\xcd\xd3\x8b\xe7\xe6\x2a\xc3\xf9\x29\xa2\xad\x5d\xc4\x02\xca\x00\x7d\x8a\xd7\x6b\xd2\xd6\xa3\x81\x21\x46\x1a\xc4\xa1\x01\x35\x4e\xbd\xb3\x19\xda\x8a\x82\xf1\x3d\xc8\x30\x5f\x1b\x7d\xd9\xcb\xae\xd1\x4f\x2e\xdf\x25\x4c\xe2\x4f\x87\xf8\xea\x0e\x43\x8c\xbe\x42\x7f\x2b\x8c\x33\x1e\x1c\xe8\xf1\x5d\x06\x7a\x3c\x30\x50\xc6\x30\x4a\xb6\xc4\x17\xe5\x21\x6f\x25\x16\x02\x69\x9b\xdc\x99\xef\xae\x2d\x84\x52\x29\xd7\xe8\xfd\xe5\x72\x60\x83\xbc\x41\x70\x1d\xdc\x4d\xb7\xd4\xca\xdd\x50\x35\x02\x2a\x6f\x53\x92\x13\xf9\x77\x79\xbf\x58\x66\x84\x7f\xe5\x6d\x4b\x57\x6f\x73\x36\xec\xef\xf7\x55\xa1\xdf\x57\x3b\xf4\x7b\x5c\xe8\xf7\x78\xa0\x5f\x2a\xe5\xe2\xbf\xfb\xda\x3b\x89\x17\xfd\xd9\x4b\xe9\x50\xf8\x65\x5f\xe5\xbd\x42\x81\xe7\xff\x9f\x88\xbc\xb2\xf6\xf1\x00\x5d\x10\x3e\x67\x7c\x25\x90\xc0\xad\x92\x6f\xd5\x92\x54\xd7\x22\xa8\xac\xc7\x6e\x68\xed\x62\x71\x51\xd6\x15\x54\xb9\x81\x32\x79\xa4\x15\x9d\xf1\xb6\xea\x3b\x9c\xb4\x5d\xfc\x9f\x68\x98\x03\x74\x05\x0e\x59\x28\x57\x7a\xa3\x2c\x62\xe3\xe2\x8e\x21\x26\x7d\x8e\x5d\x6d\x42\x5b\x2a\x15\x8a\x3e\xd4\x02\x4a\x06\xd8\x1b\xac\xba\x02\x03\xfa\x1a\x3d\x4c\xaa\xb6\xcd\xe3\x14\x0b\x5b\xbf\xc3\x22\x10\xff\x00\x45\x69\x73\x75\x33\xbe\x4d\xfd\xae\x42\x37\x4c\x5a\x3b\xb7\xbe\x5e\xb8\x32\x81\xa4\x55\x54\xaa\x89\x12\xc6\x10\x76\x68\x0b\x65\x41\x92\xfb\xe6\xa9\x76\x12\x5e\x17\xbe\xe0\xe4\x04\x96\x62\xf4\xc9\x75\x8f\x54\x4b\xd8\x57\xe7\xef\x77\x71\xc4\xb8\x1d\xb8\x99\x7c\xf9\x68\x72\x07\x0f\x9a\x9d\x46\x08\xa7\x10\x72\x56\x9f\xfb\xe7\xad\x5e\x63\x2f\xfa\x12\x42\xe9\x82\x1d\xf6\xa6\x51\xc4\x0a\x83\x26\x01\xd4\x01\x09\xb6\x4a\x50\x3f\x53\x2c\x59\xd7\xd4\x39\x57\xde\xe9\x70\xd7\xf1\xb1\x72\xac\x77\x8f\xb3\x7e\xaa\xab\x2e\x37\xff\x74\xd8\x4c\x50\x11\xa6\x8f\xa9\xe1\x70\xd3\xc5\x1b\x4e\x21\x1f\xab\x3c\xda\xb6\xca\xa6\xbc\x3d\x24\x1c\xfd\x49\xe7\x77\x36\x21\x0b\xa4\x83\xdc\x0e\xda\x56\x04\xdd\xda\xbb\xf4\x82\xc8\xf8\x02\xf4\x44\xfd\x56\x33\x48\xd7\x69\xa1\x9a\x07\x2b\xc2\x01\xfe\x09\xef\x4c\x23\xdc\x08\x36\x45\xff\x24\xda\x6a\x35\x7d\x75\xae\xe1\xc0\xed\x89\x70\xe9\xf4\x34\x75\xd6\x81\xd5\x39\xea\x15\x6d\x47\xe3\x29\x69\xeb\xc4\x99\x9a\xd0\x0d\x91\x46\x94\x76\xa3\x29\x30\x52\x99\xc9\xba\x8a\x5a\xda\xeb\xbb\x15\x0d\xa7\x53\x5b\x44\x00\xd6\xa5\x64\xeb\x1f\x40\xdc\x25\x68\x94\x40\x9c\x3e\x7f\x16\x75\x3e\x6b\xeb\xd3\xe7\xcf\x06\x12\x74\x22\xc1\x7a\xd6\x9a\x9c\xb9\xca\x16\x43\x40\xb8\x92\xf4\x86\x04\x05\x95\x60\x2d\x84\x29\x50\xcc\xda\xa0\xa8\x91\x3b\xa5\x06\x4e\x13\x48\xec\x5f\x11\x89\x91\xc9\x69\x30\x72\xdb\x54\x8d\x0a\xb3\x8e\x8b\xf5\xa8\x4c\x85\xa6\x79\xd7\x6a\xf5\xb0\xa6\xf3\x39\xe1\x22\x2e\xb3\x60\x12\x38\xa1\xfb\x49\xc0\xc7\x68\x46\x74\x25\x6e\x6a\xee\x20\x80\xca\x14\x84\x76\xc3\x34\x65\x53\xb8\x5b\x9b\xfc\xee\x0a\xc3\x14\xe5\xd3\x71\xc8\xd8\xaa\x54\x26\x7f\x1a\x6a\x5d\x40\xa5\x9a\x52\x11\x2a\x40\x52\xa3\xf5\x14\x37\xcd\x0c\x57\xd7\xe8\x85\xda\xe7\xa3\xb3\xa7\x2f\xc6\x5b\x8f\xa7\x97\x26\x8a\xf4\xc9\x0f\xa6\x8f\x6b\x51\xee\x64\xe6\xfe\x11\xd6\xe7\xd6\xf3\x36\xa6\xa2\xce\x43\xdd\xa2\x18\xf4\x1e\x73\x87\xd9\xb1\xe7\x48\x6e\xf5\x7d\x8f\x90\xf9\xcf\x38\x33\xa2\x92\x24\x10\xbf\xf5\xcb\xc9\x36\xb9\x45\x39\x70\x95\xe2\x8e\x61\x90\x81\x21\x82\x8b\x16\x7b\x2b\x19\xf9\x61\x7f\x02\x01\x0f\x90\x39\x71\x7e\x60\xd9\x07\x10\x57\x5a\x03\xff\xa3\xc8\x71\x35\x5b\xe8\x85\x4f\x0b\x8b\xd3\x04\x33\x2c\xce\xad\xd0\x28\xc8\x0c\xb8\x46\x61\xb0\x50\x67\x8f\x2e\x91\xe6\xcb\xb8\xc7\x1c\x6e\xcd\x4b\x4f\x9a\x72\x32\x5f\xb2\x99\xe1\xba\x7c\xbf\x0d\x57\xe4\xc5\xf2\x56\x2f\xda\x99\x5b\xb8\x36\xa1\x87\x2e\x43\x62\x2d\x0d\xeb\x33\xb6\x22\x5d\xd1\xe1\x96\x2b\xb1\x0e\x0f\xef\xbc\x75\xa2\xf4\xb8\xad\x2f\xdd\x0d\xdc\xb7\x68\x46\x1a\x16\xdf\x14\x8f\xaf\xe5\x3f\x9c\x3e\x4c\xa4\x43\xe1\x4a\x7e\x9f\x00\x29\xfc\xe6\x2e\xd9\x7b\x19\x31\xce\xf9\xed\x12\x92\x87\x0d\xff\xf8\x7c\x49\x38\xb5\xa0\xac\x95\x9d\xa6\xbb\x27\x00\x95\x20\xc3\x4f\x06\xd3\xf3\xcc\x9a\xb3\x05\x27\x42\x40\x91\x20\xce\xba\xc5\x32\xa8\x21\x36\xed\x71\xd4\xe6\x69\xac\x29\x03\x17\xe6\x71\x92\x1e\x60\x5b\xca\xbe\xa3\x20\x0b\xdd\x6a\x30\xe6\xd6\x5e\xfe\x5c\x4b\x9f\x97\xbe\xb8\xd2\xa9\x40\x72\xce\x1a\x4f\x16\xde\xeb\xb1\xd1\x05\x09\x76\x70\x1b\xef\xb7\x9f\xd0\x4e\x7b\x06\xed\xb9\x33\xd0\xd6\x7d\x86\x06\x9d\xcd\xbb\xc7\x9c\x4b\x2e\xe8\x5d\x92\x1e\xd2\xb3\xe6\xcf\xf1\x36\xfd\x75\xbd\x38\xb9\xb8\x00\x03\x05\xfb\xf3\xc9\xbf\xd2\x14\xa9\x99\xb1\x23\xa2\x54\xbe\x23\xd8\xef\x0a\xa6\x53\xf3\x7a\x5d\x47\xbb\xe8\xec\x9c\x18\xad\x9d\xca\x3b\xa8\xeb\xa1\x7e\x4b\x5b\xa9\x7d\x2c\x51\xbd\xd3\x6c\x5e\xa1\x4b\x27\x2e\x1b\xbb\x89\xe0\x87\x35\x5d\x95\x11\x27\xcc\x85\x0d\x5f\x47\x76\xa5\x53\xce\x21\x3e\x59\x91\xbd\xd5\x7f\x4b\xbf\x50\xf5\x77\x37\x44\x68\xff\x71\x0e\x5e\x35\x65\x64\xc6\xa0\x5d\x57\x6f\x18\x58\x49\x69\xe5\x2b\xbe\x61\x14\x7c\x4f\x35\xeb\x66\x0d\x48\x4f\xfd\xce\x58\x2c\x7e\xa1\x46\x5e\x52\x7b\xf2\x53\x18\x48\xd6\x26\x89\x06\xf9\x23\x0c\x94\xd0\xf0\xfa\xaf\x91\xf2\x89\x8c\x94\x7f\x0b\xbb\xe4\xaf\x63\x56\x84\x60\xb3\x31\x42\x8f\x57\x60\x12\x84\x66\x56\x72\x11\x6c\x30\xdd\x68\xfc\x29\x6c\x18\xb3\xbb\x93\x0b\x3c\x20\x24\xac\xbe\x4d\x86\x14\x4f\xd7\x65\xf8\xed\x1c\x4b\x12\x12\xa2\x19\x2a\x57\x7b\xd8\x4d\xa8\x6c\xee\x14\x28\x56\xd0\xba\xc0\xde\x29\x2d\xcc\x67\x50\xe2\xea\xae\xda\xdc\x76\xed\x6c\x5f\x7d\x6f\x8b\xcd\x82\x76\xb3\x5b\xd0\x16\xdb\x05\xfd\x67\xd9\x2f\x64\x8b\xf1\xf2\x29\xcd\x83\xdd\xf8\xef\xbf\xb6\xc1\x27\xb3\x0d\xf6\xd9\xd5\x7f\x5d\x4b\xc1\xfe\xef\x4f\x70\xb4\x07\x7b\x7f\x62\xee\x75\x42\x54\xe2\xcc\xe8\xb9\xba\x1c\xb9\x98\xc0\xf3\x26\x6f\x83\xa2\x82\x85\xd4\xd9\x2f\xd1\xa3\xb7\x5b\x2c\x03\xd0\x32\x4d\xc2\xa0\x51\x2c\x0f\x90\x80\x00\x90\x89\xff\x86\x05\xca\xa9\xd0\xc8\xe8\x00\xa0\x99\x94\x2e\x97\x4e\xe3\x5a\xa1\x33\xc6\xa4\x90\x1c\xaf\xd7\xb6\x40\xa6\xa6\x88\x09\xa9\x99\x97\x15\x44\x8b\xd7\x62\xc9\xe4\xc4\x94\x60\xd6\x3f\xd2\x5f\x89\x08\x5e\xd3\x74\x04\x34\x15\x8f\xd7\x69\xd9\x21\x73\x2a\x42\xc6\xbe\x9a\xc2\x04\x6a\x57\x43\x79\x12\xa3\x7a\x63\xe9\x86\x1a\xd2\x80\x2d\x99\xe3\xa3\x70\xe0\xfe\xd9\xbe\x79\x5e\x9f\x5a\xa1\xbe\x6b\xdd\xcb\x3b\x94\xbd\x2c\xa9\xc1\x7e\xe3\xec\x12\x04\xef\xb9\x8f\x3d\x28\xec\x7b\x22\xd6\xf6\xe6\xad\x7e\x63\x18\x3b\x05\xe9\x2c\xf2\xf5\x02\x1f\x38\x5b\x10\x2e\xe4\x46\xea\x94\x6d\xe7\xeb\x18\xe4\x05\x1f\xee\x76\x5d\xe1\x3f\x30\x96\xff\xb1\xc3\xce\x1f\x29\xea\xfc\x17\x0a\x3a\xff\x35\x62\xce\x69\xf4\x20\x35\x87\x82\x82\x04\xc3\x9e\x66\xe3\xc0\xf8\xb8\xe1\x1d\xfb\x71\xa6\x4a\xcf\x31\x58\xbe\xd5\xb3\x2d\x30\xe3\xda\xed\xa4\x50\xa2\x9d\x94\x44\x74\x07\xd5\x13\xd9\xc0\x0d\xfd\x18\x81\x1a\xfb\x29\xd5\x51\x1e\x3d\x9c\x3e\x2c\x78\xdb\x51\xf9\x6c\xc9\xbe\xea\xe9\x19\x9c\x2e\xfe\xff\xe5\xb6\xdb\xed\xa4\x0f\x0a\xad\xdc\x31\xb2\xf2\x87\x04\x56\xfe\x60\x77\x34\x8a\xaf\xe8\xc7\x97\xaf\xa9\xd0\x27\x9e\x5a\x60\x57\xc6\xc8\xe9\x7a\x50\x1d\x5f\xeb\x8e\xae\xbf\x64\xa6\xea\x51\x84\xa2\xce\x53\x34\x0a\x9a\x2b\x49\xe2\x45\x9e\xb9\x9b\x3f\x07\xb1\x5c\xb8\x40\xee\x6e\x73\xbb\x4b\xef\x49\x11\x8a\xa7\x56\x97\x75\x68\x63\x40\x59\x17\x0d\xd2\xaf\xe0\x48\x86\x70\x7d\x83\xad\x4e\x9b\x2b\x90\x50\xbc\x49\x23\x6f\xde\x03\xb2\x45\xcf\xde\x75\x94\x6b\x8d\xbd\xd6\xaf\x7d\x07\xa5\xf9\x57\xa4\x5c\xa8\x52\xe9\x92\x66\xbc\x6f\xd4\xf8\xa3\xcc\xfd\x07\x25\xc9\x06\x8f\xcf\x82\xb6\x04\x0f\xa2\xf7\x1d\xa9\xe5\xd3\x3f\xf0\x8f\x01\x26\xe8\x08\x2d\x88\x3c\x09\xbe\x29\x9c\x13\xe8\x13\x39\xd6\x3e\xeb\x13\x6b\x17\x78\xe3\x36\x23\x1c\xd1\x74\x5e\xb8\xc6\xa3\xb4\x02\x73\xbf\x65\xbb\x7c\x04\x30\xb8\x92\x1d\x6e\x9a\x0d\x5a\x42\x9a\x3f\x44\x22\x10\x5d\xad\x48\x4d\xb1\x24\xaa\x81\xab\x9a\x43\x4c\xb0\x61\x11\x3e\x8f\x98\x40\xb7\xa1\x88\xb7\x6b\xbc\x31\x7b\xf8\x29\xe3\x17\xa6\xa4\x8e\xd9\x5f\x6f\x83\xf1\xd7\xd1\xbc\x2a\x52\x04\x1c\xa9\x51\xb8\xe7\xca\x51\xe9\xce\x85\xfd\xe8\x92\x42\x03\x28\x15\x7b\xfe\xde\x87\x4c\xc8\x2e\x53\xb0\xf9\xbe\x3e\x2a\xb2\x42\x5a\x45\x7e\x0b\x86\xdb\xf4\xa4\x7e\xc4\x52\xc6\x3f\xbb\x78\x75\xf2\xed\xe5\xd9\xd5\xf7\x17\x65\xa6\x37\x14\xf5\x16\x8c\x4e\x3a\x3e\xb1\x0f\x79\x8d\xc6\xe8\xf3\xcf\x11\x30\xeb\xe9\xf3\x67\xd3\xfa\x3a\xfa\xe9\xb3\x23\xd4\xd2\xec\x52\x57\x36\x9d\x5e\x99\x3e\xd8\x0b\x84\xb1\xd9\x14\xab\x15\x95\x1f\x46\x83\x93\x57\x2f\x5e\x9c\x5f\xfd\x65\x77\xfe\x5e\xcc\x46\x76\xe6\xb2\xfd\xb8\xbe\x26\x73\xdc\x35\xb2\x4c\x44\x5d\xd8\xe6\x5e\x19\x42\xe2\x1a\x3a\xc1\x4d\x23\x82\x2a\x2d\x6f\x9d\x97\x45\x0c\x58\x1b\x49\xd9\x6c\x97\xc2\x01\x8a\x80\x4c\x5e\xb9\xef\x2f\xb1\x0d\xb7\xf3\xf2\x0d\xf6\x87\x5d\x3f\x25\x1a\xe7\x68\x66\x77\xbc\xd7\xab\xf8\xcf\xe6\x80\xbc\x34\x09\xde\x21\xeb\x95\xe4\x48\xe6\x81\xfe\x44\x95\xa9\xd0\xc7\xc8\xe8\x4b\x54\x33\xf8\x2f\xac\xef\x28\x99\xf6\x61\x4a\x87\xc9\x40\x9a\x46\xaf\xcb\x72\x47\xbe\xec\xe7\xb3\x61\x9e\xbc\x18\xe4\xc9\x5c\xde\x7d\x64\x96\x0c\xce\x82\x84\x1d\x43\x24\x0d\x2b\x06\x5f\xed\x78\x71\x79\x40\x5e\x7f\x08\x99\xcd\x53\xd3\xdb\xe8\x6c\xf8\x1c\x1d\x87\xb2\x42\xbf\x1b\x99\xa7\x27\x16\xc4\x81\x91\x84\x9f\x82\xe4\xe6\xe8\x49\x68\x6e\x9e\xc2\x0d\xa9\xad\xa7\xba\x0f\xb9\xb7\xa7\xce\xbc\x0c\x32\x4e\x8c\xb6\x1f\xd4\x38\x74\xd5\xbe\xdc\x2b\xbd\x28\x4d\xaa\x13\xc3\xb6\x9f\x59\x06\xc6\x21\x4e\x46\x56\x50\xfc\x3f\x72\x75\xf4\x52\xbd\x4f\x2d\xe8\xbd\x23\xbe\x55\x8f\x18\x28\x4c\x30\xa4\xf4\xf5\x0e\xb8\x93\xa6\x98\x57\x2f\xf7\xa4\xd3\xcc\x27\xd9\x35\x3c\x4e\x16\x59\xc2\xb9\x05\x1d\xe4\x24\x0a\xe7\xf8\x19\xb6\x9f\x8b\x0f\xee\xf4\x93\xd5\xe1\x1c\x3c\x3f\xa7\x2b\x7f\x99\x82\x95\x25\xaf\x5d\x54\x43\x60\x47\x8f\x80\x33\x30\xf5\xfb\x87\x7a\x53\x87\x70\x60\x9e\x3a\x7e\x8b\x6d\x5e\x11\x9a\xd9\x57\x6e\xac\x37\x39\x2d\xe2\x39\xe8\x7c\x68\x7c\x82\xd2\x65\xb7\x5a\x99\x32\x9c\xc1\x54\x3c\xff\xe4\x9c\x13\x68\x72\x81\x12\x07\x34\xc9\xf4\xb7\xbe\xd2\xa6\x81\xea\x96\x80\x9a\x66\x6f\x06\xc5\x88\x4e\xdd\xcc\xc7\x43\x20\xa2\x07\x8f\x12\x08\xa1\x7f\xca\x03\xd1\x8a\x74\xe6\xf9\x49\x60\x07\x4b\x7c\x27\x0b\x2b\xe2\x0b\xe9\x5e\x2c\x34\xaf\x56\xb0\xb9\x7e\xca\xc2\x1b\x90\xd1\xfa\x7d\x21\xd2\x77\x2c\x0c\x48\x68\xe9\xcb\x51\x98\x87\xb6\xb5\x98\xd1\x5b\xca\x3c\x0a\xb7\xc4\x37\xa4\xfd\x42\x1a\x3f\x03\x6d\x25\xa9\x7b\xb8\x72\x43\x64\xa6\x9f\x98\x16\x17\x7a\x9f\x1d\x95\xae\xbc\x59\x0e\xb8\x52\x83\xea\x86\xa3\x5c\xd1\x99\x13\xa2\x57\xd7\x00\x79\x4a\x88\x50\x5d\x9f\x12\xf2\x0d\x6e\x70\x0b\xda\x4d\xd8\xe9\x06\x73\x78\x4f\x1f\x96\x55\x97\x4b\x39\x56\x34\x72\xa8\x3c\x9c\x3e\x4c\xa3\x08\x7e\x10\xaf\xfc\x9b\xf6\xf9\x39\x35\x08\xfc\x29\xfc\x78\x4d\x5a\xcd\x3a\xba\xc9\x6e\xde\xf8\xfd\xe1\xa2\x2f\xd1\x28\xc6\xf6\xc0\x4f\x65\x9b\x13\xfd\x3b\x86\xb5\x42\xa0\x5f\xa5\x54\x0c\x35\x63\x6d\x27\x2c\x13\x40\x12\x5f\x58\x21\x39\x5c\x15\x68\x79\xa5\x1b\x26\x56\xd9\x37\xfe\xa7\x92\x7f\xb1\x9b\xe9\xd2\x89\xf9\x58\x19\x8b\x07\x0f\xb3\x70\xe2\xbe\x4e\xd7\x2e\x44\xe5\xc9\x10\x11\xf7\xa4\xf8\xc0\x8f\x07\xe1\xa0\xdb\x62\x15\xd1\x16\xde\xcd\x6f\x1b\x1a\x20\xbb\xe0\xf3\xb7\x6d\x01\xbc\xc1\xf7\x42\xb2\x25\x72\x8f\xe1\xdc\xfa\x67\x77\x22\x23\xca\xd5\xbf\x84\x52\x36\xb6\xda\xb3\xd6\xb6\xb2\x8a\xbf\xc8\x0a\xcc\x62\xec\x4a\x14\x84\x40\x3c\xf5\x5c\x24\xd8\xdf\x77\x3b\x52\x7a\x4a\x5d\x67\xcc\xf0\x8f\x7f\xa0\x35\x6e\x69\x35\x72\x91\xdc\x20\x35\x37\x5f\x30\x34\x23\x55\x87\x75\x5a\xf0\x12\x0b\x27\x29\x1d\x39\x36\x44\xde\x1f\x27\x6a\x6f\x8c\x77\x76\xf8\x0c\x4d\xbc\xe7\xcc\x49\x61\x0e\x28\x50\x17\x78\xe3\xb5\x4e\xfb\x8a\x3a\xdc\x13\x86\xbb\xf0\xee\x95\x59\xeb\x2a\x8f\x2b\x75\xf7\x2a\x46\x3b\xaa\x80\xa6\x90\xf6\x3a\x6c\x70\x67\x9d\x00\x1d\xa0\x47\x85\x4a\xdd\x9f\x15\xa1\x47\xcf\xef\xe5\x42\x00\x94\x36\xa7\xd9\x14\xce\x29\x93\x19\x16\xea\x05\xa3\x38\x6e\x55\x1e\x36\x6c\x33\xf1\x5a\x58\x5f\xf3\xe8\x89\xc2\x9c\x3d\xfb\xb7\x90\x5f\x80\xd1\xdc\x3c\x1a\xe2\x52\x44\xca\x43\xb9\x32\xc8\xb1\xb6\x73\x68\xe9\x90\x8f\x5e\x86\x93\x3c\x87\x28\x79\x47\x7a\x10\x2f\x31\x6e\x01\xe2\xf0\x6b\x00\xe1\xeb\x81\xec\x86\x08\x27\x8f\xcc\x29\x62\xcb\x83\xcd\xba\xea\x9a\xd8\x34\xb2\xc8\xa6\x15\x49\x62\x63\x29\xf0\x5e\x7c\x06\x31\xb6\x0a\xe3\x57\xc0\xd1\x59\x5b\x07\x71\x73\x13\xb8\xd9\x40\xb4\x40\x48\x5d\x5e\x23\x8e\x19\x64\xee\x61\xda\x5e\x98\xbc\xc8\x52\x96\x76\x4f\xb8\x5d\x94\x22\xed\xbf\xa7\x83\x18\xff\xb2\x51\x32\xfb\xc1\x07\xa1\x78\x92\x46\xe1\x83\x53\xad\x9f\x0d\x57\xec\x86\x98\x63\xdf\x86\x40\x1d\x1b\x0e\x0a\xe2\x18\x76\xc1\xf6\xef\x77\x00\x46\xcb\xf0\xbd\xbf\x54\x12\xd7\xb7\xef\x1f\xc0\x3f\x23\x33\x80\x61\x6c\xdf\x7d\x44\x01\xf6\x59\x04\xb8\x90\x74\xb0\xb7\xa1\xe4\x00\xfa\x3a\x45\x3a\xa0\x9b\x64\x93\x45\xeb\xb2\x35\x9f\x35\xa8\x44\x94\x22\x39\xed\xc9\x45\x10\x91\x7f\xd4\x25\x19\x94\xba\xf7\x66\x1d\x04\xa5\x8d\xb2\x7e\xc5\xd4\x06\xad\x19\x4b\x7c\x4d\xea\xc3\x1e\x83\xe3\xca\x37\x49\x6f\xf4\x41\x6f\xd5\x4b\xeb\x57\x87\xbd\x2a\xf7\x0e\xd2\x3e\x07\xec\xce\x8a\x5d\x0d\x21\x0f\x63\x9c\x0a\x3f\x97\x02\x2a\x12\xef\x9c\xce\x71\x6c\x9a\xf8\x15\x0e\x73\xc6\xaf\xd7\x9c\xdd\x24\xe1\xed\x50\xc6\x15\xbc\xda\x3e\xab\x2e\x90\x1b\xe1\xdb\x52\x7b\xa5\x23\x85\x2f\xb7\x78\x61\xec\x9d\xcf\xc6\xb9\x08\xa9\x60\x2b\x1a\x55\x57\x10\xfe\x19\x39\x07\x03\x22\xad\x4b\x9c\x78\xe1\x6a\xca\x49\x25\x5d\x60\xf5\x6d\x86\xcc\xdb\x61\x21\x3f\xe4\x0b\x77\x37\x6d\x8a\x59\x96\xe9\xa9\xe0\x9f\x91\xd2\xcf\xda\xb7\x73\xc6\x57\xee\x15\x36\xbb\x4a\x76\x59\xf4\x2a\xb9\xfe\xf0\x92\xa7\x29\x09\x73\xcc\x39\xde\xec\x54\x84\x2e\x1f\xde\xbd\xa8\xcf\xe6\xda\x47\x1a\x3f\xb6\xaf\x15\xdb\xd7\x27\xd1\xb8\xae\x49\x36\xf1\x3d\x46\x89\x1f\x94\x57\xa3\x84\x29\x65\x7a\x18\xd3\x66\x87\x61\x9e\x11\x89\xec\x5c\x01\x98\x25\x5f\x4c\x35\xd3\xd2\xfe\xe8\xe7\x0a\xc9\x15\x31\x4e\x61\x27\xc9\x82\xb4\xdf\xbe\x34\x38\x35\x2c\x85\x8c\xcc\x34\x36\xf4\x3e\xb3\x50\xec\xd2\x95\x15\xca\xac\xd6\x0f\xad\x13\x43\x39\x5a\x7a\x5b\x21\xd0\x7e\x39\xce\x92\x20\xed\x2f\x53\xce\x1a\xf0\x95\xab\x11\xde\xb0\x86\x4c\x5d\xf5\xd9\x29\xc7\xb7\x3f\x40\x31\xd5\x42\x5a\x47\xb2\xe0\xe9\x80\x53\x5a\x6f\xab\xfe\x33\x84\x81\x21\xfb\x30\x06\x31\x2f\xec\x80\x41\x01\x97\x07\x0f\xd0\x2b\xbe\xc0\xad\x5d\xc4\x94\xd7\x69\x2b\x99\x7b\x4e\x37\xf6\x51\x16\x1e\xea\xd4\x67\x23\x64\x1a\x16\x6a\xf8\x5a\x9e\x4d\x69\x17\xfb\x75\xf5\xe1\xfb\xfa\x04\x69\x3d\xcd\x27\x1f\x82\x31\x4e\x49\x9d\xa3\x33\xac\xf1\xa9\xc3\x56\xab\x7c\x55\x7f\x06\x5c\x09\x07\xa5\x98\x86\x8f\xd6\x15\xb7\x42\x59\x1d\x84\x51\x95\x42\x18\x4c\x3a\x5e\xae\x44\x45\xea\x89\xdd\xdf\x5d\x9b\x81\xfa\x19\xd1\xfe\xdc\x25\xe1\xf3\xc1\x83\x50\x2b\x8f\xaf\xbc\xcd\x08\x9a\x53\x38\x30\x68\x8b\x1a\x1c\xe6\xae\x85\x1e\x86\xe1\x2c\xd0\x6a\x07\xf5\xb6\x9c\x61\x38\xf4\xd9\x35\x21\x74\x10\x86\x4f\x16\x1d\x4c\x65\xf8\xd2\x64\xf0\x8f\x1e\xdd\x01\x51\x97\x67\xba\x65\x08\xbd\xc2\x3b\x94\xac\xbf\xd3\x3c\xa3\x24\xd6\x8f\x80\xc9\x2e\xc5\xfa\x87\x3e\x3b\x5c\xe7\xdb\xf6\xb9\x7b\x96\xeb\x20\xd4\x2d\xb7\x03\xb7\x7d\x5c\x56\xec\x8f\x3f\x25\xc1\x2b\xfb\x46\xea\x32\x7b\x75\x77\x68\x7b\xaa\x7d\x26\xc3\x67\x6b\x13\x09\x11\x95\xf8\x1f\x17\xb7\xe7\x55\x74\x99\x0b\x1d\x45\xf0\xa6\xd9\x0b\xa2\x79\x57\xff\x3c\x6f\xd4\xb3\xf7\x2d\xd6\x3d\xec\xd8\x7e\x57\x5d\x5f\x76\xf0\x2e\xe6\xaf\x4f\x36\x88\x45\x6e\xb1\xe2\x6f\x71\xc0\x69\x58\x3b\x77\xff\x0d\xb1\x63\xa7\x62\xed\xe0\xde\xba\xc1\x9f\x08\xd1\xd1\x57\x08\xfd\x6d\x2f\x74\xc7\xbd\xf8\x3e\xfe\x23\xf0\x7d\xfc\x61\xf8\x06\x46\x3f\x18\x30\x95\xf7\x02\x96\xf0\x1d\x7c\x51\x10\x65\x25\x8a\x9d\x3e\xda\xdf\x21\x70\x14\x6c\x21\xd1\x10\x0c\x67\xf5\x97\x61\x0c\xde\x6a\x40\x1f\x2c\x3e\xf7\x29\x43\x63\x3f\x77\x2d\x7e\x9c\xf6\x0f\x8b\x20\xef\x54\x05\x39\x05\xf0\xb8\x04\x60\xa8\x1c\xb2\xfd\xa4\xd7\x64\xcb\x12\x76\x5b\x7f\x77\x6d\xb6\x28\x65\xfb\xfd\x18\x99\x0f\x00\x0a\xbf\xc4\x76\x18\xb8\x53\xed\xd5\xd3\x3a\x72\xed\x7a\x6f\x41\x90\x27\xa5\xbd\x05\x5e\xe7\xe5\x44\x74\x8d\x14\x3b\x58\xff\x85\x3c\x31\x3a\x47\x9f\x6d\x4b\xe8\xfd\xed\x37\xd4\x93\xcf\x7b\x04\xf9\xbc\xc5\x27\xba\x4b\x66\x0c\xa8\xd0\xde\x0e\x89\xc7\x5d\x10\xe9\x8c\x90\x71\x8f\xbf\xe1\x5d\xc7\x78\xb7\x42\x15\xe1\x92\xce\x69\x05\x29\x33\xf0\xda\x3f\xae\x96\x16\x72\x6c\x8a\xef\x72\xf5\x32\xb7\xca\xa9\x84\x4c\x43\x77\x91\xdf\xd9\xdd\x16\x79\x30\xbb\xf5\x5d\x2d\xb9\x24\x94\x87\x28\x21\xac\x64\x89\x88\xcc\x6b\xd3\x51\xe9\xe4\x0e\x46\x4c\x35\xc0\x36\x00\x72\x64\x1b\xba\xbc\xc7\xd7\x30\xf9\x13\xdf\xa6\x90\x87\x1b\x84\xfa\xa0\xe2\x6f\xcb\xa4\x7b\x76\xb4\x87\x82\x46\x93\xa1\xc2\x0e\x78\x3f\x31\xc3\x3d\x0d\xad\xf1\x1a\xf4\xee\x7b\x3b\xe4\xd2\x2f\x35\x7a\x7d\xe2\xaa\x64\x27\x0f\xe8\x66\x29\x5f\x2e\xa4\xc1\xd6\x6a\x87\x68\x5e\xdc\xc9\x80\xd9\x3f\x4e\xea\x9d\xd4\x3d\x22\xdd\x31\xe4\xeb\x13\x31\x7a\x57\x45\xf7\xab\xc6\xd9\x6c\xd5\x4e\xd6\x5b\x11\x5d\x93\xcd\x9d\x66\x1c\x3a\x65\xcc\x11\xad\x14\x53\xb3\x55\xf2\xfd\x17\xbb\xd9\xbb\xf6\x56\xdf\x08\x8f\xaf\x0d\xc7\xaf\x38\xa8\xc5\xbe\x26\x1b\x85\x9d\x85\x1e\xf3\x61\x04\xc5\x2e\xf8\x35\xd9\x7c\x56\x8a\xc4\xf4\x12\xee\xf4\xf9\xb3\x67\x9c\x75\xeb\xe7\x64\xa3\x3a\x8b\xc3\x18\xee\x1f\xa8\x52\xea\x64\xca\x52\xfc\xc0\x48\xc3\x0f\xb7\x75\xf7\xb9\x81\x67\x3f\xe1\x05\xef\x84\x34\x28\x3e\x4b\xbe\x01\xaf\x05\x14\x0b\xb3\x0f\x72\x99\x10\x77\xee\x80\x33\xcf\x72\xda\x7b\x5d\xe1\x91\xe0\x9f\x22\x86\xab\x00\xea\x60\x28\xf9\xb8\x0f\xd1\xe7\x05\xbf\x5e\xfa\xda\xa7\x7b\x69\xf5\x04\xaf\xf1\x8c\x36\x54\xf6\x3e\x61\x5d\xb1\xf5\xe6\x89\x6f\x56\x7c\x9d\x27\x44\x01\x08\xff\x6a\x4d\xf4\xb9\x9c\x84\x8b\xcb\xe2\x4d\xa2\xca\xa3\xa1\x5f\xf4\x8f\x9f\x41\xbf\x1f\xef\xd6\x59\x2f\x45\x5d\xd4\x14\xe6\xcb\x66\xff\x22\x95\xcc\x27\xad\x9f\x8a\x4f\xe6\xef\x9e\xa7\xef\x23\xdf\xd7\xa3\xed\x73\x31\x98\x45\x78\x45\x38\xdd\xcf\x5f\x06\xb6\x28\xed\xce\x37\x5e\xaa\xed\xc4\x2f\x9e\x55\x52\xb7\x9d\x61\x16\x7f\xa6\x7e\x62\x3e\x31\x03\xff\xa9\x2c\xa2\xf4\xb6\x0f\xe4\x8e\x84\x5e\x77\x65\x0c\x8b\xc9\x47\xe1\x09\x75\x7a\xed\xc7\x0c\xde\x8f\x6a\xd8\x40\x9d\x4f\x9f\x98\x01\xec\x98\x7f\x2a\x07\xd4\xd7\x1f\x2e\x20\x1c\xad\xee\xba\xf8\x0e\x89\x3d\x56\xff\x05\xbe\x26\x02\xb9\xf7\x50\x04\x81\xd4\x48\x6d\x97\xe8\x27\xcd\x05\x1a\xd1\x56\x3f\x8b\x39\x06\xb3\x04\xca\x5b\x4c\x7d\x74\xb3\x9b\x1d\x40\x7b\x81\x2a\x9d\x4a\x56\x7a\x77\x73\xde\x35\x8d\x51\x77\x34\xd8\x69\x64\x9b\xc0\xcb\xe0\xf6\x0c\xea\xaf\xea\xf1\xb3\xcd\x5d\xf9\x8e\xf8\xe2\x85\xe8\x67\x67\xfc\x25\x5f\xc3\x78\xc1\x77\x63\xfd\x80\x5c\x1e\xde\x1d\x79\xb0\xe0\x99\xf8\x5b\x00\x70\x3c\x46\x4f\x1c\xa4\x94\x7c\xfa\xde\x11\x94\xcf\x51\xb3\x84\x67\x27\xd8\x3c\x89\xc5\xa0\xf3\x53\xd0\xe7\x3a\x01\xd9\xfc\x9c\x75\x6d\x8d\x38\x9b\xd1\x16\xe1\x66\xc1\x38\x95\xcb\x95\x83\x28\x19\xc2\x50\x1c\x0a\x0c\x8c\x34\xa8\x23\x19\x22\xef\x3a\xdc\x20\x41\x7f\x4d\xe3\x29\xd9\xd5\x88\x6d\xd1\x1c\x57\x44\xa6\xb7\x66\x4d\x40\xa9\xfc\x16\x8b\x7e\xc5\xd2\x82\x33\x0f\xe0\x8f\xd1\xd7\x47\xc3\x4e\x9d\x0c\xa1\x43\x57\x4d\x06\x6e\x7a\x37\x44\x88\x7c\xde\x8a\x8f\xec\x6c\xef\x17\xb4\x4e\x65\x2a\x89\x65\x37\x9f\x37\xa4\xd6\x37\xd8\x74\xc9\x47\xbb\x3e\xa3\xb6\x14\xb1\xd2\x56\xa4\xb5\x49\xb0\x2f\xca\xa5\x0d\xb4\x18\x89\xa2\xc9\xda\x4f\xba\x48\xc5\x0e\xec\xce\xf3\xb6\x26\xbf\xd8\x37\x40\xd1\x51\xf0\xe0\x8a\x8d\xa5\xea\xd7\x4f\xc4\xa9\x7b\xef\xfd\x10\xfd\xf8\x5e\xaf\x95\xe5\xe4\xdf\x13\xf8\xb7\x4b\xda\x90\x68\x04\xf4\x64\xcf\x65\x48\x56\xb7\x88\x88\xd5\xfd\xdf\xff\x3e\x2e\x99\x83\x7a\xe0\xa3\xf8\xcf\x2f\x03\x9f\x9d\x5f\xaf\xa4\xc7\xc3\x7b\x91\x35\xa2\x23\xcf\xe1\x7a\xbe\x2f\x54\xe9\xff\x08\x61\xe7\x6c\x86\x3f\x86\x88\xfd\xf4\x23\xad\x15\xa1\x7d\x60\x36\x7c\x9e\x26\x4b\x25\x3e\xb6\x25\x0f\x98\x8f\x02\x18\x70\x13\xc4\x38\x82\xca\xb0\xe6\x47\x5d\x59\x8b\xce\xd1\x2d\xd1\x6c\xbf\x60\x50\x58\xc4\xfc\xdc\x60\x25\x48\x5a\x72\x27\x2a\x23\x73\xd7\x37\x6a\xbe\xef\xae\x2c\xc5\xad\xd3\x35\x0b\x7f\xec\x8b\x51\x9f\x38\x8f\x88\xf7\x72\x80\x63\xd5\x5d\xef\x11\x50\x58\xd8\x69\x52\x56\xaf\x48\xad\xe1\x52\x65\xdf\xcb\x24\x53\x66\x10\xcb\x8f\xbf\x47\xec\x84\xc2\x57\x0d\x33\x49\x30\xa2\x7a\xc3\x87\x03\x4f\x42\xe6\x3b\xdc\x85\x13\x3f\x1b\xdf\x75\xc7\xa5\x67\x5d\x74\x66\x04\x47\xd9\xb1\xaf\x52\x07\x57\x11\x8c\x83\x08\xdb\xbb\xbd\x6b\xc2\x57\x9d\xf4\x29\x3d\x9c\x1b\xf9\xa3\x3a\x77\xc2\x5e\x3d\x9e\x53\xb1\x24\x1c\x6d\xc0\x0f\xa7\x77\x30\x58\x2a\xd1\x41\x97\x15\x82\x73\x62\xfa\x67\xed\x29\x8b\x0f\x27\x9f\x96\x15\x09\x54\xaa\x14\x2a\xc8\x19\xd1\x67\x4f\xfc\xd0\xa1\x4b\x06\x70\xd7\x2d\x60\x53\x91\x46\x57\xb2\x06\x07\xcb\x2d\x5e\x43\xc5\xc0\xd9\x46\xfd\x03\x25\xab\x6a\xd6\x7e\x11\xf1\x9e\x2d\x5f\xc5\xbb\xd6\x05\xf8\x4c\x5d\xbc\xc6\x16\xc5\xc6\xf2\x0b\x81\x6e\x97\x1b\x44\xa3\x17\xb4\x34\xc7\xc5\xdf\x65\xb7\x9e\x2e\x68\x75\xed\xa9\x0c\xcc\xa2\x51\x7e\x08\x99\x3a\x99\x43\x50\x37\x7c\xd9\xad\xd0\x11\xe2\xe4\x86\x70\x49\x67\x8d\xb9\x00\xfd\x44\x9f\x0e\xa9\x02\xe9\xbb\x59\x7e\xf1\x40\xfe\x97\x0d\x8a\x53\xc5\x37\x85\x2b\x2c\x8a\x46\x6a\xb1\xe9\x4f\xde\xbd\xec\x88\x28\x23\xbc\xb3\x41\x25\x59\xad\xed\x22\xfd\x48\xe3\x77\x43\xed\x97\xee\xf7\x00\xc3\x52\xcb\xf0\x67\x74\x04\xa0\x93\xc4\x1c\x74\x84\x68\x14\x22\xca\x99\x1f\x40\xa5\x9c\x7f\x92\x28\x1b\x95\x76\xed\x86\x75\x1b\xfd\xe5\x1c\xca\x4d\x86\x8b\x2e\x13\xe9\xcd\x22\x05\x49\xe9\xff\xbc\x56\x7a\x2f\x43\x6b\xcc\x25\xad\xe8\xda\xdd\x67\xd3\xe2\xcd\x6c\x2c\x05\xd4\x70\x13\xe5\x91\x9b\x3a\xdd\x1b\x8b\xc0\xe5\x08\xc3\xc2\x89\x06\x59\x9d\xbc\xec\x99\x79\xe9\x7e\x1f\x1f\xa2\xff\x1b\x0b\x25\x8d\xf8\xfb\x4c\xe7\xd8\xe3\x20\xf5\xc3\x4f\xa3\x33\x55\xbf\x01\x97\x24\xdf\xee\x93\xac\x15\x7b\xc7\xfc\x13\x6f\xaa\x0b\x62\x60\xd9\x31\x1e\x14\x17\x48\xb4\x6c\xb3\x46\xd8\xaf\x8f\xb6\xc5\xbc\xba\x98\x66\xee\x44\xae\x8b\xf8\xfa\x6a\xea\xd6\x48\x19\xe9\xc9\x41\xdc\xdb\xe4\x4e\xf9\x05\xca\x28\xe5\xca\x00\x3e\x27\x1b\x1f\x63\x9c\xfa\x2f\x33\x2f\xdf\x49\x92\x57\xb8\x8d\x2f\x95\xbd\x7e\x61\xb9\xae\x95\xbb\xb3\xa7\x39\x52\x55\xff\x2d\x77\x84\x03\xa6\x3c\x7d\xfe\x2c\x18\xec\x0e\x4c\xa9\xec\xdd\x10\xdd\x7f\x0f\xa6\x4c\xf3\xf7\xf6\x67\xca\x70\xd1\x3c\x53\xa6\x8b\xb3\x85\x37\xeb\xeb\xd2\xa5\x6a\xef\x5f\xc9\xf9\xd1\xf6\x30\x9c\x98\xae\x4d\x81\x48\x28\xad\x47\xa6\x20\x89\x38\xe3\xcc\xdf\xc1\x6e\x88\xcd\x3d\x36\xda\x92\x2f\x53\x06\xce\x85\x7e\x7b\x5e\x49\x30\xe8\xe3\x3c\xf9\xe3\x43\x64\xd2\x60\xca\x99\xd6\x25\x85\x6c\x08\x5d\xdd\x5e\x87\xfd\xf4\xd5\x71\x48\x70\xb1\xd5\xdc\x2a\xdc\x0e\x20\x3e\x0d\x37\x5c\x45\xd6\xba\x86\x95\x29\x90\x6b\x5e\xc9\x9c\x11\xd8\x30\x4a\xf1\x79\xab\x31\x7f\x3b\x41\x4b\x76\xab\xce\x5f\xa8\x12\x8e\x05\xc2\x75\x4d\x6a\x9d\x5e\xa7\x76\x14\x6e\xbd\x76\xb4\x5e\x70\x5c\x13\x83\x8d\xa9\x71\x26\xe0\x66\x8e\x79\x0c\x6a\x46\x90\x58\x93\x8a\xce\x29\xa9\x91\x20\x6b\xcc\x75\xc1\x2c\x50\x04\xc8\x2f\x54\x40\x42\xa5\x7e\xe1\x5b\xe4\xae\x13\x43\xe5\x42\x26\xd1\x21\xca\xbe\xec\xa1\x79\xd1\xf7\x96\x75\x2e\xba\xe0\xb2\x56\x26\x0a\x15\xac\xd6\x55\x18\xf6\x3a\x0b\x2f\xac\x00\x77\x35\xb7\x78\x23\x8a\xa5\x61\xd7\x4d\x27\xcc\x91\x5e\x64\xae\x72\x70\xc6\xda\xc9\x7d\xfc\x55\xae\x59\x89\xb0\x30\xfd\x42\xf4\xb3\x4a\x73\x7d\x37\xda\xfb\xbc\x4b\xfd\xe4\x55\xed\x8b\x14\x3d\x2e\x8f\x31\x46\xff\xf8\x07\x9a\xe3\xc6\x54\x31\x09\xe8\xfb\x8c\x24\xa5\x0a\x7b\xee\x39\x37\x64\x2e\xcd\x3e\xae\x89\x90\x9c\x6d\x82\xf4\x82\x6f\xc2\x96\x98\xc7\x37\xe4\x6f\x09\x27\x08\x37\x0d\xab\xb0\xd4\x45\xf0\x31\xaa\x49\x45\x94\xb5\xd6\xd0\x5f\xdd\xfd\x7a\xd2\x4a\x7a\xe3\xcf\x1c\xe8\x0b\xd9\x0c\xae\x82\xb7\x8f\x82\x2a\xc2\x02\x8a\x04\x1e\x82\xb1\x08\x4d\x0d\xbb\x10\x01\xae\x4d\x3b\x87\xc0\x47\x66\xd0\xe2\xec\x56\xf5\xd7\x37\x38\xdd\x93\x3b\xe1\x85\x7f\x7b\x9e\x41\xf5\x00\xda\xce\xcd\xd7\x6a\x7b\x39\x70\x82\xf9\x2b\x6c\xe6\xb9\x9b\xa6\xab\x83\x4a\xd6\x01\x40\xd7\x09\xaa\xe6\x1b\x49\x61\x53\x01\x22\x4a\xdb\xcc\x5b\x37\x2b\x65\x72\x04\x64\xb1\x95\xf3\x8c\xc7\x54\x97\x63\x44\xb8\xdd\xac\x18\x27\x7d\x3b\x3c\xba\x6e\x6e\x4b\x88\xee\xc3\x71\xba\x47\xc6\x73\xea\x88\xf5\xb0\x4b\x57\xea\x91\x76\x44\xdb\x72\x02\x86\xf5\x68\x4b\xa5\xbb\x95\x1f\xdf\x82\xcb\xab\x65\x27\x09\xb0\xc3\x4d\xd2\x82\xfe\x43\x6d\x7d\xe1\xfe\x62\xab\x82\xc7\x51\x7b\xdf\xc2\x76\x43\x97\xc6\x2d\xa1\xc3\xf6\xdb\x4a\x8f\xdf\xad\x30\xf8\xde\x65\xc1\x8b\x45\xc1\x07\xdd\xb6\xbb\x54\xcf\xee\x4d\x10\x2e\xbd\x8c\x90\xae\x6b\xa1\x30\x76\x5e\x14\x7b\x97\x1a\xd8\xe9\x45\xcc\x92\x56\x80\x8e\x8c\x26\x31\xca\xb8\xeb\x43\xf2\xad\x3f\xc6\xc3\x12\x3b\x81\xdf\xef\xcd\x89\x61\x90\x05\x3e\x2f\x7d\xbb\x17\xd8\xe1\x6d\x31\xf4\x6b\x9e\x0d\x83\x91\x6a\xc2\xe0\x28\xb3\x75\x00\x9d\x80\x0e\xf5\x36\xab\xcf\xe9\x3c\x3b\xf5\xc5\x23\x53\x58\x76\x0d\xcf\x78\x55\x2c\x28\x04\x04\xda\xb2\x06\x96\xab\x3a\x47\xb9\xfa\x13\x9b\x02\xb5\x4b\x02\x1c\x64\x17\x4e\xe6\x27\x03\x05\xaf\xb3\xc6\x57\x74\x45\x84\xc4\xab\xb5\x15\x49\xa3\xac\x18\xe4\x54\xda\x36\xe3\x2f\xd3\x1d\xe4\xc0\x05\x75\x74\x12\x69\x2e\xf0\x0d\x19\xf5\xcd\x7b\x82\x24\xdb\xaa\xa3\x0d\x24\xce\x9c\x0c\x3d\x72\xd1\xdf\x6d\xfb\x0d\xe6\xa8\x2b\x68\xdf\x97\x1a\xc7\x0b\x2c\x97\xe8\xa8\x80\xf2\xb1\xb3\x2d\x5c\xbf\xa5\xad\x4c\xbc\xad\xaf\x2b\x61\x1c\xf7\xb7\xc6\xcd\xb6\xee\xce\xf2\x88\x78\x2d\x79\xeb\xe9\xbd\x5e\xdf\xc3\xf8\xb6\xcc\xef\xe8\x08\xbd\x4f\xe5\x57\x71\x09\x23\x70\x7a\xdd\xfa\x90\x4c\x57\xac\x08\xef\xc9\x81\xc9\x41\x34\x86\x62\x00\x32\xa5\xf7\x78\x1f\x70\x8e\x96\x11\xc8\xd2\x52\x8c\x4b\xfe\x7f\x8c\xd6\x9c\xde\xa8\xff\x05\x21\xf7\x62\x86\x8d\xab\x05\xa7\x5f\x1f\x57\x5a\x26\x3c\x5e\x08\xc5\xad\xb1\x8c\x6e\x3c\xbd\x6a\xd1\x0b\x4c\xdb\x96\x68\x7f\xee\x15\x11\xb2\x25\xf0\xb6\x09\x49\x32\x17\x84\x29\x50\x10\xbd\x33\x61\xde\x03\x34\x13\x9f\x28\xad\x70\x69\x83\xd6\x4b\xc2\x49\xf8\x92\x0b\x3a\xd6\x0a\x2f\x6c\x38\x78\x19\x41\x23\x39\x63\xc6\x27\x8a\xe3\xf1\xfc\x83\x2d\x6e\xc2\x94\x08\xd4\xd0\xd6\x14\x71\x40\x72\xc9\x04\x09\x3b\x58\xb4\xf0\xca\xe1\x14\x61\xa0\x9f\x34\x6b\x45\xa7\xeb\xe4\x61\x69\x52\x34\x59\xab\x0d\x43\xc6\x95\x4e\x5d\x77\x30\x5b\xf3\xde\x8b\x29\x67\x2e\x20\x99\x18\x83\xab\x38\xb8\x97\xb7\x11\x92\xac\x50\xb5\xec\xda\xeb\x70\x20\x50\x88\x31\x5c\xd2\x6f\x36\x26\x8e\x5c\xdb\xf7\x0e\x35\x25\xad\x07\x0a\x37\x00\x8e\x75\x52\xd9\xbf\xd4\x7c\xe5\x8a\x88\xaf\x70\x4b\xd7\x46\x75\x9e\x46\xdb\x28\x2c\xaa\xd6\x9f\x08\x12\xd2\xce\x31\x26\x15\xa2\x23\x43\x49\x55\x85\x5f\xc2\x74\xb2\xfd\xb6\x40\x90\x7f\x32\x30\xe6\xd7\xa3\xf2\x84\x0a\x92\x78\x30\xb3\x6d\xcf\xad\xf3\xae\x0a\x9c\x2f\x28\x4a\x1d\xdd\xbe\x81\xd4\x32\xbc\xab\x3e\x70\x05\xb2\xc4\xa5\xc2\x97\x1f\x48\xf0\x74\x88\xaf\x47\x19\xd6\x05\x32\xf7\x25\x86\xed\x49\x61\x97\x54\x73\x67\x12\x5b\xc7\xdc\xdd\x69\x1c\x64\x06\x45\x7f\x7e\x20\x5d\x3d\xd8\xaf\x47\x39\x92\x05\x92\xf6\xa6\x5a\xc5\x83\x97\x4b\x5f\x29\xcd\xbf\xbf\x90\xf0\x4e\xe5\xb3\xa3\xd6\x10\x83\xdb\xe7\xca\xea\x4e\x2f\xd9\xa1\xbb\x3d\x52\x92\xd5\xd5\xde\xf2\x58\x49\x5e\x87\x7b\x8f\x9b\xa3\xe8\xa0\xf7\x79\x95\xf2\x0d\xd1\xbd\x87\x49\x2e\x6b\xf5\x8e\xf7\xa1\xc5\x3e\xc2\xcf\xbf\xc3\x6b\x27\x3d\x89\xe7\x39\xab\x59\xe7\xf9\xef\xf7\xfe\x7f\x00\x00\x00\xff\xff\x89\xf2\xf0\x46\x6a\xe9\x00\x00" func epochsFlowepochCdcBytes() ([]byte, error) { return bindataRead( @@ -338,7 +338,7 @@ func epochsFlowepochCdc() (*asset, error) { } info := bindataFileInfo{name: "epochs/FlowEpoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x92, 0x79, 0x6c, 0x43, 0x9a, 0x51, 0x86, 0x54, 0x7e, 0xf8, 0xc1, 0x9a, 0x46, 0x79, 0xb, 0x44, 0x31, 0xf1, 0xca, 0x7f, 0x80, 0x5b, 0xc9, 0x7c, 0x6e, 0x8f, 0xae, 0x86, 0x74, 0x5b, 0x86, 0xc1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf0, 0x8f, 0xa6, 0x50, 0xb5, 0xec, 0x1, 0xf8, 0x72, 0xb0, 0x2a, 0xaf, 0xe, 0x17, 0x15, 0x54, 0x66, 0x56, 0x6f, 0xea, 0xe8, 0xed, 0x56, 0xd4, 0x99, 0x5c, 0x66, 0xae, 0x7, 0xef, 0x9a, 0xf}} return a, nil } diff --git a/lib/go/test/epoch_test_helpers.go b/lib/go/test/epoch_test_helpers.go index e10146a64..bdd9f755f 100644 --- a/lib/go/test/epoch_test_helpers.go +++ b/lib/go/test/epoch_test_helpers.go @@ -152,58 +152,59 @@ type EpochRecoverEvent flow.Event // Counter returns counter field in EpochRecover event. func (evt EpochRecoverEvent) Counter() cadence.UInt64 { - return evt.Value.Fields[0].(cadence.UInt64) + return cadence.SearchFieldByName(evt.Value, "counter").(cadence.UInt64) } // NodeInfo returns nodeInfo field in EpochRecover event. func (evt EpochRecoverEvent) NodeInfo() cadence.Array { - return evt.Value.Fields[1].(cadence.Array) + return cadence.SearchFieldByName(evt.Value, "nodeInfo").(cadence.Array) } // FirstView returns firstView field in EpochRecover event. func (evt EpochRecoverEvent) FirstView() cadence.UInt64 { - return evt.Value.Fields[2].(cadence.UInt64) + return cadence.SearchFieldByName(evt.Value, "firstView").(cadence.UInt64) } // FinalView returns finalView field in EpochRecover event. func (evt EpochRecoverEvent) FinalView() cadence.UInt64 { - return evt.Value.Fields[3].(cadence.UInt64) + return cadence.SearchFieldByName(evt.Value, "finalView").(cadence.UInt64) } -// CollectorClusters returns collectorClusters field in EpochRecover event. +// CollectorClusters returns clusterAssignments field in EpochRecover event. func (evt EpochRecoverEvent) CollectorClusters() cadence.Array { - return evt.Value.Fields[4].(cadence.Array) + return cadence.SearchFieldByName(evt.Value, "clusterAssignments").(cadence.Array) } // RandomSource returns randomSource field in EpochRecover event. func (evt EpochRecoverEvent) RandomSource() cadence.String { - return evt.Value.Fields[5].(cadence.String) + return cadence.SearchFieldByName(evt.Value, "randomSource").(cadence.String) } // DKGFinalViews returns dkgFinalViews field in EpochRecover event. func (evt EpochRecoverEvent) DKGFinalViews() (cadence.UInt64, cadence.UInt64, cadence.UInt64) { - fields := evt.Value.Fields - return fields[6].(cadence.UInt64), fields[7].(cadence.UInt64), fields[8].(cadence.UInt64) + return cadence.SearchFieldByName(evt.Value, "DKGPhase1FinalView").(cadence.UInt64), + cadence.SearchFieldByName(evt.Value, "DKGPhase2FinalView").(cadence.UInt64), + cadence.SearchFieldByName(evt.Value, "DKGPhase3FinalView").(cadence.UInt64) } // TargetDuration returns targetDuration field in EpochRecover event. func (evt EpochRecoverEvent) TargetDuration() cadence.UInt64 { - return evt.Value.Fields[9].(cadence.UInt64) + return cadence.SearchFieldByName(evt.Value, "targetDuration").(cadence.UInt64) } // TargetEndTime returns targetEndTime field in EpochRecover event. func (evt EpochRecoverEvent) TargetEndTime() cadence.UInt64 { - return evt.Value.Fields[10].(cadence.UInt64) + return cadence.SearchFieldByName(evt.Value, "targetEndTime").(cadence.UInt64) } // ClusterQCVoteData returns clusterQCVoteData field in EpochRecover event. func (evt EpochRecoverEvent) ClusterQCVoteData() cadence.Array { - return evt.Value.Fields[11].(cadence.Array) + return cadence.SearchFieldByName(evt.Value, "clusterQCVoteData").(cadence.Array) } // DKGPubKeys returns dkgPubKeys field in EpochRecover event. func (evt EpochRecoverEvent) DKGPubKeys() cadence.Array { - return evt.Value.Fields[12].(cadence.Array) + return cadence.SearchFieldByName(evt.Value, "dkgPubKeys").(cadence.Array) } // Go event definitions for the epoch events @@ -673,15 +674,6 @@ func verifyConfigMetadata( assertEqual(t, cadence.NewUInt8(expectedMetadata.currentEpochPhase), result) } -func getEpochMetadata( - t *testing.T, - b emulator.Emulator, - env templates.Environment, - counter cadence.Value) []cadence.Value { - result := executeScriptAndCheck(t, b, templates.GenerateGetEpochMetadataScript(env), [][]byte{jsoncdc.MustEncode(counter)}) - return result.(cadence.Struct).Fields -} - // Verifies that the epoch start event values are equal to the provided expected values func verifyEpochStart( t *testing.T, @@ -798,6 +790,26 @@ func verifyEpochCommit( } +// verifyCollectorClusters verifies both collector clusters are equal. +func verifyCollectorClusters(t *testing.T, expected, got []cadence.Value) { + for i, cluster := range got { + for j, node := range cluster.(cadence.Array).Values { + assertEqual(t, expected[i].(cadence.Array).Values[j], node) + } + } +} + +// expectedTargetEndTime returns the expected `targetEndTime` for the given target epoch, +// as a second-precision Unix time. +func expectedTargetEndTime(timingConfig cadence.Value, targetEpoch uint64) uint64 { + fields := cadence.FieldsMappedByName(timingConfig.(cadence.Struct)) + duration := uint64(fields["duration"].(cadence.UInt64)) + refCounter := uint64(fields["refCounter"].(cadence.UInt64)) + refTimestamp := uint64(fields["refTimestamp"].(cadence.UInt64)) + + return refTimestamp + duration*(targetEpoch-refCounter) +} + // verifyEpochRecover verifies that the EpochRecover event values are equal to the provided expected values func verifyEpochRecover( t *testing.T, @@ -840,22 +852,7 @@ func verifyEpochRecover( assertEqual(t, len(expectedRecover.dkgPubKeys), len(emittedEvent.DKGPubKeys().Values)) } -// verifyCollectorClusters verifies both collector clusters are equal. -func verifyCollectorClusters(t *testing.T, expected, got []cadence.Value) { - for i, cluster := range got { - for j, node := range cluster.(cadence.Array).Values { - assertEqual(t, expected[i].(cadence.Array).Values[j], node) - } - } -} - -// expectedTargetEndTime returns the expected `targetEndTime` for the given target epoch, -// as a second-precision Unix time. -func expectedTargetEndTime(timingConfig cadence.Value, targetEpoch uint64) uint64 { - fields := cadence.FieldsMappedByName(timingConfig.(cadence.Struct)) - duration := uint64(fields["duration"].(cadence.UInt64)) - refCounter := uint64(fields["refCounter"].(cadence.UInt64)) - refTimestamp := uint64(fields["refTimestamp"].(cadence.UInt64)) - - return refTimestamp + duration*(targetEpoch-refCounter) +func getEpochMetadata(t *testing.T, b emulator.Emulator, env templates.Environment, counter cadence.Value) map[string]cadence.Value { + result := executeScriptAndCheck(t, b, templates.GenerateGetEpochMetadataScript(env), [][]byte{jsoncdc.MustEncode(counter)}) + return cadence.FieldsMappedByName(result.(cadence.Struct)) } diff --git a/lib/go/test/flow_epoch_test.go b/lib/go/test/flow_epoch_test.go index ccc6e126f..12ad1459f 100644 --- a/lib/go/test/flow_epoch_test.go +++ b/lib/go/test/flow_epoch_test.go @@ -1646,7 +1646,7 @@ func TestEpochRecover(t *testing.T) { // seed is not manually set when recovering the epoch, it is randomly generated metadataFields := getEpochMetadata(t, b, env, cadence.NewUInt64(startEpochCounter+1)) - seed := strings.ReplaceAll(metadataFields[1].String(), `"`, "") + seed := strings.ReplaceAll(metadataFields["seed"].String(), `"`, "") expectedMetadata := EpochMetadata{ counter: startEpochCounter + 1, seed: seed, From 88f0a28668d7d26ca513594bb0c5316d406cdac8 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Fri, 21 Jun 2024 20:24:20 -0400 Subject: [PATCH 143/160] reference event from parent scope --- contracts/epochs/FlowEpoch.cdc | 2 +- lib/go/contracts/internal/assets/assets.go | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 81f9ab3e1..5dde23cd2 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -525,7 +525,7 @@ access(all) contract FlowEpoch { let dkgPhase3FinalView = startView + numViewsInStakingAuction + (3 * numViewsInDKGPhase) - 1 /// emit EpochRecover event - emit EpochRecover( + emit FlowEpoch.EpochRecover( counter: epochCounter, nodeInfo: nodes, firstView: startView, diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 2b2dec8ac..552e0a0ce 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -12,7 +12,7 @@ // StakingProxy.cdc (5.71kB) // epochs/FlowClusterQC.cdc (18.958kB) // epochs/FlowDKG.cdc (18.691kB) -// epochs/FlowEpoch.cdc (59.754kB) +// epochs/FlowEpoch.cdc (59.764kB) // testContracts/TestFlowIDTableStaking.cdc (9.241kB) package assets @@ -322,7 +322,7 @@ func epochsFlowdkgCdc() (*asset, error) { return a, nil } -var _epochsFlowepochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x7b\x73\x1b\x37\xf2\xe0\xff\xfe\x14\x88\xab\x2e\x21\x37\x14\x6d\xc7\x57\xbf\xda\xd2\x59\xd9\x53\x24\xd9\x51\x39\xb6\x65\x4b\xc9\x5e\x55\x2a\x15\x83\x33\x20\x89\xd5\x70\x40\x03\x18\x29\x8c\x93\xef\x7e\x85\xc6\xfb\x31\x43\x52\xb6\x93\xcd\xd6\xf2\x1f\x5b\x24\xd0\x68\x34\x1a\x8d\x7e\xa1\x41\x57\x6b\xc6\x25\x7a\xda\xb5\x0b\x3a\x6b\xc8\x15\xbb\x26\x2d\x9a\x73\xb6\x42\xf7\xa3\xef\xee\xdf\xb3\x2d\x1b\x76\x1b\xb5\xb2\x7f\x47\x2d\xce\x4f\xaf\xf0\xac\x21\x97\x12\x5f\xd3\x76\x11\x34\x8d\x7f\x88\xfa\x9c\x34\x9d\x90\x84\xbf\x3e\x09\x9a\xbb\xef\xa2\x96\xa7\xcf\x9f\x05\x6d\x4e\x9f\x3f\x8b\x7e\x7d\x4a\x88\x08\x7e\x56\x7f\xde\xbf\x77\xef\xc1\x03\x74\xb5\x24\x48\xb2\xf5\x41\x43\x6e\x48\x83\xc4\x0a\x73\x89\x2a\xd6\x4a\x8e\x2b\x89\x56\xb8\xc5\x0b\x85\xab\x5c\x12\xd4\xd0\x39\xa9\x36\x55\x43\x10\x9b\x23\xb2\x66\xd5\x52\x4c\xd1\x79\x0b\xe0\x27\x0a\x94\xfe\x0e\x61\x4e\xa0\xbd\x58\xe1\xa6\x21\x42\xa2\xae\xa5\x52\xf5\x91\x74\x45\xd0\xed\x92\x98\xdf\x69\x4d\x5a\x49\xe5\x06\x49\x35\x79\x34\x82\x3e\x44\xb5\x54\xc0\x5a\x22\x6f\x19\xbf\x46\x6c\x4d\x38\x96\x8c\x8b\x31\xa2\x02\x09\x89\x25\xad\xa6\xe8\x95\xfd\x16\xad\xf0\x06\xb1\xb6\xd9\xa0\x86\xe0\x1b\x82\x18\x47\xff\x62\xb4\x85\x01\x0c\x08\x05\x0d\x4b\x8d\x1d\x9a\xb1\xae\xad\x31\xa7\x44\xa4\x40\x66\x04\x91\x7f\x91\x4a\x92\x1a\xd5\x1d\x57\x93\xc6\xad\xe9\x34\x67\x1c\xdd\x60\x4e\x59\x27\x14\xb0\x15\x15\x35\x59\x11\xdc\xb2\x8e\x8b\x09\x9a\x75\x52\x0d\xb7\x41\x9c\xac\x30\x6d\x91\x19\x3d\x99\x5e\xd7\x4a\xda\xc0\x0f\x1a\x26\x69\x6b\x31\xbd\xf7\xe0\x81\x02\x78\xe6\x09\x27\xd6\x0d\x95\x88\xb6\x92\xa1\xc7\x68\xbd\xc4\x82\x88\x43\xd5\xe4\xb7\xa3\x3b\x7f\xa0\x3b\x3a\xbb\x78\x75\xf2\x2d\x7a\x89\xb6\x7f\x7e\x73\x8d\xbf\x7c\x84\xa6\xd3\x29\xf4\x3f\x50\x1f\x64\x59\x17\xfe\xfa\xed\x00\x5d\x12\xd9\xad\x91\xfa\xdf\x09\x5b\xad\xa8\x54\xc4\x3b\xf8\xed\x37\xd7\xeb\x83\x90\x56\x10\x1e\x8d\x11\xba\xbc\x3a\x7e\x7e\xfe\xf2\x19\xba\xf8\xf6\xf8\xf2\x4c\x7d\xf9\x92\xd5\xc4\xf3\x05\x90\x0d\x48\x2c\x19\x12\xdd\x6c\x45\xa5\x62\x13\xc0\x93\x93\x77\x1d\x11\x52\xc0\x0a\x2a\xda\xbf\x3c\xfb\x7f\x57\x66\x01\xf4\x22\x2b\x78\x72\x49\x85\xa6\xf5\x14\x1d\x4b\xbd\x46\x6d\x0d\x1c\xeb\x7e\x99\xc0\xd7\xb0\x50\xe9\x26\xe1\x44\xb0\xe6\x86\x08\xd5\x42\x81\x63\x9d\x14\x12\xb7\xb5\x42\x20\x43\x04\xb7\x35\xaa\x89\x24\x7c\x45\x5b\xdd\x25\x65\x14\x8b\x6a\x4b\x7e\x91\x6e\x57\x4d\x61\x9f\x16\x87\x27\x2b\x2a\x85\xc7\x4e\x2f\x89\x20\xfc\x86\x56\x04\x91\x1b\xd2\xea\xb6\x98\xb6\x6e\xba\x83\x63\xea\x01\x27\xe8\x76\x49\xab\x25\xa2\x2d\x95\x14\x4b\x83\xaa\xe4\xb8\x15\x54\x52\xd6\x2a\x62\x9b\xf9\x6a\xac\xf4\xb8\x17\x40\x45\xb3\x78\x5f\x8d\xd1\xe5\xd9\xd5\xf7\x17\x7e\xe5\xfe\xb9\x24\x6d\x40\x54\x34\x23\x0b\xda\x6a\xd0\x6b\xcc\x25\xad\xe8\x1a\xb7\x52\x20\xb7\x81\x2d\x3a\x7a\x6f\x10\x39\x45\xa7\x7a\x6f\x2a\x20\x0a\xa2\x5f\x1c\x91\xc0\x58\x73\xb2\x56\xbd\xf2\xb9\x81\xd4\xd2\x6d\xbb\x06\xf3\x09\xaa\x58\xd3\x90\x4a\x4d\x0b\x24\x0f\xab\x89\xb0\x9c\x74\xc3\xd4\xdc\x0d\x0c\xca\x51\xa5\x65\xef\x17\x02\x71\xc6\x24\x7a\xd7\x31\xde\xad\x50\x45\xb8\xa4\x73\x5a\x61\x49\x60\x85\x2b\xd6\x0a\xd2\x0a\x2d\x2e\x34\x3c\xde\xe9\x39\xd5\x54\x48\x4e\x67\x9d\xda\x2a\xd7\x64\x83\x16\xa4\x55\x8c\xac\x48\xba\xe6\x4c\xb2\x8a\x35\x68\x74\xfa\xfc\xd9\x18\xd8\x99\x48\xd4\xad\xa1\x1f\xc7\x6d\xcd\x56\x0a\xde\x8c\xe0\x8a\xb5\x53\x4b\x4c\x98\x38\xcc\x15\xa0\xe8\xfd\x50\xb1\xd5\xba\x21\x72\x88\x6d\x1d\xdf\xb8\x35\xd4\x7b\xb8\x97\x77\x00\x94\xa2\xda\x1c\x57\x52\xe8\xed\xa1\x25\xf6\x9a\xb3\x8a\x08\x61\x78\x46\xc1\xdb\xc2\x36\x06\x23\x33\x60\xc4\x34\x8f\xc7\xe8\xe4\xd5\x8b\x17\xe7\x57\x57\x67\xa7\xdb\x18\x67\x12\x8a\x79\x75\x3c\xcc\xbb\xa6\xd9\xd8\x95\xaf\x61\xb0\x6c\xe8\x64\x5f\x1d\xa3\x39\xa6\x4d\xc7\x41\x7c\x90\x56\x12\x1e\x8f\x33\x67\x3c\x9c\x00\xd0\x81\x25\x0c\xa5\x67\x5c\xc3\xfa\xab\x19\x63\xb9\x0b\x4b\xab\x71\x35\x92\x76\xb5\x1c\x41\xbb\x35\xf0\xb6\x22\x6b\xdd\x71\xe2\x36\xa3\x40\x18\x55\x9c\x4a\x5a\xe1\xc6\xe1\xad\x18\xee\x96\x36\x0d\xaa\x70\x27\x34\x8c\x6a\xa9\x0e\x22\xc9\xd0\x12\x37\x72\x7a\xef\x1e\xae\xd4\xfa\x8c\x70\xd3\x8c\x3d\x03\xa8\x73\x5b\xaf\xc3\xfb\x7b\xf7\x94\xe0\x0f\x5b\x91\xb6\x5b\xe9\x55\x82\xd5\x39\x44\xdf\x9f\xb7\xf2\xef\xe8\xfd\x3d\x7b\x4a\x44\x20\x15\xa9\x8c\x98\x3e\xfe\xfe\xe4\xea\xfc\xd5\xcb\xfe\x76\x70\xb6\x80\x5c\xd8\xd2\x46\xb3\x01\x34\xfa\xbd\x07\x41\x75\x12\xbc\x61\xcd\x2e\xe8\xbd\x7c\xf5\xf2\xac\xff\xd7\x13\x2d\x01\x18\x1f\x6a\x62\xf7\x74\x3f\xda\xbf\x90\xaa\x03\x31\xd2\xdb\xe4\x07\xc2\xb5\xa0\x18\x6c\x75\x0c\x5f\x84\x53\x7f\x60\x54\x35\x23\x6c\xa5\xda\xca\xf1\x46\xa5\x02\xb6\xb4\x92\x2b\xb7\x46\x32\xf8\xb5\xf6\x0c\x2c\x1c\x38\xc9\x10\x46\x2d\xb9\x35\xec\x68\x18\xd4\x9e\x58\xb8\xab\xb4\x50\xd2\x9b\x33\x23\x3f\x8c\xa9\x4f\x1c\x40\x66\x74\xcf\x4d\xc7\xe2\x5a\xb1\x0e\xf6\x93\x95\xc0\x55\xc7\xb9\xea\xa5\xc7\x83\x6d\x42\x85\xde\xca\x70\x36\xd9\xfe\xa6\x9f\x5e\xd4\xff\xf9\xdf\x93\x1c\xf2\x9c\x72\x21\xd1\x0d\x25\xb7\x68\x44\x5b\x25\x93\xe9\x0d\x19\x5b\x91\x14\x8d\x33\x75\x9d\xa1\xd3\x0f\x94\xdc\x0e\x00\x6e\xf0\xae\x70\xbf\x10\x29\xa9\xfc\x48\xe6\x87\x63\xfd\xfd\x59\x5b\x7f\xb4\x51\xc3\xd9\xb4\xb8\x19\x82\xcb\x24\x6e\xd0\xd3\xef\x5e\xfd\x13\xd0\x21\x35\x9a\x6d\x10\x6e\x1a\x73\x1c\x69\x3d\xa4\x21\x0b\xad\x43\x15\x97\xc8\x0f\x26\x15\xb0\x4b\x00\x73\x88\xbe\x7f\x4a\x7f\xe9\x19\x4e\x74\xeb\x75\xb3\x51\x98\xab\x91\x60\xf0\x22\xe4\xa8\xeb\xb9\x9a\x72\x6d\x8e\x0a\x4e\x6e\x31\xaf\x8d\x10\x05\xa9\x36\x53\x82\x94\xd6\x0e\xd0\x9a\x93\x1b\xa5\x89\x27\x90\x00\x45\x25\xd2\x2e\x01\x87\x3e\x34\xc1\xda\x51\xa8\xf6\x0f\xc4\x3a\x89\x70\xa2\x06\x0e\x53\xe6\x8d\x86\xe5\xc7\x54\xbf\x8c\x8b\x1b\xb7\xa0\x9d\xa5\x1b\xf7\xb6\xff\xc0\x84\xee\x0e\xac\x51\x59\xcf\xdd\x21\xad\x49\x08\x9c\x41\x7f\x25\x75\x9f\x96\xd7\xad\x2b\xb6\x52\x8c\x1b\xcc\xa5\x6f\x6f\xab\x01\x77\xd8\xda\x09\x48\xf4\xa2\x13\x52\x11\x94\xb5\x04\x2d\x38\xc1\xfa\x58\xc5\x20\x62\x22\x60\x83\x32\x62\xba\xa3\x48\x38\xdf\x65\x9e\xe8\x96\xca\xa5\xdb\x01\x88\xb6\x73\xc6\x57\x38\xde\xb8\x21\x3b\x1e\x46\xdf\xaa\x3e\xe7\xa7\x13\xb7\xe7\xaf\xc9\x66\x62\x35\x8f\xd2\xdf\xb8\xae\x39\xa8\x44\x9c\x35\x64\x12\x81\xb2\x20\x02\x0c\x26\xe8\x96\xd0\xc5\x52\x4e\x60\x5f\xae\x18\x27\x1e\x27\x18\xb9\x9d\xb3\x43\xf4\x63\xee\x2b\x98\xbe\x34\xbf\xfe\xb4\xb7\x94\x2c\x71\xc1\x47\x11\x93\xfd\x80\xb7\x48\x2c\xb5\xfc\x5a\xbd\x46\x58\x08\xba\x68\x57\x8a\x13\xfa\x58\xec\x0c\x2b\x2b\xba\x21\xd0\xc8\x1c\x5e\x0d\x15\x32\x82\xc9\xc9\x9a\x13\x41\x94\x02\xa6\x58\xd1\x81\xd7\x3a\xba\xde\x33\x8a\x25\x40\x35\x53\x6c\x71\x7e\x2a\xcc\xe0\x46\x7f\x5c\xe2\x18\xa2\x01\x31\xd1\xec\xa4\x8d\x02\xbd\x78\x5a\xa8\x82\xc1\x10\xf0\xad\xd1\x2b\x8c\xcf\x46\x98\x55\x74\x2e\x9c\xa9\xf9\x5f\x69\xfd\x04\xeb\x78\x05\xde\x16\xad\xfc\xb7\x44\x08\x6d\x15\x28\xdc\xd4\x74\x09\xae\x09\x47\x82\x18\xeb\x05\xe1\x66\xc1\x38\x95\xcb\x15\x60\x17\x01\x1c\xda\xfc\xea\xa3\x87\xb8\x84\x21\x0f\xd1\xa5\x54\x56\x56\x01\xa7\x9a\xe0\xba\x01\xd3\x95\xcd\x11\x51\x4b\xa0\x15\x65\xb3\x00\xa7\xcf\x9f\x79\x33\x46\x32\x25\x02\xac\x72\x5b\xdb\x36\x16\x83\x08\x76\x60\xbb\x1a\xb1\x76\xea\x46\xd2\x7e\x11\x52\xd1\x39\x35\x50\x08\x5f\x01\x02\xd8\x5b\x5a\x9a\x1d\xdb\x6e\x35\x23\x3c\xde\xd0\x60\x3b\x60\x8d\x9a\xd7\xc8\x11\x9b\x29\x31\xac\xc0\x07\x12\x53\xad\xa0\x20\x58\xe9\xe5\xb3\x86\x55\xd7\x7a\x95\x01\xb4\x11\x63\x11\x68\x2b\xd2\xd0\x82\xde\x90\xd6\x11\x67\x82\xa8\x44\x15\x6e\x91\xc0\x73\xd2\x6c\x7a\x8c\x90\x50\xb5\x52\x9f\xd3\xe7\xcf\x40\xd7\x7e\xf4\x34\xdf\x28\x69\x9b\xaf\x76\x68\xf3\xb8\xd0\x26\x3f\x0c\x31\x5f\x10\x89\xea\xce\xd8\xa0\x65\x36\x99\x28\xaa\x0b\x52\xb1\xb6\xf6\xbc\xad\xbb\x9e\x9a\x9e\x39\x1e\xc9\x10\xea\x2c\x05\x0f\x60\xdf\x10\xd1\x12\xeb\xc1\x0e\xd6\x9c\x54\x54\x28\xc4\xbe\x6f\xe9\x2f\xd0\x3f\x19\xff\xac\xad\xaf\xe8\x8a\xd8\xe1\x7b\x8f\xde\xa2\x71\x3b\x7c\xf4\x82\xbb\xd4\x1d\xbe\x0e\xa4\x77\x75\xf9\x03\x38\x00\x04\xce\x48\x80\xa6\x04\x4b\x60\x99\xf7\x4c\xdc\xc1\x5d\x62\xa5\x0c\x93\xd6\xef\x98\xa1\x93\xd9\xcc\xe7\x03\xce\x66\xf2\xae\xc3\x8d\x65\x48\xdb\x89\xe6\x47\xb4\x53\xb8\x82\x3d\x0a\x88\xec\x7a\x3c\x5f\x81\x5e\x27\xba\x46\xda\x23\xe2\xf5\x09\xc2\x8b\x05\x57\xda\xa7\x71\x7c\xa8\x39\x26\x32\xdd\x0a\xe8\x08\x56\x28\xac\x03\x81\x8b\x38\xa9\x08\xbd\x21\x5a\x4d\xc4\x81\x77\xc7\x0a\xec\x08\xca\xeb\x13\x04\x2e\x3a\xad\xf8\x16\x9c\x38\xa0\x15\x82\x78\xb3\x47\x86\xf1\xd3\x10\x11\xcc\xda\x0a\xf1\x5e\xa9\xfe\xfa\xa4\x24\xd7\x35\x2d\xd4\x8a\xac\xbb\x59\x43\x2b\xa5\x3c\x08\xcf\x6d\x46\x86\x6a\x8f\x0a\x69\x2b\x56\x2b\xc1\x24\x94\xfe\x0e\xea\x5d\xc3\x6e\x0f\x16\x2c\x3e\x94\xf8\x66\x2d\x19\x6a\xe8\x8c\x63\xbe\x01\xb7\x48\x8b\x96\xe4\x97\x03\xd3\x3d\x16\x88\xcf\x38\x53\x62\xd6\x8d\xad\xb8\x57\x3a\x7d\xc1\x90\x7f\x82\xe6\xac\x69\xd8\xad\x36\x1c\xc0\x67\xd8\xd6\xf4\x86\xd6\x8a\x69\x14\xc2\x0e\x64\x7d\xbd\xb8\xe8\x66\xcf\xc9\x46\x91\x41\x1f\x1c\x3f\xf5\x6b\xc0\x6f\x48\xc5\x6e\xe0\xd0\x1a\xda\x88\x58\x2d\xa8\x6a\xa7\x3b\xc1\xa6\xc4\xfa\x8c\xa3\xd6\x37\x27\xed\x09\xed\x5c\x40\xde\x27\xe6\x9c\x42\x0e\x83\x05\x01\x27\x8c\x32\x7a\x5b\x74\xf6\xf4\x05\x84\x12\x88\xb1\x39\xfa\x87\xea\x84\x1e\x45\x35\xe0\xb4\x26\x05\x43\x56\x31\xa1\x01\x11\x0d\xad\x8e\x0e\x65\x4b\x38\x14\xc4\x5a\x2b\x87\x53\x74\xb5\x54\xb3\x48\x29\x60\x16\x5d\x53\xdc\x9d\xa2\x91\x17\x49\x32\xd4\xad\x6b\x83\x38\xe5\xa8\x61\x15\x6e\x7c\x5b\x3d\x27\xab\x99\x80\x71\x6f\x30\x73\x48\x18\xe7\x37\x96\x78\x50\xf1\xb7\xcb\x34\xda\x2a\x5e\x4c\xcb\xcd\xd9\x9f\xa6\xb1\x83\x0a\x0a\xee\xf6\xff\x3c\x2d\xbd\x87\xba\x1f\xac\xa4\xf7\xc2\xfd\x20\x1d\x3d\x86\xfa\x07\xaa\xe8\xb6\x5b\x26\x9c\x8f\x1d\x92\x4a\x3a\x59\xf1\xf4\x5f\x6d\xfb\xbf\xda\xf6\x7f\xb5\xed\x0f\xd7\xb6\x07\xa4\xc3\xeb\x13\x81\xd6\x18\x4e\x33\xc3\x89\x7d\xc7\x2c\xc4\x36\x05\x01\xc6\xb3\x5a\x16\x78\xe1\x0e\xd8\xfc\x60\x86\xdb\x3a\x1a\xa3\x13\x36\x14\x25\xf0\x8a\xf8\x18\x89\xd2\x90\x6c\xdc\x5e\x9f\xb4\x05\x45\xed\x07\x26\xc9\x29\x96\xb8\x5f\x5f\xb3\x2d\x4a\x12\x02\x78\x3a\xd0\xd8\x76\x9c\x5e\x04\xe7\x44\xab\x0e\xcd\xc6\xc6\x2c\xd5\xac\x39\x39\x00\x3d\xc3\xa9\x80\x20\xba\x45\x07\x47\xf3\xbc\x6b\xd4\xc8\x53\xf4\x92\x59\xc5\x14\x02\x54\x74\xb5\x6e\xa8\x0d\x37\x45\x63\x44\x52\x18\xbd\xf8\xfe\xf2\x0a\x2d\xf1\x0d\x89\xf6\x6f\x65\x8c\x18\xe2\xfc\xf0\xda\x59\x58\x79\x93\x20\x41\x22\x1a\x42\x91\xc2\x81\xf8\x24\xda\xe5\xa0\x7a\x99\x79\x58\x4f\xec\x49\x61\xd8\xba\x42\x2b\x22\xb1\xd2\x72\x10\x9e\x81\x43\x37\x34\x09\x62\xbb\xeb\xb8\x69\xd0\x92\x0a\xc9\x38\xcc\x5e\xab\x1e\xae\x3b\x24\x9d\x30\xae\xac\x3d\xc2\x57\xb8\x85\xc5\xcb\x34\x27\x21\x79\x57\x19\xd5\xe9\x85\xed\xfa\x3e\x67\x21\x4d\xe4\x39\x0d\xf4\xa7\xd8\x8d\x1d\x02\x6d\x88\x4c\xd5\xa8\xc2\xb1\xa5\x8e\x27\xcd\x3d\xcc\x59\x29\x76\x8b\xe8\xb9\x08\xe7\x35\x2e\x8d\xa0\x00\xd8\x23\x68\x50\x3b\xb1\xf9\x10\xc3\x08\x0b\x89\x79\xa4\x99\x0c\x29\x26\xbb\x81\x24\x71\x00\x65\x2b\xc0\x2c\x88\x35\x84\xac\x6a\x77\xb6\x6d\x80\x42\xc8\x40\xed\x5b\x17\x2e\xd8\xbe\x96\x37\x98\x17\x63\x05\x25\xeb\x50\x35\x40\x78\xa5\x56\x3e\x1d\x4c\x32\xad\x06\x04\xbb\x05\x74\x22\x75\x92\x52\x29\x82\x90\x4e\x2f\x16\x1a\xfe\xb1\x06\x5f\x56\x57\x0d\x8e\xdf\x70\x82\xaf\x6b\x76\xdb\xfe\x94\x60\xc9\x71\x75\x2d\x10\x9d\x3b\x8a\x80\x78\x01\xdf\x45\x10\xaa\x19\x5c\x57\x8f\x89\xb8\xc0\xb4\x3e\x44\xdf\x30\xd6\xe4\xc4\x60\x7c\x81\x5b\xfa\xab\x3e\x2d\xd9\xdc\xfb\x53\xbd\x2a\x08\x36\x9d\x91\xf0\xb1\xaf\xc0\xe5\xd9\xe8\xd8\x17\xe2\xac\x53\xa6\x1a\x9b\xa9\x13\x8f\x71\xd8\x25\x4e\x87\x1b\xd8\x81\xbb\xba\x70\x73\xf4\x5f\x6b\xcf\xc2\x89\xf7\x2c\x04\x76\xbe\x4f\xed\xb3\x61\xda\x5e\x4a\xed\xe4\x69\xc8\x87\x0f\x0f\x2b\x2c\x04\xab\x28\x1c\xad\xce\x3e\x3c\x0d\x72\x51\x9e\x93\x0d\x7a\xe6\x72\x51\x12\x07\x10\xd8\xa5\x46\xd1\x76\x47\x88\x76\xc1\x38\x25\x4f\x2a\x19\x5e\x38\x09\x82\x23\x00\xf6\xa9\xb5\x07\xd4\xa9\xd3\xd6\xe4\x97\x43\xd4\x90\x76\x21\x97\xe8\x00\x3d\xea\x25\x40\x7d\xbd\x48\x1c\x0c\xae\x29\x6d\xa9\x1c\x65\xd6\x26\x0a\x3f\xa1\x88\x4b\x7f\x4a\xc5\x55\xf2\x3b\x49\x83\xb7\x69\xef\x82\xfc\x48\x1a\xf5\x87\x08\xdd\x67\x9f\x30\x41\xdc\x71\x37\x17\x54\xd4\x27\xa3\xe5\x38\x3c\xa9\x34\xbd\x9a\xf9\xd4\xda\xf9\x47\xf6\x0c\xca\x9b\xc0\xd9\x73\x04\xe4\x2d\xfc\x68\x29\xab\x5a\xd8\xff\xe7\xcd\x0c\x81\xd1\x91\x25\x75\x11\x52\x40\x65\x0d\x2e\xf8\x22\xef\x10\x52\x1c\x1d\x45\x0b\x90\x37\x8e\xe4\x21\x3a\x42\x3f\xfe\xd4\xd7\x06\x24\x15\x3a\x42\x73\xdc\x08\x52\x22\x58\xb2\x88\x40\xba\xe4\xbb\x42\x37\xb7\x84\xaa\xbd\xfb\x23\x6f\x68\xd6\x0d\x1d\xd9\x15\x74\x4d\x7e\xbf\x97\x6d\x9c\x0a\x16\x6d\x8c\xe6\x5d\x8b\x2a\xb6\xde\x8c\xc6\x87\x99\x76\x12\x8e\xc0\x89\xec\x78\x0b\x03\xed\x0a\x56\x10\x79\x15\x50\x76\xf4\x33\x6a\xc9\x6d\xc2\xe7\xe3\x64\x98\xd2\xf2\xf8\x5e\x7b\x8c\xfc\x26\x5c\xb5\xd1\xcf\xe6\x2c\x71\x27\xd6\x8e\xe7\x5a\x11\xbd\x94\x21\x12\xd0\x7b\x23\x09\x6c\xe3\x50\x0c\x8e\xbb\x81\xd1\x2d\xab\x05\x7f\xed\x31\xae\xdb\xfa\x62\xf4\xae\x1a\x92\x0c\x45\x0c\x22\x86\x7c\x57\xed\xb3\x2a\xa7\xcf\x9f\x81\xd0\x7f\x4e\x36\xa3\xeb\x4c\xc6\x0c\x70\xf4\x75\xcc\xce\x28\x4e\x7c\x72\x3c\x6b\x6d\x15\xc8\x4b\x37\x0e\x04\x65\xf9\xcf\x20\xe5\xad\x5d\x78\x73\xe2\xb8\x5e\xd1\xf6\xc1\x83\x07\x7d\x9a\xfa\x09\x6b\xe7\x74\x11\x20\x65\xcf\x4c\xed\xd3\x50\xba\x86\x52\x28\x21\x6f\x0f\xb7\x48\x69\xed\x7c\x9b\x7e\xd7\x76\x2b\x25\x8f\xc4\x79\x0b\x3b\x2d\x57\x27\xc3\x0e\x86\x62\x2f\xe3\x3e\xa3\x9f\xf5\xb0\xb6\x6f\x91\x6c\xc9\x38\xe8\x48\xf7\x29\xad\xd3\xc0\xac\x76\xd5\x93\xe3\x99\x5d\x46\xa9\x4d\x7b\x4e\x31\xee\xbc\xe7\x5c\xe3\xce\x77\x9c\x34\x28\xcf\xf5\xf5\x42\x7b\x83\x76\x98\xaf\x75\xef\xec\x39\x53\xdb\x6d\xcf\x39\xda\x6e\xfb\xcd\xce\x2b\xc5\x56\x0d\x76\x53\xdd\xca\xb0\x27\xb9\xe6\xa1\x30\x7d\xf4\x3f\xdb\x26\x9a\x75\x54\xf2\xbf\x5b\xa5\x60\xfa\x26\x9c\x75\x57\x07\x81\xef\xde\x3b\x71\x6d\x7a\xe8\x84\x68\x49\x94\x12\xa9\x53\x63\xc3\xdc\xb1\x35\xde\x28\xa3\x8c\xb6\x15\x27\x58\x10\x81\xc8\x0d\xe1\x9b\x42\xe6\x19\x84\x61\x6e\x70\xd3\x11\x10\x2a\x5d\x23\xe9\xba\xa1\x5e\x88\x40\x02\x9b\x0c\x33\xdb\x24\x43\x0b\x22\x03\xa7\x22\x0c\xd5\x4b\x60\x05\x40\xf7\x3c\x37\xc8\x5c\x10\x5e\x91\x56\xe2\x05\xc9\x2d\xc0\x02\xa1\x87\x00\x8c\x7e\x46\xeb\x0c\x5a\x91\xde\x43\x50\xd0\x51\x00\xa5\x44\x76\xd0\xaf\x7b\x44\xdb\x64\xab\x64\x98\x0c\xec\xa5\xc9\x20\x03\x4e\x76\xa2\xde\x8e\x02\x32\xf9\x66\x2f\x39\xd3\xf7\xd3\x8e\x1b\x39\xff\x72\xaf\x0d\xb1\x5d\x81\xdc\xb2\xba\x43\x3f\xf7\x1f\xb9\xfa\x7c\x0c\xfd\xd4\x26\x6b\x97\xae\x94\x26\xe5\xda\x9d\x39\x29\x03\xd9\xe9\x36\x2c\x83\x33\x3f\x34\x84\x75\x29\x9c\xde\xe0\x8f\x42\x23\x65\x86\x9a\x73\x28\xcd\x2c\x18\xfb\x01\x74\xc8\x31\x44\xa6\x26\x73\x1d\xa8\x40\x9c\xcc\x09\x27\x6d\x65\x1d\x5d\xd6\x64\xc1\x66\x50\x21\xf1\x6a\x6d\x93\xe7\x4d\x37\x07\x18\x37\x0d\x9a\x77\x12\x32\xff\x63\x5c\xc5\x14\x9d\xcf\xd1\x5b\xe3\xf1\xd6\xc9\x16\x00\xf8\x2d\xcc\xb1\xcd\x7c\xe9\x72\x49\x5a\x07\x17\x6e\x55\x24\x93\xa7\xc2\xc4\x2c\x66\x9b\x43\xdb\xd0\x75\x48\x7c\xeb\xa0\xf5\xcd\xaf\x2c\xfa\xe8\x4b\x1f\x2e\xf8\x1b\x1a\xe5\x48\x1d\x70\x32\x37\xff\x1d\x47\xb0\xfb\xfc\x93\x57\xb0\x84\xbd\x0a\x90\x1b\xcd\x86\x9c\xfa\x63\x12\xa9\xab\xa4\x4e\xa2\x13\x79\x70\xc0\x2c\x90\x71\xd3\x25\xeb\xd7\x0b\xd7\xcf\xb0\x17\xb2\x23\x75\x19\xf4\xfe\xf1\x8e\x02\x0e\x6e\x4d\xca\x8e\xc2\x13\xb6\x5a\x77\xd2\x71\x93\xb8\xa5\xb2\x5a\xea\xac\x00\x85\xd8\x0c\x0b\xc8\x0e\x42\x6c\x3e\x17\x44\x6a\x3f\x90\x47\xd3\x90\xe6\x81\xef\x36\xed\x3d\x18\x16\x44\x5e\x85\x2c\xf3\x94\x71\xab\x3d\xe6\xfc\xe1\x54\x0f\xfb\x9f\x7e\xcb\x6f\x9a\x30\x9e\x56\xd2\x87\xb9\xcf\xf6\x8b\x58\xb0\x74\x84\xa4\xcc\x31\x29\x2c\xeb\xa4\x48\xe6\x54\xc6\x27\x78\x1d\x39\xbe\x2b\xb4\xf2\x63\xe8\x7d\x75\x52\xf0\x65\x14\xe6\x1e\xef\xc1\x7e\x31\xf9\x2d\x6b\x6a\xad\x8e\xbc\x75\xd7\x69\xa6\x7a\x6b\xbd\xb5\x9b\xce\xb9\xdb\x9c\x18\x9b\x35\xc4\x05\x18\xc2\xad\x6a\xfd\x80\xd6\xf1\xe8\x9b\x5b\x0b\xe8\xd0\x08\xe6\x1d\x6c\x23\xa3\xc3\xc4\xb7\xbe\xbc\xf4\xd3\x96\x53\xcb\x64\x9f\xf1\x54\x08\xae\xe0\x30\x4e\xc2\x49\xc5\xb8\x4b\x8f\x77\xf1\x12\x60\x6b\x93\xf9\x16\xe4\xe9\x7b\xb9\x0b\x4e\x3f\x3d\x96\x96\xda\x5a\x91\xf5\xc3\xbd\x01\x86\x14\x05\xb0\x30\x1f\xb7\x8f\xe3\x28\x0e\xe3\xa8\xa5\x0d\xa2\x73\x7d\xc8\xb4\x5f\x48\x34\x67\x9d\x09\x1e\xba\x98\xb7\x27\x97\x8f\xeb\x28\x0b\x4f\xdb\xb1\xf0\x8d\x3a\x35\x85\x8e\x80\x2d\x38\xbb\x55\x62\xbe\xa6\x70\xe0\x63\xbe\x71\xd0\x6a\x46\x04\x52\xd4\x03\xd7\xb7\x8e\xbd\x37\x0c\xd7\x0a\x2f\xd0\x36\x61\xcf\x47\x77\x70\xa8\x30\x2d\x32\xe9\x6c\xf6\x74\xe4\x9f\x19\xfd\xac\x27\x98\xef\xe2\xa8\xd9\x3f\x82\xbd\x41\xe7\xc0\x37\x96\x66\xa7\x0e\x6b\xf0\xd1\x35\xf3\xa9\x99\xe6\xd4\x4c\x73\x3a\x63\x9c\xb3\xdb\x27\x9f\xbf\xd7\xb0\x13\xd0\xbf\x7f\x3d\x52\x54\x3f\xd4\x7d\x2d\xd4\x4b\xdd\xf7\x02\xcb\x65\xba\x2f\x93\xf1\xdf\x90\x39\x3a\x2a\x60\xf3\x63\x38\xaf\x9f\xd2\xbd\xed\x25\x52\x00\x67\xaa\x5d\x58\x51\xcb\xdf\xef\xe5\xff\x33\x3d\x5b\xda\xa4\x1b\xf5\x12\xeb\xe4\x83\x15\xab\x35\xf7\xc4\xce\x30\xb3\x55\x4d\xe4\xd3\x07\xff\x32\xd6\x28\x6f\x57\xd0\xd6\xf1\x0d\x49\x57\xb0\x25\xb7\x7e\xe7\x46\x3f\x86\xb4\x5b\x73\x52\xf4\xc3\xe8\x50\x71\x28\x6d\xd1\xd1\x11\x7a\x88\x7e\xfb\x2d\x6a\x3c\x0a\x46\x71\x5e\xdb\xaf\x8f\xfa\x81\x1c\xa0\x47\xe8\xf3\xcf\x23\x18\x25\x10\x4f\x0c\x88\x35\x67\x6b\x26\x48\x1d\xc2\x18\x8d\xc7\x87\xd9\xba\xdd\x3f\xd1\x02\x05\x68\xbc\x49\x03\xa9\xb0\x83\x6d\x89\x80\xb9\x24\xf6\x36\x8f\x06\x6e\x5a\x33\xee\xae\x5c\x66\x57\x7d\xee\x17\x16\xfc\xae\x2c\x8f\x3b\xb9\x1c\xbd\xe8\x24\x96\x64\x8c\x3e\x11\xff\x97\x99\xbf\x40\xe9\xd2\x1e\xc0\x42\x10\xb8\x55\x97\xfe\xa0\x3e\xab\x74\xa9\x8e\x8e\x4a\x2b\x38\xe9\xe9\x2c\x04\x18\x50\x76\xb9\x14\xe3\x7a\xa4\xe1\xb4\x5a\x51\xb1\xc2\xb2\x5a\xfa\x54\x3c\x03\x52\xdc\xcf\x60\xf6\xed\xca\x10\xd1\x6d\xf3\x8f\xd0\x2f\x9f\xb6\xc5\x3d\x67\xd3\x45\xde\x04\xe9\x54\xa3\xb1\x0d\xf5\x24\xca\xad\xce\xb9\xb2\x79\x5e\x2b\x93\x05\x8d\xd1\x92\xfc\xa2\xf6\xbf\xea\xc0\xe6\xe8\xf1\x57\xea\x34\x54\x43\x28\x1b\x6c\x44\xa7\x04\x3d\xfa\x1f\x34\xdb\x48\x22\x14\x77\x3e\xfa\xea\xef\x68\x46\xa5\x18\x47\xa0\xdf\x72\x25\xf4\x25\x9d\x35\x06\x95\xb7\x46\x14\x29\x91\x63\xb4\xae\xd1\xdf\x35\x14\xdf\x13\xd4\x4a\x68\xfe\x1d\xbb\x05\x95\x23\x06\xf2\x44\xf7\xfc\x7a\x34\x9e\x4a\xf6\x0d\x5d\x9c\xb5\x35\xc5\xed\x37\x0a\xc8\xa8\x04\xe5\x5b\xba\x58\xde\x19\x0c\x04\x64\x03\x32\xa2\x23\x43\xc5\xa9\xce\x21\xfe\x96\xfc\x32\xf2\xc3\x8c\xa7\x15\x6b\x2b\x2c\x47\x3d\x6d\xbe\x63\xb7\x63\x0f\xbb\xc8\xcc\xe1\x60\x53\x13\x02\x3c\x3a\x42\x8f\xbf\x9a\xdc\x2b\xb3\xeb\x9b\xfd\xd7\xcf\x73\xeb\xf8\x5e\x7a\x48\x84\xe3\xa7\xa7\x45\x60\xab\x4c\xd4\xaa\x9f\x9f\x4e\x8a\xf7\x00\xb3\x93\x1c\x82\xb5\xb9\xc8\x8d\x0d\x06\x37\x82\x01\xa5\x73\xfa\xdc\xb5\x71\x67\x4d\x9b\x70\xea\x10\x7c\xe3\x4f\xf1\xff\xf7\x23\x28\x09\x15\x54\x5b\x09\xf4\x53\x50\xef\xde\x42\xdd\x0a\x20\xa5\x53\x85\xb2\xe1\x14\x6f\x61\xd5\x3a\x90\x7a\x6a\x77\xb9\x3f\x76\x19\xee\x5b\x82\xb9\x9c\x11\x2c\x77\x1e\x72\x69\x7b\xec\x3f\x6c\x8f\x28\x7f\x1b\xe8\x70\x5b\x06\x2f\x08\xfa\x9e\xb1\xdf\xd8\xd9\xe8\xc0\x38\x38\x06\x20\x37\x5b\x30\x6f\x88\x3a\xf5\x6f\x4e\x49\x63\x6c\xe7\x70\x48\x47\x12\x58\x95\x9e\x1b\xec\x4a\xd6\x69\xd8\x30\x2d\xf0\x27\x69\xf5\xc2\xff\xdd\x67\x2d\xe5\xda\x85\xfa\xf8\xe5\xc9\xd8\x49\xed\x42\xff\xd7\x34\xbe\xd7\xaf\x8f\x0d\x7d\xc9\xc5\xcc\x56\x4f\xcc\x26\xdf\x15\xc2\x0a\xf9\x99\xe1\x47\xa7\xe2\x07\xdc\xd0\x1a\x86\x8a\x7c\x4e\xa3\x00\xc3\x82\x21\xd4\xeb\xb0\x2b\x1f\x7a\x3b\x03\xb3\x3e\xba\x32\x98\x88\xe0\xe3\x43\x74\xff\x25\xb9\x35\x86\x05\x7c\xe5\xa4\x52\x7a\xe7\x15\x89\x6e\xa5\x38\xc2\x51\xa6\xad\x21\x87\x4e\x13\x1c\x7c\xfd\xf7\x93\x73\xf4\xde\x1e\xf8\x17\x02\x49\x31\xaa\x25\xab\xbc\xcc\x60\x86\x8c\x01\x8b\x85\xdf\xfc\xa7\x31\x59\x32\xbd\x4f\xca\x3c\x3b\x83\x81\x46\x8a\xbb\xf6\xe1\xac\x96\xdc\xfe\x21\xdc\x95\xc4\xf0\x12\x02\xee\xc1\x68\x96\x58\x01\xa7\xf9\xbf\xff\xd3\xf8\xec\xa3\x0a\xb3\x88\x52\x7f\x06\xaf\x85\x7c\xa6\xf8\xee\x53\xf1\x9a\x8b\xa2\x46\x33\xde\x83\xc7\x32\x7f\xb7\xe6\x33\xfd\xff\xc3\xdc\x1d\xfe\x21\xec\x76\xe2\x2d\x6f\x37\xc4\x34\x74\x71\xde\x7f\x93\x84\x2b\x2c\x99\x8d\xc5\xeb\x4b\x03\xa5\x04\x2c\x0f\x9e\x9a\xb6\x0d\xc3\xf5\x93\x6c\x4a\xd6\x88\x7d\x60\x9a\x3d\x98\x5b\x00\xd1\xc4\x77\x1c\x43\xd9\x8a\x23\x37\xbd\x09\x92\x6c\x77\xc8\x5b\x57\xab\x2f\xaa\x4c\x6e\x5f\x6e\x0f\x2c\xff\xbb\x49\x86\xbb\xb0\x7d\x3e\xfb\x78\xee\x7b\xd0\xf2\xe9\x77\xaf\xfe\x79\xd9\x1f\x38\x56\x1b\x6a\x6b\x2c\xf5\xdf\x8d\xa4\xc8\xc8\x3e\x1f\xdd\x7c\x72\x84\x1e\x4d\x1f\x1a\x3d\x4c\x07\xf2\xfd\xa6\x92\xb7\x84\xb4\xe8\x57\xc2\x19\x08\x2a\xd6\x92\x0f\x5c\xa1\xc1\x60\x7c\x84\x58\x71\xa1\x1e\x3c\x40\x67\x2d\xf8\xfe\x19\x47\x35\x15\xf0\x5f\xdc\x49\xb6\xc2\x92\x56\x2e\x7b\xa1\xc2\x4d\xd5\x35\xb6\x96\x5b\x5b\xa3\x35\xde\xc0\xfd\xb5\xad\x8a\x9b\x81\x64\xb2\xce\xf4\x58\xf5\xe8\x67\x44\xf4\xff\xca\x49\x67\x5b\xe4\x89\xea\x52\x14\x21\x3d\xc3\xed\x25\x48\x0c\x62\x05\x31\xb2\x15\xba\x17\x8a\xbd\x64\x21\x2b\x2a\xc3\xbb\xac\x67\x37\xa4\x95\xa3\x92\x53\x3d\x3e\x43\xb7\xa4\x04\xef\x92\xf3\x3b\x98\x35\xbc\x35\x65\xa2\xa7\x75\x96\x3e\x11\xb7\x83\xab\xaf\xd9\x1d\x19\xfb\xd9\x76\x1d\x32\x6c\x5b\xbe\x9c\x18\xb6\xd8\x76\x19\x0d\xf5\x5f\x18\x2b\x20\xb5\xe7\xbd\xac\x10\x42\xff\xe5\x20\xfb\xc9\x82\x87\x21\xcb\x20\x1f\xe1\xb2\x11\x80\xfe\xe2\x98\xe6\x82\x57\x9a\x48\x84\x8c\x0f\x0e\xd2\xe1\xb7\x5c\xff\xcd\xd3\x8b\xe7\xe6\x2a\xc3\xf9\x29\xa2\xad\x5d\xc4\x02\xca\x00\x7d\x8a\xd7\x6b\xd2\xd6\xa3\x81\x21\x46\x1a\xc4\xa1\x01\x35\x4e\xbd\xb3\x19\xda\x8a\x82\xf1\x3d\xc8\x30\x5f\x1b\x7d\xd9\xcb\xae\xd1\x4f\x2e\xdf\x25\x4c\xe2\x4f\x87\xf8\xea\x0e\x43\x8c\xbe\x42\x7f\x2b\x8c\x33\x1e\x1c\xe8\xf1\x5d\x06\x7a\x3c\x30\x50\xc6\x30\x4a\xb6\xc4\x17\xe5\x21\x6f\x25\x16\x02\x69\x9b\xdc\x99\xef\xae\x2d\x84\x52\x29\xd7\xe8\xfd\xe5\x72\x60\x83\xbc\x41\x70\x1d\xdc\x4d\xb7\xd4\xca\xdd\x50\x35\x02\x2a\x6f\x53\x92\x13\xf9\x77\x79\xbf\x58\x66\x84\x7f\xe5\x6d\x4b\x57\x6f\x73\x36\xec\xef\xf7\x55\xa1\xdf\x57\x3b\xf4\x7b\x5c\xe8\xf7\x78\xa0\x5f\x2a\xe5\xe2\xbf\xfb\xda\x3b\x89\x17\xfd\xd9\x4b\xe9\x50\xf8\x65\x5f\xe5\xbd\x42\x81\xe7\xff\x9f\x88\xbc\xb2\xf6\xf1\x00\x5d\x10\x3e\x67\x7c\x25\x90\xc0\xad\x92\x6f\xd5\x92\x54\xd7\x22\xa8\xac\xc7\x6e\x68\xed\x62\x71\x51\xd6\x15\x54\xb9\x81\x32\x79\xa4\x15\x9d\xf1\xb6\xea\x3b\x9c\xb4\x5d\xfc\x9f\x68\x98\x03\x74\x05\x0e\x59\x28\x57\x7a\xa3\x2c\x62\xe3\xe2\x8e\x21\x26\x7d\x8e\x5d\x6d\x42\x5b\x2a\x15\x8a\x3e\xd4\x02\x4a\x06\xd8\x1b\xac\xba\x02\x03\xfa\x1a\x3d\x4c\xaa\xb6\xcd\xe3\x14\x0b\x5b\xbf\xc3\x22\x10\xff\x00\x45\x69\x73\x75\x33\xbe\x4d\xfd\xae\x42\x37\x4c\x5a\x3b\xb7\xbe\x5e\xb8\x32\x81\xa4\x55\x54\xaa\x89\x12\xc6\x10\x76\x68\x0b\x65\x41\x92\xfb\xe6\xa9\x76\x12\x5e\x17\xbe\xe0\xe4\x04\x96\x62\xf4\xc9\x75\x8f\x54\x4b\xd8\x57\xe7\xef\x77\x71\xc4\xb8\x1d\xb8\x99\x7c\xf9\x68\x72\x07\x0f\x9a\x9d\x46\x08\xa7\x10\x72\x56\x9f\xfb\xe7\xad\x5e\x63\x2f\xfa\x12\x42\xe9\x82\x1d\xf6\xa6\x51\xc4\x0a\x83\x26\x01\xd4\x01\x09\xb6\x4a\x50\x3f\x53\x2c\x59\xd7\xd4\x39\x57\xde\xe9\x70\xd7\xf1\xb1\x72\xac\x77\x8f\xb3\x7e\xaa\xab\x2e\x37\xff\x74\xd8\x4c\x50\x11\xa6\x8f\xa9\xe1\x70\xd3\xc5\x1b\x4e\x21\x1f\xab\x3c\xda\xb6\xca\xa6\xbc\x3d\x24\x1c\xfd\x49\xe7\x77\x36\x21\x0b\xa4\x83\xdc\x0e\xda\x56\x04\xdd\xda\xbb\xf4\x82\xc8\xf8\x02\xf4\x44\xfd\x56\x33\x48\xd7\x69\xa1\x9a\x07\x2b\xc2\x01\xfe\x09\xef\x4c\x23\xdc\x08\x36\x45\xff\x24\xda\x6a\x35\x7d\x75\xae\xe1\xc0\xed\x89\x70\xe9\xf4\x34\x75\xd6\x81\xd5\x39\xea\x15\x6d\x47\xe3\x29\x69\xeb\xc4\x99\x9a\xd0\x0d\x91\x46\x94\x76\xa3\x29\x30\x52\x99\xc9\xba\x8a\x5a\xda\xeb\xbb\x15\x0d\xa7\x53\x5b\x44\x00\xd6\xa5\x64\xeb\x1f\x40\xdc\x25\x68\x94\x40\x9c\x3e\x7f\x16\x75\x3e\x6b\xeb\xd3\xe7\xcf\x06\x12\x74\x22\xc1\x7a\xd6\x9a\x9c\xb9\xca\x16\x43\x40\xb8\x92\xf4\x86\x04\x05\x95\x60\x2d\x84\x29\x50\xcc\xda\xa0\xa8\x91\x3b\xa5\x06\x4e\x13\x48\xec\x5f\x11\x89\x91\xc9\x69\x30\x72\xdb\x54\x8d\x0a\xb3\x8e\x8b\xf5\xa8\x4c\x85\xa6\x79\xd7\x6a\xf5\xb0\xa6\xf3\x39\xe1\x22\x2e\xb3\x60\x12\x38\xa1\xfb\x49\xc0\xc7\x68\x46\x74\x25\x6e\x6a\xee\x20\x80\xca\x14\x84\x76\xc3\x34\x65\x53\xb8\x5b\x9b\xfc\xee\x0a\xc3\x14\xe5\xd3\x71\xc8\xd8\xaa\x54\x26\x7f\x1a\x6a\x5d\x40\xa5\x9a\x52\x11\x2a\x40\x52\xa3\xf5\x14\x37\xcd\x0c\x57\xd7\xe8\x85\xda\xe7\xa3\xb3\xa7\x2f\xc6\x5b\x8f\xa7\x97\x26\x8a\xf4\xc9\x0f\xa6\x8f\x6b\x51\xee\x64\xe6\xfe\x11\xd6\xe7\xd6\xf3\x36\xa6\xa2\xce\x43\xdd\xa2\x18\xf4\x1e\x73\x87\xd9\xb1\xe7\x48\x6e\xf5\x7d\x8f\x90\xf9\xcf\x38\x33\xa2\x92\x24\x10\xbf\xf5\xcb\xc9\x36\xb9\x45\x39\x70\x95\xe2\x8e\x61\x90\x81\x21\x82\x8b\x16\x7b\x2b\x19\xf9\x61\x7f\x02\x01\x0f\x90\x39\x71\x7e\x60\xd9\x07\x10\x57\x5a\x03\xff\xa3\xc8\x71\x35\x5b\xe8\x85\x4f\x0b\x8b\xd3\x04\x33\x2c\xce\xad\xd0\x28\xc8\x0c\xb8\x46\x61\xb0\x50\x67\x8f\x2e\x91\xe6\xcb\xb8\xc7\x1c\x6e\xcd\x4b\x4f\x9a\x72\x32\x5f\xb2\x99\xe1\xba\x7c\xbf\x0d\x57\xe4\xc5\xf2\x56\x2f\xda\x99\x5b\xb8\x36\xa1\x87\x2e\x43\x62\x2d\x0d\xeb\x33\xb6\x22\x5d\xd1\xe1\x96\x2b\xb1\x0e\x0f\xef\xbc\x75\xa2\xf4\xb8\xad\x2f\xdd\x0d\xdc\xb7\x68\x46\x1a\x16\xdf\x14\x8f\xaf\xe5\x3f\x9c\x3e\x4c\xa4\x43\xe1\x4a\x7e\x9f\x00\x29\xfc\xe6\x2e\xd9\x7b\x19\x31\xce\xf9\xed\x12\x92\x87\x0d\xff\xf8\x7c\x49\x38\xb5\xa0\xac\x95\x9d\xa6\xbb\x27\x00\x95\x20\xc3\x4f\x06\xd3\xf3\xcc\x9a\xb3\x05\x27\x42\x40\x91\x20\xce\xba\xc5\x32\xa8\x21\x36\xed\x71\xd4\xe6\x69\xac\x29\x03\x17\xe6\x71\x92\x1e\x60\x5b\xca\xbe\xa3\x20\x0b\xdd\x6a\x30\xe6\xd6\x5e\xfe\x5c\x4b\x9f\x97\xbe\xb8\xd2\xa9\x40\x72\xce\x1a\x4f\x16\xde\xeb\xb1\xd1\x05\x09\x76\x70\x1b\xef\xb7\x9f\xd0\x4e\x7b\x06\xed\xb9\x33\xd0\xd6\x7d\x86\x06\x9d\xcd\xbb\xc7\x9c\x4b\x2e\xe8\x5d\x92\x1e\xd2\xb3\xe6\xcf\xf1\x36\xfd\x75\xbd\x38\xb9\xb8\x00\x03\x05\xfb\xf3\xc9\xbf\xd2\x14\xa9\x99\xb1\x23\xa2\x54\xbe\x23\xd8\xef\x0a\xa6\x53\xf3\x7a\x5d\x47\xbb\xe8\xec\x9c\x18\xad\x9d\xca\x3b\xa8\xeb\xa1\x7e\x4b\x5b\xa9\x7d\x2c\x51\xbd\xd3\x6c\x5e\xa1\x4b\x27\x2e\x1b\xbb\x89\xe0\x87\x35\x5d\x95\x11\x27\xcc\x85\x0d\x5f\x47\x76\xa5\x53\xce\x21\x3e\x59\x91\xbd\xd5\x7f\x4b\xbf\x50\xf5\x77\x37\x44\x68\xff\x71\x0e\x5e\x35\x65\x64\xc6\xa0\x5d\x57\x6f\x18\x58\x49\x69\xe5\x2b\xbe\x61\x14\x7c\x4f\x35\xeb\x66\x0d\x48\x4f\xfd\xce\x58\x2c\x7e\xa1\x46\x5e\x52\x7b\xf2\x53\x18\x48\xd6\x26\x89\x06\xf9\x23\x0c\x94\xd0\xf0\xfa\xaf\x91\xf2\x89\x8c\x94\x7f\x0b\xbb\xe4\xaf\x63\x56\x84\x60\xb3\x31\x42\x8f\x57\x60\x12\x84\x66\x56\x72\x11\x6c\x30\xdd\x68\xfc\x29\x6c\x18\xb3\xbb\x93\x0b\x3c\x20\x24\xac\xbe\x4d\x86\x14\x4f\xd7\x65\xf8\xed\x1c\x4b\x12\x12\xa2\x19\x2a\x57\x7b\xd8\x4d\xa8\x6c\xee\x14\x28\x56\xd0\xba\xc0\xde\x29\x2d\xcc\x67\x50\xe2\xea\xae\xda\xdc\x76\xed\x6c\x5f\x7d\x6f\x8b\xcd\x82\x76\xb3\x5b\xd0\x16\xdb\x05\xfd\x67\xd9\x2f\x64\x8b\xf1\xf2\x29\xcd\x83\xdd\xf8\xef\xbf\xb6\xc1\x27\xb3\x0d\xf6\xd9\xd5\x7f\x5d\x4b\xc1\xfe\xef\x4f\x70\xb4\x07\x7b\x7f\x62\xee\x75\x42\x54\xe2\xcc\xe8\xb9\xba\x1c\xb9\x98\xc0\xf3\x26\x6f\x83\xa2\x82\x85\xd4\xd9\x2f\xd1\xa3\xb7\x5b\x2c\x03\xd0\x32\x4d\xc2\xa0\x51\x2c\x0f\x90\x80\x00\x90\x89\xff\x86\x05\xca\xa9\xd0\xc8\xe8\x00\xa0\x99\x94\x2e\x97\x4e\xe3\x5a\xa1\x33\xc6\xa4\x90\x1c\xaf\xd7\xb6\x40\xa6\xa6\x88\x09\xa9\x99\x97\x15\x44\x8b\xd7\x62\xc9\xe4\xc4\x94\x60\xd6\x3f\xd2\x5f\x89\x08\x5e\xd3\x74\x04\x34\x15\x8f\xd7\x69\xd9\x21\x73\x2a\x42\xc6\xbe\x9a\xc2\x04\x6a\x57\x43\x79\x12\xa3\x7a\x63\xe9\x86\x1a\xd2\x80\x2d\x99\xe3\xa3\x70\xe0\xfe\xd9\xbe\x79\x5e\x9f\x5a\xa1\xbe\x6b\xdd\xcb\x3b\x94\xbd\x2c\xa9\xc1\x7e\xe3\xec\x12\x04\xef\xb9\x8f\x3d\x28\xec\x7b\x22\xd6\xf6\xe6\xad\x7e\x63\x18\x3b\x05\xe9\x2c\xf2\xf5\x02\x1f\x38\x5b\x10\x2e\xe4\x46\xea\x94\x6d\xe7\xeb\x18\xe4\x05\x1f\xee\x76\x5d\xe1\x3f\x30\x96\xff\xb1\xc3\xce\x1f\x29\xea\xfc\x17\x0a\x3a\xff\x35\x62\xce\x69\xf4\x20\x35\x87\x82\x82\x04\xc3\x9e\x66\xe3\xc0\xf8\xb8\xe1\x1d\xfb\x71\xa6\x4a\xcf\x31\x58\xbe\xd5\xb3\x2d\x30\xe3\xda\xed\xa4\x50\xa2\x9d\x94\x44\x74\x07\xd5\x13\xd9\xc0\x0d\xfd\x18\x81\x1a\xfb\x29\xd5\x51\x1e\x3d\x9c\x3e\x2c\x78\xdb\x51\xf9\x6c\xc9\xbe\xea\xe9\x19\x9c\x2e\xfe\xff\xe5\xb6\xdb\xed\xa4\x0f\x0a\xad\xdc\x31\xb2\xf2\x87\x04\x56\xfe\x60\x77\x34\x8a\xaf\xe8\xc7\x97\xaf\xa9\xd0\x27\x9e\x5a\x60\x57\xc6\xc8\xe9\x7a\x50\x1d\x5f\xeb\x8e\xae\xbf\x64\xa6\xea\x51\x84\xa2\xce\x53\x34\x0a\x9a\x2b\x49\xe2\x45\x9e\xb9\x9b\x3f\x07\xb1\x5c\xb8\x40\xee\x6e\x73\xbb\x4b\xef\x49\x11\x8a\xa7\x56\x97\x75\x68\x63\x40\x59\x17\x0d\xd2\xaf\xe0\x48\x86\x70\x7d\x83\xad\x4e\x9b\x2b\x90\x50\xbc\x49\x23\x6f\xde\x03\xb2\x45\xcf\xde\x75\x94\x6b\x8d\xbd\xd6\xaf\x7d\x07\xa5\xf9\x57\xa4\x5c\xa8\x52\xe9\x92\x66\xbc\x6f\xd4\xf8\xa3\xcc\xfd\x07\x25\xc9\x06\x8f\xcf\x82\xb6\x04\x0f\xa2\xf7\x1d\xa9\xe5\xd3\x3f\xf0\x8f\x01\x26\xe8\x08\x2d\x88\x3c\x09\xbe\x29\x9c\x13\xe8\x13\x39\xd6\x3e\xeb\x13\x6b\x17\x78\xe3\x36\x23\x1c\xd1\x74\x5e\xb8\xc6\xa3\xb4\x02\x73\xbf\x65\xbb\x7c\x04\x30\xb8\x92\x1d\x6e\x9a\x0d\x5a\x42\x9a\x3f\x44\x22\x10\x5d\xad\x48\x4d\xb1\x24\xaa\x81\xab\x9a\x43\x4c\xb0\x61\x11\x3e\x8f\x98\x40\xb7\xa1\x88\xb7\x6b\xbc\x31\x7b\xf8\x29\xe3\x17\xa6\xa4\x8e\xd9\x5f\x6f\x83\xf1\xd7\xd1\xbc\x2a\x52\x04\x1c\xa9\x51\xb8\xe7\xca\x51\xe9\xce\x85\xfd\xe8\x92\x42\x03\x28\x15\x7b\xfe\xde\x87\x4c\xc8\x2e\x53\xb0\xf9\xbe\x3e\x2a\xb2\x42\x5a\x45\x7e\x0b\x86\xdb\xf4\xa4\x7e\xc4\x52\xc6\x3f\xbb\x78\x75\xf2\xed\xe5\xd9\xd5\xf7\x17\x65\xa6\x37\x14\xf5\x16\x8c\x4e\x3a\x3e\xb1\x0f\x79\x8d\xc6\xe8\xf3\xcf\x11\x30\xeb\xe9\xf3\x67\xd3\xfa\x3a\xfa\xe9\xb3\x23\xd4\xd2\xec\x52\x57\x36\x9d\x5e\x99\x3e\xd8\x0b\x84\xb1\xd9\x14\xab\x15\x95\x1f\x46\x83\x93\x57\x2f\x5e\x9c\x5f\xfd\x65\x77\xfe\x5e\xcc\x46\x76\xe6\xb2\xfd\xb8\xbe\x26\x73\xdc\x35\xb2\x4c\x44\x5d\xd8\xe6\x5e\x19\x42\xe2\x1a\x3a\xc1\x4d\x23\x82\x2a\x2d\x6f\x9d\x97\x45\x0c\x58\x1b\x49\xd9\x6c\x97\xc2\x01\x8a\x80\x4c\x5e\xb9\xef\x2f\xb1\x0d\xb7\xf3\xf2\x0d\xf6\x87\x5d\x3f\x25\x1a\xe7\x68\x66\x77\xbc\xd7\xab\xf8\xcf\xe6\x80\xbc\x34\x09\xde\x21\xeb\x95\xe4\x48\xe6\x81\xfe\x44\x95\xa9\xd0\xc7\xc8\xe8\x4b\x54\x33\xf8\x2f\xac\xef\x28\x99\xf6\x61\x4a\x87\xc9\x40\x9a\x46\xaf\xcb\x72\x47\xbe\xec\xe7\xb3\x61\x9e\xbc\x18\xe4\xc9\x5c\xde\x7d\x64\x96\x0c\xce\x82\x84\x1d\x43\x24\x0d\x2b\x06\x5f\xed\x78\x71\x79\x40\x5e\x7f\x08\x99\xcd\x53\xd3\xdb\xe8\x6c\xf8\x1c\x1d\x87\xb2\x42\xbf\x1b\x99\xa7\x27\x16\xc4\x81\x91\x84\x9f\x82\xe4\xe6\xe8\x49\x68\x6e\x9e\xc2\x0d\xa9\xad\xa7\xba\x0f\xb9\xb7\xa7\xce\xbc\x0c\x32\x4e\x8c\xb6\x1f\xd4\x38\x74\xd5\xbe\xdc\x2b\xbd\x28\x4d\xaa\x13\xc3\xb6\x9f\x59\x06\xc6\x21\x4e\x46\x56\x50\xfc\x3f\x72\x75\xf4\x52\xbd\x4f\x2d\xe8\xbd\x23\xbe\x55\x8f\x18\x28\x4c\x30\xa4\xf4\xf5\x0e\xb8\x93\xa6\x98\x57\x2f\xf7\xa4\xd3\xcc\x27\xd9\x35\x3c\x4e\x16\x59\xc2\xb9\x05\x1d\xe4\x24\x0a\xe7\xf8\x19\xb6\x9f\x8b\x0f\xee\xf4\x93\xd5\xe1\x1c\x3c\x3f\xa7\x2b\x7f\x99\x82\x95\x25\xaf\x5d\x54\x43\x60\x47\x8f\x80\x33\x30\xf5\xfb\x87\x7a\x53\x87\x70\x60\x9e\x3a\x7e\x8b\x6d\x5e\x11\x9a\xd9\x57\x6e\xac\x37\x39\x2d\xe2\x39\xe8\x7c\x68\x7c\x82\xd2\x65\xb7\x5a\x99\x32\x9c\xc1\x54\x3c\xff\xe4\x9c\x13\x68\x72\x81\x12\x07\x34\xc9\xf4\xb7\xbe\xd2\xa6\x81\xea\x96\x80\x9a\x66\x6f\x06\xc5\x88\x4e\xdd\xcc\xc7\x43\x20\xa2\x07\x8f\x12\x08\xa1\x7f\xca\x03\xd1\x8a\x74\xe6\xf9\x49\x60\x07\x4b\x7c\x27\x0b\x2b\xe2\x0b\xe9\x5e\x2c\x34\xaf\x56\xb0\xb9\x7e\xca\xc2\x1b\x90\xd1\xfa\x7d\x21\xd2\x77\x2c\x0c\x48\x68\xe9\xcb\x51\x98\x87\xb6\xb5\x98\xd1\x5b\xca\x3c\x0a\xb7\xc4\x37\xa4\xfd\x42\x1a\x3f\x03\x6d\x25\xa9\x7b\xb8\x72\x43\x64\xa6\x9f\x98\x16\x17\x7a\x9f\x1d\x95\xae\xbc\x59\x0e\xb8\x52\x83\xea\x86\xa3\x5c\xd1\x99\x13\xa2\x57\xd7\x00\x79\x4a\x88\x50\x5d\x9f\x12\xf2\x0d\x6e\x70\x0b\xda\x4d\xd8\xe9\x06\x73\x78\x4f\x1f\x96\x55\x97\x4b\x39\x56\x34\x72\xa8\x3c\x9c\x3e\x4c\xa3\x08\x7e\x10\xaf\xfc\x9b\xf6\xf9\x39\x35\x08\xfc\x29\xfc\x78\x4d\x5a\xcd\x3a\xba\xc9\x6e\xde\xf8\xfd\xe1\xa2\x2f\xd1\x28\xc6\xf6\xc0\x4f\x65\x9b\x13\xfd\x3b\x86\xb5\x42\xa0\x5f\xa5\x54\x0c\x35\x63\x6d\x27\x2c\x13\x40\x12\x5f\x58\x21\x39\x5c\x15\x68\x79\xa5\x1b\x26\x56\xd9\x37\xfe\xa7\x92\x7f\xb1\x9b\xe9\xd2\x89\xf9\x58\x19\x8b\x07\x0f\xb3\x70\xe2\xbe\x4e\xd7\x2e\x44\xe5\xc9\x10\x11\xf7\xa4\xf8\xc0\x8f\x07\xe1\xa0\xdb\x62\x15\xd1\x16\xde\xcd\x6f\x1b\x1a\x20\xbb\xe0\xf3\xb7\x6d\x01\xbc\xc1\xf7\x42\xb2\x25\x72\x8f\xe1\xdc\xfa\x67\x77\x22\x23\xca\xd5\xbf\x84\x52\x36\xb6\xda\xb3\xd6\xb6\xb2\x8a\xbf\xc8\x0a\xcc\x62\xec\x4a\x14\x84\x40\x3c\xf5\x5c\x24\xd8\xdf\x77\x3b\x52\x7a\x4a\x5d\x67\xcc\xf0\x8f\x7f\xa0\x35\x6e\x69\x35\x72\x91\xdc\x20\x35\x37\x5f\x30\x34\x23\x55\x87\x75\x5a\xf0\x12\x0b\x27\x29\x1d\x39\x36\x44\xde\x1f\x27\x6a\x6f\x8c\x77\x76\xf8\x0c\x4d\xbc\xe7\xcc\x49\x61\x0e\x28\x50\x17\x78\xe3\xb5\x4e\xfb\x8a\x3a\xdc\x13\x86\xbb\xf0\xee\x95\x59\xeb\x2a\x8f\x2b\x75\xf7\x2a\x46\x3b\xaa\x80\xa6\x90\xf6\x3a\x6c\x70\x67\x9d\x00\x1d\xa0\x47\x85\x4a\xdd\x9f\x15\xa1\x47\xcf\xef\xe5\x42\x00\x94\x36\xa7\xd9\x14\xce\x29\x93\x19\x16\xea\x05\xa3\x38\x6e\x55\x1e\x36\x6c\x33\xf1\x5a\x58\x5f\xf3\xe8\x89\xc2\x9c\x3d\xfb\xb7\x90\x5f\x80\xd1\xdc\x3c\x1a\xe2\x52\x44\xca\x43\xb9\x32\xc8\xb1\xb6\x73\x68\xe9\x90\x8f\x5e\x86\x93\x3c\x87\x28\x79\x47\x7a\x10\x2f\x31\x6e\x01\xe2\xf0\x6b\x00\xe1\xeb\x81\xec\x86\x08\x27\x8f\xcc\x29\x62\xcb\x83\xcd\xba\xea\x9a\xd8\x34\xb2\xc8\xa6\x15\x49\x62\x63\x29\xf0\x5e\x7c\x06\x31\xb6\x0a\xe3\x57\xc0\xd1\x59\x5b\x07\x71\x73\x13\xb8\xd9\x40\xb4\x40\x48\x5d\x5e\x23\x8e\x19\x64\xee\x61\xda\x5e\x98\xbc\xc8\x52\x96\x76\x4f\xb8\x5d\x94\x22\xed\xbf\xa7\x83\x18\xff\xb2\x51\x32\xfb\xc1\x07\xa1\x78\x92\x46\xe1\x83\x53\xad\x9f\x0d\x57\xec\x86\x98\x63\xdf\x86\x40\x1d\x1b\x0e\x0a\xe2\x18\x76\xc1\xf6\xef\x77\x00\x46\xcb\xf0\xbd\xbf\x54\x12\xd7\xb7\xef\x1f\xc0\x3f\x23\x33\x80\x61\x6c\xdf\x7d\x44\x01\xf6\x59\x04\xb8\x90\x74\xb0\xb7\xa1\xe4\x00\xfa\x3a\x45\x3a\xa0\x9b\x64\x93\x45\xeb\xb2\x35\x9f\x35\xa8\x44\x94\x22\x39\xed\xc9\x45\x10\x91\x7f\xd4\x25\x19\x94\xba\xf7\x66\x1d\x04\xa5\x8d\xb2\x7e\xc5\xd4\x06\xad\x19\x4b\x7c\x4d\xea\xc3\x1e\x83\xe3\xca\x37\x49\x6f\xf4\x41\x6f\xd5\x4b\xeb\x57\x87\xbd\x2a\xf7\x0e\xd2\x3e\x07\xec\xce\x8a\x5d\x0d\x21\x0f\x63\x9c\x0a\x3f\x97\x02\x2a\x12\xef\x9c\xce\x71\x6c\x9a\xf8\x15\x0e\x73\xc6\xaf\xd7\x9c\xdd\x24\xe1\xed\x50\xc6\x15\xbc\xda\x3e\xab\x2e\x90\x1b\xe1\xdb\x52\x7b\xa5\x23\x85\x2f\xb7\x78\x61\xec\x9d\xcf\xc6\xb9\x08\xa9\x60\x2b\x1a\x55\x57\x10\xfe\x19\x39\x07\x03\x22\xad\x4b\x9c\x78\xe1\x6a\xca\x49\x25\x5d\x60\xf5\x6d\x86\xcc\xdb\x61\x21\x3f\xe4\x0b\x77\x37\x6d\x8a\x59\x96\xe9\xa9\xe0\x9f\x91\xd2\xcf\xda\xb7\x73\xc6\x57\xee\x15\x36\xbb\x4a\x76\x59\xf4\x2a\xb9\xfe\xf0\x92\xa7\x29\x09\x73\xcc\x39\xde\xec\x54\x84\x2e\x1f\xde\xbd\xa8\xcf\xe6\xda\x47\x1a\x3f\xb6\xaf\x15\xdb\xd7\x27\xd1\xb8\xae\x49\x36\xf1\x3d\x46\x89\x1f\x94\x57\xa3\x84\x29\x65\x7a\x18\xd3\x66\x87\x61\x9e\x11\x89\xec\x5c\x01\x98\x25\x5f\x4c\x35\xd3\xd2\xfe\xe8\xe7\x0a\xc9\x15\x31\x4e\x61\x27\xc9\x82\xb4\xdf\xbe\x34\x38\x35\x2c\x85\x8c\xcc\x34\x36\xf4\x3e\xb3\x50\xec\xd2\x95\x15\xca\xac\xd6\x0f\xad\x13\x43\x39\x5a\x7a\x5b\x21\xd0\x7e\x39\xce\x92\x20\xed\x2f\x53\xce\x1a\xf0\x95\xab\x11\xde\xb0\x86\x4c\x5d\xf5\xd9\x29\xc7\xb7\x3f\x40\x31\xd5\x42\x5a\x47\xb2\xe0\xe9\x80\x53\x5a\x6f\xab\xfe\x33\x84\x81\x21\xfb\x30\x06\x31\x2f\xec\x80\x41\x01\x97\x07\x0f\xd0\x2b\xbe\xc0\xad\x5d\xc4\x94\xd7\x69\x2b\x99\x7b\x4e\x37\xf6\x51\x16\x1e\xea\xd4\x67\x23\x64\x1a\x16\x6a\xf8\x5a\x9e\x4d\x69\x17\xfb\x75\xf5\xe1\xfb\xfa\x04\x69\x3d\xcd\x27\x1f\x82\x31\x4e\x49\x9d\xa3\x33\xac\xf1\xa9\xc3\x56\xab\x7c\x55\x7f\x06\x5c\x09\x07\xa5\x98\x86\x8f\xd6\x15\xb7\x42\x59\x1d\x84\x51\x95\x42\x18\x4c\x3a\x5e\xae\x44\x45\xea\x89\xdd\xdf\x5d\x9b\x81\xfa\x19\xd1\xfe\xdc\x25\xe1\xf3\xc1\x83\x50\x2b\x8f\xaf\xbc\xcd\x08\x9a\x53\x38\x30\x68\x8b\x1a\x1c\xe6\xae\x85\x1e\x86\xe1\x2c\xd0\x6a\x07\xf5\xb6\x9c\x61\x38\xf4\xd9\x35\x21\x74\x10\x86\x4f\x16\x1d\x4c\x65\xf8\xd2\x64\xf0\x8f\x1e\xdd\x01\x51\x97\x67\xba\x65\x08\xbd\xc2\x3b\x94\xac\xbf\xd3\x3c\xa3\x24\xd6\x8f\x80\xc9\x2e\xc5\xfa\x87\x3e\x3b\x5c\xe7\xdb\xf6\xb9\x7b\x96\xeb\x20\xd4\x2d\xb7\x03\xb7\x7d\x5c\x56\xec\x8f\x3f\x25\xc1\x2b\xfb\x46\xea\x32\x7b\x75\x77\x68\x7b\xaa\x7d\x26\xc3\x67\x6b\x13\x09\x11\x95\xf8\x1f\x17\xb7\xe7\x55\x74\x99\x0b\x1d\x45\xf0\xa6\xd9\x0b\xa2\x79\x57\xff\x3c\x6f\xd4\xb3\xf7\x2d\xd6\x3d\xec\xd8\x7e\x57\x5d\x5f\x76\xf0\x2e\xe6\xaf\x4f\x36\x88\x45\x6e\xb1\xe2\x6f\x71\xc0\x69\x58\x3b\x77\xff\x0d\xb1\x63\xa7\x62\xed\xe0\xde\xba\xc1\x9f\x08\xd1\xd1\x57\x08\xfd\x6d\x2f\x74\xc7\xbd\xf8\x3e\xfe\x23\xf0\x7d\xfc\x61\xf8\x06\x46\x3f\x18\x30\x95\xf7\x02\x96\xf0\x1d\x7c\x51\x10\x65\x25\x8a\x9d\x3e\xda\xdf\x21\x70\x14\x6c\x21\xd1\x10\x0c\x67\xf5\x97\x61\x0c\xde\x6a\x40\x1f\x2c\x3e\xf7\x29\x43\x63\x3f\x77\x2d\x7e\x9c\xf6\x0f\x8b\x20\xef\x54\x05\x39\x05\xf0\xb8\x04\x60\xa8\x1c\xb2\xfd\xa4\xd7\x64\xcb\x12\x76\x5b\x7f\x77\x6d\xb6\x28\x65\xfb\xfd\x18\x99\x0f\x00\x0a\xbf\xc4\x76\x18\xb8\x53\xed\xd5\xd3\x3a\x72\xed\x7a\x6f\x41\x90\x27\xa5\xbd\x05\x5e\xe7\xe5\x44\x74\x8d\x14\x3b\x58\xff\x85\x3c\x31\x3a\x47\x9f\x6d\x4b\xe8\xfd\xed\x37\xd4\x93\xcf\x7b\x04\xf9\xbc\xc5\x27\xba\x4b\x66\x0c\xa8\xd0\xde\x0e\x89\xc7\x5d\x10\xe9\x8c\x90\x71\x8f\xbf\xe1\x5d\xc7\x78\xb7\x42\x15\xe1\x92\xce\x69\x05\x29\x33\xf0\xda\x3f\xae\x96\x16\x72\x6c\x8a\xef\x72\xf5\x32\xb7\xca\xa9\x84\x4c\x43\x77\x91\xdf\xd9\xdd\x16\x79\x30\xbb\xf5\x5d\x2d\xb9\x24\x94\x87\x28\x21\xac\x64\x89\x88\xcc\x6b\xd3\x51\xe9\xe4\x0e\x46\x4c\x35\xc0\x36\x00\x72\x64\x1b\xba\xbc\xc7\xd7\x30\xf9\x13\xdf\xa6\x90\x87\x1b\x84\xfa\xa0\xe2\x6f\xcb\xa4\x7b\x76\xb4\x87\x82\x46\x93\xa1\xc2\x0e\x78\x3f\x31\xc3\x3d\x0d\xad\xf1\x1a\xf4\xee\x7b\x3b\xe4\xd2\x2f\x35\x7a\x7d\xe2\xaa\x64\x27\x0f\xe8\x66\x29\x5f\x2e\xa4\xc1\xd6\x6a\x87\x68\x5e\xdc\xc9\x80\xd9\x3f\x4e\xea\x9d\xd4\x3d\x22\xdd\x31\xe4\xeb\x13\x31\x7a\x57\x45\xf7\xab\xc6\xd9\x6c\xd5\x4e\xd6\x5b\x11\x5d\x93\xcd\x9d\x66\x1c\x3a\x65\xcc\x11\xad\x14\x53\xb3\x55\xf2\xfd\x17\xbb\xd9\xbb\xf6\x56\xdf\x08\x8f\xaf\x0d\xc7\xaf\x38\xa8\xc5\xbe\x26\x1b\x85\x9d\x85\x1e\xf3\x61\x04\xc5\x2e\xf8\x35\xd9\x7c\x56\x8a\xc4\xf4\x12\xee\xf4\xf9\xb3\x67\x9c\x75\xeb\xe7\x64\xa3\x3a\x8b\xc3\x18\xee\x1f\xa8\x52\xea\x64\xca\x52\xfc\xc0\x48\xc3\x0f\xb7\x75\xf7\xb9\x81\x67\x3f\xe1\x05\xef\x84\x34\x28\x3e\x4b\xbe\x01\xaf\x05\x14\x0b\xb3\x0f\x72\x99\x10\x77\xee\x80\x33\xcf\x72\xda\x7b\x5d\xe1\x91\xe0\x9f\x22\x86\xab\x00\xea\x60\x28\xf9\xb8\x0f\xd1\xe7\x05\xbf\x5e\xfa\xda\xa7\x7b\x69\xf5\x04\xaf\xf1\x8c\x36\x54\xf6\x3e\x61\x5d\xb1\xf5\xe6\x89\x6f\x56\x7c\x9d\x27\x44\x01\x08\xff\x6a\x4d\xf4\xb9\x9c\x84\x8b\xcb\xe2\x4d\xa2\xca\xa3\xa1\x5f\xf4\x8f\x9f\x41\xbf\x1f\xef\xd6\x59\x2f\x45\x5d\xd4\x14\xe6\xcb\x66\xff\x22\x95\xcc\x27\xad\x9f\x8a\x4f\xe6\xef\x9e\xa7\xef\x23\xdf\xd7\xa3\xed\x73\x31\x98\x45\x78\x45\x38\xdd\xcf\x5f\x06\xb6\x28\xed\xce\x37\x5e\xaa\xed\xc4\x2f\x9e\x55\x52\xb7\x9d\x61\x16\x7f\xa6\x7e\x62\x3e\x31\x03\xff\xa9\x2c\xa2\xf4\xb6\x0f\xe4\x8e\x84\x5e\x77\x65\x0c\x8b\xc9\x47\xe1\x09\x75\x7a\xed\xc7\x0c\xde\x8f\x6a\xd8\x40\x9d\x4f\x9f\x98\x01\xec\x98\x7f\x2a\x07\xd4\xd7\x1f\x2e\x20\x1c\xad\xee\xba\xf8\x0e\x89\x3d\x56\xff\x05\xbe\x26\x02\xb9\xf7\x50\x04\x81\xd4\x48\x6d\x97\xe8\x27\xcd\x05\x1a\xd1\x56\x3f\x8b\x39\x06\xb3\x04\xca\x5b\x4c\x7d\x74\xb3\x9b\x1d\x40\x7b\x81\x2a\x9d\x4a\x56\x7a\x77\x73\xde\x35\x8d\x51\x77\x34\xd8\x69\x64\x9b\xc0\xcb\xe0\xf6\x0c\xea\xaf\xea\xf1\xb3\xcd\x5d\xf9\x8e\xf8\xe2\x85\xe8\x67\x67\xfc\x25\x5f\xc3\x78\xc1\x77\x63\xfd\x80\x5c\x1e\xde\x1d\x79\xb0\xe0\x99\xf8\x5b\x00\x70\x3c\x46\x4f\x1c\xa4\x94\x7c\xfa\xde\x11\x94\xcf\x51\xb3\x84\x67\x27\xd8\x3c\x89\xc5\xa0\xf3\x53\xd0\xe7\x3a\x01\xd9\xfc\x9c\x75\x6d\x8d\x38\x9b\xd1\x16\xe1\x66\xc1\x38\x95\xcb\x95\x83\x28\x19\xc2\x50\x1c\x0a\x0c\x8c\x34\xa8\x23\x19\x22\xef\x3a\xdc\x20\x41\x7f\x4d\xe3\x29\xd9\xd5\x88\x6d\xd1\x1c\x57\x44\xa6\xb7\x66\x4d\x40\xa9\xfc\x16\x8b\x7e\xc5\xd2\x82\x33\x0f\xe0\x8f\xd1\xd7\x47\xc3\x4e\x9d\x0c\xa1\x43\x57\x4d\x06\x6e\x7a\x37\x44\x88\x7c\xde\x8a\x8f\xec\x6c\xef\x17\xb4\x4e\x65\x2a\x89\x65\x37\x9f\x37\xa4\xd6\x37\xd8\x74\xc9\x47\xbb\x3e\xa3\xb6\x14\xb1\xd2\x56\xa4\xb5\x49\xb0\x2f\xca\xa5\x0d\xb4\x18\x89\xa2\xc9\xda\x4f\xba\x48\xc5\x0e\xec\xce\xf3\xb6\x26\xbf\xd8\x37\x40\xd1\x51\xf0\xe0\x8a\x8d\xa5\xea\xd7\x4f\xc4\xa9\x7b\xef\xfd\x10\xfd\xf8\x5e\xaf\x95\xe5\xe4\xdf\x13\xf8\xb7\x4b\xda\x90\x68\x04\xf4\x64\xcf\x65\x48\x56\xb7\x88\x88\xd5\xfd\xdf\xff\x3e\x2e\x99\x83\x7a\xe0\xa3\xf8\xcf\x2f\x03\x9f\x9d\x5f\xaf\xa4\xc7\xc3\x7b\x91\x35\xa2\x23\xcf\xe1\x7a\xbe\x2f\x54\xe9\xff\x08\x61\xe7\x6c\x86\x3f\x86\x88\xfd\xf4\x23\xad\x15\xa1\x7d\x60\x36\x7c\x9e\x26\x4b\x25\x3e\xb6\x25\x0f\x98\x8f\x02\x18\x70\x13\xc4\x38\x82\xca\xb0\xe6\x47\x5d\x59\x8b\xce\xd1\x2d\xd1\x6c\xbf\x60\x50\x58\xc4\xfc\xdc\x60\x25\x48\x5a\x72\x27\x2a\x23\x73\xd7\x37\x6a\xbe\xef\xae\x2c\xc5\xad\xd3\x35\x0b\x7f\xec\x8b\x51\x9f\x38\x8f\x88\xf7\x72\x80\x63\xd5\x5d\xef\x11\x50\x58\xd8\x69\x52\x56\xaf\x48\xad\xe1\x52\x65\xdf\xcb\x24\x53\x66\x10\xcb\x8f\xbf\x47\xec\x84\xc2\x57\x0d\x33\x49\x30\xa2\x7a\xc3\x87\x03\x4f\x42\xe6\x3b\xdc\x85\x13\x3f\x1b\xdf\x75\xc7\xa5\x67\x5d\x74\x66\x04\x47\xd9\xb1\xaf\x52\x07\x57\x11\x8c\x83\x08\xdb\xbb\xbd\x6b\xc2\x57\x9d\xf4\x29\x3d\x9c\x1b\xf9\xa3\x3a\x77\xc2\x5e\x3d\x9e\x53\xb1\x24\x1c\x6d\xc0\x0f\xa7\x77\x30\x58\x2a\xd1\x41\x97\x15\x82\x73\x62\xfa\x67\xed\x29\x8b\x0f\x27\x9f\x96\x15\x09\x54\xaa\x14\x2a\xc8\x19\xd1\x67\x4f\xfc\xd0\xa1\x4b\x06\x70\xd7\x2d\x60\x53\x91\x46\x57\xb2\x06\x07\xcb\x2d\x5e\x43\xc5\xc0\xd9\x46\xfd\x03\x25\xab\x6a\xd6\x7e\x11\xf1\x9e\x2d\x5f\xc5\xbb\xd6\x05\xf8\x4c\x5d\xbc\xc6\x16\xc5\xc6\xf2\x0b\x81\x6e\x97\x1b\x44\xa3\x17\xb4\x34\xc7\xc5\xdf\x65\xb7\x9e\x2e\x68\x75\xed\xa9\x0c\xcc\xa2\x51\x7e\x08\x99\x3a\x99\x43\x50\x37\x7c\xd9\xad\xd0\x11\xe2\xe4\x86\x70\x49\x67\x8d\xb9\x00\xfd\x44\x9f\x0e\xa9\x02\xe9\xbb\x59\x7e\xf1\x40\xfe\x97\x0d\x8a\x53\xc5\x37\x85\x2b\x2c\x8a\x46\x6a\xb1\xe9\x4f\xde\xbd\xec\x88\x28\x23\xbc\xb3\x41\x25\x59\xad\xed\x22\xfd\x48\xe3\x77\x43\xed\x97\xee\xf7\x00\xc3\x52\xcb\xf0\x67\x74\x04\xa0\x93\xc4\x1c\x74\x84\x68\x14\x22\xca\x99\x1f\x40\xa5\x9c\x7f\x92\x28\x1b\x95\x76\xed\x86\x75\x1b\xfd\xe5\x1c\xca\x4d\x86\x8b\x2e\x13\xe9\xcd\x22\x05\x49\xe9\xff\xbc\x56\x7a\x2f\x43\x6b\xcc\x25\xad\xe8\xda\xdd\x67\xd3\xe2\xcd\x6c\x2c\x05\xd4\x70\x13\xe5\x91\x9b\x3a\xdd\x1b\x8b\xc0\xe5\x08\xc3\xc2\x89\x06\x59\x9d\xbc\xec\x99\x79\xe9\x7e\x1f\x1f\xa2\xff\x1b\x0b\x25\x8d\xf8\xfb\x4c\xe7\xd8\xe3\x20\xf5\xc3\x4f\xa3\x33\x55\xbf\x01\x97\x24\xdf\xee\x93\xac\x15\x7b\xc7\xfc\x13\x6f\xaa\x0b\x62\x60\xd9\x31\x1e\x14\x17\x48\xb4\x6c\xb3\x46\xd8\xaf\x8f\xb6\xc5\xbc\xba\x98\x66\xee\x44\xae\x8b\xf8\xfa\x6a\xea\xd6\x48\x19\xe9\xc9\x41\xdc\xdb\xe4\x4e\xf9\x05\xca\x28\xe5\xca\x00\x3e\x27\x1b\x1f\x63\x9c\xfa\x2f\x33\x2f\xdf\x49\x92\x57\xb8\x8d\x2f\x95\xbd\x7e\x61\xb9\xae\x95\xbb\xb3\xa7\x39\x52\x55\xff\x2d\x77\x84\x03\xa6\x3c\x7d\xfe\x2c\x18\xec\x0e\x4c\xa9\xec\xdd\x10\xdd\x7f\x0f\xa6\x4c\xf3\xf7\xf6\x67\xca\x70\xd1\x3c\x53\xa6\x8b\xb3\x85\x37\xeb\xeb\xd2\xa5\x6a\xef\x5f\xc9\xf9\xd1\xf6\x30\x9c\x98\xae\x4d\x81\x48\x28\xad\x47\xa6\x20\x89\x38\xe3\xcc\xdf\xc1\x6e\x88\xcd\x3d\x36\xda\x92\x2f\x53\x06\xce\x85\x7e\x7b\x5e\x49\x30\xe8\xe3\x3c\xf9\xe3\x43\x64\xd2\x60\xca\x99\xd6\x25\x85\x6c\x08\x5d\xdd\x5e\x87\xfd\xf4\xd5\x71\x48\x70\xb1\xd5\xdc\x2a\xdc\x0e\x20\x3e\x0d\x37\x5c\x45\xd6\xba\x86\x95\x29\x90\x6b\x5e\xc9\x9c\x11\xd8\x30\x4a\xf1\x79\xab\x31\x7f\x3b\x41\x4b\x76\xab\xce\x5f\xa8\x12\x8e\x05\xc2\x75\x4d\x6a\x9d\x5e\xa7\x76\x14\x6e\xbd\x76\xb4\x5e\x70\x5c\x13\x83\x8d\xa9\x71\x26\xe0\x66\x8e\x79\x0c\x6a\x46\x90\x58\x93\x8a\xce\x29\xa9\x91\x20\x6b\xcc\x75\xc1\x2c\x50\x04\xc8\x2f\x54\x40\x42\xa5\x7e\xe1\x5b\xe4\xae\x13\x43\xe5\x42\x26\xd1\x21\xca\xbe\xec\xa1\x79\xd1\xf7\x96\x75\x2e\xba\xe0\xb2\x56\x26\x0a\x15\xac\xd6\x55\x18\xf6\x3a\x0b\x2f\xac\x00\x77\x35\xb7\x78\x23\x8a\xa5\x61\xd7\x4d\x27\xcc\x91\x5e\x64\xae\x72\x70\xc6\xda\xc9\x7d\xfc\x55\xae\x59\x89\xb0\x30\xfd\x42\xf4\xb3\x4a\x73\x7d\x37\xda\xfb\xbc\x4b\xfd\xe4\x55\xed\x8b\x14\x3d\x2e\x8f\x31\x46\xff\xf8\x07\x9a\xe3\xc6\x54\x31\x09\xe8\xfb\x8c\x24\xa5\x0a\x7b\xee\x39\x37\x64\x2e\xcd\x3e\xae\x89\x90\x9c\x6d\x82\xf4\x82\x6f\xc2\x96\x98\xc7\x37\xe4\x6f\x09\x27\x08\x37\x0d\xab\xb0\xd4\x45\xf0\x31\xaa\x49\x45\x94\xb5\xd6\xd0\x5f\xdd\xfd\x7a\xd2\x4a\x7a\xe3\xcf\x1c\xe8\x0b\xd9\x0c\xae\x82\xb7\x8f\x82\x2a\xc2\x02\x8a\x04\x1e\x82\xb1\x08\x4d\x0d\xbb\x10\x01\xae\x4d\x3b\x87\xc0\x47\x66\xd0\xe2\xec\x56\xf5\xd7\x37\x38\xdd\x93\x3b\xe1\x85\x7f\x7b\x9e\x41\xf5\x00\xda\xce\xcd\xd7\x6a\x7b\x39\x70\x82\xf9\x2b\x6c\xe6\xb9\x9b\xa6\xab\x83\x4a\xd6\x01\x40\xd7\x09\xaa\xe6\x1b\x49\x61\x53\x01\x22\x4a\xdb\xcc\x5b\x37\x2b\x65\x72\x04\x64\xb1\x95\xf3\x8c\xc7\x54\x97\x63\x44\xb8\xdd\xac\x18\x27\x7d\x3b\x3c\xba\x6e\x6e\x4b\x88\xee\xc3\x71\xba\x47\xc6\x73\xea\x88\xf5\xb0\x4b\x57\xea\x91\x76\x44\xdb\x72\x02\x86\xf5\x68\x4b\xa5\xbb\x95\x1f\xdf\x82\xcb\xab\x65\x27\x09\xb0\xc3\x4d\xd2\x82\xfe\x43\x6d\x7d\xe1\xfe\x62\xab\x82\xc7\x51\x7b\xdf\xc2\x76\x43\x97\xc6\x2d\xa1\xc3\xf6\xdb\x4a\x8f\xdf\xad\x30\xf8\xde\x65\xc1\x8b\x45\xc1\x07\xdd\xb6\xbb\x54\xcf\xee\x4d\x10\x2e\xbd\x8c\x90\xae\x6b\xa1\x30\x76\x5e\x14\x7b\x97\x1a\xd8\xe9\x45\xcc\x92\x56\x80\x8e\x8c\x26\x31\xca\xb8\xeb\x43\xf2\xad\x3f\xc6\xc3\x12\x3b\x81\xdf\xef\xcd\x89\x61\x90\x05\x3e\x2f\x7d\xbb\x17\xd8\xe1\x6d\x31\xf4\x6b\x9e\x0d\x83\x91\x6a\xc2\xe0\x28\xb3\x75\x00\x9d\x80\x0e\xf5\x36\xab\xcf\xe9\x3c\x3b\xf5\xc5\x23\x53\x58\x76\x0d\xcf\x78\x55\x2c\x28\x04\x04\xda\xb2\x06\x96\xab\x3a\x47\xb9\xfa\x13\x9b\x02\xb5\x4b\x02\x1c\x64\x17\x4e\xe6\x27\x03\x05\xaf\xb3\xc6\x57\x74\x45\x84\xc4\xab\xb5\x15\x49\xa3\xac\x18\xe4\x54\xda\x36\xe3\x2f\xd3\x1d\xe4\xc0\x05\x75\x74\x12\x69\x2e\xf0\x0d\x19\xf5\xcd\x7b\x82\x24\xdb\xaa\xa3\x0d\x24\xce\x9c\x0c\x3d\x72\xd1\xdf\x6d\xfb\x0d\xe6\xa8\x2b\x68\xdf\x97\x1a\xc7\x0b\x2c\x97\xe8\xa8\x80\xf2\xb1\xb3\x2d\x5c\xbf\xa5\xad\x4c\xbc\xad\xaf\x2b\x61\x1c\xf7\xb7\xc6\xcd\xb6\xee\xce\xf2\x88\x78\x2d\x79\xeb\xe9\xbd\x5e\xdf\xc3\xf8\xb6\xcc\xef\xe8\x08\xbd\x4f\xe5\x57\x71\x09\x23\x70\x7a\xdd\xfa\x90\x4c\x57\xac\x08\xef\xc9\x81\xc9\x41\x34\x86\x62\x00\x32\xa5\xf7\x78\x1f\x70\x8e\x96\x11\xc8\xd2\x52\x8c\x4b\xfe\x7f\x8c\xd6\x9c\xde\xa8\xff\x05\x21\xf7\x62\x86\x8d\xab\x05\xa7\x5f\x1f\x57\x5a\x26\x3c\x5e\x08\xc5\xad\xb1\x8c\x6e\x3c\xbd\x6a\xd1\x0b\x4c\xdb\x96\x68\x7f\xee\x15\x11\xb2\x25\xf0\xb6\x09\x49\x32\x17\x84\x29\x50\x10\xbd\x33\x61\xde\x03\x34\x13\x9f\x28\xad\x70\x69\x83\xd6\x4b\xc2\x49\xf8\x92\x0b\x3a\xd6\x0a\x2f\x6c\x38\x78\x19\x41\x23\x39\x63\xc6\x27\x8a\xe3\xf1\xfc\x83\x2d\x6e\xc2\x94\x08\xd4\xd0\xd6\x14\x71\x40\x72\xc9\x04\x09\x3b\x58\xb4\xf0\xca\xe1\x14\x61\xa0\x9f\x34\x6b\x45\xa7\xeb\xe4\x61\x69\x52\x34\x59\xab\x0d\x43\xc6\x95\x4e\x5d\x77\x30\x5b\xf3\xde\x8b\x29\x67\x2e\x20\x99\x18\x83\xab\x38\xb8\x97\xb7\x11\x92\xac\x50\xb5\xec\xda\xeb\x70\x20\x50\x88\x31\x5c\xd2\x6f\x36\x26\x8e\x5c\xdb\xf7\x0e\x35\x25\xad\x07\x0a\x37\x00\x8e\x75\x52\xd9\xbf\xd4\x7c\xe5\x8a\x88\xaf\x70\x4b\xd7\x46\x75\x9e\x46\xdb\x28\x2c\xaa\xd6\x9f\x08\x12\xd2\xce\x31\x26\x15\xa2\x23\x43\x49\x55\x85\x5f\xc2\x74\xb2\xfd\xb6\x40\x90\x7f\x32\x30\xe6\xd7\xa3\xf2\x84\x0a\x92\x78\x30\xb3\x6d\xcf\xad\xf3\xae\x0a\x9c\x2f\x28\x4a\x1d\xdd\xbe\x81\xd4\x32\xbc\xab\x3e\x70\x05\xb2\xc4\xa5\xc2\x97\x1f\x48\xf0\x74\x88\xaf\x47\x19\xd6\x05\x32\xf7\x25\x86\xed\x49\x61\x97\x54\x73\x67\x12\x5b\xc7\xdc\xdd\x69\x1c\x64\x06\x45\x7f\x7e\x20\x5d\x3d\xd8\xaf\x47\x39\x92\x05\x92\xf6\xa6\x5a\xc5\x83\x97\x4b\x5f\x29\xcd\xbf\xbf\x90\xf0\x4e\xe5\xb3\xa3\xd6\x10\x83\xdb\xe7\xca\xea\x4e\x2f\xd9\xa1\xbb\x3d\x52\x92\xd5\xd5\xde\xf2\x58\x49\x5e\x87\x7b\x8f\x9b\xa3\xe8\xa0\xf7\x79\x95\xf2\x0d\xd1\xbd\x87\x49\x2e\x6b\xf5\x8e\xf7\xa1\xc5\x3e\xc2\xcf\xbf\xc3\x6b\x27\x3d\x89\xe7\x39\xab\x59\xe7\xf9\xef\xf7\xfe\x7f\x00\x00\x00\xff\xff\x89\xf2\xf0\x46\x6a\xe9\x00\x00" +var _epochsFlowepochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x7b\x73\x1b\x37\xf2\xe0\xff\xfe\x14\x88\xab\x2e\x21\x37\x14\x6d\xc7\x57\xbf\xda\xd2\x59\xd9\x53\x24\xd9\x51\x39\xb6\x65\x4b\xc9\x5e\x55\x2a\x15\x83\x33\x20\x89\xd5\x70\x40\x03\x18\x29\x8c\x93\xef\x7e\x85\xc6\xfb\x31\x43\x52\xb6\x93\xcd\xd6\xf2\x1f\x5b\x24\xd0\x68\x34\x1a\x8d\x7e\xa1\x41\x57\x6b\xc6\x25\x7a\xda\xb5\x0b\x3a\x6b\xc8\x15\xbb\x26\x2d\x9a\x73\xb6\x42\xf7\xa3\xef\xee\xdf\xb3\x2d\x1b\x76\x1b\xb5\xb2\x7f\x47\x2d\xce\x4f\xaf\xf0\xac\x21\x97\x12\x5f\xd3\x76\x11\x34\x8d\x7f\x88\xfa\x9c\x34\x9d\x90\x84\xbf\x3e\x09\x9a\xbb\xef\xa2\x96\xa7\xcf\x9f\x05\x6d\x4e\x9f\x3f\x8b\x7e\x7d\x4a\x88\x08\x7e\x56\x7f\xde\xbf\x77\xef\xc1\x03\x74\xb5\x24\x48\xb2\xf5\x41\x43\x6e\x48\x83\xc4\x0a\x73\x89\x2a\xd6\x4a\x8e\x2b\x89\x56\xb8\xc5\x0b\x85\xab\x5c\x12\xd4\xd0\x39\xa9\x36\x55\x43\x10\x9b\x23\xb2\x66\xd5\x52\x4c\xd1\x79\x0b\xe0\x27\x0a\x94\xfe\x0e\x61\x4e\xa0\xbd\x58\xe1\xa6\x21\x42\xa2\xae\xa5\x52\xf5\x91\x74\x45\xd0\xed\x92\x98\xdf\x69\x4d\x5a\x49\xe5\x06\x49\x35\x79\x34\x82\x3e\x44\xb5\x54\xc0\x5a\x22\x6f\x19\xbf\x46\x6c\x4d\x38\x96\x8c\x8b\x31\xa2\x02\x09\x89\x25\xad\xa6\xe8\x95\xfd\x16\xad\xf0\x06\xb1\xb6\xd9\xa0\x86\xe0\x1b\x82\x18\x47\xff\x62\xb4\x85\x01\x0c\x08\x05\x0d\x4b\x8d\x1d\x9a\xb1\xae\xad\x31\xa7\x44\xa4\x40\x66\x04\x91\x7f\x91\x4a\x92\x1a\xd5\x1d\x57\x93\xc6\xad\xe9\x34\x67\x1c\xdd\x60\x4e\x59\x27\x14\xb0\x15\x15\x35\x59\x11\xdc\xb2\x8e\x8b\x09\x9a\x75\x52\x0d\xb7\x41\x9c\xac\x30\x6d\x91\x19\x3d\x99\x5e\xd7\x4a\xda\xc0\x0f\x1a\x26\x69\x6b\x31\xbd\xf7\xe0\x81\x02\x78\xe6\x09\x27\xd6\x0d\x95\x88\xb6\x92\xa1\xc7\x68\xbd\xc4\x82\x88\x43\xd5\xe4\xb7\xa3\x3b\x7f\xa0\x3b\x3a\xbb\x78\x75\xf2\x2d\x7a\x89\xb6\x7f\x7e\x73\x8d\xbf\x7c\x84\xa6\xd3\x29\xf4\x3f\x50\x1f\x64\x59\x17\xfe\xfa\xed\x00\x5d\x12\xd9\xad\x91\xfa\xdf\x09\x5b\xad\xa8\x54\xc4\x3b\xf8\xed\x37\xd7\xeb\x83\x90\x56\x10\x1e\x8d\x11\xba\xbc\x3a\x7e\x7e\xfe\xf2\x19\xba\xf8\xf6\xf8\xf2\x4c\x7d\xf9\x92\xd5\xc4\xf3\x05\x90\x0d\x48\x2c\x19\x12\xdd\x6c\x45\xa5\x62\x13\xc0\x93\x93\x77\x1d\x11\x52\xc0\x0a\x2a\xda\xbf\x3c\xfb\x7f\x57\x66\x01\xf4\x22\x2b\x78\x72\x49\x85\xa6\xf5\x14\x1d\x4b\xbd\x46\x6d\x0d\x1c\xeb\x7e\x99\xc0\xd7\xb0\x50\xe9\x26\xe1\x44\xb0\xe6\x86\x08\xd5\x42\x81\x63\x9d\x14\x12\xb7\xb5\x42\x20\x43\x04\xb7\x35\xaa\x89\x24\x7c\x45\x5b\xdd\x25\x65\x14\x8b\x6a\x4b\x7e\x91\x6e\x57\x4d\x61\x9f\x16\x87\x27\x2b\x2a\x85\xc7\x4e\x2f\x89\x20\xfc\x86\x56\x04\x91\x1b\xd2\xea\xb6\x98\xb6\x6e\xba\x83\x63\xea\x01\x27\xe8\x76\x49\xab\x25\xa2\x2d\x95\x14\x4b\x83\xaa\xe4\xb8\x15\x54\x52\xd6\x2a\x62\x9b\xf9\x6a\xac\xf4\xb8\x17\x40\x45\xb3\x78\x5f\x8d\xd1\xe5\xd9\xd5\xf7\x17\x7e\xe5\xfe\xb9\x24\x6d\x40\x54\x34\x23\x0b\xda\x6a\xd0\x6b\xcc\x25\xad\xe8\x1a\xb7\x52\x20\xb7\x81\x2d\x3a\x7a\x6f\x10\x39\x45\xa7\x7a\x6f\x2a\x20\x0a\xa2\x5f\x1c\x91\xc0\x58\x73\xb2\x56\xbd\xf2\xb9\x81\xd4\xd2\x6d\xbb\x06\xf3\x09\xaa\x58\xd3\x90\x4a\x4d\x0b\x24\x0f\xab\x89\xb0\x9c\x74\xc3\xd4\xdc\x0d\x0c\xca\x51\xa5\x65\xef\x17\x02\x71\xc6\x24\x7a\xd7\x31\xde\xad\x50\x45\xb8\xa4\x73\x5a\x61\x49\x60\x85\x2b\xd6\x0a\xd2\x0a\x2d\x2e\x34\x3c\xde\xe9\x39\xd5\x54\x48\x4e\x67\x9d\xda\x2a\xd7\x64\x83\x16\xa4\x55\x8c\xac\x48\xba\xe6\x4c\xb2\x8a\x35\x68\x74\xfa\xfc\xd9\x18\xd8\x99\x48\xd4\xad\xa1\x1f\xc7\x6d\xcd\x56\x0a\xde\x8c\xe0\x8a\xb5\x53\x4b\x4c\x98\x38\xcc\x15\xa0\xe8\xfd\x50\xb1\xd5\xba\x21\x72\x88\x6d\x1d\xdf\xb8\x35\xd4\x7b\xb8\x97\x77\x00\x94\xa2\xda\x1c\x57\x52\xe8\xed\xa1\x25\xf6\x9a\xb3\x8a\x08\x61\x78\x46\xc1\xdb\xc2\x36\x06\x23\x33\x60\xc4\x34\x8f\xc7\xe8\xe4\xd5\x8b\x17\xe7\x57\x57\x67\xa7\xdb\x18\x67\x12\x8a\x79\x75\x3c\xcc\xbb\xa6\xd9\xd8\x95\xaf\x61\xb0\x6c\xe8\x64\x5f\x1d\xa3\x39\xa6\x4d\xc7\x41\x7c\x90\x56\x12\x1e\x8f\x33\x67\x3c\x9c\x00\xd0\x81\x25\x0c\xa5\x67\x5c\xc3\xfa\xab\x19\x63\xb9\x0b\x4b\xab\x71\x35\x92\x76\xb5\x1c\x41\xbb\x35\xf0\xb6\x22\x6b\xdd\x71\xe2\x36\xa3\x40\x18\x55\x9c\x4a\x5a\xe1\xc6\xe1\xad\x18\xee\x96\x36\x0d\xaa\x70\x27\x34\x8c\x6a\xa9\x0e\x22\xc9\xd0\x12\x37\x72\x7a\xef\x1e\xae\xd4\xfa\x8c\x70\xd3\x8c\x3d\x03\xa8\x73\x5b\xaf\xc3\xfb\x7b\xf7\x94\xe0\x0f\x5b\x91\xb6\x5b\xe9\x55\x82\xd5\x39\x44\xdf\x9f\xb7\xf2\xef\xe8\xfd\x3d\x7b\x4a\x44\x20\x15\xa9\x8c\x98\x3e\xfe\xfe\xe4\xea\xfc\xd5\xcb\xfe\x76\x70\xb6\x80\x5c\xd8\xd2\x46\xb3\x01\x34\xfa\xbd\x07\x41\x75\x12\xbc\x61\xcd\x2e\xe8\xbd\x7c\xf5\xf2\xac\xff\xd7\x13\x2d\x01\x18\x1f\x6a\x62\xf7\x74\x3f\xda\xbf\x90\xaa\x03\x31\xd2\xdb\xe4\x07\xc2\xb5\xa0\x18\x6c\x75\x0c\x5f\x84\x53\x7f\x60\x54\x35\x23\x6c\xa5\xda\xca\xf1\x46\xa5\x02\xb6\xb4\x92\x2b\xb7\x46\x32\xf8\xb5\xf6\x0c\x2c\x1c\x38\xc9\x10\x46\x2d\xb9\x35\xec\x68\x18\xd4\x9e\x58\xb8\xab\xb4\x50\xd2\x9b\x33\x23\x3f\x8c\xa9\x4f\x1c\x40\x66\x74\xcf\x4d\xc7\xe2\x5a\xb1\x0e\xf6\x93\x95\xc0\x55\xc7\xb9\xea\xa5\xc7\x83\x6d\x42\x85\xde\xca\x70\x36\xd9\xfe\xa6\x9f\x5e\xd4\xff\xf9\xdf\x93\x1c\xf2\x9c\x72\x21\xd1\x0d\x25\xb7\x68\x44\x5b\x25\x93\xe9\x0d\x19\x5b\x91\x14\x8d\x33\x75\x9d\xa1\xd3\x0f\x94\xdc\x0e\x00\x6e\xf0\xae\x70\xbf\x10\x29\xa9\xfc\x48\xe6\x87\x63\xfd\xfd\x59\x5b\x7f\xb4\x51\xc3\xd9\xb4\xb8\x19\x82\xcb\x24\x6e\xd0\xd3\xef\x5e\xfd\x13\xd0\x21\x35\x9a\x6d\x10\x6e\x1a\x73\x1c\x69\x3d\xa4\x21\x0b\xad\x43\x15\x97\xc8\x0f\x26\x15\xb0\x4b\x00\x73\x88\xbe\x7f\x4a\x7f\xe9\x19\x4e\x74\xeb\x75\xb3\x51\x98\xab\x91\x60\xf0\x22\xe4\xa8\xeb\xb9\x9a\x72\x6d\x8e\x0a\x4e\x6e\x31\xaf\x8d\x10\x05\xa9\x36\x53\x82\x94\xd6\x0e\xd0\x9a\x93\x1b\xa5\x89\x27\x90\x00\x45\x25\xd2\x2e\x01\x87\x3e\x34\xc1\xda\x51\xa8\xf6\x0f\xc4\x3a\x89\x70\xa2\x06\x0e\x53\xe6\x8d\x86\xe5\xc7\x54\xbf\x8c\x8b\x1b\xb7\xa0\x9d\xa5\x1b\xf7\xb6\xff\xc0\x84\xee\x0e\xac\x51\x59\xcf\xdd\x21\xad\x49\x08\x9c\x41\x7f\x25\x75\x9f\x96\xd7\xad\x2b\xb6\x52\x8c\x1b\xcc\xa5\x6f\x6f\xab\x01\x77\xd8\xda\x09\x48\xf4\xa2\x13\x52\x11\x94\xb5\x04\x2d\x38\xc1\xfa\x58\xc5\x20\x62\x22\x60\x83\x32\x62\xba\xa3\x48\x38\xdf\x65\x9e\xe8\x96\xca\xa5\xdb\x01\x88\xb6\x73\xc6\x57\x38\xde\xb8\x21\x3b\x1e\x46\xdf\xaa\x3e\xe7\xa7\x13\xb7\xe7\xaf\xc9\x66\x62\x35\x8f\xd2\xdf\xb8\xae\x39\xa8\x44\x9c\x35\x64\x12\x81\xb2\x20\x02\x0c\x26\xe8\x96\xd0\xc5\x52\x4e\x60\x5f\xae\x18\x27\x1e\x27\x18\xb9\x9d\xb3\x43\xf4\x63\xee\x2b\x98\xbe\x34\xbf\xfe\xb4\xb7\x94\x2c\x71\xc1\x47\x11\x93\xfd\x80\xb7\x48\x2c\xb5\xfc\x5a\xbd\x46\x58\x08\xba\x68\x57\x8a\x13\xfa\x58\xec\x0c\x2b\x2b\xba\x21\xd0\xc8\x1c\x5e\x0d\x15\x32\x82\xc9\xc9\x9a\x13\x41\x94\x02\xa6\x58\xd1\x81\xd7\x3a\xba\xde\x33\x8a\x25\x40\x35\x53\x6c\x71\x7e\x2a\xcc\xe0\x46\x7f\x5c\xe2\x18\xa2\x01\x31\xd1\xec\xa4\x8d\x02\xbd\x78\x5a\xa8\x82\xc1\x10\xf0\xad\xd1\x2b\x8c\xcf\x46\x98\x55\x74\x2e\x9c\xa9\xf9\x5f\x69\xfd\x04\xeb\x78\x05\xde\x16\xad\xfc\xb7\x44\x08\x6d\x15\x28\xdc\xd4\x74\x09\xae\x09\x47\x82\x18\xeb\x05\xe1\x66\xc1\x38\x95\xcb\x15\x60\x17\x01\x1c\xda\xfc\xea\xa3\x87\xb8\x84\x21\x0f\xd1\xa5\x54\x56\x56\x01\xa7\x9a\xe0\xba\x01\xd3\x95\xcd\x11\x51\x4b\xa0\x15\x65\xb3\x00\xa7\xcf\x9f\x79\x33\x46\x32\x25\x02\xac\x72\x5b\xdb\x36\x16\x83\x08\x76\x60\xbb\x1a\xb1\x76\xea\x46\xd2\x7e\x11\x52\xd1\x39\x35\x50\x08\x5f\x01\x02\xd8\x5b\x5a\x9a\x1d\xdb\x6e\x35\x23\x3c\xde\xd0\x60\x3b\x60\x8d\x9a\xd7\xc8\x11\x9b\x29\x31\xac\xc0\x07\x12\x53\xad\xa0\x20\x58\xe9\xe5\xb3\x86\x55\xd7\x7a\x95\x01\xb4\x11\x63\x11\x68\x2b\xd2\xd0\x82\xde\x90\xd6\x11\x67\x82\xa8\x44\x15\x6e\x91\xc0\x73\xd2\x6c\x7a\x8c\x90\x50\xb5\x52\x9f\xd3\xe7\xcf\x40\xd7\x7e\xf4\x34\xdf\x28\x69\x9b\xaf\x76\x68\xf3\xb8\xd0\x26\x3f\x0c\x31\x5f\x10\x89\xea\xce\xd8\xa0\x65\x36\x99\x28\xaa\x0b\x52\xb1\xb6\xf6\xbc\xad\xbb\x9e\x9a\x9e\x39\x1e\xc9\x10\xea\x2c\x05\x0f\x60\xdf\x10\xd1\x12\xeb\xc1\x0e\xd6\x9c\x54\x54\x28\xc4\xbe\x6f\xe9\x2f\xd0\x3f\x19\xff\xac\xad\xaf\xe8\x8a\xd8\xe1\x7b\x8f\xde\xa2\x71\x3b\x7c\xf4\x82\xbb\xd4\x1d\xbe\x0e\xa4\x77\x75\xf9\x03\x38\x00\x04\xce\x48\x80\xa6\x04\x4b\x60\x99\xf7\x4c\xdc\xc1\x5d\x62\xa5\x0c\x93\xd6\xef\x98\xa1\x93\xd9\xcc\xe7\x03\xce\x66\xf2\xae\xc3\x8d\x65\x48\xdb\x89\xe6\x47\xb4\x53\xb8\x82\x3d\x0a\x88\xec\x7a\x3c\x5f\x81\x5e\x27\xba\x46\xda\x23\xe2\xf5\x09\xc2\x8b\x05\x57\xda\xa7\x71\x7c\xa8\x39\x26\x32\xdd\x0a\xe8\x08\x56\x28\xac\x03\x81\x8b\x38\xa9\x08\xbd\x21\x5a\x4d\xc4\x81\x77\xc7\x0a\xec\x08\xca\xeb\x13\x04\x2e\x3a\xad\xf8\x16\x9c\x38\xa0\x15\x82\x78\xb3\x47\x86\xf1\xd3\x10\x11\xcc\xda\x0a\xf1\x5e\xa9\xfe\xfa\xa4\x24\xd7\x35\x2d\xd4\x8a\xac\xbb\x59\x43\x2b\xa5\x3c\x08\xcf\x6d\x46\x86\x6a\x8f\x0a\x69\x2b\x56\x2b\xc1\x24\x94\xfe\x0e\xea\x5d\xc3\x6e\x0f\x16\x2c\x3e\x94\xf8\x66\x2d\x19\x6a\xe8\x8c\x63\xbe\x01\xb7\x48\x8b\x96\xe4\x97\x03\xd3\x3d\x16\x88\xcf\x38\x53\x62\xd6\x8d\xad\xb8\x57\x3a\x7d\xc1\x90\x7f\x82\xe6\xac\x69\xd8\xad\x36\x1c\xc0\x67\xd8\xd6\xf4\x86\xd6\x8a\x69\x14\xc2\x0e\x64\x7d\xbd\xb8\xe8\x66\xcf\xc9\x46\x91\x41\x1f\x1c\x3f\xf5\x6b\xc0\x6f\x48\xc5\x6e\xe0\xd0\x1a\xda\x88\x58\x2d\xa8\x6a\xa7\x3b\xc1\xa6\xc4\xfa\x8c\xa3\xd6\x37\x27\xed\x09\xed\x5c\x40\xde\x27\xe6\x9c\x42\x0e\x83\x05\x01\x27\x8c\x32\x7a\x5b\x74\xf6\xf4\x05\x84\x12\x88\xb1\x39\xfa\x87\xea\x84\x1e\x45\x35\xe0\xb4\x26\x05\x43\x56\x31\xa1\x01\x11\x0d\xad\x8e\x0e\x65\x4b\x38\x14\xc4\x5a\x2b\x87\x53\x74\xb5\x54\xb3\x48\x29\x60\x16\x5d\x53\xdc\x9d\xa2\x91\x17\x49\x32\xd4\xad\x6b\x83\x38\xe5\xa8\x61\x15\x6e\x7c\x5b\x3d\x27\xab\x99\x80\x71\x6f\x30\x73\x48\x18\xe7\x37\x96\x78\x50\xf1\xb7\xcb\x34\xda\x2a\x5e\x4c\xcb\xcd\xd9\x9f\xa6\xb1\x83\x0a\x0a\xee\xf6\xff\x3c\x2d\xbd\x87\xba\x1f\xac\xa4\xf7\xc2\xfd\x20\x1d\x3d\x86\xfa\x07\xaa\xe8\xb6\x5b\x26\x9c\x8f\x1d\x92\x4a\x3a\x59\xf1\xf4\x5f\x6d\xfb\xbf\xda\xf6\x7f\xb5\xed\x0f\xd7\xb6\x07\xa4\xc3\xeb\x13\x81\xd6\x18\x4e\x33\xc3\x89\x7d\xc7\x2c\xc4\x36\x05\x01\xc6\xb3\x5a\x16\x78\xe1\x0e\xd8\xfc\x60\x86\xdb\x3a\x1a\xa3\x13\x36\x14\x25\xf0\x8a\xf8\x18\x89\xd2\x90\x6c\xdc\x5e\x9f\xb4\x05\x45\xed\x07\x26\xc9\x29\x96\xb8\x5f\x5f\xb3\x2d\x4a\x12\x02\x78\x3a\xd0\xd8\x76\x9c\x5e\x04\xe7\x44\xab\x0e\xcd\xc6\xc6\x2c\xd5\xac\x39\x39\x00\x3d\xc3\xa9\x80\x20\xba\x45\x07\x47\xf3\xbc\x6b\xd4\xc8\x53\xf4\x92\x59\xc5\x14\x02\x54\x74\xb5\x6e\xa8\x0d\x37\x45\x63\x44\x52\x18\xbd\xf8\xfe\xf2\x0a\x2d\xf1\x0d\x89\xf6\x6f\x65\x8c\x18\xe2\xfc\xf0\xda\x59\x58\x79\x93\x20\x41\x22\x1a\x42\x91\xc2\x81\xf8\x24\xda\xe5\xa0\x7a\x99\x79\x58\x4f\xec\x49\x61\xd8\xba\x42\x2b\x22\xb1\xd2\x72\x10\x9e\x81\x43\x37\x34\x09\x62\xbb\xeb\xb8\x69\xd0\x92\x0a\xc9\x38\xcc\x5e\xab\x1e\xae\x3b\x24\x9d\x30\xae\xac\x3d\xc2\x57\xb8\x85\xc5\xcb\x34\x27\x21\x79\x57\x19\xd5\xe9\x85\xed\xfa\x3e\x67\x21\x4d\xe4\x39\x0d\xf4\xa7\xd8\x8d\x1d\x02\x6d\x88\x4c\xd5\xa8\xc2\xb1\xa5\x8e\x27\xcd\x3d\xcc\x59\x29\x76\x8b\xe8\xb9\x08\xe7\x35\x2e\x8d\xa0\x00\xd8\x23\x68\x50\x3b\xb1\xf9\x10\xc3\x08\x0b\x89\x79\xa4\x99\x0c\x29\x26\xbb\x81\x24\x71\x00\x65\x2b\xc0\x2c\x88\x35\x84\xac\x6a\x77\xb6\x6d\x80\x42\xc8\x40\xed\x5b\x17\x2e\xd8\xbe\x96\x37\x98\x17\x63\x05\x25\xeb\x50\x35\x40\x78\xa5\x56\x3e\x1d\x4c\x32\xad\x06\x04\xbb\x05\x74\x22\x75\x92\x52\x29\x82\x90\x4e\x2f\x16\x1a\xfe\xb1\x06\x5f\x56\x57\x0d\x8e\xdf\x70\x82\xaf\x6b\x76\xdb\xfe\x94\x60\xc9\x71\x75\x2d\x10\x9d\x3b\x8a\x80\x78\x01\xdf\x45\x10\xaa\x19\x5c\x57\x8f\x89\xb8\xc0\xb4\x3e\x44\xdf\x30\xd6\xe4\xc4\x60\x7c\x81\x5b\xfa\xab\x3e\x2d\xd9\xdc\xfb\x53\xbd\x2a\x08\x36\x9d\x91\xf0\xb1\xaf\xc0\xe5\xd9\xe8\xd8\x17\xe2\xac\x53\xa6\x1a\x9b\xa9\x13\x8f\x71\xd8\x25\x4e\x87\x1b\xd8\x81\xbb\xba\x70\x73\xf4\x5f\x6b\xcf\xc2\x89\xf7\x2c\x04\x76\xbe\x4f\xed\xb3\x61\xda\x5e\x4a\xed\xe4\x69\xc8\x87\x0f\x0f\x2b\x2c\x04\xab\x28\x1c\xad\xce\x3e\x3c\x0d\x72\x51\x9e\x93\x0d\x7a\xe6\x72\x51\x12\x07\x10\xd8\xa5\x46\xd1\x76\x47\x88\x76\xc1\x38\x25\x4f\x2a\x19\x5e\x38\x09\x82\x23\x00\xf6\xa9\xb5\x07\xd4\xa9\xd3\xd6\xe4\x97\x43\xd4\x90\x76\x21\x97\xe8\x00\x3d\xea\x25\x40\x7d\xbd\x48\x1c\x0c\xae\x29\x6d\xa9\x1c\x65\xd6\x26\x0a\x3f\xa1\x88\x4b\x7f\x4a\xc5\x55\xf2\x3b\x49\x83\xb7\x69\xef\x82\xfc\x48\x1a\xf5\x87\x08\xdd\x67\x9f\x30\x41\xdc\x71\x37\x17\x54\xd4\x27\xa3\xe5\x38\x3c\xa9\x34\xbd\x9a\xf9\xd4\xda\xf9\x47\xf6\x0c\xca\x9b\xc0\xd9\x73\x04\xe4\x2d\xfc\x68\x29\xab\x5a\xd8\xff\xe7\xcd\x0c\x81\xd1\x91\x25\x75\x11\x52\x40\x65\x0d\x2e\xf8\x22\xef\x10\x52\x1c\x1d\x45\x0b\x90\x37\x8e\xe4\x21\x3a\x42\x3f\xfe\xd4\xd7\x06\x24\x15\x3a\x42\x73\xdc\x08\x52\x22\x58\xb2\x88\x40\xba\xe4\xbb\x42\x37\xb7\x84\xaa\xbd\xfb\x23\x6f\x68\xd6\x0d\x1d\xd9\x15\x74\x4d\x7e\xbf\x97\x6d\x9c\x0a\x16\x6d\x8c\xe6\x5d\x8b\x2a\xb6\xde\x8c\xc6\x87\x99\x76\x12\x8e\xc0\x89\xec\x78\x0b\x03\xed\x0a\x56\x10\x79\x15\x50\x76\xf4\x33\x6a\xc9\x6d\xc2\xe7\xe3\x64\x98\xd2\xf2\xf8\x5e\x7b\x8c\xfc\x26\x5c\xb5\xd1\xcf\xe6\x2c\x71\x27\xd6\x8e\xe7\x5a\x11\xbd\x94\x21\x12\xd0\x7b\x23\x09\x6c\xe3\x50\x0c\x8e\xbb\x81\xd1\x2d\xab\x05\x7f\xed\x31\xae\xdb\xfa\x62\xf4\xae\x1a\x92\x0c\x45\x0c\x22\x86\x7c\x57\xed\xb3\x2a\xa7\xcf\x9f\x81\xd0\x7f\x4e\x36\xa3\xeb\x4c\xc6\x0c\x70\xf4\x75\xcc\xce\x28\x4e\x7c\x72\x3c\x6b\x6d\x15\xc8\x4b\x37\x0e\x04\x65\xf9\xcf\x20\xe5\xad\x5d\x78\x73\xe2\xb8\x5e\xd1\xf6\xc1\x83\x07\x7d\x9a\xfa\x09\x6b\xe7\x74\x11\x20\x65\xcf\x4c\xed\xd3\x50\xba\x86\x52\x28\x21\x6f\x0f\xb7\x48\x69\xed\x7c\x9b\x7e\xd7\x76\x2b\x25\x8f\xc4\x79\x0b\x3b\x2d\x57\x27\xc3\x0e\x86\x62\x2f\xe3\x3e\xa3\x9f\xf5\xb0\xb6\x6f\x91\x6c\xc9\x38\xe8\x48\xf7\x29\xad\xd3\xc0\xac\x76\xd5\x93\xe3\x99\x5d\x46\xa9\x4d\x7b\x4e\x31\xee\xbc\xe7\x5c\xe3\xce\x77\x9c\x34\x28\xcf\xf5\xf5\x42\x7b\x83\x76\x98\xaf\x75\xef\xec\x39\x53\xdb\x6d\xcf\x39\xda\x6e\xfb\xcd\xce\x2b\xc5\x56\x0d\x76\x53\xdd\xca\xb0\x27\xb9\xe6\xa1\x30\x7d\xf4\x3f\xdb\x26\x9a\x75\x54\xf2\xbf\x5b\xa5\x60\xfa\x26\x9c\x75\x57\x07\x81\xef\xde\x3b\x71\x6d\x7a\xe8\x84\x68\x49\x94\x12\xa9\x53\x63\xc3\xdc\xb1\x35\xde\x28\xa3\x8c\xb6\x15\x27\x58\x10\x81\xc8\x0d\xe1\x9b\x42\xe6\x19\x84\x61\x6e\x70\xd3\x11\x10\x2a\x5d\x23\xe9\xba\xa1\x5e\x88\x40\x02\x9b\x0c\x33\xdb\x24\x43\x0b\x22\x03\xa7\x22\x0c\xd5\x4b\x60\x05\x40\xf7\x3c\x37\xc8\x5c\x10\x5e\x91\x56\xe2\x05\xc9\x2d\xc0\x02\xa1\x87\x00\x8c\x7e\x46\xeb\x0c\x5a\x91\xde\x43\x50\xd0\x51\x00\xa5\x44\x76\xd0\xaf\x7b\x44\xdb\x64\xab\x64\x98\x0c\xec\xa5\xc9\x20\x03\x4e\x76\xa2\xde\x8e\x02\x32\xf9\x66\x2f\x39\xd3\xf7\xd3\x8e\x1b\x39\xff\x72\xaf\x0d\xb1\x5d\x81\xdc\xb2\xba\x43\x3f\xf7\x1f\xb9\xfa\x7c\x0c\xfd\xd4\x26\x6b\x97\xae\x94\x26\xe5\xda\x9d\x39\x29\x03\xd9\xe9\x36\x2c\x83\x33\x3f\x34\x84\x75\x29\x9c\xde\xe0\x8f\x42\x23\x65\x86\x9a\x73\x28\xcd\x2c\x18\xfb\x01\x74\xc8\x31\x44\xa6\x26\x73\x1d\xa8\x40\x9c\xcc\x09\x27\x6d\x65\x1d\x5d\xd6\x64\xc1\x66\x50\x21\xf1\x6a\x6d\x93\xe7\x4d\x37\x07\x18\x37\x0d\x9a\x77\x12\x32\xff\x63\x5c\xc5\x14\x9d\xcf\xd1\x5b\xe3\xf1\xd6\xc9\x16\x00\xf8\x2d\xcc\xb1\xcd\x7c\xe9\x72\x49\x5a\x07\x17\x6e\x55\x24\x93\xa7\xc2\xc4\x2c\x66\x9b\x43\xdb\xd0\x75\x48\x7c\xeb\xa0\xf5\xcd\xaf\x2c\xfa\xe8\x4b\x1f\x2e\xf8\x1b\x1a\xe5\x48\x1d\x70\x32\x37\xff\x1d\x47\xb0\xfb\xfc\x93\x57\xb0\x84\xbd\x0a\x90\x1b\xcd\x86\x9c\xfa\x63\x12\xa9\xab\xa4\x4e\xa2\x13\x79\x70\xc0\x2c\x90\x71\xd3\x25\xeb\xd7\x0b\xd7\xcf\xb0\x17\xb2\x23\x75\x19\xf4\xfe\xf1\x8e\x02\x0e\x6e\x4d\xca\x8e\xc2\x13\xb6\x5a\x77\xd2\x71\x93\xb8\xa5\xb2\x5a\xea\xac\x00\x85\xd8\x0c\x0b\xc8\x0e\x42\x6c\x3e\x17\x44\x6a\x3f\x90\x47\xd3\x90\xe6\x81\xef\x36\xed\x3d\x18\x16\x44\x5e\x85\x2c\xf3\x94\x71\xab\x3d\xe6\xfc\xe1\x54\x0f\xfb\x9f\x7e\xcb\x6f\x9a\x30\x9e\x56\xd2\x87\xb9\xcf\xf6\x8b\x58\xb0\x74\x84\xa4\xcc\x31\x29\x2c\xeb\xa4\x48\xe6\x54\xc6\x27\x78\x1d\x39\xbe\x2b\xb4\xf2\x63\xe8\x7d\x75\x52\xf0\x65\x14\xe6\x1e\xef\xc1\x7e\x31\xf9\x2d\x6b\x6a\xad\x8e\xbc\x75\xd7\x69\xa6\x7a\x6b\xbd\xb5\x9b\xce\xb9\xdb\x9c\x18\x9b\x35\xc4\x05\x18\xc2\xad\x6a\xfd\x80\xd6\xf1\xe8\x9b\x5b\x0b\xe8\xd0\x08\xe6\x1d\x6c\x23\xa3\xc3\xc4\xb7\xbe\xbc\xf4\xd3\x96\x53\xcb\x64\x9f\xf1\x54\x08\xae\xe0\x30\x4e\xc2\x49\xc5\xb8\x4b\x8f\x77\xf1\x12\x60\x6b\x93\xf9\x16\xe4\xe9\x7b\xb9\x0b\x4e\x3f\x3d\x96\x96\xda\x5a\x91\xf5\xc3\xbd\x01\x86\x14\x05\xb0\x30\x1f\xb7\x8f\xe3\x28\x0e\xe3\xa8\xa5\x0d\xa2\x73\x7d\xc8\xb4\x5f\x48\x34\x67\x9d\x09\x1e\xba\x98\xb7\x27\x97\x8f\xeb\x28\x0b\x4f\xdb\xb1\xf0\x8d\x3a\x35\x85\x8e\x80\x2d\x38\xbb\x55\x62\xbe\xa6\x70\xe0\x63\xbe\x71\xd0\x6a\x46\x04\x52\xd4\x03\xd7\xb7\x8e\xbd\x37\x0c\xd7\x0a\x2f\xd0\x36\x61\xcf\x47\x77\x70\xa8\x30\x2d\x32\xe9\x6c\xf6\x74\xe4\x9f\x19\xfd\xac\x27\x98\xef\xe2\xa8\xd9\x3f\x82\xbd\x41\xe7\xc0\x37\x96\x66\xa7\x0e\x6b\xf0\xd1\x35\xf3\xa9\x99\xe6\xd4\x4c\x73\x3a\x63\x9c\xb3\xdb\x27\x9f\xbf\xd7\xb0\x13\xd0\xbf\x7f\x3d\x52\x54\x3f\xd4\x7d\x2d\xd4\x4b\xdd\xf7\x02\xcb\x65\xba\x2f\x93\xf1\xdf\x90\x39\x3a\x2a\x60\xf3\x63\x38\xaf\x9f\xd2\xbd\xed\x25\x52\x00\x67\xaa\x5d\x58\x51\xcb\xdf\xef\xe5\xff\x33\x3d\x5b\xda\xa4\x1b\xf5\x12\xeb\xe4\x83\x15\xab\x35\xf7\xc4\xce\x30\xb3\x55\x4d\xe4\xd3\x07\xff\x32\xd6\x28\x6f\x57\xd0\xd6\xf1\x0d\x49\x57\xb0\x25\xb7\x7e\xe7\x46\x3f\x86\xb4\x5b\x73\x52\xf4\xc3\xe8\x50\x71\x28\x6d\xd1\xd1\x11\x7a\x88\x7e\xfb\x2d\x6a\x3c\x0a\x46\x71\x5e\xdb\xaf\x8f\xfa\x81\x1c\xa0\x47\xe8\xf3\xcf\x23\x18\x25\x10\x4f\x0c\x88\x35\x67\x6b\x26\x48\x1d\xc2\x18\x8d\xc7\x87\xd9\xba\xdd\x3f\xd1\x02\x05\x68\xbc\x49\x03\xa9\xb0\x83\x6d\x89\x80\xb9\x24\xf6\x36\x8f\x06\x6e\x5a\x33\xee\xae\x5c\x66\x57\x7d\xee\x17\x16\xfc\xae\x2c\x8f\x3b\xb9\x1c\xbd\xe8\x24\x96\x64\x8c\x3e\x11\xff\x97\x99\xbf\x40\xe9\xd2\x1e\xc0\x42\x10\xb8\x55\x97\xfe\xa0\x3e\xab\x74\xa9\x8e\x8e\x4a\x2b\x38\xe9\xe9\x2c\x04\x18\x50\x76\xb9\x14\xe3\x7a\xa4\xe1\xb4\x5a\x51\xb1\xc2\xb2\x5a\xfa\x54\x3c\x03\x52\xdc\xcf\x60\xf6\xed\xca\x10\xd1\x6d\xf3\x8f\xd0\x2f\x9f\xb6\xc5\x3d\x67\xd3\x45\xde\x04\xe9\x54\xa3\xb1\x0d\xf5\x24\xca\xad\xce\xb9\xb2\x79\x5e\x2b\x93\x05\x8d\xd1\x92\xfc\xa2\xf6\xbf\xea\xc0\xe6\xe8\xf1\x57\xea\x34\x54\x43\x28\x1b\x6c\x44\xa7\x04\x3d\xfa\x1f\x34\xdb\x48\x22\x14\x77\x3e\xfa\xea\xef\x68\x46\xa5\x18\x47\xa0\xdf\x72\x25\xf4\x25\x9d\x35\x06\x95\xb7\x46\x14\x29\x91\x63\xb4\xae\xd1\xdf\x35\x14\xdf\x13\xd4\x4a\x68\xfe\x1d\xbb\x05\x95\x23\x06\xf2\x44\xf7\xfc\x7a\x34\x9e\x4a\xf6\x0d\x5d\x9c\xb5\x35\xc5\xed\x37\x0a\xc8\xa8\x04\xe5\x5b\xba\x58\xde\x19\x0c\x04\x64\x03\x32\xa2\x23\x43\xc5\xa9\xce\x21\xfe\x96\xfc\x32\xf2\xc3\x8c\xa7\x15\x6b\x2b\x2c\x47\x3d\x6d\xbe\x63\xb7\x63\x0f\xbb\xc8\xcc\xe1\x60\x53\x13\x02\x3c\x3a\x42\x8f\xbf\x9a\xdc\x2b\xb3\xeb\x9b\xfd\xd7\xcf\x73\xeb\xf8\x5e\x7a\x48\x84\xe3\xa7\xa7\x45\x60\xab\x4c\xd4\xaa\x9f\x9f\x4e\x8a\xf7\x00\xb3\x93\x1c\x82\xb5\xb9\xc8\x8d\x0d\x06\x37\x82\x01\xa5\x73\xfa\xdc\xb5\x71\x67\x4d\x9b\x70\xea\x10\x7c\xe3\x4f\xf1\xff\xf7\x23\x28\x09\x15\x54\x5b\x09\xf4\x53\x50\xef\xde\x42\xdd\x0a\x20\xa5\x53\x85\xb2\xe1\x14\x6f\x61\xd5\x3a\x90\x7a\x6a\x77\xb9\x3f\x76\x19\xee\x5b\x82\xb9\x9c\x11\x2c\x77\x1e\x72\x69\x7b\xec\x3f\x6c\x8f\x28\x7f\x1b\xe8\x70\x5b\x06\x2f\x08\xfa\x9e\xb1\xdf\xd8\xd9\xe8\xc0\x38\x38\x06\x20\x37\x5b\x30\x6f\x88\x3a\xf5\x6f\x4e\x49\x63\x6c\xe7\x70\x48\x47\x12\x58\x95\x9e\x1b\xec\x4a\xd6\x69\xd8\x30\x2d\xf0\x27\x69\xf5\xc2\xff\xdd\x67\x2d\xe5\xda\x85\xfa\xf8\xe5\xc9\xd8\x49\xed\x42\xff\xd7\x34\xbe\xd7\xaf\x8f\x0d\x7d\xc9\xc5\xcc\x56\x4f\xcc\x26\xdf\x15\xc2\x0a\xf9\x99\xe1\x47\xa7\xe2\x07\xdc\xd0\x1a\x86\x8a\x7c\x4e\xa3\x00\xc3\x82\x21\xd4\xeb\xb0\x2b\x1f\x7a\x3b\x03\xb3\x3e\xba\x32\x98\x88\xe0\xe3\x43\x74\xff\x25\xb9\x35\x86\x05\x7c\xe5\xa4\x52\x7a\xe7\x15\x89\x6e\xa5\x38\xc2\x51\xa6\xad\x21\x87\x4e\x13\x1c\x7c\xfd\xf7\x93\x73\xf4\xde\x1e\xf8\x17\x02\x49\x31\xaa\x25\xab\xbc\xcc\x60\x86\x8c\x01\x8b\x85\xdf\xfc\xa7\x31\x59\x32\xbd\x4f\xca\x3c\x3b\x83\x81\x46\x8a\xbb\xf6\xe1\xac\x96\xdc\xfe\x21\xdc\x95\xc4\xf0\x12\x02\xee\xc1\x68\x96\x58\x01\xa7\xf9\xbf\xff\xd3\xf8\xec\xa3\x0a\xb3\x88\x52\x7f\x06\xaf\x85\x7c\xa6\xf8\xee\x53\xf1\x9a\x8b\xa2\x46\x33\xde\x83\xc7\x32\x7f\xb7\xe6\x33\xfd\xff\xc3\xdc\x1d\xfe\x21\xec\x76\xe2\x2d\x6f\x37\xc4\x34\x74\x71\xde\x7f\x93\x84\x2b\x2c\x99\x8d\xc5\xeb\x4b\x03\xa5\x04\x2c\x0f\x9e\x9a\xb6\x0d\xc3\xf5\x93\x6c\x4a\xd6\x88\x7d\x60\x9a\x3d\x98\x5b\x00\xd1\xc4\x77\x1c\x43\xd9\x8a\x23\x37\xbd\x09\x92\x6c\x77\xc8\x5b\x57\xab\x2f\xaa\x4c\x6e\x5f\x6e\x0f\x2c\xff\xbb\x49\x86\xbb\xb0\x7d\x3e\xfb\x78\xee\x7b\xd0\xf2\xe9\x77\xaf\xfe\x79\xd9\x1f\x38\x56\x1b\x6a\x6b\x2c\xf5\xdf\x8d\xa4\xc8\xc8\x3e\x1f\xdd\x7c\x72\x84\x1e\x4d\x1f\x1a\x3d\x4c\x07\xf2\xfd\xa6\x92\xb7\x84\xb4\xe8\x57\xc2\x19\x08\x2a\xd6\x92\x0f\x5c\xa1\xc1\x60\x7c\x84\x58\x71\xa1\x1e\x3c\x40\x67\x2d\xf8\xfe\x19\x47\x35\x15\xf0\x5f\xdc\x49\xb6\xc2\x92\x56\x2e\x7b\xa1\xc2\x4d\xd5\x35\xb6\x96\x5b\x5b\xa3\x35\xde\xc0\xfd\xb5\xad\x8a\x9b\x81\x64\xb2\xce\xf4\x58\xf5\xe8\x67\x44\xf4\xff\xca\x49\x67\x5b\xe4\x89\xea\x52\x14\x21\x3d\xc3\xed\x25\x48\x0c\x62\x05\x31\xb2\x15\xba\x17\x8a\xbd\x64\x21\x2b\x2a\xc3\xbb\xac\x67\x37\xa4\x95\xa3\x92\x53\x3d\x3e\x43\xb7\xa4\x04\xef\x92\xf3\x3b\x98\x35\xbc\x35\x65\xa2\xa7\x75\x96\x3e\x11\xb7\x83\xab\xaf\xd9\x1d\x19\xfb\xd9\x76\x1d\x32\x6c\x5b\xbe\x9c\x18\xb6\xd8\x76\x19\x0d\xf5\x5f\x18\x2b\x20\xb5\xe7\xbd\xac\x10\x42\xff\xe5\x20\xfb\xc9\x82\x87\x21\xcb\x20\x1f\xe1\xb2\x11\x80\xfe\xe2\x98\xe6\x82\x57\x9a\x48\x84\x8c\x0f\x0e\xd2\xe1\xb7\x5c\xff\xcd\xd3\x8b\xe7\xe6\x2a\xc3\xf9\x29\xa2\xad\x5d\xc4\x02\xca\x00\x7d\x8a\xd7\x6b\xd2\xd6\xa3\x81\x21\x46\x1a\xc4\xa1\x01\x35\x4e\xbd\xb3\x19\xda\x8a\x82\xf1\x3d\xc8\x30\x5f\x1b\x7d\xd9\xcb\xae\xd1\x4f\x2e\xdf\x25\x4c\xe2\x4f\x87\xf8\xea\x0e\x43\x8c\xbe\x42\x7f\x2b\x8c\x33\x1e\x1c\xe8\xf1\x5d\x06\x7a\x3c\x30\x50\xc6\x30\x4a\xb6\xc4\x17\xe5\x21\x6f\x25\x16\x02\xaa\x8d\x97\x80\x61\xeb\xdc\xad\xef\x2e\x30\x84\xf2\x29\xd7\xed\xfd\x35\x73\x60\x88\xbc\x41\x70\x31\xdc\x4d\xbc\xd4\xca\xdd\x55\x35\xa2\x2a\x6f\x53\x92\x18\xf9\x77\x79\xbf\x58\x7a\x84\x7f\xe5\x6d\x4b\x97\x70\x73\x86\xec\xef\xf7\x55\xa1\xdf\x57\x3b\xf4\x7b\x5c\xe8\xf7\x78\xa0\x5f\x2a\xef\xe2\xbf\xfb\xda\x3b\xd9\x17\xfd\xd9\x4b\xe9\x50\x0c\x66\x5f\xe5\xbd\x42\xd1\xe7\xff\x9f\x08\xbf\xb2\x1e\xf2\x00\x5d\x10\x3e\x67\x7c\x25\x90\xc0\xad\x92\x74\xd5\x92\x54\xd7\x22\xa8\xb1\xc7\x6e\x68\xed\xa2\x72\x51\xfe\x15\xd4\xbb\x81\x82\x79\xa4\x15\x9d\xf1\xbb\xea\xdb\x9c\xb4\x5d\xfc\x9f\x68\x98\x03\x74\x05\xae\x59\x28\x5c\x7a\xa3\x6c\x63\xe3\xec\x8e\x21\x26\x7d\x8e\x5d\x95\x42\x5b\x34\x15\xca\x3f\xd4\x02\x8a\x07\xd8\xbb\xac\xba\x16\x03\xfa\x1a\x3d\x4c\xea\xb7\xcd\xe3\x64\x0b\x5b\xc9\xc3\x22\x10\xff\x00\xe5\x69\x73\xc5\x33\xbe\x57\xfd\xae\x42\x37\x4c\x5a\x8b\xb7\xbe\x5e\xb8\x82\x81\xa4\x55\x54\xaa\x89\x12\xcb\x10\x80\x68\x0b\x05\x42\x92\x9b\xe7\xa9\x9e\x12\x5e\x1c\xbe\xe0\xe4\x04\x96\x62\xf4\xc9\xb5\x90\x54\x5f\xd8\x57\xfb\xef\x77\x76\xc4\xb8\x1d\xb8\x99\x7c\xf9\x68\x72\x07\x5f\x9a\x9d\x46\x08\xa7\x10\x7c\x56\x9f\xfb\xe7\xad\x5e\x63\x2f\xfa\x12\x42\xe9\xd2\x1d\xf6\xce\x51\xc4\x0a\x83\xc6\x01\x54\x04\x09\xb6\x4a\x50\x49\x53\x2c\x59\xd7\xd4\x39\x57\xde\xe9\x98\xd7\x91\xb2\x72\xd4\x77\x8f\x53\x7f\xaa\xeb\x2f\x37\xff\x74\xd8\x4c\x50\x11\xa6\x8f\xae\xe1\x70\xd3\xc5\x1b\x4e\x21\x1f\x2b\x3f\xda\xca\xca\xa6\xbc\x3d\x38\x1c\xfd\x49\xe7\x77\x36\x26\x0b\xa4\x83\x2c\x0f\xda\x56\x04\xdd\xda\x5b\xf5\x82\xc8\xf8\x2a\xf4\x44\xfd\x56\x33\x48\xdc\x69\xa1\xae\x07\x2b\xc2\x01\xfe\x09\x6f\x4f\x23\xdc\x08\x36\x45\xff\x24\xda\x7e\x35\x7d\x75\xd6\xe1\xc0\x3d\x8a\x70\xe9\xf4\x34\x75\xfe\x81\xd5\x3e\xea\x15\x6d\x47\xe3\x29\x69\xeb\xc4\xad\x9a\xd0\x0d\x91\x46\x94\x76\xa3\x29\x35\x52\x99\xc9\xba\xda\x5a\xda\xff\xbb\x15\x0d\xa7\x5d\x5b\x44\x00\xd6\xa5\x64\xeb\x1f\x40\xdc\x25\x68\x94\x40\x9c\x3e\x7f\x16\x75\x3e\x6b\xeb\xd3\xe7\xcf\x06\x52\x75\x22\xc1\x7a\xd6\x9a\xec\xb9\xca\x96\x45\x40\xb8\x92\xf4\x86\x04\xa5\x95\x60\x2d\x84\x29\x55\xcc\xda\xa0\xbc\x91\x3b\xa5\x06\x4e\x13\x48\xf1\x5f\x11\x89\x91\xc9\x6e\x30\x72\xdb\xd4\x8f\x0a\xf3\x8f\x8b\x95\xa9\x4c\xad\xa6\x79\xd7\x6a\x45\xb1\xa6\xf3\x39\xe1\x22\x2e\xb8\x60\x52\x39\xa1\xfb\x49\xc0\xc7\x68\x46\x74\x4d\x6e\x6a\x6e\x23\x80\xca\x14\x04\x79\xc3\x84\x65\x53\xc2\x5b\x1b\xff\xee\x32\xc3\x14\xe5\xd3\x71\xc8\xd8\xfa\x54\x26\x93\x1a\xaa\x5e\x40\xcd\x9a\x52\x39\x2a\x40\x52\xa3\xf5\x14\x37\xcd\x0c\x57\xd7\xe8\x85\xda\xe7\xa3\xb3\xa7\x2f\xc6\x5b\x8f\xa7\x97\x26\x9e\xf4\xc9\x0f\xa6\x8f\x6b\x5b\xee\x64\xf0\xfe\x11\x76\xe8\xd6\xf3\x36\xa6\xa2\xce\x48\xdd\xa2\x18\xf4\x1e\x73\x87\xd9\xb1\xe7\x48\x6e\xf5\x7d\x8f\x90\xf9\xcf\x38\x33\xa7\x92\x74\x10\xbf\xf5\xcb\x69\x37\xb9\x6d\x39\x70\xa9\xe2\x8e\x01\x91\x81\x21\x82\x2b\x17\x7b\x2b\x19\xf9\x61\x7f\x02\xa1\x0f\x90\x39\x71\xa6\x60\xd9\x1b\x10\xd7\x5c\x03\x4f\xa4\xc8\x71\x35\x5b\xe8\x85\x4f\x10\x8b\x13\x06\x33\x2c\xce\xad\xd0\x28\xc8\x0c\xb8\x50\x61\xb0\x50\x67\x8f\x2e\x96\xe6\x0b\xba\xc7\x1c\x6e\xcd\x4b\x4f\x9a\x72\x5a\x5f\xb2\x99\xe1\xe2\x7c\xbf\x0d\x57\xe4\xc5\xf2\x56\x2f\xda\x99\x5b\xb8\x36\xa1\x87\x2e\x48\x62\x2d\x0d\xeb\x3d\xb6\x22\x5d\xd1\xe1\x96\x2b\xb1\x0e\x4f\xf0\xbc\x75\xa2\xf4\xb8\xad\x2f\xdd\x5d\xdc\xb7\x68\x46\x1a\x16\xdf\x19\x8f\x2f\xe8\x3f\x9c\x3e\x4c\xa4\x43\xe1\x72\x7e\x9f\x00\x29\xfc\xe6\xae\xdb\x7b\x19\x31\xce\xf9\xed\x12\xd2\x88\x0d\xff\xf8\xcc\x49\x38\xb5\xa0\xc0\x95\x9d\xa6\xbb\x31\x00\x35\x21\xc3\x4f\x06\xd3\xf3\xcc\x9a\xb3\x05\x27\x42\x40\xb9\x20\xce\xba\xc5\x32\xa8\x26\x36\xed\x71\xd9\xe6\x09\xad\x29\x03\x17\xe6\x71\x92\x1e\x60\x5b\x0a\xc0\xa3\x20\x1f\xdd\x6a\x30\xe6\xfe\x5e\xfe\x70\x4b\x9f\xbf\xbe\xb8\xd2\xa9\x40\x72\x6e\x1b\x4f\x16\xde\xeb\xbb\xd1\xa5\x09\x76\x70\x20\xef\xb7\x9f\xd0\x4e\x7b\x06\xed\xb9\x33\xd0\xd6\x7d\x86\x06\xdd\xce\xbb\x47\x9f\x4b\xce\xe8\x5d\xd2\x1f\xd2\xb3\xe6\xcf\xf1\x36\xfd\x75\xbd\x38\xb9\xb8\x00\x03\x05\xfb\xf3\xc9\xbf\xd7\x14\xa9\x99\xb1\x23\xa2\x54\xc8\x23\xd8\xef\x0a\xa6\x53\xf3\x7a\x5d\x47\xbb\xe8\xec\x9c\x18\xad\x9d\xca\x3b\xa8\xeb\xa1\x7e\x4b\x5b\xa9\x7d\x2c\x51\xe5\xd3\x6c\x5e\xa1\x4b\x27\x2e\x20\xbb\x89\xe0\x87\xd5\x5d\x95\x11\x27\xcc\xd5\x0d\x5f\x51\x76\xa5\x93\xcf\x21\x52\x59\x91\xbd\xd5\x7f\x4b\xbf\x50\xf5\x77\x77\x45\x68\xff\x71\x0e\x5e\x35\x65\x64\xc6\xa0\x5d\x57\x6f\x18\x58\x49\x69\xe5\x2b\xbe\x61\x14\x7c\x4f\x35\xeb\x66\x0d\x48\x4f\xfd\xe2\x58\x2c\x7e\xa1\x5a\x5e\x52\x85\xf2\x53\x18\x48\xd6\x26\x89\x06\xf9\x23\x0c\x94\xd0\xf0\xfa\xaf\x91\xf2\x89\x8c\x94\x7f\x0b\xbb\xe4\xaf\x63\x56\x84\x60\xb3\x31\x42\x8f\x57\x60\x12\x84\x66\x56\x72\x25\x6c\x30\xf1\x68\xfc\x29\x6c\x18\xb3\xbb\x93\xab\x3c\x20\x24\xac\xbe\x4d\x86\x14\x4f\xd7\x65\xf8\x15\x1d\x4b\x12\x12\xa2\x79\x98\x06\xcf\x76\xb3\x9b\x50\xd9\xdc\x29\x50\xac\xa0\x75\x81\xbd\x53\x5a\x98\xcf\xa0\xd8\xd5\x5d\xb5\xb9\xed\xda\xd9\xbe\xfa\xde\x16\x9b\x05\xed\x66\xb7\xa0\x2d\xb6\x0b\xfa\xcf\xb2\x5f\xc8\x16\xe3\xe5\x53\x9a\x07\xbb\xf1\xdf\x7f\x6d\x83\x4f\x66\x1b\xec\xb3\xab\xff\xba\x96\x82\xfd\xdf\x9f\xe0\x68\x0f\xf6\xfe\xc4\xdc\xf0\x84\xa8\xc4\x99\xd1\x73\x75\x61\x72\x31\x81\x87\x4e\xde\x06\xe5\x05\x0b\x49\xb4\x5f\xa2\x47\x6f\xb7\x58\x06\xa0\x65\x9a\xd4\x41\xa3\x58\x1e\x20\x01\x01\x20\x13\xff\x0d\x4b\x95\x53\xa1\x91\xd1\x01\x40\x33\x29\x5d\x38\x9d\xc6\x55\x43\x67\x8c\x49\x21\x39\x5e\xaf\x6d\xa9\x4c\x4d\x11\x13\x52\x33\x6f\x2c\x88\x16\xaf\xc5\x92\xc9\x89\x29\xc6\xac\x7f\xa4\xbf\x12\x11\xbc\xab\xe9\x08\x68\x6a\x1f\xaf\xd3\x02\x44\xe6\x54\x84\xdc\x7d\x35\x85\x09\x54\xb1\x86\x42\x25\x46\xf5\xc6\xd2\x0d\x35\xa4\x01\x5b\x32\xc7\x47\xe1\xc0\x4d\xb4\x7d\x33\xbe\x3e\xb5\x42\x7d\xd7\x0a\x98\x77\x28\x80\x59\x52\x83\xfd\xc6\xd9\x25\x08\xde\x73\x33\x7b\x50\xd8\xf7\x44\xac\xed\x1d\x5c\xfd\xda\x30\x76\x0a\xd2\x59\xe4\xeb\x05\x3e\x70\xb6\x20\x5c\xcd\x8d\xd4\x29\xdb\xce\x57\x34\xc8\x4b\x3f\xdc\xed\xe2\xc2\x7f\x60\x2c\xff\x63\x87\x9d\x3f\x52\xd4\xf9\x2f\x14\x74\xfe\x6b\xc4\x9c\xd3\xe8\x41\x6a\x0e\x05\xa5\x09\x86\x3d\xcd\xc6\x81\xf1\x71\xc3\x3b\xf6\xe3\x4c\x95\x9e\x63\xb0\x7c\xbf\x67\x5b\x60\xc6\xb5\xdb\x49\xa1\x44\x3b\x29\x89\xe8\x0e\xaa\x27\xb2\x81\x1b\xfa\x31\x02\x35\xf6\x53\xaa\xa8\x3c\x7a\x38\x7d\x58\xf0\xb6\xa3\xf2\xd9\x92\x7d\xd5\xd3\x33\x38\x5d\xfc\xff\xcb\x6d\xb7\xdb\x49\x1f\x14\x5a\xb9\x63\x64\xe5\x0f\x09\xac\xfc\xc1\xee\x68\x14\x5f\xd6\x8f\xaf\x61\x53\xa1\x4f\x3c\xb5\xc0\xae\xa0\x91\xd3\xf5\xa0\x4e\xbe\xd6\x1d\x5d\x7f\xc9\x4c\xfd\xa3\x08\x45\x9d\xa7\x68\x14\x34\x57\x9c\xc4\x8b\x3c\x73\x4b\x7f\x0e\x62\xb9\x70\x95\xdc\xdd\xeb\x76\xd7\xdf\x93\x72\x14\x4f\xad\x2e\xeb\xd0\xc6\x80\xb2\x2e\x1f\xa4\xdf\xc3\x91\x0c\xe1\xfa\x06\x5b\x9d\x36\x57\x20\xa1\x8c\x93\x46\xde\xbc\x0c\x64\xcb\x9f\xbd\xeb\x28\xd7\x1a\x7b\xad\xdf\xfd\x0e\x8a\xf4\xaf\x48\xb9\x64\xa5\xd2\x25\xcd\x78\xdf\xa8\xf1\x47\x99\xfb\x0f\x8a\x93\x0d\x1e\x9f\x05\x6d\x09\x9e\x46\xef\x3b\x52\xcb\xa7\x7f\xe0\x1f\x03\x4c\xd0\x11\x5a\x10\x79\x12\x7c\x53\x38\x27\xd0\x27\x72\xac\x7d\xd6\x27\xd6\x2e\xf0\xc6\x6d\x46\x38\xa2\xe9\xbc\x70\xa1\x47\x69\x05\xe6\xa6\xcb\x76\xf9\x08\x60\x70\x25\x3b\xdc\x34\x1b\xb4\x84\x84\x7f\x88\x44\x20\xba\x5a\x91\x9a\x62\x49\x54\x03\x57\x3f\x87\x98\x60\xc3\x22\x7c\x28\x31\x81\x6e\x43\x11\x6f\xd7\x78\x63\xf6\xf0\x53\xc6\x2f\x4c\x71\x1d\xb3\xbf\xde\x06\xe3\xaf\xa3\x79\x55\xa4\x08\x38\x52\xa3\x70\xcf\xe5\xa3\xd2\xed\x0b\xfb\xd1\xc5\x85\x06\x50\x2a\xf6\xfc\xbd\x0f\x99\x90\x5d\xa6\x60\xf3\x7d\x7d\x54\x64\x85\xb4\x9e\xfc\x16\x0c\xb7\xe9\x49\xfd\x88\xa5\x8c\x7f\x76\xf1\xea\xe4\xdb\xcb\xb3\xab\xef\x2f\xca\x4c\x6f\x28\xea\x2d\x18\x9d\x74\x7c\x62\x9f\xf4\x1a\x8d\xd1\xe7\x9f\x23\x60\xd6\xd3\xe7\xcf\xa6\xf5\x75\xf4\xd3\x67\x47\xa8\xa5\xd9\xf5\xae\x6c\x3a\xbd\x32\x7d\xb0\x17\x08\x63\xb3\x29\x56\x2b\x2a\x3f\x8c\x06\x27\xaf\x5e\xbc\x38\xbf\xfa\xcb\xee\xfc\xbd\x98\x8d\xec\xcc\x65\xfb\x71\x7d\x4d\xe6\xb8\x6b\x64\x99\x88\xba\xc4\xcd\xbd\x32\x84\xc4\x35\x74\x82\x9b\x46\x04\xf5\x5a\xde\x3a\x2f\x8b\x18\xb0\x36\x92\x02\xda\x2e\x85\x03\x14\x01\x99\xbc\x77\xdf\x5f\x6c\x1b\xee\xe9\xe5\x1b\xec\x0f\xbb\x88\x4a\x34\xce\xd1\xcc\xee\x78\xc3\x57\xf1\x9f\xcd\x01\x79\x69\x12\xbc\x43\xd6\x2b\xc9\x91\xcc\x03\xfd\x89\x6a\x54\xa1\x8f\x91\xd1\x97\xa8\x66\xf0\x5f\x58\xdf\x51\x32\xed\xc3\x94\x0e\x93\x81\x34\x8d\x5e\x97\xe5\x8e\x7c\xd9\xcf\x67\xc3\x3c\x79\x31\xc8\x93\xb9\xbc\xfb\xc8\x2c\x19\x9c\x05\x09\x3b\x86\x48\x1a\x56\x0c\xbe\xda\xf1\x0a\xf3\x80\xbc\xfe\x10\x32\x9b\x47\xa7\xb7\xd1\xd9\xf0\x39\x3a\x0e\x65\x85\x7e\x41\x32\x4f\x4f\x2c\x88\x03\x23\x09\x3f\x05\xc9\xcd\xd1\x93\xd0\xdc\x3c\x8a\x1b\x52\x5b\x4f\x75\x1f\x72\x6f\x4f\x9d\x79\x19\x64\x9c\x18\x6d\x3f\xa8\x76\xe8\xea\x7e\xb9\xf7\x7a\x51\x9a\x54\x27\x86\x6d\x3f\xb3\x0c\x8c\x43\x9c\x8c\xac\xe0\x19\x80\xc8\xd5\xd1\x4b\xf5\x3e\xb5\xa0\xf7\xb6\xf8\x56\x3d\x62\xa0\x44\xc1\x90\xd2\xd7\x3b\xe0\x4e\x9a\x62\x5e\xc7\xdc\x93\x4e\x33\x9f\x64\xd7\xf0\x4c\x59\x64\x09\xe7\x16\x74\x90\x93\x28\x9c\xe3\x67\xd8\x7e\x2e\x3e\xbd\xd3\x4f\x56\x87\x73\xf0\x10\x9d\xae\x01\x66\x4a\x57\x96\xbc\x76\x51\x35\x81\x1d\x3d\x02\xce\xc0\xd4\x2f\x21\xea\x4d\x1d\xc2\x81\x79\xea\xf8\x2d\xb6\x79\x45\x68\x66\xdf\xbb\xb1\xde\xe4\xb4\x9c\xe7\xa0\xf3\xa1\xf1\x09\x4a\x97\xdd\x6a\x65\x0a\x72\x06\x53\xf1\xfc\x93\x73\x4e\xa0\xc9\x05\x4a\x1c\xd0\x24\xd3\xdf\xfa\x8a\x9c\x06\xaa\x5b\x02\x6a\x9a\xbd\x1e\x14\x23\x3a\x75\x33\x1f\x0f\x81\x88\x9e\x3e\x4a\x20\x84\xfe\x29\x0f\x44\x2b\xd2\x99\xe7\x27\x81\x1d\x2c\xf1\x9d\x2c\xac\x88\x2f\xa4\x7b\xbb\xd0\xbc\x5f\xc1\xe6\xfa\x51\x0b\x6f\x40\x46\xeb\xf7\x85\x48\x5f\xb4\x30\x20\xa1\xa5\x2f\x4c\x61\x9e\xdc\xd6\x62\x46\x6f\x29\xf3\x3c\xdc\x12\xdf\x90\xf6\x0b\x69\xfc\x0c\xb4\x95\xa4\xee\xe1\xca\x0d\x91\x99\x7e\x62\x5a\x5c\xe8\x7d\x76\x54\xba\xf2\x66\x39\xe0\x4a\x0d\xaa\x1b\x8e\x72\x45\x67\x4e\x88\x5e\x5d\x03\xe4\x29\x21\x42\x75\x7d\x4a\xc8\x37\xb8\xc1\x2d\x68\x37\x61\xa7\x1b\xcc\xe1\x65\x7d\x58\x56\x5d\x38\xe5\x58\xd1\xc8\xa1\xf2\x70\xfa\x30\x8d\x22\xf8\x41\xbc\xf2\x6f\xda\xe7\xe7\xd4\x20\xf0\xa7\xf0\xe3\x35\x69\x35\xeb\xe8\x26\xbb\x79\xe3\xf7\x87\x8b\xbe\x44\xa3\x18\xdb\x03\x3f\x95\x6d\x4e\xf4\xef\x18\xd6\x0a\x81\x7e\x9f\x52\x31\xd4\x8c\xb5\x9d\xb0\x4c\x00\x49\x7c\x61\xad\xe4\x70\x55\xa0\xe5\x95\x6e\x98\x58\x65\xdf\xf8\x9f\x4a\xfe\xc5\x6e\xa6\x8b\x28\xe6\x63\x65\x2c\x1e\x3c\xd1\xc2\x89\xfb\x3a\x5d\xbb\x10\x95\x27\x43\x44\xdc\x93\xe2\x03\x3f\x1e\x84\x83\x6e\x8b\x55\x44\x5b\x78\x37\xbf\x6d\x68\x80\xec\x82\xcf\xdf\xb6\x05\xf0\x06\x5f\x0e\xc9\x96\xc8\x3d\x8b\x73\xeb\x1f\xe0\x89\x8c\x28\x57\x09\x13\x8a\xda\xd8\xba\xcf\x5a\xdb\xca\x6a\xff\x22\x2b\x30\x8b\xb1\x2b\x51\x10\x02\xf1\xd4\x73\x91\x60\x7f\xdf\xed\x48\xe9\x29\x7a\x9d\x31\xc3\x3f\xfe\x81\xd6\xb8\xa5\xd5\xc8\x45\x72\x83\xd4\xdc\x7c\xc1\xd0\x8c\x54\x1d\xd6\x69\xc1\x4b\x2c\x9c\xa4\x74\xe4\xd8\x10\x79\x7f\x9c\xa8\xbd\x31\xde\xd9\xe1\x33\x34\xf1\x9e\x33\x27\x85\x39\xa0\x40\x5d\xe0\x8d\xd7\x3a\xed\x7b\xea\x70\x4f\x18\xee\xc2\xbb\xf7\x66\xad\xab\x3c\xae\xd9\xdd\xab\x18\xed\xa8\x02\x9a\x92\xda\xeb\xb0\xc1\x9d\x75\x02\x74\x80\x1e\x15\x6a\x76\x7f\x56\x84\x1e\x3d\xc4\x97\x0b\x01\x50\xda\x9c\x66\x53\x38\xa7\x4c\x66\x58\xa8\x17\x8c\xe2\xb8\x55\x79\xd8\xb0\xcd\xc4\x6b\x61\x7d\xcd\xa3\xc7\x0a\x73\xf6\xec\xdf\x42\x7e\x01\x46\x73\xf3\x7c\x88\x4b\x11\x29\x0f\xe5\x0a\x22\xc7\xda\xce\xa1\xa5\x43\x3e\x7a\x19\x4e\xf2\x30\xa2\xe4\x1d\xe9\x41\xbc\xc4\xb8\x05\x88\xc3\xef\x02\x84\xef\x08\xb2\x1b\x22\x9c\x3c\x32\xa7\x88\x2d\x14\x36\xeb\xaa\x6b\x62\xd3\xc8\x22\x9b\x56\x24\x89\x8d\xa5\xc0\x7b\xf1\x41\xc4\xd8\x2a\x8c\xdf\x03\x47\x67\x6d\x1d\xc4\xcd\x4d\xe0\x66\x03\xd1\x02\x21\x75\x79\x8d\x38\x66\x90\xb9\x87\x69\x7b\x61\xf2\x22\x4b\x59\xda\x3d\xe1\x76\x51\x8a\xb4\xff\x9e\x0e\x62\xfc\xcb\x46\xc9\xec\x07\x1f\x84\xe2\x49\x1a\x85\x0f\x4e\xb5\x7e\x36\x5c\xb1\x1b\x62\x8e\x7d\x1b\x02\x75\x6c\x38\x28\x88\x63\xd8\x05\xdb\xbf\xdf\x01\x18\x2d\xc3\xf7\xfe\x52\x49\x5c\xe9\xbe\x7f\x00\xff\xa0\xcc\x00\x86\xb1\x7d\xf7\x11\x05\xd8\x67\x11\xe0\x42\xd2\xc1\xde\x86\x92\x03\xe8\xab\x1a\xe9\x80\x6e\x92\x4d\x16\xad\xcb\xd6\x7c\xd6\xa0\x12\x51\x8a\xe4\xb4\x27\x17\x41\x44\xfe\x51\x97\x64\x50\xea\xde\x9b\x75\x10\x94\x36\xca\xfa\x15\x53\x1b\xb4\x66\x2c\xf1\x35\xa9\x0f\x7b\x0c\x8e\x2b\xdf\x24\xbd\xd1\x07\xbd\x55\x2f\xad\x5f\x1d\xf6\xaa\xdc\x3b\x48\xfb\x1c\xb0\x3b\x2b\x76\x35\x84\x3c\x8c\x71\x2a\xfc\x5c\x0a\xa8\x48\xbc\x73\x3a\xc7\xb1\x69\xe2\xf7\x38\xcc\x19\xbf\x5e\x73\x76\x93\x84\xb7\x43\x19\x57\xf0\x6a\xfb\xac\xba\x40\x6e\x84\xaf\x4c\xed\x95\x8e\x14\xbe\xe1\xe2\x85\xb1\x77\x3e\x1b\xe7\x22\xa4\x82\xad\x68\x54\x5d\x41\xf8\x07\xe5\x1c\x0c\x88\xb4\x2e\x71\xe2\x85\xab\x29\x27\x95\x74\x81\xd5\xb7\x19\x32\x6f\x87\x85\xfc\x90\x2f\xdc\xdd\xb4\x29\x66\x59\xa6\xa7\x82\x7f\x50\x4a\x3f\x70\xdf\xce\x19\x5f\xb9\xf7\xd8\xec\x2a\xd9\x65\xd1\xab\xe4\xfa\xc3\x9b\x9e\xa6\x24\xcc\x31\xe7\x78\xb3\x53\x39\xba\x7c\x78\xf7\xb6\x3e\x9b\x6b\x1f\x69\xfc\xec\xbe\x56\x6c\x5f\x9f\x44\xe3\xba\x26\xd9\xc4\xf7\x18\x25\x7e\x5a\x5e\x8d\x12\xa6\x94\xe9\x61\x4c\x9b\x1d\x86\x79\x46\x24\xb2\x73\x05\x60\x96\x7c\x31\xd5\x4c\x4b\xfb\xa3\x9f\x2b\x24\x57\xc4\x38\x85\x9d\x24\x0b\xd2\x7e\xfb\xd2\xe0\xd4\xb0\x14\x32\x32\xd3\xd8\xd0\xfb\xcc\x42\xb1\x4b\x57\x56\x28\xb3\x5a\x3f\xb4\x4e\x0c\xe5\x68\xe9\x6d\xad\x40\xfb\xe5\x38\x4b\x82\xb4\xbf\x4c\x39\x6b\xc0\x57\xae\x46\x78\xc3\x1a\x32\x75\x75\x68\xa7\x1c\xdf\xfe\x00\x65\x55\x0b\x69\x1d\xc9\x82\xa7\x03\x4e\x69\xbd\xad\xfa\xcf\x10\x06\x86\xec\xc3\x18\xc4\xbc\xb0\x03\x06\x05\x5c\x1e\x3c\x40\xaf\xf8\x02\xb7\x76\x11\x53\x5e\xa7\xad\x64\xee\x61\xdd\xd8\x47\x59\x78\xb2\x53\x9f\x8d\x90\x69\x58\xa8\xe6\x6b\x79\x36\xa5\x5d\xec\xd7\xd5\x87\xef\xeb\x13\xa4\xf5\x34\x9f\x7c\x08\xc6\x38\x25\x75\x8e\xce\xb0\xc6\xa7\x0e\x5b\xad\xf2\x55\xfd\x19\x70\x25\x1c\x94\x62\x1a\x3e\x5f\x57\xdc\x0a\x65\x75\x10\x46\x55\x0a\x61\x30\xe9\x78\xb9\x12\x15\xa9\x27\x76\x7f\x77\x6d\x06\xea\x67\x44\xfb\x73\x97\x84\xcf\x07\x0f\x42\xad\x3c\xbe\xf2\x36\x23\x68\x4e\xe1\xc0\xa0\x2d\x6a\x70\x98\xbb\x16\x7a\x18\x86\xb3\x40\xab\x1d\xd4\xdb\x72\x86\xe1\xd0\x67\xd7\x84\xd0\x41\x18\x3e\x59\x74\x30\x95\xe1\x4b\x93\xc1\x3f\x7a\x74\x07\x44\x5d\x9e\xe9\x96\x21\xf4\x0a\xef\x50\xbc\xfe\x4e\xf3\x8c\x92\x58\x3f\x02\x26\xbb\x94\xed\x1f\xfa\xec\x70\x9d\x6f\xdb\xe7\xee\x59\xae\x83\x50\xb7\xdc\x0e\xdc\xf6\x71\x59\xb1\x3f\xfe\x94\x04\xaf\xec\x6b\xa9\xcb\xec\xfd\xdd\xa1\xed\xa9\xf6\x99\x0c\x1f\xb0\x4d\x24\x44\x54\xec\x7f\x5c\xdc\x9e\x57\xd1\x65\x2e\x74\x14\xc1\x9b\x66\x6f\x89\xe6\x5d\xfd\x43\xbd\x51\xcf\xde\x57\x59\xf7\xb0\x63\xfb\x5d\x75\x7d\xd9\xc1\xbb\x98\xbf\x3e\xd9\x20\x16\xb9\xc5\xda\xbf\xc5\x01\xa7\x61\x15\xdd\xfd\x37\xc4\x8e\x9d\x8a\x55\x84\x7b\x2b\x08\x7f\x22\x44\x47\x5f\x21\xf4\xb7\xbd\xd0\x1d\xf7\xe2\xfb\xf8\x8f\xc0\xf7\xf1\x87\xe1\x1b\x18\xfd\x60\xc0\x54\xde\x0b\x58\xc2\x77\xf0\x6d\x41\x94\x95\x28\x76\xfa\x68\x7f\x87\xc0\x51\xb0\x85\x44\x43\x30\x9c\xd5\x5f\x86\x31\x78\xab\x01\x7d\xb0\xf8\xdc\xa7\x0c\x8d\xfd\xdc\xb5\xf8\x71\xda\x3f\x2c\x82\xbc\x53\x15\xe4\x14\xc0\xe3\x12\x80\xa1\x72\xc8\xf6\x93\x5e\x93\x2d\x4b\xd8\x6d\xfd\xdd\xb5\xd9\xa2\x94\xed\xf7\x63\x64\x3e\x00\x28\xfc\x12\xdb\x61\xe0\x4e\xb5\x57\x4f\xeb\xc8\xb5\xeb\xbd\x05\x41\x9e\x94\xf6\x16\x78\x9d\x97\x13\xd1\x35\x52\xec\x60\xfd\x17\xf2\xc4\xe8\x1c\x7d\xb6\x2d\xa1\xf7\xb7\xdf\x50\x4f\x3e\xef\x11\xe4\xf3\x16\x1f\xeb\x2e\x99\x31\xa0\x42\x7b\x3b\x24\x1e\x77\x41\xa4\x33\x42\xc6\x3d\xfe\x86\x77\x1d\xe3\xdd\x0a\x55\x84\x4b\x3a\xa7\x15\xa4\xcc\xc0\xbb\xff\xb8\x5a\x5a\xc8\xb1\x29\xbe\xcb\xd5\xcb\xdc\x2a\xa7\x12\x32\x0d\xdd\x45\x7e\x67\x77\x5b\xe4\xc1\xec\xd6\x77\xb5\xe4\x92\x50\x1e\xa2\x84\xb0\x92\x25\x22\x32\xaf\x4d\x47\xa5\x93\x3b\x18\x31\xd5\x00\xdb\x00\xc8\x91\x6d\xe8\xf2\x1e\x5f\xc3\xe4\x4f\x7c\x9b\x42\x1e\x6e\x10\xea\x83\x8a\xbf\x2d\x93\xee\x01\xd2\x1e\x0a\x1a\x4d\x86\x0a\x3b\xe0\xfd\xc4\x0c\xf7\x34\xb4\xc6\x6b\xd0\xbb\xef\x15\x91\x4b\xbf\xd4\xe8\xf5\x89\xab\x92\x9d\x3c\xa5\x9b\xa5\x7c\xb9\x90\x06\x5b\xab\x1d\xa2\x79\x71\x27\x03\x66\xff\x38\xa9\x77\x52\xf7\x88\x74\xc7\x90\xaf\x4f\xc4\xe8\x5d\x15\xdd\xaf\x1a\x67\xb3\x55\x3b\x59\x6f\x45\x74\x4d\x36\x77\x9a\x71\xe8\x94\x31\x47\xb4\x52\x4c\xcd\x56\xc9\xf7\x5f\xec\x66\xef\xda\x5b\x7d\x23\x3c\xbe\x36\x1c\xbf\xe7\xa0\x16\xfb\x9a\x6c\x14\x76\x16\x7a\xcc\x87\x11\x14\xbb\xe0\xd7\x64\xf3\x59\x29\x12\xd3\x4b\xb8\xd3\xe7\xcf\x9e\x71\xd6\xad\x9f\x93\x8d\xea\x2c\x0e\x63\xb8\x7f\xa0\x4a\xa9\x93\x29\x4b\xf1\x03\x23\x0d\x3f\xdc\xd6\xdd\xe7\x06\x9e\xfd\x84\x17\xbc\x13\xd2\xa0\xf8\x2c\xf9\x06\xbc\x16\x50\x2c\xcc\x3e\xcd\x65\x42\xdc\xb9\x03\xce\x3c\xd0\x69\xef\x75\x85\x47\x82\x7f\x94\x18\xae\x02\xa8\x83\xa1\xe4\xe3\x3e\x44\x9f\x17\xfc\x7a\xe9\xbb\x9f\xee\xcd\xd5\x13\xbc\xc6\x33\xda\x50\xd9\xfb\x98\x75\xc5\xd6\x9b\x27\xbe\x59\xf1\x9d\x9e\x10\x05\x20\xfc\xab\x35\xd1\xe7\x72\x12\x2e\x2e\x8b\x37\x89\x2a\x8f\x86\x7e\xdb\x3f\x7e\x10\xfd\x7e\xbc\x5b\x67\xbd\x14\x75\x51\x53\x98\x2f\x9b\xfd\x8b\x54\x32\x9f\xb4\x7e\x34\x3e\x99\xbf\x7b\xa8\xbe\x8f\x7c\x5f\x8f\xb6\xcf\xc5\x60\x16\xe1\x15\xe1\x74\x3f\x7f\x23\xd8\xa2\xb4\x3b\xdf\x78\xa9\xb6\x13\xbf\x78\x56\x49\xdd\x76\x86\x59\xfc\x99\xfa\x89\xf9\xc4\x0c\xfc\xa7\xb2\x88\xd2\xdb\x3e\x90\x3b\x12\x7a\xdd\x95\x31\x2c\x26\x1f\x85\x27\xd4\xe9\xb5\x1f\x33\x78\x3f\xaa\x61\x03\x75\x3e\x7d\x62\x06\xb0\x63\xfe\xa9\x1c\x50\x5f\x7f\xb8\x80\x70\xb4\xba\xeb\xe2\x3b\x24\xf6\x58\xfd\x17\xf8\x9a\x08\xe4\xde\x43\x11\x04\x52\x23\xb5\x5d\xa2\x1f\x37\x17\x68\x44\x5b\xfd\x40\xe6\x18\xcc\x12\x28\x6f\x31\xf5\xd1\xcd\x6e\x76\x00\xed\x05\xaa\x74\x2a\x59\xe9\x05\xce\x79\xd7\x34\x46\xdd\xd1\x60\xa7\x91\x6d\x02\x6f\x84\xdb\x33\xa8\xbf\xaa\xc7\xcf\x36\x77\xe5\x3b\xe2\x8b\x17\xa2\x9f\x9d\xf1\x97\x7c\x0d\xe3\x05\xdf\x8d\xf5\x53\x72\x79\x78\x77\xe4\xc1\x82\x67\xe2\x6f\x01\xc0\xf1\x18\x3d\x71\x90\x52\xf2\xe9\x7b\x47\x50\x3e\x47\xcd\x12\x9e\x9d\x60\xf3\x24\x16\x83\xce\x4f\x41\x9f\xeb\x04\x64\xf3\x73\xd6\xb5\x35\xe2\x6c\x46\x5b\x84\x9b\x05\xe3\x54\x2e\x57\x0e\xa2\x64\x08\x43\x71\x28\x30\x30\xd2\xa0\x8e\x64\x88\xbc\xeb\x70\x83\x04\xfd\x35\x8d\xa7\x64\x57\x23\xb6\x45\x73\x5c\x11\x99\xde\x9a\x35\x01\xa5\xf2\x5b\x2c\xfa\x3d\x4b\x0b\xce\x3c\x85\x3f\x46\x5f\x1f\x0d\x3b\x75\x32\x84\x0e\x5d\x35\x19\xb8\xe9\xdd\x10\x21\xf2\x79\x2b\x3e\xb2\xb3\xbd\x5f\xd0\x3a\x95\xa9\x24\x96\xdd\x7c\xde\x90\x5a\xdf\x60\xd3\x25\x1f\xed\xfa\x8c\xda\x52\xc4\x4a\x5b\x91\xd6\x26\xc1\xbe\x28\x97\x36\xd0\x62\x24\x8a\x26\x6b\x3f\xe9\x22\x15\x3b\xb0\x3b\xcf\xdb\x9a\xfc\x62\x5f\x03\x45\x47\xc1\x83\x2b\x36\x96\xaa\x5f\x3f\x11\xa7\xee\xe5\xf7\x43\xf4\xe3\x7b\xbd\x56\x96\x93\x7f\x4f\xe0\xdf\x2e\x69\x43\xa2\x11\xd0\x93\x3d\x97\x21\x59\xdd\x22\x22\x56\xf7\x7f\xff\xfb\xb8\x64\x0e\xea\x81\x8f\xe2\x3f\xbf\x0c\x7c\x76\x7e\xbd\x92\x1e\x0f\xef\x45\xd6\x88\x8e\x3c\x87\xeb\xf9\xbe\x50\xa5\xff\x23\x84\x9d\xb3\x19\xfe\x18\x22\xf6\xd3\x8f\xb4\x56\x84\xf6\x81\xd9\xf0\x79\x9a\x2c\x95\xf8\xd8\x96\x3c\x60\x3e\x0a\x60\xc0\x4d\x10\xe3\x08\x2a\xc3\x9a\x1f\x75\x65\x2d\x3a\x47\xb7\x44\xb3\xfd\x82\x41\x61\x11\xf3\x73\x83\x95\x20\x69\xc9\x9d\xa8\x8c\xcc\x5d\xdf\xa8\xf9\xbe\xbb\xb2\x14\xb7\x4e\xd7\x2c\xfc\xb1\x2f\x46\x7d\xe2\x3c\x22\xde\xcb\x01\x8e\x55\x77\xbd\x47\x40\x61\x61\xa7\x49\x59\xbd\x22\xb5\x86\x4b\x95\x7d\x2f\x93\x4c\x99\x41\x2c\x3f\xfe\x1e\xb1\x13\x0a\xdf\x37\xcc\x24\xc1\x88\xea\x0d\x1f\x0e\x3c\x09\x99\xef\x70\x17\x4e\xfc\x6c\x7c\xd7\x1d\x97\x9e\x75\xd1\x99\x11\x1c\x65\xc7\xbe\x4a\x1d\x5c\x45\x30\x0e\x22\x6c\xef\xf6\xae\x09\x5f\x75\xd2\xa7\xf4\x70\x6e\xe4\x8f\xea\xdc\x09\x7b\xf5\x78\x4e\xc5\x92\x70\xb4\x01\x3f\x9c\xde\xc1\x60\xa9\x44\x07\x5d\x56\x08\xce\x89\xe9\x9f\xb5\xa7\x2c\x3e\x9c\x7c\x5a\x56\x24\x50\xa9\x52\xa8\x20\x67\x44\x9f\x3d\xf1\x93\x87\x2e\x19\xc0\x5d\xb7\x80\x4d\x45\x1a\x5d\xc9\x1a\x1c\x2c\xb7\x78\x0d\x15\x03\x67\x1b\xf5\x0f\x94\xac\xaa\x59\xfb\x45\xc4\x7b\xb6\x7c\x15\xef\x5a\x17\xe0\x33\x75\xf1\x1a\x5b\x14\x1b\xcb\x2f\x04\xba\x5d\x6e\x10\x8d\x5e\xd0\xd2\x1c\x17\x7f\x97\xdd\x7a\xba\xa0\xd5\xb5\xa7\x32\x30\x8b\x46\xf9\x21\x64\xea\x64\x0e\x41\xdd\xf0\x65\xb7\x42\x47\x88\x93\x1b\xc2\x25\x9d\x35\xe6\x02\xf4\x13\x7d\x3a\xa4\x0a\xa4\xef\x66\xf9\xc5\x03\xf9\x5f\x36\x28\x4e\x15\xdf\x14\xae\xb0\x28\x1a\xa9\xc5\xa6\x3f\x79\xf7\xb2\x23\xa2\x8c\xf0\xce\x06\x95\x64\xb5\xb6\x8b\xf4\x23\x8d\x5f\x10\xb5\x5f\xba\xdf\x03\x0c\x4b\x2d\xc3\x9f\xd1\x11\x80\x4e\x12\x73\xd0\x11\xa2\x51\x88\x28\x67\x7e\x00\x95\x72\xfe\x49\xa2\x6c\x54\xda\xb5\x1b\xd6\x6d\xf4\x97\x73\x28\x37\x19\x2e\xba\x4c\xa4\x37\x8b\x14\x24\xa5\xff\xf3\x5a\xe9\xbd\x0c\xad\x31\x97\xb4\xa2\x6b\x77\x9f\x4d\x8b\x37\xb3\xb1\x14\x50\xc3\x4d\x94\x47\x6e\xea\x74\x6f\x2c\x02\x97\x23\x0c\x0b\x27\x1a\x64\x75\xf2\xb2\x67\xe6\xa5\xfb\x7d\x7c\x88\xfe\x6f\x2c\x94\x34\xe2\xef\x33\x9d\x63\x8f\x83\xd4\x0f\x3f\x8d\xce\x54\xfd\x06\x5c\x92\x7c\xbb\x4f\xb2\x56\xec\x1d\xf3\x4f\xbc\xa9\x2e\x88\x81\x65\xc7\x78\x50\x5c\x20\xd1\xb2\xcd\x1a\x61\xbf\x3e\xda\x16\xf3\xea\x62\x9a\xb9\x13\xb9\x2e\xe2\xeb\xab\xa9\x5b\x23\x65\xa4\x27\x07\x71\x6f\x93\x3b\xe5\x17\x28\xa3\x94\x2b\x03\xf8\x9c\x6c\x7c\x8c\x71\xea\xbf\xcc\xbc\x7c\x27\x49\x5e\xe1\x36\xbe\x54\xf6\xfa\x85\xe5\xba\x56\xee\xce\x9e\xe6\x48\x55\xfd\xb7\xdc\x11\x0e\x98\xf2\xf4\xf9\xb3\x60\xb0\x3b\x30\xa5\xb2\x77\x43\x74\xff\x3d\x98\x32\xcd\xdf\xdb\x9f\x29\xc3\x45\xf3\x4c\x99\x2e\xce\x16\xde\xac\xaf\x4b\x97\xaa\xbd\x7f\x25\xe7\x47\xdb\xc3\x70\x62\xba\x36\x05\x22\xa1\xb4\x1e\x99\x82\x24\xe2\x8c\x33\x7f\x07\xbb\x21\x36\xf7\xd8\x68\x4b\xbe\x4c\x19\x38\x17\xfa\xed\x79\x25\xc1\xa0\x8f\xf3\xe4\x8f\x0f\x91\x49\x83\x29\x67\x5a\x97\x14\xb2\x21\x74\x75\x7b\x1d\xf6\xd3\x57\xc7\x21\xc1\xc5\x56\x73\xab\x70\x3b\x80\xf8\x34\xdc\x70\x15\x59\xeb\x1a\x56\xa6\x40\xae\x79\x25\x73\x46\x60\xc3\x28\xc5\xe7\xad\xc6\xfc\xed\x04\x2d\xd9\xad\x3a\x7f\xa1\x4a\x38\x16\x08\xd7\x35\xa9\x75\x7a\x9d\xda\x51\xb8\xf5\xda\xd1\x7a\xc1\x71\x4d\x0c\x36\xa6\xc6\x99\x80\x9b\x39\xe6\x31\xa8\x19\x41\x62\x4d\x2a\x3a\xa7\xa4\x46\x82\xac\x31\xd7\x05\xb3\x40\x11\x20\xbf\x50\x01\x09\x95\xfa\xad\x6f\x91\xbb\x4e\x0c\x95\x0b\x99\x44\x87\x28\xfb\xb2\x87\xe6\x45\xdf\x5b\xd6\xb9\xe8\x82\xcb\x5a\x99\x28\x54\xb0\x5a\x57\x61\xd8\xeb\x2c\xbc\xb0\x02\xdc\xd5\xdc\xe2\x8d\x28\x96\x86\x5d\x37\x9d\x30\x47\x7a\x91\xb9\xca\xc1\x19\x6b\x27\xf7\xf1\x57\xb9\x66\x25\xc2\xc2\xf4\x0b\xd1\xcf\x2a\xcd\xf5\xdd\x68\xef\xf3\x2e\xf5\x93\x57\xb5\x2f\x52\xf4\xb8\x3c\xc6\x18\xfd\xe3\x1f\x68\x8e\x1b\x53\xc5\x24\xa0\xef\x33\x92\x94\x2a\xec\xb9\xe7\xdc\x90\xb9\x34\xfb\xb8\x26\x42\x72\xb6\x09\xd2\x0b\xbe\x09\x5b\x62\x1e\xdf\x90\xbf\x25\x9c\x20\xdc\x34\xac\xc2\x52\x17\xc1\xc7\xa8\x26\x15\x51\xd6\x5a\x43\x7f\x75\xf7\xeb\x49\x2b\xe9\x8d\x3f\x73\xa0\x2f\x64\x33\xb8\x0a\xde\x3e\x0a\xaa\x08\x0b\x28\x12\x78\x08\xc6\x22\x34\x35\xec\x42\x04\xb8\x36\xed\x1c\x02\x1f\x99\x41\x8b\xb3\x5b\xd5\x5f\xdf\xe0\x74\x4f\xee\x84\x17\xfe\xed\x79\x06\xd5\x03\x68\x3b\x37\x5f\xab\xed\xe5\xc0\x09\xe6\xaf\xb0\x99\xe7\x6e\x9a\xae\x0e\x2a\x59\x07\x00\x5d\x27\xa8\x9a\x6f\x24\x85\x4d\x05\x88\x28\x6d\x33\x6f\xdd\xac\x94\xc9\x11\x90\xc5\x56\xce\x33\x1e\x53\x5d\x8e\x11\xe1\x76\xb3\x62\x9c\xf4\xed\xf0\xe8\xba\xb9\x2d\x21\xba\x0f\xc7\xe9\x1e\x19\xcf\xa9\x23\xd6\xc3\x2e\x5d\xa9\x47\xda\x11\x6d\xcb\x09\x18\xd6\xa3\x2d\x95\xee\x56\x7e\x7c\x0b\x2e\xaf\x96\x9d\x24\xc0\x0e\x37\x49\x0b\xfa\x0f\xb5\xf5\x85\xfb\x8b\xad\x0a\x1e\x47\xed\x7d\x0b\xdb\x0d\x5d\x1a\xb7\x84\x0e\xdb\x6f\x2b\x3d\x7e\xb7\xc2\xe0\x7b\x97\x05\x2f\x16\x05\x1f\x74\xdb\xee\x52\x3d\xbb\x37\x41\xb8\xf4\x32\x42\xba\xae\x85\xc2\xd8\x79\x51\xec\x5d\x6a\x60\xa7\x17\x31\x4b\x5a\x01\x3a\x32\x9a\xc4\x28\xe3\xae\x0f\xc9\xb7\xfe\x18\x0f\x4b\xec\x04\x7e\xbf\x37\x27\x86\x41\x16\xf8\xbc\xf4\xed\x5e\x60\x87\xb7\xc5\xd0\xaf\x79\x36\x0c\x46\xaa\x09\x83\xa3\xcc\xd6\x01\x74\x02\x3a\xd4\xdb\xac\x3e\xa7\xf3\xec\xd4\x17\x8f\x4c\x61\xd9\x35\x3c\xe3\x55\xb1\xa0\x10\x10\x68\xcb\x1a\x58\xae\xea\x1c\xe5\xea\x4f\x6c\x0a\xd4\x2e\x09\x70\x90\x5d\x38\x99\x9f\x0c\x14\xbc\xce\x1a\x5f\xd1\x15\x11\x12\xaf\xd6\x56\x24\x8d\xb2\x62\x90\x53\x69\xdb\x8c\xbf\x4c\x77\x90\x03\x17\xd4\xd1\x49\xa4\xb9\xc0\x37\x64\xd4\x37\xef\x09\x92\x6c\xab\x8e\x36\x90\x38\x73\x32\xf4\xc8\x45\x7f\xb7\xed\x37\x98\xa3\xae\xa0\x7d\x5f\x6a\x1c\x2f\xb0\x5c\xa2\xa3\x02\xca\xc7\xce\xb6\x70\xfd\x96\xb6\x32\xf1\xb6\xbe\xae\x84\x71\xdc\xdf\x1a\x37\xdb\xba\x3b\xcb\x23\xe2\xb5\xe4\xad\xa7\xf7\x7a\x7d\x0f\xe3\xdb\x32\xbf\xa3\x23\xf4\x3e\x95\x5f\xc5\x25\x8c\xc0\xe9\x75\xeb\x43\x32\x5d\xb1\x22\xbc\x27\x07\x26\x07\xd1\x18\x8a\x01\xc8\x94\xde\xe3\x7d\xc0\x39\x5a\x46\x20\x4b\x4b\x31\x2e\xf9\xff\x31\x5a\x73\x7a\xa3\xfe\x17\x84\xdc\x8b\x19\x36\xae\x16\x9c\x7e\x7d\x5c\x69\x99\xf0\x78\x21\x14\xb7\xc6\x32\xba\xf1\xf4\xaa\x45\x2f\x30\x6d\x5b\xa2\xfd\xb9\x57\x44\xc8\x96\xc0\xdb\x26\x24\xc9\x5c\x10\xa6\x40\x41\xf4\xce\x84\x79\x0f\xd0\x4c\x7c\xa2\xb4\xc2\xa5\x0d\x5a\x2f\x09\x27\xe1\x4b\x2e\xe8\x58\x2b\xbc\xb0\xe1\xe0\x65\x04\x8d\xe4\x8c\x19\x9f\x28\x8e\xc7\xf3\x0f\xb6\xb8\x09\x53\x22\x50\x43\x5b\x53\xc4\x01\xc9\x25\x13\x24\xec\x60\xd1\xc2\x2b\x87\x53\x84\x81\x7e\xd2\xac\x15\x9d\xae\x93\x87\xa5\x49\xd1\x64\xad\x36\x0c\x19\x57\x3a\x75\xdd\xc1\x6c\xcd\x7b\x2f\xa6\x9c\xb9\x80\x64\x62\x0c\xae\xe2\xe0\x5e\xde\x46\x48\xb2\x42\xd5\xb2\x6b\xaf\xc3\x81\x40\x21\xc6\x70\x49\xbf\xd9\x98\x38\x72\x6d\xdf\x3b\xd4\x94\xb4\x1e\x28\xdc\x00\x38\xd6\x49\x65\xff\x52\xf3\x95\x2b\x22\xbe\xc2\x2d\x5d\x1b\xd5\x79\x1a\x6d\xa3\xb0\xa8\x5a\x7f\x22\x48\x48\x3b\xc7\x98\x54\x88\x8e\x0c\x25\x55\x15\x7e\x09\xd3\xc9\xf6\xdb\x02\x41\xfe\xc9\xc0\x98\x5f\x8f\xca\x13\x2a\x48\xe2\xc1\xcc\xb6\x3d\xb7\xce\xbb\x2a\x70\xbe\xa0\x28\x75\x74\xfb\x06\x52\xcb\xf0\xae\xfa\xc0\x15\xc8\x12\x97\x0a\x5f\x7e\x20\xc1\xd3\x21\xbe\x1e\x65\x58\x17\xc8\xdc\x97\x18\xb6\x27\x85\x5d\x52\xcd\x9d\x49\x6c\x1d\x73\x77\xa7\x71\x90\x19\x14\xfd\xf9\x81\x74\xf5\x60\xbf\x1e\xe5\x48\x16\x48\xda\x9b\x6a\x15\x0f\x5e\x2e\x7d\xa5\x34\xff\xfe\x42\xc2\x3b\x95\xcf\x8e\x5a\x43\x0c\x6e\x9f\x2b\xab\x3b\xbd\x64\x87\xee\xf6\x48\x49\x56\x57\x7b\xcb\x63\x25\x79\x1d\xee\x3d\x6e\x8e\xa2\x83\xde\xe7\x55\xca\x37\x44\xf7\x1e\x26\xb9\xac\xd5\x3b\xde\x87\x16\xfb\x08\x3f\xff\x0e\xaf\x9d\xf4\x24\x9e\xe7\xac\x66\x9d\xe7\xbf\xdf\xfb\xff\x01\x00\x00\xff\xff\xeb\xa8\xf3\x10\x74\xe9\x00\x00" func epochsFlowepochCdcBytes() ([]byte, error) { return bindataRead( @@ -338,7 +338,7 @@ func epochsFlowepochCdc() (*asset, error) { } info := bindataFileInfo{name: "epochs/FlowEpoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf0, 0x8f, 0xa6, 0x50, 0xb5, 0xec, 0x1, 0xf8, 0x72, 0xb0, 0x2a, 0xaf, 0xe, 0x17, 0x15, 0x54, 0x66, 0x56, 0x6f, 0xea, 0xe8, 0xed, 0x56, 0xd4, 0x99, 0x5c, 0x66, 0xae, 0x7, 0xef, 0x9a, 0xf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa, 0xe, 0xd1, 0x66, 0x2d, 0xb4, 0x71, 0x3b, 0x4f, 0xf6, 0x25, 0x7b, 0xb5, 0xbc, 0x40, 0x2d, 0x4b, 0x94, 0xcc, 0x15, 0x7b, 0xdd, 0xdd, 0xf8, 0x99, 0x77, 0xe0, 0xc0, 0xe4, 0x95, 0xda, 0xe8}} return a, nil } From d8135ebb9920507cdc99cdde591179c2d9995c9d Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Tue, 9 Jul 2024 22:53:46 -0400 Subject: [PATCH 144/160] use aggregatedSignature --- contracts/epochs/FlowClusterQC.cdc | 6 +++--- lib/go/contracts/internal/assets/assets.go | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/contracts/epochs/FlowClusterQC.cdc b/contracts/epochs/FlowClusterQC.cdc index 2fad21696..0fdd24c2a 100644 --- a/contracts/epochs/FlowClusterQC.cdc +++ b/contracts/epochs/FlowClusterQC.cdc @@ -262,13 +262,13 @@ access(all) contract FlowClusterQC { /// of the certificate. access(all) struct ClusterQCVoteData { /// The aggregated signature, hex-encoded, encompasses all individual vote signatures contributed by nodes across the cluster - access(all) let voteSignatures: String + access(all) let aggregatedSignature: String /// The node IDs that correspond to each vote access(all) let voterIDs: [String] - init(voteSignatures: String, voterIDs: [String]) { - self.voteSignatures = voteSignatures + init(aggregatedSignature: String, voterIDs: [String]) { + self.aggregatedSignature = aggregatedSignature self.voterIDs = voterIDs } } diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 552e0a0ce..b9069ca86 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -10,7 +10,7 @@ // NodeVersionBeacon.cdc (22.87kB) // RandomBeaconHistory.cdc (15.864kB) // StakingProxy.cdc (5.71kB) -// epochs/FlowClusterQC.cdc (18.958kB) +// epochs/FlowClusterQC.cdc (18.978kB) // epochs/FlowDKG.cdc (18.691kB) // epochs/FlowEpoch.cdc (59.764kB) // testContracts/TestFlowIDTableStaking.cdc (9.241kB) @@ -282,7 +282,7 @@ func stakingproxyCdc() (*asset, error) { return a, nil } -var _epochsFlowclusterqcCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x3c\x6b\x6f\x5b\x37\xb2\xdf\xfd\x2b\x26\x01\x2e\x22\x65\x15\x39\xe9\x16\xc1\xc2\x58\x6f\xaf\x2b\xb7\x5b\xa3\xcd\xd3\x6e\xfa\x21\x08\x62\xea\x9c\x91\xc4\xcd\x39\xa4\x42\xf2\xd8\xd1\x06\xf9\xef\x17\xc3\xd7\x21\xcf\x43\x56\xb2\xbd\x6b\xa0\x45\x64\x91\x33\xc3\x79\xcf\x70\xe8\xa3\xe3\x87\x70\xf4\xf0\xe8\x21\xc0\x33\x26\xd8\x1a\x35\x98\x0d\xc2\x56\xc9\x02\xb5\x06\xb9\x82\x42\x56\x15\x16\x86\x8b\x35\xdc\x48\x83\x1a\x56\x52\xd9\x35\x4a\x4a\x03\x1f\x1b\xa9\x9a\x1a\x0a\x54\x86\xaf\x78\xc1\x0c\xd2\x1e\xfa\xba\xd9\x16\xb2\xe6\x62\x4d\xa0\x71\x2b\x8b\x8d\xdd\xc8\xaa\x2a\x42\x94\x02\x84\x2c\x11\x8a\xaa\xd1\x06\x95\x06\xa6\x35\x5f\x0b\x2c\x23\x8a\x00\xc3\x01\x98\x3b\x3a\xff\xd8\xa0\x08\x30\xa4\xb2\x20\x34\x30\x85\xb0\xe2\x4a\x1b\x50\xb8\xe6\x04\x0e\xcb\x19\xc1\xd8\x41\xc1\x04\x28\xfc\xd8\xa0\x36\xc0\xe0\x8d\x34\xa8\x40\x2e\xff\x85\x85\x81\x95\x92\x35\x98\x0d\xd7\x50\x48\x61\x14\x2b\xcc\x9c\x30\x5c\x6d\x70\xf7\xa0\xaa\xa0\xd1\xe8\xbe\x0d\xcb\xa5\x02\xbc\x41\xb5\x03\xdd\x2c\x35\x81\x14\xc6\x9f\xed\x76\x83\x0a\x1d\x3e\x22\x85\x81\x36\xec\x03\x96\x1d\x3a\xfd\x09\xce\x8c\x3d\xdd\x12\xd7\x5c\x08\x3a\x9e\x5c\x01\xb2\x62\x03\x3f\x11\xac\x4b\x34\xcd\x16\xb6\x1b\xa6\xd1\x9e\x00\x58\x59\x73\x01\x5c\x70\xc3\x59\xc5\xff\x6d\x45\x94\x90\x0c\xb7\xdc\x6c\x08\x2c\xad\x6d\xf1\x45\xae\x8e\x30\x13\x7e\x22\x8c\x39\x7d\xb0\x61\x9a\x68\xe7\x62\x5d\xa1\x15\xb7\x83\xcb\x0c\x70\x4d\xb2\x93\x24\xe1\x28\x9f\x1a\x98\x28\x5b\x26\x4b\x51\xd1\x3f\xaa\x8a\x7e\xc5\x15\x5c\x13\x80\x6b\x58\x35\xc2\x09\x5b\x8a\x02\x2d\x7f\xe9\xbf\x17\xa2\x40\xf0\x6b\x5b\x5a\x37\xec\x06\x41\x61\x81\xfc\x06\x4b\x40\x21\x9b\xf5\x06\x78\x89\xc2\xf0\x82\x55\x5e\x01\x8d\x04\xdd\xa8\x2d\xd3\xda\x23\xba\x45\xbe\xde\x10\x4f\x15\xea\x8d\xac\xca\x99\x17\x22\xbc\x5a\xc0\x1a\x05\x2a\x66\xf1\x5b\x96\xd2\x41\x56\x5c\x70\xbd\xc1\x32\x90\xef\x39\x7c\xcb\xab\x0a\xd0\xff\xea\x46\x92\xca\xcf\xbd\xb8\x98\xd8\xc1\x56\x72\x61\x66\xf4\x4f\x29\xd0\x1e\xf8\x63\x43\xba\xd0\xae\x06\x2e\x56\x52\xd5\x0e\x5b\x60\x7b\x3c\x1b\x81\x5a\xee\xa0\x21\xee\xda\x6f\xae\xd7\x68\x16\xfe\xdb\x96\x4d\x84\xd2\xd1\x9f\xca\x98\xd8\x0f\x35\xd6\x4b\x52\xde\x15\xc9\x08\x15\x47\x6b\xa0\x4e\x01\x75\xcd\x94\x89\xeb\x35\xdc\x6e\xb8\x15\xaf\x54\x25\x17\xcc\x78\xbb\x26\xc0\x89\x6d\x1b\xc5\x84\xe6\x84\x95\x68\x5a\xa2\xb9\x45\x14\x0e\xa0\x06\x2e\xe0\xe7\x4a\xde\xce\x8f\x1e\x1e\x1f\x1d\xf1\x7a\x2b\x95\x81\x85\xda\x6d\x8d\x3c\x3a\x62\x05\x81\x98\xb0\xaa\x9a\xb6\x34\xd2\x6a\x7f\x9e\x57\x0b\xf8\x7c\x74\x04\x00\x70\x7c\x0c\xa7\x7f\xf2\x4f\x80\xbb\x78\xf1\xfc\xea\xf5\xd9\xe2\x0a\xde\x9c\xbd\xbe\x38\xfb\xf1\xb7\x9f\x2e\xff\xdf\x30\x7a\xc0\xc7\x70\x21\x4a\xeb\xe5\x88\xc1\x68\x36\xa8\xbc\x4e\x92\xd1\x17\x8d\x52\x28\x4c\xb5\x83\x25\x12\x3f\xbd\x6d\x61\x39\x6f\xb7\xaf\x60\xc5\x2a\x32\x6c\x21\x9d\xc5\xc9\x2d\xa9\xa7\x54\x4e\xfb\x96\x08\x6c\x59\xa1\x53\xf1\x65\xcd\x8d\x03\x6f\xf7\xa7\x3c\xbf\x61\x0a\xb8\x78\xa9\xe4\x5a\xa1\xd6\x27\xf0\xa3\x94\x55\x4b\xe4\x55\xeb\x08\xfa\x4e\x36\xea\xa5\xa3\xd6\x49\x3b\x43\x50\x14\xb2\x11\xc6\x21\x09\xdb\x4e\xe0\xad\x17\xed\xbb\x21\x66\x70\x52\xc9\x1b\xeb\x5a\x15\x6a\xd9\xa8\xc2\xfb\x92\x4a\x21\x2b\x89\x21\xe4\xb3\x2b\xc6\x6b\x2c\xc9\x08\x98\x23\xea\xe2\x3c\xc2\xf2\xae\x18\xbd\xb5\x9b\x1d\x18\xcb\x89\xa0\x5d\x71\xe1\x73\xb7\xd1\xfb\x0a\x23\x1d\xd8\x88\x9e\x9c\x4c\x5c\x4b\x86\x6a\x11\x59\xe6\x3a\x77\x8e\xa0\x59\x8d\xa0\xb7\x58\x50\xc4\x82\x8b\x73\xeb\x06\xde\xe4\xc4\x87\x58\x65\x78\xdd\x82\xbb\x16\xbc\xba\x86\x1a\x99\xd0\xce\x29\x1a\xeb\xf5\xb9\x26\x69\x7a\x17\x50\xb0\x2d\x5b\xf2\x8a\x0e\x10\x38\xdd\x3b\x2a\x69\x40\x0a\x26\xd0\x3e\xb0\xf7\xe2\x7c\x06\xcb\xc6\x00\x37\xc4\x4f\xf1\xc0\x64\xac\x8c\x20\x8d\x6a\xb0\x43\x58\x1f\x26\x09\xa4\x2b\x88\x40\xdf\xa8\x02\x58\x28\x0b\xb7\xe1\x04\x3e\x5f\x1a\xc5\xc5\xda\x29\xdc\x97\x61\xb3\x60\x26\x68\x4d\x10\x33\xb7\xce\x64\x5c\xf1\x08\xc2\x1b\x56\x35\xe8\xdc\x5c\xd8\xcd\x45\x89\x9f\x52\xc2\x82\x2e\x38\xca\x08\xb4\xd7\xc9\x84\xb0\xdf\x2f\x84\x79\xf2\xf4\xcb\x7f\xcf\xf9\x2c\x5e\x3c\xbf\xbc\x3a\x7b\x7e\xf5\x5f\x70\x3e\x0b\x26\xa4\xb0\x81\x70\xcb\xcc\xc6\x99\xb2\x0b\x5d\xa4\xc1\xb9\xf9\xf5\x7d\x46\x85\x06\xce\x68\xf5\xa5\x91\x8a\xad\xf1\x25\x33\x9b\x13\x48\x3e\x0c\xee\xb0\x76\x31\xba\x23\x92\xf6\x1a\xb7\x0a\x35\x0a\x63\x05\x38\xec\x7b\x1c\xbd\xb0\xe6\x37\x21\xc8\xcc\xa1\x87\x53\x1b\xd5\x14\x06\xbc\x60\x43\x14\x49\x3d\x9b\x55\x8b\x90\x65\x06\xd0\x94\x03\x71\x91\xfd\x8a\x29\xc5\x76\x73\x17\x47\x1b\xc1\x3f\x36\x58\xed\xbc\x77\x59\x71\xcf\x9f\x00\x97\x8d\xd3\x18\xd7\x75\x39\x63\xe9\x08\x0a\x97\x93\xf9\x87\x4d\x48\x9c\x80\x6c\x62\x47\x6c\xb8\x38\x87\x9c\xc2\x51\xc8\xb4\xda\x83\xe8\x68\xf6\xd3\xef\xbf\xf4\x19\x62\xa4\x61\x95\xf7\x73\x2e\x13\xa2\x0c\xc1\xa7\x56\x2e\x3d\x3e\x10\xb1\x85\xe4\x30\x07\x7c\x39\xba\x37\x2e\x01\x23\x1b\x77\x80\xbd\xf3\x3d\x34\xa1\xcd\x80\xfd\x8a\x3b\xe7\x3b\xad\x7b\x3c\x2c\x02\xa4\x84\xb4\xba\x6e\xc5\x2f\x1b\x03\x54\x3f\x30\xd3\x28\xca\x8c\x14\xd4\xa8\xb5\x2d\x69\x32\x39\xd8\x58\xad\x8d\x54\x58\x02\xf9\xef\x5c\x11\xc6\x4e\xe2\xb3\xac\xf6\x28\x5e\x77\xa3\xc8\xa9\x2a\xf1\xfe\xce\x85\x6e\xed\xfd\xfa\x2c\x7a\xe3\x36\x15\xa6\xe2\x40\x93\x53\x27\xa2\xad\x2a\x73\x0d\x35\xdb\xce\x72\x62\xca\x32\xa4\xb8\xf1\x60\xd6\xd4\xfd\xc1\x2c\x64\xe1\x96\x71\x03\x4b\x56\x7c\xa0\x80\x68\x81\x59\x7c\x15\xd7\x66\x9e\x81\xbc\x58\x05\x22\x29\x1a\xd0\x22\x57\x26\x51\xba\x1e\x71\x5c\x5b\x24\xd7\x1e\xcb\x35\xac\x38\x56\x65\x4c\x50\x84\x14\x8f\x6c\x24\x1c\x07\x4c\x71\xea\x9b\x60\xe7\x70\xbb\x19\x8f\xcf\xe5\xb1\xb4\x6a\x98\x98\x06\x7d\xee\x1a\x86\x62\xc5\x07\xed\x64\xe7\xac\xdf\xb1\x84\xb0\x6f\xe4\x2d\xd4\x8d\x4d\x8f\xeb\x25\xa7\x82\xd3\xdb\x4d\x8c\x90\xe4\xc9\x62\xc0\xb2\x75\xd0\x18\x4d\x0e\x36\x11\xf0\xcc\x1d\xe9\xaa\xb5\xa1\xbd\xd6\x4b\xf5\xdc\x24\xf3\x21\xb3\xfd\x86\x3f\x85\xcf\x71\x33\xfd\x68\xac\x56\x73\xe7\x0c\x4f\x93\x58\x99\x7d\x9d\x00\x84\xd3\x14\xfc\x51\xb6\x96\x0e\x32\x60\xfb\x70\x0a\x8f\xb3\x75\xc4\x11\xcf\x2a\x2e\x52\x70\xf3\x1b\x0a\xdf\xba\x43\x21\xfd\x24\x60\xe1\x34\xfb\xf4\x17\x0f\x2a\xdb\xf2\xa5\x7f\x86\x51\x08\xfd\xa5\xb9\x82\xc0\x29\x7c\x1e\x80\xb7\x57\x62\xf9\x9e\x8e\x4e\xbd\x46\xd3\x28\xe1\x2a\x29\xd1\x84\x5a\xec\x60\x0f\xbb\x6a\x04\x68\xfe\x6f\x9c\x4c\x83\xc4\x3b\xfc\x52\x16\xbe\xff\x6e\xd2\x15\xe0\xbc\x42\xb1\x36\x9b\x29\x1c\x42\x5e\xcd\x05\xaf\x9b\x1a\x74\x53\x13\x8d\x56\xf5\xbd\xe4\x14\x7e\x6c\x38\x39\x3f\x2e\x40\xaa\x12\x49\xf4\x69\xe1\x11\x98\x08\x2c\x83\x7e\xc3\x2a\x5e\x0e\xf5\x7b\x9c\x99\x50\xb1\xea\xce\x3e\x1f\xb6\x15\x8e\xb7\x96\x03\x44\xca\x55\xa8\xd4\x03\x2b\x9e\x7e\xdf\x61\x05\x5f\x0d\x08\xff\x14\x1e\x0f\x68\x98\xe7\xda\xe3\x8e\x1e\x65\x1f\x29\xb8\xad\x2a\x29\xd5\x0b\x81\x57\x1b\xae\x4a\x38\xed\xc3\x3f\xf6\xa4\x4c\xfe\x3a\xa5\x3c\x8e\x0b\x83\x6b\x54\x50\xf2\x1b\xae\xb9\x14\x33\xe0\xa2\xa8\x1a\x12\xb6\x05\xd5\x37\x21\x65\x75\xce\x03\xf9\x6e\x0a\x0f\x73\x9c\x7d\x92\x4a\x7e\xf3\x1a\x6b\x46\xc6\xab\x86\x28\xfa\x9f\x96\xa2\xa3\x2e\x7b\xb2\xbd\x7f\x8f\x68\x9f\x74\xdd\x84\x63\x11\x11\x46\xff\xff\x4b\xbb\x2e\xe7\x17\x20\x15\x25\xfb\xb7\xa6\x28\xf7\x71\xdb\x4b\x44\x25\x49\xd6\x1e\x55\xd5\x86\x99\x46\xc7\x28\xe8\xb5\xe8\x81\x86\x57\x8b\xd0\xab\xe8\x46\x9a\x58\x77\xb1\xc4\x0e\xbd\x7a\x93\x3a\x76\x3b\x46\xf8\xa9\x40\x2c\x63\xdf\x25\x53\xc1\xeb\x59\x37\xa1\x12\x03\x84\x24\x6d\x24\xd7\x96\xd1\xbc\x44\x65\x1b\x7c\xf5\xb6\x42\x1f\x58\x5c\x18\x47\xb3\x91\xa5\x67\x82\xce\xb3\x84\x98\x09\xf8\xf8\xe7\x52\x29\x45\x51\x0a\x83\x71\x75\x0f\xeb\x6a\x4b\xd7\xb8\x92\x0d\x61\x91\x6e\x87\x5f\xef\xb3\x00\x57\x9c\x72\xed\x11\xfb\xe2\x10\xc6\xcc\x90\xeb\x85\xa7\x9c\x6c\xd0\x85\x9a\x1f\x3a\xf2\x5f\xb5\x39\x14\x39\x8b\xbb\xbd\xe7\xfc\x03\xee\x86\x82\x40\xb0\xe6\xbd\x9b\xdf\x7a\x54\xef\xee\xc1\x3f\xbc\x2d\x74\x7c\xc5\x00\xe4\x44\xdd\xfc\xf6\xde\x92\x2f\x7b\x02\x8c\xdf\x2a\x78\x35\xa6\xa9\xff\xf4\xde\xd0\xe9\xea\x2b\xe7\xfe\x16\x7b\xdc\xdf\x80\xae\xb6\x15\x2d\x65\xbb\x26\xea\xcc\xcc\x6d\x0c\x9a\x32\x9e\xfc\x90\xc0\x82\x5b\x76\x24\x24\x14\x90\xfc\x62\xdb\xed\x87\xb4\x62\x72\x54\xc0\x0b\x51\xed\x5a\xaf\x6e\x5c\x5f\x94\xaf\xb2\xc6\xa5\x6e\x15\x79\xf4\x40\x5e\x92\xe4\xb8\x9c\xe6\x79\x21\x06\xcf\x95\xaa\x54\x97\x0c\x4f\xca\x42\xa1\x8d\x2c\x20\xf0\x16\xb0\xde\x9a\x1d\xbc\x5a\xf4\x16\xda\xc6\x53\x7b\xc0\xe4\x78\x70\xda\xfe\x3b\x24\x4f\x6d\x1e\x34\x4b\xf2\xff\x13\x78\xfb\x6e\x16\x74\xe2\x24\x27\x78\xe6\x6a\xe5\x8b\x73\xbb\x6a\x3a\x48\xe9\x59\xe9\xfa\xc0\x2d\xc4\x08\x4d\xcf\xac\xb1\x8b\xd0\x88\xb2\x7d\x6f\xe2\x5a\xdb\xab\xeb\x00\xb3\x56\x5e\x33\x53\x6c\xa2\x07\xd0\x7b\x4d\x3f\xfc\x04\xa8\xd1\xfc\xf2\x0c\x67\x3c\xed\xa2\x9f\xc1\x5f\x06\x7d\xb0\x2d\x9e\x94\x92\x5b\x72\xa9\xae\x72\x31\x89\xf3\x18\x10\x7e\x5c\xd4\xca\x9f\xe0\xcc\x83\xab\x18\xa6\xc6\x03\xe8\x6f\x3e\xed\x68\xd3\xf8\x76\xfa\x49\xf4\x62\xce\xca\xf2\x32\x88\x67\x62\x49\x88\xd2\xba\x37\xfd\x1a\x28\x6f\x9c\x3a\x38\x18\xae\x56\x1f\xdf\xff\x65\xf0\x9b\xfe\x6f\xbf\xf4\xf5\xca\xbb\x9b\x04\xfb\xa1\x41\xb8\xe7\xa6\x72\x9c\x3d\xa7\x15\xab\x4f\x2f\x5c\xa6\xdb\xea\xc9\xf7\x38\xd2\xb6\x24\x0c\x36\xd9\x42\xac\x58\xa3\xf9\x67\xaa\x77\x13\xcb\xa2\x32\x84\x8d\xa9\x2b\xc0\xba\xd1\xc3\x13\x3d\xa0\xb6\x6f\xdd\xfe\x77\x63\xe4\x5f\x12\xf9\x6d\xd1\xec\xcb\x30\xdf\xb1\xc5\xf2\x6e\xca\x6d\xa6\xbd\x9f\x68\xe7\x03\x1c\xe5\x83\x95\xd5\x30\xc9\x5e\xd7\xf7\x32\xde\xc4\x9e\x8c\x4f\x49\x0a\x59\xd7\xbc\x65\x7c\x52\x8e\x1e\xc6\xfc\xdf\xf7\x84\xcd\x89\x3b\x46\x94\x84\x4b\xef\xf6\xc9\x62\x7f\x10\x26\x70\x77\x0b\x26\x3b\xde\x57\x9c\xca\x0b\xe6\xe0\x03\xcd\x3c\x8e\x70\xae\x41\x49\x1d\x70\x20\x38\xed\x16\x9b\xce\x76\x92\x16\xf6\xf5\x1b\x7b\x5b\xa9\xd2\x46\xa6\xd3\x3f\x25\x6b\x7b\x93\xd0\x69\x6b\xfa\x06\x90\x0d\xf3\x06\x34\xaf\xb7\xd6\xad\x0a\xc3\xb8\xd0\xa0\x2d\xfd\xae\x33\x15\x03\x09\x96\x59\x96\x12\x32\xc2\x0d\x7e\x02\x14\x85\x2c\xdb\xef\x81\x1b\x7b\x36\xdf\x71\xb3\x77\xca\xeb\xb5\xc2\xb5\x35\x60\x2a\xd8\x1a\x5e\x0d\x95\x63\xfd\xbe\xaf\xef\xa8\xda\x8e\xd9\x40\x3b\xb5\xd7\x7e\xd3\x86\x7d\x70\xd7\x57\x9d\xbe\x5b\xb7\xf5\xe1\x1c\x65\x10\x55\x1f\x72\x7e\xe2\x16\x81\xc5\x38\x69\xef\x41\x5d\x01\x7d\xed\xf1\xfe\x8a\xbb\xeb\xe9\x28\xce\xe8\xe0\x63\xce\xda\xc7\xbb\xc1\x4f\x8f\xba\xec\x3c\xa8\x97\x13\xb3\x85\x51\xd0\x83\xbd\x67\x7f\xe3\x12\x9a\x6e\x93\x90\x1c\x4c\xdd\xc5\xc7\x68\xb7\xd5\xef\xbf\x18\xef\x23\x13\xca\xb6\xa5\x1b\x3d\x62\x8b\x61\x14\xf6\xed\x48\x13\xd7\xba\x15\xdb\x7a\xca\xa5\x37\x1b\xa4\xc6\x39\xc9\x3f\xf6\x9a\xe0\x56\x0d\x45\x2c\x07\xdd\xb7\x2c\x28\xc6\x3f\xfd\xfe\x04\xee\xbb\x4b\xb6\x8b\x73\xa8\x1b\x6d\x6c\xcf\xc1\xb7\x15\xfc\x3a\xaf\x8b\xf7\xef\x6a\x09\xb5\xdd\xd0\xd3\x5e\x50\xb4\x0b\xea\x98\x99\x0c\x7e\xed\xdb\xf1\xa7\x9e\xcc\xfe\x82\x94\x19\x70\x9a\xf1\xa6\xbf\xf8\x36\xf4\xa6\x5a\x66\x0d\x39\xd0\x5e\x2b\x08\x4d\x9b\xbd\xbc\xef\x6b\xf6\xa0\xaf\x4b\x4f\x1e\xff\x7d\x20\x36\xef\x1d\x27\xef\xbb\x8a\x3e\x88\xa9\x65\x61\xb7\xb0\xea\xb9\xce\xe4\xf2\x87\x74\x74\xa4\x47\xc4\xda\x3b\xd7\xb4\xb2\xb0\x8d\x6e\x51\xe6\x17\x16\xc7\x2e\x31\x1d\x68\xaa\x8d\xdf\x15\xb5\x33\x07\x30\x66\xb1\x1f\x8b\x0e\x48\x50\x58\x48\x35\x5c\x2a\xdf\x71\xc7\x73\x15\xac\x31\xb9\x73\xb0\x2e\xee\xab\x6f\x5e\xc2\x35\xeb\x65\x5a\xbc\x38\xc9\xbc\x1b\xc1\x99\xf9\xd4\x80\xd0\x99\x92\x2d\x6d\xbe\x0a\xef\xb3\x5c\x1b\x46\x43\x84\x2f\x14\x0a\xa9\x14\xea\xad\x74\x9d\x08\xdb\x88\xd8\xeb\x55\x93\x5a\xab\x77\xa8\xd6\x1d\x75\x3a\xe1\x7a\x80\x17\xb3\xae\xde\xce\x06\x60\x7f\x4b\x97\x3c\x67\x7e\x6a\x59\x7a\x78\xf1\xb3\x51\xdb\xc8\x96\x11\x65\xde\x2d\xd0\x3f\x0f\x31\xd3\xac\xa4\x39\xd4\x29\xe4\xf4\xcf\xd9\x76\x8b\xa2\x9c\xc4\xbd\xd3\x03\x11\x87\x2a\xe8\x7d\xa0\xf8\x4e\xa4\x74\xaa\x80\xce\x7f\x9e\xfe\x27\x6e\xc2\xea\x76\xc9\x0c\x0b\x0e\x83\x32\x08\xd5\xe6\x59\x21\xf0\x26\xd5\xdb\x9d\x4e\x81\x4e\x75\x4e\x20\x3f\xf7\xf4\x3a\xc9\xa8\x22\xb3\x66\x69\xfa\x30\xb3\x69\x59\xbd\x65\x5a\xa3\x9d\x7f\x23\x0d\xe2\x37\xbc\x6c\x7c\x6b\x31\x35\x7e\x9b\x2f\xf1\x65\x63\xdc\x64\x85\x9f\x4b\x2c\x94\x74\x73\x6a\x77\x5e\xbe\x76\x5d\xc0\x9f\x6f\x8d\x01\xcb\x98\x35\x5a\x43\x1c\x26\xe3\x60\x53\xeb\xd9\x52\xfe\x8b\xaf\x35\x94\x8e\x0a\xd1\xf9\x3b\x93\x3a\xbc\x5b\xd9\x62\x32\xd7\x18\x47\x10\xd8\xca\x65\x6a\xb8\x8b\x03\xa2\xed\x54\x96\x9d\x84\x6c\x01\x0a\x6d\x98\xf0\x90\xa5\x2c\xe3\x2c\xd0\xaa\xb1\x81\x77\x2b\x0d\x0a\xc3\x59\xe5\x07\xe5\xdc\x80\xce\x2d\xaf\xaa\x56\x4f\x85\x1d\x02\xf3\x1e\xd9\xb7\xda\xf2\x71\xaf\x76\x18\x47\x8a\x15\x57\x35\x96\xc0\x92\xd9\x89\x30\x90\x19\x67\x88\xf0\x93\x09\x53\xb0\x5d\xb1\x46\xca\x1d\x67\x46\x72\xfc\x8b\xf3\x34\x87\x54\x30\x19\x4d\xf8\xc7\xb3\xca\x3b\x33\x7e\x0f\xe9\x03\xee\x02\x32\x97\xec\x7f\x25\x2e\x9b\xe9\xc7\x72\xa0\x8f\x6f\x30\x81\xed\x6f\x38\x2c\x55\xbd\x97\xcd\x2d\x7a\x7d\xd4\x7e\xe4\xc9\x63\x99\x9e\xc0\xfd\x05\x13\xb6\x79\x1b\x5a\x98\x43\x13\x63\xb1\x9a\xb2\xb6\x39\x36\x01\xd7\xcd\x6f\xbf\x21\x41\x6d\x0f\x4b\xe1\x2a\x7e\xc8\x16\x0e\x9c\xcb\x9f\xca\x75\x33\xce\xa9\x2c\x36\xaa\x19\xed\x66\x5c\xfa\x39\x06\x12\x9c\x9b\x88\xb1\x0d\x32\x58\x30\x41\xda\x5d\xb0\xaa\xc2\xd2\x29\xbb\x24\x83\xd9\xa2\xea\xcc\xcc\x10\x94\xec\xc3\x4b\xa6\x58\xad\x4f\x72\xaf\x70\x02\x97\xae\x54\xbc\x4e\x82\xeb\x75\x5b\x3a\xf7\x0b\xc4\x0c\x66\xf8\xc9\x72\x99\x5f\xfa\x45\x60\xba\x69\x34\x0e\x12\x90\x49\x97\xba\xc4\x05\x3e\xdb\x9f\x3a\x0f\xab\x58\x2e\x89\x74\x70\x93\x4a\x22\xb2\x87\x38\x9b\x4c\x2a\xc6\x05\x6c\xfd\x8a\xfb\xfd\xe6\x78\x4a\x5b\x28\xb0\xfe\x01\x8f\x7d\x79\x95\x4c\x8a\xd8\x22\x8b\xe0\x2d\xd1\xf5\xda\x87\x81\xf9\x13\x0d\x80\x0a\x59\xe6\x01\x80\x3a\x46\x44\x12\xfb\x85\x69\x82\x52\x4e\x12\x8d\x9e\x46\xd0\x01\xa4\x9d\xe2\x74\xc6\xc1\xb4\x09\xe6\xb2\xd7\x42\x5c\x9f\xcd\xbd\x53\x68\x96\x15\x2f\x9c\xbf\xc9\x46\xfa\xe3\x84\xcf\x87\x8e\x51\x90\x1b\x73\xbb\x9c\xed\xbc\x0c\xff\x9e\xf4\xce\x14\x97\x9d\x74\x6d\x6e\x5e\x22\x69\xd6\x2f\xf8\x69\x32\x9d\xf5\xf6\x45\x09\x9c\x55\x6b\xa9\xb8\xd9\xd4\x4e\xc1\xf3\xdf\xcd\x7f\xfc\xed\xf2\xfd\x8f\xbf\x5d\x3e\xf9\xee\xfd\x5f\xff\xf6\x24\x03\x32\xed\x9d\x77\xb1\x41\x37\xdb\xa3\x11\xdb\x09\xcf\x56\xd4\xd2\x65\xfb\xb1\x79\xa4\x7d\xe8\xe9\x1d\x9d\xeb\x37\xf6\x8b\xd3\xf6\x74\xf3\x1b\x54\x7c\x35\x70\xfe\x24\xf9\xcc\x95\xee\xce\xd3\x63\x49\x19\xd7\x49\xa6\x5e\x7b\x37\x95\xb2\x66\x5c\x5c\xe2\x96\xb9\x4b\xd6\x2b\xb6\x3e\x81\xfb\x3f\xff\xf6\xe2\x8f\x47\x8b\x10\x10\xdf\x93\xe2\x3c\x7a\xf3\xf8\xf1\xa3\xc5\xe5\xe3\xc7\x8f\xc8\x3b\x3c\xba\xdf\x07\xb5\x61\x7a\x93\x30\xfe\x97\xf4\xe3\xfc\xd7\x67\x67\x8b\x27\xdf\xfd\xed\xfd\xd7\xf0\xfe\x4c\x6b\x54\xa6\xad\xb0\xb8\xc9\x35\x8a\xb9\xef\xfb\xfc\xf3\xbc\xee\x93\x18\xcb\x18\x67\x0b\x91\xb1\x50\xb8\x10\x43\x99\x03\xc9\x84\x77\x43\x45\x9f\xb8\x60\x08\xfd\x5e\x94\x8d\x44\x4b\xac\xa4\x58\x6b\x30\xb2\xa7\x09\x9d\x16\x47\xdf\x7e\xfd\xa7\xb7\x89\xf9\xbe\xeb\x1d\xe5\x87\x1f\x60\xcb\x04\x2f\x26\xf7\xaf\x22\x52\x7f\x0a\x97\xcc\x37\x2a\xb4\xf9\xb2\xb9\xdf\xfb\xd3\x31\x82\x7a\xb4\x84\x11\xf4\xb7\x29\xc5\xef\xee\x8d\xb0\xc2\x13\xf1\x20\x7d\xae\x92\x25\xc4\x01\x9d\x25\x2f\xb6\x76\xe6\xa3\x77\x1c\xa9\xf7\xea\x23\xbd\xc4\xae\x29\x26\xf3\x79\x6e\xb8\x2d\xcf\x79\xdd\x35\x55\xda\xfa\xc9\x6c\x6b\x3a\xb8\x38\x74\x6e\x12\x7b\xea\xab\x42\x20\x45\xe0\x6d\xbf\x3f\xdf\xeb\x7d\x06\x36\xe4\xd3\x55\x09\x37\x0e\xe8\xd1\xa7\xe4\x90\x26\xe4\x23\x38\xb6\x45\x8c\xb7\x23\xb3\x5f\xf6\x68\x03\x03\x60\x81\x82\xc3\x6e\x09\x12\x0a\xda\xab\x82\x88\x74\x80\x47\xf6\xcd\x00\x79\x4a\x59\xba\xbb\xa4\x38\x14\x18\xd4\x6f\xc9\x8a\x0f\x63\x14\xdd\xa9\x21\xe1\x56\x89\xfe\x3f\xdd\x93\x8c\x0d\xeb\x74\x2b\x80\x6e\x46\x96\x8d\xda\x1b\x54\x2b\x56\xf8\x38\xe0\x1e\x5d\x85\x5b\x07\x57\x5e\x70\x19\x5f\x16\x50\xbd\xc2\x94\xe9\x56\xd0\x0a\xd7\x4d\xc5\x14\xb0\xc6\xc8\xda\x55\x4e\x7e\x34\xd5\xcf\xbc\xd2\x22\x37\xf2\x9a\x8e\xe0\xf8\x3c\x5f\xbb\x19\x5a\x97\x3a\xb5\xef\x08\xae\xe9\x8c\x76\xe2\xf7\xba\x7d\x14\x64\x36\xca\x3e\xe2\x62\xc9\x4b\x84\xf1\x0a\x86\xc7\xc3\x59\x38\x2f\xda\xe3\x7c\x1e\xcd\xd8\x5c\x42\x6e\xb3\xf1\x43\x6a\x82\x13\xf8\x5f\xbb\x76\xbc\x53\x6a\x98\x32\x2e\x2d\x9b\x0c\x3c\x7f\x49\xe6\xef\xfa\x3b\xe5\xd6\x6f\x1c\xae\x6b\x68\xd1\x4a\xaa\x02\x2f\xbb\x2b\x3b\x35\xae\x9d\xd3\x6f\xd9\xb2\x55\xf2\x86\x97\x7e\x06\x25\x3c\xe7\x30\x32\xd4\x22\x46\x76\x8b\x11\x97\x0c\xe9\x59\x04\x6a\x07\x9a\xfd\xb4\x87\x1b\x5f\x40\xf7\x64\x80\xe4\x6d\x4b\x17\x31\xf0\x12\x28\x93\x8d\xa5\xe9\x64\x40\x30\x59\x32\xee\x26\x3c\xb4\x1f\xf1\x18\xac\x91\x3a\xb5\x79\xa7\x8a\xe4\xba\x1d\x93\x0e\x63\xc1\x2e\x57\xa9\x76\x9e\x30\xbe\xac\x30\x34\x38\xa3\xce\x65\x60\x82\xfa\xcd\xfc\x3b\x38\x0b\x48\xa1\x36\x8a\x17\x3e\x60\x12\x9d\x76\x14\x5b\x06\x1b\xca\x5e\x94\xfe\xd9\xea\x36\x7c\x21\xfb\xf7\x47\x5e\x84\x39\xbc\xe0\x4c\x52\x78\xed\xbf\x07\xfb\x79\x96\xf7\x52\xac\xf8\xda\xf6\x5d\xdc\x5b\x50\x6f\x83\xfd\x26\xc2\x83\x38\xdd\xa3\x07\xab\x22\xfb\xd0\xea\xc5\xd5\x4f\x27\x4e\x20\x41\x0e\xbe\xe2\xf3\xf6\x6e\xe4\xf6\x51\x85\x37\x58\xb5\x42\x48\x5e\x2c\x36\x5b\x29\x32\x78\xf9\x63\x43\x3b\xa7\xee\xcd\x1c\xdc\x0b\x81\x97\x76\xac\x7e\x94\x9e\xc5\xd9\xef\x57\x17\x2f\x9e\x9f\x58\x2a\x5c\x52\xc1\x35\xa0\x62\x1a\x75\x32\x56\xd3\x79\x66\x74\xbc\x55\x78\xc3\x65\xa3\xd3\xee\xc9\x37\x99\xfd\xe7\x3d\xfe\xbc\x2d\xe9\xba\x25\xf5\xb8\xef\x6f\xbd\xfd\xc0\x34\xf6\xd0\x6d\xdc\xe0\x38\x76\xfb\x58\xaa\x7d\xe2\x77\xc0\xec\x95\x2b\x15\x5d\xab\x34\x36\xcd\x28\x52\xf0\x82\x6f\x99\xf5\x0a\x99\x6d\xa6\x28\xdb\xc7\x2c\x21\x34\xa6\x53\xca\x23\x23\x80\x70\x48\x24\xf5\x7a\xdf\x4e\x66\xf4\x2c\x22\xe7\x4b\xfa\x29\xbf\xab\x1c\xa0\x2c\x34\x3d\xee\x4d\x87\x67\x7b\xc6\x33\xe0\xb6\x5b\x92\x25\xcd\xfd\x9f\x1e\xdc\xfe\x54\xd0\x1d\xbd\x81\x83\x13\x83\x0e\x4f\x87\x6e\x2a\xfd\xb0\xef\x93\xa7\xbd\x61\xdf\xd1\x86\x8f\x91\x5b\x9d\x46\x85\x5e\xde\xee\x9a\x3f\xa1\xbf\x19\x3b\x40\x05\xe9\xd5\x77\xc7\x7f\xcd\x9b\x3d\x35\xfb\x17\xd5\x5d\xbb\xf8\x88\x26\x28\xeb\x86\xe9\x76\x10\xcc\xcf\x59\xcc\x0f\x8b\xab\xdf\xd0\x6f\x71\xe7\x09\xb3\x89\x76\xe6\x3c\xb4\x5d\xc2\x3d\x74\x1c\x7e\x5c\xe2\x4a\x2a\x04\x6e\xec\x03\xef\xa5\x6d\x23\x6c\xb7\xfd\x96\xdd\x38\xb6\xcc\x15\xd8\xa7\x9e\x63\xdc\xfe\x99\x32\x01\xfb\xa7\x02\xe4\x36\xe9\xcd\xda\x76\x10\x2a\x2e\xcb\x5c\x36\x1b\xd9\x54\x65\x64\x7d\x43\x89\x97\xef\x2c\x6f\x95\x34\xb2\x90\x15\x6c\x58\x65\xb4\x1b\x4e\x44\x2c\xb5\x1f\xec\x57\xa8\x71\x78\x8a\x63\x30\x1f\x39\xdc\xd1\x75\x4f\x07\xdd\xfb\x1e\x37\xd7\xca\x60\x29\x65\x85\x4c\x80\x41\xe7\xb9\x79\xda\x88\xb6\x13\xb0\xe1\x6f\x36\xf4\xb4\xee\x26\xe9\x8f\xf5\x72\x93\xec\x51\x81\xba\xd0\xaf\x23\x9c\xc9\xfb\x4e\xb3\x7a\xea\xde\xac\x26\x87\xf3\x21\xf8\x6e\xb3\xbf\xd7\x4e\x11\x7c\xcd\xe9\xe2\x2b\xab\xf0\xdc\xd6\x3f\x85\xb2\xa1\xfe\xba\x9b\xab\x65\xe9\x9f\xef\x65\x15\xa9\xa9\x79\x20\x64\x6b\xfe\x49\x70\x82\xa6\xa4\xd4\x46\xee\x74\x07\x87\x83\xd3\x66\x81\x17\x06\x0a\xab\x45\x09\x40\xb6\x66\x7e\x46\x65\x1f\x67\x43\x3b\xfc\x1b\xd9\x3a\xd8\x7c\xde\xcf\xd7\xf0\xbe\x3e\x0e\xd6\x04\xb7\x61\xa9\x5c\x35\x55\xb5\xeb\xf9\x90\x76\x76\x79\xe4\xaa\x24\x1e\x2b\x6b\x50\x8e\x1f\x2a\xb1\xc0\x6f\x68\xb5\xf8\x79\xd9\x83\x3b\x2d\x81\x31\x9f\xff\xc3\xde\x48\xaf\xec\xbd\x48\x54\x65\xc8\xdc\x02\xc3\x66\xdd\x8d\x45\xda\x77\x74\x0a\xb7\x73\x2d\x5b\xfb\xbc\x2f\x5b\xce\x57\xfb\xa2\xae\x97\xf6\xf8\x70\x6b\xdb\x7a\xe8\xcf\x5d\x9e\xbf\xbb\x97\x4c\xbe\xdc\xeb\x4f\xf5\x0c\x46\x34\x0f\xb8\xf5\x52\x89\x96\xb9\x09\xd9\xaa\x8a\x57\xca\xe3\x7f\x37\x65\xfc\x0f\x25\x64\x1a\x95\xfc\x31\x0f\x8a\x30\x31\x71\xec\x9b\x46\x3a\x61\xa4\xc7\xd4\xdf\xbe\xe8\xe7\x2b\xb8\x45\xc7\xef\xf8\xc7\x24\xc2\x5f\x45\x69\xb3\x5d\xfb\x37\x75\x3c\xb8\x3d\x2a\x3f\x10\x06\x3b\xa6\xdb\xc9\x27\x47\xd2\xd6\xde\x43\xad\x20\xb9\x6c\xfe\xff\xf4\x0e\x71\xe7\xb1\xa3\x2b\xc3\xce\xe2\x98\x51\x7b\x46\xd9\xfb\xbf\x34\x50\x59\x96\x76\x1f\xb7\xc3\x29\x1c\x6b\xf7\xf1\x78\x15\x2b\x94\x57\x0b\xbb\x2e\xdf\xda\x7d\xe5\x3e\xb6\xd5\x75\x0e\xf2\xbd\xfd\x90\xd8\x66\x32\xf9\xca\x24\xf3\x7f\xfb\x2e\xff\x2a\x75\x90\xf9\x1b\xc4\xd8\x5d\x5a\x44\x1f\xf0\xf9\x4b\x87\x04\xff\x17\x1b\xe6\x9e\xe4\xb9\x66\x37\x38\x89\xb5\xa5\x3d\xef\x64\x3a\x03\x23\x4f\x86\x39\x15\x7a\x10\x5f\xfe\x2f\x00\x00\xff\xff\x96\xab\xef\xfe\x0e\x4a\x00\x00" +var _epochsFlowclusterqcCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x3c\x6b\x6f\x5b\x37\xb2\xdf\xfd\x2b\x26\x01\x2e\x22\x65\x15\x39\xe9\x16\xc1\xc2\x58\x6f\xaf\x2b\xb7\x5b\xa3\xcd\xd3\x6e\xfa\x21\x08\x62\xea\x9c\x91\xc4\xcd\x39\xa4\x42\xf2\xd8\xd1\x06\xf9\xef\x17\xc3\xd7\x21\xcf\x43\x56\xb2\xbd\x6b\xa0\x85\x15\x91\x33\xc3\x79\xcf\x70\xe8\xa3\xe3\x87\x70\xf4\xf0\xe8\x21\xc0\x33\x26\xd8\x1a\x35\x98\x0d\xc2\x56\xc9\x02\xb5\x06\xb9\x82\x42\x56\x15\x16\x86\x8b\x35\xdc\x48\x83\x1a\x56\x52\xd9\x35\x4a\x4a\x03\x1f\x1b\xa9\x9a\x1a\x0a\x54\x86\xaf\x78\xc1\x0c\xd2\x1e\xfa\xba\xd9\x16\xb2\xe6\x62\x4d\xa0\x71\x2b\x8b\x8d\xdd\xc8\xaa\x2a\x42\x94\x02\x84\x2c\x11\x8a\xaa\xd1\x06\x95\x06\xa6\x35\x5f\x0b\x2c\x23\x8a\x00\xc3\x01\x98\x3b\x3a\xff\xd8\xa0\x08\x30\xa4\xb2\x20\x34\x30\x85\xb0\xe2\x4a\x1b\x50\xb8\xe6\x04\x0e\xcb\x19\xc1\xd8\x41\xc1\x04\x28\xfc\xd8\xa0\x36\xc0\xe0\x8d\x34\xa8\x40\x2e\xff\x85\x85\x81\x95\x92\x35\x98\x0d\xd7\x50\x48\x61\x14\x2b\xcc\x9c\x30\x5c\x6d\x70\xf7\xa0\xaa\xa0\xd1\xe8\xbe\x0d\xcb\xa5\x02\xbc\x41\xb5\x03\xdd\x2c\x35\x81\x14\xc6\x9f\xed\x76\x83\x0a\x1d\x3e\x22\x85\x81\x36\xec\x03\x96\x1d\x3a\xfd\x09\xce\x8c\x3d\xdd\x12\xd7\x5c\x08\x3a\x9e\x5c\x01\xb2\x62\x03\x3f\x11\xac\x4b\x34\xcd\x16\xb6\x1b\xa6\xd1\x9e\x00\x58\x59\x73\x01\x5c\x70\xc3\x59\xc5\xff\x6d\x45\x94\x90\x0c\xb7\xdc\x6c\x08\x2c\xad\x6d\xf1\x45\xae\x8e\x30\x13\x7e\x22\x8c\x39\x7d\xb0\x61\x9a\x68\xe7\x62\x5d\xa1\x15\xb7\x83\xcb\x0c\x70\x4d\xb2\x93\x24\xe1\x28\x9f\x1a\x98\x28\x5b\x26\x4b\x51\xd1\x2f\x55\x45\xff\xc4\x15\x5c\x13\x80\x6b\x58\x35\xc2\x09\x5b\x8a\x02\x2d\x7f\xe9\xbf\x17\xa2\x40\xf0\x6b\x5b\x5a\x37\xec\x06\x41\x61\x81\xfc\x06\x4b\x40\x21\x9b\xf5\x06\x78\x89\xc2\xf0\x82\x55\x5e\x01\x8d\x04\xdd\xa8\x2d\xd3\xda\x23\xba\x45\xbe\xde\x10\x4f\x15\xea\x8d\xac\xca\x99\x17\x22\xbc\x5a\xc0\x1a\x05\x2a\x66\xf1\x5b\x96\xd2\x41\x56\x5c\x70\xbd\xc1\x32\x90\xef\x39\x7c\xcb\xab\x0a\xd0\xff\xd3\x8d\x24\x95\x9f\x7b\x71\x31\xb1\x83\xad\xe4\xc2\xcc\xe8\x57\x29\xd0\x1e\xf8\x63\x43\xba\xd0\xae\x06\x2e\x56\x52\xd5\x0e\x5b\x60\x7b\x3c\x1b\x81\x5a\xee\xa0\x21\xee\xda\x6f\xae\xd7\x68\x16\xfe\xdb\x96\x4d\x84\xd2\xd1\x9f\xca\x98\xd8\x0f\x35\xd6\x4b\x52\xde\x15\xc9\x08\x15\x47\x6b\xa0\x4e\x01\x75\xcd\x94\x89\xeb\x35\xdc\x6e\xb8\x15\xaf\x54\x25\x17\xcc\x78\xbb\x26\xc0\x89\x6d\x1b\xc5\x84\xe6\x84\x95\x68\x5a\xa2\xb9\x45\x14\x0e\xa0\x06\x2e\xe0\xe7\x4a\xde\xce\x8f\x1e\x1e\x1f\x1d\xf1\x7a\x2b\x95\x81\x85\xda\x6d\x8d\x3c\x3a\x62\x05\x81\x98\xb0\xaa\x9a\xb6\x34\xd2\x6a\x7f\x9e\x57\x0b\xf8\x7c\x74\x04\x00\x70\x7c\x0c\xa7\x7f\xf2\x4f\x80\xbb\x78\xf1\xfc\xea\xf5\xd9\xe2\x0a\xde\x9c\xbd\xbe\x38\xfb\xf1\xb7\x9f\x2e\xff\xdf\x30\x7a\xc0\xc7\x70\x21\x4a\xeb\xe5\x88\xc1\x68\x36\xa8\xbc\x4e\x92\xd1\x17\x8d\x52\x28\x4c\xb5\x83\x25\x12\x3f\xbd\x6d\x61\x39\x6f\xb7\xaf\x60\xc5\x2a\x32\x6c\x21\x9d\xc5\xc9\x2d\xa9\xa7\x54\x4e\xfb\x96\x08\x6c\x59\xa1\x53\xf1\x65\xcd\x8d\x03\x6f\xf7\xa7\x3c\xbf\x61\x0a\xb8\x78\xa9\xe4\x5a\xa1\xd6\x27\xf0\xa3\x94\x55\x4b\xe4\x55\xeb\x08\xfa\x4e\x36\xea\xa5\xa3\xd6\x49\x3b\x43\x50\x14\xb2\x11\xc6\x21\x09\xdb\x4e\xe0\xad\x17\xed\xbb\x21\x66\x70\x52\xc9\x1b\xeb\x5a\x15\x6a\xd9\xa8\xc2\xfb\x92\x4a\x21\x2b\x89\x21\xe4\xb3\x2b\xc6\x6b\x2c\xc9\x08\x98\x23\xea\xe2\x3c\xc2\xf2\xae\x18\xbd\xb5\x9b\x1d\x18\xcb\x89\xa0\x5d\x71\xe1\x73\xb7\xd1\xfb\x0a\x23\x1d\xd8\x88\x9e\x9c\x4c\x5c\x4b\x86\x6a\x11\x59\xe6\x3a\x77\x8e\xa0\x59\x8d\xa0\xb7\x58\x50\xc4\x82\x8b\x73\xeb\x06\xde\xe4\xc4\x87\x58\x65\x78\xdd\x82\xbb\x16\xbc\xba\x86\x1a\x99\xd0\xce\x29\x1a\xeb\xf5\xb9\x26\x69\x7a\x17\x50\xb0\x2d\x5b\xf2\x8a\x0e\x10\x38\xdd\x3b\x2a\x69\x40\x0a\x26\xd0\x3e\xb0\xf7\xe2\x7c\x06\xcb\xc6\x00\x37\xc4\x4f\xf1\xc0\x64\xac\x8c\x20\x8d\x6a\xb0\x43\x58\x1f\x26\x09\xa4\x2b\x88\x40\xdf\xa8\x02\x58\x28\x0b\xb7\xe1\x04\x3e\x5f\x1a\xc5\xc5\xda\x29\xdc\x97\x61\xb3\x60\x26\x68\x4d\x10\x33\xb7\xce\x64\x5c\xf1\x08\xc2\x1b\x56\x35\xe8\xdc\x5c\xd8\xcd\x45\x89\x9f\x52\xc2\x82\x2e\x38\xca\x08\xb4\xd7\xc9\x84\xb0\xdf\x2f\x84\x79\xf2\xf4\xcb\x7f\xcf\xf9\x2c\x5e\x3c\xbf\xbc\x3a\x7b\x7e\xf5\x5f\x70\x3e\x0b\x26\xa4\xb0\x81\x70\xcb\xcc\xc6\x99\xb2\x0b\x5d\xa4\xc1\xb9\xf9\xf5\x7d\x46\x85\x06\xce\x68\xf5\xa5\x91\x8a\xad\xf1\x25\x33\x9b\x13\x48\x3e\x0c\xee\xb0\x76\x31\xba\x23\x92\xf6\x1a\xb7\x0a\x35\x0a\x63\x05\x38\xec\x7b\x1c\xbd\xb0\xe6\x37\x21\xc8\xcc\xa1\x87\x53\x1b\xd5\x14\x06\xbc\x60\x43\x14\x49\x3d\x9b\x55\x8b\x90\x65\x06\xd0\x94\x03\x71\x91\xfd\x13\x53\x8a\xed\xe6\x2e\x8e\x36\x82\x7f\x6c\xb0\xda\x79\xef\xb2\xe2\x9e\x3f\x01\x2e\x1b\xa7\x31\xae\xeb\x72\xc6\xd2\x11\x14\x2e\x27\xf3\x0f\x9b\x90\x38\x01\xd9\xc4\x8e\xd8\x70\x71\x0e\x39\x85\xa3\x90\x69\xb5\x07\xd1\xd1\xec\xa7\xdf\x7f\xe9\x33\xc4\x48\xc3\x2a\xef\xe7\x5c\x26\x44\x19\x82\x4f\xad\x5c\x7a\x7c\x20\x62\x0b\xc9\x61\x0e\xf8\x72\x74\x6f\x5c\x02\x46\x36\xee\x00\x7b\xe7\x7b\x68\x42\x9b\x01\xfb\x15\x77\xce\x77\x5a\xf7\x78\x58\x04\x48\x09\x69\x75\xdd\x8a\x5f\x36\x06\xa8\x7e\x60\xa6\x51\x94\x19\x29\xa8\x51\x6b\x5b\xd2\x64\x72\xb0\xb1\x5a\x1b\xa9\xb0\x04\xf2\xdf\xb9\x22\x8c\x9d\xc4\x67\x59\xed\x51\xbc\xee\x46\x91\x53\x55\xe2\xfd\x9d\x0b\xdd\xda\xfb\xf5\x59\xf4\xc6\x6d\x2a\x4c\xc5\x81\x26\xa7\x4e\x44\x5b\x55\xe6\x1a\x6a\xb6\x9d\xe5\xc4\x94\x65\x48\x71\xe3\xc1\xac\xa9\xfb\x83\x59\xc8\xc2\x2d\xe3\x06\x96\xac\xf8\x40\x01\xd1\x02\xb3\xf8\x2a\xae\xcd\x3c\x03\x79\xb1\x0a\x44\x52\x34\xa0\x45\xae\x4c\xa2\x74\x3d\xe2\xb8\xb6\x48\xae\x3d\x96\x6b\x58\x71\xac\xca\x98\xa0\x08\x29\x1e\xd9\x48\x38\x0e\x98\xe2\xd4\x37\xc1\xce\xe1\x76\x33\x1e\x9f\xcb\x63\x69\xd5\x30\x31\x0d\xfa\xdc\x35\x0c\xc5\x8a\x0f\xda\xc9\xce\x59\xbf\x63\x09\x61\xdf\xc8\x5b\xa8\x1b\x9b\x1e\xd7\x4b\x4e\x05\xa7\xb7\x9b\x18\x21\xc9\x93\xc5\x80\x65\xeb\xa0\x31\x9a\x1c\x6c\x22\xe0\x99\x3b\xd2\x55\x6b\x43\x7b\xad\x97\xea\xb9\x49\xe6\x43\x66\xfb\x0d\x7f\x0a\x9f\xe3\x66\xfa\xd1\x58\xad\xe6\xce\x19\x9e\x26\xb1\x32\xfb\x3a\x01\x08\xa7\x29\xf8\xa3\x6c\x2d\x1d\x64\xc0\xf6\xe1\x14\x1e\x67\xeb\x88\x23\x9e\x55\x5c\xa4\xe0\xe6\x37\x14\xbe\x75\x87\x42\xfa\x49\xc0\xc2\x69\xf6\xe9\x2f\x1e\x54\xb6\xe5\x4b\xff\x0c\xa3\x10\xfa\x4b\x73\x05\x81\x53\xf8\x3c\x00\x6f\xaf\xc4\xf2\x3d\x1d\x9d\x7a\x8d\xa6\x51\xc2\x55\x52\xa2\x09\xb5\xd8\xc1\x1e\x76\xd5\x08\xd0\xfc\xdf\x38\x99\x06\x89\x77\xf8\xa5\x2c\x7c\xff\xdd\xa4\x2b\xc0\x79\x85\x62\x6d\x36\x53\x38\x84\xbc\x9a\x0b\x5e\x37\x35\xe8\xa6\x26\x1a\xad\xea\x7b\xc9\x29\xfc\xd8\x70\x72\x7e\x5c\x80\x54\x25\x92\xe8\xd3\xc2\x23\x30\x11\x58\x06\xfd\x86\x55\xbc\x1c\xea\xf7\x38\x33\xa1\x62\xd5\x9d\x7d\x3e\x6c\x2b\x1c\x6f\x2d\x07\x88\x94\xab\x50\xa9\x07\x56\x3c\xfd\xbe\xc3\x0a\xbe\x1a\x10\xfe\x29\x3c\x1e\xd0\x30\xcf\xb5\xc7\x1d\x3d\xca\x3e\x52\x70\x5b\x55\x52\xaa\x17\x02\xaf\x36\x5c\x95\x70\xda\x87\x7f\xec\x49\x99\xfc\x75\x4a\x79\x1c\x17\x06\xd7\xa8\xa0\xe4\x37\x5c\x73\x29\x66\xc0\x45\x51\x35\x24\x6c\x0b\xaa\x6f\x42\xca\xea\x9c\x07\xf2\xdd\x14\x1e\xe6\x38\xfb\x24\x95\xfc\xe6\x35\xd6\x8c\x8c\x57\x0d\x51\xf4\x3f\x2d\x45\x47\x5d\xf6\x64\x7b\xff\x1e\xd1\x3e\xe9\xba\x09\xc7\x22\x22\x8c\xfe\xff\x97\x76\x5d\xce\x2f\x40\x2a\x4a\xf6\x6f\x4d\x51\xee\xe3\xb6\x97\x88\x4a\x92\xac\x3d\xaa\xaa\x0d\x33\x8d\x8e\x51\xd0\x6b\xd1\x03\x0d\xaf\x16\xa1\x57\xd1\x8d\x34\xb1\xee\x62\x89\x1d\x7a\xf5\x26\x75\xec\x76\x8c\xf0\x53\x81\x58\xc6\xbe\x4b\xa6\x82\xd7\xb3\x6e\x42\x25\x06\x08\x49\xda\x48\xae\x2d\xa3\x79\x89\xca\x36\xf8\xea\x6d\x85\x3e\xb0\xb8\x30\x8e\x66\x23\x4b\xcf\x04\x9d\x67\x09\x31\x13\xf0\xf1\xcf\xa5\x52\x8a\xa2\x14\x06\xe3\xea\x1e\xd6\xd5\x96\xae\x71\x25\x1b\xc2\x22\xdd\x0e\xbf\xde\x67\x01\xae\x38\xe5\xda\x23\xf6\xc5\x21\x8c\x99\x21\xd7\x0b\x4f\x39\xd9\xa0\x0b\x35\x3f\x74\xe4\xbf\x6a\x73\x28\x72\x16\x77\x7b\xcf\xf9\x07\xdc\x0d\x05\x81\x60\xcd\x7b\x37\xbf\xf5\xa8\xde\xdd\x83\x7f\x78\x5b\xe8\xf8\x8a\x01\xc8\x89\xba\xf9\xed\xbd\x25\x5f\xf6\x04\x18\xbf\x55\xf0\x6a\x4c\x53\xff\xe9\xbd\xa1\xd3\xd5\x57\xce\xfd\x2d\xf6\xb8\xbf\x01\x5d\x6d\x2b\x5a\xca\x76\x4d\xd4\x99\x99\xdb\x18\x34\x65\x3c\xf9\x21\x81\x05\xb7\xec\x48\x48\x28\x20\xf9\xc5\xb6\xdb\x0f\x69\xc5\xe4\xa8\x80\x17\xa2\xda\xb5\x5e\xdd\xb8\xbe\x28\x5f\x65\x8d\x4b\xdd\x2a\xf2\xe8\x81\xbc\x24\xc9\x71\x39\xcd\xf3\x42\x0c\x9e\x2b\x55\xa9\x2e\x19\x9e\x94\x85\x42\x1b\x59\x40\xe0\x2d\x60\xbd\x35\x3b\x78\xb5\xe8\x2d\xb4\x8d\xa7\xf6\x80\xc9\xf1\xe0\xb4\xfd\x3d\x24\x4f\x6d\x1e\x34\x4b\xf2\xff\x13\x78\xfb\x6e\x16\x74\xe2\x24\x27\x78\xe6\x6a\xe5\x8b\x73\xbb\x6a\x3a\x48\xe9\x59\xe9\xfa\xc0\x2d\xc4\x08\x4d\xcf\xac\xb1\x8b\xd0\x88\xb2\x7d\x6f\xe2\x5a\xdb\xab\xeb\x00\xb3\x56\x5e\x33\x53\x6c\xa2\x07\xd0\x7b\x4d\x3f\xfc\x04\xa8\xd1\xfc\xf2\x0c\x67\x3c\xed\xa2\x9f\xc1\x7f\x0c\xfa\x60\x5b\x3c\x29\x25\xb7\xe4\x52\x5d\xe5\x62\x12\xe7\x31\x20\xfc\xb8\xa8\x95\x3f\xc1\x99\x07\x57\x31\x4c\x8d\x07\xd0\xdf\x7c\xda\xd1\xa6\xf1\xed\xf4\x93\xe8\xc5\x9c\x95\xe5\x65\x10\xcf\xc4\x92\x10\xa5\x75\x6f\xfa\x35\x50\xde\x38\x75\x70\x30\x5c\xad\x3e\xbe\xff\xcb\xe0\x37\xfd\x7f\xfd\xd2\xd7\x2b\xef\x6e\x12\xec\x87\x06\xe1\x9e\x9b\xca\x71\xf6\x9c\x56\xac\x3e\xbd\x70\x99\x6e\xab\x27\xdf\xe3\x48\xdb\x92\x30\xd8\x64\x0b\xb1\x62\x8d\xe6\x9f\xa9\xde\x4d\x2c\x8b\xca\x10\x36\xa6\xae\x00\xeb\x46\x0f\x4f\xf4\x80\xda\xbe\x75\xfb\xdf\x8d\x91\x7f\x49\xe4\xb7\x45\xb3\x2f\xc3\x7c\xc7\x16\xcb\xbb\x29\xb7\x99\xf6\x7e\xa2\x9d\x0f\x70\x94\x0f\x56\x56\xc3\x24\x7b\x5d\xdf\xcb\x78\x13\x7b\x32\x3e\x25\x29\x64\x5d\xf3\x96\xf1\x49\x39\x7a\x18\xf3\x7f\xdf\x13\x36\x27\xee\x18\x51\x12\x2e\xbd\xdb\x27\x8b\xfd\x41\x98\xc0\xdd\x2d\x98\xec\x78\x5f\x71\x2a\x2f\x98\x83\x0f\x34\xf3\x38\xc2\xb9\x06\x25\x75\xc0\x81\xe0\xb4\x5b\x6c\x3a\xdb\x49\x5a\xd8\xd7\x6f\xec\x6d\xa5\x4a\x1b\x99\x4e\xff\x94\xac\xed\x4d\x42\xa7\xad\xe9\x1b\x40\x36\xcc\x1b\xd0\xbc\xde\x5a\xb7\x2a\x0c\xe3\x42\x83\xb6\xf4\xbb\xce\x54\x0c\x24\x58\x66\x59\x4a\xc8\x08\x37\xf8\x09\x50\x14\xb2\x6c\xbf\x07\x6e\xec\xd9\x7c\xc7\xcd\xde\x29\xaf\xd7\x0a\xd7\xd6\x80\xa9\x60\x6b\x78\x35\x54\x8e\xf5\xfb\xbe\xbe\xa3\x6a\x3b\x66\x03\xed\xd4\x5e\xfb\x4d\x1b\xf6\xc1\x5d\x5f\x75\xfa\x6e\xdd\xd6\x87\x73\x94\x41\x54\x7d\xc8\xf9\x89\x5b\x04\x16\xe3\xa4\xbd\x07\x75\x05\xf4\xb5\xc7\xfb\x2b\xee\xae\xa7\xa3\x38\xa3\x83\x8f\x39\x6b\x1f\xef\x06\x3f\x3d\xea\xb2\xf3\xa0\x5e\x4e\xcc\x16\x46\x41\x0f\xf6\x9e\xfd\x8d\x4b\x68\xba\x4d\x42\x72\x30\x75\x17\x1f\xa3\xdd\x56\xbf\xff\x62\xbc\x8f\x4c\x28\xdb\x96\x6e\xf4\x88\x2d\x86\x51\xd8\xb7\x23\x4d\x5c\xeb\x56\x6c\xeb\x29\x97\xde\x6c\x90\x1a\xe7\x24\xff\xd8\x6b\x82\x5b\x35\x14\xb1\x1c\x74\xdf\xb2\xa0\x18\xff\xf4\xfb\x13\xb8\xef\x2e\xd9\x2e\xce\xa1\x6e\xb4\xb1\x3d\x07\xdf\x56\xf0\xeb\xbc\x2e\xde\xbf\xab\x25\xd4\x76\x43\x4f\x7b\x41\xd1\x2e\xa8\x63\x66\x32\xf8\xb5\x6f\xc7\x9f\x7a\x32\xfb\x0b\x52\x66\xc0\x69\xc6\x9b\xfe\xe2\xdb\xd0\x9b\x6a\x99\x35\xe4\x40\x7b\xad\x20\x34\x6d\xf6\xf2\xbe\xaf\xd9\x83\xbe\x2e\x3d\x79\xfc\xfd\x40\x6c\xde\x3b\x4e\xde\x77\x15\x7d\x10\x53\xcb\xc2\x6e\x61\xd5\x73\x9d\xc9\xe5\x0f\xe9\xe8\x48\x8f\x88\xb5\x77\xae\x69\x65\x61\x1b\xdd\xa2\xcc\x2f\x2c\x8e\x5d\x62\x3a\xd0\x54\x1b\xbf\x2b\x6a\x67\x0e\x60\xcc\x62\x3f\x16\x1d\x90\xa0\xb0\x90\x6a\xb8\x54\xbe\xe3\x8e\xe7\x2a\x58\x63\x72\xe7\x60\x5d\xdc\x57\xdf\xbc\x84\x6b\xd6\xcb\xb4\x78\x71\x92\x79\x37\x82\x33\xf3\xa9\x01\xa1\x33\x25\x5b\xda\x7c\x15\xde\x67\xb9\x36\x8c\x86\x08\x5f\x28\x14\x52\x29\xd4\x5b\xe9\x3a\x11\xb6\x11\xb1\xd7\xab\x26\xb5\x56\xef\x50\xad\x3b\xea\x74\xc2\xf5\x00\x2f\x66\x5d\xbd\x9d\x0d\xc0\xfe\x96\x2e\x79\xce\xfc\xd4\xb2\xf4\xf0\xe2\x67\xa3\xb6\x91\x2d\x23\xca\xbc\x5b\xa0\x5f\x0f\x31\xd3\xac\xa4\x39\xd4\x29\xe4\xf4\xcf\xd9\x76\x8b\xa2\x9c\xc4\xbd\xd3\x03\x11\x87\x2a\xe8\x7d\xa0\xf8\x4e\xa4\x74\xaa\x80\xce\x7f\x9e\xfe\x27\x6e\xc2\xea\x76\xc9\x0c\x0b\x0e\x83\x32\x08\xd5\xe6\x59\x21\xf0\x26\xd5\xdb\x9d\x4e\x81\x4e\x75\x4e\x20\x3f\xf7\xf4\x3a\xc9\xa8\x22\xb3\x66\x69\xfa\x30\xb3\x69\x59\xbd\x65\x5a\xa3\x9d\x7f\x23\x0d\xe2\x37\xbc\x6c\x7c\x6b\x31\x35\x7e\x9b\x2f\xf1\x65\x63\xdc\x64\x85\x9f\x4b\x2c\x94\x74\x73\x6a\x77\x5e\xbe\xb6\xd4\x5c\x76\xa5\xfe\x67\x9a\x24\xa1\xda\x67\x92\xd6\x1a\xf7\xd0\x72\xb0\xd1\x0d\xc0\x80\xd3\xa1\x53\x7e\xad\xf1\x74\xd4\x8a\xd8\xd1\x99\xde\xe1\xdd\x6a\x17\x93\x59\xc7\x38\x96\xc0\x56\x2e\x7b\xc3\x5d\x1c\x1a\x6d\x27\xb5\xec\x74\x64\x0b\x50\x68\xc3\x84\x87\x2c\x65\x19\xe7\x83\x56\x8d\x3d\xd7\x56\x1a\x14\x86\xb3\xca\x0f\xcf\xb9\xa1\x9d\x5b\x5e\x55\xad\xee\x0a\x3b\x18\xe6\xbd\xb4\x6f\xbf\xe5\x23\x60\xed\x80\x8e\x14\x2b\xae\x6a\x2c\x81\x25\xf3\x14\x61\x48\x33\xce\x15\xe1\x27\x13\x26\x63\xbb\x52\x8e\x94\x3b\xce\x8c\xe4\xfd\x17\xe7\x69\x5e\xa9\x60\x32\x5a\x04\x8c\x67\x9a\x77\x56\x01\x1e\xd2\x07\xdc\x05\x64\xae\x00\xf8\x4a\x5c\x36\xfb\x8f\x25\x42\x1f\xdf\x60\x52\xdb\xdf\x70\x58\xfa\x7a\x2f\x9b\x65\xf4\xfa\xa8\xfd\x18\x94\xc7\x32\x3d\x81\xfb\x0b\x26\x6c\x43\x37\xb4\x35\x87\xa6\xc8\x62\x85\x65\x4d\x75\x6c\x2a\xae\x9b\xf3\x7e\x43\xd2\xda\x1e\x96\x42\x58\xfc\x90\x2d\x1c\x38\x97\x3f\x95\xeb\x70\x9c\x53\xa9\x6c\x54\x33\xda\xe1\xb8\xf4\xb3\x0d\x24\x38\x37\x25\x63\x9b\x66\xb0\x60\x82\xb4\xbb\x60\x55\x85\xa5\x53\x76\x49\x06\xb3\x45\xd5\x99\xa3\x21\x28\xd9\x87\x97\x4c\xb1\x5a\x9f\xe4\x39\xd0\x09\x5c\xba\xf2\xf1\x3a\x09\xb8\xd7\x6d\x39\xdd\x2f\x1a\x33\x98\xe1\x27\xcb\x6f\x7e\xe9\x17\x86\xe9\xa6\xd1\xd8\x48\x40\x26\x5d\xea\x12\x67\xf8\x6c\x7f\x3a\x3d\xac\x62\xb9\x24\xd2\x61\x4e\x2a\x93\xc8\x1e\xe2\xbc\x32\xa9\x18\x17\xb0\xf5\x2b\xee\xf7\x1b\xe6\x29\x6d\xa1\xe8\xfa\x07\x3c\xf6\x25\x57\x32\x3d\x62\x0b\x2f\x82\xb7\x44\xd7\x7f\x1f\x06\xe6\x4f\x34\x00\x2a\x64\x9e\x07\x00\xea\x18\x11\x49\xec\x17\xa6\x09\x4a\x39\x49\x34\x7a\x1a\x41\x07\x90\x76\xb2\xd3\x19\x07\xd3\x26\x98\xcb\x5e\x0b\x71\xbd\x37\xf7\x76\xa1\x59\x56\xbc\x70\xfe\x26\x1b\xf3\x8f\x53\x3f\x1f\x3a\x46\x41\x6e\xcc\xed\x72\xb6\xf3\x32\xfc\x3e\xe9\x9d\x29\x2e\x3b\xe9\xda\xdc\xbc\x44\xd2\xac\x5f\xf0\xd3\x64\x3a\xeb\xed\x8b\x12\x38\xab\xd6\x52\x71\xb3\xa9\x9d\x82\xe7\xff\x36\xff\xf1\xb7\xcb\xf7\x3f\xfe\x76\xf9\xe4\xbb\xf7\x7f\xfd\xdb\x93\x0c\xc8\xb4\x77\xde\xc5\x06\xdd\xbc\x8f\x46\x6c\xa7\x3e\x5b\x51\x4b\x57\x01\xc4\x86\x92\xf6\xa1\xa7\x77\x74\xae\xdf\xd8\x2f\x4e\xdb\xd3\xcd\x6f\x50\xf1\xd5\xc0\xf9\x93\x84\x34\x57\xba\x3b\x4f\x8f\x25\x65\x61\x27\x99\x7a\xed\xdd\x54\xca\x9a\x71\x71\x89\x5b\xe6\x2e\x5e\xaf\xd8\xfa\x04\xee\xff\xfc\xdb\x8b\x3f\x1e\x2d\x42\x40\x7c\x4f\x8a\xf3\xe8\xcd\xe3\xc7\x8f\x16\x97\x8f\x1f\x3f\x22\xef\xf0\xe8\x7e\x1f\xd4\x86\xe9\x4d\xc2\xf8\x5f\xd2\x8f\xf3\x5f\x9f\x9d\x2d\x9e\x7c\xf7\xb7\xf7\x5f\xc3\xfb\x33\xad\x51\x99\xb6\xea\xe2\x26\xd7\x28\xe6\xbe\xef\xf3\xcf\xf3\xba\x4f\x62\x2c\x6d\x9c\x2d\xb4\x29\x53\xe1\x42\x0c\x65\x0e\x24\x13\xde\x0d\x15\x7d\xe2\x82\x21\xf4\xfb\x53\x36\x12\x2d\xb1\x92\x62\xad\xc1\xc8\x9e\x26\x74\xda\x1e\x7d\xfb\xf5\x9f\xde\x26\xe6\xfb\xae\x77\x94\x1f\x7e\x80\x2d\x13\xbc\x98\xdc\xbf\x8a\x48\xfd\x29\x5c\x82\xdf\xa8\xd0\xfa\xcb\x66\x81\xef\x4f\xc7\x08\xea\xd1\x12\xc6\xd2\xdf\xa6\x14\xbf\xbb\x37\xc2\x0a\x4f\xc4\x83\xf4\x09\x4b\x96\x1f\x07\x74\x96\xbc\xd8\xee\x99\x8f\xde\x7b\xa4\xde\xab\x8f\xf4\x12\xbb\xa6\x98\xcc\xec\xb9\x81\xb7\xbc\xae\x74\x57\x57\x69\x3b\x28\xb3\xad\xe9\xe0\xe2\xd0\xcd\x49\xec\xa9\xaf\x0a\x81\x14\x81\xb7\xfd\x9e\x7d\xaf\x1f\x1a\xd8\x90\x4f\x5c\x25\xdc\x38\xa0\x6f\x9f\x92\x43\x9a\x90\x8f\xe5\xd8\xb6\x31\xde\x8e\xcc\x83\xd9\xa3\x0d\x0c\x85\x05\x0a\x0e\xbb\x39\x48\x28\x68\xaf\x0f\x22\xd2\x01\x1e\xd9\x77\x04\xe4\x29\x65\xe9\xee\x97\xe2\xa0\x60\x50\xbf\x25\x2b\x3e\x8c\x51\x74\xa7\x86\x84\x9b\x26\xfa\xff\x74\x4f\x32\x36\xac\xd3\xad\x00\xba\x19\x59\x36\x7e\x6f\x50\xad\x58\xe1\xe3\x80\x7b\x88\x15\x6e\x22\x5c\x79\xc1\x65\x7c\x6d\x40\xf5\x0a\x53\xa6\x5b\x55\x2b\x5c\x37\x15\x53\xc0\x1a\x23\x6b\x57\x39\xf9\x71\x55\x3f\x07\x4b\x8b\xdc\x18\x6c\x3a\x96\xe3\xf3\x7c\xed\xe6\x6a\x5d\xea\xd4\xbe\x2d\xb8\xa6\x33\xda\x29\xe0\xeb\xf6\xa1\x90\xd9\x28\xfb\xb0\x8b\x25\xaf\x13\xc6\x2b\x18\x1e\x0f\x67\xe1\xbc\x68\x8f\xf3\x79\x34\x63\x73\x09\xb9\xcd\xc6\x0f\xa9\x09\x4e\xe0\x7f\xed\xda\xf1\xee\xa9\x61\xca\xb8\xb4\x6c\x32\xf0\x24\x26\x99\xc9\xeb\xef\x94\x5b\xbf\x71\xb8\xae\xa1\x45\x2b\xa9\x0a\xbc\xec\xae\xec\xd4\xb8\x76\x76\xbf\x65\xcb\x56\xc9\x1b\x5e\xfa\xb9\x94\xf0\xc4\xc3\xc8\x50\x8b\x18\xd9\x2d\x46\x5c\x32\xa4\x67\x11\xa8\x1d\x72\xf6\x13\x20\x6e\xa4\x01\xdd\x33\x02\x92\xb7\x2d\x5d\xc4\xc0\xeb\xa0\x4c\x36\x96\xa6\x93\x01\xc1\x64\xc9\xb8\x9b\xfa\xd0\x7e\xec\x63\xb0\x46\xea\xd4\xe6\x9d\x2a\x92\xeb\x76\x74\x3a\x8c\x0a\xbb\x5c\xa5\xda\x79\xc2\xf8\xb2\xc2\xd0\xf4\x8c\x3a\x97\x81\x09\xea\x37\xf3\x6f\xe3\x2c\x20\x85\xda\x28\x5e\xf8\x80\x49\x74\xda\xf1\x6c\x19\x6c\x28\x7b\x65\xfa\x67\xab\xdb\xf0\x25\xed\xdf\x1f\x79\x11\xe6\xf0\x82\x33\x49\xe1\xb5\xbf\x0f\xf6\xf8\x2c\xef\xa5\x58\xf1\xb5\x6d\x50\xb9\xf7\xa1\xde\x06\xfb\x4d\x84\x07\x71\xe2\x47\x0f\x56\x45\xf6\xf1\xd5\x8b\xab\x9f\x4e\x9c\x40\x82\x1c\x7c\xc5\xe7\xed\xdd\xc8\xed\xa3\x0a\x6f\xb0\x6a\x85\x90\xbc\x62\x6c\xb6\x52\x64\xf0\xf2\x07\x88\x76\x76\xdd\x9b\x39\xb8\x57\x03\x2f\xed\xa8\xfd\x28\x3d\x8b\xb3\xdf\xaf\x2e\x5e\x3c\x3f\xb1\x54\xb8\xa4\x82\x6b\x40\xc5\x34\xea\x64\xd4\xa6\xf3\xf4\xe8\x78\xab\xf0\x86\xcb\x46\xa7\xdd\x93\x6f\x32\xfb\xcf\x7b\xfc\x79\x5b\xd2\x75\x4b\xea\x71\xdf\xdf\x7a\xfb\x81\x09\xed\xa1\x1b\xba\xc1\x11\xed\xf6\x01\x55\xfb\xec\xef\x80\x79\x2c\x57\x2a\xba\xf6\x69\x6c\x9a\x51\xa4\xe0\x05\xdf\x32\xeb\x15\x32\xdb\x4c\x51\xb6\x0f\x5c\x42\x68\x4c\x27\x97\x47\xc6\x02\xe1\x90\x48\xea\xf5\xbe\x9d\xd6\xe8\x59\x44\xce\x97\xf4\x53\x7e\x7f\x39\x40\x59\x68\x7a\xdc\x9b\x0e\xcf\xfb\x8c\x67\xc0\x6d\xb7\x24\x4b\x9a\xfb\x3f\x3d\xb8\xfd\x49\xa1\x3b\x7a\x03\x07\x27\x06\x1d\x9e\x0e\xdd\x5e\xfa\x01\xe0\x27\x4f\x7b\x03\xc0\xa3\x0d\x1f\x23\xb7\x3a\x8d\x0a\xbd\xbc\xdd\x35\x7f\x42\x7f\x33\x76\x80\x0a\xd2\xab\xef\x8e\xff\x9a\x37\x7b\x6a\xf6\x2f\xaa\xbb\x76\xf1\x61\x4d\x50\xd6\x0d\xd3\xed\x70\x98\x9f\xbd\x98\x1f\x16\x57\xbf\xa1\xdf\xe2\xce\x13\xe6\x15\xed\x1c\x7a\x68\xbb\x84\xbb\xe9\x38\x10\xb9\xc4\x95\x54\x08\xdc\xd8\x47\xdf\x4b\xdb\x46\xd8\x6e\xfb\x2d\xbb\x71\x6c\x99\x2b\xb0\xcf\x3f\xc7\xb8\xfd\x33\x65\x02\xf6\xcf\x07\xc8\x6d\xd2\x9b\xb5\xed\x20\x54\x5c\x96\xb9\x6c\x36\xb2\xa9\xca\xc8\xfa\x86\x12\x2f\xdf\x59\xde\x2a\x69\x64\x21\x2b\xd8\xb0\xca\x68\x37\xb0\x88\x58\x6a\x3f\xec\xaf\x50\xe3\xf0\x64\xc7\x60\x3e\x72\xb8\xa3\xeb\x9e\x0e\xba\x77\x40\x6e\xd6\x95\xc1\x52\xca\x0a\x99\x00\x83\xce\x73\xf3\xb4\x11\x6d\xa7\x62\xc3\xdf\x71\xe8\x69\xdd\x4d\xd2\x1f\xeb\xe5\x26\xd9\x43\x03\x75\xa1\x5f\x47\x38\x93\xf7\x9d\x66\xf5\xd4\xbd\x63\x4d\x0e\xe7\x43\xf0\xdd\x66\x7f\xaf\x9d\x2c\xf8\x9a\xd3\xc5\x97\x57\xe1\x09\xae\x7f\x1e\x65\x43\xfd\x75\x37\x57\xcb\xd2\x3f\xdf\xcb\x2a\x52\x53\xf3\x40\xc8\xd6\xfc\x33\xe1\x04\x4d\x49\xa9\x8d\xdc\xe9\x0e\x0e\x07\xa7\xcd\x02\x2f\x0c\x14\x56\x8b\x12\x80\x6c\xcd\xfc\xdc\xca\x3e\xce\x86\x76\xf8\x37\xb2\x75\xb0\xf9\xbc\x9f\xaf\xe1\xcd\x7d\x1c\xb6\x09\x6e\xc3\x52\xb9\x6a\xaa\x6a\xd7\xf3\x21\xed\x3c\xf3\xc8\x55\x49\x3c\x56\xd6\xa0\x1c\x3f\x54\x62\x81\xdf\xd0\x6a\xf1\x33\xb4\x07\x77\x5a\x02\x63\x3e\xff\x87\xbd\x91\x5e\xd9\x7b\x91\xa8\xca\x90\xb9\x05\x86\xcd\xba\x1b\x8b\xb4\xef\xe8\x14\x6e\xe7\x5a\xb6\xf6\xc9\x5f\xb6\x9c\xaf\xf6\x45\x5d\x2f\xed\xf1\x81\xd7\xb6\xf5\xd0\x9f\xc5\x3c\x7f\x77\x2f\x99\x86\xb9\xd7\x9f\xf4\x19\x8c\x68\x1e\x70\xeb\xa5\x12\x2d\x73\x53\xb3\x55\x15\xaf\x99\xc7\xff\x96\xca\xf8\x1f\x4f\xc8\x34\x2a\xf9\x03\x1f\x14\x61\x62\xe2\xd8\x37\x8d\x74\xea\x48\x8f\xa9\xbf\x7d\xe5\xcf\x57\x70\x8b\x8e\xdf\xf1\x0f\x4c\x84\xbf\x94\xd2\x66\xbb\xf6\xef\xec\x78\x70\x7b\x54\x7e\x20\x0c\x76\x4c\xb7\x93\x4f\x8e\xa4\xad\xbd\xc7\x5b\x41\x72\xd9\x9b\x80\xd3\x3b\xc4\x9d\xc7\x8e\xae\x0c\x3b\x8b\x63\x46\xed\x19\x65\xef\xff\xd2\x40\x65\x59\xda\x7d\xf0\x0e\xa7\x70\xac\xdd\xc7\xe3\x55\xac\x50\x5e\x2d\xec\xba\x7c\x6b\xf7\xe5\xfb\xd8\x56\xd7\x39\xc8\xf7\xf6\x43\x62\x9b\xc9\xe4\x2b\x93\xcc\xff\xed\xbb\xfc\xab\xd4\x41\xe6\xef\x12\x63\x77\x69\x11\x7d\xc0\xe7\x2f\x1d\x12\xfc\x5f\x71\x98\x7b\x92\xe7\x9a\xdd\xe0\x24\xd6\x96\xf6\xbc\x93\xe9\x0c\x8c\x3c\x19\xe6\x54\xe8\x41\x7c\xf9\xbf\x00\x00\x00\xff\xff\x88\xec\x19\xdc\x22\x4a\x00\x00" func epochsFlowclusterqcCdcBytes() ([]byte, error) { return bindataRead( @@ -298,7 +298,7 @@ func epochsFlowclusterqcCdc() (*asset, error) { } info := bindataFileInfo{name: "epochs/FlowClusterQC.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3, 0xed, 0x4b, 0xbc, 0xac, 0xf5, 0xff, 0x86, 0xac, 0xe5, 0x52, 0xc4, 0x45, 0x2, 0xcd, 0xa8, 0x4c, 0xc2, 0x42, 0x10, 0xe3, 0xed, 0xc7, 0xe, 0xf, 0x12, 0xcd, 0xa0, 0xcb, 0xb2, 0x4f, 0xf7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x52, 0x79, 0x71, 0xde, 0xc, 0xf7, 0xca, 0x23, 0xf7, 0xf8, 0x2d, 0x5d, 0xc3, 0xa7, 0xa7, 0xef, 0x98, 0x52, 0xdd, 0xe1, 0xd1, 0x9f, 0x6c, 0xa2, 0x67, 0x21, 0x86, 0x86, 0x9a, 0x5, 0xa0, 0x88}} return a, nil } From c15443cae93a121a3365d9335d6d5a8523b38c99 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Mon, 22 Jul 2024 17:41:07 -0400 Subject: [PATCH 145/160] Update contracts/epochs/FlowClusterQC.cdc Co-authored-by: Jordan Schalm --- contracts/epochs/FlowClusterQC.cdc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/epochs/FlowClusterQC.cdc b/contracts/epochs/FlowClusterQC.cdc index 0fdd24c2a..ec8c84888 100644 --- a/contracts/epochs/FlowClusterQC.cdc +++ b/contracts/epochs/FlowClusterQC.cdc @@ -264,7 +264,7 @@ access(all) contract FlowClusterQC { /// The aggregated signature, hex-encoded, encompasses all individual vote signatures contributed by nodes across the cluster access(all) let aggregatedSignature: String - /// The node IDs that correspond to each vote + /// The node IDs that contributed their vote to the aggregated signature access(all) let voterIDs: [String] init(aggregatedSignature: String, voterIDs: [String]) { From 71ef9e2e0a43d01348f030a6c46da5a85419da49 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Mon, 22 Jul 2024 17:46:19 -0400 Subject: [PATCH 146/160] Apply suggestions from code review Co-authored-by: Jordan Schalm --- lib/go/test/epoch_test_helpers.go | 14 +++++++------- transactions/epoch/admin/recover_epoch.cdc | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/lib/go/test/epoch_test_helpers.go b/lib/go/test/epoch_test_helpers.go index bdd9f755f..da0de965b 100644 --- a/lib/go/test/epoch_test_helpers.go +++ b/lib/go/test/epoch_test_helpers.go @@ -810,18 +810,20 @@ func expectedTargetEndTime(timingConfig cadence.Value, targetEpoch uint64) uint6 return refTimestamp + duration*(targetEpoch-refCounter) } -// verifyEpochRecover verifies that the EpochRecover event values are equal to the provided expected values +// verifyEpochRecover verifies that an emitted EpochRecover event is equal to the provided `expectedRecover`. +// Assumptions: +// - only one `EpochRecover` is emitted (otherwise, only the first is verified) +// - the `EpochRecover` is emitted within the first 1000 blocks func verifyEpochRecover( t *testing.T, adapter *adapters.SDKAdapter, epochAddress flow.Address, - expectedRecover EpochRecover) { + expectedRecover EpochRecover, +) { var emittedEvent EpochRecoverEvent addrLocation := common.NewAddressLocation(nil, common.Address(epochAddress), "FlowEpoch") evtTypeID := string(addrLocation.TypeID(nil, "FlowEpoch.EpochRecover")) - var i uint64 - i = 0 - for i < 1000 { + for i := uint64(0); i < 1000; i++ { results, _ := adapter.GetEventsForHeightRange(context.Background(), evtTypeID, i, i) for _, result := range results { @@ -832,8 +834,6 @@ func verifyEpochRecover( } } } - - i = i + 1 } assertEqual(t, cadence.NewUInt64(expectedRecover.counter), emittedEvent.Counter()) diff --git a/transactions/epoch/admin/recover_epoch.cdc b/transactions/epoch/admin/recover_epoch.cdc index 24ea2c902..ec2b167b6 100644 --- a/transactions/epoch/admin/recover_epoch.cdc +++ b/transactions/epoch/admin/recover_epoch.cdc @@ -29,7 +29,7 @@ transaction(startView: UInt64, endView: endView, targetDuration: targetDuration, targetEndTime: targetEndTime, - clusterAssignments: clusterAssignments , + clusterAssignments: clusterAssignments, clusterQCVoteData: clusterQCVoteData, dkgPubKeys: dkgPubKeys, nodeIDs: nodeIDs) From 6d8832149f176dc06cb827a81e4ba2a0950782ec Mon Sep 17 00:00:00 2001 From: Jordan Schalm Date: Thu, 25 Jul 2024 15:37:14 -0400 Subject: [PATCH 147/160] make generate --- lib/go/contracts/internal/assets/assets.go | 6 +++--- lib/go/templates/internal/assets/assets.go | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index b9069ca86..4cb52bcf7 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -10,7 +10,7 @@ // NodeVersionBeacon.cdc (22.87kB) // RandomBeaconHistory.cdc (15.864kB) // StakingProxy.cdc (5.71kB) -// epochs/FlowClusterQC.cdc (18.978kB) +// epochs/FlowClusterQC.cdc (19.005kB) // epochs/FlowDKG.cdc (18.691kB) // epochs/FlowEpoch.cdc (59.764kB) // testContracts/TestFlowIDTableStaking.cdc (9.241kB) @@ -282,7 +282,7 @@ func stakingproxyCdc() (*asset, error) { return a, nil } -var _epochsFlowclusterqcCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x3c\x6b\x6f\x5b\x37\xb2\xdf\xfd\x2b\x26\x01\x2e\x22\x65\x15\x39\xe9\x16\xc1\xc2\x58\x6f\xaf\x2b\xb7\x5b\xa3\xcd\xd3\x6e\xfa\x21\x08\x62\xea\x9c\x91\xc4\xcd\x39\xa4\x42\xf2\xd8\xd1\x06\xf9\xef\x17\xc3\xd7\x21\xcf\x43\x56\xb2\xbd\x6b\xa0\x85\x15\x91\x33\xc3\x79\xcf\x70\xe8\xa3\xe3\x87\x70\xf4\xf0\xe8\x21\xc0\x33\x26\xd8\x1a\x35\x98\x0d\xc2\x56\xc9\x02\xb5\x06\xb9\x82\x42\x56\x15\x16\x86\x8b\x35\xdc\x48\x83\x1a\x56\x52\xd9\x35\x4a\x4a\x03\x1f\x1b\xa9\x9a\x1a\x0a\x54\x86\xaf\x78\xc1\x0c\xd2\x1e\xfa\xba\xd9\x16\xb2\xe6\x62\x4d\xa0\x71\x2b\x8b\x8d\xdd\xc8\xaa\x2a\x42\x94\x02\x84\x2c\x11\x8a\xaa\xd1\x06\x95\x06\xa6\x35\x5f\x0b\x2c\x23\x8a\x00\xc3\x01\x98\x3b\x3a\xff\xd8\xa0\x08\x30\xa4\xb2\x20\x34\x30\x85\xb0\xe2\x4a\x1b\x50\xb8\xe6\x04\x0e\xcb\x19\xc1\xd8\x41\xc1\x04\x28\xfc\xd8\xa0\x36\xc0\xe0\x8d\x34\xa8\x40\x2e\xff\x85\x85\x81\x95\x92\x35\x98\x0d\xd7\x50\x48\x61\x14\x2b\xcc\x9c\x30\x5c\x6d\x70\xf7\xa0\xaa\xa0\xd1\xe8\xbe\x0d\xcb\xa5\x02\xbc\x41\xb5\x03\xdd\x2c\x35\x81\x14\xc6\x9f\xed\x76\x83\x0a\x1d\x3e\x22\x85\x81\x36\xec\x03\x96\x1d\x3a\xfd\x09\xce\x8c\x3d\xdd\x12\xd7\x5c\x08\x3a\x9e\x5c\x01\xb2\x62\x03\x3f\x11\xac\x4b\x34\xcd\x16\xb6\x1b\xa6\xd1\x9e\x00\x58\x59\x73\x01\x5c\x70\xc3\x59\xc5\xff\x6d\x45\x94\x90\x0c\xb7\xdc\x6c\x08\x2c\xad\x6d\xf1\x45\xae\x8e\x30\x13\x7e\x22\x8c\x39\x7d\xb0\x61\x9a\x68\xe7\x62\x5d\xa1\x15\xb7\x83\xcb\x0c\x70\x4d\xb2\x93\x24\xe1\x28\x9f\x1a\x98\x28\x5b\x26\x4b\x51\xd1\x2f\x55\x45\xff\xc4\x15\x5c\x13\x80\x6b\x58\x35\xc2\x09\x5b\x8a\x02\x2d\x7f\xe9\xbf\x17\xa2\x40\xf0\x6b\x5b\x5a\x37\xec\x06\x41\x61\x81\xfc\x06\x4b\x40\x21\x9b\xf5\x06\x78\x89\xc2\xf0\x82\x55\x5e\x01\x8d\x04\xdd\xa8\x2d\xd3\xda\x23\xba\x45\xbe\xde\x10\x4f\x15\xea\x8d\xac\xca\x99\x17\x22\xbc\x5a\xc0\x1a\x05\x2a\x66\xf1\x5b\x96\xd2\x41\x56\x5c\x70\xbd\xc1\x32\x90\xef\x39\x7c\xcb\xab\x0a\xd0\xff\xd3\x8d\x24\x95\x9f\x7b\x71\x31\xb1\x83\xad\xe4\xc2\xcc\xe8\x57\x29\xd0\x1e\xf8\x63\x43\xba\xd0\xae\x06\x2e\x56\x52\xd5\x0e\x5b\x60\x7b\x3c\x1b\x81\x5a\xee\xa0\x21\xee\xda\x6f\xae\xd7\x68\x16\xfe\xdb\x96\x4d\x84\xd2\xd1\x9f\xca\x98\xd8\x0f\x35\xd6\x4b\x52\xde\x15\xc9\x08\x15\x47\x6b\xa0\x4e\x01\x75\xcd\x94\x89\xeb\x35\xdc\x6e\xb8\x15\xaf\x54\x25\x17\xcc\x78\xbb\x26\xc0\x89\x6d\x1b\xc5\x84\xe6\x84\x95\x68\x5a\xa2\xb9\x45\x14\x0e\xa0\x06\x2e\xe0\xe7\x4a\xde\xce\x8f\x1e\x1e\x1f\x1d\xf1\x7a\x2b\x95\x81\x85\xda\x6d\x8d\x3c\x3a\x62\x05\x81\x98\xb0\xaa\x9a\xb6\x34\xd2\x6a\x7f\x9e\x57\x0b\xf8\x7c\x74\x04\x00\x70\x7c\x0c\xa7\x7f\xf2\x4f\x80\xbb\x78\xf1\xfc\xea\xf5\xd9\xe2\x0a\xde\x9c\xbd\xbe\x38\xfb\xf1\xb7\x9f\x2e\xff\xdf\x30\x7a\xc0\xc7\x70\x21\x4a\xeb\xe5\x88\xc1\x68\x36\xa8\xbc\x4e\x92\xd1\x17\x8d\x52\x28\x4c\xb5\x83\x25\x12\x3f\xbd\x6d\x61\x39\x6f\xb7\xaf\x60\xc5\x2a\x32\x6c\x21\x9d\xc5\xc9\x2d\xa9\xa7\x54\x4e\xfb\x96\x08\x6c\x59\xa1\x53\xf1\x65\xcd\x8d\x03\x6f\xf7\xa7\x3c\xbf\x61\x0a\xb8\x78\xa9\xe4\x5a\xa1\xd6\x27\xf0\xa3\x94\x55\x4b\xe4\x55\xeb\x08\xfa\x4e\x36\xea\xa5\xa3\xd6\x49\x3b\x43\x50\x14\xb2\x11\xc6\x21\x09\xdb\x4e\xe0\xad\x17\xed\xbb\x21\x66\x70\x52\xc9\x1b\xeb\x5a\x15\x6a\xd9\xa8\xc2\xfb\x92\x4a\x21\x2b\x89\x21\xe4\xb3\x2b\xc6\x6b\x2c\xc9\x08\x98\x23\xea\xe2\x3c\xc2\xf2\xae\x18\xbd\xb5\x9b\x1d\x18\xcb\x89\xa0\x5d\x71\xe1\x73\xb7\xd1\xfb\x0a\x23\x1d\xd8\x88\x9e\x9c\x4c\x5c\x4b\x86\x6a\x11\x59\xe6\x3a\x77\x8e\xa0\x59\x8d\xa0\xb7\x58\x50\xc4\x82\x8b\x73\xeb\x06\xde\xe4\xc4\x87\x58\x65\x78\xdd\x82\xbb\x16\xbc\xba\x86\x1a\x99\xd0\xce\x29\x1a\xeb\xf5\xb9\x26\x69\x7a\x17\x50\xb0\x2d\x5b\xf2\x8a\x0e\x10\x38\xdd\x3b\x2a\x69\x40\x0a\x26\xd0\x3e\xb0\xf7\xe2\x7c\x06\xcb\xc6\x00\x37\xc4\x4f\xf1\xc0\x64\xac\x8c\x20\x8d\x6a\xb0\x43\x58\x1f\x26\x09\xa4\x2b\x88\x40\xdf\xa8\x02\x58\x28\x0b\xb7\xe1\x04\x3e\x5f\x1a\xc5\xc5\xda\x29\xdc\x97\x61\xb3\x60\x26\x68\x4d\x10\x33\xb7\xce\x64\x5c\xf1\x08\xc2\x1b\x56\x35\xe8\xdc\x5c\xd8\xcd\x45\x89\x9f\x52\xc2\x82\x2e\x38\xca\x08\xb4\xd7\xc9\x84\xb0\xdf\x2f\x84\x79\xf2\xf4\xcb\x7f\xcf\xf9\x2c\x5e\x3c\xbf\xbc\x3a\x7b\x7e\xf5\x5f\x70\x3e\x0b\x26\xa4\xb0\x81\x70\xcb\xcc\xc6\x99\xb2\x0b\x5d\xa4\xc1\xb9\xf9\xf5\x7d\x46\x85\x06\xce\x68\xf5\xa5\x91\x8a\xad\xf1\x25\x33\x9b\x13\x48\x3e\x0c\xee\xb0\x76\x31\xba\x23\x92\xf6\x1a\xb7\x0a\x35\x0a\x63\x05\x38\xec\x7b\x1c\xbd\xb0\xe6\x37\x21\xc8\xcc\xa1\x87\x53\x1b\xd5\x14\x06\xbc\x60\x43\x14\x49\x3d\x9b\x55\x8b\x90\x65\x06\xd0\x94\x03\x71\x91\xfd\x13\x53\x8a\xed\xe6\x2e\x8e\x36\x82\x7f\x6c\xb0\xda\x79\xef\xb2\xe2\x9e\x3f\x01\x2e\x1b\xa7\x31\xae\xeb\x72\xc6\xd2\x11\x14\x2e\x27\xf3\x0f\x9b\x90\x38\x01\xd9\xc4\x8e\xd8\x70\x71\x0e\x39\x85\xa3\x90\x69\xb5\x07\xd1\xd1\xec\xa7\xdf\x7f\xe9\x33\xc4\x48\xc3\x2a\xef\xe7\x5c\x26\x44\x19\x82\x4f\xad\x5c\x7a\x7c\x20\x62\x0b\xc9\x61\x0e\xf8\x72\x74\x6f\x5c\x02\x46\x36\xee\x00\x7b\xe7\x7b\x68\x42\x9b\x01\xfb\x15\x77\xce\x77\x5a\xf7\x78\x58\x04\x48\x09\x69\x75\xdd\x8a\x5f\x36\x06\xa8\x7e\x60\xa6\x51\x94\x19\x29\xa8\x51\x6b\x5b\xd2\x64\x72\xb0\xb1\x5a\x1b\xa9\xb0\x04\xf2\xdf\xb9\x22\x8c\x9d\xc4\x67\x59\xed\x51\xbc\xee\x46\x91\x53\x55\xe2\xfd\x9d\x0b\xdd\xda\xfb\xf5\x59\xf4\xc6\x6d\x2a\x4c\xc5\x81\x26\xa7\x4e\x44\x5b\x55\xe6\x1a\x6a\xb6\x9d\xe5\xc4\x94\x65\x48\x71\xe3\xc1\xac\xa9\xfb\x83\x59\xc8\xc2\x2d\xe3\x06\x96\xac\xf8\x40\x01\xd1\x02\xb3\xf8\x2a\xae\xcd\x3c\x03\x79\xb1\x0a\x44\x52\x34\xa0\x45\xae\x4c\xa2\x74\x3d\xe2\xb8\xb6\x48\xae\x3d\x96\x6b\x58\x71\xac\xca\x98\xa0\x08\x29\x1e\xd9\x48\x38\x0e\x98\xe2\xd4\x37\xc1\xce\xe1\x76\x33\x1e\x9f\xcb\x63\x69\xd5\x30\x31\x0d\xfa\xdc\x35\x0c\xc5\x8a\x0f\xda\xc9\xce\x59\xbf\x63\x09\x61\xdf\xc8\x5b\xa8\x1b\x9b\x1e\xd7\x4b\x4e\x05\xa7\xb7\x9b\x18\x21\xc9\x93\xc5\x80\x65\xeb\xa0\x31\x9a\x1c\x6c\x22\xe0\x99\x3b\xd2\x55\x6b\x43\x7b\xad\x97\xea\xb9\x49\xe6\x43\x66\xfb\x0d\x7f\x0a\x9f\xe3\x66\xfa\xd1\x58\xad\xe6\xce\x19\x9e\x26\xb1\x32\xfb\x3a\x01\x08\xa7\x29\xf8\xa3\x6c\x2d\x1d\x64\xc0\xf6\xe1\x14\x1e\x67\xeb\x88\x23\x9e\x55\x5c\xa4\xe0\xe6\x37\x14\xbe\x75\x87\x42\xfa\x49\xc0\xc2\x69\xf6\xe9\x2f\x1e\x54\xb6\xe5\x4b\xff\x0c\xa3\x10\xfa\x4b\x73\x05\x81\x53\xf8\x3c\x00\x6f\xaf\xc4\xf2\x3d\x1d\x9d\x7a\x8d\xa6\x51\xc2\x55\x52\xa2\x09\xb5\xd8\xc1\x1e\x76\xd5\x08\xd0\xfc\xdf\x38\x99\x06\x89\x77\xf8\xa5\x2c\x7c\xff\xdd\xa4\x2b\xc0\x79\x85\x62\x6d\x36\x53\x38\x84\xbc\x9a\x0b\x5e\x37\x35\xe8\xa6\x26\x1a\xad\xea\x7b\xc9\x29\xfc\xd8\x70\x72\x7e\x5c\x80\x54\x25\x92\xe8\xd3\xc2\x23\x30\x11\x58\x06\xfd\x86\x55\xbc\x1c\xea\xf7\x38\x33\xa1\x62\xd5\x9d\x7d\x3e\x6c\x2b\x1c\x6f\x2d\x07\x88\x94\xab\x50\xa9\x07\x56\x3c\xfd\xbe\xc3\x0a\xbe\x1a\x10\xfe\x29\x3c\x1e\xd0\x30\xcf\xb5\xc7\x1d\x3d\xca\x3e\x52\x70\x5b\x55\x52\xaa\x17\x02\xaf\x36\x5c\x95\x70\xda\x87\x7f\xec\x49\x99\xfc\x75\x4a\x79\x1c\x17\x06\xd7\xa8\xa0\xe4\x37\x5c\x73\x29\x66\xc0\x45\x51\x35\x24\x6c\x0b\xaa\x6f\x42\xca\xea\x9c\x07\xf2\xdd\x14\x1e\xe6\x38\xfb\x24\x95\xfc\xe6\x35\xd6\x8c\x8c\x57\x0d\x51\xf4\x3f\x2d\x45\x47\x5d\xf6\x64\x7b\xff\x1e\xd1\x3e\xe9\xba\x09\xc7\x22\x22\x8c\xfe\xff\x97\x76\x5d\xce\x2f\x40\x2a\x4a\xf6\x6f\x4d\x51\xee\xe3\xb6\x97\x88\x4a\x92\xac\x3d\xaa\xaa\x0d\x33\x8d\x8e\x51\xd0\x6b\xd1\x03\x0d\xaf\x16\xa1\x57\xd1\x8d\x34\xb1\xee\x62\x89\x1d\x7a\xf5\x26\x75\xec\x76\x8c\xf0\x53\x81\x58\xc6\xbe\x4b\xa6\x82\xd7\xb3\x6e\x42\x25\x06\x08\x49\xda\x48\xae\x2d\xa3\x79\x89\xca\x36\xf8\xea\x6d\x85\x3e\xb0\xb8\x30\x8e\x66\x23\x4b\xcf\x04\x9d\x67\x09\x31\x13\xf0\xf1\xcf\xa5\x52\x8a\xa2\x14\x06\xe3\xea\x1e\xd6\xd5\x96\xae\x71\x25\x1b\xc2\x22\xdd\x0e\xbf\xde\x67\x01\xae\x38\xe5\xda\x23\xf6\xc5\x21\x8c\x99\x21\xd7\x0b\x4f\x39\xd9\xa0\x0b\x35\x3f\x74\xe4\xbf\x6a\x73\x28\x72\x16\x77\x7b\xcf\xf9\x07\xdc\x0d\x05\x81\x60\xcd\x7b\x37\xbf\xf5\xa8\xde\xdd\x83\x7f\x78\x5b\xe8\xf8\x8a\x01\xc8\x89\xba\xf9\xed\xbd\x25\x5f\xf6\x04\x18\xbf\x55\xf0\x6a\x4c\x53\xff\xe9\xbd\xa1\xd3\xd5\x57\xce\xfd\x2d\xf6\xb8\xbf\x01\x5d\x6d\x2b\x5a\xca\x76\x4d\xd4\x99\x99\xdb\x18\x34\x65\x3c\xf9\x21\x81\x05\xb7\xec\x48\x48\x28\x20\xf9\xc5\xb6\xdb\x0f\x69\xc5\xe4\xa8\x80\x17\xa2\xda\xb5\x5e\xdd\xb8\xbe\x28\x5f\x65\x8d\x4b\xdd\x2a\xf2\xe8\x81\xbc\x24\xc9\x71\x39\xcd\xf3\x42\x0c\x9e\x2b\x55\xa9\x2e\x19\x9e\x94\x85\x42\x1b\x59\x40\xe0\x2d\x60\xbd\x35\x3b\x78\xb5\xe8\x2d\xb4\x8d\xa7\xf6\x80\xc9\xf1\xe0\xb4\xfd\x3d\x24\x4f\x6d\x1e\x34\x4b\xf2\xff\x13\x78\xfb\x6e\x16\x74\xe2\x24\x27\x78\xe6\x6a\xe5\x8b\x73\xbb\x6a\x3a\x48\xe9\x59\xe9\xfa\xc0\x2d\xc4\x08\x4d\xcf\xac\xb1\x8b\xd0\x88\xb2\x7d\x6f\xe2\x5a\xdb\xab\xeb\x00\xb3\x56\x5e\x33\x53\x6c\xa2\x07\xd0\x7b\x4d\x3f\xfc\x04\xa8\xd1\xfc\xf2\x0c\x67\x3c\xed\xa2\x9f\xc1\x7f\x0c\xfa\x60\x5b\x3c\x29\x25\xb7\xe4\x52\x5d\xe5\x62\x12\xe7\x31\x20\xfc\xb8\xa8\x95\x3f\xc1\x99\x07\x57\x31\x4c\x8d\x07\xd0\xdf\x7c\xda\xd1\xa6\xf1\xed\xf4\x93\xe8\xc5\x9c\x95\xe5\x65\x10\xcf\xc4\x92\x10\xa5\x75\x6f\xfa\x35\x50\xde\x38\x75\x70\x30\x5c\xad\x3e\xbe\xff\xcb\xe0\x37\xfd\x7f\xfd\xd2\xd7\x2b\xef\x6e\x12\xec\x87\x06\xe1\x9e\x9b\xca\x71\xf6\x9c\x56\xac\x3e\xbd\x70\x99\x6e\xab\x27\xdf\xe3\x48\xdb\x92\x30\xd8\x64\x0b\xb1\x62\x8d\xe6\x9f\xa9\xde\x4d\x2c\x8b\xca\x10\x36\xa6\xae\x00\xeb\x46\x0f\x4f\xf4\x80\xda\xbe\x75\xfb\xdf\x8d\x91\x7f\x49\xe4\xb7\x45\xb3\x2f\xc3\x7c\xc7\x16\xcb\xbb\x29\xb7\x99\xf6\x7e\xa2\x9d\x0f\x70\x94\x0f\x56\x56\xc3\x24\x7b\x5d\xdf\xcb\x78\x13\x7b\x32\x3e\x25\x29\x64\x5d\xf3\x96\xf1\x49\x39\x7a\x18\xf3\x7f\xdf\x13\x36\x27\xee\x18\x51\x12\x2e\xbd\xdb\x27\x8b\xfd\x41\x98\xc0\xdd\x2d\x98\xec\x78\x5f\x71\x2a\x2f\x98\x83\x0f\x34\xf3\x38\xc2\xb9\x06\x25\x75\xc0\x81\xe0\xb4\x5b\x6c\x3a\xdb\x49\x5a\xd8\xd7\x6f\xec\x6d\xa5\x4a\x1b\x99\x4e\xff\x94\xac\xed\x4d\x42\xa7\xad\xe9\x1b\x40\x36\xcc\x1b\xd0\xbc\xde\x5a\xb7\x2a\x0c\xe3\x42\x83\xb6\xf4\xbb\xce\x54\x0c\x24\x58\x66\x59\x4a\xc8\x08\x37\xf8\x09\x50\x14\xb2\x6c\xbf\x07\x6e\xec\xd9\x7c\xc7\xcd\xde\x29\xaf\xd7\x0a\xd7\xd6\x80\xa9\x60\x6b\x78\x35\x54\x8e\xf5\xfb\xbe\xbe\xa3\x6a\x3b\x66\x03\xed\xd4\x5e\xfb\x4d\x1b\xf6\xc1\x5d\x5f\x75\xfa\x6e\xdd\xd6\x87\x73\x94\x41\x54\x7d\xc8\xf9\x89\x5b\x04\x16\xe3\xa4\xbd\x07\x75\x05\xf4\xb5\xc7\xfb\x2b\xee\xae\xa7\xa3\x38\xa3\x83\x8f\x39\x6b\x1f\xef\x06\x3f\x3d\xea\xb2\xf3\xa0\x5e\x4e\xcc\x16\x46\x41\x0f\xf6\x9e\xfd\x8d\x4b\x68\xba\x4d\x42\x72\x30\x75\x17\x1f\xa3\xdd\x56\xbf\xff\x62\xbc\x8f\x4c\x28\xdb\x96\x6e\xf4\x88\x2d\x86\x51\xd8\xb7\x23\x4d\x5c\xeb\x56\x6c\xeb\x29\x97\xde\x6c\x90\x1a\xe7\x24\xff\xd8\x6b\x82\x5b\x35\x14\xb1\x1c\x74\xdf\xb2\xa0\x18\xff\xf4\xfb\x13\xb8\xef\x2e\xd9\x2e\xce\xa1\x6e\xb4\xb1\x3d\x07\xdf\x56\xf0\xeb\xbc\x2e\xde\xbf\xab\x25\xd4\x76\x43\x4f\x7b\x41\xd1\x2e\xa8\x63\x66\x32\xf8\xb5\x6f\xc7\x9f\x7a\x32\xfb\x0b\x52\x66\xc0\x69\xc6\x9b\xfe\xe2\xdb\xd0\x9b\x6a\x99\x35\xe4\x40\x7b\xad\x20\x34\x6d\xf6\xf2\xbe\xaf\xd9\x83\xbe\x2e\x3d\x79\xfc\xfd\x40\x6c\xde\x3b\x4e\xde\x77\x15\x7d\x10\x53\xcb\xc2\x6e\x61\xd5\x73\x9d\xc9\xe5\x0f\xe9\xe8\x48\x8f\x88\xb5\x77\xae\x69\x65\x61\x1b\xdd\xa2\xcc\x2f\x2c\x8e\x5d\x62\x3a\xd0\x54\x1b\xbf\x2b\x6a\x67\x0e\x60\xcc\x62\x3f\x16\x1d\x90\xa0\xb0\x90\x6a\xb8\x54\xbe\xe3\x8e\xe7\x2a\x58\x63\x72\xe7\x60\x5d\xdc\x57\xdf\xbc\x84\x6b\xd6\xcb\xb4\x78\x71\x92\x79\x37\x82\x33\xf3\xa9\x01\xa1\x33\x25\x5b\xda\x7c\x15\xde\x67\xb9\x36\x8c\x86\x08\x5f\x28\x14\x52\x29\xd4\x5b\xe9\x3a\x11\xb6\x11\xb1\xd7\xab\x26\xb5\x56\xef\x50\xad\x3b\xea\x74\xc2\xf5\x00\x2f\x66\x5d\xbd\x9d\x0d\xc0\xfe\x96\x2e\x79\xce\xfc\xd4\xb2\xf4\xf0\xe2\x67\xa3\xb6\x91\x2d\x23\xca\xbc\x5b\xa0\x5f\x0f\x31\xd3\xac\xa4\x39\xd4\x29\xe4\xf4\xcf\xd9\x76\x8b\xa2\x9c\xc4\xbd\xd3\x03\x11\x87\x2a\xe8\x7d\xa0\xf8\x4e\xa4\x74\xaa\x80\xce\x7f\x9e\xfe\x27\x6e\xc2\xea\x76\xc9\x0c\x0b\x0e\x83\x32\x08\xd5\xe6\x59\x21\xf0\x26\xd5\xdb\x9d\x4e\x81\x4e\x75\x4e\x20\x3f\xf7\xf4\x3a\xc9\xa8\x22\xb3\x66\x69\xfa\x30\xb3\x69\x59\xbd\x65\x5a\xa3\x9d\x7f\x23\x0d\xe2\x37\xbc\x6c\x7c\x6b\x31\x35\x7e\x9b\x2f\xf1\x65\x63\xdc\x64\x85\x9f\x4b\x2c\x94\x74\x73\x6a\x77\x5e\xbe\xb6\xd4\x5c\x76\xa5\xfe\x67\x9a\x24\xa1\xda\x67\x92\xd6\x1a\xf7\xd0\x72\xb0\xd1\x0d\xc0\x80\xd3\xa1\x53\x7e\xad\xf1\x74\xd4\x8a\xd8\xd1\x99\xde\xe1\xdd\x6a\x17\x93\x59\xc7\x38\x96\xc0\x56\x2e\x7b\xc3\x5d\x1c\x1a\x6d\x27\xb5\xec\x74\x64\x0b\x50\x68\xc3\x84\x87\x2c\x65\x19\xe7\x83\x56\x8d\x3d\xd7\x56\x1a\x14\x86\xb3\xca\x0f\xcf\xb9\xa1\x9d\x5b\x5e\x55\xad\xee\x0a\x3b\x18\xe6\xbd\xb4\x6f\xbf\xe5\x23\x60\xed\x80\x8e\x14\x2b\xae\x6a\x2c\x81\x25\xf3\x14\x61\x48\x33\xce\x15\xe1\x27\x13\x26\x63\xbb\x52\x8e\x94\x3b\xce\x8c\xe4\xfd\x17\xe7\x69\x5e\xa9\x60\x32\x5a\x04\x8c\x67\x9a\x77\x56\x01\x1e\xd2\x07\xdc\x05\x64\xae\x00\xf8\x4a\x5c\x36\xfb\x8f\x25\x42\x1f\xdf\x60\x52\xdb\xdf\x70\x58\xfa\x7a\x2f\x9b\x65\xf4\xfa\xa8\xfd\x18\x94\xc7\x32\x3d\x81\xfb\x0b\x26\x6c\x43\x37\xb4\x35\x87\xa6\xc8\x62\x85\x65\x4d\x75\x6c\x2a\xae\x9b\xf3\x7e\x43\xd2\xda\x1e\x96\x42\x58\xfc\x90\x2d\x1c\x38\x97\x3f\x95\xeb\x70\x9c\x53\xa9\x6c\x54\x33\xda\xe1\xb8\xf4\xb3\x0d\x24\x38\x37\x25\x63\x9b\x66\xb0\x60\x82\xb4\xbb\x60\x55\x85\xa5\x53\x76\x49\x06\xb3\x45\xd5\x99\xa3\x21\x28\xd9\x87\x97\x4c\xb1\x5a\x9f\xe4\x39\xd0\x09\x5c\xba\xf2\xf1\x3a\x09\xb8\xd7\x6d\x39\xdd\x2f\x1a\x33\x98\xe1\x27\xcb\x6f\x7e\xe9\x17\x86\xe9\xa6\xd1\xd8\x48\x40\x26\x5d\xea\x12\x67\xf8\x6c\x7f\x3a\x3d\xac\x62\xb9\x24\xd2\x61\x4e\x2a\x93\xc8\x1e\xe2\xbc\x32\xa9\x18\x17\xb0\xf5\x2b\xee\xf7\x1b\xe6\x29\x6d\xa1\xe8\xfa\x07\x3c\xf6\x25\x57\x32\x3d\x62\x0b\x2f\x82\xb7\x44\xd7\x7f\x1f\x06\xe6\x4f\x34\x00\x2a\x64\x9e\x07\x00\xea\x18\x11\x49\xec\x17\xa6\x09\x4a\x39\x49\x34\x7a\x1a\x41\x07\x90\x76\xb2\xd3\x19\x07\xd3\x26\x98\xcb\x5e\x0b\x71\xbd\x37\xf7\x76\xa1\x59\x56\xbc\x70\xfe\x26\x1b\xf3\x8f\x53\x3f\x1f\x3a\x46\x41\x6e\xcc\xed\x72\xb6\xf3\x32\xfc\x3e\xe9\x9d\x29\x2e\x3b\xe9\xda\xdc\xbc\x44\xd2\xac\x5f\xf0\xd3\x64\x3a\xeb\xed\x8b\x12\x38\xab\xd6\x52\x71\xb3\xa9\x9d\x82\xe7\xff\x36\xff\xf1\xb7\xcb\xf7\x3f\xfe\x76\xf9\xe4\xbb\xf7\x7f\xfd\xdb\x93\x0c\xc8\xb4\x77\xde\xc5\x06\xdd\xbc\x8f\x46\x6c\xa7\x3e\x5b\x51\x4b\x57\x01\xc4\x86\x92\xf6\xa1\xa7\x77\x74\xae\xdf\xd8\x2f\x4e\xdb\xd3\xcd\x6f\x50\xf1\xd5\xc0\xf9\x93\x84\x34\x57\xba\x3b\x4f\x8f\x25\x65\x61\x27\x99\x7a\xed\xdd\x54\xca\x9a\x71\x71\x89\x5b\xe6\x2e\x5e\xaf\xd8\xfa\x04\xee\xff\xfc\xdb\x8b\x3f\x1e\x2d\x42\x40\x7c\x4f\x8a\xf3\xe8\xcd\xe3\xc7\x8f\x16\x97\x8f\x1f\x3f\x22\xef\xf0\xe8\x7e\x1f\xd4\x86\xe9\x4d\xc2\xf8\x5f\xd2\x8f\xf3\x5f\x9f\x9d\x2d\x9e\x7c\xf7\xb7\xf7\x5f\xc3\xfb\x33\xad\x51\x99\xb6\xea\xe2\x26\xd7\x28\xe6\xbe\xef\xf3\xcf\xf3\xba\x4f\x62\x2c\x6d\x9c\x2d\xb4\x29\x53\xe1\x42\x0c\x65\x0e\x24\x13\xde\x0d\x15\x7d\xe2\x82\x21\xf4\xfb\x53\x36\x12\x2d\xb1\x92\x62\xad\xc1\xc8\x9e\x26\x74\xda\x1e\x7d\xfb\xf5\x9f\xde\x26\xe6\xfb\xae\x77\x94\x1f\x7e\x80\x2d\x13\xbc\x98\xdc\xbf\x8a\x48\xfd\x29\x5c\x82\xdf\xa8\xd0\xfa\xcb\x66\x81\xef\x4f\xc7\x08\xea\xd1\x12\xc6\xd2\xdf\xa6\x14\xbf\xbb\x37\xc2\x0a\x4f\xc4\x83\xf4\x09\x4b\x96\x1f\x07\x74\x96\xbc\xd8\xee\x99\x8f\xde\x7b\xa4\xde\xab\x8f\xf4\x12\xbb\xa6\x98\xcc\xec\xb9\x81\xb7\xbc\xae\x74\x57\x57\x69\x3b\x28\xb3\xad\xe9\xe0\xe2\xd0\xcd\x49\xec\xa9\xaf\x0a\x81\x14\x81\xb7\xfd\x9e\x7d\xaf\x1f\x1a\xd8\x90\x4f\x5c\x25\xdc\x38\xa0\x6f\x9f\x92\x43\x9a\x90\x8f\xe5\xd8\xb6\x31\xde\x8e\xcc\x83\xd9\xa3\x0d\x0c\x85\x05\x0a\x0e\xbb\x39\x48\x28\x68\xaf\x0f\x22\xd2\x01\x1e\xd9\x77\x04\xe4\x29\x65\xe9\xee\x97\xe2\xa0\x60\x50\xbf\x25\x2b\x3e\x8c\x51\x74\xa7\x86\x84\x9b\x26\xfa\xff\x74\x4f\x32\x36\xac\xd3\xad\x00\xba\x19\x59\x36\x7e\x6f\x50\xad\x58\xe1\xe3\x80\x7b\x88\x15\x6e\x22\x5c\x79\xc1\x65\x7c\x6d\x40\xf5\x0a\x53\xa6\x5b\x55\x2b\x5c\x37\x15\x53\xc0\x1a\x23\x6b\x57\x39\xf9\x71\x55\x3f\x07\x4b\x8b\xdc\x18\x6c\x3a\x96\xe3\xf3\x7c\xed\xe6\x6a\x5d\xea\xd4\xbe\x2d\xb8\xa6\x33\xda\x29\xe0\xeb\xf6\xa1\x90\xd9\x28\xfb\xb0\x8b\x25\xaf\x13\xc6\x2b\x18\x1e\x0f\x67\xe1\xbc\x68\x8f\xf3\x79\x34\x63\x73\x09\xb9\xcd\xc6\x0f\xa9\x09\x4e\xe0\x7f\xed\xda\xf1\xee\xa9\x61\xca\xb8\xb4\x6c\x32\xf0\x24\x26\x99\xc9\xeb\xef\x94\x5b\xbf\x71\xb8\xae\xa1\x45\x2b\xa9\x0a\xbc\xec\xae\xec\xd4\xb8\x76\x76\xbf\x65\xcb\x56\xc9\x1b\x5e\xfa\xb9\x94\xf0\xc4\xc3\xc8\x50\x8b\x18\xd9\x2d\x46\x5c\x32\xa4\x67\x11\xa8\x1d\x72\xf6\x13\x20\x6e\xa4\x01\xdd\x33\x02\x92\xb7\x2d\x5d\xc4\xc0\xeb\xa0\x4c\x36\x96\xa6\x93\x01\xc1\x64\xc9\xb8\x9b\xfa\xd0\x7e\xec\x63\xb0\x46\xea\xd4\xe6\x9d\x2a\x92\xeb\x76\x74\x3a\x8c\x0a\xbb\x5c\xa5\xda\x79\xc2\xf8\xb2\xc2\xd0\xf4\x8c\x3a\x97\x81\x09\xea\x37\xf3\x6f\xe3\x2c\x20\x85\xda\x28\x5e\xf8\x80\x49\x74\xda\xf1\x6c\x19\x6c\x28\x7b\x65\xfa\x67\xab\xdb\xf0\x25\xed\xdf\x1f\x79\x11\xe6\xf0\x82\x33\x49\xe1\xb5\xbf\x0f\xf6\xf8\x2c\xef\xa5\x58\xf1\xb5\x6d\x50\xb9\xf7\xa1\xde\x06\xfb\x4d\x84\x07\x71\xe2\x47\x0f\x56\x45\xf6\xf1\xd5\x8b\xab\x9f\x4e\x9c\x40\x82\x1c\x7c\xc5\xe7\xed\xdd\xc8\xed\xa3\x0a\x6f\xb0\x6a\x85\x90\xbc\x62\x6c\xb6\x52\x64\xf0\xf2\x07\x88\x76\x76\xdd\x9b\x39\xb8\x57\x03\x2f\xed\xa8\xfd\x28\x3d\x8b\xb3\xdf\xaf\x2e\x5e\x3c\x3f\xb1\x54\xb8\xa4\x82\x6b\x40\xc5\x34\xea\x64\xd4\xa6\xf3\xf4\xe8\x78\xab\xf0\x86\xcb\x46\xa7\xdd\x93\x6f\x32\xfb\xcf\x7b\xfc\x79\x5b\xd2\x75\x4b\xea\x71\xdf\xdf\x7a\xfb\x81\x09\xed\xa1\x1b\xba\xc1\x11\xed\xf6\x01\x55\xfb\xec\xef\x80\x79\x2c\x57\x2a\xba\xf6\x69\x6c\x9a\x51\xa4\xe0\x05\xdf\x32\xeb\x15\x32\xdb\x4c\x51\xb6\x0f\x5c\x42\x68\x4c\x27\x97\x47\xc6\x02\xe1\x90\x48\xea\xf5\xbe\x9d\xd6\xe8\x59\x44\xce\x97\xf4\x53\x7e\x7f\x39\x40\x59\x68\x7a\xdc\x9b\x0e\xcf\xfb\x8c\x67\xc0\x6d\xb7\x24\x4b\x9a\xfb\x3f\x3d\xb8\xfd\x49\xa1\x3b\x7a\x03\x07\x27\x06\x1d\x9e\x0e\xdd\x5e\xfa\x01\xe0\x27\x4f\x7b\x03\xc0\xa3\x0d\x1f\x23\xb7\x3a\x8d\x0a\xbd\xbc\xdd\x35\x7f\x42\x7f\x33\x76\x80\x0a\xd2\xab\xef\x8e\xff\x9a\x37\x7b\x6a\xf6\x2f\xaa\xbb\x76\xf1\x61\x4d\x50\xd6\x0d\xd3\xed\x70\x98\x9f\xbd\x98\x1f\x16\x57\xbf\xa1\xdf\xe2\xce\x13\xe6\x15\xed\x1c\x7a\x68\xbb\x84\xbb\xe9\x38\x10\xb9\xc4\x95\x54\x08\xdc\xd8\x47\xdf\x4b\xdb\x46\xd8\x6e\xfb\x2d\xbb\x71\x6c\x99\x2b\xb0\xcf\x3f\xc7\xb8\xfd\x33\x65\x02\xf6\xcf\x07\xc8\x6d\xd2\x9b\xb5\xed\x20\x54\x5c\x96\xb9\x6c\x36\xb2\xa9\xca\xc8\xfa\x86\x12\x2f\xdf\x59\xde\x2a\x69\x64\x21\x2b\xd8\xb0\xca\x68\x37\xb0\x88\x58\x6a\x3f\xec\xaf\x50\xe3\xf0\x64\xc7\x60\x3e\x72\xb8\xa3\xeb\x9e\x0e\xba\x77\x40\x6e\xd6\x95\xc1\x52\xca\x0a\x99\x00\x83\xce\x73\xf3\xb4\x11\x6d\xa7\x62\xc3\xdf\x71\xe8\x69\xdd\x4d\xd2\x1f\xeb\xe5\x26\xd9\x43\x03\x75\xa1\x5f\x47\x38\x93\xf7\x9d\x66\xf5\xd4\xbd\x63\x4d\x0e\xe7\x43\xf0\xdd\x66\x7f\xaf\x9d\x2c\xf8\x9a\xd3\xc5\x97\x57\xe1\x09\xae\x7f\x1e\x65\x43\xfd\x75\x37\x57\xcb\xd2\x3f\xdf\xcb\x2a\x52\x53\xf3\x40\xc8\xd6\xfc\x33\xe1\x04\x4d\x49\xa9\x8d\xdc\xe9\x0e\x0e\x07\xa7\xcd\x02\x2f\x0c\x14\x56\x8b\x12\x80\x6c\xcd\xfc\xdc\xca\x3e\xce\x86\x76\xf8\x37\xb2\x75\xb0\xf9\xbc\x9f\xaf\xe1\xcd\x7d\x1c\xb6\x09\x6e\xc3\x52\xb9\x6a\xaa\x6a\xd7\xf3\x21\xed\x3c\xf3\xc8\x55\x49\x3c\x56\xd6\xa0\x1c\x3f\x54\x62\x81\xdf\xd0\x6a\xf1\x33\xb4\x07\x77\x5a\x02\x63\x3e\xff\x87\xbd\x91\x5e\xd9\x7b\x91\xa8\xca\x90\xb9\x05\x86\xcd\xba\x1b\x8b\xb4\xef\xe8\x14\x6e\xe7\x5a\xb6\xf6\xc9\x5f\xb6\x9c\xaf\xf6\x45\x5d\x2f\xed\xf1\x81\xd7\xb6\xf5\xd0\x9f\xc5\x3c\x7f\x77\x2f\x99\x86\xb9\xd7\x9f\xf4\x19\x8c\x68\x1e\x70\xeb\xa5\x12\x2d\x73\x53\xb3\x55\x15\xaf\x99\xc7\xff\x96\xca\xf8\x1f\x4f\xc8\x34\x2a\xf9\x03\x1f\x14\x61\x62\xe2\xd8\x37\x8d\x74\xea\x48\x8f\xa9\xbf\x7d\xe5\xcf\x57\x70\x8b\x8e\xdf\xf1\x0f\x4c\x84\xbf\x94\xd2\x66\xbb\xf6\xef\xec\x78\x70\x7b\x54\x7e\x20\x0c\x76\x4c\xb7\x93\x4f\x8e\xa4\xad\xbd\xc7\x5b\x41\x72\xd9\x9b\x80\xd3\x3b\xc4\x9d\xc7\x8e\xae\x0c\x3b\x8b\x63\x46\xed\x19\x65\xef\xff\xd2\x40\x65\x59\xda\x7d\xf0\x0e\xa7\x70\xac\xdd\xc7\xe3\x55\xac\x50\x5e\x2d\xec\xba\x7c\x6b\xf7\xe5\xfb\xd8\x56\xd7\x39\xc8\xf7\xf6\x43\x62\x9b\xc9\xe4\x2b\x93\xcc\xff\xed\xbb\xfc\xab\xd4\x41\xe6\xef\x12\x63\x77\x69\x11\x7d\xc0\xe7\x2f\x1d\x12\xfc\x5f\x71\x98\x7b\x92\xe7\x9a\xdd\xe0\x24\xd6\x96\xf6\xbc\x93\xe9\x0c\x8c\x3c\x19\xe6\x54\xe8\x41\x7c\xf9\xbf\x00\x00\x00\xff\xff\x88\xec\x19\xdc\x22\x4a\x00\x00" +var _epochsFlowclusterqcCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x3c\x6b\x6f\x5b\x37\xb2\xdf\xfd\x2b\x26\x01\x2e\x22\x65\x15\x39\x69\x8b\x60\x61\xac\xb7\xd7\x95\xdb\xad\xd1\xe6\x69\x37\xfd\x10\x04\x31\x75\xce\x48\xe2\xe6\x1c\x52\x21\x79\xec\x68\x83\xfc\xf7\x8b\xe1\xeb\x90\xe7\x21\x2b\xd9\xbd\x6b\xa0\x85\x15\x91\x33\xc3\x79\xcf\x70\xe8\xa3\xe3\x87\x70\xf4\xf0\xe8\x21\xc0\x33\x26\xd8\x1a\x35\x98\x0d\xc2\x56\xc9\x02\xb5\x06\xb9\x82\x42\x56\x15\x16\x86\x8b\x35\xdc\x48\x83\x1a\x56\x52\xd9\x35\x4a\x4a\x03\x1f\x1b\xa9\x9a\x1a\x0a\x54\x86\xaf\x78\xc1\x0c\xd2\x1e\xfa\xba\xd9\x16\xb2\xe6\x62\x4d\xa0\x71\x2b\x8b\x8d\xdd\xc8\xaa\x2a\x42\x94\x02\x84\x2c\x11\x8a\xaa\xd1\x06\x95\x06\xa6\x35\x5f\x0b\x2c\x23\x8a\x00\xc3\x01\x98\x3b\x3a\xff\xdc\xa0\x08\x30\xa4\xb2\x20\x34\x30\x85\xb0\xe2\x4a\x1b\x50\xb8\xe6\x04\x0e\xcb\x19\xc1\xd8\x41\xc1\x04\x28\xfc\xd8\xa0\x36\xc0\xe0\x8d\x34\xa8\x40\x2e\xff\x89\x85\x81\x95\x92\x35\x98\x0d\xd7\x50\x48\x61\x14\x2b\xcc\x9c\x30\x5c\x6d\x70\xf7\xa0\xaa\xa0\xd1\xe8\xbe\x0d\xcb\xa5\x02\xbc\x41\xb5\x03\xdd\x2c\x35\x81\x14\xc6\x9f\xed\x76\x83\x0a\x1d\x3e\x22\x85\x81\x36\xec\x03\x96\x1d\x3a\xfd\x09\xce\x8c\x3d\xdd\x12\xd7\x5c\x08\x3a\x9e\x5c\x01\xb2\x62\x03\x3f\x13\xac\x4b\x34\xcd\x16\xb6\x1b\xa6\xd1\x9e\x00\x58\x59\x73\x01\x5c\x70\xc3\x59\xc5\xff\x65\x45\x94\x90\x0c\xb7\xdc\x6c\x08\x2c\xad\x6d\xf1\x45\xae\x8e\x30\x13\x7e\x26\x8c\x39\x7d\xb0\x61\x9a\x68\xe7\x62\x5d\xa1\x15\xb7\x83\xcb\x0c\x70\x4d\xb2\x93\x24\xe1\x28\x9f\x1a\x98\x28\x5b\x26\x4b\x51\xd1\x2f\x55\x45\xff\xc4\x15\x5c\x13\x80\x6b\x58\x35\xc2\x09\x5b\x8a\x02\x2d\x7f\xe9\xbf\x17\xa2\x40\xf0\x6b\x5b\x5a\x37\xec\x06\x41\x61\x81\xfc\x06\x4b\x40\x21\x9b\xf5\x06\x78\x89\xc2\xf0\x82\x55\x5e\x01\x8d\x04\xdd\xa8\x2d\xd3\xda\x23\xba\x45\xbe\xde\x10\x4f\x15\xea\x8d\xac\xca\x99\x17\x22\xbc\x5a\xc0\x1a\x05\x2a\x66\xf1\x5b\x96\xd2\x41\x56\x5c\x70\xbd\xc1\x32\x90\xef\x39\x7c\xcb\xab\x0a\xd0\xff\xd3\x8d\x24\x95\x9f\x7b\x71\x31\xb1\x83\xad\xe4\xc2\xcc\xe8\x57\x29\xd0\x1e\xf8\x63\x43\xba\xd0\xae\x06\x2e\x56\x52\xd5\x0e\x5b\x60\x7b\x3c\x1b\x81\x5a\xee\xa0\x21\xee\xda\x6f\xae\xd7\x68\x16\xfe\xdb\x96\x4d\x84\xd2\xd1\x9f\xca\x98\xd8\x0f\x35\xd6\x4b\x52\xde\x15\xc9\x08\x15\x47\x6b\xa0\x4e\x01\x75\xcd\x94\x89\xeb\x35\xdc\x6e\xb8\x15\xaf\x54\x25\x17\xcc\x78\xbb\x26\xc0\x89\x6d\x1b\xc5\x84\xe6\x84\x95\x68\x5a\xa2\xb9\x45\x14\x0e\xa0\x06\x2e\xe0\x97\x4a\xde\xce\x8f\x1e\x1e\x1f\x1d\xf1\x7a\x2b\x95\x81\x85\xda\x6d\x8d\x3c\x3a\x62\x05\x81\x98\xb0\xaa\x9a\xb6\x34\xd2\x6a\x7f\x9e\x57\x0b\xf8\x7c\x74\x04\x00\x70\x7c\x0c\xa7\xff\xe1\x9f\x00\x77\xf1\xe2\xf9\xd5\xeb\xb3\xc5\x15\xbc\x39\x7b\x7d\x71\xf6\xd3\xef\x3f\x5f\xfe\xbf\x61\xf4\x80\x8f\xe1\x42\x94\xd6\xcb\x11\x83\xd1\x6c\x50\x79\x9d\x24\xa3\x2f\x1a\xa5\x50\x98\x6a\x07\x4b\x24\x7e\x7a\xdb\xc2\x72\xde\x6e\x5f\xc1\x8a\x55\x64\xd8\x42\x3a\x8b\x93\x5b\x52\x4f\xa9\x9c\xf6\x2d\x11\xd8\xb2\x42\xa7\xe2\xcb\x9a\x1b\x07\xde\xee\x4f\x79\x7e\xc3\x14\x70\xf1\x52\xc9\xb5\x42\xad\x4f\xe0\x27\x29\xab\x96\xc8\xab\xd6\x11\xf4\x9d\x6c\xd4\x4b\x47\xad\x93\x76\x86\xa0\x28\x64\x23\x8c\x43\x12\xb6\x9d\xc0\x5b\x2f\xda\x77\x43\xcc\xe0\xa4\x92\x37\xd6\xb5\x2a\xd4\xb2\x51\x85\xf7\x25\x95\x42\x56\x12\x43\xc8\x67\x57\x8c\xd7\x58\x92\x11\x30\x47\xd4\xc5\x79\x84\xe5\x5d\x31\x7a\x6b\x37\x3b\x30\x96\x13\x41\xbb\xe2\xc2\xe7\x6e\xa3\xf7\x15\x46\x3a\xb0\x11\x3d\x39\x99\xb8\x96\x0c\xd5\x22\xb2\xcc\x75\xee\x1c\x41\xb3\x1a\x41\x6f\xb1\xa0\x88\x05\x17\xe7\xd6\x0d\xbc\xc9\x89\x0f\xb1\xca\xf0\xba\x05\x77\x2d\x78\x75\x0d\x35\x32\xa1\x9d\x53\x34\xd6\xeb\x73\x4d\xd2\xf4\x2e\xa0\x60\x5b\xb6\xe4\x15\x1d\x20\x70\xba\x77\x54\xd2\x80\x14\x4c\xa0\x7d\x60\xef\xc5\xf9\x0c\x96\x8d\x01\x6e\x88\x9f\xe2\x81\xc9\x58\x19\x41\x1a\xd5\x60\x87\xb0\x3e\x4c\x12\x48\x57\x10\x81\xbe\x51\x05\xb0\x50\x16\x6e\xc3\x09\x7c\xbe\x34\x8a\x8b\xb5\x53\xb8\x2f\xc3\x66\xc1\x4c\xd0\x9a\x20\x66\x6e\x9d\xc9\xb8\xe2\x11\x84\x37\xac\x6a\xd0\xb9\xb9\xb0\x9b\x8b\x12\x3f\xa5\x84\x05\x5d\x70\x94\x11\x68\xaf\x93\x09\x61\x7f\x5c\x08\xf3\xe4\xe9\x97\xff\x9e\xf3\x59\xbc\x78\x7e\x79\x75\xf6\xfc\xea\xbf\xe0\x7c\x16\x4c\x48\x61\x03\xe1\x96\x99\x8d\x33\x65\x17\xba\x48\x83\x73\xf3\xeb\xfb\x8c\x0a\x0d\x9c\xd1\xea\x4b\x23\x15\x5b\xe3\x4b\x66\x36\x27\x90\x7c\x18\xdc\x61\xed\x62\x74\x47\x24\xed\x35\x6e\x15\x6a\x14\xc6\x0a\x70\xd8\xf7\x38\x7a\x61\xcd\x6f\x42\x90\x99\x43\x0f\xa7\x36\xaa\x29\x0c\x78\xc1\x86\x28\x92\x7a\x36\xab\x16\x21\xcb\x0c\xa0\x29\x07\xe2\x22\xfb\x27\xa6\x14\xdb\xcd\x5d\x1c\x6d\x04\xff\xd8\x60\xb5\xf3\xde\x65\xc5\x3d\x7f\x02\x5c\x36\x4e\x63\x5c\xd7\xe5\x8c\xa5\x23\x28\x5c\x4e\xe6\x9f\x36\x21\x71\x02\xb2\x89\x1d\xb1\xe1\xe2\x1c\x72\x0a\x47\x21\xd3\x6a\x0f\xa2\xa3\xd9\x4f\x7f\xf8\xd2\x67\x88\x91\x86\x55\xde\xcf\xb9\x4c\x88\x32\x04\x9f\x5a\xb9\xf4\xf8\x40\xc4\x16\x92\xc3\x1c\xf0\xe5\xe8\xde\xb8\x04\x8c\x6c\xdc\x01\xf6\xce\xf7\xd0\x84\x36\x03\xf6\x1b\xee\x9c\xef\xb4\xee\xf1\xb0\x08\x90\x12\xd2\xea\xba\x15\xbf\x6c\x0c\x50\xfd\xc0\x4c\xa3\x28\x33\x52\x50\xa3\xd6\xb6\xa4\xc9\xe4\x60\x63\xb5\x36\x52\x61\x09\xe4\xbf\x73\x45\x18\x3b\x89\xcf\xb2\xda\xa3\x78\xdd\x8d\x22\xa7\xaa\xc4\xfb\x3b\x17\xba\xb5\xf7\xeb\xb3\xe8\x8d\xdb\x54\x98\x8a\x03\x4d\x4e\x9d\x88\xb6\xaa\xcc\x35\xd4\x6c\x3b\xcb\x89\x29\xcb\x90\xe2\xc6\x83\x59\x53\xf7\x07\xb3\x90\x85\x5b\xc6\x0d\x2c\x59\xf1\x81\x02\xa2\x05\x66\xf1\x55\x5c\x9b\x79\x06\xf2\x62\x15\x88\xa4\x68\x40\x8b\x5c\x99\x44\xe9\x7a\xc4\x71\x6d\x91\x5c\x7b\x2c\xd7\xb0\xe2\x58\x95\x31\x41\x11\x52\x3c\xb2\x91\x70\x1c\x30\xc5\xa9\x6f\x82\x9d\xc3\xed\x66\x3c\x3e\x97\xc7\xd2\xaa\x61\x62\x1a\xf4\xb9\x6b\x18\x8a\x15\x1f\xb4\x93\x9d\xb3\x7e\xc7\x12\xc2\xbe\x91\xb7\x50\x37\x36\x3d\xae\x97\x9c\x0a\x4e\x6f\x37\x31\x42\x92\x27\x8b\x01\xcb\xd6\x41\x63\x34\x39\xd8\x44\xc0\x33\x77\xa4\xab\xd6\x86\xf6\x5a\x2f\xd5\x73\x93\xcc\x87\xcc\xf6\x1b\xfe\x14\x3e\xc7\xcd\xf4\xa3\xb1\x5a\xcd\x9d\x33\x3c\x4d\x62\x65\xf6\x75\x02\x10\x4e\x53\xf0\x47\xd9\x5a\x3a\xc8\x80\xed\xc3\x29\x3c\xce\xd6\x11\x47\x3c\xab\xb8\x48\xc1\xcd\x6f\x28\x7c\xeb\x0e\x85\xf4\x93\x80\x85\xd3\xec\xd3\x5f\x3c\xa8\x6c\xcb\x97\xfe\x19\x46\x21\xf4\x97\xe6\x0a\x02\xa7\xf0\x79\x00\xde\x5e\x89\xe5\x7b\x3a\x3a\xf5\x1a\x4d\xa3\x84\xab\xa4\x44\x13\x6a\xb1\x83\x3d\xec\xaa\x11\xa0\xf9\xbf\x70\x32\x0d\x12\xef\xf0\x4b\x59\xf8\xfe\xbb\x49\x57\x80\xf3\x0a\xc5\xda\x6c\xa6\x70\x08\x79\x35\x17\xbc\x6e\x6a\xd0\x4d\x4d\x34\x5a\xd5\xf7\x92\x53\xf8\xb1\xe1\xe4\xfc\xb8\x00\xa9\x4a\x24\xd1\xa7\x85\x47\x60\x22\xb0\x0c\xfa\x0d\xab\x78\x39\xd4\xef\x71\x66\x42\xc5\xaa\x3b\xfb\x7c\xd8\x56\x38\xde\x5a\x0e\x10\x29\x57\xa1\x52\x0f\xac\x78\xfa\x43\x87\x15\x7c\x35\x20\xfc\x53\x78\x3c\xa0\x61\x9e\x6b\x8f\x3b\x7a\x94\x7d\xa4\xe0\xb6\xaa\xa4\x54\x2f\x04\x5e\x6d\xb8\x2a\xe1\xb4\x0f\xff\xd8\x93\x32\xf9\x7e\x4a\x79\x1c\x17\x06\xd7\xa8\xa0\xe4\x37\x5c\x73\x29\x66\xc0\x45\x51\x35\x24\x6c\x0b\xaa\x6f\x42\xca\xea\x9c\x07\xf2\xdd\x14\x1e\xe6\x38\xfb\x24\x95\xfc\xe6\x35\xd6\x8c\x8c\x57\x0d\x51\xf4\x3f\x2d\x45\x47\x5d\xf6\x64\x7b\xff\x16\xd1\x3e\xe9\xba\x09\xc7\x22\x22\x8c\xfe\xff\x97\x76\x5d\xce\x2f\x40\x2a\x4a\xf6\x6f\x4d\x51\xee\xe3\xb6\x97\x88\x4a\x92\xac\x3d\xaa\xaa\x0d\x33\x8d\x8e\x51\xd0\x6b\xd1\x03\x0d\xaf\x16\xa1\x57\xd1\x8d\x34\xb1\xee\x62\x89\x1d\x7a\xf5\x26\x75\xec\x76\x8c\xf0\x53\x81\x58\xc6\xbe\x4b\xa6\x82\xd7\xb3\x6e\x42\x25\x06\x08\x49\xda\x48\xae\x2d\xa3\x79\x89\xca\x36\xf8\xea\x6d\x85\x3e\xb0\xb8\x30\x8e\x66\x23\x4b\xcf\x04\x9d\x67\x09\x31\x13\xf0\xf1\xcf\xa5\x52\x8a\xa2\x14\x06\xe3\xea\x1e\xd6\xd5\x96\xae\x71\x25\x1b\xc2\x22\xdd\x0e\xbf\xde\x67\x01\xae\x38\xe5\xda\x23\xf6\xc5\x21\x8c\x99\x21\xd7\x0b\x4f\x39\xd9\xa0\x0b\x35\x3f\x76\xe4\xbf\x6a\x73\x28\x72\x16\x77\x7b\xcf\xf9\x07\xdc\x0d\x05\x81\x60\xcd\x7b\x37\xbf\xf5\xa8\xde\xdd\x83\xbf\x7b\x5b\xe8\xf8\x8a\x01\xc8\x89\xba\xf9\xed\xbd\x25\x5f\xf6\x04\x18\xbf\x55\xf0\x6a\x4c\x53\xff\xe1\xbd\xa1\xd3\xd5\x57\xce\xfd\x2d\xf6\xb8\xbf\x01\x5d\x6d\x2b\x5a\xca\x76\x4d\xd4\x99\x99\xdb\x18\x34\x65\x3c\xf9\x21\x81\x05\xb7\xec\x48\x48\x28\x20\xf9\xc5\xb6\xdb\x8f\x69\xc5\xe4\xa8\x80\x17\xa2\xda\xb5\x5e\xdd\xb8\xbe\x28\x5f\x65\x8d\x4b\xdd\x2a\xf2\xe8\x81\xbc\x24\xc9\x71\x39\xcd\xf3\x42\x0c\x9e\x2b\x55\xa9\x2e\x19\x9e\x94\x85\x42\x1b\x59\x40\xe0\x2d\x60\xbd\x35\x3b\x78\xb5\xe8\x2d\xb4\x8d\xa7\xf6\x80\xc9\xf1\xe0\xb4\xfd\x3d\x24\x4f\x6d\x1e\x34\x4b\xf2\xff\x13\x78\xfb\x6e\x16\x74\xe2\x24\x27\x78\xe6\x6a\xe5\x8b\x73\xbb\x6a\x3a\x48\xe9\x59\xe9\xfa\xc0\x2d\xc4\x08\x4d\xcf\xac\xb1\x8b\xd0\x88\xb2\x7d\x6f\xe2\x5a\xdb\xab\xeb\x00\xb3\x56\x5e\x33\x53\x6c\xa2\x07\xd0\x7b\x4d\x3f\xfc\x04\xa8\xd1\xfc\xf2\x0c\x67\x3c\xed\xa2\x9f\xc1\x7f\x0c\xfa\x60\x5b\x3c\x29\x25\xb7\xe4\x52\x5d\xe5\x62\x12\xe7\x31\x20\xfc\xb8\xa8\x95\x3f\xc1\x99\x07\x57\x31\x4c\x8d\x07\xd0\xdf\x7c\xda\xd1\xa6\xf1\xed\xf4\x93\xe8\xc5\x9c\x95\xe5\x65\x10\xcf\xc4\x92\x10\xa5\x75\x6f\xfa\x35\x50\xde\x38\x75\x70\x30\x5c\xad\x3e\xbe\xff\xcb\xe0\x37\xfd\x7f\xfd\xd2\xd7\x2b\xef\x6e\x12\xec\x87\x06\xe1\x9e\x9b\xca\x71\xf6\x9c\x56\xac\x3e\xbd\x70\x99\x6e\xab\x27\xdf\xe3\x48\xdb\x92\x30\xd8\x64\x0b\xb1\x62\x8d\xe6\x1f\xa9\xde\x4d\x2c\x8b\xca\x10\x36\xa6\xae\x00\xeb\x46\x0f\x4f\xf4\x80\xda\xbe\x75\xfb\xdf\x8d\x91\x7f\x49\xe4\xb7\x45\xb3\x2f\xc3\x7c\xc7\x16\xcb\xbb\x29\xb7\x99\xf6\x7e\xa2\x9d\x0f\x70\x94\x0f\x56\x56\xc3\x24\x7b\x5d\xdf\xcb\x78\x13\x7b\x32\x3e\x25\x29\x64\x5d\xf3\x96\xf1\x49\x39\x7a\x18\xf3\xff\xd8\x13\x36\x27\xee\x18\x51\x12\x2e\xbd\xdb\x27\x8b\xfd\x41\x98\xc0\xdd\x2d\x98\xec\x78\x5f\x71\x2a\x2f\x98\x83\x0f\x34\xf3\x38\xc2\xb9\x06\x25\x75\xc0\x81\xe0\xb4\x5b\x6c\x3a\xdb\x49\x5a\xd8\xd7\x6f\xec\x6d\xa5\x4a\x1b\x99\x4e\xff\x94\xac\xed\x4d\x42\xa7\xad\xe9\x1b\x40\x36\xcc\x1b\xd0\xbc\xde\x5a\xb7\x2a\x0c\xe3\x42\x83\xb6\xf4\xbb\xce\x54\x0c\x24\x58\x66\x59\x4a\xc8\x08\x37\xf8\x09\x50\x14\xb2\x6c\xbf\x07\x6e\xec\xd9\x7c\xc7\xcd\xde\x29\xaf\xd7\x0a\xd7\xd6\x80\xa9\x60\x6b\x78\x35\x54\x8e\xf5\xfb\xbe\xbe\xa3\x6a\x3b\x66\x03\xed\xd4\x5e\xfb\x4d\x1b\xf6\xc1\x5d\x5f\x75\xfa\x6e\xdd\xd6\x87\x73\x94\x41\x54\x7d\xc8\xf9\x89\x5b\x04\x16\xe3\xa4\xbd\x07\x75\x05\xf4\xb5\xc7\xfb\x1b\xee\xae\xa7\xa3\x38\xa3\x83\x8f\x39\x6b\x1f\xef\x06\x3f\x3d\xea\xb2\xf3\xa0\x5e\x4e\xcc\x16\x46\x41\x0f\xf6\x9e\xfd\x8d\x4b\x68\xba\x4d\x42\x72\x30\x75\x17\x1f\xa3\xdd\x56\xbf\xff\x62\xbc\x8f\x4c\x28\xdb\x96\x6e\xf4\x88\x2d\x86\x51\xd8\xb7\x23\x4d\x5c\xeb\x56\x6c\xeb\x29\x97\xde\x6c\x90\x1a\xe7\x24\xff\xdc\x6b\x82\x5b\x35\x14\xb1\x1c\x74\xdf\xb2\xa0\x18\xff\xf4\x87\x13\xb8\xef\x2e\xd9\x2e\xce\xa1\x6e\xb4\xb1\x3d\x07\xdf\x56\xf0\xeb\xbc\x2e\xde\xbf\xab\x25\xd4\x76\x43\x4f\x7b\x41\xd1\x2e\xa8\x63\x66\x32\xf8\xb5\x6f\xc7\x9f\x7a\x32\xfb\x0b\x52\x66\xc0\x69\xc6\x9b\xfe\xe2\xdb\xd0\x9b\x6a\x99\x35\xe4\x40\x7b\xad\x20\x34\x6d\xf6\xf2\xbe\xaf\xd9\x83\xbe\x2e\x3d\x79\xfc\xfd\x40\x6c\xde\x3b\x4e\xde\x77\x15\x7d\x10\x53\xcb\xc2\x6e\x61\xd5\x73\x9d\xc9\xe5\x0f\xe9\xe8\x48\x8f\x88\xb5\x77\xae\x69\x65\x61\x1b\xdd\xa2\xcc\x2f\x2c\x8e\x5d\x62\x3a\xd0\x54\x1b\xbf\x2b\x6a\x67\x0e\x60\xcc\x62\x3f\x16\x1d\x90\xa0\xb0\x90\x6a\xb8\x54\xbe\xe3\x8e\xe7\x2a\x58\x63\x72\xe7\x60\x5d\xdc\x57\xdf\xbc\x84\x6b\xd6\xcb\xb4\x78\x71\x92\x79\x37\x82\x33\xf3\xa9\x01\xa1\x33\x25\x5b\xda\x7c\x15\xde\x67\xb9\x36\x8c\x86\x08\x5f\x28\x14\x52\x29\xd4\x5b\xe9\x3a\x11\xb6\x11\xb1\xd7\xab\x26\xb5\x56\xef\x50\xad\x3b\xea\x74\xc2\xf5\x00\x2f\x66\x5d\xbd\x9d\x0d\xc0\xfe\x96\x2e\x79\xce\xfc\xd4\xb2\xf4\xf0\xe2\x67\xa3\xb6\x91\x2d\x23\xca\xbc\x5b\xa0\x5f\x0f\x31\xd3\xac\xa4\x39\xd4\x29\xe4\xf4\xcf\xd9\x76\x8b\xa2\x9c\xc4\xbd\xd3\x03\x11\x87\x2a\xe8\x7d\xa0\xf8\x4e\xa4\x74\xaa\x80\xce\x7f\x9e\xfe\x3b\x6e\xc2\xea\x76\xc9\x0c\x0b\x0e\x83\x32\x08\xd5\xe6\x59\x21\xf0\x26\xd5\xdb\x9d\x4e\x81\x4e\x75\x4e\x20\x3f\xf7\xf4\x3a\xc9\xa8\x22\xb3\x66\x69\xfa\x30\xb3\x69\x59\xbd\x65\x5a\xa3\x9d\x7f\x23\x0d\xe2\x37\xbc\x6c\x7c\x6b\x31\x35\x7e\x9b\x2f\xf1\x65\x63\xdc\x64\x85\x9f\x4b\x2c\x94\x74\x73\x6a\x77\x5e\xbe\xb6\xd4\x5c\x76\xa5\x7e\xb7\x49\xb6\xa8\xdd\x85\x9b\x2b\xfd\xa4\x9b\x6e\x1b\x38\xe6\x28\x15\xfb\xac\xd5\x1a\xea\x1e\x32\x0f\xb6\xc7\x01\x18\x70\x3a\xc4\x80\xaf\xb5\xab\x8e\xc6\x11\xa7\x3a\x83\x3d\xbc\x5b\x08\x63\x32\x06\x19\x27\x16\xd8\xca\x25\x76\xb8\x8b\xf3\xa4\xed\x10\x97\x1d\x9c\x6c\x01\x0a\x6d\x98\xf0\x90\xa5\x2c\xe3\xe8\xd0\xaa\xb1\xe7\xda\x4a\x83\xc2\x70\x56\xf9\xb9\x3a\x37\xcf\x73\xcb\xab\xaa\x55\x6b\x61\x67\xc6\xbc\x03\xf7\x9d\xb9\x7c\x3a\xac\x9d\xdd\x91\x62\xc5\x55\x8d\x25\xb0\x64\xd4\x22\xcc\x6f\xc6\x91\x23\xfc\x64\xc2\xd0\x6c\x57\xca\x91\x72\xc7\x99\x91\x92\xe0\xe2\x3c\x4d\x39\x15\x4c\x46\xeb\x83\xf1\x24\xf4\xce\x02\xc1\x43\xfa\x80\xbb\x80\xcc\xd5\x06\x5f\x89\xcb\x16\x06\xb1\x7a\xe8\xe3\x1b\xcc\x77\xfb\x1b\x0e\xcb\x6c\xef\x65\x63\x8e\x5e\x1f\xb5\x9f\x90\xf2\x58\xa6\x27\x70\x7f\xc1\x84\xed\xf5\x86\x8e\xe7\xd0\x80\x59\x2c\xbe\xac\x15\x8f\x0d\xcc\x75\xd3\xe1\x6f\xc8\x67\xdb\xc3\x52\x74\x8b\x1f\xb2\x85\x03\xe7\xf2\xa7\x72\xcd\x8f\x73\xaa\xa2\x8d\x6a\x46\x9b\x1f\x97\x7e\xec\x81\x04\xe7\x06\x68\x6c\x3f\x0d\x16\x4c\x90\x76\x17\xac\xaa\xb0\x74\xca\x2e\xc9\x60\xb6\xa8\x3a\x23\x36\x04\x25\xfb\xf0\x92\x29\x56\xeb\x93\x3c\x3d\x3a\x81\x4b\x57\x59\x5e\x27\xb1\xf8\xba\xad\xb4\xfb\xf5\x64\x06\x33\xfc\x64\xa9\xcf\xaf\xfd\x9a\x31\xdd\x34\x1a\x36\x09\xc8\xa4\x4b\x5d\xe2\x0c\x9f\xed\xcf\xb4\x87\x55\x2c\x97\x44\x3a\xe7\x49\x15\x14\xd9\x43\x1c\x65\x26\x15\xe3\x02\xb6\x7e\xc5\xfd\x7e\x2f\x3d\xa5\x2d\xd4\x63\x7f\x87\xc7\xbe\x1a\x4b\x06\x4b\x6c\x4d\x46\xf0\x96\xe8\x5a\xf3\xc3\xc0\xfc\x89\x06\x40\x85\xa4\xf4\x00\x40\x1d\x23\x22\x89\xfd\xca\x34\x41\x29\x27\x89\x46\x4f\x23\xe8\x00\xd2\x0e\x7d\x3a\xe3\x60\xda\x04\x73\xd9\x6b\x21\xae\x2d\xe7\x9e\x35\x34\xcb\x8a\x17\xce\xdf\x64\x2f\x00\xe2\x40\xd0\x87\x8e\x51\x90\x1b\x73\xbb\x9c\xed\xbc\x0c\xbf\x4f\x7a\x67\x8a\xcb\x4e\xba\x36\x37\x2f\x91\x34\xeb\x57\xfc\x34\x99\xce\x7a\xfb\xa2\x04\xce\xaa\xb5\x54\xdc\x6c\x6a\xa7\xe0\xf9\xbf\xcd\x7f\xfa\xfd\xf2\xfd\x4f\xbf\x5f\x3e\xf9\xee\xfd\xf7\x7f\x7d\x92\x01\x99\xf6\xce\xbb\xd8\xa0\x1b\x05\xd2\x88\xed\x40\x68\x2b\x6a\xe9\x8a\x83\xd8\x6b\xd2\x3e\xf4\xf4\x8e\xce\xf5\x1b\xfb\xc5\x69\x7b\xba\xf9\x0d\x2a\xbe\x1a\x38\x7f\x92\xab\xe6\x4a\x77\xe7\xe9\xb1\xa4\x04\xed\x24\x53\xaf\xbd\x9b\x4a\x59\x33\x2e\x2e\x71\xcb\xdc\x9d\xec\x15\x5b\x9f\xc0\xfd\x5f\x7e\x7f\xf1\xe7\xa3\x45\x08\x88\xef\x49\x71\x1e\xbd\x79\xfc\xf8\xd1\xe2\xf2\xf1\xe3\x47\xe4\x1d\x1e\xdd\xef\x83\xda\x30\xbd\x49\x18\xff\x6b\xfa\x71\xfe\xdb\xb3\xb3\xc5\x93\xef\xfe\xfa\xfe\x6b\x78\x7f\xa6\x35\x2a\xd3\x16\x64\xdc\xe4\x1a\xc5\xdc\xf7\x7d\xfe\x79\x5e\xf7\x49\x8c\x55\x8f\xb3\x85\x36\x65\x2a\x5c\x88\xa1\xcc\x81\x64\xc2\xbb\xa1\xa2\x4f\x5c\x30\x84\x7e\xeb\xca\x46\xa2\x25\x56\x52\xac\x35\x18\xd9\xd3\x84\x4e\x47\xa4\x6f\xbf\xfe\xd3\xdb\xc4\x7c\xdf\xf5\x8e\xf2\xe3\x8f\xb0\x65\x82\x17\x93\xfb\x57\x11\xa9\x3f\x85\xcb\xfd\x1b\x15\xba\x82\xd9\x98\xf0\xfd\xe9\x18\x41\x3d\x5a\xc2\xc4\xfa\xdb\x94\xe2\x77\xf7\x46\x58\xe1\x89\x78\x90\xbe\x6e\xc9\xaa\xd9\x80\xce\x92\x17\x3b\x41\xf3\xd1\x2b\x91\xd4\x7b\xf5\x91\x5e\x62\xd7\x14\x93\x71\x3e\x37\x0b\x97\x97\x9c\xee\x56\x2b\xed\x14\x65\xb6\x35\x1d\x5c\x1c\x1a\x3d\x89\x3d\xf5\x55\x21\x90\x22\xf0\xb6\xdf\xce\xef\xb5\x4a\x03\x1b\xf2\x61\xac\x84\x1b\x07\xb4\xf4\x53\x72\x48\x13\xf2\x89\x1d\xdb\x51\xc6\xdb\x91\x51\x31\x7b\xb4\x81\x79\xb1\x40\xc1\x61\x97\x0a\x09\x05\xed\xcd\x42\x44\x3a\xc0\x23\xfb\xc4\x80\x3c\xa5\x2c\xdd\xd5\x53\x9c\x21\x0c\xea\xb7\x64\xc5\x87\x31\x8a\xee\xd4\x90\x70\x09\x45\xff\x9f\xee\x49\xc6\x86\x75\xba\x15\x40\x37\x23\xcb\x26\xf3\x0d\xaa\x15\x2b\x7c\x1c\x70\x6f\xb4\xc2\x25\x85\x2b\x2f\xb8\x8c\x0f\x11\xa8\x5e\x61\xca\x74\x0b\x6e\x85\xeb\xa6\x62\x0a\x58\x63\x64\xed\x2a\x27\x3f\xc9\xea\x47\x64\x69\x91\x9b\x90\x4d\x27\x76\x7c\x9e\xaf\xdd\xc8\xad\x4b\x9d\xda\x67\x07\xd7\x74\x46\x3b\x20\x7c\xdd\xbe\x21\x32\x1b\x65\xdf\x7c\xb1\xe4\xe1\xc2\x78\x05\xc3\xe3\xe1\x2c\x9c\x17\xed\x71\x3e\x8f\x66\x6c\x2e\x21\xb7\xd9\xf8\x21\x35\xc1\x09\xfc\xaf\x5d\x3b\xde\x58\x35\x4c\x19\x97\x96\x4d\x06\x5e\xcb\x24\xe3\x7a\xfd\x9d\x72\xeb\x37\x0e\xd7\x35\xb4\x68\x25\x55\x81\x97\xdd\x95\x9d\x1a\xd7\x8e\xf5\xb7\x6c\xd9\x2a\x79\xc3\x4b\x3f\xb2\x12\x5e\x7f\x18\x19\x6a\x11\x23\xbb\xc5\x88\x4b\x86\xf4\x2c\x02\xb5\xf3\xcf\x7e\x38\xc4\x4d\x3b\xa0\x7b\x61\x40\xf2\xb6\xa5\x8b\x18\x78\x38\x94\xc9\xc6\xd2\x74\x32\x20\x98\x2c\x19\x77\x03\x21\xda\x4f\x84\x0c\xd6\x48\x9d\xda\xbc\x53\x45\x72\xdd\x4e\x55\x87\x29\x62\x97\xab\x54\x3b\x4f\x18\x5f\x56\x18\xfa\xa1\x51\xe7\x32\x30\x41\xfd\x66\xfe\xd9\x9c\x05\xa4\x50\x1b\xc5\x0b\x1f\x30\x89\x4e\x3b\xb9\x2d\x83\x0d\x65\x0f\x50\xff\xd3\xea\x36\x7c\x7f\xfb\xb7\x47\x5e\x84\x39\xbc\xe0\x4c\x52\x78\xed\xef\x83\xed\x3f\xcb\x7b\x29\x56\x7c\x6d\x7b\x57\xee\xe9\xa8\xb7\xc1\x7e\x13\xe1\x41\x1c\x06\xd2\x83\x55\x91\x7d\x97\xf5\xe2\xea\xe7\x13\x27\x90\x20\x07\x5f\xf1\x79\x7b\x37\x72\xfb\xa8\xc2\x1b\xac\x5a\x21\x24\x0f\x1c\x9b\xad\x14\x19\xbc\xfc\x6d\xa2\x6f\x65\xd9\x5d\xe0\x1e\x14\xbc\xb4\x53\xf8\xa3\xf4\x2c\xce\xfe\xb8\xba\x78\xf1\xfc\xc4\x52\xe1\x92\x0a\xae\x01\x15\xd3\xa8\x93\x29\x9c\xce\xab\xa4\xe3\xad\xc2\x1b\x2e\x1b\x9d\x76\x4f\xbe\xc9\xec\x3f\xef\xf1\xe7\x6d\x49\xd7\x2d\xa9\xc7\x7d\x7f\xeb\xed\x07\x86\xb7\x87\x2e\xef\x06\xa7\xb7\xdb\xb7\x55\xed\x8b\xc0\x03\x46\xb5\x5c\xa9\xe8\x3a\xab\xb1\x69\x46\x91\x82\x17\x7c\xcb\xac\x57\xc8\x6c\x33\x45\xd9\xbe\x7d\x09\xa1\x31\x1d\x6a\x1e\x99\x18\x84\x43\x22\xa9\xd7\xfb\x76\x90\xa3\x67\x11\x39\x5f\xd2\x4f\xf9\xd5\xe6\x00\x65\xa1\xe9\x71\x6f\x3a\x3c\x0a\x34\x9e\x01\xb7\xdd\x92\x2c\x69\xee\xff\xf4\xe0\xf6\x87\x88\xee\xe8\x0d\x1c\x9c\x18\x74\x78\x3a\x74\xb1\xe9\x67\x83\x9f\x3c\xed\xcd\x06\x8f\x36\x7c\x8c\xdc\xea\x34\x2a\xf4\xf2\x76\xd7\xfc\x09\xfd\xcd\xd8\x01\x2a\x48\xaf\xbe\x3b\xfe\x3e\x6f\xf6\xd4\xec\x9f\x54\x77\xed\xe2\x9b\x9b\xa0\xac\x1b\xa6\xdb\xb9\x31\x3f\x96\x31\x3f\x2c\xae\x7e\x43\xbf\xc5\x9d\x27\x8c\x32\xda\x11\xf5\xd0\x76\x09\xd7\xd6\x71\x56\x72\x89\x2b\xa9\x10\xb8\xb1\xef\xc1\x97\xb6\x8d\xb0\xdd\xf6\x5b\x76\xe3\xd8\x32\x57\x60\x5f\x86\x8e\x71\xfb\x17\xca\x04\xec\x5f\x16\x90\xdb\xa4\x37\x6b\xdb\x41\xa8\xb8\x2c\x73\xd9\x6c\x64\x53\x95\x91\xf5\x0d\x25\x5e\xbe\xb3\xbc\x55\xd2\xc8\x42\x56\xb0\x61\x95\xd1\x6e\x96\x11\xb1\xd4\xfe\x1d\x80\x42\x8d\xc3\x43\x1f\x83\xf9\xc8\xe1\x8e\xae\x7b\x3a\xe8\x5e\x0f\xb9\x31\x58\x06\x4b\x29\x2b\x64\x02\x0c\x3a\xcf\xcd\xd3\x46\xb4\x1d\x98\x0d\x7f\xe2\xa1\xa7\x75\x37\x49\x7f\xac\x97\x9b\x64\x6f\x10\xd4\x85\x7e\x1d\xe1\x4c\xde\x77\x9a\xd5\x53\xf7\xc4\x35\x39\x9c\x0f\xc1\x77\x9b\xfd\xbd\x76\xe8\xe0\x6b\x4e\x17\x1f\x65\x85\xd7\xb9\xfe\xe5\x94\x0d\xf5\xd7\xdd\x5c\x2d\x4b\xff\x7c\x2f\xab\x48\x4d\xcd\x03\x21\x5b\xf3\x2f\x88\x13\x34\x25\xa5\x36\x72\xa7\x3b\x38\x1c\x9c\x36\x0b\xbc\x30\x50\x58\x2d\x4a\x00\xb2\x35\xf3\x23\x2d\xfb\x38\x1b\xda\xe1\xdf\xc8\xd6\xc1\xe6\xf3\x7e\xbe\x86\xe7\xf8\x71\x0e\x27\xb8\x0d\x4b\xe5\xaa\xa9\xaa\x5d\xcf\x87\xb4\xa3\xce\x23\x57\x25\xf1\x58\x59\x83\x72\xfc\x50\x89\x05\x7e\x43\xab\xc5\x8f\xd7\x1e\xdc\x69\x09\x8c\xf9\xfc\x6f\xf6\x46\x7a\x65\xef\x45\xa2\x2a\x43\xe6\x16\x18\x36\xeb\x6e\x2c\xd2\xbe\xa3\x53\xb8\x9d\x6b\xd9\xda\xd7\x80\xd9\x72\xbe\xda\x17\x75\xbd\xb4\xc7\x67\x61\xdb\xd6\x43\x7f\x4c\xf3\xfc\xdd\xbd\x64\x50\xe6\x5e\x7f\x08\x68\x30\xa2\x79\xc0\xad\x97\x4a\xb4\xcc\x0d\xd4\x56\x55\xbc\x81\x1e\xff\x33\x2b\xe3\x7f\x57\x21\xd3\xa8\xe4\x6f\x7f\x50\x84\x89\x89\x63\xdf\x34\xd2\x81\x24\x3d\xa6\xfe\xf6\x0f\x00\xf0\x15\xdc\xa2\xe3\x77\xfc\xdb\x13\xe1\x8f\xa8\xb4\xd9\xae\xfd\x13\x3c\x1e\xdc\x1e\x95\x1f\x08\x83\x1d\xd3\xed\xe4\x93\x23\x69\x6b\xef\x5d\x57\x90\x5c\xf6\x5c\xe0\xf4\x0e\x71\xe7\xb1\xa3\x2b\xc3\xce\xe2\x98\x51\x7b\x46\xd9\xfb\xbf\x34\x50\x59\x96\x76\xdf\xc2\xc3\x29\x1c\x6b\xf7\xf1\x78\x15\x2b\x94\x57\x0b\xbb\x2e\xdf\xda\x7d\x14\x3f\xb6\xd5\x75\x0e\xf2\xbd\xfd\x90\xd8\x66\x32\xf9\xca\x24\xf3\x7f\xfb\x2e\xff\x2a\x75\x90\xf9\x93\xc5\xd8\x5d\x5a\x44\x1f\xf0\xf9\x4b\x87\x04\xff\x07\x1e\xe6\x9e\xe4\xb9\x66\x37\x38\x89\xb5\xa5\x3d\xef\x64\x3a\x03\x23\x4f\x86\x39\x15\x7a\x10\x5f\xfe\x2f\x00\x00\xff\xff\x61\x36\x39\x86\x3d\x4a\x00\x00" func epochsFlowclusterqcCdcBytes() ([]byte, error) { return bindataRead( @@ -298,7 +298,7 @@ func epochsFlowclusterqcCdc() (*asset, error) { } info := bindataFileInfo{name: "epochs/FlowClusterQC.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x52, 0x79, 0x71, 0xde, 0xc, 0xf7, 0xca, 0x23, 0xf7, 0xf8, 0x2d, 0x5d, 0xc3, 0xa7, 0xa7, 0xef, 0x98, 0x52, 0xdd, 0xe1, 0xd1, 0x9f, 0x6c, 0xa2, 0x67, 0x21, 0x86, 0x86, 0x9a, 0x5, 0xa0, 0x88}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb2, 0x6, 0xb7, 0x1d, 0x47, 0x9e, 0x61, 0x59, 0x72, 0x87, 0xd8, 0xd9, 0xf3, 0xaf, 0xea, 0xee, 0xa, 0x9b, 0xb1, 0xa, 0xf8, 0x7e, 0xe6, 0x1d, 0x18, 0xde, 0x81, 0x95, 0x7, 0x45, 0x3b, 0x9c}} return a, nil } diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index ace64a733..d95df2bc8 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -48,7 +48,7 @@ // epoch/admin/deploy_epoch.cdc (1.192kB) // epoch/admin/deploy_qc_dkg.cdc (310B) // epoch/admin/pay_rewards.cdc (497B) -// epoch/admin/recover_epoch.cdc (2.137kB) +// epoch/admin/recover_epoch.cdc (2.135kB) // epoch/admin/reset_epoch.cdc (1.666kB) // epoch/admin/set_automatic_rewards.cdc (376B) // epoch/admin/set_bonus_tokens.cdc (624B) @@ -1325,7 +1325,7 @@ func epochAdminPay_rewardsCdc() (*asset, error) { return a, nil } -var _epochAdminRecover_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x54\x41\x4f\xe3\x3c\x10\xbd\xe7\x57\x8c\x7a\x40\xad\xf4\x11\x2e\x9f\xf6\x50\xed\x2e\x82\xb6\x48\x68\xb5\x2b\x10\x2c\x17\xc4\x61\xea\x4c\x1b\x0b\xc7\x8e\xc6\x13\x42\xb5\xe2\xbf\xaf\x1c\x87\x34\x81\xd0\x3d\xaf\xb4\x3d\x54\x9e\xf1\x7b\xcf\xcf\xf6\x73\x74\x51\x3a\x16\xb8\x30\xae\x5e\x95\x4e\xe5\xb0\x61\x57\xc0\xa4\xab\x27\x49\x0f\x71\xb9\xbc\xc5\xb5\xa1\x1b\xc1\x47\x6d\xb7\x3d\xe8\x70\x62\xc0\x59\x98\xca\x0b\xf1\xf5\xa2\x07\xef\x7a\x93\x24\x39\x39\x81\xdb\x9c\x80\x49\xb9\x27\xe2\xe8\x41\x18\xad\x47\x25\xda\x59\x50\x4c\x28\xe4\x01\x6d\x06\x5e\x90\xc5\x03\x82\xa5\x1a\xa8\x81\x6a\x0b\x92\x53\xcf\xbf\x2f\x90\x05\x94\xb3\xc2\xa8\x24\xc8\x8b\x83\x3a\xd7\x2a\x87\x5a\x1b\x03\x1b\xc7\x8a\x1a\x8e\x25\xa9\x1d\x3f\x02\x3d\x6b\x81\xd5\xc5\xf7\xf4\xbd\x11\x4f\xfc\xa4\x15\x01\x3d\x91\x95\xc8\x5f\x13\x50\xa1\x45\x28\x83\x20\x1e\x6c\x95\xec\x14\x79\x4f\x19\xac\x77\x80\xc6\x84\x86\x38\xe5\x0c\x94\xc8\xa2\x95\x2e\xd1\x4a\xdc\x01\xa1\xca\xfb\xdd\xa8\x59\x95\x19\x4a\x63\x4a\xf3\x9e\x1c\xe4\xbd\x84\x89\x5a\x4b\xde\x5a\xae\x21\x3a\xcb\x50\x30\x8d\x87\xa7\xfd\xe0\xc0\x7c\xee\x2a\x93\x81\xb3\x66\x17\xcc\x56\xc1\x57\x27\xe0\x2a\x29\x2b\x01\xb7\x69\xaa\xb5\x73\xe2\x85\xb1\x84\x4a\xb4\xd1\xb2\x9b\x07\x45\x68\xaa\xf6\x7c\x69\x53\x1c\xb7\x47\x72\x2c\xcf\xc7\xc8\x5b\x9f\xf4\x56\x9b\x36\x57\x72\xa7\xa9\x9e\xc3\xcf\x4b\x2b\x9f\xfe\xff\x2f\x81\xde\xcf\xc7\x44\xac\x6c\xf6\x31\x86\x0e\x4d\x0a\xf2\x96\x64\x59\x31\x86\xe5\x0e\x61\x56\x36\xbb\xd5\x05\x8d\x43\x54\x4c\xdc\x99\xf7\x7a\x6b\x0b\xb2\xe2\xe7\x70\x7f\x7f\x23\xac\xed\xf6\xe1\x61\x14\x7b\xbd\xb8\x73\x42\x4b\x14\x9c\xc3\xfd\x20\xb5\xe9\xe2\x2d\xe2\x8d\x42\xf6\xb8\xbd\xaa\xd6\xdf\x68\x17\x56\x69\x17\x19\x22\xac\xcb\xe8\x72\xf9\xe1\xb4\xb6\x5a\x7e\x50\x4c\xf4\x1c\xce\x9d\x33\x33\xf8\x95\x34\x90\x92\xa9\x44\xa6\x69\xd8\x08\xf1\x1c\xb0\x92\x7c\x7a\xee\x98\x5d\x7d\x87\xa6\xa2\x19\x1c\x9d\x29\xe5\x2a\x2b\x81\xf2\x2a\x68\x48\xe2\x85\x9e\x65\x85\xb6\xf0\x05\x22\x3d\xf5\xe2\x18\xb7\x94\xae\x1b\x81\xcf\x47\xdd\x3b\x4a\x1b\xe0\xd7\x69\x78\xb4\xf3\xfd\xf3\x4a\x31\xb4\x6f\x22\xeb\x0a\x25\x9f\x0d\x7c\x9f\x9e\x42\x89\x56\xab\xe9\x64\xd1\x84\xd0\x3a\x81\x28\xdd\xc6\xa9\xa1\xc7\x2f\x41\xbb\x34\x94\x28\xf9\x64\x96\x74\x3a\x7a\x33\xd8\x7e\x6f\x13\x4d\x58\xba\x4d\xa4\x6d\x2c\x5f\x81\xfd\x28\x76\xc3\xe1\xb1\x7e\x94\xca\x61\x3d\xce\xe9\x52\x4a\x87\x50\x6f\xe3\x3a\xac\x0f\x71\xba\xf8\x0e\xca\x71\xc6\x58\x9a\xdf\xf7\x00\x0e\xb2\xfb\xf9\x7e\xd7\x1a\x67\xf6\x73\xbd\x1f\x8f\x63\xbb\x84\xb7\x83\x7d\x50\x5e\x80\x8c\xa7\x3f\xde\xeb\xa2\x62\x26\x2b\xff\xee\xf6\xaf\xba\xdb\x24\xfe\xbf\x24\xbf\x03\x00\x00\xff\xff\xcb\xe4\x26\x10\x59\x08\x00\x00" +var _epochAdminRecover_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x54\x41\x4f\xdb\x4c\x10\xbd\xfb\x57\x8c\x72\x40\x89\xf4\x61\x2e\x9f\x7a\x88\xda\x22\x48\x82\x84\xaa\x56\x20\x28\x17\xc4\x61\xb2\x9e\xc4\x2b\xd6\xbb\xd6\xec\x18\x13\x55\xfc\xf7\x6a\xbd\xc6\xb1\xc1\xa4\xd7\x1e\x9a\x43\xb4\x33\xfb\xde\xdb\xd9\x99\xb7\xd6\x45\xe9\x58\xe0\xc2\xb8\x7a\x55\x3a\x95\xc3\x86\x5d\x01\x93\x2e\x9e\x24\x3d\xc4\xe5\xf2\x16\xd7\x86\x6e\x04\x1f\xb5\xdd\xf6\xa0\xc3\x8d\x01\x67\x61\x2a\x2f\xc4\xd7\x8b\x1e\xbc\xcb\x4d\x92\xe4\xe4\x04\x6e\x73\x02\x26\xe5\x9e\x88\x63\x0d\xc2\x68\x3d\x2a\xd1\xce\x82\x62\x42\x21\x0f\x68\x33\xf0\x82\x2c\x1e\x10\x2c\xd5\x40\x0d\x54\x5b\x90\x9c\x7a\xf5\xfb\x02\x59\x40\x39\x2b\x8c\x4a\x82\xbc\x38\xa8\x73\xad\x72\xa8\xb5\x31\xb0\x71\xac\xa8\xe1\x58\x92\xda\xf1\x23\xd0\xb3\x16\x58\x5d\x7c\x4f\xdf\x17\xe2\x89\x9f\xb4\x22\xa0\x27\xb2\x12\xf9\x6b\x02\x2a\xb4\x08\x65\x10\xc4\x43\x59\x25\x3b\x45\xde\x53\x06\xeb\x1d\xa0\x31\x21\x21\x4e\x39\x03\x25\xb2\x68\xa5\x4b\xb4\x12\x6f\x40\xa8\xf2\x7e\x36\x6a\x56\x65\x86\xd2\x14\xa5\x79\x4f\x0e\xf2\x5e\xc2\x46\xad\x25\x6f\x4b\xae\x21\x56\x96\xa1\x60\x1a\x9b\xa7\xfd\xa0\x61\x3e\x77\x95\xc9\xc0\x59\xb3\x0b\xc5\x56\xa1\xae\x4e\xc0\x55\x52\x56\x02\x6e\xd3\x44\x6b\xe7\xc4\x0b\x63\x09\x95\x68\xa3\x65\x37\x0f\x8a\xd0\x44\x6d\x7f\x69\x53\x1c\xb7\x2d\x39\x96\xe7\x63\xe4\xad\x4f\x7a\xa7\x4d\x9b\x91\xdc\x69\xaa\xe7\xf0\xf3\xd2\xca\xa7\xff\xff\x4b\xa0\xf7\xf3\xd1\x11\x2b\x9b\x7d\x8c\xa1\x43\x9b\x82\xbc\x25\x59\x56\x8c\xe1\xb8\x43\x98\x95\xcd\x6e\x75\x41\xe3\x10\x15\x1d\x77\xe6\xbd\xde\xda\x82\xac\xf8\x39\xdc\xdf\xdf\x08\x6b\xbb\x7d\x78\x18\xc5\x5e\x2f\xee\x9c\xd0\x12\x05\xe7\x70\x3f\x70\x6d\xba\x78\x8b\x78\xa3\x90\x3d\x6e\xaf\xaa\xf5\x37\xda\x85\x53\xda\x43\x86\x08\xeb\x32\xba\x5c\x7e\xb8\xad\xad\x96\x1f\x14\x1d\x3d\x87\x73\xe7\xcc\x0c\x7e\x25\x0d\xa4\x64\x2a\x91\x69\x1a\x2e\x42\x3c\x07\xac\x24\x9f\x9e\x3b\x66\x57\xdf\xa1\xa9\x68\x06\x47\x67\x4a\xb9\xca\x4a\xa0\xbc\x0a\x1a\x92\x38\xd0\xb3\xac\xd0\x16\xbe\x40\xa4\xa7\x5e\x1c\xe3\x96\xd2\x75\x23\xf0\xf9\xa8\x7b\x47\x69\x03\xfc\x3a\x0d\x8f\x76\xbe\x7f\x5e\x29\x86\xf4\x4d\x64\x5d\xa1\xe4\xb3\x41\xdd\xa7\xa7\x50\xa2\xd5\x6a\x3a\x59\x34\x26\xb4\x4e\x20\x4a\xb7\x76\x6a\xe8\xf1\x4b\xd0\x1e\x0d\x25\x4a\x3e\x99\x25\x9d\x8e\xde\x0c\xae\xdf\xbb\x44\x63\x96\xee\x12\x69\x6b\xcb\x57\x60\xdf\x8a\xdd\x72\xd8\xd6\x8f\x5c\x39\x8c\xc7\x39\x9d\x4b\xe9\x10\xea\xad\x5d\x87\xf1\x21\x4e\x67\xdf\x41\x38\xce\x18\x73\xf3\xfb\xdc\x41\x6e\xdf\xdd\xef\x52\xe3\xcc\xbe\xab\xf7\xeb\x71\x6c\xe7\xef\x76\xb1\xb7\xc9\x0b\x90\xf1\xf4\xc7\xa9\x2e\x2a\x66\xb2\xf2\x6f\xb2\x63\x93\x05\xf8\x4b\x67\x9b\xc4\xff\x97\xe4\x77\x00\x00\x00\xff\xff\xf4\xda\x2e\x26\x57\x08\x00\x00" func epochAdminRecover_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1341,7 +1341,7 @@ func epochAdminRecover_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/recover_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x17, 0x19, 0xa7, 0x7c, 0x7f, 0x6d, 0x3b, 0x55, 0x3b, 0xa6, 0x8a, 0x65, 0xc9, 0xef, 0x1a, 0xe7, 0x48, 0xe2, 0xec, 0x1, 0xcf, 0x41, 0xb2, 0x9f, 0x95, 0x8c, 0x5d, 0x37, 0x50, 0x5d, 0xcc, 0xc8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x45, 0x45, 0x37, 0x2, 0xa6, 0x25, 0xe, 0x2f, 0x86, 0x21, 0xfe, 0x39, 0x66, 0x8f, 0xdb, 0xfd, 0x6f, 0x3b, 0xe1, 0xbe, 0x25, 0xd8, 0x90, 0x3d, 0xe2, 0xc5, 0x95, 0xfa, 0x74, 0xdc, 0xc5, 0xb2}} return a, nil } From 5aafe7f667b4fc936229e022d0f0ea1ebb48773e Mon Sep 17 00:00:00 2001 From: Jordan Schalm Date: Sun, 28 Jul 2024 11:42:12 -0400 Subject: [PATCH 148/160] tidy --- lib/go/test/go.sum | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/go/test/go.sum b/lib/go/test/go.sum index ba15b0a03..483cf3a4e 100644 --- a/lib/go/test/go.sum +++ b/lib/go/test/go.sum @@ -1363,7 +1363,6 @@ github.com/golang-jwt/jwt/v4 v4.5.0/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= github.com/golang/geo v0.0.0-20190916061304-5b978397cfec/go.mod h1:QZ0nwyI2jOfgRAoBvP+ab5aRr7c9x7lhGEJrKvBwjWI= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/glog v1.0.0 h1:nfP3RFugxnNRyKgeWd4oI1nYvXpxrx8ck8ZrcizshdQ= github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4= github.com/golang/glog v1.1.0/go.mod h1:pfYeQZ3JWZoXTV5sFc986z3HTpwQs9At6P4ImfuP3NQ= github.com/golang/glog v1.1.2/go.mod h1:zR+okUeTbrL6EL3xHUDxZuEtGv04p5shwip1+mL/rLQ= @@ -1401,7 +1400,6 @@ github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= github.com/golang/protobuf v1.5.1/go.mod h1:DopwsBzvsk0Fs44TXzsVbJyPhcCPeIwnvohx4u74HPM= -github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek= From 66fa3f48d902ae006a19c654722ecbd5672f7cd6 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Sun, 28 Jul 2024 21:48:01 -0400 Subject: [PATCH 149/160] document TestEpochRecover --- lib/go/test/flow_epoch_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/go/test/flow_epoch_test.go b/lib/go/test/flow_epoch_test.go index 12ad1459f..896cf9e71 100644 --- a/lib/go/test/flow_epoch_test.go +++ b/lib/go/test/flow_epoch_test.go @@ -1518,6 +1518,10 @@ func TestEpochReset(t *testing.T) { }) } +// TestEpochRecover ensures that the epoch recover transaction recovers the epoch as expected. +// Specifically, we execute an epoch recover transaction and confirm both scenarios are true; +// - epoch recover that specifies unsafeAllowOverwrite = false increments the epoch counter effectively starting a new epoch. +// - epoch recover that specifies unsafeAllowOverwrite = true overwrites the current epoch and does not increment the counter. func TestEpochRecover(t *testing.T) { b, adapter, accountKeys, env := newTestSetup(t) // Create new keys for the epoch account From 61f07b634d3ea7446700059a4194330c6ac06ef7 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Sun, 28 Jul 2024 21:50:58 -0400 Subject: [PATCH 150/160] remove unused dkg qc txs --- lib/go/test/flow_epoch_test.go | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/lib/go/test/flow_epoch_test.go b/lib/go/test/flow_epoch_test.go index 896cf9e71..67f25f0cc 100644 --- a/lib/go/test/flow_epoch_test.go +++ b/lib/go/test/flow_epoch_test.go @@ -1576,23 +1576,6 @@ func TestEpochRecover(t *testing.T) { false, ) - tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateEpochRegisterQCVoterScript(env), addresses[5]) - signAndSubmit( - t, b, tx, - []flow.Address{addresses[5]}, - []sdkcrypto.Signer{signers[5]}, - false, - ) - - // Register a DKG Participant - tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateEpochRegisterDKGParticipantScript(env), addresses[1]) - signAndSubmit( - t, b, tx, - []flow.Address{addresses[1]}, - []sdkcrypto.Signer{signers[1]}, - false, - ) - // Perform epoch recovery with a new epoch and epoch recover overwriting the current epoch. t.Run("Can recover the epoch and have everything return to normal", func(t *testing.T) { epochTimingConfigResult := executeScriptAndCheck(t, b, templates.GenerateGetEpochTimingConfigScript(env), nil) From a78b7d7ce5e271717b04aaa6f289612b01e4d6ea Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Sun, 28 Jul 2024 22:43:10 -0400 Subject: [PATCH 151/160] add sanity check to ensure we receive vote data for each cluster --- contracts/epochs/FlowEpoch.cdc | 29 ++++++++++++-- lib/go/contracts/internal/assets/assets.go | 6 +-- lib/go/test/epoch_test_helpers.go | 44 ++++++++++++++++++++++ lib/go/test/flow_epoch_test.go | 13 ++----- 4 files changed, 76 insertions(+), 16 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 5dde23cd2..0fc10a48f 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -550,7 +550,9 @@ access(all) contract FlowEpoch { access(all) fun recoverEpochPreChecks(startView: UInt64, stakingEndView: UInt64, endView: UInt64, - nodeIDs: [String]) { + nodeIDs: [String], + numOfClusterAssignments: Int, + numOfClusterQCVoteData: Int) { pre { FlowEpoch.isValidPhaseConfiguration(stakingEndView-startView+1, FlowEpoch.configurableMetadata.numViewsInDKGPhase, endView-startView+1): "Invalid startView, stakingEndView, and endView configuration" @@ -564,6 +566,12 @@ access(all) contract FlowEpoch { ) } + // sanity check we must receive qc vote data for each cluster + assert( + numOfClusterAssignments == numOfClusterQCVoteData, + message: "number of cluster assignments does not match number of cluster qc vote data" + ) + if FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION { /// Since we are resetting the epoch, we do not need to /// start epoch setup also. We only need to end the staking auction @@ -588,8 +596,14 @@ access(all) contract FlowEpoch { clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData], dkgPubKeys: [String], nodeIDs: [String]) { - - self.recoverEpochPreChecks(startView: startView, stakingEndView: stakingEndView, endView: endView, nodeIDs: nodeIDs) + self.recoverEpochPreChecks( + startView: startView, + stakingEndView: stakingEndView, + endView: endView, + nodeIDs: nodeIDs, + numOfClusterAssignments: clusterAssignments.length, + numOfClusterQCVoteData: clusterQCVoteData.length, + ) let randomSource = FlowEpoch.generateRandomSource() let numViewsInStakingAuction = FlowEpoch.configurableMetadata.numViewsInStakingAuction @@ -653,7 +667,14 @@ access(all) contract FlowEpoch { clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData], dkgPubKeys: [String], nodeIDs: [String]) { - self.recoverEpochPreChecks(startView: startView, stakingEndView: stakingEndView, endView: endView, nodeIDs: nodeIDs) + self.recoverEpochPreChecks( + startView: startView, + stakingEndView: stakingEndView, + endView: endView, + nodeIDs: nodeIDs, + numOfClusterAssignments: clusterAssignments.length, + numOfClusterQCVoteData: clusterQCVoteData.length, + ) let numViewsInStakingAuction = FlowEpoch.configurableMetadata.numViewsInStakingAuction let numViewsInDKGPhase = FlowEpoch.configurableMetadata.numViewsInDKGPhase diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 4cb52bcf7..ee9bc6cad 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -12,7 +12,7 @@ // StakingProxy.cdc (5.71kB) // epochs/FlowClusterQC.cdc (19.005kB) // epochs/FlowDKG.cdc (18.691kB) -// epochs/FlowEpoch.cdc (59.764kB) +// epochs/FlowEpoch.cdc (60.567kB) // testContracts/TestFlowIDTableStaking.cdc (9.241kB) package assets @@ -322,7 +322,7 @@ func epochsFlowdkgCdc() (*asset, error) { return a, nil } -var _epochsFlowepochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x7b\x73\x1b\x37\xf2\xe0\xff\xfe\x14\x88\xab\x2e\x21\x37\x14\x6d\xc7\x57\xbf\xda\xd2\x59\xd9\x53\x24\xd9\x51\x39\xb6\x65\x4b\xc9\x5e\x55\x2a\x15\x83\x33\x20\x89\xd5\x70\x40\x03\x18\x29\x8c\x93\xef\x7e\x85\xc6\xfb\x31\x43\x52\xb6\x93\xcd\xd6\xf2\x1f\x5b\x24\xd0\x68\x34\x1a\x8d\x7e\xa1\x41\x57\x6b\xc6\x25\x7a\xda\xb5\x0b\x3a\x6b\xc8\x15\xbb\x26\x2d\x9a\x73\xb6\x42\xf7\xa3\xef\xee\xdf\xb3\x2d\x1b\x76\x1b\xb5\xb2\x7f\x47\x2d\xce\x4f\xaf\xf0\xac\x21\x97\x12\x5f\xd3\x76\x11\x34\x8d\x7f\x88\xfa\x9c\x34\x9d\x90\x84\xbf\x3e\x09\x9a\xbb\xef\xa2\x96\xa7\xcf\x9f\x05\x6d\x4e\x9f\x3f\x8b\x7e\x7d\x4a\x88\x08\x7e\x56\x7f\xde\xbf\x77\xef\xc1\x03\x74\xb5\x24\x48\xb2\xf5\x41\x43\x6e\x48\x83\xc4\x0a\x73\x89\x2a\xd6\x4a\x8e\x2b\x89\x56\xb8\xc5\x0b\x85\xab\x5c\x12\xd4\xd0\x39\xa9\x36\x55\x43\x10\x9b\x23\xb2\x66\xd5\x52\x4c\xd1\x79\x0b\xe0\x27\x0a\x94\xfe\x0e\x61\x4e\xa0\xbd\x58\xe1\xa6\x21\x42\xa2\xae\xa5\x52\xf5\x91\x74\x45\xd0\xed\x92\x98\xdf\x69\x4d\x5a\x49\xe5\x06\x49\x35\x79\x34\x82\x3e\x44\xb5\x54\xc0\x5a\x22\x6f\x19\xbf\x46\x6c\x4d\x38\x96\x8c\x8b\x31\xa2\x02\x09\x89\x25\xad\xa6\xe8\x95\xfd\x16\xad\xf0\x06\xb1\xb6\xd9\xa0\x86\xe0\x1b\x82\x18\x47\xff\x62\xb4\x85\x01\x0c\x08\x05\x0d\x4b\x8d\x1d\x9a\xb1\xae\xad\x31\xa7\x44\xa4\x40\x66\x04\x91\x7f\x91\x4a\x92\x1a\xd5\x1d\x57\x93\xc6\xad\xe9\x34\x67\x1c\xdd\x60\x4e\x59\x27\x14\xb0\x15\x15\x35\x59\x11\xdc\xb2\x8e\x8b\x09\x9a\x75\x52\x0d\xb7\x41\x9c\xac\x30\x6d\x91\x19\x3d\x99\x5e\xd7\x4a\xda\xc0\x0f\x1a\x26\x69\x6b\x31\xbd\xf7\xe0\x81\x02\x78\xe6\x09\x27\xd6\x0d\x95\x88\xb6\x92\xa1\xc7\x68\xbd\xc4\x82\x88\x43\xd5\xe4\xb7\xa3\x3b\x7f\xa0\x3b\x3a\xbb\x78\x75\xf2\x2d\x7a\x89\xb6\x7f\x7e\x73\x8d\xbf\x7c\x84\xa6\xd3\x29\xf4\x3f\x50\x1f\x64\x59\x17\xfe\xfa\xed\x00\x5d\x12\xd9\xad\x91\xfa\xdf\x09\x5b\xad\xa8\x54\xc4\x3b\xf8\xed\x37\xd7\xeb\x83\x90\x56\x10\x1e\x8d\x11\xba\xbc\x3a\x7e\x7e\xfe\xf2\x19\xba\xf8\xf6\xf8\xf2\x4c\x7d\xf9\x92\xd5\xc4\xf3\x05\x90\x0d\x48\x2c\x19\x12\xdd\x6c\x45\xa5\x62\x13\xc0\x93\x93\x77\x1d\x11\x52\xc0\x0a\x2a\xda\xbf\x3c\xfb\x7f\x57\x66\x01\xf4\x22\x2b\x78\x72\x49\x85\xa6\xf5\x14\x1d\x4b\xbd\x46\x6d\x0d\x1c\xeb\x7e\x99\xc0\xd7\xb0\x50\xe9\x26\xe1\x44\xb0\xe6\x86\x08\xd5\x42\x81\x63\x9d\x14\x12\xb7\xb5\x42\x20\x43\x04\xb7\x35\xaa\x89\x24\x7c\x45\x5b\xdd\x25\x65\x14\x8b\x6a\x4b\x7e\x91\x6e\x57\x4d\x61\x9f\x16\x87\x27\x2b\x2a\x85\xc7\x4e\x2f\x89\x20\xfc\x86\x56\x04\x91\x1b\xd2\xea\xb6\x98\xb6\x6e\xba\x83\x63\xea\x01\x27\xe8\x76\x49\xab\x25\xa2\x2d\x95\x14\x4b\x83\xaa\xe4\xb8\x15\x54\x52\xd6\x2a\x62\x9b\xf9\x6a\xac\xf4\xb8\x17\x40\x45\xb3\x78\x5f\x8d\xd1\xe5\xd9\xd5\xf7\x17\x7e\xe5\xfe\xb9\x24\x6d\x40\x54\x34\x23\x0b\xda\x6a\xd0\x6b\xcc\x25\xad\xe8\x1a\xb7\x52\x20\xb7\x81\x2d\x3a\x7a\x6f\x10\x39\x45\xa7\x7a\x6f\x2a\x20\x0a\xa2\x5f\x1c\x91\xc0\x58\x73\xb2\x56\xbd\xf2\xb9\x81\xd4\xd2\x6d\xbb\x06\xf3\x09\xaa\x58\xd3\x90\x4a\x4d\x0b\x24\x0f\xab\x89\xb0\x9c\x74\xc3\xd4\xdc\x0d\x0c\xca\x51\xa5\x65\xef\x17\x02\x71\xc6\x24\x7a\xd7\x31\xde\xad\x50\x45\xb8\xa4\x73\x5a\x61\x49\x60\x85\x2b\xd6\x0a\xd2\x0a\x2d\x2e\x34\x3c\xde\xe9\x39\xd5\x54\x48\x4e\x67\x9d\xda\x2a\xd7\x64\x83\x16\xa4\x55\x8c\xac\x48\xba\xe6\x4c\xb2\x8a\x35\x68\x74\xfa\xfc\xd9\x18\xd8\x99\x48\xd4\xad\xa1\x1f\xc7\x6d\xcd\x56\x0a\xde\x8c\xe0\x8a\xb5\x53\x4b\x4c\x98\x38\xcc\x15\xa0\xe8\xfd\x50\xb1\xd5\xba\x21\x72\x88\x6d\x1d\xdf\xb8\x35\xd4\x7b\xb8\x97\x77\x00\x94\xa2\xda\x1c\x57\x52\xe8\xed\xa1\x25\xf6\x9a\xb3\x8a\x08\x61\x78\x46\xc1\xdb\xc2\x36\x06\x23\x33\x60\xc4\x34\x8f\xc7\xe8\xe4\xd5\x8b\x17\xe7\x57\x57\x67\xa7\xdb\x18\x67\x12\x8a\x79\x75\x3c\xcc\xbb\xa6\xd9\xd8\x95\xaf\x61\xb0\x6c\xe8\x64\x5f\x1d\xa3\x39\xa6\x4d\xc7\x41\x7c\x90\x56\x12\x1e\x8f\x33\x67\x3c\x9c\x00\xd0\x81\x25\x0c\xa5\x67\x5c\xc3\xfa\xab\x19\x63\xb9\x0b\x4b\xab\x71\x35\x92\x76\xb5\x1c\x41\xbb\x35\xf0\xb6\x22\x6b\xdd\x71\xe2\x36\xa3\x40\x18\x55\x9c\x4a\x5a\xe1\xc6\xe1\xad\x18\xee\x96\x36\x0d\xaa\x70\x27\x34\x8c\x6a\xa9\x0e\x22\xc9\xd0\x12\x37\x72\x7a\xef\x1e\xae\xd4\xfa\x8c\x70\xd3\x8c\x3d\x03\xa8\x73\x5b\xaf\xc3\xfb\x7b\xf7\x94\xe0\x0f\x5b\x91\xb6\x5b\xe9\x55\x82\xd5\x39\x44\xdf\x9f\xb7\xf2\xef\xe8\xfd\x3d\x7b\x4a\x44\x20\x15\xa9\x8c\x98\x3e\xfe\xfe\xe4\xea\xfc\xd5\xcb\xfe\x76\x70\xb6\x80\x5c\xd8\xd2\x46\xb3\x01\x34\xfa\xbd\x07\x41\x75\x12\xbc\x61\xcd\x2e\xe8\xbd\x7c\xf5\xf2\xac\xff\xd7\x13\x2d\x01\x18\x1f\x6a\x62\xf7\x74\x3f\xda\xbf\x90\xaa\x03\x31\xd2\xdb\xe4\x07\xc2\xb5\xa0\x18\x6c\x75\x0c\x5f\x84\x53\x7f\x60\x54\x35\x23\x6c\xa5\xda\xca\xf1\x46\xa5\x02\xb6\xb4\x92\x2b\xb7\x46\x32\xf8\xb5\xf6\x0c\x2c\x1c\x38\xc9\x10\x46\x2d\xb9\x35\xec\x68\x18\xd4\x9e\x58\xb8\xab\xb4\x50\xd2\x9b\x33\x23\x3f\x8c\xa9\x4f\x1c\x40\x66\x74\xcf\x4d\xc7\xe2\x5a\xb1\x0e\xf6\x93\x95\xc0\x55\xc7\xb9\xea\xa5\xc7\x83\x6d\x42\x85\xde\xca\x70\x36\xd9\xfe\xa6\x9f\x5e\xd4\xff\xf9\xdf\x93\x1c\xf2\x9c\x72\x21\xd1\x0d\x25\xb7\x68\x44\x5b\x25\x93\xe9\x0d\x19\x5b\x91\x14\x8d\x33\x75\x9d\xa1\xd3\x0f\x94\xdc\x0e\x00\x6e\xf0\xae\x70\xbf\x10\x29\xa9\xfc\x48\xe6\x87\x63\xfd\xfd\x59\x5b\x7f\xb4\x51\xc3\xd9\xb4\xb8\x19\x82\xcb\x24\x6e\xd0\xd3\xef\x5e\xfd\x13\xd0\x21\x35\x9a\x6d\x10\x6e\x1a\x73\x1c\x69\x3d\xa4\x21\x0b\xad\x43\x15\x97\xc8\x0f\x26\x15\xb0\x4b\x00\x73\x88\xbe\x7f\x4a\x7f\xe9\x19\x4e\x74\xeb\x75\xb3\x51\x98\xab\x91\x60\xf0\x22\xe4\xa8\xeb\xb9\x9a\x72\x6d\x8e\x0a\x4e\x6e\x31\xaf\x8d\x10\x05\xa9\x36\x53\x82\x94\xd6\x0e\xd0\x9a\x93\x1b\xa5\x89\x27\x90\x00\x45\x25\xd2\x2e\x01\x87\x3e\x34\xc1\xda\x51\xa8\xf6\x0f\xc4\x3a\x89\x70\xa2\x06\x0e\x53\xe6\x8d\x86\xe5\xc7\x54\xbf\x8c\x8b\x1b\xb7\xa0\x9d\xa5\x1b\xf7\xb6\xff\xc0\x84\xee\x0e\xac\x51\x59\xcf\xdd\x21\xad\x49\x08\x9c\x41\x7f\x25\x75\x9f\x96\xd7\xad\x2b\xb6\x52\x8c\x1b\xcc\xa5\x6f\x6f\xab\x01\x77\xd8\xda\x09\x48\xf4\xa2\x13\x52\x11\x94\xb5\x04\x2d\x38\xc1\xfa\x58\xc5\x20\x62\x22\x60\x83\x32\x62\xba\xa3\x48\x38\xdf\x65\x9e\xe8\x96\xca\xa5\xdb\x01\x88\xb6\x73\xc6\x57\x38\xde\xb8\x21\x3b\x1e\x46\xdf\xaa\x3e\xe7\xa7\x13\xb7\xe7\xaf\xc9\x66\x62\x35\x8f\xd2\xdf\xb8\xae\x39\xa8\x44\x9c\x35\x64\x12\x81\xb2\x20\x02\x0c\x26\xe8\x96\xd0\xc5\x52\x4e\x60\x5f\xae\x18\x27\x1e\x27\x18\xb9\x9d\xb3\x43\xf4\x63\xee\x2b\x98\xbe\x34\xbf\xfe\xb4\xb7\x94\x2c\x71\xc1\x47\x11\x93\xfd\x80\xb7\x48\x2c\xb5\xfc\x5a\xbd\x46\x58\x08\xba\x68\x57\x8a\x13\xfa\x58\xec\x0c\x2b\x2b\xba\x21\xd0\xc8\x1c\x5e\x0d\x15\x32\x82\xc9\xc9\x9a\x13\x41\x94\x02\xa6\x58\xd1\x81\xd7\x3a\xba\xde\x33\x8a\x25\x40\x35\x53\x6c\x71\x7e\x2a\xcc\xe0\x46\x7f\x5c\xe2\x18\xa2\x01\x31\xd1\xec\xa4\x8d\x02\xbd\x78\x5a\xa8\x82\xc1\x10\xf0\xad\xd1\x2b\x8c\xcf\x46\x98\x55\x74\x2e\x9c\xa9\xf9\x5f\x69\xfd\x04\xeb\x78\x05\xde\x16\xad\xfc\xb7\x44\x08\x6d\x15\x28\xdc\xd4\x74\x09\xae\x09\x47\x82\x18\xeb\x05\xe1\x66\xc1\x38\x95\xcb\x15\x60\x17\x01\x1c\xda\xfc\xea\xa3\x87\xb8\x84\x21\x0f\xd1\xa5\x54\x56\x56\x01\xa7\x9a\xe0\xba\x01\xd3\x95\xcd\x11\x51\x4b\xa0\x15\x65\xb3\x00\xa7\xcf\x9f\x79\x33\x46\x32\x25\x02\xac\x72\x5b\xdb\x36\x16\x83\x08\x76\x60\xbb\x1a\xb1\x76\xea\x46\xd2\x7e\x11\x52\xd1\x39\x35\x50\x08\x5f\x01\x02\xd8\x5b\x5a\x9a\x1d\xdb\x6e\x35\x23\x3c\xde\xd0\x60\x3b\x60\x8d\x9a\xd7\xc8\x11\x9b\x29\x31\xac\xc0\x07\x12\x53\xad\xa0\x20\x58\xe9\xe5\xb3\x86\x55\xd7\x7a\x95\x01\xb4\x11\x63\x11\x68\x2b\xd2\xd0\x82\xde\x90\xd6\x11\x67\x82\xa8\x44\x15\x6e\x91\xc0\x73\xd2\x6c\x7a\x8c\x90\x50\xb5\x52\x9f\xd3\xe7\xcf\x40\xd7\x7e\xf4\x34\xdf\x28\x69\x9b\xaf\x76\x68\xf3\xb8\xd0\x26\x3f\x0c\x31\x5f\x10\x89\xea\xce\xd8\xa0\x65\x36\x99\x28\xaa\x0b\x52\xb1\xb6\xf6\xbc\xad\xbb\x9e\x9a\x9e\x39\x1e\xc9\x10\xea\x2c\x05\x0f\x60\xdf\x10\xd1\x12\xeb\xc1\x0e\xd6\x9c\x54\x54\x28\xc4\xbe\x6f\xe9\x2f\xd0\x3f\x19\xff\xac\xad\xaf\xe8\x8a\xd8\xe1\x7b\x8f\xde\xa2\x71\x3b\x7c\xf4\x82\xbb\xd4\x1d\xbe\x0e\xa4\x77\x75\xf9\x03\x38\x00\x04\xce\x48\x80\xa6\x04\x4b\x60\x99\xf7\x4c\xdc\xc1\x5d\x62\xa5\x0c\x93\xd6\xef\x98\xa1\x93\xd9\xcc\xe7\x03\xce\x66\xf2\xae\xc3\x8d\x65\x48\xdb\x89\xe6\x47\xb4\x53\xb8\x82\x3d\x0a\x88\xec\x7a\x3c\x5f\x81\x5e\x27\xba\x46\xda\x23\xe2\xf5\x09\xc2\x8b\x05\x57\xda\xa7\x71\x7c\xa8\x39\x26\x32\xdd\x0a\xe8\x08\x56\x28\xac\x03\x81\x8b\x38\xa9\x08\xbd\x21\x5a\x4d\xc4\x81\x77\xc7\x0a\xec\x08\xca\xeb\x13\x04\x2e\x3a\xad\xf8\x16\x9c\x38\xa0\x15\x82\x78\xb3\x47\x86\xf1\xd3\x10\x11\xcc\xda\x0a\xf1\x5e\xa9\xfe\xfa\xa4\x24\xd7\x35\x2d\xd4\x8a\xac\xbb\x59\x43\x2b\xa5\x3c\x08\xcf\x6d\x46\x86\x6a\x8f\x0a\x69\x2b\x56\x2b\xc1\x24\x94\xfe\x0e\xea\x5d\xc3\x6e\x0f\x16\x2c\x3e\x94\xf8\x66\x2d\x19\x6a\xe8\x8c\x63\xbe\x01\xb7\x48\x8b\x96\xe4\x97\x03\xd3\x3d\x16\x88\xcf\x38\x53\x62\xd6\x8d\xad\xb8\x57\x3a\x7d\xc1\x90\x7f\x82\xe6\xac\x69\xd8\xad\x36\x1c\xc0\x67\xd8\xd6\xf4\x86\xd6\x8a\x69\x14\xc2\x0e\x64\x7d\xbd\xb8\xe8\x66\xcf\xc9\x46\x91\x41\x1f\x1c\x3f\xf5\x6b\xc0\x6f\x48\xc5\x6e\xe0\xd0\x1a\xda\x88\x58\x2d\xa8\x6a\xa7\x3b\xc1\xa6\xc4\xfa\x8c\xa3\xd6\x37\x27\xed\x09\xed\x5c\x40\xde\x27\xe6\x9c\x42\x0e\x83\x05\x01\x27\x8c\x32\x7a\x5b\x74\xf6\xf4\x05\x84\x12\x88\xb1\x39\xfa\x87\xea\x84\x1e\x45\x35\xe0\xb4\x26\x05\x43\x56\x31\xa1\x01\x11\x0d\xad\x8e\x0e\x65\x4b\x38\x14\xc4\x5a\x2b\x87\x53\x74\xb5\x54\xb3\x48\x29\x60\x16\x5d\x53\xdc\x9d\xa2\x91\x17\x49\x32\xd4\xad\x6b\x83\x38\xe5\xa8\x61\x15\x6e\x7c\x5b\x3d\x27\xab\x99\x80\x71\x6f\x30\x73\x48\x18\xe7\x37\x96\x78\x50\xf1\xb7\xcb\x34\xda\x2a\x5e\x4c\xcb\xcd\xd9\x9f\xa6\xb1\x83\x0a\x0a\xee\xf6\xff\x3c\x2d\xbd\x87\xba\x1f\xac\xa4\xf7\xc2\xfd\x20\x1d\x3d\x86\xfa\x07\xaa\xe8\xb6\x5b\x26\x9c\x8f\x1d\x92\x4a\x3a\x59\xf1\xf4\x5f\x6d\xfb\xbf\xda\xf6\x7f\xb5\xed\x0f\xd7\xb6\x07\xa4\xc3\xeb\x13\x81\xd6\x18\x4e\x33\xc3\x89\x7d\xc7\x2c\xc4\x36\x05\x01\xc6\xb3\x5a\x16\x78\xe1\x0e\xd8\xfc\x60\x86\xdb\x3a\x1a\xa3\x13\x36\x14\x25\xf0\x8a\xf8\x18\x89\xd2\x90\x6c\xdc\x5e\x9f\xb4\x05\x45\xed\x07\x26\xc9\x29\x96\xb8\x5f\x5f\xb3\x2d\x4a\x12\x02\x78\x3a\xd0\xd8\x76\x9c\x5e\x04\xe7\x44\xab\x0e\xcd\xc6\xc6\x2c\xd5\xac\x39\x39\x00\x3d\xc3\xa9\x80\x20\xba\x45\x07\x47\xf3\xbc\x6b\xd4\xc8\x53\xf4\x92\x59\xc5\x14\x02\x54\x74\xb5\x6e\xa8\x0d\x37\x45\x63\x44\x52\x18\xbd\xf8\xfe\xf2\x0a\x2d\xf1\x0d\x89\xf6\x6f\x65\x8c\x18\xe2\xfc\xf0\xda\x59\x58\x79\x93\x20\x41\x22\x1a\x42\x91\xc2\x81\xf8\x24\xda\xe5\xa0\x7a\x99\x79\x58\x4f\xec\x49\x61\xd8\xba\x42\x2b\x22\xb1\xd2\x72\x10\x9e\x81\x43\x37\x34\x09\x62\xbb\xeb\xb8\x69\xd0\x92\x0a\xc9\x38\xcc\x5e\xab\x1e\xae\x3b\x24\x9d\x30\xae\xac\x3d\xc2\x57\xb8\x85\xc5\xcb\x34\x27\x21\x79\x57\x19\xd5\xe9\x85\xed\xfa\x3e\x67\x21\x4d\xe4\x39\x0d\xf4\xa7\xd8\x8d\x1d\x02\x6d\x88\x4c\xd5\xa8\xc2\xb1\xa5\x8e\x27\xcd\x3d\xcc\x59\x29\x76\x8b\xe8\xb9\x08\xe7\x35\x2e\x8d\xa0\x00\xd8\x23\x68\x50\x3b\xb1\xf9\x10\xc3\x08\x0b\x89\x79\xa4\x99\x0c\x29\x26\xbb\x81\x24\x71\x00\x65\x2b\xc0\x2c\x88\x35\x84\xac\x6a\x77\xb6\x6d\x80\x42\xc8\x40\xed\x5b\x17\x2e\xd8\xbe\x96\x37\x98\x17\x63\x05\x25\xeb\x50\x35\x40\x78\xa5\x56\x3e\x1d\x4c\x32\xad\x06\x04\xbb\x05\x74\x22\x75\x92\x52\x29\x82\x90\x4e\x2f\x16\x1a\xfe\xb1\x06\x5f\x56\x57\x0d\x8e\xdf\x70\x82\xaf\x6b\x76\xdb\xfe\x94\x60\xc9\x71\x75\x2d\x10\x9d\x3b\x8a\x80\x78\x01\xdf\x45\x10\xaa\x19\x5c\x57\x8f\x89\xb8\xc0\xb4\x3e\x44\xdf\x30\xd6\xe4\xc4\x60\x7c\x81\x5b\xfa\xab\x3e\x2d\xd9\xdc\xfb\x53\xbd\x2a\x08\x36\x9d\x91\xf0\xb1\xaf\xc0\xe5\xd9\xe8\xd8\x17\xe2\xac\x53\xa6\x1a\x9b\xa9\x13\x8f\x71\xd8\x25\x4e\x87\x1b\xd8\x81\xbb\xba\x70\x73\xf4\x5f\x6b\xcf\xc2\x89\xf7\x2c\x04\x76\xbe\x4f\xed\xb3\x61\xda\x5e\x4a\xed\xe4\x69\xc8\x87\x0f\x0f\x2b\x2c\x04\xab\x28\x1c\xad\xce\x3e\x3c\x0d\x72\x51\x9e\x93\x0d\x7a\xe6\x72\x51\x12\x07\x10\xd8\xa5\x46\xd1\x76\x47\x88\x76\xc1\x38\x25\x4f\x2a\x19\x5e\x38\x09\x82\x23\x00\xf6\xa9\xb5\x07\xd4\xa9\xd3\xd6\xe4\x97\x43\xd4\x90\x76\x21\x97\xe8\x00\x3d\xea\x25\x40\x7d\xbd\x48\x1c\x0c\xae\x29\x6d\xa9\x1c\x65\xd6\x26\x0a\x3f\xa1\x88\x4b\x7f\x4a\xc5\x55\xf2\x3b\x49\x83\xb7\x69\xef\x82\xfc\x48\x1a\xf5\x87\x08\xdd\x67\x9f\x30\x41\xdc\x71\x37\x17\x54\xd4\x27\xa3\xe5\x38\x3c\xa9\x34\xbd\x9a\xf9\xd4\xda\xf9\x47\xf6\x0c\xca\x9b\xc0\xd9\x73\x04\xe4\x2d\xfc\x68\x29\xab\x5a\xd8\xff\xe7\xcd\x0c\x81\xd1\x91\x25\x75\x11\x52\x40\x65\x0d\x2e\xf8\x22\xef\x10\x52\x1c\x1d\x45\x0b\x90\x37\x8e\xe4\x21\x3a\x42\x3f\xfe\xd4\xd7\x06\x24\x15\x3a\x42\x73\xdc\x08\x52\x22\x58\xb2\x88\x40\xba\xe4\xbb\x42\x37\xb7\x84\xaa\xbd\xfb\x23\x6f\x68\xd6\x0d\x1d\xd9\x15\x74\x4d\x7e\xbf\x97\x6d\x9c\x0a\x16\x6d\x8c\xe6\x5d\x8b\x2a\xb6\xde\x8c\xc6\x87\x99\x76\x12\x8e\xc0\x89\xec\x78\x0b\x03\xed\x0a\x56\x10\x79\x15\x50\x76\xf4\x33\x6a\xc9\x6d\xc2\xe7\xe3\x64\x98\xd2\xf2\xf8\x5e\x7b\x8c\xfc\x26\x5c\xb5\xd1\xcf\xe6\x2c\x71\x27\xd6\x8e\xe7\x5a\x11\xbd\x94\x21\x12\xd0\x7b\x23\x09\x6c\xe3\x50\x0c\x8e\xbb\x81\xd1\x2d\xab\x05\x7f\xed\x31\xae\xdb\xfa\x62\xf4\xae\x1a\x92\x0c\x45\x0c\x22\x86\x7c\x57\xed\xb3\x2a\xa7\xcf\x9f\x81\xd0\x7f\x4e\x36\xa3\xeb\x4c\xc6\x0c\x70\xf4\x75\xcc\xce\x28\x4e\x7c\x72\x3c\x6b\x6d\x15\xc8\x4b\x37\x0e\x04\x65\xf9\xcf\x20\xe5\xad\x5d\x78\x73\xe2\xb8\x5e\xd1\xf6\xc1\x83\x07\x7d\x9a\xfa\x09\x6b\xe7\x74\x11\x20\x65\xcf\x4c\xed\xd3\x50\xba\x86\x52\x28\x21\x6f\x0f\xb7\x48\x69\xed\x7c\x9b\x7e\xd7\x76\x2b\x25\x8f\xc4\x79\x0b\x3b\x2d\x57\x27\xc3\x0e\x86\x62\x2f\xe3\x3e\xa3\x9f\xf5\xb0\xb6\x6f\x91\x6c\xc9\x38\xe8\x48\xf7\x29\xad\xd3\xc0\xac\x76\xd5\x93\xe3\x99\x5d\x46\xa9\x4d\x7b\x4e\x31\xee\xbc\xe7\x5c\xe3\xce\x77\x9c\x34\x28\xcf\xf5\xf5\x42\x7b\x83\x76\x98\xaf\x75\xef\xec\x39\x53\xdb\x6d\xcf\x39\xda\x6e\xfb\xcd\xce\x2b\xc5\x56\x0d\x76\x53\xdd\xca\xb0\x27\xb9\xe6\xa1\x30\x7d\xf4\x3f\xdb\x26\x9a\x75\x54\xf2\xbf\x5b\xa5\x60\xfa\x26\x9c\x75\x57\x07\x81\xef\xde\x3b\x71\x6d\x7a\xe8\x84\x68\x49\x94\x12\xa9\x53\x63\xc3\xdc\xb1\x35\xde\x28\xa3\x8c\xb6\x15\x27\x58\x10\x81\xc8\x0d\xe1\x9b\x42\xe6\x19\x84\x61\x6e\x70\xd3\x11\x10\x2a\x5d\x23\xe9\xba\xa1\x5e\x88\x40\x02\x9b\x0c\x33\xdb\x24\x43\x0b\x22\x03\xa7\x22\x0c\xd5\x4b\x60\x05\x40\xf7\x3c\x37\xc8\x5c\x10\x5e\x91\x56\xe2\x05\xc9\x2d\xc0\x02\xa1\x87\x00\x8c\x7e\x46\xeb\x0c\x5a\x91\xde\x43\x50\xd0\x51\x00\xa5\x44\x76\xd0\xaf\x7b\x44\xdb\x64\xab\x64\x98\x0c\xec\xa5\xc9\x20\x03\x4e\x76\xa2\xde\x8e\x02\x32\xf9\x66\x2f\x39\xd3\xf7\xd3\x8e\x1b\x39\xff\x72\xaf\x0d\xb1\x5d\x81\xdc\xb2\xba\x43\x3f\xf7\x1f\xb9\xfa\x7c\x0c\xfd\xd4\x26\x6b\x97\xae\x94\x26\xe5\xda\x9d\x39\x29\x03\xd9\xe9\x36\x2c\x83\x33\x3f\x34\x84\x75\x29\x9c\xde\xe0\x8f\x42\x23\x65\x86\x9a\x73\x28\xcd\x2c\x18\xfb\x01\x74\xc8\x31\x44\xa6\x26\x73\x1d\xa8\x40\x9c\xcc\x09\x27\x6d\x65\x1d\x5d\xd6\x64\xc1\x66\x50\x21\xf1\x6a\x6d\x93\xe7\x4d\x37\x07\x18\x37\x0d\x9a\x77\x12\x32\xff\x63\x5c\xc5\x14\x9d\xcf\xd1\x5b\xe3\xf1\xd6\xc9\x16\x00\xf8\x2d\xcc\xb1\xcd\x7c\xe9\x72\x49\x5a\x07\x17\x6e\x55\x24\x93\xa7\xc2\xc4\x2c\x66\x9b\x43\xdb\xd0\x75\x48\x7c\xeb\xa0\xf5\xcd\xaf\x2c\xfa\xe8\x4b\x1f\x2e\xf8\x1b\x1a\xe5\x48\x1d\x70\x32\x37\xff\x1d\x47\xb0\xfb\xfc\x93\x57\xb0\x84\xbd\x0a\x90\x1b\xcd\x86\x9c\xfa\x63\x12\xa9\xab\xa4\x4e\xa2\x13\x79\x70\xc0\x2c\x90\x71\xd3\x25\xeb\xd7\x0b\xd7\xcf\xb0\x17\xb2\x23\x75\x19\xf4\xfe\xf1\x8e\x02\x0e\x6e\x4d\xca\x8e\xc2\x13\xb6\x5a\x77\xd2\x71\x93\xb8\xa5\xb2\x5a\xea\xac\x00\x85\xd8\x0c\x0b\xc8\x0e\x42\x6c\x3e\x17\x44\x6a\x3f\x90\x47\xd3\x90\xe6\x81\xef\x36\xed\x3d\x18\x16\x44\x5e\x85\x2c\xf3\x94\x71\xab\x3d\xe6\xfc\xe1\x54\x0f\xfb\x9f\x7e\xcb\x6f\x9a\x30\x9e\x56\xd2\x87\xb9\xcf\xf6\x8b\x58\xb0\x74\x84\xa4\xcc\x31\x29\x2c\xeb\xa4\x48\xe6\x54\xc6\x27\x78\x1d\x39\xbe\x2b\xb4\xf2\x63\xe8\x7d\x75\x52\xf0\x65\x14\xe6\x1e\xef\xc1\x7e\x31\xf9\x2d\x6b\x6a\xad\x8e\xbc\x75\xd7\x69\xa6\x7a\x6b\xbd\xb5\x9b\xce\xb9\xdb\x9c\x18\x9b\x35\xc4\x05\x18\xc2\xad\x6a\xfd\x80\xd6\xf1\xe8\x9b\x5b\x0b\xe8\xd0\x08\xe6\x1d\x6c\x23\xa3\xc3\xc4\xb7\xbe\xbc\xf4\xd3\x96\x53\xcb\x64\x9f\xf1\x54\x08\xae\xe0\x30\x4e\xc2\x49\xc5\xb8\x4b\x8f\x77\xf1\x12\x60\x6b\x93\xf9\x16\xe4\xe9\x7b\xb9\x0b\x4e\x3f\x3d\x96\x96\xda\x5a\x91\xf5\xc3\xbd\x01\x86\x14\x05\xb0\x30\x1f\xb7\x8f\xe3\x28\x0e\xe3\xa8\xa5\x0d\xa2\x73\x7d\xc8\xb4\x5f\x48\x34\x67\x9d\x09\x1e\xba\x98\xb7\x27\x97\x8f\xeb\x28\x0b\x4f\xdb\xb1\xf0\x8d\x3a\x35\x85\x8e\x80\x2d\x38\xbb\x55\x62\xbe\xa6\x70\xe0\x63\xbe\x71\xd0\x6a\x46\x04\x52\xd4\x03\xd7\xb7\x8e\xbd\x37\x0c\xd7\x0a\x2f\xd0\x36\x61\xcf\x47\x77\x70\xa8\x30\x2d\x32\xe9\x6c\xf6\x74\xe4\x9f\x19\xfd\xac\x27\x98\xef\xe2\xa8\xd9\x3f\x82\xbd\x41\xe7\xc0\x37\x96\x66\xa7\x0e\x6b\xf0\xd1\x35\xf3\xa9\x99\xe6\xd4\x4c\x73\x3a\x63\x9c\xb3\xdb\x27\x9f\xbf\xd7\xb0\x13\xd0\xbf\x7f\x3d\x52\x54\x3f\xd4\x7d\x2d\xd4\x4b\xdd\xf7\x02\xcb\x65\xba\x2f\x93\xf1\xdf\x90\x39\x3a\x2a\x60\xf3\x63\x38\xaf\x9f\xd2\xbd\xed\x25\x52\x00\x67\xaa\x5d\x58\x51\xcb\xdf\xef\xe5\xff\x33\x3d\x5b\xda\xa4\x1b\xf5\x12\xeb\xe4\x83\x15\xab\x35\xf7\xc4\xce\x30\xb3\x55\x4d\xe4\xd3\x07\xff\x32\xd6\x28\x6f\x57\xd0\xd6\xf1\x0d\x49\x57\xb0\x25\xb7\x7e\xe7\x46\x3f\x86\xb4\x5b\x73\x52\xf4\xc3\xe8\x50\x71\x28\x6d\xd1\xd1\x11\x7a\x88\x7e\xfb\x2d\x6a\x3c\x0a\x46\x71\x5e\xdb\xaf\x8f\xfa\x81\x1c\xa0\x47\xe8\xf3\xcf\x23\x18\x25\x10\x4f\x0c\x88\x35\x67\x6b\x26\x48\x1d\xc2\x18\x8d\xc7\x87\xd9\xba\xdd\x3f\xd1\x02\x05\x68\xbc\x49\x03\xa9\xb0\x83\x6d\x89\x80\xb9\x24\xf6\x36\x8f\x06\x6e\x5a\x33\xee\xae\x5c\x66\x57\x7d\xee\x17\x16\xfc\xae\x2c\x8f\x3b\xb9\x1c\xbd\xe8\x24\x96\x64\x8c\x3e\x11\xff\x97\x99\xbf\x40\xe9\xd2\x1e\xc0\x42\x10\xb8\x55\x97\xfe\xa0\x3e\xab\x74\xa9\x8e\x8e\x4a\x2b\x38\xe9\xe9\x2c\x04\x18\x50\x76\xb9\x14\xe3\x7a\xa4\xe1\xb4\x5a\x51\xb1\xc2\xb2\x5a\xfa\x54\x3c\x03\x52\xdc\xcf\x60\xf6\xed\xca\x10\xd1\x6d\xf3\x8f\xd0\x2f\x9f\xb6\xc5\x3d\x67\xd3\x45\xde\x04\xe9\x54\xa3\xb1\x0d\xf5\x24\xca\xad\xce\xb9\xb2\x79\x5e\x2b\x93\x05\x8d\xd1\x92\xfc\xa2\xf6\xbf\xea\xc0\xe6\xe8\xf1\x57\xea\x34\x54\x43\x28\x1b\x6c\x44\xa7\x04\x3d\xfa\x1f\x34\xdb\x48\x22\x14\x77\x3e\xfa\xea\xef\x68\x46\xa5\x18\x47\xa0\xdf\x72\x25\xf4\x25\x9d\x35\x06\x95\xb7\x46\x14\x29\x91\x63\xb4\xae\xd1\xdf\x35\x14\xdf\x13\xd4\x4a\x68\xfe\x1d\xbb\x05\x95\x23\x06\xf2\x44\xf7\xfc\x7a\x34\x9e\x4a\xf6\x0d\x5d\x9c\xb5\x35\xc5\xed\x37\x0a\xc8\xa8\x04\xe5\x5b\xba\x58\xde\x19\x0c\x04\x64\x03\x32\xa2\x23\x43\xc5\xa9\xce\x21\xfe\x96\xfc\x32\xf2\xc3\x8c\xa7\x15\x6b\x2b\x2c\x47\x3d\x6d\xbe\x63\xb7\x63\x0f\xbb\xc8\xcc\xe1\x60\x53\x13\x02\x3c\x3a\x42\x8f\xbf\x9a\xdc\x2b\xb3\xeb\x9b\xfd\xd7\xcf\x73\xeb\xf8\x5e\x7a\x48\x84\xe3\xa7\xa7\x45\x60\xab\x4c\xd4\xaa\x9f\x9f\x4e\x8a\xf7\x00\xb3\x93\x1c\x82\xb5\xb9\xc8\x8d\x0d\x06\x37\x82\x01\xa5\x73\xfa\xdc\xb5\x71\x67\x4d\x9b\x70\xea\x10\x7c\xe3\x4f\xf1\xff\xf7\x23\x28\x09\x15\x54\x5b\x09\xf4\x53\x50\xef\xde\x42\xdd\x0a\x20\xa5\x53\x85\xb2\xe1\x14\x6f\x61\xd5\x3a\x90\x7a\x6a\x77\xb9\x3f\x76\x19\xee\x5b\x82\xb9\x9c\x11\x2c\x77\x1e\x72\x69\x7b\xec\x3f\x6c\x8f\x28\x7f\x1b\xe8\x70\x5b\x06\x2f\x08\xfa\x9e\xb1\xdf\xd8\xd9\xe8\xc0\x38\x38\x06\x20\x37\x5b\x30\x6f\x88\x3a\xf5\x6f\x4e\x49\x63\x6c\xe7\x70\x48\x47\x12\x58\x95\x9e\x1b\xec\x4a\xd6\x69\xd8\x30\x2d\xf0\x27\x69\xf5\xc2\xff\xdd\x67\x2d\xe5\xda\x85\xfa\xf8\xe5\xc9\xd8\x49\xed\x42\xff\xd7\x34\xbe\xd7\xaf\x8f\x0d\x7d\xc9\xc5\xcc\x56\x4f\xcc\x26\xdf\x15\xc2\x0a\xf9\x99\xe1\x47\xa7\xe2\x07\xdc\xd0\x1a\x86\x8a\x7c\x4e\xa3\x00\xc3\x82\x21\xd4\xeb\xb0\x2b\x1f\x7a\x3b\x03\xb3\x3e\xba\x32\x98\x88\xe0\xe3\x43\x74\xff\x25\xb9\x35\x86\x05\x7c\xe5\xa4\x52\x7a\xe7\x15\x89\x6e\xa5\x38\xc2\x51\xa6\xad\x21\x87\x4e\x13\x1c\x7c\xfd\xf7\x93\x73\xf4\xde\x1e\xf8\x17\x02\x49\x31\xaa\x25\xab\xbc\xcc\x60\x86\x8c\x01\x8b\x85\xdf\xfc\xa7\x31\x59\x32\xbd\x4f\xca\x3c\x3b\x83\x81\x46\x8a\xbb\xf6\xe1\xac\x96\xdc\xfe\x21\xdc\x95\xc4\xf0\x12\x02\xee\xc1\x68\x96\x58\x01\xa7\xf9\xbf\xff\xd3\xf8\xec\xa3\x0a\xb3\x88\x52\x7f\x06\xaf\x85\x7c\xa6\xf8\xee\x53\xf1\x9a\x8b\xa2\x46\x33\xde\x83\xc7\x32\x7f\xb7\xe6\x33\xfd\xff\xc3\xdc\x1d\xfe\x21\xec\x76\xe2\x2d\x6f\x37\xc4\x34\x74\x71\xde\x7f\x93\x84\x2b\x2c\x99\x8d\xc5\xeb\x4b\x03\xa5\x04\x2c\x0f\x9e\x9a\xb6\x0d\xc3\xf5\x93\x6c\x4a\xd6\x88\x7d\x60\x9a\x3d\x98\x5b\x00\xd1\xc4\x77\x1c\x43\xd9\x8a\x23\x37\xbd\x09\x92\x6c\x77\xc8\x5b\x57\xab\x2f\xaa\x4c\x6e\x5f\x6e\x0f\x2c\xff\xbb\x49\x86\xbb\xb0\x7d\x3e\xfb\x78\xee\x7b\xd0\xf2\xe9\x77\xaf\xfe\x79\xd9\x1f\x38\x56\x1b\x6a\x6b\x2c\xf5\xdf\x8d\xa4\xc8\xc8\x3e\x1f\xdd\x7c\x72\x84\x1e\x4d\x1f\x1a\x3d\x4c\x07\xf2\xfd\xa6\x92\xb7\x84\xb4\xe8\x57\xc2\x19\x08\x2a\xd6\x92\x0f\x5c\xa1\xc1\x60\x7c\x84\x58\x71\xa1\x1e\x3c\x40\x67\x2d\xf8\xfe\x19\x47\x35\x15\xf0\x5f\xdc\x49\xb6\xc2\x92\x56\x2e\x7b\xa1\xc2\x4d\xd5\x35\xb6\x96\x5b\x5b\xa3\x35\xde\xc0\xfd\xb5\xad\x8a\x9b\x81\x64\xb2\xce\xf4\x58\xf5\xe8\x67\x44\xf4\xff\xca\x49\x67\x5b\xe4\x89\xea\x52\x14\x21\x3d\xc3\xed\x25\x48\x0c\x62\x05\x31\xb2\x15\xba\x17\x8a\xbd\x64\x21\x2b\x2a\xc3\xbb\xac\x67\x37\xa4\x95\xa3\x92\x53\x3d\x3e\x43\xb7\xa4\x04\xef\x92\xf3\x3b\x98\x35\xbc\x35\x65\xa2\xa7\x75\x96\x3e\x11\xb7\x83\xab\xaf\xd9\x1d\x19\xfb\xd9\x76\x1d\x32\x6c\x5b\xbe\x9c\x18\xb6\xd8\x76\x19\x0d\xf5\x5f\x18\x2b\x20\xb5\xe7\xbd\xac\x10\x42\xff\xe5\x20\xfb\xc9\x82\x87\x21\xcb\x20\x1f\xe1\xb2\x11\x80\xfe\xe2\x98\xe6\x82\x57\x9a\x48\x84\x8c\x0f\x0e\xd2\xe1\xb7\x5c\xff\xcd\xd3\x8b\xe7\xe6\x2a\xc3\xf9\x29\xa2\xad\x5d\xc4\x02\xca\x00\x7d\x8a\xd7\x6b\xd2\xd6\xa3\x81\x21\x46\x1a\xc4\xa1\x01\x35\x4e\xbd\xb3\x19\xda\x8a\x82\xf1\x3d\xc8\x30\x5f\x1b\x7d\xd9\xcb\xae\xd1\x4f\x2e\xdf\x25\x4c\xe2\x4f\x87\xf8\xea\x0e\x43\x8c\xbe\x42\x7f\x2b\x8c\x33\x1e\x1c\xe8\xf1\x5d\x06\x7a\x3c\x30\x50\xc6\x30\x4a\xb6\xc4\x17\xe5\x21\x6f\x25\x16\x02\xaa\x8d\x97\x80\x61\xeb\xdc\xad\xef\x2e\x30\x84\xf2\x29\xd7\xed\xfd\x35\x73\x60\x88\xbc\x41\x70\x31\xdc\x4d\xbc\xd4\xca\xdd\x55\x35\xa2\x2a\x6f\x53\x92\x18\xf9\x77\x79\xbf\x58\x7a\x84\x7f\xe5\x6d\x4b\x97\x70\x73\x86\xec\xef\xf7\x55\xa1\xdf\x57\x3b\xf4\x7b\x5c\xe8\xf7\x78\xa0\x5f\x2a\xef\xe2\xbf\xfb\xda\x3b\xd9\x17\xfd\xd9\x4b\xe9\x50\x0c\x66\x5f\xe5\xbd\x42\xd1\xe7\xff\x9f\x08\xbf\xb2\x1e\xf2\x00\x5d\x10\x3e\x67\x7c\x25\x90\xc0\xad\x92\x74\xd5\x92\x54\xd7\x22\xa8\xb1\xc7\x6e\x68\xed\xa2\x72\x51\xfe\x15\xd4\xbb\x81\x82\x79\xa4\x15\x9d\xf1\xbb\xea\xdb\x9c\xb4\x5d\xfc\x9f\x68\x98\x03\x74\x05\xae\x59\x28\x5c\x7a\xa3\x6c\x63\xe3\xec\x8e\x21\x26\x7d\x8e\x5d\x95\x42\x5b\x34\x15\xca\x3f\xd4\x02\x8a\x07\xd8\xbb\xac\xba\x16\x03\xfa\x1a\x3d\x4c\xea\xb7\xcd\xe3\x64\x0b\x5b\xc9\xc3\x22\x10\xff\x00\xe5\x69\x73\xc5\x33\xbe\x57\xfd\xae\x42\x37\x4c\x5a\x8b\xb7\xbe\x5e\xb8\x82\x81\xa4\x55\x54\xaa\x89\x12\xcb\x10\x80\x68\x0b\x05\x42\x92\x9b\xe7\xa9\x9e\x12\x5e\x1c\xbe\xe0\xe4\x04\x96\x62\xf4\xc9\xb5\x90\x54\x5f\xd8\x57\xfb\xef\x77\x76\xc4\xb8\x1d\xb8\x99\x7c\xf9\x68\x72\x07\x5f\x9a\x9d\x46\x08\xa7\x10\x7c\x56\x9f\xfb\xe7\xad\x5e\x63\x2f\xfa\x12\x42\xe9\xd2\x1d\xf6\xce\x51\xc4\x0a\x83\xc6\x01\x54\x04\x09\xb6\x4a\x50\x49\x53\x2c\x59\xd7\xd4\x39\x57\xde\xe9\x98\xd7\x91\xb2\x72\xd4\x77\x8f\x53\x7f\xaa\xeb\x2f\x37\xff\x74\xd8\x4c\x50\x11\xa6\x8f\xae\xe1\x70\xd3\xc5\x1b\x4e\x21\x1f\x2b\x3f\xda\xca\xca\xa6\xbc\x3d\x38\x1c\xfd\x49\xe7\x77\x36\x26\x0b\xa4\x83\x2c\x0f\xda\x56\x04\xdd\xda\x5b\xf5\x82\xc8\xf8\x2a\xf4\x44\xfd\x56\x33\x48\xdc\x69\xa1\xae\x07\x2b\xc2\x01\xfe\x09\x6f\x4f\x23\xdc\x08\x36\x45\xff\x24\xda\x7e\x35\x7d\x75\xd6\xe1\xc0\x3d\x8a\x70\xe9\xf4\x34\x75\xfe\x81\xd5\x3e\xea\x15\x6d\x47\xe3\x29\x69\xeb\xc4\xad\x9a\xd0\x0d\x91\x46\x94\x76\xa3\x29\x35\x52\x99\xc9\xba\xda\x5a\xda\xff\xbb\x15\x0d\xa7\x5d\x5b\x44\x00\xd6\xa5\x64\xeb\x1f\x40\xdc\x25\x68\x94\x40\x9c\x3e\x7f\x16\x75\x3e\x6b\xeb\xd3\xe7\xcf\x06\x52\x75\x22\xc1\x7a\xd6\x9a\xec\xb9\xca\x96\x45\x40\xb8\x92\xf4\x86\x04\xa5\x95\x60\x2d\x84\x29\x55\xcc\xda\xa0\xbc\x91\x3b\xa5\x06\x4e\x13\x48\xf1\x5f\x11\x89\x91\xc9\x6e\x30\x72\xdb\xd4\x8f\x0a\xf3\x8f\x8b\x95\xa9\x4c\xad\xa6\x79\xd7\x6a\x45\xb1\xa6\xf3\x39\xe1\x22\x2e\xb8\x60\x52\x39\xa1\xfb\x49\xc0\xc7\x68\x46\x74\x4d\x6e\x6a\x6e\x23\x80\xca\x14\x04\x79\xc3\x84\x65\x53\xc2\x5b\x1b\xff\xee\x32\xc3\x14\xe5\xd3\x71\xc8\xd8\xfa\x54\x26\x93\x1a\xaa\x5e\x40\xcd\x9a\x52\x39\x2a\x40\x52\xa3\xf5\x14\x37\xcd\x0c\x57\xd7\xe8\x85\xda\xe7\xa3\xb3\xa7\x2f\xc6\x5b\x8f\xa7\x97\x26\x9e\xf4\xc9\x0f\xa6\x8f\x6b\x5b\xee\x64\xf0\xfe\x11\x76\xe8\xd6\xf3\x36\xa6\xa2\xce\x48\xdd\xa2\x18\xf4\x1e\x73\x87\xd9\xb1\xe7\x48\x6e\xf5\x7d\x8f\x90\xf9\xcf\x38\x33\xa7\x92\x74\x10\xbf\xf5\xcb\x69\x37\xb9\x6d\x39\x70\xa9\xe2\x8e\x01\x91\x81\x21\x82\x2b\x17\x7b\x2b\x19\xf9\x61\x7f\x02\xa1\x0f\x90\x39\x71\xa6\x60\xd9\x1b\x10\xd7\x5c\x03\x4f\xa4\xc8\x71\x35\x5b\xe8\x85\x4f\x10\x8b\x13\x06\x33\x2c\xce\xad\xd0\x28\xc8\x0c\xb8\x50\x61\xb0\x50\x67\x8f\x2e\x96\xe6\x0b\xba\xc7\x1c\x6e\xcd\x4b\x4f\x9a\x72\x5a\x5f\xb2\x99\xe1\xe2\x7c\xbf\x0d\x57\xe4\xc5\xf2\x56\x2f\xda\x99\x5b\xb8\x36\xa1\x87\x2e\x48\x62\x2d\x0d\xeb\x3d\xb6\x22\x5d\xd1\xe1\x96\x2b\xb1\x0e\x4f\xf0\xbc\x75\xa2\xf4\xb8\xad\x2f\xdd\x5d\xdc\xb7\x68\x46\x1a\x16\xdf\x19\x8f\x2f\xe8\x3f\x9c\x3e\x4c\xa4\x43\xe1\x72\x7e\x9f\x00\x29\xfc\xe6\xae\xdb\x7b\x19\x31\xce\xf9\xed\x12\xd2\x88\x0d\xff\xf8\xcc\x49\x38\xb5\xa0\xc0\x95\x9d\xa6\xbb\x31\x00\x35\x21\xc3\x4f\x06\xd3\xf3\xcc\x9a\xb3\x05\x27\x42\x40\xb9\x20\xce\xba\xc5\x32\xa8\x26\x36\xed\x71\xd9\xe6\x09\xad\x29\x03\x17\xe6\x71\x92\x1e\x60\x5b\x0a\xc0\xa3\x20\x1f\xdd\x6a\x30\xe6\xfe\x5e\xfe\x70\x4b\x9f\xbf\xbe\xb8\xd2\xa9\x40\x72\x6e\x1b\x4f\x16\xde\xeb\xbb\xd1\xa5\x09\x76\x70\x20\xef\xb7\x9f\xd0\x4e\x7b\x06\xed\xb9\x33\xd0\xd6\x7d\x86\x06\xdd\xce\xbb\x47\x9f\x4b\xce\xe8\x5d\xd2\x1f\xd2\xb3\xe6\xcf\xf1\x36\xfd\x75\xbd\x38\xb9\xb8\x00\x03\x05\xfb\xf3\xc9\xbf\xd7\x14\xa9\x99\xb1\x23\xa2\x54\xc8\x23\xd8\xef\x0a\xa6\x53\xf3\x7a\x5d\x47\xbb\xe8\xec\x9c\x18\xad\x9d\xca\x3b\xa8\xeb\xa1\x7e\x4b\x5b\xa9\x7d\x2c\x51\xe5\xd3\x6c\x5e\xa1\x4b\x27\x2e\x20\xbb\x89\xe0\x87\xd5\x5d\x95\x11\x27\xcc\xd5\x0d\x5f\x51\x76\xa5\x93\xcf\x21\x52\x59\x91\xbd\xd5\x7f\x4b\xbf\x50\xf5\x77\x77\x45\x68\xff\x71\x0e\x5e\x35\x65\x64\xc6\xa0\x5d\x57\x6f\x18\x58\x49\x69\xe5\x2b\xbe\x61\x14\x7c\x4f\x35\xeb\x66\x0d\x48\x4f\xfd\xe2\x58\x2c\x7e\xa1\x5a\x5e\x52\x85\xf2\x53\x18\x48\xd6\x26\x89\x06\xf9\x23\x0c\x94\xd0\xf0\xfa\xaf\x91\xf2\x89\x8c\x94\x7f\x0b\xbb\xe4\xaf\x63\x56\x84\x60\xb3\x31\x42\x8f\x57\x60\x12\x84\x66\x56\x72\x25\x6c\x30\xf1\x68\xfc\x29\x6c\x18\xb3\xbb\x93\xab\x3c\x20\x24\xac\xbe\x4d\x86\x14\x4f\xd7\x65\xf8\x15\x1d\x4b\x12\x12\xa2\x79\x98\x06\xcf\x76\xb3\x9b\x50\xd9\xdc\x29\x50\xac\xa0\x75\x81\xbd\x53\x5a\x98\xcf\xa0\xd8\xd5\x5d\xb5\xb9\xed\xda\xd9\xbe\xfa\xde\x16\x9b\x05\xed\x66\xb7\xa0\x2d\xb6\x0b\xfa\xcf\xb2\x5f\xc8\x16\xe3\xe5\x53\x9a\x07\xbb\xf1\xdf\x7f\x6d\x83\x4f\x66\x1b\xec\xb3\xab\xff\xba\x96\x82\xfd\xdf\x9f\xe0\x68\x0f\xf6\xfe\xc4\xdc\xf0\x84\xa8\xc4\x99\xd1\x73\x75\x61\x72\x31\x81\x87\x4e\xde\x06\xe5\x05\x0b\x49\xb4\x5f\xa2\x47\x6f\xb7\x58\x06\xa0\x65\x9a\xd4\x41\xa3\x58\x1e\x20\x01\x01\x20\x13\xff\x0d\x4b\x95\x53\xa1\x91\xd1\x01\x40\x33\x29\x5d\x38\x9d\xc6\x55\x43\x67\x8c\x49\x21\x39\x5e\xaf\x6d\xa9\x4c\x4d\x11\x13\x52\x33\x6f\x2c\x88\x16\xaf\xc5\x92\xc9\x89\x29\xc6\xac\x7f\xa4\xbf\x12\x11\xbc\xab\xe9\x08\x68\x6a\x1f\xaf\xd3\x02\x44\xe6\x54\x84\xdc\x7d\x35\x85\x09\x54\xb1\x86\x42\x25\x46\xf5\xc6\xd2\x0d\x35\xa4\x01\x5b\x32\xc7\x47\xe1\xc0\x4d\xb4\x7d\x33\xbe\x3e\xb5\x42\x7d\xd7\x0a\x98\x77\x28\x80\x59\x52\x83\xfd\xc6\xd9\x25\x08\xde\x73\x33\x7b\x50\xd8\xf7\x44\xac\xed\x1d\x5c\xfd\xda\x30\x76\x0a\xd2\x59\xe4\xeb\x05\x3e\x70\xb6\x20\x5c\xcd\x8d\xd4\x29\xdb\xce\x57\x34\xc8\x4b\x3f\xdc\xed\xe2\xc2\x7f\x60\x2c\xff\x63\x87\x9d\x3f\x52\xd4\xf9\x2f\x14\x74\xfe\x6b\xc4\x9c\xd3\xe8\x41\x6a\x0e\x05\xa5\x09\x86\x3d\xcd\xc6\x81\xf1\x71\xc3\x3b\xf6\xe3\x4c\x95\x9e\x63\xb0\x7c\xbf\x67\x5b\x60\xc6\xb5\xdb\x49\xa1\x44\x3b\x29\x89\xe8\x0e\xaa\x27\xb2\x81\x1b\xfa\x31\x02\x35\xf6\x53\xaa\xa8\x3c\x7a\x38\x7d\x58\xf0\xb6\xa3\xf2\xd9\x92\x7d\xd5\xd3\x33\x38\x5d\xfc\xff\xcb\x6d\xb7\xdb\x49\x1f\x14\x5a\xb9\x63\x64\xe5\x0f\x09\xac\xfc\xc1\xee\x68\x14\x5f\xd6\x8f\xaf\x61\x53\xa1\x4f\x3c\xb5\xc0\xae\xa0\x91\xd3\xf5\xa0\x4e\xbe\xd6\x1d\x5d\x7f\xc9\x4c\xfd\xa3\x08\x45\x9d\xa7\x68\x14\x34\x57\x9c\xc4\x8b\x3c\x73\x4b\x7f\x0e\x62\xb9\x70\x95\xdc\xdd\xeb\x76\xd7\xdf\x93\x72\x14\x4f\xad\x2e\xeb\xd0\xc6\x80\xb2\x2e\x1f\xa4\xdf\xc3\x91\x0c\xe1\xfa\x06\x5b\x9d\x36\x57\x20\xa1\x8c\x93\x46\xde\xbc\x0c\x64\xcb\x9f\xbd\xeb\x28\xd7\x1a\x7b\xad\xdf\xfd\x0e\x8a\xf4\xaf\x48\xb9\x64\xa5\xd2\x25\xcd\x78\xdf\xa8\xf1\x47\x99\xfb\x0f\x8a\x93\x0d\x1e\x9f\x05\x6d\x09\x9e\x46\xef\x3b\x52\xcb\xa7\x7f\xe0\x1f\x03\x4c\xd0\x11\x5a\x10\x79\x12\x7c\x53\x38\x27\xd0\x27\x72\xac\x7d\xd6\x27\xd6\x2e\xf0\xc6\x6d\x46\x38\xa2\xe9\xbc\x70\xa1\x47\x69\x05\xe6\xa6\xcb\x76\xf9\x08\x60\x70\x25\x3b\xdc\x34\x1b\xb4\x84\x84\x7f\x88\x44\x20\xba\x5a\x91\x9a\x62\x49\x54\x03\x57\x3f\x87\x98\x60\xc3\x22\x7c\x28\x31\x81\x6e\x43\x11\x6f\xd7\x78\x63\xf6\xf0\x53\xc6\x2f\x4c\x71\x1d\xb3\xbf\xde\x06\xe3\xaf\xa3\x79\x55\xa4\x08\x38\x52\xa3\x70\xcf\xe5\xa3\xd2\xed\x0b\xfb\xd1\xc5\x85\x06\x50\x2a\xf6\xfc\xbd\x0f\x99\x90\x5d\xa6\x60\xf3\x7d\x7d\x54\x64\x85\xb4\x9e\xfc\x16\x0c\xb7\xe9\x49\xfd\x88\xa5\x8c\x7f\x76\xf1\xea\xe4\xdb\xcb\xb3\xab\xef\x2f\xca\x4c\x6f\x28\xea\x2d\x18\x9d\x74\x7c\x62\x9f\xf4\x1a\x8d\xd1\xe7\x9f\x23\x60\xd6\xd3\xe7\xcf\xa6\xf5\x75\xf4\xd3\x67\x47\xa8\xa5\xd9\xf5\xae\x6c\x3a\xbd\x32\x7d\xb0\x17\x08\x63\xb3\x29\x56\x2b\x2a\x3f\x8c\x06\x27\xaf\x5e\xbc\x38\xbf\xfa\xcb\xee\xfc\xbd\x98\x8d\xec\xcc\x65\xfb\x71\x7d\x4d\xe6\xb8\x6b\x64\x99\x88\xba\xc4\xcd\xbd\x32\x84\xc4\x35\x74\x82\x9b\x46\x04\xf5\x5a\xde\x3a\x2f\x8b\x18\xb0\x36\x92\x02\xda\x2e\x85\x03\x14\x01\x99\xbc\x77\xdf\x5f\x6c\x1b\xee\xe9\xe5\x1b\xec\x0f\xbb\x88\x4a\x34\xce\xd1\xcc\xee\x78\xc3\x57\xf1\x9f\xcd\x01\x79\x69\x12\xbc\x43\xd6\x2b\xc9\x91\xcc\x03\xfd\x89\x6a\x54\xa1\x8f\x91\xd1\x97\xa8\x66\xf0\x5f\x58\xdf\x51\x32\xed\xc3\x94\x0e\x93\x81\x34\x8d\x5e\x97\xe5\x8e\x7c\xd9\xcf\x67\xc3\x3c\x79\x31\xc8\x93\xb9\xbc\xfb\xc8\x2c\x19\x9c\x05\x09\x3b\x86\x48\x1a\x56\x0c\xbe\xda\xf1\x0a\xf3\x80\xbc\xfe\x10\x32\x9b\x47\xa7\xb7\xd1\xd9\xf0\x39\x3a\x0e\x65\x85\x7e\x41\x32\x4f\x4f\x2c\x88\x03\x23\x09\x3f\x05\xc9\xcd\xd1\x93\xd0\xdc\x3c\x8a\x1b\x52\x5b\x4f\x75\x1f\x72\x6f\x4f\x9d\x79\x19\x64\x9c\x18\x6d\x3f\xa8\x76\xe8\xea\x7e\xb9\xf7\x7a\x51\x9a\x54\x27\x86\x6d\x3f\xb3\x0c\x8c\x43\x9c\x8c\xac\xe0\x19\x80\xc8\xd5\xd1\x4b\xf5\x3e\xb5\xa0\xf7\xb6\xf8\x56\x3d\x62\xa0\x44\xc1\x90\xd2\xd7\x3b\xe0\x4e\x9a\x62\x5e\xc7\xdc\x93\x4e\x33\x9f\x64\xd7\xf0\x4c\x59\x64\x09\xe7\x16\x74\x90\x93\x28\x9c\xe3\x67\xd8\x7e\x2e\x3e\xbd\xd3\x4f\x56\x87\x73\xf0\x10\x9d\xae\x01\x66\x4a\x57\x96\xbc\x76\x51\x35\x81\x1d\x3d\x02\xce\xc0\xd4\x2f\x21\xea\x4d\x1d\xc2\x81\x79\xea\xf8\x2d\xb6\x79\x45\x68\x66\xdf\xbb\xb1\xde\xe4\xb4\x9c\xe7\xa0\xf3\xa1\xf1\x09\x4a\x97\xdd\x6a\x65\x0a\x72\x06\x53\xf1\xfc\x93\x73\x4e\xa0\xc9\x05\x4a\x1c\xd0\x24\xd3\xdf\xfa\x8a\x9c\x06\xaa\x5b\x02\x6a\x9a\xbd\x1e\x14\x23\x3a\x75\x33\x1f\x0f\x81\x88\x9e\x3e\x4a\x20\x84\xfe\x29\x0f\x44\x2b\xd2\x99\xe7\x27\x81\x1d\x2c\xf1\x9d\x2c\xac\x88\x2f\xa4\x7b\xbb\xd0\xbc\x5f\xc1\xe6\xfa\x51\x0b\x6f\x40\x46\xeb\xf7\x85\x48\x5f\xb4\x30\x20\xa1\xa5\x2f\x4c\x61\x9e\xdc\xd6\x62\x46\x6f\x29\xf3\x3c\xdc\x12\xdf\x90\xf6\x0b\x69\xfc\x0c\xb4\x95\xa4\xee\xe1\xca\x0d\x91\x99\x7e\x62\x5a\x5c\xe8\x7d\x76\x54\xba\xf2\x66\x39\xe0\x4a\x0d\xaa\x1b\x8e\x72\x45\x67\x4e\x88\x5e\x5d\x03\xe4\x29\x21\x42\x75\x7d\x4a\xc8\x37\xb8\xc1\x2d\x68\x37\x61\xa7\x1b\xcc\xe1\x65\x7d\x58\x56\x5d\x38\xe5\x58\xd1\xc8\xa1\xf2\x70\xfa\x30\x8d\x22\xf8\x41\xbc\xf2\x6f\xda\xe7\xe7\xd4\x20\xf0\xa7\xf0\xe3\x35\x69\x35\xeb\xe8\x26\xbb\x79\xe3\xf7\x87\x8b\xbe\x44\xa3\x18\xdb\x03\x3f\x95\x6d\x4e\xf4\xef\x18\xd6\x0a\x81\x7e\x9f\x52\x31\xd4\x8c\xb5\x9d\xb0\x4c\x00\x49\x7c\x61\xad\xe4\x70\x55\xa0\xe5\x95\x6e\x98\x58\x65\xdf\xf8\x9f\x4a\xfe\xc5\x6e\xa6\x8b\x28\xe6\x63\x65\x2c\x1e\x3c\xd1\xc2\x89\xfb\x3a\x5d\xbb\x10\x95\x27\x43\x44\xdc\x93\xe2\x03\x3f\x1e\x84\x83\x6e\x8b\x55\x44\x5b\x78\x37\xbf\x6d\x68\x80\xec\x82\xcf\xdf\xb6\x05\xf0\x06\x5f\x0e\xc9\x96\xc8\x3d\x8b\x73\xeb\x1f\xe0\x89\x8c\x28\x57\x09\x13\x8a\xda\xd8\xba\xcf\x5a\xdb\xca\x6a\xff\x22\x2b\x30\x8b\xb1\x2b\x51\x10\x02\xf1\xd4\x73\x91\x60\x7f\xdf\xed\x48\xe9\x29\x7a\x9d\x31\xc3\x3f\xfe\x81\xd6\xb8\xa5\xd5\xc8\x45\x72\x83\xd4\xdc\x7c\xc1\xd0\x8c\x54\x1d\xd6\x69\xc1\x4b\x2c\x9c\xa4\x74\xe4\xd8\x10\x79\x7f\x9c\xa8\xbd\x31\xde\xd9\xe1\x33\x34\xf1\x9e\x33\x27\x85\x39\xa0\x40\x5d\xe0\x8d\xd7\x3a\xed\x7b\xea\x70\x4f\x18\xee\xc2\xbb\xf7\x66\xad\xab\x3c\xae\xd9\xdd\xab\x18\xed\xa8\x02\x9a\x92\xda\xeb\xb0\xc1\x9d\x75\x02\x74\x80\x1e\x15\x6a\x76\x7f\x56\x84\x1e\x3d\xc4\x97\x0b\x01\x50\xda\x9c\x66\x53\x38\xa7\x4c\x66\x58\xa8\x17\x8c\xe2\xb8\x55\x79\xd8\xb0\xcd\xc4\x6b\x61\x7d\xcd\xa3\xc7\x0a\x73\xf6\xec\xdf\x42\x7e\x01\x46\x73\xf3\x7c\x88\x4b\x11\x29\x0f\xe5\x0a\x22\xc7\xda\xce\xa1\xa5\x43\x3e\x7a\x19\x4e\xf2\x30\xa2\xe4\x1d\xe9\x41\xbc\xc4\xb8\x05\x88\xc3\xef\x02\x84\xef\x08\xb2\x1b\x22\x9c\x3c\x32\xa7\x88\x2d\x14\x36\xeb\xaa\x6b\x62\xd3\xc8\x22\x9b\x56\x24\x89\x8d\xa5\xc0\x7b\xf1\x41\xc4\xd8\x2a\x8c\xdf\x03\x47\x67\x6d\x1d\xc4\xcd\x4d\xe0\x66\x03\xd1\x02\x21\x75\x79\x8d\x38\x66\x90\xb9\x87\x69\x7b\x61\xf2\x22\x4b\x59\xda\x3d\xe1\x76\x51\x8a\xb4\xff\x9e\x0e\x62\xfc\xcb\x46\xc9\xec\x07\x1f\x84\xe2\x49\x1a\x85\x0f\x4e\xb5\x7e\x36\x5c\xb1\x1b\x62\x8e\x7d\x1b\x02\x75\x6c\x38\x28\x88\x63\xd8\x05\xdb\xbf\xdf\x01\x18\x2d\xc3\xf7\xfe\x52\x49\x5c\xe9\xbe\x7f\x00\xff\xa0\xcc\x00\x86\xb1\x7d\xf7\x11\x05\xd8\x67\x11\xe0\x42\xd2\xc1\xde\x86\x92\x03\xe8\xab\x1a\xe9\x80\x6e\x92\x4d\x16\xad\xcb\xd6\x7c\xd6\xa0\x12\x51\x8a\xe4\xb4\x27\x17\x41\x44\xfe\x51\x97\x64\x50\xea\xde\x9b\x75\x10\x94\x36\xca\xfa\x15\x53\x1b\xb4\x66\x2c\xf1\x35\xa9\x0f\x7b\x0c\x8e\x2b\xdf\x24\xbd\xd1\x07\xbd\x55\x2f\xad\x5f\x1d\xf6\xaa\xdc\x3b\x48\xfb\x1c\xb0\x3b\x2b\x76\x35\x84\x3c\x8c\x71\x2a\xfc\x5c\x0a\xa8\x48\xbc\x73\x3a\xc7\xb1\x69\xe2\xf7\x38\xcc\x19\xbf\x5e\x73\x76\x93\x84\xb7\x43\x19\x57\xf0\x6a\xfb\xac\xba\x40\x6e\x84\xaf\x4c\xed\x95\x8e\x14\xbe\xe1\xe2\x85\xb1\x77\x3e\x1b\xe7\x22\xa4\x82\xad\x68\x54\x5d\x41\xf8\x07\xe5\x1c\x0c\x88\xb4\x2e\x71\xe2\x85\xab\x29\x27\x95\x74\x81\xd5\xb7\x19\x32\x6f\x87\x85\xfc\x90\x2f\xdc\xdd\xb4\x29\x66\x59\xa6\xa7\x82\x7f\x50\x4a\x3f\x70\xdf\xce\x19\x5f\xb9\xf7\xd8\xec\x2a\xd9\x65\xd1\xab\xe4\xfa\xc3\x9b\x9e\xa6\x24\xcc\x31\xe7\x78\xb3\x53\x39\xba\x7c\x78\xf7\xb6\x3e\x9b\x6b\x1f\x69\xfc\xec\xbe\x56\x6c\x5f\x9f\x44\xe3\xba\x26\xd9\xc4\xf7\x18\x25\x7e\x5a\x5e\x8d\x12\xa6\x94\xe9\x61\x4c\x9b\x1d\x86\x79\x46\x24\xb2\x73\x05\x60\x96\x7c\x31\xd5\x4c\x4b\xfb\xa3\x9f\x2b\x24\x57\xc4\x38\x85\x9d\x24\x0b\xd2\x7e\xfb\xd2\xe0\xd4\xb0\x14\x32\x32\xd3\xd8\xd0\xfb\xcc\x42\xb1\x4b\x57\x56\x28\xb3\x5a\x3f\xb4\x4e\x0c\xe5\x68\xe9\x6d\xad\x40\xfb\xe5\x38\x4b\x82\xb4\xbf\x4c\x39\x6b\xc0\x57\xae\x46\x78\xc3\x1a\x32\x75\x75\x68\xa7\x1c\xdf\xfe\x00\x65\x55\x0b\x69\x1d\xc9\x82\xa7\x03\x4e\x69\xbd\xad\xfa\xcf\x10\x06\x86\xec\xc3\x18\xc4\xbc\xb0\x03\x06\x05\x5c\x1e\x3c\x40\xaf\xf8\x02\xb7\x76\x11\x53\x5e\xa7\xad\x64\xee\x61\xdd\xd8\x47\x59\x78\xb2\x53\x9f\x8d\x90\x69\x58\xa8\xe6\x6b\x79\x36\xa5\x5d\xec\xd7\xd5\x87\xef\xeb\x13\xa4\xf5\x34\x9f\x7c\x08\xc6\x38\x25\x75\x8e\xce\xb0\xc6\xa7\x0e\x5b\xad\xf2\x55\xfd\x19\x70\x25\x1c\x94\x62\x1a\x3e\x5f\x57\xdc\x0a\x65\x75\x10\x46\x55\x0a\x61\x30\xe9\x78\xb9\x12\x15\xa9\x27\x76\x7f\x77\x6d\x06\xea\x67\x44\xfb\x73\x97\x84\xcf\x07\x0f\x42\xad\x3c\xbe\xf2\x36\x23\x68\x4e\xe1\xc0\xa0\x2d\x6a\x70\x98\xbb\x16\x7a\x18\x86\xb3\x40\xab\x1d\xd4\xdb\x72\x86\xe1\xd0\x67\xd7\x84\xd0\x41\x18\x3e\x59\x74\x30\x95\xe1\x4b\x93\xc1\x3f\x7a\x74\x07\x44\x5d\x9e\xe9\x96\x21\xf4\x0a\xef\x50\xbc\xfe\x4e\xf3\x8c\x92\x58\x3f\x02\x26\xbb\x94\xed\x1f\xfa\xec\x70\x9d\x6f\xdb\xe7\xee\x59\xae\x83\x50\xb7\xdc\x0e\xdc\xf6\x71\x59\xb1\x3f\xfe\x94\x04\xaf\xec\x6b\xa9\xcb\xec\xfd\xdd\xa1\xed\xa9\xf6\x99\x0c\x1f\xb0\x4d\x24\x44\x54\xec\x7f\x5c\xdc\x9e\x57\xd1\x65\x2e\x74\x14\xc1\x9b\x66\x6f\x89\xe6\x5d\xfd\x43\xbd\x51\xcf\xde\x57\x59\xf7\xb0\x63\xfb\x5d\x75\x7d\xd9\xc1\xbb\x98\xbf\x3e\xd9\x20\x16\xb9\xc5\xda\xbf\xc5\x01\xa7\x61\x15\xdd\xfd\x37\xc4\x8e\x9d\x8a\x55\x84\x7b\x2b\x08\x7f\x22\x44\x47\x5f\x21\xf4\xb7\xbd\xd0\x1d\xf7\xe2\xfb\xf8\x8f\xc0\xf7\xf1\x87\xe1\x1b\x18\xfd\x60\xc0\x54\xde\x0b\x58\xc2\x77\xf0\x6d\x41\x94\x95\x28\x76\xfa\x68\x7f\x87\xc0\x51\xb0\x85\x44\x43\x30\x9c\xd5\x5f\x86\x31\x78\xab\x01\x7d\xb0\xf8\xdc\xa7\x0c\x8d\xfd\xdc\xb5\xf8\x71\xda\x3f\x2c\x82\xbc\x53\x15\xe4\x14\xc0\xe3\x12\x80\xa1\x72\xc8\xf6\x93\x5e\x93\x2d\x4b\xd8\x6d\xfd\xdd\xb5\xd9\xa2\x94\xed\xf7\x63\x64\x3e\x00\x28\xfc\x12\xdb\x61\xe0\x4e\xb5\x57\x4f\xeb\xc8\xb5\xeb\xbd\x05\x41\x9e\x94\xf6\x16\x78\x9d\x97\x13\xd1\x35\x52\xec\x60\xfd\x17\xf2\xc4\xe8\x1c\x7d\xb6\x2d\xa1\xf7\xb7\xdf\x50\x4f\x3e\xef\x11\xe4\xf3\x16\x1f\xeb\x2e\x99\x31\xa0\x42\x7b\x3b\x24\x1e\x77\x41\xa4\x33\x42\xc6\x3d\xfe\x86\x77\x1d\xe3\xdd\x0a\x55\x84\x4b\x3a\xa7\x15\xa4\xcc\xc0\xbb\xff\xb8\x5a\x5a\xc8\xb1\x29\xbe\xcb\xd5\xcb\xdc\x2a\xa7\x12\x32\x0d\xdd\x45\x7e\x67\x77\x5b\xe4\xc1\xec\xd6\x77\xb5\xe4\x92\x50\x1e\xa2\x84\xb0\x92\x25\x22\x32\xaf\x4d\x47\xa5\x93\x3b\x18\x31\xd5\x00\xdb\x00\xc8\x91\x6d\xe8\xf2\x1e\x5f\xc3\xe4\x4f\x7c\x9b\x42\x1e\x6e\x10\xea\x83\x8a\xbf\x2d\x93\xee\x01\xd2\x1e\x0a\x1a\x4d\x86\x0a\x3b\xe0\xfd\xc4\x0c\xf7\x34\xb4\xc6\x6b\xd0\xbb\xef\x15\x91\x4b\xbf\xd4\xe8\xf5\x89\xab\x92\x9d\x3c\xa5\x9b\xa5\x7c\xb9\x90\x06\x5b\xab\x1d\xa2\x79\x71\x27\x03\x66\xff\x38\xa9\x77\x52\xf7\x88\x74\xc7\x90\xaf\x4f\xc4\xe8\x5d\x15\xdd\xaf\x1a\x67\xb3\x55\x3b\x59\x6f\x45\x74\x4d\x36\x77\x9a\x71\xe8\x94\x31\x47\xb4\x52\x4c\xcd\x56\xc9\xf7\x5f\xec\x66\xef\xda\x5b\x7d\x23\x3c\xbe\x36\x1c\xbf\xe7\xa0\x16\xfb\x9a\x6c\x14\x76\x16\x7a\xcc\x87\x11\x14\xbb\xe0\xd7\x64\xf3\x59\x29\x12\xd3\x4b\xb8\xd3\xe7\xcf\x9e\x71\xd6\xad\x9f\x93\x8d\xea\x2c\x0e\x63\xb8\x7f\xa0\x4a\xa9\x93\x29\x4b\xf1\x03\x23\x0d\x3f\xdc\xd6\xdd\xe7\x06\x9e\xfd\x84\x17\xbc\x13\xd2\xa0\xf8\x2c\xf9\x06\xbc\x16\x50\x2c\xcc\x3e\xcd\x65\x42\xdc\xb9\x03\xce\x3c\xd0\x69\xef\x75\x85\x47\x82\x7f\x94\x18\xae\x02\xa8\x83\xa1\xe4\xe3\x3e\x44\x9f\x17\xfc\x7a\xe9\xbb\x9f\xee\xcd\xd5\x13\xbc\xc6\x33\xda\x50\xd9\xfb\x98\x75\xc5\xd6\x9b\x27\xbe\x59\xf1\x9d\x9e\x10\x05\x20\xfc\xab\x35\xd1\xe7\x72\x12\x2e\x2e\x8b\x37\x89\x2a\x8f\x86\x7e\xdb\x3f\x7e\x10\xfd\x7e\xbc\x5b\x67\xbd\x14\x75\x51\x53\x98\x2f\x9b\xfd\x8b\x54\x32\x9f\xb4\x7e\x34\x3e\x99\xbf\x7b\xa8\xbe\x8f\x7c\x5f\x8f\xb6\xcf\xc5\x60\x16\xe1\x15\xe1\x74\x3f\x7f\x23\xd8\xa2\xb4\x3b\xdf\x78\xa9\xb6\x13\xbf\x78\x56\x49\xdd\x76\x86\x59\xfc\x99\xfa\x89\xf9\xc4\x0c\xfc\xa7\xb2\x88\xd2\xdb\x3e\x90\x3b\x12\x7a\xdd\x95\x31\x2c\x26\x1f\x85\x27\xd4\xe9\xb5\x1f\x33\x78\x3f\xaa\x61\x03\x75\x3e\x7d\x62\x06\xb0\x63\xfe\xa9\x1c\x50\x5f\x7f\xb8\x80\x70\xb4\xba\xeb\xe2\x3b\x24\xf6\x58\xfd\x17\xf8\x9a\x08\xe4\xde\x43\x11\x04\x52\x23\xb5\x5d\xa2\x1f\x37\x17\x68\x44\x5b\xfd\x40\xe6\x18\xcc\x12\x28\x6f\x31\xf5\xd1\xcd\x6e\x76\x00\xed\x05\xaa\x74\x2a\x59\xe9\x05\xce\x79\xd7\x34\x46\xdd\xd1\x60\xa7\x91\x6d\x02\x6f\x84\xdb\x33\xa8\xbf\xaa\xc7\xcf\x36\x77\xe5\x3b\xe2\x8b\x17\xa2\x9f\x9d\xf1\x97\x7c\x0d\xe3\x05\xdf\x8d\xf5\x53\x72\x79\x78\x77\xe4\xc1\x82\x67\xe2\x6f\x01\xc0\xf1\x18\x3d\x71\x90\x52\xf2\xe9\x7b\x47\x50\x3e\x47\xcd\x12\x9e\x9d\x60\xf3\x24\x16\x83\xce\x4f\x41\x9f\xeb\x04\x64\xf3\x73\xd6\xb5\x35\xe2\x6c\x46\x5b\x84\x9b\x05\xe3\x54\x2e\x57\x0e\xa2\x64\x08\x43\x71\x28\x30\x30\xd2\xa0\x8e\x64\x88\xbc\xeb\x70\x83\x04\xfd\x35\x8d\xa7\x64\x57\x23\xb6\x45\x73\x5c\x11\x99\xde\x9a\x35\x01\xa5\xf2\x5b\x2c\xfa\x3d\x4b\x0b\xce\x3c\x85\x3f\x46\x5f\x1f\x0d\x3b\x75\x32\x84\x0e\x5d\x35\x19\xb8\xe9\xdd\x10\x21\xf2\x79\x2b\x3e\xb2\xb3\xbd\x5f\xd0\x3a\x95\xa9\x24\x96\xdd\x7c\xde\x90\x5a\xdf\x60\xd3\x25\x1f\xed\xfa\x8c\xda\x52\xc4\x4a\x5b\x91\xd6\x26\xc1\xbe\x28\x97\x36\xd0\x62\x24\x8a\x26\x6b\x3f\xe9\x22\x15\x3b\xb0\x3b\xcf\xdb\x9a\xfc\x62\x5f\x03\x45\x47\xc1\x83\x2b\x36\x96\xaa\x5f\x3f\x11\xa7\xee\xe5\xf7\x43\xf4\xe3\x7b\xbd\x56\x96\x93\x7f\x4f\xe0\xdf\x2e\x69\x43\xa2\x11\xd0\x93\x3d\x97\x21\x59\xdd\x22\x22\x56\xf7\x7f\xff\xfb\xb8\x64\x0e\xea\x81\x8f\xe2\x3f\xbf\x0c\x7c\x76\x7e\xbd\x92\x1e\x0f\xef\x45\xd6\x88\x8e\x3c\x87\xeb\xf9\xbe\x50\xa5\xff\x23\x84\x9d\xb3\x19\xfe\x18\x22\xf6\xd3\x8f\xb4\x56\x84\xf6\x81\xd9\xf0\x79\x9a\x2c\x95\xf8\xd8\x96\x3c\x60\x3e\x0a\x60\xc0\x4d\x10\xe3\x08\x2a\xc3\x9a\x1f\x75\x65\x2d\x3a\x47\xb7\x44\xb3\xfd\x82\x41\x61\x11\xf3\x73\x83\x95\x20\x69\xc9\x9d\xa8\x8c\xcc\x5d\xdf\xa8\xf9\xbe\xbb\xb2\x14\xb7\x4e\xd7\x2c\xfc\xb1\x2f\x46\x7d\xe2\x3c\x22\xde\xcb\x01\x8e\x55\x77\xbd\x47\x40\x61\x61\xa7\x49\x59\xbd\x22\xb5\x86\x4b\x95\x7d\x2f\x93\x4c\x99\x41\x2c\x3f\xfe\x1e\xb1\x13\x0a\xdf\x37\xcc\x24\xc1\x88\xea\x0d\x1f\x0e\x3c\x09\x99\xef\x70\x17\x4e\xfc\x6c\x7c\xd7\x1d\x97\x9e\x75\xd1\x99\x11\x1c\x65\xc7\xbe\x4a\x1d\x5c\x45\x30\x0e\x22\x6c\xef\xf6\xae\x09\x5f\x75\xd2\xa7\xf4\x70\x6e\xe4\x8f\xea\xdc\x09\x7b\xf5\x78\x4e\xc5\x92\x70\xb4\x01\x3f\x9c\xde\xc1\x60\xa9\x44\x07\x5d\x56\x08\xce\x89\xe9\x9f\xb5\xa7\x2c\x3e\x9c\x7c\x5a\x56\x24\x50\xa9\x52\xa8\x20\x67\x44\x9f\x3d\xf1\x93\x87\x2e\x19\xc0\x5d\xb7\x80\x4d\x45\x1a\x5d\xc9\x1a\x1c\x2c\xb7\x78\x0d\x15\x03\x67\x1b\xf5\x0f\x94\xac\xaa\x59\xfb\x45\xc4\x7b\xb6\x7c\x15\xef\x5a\x17\xe0\x33\x75\xf1\x1a\x5b\x14\x1b\xcb\x2f\x04\xba\x5d\x6e\x10\x8d\x5e\xd0\xd2\x1c\x17\x7f\x97\xdd\x7a\xba\xa0\xd5\xb5\xa7\x32\x30\x8b\x46\xf9\x21\x64\xea\x64\x0e\x41\xdd\xf0\x65\xb7\x42\x47\x88\x93\x1b\xc2\x25\x9d\x35\xe6\x02\xf4\x13\x7d\x3a\xa4\x0a\xa4\xef\x66\xf9\xc5\x03\xf9\x5f\x36\x28\x4e\x15\xdf\x14\xae\xb0\x28\x1a\xa9\xc5\xa6\x3f\x79\xf7\xb2\x23\xa2\x8c\xf0\xce\x06\x95\x64\xb5\xb6\x8b\xf4\x23\x8d\x5f\x10\xb5\x5f\xba\xdf\x03\x0c\x4b\x2d\xc3\x9f\xd1\x11\x80\x4e\x12\x73\xd0\x11\xa2\x51\x88\x28\x67\x7e\x00\x95\x72\xfe\x49\xa2\x6c\x54\xda\xb5\x1b\xd6\x6d\xf4\x97\x73\x28\x37\x19\x2e\xba\x4c\xa4\x37\x8b\x14\x24\xa5\xff\xf3\x5a\xe9\xbd\x0c\xad\x31\x97\xb4\xa2\x6b\x77\x9f\x4d\x8b\x37\xb3\xb1\x14\x50\xc3\x4d\x94\x47\x6e\xea\x74\x6f\x2c\x02\x97\x23\x0c\x0b\x27\x1a\x64\x75\xf2\xb2\x67\xe6\xa5\xfb\x7d\x7c\x88\xfe\x6f\x2c\x94\x34\xe2\xef\x33\x9d\x63\x8f\x83\xd4\x0f\x3f\x8d\xce\x54\xfd\x06\x5c\x92\x7c\xbb\x4f\xb2\x56\xec\x1d\xf3\x4f\xbc\xa9\x2e\x88\x81\x65\xc7\x78\x50\x5c\x20\xd1\xb2\xcd\x1a\x61\xbf\x3e\xda\x16\xf3\xea\x62\x9a\xb9\x13\xb9\x2e\xe2\xeb\xab\xa9\x5b\x23\x65\xa4\x27\x07\x71\x6f\x93\x3b\xe5\x17\x28\xa3\x94\x2b\x03\xf8\x9c\x6c\x7c\x8c\x71\xea\xbf\xcc\xbc\x7c\x27\x49\x5e\xe1\x36\xbe\x54\xf6\xfa\x85\xe5\xba\x56\xee\xce\x9e\xe6\x48\x55\xfd\xb7\xdc\x11\x0e\x98\xf2\xf4\xf9\xb3\x60\xb0\x3b\x30\xa5\xb2\x77\x43\x74\xff\x3d\x98\x32\xcd\xdf\xdb\x9f\x29\xc3\x45\xf3\x4c\x99\x2e\xce\x16\xde\xac\xaf\x4b\x97\xaa\xbd\x7f\x25\xe7\x47\xdb\xc3\x70\x62\xba\x36\x05\x22\xa1\xb4\x1e\x99\x82\x24\xe2\x8c\x33\x7f\x07\xbb\x21\x36\xf7\xd8\x68\x4b\xbe\x4c\x19\x38\x17\xfa\xed\x79\x25\xc1\xa0\x8f\xf3\xe4\x8f\x0f\x91\x49\x83\x29\x67\x5a\x97\x14\xb2\x21\x74\x75\x7b\x1d\xf6\xd3\x57\xc7\x21\xc1\xc5\x56\x73\xab\x70\x3b\x80\xf8\x34\xdc\x70\x15\x59\xeb\x1a\x56\xa6\x40\xae\x79\x25\x73\x46\x60\xc3\x28\xc5\xe7\xad\xc6\xfc\xed\x04\x2d\xd9\xad\x3a\x7f\xa1\x4a\x38\x16\x08\xd7\x35\xa9\x75\x7a\x9d\xda\x51\xb8\xf5\xda\xd1\x7a\xc1\x71\x4d\x0c\x36\xa6\xc6\x99\x80\x9b\x39\xe6\x31\xa8\x19\x41\x62\x4d\x2a\x3a\xa7\xa4\x46\x82\xac\x31\xd7\x05\xb3\x40\x11\x20\xbf\x50\x01\x09\x95\xfa\xad\x6f\x91\xbb\x4e\x0c\x95\x0b\x99\x44\x87\x28\xfb\xb2\x87\xe6\x45\xdf\x5b\xd6\xb9\xe8\x82\xcb\x5a\x99\x28\x54\xb0\x5a\x57\x61\xd8\xeb\x2c\xbc\xb0\x02\xdc\xd5\xdc\xe2\x8d\x28\x96\x86\x5d\x37\x9d\x30\x47\x7a\x91\xb9\xca\xc1\x19\x6b\x27\xf7\xf1\x57\xb9\x66\x25\xc2\xc2\xf4\x0b\xd1\xcf\x2a\xcd\xf5\xdd\x68\xef\xf3\x2e\xf5\x93\x57\xb5\x2f\x52\xf4\xb8\x3c\xc6\x18\xfd\xe3\x1f\x68\x8e\x1b\x53\xc5\x24\xa0\xef\x33\x92\x94\x2a\xec\xb9\xe7\xdc\x90\xb9\x34\xfb\xb8\x26\x42\x72\xb6\x09\xd2\x0b\xbe\x09\x5b\x62\x1e\xdf\x90\xbf\x25\x9c\x20\xdc\x34\xac\xc2\x52\x17\xc1\xc7\xa8\x26\x15\x51\xd6\x5a\x43\x7f\x75\xf7\xeb\x49\x2b\xe9\x8d\x3f\x73\xa0\x2f\x64\x33\xb8\x0a\xde\x3e\x0a\xaa\x08\x0b\x28\x12\x78\x08\xc6\x22\x34\x35\xec\x42\x04\xb8\x36\xed\x1c\x02\x1f\x99\x41\x8b\xb3\x5b\xd5\x5f\xdf\xe0\x74\x4f\xee\x84\x17\xfe\xed\x79\x06\xd5\x03\x68\x3b\x37\x5f\xab\xed\xe5\xc0\x09\xe6\xaf\xb0\x99\xe7\x6e\x9a\xae\x0e\x2a\x59\x07\x00\x5d\x27\xa8\x9a\x6f\x24\x85\x4d\x05\x88\x28\x6d\x33\x6f\xdd\xac\x94\xc9\x11\x90\xc5\x56\xce\x33\x1e\x53\x5d\x8e\x11\xe1\x76\xb3\x62\x9c\xf4\xed\xf0\xe8\xba\xb9\x2d\x21\xba\x0f\xc7\xe9\x1e\x19\xcf\xa9\x23\xd6\xc3\x2e\x5d\xa9\x47\xda\x11\x6d\xcb\x09\x18\xd6\xa3\x2d\x95\xee\x56\x7e\x7c\x0b\x2e\xaf\x96\x9d\x24\xc0\x0e\x37\x49\x0b\xfa\x0f\xb5\xf5\x85\xfb\x8b\xad\x0a\x1e\x47\xed\x7d\x0b\xdb\x0d\x5d\x1a\xb7\x84\x0e\xdb\x6f\x2b\x3d\x7e\xb7\xc2\xe0\x7b\x97\x05\x2f\x16\x05\x1f\x74\xdb\xee\x52\x3d\xbb\x37\x41\xb8\xf4\x32\x42\xba\xae\x85\xc2\xd8\x79\x51\xec\x5d\x6a\x60\xa7\x17\x31\x4b\x5a\x01\x3a\x32\x9a\xc4\x28\xe3\xae\x0f\xc9\xb7\xfe\x18\x0f\x4b\xec\x04\x7e\xbf\x37\x27\x86\x41\x16\xf8\xbc\xf4\xed\x5e\x60\x87\xb7\xc5\xd0\xaf\x79\x36\x0c\x46\xaa\x09\x83\xa3\xcc\xd6\x01\x74\x02\x3a\xd4\xdb\xac\x3e\xa7\xf3\xec\xd4\x17\x8f\x4c\x61\xd9\x35\x3c\xe3\x55\xb1\xa0\x10\x10\x68\xcb\x1a\x58\xae\xea\x1c\xe5\xea\x4f\x6c\x0a\xd4\x2e\x09\x70\x90\x5d\x38\x99\x9f\x0c\x14\xbc\xce\x1a\x5f\xd1\x15\x11\x12\xaf\xd6\x56\x24\x8d\xb2\x62\x90\x53\x69\xdb\x8c\xbf\x4c\x77\x90\x03\x17\xd4\xd1\x49\xa4\xb9\xc0\x37\x64\xd4\x37\xef\x09\x92\x6c\xab\x8e\x36\x90\x38\x73\x32\xf4\xc8\x45\x7f\xb7\xed\x37\x98\xa3\xae\xa0\x7d\x5f\x6a\x1c\x2f\xb0\x5c\xa2\xa3\x02\xca\xc7\xce\xb6\x70\xfd\x96\xb6\x32\xf1\xb6\xbe\xae\x84\x71\xdc\xdf\x1a\x37\xdb\xba\x3b\xcb\x23\xe2\xb5\xe4\xad\xa7\xf7\x7a\x7d\x0f\xe3\xdb\x32\xbf\xa3\x23\xf4\x3e\x95\x5f\xc5\x25\x8c\xc0\xe9\x75\xeb\x43\x32\x5d\xb1\x22\xbc\x27\x07\x26\x07\xd1\x18\x8a\x01\xc8\x94\xde\xe3\x7d\xc0\x39\x5a\x46\x20\x4b\x4b\x31\x2e\xf9\xff\x31\x5a\x73\x7a\xa3\xfe\x17\x84\xdc\x8b\x19\x36\xae\x16\x9c\x7e\x7d\x5c\x69\x99\xf0\x78\x21\x14\xb7\xc6\x32\xba\xf1\xf4\xaa\x45\x2f\x30\x6d\x5b\xa2\xfd\xb9\x57\x44\xc8\x96\xc0\xdb\x26\x24\xc9\x5c\x10\xa6\x40\x41\xf4\xce\x84\x79\x0f\xd0\x4c\x7c\xa2\xb4\xc2\xa5\x0d\x5a\x2f\x09\x27\xe1\x4b\x2e\xe8\x58\x2b\xbc\xb0\xe1\xe0\x65\x04\x8d\xe4\x8c\x19\x9f\x28\x8e\xc7\xf3\x0f\xb6\xb8\x09\x53\x22\x50\x43\x5b\x53\xc4\x01\xc9\x25\x13\x24\xec\x60\xd1\xc2\x2b\x87\x53\x84\x81\x7e\xd2\xac\x15\x9d\xae\x93\x87\xa5\x49\xd1\x64\xad\x36\x0c\x19\x57\x3a\x75\xdd\xc1\x6c\xcd\x7b\x2f\xa6\x9c\xb9\x80\x64\x62\x0c\xae\xe2\xe0\x5e\xde\x46\x48\xb2\x42\xd5\xb2\x6b\xaf\xc3\x81\x40\x21\xc6\x70\x49\xbf\xd9\x98\x38\x72\x6d\xdf\x3b\xd4\x94\xb4\x1e\x28\xdc\x00\x38\xd6\x49\x65\xff\x52\xf3\x95\x2b\x22\xbe\xc2\x2d\x5d\x1b\xd5\x79\x1a\x6d\xa3\xb0\xa8\x5a\x7f\x22\x48\x48\x3b\xc7\x98\x54\x88\x8e\x0c\x25\x55\x15\x7e\x09\xd3\xc9\xf6\xdb\x02\x41\xfe\xc9\xc0\x98\x5f\x8f\xca\x13\x2a\x48\xe2\xc1\xcc\xb6\x3d\xb7\xce\xbb\x2a\x70\xbe\xa0\x28\x75\x74\xfb\x06\x52\xcb\xf0\xae\xfa\xc0\x15\xc8\x12\x97\x0a\x5f\x7e\x20\xc1\xd3\x21\xbe\x1e\x65\x58\x17\xc8\xdc\x97\x18\xb6\x27\x85\x5d\x52\xcd\x9d\x49\x6c\x1d\x73\x77\xa7\x71\x90\x19\x14\xfd\xf9\x81\x74\xf5\x60\xbf\x1e\xe5\x48\x16\x48\xda\x9b\x6a\x15\x0f\x5e\x2e\x7d\xa5\x34\xff\xfe\x42\xc2\x3b\x95\xcf\x8e\x5a\x43\x0c\x6e\x9f\x2b\xab\x3b\xbd\x64\x87\xee\xf6\x48\x49\x56\x57\x7b\xcb\x63\x25\x79\x1d\xee\x3d\x6e\x8e\xa2\x83\xde\xe7\x55\xca\x37\x44\xf7\x1e\x26\xb9\xac\xd5\x3b\xde\x87\x16\xfb\x08\x3f\xff\x0e\xaf\x9d\xf4\x24\x9e\xe7\xac\x66\x9d\xe7\xbf\xdf\xfb\xff\x01\x00\x00\xff\xff\xeb\xa8\xf3\x10\x74\xe9\x00\x00" +var _epochsFlowepochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x7b\x73\x1b\x37\xf2\xe0\xff\xfe\x14\x88\xab\x2e\x21\x37\x12\x6d\xc7\x57\xbf\xda\xd2\x59\xd9\x53\x24\xd9\x51\x39\xb6\x65\x4b\xc9\x5e\x55\x2a\x15\x83\x33\x20\x89\xd5\x70\x40\x03\x18\x31\x8c\x93\xef\x7e\x85\xc6\xfb\x31\x43\x52\xb6\xb3\x9b\xad\xf0\x1f\xcb\x24\xd0\x68\x34\x1a\x8d\x7e\xa1\x41\x97\x2b\xc6\x25\x7a\xda\xb5\x73\x3a\x6d\xc8\x35\xbb\x21\x2d\x9a\x71\xb6\x44\xf7\xa3\xef\xee\xdf\xb3\x2d\x1b\xb6\x8e\x5a\xd9\xff\x47\x2d\x2e\xce\xae\xf1\xb4\x21\x57\x12\xdf\xd0\x76\x1e\x34\x8d\x7f\x88\xfa\x9c\x36\x9d\x90\x84\xbf\x3e\x0d\x9a\xbb\xef\xa2\x96\x67\xcf\x9f\x05\x6d\xce\x9e\x3f\x8b\x7e\x7d\x4a\x88\x08\x7e\x56\xff\xbd\x7f\xef\xde\x83\x07\xe8\x7a\x41\x90\x64\xab\xc3\x86\xdc\x92\x06\x89\x25\xe6\x12\x55\xac\x95\x1c\x57\x12\x2d\x71\x8b\xe7\x0a\x57\xb9\x20\xa8\xa1\x33\x52\x6d\xaa\x86\x20\x36\x43\x64\xc5\xaa\x85\x98\xa0\x8b\x16\xc0\x1f\x28\x50\xfa\x3b\x84\x39\x81\xf6\x62\x89\x9b\x86\x08\x89\xba\x96\x4a\xd5\x47\xd2\x25\x41\xeb\x05\x31\xbf\xd3\x9a\xb4\x92\xca\x0d\x92\x6a\xf2\x68\x04\x7d\x88\x6a\xa9\x80\xb5\x44\xae\x19\xbf\x41\x6c\x45\x38\x96\x8c\x8b\x31\xa2\x02\x09\x89\x25\xad\x26\xe8\x95\xfd\x16\x2d\xf1\x06\xb1\xb6\xd9\xa0\x86\xe0\x5b\x82\x18\x47\xff\x62\xb4\x85\x01\x0c\x08\x05\x0d\x4b\x8d\x1d\x9a\xb2\xae\xad\x31\xa7\x44\xa4\x40\xa6\x04\x91\x7f\x91\x4a\x92\x1a\xd5\x1d\x57\x93\xc6\xad\xe9\x34\x63\x1c\xdd\x62\x4e\x59\x27\x14\xb0\x25\x15\x35\x59\x12\xdc\xb2\x8e\x8b\x03\x34\xed\xa4\x1a\x6e\x83\x38\x59\x62\xda\x22\x33\x7a\x32\xbd\xae\x95\xb4\x81\x1f\x34\x4c\xd2\xd6\x62\x72\xef\xc1\x03\x05\xf0\xdc\x13\x4e\xac\x1a\x2a\x11\x6d\x25\x43\x8f\xd1\x6a\x81\x05\x11\x47\xaa\xc9\x6f\xc7\x77\xfe\x40\x77\x74\x7e\xf9\xea\xf4\x5b\xf4\x12\x6d\xff\xfc\xe6\x1a\x7f\xf9\x08\x4d\x26\x13\xe8\x7f\xa8\x3e\xc8\xb2\x2e\xfc\xef\xb7\x43\x74\x45\x64\xb7\x42\xea\xaf\x53\xb6\x5c\x52\xa9\x88\x77\xf8\xdb\x6f\xae\xd7\x07\x21\xad\x20\x3c\x1a\x23\x74\x75\x7d\xf2\xfc\xe2\xe5\x33\x74\xf9\xed\xc9\xd5\xb9\xfa\xf2\x25\xab\x89\xe7\x0b\x20\x1b\x90\x58\x32\x24\xba\xe9\x92\x4a\xc5\x26\x80\x27\x27\xef\x3a\x22\xa4\x80\x15\x54\xb4\x7f\x79\xfe\xff\xae\xcd\x02\xe8\x45\x56\xf0\xe4\x82\x0a\x4d\xeb\x09\x3a\x91\x7a\x8d\xda\x1a\x38\xd6\xfd\x72\x00\x5f\xc3\x42\xa5\x9b\x84\x13\xc1\x9a\x5b\x22\x54\x0b\x05\x8e\x75\x52\x48\xdc\xd6\x0a\x81\x0c\x11\xdc\xd6\xa8\x26\x92\xf0\x25\x6d\x75\x97\x94\x51\x2c\xaa\x2d\xf9\x45\xba\x5d\x35\x81\x7d\x5a\x1c\x9e\x2c\xa9\x14\x1e\x3b\xbd\x24\x82\xf0\x5b\x5a\x11\x44\x6e\x49\xab\xdb\x62\xda\xba\xe9\x0e\x8e\xa9\x07\x3c\x40\xeb\x05\xad\x16\x88\xb6\x54\x52\x2c\x0d\xaa\x92\xe3\x56\x50\x49\x59\xab\x88\x6d\xe6\xab\xb1\xd2\xe3\x5e\x02\x15\xcd\xe2\x7d\x35\x46\x57\xe7\xd7\xdf\x5f\xfa\x95\xfb\xe7\x82\xb4\x01\x51\xd1\x94\xcc\x69\xab\x41\xaf\x30\x97\xb4\xa2\x2b\xdc\x4a\x81\xdc\x06\xb6\xe8\xe8\xbd\x41\xe4\x04\x9d\xe9\xbd\xa9\x80\x28\x88\x7e\x71\x44\x02\x63\xc5\xc9\x4a\xf5\xca\xe7\x06\x52\x4b\xb7\xed\x1a\xcc\x0f\x50\xc5\x9a\x86\x54\x6a\x5a\x20\x79\x58\x4d\x84\xe5\xa4\x5b\xa6\xe6\x6e\x60\x50\x8e\x2a\x2d\x7b\xbf\x10\x88\x33\x26\xd1\xbb\x8e\xf1\x6e\x89\x2a\xc2\x25\x9d\xd1\x0a\x4b\x02\x2b\x5c\xb1\x56\x90\x56\x68\x71\xa1\xe1\xf1\x4e\xcf\xa9\xa6\x42\x72\x3a\xed\xd4\x56\xb9\x21\x1b\x34\x27\xad\x62\x64\x45\xd2\x15\x67\x92\x55\xac\x41\xa3\xb3\xe7\xcf\xc6\xc0\xce\x44\xa2\x6e\x05\xfd\x38\x6e\x6b\xb6\x54\xf0\xa6\x04\x57\xac\x9d\x58\x62\xc2\xc4\x61\xae\x00\x45\xef\x87\x8a\x2d\x57\x0d\x91\x43\x6c\xeb\xf8\xc6\xad\xa1\xde\xc3\xbd\xbc\x03\xa0\x14\xd5\x66\xb8\x92\x42\x6f\x0f\x2d\xb1\x57\x9c\x55\x44\x08\xc3\x33\x0a\xde\x16\xb6\x31\x18\x99\x01\x23\xa6\x79\x3c\x46\xa7\xaf\x5e\xbc\xb8\xb8\xbe\x3e\x3f\xdb\xc6\x38\x07\xa1\x98\x57\xc7\xc3\xac\x6b\x9a\x8d\x5d\xf9\x1a\x06\xcb\x86\x4e\xf6\xd5\x09\x9a\x61\xda\x74\x1c\xc4\x07\x69\x25\xe1\xf1\x38\x33\xc6\xc3\x09\x00\x1d\x58\xc2\x50\x7a\xc6\x35\xac\xbf\x9a\x31\x96\xbb\xb0\xb4\x1a\x57\x23\x69\x57\xcb\x11\xb4\x5b\x01\x6f\x2b\xb2\xd6\x1d\x27\x6e\x33\x0a\x84\x51\xc5\xa9\xa4\x15\x6e\x1c\xde\x8a\xe1\xd6\xb4\x69\x50\x85\x3b\xa1\x61\x54\x0b\x75\x10\x49\x86\x16\xb8\x91\x93\x7b\xf7\x70\xa5\xd6\x67\x84\x9b\x66\xec\x19\x40\x9d\xdb\x7a\x1d\xde\xdf\xbb\xa7\x04\x7f\xd8\x8a\xb4\xdd\x52\xaf\x12\xac\xce\x11\xfa\xfe\xa2\x95\x7f\x47\xef\xef\xd9\x53\x22\x02\xa9\x48\x65\xc4\xf4\xc9\xf7\xa7\xd7\x17\xaf\x5e\xf6\xb7\x83\xb3\x05\xe4\xc2\x96\x36\x9a\x0d\xa0\xd1\xef\x3d\x08\xaa\x93\xe0\x0d\x6b\x76\x41\xef\xe5\xab\x97\xe7\xfd\xbf\x9e\x6a\x09\xc0\xf8\x50\x13\xbb\xa7\xfb\xd1\xfe\x85\x54\x1d\x88\x91\xde\x26\x3f\x10\xae\x05\xc5\x60\xab\x13\xf8\x22\x9c\xfa\x03\xa3\xaa\x19\x61\x2b\xd5\x56\x8e\x37\x2a\x15\xb0\xa5\x95\x5c\x59\x1b\xc9\xe0\xd7\xda\x33\xb0\x70\xe0\x24\x43\x18\xb5\x64\x6d\xd8\xd1\x30\xa8\x3d\xb1\x70\x57\x69\xa1\xa4\x37\x67\x46\x7e\x18\x53\x9f\x38\x80\xcc\xe8\x9e\x9b\x8e\xc5\xb5\x62\x1d\xec\x27\x2b\x81\xab\x8e\x73\xd5\x4b\x8f\x07\xdb\x84\x0a\xbd\x95\xe1\x6c\xb2\xfd\x4d\x3f\xbd\xa8\xff\xf3\xbf\x0f\x72\xc8\x33\xca\x85\x44\xb7\x94\xac\xd1\x88\xb6\x4a\x26\xd3\x5b\x32\xb6\x22\x29\x1a\x67\xe2\x3a\x43\xa7\x1f\x28\x59\x0f\x00\x6e\xf0\xae\x70\xbf\x10\x29\xa9\xfc\x48\xe6\x87\x13\xfd\xfd\x79\x5b\x7f\xb4\x51\xc3\xd9\xb4\xb8\x19\x82\xcb\x24\x6e\xd0\xd3\xef\x5e\xfd\x13\xd0\x21\x35\x9a\x6e\x10\x6e\x1a\x73\x1c\x69\x3d\xa4\x21\x73\xad\x43\x15\x97\xc8\x0f\x26\x15\xb0\x2b\x00\x73\x84\xbe\x7f\x4a\x7f\xe9\x19\x4e\x74\xab\x55\xb3\x51\x98\xab\x91\x60\xf0\x22\xe4\xa8\xeb\x85\x9a\x72\x6d\x8e\x0a\x4e\xd6\x98\xd7\x46\x88\x82\x54\x9b\x2a\x41\x4a\x6b\x07\x68\xc5\xc9\xad\xd2\xc4\x13\x48\x80\xa2\x12\x69\x57\x80\x43\x1f\x9a\x60\xed\x28\x54\xfb\x07\x62\x9d\x44\x38\x51\x03\x87\x29\xf3\x46\xc3\xf2\x63\xaa\x5f\xc6\xc5\x8d\x5b\xd0\xce\xd2\x8d\xbb\xee\x3f\x30\xa1\xbb\x03\x6b\x54\xd6\x0b\x77\x48\x6b\x12\x02\x67\xd0\x5f\x49\xdd\xa7\xe5\x75\xab\x8a\x2d\x15\xe3\x06\x73\xe9\xdb\xdb\x6a\xc0\x1d\xb6\x76\x02\x12\xbd\xe8\x84\x54\x04\x65\x2d\x41\x73\x4e\xb0\x3e\x56\x31\x88\x98\x08\xd8\xa0\x8c\x98\xec\x28\x12\x2e\x76\x99\x27\x5a\x53\xb9\x70\x3b\x00\xd1\x76\xc6\xf8\x12\xc7\x1b\x37\x64\xc7\xa3\xe8\x5b\xd5\xe7\xe2\xec\xc0\xed\xf9\x1b\xb2\x39\xb0\x9a\x47\xe9\xff\xb8\xae\x39\xa8\x44\x9c\x35\xe4\x20\x02\x65\x41\x04\x18\x1c\xa0\x35\xa1\xf3\x85\x3c\x80\x7d\xb9\x64\x9c\x78\x9c\x60\xe4\x76\xc6\x8e\xd0\x8f\xb9\xaf\x60\xf2\xd2\xfc\xfa\xd3\xde\x52\xb2\xc4\x05\x1f\x45\x4c\xf6\x03\xde\x22\xb1\xd4\xf2\x6b\xf5\x1a\x61\x21\xe8\xbc\x5d\x2a\x4e\xe8\x63\xb1\x73\xac\xac\xe8\x86\x40\x23\x73\x78\x35\x54\xc8\x08\x26\x27\x2b\x4e\x04\x51\x0a\x98\x62\x45\x07\x5e\xeb\xe8\x7a\xcf\x28\x96\x00\xd5\x4c\xb1\xc5\xc5\x99\x30\x83\x1b\xfd\x71\x81\x63\x88\x06\xc4\x81\x66\x27\x6d\x14\xe8\xc5\xd3\x42\x15\x0c\x86\x80\x6f\x8d\x5e\x61\x7c\x36\xc2\xac\xa2\x73\xe1\x4c\xcc\x5f\xa5\xf5\x13\xac\xe3\x15\x78\x5b\xb4\xf2\xdf\x12\x21\xb4\x55\xa0\x70\x53\xd3\x25\xb8\x26\x1c\x09\x62\xac\x17\x84\x9b\x39\xe3\x54\x2e\x96\x80\x5d\x04\x70\x68\xf3\xab\x8f\x1e\xe2\x0a\x86\x3c\x42\x57\x52\x59\x59\x05\x9c\x6a\x82\xeb\x06\x4c\x57\x36\x43\x44\x2d\x81\x56\x94\xcd\x02\x9c\x3d\x7f\xe6\xcd\x18\xc9\x94\x08\xb0\xca\x6d\x6d\xdb\x58\x0c\x22\xd8\x81\xed\x6a\xc4\xda\x99\x1b\x49\xfb\x45\x48\x45\x67\xd4\x40\x21\x7c\x09\x08\x60\x6f\x69\x69\x76\x6c\xbb\xe5\x94\xf0\x78\x43\x83\xed\x80\x35\x6a\x5e\x23\x47\x6c\xaa\xc4\xb0\x02\x1f\x48\x4c\xb5\x82\x82\x60\xa5\x97\x4f\x1b\x56\xdd\xe8\x55\x06\xd0\x46\x8c\x45\xa0\xad\x48\x43\x73\x7a\x4b\x5a\x47\x9c\x03\x44\x25\xaa\x70\x8b\x04\x9e\x91\x66\xd3\x63\x84\x84\xaa\x95\xfa\x9c\x3d\x7f\x06\xba\xf6\xa3\xa7\xf9\x46\x49\xdb\x7c\xb5\x43\x9b\xc7\x85\x36\xf9\x61\x88\xf9\x9c\x48\x54\x77\xc6\x06\x2d\xb3\xc9\x81\xa2\xba\x20\x15\x6b\x6b\xcf\xdb\xba\xeb\x99\xe9\x99\xe3\x91\x0c\xa1\xce\x52\xf0\x00\xf6\x0d\x11\x2d\xb1\x1e\xec\x70\xc5\x49\x45\x85\x42\xec\xfb\x96\xfe\x02\xfd\x93\xf1\xcf\xdb\xfa\x9a\x2e\x89\x1d\xbe\xf7\xe8\x2d\x1a\xb7\xc3\x47\x2f\xb8\x4b\xdd\xe1\xeb\x40\x7a\x57\x97\x3f\x80\x03\x40\xe0\x8c\x04\x68\x4a\xb0\x04\x96\x79\xcf\xc4\x1d\xdc\x05\x56\xca\x30\x69\xfd\x8e\x19\x3a\x99\xcd\x7c\x3e\xe0\x6c\x26\xef\x3a\xdc\x58\x86\xb4\x9d\x68\x7e\x44\x3b\x85\x2b\xd8\xa3\x80\xc8\xae\xc7\xf3\x35\xe8\x75\xa2\x6b\xa4\x3d\x22\x5e\x9f\x22\x3c\x9f\x73\xa5\x7d\x1a\xc7\x87\x9a\x63\x22\xd3\xad\x80\x8e\x60\x85\xc2\x3a\x10\xb8\x88\x93\x8a\xd0\x5b\xa2\xd5\x44\x1c\x78\x77\xac\xc0\x8e\xa0\xbc\x3e\x45\xe0\xa2\xd3\x8a\x6f\xc1\x89\x03\x5a\x21\x88\x37\x7b\x64\x18\x3f\x0d\x11\xc1\xac\xad\x10\xef\x95\xea\xaf\x4f\x4b\x72\x5d\xd3\x42\xad\xc8\xaa\x9b\x36\xb4\x52\xca\x83\xf0\xdc\x66\x64\xa8\xf6\xa8\x90\xb6\x62\xb5\x12\x4c\x42\xe9\xef\xa0\xde\x35\x6c\x7d\x38\x67\xf1\xa1\xc4\x37\x2b\xc9\x50\x43\xa7\x1c\xf3\x0d\xb8\x45\x5a\xb4\x20\xbf\x1c\x9a\xee\xb1\x40\x7c\xc6\x99\x12\xb3\x6e\x6c\xc5\xbd\xd2\xe9\x0b\x86\xfc\x07\x68\xc6\x9a\x86\xad\xb5\xe1\x00\x3e\xc3\xb6\xa6\xb7\xb4\x56\x4c\xa3\x10\x76\x20\xeb\x9b\xf9\x65\x37\x7d\x4e\x36\x8a\x0c\xfa\xe0\xf8\xa9\x5f\x03\x7e\x43\x2a\x76\x0b\x87\xd6\xd0\x46\xc4\x6a\x41\x55\x3b\xdd\x09\x36\x25\xd6\x67\x1c\xb5\xbe\x39\x69\x4f\x68\xe7\x02\xf2\x3e\x31\xe7\x14\x72\x18\xcc\x09\x38\x61\x94\xd1\xdb\xa2\xf3\xa7\x2f\x20\x94\x40\x8c\xcd\xd1\x3f\x54\x27\xf4\x28\xaa\x01\xa7\x35\x29\x18\xb2\x8a\x09\x0d\x88\x68\x68\x75\x74\x28\x5b\xc2\xa1\x20\x56\x5a\x39\x9c\xa0\xeb\x85\x9a\x45\x4a\x01\xb3\xe8\x9a\xe2\xee\x14\x8d\xbc\x48\x92\xa1\x6e\x55\x1b\xc4\x29\x47\x0d\xab\x70\xe3\xdb\xea\x39\x59\xcd\x04\x8c\x7b\x83\x99\x43\xc2\x38\xbf\xb1\xc4\x83\x8a\xbf\x5d\xa6\xd1\x56\xf1\x62\x5a\x6e\xce\xff\x6d\x1a\x3b\xa8\xa0\xe0\x6e\xff\xef\xd3\xd2\x7b\xa8\xfb\xc1\x4a\x7a\x2f\xdc\x0f\xd2\xd1\x63\xa8\x7f\xa0\x8a\x6e\xbb\x65\xc2\xf9\xc4\x21\xa9\xa4\x93\x15\x4f\x7f\x69\xdb\x7f\x69\xdb\x7f\x69\xdb\x1f\xae\x6d\x0f\x48\x87\xd7\xa7\x02\xad\x30\x9c\x66\x86\x13\xfb\x8e\x59\x88\x6d\x0a\x02\x8c\x67\xb5\x2c\xf0\xc2\x1d\xb2\xd9\xe1\x14\xb7\x75\x34\x46\x27\x6c\x28\x4a\xe0\x25\xf1\x31\x12\xa5\x21\xd9\xb8\xbd\x3e\x69\x0b\x8a\xda\x0f\x4c\x92\x33\x2c\x71\xbf\xbe\x66\x5b\x94\x24\x04\xf0\x74\xa0\xb1\xed\x38\xbd\x08\xce\xa9\x56\x1d\x9a\x8d\x8d\x59\xaa\x59\x73\x72\x08\x7a\x86\x53\x01\x41\x74\x8b\x0e\x8e\xe6\x59\xd7\xa8\x91\x27\xe8\x25\xb3\x8a\x29\x04\xa8\xe8\x72\xd5\x50\x1b\x6e\x8a\xc6\x88\xa4\x30\x7a\xf1\xfd\xd5\x35\x5a\xe0\x5b\x12\xed\xdf\xca\x18\x31\xc4\xf9\xe1\xb5\xb3\xb0\xf2\x26\x41\x82\x44\x34\x84\x22\x85\x03\xf1\x49\xb4\xcb\x41\xf5\x32\xf3\xb0\x9e\xda\x93\xc2\xb0\x75\x85\x96\x44\x62\xa5\xe5\x20\x3c\x05\x87\x6e\x68\x12\xc4\x76\xd7\x49\xd3\xa0\x05\x15\x92\x71\x98\xbd\x56\x3d\x5c\x77\x48\x3a\x61\x5c\x59\x7b\x84\x2f\x71\x0b\x8b\x97\x69\x4e\x42\xf2\xae\x32\xaa\xd3\x0b\xdb\xf5\x7d\xce\x42\x9a\xc8\x33\x1a\xe8\x4f\xb1\x1b\x3b\x04\xda\x10\x99\xaa\x51\x85\x63\x4b\x1d\x4f\x9a\x7b\x98\xb3\x52\xec\x16\xd1\x73\x11\xce\x6b\x5c\x1a\x41\x01\xb0\x47\xd0\xa0\x76\x62\xf3\x21\x86\x11\x16\x12\xf3\x48\x33\x19\x52\x4c\x76\x03\x49\xe2\x00\xca\x56\x80\x59\x10\x6b\x08\x59\xd5\xee\x7c\xdb\x00\x85\x90\x81\xda\xb7\x2e\x5c\xb0\x7d\x2d\x6f\x31\x2f\xc6\x0a\x4a\xd6\xa1\x6a\x80\xf0\x52\xad\x7c\x3a\x98\x64\x5a\x0d\x08\x76\x0b\xe8\x44\xea\x24\xa5\x52\x04\x21\x9d\x5e\x2c\x34\xfc\x13\x0d\xbe\xac\xae\x1a\x1c\xbf\xe1\x04\xdf\xd4\x6c\xdd\xfe\x94\x60\xc9\x71\x75\x23\x10\x9d\x39\x8a\x80\x78\x01\xdf\x45\x10\xaa\x19\x5c\x57\x8f\x89\xb8\xc4\xb4\x3e\x42\xdf\x30\xd6\xe4\xc4\x60\x7c\x8e\x5b\xfa\xab\x3e\x2d\xd9\xcc\xfb\x53\xbd\x2a\x08\x36\x9d\x91\xf0\xb1\xaf\xc0\xe5\xd9\xe8\xd8\x17\xe2\xac\x53\xa6\x1a\x9b\xaa\x13\x8f\x71\xd8\x25\x4e\x87\x1b\xd8\x81\xbb\xba\x70\x73\xf4\x5f\x6b\xcf\xc2\xa9\xf7\x2c\x04\x76\xbe\x4f\xed\xb3\x61\xda\x5e\x4a\xed\xe4\x69\xc8\x87\x0f\x0f\x2b\x2c\x04\xab\x28\x1c\xad\xce\x3e\x3c\x0b\x72\x51\x9e\x93\x0d\x7a\xe6\x72\x51\x12\x07\x10\xd8\xa5\x46\xd1\x76\x47\x88\x76\xc1\x38\x25\x4f\x2a\x19\x5e\x38\x09\x82\x23\x00\xf6\xa9\xb5\x07\xd4\xa9\xd3\xd6\xe4\x97\x23\xd4\x90\x76\x2e\x17\xe8\x10\x3d\xea\x25\x40\x7d\x33\x4f\x1c\x0c\xae\x29\x6d\xa9\x1c\x65\xd6\x26\x0a\x3f\xa1\x88\x4b\x7f\x4a\xc5\x55\xf2\x3b\x49\x83\xb7\x69\xef\x82\xfc\x48\x1a\xf5\x87\x08\xdd\x67\x9f\x30\x41\xdc\x71\x37\x17\x54\xd4\x27\xa3\xe5\x38\x3c\xa9\x34\xbd\x9a\xd9\xc4\xda\xf9\xc7\xf6\x0c\xca\x9b\xc0\xd9\x73\x0c\xe4\x2d\xfc\x68\x29\xab\x5a\xd8\xbf\xf3\x66\x86\xc0\xe8\xd8\x92\xba\x08\x29\xa0\xb2\x06\x17\x7c\x91\x77\x08\x29\x8e\x8e\xa3\x05\xc8\x1b\x47\xf2\x10\x1d\xa3\x1f\x7f\xea\x6b\x03\x92\x0a\x1d\xa3\x19\x6e\x04\x29\x11\x2c\x59\x44\x20\x5d\xf2\x5d\xa1\x9b\x5b\x42\xd5\xde\xfd\x27\x6f\x68\xd6\x0d\x1d\xdb\x15\x74\x4d\x7e\xbf\x97\x6d\x9c\x0a\x16\x6d\x8c\x66\x5d\x8b\x2a\xb6\xda\x8c\xc6\x47\x99\x76\x12\x8e\xc0\x89\xec\x78\x0b\x03\xed\x0a\x56\x10\x79\x1d\x50\x76\xf4\x33\x6a\xc9\x3a\xe1\xf3\x71\x32\x4c\x69\x79\x7c\xaf\x3d\x46\x7e\x13\xae\xda\xe8\x67\x73\x96\xb8\x13\x6b\xc7\x73\xad\x88\x5e\xca\x10\x09\xe8\xbd\x91\x04\xb6\x71\x28\x06\xc7\xdd\xc0\xe8\x96\xd5\x82\xff\xed\x31\xae\xdb\xfa\x62\xf4\xae\x1a\x92\x0c\x45\x0c\x22\x86\x7c\x57\xed\xb3\x2a\x67\xcf\x9f\x81\xd0\x7f\x4e\x36\xa3\x9b\x4c\xc6\x0c\x70\xf4\x4d\xcc\xce\x28\x4e\x7c\x72\x3c\x6b\x6d\x15\xc8\x4b\x37\x0e\x04\x65\xf9\x4f\x21\xe5\xad\x9d\x7b\x73\xe2\xa4\x5e\xd2\xf6\xc1\x83\x07\x7d\x9a\xfa\x29\x6b\x67\x74\x1e\x20\x65\xcf\x4c\xed\xd3\x50\xba\x86\x52\x28\x21\x6f\x0f\xb7\x48\x69\xed\x7c\x9b\x7e\xd7\x76\x4b\x25\x8f\xc4\x45\x0b\x3b\x2d\x57\x27\xc3\x0e\x86\x62\x2f\xe3\x3e\xa3\x9f\xf5\xb0\xb6\x6f\x91\x6c\xc9\x38\xe8\x58\xf7\x29\xad\xd3\xc0\xac\x76\xd5\x93\xe3\x99\x5d\x45\xa9\x4d\x7b\x4e\x31\xee\xbc\xe7\x5c\xe3\xce\x77\x9c\x34\x28\xcf\xf5\xcd\x5c\x7b\x83\x76\x98\xaf\x75\xef\xec\x39\x53\xdb\x6d\xcf\x39\xda\x6e\xfb\xcd\xce\x2b\xc5\x56\x0d\x76\x53\xdd\xca\xb0\xa7\xb9\xe6\xa1\x30\x7d\xf4\x3f\xdb\x26\x9a\x75\x54\xf2\xbf\x5b\xa6\x60\xfa\x26\x9c\x75\x57\x07\x81\xef\xde\x3b\x71\x6d\x7a\xe8\x84\x68\x49\x94\x12\xa9\x53\x63\xc3\xdc\xb1\x15\xde\x28\xa3\x8c\xb6\x15\x27\x58\x10\x81\xc8\x2d\xe1\x9b\x42\xe6\x19\x84\x61\x6e\x71\xd3\x11\x10\x2a\x5d\x23\xe9\xaa\xa1\x5e\x88\x40\x02\x9b\x0c\x33\xdb\x24\x43\x73\x22\x03\xa7\x22\x0c\xd5\x4b\x60\x05\x40\xf7\xbc\x30\xc8\x5c\x12\x5e\x91\x56\xe2\x39\xc9\x2d\xc0\x02\xa1\x87\x00\x8c\x7e\x46\xab\x0c\x5a\x91\xde\x43\x50\xd0\x71\x00\xa5\x44\x76\xd0\xaf\x7b\x44\xdb\xc1\x56\xc9\x70\x30\xb0\x97\x0e\x06\x19\xf0\x60\x27\xea\xed\x28\x20\x93\x6f\xf6\x92\x33\x7d\x3f\xed\xb8\x91\xf3\x2f\xf7\xda\x10\xdb\x15\xc8\x2d\xab\x3b\xf4\x73\xff\x91\xab\xcf\xc7\xd0\x4f\x6d\xb2\x76\xe9\x52\x69\x52\xae\xdd\xb9\x93\x32\x90\x9d\x6e\xc3\x32\x38\xf3\x43\x43\x58\x97\xc2\xe9\x0d\xfe\x28\x34\x52\x66\xa8\x39\x87\xd2\xcc\x82\xb1\x1f\x40\x87\x1c\x43\x64\x6a\x32\xd3\x81\x0a\xc4\xc9\x8c\x70\xd2\x56\xd6\xd1\x65\x4d\x16\x6c\x06\x15\x12\x2f\x57\x36\x79\xde\x74\x73\x80\x71\xd3\xa0\x59\x27\x21\xf3\x3f\xc6\x55\x4c\xd0\xc5\x0c\xbd\x35\x1e\x6f\x9d\x6c\x01\x80\xdf\xc2\x1c\xdb\xcc\x97\x2e\x17\xa4\x75\x70\xe1\x56\x45\x32\x79\x2a\x4c\xcc\x62\xba\x39\xb2\x0d\x5d\x87\xc4\xb7\x0e\x5a\xdf\xec\xda\xa2\x8f\xbe\xf4\xe1\x82\xbf\xa1\x51\x8e\xd4\x21\x27\x33\xf3\xe7\x38\x82\xdd\xe7\x9f\xbc\x86\x25\xec\x55\x80\xdc\x68\x36\xe4\xd4\x1f\x93\x48\x5d\x25\x75\x12\x9d\xc8\x83\x03\x66\x81\x8c\x9b\x2e\x59\xbf\x5e\xb8\x7e\x86\xbd\x90\x1d\xa9\xcb\xa0\xf7\x8f\x77\x14\x70\x70\x6b\x52\x76\x14\x9e\xb2\xe5\xaa\x93\x8e\x9b\xc4\x9a\xca\x6a\xa1\xb3\x02\x14\x62\x53\x2c\x20\x3b\x08\xb1\xd9\x4c\x10\xa9\xfd\x40\x1e\x4d\x43\x9a\x07\xbe\xdb\xa4\xf7\x60\x98\x13\x79\x1d\xb2\xcc\x53\xc6\xad\xf6\x98\xf3\x87\x53\x3d\xec\x1f\xfd\x96\xdf\x24\x61\x3c\xad\xa4\x0f\x73\x9f\xed\x17\xb1\x60\xe9\x08\x49\x99\xe3\xa0\xb0\xac\x07\x45\x32\xa7\x32\x3e\xc1\xeb\xd8\xf1\x5d\xa1\x95\x1f\x43\xef\xab\xd3\x82\x2f\xa3\x30\xf7\x78\x0f\xf6\x8b\xc9\x6f\x59\x53\x6b\x75\xe4\xad\xbb\x4e\x33\xd1\x5b\xeb\xad\xdd\x74\xce\xdd\xe6\xc4\xd8\xb4\x21\x2e\xc0\x10\x6e\x55\xeb\x07\xb4\x8e\x47\xdf\xdc\x5a\x40\x47\x46\x30\xef\x60\x1b\x19\x1d\x26\xbe\xf5\xe5\xa5\x9f\xb6\x9c\x5a\x26\xfb\x8c\xa7\x42\x70\x05\x87\x71\x12\x4e\x2a\xc6\x5d\x7a\xbc\x8b\x97\x00\x5b\x9b\xcc\xb7\x20\x4f\xdf\xcb\x5d\x70\xfa\xe9\xb1\xb4\xd4\xd6\x8a\xac\x1f\xee\x0d\x30\xa4\x28\x80\x85\xf9\xb8\x7d\x1c\x47\x71\x18\x47\x2d\x6d\x10\x9d\xe9\x43\xa6\xfd\x42\xa2\x19\xeb\x4c\xf0\xd0\xc5\xbc\x3d\xb9\x7c\x5c\x47\x59\x78\xda\x8e\x85\x6f\xd4\xa9\x29\x74\x04\x6c\xce\xd9\x5a\x89\xf9\x9a\xc2\x81\x8f\xf9\xc6\x41\xab\x19\x11\x48\x51\x0f\x5c\xdf\x3a\xf6\xde\x30\x5c\x2b\xbc\x40\xdb\x84\x3d\x1f\xdd\xc1\xa1\xc2\xb4\xc8\xa4\xb3\xd9\xd3\x91\x7f\x66\xf4\xb3\x9e\x60\xbe\x8b\xa3\x66\xff\x08\xf6\x06\x9d\x01\xdf\x58\x9a\x9d\x39\xac\xc1\x47\xd7\xcc\x26\x66\x9a\x13\x33\xcd\xc9\x94\x71\xce\xd6\x4f\x3e\x7f\xaf\x61\x27\xa0\x7f\xff\x7a\xa4\xa8\x7e\xa4\xfb\x5a\xa8\x57\xba\xef\x25\x96\x8b\x74\x5f\x26\xe3\xbf\x21\x33\x74\x5c\xc0\xe6\xc7\x70\x5e\x3f\xa5\x7b\xdb\x4b\xa4\x00\xce\x44\xbb\xb0\xa2\x96\xbf\xdf\xcb\xff\x32\x3d\x5b\xda\xa4\x1b\xf5\x0a\xeb\xe4\x83\x25\xab\x35\xf7\xc4\xce\x30\xb3\x55\x4d\xe4\xd3\x07\xff\x32\xd6\x28\x6f\x57\xd0\xd6\xf1\x2d\x49\x57\xb0\x25\x6b\xbf\x73\xa3\x1f\x43\xda\xad\x38\x29\xfa\x61\x74\xa8\x38\x94\xb6\xe8\xf8\x18\x3d\x44\xbf\xfd\x16\x35\x1e\x05\xa3\x38\xaf\xed\xd7\xc7\xfd\x40\x0e\xd1\x23\xf4\xf9\xe7\x11\x8c\x12\x88\x27\x06\xc4\x8a\xb3\x15\x13\xa4\x0e\x61\x8c\xc6\xe3\xa3\x6c\xdd\xee\x9f\x6a\x81\x02\x34\xde\xa4\x81\x54\xd8\xc1\xb6\x44\xc0\x4c\x12\x7b\x9b\x47\x03\x37\xad\x19\x77\x57\x2e\xb3\xab\x3e\xf7\x0b\x0b\x7e\x57\x96\xc7\x9d\x5c\x8c\x5e\x74\x12\x4b\x32\x46\x9f\x88\xff\xcb\xcc\x5f\xa0\x74\x69\x0f\x60\x21\x08\xdc\xaa\x4b\x7f\x50\x9f\x65\xba\x54\xc7\xc7\xa5\x15\x3c\xe8\xe9\x2c\x04\x18\x50\x76\xb9\x14\xe3\x7a\xa4\xe1\xb4\x5a\x52\xb1\xc4\xb2\x5a\xf8\x54\x3c\x03\x52\xdc\xcf\x60\xf6\xed\xca\x10\xd1\x6d\xf3\x8f\xd0\x2f\x9f\xb6\xc5\x3d\x67\xd3\x45\xde\x04\xe9\x54\xa3\xb1\x0d\xf5\x24\xca\xad\xce\xb9\xb2\x79\x5e\x4b\x93\x05\x8d\xd1\x82\xfc\xa2\xf6\xbf\xea\xc0\x66\xe8\xf1\x57\xea\x34\x54\x43\x28\x1b\x6c\x44\x27\x04\x3d\xfa\x1f\x34\xdd\x48\x22\x14\x77\x3e\xfa\xea\xef\x68\x4a\xa5\x18\x47\xa0\xdf\x72\x25\xf4\x25\x9d\x36\x06\x95\xb7\x46\x14\x29\x91\x63\xb4\xae\xd1\xdf\x35\x14\xdf\x13\xd4\x4a\x68\xfe\x1d\x5b\x83\xca\x11\x03\x79\xa2\x7b\x7e\x3d\x1a\x4f\x24\xfb\x86\xce\xcf\xdb\x9a\xe2\xf6\x1b\x05\x64\x54\x82\xf2\x2d\x9d\x2f\xee\x0c\x06\x02\xb2\x01\x19\xd1\xb1\xa1\xe2\x44\xe7\x10\x7f\x4b\x7e\x19\xf9\x61\xc6\x93\x8a\xb5\x15\x96\xa3\x9e\x36\xdf\xb1\xf5\xd8\xc3\x2e\x32\x73\x38\xd8\xc4\x84\x00\x8f\x8f\xd1\xe3\xaf\x0e\xee\x95\xd9\xf5\xcd\xfe\xeb\xe7\xb9\x75\x7c\x2f\x3d\x24\xc2\xf1\xd3\xd3\x22\xb0\x55\x0e\xd4\xaa\x5f\x9c\x1d\x14\xef\x01\x66\x27\x39\x04\x6b\x73\x91\x1b\x1b\x0c\x6e\x04\x03\x4a\xe7\xf4\xb9\x6b\xe3\xce\x9a\x36\xe1\xd4\x21\xf8\xc6\x9f\xe2\xff\xf6\x23\x28\x09\x15\x54\x5b\x09\xf4\x53\x50\xef\xde\x42\xdd\x0a\x20\xa5\x53\x85\xb2\xe1\x14\x6f\x61\xd5\x3a\x90\x7a\x6a\x77\xb9\xff\xec\x32\xdc\xb7\x04\x73\x39\x25\x58\xee\x3c\xe4\xc2\xf6\xd8\x7f\xd8\x1e\x51\xfe\x36\xd0\xe1\xb6\x0c\x5e\x10\xf4\x3d\x63\xbf\xb1\xb3\xd1\x81\x71\x70\x0c\x40\x6e\xb6\x60\xde\x10\x75\xea\xdf\x8c\x92\xc6\xd8\xce\xe1\x90\x8e\x24\xb0\x2a\x3d\x37\xd8\x95\xac\xd3\xb0\x61\x5a\xe0\x4f\xd2\xea\x85\xff\x7f\x9f\xb5\x94\x6b\x17\xea\xe3\x97\x27\x63\x27\xb5\x0b\xfd\xff\x26\xf1\xbd\x7e\x7d\x6c\xe8\x4b\x2e\x66\xb6\x7a\x62\x36\xf9\xae\x10\x56\xc8\xcf\x0c\x3f\x3a\x15\x3f\xe0\x86\xd6\x30\x54\xe4\x73\x1a\x05\x18\x16\x0c\xa1\x5e\x87\x5d\xf9\xd0\xdb\x19\x98\xf5\xd1\x95\xc1\x44\x04\x1f\x1f\xa1\xfb\x2f\xc9\xda\x18\x16\xf0\x95\x93\x4a\xe9\x9d\x57\x24\xba\xa5\xe2\x08\x47\x99\xb6\x86\x1c\x3a\x4d\x70\xf0\xf5\xdf\x4f\xce\xd1\x7b\x7b\xe0\x5f\x08\x24\xc5\xa8\x96\xac\xf2\x32\x83\x19\x32\x06\x2c\x16\x7e\xf3\xdf\xc6\x64\xc9\xf4\x3e\x29\xf3\xec\x0c\x06\x1a\x29\xee\xda\x87\xb3\x5a\xb2\xfe\x43\xb8\x2b\x89\xe1\x25\x04\xdc\x83\xd1\x2c\xb1\x02\x4e\xf3\xff\xff\x6f\xe3\xb3\x8f\x2a\xcc\x22\x4a\xfd\x3b\x78\x2d\xe4\x33\xc5\x77\x9f\x8a\xd7\x5c\x14\x35\x9a\xf1\x1e\x3c\x96\xf9\xbb\x35\x9f\xe9\xbf\x8f\x72\x77\xf8\x87\xb0\xdb\xa9\xb7\xbc\xdd\x10\x93\xd0\xc5\x79\xff\x4d\x12\xae\xb0\x64\x36\x16\xaf\x2f\x0d\x94\x12\xb0\x3c\x78\x6a\xda\x36\x0c\xd7\x4f\xb2\x29\x59\x23\xf6\x81\x69\xf6\x60\x66\x01\x44\x13\xdf\x71\x0c\x65\x2b\x8e\xdc\xf4\x0e\x90\x64\xbb\x43\xde\xba\x5a\x7d\x51\x65\xb2\x7e\xb9\x3d\xb0\xfc\x9f\x26\x19\xee\xc2\xf6\xf9\xec\xe3\xb9\xef\x41\xcb\xa7\xdf\xbd\xfa\xe7\x55\x7f\xe0\x58\x6d\xa8\xad\xb1\xd4\xff\x34\x92\x22\x23\xfb\x7c\x74\xf3\xc9\x31\x7a\x34\x79\x68\xf4\x30\x1d\xc8\xf7\x9b\x4a\xae\x09\x69\xd1\xaf\x84\x33\x10\x54\xac\x25\x1f\xb8\x42\x83\xc1\xf8\x08\xb1\xe2\x42\x3d\x78\x80\xce\x5b\xf0\xfd\x33\x8e\x6a\x2a\xe0\x4f\xdc\x49\xb6\xc4\x92\x56\x2e\x7b\xa1\xc2\x4d\xd5\x35\xb6\x96\x5b\x5b\xa3\x15\xde\xc0\xfd\xb5\xad\x8a\x9b\x81\x64\xb2\xce\xf4\x58\xf5\xe8\x67\x44\xf4\x5f\xe5\xa4\xb3\x2d\xf2\x44\x75\x29\x8a\x90\x9e\xe1\xf6\x12\x24\x06\xb1\x82\x18\xd9\x0a\xdd\x0b\xc5\x5e\xb2\x90\x25\x95\xe1\x5d\xd6\xf3\x5b\xd2\xca\x51\xc9\xa9\x1e\x9f\xa1\x5b\x52\x82\x77\xc9\xf9\x1d\xcc\x1a\xde\x9a\x32\xd1\xd3\x3a\x4b\x9f\x88\xdb\xc1\xd5\xd7\xec\x8e\x8c\xfd\x6c\xbb\x0e\x19\xb6\x2d\x5f\x4e\x0c\x5b\x6c\xbb\x8c\x86\xfa\x2f\x8c\x15\x90\xda\xf3\x5e\x56\x08\xa1\xff\x72\x90\xfd\x64\xc1\xc3\x90\x65\x90\x8f\x70\xd9\x08\x40\x7f\x71\x4c\x73\xc1\x2b\x4d\x24\x42\xc6\x07\x07\xe9\xf0\x5b\xae\xff\xe6\xe9\xc5\x33\x73\x95\xe1\xe2\x0c\xd1\xd6\x2e\x62\x01\x65\x80\x3e\xc1\xab\x15\x69\xeb\xd1\xc0\x10\x23\x0d\xe2\xc8\x80\x1a\xa7\xde\xd9\x0c\x6d\x45\xc1\xf8\x1e\x64\x98\xaf\x8d\xbe\xec\x65\xd7\xe8\x27\x97\xef\x12\x26\xf1\xa7\x43\x7c\x75\x87\x21\x46\x5f\xa1\xbf\x15\xc6\x19\x0f\x0e\xf4\xf8\x2e\x03\x3d\x1e\x18\x28\x63\x18\x25\x5b\xe2\x8b\xf2\x90\xb7\x12\x0b\x01\xd5\xc6\x4b\xc0\xb0\x75\xee\xd6\x77\x17\x18\x42\xf9\x94\xeb\xf6\xfe\x9a\x39\x30\x44\xde\x20\xb8\x18\xee\x26\x5e\x6a\xe5\xee\xaa\x1a\x51\x95\xb7\x29\x49\x8c\xfc\xbb\xbc\x5f\x2c\x3d\xc2\xff\xe5\x6d\x4b\x97\x70\x73\x86\xec\xef\xf7\x55\xa1\xdf\x57\x3b\xf4\x7b\x5c\xe8\xf7\x78\xa0\x5f\x2a\xef\xe2\xff\xf7\xb5\x77\xb2\x2f\xfa\x6f\x2f\xa5\x43\x31\x98\x7d\x95\xf7\x0a\x45\x9f\xff\x3b\x11\x7e\x65\x3d\xe4\x01\xba\x24\x7c\xc6\xf8\x52\x20\x81\x5b\x25\xe9\xaa\x05\xa9\x6e\x44\x50\x63\x8f\xdd\xd2\xda\x45\xe5\xa2\xfc\x2b\xa8\x77\x03\x05\xf3\x48\x2b\x3a\xe3\x77\xd5\xb7\x39\x69\x3b\xff\x3f\xd1\x30\x87\xe8\x1a\x5c\xb3\x50\xb8\xf4\x56\xd9\xc6\xc6\xd9\x1d\x43\x4c\xfa\x9c\xb8\x2a\x85\xb6\x68\x2a\x94\x7f\xa8\x05\x14\x0f\xb0\x77\x59\x75\x2d\x06\xf4\x35\x7a\x98\xd4\x6f\x9b\xc5\xc9\x16\xb6\x92\x87\x45\x20\xfe\x01\xca\xd3\xe6\x8a\x67\x7c\xaf\xfa\x5d\x85\x6e\x99\xb4\x16\x6f\x7d\x33\x77\x05\x03\x49\xab\xa8\x54\x13\x25\x96\x21\x00\xd1\x16\x0a\x84\x24\x37\xcf\x53\x3d\x25\xbc\x38\x7c\xc9\xc9\x29\x2c\xc5\xe8\x93\x6b\x21\xc3\xfa\x42\xdb\x2d\x5f\xcd\x4e\x0b\x22\xe0\xa2\x95\xfd\x2d\x43\x16\xbe\x68\xe5\xbe\x06\x45\xbf\xff\x24\x9e\xee\xa1\x23\xce\x97\x8f\x0e\xee\xe0\x9e\xb3\x94\x09\xe1\x14\xe2\xd9\xea\x73\xff\xa2\xd5\x6c\xe3\xa5\x69\x42\x7b\x5d\x0d\xc4\x5e\x63\x8a\xb8\x6b\xd0\xde\x80\x22\x23\xc1\xee\x0b\x8a\x73\x8a\x05\xeb\x9a\x3a\x67\xf4\x3b\x69\x0e\x3a\xf8\x56\x0e\x24\xef\xa1\x48\x4c\x74\x49\xe7\xe6\x9f\x0e\x9b\x03\x54\x84\xe9\x03\x76\x38\xdc\xc7\xf1\x1e\x56\xc8\xc7\xfa\x94\x36\xdc\xb2\x29\x6f\x8f\x37\x27\x44\x8d\x69\xba\x36\x06\xa1\x29\x0f\x65\x76\x32\x41\x3a\x23\x81\xf1\xa8\xc6\xd3\xbd\x5d\xc9\xd6\xb3\x39\x20\x0c\x5f\xdc\x0d\x5b\x49\x15\x24\xf3\x67\xd5\x55\x84\x4f\x36\x82\xa0\x3c\xca\x1b\x87\xd3\x2a\x51\x2c\xfa\x8a\xce\xee\x6c\xc3\x17\xd8\x0b\x92\x6b\x68\x5b\x11\x45\x6b\x5d\xcc\x40\x10\x19\xdf\x40\x3f\x50\xbf\xd5\x0c\xa6\xd0\x42\x39\x15\x56\x84\x03\x7b\x2c\xbc\xb4\x8e\x70\x23\xd8\x04\xfd\x93\x68\xb7\x81\xe9\xab\x93\x3d\x07\xae\xaf\xd8\x8f\x9f\xa6\x4e\xfb\xb0\x4a\x5f\xbd\xa4\xed\x68\x3c\x21\x6d\x9d\x78\xb3\x13\xde\x42\xa4\x11\x25\x89\x65\x2a\xbc\x54\x66\xb2\xae\xa4\x99\x76\xbb\x6f\x45\xc3\xb1\x87\x45\x04\x60\x5d\x49\xb6\xfa\x01\x4e\x99\x04\x8d\x12\x88\xb3\xe7\xcf\xa2\xce\xe7\x6d\x7d\xf6\xfc\xd9\x40\x86\x54\x74\x9e\x9d\xb7\x26\x69\xb1\xb2\xd5\x28\x10\xae\xa4\xda\x1f\xbe\xa2\x15\xac\x85\x30\x15\xa2\x59\x1b\x54\x95\x72\xca\xc1\xc0\x21\x0e\x37\x2b\x96\x44\x62\x64\x92\x4a\xcc\x71\x69\xca\x76\x85\x69\xdf\xc5\x82\x60\xa6\x44\xd6\xac\x6b\xb5\x7e\x5e\xd3\xd9\x8c\x70\x11\xd7\xb9\x30\x19\xb4\xd0\xfd\x34\xe0\x63\x34\x25\xba\x14\x3a\x35\x97\x40\xf4\x2e\xf2\xb1\xf5\x30\x4f\xdc\x54\x4e\xd7\x3e\x17\x77\x87\x64\x82\xf2\xe9\x38\x64\x6c\x59\x30\x93\xc0\x0e\xc5\x46\xa0\x54\x50\xa9\x0a\x18\x20\xa9\xd1\x7a\x8a\x9b\x66\x8a\xab\x1b\xf4\x42\xc9\xc2\xd1\xf9\xd3\x17\xe3\xad\x5a\xc1\x4b\x13\xc6\xfb\xe4\xfa\xc0\xc7\x35\xe9\x77\xf2\x33\xfc\x11\xe6\x7f\xa6\xe6\xf4\x5c\xba\x2c\xa9\x60\xd9\x2e\x0c\xd6\x20\x50\x07\x4a\xcd\xa2\xb5\x48\xf5\x85\xac\x83\x5b\x18\xd2\xdb\xc4\xcd\xc3\xfc\x51\x30\x0d\xfb\x34\xb6\x7c\x49\x4c\xba\xcd\x30\x8c\x41\x73\xa4\x08\x61\x9c\x19\xe4\x49\x42\x91\x97\x62\xe5\xc4\xad\xdc\x3b\x31\x70\x2d\xe7\x8e\x21\xb5\x81\x21\x82\x4b\x3b\x7b\xeb\x94\xb9\x6e\x77\x0a\xc1\x33\x10\x9f\x71\xae\x69\xd9\x9f\x14\x57\xed\x03\x5f\xb6\xc8\x71\x35\xd2\xe0\x85\x4f\x31\x8c\x53\x4e\x33\x2c\x2e\xac\xfc\x2b\x88\x3f\xb8\x92\x63\xb0\x50\xc7\xa8\x2e\xb7\xe7\x9f\x04\x88\x37\xab\x75\x50\x78\xd2\x94\x13\x43\x13\xb9\x04\xa5\x17\xfa\xbd\x00\xc5\x2d\x55\x96\x5a\x45\x4f\xc5\x96\xbd\x96\x2a\x87\xd7\xa1\xad\x6a\xe3\x0f\xf6\x74\x52\x74\x58\x73\x75\x42\xc1\x23\x4e\x6f\xdd\xa9\x70\xd2\xd6\x57\xee\x36\xf7\x5b\x34\x25\x0d\x8b\xab\x0e\xc4\x25\x1e\x1e\x4e\x1e\x26\x82\xae\x50\xde\xa1\x4f\x16\x16\x7e\x73\x05\x1b\xbc\xb8\x1b\xe7\xfc\x76\x05\x89\xe8\x86\x7f\x7c\xee\x2d\x1c\xc0\x50\x22\xcd\x4e\xd3\xdd\x39\x81\xaa\xa2\xe1\x27\x83\xe9\x79\x66\xc5\xd9\x9c\x13\x21\xa0\xe0\x14\x67\xdd\x7c\x11\xd4\xa3\x9b\xf4\x38\xfd\xf3\x94\xe8\x94\x81\x0b\xf3\x38\x4d\xcf\xe2\x2d\x4f\x08\xa0\xe0\x46\x83\x55\xc6\xcc\x0d\xd0\xfc\xe9\x9f\xbe\x88\x4f\x71\xa5\x53\x81\xe4\x1c\x7f\x9e\x2c\xbc\xd7\xfb\xa7\x8b\x5b\xec\x10\x82\xd8\x6f\x3f\xa1\x9d\xf6\x0c\xda\x73\x67\xa0\xad\xfb\x0c\x0d\x06\x2e\x76\xcf\x5f\x28\x85\x33\x76\x49\xa0\xd9\x7e\xfe\xfd\x11\xfe\xca\x3f\xaf\x1f\x30\x17\x17\x60\x6b\x61\x7f\x3e\xf9\x17\xbf\x22\x8d\x39\x76\x65\x95\x4a\xc1\x04\xfb\x5d\xc1\x74\x1a\x6b\xaf\xf3\x71\x17\xf3\x83\x13\x63\x80\x50\x79\x07\xcb\x23\x54\xd5\x69\x2b\xb5\x97\x2e\xaa\x9d\x9b\xcd\x2b\x74\x0a\xc6\x25\x88\x37\x11\xfc\xb0\x3e\xb0\xb2\x47\x85\xb9\xfc\xe3\x6b\x12\x2f\xf5\xf5\x05\x88\x75\x57\x64\x6f\x4b\xc6\xd2\x2f\xb4\x62\x9c\x03\x80\xf6\x1f\xe7\xe0\x97\x55\xf6\x72\x0c\xda\x75\xf5\x36\x8e\x95\x94\x56\xbe\xe2\x5b\x46\xc1\x7b\x59\xb3\x6e\xda\x80\xf4\xd4\x6f\xd6\xc5\xe2\x17\xea\x2d\x26\x75\x4c\x3f\x85\xad\x67\xcd\xab\x68\x90\x3f\xc2\xd6\x0a\x6d\xc8\xbf\xec\xad\xbf\xec\xad\xff\x78\x7b\xcb\xfd\xf5\x27\xb6\x9b\x42\xb0\xd9\x18\xa1\x77\x32\xb0\x79\x42\x3b\x32\xb9\x35\x39\x98\x9b\x37\xfe\x14\x46\x9a\x11\x5f\xc9\x6d\x37\x90\x82\xd6\xa0\x20\x43\x9a\xb5\xeb\x32\xfc\xd0\x94\x25\x09\x09\xd1\x3c\x4a\xe3\xcb\xbb\x19\x86\xa8\x6c\xcf\x15\x28\x56\x50\x2b\xc1\xa0\x2b\x2d\xcc\x67\x50\x0f\xee\xae\xea\xea\x76\xf5\x73\x5f\x85\x76\x8b\x51\x86\x76\x33\xcc\xd0\x16\xe3\x0c\xfd\x77\x19\x68\x64\x8b\x75\xf6\x29\xed\x9f\xdd\xf8\xef\x2f\xe3\xe7\x93\x19\x3f\xfb\xec\xea\x3f\xaf\x29\x64\xff\xfa\x37\x04\x45\x82\xbd\x7f\x60\x2e\x41\x43\x04\xe9\xdc\x28\xf2\xba\x76\xbf\x38\x80\xb7\x80\xde\x06\x15\x38\x0b\x79\xe6\x5f\xa2\x47\x6f\xb7\x98\x3e\xa0\x46\x9b\xec\x5a\xa3\x39\x1f\x22\x01\xc1\x3a\x93\x22\x11\x56\xf3\xa7\x42\x23\xa3\x03\xda\x66\x52\xfa\x6d\x01\x1a\x17\xd6\x9d\x32\x26\x85\xe4\x78\xb5\xb2\xd5\x64\x35\x45\x4c\x88\xd8\x3c\x43\x22\x5a\xbc\x12\x0b\x26\x0f\x4c\xbd\x72\xfd\x23\xfd\x95\x88\xe0\xe9\x59\x47\x40\x53\x1e\x7c\x95\xd6\xe8\x32\xa7\x22\x5c\x6f\x51\x53\x38\x80\x42\xef\x50\xcb\xc7\xd8\x16\x58\xba\xa1\x86\x54\x7c\x4b\xe6\xf8\x28\x1c\xb8\xac\xb9\x6f\x52\xe4\xa7\xb6\x18\xee\x5a\x24\xf6\x0e\x35\x62\x4b\x7a\xbe\xdf\x38\xbb\x24\x75\xf4\x14\x2f\x18\x14\xf6\x3d\x19\x18\xf6\x9a\xba\x7e\x90\x1b\x3b\x05\xe9\x3c\x72\x66\x03\x1f\x24\x81\xf2\x50\x9d\xb2\xed\x7c\xd1\x8f\xbc\x3a\xca\xdd\xee\xf6\xfc\x17\xe6\xa6\x7c\xec\x14\x81\x8f\x94\x21\xf0\x27\x4a\x10\xf8\x73\xe4\x07\xa4\xe1\x91\xd4\x1c\x0a\xaa\x77\x0c\xbb\xd2\x8d\x87\xe6\xe3\xc6\xaf\xec\xc7\x99\x2a\x3d\xc7\x60\xf9\x0a\xdc\xb6\xc8\x93\x6b\xb7\x93\x42\x89\x76\x52\x12\xd1\x1d\x54\x4f\x64\x23\x53\xf4\x63\x44\xa2\xec\xa7\x54\x74\x7c\xf4\x70\xf2\xb0\x10\x4e\x40\xe5\xb3\x25\xfb\xaa\xa7\x67\x70\xba\xf8\xbf\xcb\x6d\xb7\xdb\x49\x1f\x14\x3b\xba\x63\xe8\xe8\x0f\x89\x1c\xfd\xc1\xfe\x76\x14\xd7\xb3\x88\x2b\x15\x50\xa1\x4f\x3c\xb5\xc0\xae\xe6\x97\xd3\xf5\xe0\x29\x09\xad\x3b\xba\xfe\x92\x99\x12\x61\x11\x8a\x3a\x95\xd7\x28\x68\xae\x7e\x8f\x17\x79\xa6\x90\xc5\x0c\xc4\x72\xa1\xda\x82\x2b\x7d\xe0\x2a\x44\x24\x15\x5b\x9e\x5a\x5d\xd6\xa1\x8d\x01\x65\x5d\x61\x4b\x3f\x19\x25\x19\xc2\xf5\x2d\xb6\x3a\x6d\xae\x40\x42\xa5\x33\x8d\xbc\x79\x3c\xcb\x56\x08\x7c\xd7\x51\xae\x35\xf6\x5a\x3f\x8d\x1f\xbc\x63\xb1\x24\xe5\xaa\xae\x4a\x97\x34\xe3\x7d\xa3\xc6\x1f\x65\xfe\x4d\xa8\xdf\x37\x78\x7c\x16\xb4\x25\xf5\x75\xff\xcd\xb9\xe2\x66\x0a\xfc\x63\x80\x09\x3a\x46\x73\x22\x4f\x83\x6f\x0a\xe7\x04\xfa\x44\x8e\xb5\xcf\xfa\xc4\xda\x25\xde\xb8\xcd\x08\x47\x34\x9d\x15\xee\xbc\x29\xad\xc0\x5c\x06\xdb\x2e\x1f\x01\x0c\xae\x64\x87\x9b\x66\x83\x16\x70\x27\x06\x42\x2d\x88\x2e\x97\xa4\xa6\x58\x12\xd5\xc0\x95\x98\x22\x26\x9a\x32\x0f\xdf\x12\x4d\xa0\xdb\x58\xcb\xdb\x15\xde\x98\x3d\xfc\x94\xf1\x4b\x53\x7f\xca\xec\xaf\xb7\xc1\xf8\xab\x68\x5e\x15\x29\x02\x8e\xd4\x28\xdc\x73\x3f\xaf\x74\x41\xc9\x7e\x74\xfd\xad\x01\x94\x8a\x3d\x7f\xef\x43\x26\x64\x97\x09\xd8\x7c\x5f\x1f\x17\x59\x21\x7d\x72\x61\x0b\x86\xdb\xf4\xa4\x7e\xc4\x52\xc6\x3f\xbf\x7c\x75\xfa\xed\xd5\xf9\xf5\xf7\x97\x65\xa6\x37\x14\xf5\x16\x8c\xce\xcb\x3f\xb5\xaf\xde\x8d\xc6\xe8\xf3\xcf\x11\x30\xeb\xd9\xf3\x67\x93\xfa\x26\xfa\xe9\xb3\x63\xd4\xd2\xec\x06\x64\x36\x9d\x5e\x99\x3e\xd8\x0b\x84\xb1\xd9\x14\xcb\x25\x95\x1f\x46\x83\xd3\x57\x2f\x5e\x5c\x5c\xff\x69\x77\xfe\x5e\xcc\x46\x76\xe6\xb2\xfd\xb8\xbe\x26\x33\xdc\x35\xb2\x4c\x44\x5d\x05\xea\x5e\x19\x42\xe2\x1a\x3a\xc5\x4d\x23\x82\x92\x46\x6f\x9d\x97\x45\x0c\x58\x1b\x49\x8d\x79\x97\xa3\x02\x8a\x80\x0b\x89\xa2\xe0\x19\xc6\xde\x13\xa7\xb0\xc1\xfe\xb0\xbb\xda\x44\xe3\x1c\xcd\xec\x8e\x97\xe0\x15\xff\xd9\x24\x97\x97\xe6\xc2\x42\xc8\x7a\x25\x39\x92\x79\xa0\x3f\x51\x19\x37\xf4\x31\x52\x16\x13\xd5\x0c\xfe\x84\xf5\x1d\x25\xd3\x3e\x4a\xe9\x70\x30\x90\x87\xd2\xeb\xb2\xdc\x91\x2f\xfb\xf9\x6c\x98\x27\x2f\x07\x79\x32\x97\x77\x1f\x99\x25\x83\xb3\x20\x61\xc7\x10\x49\xc3\x8a\xc1\x57\x3b\xde\xf2\x1f\x90\xd7\x1f\x42\x66\xf3\x2e\xfb\x36\x3a\x1b\x3e\x47\x27\xa1\xac\xd0\x8f\xac\xe6\xf9\x97\x05\x71\x60\x24\xe1\xa7\x20\xb9\x39\x7a\x12\x9a\x9b\x77\xa3\x43\x6a\xeb\xa9\xee\x43\xee\xed\xb9\x41\x2f\x83\x94\x1a\xa3\xed\x07\x05\x41\x5d\x69\x3c\xf7\xa4\x35\x4a\xb3\x06\xc5\xb0\xed\x67\x96\x81\x71\x88\x93\x91\x25\xbc\x94\x11\xb9\x3a\x7a\xa9\xde\xa7\x16\xf4\x16\x54\xd8\xaa\x47\x0c\x54\xf1\x18\x52\xfa\x7a\x07\xdc\x49\x53\xcc\x4b\xfd\x7b\xd2\x69\xe6\x93\xec\x06\x5e\xf2\x8b\x2c\xe1\xdc\x82\x0e\x92\x2e\x85\x73\xfc\x0c\xdb\xcf\xc5\xd7\xa9\xfa\xc9\xea\x70\x0e\xde\x6a\xd4\x65\xf2\x4c\x75\xd7\x92\xd7\x2e\x2a\xb8\xb1\xa3\x47\xc0\x19\x98\xfa\xb1\x50\xbd\xa9\x43\x38\x30\x4f\x1d\xbf\xc5\x36\x71\x0a\x4d\xed\x93\x50\xd6\x9b\x9c\x56\xbc\x1d\x74\x3e\x34\x3e\x03\xeb\xaa\x5b\x2e\x4d\xcd\xda\x60\x2a\x9e\x7f\x72\xce\x09\x34\xb9\x40\x89\x03\x9a\x64\xfa\x5b\x5f\x1d\xe0\x40\x75\x4b\x40\x4d\xb2\x07\xb6\x62\x44\x27\x6e\xe6\xe3\x21\x10\xd1\xeb\x60\x09\x84\xd0\x3f\xe5\x81\x68\x45\x3a\xf3\xfc\x24\xb0\x83\x25\xbe\x93\x85\x15\xf1\x85\x74\xcf\x7b\x9a\x27\x5e\xd8\x4c\xbf\xfb\xe2\x0d\xc8\x68\xfd\xbe\x10\xe9\xa3\x2f\x06\x24\xb4\xf4\xb5\x5b\xcc\xab\xf4\x5a\xcc\xe8\x2d\x65\x5e\x50\x5c\xe0\x5b\xd2\x7e\x21\x8d\x9f\x81\xb6\x92\xd4\x3d\x5c\xb9\x21\x32\xd3\x4f\x4c\x8b\x4b\xbd\xcf\x8e\x4b\x57\x38\x2d\x07\x5c\xab\x41\x75\xc3\x51\xae\xe8\xcc\x08\xd1\xab\x6b\x80\x3c\x25\x44\xa8\xae\x4f\x09\xf9\x06\x37\xb8\x05\xed\x26\xec\x74\x8b\x39\x9a\x35\x6c\x0d\xcb\xaa\x6b\x0b\x9d\x28\x1a\x39\x54\x1e\x4e\x1e\xa6\x51\x04\x3f\x88\x57\xfe\x4d\xfb\xfc\x9c\x1a\x04\xfe\x14\x7e\xbc\x21\xad\x66\x1d\xdd\x64\x37\x6f\xfc\xfe\x70\xd1\x97\x68\x14\x63\x7b\xe8\xa7\xb2\xcd\x89\xfe\x1d\xc3\x5a\x21\xd0\x4f\xb8\x2a\x86\x9a\xb2\xb6\x13\x96\x09\x20\x4b\x31\x2c\x27\x1e\xae\x0a\xb4\xbc\xd6\x0d\x13\xab\xec\x1b\xff\x53\xc9\xbf\xd8\x4d\x75\x9d\xd1\x7c\xac\x8c\xc5\x83\x57\x8c\x38\x71\x5f\xa7\x6b\x17\xa2\xf2\x64\x88\x88\x7b\x52\x7c\xe0\xc7\xc3\x70\xd0\x6d\xb1\x8a\x68\x0b\xef\xe6\xb7\x0d\x0d\x90\x5d\xf0\xf9\xdb\xb6\x00\xde\xe0\xe3\x3a\xd9\x12\xb9\x97\xa3\xd6\xfe\x8d\xaa\xc8\x88\x72\xc5\x62\xa1\xee\x93\x2d\x8d\xae\xb5\xad\xac\x3c\x36\xb2\x02\xb3\x18\xbb\x12\x05\x21\x10\x4f\x3d\x17\x09\xf6\xf7\xdd\x8e\x94\x9e\xba\xf0\x19\x33\xfc\xe3\x1f\x68\x85\x5b\x5a\x8d\x5c\x24\x37\xc8\x3d\xce\x17\x0c\x4d\x49\xd5\x61\x9d\xf7\xbc\xc0\xc2\x49\x4a\x47\x8e\x0d\x91\xf7\xc7\x89\xda\x1b\xe3\x9d\x1d\x3e\x43\x13\xef\x39\x73\x52\x98\x03\x0a\xd4\x25\xde\x78\xad\xd3\x3c\x21\xa0\xef\xbd\x43\xb9\x08\xf7\x24\xb3\x75\x95\xc7\x65\xed\x7b\x15\xa3\x1d\x55\x40\x53\x75\x7e\x15\x36\xb8\xb3\x4e\x80\x0e\xd1\xa3\x42\x59\xfb\xcf\x8a\xd0\xa3\xb7\x2a\x73\x21\x00\x4a\x9b\xd3\x6c\x0a\xe7\x94\xc9\x0c\x0b\xf5\x82\x51\x1c\xb7\x2a\x0f\x1b\xb6\x39\xf0\x5a\x58\x5f\xf3\xe8\x3d\xcf\x9c\x3d\xfb\xb7\x90\x5f\x80\xd1\xcc\xbc\xb0\xe3\x52\x44\xca\x43\xb9\x9a\xe1\xb1\xb6\x73\x64\xe9\x90\x8f\x5e\x86\x93\xbc\x1d\x2a\x79\x47\x7a\x10\x2f\x31\x6e\x01\xe2\xf0\xd3\x19\xe1\x53\x9b\xec\x96\x08\x27\x8f\xcc\x29\x62\x6b\xe9\x4d\xbb\xea\x86\xd8\x34\xb2\xc8\xa6\x15\x49\x62\x63\x29\xf0\x5e\x7c\x33\x34\xb6\x0a\xe3\x27\xf3\xd1\x79\x5b\x07\x71\x73\x13\xb8\xd9\x40\xb4\x40\x48\x5d\x81\x26\x8e\x19\x64\xee\x61\xda\x5e\x9a\xbc\xc8\x52\x1a\x7a\x4f\xb8\x5d\x94\x22\xed\xbf\xa7\x83\x18\xff\xb2\x51\x32\xfb\xc1\x07\xa1\x78\x92\x46\xe1\x83\x53\xad\x9f\x0d\x97\xec\x96\x98\x63\xdf\x86\x40\x1d\x1b\x0e\x0a\xe2\x18\x76\xc1\xf6\xef\x77\x00\x46\xcb\xf0\xbd\xbf\x35\x13\x3f\x06\xd1\x3f\x80\x7f\x73\x69\x00\xc3\xd8\xbe\xfb\x88\x02\xec\xb3\x08\x70\x21\xe9\x60\x6f\x43\xc9\x01\xf4\x85\xbf\x74\x40\x37\xc9\x26\x8b\xd6\x65\x6b\x3e\x6b\x50\xac\x2b\x45\x72\xd2\x93\x8b\x20\x22\xff\xa8\x4b\x32\x28\x75\xef\xcd\x3a\x08\xaa\x7f\x65\xfd\x8a\xa9\x0d\x5a\x33\x96\xf8\x86\xd4\x47\x3d\x06\xc7\xb5\x6f\x92\x5e\x59\x84\xde\xaa\x97\xd6\xaf\x8e\x7a\x55\xee\x1d\xa4\x7d\x0e\xd8\x9d\x15\xbb\x1a\x42\x1e\xc6\x38\x15\x7e\x2e\x05\x54\x24\xde\x39\x9d\xe3\xd8\x34\xf1\x93\x35\xe6\x8c\x5f\xad\x38\xbb\x4d\xc2\xdb\xa1\x8c\x2b\x78\xb5\x7d\x56\x5d\x20\x37\xc2\x87\xd8\xf6\x4a\x47\x0a\x9f\x39\xf2\xc2\xd8\x3b\x9f\x8d\x73\x11\x52\xc1\x96\x34\xaa\x84\x21\xfc\x9b\x8b\x0e\x06\x44\x5a\x17\x38\xf1\xc2\xd5\x94\x93\x4a\xba\xc0\xea\xdb\x0c\x99\xb7\xc3\x42\x7e\xc8\x17\xee\xae\x12\x15\xb3\x2c\xd3\x53\xc1\xbf\xb9\x06\x35\x85\x2e\xda\x19\xe3\x4b\xf7\x64\xa1\x5d\x25\xbb\x2c\x7a\x95\x5c\x7f\x78\xf6\xd6\x94\x38\x3a\xe1\x1c\x6f\x76\xaa\xd8\x98\x0f\xaf\x87\x3e\x03\x9d\x0e\x7c\xa4\xfe\x11\x5e\xcd\x16\x4a\xb1\x7d\x7d\x1a\x8d\xeb\x9a\x64\x13\xdf\x63\x14\x9b\xb2\xeb\x47\x09\x53\xca\xf4\x30\xa6\xcd\x0e\xc3\x3c\x23\x12\xd9\xb9\x02\x30\x4b\xbe\x98\x6a\xa6\xa5\xfd\xd1\xcf\x15\x92\x2b\x62\x9c\xc2\x4e\x92\x05\x69\xbf\x7d\x69\x70\x6a\x58\x0a\x19\x99\x69\x6c\xe8\x7d\x66\xa1\xd8\xa5\x2b\x2b\x94\x59\xed\x2a\x5a\x27\x86\x72\xb4\xf4\xb6\x9c\xa6\xfd\x32\xaf\x93\x64\x7f\x99\x70\xd6\x80\xaf\x5c\x8d\xf0\x86\x35\x64\xe2\x4a\x35\x4f\x38\x5e\xff\x00\x95\x87\x0b\x69\x1d\xc9\x82\xa7\x03\x4e\x68\x3d\xe8\x4c\xd8\x82\x81\x21\xfb\x30\x06\x31\x2f\xec\x80\x41\x01\x97\x07\x0f\xd0\x2b\x3e\xc7\xad\x5d\xc4\x94\xd7\x69\x2b\x99\x7b\x7b\x3a\xf6\x51\x16\x5e\xb5\xd5\x67\x23\x64\x1a\x16\x0a\x5e\x5b\x9e\x4d\x69\x17\xfb\x75\xf5\xe1\xfb\xfa\x14\x69\x3d\xcd\x27\x1f\x82\x31\x4e\x49\x9d\xa3\x33\xac\xf1\xa9\xc3\x56\xab\x7c\x55\x7f\x06\x5c\x09\x07\xa5\x98\x86\x2f\x3c\x16\xb7\x42\x59\x1d\x84\x51\x95\x42\x18\x4c\x3a\x5e\xae\x44\x45\xea\x89\xdd\xdf\x5d\x9b\x81\x02\x21\xd1\xfe\xdc\x25\xe1\xf3\xc1\x83\x50\x2b\x8f\xaf\xbc\x4d\x09\x9a\x51\x38\x30\x68\x8b\x1a\x1c\xe6\xae\x85\x1e\x86\xe1\x2c\xd0\x6a\x07\xf5\xb6\x9c\x61\x38\xf4\xd9\x35\x21\x74\x10\x86\x4f\x16\x1d\x4c\x65\xf8\xd2\x64\xf0\x8f\x1e\xdd\x01\x51\x97\x67\xba\x65\x08\xbd\xc2\x3b\xbc\xef\x70\xa7\x79\x46\x49\xac\x1f\x01\x93\x5d\x5e\xb6\x18\xfa\xec\x70\x9d\x6f\xdb\xe7\xee\x59\xae\x83\x50\xb7\xdc\x0e\xdc\xf6\x71\x59\xb1\x3f\xfe\x94\x04\xaf\xec\x83\xc2\x8b\xec\x89\xea\xa1\xed\xa9\xf6\x99\x0c\xdf\x78\x4e\x24\x44\xf4\x1e\xc6\xb8\xb8\x3d\xaf\xa3\xcb\x5c\xe8\x38\x82\x37\xc9\x9e\xdb\xcd\xbb\xfa\xb7\xac\xa3\x9e\xbd\x0f\x17\xef\x61\xc7\xf6\xbb\xea\xfa\xb2\x83\x77\x31\x7f\x7d\xb2\x41\x2c\x72\x8b\xe5\xb1\x8b\x03\x4e\xc2\x42\xd3\xfb\x6f\x88\x1d\x3b\x15\x0b\x6d\xf7\x16\xd9\xfe\x44\x88\x8e\xbe\x42\xe8\x6f\x7b\xa1\x3b\xee\xc5\xf7\xf1\x1f\x81\xef\xe3\x0f\xc3\x37\x30\xfa\xc1\x80\xa9\xbc\x17\xb0\x84\xef\xe0\xf3\x9b\x28\xab\xe2\xed\xf4\xd1\xfe\x0e\x81\xa3\x60\x0b\x89\x86\x60\x38\xab\xbf\x0c\x63\xf0\x56\x03\xfa\x60\xf1\xb9\x4f\x9d\x1d\xfb\xb9\x6b\x7d\xf0\xb4\x7f\x58\x27\x7c\xa7\x42\xe1\x29\x80\xc7\x25\x00\x43\x15\xc3\xed\x27\xbd\x26\x5b\x96\xb0\xdb\xfa\xbb\x6b\xb3\x45\x29\xdb\xef\xc7\xc8\x7c\x00\x50\xd9\x26\xb6\xc3\xc0\x9d\x6a\xaf\x9e\xd6\x91\x6b\xd7\x7b\x0b\x82\x3c\x29\xed\x2d\xf0\x3a\x2f\x27\xa2\x6b\xa4\xd8\xc1\xfa\x2f\xe4\x89\xd1\x19\xfa\x6c\x5b\x42\xef\x6f\xbf\xa1\x9e\x7c\xde\x63\xc8\xe7\x2d\xbe\x67\x5f\x32\x63\x40\x85\xf6\x76\x48\x3c\xee\x9c\x48\x67\x84\x8c\x7b\xfc\x0d\xef\x3a\xc6\xbb\x25\xaa\x08\x97\x74\x46\x2b\x48\x99\xe9\x2d\x22\x0c\xa6\xf8\x2e\x57\x2f\x73\xab\x9c\x4a\xc8\x34\x74\x17\xf9\x9d\xdd\x6d\x91\x07\xb3\x5b\xdf\xd5\x92\x0b\x42\x79\x88\x12\xc2\x4a\x96\x88\xc8\xbc\xb6\x75\x82\x69\xeb\x61\xc4\x54\x03\x6c\x03\x20\xc7\xb6\xa1\xcb\x7b\x7c\x0d\x93\x3f\xf5\x6d\x0a\x79\xb8\x41\xa8\x0f\x2a\x58\xb7\x4c\xba\x37\x7a\x7b\x28\x68\x34\x19\x2a\xec\x80\xf7\x13\x33\xdc\xd3\xd0\x1a\xaf\x41\xef\xbe\x87\x76\xae\xfc\x52\xa3\xd7\xa7\xae\x90\x7c\xf2\xda\x74\x96\xf2\xe5\x42\x1a\x6c\xa5\x76\x88\xe6\xc5\x9d\x0c\x98\xfd\xe3\xa4\xde\x49\xdd\x23\xd2\x1d\x43\xbe\x3e\x15\xa3\x77\x55\x74\xbf\x6a\x9c\xcd\x56\xed\x64\xbd\x15\xd1\x0d\xd9\xdc\x69\xc6\xa1\x53\xc6\x1c\xd1\x4a\x31\x35\x5b\x25\xdf\x7f\xb1\x9b\xbd\x6b\xd7\xfa\x46\x78\x7c\x6d\x38\x7e\xf2\x44\x2d\xf6\x0d\xd9\x28\xec\x2c\xf4\x98\x0f\x23\x28\x76\xc1\x6f\xc8\xe6\xb3\x52\x24\xa6\x97\x70\x67\xcf\x9f\x3d\xe3\xac\x5b\x3d\x27\x1b\xd5\x59\x1c\xc5\x70\xff\x40\x95\x52\x27\x53\x96\xe2\x07\x46\x1a\x7e\xb8\xad\xbb\xcf\x0d\x3c\xfb\x09\x2f\x78\x27\xa4\x41\xf1\x59\xf2\x0d\x78\x2d\xa0\x1a\x9a\x7d\xbd\xce\x84\xb8\x73\x07\x9c\x79\xc3\xd6\xde\xeb\x0a\x8f\x04\xff\x6e\x37\x5c\x05\x50\x07\x43\xc9\xc7\x7d\x84\x3e\x2f\xf8\xf5\xd2\xa7\x71\xdd\xb3\xc4\xa7\x78\x85\xa7\xb4\xa1\xb2\xf7\xbd\xf7\x8a\xad\x36\x4f\x7c\xb3\xe2\x53\x56\x21\x0a\x40\xf8\x57\x2b\xa2\xcf\xe5\x24\x5c\x5c\x16\x6f\x12\x55\x1e\x0d\x48\xb8\x31\x48\xd8\x24\x9f\xfb\xf1\x6e\x9d\xf6\x52\xd4\x45\x4d\x61\xbe\x6c\xfa\x2f\x52\xc9\x7c\xd2\x6f\xc8\x0c\x1d\xa7\xf3\xb7\x0f\xdb\xf7\x92\xef\xeb\xd1\xf6\xb9\x18\xcc\x22\xbc\x22\x9c\xee\xe7\xcf\x68\x5b\x94\x76\xe7\x1b\x2f\xd5\x76\xe2\x17\xcf\x2a\xa9\xdb\xce\x30\x8b\x3f\x53\x3f\x31\x9f\x98\x81\xff\xad\x2c\xa2\xf4\xb6\x0f\xe4\x8e\x84\x5e\x77\x65\x0c\x8b\xc9\x47\xe1\x09\x75\x7a\xed\xc7\x0c\xde\x8f\x6a\xd8\x40\x9d\x4f\x9f\x98\x01\xec\x98\xff\x56\x0e\xa8\x6f\x3e\x5c\x40\x38\x5a\xdd\x75\xf1\x1d\x12\x7b\xac\xfe\x0b\x7c\x43\x04\x72\x4f\x06\x09\x02\xa9\x91\xda\x2e\xd1\xe5\xed\x04\x1a\xd1\x56\xbf\x21\x3b\x06\xb3\x04\xca\x5b\x4c\x7c\x74\xb3\x9b\x1e\x42\x7b\x81\x2a\x9d\x4a\x56\x7a\xa4\x76\xd6\x35\x8d\x51\x77\x34\xd8\x49\x64\x9b\xc0\x33\xfa\xf6\x0c\xea\xaf\xea\xf1\xb3\xcd\x5d\xf9\x8e\xf8\xea\x8c\xe8\x67\x67\xfc\x25\x5f\xc3\x78\xc1\x77\x63\xfd\xda\x62\x1e\xde\x1d\x79\xb0\xe0\x99\xf8\x5b\x00\x70\x3c\x46\x4f\x1c\xa4\x94\x7c\xfa\xde\x11\x94\xcf\x51\xb3\x84\x67\x54\xd8\x2c\x89\xc5\xa0\x8b\x33\xd0\xe7\x3a\x01\xd9\xfc\x9c\x75\x6d\x8d\x38\x9b\xd2\x16\xe1\x66\xce\x38\x95\x8b\xa5\x83\x28\x99\x79\x65\x04\x0c\x8c\x34\xa8\x23\x19\x22\xef\x3a\xdc\x20\x41\x7f\x4d\xe3\x29\xd9\xd5\x88\x6d\xd1\x1c\x57\x44\xa6\xb7\x66\x4d\x40\xa9\xfc\x16\x8b\x7e\xf2\xd5\x82\x33\xc5\x10\xc7\xe8\xeb\xe3\x61\xa7\x4e\x86\xd0\x91\xab\x26\x03\x37\xbd\x1b\x22\x44\x3e\x6f\xc5\x47\x76\xb6\xf7\x0b\x5a\xa7\x32\x95\xc4\xa2\x9b\xcd\x1a\x52\xeb\x1b\x6c\xba\xa6\xa5\x5d\x1f\x8b\x66\xc9\x8a\x2c\xbd\xee\x02\x06\x5a\x8c\x44\xd1\x64\xed\x27\x5d\xa4\x62\x07\x76\xe7\x45\x5b\x93\x5f\xec\x83\xb9\xe8\x38\x78\x40\xc8\xc6\x52\xf5\x6b\x3e\xe2\x8c\x02\x4f\x42\xaa\xda\x8f\xef\xf5\x5a\x59\x4e\xfe\x3d\x81\xbf\x5e\xd0\x86\x44\x23\xa0\x27\x7b\x2e\x43\xb2\xba\x45\x44\xac\xee\xff\xfe\xf7\x71\xc9\x1c\xd4\x03\x1f\xc7\xff\xfd\x32\xf0\xd9\xf9\xf5\x4a\x7a\x3c\xbc\x17\x59\x23\x3a\xf2\x1c\xae\xe7\xfb\xc2\x33\x04\x1f\x21\xec\x9c\xcd\xf0\xc7\x10\xb1\x9f\x7e\xa4\xb5\x22\xb4\x0f\xcc\x86\xcf\x2d\x65\xa9\xc4\x27\xb6\xe4\x01\xf3\x51\x00\x03\xee\x00\x31\x8e\xa0\xf4\xad\xf9\x51\x57\xd6\xa2\x33\xb4\x26\x9a\xed\xe7\x0c\x0a\x8b\x98\x9f\x1b\xac\x04\x49\x4b\xee\x44\x65\x64\xee\xfa\x46\xcd\xf7\xdd\x95\xa5\xb8\x75\xba\x66\xe1\x8f\x7d\x31\xea\x53\xe7\x11\xf1\x5e\x0e\x70\xac\xba\xeb\x3d\x02\x2a\x27\x3b\x4d\xca\xea\x15\xa9\x35\x5c\x2a\x5d\x7c\x95\x64\xca\x0c\x62\xf9\xf1\xf7\x88\x9d\x50\xf8\x04\x68\x26\x09\x46\x54\x6f\xf8\x70\xe0\x83\x90\xf9\x8e\x76\xe1\xc4\xcf\xc6\x77\xdd\x71\xe9\x59\x17\x9d\x19\xc1\x51\x76\xe2\xab\xd4\xc1\x55\x04\xe3\x20\xc2\xf6\x6e\xef\x8a\xf0\x65\x27\x7d\x4a\x0f\xe7\x46\xfe\xa8\xce\x9d\xb0\x57\x8f\x67\x54\x2c\x08\x47\x1b\xf0\xc3\xe9\x1d\x0c\x96\x4a\x74\xd0\x65\x85\xe0\x9c\x98\xfe\x59\x7b\xca\xe2\xc3\xc9\xa7\x65\x45\x02\x95\x2a\x85\x0a\x72\x46\xf4\xd9\x13\xbf\x0a\xea\x92\x01\xdc\x75\x0b\xd8\x54\xa4\xd1\xa5\xba\xc1\xc1\xb2\xc6\x2b\xa8\x18\x38\xdd\xa8\x7f\xa0\x64\x55\xcd\xda\x2f\x22\xde\xb3\xe5\xab\x78\xd7\xba\x00\x9f\xa9\x8b\xd7\xd8\xaa\xdf\x58\x7e\x21\xd0\x7a\xb1\x41\x34\x7a\x11\x4e\x73\x5c\xfc\x5d\x76\xeb\xe9\x92\x56\x37\x9e\xca\xc0\x2c\x1a\xe5\x87\x90\xa9\x93\x39\x04\x75\xc3\x97\xdd\x12\x1d\x23\x4e\x6e\x09\x97\x74\xda\x98\x0b\xd0\x4f\xf4\xe9\x90\x2a\x90\xbe\x9b\xe5\x17\x0f\xe4\x7f\xd9\xa0\x38\x55\x7c\x53\xb8\xc2\xa2\x68\xa4\x16\x9b\xfe\xe4\xdd\xcb\x8e\x88\x32\xc2\x3b\x1b\x54\x92\xe5\xca\x2e\xd2\x8f\x34\x7e\x64\xd7\x7e\xe9\x7e\x0f\x30\x2c\xb5\x0c\x7f\x46\xc7\x00\x3a\x49\xcc\x41\xc7\x88\x46\x21\xa2\x9c\xf9\x01\x54\xca\xf9\xa7\x89\xb2\x51\x69\xd7\x6e\x58\xb7\xd1\x5f\xce\xa1\xdc\x64\xb8\xe8\x32\x91\xde\x2c\x52\x90\x94\xfe\xcf\x6b\xa5\xf7\x32\xb4\xc2\x5c\xd2\x8a\xae\xdc\x7d\x36\x2d\xde\xcc\xc6\x52\x40\x0d\x37\x51\x1e\xb9\xa9\xd3\xbd\x31\x0f\x5c\x8e\x30\x2c\x9c\x68\x90\xd5\xc9\xcb\x9e\x99\x97\xee\xf7\xf1\x11\xfa\xbf\xb1\x50\xd2\x88\xbf\xcf\x74\x8e\x3d\x0e\x52\x3f\xfc\x24\x3a\x53\xf5\xe3\x7c\x49\xf2\xed\x3e\xc9\x5a\xb1\x77\xcc\xbf\xc3\xa7\xba\x20\x06\x96\x1d\xe3\x41\x71\x81\x44\xcb\x36\x6b\x84\xfd\xfa\x68\x5b\xcc\xab\x8b\x69\xe6\x4e\xe4\xba\x88\xaf\xaf\xa6\x6e\x8d\x94\x91\x9e\x1c\xc6\xbd\x4d\xee\x94\x5f\xa0\x8c\x52\xae\x0c\xe0\x73\xb2\xf1\x31\xc6\x89\xff\x32\xf3\xf2\x9d\x26\x79\x85\xdb\xf8\x52\xd9\xeb\x97\x96\xeb\x5a\xb9\x3b\x7b\x9a\x23\x55\xf5\xdf\x72\x47\x38\x60\xca\xb3\xe7\xcf\x82\xc1\xee\xc0\x94\xca\xde\x0d\xd1\xfd\xcf\x60\xca\x34\x7f\x6f\x7f\xa6\x0c\x17\xcd\x33\x65\xba\x38\x5b\x78\xb3\xbe\x29\x5d\xaa\xf6\xfe\x95\x9c\x1f\x6d\x0f\xc3\x89\xe9\xda\x14\x88\x84\xd2\x7a\x64\x0a\x92\x88\x33\xce\xfc\x1d\xec\x86\xd8\xdc\x63\xa3\x2d\xf9\x32\x65\xe0\x5c\xe8\xb7\xe7\x95\x04\x83\x3e\xce\x93\x3f\x3e\x42\x26\x0d\xa6\x9c\x69\x5d\x52\xc8\x86\xd0\xd5\xed\x75\xd8\x4f\x5f\x1d\x87\x04\x17\x5b\xcd\xad\xc2\xed\x00\xe2\x93\x70\xc3\x55\x64\xa5\x6b\x58\x99\x02\xb9\xe6\xd5\xd7\x29\x81\x0d\xa3\x14\x9f\xb7\x1a\xf3\xb7\x07\x68\xc1\xd6\xea\xfc\x85\x2a\xe1\x58\x20\x5c\xd7\xa4\xd6\xe9\x75\x6a\x47\xe1\xd6\x6b\x47\xab\x39\xc7\x35\x31\xd8\x98\x1a\x67\x02\x6e\xe6\x98\xd7\xae\xa6\x04\x89\x15\xa9\xe8\x8c\x92\x1a\x09\xb2\xc2\x5c\x17\xcc\x02\x45\x80\xfc\x42\x05\x24\x54\xea\xe7\xf0\x45\xee\x3a\x31\x54\x2e\x64\x12\x1d\xa1\xec\xcb\x1e\x9a\x17\x7d\x6f\x59\xe7\xa2\x0b\x2e\x6b\x65\xa2\x50\xc1\x6a\x5d\x87\x61\xaf\xf3\xf0\xc2\x0a\x70\x57\xb3\xc6\x1b\x51\x2c\x0d\xbb\x6a\x3a\x61\x8e\xf4\x22\x73\x95\x83\x33\xd6\x4e\xee\xe3\xaf\x72\xcd\x4a\x84\x85\xe9\x17\xa2\x9f\x55\x9a\xeb\xbb\xd1\xde\xe7\x5d\xea\x27\xaf\x6a\x5f\xa4\xe8\x49\x79\x8c\x31\xfa\xc7\x3f\xd0\x0c\x37\xa6\x8a\x49\x40\xdf\x67\x24\x29\x55\xd8\x73\xcf\xb9\x21\x33\x69\xf6\x71\x4d\x84\xe4\x6c\x13\xa4\x17\x7c\x13\xb6\xc4\x3c\xbe\x21\xbf\x26\x9c\x20\xdc\x34\xac\xc2\x52\x17\xc1\xc7\xa8\x26\x15\x51\xd6\x5a\x43\x7f\x75\xf7\xeb\x49\x2b\xe9\xad\x3f\x73\xa0\x2f\x64\x33\xb8\x0a\xde\x3e\x0a\xaa\x08\x0b\x28\x12\x78\xe9\xc6\x22\x34\x31\xec\x42\x04\xb8\x36\xed\x1c\x02\x1f\x99\x41\x8b\xb3\xb5\xea\xaf\x6f\x70\xba\x37\x85\xc2\x0b\xff\xf6\x3c\x83\xea\x01\xb4\x9d\x99\xaf\xd5\xf6\x72\xe0\x04\xf3\x57\xd8\xcc\x7b\x3e\x4d\x57\x07\x95\xac\x03\x80\xae\x13\x54\xcd\x37\x92\xc2\xa6\x02\x44\x94\xb6\x99\xb7\x6e\x56\xca\xe4\x08\xc8\x62\x2b\xe7\x19\x8f\xa9\x2e\xc7\x88\x70\xbb\x59\x32\x4e\xfa\x76\x78\x74\xdd\xdc\x96\x10\xdd\x87\xe3\x74\x8f\x8c\xe7\xd4\x11\xeb\x61\x97\xae\xd4\x23\xed\x88\xb6\xe5\x04\x0c\xeb\xd1\x96\x4a\x77\x2b\x3f\xbe\x05\x97\x57\xcb\x4e\x12\x60\x87\x9b\xa4\x05\xfd\x87\xda\xfa\xc2\xfd\xc5\x56\x05\x8f\xa3\xf6\xbe\x85\xed\x86\x2e\x8d\x5b\x42\x87\xed\xb7\x95\x1e\xbf\x5b\x61\xf0\xbd\xcb\x82\x17\x8b\x82\x0f\xba\x6d\x77\xa9\x9e\xdd\x9b\x20\x5c\x7a\x19\x21\x5d\xd7\x42\x61\xec\xbc\x28\xf6\x2e\x35\xb0\xd3\x8b\x98\x25\xad\x00\x1d\x1b\x4d\x62\x94\x71\xd7\x87\xe4\x5b\x7f\x8c\x87\x25\x76\x02\xbf\xdf\x9b\x13\xc3\x20\x0b\x7c\x5e\xfa\x76\x2f\xb0\xc3\xdb\x62\xe8\xd7\x3c\x1b\x06\x23\xd5\x84\xc1\x51\x66\xeb\x00\x3a\x01\x1d\xea\x6d\x56\x9f\xd3\x79\x76\xea\x8b\x47\xa6\xb0\xec\x0a\xde\x29\xab\x58\x50\x08\x08\xb4\x65\x0d\x2c\x57\x75\x8e\x73\xf5\x27\x36\x05\x6a\x97\x04\x38\xc8\x2e\x9c\xcc\x4e\x07\x0a\x5e\x67\x8d\xaf\xe9\x92\x08\x89\x97\x2b\x2b\x92\x46\x59\x31\xc8\x89\xb4\x6d\xc6\x5f\xa6\x3b\xc8\x81\x0b\xea\xe8\x24\xd2\x5c\xe0\x5b\x32\xea\x9b\xf7\x01\x92\x6c\xab\x8e\x36\x90\x38\x73\x3a\xf4\xc8\x45\x7f\xb7\xed\x37\x98\xa3\xae\xa0\x7d\x5f\x69\x1c\x2f\xb1\x5c\xa0\xe3\x02\xca\x27\xce\xb6\x70\xfd\x16\xb6\x32\xf1\xb6\xbe\xae\x84\x71\xdc\xdf\x1a\x37\xdb\xba\x3b\xcb\x23\xe2\xb5\xe4\xad\xa7\xf7\x7a\x7d\x8f\xe2\xdb\x32\xbf\xa3\x63\xf4\x3e\x95\x5f\xc5\x25\x8c\xc0\xe9\x75\xeb\x43\x32\x5d\xb1\x22\xbc\x27\x87\x26\x07\xd1\x18\x8a\x01\xc8\x94\xde\xe3\x7d\xc0\x39\x5a\x46\x20\x4b\x4b\x31\x2e\xf9\xff\x31\x5a\x71\x7a\xab\xfe\x0a\x42\xee\xc5\x0c\x1b\x57\x0b\x4e\xbf\x14\xaf\xb4\x4c\x78\x9d\x11\x8a\x5b\x63\x19\xdd\x78\x7a\xd5\xa2\x17\x98\xb6\x2d\xd1\xfe\xdc\x6b\x22\x64\x4b\xe0\x6d\x13\x92\x64\x2e\x08\x53\xa0\x20\x7a\x67\xc2\x3c\x78\x68\x26\x7e\xa0\xb4\xc2\x85\x0d\x5a\x2f\x08\x27\xe1\x4b\x2e\xe8\x44\x2b\xbc\xb0\xe1\xe0\x65\x04\x8d\xe4\x94\x19\x9f\x28\x8e\xc7\xf3\x0f\xb6\xb8\x09\x53\x22\x50\x43\x5b\x53\xc4\x01\xc9\x05\x13\x24\xec\x60\xd1\xc2\x4b\x87\x53\x84\x81\x7e\xd2\xac\x15\x9d\xae\x93\x87\xa5\x49\xd1\x64\xad\x36\x0c\x19\x57\x3a\x75\xdd\xc1\x6c\xcd\x7b\x2f\xa6\x9c\xb9\x80\x64\x62\x0c\xae\xe2\xe0\x5e\xde\x46\x48\xb2\x44\xd5\xa2\x6b\x6f\xc2\x81\x40\x21\xc6\x70\x49\xbf\xd9\x98\x38\x72\x6d\x1f\x74\xd4\x94\xb4\x1e\x28\xdc\x00\x38\xd6\x49\x65\xff\x52\xf3\x95\x2b\x22\xbe\xc4\x2d\x5d\x19\xd5\x79\x12\x6d\xa3\xb0\xa8\x5a\x7f\x22\x48\x48\x3b\xc7\x98\x54\x88\x8e\x0c\x25\x55\x15\x7e\x09\xd3\xc9\xf6\xdb\x02\x41\xfe\xc9\xc0\x98\x5f\x8f\xca\x13\x2a\x48\xe2\xc1\xcc\xb6\x3d\xb7\xce\xbb\x2a\x70\xbe\xa0\x28\x75\x74\xfb\x06\x52\xcb\xf0\xae\xfa\xc0\x15\xc8\x12\x97\x0a\x5f\x7e\x20\xc1\xd3\x21\xbe\x1e\x65\x58\x17\xc8\xdc\x97\x18\xb6\x27\x85\x5d\x52\xcd\x9d\x49\x6c\x1d\x73\x77\xa7\x71\x90\x19\x14\xfd\xf7\x03\xe9\xea\xc1\x7e\x3d\xca\x91\x2c\x90\xb4\x37\xd5\x2a\x1e\xbc\x5c\xfa\x4a\x69\xfe\xfd\x85\x84\x77\x2a\x9f\x1d\xb5\x86\x18\xdc\x3e\x57\x56\x77\x7a\xc9\x0e\xdd\xed\x91\x92\xac\xae\xf6\x96\xc7\x4a\xf2\x3a\xdc\x7b\xdc\x1c\x45\x87\xbd\xcf\xab\x94\x6f\x88\xee\x3d\x4c\x72\x59\xab\x77\xbc\x0f\x2d\xf6\x11\x7e\xfe\x13\x5e\x3b\xe9\x49\x3c\xcf\x59\xcd\x3a\xcf\x7f\xbf\xf7\xff\x03\x00\x00\xff\xff\xe9\x95\x54\x3c\x97\xec\x00\x00" func epochsFlowepochCdcBytes() ([]byte, error) { return bindataRead( @@ -338,7 +338,7 @@ func epochsFlowepochCdc() (*asset, error) { } info := bindataFileInfo{name: "epochs/FlowEpoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa, 0xe, 0xd1, 0x66, 0x2d, 0xb4, 0x71, 0x3b, 0x4f, 0xf6, 0x25, 0x7b, 0xb5, 0xbc, 0x40, 0x2d, 0x4b, 0x94, 0xcc, 0x15, 0x7b, 0xdd, 0xdd, 0xf8, 0x99, 0x77, 0xe0, 0xc0, 0xe4, 0x95, 0xda, 0xe8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xc5, 0xfa, 0x56, 0xab, 0x17, 0x25, 0x9a, 0xa4, 0x61, 0x87, 0xa5, 0x91, 0xe, 0x76, 0x94, 0x5f, 0x1b, 0x63, 0xa8, 0x39, 0x35, 0x98, 0xef, 0xc7, 0xde, 0x19, 0xd0, 0xae, 0x2e, 0x6c, 0x39}} return a, nil } diff --git a/lib/go/test/epoch_test_helpers.go b/lib/go/test/epoch_test_helpers.go index da0de965b..e6d58a5c7 100644 --- a/lib/go/test/epoch_test_helpers.go +++ b/lib/go/test/epoch_test_helpers.go @@ -8,6 +8,7 @@ import ( "github.com/onflow/cadence" jsoncdc "github.com/onflow/cadence/encoding/json" "github.com/onflow/cadence/runtime/common" + cdcCommon "github.com/onflow/cadence/runtime/common" "github.com/onflow/cadence/runtime/interpreter" "github.com/onflow/flow-core-contracts/lib/go/contracts" "github.com/onflow/flow-core-contracts/lib/go/templates" @@ -856,3 +857,46 @@ func getEpochMetadata(t *testing.T, b emulator.Emulator, env templates.Environme result := executeScriptAndCheck(t, b, templates.GenerateGetEpochMetadataScript(env), [][]byte{jsoncdc.MustEncode(counter)}) return cadence.FieldsMappedByName(result.(cadence.Struct)) } + +// newClusterQCVoteDataCdcType returns the FlowClusterQC cadence struct type. +func newClusterQCVoteDataCdcType(clusterQcAddress string) *cadence.StructType { + + // FlowClusterQC.ClusterQCVoteData + address, _ := cdcCommon.HexToAddress(clusterQcAddress) + location := cdcCommon.NewAddressLocation(nil, address, "FlowClusterQC") + + return &cadence.StructType{ + Location: location, + QualifiedIdentifier: "FlowClusterQC.ClusterQCVoteData", + Fields: []cadence.Field{ + { + Identifier: "aggregatedSignature", + Type: cadence.StringType, + }, + { + Identifier: "voterIDs", + Type: cadence.NewVariableSizedArrayType(cadence.StringType), + }, + }, + } +} + +func convertClusterQcsCdc(env templates.Environment, clusters []cadence.Value) []cadence.Value { + voteDataType := newClusterQCVoteDataCdcType(env.QuorumCertificateAddress) + qcVoteData := make([]cadence.Value, len(clusters)) + for i, cluster := range clusters { + clusterCdc := cluster.(cadence.Array) + cdcVoterIds := make([]cadence.Value, len(clusterCdc.Values)) + for i, id := range clusterCdc.Values { + cdcVoterIds[i] = cadence.String(id.String()) + } + qcVoteData[i] = cadence.NewStruct([]cadence.Value{ + // aggregatedSignature + cadence.String(fmt.Sprintf("signature_%d", i)), + // Node IDs of signers + cadence.NewArray(cdcVoterIds).WithType(cadence.NewVariableSizedArrayType(cadence.StringType)), + }).WithType(voteDataType) + } + + return qcVoteData +} diff --git a/lib/go/test/flow_epoch_test.go b/lib/go/test/flow_epoch_test.go index 67f25f0cc..89a0ca5cb 100644 --- a/lib/go/test/flow_epoch_test.go +++ b/lib/go/test/flow_epoch_test.go @@ -1604,14 +1604,15 @@ func TestEpochRecover(t *testing.T) { nodeIDs[i], _ = cadence.NewString(id) } + clusterQcVoteData := convertClusterQcsCdc(env, collectorClusters) args := []cadence.Value{ cadence.NewUInt64(startView), cadence.NewUInt64(stakingEndView), cadence.NewUInt64(endView), cadence.NewUInt64(targetDuration), cadence.NewUInt64(targetEndTime), - cadence.NewArray(collectorClusters), // collectorClusters - cadence.NewArray(make([]cadence.Value, 0)), // clusterQCVoteData + cadence.NewArray(collectorClusters), // collectorClusters + cadence.NewArray(clusterQcVoteData), // clusterQCVoteData cadence.NewArray(dkgPubKeysCdc), cadence.NewArray(nodeIDs), cadence.NewBool(true), // recover EFM with a new epoch @@ -1649,12 +1650,6 @@ func TestEpochRecover(t *testing.T) { } verifyEpochMetadata(t, b, env, expectedMetadata) - result := executeScriptAndCheck(t, b, templates.GenerateGetDKGEnabledScript(env), nil) - assert.Equal(t, cadence.NewBool(false), result) - - result = executeScriptAndCheck(t, b, templates.GenerateGetQCEnabledScript(env), nil) - assert.Equal(t, cadence.NewBool(false), result) - expectedRecoverEvent := EpochRecover{ counter: startEpochCounter + 1, nodeInfoLength: len(nodeIDs), @@ -1667,7 +1662,7 @@ func TestEpochRecover(t *testing.T) { dkgPhase3FinalView: startView + numStakingViews + (3 * numDKGViews) - 1, targetDuration: targetDuration, targetEndTime: targetEndTime, - clusterQCVoteDataLength: 0, + clusterQCVoteDataLength: len(clusterQcVoteData), dkgPubKeys: dkgPubKeys, } verifyEpochRecover(t, adapter, idTableAddress, expectedRecoverEvent) From 614f489fb0448a5278b4eec15cee7742701370ae Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Sun, 28 Jul 2024 23:00:45 -0400 Subject: [PATCH 152/160] ensure curEpochCounter = startEpochCounter+1 --- lib/go/test/epoch_test_helpers.go | 5 +++++ lib/go/test/flow_epoch_test.go | 2 ++ 2 files changed, 7 insertions(+) diff --git a/lib/go/test/epoch_test_helpers.go b/lib/go/test/epoch_test_helpers.go index e6d58a5c7..25c844703 100644 --- a/lib/go/test/epoch_test_helpers.go +++ b/lib/go/test/epoch_test_helpers.go @@ -858,6 +858,11 @@ func getEpochMetadata(t *testing.T, b emulator.Emulator, env templates.Environme return cadence.FieldsMappedByName(result.(cadence.Struct)) } +func getCurrentEpochCounter(t *testing.T, b emulator.Emulator, env templates.Environment) cadence.UInt64 { + result := executeScriptAndCheck(t, b, templates.GenerateGetCurrentEpochCounterScript(env), [][]byte{}) + return result.(cadence.UInt64) +} + // newClusterQCVoteDataCdcType returns the FlowClusterQC cadence struct type. func newClusterQCVoteDataCdcType(clusterQcAddress string) *cadence.StructType { diff --git a/lib/go/test/flow_epoch_test.go b/lib/go/test/flow_epoch_test.go index 89a0ca5cb..242abbf63 100644 --- a/lib/go/test/flow_epoch_test.go +++ b/lib/go/test/flow_epoch_test.go @@ -1649,6 +1649,8 @@ func TestEpochRecover(t *testing.T) { dkgKeys: dkgPubKeys, } verifyEpochMetadata(t, b, env, expectedMetadata) + currEpochCounter := getCurrentEpochCounter(t, b, env) + assertEqual(t, currEpochCounter, cadence.NewUInt64(startEpochCounter+1)) expectedRecoverEvent := EpochRecover{ counter: startEpochCounter + 1, From 8b5087dc0c878e423a9f4b8b3a34c4dea661fe34 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Sun, 28 Jul 2024 23:03:53 -0400 Subject: [PATCH 153/160] check counter and epoch metadata after second recover transaction --- lib/go/test/flow_epoch_test.go | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/go/test/flow_epoch_test.go b/lib/go/test/flow_epoch_test.go index 242abbf63..86d48da3a 100644 --- a/lib/go/test/flow_epoch_test.go +++ b/lib/go/test/flow_epoch_test.go @@ -1649,8 +1649,7 @@ func TestEpochRecover(t *testing.T) { dkgKeys: dkgPubKeys, } verifyEpochMetadata(t, b, env, expectedMetadata) - currEpochCounter := getCurrentEpochCounter(t, b, env) - assertEqual(t, currEpochCounter, cadence.NewUInt64(startEpochCounter+1)) + assertEqual(t, getCurrentEpochCounter(t, b, env), cadence.NewUInt64(startEpochCounter+1)) expectedRecoverEvent := EpochRecover{ counter: startEpochCounter + 1, @@ -1698,6 +1697,10 @@ func TestEpochRecover(t *testing.T) { expectedRecoverEvent.dkgPhase1FinalView = newStartView + numStakingViews + numDKGViews - 1 expectedRecoverEvent.dkgPhase2FinalView = newStartView + numStakingViews + (2 * numDKGViews) - 1 expectedRecoverEvent.dkgPhase3FinalView = newStartView + numStakingViews + (3 * numDKGViews) - 1 + expectedMetadata.startView = newStartView + expectedMetadata.endView = newEndView verifyEpochRecover(t, adapter, idTableAddress, expectedRecoverEvent) + verifyEpochMetadata(t, b, env, expectedMetadata) + assertEqual(t, getCurrentEpochCounter(t, b, env), cadence.NewUInt64(startEpochCounter+1)) }) } From 1e41ecf0ca8519eec08751639a3ad3928072c8a0 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Sun, 28 Jul 2024 23:54:05 -0400 Subject: [PATCH 154/160] provide recovery epoch counter in recover epoch transaction --- contracts/epochs/FlowEpoch.cdc | 12 +++++++++--- lib/go/contracts/internal/assets/assets.go | 6 +++--- lib/go/templates/internal/assets/assets.go | 6 +++--- lib/go/test/flow_epoch_test.go | 7 ++++--- transactions/epoch/admin/recover_epoch.cdc | 11 +++++++---- 5 files changed, 26 insertions(+), 16 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 0fc10a48f..62ac0fbff 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -568,8 +568,8 @@ access(all) contract FlowEpoch { // sanity check we must receive qc vote data for each cluster assert( - numOfClusterAssignments == numOfClusterQCVoteData, - message: "number of cluster assignments does not match number of cluster qc vote data" + numOfClusterAssignments == numOfClusterQCVoteData, + message: "number of cluster assignments does not match number of cluster qc vote data" ) if FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION { @@ -587,7 +587,8 @@ access(all) contract FlowEpoch { /// This meta data will be emitted in the EpochRecover service event. This function differs /// from recoverCurrentEpoch because it increments the epoch counter and will calculate rewards. /// This function is used within sporks to recover the network from Epoch Fallback Mode (EFM). - access(all) fun recoverNewEpoch(startView: UInt64, + access(all) fun recoverNewEpoch(recoveryEpochCounter: UInt64, + startView: UInt64, stakingEndView: UInt64, endView: UInt64, targetDuration: UInt64, @@ -603,6 +604,11 @@ access(all) contract FlowEpoch { nodeIDs: nodeIDs, numOfClusterAssignments: clusterAssignments.length, numOfClusterQCVoteData: clusterQCVoteData.length, + ) + // sanity check recovery epoch counter + assert( + recoveryEpochCounter == FlowEpoch.proposedEpochCounter(), + message: "recovery epoch counter should equal current epoch counter + 1" ) let randomSource = FlowEpoch.generateRandomSource() diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index ee9bc6cad..e6ca893fb 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -12,7 +12,7 @@ // StakingProxy.cdc (5.71kB) // epochs/FlowClusterQC.cdc (19.005kB) // epochs/FlowDKG.cdc (18.691kB) -// epochs/FlowEpoch.cdc (60.567kB) +// epochs/FlowEpoch.cdc (60.848kB) // testContracts/TestFlowIDTableStaking.cdc (9.241kB) package assets @@ -322,7 +322,7 @@ func epochsFlowdkgCdc() (*asset, error) { return a, nil } -var _epochsFlowepochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x7b\x73\x1b\x37\xf2\xe0\xff\xfe\x14\x88\xab\x2e\x21\x37\x12\x6d\xc7\x57\xbf\xda\xd2\x59\xd9\x53\x24\xd9\x51\x39\xb6\x65\x4b\xc9\x5e\x55\x2a\x15\x83\x33\x20\x89\xd5\x70\x40\x03\x18\x31\x8c\x93\xef\x7e\x85\xc6\xfb\x31\x43\x52\xb6\xb3\x9b\xad\xf0\x1f\xcb\x24\xd0\x68\x34\x1a\x8d\x7e\xa1\x41\x97\x2b\xc6\x25\x7a\xda\xb5\x73\x3a\x6d\xc8\x35\xbb\x21\x2d\x9a\x71\xb6\x44\xf7\xa3\xef\xee\xdf\xb3\x2d\x1b\xb6\x8e\x5a\xd9\xff\x47\x2d\x2e\xce\xae\xf1\xb4\x21\x57\x12\xdf\xd0\x76\x1e\x34\x8d\x7f\x88\xfa\x9c\x36\x9d\x90\x84\xbf\x3e\x0d\x9a\xbb\xef\xa2\x96\x67\xcf\x9f\x05\x6d\xce\x9e\x3f\x8b\x7e\x7d\x4a\x88\x08\x7e\x56\xff\xbd\x7f\xef\xde\x83\x07\xe8\x7a\x41\x90\x64\xab\xc3\x86\xdc\x92\x06\x89\x25\xe6\x12\x55\xac\x95\x1c\x57\x12\x2d\x71\x8b\xe7\x0a\x57\xb9\x20\xa8\xa1\x33\x52\x6d\xaa\x86\x20\x36\x43\x64\xc5\xaa\x85\x98\xa0\x8b\x16\xc0\x1f\x28\x50\xfa\x3b\x84\x39\x81\xf6\x62\x89\x9b\x86\x08\x89\xba\x96\x4a\xd5\x47\xd2\x25\x41\xeb\x05\x31\xbf\xd3\x9a\xb4\x92\xca\x0d\x92\x6a\xf2\x68\x04\x7d\x88\x6a\xa9\x80\xb5\x44\xae\x19\xbf\x41\x6c\x45\x38\x96\x8c\x8b\x31\xa2\x02\x09\x89\x25\xad\x26\xe8\x95\xfd\x16\x2d\xf1\x06\xb1\xb6\xd9\xa0\x86\xe0\x5b\x82\x18\x47\xff\x62\xb4\x85\x01\x0c\x08\x05\x0d\x4b\x8d\x1d\x9a\xb2\xae\xad\x31\xa7\x44\xa4\x40\xa6\x04\x91\x7f\x91\x4a\x92\x1a\xd5\x1d\x57\x93\xc6\xad\xe9\x34\x63\x1c\xdd\x62\x4e\x59\x27\x14\xb0\x25\x15\x35\x59\x12\xdc\xb2\x8e\x8b\x03\x34\xed\xa4\x1a\x6e\x83\x38\x59\x62\xda\x22\x33\x7a\x32\xbd\xae\x95\xb4\x81\x1f\x34\x4c\xd2\xd6\x62\x72\xef\xc1\x03\x05\xf0\xdc\x13\x4e\xac\x1a\x2a\x11\x6d\x25\x43\x8f\xd1\x6a\x81\x05\x11\x47\xaa\xc9\x6f\xc7\x77\xfe\x40\x77\x74\x7e\xf9\xea\xf4\x5b\xf4\x12\x6d\xff\xfc\xe6\x1a\x7f\xf9\x08\x4d\x26\x13\xe8\x7f\xa8\x3e\xc8\xb2\x2e\xfc\xef\xb7\x43\x74\x45\x64\xb7\x42\xea\xaf\x53\xb6\x5c\x52\xa9\x88\x77\xf8\xdb\x6f\xae\xd7\x07\x21\xad\x20\x3c\x1a\x23\x74\x75\x7d\xf2\xfc\xe2\xe5\x33\x74\xf9\xed\xc9\xd5\xb9\xfa\xf2\x25\xab\x89\xe7\x0b\x20\x1b\x90\x58\x32\x24\xba\xe9\x92\x4a\xc5\x26\x80\x27\x27\xef\x3a\x22\xa4\x80\x15\x54\xb4\x7f\x79\xfe\xff\xae\xcd\x02\xe8\x45\x56\xf0\xe4\x82\x0a\x4d\xeb\x09\x3a\x91\x7a\x8d\xda\x1a\x38\xd6\xfd\x72\x00\x5f\xc3\x42\xa5\x9b\x84\x13\xc1\x9a\x5b\x22\x54\x0b\x05\x8e\x75\x52\x48\xdc\xd6\x0a\x81\x0c\x11\xdc\xd6\xa8\x26\x92\xf0\x25\x6d\x75\x97\x94\x51\x2c\xaa\x2d\xf9\x45\xba\x5d\x35\x81\x7d\x5a\x1c\x9e\x2c\xa9\x14\x1e\x3b\xbd\x24\x82\xf0\x5b\x5a\x11\x44\x6e\x49\xab\xdb\x62\xda\xba\xe9\x0e\x8e\xa9\x07\x3c\x40\xeb\x05\xad\x16\x88\xb6\x54\x52\x2c\x0d\xaa\x92\xe3\x56\x50\x49\x59\xab\x88\x6d\xe6\xab\xb1\xd2\xe3\x5e\x02\x15\xcd\xe2\x7d\x35\x46\x57\xe7\xd7\xdf\x5f\xfa\x95\xfb\xe7\x82\xb4\x01\x51\xd1\x94\xcc\x69\xab\x41\xaf\x30\x97\xb4\xa2\x2b\xdc\x4a\x81\xdc\x06\xb6\xe8\xe8\xbd\x41\xe4\x04\x9d\xe9\xbd\xa9\x80\x28\x88\x7e\x71\x44\x02\x63\xc5\xc9\x4a\xf5\xca\xe7\x06\x52\x4b\xb7\xed\x1a\xcc\x0f\x50\xc5\x9a\x86\x54\x6a\x5a\x20\x79\x58\x4d\x84\xe5\xa4\x5b\xa6\xe6\x6e\x60\x50\x8e\x2a\x2d\x7b\xbf\x10\x88\x33\x26\xd1\xbb\x8e\xf1\x6e\x89\x2a\xc2\x25\x9d\xd1\x0a\x4b\x02\x2b\x5c\xb1\x56\x90\x56\x68\x71\xa1\xe1\xf1\x4e\xcf\xa9\xa6\x42\x72\x3a\xed\xd4\x56\xb9\x21\x1b\x34\x27\xad\x62\x64\x45\xd2\x15\x67\x92\x55\xac\x41\xa3\xb3\xe7\xcf\xc6\xc0\xce\x44\xa2\x6e\x05\xfd\x38\x6e\x6b\xb6\x54\xf0\xa6\x04\x57\xac\x9d\x58\x62\xc2\xc4\x61\xae\x00\x45\xef\x87\x8a\x2d\x57\x0d\x91\x43\x6c\xeb\xf8\xc6\xad\xa1\xde\xc3\xbd\xbc\x03\xa0\x14\xd5\x66\xb8\x92\x42\x6f\x0f\x2d\xb1\x57\x9c\x55\x44\x08\xc3\x33\x0a\xde\x16\xb6\x31\x18\x99\x01\x23\xa6\x79\x3c\x46\xa7\xaf\x5e\xbc\xb8\xb8\xbe\x3e\x3f\xdb\xc6\x38\x07\xa1\x98\x57\xc7\xc3\xac\x6b\x9a\x8d\x5d\xf9\x1a\x06\xcb\x86\x4e\xf6\xd5\x09\x9a\x61\xda\x74\x1c\xc4\x07\x69\x25\xe1\xf1\x38\x33\xc6\xc3\x09\x00\x1d\x58\xc2\x50\x7a\xc6\x35\xac\xbf\x9a\x31\x96\xbb\xb0\xb4\x1a\x57\x23\x69\x57\xcb\x11\xb4\x5b\x01\x6f\x2b\xb2\xd6\x1d\x27\x6e\x33\x0a\x84\x51\xc5\xa9\xa4\x15\x6e\x1c\xde\x8a\xe1\xd6\xb4\x69\x50\x85\x3b\xa1\x61\x54\x0b\x75\x10\x49\x86\x16\xb8\x91\x93\x7b\xf7\x70\xa5\xd6\x67\x84\x9b\x66\xec\x19\x40\x9d\xdb\x7a\x1d\xde\xdf\xbb\xa7\x04\x7f\xd8\x8a\xb4\xdd\x52\xaf\x12\xac\xce\x11\xfa\xfe\xa2\x95\x7f\x47\xef\xef\xd9\x53\x22\x02\xa9\x48\x65\xc4\xf4\xc9\xf7\xa7\xd7\x17\xaf\x5e\xf6\xb7\x83\xb3\x05\xe4\xc2\x96\x36\x9a\x0d\xa0\xd1\xef\x3d\x08\xaa\x93\xe0\x0d\x6b\x76\x41\xef\xe5\xab\x97\xe7\xfd\xbf\x9e\x6a\x09\xc0\xf8\x50\x13\xbb\xa7\xfb\xd1\xfe\x85\x54\x1d\x88\x91\xde\x26\x3f\x10\xae\x05\xc5\x60\xab\x13\xf8\x22\x9c\xfa\x03\xa3\xaa\x19\x61\x2b\xd5\x56\x8e\x37\x2a\x15\xb0\xa5\x95\x5c\x59\x1b\xc9\xe0\xd7\xda\x33\xb0\x70\xe0\x24\x43\x18\xb5\x64\x6d\xd8\xd1\x30\xa8\x3d\xb1\x70\x57\x69\xa1\xa4\x37\x67\x46\x7e\x18\x53\x9f\x38\x80\xcc\xe8\x9e\x9b\x8e\xc5\xb5\x62\x1d\xec\x27\x2b\x81\xab\x8e\x73\xd5\x4b\x8f\x07\xdb\x84\x0a\xbd\x95\xe1\x6c\xb2\xfd\x4d\x3f\xbd\xa8\xff\xf3\xbf\x0f\x72\xc8\x33\xca\x85\x44\xb7\x94\xac\xd1\x88\xb6\x4a\x26\xd3\x5b\x32\xb6\x22\x29\x1a\x67\xe2\x3a\x43\xa7\x1f\x28\x59\x0f\x00\x6e\xf0\xae\x70\xbf\x10\x29\xa9\xfc\x48\xe6\x87\x13\xfd\xfd\x79\x5b\x7f\xb4\x51\xc3\xd9\xb4\xb8\x19\x82\xcb\x24\x6e\xd0\xd3\xef\x5e\xfd\x13\xd0\x21\x35\x9a\x6e\x10\x6e\x1a\x73\x1c\x69\x3d\xa4\x21\x73\xad\x43\x15\x97\xc8\x0f\x26\x15\xb0\x2b\x00\x73\x84\xbe\x7f\x4a\x7f\xe9\x19\x4e\x74\xab\x55\xb3\x51\x98\xab\x91\x60\xf0\x22\xe4\xa8\xeb\x85\x9a\x72\x6d\x8e\x0a\x4e\xd6\x98\xd7\x46\x88\x82\x54\x9b\x2a\x41\x4a\x6b\x07\x68\xc5\xc9\xad\xd2\xc4\x13\x48\x80\xa2\x12\x69\x57\x80\x43\x1f\x9a\x60\xed\x28\x54\xfb\x07\x62\x9d\x44\x38\x51\x03\x87\x29\xf3\x46\xc3\xf2\x63\xaa\x5f\xc6\xc5\x8d\x5b\xd0\xce\xd2\x8d\xbb\xee\x3f\x30\xa1\xbb\x03\x6b\x54\xd6\x0b\x77\x48\x6b\x12\x02\x67\xd0\x5f\x49\xdd\xa7\xe5\x75\xab\x8a\x2d\x15\xe3\x06\x73\xe9\xdb\xdb\x6a\xc0\x1d\xb6\x76\x02\x12\xbd\xe8\x84\x54\x04\x65\x2d\x41\x73\x4e\xb0\x3e\x56\x31\x88\x98\x08\xd8\xa0\x8c\x98\xec\x28\x12\x2e\x76\x99\x27\x5a\x53\xb9\x70\x3b\x00\xd1\x76\xc6\xf8\x12\xc7\x1b\x37\x64\xc7\xa3\xe8\x5b\xd5\xe7\xe2\xec\xc0\xed\xf9\x1b\xb2\x39\xb0\x9a\x47\xe9\xff\xb8\xae\x39\xa8\x44\x9c\x35\xe4\x20\x02\x65\x41\x04\x18\x1c\xa0\x35\xa1\xf3\x85\x3c\x80\x7d\xb9\x64\x9c\x78\x9c\x60\xe4\x76\xc6\x8e\xd0\x8f\xb9\xaf\x60\xf2\xd2\xfc\xfa\xd3\xde\x52\xb2\xc4\x05\x1f\x45\x4c\xf6\x03\xde\x22\xb1\xd4\xf2\x6b\xf5\x1a\x61\x21\xe8\xbc\x5d\x2a\x4e\xe8\x63\xb1\x73\xac\xac\xe8\x86\x40\x23\x73\x78\x35\x54\xc8\x08\x26\x27\x2b\x4e\x04\x51\x0a\x98\x62\x45\x07\x5e\xeb\xe8\x7a\xcf\x28\x96\x00\xd5\x4c\xb1\xc5\xc5\x99\x30\x83\x1b\xfd\x71\x81\x63\x88\x06\xc4\x81\x66\x27\x6d\x14\xe8\xc5\xd3\x42\x15\x0c\x86\x80\x6f\x8d\x5e\x61\x7c\x36\xc2\xac\xa2\x73\xe1\x4c\xcc\x5f\xa5\xf5\x13\xac\xe3\x15\x78\x5b\xb4\xf2\xdf\x12\x21\xb4\x55\xa0\x70\x53\xd3\x25\xb8\x26\x1c\x09\x62\xac\x17\x84\x9b\x39\xe3\x54\x2e\x96\x80\x5d\x04\x70\x68\xf3\xab\x8f\x1e\xe2\x0a\x86\x3c\x42\x57\x52\x59\x59\x05\x9c\x6a\x82\xeb\x06\x4c\x57\x36\x43\x44\x2d\x81\x56\x94\xcd\x02\x9c\x3d\x7f\xe6\xcd\x18\xc9\x94\x08\xb0\xca\x6d\x6d\xdb\x58\x0c\x22\xd8\x81\xed\x6a\xc4\xda\x99\x1b\x49\xfb\x45\x48\x45\x67\xd4\x40\x21\x7c\x09\x08\x60\x6f\x69\x69\x76\x6c\xbb\xe5\x94\xf0\x78\x43\x83\xed\x80\x35\x6a\x5e\x23\x47\x6c\xaa\xc4\xb0\x02\x1f\x48\x4c\xb5\x82\x82\x60\xa5\x97\x4f\x1b\x56\xdd\xe8\x55\x06\xd0\x46\x8c\x45\xa0\xad\x48\x43\x73\x7a\x4b\x5a\x47\x9c\x03\x44\x25\xaa\x70\x8b\x04\x9e\x91\x66\xd3\x63\x84\x84\xaa\x95\xfa\x9c\x3d\x7f\x06\xba\xf6\xa3\xa7\xf9\x46\x49\xdb\x7c\xb5\x43\x9b\xc7\x85\x36\xf9\x61\x88\xf9\x9c\x48\x54\x77\xc6\x06\x2d\xb3\xc9\x81\xa2\xba\x20\x15\x6b\x6b\xcf\xdb\xba\xeb\x99\xe9\x99\xe3\x91\x0c\xa1\xce\x52\xf0\x00\xf6\x0d\x11\x2d\xb1\x1e\xec\x70\xc5\x49\x45\x85\x42\xec\xfb\x96\xfe\x02\xfd\x93\xf1\xcf\xdb\xfa\x9a\x2e\x89\x1d\xbe\xf7\xe8\x2d\x1a\xb7\xc3\x47\x2f\xb8\x4b\xdd\xe1\xeb\x40\x7a\x57\x97\x3f\x80\x03\x40\xe0\x8c\x04\x68\x4a\xb0\x04\x96\x79\xcf\xc4\x1d\xdc\x05\x56\xca\x30\x69\xfd\x8e\x19\x3a\x99\xcd\x7c\x3e\xe0\x6c\x26\xef\x3a\xdc\x58\x86\xb4\x9d\x68\x7e\x44\x3b\x85\x2b\xd8\xa3\x80\xc8\xae\xc7\xf3\x35\xe8\x75\xa2\x6b\xa4\x3d\x22\x5e\x9f\x22\x3c\x9f\x73\xa5\x7d\x1a\xc7\x87\x9a\x63\x22\xd3\xad\x80\x8e\x60\x85\xc2\x3a\x10\xb8\x88\x93\x8a\xd0\x5b\xa2\xd5\x44\x1c\x78\x77\xac\xc0\x8e\xa0\xbc\x3e\x45\xe0\xa2\xd3\x8a\x6f\xc1\x89\x03\x5a\x21\x88\x37\x7b\x64\x18\x3f\x0d\x11\xc1\xac\xad\x10\xef\x95\xea\xaf\x4f\x4b\x72\x5d\xd3\x42\xad\xc8\xaa\x9b\x36\xb4\x52\xca\x83\xf0\xdc\x66\x64\xa8\xf6\xa8\x90\xb6\x62\xb5\x12\x4c\x42\xe9\xef\xa0\xde\x35\x6c\x7d\x38\x67\xf1\xa1\xc4\x37\x2b\xc9\x50\x43\xa7\x1c\xf3\x0d\xb8\x45\x5a\xb4\x20\xbf\x1c\x9a\xee\xb1\x40\x7c\xc6\x99\x12\xb3\x6e\x6c\xc5\xbd\xd2\xe9\x0b\x86\xfc\x07\x68\xc6\x9a\x86\xad\xb5\xe1\x00\x3e\xc3\xb6\xa6\xb7\xb4\x56\x4c\xa3\x10\x76\x20\xeb\x9b\xf9\x65\x37\x7d\x4e\x36\x8a\x0c\xfa\xe0\xf8\xa9\x5f\x03\x7e\x43\x2a\x76\x0b\x87\xd6\xd0\x46\xc4\x6a\x41\x55\x3b\xdd\x09\x36\x25\xd6\x67\x1c\xb5\xbe\x39\x69\x4f\x68\xe7\x02\xf2\x3e\x31\xe7\x14\x72\x18\xcc\x09\x38\x61\x94\xd1\xdb\xa2\xf3\xa7\x2f\x20\x94\x40\x8c\xcd\xd1\x3f\x54\x27\xf4\x28\xaa\x01\xa7\x35\x29\x18\xb2\x8a\x09\x0d\x88\x68\x68\x75\x74\x28\x5b\xc2\xa1\x20\x56\x5a\x39\x9c\xa0\xeb\x85\x9a\x45\x4a\x01\xb3\xe8\x9a\xe2\xee\x14\x8d\xbc\x48\x92\xa1\x6e\x55\x1b\xc4\x29\x47\x0d\xab\x70\xe3\xdb\xea\x39\x59\xcd\x04\x8c\x7b\x83\x99\x43\xc2\x38\xbf\xb1\xc4\x83\x8a\xbf\x5d\xa6\xd1\x56\xf1\x62\x5a\x6e\xce\xff\x6d\x1a\x3b\xa8\xa0\xe0\x6e\xff\xef\xd3\xd2\x7b\xa8\xfb\xc1\x4a\x7a\x2f\xdc\x0f\xd2\xd1\x63\xa8\x7f\xa0\x8a\x6e\xbb\x65\xc2\xf9\xc4\x21\xa9\xa4\x93\x15\x4f\x7f\x69\xdb\x7f\x69\xdb\x7f\x69\xdb\x1f\xae\x6d\x0f\x48\x87\xd7\xa7\x02\xad\x30\x9c\x66\x86\x13\xfb\x8e\x59\x88\x6d\x0a\x02\x8c\x67\xb5\x2c\xf0\xc2\x1d\xb2\xd9\xe1\x14\xb7\x75\x34\x46\x27\x6c\x28\x4a\xe0\x25\xf1\x31\x12\xa5\x21\xd9\xb8\xbd\x3e\x69\x0b\x8a\xda\x0f\x4c\x92\x33\x2c\x71\xbf\xbe\x66\x5b\x94\x24\x04\xf0\x74\xa0\xb1\xed\x38\xbd\x08\xce\xa9\x56\x1d\x9a\x8d\x8d\x59\xaa\x59\x73\x72\x08\x7a\x86\x53\x01\x41\x74\x8b\x0e\x8e\xe6\x59\xd7\xa8\x91\x27\xe8\x25\xb3\x8a\x29\x04\xa8\xe8\x72\xd5\x50\x1b\x6e\x8a\xc6\x88\xa4\x30\x7a\xf1\xfd\xd5\x35\x5a\xe0\x5b\x12\xed\xdf\xca\x18\x31\xc4\xf9\xe1\xb5\xb3\xb0\xf2\x26\x41\x82\x44\x34\x84\x22\x85\x03\xf1\x49\xb4\xcb\x41\xf5\x32\xf3\xb0\x9e\xda\x93\xc2\xb0\x75\x85\x96\x44\x62\xa5\xe5\x20\x3c\x05\x87\x6e\x68\x12\xc4\x76\xd7\x49\xd3\xa0\x05\x15\x92\x71\x98\xbd\x56\x3d\x5c\x77\x48\x3a\x61\x5c\x59\x7b\x84\x2f\x71\x0b\x8b\x97\x69\x4e\x42\xf2\xae\x32\xaa\xd3\x0b\xdb\xf5\x7d\xce\x42\x9a\xc8\x33\x1a\xe8\x4f\xb1\x1b\x3b\x04\xda\x10\x99\xaa\x51\x85\x63\x4b\x1d\x4f\x9a\x7b\x98\xb3\x52\xec\x16\xd1\x73\x11\xce\x6b\x5c\x1a\x41\x01\xb0\x47\xd0\xa0\x76\x62\xf3\x21\x86\x11\x16\x12\xf3\x48\x33\x19\x52\x4c\x76\x03\x49\xe2\x00\xca\x56\x80\x59\x10\x6b\x08\x59\xd5\xee\x7c\xdb\x00\x85\x90\x81\xda\xb7\x2e\x5c\xb0\x7d\x2d\x6f\x31\x2f\xc6\x0a\x4a\xd6\xa1\x6a\x80\xf0\x52\xad\x7c\x3a\x98\x64\x5a\x0d\x08\x76\x0b\xe8\x44\xea\x24\xa5\x52\x04\x21\x9d\x5e\x2c\x34\xfc\x13\x0d\xbe\xac\xae\x1a\x1c\xbf\xe1\x04\xdf\xd4\x6c\xdd\xfe\x94\x60\xc9\x71\x75\x23\x10\x9d\x39\x8a\x80\x78\x01\xdf\x45\x10\xaa\x19\x5c\x57\x8f\x89\xb8\xc4\xb4\x3e\x42\xdf\x30\xd6\xe4\xc4\x60\x7c\x8e\x5b\xfa\xab\x3e\x2d\xd9\xcc\xfb\x53\xbd\x2a\x08\x36\x9d\x91\xf0\xb1\xaf\xc0\xe5\xd9\xe8\xd8\x17\xe2\xac\x53\xa6\x1a\x9b\xaa\x13\x8f\x71\xd8\x25\x4e\x87\x1b\xd8\x81\xbb\xba\x70\x73\xf4\x5f\x6b\xcf\xc2\xa9\xf7\x2c\x04\x76\xbe\x4f\xed\xb3\x61\xda\x5e\x4a\xed\xe4\x69\xc8\x87\x0f\x0f\x2b\x2c\x04\xab\x28\x1c\xad\xce\x3e\x3c\x0b\x72\x51\x9e\x93\x0d\x7a\xe6\x72\x51\x12\x07\x10\xd8\xa5\x46\xd1\x76\x47\x88\x76\xc1\x38\x25\x4f\x2a\x19\x5e\x38\x09\x82\x23\x00\xf6\xa9\xb5\x07\xd4\xa9\xd3\xd6\xe4\x97\x23\xd4\x90\x76\x2e\x17\xe8\x10\x3d\xea\x25\x40\x7d\x33\x4f\x1c\x0c\xae\x29\x6d\xa9\x1c\x65\xd6\x26\x0a\x3f\xa1\x88\x4b\x7f\x4a\xc5\x55\xf2\x3b\x49\x83\xb7\x69\xef\x82\xfc\x48\x1a\xf5\x87\x08\xdd\x67\x9f\x30\x41\xdc\x71\x37\x17\x54\xd4\x27\xa3\xe5\x38\x3c\xa9\x34\xbd\x9a\xd9\xc4\xda\xf9\xc7\xf6\x0c\xca\x9b\xc0\xd9\x73\x0c\xe4\x2d\xfc\x68\x29\xab\x5a\xd8\xbf\xf3\x66\x86\xc0\xe8\xd8\x92\xba\x08\x29\xa0\xb2\x06\x17\x7c\x91\x77\x08\x29\x8e\x8e\xa3\x05\xc8\x1b\x47\xf2\x10\x1d\xa3\x1f\x7f\xea\x6b\x03\x92\x0a\x1d\xa3\x19\x6e\x04\x29\x11\x2c\x59\x44\x20\x5d\xf2\x5d\xa1\x9b\x5b\x42\xd5\xde\xfd\x27\x6f\x68\xd6\x0d\x1d\xdb\x15\x74\x4d\x7e\xbf\x97\x6d\x9c\x0a\x16\x6d\x8c\x66\x5d\x8b\x2a\xb6\xda\x8c\xc6\x47\x99\x76\x12\x8e\xc0\x89\xec\x78\x0b\x03\xed\x0a\x56\x10\x79\x1d\x50\x76\xf4\x33\x6a\xc9\x3a\xe1\xf3\x71\x32\x4c\x69\x79\x7c\xaf\x3d\x46\x7e\x13\xae\xda\xe8\x67\x73\x96\xb8\x13\x6b\xc7\x73\xad\x88\x5e\xca\x10\x09\xe8\xbd\x91\x04\xb6\x71\x28\x06\xc7\xdd\xc0\xe8\x96\xd5\x82\xff\xed\x31\xae\xdb\xfa\x62\xf4\xae\x1a\x92\x0c\x45\x0c\x22\x86\x7c\x57\xed\xb3\x2a\x67\xcf\x9f\x81\xd0\x7f\x4e\x36\xa3\x9b\x4c\xc6\x0c\x70\xf4\x4d\xcc\xce\x28\x4e\x7c\x72\x3c\x6b\x6d\x15\xc8\x4b\x37\x0e\x04\x65\xf9\x4f\x21\xe5\xad\x9d\x7b\x73\xe2\xa4\x5e\xd2\xf6\xc1\x83\x07\x7d\x9a\xfa\x29\x6b\x67\x74\x1e\x20\x65\xcf\x4c\xed\xd3\x50\xba\x86\x52\x28\x21\x6f\x0f\xb7\x48\x69\xed\x7c\x9b\x7e\xd7\x76\x4b\x25\x8f\xc4\x45\x0b\x3b\x2d\x57\x27\xc3\x0e\x86\x62\x2f\xe3\x3e\xa3\x9f\xf5\xb0\xb6\x6f\x91\x6c\xc9\x38\xe8\x58\xf7\x29\xad\xd3\xc0\xac\x76\xd5\x93\xe3\x99\x5d\x45\xa9\x4d\x7b\x4e\x31\xee\xbc\xe7\x5c\xe3\xce\x77\x9c\x34\x28\xcf\xf5\xcd\x5c\x7b\x83\x76\x98\xaf\x75\xef\xec\x39\x53\xdb\x6d\xcf\x39\xda\x6e\xfb\xcd\xce\x2b\xc5\x56\x0d\x76\x53\xdd\xca\xb0\xa7\xb9\xe6\xa1\x30\x7d\xf4\x3f\xdb\x26\x9a\x75\x54\xf2\xbf\x5b\xa6\x60\xfa\x26\x9c\x75\x57\x07\x81\xef\xde\x3b\x71\x6d\x7a\xe8\x84\x68\x49\x94\x12\xa9\x53\x63\xc3\xdc\xb1\x15\xde\x28\xa3\x8c\xb6\x15\x27\x58\x10\x81\xc8\x2d\xe1\x9b\x42\xe6\x19\x84\x61\x6e\x71\xd3\x11\x10\x2a\x5d\x23\xe9\xaa\xa1\x5e\x88\x40\x02\x9b\x0c\x33\xdb\x24\x43\x73\x22\x03\xa7\x22\x0c\xd5\x4b\x60\x05\x40\xf7\xbc\x30\xc8\x5c\x12\x5e\x91\x56\xe2\x39\xc9\x2d\xc0\x02\xa1\x87\x00\x8c\x7e\x46\xab\x0c\x5a\x91\xde\x43\x50\xd0\x71\x00\xa5\x44\x76\xd0\xaf\x7b\x44\xdb\xc1\x56\xc9\x70\x30\xb0\x97\x0e\x06\x19\xf0\x60\x27\xea\xed\x28\x20\x93\x6f\xf6\x92\x33\x7d\x3f\xed\xb8\x91\xf3\x2f\xf7\xda\x10\xdb\x15\xc8\x2d\xab\x3b\xf4\x73\xff\x91\xab\xcf\xc7\xd0\x4f\x6d\xb2\x76\xe9\x52\x69\x52\xae\xdd\xb9\x93\x32\x90\x9d\x6e\xc3\x32\x38\xf3\x43\x43\x58\x97\xc2\xe9\x0d\xfe\x28\x34\x52\x66\xa8\x39\x87\xd2\xcc\x82\xb1\x1f\x40\x87\x1c\x43\x64\x6a\x32\xd3\x81\x0a\xc4\xc9\x8c\x70\xd2\x56\xd6\xd1\x65\x4d\x16\x6c\x06\x15\x12\x2f\x57\x36\x79\xde\x74\x73\x80\x71\xd3\xa0\x59\x27\x21\xf3\x3f\xc6\x55\x4c\xd0\xc5\x0c\xbd\x35\x1e\x6f\x9d\x6c\x01\x80\xdf\xc2\x1c\xdb\xcc\x97\x2e\x17\xa4\x75\x70\xe1\x56\x45\x32\x79\x2a\x4c\xcc\x62\xba\x39\xb2\x0d\x5d\x87\xc4\xb7\x0e\x5a\xdf\xec\xda\xa2\x8f\xbe\xf4\xe1\x82\xbf\xa1\x51\x8e\xd4\x21\x27\x33\xf3\xe7\x38\x82\xdd\xe7\x9f\xbc\x86\x25\xec\x55\x80\xdc\x68\x36\xe4\xd4\x1f\x93\x48\x5d\x25\x75\x12\x9d\xc8\x83\x03\x66\x81\x8c\x9b\x2e\x59\xbf\x5e\xb8\x7e\x86\xbd\x90\x1d\xa9\xcb\xa0\xf7\x8f\x77\x14\x70\x70\x6b\x52\x76\x14\x9e\xb2\xe5\xaa\x93\x8e\x9b\xc4\x9a\xca\x6a\xa1\xb3\x02\x14\x62\x53\x2c\x20\x3b\x08\xb1\xd9\x4c\x10\xa9\xfd\x40\x1e\x4d\x43\x9a\x07\xbe\xdb\xa4\xf7\x60\x98\x13\x79\x1d\xb2\xcc\x53\xc6\xad\xf6\x98\xf3\x87\x53\x3d\xec\x1f\xfd\x96\xdf\x24\x61\x3c\xad\xa4\x0f\x73\x9f\xed\x17\xb1\x60\xe9\x08\x49\x99\xe3\xa0\xb0\xac\x07\x45\x32\xa7\x32\x3e\xc1\xeb\xd8\xf1\x5d\xa1\x95\x1f\x43\xef\xab\xd3\x82\x2f\xa3\x30\xf7\x78\x0f\xf6\x8b\xc9\x6f\x59\x53\x6b\x75\xe4\xad\xbb\x4e\x33\xd1\x5b\xeb\xad\xdd\x74\xce\xdd\xe6\xc4\xd8\xb4\x21\x2e\xc0\x10\x6e\x55\xeb\x07\xb4\x8e\x47\xdf\xdc\x5a\x40\x47\x46\x30\xef\x60\x1b\x19\x1d\x26\xbe\xf5\xe5\xa5\x9f\xb6\x9c\x5a\x26\xfb\x8c\xa7\x42\x70\x05\x87\x71\x12\x4e\x2a\xc6\x5d\x7a\xbc\x8b\x97\x00\x5b\x9b\xcc\xb7\x20\x4f\xdf\xcb\x5d\x70\xfa\xe9\xb1\xb4\xd4\xd6\x8a\xac\x1f\xee\x0d\x30\xa4\x28\x80\x85\xf9\xb8\x7d\x1c\x47\x71\x18\x47\x2d\x6d\x10\x9d\xe9\x43\xa6\xfd\x42\xa2\x19\xeb\x4c\xf0\xd0\xc5\xbc\x3d\xb9\x7c\x5c\x47\x59\x78\xda\x8e\x85\x6f\xd4\xa9\x29\x74\x04\x6c\xce\xd9\x5a\x89\xf9\x9a\xc2\x81\x8f\xf9\xc6\x41\xab\x19\x11\x48\x51\x0f\x5c\xdf\x3a\xf6\xde\x30\x5c\x2b\xbc\x40\xdb\x84\x3d\x1f\xdd\xc1\xa1\xc2\xb4\xc8\xa4\xb3\xd9\xd3\x91\x7f\x66\xf4\xb3\x9e\x60\xbe\x8b\xa3\x66\xff\x08\xf6\x06\x9d\x01\xdf\x58\x9a\x9d\x39\xac\xc1\x47\xd7\xcc\x26\x66\x9a\x13\x33\xcd\xc9\x94\x71\xce\xd6\x4f\x3e\x7f\xaf\x61\x27\xa0\x7f\xff\x7a\xa4\xa8\x7e\xa4\xfb\x5a\xa8\x57\xba\xef\x25\x96\x8b\x74\x5f\x26\xe3\xbf\x21\x33\x74\x5c\xc0\xe6\xc7\x70\x5e\x3f\xa5\x7b\xdb\x4b\xa4\x00\xce\x44\xbb\xb0\xa2\x96\xbf\xdf\xcb\xff\x32\x3d\x5b\xda\xa4\x1b\xf5\x0a\xeb\xe4\x83\x25\xab\x35\xf7\xc4\xce\x30\xb3\x55\x4d\xe4\xd3\x07\xff\x32\xd6\x28\x6f\x57\xd0\xd6\xf1\x2d\x49\x57\xb0\x25\x6b\xbf\x73\xa3\x1f\x43\xda\xad\x38\x29\xfa\x61\x74\xa8\x38\x94\xb6\xe8\xf8\x18\x3d\x44\xbf\xfd\x16\x35\x1e\x05\xa3\x38\xaf\xed\xd7\xc7\xfd\x40\x0e\xd1\x23\xf4\xf9\xe7\x11\x8c\x12\x88\x27\x06\xc4\x8a\xb3\x15\x13\xa4\x0e\x61\x8c\xc6\xe3\xa3\x6c\xdd\xee\x9f\x6a\x81\x02\x34\xde\xa4\x81\x54\xd8\xc1\xb6\x44\xc0\x4c\x12\x7b\x9b\x47\x03\x37\xad\x19\x77\x57\x2e\xb3\xab\x3e\xf7\x0b\x0b\x7e\x57\x96\xc7\x9d\x5c\x8c\x5e\x74\x12\x4b\x32\x46\x9f\x88\xff\xcb\xcc\x5f\xa0\x74\x69\x0f\x60\x21\x08\xdc\xaa\x4b\x7f\x50\x9f\x65\xba\x54\xc7\xc7\xa5\x15\x3c\xe8\xe9\x2c\x04\x18\x50\x76\xb9\x14\xe3\x7a\xa4\xe1\xb4\x5a\x52\xb1\xc4\xb2\x5a\xf8\x54\x3c\x03\x52\xdc\xcf\x60\xf6\xed\xca\x10\xd1\x6d\xf3\x8f\xd0\x2f\x9f\xb6\xc5\x3d\x67\xd3\x45\xde\x04\xe9\x54\xa3\xb1\x0d\xf5\x24\xca\xad\xce\xb9\xb2\x79\x5e\x4b\x93\x05\x8d\xd1\x82\xfc\xa2\xf6\xbf\xea\xc0\x66\xe8\xf1\x57\xea\x34\x54\x43\x28\x1b\x6c\x44\x27\x04\x3d\xfa\x1f\x34\xdd\x48\x22\x14\x77\x3e\xfa\xea\xef\x68\x4a\xa5\x18\x47\xa0\xdf\x72\x25\xf4\x25\x9d\x36\x06\x95\xb7\x46\x14\x29\x91\x63\xb4\xae\xd1\xdf\x35\x14\xdf\x13\xd4\x4a\x68\xfe\x1d\x5b\x83\xca\x11\x03\x79\xa2\x7b\x7e\x3d\x1a\x4f\x24\xfb\x86\xce\xcf\xdb\x9a\xe2\xf6\x1b\x05\x64\x54\x82\xf2\x2d\x9d\x2f\xee\x0c\x06\x02\xb2\x01\x19\xd1\xb1\xa1\xe2\x44\xe7\x10\x7f\x4b\x7e\x19\xf9\x61\xc6\x93\x8a\xb5\x15\x96\xa3\x9e\x36\xdf\xb1\xf5\xd8\xc3\x2e\x32\x73\x38\xd8\xc4\x84\x00\x8f\x8f\xd1\xe3\xaf\x0e\xee\x95\xd9\xf5\xcd\xfe\xeb\xe7\xb9\x75\x7c\x2f\x3d\x24\xc2\xf1\xd3\xd3\x22\xb0\x55\x0e\xd4\xaa\x5f\x9c\x1d\x14\xef\x01\x66\x27\x39\x04\x6b\x73\x91\x1b\x1b\x0c\x6e\x04\x03\x4a\xe7\xf4\xb9\x6b\xe3\xce\x9a\x36\xe1\xd4\x21\xf8\xc6\x9f\xe2\xff\xf6\x23\x28\x09\x15\x54\x5b\x09\xf4\x53\x50\xef\xde\x42\xdd\x0a\x20\xa5\x53\x85\xb2\xe1\x14\x6f\x61\xd5\x3a\x90\x7a\x6a\x77\xb9\xff\xec\x32\xdc\xb7\x04\x73\x39\x25\x58\xee\x3c\xe4\xc2\xf6\xd8\x7f\xd8\x1e\x51\xfe\x36\xd0\xe1\xb6\x0c\x5e\x10\xf4\x3d\x63\xbf\xb1\xb3\xd1\x81\x71\x70\x0c\x40\x6e\xb6\x60\xde\x10\x75\xea\xdf\x8c\x92\xc6\xd8\xce\xe1\x90\x8e\x24\xb0\x2a\x3d\x37\xd8\x95\xac\xd3\xb0\x61\x5a\xe0\x4f\xd2\xea\x85\xff\x7f\x9f\xb5\x94\x6b\x17\xea\xe3\x97\x27\x63\x27\xb5\x0b\xfd\xff\x26\xf1\xbd\x7e\x7d\x6c\xe8\x4b\x2e\x66\xb6\x7a\x62\x36\xf9\xae\x10\x56\xc8\xcf\x0c\x3f\x3a\x15\x3f\xe0\x86\xd6\x30\x54\xe4\x73\x1a\x05\x18\x16\x0c\xa1\x5e\x87\x5d\xf9\xd0\xdb\x19\x98\xf5\xd1\x95\xc1\x44\x04\x1f\x1f\xa1\xfb\x2f\xc9\xda\x18\x16\xf0\x95\x93\x4a\xe9\x9d\x57\x24\xba\xa5\xe2\x08\x47\x99\xb6\x86\x1c\x3a\x4d\x70\xf0\xf5\xdf\x4f\xce\xd1\x7b\x7b\xe0\x5f\x08\x24\xc5\xa8\x96\xac\xf2\x32\x83\x19\x32\x06\x2c\x16\x7e\xf3\xdf\xc6\x64\xc9\xf4\x3e\x29\xf3\xec\x0c\x06\x1a\x29\xee\xda\x87\xb3\x5a\xb2\xfe\x43\xb8\x2b\x89\xe1\x25\x04\xdc\x83\xd1\x2c\xb1\x02\x4e\xf3\xff\xff\x6f\xe3\xb3\x8f\x2a\xcc\x22\x4a\xfd\x3b\x78\x2d\xe4\x33\xc5\x77\x9f\x8a\xd7\x5c\x14\x35\x9a\xf1\x1e\x3c\x96\xf9\xbb\x35\x9f\xe9\xbf\x8f\x72\x77\xf8\x87\xb0\xdb\xa9\xb7\xbc\xdd\x10\x93\xd0\xc5\x79\xff\x4d\x12\xae\xb0\x64\x36\x16\xaf\x2f\x0d\x94\x12\xb0\x3c\x78\x6a\xda\x36\x0c\xd7\x4f\xb2\x29\x59\x23\xf6\x81\x69\xf6\x60\x66\x01\x44\x13\xdf\x71\x0c\x65\x2b\x8e\xdc\xf4\x0e\x90\x64\xbb\x43\xde\xba\x5a\x7d\x51\x65\xb2\x7e\xb9\x3d\xb0\xfc\x9f\x26\x19\xee\xc2\xf6\xf9\xec\xe3\xb9\xef\x41\xcb\xa7\xdf\xbd\xfa\xe7\x55\x7f\xe0\x58\x6d\xa8\xad\xb1\xd4\xff\x34\x92\x22\x23\xfb\x7c\x74\xf3\xc9\x31\x7a\x34\x79\x68\xf4\x30\x1d\xc8\xf7\x9b\x4a\xae\x09\x69\xd1\xaf\x84\x33\x10\x54\xac\x25\x1f\xb8\x42\x83\xc1\xf8\x08\xb1\xe2\x42\x3d\x78\x80\xce\x5b\xf0\xfd\x33\x8e\x6a\x2a\xe0\x4f\xdc\x49\xb6\xc4\x92\x56\x2e\x7b\xa1\xc2\x4d\xd5\x35\xb6\x96\x5b\x5b\xa3\x15\xde\xc0\xfd\xb5\xad\x8a\x9b\x81\x64\xb2\xce\xf4\x58\xf5\xe8\x67\x44\xf4\x5f\xe5\xa4\xb3\x2d\xf2\x44\x75\x29\x8a\x90\x9e\xe1\xf6\x12\x24\x06\xb1\x82\x18\xd9\x0a\xdd\x0b\xc5\x5e\xb2\x90\x25\x95\xe1\x5d\xd6\xf3\x5b\xd2\xca\x51\xc9\xa9\x1e\x9f\xa1\x5b\x52\x82\x77\xc9\xf9\x1d\xcc\x1a\xde\x9a\x32\xd1\xd3\x3a\x4b\x9f\x88\xdb\xc1\xd5\xd7\xec\x8e\x8c\xfd\x6c\xbb\x0e\x19\xb6\x2d\x5f\x4e\x0c\x5b\x6c\xbb\x8c\x86\xfa\x2f\x8c\x15\x90\xda\xf3\x5e\x56\x08\xa1\xff\x72\x90\xfd\x64\xc1\xc3\x90\x65\x90\x8f\x70\xd9\x08\x40\x7f\x71\x4c\x73\xc1\x2b\x4d\x24\x42\xc6\x07\x07\xe9\xf0\x5b\xae\xff\xe6\xe9\xc5\x33\x73\x95\xe1\xe2\x0c\xd1\xd6\x2e\x62\x01\x65\x80\x3e\xc1\xab\x15\x69\xeb\xd1\xc0\x10\x23\x0d\xe2\xc8\x80\x1a\xa7\xde\xd9\x0c\x6d\x45\xc1\xf8\x1e\x64\x98\xaf\x8d\xbe\xec\x65\xd7\xe8\x27\x97\xef\x12\x26\xf1\xa7\x43\x7c\x75\x87\x21\x46\x5f\xa1\xbf\x15\xc6\x19\x0f\x0e\xf4\xf8\x2e\x03\x3d\x1e\x18\x28\x63\x18\x25\x5b\xe2\x8b\xf2\x90\xb7\x12\x0b\x01\xd5\xc6\x4b\xc0\xb0\x75\xee\xd6\x77\x17\x18\x42\xf9\x94\xeb\xf6\xfe\x9a\x39\x30\x44\xde\x20\xb8\x18\xee\x26\x5e\x6a\xe5\xee\xaa\x1a\x51\x95\xb7\x29\x49\x8c\xfc\xbb\xbc\x5f\x2c\x3d\xc2\xff\xe5\x6d\x4b\x97\x70\x73\x86\xec\xef\xf7\x55\xa1\xdf\x57\x3b\xf4\x7b\x5c\xe8\xf7\x78\xa0\x5f\x2a\xef\xe2\xff\xf7\xb5\x77\xb2\x2f\xfa\x6f\x2f\xa5\x43\x31\x98\x7d\x95\xf7\x0a\x45\x9f\xff\x3b\x11\x7e\x65\x3d\xe4\x01\xba\x24\x7c\xc6\xf8\x52\x20\x81\x5b\x25\xe9\xaa\x05\xa9\x6e\x44\x50\x63\x8f\xdd\xd2\xda\x45\xe5\xa2\xfc\x2b\xa8\x77\x03\x05\xf3\x48\x2b\x3a\xe3\x77\xd5\xb7\x39\x69\x3b\xff\x3f\xd1\x30\x87\xe8\x1a\x5c\xb3\x50\xb8\xf4\x56\xd9\xc6\xc6\xd9\x1d\x43\x4c\xfa\x9c\xb8\x2a\x85\xb6\x68\x2a\x94\x7f\xa8\x05\x14\x0f\xb0\x77\x59\x75\x2d\x06\xf4\x35\x7a\x98\xd4\x6f\x9b\xc5\xc9\x16\xb6\x92\x87\x45\x20\xfe\x01\xca\xd3\xe6\x8a\x67\x7c\xaf\xfa\x5d\x85\x6e\x99\xb4\x16\x6f\x7d\x33\x77\x05\x03\x49\xab\xa8\x54\x13\x25\x96\x21\x00\xd1\x16\x0a\x84\x24\x37\xcf\x53\x3d\x25\xbc\x38\x7c\xc9\xc9\x29\x2c\xc5\xe8\x93\x6b\x21\xc3\xfa\x42\xdb\x2d\x5f\xcd\x4e\x0b\x22\xe0\xa2\x95\xfd\x2d\x43\x16\xbe\x68\xe5\xbe\x06\x45\xbf\xff\x24\x9e\xee\xa1\x23\xce\x97\x8f\x0e\xee\xe0\x9e\xb3\x94\x09\xe1\x14\xe2\xd9\xea\x73\xff\xa2\xd5\x6c\xe3\xa5\x69\x42\x7b\x5d\x0d\xc4\x5e\x63\x8a\xb8\x6b\xd0\xde\x80\x22\x23\xc1\xee\x0b\x8a\x73\x8a\x05\xeb\x9a\x3a\x67\xf4\x3b\x69\x0e\x3a\xf8\x56\x0e\x24\xef\xa1\x48\x4c\x74\x49\xe7\xe6\x9f\x0e\x9b\x03\x54\x84\xe9\x03\x76\x38\xdc\xc7\xf1\x1e\x56\xc8\xc7\xfa\x94\x36\xdc\xb2\x29\x6f\x8f\x37\x27\x44\x8d\x69\xba\x36\x06\xa1\x29\x0f\x65\x76\x32\x41\x3a\x23\x81\xf1\xa8\xc6\xd3\xbd\x5d\xc9\xd6\xb3\x39\x20\x0c\x5f\xdc\x0d\x5b\x49\x15\x24\xf3\x67\xd5\x55\x84\x4f\x36\x82\xa0\x3c\xca\x1b\x87\xd3\x2a\x51\x2c\xfa\x8a\xce\xee\x6c\xc3\x17\xd8\x0b\x92\x6b\x68\x5b\x11\x45\x6b\x5d\xcc\x40\x10\x19\xdf\x40\x3f\x50\xbf\xd5\x0c\xa6\xd0\x42\x39\x15\x56\x84\x03\x7b\x2c\xbc\xb4\x8e\x70\x23\xd8\x04\xfd\x93\x68\xb7\x81\xe9\xab\x93\x3d\x07\xae\xaf\xd8\x8f\x9f\xa6\x4e\xfb\xb0\x4a\x5f\xbd\xa4\xed\x68\x3c\x21\x6d\x9d\x78\xb3\x13\xde\x42\xa4\x11\x25\x89\x65\x2a\xbc\x54\x66\xb2\xae\xa4\x99\x76\xbb\x6f\x45\xc3\xb1\x87\x45\x04\x60\x5d\x49\xb6\xfa\x01\x4e\x99\x04\x8d\x12\x88\xb3\xe7\xcf\xa2\xce\xe7\x6d\x7d\xf6\xfc\xd9\x40\x86\x54\x74\x9e\x9d\xb7\x26\x69\xb1\xb2\xd5\x28\x10\xae\xa4\xda\x1f\xbe\xa2\x15\xac\x85\x30\x15\xa2\x59\x1b\x54\x95\x72\xca\xc1\xc0\x21\x0e\x37\x2b\x96\x44\x62\x64\x92\x4a\xcc\x71\x69\xca\x76\x85\x69\xdf\xc5\x82\x60\xa6\x44\xd6\xac\x6b\xb5\x7e\x5e\xd3\xd9\x8c\x70\x11\xd7\xb9\x30\x19\xb4\xd0\xfd\x34\xe0\x63\x34\x25\xba\x14\x3a\x35\x97\x40\xf4\x2e\xf2\xb1\xf5\x30\x4f\xdc\x54\x4e\xd7\x3e\x17\x77\x87\x64\x82\xf2\xe9\x38\x64\x6c\x59\x30\x93\xc0\x0e\xc5\x46\xa0\x54\x50\xa9\x0a\x18\x20\xa9\xd1\x7a\x8a\x9b\x66\x8a\xab\x1b\xf4\x42\xc9\xc2\xd1\xf9\xd3\x17\xe3\xad\x5a\xc1\x4b\x13\xc6\xfb\xe4\xfa\xc0\xc7\x35\xe9\x77\xf2\x33\xfc\x11\xe6\x7f\xa6\xe6\xf4\x5c\xba\x2c\xa9\x60\xd9\x2e\x0c\xd6\x20\x50\x07\x4a\xcd\xa2\xb5\x48\xf5\x85\xac\x83\x5b\x18\xd2\xdb\xc4\xcd\xc3\xfc\x51\x30\x0d\xfb\x34\xb6\x7c\x49\x4c\xba\xcd\x30\x8c\x41\x73\xa4\x08\x61\x9c\x19\xe4\x49\x42\x91\x97\x62\xe5\xc4\xad\xdc\x3b\x31\x70\x2d\xe7\x8e\x21\xb5\x81\x21\x82\x4b\x3b\x7b\xeb\x94\xb9\x6e\x77\x0a\xc1\x33\x10\x9f\x71\xae\x69\xd9\x9f\x14\x57\xed\x03\x5f\xb6\xc8\x71\x35\xd2\xe0\x85\x4f\x31\x8c\x53\x4e\x33\x2c\x2e\xac\xfc\x2b\x88\x3f\xb8\x92\x63\xb0\x50\xc7\xa8\x2e\xb7\xe7\x9f\x04\x88\x37\xab\x75\x50\x78\xd2\x94\x13\x43\x13\xb9\x04\xa5\x17\xfa\xbd\x00\xc5\x2d\x55\x96\x5a\x45\x4f\xc5\x96\xbd\x96\x2a\x87\xd7\xa1\xad\x6a\xe3\x0f\xf6\x74\x52\x74\x58\x73\x75\x42\xc1\x23\x4e\x6f\xdd\xa9\x70\xd2\xd6\x57\xee\x36\xf7\x5b\x34\x25\x0d\x8b\xab\x0e\xc4\x25\x1e\x1e\x4e\x1e\x26\x82\xae\x50\xde\xa1\x4f\x16\x16\x7e\x73\x05\x1b\xbc\xb8\x1b\xe7\xfc\x76\x05\x89\xe8\x86\x7f\x7c\xee\x2d\x1c\xc0\x50\x22\xcd\x4e\xd3\xdd\x39\x81\xaa\xa2\xe1\x27\x83\xe9\x79\x66\xc5\xd9\x9c\x13\x21\xa0\xe0\x14\x67\xdd\x7c\x11\xd4\xa3\x9b\xf4\x38\xfd\xf3\x94\xe8\x94\x81\x0b\xf3\x38\x4d\xcf\xe2\x2d\x4f\x08\xa0\xe0\x46\x83\x55\xc6\xcc\x0d\xd0\xfc\xe9\x9f\xbe\x88\x4f\x71\xa5\x53\x81\xe4\x1c\x7f\x9e\x2c\xbc\xd7\xfb\xa7\x8b\x5b\xec\x10\x82\xd8\x6f\x3f\xa1\x9d\xf6\x0c\xda\x73\x67\xa0\xad\xfb\x0c\x0d\x06\x2e\x76\xcf\x5f\x28\x85\x33\x76\x49\xa0\xd9\x7e\xfe\xfd\x11\xfe\xca\x3f\xaf\x1f\x30\x17\x17\x60\x6b\x61\x7f\x3e\xf9\x17\xbf\x22\x8d\x39\x76\x65\x95\x4a\xc1\x04\xfb\x5d\xc1\x74\x1a\x6b\xaf\xf3\x71\x17\xf3\x83\x13\x63\x80\x50\x79\x07\xcb\x23\x54\xd5\x69\x2b\xb5\x97\x2e\xaa\x9d\x9b\xcd\x2b\x74\x0a\xc6\x25\x88\x37\x11\xfc\xb0\x3e\xb0\xb2\x47\x85\xb9\xfc\xe3\x6b\x12\x2f\xf5\xf5\x05\x88\x75\x57\x64\x6f\x4b\xc6\xd2\x2f\xb4\x62\x9c\x03\x80\xf6\x1f\xe7\xe0\x97\x55\xf6\x72\x0c\xda\x75\xf5\x36\x8e\x95\x94\x56\xbe\xe2\x5b\x46\xc1\x7b\x59\xb3\x6e\xda\x80\xf4\xd4\x6f\xd6\xc5\xe2\x17\xea\x2d\x26\x75\x4c\x3f\x85\xad\x67\xcd\xab\x68\x90\x3f\xc2\xd6\x0a\x6d\xc8\xbf\xec\xad\xbf\xec\xad\xff\x78\x7b\xcb\xfd\xf5\x27\xb6\x9b\x42\xb0\xd9\x18\xa1\x77\x32\xb0\x79\x42\x3b\x32\xb9\x35\x39\x98\x9b\x37\xfe\x14\x46\x9a\x11\x5f\xc9\x6d\x37\x90\x82\xd6\xa0\x20\x43\x9a\xb5\xeb\x32\xfc\xd0\x94\x25\x09\x09\xd1\x3c\x4a\xe3\xcb\xbb\x19\x86\xa8\x6c\xcf\x15\x28\x56\x50\x2b\xc1\xa0\x2b\x2d\xcc\x67\x50\x0f\xee\xae\xea\xea\x76\xf5\x73\x5f\x85\x76\x8b\x51\x86\x76\x33\xcc\xd0\x16\xe3\x0c\xfd\x77\x19\x68\x64\x8b\x75\xf6\x29\xed\x9f\xdd\xf8\xef\x2f\xe3\xe7\x93\x19\x3f\xfb\xec\xea\x3f\xaf\x29\x64\xff\xfa\x37\x04\x45\x82\xbd\x7f\x60\x2e\x41\x43\x04\xe9\xdc\x28\xf2\xba\x76\xbf\x38\x80\xb7\x80\xde\x06\x15\x38\x0b\x79\xe6\x5f\xa2\x47\x6f\xb7\x98\x3e\xa0\x46\x9b\xec\x5a\xa3\x39\x1f\x22\x01\xc1\x3a\x93\x22\x11\x56\xf3\xa7\x42\x23\xa3\x03\xda\x66\x52\xfa\x6d\x01\x1a\x17\xd6\x9d\x32\x26\x85\xe4\x78\xb5\xb2\xd5\x64\x35\x45\x4c\x88\xd8\x3c\x43\x22\x5a\xbc\x12\x0b\x26\x0f\x4c\xbd\x72\xfd\x23\xfd\x95\x88\xe0\xe9\x59\x47\x40\x53\x1e\x7c\x95\xd6\xe8\x32\xa7\x22\x5c\x6f\x51\x53\x38\x80\x42\xef\x50\xcb\xc7\xd8\x16\x58\xba\xa1\x86\x54\x7c\x4b\xe6\xf8\x28\x1c\xb8\xac\xb9\x6f\x52\xe4\xa7\xb6\x18\xee\x5a\x24\xf6\x0e\x35\x62\x4b\x7a\xbe\xdf\x38\xbb\x24\x75\xf4\x14\x2f\x18\x14\xf6\x3d\x19\x18\xf6\x9a\xba\x7e\x90\x1b\x3b\x05\xe9\x3c\x72\x66\x03\x1f\x24\x81\xf2\x50\x9d\xb2\xed\x7c\xd1\x8f\xbc\x3a\xca\xdd\xee\xf6\xfc\x17\xe6\xa6\x7c\xec\x14\x81\x8f\x94\x21\xf0\x27\x4a\x10\xf8\x73\xe4\x07\xa4\xe1\x91\xd4\x1c\x0a\xaa\x77\x0c\xbb\xd2\x8d\x87\xe6\xe3\xc6\xaf\xec\xc7\x99\x2a\x3d\xc7\x60\xf9\x0a\xdc\xb6\xc8\x93\x6b\xb7\x93\x42\x89\x76\x52\x12\xd1\x1d\x54\x4f\x64\x23\x53\xf4\x63\x44\xa2\xec\xa7\x54\x74\x7c\xf4\x70\xf2\xb0\x10\x4e\x40\xe5\xb3\x25\xfb\xaa\xa7\x67\x70\xba\xf8\xbf\xcb\x6d\xb7\xdb\x49\x1f\x14\x3b\xba\x63\xe8\xe8\x0f\x89\x1c\xfd\xc1\xfe\x76\x14\xd7\xb3\x88\x2b\x15\x50\xa1\x4f\x3c\xb5\xc0\xae\xe6\x97\xd3\xf5\xe0\x29\x09\xad\x3b\xba\xfe\x92\x99\x12\x61\x11\x8a\x3a\x95\xd7\x28\x68\xae\x7e\x8f\x17\x79\xa6\x90\xc5\x0c\xc4\x72\xa1\xda\x82\x2b\x7d\xe0\x2a\x44\x24\x15\x5b\x9e\x5a\x5d\xd6\xa1\x8d\x01\x65\x5d\x61\x4b\x3f\x19\x25\x19\xc2\xf5\x2d\xb6\x3a\x6d\xae\x40\x42\xa5\x33\x8d\xbc\x79\x3c\xcb\x56\x08\x7c\xd7\x51\xae\x35\xf6\x5a\x3f\x8d\x1f\xbc\x63\xb1\x24\xe5\xaa\xae\x4a\x97\x34\xe3\x7d\xa3\xc6\x1f\x65\xfe\x4d\xa8\xdf\x37\x78\x7c\x16\xb4\x25\xf5\x75\xff\xcd\xb9\xe2\x66\x0a\xfc\x63\x80\x09\x3a\x46\x73\x22\x4f\x83\x6f\x0a\xe7\x04\xfa\x44\x8e\xb5\xcf\xfa\xc4\xda\x25\xde\xb8\xcd\x08\x47\x34\x9d\x15\xee\xbc\x29\xad\xc0\x5c\x06\xdb\x2e\x1f\x01\x0c\xae\x64\x87\x9b\x66\x83\x16\x70\x27\x06\x42\x2d\x88\x2e\x97\xa4\xa6\x58\x12\xd5\xc0\x95\x98\x22\x26\x9a\x32\x0f\xdf\x12\x4d\xa0\xdb\x58\xcb\xdb\x15\xde\x98\x3d\xfc\x94\xf1\x4b\x53\x7f\xca\xec\xaf\xb7\xc1\xf8\xab\x68\x5e\x15\x29\x02\x8e\xd4\x28\xdc\x73\x3f\xaf\x74\x41\xc9\x7e\x74\xfd\xad\x01\x94\x8a\x3d\x7f\xef\x43\x26\x64\x97\x09\xd8\x7c\x5f\x1f\x17\x59\x21\x7d\x72\x61\x0b\x86\xdb\xf4\xa4\x7e\xc4\x52\xc6\x3f\xbf\x7c\x75\xfa\xed\xd5\xf9\xf5\xf7\x97\x65\xa6\x37\x14\xf5\x16\x8c\xce\xcb\x3f\xb5\xaf\xde\x8d\xc6\xe8\xf3\xcf\x11\x30\xeb\xd9\xf3\x67\x93\xfa\x26\xfa\xe9\xb3\x63\xd4\xd2\xec\x06\x64\x36\x9d\x5e\x99\x3e\xd8\x0b\x84\xb1\xd9\x14\xcb\x25\x95\x1f\x46\x83\xd3\x57\x2f\x5e\x5c\x5c\xff\x69\x77\xfe\x5e\xcc\x46\x76\xe6\xb2\xfd\xb8\xbe\x26\x33\xdc\x35\xb2\x4c\x44\x5d\x05\xea\x5e\x19\x42\xe2\x1a\x3a\xc5\x4d\x23\x82\x92\x46\x6f\x9d\x97\x45\x0c\x58\x1b\x49\x8d\x79\x97\xa3\x02\x8a\x80\x0b\x89\xa2\xe0\x19\xc6\xde\x13\xa7\xb0\xc1\xfe\xb0\xbb\xda\x44\xe3\x1c\xcd\xec\x8e\x97\xe0\x15\xff\xd9\x24\x97\x97\xe6\xc2\x42\xc8\x7a\x25\x39\x92\x79\xa0\x3f\x51\x19\x37\xf4\x31\x52\x16\x13\xd5\x0c\xfe\x84\xf5\x1d\x25\xd3\x3e\x4a\xe9\x70\x30\x90\x87\xd2\xeb\xb2\xdc\x91\x2f\xfb\xf9\x6c\x98\x27\x2f\x07\x79\x32\x97\x77\x1f\x99\x25\x83\xb3\x20\x61\xc7\x10\x49\xc3\x8a\xc1\x57\x3b\xde\xf2\x1f\x90\xd7\x1f\x42\x66\xf3\x2e\xfb\x36\x3a\x1b\x3e\x47\x27\xa1\xac\xd0\x8f\xac\xe6\xf9\x97\x05\x71\x60\x24\xe1\xa7\x20\xb9\x39\x7a\x12\x9a\x9b\x77\xa3\x43\x6a\xeb\xa9\xee\x43\xee\xed\xb9\x41\x2f\x83\x94\x1a\xa3\xed\x07\x05\x41\x5d\x69\x3c\xf7\xa4\x35\x4a\xb3\x06\xc5\xb0\xed\x67\x96\x81\x71\x88\x93\x91\x25\xbc\x94\x11\xb9\x3a\x7a\xa9\xde\xa7\x16\xf4\x16\x54\xd8\xaa\x47\x0c\x54\xf1\x18\x52\xfa\x7a\x07\xdc\x49\x53\xcc\x4b\xfd\x7b\xd2\x69\xe6\x93\xec\x06\x5e\xf2\x8b\x2c\xe1\xdc\x82\x0e\x92\x2e\x85\x73\xfc\x0c\xdb\xcf\xc5\xd7\xa9\xfa\xc9\xea\x70\x0e\xde\x6a\xd4\x65\xf2\x4c\x75\xd7\x92\xd7\x2e\x2a\xb8\xb1\xa3\x47\xc0\x19\x98\xfa\xb1\x50\xbd\xa9\x43\x38\x30\x4f\x1d\xbf\xc5\x36\x71\x0a\x4d\xed\x93\x50\xd6\x9b\x9c\x56\xbc\x1d\x74\x3e\x34\x3e\x03\xeb\xaa\x5b\x2e\x4d\xcd\xda\x60\x2a\x9e\x7f\x72\xce\x09\x34\xb9\x40\x89\x03\x9a\x64\xfa\x5b\x5f\x1d\xe0\x40\x75\x4b\x40\x4d\xb2\x07\xb6\x62\x44\x27\x6e\xe6\xe3\x21\x10\xd1\xeb\x60\x09\x84\xd0\x3f\xe5\x81\x68\x45\x3a\xf3\xfc\x24\xb0\x83\x25\xbe\x93\x85\x15\xf1\x85\x74\xcf\x7b\x9a\x27\x5e\xd8\x4c\xbf\xfb\xe2\x0d\xc8\x68\xfd\xbe\x10\xe9\xa3\x2f\x06\x24\xb4\xf4\xb5\x5b\xcc\xab\xf4\x5a\xcc\xe8\x2d\x65\x5e\x50\x5c\xe0\x5b\xd2\x7e\x21\x8d\x9f\x81\xb6\x92\xd4\x3d\x5c\xb9\x21\x32\xd3\x4f\x4c\x8b\x4b\xbd\xcf\x8e\x4b\x57\x38\x2d\x07\x5c\xab\x41\x75\xc3\x51\xae\xe8\xcc\x08\xd1\xab\x6b\x80\x3c\x25\x44\xa8\xae\x4f\x09\xf9\x06\x37\xb8\x05\xed\x26\xec\x74\x8b\x39\x9a\x35\x6c\x0d\xcb\xaa\x6b\x0b\x9d\x28\x1a\x39\x54\x1e\x4e\x1e\xa6\x51\x04\x3f\x88\x57\xfe\x4d\xfb\xfc\x9c\x1a\x04\xfe\x14\x7e\xbc\x21\xad\x66\x1d\xdd\x64\x37\x6f\xfc\xfe\x70\xd1\x97\x68\x14\x63\x7b\xe8\xa7\xb2\xcd\x89\xfe\x1d\xc3\x5a\x21\xd0\x4f\xb8\x2a\x86\x9a\xb2\xb6\x13\x96\x09\x20\x4b\x31\x2c\x27\x1e\xae\x0a\xb4\xbc\xd6\x0d\x13\xab\xec\x1b\xff\x53\xc9\xbf\xd8\x4d\x75\x9d\xd1\x7c\xac\x8c\xc5\x83\x57\x8c\x38\x71\x5f\xa7\x6b\x17\xa2\xf2\x64\x88\x88\x7b\x52\x7c\xe0\xc7\xc3\x70\xd0\x6d\xb1\x8a\x68\x0b\xef\xe6\xb7\x0d\x0d\x90\x5d\xf0\xf9\xdb\xb6\x00\xde\xe0\xe3\x3a\xd9\x12\xb9\x97\xa3\xd6\xfe\x8d\xaa\xc8\x88\x72\xc5\x62\xa1\xee\x93\x2d\x8d\xae\xb5\xad\xac\x3c\x36\xb2\x02\xb3\x18\xbb\x12\x05\x21\x10\x4f\x3d\x17\x09\xf6\xf7\xdd\x8e\x94\x9e\xba\xf0\x19\x33\xfc\xe3\x1f\x68\x85\x5b\x5a\x8d\x5c\x24\x37\xc8\x3d\xce\x17\x0c\x4d\x49\xd5\x61\x9d\xf7\xbc\xc0\xc2\x49\x4a\x47\x8e\x0d\x91\xf7\xc7\x89\xda\x1b\xe3\x9d\x1d\x3e\x43\x13\xef\x39\x73\x52\x98\x03\x0a\xd4\x25\xde\x78\xad\xd3\x3c\x21\xa0\xef\xbd\x43\xb9\x08\xf7\x24\xb3\x75\x95\xc7\x65\xed\x7b\x15\xa3\x1d\x55\x40\x53\x75\x7e\x15\x36\xb8\xb3\x4e\x80\x0e\xd1\xa3\x42\x59\xfb\xcf\x8a\xd0\xa3\xb7\x2a\x73\x21\x00\x4a\x9b\xd3\x6c\x0a\xe7\x94\xc9\x0c\x0b\xf5\x82\x51\x1c\xb7\x2a\x0f\x1b\xb6\x39\xf0\x5a\x58\x5f\xf3\xe8\x3d\xcf\x9c\x3d\xfb\xb7\x90\x5f\x80\xd1\xcc\xbc\xb0\xe3\x52\x44\xca\x43\xb9\x9a\xe1\xb1\xb6\x73\x64\xe9\x90\x8f\x5e\x86\x93\xbc\x1d\x2a\x79\x47\x7a\x10\x2f\x31\x6e\x01\xe2\xf0\xd3\x19\xe1\x53\x9b\xec\x96\x08\x27\x8f\xcc\x29\x62\x6b\xe9\x4d\xbb\xea\x86\xd8\x34\xb2\xc8\xa6\x15\x49\x62\x63\x29\xf0\x5e\x7c\x33\x34\xb6\x0a\xe3\x27\xf3\xd1\x79\x5b\x07\x71\x73\x13\xb8\xd9\x40\xb4\x40\x48\x5d\x81\x26\x8e\x19\x64\xee\x61\xda\x5e\x9a\xbc\xc8\x52\x1a\x7a\x4f\xb8\x5d\x94\x22\xed\xbf\xa7\x83\x18\xff\xb2\x51\x32\xfb\xc1\x07\xa1\x78\x92\x46\xe1\x83\x53\xad\x9f\x0d\x97\xec\x96\x98\x63\xdf\x86\x40\x1d\x1b\x0e\x0a\xe2\x18\x76\xc1\xf6\xef\x77\x00\x46\xcb\xf0\xbd\xbf\x35\x13\x3f\x06\xd1\x3f\x80\x7f\x73\x69\x00\xc3\xd8\xbe\xfb\x88\x02\xec\xb3\x08\x70\x21\xe9\x60\x6f\x43\xc9\x01\xf4\x85\xbf\x74\x40\x37\xc9\x26\x8b\xd6\x65\x6b\x3e\x6b\x50\xac\x2b\x45\x72\xd2\x93\x8b\x20\x22\xff\xa8\x4b\x32\x28\x75\xef\xcd\x3a\x08\xaa\x7f\x65\xfd\x8a\xa9\x0d\x5a\x33\x96\xf8\x86\xd4\x47\x3d\x06\xc7\xb5\x6f\x92\x5e\x59\x84\xde\xaa\x97\xd6\xaf\x8e\x7a\x55\xee\x1d\xa4\x7d\x0e\xd8\x9d\x15\xbb\x1a\x42\x1e\xc6\x38\x15\x7e\x2e\x05\x54\x24\xde\x39\x9d\xe3\xd8\x34\xf1\x93\x35\xe6\x8c\x5f\xad\x38\xbb\x4d\xc2\xdb\xa1\x8c\x2b\x78\xb5\x7d\x56\x5d\x20\x37\xc2\x87\xd8\xf6\x4a\x47\x0a\x9f\x39\xf2\xc2\xd8\x3b\x9f\x8d\x73\x11\x52\xc1\x96\x34\xaa\x84\x21\xfc\x9b\x8b\x0e\x06\x44\x5a\x17\x38\xf1\xc2\xd5\x94\x93\x4a\xba\xc0\xea\xdb\x0c\x99\xb7\xc3\x42\x7e\xc8\x17\xee\xae\x12\x15\xb3\x2c\xd3\x53\xc1\xbf\xb9\x06\x35\x85\x2e\xda\x19\xe3\x4b\xf7\x64\xa1\x5d\x25\xbb\x2c\x7a\x95\x5c\x7f\x78\xf6\xd6\x94\x38\x3a\xe1\x1c\x6f\x76\xaa\xd8\x98\x0f\xaf\x87\x3e\x03\x9d\x0e\x7c\xa4\xfe\x11\x5e\xcd\x16\x4a\xb1\x7d\x7d\x1a\x8d\xeb\x9a\x64\x13\xdf\x63\x14\x9b\xb2\xeb\x47\x09\x53\xca\xf4\x30\xa6\xcd\x0e\xc3\x3c\x23\x12\xd9\xb9\x02\x30\x4b\xbe\x98\x6a\xa6\xa5\xfd\xd1\xcf\x15\x92\x2b\x62\x9c\xc2\x4e\x92\x05\x69\xbf\x7d\x69\x70\x6a\x58\x0a\x19\x99\x69\x6c\xe8\x7d\x66\xa1\xd8\xa5\x2b\x2b\x94\x59\xed\x2a\x5a\x27\x86\x72\xb4\xf4\xb6\x9c\xa6\xfd\x32\xaf\x93\x64\x7f\x99\x70\xd6\x80\xaf\x5c\x8d\xf0\x86\x35\x64\xe2\x4a\x35\x4f\x38\x5e\xff\x00\x95\x87\x0b\x69\x1d\xc9\x82\xa7\x03\x4e\x68\x3d\xe8\x4c\xd8\x82\x81\x21\xfb\x30\x06\x31\x2f\xec\x80\x41\x01\x97\x07\x0f\xd0\x2b\x3e\xc7\xad\x5d\xc4\x94\xd7\x69\x2b\x99\x7b\x7b\x3a\xf6\x51\x16\x5e\xb5\xd5\x67\x23\x64\x1a\x16\x0a\x5e\x5b\x9e\x4d\x69\x17\xfb\x75\xf5\xe1\xfb\xfa\x14\x69\x3d\xcd\x27\x1f\x82\x31\x4e\x49\x9d\xa3\x33\xac\xf1\xa9\xc3\x56\xab\x7c\x55\x7f\x06\x5c\x09\x07\xa5\x98\x86\x2f\x3c\x16\xb7\x42\x59\x1d\x84\x51\x95\x42\x18\x4c\x3a\x5e\xae\x44\x45\xea\x89\xdd\xdf\x5d\x9b\x81\x02\x21\xd1\xfe\xdc\x25\xe1\xf3\xc1\x83\x50\x2b\x8f\xaf\xbc\x4d\x09\x9a\x51\x38\x30\x68\x8b\x1a\x1c\xe6\xae\x85\x1e\x86\xe1\x2c\xd0\x6a\x07\xf5\xb6\x9c\x61\x38\xf4\xd9\x35\x21\x74\x10\x86\x4f\x16\x1d\x4c\x65\xf8\xd2\x64\xf0\x8f\x1e\xdd\x01\x51\x97\x67\xba\x65\x08\xbd\xc2\x3b\xbc\xef\x70\xa7\x79\x46\x49\xac\x1f\x01\x93\x5d\x5e\xb6\x18\xfa\xec\x70\x9d\x6f\xdb\xe7\xee\x59\xae\x83\x50\xb7\xdc\x0e\xdc\xf6\x71\x59\xb1\x3f\xfe\x94\x04\xaf\xec\x83\xc2\x8b\xec\x89\xea\xa1\xed\xa9\xf6\x99\x0c\xdf\x78\x4e\x24\x44\xf4\x1e\xc6\xb8\xb8\x3d\xaf\xa3\xcb\x5c\xe8\x38\x82\x37\xc9\x9e\xdb\xcd\xbb\xfa\xb7\xac\xa3\x9e\xbd\x0f\x17\xef\x61\xc7\xf6\xbb\xea\xfa\xb2\x83\x77\x31\x7f\x7d\xb2\x41\x2c\x72\x8b\xe5\xb1\x8b\x03\x4e\xc2\x42\xd3\xfb\x6f\x88\x1d\x3b\x15\x0b\x6d\xf7\x16\xd9\xfe\x44\x88\x8e\xbe\x42\xe8\x6f\x7b\xa1\x3b\xee\xc5\xf7\xf1\x1f\x81\xef\xe3\x0f\xc3\x37\x30\xfa\xc1\x80\xa9\xbc\x17\xb0\x84\xef\xe0\xf3\x9b\x28\xab\xe2\xed\xf4\xd1\xfe\x0e\x81\xa3\x60\x0b\x89\x86\x60\x38\xab\xbf\x0c\x63\xf0\x56\x03\xfa\x60\xf1\xb9\x4f\x9d\x1d\xfb\xb9\x6b\x7d\xf0\xb4\x7f\x58\x27\x7c\xa7\x42\xe1\x29\x80\xc7\x25\x00\x43\x15\xc3\xed\x27\xbd\x26\x5b\x96\xb0\xdb\xfa\xbb\x6b\xb3\x45\x29\xdb\xef\xc7\xc8\x7c\x00\x50\xd9\x26\xb6\xc3\xc0\x9d\x6a\xaf\x9e\xd6\x91\x6b\xd7\x7b\x0b\x82\x3c\x29\xed\x2d\xf0\x3a\x2f\x27\xa2\x6b\xa4\xd8\xc1\xfa\x2f\xe4\x89\xd1\x19\xfa\x6c\x5b\x42\xef\x6f\xbf\xa1\x9e\x7c\xde\x63\xc8\xe7\x2d\xbe\x67\x5f\x32\x63\x40\x85\xf6\x76\x48\x3c\xee\x9c\x48\x67\x84\x8c\x7b\xfc\x0d\xef\x3a\xc6\xbb\x25\xaa\x08\x97\x74\x46\x2b\x48\x99\xe9\x2d\x22\x0c\xa6\xf8\x2e\x57\x2f\x73\xab\x9c\x4a\xc8\x34\x74\x17\xf9\x9d\xdd\x6d\x91\x07\xb3\x5b\xdf\xd5\x92\x0b\x42\x79\x88\x12\xc2\x4a\x96\x88\xc8\xbc\xb6\x75\x82\x69\xeb\x61\xc4\x54\x03\x6c\x03\x20\xc7\xb6\xa1\xcb\x7b\x7c\x0d\x93\x3f\xf5\x6d\x0a\x79\xb8\x41\xa8\x0f\x2a\x58\xb7\x4c\xba\x37\x7a\x7b\x28\x68\x34\x19\x2a\xec\x80\xf7\x13\x33\xdc\xd3\xd0\x1a\xaf\x41\xef\xbe\x87\x76\xae\xfc\x52\xa3\xd7\xa7\xae\x90\x7c\xf2\xda\x74\x96\xf2\xe5\x42\x1a\x6c\xa5\x76\x88\xe6\xc5\x9d\x0c\x98\xfd\xe3\xa4\xde\x49\xdd\x23\xd2\x1d\x43\xbe\x3e\x15\xa3\x77\x55\x74\xbf\x6a\x9c\xcd\x56\xed\x64\xbd\x15\xd1\x0d\xd9\xdc\x69\xc6\xa1\x53\xc6\x1c\xd1\x4a\x31\x35\x5b\x25\xdf\x7f\xb1\x9b\xbd\x6b\xd7\xfa\x46\x78\x7c\x6d\x38\x7e\xf2\x44\x2d\xf6\x0d\xd9\x28\xec\x2c\xf4\x98\x0f\x23\x28\x76\xc1\x6f\xc8\xe6\xb3\x52\x24\xa6\x97\x70\x67\xcf\x9f\x3d\xe3\xac\x5b\x3d\x27\x1b\xd5\x59\x1c\xc5\x70\xff\x40\x95\x52\x27\x53\x96\xe2\x07\x46\x1a\x7e\xb8\xad\xbb\xcf\x0d\x3c\xfb\x09\x2f\x78\x27\xa4\x41\xf1\x59\xf2\x0d\x78\x2d\xa0\x1a\x9a\x7d\xbd\xce\x84\xb8\x73\x07\x9c\x79\xc3\xd6\xde\xeb\x0a\x8f\x04\xff\x6e\x37\x5c\x05\x50\x07\x43\xc9\xc7\x7d\x84\x3e\x2f\xf8\xf5\xd2\xa7\x71\xdd\xb3\xc4\xa7\x78\x85\xa7\xb4\xa1\xb2\xf7\xbd\xf7\x8a\xad\x36\x4f\x7c\xb3\xe2\x53\x56\x21\x0a\x40\xf8\x57\x2b\xa2\xcf\xe5\x24\x5c\x5c\x16\x6f\x12\x55\x1e\x0d\x48\xb8\x31\x48\xd8\x24\x9f\xfb\xf1\x6e\x9d\xf6\x52\xd4\x45\x4d\x61\xbe\x6c\xfa\x2f\x52\xc9\x7c\xd2\x6f\xc8\x0c\x1d\xa7\xf3\xb7\x0f\xdb\xf7\x92\xef\xeb\xd1\xf6\xb9\x18\xcc\x22\xbc\x22\x9c\xee\xe7\xcf\x68\x5b\x94\x76\xe7\x1b\x2f\xd5\x76\xe2\x17\xcf\x2a\xa9\xdb\xce\x30\x8b\x3f\x53\x3f\x31\x9f\x98\x81\xff\xad\x2c\xa2\xf4\xb6\x0f\xe4\x8e\x84\x5e\x77\x65\x0c\x8b\xc9\x47\xe1\x09\x75\x7a\xed\xc7\x0c\xde\x8f\x6a\xd8\x40\x9d\x4f\x9f\x98\x01\xec\x98\xff\x56\x0e\xa8\x6f\x3e\x5c\x40\x38\x5a\xdd\x75\xf1\x1d\x12\x7b\xac\xfe\x0b\x7c\x43\x04\x72\x4f\x06\x09\x02\xa9\x91\xda\x2e\xd1\xe5\xed\x04\x1a\xd1\x56\xbf\x21\x3b\x06\xb3\x04\xca\x5b\x4c\x7c\x74\xb3\x9b\x1e\x42\x7b\x81\x2a\x9d\x4a\x56\x7a\xa4\x76\xd6\x35\x8d\x51\x77\x34\xd8\x49\x64\x9b\xc0\x33\xfa\xf6\x0c\xea\xaf\xea\xf1\xb3\xcd\x5d\xf9\x8e\xf8\xea\x8c\xe8\x67\x67\xfc\x25\x5f\xc3\x78\xc1\x77\x63\xfd\xda\x62\x1e\xde\x1d\x79\xb0\xe0\x99\xf8\x5b\x00\x70\x3c\x46\x4f\x1c\xa4\x94\x7c\xfa\xde\x11\x94\xcf\x51\xb3\x84\x67\x54\xd8\x2c\x89\xc5\xa0\x8b\x33\xd0\xe7\x3a\x01\xd9\xfc\x9c\x75\x6d\x8d\x38\x9b\xd2\x16\xe1\x66\xce\x38\x95\x8b\xa5\x83\x28\x99\x79\x65\x04\x0c\x8c\x34\xa8\x23\x19\x22\xef\x3a\xdc\x20\x41\x7f\x4d\xe3\x29\xd9\xd5\x88\x6d\xd1\x1c\x57\x44\xa6\xb7\x66\x4d\x40\xa9\xfc\x16\x8b\x7e\xf2\xd5\x82\x33\xc5\x10\xc7\xe8\xeb\xe3\x61\xa7\x4e\x86\xd0\x91\xab\x26\x03\x37\xbd\x1b\x22\x44\x3e\x6f\xc5\x47\x76\xb6\xf7\x0b\x5a\xa7\x32\x95\xc4\xa2\x9b\xcd\x1a\x52\xeb\x1b\x6c\xba\xa6\xa5\x5d\x1f\x8b\x66\xc9\x8a\x2c\xbd\xee\x02\x06\x5a\x8c\x44\xd1\x64\xed\x27\x5d\xa4\x62\x07\x76\xe7\x45\x5b\x93\x5f\xec\x83\xb9\xe8\x38\x78\x40\xc8\xc6\x52\xf5\x6b\x3e\xe2\x8c\x02\x4f\x42\xaa\xda\x8f\xef\xf5\x5a\x59\x4e\xfe\x3d\x81\xbf\x5e\xd0\x86\x44\x23\xa0\x27\x7b\x2e\x43\xb2\xba\x45\x44\xac\xee\xff\xfe\xf7\x71\xc9\x1c\xd4\x03\x1f\xc7\xff\xfd\x32\xf0\xd9\xf9\xf5\x4a\x7a\x3c\xbc\x17\x59\x23\x3a\xf2\x1c\xae\xe7\xfb\xc2\x33\x04\x1f\x21\xec\x9c\xcd\xf0\xc7\x10\xb1\x9f\x7e\xa4\xb5\x22\xb4\x0f\xcc\x86\xcf\x2d\x65\xa9\xc4\x27\xb6\xe4\x01\xf3\x51\x00\x03\xee\x00\x31\x8e\xa0\xf4\xad\xf9\x51\x57\xd6\xa2\x33\xb4\x26\x9a\xed\xe7\x0c\x0a\x8b\x98\x9f\x1b\xac\x04\x49\x4b\xee\x44\x65\x64\xee\xfa\x46\xcd\xf7\xdd\x95\xa5\xb8\x75\xba\x66\xe1\x8f\x7d\x31\xea\x53\xe7\x11\xf1\x5e\x0e\x70\xac\xba\xeb\x3d\x02\x2a\x27\x3b\x4d\xca\xea\x15\xa9\x35\x5c\x2a\x5d\x7c\x95\x64\xca\x0c\x62\xf9\xf1\xf7\x88\x9d\x50\xf8\x04\x68\x26\x09\x46\x54\x6f\xf8\x70\xe0\x83\x90\xf9\x8e\x76\xe1\xc4\xcf\xc6\x77\xdd\x71\xe9\x59\x17\x9d\x19\xc1\x51\x76\xe2\xab\xd4\xc1\x55\x04\xe3\x20\xc2\xf6\x6e\xef\x8a\xf0\x65\x27\x7d\x4a\x0f\xe7\x46\xfe\xa8\xce\x9d\xb0\x57\x8f\x67\x54\x2c\x08\x47\x1b\xf0\xc3\xe9\x1d\x0c\x96\x4a\x74\xd0\x65\x85\xe0\x9c\x98\xfe\x59\x7b\xca\xe2\xc3\xc9\xa7\x65\x45\x02\x95\x2a\x85\x0a\x72\x46\xf4\xd9\x13\xbf\x0a\xea\x92\x01\xdc\x75\x0b\xd8\x54\xa4\xd1\xa5\xba\xc1\xc1\xb2\xc6\x2b\xa8\x18\x38\xdd\xa8\x7f\xa0\x64\x55\xcd\xda\x2f\x22\xde\xb3\xe5\xab\x78\xd7\xba\x00\x9f\xa9\x8b\xd7\xd8\xaa\xdf\x58\x7e\x21\xd0\x7a\xb1\x41\x34\x7a\x11\x4e\x73\x5c\xfc\x5d\x76\xeb\xe9\x92\x56\x37\x9e\xca\xc0\x2c\x1a\xe5\x87\x90\xa9\x93\x39\x04\x75\xc3\x97\xdd\x12\x1d\x23\x4e\x6e\x09\x97\x74\xda\x98\x0b\xd0\x4f\xf4\xe9\x90\x2a\x90\xbe\x9b\xe5\x17\x0f\xe4\x7f\xd9\xa0\x38\x55\x7c\x53\xb8\xc2\xa2\x68\xa4\x16\x9b\xfe\xe4\xdd\xcb\x8e\x88\x32\xc2\x3b\x1b\x54\x92\xe5\xca\x2e\xd2\x8f\x34\x7e\x64\xd7\x7e\xe9\x7e\x0f\x30\x2c\xb5\x0c\x7f\x46\xc7\x00\x3a\x49\xcc\x41\xc7\x88\x46\x21\xa2\x9c\xf9\x01\x54\xca\xf9\xa7\x89\xb2\x51\x69\xd7\x6e\x58\xb7\xd1\x5f\xce\xa1\xdc\x64\xb8\xe8\x32\x91\xde\x2c\x52\x90\x94\xfe\xcf\x6b\xa5\xf7\x32\xb4\xc2\x5c\xd2\x8a\xae\xdc\x7d\x36\x2d\xde\xcc\xc6\x52\x40\x0d\x37\x51\x1e\xb9\xa9\xd3\xbd\x31\x0f\x5c\x8e\x30\x2c\x9c\x68\x90\xd5\xc9\xcb\x9e\x99\x97\xee\xf7\xf1\x11\xfa\xbf\xb1\x50\xd2\x88\xbf\xcf\x74\x8e\x3d\x0e\x52\x3f\xfc\x24\x3a\x53\xf5\xe3\x7c\x49\xf2\xed\x3e\xc9\x5a\xb1\x77\xcc\xbf\xc3\xa7\xba\x20\x06\x96\x1d\xe3\x41\x71\x81\x44\xcb\x36\x6b\x84\xfd\xfa\x68\x5b\xcc\xab\x8b\x69\xe6\x4e\xe4\xba\x88\xaf\xaf\xa6\x6e\x8d\x94\x91\x9e\x1c\xc6\xbd\x4d\xee\x94\x5f\xa0\x8c\x52\xae\x0c\xe0\x73\xb2\xf1\x31\xc6\x89\xff\x32\xf3\xf2\x9d\x26\x79\x85\xdb\xf8\x52\xd9\xeb\x97\x96\xeb\x5a\xb9\x3b\x7b\x9a\x23\x55\xf5\xdf\x72\x47\x38\x60\xca\xb3\xe7\xcf\x82\xc1\xee\xc0\x94\xca\xde\x0d\xd1\xfd\xcf\x60\xca\x34\x7f\x6f\x7f\xa6\x0c\x17\xcd\x33\x65\xba\x38\x5b\x78\xb3\xbe\x29\x5d\xaa\xf6\xfe\x95\x9c\x1f\x6d\x0f\xc3\x89\xe9\xda\x14\x88\x84\xd2\x7a\x64\x0a\x92\x88\x33\xce\xfc\x1d\xec\x86\xd8\xdc\x63\xa3\x2d\xf9\x32\x65\xe0\x5c\xe8\xb7\xe7\x95\x04\x83\x3e\xce\x93\x3f\x3e\x42\x26\x0d\xa6\x9c\x69\x5d\x52\xc8\x86\xd0\xd5\xed\x75\xd8\x4f\x5f\x1d\x87\x04\x17\x5b\xcd\xad\xc2\xed\x00\xe2\x93\x70\xc3\x55\x64\xa5\x6b\x58\x99\x02\xb9\xe6\xd5\xd7\x29\x81\x0d\xa3\x14\x9f\xb7\x1a\xf3\xb7\x07\x68\xc1\xd6\xea\xfc\x85\x2a\xe1\x58\x20\x5c\xd7\xa4\xd6\xe9\x75\x6a\x47\xe1\xd6\x6b\x47\xab\x39\xc7\x35\x31\xd8\x98\x1a\x67\x02\x6e\xe6\x98\xd7\xae\xa6\x04\x89\x15\xa9\xe8\x8c\x92\x1a\x09\xb2\xc2\x5c\x17\xcc\x02\x45\x80\xfc\x42\x05\x24\x54\xea\xe7\xf0\x45\xee\x3a\x31\x54\x2e\x64\x12\x1d\xa1\xec\xcb\x1e\x9a\x17\x7d\x6f\x59\xe7\xa2\x0b\x2e\x6b\x65\xa2\x50\xc1\x6a\x5d\x87\x61\xaf\xf3\xf0\xc2\x0a\x70\x57\xb3\xc6\x1b\x51\x2c\x0d\xbb\x6a\x3a\x61\x8e\xf4\x22\x73\x95\x83\x33\xd6\x4e\xee\xe3\xaf\x72\xcd\x4a\x84\x85\xe9\x17\xa2\x9f\x55\x9a\xeb\xbb\xd1\xde\xe7\x5d\xea\x27\xaf\x6a\x5f\xa4\xe8\x49\x79\x8c\x31\xfa\xc7\x3f\xd0\x0c\x37\xa6\x8a\x49\x40\xdf\x67\x24\x29\x55\xd8\x73\xcf\xb9\x21\x33\x69\xf6\x71\x4d\x84\xe4\x6c\x13\xa4\x17\x7c\x13\xb6\xc4\x3c\xbe\x21\xbf\x26\x9c\x20\xdc\x34\xac\xc2\x52\x17\xc1\xc7\xa8\x26\x15\x51\xd6\x5a\x43\x7f\x75\xf7\xeb\x49\x2b\xe9\xad\x3f\x73\xa0\x2f\x64\x33\xb8\x0a\xde\x3e\x0a\xaa\x08\x0b\x28\x12\x78\xe9\xc6\x22\x34\x31\xec\x42\x04\xb8\x36\xed\x1c\x02\x1f\x99\x41\x8b\xb3\xb5\xea\xaf\x6f\x70\xba\x37\x85\xc2\x0b\xff\xf6\x3c\x83\xea\x01\xb4\x9d\x99\xaf\xd5\xf6\x72\xe0\x04\xf3\x57\xd8\xcc\x7b\x3e\x4d\x57\x07\x95\xac\x03\x80\xae\x13\x54\xcd\x37\x92\xc2\xa6\x02\x44\x94\xb6\x99\xb7\x6e\x56\xca\xe4\x08\xc8\x62\x2b\xe7\x19\x8f\xa9\x2e\xc7\x88\x70\xbb\x59\x32\x4e\xfa\x76\x78\x74\xdd\xdc\x96\x10\xdd\x87\xe3\x74\x8f\x8c\xe7\xd4\x11\xeb\x61\x97\xae\xd4\x23\xed\x88\xb6\xe5\x04\x0c\xeb\xd1\x96\x4a\x77\x2b\x3f\xbe\x05\x97\x57\xcb\x4e\x12\x60\x87\x9b\xa4\x05\xfd\x87\xda\xfa\xc2\xfd\xc5\x56\x05\x8f\xa3\xf6\xbe\x85\xed\x86\x2e\x8d\x5b\x42\x87\xed\xb7\x95\x1e\xbf\x5b\x61\xf0\xbd\xcb\x82\x17\x8b\x82\x0f\xba\x6d\x77\xa9\x9e\xdd\x9b\x20\x5c\x7a\x19\x21\x5d\xd7\x42\x61\xec\xbc\x28\xf6\x2e\x35\xb0\xd3\x8b\x98\x25\xad\x00\x1d\x1b\x4d\x62\x94\x71\xd7\x87\xe4\x5b\x7f\x8c\x87\x25\x76\x02\xbf\xdf\x9b\x13\xc3\x20\x0b\x7c\x5e\xfa\x76\x2f\xb0\xc3\xdb\x62\xe8\xd7\x3c\x1b\x06\x23\xd5\x84\xc1\x51\x66\xeb\x00\x3a\x01\x1d\xea\x6d\x56\x9f\xd3\x79\x76\xea\x8b\x47\xa6\xb0\xec\x0a\xde\x29\xab\x58\x50\x08\x08\xb4\x65\x0d\x2c\x57\x75\x8e\x73\xf5\x27\x36\x05\x6a\x97\x04\x38\xc8\x2e\x9c\xcc\x4e\x07\x0a\x5e\x67\x8d\xaf\xe9\x92\x08\x89\x97\x2b\x2b\x92\x46\x59\x31\xc8\x89\xb4\x6d\xc6\x5f\xa6\x3b\xc8\x81\x0b\xea\xe8\x24\xd2\x5c\xe0\x5b\x32\xea\x9b\xf7\x01\x92\x6c\xab\x8e\x36\x90\x38\x73\x3a\xf4\xc8\x45\x7f\xb7\xed\x37\x98\xa3\xae\xa0\x7d\x5f\x69\x1c\x2f\xb1\x5c\xa0\xe3\x02\xca\x27\xce\xb6\x70\xfd\x16\xb6\x32\xf1\xb6\xbe\xae\x84\x71\xdc\xdf\x1a\x37\xdb\xba\x3b\xcb\x23\xe2\xb5\xe4\xad\xa7\xf7\x7a\x7d\x8f\xe2\xdb\x32\xbf\xa3\x63\xf4\x3e\x95\x5f\xc5\x25\x8c\xc0\xe9\x75\xeb\x43\x32\x5d\xb1\x22\xbc\x27\x87\x26\x07\xd1\x18\x8a\x01\xc8\x94\xde\xe3\x7d\xc0\x39\x5a\x46\x20\x4b\x4b\x31\x2e\xf9\xff\x31\x5a\x71\x7a\xab\xfe\x0a\x42\xee\xc5\x0c\x1b\x57\x0b\x4e\xbf\x14\xaf\xb4\x4c\x78\x9d\x11\x8a\x5b\x63\x19\xdd\x78\x7a\xd5\xa2\x17\x98\xb6\x2d\xd1\xfe\xdc\x6b\x22\x64\x4b\xe0\x6d\x13\x92\x64\x2e\x08\x53\xa0\x20\x7a\x67\xc2\x3c\x78\x68\x26\x7e\xa0\xb4\xc2\x85\x0d\x5a\x2f\x08\x27\xe1\x4b\x2e\xe8\x44\x2b\xbc\xb0\xe1\xe0\x65\x04\x8d\xe4\x94\x19\x9f\x28\x8e\xc7\xf3\x0f\xb6\xb8\x09\x53\x22\x50\x43\x5b\x53\xc4\x01\xc9\x05\x13\x24\xec\x60\xd1\xc2\x4b\x87\x53\x84\x81\x7e\xd2\xac\x15\x9d\xae\x93\x87\xa5\x49\xd1\x64\xad\x36\x0c\x19\x57\x3a\x75\xdd\xc1\x6c\xcd\x7b\x2f\xa6\x9c\xb9\x80\x64\x62\x0c\xae\xe2\xe0\x5e\xde\x46\x48\xb2\x44\xd5\xa2\x6b\x6f\xc2\x81\x40\x21\xc6\x70\x49\xbf\xd9\x98\x38\x72\x6d\x1f\x74\xd4\x94\xb4\x1e\x28\xdc\x00\x38\xd6\x49\x65\xff\x52\xf3\x95\x2b\x22\xbe\xc4\x2d\x5d\x19\xd5\x79\x12\x6d\xa3\xb0\xa8\x5a\x7f\x22\x48\x48\x3b\xc7\x98\x54\x88\x8e\x0c\x25\x55\x15\x7e\x09\xd3\xc9\xf6\xdb\x02\x41\xfe\xc9\xc0\x98\x5f\x8f\xca\x13\x2a\x48\xe2\xc1\xcc\xb6\x3d\xb7\xce\xbb\x2a\x70\xbe\xa0\x28\x75\x74\xfb\x06\x52\xcb\xf0\xae\xfa\xc0\x15\xc8\x12\x97\x0a\x5f\x7e\x20\xc1\xd3\x21\xbe\x1e\x65\x58\x17\xc8\xdc\x97\x18\xb6\x27\x85\x5d\x52\xcd\x9d\x49\x6c\x1d\x73\x77\xa7\x71\x90\x19\x14\xfd\xf7\x03\xe9\xea\xc1\x7e\x3d\xca\x91\x2c\x90\xb4\x37\xd5\x2a\x1e\xbc\x5c\xfa\x4a\x69\xfe\xfd\x85\x84\x77\x2a\x9f\x1d\xb5\x86\x18\xdc\x3e\x57\x56\x77\x7a\xc9\x0e\xdd\xed\x91\x92\xac\xae\xf6\x96\xc7\x4a\xf2\x3a\xdc\x7b\xdc\x1c\x45\x87\xbd\xcf\xab\x94\x6f\x88\xee\x3d\x4c\x72\x59\xab\x77\xbc\x0f\x2d\xf6\x11\x7e\xfe\x13\x5e\x3b\xe9\x49\x3c\xcf\x59\xcd\x3a\xcf\x7f\xbf\xf7\xff\x03\x00\x00\xff\xff\xe9\x95\x54\x3c\x97\xec\x00\x00" +var _epochsFlowepochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x7b\x6f\x1b\xb7\xf2\xe8\xff\xf9\x14\x6c\x80\xdb\x4a\xa7\xb6\x92\x34\x17\x3f\x1c\xf8\xc6\x3d\xd7\xb5\x9d\xd4\x48\x93\x38\xb1\xdb\x73\x81\xa2\x68\xa8\x5d\xca\xe2\xf1\x6a\xa9\x90\x5c\xab\x6a\xda\xef\x7e\xc1\xe1\xfb\xb1\x2b\xc9\x4e\xd2\xd3\xa2\xfa\x27\xb1\x44\x0e\x87\xc3\xe1\x70\x5e\x1c\xd2\xc5\x92\x71\x89\x9e\x76\xed\x15\x9d\x36\xe4\x92\x5d\x93\x16\xcd\x38\x5b\xa0\xfb\xd1\x77\xf7\xef\xd9\x96\x0d\x5b\x45\xad\xec\xdf\x51\x8b\xb3\x93\x4b\x3c\x6d\xc8\x85\xc4\xd7\xb4\xbd\x0a\x9a\xc6\x3f\x44\x7d\x8e\x9b\x4e\x48\xc2\x5f\x1f\x07\xcd\xdd\x77\x51\xcb\x93\xe7\xcf\x82\x36\x27\xcf\x9f\x45\xbf\x3e\x25\x44\x04\x3f\xab\x3f\xef\xdf\xbb\xf7\xe0\x01\xba\x9c\x13\x24\xd9\x72\xbf\x21\x37\xa4\x41\x62\x81\xb9\x44\x15\x6b\x25\xc7\x95\x44\x0b\xdc\xe2\x2b\x85\xab\x9c\x13\xd4\xd0\x19\xa9\xd6\x55\x43\x10\x9b\x21\xb2\x64\xd5\x5c\x4c\xd0\x59\x0b\xe0\xf7\x14\x28\xfd\x1d\xc2\x9c\x40\x7b\xb1\xc0\x4d\x43\x84\x44\x5d\x4b\xa5\xea\x23\xe9\x82\xa0\xd5\x9c\x98\xdf\x69\x4d\x5a\x49\xe5\x1a\x49\x35\x79\x34\x82\x3e\x44\xb5\x54\xc0\x5a\x22\x57\x8c\x5f\x23\xb6\x24\x1c\x4b\xc6\xc5\x18\x51\x81\x84\xc4\x92\x56\x13\xf4\xca\x7e\x8b\x16\x78\x8d\x58\xdb\xac\x51\x43\xf0\x0d\x41\x8c\xa3\xff\x30\xda\xc2\x00\x06\x84\x82\x86\xa5\xc6\x0e\x4d\x59\xd7\xd6\x98\x53\x22\x52\x20\x53\x82\xc8\x7f\x48\x25\x49\x8d\xea\x8e\xab\x49\xe3\xd6\x74\x9a\x31\x8e\x6e\x30\xa7\xac\x13\x0a\xd8\x82\x8a\x9a\x2c\x08\x6e\x59\xc7\xc5\x1e\x9a\x76\x52\x0d\xb7\x46\x9c\x2c\x30\x6d\x91\x19\x3d\x99\x5e\xd7\x4a\xda\xc0\x0f\x1a\x26\x69\x6b\x31\xb9\xf7\xe0\x81\x02\x78\xea\x09\x27\x96\x0d\x95\x88\xb6\x92\xa1\xc7\x68\x39\xc7\x82\x88\x03\xd5\xe4\xb7\xc3\x5b\x7f\xa0\x3b\x3a\x3d\x7f\x75\xfc\x2d\x7a\x89\x36\x7f\x7e\x73\x8d\xbf\x7c\x84\x26\x93\x09\xf4\xdf\x57\x1f\x64\x59\x17\xfe\xfa\x6d\x1f\x5d\x10\xd9\x2d\x91\xfa\xdf\x31\x5b\x2c\xa8\x54\xc4\xdb\xff\xed\x37\xd7\xeb\x4e\x48\x2b\x08\x8f\xc6\x08\x5d\x5c\x1e\x3d\x3f\x7b\xf9\x0c\x9d\x7f\x7b\x74\x71\xaa\xbe\x7c\xc9\x6a\xe2\xf9\x02\xc8\x06\x24\x96\x0c\x89\x6e\xba\xa0\x52\xb1\x09\xe0\xc9\xc9\xbb\x8e\x08\x29\x60\x05\x15\xed\x5f\x9e\xfe\xbf\x4b\xb3\x00\x7a\x91\x15\x3c\x39\xa7\x42\xd3\x7a\x82\x8e\xa4\x5e\xa3\xb6\x06\x8e\x75\xbf\xec\xc1\xd7\xb0\x50\xe9\x26\xe1\x44\xb0\xe6\x86\x08\xd5\x42\x81\x63\x9d\x14\x12\xb7\xb5\x42\x20\x43\x04\xb7\x35\xaa\x89\x24\x7c\x41\x5b\xdd\x25\x65\x14\x8b\x6a\x4b\x7e\x91\x6e\x57\x4d\x60\x9f\x16\x87\x27\x0b\x2a\x85\xc7\x4e\x2f\x89\x20\xfc\x86\x56\x04\x91\x1b\xd2\xea\xb6\x98\xb6\x6e\xba\x83\x63\xea\x01\xf7\xd0\x6a\x4e\xab\x39\xa2\x2d\x95\x14\x4b\x83\xaa\xe4\xb8\x15\x54\x52\xd6\x2a\x62\x9b\xf9\x6a\xac\xf4\xb8\xe7\x40\x45\xb3\x78\x5f\x8d\xd1\xc5\xe9\xe5\xf7\xe7\x7e\xe5\xfe\x3d\x27\x6d\x40\x54\x34\x25\x57\xb4\xd5\xa0\x97\x98\x4b\x5a\xd1\x25\x6e\xa5\x40\x6e\x03\x5b\x74\xf4\xde\x20\x72\x82\x4e\xf4\xde\x54\x40\x14\x44\xbf\x38\x22\x81\xb1\xe4\x64\xa9\x7a\xe5\x73\x03\xa9\xa5\xdb\x76\x0d\xe6\x7b\xa8\x62\x4d\x43\x2a\x35\x2d\x90\x3c\xac\x26\xc2\x72\xd2\x0d\x53\x73\x37\x30\x28\x47\x95\x96\xbd\x5f\x08\xc4\x19\x93\xe8\x5d\xc7\x78\xb7\x40\x15\xe1\x92\xce\x68\x85\x25\x81\x15\xae\x58\x2b\x48\x2b\xb4\xb8\xd0\xf0\x78\xa7\xe7\x54\x53\x21\x39\x9d\x76\x6a\xab\x5c\x93\x35\xba\x22\xad\x62\x64\x45\xd2\x25\x67\x92\x55\xac\x41\xa3\x93\xe7\xcf\xc6\xc0\xce\x44\xa2\x6e\x09\xfd\x38\x6e\x6b\xb6\x50\xf0\xa6\x04\x57\xac\x9d\x58\x62\xc2\xc4\x61\xae\x00\x45\xef\x87\x8a\x2d\x96\x0d\x91\x43\x6c\xeb\xf8\xc6\xad\xa1\xde\xc3\xbd\xbc\x03\xa0\x14\xd5\x66\xb8\x92\x42\x6f\x0f\x2d\xb1\x97\x9c\x55\x44\x08\xc3\x33\x0a\xde\x06\xb6\x31\x18\x99\x01\x23\xa6\x79\x3c\x46\xc7\xaf\x5e\xbc\x38\xbb\xbc\x3c\x3d\xd9\xc4\x38\x7b\xa1\x98\x57\xc7\xc3\xac\x6b\x9a\xb5\x5d\xf9\x1a\x06\xcb\x86\x4e\xf6\xd5\x11\x9a\x61\xda\x74\x1c\xc4\x07\x69\x25\xe1\xf1\x38\x33\xc6\xc3\x09\x00\x1d\x58\xc2\x50\x7a\xc6\x35\xac\xbf\x9a\x31\x96\xdb\xb0\xb4\x1a\x57\x23\x69\x57\xcb\x11\xb4\x5b\x02\x6f\x2b\xb2\xd6\x1d\x27\x6e\x33\x0a\x84\x51\xc5\xa9\xa4\x15\x6e\x1c\xde\x8a\xe1\x56\xb4\x69\x50\x85\x3b\xa1\x61\x54\x73\x75\x10\x49\x86\xe6\xb8\x91\x93\x7b\xf7\x70\xa5\xd6\x67\x84\x9b\x66\xec\x19\x40\x9d\xdb\x7a\x1d\xde\xdf\xbb\xa7\x04\x7f\xd8\x8a\xb4\xdd\x42\xaf\x12\xac\xce\x01\xfa\xfe\xac\x95\xff\x44\xef\xef\xd9\x53\x22\x02\xa9\x48\x65\xc4\xf4\xd1\xf7\xc7\x97\x67\xaf\x5e\xf6\xb7\x83\xb3\x05\xe4\xc2\x86\x36\x9a\x0d\xa0\xd1\xef\x3d\x08\xaa\x93\xe0\x0d\x6b\xb6\x41\xef\xe5\xab\x97\xa7\xfd\xbf\x1e\x6b\x09\xc0\xf8\x50\x13\xbb\xa7\xfb\xd1\xfe\x85\x54\x1d\x88\x91\xde\x26\x3f\x10\xae\x05\xc5\x60\xab\x23\xf8\x22\x9c\xfa\x03\xa3\xaa\x19\x61\x2b\xd5\x56\x8e\x37\x2a\x15\xb0\xa5\x95\x5c\x59\x19\xc9\xe0\xd7\xda\x33\xb0\x70\xe0\x24\x43\x18\xb5\x64\x65\xd8\xd1\x30\xa8\x3d\xb1\x70\x57\x69\xa1\xa4\x37\x67\x46\x7e\x18\x53\x9f\x38\x80\xcc\xe8\x9e\x9b\x8e\xc5\xb5\x62\x1d\xec\x27\x2b\x81\xab\x8e\x73\xd5\x4b\x8f\x07\xdb\x84\x0a\xbd\x95\xe1\x6c\xb2\xfd\x4d\x3f\xbd\xa8\xff\xf3\xbf\xf7\x72\xc8\x33\xca\x85\x44\x37\x94\xac\xd0\x88\xb6\x4a\x26\xd3\x1b\x32\xb6\x22\x29\x1a\x67\xe2\x3a\x43\xa7\x1f\x28\x59\x0d\x00\x6e\xf0\xb6\x70\xbf\x10\x29\xa9\xfc\x48\xe6\x87\x23\xfd\xfd\x69\x5b\x7f\xb0\x51\xc3\xd9\xb4\xb8\x19\x82\xcb\x24\x6e\xd0\xd3\xef\x5e\xfd\x1b\xd0\x21\x35\x9a\xae\x11\x6e\x1a\x73\x1c\x69\x3d\xa4\x21\x57\x5a\x87\x2a\x2e\x91\x1f\x4c\x2a\x60\x17\x00\xe6\x00\x7d\xff\x94\xfe\xd2\x33\x9c\xe8\x96\xcb\x66\xad\x30\x57\x23\xc1\xe0\x45\xc8\x51\xd7\x33\x35\xe5\xda\x1c\x15\x9c\xac\x30\xaf\x8d\x10\x05\xa9\x36\x55\x82\x94\xd6\x0e\xd0\x92\x93\x1b\xa5\x89\x27\x90\x00\x45\x25\xd2\x2e\x00\x87\x3e\x34\xc1\xda\x51\xa8\xf6\x0f\xc4\x3a\x89\x70\xa2\x06\x0e\x53\xe6\x8d\x86\xe5\xc7\x54\xbf\x8c\x8b\x1b\xb7\xa0\x9d\xa5\x1b\x77\xd5\x7f\x60\x42\x77\x07\xd6\xa8\xac\x67\xee\x90\xd6\x24\x04\xce\xa0\xbf\x92\xba\x4f\xcb\xeb\x96\x15\x5b\x28\xc6\x0d\xe6\xd2\xb7\xb7\xd5\x80\x5b\x6c\xed\x04\x24\x7a\xd1\x09\xa9\x08\xca\x5a\x82\xae\x38\xc1\xfa\x58\xc5\x20\x62\x22\x60\x83\x32\x62\xb2\xa5\x48\x38\xdb\x66\x9e\x68\x45\xe5\xdc\xed\x00\x44\xdb\x19\xe3\x0b\x1c\x6f\xdc\x90\x1d\x0f\xa2\x6f\x55\x9f\xb3\x93\x3d\xb7\xe7\xaf\xc9\x7a\xcf\x6a\x1e\xa5\xbf\x71\x5d\x73\x50\x89\x38\x6b\xc8\x5e\x04\xca\x82\x08\x30\xd8\x43\x2b\x42\xaf\xe6\x72\x0f\xf6\xe5\x82\x71\xe2\x71\x82\x91\xdb\x19\x3b\x40\x3f\xe6\xbe\x82\xc9\x4b\xf3\xeb\x4f\x3b\x4b\xc9\x12\x17\x7c\x10\x31\xd9\x0f\x78\x83\xc4\x52\xcb\xaf\xd5\x6b\x84\x85\xa0\x57\xed\x42\x71\x42\x1f\x8b\x9d\x62\x65\x45\x37\x04\x1a\x99\xc3\xab\xa1\x42\x46\x30\x39\x59\x72\x22\x88\x52\xc0\x14\x2b\x3a\xf0\x5a\x47\xd7\x7b\x46\xb1\x04\xa8\x66\x8a\x2d\xce\x4e\x84\x19\xdc\xe8\x8f\x73\x1c\x43\x34\x20\xf6\x34\x3b\x69\xa3\x40\x2f\x9e\x16\xaa\x60\x30\x04\x7c\x6b\xf4\x0a\xe3\xb3\x11\x66\x15\x9d\x0b\x67\x62\xfe\x57\x5a\x3f\xc1\x3a\x5e\x81\xb7\x45\x2b\xff\x2d\x11\x42\x5b\x05\x0a\x37\x35\x5d\x82\x6b\xc2\x91\x20\xc6\x7a\x41\xb8\xb9\x62\x9c\xca\xf9\x02\xb0\x8b\x00\x0e\x6d\x7e\xf5\xd1\x43\x5c\xc0\x90\x07\xe8\x42\x2a\x2b\xab\x80\x53\x4d\x70\xdd\x80\xe9\xca\x66\x88\xa8\x25\xd0\x8a\xb2\x59\x80\x93\xe7\xcf\xbc\x19\x23\x99\x12\x01\x56\xb9\xad\x6d\x1b\x8b\x41\x04\x3b\xb0\x5d\x8d\x58\x3b\x71\x23\x69\xbf\x08\xa9\xe8\x8c\x1a\x28\x84\x2f\x00\x01\xec\x2d\x2d\xcd\x8e\x6d\xb7\x98\x12\x1e\x6f\x68\xb0\x1d\xb0\x46\xcd\x6b\xe4\x88\x4d\x95\x18\x56\xe0\x03\x89\xa9\x56\x50\x10\xac\xf4\xf2\x69\xc3\xaa\x6b\xbd\xca\x00\xda\x88\xb1\x08\xb4\x15\x69\xe8\x8a\xde\x90\xd6\x11\x67\x0f\x51\x89\x2a\xdc\x22\x81\x67\xa4\x59\xf7\x18\x21\xa1\x6a\xa5\x3e\x27\xcf\x9f\x81\xae\xfd\xe8\x69\xbe\x51\xd2\x36\x5f\x6d\xd1\xe6\x71\xa1\x4d\x7e\x18\x62\x7e\x45\x24\xaa\x3b\x63\x83\x96\xd9\x64\x4f\x51\x5d\x90\x8a\xb5\xb5\xe7\x6d\xdd\xf5\xc4\xf4\xcc\xf1\x48\x86\x50\x67\x29\x78\x00\xfb\x86\x88\x96\x58\x0f\xb6\xbf\xe4\xa4\xa2\x42\x21\xf6\x7d\x4b\x7f\x81\xfe\xc9\xf8\xa7\x6d\x7d\x49\x17\xc4\x0e\xdf\x7b\xf4\x16\x8d\xdb\xe1\xa3\x17\xdc\xa5\xee\xf0\x75\x20\xbd\xab\xcb\x1f\xc0\x01\x20\x70\x46\x02\x34\x25\x58\x02\xcb\xbc\x67\xe2\x0e\xee\x1c\x2b\x65\x98\xb4\x7e\xc7\x0c\x9d\xcc\x66\x3e\x77\x38\x9b\xc9\xbb\x0e\x37\x96\x21\x6d\x27\x9a\x1f\xd1\x4e\xe1\x0a\xf6\x28\x20\xb2\xed\xf1\x7c\x09\x7a\x9d\xe8\x1a\x69\x8f\x88\xd7\xc7\x08\x5f\x5d\x71\xa5\x7d\x1a\xc7\x87\x9a\x63\x22\xd3\xad\x80\x8e\x60\x85\xc2\x3a\x10\xb8\x88\x93\x8a\xd0\x1b\xa2\xd5\x44\x1c\x78\x77\xac\xc0\x8e\xa0\xbc\x3e\x46\xe0\xa2\xd3\x8a\x6f\xc1\x89\x03\x5a\x21\x88\x37\x7b\x64\x18\x3f\x0d\x11\xc1\xac\xad\x10\xef\x95\xea\xaf\x8f\x4b\x72\x5d\xd3\x42\xad\xc8\xb2\x9b\x36\xb4\x52\xca\x83\xf0\xdc\x66\x64\xa8\xf6\xa8\x90\xb6\x62\xb5\x12\x4c\x42\xe9\xef\xa0\xde\x35\x6c\xb5\x7f\xc5\xe2\x43\x89\xaf\x97\x92\xa1\x86\x4e\x39\xe6\x6b\x70\x8b\xb4\x68\x4e\x7e\xd9\x37\xdd\x63\x81\xf8\x8c\x33\x25\x66\xdd\xd8\x8a\x7b\xa5\xd3\x17\x0c\xf9\xf7\xd0\x8c\x35\x0d\x5b\x69\xc3\x01\x7c\x86\x6d\x4d\x6f\x68\xad\x98\x46\x21\xec\x40\xd6\xd7\x57\xe7\xdd\xf4\x39\x59\x2b\x32\xe8\x83\xe3\xa7\x7e\x0d\xf8\x0d\xa9\xd8\x0d\x1c\x5a\x43\x1b\x11\xab\x05\x55\xed\x74\x27\xd8\x94\x58\x9f\x71\xd4\xfa\xe6\xa4\x3d\xa1\x9d\x0b\xc8\xfb\xc4\x9c\x53\xc8\x61\x70\x45\xc0\x09\xa3\x8c\xde\x16\x9d\x3e\x7d\x01\xa1\x04\x62\x6c\x8e\xfe\xa1\x3a\xa1\x47\x51\x0d\x38\xad\x49\xc1\x90\x55\x4c\x68\x40\x44\x43\xab\xa3\x43\xd9\x12\x0e\x05\xb1\xd4\xca\xe1\x04\x5d\xce\xd5\x2c\x52\x0a\x98\x45\xd7\x14\x77\xa7\x68\xe4\x45\x92\x0c\x75\xcb\xda\x20\x4e\x39\x6a\x58\x85\x1b\xdf\x56\xcf\xc9\x6a\x26\x60\xdc\x1b\xcc\x1c\x12\xc6\xf9\x8d\x25\x1e\x54\xfc\xed\x32\x8d\x36\x8a\x17\xd3\x72\x7d\xfa\x87\x69\xec\xa0\x82\x82\xbb\xfd\xaf\xa7\xa5\xf7\x50\xf7\xce\x4a\x7a\x2f\xdc\x3b\xe9\xe8\x31\xd4\x4f\xa8\xa2\xdb\x6e\x99\x70\x3e\x72\x48\x2a\xe9\x64\xc5\xd3\xdf\xda\xf6\xdf\xda\xf6\xdf\xda\xf6\xdd\xb5\xed\x01\xe9\xf0\xfa\x58\xa0\x25\x86\xd3\xcc\x70\x62\xdf\x31\x0b\xb1\x4d\x41\x80\xf1\xac\x96\x05\x5e\xb8\x7d\x36\xdb\x9f\xe2\xb6\x8e\xc6\xe8\x84\x0d\x45\x09\xbc\x20\x3e\x46\xa2\x34\x24\x1b\xb7\xd7\x27\x6d\x41\x51\xfb\x81\x49\x72\x82\x25\xee\xd7\xd7\x6c\x8b\x92\x84\x00\x9e\x0e\x34\xb6\x2d\xa7\x17\xc1\x39\xd6\xaa\x43\xb3\xb6\x31\x4b\x35\x6b\x4e\xf6\x41\xcf\x70\x2a\x20\x88\x6e\xd1\xc1\xd1\x3c\xeb\x1a\x35\xf2\x04\xbd\x64\x56\x31\x85\x00\x15\x5d\x2c\x1b\x6a\xc3\x4d\xd1\x18\x91\x14\x46\x2f\xbe\xbf\xb8\x44\x73\x7c\x43\xa2\xfd\x5b\x19\x23\x86\x38\x3f\xbc\x76\x16\x56\xde\x24\x48\x90\x88\x86\x50\xa4\x70\x20\x3e\x8a\x76\x39\xa8\x5e\x66\x1e\xd6\x63\x7b\x52\x18\xb6\xae\xd0\x82\x48\xac\xb4\x1c\x84\xa7\xe0\xd0\x0d\x4d\x82\xd8\xee\x3a\x6a\x1a\x34\xa7\x42\x32\x0e\xb3\xd7\xaa\x87\xeb\x0e\x49\x27\x8c\x2b\x6b\x8f\xf0\x05\x6e\x61\xf1\x32\xcd\x49\x48\xde\x55\x46\x75\x7a\x61\xbb\xbe\xcf\x59\x48\x13\x79\x46\x03\xfd\x29\x76\x63\x87\x40\x1b\x22\x53\x35\xaa\x70\x6c\xa9\xe3\x49\x73\x0f\x73\x56\x8a\xdd\x22\x7a\x2e\xc2\x79\x8d\x4b\x23\x28\x00\xf6\x08\x1a\xd4\x4e\x6c\x3e\xc4\x30\xc2\x42\x62\x1e\x69\x26\x43\x8a\xc9\x76\x20\x49\x1c\x40\xd9\x08\x30\x0b\x62\x0d\x21\xab\xda\x9d\x6e\x1a\xa0\x10\x32\x50\xfb\xd6\x85\x0b\x36\xaf\xe5\x0d\xe6\xc5\x58\x41\xc9\x3a\x54\x0d\x10\x5e\xa8\x95\x4f\x07\x93\x4c\xab\x01\xc1\x6e\x01\x9d\x48\x9d\xa4\x54\x8a\x20\xa4\xd3\x8b\x85\x86\x7f\xa4\xc1\x97\xd5\x55\x83\xe3\x37\x9c\xe0\xeb\x9a\xad\xda\x9f\x12\x2c\x39\xae\xae\x05\xa2\x33\x47\x11\x10\x2f\xe0\xbb\x08\x42\x35\x83\xeb\xea\x31\x11\xe7\x98\xd6\x07\xe8\x1b\xc6\x9a\x9c\x18\x8c\x5f\xe1\x96\xfe\xaa\x4f\x4b\x36\xf3\xfe\x54\xaf\x0a\x82\x4d\x67\x24\x7c\xec\x2b\x70\x79\x36\x3a\xf6\x85\x38\xeb\x94\xa9\xc6\xa6\xea\xc4\x63\x1c\x76\x89\xd3\xe1\x06\x76\xe0\xb6\x2e\xdc\x1c\xfd\xd7\xda\xb3\x70\xec\x3d\x0b\x81\x9d\xef\x53\xfb\x6c\x98\xb6\x97\x52\x5b\x79\x1a\xf2\xe1\xc3\xc3\x0a\x0b\xc1\x2a\x0a\x47\xab\xb3\x0f\x4f\x82\x5c\x94\xe7\x64\x8d\x9e\xb9\x5c\x94\xc4\x01\x04\x76\xa9\x51\xb4\xdd\x11\xa2\x5d\x30\x4e\xc9\x93\x4a\x86\x17\x4e\x82\xe0\x08\x80\x7d\x6a\xed\x01\x75\xea\xb4\x35\xf9\xe5\x00\x35\xa4\xbd\x92\x73\xb4\x8f\x1e\xf5\x12\xa0\xbe\xbe\x4a\x1c\x0c\xae\x29\x6d\xa9\x1c\x65\xd6\x26\x0a\x3f\xa1\x88\x4b\x7f\x4a\xc5\x55\xf2\x3b\x49\x83\xb7\x69\xef\x82\xfc\x48\x1a\xf5\x87\x08\xdd\x67\x97\x30\x41\xdc\x71\x3b\x17\x54\xd4\x27\xa3\xe5\x38\x3c\xa9\x34\xbd\x9a\xd9\xc4\xda\xf9\x87\xf6\x0c\xca\x9b\xc0\xd9\x73\x08\xe4\x2d\xfc\x68\x29\xab\x5a\xd8\xff\xe7\xcd\x0c\x81\xd1\xa1\x25\x75\x11\x52\x40\x65\x0d\x2e\xf8\x22\xef\x10\x52\x1c\x1d\x46\x0b\x90\x37\x8e\xe4\x21\x3a\x44\x3f\xfe\xd4\xd7\x06\x24\x15\x3a\x44\x33\xdc\x08\x52\x22\x58\xb2\x88\x40\xba\xe4\xbb\x42\x37\xb7\x84\xaa\xbd\xfb\x23\x6f\x68\xd6\x0d\x1d\xda\x15\x74\x4d\x7e\xbf\x97\x6d\x9c\x0a\x16\x6d\x8c\x66\x5d\x8b\x2a\xb6\x5c\x8f\xc6\x07\x99\x76\x12\x8e\xc0\x89\xec\x78\x0b\x03\x6d\x0b\x56\x10\x79\x19\x50\x76\xf4\x33\x6a\xc9\x2a\xe1\xf3\x71\x32\x4c\x69\x79\x7c\xaf\x1d\x46\x7e\x13\xae\xda\xe8\x67\x73\x96\xb8\x13\x6b\xcb\x73\xad\x88\x5e\xca\x10\x09\xe8\x9d\x91\x04\xb6\x71\x28\x06\xc7\xdd\xc0\xe8\x96\xd5\x82\xbf\x76\x18\xd7\x6d\x7d\x31\x7a\x57\x0d\x49\x86\x22\x06\x11\x43\xbe\xab\x76\x59\x95\x93\xe7\xcf\x40\xe8\x3f\x27\xeb\xd1\x75\x26\x63\x06\x38\xfa\x3a\x66\x67\x14\x27\x3e\x39\x9e\xb5\xb6\x0a\xe4\xa5\x1b\x07\x82\xb2\xfc\xa7\x90\xf2\xd6\x5e\x79\x73\xe2\xa8\x5e\xd0\xf6\xc1\x83\x07\x7d\x9a\xfa\x31\x6b\x67\xf4\x2a\x40\xca\x9e\x99\xda\xa7\xa1\x74\x0d\xa5\x50\x42\xde\x1e\x6e\x91\xd2\xda\xf9\x26\xfd\xae\xed\x16\x4a\x1e\x89\xb3\x16\x76\x5a\xae\x4e\x86\x1d\x0c\xc5\x5e\xc6\x7d\x46\x3f\xeb\x61\x6d\xdf\x22\xd9\x92\x71\xd0\xa1\xee\x53\x5a\xa7\x81\x59\x6d\xab\x27\xc7\x33\xbb\x88\x52\x9b\x76\x9c\x62\xdc\x79\xc7\xb9\xc6\x9d\x6f\x39\x69\x50\x9e\xeb\xeb\x2b\xed\x0d\xda\x62\xbe\xd6\xbd\xb3\xe3\x4c\x6d\xb7\x1d\xe7\x68\xbb\xed\x36\x3b\xaf\x14\x5b\x35\xd8\x4d\x75\x23\xc3\x1e\xe7\x9a\x87\xc2\xf4\xd1\xff\x6c\x9a\x68\xd6\x51\xc9\xff\x6e\x91\x82\xe9\x9b\x70\xd6\x5d\x1d\x04\xbe\x7b\xef\xc4\xb5\xe9\xa1\x13\xa2\x25\x51\x4a\xa4\x4e\x8d\x0d\x73\xc7\x96\x78\xad\x8c\x32\xda\x56\x9c\x60\x41\x04\x22\x37\x84\xaf\x0b\x99\x67\x10\x86\xb9\xc1\x4d\x47\x40\xa8\x74\x8d\xa4\xcb\x86\x7a\x21\x02\x09\x6c\x32\xcc\x6c\x93\x0c\x5d\x11\x19\x38\x15\x61\xa8\x5e\x02\x2b\x00\xba\xe7\x99\x41\xe6\x9c\xf0\x8a\xb4\x12\x5f\x91\xdc\x02\x2c\x10\x7a\x08\xc0\xe8\x67\xb4\xcc\xa0\x15\xe9\x3d\x04\x05\x1d\x06\x50\x4a\x64\x07\xfd\xba\x47\xb4\xed\x6d\x94\x0c\x7b\x03\x7b\x69\x6f\x90\x01\xf7\xb6\xa2\xde\x96\x02\x32\xf9\x66\x27\x39\xd3\xf7\xd3\x96\x1b\x39\xff\x72\xa7\x0d\xb1\x59\x81\xdc\xb0\xba\x43\x3f\xf7\x1f\xb9\xfa\x7c\x0c\xfd\xd4\x26\x6b\x97\x2e\x94\x26\xe5\xda\x9d\x3a\x29\x03\xd9\xe9\x36\x2c\x83\x33\x3f\x34\x84\x75\x29\x9c\xde\xe0\x8f\x42\x23\x65\x86\x9a\x73\x28\xcd\x2c\x18\xfb\x01\x74\xc8\x31\x44\xa6\x26\x33\x1d\xa8\x40\x9c\xcc\x08\x27\x6d\x65\x1d\x5d\xd6\x64\xc1\x66\x50\x21\xf1\x62\x69\x93\xe7\x4d\x37\x07\x18\x37\x0d\x9a\x75\x12\x32\xff\x63\x5c\xc5\x04\x9d\xcd\xd0\x5b\xe3\xf1\xd6\xc9\x16\x00\xf8\x2d\xcc\xb1\xcd\x7c\xe9\x72\x4e\x5a\x07\x17\x6e\x55\x24\x93\xa7\xc2\xc4\x2c\xa6\xeb\x03\xdb\xd0\x75\x48\x7c\xeb\xa0\xf5\xcd\x2e\x2d\xfa\xe8\x4b\x1f\x2e\xf8\x07\x1a\xe5\x48\xed\x73\x32\x33\xff\x1d\x47\xb0\xfb\xfc\x93\x97\xb0\x84\xbd\x0a\x90\x1b\xcd\x86\x9c\xfa\x63\x12\xa9\xab\xa4\x4e\xa2\x13\x79\x70\xc0\x2c\x90\x71\xd3\x25\xeb\xd7\x0b\xd7\xcf\xb0\x17\xb2\x23\x75\x19\xf4\xee\xf1\x8e\x02\x0e\x6e\x4d\xca\x8e\xc2\x63\xb6\x58\x76\xd2\x71\x93\x58\x51\x59\xcd\x75\x56\x80\x42\x6c\x8a\x05\x64\x07\x21\x36\x9b\x09\x22\xb5\x1f\xc8\xa3\x69\x48\xf3\xc0\x77\x9b\xf4\x1e\x0c\x57\x44\x5e\x86\x2c\xf3\x94\x71\xab\x3d\xe6\xfc\xe1\x54\x0f\xfb\x9f\x7e\xcb\x6f\x92\x30\x9e\x56\xd2\x87\xb9\xcf\xf6\x8b\x58\xb0\x74\x84\xa4\xcc\xb1\x57\x58\xd6\xbd\x22\x99\x53\x19\x9f\xe0\x75\xe8\xf8\xae\xd0\xca\x8f\xa1\xf7\xd5\x71\xc1\x97\x51\x98\x7b\xbc\x07\xfb\xc5\xe4\xb7\xac\xa9\xb5\x3a\xf2\xd6\x5d\xa7\x99\xe8\xad\xf5\xd6\x6e\x3a\xe7\x6e\x73\x62\x6c\xda\x10\x17\x60\x08\xb7\xaa\xf5\x03\x5a\xc7\xa3\x6f\x6e\x2d\xa0\x03\x23\x98\xb7\xb0\x8d\x8c\x0e\x13\xdf\xfa\xf2\xd2\x4f\x5b\x4e\x2d\x93\x7d\xc6\x53\x21\xb8\x82\xc3\x38\x09\x27\x15\xe3\x2e\x3d\xde\xc5\x4b\x80\xad\x4d\xe6\x5b\x90\xa7\xef\xe5\x2e\x38\xfd\xf4\x58\x5a\x6a\x6b\x45\xd6\x0f\xf7\x06\x18\x52\x14\xc0\xc2\x7c\xdc\x3e\x8e\xa3\x38\x8c\xa3\x96\x36\x88\xce\xf4\x21\xd3\x7e\x21\xd1\x8c\x75\x26\x78\xe8\x62\xde\x9e\x5c\x3e\xae\xa3\x2c\x3c\x6d\xc7\xc2\x37\xea\xd4\x14\x3a\x02\x76\xc5\xd9\x4a\x89\xf9\x9a\xc2\x81\x8f\xf9\xda\x41\xab\x19\x11\x48\x51\x0f\x5c\xdf\x3a\xf6\xde\x30\x5c\x2b\xbc\x40\xdb\x84\x3d\x1f\xdd\xc1\xa1\xc2\xb4\xc8\xa4\xb3\xd9\xd3\x91\x7f\x66\xf4\xb3\x9e\x60\xbe\x8b\xa3\x66\xff\x0a\xf6\x06\x9d\x01\xdf\x58\x9a\x9d\x38\xac\xc1\x47\xd7\xcc\x26\x66\x9a\x13\x33\xcd\xc9\x94\x71\xce\x56\x4f\x3e\x7f\xaf\x61\x27\xa0\x7f\xff\x7a\xa4\xa8\x7e\xa0\xfb\x5a\xa8\x17\xba\xef\x39\x96\xf3\x74\x5f\x26\xe3\xbf\x21\x33\x74\x58\xc0\xe6\xc7\x70\x5e\x3f\xa5\x7b\xdb\x4b\xa4\x00\xce\x44\xbb\xb0\xa2\x96\xbf\xdf\xcb\xff\x67\x7a\xb6\xb4\x49\x37\xea\x05\xd6\xc9\x07\x0b\x56\x6b\xee\x89\x9d\x61\x66\xab\x9a\xc8\xa7\x0f\xfe\x65\xac\x51\xde\xae\xa0\xad\xe3\x1b\x92\xae\x60\x4b\x56\x7e\xe7\x46\x3f\x86\xb4\x5b\x72\x52\xf4\xc3\xe8\x50\x71\x28\x6d\xd1\xe1\x21\x7a\x88\x7e\xfb\x2d\x6a\x3c\x0a\x46\x71\x5e\xdb\xaf\x0f\xfb\x81\xec\xa3\x47\xe8\xf3\xcf\x23\x18\x25\x10\x4f\x0c\x88\x25\x67\x4b\x26\x48\x1d\xc2\x18\x8d\xc7\x07\xd9\xba\xdd\x3f\xd6\x02\x05\x68\xbc\x4e\x03\xa9\xb0\x83\x6d\x89\x80\x99\x24\xf6\x36\x8f\x06\x6e\x5a\x33\xee\xae\x5c\x66\x57\x7d\xee\x17\x16\xfc\xb6\x2c\x8f\x3b\x39\x1f\xbd\xe8\x24\x96\x64\x8c\x3e\x12\xff\x97\x99\xbf\x40\xe9\xd2\x1e\xc0\x42\x10\xb8\x55\x97\xfe\xa0\x3e\x8b\x74\xa9\x0e\x0f\x4b\x2b\xb8\xd7\xd3\x59\x08\x30\xa0\xec\x72\x29\xc6\xf5\x48\xc3\x69\xb5\xa0\x62\x81\x65\x35\xf7\xa9\x78\x06\xa4\xb8\x9f\xc1\xec\xdb\x95\x21\xa2\x9b\xe6\x1f\xa1\x5f\x3e\x6d\x8b\x7b\xce\xa6\x8b\xbc\x09\xd2\xa9\x46\x63\x1b\xea\x49\x94\x5b\x9d\x73\x65\xf3\xbc\x16\x26\x0b\x1a\xa3\x39\xf9\x45\xed\x7f\xd5\x81\xcd\xd0\xe3\xaf\xd4\x69\xa8\x86\x50\x36\xd8\x88\x4e\x08\x7a\xf4\x3f\x68\xba\x96\x44\x28\xee\x7c\xf4\xd5\x3f\xd1\x94\x4a\x31\x8e\x40\xbf\xe5\x4a\xe8\x4b\x3a\x6d\x0c\x2a\x6f\x8d\x28\x52\x22\xc7\x68\x5d\xa3\x7f\x6a\x28\xbe\x27\xa8\x95\xd0\xfc\x3b\xb6\x02\x95\x23\x06\xf2\x44\xf7\xfc\x7a\x34\x9e\x48\xf6\x0d\xbd\x3a\x6d\x6b\x8a\xdb\x6f\x14\x90\x51\x09\xca\xb7\xf4\x6a\x7e\x6b\x30\x10\x90\x0d\xc8\x88\x0e\x0d\x15\x27\x3a\x87\xf8\x5b\xf2\xcb\xc8\x0f\x33\x9e\x54\xac\xad\xb0\x1c\xf5\xb4\xf9\x8e\xad\xc6\x1e\x76\x91\x99\xc3\xc1\x26\x26\x04\x78\x78\x88\x1e\x7f\xb5\x77\xaf\xcc\xae\x6f\x76\x5f\x3f\xcf\xad\xe3\x7b\xe9\x21\x11\x8e\x9f\x9e\x16\x81\xad\xb2\xa7\x56\xfd\xec\x64\xaf\x78\x0f\x30\x3b\xc9\x21\x58\x9b\x8b\xdc\xd8\x60\x70\x23\x18\x50\x3a\xa7\xcf\x5d\x1b\x77\xd6\xb4\x09\xa7\x0e\xc1\x37\xfe\x14\xff\x7f\x3f\x82\x92\x50\x41\xb5\x95\x40\x3f\x05\xf5\xee\x2d\xd4\xad\x00\x52\x3a\x55\x28\x1b\x4e\xf1\x16\x56\xad\x03\xa9\xa7\x76\x97\xfb\x63\x9b\xe1\xbe\x25\x98\xcb\x29\xc1\x72\xeb\x21\xe7\xb6\xc7\xee\xc3\xf6\x88\xf2\xb7\x81\x0e\xb7\x61\xf0\x82\xa0\xef\x19\xfb\x8d\x9d\x8d\x0e\x8c\x83\x63\x00\x72\xb3\x05\xf3\x86\xa8\x53\xff\x66\x94\x34\xc6\x76\x0e\x87\x74\x24\x81\x55\xe9\xb9\xc1\xae\x64\x9d\x86\x0d\xd3\x02\x7f\x92\x56\x2f\xfc\xdf\x7d\xd6\x52\xae\x5d\xa8\x8f\x5f\x9e\x8c\x9d\xd4\x2e\xf4\x7f\x4d\xe2\x7b\xfd\xfa\xd8\xd0\x97\x5c\xcc\x6c\xf5\xc4\x6c\xf2\x5d\x21\xac\x90\x9f\x19\x7e\x74\x2a\x7e\xc0\x0d\xad\x61\xa8\xc8\xe7\x34\x0a\x30\x2c\x18\x42\xbd\x0e\xbb\xf2\xa1\xb7\x35\x30\xeb\xa3\x2b\x83\x89\x08\x3e\x3e\x40\xf7\x5f\x92\x95\x31\x2c\xe0\x2b\x27\x95\xd2\x3b\xaf\x48\x74\x0b\xc5\x11\x8e\x32\x6d\x0d\x39\x74\x9a\xe0\xe0\xeb\xbf\x9f\x9c\xa3\xf7\x76\xc0\xbf\x10\x48\x8a\x51\x2d\x59\xe5\x65\x06\x33\x64\x0c\x58\x2c\xfc\xe6\xaf\xc6\x64\xc9\xf4\x3e\x2a\xf3\x6c\x0d\x06\x1a\x29\xee\xda\x85\xb3\x5a\xb2\xfa\x24\xdc\x95\xc4\xf0\x12\x02\xee\xc0\x68\x96\x58\x01\xa7\xf9\xbf\xff\x6a\x7c\xf6\x41\x85\x59\x44\xa9\x3f\x82\xd7\x42\x3e\x53\x7c\xf7\xb1\x78\xcd\x45\x51\xa3\x19\xef\xc0\x63\x99\xbf\x5b\xf3\x99\xfe\xff\x41\xee\x0e\xbf\x0b\xbb\x1d\x7b\xcb\xdb\x0d\x31\x09\x5d\x9c\xf7\xdf\x24\xe1\x0a\x4b\x66\x63\xf1\xfa\xd2\x40\x29\x01\xcb\x83\xa7\xa6\x6d\xc3\x70\xfd\x24\x9b\x92\x35\x62\x1f\x98\x66\x0f\x66\x16\x40\x34\xf1\x2d\xc7\x50\xb6\xe2\xc8\x4d\x6f\x0f\x49\xb6\x3d\xe4\x8d\xab\xd5\x17\x55\x26\xab\x97\x9b\x03\xcb\xff\x6d\x92\xe1\x36\x6c\x9f\xcf\x3e\x9e\xfb\x0e\xb4\x7c\xfa\xdd\xab\x7f\x5f\xf4\x07\x8e\xd5\x86\xda\x18\x4b\xfd\x6f\x23\x29\x32\xb2\xcf\x47\x37\x9f\x1c\xa2\x47\x93\x87\x46\x0f\xd3\x81\x7c\xbf\xa9\xe4\x8a\x90\x16\xfd\x4a\x38\x03\x41\xc5\x5a\x72\xc7\x15\x1a\x0c\xc6\x47\x88\x15\x17\xea\xc1\x03\x74\xda\x82\xef\x9f\x71\x54\x53\x01\xff\xc5\x9d\x64\x0b\x2c\x69\xe5\xb2\x17\x2a\xdc\x54\x5d\x63\x6b\xb9\xb5\x35\x5a\xe2\x35\xdc\x5f\xdb\xa8\xb8\x19\x48\x26\xeb\x4c\x8f\x55\x8f\x7e\x46\x44\xff\xaf\x9c\x74\xb6\x41\x9e\xa8\x2e\x45\x11\xd2\x33\xdc\x4e\x82\xc4\x20\x56\x10\x23\x1b\xa1\x7b\xa1\xd8\x4b\x16\xb2\xa0\x32\xbc\xcb\x7a\x7a\x43\x5a\x39\x2a\x39\xd5\xe3\x33\x74\x43\x4a\xf0\x36\x39\xbf\x83\x59\xc3\x1b\x53\x26\x7a\x5a\x67\xe9\x13\x71\x3b\xb8\xfa\x9a\xdd\x91\xb1\x9f\x4d\xd7\x21\xc3\xb6\xe5\xcb\x89\x61\x8b\x4d\x97\xd1\x50\xff\x85\xb1\x02\x52\x3b\xde\xcb\x0a\x21\xf4\x5f\x0e\xb2\x9f\x2c\x78\x18\xb2\x0c\xf2\x11\x2e\x1b\x01\xe8\x2f\x8e\x69\x2e\x78\xa5\x89\x44\xc8\xf8\xe0\x20\x1d\x7e\xc3\xf5\xdf\x3c\xbd\x78\x66\xae\x32\x9c\x9d\x20\xda\xda\x45\x2c\xa0\x0c\xd0\x27\x78\xb9\x24\x6d\x3d\x1a\x18\x62\xa4\x41\x1c\x18\x50\xe3\xd4\x3b\x9b\xa1\xad\x28\x18\xdf\x83\x0c\xf3\xb5\xd1\x97\xbd\xec\x1a\xfd\xe4\xf2\x5d\xc2\x24\xfe\x74\x88\xaf\x6e\x31\xc4\xe8\x2b\xf4\x8f\xc2\x38\xe3\xc1\x81\x1e\xdf\x66\xa0\xc7\x03\x03\x65\x0c\xa3\x64\x4b\x7c\x51\x1e\xf2\x56\x62\x21\xa0\xda\x78\x09\x18\xb6\xce\xdd\xfa\xee\x02\x43\x28\x9f\x72\xdd\xde\x5f\x33\x07\x86\xc8\x1b\x04\x17\xc3\xdd\xc4\x4b\xad\xdc\x5d\x55\x23\xaa\xf2\x36\x25\x89\x91\x7f\x97\xf7\x8b\xa5\x47\xf8\x57\xde\xb6\x74\x09\x37\x67\xc8\xfe\x7e\x5f\x15\xfa\x7d\xb5\x45\xbf\xc7\x85\x7e\x8f\x07\xfa\xa5\xf2\x2e\xfe\xbb\xaf\xbd\x93\x7d\xd1\x9f\xbd\x94\x0e\xc5\x60\xf6\x55\xde\x2b\x14\x7d\xfe\xff\x89\xf0\x2b\xeb\x21\x0f\xd0\x39\xe1\x33\xc6\x17\x02\x09\xdc\x2a\x49\x57\xcd\x49\x75\x2d\x82\x1a\x7b\xec\x86\xd6\x2e\x2a\x17\xe5\x5f\x41\xbd\x1b\x28\x98\x47\x5a\xd1\x19\xbf\xab\xbe\xcd\x49\xdb\xab\xff\x13\x0d\xb3\x8f\x2e\xc1\x35\x0b\x85\x4b\x6f\x94\x6d\x6c\x9c\xdd\x31\xc4\xa4\xcf\x91\xab\x52\x68\x8b\xa6\x42\xf9\x87\x5a\x40\xf1\x00\x7b\x97\x55\xd7\x62\x40\x5f\xa3\x87\x49\xfd\xb6\x59\x9c\x6c\x61\x2b\x79\x58\x04\xe2\x1f\xa0\x3c\x6d\xae\x78\xc6\xf7\xaa\xdf\x55\xe8\x86\x49\x6b\xf1\xd6\xd7\x57\xae\x60\x20\x69\x15\x95\x6a\xa2\xc4\x32\x04\x20\xda\x42\x81\x90\xe4\xe6\x79\xaa\xa7\x84\x17\x87\xcf\x39\x39\x86\xa5\x18\x7d\x74\x2d\x64\x58\x5f\x68\xbb\xc5\xab\xd9\x71\x41\x04\x9c\xb5\xb2\xbf\x65\xc8\xc2\x67\xad\xdc\xd5\xa0\xe8\xf7\x9f\xc4\xd3\xdd\x77\xc4\xf9\xf2\xd1\xde\x2d\xdc\x73\x96\x32\x21\x9c\x42\x3c\x5b\x7d\xee\x9f\xb5\x9a\x6d\xbc\x34\x4d\x68\xaf\xab\x81\xd8\x6b\x4c\x11\x77\x0d\xda\x1b\x50\x64\x24\xd8\x7d\x41\x71\x4e\x31\x67\x5d\x53\xe7\x8c\x7e\x2b\xcd\x41\x07\xdf\xca\x81\xe4\x1d\x14\x89\x89\x2e\xe9\xdc\xfc\xdb\x61\xb3\x87\x8a\x30\x7d\xc0\x0e\x87\xfb\x38\xde\xc3\x0a\xf9\x58\x9f\xd2\x86\x5b\x36\xe5\xcd\xf1\xe6\x84\xa8\x31\x4d\x57\xc6\x20\x34\xe5\xa1\xcc\x4e\x26\x48\x67\x24\x30\x1e\xd5\x78\xba\xb7\x0d\xd9\x7a\x36\x06\x84\xe0\x8b\x3b\xa1\x40\x26\x4f\xa2\x20\x89\x3f\xab\xaa\x22\x7c\x92\x11\x04\xe3\x51\xde\x38\x9c\xce\xfd\x44\xf2\x47\x7f\xd2\xd9\xad\xed\xf6\x02\x4b\x41\x42\x0d\x6d\x2b\xa2\xe8\xab\x0b\x18\x08\x22\xe3\x5b\xe7\x7b\xea\xb7\x9a\x01\xfa\x2d\x94\x50\x61\x45\x38\xb0\xaf\xc2\x8b\xea\x08\x37\x82\x4d\xd0\xbf\x89\x76\x15\x98\xbe\x3a\xc1\x73\xe0\xca\x8a\xfd\xf8\x69\xea\x54\x0f\xab\xe8\xd5\x0b\xda\x8e\xc6\x13\xd2\xd6\x89\x07\x3b\xe1\x27\x44\x1a\x51\x92\x52\xa6\xaa\x4b\x65\x26\xeb\xca\x98\x69\x57\xfb\x46\x34\x1c\x5b\x58\x44\x00\xd6\x85\x64\xcb\x1f\xe0\x64\x49\xd0\x28\x81\x38\x79\xfe\x2c\xea\x7c\xda\xd6\x27\xcf\x9f\x0d\x64\x45\x45\x67\xd8\x69\x6b\x12\x15\x2b\x5b\x81\x02\xe1\x4a\xaa\x3d\xe1\xab\x58\xc1\x5a\x08\x53\x15\x9a\xb5\x41\x25\x29\xa7\x10\x0c\x1c\xdc\x70\x9b\x62\x41\x24\x46\x26\x91\xc4\x1c\x91\xa6\x54\x57\x98\xea\x5d\x2c\x02\x66\xca\x62\xcd\xba\x56\xeb\xe4\x35\x9d\xcd\x08\x17\x71\x6d\x0b\x93\x35\x0b\xdd\x8f\x03\x3e\x46\x53\xa2\xcb\x9f\x53\x73\xf1\x43\xef\x20\x1f\x4f\x0f\x73\xc3\x4d\xb5\x74\xed\x67\x71\xf7\x46\x26\x28\x9f\x8e\x43\xc6\x96\x02\x33\x49\xeb\x50\x60\x04\xca\x03\x95\x2a\x7f\x01\x92\x1a\xad\xa7\xb8\x69\xa6\xb8\xba\x46\x2f\x94\xfc\x1b\x9d\x3e\x7d\x31\xde\xa8\x09\xbc\x34\xa1\xbb\x11\x0f\x0b\x79\xfc\xa1\x3e\x8b\x0f\x6b\xf0\x6f\xe5\x85\xf8\x14\xce\x81\x4c\x09\xea\xb9\x92\x59\x52\xd0\xb2\xfd\x1a\xac\x41\xa0\x2c\x94\x9a\x45\x6b\x91\x6a\x13\x59\x07\xb7\x30\xa4\xb7\x89\x9b\x87\xf9\x4f\xc1\x70\xec\xd3\xe7\xf2\x25\x31\xc9\x38\xc3\x30\x06\x8d\x95\x22\x84\x44\xc0\xa5\x27\x75\xa2\x0d\xd8\xed\xba\xd5\x99\x5c\xda\x27\xea\x4c\xf3\x12\xb4\x9c\xc3\x38\x78\x34\xf7\x20\x64\x74\x33\x5d\x3c\x33\xd6\xf3\x6d\x93\x2f\xd1\xa3\xf4\x30\x0e\xff\xf2\x09\x5b\x2e\xd3\xca\x23\x5a\xce\x68\xcb\xdd\x36\x03\xf7\x95\x6e\x19\x6b\x1c\x18\x22\xb8\xcd\xb4\xb3\xb2\x9d\x2b\xbd\xc7\x10\x55\x84\x33\x26\x4e\xc2\x2d\x3b\xda\xe2\x72\x86\xe0\xe4\x17\x39\xae\x46\x64\xbe\xf0\xb9\x97\x71\x2e\x6e\x86\xc5\x99\x3d\x24\x0a\x67\x04\xdc\x55\x32\x58\x28\x5d\x43\xd7\x21\xf4\x6f\x25\xc4\x72\xca\xca\xe5\x8d\xdc\x96\x48\x16\x52\x0f\xb9\x47\x8a\xd2\xa4\x2c\xb0\x8b\x2e\x9c\x0d\x62\x26\xd5\x9a\x2f\x43\x23\xde\x06\x66\xec\x11\xae\xe8\xb0\xe2\xea\x18\x87\xd7\xad\xde\xba\xa3\xf3\xa8\xad\x2f\xdc\x35\xf7\xb7\x68\x4a\x1a\x16\x97\x63\x88\x6b\x5f\x3c\x9c\x3c\x4c\x64\x7c\xa1\xee\x45\xdf\x31\x50\xf8\xcd\x55\xb2\xf0\x92\x7e\x9c\xf3\xdb\x05\x64\xe8\x1b\xfe\xf1\x49\xc9\xa0\xa5\x40\xed\x38\x3b\x4d\x77\x19\x07\xca\xad\x86\x9f\x0c\xa6\xe7\x99\x25\x67\x57\x9c\x08\x01\x95\xb8\x38\xeb\xae\xe6\x41\xa1\xbe\x49\x4f\x34\x24\xcf\x15\x4f\x19\xb8\x30\x8f\xe3\x54\x61\xd9\xf0\xb6\x02\x0a\xae\x7a\x58\x8d\xd5\x5c\x8d\xcd\xdf\x44\xea\x41\xb4\xbc\xd2\xa9\x40\x72\x1e\x51\x4f\x16\xde\xeb\x16\xd5\x55\x3f\xb6\x88\xcd\xec\xb6\x9f\xd0\x56\x7b\x06\xed\xb8\x33\xd0\xc6\x7d\x86\x06\x23\x3a\xdb\x27\x76\x94\xe2\x3c\xdb\x64\x16\x6d\x3e\xfa\x3f\x85\x23\xf7\xcf\xeb\x20\xcd\xc5\x05\x18\xa4\xd8\x9f\x4f\xfe\x29\xb4\xc8\xac\x28\x9e\xfd\x7d\xfb\x5d\xc1\x74\x6a\x7d\xaf\x57\x76\x1b\x1b\x8d\x13\x63\xa5\x51\x79\x0b\xf3\x2c\xb4\x67\x68\x2b\xb5\xfb\x32\x2a\x2a\x9c\xcd\x2b\xf4\x96\xc6\xb5\x99\xd7\x11\xfc\xb0\x70\xb2\x32\xda\x85\xb9\x15\xe5\x8b\x35\x2f\xf4\xbd\x0e\x48\x02\xa8\xc8\xce\xe6\x9e\xa5\x5f\x68\xea\x39\x0f\x09\xed\x3f\xce\xc1\x61\x8d\x1b\xc1\x62\xd0\xae\xab\x37\x04\xad\xa4\xb4\xf2\x15\xdf\x30\x0a\x6e\xdd\x9a\x75\xd3\x06\xa4\xa7\x7e\xcc\x2f\x16\xbf\x50\x88\x32\x29\xf0\xfa\x31\x0c\x62\x6b\x83\x46\x83\x7c\x0a\x83\x34\x34\xb4\x3f\xba\x63\xfa\x6f\x53\xf3\x6f\x53\xf3\xae\xa6\xa6\xfb\xdf\x9f\xd8\x6e\x0a\xc1\x66\x63\x84\x2e\xdc\xc0\xe6\x09\xed\xc8\xe4\x3a\xe9\x60\xd2\xe2\xf8\x63\x18\x69\x46\x7c\x25\xd7\x00\x41\x0a\x5a\x83\x82\x0c\x69\xd6\xae\xcb\xf0\x0b\x5c\x96\x24\x24\x44\xf3\x20\x0d\xbc\x6f\x67\x18\xa2\xb2\x3d\x57\xa0\x58\x41\xad\x04\x83\xae\xb4\x30\x9f\x41\xa1\xbc\xdb\xaa\xab\x9b\xd5\xcf\x5d\x15\xda\x0d\x46\x19\xda\xce\x30\x43\x1b\x8c\x33\xf4\xd7\x32\xd0\xc8\x06\xeb\xec\x63\xda\x3f\xdb\xf1\xdf\xdf\xc6\xcf\x47\x33\x7e\x76\xd9\xd5\x7f\x5e\x53\xc8\xfe\xef\x0f\x88\x1c\x05\x7b\x7f\xcf\xdc\x0e\x87\x30\xdb\xa9\x51\xe4\xf5\xa3\x06\x62\x0f\x1e\x49\x7a\x1b\x94\x26\x2d\x24\xe0\x7f\x89\x1e\xbd\xdd\x60\xfa\x80\x1a\x6d\xd2\x8e\x8d\xe6\xbc\x8f\x04\x44\x34\x4d\xee\x48\xf8\xcc\x01\x15\x1a\x19\x1d\xe9\x37\x93\xd2\x8f\x2e\xd0\xb8\xe2\xf0\x94\x31\x29\x24\xc7\xcb\xa5\x2d\xb3\xab\x29\x62\x62\xe7\xe6\x7d\x16\xd1\xe2\xa5\x98\x33\xb9\x67\x0a\xb9\xeb\x1f\xe9\xaf\x44\x04\x6f\xf2\x3a\x02\x9a\xba\xe9\xcb\xb4\x78\x99\x39\x15\xe1\xde\x8f\x9a\xc2\x1e\x54\xc0\x87\x22\x47\xc6\xb6\xc0\xd2\x0d\x35\xa4\xe2\x5b\x32\xc7\x47\xe1\xc0\x2d\xd6\x5d\xb3\x45\x3f\xb6\xc5\x70\xdb\xea\xb9\xb7\x28\x9e\x5b\xd2\xf3\xfd\xc6\xd9\x26\xdb\xa5\xa7\xaa\xc3\xa0\xb0\xef\x49\x4d\xb1\xf7\xf7\xf5\x4b\xe5\xd8\x29\x48\xa7\x91\x33\x1b\xf8\x20\xc9\x24\x08\xd5\x29\x17\xd8\x70\xd5\x50\xf2\xb2\x31\xb7\xbb\xf4\xf4\x17\x4c\xda\xf9\xd0\x79\x14\x1f\x28\x8d\xe2\x4f\x94\x45\xf1\xe7\x48\xa2\x48\xc3\x23\xa9\x39\x14\x94\x35\x19\x76\xa5\x1b\x0f\xcd\x87\x8d\x5f\xd9\x8f\x33\x55\x7a\x8e\xc1\xf2\xdd\xc0\x4d\x91\x27\xd7\x6e\x2b\x85\x12\x6d\xa5\x24\xa2\x5b\xa8\x9e\xc8\x46\xa6\xe8\x87\x88\x44\xd9\x4f\xa9\x1a\xfb\xe8\xe1\xe4\x61\x21\x9c\x80\xca\x67\x4b\xf6\x55\x4f\xcf\xe0\x74\xf1\xff\x2f\xb7\xdd\x6c\x27\xdd\x29\x76\x74\xcb\xd0\xd1\x27\x89\x1c\x7d\x62\x7f\x3b\x8a\x0b\x7d\xc4\x25\x1c\xa8\xd0\x27\x9e\x5a\x60\x57\x0c\xcd\xe9\x7a\xf0\xc6\x86\xd6\x1d\x5d\x7f\xc9\x4c\xed\xb4\x08\x45\x9d\xe3\x6c\x14\x34\x57\xd8\xc8\x8b\x3c\x53\xe1\x63\x06\x62\xb9\x50\x86\xc2\xd5\x84\x70\xa5\x33\x92\x52\x36\x4f\xad\x2e\xeb\xd0\xc6\x80\xb2\x2e\x3d\xa6\xdf\xd2\x92\x0c\xe1\xfa\x06\x5b\x9d\x36\x57\x20\xa1\x04\x9c\x46\xde\xbc\x2a\x66\x4b\x27\xbe\xeb\x28\xd7\x1a\x7b\x4d\xf5\x3d\x34\xff\xc0\xc7\x82\x94\xcb\xdd\x2a\x5d\xd2\x8c\xf7\x8d\x1a\x7f\x94\xf9\x37\xa1\xb0\xe1\xe0\xf1\x59\xd0\x96\xd4\xd7\xfd\x57\x0a\x8b\x9b\x29\xf0\x8f\x01\x26\xe8\x10\x5d\x11\x79\x1c\x7c\x53\x38\x27\xd0\x47\x72\xac\x7d\xd6\x27\xd6\xce\xf1\xda\x6d\x46\x38\xa2\xe9\xac\x70\x19\x50\x69\x05\xe6\x96\xdc\x66\xf9\x08\x60\x70\x25\x3b\xdc\x34\x6b\x34\x87\xcb\x42\x10\x6a\x41\x74\xb1\x20\x35\xc5\x92\xa8\x06\xae\xf6\x16\x31\xd1\x94\xab\xf0\x91\xd5\x04\xba\x8d\xb5\xbc\x5d\xe2\xb5\xd9\xc3\x4f\x19\x3f\x37\x85\xb9\xcc\xfe\x7a\x1b\x8c\xbf\x8c\xe6\x55\x91\x22\xe0\x48\x8d\xc2\x3d\x17\x17\x4b\x37\xb7\xec\x47\x17\x26\x1b\x40\xa9\xd8\xf3\xf7\x3e\x64\x42\x76\x99\x80\xcd\xf7\xf5\x61\x91\x15\xd2\xb7\x28\x36\x60\xb8\x49\x4f\xea\x47\x2c\x65\xfc\xd3\xf3\x57\xc7\xdf\x5e\x9c\x5e\x7e\x7f\x5e\x66\x7a\x43\x51\x6f\xc1\xe8\x0b\x0b\xc7\xf6\x39\xc0\xd1\x18\x7d\xfe\x39\x02\x66\x3d\x79\xfe\x6c\x52\x5f\x47\x3f\x7d\x76\x88\x5a\x9a\x5d\x0d\xcd\xa6\xd3\x2b\xd3\x07\x7b\x81\x30\x36\x9b\x62\xb1\xa0\xf2\x6e\x34\x38\x7e\xf5\xe2\xc5\xd9\xe5\x9f\x76\xe7\xef\xc4\x6c\x64\x6b\x2e\xdb\x8d\xeb\x6b\x32\xc3\x5d\x23\xcb\x44\xd4\xe5\xb1\xee\x95\x21\x24\xae\xa1\x63\xdc\x34\x22\xa8\xf5\xf4\xd6\x79\x59\xc4\x80\xb5\x91\x14\xdf\x77\x39\x2a\xa0\x08\xb8\x90\x28\x0a\xde\xa7\xec\x3d\x71\x0a\x1b\xec\x93\x5d\x62\x27\x1a\xe7\x68\x66\xb7\xac\x0e\xa0\xf8\xcf\x26\xb9\xbc\x34\x37\x39\x42\xd6\x2b\xc9\x91\xcc\x03\xfd\x91\xea\xdb\xa1\x0f\x91\xb2\x98\xa8\x66\xf0\x5f\x58\xdf\x51\x32\xed\x83\x94\x0e\x7b\x03\x79\x28\xbd\x2e\xcb\x2d\xf9\xb2\x9f\xcf\x86\x79\xf2\x7c\x90\x27\x73\x79\xf7\x81\x59\x32\x38\x0b\x12\x76\x0c\x91\x34\xac\x18\x7c\xb5\x65\xf9\x83\x01\x79\x7d\x17\x32\x9b\x07\xeb\x37\xd1\xd9\xf0\x39\x3a\x0a\x65\x85\x7e\x7d\x36\xcf\xbf\x2c\x88\x03\x23\x09\x3f\x06\xc9\xcd\xd1\x93\xd0\xdc\x3c\xa8\x1d\x52\x5b\x4f\x75\x17\x72\x6f\xce\x0d\x7a\x19\xa4\xd4\x18\x6d\x3f\xa8\x94\xea\x6a\x06\xba\xb7\xbe\x51\x9a\x35\x28\x86\x6d\x3f\xb3\x0c\x8c\x43\x9c\x8c\x2c\xe0\x09\x91\xc8\xd5\xd1\x4b\xf5\x3e\xb5\xa0\xb7\xd2\xc4\x46\x3d\x62\xa0\xbc\xc9\x90\xd2\xd7\x3b\xe0\x56\x9a\x62\xfe\x06\x82\x27\x9d\x66\x3e\xc9\xae\xe1\x89\xc3\xc8\x12\xce\x2d\xe8\x20\xe9\x52\x38\xc7\xcf\xb0\xfd\x5c\x7c\xb6\xab\x9f\xac\x0e\xe7\xe0\x11\x4b\x5d\x3f\xd0\x94\xbd\x2d\x79\xed\xa2\x4a\x24\x5b\x7a\x04\x9c\x81\xa9\x5f\x51\xd5\x9b\x3a\x84\x03\xf3\xd4\xf1\x5b\x6c\x13\xa7\xd0\xd4\xbe\x95\x65\xbd\xc9\x69\x29\xe0\x41\xe7\x43\xe3\x33\xb0\x2e\xba\xc5\xc2\x14\xf3\x0d\xa6\xe2\xf9\x27\xe7\x9c\x40\x93\x0b\x94\x38\xa0\x49\xa6\xbf\xf5\x15\x48\x0e\x54\xb7\x04\xd4\x24\x7b\x79\x2c\x46\x74\xe2\x66\x3e\x1e\x02\x11\x3d\x9b\x96\x40\x08\xfd\x53\x1e\x88\x56\xa4\x33\xcf\x4f\x02\x3b\x58\xe2\x5b\x59\x58\x11\x5f\x48\xf7\xee\xa9\x79\xfb\x86\xcd\xf4\x83\x38\xde\x80\x8c\xd6\xef\x0b\x91\xbe\x86\x63\x40\x42\x4b\x5f\xd4\xc6\x3c\xd7\xaf\xc5\x8c\xde\x52\xe6\x69\xc9\x39\xbe\x21\xed\x17\xd2\xf8\x19\x68\x2b\x49\xdd\xc3\x95\x6b\x22\x33\xfd\xc4\xb4\x38\xd7\xfb\xec\xb0\x74\xb7\xd5\x72\xc0\xa5\x1a\x54\x37\x1c\xe5\x8a\xce\x8c\x10\xbd\xba\x06\xc8\x53\x42\x84\xea\xfa\x94\x90\x6f\x70\x83\x5b\xd0\x6e\xc2\x4e\x37\x98\xa3\x59\xc3\x56\xb0\xac\xba\xe8\xd2\x91\xa2\x91\x43\xe5\xe1\xe4\x61\x1a\x45\xf0\x83\x78\xe5\xdf\xb4\xcf\xcf\xa9\x41\xe0\x4f\xe1\xc7\x6b\xd2\x6a\xd6\xd1\x4d\xb6\xf3\xc6\xef\x0e\x17\x7d\x89\x46\x31\xb6\xfb\x7e\x2a\x9b\x9c\xe8\xdf\x31\xac\x15\x02\xfd\xb6\xad\x62\xa8\x29\x6b\x3b\x61\x99\x00\xb2\x14\xc3\x3a\xeb\xe1\xaa\x40\xcb\x4b\xdd\x30\xb1\xca\xbe\xf1\x3f\x95\xfc\x8b\xdd\x54\x17\x60\xcd\xc7\xca\x58\x3c\x78\xde\x89\x13\xf7\x75\xba\x76\x21\x2a\x4f\x86\x88\xb8\x23\xc5\x07\x7e\xdc\x0f\x07\xdd\x14\xab\x88\xb6\xf0\x76\x7e\xdb\xd0\x00\xd9\x06\x9f\x7f\x6c\x0a\xe0\x0d\xbe\x3a\x94\x2d\x91\x7b\x52\x6b\xe5\x1f\xef\x8a\x8c\x28\x57\x45\x17\x0a\x62\xd9\x9a\xf1\x5a\xdb\xca\xea\x86\x23\x2b\x30\x8b\xb1\x2b\x51\x10\x02\xf1\xd4\x73\x91\x60\x7f\xdf\xee\x48\xe9\x29\x98\x9f\x31\xc3\xbf\xfe\x85\x96\xb8\xa5\xd5\xc8\x45\x72\x83\xdc\xe3\x7c\xc1\xd0\x94\x54\x1d\xd6\x79\xcf\x73\x2c\x9c\xa4\x74\xe4\x58\x13\x79\x7f\x9c\xa8\xbd\x31\xde\xd9\xe1\x33\x34\xf1\x9e\x33\x27\x85\x39\xa0\x40\x9d\xe3\xb5\xd7\x3a\xcd\xdb\x0a\xba\x20\x00\xd4\xd1\x70\x6f\x55\x5b\x57\x79\x5c\xef\xbf\x57\x31\xda\x52\x05\x34\xe5\xf8\x97\x61\x83\x5b\xeb\x04\x68\x1f\x3d\x2a\xd4\xfb\xff\xac\x08\x3d\x7a\xc4\x33\x17\x02\xa0\xb4\x39\xcd\xa6\x70\x4e\x99\xcc\xb0\x50\x2f\x18\xc5\x71\xab\xf2\xb0\x61\x9b\x3d\xaf\x85\xf5\x35\x8f\x1e\x3a\xcd\xd9\xb3\x7f\x0b\xf9\x05\x18\xcd\xcc\xd3\x43\x2e\x45\xa4\x3c\x94\x2b\xa6\x1e\x6b\x3b\x07\x96\x0e\xf9\xe8\x65\x38\xc9\xa3\xaa\x92\x77\xa4\x07\xf1\x12\xe3\x16\x20\x0e\xbf\x29\x12\xbe\x41\xca\x6e\x88\x70\xf2\xc8\x9c\x22\xb6\xc8\xe0\xb4\xab\xae\x89\x4d\x23\x8b\x6c\x5a\x91\x24\x36\x96\x02\xef\xc5\xc7\x54\x63\xab\x30\xd4\xf9\x75\x4a\x56\x10\x37\x37\x81\x9b\x35\x44\x0b\x84\xd4\xa5\x79\xe2\x98\x41\xe6\x1e\xa6\xed\xb9\xc9\x8b\x2c\xa5\xa1\xf7\x84\xdb\x45\x29\xd2\xfe\x7b\x3a\x88\xf1\x2f\x1b\x25\xb3\x1f\x7c\x10\x8a\x27\x69\x14\x3e\x38\xd5\xfa\xd9\x70\xc1\x6e\x88\x39\xf6\x6d\x08\xd4\xb1\xe1\xa0\x20\x8e\x61\x17\x6c\xff\x7e\x07\x60\xb4\x0c\xdf\xfb\x5b\x33\xf1\x2b\x19\xfd\x03\xf8\xc7\xa8\x06\x30\x8c\xed\xbb\x0f\x28\xc0\x3e\x8b\x00\x17\x92\x0e\x76\x36\x94\x1c\x40\x5f\x11\x4d\x07\x74\x93\x6c\xb2\x68\x5d\x36\xe6\xb3\x06\x55\xcc\x52\x24\x27\x3d\xb9\x08\x22\xf2\x8f\xba\x24\x83\x52\xf7\xde\xac\x83\xa0\x2c\x5a\xd6\xaf\x98\xda\xa0\x35\x63\x89\xaf\x49\x7d\xd0\x63\x70\x5c\xfa\x26\xe9\x95\x45\xe8\xad\x7a\x69\xfd\xea\xa0\x57\xe5\xde\x42\xda\xe7\x80\xdd\x59\xb1\xad\x21\xe4\x61\x8c\x53\xe1\xe7\x52\x40\x45\xe2\x9d\xd3\x39\x8e\x4d\x13\xbf\xe5\x63\xce\xf8\xe5\x92\xb3\x9b\x24\xbc\x1d\xca\xb8\x82\x57\xdb\x67\xd5\x05\x72\x23\x7c\xa1\x6e\xa7\x74\xa4\xf0\xfd\x27\x2f\x8c\xbd\xf3\xd9\x38\x17\x21\x15\x6c\x41\xa3\x72\x21\xc2\x3f\x46\xe9\x60\x40\xa4\x75\x8e\x13\x2f\x5c\x4d\x39\xa9\xa4\x0b\xac\xbe\xcd\x90\x79\x3b\x2c\xe4\x87\x7c\xe1\xee\x2a\x51\x31\xcb\x32\x3d\x15\xfc\x63\x74\x50\x6c\xe9\xac\x9d\x31\xbe\x70\x6f\x39\xda\x55\xb2\xcb\xa2\x57\xc9\xf5\x87\xf7\x80\x4d\xed\xa7\x23\xce\xf1\x7a\xab\x52\x96\xf9\xf0\x7a\xe8\x13\xd0\xe9\xc0\x47\xea\x5f\x27\xd6\x6c\xa1\x14\xdb\xd7\xc7\xd1\xb8\xae\x49\x36\xf1\x1d\x46\xb1\x29\xbb\x7e\x94\x30\xa5\x4c\x0f\x63\xda\x6c\x31\xcc\x33\x22\x91\x9d\x2b\x00\xb3\xe4\x8b\xa9\x66\x5a\xda\x1f\xfd\x5c\x21\xb9\x22\xc6\x29\xec\x24\x59\x90\xf6\xdb\x97\x06\xa7\x86\xa5\x90\x91\x99\xc6\x86\xde\x67\x16\x8a\x5d\xba\xb2\x42\x99\x15\xf5\xa2\x75\x62\x28\x47\x4b\x6f\xeb\x8c\xda\x2f\xf3\x62\x52\xf6\x97\x09\x67\x0d\xf8\xca\xd5\x08\x6f\x58\x43\x26\xae\x86\xf5\x84\xe3\xd5\x0f\x50\x92\xb9\x90\xd6\x91\x2c\x78\x3a\xe0\x84\xd6\x83\xce\x84\x0d\x18\x18\xb2\x0f\x63\x10\xf3\xc2\x16\x18\x14\x70\x79\xf0\x00\xbd\xe2\x57\xb8\xb5\x8b\x98\xf2\x3a\x6d\x25\x73\x8f\x72\xc7\x3e\xca\xc2\x73\xbf\xfa\x6c\x84\x4c\xc3\x42\x25\x70\xcb\xb3\x29\xed\x62\xbf\xae\x3e\x7c\x5f\x1f\x23\xad\xa7\xf9\xe4\x43\x30\xc6\x29\xa9\x73\x74\x86\x35\x3e\x75\xd8\x6a\x95\xaf\xea\xcf\x80\x2b\xe1\xa0\x14\xd3\xf0\xe9\xcb\xe2\x56\x28\xab\x83\x30\xaa\x52\x08\x83\x49\xc7\xcb\x95\xa8\x48\x3d\xb1\xfb\xdb\x6b\x33\x50\x20\x24\xda\x9f\xdb\x24\x7c\x3e\x78\x10\x6a\xe5\xf1\x95\xb7\x29\x41\x33\x0a\x07\x06\x6d\x51\x83\xc3\xdc\xb5\xd0\xc3\x30\x9c\x05\x5a\x6d\xa1\xde\x96\x33\x0c\x87\x3e\xdb\x26\x84\x0e\xc2\xf0\xc9\xa2\x83\xa9\x0c\x5f\x9a\x0c\xfe\xd1\xa3\x5b\x20\xea\xf2\x4c\x37\x0c\xa1\x57\x78\x8b\x87\x2f\x6e\x35\xcf\x28\x89\xf5\x03\x60\xb2\xcd\x93\x1f\x43\x9f\x2d\xae\xf3\x6d\xfa\xdc\x3e\xcb\x75\x10\xea\x86\xdb\x81\x9b\x3e\x2e\x2b\xf6\xc7\x9f\x92\xe0\x95\x7d\x69\x79\x9e\xbd\xdd\x3d\xb4\x3d\xd5\x3e\x93\xe1\xe3\xd7\x89\x84\x88\x1e\x0a\x19\x17\xb7\xe7\x65\x74\x99\x0b\x1d\x46\xf0\x26\xd9\x3b\xc4\x79\x57\xff\xc8\x77\xd4\xb3\xf7\x45\xe7\x1d\xec\xd8\x7e\x57\x5d\x5f\x76\xf0\x36\xe6\xaf\x4f\x36\x88\x45\x6e\xb1\x6e\x78\x71\xc0\x49\x58\x81\x7b\xf7\x0d\xb1\x65\xa7\x62\x05\xf2\xde\xea\xe3\x1f\x09\xd1\xd1\x57\x08\xfd\x63\x27\x74\xc7\xbd\xf8\x3e\xfe\x14\xf8\x3e\xbe\x1b\xbe\x81\xd1\x0f\x06\x4c\xe5\xbd\x80\x25\x7c\x07\xdf\x25\x45\x59\x79\x73\xa7\x8f\xf6\x77\x08\x1c\x05\x1b\x48\x34\x04\xc3\x59\xfd\x65\x18\x83\xb7\x1a\xd0\x9d\xc5\xe7\x2e\x75\x76\xec\xe7\xb6\x85\xd3\xd3\xfe\x61\x01\xf5\xad\x2a\xa8\xa7\x00\x1e\x97\x00\x0c\x95\x52\xb7\x9f\xf4\x9a\x6c\x59\xc2\x6e\xea\xef\xae\xcd\x16\xa5\x6c\xbf\x1f\x23\xf3\x01\x40\x65\x9b\xd8\x0e\x03\x77\xaa\xbd\x7a\x5a\x47\xae\x5d\xef\x2d\x08\xf2\xa4\xb4\xb7\xc0\xeb\xbc\x9c\x88\xae\x91\x62\x0b\xeb\xbf\x90\x27\x46\x67\xe8\xb3\x4d\x09\xbd\xbf\xfd\x86\x7a\xf2\x79\x0f\x21\x9f\xb7\xf8\xd0\x7f\xc9\x8c\x01\x15\xda\xdb\x21\xf1\xb8\x57\x44\x3a\x23\x64\xdc\xe3\x6f\x78\xd7\x31\xde\x2d\x50\x45\xb8\xa4\x33\x5a\x41\xca\x4c\x6f\x75\x65\x30\xc5\xb7\xb9\x7a\x99\x5b\xe5\x54\x42\xa6\xa1\xbb\xc8\xef\xec\x6e\x8b\x3c\x98\xdd\xfa\xae\x96\x9c\x13\xca\x43\x94\x10\x56\xb2\x44\x44\xe6\xb5\x2d\xa4\x4c\x5b\x0f\x23\xa6\x1a\x60\x1b\x00\x39\xb4\x0d\x5d\xde\xe3\x6b\x98\xfc\xb1\x6f\x53\xc8\xc3\x0d\x42\x7d\x50\x3e\xb2\x65\xd2\x3d\x5e\xdc\x43\x41\xa3\xc9\x50\x61\x07\xbc\x9f\x98\xe1\x9e\x86\xd6\x78\x0d\x7a\xf7\xbd\x40\x74\xe1\x97\x1a\xbd\x3e\x76\x15\xf6\x93\x67\xb8\xb3\x94\x2f\x17\xd2\x60\x4b\xb5\x43\x34\x2f\x6e\x65\xc0\xec\x1e\x27\xf5\x4e\xea\x1e\x91\xee\x18\xf2\xf5\xb1\x18\xbd\xab\xa2\xfb\x55\xe3\x6c\xb6\x6a\x27\xeb\xad\x88\xae\xc9\xfa\x56\x33\x0e\x9d\x32\xe6\x88\x56\x8a\xa9\xd9\x2a\xf9\xfe\x8b\xdd\xec\x5d\xbb\xd2\x37\xc2\xe3\x6b\xc3\xf1\x5b\x30\x6a\xb1\xaf\xc9\x5a\x61\x67\xa1\xc7\x7c\x18\x41\xb1\x0b\x7e\x4d\xd6\x9f\x95\x22\x31\xbd\x84\x3b\x79\xfe\xec\x19\x67\xdd\xf2\x39\x59\xab\xce\xe2\x20\x86\xfb\x09\x55\x4a\x9d\x4c\x59\x8a\x1f\x18\x69\x78\x77\x5b\x77\x97\x1b\x78\xf6\x13\x5e\xf0\x4e\x48\x83\xe2\xb3\xe4\x1b\xf0\x5a\x40\x35\x34\xfb\xac\x9f\x09\x71\xe7\x0e\x38\xf3\xb8\xaf\xbd\xd7\x15\x1e\x09\xfe\x41\x73\xb8\x0a\xa0\x0e\x86\x92\x8f\xfb\x00\x7d\x5e\xf0\xeb\xa5\x6f\x06\xbb\xf7\x9a\x8f\xf1\x12\x4f\x69\x43\x65\xef\x43\xf8\x15\x5b\xae\x9f\xf8\x66\xc5\x37\xbe\x42\x14\x80\xf0\xaf\x96\x44\x9f\xcb\x49\xb8\xb8\x2c\xde\x24\xaa\x3c\x1a\x90\x70\x63\x90\xb0\x49\x3e\xf7\xe3\xdd\x3a\xed\xa5\xa8\x8b\x9a\xc2\x7c\xd9\xf4\x3f\xa4\x92\xf9\xa4\xdf\x90\x19\x3a\x4c\xe7\x6f\x5f\xfc\xef\x25\xdf\xd7\xa3\xcd\x73\x31\x98\x45\x78\x45\x38\xdd\xcf\xdf\x17\xb7\x28\x6d\xcf\x37\x5e\xaa\x6d\xc5\x2f\x9e\x55\x52\xb7\x9d\x61\x16\x7f\xa6\x7e\x64\x3e\x31\x03\xff\xa1\x2c\xa2\xf4\xb6\x3b\x72\x47\x42\xaf\xdb\x32\x86\xc5\xe4\x83\xf0\x84\x3a\xbd\x76\x63\x06\xef\x47\x35\x6c\xa0\xce\xa7\x8f\xcc\x00\x76\xcc\x3f\x94\x03\xea\xeb\xbb\x0b\x08\x47\xab\xdb\x2e\xbe\x43\x62\x87\xd5\x7f\x81\xaf\x89\x40\xee\x2d\x25\x41\x20\x35\x52\xdb\x25\xba\xbc\x9d\x40\x23\xda\xea\xc7\x75\xc7\x60\x96\x40\x79\x8b\x89\x8f\x6e\x76\xd3\x7d\x68\x2f\x50\xa5\x53\xc9\x4a\xaf\xf7\xce\xba\xa6\x31\xea\x8e\x06\x3b\x89\x6c\x93\xa6\x09\xce\xa0\xfe\xaa\x1e\x3f\xdb\xdc\x95\xef\x88\xaf\xce\x88\x7e\x76\xc6\x5f\xf2\x35\x8c\x17\x7c\x37\xd6\xcf\x50\xe6\xe1\xdd\x91\x07\x0b\x9e\x89\x7f\x04\x00\xc7\x63\xf4\xc4\x41\x4a\xc9\xa7\xef\x1d\x41\xf9\x1c\x35\x4b\x78\x5f\x86\xcd\x92\x58\x0c\x3a\x3b\x01\x7d\xae\x13\x90\xcd\xcf\x59\xd7\xd6\x88\xb3\x29\x6d\x11\x6e\xae\x18\xa7\x72\xbe\x70\x10\x25\x33\xcf\xb0\x80\x81\x91\x06\x75\x24\x33\xd5\xdf\x05\xfd\x35\x8d\xa7\x64\x57\x23\x36\x45\x73\x5c\x11\x99\xde\x9a\x35\x01\xa5\xf2\x5b\x2c\xfa\x2d\x5c\x0b\xce\x14\x43\x1c\xa3\xaf\x0f\x87\x9d\x3a\x19\x42\x07\xae\x9a\x0c\xdc\xf4\x6e\x88\x10\xf9\xbc\x15\x1f\xd9\xd9\xde\x2f\x68\x9d\xca\x54\x12\xf3\x6e\x36\x6b\x48\xad\x6f\xb0\xe9\x9a\x96\x76\x7d\x2c\x9a\x25\x2b\xb2\xf4\xfc\x0d\x18\x68\x31\x12\x45\x93\xb5\x9f\x74\x91\x8a\x1d\xd8\x9d\x67\x6d\x4d\x7e\xb1\x2f\x09\xa3\xc3\xe0\x65\x25\x1b\x4b\xd5\xcf\x1c\x89\x13\x0a\x3c\x09\xa9\x6a\x3f\xbe\xd7\x6b\x65\x39\xf9\xf7\x04\xfe\x6a\x4e\x1b\x12\x8d\x80\x9e\xec\xb8\x0c\xc9\xea\x16\x11\xb1\xba\xff\xfb\xdf\xc7\x25\x73\x50\x0f\x7c\x18\xff\xf9\x65\xe0\xb3\xf3\xeb\x95\xf4\x78\x78\x2f\xb2\x46\x74\xe4\x39\x5c\xcf\xf7\x85\x67\x08\x3e\x40\xd8\x39\x9b\xe1\x8f\x21\x62\x3f\xfd\x48\x6b\x45\x68\x1f\x98\x0d\xdf\xa1\xca\x52\x89\x8f\x6c\xc9\x03\xe6\xa3\x00\x06\xdc\x1e\x62\x1c\x41\xe9\x5b\xf3\xa3\xae\xac\x45\x67\x68\x45\x34\xdb\x5f\x31\x28\x2c\x62\x7e\x6e\xb0\x12\x24\x2d\xb9\x15\x95\x91\xb9\xeb\x1b\x35\xdf\x75\x57\x96\xe2\xd6\xe9\x9a\x85\x3f\xf6\xc5\xa8\x8f\x9d\x47\xc4\x7b\x39\xc0\xb1\xea\xae\xf7\x08\xa8\x9c\xec\x34\x29\xab\x57\xa4\xd6\x70\xa9\x74\xf1\x45\x92\x29\x33\x88\xe5\x87\xdf\x23\x76\x42\xe1\xdb\xa8\x99\x24\x18\x51\xbd\xe1\xc3\x81\xf7\x42\xe6\x3b\xd8\x86\x13\x3f\x1b\xdf\x76\xc7\xa5\x67\x5d\x74\x66\x04\x47\xd9\x91\xaf\x52\x07\x57\x11\x8c\x83\x08\xdb\xbb\xbd\x4b\xc2\x17\x9d\xf4\x29\x3d\x9c\x1b\xf9\xa3\x3a\x77\xc2\x5e\x3d\x9e\x51\x31\x27\x1c\xad\xc1\x0f\xa7\x77\x30\x58\x2a\xd1\x41\x97\x15\x82\x73\x62\xfa\x67\xed\x29\x8b\x0f\x27\x9f\x96\x15\x09\x54\xaa\x14\x2a\xc8\x19\xd1\x67\x4f\xfc\x5c\xaa\x4b\x06\x70\xd7\x2d\x60\x53\x91\x46\x97\xea\x06\x07\xcb\x0a\x2f\xa1\x62\xe0\x74\xad\xfe\x81\x92\x55\x35\x6b\xbf\x88\x78\xcf\x96\xaf\xe2\x5d\xeb\x02\x7c\xa6\x2e\x5e\x63\xab\x7e\x63\xf9\x85\x40\xab\xf9\x1a\xd1\xe8\xa9\x3c\xcd\x71\xf1\x77\xd9\xad\xa7\x73\x5a\x5d\x7b\x2a\x03\xb3\x68\x94\x1f\x42\xa6\x4e\xe6\x10\xd4\x0d\x5f\x76\x0b\x74\x88\x38\xb9\x21\x5c\xd2\x69\x63\x2e\x40\x3f\xd1\xa7\x43\xaa\x40\xfa\x6e\x96\x5f\x3c\x90\xff\x65\x83\xe2\x54\xf1\x4d\xe1\x0a\x8b\xa2\x91\x5a\x6c\xfa\x93\x77\x2f\x3b\x22\xca\x08\xef\x6c\x50\x49\x16\x4b\xbb\x48\x3f\xd2\xf8\xf5\x61\xfb\xa5\xfb\x3d\xc0\xb0\xd4\x32\xfc\x19\x1d\x02\xe8\x24\x31\x07\x1d\x22\x1a\x85\x88\x72\xe6\x07\x50\x29\xe7\x1f\x27\xca\x46\xa5\x5d\xbb\x61\xdd\x46\x7f\x39\x87\x72\x93\xe1\xa2\xcb\x44\x7a\xb3\x48\x41\x52\xfa\x3f\xaf\x95\xde\xcb\xd0\x12\x73\x49\x2b\xba\x74\xf7\xd9\xb4\x78\x33\x1b\x4b\x01\x35\xdc\x44\x79\xe4\xa6\x4e\xf7\xc6\x55\xe0\x72\x84\x61\xe1\x44\x83\xac\x4e\x5e\xf6\xcc\xbc\x74\xbf\x8f\x0f\xd0\xff\x8d\x85\x92\x46\xfc\x7d\xa6\x73\xec\x70\x90\xfa\xe1\x27\xd1\x99\xaa\x5f\x48\x4a\x92\x6f\x77\x49\xd6\x8a\xbd\x63\xfe\x35\x24\xd5\x05\x31\xb0\xec\x18\x0f\x8a\x0b\x24\x5a\xb6\x59\x23\xec\xd7\x47\xdb\x62\x5e\x5d\x4c\x33\x77\x22\xd7\x45\x7c\x7d\x35\x75\x6b\xa4\x8c\xf4\x64\x3f\xee\x6d\x72\xa7\xfc\x02\x65\x94\x72\x65\x00\x9f\x93\xb5\x8f\x31\x4e\xfc\x97\x99\x97\xef\x38\xc9\x2b\xdc\xc4\x97\xca\x5e\x3f\xb7\x5c\xd7\xca\xed\xd9\xd3\x1c\xa9\xaa\xff\x86\x3b\xc2\x01\x53\x9e\x3c\x7f\x16\x0c\x76\x0b\xa6\x54\xf6\x6e\x88\xee\x7f\x07\x53\xa6\xf9\x7b\xbb\x33\x65\xb8\x68\x9e\x29\xd3\xc5\xd9\xc0\x9b\xf5\x75\xe9\x52\xb5\xf7\xaf\xe4\xfc\x68\x7b\x18\x4e\x4c\xd7\xa6\x40\x24\x94\xd6\x23\x53\x90\x44\x9c\x71\xe6\xef\x60\x37\xc4\xe6\x1e\x1b\x6d\xc9\x97\x29\x03\xe7\x42\xbf\x3d\xaf\x24\x18\xf4\x71\x9e\xfc\xf1\x01\x32\x69\x30\xe5\x4c\xeb\x92\x42\x36\x84\xae\x6e\xaf\xc3\x7e\xfa\xea\x38\x24\xb8\xd8\x6a\x6e\x15\x6e\x07\x10\x9f\x84\x1b\xae\x22\x4b\x5d\xc3\xca\x14\xc8\x35\x4f\xae\x4d\x09\x6c\x18\xa5\xf8\xbc\xd5\x98\xbf\xdd\x43\x73\xb6\x52\xe7\x2f\x54\x09\xc7\x02\xe1\xba\x26\xb5\x4e\xaf\x53\x3b\x0a\xb7\x5e\x3b\x5a\x5e\x71\x5c\x13\x83\x8d\xa9\x71\x26\xe0\x66\x8e\x79\xed\x6a\x4a\x90\x58\x92\x8a\xce\x28\xa9\x91\x20\x4b\xcc\x75\xc1\x2c\x50\x04\xc8\x2f\x54\x40\x42\xa5\x90\xbc\xab\xa4\xc8\x5d\x27\x86\xca\x85\x4c\xa2\x03\x94\x7d\xd9\x43\xf3\xa2\xef\x2d\xeb\x5c\x74\xc1\x65\xad\x4c\x14\x2a\x58\xad\xcb\x30\xec\x75\x1a\x5e\x58\x01\xee\x6a\x56\x78\x2d\x8a\xa5\x61\x97\x4d\x27\xcc\x91\x5e\x64\xae\x72\x70\xc6\xda\xc9\x7d\xfc\x55\xae\x59\x89\xb0\x30\xfd\x42\xf4\xb3\x4a\x73\x7d\x37\xda\xfb\xbc\x4b\xfd\xe4\x55\xed\x8b\x14\x3d\x2a\x8f\x31\x46\xff\xfa\x17\x9a\xe1\xc6\x54\x31\x09\xe8\xfb\x8c\x24\xa5\x0a\x7b\xee\x39\x37\x64\x26\xcd\x3e\xae\x89\x90\x9c\xad\x83\xf4\x82\x6f\xc2\x96\x98\xc7\x37\xe4\x57\x84\x13\x84\x9b\x86\x55\x58\xea\x22\xf8\x18\xd5\xa4\x22\xca\x5a\x6b\xe8\xaf\xee\x7e\x3d\x69\x25\xbd\xf1\x67\x0e\xf4\x85\x6c\x06\x57\xc1\xdb\x47\x41\x15\x61\x01\x45\x02\x2f\xdd\x58\x84\x26\x86\x5d\x88\x00\xd7\xa6\x9d\x43\xe0\x23\x33\x68\x71\xb6\x52\xfd\xf5\x0d\x4e\xf7\xa6\x50\x78\xe1\xdf\x9e\x67\x50\x3d\x80\xb6\x33\xf3\xb5\xda\x5e\x0e\x9c\x60\xfe\x0a\x9b\x79\xcf\xa7\xe9\xea\xa0\x92\x75\x00\xd0\x75\x82\xaa\xf9\x46\x52\xd8\x54\x80\x88\xd2\x36\xf3\xd6\xcd\x4a\x99\x1c\x01\x59\x6c\xe5\x3c\xe3\x31\xd5\xe5\x18\x11\x6e\xd7\x0b\xc6\x49\xdf\x0e\x8f\xae\x9b\xdb\x12\xa2\xbb\x70\x9c\xee\x91\xf1\x9c\x3a\x62\x3d\xec\xd2\x95\x7a\xa4\x1d\xd1\xb6\x9c\x80\x61\x3d\xda\x52\xe9\x6e\xe5\xc7\xb7\xe0\xf2\x6a\xd9\x49\x02\xec\x70\x93\xb4\xa0\xff\x50\x5b\x5f\xb8\xbf\xd8\xaa\xe0\x71\xd4\xde\xb7\xb0\xdd\xd0\xa5\x71\x4b\xe8\xb0\xfd\xa6\xd2\xe3\xb7\x2b\x0c\xbe\x73\x59\xf0\x62\x51\xf0\x41\xb7\xed\x36\xd5\xb3\x7b\x13\x84\x4b\x2f\x23\xa4\xeb\x5a\x28\x8c\x9d\x17\xc5\xde\xa6\x06\x76\x7a\x11\xb3\xa4\x15\xa0\x43\xa3\x49\x8c\x32\xee\xba\x4b\xbe\xf5\x87\x78\x58\x62\x2b\xf0\xbb\xbd\x39\x31\x0c\xb2\xc0\xe7\xa5\x6f\x77\x02\x3b\xbc\x2d\x86\x7e\xcd\xb3\x61\x30\x52\x4d\x18\x1c\x65\xb6\x0e\xa0\x13\xd0\xa1\xde\x66\xf5\x39\x9d\x67\xa7\xbe\x78\x64\x0a\xcb\x2e\xe1\x9d\xb2\x8a\x05\x85\x80\x40\x5b\xd6\xc0\x72\x55\xe7\x30\x57\x7f\x62\x53\xa0\x76\x49\x80\x83\xec\xc2\xc9\xec\x78\xa0\xe0\x75\xd6\xf8\x92\x2e\x88\x90\x78\xb1\xb4\x22\x69\x94\x15\x83\x9c\x48\xdb\x66\xfc\x65\xba\x83\x1c\xb8\xa0\x8e\x4e\x22\xcd\x05\xbe\x21\xa3\xbe\x79\xef\x21\xc9\x36\xea\x68\x03\x89\x33\xc7\x43\x8f\x5c\xf4\x77\xdb\x7c\x83\x39\xea\x0a\xda\xf7\x85\xc6\xf1\x1c\xcb\x39\x3a\x2c\xa0\x7c\xe4\x6c\x0b\xd7\x6f\x6e\x2b\x13\x6f\xea\xeb\x4a\x18\xc7\xfd\xad\x71\xb3\xa9\xbb\xb3\x3c\x22\x5e\x4b\xde\x7a\x7a\xaf\xd7\xf7\x20\xbe\x2d\xf3\x3b\x3a\x44\xef\x53\xf9\x55\x5c\xc2\x08\x9c\x5e\xb7\x3e\x24\xd3\x15\x2b\xc2\x7b\xb2\x6f\x72\x10\x8d\xa1\x18\x80\x4c\xe9\x3d\xde\x05\x9c\xa3\x65\x04\xb2\xb4\x14\xe3\x92\xff\x1f\xa3\x25\xa7\x37\xea\x7f\x41\xc8\xbd\x98\x61\xe3\x6a\xc1\xe9\xe7\xf4\x95\x96\x09\xaf\x33\x42\x71\x6b\x2c\xa3\x1b\x4f\xaf\x5a\xf4\x02\xd3\xb6\x25\xda\x9f\x7b\x49\x84\x6c\x09\xbc\x6d\x42\x92\xcc\x05\x61\x0a\x14\x44\xef\x4c\x98\x07\x0f\xcd\xc4\xf7\x94\x56\x38\xb7\x41\xeb\x39\xe1\x24\x7c\xc9\x05\x1d\x69\x85\x17\x36\x1c\xbc\x8c\xa0\x91\x9c\x32\xe3\x13\xc5\xf1\x78\xfe\xc1\x16\x37\x61\x4a\x04\x6a\x68\x6b\x8a\x38\x20\x39\x67\x82\x84\x1d\x2c\x5a\x78\xe1\x70\x8a\x30\xd0\x4f\x9a\xb5\xa2\xd3\x75\xf2\xb0\x34\x29\x9a\xac\xd5\x86\x21\xe3\x4a\xa7\xae\x3b\x98\xad\x79\xef\xc5\x94\x33\x17\x90\x4c\x8c\xc1\x55\x1c\xdc\xcb\x5b\x0b\x49\x16\xa8\x9a\x77\xed\x75\x38\x10\x28\xc4\x18\x2e\xe9\x37\x6b\x13\x47\xae\xed\x83\x8e\x9a\x92\xd6\x03\x85\x1b\x00\xc7\x3a\xa9\xec\x5f\x6a\xbe\x72\x45\xc4\x17\xb8\xa5\x4b\xa3\x3a\x4f\xa2\x6d\x14\x16\x55\xeb\x4f\x04\x09\x69\xe7\x18\x93\x0a\xd1\x91\xa1\xa4\xaa\xc2\x2f\x61\x3a\xd9\x6e\x5b\x20\xc8\x3f\x19\x18\xf3\xeb\x51\x79\x42\x05\x49\x3c\x98\xd9\xb6\xe3\xd6\x79\x57\x05\xce\x17\x14\xa5\x8e\x6e\xde\x40\x6a\x19\xde\x55\x77\x5c\x81\x2c\x71\xa9\xf0\xe5\x1d\x09\x9e\x0e\xf1\xf5\x28\xc3\xba\x40\xe6\xbe\xc4\xb0\x1d\x29\xec\x92\x6a\x6e\x4d\x62\xeb\x98\xbb\x3d\x8d\x83\xcc\xa0\xe8\xcf\x3b\xd2\xd5\x83\xfd\x7a\x94\x23\x59\x20\x69\x6f\xaa\x55\x3c\x78\xb9\xf4\x95\xd2\xfc\xfb\x0b\x09\x6f\x55\x3e\x3b\x6a\x0d\x31\xb8\x5d\xae\xac\x6e\xf5\x92\x1d\xba\xdd\x23\x25\x59\x5d\xed\x0d\x8f\x95\xe4\x75\xb8\x77\xb8\x39\x8a\xf6\x7b\x9f\x57\x29\xdf\x10\xdd\x79\x98\xe4\xb2\x56\xef\x78\x77\x2d\xf6\x11\x7e\xfe\x1b\x5e\x3b\xe9\x49\x3c\xcf\x59\xcd\x3a\xcf\x7f\xbf\xf7\xff\x03\x00\x00\xff\xff\x59\x26\xe0\x09\xb0\xed\x00\x00" func epochsFlowepochCdcBytes() ([]byte, error) { return bindataRead( @@ -338,7 +338,7 @@ func epochsFlowepochCdc() (*asset, error) { } info := bindataFileInfo{name: "epochs/FlowEpoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xc5, 0xfa, 0x56, 0xab, 0x17, 0x25, 0x9a, 0xa4, 0x61, 0x87, 0xa5, 0x91, 0xe, 0x76, 0x94, 0x5f, 0x1b, 0x63, 0xa8, 0x39, 0x35, 0x98, 0xef, 0xc7, 0xde, 0x19, 0xd0, 0xae, 0x2e, 0x6c, 0x39}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x75, 0x50, 0x41, 0xe9, 0xc2, 0x77, 0x1a, 0xf4, 0xf8, 0x51, 0xc6, 0x9d, 0x7a, 0x2a, 0x1a, 0x48, 0x2, 0xe, 0x4a, 0x1f, 0xb1, 0xab, 0x6, 0x60, 0x99, 0xe4, 0xfd, 0xaa, 0xaf, 0x63, 0x4f, 0xbd}} return a, nil } diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index d95df2bc8..5fde48e73 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -48,7 +48,7 @@ // epoch/admin/deploy_epoch.cdc (1.192kB) // epoch/admin/deploy_qc_dkg.cdc (310B) // epoch/admin/pay_rewards.cdc (497B) -// epoch/admin/recover_epoch.cdc (2.135kB) +// epoch/admin/recover_epoch.cdc (2.278kB) // epoch/admin/reset_epoch.cdc (1.666kB) // epoch/admin/set_automatic_rewards.cdc (376B) // epoch/admin/set_bonus_tokens.cdc (624B) @@ -1325,7 +1325,7 @@ func epochAdminPay_rewardsCdc() (*asset, error) { return a, nil } -var _epochAdminRecover_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x54\x41\x4f\xdb\x4c\x10\xbd\xfb\x57\x8c\x72\x40\x89\xf4\x61\x2e\x9f\x7a\x88\xda\x22\x48\x82\x84\xaa\x56\x20\x28\x17\xc4\x61\xb2\x9e\xc4\x2b\xd6\xbb\xd6\xec\x18\x13\x55\xfc\xf7\x6a\xbd\xc6\xb1\xc1\xa4\xd7\x1e\x9a\x43\xb4\x33\xfb\xde\xdb\xd9\x99\xb7\xd6\x45\xe9\x58\xe0\xc2\xb8\x7a\x55\x3a\x95\xc3\x86\x5d\x01\x93\x2e\x9e\x24\x3d\xc4\xe5\xf2\x16\xd7\x86\x6e\x04\x1f\xb5\xdd\xf6\xa0\xc3\x8d\x01\x67\x61\x2a\x2f\xc4\xd7\x8b\x1e\xbc\xcb\x4d\x92\xe4\xe4\x04\x6e\x73\x02\x26\xe5\x9e\x88\x63\x0d\xc2\x68\x3d\x2a\xd1\xce\x82\x62\x42\x21\x0f\x68\x33\xf0\x82\x2c\x1e\x10\x2c\xd5\x40\x0d\x54\x5b\x90\x9c\x7a\xf5\xfb\x02\x59\x40\x39\x2b\x8c\x4a\x82\xbc\x38\xa8\x73\xad\x72\xa8\xb5\x31\xb0\x71\xac\xa8\xe1\x58\x92\xda\xf1\x23\xd0\xb3\x16\x58\x5d\x7c\x4f\xdf\x17\xe2\x89\x9f\xb4\x22\xa0\x27\xb2\x12\xf9\x6b\x02\x2a\xb4\x08\x65\x10\xc4\x43\x59\x25\x3b\x45\xde\x53\x06\xeb\x1d\xa0\x31\x21\x21\x4e\x39\x03\x25\xb2\x68\xa5\x4b\xb4\x12\x6f\x40\xa8\xf2\x7e\x36\x6a\x56\x65\x86\xd2\x14\xa5\x79\x4f\x0e\xf2\x5e\xc2\x46\xad\x25\x6f\x4b\xae\x21\x56\x96\xa1\x60\x1a\x9b\xa7\xfd\xa0\x61\x3e\x77\x95\xc9\xc0\x59\xb3\x0b\xc5\x56\xa1\xae\x4e\xc0\x55\x52\x56\x02\x6e\xd3\x44\x6b\xe7\xc4\x0b\x63\x09\x95\x68\xa3\x65\x37\x0f\x8a\xd0\x44\x6d\x7f\x69\x53\x1c\xb7\x2d\x39\x96\xe7\x63\xe4\xad\x4f\x7a\xa7\x4d\x9b\x91\xdc\x69\xaa\xe7\xf0\xf3\xd2\xca\xa7\xff\xff\x4b\xa0\xf7\xf3\xd1\x11\x2b\x9b\x7d\x8c\xa1\x43\x9b\x82\xbc\x25\x59\x56\x8c\xe1\xb8\x43\x98\x95\xcd\x6e\x75\x41\xe3\x10\x15\x1d\x77\xe6\xbd\xde\xda\x82\xac\xf8\x39\xdc\xdf\xdf\x08\x6b\xbb\x7d\x78\x18\xc5\x5e\x2f\xee\x9c\xd0\x12\x05\xe7\x70\x3f\x70\x6d\xba\x78\x8b\x78\xa3\x90\x3d\x6e\xaf\xaa\xf5\x37\xda\x85\x53\xda\x43\x86\x08\xeb\x32\xba\x5c\x7e\xb8\xad\xad\x96\x1f\x14\x1d\x3d\x87\x73\xe7\xcc\x0c\x7e\x25\x0d\xa4\x64\x2a\x91\x69\x1a\x2e\x42\x3c\x07\xac\x24\x9f\x9e\x3b\x66\x57\xdf\xa1\xa9\x68\x06\x47\x67\x4a\xb9\xca\x4a\xa0\xbc\x0a\x1a\x92\x38\xd0\xb3\xac\xd0\x16\xbe\x40\xa4\xa7\x5e\x1c\xe3\x96\xd2\x75\x23\xf0\xf9\xa8\x7b\x47\x69\x03\xfc\x3a\x0d\x8f\x76\xbe\x7f\x5e\x29\x86\xf4\x4d\x64\x5d\xa1\xe4\xb3\x41\xdd\xa7\xa7\x50\xa2\xd5\x6a\x3a\x59\x34\x26\xb4\x4e\x20\x4a\xb7\x76\x6a\xe8\xf1\x4b\xd0\x1e\x0d\x25\x4a\x3e\x99\x25\x9d\x8e\xde\x0c\xae\xdf\xbb\x44\x63\x96\xee\x12\x69\x6b\xcb\x57\x60\xdf\x8a\xdd\x72\xd8\xd6\x8f\x5c\x39\x8c\xc7\x39\x9d\x4b\xe9\x10\xea\xad\x5d\x87\xf1\x21\x4e\x67\xdf\x41\x38\xce\x18\x73\xf3\xfb\xdc\x41\x6e\xdf\xdd\xef\x52\xe3\xcc\xbe\xab\xf7\xeb\x71\x6c\xe7\xef\x76\xb1\xb7\xc9\x0b\x90\xf1\xf4\xc7\xa9\x2e\x2a\x66\xb2\xf2\x6f\xb2\x63\x93\x05\xf8\x4b\x67\x9b\xc4\xff\x97\xe4\x77\x00\x00\x00\xff\xff\xf4\xda\x2e\x26\x57\x08\x00\x00" +var _epochAdminRecover_epochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x54\x41\x6f\xdb\x3c\x0c\xbd\xfb\x57\x10\x39\x14\x09\xd0\xba\x97\x0f\xdf\x21\xd8\x56\xa4\x49\x0a\x14\xc3\xb6\x16\xed\x7a\x29\x7a\x60\x64\x26\x16\x2a\x4b\x06\x45\xc7\x0d\x86\xfe\xf7\x41\xb6\xeb\xd8\xad\x93\x5d\x77\x98\x0f\x81\x48\xbe\x47\x3d\x49\x8f\xd1\x59\xee\x58\xe0\xca\xb8\x72\x99\x3b\x95\xc2\x9a\x5d\x06\xa3\x36\x1e\x45\x1d\xc4\xf5\xe2\x1e\x57\x86\xee\x04\x9f\xb5\xdd\x74\xa0\xfd\x42\x8f\x33\x37\x85\x17\xe2\xdb\x79\x07\xde\xe6\x46\x51\x74\x7e\x0e\xf7\x29\x01\x93\x72\x5b\xe2\x5a\x83\x30\x5a\x8f\x4a\xb4\xb3\xa0\x98\x50\xc8\x03\xda\x04\xbc\x20\x8b\x07\x04\x4b\x25\x50\x05\xd5\x16\x24\xa5\x8e\x7e\x9f\x21\x0b\x28\x67\x85\x51\x49\x68\x2f\x0e\xca\x54\xab\x14\x4a\x6d\x0c\xac\x1d\x2b\xaa\x38\x96\xa4\x74\xfc\x0c\xf4\xa2\x05\x96\x57\xdf\xe2\x8f\x42\x3c\xf1\x56\x2b\x02\xda\x92\x95\x9a\xbf\x22\xa0\x4c\x8b\x50\x02\xa1\x79\x90\x95\xb3\x53\xe4\x3d\x25\xb0\xda\x01\x1a\x13\x12\xe2\x94\x33\x90\x23\x8b\x56\x3a\x47\x2b\xf5\x09\x08\x55\xda\xcd\xd6\x3d\x8b\x3c\x41\xa9\x44\x69\xde\x93\x43\x7b\x2f\xa1\x50\x6a\x49\x1b\xc9\x25\xd4\xca\x12\x14\x8c\xeb\xcb\xd3\xbe\x77\x61\x3e\x75\x85\x49\xc0\x59\xb3\x0b\x62\x8b\xa0\xab\x6d\xe0\x0a\xc9\x0b\x01\xb7\xae\xa2\x95\x73\xe2\x85\x31\x87\x42\xb4\xd1\xb2\x9b\x86\x8e\x50\x45\xcd\xfd\xd2\x3a\x3b\x6b\xae\xe4\x4c\x5e\xce\x90\x37\x3e\xea\xec\x36\x6e\x6a\xbb\x4a\xd5\xdc\x15\x56\x88\xa7\xf0\xf3\xda\xca\xff\xff\x9d\x46\xd0\xf9\xaa\xc7\x7b\xd0\x54\x1e\x2c\x07\xef\x2c\x6d\x72\x18\x43\xc7\x8a\x82\xbc\x21\x59\x14\x8c\x41\xd8\x31\xcc\xd2\x26\xf7\x3a\xa3\x61\x88\xaa\xbd\x39\xf3\x5e\x6f\x6c\x46\x56\xfc\x14\x1e\x1f\xef\x84\xb5\xdd\x3c\x3d\x0d\x62\x6f\xe7\x0f\x4e\x68\x81\x82\x53\x78\xec\xf9\x3b\x9e\xbf\x47\xbc\xeb\x90\x3c\x6f\x6e\x8a\xd5\x57\xda\x85\x5d\x9a\x4d\xfa\x08\xeb\x12\xba\x5e\x1c\x2c\x17\xd6\xe3\x9a\x66\xc6\xb8\xf2\xc7\x96\xb8\x64\x2d\x34\x85\x4b\xe7\xcc\x04\x7e\x45\x15\x34\x67\xca\x91\x69\x1c\x0e\x14\x1e\x07\x0b\x49\xc7\x97\x8e\xd9\x95\x0f\x68\x0a\x9a\xc0\xc9\x4c\xa9\xf0\x74\x81\xf2\xd6\xd8\x90\xd4\x16\x98\x25\x99\xb6\xf0\x19\x6a\x7a\xec\xc5\x31\x6e\x28\x5e\x55\x0d\x3e\x9d\xb4\x93\x17\x57\xc0\x2f\xe3\x30\xe6\xd3\xfd\x40\xc6\x18\xd2\x77\x35\xeb\x06\x25\x9d\xf4\xf4\x5f\x5c\x40\x8e\x56\xab\xf1\x68\x5e\xd9\xd6\x3a\x81\xba\x75\x63\xc0\x8a\x5e\xff\x77\x34\x5b\x43\x8e\x92\x8e\x26\x51\xdb\x47\xaf\x07\xaf\xa1\x73\x98\xca\x3c\xed\x61\xe2\xc6\xb4\xdf\xa9\x96\x38\xee\xe1\xde\xbe\x61\x67\x0f\x65\x4f\x07\xf9\x1d\xbf\xb7\xcb\x83\xc8\x9e\xf5\xfb\xf1\x30\xa7\x1d\x05\x3a\x86\x7a\x3f\x13\xfd\xf8\x18\xa7\x9d\x91\x5e\x38\xcc\x18\x1a\x99\x8f\xb9\xa3\xdc\xee\x08\x7d\x48\x0d\x33\xbb\xa3\xb3\x5f\x0f\x63\xdb\x21\x6a\x16\x7b\x0f\xbe\x02\x19\xff\x67\xab\xcc\x0b\x66\xb2\x52\xdb\xe5\xdf\xcb\xf6\x73\x00\x7f\xe9\xdb\x46\xf5\xef\x6b\xf4\x3b\x00\x00\xff\xff\xa8\xaa\xb0\xcb\xe6\x08\x00\x00" func epochAdminRecover_epochCdcBytes() ([]byte, error) { return bindataRead( @@ -1341,7 +1341,7 @@ func epochAdminRecover_epochCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/recover_epoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x45, 0x45, 0x37, 0x2, 0xa6, 0x25, 0xe, 0x2f, 0x86, 0x21, 0xfe, 0x39, 0x66, 0x8f, 0xdb, 0xfd, 0x6f, 0x3b, 0xe1, 0xbe, 0x25, 0xd8, 0x90, 0x3d, 0xe2, 0xc5, 0x95, 0xfa, 0x74, 0xdc, 0xc5, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x66, 0xc3, 0xa3, 0x63, 0x84, 0xa4, 0xe8, 0xbf, 0x4a, 0xb2, 0xda, 0xf5, 0x6, 0x11, 0x50, 0xbf, 0xe5, 0x5e, 0xe7, 0x37, 0xd0, 0x48, 0xee, 0x15, 0xe, 0x40, 0xb6, 0x6, 0xf9, 0xf1, 0x43, 0x5f}} return a, nil } diff --git a/lib/go/test/flow_epoch_test.go b/lib/go/test/flow_epoch_test.go index 86d48da3a..a412192f2 100644 --- a/lib/go/test/flow_epoch_test.go +++ b/lib/go/test/flow_epoch_test.go @@ -1606,6 +1606,7 @@ func TestEpochRecover(t *testing.T) { clusterQcVoteData := convertClusterQcsCdc(env, collectorClusters) args := []cadence.Value{ + cadence.NewUInt64(startEpochCounter + 1), cadence.NewUInt64(startView), cadence.NewUInt64(stakingEndView), cadence.NewUInt64(endView), @@ -1674,13 +1675,13 @@ func TestEpochRecover(t *testing.T) { // change startView and endView newStartView := startView + 1 - args[0] = CadenceUInt64(newStartView) + args[1] = CadenceUInt64(newStartView) newEndView := endView + 1 - args[2] = CadenceUInt64(newEndView) + args[3] = CadenceUInt64(newEndView) // avoid initializing a new epoch - args[9] = cadence.NewBool(false) + args[10] = cadence.NewBool(false) for _, arg := range args { tx.AddArgument(arg) } diff --git a/transactions/epoch/admin/recover_epoch.cdc b/transactions/epoch/admin/recover_epoch.cdc index ec2b167b6..424110ef0 100644 --- a/transactions/epoch/admin/recover_epoch.cdc +++ b/transactions/epoch/admin/recover_epoch.cdc @@ -8,7 +8,8 @@ import FlowClusterQC from "FlowClusterQC" // state with the new Epoch data. // This transaction should only be used with the output of the bootstrap utility: // util epoch efm-recover-tx-args -transaction(startView: UInt64, +transaction(recoveryEpochCounter: UInt64, + startView: UInt64, stakingEndView: UInt64, endView: UInt64, targetDuration: UInt64, @@ -17,14 +18,16 @@ transaction(startView: UInt64, clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData], dkgPubKeys: [String], nodeIDs: [String], - initNewEpoch: Bool) { + unsafeAllowOverwrite: Bool) { prepare(signer: auth(BorrowValue) &Account) { let epochAdmin = signer.storage.borrow<&FlowEpoch.Admin>(from: FlowEpoch.adminStoragePath) ?? panic("Could not borrow epoch admin from storage path") - if initNewEpoch { - epochAdmin.recoverNewEpoch(startView: startView, + if unsafeAllowOverwrite { + epochAdmin.recoverNewEpoch( + recoveryEpochCounter: recoveryEpochCounter, + startView: startView, stakingEndView: stakingEndView, endView: endView, targetDuration: targetDuration, From ec8c94d2958b30a372e3e555f78544a6a8ab8167 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Sun, 28 Jul 2024 23:54:55 -0400 Subject: [PATCH 155/160] Update contracts/epochs/FlowEpoch.cdc Co-authored-by: Jordan Schalm --- contracts/epochs/FlowEpoch.cdc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 62ac0fbff..ddfad41e4 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -192,9 +192,7 @@ access(all) contract FlowEpoch { clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData], /// The DKG public keys passed in the recoverEpoch transaction. - /// Currently, these are re-used from the last successful DKG. Note that this implies that - /// RecoveryEpoch MUST have a consensus committee that is identical to the last successful - /// DKG committee. + /// Currently, these are re-used from the last successful DKG. /// Group public key is the first element, followed by the individual keys dkgPubKeys: [String], From 88d6cda719e31effa57a14b2fad67d35746fe8eb Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Sun, 28 Jul 2024 23:55:03 -0400 Subject: [PATCH 156/160] Update contracts/epochs/FlowEpoch.cdc Co-authored-by: Jordan Schalm --- contracts/epochs/FlowEpoch.cdc | 1 + 1 file changed, 1 insertion(+) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index ddfad41e4..3ae8971ff 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -195,6 +195,7 @@ access(all) contract FlowEpoch { /// Currently, these are re-used from the last successful DKG. /// Group public key is the first element, followed by the individual keys + // TODO(EFM, #6213): include id->index mapping dkgPubKeys: [String], ) From 19a3795e676c9d4825a775c827859c2b772ec7ae Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Sun, 28 Jul 2024 23:58:23 -0400 Subject: [PATCH 157/160] add new line --- contracts/epochs/FlowEpoch.cdc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 62ac0fbff..aaf30e8c0 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -552,7 +552,8 @@ access(all) contract FlowEpoch { endView: UInt64, nodeIDs: [String], numOfClusterAssignments: Int, - numOfClusterQCVoteData: Int) { + numOfClusterQCVoteData: Int) + { pre { FlowEpoch.isValidPhaseConfiguration(stakingEndView-startView+1, FlowEpoch.configurableMetadata.numViewsInDKGPhase, endView-startView+1): "Invalid startView, stakingEndView, and endView configuration" @@ -596,7 +597,8 @@ access(all) contract FlowEpoch { clusterAssignments: [[String]], clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData], dkgPubKeys: [String], - nodeIDs: [String]) { + nodeIDs: [String]) + { self.recoverEpochPreChecks( startView: startView, stakingEndView: stakingEndView, @@ -672,7 +674,8 @@ access(all) contract FlowEpoch { clusterAssignments: [[String]], clusterQCVoteData: [FlowClusterQC.ClusterQCVoteData], dkgPubKeys: [String], - nodeIDs: [String]) { + nodeIDs: [String]) + { self.recoverEpochPreChecks( startView: startView, stakingEndView: stakingEndView, From d342f4eb044ade10c5854066fc2bebb6c42d48c6 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Mon, 29 Jul 2024 00:03:04 -0400 Subject: [PATCH 158/160] Update flow_epoch_test.go --- lib/go/test/flow_epoch_test.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/lib/go/test/flow_epoch_test.go b/lib/go/test/flow_epoch_test.go index a412192f2..97466ab5d 100644 --- a/lib/go/test/flow_epoch_test.go +++ b/lib/go/test/flow_epoch_test.go @@ -1567,15 +1567,6 @@ func TestEpochRecover(t *testing.T) { // Advance to epoch Setup and make sure that the epoch cannot be ended advanceView(t, b, env, idTableAddress, IDTableSigner, 1, "EPOCHSETUP", false) - // Register a QC voter - tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateEpochRegisterQCVoterScript(env), addresses[0]) - signAndSubmit( - t, b, tx, - []flow.Address{addresses[0]}, - []sdkcrypto.Signer{signers[0]}, - false, - ) - // Perform epoch recovery with a new epoch and epoch recover overwriting the current epoch. t.Run("Can recover the epoch and have everything return to normal", func(t *testing.T) { epochTimingConfigResult := executeScriptAndCheck(t, b, templates.GenerateGetEpochTimingConfigScript(env), nil) From 802d8284a8709fe3a118256d09baa070661f7b8b Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Mon, 29 Jul 2024 00:08:52 -0400 Subject: [PATCH 159/160] remove state changes from prechecks func add new func stop epoch components --- contracts/epochs/FlowEpoch.cdc | 13 +++++++++---- lib/go/contracts/internal/assets/assets.go | 6 +++--- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 2cf9f44b0..7cf01d810 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -544,8 +544,6 @@ access(all) contract FlowEpoch { /// Performs sanity checks for the provided epoch configuration. It will ensure the following; /// - There is a valid phase configuration. /// - All nodes in the node ids list have a weight > 0. - /// If the configuration is a valid configuration the the staking auction, - /// qc voting and dkg will be ended depending on the current epoch phase. access(all) fun recoverEpochPreChecks(startView: UInt64, stakingEndView: UInt64, endView: UInt64, @@ -571,8 +569,13 @@ access(all) contract FlowEpoch { numOfClusterAssignments == numOfClusterQCVoteData, message: "number of cluster assignments does not match number of cluster qc vote data" ) - - if FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION { + } + + /// Stops epoch components. If the configuration is a valid configuration the staking auction, + /// qc voting and dkg will be ended depending on the current epoch phase. + access(all) fun stopEpochComponents() + { + if FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION { /// Since we are resetting the epoch, we do not need to /// start epoch setup also. We only need to end the staking auction FlowEpoch.borrowStakingAdmin().endStakingAuction() @@ -611,6 +614,7 @@ access(all) contract FlowEpoch { recoveryEpochCounter == FlowEpoch.proposedEpochCounter(), message: "recovery epoch counter should equal current epoch counter + 1" ) + self.stopEpochComponents() let randomSource = FlowEpoch.generateRandomSource() let numViewsInStakingAuction = FlowEpoch.configurableMetadata.numViewsInStakingAuction @@ -683,6 +687,7 @@ access(all) contract FlowEpoch { numOfClusterAssignments: clusterAssignments.length, numOfClusterQCVoteData: clusterQCVoteData.length, ) + self.stopEpochComponents() let numViewsInStakingAuction = FlowEpoch.configurableMetadata.numViewsInStakingAuction let numViewsInDKGPhase = FlowEpoch.configurableMetadata.numViewsInDKGPhase diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index e6ca893fb..71762786d 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -12,7 +12,7 @@ // StakingProxy.cdc (5.71kB) // epochs/FlowClusterQC.cdc (19.005kB) // epochs/FlowDKG.cdc (18.691kB) -// epochs/FlowEpoch.cdc (60.848kB) +// epochs/FlowEpoch.cdc (60.952kB) // testContracts/TestFlowIDTableStaking.cdc (9.241kB) package assets @@ -322,7 +322,7 @@ func epochsFlowdkgCdc() (*asset, error) { return a, nil } -var _epochsFlowepochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x7b\x6f\x1b\xb7\xf2\xe8\xff\xf9\x14\x6c\x80\xdb\x4a\xa7\xb6\x92\x34\x17\x3f\x1c\xf8\xc6\x3d\xd7\xb5\x9d\xd4\x48\x93\x38\xb1\xdb\x73\x81\xa2\x68\xa8\x5d\xca\xe2\xf1\x6a\xa9\x90\x5c\xab\x6a\xda\xef\x7e\xc1\xe1\xfb\xb1\x2b\xc9\x4e\xd2\xd3\xa2\xfa\x27\xb1\x44\x0e\x87\xc3\xe1\x70\x5e\x1c\xd2\xc5\x92\x71\x89\x9e\x76\xed\x15\x9d\x36\xe4\x92\x5d\x93\x16\xcd\x38\x5b\xa0\xfb\xd1\x77\xf7\xef\xd9\x96\x0d\x5b\x45\xad\xec\xdf\x51\x8b\xb3\x93\x4b\x3c\x6d\xc8\x85\xc4\xd7\xb4\xbd\x0a\x9a\xc6\x3f\x44\x7d\x8e\x9b\x4e\x48\xc2\x5f\x1f\x07\xcd\xdd\x77\x51\xcb\x93\xe7\xcf\x82\x36\x27\xcf\x9f\x45\xbf\x3e\x25\x44\x04\x3f\xab\x3f\xef\xdf\xbb\xf7\xe0\x01\xba\x9c\x13\x24\xd9\x72\xbf\x21\x37\xa4\x41\x62\x81\xb9\x44\x15\x6b\x25\xc7\x95\x44\x0b\xdc\xe2\x2b\x85\xab\x9c\x13\xd4\xd0\x19\xa9\xd6\x55\x43\x10\x9b\x21\xb2\x64\xd5\x5c\x4c\xd0\x59\x0b\xe0\xf7\x14\x28\xfd\x1d\xc2\x9c\x40\x7b\xb1\xc0\x4d\x43\x84\x44\x5d\x4b\xa5\xea\x23\xe9\x82\xa0\xd5\x9c\x98\xdf\x69\x4d\x5a\x49\xe5\x1a\x49\x35\x79\x34\x82\x3e\x44\xb5\x54\xc0\x5a\x22\x57\x8c\x5f\x23\xb6\x24\x1c\x4b\xc6\xc5\x18\x51\x81\x84\xc4\x92\x56\x13\xf4\xca\x7e\x8b\x16\x78\x8d\x58\xdb\xac\x51\x43\xf0\x0d\x41\x8c\xa3\xff\x30\xda\xc2\x00\x06\x84\x82\x86\xa5\xc6\x0e\x4d\x59\xd7\xd6\x98\x53\x22\x52\x20\x53\x82\xc8\x7f\x48\x25\x49\x8d\xea\x8e\xab\x49\xe3\xd6\x74\x9a\x31\x8e\x6e\x30\xa7\xac\x13\x0a\xd8\x82\x8a\x9a\x2c\x08\x6e\x59\xc7\xc5\x1e\x9a\x76\x52\x0d\xb7\x46\x9c\x2c\x30\x6d\x91\x19\x3d\x99\x5e\xd7\x4a\xda\xc0\x0f\x1a\x26\x69\x6b\x31\xb9\xf7\xe0\x81\x02\x78\xea\x09\x27\x96\x0d\x95\x88\xb6\x92\xa1\xc7\x68\x39\xc7\x82\x88\x03\xd5\xe4\xb7\xc3\x5b\x7f\xa0\x3b\x3a\x3d\x7f\x75\xfc\x2d\x7a\x89\x36\x7f\x7e\x73\x8d\xbf\x7c\x84\x26\x93\x09\xf4\xdf\x57\x1f\x64\x59\x17\xfe\xfa\x6d\x1f\x5d\x10\xd9\x2d\x91\xfa\xdf\x31\x5b\x2c\xa8\x54\xc4\xdb\xff\xed\x37\xd7\xeb\x4e\x48\x2b\x08\x8f\xc6\x08\x5d\x5c\x1e\x3d\x3f\x7b\xf9\x0c\x9d\x7f\x7b\x74\x71\xaa\xbe\x7c\xc9\x6a\xe2\xf9\x02\xc8\x06\x24\x96\x0c\x89\x6e\xba\xa0\x52\xb1\x09\xe0\xc9\xc9\xbb\x8e\x08\x29\x60\x05\x15\xed\x5f\x9e\xfe\xbf\x4b\xb3\x00\x7a\x91\x15\x3c\x39\xa7\x42\xd3\x7a\x82\x8e\xa4\x5e\xa3\xb6\x06\x8e\x75\xbf\xec\xc1\xd7\xb0\x50\xe9\x26\xe1\x44\xb0\xe6\x86\x08\xd5\x42\x81\x63\x9d\x14\x12\xb7\xb5\x42\x20\x43\x04\xb7\x35\xaa\x89\x24\x7c\x41\x5b\xdd\x25\x65\x14\x8b\x6a\x4b\x7e\x91\x6e\x57\x4d\x60\x9f\x16\x87\x27\x0b\x2a\x85\xc7\x4e\x2f\x89\x20\xfc\x86\x56\x04\x91\x1b\xd2\xea\xb6\x98\xb6\x6e\xba\x83\x63\xea\x01\xf7\xd0\x6a\x4e\xab\x39\xa2\x2d\x95\x14\x4b\x83\xaa\xe4\xb8\x15\x54\x52\xd6\x2a\x62\x9b\xf9\x6a\xac\xf4\xb8\xe7\x40\x45\xb3\x78\x5f\x8d\xd1\xc5\xe9\xe5\xf7\xe7\x7e\xe5\xfe\x3d\x27\x6d\x40\x54\x34\x25\x57\xb4\xd5\xa0\x97\x98\x4b\x5a\xd1\x25\x6e\xa5\x40\x6e\x03\x5b\x74\xf4\xde\x20\x72\x82\x4e\xf4\xde\x54\x40\x14\x44\xbf\x38\x22\x81\xb1\xe4\x64\xa9\x7a\xe5\x73\x03\xa9\xa5\xdb\x76\x0d\xe6\x7b\xa8\x62\x4d\x43\x2a\x35\x2d\x90\x3c\xac\x26\xc2\x72\xd2\x0d\x53\x73\x37\x30\x28\x47\x95\x96\xbd\x5f\x08\xc4\x19\x93\xe8\x5d\xc7\x78\xb7\x40\x15\xe1\x92\xce\x68\x85\x25\x81\x15\xae\x58\x2b\x48\x2b\xb4\xb8\xd0\xf0\x78\xa7\xe7\x54\x53\x21\x39\x9d\x76\x6a\xab\x5c\x93\x35\xba\x22\xad\x62\x64\x45\xd2\x25\x67\x92\x55\xac\x41\xa3\x93\xe7\xcf\xc6\xc0\xce\x44\xa2\x6e\x09\xfd\x38\x6e\x6b\xb6\x50\xf0\xa6\x04\x57\xac\x9d\x58\x62\xc2\xc4\x61\xae\x00\x45\xef\x87\x8a\x2d\x96\x0d\x91\x43\x6c\xeb\xf8\xc6\xad\xa1\xde\xc3\xbd\xbc\x03\xa0\x14\xd5\x66\xb8\x92\x42\x6f\x0f\x2d\xb1\x97\x9c\x55\x44\x08\xc3\x33\x0a\xde\x06\xb6\x31\x18\x99\x01\x23\xa6\x79\x3c\x46\xc7\xaf\x5e\xbc\x38\xbb\xbc\x3c\x3d\xd9\xc4\x38\x7b\xa1\x98\x57\xc7\xc3\xac\x6b\x9a\xb5\x5d\xf9\x1a\x06\xcb\x86\x4e\xf6\xd5\x11\x9a\x61\xda\x74\x1c\xc4\x07\x69\x25\xe1\xf1\x38\x33\xc6\xc3\x09\x00\x1d\x58\xc2\x50\x7a\xc6\x35\xac\xbf\x9a\x31\x96\xdb\xb0\xb4\x1a\x57\x23\x69\x57\xcb\x11\xb4\x5b\x02\x6f\x2b\xb2\xd6\x1d\x27\x6e\x33\x0a\x84\x51\xc5\xa9\xa4\x15\x6e\x1c\xde\x8a\xe1\x56\xb4\x69\x50\x85\x3b\xa1\x61\x54\x73\x75\x10\x49\x86\xe6\xb8\x91\x93\x7b\xf7\x70\xa5\xd6\x67\x84\x9b\x66\xec\x19\x40\x9d\xdb\x7a\x1d\xde\xdf\xbb\xa7\x04\x7f\xd8\x8a\xb4\xdd\x42\xaf\x12\xac\xce\x01\xfa\xfe\xac\x95\xff\x44\xef\xef\xd9\x53\x22\x02\xa9\x48\x65\xc4\xf4\xd1\xf7\xc7\x97\x67\xaf\x5e\xf6\xb7\x83\xb3\x05\xe4\xc2\x86\x36\x9a\x0d\xa0\xd1\xef\x3d\x08\xaa\x93\xe0\x0d\x6b\xb6\x41\xef\xe5\xab\x97\xa7\xfd\xbf\x1e\x6b\x09\xc0\xf8\x50\x13\xbb\xa7\xfb\xd1\xfe\x85\x54\x1d\x88\x91\xde\x26\x3f\x10\xae\x05\xc5\x60\xab\x23\xf8\x22\x9c\xfa\x03\xa3\xaa\x19\x61\x2b\xd5\x56\x8e\x37\x2a\x15\xb0\xa5\x95\x5c\x59\x19\xc9\xe0\xd7\xda\x33\xb0\x70\xe0\x24\x43\x18\xb5\x64\x65\xd8\xd1\x30\xa8\x3d\xb1\x70\x57\x69\xa1\xa4\x37\x67\x46\x7e\x18\x53\x9f\x38\x80\xcc\xe8\x9e\x9b\x8e\xc5\xb5\x62\x1d\xec\x27\x2b\x81\xab\x8e\x73\xd5\x4b\x8f\x07\xdb\x84\x0a\xbd\x95\xe1\x6c\xb2\xfd\x4d\x3f\xbd\xa8\xff\xf3\xbf\xf7\x72\xc8\x33\xca\x85\x44\x37\x94\xac\xd0\x88\xb6\x4a\x26\xd3\x1b\x32\xb6\x22\x29\x1a\x67\xe2\x3a\x43\xa7\x1f\x28\x59\x0d\x00\x6e\xf0\xb6\x70\xbf\x10\x29\xa9\xfc\x48\xe6\x87\x23\xfd\xfd\x69\x5b\x7f\xb0\x51\xc3\xd9\xb4\xb8\x19\x82\xcb\x24\x6e\xd0\xd3\xef\x5e\xfd\x1b\xd0\x21\x35\x9a\xae\x11\x6e\x1a\x73\x1c\x69\x3d\xa4\x21\x57\x5a\x87\x2a\x2e\x91\x1f\x4c\x2a\x60\x17\x00\xe6\x00\x7d\xff\x94\xfe\xd2\x33\x9c\xe8\x96\xcb\x66\xad\x30\x57\x23\xc1\xe0\x45\xc8\x51\xd7\x33\x35\xe5\xda\x1c\x15\x9c\xac\x30\xaf\x8d\x10\x05\xa9\x36\x55\x82\x94\xd6\x0e\xd0\x92\x93\x1b\xa5\x89\x27\x90\x00\x45\x25\xd2\x2e\x00\x87\x3e\x34\xc1\xda\x51\xa8\xf6\x0f\xc4\x3a\x89\x70\xa2\x06\x0e\x53\xe6\x8d\x86\xe5\xc7\x54\xbf\x8c\x8b\x1b\xb7\xa0\x9d\xa5\x1b\x77\xd5\x7f\x60\x42\x77\x07\xd6\xa8\xac\x67\xee\x90\xd6\x24\x04\xce\xa0\xbf\x92\xba\x4f\xcb\xeb\x96\x15\x5b\x28\xc6\x0d\xe6\xd2\xb7\xb7\xd5\x80\x5b\x6c\xed\x04\x24\x7a\xd1\x09\xa9\x08\xca\x5a\x82\xae\x38\xc1\xfa\x58\xc5\x20\x62\x22\x60\x83\x32\x62\xb2\xa5\x48\x38\xdb\x66\x9e\x68\x45\xe5\xdc\xed\x00\x44\xdb\x19\xe3\x0b\x1c\x6f\xdc\x90\x1d\x0f\xa2\x6f\x55\x9f\xb3\x93\x3d\xb7\xe7\xaf\xc9\x7a\xcf\x6a\x1e\xa5\xbf\x71\x5d\x73\x50\x89\x38\x6b\xc8\x5e\x04\xca\x82\x08\x30\xd8\x43\x2b\x42\xaf\xe6\x72\x0f\xf6\xe5\x82\x71\xe2\x71\x82\x91\xdb\x19\x3b\x40\x3f\xe6\xbe\x82\xc9\x4b\xf3\xeb\x4f\x3b\x4b\xc9\x12\x17\x7c\x10\x31\xd9\x0f\x78\x83\xc4\x52\xcb\xaf\xd5\x6b\x84\x85\xa0\x57\xed\x42\x71\x42\x1f\x8b\x9d\x62\x65\x45\x37\x04\x1a\x99\xc3\xab\xa1\x42\x46\x30\x39\x59\x72\x22\x88\x52\xc0\x14\x2b\x3a\xf0\x5a\x47\xd7\x7b\x46\xb1\x04\xa8\x66\x8a\x2d\xce\x4e\x84\x19\xdc\xe8\x8f\x73\x1c\x43\x34\x20\xf6\x34\x3b\x69\xa3\x40\x2f\x9e\x16\xaa\x60\x30\x04\x7c\x6b\xf4\x0a\xe3\xb3\x11\x66\x15\x9d\x0b\x67\x62\xfe\x57\x5a\x3f\xc1\x3a\x5e\x81\xb7\x45\x2b\xff\x2d\x11\x42\x5b\x05\x0a\x37\x35\x5d\x82\x6b\xc2\x91\x20\xc6\x7a\x41\xb8\xb9\x62\x9c\xca\xf9\x02\xb0\x8b\x00\x0e\x6d\x7e\xf5\xd1\x43\x5c\xc0\x90\x07\xe8\x42\x2a\x2b\xab\x80\x53\x4d\x70\xdd\x80\xe9\xca\x66\x88\xa8\x25\xd0\x8a\xb2\x59\x80\x93\xe7\xcf\xbc\x19\x23\x99\x12\x01\x56\xb9\xad\x6d\x1b\x8b\x41\x04\x3b\xb0\x5d\x8d\x58\x3b\x71\x23\x69\xbf\x08\xa9\xe8\x8c\x1a\x28\x84\x2f\x00\x01\xec\x2d\x2d\xcd\x8e\x6d\xb7\x98\x12\x1e\x6f\x68\xb0\x1d\xb0\x46\xcd\x6b\xe4\x88\x4d\x95\x18\x56\xe0\x03\x89\xa9\x56\x50\x10\xac\xf4\xf2\x69\xc3\xaa\x6b\xbd\xca\x00\xda\x88\xb1\x08\xb4\x15\x69\xe8\x8a\xde\x90\xd6\x11\x67\x0f\x51\x89\x2a\xdc\x22\x81\x67\xa4\x59\xf7\x18\x21\xa1\x6a\xa5\x3e\x27\xcf\x9f\x81\xae\xfd\xe8\x69\xbe\x51\xd2\x36\x5f\x6d\xd1\xe6\x71\xa1\x4d\x7e\x18\x62\x7e\x45\x24\xaa\x3b\x63\x83\x96\xd9\x64\x4f\x51\x5d\x90\x8a\xb5\xb5\xe7\x6d\xdd\xf5\xc4\xf4\xcc\xf1\x48\x86\x50\x67\x29\x78\x00\xfb\x86\x88\x96\x58\x0f\xb6\xbf\xe4\xa4\xa2\x42\x21\xf6\x7d\x4b\x7f\x81\xfe\xc9\xf8\xa7\x6d\x7d\x49\x17\xc4\x0e\xdf\x7b\xf4\x16\x8d\xdb\xe1\xa3\x17\xdc\xa5\xee\xf0\x75\x20\xbd\xab\xcb\x1f\xc0\x01\x20\x70\x46\x02\x34\x25\x58\x02\xcb\xbc\x67\xe2\x0e\xee\x1c\x2b\x65\x98\xb4\x7e\xc7\x0c\x9d\xcc\x66\x3e\x77\x38\x9b\xc9\xbb\x0e\x37\x96\x21\x6d\x27\x9a\x1f\xd1\x4e\xe1\x0a\xf6\x28\x20\xb2\xed\xf1\x7c\x09\x7a\x9d\xe8\x1a\x69\x8f\x88\xd7\xc7\x08\x5f\x5d\x71\xa5\x7d\x1a\xc7\x87\x9a\x63\x22\xd3\xad\x80\x8e\x60\x85\xc2\x3a\x10\xb8\x88\x93\x8a\xd0\x1b\xa2\xd5\x44\x1c\x78\x77\xac\xc0\x8e\xa0\xbc\x3e\x46\xe0\xa2\xd3\x8a\x6f\xc1\x89\x03\x5a\x21\x88\x37\x7b\x64\x18\x3f\x0d\x11\xc1\xac\xad\x10\xef\x95\xea\xaf\x8f\x4b\x72\x5d\xd3\x42\xad\xc8\xb2\x9b\x36\xb4\x52\xca\x83\xf0\xdc\x66\x64\xa8\xf6\xa8\x90\xb6\x62\xb5\x12\x4c\x42\xe9\xef\xa0\xde\x35\x6c\xb5\x7f\xc5\xe2\x43\x89\xaf\x97\x92\xa1\x86\x4e\x39\xe6\x6b\x70\x8b\xb4\x68\x4e\x7e\xd9\x37\xdd\x63\x81\xf8\x8c\x33\x25\x66\xdd\xd8\x8a\x7b\xa5\xd3\x17\x0c\xf9\xf7\xd0\x8c\x35\x0d\x5b\x69\xc3\x01\x7c\x86\x6d\x4d\x6f\x68\xad\x98\x46\x21\xec\x40\xd6\xd7\x57\xe7\xdd\xf4\x39\x59\x2b\x32\xe8\x83\xe3\xa7\x7e\x0d\xf8\x0d\xa9\xd8\x0d\x1c\x5a\x43\x1b\x11\xab\x05\x55\xed\x74\x27\xd8\x94\x58\x9f\x71\xd4\xfa\xe6\xa4\x3d\xa1\x9d\x0b\xc8\xfb\xc4\x9c\x53\xc8\x61\x70\x45\xc0\x09\xa3\x8c\xde\x16\x9d\x3e\x7d\x01\xa1\x04\x62\x6c\x8e\xfe\xa1\x3a\xa1\x47\x51\x0d\x38\xad\x49\xc1\x90\x55\x4c\x68\x40\x44\x43\xab\xa3\x43\xd9\x12\x0e\x05\xb1\xd4\xca\xe1\x04\x5d\xce\xd5\x2c\x52\x0a\x98\x45\xd7\x14\x77\xa7\x68\xe4\x45\x92\x0c\x75\xcb\xda\x20\x4e\x39\x6a\x58\x85\x1b\xdf\x56\xcf\xc9\x6a\x26\x60\xdc\x1b\xcc\x1c\x12\xc6\xf9\x8d\x25\x1e\x54\xfc\xed\x32\x8d\x36\x8a\x17\xd3\x72\x7d\xfa\x87\x69\xec\xa0\x82\x82\xbb\xfd\xaf\xa7\xa5\xf7\x50\xf7\xce\x4a\x7a\x2f\xdc\x3b\xe9\xe8\x31\xd4\x4f\xa8\xa2\xdb\x6e\x99\x70\x3e\x72\x48\x2a\xe9\x64\xc5\xd3\xdf\xda\xf6\xdf\xda\xf6\xdf\xda\xf6\xdd\xb5\xed\x01\xe9\xf0\xfa\x58\xa0\x25\x86\xd3\xcc\x70\x62\xdf\x31\x0b\xb1\x4d\x41\x80\xf1\xac\x96\x05\x5e\xb8\x7d\x36\xdb\x9f\xe2\xb6\x8e\xc6\xe8\x84\x0d\x45\x09\xbc\x20\x3e\x46\xa2\x34\x24\x1b\xb7\xd7\x27\x6d\x41\x51\xfb\x81\x49\x72\x82\x25\xee\xd7\xd7\x6c\x8b\x92\x84\x00\x9e\x0e\x34\xb6\x2d\xa7\x17\xc1\x39\xd6\xaa\x43\xb3\xb6\x31\x4b\x35\x6b\x4e\xf6\x41\xcf\x70\x2a\x20\x88\x6e\xd1\xc1\xd1\x3c\xeb\x1a\x35\xf2\x04\xbd\x64\x56\x31\x85\x00\x15\x5d\x2c\x1b\x6a\xc3\x4d\xd1\x18\x91\x14\x46\x2f\xbe\xbf\xb8\x44\x73\x7c\x43\xa2\xfd\x5b\x19\x23\x86\x38\x3f\xbc\x76\x16\x56\xde\x24\x48\x90\x88\x86\x50\xa4\x70\x20\x3e\x8a\x76\x39\xa8\x5e\x66\x1e\xd6\x63\x7b\x52\x18\xb6\xae\xd0\x82\x48\xac\xb4\x1c\x84\xa7\xe0\xd0\x0d\x4d\x82\xd8\xee\x3a\x6a\x1a\x34\xa7\x42\x32\x0e\xb3\xd7\xaa\x87\xeb\x0e\x49\x27\x8c\x2b\x6b\x8f\xf0\x05\x6e\x61\xf1\x32\xcd\x49\x48\xde\x55\x46\x75\x7a\x61\xbb\xbe\xcf\x59\x48\x13\x79\x46\x03\xfd\x29\x76\x63\x87\x40\x1b\x22\x53\x35\xaa\x70\x6c\xa9\xe3\x49\x73\x0f\x73\x56\x8a\xdd\x22\x7a\x2e\xc2\x79\x8d\x4b\x23\x28\x00\xf6\x08\x1a\xd4\x4e\x6c\x3e\xc4\x30\xc2\x42\x62\x1e\x69\x26\x43\x8a\xc9\x76\x20\x49\x1c\x40\xd9\x08\x30\x0b\x62\x0d\x21\xab\xda\x9d\x6e\x1a\xa0\x10\x32\x50\xfb\xd6\x85\x0b\x36\xaf\xe5\x0d\xe6\xc5\x58\x41\xc9\x3a\x54\x0d\x10\x5e\xa8\x95\x4f\x07\x93\x4c\xab\x01\xc1\x6e\x01\x9d\x48\x9d\xa4\x54\x8a\x20\xa4\xd3\x8b\x85\x86\x7f\xa4\xc1\x97\xd5\x55\x83\xe3\x37\x9c\xe0\xeb\x9a\xad\xda\x9f\x12\x2c\x39\xae\xae\x05\xa2\x33\x47\x11\x10\x2f\xe0\xbb\x08\x42\x35\x83\xeb\xea\x31\x11\xe7\x98\xd6\x07\xe8\x1b\xc6\x9a\x9c\x18\x8c\x5f\xe1\x96\xfe\xaa\x4f\x4b\x36\xf3\xfe\x54\xaf\x0a\x82\x4d\x67\x24\x7c\xec\x2b\x70\x79\x36\x3a\xf6\x85\x38\xeb\x94\xa9\xc6\xa6\xea\xc4\x63\x1c\x76\x89\xd3\xe1\x06\x76\xe0\xb6\x2e\xdc\x1c\xfd\xd7\xda\xb3\x70\xec\x3d\x0b\x81\x9d\xef\x53\xfb\x6c\x98\xb6\x97\x52\x5b\x79\x1a\xf2\xe1\xc3\xc3\x0a\x0b\xc1\x2a\x0a\x47\xab\xb3\x0f\x4f\x82\x5c\x94\xe7\x64\x8d\x9e\xb9\x5c\x94\xc4\x01\x04\x76\xa9\x51\xb4\xdd\x11\xa2\x5d\x30\x4e\xc9\x93\x4a\x86\x17\x4e\x82\xe0\x08\x80\x7d\x6a\xed\x01\x75\xea\xb4\x35\xf9\xe5\x00\x35\xa4\xbd\x92\x73\xb4\x8f\x1e\xf5\x12\xa0\xbe\xbe\x4a\x1c\x0c\xae\x29\x6d\xa9\x1c\x65\xd6\x26\x0a\x3f\xa1\x88\x4b\x7f\x4a\xc5\x55\xf2\x3b\x49\x83\xb7\x69\xef\x82\xfc\x48\x1a\xf5\x87\x08\xdd\x67\x97\x30\x41\xdc\x71\x3b\x17\x54\xd4\x27\xa3\xe5\x38\x3c\xa9\x34\xbd\x9a\xd9\xc4\xda\xf9\x87\xf6\x0c\xca\x9b\xc0\xd9\x73\x08\xe4\x2d\xfc\x68\x29\xab\x5a\xd8\xff\xe7\xcd\x0c\x81\xd1\xa1\x25\x75\x11\x52\x40\x65\x0d\x2e\xf8\x22\xef\x10\x52\x1c\x1d\x46\x0b\x90\x37\x8e\xe4\x21\x3a\x44\x3f\xfe\xd4\xd7\x06\x24\x15\x3a\x44\x33\xdc\x08\x52\x22\x58\xb2\x88\x40\xba\xe4\xbb\x42\x37\xb7\x84\xaa\xbd\xfb\x23\x6f\x68\xd6\x0d\x1d\xda\x15\x74\x4d\x7e\xbf\x97\x6d\x9c\x0a\x16\x6d\x8c\x66\x5d\x8b\x2a\xb6\x5c\x8f\xc6\x07\x99\x76\x12\x8e\xc0\x89\xec\x78\x0b\x03\x6d\x0b\x56\x10\x79\x19\x50\x76\xf4\x33\x6a\xc9\x2a\xe1\xf3\x71\x32\x4c\x69\x79\x7c\xaf\x1d\x46\x7e\x13\xae\xda\xe8\x67\x73\x96\xb8\x13\x6b\xcb\x73\xad\x88\x5e\xca\x10\x09\xe8\x9d\x91\x04\xb6\x71\x28\x06\xc7\xdd\xc0\xe8\x96\xd5\x82\xbf\x76\x18\xd7\x6d\x7d\x31\x7a\x57\x0d\x49\x86\x22\x06\x11\x43\xbe\xab\x76\x59\x95\x93\xe7\xcf\x40\xe8\x3f\x27\xeb\xd1\x75\x26\x63\x06\x38\xfa\x3a\x66\x67\x14\x27\x3e\x39\x9e\xb5\xb6\x0a\xe4\xa5\x1b\x07\x82\xb2\xfc\xa7\x90\xf2\xd6\x5e\x79\x73\xe2\xa8\x5e\xd0\xf6\xc1\x83\x07\x7d\x9a\xfa\x31\x6b\x67\xf4\x2a\x40\xca\x9e\x99\xda\xa7\xa1\x74\x0d\xa5\x50\x42\xde\x1e\x6e\x91\xd2\xda\xf9\x26\xfd\xae\xed\x16\x4a\x1e\x89\xb3\x16\x76\x5a\xae\x4e\x86\x1d\x0c\xc5\x5e\xc6\x7d\x46\x3f\xeb\x61\x6d\xdf\x22\xd9\x92\x71\xd0\xa1\xee\x53\x5a\xa7\x81\x59\x6d\xab\x27\xc7\x33\xbb\x88\x52\x9b\x76\x9c\x62\xdc\x79\xc7\xb9\xc6\x9d\x6f\x39\x69\x50\x9e\xeb\xeb\x2b\xed\x0d\xda\x62\xbe\xd6\xbd\xb3\xe3\x4c\x6d\xb7\x1d\xe7\x68\xbb\xed\x36\x3b\xaf\x14\x5b\x35\xd8\x4d\x75\x23\xc3\x1e\xe7\x9a\x87\xc2\xf4\xd1\xff\x6c\x9a\x68\xd6\x51\xc9\xff\x6e\x91\x82\xe9\x9b\x70\xd6\x5d\x1d\x04\xbe\x7b\xef\xc4\xb5\xe9\xa1\x13\xa2\x25\x51\x4a\xa4\x4e\x8d\x0d\x73\xc7\x96\x78\xad\x8c\x32\xda\x56\x9c\x60\x41\x04\x22\x37\x84\xaf\x0b\x99\x67\x10\x86\xb9\xc1\x4d\x47\x40\xa8\x74\x8d\xa4\xcb\x86\x7a\x21\x02\x09\x6c\x32\xcc\x6c\x93\x0c\x5d\x11\x19\x38\x15\x61\xa8\x5e\x02\x2b\x00\xba\xe7\x99\x41\xe6\x9c\xf0\x8a\xb4\x12\x5f\x91\xdc\x02\x2c\x10\x7a\x08\xc0\xe8\x67\xb4\xcc\xa0\x15\xe9\x3d\x04\x05\x1d\x06\x50\x4a\x64\x07\xfd\xba\x47\xb4\xed\x6d\x94\x0c\x7b\x03\x7b\x69\x6f\x90\x01\xf7\xb6\xa2\xde\x96\x02\x32\xf9\x66\x27\x39\xd3\xf7\xd3\x96\x1b\x39\xff\x72\xa7\x0d\xb1\x59\x81\xdc\xb0\xba\x43\x3f\xf7\x1f\xb9\xfa\x7c\x0c\xfd\xd4\x26\x6b\x97\x2e\x94\x26\xe5\xda\x9d\x3a\x29\x03\xd9\xe9\x36\x2c\x83\x33\x3f\x34\x84\x75\x29\x9c\xde\xe0\x8f\x42\x23\x65\x86\x9a\x73\x28\xcd\x2c\x18\xfb\x01\x74\xc8\x31\x44\xa6\x26\x33\x1d\xa8\x40\x9c\xcc\x08\x27\x6d\x65\x1d\x5d\xd6\x64\xc1\x66\x50\x21\xf1\x62\x69\x93\xe7\x4d\x37\x07\x18\x37\x0d\x9a\x75\x12\x32\xff\x63\x5c\xc5\x04\x9d\xcd\xd0\x5b\xe3\xf1\xd6\xc9\x16\x00\xf8\x2d\xcc\xb1\xcd\x7c\xe9\x72\x4e\x5a\x07\x17\x6e\x55\x24\x93\xa7\xc2\xc4\x2c\xa6\xeb\x03\xdb\xd0\x75\x48\x7c\xeb\xa0\xf5\xcd\x2e\x2d\xfa\xe8\x4b\x1f\x2e\xf8\x07\x1a\xe5\x48\xed\x73\x32\x33\xff\x1d\x47\xb0\xfb\xfc\x93\x97\xb0\x84\xbd\x0a\x90\x1b\xcd\x86\x9c\xfa\x63\x12\xa9\xab\xa4\x4e\xa2\x13\x79\x70\xc0\x2c\x90\x71\xd3\x25\xeb\xd7\x0b\xd7\xcf\xb0\x17\xb2\x23\x75\x19\xf4\xee\xf1\x8e\x02\x0e\x6e\x4d\xca\x8e\xc2\x63\xb6\x58\x76\xd2\x71\x93\x58\x51\x59\xcd\x75\x56\x80\x42\x6c\x8a\x05\x64\x07\x21\x36\x9b\x09\x22\xb5\x1f\xc8\xa3\x69\x48\xf3\xc0\x77\x9b\xf4\x1e\x0c\x57\x44\x5e\x86\x2c\xf3\x94\x71\xab\x3d\xe6\xfc\xe1\x54\x0f\xfb\x9f\x7e\xcb\x6f\x92\x30\x9e\x56\xd2\x87\xb9\xcf\xf6\x8b\x58\xb0\x74\x84\xa4\xcc\xb1\x57\x58\xd6\xbd\x22\x99\x53\x19\x9f\xe0\x75\xe8\xf8\xae\xd0\xca\x8f\xa1\xf7\xd5\x71\xc1\x97\x51\x98\x7b\xbc\x07\xfb\xc5\xe4\xb7\xac\xa9\xb5\x3a\xf2\xd6\x5d\xa7\x99\xe8\xad\xf5\xd6\x6e\x3a\xe7\x6e\x73\x62\x6c\xda\x10\x17\x60\x08\xb7\xaa\xf5\x03\x5a\xc7\xa3\x6f\x6e\x2d\xa0\x03\x23\x98\xb7\xb0\x8d\x8c\x0e\x13\xdf\xfa\xf2\xd2\x4f\x5b\x4e\x2d\x93\x7d\xc6\x53\x21\xb8\x82\xc3\x38\x09\x27\x15\xe3\x2e\x3d\xde\xc5\x4b\x80\xad\x4d\xe6\x5b\x90\xa7\xef\xe5\x2e\x38\xfd\xf4\x58\x5a\x6a\x6b\x45\xd6\x0f\xf7\x06\x18\x52\x14\xc0\xc2\x7c\xdc\x3e\x8e\xa3\x38\x8c\xa3\x96\x36\x88\xce\xf4\x21\xd3\x7e\x21\xd1\x8c\x75\x26\x78\xe8\x62\xde\x9e\x5c\x3e\xae\xa3\x2c\x3c\x6d\xc7\xc2\x37\xea\xd4\x14\x3a\x02\x76\xc5\xd9\x4a\x89\xf9\x9a\xc2\x81\x8f\xf9\xda\x41\xab\x19\x11\x48\x51\x0f\x5c\xdf\x3a\xf6\xde\x30\x5c\x2b\xbc\x40\xdb\x84\x3d\x1f\xdd\xc1\xa1\xc2\xb4\xc8\xa4\xb3\xd9\xd3\x91\x7f\x66\xf4\xb3\x9e\x60\xbe\x8b\xa3\x66\xff\x0a\xf6\x06\x9d\x01\xdf\x58\x9a\x9d\x38\xac\xc1\x47\xd7\xcc\x26\x66\x9a\x13\x33\xcd\xc9\x94\x71\xce\x56\x4f\x3e\x7f\xaf\x61\x27\xa0\x7f\xff\x7a\xa4\xa8\x7e\xa0\xfb\x5a\xa8\x17\xba\xef\x39\x96\xf3\x74\x5f\x26\xe3\xbf\x21\x33\x74\x58\xc0\xe6\xc7\x70\x5e\x3f\xa5\x7b\xdb\x4b\xa4\x00\xce\x44\xbb\xb0\xa2\x96\xbf\xdf\xcb\xff\x67\x7a\xb6\xb4\x49\x37\xea\x05\xd6\xc9\x07\x0b\x56\x6b\xee\x89\x9d\x61\x66\xab\x9a\xc8\xa7\x0f\xfe\x65\xac\x51\xde\xae\xa0\xad\xe3\x1b\x92\xae\x60\x4b\x56\x7e\xe7\x46\x3f\x86\xb4\x5b\x72\x52\xf4\xc3\xe8\x50\x71\x28\x6d\xd1\xe1\x21\x7a\x88\x7e\xfb\x2d\x6a\x3c\x0a\x46\x71\x5e\xdb\xaf\x0f\xfb\x81\xec\xa3\x47\xe8\xf3\xcf\x23\x18\x25\x10\x4f\x0c\x88\x25\x67\x4b\x26\x48\x1d\xc2\x18\x8d\xc7\x07\xd9\xba\xdd\x3f\xd6\x02\x05\x68\xbc\x4e\x03\xa9\xb0\x83\x6d\x89\x80\x99\x24\xf6\x36\x8f\x06\x6e\x5a\x33\xee\xae\x5c\x66\x57\x7d\xee\x17\x16\xfc\xb6\x2c\x8f\x3b\x39\x1f\xbd\xe8\x24\x96\x64\x8c\x3e\x12\xff\x97\x99\xbf\x40\xe9\xd2\x1e\xc0\x42\x10\xb8\x55\x97\xfe\xa0\x3e\x8b\x74\xa9\x0e\x0f\x4b\x2b\xb8\xd7\xd3\x59\x08\x30\xa0\xec\x72\x29\xc6\xf5\x48\xc3\x69\xb5\xa0\x62\x81\x65\x35\xf7\xa9\x78\x06\xa4\xb8\x9f\xc1\xec\xdb\x95\x21\xa2\x9b\xe6\x1f\xa1\x5f\x3e\x6d\x8b\x7b\xce\xa6\x8b\xbc\x09\xd2\xa9\x46\x63\x1b\xea\x49\x94\x5b\x9d\x73\x65\xf3\xbc\x16\x26\x0b\x1a\xa3\x39\xf9\x45\xed\x7f\xd5\x81\xcd\xd0\xe3\xaf\xd4\x69\xa8\x86\x50\x36\xd8\x88\x4e\x08\x7a\xf4\x3f\x68\xba\x96\x44\x28\xee\x7c\xf4\xd5\x3f\xd1\x94\x4a\x31\x8e\x40\xbf\xe5\x4a\xe8\x4b\x3a\x6d\x0c\x2a\x6f\x8d\x28\x52\x22\xc7\x68\x5d\xa3\x7f\x6a\x28\xbe\x27\xa8\x95\xd0\xfc\x3b\xb6\x02\x95\x23\x06\xf2\x44\xf7\xfc\x7a\x34\x9e\x48\xf6\x0d\xbd\x3a\x6d\x6b\x8a\xdb\x6f\x14\x90\x51\x09\xca\xb7\xf4\x6a\x7e\x6b\x30\x10\x90\x0d\xc8\x88\x0e\x0d\x15\x27\x3a\x87\xf8\x5b\xf2\xcb\xc8\x0f\x33\x9e\x54\xac\xad\xb0\x1c\xf5\xb4\xf9\x8e\xad\xc6\x1e\x76\x91\x99\xc3\xc1\x26\x26\x04\x78\x78\x88\x1e\x7f\xb5\x77\xaf\xcc\xae\x6f\x76\x5f\x3f\xcf\xad\xe3\x7b\xe9\x21\x11\x8e\x9f\x9e\x16\x81\xad\xb2\xa7\x56\xfd\xec\x64\xaf\x78\x0f\x30\x3b\xc9\x21\x58\x9b\x8b\xdc\xd8\x60\x70\x23\x18\x50\x3a\xa7\xcf\x5d\x1b\x77\xd6\xb4\x09\xa7\x0e\xc1\x37\xfe\x14\xff\x7f\x3f\x82\x92\x50\x41\xb5\x95\x40\x3f\x05\xf5\xee\x2d\xd4\xad\x00\x52\x3a\x55\x28\x1b\x4e\xf1\x16\x56\xad\x03\xa9\xa7\x76\x97\xfb\x63\x9b\xe1\xbe\x25\x98\xcb\x29\xc1\x72\xeb\x21\xe7\xb6\xc7\xee\xc3\xf6\x88\xf2\xb7\x81\x0e\xb7\x61\xf0\x82\xa0\xef\x19\xfb\x8d\x9d\x8d\x0e\x8c\x83\x63\x00\x72\xb3\x05\xf3\x86\xa8\x53\xff\x66\x94\x34\xc6\x76\x0e\x87\x74\x24\x81\x55\xe9\xb9\xc1\xae\x64\x9d\x86\x0d\xd3\x02\x7f\x92\x56\x2f\xfc\xdf\x7d\xd6\x52\xae\x5d\xa8\x8f\x5f\x9e\x8c\x9d\xd4\x2e\xf4\x7f\x4d\xe2\x7b\xfd\xfa\xd8\xd0\x97\x5c\xcc\x6c\xf5\xc4\x6c\xf2\x5d\x21\xac\x90\x9f\x19\x7e\x74\x2a\x7e\xc0\x0d\xad\x61\xa8\xc8\xe7\x34\x0a\x30\x2c\x18\x42\xbd\x0e\xbb\xf2\xa1\xb7\x35\x30\xeb\xa3\x2b\x83\x89\x08\x3e\x3e\x40\xf7\x5f\x92\x95\x31\x2c\xe0\x2b\x27\x95\xd2\x3b\xaf\x48\x74\x0b\xc5\x11\x8e\x32\x6d\x0d\x39\x74\x9a\xe0\xe0\xeb\xbf\x9f\x9c\xa3\xf7\x76\xc0\xbf\x10\x48\x8a\x51\x2d\x59\xe5\x65\x06\x33\x64\x0c\x58\x2c\xfc\xe6\xaf\xc6\x64\xc9\xf4\x3e\x2a\xf3\x6c\x0d\x06\x1a\x29\xee\xda\x85\xb3\x5a\xb2\xfa\x24\xdc\x95\xc4\xf0\x12\x02\xee\xc0\x68\x96\x58\x01\xa7\xf9\xbf\xff\x6a\x7c\xf6\x41\x85\x59\x44\xa9\x3f\x82\xd7\x42\x3e\x53\x7c\xf7\xb1\x78\xcd\x45\x51\xa3\x19\xef\xc0\x63\x99\xbf\x5b\xf3\x99\xfe\xff\x41\xee\x0e\xbf\x0b\xbb\x1d\x7b\xcb\xdb\x0d\x31\x09\x5d\x9c\xf7\xdf\x24\xe1\x0a\x4b\x66\x63\xf1\xfa\xd2\x40\x29\x01\xcb\x83\xa7\xa6\x6d\xc3\x70\xfd\x24\x9b\x92\x35\x62\x1f\x98\x66\x0f\x66\x16\x40\x34\xf1\x2d\xc7\x50\xb6\xe2\xc8\x4d\x6f\x0f\x49\xb6\x3d\xe4\x8d\xab\xd5\x17\x55\x26\xab\x97\x9b\x03\xcb\xff\x6d\x92\xe1\x36\x6c\x9f\xcf\x3e\x9e\xfb\x0e\xb4\x7c\xfa\xdd\xab\x7f\x5f\xf4\x07\x8e\xd5\x86\xda\x18\x4b\xfd\x6f\x23\x29\x32\xb2\xcf\x47\x37\x9f\x1c\xa2\x47\x93\x87\x46\x0f\xd3\x81\x7c\xbf\xa9\xe4\x8a\x90\x16\xfd\x4a\x38\x03\x41\xc5\x5a\x72\xc7\x15\x1a\x0c\xc6\x47\x88\x15\x17\xea\xc1\x03\x74\xda\x82\xef\x9f\x71\x54\x53\x01\xff\xc5\x9d\x64\x0b\x2c\x69\xe5\xb2\x17\x2a\xdc\x54\x5d\x63\x6b\xb9\xb5\x35\x5a\xe2\x35\xdc\x5f\xdb\xa8\xb8\x19\x48\x26\xeb\x4c\x8f\x55\x8f\x7e\x46\x44\xff\xaf\x9c\x74\xb6\x41\x9e\xa8\x2e\x45\x11\xd2\x33\xdc\x4e\x82\xc4\x20\x56\x10\x23\x1b\xa1\x7b\xa1\xd8\x4b\x16\xb2\xa0\x32\xbc\xcb\x7a\x7a\x43\x5a\x39\x2a\x39\xd5\xe3\x33\x74\x43\x4a\xf0\x36\x39\xbf\x83\x59\xc3\x1b\x53\x26\x7a\x5a\x67\xe9\x13\x71\x3b\xb8\xfa\x9a\xdd\x91\xb1\x9f\x4d\xd7\x21\xc3\xb6\xe5\xcb\x89\x61\x8b\x4d\x97\xd1\x50\xff\x85\xb1\x02\x52\x3b\xde\xcb\x0a\x21\xf4\x5f\x0e\xb2\x9f\x2c\x78\x18\xb2\x0c\xf2\x11\x2e\x1b\x01\xe8\x2f\x8e\x69\x2e\x78\xa5\x89\x44\xc8\xf8\xe0\x20\x1d\x7e\xc3\xf5\xdf\x3c\xbd\x78\x66\xae\x32\x9c\x9d\x20\xda\xda\x45\x2c\xa0\x0c\xd0\x27\x78\xb9\x24\x6d\x3d\x1a\x18\x62\xa4\x41\x1c\x18\x50\xe3\xd4\x3b\x9b\xa1\xad\x28\x18\xdf\x83\x0c\xf3\xb5\xd1\x97\xbd\xec\x1a\xfd\xe4\xf2\x5d\xc2\x24\xfe\x74\x88\xaf\x6e\x31\xc4\xe8\x2b\xf4\x8f\xc2\x38\xe3\xc1\x81\x1e\xdf\x66\xa0\xc7\x03\x03\x65\x0c\xa3\x64\x4b\x7c\x51\x1e\xf2\x56\x62\x21\xa0\xda\x78\x09\x18\xb6\xce\xdd\xfa\xee\x02\x43\x28\x9f\x72\xdd\xde\x5f\x33\x07\x86\xc8\x1b\x04\x17\xc3\xdd\xc4\x4b\xad\xdc\x5d\x55\x23\xaa\xf2\x36\x25\x89\x91\x7f\x97\xf7\x8b\xa5\x47\xf8\x57\xde\xb6\x74\x09\x37\x67\xc8\xfe\x7e\x5f\x15\xfa\x7d\xb5\x45\xbf\xc7\x85\x7e\x8f\x07\xfa\xa5\xf2\x2e\xfe\xbb\xaf\xbd\x93\x7d\xd1\x9f\xbd\x94\x0e\xc5\x60\xf6\x55\xde\x2b\x14\x7d\xfe\xff\x89\xf0\x2b\xeb\x21\x0f\xd0\x39\xe1\x33\xc6\x17\x02\x09\xdc\x2a\x49\x57\xcd\x49\x75\x2d\x82\x1a\x7b\xec\x86\xd6\x2e\x2a\x17\xe5\x5f\x41\xbd\x1b\x28\x98\x47\x5a\xd1\x19\xbf\xab\xbe\xcd\x49\xdb\xab\xff\x13\x0d\xb3\x8f\x2e\xc1\x35\x0b\x85\x4b\x6f\x94\x6d\x6c\x9c\xdd\x31\xc4\xa4\xcf\x91\xab\x52\x68\x8b\xa6\x42\xf9\x87\x5a\x40\xf1\x00\x7b\x97\x55\xd7\x62\x40\x5f\xa3\x87\x49\xfd\xb6\x59\x9c\x6c\x61\x2b\x79\x58\x04\xe2\x1f\xa0\x3c\x6d\xae\x78\xc6\xf7\xaa\xdf\x55\xe8\x86\x49\x6b\xf1\xd6\xd7\x57\xae\x60\x20\x69\x15\x95\x6a\xa2\xc4\x32\x04\x20\xda\x42\x81\x90\xe4\xe6\x79\xaa\xa7\x84\x17\x87\xcf\x39\x39\x86\xa5\x18\x7d\x74\x2d\x64\x58\x5f\x68\xbb\xc5\xab\xd9\x71\x41\x04\x9c\xb5\xb2\xbf\x65\xc8\xc2\x67\xad\xdc\xd5\xa0\xe8\xf7\x9f\xc4\xd3\xdd\x77\xc4\xf9\xf2\xd1\xde\x2d\xdc\x73\x96\x32\x21\x9c\x42\x3c\x5b\x7d\xee\x9f\xb5\x9a\x6d\xbc\x34\x4d\x68\xaf\xab\x81\xd8\x6b\x4c\x11\x77\x0d\xda\x1b\x50\x64\x24\xd8\x7d\x41\x71\x4e\x31\x67\x5d\x53\xe7\x8c\x7e\x2b\xcd\x41\x07\xdf\xca\x81\xe4\x1d\x14\x89\x89\x2e\xe9\xdc\xfc\xdb\x61\xb3\x87\x8a\x30\x7d\xc0\x0e\x87\xfb\x38\xde\xc3\x0a\xf9\x58\x9f\xd2\x86\x5b\x36\xe5\xcd\xf1\xe6\x84\xa8\x31\x4d\x57\xc6\x20\x34\xe5\xa1\xcc\x4e\x26\x48\x67\x24\x30\x1e\xd5\x78\xba\xb7\x0d\xd9\x7a\x36\x06\x84\xe0\x8b\x3b\xa1\x40\x26\x4f\xa2\x20\x89\x3f\xab\xaa\x22\x7c\x92\x11\x04\xe3\x51\xde\x38\x9c\xce\xfd\x44\xf2\x47\x7f\xd2\xd9\xad\xed\xf6\x02\x4b\x41\x42\x0d\x6d\x2b\xa2\xe8\xab\x0b\x18\x08\x22\xe3\x5b\xe7\x7b\xea\xb7\x9a\x01\xfa\x2d\x94\x50\x61\x45\x38\xb0\xaf\xc2\x8b\xea\x08\x37\x82\x4d\xd0\xbf\x89\x76\x15\x98\xbe\x3a\xc1\x73\xe0\xca\x8a\xfd\xf8\x69\xea\x54\x0f\xab\xe8\xd5\x0b\xda\x8e\xc6\x13\xd2\xd6\x89\x07\x3b\xe1\x27\x44\x1a\x51\x92\x52\xa6\xaa\x4b\x65\x26\xeb\xca\x98\x69\x57\xfb\x46\x34\x1c\x5b\x58\x44\x00\xd6\x85\x64\xcb\x1f\xe0\x64\x49\xd0\x28\x81\x38\x79\xfe\x2c\xea\x7c\xda\xd6\x27\xcf\x9f\x0d\x64\x45\x45\x67\xd8\x69\x6b\x12\x15\x2b\x5b\x81\x02\xe1\x4a\xaa\x3d\xe1\xab\x58\xc1\x5a\x08\x53\x15\x9a\xb5\x41\x25\x29\xa7\x10\x0c\x1c\xdc\x70\x9b\x62\x41\x24\x46\x26\x91\xc4\x1c\x91\xa6\x54\x57\x98\xea\x5d\x2c\x02\x66\xca\x62\xcd\xba\x56\xeb\xe4\x35\x9d\xcd\x08\x17\x71\x6d\x0b\x93\x35\x0b\xdd\x8f\x03\x3e\x46\x53\xa2\xcb\x9f\x53\x73\xf1\x43\xef\x20\x1f\x4f\x0f\x73\xc3\x4d\xb5\x74\xed\x67\x71\xf7\x46\x26\x28\x9f\x8e\x43\xc6\x96\x02\x33\x49\xeb\x50\x60\x04\xca\x03\x95\x2a\x7f\x01\x92\x1a\xad\xa7\xb8\x69\xa6\xb8\xba\x46\x2f\x94\xfc\x1b\x9d\x3e\x7d\x31\xde\xa8\x09\xbc\x34\xa1\xbb\x11\x0f\x0b\x79\xfc\xa1\x3e\x8b\x0f\x6b\xf0\x6f\xe5\x85\xf8\x14\xce\x81\x4c\x09\xea\xb9\x92\x59\x52\xd0\xb2\xfd\x1a\xac\x41\xa0\x2c\x94\x9a\x45\x6b\x91\x6a\x13\x59\x07\xb7\x30\xa4\xb7\x89\x9b\x87\xf9\x4f\xc1\x70\xec\xd3\xe7\xf2\x25\x31\xc9\x38\xc3\x30\x06\x8d\x95\x22\x84\x44\xc0\xa5\x27\x75\xa2\x0d\xd8\xed\xba\xd5\x99\x5c\xda\x27\xea\x4c\xf3\x12\xb4\x9c\xc3\x38\x78\x34\xf7\x20\x64\x74\x33\x5d\x3c\x33\xd6\xf3\x6d\x93\x2f\xd1\xa3\xf4\x30\x0e\xff\xf2\x09\x5b\x2e\xd3\xca\x23\x5a\xce\x68\xcb\xdd\x36\x03\xf7\x95\x6e\x19\x6b\x1c\x18\x22\xb8\xcd\xb4\xb3\xb2\x9d\x2b\xbd\xc7\x10\x55\x84\x33\x26\x4e\xc2\x2d\x3b\xda\xe2\x72\x86\xe0\xe4\x17\x39\xae\x46\x64\xbe\xf0\xb9\x97\x71\x2e\x6e\x86\xc5\x99\x3d\x24\x0a\x67\x04\xdc\x55\x32\x58\x28\x5d\x43\xd7\x21\xf4\x6f\x25\xc4\x72\xca\xca\xe5\x8d\xdc\x96\x48\x16\x52\x0f\xb9\x47\x8a\xd2\xa4\x2c\xb0\x8b\x2e\x9c\x0d\x62\x26\xd5\x9a\x2f\x43\x23\xde\x06\x66\xec\x11\xae\xe8\xb0\xe2\xea\x18\x87\xd7\xad\xde\xba\xa3\xf3\xa8\xad\x2f\xdc\x35\xf7\xb7\x68\x4a\x1a\x16\x97\x63\x88\x6b\x5f\x3c\x9c\x3c\x4c\x64\x7c\xa1\xee\x45\xdf\x31\x50\xf8\xcd\x55\xb2\xf0\x92\x7e\x9c\xf3\xdb\x05\x64\xe8\x1b\xfe\xf1\x49\xc9\xa0\xa5\x40\xed\x38\x3b\x4d\x77\x19\x07\xca\xad\x86\x9f\x0c\xa6\xe7\x99\x25\x67\x57\x9c\x08\x01\x95\xb8\x38\xeb\xae\xe6\x41\xa1\xbe\x49\x4f\x34\x24\xcf\x15\x4f\x19\xb8\x30\x8f\xe3\x54\x61\xd9\xf0\xb6\x02\x0a\xae\x7a\x58\x8d\xd5\x5c\x8d\xcd\xdf\x44\xea\x41\xb4\xbc\xd2\xa9\x40\x72\x1e\x51\x4f\x16\xde\xeb\x16\xd5\x55\x3f\xb6\x88\xcd\xec\xb6\x9f\xd0\x56\x7b\x06\xed\xb8\x33\xd0\xc6\x7d\x86\x06\x23\x3a\xdb\x27\x76\x94\xe2\x3c\xdb\x64\x16\x6d\x3e\xfa\x3f\x85\x23\xf7\xcf\xeb\x20\xcd\xc5\x05\x18\xa4\xd8\x9f\x4f\xfe\x29\xb4\xc8\xac\x28\x9e\xfd\x7d\xfb\x5d\xc1\x74\x6a\x7d\xaf\x57\x76\x1b\x1b\x8d\x13\x63\xa5\x51\x79\x0b\xf3\x2c\xb4\x67\x68\x2b\xb5\xfb\x32\x2a\x2a\x9c\xcd\x2b\xf4\x96\xc6\xb5\x99\xd7\x11\xfc\xb0\x70\xb2\x32\xda\x85\xb9\x15\xe5\x8b\x35\x2f\xf4\xbd\x0e\x48\x02\xa8\xc8\xce\xe6\x9e\xa5\x5f\x68\xea\x39\x0f\x09\xed\x3f\xce\xc1\x61\x8d\x1b\xc1\x62\xd0\xae\xab\x37\x04\xad\xa4\xb4\xf2\x15\xdf\x30\x0a\x6e\xdd\x9a\x75\xd3\x06\xa4\xa7\x7e\xcc\x2f\x16\xbf\x50\x88\x32\x29\xf0\xfa\x31\x0c\x62\x6b\x83\x46\x83\x7c\x0a\x83\x34\x34\xb4\x3f\xba\x63\xfa\x6f\x53\xf3\x6f\x53\xf3\xae\xa6\xa6\xfb\xdf\x9f\xd8\x6e\x0a\xc1\x66\x63\x84\x2e\xdc\xc0\xe6\x09\xed\xc8\xe4\x3a\xe9\x60\xd2\xe2\xf8\x63\x18\x69\x46\x7c\x25\xd7\x00\x41\x0a\x5a\x83\x82\x0c\x69\xd6\xae\xcb\xf0\x0b\x5c\x96\x24\x24\x44\xf3\x20\x0d\xbc\x6f\x67\x18\xa2\xb2\x3d\x57\xa0\x58\x41\xad\x04\x83\xae\xb4\x30\x9f\x41\xa1\xbc\xdb\xaa\xab\x9b\xd5\xcf\x5d\x15\xda\x0d\x46\x19\xda\xce\x30\x43\x1b\x8c\x33\xf4\xd7\x32\xd0\xc8\x06\xeb\xec\x63\xda\x3f\xdb\xf1\xdf\xdf\xc6\xcf\x47\x33\x7e\x76\xd9\xd5\x7f\x5e\x53\xc8\xfe\xef\x0f\x88\x1c\x05\x7b\x7f\xcf\xdc\x0e\x87\x30\xdb\xa9\x51\xe4\xf5\xa3\x06\x62\x0f\x1e\x49\x7a\x1b\x94\x26\x2d\x24\xe0\x7f\x89\x1e\xbd\xdd\x60\xfa\x80\x1a\x6d\xd2\x8e\x8d\xe6\xbc\x8f\x04\x44\x34\x4d\xee\x48\xf8\xcc\x01\x15\x1a\x19\x1d\xe9\x37\x93\xd2\x8f\x2e\xd0\xb8\xe2\xf0\x94\x31\x29\x24\xc7\xcb\xa5\x2d\xb3\xab\x29\x62\x62\xe7\xe6\x7d\x16\xd1\xe2\xa5\x98\x33\xb9\x67\x0a\xb9\xeb\x1f\xe9\xaf\x44\x04\x6f\xf2\x3a\x02\x9a\xba\xe9\xcb\xb4\x78\x99\x39\x15\xe1\xde\x8f\x9a\xc2\x1e\x54\xc0\x87\x22\x47\xc6\xb6\xc0\xd2\x0d\x35\xa4\xe2\x5b\x32\xc7\x47\xe1\xc0\x2d\xd6\x5d\xb3\x45\x3f\xb6\xc5\x70\xdb\xea\xb9\xb7\x28\x9e\x5b\xd2\xf3\xfd\xc6\xd9\x26\xdb\xa5\xa7\xaa\xc3\xa0\xb0\xef\x49\x4d\xb1\xf7\xf7\xf5\x4b\xe5\xd8\x29\x48\xa7\x91\x33\x1b\xf8\x20\xc9\x24\x08\xd5\x29\x17\xd8\x70\xd5\x50\xf2\xb2\x31\xb7\xbb\xf4\xf4\x17\x4c\xda\xf9\xd0\x79\x14\x1f\x28\x8d\xe2\x4f\x94\x45\xf1\xe7\x48\xa2\x48\xc3\x23\xa9\x39\x14\x94\x35\x19\x76\xa5\x1b\x0f\xcd\x87\x8d\x5f\xd9\x8f\x33\x55\x7a\x8e\xc1\xf2\xdd\xc0\x4d\x91\x27\xd7\x6e\x2b\x85\x12\x6d\xa5\x24\xa2\x5b\xa8\x9e\xc8\x46\xa6\xe8\x87\x88\x44\xd9\x4f\xa9\x1a\xfb\xe8\xe1\xe4\x61\x21\x9c\x80\xca\x67\x4b\xf6\x55\x4f\xcf\xe0\x74\xf1\xff\x2f\xb7\xdd\x6c\x27\xdd\x29\x76\x74\xcb\xd0\xd1\x27\x89\x1c\x7d\x62\x7f\x3b\x8a\x0b\x7d\xc4\x25\x1c\xa8\xd0\x27\x9e\x5a\x60\x57\x0c\xcd\xe9\x7a\xf0\xc6\x86\xd6\x1d\x5d\x7f\xc9\x4c\xed\xb4\x08\x45\x9d\xe3\x6c\x14\x34\x57\xd8\xc8\x8b\x3c\x53\xe1\x63\x06\x62\xb9\x50\x86\xc2\xd5\x84\x70\xa5\x33\x92\x52\x36\x4f\xad\x2e\xeb\xd0\xc6\x80\xb2\x2e\x3d\xa6\xdf\xd2\x92\x0c\xe1\xfa\x06\x5b\x9d\x36\x57\x20\xa1\x04\x9c\x46\xde\xbc\x2a\x66\x4b\x27\xbe\xeb\x28\xd7\x1a\x7b\x4d\xf5\x3d\x34\xff\xc0\xc7\x82\x94\xcb\xdd\x2a\x5d\xd2\x8c\xf7\x8d\x1a\x7f\x94\xf9\x37\xa1\xb0\xe1\xe0\xf1\x59\xd0\x96\xd4\xd7\xfd\x57\x0a\x8b\x9b\x29\xf0\x8f\x01\x26\xe8\x10\x5d\x11\x79\x1c\x7c\x53\x38\x27\xd0\x47\x72\xac\x7d\xd6\x27\xd6\xce\xf1\xda\x6d\x46\x38\xa2\xe9\xac\x70\x19\x50\x69\x05\xe6\x96\xdc\x66\xf9\x08\x60\x70\x25\x3b\xdc\x34\x6b\x34\x87\xcb\x42\x10\x6a\x41\x74\xb1\x20\x35\xc5\x92\xa8\x06\xae\xf6\x16\x31\xd1\x94\xab\xf0\x91\xd5\x04\xba\x8d\xb5\xbc\x5d\xe2\xb5\xd9\xc3\x4f\x19\x3f\x37\x85\xb9\xcc\xfe\x7a\x1b\x8c\xbf\x8c\xe6\x55\x91\x22\xe0\x48\x8d\xc2\x3d\x17\x17\x4b\x37\xb7\xec\x47\x17\x26\x1b\x40\xa9\xd8\xf3\xf7\x3e\x64\x42\x76\x99\x80\xcd\xf7\xf5\x61\x91\x15\xd2\xb7\x28\x36\x60\xb8\x49\x4f\xea\x47\x2c\x65\xfc\xd3\xf3\x57\xc7\xdf\x5e\x9c\x5e\x7e\x7f\x5e\x66\x7a\x43\x51\x6f\xc1\xe8\x0b\x0b\xc7\xf6\x39\xc0\xd1\x18\x7d\xfe\x39\x02\x66\x3d\x79\xfe\x6c\x52\x5f\x47\x3f\x7d\x76\x88\x5a\x9a\x5d\x0d\xcd\xa6\xd3\x2b\xd3\x07\x7b\x81\x30\x36\x9b\x62\xb1\xa0\xf2\x6e\x34\x38\x7e\xf5\xe2\xc5\xd9\xe5\x9f\x76\xe7\xef\xc4\x6c\x64\x6b\x2e\xdb\x8d\xeb\x6b\x32\xc3\x5d\x23\xcb\x44\xd4\xe5\xb1\xee\x95\x21\x24\xae\xa1\x63\xdc\x34\x22\xa8\xf5\xf4\xd6\x79\x59\xc4\x80\xb5\x91\x14\xdf\x77\x39\x2a\xa0\x08\xb8\x90\x28\x0a\xde\xa7\xec\x3d\x71\x0a\x1b\xec\x93\x5d\x62\x27\x1a\xe7\x68\x66\xb7\xac\x0e\xa0\xf8\xcf\x26\xb9\xbc\x34\x37\x39\x42\xd6\x2b\xc9\x91\xcc\x03\xfd\x91\xea\xdb\xa1\x0f\x91\xb2\x98\xa8\x66\xf0\x5f\x58\xdf\x51\x32\xed\x83\x94\x0e\x7b\x03\x79\x28\xbd\x2e\xcb\x2d\xf9\xb2\x9f\xcf\x86\x79\xf2\x7c\x90\x27\x73\x79\xf7\x81\x59\x32\x38\x0b\x12\x76\x0c\x91\x34\xac\x18\x7c\xb5\x65\xf9\x83\x01\x79\x7d\x17\x32\x9b\x07\xeb\x37\xd1\xd9\xf0\x39\x3a\x0a\x65\x85\x7e\x7d\x36\xcf\xbf\x2c\x88\x03\x23\x09\x3f\x06\xc9\xcd\xd1\x93\xd0\xdc\x3c\xa8\x1d\x52\x5b\x4f\x75\x17\x72\x6f\xce\x0d\x7a\x19\xa4\xd4\x18\x6d\x3f\xa8\x94\xea\x6a\x06\xba\xb7\xbe\x51\x9a\x35\x28\x86\x6d\x3f\xb3\x0c\x8c\x43\x9c\x8c\x2c\xe0\x09\x91\xc8\xd5\xd1\x4b\xf5\x3e\xb5\xa0\xb7\xd2\xc4\x46\x3d\x62\xa0\xbc\xc9\x90\xd2\xd7\x3b\xe0\x56\x9a\x62\xfe\x06\x82\x27\x9d\x66\x3e\xc9\xae\xe1\x89\xc3\xc8\x12\xce\x2d\xe8\x20\xe9\x52\x38\xc7\xcf\xb0\xfd\x5c\x7c\xb6\xab\x9f\xac\x0e\xe7\xe0\x11\x4b\x5d\x3f\xd0\x94\xbd\x2d\x79\xed\xa2\x4a\x24\x5b\x7a\x04\x9c\x81\xa9\x5f\x51\xd5\x9b\x3a\x84\x03\xf3\xd4\xf1\x5b\x6c\x13\xa7\xd0\xd4\xbe\x95\x65\xbd\xc9\x69\x29\xe0\x41\xe7\x43\xe3\x33\xb0\x2e\xba\xc5\xc2\x14\xf3\x0d\xa6\xe2\xf9\x27\xe7\x9c\x40\x93\x0b\x94\x38\xa0\x49\xa6\xbf\xf5\x15\x48\x0e\x54\xb7\x04\xd4\x24\x7b\x79\x2c\x46\x74\xe2\x66\x3e\x1e\x02\x11\x3d\x9b\x96\x40\x08\xfd\x53\x1e\x88\x56\xa4\x33\xcf\x4f\x02\x3b\x58\xe2\x5b\x59\x58\x11\x5f\x48\xf7\xee\xa9\x79\xfb\x86\xcd\xf4\x83\x38\xde\x80\x8c\xd6\xef\x0b\x91\xbe\x86\x63\x40\x42\x4b\x5f\xd4\xc6\x3c\xd7\xaf\xc5\x8c\xde\x52\xe6\x69\xc9\x39\xbe\x21\xed\x17\xd2\xf8\x19\x68\x2b\x49\xdd\xc3\x95\x6b\x22\x33\xfd\xc4\xb4\x38\xd7\xfb\xec\xb0\x74\xb7\xd5\x72\xc0\xa5\x1a\x54\x37\x1c\xe5\x8a\xce\x8c\x10\xbd\xba\x06\xc8\x53\x42\x84\xea\xfa\x94\x90\x6f\x70\x83\x5b\xd0\x6e\xc2\x4e\x37\x98\xa3\x59\xc3\x56\xb0\xac\xba\xe8\xd2\x91\xa2\x91\x43\xe5\xe1\xe4\x61\x1a\x45\xf0\x83\x78\xe5\xdf\xb4\xcf\xcf\xa9\x41\xe0\x4f\xe1\xc7\x6b\xd2\x6a\xd6\xd1\x4d\xb6\xf3\xc6\xef\x0e\x17\x7d\x89\x46\x31\xb6\xfb\x7e\x2a\x9b\x9c\xe8\xdf\x31\xac\x15\x02\xfd\xb6\xad\x62\xa8\x29\x6b\x3b\x61\x99\x00\xb2\x14\xc3\x3a\xeb\xe1\xaa\x40\xcb\x4b\xdd\x30\xb1\xca\xbe\xf1\x3f\x95\xfc\x8b\xdd\x54\x17\x60\xcd\xc7\xca\x58\x3c\x78\xde\x89\x13\xf7\x75\xba\x76\x21\x2a\x4f\x86\x88\xb8\x23\xc5\x07\x7e\xdc\x0f\x07\xdd\x14\xab\x88\xb6\xf0\x76\x7e\xdb\xd0\x00\xd9\x06\x9f\x7f\x6c\x0a\xe0\x0d\xbe\x3a\x94\x2d\x91\x7b\x52\x6b\xe5\x1f\xef\x8a\x8c\x28\x57\x45\x17\x0a\x62\xd9\x9a\xf1\x5a\xdb\xca\xea\x86\x23\x2b\x30\x8b\xb1\x2b\x51\x10\x02\xf1\xd4\x73\x91\x60\x7f\xdf\xee\x48\xe9\x29\x98\x9f\x31\xc3\xbf\xfe\x85\x96\xb8\xa5\xd5\xc8\x45\x72\x83\xdc\xe3\x7c\xc1\xd0\x94\x54\x1d\xd6\x79\xcf\x73\x2c\x9c\xa4\x74\xe4\x58\x13\x79\x7f\x9c\xa8\xbd\x31\xde\xd9\xe1\x33\x34\xf1\x9e\x33\x27\x85\x39\xa0\x40\x9d\xe3\xb5\xd7\x3a\xcd\xdb\x0a\xba\x20\x00\xd4\xd1\x70\x6f\x55\x5b\x57\x79\x5c\xef\xbf\x57\x31\xda\x52\x05\x34\xe5\xf8\x97\x61\x83\x5b\xeb\x04\x68\x1f\x3d\x2a\xd4\xfb\xff\xac\x08\x3d\x7a\xc4\x33\x17\x02\xa0\xb4\x39\xcd\xa6\x70\x4e\x99\xcc\xb0\x50\x2f\x18\xc5\x71\xab\xf2\xb0\x61\x9b\x3d\xaf\x85\xf5\x35\x8f\x1e\x3a\xcd\xd9\xb3\x7f\x0b\xf9\x05\x18\xcd\xcc\xd3\x43\x2e\x45\xa4\x3c\x94\x2b\xa6\x1e\x6b\x3b\x07\x96\x0e\xf9\xe8\x65\x38\xc9\xa3\xaa\x92\x77\xa4\x07\xf1\x12\xe3\x16\x20\x0e\xbf\x29\x12\xbe\x41\xca\x6e\x88\x70\xf2\xc8\x9c\x22\xb6\xc8\xe0\xb4\xab\xae\x89\x4d\x23\x8b\x6c\x5a\x91\x24\x36\x96\x02\xef\xc5\xc7\x54\x63\xab\x30\xd4\xf9\x75\x4a\x56\x10\x37\x37\x81\x9b\x35\x44\x0b\x84\xd4\xa5\x79\xe2\x98\x41\xe6\x1e\xa6\xed\xb9\xc9\x8b\x2c\xa5\xa1\xf7\x84\xdb\x45\x29\xd2\xfe\x7b\x3a\x88\xf1\x2f\x1b\x25\xb3\x1f\x7c\x10\x8a\x27\x69\x14\x3e\x38\xd5\xfa\xd9\x70\xc1\x6e\x88\x39\xf6\x6d\x08\xd4\xb1\xe1\xa0\x20\x8e\x61\x17\x6c\xff\x7e\x07\x60\xb4\x0c\xdf\xfb\x5b\x33\xf1\x2b\x19\xfd\x03\xf8\xc7\xa8\x06\x30\x8c\xed\xbb\x0f\x28\xc0\x3e\x8b\x00\x17\x92\x0e\x76\x36\x94\x1c\x40\x5f\x11\x4d\x07\x74\x93\x6c\xb2\x68\x5d\x36\xe6\xb3\x06\x55\xcc\x52\x24\x27\x3d\xb9\x08\x22\xf2\x8f\xba\x24\x83\x52\xf7\xde\xac\x83\xa0\x2c\x5a\xd6\xaf\x98\xda\xa0\x35\x63\x89\xaf\x49\x7d\xd0\x63\x70\x5c\xfa\x26\xe9\x95\x45\xe8\xad\x7a\x69\xfd\xea\xa0\x57\xe5\xde\x42\xda\xe7\x80\xdd\x59\xb1\xad\x21\xe4\x61\x8c\x53\xe1\xe7\x52\x40\x45\xe2\x9d\xd3\x39\x8e\x4d\x13\xbf\xe5\x63\xce\xf8\xe5\x92\xb3\x9b\x24\xbc\x1d\xca\xb8\x82\x57\xdb\x67\xd5\x05\x72\x23\x7c\xa1\x6e\xa7\x74\xa4\xf0\xfd\x27\x2f\x8c\xbd\xf3\xd9\x38\x17\x21\x15\x6c\x41\xa3\x72\x21\xc2\x3f\x46\xe9\x60\x40\xa4\x75\x8e\x13\x2f\x5c\x4d\x39\xa9\xa4\x0b\xac\xbe\xcd\x90\x79\x3b\x2c\xe4\x87\x7c\xe1\xee\x2a\x51\x31\xcb\x32\x3d\x15\xfc\x63\x74\x50\x6c\xe9\xac\x9d\x31\xbe\x70\x6f\x39\xda\x55\xb2\xcb\xa2\x57\xc9\xf5\x87\xf7\x80\x4d\xed\xa7\x23\xce\xf1\x7a\xab\x52\x96\xf9\xf0\x7a\xe8\x13\xd0\xe9\xc0\x47\xea\x5f\x27\xd6\x6c\xa1\x14\xdb\xd7\xc7\xd1\xb8\xae\x49\x36\xf1\x1d\x46\xb1\x29\xbb\x7e\x94\x30\xa5\x4c\x0f\x63\xda\x6c\x31\xcc\x33\x22\x91\x9d\x2b\x00\xb3\xe4\x8b\xa9\x66\x5a\xda\x1f\xfd\x5c\x21\xb9\x22\xc6\x29\xec\x24\x59\x90\xf6\xdb\x97\x06\xa7\x86\xa5\x90\x91\x99\xc6\x86\xde\x67\x16\x8a\x5d\xba\xb2\x42\x99\x15\xf5\xa2\x75\x62\x28\x47\x4b\x6f\xeb\x8c\xda\x2f\xf3\x62\x52\xf6\x97\x09\x67\x0d\xf8\xca\xd5\x08\x6f\x58\x43\x26\xae\x86\xf5\x84\xe3\xd5\x0f\x50\x92\xb9\x90\xd6\x91\x2c\x78\x3a\xe0\x84\xd6\x83\xce\x84\x0d\x18\x18\xb2\x0f\x63\x10\xf3\xc2\x16\x18\x14\x70\x79\xf0\x00\xbd\xe2\x57\xb8\xb5\x8b\x98\xf2\x3a\x6d\x25\x73\x8f\x72\xc7\x3e\xca\xc2\x73\xbf\xfa\x6c\x84\x4c\xc3\x42\x25\x70\xcb\xb3\x29\xed\x62\xbf\xae\x3e\x7c\x5f\x1f\x23\xad\xa7\xf9\xe4\x43\x30\xc6\x29\xa9\x73\x74\x86\x35\x3e\x75\xd8\x6a\x95\xaf\xea\xcf\x80\x2b\xe1\xa0\x14\xd3\xf0\xe9\xcb\xe2\x56\x28\xab\x83\x30\xaa\x52\x08\x83\x49\xc7\xcb\x95\xa8\x48\x3d\xb1\xfb\xdb\x6b\x33\x50\x20\x24\xda\x9f\xdb\x24\x7c\x3e\x78\x10\x6a\xe5\xf1\x95\xb7\x29\x41\x33\x0a\x07\x06\x6d\x51\x83\xc3\xdc\xb5\xd0\xc3\x30\x9c\x05\x5a\x6d\xa1\xde\x96\x33\x0c\x87\x3e\xdb\x26\x84\x0e\xc2\xf0\xc9\xa2\x83\xa9\x0c\x5f\x9a\x0c\xfe\xd1\xa3\x5b\x20\xea\xf2\x4c\x37\x0c\xa1\x57\x78\x8b\x87\x2f\x6e\x35\xcf\x28\x89\xf5\x03\x60\xb2\xcd\x93\x1f\x43\x9f\x2d\xae\xf3\x6d\xfa\xdc\x3e\xcb\x75\x10\xea\x86\xdb\x81\x9b\x3e\x2e\x2b\xf6\xc7\x9f\x92\xe0\x95\x7d\x69\x79\x9e\xbd\xdd\x3d\xb4\x3d\xd5\x3e\x93\xe1\xe3\xd7\x89\x84\x88\x1e\x0a\x19\x17\xb7\xe7\x65\x74\x99\x0b\x1d\x46\xf0\x26\xd9\x3b\xc4\x79\x57\xff\xc8\x77\xd4\xb3\xf7\x45\xe7\x1d\xec\xd8\x7e\x57\x5d\x5f\x76\xf0\x36\xe6\xaf\x4f\x36\x88\x45\x6e\xb1\x6e\x78\x71\xc0\x49\x58\x81\x7b\xf7\x0d\xb1\x65\xa7\x62\x05\xf2\xde\xea\xe3\x1f\x09\xd1\xd1\x57\x08\xfd\x63\x27\x74\xc7\xbd\xf8\x3e\xfe\x14\xf8\x3e\xbe\x1b\xbe\x81\xd1\x0f\x06\x4c\xe5\xbd\x80\x25\x7c\x07\xdf\x25\x45\x59\x79\x73\xa7\x8f\xf6\x77\x08\x1c\x05\x1b\x48\x34\x04\xc3\x59\xfd\x65\x18\x83\xb7\x1a\xd0\x9d\xc5\xe7\x2e\x75\x76\xec\xe7\xb6\x85\xd3\xd3\xfe\x61\x01\xf5\xad\x2a\xa8\xa7\x00\x1e\x97\x00\x0c\x95\x52\xb7\x9f\xf4\x9a\x6c\x59\xc2\x6e\xea\xef\xae\xcd\x16\xa5\x6c\xbf\x1f\x23\xf3\x01\x40\x65\x9b\xd8\x0e\x03\x77\xaa\xbd\x7a\x5a\x47\xae\x5d\xef\x2d\x08\xf2\xa4\xb4\xb7\xc0\xeb\xbc\x9c\x88\xae\x91\x62\x0b\xeb\xbf\x90\x27\x46\x67\xe8\xb3\x4d\x09\xbd\xbf\xfd\x86\x7a\xf2\x79\x0f\x21\x9f\xb7\xf8\xd0\x7f\xc9\x8c\x01\x15\xda\xdb\x21\xf1\xb8\x57\x44\x3a\x23\x64\xdc\xe3\x6f\x78\xd7\x31\xde\x2d\x50\x45\xb8\xa4\x33\x5a\x41\xca\x4c\x6f\x75\x65\x30\xc5\xb7\xb9\x7a\x99\x5b\xe5\x54\x42\xa6\xa1\xbb\xc8\xef\xec\x6e\x8b\x3c\x98\xdd\xfa\xae\x96\x9c\x13\xca\x43\x94\x10\x56\xb2\x44\x44\xe6\xb5\x2d\xa4\x4c\x5b\x0f\x23\xa6\x1a\x60\x1b\x00\x39\xb4\x0d\x5d\xde\xe3\x6b\x98\xfc\xb1\x6f\x53\xc8\xc3\x0d\x42\x7d\x50\x3e\xb2\x65\xd2\x3d\x5e\xdc\x43\x41\xa3\xc9\x50\x61\x07\xbc\x9f\x98\xe1\x9e\x86\xd6\x78\x0d\x7a\xf7\xbd\x40\x74\xe1\x97\x1a\xbd\x3e\x76\x15\xf6\x93\x67\xb8\xb3\x94\x2f\x17\xd2\x60\x4b\xb5\x43\x34\x2f\x6e\x65\xc0\xec\x1e\x27\xf5\x4e\xea\x1e\x91\xee\x18\xf2\xf5\xb1\x18\xbd\xab\xa2\xfb\x55\xe3\x6c\xb6\x6a\x27\xeb\xad\x88\xae\xc9\xfa\x56\x33\x0e\x9d\x32\xe6\x88\x56\x8a\xa9\xd9\x2a\xf9\xfe\x8b\xdd\xec\x5d\xbb\xd2\x37\xc2\xe3\x6b\xc3\xf1\x5b\x30\x6a\xb1\xaf\xc9\x5a\x61\x67\xa1\xc7\x7c\x18\x41\xb1\x0b\x7e\x4d\xd6\x9f\x95\x22\x31\xbd\x84\x3b\x79\xfe\xec\x19\x67\xdd\xf2\x39\x59\xab\xce\xe2\x20\x86\xfb\x09\x55\x4a\x9d\x4c\x59\x8a\x1f\x18\x69\x78\x77\x5b\x77\x97\x1b\x78\xf6\x13\x5e\xf0\x4e\x48\x83\xe2\xb3\xe4\x1b\xf0\x5a\x40\x35\x34\xfb\xac\x9f\x09\x71\xe7\x0e\x38\xf3\xb8\xaf\xbd\xd7\x15\x1e\x09\xfe\x41\x73\xb8\x0a\xa0\x0e\x86\x92\x8f\xfb\x00\x7d\x5e\xf0\xeb\xa5\x6f\x06\xbb\xf7\x9a\x8f\xf1\x12\x4f\x69\x43\x65\xef\x43\xf8\x15\x5b\xae\x9f\xf8\x66\xc5\x37\xbe\x42\x14\x80\xf0\xaf\x96\x44\x9f\xcb\x49\xb8\xb8\x2c\xde\x24\xaa\x3c\x1a\x90\x70\x63\x90\xb0\x49\x3e\xf7\xe3\xdd\x3a\xed\xa5\xa8\x8b\x9a\xc2\x7c\xd9\xf4\x3f\xa4\x92\xf9\xa4\xdf\x90\x19\x3a\x4c\xe7\x6f\x5f\xfc\xef\x25\xdf\xd7\xa3\xcd\x73\x31\x98\x45\x78\x45\x38\xdd\xcf\xdf\x17\xb7\x28\x6d\xcf\x37\x5e\xaa\x6d\xc5\x2f\x9e\x55\x52\xb7\x9d\x61\x16\x7f\xa6\x7e\x64\x3e\x31\x03\xff\xa1\x2c\xa2\xf4\xb6\x3b\x72\x47\x42\xaf\xdb\x32\x86\xc5\xe4\x83\xf0\x84\x3a\xbd\x76\x63\x06\xef\x47\x35\x6c\xa0\xce\xa7\x8f\xcc\x00\x76\xcc\x3f\x94\x03\xea\xeb\xbb\x0b\x08\x47\xab\xdb\x2e\xbe\x43\x62\x87\xd5\x7f\x81\xaf\x89\x40\xee\x2d\x25\x41\x20\x35\x52\xdb\x25\xba\xbc\x9d\x40\x23\xda\xea\xc7\x75\xc7\x60\x96\x40\x79\x8b\x89\x8f\x6e\x76\xd3\x7d\x68\x2f\x50\xa5\x53\xc9\x4a\xaf\xf7\xce\xba\xa6\x31\xea\x8e\x06\x3b\x89\x6c\x93\xa6\x09\xce\xa0\xfe\xaa\x1e\x3f\xdb\xdc\x95\xef\x88\xaf\xce\x88\x7e\x76\xc6\x5f\xf2\x35\x8c\x17\x7c\x37\xd6\xcf\x50\xe6\xe1\xdd\x91\x07\x0b\x9e\x89\x7f\x04\x00\xc7\x63\xf4\xc4\x41\x4a\xc9\xa7\xef\x1d\x41\xf9\x1c\x35\x4b\x78\x5f\x86\xcd\x92\x58\x0c\x3a\x3b\x01\x7d\xae\x13\x90\xcd\xcf\x59\xd7\xd6\x88\xb3\x29\x6d\x11\x6e\xae\x18\xa7\x72\xbe\x70\x10\x25\x33\xcf\xb0\x80\x81\x91\x06\x75\x24\x33\xd5\xdf\x05\xfd\x35\x8d\xa7\x64\x57\x23\x36\x45\x73\x5c\x11\x99\xde\x9a\x35\x01\xa5\xf2\x5b\x2c\xfa\x2d\x5c\x0b\xce\x14\x43\x1c\xa3\xaf\x0f\x87\x9d\x3a\x19\x42\x07\xae\x9a\x0c\xdc\xf4\x6e\x88\x10\xf9\xbc\x15\x1f\xd9\xd9\xde\x2f\x68\x9d\xca\x54\x12\xf3\x6e\x36\x6b\x48\xad\x6f\xb0\xe9\x9a\x96\x76\x7d\x2c\x9a\x25\x2b\xb2\xf4\xfc\x0d\x18\x68\x31\x12\x45\x93\xb5\x9f\x74\x91\x8a\x1d\xd8\x9d\x67\x6d\x4d\x7e\xb1\x2f\x09\xa3\xc3\xe0\x65\x25\x1b\x4b\xd5\xcf\x1c\x89\x13\x0a\x3c\x09\xa9\x6a\x3f\xbe\xd7\x6b\x65\x39\xf9\xf7\x04\xfe\x6a\x4e\x1b\x12\x8d\x80\x9e\xec\xb8\x0c\xc9\xea\x16\x11\xb1\xba\xff\xfb\xdf\xc7\x25\x73\x50\x0f\x7c\x18\xff\xf9\x65\xe0\xb3\xf3\xeb\x95\xf4\x78\x78\x2f\xb2\x46\x74\xe4\x39\x5c\xcf\xf7\x85\x67\x08\x3e\x40\xd8\x39\x9b\xe1\x8f\x21\x62\x3f\xfd\x48\x6b\x45\x68\x1f\x98\x0d\xdf\xa1\xca\x52\x89\x8f\x6c\xc9\x03\xe6\xa3\x00\x06\xdc\x1e\x62\x1c\x41\xe9\x5b\xf3\xa3\xae\xac\x45\x67\x68\x45\x34\xdb\x5f\x31\x28\x2c\x62\x7e\x6e\xb0\x12\x24\x2d\xb9\x15\x95\x91\xb9\xeb\x1b\x35\xdf\x75\x57\x96\xe2\xd6\xe9\x9a\x85\x3f\xf6\xc5\xa8\x8f\x9d\x47\xc4\x7b\x39\xc0\xb1\xea\xae\xf7\x08\xa8\x9c\xec\x34\x29\xab\x57\xa4\xd6\x70\xa9\x74\xf1\x45\x92\x29\x33\x88\xe5\x87\xdf\x23\x76\x42\xe1\xdb\xa8\x99\x24\x18\x51\xbd\xe1\xc3\x81\xf7\x42\xe6\x3b\xd8\x86\x13\x3f\x1b\xdf\x76\xc7\xa5\x67\x5d\x74\x66\x04\x47\xd9\x91\xaf\x52\x07\x57\x11\x8c\x83\x08\xdb\xbb\xbd\x4b\xc2\x17\x9d\xf4\x29\x3d\x9c\x1b\xf9\xa3\x3a\x77\xc2\x5e\x3d\x9e\x51\x31\x27\x1c\xad\xc1\x0f\xa7\x77\x30\x58\x2a\xd1\x41\x97\x15\x82\x73\x62\xfa\x67\xed\x29\x8b\x0f\x27\x9f\x96\x15\x09\x54\xaa\x14\x2a\xc8\x19\xd1\x67\x4f\xfc\x5c\xaa\x4b\x06\x70\xd7\x2d\x60\x53\x91\x46\x97\xea\x06\x07\xcb\x0a\x2f\xa1\x62\xe0\x74\xad\xfe\x81\x92\x55\x35\x6b\xbf\x88\x78\xcf\x96\xaf\xe2\x5d\xeb\x02\x7c\xa6\x2e\x5e\x63\xab\x7e\x63\xf9\x85\x40\xab\xf9\x1a\xd1\xe8\xa9\x3c\xcd\x71\xf1\x77\xd9\xad\xa7\x73\x5a\x5d\x7b\x2a\x03\xb3\x68\x94\x1f\x42\xa6\x4e\xe6\x10\xd4\x0d\x5f\x76\x0b\x74\x88\x38\xb9\x21\x5c\xd2\x69\x63\x2e\x40\x3f\xd1\xa7\x43\xaa\x40\xfa\x6e\x96\x5f\x3c\x90\xff\x65\x83\xe2\x54\xf1\x4d\xe1\x0a\x8b\xa2\x91\x5a\x6c\xfa\x93\x77\x2f\x3b\x22\xca\x08\xef\x6c\x50\x49\x16\x4b\xbb\x48\x3f\xd2\xf8\xf5\x61\xfb\xa5\xfb\x3d\xc0\xb0\xd4\x32\xfc\x19\x1d\x02\xe8\x24\x31\x07\x1d\x22\x1a\x85\x88\x72\xe6\x07\x50\x29\xe7\x1f\x27\xca\x46\xa5\x5d\xbb\x61\xdd\x46\x7f\x39\x87\x72\x93\xe1\xa2\xcb\x44\x7a\xb3\x48\x41\x52\xfa\x3f\xaf\x95\xde\xcb\xd0\x12\x73\x49\x2b\xba\x74\xf7\xd9\xb4\x78\x33\x1b\x4b\x01\x35\xdc\x44\x79\xe4\xa6\x4e\xf7\xc6\x55\xe0\x72\x84\x61\xe1\x44\x83\xac\x4e\x5e\xf6\xcc\xbc\x74\xbf\x8f\x0f\xd0\xff\x8d\x85\x92\x46\xfc\x7d\xa6\x73\xec\x70\x90\xfa\xe1\x27\xd1\x99\xaa\x5f\x48\x4a\x92\x6f\x77\x49\xd6\x8a\xbd\x63\xfe\x35\x24\xd5\x05\x31\xb0\xec\x18\x0f\x8a\x0b\x24\x5a\xb6\x59\x23\xec\xd7\x47\xdb\x62\x5e\x5d\x4c\x33\x77\x22\xd7\x45\x7c\x7d\x35\x75\x6b\xa4\x8c\xf4\x64\x3f\xee\x6d\x72\xa7\xfc\x02\x65\x94\x72\x65\x00\x9f\x93\xb5\x8f\x31\x4e\xfc\x97\x99\x97\xef\x38\xc9\x2b\xdc\xc4\x97\xca\x5e\x3f\xb7\x5c\xd7\xca\xed\xd9\xd3\x1c\xa9\xaa\xff\x86\x3b\xc2\x01\x53\x9e\x3c\x7f\x16\x0c\x76\x0b\xa6\x54\xf6\x6e\x88\xee\x7f\x07\x53\xa6\xf9\x7b\xbb\x33\x65\xb8\x68\x9e\x29\xd3\xc5\xd9\xc0\x9b\xf5\x75\xe9\x52\xb5\xf7\xaf\xe4\xfc\x68\x7b\x18\x4e\x4c\xd7\xa6\x40\x24\x94\xd6\x23\x53\x90\x44\x9c\x71\xe6\xef\x60\x37\xc4\xe6\x1e\x1b\x6d\xc9\x97\x29\x03\xe7\x42\xbf\x3d\xaf\x24\x18\xf4\x71\x9e\xfc\xf1\x01\x32\x69\x30\xe5\x4c\xeb\x92\x42\x36\x84\xae\x6e\xaf\xc3\x7e\xfa\xea\x38\x24\xb8\xd8\x6a\x6e\x15\x6e\x07\x10\x9f\x84\x1b\xae\x22\x4b\x5d\xc3\xca\x14\xc8\x35\x4f\xae\x4d\x09\x6c\x18\xa5\xf8\xbc\xd5\x98\xbf\xdd\x43\x73\xb6\x52\xe7\x2f\x54\x09\xc7\x02\xe1\xba\x26\xb5\x4e\xaf\x53\x3b\x0a\xb7\x5e\x3b\x5a\x5e\x71\x5c\x13\x83\x8d\xa9\x71\x26\xe0\x66\x8e\x79\xed\x6a\x4a\x90\x58\x92\x8a\xce\x28\xa9\x91\x20\x4b\xcc\x75\xc1\x2c\x50\x04\xc8\x2f\x54\x40\x42\xa5\x90\xbc\xab\xa4\xc8\x5d\x27\x86\xca\x85\x4c\xa2\x03\x94\x7d\xd9\x43\xf3\xa2\xef\x2d\xeb\x5c\x74\xc1\x65\xad\x4c\x14\x2a\x58\xad\xcb\x30\xec\x75\x1a\x5e\x58\x01\xee\x6a\x56\x78\x2d\x8a\xa5\x61\x97\x4d\x27\xcc\x91\x5e\x64\xae\x72\x70\xc6\xda\xc9\x7d\xfc\x55\xae\x59\x89\xb0\x30\xfd\x42\xf4\xb3\x4a\x73\x7d\x37\xda\xfb\xbc\x4b\xfd\xe4\x55\xed\x8b\x14\x3d\x2a\x8f\x31\x46\xff\xfa\x17\x9a\xe1\xc6\x54\x31\x09\xe8\xfb\x8c\x24\xa5\x0a\x7b\xee\x39\x37\x64\x26\xcd\x3e\xae\x89\x90\x9c\xad\x83\xf4\x82\x6f\xc2\x96\x98\xc7\x37\xe4\x57\x84\x13\x84\x9b\x86\x55\x58\xea\x22\xf8\x18\xd5\xa4\x22\xca\x5a\x6b\xe8\xaf\xee\x7e\x3d\x69\x25\xbd\xf1\x67\x0e\xf4\x85\x6c\x06\x57\xc1\xdb\x47\x41\x15\x61\x01\x45\x02\x2f\xdd\x58\x84\x26\x86\x5d\x88\x00\xd7\xa6\x9d\x43\xe0\x23\x33\x68\x71\xb6\x52\xfd\xf5\x0d\x4e\xf7\xa6\x50\x78\xe1\xdf\x9e\x67\x50\x3d\x80\xb6\x33\xf3\xb5\xda\x5e\x0e\x9c\x60\xfe\x0a\x9b\x79\xcf\xa7\xe9\xea\xa0\x92\x75\x00\xd0\x75\x82\xaa\xf9\x46\x52\xd8\x54\x80\x88\xd2\x36\xf3\xd6\xcd\x4a\x99\x1c\x01\x59\x6c\xe5\x3c\xe3\x31\xd5\xe5\x18\x11\x6e\xd7\x0b\xc6\x49\xdf\x0e\x8f\xae\x9b\xdb\x12\xa2\xbb\x70\x9c\xee\x91\xf1\x9c\x3a\x62\x3d\xec\xd2\x95\x7a\xa4\x1d\xd1\xb6\x9c\x80\x61\x3d\xda\x52\xe9\x6e\xe5\xc7\xb7\xe0\xf2\x6a\xd9\x49\x02\xec\x70\x93\xb4\xa0\xff\x50\x5b\x5f\xb8\xbf\xd8\xaa\xe0\x71\xd4\xde\xb7\xb0\xdd\xd0\xa5\x71\x4b\xe8\xb0\xfd\xa6\xd2\xe3\xb7\x2b\x0c\xbe\x73\x59\xf0\x62\x51\xf0\x41\xb7\xed\x36\xd5\xb3\x7b\x13\x84\x4b\x2f\x23\xa4\xeb\x5a\x28\x8c\x9d\x17\xc5\xde\xa6\x06\x76\x7a\x11\xb3\xa4\x15\xa0\x43\xa3\x49\x8c\x32\xee\xba\x4b\xbe\xf5\x87\x78\x58\x62\x2b\xf0\xbb\xbd\x39\x31\x0c\xb2\xc0\xe7\xa5\x6f\x77\x02\x3b\xbc\x2d\x86\x7e\xcd\xb3\x61\x30\x52\x4d\x18\x1c\x65\xb6\x0e\xa0\x13\xd0\xa1\xde\x66\xf5\x39\x9d\x67\xa7\xbe\x78\x64\x0a\xcb\x2e\xe1\x9d\xb2\x8a\x05\x85\x80\x40\x5b\xd6\xc0\x72\x55\xe7\x30\x57\x7f\x62\x53\xa0\x76\x49\x80\x83\xec\xc2\xc9\xec\x78\xa0\xe0\x75\xd6\xf8\x92\x2e\x88\x90\x78\xb1\xb4\x22\x69\x94\x15\x83\x9c\x48\xdb\x66\xfc\x65\xba\x83\x1c\xb8\xa0\x8e\x4e\x22\xcd\x05\xbe\x21\xa3\xbe\x79\xef\x21\xc9\x36\xea\x68\x03\x89\x33\xc7\x43\x8f\x5c\xf4\x77\xdb\x7c\x83\x39\xea\x0a\xda\xf7\x85\xc6\xf1\x1c\xcb\x39\x3a\x2c\xa0\x7c\xe4\x6c\x0b\xd7\x6f\x6e\x2b\x13\x6f\xea\xeb\x4a\x18\xc7\xfd\xad\x71\xb3\xa9\xbb\xb3\x3c\x22\x5e\x4b\xde\x7a\x7a\xaf\xd7\xf7\x20\xbe\x2d\xf3\x3b\x3a\x44\xef\x53\xf9\x55\x5c\xc2\x08\x9c\x5e\xb7\x3e\x24\xd3\x15\x2b\xc2\x7b\xb2\x6f\x72\x10\x8d\xa1\x18\x80\x4c\xe9\x3d\xde\x05\x9c\xa3\x65\x04\xb2\xb4\x14\xe3\x92\xff\x1f\xa3\x25\xa7\x37\xea\x7f\x41\xc8\xbd\x98\x61\xe3\x6a\xc1\xe9\xe7\xf4\x95\x96\x09\xaf\x33\x42\x71\x6b\x2c\xa3\x1b\x4f\xaf\x5a\xf4\x02\xd3\xb6\x25\xda\x9f\x7b\x49\x84\x6c\x09\xbc\x6d\x42\x92\xcc\x05\x61\x0a\x14\x44\xef\x4c\x98\x07\x0f\xcd\xc4\xf7\x94\x56\x38\xb7\x41\xeb\x39\xe1\x24\x7c\xc9\x05\x1d\x69\x85\x17\x36\x1c\xbc\x8c\xa0\x91\x9c\x32\xe3\x13\xc5\xf1\x78\xfe\xc1\x16\x37\x61\x4a\x04\x6a\x68\x6b\x8a\x38\x20\x39\x67\x82\x84\x1d\x2c\x5a\x78\xe1\x70\x8a\x30\xd0\x4f\x9a\xb5\xa2\xd3\x75\xf2\xb0\x34\x29\x9a\xac\xd5\x86\x21\xe3\x4a\xa7\xae\x3b\x98\xad\x79\xef\xc5\x94\x33\x17\x90\x4c\x8c\xc1\x55\x1c\xdc\xcb\x5b\x0b\x49\x16\xa8\x9a\x77\xed\x75\x38\x10\x28\xc4\x18\x2e\xe9\x37\x6b\x13\x47\xae\xed\x83\x8e\x9a\x92\xd6\x03\x85\x1b\x00\xc7\x3a\xa9\xec\x5f\x6a\xbe\x72\x45\xc4\x17\xb8\xa5\x4b\xa3\x3a\x4f\xa2\x6d\x14\x16\x55\xeb\x4f\x04\x09\x69\xe7\x18\x93\x0a\xd1\x91\xa1\xa4\xaa\xc2\x2f\x61\x3a\xd9\x6e\x5b\x20\xc8\x3f\x19\x18\xf3\xeb\x51\x79\x42\x05\x49\x3c\x98\xd9\xb6\xe3\xd6\x79\x57\x05\xce\x17\x14\xa5\x8e\x6e\xde\x40\x6a\x19\xde\x55\x77\x5c\x81\x2c\x71\xa9\xf0\xe5\x1d\x09\x9e\x0e\xf1\xf5\x28\xc3\xba\x40\xe6\xbe\xc4\xb0\x1d\x29\xec\x92\x6a\x6e\x4d\x62\xeb\x98\xbb\x3d\x8d\x83\xcc\xa0\xe8\xcf\x3b\xd2\xd5\x83\xfd\x7a\x94\x23\x59\x20\x69\x6f\xaa\x55\x3c\x78\xb9\xf4\x95\xd2\xfc\xfb\x0b\x09\x6f\x55\x3e\x3b\x6a\x0d\x31\xb8\x5d\xae\xac\x6e\xf5\x92\x1d\xba\xdd\x23\x25\x59\x5d\xed\x0d\x8f\x95\xe4\x75\xb8\x77\xb8\x39\x8a\xf6\x7b\x9f\x57\x29\xdf\x10\xdd\x79\x98\xe4\xb2\x56\xef\x78\x77\x2d\xf6\x11\x7e\xfe\x1b\x5e\x3b\xe9\x49\x3c\xcf\x59\xcd\x3a\xcf\x7f\xbf\xf7\xff\x03\x00\x00\xff\xff\x59\x26\xe0\x09\xb0\xed\x00\x00" +var _epochsFlowepochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x7b\x73\x1b\x37\xf2\xe0\xff\xfe\x14\x88\xaf\x2e\x21\x37\x14\x1d\xdb\x57\x5b\x5b\x3a\xcb\x7b\x8a\x24\x3b\x2a\xc7\xb6\x6c\x29\xd9\xab\x4a\xa5\x62\x70\x06\x14\xb1\x1a\x0e\x68\x00\x23\x99\x71\xfc\xdd\x7f\x85\xc6\xfb\x31\x43\x52\xb6\x93\xcd\x56\xf8\x8f\x65\x12\x68\x34\x1a\x8d\x46\xbf\xd0\xa0\xcb\x15\xe3\x12\x3d\xe9\xda\x4b\x3a\x6b\xc8\x05\xbb\x22\x2d\x9a\x73\xb6\x44\x77\xa3\xef\xee\xde\xb1\x2d\x1b\x76\x13\xb5\xb2\xff\x8f\x5a\x9c\x1e\x5f\xe0\x59\x43\xce\x25\xbe\xa2\xed\x65\xd0\x34\xfe\x21\xea\x73\xd4\x74\x42\x12\xfe\xea\x28\x68\xee\xbe\x8b\x5a\x1e\x3f\x7b\x1a\xb4\x39\x7e\xf6\x34\xfa\xf5\x09\x21\x22\xf8\x59\xfd\xf7\xee\x9d\x3b\xf7\xee\xa1\x8b\x05\x41\x92\xad\xf6\x1a\x72\x4d\x1a\x24\x96\x98\x4b\x54\xb1\x56\x72\x5c\x49\xb4\xc4\x2d\xbe\x54\xb8\xca\x05\x41\x0d\x9d\x93\x6a\x5d\x35\x04\xb1\x39\x22\x2b\x56\x2d\xc4\x14\x9d\xb6\x00\x7e\xa2\x40\xe9\xef\x10\xe6\x04\xda\x8b\x25\x6e\x1a\x22\x24\xea\x5a\x2a\x55\x1f\x49\x97\x04\xdd\x2c\x88\xf9\x9d\xd6\xa4\x95\x54\xae\x91\x54\x93\x47\x23\xe8\x43\x54\x4b\x05\xac\x25\xf2\x86\xf1\x2b\xc4\x56\x84\x63\xc9\xb8\x18\x23\x2a\x90\x90\x58\xd2\x6a\x8a\x5e\xda\x6f\xd1\x12\xaf\x11\x6b\x9b\x35\x6a\x08\xbe\x26\x88\x71\xf4\x6f\x46\x5b\x18\xc0\x80\x50\xd0\xb0\xd4\xd8\xa1\x19\xeb\xda\x1a\x73\x4a\x44\x0a\x64\x46\x10\xf9\x37\xa9\x24\xa9\x51\xdd\x71\x35\x69\xdc\x9a\x4e\x73\xc6\xd1\x35\xe6\x94\x75\x42\x01\x5b\x52\x51\x93\x25\xc1\x2d\xeb\xb8\x98\xa0\x59\x27\xd5\x70\x6b\xc4\xc9\x12\xd3\x16\x99\xd1\x93\xe9\x75\xad\xa4\x0d\xfc\xa0\x61\x92\xb6\x16\xd3\x3b\xf7\xee\x29\x80\x27\x9e\x70\x62\xd5\x50\x89\x68\x2b\x19\x7a\x88\x56\x0b\x2c\x88\xd8\x57\x4d\x7e\x3b\xb8\xf5\x07\xba\xa3\x93\xb3\x97\x47\xdf\xa1\x17\x68\xf3\xe7\x37\xd7\xf8\xeb\xfb\x68\x3a\x9d\x42\xff\x3d\xf5\x41\x96\x75\xe1\x7f\xbf\xed\xa1\x73\x22\xbb\x15\x52\x7f\x1d\xb1\xe5\x92\x4a\x45\xbc\xbd\xdf\x7e\x73\xbd\x3e\x0a\x69\x05\xe1\xfe\x18\xa1\xf3\x8b\xc3\x67\xa7\x2f\x9e\xa2\xb3\xef\x0e\xcf\x4f\xd4\x97\x2f\x58\x4d\x3c\x5f\x00\xd9\x80\xc4\x92\x21\xd1\xcd\x96\x54\x2a\x36\x01\x3c\x39\x79\xdb\x11\x21\x05\xac\xa0\xa2\xfd\x8b\x93\xff\x7f\x61\x16\x40\x2f\xb2\x82\x27\x17\x54\x68\x5a\x4f\xd1\xa1\xd4\x6b\xd4\xd6\xc0\xb1\xee\x97\x09\x7c\x0d\x0b\x95\x6e\x12\x4e\x04\x6b\xae\x89\x50\x2d\x14\x38\xd6\x49\x21\x71\x5b\x2b\x04\x32\x44\x70\x5b\xa3\x9a\x48\xc2\x97\xb4\xd5\x5d\x52\x46\xb1\xa8\xb6\xe4\x9d\x74\xbb\x6a\x0a\xfb\xb4\x38\x3c\x59\x52\x29\x3c\x76\x7a\x49\x04\xe1\xd7\xb4\x22\x88\x5c\x93\x56\xb7\xc5\xb4\x75\xd3\x1d\x1c\x53\x0f\x38\x41\x37\x0b\x5a\x2d\x10\x6d\xa9\xa4\x58\x1a\x54\x25\xc7\xad\xa0\x92\xb2\x56\x11\xdb\xcc\x57\x63\xa5\xc7\x3d\x03\x2a\x9a\xc5\x7b\x30\x46\xe7\x27\x17\x3f\x9c\xf9\x95\xfb\xd7\x82\xb4\x01\x51\xd1\x8c\x5c\xd2\x56\x83\x5e\x61\x2e\x69\x45\x57\xb8\x95\x02\xb9\x0d\x6c\xd1\xd1\x7b\x83\xc8\x29\x3a\xd6\x7b\x53\x01\x51\x10\xfd\xe2\x88\x04\xc6\x8a\x93\x95\xea\x95\xcf\x0d\xa4\x96\x6e\xdb\x35\x98\x4f\x50\xc5\x9a\x86\x54\x6a\x5a\x20\x79\x58\x4d\x84\xe5\xa4\x6b\xa6\xe6\x6e\x60\x50\x8e\x2a\x2d\x7b\xbf\x12\x88\x33\x26\xd1\xdb\x8e\xf1\x6e\x89\x2a\xc2\x25\x9d\xd3\x0a\x4b\x02\x2b\x5c\xb1\x56\x90\x56\x68\x71\xa1\xe1\xf1\x4e\xcf\xa9\xa6\x42\x72\x3a\xeb\xd4\x56\xb9\x22\x6b\x74\x49\x5a\xc5\xc8\x8a\xa4\x2b\xce\x24\xab\x58\x83\x46\xc7\xcf\x9e\x8e\x81\x9d\x89\x44\xdd\x0a\xfa\x71\xdc\xd6\x6c\xa9\xe0\xcd\x08\xae\x58\x3b\xb5\xc4\x84\x89\xc3\x5c\x01\x8a\xde\x0f\x15\x5b\xae\x1a\x22\x87\xd8\xd6\xf1\x8d\x5b\x43\xbd\x87\x7b\x79\x07\x40\x29\xaa\xcd\x71\x25\x85\xde\x1e\x5a\x62\xaf\x38\xab\x88\x10\x86\x67\x14\xbc\x0d\x6c\x63\x30\x32\x03\x46\x4c\xf3\x70\x8c\x8e\x5e\x3e\x7f\x7e\x7a\x71\x71\x72\xbc\x89\x71\x26\xa1\x98\x57\xc7\xc3\xbc\x6b\x9a\xb5\x5d\xf9\x1a\x06\xcb\x86\x4e\xf6\xd5\x21\x9a\x63\xda\x74\x1c\xc4\x07\x69\x25\xe1\xf1\x38\x73\xc6\xc3\x09\x00\x1d\x58\xc2\x50\x7a\xc6\x35\xac\xbf\x9a\x31\x96\xdb\xb0\xb4\x1a\x57\x23\x69\x57\xcb\x11\xb4\x5b\x01\x6f\x2b\xb2\xd6\x1d\x27\x6e\x33\x0a\x84\x51\xc5\xa9\xa4\x15\x6e\x1c\xde\x8a\xe1\x6e\x68\xd3\xa0\x0a\x77\x42\xc3\xa8\x16\xea\x20\x92\x0c\x2d\x70\x23\xa7\x77\xee\xe0\x4a\xad\xcf\x08\x37\xcd\xd8\x33\x80\x3a\xb7\xf5\x3a\xbc\xbf\x73\x47\x09\xfe\xb0\x15\x69\xbb\xa5\x5e\x25\x58\x9d\x7d\xf4\xc3\x69\x2b\xff\x81\xde\xdf\xb1\xa7\x44\x04\x52\x91\xca\x88\xe9\xc3\x1f\x8e\x2e\x4e\x5f\xbe\xe8\x6f\x07\x67\x0b\xc8\x85\x0d\x6d\x34\x1b\x40\xa3\x0f\x3d\x08\xaa\x93\xe0\x35\x6b\xb6\x41\xef\xc5\xcb\x17\x27\xfd\xbf\x1e\x69\x09\xc0\xf8\x50\x13\xbb\xa7\xfb\xd1\x7e\x47\xaa\x0e\xc4\x48\x6f\x93\x1f\x09\xd7\x82\x62\xb0\xd5\x21\x7c\x11\x4e\xfd\x9e\x51\xd5\x8c\xb0\x95\x6a\x2b\xc7\x1b\x95\x0a\xd8\xd2\x4a\xae\xdc\x18\xc9\xe0\xd7\xda\x33\xb0\x70\xe0\x24\x43\x18\xb5\xe4\xc6\xb0\xa3\x61\x50\x7b\x62\xe1\xae\xd2\x42\x49\x6f\xce\x8c\xfc\x30\xa6\x3e\x71\x00\x99\xd1\x1d\x37\x1d\x8b\x6b\xc5\x3a\xd8\x4f\x56\x02\x57\x1d\xe7\xaa\x97\x1e\x0f\xb6\x09\x15\x7a\x2b\xc3\xd9\x64\xfb\x9b\x7e\x7a\x51\xff\xfe\x7f\x26\x39\xe4\x39\xe5\x42\xa2\x6b\x4a\x6e\xd0\x88\xb6\x4a\x26\xd3\x6b\x32\xb6\x22\x29\x1a\x67\xea\x3a\x43\xa7\x1f\x29\xb9\x19\x00\xdc\xe0\x6d\xe1\x7e\x25\x52\x52\xf9\x91\xcc\x0f\x87\xfa\xfb\x93\xb6\xfe\x64\xa3\x86\xb3\x69\x71\x33\x04\x97\x49\xdc\xa0\x27\xdf\xbf\xfc\x17\xa0\x43\x6a\x34\x5b\x23\xdc\x34\xe6\x38\xd2\x7a\x48\x43\x2e\xb5\x0e\x55\x5c\x22\x3f\x98\x54\xc0\xce\x01\xcc\x3e\xfa\xe1\x09\x7d\xd7\x33\x9c\xe8\x56\xab\x66\xad\x30\x57\x23\xc1\xe0\x45\xc8\x51\xd7\x53\x35\xe5\xda\x1c\x15\x9c\xdc\x60\x5e\x1b\x21\x0a\x52\x6d\xa6\x04\x29\xad\x1d\xa0\x15\x27\xd7\x4a\x13\x4f\x20\x01\x8a\x4a\xa4\x9d\x03\x0e\x7d\x68\x82\xb5\xa3\x50\xed\x1f\x88\x75\x12\xe1\x44\x0d\x1c\xa6\xcc\x6b\x0d\xcb\x8f\xa9\x7e\x19\x17\x37\x6e\x41\x3b\x4b\x37\xee\x4d\xff\x81\x09\xdd\x1d\x58\xa3\xb2\x9e\xba\x43\x5a\x93\x10\x38\x83\xfe\x4a\xea\x3e\x2d\xaf\x5b\x55\x6c\xa9\x18\x37\x98\x4b\xdf\xde\x56\x03\x6e\xb1\xb5\x13\x90\xe8\x79\x27\xa4\x22\x28\x6b\x09\xba\xe4\x04\xeb\x63\x15\x83\x88\x89\x80\x0d\xca\x88\xe9\x96\x22\xe1\x74\x9b\x79\xa2\x1b\x2a\x17\x6e\x07\x20\xda\xce\x19\x5f\xe2\x78\xe3\x86\xec\xb8\x1f\x7d\xab\xfa\x9c\x1e\x4f\xdc\x9e\xbf\x22\xeb\x89\xd5\x3c\x4a\xff\xc7\x75\xcd\x41\x25\xe2\xac\x21\x93\x08\x94\x05\x11\x60\x30\x41\x37\x84\x5e\x2e\xe4\x04\xf6\xe5\x92\x71\xe2\x71\x82\x91\xdb\x39\xdb\x47\x3f\xe5\xbe\x82\xe9\x0b\xf3\xeb\xcf\x3b\x4b\xc9\x12\x17\x7c\x12\x31\xd9\x0f\x78\x83\xc4\x52\xcb\xaf\xd5\x6b\x84\x85\xa0\x97\xed\x52\x71\x42\x1f\x8b\x9d\x60\x65\x45\x37\x04\x1a\x99\xc3\xab\xa1\x42\x46\x30\x39\x59\x71\x22\x88\x52\xc0\x14\x2b\x3a\xf0\x5a\x47\xd7\x7b\x46\xb1\x04\xa8\x66\x8a\x2d\x4e\x8f\x85\x19\xdc\xe8\x8f\x0b\x1c\x43\x34\x20\x26\x9a\x9d\xb4\x51\xa0\x17\x4f\x0b\x55\x30\x18\x02\xbe\x35\x7a\x85\xf1\xd9\x08\xb3\x8a\xce\x85\x33\x35\x7f\x95\xd6\x4f\xb0\x8e\x57\xe0\x6d\xd1\xca\x7f\x4b\x84\xd0\x56\x81\xc2\x4d\x4d\x97\xe0\x9a\x70\x24\x88\xb1\x5e\x10\x6e\x2e\x19\xa7\x72\xb1\x04\xec\x22\x80\x43\x9b\x5f\x7d\xf4\x10\xe7\x30\xe4\x3e\x3a\x97\xca\xca\x2a\xe0\x54\x13\x5c\x37\x60\xba\xb2\x39\x22\x6a\x09\xb4\xa2\x6c\x16\xe0\xf8\xd9\x53\x6f\xc6\x48\xa6\x44\x80\x55\x6e\x6b\xdb\xc6\x62\x10\xc1\x0e\x6c\x57\x23\xd6\x8e\xdd\x48\xda\x2f\x42\x2a\x3a\xa7\x06\x0a\xe1\x4b\x40\x00\x7b\x4b\x4b\xb3\x63\xdb\x2d\x67\x84\xc7\x1b\x1a\x6c\x07\xac\x51\xf3\x1a\x39\x62\x33\x25\x86\x15\xf8\x40\x62\xaa\x15\x14\x04\x2b\xbd\x7c\xd6\xb0\xea\x4a\xaf\x32\x80\x36\x62\x2c\x02\x6d\x45\x1a\xba\xa4\xd7\xa4\x75\xc4\x99\x20\x2a\x51\x85\x5b\x24\xf0\x9c\x34\xeb\x1e\x23\x24\x54\xad\xd4\xe7\xf8\xd9\x53\xd0\xb5\xef\x3f\xc9\x37\x4a\xda\xe6\xc1\x16\x6d\x1e\x16\xda\xe4\x87\x21\xe6\x97\x44\xa2\xba\x33\x36\x68\x99\x4d\x26\x8a\xea\x82\x54\xac\xad\x3d\x6f\xeb\xae\xc7\xa6\x67\x8e\x47\x32\x84\x3a\x4b\xc1\x03\xd8\x37\x44\xb4\xc4\x7a\xb0\xbd\x15\x27\x15\x15\x0a\xb1\x1f\x5a\xfa\x0e\xfa\x27\xe3\x9f\xb4\xf5\x05\x5d\x12\x3b\x7c\xef\xd1\x5b\x34\x6e\x87\x8f\x5e\x70\x97\xba\xc3\xd7\x81\xf4\xae\x2e\x7f\x00\x07\x80\xc0\x19\x09\xd0\x94\x60\x09\x2c\xf3\x9e\x89\x3b\xb8\x0b\xac\x94\x61\xd2\xfa\x1d\x33\x74\x32\x9b\xf9\x7c\xc4\xd9\x4c\xde\x76\xb8\xb1\x0c\x69\x3b\xd1\xfc\x88\x76\x0a\x57\xb0\x47\x01\x91\x6d\x8f\xe7\x0b\xd0\xeb\x44\xd7\x48\x7b\x44\xbc\x3a\x42\xf8\xf2\x92\x2b\xed\xd3\x38\x3e\xd4\x1c\x13\x99\x6e\x05\x74\x04\x2b\x14\xd6\x81\xc0\x45\x9c\x54\x84\x5e\x13\xad\x26\xe2\xc0\xbb\x63\x05\x76\x04\xe5\xd5\x11\x02\x17\x9d\x56\x7c\x0b\x4e\x1c\xd0\x0a\x41\xbc\xd9\x23\xc3\xf8\x69\x88\x08\x66\x6d\x85\x78\xaf\x54\x7f\x75\x54\x92\xeb\x9a\x16\x6a\x45\x56\xdd\xac\xa1\x95\x52\x1e\x84\xe7\x36\x23\x43\xb5\x47\x85\xb4\x15\xab\x95\x60\x12\x4a\x7f\x07\xf5\xae\x61\x37\x7b\x97\x2c\x3e\x94\xf8\x7a\x25\x19\x6a\xe8\x8c\x63\xbe\x06\xb7\x48\x8b\x16\xe4\xdd\x9e\xe9\x1e\x0b\xc4\xa7\x9c\x29\x31\xeb\xc6\x56\xdc\x2b\x9d\xbe\x60\xc8\x3f\x41\x73\xd6\x34\xec\x46\x1b\x0e\xe0\x33\x6c\x6b\x7a\x4d\x6b\xc5\x34\x0a\x61\x07\xb2\xbe\xba\x3c\xeb\x66\xcf\xc8\x5a\x91\x41\x1f\x1c\x3f\xf7\x6b\xc0\xaf\x49\xc5\xae\xe1\xd0\x1a\xda\x88\x58\x2d\xa8\x6a\xa7\x3b\xc1\xa6\xc4\xfa\x8c\xa3\xd6\x37\x27\xed\x09\xed\x5c\x40\xde\x27\xe6\x9c\x42\x0e\x83\x4b\x02\x4e\x18\x65\xf4\xb6\xe8\xe4\xc9\x73\x08\x25\x10\x63\x73\xf4\x0f\xd5\x09\x3d\x8a\x6a\xc0\x69\x4d\x0a\x86\xac\x62\x42\x03\x22\x1a\x5a\x1d\x1d\xca\x96\x70\x28\x88\x95\x56\x0e\xa7\xe8\x62\xa1\x66\x91\x52\xc0\x2c\xba\xa6\xb8\x3b\x45\x23\x2f\x92\x64\xa8\x5b\xd5\x06\x71\xca\x51\xc3\x2a\xdc\xf8\xb6\x7a\x4e\x56\x33\x01\xe3\xde\x60\xe6\x90\x30\xce\x6f\x2c\xf1\xa0\xe2\x6f\x97\x69\xb4\x51\xbc\x98\x96\xeb\x93\x3f\x4c\x63\x07\x15\x14\xdc\xed\xff\x7d\x5a\x7a\x0f\x75\x3f\x5a\x49\xef\x85\xfb\x51\x3a\x7a\x0c\xf5\x77\x54\xd1\x6d\xb7\x4c\x38\x1f\x3a\x24\x95\x74\xb2\xe2\xe9\x2f\x6d\xfb\x2f\x6d\xfb\x2f\x6d\xfb\xe3\xb5\xed\x01\xe9\xf0\xea\x48\xa0\x15\x86\xd3\xcc\x70\x62\xdf\x31\x0b\xb1\x4d\x41\x80\xf1\xac\x96\x05\x5e\xb8\x3d\x36\xdf\x9b\xe1\xb6\x8e\xc6\xe8\x84\x0d\x45\x09\xbc\x24\x3e\x46\xa2\x34\x24\x1b\xb7\xd7\x27\x6d\x41\x51\xfb\x91\x49\x72\x8c\x25\xee\xd7\xd7\x6c\x8b\x92\x84\x00\x9e\x0e\x34\xb6\x2d\xa7\x17\xc1\x39\xd2\xaa\x43\xb3\xb6\x31\x4b\x35\x6b\x4e\xf6\x40\xcf\x70\x2a\x20\x88\x6e\xd1\xc1\xd1\x3c\xef\x1a\x35\xf2\x67\x51\xe1\x02\x98\xe8\xe2\xe5\xf1\xcb\xd1\xc9\x93\xe7\x13\xf4\xbf\xfe\xfe\xe0\xfe\xc3\xf1\xbe\x39\x57\x09\xa2\xf5\xde\x63\xda\xd6\xe4\x1d\x5a\xe2\xd5\x2a\x94\x25\x25\xd5\x2f\xf3\x7e\x1e\x59\x29\x6e\x58\xae\x42\x4b\x22\xb1\xd2\x40\x10\x9e\x81\xb3\x35\x54\xd7\x63\x9b\xe8\xb0\x69\xd0\x82\x0a\xc9\x38\x84\xbc\xb4\x5a\xe0\xba\x43\x42\x08\xe3\xca\x12\x23\x7c\x89\x5b\x20\x6c\xa6\xd5\x08\xc9\xbb\xca\xa8\x35\xcf\x6d\xd7\xf7\xf9\xf2\x6a\x6f\xe9\x9c\x06\xba\x4d\xec\x62\x0e\x81\x36\x44\xa6\x2a\x4e\xe1\x48\x51\x47\x87\x5e\x59\xe6\x2c\x08\xcb\xbe\x7a\x2e\xc2\x79\x74\x4b\x23\x28\x00\xf6\x78\x18\xd4\x1c\x6c\xae\xc2\x30\xc2\x42\x62\x1e\x69\x0d\x43\x4a\xc3\x76\x20\x49\x1c\xdc\xd8\x08\x30\x0b\x30\x0d\x21\xab\xda\x9d\x6c\x1a\xa0\xe0\xce\x57\x7b\xca\xb9\xf2\x37\xaf\xe5\x35\xe6\x45\x3f\x7e\xc9\x72\x53\x0d\x10\x5e\xaa\x95\x4f\x07\x93\x4c\x1f\xd1\xc1\x26\x03\x7d\x45\x9d\x72\x54\x8a\x20\xdc\xd2\x8b\x85\x86\x7f\xa8\xc1\x97\x55\x49\x83\xe3\xb7\x9c\xe0\xab\x9a\xdd\xb4\x3f\x27\x58\x72\x5c\x5d\x09\x44\xe7\x8e\x22\x0b\x7c\x4d\xb4\x5f\x21\x08\xa3\x0c\xae\xab\xc7\x44\x9c\x61\x5a\xef\xa3\x6f\x19\x6b\x72\x62\x30\x7e\x89\x5b\xfa\xab\x3e\xc9\xd8\xdc\xfb\x3a\xbd\x9a\x06\xf6\x96\x91\xbe\xb1\x1d\xef\x72\x60\x74\x5c\x0a\x71\xd6\x29\x33\x8a\xcd\xd4\x69\xc4\x38\xec\x12\xa7\x5f\x0d\xec\xc0\x6d\xdd\xab\x39\xfa\xaf\xb4\xd5\x7f\xe4\xad\xfe\xc0\x06\xf7\x69\x77\x36\x84\xda\x4b\xa9\xad\xbc\x00\xf9\xf0\xe1\x41\x82\x85\x60\x15\x85\x63\xcf\xd9\x6e\xc7\x41\x9e\xc8\x33\xb2\x46\x4f\x5d\x9e\x48\xe2\x9c\x01\x9b\xd1\x28\xc1\x4e\x3d\xd3\xee\x11\xa7\x80\x49\x25\xfa\x0b\x07\x48\x70\x72\xc0\x3e\xb5\xba\x3a\x56\xea\x7a\x4d\xde\xed\xa3\x86\xb4\x97\x72\x81\xf6\xd0\xfd\x5e\x02\xd4\x57\x97\x89\xf1\xef\x9a\xd2\x96\xca\x51\x66\x09\xa2\xf0\x13\x8a\xb8\xf4\xa7\x54\x5c\x25\xbf\x93\x34\xb0\x9a\xf6\x2e\xc8\x8f\xa4\x51\x7f\xf8\xce\x7d\x76\x71\xe1\xc7\x1d\xb7\x73\x0f\x45\x7d\x32\x5a\x8e\xc3\x93\x4a\xd3\xab\x99\x4f\xad\x0d\x7e\x60\xcf\xa0\xbc\x09\x9c\x3d\x07\x40\xde\xc2\x8f\x96\xb2\xaa\x85\xfd\x3b\x6f\x66\x08\x8c\x0e\x2c\xa9\x8b\x90\x02\x2a\x6b\x70\xc1\x17\x79\x87\x90\xe2\xe8\x20\x5a\x80\xbc\x71\x24\x0f\xd1\x01\xfa\xe9\xe7\xbe\x36\x20\xa9\xd0\x01\x9a\xe3\x46\x90\x12\xc1\x92\x45\x04\xd2\x25\xdf\x15\xba\xb9\x25\x54\xed\xdd\x7f\xf2\x86\x66\xdd\xd0\x81\x5d\x41\xd7\xe4\xc3\x9d\x6c\xe3\x54\xb0\x68\x63\x34\xef\x5a\x54\xb1\xd5\x7a\x34\xde\xcf\xb4\x93\x70\x04\x4e\x64\xc7\x5b\x18\x68\x5b\xb0\x82\xc8\x8b\x80\xb2\xa3\x5f\x50\x4b\x6e\x12\x3e\x1f\x27\xc3\x94\x96\xc7\xf7\xda\x61\xe4\xd7\xe1\xaa\x8d\x7e\x31\x67\x89\x3b\xb1\xb6\x3c\xd7\x8a\xe8\xa5\x0c\x91\x80\xde\x19\x49\x60\x1b\x87\x62\x70\xdc\x0d\x8c\x6e\x59\x2d\xf8\xdf\x0e\xe3\xba\xad\x2f\x46\x6f\xab\x21\xc9\x50\xc4\x20\x62\xc8\xb7\xd5\x2e\xab\x72\xfc\xec\x29\x08\xfd\x67\x64\x3d\xba\xca\x64\xcc\x00\x47\x5f\xc5\xec\x8c\xe2\xa4\x24\xc7\xb3\x36\x9f\x07\x72\xc6\x8d\x71\xaf\xac\xf2\x19\xa4\xa3\xb5\x97\xde\x0a\x39\xac\x97\xb4\xbd\x77\xef\x5e\x9f\xa6\x7e\xc4\xda\x39\xbd\x0c\x90\xb2\x67\xa6\xf6\x37\x28\x5d\x43\x29\x94\x90\x53\x87\x5b\xa4\xb4\x76\xbe\x49\xbf\x6b\xbb\xa5\x92\x47\xe2\xb4\x85\x9d\x96\xab\x93\x61\x07\x43\xb1\x17\x71\x9f\xd1\x2f\x7a\x58\xdb\xb7\x48\xb6\x64\x1c\x74\xa0\xfb\x94\xd6\x69\x60\x56\xdb\xea\xc9\xf1\xcc\xce\xa3\xb4\xa3\x1d\xa7\x18\x77\xde\x71\xae\x71\xe7\x5b\x4e\x1a\x94\xe7\xfa\xea\x52\x7b\x6a\xb6\x98\xaf\x75\xbd\xec\x38\x53\xdb\x6d\xc7\x39\xda\x6e\xbb\xcd\xce\x2b\xc5\x56\x0d\x76\x53\xdd\xc8\xb0\x47\xb9\xe6\xa1\x30\xbd\xff\xf7\x4d\x13\xcd\x3a\x2a\xf9\xdf\x2d\x53\x30\x7d\x13\xce\xba\xab\x83\xc0\x77\xef\x9d\xb8\x36\x3d\x74\xb2\xb2\x24\x4a\x89\xd4\x69\xab\x61\x5e\xd7\x0a\xaf\x95\x51\x46\xdb\x8a\x13\x2c\x88\x40\xe4\x9a\xf0\x75\x21\x2b\x0c\x42\x24\xd7\xb8\xe9\x08\x08\x95\xae\x91\x74\xd5\x50\x2f\x44\x20\xb9\x4c\x86\x59\x67\x92\xa1\x4b\x22\x03\x87\x1f\x0c\xd5\x4b\x60\x05\x40\xf7\x3c\x35\xc8\x9c\x11\x5e\x91\x56\xe2\x4b\x92\x5b\x80\x05\x42\x0f\x01\x18\xfd\x82\x56\x19\xb4\x22\xbd\x87\xa0\xa0\x83\x00\x4a\x89\xec\xa0\x5f\xf7\x88\xb6\xc9\x46\xc9\x30\x19\xd8\x4b\x93\x41\x06\x9c\x6c\x45\xbd\x2d\x05\x64\xf2\xcd\x4e\x72\xa6\xef\xa7\x2d\x37\x72\xfe\xe5\x4e\x1b\x62\xb3\x02\xb9\x61\x75\x87\x7e\xee\x3f\x72\xf5\xf9\x18\xfa\x90\x4d\x46\x2d\x5d\x2a\x4d\xca\xb5\x3b\x71\x52\x06\x32\xc7\x6d\xc8\x04\x67\x3e\x62\x08\xb9\x52\x38\xbd\xc1\x1f\x85\x46\xca\x0c\x35\xe7\x50\x1a\xf5\x1f\xfb\x01\x74\x38\x30\x44\xa6\x26\x73\x1d\x44\x40\x9c\xcc\x09\x27\x6d\x65\x1d\x5d\xd6\x64\xc1\x66\x50\x21\xf1\x72\x65\x13\xdb\x4d\x37\x07\x18\x37\x0d\x9a\x77\x12\xb2\xf2\x63\x5c\xc5\x14\x9d\xce\xd1\x1b\xe3\x8d\xd6\x89\x10\x00\xf8\x0d\xcc\xb1\xcd\xfc\xdc\x72\x41\x5a\x07\x17\x6e\x3c\x24\x93\xa7\xc2\xc4\x13\x66\xeb\x7d\xdb\xd0\x75\x48\xfc\xde\xa0\xf5\xcd\x2f\x2c\xfa\xe8\x6b\xef\xca\xff\x1b\x1a\xe5\x48\xed\x71\x32\x37\x7f\x8e\x23\xd8\x7d\xfe\xc9\x0b\x58\xc2\x5e\x05\xc8\x8d\x66\xc3\x41\xfd\xf1\x82\xd4\x55\x52\x27\x91\x83\xdc\x71\x6f\x16\xc8\xb8\xe9\x92\xf5\xeb\x85\xeb\x67\xd8\x0b\xd9\x91\xba\x0c\x7a\xf7\x58\x44\x01\x07\xb7\x26\x65\x47\xe1\x11\x5b\xae\x3a\xe9\xb8\x49\xdc\x50\x59\x2d\x74\xc4\x5e\x21\x36\xc3\x02\x32\x77\x10\x9b\xcf\x05\x91\xda\x0f\xe4\xd1\x34\xa4\xb9\xe7\xbb\x4d\x7b\x0f\x86\x4b\x22\x2f\x42\x96\x79\xc2\xb8\xd5\x1e\x73\xfe\x70\xaa\x87\xfd\xa3\xdf\xf2\x9b\x26\x8c\xa7\x95\xf4\x61\xee\xb3\xfd\x22\x16\x2c\x1d\x21\x29\x73\x4c\x0a\xcb\x3a\x29\x92\x39\x95\xf1\x09\x5e\x07\x8e\xef\x0a\xad\xfc\x18\x7a\x5f\x1d\x15\x7c\x19\x85\xb9\xc7\x7b\xb0\x5f\x4c\x7e\xc7\x9a\x5a\xab\x23\x6f\xdc\x55\x97\xa9\xde\x5a\x6f\xec\xa6\x73\xee\x36\x27\xc6\x66\x0d\x71\x01\x86\x70\xab\x5a\x3f\xa0\x75\x3c\xfa\xe6\xd6\x02\xda\x37\x82\x79\x0b\xdb\xc8\xe8\x30\xf1\x8d\x2c\x2f\xfd\xb4\xe5\xd4\x32\xd9\x67\x3c\x15\x82\x2b\x38\x8c\x93\x70\x52\x31\xee\x52\xd7\x5d\xbc\x04\xd8\xda\x64\xa5\x05\x39\xf4\x5e\xee\x82\xd3\x4f\x8f\xa5\xa5\xb6\x56\x64\xfd\x70\xaf\x81\x21\x45\x01\x2c\xcc\xc7\xed\xe3\x38\x8a\xc3\x38\x6a\x69\x83\xe8\x5c\x1f\x32\xed\x57\x12\xcd\x59\x67\x02\x7b\x2e\x1e\xed\xc9\xe5\xe3\x3a\xca\xc2\xd3\x76\x2c\x7c\xa3\x4e\x4d\xa1\x63\xba\x97\x9c\xdd\x28\x31\x5f\x53\x38\xf0\x31\x5f\x3b\x68\x35\x23\x02\x29\xea\x81\xeb\x5b\xc7\xc5\x1b\x86\x6b\x85\x17\x68\x9b\xb0\xe7\xa3\xfb\x31\x54\x98\x16\x99\x74\x36\x7b\x3a\xf2\xcf\x8c\x7e\xd1\x13\xcc\x77\x71\xd4\xec\x9f\xc1\xde\xa0\x73\xe0\x1b\x4b\xb3\x63\x87\x35\xf8\xe8\x9a\xf9\xd4\x4c\x73\x6a\xa6\x39\x9d\x31\xce\xd9\xcd\xa3\x2f\xdf\x6b\xd8\x09\xe8\x0f\x8f\x47\x8a\xea\xfb\xba\xaf\x85\x7a\xae\xfb\x9e\x61\xb9\x48\xf7\x65\x32\xfe\x6b\x32\x47\x07\x05\x6c\x7e\x0a\xe7\xf5\x73\xba\xb7\xbd\x44\x0a\xe0\x4c\xb5\x0b\x2b\x6a\xf9\xe1\x4e\xfe\x97\xe9\xd9\xd2\x26\xdd\xa8\xe7\x58\x27\x06\x2c\x59\xad\xb9\x27\x76\x86\x99\xad\x6a\x62\xf9\x3e\xf8\x97\xb1\x46\x79\xbb\x82\xb6\x8e\xaf\x49\xba\x82\x2d\xb9\xf1\x3b\x37\xfa\x31\xa4\xdd\x8a\x93\xa2\x1f\x46\x87\x71\x43\x69\x8b\x0e\x0e\xd0\x37\xe8\xb7\xdf\xa2\xc6\xa3\x60\x14\xe7\xb5\x7d\x7c\xd0\x0f\x64\x0f\xdd\x47\x5f\x7e\x19\xc1\x28\x81\x78\x64\x40\xac\x38\x5b\x31\x41\xea\x10\xc6\x68\x3c\xde\xcf\xd6\xed\xee\x91\x16\x28\x40\xe3\x75\x1a\x48\x85\x1d\x6c\xaf\xef\xcf\x25\xb1\x37\x6d\x34\x70\xd3\x9a\x71\x77\x1d\x32\xbb\x86\x73\xb7\xb0\xe0\xb7\x65\x79\xdc\xc9\xc5\xe8\x79\x27\xb1\x24\x63\xf4\x99\xf8\xbf\xcc\xfc\x05\x4a\x97\xf6\x00\x16\x82\xc0\x8d\xb7\xf4\x07\xf5\x59\xa6\x4b\x75\x70\x50\x5a\xc1\x49\x4f\x67\x21\xc0\x80\xb2\xcb\xa5\x18\xd7\x23\x0d\xa7\xd5\x92\x8a\x25\x96\xd5\xc2\xa7\xc9\x19\x90\xe2\x6e\x06\xb3\x6f\x57\x86\x88\x6e\x9a\x7f\x84\x7e\xf9\xb4\x2d\xee\x39\x9b\xca\xf1\x3a\x48\x75\x1a\x8d\x6d\xa8\x27\x51\x6e\x75\x3e\x94\xcd\xc1\x5a\x9a\x0c\x65\x8c\x16\xe4\x9d\xda\xff\xaa\x03\x9b\xa3\x87\x0f\xd4\x69\xa8\x86\x50\x36\xd8\x88\x4e\x09\xba\xff\x77\x34\x5b\x4b\x22\x14\x77\xde\x7f\xf0\x0f\x34\xa3\x52\x8c\x23\xd0\x6f\xb8\x12\xfa\x92\xce\x1a\x83\xca\x1b\x23\x8a\x94\xc8\x31\x5a\xd7\xe8\x1f\x1a\x8a\xef\x09\x6a\x25\x34\xff\x9e\xdd\x80\xca\x11\x03\x79\xa4\x7b\x3e\x1e\x8d\xa7\x92\x7d\x4b\x2f\x4f\xda\x9a\xe2\xf6\x5b\x05\x64\x54\x82\xf2\x1d\xbd\x5c\xdc\x1a\x0c\x04\x64\x03\x32\xa2\x03\x43\xc5\xa9\xce\xef\xfd\x8e\xbc\x1b\xf9\x61\xc6\xd3\x8a\xb5\x15\x96\xa3\x9e\x36\xdf\xb3\x9b\xb1\x87\x5d\x64\xe6\x70\xb0\xa9\x09\x01\x1e\x1c\xa0\x87\x0f\x26\x77\xca\xec\xfa\x7a\xf7\xf5\xf3\xdc\x3a\xbe\x93\x1e\x12\xe1\xf8\xe9\x69\x11\xd8\x2a\x13\xb5\xea\xa7\xc7\x93\xe2\x1d\xbd\xec\x24\x87\x60\x6d\x2e\x72\x63\x83\xc1\x8d\x60\x40\xe9\x7c\x3b\x77\xa5\xdb\x59\xd3\x26\x9c\x3a\x04\xdf\xf8\x53\xfc\xdf\x7e\x04\x25\xa1\x82\x4a\x28\x81\x7e\x0a\xea\xdd\x1b\xa8\x29\x01\xa4\x74\xaa\x50\x36\x9c\xe2\x2d\xac\x5a\x07\x52\x4f\xed\x2e\xf7\x9f\x6d\x86\xfb\x8e\x60\x2e\x67\x04\xcb\xad\x87\x5c\xd8\x1e\xbb\x0f\xdb\x23\xca\xdf\x04\x3a\xdc\x86\xc1\x0b\x82\xbe\x67\xec\xd7\x76\x36\x3a\x30\x0e\x8e\x01\xc8\x9b\x16\xcc\x1b\xa2\x4e\xfd\x9b\x53\xd2\x18\xdb\x39\x1c\xd2\x91\x04\x56\xa5\xe7\x76\xb9\x92\x75\x1a\x36\x4c\x0b\xfc\x49\x5a\xbd\xf0\xff\xef\xb3\x96\x72\xed\x42\x7d\xfc\xf2\x64\xec\xa4\x76\xa1\xff\xdf\x34\xbe\x73\xaf\x8f\x0d\x7d\x01\xc5\xcc\x56\x4f\xcc\x26\xc6\x15\xc2\x0a\xf9\x99\xe1\x47\xa7\xe2\x47\xdc\xd0\x1a\x86\x8a\x7c\x4e\xa3\x00\xc3\x82\x21\xd4\xeb\xb0\x2b\x1f\x7a\x5b\x03\xb3\x3e\xba\x32\x98\x88\xe0\xe3\x7d\x74\xf7\x05\xb9\x31\x86\x05\x7c\xe5\xa4\x52\x7a\x1f\x15\x89\x6e\xa9\x38\xc2\x51\xa6\xad\x21\xd5\x4f\x13\x1c\x7c\xfd\x77\x93\x73\xf4\xce\x0e\xf8\x17\x02\x49\x31\xaa\x25\xab\xbc\xcc\x60\x86\x8c\x01\x8b\x85\xdf\xfc\xb7\x31\x59\x32\xbd\xcf\xca\x3c\x5b\x83\x81\x46\x8a\xbb\x76\xe1\xac\x96\xdc\xfc\x2e\xdc\x95\xc4\xf0\x12\x02\xee\xc0\x68\x96\x58\x01\xa7\xf9\xff\xff\xb7\xf1\xd9\x27\x15\x66\x11\xa5\xfe\x08\x5e\x0b\xf9\x4c\xf1\xdd\xe7\xe2\x35\x17\x45\x8d\x66\xbc\x03\x8f\x65\xfe\x6e\xcd\x67\xfa\xef\xfd\xdc\x1d\xfe\x31\xec\x76\xe4\x2d\x6f\x37\xc4\x34\x74\x71\xde\x7d\x9d\x84\x2b\x2c\x99\x8d\xc5\xeb\xcb\xf6\xa4\x04\x2c\x0f\x9e\x9a\xb6\x0d\xc3\xf5\xa3\x6c\x4a\xd6\x88\xbd\x67\x9a\xdd\x9b\x5b\x00\xd1\xc4\xb7\x1c\x43\xd9\x8a\x23\x37\xbd\x09\x92\x6c\x7b\xc8\x1b\x57\xab\x2f\xaa\x4c\x6e\x5e\x6c\x0e\x2c\xff\xa7\x49\x86\xdb\xb0\x7d\x3e\xfb\x78\xee\x3b\xd0\xf2\xc9\xf7\x2f\xff\x75\xde\x1f\x38\x56\x1b\x6a\x63\x2c\xf5\x3f\x8d\xa4\xc8\xc8\x3e\x1f\xdd\x7c\x74\x80\xee\x4f\xbf\x31\x7a\x98\x0e\xe4\xfb\x4d\x25\x6f\x08\x69\xd1\xaf\x84\x33\x10\x54\xac\x25\x1f\xb9\x42\x83\xc1\xf8\x08\xb1\xe2\x42\xdd\xbb\x87\x4e\x5a\xf0\xfd\x33\x8e\x6a\x2a\xe0\x4f\xdc\x49\xb6\xc4\x92\x56\x2e\x7b\xa1\xc2\x4d\xd5\x35\xb6\xce\x5a\x5b\xa3\x15\x5e\xc3\xdd\xb2\x8d\x8a\x9b\x81\x64\xb2\xce\xf4\x58\xf5\xe8\x17\x44\xf4\x5f\xe5\xa4\xb3\x0d\xf2\x44\x75\x29\x8a\x90\x9e\xe1\x76\x12\x24\x06\xb1\x82\x18\xd9\x08\xdd\x0b\xc5\x5e\xb2\x90\x25\x95\xe1\x3d\xd3\x93\x6b\xd2\xca\x51\xc9\xa9\x1e\x9f\xa1\x1b\x52\x82\xb7\xc9\xf9\x1d\xcc\x1a\xde\x98\x32\xd1\xd3\x3a\x4b\x9f\x88\xdb\xc1\xb5\xd4\xec\x8e\x8c\xfd\x6c\xba\xaa\x18\xb6\x2d\x5f\x1c\x0c\x5b\x6c\xba\x28\x86\xfa\x2f\x73\x15\x90\xda\xf1\xce\x54\x08\xa1\xff\x72\x90\xfd\x64\xc1\xc3\x90\x65\x90\x8f\x70\xd9\x08\x40\x7f\xe1\x4a\x73\xf9\x2a\x4d\x24\x42\xc6\x07\x07\xe9\xf0\x1b\xae\xe6\xe6\xe9\xc5\x73\x73\x95\xe1\xf4\x18\xd1\xd6\x2e\x62\x01\x65\x80\x3e\xc5\xab\x15\x69\xeb\xd1\xc0\x10\x23\x0d\x62\xdf\x80\x1a\xa7\xde\xd9\x0c\x6d\x45\xc1\xf8\x8e\x62\x98\xaf\x8d\xbe\xee\x65\xd7\xe8\x27\x97\xef\x12\x26\xf1\xa7\x43\x3c\xb8\xc5\x10\xa3\x07\xe8\x6f\x85\x71\xc6\x83\x03\x3d\xbc\xcd\x40\x0f\x07\x06\xca\x18\x46\xc9\x96\xf8\x12\x3b\xe4\xad\xc4\x42\x40\xb5\xf1\x12\x30\x6c\x9d\xbb\xf5\xdd\x05\x86\x50\x3e\xe5\xba\xbd\xbf\x02\x0e\x0c\x91\x37\x08\x2e\x6d\xbb\x89\x97\x5a\xb9\x7b\xa4\x46\x54\xe5\x6d\x4a\x12\x23\xff\x2e\xef\x17\x4b\x8f\xf0\x7f\x79\xdb\xd2\x05\xd9\x9c\x21\xfb\xfb\x3d\x28\xf4\x7b\xb0\x45\xbf\x87\x85\x7e\x0f\x07\xfa\xa5\xf2\x2e\xfe\x7f\x5f\x7b\x27\xfb\xa2\xff\xf6\x52\x3a\x14\x83\xd9\x57\x79\xaf\x50\xf4\xf9\xbf\x13\xe1\x57\xd6\x43\xee\xa1\x33\xc2\xe7\x8c\x2f\x05\x12\xb8\x55\x92\xae\x5a\x90\xea\x4a\x04\xf5\xef\xd8\x35\xad\x5d\x54\x2e\xca\xbf\x82\x5a\x34\x50\xcc\x8e\xb4\xa2\x33\x7e\x57\x7d\x09\x94\xb6\x97\xff\x37\x1a\x66\x0f\x5d\x80\x6b\x16\x8a\x8a\x5e\x2b\xdb\xd8\x38\xbb\x63\x88\x49\x9f\x43\x57\x41\xd0\x16\x34\x85\xd2\x0c\xb5\x80\x8b\xfd\x3a\xe2\x8e\x4d\x9d\x04\xf4\x18\x7d\xd3\x9f\x28\x13\xde\x97\x3d\xe3\xe4\x08\x66\x39\xfa\xec\x07\xfc\xf0\x51\xdc\x76\xcb\x97\xf3\xa3\xc2\xee\x3a\x6d\x65\x7f\xcb\x90\x3b\x4e\x5b\x39\xf6\x87\xd8\x6e\x4a\x7b\xbf\x8f\x22\x9e\xf7\x9e\xa3\xd2\xd7\xf7\x27\xb7\x70\x81\x59\x12\x85\x70\x0a\x31\x63\xf5\xb9\x7b\xda\x6a\xde\xf0\x12\x2b\x59\x04\x5d\x0d\xc3\x5e\x15\x8a\x98\x67\x50\xa7\x87\x22\x1b\x01\x87\x07\xc5\x29\xc5\x82\x75\x4d\x9d\x33\xd3\xad\x4e\x67\x1d\xe0\x2a\x07\x6b\x77\x38\xac\xa7\xba\xa4\x71\xf3\x2f\x87\xcd\x04\x15\x61\xfa\xa0\x18\x0e\xf7\x4a\xbc\x4f\x14\xf2\xb1\xce\xa2\x8d\xa3\x6c\xca\x9b\x63\xba\x09\x51\x63\x9a\xde\x18\xa3\xcb\x94\x47\x42\x6f\x2b\xa8\x97\x84\x74\xd4\x9f\xf1\xa8\xc6\xd1\x9d\x6d\xc8\xd6\xb3\x43\x20\xcc\x5d\xdc\x12\x05\x32\x79\x12\x05\x89\xf2\x59\x55\x11\xe1\x13\x79\x20\xe0\x8d\xf2\xc6\xe1\x74\xee\xf6\x4a\x57\xfb\x57\x24\xca\xce\x25\x5b\x09\x27\x43\x97\x2b\xd6\xaa\x21\x21\xbb\x54\x66\x69\xad\x81\x8c\x8c\x7f\x28\xd8\xc5\x71\x49\x06\x8d\xa1\x75\xc8\xd5\x57\x97\xae\xd6\x28\x69\x95\x10\xaf\x89\xd2\x1a\x21\x3e\xda\x16\x6a\x0b\x25\x45\x2b\xb2\x2c\x74\xc9\x56\xb6\x1a\x98\x99\xc1\xa8\x57\xfa\x20\x9d\x06\x71\x5b\x1f\x41\x01\x1a\xd0\x91\xb6\x15\x51\x7c\xa6\x0b\x19\x08\x22\xe3\x1b\xee\x13\xf5\x5b\xcd\x60\x19\x5b\x28\xa5\xc2\x8a\x70\x40\xbe\x84\x97\xe2\x11\x6e\x04\x9b\xa2\x7f\x11\xed\x96\x30\x7d\x75\x32\xe9\xc0\xf5\x18\xfb\xf1\xd3\xd4\x69\x25\x56\xa9\xac\x97\xb4\x1d\x8d\xa7\xa4\xad\x13\x6f\x79\xb2\xaf\x10\x69\x44\x49\x5a\x9b\xea\x2e\x95\x99\xac\x2b\x67\xa6\xdd\xfa\x1b\xd1\x70\xdb\xc3\x22\x02\xb0\x14\x33\xfe\x08\x6c\x92\xa0\x51\x02\x71\xfc\xec\x69\xd4\xf9\xa4\xad\x8f\x9f\x3d\x1d\xc8\xc0\x8a\x18\xf2\xa4\x35\x49\x91\x95\xad\x44\x81\x70\x25\x95\x6c\xf0\xd5\xac\x60\x2d\x84\xa9\x0e\xcd\xda\xa0\xa2\x94\x53\x3e\x06\x94\x04\xb8\xb9\xb1\x24\x12\x23\x93\xb4\x62\xf8\xdd\x94\xec\x0a\xd3\xca\x8b\xc5\xc0\x4c\x79\xac\x79\xd7\x6a\xfd\xbf\xa6\xf3\x39\xe1\x22\xde\xbe\x26\x43\x17\xba\x1f\x05\x7c\x8c\x66\x44\x97\x41\xa7\xe6\x92\x89\x96\x24\x3e\x76\x1f\xe6\xa1\x9b\xaa\xe9\xda\xa7\xe3\xee\xa8\x4c\x51\x3e\x1d\x87\x8c\x2d\x09\x66\x12\xe4\xa1\xd0\x08\x94\x09\x2a\x55\x00\x03\x24\x35\x5a\x4f\x70\xd3\xcc\x70\x75\x85\x9e\xab\x73\x60\x74\xf2\xe4\xf9\x78\xa3\x6a\xf4\xc2\x84\x09\x47\x3c\x2c\xab\xf4\x87\xfa\x47\x3e\xad\x73\x61\x2b\x8f\xc7\xef\xe1\x88\xc8\xb4\xc2\x5e\x21\x6a\xd2\x91\x4b\xaa\x6b\xb6\x71\x83\xc5\x08\xb4\xa7\x52\xb3\x68\x51\x52\xf5\x2a\xeb\xe0\x56\x88\xf4\x36\x71\x13\x32\x7f\x14\xac\xd5\x3e\x4d\x37\x5f\x1b\x93\x01\x34\x0c\x63\xd0\x42\x2a\x42\x48\x24\x5d\xaa\xba\x24\xea\x91\xdd\xb7\x5b\x29\x29\xa5\x0d\xa3\x0e\x37\x2f\x4a\xcb\x89\x93\x83\xba\x4a\x0f\x42\x46\x59\xd5\xd5\x34\xe3\xd3\xdb\x36\xf9\x1a\xdd\xef\xd3\x4e\x90\xbf\x48\x5f\x38\xca\x33\x2f\x4a\x92\x05\xe6\xe7\x53\xce\xb6\xcb\x5d\x4a\x03\x77\xa9\x6e\x19\x07\x1d\x18\x22\xb8\x69\xb5\xb3\x91\x92\x1b\x0b\x47\x10\xf1\x84\x33\x29\x4e\x10\x2e\x3b\x01\xe3\x32\x88\x10\x80\x10\x39\xae\x46\xc4\x3e\xf7\x79\xa1\x71\x9e\x70\x86\xc5\xa9\x3d\x54\x0a\x67\x0a\xdc\xa3\x32\x58\x28\xdd\x44\xd7\x2f\xf4\x6f\x2c\xc4\x72\xcd\xca\xf1\x8d\x4c\x99\x30\x0b\xa9\x87\x5c\x37\x45\xa1\x53\x16\xf0\x45\xf7\xd2\x06\x69\x94\x5a\x1b\x17\xa1\x83\xc1\x06\x8d\xec\x91\xaf\xe8\x70\xc3\xd5\xb1\x0f\xaf\x62\xbd\x71\x47\xed\x61\x5b\x9f\xbb\x2b\xf8\x6f\xd0\x8c\x34\x2c\x2e\x15\x11\xd7\xe5\xf8\x66\xfa\x4d\x72\x26\x14\x6a\x72\xf4\x1d\x1b\x85\xdf\x5c\x95\x0d\x7f\x32\x8c\x73\x7e\x3b\x87\xdb\x03\x86\x7f\x7c\xc2\x34\x68\x35\x50\x73\xce\x4e\xd3\x5d\x14\x82\x32\xad\xe1\x27\x83\xe9\x79\x66\xc5\xd9\x25\x27\x42\xc0\xbb\x07\x9c\x75\x97\x8b\xa0\xc0\xdf\x34\xea\xe8\x19\x24\xcf\x63\x4f\x19\xb8\x30\x8f\xa3\x54\xc1\xd9\xf0\x26\x03\x0a\xae\xa1\x58\x0d\xd7\x5c\xdb\xcd\xdf\x52\xea\x41\xb4\xbc\xd2\xa9\x40\x72\xde\x5a\x4f\x16\xde\xeb\xb2\xd5\x15\x49\xb6\x88\x1b\xed\xb6\x9f\xd0\x56\x7b\x06\xed\xb8\x33\xd0\xc6\x7d\x86\x06\xa3\x4d\xdb\x27\x9d\x94\x62\x50\xdb\x64\x3d\x6d\xd6\x10\x7e\x0f\x27\xf3\x9f\xd7\x79\x9b\x8b\x0b\x30\x60\xb1\x3f\x9f\xfc\x13\x6a\x91\x19\x52\x54\x11\xfa\xf6\xbb\x82\xe9\xcc\x80\x5e\x8f\xf1\x36\x36\x1d\x27\xc6\xaa\xa3\xf2\x16\xe6\x5c\x68\xff\xd0\x56\x6a\xdf\x45\x54\x8c\x38\x9b\x57\xe8\x26\x89\x6b\x3a\xaf\x23\xf8\x61\xc1\x65\x65\xe4\x0b\x73\x63\xcb\x17\x79\x5e\xea\x3b\x27\x90\xa0\x50\x91\x9d\xcd\x43\x4b\xbf\xd0\x34\x74\x9e\x25\xda\x7f\x9c\x83\x33\x1d\x37\x82\xc5\xa0\x5d\x57\x6f\x38\x5a\x49\x69\xe5\x2b\xbe\x66\x14\x7c\x3a\x35\xeb\x66\x0d\x48\x4f\xfd\x08\x60\x2c\x7e\xa1\x80\x65\x52\x18\xf6\x73\x18\xd0\xd6\x66\x8d\x06\xf9\x3d\x0c\xd8\xd0\x30\xff\xec\x9e\xfd\xbf\x4c\xd3\xbf\x4c\xd3\x32\x8c\x5b\x98\xa6\xee\xaf\xdb\x1a\x6a\x7f\x1e\x3b\x2b\x04\x9b\x8d\x11\xba\x88\x03\x1b\x29\xb4\x3b\x93\xab\xb1\x83\x09\x98\xe3\xcf\x61\xd4\x19\x71\x97\x5c\x69\x04\xa9\x69\x0d\x10\x32\xa4\x89\xbb\x2e\xc3\x2f\x7d\x59\x92\x90\x10\xcd\xfd\x34\x89\x60\x3b\x43\x12\x95\xed\xbf\x02\xc5\x0a\x6a\x28\x18\x80\xa5\x85\xf9\x02\x8a\xfe\xdd\x56\xbd\xdd\xac\xae\xee\xaa\x00\x6f\x30\xe2\xd0\x76\x86\x1c\xda\x60\xcc\xa1\xff\x2e\x83\x8e\x6c\xb0\xe6\x3e\xa7\xbd\xb4\x1d\xff\xfd\x65\x2c\x7d\x36\x63\x69\x97\x5d\xfd\xe7\x35\x9d\xec\x5f\x7f\x40\x64\x2a\xd8\xfb\x13\x73\xd3\x1d\xc2\x78\x27\x2e\x0e\xdc\x10\x49\xc4\x04\x1e\x63\x7a\x13\x94\x59\x2d\x5c\x26\xf8\x1a\xdd\x7f\xb3\xc1\x54\x02\xb5\xdb\xa4\x50\x1b\x4d\x7b\x0f\x09\x88\x98\x9a\x20\x73\xf8\x9c\x02\x15\x1a\x19\x9d\x51\x61\x26\xa5\x1f\x77\xa0\x71\xf5\xe4\x19\x63\x52\x48\x8e\x57\x2b\x5b\x32\x58\x53\xc4\xe4\x28\x98\x77\x60\x44\x8b\x57\x62\xc1\xe4\x44\x17\x7c\x36\x3f\xd2\x5f\x89\x08\xde\xfe\x75\x04\x34\xa5\xe3\x57\x69\x21\x36\x73\x2a\xc2\x1d\x26\x35\x85\x09\x54\xda\x87\x82\x4d\xc6\x16\xc1\xd2\x0d\x35\x64\x12\x58\x32\xc7\x47\xe1\xc0\x8d\xdc\x5d\x33\x5f\x3f\xb7\x85\x71\xdb\x4a\xc0\xb7\x28\x04\x5c\xb2\x0b\xc6\x3d\x7a\x7f\x39\xab\xa8\xa7\x42\xc5\xa0\xb0\xef\x49\x01\xb2\xb5\x08\xf4\x8b\xe8\xd8\x29\x48\x27\x91\xf3\x1b\xf8\x20\xc9\xd8\x08\xd5\x29\x17\x2f\x71\x95\x5d\xf2\x12\x38\xb7\xbb\xc0\xf5\x5f\x98\x1c\xf5\xa9\xf3\x34\x3e\x51\x9a\xc6\x9f\x28\x4b\xe3\xcf\x91\xa4\x91\x86\x53\x52\x73\x28\x28\xd1\x32\xec\x7a\x37\x1e\x9d\x4f\x1b\xef\xb2\x1f\x67\xaa\xf4\x1c\x83\xe5\x7b\x8e\x9b\x22\x55\xae\xdd\x56\x0a\x25\xda\x4a\x49\x44\xb7\x50\x3d\x91\x8d\x64\xd1\x4f\x11\xb9\xb2\x9f\x52\x65\xf9\xd1\x37\xd3\x6f\x0a\xe1\x07\x54\x3e\x5b\xb2\xaf\x7a\x7a\x06\xa7\x8b\xff\xbb\xdc\x76\xb3\x9d\xf4\x51\xb1\xa6\x5b\x86\x9a\x7e\x97\x48\xd3\xef\xec\x9f\x47\x71\xd1\x92\xb8\x1c\x05\x15\xfa\xc4\x53\x0b\xec\x0a\xbb\x39\x5d\x0f\xde\x0b\xd1\xba\xa3\xeb\x2f\x99\xa9\x03\x17\xa1\xa8\xf3\xb5\x8d\x82\xe6\x8a\x34\x79\x91\x67\xaa\x95\xcc\x41\x2c\x17\x4a\x6a\xb8\xfa\x16\xae\x0c\x48\x52\x96\xe7\x89\xd5\x65\x1d\xda\x18\x50\xd6\x65\xd4\xf4\x9b\x5d\x92\x21\x5c\x5f\x63\xab\xd3\xe6\x0a\x24\x94\xb3\xd3\xc8\x9b\xd7\xcb\x6c\x19\xc8\xb7\x1d\xe5\x5a\x63\xaf\xa9\xbe\x53\xe7\x1f\x2b\x59\x92\x72\xe9\x5e\xa5\x4b\x9a\xf1\xbe\x55\xe3\x8f\xb2\x2a\xb3\x50\xa4\x71\xf0\xf8\x2c\x68\x4b\xea\xeb\xfe\xeb\x91\xc5\xcd\x14\xf8\xc7\x00\x13\x74\x80\x2e\x89\x3c\x0a\xbe\x29\x9c\x13\xe8\x33\x39\xd6\xbe\xe8\x13\x6b\x67\x78\xed\x36\x23\x1c\xd1\x74\x5e\xb8\xd8\xa8\xb4\x02\x73\xe3\x6f\xb3\x7c\x04\x30\xb8\x92\x1d\x6e\x9a\x35\x5a\xc0\xc5\x27\x08\xcd\x20\xba\x5c\x92\x9a\x62\x49\x54\x03\x57\x47\x8c\x98\xe8\xcb\x65\xf8\x98\x6b\x02\xdd\xc6\x66\xde\xac\xf0\xda\xec\xe1\x27\x8c\x9f\x99\x22\x63\x66\x7f\xbd\x09\xc6\x5f\x45\xf3\xaa\x48\x11\x70\xa4\x46\xe1\x9e\x4b\x98\xa5\x5b\x68\xf6\xa3\x8b\xac\x0d\xa0\x54\xec\xf9\xa1\x0f\x99\x90\x5d\xa6\x60\xf3\x3d\x3e\x28\xb2\x42\xfa\xae\xc6\x06\x0c\x37\xe9\x49\xfd\x88\xa5\x8c\x7f\x72\xf6\xf2\xe8\xbb\xf3\x93\x8b\x1f\xce\xca\x4c\x6f\x28\xea\x2d\x18\x9d\xdd\x7c\x64\x9f\x1d\x1c\x8d\xd1\x97\x5f\x22\x60\xd6\xe3\x67\x4f\xa7\xf5\x55\xf4\xd3\x17\x07\xa8\xa5\xd9\x35\xd7\x6c\x3a\xbd\x32\x7d\xb0\x17\x08\x63\xeb\x99\x5f\x52\xf9\x71\x34\x38\x7a\xf9\xfc\xf9\xe9\xc5\x9f\x76\xe7\xef\xc4\x6c\x64\x6b\x2e\xdb\x8d\xeb\x6b\x32\xc7\x5d\x23\xcb\x44\xd4\xa5\xbe\xee\x94\x21\x24\xae\xa1\x23\xdc\x34\x22\xa8\x5b\xf5\xc6\x79\x59\xc4\x80\xb5\x91\x3c\x24\xe0\x72\x5a\x40\x11\x70\x21\x54\x14\xbc\x83\xd9\x7b\xe2\x14\x36\xd8\xef\x76\x21\x9f\x68\x9c\xa3\x99\xdd\xb2\xd2\x81\xe2\x3f\x9b\x14\xf3\xc2\xdc\x98\x09\x59\xaf\x24\x47\x32\x0f\xf4\x67\xaa\xd5\x87\x3e\x45\x8a\x63\xa2\x9a\xc1\x9f\xb0\xbe\xa3\x64\xda\xfb\x29\x1d\x26\x03\x79\x2b\xbd\x2e\xcb\x2d\xf9\xb2\x9f\xcf\x86\x79\xf2\x6c\x90\x27\x73\x79\xf7\x89\x59\x32\x38\x0b\x12\x76\x0c\x91\x34\xac\x18\x7c\xb5\x65\x29\x87\x01\x79\xfd\x31\x64\x36\x0f\xe3\x6f\xa2\xb3\xe1\x73\x74\x18\xca\x0a\xfd\xca\x6d\x9e\xaf\x59\x10\x07\x46\x12\x7e\x0e\x92\x9b\xa3\x27\xa1\xb9\x79\xb8\x3b\xa4\xb6\x9e\xea\x2e\xe4\xde\x9c\x4b\xf4\x22\x48\xc1\x31\xda\x7e\x50\xf5\xd5\xd5\x3f\x74\x6f\x8a\xa3\x34\xcb\x50\x0c\xdb\x7e\x66\x19\x18\x87\x38\x19\x59\xc2\x73\x28\x91\xab\xa3\x97\xea\x7d\x6a\x41\x6f\xd5\x8c\x8d\x7a\xc4\x40\xa9\x96\x21\xa5\xaf\x77\xc0\xad\x34\xc5\xfc\x3d\x07\x4f\x3a\xcd\x7c\x92\x5d\xc1\x73\x8d\x91\x25\x9c\x5b\xd0\x41\x92\xa6\x70\x8e\x9f\x61\xfb\xb9\xf8\x04\x59\x3f\x59\x1d\xce\xc1\x83\x9c\xba\x16\xa2\x29\xe1\x5b\xf2\xda\x45\x55\x55\xb6\xf4\x08\x38\x03\x53\xbf\x08\xab\x37\x75\x08\x07\xe6\xa9\xe3\xb7\xd8\x26\x5a\xa1\x99\x7d\xf7\xcb\x7a\x93\xd3\xb2\xc6\x83\xce\x87\xc6\x67\x6c\x9d\x77\xcb\xa5\x29\x4c\x1c\x4c\xc5\xf3\x4f\xce\x39\x81\x26\x17\x28\x71\x40\x93\x4c\x7f\xeb\x2b\xf6\x1c\xa8\x6e\x09\xa8\x69\xf6\x8a\x5a\x8c\xe8\xd4\xcd\x7c\x3c\x04\x22\x7a\x02\x2e\x81\x10\xfa\xa7\x3c\x10\xad\x48\x67\x9e\x9f\x04\x76\xb0\xc4\xb7\xb2\xb0\x22\xbe\x90\xee\x0d\x57\xf3\x8e\x0f\x9b\xeb\xc7\x7d\xbc\x01\x19\xad\xdf\x57\x22\x7d\xd9\xc7\x80\x84\x96\xbe\x40\x8f\x7d\xbe\x58\x98\x11\xae\x48\x6b\x9e\xc9\x5c\xe0\x6b\xd2\x7e\x25\x8d\x9f\x81\xb6\x92\xd4\x3d\x5c\xb9\x26\x32\xd3\x4f\x4c\x8b\x33\xbd\xcf\x0e\x4a\x77\x88\x2d\x07\x5c\xa8\x41\x75\xc3\x42\x8a\xd0\x9c\x10\xbd\xba\x06\xc8\x13\x42\x84\xea\xfa\x84\x90\x6f\x71\x83\x5b\xd0\x6e\xc2\x4e\xd7\x98\xa3\x79\xc3\x6e\x60\x59\x75\x01\xa9\x43\x45\x23\x87\xca\x37\xd3\x6f\xd2\x28\x82\x1f\xc4\x2b\xff\xa6\x7d\x7e\x4e\x0d\x02\x7f\x02\x3f\x5e\x91\x56\xb3\x8e\x6e\xb2\x9d\x37\x7e\x77\xb8\xe8\x6b\x34\x8a\xb1\xdd\xf3\x53\xd9\xe4\x44\xff\x9e\x61\xad\x10\xe8\x77\x7a\x15\x43\xcd\x58\xdb\x09\xcb\x04\x90\xd5\x18\xd6\x8c\x0f\x57\x05\x5a\x5e\xe8\x86\x89\x55\xf6\xad\xff\xa9\xe4\x5f\xec\x66\xba\x98\x6c\x3e\x56\xc6\xe2\xc1\x53\x55\x9c\xb8\xaf\xd3\xb5\x0b\x51\x79\x34\x44\xc4\x1d\x29\x3e\xf0\xe3\x5e\x38\xe8\xa6\x58\x45\xb4\x85\xb7\xf3\xdb\x86\x06\xc8\x36\xf8\xfc\x6d\x53\x00\x6f\xf0\x05\xa5\x6c\x89\xdc\xf3\x60\x37\xfe\x21\xb2\xc8\x88\x72\x15\x81\xa1\xb8\x97\xad\x7f\xaf\xb5\xad\xac\x06\x3a\xb2\x02\xb3\x18\xbb\x12\x05\x21\x10\x4f\x3d\x17\x09\xf6\xf7\xed\x8e\x94\x9e\xe2\xff\x19\x33\xfc\xf3\x9f\x68\x85\x5b\x5a\x8d\x5c\x24\x37\xc8\x55\xce\x17\x0c\xcd\x48\xd5\x61\x9d\x27\xbd\xc0\xc2\x49\x4a\x47\x8e\x35\x91\x77\xc7\x89\xda\x1b\xe3\x9d\x1d\x3e\x43\x13\xef\x39\x73\x52\x98\x03\x0a\xd4\x19\x5e\x7b\xad\xd3\xbc\x13\xa1\x0b\x2f\xc0\xa5\x7b\xf7\xee\xb6\x75\x95\xc7\x6f\x17\xf4\x2a\x46\x5b\xaa\x80\xe6\x69\x81\x55\xd8\xe0\xd6\x3a\x01\xda\x43\xf7\x0b\x6f\x17\x7c\x51\x84\x1e\x3d\x48\x9a\x0b\x01\x50\xda\x9c\x66\x53\x38\xa7\x4c\x66\x58\xa8\x17\x8c\xe2\xb8\x55\x79\xd8\xb0\xcd\xc4\x6b\x61\x7d\xcd\xa3\x47\x5b\x73\xf6\xec\xdf\x42\x7e\x01\x46\x73\xf3\x8c\x92\x4b\x11\x29\x0f\xe5\x0a\xc3\xc7\xda\xce\xbe\xa5\x43\x3e\x7a\x19\x4e\xf2\x40\xac\xe4\x1d\xe9\x41\xbc\xc4\xb8\x05\x88\xc3\xef\xa3\x84\xef\xa9\xb2\x6b\x22\x9c\x3c\x32\xa7\x88\x2d\x98\x38\xeb\xaa\x2b\x62\xd3\xc8\x22\x9b\x56\x24\x89\x8d\xa5\xc0\x7b\xf1\x61\xd8\xd8\x2a\x0c\x75\x7e\x9d\x92\x15\xc4\xcd\x4d\xe0\x66\x0d\xd1\x02\x21\x75\x99\xa1\x38\x66\x90\xb9\x87\x69\x7b\x66\xf2\x22\x4b\xd9\xea\x3d\xe1\x76\x51\x8a\xb4\x7f\x48\x07\x31\xfe\x65\xa3\x64\xf6\x83\x0f\x42\xf1\x24\x8d\xc2\x07\xa7\x5a\x3f\x1b\x2e\xd9\x35\x31\xc7\xbe\x0d\x81\x3a\x36\x1c\x14\xc4\x31\xec\x82\xed\xdf\xef\x00\x8c\x96\xe1\x07\x7f\xcb\x26\x7e\xf1\xa3\x7f\x00\xff\xb0\xd6\x00\x86\xb1\x7d\xf7\x09\x05\xd8\x17\x11\xe0\x42\xd2\xc1\xce\x86\x92\x03\xe8\xab\xbb\xe9\x80\x6e\x92\x4d\x16\xad\xcb\xc6\x7c\xd6\xa0\x22\x5b\x8a\xe4\xb4\x27\x17\x41\x44\xfe\x51\x97\x64\x50\xea\xde\x9b\x75\x10\x94\x78\xcb\xfa\x15\x53\x1b\xb4\x66\x2c\xf1\x15\xa9\xf7\x7b\x0c\x8e\x0b\xdf\x24\xbd\xe2\x08\xbd\x55\x2f\xad\x5f\xed\xf7\xaa\xdc\x5b\x48\xfb\x1c\xb0\x3b\x2b\xb6\x35\x84\x3c\x8c\x71\x2a\xfc\x5c\x0a\xa8\x48\xbc\x73\x3a\xc7\xb1\x69\xe2\x77\x89\xcc\x19\xbf\x5a\x71\x76\x9d\x84\xb7\x43\x19\x57\xf0\x6a\xfb\xac\xba\x40\x6e\x84\xaf\xed\xed\x94\x8e\x14\xbe\x65\xe5\x85\xb1\x77\x3e\x1b\xe7\x22\xa4\x82\x2d\x69\x54\x8e\x44\xf8\x87\x35\x1d\x0c\x88\xb4\x2e\x70\xe2\x85\xab\x29\x27\x95\x74\x81\xd5\x37\x19\x32\x6f\x86\x85\xfc\x90\x2f\xdc\x5d\x3d\x2a\x66\x59\xa6\xa7\x82\x7f\x58\x0f\x8a\x5a\x9d\xb6\x73\xc6\x97\xee\x5d\x4a\xbb\x4a\x76\x59\xf4\x2a\xb9\xfe\xf0\xb6\xb1\xa9\xb1\x75\xc8\x39\x5e\x6f\x55\x96\x33\x1f\x5e\x0f\x7d\x0c\x3a\x1d\xf8\x48\xfd\x4b\xcb\x9a\x2d\x94\x62\xfb\xea\x28\x1a\xd7\x35\xc9\x26\xbe\xc3\x28\x36\x65\xd7\x8f\x12\xa6\x94\xe9\x61\x4c\x9b\x2d\x86\x79\x4a\x24\xb2\x73\x05\x60\x96\x7c\x31\xd5\x4c\x4b\xfb\xa3\x9f\x2b\x24\x57\xc4\x38\x85\x9d\x24\x0b\xd2\x7e\xfb\xd2\xe0\xd4\xb0\x14\x32\x32\xd3\xd8\xd0\xfb\xcc\x42\xb1\x4b\x57\x56\x28\xb3\xe2\x69\xb4\x4e\x0c\xe5\x68\xe9\x6d\xcd\x54\xfb\xe5\x38\x4b\x82\xb4\xbf\x4c\x39\x6b\xc0\x57\xae\x46\x78\xcd\x1a\x32\x75\xf5\xb8\xa7\x1c\xdf\xfc\x08\xe5\xa5\x0b\x69\x1d\xc9\x82\xa7\x03\x4e\x69\x3d\xe8\x4c\xd8\x80\x81\x21\xfb\x30\x06\x31\x2f\x6c\x81\x41\x01\x97\x7b\xf7\xd0\x4b\x7e\x89\x5b\xbb\x88\x29\xaf\xd3\x56\x32\xf7\xc0\x78\xec\xa3\x2c\x3c\x5d\xac\xcf\x46\xc8\x34\x2c\x54\x35\xb7\x3c\x9b\xd2\x2e\xf6\xeb\xea\xc3\xf7\xd5\x11\xd2\x7a\x9a\x4f\x3e\x04\x63\x9c\x92\x3a\x47\x67\x58\xe3\x53\x87\xad\x56\xf9\xaa\xfe\x0c\xb8\x12\x0e\x4a\x31\x0d\x9f\xf1\x2c\x6e\x85\xb2\x3a\x08\xa3\x2a\x85\x30\x98\x74\xbc\x5c\x89\x8a\xd4\x13\xbb\xbf\xbd\x36\x03\x05\x45\xa2\xfd\xb9\x4d\xc2\xe7\xbd\x7b\xa1\x56\x1e\x5f\x79\x9b\x11\x34\xa7\x70\x60\xd0\x16\x35\x38\xcc\x5d\x0b\x3d\x0c\xc3\x59\xa0\xd5\x16\xea\x6d\x39\xc3\x70\xe8\xb3\x6d\x42\xe8\x20\x0c\x9f\x2c\x3a\x98\xca\xf0\xb5\xc9\xe0\x1f\xdd\xbf\x05\xa2\x2e\xcf\x74\xc3\x10\x7a\x85\xb7\x78\xc4\xe3\x56\xf3\x8c\x92\x58\x3f\x01\x26\xdb\x3c\x5f\x32\xf4\xd9\xe2\x3a\xdf\xa6\xcf\xed\xb3\x5c\x07\xa1\x6e\xb8\x1d\xb8\xe9\xe3\xb2\x62\x7f\xfa\x39\x09\x5e\xd9\x57\xa3\x17\xd9\x3b\xe4\x43\xdb\x53\xed\x33\x19\x3e\xe4\x9d\x48\x88\xe8\xd1\x93\x71\x71\x7b\x5e\x44\x97\xb9\xd0\x41\x04\x6f\x9a\xbd\xa9\x9c\x77\xf5\x0f\x96\x47\x3d\x7b\x5f\xa7\xde\xc1\x8e\xed\x77\xd5\xf5\x65\x07\x6f\x63\xfe\xfa\x64\x83\x58\xe4\x16\x6b\xa0\x17\x07\x9c\x86\xd5\xc4\x77\xdf\x10\x5b\x76\x2a\x56\x53\xef\xad\xa4\xfe\x99\x10\x1d\x3d\x40\xe8\x6f\x3b\xa1\x3b\xee\xc5\xf7\xe1\xef\x81\xef\xc3\x8f\xc3\x37\x30\xfa\xc1\x80\xa9\xbc\x17\xb0\x84\xef\xe0\x1b\xab\x28\x2b\xd5\xee\xf4\xd1\xfe\x0e\x81\xa3\x60\x03\x89\x86\x60\x38\xab\xbf\x0c\x63\xf0\x56\x03\xfa\x68\xf1\xb9\x4b\x5d\x1e\xfb\xb9\x6d\x11\xf8\xb4\x7f\x58\x0c\x7e\xab\x6a\xf0\x29\x80\x87\x25\x00\x43\x65\xe1\xed\x27\xbd\x26\x5b\x96\xb0\x9b\xfa\xbb\x6b\xb3\x45\x29\xdb\xef\xc7\xc8\x7c\x00\x50\x09\x27\xb6\xc3\xc0\x9d\x6a\xaf\x9e\xd6\x91\x6b\xd7\x7b\x0b\x82\x3c\x29\xed\x2d\xf0\x3a\x2f\x27\xa2\x6b\xa4\xd8\xc2\xfa\x2f\xe4\x89\xd1\x39\xfa\x62\x53\x42\xef\x6f\xbf\xa1\x9e\x7c\xde\x03\xc8\xe7\x4d\xcc\x9e\x24\xb1\xf3\x43\xa2\x42\x7b\x3b\x24\x1e\xf7\x92\x48\x67\x84\x8c\x7b\xfc\x0d\x6f\x3b\xc6\xbb\x25\xaa\x08\x97\x74\x4e\x2b\x48\x99\xe9\xad\x62\x0d\xa6\xf8\x36\x57\x2f\x73\xab\x9c\x4a\xc8\x34\x74\x17\xf9\x9d\xdd\x6d\x91\x07\xb3\x5b\xdf\xd5\x92\x0b\x42\x79\x88\x12\xc2\x4a\x96\x88\xc8\xbc\xb6\x05\xab\x69\xeb\x61\xc4\x54\x03\x6c\x03\x20\x07\xb6\xa1\xcb\x7b\x7c\x05\x93\x3f\xf2\x6d\x0a\x79\xb8\x41\xa8\x0f\xaa\x52\xb6\x4c\xba\x87\x98\x7b\x28\x68\x34\x19\x2a\xec\x80\x77\x13\x33\xdc\xd3\xd0\x1a\xaf\x41\xef\xbe\xd7\x94\xce\xfd\x52\xa3\x57\x47\xee\xb5\x80\xe4\x49\xf1\x2c\xe5\xcb\x85\x34\xd8\x4a\xed\x10\xcd\x8b\x5b\x19\x30\xbb\xc7\x49\xbd\x93\xba\x47\xa4\x3b\x86\x7c\x75\x24\x46\x6f\xab\xe8\x7e\xd5\x38\x9b\xad\xda\xc9\x7a\x2b\xa2\x2b\xb2\xbe\xd5\x8c\x43\xa7\x8c\x39\xa2\x95\x62\x6a\xb6\x4a\xbe\xff\x62\x37\x7b\xd7\xde\xe8\x1b\xe1\xf1\xb5\xe1\xf8\x5d\x1b\xb5\xd8\x57\x64\xad\xb0\xb3\xd0\x63\x3e\x8c\xa0\xd8\x05\xbf\x22\xeb\x2f\x4a\x91\x98\x5e\xc2\x1d\x3f\x7b\xfa\x94\xb3\x6e\xf5\x8c\xac\x55\x67\xb1\x1f\xc3\xfd\x1d\x55\x4a\x9d\x4c\x59\x8a\x1f\x18\x69\xf8\xf1\xb6\xee\x2e\x37\xf0\xec\x27\xbc\xe0\x9d\x90\x06\xc5\x67\xc9\xb7\xe0\xb5\x80\xea\x69\xf6\x89\x42\x13\xe2\xce\x1d\x70\xe6\xa1\x62\x7b\xaf\x2b\x3c\x12\xfc\xe3\xec\x70\x15\x40\x1d\x0c\x25\x1f\xf7\x3e\xfa\xb2\xe0\xd7\x4b\xdf\x3f\x76\x6f\x4f\x1f\xe1\x15\x9e\xd1\x86\xca\xde\x47\xfd\x2b\xb6\x5a\x3f\xf2\xcd\x8a\xef\x95\x85\x28\x00\xe1\x5f\xae\x88\x3e\x97\x93\x70\x71\x59\xbc\x49\x54\x79\x34\x20\xe1\xc6\x20\x61\x93\x7c\xee\xc6\xbb\x75\xd6\x4b\x51\x17\x35\x85\xf9\xb2\xd9\xbf\x49\x25\xf3\x49\xbf\x26\x73\x74\x90\xce\xdf\x78\x97\x1e\xf5\x92\xef\xf1\x68\xf3\x5c\x0c\x66\x11\x5e\x11\x4e\x77\xf3\xb7\xd2\x2d\x4a\xdb\xf3\x8d\x97\x6a\x5b\xf1\x8b\x67\x95\xd4\x6d\x67\x98\xc5\x9f\xa9\x9f\x99\x4f\xcc\xc0\x7f\x28\x8b\x28\xbd\xed\x23\xb9\x23\xa1\xd7\x6d\x19\xc3\x62\xf2\x49\x78\x42\x9d\x5e\xbb\x31\x83\xf7\xa3\x1a\x36\x50\xe7\xd3\x67\x66\x00\x3b\xe6\x1f\xca\x01\xf5\xd5\xc7\x0b\x08\x47\xab\xdb\x2e\xbe\x43\x62\x87\xd5\x7f\x8e\xaf\x88\x40\xee\x5d\x28\x41\x20\x35\x52\xdb\x25\xba\x0a\x9e\x40\x23\xda\xea\x87\x82\xc7\x60\x96\x40\x79\x8b\xa9\x8f\x6e\x76\xb3\x3d\x68\x2f\x50\xa5\x53\xc9\x4a\x2f\x11\xcf\xbb\xa6\x31\xea\x8e\x06\x3b\x8d\x6c\x93\xa6\x09\xce\xa0\xfe\xaa\x1e\xbf\xd8\xdc\x95\xef\x89\xaf\xe6\x88\x7e\x71\xc6\x5f\xf2\x35\x8c\x17\x7c\x37\xd6\x4f\x6a\xe6\xe1\xdd\x91\x07\x0b\x9e\x89\xbf\x05\x00\xc7\x63\xf4\xc8\x41\x4a\xc9\xa7\xef\x1d\x41\xf9\x1c\x35\x4b\x78\xc7\x87\xcd\x93\x58\x0c\x3a\x3d\x06\x7d\xae\x13\x90\xcd\xcf\x59\xd7\xd6\x88\xb3\x19\x6d\x11\x6e\x2e\x19\xa7\x72\xb1\x74\x10\x25\x33\xcf\xdd\x80\x81\x91\x06\x75\x24\x33\x45\xe5\x05\xfd\x35\x8d\xa7\x64\x57\x23\x36\x45\x73\x5c\x11\x99\xde\x9a\x35\x01\xa5\xf2\x5b\x2c\xfa\x5d\x5f\x0b\xce\xd4\x4c\x1c\xa3\xc7\x07\xc3\x4e\x9d\x0c\xa1\x7d\x57\x4d\x06\x6e\x7a\x37\x44\x88\x7c\xde\x8a\x8f\xec\x6c\xef\x16\xb4\x4e\x65\x2a\x89\x45\x37\x9f\x37\xa4\xd6\x37\xd8\x74\xe9\x4b\xbb\x3e\x16\xcd\x92\x15\x59\x7a\x66\x08\x0c\xb4\x18\x89\xa2\xc9\xda\x4f\xba\x48\xc5\x0e\xec\xce\xd3\xb6\x26\xef\xec\xab\xc8\xe8\x20\x78\xc1\xca\xc6\x52\xf5\x73\x52\xe2\x98\x02\x4f\x42\xaa\xda\x4f\xef\xf5\x5a\x59\x4e\xfe\x90\xc0\xbf\x59\xd0\x86\x44\x23\xa0\x47\x3b\x2e\x43\xb2\xba\x45\x44\xac\xee\xff\xfe\xc3\xb8\x64\x0e\xea\x81\x0f\xe2\xff\x7e\x1d\xf8\xec\xfc\x7a\x25\x3d\xbe\xb9\x13\x59\x23\x3a\xf2\x1c\xae\xe7\xfb\xc2\xb3\x05\x9f\x20\xec\x9c\xcd\xf0\xa7\x10\xb1\x9f\x7f\xa2\xb5\x22\xb4\x0f\xcc\x86\xef\x7d\x65\xa9\xc4\x87\xb6\xe4\x01\xf3\x51\x00\x03\x6e\x82\x18\x47\x50\x2a\xd7\xfc\xa8\x2b\x6b\xd1\x39\xba\x21\x9a\xed\x2f\x19\x14\x16\x31\x3f\x37\x58\x09\x92\x96\xdc\x8a\xca\xc8\xdc\xf5\x8d\x9a\xef\xba\x2b\x4b\x71\xeb\x74\xcd\xc2\x1f\xfb\x62\xd4\x47\xce\x23\xe2\xbd\x1c\xe0\x58\x75\xd7\x7b\x04\x54\x5a\x76\x9a\x94\xd5\x2b\x52\x6b\xb8\x54\xea\xf8\x3c\xc9\x94\x19\xc4\xf2\xd3\xef\x11\x3b\xa1\xf0\x9d\xd7\x4c\x12\x8c\xa8\xde\xf0\xe1\xc0\x93\x90\xf9\xf6\xb7\xe1\xc4\x2f\xc6\xb7\xdd\x71\xe9\x59\x17\x9d\x19\xc1\x51\x76\xe8\xab\xd4\xc1\x55\x04\xe3\x20\xc2\xf6\x6e\xef\x8a\xf0\x65\x27\x7d\x4a\x0f\xe7\x46\xfe\xa8\xce\x9d\xb0\x57\x8f\xe7\x54\x2c\x08\x47\x6b\xf0\xc3\xe9\x1d\x0c\x96\x4a\x74\xd0\x65\x85\xe0\x9c\x98\xfe\x45\x7b\xca\xe2\xc3\xc9\xa7\x65\x45\x02\x95\x2a\x85\x0a\x72\x46\xf4\xd9\x13\x3f\xfd\xea\x92\x01\xdc\x75\x0b\xd8\x54\xa4\xd1\xa5\xbd\xc1\xc1\x72\x83\x57\x50\x31\x70\xb6\x56\xff\x40\xc9\xaa\x9a\xb5\x5f\x45\xbc\x67\xcb\x57\xf1\xae\x75\x01\x3e\x53\x17\xaf\xb1\x55\xc2\xb1\xfc\x4a\xa0\x9b\xc5\x1a\xd1\xe8\x49\x42\xcd\x71\xf1\x77\xd9\xad\xa7\x33\x5a\x5d\x79\x2a\x03\xb3\x68\x94\xbf\x81\x4c\x9d\xcc\x21\xa8\x1b\xbe\xe8\x96\xe8\x00\x71\x72\x4d\xb8\xa4\xb3\xc6\x5c\x80\x7e\xa4\x4f\x87\x54\x81\xf4\xdd\x2c\xbf\x78\x20\xff\xdb\x06\xc5\xa9\xe2\x9b\xc2\x15\x16\x45\x23\xb5\xd8\xf4\x67\xef\x5e\x76\x44\x94\x11\xde\xd9\xa0\x92\x2c\x57\x76\x91\x7e\xa2\xf1\x4b\xca\xf6\x4b\xf7\x7b\x80\x61\xa9\x65\xf8\x33\x3a\x00\xd0\x49\x62\x0e\x3a\x40\x34\x0a\x11\xe5\xcc\x0f\xa0\x52\xce\x3f\x4a\x94\x8d\x4a\xbb\x76\xc3\xba\x8d\xfe\x72\x0e\xe5\x26\xc3\x45\x97\x89\xf4\x66\x91\x82\xa4\xf4\x7f\x5e\x2b\xbd\x97\xa1\x15\xe6\x92\x56\x74\xe5\xee\xb3\x69\xf1\x66\x36\x96\x02\x6a\xb8\x89\xf2\xc8\x4d\x9d\xee\x8d\xcb\xc0\xe5\x08\xc3\xc2\x89\x06\x59\x9d\xbc\xec\x99\x79\xe1\x7e\x1f\xef\xa3\xff\x17\x0b\x25\x8d\xf8\xfb\x4c\xe7\xd8\xe1\x20\xf5\xc3\x4f\xa3\x33\x55\x3f\xbc\x94\x24\xdf\xee\x92\xac\x15\x7b\xc7\xfc\x23\x4b\xaa\x0b\x62\x60\xd9\x31\x1e\x14\x17\x48\xb4\x6c\xb3\x46\xd8\xaf\x8f\xb6\xc5\xbc\xba\x98\x66\xee\x44\xae\x8b\xf8\xfa\x6a\xea\xd6\x48\x19\xe9\xd1\x5e\xdc\xdb\xe4\x4e\xf9\x05\xca\x28\xe5\xca\x00\x3e\x23\x6b\x1f\x63\x9c\xfa\x2f\x33\x2f\xdf\x51\x92\x57\xb8\x89\x2f\x95\xbd\x7e\x66\xb9\xae\x95\xdb\xb3\xa7\x39\x52\x55\xff\x0d\x77\x84\x03\xa6\x3c\x7e\xf6\x34\x18\xec\x16\x4c\xa9\xec\xdd\x10\xdd\xff\x0c\xa6\x4c\xf3\xf7\x76\x67\xca\x70\xd1\x3c\x53\xa6\x8b\xb3\x81\x37\xeb\xab\xd2\xa5\x6a\xef\x5f\xc9\xf9\xd1\xf6\x30\x9c\x98\xae\x4d\x81\x48\x28\xad\x47\xa6\x20\x89\x38\xe3\xcc\xdf\xc1\x6e\x88\xcd\x3d\x36\xda\x92\x2f\x53\x06\xce\x85\x7e\x7b\x5e\x49\x30\xe8\xe3\x3c\xf9\xe3\x7d\x64\xd2\x60\xca\x99\xd6\x25\x85\x6c\x08\x5d\xdd\x5e\x87\xfd\xf4\xd5\x71\x48\x70\xb1\xd5\xdc\x2a\xdc\x0e\x20\x3e\x0d\x37\x5c\x45\x56\xba\x86\x95\x29\x90\x6b\x5e\x72\x9b\x11\xd8\x30\x4a\xf1\x79\xa3\x31\x7f\x33\x41\x0b\x76\xa3\xce\x5f\xa8\x12\x8e\x05\xc2\x75\x4d\x6a\x9d\x5e\xa7\x76\x14\x6e\xbd\x76\xb4\xba\xe4\xb8\x26\x06\x1b\x53\xe3\x4c\xc0\xcd\x1c\xf3\x3a\xd6\x8c\x20\xb1\x22\x15\x9d\x53\x52\x23\x41\x56\x98\xeb\x82\x59\xa0\x08\x90\x77\x54\x40\x42\xa5\x90\xbc\xab\xa4\xc8\x5d\x27\x86\xca\x85\x4c\xa2\x7d\x94\x7d\xd9\x43\xf3\xa2\xef\x2d\xeb\x5c\x74\xc1\x65\xad\x4c\x14\x2a\x58\xad\x8b\x30\xec\x75\x12\x5e\x58\x01\xee\x6a\x6e\xf0\x5a\x14\x4b\xc3\xae\x9a\x4e\x98\x23\xbd\xc8\x5c\xe5\xe0\x8c\xb5\x93\xfb\xf8\xab\x5c\xb3\x12\x61\x61\xfa\x85\xe8\x67\x95\xe6\xfa\x6e\xb4\xf7\x79\x97\xfa\xc9\xab\xda\x17\x29\x7a\x58\x1e\x63\x8c\xfe\xf9\x4f\x34\xc7\x8d\xa9\x62\x12\xd0\xf7\x29\x49\x4a\x15\xf6\xdc\x73\x6e\xc8\x5c\x9a\x7d\x5c\x13\x21\x39\x5b\x07\xe9\x05\xdf\x86\x2d\x31\x8f\x6f\xc8\xdf\x10\x4e\x10\x6e\x1a\x56\x61\xa9\x8b\xe0\x63\x54\x93\x8a\x28\x6b\xad\xa1\xbf\xba\xfb\xf5\xa4\x95\xf4\xda\x9f\x39\xd0\x17\xb2\x19\x5c\x05\x6f\x1f\x05\x55\x84\x05\x14\x09\xbc\x8c\x63\x11\x9a\x1a\x76\x21\x02\x5c\x9b\x76\x0e\x81\x8f\xcc\xa0\xc5\xd9\x8d\xea\xaf\x6f\x70\xba\x37\x88\xc2\x0b\xff\xf6\x3c\x83\xea\x01\xb4\x9d\x9b\xaf\xd5\xf6\x72\xe0\x04\xf3\x57\xd8\xcc\xfb\x3f\x4d\x57\x07\x95\xac\x03\x80\xae\x13\x54\xcd\x37\x92\xc2\xa6\x02\x44\x94\xb6\x99\xb7\x6e\x56\xca\xe4\x08\xc8\x62\x2b\xe7\x19\x8f\xa9\x2e\xc7\x88\x70\xbb\x5e\x32\x4e\xfa\x76\x78\x74\xdd\xdc\x96\x10\xdd\x85\xe3\x74\x8f\x8c\xe7\xd4\x11\xeb\x61\x97\xae\xd4\x23\xed\x88\xb6\xe5\x04\x0c\xeb\xd1\x96\x4a\x77\x2b\x3f\xbe\x05\x97\x57\xcb\x4e\x12\x60\x87\x9b\xa4\x05\xfd\x87\xda\xfa\xc2\xfd\xc5\x56\x05\x8f\xa3\xf6\xbe\x85\xed\x86\x2e\x8d\x5b\x42\x87\xed\x37\x95\x1e\xbf\x5d\x61\xf0\x9d\xcb\x82\x17\x8b\x82\x0f\xba\x6d\xb7\xa9\x9e\xdd\x9b\x20\x5c\x7a\x19\x21\x5d\xd7\x42\x61\xec\xbc\x28\xf6\x36\x35\xb0\xd3\x8b\x98\x25\xad\x00\x1d\x18\x4d\x62\x94\x71\xd7\xc7\xe4\x5b\x7f\x8a\x87\x25\xb6\x02\xbf\xdb\x9b\x13\xc3\x20\x0b\x7c\x5e\xfa\x76\x27\xb0\xc3\xdb\x62\xe8\xd7\x3c\x1b\x06\x23\xd5\x84\xc1\x51\x66\xeb\x00\x3a\x01\x1d\xea\x6d\x56\x9f\xd3\x79\x76\xea\x8b\xfb\xa6\xb0\xec\x0a\xde\x35\xab\x58\x50\x08\x08\xb4\x65\x0d\x2c\x57\x75\x0e\x72\xf5\x27\x36\x05\x6a\x97\x04\x38\xc8\x2e\x9c\xcc\x8f\x06\x0a\x5e\x67\x8d\x2f\xe8\x92\x08\x89\x97\x2b\x2b\x92\x46\x59\x31\xc8\xa9\xb4\x6d\xc6\x5f\xa7\x3b\xc8\x81\x0b\xea\xe8\x24\xd2\x5c\xe0\x6b\x32\xea\x9b\xf7\x04\x49\xb6\x51\x47\x1b\x48\x9c\x39\x1a\x7a\xe4\xa2\xbf\xdb\xe6\x1b\xcc\x51\x57\xd0\xbe\xcf\x35\x8e\x67\x58\x2e\xd0\x41\x01\xe5\x43\x67\x5b\xb8\x7e\x0b\x5b\x99\x78\x53\x5f\x57\xc2\x38\xee\x6f\x8d\x9b\x4d\xdd\x9d\xe5\x11\xf1\x5a\xf2\xd6\xd3\x7b\xbd\xbe\xfb\xf1\x6d\x99\x0f\xe8\x00\xbd\x4f\xe5\x57\x71\x09\x23\x70\x7a\xdd\xfa\x90\x4c\x57\xac\x08\xef\xd1\x9e\xc9\x41\x34\x86\x62\x00\x32\xa5\xf7\x78\x17\x70\x8e\x96\x11\xc8\xd2\x52\x8c\x4b\xfe\x7f\x8c\x56\x9c\x5e\xab\xbf\x82\x90\x7b\x31\xc3\xc6\xd5\x82\xd3\xcf\xf5\x2b\x2d\x13\x5e\x73\x84\xe2\xd6\x58\x46\x37\x9e\x5e\xb6\xe8\x39\xa6\x6d\x4b\xb4\x3f\xf7\x82\x08\xd9\x12\x78\xdb\x84\x24\x99\x0b\xc2\x14\x28\x88\xde\x99\x30\x0f\x24\x9a\x89\x4f\x94\x56\xb8\xb0\x41\xeb\x05\xe1\x24\x7c\xc9\x05\x1d\x6a\x85\x17\x36\x1c\xbc\x8c\xa0\x91\x9c\x31\xe3\x13\xc5\xf1\x78\xfe\xc1\x16\x37\x61\x4a\x04\x6a\x68\x6b\x8a\x38\x20\xb9\x60\x82\x84\x1d\x2c\x5a\x78\xe9\x70\x8a\x30\xd0\x4f\x9a\xb5\xa2\xd3\x75\xf2\xb0\x34\x29\x9a\xac\xd5\x86\x21\xe3\x4a\xa7\xae\x3b\x98\xad\x79\xef\xc5\x94\x33\x17\x90\x4c\x8c\xc1\x55\x1c\xdc\xcb\x5b\x0b\x49\x96\xa8\x5a\x74\xed\x55\x38\x10\x28\xc4\x18\x2e\xe9\x37\x6b\x13\x47\xae\xed\x03\x90\x9a\x92\xd6\x03\x85\x1b\x00\xc7\x3a\xa9\xec\x5f\x6a\xbe\x72\x45\xc4\x97\xb8\xa5\x2b\xa3\x3a\x4f\xa3\x6d\x14\x16\x55\xeb\x4f\x04\x09\x69\xe7\x18\x93\x0a\xd1\x91\xa1\xa4\xaa\xc2\x2f\x61\x3a\xd9\x6e\x5b\x20\xc8\x3f\x19\x18\xf3\xf1\xa8\x3c\xa1\x82\x24\x1e\xcc\x6c\xdb\x71\xeb\xbc\xad\x02\xe7\x0b\x8a\x52\x47\x37\x6f\x20\xb5\x0c\x6f\xab\x8f\x5c\x81\x2c\x71\xa9\xf0\xe5\x47\x12\x3c\x1d\xe2\xf1\x28\xc3\xba\x40\xe6\xbe\xc4\xb0\x1d\x29\xec\x92\x6a\x6e\x4d\x62\xeb\x98\xbb\x3d\x8d\x83\xcc\xa0\xe8\xbf\x1f\x49\x57\x0f\xf6\xf1\x28\x47\xb2\x40\xd2\xde\x54\xab\x78\xf0\x72\xe9\x2b\xa5\xf9\xf7\x17\x12\xde\xaa\x7c\x76\xd4\x1a\x62\x70\xbb\x5c\x59\xdd\xea\x25\x3b\x74\xbb\x47\x4a\xb2\xba\xda\x1b\x1e\x2b\xc9\xeb\x70\xef\x70\x73\x14\xed\xf5\x3e\xaf\x52\xbe\x21\xba\xf3\x30\xc9\x65\xad\xde\xf1\x3e\xb6\xd8\x47\xf8\xf9\x4f\x78\xed\xa4\x27\xf1\x3c\x67\x35\xeb\x3c\xff\x70\xe7\x7f\x02\x00\x00\xff\xff\xec\xb2\x24\xbf\x18\xee\x00\x00" func epochsFlowepochCdcBytes() ([]byte, error) { return bindataRead( @@ -338,7 +338,7 @@ func epochsFlowepochCdc() (*asset, error) { } info := bindataFileInfo{name: "epochs/FlowEpoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x75, 0x50, 0x41, 0xe9, 0xc2, 0x77, 0x1a, 0xf4, 0xf8, 0x51, 0xc6, 0x9d, 0x7a, 0x2a, 0x1a, 0x48, 0x2, 0xe, 0x4a, 0x1f, 0xb1, 0xab, 0x6, 0x60, 0x99, 0xe4, 0xfd, 0xaa, 0xaf, 0x63, 0x4f, 0xbd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x40, 0x2e, 0x25, 0xff, 0x98, 0x97, 0x9a, 0x8e, 0x6b, 0xe4, 0x86, 0x76, 0x1a, 0x86, 0xd1, 0x16, 0xe7, 0x2c, 0x85, 0xba, 0x79, 0x3b, 0xf8, 0xff, 0x5, 0x75, 0xb4, 0x3c, 0x2c, 0x5a, 0x4f, 0xf9}} return a, nil } From 1f635156b348a418c12429e1664087786365c5c9 Mon Sep 17 00:00:00 2001 From: Khalil Claybon Date: Mon, 29 Jul 2024 12:45:41 -0400 Subject: [PATCH 160/160] use access self on admin commands --- contracts/epochs/FlowEpoch.cdc | 6 +++--- lib/go/contracts/internal/assets/assets.go | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/contracts/epochs/FlowEpoch.cdc b/contracts/epochs/FlowEpoch.cdc index 7cf01d810..084d4232a 100644 --- a/contracts/epochs/FlowEpoch.cdc +++ b/contracts/epochs/FlowEpoch.cdc @@ -498,7 +498,7 @@ access(all) contract FlowEpoch { FlowEpoch.account.storage.save(enabled, to: /storage/flowAutomaticRewardsEnabled) } - access(all) fun emitEpochRecoverEvent(epochCounter: UInt64, + access(self) fun emitEpochRecoverEvent(epochCounter: UInt64, startView: UInt64, stakingEndView: UInt64, endView: UInt64, @@ -544,7 +544,7 @@ access(all) contract FlowEpoch { /// Performs sanity checks for the provided epoch configuration. It will ensure the following; /// - There is a valid phase configuration. /// - All nodes in the node ids list have a weight > 0. - access(all) fun recoverEpochPreChecks(startView: UInt64, + access(self) fun recoverEpochPreChecks(startView: UInt64, stakingEndView: UInt64, endView: UInt64, nodeIDs: [String], @@ -573,7 +573,7 @@ access(all) contract FlowEpoch { /// Stops epoch components. If the configuration is a valid configuration the staking auction, /// qc voting and dkg will be ended depending on the current epoch phase. - access(all) fun stopEpochComponents() + access(self) fun stopEpochComponents() { if FlowEpoch.currentEpochPhase == EpochPhase.STAKINGAUCTION { /// Since we are resetting the epoch, we do not need to diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 71762786d..db1fec833 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -12,7 +12,7 @@ // StakingProxy.cdc (5.71kB) // epochs/FlowClusterQC.cdc (19.005kB) // epochs/FlowDKG.cdc (18.691kB) -// epochs/FlowEpoch.cdc (60.952kB) +// epochs/FlowEpoch.cdc (60.955kB) // testContracts/TestFlowIDTableStaking.cdc (9.241kB) package assets @@ -322,7 +322,7 @@ func epochsFlowdkgCdc() (*asset, error) { return a, nil } -var _epochsFlowepochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x7b\x73\x1b\x37\xf2\xe0\xff\xfe\x14\x88\xaf\x2e\x21\x37\x14\x1d\xdb\x57\x5b\x5b\x3a\xcb\x7b\x8a\x24\x3b\x2a\xc7\xb6\x6c\x29\xd9\xab\x4a\xa5\x62\x70\x06\x14\xb1\x1a\x0e\x68\x00\x23\x99\x71\xfc\xdd\x7f\x85\xc6\xfb\x31\x43\x52\xb6\x93\xcd\x56\xf8\x8f\x65\x12\x68\x34\x1a\x8d\x46\xbf\xd0\xa0\xcb\x15\xe3\x12\x3d\xe9\xda\x4b\x3a\x6b\xc8\x05\xbb\x22\x2d\x9a\x73\xb6\x44\x77\xa3\xef\xee\xde\xb1\x2d\x1b\x76\x13\xb5\xb2\xff\x8f\x5a\x9c\x1e\x5f\xe0\x59\x43\xce\x25\xbe\xa2\xed\x65\xd0\x34\xfe\x21\xea\x73\xd4\x74\x42\x12\xfe\xea\x28\x68\xee\xbe\x8b\x5a\x1e\x3f\x7b\x1a\xb4\x39\x7e\xf6\x34\xfa\xf5\x09\x21\x22\xf8\x59\xfd\xf7\xee\x9d\x3b\xf7\xee\xa1\x8b\x05\x41\x92\xad\xf6\x1a\x72\x4d\x1a\x24\x96\x98\x4b\x54\xb1\x56\x72\x5c\x49\xb4\xc4\x2d\xbe\x54\xb8\xca\x05\x41\x0d\x9d\x93\x6a\x5d\x35\x04\xb1\x39\x22\x2b\x56\x2d\xc4\x14\x9d\xb6\x00\x7e\xa2\x40\xe9\xef\x10\xe6\x04\xda\x8b\x25\x6e\x1a\x22\x24\xea\x5a\x2a\x55\x1f\x49\x97\x04\xdd\x2c\x88\xf9\x9d\xd6\xa4\x95\x54\xae\x91\x54\x93\x47\x23\xe8\x43\x54\x4b\x05\xac\x25\xf2\x86\xf1\x2b\xc4\x56\x84\x63\xc9\xb8\x18\x23\x2a\x90\x90\x58\xd2\x6a\x8a\x5e\xda\x6f\xd1\x12\xaf\x11\x6b\x9b\x35\x6a\x08\xbe\x26\x88\x71\xf4\x6f\x46\x5b\x18\xc0\x80\x50\xd0\xb0\xd4\xd8\xa1\x19\xeb\xda\x1a\x73\x4a\x44\x0a\x64\x46\x10\xf9\x37\xa9\x24\xa9\x51\xdd\x71\x35\x69\xdc\x9a\x4e\x73\xc6\xd1\x35\xe6\x94\x75\x42\x01\x5b\x52\x51\x93\x25\xc1\x2d\xeb\xb8\x98\xa0\x59\x27\xd5\x70\x6b\xc4\xc9\x12\xd3\x16\x99\xd1\x93\xe9\x75\xad\xa4\x0d\xfc\xa0\x61\x92\xb6\x16\xd3\x3b\xf7\xee\x29\x80\x27\x9e\x70\x62\xd5\x50\x89\x68\x2b\x19\x7a\x88\x56\x0b\x2c\x88\xd8\x57\x4d\x7e\x3b\xb8\xf5\x07\xba\xa3\x93\xb3\x97\x47\xdf\xa1\x17\x68\xf3\xe7\x37\xd7\xf8\xeb\xfb\x68\x3a\x9d\x42\xff\x3d\xf5\x41\x96\x75\xe1\x7f\xbf\xed\xa1\x73\x22\xbb\x15\x52\x7f\x1d\xb1\xe5\x92\x4a\x45\xbc\xbd\xdf\x7e\x73\xbd\x3e\x0a\x69\x05\xe1\xfe\x18\xa1\xf3\x8b\xc3\x67\xa7\x2f\x9e\xa2\xb3\xef\x0e\xcf\x4f\xd4\x97\x2f\x58\x4d\x3c\x5f\x00\xd9\x80\xc4\x92\x21\xd1\xcd\x96\x54\x2a\x36\x01\x3c\x39\x79\xdb\x11\x21\x05\xac\xa0\xa2\xfd\x8b\x93\xff\x7f\x61\x16\x40\x2f\xb2\x82\x27\x17\x54\x68\x5a\x4f\xd1\xa1\xd4\x6b\xd4\xd6\xc0\xb1\xee\x97\x09\x7c\x0d\x0b\x95\x6e\x12\x4e\x04\x6b\xae\x89\x50\x2d\x14\x38\xd6\x49\x21\x71\x5b\x2b\x04\x32\x44\x70\x5b\xa3\x9a\x48\xc2\x97\xb4\xd5\x5d\x52\x46\xb1\xa8\xb6\xe4\x9d\x74\xbb\x6a\x0a\xfb\xb4\x38\x3c\x59\x52\x29\x3c\x76\x7a\x49\x04\xe1\xd7\xb4\x22\x88\x5c\x93\x56\xb7\xc5\xb4\x75\xd3\x1d\x1c\x53\x0f\x38\x41\x37\x0b\x5a\x2d\x10\x6d\xa9\xa4\x58\x1a\x54\x25\xc7\xad\xa0\x92\xb2\x56\x11\xdb\xcc\x57\x63\xa5\xc7\x3d\x03\x2a\x9a\xc5\x7b\x30\x46\xe7\x27\x17\x3f\x9c\xf9\x95\xfb\xd7\x82\xb4\x01\x51\xd1\x8c\x5c\xd2\x56\x83\x5e\x61\x2e\x69\x45\x57\xb8\x95\x02\xb9\x0d\x6c\xd1\xd1\x7b\x83\xc8\x29\x3a\xd6\x7b\x53\x01\x51\x10\xfd\xe2\x88\x04\xc6\x8a\x93\x95\xea\x95\xcf\x0d\xa4\x96\x6e\xdb\x35\x98\x4f\x50\xc5\x9a\x86\x54\x6a\x5a\x20\x79\x58\x4d\x84\xe5\xa4\x6b\xa6\xe6\x6e\x60\x50\x8e\x2a\x2d\x7b\xbf\x12\x88\x33\x26\xd1\xdb\x8e\xf1\x6e\x89\x2a\xc2\x25\x9d\xd3\x0a\x4b\x02\x2b\x5c\xb1\x56\x90\x56\x68\x71\xa1\xe1\xf1\x4e\xcf\xa9\xa6\x42\x72\x3a\xeb\xd4\x56\xb9\x22\x6b\x74\x49\x5a\xc5\xc8\x8a\xa4\x2b\xce\x24\xab\x58\x83\x46\xc7\xcf\x9e\x8e\x81\x9d\x89\x44\xdd\x0a\xfa\x71\xdc\xd6\x6c\xa9\xe0\xcd\x08\xae\x58\x3b\xb5\xc4\x84\x89\xc3\x5c\x01\x8a\xde\x0f\x15\x5b\xae\x1a\x22\x87\xd8\xd6\xf1\x8d\x5b\x43\xbd\x87\x7b\x79\x07\x40\x29\xaa\xcd\x71\x25\x85\xde\x1e\x5a\x62\xaf\x38\xab\x88\x10\x86\x67\x14\xbc\x0d\x6c\x63\x30\x32\x03\x46\x4c\xf3\x70\x8c\x8e\x5e\x3e\x7f\x7e\x7a\x71\x71\x72\xbc\x89\x71\x26\xa1\x98\x57\xc7\xc3\xbc\x6b\x9a\xb5\x5d\xf9\x1a\x06\xcb\x86\x4e\xf6\xd5\x21\x9a\x63\xda\x74\x1c\xc4\x07\x69\x25\xe1\xf1\x38\x73\xc6\xc3\x09\x00\x1d\x58\xc2\x50\x7a\xc6\x35\xac\xbf\x9a\x31\x96\xdb\xb0\xb4\x1a\x57\x23\x69\x57\xcb\x11\xb4\x5b\x01\x6f\x2b\xb2\xd6\x1d\x27\x6e\x33\x0a\x84\x51\xc5\xa9\xa4\x15\x6e\x1c\xde\x8a\xe1\x6e\x68\xd3\xa0\x0a\x77\x42\xc3\xa8\x16\xea\x20\x92\x0c\x2d\x70\x23\xa7\x77\xee\xe0\x4a\xad\xcf\x08\x37\xcd\xd8\x33\x80\x3a\xb7\xf5\x3a\xbc\xbf\x73\x47\x09\xfe\xb0\x15\x69\xbb\xa5\x5e\x25\x58\x9d\x7d\xf4\xc3\x69\x2b\xff\x81\xde\xdf\xb1\xa7\x44\x04\x52\x91\xca\x88\xe9\xc3\x1f\x8e\x2e\x4e\x5f\xbe\xe8\x6f\x07\x67\x0b\xc8\x85\x0d\x6d\x34\x1b\x40\xa3\x0f\x3d\x08\xaa\x93\xe0\x35\x6b\xb6\x41\xef\xc5\xcb\x17\x27\xfd\xbf\x1e\x69\x09\xc0\xf8\x50\x13\xbb\xa7\xfb\xd1\x7e\x47\xaa\x0e\xc4\x48\x6f\x93\x1f\x09\xd7\x82\x62\xb0\xd5\x21\x7c\x11\x4e\xfd\x9e\x51\xd5\x8c\xb0\x95\x6a\x2b\xc7\x1b\x95\x0a\xd8\xd2\x4a\xae\xdc\x18\xc9\xe0\xd7\xda\x33\xb0\x70\xe0\x24\x43\x18\xb5\xe4\xc6\xb0\xa3\x61\x50\x7b\x62\xe1\xae\xd2\x42\x49\x6f\xce\x8c\xfc\x30\xa6\x3e\x71\x00\x99\xd1\x1d\x37\x1d\x8b\x6b\xc5\x3a\xd8\x4f\x56\x02\x57\x1d\xe7\xaa\x97\x1e\x0f\xb6\x09\x15\x7a\x2b\xc3\xd9\x64\xfb\x9b\x7e\x7a\x51\xff\xfe\x7f\x26\x39\xe4\x39\xe5\x42\xa2\x6b\x4a\x6e\xd0\x88\xb6\x4a\x26\xd3\x6b\x32\xb6\x22\x29\x1a\x67\xea\x3a\x43\xa7\x1f\x29\xb9\x19\x00\xdc\xe0\x6d\xe1\x7e\x25\x52\x52\xf9\x91\xcc\x0f\x87\xfa\xfb\x93\xb6\xfe\x64\xa3\x86\xb3\x69\x71\x33\x04\x97\x49\xdc\xa0\x27\xdf\xbf\xfc\x17\xa0\x43\x6a\x34\x5b\x23\xdc\x34\xe6\x38\xd2\x7a\x48\x43\x2e\xb5\x0e\x55\x5c\x22\x3f\x98\x54\xc0\xce\x01\xcc\x3e\xfa\xe1\x09\x7d\xd7\x33\x9c\xe8\x56\xab\x66\xad\x30\x57\x23\xc1\xe0\x45\xc8\x51\xd7\x53\x35\xe5\xda\x1c\x15\x9c\xdc\x60\x5e\x1b\x21\x0a\x52\x6d\xa6\x04\x29\xad\x1d\xa0\x15\x27\xd7\x4a\x13\x4f\x20\x01\x8a\x4a\xa4\x9d\x03\x0e\x7d\x68\x82\xb5\xa3\x50\xed\x1f\x88\x75\x12\xe1\x44\x0d\x1c\xa6\xcc\x6b\x0d\xcb\x8f\xa9\x7e\x19\x17\x37\x6e\x41\x3b\x4b\x37\xee\x4d\xff\x81\x09\xdd\x1d\x58\xa3\xb2\x9e\xba\x43\x5a\x93\x10\x38\x83\xfe\x4a\xea\x3e\x2d\xaf\x5b\x55\x6c\xa9\x18\x37\x98\x4b\xdf\xde\x56\x03\x6e\xb1\xb5\x13\x90\xe8\x79\x27\xa4\x22\x28\x6b\x09\xba\xe4\x04\xeb\x63\x15\x83\x88\x89\x80\x0d\xca\x88\xe9\x96\x22\xe1\x74\x9b\x79\xa2\x1b\x2a\x17\x6e\x07\x20\xda\xce\x19\x5f\xe2\x78\xe3\x86\xec\xb8\x1f\x7d\xab\xfa\x9c\x1e\x4f\xdc\x9e\xbf\x22\xeb\x89\xd5\x3c\x4a\xff\xc7\x75\xcd\x41\x25\xe2\xac\x21\x93\x08\x94\x05\x11\x60\x30\x41\x37\x84\x5e\x2e\xe4\x04\xf6\xe5\x92\x71\xe2\x71\x82\x91\xdb\x39\xdb\x47\x3f\xe5\xbe\x82\xe9\x0b\xf3\xeb\xcf\x3b\x4b\xc9\x12\x17\x7c\x12\x31\xd9\x0f\x78\x83\xc4\x52\xcb\xaf\xd5\x6b\x84\x85\xa0\x97\xed\x52\x71\x42\x1f\x8b\x9d\x60\x65\x45\x37\x04\x1a\x99\xc3\xab\xa1\x42\x46\x30\x39\x59\x71\x22\x88\x52\xc0\x14\x2b\x3a\xf0\x5a\x47\xd7\x7b\x46\xb1\x04\xa8\x66\x8a\x2d\x4e\x8f\x85\x19\xdc\xe8\x8f\x0b\x1c\x43\x34\x20\x26\x9a\x9d\xb4\x51\xa0\x17\x4f\x0b\x55\x30\x18\x02\xbe\x35\x7a\x85\xf1\xd9\x08\xb3\x8a\xce\x85\x33\x35\x7f\x95\xd6\x4f\xb0\x8e\x57\xe0\x6d\xd1\xca\x7f\x4b\x84\xd0\x56\x81\xc2\x4d\x4d\x97\xe0\x9a\x70\x24\x88\xb1\x5e\x10\x6e\x2e\x19\xa7\x72\xb1\x04\xec\x22\x80\x43\x9b\x5f\x7d\xf4\x10\xe7\x30\xe4\x3e\x3a\x97\xca\xca\x2a\xe0\x54\x13\x5c\x37\x60\xba\xb2\x39\x22\x6a\x09\xb4\xa2\x6c\x16\xe0\xf8\xd9\x53\x6f\xc6\x48\xa6\x44\x80\x55\x6e\x6b\xdb\xc6\x62\x10\xc1\x0e\x6c\x57\x23\xd6\x8e\xdd\x48\xda\x2f\x42\x2a\x3a\xa7\x06\x0a\xe1\x4b\x40\x00\x7b\x4b\x4b\xb3\x63\xdb\x2d\x67\x84\xc7\x1b\x1a\x6c\x07\xac\x51\xf3\x1a\x39\x62\x33\x25\x86\x15\xf8\x40\x62\xaa\x15\x14\x04\x2b\xbd\x7c\xd6\xb0\xea\x4a\xaf\x32\x80\x36\x62\x2c\x02\x6d\x45\x1a\xba\xa4\xd7\xa4\x75\xc4\x99\x20\x2a\x51\x85\x5b\x24\xf0\x9c\x34\xeb\x1e\x23\x24\x54\xad\xd4\xe7\xf8\xd9\x53\xd0\xb5\xef\x3f\xc9\x37\x4a\xda\xe6\xc1\x16\x6d\x1e\x16\xda\xe4\x87\x21\xe6\x97\x44\xa2\xba\x33\x36\x68\x99\x4d\x26\x8a\xea\x82\x54\xac\xad\x3d\x6f\xeb\xae\xc7\xa6\x67\x8e\x47\x32\x84\x3a\x4b\xc1\x03\xd8\x37\x44\xb4\xc4\x7a\xb0\xbd\x15\x27\x15\x15\x0a\xb1\x1f\x5a\xfa\x0e\xfa\x27\xe3\x9f\xb4\xf5\x05\x5d\x12\x3b\x7c\xef\xd1\x5b\x34\x6e\x87\x8f\x5e\x70\x97\xba\xc3\xd7\x81\xf4\xae\x2e\x7f\x00\x07\x80\xc0\x19\x09\xd0\x94\x60\x09\x2c\xf3\x9e\x89\x3b\xb8\x0b\xac\x94\x61\xd2\xfa\x1d\x33\x74\x32\x9b\xf9\x7c\xc4\xd9\x4c\xde\x76\xb8\xb1\x0c\x69\x3b\xd1\xfc\x88\x76\x0a\x57\xb0\x47\x01\x91\x6d\x8f\xe7\x0b\xd0\xeb\x44\xd7\x48\x7b\x44\xbc\x3a\x42\xf8\xf2\x92\x2b\xed\xd3\x38\x3e\xd4\x1c\x13\x99\x6e\x05\x74\x04\x2b\x14\xd6\x81\xc0\x45\x9c\x54\x84\x5e\x13\xad\x26\xe2\xc0\xbb\x63\x05\x76\x04\xe5\xd5\x11\x02\x17\x9d\x56\x7c\x0b\x4e\x1c\xd0\x0a\x41\xbc\xd9\x23\xc3\xf8\x69\x88\x08\x66\x6d\x85\x78\xaf\x54\x7f\x75\x54\x92\xeb\x9a\x16\x6a\x45\x56\xdd\xac\xa1\x95\x52\x1e\x84\xe7\x36\x23\x43\xb5\x47\x85\xb4\x15\xab\x95\x60\x12\x4a\x7f\x07\xf5\xae\x61\x37\x7b\x97\x2c\x3e\x94\xf8\x7a\x25\x19\x6a\xe8\x8c\x63\xbe\x06\xb7\x48\x8b\x16\xe4\xdd\x9e\xe9\x1e\x0b\xc4\xa7\x9c\x29\x31\xeb\xc6\x56\xdc\x2b\x9d\xbe\x60\xc8\x3f\x41\x73\xd6\x34\xec\x46\x1b\x0e\xe0\x33\x6c\x6b\x7a\x4d\x6b\xc5\x34\x0a\x61\x07\xb2\xbe\xba\x3c\xeb\x66\xcf\xc8\x5a\x91\x41\x1f\x1c\x3f\xf7\x6b\xc0\xaf\x49\xc5\xae\xe1\xd0\x1a\xda\x88\x58\x2d\xa8\x6a\xa7\x3b\xc1\xa6\xc4\xfa\x8c\xa3\xd6\x37\x27\xed\x09\xed\x5c\x40\xde\x27\xe6\x9c\x42\x0e\x83\x4b\x02\x4e\x18\x65\xf4\xb6\xe8\xe4\xc9\x73\x08\x25\x10\x63\x73\xf4\x0f\xd5\x09\x3d\x8a\x6a\xc0\x69\x4d\x0a\x86\xac\x62\x42\x03\x22\x1a\x5a\x1d\x1d\xca\x96\x70\x28\x88\x95\x56\x0e\xa7\xe8\x62\xa1\x66\x91\x52\xc0\x2c\xba\xa6\xb8\x3b\x45\x23\x2f\x92\x64\xa8\x5b\xd5\x06\x71\xca\x51\xc3\x2a\xdc\xf8\xb6\x7a\x4e\x56\x33\x01\xe3\xde\x60\xe6\x90\x30\xce\x6f\x2c\xf1\xa0\xe2\x6f\x97\x69\xb4\x51\xbc\x98\x96\xeb\x93\x3f\x4c\x63\x07\x15\x14\xdc\xed\xff\x7d\x5a\x7a\x0f\x75\x3f\x5a\x49\xef\x85\xfb\x51\x3a\x7a\x0c\xf5\x77\x54\xd1\x6d\xb7\x4c\x38\x1f\x3a\x24\x95\x74\xb2\xe2\xe9\x2f\x6d\xfb\x2f\x6d\xfb\x2f\x6d\xfb\xe3\xb5\xed\x01\xe9\xf0\xea\x48\xa0\x15\x86\xd3\xcc\x70\x62\xdf\x31\x0b\xb1\x4d\x41\x80\xf1\xac\x96\x05\x5e\xb8\x3d\x36\xdf\x9b\xe1\xb6\x8e\xc6\xe8\x84\x0d\x45\x09\xbc\x24\x3e\x46\xa2\x34\x24\x1b\xb7\xd7\x27\x6d\x41\x51\xfb\x91\x49\x72\x8c\x25\xee\xd7\xd7\x6c\x8b\x92\x84\x00\x9e\x0e\x34\xb6\x2d\xa7\x17\xc1\x39\xd2\xaa\x43\xb3\xb6\x31\x4b\x35\x6b\x4e\xf6\x40\xcf\x70\x2a\x20\x88\x6e\xd1\xc1\xd1\x3c\xef\x1a\x35\xf2\x67\x51\xe1\x02\x98\xe8\xe2\xe5\xf1\xcb\xd1\xc9\x93\xe7\x13\xf4\xbf\xfe\xfe\xe0\xfe\xc3\xf1\xbe\x39\x57\x09\xa2\xf5\xde\x63\xda\xd6\xe4\x1d\x5a\xe2\xd5\x2a\x94\x25\x25\xd5\x2f\xf3\x7e\x1e\x59\x29\x6e\x58\xae\x42\x4b\x22\xb1\xd2\x40\x10\x9e\x81\xb3\x35\x54\xd7\x63\x9b\xe8\xb0\x69\xd0\x82\x0a\xc9\x38\x84\xbc\xb4\x5a\xe0\xba\x43\x42\x08\xe3\xca\x12\x23\x7c\x89\x5b\x20\x6c\xa6\xd5\x08\xc9\xbb\xca\xa8\x35\xcf\x6d\xd7\xf7\xf9\xf2\x6a\x6f\xe9\x9c\x06\xba\x4d\xec\x62\x0e\x81\x36\x44\xa6\x2a\x4e\xe1\x48\x51\x47\x87\x5e\x59\xe6\x2c\x08\xcb\xbe\x7a\x2e\xc2\x79\x74\x4b\x23\x28\x00\xf6\x78\x18\xd4\x1c\x6c\xae\xc2\x30\xc2\x42\x62\x1e\x69\x0d\x43\x4a\xc3\x76\x20\x49\x1c\xdc\xd8\x08\x30\x0b\x30\x0d\x21\xab\xda\x9d\x6c\x1a\xa0\xe0\xce\x57\x7b\xca\xb9\xf2\x37\xaf\xe5\x35\xe6\x45\x3f\x7e\xc9\x72\x53\x0d\x10\x5e\xaa\x95\x4f\x07\x93\x4c\x1f\xd1\xc1\x26\x03\x7d\x45\x9d\x72\x54\x8a\x20\xdc\xd2\x8b\x85\x86\x7f\xa8\xc1\x97\x55\x49\x83\xe3\xb7\x9c\xe0\xab\x9a\xdd\xb4\x3f\x27\x58\x72\x5c\x5d\x09\x44\xe7\x8e\x22\x0b\x7c\x4d\xb4\x5f\x21\x08\xa3\x0c\xae\xab\xc7\x44\x9c\x61\x5a\xef\xa3\x6f\x19\x6b\x72\x62\x30\x7e\x89\x5b\xfa\xab\x3e\xc9\xd8\xdc\xfb\x3a\xbd\x9a\x06\xf6\x96\x91\xbe\xb1\x1d\xef\x72\x60\x74\x5c\x0a\x71\xd6\x29\x33\x8a\xcd\xd4\x69\xc4\x38\xec\x12\xa7\x5f\x0d\xec\xc0\x6d\xdd\xab\x39\xfa\xaf\xb4\xd5\x7f\xe4\xad\xfe\xc0\x06\xf7\x69\x77\x36\x84\xda\x4b\xa9\xad\xbc\x00\xf9\xf0\xe1\x41\x82\x85\x60\x15\x85\x63\xcf\xd9\x6e\xc7\x41\x9e\xc8\x33\xb2\x46\x4f\x5d\x9e\x48\xe2\x9c\x01\x9b\xd1\x28\xc1\x4e\x3d\xd3\xee\x11\xa7\x80\x49\x25\xfa\x0b\x07\x48\x70\x72\xc0\x3e\xb5\xba\x3a\x56\xea\x7a\x4d\xde\xed\xa3\x86\xb4\x97\x72\x81\xf6\xd0\xfd\x5e\x02\xd4\x57\x97\x89\xf1\xef\x9a\xd2\x96\xca\x51\x66\x09\xa2\xf0\x13\x8a\xb8\xf4\xa7\x54\x5c\x25\xbf\x93\x34\xb0\x9a\xf6\x2e\xc8\x8f\xa4\x51\x7f\xf8\xce\x7d\x76\x71\xe1\xc7\x1d\xb7\x73\x0f\x45\x7d\x32\x5a\x8e\xc3\x93\x4a\xd3\xab\x99\x4f\xad\x0d\x7e\x60\xcf\xa0\xbc\x09\x9c\x3d\x07\x40\xde\xc2\x8f\x96\xb2\xaa\x85\xfd\x3b\x6f\x66\x08\x8c\x0e\x2c\xa9\x8b\x90\x02\x2a\x6b\x70\xc1\x17\x79\x87\x90\xe2\xe8\x20\x5a\x80\xbc\x71\x24\x0f\xd1\x01\xfa\xe9\xe7\xbe\x36\x20\xa9\xd0\x01\x9a\xe3\x46\x90\x12\xc1\x92\x45\x04\xd2\x25\xdf\x15\xba\xb9\x25\x54\xed\xdd\x7f\xf2\x86\x66\xdd\xd0\x81\x5d\x41\xd7\xe4\xc3\x9d\x6c\xe3\x54\xb0\x68\x63\x34\xef\x5a\x54\xb1\xd5\x7a\x34\xde\xcf\xb4\x93\x70\x04\x4e\x64\xc7\x5b\x18\x68\x5b\xb0\x82\xc8\x8b\x80\xb2\xa3\x5f\x50\x4b\x6e\x12\x3e\x1f\x27\xc3\x94\x96\xc7\xf7\xda\x61\xe4\xd7\xe1\xaa\x8d\x7e\x31\x67\x89\x3b\xb1\xb6\x3c\xd7\x8a\xe8\xa5\x0c\x91\x80\xde\x19\x49\x60\x1b\x87\x62\x70\xdc\x0d\x8c\x6e\x59\x2d\xf8\xdf\x0e\xe3\xba\xad\x2f\x46\x6f\xab\x21\xc9\x50\xc4\x20\x62\xc8\xb7\xd5\x2e\xab\x72\xfc\xec\x29\x08\xfd\x67\x64\x3d\xba\xca\x64\xcc\x00\x47\x5f\xc5\xec\x8c\xe2\xa4\x24\xc7\xb3\x36\x9f\x07\x72\xc6\x8d\x71\xaf\xac\xf2\x19\xa4\xa3\xb5\x97\xde\x0a\x39\xac\x97\xb4\xbd\x77\xef\x5e\x9f\xa6\x7e\xc4\xda\x39\xbd\x0c\x90\xb2\x67\xa6\xf6\x37\x28\x5d\x43\x29\x94\x90\x53\x87\x5b\xa4\xb4\x76\xbe\x49\xbf\x6b\xbb\xa5\x92\x47\xe2\xb4\x85\x9d\x96\xab\x93\x61\x07\x43\xb1\x17\x71\x9f\xd1\x2f\x7a\x58\xdb\xb7\x48\xb6\x64\x1c\x74\xa0\xfb\x94\xd6\x69\x60\x56\xdb\xea\xc9\xf1\xcc\xce\xa3\xb4\xa3\x1d\xa7\x18\x77\xde\x71\xae\x71\xe7\x5b\x4e\x1a\x94\xe7\xfa\xea\x52\x7b\x6a\xb6\x98\xaf\x75\xbd\xec\x38\x53\xdb\x6d\xc7\x39\xda\x6e\xbb\xcd\xce\x2b\xc5\x56\x0d\x76\x53\xdd\xc8\xb0\x47\xb9\xe6\xa1\x30\xbd\xff\xf7\x4d\x13\xcd\x3a\x2a\xf9\xdf\x2d\x53\x30\x7d\x13\xce\xba\xab\x83\xc0\x77\xef\x9d\xb8\x36\x3d\x74\xb2\xb2\x24\x4a\x89\xd4\x69\xab\x61\x5e\xd7\x0a\xaf\x95\x51\x46\xdb\x8a\x13\x2c\x88\x40\xe4\x9a\xf0\x75\x21\x2b\x0c\x42\x24\xd7\xb8\xe9\x08\x08\x95\xae\x91\x74\xd5\x50\x2f\x44\x20\xb9\x4c\x86\x59\x67\x92\xa1\x4b\x22\x03\x87\x1f\x0c\xd5\x4b\x60\x05\x40\xf7\x3c\x35\xc8\x9c\x11\x5e\x91\x56\xe2\x4b\x92\x5b\x80\x05\x42\x0f\x01\x18\xfd\x82\x56\x19\xb4\x22\xbd\x87\xa0\xa0\x83\x00\x4a\x89\xec\xa0\x5f\xf7\x88\xb6\xc9\x46\xc9\x30\x19\xd8\x4b\x93\x41\x06\x9c\x6c\x45\xbd\x2d\x05\x64\xf2\xcd\x4e\x72\xa6\xef\xa7\x2d\x37\x72\xfe\xe5\x4e\x1b\x62\xb3\x02\xb9\x61\x75\x87\x7e\xee\x3f\x72\xf5\xf9\x18\xfa\x90\x4d\x46\x2d\x5d\x2a\x4d\xca\xb5\x3b\x71\x52\x06\x32\xc7\x6d\xc8\x04\x67\x3e\x62\x08\xb9\x52\x38\xbd\xc1\x1f\x85\x46\xca\x0c\x35\xe7\x50\x1a\xf5\x1f\xfb\x01\x74\x38\x30\x44\xa6\x26\x73\x1d\x44\x40\x9c\xcc\x09\x27\x6d\x65\x1d\x5d\xd6\x64\xc1\x66\x50\x21\xf1\x72\x65\x13\xdb\x4d\x37\x07\x18\x37\x0d\x9a\x77\x12\xb2\xf2\x63\x5c\xc5\x14\x9d\xce\xd1\x1b\xe3\x8d\xd6\x89\x10\x00\xf8\x0d\xcc\xb1\xcd\xfc\xdc\x72\x41\x5a\x07\x17\x6e\x3c\x24\x93\xa7\xc2\xc4\x13\x66\xeb\x7d\xdb\xd0\x75\x48\xfc\xde\xa0\xf5\xcd\x2f\x2c\xfa\xe8\x6b\xef\xca\xff\x1b\x1a\xe5\x48\xed\x71\x32\x37\x7f\x8e\x23\xd8\x7d\xfe\xc9\x0b\x58\xc2\x5e\x05\xc8\x8d\x66\xc3\x41\xfd\xf1\x82\xd4\x55\x52\x27\x91\x83\xdc\x71\x6f\x16\xc8\xb8\xe9\x92\xf5\xeb\x85\xeb\x67\xd8\x0b\xd9\x91\xba\x0c\x7a\xf7\x58\x44\x01\x07\xb7\x26\x65\x47\xe1\x11\x5b\xae\x3a\xe9\xb8\x49\xdc\x50\x59\x2d\x74\xc4\x5e\x21\x36\xc3\x02\x32\x77\x10\x9b\xcf\x05\x91\xda\x0f\xe4\xd1\x34\xa4\xb9\xe7\xbb\x4d\x7b\x0f\x86\x4b\x22\x2f\x42\x96\x79\xc2\xb8\xd5\x1e\x73\xfe\x70\xaa\x87\xfd\xa3\xdf\xf2\x9b\x26\x8c\xa7\x95\xf4\x61\xee\xb3\xfd\x22\x16\x2c\x1d\x21\x29\x73\x4c\x0a\xcb\x3a\x29\x92\x39\x95\xf1\x09\x5e\x07\x8e\xef\x0a\xad\xfc\x18\x7a\x5f\x1d\x15\x7c\x19\x85\xb9\xc7\x7b\xb0\x5f\x4c\x7e\xc7\x9a\x5a\xab\x23\x6f\xdc\x55\x97\xa9\xde\x5a\x6f\xec\xa6\x73\xee\x36\x27\xc6\x66\x0d\x71\x01\x86\x70\xab\x5a\x3f\xa0\x75\x3c\xfa\xe6\xd6\x02\xda\x37\x82\x79\x0b\xdb\xc8\xe8\x30\xf1\x8d\x2c\x2f\xfd\xb4\xe5\xd4\x32\xd9\x67\x3c\x15\x82\x2b\x38\x8c\x93\x70\x52\x31\xee\x52\xd7\x5d\xbc\x04\xd8\xda\x64\xa5\x05\x39\xf4\x5e\xee\x82\xd3\x4f\x8f\xa5\xa5\xb6\x56\x64\xfd\x70\xaf\x81\x21\x45\x01\x2c\xcc\xc7\xed\xe3\x38\x8a\xc3\x38\x6a\x69\x83\xe8\x5c\x1f\x32\xed\x57\x12\xcd\x59\x67\x02\x7b\x2e\x1e\xed\xc9\xe5\xe3\x3a\xca\xc2\xd3\x76\x2c\x7c\xa3\x4e\x4d\xa1\x63\xba\x97\x9c\xdd\x28\x31\x5f\x53\x38\xf0\x31\x5f\x3b\x68\x35\x23\x02\x29\xea\x81\xeb\x5b\xc7\xc5\x1b\x86\x6b\x85\x17\x68\x9b\xb0\xe7\xa3\xfb\x31\x54\x98\x16\x99\x74\x36\x7b\x3a\xf2\xcf\x8c\x7e\xd1\x13\xcc\x77\x71\xd4\xec\x9f\xc1\xde\xa0\x73\xe0\x1b\x4b\xb3\x63\x87\x35\xf8\xe8\x9a\xf9\xd4\x4c\x73\x6a\xa6\x39\x9d\x31\xce\xd9\xcd\xa3\x2f\xdf\x6b\xd8\x09\xe8\x0f\x8f\x47\x8a\xea\xfb\xba\xaf\x85\x7a\xae\xfb\x9e\x61\xb9\x48\xf7\x65\x32\xfe\x6b\x32\x47\x07\x05\x6c\x7e\x0a\xe7\xf5\x73\xba\xb7\xbd\x44\x0a\xe0\x4c\xb5\x0b\x2b\x6a\xf9\xe1\x4e\xfe\x97\xe9\xd9\xd2\x26\xdd\xa8\xe7\x58\x27\x06\x2c\x59\xad\xb9\x27\x76\x86\x99\xad\x6a\x62\xf9\x3e\xf8\x97\xb1\x46\x79\xbb\x82\xb6\x8e\xaf\x49\xba\x82\x2d\xb9\xf1\x3b\x37\xfa\x31\xa4\xdd\x8a\x93\xa2\x1f\x46\x87\x71\x43\x69\x8b\x0e\x0e\xd0\x37\xe8\xb7\xdf\xa2\xc6\xa3\x60\x14\xe7\xb5\x7d\x7c\xd0\x0f\x64\x0f\xdd\x47\x5f\x7e\x19\xc1\x28\x81\x78\x64\x40\xac\x38\x5b\x31\x41\xea\x10\xc6\x68\x3c\xde\xcf\xd6\xed\xee\x91\x16\x28\x40\xe3\x75\x1a\x48\x85\x1d\x6c\xaf\xef\xcf\x25\xb1\x37\x6d\x34\x70\xd3\x9a\x71\x77\x1d\x32\xbb\x86\x73\xb7\xb0\xe0\xb7\x65\x79\xdc\xc9\xc5\xe8\x79\x27\xb1\x24\x63\xf4\x99\xf8\xbf\xcc\xfc\x05\x4a\x97\xf6\x00\x16\x82\xc0\x8d\xb7\xf4\x07\xf5\x59\xa6\x4b\x75\x70\x50\x5a\xc1\x49\x4f\x67\x21\xc0\x80\xb2\xcb\xa5\x18\xd7\x23\x0d\xa7\xd5\x92\x8a\x25\x96\xd5\xc2\xa7\xc9\x19\x90\xe2\x6e\x06\xb3\x6f\x57\x86\x88\x6e\x9a\x7f\x84\x7e\xf9\xb4\x2d\xee\x39\x9b\xca\xf1\x3a\x48\x75\x1a\x8d\x6d\xa8\x27\x51\x6e\x75\x3e\x94\xcd\xc1\x5a\x9a\x0c\x65\x8c\x16\xe4\x9d\xda\xff\xaa\x03\x9b\xa3\x87\x0f\xd4\x69\xa8\x86\x50\x36\xd8\x88\x4e\x09\xba\xff\x77\x34\x5b\x4b\x22\x14\x77\xde\x7f\xf0\x0f\x34\xa3\x52\x8c\x23\xd0\x6f\xb8\x12\xfa\x92\xce\x1a\x83\xca\x1b\x23\x8a\x94\xc8\x31\x5a\xd7\xe8\x1f\x1a\x8a\xef\x09\x6a\x25\x34\xff\x9e\xdd\x80\xca\x11\x03\x79\xa4\x7b\x3e\x1e\x8d\xa7\x92\x7d\x4b\x2f\x4f\xda\x9a\xe2\xf6\x5b\x05\x64\x54\x82\xf2\x1d\xbd\x5c\xdc\x1a\x0c\x04\x64\x03\x32\xa2\x03\x43\xc5\xa9\xce\xef\xfd\x8e\xbc\x1b\xf9\x61\xc6\xd3\x8a\xb5\x15\x96\xa3\x9e\x36\xdf\xb3\x9b\xb1\x87\x5d\x64\xe6\x70\xb0\xa9\x09\x01\x1e\x1c\xa0\x87\x0f\x26\x77\xca\xec\xfa\x7a\xf7\xf5\xf3\xdc\x3a\xbe\x93\x1e\x12\xe1\xf8\xe9\x69\x11\xd8\x2a\x13\xb5\xea\xa7\xc7\x93\xe2\x1d\xbd\xec\x24\x87\x60\x6d\x2e\x72\x63\x83\xc1\x8d\x60\x40\xe9\x7c\x3b\x77\xa5\xdb\x59\xd3\x26\x9c\x3a\x04\xdf\xf8\x53\xfc\xdf\x7e\x04\x25\xa1\x82\x4a\x28\x81\x7e\x0a\xea\xdd\x1b\xa8\x29\x01\xa4\x74\xaa\x50\x36\x9c\xe2\x2d\xac\x5a\x07\x52\x4f\xed\x2e\xf7\x9f\x6d\x86\xfb\x8e\x60\x2e\x67\x04\xcb\xad\x87\x5c\xd8\x1e\xbb\x0f\xdb\x23\xca\xdf\x04\x3a\xdc\x86\xc1\x0b\x82\xbe\x67\xec\xd7\x76\x36\x3a\x30\x0e\x8e\x01\xc8\x9b\x16\xcc\x1b\xa2\x4e\xfd\x9b\x53\xd2\x18\xdb\x39\x1c\xd2\x91\x04\x56\xa5\xe7\x76\xb9\x92\x75\x1a\x36\x4c\x0b\xfc\x49\x5a\xbd\xf0\xff\xef\xb3\x96\x72\xed\x42\x7d\xfc\xf2\x64\xec\xa4\x76\xa1\xff\xdf\x34\xbe\x73\xaf\x8f\x0d\x7d\x01\xc5\xcc\x56\x4f\xcc\x26\xc6\x15\xc2\x0a\xf9\x99\xe1\x47\xa7\xe2\x47\xdc\xd0\x1a\x86\x8a\x7c\x4e\xa3\x00\xc3\x82\x21\xd4\xeb\xb0\x2b\x1f\x7a\x5b\x03\xb3\x3e\xba\x32\x98\x88\xe0\xe3\x7d\x74\xf7\x05\xb9\x31\x86\x05\x7c\xe5\xa4\x52\x7a\x1f\x15\x89\x6e\xa9\x38\xc2\x51\xa6\xad\x21\xd5\x4f\x13\x1c\x7c\xfd\x77\x93\x73\xf4\xce\x0e\xf8\x17\x02\x49\x31\xaa\x25\xab\xbc\xcc\x60\x86\x8c\x01\x8b\x85\xdf\xfc\xb7\x31\x59\x32\xbd\xcf\xca\x3c\x5b\x83\x81\x46\x8a\xbb\x76\xe1\xac\x96\xdc\xfc\x2e\xdc\x95\xc4\xf0\x12\x02\xee\xc0\x68\x96\x58\x01\xa7\xf9\xff\xff\xb7\xf1\xd9\x27\x15\x66\x11\xa5\xfe\x08\x5e\x0b\xf9\x4c\xf1\xdd\xe7\xe2\x35\x17\x45\x8d\x66\xbc\x03\x8f\x65\xfe\x6e\xcd\x67\xfa\xef\xfd\xdc\x1d\xfe\x31\xec\x76\xe4\x2d\x6f\x37\xc4\x34\x74\x71\xde\x7d\x9d\x84\x2b\x2c\x99\x8d\xc5\xeb\xcb\xf6\xa4\x04\x2c\x0f\x9e\x9a\xb6\x0d\xc3\xf5\xa3\x6c\x4a\xd6\x88\xbd\x67\x9a\xdd\x9b\x5b\x00\xd1\xc4\xb7\x1c\x43\xd9\x8a\x23\x37\xbd\x09\x92\x6c\x7b\xc8\x1b\x57\xab\x2f\xaa\x4c\x6e\x5e\x6c\x0e\x2c\xff\xa7\x49\x86\xdb\xb0\x7d\x3e\xfb\x78\xee\x3b\xd0\xf2\xc9\xf7\x2f\xff\x75\xde\x1f\x38\x56\x1b\x6a\x63\x2c\xf5\x3f\x8d\xa4\xc8\xc8\x3e\x1f\xdd\x7c\x74\x80\xee\x4f\xbf\x31\x7a\x98\x0e\xe4\xfb\x4d\x25\x6f\x08\x69\xd1\xaf\x84\x33\x10\x54\xac\x25\x1f\xb9\x42\x83\xc1\xf8\x08\xb1\xe2\x42\xdd\xbb\x87\x4e\x5a\xf0\xfd\x33\x8e\x6a\x2a\xe0\x4f\xdc\x49\xb6\xc4\x92\x56\x2e\x7b\xa1\xc2\x4d\xd5\x35\xb6\xce\x5a\x5b\xa3\x15\x5e\xc3\xdd\xb2\x8d\x8a\x9b\x81\x64\xb2\xce\xf4\x58\xf5\xe8\x17\x44\xf4\x5f\xe5\xa4\xb3\x0d\xf2\x44\x75\x29\x8a\x90\x9e\xe1\x76\x12\x24\x06\xb1\x82\x18\xd9\x08\xdd\x0b\xc5\x5e\xb2\x90\x25\x95\xe1\x3d\xd3\x93\x6b\xd2\xca\x51\xc9\xa9\x1e\x9f\xa1\x1b\x52\x82\xb7\xc9\xf9\x1d\xcc\x1a\xde\x98\x32\xd1\xd3\x3a\x4b\x9f\x88\xdb\xc1\xb5\xd4\xec\x8e\x8c\xfd\x6c\xba\xaa\x18\xb6\x2d\x5f\x1c\x0c\x5b\x6c\xba\x28\x86\xfa\x2f\x73\x15\x90\xda\xf1\xce\x54\x08\xa1\xff\x72\x90\xfd\x64\xc1\xc3\x90\x65\x90\x8f\x70\xd9\x08\x40\x7f\xe1\x4a\x73\xf9\x2a\x4d\x24\x42\xc6\x07\x07\xe9\xf0\x1b\xae\xe6\xe6\xe9\xc5\x73\x73\x95\xe1\xf4\x18\xd1\xd6\x2e\x62\x01\x65\x80\x3e\xc5\xab\x15\x69\xeb\xd1\xc0\x10\x23\x0d\x62\xdf\x80\x1a\xa7\xde\xd9\x0c\x6d\x45\xc1\xf8\x8e\x62\x98\xaf\x8d\xbe\xee\x65\xd7\xe8\x27\x97\xef\x12\x26\xf1\xa7\x43\x3c\xb8\xc5\x10\xa3\x07\xe8\x6f\x85\x71\xc6\x83\x03\x3d\xbc\xcd\x40\x0f\x07\x06\xca\x18\x46\xc9\x96\xf8\x12\x3b\xe4\xad\xc4\x42\x40\xb5\xf1\x12\x30\x6c\x9d\xbb\xf5\xdd\x05\x86\x50\x3e\xe5\xba\xbd\xbf\x02\x0e\x0c\x91\x37\x08\x2e\x6d\xbb\x89\x97\x5a\xb9\x7b\xa4\x46\x54\xe5\x6d\x4a\x12\x23\xff\x2e\xef\x17\x4b\x8f\xf0\x7f\x79\xdb\xd2\x05\xd9\x9c\x21\xfb\xfb\x3d\x28\xf4\x7b\xb0\x45\xbf\x87\x85\x7e\x0f\x07\xfa\xa5\xf2\x2e\xfe\x7f\x5f\x7b\x27\xfb\xa2\xff\xf6\x52\x3a\x14\x83\xd9\x57\x79\xaf\x50\xf4\xf9\xbf\x13\xe1\x57\xd6\x43\xee\xa1\x33\xc2\xe7\x8c\x2f\x05\x12\xb8\x55\x92\xae\x5a\x90\xea\x4a\x04\xf5\xef\xd8\x35\xad\x5d\x54\x2e\xca\xbf\x82\x5a\x34\x50\xcc\x8e\xb4\xa2\x33\x7e\x57\x7d\x09\x94\xb6\x97\xff\x37\x1a\x66\x0f\x5d\x80\x6b\x16\x8a\x8a\x5e\x2b\xdb\xd8\x38\xbb\x63\x88\x49\x9f\x43\x57\x41\xd0\x16\x34\x85\xd2\x0c\xb5\x80\x8b\xfd\x3a\xe2\x8e\x4d\x9d\x04\xf4\x18\x7d\xd3\x9f\x28\x13\xde\x97\x3d\xe3\xe4\x08\x66\x39\xfa\xec\x07\xfc\xf0\x51\xdc\x76\xcb\x97\xf3\xa3\xc2\xee\x3a\x6d\x65\x7f\xcb\x90\x3b\x4e\x5b\x39\xf6\x87\xd8\x6e\x4a\x7b\xbf\x8f\x22\x9e\xf7\x9e\xa3\xd2\xd7\xf7\x27\xb7\x70\x81\x59\x12\x85\x70\x0a\x31\x63\xf5\xb9\x7b\xda\x6a\xde\xf0\x12\x2b\x59\x04\x5d\x0d\xc3\x5e\x15\x8a\x98\x67\x50\xa7\x87\x22\x1b\x01\x87\x07\xc5\x29\xc5\x82\x75\x4d\x9d\x33\xd3\xad\x4e\x67\x1d\xe0\x2a\x07\x6b\x77\x38\xac\xa7\xba\xa4\x71\xf3\x2f\x87\xcd\x04\x15\x61\xfa\xa0\x18\x0e\xf7\x4a\xbc\x4f\x14\xf2\xb1\xce\xa2\x8d\xa3\x6c\xca\x9b\x63\xba\x09\x51\x63\x9a\xde\x18\xa3\xcb\x94\x47\x42\x6f\x2b\xa8\x97\x84\x74\xd4\x9f\xf1\xa8\xc6\xd1\x9d\x6d\xc8\xd6\xb3\x43\x20\xcc\x5d\xdc\x12\x05\x32\x79\x12\x05\x89\xf2\x59\x55\x11\xe1\x13\x79\x20\xe0\x8d\xf2\xc6\xe1\x74\xee\xf6\x4a\x57\xfb\x57\x24\xca\xce\x25\x5b\x09\x27\x43\x97\x2b\xd6\xaa\x21\x21\xbb\x54\x66\x69\xad\x81\x8c\x8c\x7f\x28\xd8\xc5\x71\x49\x06\x8d\xa1\x75\xc8\xd5\x57\x97\xae\xd6\x28\x69\x95\x10\xaf\x89\xd2\x1a\x21\x3e\xda\x16\x6a\x0b\x25\x45\x2b\xb2\x2c\x74\xc9\x56\xb6\x1a\x98\x99\xc1\xa8\x57\xfa\x20\x9d\x06\x71\x5b\x1f\x41\x01\x1a\xd0\x91\xb6\x15\x51\x7c\xa6\x0b\x19\x08\x22\xe3\x1b\xee\x13\xf5\x5b\xcd\x60\x19\x5b\x28\xa5\xc2\x8a\x70\x40\xbe\x84\x97\xe2\x11\x6e\x04\x9b\xa2\x7f\x11\xed\x96\x30\x7d\x75\x32\xe9\xc0\xf5\x18\xfb\xf1\xd3\xd4\x69\x25\x56\xa9\xac\x97\xb4\x1d\x8d\xa7\xa4\xad\x13\x6f\x79\xb2\xaf\x10\x69\x44\x49\x5a\x9b\xea\x2e\x95\x99\xac\x2b\x67\xa6\xdd\xfa\x1b\xd1\x70\xdb\xc3\x22\x02\xb0\x14\x33\xfe\x08\x6c\x92\xa0\x51\x02\x71\xfc\xec\x69\xd4\xf9\xa4\xad\x8f\x9f\x3d\x1d\xc8\xc0\x8a\x18\xf2\xa4\x35\x49\x91\x95\xad\x44\x81\x70\x25\x95\x6c\xf0\xd5\xac\x60\x2d\x84\xa9\x0e\xcd\xda\xa0\xa2\x94\x53\x3e\x06\x94\x04\xb8\xb9\xb1\x24\x12\x23\x93\xb4\x62\xf8\xdd\x94\xec\x0a\xd3\xca\x8b\xc5\xc0\x4c\x79\xac\x79\xd7\x6a\xfd\xbf\xa6\xf3\x39\xe1\x22\xde\xbe\x26\x43\x17\xba\x1f\x05\x7c\x8c\x66\x44\x97\x41\xa7\xe6\x92\x89\x96\x24\x3e\x76\x1f\xe6\xa1\x9b\xaa\xe9\xda\xa7\xe3\xee\xa8\x4c\x51\x3e\x1d\x87\x8c\x2d\x09\x66\x12\xe4\xa1\xd0\x08\x94\x09\x2a\x55\x00\x03\x24\x35\x5a\x4f\x70\xd3\xcc\x70\x75\x85\x9e\xab\x73\x60\x74\xf2\xe4\xf9\x78\xa3\x6a\xf4\xc2\x84\x09\x47\x3c\x2c\xab\xf4\x87\xfa\x47\x3e\xad\x73\x61\x2b\x8f\xc7\xef\xe1\x88\xc8\xb4\xc2\x5e\x21\x6a\xd2\x91\x4b\xaa\x6b\xb6\x71\x83\xc5\x08\xb4\xa7\x52\xb3\x68\x51\x52\xf5\x2a\xeb\xe0\x56\x88\xf4\x36\x71\x13\x32\x7f\x14\xac\xd5\x3e\x4d\x37\x5f\x1b\x93\x01\x34\x0c\x63\xd0\x42\x2a\x42\x48\x24\x5d\xaa\xba\x24\xea\x91\xdd\xb7\x5b\x29\x29\xa5\x0d\xa3\x0e\x37\x2f\x4a\xcb\x89\x93\x83\xba\x4a\x0f\x42\x46\x59\xd5\xd5\x34\xe3\xd3\xdb\x36\xf9\x1a\xdd\xef\xd3\x4e\x90\xbf\x48\x5f\x38\xca\x33\x2f\x4a\x92\x05\xe6\xe7\x53\xce\xb6\xcb\x5d\x4a\x03\x77\xa9\x6e\x19\x07\x1d\x18\x22\xb8\x69\xb5\xb3\x91\x92\x1b\x0b\x47\x10\xf1\x84\x33\x29\x4e\x10\x2e\x3b\x01\xe3\x32\x88\x10\x80\x10\x39\xae\x46\xc4\x3e\xf7\x79\xa1\x71\x9e\x70\x86\xc5\xa9\x3d\x54\x0a\x67\x0a\xdc\xa3\x32\x58\x28\xdd\x44\xd7\x2f\xf4\x6f\x2c\xc4\x72\xcd\xca\xf1\x8d\x4c\x99\x30\x0b\xa9\x87\x5c\x37\x45\xa1\x53\x16\xf0\x45\xf7\xd2\x06\x69\x94\x5a\x1b\x17\xa1\x83\xc1\x06\x8d\xec\x91\xaf\xe8\x70\xc3\xd5\xb1\x0f\xaf\x62\xbd\x71\x47\xed\x61\x5b\x9f\xbb\x2b\xf8\x6f\xd0\x8c\x34\x2c\x2e\x15\x11\xd7\xe5\xf8\x66\xfa\x4d\x72\x26\x14\x6a\x72\xf4\x1d\x1b\x85\xdf\x5c\x95\x0d\x7f\x32\x8c\x73\x7e\x3b\x87\xdb\x03\x86\x7f\x7c\xc2\x34\x68\x35\x50\x73\xce\x4e\xd3\x5d\x14\x82\x32\xad\xe1\x27\x83\xe9\x79\x66\xc5\xd9\x25\x27\x42\xc0\xbb\x07\x9c\x75\x97\x8b\xa0\xc0\xdf\x34\xea\xe8\x19\x24\xcf\x63\x4f\x19\xb8\x30\x8f\xa3\x54\xc1\xd9\xf0\x26\x03\x0a\xae\xa1\x58\x0d\xd7\x5c\xdb\xcd\xdf\x52\xea\x41\xb4\xbc\xd2\xa9\x40\x72\xde\x5a\x4f\x16\xde\xeb\xb2\xd5\x15\x49\xb6\x88\x1b\xed\xb6\x9f\xd0\x56\x7b\x06\xed\xb8\x33\xd0\xc6\x7d\x86\x06\xa3\x4d\xdb\x27\x9d\x94\x62\x50\xdb\x64\x3d\x6d\xd6\x10\x7e\x0f\x27\xf3\x9f\xd7\x79\x9b\x8b\x0b\x30\x60\xb1\x3f\x9f\xfc\x13\x6a\x91\x19\x52\x54\x11\xfa\xf6\xbb\x82\xe9\xcc\x80\x5e\x8f\xf1\x36\x36\x1d\x27\xc6\xaa\xa3\xf2\x16\xe6\x5c\x68\xff\xd0\x56\x6a\xdf\x45\x54\x8c\x38\x9b\x57\xe8\x26\x89\x6b\x3a\xaf\x23\xf8\x61\xc1\x65\x65\xe4\x0b\x73\x63\xcb\x17\x79\x5e\xea\x3b\x27\x90\xa0\x50\x91\x9d\xcd\x43\x4b\xbf\xd0\x34\x74\x9e\x25\xda\x7f\x9c\x83\x33\x1d\x37\x82\xc5\xa0\x5d\x57\x6f\x38\x5a\x49\x69\xe5\x2b\xbe\x66\x14\x7c\x3a\x35\xeb\x66\x0d\x48\x4f\xfd\x08\x60\x2c\x7e\xa1\x80\x65\x52\x18\xf6\x73\x18\xd0\xd6\x66\x8d\x06\xf9\x3d\x0c\xd8\xd0\x30\xff\xec\x9e\xfd\xbf\x4c\xd3\xbf\x4c\xd3\x32\x8c\x5b\x98\xa6\xee\xaf\xdb\x1a\x6a\x7f\x1e\x3b\x2b\x04\x9b\x8d\x11\xba\x88\x03\x1b\x29\xb4\x3b\x93\xab\xb1\x83\x09\x98\xe3\xcf\x61\xd4\x19\x71\x97\x5c\x69\x04\xa9\x69\x0d\x10\x32\xa4\x89\xbb\x2e\xc3\x2f\x7d\x59\x92\x90\x10\xcd\xfd\x34\x89\x60\x3b\x43\x12\x95\xed\xbf\x02\xc5\x0a\x6a\x28\x18\x80\xa5\x85\xf9\x02\x8a\xfe\xdd\x56\xbd\xdd\xac\xae\xee\xaa\x00\x6f\x30\xe2\xd0\x76\x86\x1c\xda\x60\xcc\xa1\xff\x2e\x83\x8e\x6c\xb0\xe6\x3e\xa7\xbd\xb4\x1d\xff\xfd\x65\x2c\x7d\x36\x63\x69\x97\x5d\xfd\xe7\x35\x9d\xec\x5f\x7f\x40\x64\x2a\xd8\xfb\x13\x73\xd3\x1d\xc2\x78\x27\x2e\x0e\xdc\x10\x49\xc4\x04\x1e\x63\x7a\x13\x94\x59\x2d\x5c\x26\xf8\x1a\xdd\x7f\xb3\xc1\x54\x02\xb5\xdb\xa4\x50\x1b\x4d\x7b\x0f\x09\x88\x98\x9a\x20\x73\xf8\x9c\x02\x15\x1a\x19\x9d\x51\x61\x26\xa5\x1f\x77\xa0\x71\xf5\xe4\x19\x63\x52\x48\x8e\x57\x2b\x5b\x32\x58\x53\xc4\xe4\x28\x98\x77\x60\x44\x8b\x57\x62\xc1\xe4\x44\x17\x7c\x36\x3f\xd2\x5f\x89\x08\xde\xfe\x75\x04\x34\xa5\xe3\x57\x69\x21\x36\x73\x2a\xc2\x1d\x26\x35\x85\x09\x54\xda\x87\x82\x4d\xc6\x16\xc1\xd2\x0d\x35\x64\x12\x58\x32\xc7\x47\xe1\xc0\x8d\xdc\x5d\x33\x5f\x3f\xb7\x85\x71\xdb\x4a\xc0\xb7\x28\x04\x5c\xb2\x0b\xc6\x3d\x7a\x7f\x39\xab\xa8\xa7\x42\xc5\xa0\xb0\xef\x49\x01\xb2\xb5\x08\xf4\x8b\xe8\xd8\x29\x48\x27\x91\xf3\x1b\xf8\x20\xc9\xd8\x08\xd5\x29\x17\x2f\x71\x95\x5d\xf2\x12\x38\xb7\xbb\xc0\xf5\x5f\x98\x1c\xf5\xa9\xf3\x34\x3e\x51\x9a\xc6\x9f\x28\x4b\xe3\xcf\x91\xa4\x91\x86\x53\x52\x73\x28\x28\xd1\x32\xec\x7a\x37\x1e\x9d\x4f\x1b\xef\xb2\x1f\x67\xaa\xf4\x1c\x83\xe5\x7b\x8e\x9b\x22\x55\xae\xdd\x56\x0a\x25\xda\x4a\x49\x44\xb7\x50\x3d\x91\x8d\x64\xd1\x4f\x11\xb9\xb2\x9f\x52\x65\xf9\xd1\x37\xd3\x6f\x0a\xe1\x07\x54\x3e\x5b\xb2\xaf\x7a\x7a\x06\xa7\x8b\xff\xbb\xdc\x76\xb3\x9d\xf4\x51\xb1\xa6\x5b\x86\x9a\x7e\x97\x48\xd3\xef\xec\x9f\x47\x71\xd1\x92\xb8\x1c\x05\x15\xfa\xc4\x53\x0b\xec\x0a\xbb\x39\x5d\x0f\xde\x0b\xd1\xba\xa3\xeb\x2f\x99\xa9\x03\x17\xa1\xa8\xf3\xb5\x8d\x82\xe6\x8a\x34\x79\x91\x67\xaa\x95\xcc\x41\x2c\x17\x4a\x6a\xb8\xfa\x16\xae\x0c\x48\x52\x96\xe7\x89\xd5\x65\x1d\xda\x18\x50\xd6\x65\xd4\xf4\x9b\x5d\x92\x21\x5c\x5f\x63\xab\xd3\xe6\x0a\x24\x94\xb3\xd3\xc8\x9b\xd7\xcb\x6c\x19\xc8\xb7\x1d\xe5\x5a\x63\xaf\xa9\xbe\x53\xe7\x1f\x2b\x59\x92\x72\xe9\x5e\xa5\x4b\x9a\xf1\xbe\x55\xe3\x8f\xb2\x2a\xb3\x50\xa4\x71\xf0\xf8\x2c\x68\x4b\xea\xeb\xfe\xeb\x91\xc5\xcd\x14\xf8\xc7\x00\x13\x74\x80\x2e\x89\x3c\x0a\xbe\x29\x9c\x13\xe8\x33\x39\xd6\xbe\xe8\x13\x6b\x67\x78\xed\x36\x23\x1c\xd1\x74\x5e\xb8\xd8\xa8\xb4\x02\x73\xe3\x6f\xb3\x7c\x04\x30\xb8\x92\x1d\x6e\x9a\x35\x5a\xc0\xc5\x27\x08\xcd\x20\xba\x5c\x92\x9a\x62\x49\x54\x03\x57\x47\x8c\x98\xe8\xcb\x65\xf8\x98\x6b\x02\xdd\xc6\x66\xde\xac\xf0\xda\xec\xe1\x27\x8c\x9f\x99\x22\x63\x66\x7f\xbd\x09\xc6\x5f\x45\xf3\xaa\x48\x11\x70\xa4\x46\xe1\x9e\x4b\x98\xa5\x5b\x68\xf6\xa3\x8b\xac\x0d\xa0\x54\xec\xf9\xa1\x0f\x99\x90\x5d\xa6\x60\xf3\x3d\x3e\x28\xb2\x42\xfa\xae\xc6\x06\x0c\x37\xe9\x49\xfd\x88\xa5\x8c\x7f\x72\xf6\xf2\xe8\xbb\xf3\x93\x8b\x1f\xce\xca\x4c\x6f\x28\xea\x2d\x18\x9d\xdd\x7c\x64\x9f\x1d\x1c\x8d\xd1\x97\x5f\x22\x60\xd6\xe3\x67\x4f\xa7\xf5\x55\xf4\xd3\x17\x07\xa8\xa5\xd9\x35\xd7\x6c\x3a\xbd\x32\x7d\xb0\x17\x08\x63\xeb\x99\x5f\x52\xf9\x71\x34\x38\x7a\xf9\xfc\xf9\xe9\xc5\x9f\x76\xe7\xef\xc4\x6c\x64\x6b\x2e\xdb\x8d\xeb\x6b\x32\xc7\x5d\x23\xcb\x44\xd4\xa5\xbe\xee\x94\x21\x24\xae\xa1\x23\xdc\x34\x22\xa8\x5b\xf5\xc6\x79\x59\xc4\x80\xb5\x91\x3c\x24\xe0\x72\x5a\x40\x11\x70\x21\x54\x14\xbc\x83\xd9\x7b\xe2\x14\x36\xd8\xef\x76\x21\x9f\x68\x9c\xa3\x99\xdd\xb2\xd2\x81\xe2\x3f\x9b\x14\xf3\xc2\xdc\x98\x09\x59\xaf\x24\x47\x32\x0f\xf4\x67\xaa\xd5\x87\x3e\x45\x8a\x63\xa2\x9a\xc1\x9f\xb0\xbe\xa3\x64\xda\xfb\x29\x1d\x26\x03\x79\x2b\xbd\x2e\xcb\x2d\xf9\xb2\x9f\xcf\x86\x79\xf2\x6c\x90\x27\x73\x79\xf7\x89\x59\x32\x38\x0b\x12\x76\x0c\x91\x34\xac\x18\x7c\xb5\x65\x29\x87\x01\x79\xfd\x31\x64\x36\x0f\xe3\x6f\xa2\xb3\xe1\x73\x74\x18\xca\x0a\xfd\xca\x6d\x9e\xaf\x59\x10\x07\x46\x12\x7e\x0e\x92\x9b\xa3\x27\xa1\xb9\x79\xb8\x3b\xa4\xb6\x9e\xea\x2e\xe4\xde\x9c\x4b\xf4\x22\x48\xc1\x31\xda\x7e\x50\xf5\xd5\xd5\x3f\x74\x6f\x8a\xa3\x34\xcb\x50\x0c\xdb\x7e\x66\x19\x18\x87\x38\x19\x59\xc2\x73\x28\x91\xab\xa3\x97\xea\x7d\x6a\x41\x6f\xd5\x8c\x8d\x7a\xc4\x40\xa9\x96\x21\xa5\xaf\x77\xc0\xad\x34\xc5\xfc\x3d\x07\x4f\x3a\xcd\x7c\x92\x5d\xc1\x73\x8d\x91\x25\x9c\x5b\xd0\x41\x92\xa6\x70\x8e\x9f\x61\xfb\xb9\xf8\x04\x59\x3f\x59\x1d\xce\xc1\x83\x9c\xba\x16\xa2\x29\xe1\x5b\xf2\xda\x45\x55\x55\xb6\xf4\x08\x38\x03\x53\xbf\x08\xab\x37\x75\x08\x07\xe6\xa9\xe3\xb7\xd8\x26\x5a\xa1\x99\x7d\xf7\xcb\x7a\x93\xd3\xb2\xc6\x83\xce\x87\xc6\x67\x6c\x9d\x77\xcb\xa5\x29\x4c\x1c\x4c\xc5\xf3\x4f\xce\x39\x81\x26\x17\x28\x71\x40\x93\x4c\x7f\xeb\x2b\xf6\x1c\xa8\x6e\x09\xa8\x69\xf6\x8a\x5a\x8c\xe8\xd4\xcd\x7c\x3c\x04\x22\x7a\x02\x2e\x81\x10\xfa\xa7\x3c\x10\xad\x48\x67\x9e\x9f\x04\x76\xb0\xc4\xb7\xb2\xb0\x22\xbe\x90\xee\x0d\x57\xf3\x8e\x0f\x9b\xeb\xc7\x7d\xbc\x01\x19\xad\xdf\x57\x22\x7d\xd9\xc7\x80\x84\x96\xbe\x40\x8f\x7d\xbe\x58\x98\x11\xae\x48\x6b\x9e\xc9\x5c\xe0\x6b\xd2\x7e\x25\x8d\x9f\x81\xb6\x92\xd4\x3d\x5c\xb9\x26\x32\xd3\x4f\x4c\x8b\x33\xbd\xcf\x0e\x4a\x77\x88\x2d\x07\x5c\xa8\x41\x75\xc3\x42\x8a\xd0\x9c\x10\xbd\xba\x06\xc8\x13\x42\x84\xea\xfa\x84\x90\x6f\x71\x83\x5b\xd0\x6e\xc2\x4e\xd7\x98\xa3\x79\xc3\x6e\x60\x59\x75\x01\xa9\x43\x45\x23\x87\xca\x37\xd3\x6f\xd2\x28\x82\x1f\xc4\x2b\xff\xa6\x7d\x7e\x4e\x0d\x02\x7f\x02\x3f\x5e\x91\x56\xb3\x8e\x6e\xb2\x9d\x37\x7e\x77\xb8\xe8\x6b\x34\x8a\xb1\xdd\xf3\x53\xd9\xe4\x44\xff\x9e\x61\xad\x10\xe8\x77\x7a\x15\x43\xcd\x58\xdb\x09\xcb\x04\x90\xd5\x18\xd6\x8c\x0f\x57\x05\x5a\x5e\xe8\x86\x89\x55\xf6\xad\xff\xa9\xe4\x5f\xec\x66\xba\x98\x6c\x3e\x56\xc6\xe2\xc1\x53\x55\x9c\xb8\xaf\xd3\xb5\x0b\x51\x79\x34\x44\xc4\x1d\x29\x3e\xf0\xe3\x5e\x38\xe8\xa6\x58\x45\xb4\x85\xb7\xf3\xdb\x86\x06\xc8\x36\xf8\xfc\x6d\x53\x00\x6f\xf0\x05\xa5\x6c\x89\xdc\xf3\x60\x37\xfe\x21\xb2\xc8\x88\x72\x15\x81\xa1\xb8\x97\xad\x7f\xaf\xb5\xad\xac\x06\x3a\xb2\x02\xb3\x18\xbb\x12\x05\x21\x10\x4f\x3d\x17\x09\xf6\xf7\xed\x8e\x94\x9e\xe2\xff\x19\x33\xfc\xf3\x9f\x68\x85\x5b\x5a\x8d\x5c\x24\x37\xc8\x55\xce\x17\x0c\xcd\x48\xd5\x61\x9d\x27\xbd\xc0\xc2\x49\x4a\x47\x8e\x35\x91\x77\xc7\x89\xda\x1b\xe3\x9d\x1d\x3e\x43\x13\xef\x39\x73\x52\x98\x03\x0a\xd4\x19\x5e\x7b\xad\xd3\xbc\x13\xa1\x0b\x2f\xc0\xa5\x7b\xf7\xee\xb6\x75\x95\xc7\x6f\x17\xf4\x2a\x46\x5b\xaa\x80\xe6\x69\x81\x55\xd8\xe0\xd6\x3a\x01\xda\x43\xf7\x0b\x6f\x17\x7c\x51\x84\x1e\x3d\x48\x9a\x0b\x01\x50\xda\x9c\x66\x53\x38\xa7\x4c\x66\x58\xa8\x17\x8c\xe2\xb8\x55\x79\xd8\xb0\xcd\xc4\x6b\x61\x7d\xcd\xa3\x47\x5b\x73\xf6\xec\xdf\x42\x7e\x01\x46\x73\xf3\x8c\x92\x4b\x11\x29\x0f\xe5\x0a\xc3\xc7\xda\xce\xbe\xa5\x43\x3e\x7a\x19\x4e\xf2\x40\xac\xe4\x1d\xe9\x41\xbc\xc4\xb8\x05\x88\xc3\xef\xa3\x84\xef\xa9\xb2\x6b\x22\x9c\x3c\x32\xa7\x88\x2d\x98\x38\xeb\xaa\x2b\x62\xd3\xc8\x22\x9b\x56\x24\x89\x8d\xa5\xc0\x7b\xf1\x61\xd8\xd8\x2a\x0c\x75\x7e\x9d\x92\x15\xc4\xcd\x4d\xe0\x66\x0d\xd1\x02\x21\x75\x99\xa1\x38\x66\x90\xb9\x87\x69\x7b\x66\xf2\x22\x4b\xd9\xea\x3d\xe1\x76\x51\x8a\xb4\x7f\x48\x07\x31\xfe\x65\xa3\x64\xf6\x83\x0f\x42\xf1\x24\x8d\xc2\x07\xa7\x5a\x3f\x1b\x2e\xd9\x35\x31\xc7\xbe\x0d\x81\x3a\x36\x1c\x14\xc4\x31\xec\x82\xed\xdf\xef\x00\x8c\x96\xe1\x07\x7f\xcb\x26\x7e\xf1\xa3\x7f\x00\xff\xb0\xd6\x00\x86\xb1\x7d\xf7\x09\x05\xd8\x17\x11\xe0\x42\xd2\xc1\xce\x86\x92\x03\xe8\xab\xbb\xe9\x80\x6e\x92\x4d\x16\xad\xcb\xc6\x7c\xd6\xa0\x22\x5b\x8a\xe4\xb4\x27\x17\x41\x44\xfe\x51\x97\x64\x50\xea\xde\x9b\x75\x10\x94\x78\xcb\xfa\x15\x53\x1b\xb4\x66\x2c\xf1\x15\xa9\xf7\x7b\x0c\x8e\x0b\xdf\x24\xbd\xe2\x08\xbd\x55\x2f\xad\x5f\xed\xf7\xaa\xdc\x5b\x48\xfb\x1c\xb0\x3b\x2b\xb6\x35\x84\x3c\x8c\x71\x2a\xfc\x5c\x0a\xa8\x48\xbc\x73\x3a\xc7\xb1\x69\xe2\x77\x89\xcc\x19\xbf\x5a\x71\x76\x9d\x84\xb7\x43\x19\x57\xf0\x6a\xfb\xac\xba\x40\x6e\x84\xaf\xed\xed\x94\x8e\x14\xbe\x65\xe5\x85\xb1\x77\x3e\x1b\xe7\x22\xa4\x82\x2d\x69\x54\x8e\x44\xf8\x87\x35\x1d\x0c\x88\xb4\x2e\x70\xe2\x85\xab\x29\x27\x95\x74\x81\xd5\x37\x19\x32\x6f\x86\x85\xfc\x90\x2f\xdc\x5d\x3d\x2a\x66\x59\xa6\xa7\x82\x7f\x58\x0f\x8a\x5a\x9d\xb6\x73\xc6\x97\xee\x5d\x4a\xbb\x4a\x76\x59\xf4\x2a\xb9\xfe\xf0\xb6\xb1\xa9\xb1\x75\xc8\x39\x5e\x6f\x55\x96\x33\x1f\x5e\x0f\x7d\x0c\x3a\x1d\xf8\x48\xfd\x4b\xcb\x9a\x2d\x94\x62\xfb\xea\x28\x1a\xd7\x35\xc9\x26\xbe\xc3\x28\x36\x65\xd7\x8f\x12\xa6\x94\xe9\x61\x4c\x9b\x2d\x86\x79\x4a\x24\xb2\x73\x05\x60\x96\x7c\x31\xd5\x4c\x4b\xfb\xa3\x9f\x2b\x24\x57\xc4\x38\x85\x9d\x24\x0b\xd2\x7e\xfb\xd2\xe0\xd4\xb0\x14\x32\x32\xd3\xd8\xd0\xfb\xcc\x42\xb1\x4b\x57\x56\x28\xb3\xe2\x69\xb4\x4e\x0c\xe5\x68\xe9\x6d\xcd\x54\xfb\xe5\x38\x4b\x82\xb4\xbf\x4c\x39\x6b\xc0\x57\xae\x46\x78\xcd\x1a\x32\x75\xf5\xb8\xa7\x1c\xdf\xfc\x08\xe5\xa5\x0b\x69\x1d\xc9\x82\xa7\x03\x4e\x69\x3d\xe8\x4c\xd8\x80\x81\x21\xfb\x30\x06\x31\x2f\x6c\x81\x41\x01\x97\x7b\xf7\xd0\x4b\x7e\x89\x5b\xbb\x88\x29\xaf\xd3\x56\x32\xf7\xc0\x78\xec\xa3\x2c\x3c\x5d\xac\xcf\x46\xc8\x34\x2c\x54\x35\xb7\x3c\x9b\xd2\x2e\xf6\xeb\xea\xc3\xf7\xd5\x11\xd2\x7a\x9a\x4f\x3e\x04\x63\x9c\x92\x3a\x47\x67\x58\xe3\x53\x87\xad\x56\xf9\xaa\xfe\x0c\xb8\x12\x0e\x4a\x31\x0d\x9f\xf1\x2c\x6e\x85\xb2\x3a\x08\xa3\x2a\x85\x30\x98\x74\xbc\x5c\x89\x8a\xd4\x13\xbb\xbf\xbd\x36\x03\x05\x45\xa2\xfd\xb9\x4d\xc2\xe7\xbd\x7b\xa1\x56\x1e\x5f\x79\x9b\x11\x34\xa7\x70\x60\xd0\x16\x35\x38\xcc\x5d\x0b\x3d\x0c\xc3\x59\xa0\xd5\x16\xea\x6d\x39\xc3\x70\xe8\xb3\x6d\x42\xe8\x20\x0c\x9f\x2c\x3a\x98\xca\xf0\xb5\xc9\xe0\x1f\xdd\xbf\x05\xa2\x2e\xcf\x74\xc3\x10\x7a\x85\xb7\x78\xc4\xe3\x56\xf3\x8c\x92\x58\x3f\x01\x26\xdb\x3c\x5f\x32\xf4\xd9\xe2\x3a\xdf\xa6\xcf\xed\xb3\x5c\x07\xa1\x6e\xb8\x1d\xb8\xe9\xe3\xb2\x62\x7f\xfa\x39\x09\x5e\xd9\x57\xa3\x17\xd9\x3b\xe4\x43\xdb\x53\xed\x33\x19\x3e\xe4\x9d\x48\x88\xe8\xd1\x93\x71\x71\x7b\x5e\x44\x97\xb9\xd0\x41\x04\x6f\x9a\xbd\xa9\x9c\x77\xf5\x0f\x96\x47\x3d\x7b\x5f\xa7\xde\xc1\x8e\xed\x77\xd5\xf5\x65\x07\x6f\x63\xfe\xfa\x64\x83\x58\xe4\x16\x6b\xa0\x17\x07\x9c\x86\xd5\xc4\x77\xdf\x10\x5b\x76\x2a\x56\x53\xef\xad\xa4\xfe\x99\x10\x1d\x3d\x40\xe8\x6f\x3b\xa1\x3b\xee\xc5\xf7\xe1\xef\x81\xef\xc3\x8f\xc3\x37\x30\xfa\xc1\x80\xa9\xbc\x17\xb0\x84\xef\xe0\x1b\xab\x28\x2b\xd5\xee\xf4\xd1\xfe\x0e\x81\xa3\x60\x03\x89\x86\x60\x38\xab\xbf\x0c\x63\xf0\x56\x03\xfa\x68\xf1\xb9\x4b\x5d\x1e\xfb\xb9\x6d\x11\xf8\xb4\x7f\x58\x0c\x7e\xab\x6a\xf0\x29\x80\x87\x25\x00\x43\x65\xe1\xed\x27\xbd\x26\x5b\x96\xb0\x9b\xfa\xbb\x6b\xb3\x45\x29\xdb\xef\xc7\xc8\x7c\x00\x50\x09\x27\xb6\xc3\xc0\x9d\x6a\xaf\x9e\xd6\x91\x6b\xd7\x7b\x0b\x82\x3c\x29\xed\x2d\xf0\x3a\x2f\x27\xa2\x6b\xa4\xd8\xc2\xfa\x2f\xe4\x89\xd1\x39\xfa\x62\x53\x42\xef\x6f\xbf\xa1\x9e\x7c\xde\x03\xc8\xe7\x4d\xcc\x9e\x24\xb1\xf3\x43\xa2\x42\x7b\x3b\x24\x1e\xf7\x92\x48\x67\x84\x8c\x7b\xfc\x0d\x6f\x3b\xc6\xbb\x25\xaa\x08\x97\x74\x4e\x2b\x48\x99\xe9\xad\x62\x0d\xa6\xf8\x36\x57\x2f\x73\xab\x9c\x4a\xc8\x34\x74\x17\xf9\x9d\xdd\x6d\x91\x07\xb3\x5b\xdf\xd5\x92\x0b\x42\x79\x88\x12\xc2\x4a\x96\x88\xc8\xbc\xb6\x05\xab\x69\xeb\x61\xc4\x54\x03\x6c\x03\x20\x07\xb6\xa1\xcb\x7b\x7c\x05\x93\x3f\xf2\x6d\x0a\x79\xb8\x41\xa8\x0f\xaa\x52\xb6\x4c\xba\x87\x98\x7b\x28\x68\x34\x19\x2a\xec\x80\x77\x13\x33\xdc\xd3\xd0\x1a\xaf\x41\xef\xbe\xd7\x94\xce\xfd\x52\xa3\x57\x47\xee\xb5\x80\xe4\x49\xf1\x2c\xe5\xcb\x85\x34\xd8\x4a\xed\x10\xcd\x8b\x5b\x19\x30\xbb\xc7\x49\xbd\x93\xba\x47\xa4\x3b\x86\x7c\x75\x24\x46\x6f\xab\xe8\x7e\xd5\x38\x9b\xad\xda\xc9\x7a\x2b\xa2\x2b\xb2\xbe\xd5\x8c\x43\xa7\x8c\x39\xa2\x95\x62\x6a\xb6\x4a\xbe\xff\x62\x37\x7b\xd7\xde\xe8\x1b\xe1\xf1\xb5\xe1\xf8\x5d\x1b\xb5\xd8\x57\x64\xad\xb0\xb3\xd0\x63\x3e\x8c\xa0\xd8\x05\xbf\x22\xeb\x2f\x4a\x91\x98\x5e\xc2\x1d\x3f\x7b\xfa\x94\xb3\x6e\xf5\x8c\xac\x55\x67\xb1\x1f\xc3\xfd\x1d\x55\x4a\x9d\x4c\x59\x8a\x1f\x18\x69\xf8\xf1\xb6\xee\x2e\x37\xf0\xec\x27\xbc\xe0\x9d\x90\x06\xc5\x67\xc9\xb7\xe0\xb5\x80\xea\x69\xf6\x89\x42\x13\xe2\xce\x1d\x70\xe6\xa1\x62\x7b\xaf\x2b\x3c\x12\xfc\xe3\xec\x70\x15\x40\x1d\x0c\x25\x1f\xf7\x3e\xfa\xb2\xe0\xd7\x4b\xdf\x3f\x76\x6f\x4f\x1f\xe1\x15\x9e\xd1\x86\xca\xde\x47\xfd\x2b\xb6\x5a\x3f\xf2\xcd\x8a\xef\x95\x85\x28\x00\xe1\x5f\xae\x88\x3e\x97\x93\x70\x71\x59\xbc\x49\x54\x79\x34\x20\xe1\xc6\x20\x61\x93\x7c\xee\xc6\xbb\x75\xd6\x4b\x51\x17\x35\x85\xf9\xb2\xd9\xbf\x49\x25\xf3\x49\xbf\x26\x73\x74\x90\xce\xdf\x78\x97\x1e\xf5\x92\xef\xf1\x68\xf3\x5c\x0c\x66\x11\x5e\x11\x4e\x77\xf3\xb7\xd2\x2d\x4a\xdb\xf3\x8d\x97\x6a\x5b\xf1\x8b\x67\x95\xd4\x6d\x67\x98\xc5\x9f\xa9\x9f\x99\x4f\xcc\xc0\x7f\x28\x8b\x28\xbd\xed\x23\xb9\x23\xa1\xd7\x6d\x19\xc3\x62\xf2\x49\x78\x42\x9d\x5e\xbb\x31\x83\xf7\xa3\x1a\x36\x50\xe7\xd3\x67\x66\x00\x3b\xe6\x1f\xca\x01\xf5\xd5\xc7\x0b\x08\x47\xab\xdb\x2e\xbe\x43\x62\x87\xd5\x7f\x8e\xaf\x88\x40\xee\x5d\x28\x41\x20\x35\x52\xdb\x25\xba\x0a\x9e\x40\x23\xda\xea\x87\x82\xc7\x60\x96\x40\x79\x8b\xa9\x8f\x6e\x76\xb3\x3d\x68\x2f\x50\xa5\x53\xc9\x4a\x2f\x11\xcf\xbb\xa6\x31\xea\x8e\x06\x3b\x8d\x6c\x93\xa6\x09\xce\xa0\xfe\xaa\x1e\xbf\xd8\xdc\x95\xef\x89\xaf\xe6\x88\x7e\x71\xc6\x5f\xf2\x35\x8c\x17\x7c\x37\xd6\x4f\x6a\xe6\xe1\xdd\x91\x07\x0b\x9e\x89\xbf\x05\x00\xc7\x63\xf4\xc8\x41\x4a\xc9\xa7\xef\x1d\x41\xf9\x1c\x35\x4b\x78\xc7\x87\xcd\x93\x58\x0c\x3a\x3d\x06\x7d\xae\x13\x90\xcd\xcf\x59\xd7\xd6\x88\xb3\x19\x6d\x11\x6e\x2e\x19\xa7\x72\xb1\x74\x10\x25\x33\xcf\xdd\x80\x81\x91\x06\x75\x24\x33\x45\xe5\x05\xfd\x35\x8d\xa7\x64\x57\x23\x36\x45\x73\x5c\x11\x99\xde\x9a\x35\x01\xa5\xf2\x5b\x2c\xfa\x5d\x5f\x0b\xce\xd4\x4c\x1c\xa3\xc7\x07\xc3\x4e\x9d\x0c\xa1\x7d\x57\x4d\x06\x6e\x7a\x37\x44\x88\x7c\xde\x8a\x8f\xec\x6c\xef\x16\xb4\x4e\x65\x2a\x89\x45\x37\x9f\x37\xa4\xd6\x37\xd8\x74\xe9\x4b\xbb\x3e\x16\xcd\x92\x15\x59\x7a\x66\x08\x0c\xb4\x18\x89\xa2\xc9\xda\x4f\xba\x48\xc5\x0e\xec\xce\xd3\xb6\x26\xef\xec\xab\xc8\xe8\x20\x78\xc1\xca\xc6\x52\xf5\x73\x52\xe2\x98\x02\x4f\x42\xaa\xda\x4f\xef\xf5\x5a\x59\x4e\xfe\x90\xc0\xbf\x59\xd0\x86\x44\x23\xa0\x47\x3b\x2e\x43\xb2\xba\x45\x44\xac\xee\xff\xfe\xc3\xb8\x64\x0e\xea\x81\x0f\xe2\xff\x7e\x1d\xf8\xec\xfc\x7a\x25\x3d\xbe\xb9\x13\x59\x23\x3a\xf2\x1c\xae\xe7\xfb\xc2\xb3\x05\x9f\x20\xec\x9c\xcd\xf0\xa7\x10\xb1\x9f\x7f\xa2\xb5\x22\xb4\x0f\xcc\x86\xef\x7d\x65\xa9\xc4\x87\xb6\xe4\x01\xf3\x51\x00\x03\x6e\x82\x18\x47\x50\x2a\xd7\xfc\xa8\x2b\x6b\xd1\x39\xba\x21\x9a\xed\x2f\x19\x14\x16\x31\x3f\x37\x58\x09\x92\x96\xdc\x8a\xca\xc8\xdc\xf5\x8d\x9a\xef\xba\x2b\x4b\x71\xeb\x74\xcd\xc2\x1f\xfb\x62\xd4\x47\xce\x23\xe2\xbd\x1c\xe0\x58\x75\xd7\x7b\x04\x54\x5a\x76\x9a\x94\xd5\x2b\x52\x6b\xb8\x54\xea\xf8\x3c\xc9\x94\x19\xc4\xf2\xd3\xef\x11\x3b\xa1\xf0\x9d\xd7\x4c\x12\x8c\xa8\xde\xf0\xe1\xc0\x93\x90\xf9\xf6\xb7\xe1\xc4\x2f\xc6\xb7\xdd\x71\xe9\x59\x17\x9d\x19\xc1\x51\x76\xe8\xab\xd4\xc1\x55\x04\xe3\x20\xc2\xf6\x6e\xef\x8a\xf0\x65\x27\x7d\x4a\x0f\xe7\x46\xfe\xa8\xce\x9d\xb0\x57\x8f\xe7\x54\x2c\x08\x47\x6b\xf0\xc3\xe9\x1d\x0c\x96\x4a\x74\xd0\x65\x85\xe0\x9c\x98\xfe\x45\x7b\xca\xe2\xc3\xc9\xa7\x65\x45\x02\x95\x2a\x85\x0a\x72\x46\xf4\xd9\x13\x3f\xfd\xea\x92\x01\xdc\x75\x0b\xd8\x54\xa4\xd1\xa5\xbd\xc1\xc1\x72\x83\x57\x50\x31\x70\xb6\x56\xff\x40\xc9\xaa\x9a\xb5\x5f\x45\xbc\x67\xcb\x57\xf1\xae\x75\x01\x3e\x53\x17\xaf\xb1\x55\xc2\xb1\xfc\x4a\xa0\x9b\xc5\x1a\xd1\xe8\x49\x42\xcd\x71\xf1\x77\xd9\xad\xa7\x33\x5a\x5d\x79\x2a\x03\xb3\x68\x94\xbf\x81\x4c\x9d\xcc\x21\xa8\x1b\xbe\xe8\x96\xe8\x00\x71\x72\x4d\xb8\xa4\xb3\xc6\x5c\x80\x7e\xa4\x4f\x87\x54\x81\xf4\xdd\x2c\xbf\x78\x20\xff\xdb\x06\xc5\xa9\xe2\x9b\xc2\x15\x16\x45\x23\xb5\xd8\xf4\x67\xef\x5e\x76\x44\x94\x11\xde\xd9\xa0\x92\x2c\x57\x76\x91\x7e\xa2\xf1\x4b\xca\xf6\x4b\xf7\x7b\x80\x61\xa9\x65\xf8\x33\x3a\x00\xd0\x49\x62\x0e\x3a\x40\x34\x0a\x11\xe5\xcc\x0f\xa0\x52\xce\x3f\x4a\x94\x8d\x4a\xbb\x76\xc3\xba\x8d\xfe\x72\x0e\xe5\x26\xc3\x45\x97\x89\xf4\x66\x91\x82\xa4\xf4\x7f\x5e\x2b\xbd\x97\xa1\x15\xe6\x92\x56\x74\xe5\xee\xb3\x69\xf1\x66\x36\x96\x02\x6a\xb8\x89\xf2\xc8\x4d\x9d\xee\x8d\xcb\xc0\xe5\x08\xc3\xc2\x89\x06\x59\x9d\xbc\xec\x99\x79\xe1\x7e\x1f\xef\xa3\xff\x17\x0b\x25\x8d\xf8\xfb\x4c\xe7\xd8\xe1\x20\xf5\xc3\x4f\xa3\x33\x55\x3f\xbc\x94\x24\xdf\xee\x92\xac\x15\x7b\xc7\xfc\x23\x4b\xaa\x0b\x62\x60\xd9\x31\x1e\x14\x17\x48\xb4\x6c\xb3\x46\xd8\xaf\x8f\xb6\xc5\xbc\xba\x98\x66\xee\x44\xae\x8b\xf8\xfa\x6a\xea\xd6\x48\x19\xe9\xd1\x5e\xdc\xdb\xe4\x4e\xf9\x05\xca\x28\xe5\xca\x00\x3e\x23\x6b\x1f\x63\x9c\xfa\x2f\x33\x2f\xdf\x51\x92\x57\xb8\x89\x2f\x95\xbd\x7e\x66\xb9\xae\x95\xdb\xb3\xa7\x39\x52\x55\xff\x0d\x77\x84\x03\xa6\x3c\x7e\xf6\x34\x18\xec\x16\x4c\xa9\xec\xdd\x10\xdd\xff\x0c\xa6\x4c\xf3\xf7\x76\x67\xca\x70\xd1\x3c\x53\xa6\x8b\xb3\x81\x37\xeb\xab\xd2\xa5\x6a\xef\x5f\xc9\xf9\xd1\xf6\x30\x9c\x98\xae\x4d\x81\x48\x28\xad\x47\xa6\x20\x89\x38\xe3\xcc\xdf\xc1\x6e\x88\xcd\x3d\x36\xda\x92\x2f\x53\x06\xce\x85\x7e\x7b\x5e\x49\x30\xe8\xe3\x3c\xf9\xe3\x7d\x64\xd2\x60\xca\x99\xd6\x25\x85\x6c\x08\x5d\xdd\x5e\x87\xfd\xf4\xd5\x71\x48\x70\xb1\xd5\xdc\x2a\xdc\x0e\x20\x3e\x0d\x37\x5c\x45\x56\xba\x86\x95\x29\x90\x6b\x5e\x72\x9b\x11\xd8\x30\x4a\xf1\x79\xa3\x31\x7f\x33\x41\x0b\x76\xa3\xce\x5f\xa8\x12\x8e\x05\xc2\x75\x4d\x6a\x9d\x5e\xa7\x76\x14\x6e\xbd\x76\xb4\xba\xe4\xb8\x26\x06\x1b\x53\xe3\x4c\xc0\xcd\x1c\xf3\x3a\xd6\x8c\x20\xb1\x22\x15\x9d\x53\x52\x23\x41\x56\x98\xeb\x82\x59\xa0\x08\x90\x77\x54\x40\x42\xa5\x90\xbc\xab\xa4\xc8\x5d\x27\x86\xca\x85\x4c\xa2\x7d\x94\x7d\xd9\x43\xf3\xa2\xef\x2d\xeb\x5c\x74\xc1\x65\xad\x4c\x14\x2a\x58\xad\x8b\x30\xec\x75\x12\x5e\x58\x01\xee\x6a\x6e\xf0\x5a\x14\x4b\xc3\xae\x9a\x4e\x98\x23\xbd\xc8\x5c\xe5\xe0\x8c\xb5\x93\xfb\xf8\xab\x5c\xb3\x12\x61\x61\xfa\x85\xe8\x67\x95\xe6\xfa\x6e\xb4\xf7\x79\x97\xfa\xc9\xab\xda\x17\x29\x7a\x58\x1e\x63\x8c\xfe\xf9\x4f\x34\xc7\x8d\xa9\x62\x12\xd0\xf7\x29\x49\x4a\x15\xf6\xdc\x73\x6e\xc8\x5c\x9a\x7d\x5c\x13\x21\x39\x5b\x07\xe9\x05\xdf\x86\x2d\x31\x8f\x6f\xc8\xdf\x10\x4e\x10\x6e\x1a\x56\x61\xa9\x8b\xe0\x63\x54\x93\x8a\x28\x6b\xad\xa1\xbf\xba\xfb\xf5\xa4\x95\xf4\xda\x9f\x39\xd0\x17\xb2\x19\x5c\x05\x6f\x1f\x05\x55\x84\x05\x14\x09\xbc\x8c\x63\x11\x9a\x1a\x76\x21\x02\x5c\x9b\x76\x0e\x81\x8f\xcc\xa0\xc5\xd9\x8d\xea\xaf\x6f\x70\xba\x37\x88\xc2\x0b\xff\xf6\x3c\x83\xea\x01\xb4\x9d\x9b\xaf\xd5\xf6\x72\xe0\x04\xf3\x57\xd8\xcc\xfb\x3f\x4d\x57\x07\x95\xac\x03\x80\xae\x13\x54\xcd\x37\x92\xc2\xa6\x02\x44\x94\xb6\x99\xb7\x6e\x56\xca\xe4\x08\xc8\x62\x2b\xe7\x19\x8f\xa9\x2e\xc7\x88\x70\xbb\x5e\x32\x4e\xfa\x76\x78\x74\xdd\xdc\x96\x10\xdd\x85\xe3\x74\x8f\x8c\xe7\xd4\x11\xeb\x61\x97\xae\xd4\x23\xed\x88\xb6\xe5\x04\x0c\xeb\xd1\x96\x4a\x77\x2b\x3f\xbe\x05\x97\x57\xcb\x4e\x12\x60\x87\x9b\xa4\x05\xfd\x87\xda\xfa\xc2\xfd\xc5\x56\x05\x8f\xa3\xf6\xbe\x85\xed\x86\x2e\x8d\x5b\x42\x87\xed\x37\x95\x1e\xbf\x5d\x61\xf0\x9d\xcb\x82\x17\x8b\x82\x0f\xba\x6d\xb7\xa9\x9e\xdd\x9b\x20\x5c\x7a\x19\x21\x5d\xd7\x42\x61\xec\xbc\x28\xf6\x36\x35\xb0\xd3\x8b\x98\x25\xad\x00\x1d\x18\x4d\x62\x94\x71\xd7\xc7\xe4\x5b\x7f\x8a\x87\x25\xb6\x02\xbf\xdb\x9b\x13\xc3\x20\x0b\x7c\x5e\xfa\x76\x27\xb0\xc3\xdb\x62\xe8\xd7\x3c\x1b\x06\x23\xd5\x84\xc1\x51\x66\xeb\x00\x3a\x01\x1d\xea\x6d\x56\x9f\xd3\x79\x76\xea\x8b\xfb\xa6\xb0\xec\x0a\xde\x35\xab\x58\x50\x08\x08\xb4\x65\x0d\x2c\x57\x75\x0e\x72\xf5\x27\x36\x05\x6a\x97\x04\x38\xc8\x2e\x9c\xcc\x8f\x06\x0a\x5e\x67\x8d\x2f\xe8\x92\x08\x89\x97\x2b\x2b\x92\x46\x59\x31\xc8\xa9\xb4\x6d\xc6\x5f\xa7\x3b\xc8\x81\x0b\xea\xe8\x24\xd2\x5c\xe0\x6b\x32\xea\x9b\xf7\x04\x49\xb6\x51\x47\x1b\x48\x9c\x39\x1a\x7a\xe4\xa2\xbf\xdb\xe6\x1b\xcc\x51\x57\xd0\xbe\xcf\x35\x8e\x67\x58\x2e\xd0\x41\x01\xe5\x43\x67\x5b\xb8\x7e\x0b\x5b\x99\x78\x53\x5f\x57\xc2\x38\xee\x6f\x8d\x9b\x4d\xdd\x9d\xe5\x11\xf1\x5a\xf2\xd6\xd3\x7b\xbd\xbe\xfb\xf1\x6d\x99\x0f\xe8\x00\xbd\x4f\xe5\x57\x71\x09\x23\x70\x7a\xdd\xfa\x90\x4c\x57\xac\x08\xef\xd1\x9e\xc9\x41\x34\x86\x62\x00\x32\xa5\xf7\x78\x17\x70\x8e\x96\x11\xc8\xd2\x52\x8c\x4b\xfe\x7f\x8c\x56\x9c\x5e\xab\xbf\x82\x90\x7b\x31\xc3\xc6\xd5\x82\xd3\xcf\xf5\x2b\x2d\x13\x5e\x73\x84\xe2\xd6\x58\x46\x37\x9e\x5e\xb6\xe8\x39\xa6\x6d\x4b\xb4\x3f\xf7\x82\x08\xd9\x12\x78\xdb\x84\x24\x99\x0b\xc2\x14\x28\x88\xde\x99\x30\x0f\x24\x9a\x89\x4f\x94\x56\xb8\xb0\x41\xeb\x05\xe1\x24\x7c\xc9\x05\x1d\x6a\x85\x17\x36\x1c\xbc\x8c\xa0\x91\x9c\x31\xe3\x13\xc5\xf1\x78\xfe\xc1\x16\x37\x61\x4a\x04\x6a\x68\x6b\x8a\x38\x20\xb9\x60\x82\x84\x1d\x2c\x5a\x78\xe9\x70\x8a\x30\xd0\x4f\x9a\xb5\xa2\xd3\x75\xf2\xb0\x34\x29\x9a\xac\xd5\x86\x21\xe3\x4a\xa7\xae\x3b\x98\xad\x79\xef\xc5\x94\x33\x17\x90\x4c\x8c\xc1\x55\x1c\xdc\xcb\x5b\x0b\x49\x96\xa8\x5a\x74\xed\x55\x38\x10\x28\xc4\x18\x2e\xe9\x37\x6b\x13\x47\xae\xed\x03\x90\x9a\x92\xd6\x03\x85\x1b\x00\xc7\x3a\xa9\xec\x5f\x6a\xbe\x72\x45\xc4\x97\xb8\xa5\x2b\xa3\x3a\x4f\xa3\x6d\x14\x16\x55\xeb\x4f\x04\x09\x69\xe7\x18\x93\x0a\xd1\x91\xa1\xa4\xaa\xc2\x2f\x61\x3a\xd9\x6e\x5b\x20\xc8\x3f\x19\x18\xf3\xf1\xa8\x3c\xa1\x82\x24\x1e\xcc\x6c\xdb\x71\xeb\xbc\xad\x02\xe7\x0b\x8a\x52\x47\x37\x6f\x20\xb5\x0c\x6f\xab\x8f\x5c\x81\x2c\x71\xa9\xf0\xe5\x47\x12\x3c\x1d\xe2\xf1\x28\xc3\xba\x40\xe6\xbe\xc4\xb0\x1d\x29\xec\x92\x6a\x6e\x4d\x62\xeb\x98\xbb\x3d\x8d\x83\xcc\xa0\xe8\xbf\x1f\x49\x57\x0f\xf6\xf1\x28\x47\xb2\x40\xd2\xde\x54\xab\x78\xf0\x72\xe9\x2b\xa5\xf9\xf7\x17\x12\xde\xaa\x7c\x76\xd4\x1a\x62\x70\xbb\x5c\x59\xdd\xea\x25\x3b\x74\xbb\x47\x4a\xb2\xba\xda\x1b\x1e\x2b\xc9\xeb\x70\xef\x70\x73\x14\xed\xf5\x3e\xaf\x52\xbe\x21\xba\xf3\x30\xc9\x65\xad\xde\xf1\x3e\xb6\xd8\x47\xf8\xf9\x4f\x78\xed\xa4\x27\xf1\x3c\x67\x35\xeb\x3c\xff\x70\xe7\x7f\x02\x00\x00\xff\xff\xec\xb2\x24\xbf\x18\xee\x00\x00" +var _epochsFlowepochCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x7b\x73\x1b\x37\xf2\xe0\xff\xfe\x14\x88\xaf\x2e\x21\x37\x14\x1d\xdb\x57\x5b\x5b\x3a\xcb\x7b\x8a\x24\x3b\x2a\xc7\xb6\x6c\x29\xd9\xab\x4a\xa5\x62\x70\x06\x14\xb1\x1a\x0e\x68\x00\x23\x99\x71\xfc\xdd\x7f\x85\xc6\xfb\x31\x43\x52\xb6\x93\xcd\x56\xf8\x8f\x65\x12\x68\x34\x1a\x8d\x46\xbf\xd0\xa0\xcb\x15\xe3\x12\x3d\xe9\xda\x4b\x3a\x6b\xc8\x05\xbb\x22\x2d\x9a\x73\xb6\x44\x77\xa3\xef\xee\xde\xb1\x2d\x1b\x76\x13\xb5\xb2\xff\x8f\x5a\x9c\x1e\x5f\xe0\x59\x43\xce\x25\xbe\xa2\xed\x65\xd0\x34\xfe\x21\xea\x73\xd4\x74\x42\x12\xfe\xea\x28\x68\xee\xbe\x8b\x5a\x1e\x3f\x7b\x1a\xb4\x39\x7e\xf6\x34\xfa\xf5\x09\x21\x22\xf8\x59\xfd\xf7\xee\x9d\x3b\xf7\xee\xa1\x8b\x05\x41\x92\xad\xf6\x1a\x72\x4d\x1a\x24\x96\x98\x4b\x54\xb1\x56\x72\x5c\x49\xb4\xc4\x2d\xbe\x54\xb8\xca\x05\x41\x0d\x9d\x93\x6a\x5d\x35\x04\xb1\x39\x22\x2b\x56\x2d\xc4\x14\x9d\xb6\x00\x7e\xa2\x40\xe9\xef\x10\xe6\x04\xda\x8b\x25\x6e\x1a\x22\x24\xea\x5a\x2a\x55\x1f\x49\x97\x04\xdd\x2c\x88\xf9\x9d\xd6\xa4\x95\x54\xae\x91\x54\x93\x47\x23\xe8\x43\x54\x4b\x05\xac\x25\xf2\x86\xf1\x2b\xc4\x56\x84\x63\xc9\xb8\x18\x23\x2a\x90\x90\x58\xd2\x6a\x8a\x5e\xda\x6f\xd1\x12\xaf\x11\x6b\x9b\x35\x6a\x08\xbe\x26\x88\x71\xf4\x6f\x46\x5b\x18\xc0\x80\x50\xd0\xb0\xd4\xd8\xa1\x19\xeb\xda\x1a\x73\x4a\x44\x0a\x64\x46\x10\xf9\x37\xa9\x24\xa9\x51\xdd\x71\x35\x69\xdc\x9a\x4e\x73\xc6\xd1\x35\xe6\x94\x75\x42\x01\x5b\x52\x51\x93\x25\xc1\x2d\xeb\xb8\x98\xa0\x59\x27\xd5\x70\x6b\xc4\xc9\x12\xd3\x16\x99\xd1\x93\xe9\x75\xad\xa4\x0d\xfc\xa0\x61\x92\xb6\x16\xd3\x3b\xf7\xee\x29\x80\x27\x9e\x70\x62\xd5\x50\x89\x68\x2b\x19\x7a\x88\x56\x0b\x2c\x88\xd8\x57\x4d\x7e\x3b\xb8\xf5\x07\xba\xa3\x93\xb3\x97\x47\xdf\xa1\x17\x68\xf3\xe7\x37\xd7\xf8\xeb\xfb\x68\x3a\x9d\x42\xff\x3d\xf5\x41\x96\x75\xe1\x7f\xbf\xed\xa1\x73\x22\xbb\x15\x52\x7f\x1d\xb1\xe5\x92\x4a\x45\xbc\xbd\xdf\x7e\x73\xbd\x3e\x0a\x69\x05\xe1\xfe\x18\xa1\xf3\x8b\xc3\x67\xa7\x2f\x9e\xa2\xb3\xef\x0e\xcf\x4f\xd4\x97\x2f\x58\x4d\x3c\x5f\x00\xd9\x80\xc4\x92\x21\xd1\xcd\x96\x54\x2a\x36\x01\x3c\x39\x79\xdb\x11\x21\x05\xac\xa0\xa2\xfd\x8b\x93\xff\x7f\x61\x16\x40\x2f\xb2\x82\x27\x17\x54\x68\x5a\x4f\xd1\xa1\xd4\x6b\xd4\xd6\xc0\xb1\xee\x97\x09\x7c\x0d\x0b\x95\x6e\x12\x4e\x04\x6b\xae\x89\x50\x2d\x14\x38\xd6\x49\x21\x71\x5b\x2b\x04\x32\x44\x70\x5b\xa3\x9a\x48\xc2\x97\xb4\xd5\x5d\x52\x46\xb1\xa8\xb6\xe4\x9d\x74\xbb\x6a\x0a\xfb\xb4\x38\x3c\x59\x52\x29\x3c\x76\x7a\x49\x04\xe1\xd7\xb4\x22\x88\x5c\x93\x56\xb7\xc5\xb4\x75\xd3\x1d\x1c\x53\x0f\x38\x41\x37\x0b\x5a\x2d\x10\x6d\xa9\xa4\x58\x1a\x54\x25\xc7\xad\xa0\x92\xb2\x56\x11\xdb\xcc\x57\x63\xa5\xc7\x3d\x03\x2a\x9a\xc5\x7b\x30\x46\xe7\x27\x17\x3f\x9c\xf9\x95\xfb\xd7\x82\xb4\x01\x51\xd1\x8c\x5c\xd2\x56\x83\x5e\x61\x2e\x69\x45\x57\xb8\x95\x02\xb9\x0d\x6c\xd1\xd1\x7b\x83\xc8\x29\x3a\xd6\x7b\x53\x01\x51\x10\xfd\xe2\x88\x04\xc6\x8a\x93\x95\xea\x95\xcf\x0d\xa4\x96\x6e\xdb\x35\x98\x4f\x50\xc5\x9a\x86\x54\x6a\x5a\x20\x79\x58\x4d\x84\xe5\xa4\x6b\xa6\xe6\x6e\x60\x50\x8e\x2a\x2d\x7b\xbf\x12\x88\x33\x26\xd1\xdb\x8e\xf1\x6e\x89\x2a\xc2\x25\x9d\xd3\x0a\x4b\x02\x2b\x5c\xb1\x56\x90\x56\x68\x71\xa1\xe1\xf1\x4e\xcf\xa9\xa6\x42\x72\x3a\xeb\xd4\x56\xb9\x22\x6b\x74\x49\x5a\xc5\xc8\x8a\xa4\x2b\xce\x24\xab\x58\x83\x46\xc7\xcf\x9e\x8e\x81\x9d\x89\x44\xdd\x0a\xfa\x71\xdc\xd6\x6c\xa9\xe0\xcd\x08\xae\x58\x3b\xb5\xc4\x84\x89\xc3\x5c\x01\x8a\xde\x0f\x15\x5b\xae\x1a\x22\x87\xd8\xd6\xf1\x8d\x5b\x43\xbd\x87\x7b\x79\x07\x40\x29\xaa\xcd\x71\x25\x85\xde\x1e\x5a\x62\xaf\x38\xab\x88\x10\x86\x67\x14\xbc\x0d\x6c\x63\x30\x32\x03\x46\x4c\xf3\x70\x8c\x8e\x5e\x3e\x7f\x7e\x7a\x71\x71\x72\xbc\x89\x71\x26\xa1\x98\x57\xc7\xc3\xbc\x6b\x9a\xb5\x5d\xf9\x1a\x06\xcb\x86\x4e\xf6\xd5\x21\x9a\x63\xda\x74\x1c\xc4\x07\x69\x25\xe1\xf1\x38\x73\xc6\xc3\x09\x00\x1d\x58\xc2\x50\x7a\xc6\x35\xac\xbf\x9a\x31\x96\xdb\xb0\xb4\x1a\x57\x23\x69\x57\xcb\x11\xb4\x5b\x01\x6f\x2b\xb2\xd6\x1d\x27\x6e\x33\x0a\x84\x51\xc5\xa9\xa4\x15\x6e\x1c\xde\x8a\xe1\x6e\x68\xd3\xa0\x0a\x77\x42\xc3\xa8\x16\xea\x20\x92\x0c\x2d\x70\x23\xa7\x77\xee\xe0\x4a\xad\xcf\x08\x37\xcd\xd8\x33\x80\x3a\xb7\xf5\x3a\xbc\xbf\x73\x47\x09\xfe\xb0\x15\x69\xbb\xa5\x5e\x25\x58\x9d\x7d\xf4\xc3\x69\x2b\xff\x81\xde\xdf\xb1\xa7\x44\x04\x52\x91\xca\x88\xe9\xc3\x1f\x8e\x2e\x4e\x5f\xbe\xe8\x6f\x07\x67\x0b\xc8\x85\x0d\x6d\x34\x1b\x40\xa3\x0f\x3d\x08\xaa\x93\xe0\x35\x6b\xb6\x41\xef\xc5\xcb\x17\x27\xfd\xbf\x1e\x69\x09\xc0\xf8\x50\x13\xbb\xa7\xfb\xd1\x7e\x47\xaa\x0e\xc4\x48\x6f\x93\x1f\x09\xd7\x82\x62\xb0\xd5\x21\x7c\x11\x4e\xfd\x9e\x51\xd5\x8c\xb0\x95\x6a\x2b\xc7\x1b\x95\x0a\xd8\xd2\x4a\xae\xdc\x18\xc9\xe0\xd7\xda\x33\xb0\x70\xe0\x24\x43\x18\xb5\xe4\xc6\xb0\xa3\x61\x50\x7b\x62\xe1\xae\xd2\x42\x49\x6f\xce\x8c\xfc\x30\xa6\x3e\x71\x00\x99\xd1\x1d\x37\x1d\x8b\x6b\xc5\x3a\xd8\x4f\x56\x02\x57\x1d\xe7\xaa\x97\x1e\x0f\xb6\x09\x15\x7a\x2b\xc3\xd9\x64\xfb\x9b\x7e\x7a\x51\xff\xfe\x7f\x26\x39\xe4\x39\xe5\x42\xa2\x6b\x4a\x6e\xd0\x88\xb6\x4a\x26\xd3\x6b\x32\xb6\x22\x29\x1a\x67\xea\x3a\x43\xa7\x1f\x29\xb9\x19\x00\xdc\xe0\x6d\xe1\x7e\x25\x52\x52\xf9\x91\xcc\x0f\x87\xfa\xfb\x93\xb6\xfe\x64\xa3\x86\xb3\x69\x71\x33\x04\x97\x49\xdc\xa0\x27\xdf\xbf\xfc\x17\xa0\x43\x6a\x34\x5b\x23\xdc\x34\xe6\x38\xd2\x7a\x48\x43\x2e\xb5\x0e\x55\x5c\x22\x3f\x98\x54\xc0\xce\x01\xcc\x3e\xfa\xe1\x09\x7d\xd7\x33\x9c\xe8\x56\xab\x66\xad\x30\x57\x23\xc1\xe0\x45\xc8\x51\xd7\x53\x35\xe5\xda\x1c\x15\x9c\xdc\x60\x5e\x1b\x21\x0a\x52\x6d\xa6\x04\x29\xad\x1d\xa0\x15\x27\xd7\x4a\x13\x4f\x20\x01\x8a\x4a\xa4\x9d\x03\x0e\x7d\x68\x82\xb5\xa3\x50\xed\x1f\x88\x75\x12\xe1\x44\x0d\x1c\xa6\xcc\x6b\x0d\xcb\x8f\xa9\x7e\x19\x17\x37\x6e\x41\x3b\x4b\x37\xee\x4d\xff\x81\x09\xdd\x1d\x58\xa3\xb2\x9e\xba\x43\x5a\x93\x10\x38\x83\xfe\x4a\xea\x3e\x2d\xaf\x5b\x55\x6c\xa9\x18\x37\x98\x4b\xdf\xde\x56\x03\x6e\xb1\xb5\x13\x90\xe8\x79\x27\xa4\x22\x28\x6b\x09\xba\xe4\x04\xeb\x63\x15\x83\x88\x89\x80\x0d\xca\x88\xe9\x96\x22\xe1\x74\x9b\x79\xa2\x1b\x2a\x17\x6e\x07\x20\xda\xce\x19\x5f\xe2\x78\xe3\x86\xec\xb8\x1f\x7d\xab\xfa\x9c\x1e\x4f\xdc\x9e\xbf\x22\xeb\x89\xd5\x3c\x4a\xff\xc7\x75\xcd\x41\x25\xe2\xac\x21\x93\x08\x94\x05\x11\x60\x30\x41\x37\x84\x5e\x2e\xe4\x04\xf6\xe5\x92\x71\xe2\x71\x82\x91\xdb\x39\xdb\x47\x3f\xe5\xbe\x82\xe9\x0b\xf3\xeb\xcf\x3b\x4b\xc9\x12\x17\x7c\x12\x31\xd9\x0f\x78\x83\xc4\x52\xcb\xaf\xd5\x6b\x84\x85\xa0\x97\xed\x52\x71\x42\x1f\x8b\x9d\x60\x65\x45\x37\x04\x1a\x99\xc3\xab\xa1\x42\x46\x30\x39\x59\x71\x22\x88\x52\xc0\x14\x2b\x3a\xf0\x5a\x47\xd7\x7b\x46\xb1\x04\xa8\x66\x8a\x2d\x4e\x8f\x85\x19\xdc\xe8\x8f\x0b\x1c\x43\x34\x20\x26\x9a\x9d\xb4\x51\xa0\x17\x4f\x0b\x55\x30\x18\x02\xbe\x35\x7a\x85\xf1\xd9\x08\xb3\x8a\xce\x85\x33\x35\x7f\x95\xd6\x4f\xb0\x8e\x57\xe0\x6d\xd1\xca\x7f\x4b\x84\xd0\x56\x81\xc2\x4d\x4d\x97\xe0\x9a\x70\x24\x88\xb1\x5e\x10\x6e\x2e\x19\xa7\x72\xb1\x04\xec\x22\x80\x43\x9b\x5f\x7d\xf4\x10\xe7\x30\xe4\x3e\x3a\x97\xca\xca\x2a\xe0\x54\x13\x5c\x37\x60\xba\xb2\x39\x22\x6a\x09\xb4\xa2\x6c\x16\xe0\xf8\xd9\x53\x6f\xc6\x48\xa6\x44\x80\x55\x6e\x6b\xdb\xc6\x62\x10\xc1\x0e\x6c\x57\x23\xd6\x8e\xdd\x48\xda\x2f\x42\x2a\x3a\xa7\x06\x0a\xe1\x4b\x40\x00\x7b\x4b\x4b\xb3\x63\xdb\x2d\x67\x84\xc7\x1b\x1a\x6c\x07\xac\x51\xf3\x1a\x39\x62\x33\x25\x86\x15\xf8\x40\x62\xaa\x15\x14\x04\x2b\xbd\x7c\xd6\xb0\xea\x4a\xaf\x32\x80\x36\x62\x2c\x02\x6d\x45\x1a\xba\xa4\xd7\xa4\x75\xc4\x99\x20\x2a\x51\x85\x5b\x24\xf0\x9c\x34\xeb\x1e\x23\x24\x54\xad\xd4\xe7\xf8\xd9\x53\xd0\xb5\xef\x3f\xc9\x37\x4a\xda\xe6\xc1\x16\x6d\x1e\x16\xda\xe4\x87\x21\xe6\x97\x44\xa2\xba\x33\x36\x68\x99\x4d\x26\x8a\xea\x82\x54\xac\xad\x3d\x6f\xeb\xae\xc7\xa6\x67\x8e\x47\x32\x84\x3a\x4b\xc1\x03\xd8\x37\x44\xb4\xc4\x7a\xb0\xbd\x15\x27\x15\x15\x0a\xb1\x1f\x5a\xfa\x0e\xfa\x27\xe3\x9f\xb4\xf5\x05\x5d\x12\x3b\x7c\xef\xd1\x5b\x34\x6e\x87\x8f\x5e\x70\x97\xba\xc3\xd7\x81\xf4\xae\x2e\x7f\x00\x07\x80\xc0\x19\x09\xd0\x94\x60\x09\x2c\xf3\x9e\x89\x3b\xb8\x0b\xac\x94\x61\xd2\xfa\x1d\x33\x74\x32\x9b\xf9\x7c\xc4\xd9\x4c\xde\x76\xb8\xb1\x0c\x69\x3b\xd1\xfc\x88\x76\x0a\x57\xb0\x47\x01\x91\x6d\x8f\xe7\x0b\xd0\xeb\x44\xd7\x48\x7b\x44\xbc\x3a\x42\xf8\xf2\x92\x2b\xed\xd3\x38\x3e\xd4\x1c\x13\x99\x6e\x05\x74\x04\x2b\x14\xd6\x81\xc0\x45\x9c\x54\x84\x5e\x13\xad\x26\xe2\xc0\xbb\x63\x05\x76\x04\xe5\xd5\x11\x02\x17\x9d\x56\x7c\x0b\x4e\x1c\xd0\x0a\x41\xbc\xd9\x23\xc3\xf8\x69\x88\x08\x66\x6d\x85\x78\xaf\x54\x7f\x75\x54\x92\xeb\x9a\x16\x6a\x45\x56\xdd\xac\xa1\x95\x52\x1e\x84\xe7\x36\x23\x43\xb5\x47\x85\xb4\x15\xab\x95\x60\x12\x4a\x7f\x07\xf5\xae\x61\x37\x7b\x97\x2c\x3e\x94\xf8\x7a\x25\x19\x6a\xe8\x8c\x63\xbe\x06\xb7\x48\x8b\x16\xe4\xdd\x9e\xe9\x1e\x0b\xc4\xa7\x9c\x29\x31\xeb\xc6\x56\xdc\x2b\x9d\xbe\x60\xc8\x3f\x41\x73\xd6\x34\xec\x46\x1b\x0e\xe0\x33\x6c\x6b\x7a\x4d\x6b\xc5\x34\x0a\x61\x07\xb2\xbe\xba\x3c\xeb\x66\xcf\xc8\x5a\x91\x41\x1f\x1c\x3f\xf7\x6b\xc0\xaf\x49\xc5\xae\xe1\xd0\x1a\xda\x88\x58\x2d\xa8\x6a\xa7\x3b\xc1\xa6\xc4\xfa\x8c\xa3\xd6\x37\x27\xed\x09\xed\x5c\x40\xde\x27\xe6\x9c\x42\x0e\x83\x4b\x02\x4e\x18\x65\xf4\xb6\xe8\xe4\xc9\x73\x08\x25\x10\x63\x73\xf4\x0f\xd5\x09\x3d\x8a\x6a\xc0\x69\x4d\x0a\x86\xac\x62\x42\x03\x22\x1a\x5a\x1d\x1d\xca\x96\x70\x28\x88\x95\x56\x0e\xa7\xe8\x62\xa1\x66\x91\x52\xc0\x2c\xba\xa6\xb8\x3b\x45\x23\x2f\x92\x64\xa8\x5b\xd5\x06\x71\xca\x51\xc3\x2a\xdc\xf8\xb6\x7a\x4e\x56\x33\x01\xe3\xde\x60\xe6\x90\x30\xce\x6f\x2c\xf1\xa0\xe2\x6f\x97\x69\xb4\x51\xbc\x98\x96\xeb\x93\x3f\x4c\x63\x07\x15\x14\xdc\xed\xff\x7d\x5a\x7a\x0f\x75\x3f\x5a\x49\xef\x85\xfb\x51\x3a\x7a\x0c\xf5\x77\x54\xd1\x6d\xb7\x4c\x38\x1f\x3a\x24\x95\x74\xb2\xe2\xe9\x2f\x6d\xfb\x2f\x6d\xfb\x2f\x6d\xfb\xe3\xb5\xed\x01\xe9\xf0\xea\x48\xa0\x15\x86\xd3\xcc\x70\x62\xdf\x31\x0b\xb1\x4d\x41\x80\xf1\xac\x96\x05\x5e\xb8\x3d\x36\xdf\x9b\xe1\xb6\x8e\xc6\xe8\x84\x0d\x45\x09\xbc\x24\x3e\x46\xa2\x34\x24\x1b\xb7\xd7\x27\x6d\x41\x51\xfb\x91\x49\x72\x8c\x25\xee\xd7\xd7\x6c\x8b\x92\x84\x00\x9e\x0e\x34\xb6\x2d\xa7\x17\xc1\x39\xd2\xaa\x43\xb3\xb6\x31\x4b\x35\x6b\x4e\xf6\x40\xcf\x70\x2a\x20\x88\x6e\xd1\xc1\xd1\x3c\xef\x1a\x35\xf2\x67\x51\xe1\x02\x98\xe8\xe2\xe5\xf1\xcb\xd1\xc9\x93\xe7\x13\xf4\xbf\xfe\xfe\xe0\xfe\xc3\xf1\xbe\x39\x57\x09\xa2\xf5\xde\x63\xda\xd6\xe4\x1d\x5a\xe2\xd5\x2a\x94\x25\x25\xd5\x2f\xf3\x7e\x1e\x59\x29\x6e\x58\xae\x42\x4b\x22\xb1\xd2\x40\x10\x9e\x81\xb3\x35\x54\xd7\x63\x9b\xe8\xb0\x69\xd0\x82\x0a\xc9\x38\x84\xbc\xb4\x5a\xe0\xba\x43\x42\x08\xe3\xca\x12\x23\x7c\x89\x5b\x20\x6c\xa6\xd5\x08\xc9\xbb\xca\xa8\x35\xcf\x6d\xd7\xf7\xf9\xf2\x6a\x6f\xe9\x9c\x06\xba\x4d\xec\x62\x0e\x81\x36\x44\xa6\x2a\x4e\xe1\x48\x51\x47\x87\x5e\x59\xe6\x2c\x08\xcb\xbe\x7a\x2e\xc2\x79\x74\x4b\x23\x28\x00\xf6\x78\x18\xd4\x1c\x6c\xae\xc2\x30\xc2\x42\x62\x1e\x69\x0d\x43\x4a\xc3\x76\x20\x49\x1c\xdc\xd8\x08\x30\x0b\x30\x0d\x21\xab\xda\x9d\x6c\x1a\xa0\xe0\xce\x57\x7b\xca\xb9\xf2\x37\xaf\xe5\x35\xe6\x45\x3f\x7e\xc9\x72\x53\x0d\x10\x5e\xaa\x95\x4f\x07\x93\x4c\x1f\xd1\xc1\x26\x03\x7d\x45\x9d\x72\x54\x8a\x20\xdc\xd2\x8b\x85\x86\x7f\xa8\xc1\x97\x55\x49\x83\xe3\xb7\x9c\xe0\xab\x9a\xdd\xb4\x3f\x27\x58\x72\x5c\x5d\x09\x44\xe7\x8e\x22\x0b\x7c\x4d\xb4\x5f\x21\x08\xa3\x0c\xae\xab\xc7\x44\x9c\x61\x5a\xef\xa3\x6f\x19\x6b\x72\x62\x30\x7e\x89\x5b\xfa\xab\x3e\xc9\xd8\xdc\xfb\x3a\xbd\x9a\x06\xf6\x96\x91\xbe\xb1\x1d\xef\x72\x60\x74\x5c\x0a\x71\xd6\x29\x33\x8a\xcd\xd4\x69\xc4\x38\xec\x12\xa7\x5f\x0d\xec\xc0\x6d\xdd\xab\x39\xfa\xaf\xb4\xd5\x7f\xe4\xad\xfe\xc0\x06\xf7\x69\x77\x36\x84\xda\x4b\xa9\xad\xbc\x00\xf9\xf0\xe1\x41\x82\x85\x60\x15\x85\x63\xcf\xd9\x6e\xc7\x41\x9e\xc8\x33\xb2\x46\x4f\x5d\x9e\x48\xe2\x9c\x01\x9b\xd1\x28\xc1\x4e\x3d\xd3\xee\x11\xa7\x80\x49\x25\xfa\x0b\x07\x48\x70\x72\xc0\x3e\xb5\xba\x3a\x56\xea\x7a\x4d\xde\xed\xa3\x86\xb4\x97\x72\x81\xf6\xd0\xfd\x5e\x02\xd4\x57\x97\x89\xf1\xef\x9a\xd2\x96\xca\x51\x66\x09\xa2\xf0\x13\x8a\xb8\xf4\xa7\x54\x5c\x25\xbf\x93\x34\xb0\x9a\xf6\x2e\xc8\x8f\xa4\x51\x7f\xf8\xce\x7d\x76\x71\xe1\xc7\x1d\xb7\x73\x0f\x45\x7d\x32\x5a\x8e\xc3\x93\x4a\xd3\xab\x99\x4f\xad\x0d\x7e\x60\xcf\xa0\xbc\x09\x9c\x3d\x07\x40\xde\xc2\x8f\x96\xb2\xaa\x85\xfd\x3b\x6f\x66\x08\x8c\x0e\x2c\xa9\x8b\x90\x02\x2a\x6b\x70\xc1\x17\x79\x87\x90\xe2\xe8\x20\x5a\x80\xbc\x71\x24\x0f\xd1\x01\xfa\xe9\xe7\xbe\x36\x20\xa9\xd0\x01\x9a\xe3\x46\x90\x12\xc1\x92\x45\x04\xd2\x25\xdf\x15\xba\xb9\x25\x54\xed\xdd\x7f\xf2\x86\x66\xdd\xd0\x81\x5d\x41\xd7\xe4\xc3\x9d\x6c\xe3\x54\xb0\x68\x63\x34\xef\x5a\x54\xb1\xd5\x7a\x34\xde\xcf\xb4\x93\x70\x04\x4e\x64\xc7\x5b\x18\x68\x5b\xb0\x82\xc8\x8b\x80\xb2\xa3\x5f\x50\x4b\x6e\x12\x3e\x1f\x27\xc3\x94\x96\xc7\xf7\xda\x61\xe4\xd7\xe1\xaa\x8d\x7e\x31\x67\x89\x3b\xb1\xb6\x3c\xd7\x8a\xe8\xa5\x0c\x91\x80\xde\x19\x49\x60\x1b\x87\x62\x70\xdc\x0d\x8c\x6e\x59\x2d\xf8\xdf\x0e\xe3\xba\xad\x2f\x46\x6f\xab\x21\xc9\x50\xc4\x20\x62\xc8\xb7\xd5\x2e\xab\x72\xfc\xec\x29\x08\xfd\x67\x64\x3d\xba\xca\x64\xcc\x00\x47\x5f\xc5\xec\x8c\xe2\xa4\x24\xc7\xb3\x36\x9f\x07\x72\xc6\x8d\x71\xaf\xac\xf2\x19\xa4\xa3\xb5\x97\xde\x0a\x39\xac\x97\xb4\xbd\x77\xef\x5e\x9f\xa6\x7e\xc4\xda\x39\xbd\x0c\x90\xb2\x67\xa6\xf6\x37\x28\x5d\x43\x29\x94\x90\x53\x87\x5b\xa4\xb4\x76\xbe\x49\xbf\x6b\xbb\xa5\x92\x47\xe2\xb4\x85\x9d\x96\xab\x93\x61\x07\x43\xb1\x17\x71\x9f\xd1\x2f\x7a\x58\xdb\xb7\x48\xb6\x64\x1c\x74\xa0\xfb\x94\xd6\x69\x60\x56\xdb\xea\xc9\xf1\xcc\xce\xa3\xb4\xa3\x1d\xa7\x18\x77\xde\x71\xae\x71\xe7\x5b\x4e\x1a\x94\xe7\xfa\xea\x52\x7b\x6a\xb6\x98\xaf\x75\xbd\xec\x38\x53\xdb\x6d\xc7\x39\xda\x6e\xbb\xcd\xce\x2b\xc5\x56\x0d\x76\x53\xdd\xc8\xb0\x47\xb9\xe6\xa1\x30\xbd\xff\xf7\x4d\x13\xcd\x3a\x2a\xf9\xdf\x2d\x53\x30\x7d\x13\xce\xba\xab\x83\xc0\x77\xef\x9d\xb8\x36\x3d\x74\xb2\xb2\x24\x4a\x89\xd4\x69\xab\x61\x5e\xd7\x0a\xaf\x95\x51\x46\xdb\x8a\x13\x2c\x88\x40\xe4\x9a\xf0\x75\x21\x2b\x0c\x42\x24\xd7\xb8\xe9\x08\x08\x95\xae\x91\x74\xd5\x50\x2f\x44\x20\xb9\x4c\x86\x59\x67\x92\xa1\x4b\x22\x03\x87\x1f\x0c\xd5\x4b\x60\x05\x40\xf7\x3c\x35\xc8\x9c\x11\x5e\x91\x56\xe2\x4b\x92\x5b\x80\x05\x42\x0f\x01\x18\xfd\x82\x56\x19\xb4\x22\xbd\x87\xa0\xa0\x83\x00\x4a\x89\xec\xa0\x5f\xf7\x88\xb6\xc9\x46\xc9\x30\x19\xd8\x4b\x93\x41\x06\x9c\x6c\x45\xbd\x2d\x05\x64\xf2\xcd\x4e\x72\xa6\xef\xa7\x2d\x37\x72\xfe\xe5\x4e\x1b\x62\xb3\x02\xb9\x61\x75\x87\x7e\xee\x3f\x72\xf5\xf9\x18\xfa\x90\x4d\x46\x2d\x5d\x2a\x4d\xca\xb5\x3b\x71\x52\x06\x32\xc7\x6d\xc8\x04\x67\x3e\x62\x08\xb9\x52\x38\xbd\xc1\x1f\x85\x46\xca\x0c\x35\xe7\x50\x1a\xf5\x1f\xfb\x01\x74\x38\x30\x44\xa6\x26\x73\x1d\x44\x40\x9c\xcc\x09\x27\x6d\x65\x1d\x5d\xd6\x64\xc1\x66\x50\x21\xf1\x72\x65\x13\xdb\x4d\x37\x07\x18\x37\x0d\x9a\x77\x12\xb2\xf2\x63\x5c\xc5\x14\x9d\xce\xd1\x1b\xe3\x8d\xd6\x89\x10\x00\xf8\x0d\xcc\xb1\xcd\xfc\xdc\x72\x41\x5a\x07\x17\x6e\x3c\x24\x93\xa7\xc2\xc4\x13\x66\xeb\x7d\xdb\xd0\x75\x48\xfc\xde\xa0\xf5\xcd\x2f\x2c\xfa\xe8\x6b\xef\xca\xff\x1b\x1a\xe5\x48\xed\x71\x32\x37\x7f\x8e\x23\xd8\x7d\xfe\xc9\x0b\x58\xc2\x5e\x05\xc8\x8d\x66\xc3\x41\xfd\xf1\x82\xd4\x55\x52\x27\x91\x83\xdc\x71\x6f\x16\xc8\xb8\xe9\x92\xf5\xeb\x85\xeb\x67\xd8\x0b\xd9\x91\xba\x0c\x7a\xf7\x58\x44\x01\x07\xb7\x26\x65\x47\xe1\x11\x5b\xae\x3a\xe9\xb8\x49\xdc\x50\x59\x2d\x74\xc4\x5e\x21\x36\xc3\x02\x32\x77\x10\x9b\xcf\x05\x91\xda\x0f\xe4\xd1\x34\xa4\xb9\xe7\xbb\x4d\x7b\x0f\x86\x4b\x22\x2f\x42\x96\x79\xc2\xb8\xd5\x1e\x73\xfe\x70\xaa\x87\xfd\xa3\xdf\xf2\x9b\x26\x8c\xa7\x95\xf4\x61\xee\xb3\xfd\x22\x16\x2c\x1d\x21\x29\x73\x4c\x0a\xcb\x3a\x29\x92\x39\x95\xf1\x09\x5e\x07\x8e\xef\x0a\xad\xfc\x18\x7a\x5f\x1d\x15\x7c\x19\x85\xb9\xc7\x7b\xb0\x5f\x4c\x7e\xc7\x9a\x5a\xab\x23\x6f\xdc\x55\x97\xa9\xde\x5a\x6f\xec\xa6\x73\xee\x36\x27\xc6\x66\x0d\x71\x01\x86\x70\xab\x5a\x3f\xa0\x75\x3c\xfa\xe6\xd6\x02\xda\x37\x82\x79\x0b\xdb\xc8\xe8\x30\xf1\x8d\x2c\x2f\xfd\xb4\xe5\xd4\x32\xd9\x67\x3c\x15\x82\x2b\x38\x8c\x93\x70\x52\x31\xee\x52\xd7\x5d\xbc\x04\xd8\xda\x64\xa5\x05\x39\xf4\x5e\xee\x82\xd3\x4f\x8f\xa5\xa5\xb6\x56\x64\xfd\x70\xaf\x81\x21\x45\x01\x2c\xcc\xc7\xed\xe3\x38\x8a\xc3\x38\x6a\x69\x83\xe8\x5c\x1f\x32\xed\x57\x12\xcd\x59\x67\x02\x7b\x2e\x1e\xed\xc9\xe5\xe3\x3a\xca\xc2\xd3\x76\x2c\x7c\xa3\x4e\x4d\xa1\x63\xba\x97\x9c\xdd\x28\x31\x5f\x53\x38\xf0\x31\x5f\x3b\x68\x35\x23\x02\x29\xea\x81\xeb\x5b\xc7\xc5\x1b\x86\x6b\x85\x17\x68\x9b\xb0\xe7\xa3\xfb\x31\x54\x98\x16\x99\x74\x36\x7b\x3a\xf2\xcf\x8c\x7e\xd1\x13\xcc\x77\x71\xd4\xec\x9f\xc1\xde\xa0\x73\xe0\x1b\x4b\xb3\x63\x87\x35\xf8\xe8\x9a\xf9\xd4\x4c\x73\x6a\xa6\x39\x9d\x31\xce\xd9\xcd\xa3\x2f\xdf\x6b\xd8\x09\xe8\x0f\x8f\x47\x8a\xea\xfb\xba\xaf\x85\x7a\xae\xfb\x9e\x61\xb9\x48\xf7\x65\x32\xfe\x6b\x32\x47\x07\x05\x6c\x7e\x0a\xe7\xf5\x73\xba\xb7\xbd\x44\x0a\xe0\x4c\xb5\x0b\x2b\x6a\xf9\xe1\x4e\xfe\x97\xe9\xd9\xd2\x26\xdd\xa8\xe7\x58\x27\x06\x2c\x59\xad\xb9\x27\x76\x86\x99\xad\x6a\x62\xf9\x3e\xf8\x97\xb1\x46\x79\xbb\x82\xb6\x8e\xaf\x49\xba\x82\x2d\xb9\xf1\x3b\x37\xfa\x31\xa4\xdd\x8a\x93\xa2\x1f\x46\x87\x71\x43\x69\x8b\x0e\x0e\xd0\x37\xe8\xb7\xdf\xa2\xc6\xa3\x60\x14\xe7\xb5\x7d\x7c\xd0\x0f\x64\x0f\xdd\x47\x5f\x7e\x19\xc1\x28\x81\x78\x64\x40\xac\x38\x5b\x31\x41\xea\x10\xc6\x68\x3c\xde\xcf\xd6\xed\xee\x91\x16\x28\x40\xe3\x75\x1a\x48\x85\x1d\x6c\xaf\xef\xcf\x25\xb1\x37\x6d\x34\x70\xd3\x9a\x71\x77\x1d\x32\xbb\x86\x73\xb7\xb0\xe0\xb7\x65\x79\xdc\xc9\xc5\xe8\x79\x27\xb1\x24\x63\xf4\x99\xf8\xbf\xcc\xfc\x05\x4a\x97\xf6\x00\x16\x82\xc0\x8d\xb7\xf4\x07\xf5\x59\xa6\x4b\x75\x70\x50\x5a\xc1\x49\x4f\x67\x21\xc0\x80\xb2\xcb\xa5\x18\xd7\x23\x0d\xa7\xd5\x92\x8a\x25\x96\xd5\xc2\xa7\xc9\x19\x90\xe2\x6e\x06\xb3\x6f\x57\x86\x88\x6e\x9a\x7f\x84\x7e\xf9\xb4\x2d\xee\x39\x9b\xca\xf1\x3a\x48\x75\x1a\x8d\x6d\xa8\x27\x51\x6e\x75\x3e\x94\xcd\xc1\x5a\x9a\x0c\x65\x8c\x16\xe4\x9d\xda\xff\xaa\x03\x9b\xa3\x87\x0f\xd4\x69\xa8\x86\x50\x36\xd8\x88\x4e\x09\xba\xff\x77\x34\x5b\x4b\x22\x14\x77\xde\x7f\xf0\x0f\x34\xa3\x52\x8c\x23\xd0\x6f\xb8\x12\xfa\x92\xce\x1a\x83\xca\x1b\x23\x8a\x94\xc8\x31\x5a\xd7\xe8\x1f\x1a\x8a\xef\x09\x6a\x25\x34\xff\x9e\xdd\x80\xca\x11\x03\x79\xa4\x7b\x3e\x1e\x8d\xa7\x92\x7d\x4b\x2f\x4f\xda\x9a\xe2\xf6\x5b\x05\x64\x54\x82\xf2\x1d\xbd\x5c\xdc\x1a\x0c\x04\x64\x03\x32\xa2\x03\x43\xc5\xa9\xce\xef\xfd\x8e\xbc\x1b\xf9\x61\xc6\xd3\x8a\xb5\x15\x96\xa3\x9e\x36\xdf\xb3\x9b\xb1\x87\x5d\x64\xe6\x70\xb0\xa9\x09\x01\x1e\x1c\xa0\x87\x0f\x26\x77\xca\xec\xfa\x7a\xf7\xf5\xf3\xdc\x3a\xbe\x93\x1e\x12\xe1\xf8\xe9\x69\x11\xd8\x2a\x13\xb5\xea\xa7\xc7\x93\xe2\x1d\xbd\xec\x24\x87\x60\x6d\x2e\x72\x63\x83\xc1\x8d\x60\x40\xe9\x7c\x3b\x77\xa5\xdb\x59\xd3\x26\x9c\x3a\x04\xdf\xf8\x53\xfc\xdf\x7e\x04\x25\xa1\x82\x4a\x28\x81\x7e\x0a\xea\xdd\x1b\xa8\x29\x01\xa4\x74\xaa\x50\x36\x9c\xe2\x2d\xac\x5a\x07\x52\x4f\xed\x2e\xf7\x9f\x6d\x86\xfb\x8e\x60\x2e\x67\x04\xcb\xad\x87\x5c\xd8\x1e\xbb\x0f\xdb\x23\xca\xdf\x04\x3a\xdc\x86\xc1\x0b\x82\xbe\x67\xec\xd7\x76\x36\x3a\x30\x0e\x8e\x01\xc8\x9b\x16\xcc\x1b\xa2\x4e\xfd\x9b\x53\xd2\x18\xdb\x39\x1c\xd2\x91\x04\x56\xa5\xe7\x76\xb9\x92\x75\x1a\x36\x4c\x0b\xfc\x49\x5a\xbd\xf0\xff\xef\xb3\x96\x72\xed\x42\x7d\xfc\xf2\x64\xec\xa4\x76\xa1\xff\xdf\x34\xbe\x73\xaf\x8f\x0d\x7d\x01\xc5\xcc\x56\x4f\xcc\x26\xc6\x15\xc2\x0a\xf9\x99\xe1\x47\xa7\xe2\x47\xdc\xd0\x1a\x86\x8a\x7c\x4e\xa3\x00\xc3\x82\x21\xd4\xeb\xb0\x2b\x1f\x7a\x5b\x03\xb3\x3e\xba\x32\x98\x88\xe0\xe3\x7d\x74\xf7\x05\xb9\x31\x86\x05\x7c\xe5\xa4\x52\x7a\x1f\x15\x89\x6e\xa9\x38\xc2\x51\xa6\xad\x21\xd5\x4f\x13\x1c\x7c\xfd\x77\x93\x73\xf4\xce\x0e\xf8\x17\x02\x49\x31\xaa\x25\xab\xbc\xcc\x60\x86\x8c\x01\x8b\x85\xdf\xfc\xb7\x31\x59\x32\xbd\xcf\xca\x3c\x5b\x83\x81\x46\x8a\xbb\x76\xe1\xac\x96\xdc\xfc\x2e\xdc\x95\xc4\xf0\x12\x02\xee\xc0\x68\x96\x58\x01\xa7\xf9\xff\xff\xb7\xf1\xd9\x27\x15\x66\x11\xa5\xfe\x08\x5e\x0b\xf9\x4c\xf1\xdd\xe7\xe2\x35\x17\x45\x8d\x66\xbc\x03\x8f\x65\xfe\x6e\xcd\x67\xfa\xef\xfd\xdc\x1d\xfe\x31\xec\x76\xe4\x2d\x6f\x37\xc4\x34\x74\x71\xde\x7d\x9d\x84\x2b\x2c\x99\x8d\xc5\xeb\xcb\xf6\xa4\x04\x2c\x0f\x9e\x9a\xb6\x0d\xc3\xf5\xa3\x6c\x4a\xd6\x88\xbd\x67\x9a\xdd\x9b\x5b\x00\xd1\xc4\xb7\x1c\x43\xd9\x8a\x23\x37\xbd\x09\x92\x6c\x7b\xc8\x1b\x57\xab\x2f\xaa\x4c\x6e\x5e\x6c\x0e\x2c\xff\xa7\x49\x86\xdb\xb0\x7d\x3e\xfb\x78\xee\x3b\xd0\xf2\xc9\xf7\x2f\xff\x75\xde\x1f\x38\x56\x1b\x6a\x63\x2c\xf5\x3f\x8d\xa4\xc8\xc8\x3e\x1f\xdd\x7c\x74\x80\xee\x4f\xbf\x31\x7a\x98\x0e\xe4\xfb\x4d\x25\x6f\x08\x69\xd1\xaf\x84\x33\x10\x54\xac\x25\x1f\xb9\x42\x83\xc1\xf8\x08\xb1\xe2\x42\xdd\xbb\x87\x4e\x5a\xf0\xfd\x33\x8e\x6a\x2a\xe0\x4f\xdc\x49\xb6\xc4\x92\x56\x2e\x7b\xa1\xc2\x4d\xd5\x35\xb6\xce\x5a\x5b\xa3\x15\x5e\xc3\xdd\xb2\x8d\x8a\x9b\x81\x64\xb2\xce\xf4\x58\xf5\xe8\x17\x44\xf4\x5f\xe5\xa4\xb3\x0d\xf2\x44\x75\x29\x8a\x90\x9e\xe1\x76\x12\x24\x06\xb1\x82\x18\xd9\x08\xdd\x0b\xc5\x94\x2c\x82\x34\x73\x4d\x17\xb2\xa4\x32\xbc\x68\x7a\x72\x4d\x5a\x39\x2a\x79\xd5\xe3\x43\x74\x43\x4e\xf0\x36\x49\xbf\x83\x69\xc3\x1b\x73\x26\x7a\x5a\x67\xf9\x13\x71\x3b\xb8\x97\x9a\x5d\x92\xb1\x9f\x4d\x77\x15\xc3\xb6\xe5\x9b\x83\x61\x8b\x4d\x37\xc5\x50\xff\x6d\xae\x02\x52\x3b\x5e\x9a\x0a\x21\xf4\xdf\x0e\xb2\x9f\x2c\x7a\x18\xf2\x0c\xf2\x21\x2e\x1b\x02\xe8\xaf\x5c\x69\x6e\x5f\xa5\x99\x44\xc8\x38\xe1\x20\x1f\x7e\xc3\xdd\xdc\x3c\xbf\x78\x6e\xee\x32\x9c\x1e\x23\xda\xda\x45\x2c\xa0\x0c\xd0\xa7\x78\xb5\x22\x6d\x3d\x1a\x18\x62\xa4\x41\xec\x1b\x50\xe3\xd4\x3d\x9b\xa1\xad\x28\x18\x5f\x52\x0c\x13\xb6\xd1\xd7\xbd\xec\x1a\xfd\xe4\x12\x5e\xc2\x2c\xfe\x74\x88\x07\xb7\x18\x62\xf4\x00\xfd\xad\x30\xce\x78\x70\xa0\x87\xb7\x19\xe8\xe1\xc0\x40\x19\xc3\x28\xd9\x12\xdf\x62\x87\xc4\x95\x58\x08\xa8\x36\x5e\x04\x86\xad\x73\xbf\xbe\xbb\xc1\x10\xca\xa7\x5c\xb9\xf7\x77\xc0\x81\x21\xf2\x06\xc1\xad\x6d\x37\xf1\x52\x2b\x77\x91\xd4\x88\xaa\xbc\x4d\x49\x62\xe4\xdf\xe5\xfd\x62\xe9\x11\xfe\x2f\x6f\x5b\xba\x21\x9b\x33\x64\x7f\xbf\x07\x85\x7e\x0f\xb6\xe8\xf7\xb0\xd0\xef\xe1\x40\xbf\x54\xde\xc5\xff\xef\x6b\xef\x64\x5f\xf4\xdf\x5e\x4a\x87\x62\x30\xfb\x2a\xef\x15\x8a\x3e\xff\x77\x22\xfc\xca\x8a\xc8\x3d\x74\x46\xf8\x9c\xf1\xa5\x40\x02\xb7\x4a\xd2\x55\x0b\x52\x5d\x89\xa0\x00\x1e\xbb\xa6\xb5\x0b\xcb\x45\x09\x58\x50\x8c\x06\xaa\xd9\x91\x56\x74\xc6\xf1\xaa\x6f\x81\xd2\xf6\xf2\xff\x46\xc3\xec\xa1\x0b\xf0\xcd\x42\x55\xd1\x6b\x65\x1c\x1b\x6f\x77\x0c\x31\xe9\x73\xe8\x4a\x08\xda\x8a\xa6\x50\x9b\xa1\x16\x70\xb3\x5f\x87\xdc\xb1\x29\x94\x80\x1e\xa3\x6f\xb2\x4c\x19\xaf\x03\x84\x37\x66\xcf\x38\x39\x82\x69\x8e\x3e\xfb\x09\x3f\x7c\x16\xb7\xdd\xf2\xe5\xfc\xa8\xb0\xbd\x4e\x5b\xd9\xdf\x32\x64\x8f\xd3\x56\x8e\xfd\x29\xb6\x9b\xda\xde\xef\xa5\x88\xe7\xbd\xe7\xa8\xf4\xf5\xfd\xc9\x2d\x9c\x60\x96\x44\x21\x9c\x42\xd4\x58\x7d\xee\x9e\xb6\x9a\x39\xbc\xc8\x4a\x16\x41\xd7\xc3\xb0\x97\x85\x22\xee\x19\xd4\xea\xa1\xcc\x46\xc0\xe2\x41\x79\x4a\xb1\x60\x5d\x53\xe7\xdc\x74\xab\xe3\x59\x87\xb8\xca\xe1\xda\x1d\x4e\xeb\xa9\x2e\x6a\xdc\xfc\xcb\x61\x33\x41\x45\x98\x3e\x2c\x86\xc3\xcd\x12\x6f\x14\x85\x7c\xac\xb4\x68\xf3\x28\x9b\xf2\xe6\xa8\x6e\x42\xd4\x98\xa6\x37\xc6\xec\x32\x05\x92\xd0\xdb\x0a\x2a\x26\x21\x1d\xf7\x67\x3c\xaa\x72\x74\x67\x1b\xb2\xf5\xec\x10\x08\x74\x17\xb7\x44\x81\x4c\x9e\x44\x41\xaa\x7c\x56\x57\x44\xf8\x54\x1e\x08\x79\xa3\xbc\x71\x38\x9d\xbb\xbd\xe2\xd5\xfe\x15\xc9\xb2\x73\xc9\x56\xc2\x09\xd1\xe5\x8a\xb5\x6a\x48\xc8\x2f\x95\x59\x62\x6b\x20\x24\xe3\x1f\x0a\x96\x71\x5c\x94\x41\x63\x68\x5d\x72\xf5\xd5\xa5\xab\x36\x4a\x5a\x25\xc5\x6b\xa2\xd4\x46\x88\x90\xb6\x85\xea\x42\x49\xd9\x8a\x4c\x88\x0a\xc9\x56\xb6\x20\x98\x99\xc2\xa8\x57\xfc\x20\x9d\x09\x71\x5b\x37\x41\x01\x1a\x10\x92\xb6\x15\x51\x8c\xa6\x6b\x19\x08\x22\xe3\x4b\xee\x13\xf5\x5b\xcd\x60\x1d\x5b\xa8\xa6\xc2\x8a\x70\x40\xc0\x84\xf7\xe2\x11\x6e\x04\x9b\xa2\x7f\x11\xed\x99\x30\x7d\x75\x3e\xe9\xc0\x0d\x19\xfb\xf1\xd3\xd4\x99\x25\x56\xad\xac\x97\xb4\x1d\x8d\xa7\xa4\xad\x13\x87\x79\xb2\xb1\x10\x69\x44\x49\x5c\x9b\x02\x2f\x95\x99\xac\xab\x68\xa6\x3d\xfb\x1b\xd1\x70\xfb\xc3\x22\x02\xb0\x14\x37\xfe\x08\x7c\x92\xa0\x51\x02\x71\xfc\xec\x69\xd4\xf9\xa4\xad\x8f\x9f\x3d\x1d\x48\xc2\x8a\x38\xf2\xa4\x35\x79\x91\x95\x2d\x46\x81\x70\x25\x95\x70\xf0\x05\xad\x60\x2d\x84\x29\x10\xcd\xda\xa0\xa8\x94\x53\x3f\x06\xd4\x04\xb8\xbc\xb1\x24\x12\x23\x93\xb7\x62\x18\xde\x54\xed\x0a\x33\xcb\x8b\xf5\xc0\x4c\x85\xac\x79\xd7\x6a\x0b\xa0\xa6\xf3\x39\xe1\x22\xde\xbf\x26\x49\x17\xba\x1f\x05\x7c\x8c\x66\x44\x57\x42\xa7\xe6\x9e\x89\x16\x25\x3e\x7c\x1f\xa6\xa2\x9b\xc2\xe9\xda\xad\xe3\xae\xa9\x4c\x51\x3e\x1d\x87\x8c\xad\x0a\x66\x72\xe4\xa1\xd6\x08\x54\x0a\x2a\x15\x01\x03\x24\x35\x5a\x4f\x70\xd3\xcc\x70\x75\x85\x9e\xab\x83\x60\x74\xf2\xe4\xf9\xb8\x3f\x8d\xd8\xc0\x7a\x61\x22\x85\x23\x1e\x56\x56\xfa\x43\x3d\x24\x9f\xd6\xbd\xb0\x95\xcf\xe3\xf7\x70\x45\x64\x6a\x61\xaf\x10\x35\x19\xc9\x25\xdd\x35\xdb\xb8\xc1\x62\x04\xea\x53\xa9\x59\xb4\x28\xa9\x7e\x95\x75\x70\x2b\x44\x7a\x9b\xb8\x09\x99\x3f\x0a\xf6\x6a\x9f\xaa\x9b\xaf\x8d\x49\x02\x1a\x86\x31\x68\x23\x15\x21\x24\x92\x2e\xd5\x5d\x12\xfd\xc8\xee\xdb\xad\xb4\x94\xd2\x86\x51\x87\x9b\x17\xa5\xe5\xdc\xc9\x41\x65\xa5\x07\x21\xa3\xad\xea\x82\x9a\xf1\xf1\x6d\x9b\x7c\x8d\xee\xf7\xa9\x27\xc8\xdf\xa5\x2f\x1c\xe5\x99\x1f\x25\x49\x04\xf3\xf3\x29\x27\xdc\xe5\x4e\xa5\x81\xeb\x54\xb7\x0c\x85\x0e\x0c\x11\x5c\xb6\xda\xd9\x4a\xc9\xad\x85\x23\x08\x7a\xc2\x99\x14\xe7\x08\x97\xdd\x80\x71\x25\x44\x88\x41\x88\x1c\x57\x23\x62\x9f\xfb\xd4\xd0\x38\x55\x38\xc3\xe2\xd4\x1e\x2a\x85\x33\x05\xae\x52\x19\x2c\x94\x6e\xa2\x4b\x18\xfa\x67\x16\x62\xb9\x66\xe5\xf8\x46\xa6\x4c\x98\x85\xd4\x43\xce\x9b\xa2\xd0\x29\x0b\xf8\xa2\x83\x69\x83\x34\x4a\xcd\x8d\x8b\xd0\xc5\x60\xe3\x46\xf6\xc8\x57\x74\xb8\xe1\xea\xd8\x87\x87\xb1\xde\xb8\xa3\xf6\xb0\xad\xcf\xdd\x2d\xfc\x37\x68\x46\x1a\x16\x57\x8b\x88\x4b\x73\x7c\x33\xfd\x26\x39\x13\x0a\x65\x39\xfa\x8e\x8d\xc2\x6f\xae\xd0\x86\x3f\x19\xc6\x39\xbf\x9d\xc3\x05\x02\xc3\x3f\x3e\x67\x1a\xb4\x1a\x28\x3b\x67\xa7\xe9\xee\x0a\x41\xa5\xd6\xf0\x93\xc1\xf4\x3c\xb3\xe2\xec\x92\x13\x21\xe0\xe9\x03\xce\xba\xcb\x45\x50\xe3\x6f\x1a\x75\xf4\x0c\x92\xa7\xb2\xa7\x0c\x5c\x98\xc7\x51\xaa\xe0\x6c\x78\x96\x01\x05\x37\x51\xac\x86\x6b\x6e\xee\xe6\xcf\x29\xf5\x20\x5a\x5e\xe9\x54\x20\x39\x7f\xad\x27\x0b\xef\x75\xda\xea\xa2\x24\x5b\x44\x8e\x76\xdb\x4f\x68\xab\x3d\x83\x76\xdc\x19\x68\xe3\x3e\x43\x83\xf1\xa6\xed\xf3\x4e\x4a\x51\xa8\x6d\x12\x9f\x36\x6b\x08\xbf\x87\x9b\xf9\xcf\xeb\xbe\xcd\xc5\x05\x18\xb0\xd8\x9f\x4f\xfe\x15\xb5\xc8\x0c\x29\xaa\x08\x7d\xfb\x5d\xc1\x74\x66\x40\xaf\xcf\x78\x1b\x9b\x8e\x13\x63\xd5\x51\x79\x0b\x73\x2e\xb4\x7f\x68\x2b\xb5\xf3\x22\xaa\x47\x9c\xcd\x2b\xf4\x93\xc4\x65\x9d\xd7\x11\xfc\xb0\xe6\xb2\x32\xf2\x85\xb9\xb4\xe5\xeb\x3c\x2f\xf5\xb5\x13\xc8\x51\xa8\xc8\xce\xe6\xa1\xa5\x5f\x68\x1a\x3a\xd7\x12\xed\x3f\xce\xc1\x9d\x8e\x1b\xc1\x62\xd0\xae\xab\x37\x1c\xad\xa4\xb4\xf2\x15\x5f\x33\x0a\x4e\x9d\x9a\x75\xb3\x06\xa4\xa7\x7e\x07\x30\x16\xbf\x50\xc3\x32\xa9\x0d\xfb\x39\x0c\x68\x6b\xb3\x46\x83\xfc\x1e\x06\x6c\x68\x98\x7f\x76\xd7\xfe\x5f\xa6\xe9\x5f\xa6\x69\x19\xc6\x2d\x4c\x53\xf7\xd7\x6d\x0d\xb5\x3f\x8f\x9d\x15\x82\xcd\xc6\x08\x5d\xc4\x81\x8d\x14\xda\x9d\xc9\xed\xd8\xc1\x1c\xcc\xf1\xe7\x30\xea\x8c\xb8\x4b\x6e\x35\x82\xd4\xb4\x06\x08\x19\xd2\xc4\x5d\x97\xe1\xc7\xbe\x2c\x49\x48\x88\xe6\x7e\x9a\x46\xb0\x9d\x21\x89\xca\xf6\x5f\x81\x62\x05\x35\x14\x0c\xc0\xd2\xc2\x7c\x01\x75\xff\x6e\xab\xde\x6e\x56\x57\x77\x55\x80\x37\x18\x71\x68\x3b\x43\x0e\x6d\x30\xe6\xd0\x7f\x97\x41\x47\x36\x58\x73\x9f\xd3\x5e\xda\x8e\xff\xfe\x32\x96\x3e\x9b\xb1\xb4\xcb\xae\xfe\xf3\x9a\x4e\xf6\xaf\x3f\x20\x32\x15\xec\xfd\x89\xb9\xec\x0e\x61\xbc\x13\x17\x08\x6e\x88\x24\x62\x02\xef\x31\xbd\x09\x2a\xad\x16\xee\x13\x7c\x8d\xee\xbf\xd9\x60\x2a\x81\xda\x6d\xb2\xa8\x8d\xa6\xbd\x87\x04\x44\x4c\x4d\x94\x39\x7c\x51\x81\x0a\x8d\x8c\x4e\xa9\x30\x93\xd2\xef\x3b\xd0\xb8\x80\xf2\x8c\x31\x29\x24\xc7\xab\x95\xad\x1a\xac\x29\x62\x92\x14\xcc\x53\x30\xa2\xc5\x2b\xb1\x60\x72\xa2\x6b\x3e\x9b\x1f\xe9\xaf\x44\x04\xcf\xff\x3a\x02\x9a\xea\xf1\xab\xb4\x16\x9b\x39\x15\xe1\x1a\x93\x9a\xc2\x04\x8a\xed\x43\xcd\x26\x63\x8b\x60\xe9\x86\x1a\x32\x09\x2c\x99\xe3\xa3\x70\xe0\x52\xee\xae\xb9\xaf\x9f\xdb\xc2\xb8\x6d\x31\xe0\x5b\xd4\x02\x2e\xd9\x05\xe3\x1e\xbd\xbf\x9c\x56\xd4\x53\xa4\x62\x50\xd8\xf7\xe4\x00\xd9\x72\x04\xfa\x51\x74\xec\x14\xa4\x93\xc8\xf9\x0d\x7c\x90\xa4\x6c\x84\xea\x94\x8b\x97\xb8\xe2\x2e\x79\x15\x9c\xdb\xdd\xe1\xfa\x2f\xcc\x8e\xfa\xd4\x79\x1a\x9f\x28\x4d\xe3\x4f\x94\xa5\xf1\xe7\x48\xd2\x48\xc3\x29\xa9\x39\x14\x54\x69\x19\x76\xbd\x1b\x8f\xce\xa7\x8d\x77\xd9\x8f\x33\x55\x7a\x8e\xc1\xf2\x55\xc7\x4d\x91\x2a\xd7\x6e\x2b\x85\x12\x6d\xa5\x24\xa2\x5b\xa8\x9e\xc8\x46\xb2\xe8\xa7\x88\x5c\xd9\x4f\xa9\xb8\xfc\xe8\x9b\xe9\x37\x85\xf0\x03\x2a\x9f\x2d\xd9\x57\x3d\x3d\x83\xd3\xc5\xff\x5d\x6e\xbb\xd9\x4e\xfa\xa8\x58\xd3\x2d\x43\x4d\xbf\x4b\xa4\xe9\x77\xf6\xcf\xa3\xb8\x6e\x49\x5c\x91\x82\x0a\x7d\xe2\xa9\x05\x76\xb5\xdd\x9c\xae\x07\x4f\x86\x68\xdd\xd1\xf5\x97\xcc\x94\x82\x8b\x50\xd4\x19\xdb\x46\x41\x73\x75\x9a\xbc\xc8\x33\x05\x4b\xe6\x20\x96\x0b\x55\x35\x5c\x89\x0b\x57\x09\x24\xa9\xcc\xf3\xc4\xea\xb2\x0e\x6d\x0c\x28\xeb\x4a\x6a\xfa\xd9\x2e\xc9\x10\xae\xaf\xb1\xd5\x69\x73\x05\x12\x2a\xda\x69\xe4\xcd\x03\x66\xb6\x12\xe4\xdb\x8e\x72\xad\xb1\xd7\x54\x5f\xab\xf3\xef\x95\x2c\x49\xb9\x7a\xaf\xd2\x25\xcd\x78\xdf\xaa\xf1\x47\x59\xa1\x59\xa8\xd3\x38\x78\x7c\x16\xb4\x25\xf5\x75\xff\x0d\xc9\xe2\x66\x0a\xfc\x63\x80\x09\x3a\x40\x97\x44\x1e\x05\xdf\x14\xce\x09\xf4\x99\x1c\x6b\x5f\xf4\x89\xb5\x33\xbc\x76\x9b\x11\x8e\x68\x3a\x2f\xdc\x6d\x54\x5a\x81\xb9\xf4\xb7\x59\x3e\x02\x18\x5c\xc9\x0e\x37\xcd\x1a\x2d\xe0\xea\x13\x84\x66\x10\x5d\x2e\x49\x4d\xb1\x24\xaa\x81\x2b\x25\x46\x4c\xf4\xe5\x32\x7c\xcf\x35\x81\x6e\x63\x33\x6f\x56\x78\x6d\xf6\xf0\x13\xc6\xcf\x4c\x9d\x31\xb3\xbf\xde\x04\xe3\xaf\xa2\x79\x55\xa4\x08\x38\x52\xa3\x70\xcf\x3d\xcc\xd2\x3d\x34\xfb\xd1\x75\xd6\x06\x50\x2a\xf6\xfc\xd0\x87\x4c\xc8\x2e\x53\xb0\xf9\x1e\x1f\x14\x59\x21\x7d\x5a\x63\x03\x86\x9b\xf4\xa4\x7e\xc4\x52\xc6\x3f\x39\x7b\x79\xf4\xdd\xf9\xc9\xc5\x0f\x67\x65\xa6\x37\x14\xf5\x16\x8c\x4e\x6f\x3e\xb2\x2f\x0f\x8e\xc6\xe8\xcb\x2f\x11\x30\xeb\xf1\xb3\xa7\xd3\xfa\x2a\xfa\xe9\x8b\x03\xd4\xd2\xec\xa6\x6b\x36\x9d\x5e\x99\x3e\xd8\x0b\x84\xb1\xf5\xcc\x2f\xa9\xfc\x38\x1a\x1c\xbd\x7c\xfe\xfc\xf4\xe2\x4f\xbb\xf3\x77\x62\x36\xb2\x35\x97\xed\xc6\xf5\x35\x99\xe3\xae\x91\x65\x22\xea\x6a\x5f\x77\xca\x10\x12\xd7\xd0\x11\x6e\x1a\x11\x94\xae\x7a\xe3\xbc\x2c\x62\xc0\xda\x48\xde\x12\x70\x39\x2d\xa0\x08\xb8\x10\x2a\x0a\x9e\xc2\xec\x3d\x71\x0a\x1b\xec\x77\xbb\x93\x4f\x34\xce\xd1\xcc\x6e\x59\xec\x40\xf1\x9f\x4d\x8a\x79\x61\xae\xcc\x84\xac\x57\x92\x23\x99\x07\xfa\x33\x95\xeb\x43\x9f\x22\xc5\x31\x51\xcd\xe0\x4f\x58\xdf\x51\x32\xed\xfd\x94\x0e\x93\x81\xbc\x95\x5e\x97\xe5\x96\x7c\xd9\xcf\x67\xc3\x3c\x79\x36\xc8\x93\xb9\xbc\xfb\xc4\x2c\x19\x9c\x05\x09\x3b\x86\x48\x1a\x56\x0c\xbe\xda\xb2\x9a\xc3\x80\xbc\xfe\x18\x32\x9b\xb7\xf1\x37\xd1\xd9\xf0\x39\x3a\x0c\x65\x85\x7e\xe8\x36\xcf\xd7\x2c\x88\x03\x23\x09\x3f\x07\xc9\xcd\xd1\x93\xd0\xdc\xbc\xdd\x1d\x52\x5b\x4f\x75\x17\x72\x6f\xce\x25\x7a\x11\xa4\xe0\x18\x6d\x3f\x28\xfc\xea\x4a\x20\xba\x67\xc5\x51\x9a\x65\x28\x86\x6d\x3f\xb3\x0c\x8c\x43\x9c\x8c\x2c\xe1\x45\x94\xc8\xd5\xd1\x4b\xf5\x3e\xb5\xa0\xb7\x70\xc6\x46\x3d\x62\xa0\x5a\xcb\x90\xd2\xd7\x3b\xe0\x56\x9a\x62\xfe\xa4\x83\x27\x9d\x66\x3e\xc9\xae\xe0\xc5\xc6\xc8\x12\xce\x2d\xe8\x20\x49\x53\x38\xc7\xcf\xb0\xfd\x5c\x7c\x85\xac\x9f\xac\x0e\xe7\xe0\x4d\x4e\x5d\x0e\xd1\x54\xf1\x2d\x79\xed\xa2\xc2\x2a\x5b\x7a\x04\x9c\x81\xa9\x1f\x85\xd5\x9b\x3a\x84\x03\xf3\xd4\xf1\x5b\x6c\x13\xad\xd0\xcc\x3e\xfd\x65\xbd\xc9\x69\x65\xe3\x41\xe7\x43\xe3\x33\xb6\xce\xbb\xe5\xd2\xd4\x26\x0e\xa6\xe2\xf9\x27\xe7\x9c\x40\x93\x0b\x94\x38\xa0\x49\xa6\xbf\xf5\xd5\x7b\x0e\x54\xb7\x04\xd4\x34\x7b\x48\x2d\x46\x74\xea\x66\x3e\x1e\x02\x11\xbd\x02\x97\x40\x08\xfd\x53\x1e\x88\x56\xa4\x33\xcf\x4f\x02\x3b\x58\xe2\x5b\x59\x58\x11\x5f\x48\xf7\x8c\xab\x79\xca\x87\xcd\xf5\xfb\x3e\xde\x80\x8c\xd6\xef\x2b\x91\x3e\xee\x63\x40\x42\x4b\x5f\xa3\xc7\xbe\x60\x2c\xcc\x08\x57\xa4\x35\x2f\x65\x2e\xf0\x35\x69\xbf\x92\xc6\xcf\x40\x5b\x49\xea\x1e\xae\x5c\x13\x99\xe9\x27\xa6\xc5\x99\xde\x67\x07\xa5\x4b\xc4\x96\x03\x2e\xd4\xa0\xba\x61\x21\x45\x68\x4e\x88\x5e\x5d\x03\xe4\x09\x21\x42\x75\x7d\x42\xc8\xb7\xb8\xc1\x2d\x68\x37\x61\xa7\x6b\xcc\xd1\xbc\x61\x37\xb0\xac\xba\x86\xd4\xa1\xa2\x91\x43\xe5\x9b\xe9\x37\x69\x14\xc1\x0f\xe2\x95\x7f\xd3\x3e\x3f\xa7\x06\x81\x3f\x81\x1f\xaf\x48\xab\x59\x47\x37\xd9\xce\x1b\xbf\x3b\x5c\xf4\x35\x1a\xc5\xd8\xee\xf9\xa9\x6c\x72\xa2\x7f\xcf\xb0\x56\x08\xf4\x53\xbd\x8a\xa1\x66\xac\xed\x84\x65\x02\xc8\x6a\x0c\xcb\xc6\x87\xab\x02\x2d\x2f\x74\xc3\xc4\x2a\xfb\xd6\xff\x54\xf2\x2f\x76\x33\x5d\x4f\x36\x1f\x2b\x63\xf1\xe0\xb5\x2a\x4e\xdc\xd7\xe9\xda\x85\xa8\x3c\x1a\x22\xe2\x8e\x14\x1f\xf8\x71\x2f\x1c\x74\x53\xac\x22\xda\xc2\xdb\xf9\x6d\x43\x03\x64\x1b\x7c\xfe\xb6\x29\x80\x37\xf8\x88\x52\xb6\x44\xee\x85\xb0\x1b\xff\x16\x59\x64\x44\xb9\xa2\xc0\x50\xdf\xcb\x96\xc0\xd7\xda\x56\x56\x06\x1d\x59\x81\x59\x8c\x5d\x89\x82\x10\x88\xa7\x9e\x8b\x04\xfb\xfb\x76\x47\x4a\x4f\xfd\xff\x8c\x19\xfe\xf9\x4f\xb4\xc2\x2d\xad\x46\x2e\x92\x1b\xe4\x2a\xe7\x0b\x86\x66\xa4\xea\xb0\xce\x93\x5e\x60\xe1\x24\xa5\x23\xc7\x9a\xc8\xbb\xe3\x44\xed\x8d\xf1\xce\x0e\x9f\xa1\x89\xf7\x9c\x39\x29\xcc\x01\x05\xea\x0c\xaf\xbd\xd6\x69\x9e\x8a\xd0\x95\x17\xe0\xd6\xbd\x7b\x7a\xdb\xba\xca\xe3\xe7\x0b\x7a\x15\xa3\x2d\x55\x40\xf3\xba\xc0\x2a\x6c\x70\x6b\x9d\x00\xed\xa1\xfb\x85\xe7\x0b\xbe\x28\x42\x8f\xde\x24\xcd\x85\x00\x28\x6d\x4e\xb3\x29\x9c\x53\x26\x33\x2c\xd4\x0b\x46\x71\xdc\xaa\x3c\x6c\xd8\x66\xe2\xb5\xb0\xbe\xe6\xd1\xbb\xad\x39\x7b\xf6\x6f\x21\xbf\x00\xa3\xb9\x79\x49\xc9\xa5\x88\x94\x87\x72\xb5\xe1\x63\x6d\x67\xdf\xd2\x21\x1f\xbd\x0c\x27\x79\x23\x56\xf2\x8e\xf4\x20\x5e\x62\xdc\x02\xc4\xe1\x27\x52\xc2\x27\x55\xd9\x35\x11\x4e\x1e\x99\x53\xc4\xd6\x4c\x9c\x75\xd5\x15\xb1\x69\x64\x91\x4d\x2b\x92\xc4\xc6\x52\xe0\xbd\xf8\x36\x6c\x6c\x15\x86\x3a\xbf\x4e\xc9\x0a\xe2\xe6\x26\x70\xb3\x86\x68\x81\x90\xba\xd0\x50\x1c\x33\xc8\xdc\xc3\xb4\x3d\x33\x79\x91\xa5\x6c\xf5\x9e\x70\xbb\x28\x45\xda\x3f\xa4\x83\x18\xff\xb2\x51\x32\xfb\xc1\x07\xa1\x78\x92\x46\xe1\x83\x53\xad\x9f\x0d\x97\xec\x9a\x98\x63\xdf\x86\x40\x1d\x1b\x0e\x0a\xe2\x18\x76\xc1\xf6\xef\x77\x00\x46\xcb\xf0\x83\xbf\x65\x13\x3f\xfa\xd1\x3f\x80\x7f\x5b\x6b\x00\xc3\xd8\xbe\xfb\x84\x02\xec\x8b\x08\x70\x21\xe9\x60\x67\x43\xc9\x01\xf4\xf5\xdd\x74\x40\x37\xc9\x26\x8b\xd6\x65\x63\x3e\x6b\x50\x93\x2d\x45\x72\xda\x93\x8b\x20\x22\xff\xa8\x4b\x32\x28\x75\xef\xcd\x3a\x08\x8a\xbc\x65\xfd\x8a\xa9\x0d\x5a\x33\x96\xf8\x8a\xd4\xfb\x3d\x06\xc7\x85\x6f\x92\x5e\x71\x84\xde\xaa\x97\xd6\xaf\xf6\x7b\x55\xee\x2d\xa4\x7d\x0e\xd8\x9d\x15\xdb\x1a\x42\x1e\xc6\x38\x15\x7e\x2e\x05\x54\x24\xde\x39\x9d\xe3\xd8\x34\xf1\xd3\x44\xe6\x8c\x5f\xad\x38\xbb\x4e\xc2\xdb\xa1\x8c\x2b\x78\xb5\x7d\x56\x5d\x20\x37\xc2\x07\xf7\x76\x4a\x47\x0a\x9f\xb3\xf2\xc2\xd8\x3b\x9f\x8d\x73\x11\x52\xc1\x96\x34\x2a\x47\x22\xfc\xdb\x9a\x0e\x06\x44\x5a\x17\x38\xf1\xc2\xd5\x94\x93\x4a\xba\xc0\xea\x9b\x0c\x99\x37\xc3\x42\x7e\xc8\x17\xee\xae\x1e\x15\xb3\x2c\xd3\x53\xc1\xbf\xad\x07\x55\xad\x4e\xdb\x39\xe3\x4b\xf7\x34\xa5\x5d\x25\xbb\x2c\x7a\x95\x5c\x7f\x78\xde\xd8\x14\xd9\x3a\xe4\x1c\xaf\xb7\x2a\xcc\x99\x0f\xaf\x87\x3e\x06\x9d\x0e\x7c\xa4\xfe\xb1\x65\xcd\x16\x4a\xb1\x7d\x75\x14\x8d\xeb\x9a\x64\x13\xdf\x61\x14\x9b\xb2\xeb\x47\x09\x53\xca\xf4\x30\xa6\xcd\x16\xc3\x3c\x25\x12\xd9\xb9\x02\x30\x4b\xbe\x98\x6a\xa6\xa5\xfd\xd1\xcf\x15\x92\x2b\x62\x9c\xc2\x4e\x92\x05\x69\xbf\x7d\x69\x70\x6a\x58\x0a\x19\x99\x69\x6c\xe8\x7d\x66\xa1\xd8\xa5\x2b\x2b\x94\x59\xf5\x34\x5a\x27\x86\x72\xb4\xf4\xb6\x6a\xaa\xfd\x72\x9c\x25\x41\xda\x5f\xa6\x9c\x35\xe0\x2b\x57\x23\xbc\x66\x0d\x99\xba\x92\xdc\x53\x8e\x6f\x7e\x84\x0a\xd3\x85\xb4\x8e\x64\xc1\xd3\x01\xa7\xb4\x1e\x74\x26\x6c\xc0\xc0\x90\x7d\x18\x83\x98\x17\xb6\xc0\xa0\x80\xcb\xbd\x7b\xe8\x25\xbf\xc4\xad\x5d\xc4\x94\xd7\x69\x2b\x99\x7b\x63\x3c\xf6\x51\x16\x5e\x2f\xd6\x67\x23\x64\x1a\x16\x0a\x9b\x5b\x9e\x4d\x69\x17\xfb\x75\xf5\xe1\xfb\xea\x08\x69\x3d\xcd\x27\x1f\x82\x31\x4e\x49\x9d\xa3\x33\xac\xf1\xa9\xc3\x56\xab\x7c\x55\x7f\x06\x5c\x09\x07\xa5\x98\x86\x2f\x79\x16\xb7\x42\x59\x1d\x84\x51\x95\x42\x18\x4c\x3a\x5e\xae\x44\x45\xea\x89\xdd\xdf\x5e\x9b\x81\x82\x22\xd1\xfe\xdc\x26\xe1\xf3\xde\xbd\x50\x2b\x8f\xaf\xbc\xcd\x08\x9a\x53\x38\x30\x68\x8b\x1a\x1c\xe6\xae\x85\x1e\x86\xe1\x2c\xd0\x6a\x0b\xf5\xb6\x9c\x61\x38\xf4\xd9\x36\x21\x74\x10\x86\x4f\x16\x1d\x4c\x65\xf8\xda\x64\xf0\x8f\xee\xdf\x02\x51\x97\x67\xba\x61\x08\xbd\xc2\x5b\xbc\xe3\x71\xab\x79\x46\x49\xac\x9f\x00\x93\x6d\x5e\x30\x19\xfa\x6c\x71\x9d\x6f\xd3\xe7\xf6\x59\xae\x83\x50\x37\xdc\x0e\xdc\xf4\x71\x59\xb1\x3f\xfd\x9c\x04\xaf\xec\xc3\xd1\x8b\xec\x29\xf2\xa1\xed\xa9\xf6\x99\x0c\xdf\xf2\x4e\x24\x44\xf4\xee\xc9\xb8\xb8\x3d\x2f\xa2\xcb\x5c\xe8\x20\x82\x37\xcd\x9e\x55\xce\xbb\xfa\x37\xcb\xa3\x9e\xbd\x0f\x54\xef\x60\xc7\xf6\xbb\xea\xfa\xb2\x83\xb7\x31\x7f\x7d\xb2\x41\x2c\x72\x8b\x55\xd0\x8b\x03\x4e\xc3\x7a\xe2\xbb\x6f\x88\x2d\x3b\x15\xeb\xa9\xf7\xd6\x52\xff\x4c\x88\x8e\x1e\x20\xf4\xb7\x9d\xd0\x1d\xf7\xe2\xfb\xf0\xf7\xc0\xf7\xe1\xc7\xe1\x1b\x18\xfd\x60\xc0\x54\xde\x0b\x58\xc2\x77\xf0\x99\x55\x94\x15\x6b\x77\xfa\x68\x7f\x87\xc0\x51\xb0\x81\x44\x43\x30\x9c\xd5\x5f\x86\x31\x78\xab\x01\x7d\xb4\xf8\xdc\xa5\x2e\x8f\xfd\xdc\xb6\x0c\x7c\xda\x3f\x2c\x07\xbf\x55\x3d\xf8\x14\xc0\xc3\x12\x80\xa1\xc2\xf0\xf6\x93\x5e\x93\x2d\x4b\xd8\x4d\xfd\xdd\xb5\xd9\xa2\x94\xed\xf7\x63\x64\x3e\x00\xa8\x84\x13\xdb\x61\xe0\x4e\xb5\x57\x4f\xeb\xc8\xb5\xeb\xbd\x05\x41\x9e\x94\xf6\x16\x78\x9d\x97\x13\xd1\x35\x52\x6c\x61\xfd\x17\xf2\xc4\xe8\x1c\x7d\xb1\x29\xa1\xf7\xb7\xdf\x50\x4f\x3e\xef\x01\xe4\xf3\x26\x66\x4f\x92\xd8\xf9\x21\x51\xa1\xbd\x1d\x12\x8f\x7b\x49\xa4\x33\x42\xc6\x3d\xfe\x86\xb7\x1d\xe3\xdd\x12\x55\x84\x4b\x3a\xa7\x15\xa4\xcc\xf4\x96\xb1\x06\x53\x7c\x9b\xab\x97\xb9\x55\x4e\x25\x64\x1a\xba\x8b\xfc\xce\xee\xb6\xc8\x83\xd9\xad\xef\x6a\xc9\x05\xa1\x3c\x44\x09\x61\x25\x4b\x44\x64\x5e\xdb\x8a\xd5\xb4\xf5\x30\x62\xaa\x01\xb6\x01\x90\x03\xdb\xd0\xe5\x3d\xbe\x82\xc9\x1f\xf9\x36\x85\x3c\xdc\x20\xd4\x07\x55\x29\x5b\x26\xdd\x5b\xcc\x3d\x14\x34\x9a\x0c\x15\x76\xc0\xbb\x89\x19\xee\x69\x68\x8d\xd7\xa0\x77\xdf\x83\x4a\xe7\x7e\xa9\xd1\xab\x23\xf7\x5e\x40\xf2\xaa\x78\x96\xf2\xe5\x42\x1a\x6c\xa5\x76\x88\xe6\xc5\xad\x0c\x98\xdd\xe3\xa4\xde\x49\xdd\x23\xd2\x1d\x43\xbe\x3a\x12\xa3\xb7\x55\x74\xbf\x6a\x9c\xcd\x56\xed\x64\xbd\x15\xd1\x15\x59\xdf\x6a\xc6\xa1\x53\xc6\x1c\xd1\x4a\x31\x35\x5b\x25\xdf\x7f\xb1\x9b\xbd\x6b\x6f\xf4\x8d\xf0\xf8\xda\x70\xfc\xb2\x8d\x5a\xec\x2b\xb2\x56\xd8\x59\xe8\x31\x1f\x46\x50\xec\x82\x5f\x91\xf5\x17\xa5\x48\x4c\x2f\xe1\x8e\x9f\x3d\x7d\xca\x59\xb7\x7a\x46\xd6\xaa\xb3\xd8\x8f\xe1\xfe\x8e\x2a\xa5\x4e\xa6\x2c\xc5\x0f\x8c\x34\xfc\x78\x5b\x77\x97\x1b\x78\xf6\x13\x5e\xf0\x4e\x48\x83\xe2\xb3\xe4\x5b\xf0\x5a\x40\xf5\x34\xfb\x4a\xa1\x09\x71\xe7\x0e\x38\xf3\x56\xb1\xbd\xd7\x15\x1e\x09\xfe\x7d\x76\xb8\x0a\xa0\x0e\x86\x92\x8f\x7b\x1f\x7d\x59\xf0\xeb\xa5\x4f\x20\xbb\xe7\xa7\x8f\xf0\x0a\xcf\x68\x43\x65\xef\xbb\xfe\x15\x5b\xad\x1f\xf9\x66\xc5\x27\xcb\x42\x14\x80\xf0\x2f\x57\x44\x9f\xcb\x49\xb8\xb8\x2c\xde\x24\xaa\x3c\x1a\x90\x70\x63\x90\xb0\x49\x3e\x77\xe3\xdd\x3a\xeb\xa5\xa8\x8b\x9a\xc2\x7c\xd9\xec\xdf\xa4\x92\xf9\xa4\x5f\x93\x39\x3a\x48\xe7\x6f\xbc\x4b\x8f\x7a\xc9\xf7\x78\xb4\x79\x2e\x06\xb3\x08\xaf\x08\xa7\xbb\xf9\x73\xe9\x16\xa5\xed\xf9\xc6\x4b\xb5\xad\xf8\xc5\xb3\x4a\xea\xb6\x33\xcc\xe2\xcf\xd4\xcf\xcc\x27\x66\xe0\x3f\x94\x45\x94\xde\xf6\x91\xdc\x91\xd0\xeb\xb6\x8c\x61\x31\xf9\x24\x3c\xa1\x4e\xaf\xdd\x98\xc1\xfb\x51\x0d\x1b\xa8\xf3\xe9\x33\x33\x80\x1d\xf3\x0f\xe5\x80\xfa\xea\xe3\x05\x84\xa3\xd5\x6d\x17\xdf\x21\xb1\xc3\xea\x3f\xc7\x57\x44\x20\xf7\x32\x94\x20\x90\x1a\xa9\xed\x12\x5d\x05\x4f\xa0\x11\x6d\xf5\x5b\xc1\x63\x30\x4b\xa0\xbc\xc5\xd4\x47\x37\xbb\xd9\x1e\xb4\x17\xa8\xd2\xa9\x64\xa5\xc7\x88\xe7\x5d\xd3\x18\x75\x47\x83\x9d\x46\xb6\x49\xd3\x04\x67\x50\x7f\x55\x8f\x5f\x6c\xee\xca\xf7\xc4\x57\x73\x44\xbf\x38\xe3\x2f\xf9\x1a\xc6\x0b\xbe\x1b\xeb\x57\x35\xf3\xf0\xee\xc8\x83\x05\xcf\xc4\xdf\x02\x80\xe3\x31\x7a\xe4\x20\xa5\xe4\xd3\xf7\x8e\xa0\x7c\x8e\x9a\x25\x3c\xe4\xc3\xe6\x49\x2c\x06\x9d\x1e\x83\x3e\xd7\x09\xc8\xe6\xe7\xac\x6b\x6b\xc4\xd9\x8c\xb6\x08\x37\x97\x8c\x53\xb9\x58\x3a\x88\x92\x99\xf7\x6e\xc0\xc0\x48\x83\x3a\x92\x99\xa2\xf2\x82\xfe\x9a\xc6\x53\xb2\xab\x11\x9b\xa2\x39\xae\x88\x4c\x6f\xcd\x9a\x80\x52\xf9\x2d\x16\xfd\xb4\xaf\x05\x67\x6a\x26\x8e\xd1\xe3\x83\x61\xa7\x4e\x86\xd0\xbe\xab\x26\x03\x37\xbd\x1b\x22\x44\x3e\x6f\xc5\x47\x76\xb6\x77\x0b\x5a\xa7\x32\x95\xc4\xa2\x9b\xcf\x1b\x52\xeb\x1b\x6c\xba\xf4\xa5\x5d\x1f\x8b\x66\xc9\x8a\x2c\xbd\x33\x04\x06\x5a\x8c\x44\xd1\x64\xed\x27\x5d\xa4\x62\x07\x76\xe7\x69\x5b\x93\x77\xf6\x61\x64\x74\x10\x3c\x61\x65\x63\xa9\xfa\x3d\x29\x71\x4c\x81\x27\x21\x55\xed\xa7\xf7\x7a\xad\x2c\x27\x7f\x48\xe0\xdf\x2c\x68\x43\xa2\x11\xd0\xa3\x1d\x97\x21\x59\xdd\x22\x22\x56\xf7\x7f\xff\x61\x5c\x32\x07\xf5\xc0\x07\xf1\x7f\xbf\x0e\x7c\x76\x7e\xbd\x92\x1e\xdf\xdc\x89\xac\x11\x1d\x79\x0e\xd7\xf3\x7d\xe1\xd9\x82\x4f\x10\x76\xce\x66\xf8\x53\x88\xd8\xcf\x3f\xd1\x5a\x11\xda\x07\x66\xc3\x07\xbf\xb2\x54\xe2\x43\x5b\xf2\x80\xf9\x28\x80\x01\x37\x41\x8c\x23\x28\x95\x6b\x7e\xd4\x95\xb5\xe8\x1c\xdd\x10\xcd\xf6\x97\x0c\x0a\x8b\x98\x9f\x1b\xac\x04\x49\x4b\x6e\x45\x65\x64\xee\xfa\x46\xcd\x77\xdd\x95\xa5\xb8\x75\xba\x66\xe1\x8f\x7d\x31\xea\x23\xe7\x11\xf1\x5e\x0e\x70\xac\xba\xeb\x3d\x02\x2a\x2d\x3b\x4d\xca\xea\x15\xa9\x35\x5c\x2a\x75\x7c\x9e\x64\xca\x0c\x62\xf9\xe9\xf7\x88\x9d\x50\xf8\xd2\x6b\x26\x09\x46\x54\x6f\xf8\x70\xe0\x49\xc8\x7c\xfb\xdb\x70\xe2\x17\xe3\xdb\xee\xb8\xf4\xac\x8b\xce\x8c\xe0\x28\x3b\xf4\x55\xea\xe0\x2a\x82\x71\x10\x61\x7b\xb7\x77\x45\xf8\xb2\x93\x3e\xa5\x87\x73\x23\x7f\x54\xe7\x4e\xd8\xab\xc7\x73\x2a\x16\x84\xa3\x35\xf8\xe1\xf4\x0e\x06\x4b\x25\x3a\xe8\xb2\x42\x70\x4e\x4c\xff\xa2\x3d\x65\xf1\xe1\xe4\xd3\xb2\x22\x81\x4a\x95\x42\x05\x39\x23\xfa\xec\x89\x1f\x7f\x75\xc9\x00\xee\xba\x05\x6c\x2a\xd2\xe8\xd2\xde\xe0\x60\xb9\xc1\x2b\xa8\x18\x38\x5b\xab\x7f\xa0\x64\x55\xcd\xda\xaf\x22\xde\xb3\xe5\xab\x78\xd7\xba\x00\x9f\xa9\x8b\xd7\xd8\x2a\xe1\x58\x7e\x25\xd0\xcd\x62\x8d\x68\xf4\x26\xa1\xe6\xb8\xf8\xbb\xec\xd6\xd3\x19\xad\xae\x3c\x95\x81\x59\x34\xca\xdf\x40\xa6\x4e\xe6\x10\xd4\x0d\x5f\x74\x4b\x74\x80\x38\xb9\x26\x5c\xd2\x59\x63\x2e\x40\x3f\xd2\xa7\x43\xaa\x40\xfa\x6e\x96\x5f\x3c\x90\xff\x6d\x83\xe2\x54\xf1\x4d\xe1\x0a\x8b\xa2\x91\x5a\x6c\xfa\xb3\x77\x2f\x3b\x22\xca\x08\xef\x6c\x50\x49\x96\x2b\xbb\x48\x3f\xd1\xf8\x2d\x65\xfb\xa5\xfb\x3d\xc0\xb0\xd4\x32\xfc\x19\x1d\x00\xe8\x24\x31\x07\x1d\x20\x1a\x85\x88\x72\xe6\x07\x50\x29\xe7\x1f\x25\xca\x46\xa5\x5d\xbb\x61\xdd\x46\x7f\x39\x87\x72\x93\xe1\xa2\xcb\x44\x7a\xb3\x48\x41\x52\xfa\x3f\xaf\x95\xde\xcb\xd0\x0a\x73\x49\x2b\xba\x72\xf7\xd9\xb4\x78\x33\x1b\x4b\x01\x35\xdc\x44\x79\xe4\xa6\x4e\xf7\xc6\x65\xe0\x72\x84\x61\xe1\x44\x83\xac\x4e\x5e\xf6\xcc\xbc\x70\xbf\x8f\xf7\xd1\xff\x8b\x85\x92\x46\xfc\x7d\xa6\x73\xec\x70\x90\xfa\xe1\xa7\xd1\x99\xaa\x1f\x5e\x4a\x92\x6f\x77\x49\xd6\x8a\xbd\x63\xfe\x91\x25\xd5\x05\x31\xb0\xec\x18\x0f\x8a\x0b\x24\x5a\xb6\x59\x23\xec\xd7\x47\xdb\x62\x5e\x5d\x4c\x33\x77\x22\xd7\x45\x7c\x7d\x35\x75\x6b\xa4\x8c\xf4\x68\x2f\xee\x6d\x72\xa7\xfc\x02\x65\x94\x72\x65\x00\x9f\x91\xb5\x8f\x31\x4e\xfd\x97\x99\x97\xef\x28\xc9\x2b\xdc\xc4\x97\xca\x5e\x3f\xb3\x5c\xd7\xca\xed\xd9\xd3\x1c\xa9\xaa\xff\x86\x3b\xc2\x01\x53\x1e\x3f\x7b\x1a\x0c\x76\x0b\xa6\x54\xf6\x6e\x88\xee\x7f\x06\x53\xa6\xf9\x7b\xbb\x33\x65\xb8\x68\x9e\x29\xd3\xc5\xd9\xc0\x9b\xf5\x55\xe9\x52\xb5\xf7\xaf\xe4\xfc\x68\x7b\x18\x4e\x4c\xd7\xa6\x40\x24\x94\xd6\x23\x53\x90\x44\x9c\x71\xe6\xef\x60\x37\xc4\xe6\x1e\x1b\x6d\xc9\x97\x29\x03\xe7\x42\xbf\x3d\xaf\x24\x18\xf4\x71\x9e\xfc\xf1\x3e\x32\x69\x30\xe5\x4c\xeb\x92\x42\x36\x84\xae\x6e\xaf\xc3\x7e\xfa\xea\x38\x24\xb8\xd8\x6a\x6e\x15\x6e\x07\x10\x9f\x86\x1b\xae\x22\x2b\x5d\xc3\xca\x14\xc8\x35\x2f\xb9\xcd\x08\x6c\x18\xa5\xf8\xbc\xd1\x98\xbf\x99\xa0\x05\xbb\x51\xe7\x2f\x54\x09\xc7\x02\xe1\xba\x26\xb5\x4e\xaf\x53\x3b\x0a\xb7\x5e\x3b\x5a\x5d\x72\x5c\x13\x83\x8d\xa9\x71\x26\xe0\x66\x8e\x79\x1d\x6b\x46\x90\x58\x91\x8a\xce\x29\xa9\x91\x20\x2b\xcc\x75\xc1\x2c\x50\x04\xc8\x3b\x2a\x20\xa1\x52\x48\xde\x55\x52\xe4\xae\x13\x43\xe5\x42\x26\xd1\x3e\xca\xbe\xec\xa1\x79\xd1\xf7\x96\x75\x2e\xba\xe0\xb2\x56\x26\x0a\x15\xac\xd6\x45\x18\xf6\x3a\x09\x2f\xac\x00\x77\x35\x37\x78\x2d\x8a\xa5\x61\x57\x4d\x27\xcc\x91\x5e\x64\xae\x72\x70\xc6\xda\xc9\x7d\xfc\x55\xae\x59\x89\xb0\x30\xfd\x42\xf4\xb3\x4a\x73\x7d\x37\xda\xfb\xbc\x4b\xfd\xe4\x55\xed\x8b\x14\x3d\x2c\x8f\x31\x46\xff\xfc\x27\x9a\xe3\xc6\x54\x31\x09\xe8\xfb\x94\x24\xa5\x0a\x7b\xee\x39\x37\x64\x2e\xcd\x3e\xae\x89\x90\x9c\xad\x83\xf4\x82\x6f\xc3\x96\x98\xc7\x37\xe4\x6f\x08\x27\x08\x37\x0d\xab\xb0\xd4\x45\xf0\x31\xaa\x49\x45\x94\xb5\xd6\xd0\x5f\xdd\xfd\x7a\xd2\x4a\x7a\xed\xcf\x1c\xe8\x0b\xd9\x0c\xae\x82\xb7\x8f\x82\x2a\xc2\x02\x8a\x04\x5e\xc6\xb1\x08\x4d\x0d\xbb\x10\x01\xae\x4d\x3b\x87\xc0\x47\x66\xd0\xe2\xec\x46\xf5\xd7\x37\x38\xdd\x1b\x44\xe1\x85\x7f\x7b\x9e\x41\xf5\x00\xda\xce\xcd\xd7\x6a\x7b\x39\x70\x82\xf9\x2b\x6c\xe6\xfd\x9f\xa6\xab\x83\x4a\xd6\x01\x40\xd7\x09\xaa\xe6\x1b\x49\x61\x53\x01\x22\x4a\xdb\xcc\x5b\x37\x2b\x65\x72\x04\x64\xb1\x95\xf3\x8c\xc7\x54\x97\x63\x44\xb8\x5d\x2f\x19\x27\x7d\x3b\x3c\xba\x6e\x6e\x4b\x88\xee\xc2\x71\xba\x47\xc6\x73\xea\x88\xf5\xb0\x4b\x57\xea\x91\x76\x44\xdb\x72\x02\x86\xf5\x68\x4b\xa5\xbb\x95\x1f\xdf\x82\xcb\xab\x65\x27\x09\xb0\xc3\x4d\xd2\x82\xfe\x43\x6d\x7d\xe1\xfe\x62\xab\x82\xc7\x51\x7b\xdf\xc2\x76\x43\x97\xc6\x2d\xa1\xc3\xf6\x9b\x4a\x8f\xdf\xae\x30\xf8\xce\x65\xc1\x8b\x45\xc1\x07\xdd\xb6\xdb\x54\xcf\xee\x4d\x10\x2e\xbd\x8c\x90\xae\x6b\xa1\x30\x76\x5e\x14\x7b\x9b\x1a\xd8\xe9\x45\xcc\x92\x56\x80\x0e\x8c\x26\x31\xca\xb8\xeb\x63\xf2\xad\x3f\xc5\xc3\x12\x5b\x81\xdf\xed\xcd\x89\x61\x90\x05\x3e\x2f\x7d\xbb\x13\xd8\xe1\x6d\x31\xf4\x6b\x9e\x0d\x83\x91\x6a\xc2\xe0\x28\xb3\x75\x00\x9d\x80\x0e\xf5\x36\xab\xcf\xe9\x3c\x3b\xf5\xc5\x7d\x53\x58\x76\x05\xef\x9a\x55\x2c\x28\x04\x04\xda\xb2\x06\x96\xab\x3a\x07\xb9\xfa\x13\x9b\x02\xb5\x4b\x02\x1c\x64\x17\x4e\xe6\x47\x03\x05\xaf\xb3\xc6\x17\x74\x49\x84\xc4\xcb\x95\x15\x49\xa3\xac\x18\xe4\x54\xda\x36\xe3\xaf\xd3\x1d\xe4\xc0\x05\x75\x74\x12\x69\x2e\xf0\x35\x19\xf5\xcd\x7b\x82\x24\xdb\xa8\xa3\x0d\x24\xce\x1c\x0d\x3d\x72\xd1\xdf\x6d\xf3\x0d\xe6\xa8\x2b\x68\xdf\xe7\x1a\xc7\x33\x2c\x17\xe8\xa0\x80\xf2\xa1\xb3\x2d\x5c\xbf\x85\xad\x4c\xbc\xa9\xaf\x2b\x61\x1c\xf7\xb7\xc6\xcd\xa6\xee\xce\xf2\x88\x78\x2d\x79\xeb\xe9\xbd\x5e\xdf\xfd\xf8\xb6\xcc\x07\x74\x80\xde\xa7\xf2\xab\xb8\x84\x11\x38\xbd\x6e\x7d\x48\xa6\x2b\x56\x84\xf7\x68\xcf\xe4\x20\x1a\x43\x31\x00\x99\xd2\x7b\xbc\x0b\x38\x47\xcb\x08\x64\x69\x29\xc6\x25\xff\x3f\x46\x2b\x4e\xaf\xd5\x5f\x41\xc8\xbd\x98\x61\xe3\x6a\xc1\xe9\xe7\xfa\x95\x96\x09\xaf\x39\x42\x71\x6b\x2c\xa3\x1b\x4f\x2f\x5b\xf4\x1c\xd3\xb6\x25\xda\x9f\x7b\x41\x84\x6c\x09\xbc\x6d\x42\x92\xcc\x05\x61\x0a\x14\x44\xef\x4c\x98\x07\x12\xcd\xc4\x27\x4a\x2b\x5c\xd8\xa0\xf5\x82\x70\x12\xbe\xe4\x82\x0e\xb5\xc2\x0b\x1b\x0e\x5e\x46\xd0\x48\xce\x98\xf1\x89\xe2\x78\x3c\xff\x60\x8b\x9b\x30\x25\x02\x35\xb4\x35\x45\x1c\x90\x5c\x30\x41\xc2\x0e\x16\x2d\xbc\x74\x38\x45\x18\xe8\x27\xcd\x5a\xd1\xe9\x3a\x79\x58\x9a\x14\x4d\xd6\x6a\xc3\x90\x71\xa5\x53\xd7\x1d\xcc\xd6\xbc\xf7\x62\xca\x99\x0b\x48\x26\xc6\xe0\x2a\x0e\xee\xe5\xad\x85\x24\x4b\x54\x2d\xba\xf6\x2a\x1c\x08\x14\x62\x0c\x97\xf4\x9b\xb5\x89\x23\xd7\xf6\x01\x48\x4d\x49\xeb\x81\xc2\x0d\x80\x63\x9d\x54\xf6\x2f\x35\x5f\xb9\x22\xe2\x4b\xdc\xd2\x95\x51\x9d\xa7\xd1\x36\x0a\x8b\xaa\xf5\x27\x82\x84\xb4\x73\x8c\x49\x85\xe8\xc8\x50\x52\x55\xe1\x97\x30\x9d\x6c\xb7\x2d\x10\xe4\x9f\x0c\x8c\xf9\x78\x54\x9e\x50\x41\x12\x0f\x66\xb6\xed\xb8\x75\xde\x56\x81\xf3\x05\x45\xa9\xa3\x9b\x37\x90\x5a\x86\xb7\xd5\x47\xae\x40\x96\xb8\x54\xf8\xf2\x23\x09\x9e\x0e\xf1\x78\x94\x61\x5d\x20\x73\x5f\x62\xd8\x8e\x14\x76\x49\x35\xb7\x26\xb1\x75\xcc\xdd\x9e\xc6\x41\x66\x50\xf4\xdf\x8f\xa4\xab\x07\xfb\x78\x94\x23\x59\x20\x69\x6f\xaa\x55\x3c\x78\xb9\xf4\x95\xd2\xfc\xfb\x0b\x09\x6f\x55\x3e\x3b\x6a\x0d\x31\xb8\x5d\xae\xac\x6e\xf5\x92\x1d\xba\xdd\x23\x25\x59\x5d\xed\x0d\x8f\x95\xe4\x75\xb8\x77\xb8\x39\x8a\xf6\x7a\x9f\x57\x29\xdf\x10\xdd\x79\x98\xe4\xb2\x56\xef\x78\x1f\x5b\xec\x23\xfc\xfc\x27\xbc\x76\xd2\x93\x78\x9e\xb3\x9a\x75\x9e\x7f\xb8\xf3\x3f\x01\x00\x00\xff\xff\x2d\x3f\x9e\xcb\x1b\xee\x00\x00" func epochsFlowepochCdcBytes() ([]byte, error) { return bindataRead( @@ -338,7 +338,7 @@ func epochsFlowepochCdc() (*asset, error) { } info := bindataFileInfo{name: "epochs/FlowEpoch.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x40, 0x2e, 0x25, 0xff, 0x98, 0x97, 0x9a, 0x8e, 0x6b, 0xe4, 0x86, 0x76, 0x1a, 0x86, 0xd1, 0x16, 0xe7, 0x2c, 0x85, 0xba, 0x79, 0x3b, 0xf8, 0xff, 0x5, 0x75, 0xb4, 0x3c, 0x2c, 0x5a, 0x4f, 0xf9}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbe, 0x2b, 0xda, 0xb9, 0x13, 0xf7, 0x75, 0xf8, 0x9b, 0xa8, 0xe7, 0xbc, 0x24, 0x1c, 0x52, 0x1e, 0x62, 0x24, 0xe4, 0xf3, 0x52, 0x66, 0x28, 0x34, 0x10, 0x67, 0x77, 0xbd, 0xa6, 0x8e, 0xa, 0xc5}} return a, nil }